diff --git a/.gitattributes b/.gitattributes index a6344aac8c09253b3b630fb776ae94478aa0275b..f601e55c4ccdb733e85bc76827a3f46b80213572 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,35 +1,38 @@ -*.7z filter=lfs diff=lfs merge=lfs -text -*.arrow filter=lfs diff=lfs merge=lfs -text -*.bin filter=lfs diff=lfs merge=lfs -text -*.bz2 filter=lfs diff=lfs merge=lfs -text -*.ckpt filter=lfs diff=lfs merge=lfs -text -*.ftz filter=lfs diff=lfs merge=lfs -text -*.gz filter=lfs diff=lfs merge=lfs -text -*.h5 filter=lfs diff=lfs merge=lfs -text -*.joblib filter=lfs diff=lfs merge=lfs -text -*.lfs.* filter=lfs diff=lfs merge=lfs -text -*.mlmodel filter=lfs diff=lfs merge=lfs -text -*.model filter=lfs diff=lfs merge=lfs -text -*.msgpack filter=lfs diff=lfs merge=lfs -text -*.npy filter=lfs diff=lfs merge=lfs -text -*.npz filter=lfs diff=lfs merge=lfs -text -*.onnx filter=lfs diff=lfs merge=lfs -text -*.ot filter=lfs diff=lfs merge=lfs -text -*.parquet filter=lfs diff=lfs merge=lfs -text -*.pb filter=lfs diff=lfs merge=lfs -text -*.pickle filter=lfs diff=lfs merge=lfs -text -*.pkl filter=lfs diff=lfs merge=lfs -text -*.pt filter=lfs diff=lfs merge=lfs -text -*.pth filter=lfs diff=lfs merge=lfs -text -*.rar filter=lfs diff=lfs merge=lfs -text -*.safetensors filter=lfs diff=lfs merge=lfs -text -saved_model/**/* filter=lfs diff=lfs merge=lfs -text -*.tar.* filter=lfs diff=lfs merge=lfs -text -*.tar filter=lfs diff=lfs merge=lfs -text -*.tflite filter=lfs diff=lfs merge=lfs -text -*.tgz filter=lfs diff=lfs merge=lfs -text -*.wasm filter=lfs diff=lfs merge=lfs -text -*.xz filter=lfs diff=lfs merge=lfs -text -*.zip filter=lfs diff=lfs merge=lfs -text -*.zst filter=lfs diff=lfs merge=lfs -text -*tfevents* filter=lfs diff=lfs merge=lfs -text +*.7z filter=lfs diff=lfs merge=lfs -text +*.arrow filter=lfs diff=lfs merge=lfs -text +*.bin filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.ckpt filter=lfs diff=lfs merge=lfs -text +*.ftz filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.h5 filter=lfs diff=lfs merge=lfs -text +*.joblib filter=lfs diff=lfs merge=lfs -text +*.lfs.* filter=lfs diff=lfs merge=lfs -text +*.mlmodel filter=lfs diff=lfs merge=lfs -text +*.model filter=lfs diff=lfs merge=lfs -text +*.msgpack filter=lfs diff=lfs merge=lfs -text +*.npy filter=lfs diff=lfs merge=lfs -text +*.npz filter=lfs diff=lfs merge=lfs -text +*.onnx filter=lfs diff=lfs merge=lfs -text +*.ot filter=lfs diff=lfs merge=lfs -text +*.parquet filter=lfs diff=lfs merge=lfs -text +*.pb filter=lfs diff=lfs merge=lfs -text +*.pickle filter=lfs diff=lfs merge=lfs -text +*.pkl filter=lfs diff=lfs merge=lfs -text +*.pt filter=lfs diff=lfs merge=lfs -text +*.pth filter=lfs diff=lfs merge=lfs -text +*.rar filter=lfs diff=lfs merge=lfs -text +*.safetensors filter=lfs diff=lfs merge=lfs -text +saved_model/**/* filter=lfs diff=lfs merge=lfs -text +*.tar.* filter=lfs diff=lfs merge=lfs -text +*.tar filter=lfs diff=lfs merge=lfs -text +*.tflite filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.wasm filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text +*tfevents* filter=lfs diff=lfs merge=lfs -text +landuse_tv50_1.png filter=lfs diff=lfs merge=lfs -text +landuse_tv50_2.png filter=lfs diff=lfs merge=lfs -text +landuse_tv50_3.png filter=lfs diff=lfs merge=lfs -text diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000000000000000000000000000000000000..2dfbd532bc16f660730fc41a5ce4608a04cb022b --- /dev/null +++ b/Dockerfile @@ -0,0 +1,20 @@ +FROM python:3.9 + +RUN useradd -m -u 1000 user + +#USER root +RUN apt update +RUN apt -y install gdal-bin libgdal-dev + +USER user + +ENV HOME=/home/user \ + PATH=/home/user/.local/bin:$PATH + +COPY --chown=user . $HOME/app + +WORKDIR $HOME/app + +RUN (cd demo2 & pip install -e .) + +CMD ["solara", "run", "--theme-variant", "dark", "demo2.pages", "--host", "0.0.0.0", "--port", "7860"] diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..4c2535836c9b59c542c2b69bfbcbfef0c8be6d61 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2022 + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/README.md b/README.md index 7553f0989ba2c02db94d17748d0f07d8969c9b39..431846d9be3fd4d23a42a73627db503aa02c9d0a 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@ ---- -title: Demo2 -emoji: 🐨 -colorFrom: blue -colorTo: indigo -sdk: docker -pinned: false ---- - -Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference +--- +title: Demo +emoji: 📈 +colorFrom: yellow +colorTo: pink +sdk: docker +pinned: false +--- + +Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference diff --git a/building_tv50_1.geojson b/building_tv50_1.geojson new file mode 100644 index 0000000000000000000000000000000000000000..b5937c9459bca773290a104f77b643f944962c54 --- /dev/null +++ b/building_tv50_1.geojson @@ -0,0 +1,4076 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1, "nhouse": 4, "residents": 16, "specialfac": 0, "expstr": "BrCri+LC+2s+ResCom", "fptarea": 106, "repvalue": 424000, "xcoord": 85.313249705790611, "ycoord": 27.630694537089454 }, "geometry": { "type": "Point", "coordinates": [ 85.313249705790611, 27.630694537089454 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 2, "nhouse": 7, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+4s+ResCom", "fptarea": 96, "repvalue": 768000, "xcoord": 85.314945966203496, "ycoord": 27.631299395212849 }, "geometry": { "type": "Point", "coordinates": [ 85.314945966203496, 27.631299395212849 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 3, "nhouse": 1, "residents": 7, "specialfac": 0, "expstr": "RCi+HC+1s+ResCom", "fptarea": 63, "repvalue": 126000, "xcoord": 85.316818108140097, "ycoord": 27.628985186855001 }, "geometry": { "type": "Point", "coordinates": [ 85.316818108140097, 27.628985186855001 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 4, "nhouse": 17, "residents": 67, "specialfac": 0, "expstr": "RCi+HC+12s+ResCom", "fptarea": 74, "repvalue": 1776000, "xcoord": 85.314742686510428, "ycoord": 27.627440967449484 }, "geometry": { "type": "Point", "coordinates": [ 85.314742686510428, 27.627440967449484 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 5, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "RCi+HC+1s+ResCom", "fptarea": 58, "repvalue": 116000, "xcoord": 85.314358138235562, "ycoord": 27.626852057855707 }, "geometry": { "type": "Point", "coordinates": [ 85.314358138235562, 27.626852057855707 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 6, "nhouse": 16, "residents": 63, "specialfac": 0, "expstr": "RCi+HC+10s+ResCom", "fptarea": 90, "repvalue": 1800000, "xcoord": 85.313413116551146, "ycoord": 27.628593276033389 }, "geometry": { "type": "Point", "coordinates": [ 85.313413116551146, 27.628593276033389 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 7, "nhouse": 9, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 100, "repvalue": 1000000, "xcoord": 85.313127493540023, "ycoord": 27.630108814875587 }, "geometry": { "type": "Point", "coordinates": [ 85.313127493540023, 27.630108814875587 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 8, "nhouse": 7, "residents": 30, "specialfac": 0, "expstr": "RCi+HC+4s+ResCom", "fptarea": 103, "repvalue": 824000, "xcoord": 85.314816585336672, "ycoord": 27.631180975808228 }, "geometry": { "type": "Point", "coordinates": [ 85.314816585336672, 27.631180975808228 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 9, "nhouse": 8, "residents": 29, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 63, "repvalue": 882000, "xcoord": 85.31767553707077, "ycoord": 27.632968398346922 }, "geometry": { "type": "Point", "coordinates": [ 85.31767553707077, 27.632968398346922 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 10, "nhouse": 7, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 68, "repvalue": 816000, "xcoord": 85.314279370850542, "ycoord": 27.631992376328444 }, "geometry": { "type": "Point", "coordinates": [ 85.314279370850542, 27.631992376328444 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 11, "nhouse": 4, "residents": 17, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 75, "repvalue": 450000, "xcoord": 85.310868917276053, "ycoord": 27.631950875076424 }, "geometry": { "type": "Point", "coordinates": [ 85.310868917276053, 27.631950875076424 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 12, "nhouse": 8, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 62, "repvalue": 868000, "xcoord": 85.314751634212328, "ycoord": 27.626856840029838 }, "geometry": { "type": "Point", "coordinates": [ 85.314751634212328, 27.626856840029838 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 13, "nhouse": 21, "residents": 74, "specialfac": 0, "expstr": "RCi+HC+14s+ResCom", "fptarea": 83, "repvalue": 2324000, "xcoord": 85.310471814969077, "ycoord": 27.632179731364982 }, "geometry": { "type": "Point", "coordinates": [ 85.310471814969077, 27.632179731364982 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 14, "nhouse": 5, "residents": 20, "specialfac": 0, "expstr": "BrM+LC+3s+ResCom", "fptarea": 97, "repvalue": 582000, "xcoord": 85.317846015439358, "ycoord": 27.63039982667247 }, "geometry": { "type": "Point", "coordinates": [ 85.317846015439358, 27.63039982667247 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 15, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "BrCri+LC+2s+ResCom", "fptarea": 76, "repvalue": 304000, "xcoord": 85.312072763178037, "ycoord": 27.630446522079662 }, "geometry": { "type": "Point", "coordinates": [ 85.312072763178037, 27.630446522079662 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 16, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 57, "repvalue": 228000, "xcoord": 85.313260453993749, "ycoord": 27.629993585048261 }, "geometry": { "type": "Point", "coordinates": [ 85.313260453993749, 27.629993585048261 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 17, "nhouse": 30, "residents": 119, "specialfac": 0, "expstr": "RCi+HC+18s+ResCom", "fptarea": 93, "repvalue": 3348000, "xcoord": 85.312187799765553, "ycoord": 27.63149954600437 }, "geometry": { "type": "Point", "coordinates": [ 85.312187799765553, 27.63149954600437 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 18, "nhouse": 4, "residents": 16, "specialfac": 0, "expstr": "BrM+LC+4s+ResCom", "fptarea": 56, "repvalue": 448000, "xcoord": 85.310904795575425, "ycoord": 27.629614371277935 }, "geometry": { "type": "Point", "coordinates": [ 85.310904795575425, 27.629614371277935 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 19, "nhouse": 20, "residents": 81, "specialfac": 0, "expstr": "RCi+HC+11s+ResCom", "fptarea": 99, "repvalue": 2178000, "xcoord": 85.316649397728256, "ycoord": 27.631436931270869 }, "geometry": { "type": "Point", "coordinates": [ 85.316649397728256, 27.631436931270869 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 20, "nhouse": 15, "residents": 63, "specialfac": 0, "expstr": "RCi+HC+12s+ResCom", "fptarea": 73, "repvalue": 1752000, "xcoord": 85.314194749927296, "ycoord": 27.628953321450677 }, "geometry": { "type": "Point", "coordinates": [ 85.314194749927296, 27.628953321450677 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 21, "nhouse": 8, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 90, "repvalue": 900000, "xcoord": 85.314018818686904, "ycoord": 27.631872361540037 }, "geometry": { "type": "Point", "coordinates": [ 85.314018818686904, 27.631872361540037 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 22, "nhouse": 29, "residents": 122, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 89, "repvalue": 3204000, "xcoord": 85.315678734431884, "ycoord": 27.62628386635139 }, "geometry": { "type": "Point", "coordinates": [ 85.315678734431884, 27.62628386635139 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 23, "nhouse": 8, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 69, "repvalue": 828000, "xcoord": 85.315290606976689, "ycoord": 27.625928610295642 }, "geometry": { "type": "Point", "coordinates": [ 85.315290606976689, 27.625928610295642 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 24, "nhouse": 6, "residents": 22, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 107, "repvalue": 642000, "xcoord": 85.317023248197643, "ycoord": 27.632726788595367 }, "geometry": { "type": "Point", "coordinates": [ 85.317023248197643, 27.632726788595367 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 25, "nhouse": 4, "residents": 18, "specialfac": 0, "expstr": "BrM+LC+4s+ResCom", "fptarea": 55, "repvalue": 440000, "xcoord": 85.317265932596527, "ycoord": 27.634015053261031 }, "geometry": { "type": "Point", "coordinates": [ 85.317265932596527, 27.634015053261031 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 26, "nhouse": 27, "residents": 101, "specialfac": 0, "expstr": "RCi+HC+19s+ResCom", "fptarea": 78, "repvalue": 2964000, "xcoord": 85.313711264820398, "ycoord": 27.626259957930369 }, "geometry": { "type": "Point", "coordinates": [ 85.313711264820398, 27.626259957930369 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 27, "nhouse": 8, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 73, "repvalue": 876000, "xcoord": 85.314676465146832, "ycoord": 27.63176350874242 }, "geometry": { "type": "Point", "coordinates": [ 85.314676465146832, 27.63176350874242 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 28, "nhouse": 7, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 79, "repvalue": 790000, "xcoord": 85.312344063703208, "ycoord": 27.629865588581747 }, "geometry": { "type": "Point", "coordinates": [ 85.312344063703208, 27.629865588581747 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 29, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "BrM+LC+3s+ResCom", "fptarea": 59, "repvalue": 354000, "xcoord": 85.312237988006956, "ycoord": 27.628228438012403 }, "geometry": { "type": "Point", "coordinates": [ 85.312237988006956, 27.628228438012403 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 30, "nhouse": 1, "residents": 7, "specialfac": 0, "expstr": "RCi+HC+1s+ResCom", "fptarea": 67, "repvalue": 134000, "xcoord": 85.317123333969974, "ycoord": 27.626184555829184 }, "geometry": { "type": "Point", "coordinates": [ 85.317123333969974, 27.626184555829184 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 31, "nhouse": 15, "residents": 68, "specialfac": 0, "expstr": "RCi+HC+14s+ResCom", "fptarea": 57, "repvalue": 1596000, "xcoord": 85.316884924879176, "ycoord": 27.633192498558838 }, "geometry": { "type": "Point", "coordinates": [ 85.316884924879176, 27.633192498558838 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 32, "nhouse": 3, "residents": 15, "specialfac": 0, "expstr": "BrM+LC+3s+ResCom", "fptarea": 71, "repvalue": 426000, "xcoord": 85.316277343377763, "ycoord": 27.630030247572293 }, "geometry": { "type": "Point", "coordinates": [ 85.316277343377763, 27.630030247572293 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 33, "nhouse": 9, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 83, "repvalue": 996000, "xcoord": 85.316929614750521, "ycoord": 27.630271860139278 }, "geometry": { "type": "Point", "coordinates": [ 85.316929614750521, 27.630271860139278 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 34, "nhouse": 13, "residents": 51, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 104, "repvalue": 1456000, "xcoord": 85.312840069605755, "ycoord": 27.631741177754009 }, "geometry": { "type": "Point", "coordinates": [ 85.312840069605755, 27.631741177754009 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 35, "nhouse": 14, "residents": 75, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 104, "repvalue": 1456000, "xcoord": 85.312760863583947, "ycoord": 27.628351647651908 }, "geometry": { "type": "Point", "coordinates": [ 85.312760863583947, 27.628351647651908 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 36, "nhouse": 4, "residents": 15, "specialfac": 0, "expstr": "BrCri+LC+3s+ResCom", "fptarea": 81, "repvalue": 486000, "xcoord": 85.315387783407914, "ycoord": 27.628149888529144 }, "geometry": { "type": "Point", "coordinates": [ 85.315387783407914, 27.628149888529144 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 37, "nhouse": 26, "residents": 113, "specialfac": 0, "expstr": "RCi+HC+17s+ResCom", "fptarea": 82, "repvalue": 2788000, "xcoord": 85.31310599494644, "ycoord": 27.631510718763749 }, "geometry": { "type": "Point", "coordinates": [ 85.31310599494644, 27.631510718763749 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 38, "nhouse": 3, "residents": 17, "specialfac": 0, "expstr": "BrM+MC+2s+Res", "fptarea": 83, "repvalue": 332000, "xcoord": 85.317934309531097, "ycoord": 27.633205232111465 }, "geometry": { "type": "Point", "coordinates": [ 85.317934309531097, 27.633205232111465 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 39, "nhouse": 4, "residents": 18, "specialfac": 0, "expstr": "BrM+LC+3s+ResCom", "fptarea": 83, "repvalue": 498000, "xcoord": 85.310734157784609, "ycoord": 27.632182927519352 }, "geometry": { "type": "Point", "coordinates": [ 85.310734157784609, 27.632182927519352 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 40, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 77, "repvalue": 308000, "xcoord": 85.315848062550728, "ycoord": 27.632361978886124 }, "geometry": { "type": "Point", "coordinates": [ 85.315848062550728, 27.632361978886124 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 41, "nhouse": 3, "residents": 18, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 77, "repvalue": 308000, "xcoord": 85.317621195825097, "ycoord": 27.627943306100789 }, "geometry": { "type": "Point", "coordinates": [ 85.317621195825097, 27.627943306100789 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 42, "nhouse": 4, "residents": 17, "specialfac": 0, "expstr": "BrCri+LC+3s+ResCom", "fptarea": 65, "repvalue": 390000, "xcoord": 85.314739107354271, "ycoord": 27.627674618402821 }, "geometry": { "type": "Point", "coordinates": [ 85.314739107354271, 27.627674618402821 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 43, "nhouse": 1, "residents": 7, "specialfac": 0, "expstr": "BrM+LC+1s+ResCom", "fptarea": 56, "repvalue": 112000, "xcoord": 85.311030582896777, "ycoord": 27.629966444517972 }, "geometry": { "type": "Point", "coordinates": [ 85.311030582896777, 27.629966444517972 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 44, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 73, "repvalue": 292000, "xcoord": 85.312667323693418, "ycoord": 27.625896719241272 }, "geometry": { "type": "Point", "coordinates": [ 85.312667323693418, 27.625896719241272 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 45, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "BrCri+LC+2s+ResCom", "fptarea": 55, "repvalue": 220000, "xcoord": 85.317747003381371, "ycoord": 27.628295374200007 }, "geometry": { "type": "Point", "coordinates": [ 85.317747003381371, 27.628295374200007 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 46, "nhouse": 6, "residents": 22, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 54, "repvalue": 756000, "xcoord": 85.317183017846318, "ycoord": 27.630859171744333 }, "geometry": { "type": "Point", "coordinates": [ 85.317183017846318, 27.630859171744333 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 47, "nhouse": 12, "residents": 46, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 93, "repvalue": 1302000, "xcoord": 85.314618679218, "ycoord": 27.626972071575928 }, "geometry": { "type": "Point", "coordinates": [ 85.314618679218, 27.626972071575928 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 48, "nhouse": 7, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 59, "repvalue": 826000, "xcoord": 85.30889775898325, "ycoord": 27.63216054402606 }, "geometry": { "type": "Point", "coordinates": [ 85.30889775898325, 27.63216054402606 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 49, "nhouse": 7, "residents": 30, "specialfac": 0, "expstr": "RCi+HC+4s+ResCom", "fptarea": 97, "repvalue": 776000, "xcoord": 85.312787738477226, "ycoord": 27.626599267259163 }, "geometry": { "type": "Point", "coordinates": [ 85.312787738477226, 27.626599267259163 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 50, "nhouse": 7, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 57, "repvalue": 798000, "xcoord": 85.31276444704325, "ycoord": 27.628117996959862 }, "geometry": { "type": "Point", "coordinates": [ 85.31276444704325, 27.628117996959862 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 51, "nhouse": 8, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 66, "repvalue": 792000, "xcoord": 85.311704356519243, "ycoord": 27.628806178123568 }, "geometry": { "type": "Point", "coordinates": [ 85.311704356519243, 27.628806178123568 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 52, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 65, "repvalue": 260000, "xcoord": 85.318144077235175, "ycoord": 27.628066495648561 }, "geometry": { "type": "Point", "coordinates": [ 85.318144077235175, 27.628066495648561 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 53, "nhouse": 10, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+8s+ResCom", "fptarea": 64, "repvalue": 1024000, "xcoord": 85.315008597163271, "ycoord": 27.627210504031517 }, "geometry": { "type": "Point", "coordinates": [ 85.315008597163271, 27.627210504031517 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 54, "nhouse": 19, "residents": 65, "specialfac": 0, "expstr": "RCi+HC+15s+ResCom", "fptarea": 66, "repvalue": 1980000, "xcoord": 85.317328484558075, "ycoord": 27.6299261587932 }, "geometry": { "type": "Point", "coordinates": [ 85.317328484558075, 27.6299261587932 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 55, "nhouse": 3, "residents": 17, "specialfac": 0, "expstr": "BrCri+LC+2s+ResCom", "fptarea": 84, "repvalue": 336000, "xcoord": 85.313019614637028, "ycoord": 27.62858848978658 }, "geometry": { "type": "Point", "coordinates": [ 85.313019614637028, 27.62858848978658 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 56, "nhouse": 15, "residents": 73, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 70, "repvalue": 1680000, "xcoord": 85.317594396371675, "ycoord": 27.629695690520393 }, "geometry": { "type": "Point", "coordinates": [ 85.317594396371675, 27.629695690520393 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 57, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrM+LC+1s+ResCom", "fptarea": 58, "repvalue": 116000, "xcoord": 85.311540912673621, "ycoord": 27.630907435632654 }, "geometry": { "type": "Point", "coordinates": [ 85.311540912673621, 27.630907435632654 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 58, "nhouse": 9, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 67, "repvalue": 938000, "xcoord": 85.312879489104759, "ycoord": 27.629171020835567 }, "geometry": { "type": "Point", "coordinates": [ 85.312879489104759, 27.629171020835567 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 59, "nhouse": 5, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 94, "repvalue": 564000, "xcoord": 85.31548675024618, "ycoord": 27.630254340713556 }, "geometry": { "type": "Point", "coordinates": [ 85.31548675024618, 27.630254340713556 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 60, "nhouse": 32, "residents": 125, "specialfac": 0, "expstr": "RCi+HC+16s+ResCom", "fptarea": 106, "repvalue": 3392000, "xcoord": 85.317353501653457, "ycoord": 27.628290600294317 }, "geometry": { "type": "Point", "coordinates": [ 85.317353501653457, 27.628290600294317 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 61, "nhouse": 18, "residents": 64, "specialfac": 0, "expstr": "RCi+HC+14s+ResCom", "fptarea": 72, "repvalue": 2016000, "xcoord": 85.313407743303614, "ycoord": 27.628943752161689 }, "geometry": { "type": "Point", "coordinates": [ 85.313407743303614, 27.628943752161689 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 62, "nhouse": 5, "residents": 17, "specialfac": 0, "expstr": "BrCri+LC+3s+ResCom", "fptarea": 97, "repvalue": 582000, "xcoord": 85.317518614642736, "ycoord": 27.626072504386105 }, "geometry": { "type": "Point", "coordinates": [ 85.317518614642736, 27.626072504386105 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 63, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 66, "repvalue": 264000, "xcoord": 85.31649498208435, "ycoord": 27.632954070452495 }, "geometry": { "type": "Point", "coordinates": [ 85.31649498208435, 27.632954070452495 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 64, "nhouse": 15, "residents": 76, "specialfac": 0, "expstr": "RCi+HC+8s+ResCom", "fptarea": 107, "repvalue": 1712000, "xcoord": 85.311294713927595, "ycoord": 27.629852814151604 }, "geometry": { "type": "Point", "coordinates": [ 85.311294713927595, 27.629852814151604 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 65, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "RCi+HC+1s+ResCom", "fptarea": 75, "repvalue": 150000, "xcoord": 85.311274985751638, "ycoord": 27.631137891558293 }, "geometry": { "type": "Point", "coordinates": [ 85.311274985751638, 27.631137891558293 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 66, "nhouse": 7, "residents": 19, "specialfac": 0, "expstr": "BrCri+LC+4s+ResCom", "fptarea": 99, "repvalue": 792000, "xcoord": 85.313373710482807, "ycoord": 27.631163433873777 }, "geometry": { "type": "Point", "coordinates": [ 85.313373710482807, 27.631163433873777 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 67, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "BrCfl+LC+2s+ResCom", "fptarea": 77, "repvalue": 308000, "xcoord": 85.314622258523144, "ycoord": 27.626738420613446 }, "geometry": { "type": "Point", "coordinates": [ 85.314622258523144, 27.626738420613446 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 68, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "BrM+LC+1s+Res", "fptarea": 99, "repvalue": 198000, "xcoord": 85.316493193953661, "ycoord": 27.633070895942854 }, "geometry": { "type": "Point", "coordinates": [ 85.316493193953661, 27.633070895942854 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 69, "nhouse": 5, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 60, "repvalue": 600000, "xcoord": 85.310888650875143, "ycoord": 27.630665798090014 }, "geometry": { "type": "Point", "coordinates": [ 85.310888650875143, 27.630665798090014 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 70, "nhouse": 28, "residents": 108, "specialfac": 0, "expstr": "RCi+HC+19s+ResCom", "fptarea": 80, "repvalue": 3040000, "xcoord": 85.310520261506738, "ycoord": 27.629025451792344 }, "geometry": { "type": "Point", "coordinates": [ 85.310520261506738, 27.629025451792344 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 71, "nhouse": 1, "residents": 5, "specialfac": 0, "expstr": "BrM+LC+1s+ResCom", "fptarea": 88, "repvalue": 176000, "xcoord": 85.312448348876572, "ycoord": 27.631619564112224 }, "geometry": { "type": "Point", "coordinates": [ 85.312448348876572, 27.631619564112224 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 72, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 59, "repvalue": 354000, "xcoord": 85.314318757150474, "ycoord": 27.62942221759431 }, "geometry": { "type": "Point", "coordinates": [ 85.314318757150474, 27.62942221759431 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 73, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 64, "repvalue": 256000, "xcoord": 85.311007263881265, "ycoord": 27.631485172103087 }, "geometry": { "type": "Point", "coordinates": [ 85.311007263881265, 27.631485172103087 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 74, "nhouse": 9, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 101, "repvalue": 1010000, "xcoord": 85.315747300432037, "ycoord": 27.630374352670135 }, "geometry": { "type": "Point", "coordinates": [ 85.315747300432037, 27.630374352670135 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 75, "nhouse": 13, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 57, "repvalue": 1482000, "xcoord": 85.316505710642517, "ycoord": 27.632253117466767 }, "geometry": { "type": "Point", "coordinates": [ 85.316505710642517, 27.632253117466767 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 76, "nhouse": 8, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 62, "repvalue": 868000, "xcoord": 85.317140121087519, "ycoord": 27.633662984780486 }, "geometry": { "type": "Point", "coordinates": [ 85.317140121087519, 27.633662984780486 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 77, "nhouse": 5, "residents": 21, "specialfac": 0, "expstr": "RCi+HC+4s+ResCom", "fptarea": 70, "repvalue": 560000, "xcoord": 85.31757474190141, "ycoord": 27.630980772131394 }, "geometry": { "type": "Point", "coordinates": [ 85.31757474190141, 27.630980772131394 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 78, "nhouse": 9, "residents": 30, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 94, "repvalue": 940000, "xcoord": 85.3112857467368, "ycoord": 27.630436940276692 }, "geometry": { "type": "Point", "coordinates": [ 85.3112857467368, 27.630436940276692 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 79, "nhouse": 3, "residents": 7, "specialfac": 0, "expstr": "BrCfl+LC+3s+ResCom", "fptarea": 62, "repvalue": 372000, "xcoord": 85.313921670896121, "ycoord": 27.629651084573123 }, "geometry": { "type": "Point", "coordinates": [ 85.313921670896121, 27.629651084573123 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 80, "nhouse": 10, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 71, "repvalue": 994000, "xcoord": 85.311946972003909, "ycoord": 27.630094449635212 }, "geometry": { "type": "Point", "coordinates": [ 85.311946972003909, 27.630094449635212 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 81, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 102, "repvalue": 408000, "xcoord": 85.31639957249898, "ycoord": 27.630615967758779 }, "geometry": { "type": "Point", "coordinates": [ 85.31639957249898, 27.630615967758779 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 82, "nhouse": 8, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 60, "repvalue": 840000, "xcoord": 85.316131867621522, "ycoord": 27.630963259003948 }, "geometry": { "type": "Point", "coordinates": [ 85.316131867621522, 27.630963259003948 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 83, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "RCi+HC+1s+ResCom", "fptarea": 66, "repvalue": 132000, "xcoord": 85.315269139751436, "ycoord": 27.627330516592778 }, "geometry": { "type": "Point", "coordinates": [ 85.315269139751436, 27.627330516592778 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 84, "nhouse": 21, "residents": 91, "specialfac": 0, "expstr": "RCi+HC+12s+ResCom", "fptarea": 95, "repvalue": 2280000, "xcoord": 85.312466271544324, "ycoord": 27.630451311307798 }, "geometry": { "type": "Point", "coordinates": [ 85.312466271544324, 27.630451311307798 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 85, "nhouse": 11, "residents": 48, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 104, "repvalue": 1248000, "xcoord": 85.313377293068257, "ycoord": 27.630929783202532 }, "geometry": { "type": "Point", "coordinates": [ 85.313377293068257, 27.630929783202532 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 86, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 71, "repvalue": 284000, "xcoord": 85.308504245229969, "ycoord": 27.632155744402219 }, "geometry": { "type": "Point", "coordinates": [ 85.308504245229969, 27.632155744402219 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 87, "nhouse": 7, "residents": 19, "specialfac": 0, "expstr": "BrCri+LC+4s+ResCom", "fptarea": 104, "repvalue": 832000, "xcoord": 85.312870530586025, "ycoord": 27.629755147496155 }, "geometry": { "type": "Point", "coordinates": [ 85.312870530586025, 27.629755147496155 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 88, "nhouse": 14, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 96, "repvalue": 1536000, "xcoord": 85.318011124079476, "ycoord": 27.628181730522162 }, "geometry": { "type": "Point", "coordinates": [ 85.318011124079476, 27.628181730522162 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 89, "nhouse": 6, "residents": 23, "specialfac": 0, "expstr": "BrM+LC+4s+ResCom", "fptarea": 84, "repvalue": 672000, "xcoord": 85.315061030875185, "ycoord": 27.632352417895202 }, "geometry": { "type": "Point", "coordinates": [ 85.315061030875185, 27.632352417895202 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 90, "nhouse": 5, "residents": 17, "specialfac": 0, "expstr": "BrCfl+MC+3s+ResCom", "fptarea": 98, "repvalue": 588000, "xcoord": 85.311812217224301, "ycoord": 27.630326503388719 }, "geometry": { "type": "Point", "coordinates": [ 85.311812217224301, 27.630326503388719 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 91, "nhouse": 7, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 64, "repvalue": 768000, "xcoord": 85.317768439919703, "ycoord": 27.626893466308562 }, "geometry": { "type": "Point", "coordinates": [ 85.317768439919703, 27.626893466308562 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 92, "nhouse": 11, "residents": 43, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 85, "repvalue": 1190000, "xcoord": 85.315283451407211, "ycoord": 27.626395912427888 }, "geometry": { "type": "Point", "coordinates": [ 85.315283451407211, 27.626395912427888 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 93, "nhouse": 19, "residents": 78, "specialfac": 0, "expstr": "RCi+HC+11s+ResCom", "fptarea": 91, "repvalue": 2002000, "xcoord": 85.309551820013411, "ycoord": 27.632285366004933 }, "geometry": { "type": "Point", "coordinates": [ 85.309551820013411, 27.632285366004933 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 94, "nhouse": 11, "residents": 47, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 105, "repvalue": 1260000, "xcoord": 85.316951063500412, "ycoord": 27.628869953237203 }, "geometry": { "type": "Point", "coordinates": [ 85.316951063500412, 27.628869953237203 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 95, "nhouse": 4, "residents": 22, "specialfac": 0, "expstr": "BrCri+LC+2s+ResCom", "fptarea": 105, "repvalue": 420000, "xcoord": 85.313526374066356, "ycoord": 27.629763124968257 }, "geometry": { "type": "Point", "coordinates": [ 85.313526374066356, 27.629763124968257 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 96, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrCri+LC+1s+ResCom", "fptarea": 74, "repvalue": 148000, "xcoord": 85.317764867270839, "ycoord": 27.627127117644548 }, "geometry": { "type": "Point", "coordinates": [ 85.317764867270839, 27.627127117644548 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 97, "nhouse": 20, "residents": 74, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 100, "repvalue": 2200000, "xcoord": 85.317856734228485, "ycoord": 27.629698872941013 }, "geometry": { "type": "Point", "coordinates": [ 85.317856734228485, 27.629698872941013 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 98, "nhouse": 7, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 67, "repvalue": 804000, "xcoord": 85.311395395427567, "ycoord": 27.631840440136898 }, "geometry": { "type": "Point", "coordinates": [ 85.311395395427567, 27.631840440136898 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 99, "nhouse": 3, "residents": 17, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 94, "repvalue": 376000, "xcoord": 85.315709734865891, "ycoord": 27.632827687499184 }, "geometry": { "type": "Point", "coordinates": [ 85.315709734865891, 27.632827687499184 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 100, "nhouse": 9, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 83, "repvalue": 996000, "xcoord": 85.311145609211323, "ycoord": 27.631019468909432 }, "geometry": { "type": "Point", "coordinates": [ 85.311145609211323, 27.631019468909432 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 101, "nhouse": 2, "residents": 4, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 65, "repvalue": 260000, "xcoord": 85.317039335686204, "ycoord": 27.631675358768256 }, "geometry": { "type": "Point", "coordinates": [ 85.317039335686204, 27.631675358768256 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 102, "nhouse": 4, "residents": 13, "specialfac": 0, "expstr": "BrM+LC+3s+Res", "fptarea": 80, "repvalue": 480000, "xcoord": 85.317871025345198, "ycoord": 27.628764267849544 }, "geometry": { "type": "Point", "coordinates": [ 85.317871025345198, 27.628764267849544 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 103, "nhouse": 4, "residents": 17, "specialfac": 0, "expstr": "BrCri+LC+3s+ResCom", "fptarea": 78, "repvalue": 468000, "xcoord": 85.315400305698134, "ycoord": 27.627332109938703 }, "geometry": { "type": "Point", "coordinates": [ 85.315400305698134, 27.627332109938703 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 104, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 92, "repvalue": 368000, "xcoord": 85.312656573580767, "ycoord": 27.626597671481825 }, "geometry": { "type": "Point", "coordinates": [ 85.312656573580767, 27.626597671481825 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 105, "nhouse": 5, "residents": 19, "specialfac": 0, "expstr": "BrCri+LC+3s+ResCom", "fptarea": 94, "repvalue": 564000, "xcoord": 85.314036724872281, "ycoord": 27.630704107831292 }, "geometry": { "type": "Point", "coordinates": [ 85.314036724872281, 27.630704107831292 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 106, "nhouse": 4, "residents": 13, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 104, "repvalue": 416000, "xcoord": 85.318573287901003, "ycoord": 27.62573475293172 }, "geometry": { "type": "Point", "coordinates": [ 85.318573287901003, 27.62573475293172 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 107, "nhouse": 16, "residents": 60, "specialfac": 0, "expstr": "RCi+HC+13s+ResCom", "fptarea": 74, "repvalue": 1924000, "xcoord": 85.316232636650184, "ycoord": 27.632950885112336 }, "geometry": { "type": "Point", "coordinates": [ 85.316232636650184, 27.632950885112336 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 108, "nhouse": 18, "residents": 74, "specialfac": 0, "expstr": "RCi+HC+11s+ResCom", "fptarea": 92, "repvalue": 2024000, "xcoord": 85.315970291259049, "ycoord": 27.632947699276297 }, "geometry": { "type": "Point", "coordinates": [ 85.315970291259049, 27.632947699276297 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 109, "nhouse": 19, "residents": 78, "specialfac": 0, "expstr": "RCi+HC+16s+ResCom", "fptarea": 63, "repvalue": 2016000, "xcoord": 85.314160732968716, "ycoord": 27.631173004061004 }, "geometry": { "type": "Point", "coordinates": [ 85.314160732968716, 27.631173004061004 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 110, "nhouse": 5, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 91, "repvalue": 546000, "xcoord": 85.313901973569244, "ycoord": 27.630936163760136 }, "geometry": { "type": "Point", "coordinates": [ 85.313901973569244, 27.630936163760136 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 111, "nhouse": 11, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+8s+ResCom", "fptarea": 78, "repvalue": 1248000, "xcoord": 85.313704102444106, "ycoord": 27.626727259659685 }, "geometry": { "type": "Point", "coordinates": [ 85.313704102444106, 27.626727259659685 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 112, "nhouse": 7, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 58, "repvalue": 812000, "xcoord": 85.314241293146182, "ycoord": 27.625915859822463 }, "geometry": { "type": "Point", "coordinates": [ 85.314241293146182, 27.625915859822463 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 113, "nhouse": 4, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 105, "repvalue": 420000, "xcoord": 85.316158691807971, "ycoord": 27.629210876224409 }, "geometry": { "type": "Point", "coordinates": [ 85.316158691807971, 27.629210876224409 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 114, "nhouse": 4, "residents": 18, "specialfac": 0, "expstr": "BrCri+LC+3s+ResCom", "fptarea": 76, "repvalue": 456000, "xcoord": 85.312308215584693, "ycoord": 27.632202094032881 }, "geometry": { "type": "Point", "coordinates": [ 85.312308215584693, 27.632202094032881 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 115, "nhouse": 10, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 95, "repvalue": 1140000, "xcoord": 85.317191953891182, "ycoord": 27.630275043878026 }, "geometry": { "type": "Point", "coordinates": [ 85.317191953891182, 27.630275043878026 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 116, "nhouse": 3, "residents": 15, "specialfac": 0, "expstr": "BrCri+LC+3s+ResCom", "fptarea": 62, "repvalue": 372000, "xcoord": 85.312642239493343, "ycoord": 27.627532274352998 }, "geometry": { "type": "Point", "coordinates": [ 85.312642239493343, 27.627532274352998 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 117, "nhouse": 29, "residents": 125, "specialfac": 0, "expstr": "RCi+HC+18s+ResCom", "fptarea": 87, "repvalue": 3132000, "xcoord": 85.315127238786687, "ycoord": 27.628029876112187 }, "geometry": { "type": "Point", "coordinates": [ 85.315127238786687, 27.628029876112187 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 118, "nhouse": 4, "residents": 17, "specialfac": 0, "expstr": "BrM+LC+4s+ResCom", "fptarea": 64, "repvalue": 512000, "xcoord": 85.309420648558316, "ycoord": 27.63228376686618 }, "geometry": { "type": "Point", "coordinates": [ 85.309420648558316, 27.63228376686618 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 119, "nhouse": 3, "residents": 16, "specialfac": 0, "expstr": "BrCri+LC+2s+ResCom", "fptarea": 92, "repvalue": 368000, "xcoord": 85.312110406034918, "ycoord": 27.627993191011573 }, "geometry": { "type": "Point", "coordinates": [ 85.312110406034918, 27.627993191011573 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 120, "nhouse": 17, "residents": 59, "specialfac": 0, "expstr": "RCi+HC+12s+ResCom", "fptarea": 75, "repvalue": 1800000, "xcoord": 85.3140922271986, "ycoord": 27.627082520015279 }, "geometry": { "type": "Point", "coordinates": [ 85.3140922271986, 27.627082520015279 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 121, "nhouse": 8, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 69, "repvalue": 966000, "xcoord": 85.317479308674038, "ycoord": 27.62864266859917 }, "geometry": { "type": "Point", "coordinates": [ 85.317479308674038, 27.62864266859917 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 122, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "BrM+LC+3s+ResCom", "fptarea": 58, "repvalue": 348000, "xcoord": 85.315641173856648, "ycoord": 27.628737202540435 }, "geometry": { "type": "Point", "coordinates": [ 85.315641173856648, 27.628737202540435 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 123, "nhouse": 25, "residents": 99, "specialfac": 0, "expstr": "RCi+HC+16s+ResCom", "fptarea": 83, "repvalue": 2656000, "xcoord": 85.315552935542016, "ycoord": 27.625931796674642 }, "geometry": { "type": "Point", "coordinates": [ 85.315552935542016, 27.625931796674642 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 124, "nhouse": 23, "residents": 105, "specialfac": 0, "expstr": "RCi+HC+15s+ResCom", "fptarea": 85, "repvalue": 2550000, "xcoord": 85.31613365597596, "ycoord": 27.630846433499837 }, "geometry": { "type": "Point", "coordinates": [ 85.31613365597596, 27.630846433499837 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 125, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "BrCri+LC+2s+ResCom", "fptarea": 96, "repvalue": 384000, "xcoord": 85.317619409270151, "ycoord": 27.628060131743279 }, "geometry": { "type": "Point", "coordinates": [ 85.317619409270151, 27.628060131743279 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 126, "nhouse": 3, "residents": 7, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 85, "repvalue": 340000, "xcoord": 85.31731418812852, "ycoord": 27.630860763467105 }, "geometry": { "type": "Point", "coordinates": [ 85.31731418812852, 27.630860763467105 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 127, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "RCi+HC+1s+ResCom", "fptarea": 95, "repvalue": 190000, "xcoord": 85.314857747263332, "ycoord": 27.628493990594528 }, "geometry": { "type": "Point", "coordinates": [ 85.314857747263332, 27.628493990594528 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 128, "nhouse": 11, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 81, "repvalue": 1134000, "xcoord": 85.312045872510083, "ycoord": 27.63219890085357 }, "geometry": { "type": "Point", "coordinates": [ 85.312045872510083, 27.63219890085357 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 129, "nhouse": 4, "residents": 17, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 77, "repvalue": 462000, "xcoord": 85.311028789191113, "ycoord": 27.630083269729283 }, "geometry": { "type": "Point", "coordinates": [ 85.311028789191113, 27.630083269729283 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 130, "nhouse": 11, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 84, "repvalue": 1176000, "xcoord": 85.31324074865816, "ycoord": 27.631278663733369 }, "geometry": { "type": "Point", "coordinates": [ 85.31324074865816, 27.631278663733369 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 131, "nhouse": 6, "residents": 22, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 63, "repvalue": 630000, "xcoord": 85.315493906123905, "ycoord": 27.629787038792255 }, "geometry": { "type": "Point", "coordinates": [ 85.315493906123905, 27.629787038792255 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 132, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 89, "repvalue": 356000, "xcoord": 85.316862791807523, "ycoord": 27.626064546764503 }, "geometry": { "type": "Point", "coordinates": [ 85.316862791807523, 27.626064546764503 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 133, "nhouse": 5, "residents": 26, "specialfac": 0, "expstr": "BrCfl+LC+3s+ResCom", "fptarea": 87, "repvalue": 522000, "xcoord": 85.316077592801818, "ycoord": 27.625938167945499 }, "geometry": { "type": "Point", "coordinates": [ 85.316077592801818, 27.625938167945499 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 134, "nhouse": 1, "residents": 9, "specialfac": 0, "expstr": "BrM+LC+1s+ResCom", "fptarea": 97, "repvalue": 194000, "xcoord": 85.310606574995532, "ycoord": 27.631947679201541 }, "geometry": { "type": "Point", "coordinates": [ 85.310606574995532, 27.631947679201541 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 135, "nhouse": 2, "residents": 13, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 68, "repvalue": 272000, "xcoord": 85.31830917374225, "ycoord": 27.62584839800612 }, "geometry": { "type": "Point", "coordinates": [ 85.31830917374225, 27.62584839800612 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 136, "nhouse": 10, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+9s+ResCom", "fptarea": 63, "repvalue": 1134000, "xcoord": 85.317165144949826, "ycoord": 27.632027427321322 }, "geometry": { "type": "Point", "coordinates": [ 85.317165144949826, 27.632027427321322 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 137, "nhouse": 2, "residents": 9, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 76, "repvalue": 304000, "xcoord": 85.309426035267862, "ycoord": 27.631933291628602 }, "geometry": { "type": "Point", "coordinates": [ 85.309426035267862, 27.631933291628602 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 138, "nhouse": 5, "residents": 16, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 96, "repvalue": 576000, "xcoord": 85.313673660421003, "ycoord": 27.628713291638814 }, "geometry": { "type": "Point", "coordinates": [ 85.313673660421003, 27.628713291638814 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 139, "nhouse": 5, "residents": 14, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 108, "repvalue": 648000, "xcoord": 85.312047665296816, "ycoord": 27.632082075616506 }, "geometry": { "type": "Point", "coordinates": [ 85.312047665296816, 27.632082075616506 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 140, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "BrM+MC+3s+ResCom", "fptarea": 61, "repvalue": 366000, "xcoord": 85.313714845943906, "ycoord": 27.626026307053255 }, "geometry": { "type": "Point", "coordinates": [ 85.313714845943906, 27.626026307053255 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 141, "nhouse": 4, "residents": 17, "specialfac": 0, "expstr": "BrCri+LC+3s+ResCom", "fptarea": 70, "repvalue": 420000, "xcoord": 85.317640847219934, "ycoord": 27.62665822389636 }, "geometry": { "type": "Point", "coordinates": [ 85.317640847219934, 27.62665822389636 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 142, "nhouse": 24, "residents": 94, "specialfac": 0, "expstr": "RCi+HC+16s+ResCom", "fptarea": 80, "repvalue": 2560000, "xcoord": 85.311697184846381, "ycoord": 27.629273479197192 }, "geometry": { "type": "Point", "coordinates": [ 85.311697184846381, 27.629273479197192 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 143, "nhouse": 4, "residents": 14, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 77, "repvalue": 462000, "xcoord": 85.316392420215948, "ycoord": 27.631083269842311 }, "geometry": { "type": "Point", "coordinates": [ 85.316392420215948, 27.631083269842311 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 144, "nhouse": 4, "residents": 14, "specialfac": 0, "expstr": "BrCri+LC+4s+ResCom", "fptarea": 55, "repvalue": 440000, "xcoord": 85.317761294578972, "ycoord": 27.627360768972235 }, "geometry": { "type": "Point", "coordinates": [ 85.317761294578972, 27.627360768972235 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 145, "nhouse": 6, "residents": 19, "specialfac": 0, "expstr": "BrM+LC+4s+ResCom", "fptarea": 78, "repvalue": 624000, "xcoord": 85.316791294712161, "ycoord": 27.630737570286797 }, "geometry": { "type": "Point", "coordinates": [ 85.316791294712161, 27.630737570286797 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 146, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrM+LC+1s+ResCom", "fptarea": 73, "repvalue": 146000, "xcoord": 85.313824524512867, "ycoord": 27.627429807032431 }, "geometry": { "type": "Point", "coordinates": [ 85.313824524512867, 27.627429807032431 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 147, "nhouse": 8, "residents": 29, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 65, "repvalue": 910000, "xcoord": 85.312701730277496, "ycoord": 27.632206882872136 }, "geometry": { "type": "Point", "coordinates": [ 85.312701730277496, 27.632206882872136 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 148, "nhouse": 7, "residents": 29, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 58, "repvalue": 696000, "xcoord": 85.315010386425399, "ycoord": 27.627093678531836 }, "geometry": { "type": "Point", "coordinates": [ 85.315010386425399, 27.627093678531836 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 149, "nhouse": 11, "residents": 48, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 94, "repvalue": 1316000, "xcoord": 85.310347821895732, "ycoord": 27.631710832551505 }, "geometry": { "type": "Point", "coordinates": [ 85.310347821895732, 27.631710832551505 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 150, "nhouse": 8, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+8s+ResCom", "fptarea": 58, "repvalue": 928000, "xcoord": 85.315731201485065, "ycoord": 27.631425781994654 }, "geometry": { "type": "Point", "coordinates": [ 85.315731201485065, 27.631425781994654 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 151, "nhouse": 29, "residents": 110, "specialfac": 0, "expstr": "RCi+HC+16s+ResCom", "fptarea": 96, "repvalue": 3072000, "xcoord": 85.318153007119889, "ycoord": 27.627482367258136 }, "geometry": { "type": "Point", "coordinates": [ 85.318153007119889, 27.627482367258136 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 152, "nhouse": 15, "residents": 51, "specialfac": 0, "expstr": "RCi+HC+8s+ResCom", "fptarea": 101, "repvalue": 1616000, "xcoord": 85.312178836689569, "ycoord": 27.632083672260258 }, "geometry": { "type": "Point", "coordinates": [ 85.312178836689569, 27.632083672260258 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 153, "nhouse": 5, "residents": 24, "specialfac": 0, "expstr": "BrM+LC+3s+ResCom", "fptarea": 92, "repvalue": 552000, "xcoord": 85.314209071693497, "ycoord": 27.628018718022179 }, "geometry": { "type": "Point", "coordinates": [ 85.314209071693497, 27.628018718022179 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 154, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 92, "repvalue": 368000, "xcoord": 85.314029562527452, "ycoord": 27.631171409339689 }, "geometry": { "type": "Point", "coordinates": [ 85.314029562527452, 27.631171409339689 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 155, "nhouse": 7, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 55, "repvalue": 770000, "xcoord": 85.313174068499777, "ycoord": 27.627071355425922 }, "geometry": { "type": "Point", "coordinates": [ 85.313174068499777, 27.627071355425922 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 156, "nhouse": 6, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 103, "repvalue": 618000, "xcoord": 85.314929858966948, "ycoord": 27.632350823962849 }, "geometry": { "type": "Point", "coordinates": [ 85.314929858966948, 27.632350823962849 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 157, "nhouse": 10, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 104, "repvalue": 1040000, "xcoord": 85.318007551750583, "ycoord": 27.628415381843944 }, "geometry": { "type": "Point", "coordinates": [ 85.318007551750583, 27.628415381843944 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 158, "nhouse": 2, "residents": 5, "specialfac": 0, "expstr": "BrCri+LC+2s+ResCom", "fptarea": 67, "repvalue": 268000, "xcoord": 85.313490551210293, "ycoord": 27.632099631879907 }, "geometry": { "type": "Point", "coordinates": [ 85.313490551210293, 27.632099631879907 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 159, "nhouse": 9, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+8s+ResCom", "fptarea": 62, "repvalue": 992000, "xcoord": 85.317389236704571, "ycoord": 27.6259540874476 }, "geometry": { "type": "Point", "coordinates": [ 85.317389236704571, 27.6259540874476 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 160, "nhouse": 6, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 69, "repvalue": 690000, "xcoord": 85.317089380078215, "ycoord": 27.628404242675639 }, "geometry": { "type": "Point", "coordinates": [ 85.317089380078215, 27.628404242675639 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 161, "nhouse": 17, "residents": 67, "specialfac": 0, "expstr": "RCi+HC+16s+ResCom", "fptarea": 56, "repvalue": 1792000, "xcoord": 85.311039551263079, "ycoord": 27.629382318430281 }, "geometry": { "type": "Point", "coordinates": [ 85.311039551263079, 27.629382318430281 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 162, "nhouse": 6, "residents": 24, "specialfac": 0, "expstr": "BrM+LC+3s+ResCom", "fptarea": 103, "repvalue": 618000, "xcoord": 85.314529182585119, "ycoord": 27.632813342940214 }, "geometry": { "type": "Point", "coordinates": [ 85.314529182585119, 27.632813342940214 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 163, "nhouse": 13, "residents": 43, "specialfac": 0, "expstr": "RCi+HC+13s+ResCom", "fptarea": 59, "repvalue": 1534000, "xcoord": 85.316155115389691, "ycoord": 27.629444527288655 }, "geometry": { "type": "Point", "coordinates": [ 85.316155115389691, 27.629444527288655 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 164, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrCfl+LC+1s+ResCom", "fptarea": 98, "repvalue": 196000, "xcoord": 85.317166932287876, "ycoord": 27.631910601772969 }, "geometry": { "type": "Point", "coordinates": [ 85.317166932287876, 27.631910601772969 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 165, "nhouse": 4, "residents": 14, "specialfac": 0, "expstr": "BrM+MC+3s+ResCom", "fptarea": 83, "repvalue": 498000, "xcoord": 85.317134758556989, "ycoord": 27.634013461325956 }, "geometry": { "type": "Point", "coordinates": [ 85.317134758556989, 27.634013461325956 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 166, "nhouse": 14, "residents": 50, "specialfac": 0, "expstr": "RCi+HC+9s+ResCom", "fptarea": 84, "repvalue": 1512000, "xcoord": 85.31594642847071, "ycoord": 27.625936575313681 }, "geometry": { "type": "Point", "coordinates": [ 85.31594642847071, 27.625936575313681 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 167, "nhouse": 14, "residents": 65, "specialfac": 0, "expstr": "RCi+HC+10s+ResCom", "fptarea": 77, "repvalue": 1540000, "xcoord": 85.312613569247787, "ycoord": 27.629401479696853 }, "geometry": { "type": "Point", "coordinates": [ 85.312613569247787, 27.629401479696853 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 168, "nhouse": 11, "residents": 53, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 99, "repvalue": 1188000, "xcoord": 85.309815958119231, "ycoord": 27.632171738809735 }, "geometry": { "type": "Point", "coordinates": [ 85.309815958119231, 27.632171738809735 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 169, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 64, "repvalue": 256000, "xcoord": 85.314333078148394, "ycoord": 27.628487614169217 }, "geometry": { "type": "Point", "coordinates": [ 85.314333078148394, 27.628487614169217 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 170, "nhouse": 5, "residents": 15, "specialfac": 0, "expstr": "RCi+HC+4s+ResCom", "fptarea": 72, "repvalue": 576000, "xcoord": 85.313646797225573, "ycoord": 27.630465672298783 }, "geometry": { "type": "Point", "coordinates": [ 85.313646797225573, 27.630465672298783 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 171, "nhouse": 19, "residents": 86, "specialfac": 0, "expstr": "RCi+HC+12s+ResCom", "fptarea": 87, "repvalue": 2088000, "xcoord": 85.315398516831834, "ycoord": 27.627448935457849 }, "geometry": { "type": "Point", "coordinates": [ 85.315398516831834, 27.627448935457849 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 172, "nhouse": 17, "residents": 78, "specialfac": 0, "expstr": "RCi+HC+14s+ResCom", "fptarea": 67, "repvalue": 1876000, "xcoord": 85.317844228936877, "ycoord": 27.63051665228712 }, "geometry": { "type": "Point", "coordinates": [ 85.317844228936877, 27.63051665228712 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 173, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 88, "repvalue": 352000, "xcoord": 85.314597202482318, "ycoord": 27.628373977176526 }, "geometry": { "type": "Point", "coordinates": [ 85.314597202482318, 27.628373977176526 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 174, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrCri+LC+1s+ResCom", "fptarea": 59, "repvalue": 118000, "xcoord": 85.312070970542365, "ycoord": 27.630563347345788 }, "geometry": { "type": "Point", "coordinates": [ 85.312070970542365, 27.630563347345788 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 175, "nhouse": 9, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 69, "repvalue": 966000, "xcoord": 85.317806709900808, "ycoord": 27.63296998971536 }, "geometry": { "type": "Point", "coordinates": [ 85.317806709900808, 27.63296998971536 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 176, "nhouse": 6, "residents": 22, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 107, "repvalue": 642000, "xcoord": 85.316665487908821, "ycoord": 27.630385501450665 }, "geometry": { "type": "Point", "coordinates": [ 85.316665487908821, 27.630385501450665 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 177, "nhouse": 3, "residents": 16, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 95, "repvalue": 380000, "xcoord": 85.315542203792589, "ycoord": 27.626632749955018 }, "geometry": { "type": "Point", "coordinates": [ 85.315542203792589, 27.626632749955018 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 178, "nhouse": 24, "residents": 85, "specialfac": 0, "expstr": "RCi+HC+17s+ResCom", "fptarea": 77, "repvalue": 2618000, "xcoord": 85.312044079712578, "ycoord": 27.63231572608856 }, "geometry": { "type": "Point", "coordinates": [ 85.312044079712578, 27.63231572608856 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 179, "nhouse": 6, "residents": 24, "specialfac": 0, "expstr": "BrM+LC+4s+ResCom", "fptarea": 85, "repvalue": 680000, "xcoord": 85.312588480518031, "ycoord": 27.63103703393686 }, "geometry": { "type": "Point", "coordinates": [ 85.312588480518031, 27.63103703393686 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 180, "nhouse": 12, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 91, "repvalue": 1274000, "xcoord": 85.317915680650003, "ycoord": 27.625843626082851 }, "geometry": { "type": "Point", "coordinates": [ 85.317915680650003, 27.625843626082851 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 181, "nhouse": 4, "residents": 20, "specialfac": 0, "expstr": "BrM+LC+4s+Res", "fptarea": 57, "repvalue": 456000, "xcoord": 85.316023946874054, "ycoord": 27.629442934544716 }, "geometry": { "type": "Point", "coordinates": [ 85.316023946874054, 27.629442934544716 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 182, "nhouse": 1, "residents": 8, "specialfac": 0, "expstr": "RCi+HC+1s+ResCom", "fptarea": 85, "repvalue": 170000, "xcoord": 85.313529956114806, "ycoord": 27.629529474231436 }, "geometry": { "type": "Point", "coordinates": [ 85.313529956114806, 27.629529474231436 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 183, "nhouse": 5, "residents": 22, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 55, "repvalue": 660000, "xcoord": 85.314458875534953, "ycoord": 27.62883968478506 }, "geometry": { "type": "Point", "coordinates": [ 85.314458875534953, 27.62883968478506 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 184, "nhouse": 9, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 82, "repvalue": 984000, "xcoord": 85.313662915433852, "ycoord": 27.629414243958841 }, "geometry": { "type": "Point", "coordinates": [ 85.313662915433852, 27.629414243958841 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 185, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrM+LC+1s+ResCom", "fptarea": 60, "repvalue": 120000, "xcoord": 85.311700770704405, "ycoord": 27.629039828664538 }, "geometry": { "type": "Point", "coordinates": [ 85.311700770704405, 27.629039828664538 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 186, "nhouse": 7, "residents": 29, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 66, "repvalue": 792000, "xcoord": 85.315594663709334, "ycoord": 27.631774665125612 }, "geometry": { "type": "Point", "coordinates": [ 85.315594663709334, 27.631774665125612 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 187, "nhouse": 14, "residents": 46, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 107, "repvalue": 1498000, "xcoord": 85.311025201747441, "ycoord": 27.63031692014567 }, "geometry": { "type": "Point", "coordinates": [ 85.311025201747441, 27.63031692014567 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 188, "nhouse": 16, "residents": 63, "specialfac": 0, "expstr": "RCi+HC+11s+ResCom", "fptarea": 79, "repvalue": 1738000, "xcoord": 85.311438435251588, "ycoord": 27.629036634671657 }, "geometry": { "type": "Point", "coordinates": [ 85.311438435251588, 27.629036634671657 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 189, "nhouse": 3, "residents": 15, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 78, "repvalue": 312000, "xcoord": 85.31541282746079, "ycoord": 27.626514331246586 }, "geometry": { "type": "Point", "coordinates": [ 85.31541282746079, 27.626514331246586 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 190, "nhouse": 6, "residents": 29, "specialfac": 0, "expstr": "BrM+MC+4s+ResCom", "fptarea": 80, "repvalue": 640000, "xcoord": 85.314182217816182, "ycoord": 27.629771099341649 }, "geometry": { "type": "Point", "coordinates": [ 85.314182217816182, 27.629771099341649 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 191, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 81, "repvalue": 324000, "xcoord": 85.317622982369315, "ycoord": 27.627826480456214 }, "geometry": { "type": "Point", "coordinates": [ 85.317622982369315, 27.627826480456214 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 192, "nhouse": 4, "residents": 20, "specialfac": 0, "expstr": "BrM+MC+2s+ResCom", "fptarea": 104, "repvalue": 416000, "xcoord": 85.315853428804189, "ycoord": 27.63201150248949 }, "geometry": { "type": "Point", "coordinates": [ 85.315853428804189, 27.63201150248949 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 193, "nhouse": 2, "residents": 10, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 75, "repvalue": 300000, "xcoord": 85.314852378639515, "ycoord": 27.628844466989015 }, "geometry": { "type": "Point", "coordinates": [ 85.314852378639515, 27.628844466989015 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 194, "nhouse": 10, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 81, "repvalue": 1134000, "xcoord": 85.313795874474621, "ycoord": 27.629299013544468 }, "geometry": { "type": "Point", "coordinates": [ 85.313795874474621, 27.629299013544468 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 195, "nhouse": 5, "residents": 16, "specialfac": 0, "expstr": "RCi+HC+4s+ResCom", "fptarea": 79, "repvalue": 632000, "xcoord": 85.313438190423497, "ycoord": 27.626957720521034 }, "geometry": { "type": "Point", "coordinates": [ 85.313438190423497, 27.626957720521034 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 196, "nhouse": 7, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 67, "repvalue": 804000, "xcoord": 85.312985574499749, "ycoord": 27.630808171167708 }, "geometry": { "type": "Point", "coordinates": [ 85.312985574499749, 27.630808171167708 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 197, "nhouse": 4, "residents": 21, "specialfac": 0, "expstr": "BrCfl+LC+3s+ResCom", "fptarea": 74, "repvalue": 444000, "xcoord": 85.313641424295454, "ycoord": 27.630816148374745 }, "geometry": { "type": "Point", "coordinates": [ 85.313641424295454, 27.630816148374745 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 198, "nhouse": 3, "residents": 17, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 67, "repvalue": 402000, "xcoord": 85.315995331751665, "ycoord": 27.631312142633991 }, "geometry": { "type": "Point", "coordinates": [ 85.315995331751665, 27.631312142633991 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 199, "nhouse": 8, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 76, "repvalue": 912000, "xcoord": 85.316015004944319, "ycoord": 27.630027062129685 }, "geometry": { "type": "Point", "coordinates": [ 85.316015004944319, 27.630027062129685 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 200, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 74, "repvalue": 296000, "xcoord": 85.312739361922297, "ycoord": 27.629753551629886 }, "geometry": { "type": "Point", "coordinates": [ 85.312739361922297, 27.629753551629886 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 201, "nhouse": 22, "residents": 80, "specialfac": 0, "expstr": "RCi+HC+13s+ResCom", "fptarea": 92, "repvalue": 2392000, "xcoord": 85.311544499112088, "ycoord": 27.630673785173883 }, "geometry": { "type": "Point", "coordinates": [ 85.311544499112088, 27.630673785173883 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 202, "nhouse": 5, "residents": 16, "specialfac": 0, "expstr": "BrM+LC+3s+ResCom", "fptarea": 104, "repvalue": 624000, "xcoord": 85.316263037956801, "ycoord": 27.630964851726226 }, "geometry": { "type": "Point", "coordinates": [ 85.316263037956801, 27.630964851726226 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 203, "nhouse": 23, "residents": 108, "specialfac": 0, "expstr": "RCi+HC+17s+ResCom", "fptarea": 74, "repvalue": 2516000, "xcoord": 85.318169080235151, "ycoord": 27.626430936024629 }, "geometry": { "type": "Point", "coordinates": [ 85.318169080235151, 27.626430936024629 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 204, "nhouse": 31, "residents": 137, "specialfac": 0, "expstr": "RCi+HC+19s+ResCom", "fptarea": 86, "repvalue": 3268000, "xcoord": 85.316336345958916, "ycoord": 27.626175004033541 }, "geometry": { "type": "Point", "coordinates": [ 85.316336345958916, 27.626175004033541 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 205, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "RCi+HC+1s+ResCom", "fptarea": 66, "repvalue": 132000, "xcoord": 85.313515627662312, "ycoord": 27.630464077128931 }, "geometry": { "type": "Point", "coordinates": [ 85.313515627662312, 27.630464077128931 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 206, "nhouse": 9, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 74, "repvalue": 1036000, "xcoord": 85.314451715549438, "ycoord": 27.62930698652082 }, "geometry": { "type": "Point", "coordinates": [ 85.314451715549438, 27.62930698652082 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 207, "nhouse": 4, "residents": 21, "specialfac": 0, "expstr": "BrCri+LC+2s+ResCom", "fptarea": 107, "repvalue": 428000, "xcoord": 85.312710690624328, "ycoord": 27.631622756468921 }, "geometry": { "type": "Point", "coordinates": [ 85.312710690624328, 27.631622756468921 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 208, "nhouse": 7, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 78, "repvalue": 780000, "xcoord": 85.312604609229837, "ycoord": 27.62998560625784 }, "geometry": { "type": "Point", "coordinates": [ 85.312604609229837, 27.62998560625784 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 209, "nhouse": 6, "residents": 27, "specialfac": 0, "expstr": "BrCfl+MC+3s+ResCom", "fptarea": 106, "repvalue": 636000, "xcoord": 85.3174292753678, "ycoord": 27.631913785236073 }, "geometry": { "type": "Point", "coordinates": [ 85.3174292753678, 27.631913785236073 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 210, "nhouse": 12, "residents": 64, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 93, "repvalue": 1302000, "xcoord": 85.317630128438594, "ycoord": 27.627359177857173 }, "geometry": { "type": "Point", "coordinates": [ 85.317630128438594, 27.627359177857173 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 211, "nhouse": 8, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 68, "repvalue": 816000, "xcoord": 85.316516438813281, "ycoord": 27.631552164406337 }, "geometry": { "type": "Point", "coordinates": [ 85.316516438813281, 27.631552164406337 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 212, "nhouse": 4, "residents": 12, "specialfac": 0, "expstr": "BrCri+LC+3s+ResCom", "fptarea": 89, "repvalue": 534000, "xcoord": 85.318307388076406, "ycoord": 27.625965223725263 }, "geometry": { "type": "Point", "coordinates": [ 85.318307388076406, 27.625965223725263 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 213, "nhouse": 6, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 73, "repvalue": 730000, "xcoord": 85.312890238971363, "ycoord": 27.628470068774369 }, "geometry": { "type": "Point", "coordinates": [ 85.312890238971363, 27.628470068774369 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 214, "nhouse": 23, "residents": 89, "specialfac": 0, "expstr": "RCi+HC+17s+ResCom", "fptarea": 73, "repvalue": 2482000, "xcoord": 85.316635094613815, "ycoord": 27.632371535414379 }, "geometry": { "type": "Point", "coordinates": [ 85.316635094613815, 27.632371535414379 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 215, "nhouse": 2, "residents": 11, "specialfac": 0, "expstr": "BrCfl+LC+1s+ResCom", "fptarea": 106, "repvalue": 212000, "xcoord": 85.317174081532528, "ycoord": 27.631443299558775 }, "geometry": { "type": "Point", "coordinates": [ 85.317174081532528, 27.631443299558775 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 216, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "BrCri+LC+2s+ResCom", "fptarea": 83, "repvalue": 332000, "xcoord": 85.309161897387654, "ycoord": 27.632046918092087 }, "geometry": { "type": "Point", "coordinates": [ 85.309161897387654, 27.632046918092087 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 217, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 66, "repvalue": 264000, "xcoord": 85.313801246566953, "ycoord": 27.628948537363929 }, "geometry": { "type": "Point", "coordinates": [ 85.313801246566953, 27.628948537363929 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 218, "nhouse": 11, "residents": 43, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 105, "repvalue": 1260000, "xcoord": 85.316924252320987, "ycoord": 27.630622336818099 }, "geometry": { "type": "Point", "coordinates": [ 85.316924252320987, 27.630622336818099 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 219, "nhouse": 4, "residents": 15, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 85, "repvalue": 510000, "xcoord": 85.311546292315128, "ycoord": 27.630556959941394 }, "geometry": { "type": "Point", "coordinates": [ 85.311546292315128, 27.630556959941394 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 220, "nhouse": 29, "residents": 122, "specialfac": 0, "expstr": "RCi+HC+15s+ResCom", "fptarea": 102, "repvalue": 3060000, "xcoord": 85.313556820103784, "ycoord": 27.627777093440613 }, "geometry": { "type": "Point", "coordinates": [ 85.313556820103784, 27.627777093440613 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 221, "nhouse": 11, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 90, "repvalue": 1260000, "xcoord": 85.317795989305225, "ycoord": 27.63367094309821 }, "geometry": { "type": "Point", "coordinates": [ 85.317795989305225, 27.63367094309821 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 222, "nhouse": 5, "residents": 20, "specialfac": 0, "expstr": "BrCri+LC+3s+ResCom", "fptarea": 89, "repvalue": 534000, "xcoord": 85.317376729925996, "ycoord": 27.626771867038361 }, "geometry": { "type": "Point", "coordinates": [ 85.317376729925996, 27.626771867038361 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 223, "nhouse": 4, "residents": 16, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 80, "repvalue": 480000, "xcoord": 85.311129465849731, "ycoord": 27.632070895639373 }, "geometry": { "type": "Point", "coordinates": [ 85.311129465849731, 27.632070895639373 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 224, "nhouse": 10, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+8s+ResCom", "fptarea": 70, "repvalue": 1120000, "xcoord": 85.31331956217349, "ycoord": 27.626138347486158 }, "geometry": { "type": "Point", "coordinates": [ 85.31331956217349, 27.626138347486158 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 225, "nhouse": 5, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 65, "repvalue": 650000, "xcoord": 85.317409617119083, "ycoord": 27.633198866326893 }, "geometry": { "type": "Point", "coordinates": [ 85.317409617119083, 27.633198866326893 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 226, "nhouse": 6, "residents": 22, "specialfac": 0, "expstr": "BrM+LC+4s+ResCom", "fptarea": 85, "repvalue": 680000, "xcoord": 85.313794083755624, "ycoord": 27.62941583893382 }, "geometry": { "type": "Point", "coordinates": [ 85.313794083755624, 27.62941583893382 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 227, "nhouse": 5, "residents": 17, "specialfac": 0, "expstr": "BrM+MC+4s+ResCom", "fptarea": 68, "repvalue": 544000, "xcoord": 85.31363426023772, "ycoord": 27.631283449780291 }, "geometry": { "type": "Point", "coordinates": [ 85.31363426023772, 27.631283449780291 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 228, "nhouse": 13, "residents": 57, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 107, "repvalue": 1498000, "xcoord": 85.313583681667538, "ycoord": 27.626024712182836 }, "geometry": { "type": "Point", "coordinates": [ 85.313583681667538, 27.626024712182836 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 229, "nhouse": 30, "residents": 111, "specialfac": 0, "expstr": "RCi+HC+16s+ResCom", "fptarea": 97, "repvalue": 3104000, "xcoord": 85.312378115419122, "ycoord": 27.627645907634143 }, "geometry": { "type": "Point", "coordinates": [ 85.312378115419122, 27.627645907634143 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 230, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrCfl+LC+1s+ResCom", "fptarea": 85, "repvalue": 170000, "xcoord": 85.31706435893642, "ycoord": 27.630039800925307 }, "geometry": { "type": "Point", "coordinates": [ 85.31706435893642, 27.630039800925307 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 231, "nhouse": 1, "residents": 1, "specialfac": 0, "expstr": "BrCri+MC+1s+Res", "fptarea": 65, "repvalue": 130000, "xcoord": 85.313531747122852, "ycoord": 27.629412648859901 }, "geometry": { "type": "Point", "coordinates": [ 85.313531747122852, 27.629412648859901 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 232, "nhouse": 3, "residents": 7, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 79, "repvalue": 316000, "xcoord": 85.318048630936659, "ycoord": 27.625728391142367 }, "geometry": { "type": "Point", "coordinates": [ 85.318048630936659, 27.625728391142367 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 233, "nhouse": 4, "residents": 22, "specialfac": 0, "expstr": "BrM+LC+2s+Res", "fptarea": 102, "repvalue": 408000, "xcoord": 85.316238001812664, "ycoord": 27.632600408676009 }, "geometry": { "type": "Point", "coordinates": [ 85.316238001812664, 27.632600408676009 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 234, "nhouse": 17, "residents": 56, "specialfac": 0, "expstr": "RCi+HC+9s+ResCom", "fptarea": 101, "repvalue": 1818000, "xcoord": 85.314467825274448, "ycoord": 27.628255557568682 }, "geometry": { "type": "Point", "coordinates": [ 85.314467825274448, 27.628255557568682 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 235, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "RCi+HC+1s+ResCom", "fptarea": 106, "repvalue": 212000, "xcoord": 85.316934977083221, "ycoord": 27.629921383441772 }, "geometry": { "type": "Point", "coordinates": [ 85.316934977083221, 27.629921383441772 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 236, "nhouse": 20, "residents": 80, "specialfac": 0, "expstr": "RCi+HC+14s+ResCom", "fptarea": 76, "repvalue": 2128000, "xcoord": 85.314421283687878, "ycoord": 27.631293018527305 }, "geometry": { "type": "Point", "coordinates": [ 85.314421283687878, 27.631293018527305 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 237, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 69, "repvalue": 276000, "xcoord": 85.315137973815524, "ycoord": 27.627328923122914 }, "geometry": { "type": "Point", "coordinates": [ 85.315137973815524, 27.627328923122914 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 238, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 56, "repvalue": 336000, "xcoord": 85.311445607951185, "ycoord": 27.628569333644545 }, "geometry": { "type": "Point", "coordinates": [ 85.311445607951185, 27.628569333644545 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 239, "nhouse": 35, "residents": 165, "specialfac": 0, "expstr": "RCi+HC+18s+ResCom", "fptarea": 101, "repvalue": 3636000, "xcoord": 85.313048276996668, "ycoord": 27.626719283831864 }, "geometry": { "type": "Point", "coordinates": [ 85.313048276996668, 27.626719283831864 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 240, "nhouse": 6, "residents": 23, "specialfac": 0, "expstr": "BrM+MC+3s+ResCom", "fptarea": 106, "repvalue": 636000, "xcoord": 85.317084018582463, "ycoord": 27.628754719477662 }, "geometry": { "type": "Point", "coordinates": [ 85.317084018582463, 27.628754719477662 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 241, "nhouse": 4, "residents": 15, "specialfac": 0, "expstr": "RCi+HC+4s+ResCom", "fptarea": 55, "repvalue": 440000, "xcoord": 85.315463492453802, "ycoord": 27.63177307172846 }, "geometry": { "type": "Point", "coordinates": [ 85.315463492453802, 27.63177307172846 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 242, "nhouse": 2, "residents": 5, "specialfac": 0, "expstr": "BrM+LC+1s+ResCom", "fptarea": 102, "repvalue": 204000, "xcoord": 85.311018026730522, "ycoord": 27.630784220953544 }, "geometry": { "type": "Point", "coordinates": [ 85.311018026730522, 27.630784220953544 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 243, "nhouse": 9, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 71, "repvalue": 994000, "xcoord": 85.311152783758018, "ycoord": 27.630552168086599 }, "geometry": { "type": "Point", "coordinates": [ 85.311152783758018, 27.630552168086599 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 244, "nhouse": 10, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 87, "repvalue": 1044000, "xcoord": 85.313619931604848, "ycoord": 27.632218052491762 }, "geometry": { "type": "Point", "coordinates": [ 85.313619931604848, 27.632218052491762 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 245, "nhouse": 13, "residents": 50, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 105, "repvalue": 1470000, "xcoord": 85.317637274335837, "ycoord": 27.626891875224931 }, "geometry": { "type": "Point", "coordinates": [ 85.317637274335837, 27.626891875224931 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 246, "nhouse": 15, "residents": 61, "specialfac": 0, "expstr": "RCi+HC+12s+ResCom", "fptarea": 70, "repvalue": 1680000, "xcoord": 85.310877887255785, "ycoord": 27.631366749204656 }, "geometry": { "type": "Point", "coordinates": [ 85.310877887255785, 27.631366749204656 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 247, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "BrCfl+LC+2s+ResCom", "fptarea": 76, "repvalue": 304000, "xcoord": 85.317851374882309, "ycoord": 27.63004934981608 }, "geometry": { "type": "Point", "coordinates": [ 85.317851374882309, 27.63004934981608 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 248, "nhouse": 13, "residents": 50, "specialfac": 0, "expstr": "RCi+HC+8s+ResCom", "fptarea": 91, "repvalue": 1456000, "xcoord": 85.314530972781725, "ycoord": 27.632696517563769 }, "geometry": { "type": "Point", "coordinates": [ 85.314530972781725, 27.632696517563769 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 249, "nhouse": 19, "residents": 65, "specialfac": 0, "expstr": "RCi+HC+16s+ResCom", "fptarea": 64, "repvalue": 2048000, "xcoord": 85.31704291056532, "ycoord": 27.631441707672735 }, "geometry": { "type": "Point", "coordinates": [ 85.31704291056532, 27.631441707672735 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 250, "nhouse": 9, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 69, "repvalue": 966000, "xcoord": 85.310892238661893, "ycoord": 27.63043214770186 }, "geometry": { "type": "Point", "coordinates": [ 85.310892238661893, 27.63043214770186 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 251, "nhouse": 6, "residents": 22, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 58, "repvalue": 696000, "xcoord": 85.309163693225003, "ycoord": 27.631930093026622 }, "geometry": { "type": "Point", "coordinates": [ 85.309163693225003, 27.631930093026622 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 252, "nhouse": 4, "residents": 15, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 102, "repvalue": 408000, "xcoord": 85.312186007171945, "ycoord": 27.6316163712597 }, "geometry": { "type": "Point", "coordinates": [ 85.312186007171945, 27.6316163712597 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 253, "nhouse": 11, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+8s+ResCom", "fptarea": 80, "repvalue": 1280000, "xcoord": 85.312243364816894, "ycoord": 27.627877962059607 }, "geometry": { "type": "Point", "coordinates": [ 85.312243364816894, 27.627877962059607 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 254, "nhouse": 1, "residents": 5, "specialfac": 0, "expstr": "RCi+HC+1s+ResCom", "fptarea": 60, "repvalue": 120000, "xcoord": 85.310617340608644, "ycoord": 27.631246728243912 }, "geometry": { "type": "Point", "coordinates": [ 85.310617340608644, 27.631246728243912 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 255, "nhouse": 9, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 74, "repvalue": 1036000, "xcoord": 85.313661124564931, "ycoord": 27.629531069338249 }, "geometry": { "type": "Point", "coordinates": [ 85.313661124564931, 27.629531069338249 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 256, "nhouse": 19, "residents": 83, "specialfac": 0, "expstr": "RCi+HC+16s+ResCom", "fptarea": 67, "repvalue": 2144000, "xcoord": 85.312996324437322, "ycoord": 27.630107219233565 }, "geometry": { "type": "Point", "coordinates": [ 85.312996324437322, 27.630107219233565 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 257, "nhouse": 10, "residents": 47, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 94, "repvalue": 1128000, "xcoord": 85.312315385553603, "ycoord": 27.631734793009084 }, "geometry": { "type": "Point", "coordinates": [ 85.312315385553603, 27.631734793009084 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 258, "nhouse": 11, "residents": 43, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 83, "repvalue": 1162000, "xcoord": 85.314570354381274, "ycoord": 27.630126358757042 }, "geometry": { "type": "Point", "coordinates": [ 85.314570354381274, 27.630126358757042 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 259, "nhouse": 6, "residents": 18, "specialfac": 0, "expstr": "BrM+LC+4s+ResCom", "fptarea": 87, "repvalue": 696000, "xcoord": 85.315660849035766, "ycoord": 27.627452121793642 }, "geometry": { "type": "Point", "coordinates": [ 85.315660849035766, 27.627452121793642 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 260, "nhouse": 4, "residents": 14, "specialfac": 0, "expstr": "BrM+LC+3s+ResCom", "fptarea": 65, "repvalue": 390000, "xcoord": 85.310076505941879, "ycoord": 27.632291761320324 }, "geometry": { "type": "Point", "coordinates": [ 85.310076505941879, 27.632291761320324 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 261, "nhouse": 3, "residents": 17, "specialfac": 0, "expstr": "BrCfl+LC+3s+ResCom", "fptarea": 57, "repvalue": 342000, "xcoord": 85.315635807672635, "ycoord": 27.629087679064163 }, "geometry": { "type": "Point", "coordinates": [ 85.315635807672635, 27.629087679064163 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 262, "nhouse": 1, "residents": 1, "specialfac": 0, "expstr": "RCi+HC+1s+ResCom", "fptarea": 58, "repvalue": 116000, "xcoord": 85.315204728772031, "ycoord": 27.631536233691232 }, "geometry": { "type": "Point", "coordinates": [ 85.315204728772031, 27.631536233691232 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 263, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "RCi+HC+1s+ResCom", "fptarea": 55, "repvalue": 110000, "xcoord": 85.311688220012527, "ycoord": 27.629857605492521 }, "geometry": { "type": "Point", "coordinates": [ 85.311688220012527, 27.629857605492521 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 264, "nhouse": 10, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 73, "repvalue": 1022000, "xcoord": 85.316282707733066, "ycoord": 27.629679770980328 }, "geometry": { "type": "Point", "coordinates": [ 85.316282707733066, 27.629679770980328 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 265, "nhouse": 8, "residents": 28, "specialfac": 0, "expstr": "BrM+LC+4s+ResCom", "fptarea": 104, "repvalue": 832000, "xcoord": 85.311407949351789, "ycoord": 27.631022663666378 }, "geometry": { "type": "Point", "coordinates": [ 85.311407949351789, 27.631022663666378 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 266, "nhouse": 4, "residents": 19, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 73, "repvalue": 438000, "xcoord": 85.318041487138885, "ycoord": 27.626195693951917 }, "geometry": { "type": "Point", "coordinates": [ 85.318041487138885, 27.626195693951917 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 267, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "BrCfl+LC+2s+ResCom", "fptarea": 94, "repvalue": 376000, "xcoord": 85.313244331543473, "ycoord": 27.631045013082026 }, "geometry": { "type": "Point", "coordinates": [ 85.313244331543473, 27.631045013082026 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 268, "nhouse": 4, "residents": 14, "specialfac": 0, "expstr": "BrM+LC+4s+ResCom", "fptarea": 64, "repvalue": 512000, "xcoord": 85.315416405010353, "ycoord": 27.626280680173021 }, "geometry": { "type": "Point", "coordinates": [ 85.315416405010353, 27.626280680173021 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 269, "nhouse": 4, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+4s+ResCom", "fptarea": 61, "repvalue": 488000, "xcoord": 85.312998116055837, "ycoord": 27.629990393903945 }, "geometry": { "type": "Point", "coordinates": [ 85.312998116055837, 27.629990393903945 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 270, "nhouse": 4, "residents": 16, "specialfac": 0, "expstr": "BrM+LC+3s+ResCom", "fptarea": 86, "repvalue": 516000, "xcoord": 85.317373156463901, "ycoord": 27.62700551833133 }, "geometry": { "type": "Point", "coordinates": [ 85.317373156463901, 27.62700551833133 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 271, "nhouse": 9, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 97, "repvalue": 970000, "xcoord": 85.313190188903178, "ycoord": 27.626019926828008 }, "geometry": { "type": "Point", "coordinates": [ 85.313190188903178, 27.626019926828008 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 272, "nhouse": 11, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 98, "repvalue": 1176000, "xcoord": 85.311844487636193, "ycoord": 27.628223648490142 }, "geometry": { "type": "Point", "coordinates": [ 85.311844487636193, 27.628223648490142 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 273, "nhouse": 11, "residents": 52, "specialfac": 0, "expstr": "RCi+HC+8s+ResCom", "fptarea": 72, "repvalue": 1152000, "xcoord": 85.314342028421933, "ycoord": 27.627903486961085 }, "geometry": { "type": "Point", "coordinates": [ 85.314342028421933, 27.627903486961085 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 274, "nhouse": 4, "residents": 17, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 106, "repvalue": 424000, "xcoord": 85.309422444138974, "ycoord": 27.632166941789063 }, "geometry": { "type": "Point", "coordinates": [ 85.309422444138974, 27.632166941789063 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 275, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "BrCfl+LC+2s+ResCom", "fptarea": 71, "repvalue": 284000, "xcoord": 85.314888167633981, "ycoord": 27.626507957339694 }, "geometry": { "type": "Point", "coordinates": [ 85.314888167633981, 27.626507957339694 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 276, "nhouse": 4, "residents": 23, "specialfac": 0, "expstr": "BrM+LC+4s+ResCom", "fptarea": 59, "repvalue": 472000, "xcoord": 85.314022400010188, "ycoord": 27.631638710814887 }, "geometry": { "type": "Point", "coordinates": [ 85.314022400010188, 27.631638710814887 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 277, "nhouse": 4, "residents": 14, "specialfac": 0, "expstr": "BrCri+LC+3s+ResCom", "fptarea": 70, "repvalue": 420000, "xcoord": 85.315510006218886, "ycoord": 27.628735609347931 }, "geometry": { "type": "Point", "coordinates": [ 85.315510006218886, 27.628735609347931 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 278, "nhouse": 4, "residents": 13, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 101, "repvalue": 404000, "xcoord": 85.312611777265758, "ycoord": 27.6295183050132 }, "geometry": { "type": "Point", "coordinates": [ 85.312611777265758, 27.6295183050132 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 279, "nhouse": 26, "residents": 99, "specialfac": 0, "expstr": "RCi+HC+17s+ResCom", "fptarea": 86, "repvalue": 2924000, "xcoord": 85.312705314448593, "ycoord": 27.631973232317073 }, "geometry": { "type": "Point", "coordinates": [ 85.312705314448593, 27.631973232317073 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 280, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrM+LC+1s+ResCom", "fptarea": 92, "repvalue": 184000, "xcoord": 85.317397106646837, "ycoord": 27.634016645072133 }, "geometry": { "type": "Point", "coordinates": [ 85.317397106646837, 27.634016645072133 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 281, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 80, "repvalue": 320000, "xcoord": 85.315414616240943, "ycoord": 27.626397505710838 }, "geometry": { "type": "Point", "coordinates": [ 85.315414616240943, 27.626397505710838 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 282, "nhouse": 4, "residents": 16, "specialfac": 0, "expstr": "BrM+LC+4s+ResCom", "fptarea": 59, "repvalue": 472000, "xcoord": 85.316518226804078, "ycoord": 27.631435338888998 }, "geometry": { "type": "Point", "coordinates": [ 85.316518226804078, 27.631435338888998 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 283, "nhouse": 4, "residents": 25, "specialfac": 0, "expstr": "BrM+LC+3s+ResCom", "fptarea": 80, "repvalue": 480000, "xcoord": 85.313362962467664, "ycoord": 27.631864385837734 }, "geometry": { "type": "Point", "coordinates": [ 85.313362962467664, 27.631864385837734 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 284, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 66, "repvalue": 264000, "xcoord": 85.315465281579364, "ycoord": 27.631656246278229 }, "geometry": { "type": "Point", "coordinates": [ 85.315465281579364, 27.631656246278229 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 285, "nhouse": 13, "residents": 56, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 101, "repvalue": 1414000, "xcoord": 85.311003676178473, "ycoord": 27.631718822469654 }, "geometry": { "type": "Point", "coordinates": [ 85.311003676178473, 27.631718822469654 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 286, "nhouse": 33, "residents": 148, "specialfac": 0, "expstr": "RCi+HC+17s+ResCom", "fptarea": 105, "repvalue": 3570000, "xcoord": 85.315766975738569, "ycoord": 27.629089272156335 }, "geometry": { "type": "Point", "coordinates": [ 85.315766975738569, 27.629089272156335 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 287, "nhouse": 3, "residents": 5, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 107, "repvalue": 428000, "xcoord": 85.313551447500018, "ycoord": 27.628127569636128 }, "geometry": { "type": "Point", "coordinates": [ 85.313551447500018, 27.628127569636128 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 288, "nhouse": 15, "residents": 56, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 86, "repvalue": 1720000, "xcoord": 85.315864161020443, "ycoord": 27.631310549640194 }, "geometry": { "type": "Point", "coordinates": [ 85.315864161020443, 27.631310549640194 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 289, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "RCi+HC+1s+ResCom", "fptarea": 67, "repvalue": 134000, "xcoord": 85.314496462630956, "ycoord": 27.626386350127607 }, "geometry": { "type": "Point", "coordinates": [ 85.314496462630956, 27.626386350127607 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 290, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 57, "repvalue": 228000, "xcoord": 85.316471085859675, "ycoord": 27.625942945097389 }, "geometry": { "type": "Point", "coordinates": [ 85.316471085859675, 27.625942945097389 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 291, "nhouse": 5, "residents": 16, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 89, "repvalue": 534000, "xcoord": 85.311950557456427, "ycoord": 27.629860799100058 }, "geometry": { "type": "Point", "coordinates": [ 85.311950557456427, 27.629860799100058 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 292, "nhouse": 4, "residents": 18, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 107, "repvalue": 428000, "xcoord": 85.312990949517044, "ycoord": 27.63045769520998 }, "geometry": { "type": "Point", "coordinates": [ 85.312990949517044, 27.63045769520998 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 293, "nhouse": 4, "residents": 19, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 108, "repvalue": 432000, "xcoord": 85.309289477114021, "ycoord": 27.632282167603471 }, "geometry": { "type": "Point", "coordinates": [ 85.309289477114021, 27.632282167603471 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 294, "nhouse": 14, "residents": 53, "specialfac": 0, "expstr": "RCi+HC+10s+ResCom", "fptarea": 74, "repvalue": 1480000, "xcoord": 85.313790502285286, "ycoord": 27.629649489706321 }, "geometry": { "type": "Point", "coordinates": [ 85.313790502285286, 27.629649489706321 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 295, "nhouse": 13, "residents": 52, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 106, "repvalue": 1484000, "xcoord": 85.314081485621031, "ycoord": 27.627783472651448 }, "geometry": { "type": "Point", "coordinates": [ 85.314081485621031, 27.627783472651448 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 296, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "BrM+MC+2s+ResCom", "fptarea": 95, "repvalue": 380000, "xcoord": 85.317136546077933, "ycoord": 27.633896635812878 }, "geometry": { "type": "Point", "coordinates": [ 85.317136546077933, 27.633896635812878 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 297, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrCri+LC+1s+ResCom", "fptarea": 85, "repvalue": 170000, "xcoord": 85.314632996180052, "ycoord": 27.626037467676174 }, "geometry": { "type": "Point", "coordinates": [ 85.314632996180052, 27.626037467676174 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 298, "nhouse": 4, "residents": 16, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 85, "repvalue": 510000, "xcoord": 85.312054836335818, "ycoord": 27.631614774647495 }, "geometry": { "type": "Point", "coordinates": [ 85.312054836335818, 27.631614774647495 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 299, "nhouse": 7, "residents": 32, "specialfac": 0, "expstr": "BrM+LC+4s+Res", "fptarea": 103, "repvalue": 824000, "xcoord": 85.314166104326063, "ycoord": 27.630822527909185 }, "geometry": { "type": "Point", "coordinates": [ 85.314166104326063, 27.630822527909185 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 300, "nhouse": 11, "residents": 54, "specialfac": 0, "expstr": "RCi+HC+10s+ResCom", "fptarea": 63, "repvalue": 1260000, "xcoord": 85.317610476334082, "ycoord": 27.628644259924656 }, "geometry": { "type": "Point", "coordinates": [ 85.317610476334082, 27.628644259924656 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 301, "nhouse": 4, "residents": 15, "specialfac": 0, "expstr": "BrCri+MC+3s+Res", "fptarea": 76, "repvalue": 456000, "xcoord": 85.317213399301721, "ycoord": 27.628873136787227 }, "geometry": { "type": "Point", "coordinates": [ 85.317213399301721, 27.628873136787227 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 302, "nhouse": 6, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+4s+ResCom", "fptarea": 82, "repvalue": 656000, "xcoord": 85.317590822928423, "ycoord": 27.629929341741068 }, "geometry": { "type": "Point", "coordinates": [ 85.317590822928423, 27.629929341741068 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 303, "nhouse": 25, "residents": 88, "specialfac": 0, "expstr": "RCi+HC+14s+ResCom", "fptarea": 100, "repvalue": 2800000, "xcoord": 85.31740425555266, "ycoord": 27.633549342944445 }, "geometry": { "type": "Point", "coordinates": [ 85.31740425555266, 27.633549342944445 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 304, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "BrCri+LC+2s+ResCom", "fptarea": 95, "repvalue": 380000, "xcoord": 85.314142827743808, "ycoord": 27.6323412577655 }, "geometry": { "type": "Point", "coordinates": [ 85.314142827743808, 27.6323412577655 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 305, "nhouse": 7, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 68, "repvalue": 816000, "xcoord": 85.315053872379991, "ycoord": 27.632819719539409 }, "geometry": { "type": "Point", "coordinates": [ 85.315053872379991, 27.632819719539409 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 306, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "BrM+LC+3s+ResCom", "fptarea": 64, "repvalue": 384000, "xcoord": 85.316789507064243, "ycoord": 27.630854395832312 }, "geometry": { "type": "Point", "coordinates": [ 85.316789507064243, 27.630854395832312 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 307, "nhouse": 8, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 64, "repvalue": 896000, "xcoord": 85.311400775745568, "ycoord": 27.63148996451913 }, "geometry": { "type": "Point", "coordinates": [ 85.311400775745568, 27.63148996451913 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 308, "nhouse": 5, "residents": 17, "specialfac": 0, "expstr": "BrM+LC+3s+ResCom", "fptarea": 87, "repvalue": 522000, "xcoord": 85.318293102362745, "ycoord": 27.626899829403708 }, "geometry": { "type": "Point", "coordinates": [ 85.318293102362745, 27.626899829403708 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 309, "nhouse": 4, "residents": 18, "specialfac": 0, "expstr": "BrM+LC+4s+ResCom", "fptarea": 58, "repvalue": 464000, "xcoord": 85.314947755842582, "ycoord": 27.63118256978581 }, "geometry": { "type": "Point", "coordinates": [ 85.314947755842582, 27.63118256978581 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 310, "nhouse": 9, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 84, "repvalue": 1008000, "xcoord": 85.317804923161759, "ycoord": 27.633086815284351 }, "geometry": { "type": "Point", "coordinates": [ 85.317804923161759, 27.633086815284351 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 311, "nhouse": 11, "residents": 50, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 82, "repvalue": 1148000, "xcoord": 85.314025981290371, "ycoord": 27.631405060081438 }, "geometry": { "type": "Point", "coordinates": [ 85.314025981290371, 27.631405060081438 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 312, "nhouse": 24, "residents": 91, "specialfac": 0, "expstr": "RCi+HC+19s+Res", "fptarea": 69, "repvalue": 2622000, "xcoord": 85.317677323938227, "ycoord": 27.632851572783711 }, "geometry": { "type": "Point", "coordinates": [ 85.317677323938227, 27.632851572783711 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 313, "nhouse": 4, "residents": 15, "specialfac": 0, "expstr": "RCi+HC+4s+ResCom", "fptarea": 59, "repvalue": 472000, "xcoord": 85.313181233231319, "ycoord": 27.626604053847601 }, "geometry": { "type": "Point", "coordinates": [ 85.313181233231319, 27.626604053847601 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 314, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 94, "repvalue": 376000, "xcoord": 85.315765187128164, "ycoord": 27.629206097667964 }, "geometry": { "type": "Point", "coordinates": [ 85.315765187128164, 27.629206097667964 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 315, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "BrCfl+LC+2s+ResCom", "fptarea": 95, "repvalue": 380000, "xcoord": 85.313429235711624, "ycoord": 27.627541847536431 }, "geometry": { "type": "Point", "coordinates": [ 85.313429235711624, 27.627541847536431 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 316, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 83, "repvalue": 332000, "xcoord": 85.318136933133928, "ycoord": 27.62853379832357 }, "geometry": { "type": "Point", "coordinates": [ 85.318136933133928, 27.62853379832357 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 317, "nhouse": 20, "residents": 75, "specialfac": 0, "expstr": "RCi+HC+13s+ResCom", "fptarea": 87, "repvalue": 2262000, "xcoord": 85.313625304923022, "ycoord": 27.631867576490531 }, "geometry": { "type": "Point", "coordinates": [ 85.313625304923022, 27.631867576490531 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 318, "nhouse": 5, "residents": 14, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 54, "repvalue": 540000, "xcoord": 85.315761609875054, "ycoord": 27.629439748685002 }, "geometry": { "type": "Point", "coordinates": [ 85.315761609875054, 27.629439748685002 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 319, "nhouse": 5, "residents": 25, "specialfac": 0, "expstr": "BrM+LC+3s+ResCom", "fptarea": 98, "repvalue": 588000, "xcoord": 85.312462687097067, "ycoord": 27.630684961885287 }, "geometry": { "type": "Point", "coordinates": [ 85.312462687097067, 27.630684961885287 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 320, "nhouse": 6, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 67, "repvalue": 670000, "xcoord": 85.312067385238663, "ycoord": 27.630796997871808 }, "geometry": { "type": "Point", "coordinates": [ 85.312067385238663, 27.630796997871808 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 321, "nhouse": 2, "residents": 10, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 73, "repvalue": 292000, "xcoord": 85.315662637623817, "ycoord": 27.62733529625875 }, "geometry": { "type": "Point", "coordinates": [ 85.315662637623817, 27.62733529625875 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 322, "nhouse": 20, "residents": 80, "specialfac": 0, "expstr": "RCi+HC+15s+ResCom", "fptarea": 72, "repvalue": 2160000, "xcoord": 85.313454308225772, "ycoord": 27.625906291762583 }, "geometry": { "type": "Point", "coordinates": [ 85.313454308225772, 27.625906291762583 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 323, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 93, "repvalue": 372000, "xcoord": 85.315360948152247, "ycoord": 27.629902270880532 }, "geometry": { "type": "Point", "coordinates": [ 85.315360948152247, 27.629902270880532 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 324, "nhouse": 2, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 69, "repvalue": 276000, "xcoord": 85.31192545838239, "ycoord": 27.631496352671785 }, "geometry": { "type": "Point", "coordinates": [ 85.31192545838239, 27.631496352671785 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 325, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 87, "repvalue": 348000, "xcoord": 85.316208757143684, "ycoord": 27.625939760453395 }, "geometry": { "type": "Point", "coordinates": [ 85.316208757143684, 27.625939760453395 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 326, "nhouse": 7, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 56, "repvalue": 784000, "xcoord": 85.312101443881488, "ycoord": 27.628577317539381 }, "geometry": { "type": "Point", "coordinates": [ 85.312101443881488, 27.628577317539381 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 327, "nhouse": 21, "residents": 85, "specialfac": 0, "expstr": "RCi+HC+13s+ResCom", "fptarea": 86, "repvalue": 2236000, "xcoord": 85.309943539408735, "ycoord": 27.632406987784051 }, "geometry": { "type": "Point", "coordinates": [ 85.309943539408735, 27.632406987784051 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 328, "nhouse": 4, "residents": 17, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 72, "repvalue": 432000, "xcoord": 85.31248956939983, "ycoord": 27.628932582351727 }, "geometry": { "type": "Point", "coordinates": [ 85.31248956939983, 27.628932582351727 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 329, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 87, "repvalue": 348000, "xcoord": 85.318178009367415, "ycoord": 27.625846807488955 }, "geometry": { "type": "Point", "coordinates": [ 85.318178009367415, 27.625846807488955 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 330, "nhouse": 13, "residents": 47, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 103, "repvalue": 1442000, "xcoord": 85.313680823530191, "ycoord": 27.628245990050623 }, "geometry": { "type": "Point", "coordinates": [ 85.313680823530191, 27.628245990050623 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 331, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 66, "repvalue": 264000, "xcoord": 85.317546151258085, "ycoord": 27.632849981299167 }, "geometry": { "type": "Point", "coordinates": [ 85.317546151258085, 27.632849981299167 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 332, "nhouse": 19, "residents": 70, "specialfac": 0, "expstr": "RCi+HC+12s+ResCom", "fptarea": 82, "repvalue": 1968000, "xcoord": 85.315447389839221, "ycoord": 27.632824500687168 }, "geometry": { "type": "Point", "coordinates": [ 85.315447389839221, 27.632824500687168 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 333, "nhouse": 1, "residents": 5, "specialfac": 0, "expstr": "RCi+HC+1s+ResCom", "fptarea": 104, "repvalue": 208000, "xcoord": 85.31232614018333, "ycoord": 27.631033841411103 }, "geometry": { "type": "Point", "coordinates": [ 85.31232614018333, 27.631033841411103 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 334, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 69, "repvalue": 276000, "xcoord": 85.317750576245288, "ycoord": 27.628061722905514 }, "geometry": { "type": "Point", "coordinates": [ 85.317750576245288, 27.628061722905514 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 335, "nhouse": 18, "residents": 74, "specialfac": 0, "expstr": "RCi+HC+14s+ResCom", "fptarea": 73, "repvalue": 2044000, "xcoord": 85.314079695320402, "ycoord": 27.627900298083546 }, "geometry": { "type": "Point", "coordinates": [ 85.314079695320402, 27.627900298083546 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 336, "nhouse": 3, "residents": 17, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 67, "repvalue": 402000, "xcoord": 85.313501298519895, "ycoord": 27.631398679893593 }, "geometry": { "type": "Point", "coordinates": [ 85.313501298519895, 27.631398679893593 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 337, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 75, "repvalue": 450000, "xcoord": 85.3122361957154, "ycoord": 27.628345263325851 }, "geometry": { "type": "Point", "coordinates": [ 85.3122361957154, 27.628345263325851 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 338, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "BrCri+LC+3s+ResCom", "fptarea": 68, "repvalue": 408000, "xcoord": 85.316295224185382, "ycoord": 27.628861992193119 }, "geometry": { "type": "Point", "coordinates": [ 85.316295224185382, 27.628861992193119 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 339, "nhouse": 9, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 82, "repvalue": 984000, "xcoord": 85.312719650701538, "ycoord": 27.631038630013798 }, "geometry": { "type": "Point", "coordinates": [ 85.312719650701538, 27.631038630013798 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 340, "nhouse": 3, "residents": 7, "specialfac": 0, "expstr": "BrM+LC+3s+ResCom", "fptarea": 58, "repvalue": 348000, "xcoord": 85.313003490846697, "ycoord": 27.629639917902626 }, "geometry": { "type": "Point", "coordinates": [ 85.313003490846697, 27.629639917902626 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 341, "nhouse": 4, "residents": 14, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 80, "repvalue": 480000, "xcoord": 85.31725628547639, "ycoord": 27.626069321709256 }, "geometry": { "type": "Point", "coordinates": [ 85.31725628547639, 27.626069321709256 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 342, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 92, "repvalue": 368000, "xcoord": 85.312202140126161, "ycoord": 27.630564943887002 }, "geometry": { "type": "Point", "coordinates": [ 85.312202140126161, 27.630564943887002 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 343, "nhouse": 14, "residents": 63, "specialfac": 0, "expstr": "RCi+HC+8s+ResCom", "fptarea": 100, "repvalue": 1600000, "xcoord": 85.313114952882458, "ycoord": 27.630926592180003 }, "geometry": { "type": "Point", "coordinates": [ 85.313114952882458, 27.630926592180003 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 344, "nhouse": 5, "residents": 17, "specialfac": 0, "expstr": "BrM+LC+3s+ResCom", "fptarea": 104, "repvalue": 624000, "xcoord": 85.31344714486589, "ycoord": 27.626373593453764 }, "geometry": { "type": "Point", "coordinates": [ 85.31344714486589, 27.626373593453764 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 345, "nhouse": 7, "residents": 29, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 57, "repvalue": 684000, "xcoord": 85.314985335775475, "ycoord": 27.628729235338479 }, "geometry": { "type": "Point", "coordinates": [ 85.314985335775475, 27.628729235338479 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 346, "nhouse": 12, "residents": 55, "specialfac": 0, "expstr": "RCi+HC+12s+ResCom", "fptarea": 54, "repvalue": 1296000, "xcoord": 85.314368877626507, "ycoord": 27.6261511050254 }, "geometry": { "type": "Point", "coordinates": [ 85.314368877626507, 27.6261511050254 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 347, "nhouse": 4, "residents": 15, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 72, "repvalue": 432000, "xcoord": 85.314184008150093, "ycoord": 27.629654273934882 }, "geometry": { "type": "Point", "coordinates": [ 85.314184008150093, 27.629654273934882 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 348, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 101, "repvalue": 404000, "xcoord": 85.315756243914663, "ycoord": 27.629790225194991 }, "geometry": { "type": "Point", "coordinates": [ 85.315756243914663, 27.629790225194991 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 349, "nhouse": 5, "residents": 17, "specialfac": 0, "expstr": "BrCri+LC+3s+ResCom", "fptarea": 103, "repvalue": 618000, "xcoord": 85.313432817628723, "ycoord": 27.6273081967365 }, "geometry": { "type": "Point", "coordinates": [ 85.313432817628723, 27.6273081967365 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 350, "nhouse": 4, "residents": 16, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 79, "repvalue": 474000, "xcoord": 85.313143616466277, "ycoord": 27.629057386763314 }, "geometry": { "type": "Point", "coordinates": [ 85.313143616466277, 27.629057386763314 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 351, "nhouse": 9, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 100, "repvalue": 1000000, "xcoord": 85.315574984148256, "ycoord": 27.633059745027783 }, "geometry": { "type": "Point", "coordinates": [ 85.315574984148256, 27.633059745027783 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 352, "nhouse": 4, "residents": 19, "specialfac": 0, "expstr": "BrCri+MC+3s+ResCom", "fptarea": 85, "repvalue": 510000, "xcoord": 85.317427488308056, "ycoord": 27.632030610800157 }, "geometry": { "type": "Point", "coordinates": [ 85.317427488308056, 27.632030610800157 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 353, "nhouse": 2, "residents": 10, "specialfac": 0, "expstr": "BrM+LC+1s+ResCom", "fptarea": 106, "repvalue": 212000, "xcoord": 85.315050293067756, "ycoord": 27.633053370349053 }, "geometry": { "type": "Point", "coordinates": [ 85.315050293067756, 27.633053370349053 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 354, "nhouse": 5, "residents": 17, "specialfac": 0, "expstr": "BrM+LC+3s+ResCom", "fptarea": 95, "repvalue": 570000, "xcoord": 85.310338848970943, "ycoord": 27.632294958234255 }, "geometry": { "type": "Point", "coordinates": [ 85.310338848970943, 27.632294958234255 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 355, "nhouse": 22, "residents": 104, "specialfac": 0, "expstr": "RCi+HC+16s+ResCom", "fptarea": 75, "repvalue": 2400000, "xcoord": 85.317380303345075, "ycoord": 27.626538215737089 }, "geometry": { "type": "Point", "coordinates": [ 85.317380303345075, 27.626538215737089 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 356, "nhouse": 7, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 72, "repvalue": 864000, "xcoord": 85.312570558702433, "ycoord": 27.632205286716346 }, "geometry": { "type": "Point", "coordinates": [ 85.312570558702433, 27.632205286716346 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 357, "nhouse": 12, "residents": 52, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 100, "repvalue": 1400000, "xcoord": 85.317785268322496, "ycoord": 27.634371896406346 }, "geometry": { "type": "Point", "coordinates": [ 85.317785268322496, 27.634371896406346 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 358, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrM+LC+1s+ResCom", "fptarea": 57, "repvalue": 114000, "xcoord": 85.310910176947843, "ycoord": 27.629263895636548 }, "geometry": { "type": "Point", "coordinates": [ 85.310910176947843, 27.629263895636548 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 359, "nhouse": 4, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 106, "repvalue": 424000, "xcoord": 85.316794869975752, "ycoord": 27.630503919189533 }, "geometry": { "type": "Point", "coordinates": [ 85.316794869975752, 27.630503919189533 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 360, "nhouse": 3, "residents": 18, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 66, "repvalue": 396000, "xcoord": 85.31432591773563, "ycoord": 27.628954915898365 }, "geometry": { "type": "Point", "coordinates": [ 85.31432591773563, 27.628954915898365 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 361, "nhouse": 5, "residents": 22, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 58, "repvalue": 580000, "xcoord": 85.311176099841944, "ycoord": 27.629033440183008 }, "geometry": { "type": "Point", "coordinates": [ 85.311176099841944, 27.629033440183008 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 362, "nhouse": 2, "residents": 9, "specialfac": 0, "expstr": "BrCri+LC+2s+ResCom", "fptarea": 63, "repvalue": 252000, "xcoord": 85.310906589377012, "ycoord": 27.629497546066219 }, "geometry": { "type": "Point", "coordinates": [ 85.310906589377012, 27.629497546066219 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 363, "nhouse": 5, "residents": 17, "specialfac": 0, "expstr": "BrM+LC+3s+ResCom", "fptarea": 106, "repvalue": 636000, "xcoord": 85.314466035348104, "ycoord": 27.628372383016103 }, "geometry": { "type": "Point", "coordinates": [ 85.314466035348104, 27.628372383016103 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 364, "nhouse": 5, "residents": 20, "specialfac": 0, "expstr": "BrM+LC+3s+ResCom", "fptarea": 88, "repvalue": 528000, "xcoord": 85.312980199385379, "ycoord": 27.631158647106766 }, "geometry": { "type": "Point", "coordinates": [ 85.312980199385379, 27.631158647106766 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 365, "nhouse": 7, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 56, "repvalue": 784000, "xcoord": 85.313716636489474, "ycoord": 27.625909481611593 }, "geometry": { "type": "Point", "coordinates": [ 85.313716636489474, 27.625909481611593 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 366, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "BrCri+MC+2s+ResCom", "fptarea": 57, "repvalue": 228000, "xcoord": 85.313574728082415, "ycoord": 27.626608839320642 }, "geometry": { "type": "Point", "coordinates": [ 85.313574728082415, 27.626608839320642 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 367, "nhouse": 5, "residents": 19, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 98, "repvalue": 588000, "xcoord": 85.313439981333545, "ycoord": 27.626840895111734 }, "geometry": { "type": "Point", "coordinates": [ 85.313439981333545, 27.626840895111734 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 368, "nhouse": 13, "residents": 47, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 107, "repvalue": 1498000, "xcoord": 85.31208531132566, "ycoord": 27.629628745158673 }, "geometry": { "type": "Point", "coordinates": [ 85.31208531132566, 27.629628745158673 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 369, "nhouse": 6, "residents": 21, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 69, "repvalue": 690000, "xcoord": 85.315543992444404, "ycoord": 27.626515924413479 }, "geometry": { "type": "Point", "coordinates": [ 85.315543992444404, 27.626515924413479 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 370, "nhouse": 5, "residents": 20, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 101, "repvalue": 606000, "xcoord": 85.313253288568106, "ycoord": 27.63046088641736 }, "geometry": { "type": "Point", "coordinates": [ 85.313253288568106, 27.63046088641736 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 371, "nhouse": 7, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+4s+ResCom", "fptarea": 105, "repvalue": 840000, "xcoord": 85.315458125012526, "ycoord": 27.632123548066705 }, "geometry": { "type": "Point", "coordinates": [ 85.315458125012526, 27.632123548066705 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 372, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 80, "repvalue": 160000, "xcoord": 85.317199102533465, "ycoord": 27.629807741547623 }, "geometry": { "type": "Point", "coordinates": [ 85.317199102533465, 27.629807741547623 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 373, "nhouse": 5, "residents": 21, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 54, "repvalue": 540000, "xcoord": 85.317303465354627, "ycoord": 27.631561716885376 }, "geometry": { "type": "Point", "coordinates": [ 85.317303465354627, 27.631561716885376 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 374, "nhouse": 5, "residents": 15, "specialfac": 0, "expstr": "BrCri+MC+4s+ResCom", "fptarea": 67, "repvalue": 536000, "xcoord": 85.313540702001447, "ycoord": 27.62882852197114 }, "geometry": { "type": "Point", "coordinates": [ 85.313540702001447, 27.62882852197114 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 375, "nhouse": 1, "residents": 5, "specialfac": 0, "expstr": "BrM+LC+1s+ResCom", "fptarea": 80, "repvalue": 160000, "xcoord": 85.316227271390815, "ycoord": 27.633301361529977 }, "geometry": { "type": "Point", "coordinates": [ 85.316227271390815, 27.633301361529977 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 376, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 97, "repvalue": 388000, "xcoord": 85.31356040178575, "ycoord": 27.627543442633229 }, "geometry": { "type": "Point", "coordinates": [ 85.31356040178575, 27.627543442633229 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 377, "nhouse": 11, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 80, "repvalue": 1120000, "xcoord": 85.314547084066348, "ycoord": 27.631645089082433 }, "geometry": { "type": "Point", "coordinates": [ 85.314547084066348, 27.631645089082433 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 378, "nhouse": 10, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 105, "repvalue": 1050000, "xcoord": 85.315263772702849, "ycoord": 27.627680993120375 }, "geometry": { "type": "Point", "coordinates": [ 85.315263772702849, 27.627680993120375 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 379, "nhouse": 23, "residents": 99, "specialfac": 0, "expstr": "RCi+HC+17s+ResCom", "fptarea": 72, "repvalue": 2448000, "xcoord": 85.312191384920439, "ycoord": 27.631265895487484 }, "geometry": { "type": "Point", "coordinates": [ 85.312191384920439, 27.631265895487484 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 380, "nhouse": 8, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 66, "repvalue": 924000, "xcoord": 85.313506672029149, "ycoord": 27.631048203872407 }, "geometry": { "type": "Point", "coordinates": [ 85.313506672029149, 27.631048203872407 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 381, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrM+LC+1s+Res", "fptarea": 76, "repvalue": 152000, "xcoord": 85.314444555391546, "ycoord": 27.629774288223363 }, "geometry": { "type": "Point", "coordinates": [ 85.314444555391546, 27.629774288223363 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 382, "nhouse": 6, "residents": 27, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 91, "repvalue": 728000, "xcoord": 85.31077900900253, "ycoord": 27.629262297942628 }, "geometry": { "type": "Point", "coordinates": [ 85.31077900900253, 27.629262297942628 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 383, "nhouse": 21, "residents": 92, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 64, "repvalue": 2304000, "xcoord": 85.317274869397778, "ycoord": 27.633430925635551 }, "geometry": { "type": "Point", "coordinates": [ 85.317274869397778, 27.633430925635551 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 384, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "BrM+LC+3s+Res", "fptarea": 62, "repvalue": 372000, "xcoord": 85.318003979378688, "ycoord": 27.62864903315743 }, "geometry": { "type": "Point", "coordinates": [ 85.318003979378688, 27.62864903315743 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 385, "nhouse": 5, "residents": 24, "specialfac": 0, "expstr": "BrCfl+LC+3s+ResCom", "fptarea": 97, "repvalue": 582000, "xcoord": 85.317709485713578, "ycoord": 27.630748712291105 }, "geometry": { "type": "Point", "coordinates": [ 85.317709485713578, 27.630748712291105 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 386, "nhouse": 5, "residents": 17, "specialfac": 0, "expstr": "BrCri+LC+4s+ResCom", "fptarea": 71, "repvalue": 568000, "xcoord": 85.315120081885425, "ycoord": 27.628497178063537 }, "geometry": { "type": "Point", "coordinates": [ 85.315120081885425, 27.628497178063537 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 387, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "BrCri+LC+2s+ResCom", "fptarea": 79, "repvalue": 316000, "xcoord": 85.313763639883575, "ycoord": 27.631401870235436 }, "geometry": { "type": "Point", "coordinates": [ 85.313763639883575, 27.631401870235436 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 388, "nhouse": 4, "residents": 24, "specialfac": 0, "expstr": "BrM+LC+3s+ResCom", "fptarea": 79, "repvalue": 474000, "xcoord": 85.317892460730079, "ycoord": 27.627362359963374 }, "geometry": { "type": "Point", "coordinates": [ 85.317892460730079, 27.627362359963374 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 389, "nhouse": 9, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 77, "repvalue": 924000, "xcoord": 85.313937785920899, "ycoord": 27.628599655960603 }, "geometry": { "type": "Point", "coordinates": [ 85.313937785920899, 27.628599655960603 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 390, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrM+MC+1s+ResCom", "fptarea": 68, "repvalue": 136000, "xcoord": 85.317544364251461, "ycoord": 27.632966806854515 }, "geometry": { "type": "Point", "coordinates": [ 85.317544364251461, 27.632966806854515 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 391, "nhouse": 2, "residents": 12, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 60, "repvalue": 240000, "xcoord": 85.318037915175495, "ycoord": 27.626429345344246 }, "geometry": { "type": "Point", "coordinates": [ 85.318037915175495, 27.626429345344246 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 392, "nhouse": 4, "residents": 17, "specialfac": 0, "expstr": "BrM+LC+3s+Res", "fptarea": 90, "repvalue": 540000, "xcoord": 85.31444634544718, "ycoord": 27.629657462800836 }, "geometry": { "type": "Point", "coordinates": [ 85.31444634544718, 27.629657462800836 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 393, "nhouse": 11, "residents": 49, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 101, "repvalue": 1212000, "xcoord": 85.317982544244259, "ycoord": 27.630050940864045 }, "geometry": { "type": "Point", "coordinates": [ 85.317982544244259, 27.630050940864045 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 394, "nhouse": 17, "residents": 69, "specialfac": 0, "expstr": "RCi+HC+13s+ResCom", "fptarea": 79, "repvalue": 2054000, "xcoord": 85.317555086129872, "ycoord": 27.632265853491301 }, "geometry": { "type": "Point", "coordinates": [ 85.317555086129872, 27.632265853491301 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 395, "nhouse": 3, "residents": 18, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 86, "repvalue": 344000, "xcoord": 85.318054763606369, "ycoord": 27.633907776699957 }, "geometry": { "type": "Point", "coordinates": [ 85.318054763606369, 27.633907776699957 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 396, "nhouse": 11, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 96, "repvalue": 1152000, "xcoord": 85.31140974272634, "ycoord": 27.630905838448001 }, "geometry": { "type": "Point", "coordinates": [ 85.31140974272634, 27.630905838448001 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 397, "nhouse": 11, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+11s+ResCom", "fptarea": 54, "repvalue": 1188000, "xcoord": 85.31561255308884, "ycoord": 27.630606410451179 }, "geometry": { "type": "Point", "coordinates": [ 85.31561255308884, 27.630606410451179 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 398, "nhouse": 7, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 64, "repvalue": 768000, "xcoord": 85.311707942290937, "ycoord": 27.628572527574303 }, "geometry": { "type": "Point", "coordinates": [ 85.311707942290937, 27.628572527574303 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 399, "nhouse": 5, "residents": 18, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 94, "repvalue": 564000, "xcoord": 85.315343056635797, "ycoord": 27.631070525522055 }, "geometry": { "type": "Point", "coordinates": [ 85.315343056635797, 27.631070525522055 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 400, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 95, "repvalue": 380000, "xcoord": 85.312450141191889, "ycoord": 27.631502738841125 }, "geometry": { "type": "Point", "coordinates": [ 85.312450141191889, 27.631502738841125 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 401, "nhouse": 12, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 99, "repvalue": 1386000, "xcoord": 85.313813781071858, "ycoord": 27.628130759536702 }, "geometry": { "type": "Point", "coordinates": [ 85.313813781071858, 27.628130759536702 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1780, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Com", "fptarea": 120, "repvalue": 1680000, "xcoord": 85.310518467330922, "ycoord": 27.629142276988684 }, "geometry": { "type": "Point", "coordinates": [ 85.310518467330922, 27.629142276988684 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1782, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 117, "repvalue": 2106000, "xcoord": 85.316757327561575, "ycoord": 27.632957255296802 }, "geometry": { "type": "Point", "coordinates": [ 85.316757327561575, 27.632957255296802 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1784, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Com", "fptarea": 127, "repvalue": 1524000, "xcoord": 85.31196310620038, "ycoord": 27.629043022161639 }, "geometry": { "type": "Point", "coordinates": [ 85.31196310620038, 27.629043022161639 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1787, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Com", "fptarea": 123, "repvalue": 1722000, "xcoord": 85.313900182838481, "ycoord": 27.631052989128317 }, "geometry": { "type": "Point", "coordinates": [ 85.313900182838481, 27.631052989128317 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1788, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 138, "repvalue": 1932000, "xcoord": 85.315337688970885, "ycoord": 27.631421001874045 }, "geometry": { "type": "Point", "coordinates": [ 85.315337688970885, 27.631421001874045 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1789, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Com", "fptarea": 99, "repvalue": 1782000, "xcoord": 85.315835540915828, "ycoord": 27.633179757072291 }, "geometry": { "type": "Point", "coordinates": [ 85.315835540915828, 27.633179757072291 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1791, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 116, "repvalue": 1392000, "xcoord": 85.316288071991494, "ycoord": 27.62932929436969 }, "geometry": { "type": "Point", "coordinates": [ 85.316288071991494, 27.62932929436969 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1796, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 111, "repvalue": 1998000, "xcoord": 85.310214856369072, "ycoord": 27.631826059328805 }, "geometry": { "type": "Point", "coordinates": [ 85.310214856369072, 27.631826059328805 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1798, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 135, "repvalue": 1620000, "xcoord": 85.315883835743733, "ycoord": 27.630025469222449 }, "geometry": { "type": "Point", "coordinates": [ 85.315883835743733, 27.630025469222449 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1805, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Com", "fptarea": 122, "repvalue": 1708000, "xcoord": 85.315481383224835, "ycoord": 27.630604817132742 }, "geometry": { "type": "Point", "coordinates": [ 85.315481383224835, 27.630604817132742 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1808, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Com", "fptarea": 111, "repvalue": 1110000, "xcoord": 85.317917466722449, "ycoord": 27.625726800385205 }, "geometry": { "type": "Point", "coordinates": [ 85.317917466722449, 27.625726800385205 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1810, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Com", "fptarea": 142, "repvalue": 1420000, "xcoord": 85.316467510600532, "ycoord": 27.626176596309307 }, "geometry": { "type": "Point", "coordinates": [ 85.316467510600532, 27.626176596309307 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1811, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Com", "fptarea": 96, "repvalue": 960000, "xcoord": 85.313256871302499, "ycoord": 27.630227235736964 }, "geometry": { "type": "Point", "coordinates": [ 85.313256871302499, 27.630227235736964 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1813, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Com", "fptarea": 103, "repvalue": 1854000, "xcoord": 85.31566442620111, "ycoord": 27.627218470721786 }, "geometry": { "type": "Point", "coordinates": [ 85.31566442620111, 27.627218470721786 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1815, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 133, "repvalue": 1862000, "xcoord": 85.315393150168319, "ycoord": 27.627799412002833 }, "geometry": { "type": "Point", "coordinates": [ 85.315393150168319, 27.627799412002833 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1817, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Com", "fptarea": 119, "repvalue": 1428000, "xcoord": 85.317628341937393, "ycoord": 27.627476003510047 }, "geometry": { "type": "Point", "coordinates": [ 85.317628341937393, 27.627476003510047 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1820, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+8s+Com", "fptarea": 144, "repvalue": 2304000, "xcoord": 85.313131076488006, "ycoord": 27.629875164198499 }, "geometry": { "type": "Point", "coordinates": [ 85.313131076488006, 27.629875164198499 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1821, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Com", "fptarea": 119, "repvalue": 1190000, "xcoord": 85.31288486408657, "ycoord": 27.628820544814314 }, "geometry": { "type": "Point", "coordinates": [ 85.31288486408657, 27.628820544814314 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1824, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Com", "fptarea": 124, "repvalue": 1736000, "xcoord": 85.311269605113338, "ycoord": 27.631488367171073 }, "geometry": { "type": "Point", "coordinates": [ 85.311269605113338, 27.631488367171073 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1830, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Com", "fptarea": 113, "repvalue": 1130000, "xcoord": 85.317245564513499, "ycoord": 27.626770275590793 }, "geometry": { "type": "Point", "coordinates": [ 85.317245564513499, 27.626770275590793 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1831, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Com", "fptarea": 133, "repvalue": 1330000, "xcoord": 85.318575073267127, "ycoord": 27.625617927192714 }, "geometry": { "type": "Point", "coordinates": [ 85.318575073267127, 27.625617927192714 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1837, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Com", "fptarea": 109, "repvalue": 1526000, "xcoord": 85.317671963303596, "ycoord": 27.633202049467116 }, "geometry": { "type": "Point", "coordinates": [ 85.317671963303596, 27.633202049467116 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1838, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Com", "fptarea": 118, "repvalue": 1180000, "xcoord": 85.312794904705669, "ycoord": 27.626131965742228 }, "geometry": { "type": "Point", "coordinates": [ 85.312794904705669, 27.626131965742228 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1839, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Com", "fptarea": 115, "repvalue": 1380000, "xcoord": 85.317278444042969, "ycoord": 27.633197274570826 }, "geometry": { "type": "Point", "coordinates": [ 85.317278444042969, 27.633197274570826 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1841, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Com", "fptarea": 133, "repvalue": 2660000, "xcoord": 85.314987125177623, "ycoord": 27.628612409865784 }, "geometry": { "type": "Point", "coordinates": [ 85.314987125177623, 27.628612409865784 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1847, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+8s+Com", "fptarea": 123, "repvalue": 1968000, "xcoord": 85.313007073986697, "ycoord": 27.629406267224692 }, "geometry": { "type": "Point", "coordinates": [ 85.313007073986697, 27.629406267224692 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1849, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 126, "repvalue": 1764000, "xcoord": 85.310211266931645, "ycoord": 27.632059709588184 }, "geometry": { "type": "Point", "coordinates": [ 85.310211266931645, 27.632059709588184 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1850, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 97, "repvalue": 1164000, "xcoord": 85.31246806375178, "ycoord": 27.630334486015936 }, "geometry": { "type": "Point", "coordinates": [ 85.31246806375178, 27.630334486015936 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1853, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Com", "fptarea": 144, "repvalue": 2304000, "xcoord": 85.317639060783264, "ycoord": 27.626775049561687 }, "geometry": { "type": "Point", "coordinates": [ 85.317639060783264, 27.626775049561687 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1860, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Com", "fptarea": 120, "repvalue": 2160000, "xcoord": 85.318156578998526, "ycoord": 27.62724871588744 }, "geometry": { "type": "Point", "coordinates": [ 85.318156578998526, 27.62724871588744 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1862, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Com", "fptarea": 139, "repvalue": 2224000, "xcoord": 85.313887647421495, "ycoord": 27.631870766647491 }, "geometry": { "type": "Point", "coordinates": [ 85.313887647421495, 27.631870766647491 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1863, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Com", "fptarea": 138, "repvalue": 2208000, "xcoord": 85.317927162981036, "ycoord": 27.633672534389838 }, "geometry": { "type": "Point", "coordinates": [ 85.317927162981036, 27.633672534389838 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1864, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 121, "repvalue": 2178000, "xcoord": 85.317511468490096, "ycoord": 27.626539807044999 }, "geometry": { "type": "Point", "coordinates": [ 85.317511468490096, 27.626539807044999 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1865, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+7s+Com", "fptarea": 110, "repvalue": 1540000, "xcoord": 85.31271248266134, "ycoord": 27.631505931182048 }, "geometry": { "type": "Point", "coordinates": [ 85.31271248266134, 27.631505931182048 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1869, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Com", "fptarea": 115, "repvalue": 1150000, "xcoord": 85.311977446974694, "ycoord": 27.628108419821757 }, "geometry": { "type": "Point", "coordinates": [ 85.311977446974694, 27.628108419821757 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1879, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Com", "fptarea": 112, "repvalue": 2016000, "xcoord": 85.314604361566566, "ycoord": 27.627906675342867 }, "geometry": { "type": "Point", "coordinates": [ 85.314604361566566, 27.627906675342867 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1882, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Com", "fptarea": 134, "repvalue": 1608000, "xcoord": 85.317729138416667, "ycoord": 27.629463630547985 }, "geometry": { "type": "Point", "coordinates": [ 85.317729138416667, 27.629463630547985 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1885, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Com", "fptarea": 111, "repvalue": 1554000, "xcoord": 85.311181480217627, "ycoord": 27.628682964463128 }, "geometry": { "type": "Point", "coordinates": [ 85.311181480217627, 27.628682964463128 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1888, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Com", "fptarea": 111, "repvalue": 1776000, "xcoord": 85.313398787675467, "ycoord": 27.629527879000673 }, "geometry": { "type": "Point", "coordinates": [ 85.313398787675467, 27.629527879000673 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1890, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+5s+Com", "fptarea": 106, "repvalue": 1060000, "xcoord": 85.315727623822866, "ycoord": 27.631659432932825 }, "geometry": { "type": "Point", "coordinates": [ 85.315727623822866, 27.631659432932825 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1904, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Com", "fptarea": 142, "repvalue": 1704000, "xcoord": 85.311037757611402, "ycoord": 27.629499143651973 }, "geometry": { "type": "Point", "coordinates": [ 85.311037757611402, 27.629499143651973 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1907, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Com", "fptarea": 134, "repvalue": 1876000, "xcoord": 85.3107377461304, "ycoord": 27.631949277200963 }, "geometry": { "type": "Point", "coordinates": [ 85.3107377461304, 27.631949277200963 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1909, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Com", "fptarea": 103, "repvalue": 1648000, "xcoord": 85.317502535557352, "ycoord": 27.627123935321922 }, "geometry": { "type": "Point", "coordinates": [ 85.317502535557352, 27.627123935321922 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1916, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Com", "fptarea": 96, "repvalue": 1920000, "xcoord": 85.316025735227711, "ycoord": 27.629326109021502 }, "geometry": { "type": "Point", "coordinates": [ 85.316025735227711, 27.629326109021502 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1923, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Com", "fptarea": 98, "repvalue": 1568000, "xcoord": 85.31484879950311, "ycoord": 27.629078117908289 }, "geometry": { "type": "Point", "coordinates": [ 85.31484879950311, 27.629078117908289 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1924, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 128, "repvalue": 1536000, "xcoord": 85.317418552848025, "ycoord": 27.632614738589464 }, "geometry": { "type": "Point", "coordinates": [ 85.317418552848025, 27.632614738589464 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1927, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Com", "fptarea": 135, "repvalue": 2160000, "xcoord": 85.315231568376191, "ycoord": 27.629783851893723 }, "geometry": { "type": "Point", "coordinates": [ 85.315231568376191, 27.629783851893723 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1930, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Com", "fptarea": 137, "repvalue": 2466000, "xcoord": 85.316904589250981, "ycoord": 27.631907417814016 }, "geometry": { "type": "Point", "coordinates": [ 85.316904589250981, 27.631907417814016 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1934, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Com", "fptarea": 126, "repvalue": 1764000, "xcoord": 85.317757721844089, "ycoord": 27.627594420291633 }, "geometry": { "type": "Point", "coordinates": [ 85.317757721844089, 27.627594420291633 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1938, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Com", "fptarea": 101, "repvalue": 1010000, "xcoord": 85.314926279462583, "ycoord": 27.632584474773353 }, "geometry": { "type": "Point", "coordinates": [ 85.314926279462583, 27.632584474773353 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1939, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Com", "fptarea": 112, "repvalue": 2016000, "xcoord": 85.316270190753386, "ycoord": 27.630497549665861 }, "geometry": { "type": "Point", "coordinates": [ 85.316270190753386, 27.630497549665861 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1946, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Com", "fptarea": 110, "repvalue": 1100000, "xcoord": 85.31224515706532, "ycoord": 27.62776113673786 }, "geometry": { "type": "Point", "coordinates": [ 85.31224515706532, 27.62776113673786 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1947, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Com", "fptarea": 136, "repvalue": 2720000, "xcoord": 85.313538911047289, "ycoord": 27.628945347353039 }, "geometry": { "type": "Point", "coordinates": [ 85.313538911047289, 27.628945347353039 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1949, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Com", "fptarea": 122, "repvalue": 1952000, "xcoord": 85.31314182507316, "ycoord": 27.629174212117427 }, "geometry": { "type": "Point", "coordinates": [ 85.31314182507316, 27.629174212117427 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1951, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Com", "fptarea": 143, "repvalue": 1716000, "xcoord": 85.309158305680512, "ycoord": 27.632280568216796 }, "geometry": { "type": "Point", "coordinates": [ 85.309158305680512, 27.632280568216796 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1965, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 96, "repvalue": 1728000, "xcoord": 85.315468859798187, "ycoord": 27.631422595371539 }, "geometry": { "type": "Point", "coordinates": [ 85.315468859798187, 27.631422595371539 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1966, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+5s+Com", "fptarea": 140, "repvalue": 1400000, "xcoord": 85.311912908052292, "ycoord": 27.632314129305072 }, "geometry": { "type": "Point", "coordinates": [ 85.311912908052292, 27.632314129305072 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1967, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 117, "repvalue": 1404000, "xcoord": 85.314624048159558, "ycoord": 27.626621595129084 }, "geometry": { "type": "Point", "coordinates": [ 85.314624048159558, 27.626621595129084 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1969, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Com", "fptarea": 105, "repvalue": 1890000, "xcoord": 85.310874299296287, "ycoord": 27.631600399559591 }, "geometry": { "type": "Point", "coordinates": [ 85.310874299296287, 27.631600399559591 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1980, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Com", "fptarea": 108, "repvalue": 2160000, "xcoord": 85.315849851312649, "ycoord": 27.632245153422655 }, "geometry": { "type": "Point", "coordinates": [ 85.315849851312649, 27.632245153422655 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1985, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Com", "fptarea": 142, "repvalue": 1704000, "xcoord": 85.315591085704227, "ycoord": 27.632008316035591 }, "geometry": { "type": "Point", "coordinates": [ 85.315591085704227, 27.632008316035591 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1986, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Com", "fptarea": 136, "repvalue": 2720000, "xcoord": 85.311044932153308, "ycoord": 27.629031842752763 }, "geometry": { "type": "Point", "coordinates": [ 85.311044932153308, 27.629031842752763 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1987, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Com", "fptarea": 124, "repvalue": 1984000, "xcoord": 85.316018581748509, "ycoord": 27.629793411101925 }, "geometry": { "type": "Point", "coordinates": [ 85.316018581748509, 27.629793411101925 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1988, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Com", "fptarea": 123, "repvalue": 2214000, "xcoord": 85.316002485790591, "ycoord": 27.630844840661478 }, "geometry": { "type": "Point", "coordinates": [ 85.316002485790591, 27.630844840661478 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 2002, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Com", "fptarea": 106, "repvalue": 1696000, "xcoord": 85.311837316735691, "ycoord": 27.628690949636837 }, "geometry": { "type": "Point", "coordinates": [ 85.311837316735691, 27.628690949636837 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 2003, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Com", "fptarea": 121, "repvalue": 1210000, "xcoord": 85.311266017967156, "ycoord": 27.631722017569206 }, "geometry": { "type": "Point", "coordinates": [ 85.311266017967156, 27.631722017569206 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 2009, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Com", "fptarea": 148, "repvalue": 2368000, "xcoord": 85.31484343071773, "ycoord": 27.629428594271637 }, "geometry": { "type": "Point", "coordinates": [ 85.31484343071773, 27.629428594271637 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 2012, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Com", "fptarea": 138, "repvalue": 1380000, "xcoord": 85.315522527912037, "ycoord": 27.627917830775022 }, "geometry": { "type": "Point", "coordinates": [ 85.315522527912037, 27.627917830775022 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 2014, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Com", "fptarea": 137, "repvalue": 2466000, "xcoord": 85.318427839215033, "ycoord": 27.626667768444779 }, "geometry": { "type": "Point", "coordinates": [ 85.318427839215033, 27.626667768444779 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 2019, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Com", "fptarea": 99, "repvalue": 1386000, "xcoord": 85.311159958131995, "ycoord": 27.630084867230547 }, "geometry": { "type": "Point", "coordinates": [ 85.311159958131995, 27.630084867230547 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 2026, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Com", "fptarea": 97, "repvalue": 1552000, "xcoord": 85.311526566488055, "ycoord": 27.631842037384668 }, "geometry": { "type": "Point", "coordinates": [ 85.311526566488055, 27.631842037384668 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 2027, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Com", "fptarea": 139, "repvalue": 2780000, "xcoord": 85.314809426159073, "ycoord": 27.631648277472458 }, "geometry": { "type": "Point", "coordinates": [ 85.314809426159073, 27.631648277472458 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 2029, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Com", "fptarea": 137, "repvalue": 2192000, "xcoord": 85.317763080930277, "ycoord": 27.627243943309434 }, "geometry": { "type": "Point", "coordinates": [ 85.317763080930277, 27.627243943309434 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 2030, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Com", "fptarea": 135, "repvalue": 2430000, "xcoord": 85.313294487409834, "ycoord": 27.627773903091565 }, "geometry": { "type": "Point", "coordinates": [ 85.313294487409834, 27.627773903091565 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 2036, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Com", "fptarea": 134, "repvalue": 1608000, "xcoord": 85.312978407659017, "ycoord": 27.631275472415638 }, "geometry": { "type": "Point", "coordinates": [ 85.312978407659017, 27.631275472415638 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 2041, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Com", "fptarea": 121, "repvalue": 1452000, "xcoord": 85.312230818776001, "ycoord": 27.628695739253743 }, "geometry": { "type": "Point", "coordinates": [ 85.312230818776001, 27.628695739253743 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 2042, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Com", "fptarea": 113, "repvalue": 1356000, "xcoord": 85.313896601344666, "ycoord": 27.631286639858459 }, "geometry": { "type": "Point", "coordinates": [ 85.313896601344666, 27.631286639858459 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 2043, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 99, "repvalue": 1782000, "xcoord": 85.314834482526663, "ycoord": 27.630012721502389 }, "geometry": { "type": "Point", "coordinates": [ 85.314834482526663, 27.630012721502389 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 2044, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Com", "fptarea": 105, "repvalue": 1890000, "xcoord": 85.316949276163754, "ycoord": 27.628986778823791 }, "geometry": { "type": "Point", "coordinates": [ 85.316949276163754, 27.628986778823791 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 2045, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+8s+Com", "fptarea": 116, "repvalue": 1856000, "xcoord": 85.31804327310445, "ycoord": 27.626078868252641 }, "geometry": { "type": "Point", "coordinates": [ 85.31804327310445, 27.626078868252641 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 2049, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 115, "repvalue": 1610000, "xcoord": 85.316685152501506, "ycoord": 27.629100420331042 }, "geometry": { "type": "Point", "coordinates": [ 85.316685152501506, 27.629100420331042 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 2052, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 97, "repvalue": 1164000, "xcoord": 85.312597441021339, "ycoord": 27.63045290746927 }, "geometry": { "type": "Point", "coordinates": [ 85.312597441021339, 27.63045290746927 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 2056, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Com", "fptarea": 146, "repvalue": 1460000, "xcoord": 85.312491361467053, "ycoord": 27.628815757032882 }, "geometry": { "type": "Point", "coordinates": [ 85.312491361467053, 27.628815757032882 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 2065, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Com", "fptarea": 132, "repvalue": 1584000, "xcoord": 85.314040305980043, "ycoord": 27.630470457064643 }, "geometry": { "type": "Point", "coordinates": [ 85.314040305980043, 27.630470457064643 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 2066, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 129, "repvalue": 2322000, "xcoord": 85.317654093822412, "ycoord": 27.634370304943577 }, "geometry": { "type": "Point", "coordinates": [ 85.317654093822412, 27.634370304943577 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 2067, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+9s+Com", "fptarea": 127, "repvalue": 2286000, "xcoord": 85.315452757474333, "ycoord": 27.632474024386273 }, "geometry": { "type": "Point", "coordinates": [ 85.315452757474333, 27.632474024386273 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 2071, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Com", "fptarea": 137, "repvalue": 2740000, "xcoord": 85.314151780490974, "ycoord": 27.631757130939203 }, "geometry": { "type": "Point", "coordinates": [ 85.314151780490974, 27.631757130939203 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 2075, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+7s+Com", "fptarea": 103, "repvalue": 1442000, "xcoord": 85.314076114686785, "ycoord": 27.62813394894151 }, "geometry": { "type": "Point", "coordinates": [ 85.314076114686785, 27.62813394894151 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 2083, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Com", "fptarea": 126, "repvalue": 1260000, "xcoord": 85.313627096007522, "ycoord": 27.63175075115263 }, "geometry": { "type": "Point", "coordinates": [ 85.313627096007522, 27.63175075115263 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 2084, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Com", "fptarea": 116, "repvalue": 1624000, "xcoord": 85.317980757913176, "ycoord": 27.630167766492779 }, "geometry": { "type": "Point", "coordinates": [ 85.317980757913176, 27.630167766492779 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 2085, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 109, "repvalue": 1526000, "xcoord": 85.313558610950167, "ycoord": 27.62766026803796 }, "geometry": { "type": "Point", "coordinates": [ 85.313558610950167, 27.62766026803796 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 2090, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 144, "repvalue": 2016000, "xcoord": 85.312175251383636, "ycoord": 27.632317322748079 }, "geometry": { "type": "Point", "coordinates": [ 85.312175251383636, 27.632317322748079 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 2099, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Com", "fptarea": 134, "repvalue": 1608000, "xcoord": 85.318287745042781, "ycoord": 27.62725030649889 }, "geometry": { "type": "Point", "coordinates": [ 85.318287745042781, 27.62725030649889 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 2101, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+5s+Com", "fptarea": 96, "repvalue": 960000, "xcoord": 85.313928833237114, "ycoord": 27.62918378298831 }, "geometry": { "type": "Point", "coordinates": [ 85.313928833237114, 27.62918378298831 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 2105, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Com", "fptarea": 103, "repvalue": 1648000, "xcoord": 85.313941366918982, "ycoord": 27.628366005134989 }, "geometry": { "type": "Point", "coordinates": [ 85.313941366918982, 27.628366005134989 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 2108, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 95, "repvalue": 1330000, "xcoord": 85.314462455463072, "ycoord": 27.628606033904738 }, "geometry": { "type": "Point", "coordinates": [ 85.314462455463072, 27.628606033904738 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 2109, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Com", "fptarea": 137, "repvalue": 1370000, "xcoord": 85.314430234558628, "ycoord": 27.630708891528833 }, "geometry": { "type": "Point", "coordinates": [ 85.314430234558628, 27.630708891528833 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 2110, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 114, "repvalue": 2052000, "xcoord": 85.316629730768355, "ycoord": 27.632722011933954 }, "geometry": { "type": "Point", "coordinates": [ 85.316629730768355, 27.632722011933954 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 2112, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 121, "repvalue": 1694000, "xcoord": 85.313021406115368, "ycoord": 27.62847166442997 }, "geometry": { "type": "Point", "coordinates": [ 85.313021406115368, 27.62847166442997 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 2115, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Com", "fptarea": 139, "repvalue": 2224000, "xcoord": 85.312444764213566, "ycoord": 27.63185321464821 }, "geometry": { "type": "Point", "coordinates": [ 85.312444764213566, 27.63185321464821 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 2117, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Com", "fptarea": 141, "repvalue": 1410000, "xcoord": 85.31789067450714, "ycoord": 27.627479185631966 }, "geometry": { "type": "Point", "coordinates": [ 85.31789067450714, 27.627479185631966 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 2122, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 144, "repvalue": 2592000, "xcoord": 85.317432849455017, "ycoord": 27.631680134101678 }, "geometry": { "type": "Point", "coordinates": [ 85.317432849455017, 27.631680134101678 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 4063, "nhouse": 0, "residents": 0, "specialfac": 1, "expstr": "RCi+HC+6s+Edu", "fptarea": 100, "repvalue": 1800000, "xcoord": 85.313535329106628, "ycoord": 27.629178998110625 }, "geometry": { "type": "Point", "coordinates": [ 85.313535329106628, 27.629178998110625 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 4069, "nhouse": 0, "residents": 0, "specialfac": 2, "expstr": "RCi+HC+10s+Hea", "fptarea": 147, "repvalue": 5880000, "xcoord": 85.317515041587924, "ycoord": 27.626306155719707 }, "geometry": { "type": "Point", "coordinates": [ 85.317515041587924, 27.626306155719707 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 402, "nhouse": 1, "residents": 7, "specialfac": 0, "expstr": "RCi+HC+1s+ResCom", "fptarea": 74, "repvalue": 148000, "xcoord": 85.306543423173153, "ycoord": 27.637078480943341 }, "geometry": { "type": "Point", "coordinates": [ 85.306543423173153, 27.637078480943341 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 403, "nhouse": 35, "residents": 141, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 104, "repvalue": 3744000, "xcoord": 85.306967154465511, "ycoord": 27.635207801107537 }, "geometry": { "type": "Point", "coordinates": [ 85.306967154465511, 27.635207801107537 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 404, "nhouse": 6, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 56, "repvalue": 672000, "xcoord": 85.30759457468811, "ycoord": 27.63720855648905 }, "geometry": { "type": "Point", "coordinates": [ 85.30759457468811, 27.63720855648905 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 405, "nhouse": 10, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 78, "repvalue": 1092000, "xcoord": 85.307760465006098, "ycoord": 27.634983003445939 }, "geometry": { "type": "Point", "coordinates": [ 85.307760465006098, 27.634983003445939 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 406, "nhouse": 11, "residents": 48, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 99, "repvalue": 1188000, "xcoord": 85.306090783630466, "ycoord": 27.64082465853522 }, "geometry": { "type": "Point", "coordinates": [ 85.306090783630466, 27.64082465853522 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 407, "nhouse": 8, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+4s+ResCom", "fptarea": 106, "repvalue": 848000, "xcoord": 85.307041027204079, "ycoord": 27.638960411872894 }, "geometry": { "type": "Point", "coordinates": [ 85.307041027204079, 27.638960411872894 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 408, "nhouse": 18, "residents": 65, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 58, "repvalue": 1972000, "xcoord": 85.305609445050393, "ycoord": 27.637887756228793 }, "geometry": { "type": "Point", "coordinates": [ 85.305609445050393, 27.637887756228793 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 409, "nhouse": 17, "residents": 68, "specialfac": 0, "expstr": "RCi+HC+15s+ResCom", "fptarea": 62, "repvalue": 1860000, "xcoord": 85.30543627762134, "ycoord": 27.640582178512531 }, "geometry": { "type": "Point", "coordinates": [ 85.30543627762134, 27.640582178512531 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 410, "nhouse": 10, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 90, "repvalue": 1080000, "xcoord": 85.307315096831019, "ycoord": 27.638260312904521 }, "geometry": { "type": "Point", "coordinates": [ 85.307315096831019, 27.638260312904521 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 411, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 80, "repvalue": 320000, "xcoord": 85.306902186131893, "ycoord": 27.639427679888364 }, "geometry": { "type": "Point", "coordinates": [ 85.306902186131893, 27.639427679888364 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 412, "nhouse": 21, "residents": 89, "specialfac": 0, "expstr": "RCi+HC+13s+ResCom", "fptarea": 90, "repvalue": 2340000, "xcoord": 85.306566888221028, "ycoord": 27.635554635907692 }, "geometry": { "type": "Point", "coordinates": [ 85.306566888221028, 27.635554635907692 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 413, "nhouse": 11, "residents": 45, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 73, "repvalue": 1168000, "xcoord": 85.307897492360553, "ycoord": 27.63463295282995 }, "geometry": { "type": "Point", "coordinates": [ 85.307897492360553, 27.63463295282995 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 414, "nhouse": 5, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 62, "repvalue": 496000, "xcoord": 85.305521172145717, "ycoord": 27.635072896888442 }, "geometry": { "type": "Point", "coordinates": [ 85.305521172145717, 27.635072896888442 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 415, "nhouse": 7, "residents": 30, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 61, "repvalue": 732000, "xcoord": 85.305513948017776, "ycoord": 27.635541772100098 }, "geometry": { "type": "Point", "coordinates": [ 85.305513948017776, 27.635541772100098 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 416, "nhouse": 4, "residents": 17, "specialfac": 0, "expstr": "RCi+HC+4s+ResCom", "fptarea": 64, "repvalue": 512000, "xcoord": 85.305823923697048, "ycoord": 27.641055879318984 }, "geometry": { "type": "Point", "coordinates": [ 85.305823923697048, 27.641055879318984 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 417, "nhouse": 14, "residents": 46, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 103, "repvalue": 1442000, "xcoord": 85.306923843812328, "ycoord": 27.638021053929148 }, "geometry": { "type": "Point", "coordinates": [ 85.306923843812328, 27.638021053929148 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 418, "nhouse": 20, "residents": 71, "specialfac": 0, "expstr": "RCi+HC+15s+ResCom", "fptarea": 72, "repvalue": 2160000, "xcoord": 85.307892081978025, "ycoord": 27.634984609697081 }, "geometry": { "type": "Point", "coordinates": [ 85.307892081978025, 27.634984609697081 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 419, "nhouse": 5, "residents": 21, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 95, "repvalue": 570000, "xcoord": 85.305048634833028, "ycoord": 27.640108476740384 }, "geometry": { "type": "Point", "coordinates": [ 85.305048634833028, 27.640108476740384 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 420, "nhouse": 8, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 63, "repvalue": 882000, "xcoord": 85.306316289329288, "ycoord": 27.634730888727606 }, "geometry": { "type": "Point", "coordinates": [ 85.306316289329288, 27.634730888727606 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 421, "nhouse": 12, "residents": 54, "specialfac": 0, "expstr": "RCi+HC+9s+ResCom", "fptarea": 70, "repvalue": 1260000, "xcoord": 85.305923245230829, "ycoord": 27.634608846315995 }, "geometry": { "type": "Point", "coordinates": [ 85.305923245230829, 27.634608846315995 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 422, "nhouse": 21, "residents": 80, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 67, "repvalue": 2278000, "xcoord": 85.306088977781187, "ycoord": 27.640941877278667 }, "geometry": { "type": "Point", "coordinates": [ 85.306088977781187, 27.640941877278667 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 423, "nhouse": 15, "residents": 53, "specialfac": 0, "expstr": "RCi+HC+9s+Res", "fptarea": 88, "repvalue": 1584000, "xcoord": 85.305503111498666, "ycoord": 27.636245084854853 }, "geometry": { "type": "Point", "coordinates": [ 85.305503111498666, 27.636245084854853 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 424, "nhouse": 2, "residents": 13, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 70, "repvalue": 280000, "xcoord": 85.305778988771266, "ycoord": 27.635427769985167 }, "geometry": { "type": "Point", "coordinates": [ 85.305778988771266, 27.635427769985167 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 425, "nhouse": 13, "residents": 63, "specialfac": 0, "expstr": "RCi+HC+9s+ResCom", "fptarea": 76, "repvalue": 1368000, "xcoord": 85.307756857749723, "ycoord": 27.63521744133099 }, "geometry": { "type": "Point", "coordinates": [ 85.307756857749723, 27.63521744133099 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 426, "nhouse": 10, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 78, "repvalue": 1092000, "xcoord": 85.306559668402485, "ycoord": 27.636023511340909 }, "geometry": { "type": "Point", "coordinates": [ 85.306559668402485, 27.636023511340909 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 427, "nhouse": 17, "residents": 75, "specialfac": 0, "expstr": "RCi+HC+13s+ResCom", "fptarea": 70, "repvalue": 1820000, "xcoord": 85.307446717693864, "ycoord": 27.638261919753059 }, "geometry": { "type": "Point", "coordinates": [ 85.307446717693864, 27.638261919753059 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 428, "nhouse": 31, "residents": 131, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 97, "repvalue": 3298000, "xcoord": 85.308016485525471, "ycoord": 27.635455091648826 }, "geometry": { "type": "Point", "coordinates": [ 85.308016485525471, 27.635455091648826 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 429, "nhouse": 9, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 68, "repvalue": 952000, "xcoord": 85.307841580347727, "ycoord": 27.638266739549692 }, "geometry": { "type": "Point", "coordinates": [ 85.307841580347727, 27.638266739549692 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 430, "nhouse": 8, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 69, "repvalue": 828000, "xcoord": 85.305843790642697, "ycoord": 27.639766473224391 }, "geometry": { "type": "Point", "coordinates": [ 85.305843790642697, 27.639766473224391 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 431, "nhouse": 6, "residents": 29, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 63, "repvalue": 756000, "xcoord": 85.30784879538912, "ycoord": 27.637797863956809 }, "geometry": { "type": "Point", "coordinates": [ 85.30784879538912, 27.637797863956809 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 432, "nhouse": 2, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 65, "repvalue": 260000, "xcoord": 85.305887132125918, "ycoord": 27.63695322268525 }, "geometry": { "type": "Point", "coordinates": [ 85.305887132125918, 27.63695322268525 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 433, "nhouse": 9, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 99, "repvalue": 990000, "xcoord": 85.307491819353316, "ycoord": 27.635331447345884 }, "geometry": { "type": "Point", "coordinates": [ 85.307491819353316, 27.635331447345884 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 434, "nhouse": 20, "residents": 74, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 63, "repvalue": 2142000, "xcoord": 85.305910606140216, "ycoord": 27.635429378140362 }, "geometry": { "type": "Point", "coordinates": [ 85.305910606140216, 27.635429378140362 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 435, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 81, "repvalue": 324000, "xcoord": 85.306640746848359, "ycoord": 27.639307246105993 }, "geometry": { "type": "Point", "coordinates": [ 85.306640746848359, 27.639307246105993 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 436, "nhouse": 29, "residents": 123, "specialfac": 0, "expstr": "RCi+HC+19s+ResCom", "fptarea": 83, "repvalue": 3154000, "xcoord": 85.306976176728242, "ycoord": 27.63462170661813 }, "geometry": { "type": "Point", "coordinates": [ 85.306976176728242, 27.63462170661813 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 437, "nhouse": 27, "residents": 112, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 96, "repvalue": 2880000, "xcoord": 85.307578338567595, "ycoord": 27.638263526476766 }, "geometry": { "type": "Point", "coordinates": [ 85.307578338567595, 27.638263526476766 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 438, "nhouse": 13, "residents": 49, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 102, "repvalue": 1428000, "xcoord": 85.307100575986539, "ycoord": 27.635092189221815 }, "geometry": { "type": "Point", "coordinates": [ 85.307100575986539, 27.635092189221815 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 439, "nhouse": 6, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 65, "repvalue": 780000, "xcoord": 85.305333559329995, "ycoord": 27.63870507015087 }, "geometry": { "type": "Point", "coordinates": [ 85.305333559329995, 27.63870507015087 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 440, "nhouse": 9, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 98, "repvalue": 980000, "xcoord": 85.306031390429311, "ycoord": 27.636134299129349 }, "geometry": { "type": "Point", "coordinates": [ 85.306031390429311, 27.636134299129349 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 441, "nhouse": 2, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+1s+ResCom", "fptarea": 103, "repvalue": 206000, "xcoord": 85.30760900605452, "ycoord": 27.636270805246692 }, "geometry": { "type": "Point", "coordinates": [ 85.30760900605452, 27.636270805246692 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 442, "nhouse": 7, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+4s+ResCom", "fptarea": 96, "repvalue": 768000, "xcoord": 85.307854206555803, "ycoord": 27.637446207240195 }, "geometry": { "type": "Point", "coordinates": [ 85.307854206555803, 27.637446207240195 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 443, "nhouse": 5, "residents": 19, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 90, "repvalue": 540000, "xcoord": 85.306518151061525, "ycoord": 27.638719544432739 }, "geometry": { "type": "Point", "coordinates": [ 85.306518151061525, 27.638719544432739 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 444, "nhouse": 13, "residents": 58, "specialfac": 0, "expstr": "RCi+HC+10s+ResCom", "fptarea": 69, "repvalue": 1380000, "xcoord": 85.305827535967126, "ycoord": 27.640821441866056 }, "geometry": { "type": "Point", "coordinates": [ 85.305827535967126, 27.640821441866056 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 445, "nhouse": 8, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 80, "repvalue": 960000, "xcoord": 85.306824709374027, "ycoord": 27.63590950723729 }, "geometry": { "type": "Point", "coordinates": [ 85.306824709374027, 27.63590950723729 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 446, "nhouse": 1, "residents": 1, "specialfac": 0, "expstr": "RCi+HC+1s+ResCom", "fptarea": 77, "repvalue": 154000, "xcoord": 85.307334943941498, "ycoord": 27.636970905293932 }, "geometry": { "type": "Point", "coordinates": [ 85.307334943941498, 27.636970905293932 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 447, "nhouse": 5, "residents": 18, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 54, "repvalue": 648000, "xcoord": 85.307618025304521, "ycoord": 27.635684710652274 }, "geometry": { "type": "Point", "coordinates": [ 85.307618025304521, 27.635684710652274 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 448, "nhouse": 17, "residents": 67, "specialfac": 0, "expstr": "RCi+HC+15s+ResCom", "fptarea": 59, "repvalue": 1770000, "xcoord": 85.307369222209189, "ycoord": 27.634743746098014 }, "geometry": { "type": "Point", "coordinates": [ 85.307369222209189, 27.634743746098014 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 449, "nhouse": 19, "residents": 82, "specialfac": 0, "expstr": "RCi+HC+12s+ResCom", "fptarea": 81, "repvalue": 1944000, "xcoord": 85.307508054284028, "ycoord": 27.634276476959453 }, "geometry": { "type": "Point", "coordinates": [ 85.307508054284028, 27.634276476959453 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 450, "nhouse": 5, "residents": 16, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 103, "repvalue": 618000, "xcoord": 85.305786211734656, "ycoord": 27.634958894701374 }, "geometry": { "type": "Point", "coordinates": [ 85.305786211734656, 27.634958894701374 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 451, "nhouse": 6, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 66, "repvalue": 660000, "xcoord": 85.308122856645454, "ycoord": 27.637097762919169 }, "geometry": { "type": "Point", "coordinates": [ 85.308122856645454, 27.637097762919169 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 452, "nhouse": 7, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 81, "repvalue": 810000, "xcoord": 85.306685871979468, "ycoord": 27.636376775363921 }, "geometry": { "type": "Point", "coordinates": [ 85.306685871979468, 27.636376775363921 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 453, "nhouse": 31, "residents": 123, "specialfac": 0, "expstr": "RCi+HC+17s+ResCom", "fptarea": 98, "repvalue": 3332000, "xcoord": 85.306487460625135, "ycoord": 27.640712263833208 }, "geometry": { "type": "Point", "coordinates": [ 85.306487460625135, 27.640712263833208 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 454, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 89, "repvalue": 356000, "xcoord": 85.305869073937899, "ycoord": 27.638125410556256 }, "geometry": { "type": "Point", "coordinates": [ 85.305869073937899, 27.638125410556256 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 455, "nhouse": 19, "residents": 84, "specialfac": 0, "expstr": "RCi+HC+16s+ResCom", "fptarea": 66, "repvalue": 2112000, "xcoord": 85.306305458312437, "ycoord": 27.635434201857084 }, "geometry": { "type": "Point", "coordinates": [ 85.306305458312437, 27.635434201857084 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 456, "nhouse": 2, "residents": 5, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 54, "repvalue": 216000, "xcoord": 85.305470599585618, "ycoord": 27.638355022667486 }, "geometry": { "type": "Point", "coordinates": [ 85.305470599585618, 27.638355022667486 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 457, "nhouse": 13, "residents": 46, "specialfac": 0, "expstr": "RCi+HC+11s+ResCom", "fptarea": 66, "repvalue": 1452000, "xcoord": 85.306175646247638, "ycoord": 27.635315375234605 }, "geometry": { "type": "Point", "coordinates": [ 85.306175646247638, 27.635315375234605 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 458, "nhouse": 29, "residents": 112, "specialfac": 0, "expstr": "RCi+HC+19s+ResCom", "fptarea": 82, "repvalue": 3116000, "xcoord": 85.308236443099617, "ycoord": 27.638271558222861 }, "geometry": { "type": "Point", "coordinates": [ 85.308236443099617, 27.638271558222861 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 459, "nhouse": 8, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 62, "repvalue": 868000, "xcoord": 85.307095162951171, "ycoord": 27.635443845920538 }, "geometry": { "type": "Point", "coordinates": [ 85.307095162951171, 27.635443845920538 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 460, "nhouse": 11, "residents": 49, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 104, "repvalue": 1248000, "xcoord": 85.307237605561056, "ycoord": 27.634742139363549 }, "geometry": { "type": "Point", "coordinates": [ 85.307237605561056, 27.634742139363549 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 461, "nhouse": 36, "residents": 153, "specialfac": 0, "expstr": "RCi+HC+19s+ResCom", "fptarea": 100, "repvalue": 3800000, "xcoord": 85.308158922326669, "ycoord": 27.634753383883755 }, "geometry": { "type": "Point", "coordinates": [ 85.308158922326669, 27.634753383883755 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 462, "nhouse": 9, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 94, "repvalue": 940000, "xcoord": 85.307731605735228, "ycoord": 27.636858506292185 }, "geometry": { "type": "Point", "coordinates": [ 85.307731605735228, 27.636858506292185 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 463, "nhouse": 8, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 79, "repvalue": 948000, "xcoord": 85.305885326356176, "ycoord": 27.637070441481754 }, "geometry": { "type": "Point", "coordinates": [ 85.305885326356176, 27.637070441481754 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 464, "nhouse": 10, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 94, "repvalue": 1128000, "xcoord": 85.305969995500945, "ycoord": 27.64011973780628 }, "geometry": { "type": "Point", "coordinates": [ 85.305969995500945, 27.64011973780628 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 465, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 68, "repvalue": 408000, "xcoord": 85.307708155524494, "ycoord": 27.638382351960676 }, "geometry": { "type": "Point", "coordinates": [ 85.307708155524494, 27.638382351960676 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 466, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "RCi+HC+1s+ResCom", "fptarea": 73, "repvalue": 146000, "xcoord": 85.306932867382685, "ycoord": 27.637434959690619 }, "geometry": { "type": "Point", "coordinates": [ 85.306932867382685, 27.637434959690619 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 467, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 87, "repvalue": 348000, "xcoord": 85.307228584645017, "ycoord": 27.635328233922142 }, "geometry": { "type": "Point", "coordinates": [ 85.307228584645017, 27.635328233922142 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 468, "nhouse": 15, "residents": 66, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 82, "repvalue": 1640000, "xcoord": 85.306163008660789, "ycoord": 27.636135907082732 }, "geometry": { "type": "Point", "coordinates": [ 85.306163008660789, 27.636135907082732 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 469, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 67, "repvalue": 268000, "xcoord": 85.307592770718301, "ycoord": 27.637325775384934 }, "geometry": { "type": "Point", "coordinates": [ 85.307592770718301, 27.637325775384934 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 470, "nhouse": 20, "residents": 91, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 106, "repvalue": 2120000, "xcoord": 85.305394973631635, "ycoord": 27.634719631975937 }, "geometry": { "type": "Point", "coordinates": [ 85.305394973631635, 27.634719631975937 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 471, "nhouse": 7, "residents": 30, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 65, "repvalue": 780000, "xcoord": 85.306794028149369, "ycoord": 27.637902227761661 }, "geometry": { "type": "Point", "coordinates": [ 85.306794028149369, 27.637902227761661 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 472, "nhouse": 10, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+8s+ResCom", "fptarea": 72, "repvalue": 1152000, "xcoord": 85.306491071428212, "ycoord": 27.640477826288038 }, "geometry": { "type": "Point", "coordinates": [ 85.306491071428212, 27.640477826288038 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 473, "nhouse": 5, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 92, "repvalue": 552000, "xcoord": 85.307726194311513, "ycoord": 27.637210163016274 }, "geometry": { "type": "Point", "coordinates": [ 85.307726194311513, 27.637210163016274 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 474, "nhouse": 25, "residents": 100, "specialfac": 0, "expstr": "RCi+HC+14s+ResCom", "fptarea": 101, "repvalue": 2828000, "xcoord": 85.305820311383343, "ycoord": 27.641290316763545 }, "geometry": { "type": "Point", "coordinates": [ 85.305820311383343, 27.641290316763545 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 475, "nhouse": 12, "residents": 47, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 107, "repvalue": 1284000, "xcoord": 85.305863656268855, "ycoord": 27.638477066876789 }, "geometry": { "type": "Point", "coordinates": [ 85.305863656268855, 27.638477066876789 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 476, "nhouse": 31, "residents": 140, "specialfac": 0, "expstr": "RCi+HC+16s+ResCom", "fptarea": 101, "repvalue": 3232000, "xcoord": 85.305515754066121, "ycoord": 27.635424553300314 }, "geometry": { "type": "Point", "coordinates": [ 85.305515754066121, 27.635424553300314 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 477, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 90, "repvalue": 180000, "xcoord": 85.305777183003173, "ycoord": 27.635544988800884 }, "geometry": { "type": "Point", "coordinates": [ 85.305777183003173, 27.635544988800884 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 478, "nhouse": 11, "residents": 51, "specialfac": 0, "expstr": "RCi+HC+8s+ResCom", "fptarea": 75, "repvalue": 1200000, "xcoord": 85.305585964415556, "ycoord": 27.639411599995626 }, "geometry": { "type": "Point", "coordinates": [ 85.305585964415556, 27.639411599995626 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 479, "nhouse": 5, "residents": 16, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 63, "repvalue": 630000, "xcoord": 85.30622963020592, "ycoord": 27.640357391655961 }, "geometry": { "type": "Point", "coordinates": [ 85.30622963020592, 27.640357391655961 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 480, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 93, "repvalue": 372000, "xcoord": 85.306977981148108, "ycoord": 27.634504487713972 }, "geometry": { "type": "Point", "coordinates": [ 85.306977981148108, 27.634504487713972 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 481, "nhouse": 8, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+4s+ResCom", "fptarea": 106, "repvalue": 848000, "xcoord": 85.305894355095816, "ycoord": 27.636484347478309 }, "geometry": { "type": "Point", "coordinates": [ 85.305894355095816, 27.636484347478309 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 482, "nhouse": 5, "residents": 14, "specialfac": 0, "expstr": "RCi+HC+4s+ResCom", "fptarea": 68, "repvalue": 544000, "xcoord": 85.307374634207747, "ycoord": 27.634392089313877 }, "geometry": { "type": "Point", "coordinates": [ 85.307374634207747, 27.634392089313877 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 483, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 65, "repvalue": 390000, "xcoord": 85.307765875808983, "ycoord": 27.634631346602692 }, "geometry": { "type": "Point", "coordinates": [ 85.307765875808983, 27.634631346602692 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 484, "nhouse": 19, "residents": 69, "specialfac": 0, "expstr": "RCi+HC+11s+ResCom", "fptarea": 96, "repvalue": 2112000, "xcoord": 85.305640147714911, "ycoord": 27.635895036923596 }, "geometry": { "type": "Point", "coordinates": [ 85.305640147714911, 27.635895036923596 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 485, "nhouse": 10, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 89, "repvalue": 1068000, "xcoord": 85.306965349980288, "ycoord": 27.635325019999144 }, "geometry": { "type": "Point", "coordinates": [ 85.306965349980288, 27.635325019999144 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 486, "nhouse": 11, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 102, "repvalue": 1224000, "xcoord": 85.30710418462229, "ycoord": 27.634857751412206 }, "geometry": { "type": "Point", "coordinates": [ 85.30710418462229, 27.634857751412206 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 487, "nhouse": 5, "residents": 17, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 92, "repvalue": 552000, "xcoord": 85.305908800512213, "ycoord": 27.635546596964055 }, "geometry": { "type": "Point", "coordinates": [ 85.305908800512213, 27.635546596964055 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 488, "nhouse": 11, "residents": 49, "specialfac": 0, "expstr": "RCi+HC+8s+ResCom", "fptarea": 74, "repvalue": 1184000, "xcoord": 85.306532592529763, "ycoord": 27.637781793917554 }, "geometry": { "type": "Point", "coordinates": [ 85.306532592529763, 27.637781793917554 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 489, "nhouse": 8, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 69, "repvalue": 828000, "xcoord": 85.306013334405861, "ycoord": 27.637306487226411 }, "geometry": { "type": "Point", "coordinates": [ 85.306013334405861, 27.637306487226411 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 490, "nhouse": 5, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 90, "repvalue": 540000, "xcoord": 85.305982636663657, "ycoord": 27.639299206511563 }, "geometry": { "type": "Point", "coordinates": [ 85.305982636663657, 27.639299206511563 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 491, "nhouse": 7, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 77, "repvalue": 770000, "xcoord": 85.306242269559178, "ycoord": 27.639536860278945 }, "geometry": { "type": "Point", "coordinates": [ 85.306242269559178, 27.639536860278945 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 492, "nhouse": 19, "residents": 70, "specialfac": 0, "expstr": "RCi+HC+18s+ResCom", "fptarea": 58, "repvalue": 2088000, "xcoord": 85.307226780429104, "ycoord": 27.635445452827593 }, "geometry": { "type": "Point", "coordinates": [ 85.307226780429104, 27.635445452827593 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 493, "nhouse": 9, "residents": 29, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 63, "repvalue": 1008000, "xcoord": 85.305964577696216, "ycoord": 27.640471394044074 }, "geometry": { "type": "Point", "coordinates": [ 85.305964577696216, 27.640471394044074 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 494, "nhouse": 26, "residents": 111, "specialfac": 0, "expstr": "RCi+HC+16s+ResCom", "fptarea": 89, "repvalue": 2848000, "xcoord": 85.305176644212096, "ycoord": 27.640344523236895 }, "geometry": { "type": "Point", "coordinates": [ 85.305176644212096, 27.640344523236895 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 495, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 89, "repvalue": 356000, "xcoord": 85.306539813002288, "ycoord": 27.637312918609773 }, "geometry": { "type": "Point", "coordinates": [ 85.306539813002288, 27.637312918609773 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 496, "nhouse": 18, "residents": 83, "specialfac": 0, "expstr": "RCi+HC+12s+ResCom", "fptarea": 85, "repvalue": 2040000, "xcoord": 85.305916022958755, "ycoord": 27.635077721656756 }, "geometry": { "type": "Point", "coordinates": [ 85.305916022958755, 27.635077721656756 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 497, "nhouse": 19, "residents": 89, "specialfac": 0, "expstr": "RCi+HC+18s+ResCom", "fptarea": 59, "repvalue": 2124000, "xcoord": 85.306554253424139, "ycoord": 27.636375167893874 }, "geometry": { "type": "Point", "coordinates": [ 85.306554253424139, 27.636375167893874 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 498, "nhouse": 18, "residents": 84, "specialfac": 0, "expstr": "RCi+HC+13s+ResCom", "fptarea": 80, "repvalue": 2080000, "xcoord": 85.308133676807159, "ycoord": 27.636394449296347 }, "geometry": { "type": "Point", "coordinates": [ 85.308133676807159, 27.636394449296347 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 499, "nhouse": 10, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 78, "repvalue": 1092000, "xcoord": 85.307053659755567, "ycoord": 27.638139879985648 }, "geometry": { "type": "Point", "coordinates": [ 85.307053659755567, 27.638139879985648 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 500, "nhouse": 9, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+8s+ResCom", "fptarea": 61, "repvalue": 976000, "xcoord": 85.305841984611263, "ycoord": 27.639883691970716 }, "geometry": { "type": "Point", "coordinates": [ 85.305841984611263, 27.639883691970716 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 501, "nhouse": 5, "residents": 17, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 104, "repvalue": 624000, "xcoord": 85.307987630041566, "ycoord": 27.637330594616014 }, "geometry": { "type": "Point", "coordinates": [ 85.307987630041566, 27.637330594616014 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 502, "nhouse": 4, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 69, "repvalue": 414000, "xcoord": 85.307868635854405, "ycoord": 27.636508455903911 }, "geometry": { "type": "Point", "coordinates": [ 85.307868635854405, 27.636508455903911 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 503, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 93, "repvalue": 372000, "xcoord": 85.305598608063349, "ycoord": 27.638591068780478 }, "geometry": { "type": "Point", "coordinates": [ 85.305598608063349, 27.638591068780478 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 504, "nhouse": 27, "residents": 103, "specialfac": 0, "expstr": "RCi+HC+16s+ResCom", "fptarea": 94, "repvalue": 3008000, "xcoord": 85.305472405895713, "ycoord": 27.638237803917896 }, "geometry": { "type": "Point", "coordinates": [ 85.305472405895713, 27.638237803917896 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 505, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "RCi+HC+1s+ResCom", "fptarea": 71, "repvalue": 142000, "xcoord": 85.308108429153364, "ycoord": 27.638035514299197 }, "geometry": { "type": "Point", "coordinates": [ 85.308108429153364, 27.638035514299197 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 506, "nhouse": 4, "residents": 18, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 80, "repvalue": 480000, "xcoord": 85.307471975461979, "ycoord": 27.636620855366019 }, "geometry": { "type": "Point", "coordinates": [ 85.307471975461979, 27.636620855366019 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 507, "nhouse": 3, "residents": 16, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 81, "repvalue": 324000, "xcoord": 85.306700310582769, "ycoord": 27.635439024450474 }, "geometry": { "type": "Point", "coordinates": [ 85.306700310582769, 27.635439024450474 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 508, "nhouse": 6, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 73, "repvalue": 730000, "xcoord": 85.30690760069912, "ycoord": 27.639076023426782 }, "geometry": { "type": "Point", "coordinates": [ 85.30690760069912, 27.639076023426782 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 509, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 61, "repvalue": 244000, "xcoord": 85.307163626008716, "ycoord": 27.639548113201151 }, "geometry": { "type": "Point", "coordinates": [ 85.307163626008716, 27.639548113201151 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 510, "nhouse": 22, "residents": 83, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 108, "repvalue": 2376000, "xcoord": 85.305768153999068, "ycoord": 27.636131082848117 }, "geometry": { "type": "Point", "coordinates": [ 85.305768153999068, 27.636131082848117 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 511, "nhouse": 4, "residents": 16, "specialfac": 0, "expstr": "RCi+HC+13s+ResCom", "fptarea": 89, "repvalue": 2314000, "xcoord": 85.306292821630123, "ycoord": 27.636254733746355 }, "geometry": { "type": "Point", "coordinates": [ 85.306292821630123, 27.636254733746355 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 2138, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 125, "repvalue": 1750000, "xcoord": 85.306568693148421, "ycoord": 27.635437417044159 }, "geometry": { "type": "Point", "coordinates": [ 85.306568693148421, 27.635437417044159 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 2149, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Com", "fptarea": 149, "repvalue": 2682000, "xcoord": 85.306105230032117, "ycoord": 27.639886908512366 }, "geometry": { "type": "Point", "coordinates": [ 85.306105230032117, 27.639886908512366 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 2156, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Com", "fptarea": 101, "repvalue": 1010000, "xcoord": 85.30596638364203, "ycoord": 27.640354175300232 }, "geometry": { "type": "Point", "coordinates": [ 85.30596638364203, 27.640354175300232 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 2157, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Com", "fptarea": 140, "repvalue": 2520000, "xcoord": 85.308277917538874, "ycoord": 27.635575522557762 }, "geometry": { "type": "Point", "coordinates": [ 85.308277917538874, 27.635575522557762 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 2162, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 102, "repvalue": 1836000, "xcoord": 85.306007917386196, "ycoord": 27.637658143614761 }, "geometry": { "type": "Point", "coordinates": [ 85.306007917386196, 27.637658143614761 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 2172, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 126, "repvalue": 1512000, "xcoord": 85.307086141007687, "ycoord": 27.636029940376595 }, "geometry": { "type": "Point", "coordinates": [ 85.307086141007687, 27.636029940376595 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 2175, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Com", "fptarea": 121, "repvalue": 1452000, "xcoord": 85.306916624759879, "ycoord": 27.63848992928234 }, "geometry": { "type": "Point", "coordinates": [ 85.306916624759879, 27.63848992928234 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 2177, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 96, "repvalue": 1728000, "xcoord": 85.307113206021029, "ycoord": 27.63427165685162 }, "geometry": { "type": "Point", "coordinates": [ 85.307113206021029, 27.63427165685162 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 2187, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 132, "repvalue": 1584000, "xcoord": 85.307060878116701, "ycoord": 27.637671004575509 }, "geometry": { "type": "Point", "coordinates": [ 85.307060878116701, 27.637671004575509 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 2207, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Com", "fptarea": 149, "repvalue": 2384000, "xcoord": 85.306514540585468, "ycoord": 27.638953982040622 }, "geometry": { "type": "Point", "coordinates": [ 85.306514540585468, 27.638953982040622 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 4066, "nhouse": 0, "residents": 0, "specialfac": 1, "expstr": "RCi+HC+7s+Edu", "fptarea": 136, "repvalue": 2856000, "xcoord": 85.30641721938288, "ycoord": 27.63672521680925 }, "geometry": { "type": "Point", "coordinates": [ 85.30641721938288, 27.63672521680925 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 512, "nhouse": 10, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 66, "repvalue": 924000, "xcoord": 85.313720802915071, "ycoord": 27.638733483863668 }, "geometry": { "type": "Point", "coordinates": [ 85.313720802915071, 27.638733483863668 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 513, "nhouse": 15, "residents": 55, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 73, "repvalue": 1460000, "xcoord": 85.311407555768852, "ycoord": 27.638705329592746 }, "geometry": { "type": "Point", "coordinates": [ 85.311407555768852, 27.638705329592746 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 514, "nhouse": 8, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 66, "repvalue": 792000, "xcoord": 85.313409458032922, "ycoord": 27.639356807709515 }, "geometry": { "type": "Point", "coordinates": [ 85.313409458032922, 27.639356807709515 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 515, "nhouse": 8, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 47, "repvalue": 752000, "xcoord": 85.312214912656273, "ycoord": 27.638535985726126 }, "geometry": { "type": "Point", "coordinates": [ 85.312214912656273, 27.638535985726126 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 516, "nhouse": 9, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 81, "repvalue": 810000, "xcoord": 85.309309234781111, "ycoord": 27.637783885992175 }, "geometry": { "type": "Point", "coordinates": [ 85.309309234781111, 27.637783885992175 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 517, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrCri+MC+1s+ResCom", "fptarea": 75, "repvalue": 150000, "xcoord": 85.311003876485969, "ycoord": 27.638789999719233 }, "geometry": { "type": "Point", "coordinates": [ 85.311003876485969, 27.638789999719233 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 518, "nhouse": 4, "residents": 13, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 70, "repvalue": 420000, "xcoord": 85.312326485787864, "ycoord": 27.637820645828921 }, "geometry": { "type": "Point", "coordinates": [ 85.312326485787864, 27.637820645828921 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 519, "nhouse": 2, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 50, "repvalue": 200000, "xcoord": 85.313122842973058, "ycoord": 27.638367860757143 }, "geometry": { "type": "Point", "coordinates": [ 85.313122842973058, 27.638367860757143 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 520, "nhouse": 8, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 53, "repvalue": 742000, "xcoord": 85.309908554674635, "ycoord": 27.638059954459443 }, "geometry": { "type": "Point", "coordinates": [ 85.309908554674635, 27.638059954459443 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 521, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 67, "repvalue": 268000, "xcoord": 85.31170515784477, "ycoord": 27.638977715541706 }, "geometry": { "type": "Point", "coordinates": [ 85.31170515784477, 27.638977715541706 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 522, "nhouse": 18, "residents": 73, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 74, "repvalue": 1628000, "xcoord": 85.313416327209822, "ycoord": 27.638908954890351 }, "geometry": { "type": "Point", "coordinates": [ 85.313416327209822, 27.638908954890351 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 523, "nhouse": 4, "residents": 13, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 64, "repvalue": 384000, "xcoord": 85.311811234492296, "ycoord": 27.638620658261701 }, "geometry": { "type": "Point", "coordinates": [ 85.311811234492296, 27.638620658261701 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 524, "nhouse": 9, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 87, "repvalue": 870000, "xcoord": 85.311610082838016, "ycoord": 27.638618208834394 }, "geometry": { "type": "Point", "coordinates": [ 85.311610082838016, 27.638618208834394 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 525, "nhouse": 11, "residents": 47, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 75, "repvalue": 1050000, "xcoord": 85.312524887085587, "ycoord": 27.638002235229536 }, "geometry": { "type": "Point", "coordinates": [ 85.312524887085587, 27.638002235229536 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 526, "nhouse": 8, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 66, "repvalue": 792000, "xcoord": 85.310303974038092, "ycoord": 27.638512710022823 }, "geometry": { "type": "Point", "coordinates": [ 85.310303974038092, 27.638512710022823 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 527, "nhouse": 6, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 49, "repvalue": 588000, "xcoord": 85.313815884985203, "ycoord": 27.63909298942939 }, "geometry": { "type": "Point", "coordinates": [ 85.313815884985203, 27.63909298942939 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 528, "nhouse": 23, "residents": 95, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 67, "repvalue": 2144000, "xcoord": 85.310505125363676, "ycoord": 27.638515161335963 }, "geometry": { "type": "Point", "coordinates": [ 85.310505125363676, 27.638515161335963 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 529, "nhouse": 7, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 64, "repvalue": 640000, "xcoord": 85.311504005548557, "ycoord": 27.638975265931514 }, "geometry": { "type": "Point", "coordinates": [ 85.311504005548557, 27.638975265931514 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 530, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 74, "repvalue": 148000, "xcoord": 85.312223161198844, "ycoord": 27.637998562607262 }, "geometry": { "type": "Point", "coordinates": [ 85.312223161198844, 27.637998562607262 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 531, "nhouse": 30, "residents": 116, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 85, "repvalue": 2720000, "xcoord": 85.31250564356786, "ycoord": 27.639256222633254 }, "geometry": { "type": "Point", "coordinates": [ 85.31250564356786, 27.639256222633254 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 532, "nhouse": 9, "residents": 45, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 55, "repvalue": 880000, "xcoord": 85.310206151197519, "ycoord": 27.638332343407754 }, "geometry": { "type": "Point", "coordinates": [ 85.310206151197519, 27.638332343407754 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 533, "nhouse": 5, "residents": 20, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 61, "repvalue": 488000, "xcoord": 85.312921691644846, "ycoord": 27.63836541325275 }, "geometry": { "type": "Point", "coordinates": [ 85.312921691644846, 27.63836541325275 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 534, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 66, "repvalue": 132000, "xcoord": 85.309602698393235, "ycoord": 27.638324987337416 }, "geometry": { "type": "Point", "coordinates": [ 85.309602698393235, 27.638324987337416 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 535, "nhouse": 6, "residents": 21, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 47, "repvalue": 564000, "xcoord": 85.312910697916806, "ycoord": 27.639081977621991 }, "geometry": { "type": "Point", "coordinates": [ 85.312910697916806, 27.639081977621991 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 536, "nhouse": 6, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 69, "repvalue": 552000, "xcoord": 85.312410565722416, "ycoord": 27.638896716361426 }, "geometry": { "type": "Point", "coordinates": [ 85.312410565722416, 27.638896716361426 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 537, "nhouse": 8, "residents": 22, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 59, "repvalue": 826000, "xcoord": 85.310613957433972, "ycoord": 27.63797896420963 }, "geometry": { "type": "Point", "coordinates": [ 85.310613957433972, 27.63797896420963 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 538, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 82, "repvalue": 328000, "xcoord": 85.312902452354479, "ycoord": 27.639619400847678 }, "geometry": { "type": "Point", "coordinates": [ 85.312902452354479, 27.639619400847678 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 539, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 59, "repvalue": 236000, "xcoord": 85.309812109552055, "ycoord": 27.637790017187012 }, "geometry": { "type": "Point", "coordinates": [ 85.309812109552055, 27.637790017187012 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 540, "nhouse": 1, "residents": 2, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 65, "repvalue": 130000, "xcoord": 85.312712294102056, "ycoord": 27.638900388685443 }, "geometry": { "type": "Point", "coordinates": [ 85.312712294102056, 27.638900388685443 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 541, "nhouse": 23, "residents": 103, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 61, "repvalue": 2074000, "xcoord": 85.312221786457599, "ycoord": 27.638088133130129 }, "geometry": { "type": "Point", "coordinates": [ 85.312221786457599, 27.638088133130129 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 542, "nhouse": 8, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 59, "repvalue": 708000, "xcoord": 85.313226166524302, "ycoord": 27.638189943267683 }, "geometry": { "type": "Point", "coordinates": [ 85.313226166524302, 27.638189943267683 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 543, "nhouse": 9, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 55, "repvalue": 880000, "xcoord": 85.313209678878124, "ycoord": 27.639264789988392 }, "geometry": { "type": "Point", "coordinates": [ 85.313209678878124, 27.639264789988392 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 544, "nhouse": 5, "residents": 20, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 68, "repvalue": 544000, "xcoord": 85.311615583881022, "ycoord": 27.638259926876213 }, "geometry": { "type": "Point", "coordinates": [ 85.311615583881022, 27.638259926876213 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 545, "nhouse": 9, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 64, "repvalue": 896000, "xcoord": 85.312715042874061, "ycoord": 27.638721247614111 }, "geometry": { "type": "Point", "coordinates": [ 85.312715042874061, 27.638721247614111 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 546, "nhouse": 7, "residents": 22, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 75, "repvalue": 750000, "xcoord": 85.312916194831544, "ycoord": 27.638723695447133 }, "geometry": { "type": "Point", "coordinates": [ 85.312916194831544, 27.638723695447133 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 547, "nhouse": 7, "residents": 18, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 59, "repvalue": 708000, "xcoord": 85.313313003217132, "ycoord": 27.639086872487514 }, "geometry": { "type": "Point", "coordinates": [ 85.313313003217132, 27.639086872487514 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 548, "nhouse": 12, "residents": 55, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 59, "repvalue": 1180000, "xcoord": 85.313410831880987, "ycoord": 27.639267237148125 }, "geometry": { "type": "Point", "coordinates": [ 85.313410831880987, 27.639267237148125 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 549, "nhouse": 15, "residents": 61, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 61, "repvalue": 1464000, "xcoord": 85.310602948852519, "ycoord": 27.638695527764614 }, "geometry": { "type": "Point", "coordinates": [ 85.310602948852519, 27.638695527764614 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 550, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 87, "repvalue": 174000, "xcoord": 85.31310772829265, "ycoord": 27.639353136846676 }, "geometry": { "type": "Point", "coordinates": [ 85.31310772829265, 27.639353136846676 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 551, "nhouse": 4, "residents": 10, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 70, "repvalue": 420000, "xcoord": 85.311510882372502, "ycoord": 27.638527413528333 }, "geometry": { "type": "Point", "coordinates": [ 85.311510882372502, 27.638527413528333 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 552, "nhouse": 25, "residents": 105, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 71, "repvalue": 2272000, "xcoord": 85.31300440335545, "ycoord": 27.639531054161999 }, "geometry": { "type": "Point", "coordinates": [ 85.31300440335545, 27.639531054161999 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 553, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 77, "repvalue": 154000, "xcoord": 85.309813486238056, "ycoord": 27.637700446771838 }, "geometry": { "type": "Point", "coordinates": [ 85.309813486238056, 27.637700446771838 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 554, "nhouse": 6, "residents": 21, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 48, "repvalue": 672000, "xcoord": 85.309210037022936, "ycoord": 27.637693089147234 }, "geometry": { "type": "Point", "coordinates": [ 85.309210037022936, 27.637693089147234 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 555, "nhouse": 8, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 47, "repvalue": 752000, "xcoord": 85.311306979882104, "ycoord": 27.638704104619343 }, "geometry": { "type": "Point", "coordinates": [ 85.311306979882104, 27.638704104619343 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 556, "nhouse": 13, "residents": 69, "specialfac": 0, "expstr": "RCi+HC+9s+Res", "fptarea": 66, "repvalue": 1188000, "xcoord": 85.313826872821494, "ycoord": 27.638376424726548 }, "geometry": { "type": "Point", "coordinates": [ 85.313826872821494, 27.638376424726548 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 557, "nhouse": 1, "residents": 5, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 68, "repvalue": 136000, "xcoord": 85.310999749126069, "ycoord": 27.639058711084235 }, "geometry": { "type": "Point", "coordinates": [ 85.310999749126069, 27.639058711084235 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 558, "nhouse": 7, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 46, "repvalue": 644000, "xcoord": 85.312427060919802, "ycoord": 27.637821870027079 }, "geometry": { "type": "Point", "coordinates": [ 85.312427060919802, 27.637821870027079 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 559, "nhouse": 8, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 81, "repvalue": 810000, "xcoord": 85.312402317781221, "ycoord": 27.639434139462693 }, "geometry": { "type": "Point", "coordinates": [ 85.312402317781221, 27.639434139462693 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 560, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 82, "repvalue": 164000, "xcoord": 85.312403692453955, "ycoord": 27.639344568948861 }, "geometry": { "type": "Point", "coordinates": [ 85.312403692453955, 27.639344568948861 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 561, "nhouse": 8, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 56, "repvalue": 784000, "xcoord": 85.31200688633669, "ycoord": 27.638981389410322 }, "geometry": { "type": "Point", "coordinates": [ 85.31200688633669, 27.638981389410322 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 562, "nhouse": 2, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 54, "repvalue": 216000, "xcoord": 85.311813984699171, "ycoord": 27.6384415172665 }, "geometry": { "type": "Point", "coordinates": [ 85.311813984699171, 27.6384415172665 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 563, "nhouse": 20, "residents": 94, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 53, "repvalue": 1908000, "xcoord": 85.312519389064505, "ycoord": 27.6383605173693 }, "geometry": { "type": "Point", "coordinates": [ 85.312519389064505, 27.6383605173693 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 564, "nhouse": 3, "residents": 8, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 73, "repvalue": 292000, "xcoord": 85.312914820612377, "ycoord": 27.638813265992678 }, "geometry": { "type": "Point", "coordinates": [ 85.312914820612377, 27.638813265992678 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 565, "nhouse": 16, "residents": 60, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 53, "repvalue": 1484000, "xcoord": 85.309307857679613, "ycoord": 27.637873456382902 }, "geometry": { "type": "Point", "coordinates": [ 85.309307857679613, 27.637873456382902 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 566, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 57, "repvalue": 228000, "xcoord": 85.31232098716292, "ycoord": 27.63817892794135 }, "geometry": { "type": "Point", "coordinates": [ 85.31232098716292, 27.63817892794135 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 567, "nhouse": 10, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 67, "repvalue": 938000, "xcoord": 85.312615841363154, "ycoord": 27.638630453055395 }, "geometry": { "type": "Point", "coordinates": [ 85.312615841363154, 27.638630453055395 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 568, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 60, "repvalue": 120000, "xcoord": 85.310104199229258, "ycoord": 27.638420687998803 }, "geometry": { "type": "Point", "coordinates": [ 85.310104199229258, 27.638420687998803 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 569, "nhouse": 11, "residents": 43, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 87, "repvalue": 1044000, "xcoord": 85.313618853236079, "ycoord": 27.638821831144689 }, "geometry": { "type": "Point", "coordinates": [ 85.313618853236079, 27.638821831144689 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 570, "nhouse": 4, "residents": 15, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 63, "repvalue": 378000, "xcoord": 85.313216548841652, "ycoord": 27.638816937209452 }, "geometry": { "type": "Point", "coordinates": [ 85.313216548841652, 27.638816937209452 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 571, "nhouse": 7, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 56, "repvalue": 672000, "xcoord": 85.31269717540259, "ycoord": 27.639885664490514 }, "geometry": { "type": "Point", "coordinates": [ 85.31269717540259, 27.639885664490514 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 572, "nhouse": 7, "residents": 29, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 47, "repvalue": 658000, "xcoord": 85.312206663885348, "ycoord": 27.63907340880105 }, "geometry": { "type": "Point", "coordinates": [ 85.312206663885348, 27.63907340880105 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 573, "nhouse": 5, "residents": 17, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 82, "repvalue": 492000, "xcoord": 85.309704650650687, "ycoord": 27.638236643128153 }, "geometry": { "type": "Point", "coordinates": [ 85.309704650650687, 27.638236643128153 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 574, "nhouse": 4, "residents": 22, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 49, "repvalue": 392000, "xcoord": 85.309912684525301, "ycoord": 27.637791243207321 }, "geometry": { "type": "Point", "coordinates": [ 85.309912684525301, 27.637791243207321 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 575, "nhouse": 6, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 52, "repvalue": 624000, "xcoord": 85.310607077118192, "ycoord": 27.638426816440649 }, "geometry": { "type": "Point", "coordinates": [ 85.310607077118192, 27.638426816440649 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 576, "nhouse": 19, "residents": 68, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 63, "repvalue": 1764000, "xcoord": 85.311717534540733, "ycoord": 27.63817158111052 }, "geometry": { "type": "Point", "coordinates": [ 85.311717534540733, 27.63817158111052 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 577, "nhouse": 3, "residents": 5, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 76, "repvalue": 304000, "xcoord": 85.310609829263555, "ycoord": 27.638247675551909 }, "geometry": { "type": "Point", "coordinates": [ 85.310609829263555, 27.638247675551909 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 578, "nhouse": 14, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 45, "repvalue": 1350000, "xcoord": 85.309706027450275, "ycoord": 27.638147072723726 }, "geometry": { "type": "Point", "coordinates": [ 85.309706027450275, 27.638147072723726 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 579, "nhouse": 2, "residents": 12, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 44, "repvalue": 264000, "xcoord": 85.312502894392409, "ycoord": 27.63943536367141 }, "geometry": { "type": "Point", "coordinates": [ 85.312502894392409, 27.63943536367141 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 580, "nhouse": 10, "residents": 43, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 67, "repvalue": 938000, "xcoord": 85.312920317451031, "ycoord": 27.638454983803175 }, "geometry": { "type": "Point", "coordinates": [ 85.312920317451031, 27.638454983803175 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 581, "nhouse": 25, "residents": 112, "specialfac": 0, "expstr": "RCi+HC+19s+Res", "fptarea": 61, "repvalue": 2318000, "xcoord": 85.313213800875246, "ycoord": 27.638996078324688 }, "geometry": { "type": "Point", "coordinates": [ 85.313213800875246, 27.638996078324688 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 582, "nhouse": 13, "residents": 52, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 77, "repvalue": 1232000, "xcoord": 85.313314377128023, "ycoord": 27.638997301927098 }, "geometry": { "type": "Point", "coordinates": [ 85.313314377128023, 27.638997301927098 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 583, "nhouse": 12, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 49, "repvalue": 1078000, "xcoord": 85.312198414886069, "ycoord": 27.639610831832044 }, "geometry": { "type": "Point", "coordinates": [ 85.312198414886069, 27.639610831832044 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 584, "nhouse": 7, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 82, "repvalue": 656000, "xcoord": 85.31222041171003, "ycoord": 27.638177703651763 }, "geometry": { "type": "Point", "coordinates": [ 85.31222041171003, 27.638177703651763 ] } }, +{ "type": "Feature", "properties": { "zoneid": 69, "bldid": 585, "nhouse": 4, "residents": 18, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 76, "repvalue": 608000, "xcoord": 85.310913509063212, "ycoord": 27.623578995433757 }, "geometry": { "type": "Point", "coordinates": [ 85.310913509063212, 27.623578995433757 ] } }, +{ "type": "Feature", "properties": { "zoneid": 69, "bldid": 586, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 113, "repvalue": 226000, "xcoord": 85.312500113165527, "ycoord": 27.625143215922911 }, "geometry": { "type": "Point", "coordinates": [ 85.312500113165527, 27.625143215922911 ] } }, +{ "type": "Feature", "properties": { "zoneid": 69, "bldid": 587, "nhouse": 9, "residents": 43, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 117, "repvalue": 1170000, "xcoord": 85.312279449316819, "ycoord": 27.623374922551569 }, "geometry": { "type": "Point", "coordinates": [ 85.312279449316819, 27.623374922551569 ] } }, +{ "type": "Feature", "properties": { "zoneid": 69, "bldid": 588, "nhouse": 2, "residents": 10, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 74, "repvalue": 296000, "xcoord": 85.312520418287406, "ycoord": 27.623819256702848 }, "geometry": { "type": "Point", "coordinates": [ 85.312520418287406, 27.623819256702848 ] } }, +{ "type": "Feature", "properties": { "zoneid": 69, "bldid": 589, "nhouse": 4, "residents": 16, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 126, "repvalue": 504000, "xcoord": 85.312875108286576, "ycoord": 27.62492707706588 }, "geometry": { "type": "Point", "coordinates": [ 85.312875108286576, 27.62492707706588 ] } }, +{ "type": "Feature", "properties": { "zoneid": 69, "bldid": 590, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 116, "repvalue": 464000, "xcoord": 85.312286218221544, "ycoord": 27.622933602778968 }, "geometry": { "type": "Point", "coordinates": [ 85.312286218221544, 27.622933602778968 ] } }, +{ "type": "Feature", "properties": { "zoneid": 69, "bldid": 591, "nhouse": 5, "residents": 20, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 116, "repvalue": 696000, "xcoord": 85.312868341170571, "ycoord": 27.62536839684585 }, "geometry": { "type": "Point", "coordinates": [ 85.312868341170571, 27.62536839684585 ] } }, +{ "type": "Feature", "properties": { "zoneid": 69, "bldid": 592, "nhouse": 6, "residents": 16, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 132, "repvalue": 792000, "xcoord": 85.313238262152993, "ycoord": 27.625483246891406 }, "geometry": { "type": "Point", "coordinates": [ 85.313238262152993, 27.625483246891406 ] } }, +{ "type": "Feature", "properties": { "zoneid": 69, "bldid": 593, "nhouse": 1, "residents": 1, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 90, "repvalue": 180000, "xcoord": 85.312371165788221, "ycoord": 27.625472698431896 }, "geometry": { "type": "Point", "coordinates": [ 85.312371165788221, 27.625472698431896 ] } }, +{ "type": "Feature", "properties": { "zoneid": 69, "bldid": 594, "nhouse": 5, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 91, "repvalue": 1092000, "xcoord": 85.312372858087542, "ycoord": 27.625362368519664 }, "geometry": { "type": "Point", "coordinates": [ 85.312372858087542, 27.625362368519664 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2241, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 90, "repvalue": 900000, "xcoord": 85.319118187547559, "ycoord": 27.63624184555475 }, "geometry": { "type": "Point", "coordinates": [ 85.319118187547559, 27.63624184555475 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2242, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 100, "repvalue": 800000, "xcoord": 85.319107659422841, "ycoord": 27.636930656129806 }, "geometry": { "type": "Point", "coordinates": [ 85.319107659422841, 27.636930656129806 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2243, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 87, "repvalue": 783000, "xcoord": 85.319239204085619, "ycoord": 27.635554374273486 }, "geometry": { "type": "Point", "coordinates": [ 85.319239204085619, 27.635554374273486 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2244, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 91, "repvalue": 728000, "xcoord": 85.319452663379366, "ycoord": 27.636049060437564 }, "geometry": { "type": "Point", "coordinates": [ 85.319452663379366, 27.636049060437564 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2245, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 101, "repvalue": 1010000, "xcoord": 85.318900216976175, "ycoord": 27.636042363468569 }, "geometry": { "type": "Point", "coordinates": [ 85.318900216976175, 27.636042363468569 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2246, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 91, "repvalue": 546000, "xcoord": 85.319112171522036, "ycoord": 27.636635451606473 }, "geometry": { "type": "Point", "coordinates": [ 85.319112171522036, 27.636635451606473 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2247, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 86, "repvalue": 602000, "xcoord": 85.319224165314239, "ycoord": 27.636538389517405 }, "geometry": { "type": "Point", "coordinates": [ 85.319224165314239, 27.636538389517405 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2248, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 93, "repvalue": 744000, "xcoord": 85.319246723185444, "ycoord": 27.635062366596312 }, "geometry": { "type": "Point", "coordinates": [ 85.319246723185444, 27.635062366596312 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2249, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 97, "repvalue": 873000, "xcoord": 85.319337662713991, "ycoord": 27.636342925802957 }, "geometry": { "type": "Point", "coordinates": [ 85.319337662713991, 27.636342925802957 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2250, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 99, "repvalue": 891000, "xcoord": 85.320032166085028, "ycoord": 27.634284526828051 }, "geometry": { "type": "Point", "coordinates": [ 85.320032166085028, 27.634284526828051 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2251, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 104, "repvalue": 936000, "xcoord": 85.319325632059986, "ycoord": 27.637130137960227 }, "geometry": { "type": "Point", "coordinates": [ 85.319325632059986, 27.637130137960227 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2252, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 96, "repvalue": 768000, "xcoord": 85.319793151475977, "ycoord": 27.635462668223433 }, "geometry": { "type": "Point", "coordinates": [ 85.319793151475977, 27.635462668223433 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2253, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 99, "repvalue": 495000, "xcoord": 85.31889570442172, "ycoord": 27.636337567984977 }, "geometry": { "type": "Point", "coordinates": [ 85.31889570442172, 27.636337567984977 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2254, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 91, "repvalue": 637000, "xcoord": 85.319567663391254, "ycoord": 27.635755194937534 }, "geometry": { "type": "Point", "coordinates": [ 85.319567663391254, 27.635755194937534 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2255, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 87, "repvalue": 609000, "xcoord": 85.319001681656516, "ycoord": 27.636634112091279 }, "geometry": { "type": "Point", "coordinates": [ 85.319001681656516, 27.636634112091279 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2256, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Ind", "fptarea": 89, "repvalue": 445000, "xcoord": 85.319690179836542, "ycoord": 27.634969321506908 }, "geometry": { "type": "Point", "coordinates": [ 85.319690179836542, 27.634969321506908 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2257, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 88, "repvalue": 792000, "xcoord": 85.319228677025691, "ycoord": 27.636243184959696 }, "geometry": { "type": "Point", "coordinates": [ 85.319228677025691, 27.636243184959696 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2258, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 88, "repvalue": 616000, "xcoord": 85.319007698077044, "ycoord": 27.636240506061842 }, "geometry": { "type": "Point", "coordinates": [ 85.319007698077044, 27.636240506061842 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2259, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 92, "repvalue": 920000, "xcoord": 85.319579691611622, "ycoord": 27.634967982526227 }, "geometry": { "type": "Point", "coordinates": [ 85.319579691611622, 27.634967982526227 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2260, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Ind", "fptarea": 97, "repvalue": 970000, "xcoord": 85.318770171536386, "ycoord": 27.637320243213793 }, "geometry": { "type": "Point", "coordinates": [ 85.318770171536386, 27.637320243213793 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2261, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 102, "repvalue": 612000, "xcoord": 85.319334655096242, "ycoord": 27.636539728851105 }, "geometry": { "type": "Point", "coordinates": [ 85.319334655096242, 27.636539728851105 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2262, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 95, "repvalue": 950000, "xcoord": 85.319912659506301, "ycoord": 27.634873597629635 }, "geometry": { "type": "Point", "coordinates": [ 85.319912659506301, 27.634873597629635 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2263, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 95, "repvalue": 570000, "xcoord": 85.319463188950124, "ycoord": 27.635360249652745 }, "geometry": { "type": "Point", "coordinates": [ 85.319463188950124, 27.635360249652745 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2264, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 99, "repvalue": 594000, "xcoord": 85.31980217136487, "ycoord": 27.634872258830448 }, "geometry": { "type": "Point", "coordinates": [ 85.31980217136487, 27.634872258830448 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2265, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 86, "repvalue": 774000, "xcoord": 85.319661613892904, "ycoord": 27.636838950935747 }, "geometry": { "type": "Point", "coordinates": [ 85.319661613892904, 27.636838950935747 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2266, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 87, "repvalue": 696000, "xcoord": 85.319445144885862, "ycoord": 27.636541068096836 }, "geometry": { "type": "Point", "coordinates": [ 85.319445144885862, 27.636541068096836 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2267, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 92, "repvalue": 552000, "xcoord": 85.319357211486263, "ycoord": 27.635063705846431 }, "geometry": { "type": "Point", "coordinates": [ 85.319357211486263, 27.635063705846431 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2268, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 99, "repvalue": 594000, "xcoord": 85.318894200221649, "ycoord": 27.63643596948749 }, "geometry": { "type": "Point", "coordinates": [ 85.318894200221649, 27.63643596948749 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2269, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 104, "repvalue": 936000, "xcoord": 85.319127211357142, "ycoord": 27.635651436432997 }, "geometry": { "type": "Point", "coordinates": [ 85.319127211357142, 27.635651436432997 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2270, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 96, "repvalue": 672000, "xcoord": 85.319437626201804, "ycoord": 27.637033075719316 }, "geometry": { "type": "Point", "coordinates": [ 85.319437626201804, 27.637033075719316 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2271, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 102, "repvalue": 1020000, "xcoord": 85.319443641164298, "ycoord": 27.636639469624281 }, "geometry": { "type": "Point", "coordinates": [ 85.319443641164298, 27.636639469624281 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2272, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 98, "repvalue": 980000, "xcoord": 85.319460181682302, "ycoord": 27.635557052741483 }, "geometry": { "type": "Point", "coordinates": [ 85.319460181682302, 27.635557052741483 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2273, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 96, "repvalue": 672000, "xcoord": 85.319464692572609, "ycoord": 27.635261848106161 }, "geometry": { "type": "Point", "coordinates": [ 85.319464692572609, 27.635261848106161 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2274, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Ind", "fptarea": 105, "repvalue": 525000, "xcoord": 85.319566159829407, "ycoord": 27.63585359648232 }, "geometry": { "type": "Point", "coordinates": [ 85.319566159829407, 27.63585359648232 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2275, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 91, "repvalue": 546000, "xcoord": 85.31933916651144, "ycoord": 27.636244524276673 }, "geometry": { "type": "Point", "coordinates": [ 85.31933916651144, 27.636244524276673 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2276, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+8s+Ind", "fptarea": 95, "repvalue": 760000, "xcoord": 85.319442137435104, "ycoord": 27.636737871150249 }, "geometry": { "type": "Point", "coordinates": [ 85.319442137435104, 27.636737871150249 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2277, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 88, "repvalue": 704000, "xcoord": 85.31991416269571, "ycoord": 27.634775196053411 }, "geometry": { "type": "Point", "coordinates": [ 85.31991416269571, 27.634775196053411 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2278, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 101, "repvalue": 808000, "xcoord": 85.319772104001657, "ycoord": 27.636840289934312 }, "geometry": { "type": "Point", "coordinates": [ 85.319772104001657, 27.636840289934312 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2279, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+6s+Ind", "fptarea": 100, "repvalue": 600000, "xcoord": 85.319439129953864, "ycoord": 27.636934674197761 }, "geometry": { "type": "Point", "coordinates": [ 85.319439129953864, 27.636934674197761 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2280, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Ind", "fptarea": 105, "repvalue": 525000, "xcoord": 85.31890172114575, "ycoord": 27.635943961960162 }, "geometry": { "type": "Point", "coordinates": [ 85.31890172114575, 27.635943961960162 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2281, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 97, "repvalue": 582000, "xcoord": 85.318997169261081, "ycoord": 27.63692931659789 }, "geometry": { "type": "Point", "coordinates": [ 85.318997169261081, 27.63692931659789 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2282, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 92, "repvalue": 644000, "xcoord": 85.319911156309274, "ycoord": 27.634971999204382 }, "geometry": { "type": "Point", "coordinates": [ 85.319911156309274, 27.634971999204382 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2283, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 99, "repvalue": 792000, "xcoord": 85.318998673400515, "ycoord": 27.63683091509716 }, "geometry": { "type": "Point", "coordinates": [ 85.318998673400515, 27.63683091509716 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2284, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 102, "repvalue": 918000, "xcoord": 85.319805177933532, "ycoord": 27.634675455687681 }, "geometry": { "type": "Point", "coordinates": [ 85.319805177933532, 27.634675455687681 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2285, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+9s+Ind", "fptarea": 94, "repvalue": 846000, "xcoord": 85.319333151275913, "ycoord": 27.636638130372972 }, "geometry": { "type": "Point", "coordinates": [ 85.319333151275913, 27.636638130372972 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2286, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 102, "repvalue": 816000, "xcoord": 85.319770600553483, "ycoord": 27.63693869147405 }, "geometry": { "type": "Point", "coordinates": [ 85.319770600553483, 27.63693869147405 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2287, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Ind", "fptarea": 103, "repvalue": 618000, "xcoord": 85.318659681002501, "ycoord": 27.637318903395695 }, "geometry": { "type": "Point", "coordinates": [ 85.318659681002501, 27.637318903395695 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2288, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 99, "repvalue": 891000, "xcoord": 85.319576684602254, "ycoord": 27.635164785637887 }, "geometry": { "type": "Point", "coordinates": [ 85.319576684602254, 27.635164785637887 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2289, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Ind", "fptarea": 85, "repvalue": 595000, "xcoord": 85.319684166182313, "ycoord": 27.635362927746609 }, "geometry": { "type": "Point", "coordinates": [ 85.319684166182313, 27.635362927746609 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2290, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 95, "repvalue": 760000, "xcoord": 85.319233188668548, "ycoord": 27.635947980388718 }, "geometry": { "type": "Point", "coordinates": [ 85.319233188668548, 27.635947980388718 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2291, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 91, "repvalue": 910000, "xcoord": 85.318994160959306, "ycoord": 27.637126119594939 }, "geometry": { "type": "Point", "coordinates": [ 85.318994160959306, 27.637126119594939 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2292, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 97, "repvalue": 970000, "xcoord": 85.31968867643441, "ycoord": 27.635067723069042 }, "geometry": { "type": "Point", "coordinates": [ 85.31968867643441, 27.635067723069042 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2293, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 92, "repvalue": 736000, "xcoord": 85.319909653104631, "ycoord": 27.635070400777661 }, "geometry": { "type": "Point", "coordinates": [ 85.319909653104631, 27.635070400777661 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2294, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 94, "repvalue": 564000, "xcoord": 85.319130219232676, "ycoord": 27.635454633380633 }, "geometry": { "type": "Point", "coordinates": [ 85.319130219232676, 27.635454633380633 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2295, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 103, "repvalue": 721000, "xcoord": 85.319920175377106, "ycoord": 27.634381589733813 }, "geometry": { "type": "Point", "coordinates": [ 85.319920175377106, 27.634381589733813 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2296, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 102, "repvalue": 612000, "xcoord": 85.319012210312394, "ycoord": 27.635945301524306 }, "geometry": { "type": "Point", "coordinates": [ 85.319012210312394, 27.635945301524306 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2297, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Ind", "fptarea": 98, "repvalue": 686000, "xcoord": 85.31924371556839, "ycoord": 27.635259169671599 }, "geometry": { "type": "Point", "coordinates": [ 85.31924371556839, 27.635259169671599 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2298, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+9s+Ind", "fptarea": 85, "repvalue": 765000, "xcoord": 85.318882166346611, "ycoord": 27.637223181454662 }, "geometry": { "type": "Point", "coordinates": [ 85.318882166346611, 27.637223181454662 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2299, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 99, "repvalue": 594000, "xcoord": 85.319448152306137, "ycoord": 27.63634426503755 }, "geometry": { "type": "Point", "coordinates": [ 85.319448152306137, 27.63634426503755 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2300, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 86, "repvalue": 516000, "xcoord": 85.319921678528402, "ycoord": 27.634283188150231 }, "geometry": { "type": "Point", "coordinates": [ 85.319921678528402, 27.634283188150231 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2301, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 86, "repvalue": 774000, "xcoord": 85.319682662749699, "ycoord": 27.635461329302863 }, "geometry": { "type": "Point", "coordinates": [ 85.319682662749699, 27.635461329302863 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2302, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 85, "repvalue": 680000, "xcoord": 85.320035172167294, "ycoord": 27.634087723645326 }, "geometry": { "type": "Point", "coordinates": [ 85.320035172167294, 27.634087723645326 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2303, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 104, "repvalue": 624000, "xcoord": 85.319240707920841, "ycoord": 27.635455972740996 }, "geometry": { "type": "Point", "coordinates": [ 85.319240707920841, 27.635455972740996 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2304, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 88, "repvalue": 704000, "xcoord": 85.318780701948384, "ycoord": 27.636631432796992 }, "geometry": { "type": "Point", "coordinates": [ 85.318780701948384, 27.636631432796992 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2305, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+7s+Ind", "fptarea": 104, "repvalue": 728000, "xcoord": 85.318771675903847, "ycoord": 27.637221841730096 }, "geometry": { "type": "Point", "coordinates": [ 85.318771675903847, 27.637221841730096 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2306, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 85, "repvalue": 850000, "xcoord": 85.319119691534894, "ycoord": 27.63614344403814 }, "geometry": { "type": "Point", "coordinates": [ 85.319119691534894, 27.63614344403814 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2307, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 91, "repvalue": 455000, "xcoord": 85.319361722558455, "ycoord": 27.634768501205752 }, "geometry": { "type": "Point", "coordinates": [ 85.319361722558455, 27.634768501205752 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2308, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Ind", "fptarea": 96, "repvalue": 960000, "xcoord": 85.319554131060286, "ycoord": 27.636640808787629 }, "geometry": { "type": "Point", "coordinates": [ 85.319554131060286, 27.636640808787629 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2309, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 99, "repvalue": 792000, "xcoord": 85.319787138064299, "ycoord": 27.635856274455985 }, "geometry": { "type": "Point", "coordinates": [ 85.319787138064299, 27.635856274455985 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2310, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 102, "repvalue": 918000, "xcoord": 85.319785634692337, "ycoord": 27.635954676010439 }, "geometry": { "type": "Point", "coordinates": [ 85.319785634692337, 27.635954676010439 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2311, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 95, "repvalue": 760000, "xcoord": 85.319330143612405, "ycoord": 27.636834933412295 }, "geometry": { "type": "Point", "coordinates": [ 85.319330143612405, 27.636834933412295 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2312, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 103, "repvalue": 824000, "xcoord": 85.319687173024676, "ycoord": 27.635166124629706 }, "geometry": { "type": "Point", "coordinates": [ 85.319687173024676, 27.635166124629706 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2313, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 104, "repvalue": 728000, "xcoord": 85.319343677858058, "ycoord": 27.635949319688983 }, "geometry": { "type": "Point", "coordinates": [ 85.319343677858058, 27.635949319688983 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2314, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Ind", "fptarea": 89, "repvalue": 534000, "xcoord": 85.319467699794686, "ycoord": 27.635065045008595 }, "geometry": { "type": "Point", "coordinates": [ 85.319467699794686, 27.635065045008595 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2315, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 103, "repvalue": 927000, "xcoord": 85.319799164765712, "ycoord": 27.635069061967325 }, "geometry": { "type": "Point", "coordinates": [ 85.319799164765712, 27.635069061967325 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2316, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 95, "repvalue": 570000, "xcoord": 85.319563152682875, "ycoord": 27.63605039956748 }, "geometry": { "type": "Point", "coordinates": [ 85.319563152682875, 27.63605039956748 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2317, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 103, "repvalue": 618000, "xcoord": 85.319022738594668, "ycoord": 27.635256490885201 }, "geometry": { "type": "Point", "coordinates": [ 85.319022738594668, 27.635256490885201 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2318, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 94, "repvalue": 564000, "xcoord": 85.319458678036966, "ycoord": 27.635655454283643 }, "geometry": { "type": "Point", "coordinates": [ 85.319458678036966, 27.635655454283643 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2319, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 91, "repvalue": 819000, "xcoord": 85.319672138508025, "ycoord": 27.63615014015538 }, "geometry": { "type": "Point", "coordinates": [ 85.319672138508025, 27.63615014015538 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2320, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Ind", "fptarea": 103, "repvalue": 1030000, "xcoord": 85.319342174083474, "ycoord": 27.636047721219686 }, "geometry": { "type": "Point", "coordinates": [ 85.319342174083474, 27.636047721219686 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2321, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Ind", "fptarea": 96, "repvalue": 960000, "xcoord": 85.319018226519432, "ycoord": 27.635551695453657 }, "geometry": { "type": "Point", "coordinates": [ 85.319018226519432, 27.635551695453657 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2322, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 85, "repvalue": 680000, "xcoord": 85.319457174383984, "ycoord": 27.635753855824326 }, "geometry": { "type": "Point", "coordinates": [ 85.319457174383984, 27.635753855824326 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2323, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Ind", "fptarea": 100, "repvalue": 700000, "xcoord": 85.319015218431161, "ycoord": 27.635748498491932 }, "geometry": { "type": "Point", "coordinates": [ 85.319015218431161, 27.635748498491932 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2324, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 101, "repvalue": 808000, "xcoord": 85.319585705538884, "ycoord": 27.634574376285254 }, "geometry": { "type": "Point", "coordinates": [ 85.319585705538884, 27.634574376285254 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2325, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 105, "repvalue": 630000, "xcoord": 85.318889687575705, "ycoord": 27.636731173986224 }, "geometry": { "type": "Point", "coordinates": [ 85.318889687575705, 27.636731173986224 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2326, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 89, "repvalue": 890000, "xcoord": 85.318662689927265, "ycoord": 27.637122100437974 }, "geometry": { "type": "Point", "coordinates": [ 85.318662689927265, 27.637122100437974 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2327, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Ind", "fptarea": 100, "repvalue": 900000, "xcoord": 85.319693186617926, "ycoord": 27.63477251837822 }, "geometry": { "type": "Point", "coordinates": [ 85.319693186617926, 27.63477251837822 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2328, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 93, "repvalue": 651000, "xcoord": 85.318883670607676, "ycoord": 27.637124779963912 }, "geometry": { "type": "Point", "coordinates": [ 85.318883670607676, 27.637124779963912 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2329, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 101, "repvalue": 808000, "xcoord": 85.319222661395159, "ycoord": 27.636636791033702 }, "geometry": { "type": "Point", "coordinates": [ 85.319222661395159, 27.636636791033702 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2330, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 95, "repvalue": 475000, "xcoord": 85.319215141685461, "ycoord": 27.6371287985931 }, "geometry": { "type": "Point", "coordinates": [ 85.319215141685461, 27.6371287985931 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2331, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+5s+Ind", "fptarea": 103, "repvalue": 515000, "xcoord": 85.31877468461586, "ycoord": 27.637025038758289 }, "geometry": { "type": "Point", "coordinates": [ 85.31877468461586, 27.637025038758289 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2332, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 88, "repvalue": 792000, "xcoord": 85.319236196392339, "ycoord": 27.635751177334043 }, "geometry": { "type": "Point", "coordinates": [ 85.319236196392339, 27.635751177334043 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2333, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 98, "repvalue": 882000, "xcoord": 85.318885174861123, "ycoord": 27.637026378471706 }, "geometry": { "type": "Point", "coordinates": [ 85.318885174861123, 27.637026378471706 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2334, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 94, "repvalue": 846000, "xcoord": 85.319572174031052, "ycoord": 27.635459990294333 }, "geometry": { "type": "Point", "coordinates": [ 85.319572174031052, 27.635459990294333 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2335, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 102, "repvalue": 714000, "xcoord": 85.319669131513251, "ycoord": 27.636346943242852 }, "geometry": { "type": "Point", "coordinates": [ 85.319669131513251, 27.636346943242852 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2336, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 89, "repvalue": 890000, "xcoord": 85.319225669225673, "ycoord": 27.636439987999644 }, "geometry": { "type": "Point", "coordinates": [ 85.319225669225673, 27.636439987999644 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2337, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Ind", "fptarea": 102, "repvalue": 612000, "xcoord": 85.319234692534252, "ycoord": 27.635849578862121 }, "geometry": { "type": "Point", "coordinates": [ 85.319234692534252, 27.635849578862121 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2338, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+8s+Ind", "fptarea": 97, "repvalue": 776000, "xcoord": 85.318891191798642, "ycoord": 27.636632772488117 }, "geometry": { "type": "Point", "coordinates": [ 85.318891191798642, 27.636632772488117 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2339, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 105, "repvalue": 1050000, "xcoord": 85.319122699486655, "ycoord": 27.635946641000498 }, "geometry": { "type": "Point", "coordinates": [ 85.319122699486655, 27.635946641000498 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2340, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Ind", "fptarea": 86, "repvalue": 516000, "xcoord": 85.319349692880152, "ycoord": 27.635555713551462 }, "geometry": { "type": "Point", "coordinates": [ 85.319349692880152, 27.635555713551462 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2341, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 96, "repvalue": 960000, "xcoord": 85.319351196616608, "ycoord": 27.635457312013404 }, "geometry": { "type": "Point", "coordinates": [ 85.319351196616608, 27.635457312013404 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2342, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+5s+Ind", "fptarea": 94, "repvalue": 470000, "xcoord": 85.318995665114016, "ycoord": 27.637027718097155 }, "geometry": { "type": "Point", "coordinates": [ 85.318995665114016, 27.637027718097155 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2343, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 92, "repvalue": 644000, "xcoord": 85.31967965586162, "ycoord": 27.635658132410938 }, "geometry": { "type": "Point", "coordinates": [ 85.31967965586162, 27.635658132410938 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2344, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Ind", "fptarea": 99, "repvalue": 792000, "xcoord": 85.319917169051649, "ycoord": 27.634578392896557 }, "geometry": { "type": "Point", "coordinates": [ 85.319917169051649, 27.634578392896557 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2345, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Ind", "fptarea": 100, "repvalue": 700000, "xcoord": 85.319136234892255, "ycoord": 27.635061027258239 }, "geometry": { "type": "Point", "coordinates": [ 85.319136234892255, 27.635061027258239 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2346, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Ind", "fptarea": 102, "repvalue": 510000, "xcoord": 85.319466196187449, "ycoord": 27.635163446558114 }, "geometry": { "type": "Point", "coordinates": [ 85.319466196187449, 27.635163446558114 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2347, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 98, "repvalue": 980000, "xcoord": 85.319557138298308, "ycoord": 27.636444005720136 }, "geometry": { "type": "Point", "coordinates": [ 85.319557138298308, 27.636444005720136 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2348, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Ind", "fptarea": 87, "repvalue": 522000, "xcoord": 85.319242211748417, "ycoord": 27.635357571207035 }, "geometry": { "type": "Point", "coordinates": [ 85.319242211748417, 27.635357571207035 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2349, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 94, "repvalue": 752000, "xcoord": 85.319340670301273, "ycoord": 27.636146122748919 }, "geometry": { "type": "Point", "coordinates": [ 85.319340670301273, 27.636146122748919 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2350, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 105, "repvalue": 630000, "xcoord": 85.319345181625025, "ycoord": 27.635850918156812 }, "geometry": { "type": "Point", "coordinates": [ 85.319345181625025, 27.635850918156812 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2351, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Ind", "fptarea": 88, "repvalue": 880000, "xcoord": 85.319663117432228, "ycoord": 27.636740549400116 }, "geometry": { "type": "Point", "coordinates": [ 85.319663117432228, 27.636740549400116 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2352, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+5s+Ind", "fptarea": 96, "repvalue": 480000, "xcoord": 85.3194556707234, "ycoord": 27.635852257363545 }, "geometry": { "type": "Point", "coordinates": [ 85.3194556707234, 27.635852257363545 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2353, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 98, "repvalue": 588000, "xcoord": 85.319013714375586, "ycoord": 27.635846900008854 }, "geometry": { "type": "Point", "coordinates": [ 85.319013714375586, 27.635846900008854 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2354, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 86, "repvalue": 516000, "xcoord": 85.319558641905871, "ycoord": 27.636345604184179 }, "geometry": { "type": "Point", "coordinates": [ 85.319558641905871, 27.636345604184179 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2355, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Ind", "fptarea": 96, "repvalue": 576000, "xcoord": 85.319788641428644, "ycoord": 27.635757872900051 }, "geometry": { "type": "Point", "coordinates": [ 85.319788641428644, 27.635757872900051 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2356, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 94, "repvalue": 846000, "xcoord": 85.319021234577207, "ycoord": 27.635354892409495 }, "geometry": { "type": "Point", "coordinates": [ 85.319021234577207, 27.635354892409495 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2357, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 85, "repvalue": 510000, "xcoord": 85.319248226982538, "ycoord": 27.634963965056468 }, "geometry": { "type": "Point", "coordinates": [ 85.319248226982538, 27.634963965056468 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2358, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Ind", "fptarea": 87, "repvalue": 783000, "xcoord": 85.319121195514583, "ycoord": 27.636045042520045 }, "geometry": { "type": "Point", "coordinates": [ 85.319121195514583, 27.636045042520045 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2359, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 99, "repvalue": 693000, "xcoord": 85.319219653534162, "ycoord": 27.636833594061876 }, "geometry": { "type": "Point", "coordinates": [ 85.319219653534162, 27.636833594061876 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2360, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Ind", "fptarea": 97, "repvalue": 873000, "xcoord": 85.320036675197002, "ycoord": 27.633989322051765 }, "geometry": { "type": "Point", "coordinates": [ 85.320036675197002, 27.633989322051765 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2361, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 93, "repvalue": 651000, "xcoord": 85.319461685320022, "ycoord": 27.635458651197844 }, "geometry": { "type": "Point", "coordinates": [ 85.319461685320022, 27.635458651197844 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2362, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 92, "repvalue": 644000, "xcoord": 85.318776188960442, "ycoord": 27.636926637270168 }, "geometry": { "type": "Point", "coordinates": [ 85.318776188960442, 27.636926637270168 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2363, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+9s+Ind", "fptarea": 96, "repvalue": 864000, "xcoord": 85.319675145472331, "ycoord": 27.63595333706202 }, "geometry": { "type": "Point", "coordinates": [ 85.319675145472331, 27.63595333706202 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2364, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+8s+Ind", "fptarea": 104, "repvalue": 832000, "xcoord": 85.319131723159003, "ycoord": 27.635356231852242 }, "geometry": { "type": "Point", "coordinates": [ 85.319131723159003, 27.635356231852242 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2365, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 103, "repvalue": 927000, "xcoord": 85.319128715298717, "ycoord": 27.635553034907556 }, "geometry": { "type": "Point", "coordinates": [ 85.319128715298717, 27.635553034907556 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2366, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 104, "repvalue": 1040000, "xcoord": 85.319660110345993, "ycoord": 27.636937352469921 }, "geometry": { "type": "Point", "coordinates": [ 85.319660110345993, 27.636937352469921 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2367, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Ind", "fptarea": 102, "repvalue": 510000, "xcoord": 85.319109163463523, "ycoord": 27.636832254623499 }, "geometry": { "type": "Point", "coordinates": [ 85.319109163463523, 27.636832254623499 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2368, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+7s+Ind", "fptarea": 97, "repvalue": 679000, "xcoord": 85.319803674653002, "ycoord": 27.634773857259791 }, "geometry": { "type": "Point", "coordinates": [ 85.319803674653002, 27.634773857259791 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2369, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 86, "repvalue": 688000, "xcoord": 85.319003185773099, "ycoord": 27.636535710586127 }, "geometry": { "type": "Point", "coordinates": [ 85.319003185773099, 27.636535710586127 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2370, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+5s+Ind", "fptarea": 101, "repvalue": 505000, "xcoord": 85.319575181086137, "ycoord": 27.635263187191505 }, "geometry": { "type": "Point", "coordinates": [ 85.319575181086137, 27.635263187191505 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2371, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 93, "repvalue": 837000, "xcoord": 85.319676648943044, "ycoord": 27.635854935513134 }, "geometry": { "type": "Point", "coordinates": [ 85.319676648943044, 27.635854935513134 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2372, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 103, "repvalue": 721000, "xcoord": 85.319696193368856, "ycoord": 27.634575715243638 }, "geometry": { "type": "Point", "coordinates": [ 85.319696193368856, 27.634575715243638 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2373, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Ind", "fptarea": 101, "repvalue": 505000, "xcoord": 85.319218149592217, "ycoord": 27.636931995573761 }, "geometry": { "type": "Point", "coordinates": [ 85.319218149592217, 27.636931995573761 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2374, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+8s+Ind", "fptarea": 97, "repvalue": 776000, "xcoord": 85.319578188110754, "ycoord": 27.635066384082794 }, "geometry": { "type": "Point", "coordinates": [ 85.319578188110754, 27.635066384082794 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2375, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Ind", "fptarea": 86, "repvalue": 774000, "xcoord": 85.319691683231056, "ycoord": 27.634870919943296 }, "geometry": { "type": "Point", "coordinates": [ 85.319691683231056, 27.634870919943296 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2376, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+7s+Ind", "fptarea": 91, "repvalue": 637000, "xcoord": 85.318779197626696, "ycoord": 27.636729834289525 }, "geometry": { "type": "Point", "coordinates": [ 85.318779197626696, 27.636729834289525 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2377, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 104, "repvalue": 936000, "xcoord": 85.319354204066684, "ycoord": 27.635260508932863 }, "geometry": { "type": "Point", "coordinates": [ 85.319354204066684, 27.635260508932863 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2378, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Ind", "fptarea": 97, "repvalue": 679000, "xcoord": 85.319811190979422, "ycoord": 27.634281849384458 }, "geometry": { "type": "Point", "coordinates": [ 85.319811190979422, 27.634281849384458 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2379, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 91, "repvalue": 728000, "xcoord": 85.319694689997206, "ycoord": 27.63467411681167 }, "geometry": { "type": "Point", "coordinates": [ 85.319694689997206, 27.63467411681167 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2380, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 98, "repvalue": 980000, "xcoord": 85.319110667496588, "ycoord": 27.636733853115725 }, "geometry": { "type": "Point", "coordinates": [ 85.319110667496588, 27.636733853115725 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2381, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 89, "repvalue": 712000, "xcoord": 85.319000177532331, "ycoord": 27.636732513594957 }, "geometry": { "type": "Point", "coordinates": [ 85.319000177532331, 27.636732513594957 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2382, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 89, "repvalue": 623000, "xcoord": 85.319773607442215, "ycoord": 27.636741888393107 }, "geometry": { "type": "Point", "coordinates": [ 85.319773607442215, 27.636741888393107 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2383, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 88, "repvalue": 792000, "xcoord": 85.31923770024278, "ycoord": 27.635652775804498 }, "geometry": { "type": "Point", "coordinates": [ 85.31923770024278, 27.635652775804498 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2384, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 91, "repvalue": 637000, "xcoord": 85.319809687729375, "ycoord": 27.634380250962469 }, "geometry": { "type": "Point", "coordinates": [ 85.319809687729375, 27.634380250962469 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2385, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 103, "repvalue": 927000, "xcoord": 85.319552627429843, "ycoord": 27.636739210319163 }, "geometry": { "type": "Point", "coordinates": [ 85.319552627429843, 27.636739210319163 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2386, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 89, "repvalue": 712000, "xcoord": 85.318897208614175, "ycoord": 27.63623916648098 }, "geometry": { "type": "Point", "coordinates": [ 85.318897208614175, 27.63623916648098 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2387, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+10s+Ind", "fptarea": 92, "repvalue": 920000, "xcoord": 85.318777693297363, "ycoord": 27.63682823578058 }, "geometry": { "type": "Point", "coordinates": [ 85.318777693297363, 27.63682823578058 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2388, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 104, "repvalue": 728000, "xcoord": 85.319331647447967, "ycoord": 27.636736531893373 }, "geometry": { "type": "Point", "coordinates": [ 85.319331647447967, 27.636736531893373 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2389, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 99, "repvalue": 594000, "xcoord": 85.318661185468699, "ycoord": 27.637220501917565 }, "geometry": { "type": "Point", "coordinates": [ 85.318661185468699, 27.637220501917565 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2390, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 105, "repvalue": 840000, "xcoord": 85.319673641993987, "ycoord": 27.636051738609435 }, "geometry": { "type": "Point", "coordinates": [ 85.319673641993987, 27.636051738609435 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2391, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 91, "repvalue": 637000, "xcoord": 85.319454167055184, "ycoord": 27.63595065890129 }, "geometry": { "type": "Point", "coordinates": [ 85.319454167055184, 27.63595065890129 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2392, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 96, "repvalue": 480000, "xcoord": 85.319790144785387, "ycoord": 27.635659471342652 }, "geometry": { "type": "Point", "coordinates": [ 85.319790144785387, 27.635659471342652 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2393, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 102, "repvalue": 612000, "xcoord": 85.319555634683113, "ycoord": 27.636542407254613 }, "geometry": { "type": "Point", "coordinates": [ 85.319555634683113, 27.636542407254613 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2394, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 97, "repvalue": 776000, "xcoord": 85.31969769673286, "ycoord": 27.634477313674147 }, "geometry": { "type": "Point", "coordinates": [ 85.31969769673286, 27.634477313674147 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2395, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 87, "repvalue": 435000, "xcoord": 85.319472210570652, "ycoord": 27.634769840351193 }, "geometry": { "type": "Point", "coordinates": [ 85.319472210570652, 27.634769840351193 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2396, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Ind", "fptarea": 91, "repvalue": 728000, "xcoord": 85.319230180914275, "ycoord": 27.636144783437516 }, "geometry": { "type": "Point", "coordinates": [ 85.319230180914275, 27.636144783437516 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2397, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 89, "repvalue": 534000, "xcoord": 85.319216645642655, "ycoord": 27.637030397084164 }, "geometry": { "type": "Point", "coordinates": [ 85.319216645642655, 27.637030397084164 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2398, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 102, "repvalue": 612000, "xcoord": 85.319249730772015, "ycoord": 27.634865563515145 }, "geometry": { "type": "Point", "coordinates": [ 85.319249730772015, 27.634865563515145 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2399, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 92, "repvalue": 460000, "xcoord": 85.319548116492811, "ycoord": 27.637034414904949 }, "geometry": { "type": "Point", "coordinates": [ 85.319548116492811, 27.637034414904949 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2400, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+8s+Ind", "fptarea": 92, "repvalue": 736000, "xcoord": 85.319449656004835, "ycoord": 27.636245863505692 }, "geometry": { "type": "Point", "coordinates": [ 85.319449656004835, 27.636245863505692 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2401, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 96, "repvalue": 960000, "xcoord": 85.319113675539853, "ycoord": 27.636537050095747 }, "geometry": { "type": "Point", "coordinates": [ 85.319113675539853, 27.636537050095747 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2402, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 90, "repvalue": 810000, "xcoord": 85.319327135918414, "ycoord": 27.637031736445724 }, "geometry": { "type": "Point", "coordinates": [ 85.319327135918414, 27.637031736445724 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2403, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 101, "repvalue": 909000, "xcoord": 85.319473714147392, "ycoord": 27.634671438795792 }, "geometry": { "type": "Point", "coordinates": [ 85.319473714147392, 27.634671438795792 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2404, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Ind", "fptarea": 101, "repvalue": 808000, "xcoord": 85.319451159695902, "ycoord": 27.636147461972367 }, "geometry": { "type": "Point", "coordinates": [ 85.319451159695902, 27.636147461972367 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2405, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 104, "repvalue": 936000, "xcoord": 85.319569166945485, "ycoord": 27.635656793391274 }, "geometry": { "type": "Point", "coordinates": [ 85.319569166945485, 27.635656793391274 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2406, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 99, "repvalue": 891000, "xcoord": 85.319797661454714, "ycoord": 27.635167463533563 }, "geometry": { "type": "Point", "coordinates": [ 85.319797661454714, 27.635167463533563 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2407, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 90, "repvalue": 540000, "xcoord": 85.319103147255021, "ycoord": 27.637225860639894 }, "geometry": { "type": "Point", "coordinates": [ 85.319103147255021, 27.637225860639894 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2408, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 92, "repvalue": 552000, "xcoord": 85.319010706241571, "ycoord": 27.63604370303829 }, "geometry": { "type": "Point", "coordinates": [ 85.319010706241571, 27.63604370303829 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2409, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 98, "repvalue": 686000, "xcoord": 85.319245219380733, "ycoord": 27.635160768134696 }, "geometry": { "type": "Point", "coordinates": [ 85.319245219380733, 27.635160768134696 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2410, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 92, "repvalue": 552000, "xcoord": 85.319133227077714, "ycoord": 27.635257830322381 }, "geometry": { "type": "Point", "coordinates": [ 85.319133227077714, 27.635257830322381 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2411, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 95, "repvalue": 760000, "xcoord": 85.319124203451111, "ycoord": 27.635848239479468 }, "geometry": { "type": "Point", "coordinates": [ 85.319124203451111, 27.635848239479468 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2412, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Ind", "fptarea": 97, "repvalue": 873000, "xcoord": 85.318898712798983, "ycoord": 27.636140764975512 }, "geometry": { "type": "Point", "coordinates": [ 85.318898712798983, 27.636140764975512 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2413, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 97, "repvalue": 679000, "xcoord": 85.319561649098162, "ycoord": 27.636148801107854 }, "geometry": { "type": "Point", "coordinates": [ 85.319561649098162, 27.636148801107854 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2414, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 93, "repvalue": 651000, "xcoord": 85.319915665877488, "ycoord": 27.634676794475727 }, "geometry": { "type": "Point", "coordinates": [ 85.319915665877488, 27.634676794475727 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2415, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+9s+Ind", "fptarea": 105, "repvalue": 945000, "xcoord": 85.318888183345138, "ycoord": 27.636829575482849 }, "geometry": { "type": "Point", "coordinates": [ 85.318888183345138, 27.636829575482849 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2416, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+5s+Ind", "fptarea": 105, "repvalue": 525000, "xcoord": 85.3191377387881, "ycoord": 27.634962625723961 }, "geometry": { "type": "Point", "coordinates": [ 85.3191377387881, 27.634962625723961 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2417, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 102, "repvalue": 1020000, "xcoord": 85.320030663032469, "ycoord": 27.634382928417196 }, "geometry": { "type": "Point", "coordinates": [ 85.320030663032469, 27.634382928417196 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2418, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+5s+Ind", "fptarea": 103, "repvalue": 515000, "xcoord": 85.318892696013961, "ycoord": 27.636534370988539 }, "geometry": { "type": "Point", "coordinates": [ 85.318892696013961, 27.636534370988539 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2419, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Ind", "fptarea": 105, "repvalue": 630000, "xcoord": 85.31900920216313, "ycoord": 27.63614210455081 }, "geometry": { "type": "Point", "coordinates": [ 85.31900920216313, 27.63614210455081 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2420, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 103, "repvalue": 618000, "xcoord": 85.319231684795213, "ycoord": 27.636046381913847 }, "geometry": { "type": "Point", "coordinates": [ 85.319231684795213, 27.636046381913847 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2421, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+7s+Ind", "fptarea": 90, "repvalue": 630000, "xcoord": 85.319666124487981, "ycoord": 27.636543746324424 }, "geometry": { "type": "Point", "coordinates": [ 85.319666124487981, 27.636543746324424 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2422, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+8s+Ind", "fptarea": 90, "repvalue": 720000, "xcoord": 85.319004689882036, "ycoord": 27.636437309079508 }, "geometry": { "type": "Point", "coordinates": [ 85.319004689882036, 27.636437309079508 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2423, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 89, "repvalue": 712000, "xcoord": 85.319808184471711, "ycoord": 27.634478652539016 }, "geometry": { "type": "Point", "coordinates": [ 85.319808184471711, 27.634478652539016 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2424, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 93, "repvalue": 558000, "xcoord": 85.318886679106939, "ycoord": 27.636927976978015 }, "geometry": { "type": "Point", "coordinates": [ 85.318886679106939, 27.636927976978015 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2425, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 95, "repvalue": 570000, "xcoord": 85.319115179550039, "ycoord": 27.63643864858356 }, "geometry": { "type": "Point", "coordinates": [ 85.319115179550039, 27.63643864858356 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2426, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 89, "repvalue": 534000, "xcoord": 85.31954962014612, "ycoord": 27.636936013377824 }, "geometry": { "type": "Point", "coordinates": [ 85.31954962014612, 27.636936013377824 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2427, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Ind", "fptarea": 94, "repvalue": 658000, "xcoord": 85.319800668069107, "ycoord": 27.634970660399617 }, "geometry": { "type": "Point", "coordinates": [ 85.319800668069107, 27.634970660399617 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2428, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 101, "repvalue": 909000, "xcoord": 85.319918672218193, "ycoord": 27.634479991315921 }, "geometry": { "type": "Point", "coordinates": [ 85.319918672218193, 27.634479991315921 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2429, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 101, "repvalue": 606000, "xcoord": 85.319806681206444, "ycoord": 27.634577054114079 }, "geometry": { "type": "Point", "coordinates": [ 85.319806681206444, 27.634577054114079 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2430, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 94, "repvalue": 564000, "xcoord": 85.319116683552608, "ycoord": 27.636340247069892 }, "geometry": { "type": "Point", "coordinates": [ 85.319116683552608, 27.636340247069892 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2431, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Ind", "fptarea": 87, "repvalue": 609000, "xcoord": 85.318992656797008, "ycoord": 27.637224521091255 }, "geometry": { "type": "Point", "coordinates": [ 85.318992656797008, 27.637224521091255 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2432, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 93, "repvalue": 651000, "xcoord": 85.319681159309468, "ycoord": 27.635559730857644 }, "geometry": { "type": "Point", "coordinates": [ 85.319681159309468, 27.635559730857644 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2433, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 105, "repvalue": 840000, "xcoord": 85.319584202068498, "ycoord": 27.634672777847705 }, "geometry": { "type": "Point", "coordinates": [ 85.319584202068498, 27.634672777847705 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2434, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 98, "repvalue": 490000, "xcoord": 85.31958119510486, "ycoord": 27.634869580968193 }, "geometry": { "type": "Point", "coordinates": [ 85.31958119510486, 27.634869580968193 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2435, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 103, "repvalue": 721000, "xcoord": 85.319791648134483, "ycoord": 27.635561069783783 }, "geometry": { "type": "Point", "coordinates": [ 85.319791648134483, 27.635561069783783 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2436, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+7s+Ind", "fptarea": 97, "repvalue": 679000, "xcoord": 85.319328639769225, "ycoord": 27.63693333492974 }, "geometry": { "type": "Point", "coordinates": [ 85.319328639769225, 27.63693333492974 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2437, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 105, "repvalue": 735000, "xcoord": 85.319564656259942, "ycoord": 27.635951998025632 }, "geometry": { "type": "Point", "coordinates": [ 85.319564656259942, 27.635951998025632 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2438, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 102, "repvalue": 816000, "xcoord": 85.319227173129491, "ycoord": 27.636341586480405 }, "geometry": { "type": "Point", "coordinates": [ 85.319227173129491, 27.636341586480405 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2439, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 90, "repvalue": 810000, "xcoord": 85.31968566960731, "ycoord": 27.635264526188898 }, "geometry": { "type": "Point", "coordinates": [ 85.31968566960731, 27.635264526188898 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2440, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 91, "repvalue": 728000, "xcoord": 85.319560145505818, "ycoord": 27.63624720264675 }, "geometry": { "type": "Point", "coordinates": [ 85.319560145505818, 27.63624720264675 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2441, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Ind", "fptarea": 99, "repvalue": 594000, "xcoord": 85.319346685384346, "ycoord": 27.635752516623171 }, "geometry": { "type": "Point", "coordinates": [ 85.319346685384346, 27.635752516623171 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2442, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 87, "repvalue": 609000, "xcoord": 85.319348189136065, "ycoord": 27.635654115088052 }, "geometry": { "type": "Point", "coordinates": [ 85.319348189136065, 27.635654115088052 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2443, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 92, "repvalue": 644000, "xcoord": 85.319336158908925, "ycoord": 27.636441327327766 }, "geometry": { "type": "Point", "coordinates": [ 85.319336158908925, 27.636441327327766 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2444, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 92, "repvalue": 552000, "xcoord": 85.319355707780275, "ycoord": 27.635162107390382 }, "geometry": { "type": "Point", "coordinates": [ 85.319355707780275, 27.635162107390382 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2445, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 97, "repvalue": 679000, "xcoord": 85.319358715184606, "ycoord": 27.634965304301009 }, "geometry": { "type": "Point", "coordinates": [ 85.319358715184606, 27.634965304301009 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2446, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 96, "repvalue": 672000, "xcoord": 85.319470706986294, "ycoord": 27.634868241905135 }, "geometry": { "type": "Point", "coordinates": [ 85.319470706986294, 27.634868241905135 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2447, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Ind", "fptarea": 98, "repvalue": 784000, "xcoord": 85.319551123791797, "ycoord": 27.636837611849231 }, "geometry": { "type": "Point", "coordinates": [ 85.319551123791797, 27.636837611849231 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2448, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 91, "repvalue": 819000, "xcoord": 85.319221157468476, "ycoord": 27.636735192548528 }, "geometry": { "type": "Point", "coordinates": [ 85.319221157468476, 27.636735192548528 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2449, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 85, "repvalue": 680000, "xcoord": 85.318773180263662, "ycoord": 27.637123440244924 }, "geometry": { "type": "Point", "coordinates": [ 85.318773180263662, 27.637123440244924 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2450, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 96, "repvalue": 768000, "xcoord": 85.319134730988793, "ycoord": 27.635159428791049 }, "geometry": { "type": "Point", "coordinates": [ 85.319134730988793, 27.635159428791049 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2451, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 97, "repvalue": 485000, "xcoord": 85.319469203394306, "ycoord": 27.634966643457595 }, "geometry": { "type": "Point", "coordinates": [ 85.319469203394306, 27.634966643457595 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2452, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 85, "repvalue": 680000, "xcoord": 85.319573677562403, "ycoord": 27.635361588743663 }, "geometry": { "type": "Point", "coordinates": [ 85.319573677562403, 27.635361588743663 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2453, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Ind", "fptarea": 90, "repvalue": 900000, "xcoord": 85.319784131312744, "ycoord": 27.636053077563425 }, "geometry": { "type": "Point", "coordinates": [ 85.319784131312744, 27.636053077563425 ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "bldid": 2454, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 103, "repvalue": 824000, "xcoord": 85.319006193983356, "ycoord": 27.636338907571414 }, "geometry": { "type": "Point", "coordinates": [ 85.319006193983356, 27.636338907571414 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 595, "nhouse": 9, "residents": 24, "specialfac": 0, "expstr": "RCi+MC+8s+Res", "fptarea": 76, "repvalue": 1216000, "xcoord": 85.322218968265219, "ycoord": 27.621177824339512 }, "geometry": { "type": "Point", "coordinates": [ 85.322218968265219, 27.621177824339512 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 596, "nhouse": 5, "residents": 16, "specialfac": 0, "expstr": "RCi+LC+3s+Res", "fptarea": 103, "repvalue": 618000, "xcoord": 85.320635640940864, "ycoord": 27.619393049658584 }, "geometry": { "type": "Point", "coordinates": [ 85.320635640940864, 27.619393049658584 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 597, "nhouse": 4, "residents": 13, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 124, "repvalue": 496000, "xcoord": 85.323204858491096, "ycoord": 27.621520799002298 }, "geometry": { "type": "Point", "coordinates": [ 85.323204858491096, 27.621520799002298 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 598, "nhouse": 13, "residents": 63, "specialfac": 0, "expstr": "RCi+LC+8s+Res", "fptarea": 112, "repvalue": 1792000, "xcoord": 85.321743692429152, "ycoord": 27.619847863978421 }, "geometry": { "type": "Point", "coordinates": [ 85.321743692429152, 27.619847863978421 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 599, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "RCi+MC+1s+Res", "fptarea": 74, "repvalue": 148000, "xcoord": 85.320990402063345, "ycoord": 27.620500852937969 }, "geometry": { "type": "Point", "coordinates": [ 85.320990402063345, 27.620500852937969 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 600, "nhouse": 9, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 95, "repvalue": 1140000, "xcoord": 85.32246670162472, "ycoord": 27.62118082072416 }, "geometry": { "type": "Point", "coordinates": [ 85.32246670162472, 27.62118082072416 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 601, "nhouse": 8, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 132, "repvalue": 1056000, "xcoord": 85.321621509916369, "ycoord": 27.619736034735048 }, "geometry": { "type": "Point", "coordinates": [ 85.321621509916369, 27.619736034735048 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 602, "nhouse": 8, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 125, "repvalue": 1750000, "xcoord": 85.323332087670536, "ycoord": 27.621301635190314 }, "geometry": { "type": "Point", "coordinates": [ 85.323332087670536, 27.621301635190314 ] } }, +{ "type": "Feature", "properties": { "zoneid": 64, "bldid": 603, "nhouse": 4, "residents": 16, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 85, "repvalue": 510000, "xcoord": 85.321108454798974, "ycoord": 27.621883406115785 }, "geometry": { "type": "Point", "coordinates": [ 85.321108454798974, 27.621883406115785 ] } }, +{ "type": "Feature", "properties": { "zoneid": 64, "bldid": 604, "nhouse": 4, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 126, "repvalue": 504000, "xcoord": 85.323178740047368, "ycoord": 27.622125782158214 }, "geometry": { "type": "Point", "coordinates": [ 85.323178740047368, 27.622125782158214 ] } }, +{ "type": "Feature", "properties": { "zoneid": 64, "bldid": 605, "nhouse": 9, "residents": 29, "specialfac": 0, "expstr": "RCi+LC+5s+Res", "fptarea": 126, "repvalue": 1260000, "xcoord": 85.322211210244646, "ycoord": 27.621570751728097 }, "geometry": { "type": "Point", "coordinates": [ 85.322211210244646, 27.621570751728097 ] } }, +{ "type": "Feature", "properties": { "zoneid": 64, "bldid": 606, "nhouse": 12, "residents": 56, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 116, "repvalue": 1624000, "xcoord": 85.32159801668449, "ycoord": 27.621780665049194 }, "geometry": { "type": "Point", "coordinates": [ 85.32159801668449, 27.621780665049194 ] } }, +{ "type": "Feature", "properties": { "zoneid": 64, "bldid": 607, "nhouse": 13, "residents": 54, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 109, "repvalue": 1744000, "xcoord": 85.320984820913324, "ycoord": 27.62199057554837 }, "geometry": { "type": "Point", "coordinates": [ 85.320984820913324, 27.62199057554837 ] } }, +{ "type": "Feature", "properties": { "zoneid": 64, "bldid": 608, "nhouse": 9, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 128, "repvalue": 1280000, "xcoord": 85.322087577746814, "ycoord": 27.621677922211916 }, "geometry": { "type": "Point", "coordinates": [ 85.322087577746814, 27.621677922211916 ] } }, +{ "type": "Feature", "properties": { "zoneid": 64, "bldid": 609, "nhouse": 4, "residents": 14, "specialfac": 0, "expstr": "RCi+MC+3s+Res", "fptarea": 112, "repvalue": 672000, "xcoord": 85.321485983735968, "ycoord": 27.621127313240116 }, "geometry": { "type": "Point", "coordinates": [ 85.321485983735968, 27.621127313240116 ] } }, +{ "type": "Feature", "properties": { "zoneid": 64, "bldid": 2237, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Com", "fptarea": 122, "repvalue": 1952000, "xcoord": 85.321347435087603, "ycoord": 27.622212296603276 }, "geometry": { "type": "Point", "coordinates": [ 85.321347435087603, 27.622212296603276 ] } }, +{ "type": "Feature", "properties": { "zoneid": 64, "bldid": 2238, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Com", "fptarea": 98, "repvalue": 980000, "xcoord": 85.321362351090301, "ycoord": 27.621234483074581 }, "geometry": { "type": "Point", "coordinates": [ 85.321362351090301, 27.621234483074581 ] } }, +{ "type": "Feature", "properties": { "zoneid": 64, "bldid": 2239, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Com", "fptarea": 101, "repvalue": 2020000, "xcoord": 85.321591388219503, "ycoord": 27.622215248876049 }, "geometry": { "type": "Point", "coordinates": [ 85.321591388219503, 27.622215248876049 ] } }, +{ "type": "Feature", "properties": { "zoneid": 65, "bldid": 610, "nhouse": 8, "residents": 36, "specialfac": 0, "expstr": "RCi+MC+5s+Res", "fptarea": 106, "repvalue": 1060000, "xcoord": 85.321065449429213, "ycoord": 27.623366368150126 }, "geometry": { "type": "Point", "coordinates": [ 85.321065449429213, 27.623366368150126 ] } }, +{ "type": "Feature", "properties": { "zoneid": 65, "bldid": 611, "nhouse": 7, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 119, "repvalue": 952000, "xcoord": 85.321924120115071, "ycoord": 27.62392851394981 }, "geometry": { "type": "Point", "coordinates": [ 85.321924120115071, 27.62392851394981 ] } }, +{ "type": "Feature", "properties": { "zoneid": 65, "bldid": 612, "nhouse": 4, "residents": 16, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 132, "repvalue": 528000, "xcoord": 85.3210805999814, "ycoord": 27.622373394125518 }, "geometry": { "type": "Point", "coordinates": [ 85.3210805999814, 27.622373394125518 ] } }, +{ "type": "Feature", "properties": { "zoneid": 65, "bldid": 613, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 117, "repvalue": 468000, "xcoord": 85.323536108632894, "ycoord": 27.623837657178711 }, "geometry": { "type": "Point", "coordinates": [ 85.323536108632894, 27.623837657178711 ] } }, +{ "type": "Feature", "properties": { "zoneid": 65, "bldid": 614, "nhouse": 4, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 86, "repvalue": 516000, "xcoord": 85.321078916624998, "ycoord": 27.6224837245801 }, "geometry": { "type": "Point", "coordinates": [ 85.321078916624998, 27.6224837245801 ] } }, +{ "type": "Feature", "properties": { "zoneid": 65, "bldid": 615, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 118, "repvalue": 472000, "xcoord": 85.321554193901846, "ycoord": 27.623813686885068 }, "geometry": { "type": "Point", "coordinates": [ 85.321554193901846, 27.623813686885068 ] } }, +{ "type": "Feature", "properties": { "zoneid": 65, "bldid": 616, "nhouse": 4, "residents": 14, "specialfac": 0, "expstr": "RCi+MC+3s+Res", "fptarea": 104, "repvalue": 624000, "xcoord": 85.322916760016525, "ycoord": 27.623830169501328 }, "geometry": { "type": "Point", "coordinates": [ 85.322916760016525, 27.623830169501328 ] } }, +{ "type": "Feature", "properties": { "zoneid": 65, "bldid": 617, "nhouse": 2, "residents": 5, "specialfac": 0, "expstr": "RCi+MC+2s+Res", "fptarea": 68, "repvalue": 272000, "xcoord": 85.323921162592441, "ycoord": 27.622959503661729 }, "geometry": { "type": "Point", "coordinates": [ 85.323921162592441, 27.622959503661729 ] } }, +{ "type": "Feature", "properties": { "zoneid": 65, "bldid": 618, "nhouse": 11, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 102, "repvalue": 1428000, "xcoord": 85.323671744245786, "ycoord": 27.623066840289397 }, "geometry": { "type": "Point", "coordinates": [ 85.323671744245786, 27.623066840289397 ] } }, +{ "type": "Feature", "properties": { "zoneid": 65, "bldid": 619, "nhouse": 8, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 80, "repvalue": 1120000, "xcoord": 85.321072183103652, "ycoord": 27.622925046379905 }, "geometry": { "type": "Point", "coordinates": [ 85.321072183103652, 27.622925046379905 ] } }, +{ "type": "Feature", "properties": { "zoneid": 65, "bldid": 620, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "RCi+MC+3s+Res", "fptarea": 73, "repvalue": 438000, "xcoord": 85.324038309615702, "ycoord": 27.623402322919492 }, "geometry": { "type": "Point", "coordinates": [ 85.324038309615702, 27.623402322919492 ] } }, +{ "type": "Feature", "properties": { "zoneid": 65, "bldid": 621, "nhouse": 9, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 104, "repvalue": 1248000, "xcoord": 85.324034948675944, "ycoord": 27.623622984129046 }, "geometry": { "type": "Point", "coordinates": [ 85.324034948675944, 27.623622984129046 ] } }, +{ "type": "Feature", "properties": { "zoneid": 65, "bldid": 622, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 103, "repvalue": 618000, "xcoord": 85.3236767866143, "ycoord": 27.622735848507407 }, "geometry": { "type": "Point", "coordinates": [ 85.3236767866143, 27.622735848507407 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 623, "nhouse": 7, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 55, "repvalue": 770000, "xcoord": 85.322811240235183, "ycoord": 27.628081683260461 }, "geometry": { "type": "Point", "coordinates": [ 85.322811240235183, 27.628081683260461 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 624, "nhouse": 11, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 85, "repvalue": 1190000, "xcoord": 85.323412044390693, "ycoord": 27.632780302113048 }, "geometry": { "type": "Point", "coordinates": [ 85.323412044390693, 27.632780302113048 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 625, "nhouse": 6, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 89, "repvalue": 712000, "xcoord": 85.321433156064728, "ycoord": 27.630260962180436 }, "geometry": { "type": "Point", "coordinates": [ 85.321433156064728, 27.630260962180436 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 626, "nhouse": 2, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 69, "repvalue": 276000, "xcoord": 85.322250996926769, "ycoord": 27.628074906638727 }, "geometry": { "type": "Point", "coordinates": [ 85.322250996926769, 27.628074906638727 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 627, "nhouse": 5, "residents": 20, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 92, "repvalue": 552000, "xcoord": 85.320606138050394, "ycoord": 27.633045795666241 }, "geometry": { "type": "Point", "coordinates": [ 85.320606138050394, 27.633045795666241 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 628, "nhouse": 17, "residents": 72, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 84, "repvalue": 1848000, "xcoord": 85.323056634279197, "ycoord": 27.626687225748277 }, "geometry": { "type": "Point", "coordinates": [ 85.323056634279197, 27.626687225748277 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 629, "nhouse": 28, "residents": 110, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 97, "repvalue": 2910000, "xcoord": 85.322725056773237, "ycoord": 27.626383767800622 }, "geometry": { "type": "Point", "coordinates": [ 85.322725056773237, 27.626383767800622 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 630, "nhouse": 9, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 88, "repvalue": 1056000, "xcoord": 85.320565697703927, "ycoord": 27.628353955832328 }, "geometry": { "type": "Point", "coordinates": [ 85.320565697703927, 27.628353955832328 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 631, "nhouse": 9, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 104, "repvalue": 1040000, "xcoord": 85.320309600521568, "ycoord": 27.630446989558582 }, "geometry": { "type": "Point", "coordinates": [ 85.320309600521568, 27.630446989558582 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 632, "nhouse": 26, "residents": 90, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 89, "repvalue": 2848000, "xcoord": 85.322831018401118, "ycoord": 27.626784313571768 }, "geometry": { "type": "Point", "coordinates": [ 85.322831018401118, 27.626784313571768 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 633, "nhouse": 5, "residents": 22, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 88, "repvalue": 528000, "xcoord": 85.319873590758291, "ycoord": 27.629643180097734 }, "geometry": { "type": "Point", "coordinates": [ 85.319873590758291, 27.629643180097734 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 634, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 59, "repvalue": 236000, "xcoord": 85.321410312601913, "ycoord": 27.631757925358603 }, "geometry": { "type": "Point", "coordinates": [ 85.321410312601913, 27.631757925358603 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 635, "nhouse": 7, "residents": 21, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 62, "repvalue": 744000, "xcoord": 85.319731052795419, "ycoord": 27.631637771803295 }, "geometry": { "type": "Point", "coordinates": [ 85.319731052795419, 27.631637771803295 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 636, "nhouse": 17, "residents": 66, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 54, "repvalue": 1836000, "xcoord": 85.319626623441948, "ycoord": 27.63113742677395 }, "geometry": { "type": "Point", "coordinates": [ 85.319626623441948, 27.63113742677395 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 637, "nhouse": 22, "residents": 107, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 96, "repvalue": 2496000, "xcoord": 85.323325852002526, "ycoord": 27.631082387553338 }, "geometry": { "type": "Point", "coordinates": [ 85.323325852002526, 27.631082387553338 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 638, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 89, "repvalue": 356000, "xcoord": 85.320635088245709, "ycoord": 27.631149643385065 }, "geometry": { "type": "Point", "coordinates": [ 85.320635088245709, 27.631149643385065 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 639, "nhouse": 12, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 85, "repvalue": 1360000, "xcoord": 85.323696985291875, "ycoord": 27.62879110504489 }, "geometry": { "type": "Point", "coordinates": [ 85.323696985291875, 27.62879110504489 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 640, "nhouse": 10, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 73, "repvalue": 1168000, "xcoord": 85.325944050523177, "ycoord": 27.628418984005592 }, "geometry": { "type": "Point", "coordinates": [ 85.325944050523177, 27.628418984005592 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 641, "nhouse": 7, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 72, "repvalue": 720000, "xcoord": 85.32171206753587, "ycoord": 27.626670961189141 }, "geometry": { "type": "Point", "coordinates": [ 85.32171206753587, 27.626670961189141 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 642, "nhouse": 8, "residents": 33, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 108, "repvalue": 864000, "xcoord": 85.323945411018585, "ycoord": 27.62719705021809 }, "geometry": { "type": "Point", "coordinates": [ 85.323945411018585, 27.62719705021809 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 643, "nhouse": 6, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 59, "repvalue": 708000, "xcoord": 85.321520842091417, "ycoord": 27.63185907924754 }, "geometry": { "type": "Point", "coordinates": [ 85.321520842091417, 27.63185907924754 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 644, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 58, "repvalue": 348000, "xcoord": 85.322438569905842, "ycoord": 27.630472760515559 }, "geometry": { "type": "Point", "coordinates": [ 85.322438569905842, 27.630472760515559 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 645, "nhouse": 10, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 79, "repvalue": 1106000, "xcoord": 85.319061790331645, "ycoord": 27.631430028863004 }, "geometry": { "type": "Point", "coordinates": [ 85.319061790331645, 27.631430028863004 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 646, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 103, "repvalue": 412000, "xcoord": 85.323055113139617, "ycoord": 27.626787023438673 }, "geometry": { "type": "Point", "coordinates": [ 85.323055113139617, 27.626787023438673 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 647, "nhouse": 8, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 81, "repvalue": 972000, "xcoord": 85.320750186951145, "ycoord": 27.630951405313812 }, "geometry": { "type": "Point", "coordinates": [ 85.320750186951145, 27.630951405313812 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 648, "nhouse": 8, "residents": 43, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 74, "repvalue": 888000, "xcoord": 85.321048259037781, "ycoord": 27.63345041333039 }, "geometry": { "type": "Point", "coordinates": [ 85.321048259037781, 27.63345041333039 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 649, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 55, "repvalue": 330000, "xcoord": 85.322983610756552, "ycoord": 27.631477513179785 }, "geometry": { "type": "Point", "coordinates": [ 85.322983610756552, 27.631477513179785 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 650, "nhouse": 14, "residents": 59, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 107, "repvalue": 1498000, "xcoord": 85.319832434142043, "ycoord": 27.632337711653847 }, "geometry": { "type": "Point", "coordinates": [ 85.319832434142043, 27.632337711653847 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 651, "nhouse": 12, "residents": 60, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 93, "repvalue": 1302000, "xcoord": 85.324937127536245, "ycoord": 27.628307009332961 }, "geometry": { "type": "Point", "coordinates": [ 85.324937127536245, 27.628307009332961 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 652, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 80, "repvalue": 320000, "xcoord": 85.325162744945388, "ycoord": 27.628209918158241 }, "geometry": { "type": "Point", "coordinates": [ 85.325162744945388, 27.628209918158241 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 653, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 90, "repvalue": 360000, "xcoord": 85.319500849799269, "ycoord": 27.632034245869356 }, "geometry": { "type": "Point", "coordinates": [ 85.319500849799269, 27.632034245869356 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 654, "nhouse": 9, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 58, "repvalue": 928000, "xcoord": 85.323194022981454, "ycoord": 27.632378401830486 }, "geometry": { "type": "Point", "coordinates": [ 85.323194022981454, 27.632378401830486 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 655, "nhouse": 21, "residents": 81, "specialfac": 0, "expstr": "RCi+HC+19s+Res", "fptarea": 58, "repvalue": 2204000, "xcoord": 85.323721315342809, "ycoord": 27.627194341752492 }, "geometry": { "type": "Point", "coordinates": [ 85.323721315342809, 27.627194341752492 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 656, "nhouse": 4, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 80, "repvalue": 480000, "xcoord": 85.320087022714603, "ycoord": 27.630344477441174 }, "geometry": { "type": "Point", "coordinates": [ 85.320087022714603, 27.630344477441174 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 657, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 75, "repvalue": 150000, "xcoord": 85.32038660272778, "ycoord": 27.632743688884577 }, "geometry": { "type": "Point", "coordinates": [ 85.32038660272778, 27.632743688884577 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 658, "nhouse": 19, "residents": 86, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 88, "repvalue": 1936000, "xcoord": 85.325610940795599, "ycoord": 27.628215330253145 }, "geometry": { "type": "Point", "coordinates": [ 85.325610940795599, 27.628215330253145 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 659, "nhouse": 9, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 85, "repvalue": 1020000, "xcoord": 85.320541320664859, "ycoord": 27.629950716270994 }, "geometry": { "type": "Point", "coordinates": [ 85.320541320664859, 27.629950716270994 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 660, "nhouse": 6, "residents": 31, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 80, "repvalue": 640000, "xcoord": 85.32457818200271, "ycoord": 27.629799914786275 }, "geometry": { "type": "Point", "coordinates": [ 85.32457818200271, 27.629799914786275 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 661, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 59, "repvalue": 354000, "xcoord": 85.321645076386247, "ycoord": 27.631062055114146 }, "geometry": { "type": "Point", "coordinates": [ 85.321645076386247, 27.631062055114146 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 662, "nhouse": 10, "residents": 54, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 92, "repvalue": 1104000, "xcoord": 85.320055015619644, "ycoord": 27.632440224320479 }, "geometry": { "type": "Point", "coordinates": [ 85.320055015619644, 27.632440224320479 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 663, "nhouse": 6, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 92, "repvalue": 736000, "xcoord": 85.319190616336456, "ycoord": 27.630333615341613 }, "geometry": { "type": "Point", "coordinates": [ 85.319190616336456, 27.630333615341613 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 664, "nhouse": 9, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 81, "repvalue": 972000, "xcoord": 85.325258081977083, "ycoord": 27.629309046836127 }, "geometry": { "type": "Point", "coordinates": [ 85.325258081977083, 27.629309046836127 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 665, "nhouse": 21, "residents": 89, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 76, "repvalue": 2280000, "xcoord": 85.323044464943564, "ycoord": 27.627485607229048 }, "geometry": { "type": "Point", "coordinates": [ 85.323044464943564, 27.627485607229048 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 666, "nhouse": 8, "residents": 29, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 59, "repvalue": 826000, "xcoord": 85.322952193095745, "ycoord": 27.626186882419685 }, "geometry": { "type": "Point", "coordinates": [ 85.322952193095745, 27.626186882419685 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 667, "nhouse": 21, "residents": 77, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 106, "repvalue": 2332000, "xcoord": 85.323594060454099, "ycoord": 27.628190964430029 }, "geometry": { "type": "Point", "coordinates": [ 85.323594060454099, 27.628190964430029 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 668, "nhouse": 10, "residents": 47, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 79, "repvalue": 1106000, "xcoord": 85.321784533513593, "ycoord": 27.62926705488881 }, "geometry": { "type": "Point", "coordinates": [ 85.321784533513593, 27.62926705488881 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 669, "nhouse": 12, "residents": 47, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 87, "repvalue": 1218000, "xcoord": 85.323181851703779, "ycoord": 27.633176782712503 }, "geometry": { "type": "Point", "coordinates": [ 85.323181851703779, 27.633176782712503 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 670, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 61, "repvalue": 244000, "xcoord": 85.322405085319048, "ycoord": 27.632668307460001 }, "geometry": { "type": "Point", "coordinates": [ 85.322405085319048, 27.632668307460001 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 671, "nhouse": 4, "residents": 14, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 99, "repvalue": 396000, "xcoord": 85.324208582801973, "ycoord": 27.631991402324552 }, "geometry": { "type": "Point", "coordinates": [ 85.324208582801973, 27.631991402324552 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 672, "nhouse": 12, "residents": 51, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 92, "repvalue": 1288000, "xcoord": 85.322600837433029, "ycoord": 27.627180793998043 }, "geometry": { "type": "Point", "coordinates": [ 85.322600837433029, 27.627180793998043 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 673, "nhouse": 5, "residents": 16, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 64, "repvalue": 512000, "xcoord": 85.321431633222019, "ycoord": 27.630360759736238 }, "geometry": { "type": "Point", "coordinates": [ 85.321431633222019, 27.630360759736238 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 674, "nhouse": 4, "residents": 11, "specialfac": 0, "expstr": "BrCri+MC+3s+Res", "fptarea": 61, "repvalue": 366000, "xcoord": 85.32253388030135, "ycoord": 27.631571889603915 }, "geometry": { "type": "Point", "coordinates": [ 85.32253388030135, 27.631571889603915 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 675, "nhouse": 9, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 60, "repvalue": 960000, "xcoord": 85.320206693266996, "ycoord": 27.629846847317324 }, "geometry": { "type": "Point", "coordinates": [ 85.320206693266996, 27.629846847317324 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 676, "nhouse": 4, "residents": 12, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 104, "repvalue": 416000, "xcoord": 85.320972766632849, "ycoord": 27.631053916439779 }, "geometry": { "type": "Point", "coordinates": [ 85.320972766632849, 27.631053916439779 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 677, "nhouse": 12, "residents": 48, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 62, "repvalue": 1364000, "xcoord": 85.324272434102113, "ycoord": 27.627799898689684 }, "geometry": { "type": "Point", "coordinates": [ 85.324272434102113, 27.627799898689684 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 678, "nhouse": 8, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 83, "repvalue": 996000, "xcoord": 85.324152784497812, "ycoord": 27.628297533378532 }, "geometry": { "type": "Point", "coordinates": [ 85.324152784497812, 27.628297533378532 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 679, "nhouse": 9, "residents": 30, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 79, "repvalue": 1106000, "xcoord": 85.319971923540962, "ycoord": 27.630542714953506 }, "geometry": { "type": "Point", "coordinates": [ 85.319971923540962, 27.630542714953506 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 680, "nhouse": 15, "residents": 60, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 85, "repvalue": 1700000, "xcoord": 85.323545392599513, "ycoord": 27.631384489960087 }, "geometry": { "type": "Point", "coordinates": [ 85.323545392599513, 27.631384489960087 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 681, "nhouse": 15, "residents": 63, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 73, "repvalue": 1606000, "xcoord": 85.322200768122258, "ycoord": 27.631368227601989 }, "geometry": { "type": "Point", "coordinates": [ 85.322200768122258, 27.631368227601989 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 682, "nhouse": 3, "residents": 15, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 97, "repvalue": 388000, "xcoord": 85.323772538357872, "ycoord": 27.631187603763614 }, "geometry": { "type": "Point", "coordinates": [ 85.323772538357872, 27.631187603763614 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 683, "nhouse": 14, "residents": 62, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 100, "repvalue": 1600000, "xcoord": 85.322757984755796, "ycoord": 27.631574600381633 }, "geometry": { "type": "Point", "coordinates": [ 85.322757984755796, 27.631574600381633 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 684, "nhouse": 12, "residents": 49, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 56, "repvalue": 1344000, "xcoord": 85.322609966777421, "ycoord": 27.626582008006562 }, "geometry": { "type": "Point", "coordinates": [ 85.322609966777421, 27.626582008006562 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 685, "nhouse": 11, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 95, "repvalue": 1140000, "xcoord": 85.320491036688168, "ycoord": 27.633244033451732 }, "geometry": { "type": "Point", "coordinates": [ 85.320491036688168, 27.633244033451732 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 686, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "BrCfl+MC+2s+Res", "fptarea": 81, "repvalue": 324000, "xcoord": 85.323939329505691, "ycoord": 27.627596241123246 }, "geometry": { "type": "Point", "coordinates": [ 85.323939329505691, 27.627596241123246 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 687, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 60, "repvalue": 240000, "xcoord": 85.323771017577116, "ycoord": 27.631287401425926 }, "geometry": { "type": "Point", "coordinates": [ 85.323771017577116, 27.631287401425926 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 688, "nhouse": 6, "residents": 20, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 104, "repvalue": 624000, "xcoord": 85.321298260261614, "ycoord": 27.631756568918032 }, "geometry": { "type": "Point", "coordinates": [ 85.321298260261614, 27.631756568918032 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 689, "nhouse": 20, "residents": 72, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 75, "repvalue": 2100000, "xcoord": 85.322509528497761, "ycoord": 27.63316865091581 }, "geometry": { "type": "Point", "coordinates": [ 85.322509528497761, 27.63316865091581 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 690, "nhouse": 1, "residents": 6, "specialfac": 0, "expstr": "BrCfl+MC+1s+Res", "fptarea": 95, "repvalue": 190000, "xcoord": 85.323177807622784, "ycoord": 27.626089794331907 }, "geometry": { "type": "Point", "coordinates": [ 85.323177807622784, 27.626089794331907 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 691, "nhouse": 6, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 90, "repvalue": 720000, "xcoord": 85.320535226091749, "ycoord": 27.630349906320102 }, "geometry": { "type": "Point", "coordinates": [ 85.320535226091749, 27.630349906320102 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 692, "nhouse": 26, "residents": 96, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 101, "repvalue": 2828000, "xcoord": 85.324694792069096, "ycoord": 27.629501875292608 }, "geometry": { "type": "Point", "coordinates": [ 85.324694792069096, 27.629501875292608 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 693, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 94, "repvalue": 188000, "xcoord": 85.324366241980997, "ycoord": 27.62899882535789 }, "geometry": { "type": "Point", "coordinates": [ 85.324366241980997, 27.62899882535789 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 694, "nhouse": 9, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 71, "repvalue": 994000, "xcoord": 85.325262639866949, "ycoord": 27.629009653531067 }, "geometry": { "type": "Point", "coordinates": [ 85.325262639866949, 27.629009653531067 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 695, "nhouse": 6, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 67, "repvalue": 670000, "xcoord": 85.32197666415226, "ycoord": 27.63136551594258 }, "geometry": { "type": "Point", "coordinates": [ 85.32197666415226, 27.63136551594258 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 696, "nhouse": 8, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 88, "repvalue": 880000, "xcoord": 85.322497919638579, "ycoord": 27.626580652768006 }, "geometry": { "type": "Point", "coordinates": [ 85.322497919638579, 27.626580652768006 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 697, "nhouse": 11, "residents": 54, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 99, "repvalue": 1188000, "xcoord": 85.3202112650049, "ycoord": 27.629547454811604 }, "geometry": { "type": "Point", "coordinates": [ 85.3202112650049, 27.629547454811604 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 698, "nhouse": 7, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 77, "repvalue": 770000, "xcoord": 85.323318246028776, "ycoord": 27.631581375742936 }, "geometry": { "type": "Point", "coordinates": [ 85.323318246028776, 27.631581375742936 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 699, "nhouse": 9, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 67, "repvalue": 938000, "xcoord": 85.322764071581332, "ycoord": 27.63117540994735 }, "geometry": { "type": "Point", "coordinates": [ 85.322764071581332, 27.63117540994735 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 700, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 95, "repvalue": 190000, "xcoord": 85.31962357435836, "ycoord": 27.631337021673552 }, "geometry": { "type": "Point", "coordinates": [ 85.31962357435836, 27.631337021673552 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 701, "nhouse": 6, "residents": 29, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 57, "repvalue": 684000, "xcoord": 85.321169452702634, "ycoord": 27.632852985041918 }, "geometry": { "type": "Point", "coordinates": [ 85.321169452702634, 27.632852985041918 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 702, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 61, "repvalue": 122000, "xcoord": 85.3218965833467, "ycoord": 27.629268410824491 }, "geometry": { "type": "Point", "coordinates": [ 85.3218965833467, 27.629268410824491 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 703, "nhouse": 7, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 59, "repvalue": 826000, "xcoord": 85.324905215582376, "ycoord": 27.630402762045041 }, "geometry": { "type": "Point", "coordinates": [ 85.324905215582376, 27.630402762045041 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 704, "nhouse": 4, "residents": 15, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 78, "repvalue": 468000, "xcoord": 85.323864820821512, "ycoord": 27.632486327745934 }, "geometry": { "type": "Point", "coordinates": [ 85.323864820821512, 27.632486327745934 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 705, "nhouse": 12, "residents": 48, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 84, "repvalue": 1344000, "xcoord": 85.324711509744404, "ycoord": 27.628404100121543 }, "geometry": { "type": "Point", "coordinates": [ 85.324711509744404, 27.628404100121543 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 706, "nhouse": 14, "residents": 59, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 54, "repvalue": 1512000, "xcoord": 85.323703067992255, "ycoord": 27.62839191425812 }, "geometry": { "type": "Point", "coordinates": [ 85.323703067992255, 27.62839191425812 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 707, "nhouse": 3, "residents": 8, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 64, "repvalue": 384000, "xcoord": 85.320103786956651, "ycoord": 27.629246704999847 }, "geometry": { "type": "Point", "coordinates": [ 85.320103786956651, 27.629246704999847 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 708, "nhouse": 10, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 85, "repvalue": 1020000, "xcoord": 85.322276287163547, "ycoord": 27.633764724916606 }, "geometry": { "type": "Point", "coordinates": [ 85.322276287163547, 27.633764724916606 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 709, "nhouse": 9, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 71, "repvalue": 994000, "xcoord": 85.322334128928034, "ycoord": 27.629972416947979 }, "geometry": { "type": "Point", "coordinates": [ 85.322334128928034, 27.629972416947979 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 710, "nhouse": 4, "residents": 13, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 63, "repvalue": 504000, "xcoord": 85.324484371609429, "ycoord": 27.628600988261439 }, "geometry": { "type": "Point", "coordinates": [ 85.324484371609429, 27.628600988261439 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 711, "nhouse": 8, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 57, "repvalue": 912000, "xcoord": 85.321837205573445, "ycoord": 27.633160515862432 }, "geometry": { "type": "Point", "coordinates": [ 85.321837205573445, 27.633160515862432 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 712, "nhouse": 4, "residents": 18, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 83, "repvalue": 498000, "xcoord": 85.324357121257293, "ycoord": 27.629597611680222 }, "geometry": { "type": "Point", "coordinates": [ 85.324357121257293, 27.629597611680222 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 713, "nhouse": 7, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 72, "repvalue": 864000, "xcoord": 85.322223600453512, "ycoord": 27.629871263732134 }, "geometry": { "type": "Point", "coordinates": [ 85.322223600453512, 27.629871263732134 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 714, "nhouse": 18, "residents": 71, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 69, "repvalue": 1932000, "xcoord": 85.323065760952431, "ycoord": 27.626088439574136 }, "geometry": { "type": "Point", "coordinates": [ 85.323065760952431, 27.626088439574136 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 715, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 97, "repvalue": 194000, "xcoord": 85.323443988004925, "ycoord": 27.630684551723846 }, "geometry": { "type": "Point", "coordinates": [ 85.323443988004925, 27.630684551723846 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 716, "nhouse": 17, "residents": 70, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 62, "repvalue": 1860000, "xcoord": 85.323813596482722, "ycoord": 27.628493066309407 }, "geometry": { "type": "Point", "coordinates": [ 85.323813596482722, 27.628493066309407 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 717, "nhouse": 21, "residents": 87, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 84, "repvalue": 2688000, "xcoord": 85.323936288702342, "ycoord": 27.627795836566726 }, "geometry": { "type": "Point", "coordinates": [ 85.323936288702342, 27.627795836566726 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 718, "nhouse": 2, "residents": 5, "specialfac": 0, "expstr": "RCi+MC+1s+Res", "fptarea": 122, "repvalue": 244000, "xcoord": 85.323389348838589, "ycoord": 27.619491223391666 }, "geometry": { "type": "Point", "coordinates": [ 85.323389348838589, 27.619491223391666 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 719, "nhouse": 7, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 98, "repvalue": 980000, "xcoord": 85.324131078044715, "ycoord": 27.62051198048886 }, "geometry": { "type": "Point", "coordinates": [ 85.324131078044715, 27.62051198048886 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 720, "nhouse": 10, "residents": 37, "specialfac": 0, "expstr": "RCi+MC+7s+Res", "fptarea": 99, "repvalue": 1386000, "xcoord": 85.320389977845977, "ycoord": 27.61754377296214 }, "geometry": { "type": "Point", "coordinates": [ 85.320389977845977, 27.61754377296214 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 721, "nhouse": 7, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 110, "repvalue": 880000, "xcoord": 85.321259568443523, "ycoord": 27.618453671076729 }, "geometry": { "type": "Point", "coordinates": [ 85.321259568443523, 27.618453671076729 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 722, "nhouse": 12, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 98, "repvalue": 1568000, "xcoord": 85.320383116604191, "ycoord": 27.617993375603351 }, "geometry": { "type": "Point", "coordinates": [ 85.320383116604191, 27.617993375603351 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 723, "nhouse": 4, "residents": 21, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 91, "repvalue": 546000, "xcoord": 85.322151449885524, "ycoord": 27.617902354544004 }, "geometry": { "type": "Point", "coordinates": [ 85.322151449885524, 27.617902354544004 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 724, "nhouse": 21, "residents": 88, "specialfac": 0, "expstr": "RCi+LC+13s+Res", "fptarea": 106, "repvalue": 2756000, "xcoord": 85.32127499826214, "ycoord": 27.617442064702402 }, "geometry": { "type": "Point", "coordinates": [ 85.32127499826214, 27.617442064702402 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 725, "nhouse": 6, "residents": 33, "specialfac": 0, "expstr": "RCi+MC+4s+Res", "fptarea": 133, "repvalue": 1064000, "xcoord": 85.320893009309486, "ycoord": 27.617662284317419 }, "geometry": { "type": "Point", "coordinates": [ 85.320893009309486, 27.617662284317419 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 2240, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Com", "fptarea": 137, "repvalue": 1644000, "xcoord": 85.323033046970878, "ycoord": 27.61802543672388 }, "geometry": { "type": "Point", "coordinates": [ 85.323033046970878, 27.61802543672388 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 726, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 87, "repvalue": 348000, "xcoord": 85.315841521405645, "ycoord": 27.623629730095821 }, "geometry": { "type": "Point", "coordinates": [ 85.315841521405645, 27.623629730095821 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 727, "nhouse": 16, "residents": 70, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 66, "repvalue": 1716000, "xcoord": 85.315695562868527, "ycoord": 27.624565888866723 }, "geometry": { "type": "Point", "coordinates": [ 85.315695562868527, 27.624565888866723 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 728, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 59, "repvalue": 118000, "xcoord": 85.316358969193587, "ycoord": 27.62422221952912 }, "geometry": { "type": "Point", "coordinates": [ 85.316358969193587, 27.62422221952912 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 729, "nhouse": 24, "residents": 115, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 93, "repvalue": 2604000, "xcoord": 85.3148084374902, "ycoord": 27.622327526450899 }, "geometry": { "type": "Point", "coordinates": [ 85.3148084374902, 27.622327526450899 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 730, "nhouse": 4, "residents": 22, "specialfac": 0, "expstr": "BrM+LC+3s+Res", "fptarea": 82, "repvalue": 492000, "xcoord": 85.314397470099408, "ycoord": 27.623377704998752 }, "geometry": { "type": "Point", "coordinates": [ 85.314397470099408, 27.623377704998752 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 731, "nhouse": 8, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 62, "repvalue": 868000, "xcoord": 85.315172732606513, "ycoord": 27.624325055802842 }, "geometry": { "type": "Point", "coordinates": [ 85.315172732606513, 27.624325055802842 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 732, "nhouse": 5, "residents": 15, "specialfac": 0, "expstr": "BrM+LC+3s+Res", "fptarea": 90, "repvalue": 540000, "xcoord": 85.314017027837494, "ycoord": 27.622435150021825 }, "geometry": { "type": "Point", "coordinates": [ 85.314017027837494, 27.622435150021825 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 733, "nhouse": 1, "residents": 7, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 58, "repvalue": 116000, "xcoord": 85.316220189326401, "ycoord": 27.624689500423209 }, "geometry": { "type": "Point", "coordinates": [ 85.316220189326401, 27.624689500423209 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 734, "nhouse": 5, "residents": 19, "specialfac": 0, "expstr": "BrM+LC+3s+Res", "fptarea": 96, "repvalue": 576000, "xcoord": 85.316867456698716, "ycoord": 27.625400805545912 }, "geometry": { "type": "Point", "coordinates": [ 85.316867456698716, 27.625400805545912 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 735, "nhouse": 5, "residents": 19, "specialfac": 0, "expstr": "BrM+LC+3s+Res", "fptarea": 96, "repvalue": 576000, "xcoord": 85.316090378056401, "ycoord": 27.624570682997394 }, "geometry": { "type": "Point", "coordinates": [ 85.316090378056401, 27.624570682997394 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 736, "nhouse": 1, "residents": 5, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 91, "repvalue": 182000, "xcoord": 85.313067058427734, "ycoord": 27.62429946041178 }, "geometry": { "type": "Point", "coordinates": [ 85.313067058427734, 27.62429946041178 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 737, "nhouse": 18, "residents": 77, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 99, "repvalue": 1980000, "xcoord": 85.31687462934994, "ycoord": 27.624931926898054 }, "geometry": { "type": "Point", "coordinates": [ 85.31687462934994, 27.624931926898054 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 738, "nhouse": 5, "residents": 25, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 71, "repvalue": 568000, "xcoord": 85.314640927349586, "ycoord": 27.624670318565553 }, "geometry": { "type": "Point", "coordinates": [ 85.314640927349586, 27.624670318565553 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 739, "nhouse": 4, "residents": 13, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 96, "repvalue": 384000, "xcoord": 85.31558907989286, "ycoord": 27.622923216064127 }, "geometry": { "type": "Point", "coordinates": [ 85.31558907989286, 27.622923216064127 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 740, "nhouse": 17, "residents": 72, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 96, "repvalue": 1920000, "xcoord": 85.314653495585617, "ycoord": 27.62384978176496 }, "geometry": { "type": "Point", "coordinates": [ 85.314653495585617, 27.62384978176496 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 741, "nhouse": 16, "residents": 66, "specialfac": 0, "expstr": "RCi+HC+9s+Res", "fptarea": 97, "repvalue": 1746000, "xcoord": 85.315298952983582, "ycoord": 27.624678313189534 }, "geometry": { "type": "Point", "coordinates": [ 85.315298952983582, 27.624678313189534 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 742, "nhouse": 2, "residents": 13, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 78, "repvalue": 312000, "xcoord": 85.314648109263814, "ycoord": 27.624201440406317 }, "geometry": { "type": "Point", "coordinates": [ 85.314648109263814, 27.624201440406317 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 743, "nhouse": 5, "residents": 24, "specialfac": 0, "expstr": "BrM+MC+3s+Res", "fptarea": 93, "repvalue": 558000, "xcoord": 85.31518529669377, "ycoord": 27.623504518736429 }, "geometry": { "type": "Point", "coordinates": [ 85.31518529669377, 27.623504518736429 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 744, "nhouse": 9, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 99, "repvalue": 990000, "xcoord": 85.315828962143897, "ycoord": 27.624450267424955 }, "geometry": { "type": "Point", "coordinates": [ 85.315828962143897, 27.624450267424955 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 745, "nhouse": 9, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 102, "repvalue": 1020000, "xcoord": 85.315836138929924, "ycoord": 27.62398138896371 }, "geometry": { "type": "Point", "coordinates": [ 85.315836138929924, 27.62398138896371 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 746, "nhouse": 32, "residents": 128, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 107, "repvalue": 3424000, "xcoord": 85.315571135777262, "ycoord": 27.624095412184136 }, "geometry": { "type": "Point", "coordinates": [ 85.315571135777262, 27.624095412184136 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 747, "nhouse": 3, "residents": 6, "specialfac": 0, "expstr": "BrM+LC+3s+Res", "fptarea": 65, "repvalue": 390000, "xcoord": 85.315311516318175, "ycoord": 27.623857776111521 }, "geometry": { "type": "Point", "coordinates": [ 85.315311516318175, 27.623857776111521 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 748, "nhouse": 26, "residents": 97, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 107, "repvalue": 2782000, "xcoord": 85.316615005064406, "ycoord": 27.624694293080523 }, "geometry": { "type": "Point", "coordinates": [ 85.316615005064406, 27.624694293080523 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 749, "nhouse": 1, "residents": 5, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 106, "repvalue": 212000, "xcoord": 85.313730470605464, "ycoord": 27.623955803933757 }, "geometry": { "type": "Point", "coordinates": [ 85.313730470605464, 27.623955803933757 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 750, "nhouse": 12, "residents": 47, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 70, "repvalue": 1400000, "xcoord": 85.313867463571853, "ycoord": 27.62360574542264 }, "geometry": { "type": "Point", "coordinates": [ 85.313867463571853, 27.62360574542264 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 751, "nhouse": 2, "residents": 14, "specialfac": 0, "expstr": "BrM+LC+2s+Res", "fptarea": 69, "repvalue": 276000, "xcoord": 85.316350000876497, "ycoord": 27.624808317738005 }, "geometry": { "type": "Point", "coordinates": [ 85.316350000876497, 27.624808317738005 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 752, "nhouse": 7, "residents": 27, "specialfac": 0, "expstr": "BrM+LC+4s+Res", "fptarea": 99, "repvalue": 792000, "xcoord": 85.314136058981632, "ycoord": 27.623257286423321 }, "geometry": { "type": "Point", "coordinates": [ 85.314136058981632, 27.623257286423321 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 753, "nhouse": 14, "residents": 52, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 93, "repvalue": 1488000, "xcoord": 85.316743023791346, "ycoord": 27.62493032970406 }, "geometry": { "type": "Point", "coordinates": [ 85.316743023791346, 27.62493032970406 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 754, "nhouse": 8, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 90, "repvalue": 900000, "xcoord": 85.315035742697447, "ycoord": 27.624675115714226 }, "geometry": { "type": "Point", "coordinates": [ 85.315035742697447, 27.624675115714226 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 755, "nhouse": 6, "residents": 30, "specialfac": 0, "expstr": "BrM+LC+3s+Res", "fptarea": 105, "repvalue": 630000, "xcoord": 85.313982901986691, "ycoord": 27.624662320822583 }, "geometry": { "type": "Point", "coordinates": [ 85.313982901986691, 27.624662320822583 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 756, "nhouse": 5, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 79, "repvalue": 632000, "xcoord": 85.316218395501267, "ycoord": 27.624806720052881 }, "geometry": { "type": "Point", "coordinates": [ 85.316218395501267, 27.624806720052881 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 757, "nhouse": 2, "residents": 11, "specialfac": 0, "expstr": "BrM+LC+2s+Res", "fptarea": 88, "repvalue": 352000, "xcoord": 85.313216632521559, "ycoord": 27.623128866408422 }, "geometry": { "type": "Point", "coordinates": [ 85.313216632521559, 27.623128866408422 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 758, "nhouse": 15, "residents": 68, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 100, "repvalue": 1600000, "xcoord": 85.313344642145935, "ycoord": 27.623364905814725 }, "geometry": { "type": "Point", "coordinates": [ 85.313344642145935, 27.623364905814725 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 759, "nhouse": 27, "residents": 114, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 102, "repvalue": 2856000, "xcoord": 85.315863050333391, "ycoord": 27.622223094436325 }, "geometry": { "type": "Point", "coordinates": [ 85.315863050333391, 27.622223094436325 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 760, "nhouse": 4, "residents": 11, "specialfac": 0, "expstr": "BrM+LC+2s+Res", "fptarea": 99, "repvalue": 396000, "xcoord": 85.312948034635568, "ycoord": 27.623477323516742 }, "geometry": { "type": "Point", "coordinates": [ 85.312948034635568, 27.623477323516742 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 761, "nhouse": 15, "residents": 66, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 106, "repvalue": 1696000, "xcoord": 85.314774327809488, "ycoord": 27.624554698195265 }, "geometry": { "type": "Point", "coordinates": [ 85.314774327809488, 27.624554698195265 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 762, "nhouse": 12, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 67, "repvalue": 1340000, "xcoord": 85.313461872124719, "ycoord": 27.624304261980381 }, "geometry": { "type": "Point", "coordinates": [ 85.313461872124719, 27.624304261980381 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 763, "nhouse": 8, "residents": 37, "specialfac": 0, "expstr": "BrM+LC+4s+Res", "fptarea": 106, "repvalue": 848000, "xcoord": 85.316622178576083, "ycoord": 27.624225414445885 }, "geometry": { "type": "Point", "coordinates": [ 85.316622178576083, 27.624225414445885 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 764, "nhouse": 1, "residents": 6, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 70, "repvalue": 140000, "xcoord": 85.314768941712629, "ycoord": 27.624906356822805 }, "geometry": { "type": "Point", "coordinates": [ 85.314768941712629, 27.624906356822805 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 765, "nhouse": 5, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 79, "repvalue": 632000, "xcoord": 85.315432352797458, "ycoord": 27.624562692155823 }, "geometry": { "type": "Point", "coordinates": [ 85.315432352797458, 27.624562692155823 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 766, "nhouse": 5, "residents": 20, "specialfac": 0, "expstr": "BrM+LC+3s+Res", "fptarea": 105, "repvalue": 630000, "xcoord": 85.314386695937984, "ycoord": 27.624081022217663 }, "geometry": { "type": "Point", "coordinates": [ 85.314386695937984, 27.624081022217663 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 767, "nhouse": 4, "residents": 16, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 65, "repvalue": 520000, "xcoord": 85.313880037006143, "ycoord": 27.622785208823483 }, "geometry": { "type": "Point", "coordinates": [ 85.313880037006143, 27.622785208823483 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 768, "nhouse": 4, "residents": 14, "specialfac": 0, "expstr": "BrM+LC+3s+Res", "fptarea": 85, "repvalue": 510000, "xcoord": 85.315053692956525, "ycoord": 27.62350292001565 }, "geometry": { "type": "Point", "coordinates": [ 85.315053692956525, 27.62350292001565 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 769, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 71, "repvalue": 142000, "xcoord": 85.313862074794415, "ycoord": 27.623957403933801 }, "geometry": { "type": "Point", "coordinates": [ 85.313862074794415, 27.623957403933801 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 770, "nhouse": 4, "residents": 16, "specialfac": 0, "expstr": "BrM+LC+3s+Res", "fptarea": 74, "repvalue": 444000, "xcoord": 85.316741230504732, "ycoord": 27.625047549361238 }, "geometry": { "type": "Point", "coordinates": [ 85.316741230504732, 27.625047549361238 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 771, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 72, "repvalue": 432000, "xcoord": 85.315289978847957, "ycoord": 27.625264411039737 }, "geometry": { "type": "Point", "coordinates": [ 85.315289978847957, 27.625264411039737 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 772, "nhouse": 12, "residents": 51, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 107, "repvalue": 1284000, "xcoord": 85.312940845699671, "ycoord": 27.623946201313661 }, "geometry": { "type": "Point", "coordinates": [ 85.312940845699671, 27.623946201313661 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 773, "nhouse": 4, "residents": 13, "specialfac": 0, "expstr": "BrM+LC+3s+Res", "fptarea": 79, "repvalue": 474000, "xcoord": 85.314242520236874, "ycoord": 27.624899959313552 }, "geometry": { "type": "Point", "coordinates": [ 85.314242520236874, 27.624899959313552 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 774, "nhouse": 9, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 72, "repvalue": 1008000, "xcoord": 85.315046512982988, "ycoord": 27.623971798320156 }, "geometry": { "type": "Point", "coordinates": [ 85.315046512982988, 27.623971798320156 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 775, "nhouse": 6, "residents": 23, "specialfac": 0, "expstr": "BrM+LC+3s+Res", "fptarea": 108, "repvalue": 648000, "xcoord": 85.315071642131528, "ycoord": 27.622330724108185 }, "geometry": { "type": "Point", "coordinates": [ 85.315071642131528, 27.622330724108185 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 776, "nhouse": 5, "residents": 20, "specialfac": 0, "expstr": "BrM+LC+3s+Res", "fptarea": 86, "repvalue": 516000, "xcoord": 85.314658881809848, "ycoord": 27.623498123104792 }, "geometry": { "type": "Point", "coordinates": [ 85.314658881809848, 27.623498123104792 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 777, "nhouse": 7, "residents": 25, "specialfac": 0, "expstr": "BrM+LC+4s+Res", "fptarea": 91, "repvalue": 728000, "xcoord": 85.316606037931123, "ycoord": 27.625280391326822 }, "geometry": { "type": "Point", "coordinates": [ 85.316606037931123, 27.625280391326822 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 778, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 58, "repvalue": 232000, "xcoord": 85.314101934348884, "ycoord": 27.625484457096896 }, "geometry": { "type": "Point", "coordinates": [ 85.314101934348884, 27.625484457096896 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 779, "nhouse": 3, "residents": 15, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 63, "repvalue": 378000, "xcoord": 85.315951596540387, "ycoord": 27.625037963529763 }, "geometry": { "type": "Point", "coordinates": [ 85.315951596540387, 27.625037963529763 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 780, "nhouse": 5, "residents": 17, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 98, "repvalue": 588000, "xcoord": 85.314765350927161, "ycoord": 27.625140795897387 }, "geometry": { "type": "Point", "coordinates": [ 85.314765350927161, 27.625140795897387 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 781, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 95, "repvalue": 380000, "xcoord": 85.314507526609617, "ycoord": 27.624785938793135 }, "geometry": { "type": "Point", "coordinates": [ 85.314507526609617, 27.624785938793135 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 782, "nhouse": 8, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 66, "repvalue": 924000, "xcoord": 85.314675039896997, "ycoord": 27.622443147011499 }, "geometry": { "type": "Point", "coordinates": [ 85.314675039896997, 27.622443147011499 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 783, "nhouse": 2, "residents": 10, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 63, "repvalue": 252000, "xcoord": 85.313202256977164, "ycoord": 27.624066622145918 }, "geometry": { "type": "Point", "coordinates": [ 85.313202256977164, 27.624066622145918 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 784, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 54, "repvalue": 324000, "xcoord": 85.312807444185552, "ycoord": 27.624061819876392 }, "geometry": { "type": "Point", "coordinates": [ 85.312807444185552, 27.624061819876392 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 785, "nhouse": 9, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 67, "repvalue": 938000, "xcoord": 85.313842315108502, "ycoord": 27.625246818313844 }, "geometry": { "type": "Point", "coordinates": [ 85.313842315108502, 27.625246818313844 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 786, "nhouse": 5, "residents": 22, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 96, "repvalue": 576000, "xcoord": 85.317145011857207, "ycoord": 27.624466242167149 }, "geometry": { "type": "Point", "coordinates": [ 85.317145011857207, 27.624466242167149 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 787, "nhouse": 11, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 87, "repvalue": 1218000, "xcoord": 85.314011639805599, "ycoord": 27.622786808619455 }, "geometry": { "type": "Point", "coordinates": [ 85.314011639805599, 27.622786808619455 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 788, "nhouse": 14, "residents": 54, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 57, "repvalue": 1596000, "xcoord": 85.313728674184588, "ycoord": 27.624073023425368 }, "geometry": { "type": "Point", "coordinates": [ 85.313728674184588, 27.624073023425368 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 789, "nhouse": 10, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 75, "repvalue": 1050000, "xcoord": 85.313708912838862, "ycoord": 27.625362437695177 }, "geometry": { "type": "Point", "coordinates": [ 85.313708912838862, 27.625362437695177 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 790, "nhouse": 11, "residents": 43, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 55, "repvalue": 1210000, "xcoord": 85.313346438921826, "ycoord": 27.623247686334377 }, "geometry": { "type": "Point", "coordinates": [ 85.313346438921826, 27.623247686334377 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 791, "nhouse": 7, "residents": 24, "specialfac": 0, "expstr": "BrM+LC+4s+Res", "fptarea": 104, "repvalue": 832000, "xcoord": 85.314905932785393, "ycoord": 27.624556297236893 }, "geometry": { "type": "Point", "coordinates": [ 85.314905932785393, 27.624556297236893 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 792, "nhouse": 5, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 66, "repvalue": 660000, "xcoord": 85.316360762824516, "ycoord": 27.62410499988108 }, "geometry": { "type": "Point", "coordinates": [ 85.316360762824516, 27.62410499988108 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 793, "nhouse": 4, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 108, "repvalue": 432000, "xcoord": 85.31570094592692, "ycoord": 27.624214230053958 }, "geometry": { "type": "Point", "coordinates": [ 85.31570094592692, 27.624214230053958 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 794, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 81, "repvalue": 324000, "xcoord": 85.315580107970518, "ycoord": 27.62350931415024 }, "geometry": { "type": "Point", "coordinates": [ 85.315580107970518, 27.62350931415024 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 795, "nhouse": 27, "residents": 106, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 89, "repvalue": 3026000, "xcoord": 85.313072449823508, "ycoord": 27.623947802062233 }, "geometry": { "type": "Point", "coordinates": [ 85.313072449823508, 27.623947802062233 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 796, "nhouse": 19, "residents": 64, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 59, "repvalue": 2124000, "xcoord": 85.314000863448939, "ycoord": 27.623490125758298 }, "geometry": { "type": "Point", "coordinates": [ 85.314000863448939, 27.623490125758298 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 797, "nhouse": 5, "residents": 17, "specialfac": 0, "expstr": "BrM+MC+3s+Res", "fptarea": 98, "repvalue": 588000, "xcoord": 85.315706328887785, "ycoord": 27.623862571222389 }, "geometry": { "type": "Point", "coordinates": [ 85.315706328887785, 27.623862571222389 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 798, "nhouse": 3, "residents": 15, "specialfac": 0, "expstr": "BrM+LC+2s+Res", "fptarea": 93, "repvalue": 372000, "xcoord": 85.312816431082737, "ycoord": 27.623475722675156 }, "geometry": { "type": "Point", "coordinates": [ 85.312816431082737, 27.623475722675156 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 799, "nhouse": 4, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 70, "repvalue": 560000, "xcoord": 85.3137412489029, "ycoord": 27.623252486940235 }, "geometry": { "type": "Point", "coordinates": [ 85.3137412489029, 27.623252486940235 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 800, "nhouse": 8, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 73, "repvalue": 876000, "xcoord": 85.314121691192483, "ycoord": 27.624195042588326 }, "geometry": { "type": "Point", "coordinates": [ 85.314121691192483, 27.624195042588326 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 801, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 57, "repvalue": 114000, "xcoord": 85.315050102991435, "ycoord": 27.623737359172079 }, "geometry": { "type": "Point", "coordinates": [ 85.315050102991435, 27.623737359172079 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 802, "nhouse": 18, "residents": 74, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 65, "repvalue": 1950000, "xcoord": 85.315731448082289, "ycoord": 27.622221496426466 }, "geometry": { "type": "Point", "coordinates": [ 85.315731448082289, 27.622221496426466 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 803, "nhouse": 5, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 56, "repvalue": 560000, "xcoord": 85.31427125392166, "ycoord": 27.623024446923509 }, "geometry": { "type": "Point", "coordinates": [ 85.31427125392166, 27.623024446923509 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 804, "nhouse": 5, "residents": 28, "specialfac": 0, "expstr": "BrM+LC+3s+Res", "fptarea": 87, "repvalue": 522000, "xcoord": 85.313077841121611, "ycoord": 27.623596143693874 }, "geometry": { "type": "Point", "coordinates": [ 85.313077841121611, 27.623596143693874 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 805, "nhouse": 5, "residents": 23, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 76, "repvalue": 608000, "xcoord": 85.314148630227706, "ycoord": 27.622436749669262 }, "geometry": { "type": "Point", "coordinates": [ 85.314148630227706, 27.622436749669262 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 806, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "BrM+LC+2s+Res", "fptarea": 84, "repvalue": 336000, "xcoord": 85.313853093281736, "ycoord": 27.62454350141061 }, "geometry": { "type": "Point", "coordinates": [ 85.313853093281736, 27.62454350141061 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 807, "nhouse": 9, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 94, "repvalue": 940000, "xcoord": 85.316472638374862, "ycoord": 27.625396013494619 }, "geometry": { "type": "Point", "coordinates": [ 85.316472638374862, 27.625396013494619 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 808, "nhouse": 14, "residents": 53, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 101, "repvalue": 1616000, "xcoord": 85.315859462287108, "ycoord": 27.622457533733801 }, "geometry": { "type": "Point", "coordinates": [ 85.315859462287108, 27.622457533733801 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 809, "nhouse": 18, "residents": 78, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 81, "repvalue": 1944000, "xcoord": 85.315441325907685, "ycoord": 27.623976594203331 }, "geometry": { "type": "Point", "coordinates": [ 85.315441325907685, 27.623976594203331 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 810, "nhouse": 2, "residents": 11, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 70, "repvalue": 280000, "xcoord": 85.316088584102062, "ycoord": 27.62468790262125 }, "geometry": { "type": "Point", "coordinates": [ 85.316088584102062, 27.62468790262125 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 811, "nhouse": 18, "residents": 65, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 62, "repvalue": 1860000, "xcoord": 85.312818228429606, "ycoord": 27.623358503228651 }, "geometry": { "type": "Point", "coordinates": [ 85.312818228429606, 27.623358503228651 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 812, "nhouse": 8, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 76, "repvalue": 912000, "xcoord": 85.315304337334879, "ycoord": 27.62432665445435 }, "geometry": { "type": "Point", "coordinates": [ 85.315304337334879, 27.62432665445435 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 813, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 73, "repvalue": 292000, "xcoord": 85.313999067351531, "ycoord": 27.623607345274127 }, "geometry": { "type": "Point", "coordinates": [ 85.313999067351531, 27.623607345274127 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 814, "nhouse": 9, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 71, "repvalue": 994000, "xcoord": 85.316207632322985, "ycoord": 27.62551003778708 }, "geometry": { "type": "Point", "coordinates": [ 85.316207632322985, 27.62551003778708 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 815, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 77, "repvalue": 308000, "xcoord": 85.313707116287802, "ycoord": 27.625479657161719 }, "geometry": { "type": "Point", "coordinates": [ 85.313707116287802, 27.625479657161719 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 816, "nhouse": 19, "residents": 71, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 88, "repvalue": 2112000, "xcoord": 85.316876422485677, "ycoord": 27.624814707230868 }, "geometry": { "type": "Point", "coordinates": [ 85.316876422485677, 27.624814707230868 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 817, "nhouse": 3, "residents": 15, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 87, "repvalue": 348000, "xcoord": 85.314249703918364, "ycoord": 27.624431081266177 }, "geometry": { "type": "Point", "coordinates": [ 85.314249703918364, 27.624431081266177 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 818, "nhouse": 11, "residents": 49, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 74, "repvalue": 1184000, "xcoord": 85.316735850579931, "ycoord": 27.625399208320243 }, "geometry": { "type": "Point", "coordinates": [ 85.316735850579931, 27.625399208320243 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 819, "nhouse": 17, "residents": 58, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 93, "repvalue": 1860000, "xcoord": 85.313591680118606, "ycoord": 27.62442308173113 }, "geometry": { "type": "Point", "coordinates": [ 85.313591680118606, 27.62442308173113 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 820, "nhouse": 5, "residents": 12, "specialfac": 0, "expstr": "BrM+MC+3s+Res", "fptarea": 89, "repvalue": 534000, "xcoord": 85.31347085562949, "ycoord": 27.623718164601655 }, "geometry": { "type": "Point", "coordinates": [ 85.31347085562949, 27.623718164601655 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 821, "nhouse": 9, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 77, "repvalue": 1078000, "xcoord": 85.314642722844411, "ycoord": 27.624553099028876 }, "geometry": { "type": "Point", "coordinates": [ 85.314642722844411, 27.624553099028876 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 822, "nhouse": 2, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 68, "repvalue": 680000, "xcoord": 85.316604244471975, "ycoord": 27.625397610969813 }, "geometry": { "type": "Point", "coordinates": [ 85.316604244471975, 27.625397610969813 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1776, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 119, "repvalue": 2142000, "xcoord": 85.313723284856863, "ycoord": 27.624424681887653 }, "geometry": { "type": "Point", "coordinates": [ 85.313723284856863, 27.624424681887653 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1777, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 141, "repvalue": 1974000, "xcoord": 85.313088623424761, "ycoord": 27.622892826900749 }, "geometry": { "type": "Point", "coordinates": [ 85.313088623424761, 27.622892826900749 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1778, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Com", "fptarea": 128, "repvalue": 1792000, "xcoord": 85.314237132361853, "ycoord": 27.625251617827146 }, "geometry": { "type": "Point", "coordinates": [ 85.314237132361853, 27.625251617827146 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1783, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Com", "fptarea": 121, "repvalue": 1210000, "xcoord": 85.315592668585936, "ycoord": 27.62268877681506 }, "geometry": { "type": "Point", "coordinates": [ 85.315592668585936, 27.62268877681506 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1785, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Com", "fptarea": 143, "repvalue": 1716000, "xcoord": 85.315318695128056, "ycoord": 27.623388897735264 }, "geometry": { "type": "Point", "coordinates": [ 85.315318695128056, 27.623388897735264 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1786, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Com", "fptarea": 113, "repvalue": 1808000, "xcoord": 85.314273049684772, "ycoord": 27.622907227381372 }, "geometry": { "type": "Point", "coordinates": [ 85.314273049684772, 27.622907227381372 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1790, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Com", "fptarea": 98, "repvalue": 1568000, "xcoord": 85.313869259809294, "ycoord": 27.623488525914738 }, "geometry": { "type": "Point", "coordinates": [ 85.313869259809294, 27.623488525914738 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1792, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 141, "repvalue": 1974000, "xcoord": 85.315962361139199, "ycoord": 27.624334645840488 }, "geometry": { "type": "Point", "coordinates": [ 85.315962361139199, 27.624334645840488 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1794, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 118, "repvalue": 1416000, "xcoord": 85.312809241586692, "ycoord": 27.623944600440332 }, "geometry": { "type": "Point", "coordinates": [ 85.312809241586692, 27.623944600440332 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1795, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 97, "repvalue": 1164000, "xcoord": 85.313487025254489, "ycoord": 27.622663189188348 }, "geometry": { "type": "Point", "coordinates": [ 85.313487025254489, 27.622663189188348 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1797, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+5s+Com", "fptarea": 147, "repvalue": 1470000, "xcoord": 85.313465465559176, "ycoord": 27.62406982303515 }, "geometry": { "type": "Point", "coordinates": [ 85.313465465559176, 27.62406982303515 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1801, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Com", "fptarea": 104, "repvalue": 1248000, "xcoord": 85.314509322255319, "ycoord": 27.624668719266477 }, "geometry": { "type": "Point", "coordinates": [ 85.314509322255319, 27.624668719266477 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1802, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 126, "repvalue": 2268000, "xcoord": 85.314015231837715, "ycoord": 27.622552369556463 }, "geometry": { "type": "Point", "coordinates": [ 85.314015231837715, 27.622552369556463 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1803, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 144, "repvalue": 2592000, "xcoord": 85.315855874197496, "ycoord": 27.62269197302291 }, "geometry": { "type": "Point", "coordinates": [ 85.315855874197496, 27.62269197302291 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1804, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Com", "fptarea": 125, "repvalue": 1500000, "xcoord": 85.31649057387942, "ycoord": 27.624223817049877 }, "geometry": { "type": "Point", "coordinates": [ 85.31649057387942, 27.624223817049877 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1806, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Com", "fptarea": 107, "repvalue": 1284000, "xcoord": 85.313478042237989, "ycoord": 27.623249286661078 }, "geometry": { "type": "Point", "coordinates": [ 85.313478042237989, 27.623249286661078 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1809, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Com", "fptarea": 136, "repvalue": 1632000, "xcoord": 85.315953390667275, "ycoord": 27.624920743920104 }, "geometry": { "type": "Point", "coordinates": [ 85.315953390667275, 27.624920743920104 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1812, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Com", "fptarea": 142, "repvalue": 1420000, "xcoord": 85.315724271386301, "ycoord": 27.62269037498136 }, "geometry": { "type": "Point", "coordinates": [ 85.315724271386301, 27.62269037498136 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1818, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 98, "repvalue": 1764000, "xcoord": 85.313081435266071, "ycoord": 27.623361704771188 }, "geometry": { "type": "Point", "coordinates": [ 85.313081435266071, 27.623361704771188 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1819, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Com", "fptarea": 116, "repvalue": 1392000, "xcoord": 85.315464654726185, "ycoord": 27.62245273928243 }, "geometry": { "type": "Point", "coordinates": [ 85.315464654726185, 27.62245273928243 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1822, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Com", "fptarea": 142, "repvalue": 2272000, "xcoord": 85.314269458147706, "ycoord": 27.62314166646355 }, "geometry": { "type": "Point", "coordinates": [ 85.314269458147706, 27.62314166646355 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1823, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+5s+Com", "fptarea": 109, "repvalue": 1090000, "xcoord": 85.315601640128975, "ycoord": 27.622102678655832 }, "geometry": { "type": "Point", "coordinates": [ 85.315601640128975, 27.622102678655832 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1826, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Com", "fptarea": 123, "repvalue": 1722000, "xcoord": 85.31504830799264, "ycoord": 27.62385457874716 }, "geometry": { "type": "Point", "coordinates": [ 85.31504830799264, 27.62385457874716 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1827, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 106, "repvalue": 1908000, "xcoord": 85.31410732270912, "ycoord": 27.625132798619632 }, "geometry": { "type": "Point", "coordinates": [ 85.31410732270912, 27.625132798619632 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1828, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Com", "fptarea": 136, "repvalue": 1360000, "xcoord": 85.316470844764822, "ycoord": 27.625513233127602 }, "geometry": { "type": "Point", "coordinates": [ 85.316470844764822, 27.625513233127602 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1832, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 102, "repvalue": 1428000, "xcoord": 85.314902342345079, "ycoord": 27.624790736339865 }, "geometry": { "type": "Point", "coordinates": [ 85.314902342345079, 27.624790736339865 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1833, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 104, "repvalue": 1248000, "xcoord": 85.313607849069214, "ycoord": 27.623368106359248 }, "geometry": { "type": "Point", "coordinates": [ 85.313607849069214, 27.623368106359248 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1834, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Com", "fptarea": 108, "repvalue": 1296000, "xcoord": 85.315170937693551, "ycoord": 27.624442275375401 }, "geometry": { "type": "Point", "coordinates": [ 85.315170937693551, 27.624442275375401 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1835, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 112, "repvalue": 1344000, "xcoord": 85.315699151584951, "ycoord": 27.624331449660307 }, "geometry": { "type": "Point", "coordinates": [ 85.315699151584951, 27.624331449660307 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1846, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Com", "fptarea": 105, "repvalue": 1260000, "xcoord": 85.315718888750524, "ycoord": 27.623042033875603 }, "geometry": { "type": "Point", "coordinates": [ 85.315718888750524, 27.623042033875603 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1848, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Com", "fptarea": 110, "repvalue": 1980000, "xcoord": 85.314417221714692, "ycoord": 27.622088289902081 }, "geometry": { "type": "Point", "coordinates": [ 85.314417221714692, 27.622088289902081 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1855, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Com", "fptarea": 149, "repvalue": 2980000, "xcoord": 85.314006251676076, "ycoord": 27.623138467198281 }, "geometry": { "type": "Point", "coordinates": [ 85.314006251676076, 27.623138467198281 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1858, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 109, "repvalue": 1308000, "xcoord": 85.315206833893328, "ycoord": 27.622097883527292 }, "geometry": { "type": "Point", "coordinates": [ 85.315206833893328, 27.622097883527292 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1861, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Com", "fptarea": 112, "repvalue": 1344000, "xcoord": 85.31371070937908, "ycoord": 27.625245218226553 }, "geometry": { "type": "Point", "coordinates": [ 85.31371070937908, 27.625245218226553 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1866, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Com", "fptarea": 117, "repvalue": 1404000, "xcoord": 85.31554960140798, "ycoord": 27.625502047252414 }, "geometry": { "type": "Point", "coordinates": [ 85.31554960140798, 27.625502047252414 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1867, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Com", "fptarea": 142, "repvalue": 1704000, "xcoord": 85.313856685919362, "ycoord": 27.624309062426153 }, "geometry": { "type": "Point", "coordinates": [ 85.313856685919362, 27.624309062426153 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1870, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Com", "fptarea": 146, "repvalue": 2336000, "xcoord": 85.31647981270666, "ycoord": 27.624927134941789 }, "geometry": { "type": "Point", "coordinates": [ 85.31647981270666, 27.624927134941789 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1874, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Com", "fptarea": 109, "repvalue": 1962000, "xcoord": 85.314505730953059, "ycoord": 27.6249031583177 }, "geometry": { "type": "Point", "coordinates": [ 85.314505730953059, 27.6249031583177 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1876, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 130, "repvalue": 2340000, "xcoord": 85.31490413757065, "ycoord": 27.624673516789425 }, "geometry": { "type": "Point", "coordinates": [ 85.31490413757065, 27.624673516789425 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1878, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 138, "repvalue": 1656000, "xcoord": 85.314529073642404, "ycoord": 27.623379304335369 }, "geometry": { "type": "Point", "coordinates": [ 85.314529073642404, 27.623379304335369 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1880, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 133, "repvalue": 2394000, "xcoord": 85.312951629038395, "ycoord": 27.623242884605752 }, "geometry": { "type": "Point", "coordinates": [ 85.312951629038395, 27.623242884605752 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1881, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+8s+Com", "fptarea": 118, "repvalue": 1888000, "xcoord": 85.315161962966101, "ycoord": 27.625028373206874 }, "geometry": { "type": "Point", "coordinates": [ 85.315161962966101, 27.625028373206874 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1883, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Com", "fptarea": 102, "repvalue": 1428000, "xcoord": 85.31494003980545, "ycoord": 27.622329125341921 }, "geometry": { "type": "Point", "coordinates": [ 85.31494003980545, 27.622329125341921 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1886, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Com", "fptarea": 146, "repvalue": 2336000, "xcoord": 85.314274845437041, "ycoord": 27.62279000783715 }, "geometry": { "type": "Point", "coordinates": [ 85.314274845437041, 27.62279000783715 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1892, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Com", "fptarea": 98, "repvalue": 1764000, "xcoord": 85.312949831842417, "ycoord": 27.623360104062293 }, "geometry": { "type": "Point", "coordinates": [ 85.312949831842417, 27.623360104062293 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1893, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Com", "fptarea": 102, "repvalue": 2040000, "xcoord": 85.315576519125727, "ycoord": 27.623743753370068 }, "geometry": { "type": "Point", "coordinates": [ 85.315576519125727, 27.623743753370068 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1894, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 131, "repvalue": 1572000, "xcoord": 85.316871043045992, "ycoord": 27.625166366226157 }, "geometry": { "type": "Point", "coordinates": [ 85.316871043045992, 27.625166366226157 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1896, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Com", "fptarea": 122, "repvalue": 1952000, "xcoord": 85.312944440189327, "ycoord": 27.623711762419372 }, "geometry": { "type": "Point", "coordinates": [ 85.312944440189327, 27.623711762419372 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1899, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Com", "fptarea": 101, "repvalue": 1616000, "xcoord": 85.313851296946652, "ycoord": 27.624660720899712 }, "geometry": { "type": "Point", "coordinates": [ 85.313851296946652, 27.624660720899712 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1900, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Com", "fptarea": 117, "repvalue": 2106000, "xcoord": 85.315288183988329, "ycoord": 27.625381630603513 }, "geometry": { "type": "Point", "coordinates": [ 85.315288183988329, 27.625381630603513 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1901, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Com", "fptarea": 111, "repvalue": 1332000, "xcoord": 85.313479838863003, "ycoord": 27.623132067170712 }, "geometry": { "type": "Point", "coordinates": [ 85.313479838863003, 27.623132067170712 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1903, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 114, "repvalue": 1596000, "xcoord": 85.316357175551829, "ycoord": 27.624339439175081 }, "geometry": { "type": "Point", "coordinates": [ 85.316357175551829, 27.624339439175081 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1906, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Com", "fptarea": 138, "repvalue": 1380000, "xcoord": 85.315702740258047, "ycoord": 27.624097010445524 }, "geometry": { "type": "Point", "coordinates": [ 85.315702740258047, 27.624097010445524 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1910, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 149, "repvalue": 2682000, "xcoord": 85.315037537772142, "ycoord": 27.62455789615376 }, "geometry": { "type": "Point", "coordinates": [ 85.315037537772142, 27.62455789615376 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1914, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Com", "fptarea": 124, "repvalue": 2232000, "xcoord": 85.31520144973976, "ycoord": 27.622449542357781 }, "geometry": { "type": "Point", "coordinates": [ 85.31520144973976, 27.622449542357781 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1915, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Com", "fptarea": 105, "repvalue": 1680000, "xcoord": 85.315857668247716, "ycoord": 27.622574753379403 }, "geometry": { "type": "Point", "coordinates": [ 85.315857668247716, 27.622574753379403 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1917, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 105, "repvalue": 1470000, "xcoord": 85.315468243612614, "ycoord": 27.6222183000325 }, "geometry": { "type": "Point", "coordinates": [ 85.315468243612614, 27.6222183000325 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1918, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+10s+Com", "fptarea": 121, "repvalue": 2420000, "xcoord": 85.314256887426325, "ycoord": 27.623962203185382 }, "geometry": { "type": "Point", "coordinates": [ 85.314256887426325, 27.623962203185382 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1919, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 117, "repvalue": 1404000, "xcoord": 85.315711711751121, "ycoord": 27.623510912372009 }, "geometry": { "type": "Point", "coordinates": [ 85.315711711751121, 27.623510912372009 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1921, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 120, "repvalue": 2160000, "xcoord": 85.315965949252131, "ycoord": 27.624100206594015 }, "geometry": { "type": "Point", "coordinates": [ 85.315965949252131, 27.624100206594015 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1925, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Com", "fptarea": 140, "repvalue": 1400000, "xcoord": 85.316213013960876, "ycoord": 27.625158378929388 }, "geometry": { "type": "Point", "coordinates": [ 85.316213013960876, 27.625158378929388 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1926, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Com", "fptarea": 140, "repvalue": 1400000, "xcoord": 85.314545232892229, "ycoord": 27.622324328294628 }, "geometry": { "type": "Point", "coordinates": [ 85.314545232892229, 27.622324328294628 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1928, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Com", "fptarea": 125, "repvalue": 2250000, "xcoord": 85.313458278646834, "ycoord": 27.624538700917231 }, "geometry": { "type": "Point", "coordinates": [ 85.313458278646834, 27.624538700917231 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1929, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 106, "repvalue": 1484000, "xcoord": 85.313865667323554, "ycoord": 27.623722964928447 }, "geometry": { "type": "Point", "coordinates": [ 85.313865667323554, 27.623722964928447 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1933, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Com", "fptarea": 109, "repvalue": 1962000, "xcoord": 85.315055487922805, "ycoord": 27.623385700434305 }, "geometry": { "type": "Point", "coordinates": [ 85.315055487922805, 27.623385700434305 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1936, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Com", "fptarea": 126, "repvalue": 1512000, "xcoord": 85.316083202174028, "ycoord": 27.62503956148025 }, "geometry": { "type": "Point", "coordinates": [ 85.316083202174028, 27.62503956148025 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1941, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 147, "repvalue": 1764000, "xcoord": 85.313588086899117, "ycoord": 27.62465752067968 }, "geometry": { "type": "Point", "coordinates": [ 85.313588086899117, 27.62465752067968 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1942, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 124, "repvalue": 1488000, "xcoord": 85.316880008724652, "ycoord": 27.624580267890231 }, "geometry": { "type": "Point", "coordinates": [ 85.316880008724652, 27.624580267890231 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1944, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+10s+Com", "fptarea": 130, "repvalue": 2600000, "xcoord": 85.314767146325309, "ycoord": 27.625023576361137 }, "geometry": { "type": "Point", "coordinates": [ 85.314767146325309, 27.625023576361137 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1945, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Com", "fptarea": 99, "repvalue": 1782000, "xcoord": 85.314128875173822, "ycoord": 27.623726164522537 }, "geometry": { "type": "Point", "coordinates": [ 85.314128875173822, 27.623726164522537 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1950, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Com", "fptarea": 134, "repvalue": 2144000, "xcoord": 85.316092171999912, "ycoord": 27.624453463371463 }, "geometry": { "type": "Point", "coordinates": [ 85.316092171999912, 27.624453463371463 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1952, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Com", "fptarea": 116, "repvalue": 1392000, "xcoord": 85.315587285530057, "ycoord": 27.623040435685532 }, "geometry": { "type": "Point", "coordinates": [ 85.315587285530057, 27.623040435685532 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1955, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Com", "fptarea": 136, "repvalue": 1632000, "xcoord": 85.315443120497207, "ycoord": 27.623859374606564 }, "geometry": { "type": "Point", "coordinates": [ 85.315443120497207, 27.623859374606564 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1957, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Com", "fptarea": 138, "repvalue": 2484000, "xcoord": 85.313330267548196, "ycoord": 27.62430266158227 }, "geometry": { "type": "Point", "coordinates": [ 85.313330267548196, 27.62430266158227 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1958, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Com", "fptarea": 118, "repvalue": 1652000, "xcoord": 85.314788690257373, "ycoord": 27.623616941763235 }, "geometry": { "type": "Point", "coordinates": [ 85.314788690257373, 27.623616941763235 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1960, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 148, "repvalue": 2072000, "xcoord": 85.313972124588659, "ycoord": 27.625365637760869 }, "geometry": { "type": "Point", "coordinates": [ 85.313972124588659, 27.625365637760869 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1961, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+8s+Com", "fptarea": 119, "repvalue": 1904000, "xcoord": 85.314785099710448, "ycoord": 27.623851380883782 }, "geometry": { "type": "Point", "coordinates": [ 85.314785099710448, 27.623851380883782 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1970, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Com", "fptarea": 98, "repvalue": 1372000, "xcoord": 85.315690179712604, "ycoord": 27.624917547660701 }, "geometry": { "type": "Point", "coordinates": [ 85.315690179712604, 27.624917547660701 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1973, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 123, "repvalue": 1476000, "xcoord": 85.315843315542551, "ycoord": 27.62351251046902 }, "geometry": { "type": "Point", "coordinates": [ 85.315843315542551, 27.62351251046902 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1975, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Com", "fptarea": 98, "repvalue": 1372000, "xcoord": 85.314913113535908, "ycoord": 27.624087419005889 }, "geometry": { "type": "Point", "coordinates": [ 85.314913113535908, 27.624087419005889 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1976, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 112, "repvalue": 1344000, "xcoord": 85.315163757933291, "ycoord": 27.624911153644756 }, "geometry": { "type": "Point", "coordinates": [ 85.315163757933291, 27.624911153644756 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1977, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Com", "fptarea": 118, "repvalue": 2360000, "xcoord": 85.313871056035893, "ycoord": 27.623371306404756 }, "geometry": { "type": "Point", "coordinates": [ 85.313871056035893, 27.623371306404756 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1979, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Com", "fptarea": 136, "repvalue": 1632000, "xcoord": 85.314114507037587, "ycoord": 27.624663920620694 }, "geometry": { "type": "Point", "coordinates": [ 85.314114507037587, 27.624663920620694 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1981, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Com", "fptarea": 138, "repvalue": 2208000, "xcoord": 85.31451470912738, "ycoord": 27.624317060673977 }, "geometry": { "type": "Point", "coordinates": [ 85.31451470912738, 27.624317060673977 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1982, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Com", "fptarea": 96, "repvalue": 1152000, "xcoord": 85.31543594207406, "ycoord": 27.624328252981098 }, "geometry": { "type": "Point", "coordinates": [ 85.31543594207406, 27.624328252981098 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1983, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Com", "fptarea": 100, "repvalue": 1600000, "xcoord": 85.313342845359202, "ycoord": 27.62348212529297 }, "geometry": { "type": "Point", "coordinates": [ 85.313342845359202, 27.62348212529297 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1989, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 138, "repvalue": 1656000, "xcoord": 85.313083232322015, "ycoord": 27.623244485306717 }, "geometry": { "type": "Point", "coordinates": [ 85.313083232322015, 27.623244485306717 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1990, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Com", "fptarea": 148, "repvalue": 2960000, "xcoord": 85.315423379416274, "ycoord": 27.625148790056091 }, "geometry": { "type": "Point", "coordinates": [ 85.315423379416274, 27.625148790056091 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1991, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Com", "fptarea": 107, "repvalue": 1712000, "xcoord": 85.313984698181727, "ycoord": 27.624545101325552 }, "geometry": { "type": "Point", "coordinates": [ 85.313984698181727, 27.624545101325552 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1992, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Com", "fptarea": 139, "repvalue": 2780000, "xcoord": 85.314390287368497, "ycoord": 27.62384658315305 }, "geometry": { "type": "Point", "coordinates": [ 85.314390287368497, 27.62384658315305 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1995, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 106, "repvalue": 1272000, "xcoord": 85.314401061399792, "ycoord": 27.623143265909064 }, "geometry": { "type": "Point", "coordinates": [ 85.314401061399792, 27.623143265909064 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 2000, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Com", "fptarea": 145, "repvalue": 2900000, "xcoord": 85.315426968801262, "ycoord": 27.624914350902248 }, "geometry": { "type": "Point", "coordinates": [ 85.315426968801262, 27.624914350902248 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 2001, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 142, "repvalue": 1704000, "xcoord": 85.315974919344825, "ycoord": 27.623514108441274 }, "geometry": { "type": "Point", "coordinates": [ 85.315974919344825, 27.623514108441274 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 2005, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Com", "fptarea": 119, "repvalue": 2142000, "xcoord": 85.314008047730098, "ycoord": 27.623021247674096 }, "geometry": { "type": "Point", "coordinates": [ 85.314008047730098, 27.623021247674096 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 2007, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Com", "fptarea": 119, "repvalue": 2380000, "xcoord": 85.313454685125564, "ycoord": 27.62477313984574 }, "geometry": { "type": "Point", "coordinates": [ 85.313454685125564, 27.62477313984574 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 2008, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 147, "repvalue": 2058000, "xcoord": 85.315428763477499, "ycoord": 27.6247971313222 }, "geometry": { "type": "Point", "coordinates": [ 85.315428763477499, 27.6247971313222 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 2010, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Com", "fptarea": 144, "repvalue": 1440000, "xcoord": 85.313593476712072, "ycoord": 27.624305862253728 }, "geometry": { "type": "Point", "coordinates": [ 85.313593476712072, 27.624305862253728 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 2013, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+10s+Com", "fptarea": 117, "repvalue": 2340000, "xcoord": 85.314500343918326, "ycoord": 27.625254816878872 }, "geometry": { "type": "Point", "coordinates": [ 85.314500343918326, 27.625254816878872 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 2015, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Com", "fptarea": 130, "repvalue": 1560000, "xcoord": 85.316227364518582, "ycoord": 27.624220621883609 }, "geometry": { "type": "Point", "coordinates": [ 85.316227364518582, 27.624220621883609 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 2016, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Com", "fptarea": 114, "repvalue": 1140000, "xcoord": 85.315948008254111, "ycoord": 27.625272402742823 }, "geometry": { "type": "Point", "coordinates": [ 85.315948008254111, 27.625272402742823 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 2017, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Com", "fptarea": 99, "repvalue": 1782000, "xcoord": 85.313743045247847, "ycoord": 27.623135267433994 }, "geometry": { "type": "Point", "coordinates": [ 85.313743045247847, 27.623135267433994 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 2018, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Com", "fptarea": 108, "repvalue": 1728000, "xcoord": 85.31400265953549, "ycoord": 27.623372906240384 }, "geometry": { "type": "Point", "coordinates": [ 85.31400265953549, 27.623372906240384 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 2020, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Com", "fptarea": 104, "repvalue": 2080000, "xcoord": 85.314141446723596, "ycoord": 27.62290562782697 }, "geometry": { "type": "Point", "coordinates": [ 85.314141446723596, 27.62290562782697 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 2021, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Com", "fptarea": 115, "repvalue": 1380000, "xcoord": 85.314251499811618, "ycoord": 27.624313861749119 }, "geometry": { "type": "Point", "coordinates": [ 85.314251499811618, 27.624313861749119 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 2022, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+5s+Com", "fptarea": 105, "repvalue": 1050000, "xcoord": 85.315964155201073, "ycoord": 27.624217426218294 }, "geometry": { "type": "Point", "coordinates": [ 85.315964155201073, 27.624217426218294 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 2023, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Com", "fptarea": 114, "repvalue": 2280000, "xcoord": 85.315992858717621, "ycoord": 27.622341911979145 }, "geometry": { "type": "Point", "coordinates": [ 85.315992858717621, 27.622341911979145 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 2024, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Com", "fptarea": 127, "repvalue": 2540000, "xcoord": 85.315452093282275, "ycoord": 27.623273276591398 }, "geometry": { "type": "Point", "coordinates": [ 85.315452093282275, 27.623273276591398 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 2031, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Com", "fptarea": 143, "repvalue": 2574000, "xcoord": 85.31546286026672, "ycoord": 27.622569958904268 }, "geometry": { "type": "Point", "coordinates": [ 85.31546286026672, 27.622569958904268 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 2032, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 106, "repvalue": 1908000, "xcoord": 85.315715300272487, "ycoord": 27.623276473127987 }, "geometry": { "type": "Point", "coordinates": [ 85.315715300272487, 27.623276473127987 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 2034, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Com", "fptarea": 111, "repvalue": 1998000, "xcoord": 85.315686590887793, "ycoord": 27.625151986846241 }, "geometry": { "type": "Point", "coordinates": [ 85.315686590887793, 27.625151986846241 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 2035, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 148, "repvalue": 1776000, "xcoord": 85.314116303092575, "ycoord": 27.62454670111573 }, "geometry": { "type": "Point", "coordinates": [ 85.314116303092575, 27.62454670111573 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 2038, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Com", "fptarea": 124, "repvalue": 2480000, "xcoord": 85.315729653924535, "ycoord": 27.622338716068324 }, "geometry": { "type": "Point", "coordinates": [ 85.315729653924535, 27.622338716068324 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 2039, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Com", "fptarea": 132, "repvalue": 1320000, "xcoord": 85.314790485514564, "ycoord": 27.623499722199831 }, "geometry": { "type": "Point", "coordinates": [ 85.314790485514564, 27.623499722199831 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 2040, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 100, "repvalue": 1200000, "xcoord": 85.313973920848781, "ycoord": 27.625248418276378 }, "geometry": { "type": "Point", "coordinates": [ 85.313973920848781, 27.625248418276378 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 2047, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Com", "fptarea": 106, "repvalue": 1908000, "xcoord": 85.313079638199255, "ycoord": 27.623478924233567 }, "geometry": { "type": "Point", "coordinates": [ 85.313079638199255, 27.623478924233567 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 2053, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Com", "fptarea": 124, "repvalue": 1240000, "xcoord": 85.314276641178466, "ycoord": 27.622672788290831 }, "geometry": { "type": "Point", "coordinates": [ 85.314276641178466, 27.622672788290831 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 2054, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Com", "fptarea": 132, "repvalue": 2640000, "xcoord": 85.313490618385146, "ycoord": 27.622428750184628 }, "geometry": { "type": "Point", "coordinates": [ 85.313490618385146, 27.622428750184628 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 2055, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Com", "fptarea": 103, "repvalue": 1236000, "xcoord": 85.314898751861406, "ycoord": 27.62502517543448 }, "geometry": { "type": "Point", "coordinates": [ 85.314898751861406, 27.62502517543448 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 2057, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Com", "fptarea": 108, "repvalue": 1728000, "xcoord": 85.315041127889003, "ycoord": 27.624323457026591 }, "geometry": { "type": "Point", "coordinates": [ 85.315041127889003, 27.624323457026591 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 2058, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Com", "fptarea": 133, "repvalue": 2128000, "xcoord": 85.313854889605963, "ycoord": 27.624426281919423 }, "geometry": { "type": "Point", "coordinates": [ 85.313854889605963, 27.624426281919423 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 2059, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Com", "fptarea": 114, "repvalue": 1824000, "xcoord": 85.315174527508645, "ycoord": 27.624207836228198 }, "geometry": { "type": "Point", "coordinates": [ 85.315174527508645, 27.624207836228198 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 2064, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Com", "fptarea": 139, "repvalue": 2780000, "xcoord": 85.314792280760926, "ycoord": 27.623382502634346 }, "geometry": { "type": "Point", "coordinates": [ 85.314792280760926, 27.623382502634346 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 2070, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 100, "repvalue": 1400000, "xcoord": 85.313755619358616, "ycoord": 27.622314730831871 }, "geometry": { "type": "Point", "coordinates": [ 85.313755619358616, 27.622314730831871 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 2073, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Com", "fptarea": 137, "repvalue": 2192000, "xcoord": 85.315562163313061, "ycoord": 27.624681510165814 }, "geometry": { "type": "Point", "coordinates": [ 85.315562163313061, 27.624681510165814 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 2076, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Com", "fptarea": 126, "repvalue": 1764000, "xcoord": 85.313474448955446, "ycoord": 27.623483725635541 }, "geometry": { "type": "Point", "coordinates": [ 85.313474448955446, 27.623483725635541 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 2079, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Com", "fptarea": 142, "repvalue": 1704000, "xcoord": 85.315688385305606, "ycoord": 27.625034767254515 }, "geometry": { "type": "Point", "coordinates": [ 85.315688385305606, 27.625034767254515 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 2081, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Com", "fptarea": 137, "repvalue": 1370000, "xcoord": 85.313844111497843, "ycoord": 27.625129598835201 }, "geometry": { "type": "Point", "coordinates": [ 85.313844111497843, 27.625129598835201 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 2082, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Com", "fptarea": 100, "repvalue": 1200000, "xcoord": 85.314244316173514, "ycoord": 27.62478273980485 }, "geometry": { "type": "Point", "coordinates": [ 85.314244316173514, 27.62478273980485 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 2086, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 115, "repvalue": 1380000, "xcoord": 85.315693768494043, "ycoord": 27.624683108466815 }, "geometry": { "type": "Point", "coordinates": [ 85.315693768494043, 27.624683108466815 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 2088, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 127, "repvalue": 1524000, "xcoord": 85.313460075391191, "ycoord": 27.624421481449847 }, "geometry": { "type": "Point", "coordinates": [ 85.313460075391191, 27.624421481449847 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 2092, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 99, "repvalue": 1782000, "xcoord": 85.313748434217558, "ycoord": 27.622783608902765 }, "geometry": { "type": "Point", "coordinates": [ 85.313748434217558, 27.622783608902765 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 2094, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Com", "fptarea": 109, "repvalue": 1744000, "xcoord": 85.315827167920304, "ycoord": 27.624567487035041 }, "geometry": { "type": "Point", "coordinates": [ 85.315827167920304, 27.624567487035041 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 2098, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 111, "repvalue": 1998000, "xcoord": 85.313214835616492, "ycoord": 27.623246085882919 }, "geometry": { "type": "Point", "coordinates": [ 85.313214835616492, 27.623246085882919 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 2103, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Com", "fptarea": 114, "repvalue": 2280000, "xcoord": 85.314770737089091, "ycoord": 27.624789137282384 }, "geometry": { "type": "Point", "coordinates": [ 85.314770737089091, 27.624789137282384 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 2111, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 116, "repvalue": 1392000, "xcoord": 85.315300747778181, "ycoord": 27.624561093613227 }, "geometry": { "type": "Point", "coordinates": [ 85.315300747778181, 27.624561093613227 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 2114, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 138, "repvalue": 1656000, "xcoord": 85.313488821825246, "ycoord": 27.62254596968754 }, "geometry": { "type": "Point", "coordinates": [ 85.313488821825246, 27.62254596968754 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 2118, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Com", "fptarea": 120, "repvalue": 2160000, "xcoord": 85.313341048561611, "ycoord": 27.623599344769143 }, "geometry": { "type": "Point", "coordinates": [ 85.313341048561611, 27.623599344769143 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 2120, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 100, "repvalue": 1800000, "xcoord": 85.316746610332075, "ycoord": 27.624695890383435 }, "geometry": { "type": "Point", "coordinates": [ 85.316746610332075, 27.624695890383435 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 2121, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Com", "fptarea": 142, "repvalue": 2272000, "xcoord": 85.315334846816214, "ycoord": 27.622333921266485 }, "geometry": { "type": "Point", "coordinates": [ 85.315334846816214, 27.622333921266485 ] } }, +{ "type": "Feature", "properties": { "zoneid": 14, "bldid": 823, "nhouse": 5, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 58, "repvalue": 580000, "xcoord": 85.314188073754394, "ycoord": 27.641154897094541 }, "geometry": { "type": "Point", "coordinates": [ 85.314188073754394, 27.641154897094541 ] } }, +{ "type": "Feature", "properties": { "zoneid": 14, "bldid": 824, "nhouse": 5, "residents": 14, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 97, "repvalue": 582000, "xcoord": 85.313526354044242, "ycoord": 27.641381331200549 }, "geometry": { "type": "Point", "coordinates": [ 85.313526354044242, 27.641381331200549 ] } }, +{ "type": "Feature", "properties": { "zoneid": 14, "bldid": 825, "nhouse": 13, "residents": 54, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 100, "repvalue": 1400000, "xcoord": 85.31366517026359, "ycoord": 27.640914055528309 }, "geometry": { "type": "Point", "coordinates": [ 85.31366517026359, 27.640914055528309 ] } }, +{ "type": "Feature", "properties": { "zoneid": 14, "bldid": 826, "nhouse": 5, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 94, "repvalue": 564000, "xcoord": 85.313794997090824, "ycoord": 27.641032875700265 }, "geometry": { "type": "Point", "coordinates": [ 85.313794997090824, 27.641032875700265 ] } }, +{ "type": "Feature", "properties": { "zoneid": 14, "bldid": 827, "nhouse": 19, "residents": 81, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 104, "repvalue": 2080000, "xcoord": 85.313663372480121, "ycoord": 27.641031274729386 }, "geometry": { "type": "Point", "coordinates": [ 85.313663372480121, 27.641031274729386 ] } }, +{ "type": "Feature", "properties": { "zoneid": 14, "bldid": 828, "nhouse": 11, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 75, "repvalue": 1200000, "xcoord": 85.313537141618582, "ycoord": 27.640678016047968 }, "geometry": { "type": "Point", "coordinates": [ 85.313537141618582, 27.640678016047968 ] } }, +{ "type": "Feature", "properties": { "zoneid": 14, "bldid": 829, "nhouse": 15, "residents": 57, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 64, "repvalue": 1664000, "xcoord": 85.313418103440625, "ycoord": 27.639855880466968 }, "geometry": { "type": "Point", "coordinates": [ 85.313418103440625, 27.639855880466968 ] } }, +{ "type": "Feature", "properties": { "zoneid": 14, "bldid": 830, "nhouse": 10, "residents": 46, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 108, "repvalue": 1080000, "xcoord": 85.313919431591273, "ycoord": 27.641503353393166 }, "geometry": { "type": "Point", "coordinates": [ 85.313919431591273, 27.641503353393166 ] } }, +{ "type": "Feature", "properties": { "zoneid": 14, "bldid": 831, "nhouse": 7, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 57, "repvalue": 798000, "xcoord": 85.313542535259202, "ycoord": 27.64032635844346 }, "geometry": { "type": "Point", "coordinates": [ 85.313542535259202, 27.64032635844346 ] } }, +{ "type": "Feature", "properties": { "zoneid": 14, "bldid": 832, "nhouse": 11, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 73, "repvalue": 1168000, "xcoord": 85.314709182912452, "ycoord": 27.641512956037928 }, "geometry": { "type": "Point", "coordinates": [ 85.314709182912452, 27.641512956037928 ] } }, +{ "type": "Feature", "properties": { "zoneid": 14, "bldid": 833, "nhouse": 7, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 81, "repvalue": 810000, "xcoord": 85.313677754443916, "ycoord": 27.640093521062258 }, "geometry": { "type": "Point", "coordinates": [ 85.313677754443916, 27.640093521062258 ] } }, +{ "type": "Feature", "properties": { "zoneid": 14, "bldid": 834, "nhouse": 9, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 71, "repvalue": 994000, "xcoord": 85.313930216707817, "ycoord": 27.640800038110321 }, "geometry": { "type": "Point", "coordinates": [ 85.313930216707817, 27.640800038110321 ] } }, +{ "type": "Feature", "properties": { "zoneid": 14, "bldid": 835, "nhouse": 10, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 93, "repvalue": 1116000, "xcoord": 85.313670563548868, "ycoord": 27.640562397912539 }, "geometry": { "type": "Point", "coordinates": [ 85.313670563548868, 27.640562397912539 ] } }, +{ "type": "Feature", "properties": { "zoneid": 14, "bldid": 836, "nhouse": 7, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 59, "repvalue": 708000, "xcoord": 85.313935609119582, "ycoord": 27.640448380440681 }, "geometry": { "type": "Point", "coordinates": [ 85.313935609119582, 27.640448380440681 ] } }, +{ "type": "Feature", "properties": { "zoneid": 14, "bldid": 837, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 89, "repvalue": 356000, "xcoord": 85.314056448970959, "ycoord": 27.64115329649027 }, "geometry": { "type": "Point", "coordinates": [ 85.314056448970959, 27.64115329649027 ] } }, +{ "type": "Feature", "properties": { "zoneid": 14, "bldid": 838, "nhouse": 5, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 81, "repvalue": 1620000, "xcoord": 85.313551524443113, "ycoord": 27.639740262394145 }, "geometry": { "type": "Point", "coordinates": [ 85.313551524443113, 27.639740262394145 ] } }, +{ "type": "Feature", "properties": { "zoneid": 14, "bldid": 2124, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 128, "repvalue": 1792000, "xcoord": 85.313266700498332, "ycoord": 27.641143690242863 }, "geometry": { "type": "Point", "coordinates": [ 85.313266700498332, 27.641143690242863 ] } }, +{ "type": "Feature", "properties": { "zoneid": 14, "bldid": 2133, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 95, "repvalue": 1330000, "xcoord": 85.313147664047662, "ycoord": 27.640321554550056 }, "geometry": { "type": "Point", "coordinates": [ 85.313147664047662, 27.640321554550056 ] } }, +{ "type": "Feature", "properties": { "zoneid": 14, "bldid": 2139, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Com", "fptarea": 136, "repvalue": 1632000, "xcoord": 85.313284682157814, "ycoord": 27.639971498396992 }, "geometry": { "type": "Point", "coordinates": [ 85.313284682157814, 27.639971498396992 ] } }, +{ "type": "Feature", "properties": { "zoneid": 14, "bldid": 2142, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Com", "fptarea": 127, "repvalue": 2286000, "xcoord": 85.31327928777398, "ycoord": 27.640323155972698 }, "geometry": { "type": "Point", "coordinates": [ 85.31327928777398, 27.640323155972698 ] } }, +{ "type": "Feature", "properties": { "zoneid": 14, "bldid": 2150, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Com", "fptarea": 98, "repvalue": 980000, "xcoord": 85.313261305788743, "ycoord": 27.641495347755864 }, "geometry": { "type": "Point", "coordinates": [ 85.313261305788743, 27.641495347755864 ] } }, +{ "type": "Feature", "properties": { "zoneid": 14, "bldid": 2173, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Com", "fptarea": 107, "repvalue": 2140000, "xcoord": 85.313531747880262, "ycoord": 27.641029673633664 }, "geometry": { "type": "Point", "coordinates": [ 85.313531747880262, 27.641029673633664 ] } }, +{ "type": "Feature", "properties": { "zoneid": 14, "bldid": 2183, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 100, "repvalue": 1200000, "xcoord": 85.31353534371668, "ycoord": 27.640795235245289 }, "geometry": { "type": "Point", "coordinates": [ 85.31353534371668, 27.640795235245289 ] } }, +{ "type": "Feature", "properties": { "zoneid": 14, "bldid": 2192, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Com", "fptarea": 143, "repvalue": 2288000, "xcoord": 85.313666968036202, "ycoord": 27.640796836325148 }, "geometry": { "type": "Point", "coordinates": [ 85.313666968036202, 27.640796836325148 ] } }, +{ "type": "Feature", "properties": { "zoneid": 14, "bldid": 2205, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 149, "repvalue": 2682000, "xcoord": 85.313661574685796, "ycoord": 27.641148493928373 }, "geometry": { "type": "Point", "coordinates": [ 85.313661574685796, 27.641148493928373 ] } }, +{ "type": "Feature", "properties": { "zoneid": 14, "bldid": 2213, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 99, "repvalue": 1782000, "xcoord": 85.313684945165306, "ycoord": 27.639624644178529 }, "geometry": { "type": "Point", "coordinates": [ 85.313684945165306, 27.639624644178529 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 839, "nhouse": 1, "residents": 8, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 86, "repvalue": 172000, "xcoord": 85.317757501016814, "ycoord": 27.637134236976262 }, "geometry": { "type": "Point", "coordinates": [ 85.317757501016814, 27.637134236976262 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 840, "nhouse": 10, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 84, "repvalue": 1008000, "xcoord": 85.316660183831786, "ycoord": 27.63459110368478 }, "geometry": { "type": "Point", "coordinates": [ 85.316660183831786, 27.63459110368478 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 841, "nhouse": 6, "residents": 30, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 51, "repvalue": 612000, "xcoord": 85.310771609558486, "ycoord": 27.63330518111206 }, "geometry": { "type": "Point", "coordinates": [ 85.310771609558486, 27.63330518111206 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 842, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 75, "repvalue": 150000, "xcoord": 85.315841740095181, "ycoord": 27.636099054158141 }, "geometry": { "type": "Point", "coordinates": [ 85.315841740095181, 27.636099054158141 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 843, "nhouse": 18, "residents": 68, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 81, "repvalue": 1620000, "xcoord": 85.312981513111225, "ycoord": 27.6373797853621 }, "geometry": { "type": "Point", "coordinates": [ 85.312981513111225, 27.6373797853621 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 844, "nhouse": 5, "residents": 18, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 87, "repvalue": 522000, "xcoord": 85.309965534915108, "ycoord": 27.634003706059289 }, "geometry": { "type": "Point", "coordinates": [ 85.309965534915108, 27.634003706059289 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 845, "nhouse": 8, "residents": 30, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 63, "repvalue": 756000, "xcoord": 85.315027923643001, "ycoord": 27.637303477382105 }, "geometry": { "type": "Point", "coordinates": [ 85.315027923643001, 27.637303477382105 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 846, "nhouse": 6, "residents": 22, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 46, "repvalue": 552000, "xcoord": 85.315605238249276, "ycoord": 27.636703336725041 }, "geometry": { "type": "Point", "coordinates": [ 85.315605238249276, 27.636703336725041 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 847, "nhouse": 6, "residents": 21, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 76, "repvalue": 608000, "xcoord": 85.312099085599485, "ycoord": 27.635648773714465 }, "geometry": { "type": "Point", "coordinates": [ 85.312099085599485, 27.635648773714465 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 848, "nhouse": 6, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 58, "repvalue": 580000, "xcoord": 85.30913611778692, "ycoord": 27.636219827139705 }, "geometry": { "type": "Point", "coordinates": [ 85.30913611778692, 27.636219827139705 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 849, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "BrCri+MC+3s+Res", "fptarea": 47, "repvalue": 282000, "xcoord": 85.311188720721091, "ycoord": 27.635738880990921 }, "geometry": { "type": "Point", "coordinates": [ 85.311188720721091, 27.635738880990921 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 850, "nhouse": 5, "residents": 14, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 81, "repvalue": 486000, "xcoord": 85.318364193958516, "ycoord": 27.63461178009986 }, "geometry": { "type": "Point", "coordinates": [ 85.318364193958516, 27.63461178009986 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 851, "nhouse": 3, "residents": 8, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 70, "repvalue": 280000, "xcoord": 85.312751201967245, "ycoord": 27.637579367808438 }, "geometry": { "type": "Point", "coordinates": [ 85.312751201967245, 27.637579367808438 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 852, "nhouse": 6, "residents": 24, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 77, "repvalue": 616000, "xcoord": 85.308824872090128, "ycoord": 27.634293375874446 }, "geometry": { "type": "Point", "coordinates": [ 85.308824872090128, 27.634293375874446 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 853, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 50, "repvalue": 200000, "xcoord": 85.316510962781209, "ycoord": 27.636916722011897 }, "geometry": { "type": "Point", "coordinates": [ 85.316510962781209, 27.636916722011897 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 854, "nhouse": 11, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 66, "repvalue": 1056000, "xcoord": 85.313675544334728, "ycoord": 27.636578688186408 }, "geometry": { "type": "Point", "coordinates": [ 85.313675544334728, 27.636578688186408 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 855, "nhouse": 5, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 45, "repvalue": 540000, "xcoord": 85.312637598499734, "ycoord": 27.637577985298176 }, "geometry": { "type": "Point", "coordinates": [ 85.312637598499734, 27.637577985298176 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 856, "nhouse": 18, "residents": 56, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 50, "repvalue": 1600000, "xcoord": 85.315085275403789, "ycoord": 27.633560049289844 }, "geometry": { "type": "Point", "coordinates": [ 85.315085275403789, 27.633560049289844 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 857, "nhouse": 9, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 61, "repvalue": 854000, "xcoord": 85.317212706645591, "ycoord": 27.635609736645662 }, "geometry": { "type": "Point", "coordinates": [ 85.317212706645591, 27.635609736645662 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 858, "nhouse": 8, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 52, "repvalue": 728000, "xcoord": 85.31144699040162, "ycoord": 27.633718177059734 }, "geometry": { "type": "Point", "coordinates": [ 85.31144699040162, 27.633718177059734 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 859, "nhouse": 28, "residents": 124, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 79, "repvalue": 2528000, "xcoord": 85.316840932181179, "ycoord": 27.637629076245052 }, "geometry": { "type": "Point", "coordinates": [ 85.316840932181179, 27.637629076245052 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 860, "nhouse": 15, "residents": 65, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 46, "repvalue": 1380000, "xcoord": 85.313882583254951, "ycoord": 27.637896708708563 }, "geometry": { "type": "Point", "coordinates": [ 85.313882583254951, 27.637896708708563 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 861, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 52, "repvalue": 312000, "xcoord": 85.314517278215916, "ycoord": 27.633553146289078 }, "geometry": { "type": "Point", "coordinates": [ 85.314517278215916, 27.633553146289078 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 862, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 72, "repvalue": 288000, "xcoord": 85.316507865149845, "ycoord": 27.637119069581562 }, "geometry": { "type": "Point", "coordinates": [ 85.316507865149845, 27.637119069581562 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 863, "nhouse": 5, "residents": 14, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 87, "repvalue": 522000, "xcoord": 85.310276800210389, "ycoord": 27.63593015569618 }, "geometry": { "type": "Point", "coordinates": [ 85.310276800210389, 27.63593015569618 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 864, "nhouse": 11, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 70, "repvalue": 980000, "xcoord": 85.313087356393751, "ycoord": 27.637887035569193 }, "geometry": { "type": "Point", "coordinates": [ 85.313087356393751, 27.637887035569193 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 865, "nhouse": 21, "residents": 77, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 86, "repvalue": 1892000, "xcoord": 85.313485575484989, "ycoord": 27.634147757072022 }, "geometry": { "type": "Point", "coordinates": [ 85.313485575484989, 27.634147757072022 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 866, "nhouse": 4, "residents": 11, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 51, "repvalue": 408000, "xcoord": 85.315264430083403, "ycoord": 27.636699196049108 }, "geometry": { "type": "Point", "coordinates": [ 85.315264430083403, 27.636699196049108 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 867, "nhouse": 5, "residents": 24, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 81, "repvalue": 486000, "xcoord": 85.316836286492105, "ycoord": 27.63793259761762 }, "geometry": { "type": "Point", "coordinates": [ 85.316836286492105, 27.63793259761762 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 868, "nhouse": 1, "residents": 1, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 44, "repvalue": 176000, "xcoord": 85.315365633855635, "ycoord": 27.637509966161424 }, "geometry": { "type": "Point", "coordinates": [ 85.315365633855635, 27.637509966161424 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 869, "nhouse": 12, "residents": 49, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 81, "repvalue": 1134000, "xcoord": 85.31240418103458, "ycoord": 27.637979914237512 }, "geometry": { "type": "Point", "coordinates": [ 85.31240418103458, 27.637979914237512 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 870, "nhouse": 28, "residents": 114, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 80, "repvalue": 2560000, "xcoord": 85.317072784712295, "ycoord": 27.637328312869172 }, "geometry": { "type": "Point", "coordinates": [ 85.317072784712295, 27.637328312869172 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 871, "nhouse": 7, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 49, "repvalue": 686000, "xcoord": 85.311902940930139, "ycoord": 27.633622536141893 }, "geometry": { "type": "Point", "coordinates": [ 85.311902940930139, 27.633622536141893 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 872, "nhouse": 16, "residents": 51, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 48, "repvalue": 1536000, "xcoord": 85.316291501763516, "ycoord": 27.636408094226098 }, "geometry": { "type": "Point", "coordinates": [ 85.316291501763516, 27.636408094226098 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 873, "nhouse": 7, "residents": 30, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 53, "repvalue": 636000, "xcoord": 85.314392824933847, "ycoord": 27.634259981450942 }, "geometry": { "type": "Point", "coordinates": [ 85.314392824933847, 27.634259981450942 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 874, "nhouse": 13, "residents": 50, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 54, "repvalue": 1188000, "xcoord": 85.312484908144114, "ycoord": 27.632718887189569 }, "geometry": { "type": "Point", "coordinates": [ 85.312484908144114, 27.632718887189569 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 875, "nhouse": 4, "residents": 18, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 79, "repvalue": 474000, "xcoord": 85.316327126076985, "ycoord": 27.63408109681988 }, "geometry": { "type": "Point", "coordinates": [ 85.316327126076985, 27.63408109681988 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 876, "nhouse": 13, "residents": 54, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 51, "repvalue": 1224000, "xcoord": 85.312013434804996, "ycoord": 27.633826266269018 }, "geometry": { "type": "Point", "coordinates": [ 85.312013434804996, 27.633826266269018 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 877, "nhouse": 6, "residents": 20, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 79, "repvalue": 632000, "xcoord": 85.310410607988302, "ycoord": 27.634616284677225 }, "geometry": { "type": "Point", "coordinates": [ 85.310410607988302, 27.634616284677225 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 878, "nhouse": 7, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 83, "repvalue": 664000, "xcoord": 85.311051812393643, "ycoord": 27.637255099907843 }, "geometry": { "type": "Point", "coordinates": [ 85.311051812393643, 27.637255099907843 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 879, "nhouse": 10, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 77, "repvalue": 924000, "xcoord": 85.316070493515639, "ycoord": 27.636000639925015 }, "geometry": { "type": "Point", "coordinates": [ 85.316070493515639, 27.636000639925015 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 880, "nhouse": 12, "residents": 53, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 77, "repvalue": 1078000, "xcoord": 85.314942224444096, "ycoord": 27.635480969941877 }, "geometry": { "type": "Point", "coordinates": [ 85.314942224444096, 27.635480969941877 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 881, "nhouse": 10, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 76, "repvalue": 912000, "xcoord": 85.31479451533103, "ycoord": 27.637705410777706 }, "geometry": { "type": "Point", "coordinates": [ 85.31479451533103, 27.637705410777706 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 882, "nhouse": 7, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 48, "repvalue": 672000, "xcoord": 85.311283679373602, "ycoord": 27.636954346871654 }, "geometry": { "type": "Point", "coordinates": [ 85.311283679373602, 27.636954346871654 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 883, "nhouse": 10, "residents": 43, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 77, "repvalue": 924000, "xcoord": 85.316960729669205, "ycoord": 27.637225760105782 }, "geometry": { "type": "Point", "coordinates": [ 85.316960729669205, 27.637225760105782 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 884, "nhouse": 6, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 53, "repvalue": 530000, "xcoord": 85.313230445149216, "ycoord": 27.635966119052846 }, "geometry": { "type": "Point", "coordinates": [ 85.313230445149216, 27.635966119052846 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 885, "nhouse": 34, "residents": 121, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 86, "repvalue": 3096000, "xcoord": 85.310829268478557, "ycoord": 27.636948811579128 }, "geometry": { "type": "Point", "coordinates": [ 85.310829268478557, 27.636948811579128 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 886, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 75, "repvalue": 300000, "xcoord": 85.317334048107384, "ycoord": 27.635105246059236 }, "geometry": { "type": "Point", "coordinates": [ 85.317334048107384, 27.635105246059236 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 887, "nhouse": 10, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 69, "repvalue": 966000, "xcoord": 85.31406443144455, "ycoord": 27.633446448506245 }, "geometry": { "type": "Point", "coordinates": [ 85.31406443144455, 27.633446448506245 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 888, "nhouse": 26, "residents": 97, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 80, "repvalue": 2400000, "xcoord": 85.311658658372679, "ycoord": 27.634732679311284 }, "geometry": { "type": "Point", "coordinates": [ 85.311658658372679, 27.634732679311284 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 889, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 63, "repvalue": 126000, "xcoord": 85.310933547458447, "ycoord": 27.637557236485161 }, "geometry": { "type": "Point", "coordinates": [ 85.310933547458447, 27.637557236485161 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 890, "nhouse": 2, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 57, "repvalue": 228000, "xcoord": 85.309363321513686, "ycoord": 27.636222597678664 }, "geometry": { "type": "Point", "coordinates": [ 85.309363321513686, 27.636222597678664 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 891, "nhouse": 7, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 45, "repvalue": 720000, "xcoord": 85.312422812309492, "ycoord": 27.636765831446265 }, "geometry": { "type": "Point", "coordinates": [ 85.312422812309492, 27.636765831446265 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 892, "nhouse": 9, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 84, "repvalue": 840000, "xcoord": 85.311229112235125, "ycoord": 27.633108368794755 }, "geometry": { "type": "Point", "coordinates": [ 85.311229112235125, 27.633108368794755 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 893, "nhouse": 18, "residents": 75, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 76, "repvalue": 1672000, "xcoord": 85.31799399229746, "ycoord": 27.636529950287819 }, "geometry": { "type": "Point", "coordinates": [ 85.31799399229746, 27.636529950287819 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 894, "nhouse": 7, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 65, "repvalue": 650000, "xcoord": 85.307827379039708, "ycoord": 27.632662128233001 }, "geometry": { "type": "Point", "coordinates": [ 85.307827379039708, 27.632662128233001 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 895, "nhouse": 8, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 54, "repvalue": 756000, "xcoord": 85.313484024073034, "ycoord": 27.634248930740217 }, "geometry": { "type": "Point", "coordinates": [ 85.313484024073034, 27.634248930740217 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 896, "nhouse": 9, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 70, "repvalue": 840000, "xcoord": 85.311632254051844, "ycoord": 27.63645262969143 }, "geometry": { "type": "Point", "coordinates": [ 85.311632254051844, 27.63645262969143 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 897, "nhouse": 6, "residents": 21, "specialfac": 0, "expstr": "BrCri+MC+4s+Res", "fptarea": 72, "repvalue": 576000, "xcoord": 85.316434531341017, "ycoord": 27.63448717143169 }, "geometry": { "type": "Point", "coordinates": [ 85.316434531341017, 27.63448717143169 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 898, "nhouse": 3, "residents": 15, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 55, "repvalue": 330000, "xcoord": 85.315419875408807, "ycoord": 27.633968885077064 }, "geometry": { "type": "Point", "coordinates": [ 85.315419875408807, 27.633968885077064 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 899, "nhouse": 32, "residents": 122, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 81, "repvalue": 2916000, "xcoord": 85.309187446342051, "ycoord": 27.632881103716361 }, "geometry": { "type": "Point", "coordinates": [ 85.309187446342051, 27.632881103716361 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 900, "nhouse": 30, "residents": 117, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 76, "repvalue": 2736000, "xcoord": 85.312928439042082, "ycoord": 27.633432631871528 }, "geometry": { "type": "Point", "coordinates": [ 85.312928439042082, 27.633432631871528 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 901, "nhouse": 12, "residents": 52, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 80, "repvalue": 1120000, "xcoord": 85.308614786956639, "ycoord": 27.633177697012037 }, "geometry": { "type": "Point", "coordinates": [ 85.308614786956639, 27.633177697012037 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 902, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 54, "repvalue": 216000, "xcoord": 85.314105137723814, "ycoord": 27.638202992559197 }, "geometry": { "type": "Point", "coordinates": [ 85.314105137723814, 27.638202992559197 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 903, "nhouse": 14, "residents": 60, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 60, "repvalue": 1320000, "xcoord": 85.315360984119238, "ycoord": 27.637813487308495 }, "geometry": { "type": "Point", "coordinates": [ 85.315360984119238, 27.637813487308495 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 904, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 80, "repvalue": 320000, "xcoord": 85.310865009150149, "ycoord": 27.634621820912866 }, "geometry": { "type": "Point", "coordinates": [ 85.310865009150149, 27.634621820912866 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 905, "nhouse": 26, "residents": 106, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 86, "repvalue": 2408000, "xcoord": 85.314048922746053, "ycoord": 27.634458185522579 }, "geometry": { "type": "Point", "coordinates": [ 85.314048922746053, 27.634458185522579 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 906, "nhouse": 9, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 69, "repvalue": 828000, "xcoord": 85.312295235414908, "ycoord": 27.637675010765562 }, "geometry": { "type": "Point", "coordinates": [ 85.312295235414908, 27.637675010765562 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 907, "nhouse": 12, "residents": 52, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 80, "repvalue": 1120000, "xcoord": 85.309266828997309, "ycoord": 27.63510830477113 }, "geometry": { "type": "Point", "coordinates": [ 85.309266828997309, 27.63510830477113 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 908, "nhouse": 9, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 73, "repvalue": 876000, "xcoord": 85.3177822627908, "ycoord": 27.635515455206573 }, "geometry": { "type": "Point", "coordinates": [ 85.3177822627908, 27.635515455206573 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 909, "nhouse": 5, "residents": 28, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 86, "repvalue": 516000, "xcoord": 85.309464481278965, "ycoord": 27.637033370192054 }, "geometry": { "type": "Point", "coordinates": [ 85.309464481278965, 27.637033370192054 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 910, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 81, "repvalue": 324000, "xcoord": 85.31428232615248, "ycoord": 27.634056253016855 }, "geometry": { "type": "Point", "coordinates": [ 85.31428232615248, 27.634056253016855 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 911, "nhouse": 12, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 72, "repvalue": 1152000, "xcoord": 85.3161856445994, "ycoord": 27.635900845767605 }, "geometry": { "type": "Point", "coordinates": [ 85.3161856445994, 27.635900845767605 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 912, "nhouse": 11, "residents": 43, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 84, "repvalue": 1008000, "xcoord": 85.31444439954933, "ycoord": 27.638308309949768 }, "geometry": { "type": "Point", "coordinates": [ 85.31444439954933, 27.638308309949768 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 913, "nhouse": 9, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 70, "repvalue": 840000, "xcoord": 85.314951525234747, "ycoord": 27.634873927560619 }, "geometry": { "type": "Point", "coordinates": [ 85.314951525234747, 27.634873927560619 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 914, "nhouse": 2, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 51, "repvalue": 204000, "xcoord": 85.315143077055708, "ycoord": 27.637203684211713 }, "geometry": { "type": "Point", "coordinates": [ 85.315143077055708, 27.637203684211713 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 915, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "BrCfl+MC+2s+Res", "fptarea": 75, "repvalue": 300000, "xcoord": 85.312186290356905, "ycoord": 27.637370107222093 }, "geometry": { "type": "Point", "coordinates": [ 85.312186290356905, 27.637370107222093 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 916, "nhouse": 17, "residents": 80, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 64, "repvalue": 1664000, "xcoord": 85.317881937125307, "ycoord": 27.636427398255901 }, "geometry": { "type": "Point", "coordinates": [ 85.317881937125307, 27.636427398255901 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 917, "nhouse": 5, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 47, "repvalue": 470000, "xcoord": 85.31823666939431, "ycoord": 27.635520967455811 }, "geometry": { "type": "Point", "coordinates": [ 85.31823666939431, 27.635520967455811 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 918, "nhouse": 7, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 52, "repvalue": 728000, "xcoord": 85.314854976274475, "ycoord": 27.633759635863775 }, "geometry": { "type": "Point", "coordinates": [ 85.314854976274475, 27.633759635863775 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 919, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 70, "repvalue": 140000, "xcoord": 85.30950647132201, "ycoord": 27.634301687373686 }, "geometry": { "type": "Point", "coordinates": [ 85.30950647132201, 27.634301687373686 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 920, "nhouse": 13, "residents": 62, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 45, "repvalue": 1260000, "xcoord": 85.315146177208703, "ycoord": 27.637001336786824 }, "geometry": { "type": "Point", "coordinates": [ 85.315146177208703, 27.637001336786824 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 921, "nhouse": 14, "residents": 57, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 80, "repvalue": 1280000, "xcoord": 85.312710553004621, "ycoord": 27.632822825569942 }, "geometry": { "type": "Point", "coordinates": [ 85.312710553004621, 27.632822825569942 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 922, "nhouse": 5, "residents": 22, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 47, "repvalue": 470000, "xcoord": 85.312234423734438, "ycoord": 27.634233726296657 }, "geometry": { "type": "Point", "coordinates": [ 85.312234423734438, 27.634233726296657 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 923, "nhouse": 12, "residents": 53, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 44, "repvalue": 1144000, "xcoord": 85.314277674108581, "ycoord": 27.634359774145533 }, "geometry": { "type": "Point", "coordinates": [ 85.314277674108581, 27.634359774145533 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 924, "nhouse": 5, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 44, "repvalue": 528000, "xcoord": 85.314449051912518, "ycoord": 27.638004788967791 }, "geometry": { "type": "Point", "coordinates": [ 85.314449051912518, 27.638004788967791 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 925, "nhouse": 7, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 55, "repvalue": 660000, "xcoord": 85.317065043021827, "ycoord": 27.637834181898008 }, "geometry": { "type": "Point", "coordinates": [ 85.317065043021827, 27.637834181898008 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 926, "nhouse": 9, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 74, "repvalue": 888000, "xcoord": 85.311739643594379, "ycoord": 27.636858707138902 }, "geometry": { "type": "Point", "coordinates": [ 85.311739643594379, 27.636858707138902 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 927, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 52, "repvalue": 312000, "xcoord": 85.311297661605963, "ycoord": 27.636043785191596 }, "geometry": { "type": "Point", "coordinates": [ 85.311297661605963, 27.636043785191596 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 928, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 69, "repvalue": 276000, "xcoord": 85.312748097332587, "ycoord": 27.637781714966462 }, "geometry": { "type": "Point", "coordinates": [ 85.312748097332587, 27.637781714966462 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 929, "nhouse": 10, "residents": 46, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 68, "repvalue": 952000, "xcoord": 85.310656456664248, "ycoord": 27.633404970709361 }, "geometry": { "type": "Point", "coordinates": [ 85.310656456664248, 27.633404970709361 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 930, "nhouse": 7, "residents": 29, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 51, "repvalue": 714000, "xcoord": 85.31083393054827, "ycoord": 27.636645291104152 }, "geometry": { "type": "Point", "coordinates": [ 85.31083393054827, 27.636645291104152 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 931, "nhouse": 26, "residents": 128, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 79, "repvalue": 2370000, "xcoord": 85.310046487593866, "ycoord": 27.636129733604314 }, "geometry": { "type": "Point", "coordinates": [ 85.310046487593866, 27.636129733604314 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 932, "nhouse": 4, "residents": 22, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 50, "repvalue": 400000, "xcoord": 85.315751379173264, "ycoord": 27.634580067709152 }, "geometry": { "type": "Point", "coordinates": [ 85.315751379173264, 27.634580067709152 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 933, "nhouse": 8, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 81, "repvalue": 810000, "xcoord": 85.310256591333484, "ycoord": 27.637245410743343 }, "geometry": { "type": "Point", "coordinates": [ 85.310256591333484, 27.637245410743343 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 934, "nhouse": 6, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 47, "repvalue": 564000, "xcoord": 85.309302599925402, "ycoord": 27.632781315367325 }, "geometry": { "type": "Point", "coordinates": [ 85.309302599925402, 27.632781315367325 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 935, "nhouse": 4, "residents": 12, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 76, "repvalue": 456000, "xcoord": 85.313908954008497, "ycoord": 27.636176756688442 }, "geometry": { "type": "Point", "coordinates": [ 85.313908954008497, 27.636176756688442 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 936, "nhouse": 34, "residents": 144, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 88, "repvalue": 3168000, "xcoord": 85.311426797411102, "ycoord": 27.635033433321823 }, "geometry": { "type": "Point", "coordinates": [ 85.311426797411102, 27.635033433321823 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 937, "nhouse": 9, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 88, "repvalue": 880000, "xcoord": 85.313723633638915, "ycoord": 27.633442304492082 }, "geometry": { "type": "Point", "coordinates": [ 85.313723633638915, 27.633442304492082 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 938, "nhouse": 11, "residents": 49, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 75, "repvalue": 1050000, "xcoord": 85.318221197703139, "ycoord": 27.636532706344365 }, "geometry": { "type": "Point", "coordinates": [ 85.318221197703139, 27.636532706344365 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 939, "nhouse": 11, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 73, "repvalue": 1022000, "xcoord": 85.309827058427757, "ycoord": 27.635621096931157 }, "geometry": { "type": "Point", "coordinates": [ 85.309827058427757, 27.635621096931157 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 940, "nhouse": 28, "residents": 112, "specialfac": 0, "expstr": "RCi+HC+19s+Res", "fptarea": 70, "repvalue": 2660000, "xcoord": 85.316761396886619, "ycoord": 27.635401873385415 }, "geometry": { "type": "Point", "coordinates": [ 85.316761396886619, 27.635401873385415 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 941, "nhouse": 22, "residents": 84, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 86, "repvalue": 2064000, "xcoord": 85.309139228859763, "ycoord": 27.636017480313836 }, "geometry": { "type": "Point", "coordinates": [ 85.309139228859763, 27.636017480313836 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 942, "nhouse": 15, "residents": 81, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 64, "repvalue": 1408000, "xcoord": 85.308617898586803, "ycoord": 27.632975350151995 }, "geometry": { "type": "Point", "coordinates": [ 85.308617898586803, 27.632975350151995 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 943, "nhouse": 5, "residents": 16, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 81, "repvalue": 486000, "xcoord": 85.312997033549379, "ycoord": 27.636368049329214 }, "geometry": { "type": "Point", "coordinates": [ 85.312997033549379, 27.636368049329214 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 944, "nhouse": 9, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 60, "repvalue": 840000, "xcoord": 85.315021722790163, "ycoord": 27.637708172183348 }, "geometry": { "type": "Point", "coordinates": [ 85.315021722790163, 27.637708172183348 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 945, "nhouse": 3, "residents": 15, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 46, "repvalue": 276000, "xcoord": 85.310553735887254, "ycoord": 27.632695371954451 }, "geometry": { "type": "Point", "coordinates": [ 85.310553735887254, 27.632695371954451 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 946, "nhouse": 8, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 80, "repvalue": 800000, "xcoord": 85.313606931876507, "ycoord": 27.633643270336513 }, "geometry": { "type": "Point", "coordinates": [ 85.313606931876507, 27.633643270336513 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 947, "nhouse": 6, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 47, "repvalue": 564000, "xcoord": 85.312197159863871, "ycoord": 27.636661892305202 }, "geometry": { "type": "Point", "coordinates": [ 85.312197159863871, 27.636661892305202 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 948, "nhouse": 8, "residents": 29, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 74, "repvalue": 740000, "xcoord": 85.309271495013718, "ycoord": 27.634804784460833 }, "geometry": { "type": "Point", "coordinates": [ 85.309271495013718, 27.634804784460833 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 949, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 67, "repvalue": 268000, "xcoord": 85.313829477607413, "ycoord": 27.633949554391645 }, "geometry": { "type": "Point", "coordinates": [ 85.313829477607413, 27.633949554391645 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 950, "nhouse": 6, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 56, "repvalue": 560000, "xcoord": 85.31041682499, "ycoord": 27.634211590658953 }, "geometry": { "type": "Point", "coordinates": [ 85.31041682499, 27.634211590658953 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 951, "nhouse": 9, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 53, "repvalue": 848000, "xcoord": 85.315606787871857, "ycoord": 27.636602162981976 }, "geometry": { "type": "Point", "coordinates": [ 85.315606787871857, 27.636602162981976 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 952, "nhouse": 8, "residents": 29, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 60, "repvalue": 720000, "xcoord": 85.310088461575845, "ycoord": 27.633398049607855 }, "geometry": { "type": "Point", "coordinates": [ 85.310088461575845, 27.633398049607855 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 953, "nhouse": 6, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 50, "repvalue": 600000, "xcoord": 85.309238831366685, "ycoord": 27.636929426338636 }, "geometry": { "type": "Point", "coordinates": [ 85.309238831366685, 27.636929426338636 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 954, "nhouse": 9, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 80, "repvalue": 800000, "xcoord": 85.314226496824659, "ycoord": 27.637698505636227 }, "geometry": { "type": "Point", "coordinates": [ 85.314226496824659, 27.637698505636227 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 955, "nhouse": 19, "residents": 83, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 63, "repvalue": 1764000, "xcoord": 85.309981080865313, "ycoord": 27.632991971110371 }, "geometry": { "type": "Point", "coordinates": [ 85.309981080865313, 27.632991971110371 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 956, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 81, "repvalue": 162000, "xcoord": 85.312128586993765, "ycoord": 27.633726475514887 }, "geometry": { "type": "Point", "coordinates": [ 85.312128586993765, 27.633726475514887 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 957, "nhouse": 3, "residents": 8, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 81, "repvalue": 324000, "xcoord": 85.310987931783444, "ycoord": 27.634016163524969 }, "geometry": { "type": "Point", "coordinates": [ 85.310987931783444, 27.634016163524969 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 958, "nhouse": 34, "residents": 145, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 84, "repvalue": 3024000, "xcoord": 85.309710347190105, "ycoord": 27.635822059013233 }, "geometry": { "type": "Point", "coordinates": [ 85.309710347190105, 27.635822059013233 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 959, "nhouse": 7, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 66, "repvalue": 660000, "xcoord": 85.314223394888188, "ycoord": 27.637900852944814 }, "geometry": { "type": "Point", "coordinates": [ 85.314223394888188, 27.637900852944814 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 960, "nhouse": 5, "residents": 23, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 58, "repvalue": 464000, "xcoord": 85.315711093275368, "ycoord": 27.637210585485867 }, "geometry": { "type": "Point", "coordinates": [ 85.315711093275368, 27.637210585485867 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 961, "nhouse": 26, "residents": 109, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 74, "repvalue": 2368000, "xcoord": 85.314147014611535, "ycoord": 27.635471303653517 }, "geometry": { "type": "Point", "coordinates": [ 85.314147014611535, 27.635471303653517 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 962, "nhouse": 11, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 88, "repvalue": 1056000, "xcoord": 85.309971753392432, "ycoord": 27.633599012098404 }, "geometry": { "type": "Point", "coordinates": [ 85.309971753392432, 27.633599012098404 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 963, "nhouse": 21, "residents": 80, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 60, "repvalue": 1920000, "xcoord": 85.313276994377134, "ycoord": 27.632930909478489 }, "geometry": { "type": "Point", "coordinates": [ 85.313276994377134, 27.632930909478489 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 964, "nhouse": 13, "residents": 60, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 85, "repvalue": 1190000, "xcoord": 85.31322578982612, "ycoord": 27.636269639933225 }, "geometry": { "type": "Point", "coordinates": [ 85.31322578982612, 27.636269639933225 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 965, "nhouse": 7, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 57, "repvalue": 684000, "xcoord": 85.310267473206579, "ycoord": 27.636537196519885 }, "geometry": { "type": "Point", "coordinates": [ 85.310267473206579, 27.636537196519885 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 966, "nhouse": 20, "residents": 82, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 52, "repvalue": 1872000, "xcoord": 85.310164753167953, "ycoord": 27.635827597764706 }, "geometry": { "type": "Point", "coordinates": [ 85.310164753167953, 27.635827597764706 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 967, "nhouse": 5, "residents": 19, "specialfac": 0, "expstr": "BrCfl+MC+3s+Res", "fptarea": 78, "repvalue": 468000, "xcoord": 85.314670057617676, "ycoord": 27.638412245653608 }, "geometry": { "type": "Point", "coordinates": [ 85.314670057617676, 27.638412245653608 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 968, "nhouse": 21, "residents": 83, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 76, "repvalue": 1976000, "xcoord": 85.313218030792484, "ycoord": 27.636775508036042 }, "geometry": { "type": "Point", "coordinates": [ 85.313218030792484, 27.636775508036042 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 969, "nhouse": 17, "residents": 66, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 61, "repvalue": 1586000, "xcoord": 85.313252169028019, "ycoord": 27.63454968809252 }, "geometry": { "type": "Point", "coordinates": [ 85.313252169028019, 27.63454968809252 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 970, "nhouse": 10, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 56, "repvalue": 896000, "xcoord": 85.313827926524752, "ycoord": 27.63405072808068 }, "geometry": { "type": "Point", "coordinates": [ 85.313827926524752, 27.63405072808068 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 971, "nhouse": 27, "residents": 106, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 83, "repvalue": 2490000, "xcoord": 85.315992522257247, "ycoord": 27.633672263063747 }, "geometry": { "type": "Point", "coordinates": [ 85.315992522257247, 27.633672263063747 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 972, "nhouse": 17, "residents": 60, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 77, "repvalue": 1540000, "xcoord": 85.313038934692145, "ycoord": 27.633636361262724 }, "geometry": { "type": "Point", "coordinates": [ 85.313038934692145, 27.633636361262724 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 973, "nhouse": 4, "residents": 11, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 70, "repvalue": 420000, "xcoord": 85.310729652704993, "ycoord": 27.636036866109841 }, "geometry": { "type": "Point", "coordinates": [ 85.310729652704993, 27.636036866109841 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 974, "nhouse": 26, "residents": 101, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 74, "repvalue": 2368000, "xcoord": 85.311689719284431, "ycoord": 27.63270920769974 }, "geometry": { "type": "Point", "coordinates": [ 85.311689719284431, 27.63270920769974 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 975, "nhouse": 11, "residents": 48, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 82, "repvalue": 984000, "xcoord": 85.311677295308272, "ycoord": 27.633518596419101 }, "geometry": { "type": "Point", "coordinates": [ 85.311677295308272, 27.633518596419101 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 976, "nhouse": 5, "residents": 27, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 68, "repvalue": 544000, "xcoord": 85.315969285280914, "ycoord": 27.635189869989023 }, "geometry": { "type": "Point", "coordinates": [ 85.315969285280914, 27.635189869989023 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 977, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 53, "repvalue": 318000, "xcoord": 85.308046793641466, "ycoord": 27.63317076760206 }, "geometry": { "type": "Point", "coordinates": [ 85.308046793641466, 27.63317076760206 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 978, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 85, "repvalue": 170000, "xcoord": 85.311640020271412, "ycoord": 27.635946761979277 }, "geometry": { "type": "Point", "coordinates": [ 85.311640020271412, 27.635946761979277 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 979, "nhouse": 12, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 77, "repvalue": 1078000, "xcoord": 85.31411134207903, "ycoord": 27.637798297978122 }, "geometry": { "type": "Point", "coordinates": [ 85.31411134207903, 27.637798297978122 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 980, "nhouse": 9, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 87, "repvalue": 870000, "xcoord": 85.316067395194452, "ycoord": 27.636202987475492 }, "geometry": { "type": "Point", "coordinates": [ 85.316067395194452, 27.636202987475492 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 981, "nhouse": 29, "residents": 109, "specialfac": 0, "expstr": "RCi+HC+19s+Res", "fptarea": 71, "repvalue": 2698000, "xcoord": 85.315878922634539, "ycoord": 27.633670883387456 }, "geometry": { "type": "Point", "coordinates": [ 85.315878922634539, 27.633670883387456 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 982, "nhouse": 7, "residents": 24, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 87, "repvalue": 696000, "xcoord": 85.316432982618721, "ycoord": 27.634588345248758 }, "geometry": { "type": "Point", "coordinates": [ 85.316432982618721, 27.634588345248758 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 983, "nhouse": 4, "residents": 21, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 70, "repvalue": 420000, "xcoord": 85.3089431387031, "ycoord": 27.633991241062425 }, "geometry": { "type": "Point", "coordinates": [ 85.3089431387031, 27.633991241062425 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 984, "nhouse": 23, "residents": 88, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 65, "repvalue": 2080000, "xcoord": 85.310756070671559, "ycoord": 27.634316916428773 }, "geometry": { "type": "Point", "coordinates": [ 85.310756070671559, 27.634316916428773 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 985, "nhouse": 18, "residents": 77, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 69, "repvalue": 1656000, "xcoord": 85.31269658437644, "ycoord": 27.633733388337316 }, "geometry": { "type": "Point", "coordinates": [ 85.31269658437644, 27.633733388337316 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 986, "nhouse": 17, "residents": 68, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 55, "repvalue": 1540000, "xcoord": 85.312025856470441, "ycoord": 27.633016877445044 }, "geometry": { "type": "Point", "coordinates": [ 85.312025856470441, 27.633016877445044 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 987, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 83, "repvalue": 332000, "xcoord": 85.311859458552618, "ycoord": 27.636455396162656 }, "geometry": { "type": "Point", "coordinates": [ 85.311859458552618, 27.636455396162656 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 988, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 70, "repvalue": 2380000, "xcoord": 85.310270582240264, "ycoord": 27.63633484958488 }, "geometry": { "type": "Point", "coordinates": [ 85.310270582240264, 27.63633484958488 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 4065, "nhouse": 0, "residents": 0, "specialfac": 1, "expstr": "RCi+HC+7s+Edu", "fptarea": 111, "repvalue": 2331000, "xcoord": 85.308622565971206, "ycoord": 27.63267182985027 }, "geometry": { "type": "Point", "coordinates": [ 85.308622565971206, 27.63267182985027 ] } }, +{ "type": "Feature", "properties": { "zoneid": 16, "bldid": 989, "nhouse": 7, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 46, "repvalue": 644000, "xcoord": 85.315885651358244, "ycoord": 27.640956412826505 }, "geometry": { "type": "Point", "coordinates": [ 85.315885651358244, 27.640956412826505 ] } }, +{ "type": "Feature", "properties": { "zoneid": 16, "bldid": 990, "nhouse": 8, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 65, "repvalue": 780000, "xcoord": 85.317549613098095, "ycoord": 27.640715691158732 }, "geometry": { "type": "Point", "coordinates": [ 85.317549613098095, 27.640715691158732 ] } }, +{ "type": "Feature", "properties": { "zoneid": 16, "bldid": 991, "nhouse": 11, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 53, "repvalue": 1060000, "xcoord": 85.318419109895089, "ycoord": 27.641335064820673 }, "geometry": { "type": "Point", "coordinates": [ 85.318419109895089, 27.641335064820673 ] } }, +{ "type": "Feature", "properties": { "zoneid": 16, "bldid": 992, "nhouse": 12, "residents": 46, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 82, "repvalue": 1148000, "xcoord": 85.314440968937902, "ycoord": 27.639634233134167 }, "geometry": { "type": "Point", "coordinates": [ 85.314440968937902, 27.639634233134167 ] } }, +{ "type": "Feature", "properties": { "zoneid": 16, "bldid": 993, "nhouse": 25, "residents": 106, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 69, "repvalue": 2346000, "xcoord": 85.31549107373074, "ycoord": 27.641212543714531 }, "geometry": { "type": "Point", "coordinates": [ 85.31549107373074, 27.641212543714531 ] } }, +{ "type": "Feature", "properties": { "zoneid": 16, "bldid": 994, "nhouse": 7, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 67, "repvalue": 670000, "xcoord": 85.318336094018619, "ycoord": 27.640377333465853 }, "geometry": { "type": "Point", "coordinates": [ 85.318336094018619, 27.640377333465853 ] } }, +{ "type": "Feature", "properties": { "zoneid": 16, "bldid": 995, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 53, "repvalue": 212000, "xcoord": 85.316789750995682, "ycoord": 27.63931486912978 }, "geometry": { "type": "Point", "coordinates": [ 85.316789750995682, 27.63931486912978 ] } }, +{ "type": "Feature", "properties": { "zoneid": 16, "bldid": 996, "nhouse": 6, "residents": 18, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 62, "repvalue": 868000, "xcoord": 85.31464158822655, "ycoord": 27.639288772573607 }, "geometry": { "type": "Point", "coordinates": [ 85.31464158822655, 27.639288772573607 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2455, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Ind", "fptarea": 100, "repvalue": 900000, "xcoord": 85.318794373107906, "ycoord": 27.637779342456245 }, "geometry": { "type": "Point", "coordinates": [ 85.318794373107906, 27.637779342456245 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2456, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 92, "repvalue": 460000, "xcoord": 85.31921377655388, "ycoord": 27.639260723187348 }, "geometry": { "type": "Point", "coordinates": [ 85.31921377655388, 27.639260723187348 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2457, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 87, "repvalue": 870000, "xcoord": 85.318682377630012, "ycoord": 27.637876404108372 }, "geometry": { "type": "Point", "coordinates": [ 85.318682377630012, 27.637876404108372 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2458, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 95, "repvalue": 475000, "xcoord": 85.318886812201086, "ycoord": 27.638961499880455 }, "geometry": { "type": "Point", "coordinates": [ 85.318886812201086, 27.638961499880455 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2459, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Ind", "fptarea": 92, "repvalue": 460000, "xcoord": 85.318652286398873, "ycoord": 27.639844433226425 }, "geometry": { "type": "Point", "coordinates": [ 85.318652286398873, 27.639844433226425 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2460, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Ind", "fptarea": 94, "repvalue": 658000, "xcoord": 85.318783842268701, "ycoord": 27.638468152763878 }, "geometry": { "type": "Point", "coordinates": [ 85.318783842268701, 27.638468152763878 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2461, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Ind", "fptarea": 93, "repvalue": 651000, "xcoord": 85.319658754054529, "ycoord": 27.639069277508163 }, "geometry": { "type": "Point", "coordinates": [ 85.319658754054529, 27.639069277508163 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2462, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 91, "repvalue": 728000, "xcoord": 85.318765788532133, "ycoord": 27.639648970266265 }, "geometry": { "type": "Point", "coordinates": [ 85.318765788532133, 27.639648970266265 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2463, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 95, "repvalue": 475000, "xcoord": 85.318859732275868, "ycoord": 27.640732726022335 }, "geometry": { "type": "Point", "coordinates": [ 85.318859732275868, 27.640732726022335 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2464, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 97, "repvalue": 776000, "xcoord": 85.319212272451821, "ycoord": 27.639359124664495 }, "geometry": { "type": "Point", "coordinates": [ 85.319212272451821, 27.639359124664495 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2465, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 105, "repvalue": 735000, "xcoord": 85.318977748205882, "ycoord": 27.640242058591198 }, "geometry": { "type": "Point", "coordinates": [ 85.318977748205882, 27.640242058591198 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2466, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 92, "repvalue": 920000, "xcoord": 85.319203247679368, "ycoord": 27.639949533496441 }, "geometry": { "type": "Point", "coordinates": [ 85.319203247679368, 27.639949533496441 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2467, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 94, "repvalue": 846000, "xcoord": 85.318567372755993, "ycoord": 27.638170268584119 }, "geometry": { "type": "Point", "coordinates": [ 85.318567372755993, 27.638170268584119 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2468, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Ind", "fptarea": 100, "repvalue": 700000, "xcoord": 85.318862741278465, "ycoord": 27.64053592314125 }, "geometry": { "type": "Point", "coordinates": [ 85.318862741278465, 27.64053592314125 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2469, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 94, "repvalue": 846000, "xcoord": 85.319560291762969, "ycoord": 27.638280726292805 }, "geometry": { "type": "Point", "coordinates": [ 85.319560291762969, 27.638280726292805 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2470, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Ind", "fptarea": 92, "repvalue": 828000, "xcoord": 85.318665827830401, "ycoord": 27.63895882019618 }, "geometry": { "type": "Point", "coordinates": [ 85.318665827830401, 27.63895882019618 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2471, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 95, "repvalue": 855000, "xcoord": 85.319443784860468, "ycoord": 27.638672993064691 }, "geometry": { "type": "Point", "coordinates": [ 85.319443784860468, 27.638672993064691 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2472, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 99, "repvalue": 792000, "xcoord": 85.319319757037078, "ycoord": 27.639557267094066 }, "geometry": { "type": "Point", "coordinates": [ 85.319319757037078, 27.639557267094066 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2473, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+7s+Ind", "fptarea": 104, "repvalue": 728000, "xcoord": 85.31932878103396, "ycoord": 27.638966858193353 }, "geometry": { "type": "Point", "coordinates": [ 85.31932878103396, 27.638966858193353 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2474, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Ind", "fptarea": 97, "repvalue": 873000, "xcoord": 85.319327277053532, "ycoord": 27.639065259680486 }, "geometry": { "type": "Point", "coordinates": [ 85.319327277053532, 27.639065259680486 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2475, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 86, "repvalue": 860000, "xcoord": 85.31889734261587, "ycoord": 27.638272689585335 }, "geometry": { "type": "Point", "coordinates": [ 85.31889734261587, 27.638272689585335 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2476, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 91, "repvalue": 728000, "xcoord": 85.319119829751344, "ycoord": 27.638176967351932 }, "geometry": { "type": "Point", "coordinates": [ 85.319119829751344, 27.638176967351932 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2477, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 89, "repvalue": 890000, "xcoord": 85.319109300772581, "ycoord": 27.638865777735383 }, "geometry": { "type": "Point", "coordinates": [ 85.319109300772581, 27.638865777735383 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2478, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 94, "repvalue": 752000, "xcoord": 85.31908372884017, "ycoord": 27.640538602651983 }, "geometry": { "type": "Point", "coordinates": [ 85.31908372884017, 27.640538602651983 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2479, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 97, "repvalue": 970000, "xcoord": 85.318547812221439, "ycoord": 27.639449487447962 }, "geometry": { "type": "Point", "coordinates": [ 85.318547812221439, 27.639449487447962 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2480, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+7s+Ind", "fptarea": 101, "repvalue": 707000, "xcoord": 85.31967078331418, "ycoord": 27.638282065436155 }, "geometry": { "type": "Point", "coordinates": [ 85.31967078331418, 27.638282065436155 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2481, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+9s+Ind", "fptarea": 95, "repvalue": 855000, "xcoord": 85.319776764254058, "ycoord": 27.638578609046299 }, "geometry": { "type": "Point", "coordinates": [ 85.319776764254058, 27.638578609046299 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2482, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Ind", "fptarea": 104, "repvalue": 832000, "xcoord": 85.319434761593385, "ycoord": 27.639263402025342 }, "geometry": { "type": "Point", "coordinates": [ 85.319434761593385, 27.639263402025342 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2483, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 90, "repvalue": 540000, "xcoord": 85.3195512692714, "ycoord": 27.638871135322219 }, "geometry": { "type": "Point", "coordinates": [ 85.3195512692714, 27.638871135322219 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2484, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 86, "repvalue": 774000, "xcoord": 85.319425738051876, "ycoord": 27.639853810932987 }, "geometry": { "type": "Point", "coordinates": [ 85.319425738051876, 27.639853810932987 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2485, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 90, "repvalue": 720000, "xcoord": 85.319337804756387, "ycoord": 27.638376449239633 }, "geometry": { "type": "Point", "coordinates": [ 85.319337804756387, 27.638376449239633 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2486, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 102, "repvalue": 816000, "xcoord": 85.319779771340976, "ycoord": 27.638381806011264 }, "geometry": { "type": "Point", "coordinates": [ 85.319779771340976, 27.638381806011264 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2487, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 101, "repvalue": 707000, "xcoord": 85.319775260699174, "ycoord": 27.638677010561608 }, "geometry": { "type": "Point", "coordinates": [ 85.319775260699174, 27.638677010561608 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2488, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Ind", "fptarea": 102, "repvalue": 714000, "xcoord": 85.31854329806886, "ycoord": 27.639744691765816 }, "geometry": { "type": "Point", "coordinates": [ 85.31854329806886, 27.639744691765816 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2489, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 88, "repvalue": 704000, "xcoord": 85.318965712985687, "ycoord": 27.641029270160168 }, "geometry": { "type": "Point", "coordinates": [ 85.318965712985687, 27.641029270160168 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2490, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+9s+Ind", "fptarea": 88, "repvalue": 792000, "xcoord": 85.319558788033433, "ycoord": 27.63837912780139 }, "geometry": { "type": "Point", "coordinates": [ 85.319558788033433, 27.63837912780139 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2491, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 104, "repvalue": 1040000, "xcoord": 85.319685819202761, "ycoord": 27.637298050213648 }, "geometry": { "type": "Point", "coordinates": [ 85.319685819202761, 27.637298050213648 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2492, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 87, "repvalue": 609000, "xcoord": 85.319336300821703, "ycoord": 27.638474850735598 }, "geometry": { "type": "Point", "coordinates": [ 85.319336300821703, 27.638474850735598 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2493, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Ind", "fptarea": 86, "repvalue": 688000, "xcoord": 85.318967217414908, "ycoord": 27.640930868719199 }, "geometry": { "type": "Point", "coordinates": [ 85.318967217414908, 27.640930868719199 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2494, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+6s+Ind", "fptarea": 102, "repvalue": 612000, "xcoord": 85.319542246505421, "ycoord": 27.63946154429863 }, "geometry": { "type": "Point", "coordinates": [ 85.319542246505421, 27.63946154429863 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2495, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 99, "repvalue": 891000, "xcoord": 85.319439273261224, "ycoord": 27.638968197551641 }, "geometry": { "type": "Point", "coordinates": [ 85.319439273261224, 27.638968197551641 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2496, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 100, "repvalue": 600000, "xcoord": 85.318559849626013, "ycoord": 27.638662275868889 }, "geometry": { "type": "Point", "coordinates": [ 85.318559849626013, 27.638662275868889 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2497, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Ind", "fptarea": 97, "repvalue": 970000, "xcoord": 85.319427241994518, "ycoord": 27.639755409452064 }, "geometry": { "type": "Point", "coordinates": [ 85.319427241994518, 27.639755409452064 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2498, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 94, "repvalue": 846000, "xcoord": 85.318786851118034, "ycoord": 27.638271349826198 }, "geometry": { "type": "Point", "coordinates": [ 85.318786851118034, 27.638271349826198 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2499, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 102, "repvalue": 918000, "xcoord": 85.319209264224838, "ycoord": 27.639555927614364 }, "geometry": { "type": "Point", "coordinates": [ 85.319209264224838, 27.639555927614364 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2500, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Ind", "fptarea": 101, "repvalue": 505000, "xcoord": 85.318904864111957, "ycoord": 27.637780682187515 }, "geometry": { "type": "Point", "coordinates": [ 85.318904864111957, 27.637780682187515 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2501, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 103, "repvalue": 618000, "xcoord": 85.318767293052133, "ycoord": 27.639550568815828 }, "geometry": { "type": "Point", "coordinates": [ 85.318767293052133, 27.639550568815828 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2502, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 88, "repvalue": 528000, "xcoord": 85.319352843683902, "ycoord": 27.63739243419899 }, "geometry": { "type": "Point", "coordinates": [ 85.319352843683902, 27.63739243419899 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2503, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 87, "repvalue": 522000, "xcoord": 85.318779328937509, "ycoord": 27.638763357159345 }, "geometry": { "type": "Point", "coordinates": [ 85.318779328937509, 27.638763357159345 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2504, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 95, "repvalue": 665000, "xcoord": 85.319546757922723, "ycoord": 27.639166339817052 }, "geometry": { "type": "Point", "coordinates": [ 85.319546757922723, 27.639166339817052 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2505, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 92, "repvalue": 828000, "xcoord": 85.319194222632461, "ycoord": 27.640539942275385 }, "geometry": { "type": "Point", "coordinates": [ 85.319194222632461, 27.640539942275385 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2506, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 96, "repvalue": 768000, "xcoord": 85.319576832284824, "ycoord": 27.637198309601231 }, "geometry": { "type": "Point", "coordinates": [ 85.319576832284824, 27.637198309601231 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2507, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Ind", "fptarea": 86, "repvalue": 430000, "xcoord": 85.3190168593012, "ycoord": 27.637683620341257 }, "geometry": { "type": "Point", "coordinates": [ 85.3190168593012, 27.637683620341257 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2508, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 95, "repvalue": 570000, "xcoord": 85.318867254725149, "ycoord": 27.64024071880856 }, "geometry": { "type": "Point", "coordinates": [ 85.318867254725149, 27.64024071880856 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2509, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 99, "repvalue": 693000, "xcoord": 85.319461830571356, "ycoord": 27.637492174984398 }, "geometry": { "type": "Point", "coordinates": [ 85.319461830571356, 27.637492174984398 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2510, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 94, "repvalue": 470000, "xcoord": 85.319552773039049, "ycoord": 27.638772733820996 }, "geometry": { "type": "Point", "coordinates": [ 85.319552773039049, 27.638772733820996 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2511, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+7s+Ind", "fptarea": 95, "repvalue": 665000, "xcoord": 85.318868759192128, "ycoord": 27.640142317361388 }, "geometry": { "type": "Point", "coordinates": [ 85.318868759192128, 27.640142317361388 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2512, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+9s+Ind", "fptarea": 96, "repvalue": 864000, "xcoord": 85.319463334331047, "ycoord": 27.637393773468133 }, "geometry": { "type": "Point", "coordinates": [ 85.319463334331047, 27.637393773468133 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2513, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 95, "repvalue": 665000, "xcoord": 85.319234833182136, "ycoord": 27.637883102352742 }, "geometry": { "type": "Point", "coordinates": [ 85.319234833182136, 27.637883102352742 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2514, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 87, "repvalue": 870000, "xcoord": 85.318782337832587, "ycoord": 27.638566554230501 }, "geometry": { "type": "Point", "coordinates": [ 85.318782337832587, 27.638566554230501 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2515, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 97, "repvalue": 873000, "xcoord": 85.319106292424323, "ycoord": 27.639062580688833 }, "geometry": { "type": "Point", "coordinates": [ 85.319106292424323, 27.639062580688833 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2516, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 95, "repvalue": 855000, "xcoord": 85.318562858900876, "ycoord": 27.638465472959393 }, "geometry": { "type": "Point", "coordinates": [ 85.318562858900876, 27.638465472959393 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2517, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 101, "repvalue": 707000, "xcoord": 85.319198735190241, "ycoord": 27.640244737892537 }, "geometry": { "type": "Point", "coordinates": [ 85.319198735190241, 27.640244737892537 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2518, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+7s+Ind", "fptarea": 99, "repvalue": 693000, "xcoord": 85.318762779469282, "ycoord": 27.639845773162715 }, "geometry": { "type": "Point", "coordinates": [ 85.318762779469282, 27.639845773162715 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2519, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 88, "repvalue": 616000, "xcoord": 85.319325773065486, "ycoord": 27.639163661166148 }, "geometry": { "type": "Point", "coordinates": [ 85.319325773065486, 27.639163661166148 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2520, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 103, "repvalue": 721000, "xcoord": 85.319230321173293, "ycoord": 27.638178306841592 }, "geometry": { "type": "Point", "coordinates": [ 85.319230321173293, 27.638178306841592 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2521, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 86, "repvalue": 602000, "xcoord": 85.319346828204374, "ycoord": 27.637786040232911 }, "geometry": { "type": "Point", "coordinates": [ 85.319346828204374, 27.637786040232911 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2522, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 91, "repvalue": 910000, "xcoord": 85.318970226250443, "ycoord": 27.640734065832845 }, "geometry": { "type": "Point", "coordinates": [ 85.318970226250443, 27.640734065832845 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2523, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 85, "repvalue": 510000, "xcoord": 85.319445288711634, "ycoord": 27.638574591566098 }, "geometry": { "type": "Point", "coordinates": [ 85.319445288711634, 27.638574591566098 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2524, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 99, "repvalue": 792000, "xcoord": 85.31856135426726, "ycoord": 27.638563874414878 }, "geometry": { "type": "Point", "coordinates": [ 85.31856135426726, 27.638563874414878 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2525, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 94, "repvalue": 752000, "xcoord": 85.318906368388298, "ycoord": 27.637682280703533 }, "geometry": { "type": "Point", "coordinates": [ 85.318906368388298, 27.637682280703533 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2526, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 89, "repvalue": 623000, "xcoord": 85.318564363526875, "ycoord": 27.638367071502444 }, "geometry": { "type": "Point", "coordinates": [ 85.318564363526875, 27.638367071502444 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2527, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 102, "repvalue": 816000, "xcoord": 85.318555335656484, "ycoord": 27.638957480222086 }, "geometry": { "type": "Point", "coordinates": [ 85.318555335656484, 27.638957480222086 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2528, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 88, "repvalue": 792000, "xcoord": 85.319424234101604, "ycoord": 27.639952212412439 }, "geometry": { "type": "Point", "coordinates": [ 85.319424234101604, 27.639952212412439 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2529, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+7s+Ind", "fptarea": 98, "repvalue": 686000, "xcoord": 85.319790295905065, "ycoord": 27.637692995342281 }, "geometry": { "type": "Point", "coordinates": [ 85.319790295905065, 27.637692995342281 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2530, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 102, "repvalue": 918000, "xcoord": 85.319077711594645, "ycoord": 27.640932208452867 }, "geometry": { "type": "Point", "coordinates": [ 85.319077711594645, 27.640932208452867 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2531, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Ind", "fptarea": 92, "repvalue": 828000, "xcoord": 85.319010842545111, "ycoord": 27.63807722629064 }, "geometry": { "type": "Point", "coordinates": [ 85.319010842545111, 27.63807722629064 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2532, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 99, "repvalue": 990000, "xcoord": 85.319457319246538, "ycoord": 27.637787379524347 }, "geometry": { "type": "Point", "coordinates": [ 85.319457319246538, 27.637787379524347 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2533, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 92, "repvalue": 644000, "xcoord": 85.31913186241249, "ycoord": 27.6373897553968 }, "geometry": { "type": "Point", "coordinates": [ 85.31913186241249, 27.6373897553968 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2534, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 105, "repvalue": 630000, "xcoord": 85.318664323257394, "ycoord": 27.639057221649875 }, "geometry": { "type": "Point", "coordinates": [ 85.318664323257394, 27.639057221649875 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2535, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 99, "repvalue": 495000, "xcoord": 85.31887026365149, "ycoord": 27.640043915912745 }, "geometry": { "type": "Point", "coordinates": [ 85.31887026365149, 27.640043915912745 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2536, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+9s+Ind", "fptarea": 94, "repvalue": 846000, "xcoord": 85.319464838083121, "ycoord": 27.637295371950401 }, "geometry": { "type": "Point", "coordinates": [ 85.319464838083121, 27.637295371950401 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2537, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 95, "repvalue": 570000, "xcoord": 85.318900351237176, "ycoord": 27.638075886630624 }, "geometry": { "type": "Point", "coordinates": [ 85.318900351237176, 27.638075886630624 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2538, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Ind", "fptarea": 99, "repvalue": 990000, "xcoord": 85.319315244935709, "ycoord": 27.639852471524549 }, "geometry": { "type": "Point", "coordinates": [ 85.319315244935709, 27.639852471524549 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2539, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Ind", "fptarea": 97, "repvalue": 582000, "xcoord": 85.31888831656893, "ycoord": 27.638863098414138 }, "geometry": { "type": "Point", "coordinates": [ 85.31888831656893, 27.638863098414138 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2540, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+9s+Ind", "fptarea": 102, "repvalue": 918000, "xcoord": 85.319785785423321, "ycoord": 27.637988199923537 }, "geometry": { "type": "Point", "coordinates": [ 85.319785785423321, 27.637988199923537 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2541, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Ind", "fptarea": 102, "repvalue": 510000, "xcoord": 85.319675294160774, "ycoord": 27.637986860884869 }, "geometry": { "type": "Point", "coordinates": [ 85.319675294160774, 27.637986860884869 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2542, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 91, "repvalue": 546000, "xcoord": 85.319318253010906, "ycoord": 27.63965566857237 }, "geometry": { "type": "Point", "coordinates": [ 85.319318253010906, 27.63965566857237 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2543, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 100, "repvalue": 1000000, "xcoord": 85.319115317377623, "ycoord": 27.638472171810818 }, "geometry": { "type": "Point", "coordinates": [ 85.319115317377623, 27.638472171810818 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2544, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 96, "repvalue": 576000, "xcoord": 85.318968721836498, "ycoord": 27.640832467276763 }, "geometry": { "type": "Point", "coordinates": [ 85.318968721836498, 27.640832467276763 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2545, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 100, "repvalue": 900000, "xcoord": 85.318880794653438, "ycoord": 27.639355105730992 }, "geometry": { "type": "Point", "coordinates": [ 85.318880794653438, 27.639355105730992 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2546, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 100, "repvalue": 700000, "xcoord": 85.318673350580966, "ycoord": 27.638466812905619 }, "geometry": { "type": "Point", "coordinates": [ 85.318673350580966, 27.638466812905619 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2547, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 100, "repvalue": 900000, "xcoord": 85.319679804938787, "ycoord": 27.637691656320317 }, "geometry": { "type": "Point", "coordinates": [ 85.319679804938787, 27.637691656320317 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2548, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 87, "repvalue": 696000, "xcoord": 85.31919572682601, "ycoord": 27.640441540815903 }, "geometry": { "type": "Point", "coordinates": [ 85.31919572682601, 27.640441540815903 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2549, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 98, "repvalue": 980000, "xcoord": 85.318677864139801, "ycoord": 27.638171608513616 }, "geometry": { "type": "Point", "coordinates": [ 85.318677864139801, 27.638171608513616 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2550, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Ind", "fptarea": 87, "repvalue": 609000, "xcoord": 85.319666272398962, "ycoord": 27.638577269974203 }, "geometry": { "type": "Point", "coordinates": [ 85.319666272398962, 27.638577269974203 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2551, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 103, "repvalue": 824000, "xcoord": 85.319569313980139, "ycoord": 27.637690317210396 }, "geometry": { "type": "Point", "coordinates": [ 85.319569313980139, 27.637690317210396 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2552, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 86, "repvalue": 430000, "xcoord": 85.31875977037592, "ycoord": 27.640042576053283 }, "geometry": { "type": "Point", "coordinates": [ 85.31875977037592, 27.640042576053283 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2553, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 100, "repvalue": 900000, "xcoord": 85.319089745963694, "ycoord": 27.640144996827537 }, "geometry": { "type": "Point", "coordinates": [ 85.319089745963694, 27.640144996827537 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2554, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 96, "repvalue": 864000, "xcoord": 85.318659809492658, "ycoord": 27.639352426002123 }, "geometry": { "type": "Point", "coordinates": [ 85.318659809492658, 27.639352426002123 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2555, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 95, "repvalue": 570000, "xcoord": 85.318573391122683, "ycoord": 27.637776662729806 }, "geometry": { "type": "Point", "coordinates": [ 85.318573391122683, 27.637776662729806 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2556, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Ind", "fptarea": 104, "repvalue": 832000, "xcoord": 85.319564802905859, "ycoord": 27.637985521758221 }, "geometry": { "type": "Point", "coordinates": [ 85.319564802905859, 27.637985521758221 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2557, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+10s+Ind", "fptarea": 96, "repvalue": 960000, "xcoord": 85.31908673741718, "ycoord": 27.6403417997427 }, "geometry": { "type": "Point", "coordinates": [ 85.31908673741718, 27.6403417997427 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2558, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+10s+Ind", "fptarea": 102, "repvalue": 1020000, "xcoord": 85.319681308516223, "ycoord": 27.637593254795856 }, "geometry": { "type": "Point", "coordinates": [ 85.319681308516223, 27.637593254795856 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2559, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 87, "repvalue": 783000, "xcoord": 85.319351339825445, "ycoord": 27.637490835709681 }, "geometry": { "type": "Point", "coordinates": [ 85.319351339825445, 27.637490835709681 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2560, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 86, "repvalue": 602000, "xcoord": 85.319192718431282, "ycoord": 27.640638343733382 }, "geometry": { "type": "Point", "coordinates": [ 85.319192718431282, 27.640638343733382 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2561, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 102, "repvalue": 612000, "xcoord": 85.319092754479698, "ycoord": 27.639948193906477 }, "geometry": { "type": "Point", "coordinates": [ 85.319092754479698, 27.639948193906477 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2562, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+7s+Ind", "fptarea": 104, "repvalue": 728000, "xcoord": 85.318683882111486, "ycoord": 27.637778002637006 }, "geometry": { "type": "Point", "coordinates": [ 85.318683882111486, 27.637778002637006 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2563, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 88, "repvalue": 792000, "xcoord": 85.31954074268441, "ycoord": 27.639559945789546 }, "geometry": { "type": "Point", "coordinates": [ 85.31954074268441, 27.639559945789546 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2564, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 87, "repvalue": 522000, "xcoord": 85.319228817155107, "ycoord": 27.638276708334931 }, "geometry": { "type": "Point", "coordinates": [ 85.319228817155107, 27.638276708334931 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2565, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 87, "repvalue": 870000, "xcoord": 85.319206255967359, "ycoord": 27.639752730558353 }, "geometry": { "type": "Point", "coordinates": [ 85.319206255967359, 27.639752730558353 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2566, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 95, "repvalue": 760000, "xcoord": 85.318552326305351, "ycoord": 27.639154283116852 }, "geometry": { "type": "Point", "coordinates": [ 85.318552326305351, 27.639154283116852 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2567, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 101, "repvalue": 909000, "xcoord": 85.319430249856936, "ycoord": 27.639558606485796 }, "geometry": { "type": "Point", "coordinates": [ 85.319430249856936, 27.639558606485796 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2568, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 100, "repvalue": 600000, "xcoord": 85.318774815537694, "ycoord": 27.639058561541574 }, "geometry": { "type": "Point", "coordinates": [ 85.318774815537694, 27.639058561541574 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2569, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 103, "repvalue": 1030000, "xcoord": 85.319676797761062, "ycoord": 27.637888459364824 }, "geometry": { "type": "Point", "coordinates": [ 85.319676797761062, 27.637888459364824 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2570, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Ind", "fptarea": 88, "repvalue": 704000, "xcoord": 85.319669279683382, "ycoord": 27.638380466950313 }, "geometry": { "type": "Point", "coordinates": [ 85.319669279683382, 27.638380466950313 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2571, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 96, "repvalue": 672000, "xcoord": 85.31955728429628, "ycoord": 27.638477529308499 }, "geometry": { "type": "Point", "coordinates": [ 85.31955728429628, 27.638477529308499 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2572, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 104, "repvalue": 624000, "xcoord": 85.319128854292941, "ycoord": 27.637586558394414 }, "geometry": { "type": "Point", "coordinates": [ 85.319128854292941, 27.637586558394414 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2573, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 94, "repvalue": 564000, "xcoord": 85.319227313129289, "ycoord": 27.6383751098268 }, "geometry": { "type": "Point", "coordinates": [ 85.319227313129289, 27.6383751098268 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2574, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 95, "repvalue": 855000, "xcoord": 85.319343820418879, "ycoord": 27.637982843241044 }, "geometry": { "type": "Point", "coordinates": [ 85.319343820418879, 27.637982843241044 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2575, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 96, "repvalue": 576000, "xcoord": 85.319446792555183, "ycoord": 27.638476190066029 }, "geometry": { "type": "Point", "coordinates": [ 85.319446792555183, 27.638476190066029 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2576, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 93, "repvalue": 837000, "xcoord": 85.319660257738661, "ycoord": 27.638970876004315 }, "geometry": { "type": "Point", "coordinates": [ 85.319660257738661, 27.638970876004315 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2577, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 103, "repvalue": 515000, "xcoord": 85.31887477698379, "ycoord": 27.639748711557964 }, "geometry": { "type": "Point", "coordinates": [ 85.31887477698379, 27.639748711557964 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2578, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 97, "repvalue": 582000, "xcoord": 85.318558344977134, "ycoord": 27.638760677321425 }, "geometry": { "type": "Point", "coordinates": [ 85.318558344977134, 27.638760677321425 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2579, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 96, "repvalue": 768000, "xcoord": 85.319312236830015, "ycoord": 27.640049274470844 }, "geometry": { "type": "Point", "coordinates": [ 85.319312236830015, 27.640049274470844 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2580, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 95, "repvalue": 570000, "xcoord": 85.318761274926416, "ycoord": 27.639944174608733 }, "geometry": { "type": "Point", "coordinates": [ 85.318761274926416, 27.639944174608733 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2581, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 87, "repvalue": 783000, "xcoord": 85.318565868145242, "ycoord": 27.63826867004401 }, "geometry": { "type": "Point", "coordinates": [ 85.318565868145242, 27.63826867004401 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2582, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Ind", "fptarea": 90, "repvalue": 900000, "xcoord": 85.319324269069824, "ycoord": 27.639262062650335 }, "geometry": { "type": "Point", "coordinates": [ 85.319324269069824, 27.639262062650335 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2583, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 104, "repvalue": 832000, "xcoord": 85.319110804935292, "ycoord": 27.638767376256453 }, "geometry": { "type": "Point", "coordinates": [ 85.319110804935292, 27.638767376256453 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2584, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 101, "repvalue": 1010000, "xcoord": 85.318776320011921, "ycoord": 27.638960160082302 }, "geometry": { "type": "Point", "coordinates": [ 85.318776320011921, 27.638960160082302 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2585, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 95, "repvalue": 665000, "xcoord": 85.319222801006106, "ycoord": 27.638670314293567 }, "geometry": { "type": "Point", "coordinates": [ 85.319222801006106, 27.638670314293567 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2586, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+8s+Ind", "fptarea": 97, "repvalue": 776000, "xcoord": 85.319097267196526, "ycoord": 27.639652989513845 }, "geometry": { "type": "Point", "coordinates": [ 85.319097267196526, 27.639652989513845 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2587, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Ind", "fptarea": 97, "repvalue": 485000, "xcoord": 85.319091250225512, "ycoord": 27.640046595367746 }, "geometry": { "type": "Point", "coordinates": [ 85.319091250225512, 27.640046595367746 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2588, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 92, "repvalue": 552000, "xcoord": 85.319082224540225, "ycoord": 27.640637004104409 }, "geometry": { "type": "Point", "coordinates": [ 85.319082224540225, 27.640637004104409 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2589, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 99, "repvalue": 693000, "xcoord": 85.319013850938418, "ycoord": 27.637880423318901 }, "geometry": { "type": "Point", "coordinates": [ 85.319013850938418, 27.637880423318901 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2590, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 100, "repvalue": 700000, "xcoord": 85.319012346745566, "ycoord": 27.637978824805504 }, "geometry": { "type": "Point", "coordinates": [ 85.319012346745566, 27.637978824805504 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2591, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 88, "repvalue": 616000, "xcoord": 85.319543750318815, "ycoord": 27.639363142806243 }, "geometry": { "type": "Point", "coordinates": [ 85.319543750318815, 27.639363142806243 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2592, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+7s+Ind", "fptarea": 96, "repvalue": 672000, "xcoord": 85.31957382498581, "ycoord": 27.637395112649315 }, "geometry": { "type": "Point", "coordinates": [ 85.31957382498581, 27.637395112649315 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2593, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 89, "repvalue": 445000, "xcoord": 85.318574895695292, "ycoord": 27.637678261262543 }, "geometry": { "type": "Point", "coordinates": [ 85.318574895695292, 27.637678261262543 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2594, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 96, "repvalue": 480000, "xcoord": 85.319563299199174, "ycoord": 27.638083923271225 }, "geometry": { "type": "Point", "coordinates": [ 85.319563299199174, 27.638083923271225 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2595, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 102, "repvalue": 714000, "xcoord": 85.318979252574096, "ycoord": 27.640143657138452 }, "geometry": { "type": "Point", "coordinates": [ 85.318979252574096, 27.640143657138452 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2596, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+9s+Ind", "fptarea": 94, "repvalue": 846000, "xcoord": 85.318655295659269, "ycoord": 27.63964763034112 }, "geometry": { "type": "Point", "coordinates": [ 85.318655295659269, 27.63964763034112 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2597, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 87, "repvalue": 696000, "xcoord": 85.318785346697183, "ycoord": 27.638369751295773 }, "geometry": { "type": "Point", "coordinates": [ 85.318785346697183, 27.638369751295773 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2598, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 90, "repvalue": 540000, "xcoord": 85.319080720232662, "ycoord": 27.640735405555372 }, "geometry": { "type": "Point", "coordinates": [ 85.319080720232662, 27.640735405555372 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2599, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+9s+Ind", "fptarea": 88, "repvalue": 792000, "xcoord": 85.318909376918086, "ycoord": 27.637485477731147 }, "geometry": { "type": "Point", "coordinates": [ 85.318909376918086, 27.637485477731147 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2600, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 102, "repvalue": 816000, "xcoord": 85.319458823029095, "ycoord": 27.637688978012502 }, "geometry": { "type": "Point", "coordinates": [ 85.319458823029095, 27.637688978012502 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2601, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Ind", "fptarea": 87, "repvalue": 435000, "xcoord": 85.318546307511539, "ycoord": 27.639547888888718 }, "geometry": { "type": "Point", "coordinates": [ 85.318546307511539, 27.639547888888718 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2602, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Ind", "fptarea": 95, "repvalue": 855000, "xcoord": 85.319113813237806, "ycoord": 27.638570573294171 }, "geometry": { "type": "Point", "coordinates": [ 85.319113813237806, 27.638570573294171 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2603, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 91, "repvalue": 637000, "xcoord": 85.319682812086015, "ycoord": 27.637494853269931 }, "geometry": { "type": "Point", "coordinates": [ 85.319682812086015, 27.637494853269931 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2604, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 91, "repvalue": 819000, "xcoord": 85.319215280648308, "ycoord": 27.639162321708735 }, "geometry": { "type": "Point", "coordinates": [ 85.319215280648308, 27.639162321708735 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2605, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+8s+Ind", "fptarea": 97, "repvalue": 776000, "xcoord": 85.31900181718224, "ycoord": 27.638667635170556 }, "geometry": { "type": "Point", "coordinates": [ 85.31900181718224, 27.638667635170556 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2606, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 89, "repvalue": 712000, "xcoord": 85.318791364334828, "ycoord": 27.637976145408643 }, "geometry": { "type": "Point", "coordinates": [ 85.318791364334828, 27.637976145408643 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2607, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 104, "repvalue": 832000, "xcoord": 85.318873272547322, "ycoord": 27.639847113011029 }, "geometry": { "type": "Point", "coordinates": [ 85.318873272547322, 27.639847113011029 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2608, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 85, "repvalue": 510000, "xcoord": 85.319006329897988, "ycoord": 27.638372430737224 }, "geometry": { "type": "Point", "coordinates": [ 85.319006329897988, 27.638372430737224 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2609, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 103, "repvalue": 927000, "xcoord": 85.318553830984726, "ycoord": 27.639055881670206 }, "geometry": { "type": "Point", "coordinates": [ 85.318553830984726, 27.639055881670206 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2610, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Ind", "fptarea": 103, "repvalue": 515000, "xcoord": 85.31866131408853, "ycoord": 27.639254024552844 }, "geometry": { "type": "Point", "coordinates": [ 85.31866131408853, 27.639254024552844 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2611, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 102, "repvalue": 918000, "xcoord": 85.319673790552855, "ycoord": 27.638085262403433 }, "geometry": { "type": "Point", "coordinates": [ 85.319673790552855, 27.638085262403433 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2612, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 91, "repvalue": 637000, "xcoord": 85.318777824478531, "ycoord": 27.638861758621559 }, "geometry": { "type": "Point", "coordinates": [ 85.318777824478531, 27.638861758621559 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2613, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Ind", "fptarea": 104, "repvalue": 520000, "xcoord": 85.318773311055836, "ycoord": 27.639156962999365 }, "geometry": { "type": "Point", "coordinates": [ 85.318773311055836, 27.639156962999365 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2614, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 86, "repvalue": 516000, "xcoord": 85.319454311658546, "ycoord": 27.637984182543622 }, "geometry": { "type": "Point", "coordinates": [ 85.319454311658546, 27.637984182543622 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2615, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 89, "repvalue": 890000, "xcoord": 85.318570381954601, "ycoord": 27.637973465659908 }, "geometry": { "type": "Point", "coordinates": [ 85.318570381954601, 27.637973465659908 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2616, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 93, "repvalue": 744000, "xcoord": 85.318795877482998, "ycoord": 27.63768094097783 }, "geometry": { "type": "Point", "coordinates": [ 85.318795877482998, 27.63768094097783 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2617, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Ind", "fptarea": 90, "repvalue": 630000, "xcoord": 85.31900332142844, "ycoord": 27.638569233694252 }, "geometry": { "type": "Point", "coordinates": [ 85.31900332142844, 27.638569233694252 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2618, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 101, "repvalue": 707000, "xcoord": 85.318653791032887, "ycoord": 27.639746031784508 }, "geometry": { "type": "Point", "coordinates": [ 85.318653791032887, 27.639746031784508 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2619, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 92, "repvalue": 828000, "xcoord": 85.319231825183863, "ycoord": 27.638079905346782 }, "geometry": { "type": "Point", "coordinates": [ 85.319231825183863, 27.638079905346782 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2620, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+5s+Ind", "fptarea": 97, "repvalue": 485000, "xcoord": 85.319088241694246, "ycoord": 27.640243398285854 }, "geometry": { "type": "Point", "coordinates": [ 85.319088241694246, 27.640243398285854 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2621, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 90, "repvalue": 720000, "xcoord": 85.319224305054789, "ycoord": 27.638571912806118 }, "geometry": { "type": "Point", "coordinates": [ 85.319224305054789, 27.638571912806118 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2622, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 96, "repvalue": 768000, "xcoord": 85.319339308683439, "ycoord": 27.638278047742194 }, "geometry": { "type": "Point", "coordinates": [ 85.319339308683439, 27.638278047742194 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2623, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 90, "repvalue": 540000, "xcoord": 85.318998808666947, "ycoord": 27.638864438118745 }, "geometry": { "type": "Point", "coordinates": [ 85.318998808666947, 27.638864438118745 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2624, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Ind", "fptarea": 96, "repvalue": 672000, "xcoord": 85.318995800121158, "ycoord": 27.639061241061054 }, "geometry": { "type": "Point", "coordinates": [ 85.318995800121158, 27.639061241061054 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2625, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 94, "repvalue": 658000, "xcoord": 85.318989782938075, "ycoord": 27.63945484692799 }, "geometry": { "type": "Point", "coordinates": [ 85.318989782938075, 27.63945484692799 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2626, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 88, "repvalue": 616000, "xcoord": 85.319079215917469, "ycoord": 27.64083380700486 }, "geometry": { "type": "Point", "coordinates": [ 85.319079215917469, 27.64083380700486 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2627, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 104, "repvalue": 936000, "xcoord": 85.319237841149913, "ycoord": 27.637686299352815 }, "geometry": { "type": "Point", "coordinates": [ 85.319237841149913, 27.637686299352815 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2628, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Ind", "fptarea": 98, "repvalue": 588000, "xcoord": 85.319330285006757, "ycoord": 27.638868456704746 }, "geometry": { "type": "Point", "coordinates": [ 85.319330285006757, 27.638868456704746 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2629, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 91, "repvalue": 819000, "xcoord": 85.319331788971922, "ycoord": 27.638770055214668 }, "geometry": { "type": "Point", "coordinates": [ 85.319331788971922, 27.638770055214668 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2630, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 98, "repvalue": 686000, "xcoord": 85.31966326508406, "ycoord": 27.638774072992206 }, "geometry": { "type": "Point", "coordinates": [ 85.31966326508406, 27.638774072992206 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2631, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Ind", "fptarea": 100, "repvalue": 600000, "xcoord": 85.319009338337025, "ycoord": 27.638175627774309 }, "geometry": { "type": "Point", "coordinates": [ 85.319009338337025, 27.638175627774309 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2632, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 101, "repvalue": 606000, "xcoord": 85.319791799383736, "ycoord": 27.637594593812246 }, "geometry": { "type": "Point", "coordinates": [ 85.319791799383736, 27.637594593812246 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2633, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+9s+Ind", "fptarea": 101, "repvalue": 909000, "xcoord": 85.319000312928395, "ycoord": 27.638766036645386 }, "geometry": { "type": "Point", "coordinates": [ 85.319000312928395, 27.638766036645386 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2634, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 98, "repvalue": 686000, "xcoord": 85.318994295836816, "ycoord": 27.639159642529997 }, "geometry": { "type": "Point", "coordinates": [ 85.318994295836816, 27.639159642529997 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2635, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 87, "repvalue": 783000, "xcoord": 85.319661761415162, "ycoord": 27.638872474498996 }, "geometry": { "type": "Point", "coordinates": [ 85.319661761415162, 27.638872474498996 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2636, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 102, "repvalue": 714000, "xcoord": 85.319793302854777, "ycoord": 27.637496192280746 }, "geometry": { "type": "Point", "coordinates": [ 85.319793302854777, 27.637496192280746 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2637, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 100, "repvalue": 800000, "xcoord": 85.319197231011941, "ycoord": 27.64034313935495 }, "geometry": { "type": "Point", "coordinates": [ 85.319197231011941, 27.64034313935495 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2638, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 104, "repvalue": 624000, "xcoord": 85.318671846046115, "ycoord": 27.638565214366675 }, "geometry": { "type": "Point", "coordinates": [ 85.318671846046115, 27.638565214366675 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2639, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 103, "repvalue": 824000, "xcoord": 85.318571886542458, "ycoord": 27.637875064195594 }, "geometry": { "type": "Point", "coordinates": [ 85.318571886542458, 27.637875064195594 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2640, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 93, "repvalue": 930000, "xcoord": 85.319103284045553, "ycoord": 27.639259383636396 }, "geometry": { "type": "Point", "coordinates": [ 85.319103284045553, 27.639259383636396 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2641, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 95, "repvalue": 570000, "xcoord": 85.318986774300782, "ycoord": 27.639651649852631 }, "geometry": { "type": "Point", "coordinates": [ 85.318986774300782, 27.639651649852631 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2642, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 103, "repvalue": 824000, "xcoord": 85.318674855108213, "ycoord": 27.638368411443093 }, "geometry": { "type": "Point", "coordinates": [ 85.318674855108213, 27.638368411443093 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2643, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 103, "repvalue": 721000, "xcoord": 85.318982261287644, "ycoord": 27.63994685422854 }, "geometry": { "type": "Point", "coordinates": [ 85.318982261287644, 27.63994685422854 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2644, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 100, "repvalue": 700000, "xcoord": 85.319348332085681, "ycoord": 27.637687638726639 }, "geometry": { "type": "Point", "coordinates": [ 85.319348332085681, 27.637687638726639 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2645, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 88, "repvalue": 440000, "xcoord": 85.31978127487298, "ycoord": 27.638283404491538 }, "geometry": { "type": "Point", "coordinates": [ 85.31978127487298, 27.638283404491538 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2646, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 96, "repvalue": 480000, "xcoord": 85.319340812602874, "ycoord": 27.638179646243277 }, "geometry": { "type": "Point", "coordinates": [ 85.319340812602874, 27.638179646243277 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2647, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Ind", "fptarea": 97, "repvalue": 776000, "xcoord": 85.31888530782561, "ycoord": 27.639059901345298 }, "geometry": { "type": "Point", "coordinates": [ 85.31888530782561, 27.639059901345298 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2648, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 99, "repvalue": 891000, "xcoord": 85.319015355123625, "ycoord": 27.637782021830809 }, "geometry": { "type": "Point", "coordinates": [ 85.319015355123625, 27.637782021830809 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2649, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 86, "repvalue": 602000, "xcoord": 85.318576400260284, "ycoord": 27.63757985979381 }, "geometry": { "type": "Point", "coordinates": [ 85.318576400260284, 27.63757985979381 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2650, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 103, "repvalue": 721000, "xcoord": 85.31954976549612, "ycoord": 27.638969536821968 }, "geometry": { "type": "Point", "coordinates": [ 85.31954976549612, 27.638969536821968 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2651, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 98, "repvalue": 882000, "xcoord": 85.318876281412642, "ycoord": 27.639650310103438 }, "geometry": { "type": "Point", "coordinates": [ 85.318876281412642, 27.639650310103438 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2652, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 94, "repvalue": 564000, "xcoord": 85.31867635962783, "ycoord": 27.638270009979095 }, "geometry": { "type": "Point", "coordinates": [ 85.31867635962783, 27.638270009979095 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2653, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 86, "repvalue": 602000, "xcoord": 85.319216784735119, "ycoord": 27.639063920228647 }, "geometry": { "type": "Point", "coordinates": [ 85.319216784735119, 27.639063920228647 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2654, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 94, "repvalue": 564000, "xcoord": 85.319554276799082, "ycoord": 27.638674332318303 }, "geometry": { "type": "Point", "coordinates": [ 85.319554276799082, 27.638674332318303 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2655, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 92, "repvalue": 552000, "xcoord": 85.318658304889155, "ycoord": 27.639450827449931 }, "geometry": { "type": "Point", "coordinates": [ 85.318658304889155, 27.639450827449931 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2656, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 104, "repvalue": 520000, "xcoord": 85.31932126105562, "ycoord": 27.639458865614291 }, "geometry": { "type": "Point", "coordinates": [ 85.31932126105562, 27.639458865614291 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2657, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 96, "repvalue": 672000, "xcoord": 85.3190198676335, "ycoord": 27.637486817357736 }, "geometry": { "type": "Point", "coordinates": [ 85.3190198676335, 27.637486817357736 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2658, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 99, "repvalue": 594000, "xcoord": 85.318792868725183, "ycoord": 27.637877743933181 }, "geometry": { "type": "Point", "coordinates": [ 85.318792868725183, 27.637877743933181 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2659, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 86, "repvalue": 516000, "xcoord": 85.318679368644169, "ycoord": 27.638073207046677 }, "geometry": { "type": "Point", "coordinates": [ 85.318679368644169, 27.638073207046677 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2660, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 97, "repvalue": 970000, "xcoord": 85.319782778397396, "ycoord": 27.638185002970342 }, "geometry": { "type": "Point", "coordinates": [ 85.319782778397396, 27.638185002970342 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2661, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 94, "repvalue": 846000, "xcoord": 85.319210768342145, "ycoord": 27.639457526140166 }, "geometry": { "type": "Point", "coordinates": [ 85.319210768342145, 27.639457526140166 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2662, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 86, "repvalue": 516000, "xcoord": 85.319094258726267, "ycoord": 27.639849792443737 }, "geometry": { "type": "Point", "coordinates": [ 85.319094258726267, 27.639849792443737 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2663, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 99, "repvalue": 693000, "xcoord": 85.318971730656799, "ycoord": 27.640635664387457 }, "geometry": { "type": "Point", "coordinates": [ 85.318971730656799, 27.640635664387457 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2664, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 101, "repvalue": 707000, "xcoord": 85.319794806318214, "ycoord": 27.637397790747773 }, "geometry": { "type": "Point", "coordinates": [ 85.319794806318214, 27.637397790747773 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2665, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Ind", "fptarea": 101, "repvalue": 606000, "xcoord": 85.319306220527153, "ycoord": 27.640442880345756 }, "geometry": { "type": "Point", "coordinates": [ 85.319306220527153, 27.640442880345756 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2666, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Ind", "fptarea": 101, "repvalue": 1010000, "xcoord": 85.319095762965219, "ycoord": 27.639751390979526 }, "geometry": { "type": "Point", "coordinates": [ 85.319095762965219, 27.639751390979526 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2667, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Ind", "fptarea": 92, "repvalue": 920000, "xcoord": 85.31922580909584, "ycoord": 27.638473511317194 }, "geometry": { "type": "Point", "coordinates": [ 85.31922580909584, 27.638473511317194 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2668, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 89, "repvalue": 712000, "xcoord": 85.319233329186815, "ycoord": 27.637981503850501 }, "geometry": { "type": "Point", "coordinates": [ 85.319233329186815, 27.637981503850501 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2669, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 90, "repvalue": 720000, "xcoord": 85.318879290247466, "ycoord": 27.639453507189945 }, "geometry": { "type": "Point", "coordinates": [ 85.318879290247466, 27.639453507189945 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2670, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+10s+Ind", "fptarea": 87, "repvalue": 870000, "xcoord": 85.319121333860679, "ycoord": 27.638078565862696 }, "geometry": { "type": "Point", "coordinates": [ 85.319121333860679, 27.638078565862696 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2671, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 105, "repvalue": 735000, "xcoord": 85.319657250362766, "ycoord": 27.639167679010541 }, "geometry": { "type": "Point", "coordinates": [ 85.319657250362766, 27.639167679010541 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2672, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 101, "repvalue": 606000, "xcoord": 85.318992791544872, "ycoord": 27.639258043997469 }, "geometry": { "type": "Point", "coordinates": [ 85.318992791544872, 27.639258043997469 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2673, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Ind", "fptarea": 96, "repvalue": 480000, "xcoord": 85.318882299051779, "ycoord": 27.639256704270569 }, "geometry": { "type": "Point", "coordinates": [ 85.318882299051779, 27.639256704270569 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2674, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Ind", "fptarea": 88, "repvalue": 792000, "xcoord": 85.318556840320625, "ycoord": 27.638859078772491 }, "geometry": { "type": "Point", "coordinates": [ 85.318556840320625, 27.638859078772491 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2675, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+9s+Ind", "fptarea": 88, "repvalue": 792000, "xcoord": 85.319664768745312, "ycoord": 27.638675671483941 }, "geometry": { "type": "Point", "coordinates": [ 85.319664768745312, 27.638675671483941 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2676, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 91, "repvalue": 546000, "xcoord": 85.319428745929542, "ycoord": 27.639657007969664 }, "geometry": { "type": "Point", "coordinates": [ 85.319428745929542, 27.639657007969664 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2677, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+8s+Ind", "fptarea": 96, "repvalue": 768000, "xcoord": 85.319788792418777, "ycoord": 27.637791396870842 }, "geometry": { "type": "Point", "coordinates": [ 85.319788792418777, 27.637791396870842 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2678, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+9s+Ind", "fptarea": 97, "repvalue": 873000, "xcoord": 85.318898846930338, "ycoord": 27.638174288108711 }, "geometry": { "type": "Point", "coordinates": [ 85.318898846930338, 27.638174288108711 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2679, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Ind", "fptarea": 85, "repvalue": 425000, "xcoord": 85.319452807853125, "ycoord": 27.638082584051045 }, "geometry": { "type": "Point", "coordinates": [ 85.319452807853125, 27.638082584051045 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2680, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 90, "repvalue": 810000, "xcoord": 85.319124342056469, "ycoord": 27.637881762879804 }, "geometry": { "type": "Point", "coordinates": [ 85.319124342056469, 27.637881762879804 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2681, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+8s+Ind", "fptarea": 95, "repvalue": 760000, "xcoord": 85.318997304397868, "ycoord": 27.638962839590636 }, "geometry": { "type": "Point", "coordinates": [ 85.318997304397868, 27.638962839590636 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2682, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 87, "repvalue": 696000, "xcoord": 85.318788355531254, "ycoord": 27.638172948355145 }, "geometry": { "type": "Point", "coordinates": [ 85.318788355531254, 27.638172948355145 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2683, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 91, "repvalue": 546000, "xcoord": 85.318983765632979, "ycoord": 27.639848452771371 }, "geometry": { "type": "Point", "coordinates": [ 85.318983765632979, 27.639848452771371 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2684, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 90, "repvalue": 810000, "xcoord": 85.319784281914167, "ycoord": 27.638086601447679 }, "geometry": { "type": "Point", "coordinates": [ 85.319784281914167, 27.638086601447679 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2685, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 94, "repvalue": 846000, "xcoord": 85.319570817656313, "ycoord": 27.637591915691509 }, "geometry": { "type": "Point", "coordinates": [ 85.319570817656313, 27.637591915691509 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2686, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 104, "repvalue": 936000, "xcoord": 85.31886424576831, "ycoord": 27.640437521698491 }, "geometry": { "type": "Point", "coordinates": [ 85.31886424576831, 27.640437521698491 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2687, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 97, "repvalue": 776000, "xcoord": 85.318901855536396, "ycoord": 27.637977485151062 }, "geometry": { "type": "Point", "coordinates": [ 85.318901855536396, 27.637977485151062 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2688, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 92, "repvalue": 736000, "xcoord": 85.31957232132487, "ycoord": 27.637493514171144 }, "geometry": { "type": "Point", "coordinates": [ 85.31957232132487, 27.637493514171144 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2689, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 104, "repvalue": 832000, "xcoord": 85.319455815456351, "ycoord": 27.637885781034718 }, "geometry": { "type": "Point", "coordinates": [ 85.319455815456351, 27.637885781034718 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2690, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 96, "repvalue": 768000, "xcoord": 85.31886123678099, "ycoord": 27.640634324582532 }, "geometry": { "type": "Point", "coordinates": [ 85.31886123678099, 27.640634324582532 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2691, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 101, "repvalue": 707000, "xcoord": 85.319433257688857, "ycoord": 27.639361803513633 }, "geometry": { "type": "Point", "coordinates": [ 85.319433257688857, 27.639361803513633 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2692, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 95, "repvalue": 950000, "xcoord": 85.318789859936857, "ycoord": 27.638074546882631 }, "geometry": { "type": "Point", "coordinates": [ 85.318789859936857, 27.638074546882631 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2693, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 103, "repvalue": 721000, "xcoord": 85.318770302069225, "ycoord": 27.639353765910542 }, "geometry": { "type": "Point", "coordinates": [ 85.318770302069225, 27.639353765910542 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2694, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 88, "repvalue": 440000, "xcoord": 85.318892829626705, "ycoord": 27.638567894006361 }, "geometry": { "type": "Point", "coordinates": [ 85.318892829626705, 27.638567894006361 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2695, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 104, "repvalue": 728000, "xcoord": 85.31889583829377, "ycoord": 27.638371091060488 }, "geometry": { "type": "Point", "coordinates": [ 85.31889583829377, 27.638371091060488 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2696, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 94, "repvalue": 752000, "xcoord": 85.319007834121322, "ycoord": 27.638274029256504 }, "geometry": { "type": "Point", "coordinates": [ 85.319007834121322, 27.638274029256504 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2697, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 92, "repvalue": 552000, "xcoord": 85.318964208548849, "ycoord": 27.641127671599666 }, "geometry": { "type": "Point", "coordinates": [ 85.318964208548849, 27.641127671599666 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2698, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 101, "repvalue": 909000, "xcoord": 85.319101779844743, "ycoord": 27.639357785107968 }, "geometry": { "type": "Point", "coordinates": [ 85.319101779844743, 27.639357785107968 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2699, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 102, "repvalue": 1020000, "xcoord": 85.319118325634406, "ycoord": 27.6382753688397 }, "geometry": { "type": "Point", "coordinates": [ 85.319118325634406, 27.6382753688397 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2700, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 96, "repvalue": 864000, "xcoord": 85.318865750250552, "ycoord": 27.640339120254261 }, "geometry": { "type": "Point", "coordinates": [ 85.318865750250552, 27.640339120254261 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2701, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 87, "repvalue": 696000, "xcoord": 85.318991287245268, "ycoord": 27.639356445463463 }, "geometry": { "type": "Point", "coordinates": [ 85.318991287245268, 27.639356445463463 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2702, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 90, "repvalue": 810000, "xcoord": 85.319787288924857, "ycoord": 27.637889798397921 }, "geometry": { "type": "Point", "coordinates": [ 85.319787288924857, 27.637889798397921 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2703, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Ind", "fptarea": 101, "repvalue": 606000, "xcoord": 85.318871768103222, "ycoord": 27.639945514462624 }, "geometry": { "type": "Point", "coordinates": [ 85.318871768103222, 27.639945514462624 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2704, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 94, "repvalue": 658000, "xcoord": 85.318764284004516, "ycoord": 27.639747371715227 }, "geometry": { "type": "Point", "coordinates": [ 85.318764284004516, 27.639747371715227 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2705, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 100, "repvalue": 800000, "xcoord": 85.319684315648203, "ycoord": 27.637396451742525 }, "geometry": { "type": "Point", "coordinates": [ 85.319684315648203, 27.637396451742525 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2706, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 87, "repvalue": 522000, "xcoord": 85.319460326804048, "ycoord": 27.637590576499186 }, "geometry": { "type": "Point", "coordinates": [ 85.319460326804048, 27.637590576499186 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2707, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 87, "repvalue": 522000, "xcoord": 85.319316748977116, "ycoord": 27.639754070049189 }, "geometry": { "type": "Point", "coordinates": [ 85.319316748977116, 27.639754070049189 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2708, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Ind", "fptarea": 99, "repvalue": 495000, "xcoord": 85.318780833388871, "ycoord": 27.63866495569566 }, "geometry": { "type": "Point", "coordinates": [ 85.318780833388871, 27.63866495569566 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2709, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 102, "repvalue": 714000, "xcoord": 85.319107796602268, "ycoord": 27.638964179212849 }, "geometry": { "type": "Point", "coordinates": [ 85.319107796602268, 27.638964179212849 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2710, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 92, "repvalue": 736000, "xcoord": 85.318980756934678, "ycoord": 27.640045255684232 }, "geometry": { "type": "Point", "coordinates": [ 85.318980756934678, 27.640045255684232 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2711, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 99, "repvalue": 594000, "xcoord": 85.318889820929144, "ycoord": 27.63876469694635 }, "geometry": { "type": "Point", "coordinates": [ 85.318889820929144, 27.63876469694635 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2712, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 89, "repvalue": 623000, "xcoord": 85.318988278623237, "ycoord": 27.639553248391042 }, "geometry": { "type": "Point", "coordinates": [ 85.318988278623237, 27.639553248391042 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2713, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 94, "repvalue": 470000, "xcoord": 85.319130358356517, "ycoord": 27.637488156896346 }, "geometry": { "type": "Point", "coordinates": [ 85.319130358356517, 27.637488156896346 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2714, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 101, "repvalue": 909000, "xcoord": 85.319116821509837, "ycoord": 27.638373770325998 }, "geometry": { "type": "Point", "coordinates": [ 85.319116821509837, 27.638373770325998 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2715, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+8s+Ind", "fptarea": 87, "repvalue": 696000, "xcoord": 85.319431753776698, "ycoord": 27.639460205000447 }, "geometry": { "type": "Point", "coordinates": [ 85.319431753776698, 27.639460205000447 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2716, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 89, "repvalue": 890000, "xcoord": 85.319436265490296, "ycoord": 27.639165000535584 }, "geometry": { "type": "Point", "coordinates": [ 85.319436265490296, 27.639165000535584 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2717, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 87, "repvalue": 609000, "xcoord": 85.31885822776313, "ycoord": 27.640831127460686 }, "geometry": { "type": "Point", "coordinates": [ 85.31885822776313, 27.640831127460686 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2718, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+8s+Ind", "fptarea": 85, "repvalue": 680000, "xcoord": 85.319561795484887, "ycoord": 27.63818232478275 }, "geometry": { "type": "Point", "coordinates": [ 85.319561795484887, 27.63818232478275 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2719, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 101, "repvalue": 606000, "xcoord": 85.318907872657007, "ycoord": 27.637583879218074 }, "geometry": { "type": "Point", "coordinates": [ 85.318907872657007, 27.637583879218074 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2720, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 90, "repvalue": 720000, "xcoord": 85.319451304040058, "ycoord": 27.638180985556996 }, "geometry": { "type": "Point", "coordinates": [ 85.319451304040058, 27.638180985556996 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2721, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+8s+Ind", "fptarea": 87, "repvalue": 696000, "xcoord": 85.319242353044388, "ycoord": 27.637391094841881 }, "geometry": { "type": "Point", "coordinates": [ 85.319242353044388, 27.637391094841881 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2722, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 93, "repvalue": 744000, "xcoord": 85.31944077713527, "ycoord": 27.638869796057463 }, "geometry": { "type": "Point", "coordinates": [ 85.31944077713527, 27.638869796057463 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2723, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Ind", "fptarea": 104, "repvalue": 936000, "xcoord": 85.319567810296334, "ycoord": 27.637788718727812 }, "geometry": { "type": "Point", "coordinates": [ 85.319567810296334, 27.637788718727812 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2724, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 88, "repvalue": 704000, "xcoord": 85.319127350221734, "ycoord": 27.637684959891022 }, "geometry": { "type": "Point", "coordinates": [ 85.319127350221734, 27.637684959891022 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2725, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Ind", "fptarea": 92, "repvalue": 552000, "xcoord": 85.319085233132483, "ycoord": 27.640440201198075 }, "geometry": { "type": "Point", "coordinates": [ 85.319085233132483, 27.640440201198075 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2726, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 88, "repvalue": 704000, "xcoord": 85.319204751827186, "ycoord": 27.639851132028138 }, "geometry": { "type": "Point", "coordinates": [ 85.319204751827186, 27.639851132028138 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2727, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 91, "repvalue": 546000, "xcoord": 85.319548261713237, "ycoord": 27.639067938320245 }, "geometry": { "type": "Point", "coordinates": [ 85.319548261713237, 27.639067938320245 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2728, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 97, "repvalue": 679000, "xcoord": 85.318903359827985, "ycoord": 27.637879083670025 }, "geometry": { "type": "Point", "coordinates": [ 85.318903359827985, 27.637879083670025 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2729, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 87, "repvalue": 609000, "xcoord": 85.319334796879403, "ycoord": 27.638573252230092 }, "geometry": { "type": "Point", "coordinates": [ 85.319334796879403, 27.638573252230092 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2730, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 93, "repvalue": 744000, "xcoord": 85.319345324315421, "ycoord": 27.637884441737722 }, "geometry": { "type": "Point", "coordinates": [ 85.319345324315421, 27.637884441737722 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2731, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 104, "repvalue": 520000, "xcoord": 85.319442281001685, "ycoord": 27.638771394561815 }, "geometry": { "type": "Point", "coordinates": [ 85.319442281001685, 27.638771394561815 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2732, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 96, "repvalue": 864000, "xcoord": 85.319354347534727, "ycoord": 27.637294032686825 }, "geometry": { "type": "Point", "coordinates": [ 85.319354347534727, 27.637294032686825 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2733, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 93, "repvalue": 465000, "xcoord": 85.319191214222485, "ycoord": 27.640736745189919 }, "geometry": { "type": "Point", "coordinates": [ 85.319191214222485, 27.640736745189919 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2734, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 102, "repvalue": 918000, "xcoord": 85.318976243830051, "ycoord": 27.640340460042466 }, "geometry": { "type": "Point", "coordinates": [ 85.318976243830051, 27.640340460042466 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2735, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 89, "repvalue": 712000, "xcoord": 85.319201743523948, "ycoord": 27.640047934963281 }, "geometry": { "type": "Point", "coordinates": [ 85.319201743523948, 27.640047934963281 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2736, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 87, "repvalue": 522000, "xcoord": 85.318670341503619, "ycoord": 27.638663615826264 }, "geometry": { "type": "Point", "coordinates": [ 85.318670341503619, 27.638663615826264 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2737, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 87, "repvalue": 609000, "xcoord": 85.318549316923693, "ycoord": 27.639351086005735 }, "geometry": { "type": "Point", "coordinates": [ 85.318549316923693, 27.639351086005735 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2738, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 93, "repvalue": 744000, "xcoord": 85.318667332395776, "ycoord": 27.638860418741007 }, "geometry": { "type": "Point", "coordinates": [ 85.318667332395776, 27.638860418741007 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2739, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 87, "repvalue": 783000, "xcoord": 85.319349835959372, "ycoord": 27.63758923721889 }, "geometry": { "type": "Point", "coordinates": [ 85.319349835959372, 27.63758923721889 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2740, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 93, "repvalue": 558000, "xcoord": 85.31912584614291, "ycoord": 27.637783361386145 }, "geometry": { "type": "Point", "coordinates": [ 85.31912584614291, 27.637783361386145 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2741, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Ind", "fptarea": 95, "repvalue": 475000, "xcoord": 85.319239345122355, "ycoord": 27.637587897850644 }, "geometry": { "type": "Point", "coordinates": [ 85.319239345122355, 27.637587897850644 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2742, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 101, "repvalue": 808000, "xcoord": 85.318974739446588, "ycoord": 27.640438861492271 }, "geometry": { "type": "Point", "coordinates": [ 85.318974739446588, 27.640438861492271 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2743, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 105, "repvalue": 735000, "xcoord": 85.319566306604898, "ycoord": 27.637887120243757 }, "geometry": { "type": "Point", "coordinates": [ 85.319566306604898, 27.637887120243757 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2744, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 105, "repvalue": 840000, "xcoord": 85.319575328639132, "ycoord": 27.637296711126005 }, "geometry": { "type": "Point", "coordinates": [ 85.319575328639132, 27.637296711126005 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2745, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 103, "repvalue": 927000, "xcoord": 85.318685386585329, "ycoord": 27.637679601164173 }, "geometry": { "type": "Point", "coordinates": [ 85.318685386585329, 27.637679601164173 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2746, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 101, "repvalue": 808000, "xcoord": 85.319018363471159, "ycoord": 27.63758521885023 }, "geometry": { "type": "Point", "coordinates": [ 85.319018363471159, 27.63758521885023 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2747, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 96, "repvalue": 768000, "xcoord": 85.319342316514678, "ycoord": 27.638081244742896 }, "geometry": { "type": "Point", "coordinates": [ 85.319342316514678, 27.638081244742896 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2748, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 91, "repvalue": 637000, "xcoord": 85.319448296391101, "ycoord": 27.638377788564494 }, "geometry": { "type": "Point", "coordinates": [ 85.319448296391101, 27.638377788564494 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2749, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 88, "repvalue": 704000, "xcoord": 85.319333292929471, "ycoord": 27.638671653723119 }, "geometry": { "type": "Point", "coordinates": [ 85.319333292929471, 27.638671653723119 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2750, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Ind", "fptarea": 89, "repvalue": 534000, "xcoord": 85.319672286937333, "ycoord": 27.638183663920525 }, "geometry": { "type": "Point", "coordinates": [ 85.319672286937333, 27.638183663920525 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2751, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+10s+Ind", "fptarea": 92, "repvalue": 920000, "xcoord": 85.319122837962382, "ycoord": 27.637980164371982 }, "geometry": { "type": "Point", "coordinates": [ 85.319122837962382, 27.637980164371982 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2752, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 102, "repvalue": 918000, "xcoord": 85.319449800219402, "ycoord": 27.638279387061484 }, "geometry": { "type": "Point", "coordinates": [ 85.319449800219402, 27.638279387061484 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2753, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 102, "repvalue": 714000, "xcoord": 85.318550821618345, "ycoord": 27.639252684562027 }, "geometry": { "type": "Point", "coordinates": [ 85.318550821618345, 27.639252684562027 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2754, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 102, "repvalue": 918000, "xcoord": 85.318797381850473, "ycoord": 27.637582539497949 }, "geometry": { "type": "Point", "coordinates": [ 85.318797381850473, 27.637582539497949 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2755, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 93, "repvalue": 744000, "xcoord": 85.318656800278021, "ycoord": 27.639549228896261 }, "geometry": { "type": "Point", "coordinates": [ 85.318656800278021, 27.639549228896261 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2756, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Ind", "fptarea": 88, "repvalue": 528000, "xcoord": 85.319545254124577, "ycoord": 27.639264741312385 }, "geometry": { "type": "Point", "coordinates": [ 85.319545254124577, 27.639264741312385 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2757, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+5s+Ind", "fptarea": 95, "repvalue": 475000, "xcoord": 85.319555780551482, "ycoord": 27.638575930814135 }, "geometry": { "type": "Point", "coordinates": [ 85.319555780551482, 27.638575930814135 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2758, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 87, "repvalue": 783000, "xcoord": 85.319200239360896, "ycoord": 27.640146336428646 }, "geometry": { "type": "Point", "coordinates": [ 85.319200239360896, 27.640146336428646 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2759, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Ind", "fptarea": 87, "repvalue": 522000, "xcoord": 85.318544802794008, "ycoord": 27.639646290328002 }, "geometry": { "type": "Point", "coordinates": [ 85.318544802794008, 27.639646290328002 ] } }, +{ "type": "Feature", "properties": { "zoneid": 20, "bldid": 997, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 102, "repvalue": 408000, "xcoord": 85.324810500233838, "ycoord": 27.636221750163092 }, "geometry": { "type": "Point", "coordinates": [ 85.324810500233838, 27.636221750163092 ] } }, +{ "type": "Feature", "properties": { "zoneid": 20, "bldid": 998, "nhouse": 6, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 57, "repvalue": 684000, "xcoord": 85.3236958492935, "ycoord": 27.635088176455287 }, "geometry": { "type": "Point", "coordinates": [ 85.3236958492935, 27.635088176455287 ] } }, +{ "type": "Feature", "properties": { "zoneid": 20, "bldid": 999, "nhouse": 11, "residents": 46, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 101, "repvalue": 1212000, "xcoord": 85.325187740643329, "ycoord": 27.636226307385783 }, "geometry": { "type": "Point", "coordinates": [ 85.325187740643329, 27.636226307385783 ] } }, +{ "type": "Feature", "properties": { "zoneid": 20, "bldid": 1000, "nhouse": 5, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 100, "repvalue": 600000, "xcoord": 85.324312632270818, "ycoord": 27.635879703416965 }, "geometry": { "type": "Point", "coordinates": [ 85.324312632270818, 27.635879703416965 ] } }, +{ "type": "Feature", "properties": { "zoneid": 20, "bldid": 1001, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 68, "repvalue": 408000, "xcoord": 85.32407479213802, "ycoord": 27.634980746917414 }, "geometry": { "type": "Point", "coordinates": [ 85.32407479213802, 27.634980746917414 ] } }, +{ "type": "Feature", "properties": { "zoneid": 20, "bldid": 1002, "nhouse": 5, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 102, "repvalue": 612000, "xcoord": 85.321072293258439, "ycoord": 27.633936332600079 }, "geometry": { "type": "Point", "coordinates": [ 85.321072293258439, 27.633936332600079 ] } }, +{ "type": "Feature", "properties": { "zoneid": 20, "bldid": 1003, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 83, "repvalue": 332000, "xcoord": 85.321697595288271, "ycoord": 27.634167922770903 }, "geometry": { "type": "Point", "coordinates": [ 85.321697595288271, 27.634167922770903 ] } }, +{ "type": "Feature", "properties": { "zoneid": 20, "bldid": 1004, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 69, "repvalue": 138000, "xcoord": 85.323826715070496, "ycoord": 27.634753727771884 }, "geometry": { "type": "Point", "coordinates": [ 85.323826715070496, 27.634753727771884 ] } }, +{ "type": "Feature", "properties": { "zoneid": 20, "bldid": 1005, "nhouse": 5, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 93, "repvalue": 558000, "xcoord": 85.323203112139836, "ycoord": 27.634410157298589 }, "geometry": { "type": "Point", "coordinates": [ 85.323203112139836, 27.634410157298589 ] } }, +{ "type": "Feature", "properties": { "zoneid": 20, "bldid": 1006, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 55, "repvalue": 330000, "xcoord": 85.325315192823396, "ycoord": 27.636115836558453 }, "geometry": { "type": "Point", "coordinates": [ 85.325315192823396, 27.636115836558453 ] } }, +{ "type": "Feature", "properties": { "zoneid": 20, "bldid": 1007, "nhouse": 7, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 79, "repvalue": 790000, "xcoord": 85.323323734961434, "ycoord": 27.634747646608425 }, "geometry": { "type": "Point", "coordinates": [ 85.323323734961434, 27.634747646608425 ] } }, +{ "type": "Feature", "properties": { "zoneid": 20, "bldid": 1008, "nhouse": 16, "residents": 60, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 86, "repvalue": 1720000, "xcoord": 85.324438378641048, "ycoord": 27.63588122303927 }, "geometry": { "type": "Point", "coordinates": [ 85.324438378641048, 27.63588122303927 ] } }, +{ "type": "Feature", "properties": { "zoneid": 20, "bldid": 1009, "nhouse": 9, "residents": 30, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 84, "repvalue": 1008000, "xcoord": 85.324445203474113, "ycoord": 27.635433264511601 }, "geometry": { "type": "Point", "coordinates": [ 85.324445203474113, 27.635433264511601 ] } }, +{ "type": "Feature", "properties": { "zoneid": 20, "bldid": 1010, "nhouse": 15, "residents": 59, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 70, "repvalue": 1680000, "xcoord": 85.3231979899588, "ycoord": 27.634746126032745 }, "geometry": { "type": "Point", "coordinates": [ 85.3231979899588, 27.634746126032745 ] } }, +{ "type": "Feature", "properties": { "zoneid": 20, "bldid": 1011, "nhouse": 7, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 61, "repvalue": 854000, "xcoord": 85.323327149502859, "ycoord": 27.634523667439829 }, "geometry": { "type": "Point", "coordinates": [ 85.323327149502859, 27.634523667439829 ] } }, +{ "type": "Feature", "properties": { "zoneid": 20, "bldid": 1012, "nhouse": 19, "residents": 78, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 79, "repvalue": 2054000, "xcoord": 85.323828421834577, "ycoord": 27.634641738159747 }, "geometry": { "type": "Point", "coordinates": [ 85.323828421834577, 27.634641738159747 ] } }, +{ "type": "Feature", "properties": { "zoneid": 20, "bldid": 1013, "nhouse": 12, "residents": 58, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 95, "repvalue": 1330000, "xcoord": 85.323818181102482, "ycoord": 27.635313675803985 }, "geometry": { "type": "Point", "coordinates": [ 85.323818181102482, 27.635313675803985 ] } }, +{ "type": "Feature", "properties": { "zoneid": 20, "bldid": 1014, "nhouse": 10, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 87, "repvalue": 1044000, "xcoord": 85.3211980371983, "ycoord": 27.633937855062005 }, "geometry": { "type": "Point", "coordinates": [ 85.3211980371983, 27.633937855062005 ] } }, +{ "type": "Feature", "properties": { "zoneid": 20, "bldid": 1015, "nhouse": 12, "residents": 52, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 92, "repvalue": 2024000, "xcoord": 85.322825878342044, "ycoord": 27.634405594952817 }, "geometry": { "type": "Point", "coordinates": [ 85.322825878342044, 27.634405594952817 ] } }, +{ "type": "Feature", "properties": { "zoneid": 20, "bldid": 2132, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Com", "fptarea": 129, "repvalue": 1548000, "xcoord": 85.325437529059684, "ycoord": 27.636341334643557 }, "geometry": { "type": "Point", "coordinates": [ 85.325437529059684, 27.636341334643557 ] } }, +{ "type": "Feature", "properties": { "zoneid": 20, "bldid": 2143, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+7s+Com", "fptarea": 112, "repvalue": 1568000, "xcoord": 85.324813911961684, "ycoord": 27.635997770871345 }, "geometry": { "type": "Point", "coordinates": [ 85.324813911961684, 27.635997770871345 ] } }, +{ "type": "Feature", "properties": { "zoneid": 20, "bldid": 2161, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Com", "fptarea": 136, "repvalue": 2448000, "xcoord": 85.323325442237078, "ycoord": 27.634635657025076 }, "geometry": { "type": "Point", "coordinates": [ 85.323325442237078, 27.634635657025076 ] } }, +{ "type": "Feature", "properties": { "zoneid": 20, "bldid": 2184, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Com", "fptarea": 133, "repvalue": 2394000, "xcoord": 85.325060288207439, "ycoord": 27.636336778082885 }, "geometry": { "type": "Point", "coordinates": [ 85.325060288207439, 27.636336778082885 ] } }, +{ "type": "Feature", "properties": { "zoneid": 20, "bldid": 2188, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Com", "fptarea": 122, "repvalue": 1464000, "xcoord": 85.324190298858227, "ycoord": 27.635654204449484 }, "geometry": { "type": "Point", "coordinates": [ 85.324190298858227, 27.635654204449484 ] } }, +{ "type": "Feature", "properties": { "zoneid": 20, "bldid": 2190, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+8s+Com", "fptarea": 134, "repvalue": 2144000, "xcoord": 85.325063699443362, "ycoord": 27.636112798766174 }, "geometry": { "type": "Point", "coordinates": [ 85.325063699443362, 27.636112798766174 ] } }, +{ "type": "Feature", "properties": { "zoneid": 20, "bldid": 2206, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Com", "fptarea": 103, "repvalue": 1854000, "xcoord": 85.324693283335691, "ycoord": 27.635660282653291 }, "geometry": { "type": "Point", "coordinates": [ 85.324693283335691, 27.635660282653291 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 1016, "nhouse": 2, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 60, "repvalue": 240000, "xcoord": 85.320714635573424, "ycoord": 27.627581755346053 }, "geometry": { "type": "Point", "coordinates": [ 85.320714635573424, 27.627581755346053 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 1017, "nhouse": 4, "residents": 13, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 85, "repvalue": 510000, "xcoord": 85.320006701913613, "ycoord": 27.628701244131989 }, "geometry": { "type": "Point", "coordinates": [ 85.320006701913613, 27.628701244131989 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 1018, "nhouse": 4, "residents": 15, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 80, "repvalue": 480000, "xcoord": 85.319180499433699, "ycoord": 27.630024397473012 }, "geometry": { "type": "Point", "coordinates": [ 85.319180499433699, 27.630024397473012 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 1019, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 64, "repvalue": 384000, "xcoord": 85.320479702871125, "ycoord": 27.627886563948813 }, "geometry": { "type": "Point", "coordinates": [ 85.320479702871125, 27.627886563948813 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 1020, "nhouse": 17, "residents": 68, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 66, "repvalue": 1848000, "xcoord": 85.320837578666783, "ycoord": 27.627070487974578 }, "geometry": { "type": "Point", "coordinates": [ 85.320837578666783, 27.627070487974578 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 1021, "nhouse": 1, "residents": 5, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 75, "repvalue": 150000, "xcoord": 85.320241637748936, "ycoord": 27.628396436500605 }, "geometry": { "type": "Point", "coordinates": [ 85.320241637748936, 27.628396436500605 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 1022, "nhouse": 6, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 90, "repvalue": 720000, "xcoord": 85.321189190703336, "ycoord": 27.626664539892921 }, "geometry": { "type": "Point", "coordinates": [ 85.321189190703336, 27.626664539892921 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 1023, "nhouse": 26, "residents": 110, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 87, "repvalue": 2958000, "xcoord": 85.321072508541178, "ycoord": 27.626765678609583 }, "geometry": { "type": "Point", "coordinates": [ 85.321072508541178, 27.626765678609583 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 1024, "nhouse": 9, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 65, "repvalue": 1950000, "xcoord": 85.320478137568116, "ycoord": 27.627989096175408 }, "geometry": { "type": "Point", "coordinates": [ 85.320478137568116, 27.627989096175408 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 2154, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Com", "fptarea": 101, "repvalue": 1616000, "xcoord": 85.320240072190245, "ycoord": 27.628498968707124 }, "geometry": { "type": "Point", "coordinates": [ 85.320240072190245, 27.628498968707124 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 2155, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Com", "fptarea": 114, "repvalue": 1368000, "xcoord": 85.320121821476704, "ycoord": 27.62870263867141 }, "geometry": { "type": "Point", "coordinates": [ 85.320121821476704, 27.62870263867141 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 2165, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Com", "fptarea": 110, "repvalue": 1540000, "xcoord": 85.319770198713911, "ycoord": 27.629108583467289 }, "geometry": { "type": "Point", "coordinates": [ 85.319770198713911, 27.629108583467289 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 2180, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Com", "fptarea": 102, "repvalue": 1428000, "xcoord": 85.32035988788526, "ycoord": 27.628192766401028 }, "geometry": { "type": "Point", "coordinates": [ 85.32035988788526, 27.628192766401028 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 2196, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Com", "fptarea": 104, "repvalue": 2080000, "xcoord": 85.318830435831742, "ycoord": 27.630327807361372 }, "geometry": { "type": "Point", "coordinates": [ 85.318830435831742, 27.630327807361372 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1025, "nhouse": 9, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 80, "repvalue": 960000, "xcoord": 85.320028022541663, "ycoord": 27.627975993728576 }, "geometry": { "type": "Point", "coordinates": [ 85.320028022541663, 27.627975993728576 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1026, "nhouse": 22, "residents": 93, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 76, "repvalue": 2432000, "xcoord": 85.318979661098567, "ycoord": 27.629781617114723 }, "geometry": { "type": "Point", "coordinates": [ 85.318979661098567, 27.629781617114723 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1027, "nhouse": 7, "residents": 29, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 79, "repvalue": 790000, "xcoord": 85.31937106494108, "ycoord": 27.629218133920151 }, "geometry": { "type": "Point", "coordinates": [ 85.31937106494108, 27.629218133920151 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1028, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 99, "repvalue": 396000, "xcoord": 85.320160800169873, "ycoord": 27.627636665624454 }, "geometry": { "type": "Point", "coordinates": [ 85.320160800169873, 27.627636665624454 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1029, "nhouse": 14, "residents": 51, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 98, "repvalue": 1568000, "xcoord": 85.319898714568382, "ycoord": 27.628088072732112 }, "geometry": { "type": "Point", "coordinates": [ 85.319898714568382, 27.628088072732112 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1030, "nhouse": 13, "residents": 58, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 69, "repvalue": 1380000, "xcoord": 85.320159065215876, "ycoord": 27.6277502901087 }, "geometry": { "type": "Point", "coordinates": [ 85.320159065215876, 27.6277502901087 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1031, "nhouse": 5, "residents": 17, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 57, "repvalue": 570000, "xcoord": 85.320424618183793, "ycoord": 27.627071633388734 }, "geometry": { "type": "Point", "coordinates": [ 85.320424618183793, 27.627071633388734 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1032, "nhouse": 5, "residents": 21, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 66, "repvalue": 2112000, "xcoord": 85.320555658883521, "ycoord": 27.626845929281799 }, "geometry": { "type": "Point", "coordinates": [ 85.320555658883521, 27.626845929281799 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 2168, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 116, "repvalue": 2088000, "xcoord": 85.319896979310542, "ycoord": 27.628201697193656 }, "geometry": { "type": "Point", "coordinates": [ 85.319896979310542, 27.628201697193656 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 2171, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 138, "repvalue": 1656000, "xcoord": 85.318591726668828, "ycoord": 27.630117850280154 }, "geometry": { "type": "Point", "coordinates": [ 85.318591726668828, 27.630117850280154 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 2176, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Com", "fptarea": 107, "repvalue": 1498000, "xcoord": 85.318850349885224, "ycoord": 27.629893694970608 }, "geometry": { "type": "Point", "coordinates": [ 85.318850349885224, 27.629893694970608 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 2179, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Com", "fptarea": 140, "repvalue": 2800000, "xcoord": 85.320422883543785, "ycoord": 27.62718525789764 }, "geometry": { "type": "Point", "coordinates": [ 85.320422883543785, 27.62718525789764 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 2199, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Com", "fptarea": 119, "repvalue": 1428000, "xcoord": 85.320686699026396, "ycoord": 27.626620225020087 }, "geometry": { "type": "Point", "coordinates": [ 85.320686699026396, 27.626620225020087 ] } }, +{ "type": "Feature", "properties": { "zoneid": 23, "bldid": 1033, "nhouse": 3, "residents": 15, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 76, "repvalue": 304000, "xcoord": 85.317695309861222, "ycoord": 27.623939979796926 }, "geometry": { "type": "Point", "coordinates": [ 85.317695309861222, 27.623939979796926 ] } }, +{ "type": "Feature", "properties": { "zoneid": 23, "bldid": 1034, "nhouse": 22, "residents": 84, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 96, "repvalue": 2496000, "xcoord": 85.317834082419921, "ycoord": 27.623472697056965 }, "geometry": { "type": "Point", "coordinates": [ 85.317834082419921, 27.623472697056965 ] } }, +{ "type": "Feature", "properties": { "zoneid": 23, "bldid": 2125, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Com", "fptarea": 105, "repvalue": 1260000, "xcoord": 85.317971061865592, "ycoord": 27.623122633859449 }, "geometry": { "type": "Point", "coordinates": [ 85.317971061865592, 27.623122633859449 ] } }, +{ "type": "Feature", "properties": { "zoneid": 23, "bldid": 2128, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Com", "fptarea": 111, "repvalue": 1110000, "xcoord": 85.317969270024378, "ycoord": 27.623239853621282 }, "geometry": { "type": "Point", "coordinates": [ 85.317969270024378, 27.623239853621282 ] } }, +{ "type": "Feature", "properties": { "zoneid": 23, "bldid": 2134, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Com", "fptarea": 149, "repvalue": 2086000, "xcoord": 85.318108040384473, "ycoord": 27.622772570470907 }, "geometry": { "type": "Point", "coordinates": [ 85.318108040384473, 27.622772570470907 ] } }, +{ "type": "Feature", "properties": { "zoneid": 23, "bldid": 2135, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 144, "repvalue": 2592000, "xcoord": 85.318106248715779, "ycoord": 27.622889790246923 }, "geometry": { "type": "Point", "coordinates": [ 85.318106248715779, 27.622889790246923 ] } }, +{ "type": "Feature", "properties": { "zoneid": 23, "bldid": 2148, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Com", "fptarea": 147, "repvalue": 2058000, "xcoord": 85.318104457036242, "ycoord": 27.623007010020839 }, "geometry": { "type": "Point", "coordinates": [ 85.318104457036242, 27.623007010020839 ] } }, +{ "type": "Feature", "properties": { "zoneid": 23, "bldid": 2178, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Com", "fptarea": 129, "repvalue": 1806000, "xcoord": 85.318241434973373, "ycoord": 27.622656946469636 }, "geometry": { "type": "Point", "coordinates": [ 85.318241434973373, 27.622656946469636 ] } }, +{ "type": "Feature", "properties": { "zoneid": 23, "bldid": 2191, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Com", "fptarea": 149, "repvalue": 1490000, "xcoord": 85.318374829282192, "ycoord": 27.622541322325713 }, "geometry": { "type": "Point", "coordinates": [ 85.318374829282192, 27.622541322325713 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1035, "nhouse": 3, "residents": 8, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 65, "repvalue": 390000, "xcoord": 85.322126474653814, "ycoord": 27.625443766327866 }, "geometry": { "type": "Point", "coordinates": [ 85.322126474653814, 27.625443766327866 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1036, "nhouse": 5, "residents": 22, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 72, "repvalue": 576000, "xcoord": 85.322926834319262, "ycoord": 27.624749996975588 }, "geometry": { "type": "Point", "coordinates": [ 85.322926834319262, 27.624749996975588 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1037, "nhouse": 1, "residents": 5, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 77, "repvalue": 154000, "xcoord": 85.321991292653195, "ycoord": 27.625676614017024 }, "geometry": { "type": "Point", "coordinates": [ 85.321991292653195, 27.625676614017024 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1038, "nhouse": 13, "residents": 53, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 55, "repvalue": 1540000, "xcoord": 85.322517719942596, "ycoord": 27.625682982287355 }, "geometry": { "type": "Point", "coordinates": [ 85.322517719942596, 27.625682982287355 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1039, "nhouse": 11, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 102, "repvalue": 1224000, "xcoord": 85.322656474896817, "ycoord": 27.625215694020611 }, "geometry": { "type": "Point", "coordinates": [ 85.322656474896817, 27.625215694020611 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1040, "nhouse": 8, "residents": 51, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 56, "repvalue": 896000, "xcoord": 85.322137199978059, "ycoord": 27.624740446446069 }, "geometry": { "type": "Point", "coordinates": [ 85.322137199978059, 27.624740446446069 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1041, "nhouse": 12, "residents": 53, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 102, "repvalue": 1224000, "xcoord": 85.321875776413691, "ycoord": 27.624620041966313 }, "geometry": { "type": "Point", "coordinates": [ 85.321875776413691, 27.624620041966313 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1042, "nhouse": 8, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 73, "repvalue": 876000, "xcoord": 85.321719138797391, "ycoord": 27.626259528838041 }, "geometry": { "type": "Point", "coordinates": [ 85.321719138797391, 27.626259528838041 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1043, "nhouse": 4, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 70, "repvalue": 420000, "xcoord": 85.321463077222887, "ycoord": 27.625787463679778 }, "geometry": { "type": "Point", "coordinates": [ 85.321463077222887, 27.625787463679778 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1044, "nhouse": 18, "residents": 65, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 90, "repvalue": 1980000, "xcoord": 85.321879351974005, "ycoord": 27.62438560201641 }, "geometry": { "type": "Point", "coordinates": [ 85.321879351974005, 27.62438560201641 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1045, "nhouse": 5, "residents": 19, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 65, "repvalue": 650000, "xcoord": 85.323049507239062, "ycoord": 27.625337688476737 }, "geometry": { "type": "Point", "coordinates": [ 85.323049507239062, 27.625337688476737 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1046, "nhouse": 31, "residents": 127, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 97, "repvalue": 3298000, "xcoord": 85.322382538426638, "ycoord": 27.625915830374037 }, "geometry": { "type": "Point", "coordinates": [ 85.322382538426638, 27.625915830374037 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1047, "nhouse": 8, "residents": 30, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 58, "repvalue": 812000, "xcoord": 85.321591107746229, "ycoord": 27.626023496309678 }, "geometry": { "type": "Point", "coordinates": [ 85.321591107746229, 27.626023496309678 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1048, "nhouse": 20, "residents": 73, "specialfac": 0, "expstr": "RCi+HC+19s+Res", "fptarea": 61, "repvalue": 2318000, "xcoord": 85.322387900426563, "ycoord": 27.625564170420237 }, "geometry": { "type": "Point", "coordinates": [ 85.322387900426563, 27.625564170420237 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1049, "nhouse": 13, "residents": 52, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 102, "repvalue": 1428000, "xcoord": 85.322658261896052, "ycoord": 27.625098474009793 }, "geometry": { "type": "Point", "coordinates": [ 85.322658261896052, 27.625098474009793 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1050, "nhouse": 8, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 60, "repvalue": 840000, "xcoord": 85.321331470330662, "ycoord": 27.625785870793319 }, "geometry": { "type": "Point", "coordinates": [ 85.321331470330662, 27.625785870793319 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1051, "nhouse": 5, "residents": 23, "specialfac": 0, "expstr": "BrM+LC+3s+Res", "fptarea": 101, "repvalue": 606000, "xcoord": 85.322660048884515, "ycoord": 27.624981253996879 }, "geometry": { "type": "Point", "coordinates": [ 85.322660048884515, 27.624981253996879 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1052, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "BrM+LC+2s+Res", "fptarea": 85, "repvalue": 340000, "xcoord": 85.322268805674611, "ycoord": 27.624742038512895 }, "geometry": { "type": "Point", "coordinates": [ 85.322268805674611, 27.624742038512895 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1053, "nhouse": 2, "residents": 11, "specialfac": 0, "expstr": "BrM+LC+2s+Res", "fptarea": 59, "repvalue": 236000, "xcoord": 85.322270593050817, "ycoord": 27.624624818517393 }, "geometry": { "type": "Point", "coordinates": [ 85.322270593050817, 27.624624818517393 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1054, "nhouse": 4, "residents": 19, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 75, "repvalue": 450000, "xcoord": 85.321601836755633, "ycoord": 27.625320176679992 }, "geometry": { "type": "Point", "coordinates": [ 85.321601836755633, 27.625320176679992 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1055, "nhouse": 2, "residents": 9, "specialfac": 0, "expstr": "BrM+LC+1s+Res", "fptarea": 100, "repvalue": 200000, "xcoord": 85.322537378356074, "ycoord": 27.624393562232147 }, "geometry": { "type": "Point", "coordinates": [ 85.322537378356074, 27.624393562232147 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1056, "nhouse": 7, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 81, "repvalue": 810000, "xcoord": 85.321861473740583, "ycoord": 27.625557801682412 }, "geometry": { "type": "Point", "coordinates": [ 85.321861473740583, 27.625557801682412 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1057, "nhouse": 4, "residents": 17, "specialfac": 0, "expstr": "BrM+LC+3s+Res", "fptarea": 91, "repvalue": 546000, "xcoord": 85.322121111845931, "ycoord": 27.625795426240568 }, "geometry": { "type": "Point", "coordinates": [ 85.322121111845931, 27.625795426240568 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1058, "nhouse": 16, "residents": 51, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 77, "repvalue": 1694000, "xcoord": 85.322256293738874, "ycoord": 27.62556257842293 }, "geometry": { "type": "Point", "coordinates": [ 85.322256293738874, 27.62556257842293 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1059, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 59, "repvalue": 354000, "xcoord": 85.322652900865961, "ycoord": 27.62545013403599 }, "geometry": { "type": "Point", "coordinates": [ 85.322652900865961, 27.62545013403599 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1060, "nhouse": 18, "residents": 72, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 92, "repvalue": 3128000, "xcoord": 85.322128262234841, "ycoord": 27.625326546352792 }, "geometry": { "type": "Point", "coordinates": [ 85.322128262234841, 27.625326546352792 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1775, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Com", "fptarea": 104, "repvalue": 1248000, "xcoord": 85.322665409785102, "ycoord": 27.624629593945617 }, "geometry": { "type": "Point", "coordinates": [ 85.322665409785102, 27.624629593945617 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1779, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 146, "repvalue": 2628000, "xcoord": 85.322400411381963, "ycoord": 27.624743630454958 }, "geometry": { "type": "Point", "coordinates": [ 85.322400411381963, 27.624743630454958 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1781, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 96, "repvalue": 1152000, "xcoord": 85.322386113104059, "ycoord": 27.625681390406925 }, "geometry": { "type": "Point", "coordinates": [ 85.322386113104059, 27.625681390406925 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1793, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Com", "fptarea": 141, "repvalue": 2256000, "xcoord": 85.321985929360395, "ycoord": 27.626028273893528 }, "geometry": { "type": "Point", "coordinates": [ 85.321985929360395, 27.626028273893528 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1799, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Com", "fptarea": 117, "repvalue": 1170000, "xcoord": 85.322391475039225, "ycoord": 27.625329730440598 }, "geometry": { "type": "Point", "coordinates": [ 85.322391475039225, 27.625329730440598 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1800, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Com", "fptarea": 125, "repvalue": 2500000, "xcoord": 85.321722714940151, "ycoord": 27.626025088962397 }, "geometry": { "type": "Point", "coordinates": [ 85.321722714940151, 27.626025088962397 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1807, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Com", "fptarea": 121, "repvalue": 1936000, "xcoord": 85.322519507125051, "ycoord": 27.625565762292776 }, "geometry": { "type": "Point", "coordinates": [ 85.322519507125051, 27.625565762292776 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1814, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Com", "fptarea": 144, "repvalue": 1728000, "xcoord": 85.322515932749326, "ycoord": 27.625800202279848 }, "geometry": { "type": "Point", "coordinates": [ 85.322515932749326, 27.625800202279848 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1816, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Com", "fptarea": 98, "repvalue": 1568000, "xcoord": 85.323051293828939, "ycoord": 27.625220468444329 }, "geometry": { "type": "Point", "coordinates": [ 85.323051293828939, 27.625220468444329 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1825, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Com", "fptarea": 100, "repvalue": 1800000, "xcoord": 85.322124687061986, "ycoord": 27.625560986300854 }, "geometry": { "type": "Point", "coordinates": [ 85.322124687061986, 27.625560986300854 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1829, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+9s+Com", "fptarea": 99, "repvalue": 1782000, "xcoord": 85.321868625163518, "ycoord": 27.625088921841069 }, "geometry": { "type": "Point", "coordinates": [ 85.321868625163518, 27.625088921841069 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1836, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Com", "fptarea": 104, "repvalue": 1040000, "xcoord": 85.32158753132336, "ycoord": 27.626257936169537 }, "geometry": { "type": "Point", "coordinates": [ 85.32158753132336, 27.626257936169537 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1840, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Com", "fptarea": 116, "repvalue": 1160000, "xcoord": 85.322535591281536, "ycoord": 27.624510782247597 }, "geometry": { "type": "Point", "coordinates": [ 85.322535591281536, 27.624510782247597 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1842, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Com", "fptarea": 106, "repvalue": 1908000, "xcoord": 85.322142562494449, "ycoord": 27.624388786476988 }, "geometry": { "type": "Point", "coordinates": [ 85.322142562494449, 27.624388786476988 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1843, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Com", "fptarea": 114, "repvalue": 1824000, "xcoord": 85.321333258784406, "ycoord": 27.625668650871873 }, "geometry": { "type": "Point", "coordinates": [ 85.321333258784406, 27.625668650871873 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1844, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Com", "fptarea": 109, "repvalue": 1526000, "xcoord": 85.321592895941464, "ycoord": 27.625906276376625 }, "geometry": { "type": "Point", "coordinates": [ 85.321592895941464, 27.625906276376625 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1845, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 110, "repvalue": 1540000, "xcoord": 85.321731655108053, "ycoord": 27.625438989236734 }, "geometry": { "type": "Point", "coordinates": [ 85.321731655108053, 27.625438989236734 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1851, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Com", "fptarea": 130, "repvalue": 1560000, "xcoord": 85.321863261612506, "ycoord": 27.625440581725208 }, "geometry": { "type": "Point", "coordinates": [ 85.321863261612506, 27.625440581725208 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1852, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Com", "fptarea": 147, "repvalue": 2352000, "xcoord": 85.321740595006005, "ycoord": 27.624852889458868 }, "geometry": { "type": "Point", "coordinates": [ 85.321740595006005, 27.624852889458868 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1854, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Com", "fptarea": 109, "repvalue": 1744000, "xcoord": 85.322917900777512, "ycoord": 27.625336097119042 }, "geometry": { "type": "Point", "coordinates": [ 85.322917900777512, 27.625336097119042 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1856, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 101, "repvalue": 1414000, "xcoord": 85.321733443109238, "ycoord": 27.625321769285339 }, "geometry": { "type": "Point", "coordinates": [ 85.321733443109238, 27.625321769285339 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1857, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Com", "fptarea": 117, "repvalue": 2340000, "xcoord": 85.321729867096082, "ycoord": 27.625556209186048 }, "geometry": { "type": "Point", "coordinates": [ 85.321729867096082, 27.625556209186048 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1859, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Com", "fptarea": 118, "repvalue": 1888000, "xcoord": 85.322788081196734, "ycoord": 27.625217285619946 }, "geometry": { "type": "Point", "coordinates": [ 85.322788081196734, 27.625217285619946 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1868, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+8s+Com", "fptarea": 108, "repvalue": 1728000, "xcoord": 85.322925047632495, "ycoord": 27.624867217008457 }, "geometry": { "type": "Point", "coordinates": [ 85.322925047632495, 27.624867217008457 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1871, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Com", "fptarea": 96, "repvalue": 1344000, "xcoord": 85.321322527899937, "ycoord": 27.626371970369217 }, "geometry": { "type": "Point", "coordinates": [ 85.321322527899937, 27.626371970369217 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1872, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Com", "fptarea": 104, "repvalue": 1456000, "xcoord": 85.321466653839451, "ycoord": 27.625553023819002 }, "geometry": { "type": "Point", "coordinates": [ 85.321466653839451, 27.625553023819002 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1873, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Com", "fptarea": 113, "repvalue": 1808000, "xcoord": 85.322122899459359, "ycoord": 27.625678206271754 }, "geometry": { "type": "Point", "coordinates": [ 85.322122899459359, 27.625678206271754 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1875, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Com", "fptarea": 144, "repvalue": 2304000, "xcoord": 85.322252718802943, "ycoord": 27.625797018378432 }, "geometry": { "type": "Point", "coordinates": [ 85.322252718802943, 27.625797018378432 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1877, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 140, "repvalue": 1960000, "xcoord": 85.321326104904628, "ycoord": 27.626137530545126 }, "geometry": { "type": "Point", "coordinates": [ 85.321326104904628, 27.626137530545126 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1884, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Com", "fptarea": 117, "repvalue": 1872000, "xcoord": 85.321594684125884, "ycoord": 27.625789056441469 }, "geometry": { "type": "Point", "coordinates": [ 85.321594684125884, 27.625789056441469 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1887, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Com", "fptarea": 118, "repvalue": 1416000, "xcoord": 85.321603624886066, "ycoord": 27.625202956734398 }, "geometry": { "type": "Point", "coordinates": [ 85.321603624886066, 27.625202956734398 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1889, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+10s+Com", "fptarea": 104, "repvalue": 2080000, "xcoord": 85.322402198618121, "ycoord": 27.624626410451565 }, "geometry": { "type": "Point", "coordinates": [ 85.322402198618121, 27.624626410451565 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1891, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+8s+Com", "fptarea": 108, "repvalue": 1728000, "xcoord": 85.322130049805082, "ycoord": 27.625209326375622 }, "geometry": { "type": "Point", "coordinates": [ 85.322130049805082, 27.625209326375622 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1895, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 139, "repvalue": 1668000, "xcoord": 85.322259868631633, "ycoord": 27.625328138459079 }, "geometry": { "type": "Point", "coordinates": [ 85.322259868631633, 27.625328138459079 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1897, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Com", "fptarea": 114, "repvalue": 1824000, "xcoord": 85.322526655746984, "ycoord": 27.62509688229358 }, "geometry": { "type": "Point", "coordinates": [ 85.322526655746984, 27.62509688229358 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1898, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Com", "fptarea": 127, "repvalue": 2286000, "xcoord": 85.322396836877246, "ycoord": 27.624978070455477 }, "geometry": { "type": "Point", "coordinates": [ 85.322396836877246, 27.624978070455477 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1902, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 110, "repvalue": 1540000, "xcoord": 85.322786294326747, "ycoord": 27.625334505636577 }, "geometry": { "type": "Point", "coordinates": [ 85.322786294326747, 27.625334505636577 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1905, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Com", "fptarea": 141, "repvalue": 2256000, "xcoord": 85.321996655848835, "ycoord": 27.625324954121737 }, "geometry": { "type": "Point", "coordinates": [ 85.321996655848835, 27.625324954121737 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1908, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Com", "fptarea": 120, "repvalue": 1920000, "xcoord": 85.3227827205544, "ycoord": 27.625568945663556 }, "geometry": { "type": "Point", "coordinates": [ 85.3227827205544, 27.625568945663556 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1911, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 140, "repvalue": 1960000, "xcoord": 85.322005594292307, "ycoord": 27.624738854254485 }, "geometry": { "type": "Point", "coordinates": [ 85.322005594292307, 27.624738854254485 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1912, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 99, "repvalue": 1386000, "xcoord": 85.321984141574532, "ycoord": 27.626145493848185 }, "geometry": { "type": "Point", "coordinates": [ 85.321984141574532, 27.626145493848185 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1913, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Com", "fptarea": 106, "repvalue": 1484000, "xcoord": 85.322010957228827, "ycoord": 27.624387194309076 }, "geometry": { "type": "Point", "coordinates": [ 85.322010957228827, 27.624387194309076 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1920, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Com", "fptarea": 101, "repvalue": 1616000, "xcoord": 85.322133624913164, "ycoord": 27.624974886415021 }, "geometry": { "type": "Point", "coordinates": [ 85.322133624913164, 27.624974886415021 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1922, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+8s+Com", "fptarea": 118, "repvalue": 1888000, "xcoord": 85.321720926874178, "ycoord": 27.626142308901262 }, "geometry": { "type": "Point", "coordinates": [ 85.321720926874178, 27.626142308901262 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1931, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Com", "fptarea": 111, "repvalue": 1776000, "xcoord": 85.321735231099623, "ycoord": 27.625204549331851 }, "geometry": { "type": "Point", "coordinates": [ 85.321735231099623, 27.625204549331851 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1932, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Com", "fptarea": 143, "repvalue": 2574000, "xcoord": 85.321850746282237, "ycoord": 27.626261121381784 }, "geometry": { "type": "Point", "coordinates": [ 85.321850746282237, 27.626261121381784 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1935, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Com", "fptarea": 104, "repvalue": 2080000, "xcoord": 85.322789868055921, "ycoord": 27.625100065601242 }, "geometry": { "type": "Point", "coordinates": [ 85.322789868055921, 27.625100065601242 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1937, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Com", "fptarea": 106, "repvalue": 1272000, "xcoord": 85.321596472299532, "ycoord": 27.625671836504232 }, "geometry": { "type": "Point", "coordinates": [ 85.321596472299532, 27.625671836504232 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1940, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Com", "fptarea": 146, "repvalue": 2336000, "xcoord": 85.32252844287548, "ycoord": 27.62497966228856 }, "geometry": { "type": "Point", "coordinates": [ 85.32252844287548, 27.62497966228856 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1943, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Com", "fptarea": 141, "repvalue": 1692000, "xcoord": 85.321335047227336, "ycoord": 27.625551430948338 }, "geometry": { "type": "Point", "coordinates": [ 85.321335047227336, 27.625551430948338 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1948, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+7s+Com", "fptarea": 113, "repvalue": 1582000, "xcoord": 85.322793441741936, "ycoord": 27.624865625557554 }, "geometry": { "type": "Point", "coordinates": [ 85.322793441741936, 27.624865625557554 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1953, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Com", "fptarea": 108, "repvalue": 2160000, "xcoord": 85.322389687738294, "ycoord": 27.625446950431456 }, "geometry": { "type": "Point", "coordinates": [ 85.322389687738294, 27.625446950431456 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1954, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 149, "repvalue": 2086000, "xcoord": 85.323179327250784, "ycoord": 27.625456499747873 }, "geometry": { "type": "Point", "coordinates": [ 85.323179327250784, 27.625456499747873 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1956, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Com", "fptarea": 97, "repvalue": 970000, "xcoord": 85.321470230412828, "ycoord": 27.625318583949884 }, "geometry": { "type": "Point", "coordinates": [ 85.321470230412828, 27.625318583949884 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1959, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 129, "repvalue": 1548000, "xcoord": 85.322530229993191, "ycoord": 27.624862442281454 }, "geometry": { "type": "Point", "coordinates": [ 85.322530229993191, 27.624862442281454 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1962, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Com", "fptarea": 146, "repvalue": 2920000, "xcoord": 85.322249143823825, "ycoord": 27.626031458325581 }, "geometry": { "type": "Point", "coordinates": [ 85.322249143823825, 27.626031458325581 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1963, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 102, "repvalue": 1836000, "xcoord": 85.321324316407697, "ycoord": 27.626254750458216 }, "geometry": { "type": "Point", "coordinates": [ 85.321324316407697, 27.626254750458216 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1964, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Com", "fptarea": 97, "repvalue": 1164000, "xcoord": 85.323444326688445, "ycoord": 27.625342461801242 }, "geometry": { "type": "Point", "coordinates": [ 85.323444326688445, 27.625342461801242 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1968, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+10s+Com", "fptarea": 125, "repvalue": 2500000, "xcoord": 85.322914327285261, "ycoord": 27.625570537161803 }, "geometry": { "type": "Point", "coordinates": [ 85.322914327285261, 27.625570537161803 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1971, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Com", "fptarea": 123, "repvalue": 1968000, "xcoord": 85.322921474226575, "ycoord": 27.625101657067923 }, "geometry": { "type": "Point", "coordinates": [ 85.322921474226575, 27.625101657067923 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1972, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Com", "fptarea": 119, "repvalue": 1666000, "xcoord": 85.322667196730379, "ycoord": 27.624512373924357 }, "geometry": { "type": "Point", "coordinates": [ 85.322667196730379, 27.624512373924357 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1974, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Com", "fptarea": 149, "repvalue": 2980000, "xcoord": 85.321865049473629, "ycoord": 27.625323361765922 }, "geometry": { "type": "Point", "coordinates": [ 85.321865049473629, 27.625323361765922 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1978, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 106, "repvalue": 1908000, "xcoord": 85.321866837323981, "ycoord": 27.62520614180454 }, "geometry": { "type": "Point", "coordinates": [ 85.321866837323981, 27.62520614180454 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1984, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Com", "fptarea": 136, "repvalue": 1360000, "xcoord": 85.322654687886768, "ycoord": 27.62533291402935 }, "geometry": { "type": "Point", "coordinates": [ 85.322654687886768, 27.62533291402935 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1993, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Com", "fptarea": 123, "repvalue": 1476000, "xcoord": 85.321877564199255, "ycoord": 27.624502821992401 }, "geometry": { "type": "Point", "coordinates": [ 85.321877564199255, 27.624502821992401 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1994, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Com", "fptarea": 138, "repvalue": 2760000, "xcoord": 85.322780933652055, "ycoord": 27.625686165673919 }, "geometry": { "type": "Point", "coordinates": [ 85.322780933652055, 27.625686165673919 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1996, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+9s+Com", "fptarea": 134, "repvalue": 2412000, "xcoord": 85.322797015384779, "ycoord": 27.624631185505507 }, "geometry": { "type": "Point", "coordinates": [ 85.322797015384779, 27.624631185505507 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1997, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Com", "fptarea": 102, "repvalue": 1632000, "xcoord": 85.322791654904321, "ycoord": 27.62498284558044 }, "geometry": { "type": "Point", "coordinates": [ 85.322791654904321, 27.62498284558044 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1998, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Com", "fptarea": 97, "repvalue": 1164000, "xcoord": 85.322140774999781, "ycoord": 27.62450600646876 }, "geometry": { "type": "Point", "coordinates": [ 85.322140774999781, 27.62450600646876 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 1999, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Com", "fptarea": 114, "repvalue": 1140000, "xcoord": 85.32199486812776, "ycoord": 27.625442174088924 }, "geometry": { "type": "Point", "coordinates": [ 85.32199486812776, 27.625442174088924 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 2004, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Com", "fptarea": 146, "repvalue": 2336000, "xcoord": 85.321327893390773, "ycoord": 27.62602031062994 }, "geometry": { "type": "Point", "coordinates": [ 85.321327893390773, 27.62602031062994 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 2006, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Com", "fptarea": 112, "repvalue": 2240000, "xcoord": 85.321320739381392, "ycoord": 27.626489190278132 }, "geometry": { "type": "Point", "coordinates": [ 85.321320739381392, 27.626489190278132 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 2011, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 139, "repvalue": 1946000, "xcoord": 85.321852534218962, "ycoord": 27.626143901437104 }, "geometry": { "type": "Point", "coordinates": [ 85.321852534218962, 27.626143901437104 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 2025, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Com", "fptarea": 147, "repvalue": 2352000, "xcoord": 85.322919687507436, "ycoord": 27.625218877094529 }, "geometry": { "type": "Point", "coordinates": [ 85.322919687507436, 27.625218877094529 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 2028, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+10s+Com", "fptarea": 113, "repvalue": 2260000, "xcoord": 85.322274167770871, "ycoord": 27.624390378520133 }, "geometry": { "type": "Point", "coordinates": [ 85.322274167770871, 27.624390378520133 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 2033, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+6s+Com", "fptarea": 97, "repvalue": 1164000, "xcoord": 85.321452347113947, "ycoord": 27.62649078321197 }, "geometry": { "type": "Point", "coordinates": [ 85.321452347113947, 27.62649078321197 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 2037, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Com", "fptarea": 111, "repvalue": 1998000, "xcoord": 85.322916114036786, "ycoord": 27.625453317141467 }, "geometry": { "type": "Point", "coordinates": [ 85.322916114036786, 27.625453317141467 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 2046, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 137, "repvalue": 1918000, "xcoord": 85.322393262329356, "ycoord": 27.625212510447643 }, "geometry": { "type": "Point", "coordinates": [ 85.322393262329356, 27.625212510447643 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 2048, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Com", "fptarea": 124, "repvalue": 1240000, "xcoord": 85.322532017100102, "ycoord": 27.62474522227226 }, "geometry": { "type": "Point", "coordinates": [ 85.322532017100102, 27.62474522227226 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 2050, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Com", "fptarea": 107, "repvalue": 1070000, "xcoord": 85.321468442131547, "ycoord": 27.625435803885487 }, "geometry": { "type": "Point", "coordinates": [ 85.321468442131547, 27.625435803885487 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 2051, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Com", "fptarea": 114, "repvalue": 1596000, "xcoord": 85.322533804196212, "ycoord": 27.62462800226097 }, "geometry": { "type": "Point", "coordinates": [ 85.322533804196212, 27.62462800226097 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 2060, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Com", "fptarea": 105, "repvalue": 1470000, "xcoord": 85.323054866976335, "ycoord": 27.624986028373264 }, "geometry": { "type": "Point", "coordinates": [ 85.323054866976335, 27.624986028373264 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 2061, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Com", "fptarea": 123, "repvalue": 2214000, "xcoord": 85.321857897964321, "ycoord": 27.625792241590556 }, "geometry": { "type": "Point", "coordinates": [ 85.321857897964321, 27.625792241590556 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 2062, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Com", "fptarea": 135, "repvalue": 1890000, "xcoord": 85.322405773058065, "ycoord": 27.62439197043852 }, "geometry": { "type": "Point", "coordinates": [ 85.322405773058065, 27.62439197043852 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 2063, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Com", "fptarea": 105, "repvalue": 1890000, "xcoord": 85.321859685857845, "ycoord": 27.62567502163753 }, "geometry": { "type": "Point", "coordinates": [ 85.321859685857845, 27.62567502163753 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 2068, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Com", "fptarea": 147, "repvalue": 2646000, "xcoord": 85.322131837364523, "ycoord": 27.625092106396362 }, "geometry": { "type": "Point", "coordinates": [ 85.322131837364523, 27.625092106396362 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 2069, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 122, "repvalue": 1464000, "xcoord": 85.321989504899733, "ycoord": 27.625793833977948 }, "geometry": { "type": "Point", "coordinates": [ 85.321989504899733, 27.625793833977948 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 2072, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Com", "fptarea": 116, "repvalue": 2088000, "xcoord": 85.3216000486144, "ycoord": 27.625437396623489 }, "geometry": { "type": "Point", "coordinates": [ 85.3216000486144, 27.625437396623489 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 2074, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Com", "fptarea": 142, "repvalue": 2272000, "xcoord": 85.322267018287604, "ycoord": 27.624859258506309 }, "geometry": { "type": "Point", "coordinates": [ 85.322267018287604, 27.624859258506309 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 2077, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Com", "fptarea": 115, "repvalue": 1840000, "xcoord": 85.321998443559139, "ycoord": 27.625207734152461 }, "geometry": { "type": "Point", "coordinates": [ 85.321998443559139, 27.625207734152461 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 2078, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Com", "fptarea": 145, "repvalue": 2320000, "xcoord": 85.322384325770741, "ycoord": 27.62579861039152 }, "geometry": { "type": "Point", "coordinates": [ 85.322384325770741, 27.62579861039152 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 2080, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 115, "repvalue": 1380000, "xcoord": 85.32305665353384, "ycoord": 27.6248688083346 }, "geometry": { "type": "Point", "coordinates": [ 85.32305665353384, 27.6248688083346 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 2087, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 148, "repvalue": 1776000, "xcoord": 85.322649326791918, "ycoord": 27.625684574043021 }, "geometry": { "type": "Point", "coordinates": [ 85.322649326791918, 27.625684574043021 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 2089, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Com", "fptarea": 107, "repvalue": 1712000, "xcoord": 85.321454135492445, "ycoord": 27.626373563295164 }, "geometry": { "type": "Point", "coordinates": [ 85.321454135492445, 27.626373563295164 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 2091, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Com", "fptarea": 122, "repvalue": 1952000, "xcoord": 85.322254506276309, "ycoord": 27.62567979840172 }, "geometry": { "type": "Point", "coordinates": [ 85.322254506276309, 27.62567979840172 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 2093, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Com", "fptarea": 100, "repvalue": 1800000, "xcoord": 85.323058440080572, "ycoord": 27.62475158829384 }, "geometry": { "type": "Point", "coordinates": [ 85.323058440080572, 27.62475158829384 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 2095, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+8s+Com", "fptarea": 98, "repvalue": 1568000, "xcoord": 85.322007381948609, "ycoord": 27.624621634274767 }, "geometry": { "type": "Point", "coordinates": [ 85.322007381948609, 27.624621634274767 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 2096, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Com", "fptarea": 148, "repvalue": 2072000, "xcoord": 85.321872200810205, "ycoord": 27.624854481907871 }, "geometry": { "type": "Point", "coordinates": [ 85.321872200810205, 27.624854481907871 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 2097, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 99, "repvalue": 1188000, "xcoord": 85.321461288898391, "ycoord": 27.625904683607033 }, "geometry": { "type": "Point", "coordinates": [ 85.321461288898391, 27.625904683607033 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 2100, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 114, "repvalue": 1368000, "xcoord": 85.323314506504317, "ycoord": 27.625223650769655 }, "geometry": { "type": "Point", "coordinates": [ 85.323314506504317, 27.625223650769655 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 2102, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Com", "fptarea": 113, "repvalue": 2260000, "xcoord": 85.323181113711399, "ycoord": 27.625339279709671 }, "geometry": { "type": "Point", "coordinates": [ 85.323181113711399, 27.625339279709671 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 2104, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Com", "fptarea": 136, "repvalue": 2448000, "xcoord": 85.322258081190654, "ycoord": 27.625445358442047 }, "geometry": { "type": "Point", "coordinates": [ 85.322258081190654, 27.625445358442047 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 2106, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Com", "fptarea": 135, "repvalue": 2430000, "xcoord": 85.321738807048007, "ycoord": 27.624970109418612 }, "geometry": { "type": "Point", "coordinates": [ 85.321738807048007, 27.624970109418612 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 2107, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Com", "fptarea": 99, "repvalue": 1782000, "xcoord": 85.322403985843494, "ycoord": 27.62450919044608 }, "geometry": { "type": "Point", "coordinates": [ 85.322403985843494, 27.62450919044608 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 2113, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+8s+Com", "fptarea": 101, "repvalue": 1616000, "xcoord": 85.322002018947316, "ycoord": 27.624973294207649 }, "geometry": { "type": "Point", "coordinates": [ 85.322002018947316, 27.624973294207649 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 2116, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Com", "fptarea": 112, "repvalue": 1792000, "xcoord": 85.32305308040803, "ycoord": 27.62510324840984 }, "geometry": { "type": "Point", "coordinates": [ 85.32305308040803, 27.62510324840984 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 2119, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Com", "fptarea": 122, "repvalue": 1952000, "xcoord": 85.321585743095724, "ycoord": 27.626375156096334 }, "geometry": { "type": "Point", "coordinates": [ 85.321585743095724, 27.626375156096334 ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "bldid": 2123, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Com", "fptarea": 112, "repvalue": 1792000, "xcoord": 85.322661835862164, "ycoord": 27.624864033981886 }, "geometry": { "type": "Point", "coordinates": [ 85.322661835862164, 27.624864033981886 ] } }, +{ "type": "Feature", "properties": { "zoneid": 67, "bldid": 1061, "nhouse": 5, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 44, "repvalue": 528000, "xcoord": 85.311215667741578, "ycoord": 27.641308513962947 }, "geometry": { "type": "Point", "coordinates": [ 85.311215667741578, 27.641308513962947 ] } }, +{ "type": "Feature", "properties": { "zoneid": 67, "bldid": 1062, "nhouse": 7, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 50, "repvalue": 700000, "xcoord": 85.309423163467727, "ycoord": 27.640122034218141 }, "geometry": { "type": "Point", "coordinates": [ 85.309423163467727, 27.640122034218141 ] } }, +{ "type": "Feature", "properties": { "zoneid": 67, "bldid": 1063, "nhouse": 24, "residents": 74, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 73, "repvalue": 2190000, "xcoord": 85.308417392963563, "ycoord": 27.640109766236279 }, "geometry": { "type": "Point", "coordinates": [ 85.308417392963563, 27.640109766236279 ] } }, +{ "type": "Feature", "properties": { "zoneid": 67, "bldid": 1064, "nhouse": 5, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 52, "repvalue": 520000, "xcoord": 85.312018918927748, "ycoord": 27.641407883556454 }, "geometry": { "type": "Point", "coordinates": [ 85.312018918927748, 27.641407883556454 ] } }, +{ "type": "Feature", "properties": { "zoneid": 67, "bldid": 1065, "nhouse": 11, "residents": 43, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 72, "repvalue": 1008000, "xcoord": 85.312119497323934, "ycoord": 27.641409108123419 }, "geometry": { "type": "Point", "coordinates": [ 85.312119497323934, 27.641409108123419 ] } }, +{ "type": "Feature", "properties": { "zoneid": 67, "bldid": 1066, "nhouse": 9, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 59, "repvalue": 826000, "xcoord": 85.311923841227483, "ycoord": 27.641048377045415 }, "geometry": { "type": "Point", "coordinates": [ 85.311923841227483, 27.641048377045415 ] } }, +{ "type": "Feature", "properties": { "zoneid": 67, "bldid": 1067, "nhouse": 1, "residents": 5, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 58, "repvalue": 116000, "xcoord": 85.309830979055675, "ycoord": 27.63976865782012 }, "geometry": { "type": "Point", "coordinates": [ 85.309830979055675, 27.63976865782012 ] } }, +{ "type": "Feature", "properties": { "zoneid": 67, "bldid": 1068, "nhouse": 18, "residents": 79, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 53, "repvalue": 1696000, "xcoord": 85.306894946201382, "ycoord": 27.640987053037378 }, "geometry": { "type": "Point", "coordinates": [ 85.306894946201382, 27.640987053037378 ] } }, +{ "type": "Feature", "properties": { "zoneid": 67, "bldid": 1069, "nhouse": 10, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 79, "repvalue": 948000, "xcoord": 85.308602012994129, "ycoord": 27.641187064279059 }, "geometry": { "type": "Point", "coordinates": [ 85.308602012994129, 27.641187064279059 ] } }, +{ "type": "Feature", "properties": { "zoneid": 67, "bldid": 1070, "nhouse": 9, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 64, "repvalue": 896000, "xcoord": 85.311916965349667, "ycoord": 27.641496229381335 }, "geometry": { "type": "Point", "coordinates": [ 85.311916965349667, 27.641496229381335 ] } }, +{ "type": "Feature", "properties": { "zoneid": 67, "bldid": 1071, "nhouse": 6, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 53, "repvalue": 636000, "xcoord": 85.312331652794057, "ycoord": 27.640694993128395 }, "geometry": { "type": "Point", "coordinates": [ 85.312331652794057, 27.640694993128395 ] } }, +{ "type": "Feature", "properties": { "zoneid": 67, "bldid": 1072, "nhouse": 6, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 46, "repvalue": 552000, "xcoord": 85.309326718032011, "ycoord": 27.63985209665714 }, "geometry": { "type": "Point", "coordinates": [ 85.309326718032011, 27.63985209665714 ] } }, +{ "type": "Feature", "properties": { "zoneid": 67, "bldid": 1073, "nhouse": 6, "residents": 21, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 62, "repvalue": 620000, "xcoord": 85.30961880968016, "ycoord": 27.640482768432886 }, "geometry": { "type": "Point", "coordinates": [ 85.30961880968016, 27.640482768432886 ] } }, +{ "type": "Feature", "properties": { "zoneid": 67, "bldid": 1074, "nhouse": 23, "residents": 98, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 74, "repvalue": 2072000, "xcoord": 85.311930716946662, "ycoord": 27.640600524678977 }, "geometry": { "type": "Point", "coordinates": [ 85.311930716946662, 27.640600524678977 ] } }, +{ "type": "Feature", "properties": { "zoneid": 67, "bldid": 1075, "nhouse": 12, "residents": 48, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 71, "repvalue": 1136000, "xcoord": 85.309117300058247, "ycoord": 27.640387065640944 }, "geometry": { "type": "Point", "coordinates": [ 85.309117300058247, 27.640387065640944 ] } }, +{ "type": "Feature", "properties": { "zoneid": 67, "bldid": 1076, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 86, "repvalue": 344000, "xcoord": 85.308912012713961, "ycoord": 27.640653323175606 }, "geometry": { "type": "Point", "coordinates": [ 85.308912012713961, 27.640653323175606 ] } }, +{ "type": "Feature", "properties": { "zoneid": 67, "bldid": 1077, "nhouse": 6, "residents": 17, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 45, "repvalue": 540000, "xcoord": 85.309118677461768, "ycoord": 27.640297495291495 }, "geometry": { "type": "Point", "coordinates": [ 85.309118677461768, 27.640297495291495 ] } }, +{ "type": "Feature", "properties": { "zoneid": 67, "bldid": 1078, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 87, "repvalue": 348000, "xcoord": 85.310832619234233, "ycoord": 27.640049626714685 }, "geometry": { "type": "Point", "coordinates": [ 85.310832619234233, 27.640049626714685 ] } }, +{ "type": "Feature", "properties": { "zoneid": 67, "bldid": 1079, "nhouse": 26, "residents": 115, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 87, "repvalue": 2436000, "xcoord": 85.310016989361785, "ycoord": 27.640756384238475 }, "geometry": { "type": "Point", "coordinates": [ 85.310016989361785, 27.640756384238475 ] } }, +{ "type": "Feature", "properties": { "zoneid": 67, "bldid": 1080, "nhouse": 6, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 58, "repvalue": 1856000, "xcoord": 85.30781255251155, "ycoord": 27.640191972239769 }, "geometry": { "type": "Point", "coordinates": [ 85.30781255251155, 27.640191972239769 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1081, "nhouse": 5, "residents": 10, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 97, "repvalue": 582000, "xcoord": 85.310235782118497, "ycoord": 27.626905878629845 }, "geometry": { "type": "Point", "coordinates": [ 85.310235782118497, 27.626905878629845 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1082, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 86, "repvalue": 344000, "xcoord": 85.309803817941784, "ycoord": 27.630285528859169 }, "geometry": { "type": "Point", "coordinates": [ 85.309803817941784, 27.630285528859169 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1083, "nhouse": 21, "residents": 85, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 78, "repvalue": 2184000, "xcoord": 85.309684091470274, "ycoord": 27.629832747771449 }, "geometry": { "type": "Point", "coordinates": [ 85.309684091470274, 27.629832747771449 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1084, "nhouse": 10, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 56, "repvalue": 1120000, "xcoord": 85.309293709478069, "ycoord": 27.630504971399237 }, "geometry": { "type": "Point", "coordinates": [ 85.309293709478069, 27.630504971399237 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1085, "nhouse": 3, "residents": 18, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 98, "repvalue": 392000, "xcoord": 85.30943250579665, "ycoord": 27.629716850511503 }, "geometry": { "type": "Point", "coordinates": [ 85.30943250579665, 27.629716850511503 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1086, "nhouse": 9, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 76, "repvalue": 1064000, "xcoord": 85.307896974769932, "ycoord": 27.630713596018403 }, "geometry": { "type": "Point", "coordinates": [ 85.307896974769932, 27.630713596018403 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1087, "nhouse": 23, "residents": 95, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 70, "repvalue": 2380000, "xcoord": 85.309972071910565, "ycoord": 27.627579648239607 }, "geometry": { "type": "Point", "coordinates": [ 85.309972071910565, 27.627579648239607 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1088, "nhouse": 11, "residents": 45, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 73, "repvalue": 1168000, "xcoord": 85.309283306119795, "ycoord": 27.631181827065429 }, "geometry": { "type": "Point", "coordinates": [ 85.309283306119795, 27.631181827065429 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1089, "nhouse": 11, "residents": 56, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 78, "repvalue": 1092000, "xcoord": 85.309550497542517, "ycoord": 27.630282441074911 }, "geometry": { "type": "Point", "coordinates": [ 85.309550497542517, 27.630282441074911 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1090, "nhouse": 7, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 59, "repvalue": 708000, "xcoord": 85.308164176027731, "ycoord": 27.629814213098133 }, "geometry": { "type": "Point", "coordinates": [ 85.308164176027731, 27.629814213098133 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1091, "nhouse": 12, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 105, "repvalue": 1260000, "xcoord": 85.308698564273797, "ycoord": 27.628015444791451 }, "geometry": { "type": "Point", "coordinates": [ 85.308698564273797, 27.628015444791451 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1092, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 60, "repvalue": 360000, "xcoord": 85.307411161763852, "ycoord": 27.629353702766792 }, "geometry": { "type": "Point", "coordinates": [ 85.307411161763852, 27.629353702766792 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1093, "nhouse": 28, "residents": 124, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 105, "repvalue": 2940000, "xcoord": 85.309982469442602, "ycoord": 27.626902791980815 }, "geometry": { "type": "Point", "coordinates": [ 85.309982469442602, 27.626902791980815 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1094, "nhouse": 3, "residents": 17, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 65, "repvalue": 390000, "xcoord": 85.310612286701343, "ycoord": 27.627136126570999 }, "geometry": { "type": "Point", "coordinates": [ 85.310612286701343, 27.627136126570999 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1095, "nhouse": 8, "residents": 30, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 70, "repvalue": 840000, "xcoord": 85.308653469332825, "ycoord": 27.630948485657775 }, "geometry": { "type": "Point", "coordinates": [ 85.308653469332825, 27.630948485657775 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1096, "nhouse": 12, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 102, "repvalue": 1224000, "xcoord": 85.308547623893688, "ycoord": 27.629593229820998 }, "geometry": { "type": "Point", "coordinates": [ 85.308547623893688, 27.629593229820998 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1097, "nhouse": 7, "residents": 22, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 59, "repvalue": 826000, "xcoord": 85.309966873008591, "ycoord": 27.627918076342869 }, "geometry": { "type": "Point", "coordinates": [ 85.309966873008591, 27.627918076342869 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1098, "nhouse": 3, "residents": 17, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 83, "repvalue": 332000, "xcoord": 85.307654066871407, "ycoord": 27.630033649570112 }, "geometry": { "type": "Point", "coordinates": [ 85.307654066871407, 27.630033649570112 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1099, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 62, "repvalue": 124000, "xcoord": 85.308325530381254, "ycoord": 27.62755957317928 }, "geometry": { "type": "Point", "coordinates": [ 85.308325530381254, 27.62755957317928 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1100, "nhouse": 8, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 56, "repvalue": 896000, "xcoord": 85.310735479056689, "ycoord": 27.627363288231486 }, "geometry": { "type": "Point", "coordinates": [ 85.310735479056689, 27.627363288231486 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1101, "nhouse": 9, "residents": 29, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 80, "repvalue": 960000, "xcoord": 85.308153766026237, "ycoord": 27.630491068436093 }, "geometry": { "type": "Point", "coordinates": [ 85.308153766026237, 27.630491068436093 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1102, "nhouse": 28, "residents": 109, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 102, "repvalue": 3060000, "xcoord": 85.30933878650545, "ycoord": 27.627571929373797 }, "geometry": { "type": "Point", "coordinates": [ 85.30933878650545, 27.627571929373797 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1103, "nhouse": 15, "residents": 60, "specialfac": 0, "expstr": "RCi+HC+9s+Res", "fptarea": 92, "repvalue": 1656000, "xcoord": 85.309062931378747, "ycoord": 27.629035362003293 }, "geometry": { "type": "Point", "coordinates": [ 85.309062931378747, 27.629035362003293 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1104, "nhouse": 23, "residents": 78, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 107, "repvalue": 2568000, "xcoord": 85.310862135968904, "ycoord": 27.627364830949865 }, "geometry": { "type": "Point", "coordinates": [ 85.310862135968904, 27.627364830949865 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1105, "nhouse": 9, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 84, "repvalue": 1008000, "xcoord": 85.307898710075037, "ycoord": 27.630600786818867 }, "geometry": { "type": "Point", "coordinates": [ 85.307898710075037, 27.630600786818867 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1106, "nhouse": 3, "residents": 17, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 71, "repvalue": 426000, "xcoord": 85.309467177032417, "ycoord": 27.627460664035919 }, "geometry": { "type": "Point", "coordinates": [ 85.309467177032417, 27.627460664035919 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1107, "nhouse": 4, "residents": 15, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 86, "repvalue": 516000, "xcoord": 85.310091797651253, "ycoord": 27.62803242916268 }, "geometry": { "type": "Point", "coordinates": [ 85.310091797651253, 27.62803242916268 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1108, "nhouse": 21, "residents": 81, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 107, "repvalue": 2354000, "xcoord": 85.309409967332201, "ycoord": 27.631183371305429 }, "geometry": { "type": "Point", "coordinates": [ 85.309409967332201, 27.631183371305429 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1109, "nhouse": 1, "residents": 1, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 98, "repvalue": 196000, "xcoord": 85.307763372357215, "ycoord": 27.631163287170246 }, "geometry": { "type": "Point", "coordinates": [ 85.307763372357215, 27.631163287170246 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1110, "nhouse": 7, "residents": 21, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 59, "repvalue": 708000, "xcoord": 85.308944943140773, "ycoord": 27.6284697710995 }, "geometry": { "type": "Point", "coordinates": [ 85.308944943140773, 27.6284697710995 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1111, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 76, "repvalue": 304000, "xcoord": 85.308306448746507, "ycoord": 27.628800475085939 }, "geometry": { "type": "Point", "coordinates": [ 85.308306448746507, 27.628800475085939 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1112, "nhouse": 10, "residents": 43, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 91, "repvalue": 1092000, "xcoord": 85.309555698246712, "ycoord": 27.629944013159871 }, "geometry": { "type": "Point", "coordinates": [ 85.309555698246712, 27.629944013159871 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1113, "nhouse": 12, "residents": 53, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 98, "repvalue": 1372000, "xcoord": 85.30767662763769, "ycoord": 27.628567129865807 }, "geometry": { "type": "Point", "coordinates": [ 85.30767662763769, 27.628567129865807 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1114, "nhouse": 5, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 104, "repvalue": 624000, "xcoord": 85.31034857812827, "ycoord": 27.627809896953963 }, "geometry": { "type": "Point", "coordinates": [ 85.31034857812827, 27.627809896953963 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1115, "nhouse": 10, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 92, "repvalue": 1104000, "xcoord": 85.308327265014839, "ycoord": 27.627446763903428 }, "geometry": { "type": "Point", "coordinates": [ 85.308327265014839, 27.627446763903428 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1116, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 64, "repvalue": 384000, "xcoord": 85.309564365885549, "ycoord": 27.62937996659609 }, "geometry": { "type": "Point", "coordinates": [ 85.309564365885549, 27.62937996659609 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1117, "nhouse": 27, "residents": 115, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 91, "repvalue": 2912000, "xcoord": 85.309094141589384, "ycoord": 27.627004794398836 }, "geometry": { "type": "Point", "coordinates": [ 85.309094141589384, 27.627004794398836 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1118, "nhouse": 18, "residents": 59, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 56, "repvalue": 1904000, "xcoord": 85.309977270721902, "ycoord": 27.627241220118915 }, "geometry": { "type": "Point", "coordinates": [ 85.309977270721902, 27.627241220118915 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1119, "nhouse": 9, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 80, "repvalue": 960000, "xcoord": 85.307905651194631, "ycoord": 27.630149550001356 }, "geometry": { "type": "Point", "coordinates": [ 85.307905651194631, 27.630149550001356 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1120, "nhouse": 4, "residents": 19, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 71, "repvalue": 426000, "xcoord": 85.311247301625201, "ycoord": 27.627031030058522 }, "geometry": { "type": "Point", "coordinates": [ 85.311247301625201, 27.627031030058522 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1121, "nhouse": 16, "residents": 64, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 81, "repvalue": 1620000, "xcoord": 85.30805139694823, "ycoord": 27.628910193957417 }, "geometry": { "type": "Point", "coordinates": [ 85.30805139694823, 27.628910193957417 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1122, "nhouse": 11, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 72, "repvalue": 1152000, "xcoord": 85.307681833726321, "ycoord": 27.628228702195273 }, "geometry": { "type": "Point", "coordinates": [ 85.307681833726321, 27.628228702195273 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1123, "nhouse": 12, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 61, "repvalue": 1342000, "xcoord": 85.307506578704988, "ycoord": 27.631385813903147 }, "geometry": { "type": "Point", "coordinates": [ 85.307506578704988, 27.631385813903147 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1124, "nhouse": 6, "residents": 19, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 56, "repvalue": 672000, "xcoord": 85.310747603886256, "ycoord": 27.626573622253179 }, "geometry": { "type": "Point", "coordinates": [ 85.310747603886256, 27.626573622253179 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1125, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 56, "repvalue": 336000, "xcoord": 85.309158378965463, "ycoord": 27.631067473444364 }, "geometry": { "type": "Point", "coordinates": [ 85.309158378965463, 27.631067473444364 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1126, "nhouse": 5, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 98, "repvalue": 588000, "xcoord": 85.307778991270894, "ycoord": 27.630148004440755 }, "geometry": { "type": "Point", "coordinates": [ 85.307778991270894, 27.630148004440755 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1127, "nhouse": 23, "residents": 105, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 76, "repvalue": 2584000, "xcoord": 85.308689892698965, "ycoord": 27.628579491213522 }, "geometry": { "type": "Point", "coordinates": [ 85.308689892698965, 27.628579491213522 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1128, "nhouse": 22, "residents": 96, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 107, "repvalue": 2354000, "xcoord": 85.309541829500674, "ycoord": 27.630846487561264 }, "geometry": { "type": "Point", "coordinates": [ 85.309541829500674, 27.630846487561264 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1129, "nhouse": 19, "residents": 79, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 62, "repvalue": 1984000, "xcoord": 85.311504077432204, "ycoord": 27.626808495469909 }, "geometry": { "type": "Point", "coordinates": [ 85.311504077432204, 27.626808495469909 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1130, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 62, "repvalue": 248000, "xcoord": 85.30881481666151, "ycoord": 27.628693845147914 }, "geometry": { "type": "Point", "coordinates": [ 85.30881481666151, 27.628693845147914 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1131, "nhouse": 24, "residents": 99, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 77, "repvalue": 2618000, "xcoord": 85.309179186755216, "ycoord": 27.629713762107457 }, "geometry": { "type": "Point", "coordinates": [ 85.309179186755216, 27.629713762107457 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1132, "nhouse": 25, "residents": 97, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 88, "repvalue": 2816000, "xcoord": 85.307421575830716, "ycoord": 27.628676847578102 }, "geometry": { "type": "Point", "coordinates": [ 85.307421575830716, 27.628676847578102 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1133, "nhouse": 29, "residents": 121, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 103, "repvalue": 3296000, "xcoord": 85.309540095862076, "ycoord": 27.63095929685273 }, "geometry": { "type": "Point", "coordinates": [ 85.309540095862076, 27.63095929685273 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1134, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 68, "repvalue": 408000, "xcoord": 85.308695095674111, "ycoord": 27.628241063366076 }, "geometry": { "type": "Point", "coordinates": [ 85.308695095674111, 27.628241063366076 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1135, "nhouse": 18, "residents": 85, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 55, "repvalue": 1980000, "xcoord": 85.307792874063892, "ycoord": 27.629245530771783 }, "geometry": { "type": "Point", "coordinates": [ 85.307792874063892, 27.629245530771783 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1136, "nhouse": 24, "residents": 93, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 79, "repvalue": 2528000, "xcoord": 85.309552231120648, "ycoord": 27.630169631771839 }, "geometry": { "type": "Point", "coordinates": [ 85.309552231120648, 27.630169631771839 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1137, "nhouse": 3, "residents": 17, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 83, "repvalue": 332000, "xcoord": 85.310350310706426, "ycoord": 27.627697087564112 }, "geometry": { "type": "Point", "coordinates": [ 85.310350310706426, 27.627697087564112 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1138, "nhouse": 6, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 84, "repvalue": 672000, "xcoord": 85.308826955958196, "ycoord": 27.627904180105428 }, "geometry": { "type": "Point", "coordinates": [ 85.308826955958196, 27.627904180105428 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1139, "nhouse": 10, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+9s+Res", "fptarea": 64, "repvalue": 1152000, "xcoord": 85.307643653635125, "ycoord": 27.630710504707899 }, "geometry": { "type": "Point", "coordinates": [ 85.307643653635125, 27.630710504707899 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1140, "nhouse": 8, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 87, "repvalue": 870000, "xcoord": 85.310100461839269, "ycoord": 27.627468382287091 }, "geometry": { "type": "Point", "coordinates": [ 85.310100461839269, 27.627468382287091 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1141, "nhouse": 23, "residents": 74, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 102, "repvalue": 2448000, "xcoord": 85.309347454383683, "ycoord": 27.627007882680424 }, "geometry": { "type": "Point", "coordinates": [ 85.309347454383683, 27.627007882680424 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1142, "nhouse": 6, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 77, "repvalue": 616000, "xcoord": 85.308427903249012, "ycoord": 27.629140447869975 }, "geometry": { "type": "Point", "coordinates": [ 85.308427903249012, 27.629140447869975 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1143, "nhouse": 9, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 73, "repvalue": 1022000, "xcoord": 85.308061806881113, "ycoord": 27.628233338501062 }, "geometry": { "type": "Point", "coordinates": [ 85.308061806881113, 27.628233338501062 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1144, "nhouse": 11, "residents": 46, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 75, "repvalue": 1200000, "xcoord": 85.309411701120681, "ycoord": 27.631070562025208 }, "geometry": { "type": "Point", "coordinates": [ 85.309411701120681, 27.631070562025208 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1145, "nhouse": 2, "residents": 14, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 70, "repvalue": 280000, "xcoord": 85.309087206269183, "ycoord": 27.627456031698472 }, "geometry": { "type": "Point", "coordinates": [ 85.309087206269183, 27.627456031698472 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1146, "nhouse": 11, "residents": 51, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 84, "repvalue": 1344000, "xcoord": 85.30854588932803, "ycoord": 27.629706039074811 }, "geometry": { "type": "Point", "coordinates": [ 85.30854588932803, 27.629706039074811 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1147, "nhouse": 13, "residents": 62, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 83, "repvalue": 1328000, "xcoord": 85.310622680100096, "ycoord": 27.626459270044901 }, "geometry": { "type": "Point", "coordinates": [ 85.310622680100096, 27.626459270044901 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1148, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 94, "repvalue": 376000, "xcoord": 85.311641120747367, "ycoord": 27.626133180544006 }, "geometry": { "type": "Point", "coordinates": [ 85.311641120747367, 27.626133180544006 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1149, "nhouse": 13, "residents": 61, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 100, "repvalue": 1400000, "xcoord": 85.308925867754098, "ycoord": 27.629710673241114 }, "geometry": { "type": "Point", "coordinates": [ 85.308925867754098, 27.629710673241114 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1150, "nhouse": 33, "residents": 133, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 102, "repvalue": 3672000, "xcoord": 85.309331852021515, "ycoord": 27.628023166693652 }, "geometry": { "type": "Point", "coordinates": [ 85.309331852021515, 27.628023166693652 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1151, "nhouse": 11, "residents": 46, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 63, "repvalue": 1260000, "xcoord": 85.308308183490965, "ycoord": 27.628687665831375 }, "geometry": { "type": "Point", "coordinates": [ 85.308308183490965, 27.628687665831375 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1152, "nhouse": 4, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 74, "repvalue": 444000, "xcoord": 85.308559765571061, "ycoord": 27.628803564990079 }, "geometry": { "type": "Point", "coordinates": [ 85.308559765571061, 27.628803564990079 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1153, "nhouse": 9, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 70, "repvalue": 980000, "xcoord": 85.309937410851774, "ycoord": 27.629835835265645 }, "geometry": { "type": "Point", "coordinates": [ 85.309937410851774, 27.629835835265645 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1154, "nhouse": 13, "residents": 52, "specialfac": 0, "expstr": "RCi+HC+9s+Res", "fptarea": 79, "repvalue": 1422000, "xcoord": 85.309220797981496, "ycoord": 27.627006338597411 }, "geometry": { "type": "Point", "coordinates": [ 85.309220797981496, 27.627006338597411 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1155, "nhouse": 12, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 100, "repvalue": 1400000, "xcoord": 85.311762583241958, "ycoord": 27.626473150860384 }, "geometry": { "type": "Point", "coordinates": [ 85.311762583241958, 27.626473150860384 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1156, "nhouse": 8, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 63, "repvalue": 882000, "xcoord": 85.307805020978293, "ycoord": 27.628455866209805 }, "geometry": { "type": "Point", "coordinates": [ 85.307805020978293, 27.628455866209805 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1157, "nhouse": 4, "residents": 13, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 55, "repvalue": 440000, "xcoord": 85.31061401895964, "ycoord": 27.627023317154816 }, "geometry": { "type": "Point", "coordinates": [ 85.31061401895964, 27.627023317154816 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1158, "nhouse": 24, "residents": 93, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 76, "repvalue": 2584000, "xcoord": 85.308016694550162, "ycoord": 27.631166378308574 }, "geometry": { "type": "Point", "coordinates": [ 85.308016694550162, 27.631166378308574 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1159, "nhouse": 14, "residents": 54, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 73, "repvalue": 1460000, "xcoord": 85.309687558276394, "ycoord": 27.629607129133145 }, "geometry": { "type": "Point", "coordinates": [ 85.309687558276394, 27.629607129133145 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1160, "nhouse": 8, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 77, "repvalue": 924000, "xcoord": 85.311262885659573, "ycoord": 27.62601574489468 }, "geometry": { "type": "Point", "coordinates": [ 85.311262885659573, 27.62601574489468 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 1161, "nhouse": 4, "residents": 14, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 55, "repvalue": 660000, "xcoord": 85.309680624623837, "ycoord": 27.630058366402015 }, "geometry": { "type": "Point", "coordinates": [ 85.309680624623837, 27.630058366402015 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 2127, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 119, "repvalue": 1428000, "xcoord": 85.308905056850534, "ycoord": 27.631064384401206 }, "geometry": { "type": "Point", "coordinates": [ 85.308905056850534, 27.631064384401206 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 2137, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Com", "fptarea": 105, "repvalue": 1890000, "xcoord": 85.308906791147933, "ycoord": 27.630951575148508 }, "geometry": { "type": "Point", "coordinates": [ 85.308906791147933, 27.630951575148508 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 2141, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+9s+Com", "fptarea": 102, "repvalue": 1836000, "xcoord": 85.310742407591135, "ycoord": 27.626912050541208 }, "geometry": { "type": "Point", "coordinates": [ 85.310742407591135, 27.626912050541208 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 2146, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+9s+Com", "fptarea": 105, "repvalue": 1890000, "xcoord": 85.308538950964575, "ycoord": 27.630157276070726 }, "geometry": { "type": "Point", "coordinates": [ 85.308538950964575, 27.630157276070726 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 2159, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Com", "fptarea": 125, "repvalue": 2250000, "xcoord": 85.307888298093104, "ycoord": 27.631277641987062 }, "geometry": { "type": "Point", "coordinates": [ 85.307888298093104, 27.631277641987062 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 2170, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 115, "repvalue": 2070000, "xcoord": 85.31023404948111, "ycoord": 27.627018688025874 }, "geometry": { "type": "Point", "coordinates": [ 85.31023404948111, 27.627018688025874 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 2194, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+7s+Com", "fptarea": 97, "repvalue": 1358000, "xcoord": 85.307636711275876, "ycoord": 27.631161741427714 }, "geometry": { "type": "Point", "coordinates": [ 85.307636711275876, 27.631161741427714 ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "bldid": 4068, "nhouse": 0, "residents": 0, "specialfac": 1, "expstr": "RCi+LC+7s+Edu", "fptarea": 138, "repvalue": 2898000, "xcoord": 85.308828690103113, "ycoord": 27.627791370805895 }, "geometry": { "type": "Point", "coordinates": [ 85.308828690103113, 27.627791370805895 ] } }, +{ "type": "Feature", "properties": { "zoneid": 33, "bldid": 1162, "nhouse": 9, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 68, "repvalue": 952000, "xcoord": 85.312167370821641, "ycoord": 27.624409994015444 }, "geometry": { "type": "Point", "coordinates": [ 85.312167370821641, 27.624409994015444 ] } }, +{ "type": "Feature", "properties": { "zoneid": 33, "bldid": 1163, "nhouse": 11, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 88, "repvalue": 1232000, "xcoord": 85.311780574931817, "ycoord": 27.624055931094318 }, "geometry": { "type": "Point", "coordinates": [ 85.311780574931817, 27.624055931094318 ] } }, +{ "type": "Feature", "properties": { "zoneid": 33, "bldid": 1164, "nhouse": 19, "residents": 71, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 85, "repvalue": 2040000, "xcoord": 85.312427021875735, "ycoord": 27.624529605377646 }, "geometry": { "type": "Point", "coordinates": [ 85.312427021875735, 27.624529605377646 ] } }, +{ "type": "Feature", "properties": { "zoneid": 33, "bldid": 1165, "nhouse": 8, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 71, "repvalue": 994000, "xcoord": 85.312033080132935, "ycoord": 27.624641263200388 }, "geometry": { "type": "Point", "coordinates": [ 85.312033080132935, 27.624641263200388 ] } }, +{ "type": "Feature", "properties": { "zoneid": 33, "bldid": 1166, "nhouse": 10, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 77, "repvalue": 1078000, "xcoord": 85.312040224710316, "ycoord": 27.624175543130701 }, "geometry": { "type": "Point", "coordinates": [ 85.312040224710316, 27.624175543130701 ] } }, +{ "type": "Feature", "properties": { "zoneid": 33, "bldid": 1167, "nhouse": 22, "residents": 99, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 68, "repvalue": 2448000, "xcoord": 85.311657003020827, "ycoord": 27.623588619885886 }, "geometry": { "type": "Point", "coordinates": [ 85.311657003020827, 27.623588619885886 ] } }, +{ "type": "Feature", "properties": { "zoneid": 33, "bldid": 1168, "nhouse": 2, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 79, "repvalue": 1896000, "xcoord": 85.311528072268814, "ycoord": 27.623470598601084 }, "geometry": { "type": "Point", "coordinates": [ 85.311528072268814, 27.623470598601084 ] } }, +{ "type": "Feature", "properties": { "zoneid": 33, "bldid": 2129, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+8s+Com", "fptarea": 113, "repvalue": 1808000, "xcoord": 85.311905934075185, "ycoord": 27.624406812200803 }, "geometry": { "type": "Point", "coordinates": [ 85.311905934075185, 27.624406812200803 ] } }, +{ "type": "Feature", "properties": { "zoneid": 33, "bldid": 2136, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 147, "repvalue": 1764000, "xcoord": 85.311658789499276, "ycoord": 27.623472189876505 }, "geometry": { "type": "Point", "coordinates": [ 85.311658789499276, 27.623472189876505 ] } }, +{ "type": "Feature", "properties": { "zoneid": 33, "bldid": 2140, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+6s+Com", "fptarea": 118, "repvalue": 1416000, "xcoord": 85.311778788537936, "ycoord": 27.62417236110123 }, "geometry": { "type": "Point", "coordinates": [ 85.311778788537936, 27.62417236110123 ] } }, +{ "type": "Feature", "properties": { "zoneid": 33, "bldid": 2145, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Com", "fptarea": 113, "repvalue": 1130000, "xcoord": 85.311651643521174, "ycoord": 27.62393790990166 }, "geometry": { "type": "Point", "coordinates": [ 85.311651643521174, 27.62393790990166 ] } }, +{ "type": "Feature", "properties": { "zoneid": 33, "bldid": 2147, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 146, "repvalue": 1752000, "xcoord": 85.311782361314968, "ycoord": 27.623939501085346 }, "geometry": { "type": "Point", "coordinates": [ 85.311782361314968, 27.623939501085346 ] } }, +{ "type": "Feature", "properties": { "zoneid": 33, "bldid": 2151, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Com", "fptarea": 120, "repvalue": 1680000, "xcoord": 85.311531645469884, "ycoord": 27.623237738591811 }, "geometry": { "type": "Point", "coordinates": [ 85.311531645469884, 27.623237738591811 ] } }, +{ "type": "Feature", "properties": { "zoneid": 33, "bldid": 2152, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 115, "repvalue": 2070000, "xcoord": 85.311918437790183, "ycoord": 27.623591802083165 }, "geometry": { "type": "Point", "coordinates": [ 85.311918437790183, 27.623591802083165 ] } }, +{ "type": "Feature", "properties": { "zoneid": 33, "bldid": 2201, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Com", "fptarea": 120, "repvalue": 1200000, "xcoord": 85.312043796934702, "ycoord": 27.623942683083474 }, "geometry": { "type": "Point", "coordinates": [ 85.312043796934702, 27.623942683083474 ] } }, +{ "type": "Feature", "properties": { "zoneid": 33, "bldid": 2210, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Com", "fptarea": 115, "repvalue": 1380000, "xcoord": 85.311529858874707, "ycoord": 27.62335416859748 }, "geometry": { "type": "Point", "coordinates": [ 85.311529858874707, 27.62335416859748 ] } }, +{ "type": "Feature", "properties": { "zoneid": 33, "bldid": 2211, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 139, "repvalue": 1946000, "xcoord": 85.312170942812571, "ycoord": 27.624177133960806 }, "geometry": { "type": "Point", "coordinates": [ 85.312170942812571, 27.624177133960806 ] } }, +{ "type": "Feature", "properties": { "zoneid": 37, "bldid": 1169, "nhouse": 16, "residents": 68, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 57, "repvalue": 1710000, "xcoord": 85.305432739436768, "ycoord": 27.621941610756402 }, "geometry": { "type": "Point", "coordinates": [ 85.305432739436768, 27.621941610756402 ] } }, +{ "type": "Feature", "properties": { "zoneid": 37, "bldid": 1170, "nhouse": 6, "residents": 21, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 92, "repvalue": 736000, "xcoord": 85.304661903298751, "ycoord": 27.621932190991973 }, "geometry": { "type": "Point", "coordinates": [ 85.304661903298751, 27.621932190991973 ] } }, +{ "type": "Feature", "properties": { "zoneid": 37, "bldid": 1171, "nhouse": 5, "residents": 21, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 90, "repvalue": 540000, "xcoord": 85.305413354755046, "ycoord": 27.623200367415581 }, "geometry": { "type": "Point", "coordinates": [ 85.305413354755046, 27.623200367415581 ] } }, +{ "type": "Feature", "properties": { "zoneid": 37, "bldid": 1172, "nhouse": 17, "residents": 55, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 73, "repvalue": 1898000, "xcoord": 85.304024831053013, "ycoord": 27.621581040857293 }, "geometry": { "type": "Point", "coordinates": [ 85.304024831053013, 27.621581040857293 ] } }, +{ "type": "Feature", "properties": { "zoneid": 37, "bldid": 1173, "nhouse": 21, "residents": 93, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 96, "repvalue": 2304000, "xcoord": 85.304774509856713, "ycoord": 27.622963652737987 }, "geometry": { "type": "Point", "coordinates": [ 85.304774509856713, 27.622963652737987 ] } }, +{ "type": "Feature", "properties": { "zoneid": 37, "bldid": 1174, "nhouse": 10, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 93, "repvalue": 1116000, "xcoord": 85.303994847953874, "ycoord": 27.623526390636655 }, "geometry": { "type": "Point", "coordinates": [ 85.303994847953874, 27.623526390636655 ] } }, +{ "type": "Feature", "properties": { "zoneid": 37, "bldid": 1175, "nhouse": 5, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 99, "repvalue": 594000, "xcoord": 85.304797427294744, "ycoord": 27.621476031647873 }, "geometry": { "type": "Point", "coordinates": [ 85.304797427294744, 27.621476031647873 ] } }, +{ "type": "Feature", "properties": { "zoneid": 37, "bldid": 1176, "nhouse": 9, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 97, "repvalue": 970000, "xcoord": 85.304403194743173, "ycoord": 27.622043482492167 }, "geometry": { "type": "Point", "coordinates": [ 85.304403194743173, 27.622043482492167 ] } }, +{ "type": "Feature", "properties": { "zoneid": 37, "bldid": 1177, "nhouse": 4, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 76, "repvalue": 456000, "xcoord": 85.304005430567315, "ycoord": 27.622839796662625 }, "geometry": { "type": "Point", "coordinates": [ 85.304005430567315, 27.622839796662625 ] } }, +{ "type": "Feature", "properties": { "zoneid": 37, "bldid": 1178, "nhouse": 19, "residents": 67, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 67, "repvalue": 2010000, "xcoord": 85.305672065182208, "ycoord": 27.623089074124316 }, "geometry": { "type": "Point", "coordinates": [ 85.305672065182208, 27.623089074124316 ] } }, +{ "type": "Feature", "properties": { "zoneid": 37, "bldid": 1179, "nhouse": 6, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 63, "repvalue": 630000, "xcoord": 85.304925899435062, "ycoord": 27.621477601756538 }, "geometry": { "type": "Point", "coordinates": [ 85.304925899435062, 27.621477601756538 ] } }, +{ "type": "Feature", "properties": { "zoneid": 37, "bldid": 1180, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 99, "repvalue": 198000, "xcoord": 85.304515798918189, "ycoord": 27.62307494432881 }, "geometry": { "type": "Point", "coordinates": [ 85.304515798918189, 27.62307494432881 ] } }, +{ "type": "Feature", "properties": { "zoneid": 37, "bldid": 1181, "nhouse": 9, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 64, "repvalue": 1024000, "xcoord": 85.304128613387022, "ycoord": 27.623184664594593 }, "geometry": { "type": "Point", "coordinates": [ 85.304128613387022, 27.623184664594593 ] } }, +{ "type": "Feature", "properties": { "zoneid": 37, "bldid": 1182, "nhouse": 1, "residents": 8, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 79, "repvalue": 158000, "xcoord": 85.305304266721123, "ycoord": 27.62194004109287 }, "geometry": { "type": "Point", "coordinates": [ 85.305304266721123, 27.62194004109287 ] } }, +{ "type": "Feature", "properties": { "zoneid": 37, "bldid": 1183, "nhouse": 19, "residents": 76, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 95, "repvalue": 2090000, "xcoord": 85.304521088545528, "ycoord": 27.622731647235629 }, "geometry": { "type": "Point", "coordinates": [ 85.304521088545528, 27.622731647235629 ] } }, +{ "type": "Feature", "properties": { "zoneid": 37, "bldid": 1184, "nhouse": 6, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 63, "repvalue": 630000, "xcoord": 85.30466366628086, "ycoord": 27.621817758602052 }, "geometry": { "type": "Point", "coordinates": [ 85.30466366628086, 27.621817758602052 ] } }, +{ "type": "Feature", "properties": { "zoneid": 37, "bldid": 1185, "nhouse": 9, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 105, "repvalue": 1050000, "xcoord": 85.304668955164829, "ycoord": 27.62147446142033 }, "geometry": { "type": "Point", "coordinates": [ 85.304668955164829, 27.62147446142033 ] } }, +{ "type": "Feature", "properties": { "zoneid": 37, "bldid": 1186, "nhouse": 13, "residents": 53, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 100, "repvalue": 1400000, "xcoord": 85.305166981618299, "ycoord": 27.622510633382173 }, "geometry": { "type": "Point", "coordinates": [ 85.305166981618299, 27.622510633382173 ] } }, +{ "type": "Feature", "properties": { "zoneid": 37, "bldid": 1187, "nhouse": 9, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 80, "repvalue": 960000, "xcoord": 85.305054371585769, "ycoord": 27.621479171746323 }, "geometry": { "type": "Point", "coordinates": [ 85.305054371585769, 27.621479171746323 ] } }, +{ "type": "Feature", "properties": { "zoneid": 37, "bldid": 1188, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 92, "repvalue": 368000, "xcoord": 85.305040270889947, "ycoord": 27.622394631040123 }, "geometry": { "type": "Point", "coordinates": [ 85.305040270889947, 27.622394631040123 ] } }, +{ "type": "Feature", "properties": { "zoneid": 37, "bldid": 1189, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 58, "repvalue": 232000, "xcoord": 85.304776272798932, "ycoord": 27.62284922035839 }, "geometry": { "type": "Point", "coordinates": [ 85.304776272798932, 27.62284922035839 ] } }, +{ "type": "Feature", "properties": { "zoneid": 37, "bldid": 1190, "nhouse": 11, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 101, "repvalue": 1212000, "xcoord": 85.30466542925258, "ycoord": 27.621703326210142 }, "geometry": { "type": "Point", "coordinates": [ 85.30466542925258, 27.621703326210142 ] } }, +{ "type": "Feature", "properties": { "zoneid": 37, "bldid": 1191, "nhouse": 6, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 103, "repvalue": 618000, "xcoord": 85.303866373484283, "ycoord": 27.623524819558973 }, "geometry": { "type": "Point", "coordinates": [ 85.303866373484283, 27.623524819558973 ] } }, +{ "type": "Feature", "properties": { "zoneid": 37, "bldid": 1192, "nhouse": 12, "residents": 43, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 58, "repvalue": 1392000, "xcoord": 85.303621773724757, "ycoord": 27.622720650896603 }, "geometry": { "type": "Point", "coordinates": [ 85.303621773724757, 27.622720650896603 ] } }, +{ "type": "Feature", "properties": { "zoneid": 37, "bldid": 1193, "nhouse": 21, "residents": 80, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 85, "repvalue": 2210000, "xcoord": 85.303739663086915, "ycoord": 27.623408816053583 }, "geometry": { "type": "Point", "coordinates": [ 85.303739663086915, 27.623408816053583 ] } }, +{ "type": "Feature", "properties": { "zoneid": 37, "bldid": 1194, "nhouse": 9, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 84, "repvalue": 1008000, "xcoord": 85.304007194299828, "ycoord": 27.622725364326648 }, "geometry": { "type": "Point", "coordinates": [ 85.304007194299828, 27.622725364326648 ] } }, +{ "type": "Feature", "properties": { "zoneid": 37, "bldid": 1195, "nhouse": 7, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 67, "repvalue": 804000, "xcoord": 85.304126849746368, "ycoord": 27.623299096930211 }, "geometry": { "type": "Point", "coordinates": [ 85.304126849746368, 27.623299096930211 ] } }, +{ "type": "Feature", "properties": { "zoneid": 37, "bldid": 1196, "nhouse": 9, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 87, "repvalue": 1044000, "xcoord": 85.303737899025094, "ycoord": 27.623523248362396 }, "geometry": { "type": "Point", "coordinates": [ 85.303737899025094, 27.623523248362396 ] } }, +{ "type": "Feature", "properties": { "zoneid": 37, "bldid": 1197, "nhouse": 5, "residents": 19, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 108, "repvalue": 648000, "xcoord": 85.304132140637137, "ycoord": 27.622955799917396 }, "geometry": { "type": "Point", "coordinates": [ 85.304132140637137, 27.622955799917396 ] } }, +{ "type": "Feature", "properties": { "zoneid": 37, "bldid": 1198, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 88, "repvalue": 176000, "xcoord": 85.304519325346803, "ycoord": 27.622846079602013 }, "geometry": { "type": "Point", "coordinates": [ 85.304519325346803, 27.622846079602013 ] } }, +{ "type": "Feature", "properties": { "zoneid": 37, "bldid": 1199, "nhouse": 1, "residents": 5, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 103, "repvalue": 206000, "xcoord": 85.303892831317697, "ycoord": 27.621808334603472 }, "geometry": { "type": "Point", "coordinates": [ 85.303892831317697, 27.621808334603472 ] } }, +{ "type": "Feature", "properties": { "zoneid": 37, "bldid": 1200, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 75, "repvalue": 1050000, "xcoord": 85.305306029036004, "ycoord": 27.62182560866496 }, "geometry": { "type": "Point", "coordinates": [ 85.305306029036004, 27.62182560866496 ] } }, +{ "type": "Feature", "properties": { "zoneid": 37, "bldid": 2153, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Com", "fptarea": 114, "repvalue": 1368000, "xcoord": 85.304253560452239, "ycoord": 27.623415100096125 }, "geometry": { "type": "Point", "coordinates": [ 85.304253560452239, 27.623415100096125 ] } }, +{ "type": "Feature", "properties": { "zoneid": 37, "bldid": 2160, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Com", "fptarea": 129, "repvalue": 1548000, "xcoord": 85.30492766210871, "ycoord": 27.621363169343454 }, "geometry": { "type": "Point", "coordinates": [ 85.30492766210871, 27.621363169343454 ] } }, +{ "type": "Feature", "properties": { "zoneid": 37, "bldid": 2164, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+8s+Com", "fptarea": 142, "repvalue": 2272000, "xcoord": 85.305031457617318, "ycoord": 27.62296679303401 }, "geometry": { "type": "Point", "coordinates": [ 85.305031457617318, 27.62296679303401 ] } }, +{ "type": "Feature", "properties": { "zoneid": 37, "bldid": 2182, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Com", "fptarea": 112, "repvalue": 1792000, "xcoord": 85.305673827200664, "ycoord": 27.622974641693535 }, "geometry": { "type": "Point", "coordinates": [ 85.305673827200664, 27.622974641693535 ] } }, +{ "type": "Feature", "properties": { "zoneid": 37, "bldid": 2185, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+5s+Com", "fptarea": 104, "repvalue": 1040000, "xcoord": 85.305547115404721, "ycoord": 27.622858639774218 }, "geometry": { "type": "Point", "coordinates": [ 85.305547115404721, 27.622858639774218 ] } }, +{ "type": "Feature", "properties": { "zoneid": 37, "bldid": 2186, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Com", "fptarea": 142, "repvalue": 2272000, "xcoord": 85.305179318902148, "ycoord": 27.621709606467828 }, "geometry": { "type": "Point", "coordinates": [ 85.305179318902148, 27.621709606467828 ] } }, +{ "type": "Feature", "properties": { "zoneid": 37, "bldid": 2189, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Com", "fptarea": 122, "repvalue": 2440000, "xcoord": 85.304387324940819, "ycoord": 27.623073373757087 }, "geometry": { "type": "Point", "coordinates": [ 85.304387324940819, 27.623073373757087 ] } }, +{ "type": "Feature", "properties": { "zoneid": 37, "bldid": 2202, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Com", "fptarea": 128, "repvalue": 1536000, "xcoord": 85.30440143147338, "ycoord": 27.622157914862903 }, "geometry": { "type": "Point", "coordinates": [ 85.30440143147338, 27.622157914862903 ] } }, +{ "type": "Feature", "properties": { "zoneid": 37, "bldid": 2204, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Com", "fptarea": 134, "repvalue": 2144000, "xcoord": 85.304911797671693, "ycoord": 27.622393060989552 }, "geometry": { "type": "Point", "coordinates": [ 85.304911797671693, 27.622393060989552 ] } }, +{ "type": "Feature", "properties": { "zoneid": 37, "bldid": 2208, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Com", "fptarea": 104, "repvalue": 2080000, "xcoord": 85.305297217357634, "ycoord": 27.622397770784623 }, "geometry": { "type": "Point", "coordinates": [ 85.305297217357634, 27.622397770784623 ] } }, +{ "type": "Feature", "properties": { "zoneid": 37, "bldid": 2214, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 136, "repvalue": 2448000, "xcoord": 85.304255323969841, "ycoord": 27.623300667754904 }, "geometry": { "type": "Point", "coordinates": [ 85.304255323969841, 27.623300667754904 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1201, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrCri+MC+1s+Res", "fptarea": 81, "repvalue": 162000, "xcoord": 85.321359337702049, "ycoord": 27.624608205061001 }, "geometry": { "type": "Point", "coordinates": [ 85.321359337702049, 27.624608205061001 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1202, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 83, "repvalue": 332000, "xcoord": 85.320433639517489, "ycoord": 27.625295710184076 }, "geometry": { "type": "Point", "coordinates": [ 85.320433639517489, 27.625295710184076 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1203, "nhouse": 4, "residents": 17, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 104, "repvalue": 416000, "xcoord": 85.320546587080244, "ycoord": 27.626461598201576 }, "geometry": { "type": "Point", "coordinates": [ 85.320546587080244, 27.626461598201576 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1204, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 102, "repvalue": 204000, "xcoord": 85.320447857803387, "ycoord": 27.624364266068469 }, "geometry": { "type": "Point", "coordinates": [ 85.320447857803387, 27.624364266068469 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1205, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 107, "repvalue": 214000, "xcoord": 85.319468803372871, "ycoord": 27.628544677712036 }, "geometry": { "type": "Point", "coordinates": [ 85.319468803372871, 27.628544677712036 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1206, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 80, "repvalue": 320000, "xcoord": 85.320825799543201, "ycoord": 27.625300458756282 }, "geometry": { "type": "Point", "coordinates": [ 85.320825799543201, 27.625300458756282 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1207, "nhouse": 4, "residents": 18, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 76, "repvalue": 456000, "xcoord": 85.31881162597935, "ycoord": 27.62876961626873 }, "geometry": { "type": "Point", "coordinates": [ 85.31881162597935, 27.62876961626873 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1208, "nhouse": 4, "residents": 12, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 82, "repvalue": 492000, "xcoord": 85.320838237679155, "ycoord": 27.624485444998662 }, "geometry": { "type": "Point", "coordinates": [ 85.320838237679155, 27.624485444998662 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1209, "nhouse": 3, "residents": 21, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 86, "repvalue": 344000, "xcoord": 85.320564359515402, "ycoord": 27.625297293164564 }, "geometry": { "type": "Point", "coordinates": [ 85.320564359515402, 27.625297293164564 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1210, "nhouse": 4, "residents": 14, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 81, "repvalue": 486000, "xcoord": 85.321221512642268, "ycoord": 27.625072345110627 }, "geometry": { "type": "Point", "coordinates": [ 85.321221512642268, 27.625072345110627 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1211, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 57, "repvalue": 114000, "xcoord": 85.32018997506772, "ycoord": 27.624128238844623 }, "geometry": { "type": "Point", "coordinates": [ 85.32018997506772, 27.624128238844623 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1212, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 90, "repvalue": 360000, "xcoord": 85.319380766097765, "ycoord": 27.625748763667769 }, "geometry": { "type": "Point", "coordinates": [ 85.319380766097765, 27.625748763667769 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1213, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 68, "repvalue": 408000, "xcoord": 85.320582130884489, "ycoord": 27.62413298792152 }, "geometry": { "type": "Point", "coordinates": [ 85.320582130884489, 27.62413298792152 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1214, "nhouse": 2, "residents": 5, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 73, "repvalue": 292000, "xcoord": 85.319493702647236, "ycoord": 27.626914651995026 }, "geometry": { "type": "Point", "coordinates": [ 85.319493702647236, 27.626914651995026 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1215, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 94, "repvalue": 376000, "xcoord": 85.319339858318315, "ycoord": 27.628426663141276 }, "geometry": { "type": "Point", "coordinates": [ 85.319339858318315, 27.628426663141276 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1216, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 95, "repvalue": 190000, "xcoord": 85.320567913874498, "ycoord": 27.625064432132437 }, "geometry": { "type": "Point", "coordinates": [ 85.320567913874498, 27.625064432132437 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1217, "nhouse": 8, "residents": 32, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 104, "repvalue": 832000, "xcoord": 85.320007700547862, "ycoord": 27.627503139305759 }, "geometry": { "type": "Point", "coordinates": [ 85.320007700547862, 27.627503139305759 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1218, "nhouse": 5, "residents": 15, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 100, "repvalue": 600000, "xcoord": 85.319792485561194, "ycoord": 27.624472780114203 }, "geometry": { "type": "Point", "coordinates": [ 85.319792485561194, 27.624472780114203 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1219, "nhouse": 4, "residents": 18, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 105, "repvalue": 420000, "xcoord": 85.320424752742298, "ycoord": 27.625877862689357 }, "geometry": { "type": "Point", "coordinates": [ 85.320424752742298, 27.625877862689357 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1220, "nhouse": 2, "residents": 5, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 70, "repvalue": 280000, "xcoord": 85.319629759377179, "ycoord": 27.626566944645301 }, "geometry": { "type": "Point", "coordinates": [ 85.319629759377179, 27.626566944645301 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1221, "nhouse": 6, "residents": 24, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 91, "repvalue": 728000, "xcoord": 85.31963865061752, "ycoord": 27.625984792435734 }, "geometry": { "type": "Point", "coordinates": [ 85.31963865061752, 27.625984792435734 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1222, "nhouse": 2, "residents": 10, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 55, "repvalue": 220000, "xcoord": 85.319371873582341, "ycoord": 27.626330915819942 }, "geometry": { "type": "Point", "coordinates": [ 85.319371873582341, 27.626330915819942 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1223, "nhouse": 5, "residents": 18, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 69, "repvalue": 552000, "xcoord": 85.319884090216703, "ycoord": 27.627035833924776 }, "geometry": { "type": "Point", "coordinates": [ 85.319884090216703, 27.627035833924776 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1224, "nhouse": 4, "residents": 15, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 107, "repvalue": 428000, "xcoord": 85.319912537508202, "ycoord": 27.625172946555164 }, "geometry": { "type": "Point", "coordinates": [ 85.319912537508202, 27.625172946555164 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1225, "nhouse": 6, "residents": 21, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 85, "repvalue": 680000, "xcoord": 85.321090792867395, "ycoord": 27.625070762761162 }, "geometry": { "type": "Point", "coordinates": [ 85.321090792867395, 27.625070762761162 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1226, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 76, "repvalue": 304000, "xcoord": 85.320451412268227, "ycoord": 27.624131405018971 }, "geometry": { "type": "Point", "coordinates": [ 85.320451412268227, 27.624131405018971 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1227, "nhouse": 7, "residents": 22, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 108, "repvalue": 864000, "xcoord": 85.320562582319866, "ycoord": 27.625413723677539 }, "geometry": { "type": "Point", "coordinates": [ 85.320562582319866, 27.625413723677539 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1228, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "BrCfl+MC+2s+Res", "fptarea": 104, "repvalue": 416000, "xcoord": 85.319090863789228, "ycoord": 27.62760848176173 }, "geometry": { "type": "Point", "coordinates": [ 85.319090863789228, 27.62760848176173 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1229, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 64, "repvalue": 384000, "xcoord": 85.320188197564292, "ycoord": 27.624244669354823 }, "geometry": { "type": "Point", "coordinates": [ 85.320188197564292, 27.624244669354823 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1230, "nhouse": 4, "residents": 13, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 107, "repvalue": 428000, "xcoord": 85.318682681414089, "ycoord": 27.628651601109969 }, "geometry": { "type": "Point", "coordinates": [ 85.318682681414089, 27.628651601109969 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1231, "nhouse": 4, "residents": 15, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 78, "repvalue": 468000, "xcoord": 85.319919648904474, "ycoord": 27.624707224630338 }, "geometry": { "type": "Point", "coordinates": [ 85.319919648904474, 27.624707224630338 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1232, "nhouse": 4, "residents": 13, "specialfac": 0, "expstr": "BrM+LC+2s+Res", "fptarea": 104, "repvalue": 416000, "xcoord": 85.320453189484667, "ycoord": 27.624014974491125 }, "geometry": { "type": "Point", "coordinates": [ 85.320453189484667, 27.624014974491125 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1233, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "BrCfl+MC+2s+Res", "fptarea": 91, "repvalue": 364000, "xcoord": 85.319760480831036, "ycoord": 27.626568528450111 }, "geometry": { "type": "Point", "coordinates": [ 85.319760480831036, 27.626568528450111 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1234, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 56, "repvalue": 224000, "xcoord": 85.320320693662651, "ycoord": 27.624129821993336 }, "geometry": { "type": "Point", "coordinates": [ 85.320320693662651, 27.624129821993336 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1235, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 86, "repvalue": 344000, "xcoord": 85.319781817701781, "ycoord": 27.625171362967023 }, "geometry": { "type": "Point", "coordinates": [ 85.319781817701781, 27.625171362967023 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1236, "nhouse": 4, "residents": 17, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 94, "repvalue": 376000, "xcoord": 85.320417643130241, "ycoord": 27.6263435846565 }, "geometry": { "type": "Point", "coordinates": [ 85.320417643130241, 27.6263435846565 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1237, "nhouse": 5, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 86, "repvalue": 516000, "xcoord": 85.319647541591195, "ycoord": 27.625402640174645 }, "geometry": { "type": "Point", "coordinates": [ 85.319647541591195, 27.625402640174645 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1238, "nhouse": 6, "residents": 28, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 102, "repvalue": 612000, "xcoord": 85.321357561399466, "ycoord": 27.62472463563309 }, "geometry": { "type": "Point", "coordinates": [ 85.321357561399466, 27.62472463563309 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1239, "nhouse": 6, "residents": 16, "specialfac": 0, "expstr": "Adb+LC+4s+Res", "fptarea": 88, "repvalue": 704000, "xcoord": 85.319633315905321, "ycoord": 27.626334083767656 }, "geometry": { "type": "Point", "coordinates": [ 85.319633315905321, 27.626334083767656 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1240, "nhouse": 2, "residents": 10, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 64, "repvalue": 256000, "xcoord": 85.31894590831017, "ycoord": 27.628538340239018 }, "geometry": { "type": "Point", "coordinates": [ 85.31894590831017, 27.628538340239018 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1241, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 68, "repvalue": 272000, "xcoord": 85.319796041429001, "ycoord": 27.624239919146788 }, "geometry": { "type": "Point", "coordinates": [ 85.319796041429001, 27.624239919146788 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1242, "nhouse": 4, "residents": 12, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 94, "repvalue": 376000, "xcoord": 85.320548364371732, "ycoord": 27.626345167707147 }, "geometry": { "type": "Point", "coordinates": [ 85.320548364371732, 27.626345167707147 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1243, "nhouse": 5, "residents": 18, "specialfac": 0, "expstr": "BrM+LC+3s+Res", "fptarea": 81, "repvalue": 486000, "xcoord": 85.319112210102801, "ycoord": 27.626211316969147 }, "geometry": { "type": "Point", "coordinates": [ 85.319112210102801, 27.626211316969147 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1244, "nhouse": 5, "residents": 17, "specialfac": 0, "expstr": "Adb+LC+3s+Res", "fptarea": 102, "repvalue": 612000, "xcoord": 85.319343415740576, "ycoord": 27.628193802360762 }, "geometry": { "type": "Point", "coordinates": [ 85.319343415740576, 27.628193802360762 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1245, "nhouse": 2, "residents": 4, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 72, "repvalue": 288000, "xcoord": 85.32002014590519, "ycoord": 27.626688126149567 }, "geometry": { "type": "Point", "coordinates": [ 85.32002014590519, 27.626688126149567 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1246, "nhouse": 4, "residents": 16, "specialfac": 0, "expstr": "Adb+LC+3s+Res", "fptarea": 63, "repvalue": 378000, "xcoord": 85.320829353349637, "ycoord": 27.625067597692979 }, "geometry": { "type": "Point", "coordinates": [ 85.320829353349637, 27.625067597692979 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1247, "nhouse": 6, "residents": 21, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 80, "repvalue": 640000, "xcoord": 85.320021923770724, "ycoord": 27.626571695690441 }, "geometry": { "type": "Point", "coordinates": [ 85.320021923770724, 27.626571695690441 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1248, "nhouse": 3, "residents": 16, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 54, "repvalue": 432000, "xcoord": 85.319490145736054, "ycoord": 27.627147512836459 }, "geometry": { "type": "Point", "coordinates": [ 85.319490145736054, 27.627147512836459 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1249, "nhouse": 1, "residents": 5, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 90, "repvalue": 180000, "xcoord": 85.319502594738495, "ycoord": 27.626332499855348 }, "geometry": { "type": "Point", "coordinates": [ 85.319502594738495, 27.626332499855348 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1250, "nhouse": 1, "residents": 5, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 67, "repvalue": 134000, "xcoord": 85.319225143993307, "ycoord": 27.627377205335367 }, "geometry": { "type": "Point", "coordinates": [ 85.319225143993307, 27.627377205335367 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1251, "nhouse": 2, "residents": 13, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 74, "repvalue": 296000, "xcoord": 85.319085526970724, "ycoord": 27.627957772913511 }, "geometry": { "type": "Point", "coordinates": [ 85.319085526970724, 27.627957772913511 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1252, "nhouse": 4, "residents": 24, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 75, "repvalue": 450000, "xcoord": 85.319096200511666, "ycoord": 27.627259190591403 }, "geometry": { "type": "Point", "coordinates": [ 85.319096200511666, 27.627259190591403 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1253, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "BrM+LC+2s+Res", "fptarea": 96, "repvalue": 384000, "xcoord": 85.320976063460989, "ycoord": 27.624021305331631 }, "geometry": { "type": "Point", "coordinates": [ 85.320976063460989, 27.624021305331631 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1254, "nhouse": 4, "residents": 13, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 72, "repvalue": 432000, "xcoord": 85.318825860090527, "ycoord": 27.627838173396324 }, "geometry": { "type": "Point", "coordinates": [ 85.318825860090527, 27.627838173396324 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1255, "nhouse": 3, "residents": 6, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 64, "repvalue": 384000, "xcoord": 85.31910865249057, "ycoord": 27.626444177788521 }, "geometry": { "type": "Point", "coordinates": [ 85.31910865249057, 27.626444177788521 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1256, "nhouse": 6, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 95, "repvalue": 760000, "xcoord": 85.32030647444202, "ycoord": 27.625061266079545 }, "geometry": { "type": "Point", "coordinates": [ 85.32030647444202, 27.625061266079545 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1257, "nhouse": 4, "residents": 13, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 58, "repvalue": 464000, "xcoord": 85.320045035052175, "ycoord": 27.6250580995343 }, "geometry": { "type": "Point", "coordinates": [ 85.320045035052175, 27.6250580995343 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1258, "nhouse": 2, "residents": 11, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 66, "repvalue": 264000, "xcoord": 85.319354087751307, "ycoord": 27.627495219969777 }, "geometry": { "type": "Point", "coordinates": [ 85.319354087751307, 27.627495219969777 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1259, "nhouse": 5, "residents": 12, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 78, "repvalue": 624000, "xcoord": 85.320684417019848, "ycoord": 27.625997459115666 }, "geometry": { "type": "Point", "coordinates": [ 85.320684417019848, 27.625997459115666 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1260, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 56, "repvalue": 336000, "xcoord": 85.320292254538998, "ycoord": 27.625992710033884 }, "geometry": { "type": "Point", "coordinates": [ 85.320292254538998, 27.625992710033884 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1261, "nhouse": 6, "residents": 20, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 82, "repvalue": 656000, "xcoord": 85.320286921899438, "ycoord": 27.626342001482758 }, "geometry": { "type": "Point", "coordinates": [ 85.320286921899438, 27.626342001482758 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1262, "nhouse": 2, "residents": 9, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 59, "repvalue": 236000, "xcoord": 85.319069515939034, "ycoord": 27.629005646257575 }, "geometry": { "type": "Point", "coordinates": [ 85.319069515939034, 27.629005646257575 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1263, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "Adb+LC+2s+Res", "fptarea": 81, "repvalue": 324000, "xcoord": 85.318677343063726, "ycoord": 27.629000892135888 }, "geometry": { "type": "Point", "coordinates": [ 85.318677343063726, 27.629000892135888 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1264, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 57, "repvalue": 114000, "xcoord": 85.319500816341574, "ycoord": 27.626448930287406 }, "geometry": { "type": "Point", "coordinates": [ 85.319500816341574, 27.626448930287406 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1265, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 71, "repvalue": 284000, "xcoord": 85.320294032064197, "ycoord": 27.625876279546802 }, "geometry": { "type": "Point", "coordinates": [ 85.320294032064197, 27.625876279546802 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1266, "nhouse": 4, "residents": 13, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 69, "repvalue": 414000, "xcoord": 85.318937012441523, "ycoord": 27.62912049202691 }, "geometry": { "type": "Point", "coordinates": [ 85.318937012441523, 27.62912049202691 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1267, "nhouse": 3, "residents": 8, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 80, "repvalue": 320000, "xcoord": 85.319472360540075, "ycoord": 27.628311816920039 }, "geometry": { "type": "Point", "coordinates": [ 85.319472360540075, 27.628311816920039 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1268, "nhouse": 5, "residents": 15, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 96, "repvalue": 576000, "xcoord": 85.319105094835678, "ycoord": 27.626677038599642 }, "geometry": { "type": "Point", "coordinates": [ 85.319105094835678, 27.626677038599642 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1269, "nhouse": 4, "residents": 18, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 79, "repvalue": 474000, "xcoord": 85.319205576944171, "ycoord": 27.628657939599041 }, "geometry": { "type": "Point", "coordinates": [ 85.319205576944171, 27.628657939599041 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1270, "nhouse": 1, "residents": 7, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 60, "repvalue": 120000, "xcoord": 85.318958362078064, "ycoord": 27.627723327649413 }, "geometry": { "type": "Point", "coordinates": [ 85.318958362078064, 27.627723327649413 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1271, "nhouse": 5, "residents": 20, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 98, "repvalue": 588000, "xcoord": 85.319346973120162, "ycoord": 27.627960941572006 }, "geometry": { "type": "Point", "coordinates": [ 85.319346973120162, 27.627960941572006 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1272, "nhouse": 6, "residents": 33, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 99, "repvalue": 594000, "xcoord": 85.320149089791215, "ycoord": 27.626806140057742 }, "geometry": { "type": "Point", "coordinates": [ 85.320149089791215, 27.626806140057742 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1273, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 54, "repvalue": 324000, "xcoord": 85.320145534283171, "ycoord": 27.627039000981291 }, "geometry": { "type": "Point", "coordinates": [ 85.320145534283171, 27.627039000981291 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1274, "nhouse": 5, "residents": 19, "specialfac": 0, "expstr": "Adb+LC+3s+Res", "fptarea": 92, "repvalue": 552000, "xcoord": 85.319202019160173, "ycoord": 27.628890800347467 }, "geometry": { "type": "Point", "coordinates": [ 85.319202019160173, 27.628890800347467 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1275, "nhouse": 5, "residents": 20, "specialfac": 0, "expstr": "Adb+LC+3s+Res", "fptarea": 84, "repvalue": 504000, "xcoord": 85.319212692384141, "ycoord": 27.628192218077462 }, "geometry": { "type": "Point", "coordinates": [ 85.319212692384141, 27.628192218077462 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1276, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "BrCfl+MC+2s+Res", "fptarea": 67, "repvalue": 268000, "xcoord": 85.320313584137637, "ycoord": 27.624595544052926 }, "geometry": { "type": "Point", "coordinates": [ 85.320313584137637, 27.624595544052926 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1277, "nhouse": 3, "residents": 16, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 89, "repvalue": 356000, "xcoord": 85.318800949947686, "ycoord": 27.629468198336482 }, "geometry": { "type": "Point", "coordinates": [ 85.318800949947686, 27.629468198336482 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1278, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 91, "repvalue": 364000, "xcoord": 85.319474139107683, "ycoord": 27.628195386520964 }, "geometry": { "type": "Point", "coordinates": [ 85.319474139107683, 27.628195386520964 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1279, "nhouse": 7, "residents": 22, "specialfac": 0, "expstr": "BrM+LC+4s+Res", "fptarea": 94, "repvalue": 752000, "xcoord": 85.319748033613791, "ycoord": 27.627383541511559 }, "geometry": { "type": "Point", "coordinates": [ 85.319748033613791, 27.627383541511559 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1280, "nhouse": 1, "residents": 5, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 62, "repvalue": 124000, "xcoord": 85.319787151679478, "ycoord": 27.624822071549882 }, "geometry": { "type": "Point", "coordinates": [ 85.319787151679478, 27.624822071549882 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1281, "nhouse": 5, "residents": 17, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 88, "repvalue": 528000, "xcoord": 85.320970733437647, "ycoord": 27.624370597002503 }, "geometry": { "type": "Point", "coordinates": [ 85.320970733437647, 27.624370597002503 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1282, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "BrCfl+MC+1s+Res", "fptarea": 100, "repvalue": 200000, "xcoord": 85.319873421778482, "ycoord": 27.627734416552389 }, "geometry": { "type": "Point", "coordinates": [ 85.319873421778482, 27.627734416552389 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1283, "nhouse": 1, "residents": 6, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 67, "repvalue": 134000, "xcoord": 85.320843568148973, "ycoord": 27.624136153357359 }, "geometry": { "type": "Point", "coordinates": [ 85.320843568148973, 27.624136153357359 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1284, "nhouse": 6, "residents": 23, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 107, "repvalue": 642000, "xcoord": 85.318822301626767, "ycoord": 27.628071034126798 }, "geometry": { "type": "Point", "coordinates": [ 85.318822301626767, 27.628071034126798 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1285, "nhouse": 5, "residents": 20, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 66, "repvalue": 528000, "xcoord": 85.31976403708282, "ycoord": 27.626335667556866 }, "geometry": { "type": "Point", "coordinates": [ 85.31976403708282, 27.626335667556866 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1286, "nhouse": 6, "residents": 19, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 108, "repvalue": 648000, "xcoord": 85.318808067344818, "ycoord": 27.629002476966228 }, "geometry": { "type": "Point", "coordinates": [ 85.318808067344818, 27.629002476966228 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1287, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "BrM+LC+3s+Res", "fptarea": 55, "repvalue": 330000, "xcoord": 85.320578576695951, "ycoord": 27.624365848986603 }, "geometry": { "type": "Point", "coordinates": [ 85.320578576695951, 27.624365848986603 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1288, "nhouse": 5, "residents": 21, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 102, "repvalue": 612000, "xcoord": 85.321103228919796, "ycoord": 27.624255748865615 }, "geometry": { "type": "Point", "coordinates": [ 85.321103228919796, 27.624255748865615 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1289, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 61, "repvalue": 244000, "xcoord": 85.31978003968787, "ycoord": 27.625287793435277 }, "geometry": { "type": "Point", "coordinates": [ 85.31978003968787, 27.625287793435277 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1290, "nhouse": 4, "residents": 18, "specialfac": 0, "expstr": "Adb+LC+2s+Res", "fptarea": 102, "repvalue": 408000, "xcoord": 85.32043719415293, "ycoord": 27.625062849167538 }, "geometry": { "type": "Point", "coordinates": [ 85.32043719415293, 27.625062849167538 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1291, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "BrM+LC+2s+Res", "fptarea": 100, "repvalue": 400000, "xcoord": 85.319113988892909, "ycoord": 27.626094886556377 }, "geometry": { "type": "Point", "coordinates": [ 85.319113988892909, 27.626094886556377 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1292, "nhouse": 4, "residents": 16, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 82, "repvalue": 492000, "xcoord": 85.320318916297381, "ycoord": 27.624246252511323 }, "geometry": { "type": "Point", "coordinates": [ 85.320318916297381, 27.624246252511323 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1293, "nhouse": 1, "residents": 8, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 73, "repvalue": 146000, "xcoord": 85.320147312042522, "ycoord": 27.626922570520552 }, "geometry": { "type": "Point", "coordinates": [ 85.320147312042522, 27.626922570520552 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1294, "nhouse": 6, "residents": 25, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 96, "repvalue": 768000, "xcoord": 85.319065957814601, "ycoord": 27.62923850697803 }, "geometry": { "type": "Point", "coordinates": [ 85.319065957814601, 27.62923850697803 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1295, "nhouse": 3, "residents": 25, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 67, "repvalue": 402000, "xcoord": 85.319769371380502, "ycoord": 27.625986376201546 }, "geometry": { "type": "Point", "coordinates": [ 85.319769371380502, 27.625986376201546 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1296, "nhouse": 4, "residents": 12, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 71, "repvalue": 426000, "xcoord": 85.319200240252158, "ycoord": 27.629007230718589 }, "geometry": { "type": "Point", "coordinates": [ 85.319200240252158, 27.629007230718589 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1297, "nhouse": 5, "residents": 15, "specialfac": 0, "expstr": "BrM+MC+3s+Res", "fptarea": 103, "repvalue": 618000, "xcoord": 85.318953024812998, "ycoord": 27.628072618771608 }, "geometry": { "type": "Point", "coordinates": [ 85.318953024812998, 27.628072618771608 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1298, "nhouse": 2, "residents": 11, "specialfac": 0, "expstr": "Adb+LC+2s+Res", "fptarea": 63, "repvalue": 252000, "xcoord": 85.319611976096439, "ycoord": 27.627731248909907 }, "geometry": { "type": "Point", "coordinates": [ 85.319611976096439, 27.627731248909907 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1299, "nhouse": 7, "residents": 18, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 93, "repvalue": 744000, "xcoord": 85.321225065577039, "ycoord": 27.624839483992321 }, "geometry": { "type": "Point", "coordinates": [ 85.321225065577039, 27.624839483992321 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1300, "nhouse": 2, "residents": 9, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 66, "repvalue": 264000, "xcoord": 85.31923937376358, "ycoord": 27.62644576207791 }, "geometry": { "type": "Point", "coordinates": [ 85.31923937376358, 27.62644576207791 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1301, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 103, "repvalue": 412000, "xcoord": 85.319875199878183, "ycoord": 27.62761798611961 }, "geometry": { "type": "Point", "coordinates": [ 85.319875199878183, 27.62761798611961 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1302, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 56, "repvalue": 224000, "xcoord": 85.319223365224005, "ycoord": 27.627493635733281 }, "geometry": { "type": "Point", "coordinates": [ 85.319223365224005, 27.627493635733281 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1303, "nhouse": 3, "residents": 8, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 96, "repvalue": 384000, "xcoord": 85.319103315992209, "ycoord": 27.626793469002109 }, "geometry": { "type": "Point", "coordinates": [ 85.319103315992209, 27.626793469002109 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1304, "nhouse": 6, "residents": 23, "specialfac": 0, "expstr": "BrCfl+MC+4s+Res", "fptarea": 83, "repvalue": 664000, "xcoord": 85.31868979906514, "ycoord": 27.628185879713218 }, "geometry": { "type": "Point", "coordinates": [ 85.31868979906514, 27.628185879713218 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1305, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "Adb+LC+1s+Res", "fptarea": 90, "repvalue": 180000, "xcoord": 85.320039701839505, "ycoord": 27.625407390985853 }, "geometry": { "type": "Point", "coordinates": [ 85.320039701839505, 27.625407390985853 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1306, "nhouse": 2, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 107, "repvalue": 214000, "xcoord": 85.320315361534881, "ycoord": 27.624479113541121 }, "geometry": { "type": "Point", "coordinates": [ 85.320315361534881, 27.624479113541121 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1307, "nhouse": 4, "residents": 19, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 84, "repvalue": 504000, "xcoord": 85.320030812938413, "ycoord": 27.625989543363904 }, "geometry": { "type": "Point", "coordinates": [ 85.320030812938413, 27.625989543363904 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1308, "nhouse": 5, "residents": 24, "specialfac": 0, "expstr": "BrM+LC+4s+Res", "fptarea": 64, "repvalue": 512000, "xcoord": 85.319475917664619, "ycoord": 27.628078956119811 }, "geometry": { "type": "Point", "coordinates": [ 85.319475917664619, 27.628078956119811 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1309, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 99, "repvalue": 396000, "xcoord": 85.318688019668386, "ycoord": 27.628302310065493 }, "geometry": { "type": "Point", "coordinates": [ 85.318688019668386, 27.628302310065493 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1310, "nhouse": 5, "residents": 24, "specialfac": 0, "expstr": "BrCfl+MC+3s+Res", "fptarea": 86, "repvalue": 516000, "xcoord": 85.318672004617284, "ycoord": 27.629350183143259 }, "geometry": { "type": "Point", "coordinates": [ 85.318672004617284, 27.629350183143259 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1311, "nhouse": 5, "residents": 24, "specialfac": 0, "expstr": "Adb+LC+3s+Res", "fptarea": 84, "repvalue": 504000, "xcoord": 85.31978537369757, "ycoord": 27.624938502024325 }, "geometry": { "type": "Point", "coordinates": [ 85.31978537369757, 27.624938502024325 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1312, "nhouse": 3, "residents": 15, "specialfac": 0, "expstr": "BrCfl+MC+3s+Res", "fptarea": 63, "repvalue": 378000, "xcoord": 85.320698633606725, "ycoord": 27.625066014974252 }, "geometry": { "type": "Point", "coordinates": [ 85.320698633606725, 27.625066014974252 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1313, "nhouse": 3, "residents": 16, "specialfac": 0, "expstr": "BrM+LC+2s+Res", "fptarea": 103, "repvalue": 412000, "xcoord": 85.320055701189617, "ycoord": 27.624359516575556 }, "geometry": { "type": "Point", "coordinates": [ 85.320055701189617, 27.624359516575556 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1314, "nhouse": 5, "residents": 23, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 95, "repvalue": 570000, "xcoord": 85.319617311192673, "ycoord": 27.627381957652162 }, "geometry": { "type": "Point", "coordinates": [ 85.319617311192673, 27.627381957652162 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1315, "nhouse": 2, "residents": 9, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 105, "repvalue": 210000, "xcoord": 85.319078411063359, "ycoord": 27.628423494420367 }, "geometry": { "type": "Point", "coordinates": [ 85.319078411063359, 27.628423494420367 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1316, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 71, "repvalue": 284000, "xcoord": 85.319368316501482, "ycoord": 27.626563776666398 }, "geometry": { "type": "Point", "coordinates": [ 85.319368316501482, 27.626563776666398 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1317, "nhouse": 1, "residents": 7, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 75, "repvalue": 150000, "xcoord": 85.319216250040128, "ycoord": 27.627959357304313 }, "geometry": { "type": "Point", "coordinates": [ 85.319216250040128, 27.627959357304313 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1318, "nhouse": 6, "residents": 30, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 87, "repvalue": 696000, "xcoord": 85.319622646192897, "ycoord": 27.627032666375872 }, "geometry": { "type": "Point", "coordinates": [ 85.319622646192897, 27.627032666375872 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1319, "nhouse": 5, "residents": 18, "specialfac": 0, "expstr": "BrM+LC+3s+Res", "fptarea": 89, "repvalue": 534000, "xcoord": 85.320288699456626, "ycoord": 27.626225571001871 }, "geometry": { "type": "Point", "coordinates": [ 85.320288699456626, 27.626225571001871 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1320, "nhouse": 6, "residents": 23, "specialfac": 0, "expstr": "Adb+LC+4s+Res", "fptarea": 88, "repvalue": 704000, "xcoord": 85.320974286797195, "ycoord": 27.62413773589066 }, "geometry": { "type": "Point", "coordinates": [ 85.320974286797195, 27.62413773589066 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1321, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 98, "repvalue": 392000, "xcoord": 85.32031180672972, "ycoord": 27.624711974562672 }, "geometry": { "type": "Point", "coordinates": [ 85.32031180672972, 27.624711974562672 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1322, "nhouse": 3, "residents": 8, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 96, "repvalue": 384000, "xcoord": 85.319606640904198, "ycoord": 27.628080540149107 }, "geometry": { "type": "Point", "coordinates": [ 85.319606640904198, 27.628080540149107 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1323, "nhouse": 2, "residents": 13, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 62, "repvalue": 248000, "xcoord": 85.320310029311159, "ycoord": 27.624828405070353 }, "geometry": { "type": "Point", "coordinates": [ 85.320310029311159, 27.624828405070353 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1324, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 96, "repvalue": 192000, "xcoord": 85.320290477003141, "ycoord": 27.626109140518906 }, "geometry": { "type": "Point", "coordinates": [ 85.320290477003141, 27.626109140518906 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1325, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 55, "repvalue": 110000, "xcoord": 85.318679122524514, "ycoord": 27.628884461795977 }, "geometry": { "type": "Point", "coordinates": [ 85.318679122524514, 27.628884461795977 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1326, "nhouse": 4, "residents": 17, "specialfac": 0, "expstr": "BrCfl+MC+3s+Res", "fptarea": 83, "repvalue": 498000, "xcoord": 85.320832907113427, "ycoord": 27.62483473662143 }, "geometry": { "type": "Point", "coordinates": [ 85.320832907113427, 27.62483473662143 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1327, "nhouse": 4, "residents": 17, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 83, "repvalue": 498000, "xcoord": 85.319762258962243, "ycoord": 27.626452098004517 }, "geometry": { "type": "Point", "coordinates": [ 85.319762258962243, 27.626452098004517 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1328, "nhouse": 6, "residents": 25, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 81, "repvalue": 648000, "xcoord": 85.319619089536744, "ycoord": 27.627265527228793 }, "geometry": { "type": "Point", "coordinates": [ 85.319619089536744, 27.627265527228793 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1329, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 75, "repvalue": 300000, "xcoord": 85.320822245694146, "ycoord": 27.625533319811339 }, "geometry": { "type": "Point", "coordinates": [ 85.320822245694146, 27.625533319811339 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1330, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 91, "repvalue": 182000, "xcoord": 85.320442526026127, "ycoord": 27.624713557627274 }, "geometry": { "type": "Point", "coordinates": [ 85.320442526026127, 27.624713557627274 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1331, "nhouse": 5, "residents": 27, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 75, "repvalue": 600000, "xcoord": 85.321230394899288, "ycoord": 27.624490192299429 }, "geometry": { "type": "Point", "coordinates": [ 85.321230394899288, 27.624490192299429 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1332, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 65, "repvalue": 260000, "xcoord": 85.319338079591176, "ycoord": 27.628543093528442 }, "geometry": { "type": "Point", "coordinates": [ 85.319338079591176, 27.628543093528442 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1333, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 107, "repvalue": 214000, "xcoord": 85.318944129157785, "ycoord": 27.628654770600718 }, "geometry": { "type": "Point", "coordinates": [ 85.318944129157785, 27.628654770600718 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1334, "nhouse": 4, "residents": 11, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 62, "repvalue": 496000, "xcoord": 85.319620867870157, "ycoord": 27.627149096803365 }, "geometry": { "type": "Point", "coordinates": [ 85.319620867870157, 27.627149096803365 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1335, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 71, "repvalue": 142000, "xcoord": 85.319767593291942, "ycoord": 27.626102806655382 }, "geometry": { "type": "Point", "coordinates": [ 85.319767593291942, 27.626102806655382 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1336, "nhouse": 6, "residents": 26, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 89, "repvalue": 712000, "xcoord": 85.319237595079642, "ycoord": 27.626562192492301 }, "geometry": { "type": "Point", "coordinates": [ 85.319237595079642, 27.626562192492301 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1337, "nhouse": 5, "residents": 18, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 101, "repvalue": 606000, "xcoord": 85.319876977967212, "ycoord": 27.627501555684763 }, "geometry": { "type": "Point", "coordinates": [ 85.319876977967212, 27.627501555684763 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1338, "nhouse": 4, "residents": 16, "specialfac": 0, "expstr": "BrM+LC+3s+Res", "fptarea": 73, "repvalue": 438000, "xcoord": 85.320813360884969, "ycoord": 27.626115472412934 }, "geometry": { "type": "Point", "coordinates": [ 85.320813360884969, 27.626115472412934 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1339, "nhouse": 4, "residents": 20, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 80, "repvalue": 480000, "xcoord": 85.318938791636597, "ycoord": 27.629004061673452 }, "geometry": { "type": "Point", "coordinates": [ 85.318938791636597, 27.629004061673452 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1340, "nhouse": 5, "residents": 17, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 91, "repvalue": 546000, "xcoord": 85.319615532837915, "ycoord": 27.627498388073473 }, "geometry": { "type": "Point", "coordinates": [ 85.319615532837915, 27.627498388073473 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1341, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 64, "repvalue": 256000, "xcoord": 85.320170421943601, "ycoord": 27.625408974343411 }, "geometry": { "type": "Point", "coordinates": [ 85.320170421943601, 27.625408974343411 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1342, "nhouse": 6, "residents": 26, "specialfac": 0, "expstr": "Adb+LC+4s+Res", "fptarea": 85, "repvalue": 680000, "xcoord": 85.318961920201417, "ycoord": 27.627490466890983 }, "geometry": { "type": "Point", "coordinates": [ 85.318961920201417, 27.627490466890983 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1343, "nhouse": 3, "residents": 15, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 67, "repvalue": 402000, "xcoord": 85.32015264525657, "ycoord": 27.62657327912596 }, "geometry": { "type": "Point", "coordinates": [ 85.32015264525657, 27.62657327912596 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1344, "nhouse": 1, "residents": 8, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 65, "repvalue": 130000, "xcoord": 85.319366537945044, "ycoord": 27.626680207086533 }, "geometry": { "type": "Point", "coordinates": [ 85.319366537945044, 27.626680207086533 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1345, "nhouse": 4, "residents": 17, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 79, "repvalue": 474000, "xcoord": 85.319067736882147, "ycoord": 27.629122076618831 }, "geometry": { "type": "Point", "coordinates": [ 85.319067736882147, 27.629122076618831 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1346, "nhouse": 5, "residents": 21, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 97, "repvalue": 582000, "xcoord": 85.319232258963794, "ycoord": 27.626911483723127 }, "geometry": { "type": "Point", "coordinates": [ 85.319232258963794, 27.626911483723127 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1347, "nhouse": 6, "residents": 27, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 81, "repvalue": 648000, "xcoord": 85.319359423612639, "ycoord": 27.627145928746469 }, "geometry": { "type": "Point", "coordinates": [ 85.319359423612639, 27.627145928746469 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1348, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrM+LC+1s+Res", "fptarea": 72, "repvalue": 144000, "xcoord": 85.319765815192696, "ycoord": 27.626219237107154 }, "geometry": { "type": "Point", "coordinates": [ 85.319765815192696, 27.626219237107154 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1349, "nhouse": 5, "residents": 22, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 82, "repvalue": 492000, "xcoord": 85.320143756513161, "ycoord": 27.62715543143997 }, "geometry": { "type": "Point", "coordinates": [ 85.320143756513161, 27.62715543143997 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1350, "nhouse": 5, "residents": 24, "specialfac": 0, "expstr": "BrCfl+MC+3s+Res", "fptarea": 95, "repvalue": 570000, "xcoord": 85.319772927525619, "ycoord": 27.625753515287702 }, "geometry": { "type": "Point", "coordinates": [ 85.319772927525619, 27.625753515287702 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1351, "nhouse": 2, "residents": 9, "specialfac": 0, "expstr": "BrCri+MC+2s+Res", "fptarea": 82, "repvalue": 328000, "xcoord": 85.318691578451208, "ycoord": 27.628069449358883 }, "geometry": { "type": "Point", "coordinates": [ 85.318691578451208, 27.628069449358883 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1352, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "BrM+LC+3s+Res", "fptarea": 56, "repvalue": 336000, "xcoord": 85.321092569478282, "ycoord": 27.624954332210837 }, "geometry": { "type": "Point", "coordinates": [ 85.321092569478282, 27.624954332210837 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1353, "nhouse": 6, "residents": 27, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 92, "repvalue": 736000, "xcoord": 85.319477696210896, "ycoord": 27.627962525716608 }, "geometry": { "type": "Point", "coordinates": [ 85.319477696210896, 27.627962525716608 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1354, "nhouse": 4, "residents": 11, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 74, "repvalue": 444000, "xcoord": 85.320163311396755, "ycoord": 27.625874696281155 }, "geometry": { "type": "Point", "coordinates": [ 85.320163311396755, 27.625874696281155 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1355, "nhouse": 1, "residents": 2, "specialfac": 0, "expstr": "BrM+LC+1s+Res", "fptarea": 74, "repvalue": 148000, "xcoord": 85.320037924080609, "ycoord": 27.625523821465585 }, "geometry": { "type": "Point", "coordinates": [ 85.320037924080609, 27.625523821465585 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1356, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 61, "repvalue": 244000, "xcoord": 85.319914315373254, "ycoord": 27.625056516077048 }, "geometry": { "type": "Point", "coordinates": [ 85.319914315373254, 27.625056516077048 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1357, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 104, "repvalue": 208000, "xcoord": 85.319507929865239, "ycoord": 27.625983208546828 }, "geometry": { "type": "Point", "coordinates": [ 85.319507929865239, 27.625983208546828 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1358, "nhouse": 1, "residents": 9, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 67, "repvalue": 134000, "xcoord": 85.320689748319879, "ycoord": 27.625648167578092 }, "geometry": { "type": "Point", "coordinates": [ 85.320689748319879, 27.625648167578092 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1359, "nhouse": 4, "residents": 17, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 63, "repvalue": 504000, "xcoord": 85.319755146373353, "ycoord": 27.626917819774526 }, "geometry": { "type": "Point", "coordinates": [ 85.319755146373353, 27.626917819774526 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1360, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 76, "repvalue": 304000, "xcoord": 85.320841791336363, "ycoord": 27.624252583906522 }, "geometry": { "type": "Point", "coordinates": [ 85.320841791336363, 27.624252583906522 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1361, "nhouse": 3, "residents": 16, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 77, "repvalue": 308000, "xcoord": 85.32108901624585, "ycoord": 27.625187193309436 }, "geometry": { "type": "Point", "coordinates": [ 85.32108901624585, 27.625187193309436 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1362, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 99, "repvalue": 396000, "xcoord": 85.318806288011558, "ycoord": 27.629118907311881 }, "geometry": { "type": "Point", "coordinates": [ 85.318806288011558, 27.629118907311881 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1363, "nhouse": 5, "residents": 23, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 108, "repvalue": 648000, "xcoord": 85.319624424504966, "ycoord": 27.626916235946329 }, "geometry": { "type": "Point", "coordinates": [ 85.319624424504966, 27.626916235946329 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1364, "nhouse": 5, "residents": 22, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 100, "repvalue": 600000, "xcoord": 85.320711072560627, "ycoord": 27.624251001242353 }, "geometry": { "type": "Point", "coordinates": [ 85.320711072560627, 27.624251001242353 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1365, "nhouse": 8, "residents": 39, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 106, "repvalue": 848000, "xcoord": 85.320687971230527, "ycoord": 27.625764598092672 }, "geometry": { "type": "Point", "coordinates": [ 85.320687971230527, 27.625764598092672 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1366, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "Adb+LC+2s+Res", "fptarea": 59, "repvalue": 236000, "xcoord": 85.319917871071397, "ycoord": 27.624823655114632 }, "geometry": { "type": "Point", "coordinates": [ 85.319917871071397, 27.624823655114632 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1367, "nhouse": 4, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 69, "repvalue": 414000, "xcoord": 85.320029035126211, "ycoord": 27.626105973833329 }, "geometry": { "type": "Point", "coordinates": [ 85.320029035126211, 27.626105973833329 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1368, "nhouse": 2, "residents": 9, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 56, "repvalue": 224000, "xcoord": 85.321228618469192, "ycoord": 27.624606622865791 }, "geometry": { "type": "Point", "coordinates": [ 85.321228618469192, 27.624606622865791 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1369, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 78, "repvalue": 156000, "xcoord": 85.32057502246478, "ycoord": 27.624598710043461 }, "geometry": { "type": "Point", "coordinates": [ 85.32057502246478, 27.624598710043461 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1370, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 74, "repvalue": 296000, "xcoord": 85.320576799585695, "ycoord": 27.624482279516062 }, "geometry": { "type": "Point", "coordinates": [ 85.320576799585695, 27.624482279516062 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1371, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 77, "repvalue": 308000, "xcoord": 85.319788929650713, "ycoord": 27.624705641073387 }, "geometry": { "type": "Point", "coordinates": [ 85.319788929650713, 27.624705641073387 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1372, "nhouse": 4, "residents": 19, "specialfac": 0, "expstr": "BrCri+MC+3s+Res", "fptarea": 78, "repvalue": 468000, "xcoord": 85.318935233235777, "ycoord": 27.629236922378304 }, "geometry": { "type": "Point", "coordinates": [ 85.318935233235777, 27.629236922378304 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1373, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "Adb+LC+1s+Res", "fptarea": 66, "repvalue": 132000, "xcoord": 85.320680862766523, "ycoord": 27.626230320130414 }, "geometry": { "type": "Point", "coordinates": [ 85.320680862766523, 27.626230320130414 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1374, "nhouse": 2, "residents": 10, "specialfac": 0, "expstr": "BrCri+MC+3s+Res", "fptarea": 56, "repvalue": 336000, "xcoord": 85.32058568503038, "ycoord": 27.623900126848177 }, "geometry": { "type": "Point", "coordinates": [ 85.32058568503038, 27.623900126848177 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1375, "nhouse": 4, "residents": 20, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 94, "repvalue": 564000, "xcoord": 85.319903648022901, "ycoord": 27.625755098914833 }, "geometry": { "type": "Point", "coordinates": [ 85.319903648022901, 27.625755098914833 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1376, "nhouse": 1, "residents": 1, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 79, "repvalue": 158000, "xcoord": 85.319080190056212, "ycoord": 27.628307064046741 }, "geometry": { "type": "Point", "coordinates": [ 85.319080190056212, 27.628307064046741 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1377, "nhouse": 7, "residents": 31, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 106, "repvalue": 848000, "xcoord": 85.318933454019344, "ycoord": 27.629353352727644 }, "geometry": { "type": "Point", "coordinates": [ 85.318933454019344, 27.629353352727644 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1378, "nhouse": 5, "residents": 24, "specialfac": 0, "expstr": "BrM+LC+3s+Res", "fptarea": 108, "repvalue": 648000, "xcoord": 85.320560805113658, "ycoord": 27.625530154188453 }, "geometry": { "type": "Point", "coordinates": [ 85.320560805113658, 27.625530154188453 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1379, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 103, "repvalue": 412000, "xcoord": 85.320057478841861, "ycoord": 27.624243086075232 }, "geometry": { "type": "Point", "coordinates": [ 85.320057478841861, 27.624243086075232 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1380, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "Adb+LC+3s+Res", "fptarea": 58, "repvalue": 348000, "xcoord": 85.320446080554959, "ycoord": 27.62448069659013 }, "geometry": { "type": "Point", "coordinates": [ 85.320446080554959, 27.62448069659013 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1381, "nhouse": 3, "residents": 15, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 107, "repvalue": 428000, "xcoord": 85.319497259515757, "ycoord": 27.626681791145334 }, "geometry": { "type": "Point", "coordinates": [ 85.319497259515757, 27.626681791145334 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1382, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "BrCri+MC+2s+Res", "fptarea": 81, "repvalue": 324000, "xcoord": 85.31964220703901, "ycoord": 27.625751931537479 }, "geometry": { "type": "Point", "coordinates": [ 85.31964220703901, 27.625751931537479 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1383, "nhouse": 5, "residents": 29, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 70, "repvalue": 560000, "xcoord": 85.319483031785694, "ycoord": 27.627613234494618 }, "geometry": { "type": "Point", "coordinates": [ 85.319483031785694, 27.627613234494618 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1384, "nhouse": 4, "residents": 10, "specialfac": 0, "expstr": "Adb+LC+4s+Res", "fptarea": 63, "repvalue": 504000, "xcoord": 85.320811583891157, "ycoord": 27.626231902927071 }, "geometry": { "type": "Point", "coordinates": [ 85.320811583891157, 27.626231902927071 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1385, "nhouse": 3, "residents": 7, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 92, "repvalue": 736000, "xcoord": 85.319910759632464, "ycoord": 27.625289377031219 }, "geometry": { "type": "Point", "coordinates": [ 85.319910759632464, 27.625289377031219 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 2216, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Com", "fptarea": 135, "repvalue": 1620000, "xcoord": 85.319375430620511, "ycoord": 27.626098054965258 }, "geometry": { "type": "Point", "coordinates": [ 85.319375430620511, 27.626098054965258 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 2217, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 139, "repvalue": 1946000, "xcoord": 85.319900092154128, "ycoord": 27.625987959844277 }, "geometry": { "type": "Point", "coordinates": [ 85.319900092154128, 27.625987959844277 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 2218, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 126, "repvalue": 1512000, "xcoord": 85.320052145853126, "ycoord": 27.624592377570046 }, "geometry": { "type": "Point", "coordinates": [ 85.320052145853126, 27.624592377570046 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 2219, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 108, "repvalue": 1944000, "xcoord": 85.320820468753638, "ycoord": 27.625649750335775 }, "geometry": { "type": "Point", "coordinates": [ 85.320820468753638, 27.625649750335775 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 2220, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+9s+Com", "fptarea": 139, "repvalue": 2502000, "xcoord": 85.319626202806376, "ycoord": 27.626799805514707 }, "geometry": { "type": "Point", "coordinates": [ 85.319626202806376, 27.626799805514707 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 2221, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Com", "fptarea": 147, "repvalue": 2940000, "xcoord": 85.319350530457086, "ycoord": 27.627728080775015 }, "geometry": { "type": "Point", "coordinates": [ 85.319350530457086, 27.627728080775015 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 2222, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Com", "fptarea": 138, "repvalue": 2208000, "xcoord": 85.320041479587729, "ycoord": 27.625290960504067 }, "geometry": { "type": "Point", "coordinates": [ 85.320041479587729, 27.625290960504067 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 2223, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Com", "fptarea": 105, "repvalue": 1260000, "xcoord": 85.320550141652561, "ycoord": 27.626228737210656 }, "geometry": { "type": "Point", "coordinates": [ 85.320550141652561, 27.626228737210656 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 2224, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Com", "fptarea": 126, "repvalue": 2520000, "xcoord": 85.319377209123601, "ycoord": 27.62598162453482 }, "geometry": { "type": "Point", "coordinates": [ 85.319377209123601, 27.62598162453482 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 2225, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 108, "repvalue": 1296000, "xcoord": 85.320182864990045, "ycoord": 27.624593960873028 }, "geometry": { "type": "Point", "coordinates": [ 85.320182864990045, 27.624593960873028 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 2226, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 141, "repvalue": 1692000, "xcoord": 85.321495385374874, "ycoord": 27.624260495381122 }, "geometry": { "type": "Point", "coordinates": [ 85.321495385374874, 27.624260495381122 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 2227, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Com", "fptarea": 140, "repvalue": 1680000, "xcoord": 85.320161533733383, "ycoord": 27.625991126760443 }, "geometry": { "type": "Point", "coordinates": [ 85.320161533733383, 27.625991126760443 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 2228, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 116, "repvalue": 1392000, "xcoord": 85.319758702689143, "ycoord": 27.626684958893645 }, "geometry": { "type": "Point", "coordinates": [ 85.319758702689143, 27.626684958893645 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 2229, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Com", "fptarea": 119, "repvalue": 2142000, "xcoord": 85.320043257325281, "ycoord": 27.625174530020214 }, "geometry": { "type": "Point", "coordinates": [ 85.320043257325281, 27.625174530020214 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 2230, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Com", "fptarea": 125, "repvalue": 2250000, "xcoord": 85.32096362659064, "ycoord": 27.624836319201481 }, "geometry": { "type": "Point", "coordinates": [ 85.32096362659064, 27.624836319201481 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 2231, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Com", "fptarea": 122, "repvalue": 1220000, "xcoord": 85.319882312170321, "ycoord": 27.627152264367865 }, "geometry": { "type": "Point", "coordinates": [ 85.319882312170321, 27.627152264367865 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 2232, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Com", "fptarea": 147, "repvalue": 2058000, "xcoord": 85.319083748009902, "ycoord": 27.628074203293313 }, "geometry": { "type": "Point", "coordinates": [ 85.319083748009902, 27.628074203293313 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 2233, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Com", "fptarea": 99, "repvalue": 1980000, "xcoord": 85.318956583000372, "ycoord": 27.627839758025534 }, "geometry": { "type": "Point", "coordinates": [ 85.318956583000372, 27.627839758025534 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 2234, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Com", "fptarea": 107, "repvalue": 1498000, "xcoord": 85.319241152436845, "ycoord": 27.626329331661449 }, "geometry": { "type": "Point", "coordinates": [ 85.319241152436845, 27.626329331661449 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 2235, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Com", "fptarea": 145, "repvalue": 1740000, "xcoord": 85.319926760130102, "ycoord": 27.624241502672554 }, "geometry": { "type": "Point", "coordinates": [ 85.319926760130102, 27.624241502672554 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 2236, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Com", "fptarea": 143, "repvalue": 1716000, "xcoord": 85.319361202211738, "ycoord": 27.627029498334579 }, "geometry": { "type": "Point", "coordinates": [ 85.319361202211738, 27.627029498334579 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1386, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 70, "repvalue": 140000, "xcoord": 85.320367773509489, "ycoord": 27.623572895322049 }, "geometry": { "type": "Point", "coordinates": [ 85.320367773509489, 27.623572895322049 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1387, "nhouse": 5, "residents": 25, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 95, "repvalue": 760000, "xcoord": 85.319885642112155, "ycoord": 27.62257014389381 }, "geometry": { "type": "Point", "coordinates": [ 85.319885642112155, 27.62257014389381 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1388, "nhouse": 4, "residents": 16, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 127, "repvalue": 508000, "xcoord": 85.320742476384552, "ycoord": 27.623466664511838 }, "geometry": { "type": "Point", "coordinates": [ 85.320742476384552, 27.623466664511838 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1389, "nhouse": 16, "residents": 62, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 130, "repvalue": 2080000, "xcoord": 85.320492111078394, "ycoord": 27.623574401012586 }, "geometry": { "type": "Point", "coordinates": [ 85.320492111078394, 27.623574401012586 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1390, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 79, "repvalue": 474000, "xcoord": 85.319786670491041, "ycoord": 27.620907424892778 }, "geometry": { "type": "Point", "coordinates": [ 85.319786670491041, 27.620907424892778 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1391, "nhouse": 5, "residents": 16, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 84, "repvalue": 672000, "xcoord": 85.319650498480257, "ycoord": 27.621681151354245 }, "geometry": { "type": "Point", "coordinates": [ 85.319650498480257, 27.621681151354245 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1392, "nhouse": 1, "residents": 5, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 81, "repvalue": 162000, "xcoord": 85.319776524841728, "ycoord": 27.621571910069989 }, "geometry": { "type": "Point", "coordinates": [ 85.319776524841728, 27.621571910069989 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1393, "nhouse": 4, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 106, "repvalue": 636000, "xcoord": 85.320282318215007, "ycoord": 27.621024196099174 }, "geometry": { "type": "Point", "coordinates": [ 85.320282318215007, 27.621024196099174 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1394, "nhouse": 12, "residents": 49, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 98, "repvalue": 1568000, "xcoord": 85.320245126589569, "ycoord": 27.623460642000609 }, "geometry": { "type": "Point", "coordinates": [ 85.320245126589569, 27.623460642000609 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1395, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 78, "repvalue": 468000, "xcoord": 85.320023504667631, "ycoord": 27.621685669736447 }, "geometry": { "type": "Point", "coordinates": [ 85.320023504667631, 27.621685669736447 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1396, "nhouse": 2, "residents": 10, "specialfac": 0, "expstr": "BrCri+MC+2s+Res", "fptarea": 76, "repvalue": 304000, "xcoord": 85.31974777694893, "ycoord": 27.62345461770764 }, "geometry": { "type": "Point", "coordinates": [ 85.31974777694893, 27.62345461770764 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1397, "nhouse": 8, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 133, "repvalue": 1064000, "xcoord": 85.319669100052977, "ycoord": 27.620462928576224 }, "geometry": { "type": "Point", "coordinates": [ 85.319669100052977, 27.620462928576224 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1398, "nhouse": 11, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 120, "repvalue": 1440000, "xcoord": 85.320047173944616, "ycoord": 27.620135204047148 }, "geometry": { "type": "Point", "coordinates": [ 85.320047173944616, 27.620135204047148 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1399, "nhouse": 8, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 104, "repvalue": 1456000, "xcoord": 85.319798506642911, "ycoord": 27.62013219210122 }, "geometry": { "type": "Point", "coordinates": [ 85.319798506642911, 27.62013219210122 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1400, "nhouse": 8, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 63, "repvalue": 882000, "xcoord": 85.310741495871881, "ycoord": 27.617790824761993 }, "geometry": { "type": "Point", "coordinates": [ 85.310741495871881, 27.617790824761993 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1401, "nhouse": 7, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 58, "repvalue": 812000, "xcoord": 85.317961047218333, "ycoord": 27.619101575791642 }, "geometry": { "type": "Point", "coordinates": [ 85.317961047218333, 27.619101575791642 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1402, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 61, "repvalue": 122000, "xcoord": 85.31632335648635, "ycoord": 27.620082359244797 }, "geometry": { "type": "Point", "coordinates": [ 85.31632335648635, 27.620082359244797 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1403, "nhouse": 4, "residents": 17, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 76, "repvalue": 456000, "xcoord": 85.317596846481081, "ycoord": 27.618430057226568 }, "geometry": { "type": "Point", "coordinates": [ 85.317596846481081, 27.618430057226568 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1404, "nhouse": 11, "residents": 61, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 87, "repvalue": 1218000, "xcoord": 85.317839646498143, "ycoord": 27.618877736361171 }, "geometry": { "type": "Point", "coordinates": [ 85.317839646498143, 27.618877736361171 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1405, "nhouse": 20, "residents": 80, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 80, "repvalue": 2240000, "xcoord": 85.316313152138505, "ycoord": 27.620749336698957 }, "geometry": { "type": "Point", "coordinates": [ 85.316313152138505, 27.620749336698957 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1406, "nhouse": 10, "residents": 43, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 69, "repvalue": 1104000, "xcoord": 85.312362152495993, "ycoord": 27.617921734939866 }, "geometry": { "type": "Point", "coordinates": [ 85.312362152495993, 27.617921734939866 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1407, "nhouse": 6, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 60, "repvalue": 720000, "xcoord": 85.312080165320651, "ycoord": 27.620030789200179 }, "geometry": { "type": "Point", "coordinates": [ 85.312080165320651, 27.620030789200179 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1408, "nhouse": 9, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 73, "repvalue": 1022000, "xcoord": 85.314054820429874, "ycoord": 27.621500189674144 }, "geometry": { "type": "Point", "coordinates": [ 85.314054820429874, 27.621500189674144 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1409, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 63, "repvalue": 252000, "xcoord": 85.313840985715146, "ycoord": 27.619162737392372 }, "geometry": { "type": "Point", "coordinates": [ 85.313840985715146, 27.619162737392372 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1410, "nhouse": 4, "residents": 21, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 80, "repvalue": 480000, "xcoord": 85.314849588251363, "ycoord": 27.618507893067832 }, "geometry": { "type": "Point", "coordinates": [ 85.314849588251363, 27.618507893067832 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1411, "nhouse": 15, "residents": 69, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 54, "repvalue": 1620000, "xcoord": 85.311498804671501, "ycoord": 27.61724412793361 }, "geometry": { "type": "Point", "coordinates": [ 85.311498804671501, 27.61724412793361 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1412, "nhouse": 11, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 86, "repvalue": 1204000, "xcoord": 85.317101053668793, "ycoord": 27.618201675832541 }, "geometry": { "type": "Point", "coordinates": [ 85.317101053668793, 27.618201675832541 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1413, "nhouse": 4, "residents": 13, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 107, "repvalue": 428000, "xcoord": 85.314938643308608, "ycoord": 27.620843828817051 }, "geometry": { "type": "Point", "coordinates": [ 85.314938643308608, 27.620843828817051 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1414, "nhouse": 15, "residents": 71, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 103, "repvalue": 1648000, "xcoord": 85.318961136682475, "ycoord": 27.619002515813126 }, "geometry": { "type": "Point", "coordinates": [ 85.318961136682475, 27.619002515813126 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1415, "nhouse": 13, "residents": 48, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 104, "repvalue": 1456000, "xcoord": 85.310433878134262, "ycoord": 27.621567312898016 }, "geometry": { "type": "Point", "coordinates": [ 85.310433878134262, 27.621567312898016 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1416, "nhouse": 6, "residents": 22, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 62, "repvalue": 744000, "xcoord": 85.317213953719516, "ycoord": 27.618981330770389 }, "geometry": { "type": "Point", "coordinates": [ 85.317213953719516, 27.618981330770389 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1417, "nhouse": 1, "residents": 2, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 72, "repvalue": 144000, "xcoord": 85.318198753764236, "ycoord": 27.619882743462938 }, "geometry": { "type": "Point", "coordinates": [ 85.318198753764236, 27.619882743462938 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1418, "nhouse": 7, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 80, "repvalue": 800000, "xcoord": 85.310743202033137, "ycoord": 27.617679662129866 }, "geometry": { "type": "Point", "coordinates": [ 85.310743202033137, 27.617679662129866 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1419, "nhouse": 14, "residents": 61, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 105, "repvalue": 1470000, "xcoord": 85.312625380905516, "ycoord": 27.617035469389936 }, "geometry": { "type": "Point", "coordinates": [ 85.312625380905516, 27.617035469389936 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1420, "nhouse": 24, "residents": 91, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 71, "repvalue": 2556000, "xcoord": 85.314943749710935, "ycoord": 27.620510340339205 }, "geometry": { "type": "Point", "coordinates": [ 85.314943749710935, 27.620510340339205 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1421, "nhouse": 9, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 95, "repvalue": 1140000, "xcoord": 85.31184591285141, "ycoord": 27.619027287632495 }, "geometry": { "type": "Point", "coordinates": [ 85.31184591285141, 27.619027287632495 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1422, "nhouse": 9, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 81, "repvalue": 972000, "xcoord": 85.315215473791, "ycoord": 27.619068255239746 }, "geometry": { "type": "Point", "coordinates": [ 85.315215473791, 27.619068255239746 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1423, "nhouse": 12, "residents": 50, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 89, "repvalue": 1246000, "xcoord": 85.317871927211556, "ycoord": 27.616765638627832 }, "geometry": { "type": "Point", "coordinates": [ 85.317871927211556, 27.616765638627832 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1424, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 73, "repvalue": 292000, "xcoord": 85.315458265146049, "ycoord": 27.619515938136054 }, "geometry": { "type": "Point", "coordinates": [ 85.315458265146049, 27.619515938136054 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1425, "nhouse": 8, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 66, "repvalue": 924000, "xcoord": 85.312817033155625, "ycoord": 27.620818038178349 }, "geometry": { "type": "Point", "coordinates": [ 85.312817033155625, 27.620818038178349 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1426, "nhouse": 23, "residents": 82, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 103, "repvalue": 2472000, "xcoord": 85.313109232092444, "ycoord": 27.618042005563126 }, "geometry": { "type": "Point", "coordinates": [ 85.313109232092444, 27.618042005563126 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1427, "nhouse": 3, "residents": 7, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 103, "repvalue": 412000, "xcoord": 85.313483624294477, "ycoord": 27.618046557999875 }, "geometry": { "type": "Point", "coordinates": [ 85.313483624294477, 27.618046557999875 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1428, "nhouse": 12, "residents": 55, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 108, "repvalue": 1296000, "xcoord": 85.31170235591361, "ycoord": 27.620248557974037 }, "geometry": { "type": "Point", "coordinates": [ 85.31170235591361, 27.620248557974037 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1429, "nhouse": 1, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 86, "repvalue": 172000, "xcoord": 85.312485245284265, "ycoord": 27.618034415925177 }, "geometry": { "type": "Point", "coordinates": [ 85.312485245284265, 27.618034415925177 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1430, "nhouse": 1, "residents": 2, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 83, "repvalue": 166000, "xcoord": 85.318593533421478, "ycoord": 27.618553325750696 }, "geometry": { "type": "Point", "coordinates": [ 85.318593533421478, 27.618553325750696 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1431, "nhouse": 6, "residents": 25, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 86, "repvalue": 688000, "xcoord": 85.312336583309516, "ycoord": 27.619589175560993 }, "geometry": { "type": "Point", "coordinates": [ 85.312336583309516, 27.619589175560993 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1432, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 59, "repvalue": 118000, "xcoord": 85.313307716240388, "ycoord": 27.621379923109245 }, "geometry": { "type": "Point", "coordinates": [ 85.313307716240388, 27.621379923109245 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1433, "nhouse": 14, "residents": 43, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 107, "repvalue": 1498000, "xcoord": 85.314598289891833, "ycoord": 27.618616023473091 }, "geometry": { "type": "Point", "coordinates": [ 85.314598289891833, 27.618616023473091 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1434, "nhouse": 8, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 61, "repvalue": 854000, "xcoord": 85.313451257632167, "ycoord": 27.620158650566641 }, "geometry": { "type": "Point", "coordinates": [ 85.313451257632167, 27.620158650566641 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1435, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 66, "repvalue": 132000, "xcoord": 85.311083475017838, "ycoord": 27.619907473610205 }, "geometry": { "type": "Point", "coordinates": [ 85.311083475017838, 27.619907473610205 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1436, "nhouse": 12, "residents": 65, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 96, "repvalue": 1344000, "xcoord": 85.313999842668494, "ycoord": 27.616940998120736 }, "geometry": { "type": "Point", "coordinates": [ 85.313999842668494, 27.616940998120736 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1437, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 94, "repvalue": 376000, "xcoord": 85.314237516899368, "ycoord": 27.61772217135443 }, "geometry": { "type": "Point", "coordinates": [ 85.314237516899368, 27.61772217135443 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1438, "nhouse": 5, "residents": 23, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 104, "repvalue": 624000, "xcoord": 85.311107357697551, "ycoord": 27.618351196789092 }, "geometry": { "type": "Point", "coordinates": [ 85.311107357697551, 27.618351196789092 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1439, "nhouse": 2, "residents": 11, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 65, "repvalue": 260000, "xcoord": 85.312873269390451, "ycoord": 27.617149667993615 }, "geometry": { "type": "Point", "coordinates": [ 85.312873269390451, 27.617149667993615 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1440, "nhouse": 14, "residents": 46, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 107, "repvalue": 1498000, "xcoord": 85.3174465560339, "ycoord": 27.620095988432485 }, "geometry": { "type": "Point", "coordinates": [ 85.3174465560339, 27.620095988432485 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1441, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 81, "repvalue": 324000, "xcoord": 85.315746990358832, "ycoord": 27.616962222198097 }, "geometry": { "type": "Point", "coordinates": [ 85.315746990358832, 27.616962222198097 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1442, "nhouse": 9, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 75, "repvalue": 1050000, "xcoord": 85.313829063526299, "ycoord": 27.61994087685628 }, "geometry": { "type": "Point", "coordinates": [ 85.313829063526299, 27.61994087685628 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1443, "nhouse": 28, "residents": 101, "specialfac": 0, "expstr": "RCi+HC+19s+Res", "fptarea": 81, "repvalue": 3078000, "xcoord": 85.311816924052053, "ycoord": 27.620917052832876 }, "geometry": { "type": "Point", "coordinates": [ 85.311816924052053, 27.620917052832876 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1444, "nhouse": 19, "residents": 78, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 92, "repvalue": 2024000, "xcoord": 85.317470348950309, "ycoord": 27.618539706546017 }, "geometry": { "type": "Point", "coordinates": [ 85.317470348950309, 27.618539706546017 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1445, "nhouse": 11, "residents": 45, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 94, "repvalue": 1316000, "xcoord": 85.312716093503809, "ycoord": 27.619260242161921 }, "geometry": { "type": "Point", "coordinates": [ 85.312716093503809, 27.619260242161921 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1446, "nhouse": 6, "residents": 24, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 87, "repvalue": 696000, "xcoord": 85.312998065754655, "ycoord": 27.61715118575194 }, "geometry": { "type": "Point", "coordinates": [ 85.312998065754655, 27.61715118575194 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1447, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 62, "repvalue": 248000, "xcoord": 85.315937049061603, "ycoord": 27.62085595437004 }, "geometry": { "type": "Point", "coordinates": [ 85.315937049061603, 27.62085595437004 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1448, "nhouse": 6, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 59, "repvalue": 708000, "xcoord": 85.318477227079569, "ycoord": 27.617995997621133 }, "geometry": { "type": "Point", "coordinates": [ 85.318477227079569, 27.617995997621133 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1449, "nhouse": 6, "residents": 17, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 103, "repvalue": 618000, "xcoord": 85.311854438431695, "ycoord": 27.618471474234912 }, "geometry": { "type": "Point", "coordinates": [ 85.311854438431695, 27.618471474234912 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1450, "nhouse": 10, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 68, "repvalue": 1088000, "xcoord": 85.31456934884767, "ycoord": 27.620505791469999 }, "geometry": { "type": "Point", "coordinates": [ 85.31456934884767, 27.620505791469999 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1451, "nhouse": 15, "residents": 71, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 104, "repvalue": 1664000, "xcoord": 85.3124341081989, "ycoord": 27.621369296902525 }, "geometry": { "type": "Point", "coordinates": [ 85.3124341081989, 27.621369296902525 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1452, "nhouse": 15, "residents": 61, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 104, "repvalue": 1664000, "xcoord": 85.316318254356261, "ycoord": 27.620415847980329 }, "geometry": { "type": "Point", "coordinates": [ 85.316318254356261, 27.620415847980329 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1453, "nhouse": 19, "residents": 82, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 72, "repvalue": 2016000, "xcoord": 85.317195256247402, "ycoord": 27.620204123472931 }, "geometry": { "type": "Point", "coordinates": [ 85.317195256247402, 27.620204123472931 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1454, "nhouse": 11, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 96, "repvalue": 1152000, "xcoord": 85.314075256792052, "ycoord": 27.620166236395516 }, "geometry": { "type": "Point", "coordinates": [ 85.314075256792052, 27.620166236395516 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1455, "nhouse": 20, "residents": 82, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 95, "repvalue": 2090000, "xcoord": 85.311042528825467, "ycoord": 27.622575375875311 }, "geometry": { "type": "Point", "coordinates": [ 85.311042528825467, 27.622575375875311 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1456, "nhouse": 10, "residents": 30, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 90, "repvalue": 1080000, "xcoord": 85.311731345857211, "ycoord": 27.618358792703411 }, "geometry": { "type": "Point", "coordinates": [ 85.311731345857211, 27.618358792703411 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1457, "nhouse": 9, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 107, "repvalue": 1070000, "xcoord": 85.318453448946244, "ycoord": 27.619552280436015 }, "geometry": { "type": "Point", "coordinates": [ 85.318453448946244, 27.619552280436015 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1458, "nhouse": 6, "residents": 29, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 88, "repvalue": 704000, "xcoord": 85.31294524198222, "ycoord": 27.620597230750423 }, "geometry": { "type": "Point", "coordinates": [ 85.31294524198222, 27.620597230750423 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1459, "nhouse": 3, "residents": 8, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 69, "repvalue": 414000, "xcoord": 85.31082193247606, "ycoord": 27.620682572431665 }, "geometry": { "type": "Point", "coordinates": [ 85.31082193247606, 27.620682572431665 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1460, "nhouse": 21, "residents": 85, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 88, "repvalue": 2288000, "xcoord": 85.317824354407705, "ycoord": 27.619878203471888 }, "geometry": { "type": "Point", "coordinates": [ 85.317824354407705, 27.619878203471888 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1461, "nhouse": 11, "residents": 43, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 77, "repvalue": 1232000, "xcoord": 85.311791343355551, "ycoord": 27.62258449226464 }, "geometry": { "type": "Point", "coordinates": [ 85.311791343355551, 27.62258449226464 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1462, "nhouse": 21, "residents": 91, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 80, "repvalue": 2240000, "xcoord": 85.315470175603977, "ycoord": 27.618737797970756 }, "geometry": { "type": "Point", "coordinates": [ 85.315470175603977, 27.618737797970756 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1463, "nhouse": 13, "residents": 43, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 87, "repvalue": 1392000, "xcoord": 85.318954344789034, "ycoord": 27.619447168129696 }, "geometry": { "type": "Point", "coordinates": [ 85.318954344789034, 27.619447168129696 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1464, "nhouse": 7, "residents": 22, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 64, "repvalue": 896000, "xcoord": 85.314808735765496, "ycoord": 27.621175801057664 }, "geometry": { "type": "Point", "coordinates": [ 85.314808735765496, 27.621175801057664 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1465, "nhouse": 4, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 62, "repvalue": 496000, "xcoord": 85.317735237603884, "ycoord": 27.617542266571629 }, "geometry": { "type": "Point", "coordinates": [ 85.317735237603884, 27.617542266571629 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1466, "nhouse": 18, "residents": 65, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 99, "repvalue": 1980000, "xcoord": 85.315068550018196, "ycoord": 27.62051185640458 }, "geometry": { "type": "Point", "coordinates": [ 85.315068550018196, 27.62051185640458 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1467, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 100, "repvalue": 200000, "xcoord": 85.313220399829859, "ycoord": 27.618932825256088 }, "geometry": { "type": "Point", "coordinates": [ 85.313220399829859, 27.618932825256088 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1468, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 76, "repvalue": 304000, "xcoord": 85.317246246578577, "ycoord": 27.616869233748879 }, "geometry": { "type": "Point", "coordinates": [ 85.317246246578577, 27.616869233748879 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1469, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 62, "repvalue": 372000, "xcoord": 85.316109474438136, "ycoord": 27.617744907979557 }, "geometry": { "type": "Point", "coordinates": [ 85.316109474438136, 27.617744907979557 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1470, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 56, "repvalue": 112000, "xcoord": 85.317109552419112, "ycoord": 27.617645860862471 }, "geometry": { "type": "Point", "coordinates": [ 85.317109552419112, 27.617645860862471 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1471, "nhouse": 11, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 79, "repvalue": 1264000, "xcoord": 85.314319748320941, "ycoord": 27.620502758329629 }, "geometry": { "type": "Point", "coordinates": [ 85.314319748320941, 27.620502758329629 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1472, "nhouse": 17, "residents": 72, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 87, "repvalue": 1914000, "xcoord": 85.319367785472195, "ycoord": 27.61689495328535 }, "geometry": { "type": "Point", "coordinates": [ 85.319367785472195, 27.61689495328535 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1473, "nhouse": 10, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 80, "repvalue": 1120000, "xcoord": 85.31519845589429, "ycoord": 27.620179883820253 }, "geometry": { "type": "Point", "coordinates": [ 85.31519845589429, 27.620179883820253 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1474, "nhouse": 2, "residents": 11, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 77, "repvalue": 308000, "xcoord": 85.318579946768352, "ycoord": 27.619442630243203 }, "geometry": { "type": "Point", "coordinates": [ 85.318579946768352, 27.619442630243203 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1475, "nhouse": 7, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 67, "repvalue": 804000, "xcoord": 85.312081870292317, "ycoord": 27.619919626527043 }, "geometry": { "type": "Point", "coordinates": [ 85.312081870292317, 27.619919626527043 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1476, "nhouse": 14, "residents": 58, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 80, "repvalue": 1600000, "xcoord": 85.313591388327382, "ycoord": 27.619159703077049 }, "geometry": { "type": "Point", "coordinates": [ 85.313591388327382, 27.619159703077049 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1477, "nhouse": 7, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 83, "repvalue": 830000, "xcoord": 85.319229408538988, "ycoord": 27.617782746271068 }, "geometry": { "type": "Point", "coordinates": [ 85.319229408538988, 27.617782746271068 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1478, "nhouse": 9, "residents": 47, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 66, "repvalue": 924000, "xcoord": 85.315367497073808, "ycoord": 27.617291164754544 }, "geometry": { "type": "Point", "coordinates": [ 85.315367497073808, 27.617291164754544 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1479, "nhouse": 25, "residents": 104, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 103, "repvalue": 2678000, "xcoord": 85.316314852887501, "ycoord": 27.620638173794628 }, "geometry": { "type": "Point", "coordinates": [ 85.316314852887501, 27.620638173794628 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1480, "nhouse": 11, "residents": 54, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 80, "repvalue": 1120000, "xcoord": 85.314740109597579, "ycoord": 27.617505911195433 }, "geometry": { "type": "Point", "coordinates": [ 85.314740109597579, 27.617505911195433 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1481, "nhouse": 13, "residents": 56, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 63, "repvalue": 1386000, "xcoord": 85.31238090183659, "ycoord": 27.616698944882369 }, "geometry": { "type": "Point", "coordinates": [ 85.31238090183659, 27.616698944882369 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1482, "nhouse": 8, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 76, "repvalue": 912000, "xcoord": 85.319490884694829, "ycoord": 27.617007628335859 }, "geometry": { "type": "Point", "coordinates": [ 85.319490884694829, 27.617007628335859 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1483, "nhouse": 7, "residents": 33, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 100, "repvalue": 800000, "xcoord": 85.311454461960267, "ycoord": 27.620134357068313 }, "geometry": { "type": "Point", "coordinates": [ 85.311454461960267, 27.620134357068313 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1484, "nhouse": 19, "residents": 85, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 71, "repvalue": 2130000, "xcoord": 85.313061522047192, "ycoord": 27.621154562193841 }, "geometry": { "type": "Point", "coordinates": [ 85.313061522047192, 27.621154562193841 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1485, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 62, "repvalue": 248000, "xcoord": 85.3127501771243, "ycoord": 27.617036987365452 }, "geometry": { "type": "Point", "coordinates": [ 85.3127501771243, 27.617036987365452 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1486, "nhouse": 5, "residents": 15, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 95, "repvalue": 570000, "xcoord": 85.316499169099231, "ycoord": 27.616748985548949 }, "geometry": { "type": "Point", "coordinates": [ 85.316499169099231, 27.616748985548949 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1487, "nhouse": 4, "residents": 12, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 79, "repvalue": 474000, "xcoord": 85.31731495721499, "ycoord": 27.620539126398491 }, "geometry": { "type": "Point", "coordinates": [ 85.31731495721499, 27.620539126398491 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1488, "nhouse": 36, "residents": 158, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 106, "repvalue": 3816000, "xcoord": 85.314999914345975, "ycoord": 27.616841965967048 }, "geometry": { "type": "Point", "coordinates": [ 85.314999914345975, 27.616841965967048 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1489, "nhouse": 5, "residents": 20, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 93, "repvalue": 558000, "xcoord": 85.318219138510187, "ycoord": 27.618548787025347 }, "geometry": { "type": "Point", "coordinates": [ 85.318219138510187, 27.618548787025347 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1490, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 73, "repvalue": 292000, "xcoord": 85.314817247163163, "ycoord": 27.620619986982351 }, "geometry": { "type": "Point", "coordinates": [ 85.314817247163163, 27.620619986982351 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1491, "nhouse": 6, "residents": 18, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 107, "repvalue": 642000, "xcoord": 85.31424432734606, "ycoord": 27.617277520007598 }, "geometry": { "type": "Point", "coordinates": [ 85.31424432734606, 27.617277520007598 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1492, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 102, "repvalue": 408000, "xcoord": 85.314752024115265, "ycoord": 27.616727771092808 }, "geometry": { "type": "Point", "coordinates": [ 85.314752024115265, 27.616727771092808 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1493, "nhouse": 9, "residents": 30, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 83, "repvalue": 996000, "xcoord": 85.312092099917209, "ycoord": 27.619252650448814 }, "geometry": { "type": "Point", "coordinates": [ 85.312092099917209, 27.619252650448814 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1494, "nhouse": 11, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 99, "repvalue": 1188000, "xcoord": 85.31249547164694, "ycoord": 27.617367439526806 }, "geometry": { "type": "Point", "coordinates": [ 85.31249547164694, 27.617367439526806 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1495, "nhouse": 6, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 71, "repvalue": 710000, "xcoord": 85.313227214734681, "ycoord": 27.618488174220175 }, "geometry": { "type": "Point", "coordinates": [ 85.313227214734681, 27.618488174220175 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1496, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 103, "repvalue": 412000, "xcoord": 85.318726822457236, "ycoord": 27.617999023030389 }, "geometry": { "type": "Point", "coordinates": [ 85.318726822457236, 27.617999023030389 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1497, "nhouse": 7, "residents": 34, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 105, "repvalue": 840000, "xcoord": 85.319114797209352, "ycoord": 27.617114255387609 }, "geometry": { "type": "Point", "coordinates": [ 85.319114797209352, 27.617114255387609 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1498, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 62, "repvalue": 248000, "xcoord": 85.316117978029709, "ycoord": 27.617189093256773 }, "geometry": { "type": "Point", "coordinates": [ 85.316117978029709, 27.617189093256773 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1499, "nhouse": 3, "residents": 16, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 89, "repvalue": 356000, "xcoord": 85.315935347915357, "ycoord": 27.620967117249243 }, "geometry": { "type": "Point", "coordinates": [ 85.315935347915357, 27.620967117249243 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1500, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 67, "repvalue": 268000, "xcoord": 85.311565617384147, "ycoord": 27.621025177327116 }, "geometry": { "type": "Point", "coordinates": [ 85.311565617384147, 27.621025177327116 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1501, "nhouse": 20, "residents": 83, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 101, "repvalue": 2222000, "xcoord": 85.312743360712545, "ycoord": 27.617481638384866 }, "geometry": { "type": "Point", "coordinates": [ 85.312743360712545, 27.617481638384866 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1502, "nhouse": 6, "residents": 18, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 65, "repvalue": 650000, "xcoord": 85.315191648462658, "ycoord": 27.620624535199859 }, "geometry": { "type": "Point", "coordinates": [ 85.315191648462658, 27.620624535199859 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1503, "nhouse": 11, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 105, "repvalue": 1260000, "xcoord": 85.310945026539756, "ycoord": 27.620795254808943 }, "geometry": { "type": "Point", "coordinates": [ 85.310945026539756, 27.620795254808943 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1504, "nhouse": 31, "residents": 112, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 98, "repvalue": 3332000, "xcoord": 85.311451050708953, "ycoord": 27.620356682333753 }, "geometry": { "type": "Point", "coordinates": [ 85.311451050708953, 27.620356682333753 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1505, "nhouse": 16, "residents": 64, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 108, "repvalue": 1728000, "xcoord": 85.311744987206907, "ycoord": 27.617469491211693 }, "geometry": { "type": "Point", "coordinates": [ 85.311744987206907, 27.617469491211693 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1506, "nhouse": 17, "residents": 67, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 66, "repvalue": 1848000, "xcoord": 85.318612214053019, "ycoord": 27.617330531877251 }, "geometry": { "type": "Point", "coordinates": [ 85.318612214053019, 27.617330531877251 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1507, "nhouse": 7, "residents": 29, "specialfac": 0, "expstr": "BrCri+MC+4s+Res", "fptarea": 103, "repvalue": 824000, "xcoord": 85.312811920243547, "ycoord": 27.621151526275508 }, "geometry": { "type": "Point", "coordinates": [ 85.312811920243547, 27.621151526275508 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1508, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 70, "repvalue": 140000, "xcoord": 85.314341883234903, "ycoord": 27.619057641860348 }, "geometry": { "type": "Point", "coordinates": [ 85.314341883234903, 27.619057641860348 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1509, "nhouse": 11, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 58, "repvalue": 1276000, "xcoord": 85.31848911543122, "ycoord": 27.617217856075651 }, "geometry": { "type": "Point", "coordinates": [ 85.31848911543122, 27.617217856075651 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1510, "nhouse": 2, "residents": 11, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 59, "repvalue": 236000, "xcoord": 85.311596316027831, "ycoord": 27.619024249741901 }, "geometry": { "type": "Point", "coordinates": [ 85.311596316027831, 27.619024249741901 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1511, "nhouse": 24, "residents": 90, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 77, "repvalue": 2618000, "xcoord": 85.314345288460004, "ycoord": 27.618835316221507 }, "geometry": { "type": "Point", "coordinates": [ 85.314345288460004, 27.618835316221507 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1512, "nhouse": 29, "residents": 120, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 91, "repvalue": 3094000, "xcoord": 85.311589494380513, "ycoord": 27.619468900369 }, "geometry": { "type": "Point", "coordinates": [ 85.311589494380513, 27.619468900369 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1513, "nhouse": 4, "residents": 15, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 56, "repvalue": 448000, "xcoord": 85.317849840787176, "ycoord": 27.618210758202839 }, "geometry": { "type": "Point", "coordinates": [ 85.317849840787176, 27.618210758202839 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1514, "nhouse": 3, "residents": 17, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 70, "repvalue": 420000, "xcoord": 85.314741811700785, "ycoord": 27.617394748329275 }, "geometry": { "type": "Point", "coordinates": [ 85.314741811700785, 27.617394748329275 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1515, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 62, "repvalue": 248000, "xcoord": 85.314622121577031, "ycoord": 27.61705974353859 }, "geometry": { "type": "Point", "coordinates": [ 85.314622121577031, 27.61705974353859 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1516, "nhouse": 12, "residents": 59, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 107, "repvalue": 1284000, "xcoord": 85.314972684333554, "ycoord": 27.61862057197872 }, "geometry": { "type": "Point", "coordinates": [ 85.314972684333554, 27.61862057197872 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 4067, "nhouse": 0, "residents": 0, "specialfac": 1, "expstr": "RCi+HC+7s+Edu", "fptarea": 134, "repvalue": 2814000, "xcoord": 85.312293963116716, "ycoord": 27.622368242323471 }, "geometry": { "type": "Point", "coordinates": [ 85.312293963116716, 27.622368242323471 ] } }, +{ "type": "Feature", "properties": { "zoneid": 24, "bldid": 1517, "nhouse": 10, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 81, "repvalue": 1134000, "xcoord": 85.317207667428164, "ycoord": 27.622381993683572 }, "geometry": { "type": "Point", "coordinates": [ 85.317207667428164, 27.622381993683572 ] } }, +{ "type": "Feature", "properties": { "zoneid": 24, "bldid": 1518, "nhouse": 8, "residents": 30, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 68, "repvalue": 952000, "xcoord": 85.317734043149542, "ycoord": 27.622506013254057 }, "geometry": { "type": "Point", "coordinates": [ 85.317734043149542, 27.622506013254057 ] } }, +{ "type": "Feature", "properties": { "zoneid": 24, "bldid": 1519, "nhouse": 19, "residents": 69, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 76, "repvalue": 1976000, "xcoord": 85.316934586078204, "ycoord": 27.622966851399109 }, "geometry": { "type": "Point", "coordinates": [ 85.316934586078204, 27.622966851399109 ] } }, +{ "type": "Feature", "properties": { "zoneid": 24, "bldid": 1520, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 103, "repvalue": 206000, "xcoord": 85.316679493841789, "ycoord": 27.622375584560881 }, "geometry": { "type": "Point", "coordinates": [ 85.316679493841789, 27.622375584560881 ] } }, +{ "type": "Feature", "properties": { "zoneid": 24, "bldid": 1521, "nhouse": 12, "residents": 47, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 95, "repvalue": 1330000, "xcoord": 85.316547450472456, "ycoord": 27.622373981966248 }, "geometry": { "type": "Point", "coordinates": [ 85.316547450472456, 27.622373981966248 ] } }, +{ "type": "Feature", "properties": { "zoneid": 24, "bldid": 1522, "nhouse": 20, "residents": 92, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 59, "repvalue": 2124000, "xcoord": 85.316415407114008, "ycoord": 27.622372379246023 }, "geometry": { "type": "Point", "coordinates": [ 85.316415407114008, 27.622372379246023 ] } }, +{ "type": "Feature", "properties": { "zoneid": 24, "bldid": 1523, "nhouse": 13, "residents": 60, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 67, "repvalue": 1474000, "xcoord": 85.317466359290094, "ycoord": 27.622738034808776 }, "geometry": { "type": "Point", "coordinates": [ 85.317466359290094, 27.622738034808776 ] } }, +{ "type": "Feature", "properties": { "zoneid": 24, "bldid": 1524, "nhouse": 7, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 57, "repvalue": 798000, "xcoord": 85.317198674302901, "ycoord": 27.622970055788979 }, "geometry": { "type": "Point", "coordinates": [ 85.317198674302901, 27.622970055788979 ] } }, +{ "type": "Feature", "properties": { "zoneid": 24, "bldid": 1525, "nhouse": 11, "residents": 54, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 90, "repvalue": 1260000, "xcoord": 85.316268966740878, "ycoord": 27.623311675297245 }, "geometry": { "type": "Point", "coordinates": [ 85.316268966740878, 27.623311675297245 ] } }, +{ "type": "Feature", "properties": { "zoneid": 24, "bldid": 1526, "nhouse": 26, "residents": 95, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 83, "repvalue": 2822000, "xcoord": 85.317063032576755, "ycoord": 27.623203678468336 }, "geometry": { "type": "Point", "coordinates": [ 85.317063032576755, 27.623203678468336 ] } }, +{ "type": "Feature", "properties": { "zoneid": 24, "bldid": 1527, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 74, "repvalue": 296000, "xcoord": 85.316681292998013, "ycoord": 27.622257972165382 }, "geometry": { "type": "Point", "coordinates": [ 85.316681292998013, 27.622257972165382 ] } }, +{ "type": "Feature", "properties": { "zoneid": 24, "bldid": 1528, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 65, "repvalue": 260000, "xcoord": 85.316536654460322, "ycoord": 27.623079656247302 }, "geometry": { "type": "Point", "coordinates": [ 85.316536654460322, 27.623079656247302 ] } }, +{ "type": "Feature", "properties": { "zoneid": 24, "bldid": 1529, "nhouse": 9, "residents": 43, "specialfac": 0, "expstr": "RCi+HC+9s+Res", "fptarea": 58, "repvalue": 1044000, "xcoord": 85.316406409759651, "ycoord": 27.622960441112305 }, "geometry": { "type": "Point", "coordinates": [ 85.316406409759651, 27.622960441112305 ] } }, +{ "type": "Feature", "properties": { "zoneid": 24, "bldid": 1530, "nhouse": 4, "residents": 14, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 83, "repvalue": 498000, "xcoord": 85.317054038365129, "ycoord": 27.623791740460298 }, "geometry": { "type": "Point", "coordinates": [ 85.317054038365129, 27.623791740460298 ] } }, +{ "type": "Feature", "properties": { "zoneid": 24, "bldid": 1531, "nhouse": 5, "residents": 14, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 106, "repvalue": 636000, "xcoord": 85.316925591270717, "ycoord": 27.623554913372242 }, "geometry": { "type": "Point", "coordinates": [ 85.316925591270717, 27.623554913372242 ] } }, +{ "type": "Feature", "properties": { "zoneid": 24, "bldid": 1532, "nhouse": 1, "residents": 7, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 70, "repvalue": 140000, "xcoord": 85.317739437234991, "ycoord": 27.622153175876278 }, "geometry": { "type": "Point", "coordinates": [ 85.317739437234991, 27.622153175876278 ] } }, +{ "type": "Feature", "properties": { "zoneid": 24, "bldid": 1533, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 73, "repvalue": 146000, "xcoord": 85.316945379487464, "ycoord": 27.622261176961949 }, "geometry": { "type": "Point", "coordinates": [ 85.316945379487464, 27.622261176961949 ] } }, +{ "type": "Feature", "properties": { "zoneid": 24, "bldid": 1534, "nhouse": 2, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 104, "repvalue": 208000, "xcoord": 85.316804341051977, "ycoord": 27.622847636622822 }, "geometry": { "type": "Point", "coordinates": [ 85.316804341051977, 27.622847636622822 ] } }, +{ "type": "Feature", "properties": { "zoneid": 24, "bldid": 1535, "nhouse": 4, "residents": 21, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 83, "repvalue": 498000, "xcoord": 85.317598403158641, "ycoord": 27.622739636548207 }, "geometry": { "type": "Point", "coordinates": [ 85.317598403158641, 27.622739636548207 ] } }, +{ "type": "Feature", "properties": { "zoneid": 24, "bldid": 1536, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 80, "repvalue": 320000, "xcoord": 85.317059434924801, "ycoord": 27.623438903271428 }, "geometry": { "type": "Point", "coordinates": [ 85.317059434924801, 27.623438903271428 ] } }, +{ "type": "Feature", "properties": { "zoneid": 24, "bldid": 1537, "nhouse": 6, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 60, "repvalue": 720000, "xcoord": 85.317319927167446, "ycoord": 27.623677332300431 }, "geometry": { "type": "Point", "coordinates": [ 85.317319927167446, 27.623677332300431 ] } }, +{ "type": "Feature", "properties": { "zoneid": 24, "bldid": 1538, "nhouse": 17, "residents": 64, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 97, "repvalue": 1940000, "xcoord": 85.316411808204975, "ycoord": 27.622607603998844 }, "geometry": { "type": "Point", "coordinates": [ 85.316411808204975, 27.622607603998844 ] } }, +{ "type": "Feature", "properties": { "zoneid": 24, "bldid": 1539, "nhouse": 21, "residents": 81, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 64, "repvalue": 2304000, "xcoord": 85.317468157633215, "ycoord": 27.622620422371746 }, "geometry": { "type": "Point", "coordinates": [ 85.317468157633215, 27.622620422371746 ] } }, +{ "type": "Feature", "properties": { "zoneid": 24, "bldid": 1540, "nhouse": 2, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 66, "repvalue": 264000, "xcoord": 85.316665100199501, "ycoord": 27.623316483649244 }, "geometry": { "type": "Point", "coordinates": [ 85.316665100199501, 27.623316483649244 ] } }, +{ "type": "Feature", "properties": { "zoneid": 24, "bldid": 1541, "nhouse": 5, "residents": 15, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 62, "repvalue": 620000, "xcoord": 85.317455569002561, "ycoord": 27.623443709386713 }, "geometry": { "type": "Point", "coordinates": [ 85.317455569002561, 27.623443709386713 ] } }, +{ "type": "Feature", "properties": { "zoneid": 24, "bldid": 1542, "nhouse": 2, "residents": 14, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 106, "repvalue": 212000, "xcoord": 85.3172022715857, "ycoord": 27.622734830953124 }, "geometry": { "type": "Point", "coordinates": [ 85.3172022715857, 27.622734830953124 ] } }, +{ "type": "Feature", "properties": { "zoneid": 24, "bldid": 1543, "nhouse": 4, "residents": 15, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 57, "repvalue": 456000, "xcoord": 85.317072026515874, "ycoord": 27.622615616423815 }, "geometry": { "type": "Point", "coordinates": [ 85.317072026515874, 27.622615616423815 ] } }, +{ "type": "Feature", "properties": { "zoneid": 24, "bldid": 1544, "nhouse": 20, "residents": 73, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 90, "repvalue": 3240000, "xcoord": 85.317211264601966, "ycoord": 27.622146768826696 }, "geometry": { "type": "Point", "coordinates": [ 85.317211264601966, 27.622146768826696 ] } }, +{ "type": "Feature", "properties": { "zoneid": 24, "bldid": 2130, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Com", "fptarea": 108, "repvalue": 1512000, "xcoord": 85.316279764575512, "ycoord": 27.622606001137093 }, "geometry": { "type": "Point", "coordinates": [ 85.316279764575512, 27.622606001137093 ] } }, +{ "type": "Feature", "properties": { "zoneid": 24, "bldid": 2131, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Com", "fptarea": 99, "repvalue": 1584000, "xcoord": 85.317999928134668, "ycoord": 27.62239160360005 }, "geometry": { "type": "Point", "coordinates": [ 85.317999928134668, 27.62239160360005 ] } }, +{ "type": "Feature", "properties": { "zoneid": 24, "bldid": 2144, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Com", "fptarea": 119, "repvalue": 1904000, "xcoord": 85.317321725738722, "ycoord": 27.623559719888206 }, "geometry": { "type": "Point", "coordinates": [ 85.317321725738722, 27.623559719888206 ] } }, +{ "type": "Feature", "properties": { "zoneid": 24, "bldid": 2158, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Com", "fptarea": 150, "repvalue": 2100000, "xcoord": 85.317728648966025, "ycoord": 27.622858850612911 }, "geometry": { "type": "Point", "coordinates": [ 85.317728648966025, 27.622858850612911 ] } }, +{ "type": "Feature", "properties": { "zoneid": 24, "bldid": 2163, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 130, "repvalue": 1560000, "xcoord": 85.316674096307693, "ycoord": 27.622728421734795 }, "geometry": { "type": "Point", "coordinates": [ 85.316674096307693, 27.622728421734795 ] } }, +{ "type": "Feature", "properties": { "zoneid": 24, "bldid": 2166, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 108, "repvalue": 1944000, "xcoord": 85.316542052515445, "ycoord": 27.622726819116242 }, "geometry": { "type": "Point", "coordinates": [ 85.316542052515445, 27.622726819116242 ] } }, +{ "type": "Feature", "properties": { "zoneid": 24, "bldid": 2169, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Com", "fptarea": 102, "repvalue": 1632000, "xcoord": 85.317869682543858, "ycoord": 27.622272389794041 }, "geometry": { "type": "Point", "coordinates": [ 85.317869682543858, 27.622272389794041 ] } }, +{ "type": "Feature", "properties": { "zoneid": 24, "bldid": 2193, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Com", "fptarea": 104, "repvalue": 1248000, "xcoord": 85.316401011216172, "ycoord": 27.62331327820683 }, "geometry": { "type": "Point", "coordinates": [ 85.316401011216172, 27.62331327820683 ] } }, +{ "type": "Feature", "properties": { "zoneid": 24, "bldid": 2195, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 132, "repvalue": 1584000, "xcoord": 85.316941781727976, "ycoord": 27.622496401782747 }, "geometry": { "type": "Point", "coordinates": [ 85.316941781727976, 27.622496401782747 ] } }, +{ "type": "Feature", "properties": { "zoneid": 24, "bldid": 2200, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 119, "repvalue": 1666000, "xcoord": 85.316529456900838, "ycoord": 27.62355010572595 }, "geometry": { "type": "Point", "coordinates": [ 85.316529456900838, 27.62355010572595 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2760, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 97, "repvalue": 970000, "xcoord": 85.322062000573652, "ycoord": 27.638713611375287 }, "geometry": { "type": "Point", "coordinates": [ 85.322062000573652, 27.638713611375287 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2761, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 85, "repvalue": 595000, "xcoord": 85.32473929811357, "ycoord": 27.637072848977148 }, "geometry": { "type": "Point", "coordinates": [ 85.32473929811357, 27.637072848977148 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2762, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 96, "repvalue": 768000, "xcoord": 85.321668089370974, "ycoord": 27.635559409627287 }, "geometry": { "type": "Point", "coordinates": [ 85.321668089370974, 27.635559409627287 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2763, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 98, "repvalue": 588000, "xcoord": 85.324713813746371, "ycoord": 27.63874567916189 }, "geometry": { "type": "Point", "coordinates": [ 85.324713813746371, 27.63874567916189 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2764, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 102, "repvalue": 816000, "xcoord": 85.320670684150016, "ycoord": 27.635744172785483 }, "geometry": { "type": "Point", "coordinates": [ 85.320670684150016, 27.635744172785483 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2765, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 91, "repvalue": 546000, "xcoord": 85.32163354902238, "ycoord": 27.637822647291561 }, "geometry": { "type": "Point", "coordinates": [ 85.32163354902238, 27.637822647291561 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2766, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Ind", "fptarea": 93, "repvalue": 558000, "xcoord": 85.325291751347962, "ycoord": 27.637079522916057 }, "geometry": { "type": "Point", "coordinates": [ 85.325291751347962, 27.637079522916057 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2767, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 99, "repvalue": 594000, "xcoord": 85.323752382198521, "ycoord": 27.636568821636487 }, "geometry": { "type": "Point", "coordinates": [ 85.323752382198521, 27.636568821636487 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2768, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 101, "repvalue": 808000, "xcoord": 85.321505033985986, "ycoord": 27.639002129007366 }, "geometry": { "type": "Point", "coordinates": [ 85.321505033985986, 27.639002129007366 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2769, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 92, "repvalue": 920000, "xcoord": 85.321294564656057, "ycoord": 27.638310642351367 }, "geometry": { "type": "Point", "coordinates": [ 85.321294564656057, 27.638310642351367 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2770, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 101, "repvalue": 707000, "xcoord": 85.322190509152236, "ycoord": 27.637534128816121 }, "geometry": { "type": "Point", "coordinates": [ 85.322190509152236, 27.637534128816121 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2771, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 91, "repvalue": 455000, "xcoord": 85.320218207014022, "ycoord": 27.636427630339998 }, "geometry": { "type": "Point", "coordinates": [ 85.320218207014022, 27.636427630339998 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2772, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 87, "repvalue": 783000, "xcoord": 85.322178498306982, "ycoord": 27.638321341992086 }, "geometry": { "type": "Point", "coordinates": [ 85.322178498306982, 27.638321341992086 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2773, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 96, "repvalue": 576000, "xcoord": 85.32137351103114, "ycoord": 27.640378413435087 }, "geometry": { "type": "Point", "coordinates": [ 85.32137351103114, 27.640378413435087 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2774, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 89, "repvalue": 623000, "xcoord": 85.325276765747489, "ycoord": 27.638063541000957 }, "geometry": { "type": "Point", "coordinates": [ 85.325276765747489, 27.638063541000957 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2775, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 96, "repvalue": 768000, "xcoord": 85.319477070707222, "ycoord": 27.641536475125566 }, "geometry": { "type": "Point", "coordinates": [ 85.319477070707222, 27.641536475125566 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2776, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 92, "repvalue": 920000, "xcoord": 85.320162590095535, "ycoord": 27.640068487381274 }, "geometry": { "type": "Point", "coordinates": [ 85.320162590095535, 27.640068487381274 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2777, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 91, "repvalue": 728000, "xcoord": 85.324179347426139, "ycoord": 27.637558181622246 }, "geometry": { "type": "Point", "coordinates": [ 85.324179347426139, 27.637558181622246 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2778, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 99, "repvalue": 693000, "xcoord": 85.321236647942669, "ycoord": 27.634865247912792 }, "geometry": { "type": "Point", "coordinates": [ 85.321236647942669, 27.634865247912792 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2779, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+7s+Ind", "fptarea": 100, "repvalue": 700000, "xcoord": 85.323750882328113, "ycoord": 27.636667223381192 }, "geometry": { "type": "Point", "coordinates": [ 85.323750882328113, 27.636667223381192 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2780, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 91, "repvalue": 546000, "xcoord": 85.320664673806348, "ycoord": 27.636137779179585 }, "geometry": { "type": "Point", "coordinates": [ 85.320664673806348, 27.636137779179585 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2781, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Ind", "fptarea": 91, "repvalue": 910000, "xcoord": 85.320603060756795, "ycoord": 27.640172243361061 }, "geometry": { "type": "Point", "coordinates": [ 85.320603060756795, 27.640172243361061 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2782, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 93, "repvalue": 651000, "xcoord": 85.323284916450248, "ycoord": 27.638236306928235 }, "geometry": { "type": "Point", "coordinates": [ 85.323284916450248, 27.638236306928235 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2783, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 89, "repvalue": 534000, "xcoord": 85.324828803161495, "ycoord": 27.638451808907543 }, "geometry": { "type": "Point", "coordinates": [ 85.324828803161495, 27.638451808907543 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2784, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 94, "repvalue": 658000, "xcoord": 85.3202332368231, "ycoord": 27.635443614577479 }, "geometry": { "type": "Point", "coordinates": [ 85.3202332368231, 27.635443614577479 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2785, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+9s+Ind", "fptarea": 93, "repvalue": 837000, "xcoord": 85.324836298183811, "ycoord": 27.637959800023985 }, "geometry": { "type": "Point", "coordinates": [ 85.324836298183811, 27.637959800023985 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2786, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 86, "repvalue": 774000, "xcoord": 85.324065857038349, "ycoord": 27.637753649594799 }, "geometry": { "type": "Point", "coordinates": [ 85.324065857038349, 27.637753649594799 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2787, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+5s+Ind", "fptarea": 99, "repvalue": 495000, "xcoord": 85.319372592263321, "ycoord": 27.6411415298581 }, "geometry": { "type": "Point", "coordinates": [ 85.319372592263321, 27.6411415298581 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2788, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 103, "repvalue": 515000, "xcoord": 85.323502899491771, "ycoord": 27.638435782603871 }, "geometry": { "type": "Point", "coordinates": [ 85.323502899491771, 27.638435782603871 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2789, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 88, "repvalue": 704000, "xcoord": 85.321155528385674, "ycoord": 27.640178934464227 }, "geometry": { "type": "Point", "coordinates": [ 85.321155528385674, 27.640178934464227 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2790, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 97, "repvalue": 679000, "xcoord": 85.321454620744831, "ycoord": 27.635064726441566 }, "geometry": { "type": "Point", "coordinates": [ 85.321454620744831, 27.635064726441566 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2791, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 88, "repvalue": 792000, "xcoord": 85.321426084673433, "ycoord": 27.636934357539854 }, "geometry": { "type": "Point", "coordinates": [ 85.321426084673433, 27.636934357539854 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2792, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 88, "repvalue": 528000, "xcoord": 85.320852598013317, "ycoord": 27.638305290419741 }, "geometry": { "type": "Point", "coordinates": [ 85.320852598013317, 27.638305290419741 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2793, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 100, "repvalue": 700000, "xcoord": 85.32060456366645, "ycoord": 27.640073841825103 }, "geometry": { "type": "Point", "coordinates": [ 85.32060456366645, 27.640073841825103 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2794, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 96, "repvalue": 768000, "xcoord": 85.32496627459706, "ycoord": 27.636681911608083 }, "geometry": { "type": "Point", "coordinates": [ 85.32496627459706, 27.636681911608083 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2795, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 91, "repvalue": 637000, "xcoord": 85.323959865015354, "ycoord": 27.637457108753132 }, "geometry": { "type": "Point", "coordinates": [ 85.323959865015354, 27.637457108753132 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2796, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+7s+Ind", "fptarea": 93, "repvalue": 651000, "xcoord": 85.324516817655876, "ycoord": 27.637168580562069 }, "geometry": { "type": "Point", "coordinates": [ 85.324516817655876, 27.637168580562069 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2797, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 94, "repvalue": 752000, "xcoord": 85.319705579305491, "ycoord": 27.641047146377609 }, "geometry": { "type": "Point", "coordinates": [ 85.319705579305491, 27.641047146377609 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2798, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Ind", "fptarea": 98, "repvalue": 980000, "xcoord": 85.322202519510427, "ycoord": 27.636746915545963 }, "geometry": { "type": "Point", "coordinates": [ 85.322202519510427, 27.636746915545963 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2799, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 96, "repvalue": 672000, "xcoord": 85.321700486480879, "ycoord": 27.640677631303994 }, "geometry": { "type": "Point", "coordinates": [ 85.321700486480879, 27.640677631303994 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2800, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+7s+Ind", "fptarea": 92, "repvalue": 644000, "xcoord": 85.321403554254545, "ycoord": 27.638410381715772 }, "geometry": { "type": "Point", "coordinates": [ 85.321403554254545, 27.638410381715772 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2801, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+7s+Ind", "fptarea": 103, "repvalue": 721000, "xcoord": 85.325823231631901, "ycoord": 27.638463820322073 }, "geometry": { "type": "Point", "coordinates": [ 85.325823231631901, 27.638463820322073 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2802, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 95, "repvalue": 665000, "xcoord": 85.321530567428994, "ycoord": 27.637329301638513 }, "geometry": { "type": "Point", "coordinates": [ 85.321530567428994, 27.637329301638513 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2803, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Ind", "fptarea": 93, "repvalue": 558000, "xcoord": 85.325176764789234, "ycoord": 27.637373393728474 }, "geometry": { "type": "Point", "coordinates": [ 85.325176764789234, 27.637373393728474 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2804, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 88, "repvalue": 440000, "xcoord": 85.325375269167495, "ycoord": 27.638852089986731 }, "geometry": { "type": "Point", "coordinates": [ 85.325375269167495, 27.638852089986731 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2805, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 93, "repvalue": 558000, "xcoord": 85.320407625544718, "ycoord": 27.638496740181772 }, "geometry": { "type": "Point", "coordinates": [ 85.320407625544718, 27.638496740181772 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2806, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 103, "repvalue": 618000, "xcoord": 85.321503531950242, "ycoord": 27.639100530604043 }, "geometry": { "type": "Point", "coordinates": [ 85.321503531950242, 27.639100530604043 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2807, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 99, "repvalue": 891000, "xcoord": 85.321011164881838, "ycoord": 27.635157777224233 }, "geometry": { "type": "Point", "coordinates": [ 85.321011164881838, 27.635157777224233 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2808, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 104, "repvalue": 728000, "xcoord": 85.321151021092533, "ycoord": 27.640474139146775 }, "geometry": { "type": "Point", "coordinates": [ 85.321151021092533, 27.640474139146775 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2809, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+9s+Ind", "fptarea": 88, "repvalue": 792000, "xcoord": 85.319253072669696, "ycoord": 27.64173059904552 }, "geometry": { "type": "Point", "coordinates": [ 85.319253072669696, 27.64173059904552 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2810, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 100, "repvalue": 800000, "xcoord": 85.321005155905894, "ycoord": 27.635551383720461 }, "geometry": { "type": "Point", "coordinates": [ 85.321005155905894, 27.635551383720461 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2811, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 91, "repvalue": 637000, "xcoord": 85.320622597988162, "ycoord": 27.638893023278769 }, "geometry": { "type": "Point", "coordinates": [ 85.320622597988162, 27.638893023278769 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2812, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 96, "repvalue": 672000, "xcoord": 85.320486555143972, "ycoord": 27.640564510983342 }, "geometry": { "type": "Point", "coordinates": [ 85.320486555143972, 27.640564510983342 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2813, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 99, "repvalue": 594000, "xcoord": 85.320812025814305, "ycoord": 27.640962132390005 }, "geometry": { "type": "Point", "coordinates": [ 85.320812025814305, 27.640962132390005 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2814, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 96, "repvalue": 768000, "xcoord": 85.320627106397183, "ycoord": 27.638597818609064 }, "geometry": { "type": "Point", "coordinates": [ 85.320627106397183, 27.638597818609064 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2815, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 99, "repvalue": 693000, "xcoord": 85.320666176403691, "ycoord": 27.636039377583266 }, "geometry": { "type": "Point", "coordinates": [ 85.320666176403691, 27.636039377583266 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2816, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 87, "repvalue": 522000, "xcoord": 85.32090217871631, "ycoord": 27.635058037665331 }, "geometry": { "type": "Point", "coordinates": [ 85.32090217871631, 27.635058037665331 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2817, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Ind", "fptarea": 95, "repvalue": 855000, "xcoord": 85.323265410725952, "ycoord": 27.639515528880281 }, "geometry": { "type": "Point", "coordinates": [ 85.323265410725952, 27.639515528880281 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2818, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+8s+Ind", "fptarea": 88, "repvalue": 704000, "xcoord": 85.322049988207681, "ycoord": 27.63950082436542 }, "geometry": { "type": "Point", "coordinates": [ 85.322049988207681, 27.63950082436542 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2819, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 102, "repvalue": 714000, "xcoord": 85.321124657623471, "ycoord": 27.63496231180493 }, "geometry": { "type": "Point", "coordinates": [ 85.321124657623471, 27.63496231180493 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2820, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 89, "repvalue": 534000, "xcoord": 85.320570713590584, "ycoord": 27.635054023344107 }, "geometry": { "type": "Point", "coordinates": [ 85.320570713590584, 27.635054023344107 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2821, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+7s+Ind", "fptarea": 91, "repvalue": 637000, "xcoord": 85.324200340347758, "ycoord": 27.636180556936733 }, "geometry": { "type": "Point", "coordinates": [ 85.324200340347758, 27.636180556936733 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2822, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 100, "repvalue": 700000, "xcoord": 85.320388086141634, "ycoord": 27.639775960195838 }, "geometry": { "type": "Point", "coordinates": [ 85.320388086141634, 27.639775960195838 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2823, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 95, "repvalue": 665000, "xcoord": 85.324637802040243, "ycoord": 27.63648110320381 }, "geometry": { "type": "Point", "coordinates": [ 85.324637802040243, 27.63648110320381 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2824, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 87, "repvalue": 435000, "xcoord": 85.32341941186894, "ycoord": 27.63666321565389 }, "geometry": { "type": "Point", "coordinates": [ 85.32341941186894, 27.63666321565389 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2825, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 91, "repvalue": 637000, "xcoord": 85.323652391707796, "ycoord": 27.635878673605667 }, "geometry": { "type": "Point", "coordinates": [ 85.323652391707796, 27.635878673605667 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2826, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Ind", "fptarea": 102, "repvalue": 918000, "xcoord": 85.321390035180926, "ycoord": 27.63929599606233 }, "geometry": { "type": "Point", "coordinates": [ 85.321390035180926, 27.63929599606233 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2827, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 93, "repvalue": 837000, "xcoord": 85.323481895826319, "ycoord": 27.639813406348647 }, "geometry": { "type": "Point", "coordinates": [ 85.323481895826319, 27.639813406348647 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2828, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 101, "repvalue": 808000, "xcoord": 85.324379337962469, "ycoord": 27.638938476949516 }, "geometry": { "type": "Point", "coordinates": [ 85.324379337962469, 27.638938476949516 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2829, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 92, "repvalue": 552000, "xcoord": 85.322438510126958, "ycoord": 27.635765572567038 }, "geometry": { "type": "Point", "coordinates": [ 85.322438510126958, 27.635765572567038 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2830, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 90, "repvalue": 720000, "xcoord": 85.320854100580732, "ycoord": 27.638206888844667 }, "geometry": { "type": "Point", "coordinates": [ 85.320854100580732, 27.638206888844667 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2831, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 86, "repvalue": 602000, "xcoord": 85.320306152080363, "ycoord": 27.637904992328156 }, "geometry": { "type": "Point", "coordinates": [ 85.320306152080363, 27.637904992328156 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2832, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Ind", "fptarea": 100, "repvalue": 900000, "xcoord": 85.32109461380486, "ycoord": 27.636930344220751 }, "geometry": { "type": "Point", "coordinates": [ 85.32109461380486, 27.636930344220751 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2833, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Ind", "fptarea": 101, "repvalue": 707000, "xcoord": 85.32201156692679, "ycoord": 27.634776207976575 }, "geometry": { "type": "Point", "coordinates": [ 85.32201156692679, 27.634776207976575 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2834, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 88, "repvalue": 616000, "xcoord": 85.324939295183384, "ycoord": 27.638453143861039 }, "geometry": { "type": "Point", "coordinates": [ 85.324939295183384, 27.638453143861039 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2835, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 94, "repvalue": 658000, "xcoord": 85.321863541176427, "ycoord": 27.637234912328932 }, "geometry": { "type": "Point", "coordinates": [ 85.321863541176427, 27.637234912328932 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2836, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 104, "repvalue": 936000, "xcoord": 85.322491959925983, "ycoord": 27.639506172693373 }, "geometry": { "type": "Point", "coordinates": [ 85.322491959925983, 27.639506172693373 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2837, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 100, "repvalue": 600000, "xcoord": 85.323701382339323, "ycoord": 27.639914480130724 }, "geometry": { "type": "Point", "coordinates": [ 85.323701382339323, 27.639914480130724 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2838, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 98, "repvalue": 980000, "xcoord": 85.324488331086229, "ycoord": 27.639038214030943 }, "geometry": { "type": "Point", "coordinates": [ 85.324488331086229, 27.639038214030943 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2839, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 85, "repvalue": 680000, "xcoord": 85.323383405587748, "ycoord": 27.639024856685065 }, "geometry": { "type": "Point", "coordinates": [ 85.323383405587748, 27.639024856685065 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2840, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Ind", "fptarea": 97, "repvalue": 776000, "xcoord": 85.319814569966766, "ycoord": 27.641146887010393 }, "geometry": { "type": "Point", "coordinates": [ 85.319814569966766, 27.641146887010393 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2841, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Ind", "fptarea": 95, "repvalue": 475000, "xcoord": 85.321751548851367, "ycoord": 27.637331976613346 }, "geometry": { "type": "Point", "coordinates": [ 85.321751548851367, 27.637331976613346 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2842, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 99, "repvalue": 891000, "xcoord": 85.321609518578612, "ycoord": 27.639397073033514 }, "geometry": { "type": "Point", "coordinates": [ 85.321609518578612, 27.639397073033514 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2843, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 97, "repvalue": 873000, "xcoord": 85.324497327141458, "ycoord": 27.638447803519231 }, "geometry": { "type": "Point", "coordinates": [ 85.324497327141458, 27.638447803519231 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2844, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 90, "repvalue": 540000, "xcoord": 85.321784584519563, "ycoord": 27.635167140318508 }, "geometry": { "type": "Point", "coordinates": [ 85.321784584519563, 27.635167140318508 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2845, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 102, "repvalue": 714000, "xcoord": 85.323508900265267, "ycoord": 27.638042175766653 }, "geometry": { "type": "Point", "coordinates": [ 85.323508900265267, 27.638042175766653 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2846, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 97, "repvalue": 679000, "xcoord": 85.324413823451721, "ycoord": 27.636675236460775 }, "geometry": { "type": "Point", "coordinates": [ 85.324413823451721, 27.636675236460775 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2847, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 99, "repvalue": 792000, "xcoord": 85.320790187911015, "ycoord": 27.635155101262818 }, "geometry": { "type": "Point", "coordinates": [ 85.320790187911015, 27.635155101262818 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2848, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 91, "repvalue": 546000, "xcoord": 85.323932868508422, "ycoord": 27.639228339894231 }, "geometry": { "type": "Point", "coordinates": [ 85.323932868508422, 27.639228339894231 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2849, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 85, "repvalue": 765000, "xcoord": 85.320492567253865, "ycoord": 27.640170904876502 }, "geometry": { "type": "Point", "coordinates": [ 85.320492567253865, 27.640170904876502 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2850, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 97, "repvalue": 873000, "xcoord": 85.32327291307972, "ycoord": 27.63902352046663 }, "geometry": { "type": "Point", "coordinates": [ 85.32327291307972, 27.63902352046663 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2851, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 86, "repvalue": 602000, "xcoord": 85.321508038034665, "ycoord": 27.638805325809585 }, "geometry": { "type": "Point", "coordinates": [ 85.321508038034665, 27.638805325809585 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2852, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Ind", "fptarea": 90, "repvalue": 810000, "xcoord": 85.323613391422427, "ycoord": 27.638437118613016 }, "geometry": { "type": "Point", "coordinates": [ 85.323613391422427, 27.638437118613016 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2853, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Ind", "fptarea": 85, "repvalue": 850000, "xcoord": 85.322222035303739, "ycoord": 27.63546769378102 }, "geometry": { "type": "Point", "coordinates": [ 85.322222035303739, 27.63546769378102 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2854, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 87, "repvalue": 783000, "xcoord": 85.323967363607935, "ycoord": 27.636965100018195 }, "geometry": { "type": "Point", "coordinates": [ 85.323967363607935, 27.636965100018195 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2855, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 95, "repvalue": 760000, "xcoord": 85.321810980561423, "ycoord": 27.640678968848636 }, "geometry": { "type": "Point", "coordinates": [ 85.321810980561423, 27.640678968848636 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2856, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 99, "repvalue": 594000, "xcoord": 85.322699436670263, "ycoord": 27.640394461131137 }, "geometry": { "type": "Point", "coordinates": [ 85.322699436670263, 27.640394461131137 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2857, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+7s+Ind", "fptarea": 96, "repvalue": 672000, "xcoord": 85.321127661837806, "ycoord": 27.634765508530961 }, "geometry": { "type": "Point", "coordinates": [ 85.321127661837806, 27.634765508530961 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2858, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 94, "repvalue": 564000, "xcoord": 85.325157281780392, "ycoord": 27.63865261708056 }, "geometry": { "type": "Point", "coordinates": [ 85.325157281780392, 27.63865261708056 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2859, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 92, "repvalue": 736000, "xcoord": 85.322518979953628, "ycoord": 27.637734942932589 }, "geometry": { "type": "Point", "coordinates": [ 85.322518979953628, 27.637734942932589 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2860, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 93, "repvalue": 837000, "xcoord": 85.322411491060947, "ycoord": 27.637536802757609 }, "geometry": { "type": "Point", "coordinates": [ 85.322411491060947, 27.637536802757609 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2861, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 94, "repvalue": 752000, "xcoord": 85.324395831524157, "ycoord": 27.637856057682473 }, "geometry": { "type": "Point", "coordinates": [ 85.324395831524157, 27.637856057682473 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2862, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+6s+Ind", "fptarea": 104, "repvalue": 624000, "xcoord": 85.324846790895904, "ycoord": 27.637270987525191 }, "geometry": { "type": "Point", "coordinates": [ 85.324846790895904, 27.637270987525191 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2863, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 100, "repvalue": 900000, "xcoord": 85.323616391626871, "ycoord": 27.638240315186231 }, "geometry": { "type": "Point", "coordinates": [ 85.323616391626871, 27.638240315186231 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2864, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 94, "repvalue": 752000, "xcoord": 85.324159852664906, "ycoord": 27.638837404286207 }, "geometry": { "type": "Point", "coordinates": [ 85.324159852664906, 27.638837404286207 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2865, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+10s+Ind", "fptarea": 105, "repvalue": 1050000, "xcoord": 85.323159419463067, "ycoord": 27.639218987518973 }, "geometry": { "type": "Point", "coordinates": [ 85.323159419463067, 27.639218987518973 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2866, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 91, "repvalue": 637000, "xcoord": 85.320255044502375, "ycoord": 27.641250644258054 }, "geometry": { "type": "Point", "coordinates": [ 85.320255044502375, 27.641250644258054 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2867, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 99, "repvalue": 792000, "xcoord": 85.324374839558743, "ycoord": 27.639233682173252 }, "geometry": { "type": "Point", "coordinates": [ 85.324374839558743, 27.639233682173252 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2868, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 88, "repvalue": 616000, "xcoord": 85.320501585190144, "ycoord": 27.639580495672071 }, "geometry": { "type": "Point", "coordinates": [ 85.320501585190144, 27.639580495672071 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2869, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 105, "repvalue": 630000, "xcoord": 85.321303577576046, "ycoord": 27.637720232745306 }, "geometry": { "type": "Point", "coordinates": [ 85.321303577576046, 27.637720232745306 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2870, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 94, "repvalue": 940000, "xcoord": 85.323835875215067, "ycoord": 27.638341388643621 }, "geometry": { "type": "Point", "coordinates": [ 85.323835875215067, 27.638341388643621 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2871, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 98, "repvalue": 490000, "xcoord": 85.322614461290016, "ycoord": 27.638720296342804 }, "geometry": { "type": "Point", "coordinates": [ 85.322614461290016, 27.638720296342804 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2872, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 93, "repvalue": 744000, "xcoord": 85.323495398353785, "ycoord": 27.638927791117265 }, "geometry": { "type": "Point", "coordinates": [ 85.323495398353785, 27.638927791117265 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2873, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Ind", "fptarea": 97, "repvalue": 485000, "xcoord": 85.320256547792155, "ycoord": 27.641152242755005 }, "geometry": { "type": "Point", "coordinates": [ 85.320256547792155, 27.641152242755005 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2874, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 104, "repvalue": 832000, "xcoord": 85.322083021042005, "ycoord": 27.637335988415842 }, "geometry": { "type": "Point", "coordinates": [ 85.322083021042005, 27.637335988415842 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2875, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Ind", "fptarea": 94, "repvalue": 940000, "xcoord": 85.320280599392376, "ycoord": 27.639577818505849 }, "geometry": { "type": "Point", "coordinates": [ 85.320280599392376, 27.639577818505849 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2876, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 87, "repvalue": 696000, "xcoord": 85.321072078941953, "ycoord": 27.638406368146217 }, "geometry": { "type": "Point", "coordinates": [ 85.321072078941953, 27.638406368146217 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2877, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 101, "repvalue": 606000, "xcoord": 85.324712314597562, "ycoord": 27.638844080924216 }, "geometry": { "type": "Point", "coordinates": [ 85.324712314597562, 27.638844080924216 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2878, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 99, "repvalue": 594000, "xcoord": 85.323628392140478, "ycoord": 27.637453101420242 }, "geometry": { "type": "Point", "coordinates": [ 85.323628392140478, 27.637453101420242 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2879, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 94, "repvalue": 470000, "xcoord": 85.324707817105505, "ycoord": 27.639139286202358 }, "geometry": { "type": "Point", "coordinates": [ 85.324707817105505, 27.639139286202358 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2880, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 88, "repvalue": 528000, "xcoord": 85.320745111696397, "ycoord": 27.638107149076436 }, "geometry": { "type": "Point", "coordinates": [ 85.320745111696397, 27.638107149076436 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2881, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 93, "repvalue": 930000, "xcoord": 85.320413637409715, "ycoord": 27.638103133973541 }, "geometry": { "type": "Point", "coordinates": [ 85.320413637409715, 27.638103133973541 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2882, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 86, "repvalue": 602000, "xcoord": 85.321954511666121, "ycoord": 27.638515470866739 }, "geometry": { "type": "Point", "coordinates": [ 85.321954511666121, 27.638515470866739 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2883, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+7s+Ind", "fptarea": 98, "repvalue": 686000, "xcoord": 85.320064123675536, "ycoord": 27.639279936432455 }, "geometry": { "type": "Point", "coordinates": [ 85.320064123675536, 27.639279936432455 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2884, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 102, "repvalue": 714000, "xcoord": 85.322092029357506, "ycoord": 27.636745578487769 }, "geometry": { "type": "Point", "coordinates": [ 85.322092029357506, 27.636745578487769 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2885, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 101, "repvalue": 707000, "xcoord": 85.325493253833841, "ycoord": 27.63836141550188 }, "geometry": { "type": "Point", "coordinates": [ 85.325493253833841, 27.63836141550188 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2886, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 104, "repvalue": 624000, "xcoord": 85.32482580509938, "ycoord": 27.638648612450659 }, "geometry": { "type": "Point", "coordinates": [ 85.32482580509938, 27.638648612450659 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2887, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+8s+Ind", "fptarea": 100, "repvalue": 800000, "xcoord": 85.320192654590031, "ycoord": 27.638100456798423 }, "geometry": { "type": "Point", "coordinates": [ 85.320192654590031, 27.638100456798423 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2888, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 85, "repvalue": 510000, "xcoord": 85.320905183340855, "ycoord": 27.634861234416579 }, "geometry": { "type": "Point", "coordinates": [ 85.320905183340855, 27.634861234416579 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2889, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 96, "repvalue": 864000, "xcoord": 85.322405486489259, "ycoord": 27.637930409401857 }, "geometry": { "type": "Point", "coordinates": [ 85.322405486489259, 27.637930409401857 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2890, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 98, "repvalue": 588000, "xcoord": 85.321290058093268, "ycoord": 27.638605847134521 }, "geometry": { "type": "Point", "coordinates": [ 85.321290058093268, 27.638605847134521 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2891, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Ind", "fptarea": 91, "repvalue": 728000, "xcoord": 85.323834375306575, "ycoord": 27.638439790367393 }, "geometry": { "type": "Point", "coordinates": [ 85.323834375306575, 27.638439790367393 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2892, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 101, "repvalue": 808000, "xcoord": 85.323819375803382, "ycoord": 27.639423807524114 }, "geometry": { "type": "Point", "coordinates": [ 85.323819375803382, 27.639423807524114 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2893, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 96, "repvalue": 576000, "xcoord": 85.320697022844769, "ycoord": 27.641255998617265 }, "geometry": { "type": "Point", "coordinates": [ 85.320697022844769, 27.641255998617265 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2894, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 91, "repvalue": 546000, "xcoord": 85.320751122254407, "ycoord": 27.637713542777838 }, "geometry": { "type": "Point", "coordinates": [ 85.320751122254407, 27.637713542777838 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2895, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 88, "repvalue": 440000, "xcoord": 85.320970601929645, "ycoord": 27.637814620616716 }, "geometry": { "type": "Point", "coordinates": [ 85.320970601929645, 27.637814620616716 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2896, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 94, "repvalue": 752000, "xcoord": 85.321720011367546, "ycoord": 27.639398410593799 }, "geometry": { "type": "Point", "coordinates": [ 85.321720011367546, 27.639398410593799 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2897, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 94, "repvalue": 752000, "xcoord": 85.323716383210339, "ycoord": 27.638930463103161 }, "geometry": { "type": "Point", "coordinates": [ 85.323716383210339, 27.638930463103161 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2898, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+9s+Ind", "fptarea": 93, "repvalue": 837000, "xcoord": 85.319590573327332, "ycoord": 27.641341011548004 }, "geometry": { "type": "Point", "coordinates": [ 85.319590573327332, 27.641341011548004 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2899, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 101, "repvalue": 606000, "xcoord": 85.323048926772728, "ycoord": 27.639217651113466 }, "geometry": { "type": "Point", "coordinates": [ 85.323048926772728, 27.639217651113466 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2900, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 96, "repvalue": 672000, "xcoord": 85.322402484157763, "ycoord": 27.638127212715158 }, "geometry": { "type": "Point", "coordinates": [ 85.322402484157763, 27.638127212715158 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2901, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 97, "repvalue": 679000, "xcoord": 85.321121653378682, "ycoord": 27.635159115073005 }, "geometry": { "type": "Point", "coordinates": [ 85.321121653378682, 27.635159115073005 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2902, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Ind", "fptarea": 102, "repvalue": 510000, "xcoord": 85.321305079702725, "ycoord": 27.637621831139139 }, "geometry": { "type": "Point", "coordinates": [ 85.321305079702725, 27.637621831139139 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2903, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+7s+Ind", "fptarea": 90, "repvalue": 630000, "xcoord": 85.320688714449858, "ycoord": 27.634563353461878 }, "geometry": { "type": "Point", "coordinates": [ 85.320688714449858, 27.634563353461878 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2904, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Ind", "fptarea": 89, "repvalue": 890000, "xcoord": 85.325824729762729, "ycoord": 27.638365418498335 }, "geometry": { "type": "Point", "coordinates": [ 85.325824729762729, 27.638365418498335 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2905, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 86, "repvalue": 774000, "xcoord": 85.319950624209383, "ycoord": 27.639475400585319 }, "geometry": { "type": "Point", "coordinates": [ 85.319950624209383, 27.639475400585319 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2906, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 99, "repvalue": 891000, "xcoord": 85.323953866004459, "ycoord": 27.637850715714585 }, "geometry": { "type": "Point", "coordinates": [ 85.323953866004459, 27.637850715714585 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2907, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 100, "repvalue": 900000, "xcoord": 85.324282341174325, "ycoord": 27.638051525827695 }, "geometry": { "type": "Point", "coordinates": [ 85.324282341174325, 27.638051525827695 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2908, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 103, "repvalue": 927000, "xcoord": 85.320772158247749, "ycoord": 27.636335920547253 }, "geometry": { "type": "Point", "coordinates": [ 85.320772158247749, 27.636335920547253 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2909, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Ind", "fptarea": 93, "repvalue": 558000, "xcoord": 85.320457219785624, "ycoord": 27.635249488259436 }, "geometry": { "type": "Point", "coordinates": [ 85.320457219785624, 27.635249488259436 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2910, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 88, "repvalue": 704000, "xcoord": 85.321898075932069, "ycoord": 27.634971674205591 }, "geometry": { "type": "Point", "coordinates": [ 85.321898075932069, 27.634971674205591 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2911, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 105, "repvalue": 840000, "xcoord": 85.320595546094225, "ycoord": 27.640664251018777 }, "geometry": { "type": "Point", "coordinates": [ 85.320595546094225, 27.640664251018777 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2912, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 98, "repvalue": 882000, "xcoord": 85.325182759302905, "ycoord": 27.636979786493175 }, "geometry": { "type": "Point", "coordinates": [ 85.325182759302905, 27.636979786493175 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2913, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+9s+Ind", "fptarea": 90, "repvalue": 810000, "xcoord": 85.322308506139976, "ycoord": 27.637043457520225 }, "geometry": { "type": "Point", "coordinates": [ 85.322308506139976, 27.637043457520225 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2914, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 92, "repvalue": 552000, "xcoord": 85.319928071561023, "ycoord": 27.640951423101392 }, "geometry": { "type": "Point", "coordinates": [ 85.319928071561023, 27.640951423101392 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2915, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Ind", "fptarea": 90, "repvalue": 540000, "xcoord": 85.320816534110634, "ycoord": 27.640666927779645 }, "geometry": { "type": "Point", "coordinates": [ 85.320816534110634, 27.640666927779645 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2916, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 94, "repvalue": 658000, "xcoord": 85.321890568719013, "ycoord": 27.635463682559511 }, "geometry": { "type": "Point", "coordinates": [ 85.321890568719013, 27.635463682559511 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2917, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+9s+Ind", "fptarea": 85, "repvalue": 765000, "xcoord": 85.32427184458011, "ycoord": 27.638740338049647 }, "geometry": { "type": "Point", "coordinates": [ 85.32427184458011, 27.638740338049647 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2918, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Ind", "fptarea": 99, "repvalue": 891000, "xcoord": 85.323386406278487, "ycoord": 27.638828053298184 }, "geometry": { "type": "Point", "coordinates": [ 85.323386406278487, 27.638828053298184 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2919, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 91, "repvalue": 546000, "xcoord": 85.322005561627421, "ycoord": 27.635169814696681 }, "geometry": { "type": "Point", "coordinates": [ 85.322005561627421, 27.635169814696681 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2920, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+10s+Ind", "fptarea": 100, "repvalue": 1000000, "xcoord": 85.322757971915109, "ycoord": 27.636556796129586 }, "geometry": { "type": "Point", "coordinates": [ 85.322757971915109, 27.636556796129586 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2921, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 94, "repvalue": 564000, "xcoord": 85.323940367785212, "ycoord": 27.638736331291767 }, "geometry": { "type": "Point", "coordinates": [ 85.323940367785212, 27.638736331291767 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2922, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 99, "repvalue": 891000, "xcoord": 85.320177622723776, "ycoord": 27.639084472163457 }, "geometry": { "type": "Point", "coordinates": [ 85.320177622723776, 27.639084472163457 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2923, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 97, "repvalue": 776000, "xcoord": 85.322956442701212, "ycoord": 27.638035494512561 }, "geometry": { "type": "Point", "coordinates": [ 85.322956442701212, 27.638035494512561 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2924, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 96, "repvalue": 576000, "xcoord": 85.322254458425903, "ycoord": 27.640585916535333 }, "geometry": { "type": "Point", "coordinates": [ 85.322254458425903, 27.640585916535333 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2925, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+7s+Ind", "fptarea": 96, "repvalue": 672000, "xcoord": 85.324740797125614, "ycoord": 27.636974447188329 }, "geometry": { "type": "Point", "coordinates": [ 85.324740797125614, 27.636974447188329 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2926, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 88, "repvalue": 528000, "xcoord": 85.320303145996064, "ycoord": 27.638101795429971 }, "geometry": { "type": "Point", "coordinates": [ 85.320303145996064, 27.638101795429971 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2927, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+8s+Ind", "fptarea": 87, "repvalue": 696000, "xcoord": 85.325724725173203, "ycoord": 27.637675271485637 }, "geometry": { "type": "Point", "coordinates": [ 85.325724725173203, 27.637675271485637 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2928, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 91, "repvalue": 637000, "xcoord": 85.324731802939425, "ycoord": 27.637564857899164 }, "geometry": { "type": "Point", "coordinates": [ 85.324731802939425, 27.637564857899164 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2929, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 99, "repvalue": 693000, "xcoord": 85.320891662290549, "ycoord": 27.635746848989619 }, "geometry": { "type": "Point", "coordinates": [ 85.320891662290549, 27.635746848989619 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2930, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Ind", "fptarea": 90, "repvalue": 450000, "xcoord": 85.321922976412083, "ycoord": 27.640581904709908 }, "geometry": { "type": "Point", "coordinates": [ 85.321922976412083, 27.640581904709908 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2931, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Ind", "fptarea": 103, "repvalue": 515000, "xcoord": 85.320527134520262, "ycoord": 27.637907669305058 }, "geometry": { "type": "Point", "coordinates": [ 85.320527134520262, 27.637907669305058 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2932, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 93, "repvalue": 744000, "xcoord": 85.319938596343647, "ycoord": 27.640262612635119 }, "geometry": { "type": "Point", "coordinates": [ 85.319938596343647, 27.640262612635119 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2933, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 86, "repvalue": 688000, "xcoord": 85.323864372032077, "ycoord": 27.636471755612369 }, "geometry": { "type": "Point", "coordinates": [ 85.323864372032077, 27.636471755612369 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2934, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 98, "repvalue": 686000, "xcoord": 85.322947438532537, "ycoord": 27.638625904592772 }, "geometry": { "type": "Point", "coordinates": [ 85.322947438532537, 27.638625904592772 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2935, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+8s+Ind", "fptarea": 89, "repvalue": 712000, "xcoord": 85.321415570691144, "ycoord": 27.637623168863165 }, "geometry": { "type": "Point", "coordinates": [ 85.321415570691144, 27.637623168863165 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2936, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Ind", "fptarea": 88, "repvalue": 792000, "xcoord": 85.322481451471646, "ycoord": 27.640194984138205 }, "geometry": { "type": "Point", "coordinates": [ 85.322481451471646, 27.640194984138205 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2937, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 91, "repvalue": 455000, "xcoord": 85.320271580270884, "ycoord": 27.64016822764345 }, "geometry": { "type": "Point", "coordinates": [ 85.320271580270884, 27.64016822764345 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2938, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 97, "repvalue": 970000, "xcoord": 85.32361489152845, "ycoord": 27.63833871690036 }, "geometry": { "type": "Point", "coordinates": [ 85.32361489152845, 27.63833871690036 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2939, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Ind", "fptarea": 88, "repvalue": 528000, "xcoord": 85.323423912346101, "ycoord": 27.636368010465379 }, "geometry": { "type": "Point", "coordinates": [ 85.323423912346101, 27.636368010465379 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2940, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 96, "repvalue": 864000, "xcoord": 85.322069508055023, "ycoord": 27.638221603208603 }, "geometry": { "type": "Point", "coordinates": [ 85.322069508055023, 27.638221603208603 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2941, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 105, "repvalue": 840000, "xcoord": 85.322945937811127, "ycoord": 27.638724306267655 }, "geometry": { "type": "Point", "coordinates": [ 85.322945937811127, 27.638724306267655 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2942, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+6s+Ind", "fptarea": 102, "repvalue": 612000, "xcoord": 85.321727520596767, "ycoord": 27.6389064025621 }, "geometry": { "type": "Point", "coordinates": [ 85.321727520596767, 27.6389064025621 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2943, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 97, "repvalue": 582000, "xcoord": 85.323199931965007, "ycoord": 27.636562141678951 }, "geometry": { "type": "Point", "coordinates": [ 85.323199931965007, 27.636562141678951 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2944, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 101, "repvalue": 707000, "xcoord": 85.320495573263102, "ycoord": 27.639974101814254 }, "geometry": { "type": "Point", "coordinates": [ 85.320495573263102, 27.639974101814254 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2945, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 98, "repvalue": 686000, "xcoord": 85.32120660625128, "ycoord": 27.636833280469382 }, "geometry": { "type": "Point", "coordinates": [ 85.32120660625128, 27.636833280469382 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2946, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 105, "repvalue": 1050000, "xcoord": 85.324824306056939, "ycoord": 27.638747014220016 }, "geometry": { "type": "Point", "coordinates": [ 85.324824306056939, 27.638747014220016 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2947, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+9s+Ind", "fptarea": 85, "repvalue": 765000, "xcoord": 85.321704992338155, "ycoord": 27.6403824265468 }, "geometry": { "type": "Point", "coordinates": [ 85.321704992338155, 27.6403824265468 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2948, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Ind", "fptarea": 88, "repvalue": 880000, "xcoord": 85.321260012589946, "ycoord": 27.640573878683647 }, "geometry": { "type": "Point", "coordinates": [ 85.321260012589946, 27.640573878683647 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2949, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 102, "repvalue": 612000, "xcoord": 85.320479039835178, "ycoord": 27.641056518583756 }, "geometry": { "type": "Point", "coordinates": [ 85.320479039835178, 27.641056518583756 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2950, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Ind", "fptarea": 87, "repvalue": 609000, "xcoord": 85.323713383096973, "ycoord": 27.639127266520443 }, "geometry": { "type": "Point", "coordinates": [ 85.323713383096973, 27.639127266520443 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2951, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Ind", "fptarea": 93, "repvalue": 465000, "xcoord": 85.320673689276163, "ycoord": 27.635547369579601 }, "geometry": { "type": "Point", "coordinates": [ 85.320673689276163, 27.635547369579601 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2952, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Ind", "fptarea": 92, "repvalue": 644000, "xcoord": 85.321474991824203, "ycoord": 27.640970160661322 }, "geometry": { "type": "Point", "coordinates": [ 85.321474991824203, 27.640970160661322 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2953, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 88, "repvalue": 880000, "xcoord": 85.321869547510119, "ycoord": 27.636841305754729 }, "geometry": { "type": "Point", "coordinates": [ 85.321869547510119, 27.636841305754729 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2954, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 92, "repvalue": 552000, "xcoord": 85.324624310111531, "ycoord": 27.637366719266435 }, "geometry": { "type": "Point", "coordinates": [ 85.324624310111531, 27.637366719266435 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2955, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 92, "repvalue": 644000, "xcoord": 85.321300573299837, "ycoord": 27.637917035953212 }, "geometry": { "type": "Point", "coordinates": [ 85.321300573299837, 27.637917035953212 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2956, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+5s+Ind", "fptarea": 92, "repvalue": 460000, "xcoord": 85.322555002822341, "ycoord": 27.635373302509695 }, "geometry": { "type": "Point", "coordinates": [ 85.322555002822341, 27.635373302509695 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2957, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Ind", "fptarea": 98, "repvalue": 588000, "xcoord": 85.322043981842029, "ycoord": 27.639894430825159 }, "geometry": { "type": "Point", "coordinates": [ 85.322043981842029, 27.639894430825159 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2958, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 95, "repvalue": 665000, "xcoord": 85.321293062476073, "ycoord": 27.638409043947227 }, "geometry": { "type": "Point", "coordinates": [ 85.321293062476073, 27.638409043947227 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2959, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+7s+Ind", "fptarea": 98, "repvalue": 686000, "xcoord": 85.322223536465344, "ycoord": 27.635369292096499 }, "geometry": { "type": "Point", "coordinates": [ 85.322223536465344, 27.635369292096499 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2960, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 96, "repvalue": 768000, "xcoord": 85.321760558944433, "ycoord": 27.636741566785414 }, "geometry": { "type": "Point", "coordinates": [ 85.321760558944433, 27.636741566785414 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2961, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 98, "repvalue": 882000, "xcoord": 85.322120553882485, "ycoord": 27.634875946699278 }, "geometry": { "type": "Point", "coordinates": [ 85.322120553882485, 27.634875946699278 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2962, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 90, "repvalue": 630000, "xcoord": 85.32245201873549, "ycoord": 27.63487995729291 }, "geometry": { "type": "Point", "coordinates": [ 85.32245201873549, 27.63487995729291 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2963, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 89, "repvalue": 534000, "xcoord": 85.322815934275354, "ycoord": 27.640002191281265 }, "geometry": { "type": "Point", "coordinates": [ 85.322815934275354, 27.640002191281265 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2964, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 100, "repvalue": 900000, "xcoord": 85.322599450694625, "ycoord": 27.639704312843858 }, "geometry": { "type": "Point", "coordinates": [ 85.322599450694625, 27.639704312843858 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2965, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+5s+Ind", "fptarea": 97, "repvalue": 485000, "xcoord": 85.324085351996402, "ycoord": 27.636474426792599 }, "geometry": { "type": "Point", "coordinates": [ 85.324085351996402, 27.636474426792599 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2966, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 105, "repvalue": 840000, "xcoord": 85.323705882680471, "ycoord": 27.639619275037902 }, "geometry": { "type": "Point", "coordinates": [ 85.323705882680471, 27.639619275037902 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2967, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 101, "repvalue": 707000, "xcoord": 85.32299545760111, "ycoord": 27.635477050219315 }, "geometry": { "type": "Point", "coordinates": [ 85.32299545760111, 27.635477050219315 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2968, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 97, "repvalue": 679000, "xcoord": 85.321187077518587, "ycoord": 27.638112501315412 }, "geometry": { "type": "Point", "coordinates": [ 85.321187077518587, 27.638112501315412 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2969, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 101, "repvalue": 808000, "xcoord": 85.324153854018377, "ycoord": 27.639231011209692 }, "geometry": { "type": "Point", "coordinates": [ 85.324153854018377, 27.639231011209692 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2970, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 91, "repvalue": 728000, "xcoord": 85.321733527843122, "ycoord": 27.638512796110241 }, "geometry": { "type": "Point", "coordinates": [ 85.321733527843122, 27.638512796110241 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2971, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 91, "repvalue": 546000, "xcoord": 85.321650068821953, "ycoord": 27.636740229375363 }, "geometry": { "type": "Point", "coordinates": [ 85.321650068821953, 27.636740229375363 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2972, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 89, "repvalue": 623000, "xcoord": 85.322641478444325, "ycoord": 27.636949066269953 }, "geometry": { "type": "Point", "coordinates": [ 85.322641478444325, 27.636949066269953 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2973, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 98, "repvalue": 784000, "xcoord": 85.324080853273955, "ycoord": 27.636769632076724 }, "geometry": { "type": "Point", "coordinates": [ 85.324080853273955, 27.636769632076724 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2974, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 105, "repvalue": 735000, "xcoord": 85.323722383345839, "ycoord": 27.638536856250926 }, "geometry": { "type": "Point", "coordinates": [ 85.323722383345839, 27.638536856250926 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2975, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 98, "repvalue": 588000, "xcoord": 85.32371038295318, "ycoord": 27.639324069931845 }, "geometry": { "type": "Point", "coordinates": [ 85.32371038295318, 27.639324069931845 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2976, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Ind", "fptarea": 88, "repvalue": 440000, "xcoord": 85.323041423355249, "ycoord": 27.639709659456813 }, "geometry": { "type": "Point", "coordinates": [ 85.323041423355249, 27.639709659456813 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2977, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 93, "repvalue": 837000, "xcoord": 85.322288990047596, "ycoord": 27.638322679051306 }, "geometry": { "type": "Point", "coordinates": [ 85.322288990047596, 27.638322679051306 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2978, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+5s+Ind", "fptarea": 97, "repvalue": 485000, "xcoord": 85.32166658770042, "ycoord": 27.635657811281057 }, "geometry": { "type": "Point", "coordinates": [ 85.32166658770042, 27.635657811281057 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2979, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Ind", "fptarea": 103, "repvalue": 824000, "xcoord": 85.325175266141841, "ycoord": 27.637471795533617 }, "geometry": { "type": "Point", "coordinates": [ 85.325175266141841, 27.637471795533617 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2980, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 103, "repvalue": 824000, "xcoord": 85.321058557201752, "ycoord": 27.639291982342503 }, "geometry": { "type": "Point", "coordinates": [ 85.321058557201752, 27.639291982342503 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2981, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 105, "repvalue": 945000, "xcoord": 85.320855603140515, "ycoord": 27.638108487268134 }, "geometry": { "type": "Point", "coordinates": [ 85.320855603140515, 27.638108487268134 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2982, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+8s+Ind", "fptarea": 86, "repvalue": 688000, "xcoord": 85.320707542947602, "ycoord": 27.640567187909031 }, "geometry": { "type": "Point", "coordinates": [ 85.320707542947602, 27.640567187909031 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2983, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 87, "repvalue": 609000, "xcoord": 85.321258510234827, "ycoord": 27.640672280245646 }, "geometry": { "type": "Point", "coordinates": [ 85.321258510234827, 27.640672280245646 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2984, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 93, "repvalue": 930000, "xcoord": 85.322443013064955, "ycoord": 27.635470367488903 }, "geometry": { "type": "Point", "coordinates": [ 85.322443013064955, 27.635470367488903 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2985, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 94, "repvalue": 564000, "xcoord": 85.325512732694875, "ycoord": 27.637082191875855 }, "geometry": { "type": "Point", "coordinates": [ 85.325512732694875, 27.637082191875855 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2986, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 99, "repvalue": 990000, "xcoord": 85.321842518049408, "ycoord": 27.638612535153211 }, "geometry": { "type": "Point", "coordinates": [ 85.321842518049408, 27.638612535153211 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2987, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 92, "repvalue": 736000, "xcoord": 85.321871049074517, "ycoord": 27.636742904107496 }, "geometry": { "type": "Point", "coordinates": [ 85.321871049074517, 27.636742904107496 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2988, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 92, "repvalue": 644000, "xcoord": 85.32472730574375, "ycoord": 27.637860063234715 }, "geometry": { "type": "Point", "coordinates": [ 85.32472730574375, 27.637860063234715 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2989, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 95, "repvalue": 760000, "xcoord": 85.321203601914632, "ycoord": 27.637030083692654 }, "geometry": { "type": "Point", "coordinates": [ 85.321203601914632, 27.637030083692654 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2990, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 94, "repvalue": 564000, "xcoord": 85.322331023110081, "ycoord": 27.635567432367566 }, "geometry": { "type": "Point", "coordinates": [ 85.322331023110081, 27.635567432367566 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2991, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+5s+Ind", "fptarea": 90, "repvalue": 450000, "xcoord": 85.320103207906882, "ycoord": 27.636721496398511 }, "geometry": { "type": "Point", "coordinates": [ 85.320103207906882, 27.636721496398511 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2992, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 105, "repvalue": 735000, "xcoord": 85.320140039724436, "ycoord": 27.641544509931943 }, "geometry": { "type": "Point", "coordinates": [ 85.320140039724436, 27.641544509931943 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2993, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 96, "repvalue": 864000, "xcoord": 85.322179999689283, "ycoord": 27.638222940350236 }, "geometry": { "type": "Point", "coordinates": [ 85.322179999689283, 27.638222940350236 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2994, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 87, "repvalue": 522000, "xcoord": 85.321476494004628, "ycoord": 27.640871759092622 }, "geometry": { "type": "Point", "coordinates": [ 85.321476494004628, 27.640871759092622 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2995, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 88, "repvalue": 616000, "xcoord": 85.322216030581245, "ycoord": 27.635861300504423 }, "geometry": { "type": "Point", "coordinates": [ 85.322216030581245, 27.635861300504423 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2996, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 90, "repvalue": 810000, "xcoord": 85.321043532322463, "ycoord": 27.640275997976303 }, "geometry": { "type": "Point", "coordinates": [ 85.321043532322463, 27.640275997976303 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2997, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 99, "repvalue": 594000, "xcoord": 85.324822807006896, "ycoord": 27.638845415987898 }, "geometry": { "type": "Point", "coordinates": [ 85.324822807006896, 27.638845415987898 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2998, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 105, "repvalue": 840000, "xcoord": 85.321193086496493, "ycoord": 27.63771889492774 }, "geometry": { "type": "Point", "coordinates": [ 85.321193086496493, 27.63771889492774 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 2999, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+10s+Ind", "fptarea": 104, "repvalue": 1040000, "xcoord": 85.322590443972189, "ycoord": 27.640294722673836 }, "geometry": { "type": "Point", "coordinates": [ 85.322590443972189, 27.640294722673836 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3000, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 100, "repvalue": 900000, "xcoord": 85.323740383022397, "ycoord": 27.637356035552909 }, "geometry": { "type": "Point", "coordinates": [ 85.323740383022397, 27.637356035552909 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3001, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 93, "repvalue": 651000, "xcoord": 85.320277593049013, "ycoord": 27.639774621557599 }, "geometry": { "type": "Point", "coordinates": [ 85.320277593049013, 27.639774621557599 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3002, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 88, "repvalue": 704000, "xcoord": 85.323177425704017, "ycoord": 27.638038167278111 }, "geometry": { "type": "Point", "coordinates": [ 85.323177425704017, 27.638038167278111 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3003, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+7s+Ind", "fptarea": 103, "repvalue": 721000, "xcoord": 85.321057054748081, "ycoord": 27.639390383912506 }, "geometry": { "type": "Point", "coordinates": [ 85.321057054748081, 27.639390383912506 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3004, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 96, "repvalue": 672000, "xcoord": 85.320685709476052, "ycoord": 27.634760156697197 }, "geometry": { "type": "Point", "coordinates": [ 85.320685709476052, 27.634760156697197 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3005, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 103, "repvalue": 1030000, "xcoord": 85.324615315150439, "ycoord": 27.637957129908624 }, "geometry": { "type": "Point", "coordinates": [ 85.324615315150439, 27.637957129908624 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3006, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 93, "repvalue": 651000, "xcoord": 85.319929575124249, "ycoord": 27.640853021610639 }, "geometry": { "type": "Point", "coordinates": [ 85.319929575124249, 27.640853021610639 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3007, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 95, "repvalue": 855000, "xcoord": 85.322529487076366, "ycoord": 27.637046131230161 }, "geometry": { "type": "Point", "coordinates": [ 85.322529487076366, 27.637046131230161 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3008, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+5s+Ind", "fptarea": 87, "repvalue": 435000, "xcoord": 85.321538076846451, "ycoord": 27.636837293507895 }, "geometry": { "type": "Point", "coordinates": [ 85.321538076846451, 27.636837293507895 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3009, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 98, "repvalue": 784000, "xcoord": 85.320395601449036, "ycoord": 27.639283952527563 }, "geometry": { "type": "Point", "coordinates": [ 85.320395601449036, 27.639283952527563 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3010, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 105, "repvalue": 735000, "xcoord": 85.323065433621807, "ycoord": 27.638135232628596 }, "geometry": { "type": "Point", "coordinates": [ 85.323065433621807, 27.638135232628596 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3011, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Ind", "fptarea": 105, "repvalue": 945000, "xcoord": 85.320849592855666, "ycoord": 27.63850209356545 }, "geometry": { "type": "Point", "coordinates": [ 85.320849592855666, 27.63850209356545 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3012, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Ind", "fptarea": 87, "repvalue": 435000, "xcoord": 85.322954942025447, "ycoord": 27.638133896196276 }, "geometry": { "type": "Point", "coordinates": [ 85.322954942025447, 27.638133896196276 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3013, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 100, "repvalue": 900000, "xcoord": 85.324634803887065, "ycoord": 27.636677906783589 }, "geometry": { "type": "Point", "coordinates": [ 85.324634803887065, 27.636677906783589 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3014, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 105, "repvalue": 840000, "xcoord": 85.322396479403452, "ycoord": 27.638520819324079 }, "geometry": { "type": "Point", "coordinates": [ 85.322396479403452, 27.638520819324079 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3015, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+8s+Ind", "fptarea": 103, "repvalue": 824000, "xcoord": 85.320760137862919, "ycoord": 27.637123133285773 }, "geometry": { "type": "Point", "coordinates": [ 85.320760137862919, 27.637123133285773 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3016, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 104, "repvalue": 832000, "xcoord": 85.320719565465183, "ycoord": 27.639779975582705 }, "geometry": { "type": "Point", "coordinates": [ 85.320719565465183, 27.639779975582705 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3017, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 87, "repvalue": 696000, "xcoord": 85.323302920593406, "ycoord": 27.637055486444023 }, "geometry": { "type": "Point", "coordinates": [ 85.323302920593406, 27.637055486444023 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3018, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 92, "repvalue": 920000, "xcoord": 85.323937368097305, "ycoord": 27.638933134737165 }, "geometry": { "type": "Point", "coordinates": [ 85.323937368097305, 27.638933134737165 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3019, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 105, "repvalue": 525000, "xcoord": 85.320728582033453, "ycoord": 27.639189566276137 }, "geometry": { "type": "Point", "coordinates": [ 85.320728582033453, 27.639189566276137 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3020, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 99, "repvalue": 594000, "xcoord": 85.321436598282659, "ycoord": 27.636245546144419 }, "geometry": { "type": "Point", "coordinates": [ 85.321436598282659, 27.636245546144419 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3021, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 103, "repvalue": 618000, "xcoord": 85.320710548622699, "ycoord": 27.640370384836281 }, "geometry": { "type": "Point", "coordinates": [ 85.320710548622699, 27.640370384836281 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3022, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Ind", "fptarea": 91, "repvalue": 819000, "xcoord": 85.320769153197247, "ycoord": 27.636532723740714 }, "geometry": { "type": "Point", "coordinates": [ 85.320769153197247, 27.636532723740714 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3023, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Ind", "fptarea": 86, "repvalue": 602000, "xcoord": 85.319955134533288, "ycoord": 27.639180196042346 }, "geometry": { "type": "Point", "coordinates": [ 85.319955134533288, 27.639180196042346 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3024, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 91, "repvalue": 546000, "xcoord": 85.322535490979121, "ycoord": 27.63665252451068 }, "geometry": { "type": "Point", "coordinates": [ 85.322535490979121, 27.63665252451068 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3025, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 89, "repvalue": 712000, "xcoord": 85.323526901855772, "ycoord": 27.636861355113719 }, "geometry": { "type": "Point", "coordinates": [ 85.323526901855772, 27.636861355113719 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3026, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 97, "repvalue": 776000, "xcoord": 85.325715736000816, "ycoord": 27.638265682434493 }, "geometry": { "type": "Point", "coordinates": [ 85.325715736000816, 27.638265682434493 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3027, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 100, "repvalue": 900000, "xcoord": 85.321536574978182, "ycoord": 27.636935695136955 }, "geometry": { "type": "Point", "coordinates": [ 85.321536574978182, 27.636935695136955 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3028, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 100, "repvalue": 500000, "xcoord": 85.320041572737324, "ycoord": 27.640755959076259 }, "geometry": { "type": "Point", "coordinates": [ 85.320041572737324, 27.640755959076259 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3029, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Ind", "fptarea": 97, "repvalue": 873000, "xcoord": 85.322533990014847, "ycoord": 27.636750926192754 }, "geometry": { "type": "Point", "coordinates": [ 85.322533990014847, 27.636750926192754 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3030, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 90, "repvalue": 720000, "xcoord": 85.319822088276823, "ycoord": 27.640654879584417 }, "geometry": { "type": "Point", "coordinates": [ 85.319822088276823, 27.640654879584417 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3031, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+7s+Ind", "fptarea": 89, "repvalue": 623000, "xcoord": 85.323216435468822, "ycoord": 27.635479722695766 }, "geometry": { "type": "Point", "coordinates": [ 85.323216435468822, 27.635479722695766 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3032, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+7s+Ind", "fptarea": 89, "repvalue": 623000, "xcoord": 85.32126752425134, "ycoord": 27.640081870851567 }, "geometry": { "type": "Point", "coordinates": [ 85.32126752425134, 27.640081870851567 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3033, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 87, "repvalue": 783000, "xcoord": 85.323626892102894, "ycoord": 27.637551503146142 }, "geometry": { "type": "Point", "coordinates": [ 85.323626892102894, 27.637551503146142 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3034, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 105, "repvalue": 1050000, "xcoord": 85.323944867260039, "ycoord": 27.638441126112621 }, "geometry": { "type": "Point", "coordinates": [ 85.323944867260039, 27.638441126112621 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3035, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 89, "repvalue": 623000, "xcoord": 85.321931986827195, "ycoord": 27.639991495106674 }, "geometry": { "type": "Point", "coordinates": [ 85.321931986827195, 27.639991495106674 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3036, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 89, "repvalue": 623000, "xcoord": 85.321953010063481, "ycoord": 27.638613872493032 }, "geometry": { "type": "Point", "coordinates": [ 85.321953010063481, 27.638613872493032 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3037, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 92, "repvalue": 920000, "xcoord": 85.322287488756459, "ycoord": 27.638421080697238 }, "geometry": { "type": "Point", "coordinates": [ 85.322287488756459, 27.638421080697238 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3038, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 90, "repvalue": 630000, "xcoord": 85.32065415541166, "ycoord": 27.636826590312584 }, "geometry": { "type": "Point", "coordinates": [ 85.32065415541166, 27.636826590312584 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3039, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 90, "repvalue": 720000, "xcoord": 85.324943791923289, "ycoord": 27.63815793851866 }, "geometry": { "type": "Point", "coordinates": [ 85.324943791923289, 27.63815793851866 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3040, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 104, "repvalue": 936000, "xcoord": 85.323758381604108, "ycoord": 27.636175214642954 }, "geometry": { "type": "Point", "coordinates": [ 85.323758381604108, 27.636175214642954 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3041, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 95, "repvalue": 855000, "xcoord": 85.323707382778977, "ycoord": 27.639520873337357 }, "geometry": { "type": "Point", "coordinates": [ 85.323707382778977, 27.639520873337357 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3042, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 94, "repvalue": 564000, "xcoord": 85.322869962568973, "ycoord": 27.636459730947166 }, "geometry": { "type": "Point", "coordinates": [ 85.322869962568973, 27.636459730947166 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3043, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Ind", "fptarea": 96, "repvalue": 864000, "xcoord": 85.320144549935819, "ycoord": 27.641249305448309 }, "geometry": { "type": "Point", "coordinates": [ 85.320144549935819, 27.641249305448309 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3044, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 99, "repvalue": 990000, "xcoord": 85.321707996204935, "ycoord": 27.640185623367977 }, "geometry": { "type": "Point", "coordinates": [ 85.321707996204935, 27.640185623367977 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3045, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Ind", "fptarea": 88, "repvalue": 704000, "xcoord": 85.320900676392625, "ycoord": 27.635156439287503 }, "geometry": { "type": "Point", "coordinates": [ 85.320900676392625, 27.635156439287503 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3046, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 99, "repvalue": 594000, "xcoord": 85.322154475155244, "ycoord": 27.639895768061358 }, "geometry": { "type": "Point", "coordinates": [ 85.322154475155244, 27.639895768061358 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3047, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Ind", "fptarea": 94, "repvalue": 564000, "xcoord": 85.323174424739918, "ycoord": 27.6382349706663 }, "geometry": { "type": "Point", "coordinates": [ 85.323174424739918, 27.6382349706663 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3048, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 101, "repvalue": 909000, "xcoord": 85.323374403332991, "ycoord": 27.639615266810388 }, "geometry": { "type": "Point", "coordinates": [ 85.323374403332991, 27.639615266810388 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3049, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 88, "repvalue": 616000, "xcoord": 85.319695052713243, "ycoord": 27.641735956683455 }, "geometry": { "type": "Point", "coordinates": [ 85.319695052713243, 27.641735956683455 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3050, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 100, "repvalue": 800000, "xcoord": 85.323047426104438, "ycoord": 27.63931605278508 }, "geometry": { "type": "Point", "coordinates": [ 85.323047426104438, 27.63931605278508 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3051, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 92, "repvalue": 552000, "xcoord": 85.320339216996359, "ycoord": 27.63574015781958 }, "geometry": { "type": "Point", "coordinates": [ 85.320339216996359, 27.63574015781958 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3052, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 100, "repvalue": 800000, "xcoord": 85.320546670757793, "ycoord": 27.636628448854967 }, "geometry": { "type": "Point", "coordinates": [ 85.320546670757793, 27.636628448854967 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3053, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 90, "repvalue": 540000, "xcoord": 85.321149518646251, "ycoord": 27.640572540704682 }, "geometry": { "type": "Point", "coordinates": [ 85.321149518646251, 27.640572540704682 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3054, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 88, "repvalue": 616000, "xcoord": 85.320530140179059, "ycoord": 27.637710866175077 }, "geometry": { "type": "Point", "coordinates": [ 85.320530140179059, 27.637710866175077 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3055, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 93, "repvalue": 744000, "xcoord": 85.320884150329377, "ycoord": 27.636238857034236 }, "geometry": { "type": "Point", "coordinates": [ 85.320884150329377, 27.636238857034236 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3056, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Ind", "fptarea": 99, "repvalue": 990000, "xcoord": 85.322562507035045, "ycoord": 27.63488129398154 }, "geometry": { "type": "Point", "coordinates": [ 85.322562507035045, 27.63488129398154 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3057, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 91, "repvalue": 728000, "xcoord": 85.321624537834367, "ycoord": 27.638413056988956 }, "geometry": { "type": "Point", "coordinates": [ 85.321624537834367, 27.638413056988956 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3058, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 96, "repvalue": 480000, "xcoord": 85.323001459437023, "ycoord": 27.63508344331666 }, "geometry": { "type": "Point", "coordinates": [ 85.323001459437023, 27.63508344331666 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3059, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 95, "repvalue": 570000, "xcoord": 85.325603745802539, "ycoord": 27.638362749921999 }, "geometry": { "type": "Point", "coordinates": [ 85.325603745802539, 27.638362749921999 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3060, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 94, "repvalue": 940000, "xcoord": 85.320519620239949, "ycoord": 27.638399677104225 }, "geometry": { "type": "Point", "coordinates": [ 85.320519620239949, 27.638399677104225 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3061, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 101, "repvalue": 1010000, "xcoord": 85.321787587579436, "ycoord": 27.634970336983656 }, "geometry": { "type": "Point", "coordinates": [ 85.321787587579436, 27.634970336983656 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3062, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 102, "repvalue": 918000, "xcoord": 85.325179762061268, "ycoord": 27.637176590113768 }, "geometry": { "type": "Point", "coordinates": [ 85.325179762061268, 27.637176590113768 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3063, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Ind", "fptarea": 91, "repvalue": 546000, "xcoord": 85.323813375789214, "ycoord": 27.639817414345593 }, "geometry": { "type": "Point", "coordinates": [ 85.323813375789214, 27.639817414345593 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3064, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 87, "repvalue": 696000, "xcoord": 85.321865042771265, "ycoord": 27.63713651068759 }, "geometry": { "type": "Point", "coordinates": [ 85.321865042771265, 27.63713651068759 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3065, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+9s+Ind", "fptarea": 95, "repvalue": 855000, "xcoord": 85.32196952727395, "ycoord": 27.637531454522769 }, "geometry": { "type": "Point", "coordinates": [ 85.32196952727395, 27.637531454522769 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3066, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 92, "repvalue": 552000, "xcoord": 85.324147855250231, "ycoord": 27.639624618109625 }, "geometry": { "type": "Point", "coordinates": [ 85.324147855250231, 27.639624618109625 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3067, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Ind", "fptarea": 105, "repvalue": 630000, "xcoord": 85.320325690885511, "ycoord": 27.636625772022843 }, "geometry": { "type": "Point", "coordinates": [ 85.320325690885511, 27.636625772022843 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3068, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+9s+Ind", "fptarea": 99, "repvalue": 891000, "xcoord": 85.321105129487847, "ycoord": 27.636241532942194 }, "geometry": { "type": "Point", "coordinates": [ 85.321105129487847, 27.636241532942194 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3069, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 102, "repvalue": 1020000, "xcoord": 85.32061808951056, "ycoord": 27.639188227935229 }, "geometry": { "type": "Point", "coordinates": [ 85.32061808951056, 27.639188227935229 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3070, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 97, "repvalue": 776000, "xcoord": 85.324186845069178, "ycoord": 27.637066172839098 }, "geometry": { "type": "Point", "coordinates": [ 85.324186845069178, 27.637066172839098 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3071, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 104, "repvalue": 936000, "xcoord": 85.320315170150423, "ycoord": 27.63731458298739 }, "geometry": { "type": "Point", "coordinates": [ 85.320315170150423, 27.63731458298739 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3072, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 93, "repvalue": 744000, "xcoord": 85.325273768536235, "ycoord": 27.638260344600273 }, "geometry": { "type": "Point", "coordinates": [ 85.325273768536235, 27.638260344600273 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3073, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 89, "repvalue": 534000, "xcoord": 85.321049542365557, "ycoord": 27.639882391740446 }, "geometry": { "type": "Point", "coordinates": [ 85.321049542365557, 27.639882391740446 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3074, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Ind", "fptarea": 90, "repvalue": 540000, "xcoord": 85.322414493301139, "ycoord": 27.637339999426654 }, "geometry": { "type": "Point", "coordinates": [ 85.322414493301139, 27.637339999426654 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3075, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+10s+Ind", "fptarea": 104, "repvalue": 1040000, "xcoord": 85.323596889754313, "ycoord": 27.639519537355053 }, "geometry": { "type": "Point", "coordinates": [ 85.323596889754313, 27.639519537355053 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3076, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 91, "repvalue": 546000, "xcoord": 85.322329522032007, "ycoord": 27.635665834054716 }, "geometry": { "type": "Point", "coordinates": [ 85.322329522032007, 27.635665834054716 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3077, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+10s+Ind", "fptarea": 88, "repvalue": 880000, "xcoord": 85.321226133697138, "ycoord": 27.635554059374577 }, "geometry": { "type": "Point", "coordinates": [ 85.321226133697138, 27.635554059374577 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3078, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Ind", "fptarea": 104, "repvalue": 520000, "xcoord": 85.324504823645157, "ycoord": 27.637955794718991 }, "geometry": { "type": "Point", "coordinates": [ 85.324504823645157, 27.637955794718991 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3079, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 97, "repvalue": 776000, "xcoord": 85.319704075529472, "ycoord": 27.64114554785429 }, "geometry": { "type": "Point", "coordinates": [ 85.319704075529472, 27.64114554785429 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3080, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Ind", "fptarea": 87, "repvalue": 696000, "xcoord": 85.323846374361707, "ycoord": 27.637652576536027 }, "geometry": { "type": "Point", "coordinates": [ 85.323846374361707, 27.637652576536027 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3081, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+5s+Ind", "fptarea": 101, "repvalue": 505000, "xcoord": 85.319604108063331, "ycoord": 27.640455398281517 }, "geometry": { "type": "Point", "coordinates": [ 85.319604108063331, 27.640455398281517 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3082, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 98, "repvalue": 980000, "xcoord": 85.32041063149245, "ycoord": 27.638299937080596 }, "geometry": { "type": "Point", "coordinates": [ 85.32041063149245, 27.638299937080596 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3083, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Ind", "fptarea": 90, "repvalue": 900000, "xcoord": 85.320975109198486, "ycoord": 27.637519415848324 }, "geometry": { "type": "Point", "coordinates": [ 85.320975109198486, 27.637519415848324 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3084, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 101, "repvalue": 909000, "xcoord": 85.320567708343134, "ycoord": 27.63525082655357 }, "geometry": { "type": "Point", "coordinates": [ 85.320567708343134, 27.63525082655357 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3085, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 102, "repvalue": 714000, "xcoord": 85.321414068663216, "ycoord": 27.637721570474895 }, "geometry": { "type": "Point", "coordinates": [ 85.321414068663216, 27.637721570474895 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3086, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+7s+Ind", "fptarea": 86, "repvalue": 602000, "xcoord": 85.323404409784118, "ycoord": 27.63764723285324 }, "geometry": { "type": "Point", "coordinates": [ 85.323404409784118, 27.63764723285324 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3087, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 93, "repvalue": 930000, "xcoord": 85.322552001083992, "ycoord": 27.635570105910652 }, "geometry": { "type": "Point", "coordinates": [ 85.322552001083992, 27.635570105910652 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3088, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 97, "repvalue": 873000, "xcoord": 85.322503969131517, "ycoord": 27.638718959525242 }, "geometry": { "type": "Point", "coordinates": [ 85.322503969131517, 27.638718959525242 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3089, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 102, "repvalue": 510000, "xcoord": 85.320116735863778, "ycoord": 27.635835882308736 }, "geometry": { "type": "Point", "coordinates": [ 85.320116735863778, 27.635835882308736 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3090, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 97, "repvalue": 776000, "xcoord": 85.325040794120483, "ycoord": 27.639044889404911 }, "geometry": { "type": "Point", "coordinates": [ 85.325040794120483, 27.639044889404911 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3091, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 97, "repvalue": 776000, "xcoord": 85.320813528587351, "ycoord": 27.640863730854694 }, "geometry": { "type": "Point", "coordinates": [ 85.320813528587351, 27.640863730854694 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3092, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 88, "repvalue": 616000, "xcoord": 85.320770655726292, "ycoord": 27.636434322144723 }, "geometry": { "type": "Point", "coordinates": [ 85.320770655726292, 27.636434322144723 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3093, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 89, "repvalue": 801000, "xcoord": 85.324185345555776, "ycoord": 27.637164574598675 }, "geometry": { "type": "Point", "coordinates": [ 85.324185345555776, 27.637164574598675 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3094, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+6s+Ind", "fptarea": 95, "repvalue": 570000, "xcoord": 85.322591945111625, "ycoord": 27.640196321039188 }, "geometry": { "type": "Point", "coordinates": [ 85.322591945111625, 27.640196321039188 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3095, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 95, "repvalue": 665000, "xcoord": 85.322057495993491, "ycoord": 27.639008816257626 }, "geometry": { "type": "Point", "coordinates": [ 85.322057495993491, 27.639008816257626 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3096, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 103, "repvalue": 721000, "xcoord": 85.322444514029058, "ycoord": 27.635371965793251 }, "geometry": { "type": "Point", "coordinates": [ 85.322444514029058, 27.635371965793251 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3097, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 103, "repvalue": 824000, "xcoord": 85.321645563513428, "ycoord": 27.637035434279259 }, "geometry": { "type": "Point", "coordinates": [ 85.321645563513428, 27.637035434279259 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3098, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Ind", "fptarea": 90, "repvalue": 450000, "xcoord": 85.320934541311274, "ycoord": 27.640176258286893 }, "geometry": { "type": "Point", "coordinates": [ 85.320934541311274, 27.640176258286893 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3099, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 88, "repvalue": 616000, "xcoord": 85.325939715804793, "ycoord": 27.63807154715785 }, "geometry": { "type": "Point", "coordinates": [ 85.325939715804793, 27.63807154715785 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3100, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 92, "repvalue": 920000, "xcoord": 85.322526485079351, "ycoord": 27.637242934581071 }, "geometry": { "type": "Point", "coordinates": [ 85.322526485079351, 27.637242934581071 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3101, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 99, "repvalue": 693000, "xcoord": 85.320191151437683, "ycoord": 27.638198858341557 }, "geometry": { "type": "Point", "coordinates": [ 85.320191151437683, 27.638198858341557 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3102, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Ind", "fptarea": 88, "repvalue": 528000, "xcoord": 85.323865871788527, "ycoord": 27.636373353859167 }, "geometry": { "type": "Point", "coordinates": [ 85.323865871788527, 27.636373353859167 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3103, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 96, "repvalue": 864000, "xcoord": 85.321812482422686, "ycoord": 27.640580567258805 }, "geometry": { "type": "Point", "coordinates": [ 85.321812482422686, 27.640580567258805 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3104, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 103, "repvalue": 721000, "xcoord": 85.321444107775122, "ycoord": 27.635753537960653 }, "geometry": { "type": "Point", "coordinates": [ 85.321444107775122, 27.635753537960653 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3105, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+9s+Ind", "fptarea": 92, "repvalue": 828000, "xcoord": 85.322514476786878, "ycoord": 27.638030147925846 }, "geometry": { "type": "Point", "coordinates": [ 85.322514476786878, 27.638030147925846 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3106, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 95, "repvalue": 665000, "xcoord": 85.321512544050563, "ycoord": 27.638510121001868 }, "geometry": { "type": "Point", "coordinates": [ 85.321512544050563, 27.638510121001868 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3107, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Ind", "fptarea": 86, "repvalue": 516000, "xcoord": 85.325272269919225, "ycoord": 27.638358746397728 }, "geometry": { "type": "Point", "coordinates": [ 85.325272269919225, 27.638358746397728 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3108, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Ind", "fptarea": 99, "repvalue": 990000, "xcoord": 85.319596588841776, "ycoord": 27.640947405666509 }, "geometry": { "type": "Point", "coordinates": [ 85.319596588841776, 27.640947405666509 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3109, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 88, "repvalue": 528000, "xcoord": 85.325054283656485, "ycoord": 27.638159273367528 }, "geometry": { "type": "Point", "coordinates": [ 85.325054283656485, 27.638159273367528 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3110, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 93, "repvalue": 837000, "xcoord": 85.320931536061721, "ycoord": 27.640373061387795 }, "geometry": { "type": "Point", "coordinates": [ 85.320931536061721, 27.640373061387795 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3111, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 92, "repvalue": 736000, "xcoord": 85.322048486627679, "ycoord": 27.639599225982561 }, "geometry": { "type": "Point", "coordinates": [ 85.322048486627679, 27.639599225982561 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3112, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 101, "repvalue": 606000, "xcoord": 85.319144081993514, "ycoord": 27.641630857976093 }, "geometry": { "type": "Point", "coordinates": [ 85.319144081993514, 27.641630857976093 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3113, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 96, "repvalue": 864000, "xcoord": 85.325166274097853, "ycoord": 27.638062206333583 }, "geometry": { "type": "Point", "coordinates": [ 85.325166274097853, 27.638062206333583 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3114, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Ind", "fptarea": 87, "repvalue": 522000, "xcoord": 85.320586528247745, "ycoord": 27.641254660159436 }, "geometry": { "type": "Point", "coordinates": [ 85.320586528247745, 27.641254660159436 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3115, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 89, "repvalue": 801000, "xcoord": 85.319593581099795, "ycoord": 27.641144208610207 }, "geometry": { "type": "Point", "coordinates": [ 85.319593581099795, 27.641144208610207 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3116, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 92, "repvalue": 644000, "xcoord": 85.325620226912946, "ycoord": 27.637280329885879 }, "geometry": { "type": "Point", "coordinates": [ 85.325620226912946, 27.637280329885879 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3117, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 96, "repvalue": 576000, "xcoord": 85.323399909010362, "ycoord": 27.637942437984346 }, "geometry": { "type": "Point", "coordinates": [ 85.323399909010362, 27.637942437984346 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3118, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+9s+Ind", "fptarea": 104, "repvalue": 936000, "xcoord": 85.320810523033629, "ycoord": 27.641060533923849 }, "geometry": { "type": "Point", "coordinates": [ 85.320810523033629, 27.641060533923849 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3119, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 104, "repvalue": 936000, "xcoord": 85.325064775092343, "ycoord": 27.637470460811588 }, "geometry": { "type": "Point", "coordinates": [ 85.325064775092343, 27.637470460811588 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3120, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 97, "repvalue": 582000, "xcoord": 85.3236343922148, "ycoord": 27.637059494501923 }, "geometry": { "type": "Point", "coordinates": [ 85.3236343922148, 27.637059494501923 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3121, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 86, "repvalue": 516000, "xcoord": 85.320722571018408, "ycoord": 27.639583172486407 }, "geometry": { "type": "Point", "coordinates": [ 85.320722571018408, 27.639583172486407 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3122, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 88, "repvalue": 704000, "xcoord": 85.323277414400707, "ycoord": 27.638728315400773 }, "geometry": { "type": "Point", "coordinates": [ 85.323277414400707, 27.638728315400773 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3123, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 94, "repvalue": 564000, "xcoord": 85.325042292988215, "ycoord": 27.638946487628868 }, "geometry": { "type": "Point", "coordinates": [ 85.325042292988215, 27.638946487628868 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3124, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 99, "repvalue": 693000, "xcoord": 85.32077967074072, "ycoord": 27.63584391253783 }, "geometry": { "type": "Point", "coordinates": [ 85.32077967074072, 27.63584391253783 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3125, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+5s+Ind", "fptarea": 105, "repvalue": 525000, "xcoord": 85.321569614321405, "ycoord": 27.634770858957417 }, "geometry": { "type": "Point", "coordinates": [ 85.321569614321405, 27.634770858957417 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3126, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Ind", "fptarea": 103, "repvalue": 515000, "xcoord": 85.324509321456176, "ycoord": 27.637660589421177 }, "geometry": { "type": "Point", "coordinates": [ 85.324509321456176, 27.637660589421177 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3127, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Ind", "fptarea": 98, "repvalue": 784000, "xcoord": 85.32330442088923, "ycoord": 27.636957084727438 }, "geometry": { "type": "Point", "coordinates": [ 85.32330442088923, 27.636957084727438 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3128, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 102, "repvalue": 714000, "xcoord": 85.325397746713506, "ycoord": 27.637376062897516 }, "geometry": { "type": "Point", "coordinates": [ 85.325397746713506, 27.637376062897516 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3129, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 94, "repvalue": 658000, "xcoord": 85.323486396737252, "ycoord": 27.639518201284766 }, "geometry": { "type": "Point", "coordinates": [ 85.323486396737252, 27.639518201284766 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3130, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 100, "repvalue": 900000, "xcoord": 85.32052563167943, "ycoord": 27.638006070867831 }, "geometry": { "type": "Point", "coordinates": [ 85.32052563167943, 27.638006070867831 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3131, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Ind", "fptarea": 94, "repvalue": 846000, "xcoord": 85.320642133932139, "ycoord": 27.637613802947676 }, "geometry": { "type": "Point", "coordinates": [ 85.320642133932139, 27.637613802947676 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3132, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 91, "repvalue": 728000, "xcoord": 85.324743795126892, "ycoord": 27.63677764360628 }, "geometry": { "type": "Point", "coordinates": [ 85.324743795126892, 27.63677764360628 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3133, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 98, "repvalue": 784000, "xcoord": 85.324037362096391, "ycoord": 27.639623282473657 }, "geometry": { "type": "Point", "coordinates": [ 85.324037362096391, 27.639623282473657 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3134, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Ind", "fptarea": 100, "repvalue": 1000000, "xcoord": 85.32144560965078, "ycoord": 27.635655136319489 }, "geometry": { "type": "Point", "coordinates": [ 85.32144560965078, 27.635655136319489 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3135, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 99, "repvalue": 495000, "xcoord": 85.322630972066122, "ycoord": 27.637637878021618 }, "geometry": { "type": "Point", "coordinates": [ 85.322630972066122, 27.637637878021618 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3136, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 97, "repvalue": 679000, "xcoord": 85.322172492701711, "ycoord": 27.638714948544727 }, "geometry": { "type": "Point", "coordinates": [ 85.322172492701711, 27.638714948544727 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3137, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 92, "repvalue": 644000, "xcoord": 85.324851287658547, "ycoord": 27.636975782146489 }, "geometry": { "type": "Point", "coordinates": [ 85.324851287658547, 27.636975782146489 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3138, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 104, "repvalue": 624000, "xcoord": 85.321315594376287, "ycoord": 27.63693301985478 }, "geometry": { "type": "Point", "coordinates": [ 85.321315594376287, 27.63693301985478 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3139, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 103, "repvalue": 1030000, "xcoord": 85.32461831350119, "ycoord": 27.637760326367111 }, "geometry": { "type": "Point", "coordinates": [ 85.32461831350119, 27.637760326367111 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3140, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 89, "repvalue": 890000, "xcoord": 85.324948288594797, "ycoord": 27.637862733163033 }, "geometry": { "type": "Point", "coordinates": [ 85.324948288594797, 27.637862733163033 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3141, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 95, "repvalue": 855000, "xcoord": 85.320575221404653, "ycoord": 27.634758818518865 }, "geometry": { "type": "Point", "coordinates": [ 85.320575221404653, 27.634758818518865 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3142, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 88, "repvalue": 880000, "xcoord": 85.322996958071499, "ycoord": 27.63537864849587 }, "geometry": { "type": "Point", "coordinates": [ 85.322996958071499, 27.63537864849587 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3143, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 94, "repvalue": 564000, "xcoord": 85.323867371537375, "ycoord": 27.63627495210449 }, "geometry": { "type": "Point", "coordinates": [ 85.323867371537375, 27.63627495210449 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3144, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Ind", "fptarea": 86, "repvalue": 688000, "xcoord": 85.321674095977045, "ycoord": 27.635165802997484 }, "geometry": { "type": "Point", "coordinates": [ 85.321674095977045, 27.635165802997484 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3145, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 96, "repvalue": 960000, "xcoord": 85.324401828954947, "ycoord": 27.637462450632118 }, "geometry": { "type": "Point", "coordinates": [ 85.324401828954947, 27.637462450632118 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3146, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 91, "repvalue": 637000, "xcoord": 85.321493017486745, "ycoord": 27.639789341739611 }, "geometry": { "type": "Point", "coordinates": [ 85.321493017486745, 27.639789341739611 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3147, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 101, "repvalue": 606000, "xcoord": 85.323395408168196, "ycoord": 27.638237643102205 }, "geometry": { "type": "Point", "coordinates": [ 85.323395408168196, 27.638237643102205 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3148, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 89, "repvalue": 712000, "xcoord": 85.321614024435263, "ycoord": 27.639101868235603 }, "geometry": { "type": "Point", "coordinates": [ 85.321614024435263, 27.639101868235603 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3149, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 88, "repvalue": 792000, "xcoord": 85.320340719859473, "ycoord": 27.635641756234087 }, "geometry": { "type": "Point", "coordinates": [ 85.320340719859473, 27.635641756234087 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3150, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+6s+Ind", "fptarea": 91, "repvalue": 546000, "xcoord": 85.321830504164126, "ycoord": 27.639399748066108 }, "geometry": { "type": "Point", "coordinates": [ 85.321830504164126, 27.639399748066108 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3151, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 93, "repvalue": 837000, "xcoord": 85.325830722210029, "ycoord": 27.63797181118867 }, "geometry": { "type": "Point", "coordinates": [ 85.325830722210029, 27.63797181118867 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3152, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 85, "repvalue": 425000, "xcoord": 85.324297335662862, "ycoord": 27.637067508242644 }, "geometry": { "type": "Point", "coordinates": [ 85.324297335662862, 27.637067508242644 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3153, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 91, "repvalue": 637000, "xcoord": 85.320522625974931, "ycoord": 27.638202873988973 }, "geometry": { "type": "Point", "coordinates": [ 85.320522625974931, 27.638202873988973 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3154, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 105, "repvalue": 735000, "xcoord": 85.322611459231794, "ycoord": 27.63891709965479 }, "geometry": { "type": "Point", "coordinates": [ 85.322611459231794, 27.63891709965479 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3155, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 99, "repvalue": 891000, "xcoord": 85.32126902656077, "ycoord": 27.63998346928074 }, "geometry": { "type": "Point", "coordinates": [ 85.32126902656077, 27.63998346928074 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3156, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 94, "repvalue": 752000, "xcoord": 85.320337714125628, "ycoord": 27.635838559403609 }, "geometry": { "type": "Point", "coordinates": [ 85.320337714125628, 27.635838559403609 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3157, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+7s+Ind", "fptarea": 93, "repvalue": 651000, "xcoord": 85.319365071787232, "ycoord": 27.641633537135842 }, "geometry": { "type": "Point", "coordinates": [ 85.319365071787232, 27.641633537135842 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3158, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 104, "repvalue": 728000, "xcoord": 85.324074854870943, "ycoord": 27.637163239101614 }, "geometry": { "type": "Point", "coordinates": [ 85.324074854870943, 27.637163239101614 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3159, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 87, "repvalue": 609000, "xcoord": 85.322886469247806, "ycoord": 27.635377312131258 }, "geometry": { "type": "Point", "coordinates": [ 85.322886469247806, 27.635377312131258 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3160, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 90, "repvalue": 630000, "xcoord": 85.323619391800904, "ycoord": 27.638043511753573 }, "geometry": { "type": "Point", "coordinates": [ 85.323619391800904, 27.638043511753573 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3161, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Ind", "fptarea": 98, "repvalue": 588000, "xcoord": 85.320224219029086, "ycoord": 27.636034024052655 }, "geometry": { "type": "Point", "coordinates": [ 85.320224219029086, 27.636034024052655 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3162, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 85, "repvalue": 765000, "xcoord": 85.321406558409379, "ycoord": 27.638213578511458 }, "geometry": { "type": "Point", "coordinates": [ 85.321406558409379, 27.638213578511458 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3163, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 91, "repvalue": 728000, "xcoord": 85.322343031460747, "ycoord": 27.634780218817404 }, "geometry": { "type": "Point", "coordinates": [ 85.322343031460747, 27.634780218817404 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3164, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 90, "repvalue": 630000, "xcoord": 85.321070576556835, "ycoord": 27.638504769729472 }, "geometry": { "type": "Point", "coordinates": [ 85.321070576556835, 27.638504769729472 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3165, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 93, "repvalue": 651000, "xcoord": 85.319363567669143, "ycoord": 27.641731938586975 }, "geometry": { "type": "Point", "coordinates": [ 85.319363567669143, 27.641731938586975 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3166, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 95, "repvalue": 855000, "xcoord": 85.325838212598285, "ycoord": 27.637479802018468 }, "geometry": { "type": "Point", "coordinates": [ 85.325838212598285, 27.637479802018468 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3167, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 93, "repvalue": 651000, "xcoord": 85.32098562589259, "ycoord": 27.636830604670553 }, "geometry": { "type": "Point", "coordinates": [ 85.32098562589259, 27.636830604670553 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3168, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+5s+Ind", "fptarea": 99, "repvalue": 495000, "xcoord": 85.321824497038776, "ycoord": 27.639793354487228 }, "geometry": { "type": "Point", "coordinates": [ 85.321824497038776, 27.639793354487228 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3169, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 101, "repvalue": 808000, "xcoord": 85.320578226575947, "ycoord": 27.634562015294676 }, "geometry": { "type": "Point", "coordinates": [ 85.320578226575947, 27.634562015294676 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3170, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Ind", "fptarea": 98, "repvalue": 882000, "xcoord": 85.323520901447267, "ycoord": 27.637254962021579 }, "geometry": { "type": "Point", "coordinates": [ 85.323520901447267, 27.637254962021579 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3171, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 101, "repvalue": 909000, "xcoord": 85.320216703991207, "ycoord": 27.636526031908158 }, "geometry": { "type": "Point", "coordinates": [ 85.320216703991207, 27.636526031908158 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3172, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 101, "repvalue": 707000, "xcoord": 85.321971028792873, "ycoord": 27.637433052880276 }, "geometry": { "type": "Point", "coordinates": [ 85.321971028792873, 27.637433052880276 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3173, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 95, "repvalue": 760000, "xcoord": 85.323592389139691, "ycoord": 27.639814742435604 }, "geometry": { "type": "Point", "coordinates": [ 85.323592389139691, 27.639814742435604 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3174, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 101, "repvalue": 909000, "xcoord": 85.324410824873141, "ycoord": 27.636872040012442 }, "geometry": { "type": "Point", "coordinates": [ 85.324410824873141, 27.636872040012442 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3175, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 95, "repvalue": 855000, "xcoord": 85.320301642942482, "ycoord": 27.638200196978666 }, "geometry": { "type": "Point", "coordinates": [ 85.320301642942482, 27.638200196978666 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3176, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 92, "repvalue": 828000, "xcoord": 85.321735029635676, "ycoord": 27.638414394493598 }, "geometry": { "type": "Point", "coordinates": [ 85.321735029635676, 27.638414394493598 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3177, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 100, "repvalue": 900000, "xcoord": 85.322708442845752, "ycoord": 27.639804051276624 }, "geometry": { "type": "Point", "coordinates": [ 85.322708442845752, 27.639804051276624 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3178, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 101, "repvalue": 606000, "xcoord": 85.323982360222914, "ycoord": 27.63598108243794 }, "geometry": { "type": "Point", "coordinates": [ 85.323982360222914, 27.63598108243794 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3179, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 98, "repvalue": 588000, "xcoord": 85.321218623293333, "ycoord": 27.636046067517402 }, "geometry": { "type": "Point", "coordinates": [ 85.321218623293333, 27.636046067517402 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3180, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+9s+Ind", "fptarea": 90, "repvalue": 810000, "xcoord": 85.323074436969733, "ycoord": 27.637544822470861 }, "geometry": { "type": "Point", "coordinates": [ 85.323074436969733, 27.637544822470861 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3181, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 99, "repvalue": 693000, "xcoord": 85.324288339060942, "ycoord": 27.637657918811335 }, "geometry": { "type": "Point", "coordinates": [ 85.324288339060942, 27.637657918811335 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3182, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 95, "repvalue": 760000, "xcoord": 85.324386835149966, "ycoord": 27.63844646821385 }, "geometry": { "type": "Point", "coordinates": [ 85.324386835149966, 27.63844646821385 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3183, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 87, "repvalue": 522000, "xcoord": 85.324416821999904, "ycoord": 27.636478432903218 }, "geometry": { "type": "Point", "coordinates": [ 85.324416821999904, 27.636478432903218 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3184, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 104, "repvalue": 936000, "xcoord": 85.323650891791857, "ycoord": 27.635977075355122 }, "geometry": { "type": "Point", "coordinates": [ 85.323650891791857, 27.635977075355122 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3185, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 103, "repvalue": 618000, "xcoord": 85.323072936430762, "ycoord": 27.637643224167491 }, "geometry": { "type": "Point", "coordinates": [ 85.323072936430762, 27.637643224167491 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3186, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 104, "repvalue": 832000, "xcoord": 85.324300334469356, "ycoord": 27.636870704707977 }, "geometry": { "type": "Point", "coordinates": [ 85.324300334469356, 27.636870704707977 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3187, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 91, "repvalue": 819000, "xcoord": 85.320412134454898, "ycoord": 27.638201535527802 }, "geometry": { "type": "Point", "coordinates": [ 85.320412134454898, 27.638201535527802 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3188, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+9s+Ind", "fptarea": 102, "repvalue": 918000, "xcoord": 85.320833063943965, "ycoord": 27.639584510761612 }, "geometry": { "type": "Point", "coordinates": [ 85.320833063943965, 27.639584510761612 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3189, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+5s+Ind", "fptarea": 101, "repvalue": 505000, "xcoord": 85.325072268747192, "ycoord": 27.636978451798914 }, "geometry": { "type": "Point", "coordinates": [ 85.325072268747192, 27.636978451798914 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3190, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 97, "repvalue": 873000, "xcoord": 85.321418574724149, "ycoord": 27.637426365635296 }, "geometry": { "type": "Point", "coordinates": [ 85.321418574724149, 27.637426365635296 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3191, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 90, "repvalue": 810000, "xcoord": 85.32505578245582, "ycoord": 27.63806087157824 }, "geometry": { "type": "Point", "coordinates": [ 85.32505578245582, 27.63806087157824 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3192, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 91, "repvalue": 819000, "xcoord": 85.320379067521316, "ycoord": 27.640366369349191 }, "geometry": { "type": "Point", "coordinates": [ 85.320379067521316, 27.640366369349191 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3193, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 98, "repvalue": 588000, "xcoord": 85.321825998831528, "ycoord": 27.63969495288416 }, "geometry": { "type": "Point", "coordinates": [ 85.321825998831528, 27.63969495288416 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3194, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+7s+Ind", "fptarea": 93, "repvalue": 651000, "xcoord": 85.321396043734239, "ycoord": 27.638902389700807 }, "geometry": { "type": "Point", "coordinates": [ 85.321396043734239, 27.638902389700807 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3195, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Ind", "fptarea": 96, "repvalue": 960000, "xcoord": 85.321006658161309, "ycoord": 27.635452982098613 }, "geometry": { "type": "Point", "coordinates": [ 85.321006658161309, 27.635452982098613 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3196, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Ind", "fptarea": 93, "repvalue": 465000, "xcoord": 85.325043791848344, "ycoord": 27.63884808585135 }, "geometry": { "type": "Point", "coordinates": [ 85.325043791848344, 27.63884808585135 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3197, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 94, "repvalue": 658000, "xcoord": 85.322450517809415, "ycoord": 27.634978358995927 }, "geometry": { "type": "Point", "coordinates": [ 85.322450517809415, 27.634978358995927 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3198, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 101, "repvalue": 808000, "xcoord": 85.322387472043687, "ycoord": 27.639111229193304 }, "geometry": { "type": "Point", "coordinates": [ 85.322387472043687, 27.639111229193304 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3199, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 94, "repvalue": 564000, "xcoord": 85.323274413527642, "ycoord": 27.638925118779479 }, "geometry": { "type": "Point", "coordinates": [ 85.323274413527642, 27.638925118779479 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3200, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Ind", "fptarea": 93, "repvalue": 744000, "xcoord": 85.323519401326138, "ycoord": 27.637353363744861 }, "geometry": { "type": "Point", "coordinates": [ 85.323519401326138, 27.637353363744861 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3201, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Ind", "fptarea": 97, "repvalue": 776000, "xcoord": 85.323180426637691, "ycoord": 27.637841363884018 }, "geometry": { "type": "Point", "coordinates": [ 85.323180426637691, 27.637841363884018 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3202, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 101, "repvalue": 606000, "xcoord": 85.321447111518836, "ycoord": 27.63555673467685 }, "geometry": { "type": "Point", "coordinates": [ 85.321447111518836, 27.63555673467685 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3203, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 92, "repvalue": 828000, "xcoord": 85.322077015346125, "ycoord": 27.637729595005123 }, "geometry": { "type": "Point", "coordinates": [ 85.322077015346125, 27.637729595005123 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3204, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+7s+Ind", "fptarea": 102, "repvalue": 714000, "xcoord": 85.323192430068147, "ycoord": 27.637054150248797 }, "geometry": { "type": "Point", "coordinates": [ 85.323192430068147, 27.637054150248797 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3205, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 87, "repvalue": 783000, "xcoord": 85.323366901244881, "ycoord": 27.640107275207669 }, "geometry": { "type": "Point", "coordinates": [ 85.323366901244881, 27.640107275207669 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3206, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 103, "repvalue": 618000, "xcoord": 85.320222716036753, "ycoord": 27.636132425626698 }, "geometry": { "type": "Point", "coordinates": [ 85.320222716036753, 27.636132425626698 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3207, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 101, "repvalue": 606000, "xcoord": 85.322084522446957, "ycoord": 27.637237586764844 }, "geometry": { "type": "Point", "coordinates": [ 85.322084522446957, 27.637237586764844 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3208, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 92, "repvalue": 736000, "xcoord": 85.323148915316708, "ycoord": 27.639907799228261 }, "geometry": { "type": "Point", "coordinates": [ 85.323148915316708, 27.639907799228261 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3209, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 104, "repvalue": 728000, "xcoord": 85.321400550069271, "ycoord": 27.638607184914203 }, "geometry": { "type": "Point", "coordinates": [ 85.321400550069271, 27.638607184914203 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3210, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 93, "repvalue": 837000, "xcoord": 85.324494328486779, "ycoord": 27.638644607029018 }, "geometry": { "type": "Point", "coordinates": [ 85.324494328486779, 27.638644607029018 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3211, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 101, "repvalue": 909000, "xcoord": 85.323822375764848, "ycoord": 27.639227004104544 }, "geometry": { "type": "Point", "coordinates": [ 85.323822375764848, 27.639227004104544 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3212, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 97, "repvalue": 582000, "xcoord": 85.322406987643603, "ycoord": 27.637832007743004 }, "geometry": { "type": "Point", "coordinates": [ 85.322406987643603, 27.637832007743004 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3213, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 99, "repvalue": 693000, "xcoord": 85.320552681648806, "ycoord": 27.636234842512582 }, "geometry": { "type": "Point", "coordinates": [ 85.320552681648806, 27.636234842512582 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3214, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 89, "repvalue": 712000, "xcoord": 85.321066069355794, "ycoord": 27.638799974470398 }, "geometry": { "type": "Point", "coordinates": [ 85.321066069355794, 27.638799974470398 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3215, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Ind", "fptarea": 99, "repvalue": 594000, "xcoord": 85.322086023844292, "ycoord": 27.637139185112375 }, "geometry": { "type": "Point", "coordinates": [ 85.322086023844292, 27.637139185112375 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3216, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 97, "repvalue": 776000, "xcoord": 85.323717883255625, "ycoord": 27.638832061392314 }, "geometry": { "type": "Point", "coordinates": [ 85.323717883255625, 27.638832061392314 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3217, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Ind", "fptarea": 87, "repvalue": 522000, "xcoord": 85.319947617288676, "ycoord": 27.639672203606604 }, "geometry": { "type": "Point", "coordinates": [ 85.319947617288676, 27.639672203606604 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3218, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 105, "repvalue": 1050000, "xcoord": 85.324721309376457, "ycoord": 27.638253670328172 }, "geometry": { "type": "Point", "coordinates": [ 85.324721309376457, 27.638253670328172 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3219, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 95, "repvalue": 665000, "xcoord": 85.321402052165723, "ycoord": 27.638508783315725 }, "geometry": { "type": "Point", "coordinates": [ 85.321402052165723, 27.638508783315725 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3220, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Ind", "fptarea": 97, "repvalue": 582000, "xcoord": 85.321937993618377, "ycoord": 27.639597888675077 }, "geometry": { "type": "Point", "coordinates": [ 85.321937993618377, 27.639597888675077 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3221, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 90, "repvalue": 720000, "xcoord": 85.322559505372794, "ycoord": 27.635078097397219 }, "geometry": { "type": "Point", "coordinates": [ 85.322559505372794, 27.635078097397219 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3222, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 104, "repvalue": 624000, "xcoord": 85.322561006207721, "ycoord": 27.63497969569012 }, "geometry": { "type": "Point", "coordinates": [ 85.322561006207721, 27.63497969569012 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3223, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 88, "repvalue": 792000, "xcoord": 85.321423080716556, "ycoord": 27.637131160782449 }, "geometry": { "type": "Point", "coordinates": [ 85.321423080716556, 27.637131160782449 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3224, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 98, "repvalue": 784000, "xcoord": 85.3249362973188, "ycoord": 27.638649947415264 }, "geometry": { "type": "Point", "coordinates": [ 85.3249362973188, 27.638649947415264 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3225, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Ind", "fptarea": 100, "repvalue": 700000, "xcoord": 85.320981118783678, "ycoord": 27.637125809469861 }, "geometry": { "type": "Point", "coordinates": [ 85.320981118783678, 27.637125809469861 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3226, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+7s+Ind", "fptarea": 97, "repvalue": 679000, "xcoord": 85.323371402520564, "ycoord": 27.639812070173711 }, "geometry": { "type": "Point", "coordinates": [ 85.323371402520564, 27.639812070173711 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3227, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 99, "repvalue": 594000, "xcoord": 85.320961587186332, "ycoord": 27.638405030113759 }, "geometry": { "type": "Point", "coordinates": [ 85.320961587186332, 27.638405030113759 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3228, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 105, "repvalue": 945000, "xcoord": 85.320758635280555, "ycoord": 27.637221534871458 }, "geometry": { "type": "Point", "coordinates": [ 85.320758635280555, 27.637221534871458 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3229, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Ind", "fptarea": 101, "repvalue": 1010000, "xcoord": 85.32303842193501, "ycoord": 27.639906462783841 }, "geometry": { "type": "Point", "coordinates": [ 85.32303842193501, 27.639906462783841 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3230, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 99, "repvalue": 792000, "xcoord": 85.325842706740133, "ycoord": 27.637184596498695 }, "geometry": { "type": "Point", "coordinates": [ 85.325842706740133, 27.637184596498695 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3231, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 87, "repvalue": 609000, "xcoord": 85.32101416932413, "ycoord": 27.634960973967292 }, "geometry": { "type": "Point", "coordinates": [ 85.32101416932413, 27.634960973967292 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3232, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 102, "repvalue": 714000, "xcoord": 85.320285108850257, "ycoord": 27.639282613917171 }, "geometry": { "type": "Point", "coordinates": [ 85.320285108850257, 27.639282613917171 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3233, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+9s+Ind", "fptarea": 85, "repvalue": 765000, "xcoord": 85.321859036346225, "ycoord": 27.63753011724414 }, "geometry": { "type": "Point", "coordinates": [ 85.321859036346225, 27.63753011724414 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3234, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 89, "repvalue": 712000, "xcoord": 85.321287053679995, "ycoord": 27.638802650315935 }, "geometry": { "type": "Point", "coordinates": [ 85.321287053679995, 27.638802650315935 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3235, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 86, "repvalue": 774000, "xcoord": 85.324407826264135, "ycoord": 27.637068843558218 }, "geometry": { "type": "Point", "coordinates": [ 85.324407826264135, 27.637068843558218 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3236, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 103, "repvalue": 927000, "xcoord": 85.321342630395179, "ycoord": 27.635161790506672 }, "geometry": { "type": "Point", "coordinates": [ 85.321342630395179, 27.635161790506672 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3237, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 89, "repvalue": 623000, "xcoord": 85.322629471124515, "ycoord": 27.63773627969454 }, "geometry": { "type": "Point", "coordinates": [ 85.322629471124515, 27.63773627969454 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3238, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 95, "repvalue": 760000, "xcoord": 85.324964775805327, "ycoord": 27.636780313412423 }, "geometry": { "type": "Point", "coordinates": [ 85.324964775805327, 27.636780313412423 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3239, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Ind", "fptarea": 88, "repvalue": 792000, "xcoord": 85.324082352855712, "ycoord": 27.636671230316821 }, "geometry": { "type": "Point", "coordinates": [ 85.324082352855712, 27.636671230316821 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3240, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 91, "repvalue": 546000, "xcoord": 85.324397330893262, "ycoord": 27.637757655922087 }, "geometry": { "type": "Point", "coordinates": [ 85.324397330893262, 27.637757655922087 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3241, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 90, "repvalue": 630000, "xcoord": 85.322824939675641, "ycoord": 27.639411781358056 }, "geometry": { "type": "Point", "coordinates": [ 85.322824939675641, 27.639411781358056 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3242, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+8s+Ind", "fptarea": 85, "repvalue": 680000, "xcoord": 85.325184257912326, "ycoord": 27.636881384680674 }, "geometry": { "type": "Point", "coordinates": [ 85.325184257912326, 27.636881384680674 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3243, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 89, "repvalue": 712000, "xcoord": 85.322975950793918, "ycoord": 27.63675627249031 }, "geometry": { "type": "Point", "coordinates": [ 85.322975950793918, 27.63675627249031 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3244, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Ind", "fptarea": 94, "repvalue": 470000, "xcoord": 85.324622810970354, "ycoord": 27.63746512104381 }, "geometry": { "type": "Point", "coordinates": [ 85.324622810970354, 27.63746512104381 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3245, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 103, "repvalue": 927000, "xcoord": 85.320439186476079, "ycoord": 27.636430307325774 }, "geometry": { "type": "Point", "coordinates": [ 85.320439186476079, 27.636430307325774 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3246, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 93, "repvalue": 558000, "xcoord": 85.320867623344625, "ycoord": 27.63732127460284 }, "geometry": { "type": "Point", "coordinates": [ 85.320867623344625, 27.63732127460284 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3247, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 92, "repvalue": 828000, "xcoord": 85.320837571920379, "ycoord": 27.639289306089413 }, "geometry": { "type": "Point", "coordinates": [ 85.320837571920379, 27.639289306089413 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3248, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 87, "repvalue": 609000, "xcoord": 85.321605012653421, "ycoord": 27.639692277818185 }, "geometry": { "type": "Point", "coordinates": [ 85.321605012653421, 27.639692277818185 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3249, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 88, "repvalue": 704000, "xcoord": 85.321456122567199, "ycoord": 27.634966324790099 }, "geometry": { "type": "Point", "coordinates": [ 85.321456122567199, 27.634966324790099 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3250, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+8s+Ind", "fptarea": 93, "repvalue": 744000, "xcoord": 85.322948939246317, "ycoord": 27.638527502916421 }, "geometry": { "type": "Point", "coordinates": [ 85.322948939246317, 27.638527502916421 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3251, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 91, "repvalue": 637000, "xcoord": 85.32284745197812, "ycoord": 27.637935756318203 }, "geometry": { "type": "Point", "coordinates": [ 85.32284745197812, 27.637935756318203 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3252, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 100, "repvalue": 600000, "xcoord": 85.321261514937461, "ycoord": 27.640475477120177 }, "geometry": { "type": "Point", "coordinates": [ 85.321261514937461, 27.640475477120177 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3253, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 95, "repvalue": 570000, "xcoord": 85.323407410261922, "ycoord": 27.637450429425144 }, "geometry": { "type": "Point", "coordinates": [ 85.323407410261922, 27.637450429425144 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3254, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 90, "repvalue": 540000, "xcoord": 85.323726883367627, "ycoord": 27.63824165109629 }, "geometry": { "type": "Point", "coordinates": [ 85.323726883367627, 27.63824165109629 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3255, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 97, "repvalue": 582000, "xcoord": 85.320195660871846, "ycoord": 27.637903653707752 }, "geometry": { "type": "Point", "coordinates": [ 85.320195660871846, 27.637903653707752 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3256, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 97, "repvalue": 873000, "xcoord": 85.321862039573972, "ycoord": 27.63733331396881 }, "geometry": { "type": "Point", "coordinates": [ 85.321862039573972, 27.63733331396881 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3257, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 93, "repvalue": 558000, "xcoord": 85.320382073758566, "ycoord": 27.640169566303964 }, "geometry": { "type": "Point", "coordinates": [ 85.320382073758566, 27.640169566303964 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3258, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 86, "repvalue": 516000, "xcoord": 85.322632473000112, "ycoord": 27.637539476347229 }, "geometry": { "type": "Point", "coordinates": [ 85.322632473000112, 27.637539476347229 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3259, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 86, "repvalue": 430000, "xcoord": 85.322093530716799, "ycoord": 27.636647176827942 }, "geometry": { "type": "Point", "coordinates": [ 85.322093530716799, 27.636647176827942 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3260, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 94, "repvalue": 940000, "xcoord": 85.322013068232607, "ycoord": 27.634677806292874 }, "geometry": { "type": "Point", "coordinates": [ 85.322013068232607, 27.634677806292874 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3261, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 98, "repvalue": 588000, "xcoord": 85.325169271476241, "ycoord": 27.637865402739479 }, "geometry": { "type": "Point", "coordinates": [ 85.325169271476241, 27.637865402739479 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3262, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Ind", "fptarea": 93, "repvalue": 465000, "xcoord": 85.322484453925213, "ycoord": 27.639998180875612 }, "geometry": { "type": "Point", "coordinates": [ 85.322484453925213, 27.639998180875612 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3263, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 87, "repvalue": 783000, "xcoord": 85.322863959912112, "ycoord": 27.636853337745158 }, "geometry": { "type": "Point", "coordinates": [ 85.322863959912112, 27.636853337745158 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3264, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 97, "repvalue": 679000, "xcoord": 85.31981607364402, "ycoord": 27.641048485528138 }, "geometry": { "type": "Point", "coordinates": [ 85.31981607364402, 27.641048485528138 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3265, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+10s+Ind", "fptarea": 101, "repvalue": 1010000, "xcoord": 85.321721513228624, "ycoord": 27.6393000089904 }, "geometry": { "type": "Point", "coordinates": [ 85.321721513228624, 27.6393000089904 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3266, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+10s+Ind", "fptarea": 98, "repvalue": 980000, "xcoord": 85.32182149343042, "ycoord": 27.639990157688956 }, "geometry": { "type": "Point", "coordinates": [ 85.32182149343042, 27.639990157688956 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3267, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 97, "repvalue": 679000, "xcoord": 85.323637392206322, "ycoord": 27.636862691033933 }, "geometry": { "type": "Point", "coordinates": [ 85.323637392206322, 27.636862691033933 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3268, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 92, "repvalue": 552000, "xcoord": 85.322844450436691, "ycoord": 27.638132559675991 }, "geometry": { "type": "Point", "coordinates": [ 85.322844450436691, 27.638132559675991 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3269, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 99, "repvalue": 693000, "xcoord": 85.321896574504692, "ycoord": 27.635070075879323 }, "geometry": { "type": "Point", "coordinates": [ 85.321896574504692, 27.635070075879323 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3270, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 91, "repvalue": 728000, "xcoord": 85.323090942396433, "ycoord": 27.63646240371073 }, "geometry": { "type": "Point", "coordinates": [ 85.323090942396433, 27.63646240371073 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3271, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 97, "repvalue": 776000, "xcoord": 85.325617230415759, "ycoord": 27.637477133542053 }, "geometry": { "type": "Point", "coordinates": [ 85.325617230415759, 27.637477133542053 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3272, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Ind", "fptarea": 89, "repvalue": 534000, "xcoord": 85.323625392057707, "ycoord": 27.637649904870571 }, "geometry": { "type": "Point", "coordinates": [ 85.323625392057707, 27.637649904870571 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3273, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+9s+Ind", "fptarea": 104, "repvalue": 936000, "xcoord": 85.321148016192353, "ycoord": 27.640670942261114 }, "geometry": { "type": "Point", "coordinates": [ 85.321148016192353, 27.640670942261114 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3274, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 96, "repvalue": 768000, "xcoord": 85.322399481795827, "ycoord": 27.638324016022562 }, "geometry": { "type": "Point", "coordinates": [ 85.322399481795827, 27.638324016022562 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3275, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 91, "repvalue": 910000, "xcoord": 85.321178063823297, "ycoord": 27.638702910852746 }, "geometry": { "type": "Point", "coordinates": [ 85.321178063823297, 27.638702910852746 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3276, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 104, "repvalue": 832000, "xcoord": 85.320839074563949, "ycoord": 27.63919090452907 }, "geometry": { "type": "Point", "coordinates": [ 85.320839074563949, 27.63919090452907 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3277, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 96, "repvalue": 672000, "xcoord": 85.320513608678581, "ycoord": 27.638793283317067 }, "geometry": { "type": "Point", "coordinates": [ 85.320513608678581, 27.638793283317067 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3278, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 94, "repvalue": 846000, "xcoord": 85.321215619078501, "ycoord": 27.636242870764228 }, "geometry": { "type": "Point", "coordinates": [ 85.321215619078501, 27.636242870764228 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3279, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 99, "repvalue": 594000, "xcoord": 85.324259848016354, "ycoord": 27.639527551929287 }, "geometry": { "type": "Point", "coordinates": [ 85.324259848016354, 27.639527551929287 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3280, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 92, "repvalue": 552000, "xcoord": 85.320143046539641, "ycoord": 27.641347706944327 }, "geometry": { "type": "Point", "coordinates": [ 85.320143046539641, 27.641347706944327 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3281, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 85, "repvalue": 510000, "xcoord": 85.320428666538916, "ycoord": 27.637119118349904 }, "geometry": { "type": "Point", "coordinates": [ 85.320428666538916, 27.637119118349904 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3282, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 85, "repvalue": 595000, "xcoord": 85.320672186716905, "ycoord": 27.635645771183281 }, "geometry": { "type": "Point", "coordinates": [ 85.320672186716905, 27.635645771183281 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3283, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Ind", "fptarea": 94, "repvalue": 564000, "xcoord": 85.321850026480334, "ycoord": 27.638120527034811 }, "geometry": { "type": "Point", "coordinates": [ 85.321850026480334, 27.638120527034811 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3284, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Ind", "fptarea": 92, "repvalue": 552000, "xcoord": 85.322390474527381, "ycoord": 27.638914425909451 }, "geometry": { "type": "Point", "coordinates": [ 85.322390474527381, 27.638914425909451 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3285, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+5s+Ind", "fptarea": 100, "repvalue": 500000, "xcoord": 85.321126159734447, "ycoord": 27.634863910168676 }, "geometry": { "type": "Point", "coordinates": [ 85.321126159734447, 27.634863910168676 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3286, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Ind", "fptarea": 97, "repvalue": 679000, "xcoord": 85.323929868744486, "ycoord": 27.639425143324917 }, "geometry": { "type": "Point", "coordinates": [ 85.323929868744486, 27.639425143324917 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3287, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 98, "repvalue": 490000, "xcoord": 85.320594043138868, "ycoord": 27.640762652545895 }, "geometry": { "type": "Point", "coordinates": [ 85.320594043138868, 27.640762652545895 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3288, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 87, "repvalue": 522000, "xcoord": 85.325399245155808, "ycoord": 27.637277661079796 }, "geometry": { "type": "Point", "coordinates": [ 85.325399245155808, 27.637277661079796 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3289, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 94, "repvalue": 752000, "xcoord": 85.322596448484262, "ycoord": 27.639901116126403 }, "geometry": { "type": "Point", "coordinates": [ 85.322596448484262, 27.639901116126403 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3290, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 95, "repvalue": 760000, "xcoord": 85.324161352307542, "ycoord": 27.638739002551659 }, "geometry": { "type": "Point", "coordinates": [ 85.324161352307542, 27.638739002551659 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3291, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Ind", "fptarea": 99, "repvalue": 594000, "xcoord": 85.321945501936071, "ycoord": 27.639105880602447 }, "geometry": { "type": "Point", "coordinates": [ 85.321945501936071, 27.639105880602447 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3292, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 91, "repvalue": 819000, "xcoord": 85.324083852429865, "ycoord": 27.636572828555444 }, "geometry": { "type": "Point", "coordinates": [ 85.324083852429865, 27.636572828555444 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3293, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 88, "repvalue": 704000, "xcoord": 85.320156576830882, "ycoord": 27.640462093427178 }, "geometry": { "type": "Point", "coordinates": [ 85.320156576830882, 27.640462093427178 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3294, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 103, "repvalue": 515000, "xcoord": 85.324046360795606, "ycoord": 27.639032872148267 }, "geometry": { "type": "Point", "coordinates": [ 85.324046360795606, 27.639032872148267 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3295, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 98, "repvalue": 686000, "xcoord": 85.320455717051729, "ycoord": 27.635347889856401 }, "geometry": { "type": "Point", "coordinates": [ 85.320455717051729, 27.635347889856401 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3296, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Ind", "fptarea": 91, "repvalue": 546000, "xcoord": 85.323728383359679, "ycoord": 27.638143249375137 }, "geometry": { "type": "Point", "coordinates": [ 85.323728383359679, 27.638143249375137 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3297, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 89, "repvalue": 534000, "xcoord": 85.321884562811547, "ycoord": 27.635857289216158 }, "geometry": { "type": "Point", "coordinates": [ 85.321884562811547, 27.635857289216158 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3298, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 101, "repvalue": 606000, "xcoord": 85.3198250955475, "ycoord": 27.640458076603714 }, "geometry": { "type": "Point", "coordinates": [ 85.3198250955475, 27.640458076603714 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3299, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 92, "repvalue": 552000, "xcoord": 85.31958606161146, "ycoord": 27.641636215943659 }, "geometry": { "type": "Point", "coordinates": [ 85.31958606161146, 27.641636215943659 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3300, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Ind", "fptarea": 103, "repvalue": 515000, "xcoord": 85.324258348411675, "ycoord": 27.639625953657614 }, "geometry": { "type": "Point", "coordinates": [ 85.324258348411675, 27.639625953657614 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3301, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 101, "repvalue": 808000, "xcoord": 85.322441512093235, "ycoord": 27.635568769183088 }, "geometry": { "type": "Point", "coordinates": [ 85.322441512093235, 27.635568769183088 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3302, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 91, "repvalue": 910000, "xcoord": 85.322278480849775, "ycoord": 27.639011490541925 }, "geometry": { "type": "Point", "coordinates": [ 85.322278480849775, 27.639011490541925 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3303, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 103, "repvalue": 618000, "xcoord": 85.323289417588711, "ycoord": 27.63794110182706 }, "geometry": { "type": "Point", "coordinates": [ 85.323289417588711, 27.63794110182706 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3304, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 87, "repvalue": 522000, "xcoord": 85.321611020538441, "ycoord": 27.639298671435686 }, "geometry": { "type": "Point", "coordinates": [ 85.321611020538441, 27.639298671435686 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3305, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Ind", "fptarea": 103, "repvalue": 618000, "xcoord": 85.319483086677749, "ycoord": 27.641142869278141 }, "geometry": { "type": "Point", "coordinates": [ 85.319483086677749, 27.641142869278141 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3306, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 100, "repvalue": 1000000, "xcoord": 85.322204020770968, "ycoord": 27.636648513880566 }, "geometry": { "type": "Point", "coordinates": [ 85.322204020770968, 27.636648513880566 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3307, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 100, "repvalue": 800000, "xcoord": 85.321841016340386, "ycoord": 27.63871093677248 }, "geometry": { "type": "Point", "coordinates": [ 85.321841016340386, 27.63871093677248 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3308, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Ind", "fptarea": 103, "repvalue": 721000, "xcoord": 85.325391752868342, "ycoord": 27.637769670153688 }, "geometry": { "type": "Point", "coordinates": [ 85.325391752868342, 27.637769670153688 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3309, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 102, "repvalue": 612000, "xcoord": 85.32106306451702, "ycoord": 27.638996777623657 }, "geometry": { "type": "Point", "coordinates": [ 85.32106306451702, 27.638996777623657 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3310, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+5s+Ind", "fptarea": 97, "repvalue": 485000, "xcoord": 85.321892070176844, "ycoord": 27.635365280891676 }, "geometry": { "type": "Point", "coordinates": [ 85.321892070176844, 27.635365280891676 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3311, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 85, "repvalue": 510000, "xcoord": 85.320176119495244, "ycoord": 27.639182873691862 }, "geometry": { "type": "Point", "coordinates": [ 85.320176119495244, 27.639182873691862 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3312, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 85, "repvalue": 595000, "xcoord": 85.321109636094903, "ycoord": 27.63594632808644 }, "geometry": { "type": "Point", "coordinates": [ 85.321109636094903, 27.63594632808644 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3313, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 101, "repvalue": 909000, "xcoord": 85.323166922196577, "ycoord": 27.638726979111038 }, "geometry": { "type": "Point", "coordinates": [ 85.323166922196577, 27.638726979111038 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3314, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+10s+Ind", "fptarea": 90, "repvalue": 900000, "xcoord": 85.323413411126268, "ycoord": 27.63705682255129 }, "geometry": { "type": "Point", "coordinates": [ 85.323413411126268, 27.63705682255129 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3315, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 98, "repvalue": 784000, "xcoord": 85.321757555610517, "ycoord": 27.636938370067273 }, "geometry": { "type": "Point", "coordinates": [ 85.321757555610517, 27.636938370067273 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3316, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 99, "repvalue": 792000, "xcoord": 85.322148469062881, "ycoord": 27.640289374519796 }, "geometry": { "type": "Point", "coordinates": [ 85.322148469062881, 27.640289374519796 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3317, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 88, "repvalue": 616000, "xcoord": 85.32060155783951, "ycoord": 27.640270644895551 }, "geometry": { "type": "Point", "coordinates": [ 85.32060155783951, 27.640270644895551 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3318, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 99, "repvalue": 990000, "xcoord": 85.320261057615767, "ycoord": 27.640857038236998 }, "geometry": { "type": "Point", "coordinates": [ 85.320261057615767, 27.640857038236998 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3319, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 94, "repvalue": 564000, "xcoord": 85.321490013285796, "ycoord": 27.639986144907954 }, "geometry": { "type": "Point", "coordinates": [ 85.321490013285796, 27.639986144907954 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3320, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 91, "repvalue": 546000, "xcoord": 85.324189844073175, "ycoord": 27.636869369315548 }, "geometry": { "type": "Point", "coordinates": [ 85.324189844073175, 27.636869369315548 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3321, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 91, "repvalue": 819000, "xcoord": 85.321813984276346, "ycoord": 27.640482165667514 }, "geometry": { "type": "Point", "coordinates": [ 85.321813984276346, 27.640482165667514 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3322, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 94, "repvalue": 658000, "xcoord": 85.323599890126047, "ycoord": 27.63932273396065 }, "geometry": { "type": "Point", "coordinates": [ 85.323599890126047, 27.63932273396065 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3323, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 94, "repvalue": 658000, "xcoord": 85.320173113015301, "ycoord": 27.639379676744259 }, "geometry": { "type": "Point", "coordinates": [ 85.320173113015301, 27.639379676744259 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3324, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 101, "repvalue": 909000, "xcoord": 85.320633117502567, "ycoord": 27.638204212362176 }, "geometry": { "type": "Point", "coordinates": [ 85.320633117502567, 27.638204212362176 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3325, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 97, "repvalue": 679000, "xcoord": 85.325061777577218, "ycoord": 27.63766726440636 }, "geometry": { "type": "Point", "coordinates": [ 85.325061777577218, 27.63766726440636 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3326, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 92, "repvalue": 736000, "xcoord": 85.322712945830787, "ycoord": 27.639508846329502 }, "geometry": { "type": "Point", "coordinates": [ 85.322712945830787, 27.639508846329502 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3327, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 100, "repvalue": 800000, "xcoord": 85.322617463317783, "ycoord": 27.63852349302493 }, "geometry": { "type": "Point", "coordinates": [ 85.322617463317783, 27.63852349302493 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3328, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 99, "repvalue": 891000, "xcoord": 85.325161777973307, "ycoord": 27.638357411713699 }, "geometry": { "type": "Point", "coordinates": [ 85.325161777973307, 27.638357411713699 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3329, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+10s+Ind", "fptarea": 90, "repvalue": 900000, "xcoord": 85.322385970790421, "ycoord": 27.639209630833019 }, "geometry": { "type": "Point", "coordinates": [ 85.322385970790421, 27.639209630833019 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3330, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Ind", "fptarea": 96, "repvalue": 480000, "xcoord": 85.321729022419788, "ycoord": 27.638808000951343 }, "geometry": { "type": "Point", "coordinates": [ 85.321729022419788, 27.638808000951343 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3331, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+8s+Ind", "fptarea": 103, "repvalue": 824000, "xcoord": 85.324710815441136, "ycoord": 27.638942482685064 }, "geometry": { "type": "Point", "coordinates": [ 85.324710815441136, 27.638942482685064 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3332, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 91, "repvalue": 819000, "xcoord": 85.320171609763918, "ycoord": 27.639478078268247 }, "geometry": { "type": "Point", "coordinates": [ 85.320171609763918, 27.639478078268247 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3333, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+7s+Ind", "fptarea": 90, "repvalue": 630000, "xcoord": 85.321712501948014, "ycoord": 27.639890418588703 }, "geometry": { "type": "Point", "coordinates": [ 85.321712501948014, 27.639890418588703 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3334, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 92, "repvalue": 736000, "xcoord": 85.32089917406131, "ycoord": 27.635254840908203 }, "geometry": { "type": "Point", "coordinates": [ 85.32089917406131, 27.635254840908203 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3335, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Ind", "fptarea": 87, "repvalue": 609000, "xcoord": 85.320242254342858, "ycoord": 27.634853205049314 }, "geometry": { "type": "Point", "coordinates": [ 85.320242254342858, 27.634853205049314 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3336, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 91, "repvalue": 637000, "xcoord": 85.325618728668147, "ycoord": 27.637378731714705 }, "geometry": { "type": "Point", "coordinates": [ 85.325618728668147, 27.637378731714705 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3337, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 94, "repvalue": 564000, "xcoord": 85.323489397306503, "ycoord": 27.639321397901483 }, "geometry": { "type": "Point", "coordinates": [ 85.323489397306503, 27.639321397901483 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3338, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 88, "repvalue": 704000, "xcoord": 85.323856873135796, "ycoord": 27.636963764356313 }, "geometry": { "type": "Point", "coordinates": [ 85.323856873135796, 27.636963764356313 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3339, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 101, "repvalue": 1010000, "xcoord": 85.320483549043317, "ycoord": 27.640761314027927 }, "geometry": { "type": "Point", "coordinates": [ 85.320483549043317, 27.640761314027927 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3340, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 102, "repvalue": 612000, "xcoord": 85.320752624874871, "ycoord": 27.6376151411995 }, "geometry": { "type": "Point", "coordinates": [ 85.320752624874871, 27.6376151411995 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3341, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 101, "repvalue": 909000, "xcoord": 85.323753882061311, "ycoord": 27.636470419890315 }, "geometry": { "type": "Point", "coordinates": [ 85.323753882061311, 27.636470419890315 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3342, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 93, "repvalue": 744000, "xcoord": 85.320539156972643, "ycoord": 27.637120456749823 }, "geometry": { "type": "Point", "coordinates": [ 85.320539156972643, 27.637120456749823 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3343, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Ind", "fptarea": 102, "repvalue": 510000, "xcoord": 85.323541902344743, "ycoord": 27.635877337741029 }, "geometry": { "type": "Point", "coordinates": [ 85.323541902344743, 27.635877337741029 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3344, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+7s+Ind", "fptarea": 88, "repvalue": 616000, "xcoord": 85.322966947218561, "ycoord": 27.637346682685333 }, "geometry": { "type": "Point", "coordinates": [ 85.322966947218561, 27.637346682685333 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3345, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Ind", "fptarea": 91, "repvalue": 819000, "xcoord": 85.322332524180553, "ycoord": 27.635469030678941 }, "geometry": { "type": "Point", "coordinates": [ 85.322332524180553, 27.635469030678941 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3346, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 93, "repvalue": 744000, "xcoord": 85.320230230922249, "ycoord": 27.635640417741765 }, "geometry": { "type": "Point", "coordinates": [ 85.320230230922249, 27.635640417741765 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3347, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Ind", "fptarea": 102, "repvalue": 816000, "xcoord": 85.323092442844128, "ycoord": 27.636364001996437 }, "geometry": { "type": "Point", "coordinates": [ 85.323092442844128, 27.636364001996437 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3348, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 103, "repvalue": 927000, "xcoord": 85.320842079828239, "ycoord": 27.638994101403974 }, "geometry": { "type": "Point", "coordinates": [ 85.320842079828239, 27.638994101403974 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3349, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 89, "repvalue": 534000, "xcoord": 85.320952572168821, "ycoord": 27.638995439557803 }, "geometry": { "type": "Point", "coordinates": [ 85.320952572168821, 27.638995439557803 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3350, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+10s+Ind", "fptarea": 98, "repvalue": 980000, "xcoord": 85.321087102374278, "ycoord": 27.637422352232708 }, "geometry": { "type": "Point", "coordinates": [ 85.321087102374278, 27.637422352232708 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3351, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Ind", "fptarea": 90, "repvalue": 540000, "xcoord": 85.320746614347328, "ycoord": 27.638008747503999 }, "geometry": { "type": "Point", "coordinates": [ 85.320746614347328, 27.638008747503999 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3352, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 94, "repvalue": 846000, "xcoord": 85.324486831717067, "ycoord": 27.639136615777744 }, "geometry": { "type": "Point", "coordinates": [ 85.324486831717067, 27.639136615777744 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3353, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 104, "repvalue": 936000, "xcoord": 85.324633304799065, "ycoord": 27.636776308571267 }, "geometry": { "type": "Point", "coordinates": [ 85.324633304799065, 27.636776308571267 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3354, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Ind", "fptarea": 88, "repvalue": 616000, "xcoord": 85.320283605705242, "ycoord": 27.639381015448194 }, "geometry": { "type": "Point", "coordinates": [ 85.320283605705242, 27.639381015448194 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3355, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Ind", "fptarea": 88, "repvalue": 440000, "xcoord": 85.324527312016286, "ycoord": 27.636479768097498 }, "geometry": { "type": "Point", "coordinates": [ 85.324527312016286, 27.636479768097498 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3356, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 93, "repvalue": 651000, "xcoord": 85.320489561214146, "ycoord": 27.640367707932867 }, "geometry": { "type": "Point", "coordinates": [ 85.320489561214146, 27.640367707932867 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3357, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 101, "repvalue": 808000, "xcoord": 85.321742538484273, "ycoord": 27.637922386388293 }, "geometry": { "type": "Point", "coordinates": [ 85.321742538484273, 27.637922386388293 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3358, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 103, "repvalue": 618000, "xcoord": 85.319953631099608, "ycoord": 27.639278597558146 }, "geometry": { "type": "Point", "coordinates": [ 85.319953631099608, 27.639278597558146 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3359, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 94, "repvalue": 752000, "xcoord": 85.324513819198799, "ycoord": 27.637365384110122 }, "geometry": { "type": "Point", "coordinates": [ 85.324513819198799, 27.637365384110122 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3360, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 101, "repvalue": 808000, "xcoord": 85.321143508784971, "ycoord": 27.640966146921571 }, "geometry": { "type": "Point", "coordinates": [ 85.321143508784971, 27.640966146921571 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3361, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Ind", "fptarea": 85, "repvalue": 850000, "xcoord": 85.325711241312092, "ycoord": 27.638560887889057 }, "geometry": { "type": "Point", "coordinates": [ 85.325711241312092, 27.638560887889057 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3362, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 103, "repvalue": 927000, "xcoord": 85.321608016611165, "ycoord": 27.639495474629879 }, "geometry": { "type": "Point", "coordinates": [ 85.321608016611165, 27.639495474629879 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3363, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 86, "repvalue": 688000, "xcoord": 85.319595084974594, "ycoord": 27.641045807139093 }, "geometry": { "type": "Point", "coordinates": [ 85.319595084974594, 27.641045807139093 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3364, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 95, "repvalue": 950000, "xcoord": 85.323307421458082, "ycoord": 27.63676028128986 }, "geometry": { "type": "Point", "coordinates": [ 85.323307421458082, 27.63676028128986 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3365, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 97, "repvalue": 679000, "xcoord": 85.321332116680978, "ycoord": 27.635850601976504 }, "geometry": { "type": "Point", "coordinates": [ 85.321332116680978, 27.635850601976504 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3366, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 96, "repvalue": 576000, "xcoord": 85.325402242017617, "ycoord": 27.637080857439948 }, "geometry": { "type": "Point", "coordinates": [ 85.325402242017617, 27.637080857439948 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3367, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Ind", "fptarea": 90, "repvalue": 450000, "xcoord": 85.324077854087662, "ycoord": 27.636966435592107 }, "geometry": { "type": "Point", "coordinates": [ 85.324077854087662, 27.636966435592107 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3368, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 95, "repvalue": 855000, "xcoord": 85.324942293017585, "ycoord": 27.638256340300927 }, "geometry": { "type": "Point", "coordinates": [ 85.324942293017585, 27.638256340300927 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3369, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Ind", "fptarea": 94, "repvalue": 940000, "xcoord": 85.320059613625062, "ycoord": 27.639575140987716 }, "geometry": { "type": "Point", "coordinates": [ 85.320059613625062, 27.639575140987716 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3370, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 97, "repvalue": 776000, "xcoord": 85.324173349174885, "ycoord": 27.637951788622267 }, "geometry": { "type": "Point", "coordinates": [ 85.324173349174885, 27.637951788622267 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3371, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 89, "repvalue": 801000, "xcoord": 85.324049360301174, "ycoord": 27.63883606869469 }, "geometry": { "type": "Point", "coordinates": [ 85.324049360301174, 27.63883606869469 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3372, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 102, "repvalue": 816000, "xcoord": 85.32208151962945, "ycoord": 27.637434390065373 }, "geometry": { "type": "Point", "coordinates": [ 85.32208151962945, 27.637434390065373 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3373, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Ind", "fptarea": 89, "repvalue": 623000, "xcoord": 85.324954284050449, "ycoord": 27.637469126001594 }, "geometry": { "type": "Point", "coordinates": [ 85.324954284050449, 27.637469126001594 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3374, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 90, "repvalue": 540000, "xcoord": 85.322830943123662, "ycoord": 27.639018174713154 }, "geometry": { "type": "Point", "coordinates": [ 85.322830943123662, 27.639018174713154 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3375, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 103, "repvalue": 618000, "xcoord": 85.322772979088342, "ycoord": 27.635572779101892 }, "geometry": { "type": "Point", "coordinates": [ 85.322772979088342, 27.635572779101892 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3376, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 100, "repvalue": 900000, "xcoord": 85.321717007622581, "ycoord": 27.639595213796181 }, "geometry": { "type": "Point", "coordinates": [ 85.321717007622581, 27.639595213796181 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3377, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 91, "repvalue": 819000, "xcoord": 85.324091350186592, "ycoord": 27.636080819726494 }, "geometry": { "type": "Point", "coordinates": [ 85.324091350186592, 27.636080819726494 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3378, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 98, "repvalue": 882000, "xcoord": 85.32119909535254, "ycoord": 27.637325288516529 }, "geometry": { "type": "Point", "coordinates": [ 85.32119909535254, 27.637325288516529 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3379, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 104, "repvalue": 936000, "xcoord": 85.321114142633419, "ycoord": 27.635651123217443 }, "geometry": { "type": "Point", "coordinates": [ 85.321114142633419, 27.635651123217443 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3380, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 98, "repvalue": 784000, "xcoord": 85.322068006573971, "ycoord": 27.638320004844889 }, "geometry": { "type": "Point", "coordinates": [ 85.322068006573971, 27.638320004844889 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3381, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 90, "repvalue": 630000, "xcoord": 85.322446014985559, "ycoord": 27.635273564096128 }, "geometry": { "type": "Point", "coordinates": [ 85.322446014985559, 27.635273564096128 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3382, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 91, "repvalue": 546000, "xcoord": 85.324283840657387, "ycoord": 27.637953124075811 }, "geometry": { "type": "Point", "coordinates": [ 85.324283840657387, 27.637953124075811 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3383, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 99, "repvalue": 792000, "xcoord": 85.320807517449424, "ycoord": 27.64125733698712 }, "geometry": { "type": "Point", "coordinates": [ 85.320807517449424, 27.64125733698712 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3384, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 104, "repvalue": 728000, "xcoord": 85.323081939550505, "ycoord": 27.637052813965603 }, "geometry": { "type": "Point", "coordinates": [ 85.323081939550505, 27.637052813965603 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3385, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 105, "repvalue": 945000, "xcoord": 85.321499025797266, "ycoord": 27.639395735385261 }, "geometry": { "type": "Point", "coordinates": [ 85.321499025797266, 27.639395735385261 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3386, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 86, "repvalue": 774000, "xcoord": 85.325403740437125, "ycoord": 27.636982455617801 }, "geometry": { "type": "Point", "coordinates": [ 85.325403740437125, 27.636982455617801 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3387, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 100, "repvalue": 700000, "xcoord": 85.324156853356854, "ycoord": 27.639034207750896 }, "geometry": { "type": "Point", "coordinates": [ 85.324156853356854, 27.639034207750896 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3388, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 87, "repvalue": 435000, "xcoord": 85.319834117176569, "ycoord": 27.639867667626291 }, "geometry": { "type": "Point", "coordinates": [ 85.319834117176569, 27.639867667626291 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3389, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 95, "repvalue": 570000, "xcoord": 85.320982621160937, "ycoord": 27.637027407871557 }, "geometry": { "type": "Point", "coordinates": [ 85.320982621160937, 27.637027407871557 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3390, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 90, "repvalue": 540000, "xcoord": 85.320924022804533, "ycoord": 27.640865069114295 }, "geometry": { "type": "Point", "coordinates": [ 85.320924022804533, 27.640865069114295 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3391, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 94, "repvalue": 940000, "xcoord": 85.325045290700857, "ycoord": 27.638749684072362 }, "geometry": { "type": "Point", "coordinates": [ 85.325045290700857, 27.638749684072362 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3392, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 101, "repvalue": 808000, "xcoord": 85.324736300066718, "ycoord": 27.637269652550366 }, "geometry": { "type": "Point", "coordinates": [ 85.324736300066718, 27.637269652550366 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3393, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 99, "repvalue": 594000, "xcoord": 85.322818936105875, "ycoord": 27.639805387979415 }, "geometry": { "type": "Point", "coordinates": [ 85.322818936105875, 27.639805387979415 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3394, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 104, "repvalue": 728000, "xcoord": 85.321680102461343, "ycoord": 27.634772196344144 }, "geometry": { "type": "Point", "coordinates": [ 85.321680102461343, 27.634772196344144 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3395, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 87, "repvalue": 870000, "xcoord": 85.320634620259881, "ycoord": 27.638105810796773 }, "geometry": { "type": "Point", "coordinates": [ 85.320634620259881, 27.638105810796773 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3396, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 89, "repvalue": 534000, "xcoord": 85.321096116068134, "ycoord": 27.636831942613945 }, "geometry": { "type": "Point", "coordinates": [ 85.321096116068134, 27.636831942613945 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3397, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 89, "repvalue": 623000, "xcoord": 85.320480542912179, "ycoord": 27.640958117066621 }, "geometry": { "type": "Point", "coordinates": [ 85.320480542912179, 27.640958117066621 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3398, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Ind", "fptarea": 95, "repvalue": 570000, "xcoord": 85.322627970175304, "ycoord": 27.637834681365987 }, "geometry": { "type": "Point", "coordinates": [ 85.322627970175304, 27.637834681365987 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3399, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 86, "repvalue": 688000, "xcoord": 85.322666992382224, "ycoord": 27.635276237429931 }, "geometry": { "type": "Point", "coordinates": [ 85.322666992382224, 27.635276237429931 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3400, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 105, "repvalue": 945000, "xcoord": 85.325944209787053, "ycoord": 27.637776341647911 }, "geometry": { "type": "Point", "coordinates": [ 85.325944209787053, 27.637776341647911 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3401, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+5s+Ind", "fptarea": 101, "repvalue": 505000, "xcoord": 85.323071435884188, "ycoord": 27.637741625862652 }, "geometry": { "type": "Point", "coordinates": [ 85.323071435884188, 27.637741625862652 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3402, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 95, "repvalue": 570000, "xcoord": 85.324170350003669, "ycoord": 27.638148592113449 }, "geometry": { "type": "Point", "coordinates": [ 85.324170350003669, 27.638148592113449 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3403, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 94, "repvalue": 846000, "xcoord": 85.320262560875079, "ycoord": 27.640758636728048 }, "geometry": { "type": "Point", "coordinates": [ 85.320262560875079, 27.640758636728048 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3404, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+8s+Ind", "fptarea": 99, "repvalue": 792000, "xcoord": 85.323644892052116, "ycoord": 27.636370682338203 }, "geometry": { "type": "Point", "coordinates": [ 85.323644892052116, 27.636370682338203 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3405, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 90, "repvalue": 630000, "xcoord": 85.322969948440772, "ycoord": 27.637149879292878 }, "geometry": { "type": "Point", "coordinates": [ 85.322969948440772, 27.637149879292878 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3406, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 90, "repvalue": 810000, "xcoord": 85.321518551965198, "ycoord": 27.638116514570974 }, "geometry": { "type": "Point", "coordinates": [ 85.321518551965198, 27.638116514570974 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3407, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 91, "repvalue": 637000, "xcoord": 85.321496021657239, "ycoord": 27.639592538565385 }, "geometry": { "type": "Point", "coordinates": [ 85.321496021657239, 27.639592538565385 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3408, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 102, "repvalue": 714000, "xcoord": 85.321659079233484, "ycoord": 27.636149819527823 }, "geometry": { "type": "Point", "coordinates": [ 85.321659079233484, 27.636149819527823 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3409, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 105, "repvalue": 735000, "xcoord": 85.322490458741044, "ycoord": 27.639604574332761 }, "geometry": { "type": "Point", "coordinates": [ 85.322490458741044, 27.639604574332761 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3410, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 103, "repvalue": 721000, "xcoord": 85.322482952702231, "ycoord": 27.640096582507645 }, "geometry": { "type": "Point", "coordinates": [ 85.322482952702231, 27.640096582507645 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3411, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 105, "repvalue": 1050000, "xcoord": 85.322108543891034, "ycoord": 27.63566316014867 }, "geometry": { "type": "Point", "coordinates": [ 85.322108543891034, 27.63566316014867 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3412, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 99, "repvalue": 792000, "xcoord": 85.322104040018658, "ycoord": 27.635958365167905 }, "geometry": { "type": "Point", "coordinates": [ 85.322104040018658, 27.635958365167905 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3413, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+5s+Ind", "fptarea": 95, "repvalue": 475000, "xcoord": 85.321606514636102, "ycoord": 27.639593876224769 }, "geometry": { "type": "Point", "coordinates": [ 85.321606514636102, 27.639593876224769 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3414, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 104, "repvalue": 832000, "xcoord": 85.323871870738287, "ycoord": 27.63597974683163 }, "geometry": { "type": "Point", "coordinates": [ 85.323871870738287, 27.63597974683163 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3415, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 90, "repvalue": 540000, "xcoord": 85.325624721601741, "ycoord": 27.63698512439057 }, "geometry": { "type": "Point", "coordinates": [ 85.325624721601741, 27.63698512439057 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3416, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 103, "repvalue": 618000, "xcoord": 85.323607390922305, "ycoord": 27.638830725448909 }, "geometry": { "type": "Point", "coordinates": [ 85.323607390922305, 27.638830725448909 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3417, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 92, "repvalue": 736000, "xcoord": 85.321942498631827, "ycoord": 27.639302683835918 }, "geometry": { "type": "Point", "coordinates": [ 85.321942498631827, 27.639302683835918 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3418, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 101, "repvalue": 909000, "xcoord": 85.320588031241215, "ycoord": 27.641156258639679 }, "geometry": { "type": "Point", "coordinates": [ 85.320588031241215, 27.641156258639679 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3419, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 90, "repvalue": 720000, "xcoord": 85.321179566124883, "ycoord": 27.638604509266873 }, "geometry": { "type": "Point", "coordinates": [ 85.321179566124883, 27.638604509266873 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3420, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 100, "repvalue": 600000, "xcoord": 85.320291121354089, "ycoord": 27.638889007778328 }, "geometry": { "type": "Point", "coordinates": [ 85.320291121354089, 27.638889007778328 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3421, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 95, "repvalue": 570000, "xcoord": 85.321723015082085, "ycoord": 27.639201607385534 }, "geometry": { "type": "Point", "coordinates": [ 85.321723015082085, 27.639201607385534 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3422, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 86, "repvalue": 516000, "xcoord": 85.324830302181155, "ycoord": 27.638353407133771 }, "geometry": { "type": "Point", "coordinates": [ 85.324830302181155, 27.638353407133771 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3423, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 86, "repvalue": 860000, "xcoord": 85.320404619566517, "ycoord": 27.63869354327705 }, "geometry": { "type": "Point", "coordinates": [ 85.320404619566517, 27.63869354327705 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3424, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 102, "repvalue": 714000, "xcoord": 85.324089850650452, "ycoord": 27.63617922149523 }, "geometry": { "type": "Point", "coordinates": [ 85.324089850650452, 27.63617922149523 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3425, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 87, "repvalue": 696000, "xcoord": 85.319835620754759, "ycoord": 27.639769266124894 }, "geometry": { "type": "Point", "coordinates": [ 85.319835620754759, 27.639769266124894 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3426, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 94, "repvalue": 564000, "xcoord": 85.321551593318219, "ycoord": 27.635951678780032 }, "geometry": { "type": "Point", "coordinates": [ 85.321551593318219, 27.635951678780032 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3427, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 91, "repvalue": 819000, "xcoord": 85.325284258642668, "ycoord": 27.637571531976903 }, "geometry": { "type": "Point", "coordinates": [ 85.325284258642668, 27.637571531976903 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3428, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Ind", "fptarea": 88, "repvalue": 880000, "xcoord": 85.320460225230576, "ycoord": 27.635052685061112 }, "geometry": { "type": "Point", "coordinates": [ 85.320460225230576, 27.635052685061112 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3429, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 101, "repvalue": 707000, "xcoord": 85.321632047176735, "ycoord": 27.637921048911476 }, "geometry": { "type": "Point", "coordinates": [ 85.321632047176735, 27.637921048911476 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3430, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 95, "repvalue": 855000, "xcoord": 85.321698984513233, "ycoord": 27.640776032886773 }, "geometry": { "type": "Point", "coordinates": [ 85.321698984513233, 27.640776032886773 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3431, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 97, "repvalue": 679000, "xcoord": 85.322626469218477, "ycoord": 27.637933083035964 }, "geometry": { "type": "Point", "coordinates": [ 85.322626469218477, 27.637933083035964 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3432, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 90, "repvalue": 450000, "xcoord": 85.322850453489139, "ycoord": 27.637738952954532 }, "geometry": { "type": "Point", "coordinates": [ 85.322850453489139, 27.637738952954532 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3433, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 102, "repvalue": 1020000, "xcoord": 85.320512105769183, "ycoord": 27.638891684866593 }, "geometry": { "type": "Point", "coordinates": [ 85.320512105769183, 27.638891684866593 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3434, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 98, "repvalue": 784000, "xcoord": 85.323292418309663, "ycoord": 27.637744298418909 }, "geometry": { "type": "Point", "coordinates": [ 85.323292418309663, 27.637744298418909 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3435, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Ind", "fptarea": 89, "repvalue": 890000, "xcoord": 85.321060059647792, "ycoord": 27.639193580771028 }, "geometry": { "type": "Point", "coordinates": [ 85.321060059647792, 27.639193580771028 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3436, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 92, "repvalue": 460000, "xcoord": 85.325494752253334, "ycoord": 27.638263013693322 }, "geometry": { "type": "Point", "coordinates": [ 85.325494752253334, 27.638263013693322 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3437, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 90, "repvalue": 630000, "xcoord": 85.3245213152845, "ycoord": 27.636873375228941 }, "geometry": { "type": "Point", "coordinates": [ 85.3245213152845, 27.636873375228941 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3438, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+8s+Ind", "fptarea": 85, "repvalue": 680000, "xcoord": 85.323260909222412, "ycoord": 27.639810733910807 }, "geometry": { "type": "Point", "coordinates": [ 85.323260909222412, 27.639810733910807 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3439, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Ind", "fptarea": 88, "repvalue": 704000, "xcoord": 85.320047586488499, "ycoord": 27.640362353070305 }, "geometry": { "type": "Point", "coordinates": [ 85.320047586488499, 27.640362353070305 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3440, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 96, "repvalue": 768000, "xcoord": 85.321899577351857, "ycoord": 27.634873272530392 }, "geometry": { "type": "Point", "coordinates": [ 85.321899577351857, 27.634873272530392 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3441, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 104, "repvalue": 832000, "xcoord": 85.320524128830996, "ycoord": 27.638104472429141 }, "geometry": { "type": "Point", "coordinates": [ 85.320524128830996, 27.638104472429141 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3442, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 95, "repvalue": 950000, "xcoord": 85.324522814478854, "ycoord": 27.636774973448286 }, "geometry": { "type": "Point", "coordinates": [ 85.324522814478854, 27.636774973448286 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3443, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Ind", "fptarea": 92, "repvalue": 644000, "xcoord": 85.320784178145132, "ycoord": 27.635548707714513 }, "geometry": { "type": "Point", "coordinates": [ 85.320784178145132, 27.635548707714513 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3444, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+7s+Ind", "fptarea": 92, "repvalue": 644000, "xcoord": 85.320873633263886, "ycoord": 27.636927668234868 }, "geometry": { "type": "Point", "coordinates": [ 85.320873633263886, 27.636927668234868 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3445, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 89, "repvalue": 712000, "xcoord": 85.323271412624166, "ycoord": 27.639121922152295 }, "geometry": { "type": "Point", "coordinates": [ 85.323271412624166, 27.639121922152295 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3446, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 86, "repvalue": 430000, "xcoord": 85.320876638177822, "ycoord": 27.636730865042047 }, "geometry": { "type": "Point", "coordinates": [ 85.320876638177822, 27.636730865042047 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3447, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 98, "repvalue": 588000, "xcoord": 85.321172054540796, "ycoord": 27.639096517181525 }, "geometry": { "type": "Point", "coordinates": [ 85.321172054540796, 27.639096517181525 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3448, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 87, "repvalue": 609000, "xcoord": 85.323923869125395, "ycoord": 27.639818750168622 }, "geometry": { "type": "Point", "coordinates": [ 85.323923869125395, 27.639818750168622 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3449, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 98, "repvalue": 686000, "xcoord": 85.319696556535007, "ycoord": 27.641637555215606 }, "geometry": { "type": "Point", "coordinates": [ 85.319696556535007, 27.641637555215606 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3450, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 99, "repvalue": 891000, "xcoord": 85.319589069429668, "ycoord": 27.641439413014698 }, "geometry": { "type": "Point", "coordinates": [ 85.319589069429668, 27.641439413014698 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3451, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 91, "repvalue": 637000, "xcoord": 85.322780482389689, "ycoord": 27.635080770532856 }, "geometry": { "type": "Point", "coordinates": [ 85.322780482389689, 27.635080770532856 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3452, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 96, "repvalue": 576000, "xcoord": 85.322275478153344, "ycoord": 27.639208293811702 }, "geometry": { "type": "Point", "coordinates": [ 85.322275478153344, 27.639208293811702 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3453, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 90, "repvalue": 540000, "xcoord": 85.325396248263601, "ycoord": 27.637474464713769 }, "geometry": { "type": "Point", "coordinates": [ 85.325396248263601, 27.637474464713769 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3454, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 102, "repvalue": 612000, "xcoord": 85.324286839600688, "ycoord": 27.637756320567629 }, "geometry": { "type": "Point", "coordinates": [ 85.324286839600688, 27.637756320567629 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3455, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 92, "repvalue": 736000, "xcoord": 85.323631392192837, "ycoord": 27.637256297964026 }, "geometry": { "type": "Point", "coordinates": [ 85.323631392192837, 27.637256297964026 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3456, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+7s+Ind", "fptarea": 98, "repvalue": 686000, "xcoord": 85.32103902471016, "ycoord": 27.640571202637737 }, "geometry": { "type": "Point", "coordinates": [ 85.32103902471016, 27.640571202637737 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3457, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 101, "repvalue": 808000, "xcoord": 85.323746382671288, "ycoord": 27.63696242860647 }, "geometry": { "type": "Point", "coordinates": [ 85.323746382671288, 27.63696242860647 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3458, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 98, "repvalue": 686000, "xcoord": 85.324518316873011, "ycoord": 27.637070178785823 }, "geometry": { "type": "Point", "coordinates": [ 85.324518316873011, 27.637070178785823 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3459, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 88, "repvalue": 792000, "xcoord": 85.320936043924632, "ycoord": 27.640077856734226 }, "geometry": { "type": "Point", "coordinates": [ 85.320936043924632, 27.640077856734226 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3460, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 89, "repvalue": 623000, "xcoord": 85.320827053202123, "ycoord": 27.639978116970603 }, "geometry": { "type": "Point", "coordinates": [ 85.320827053202123, 27.639978116970603 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3461, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 91, "repvalue": 546000, "xcoord": 85.323080439049562, "ycoord": 27.637151215669601 }, "geometry": { "type": "Point", "coordinates": [ 85.323080439049562, 27.637151215669601 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3462, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 85, "repvalue": 765000, "xcoord": 85.320497076256302, "ycoord": 27.639875700280907 }, "geometry": { "type": "Point", "coordinates": [ 85.320497076256302, 27.639875700280907 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3463, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 99, "repvalue": 891000, "xcoord": 85.321789089097976, "ycoord": 27.63487193531402 }, "geometry": { "type": "Point", "coordinates": [ 85.321789089097976, 27.63487193531402 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3464, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 91, "repvalue": 637000, "xcoord": 85.320449706039966, "ycoord": 27.635741496229507 }, "geometry": { "type": "Point", "coordinates": [ 85.320449706039966, 27.635741496229507 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3465, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 99, "repvalue": 594000, "xcoord": 85.32035424528469, "ycoord": 27.63475614189834 }, "geometry": { "type": "Point", "coordinates": [ 85.32035424528469, 27.63475614189834 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3466, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Ind", "fptarea": 99, "repvalue": 594000, "xcoord": 85.325178263429052, "ycoord": 27.637274991921856 }, "geometry": { "type": "Point", "coordinates": [ 85.325178263429052, 27.637274991921856 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3467, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 102, "repvalue": 714000, "xcoord": 85.322341530443552, "ycoord": 27.634878620516325 }, "geometry": { "type": "Point", "coordinates": [ 85.322341530443552, 27.634878620516325 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3468, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 89, "repvalue": 623000, "xcoord": 85.320927028130257, "ycoord": 27.640668266028115 }, "geometry": { "type": "Point", "coordinates": [ 85.320927028130257, 27.640668266028115 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3469, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 101, "repvalue": 909000, "xcoord": 85.320401613557834, "ycoord": 27.638890346366445 }, "geometry": { "type": "Point", "coordinates": [ 85.320401613557834, 27.638890346366445 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3470, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 97, "repvalue": 582000, "xcoord": 85.322403985327327, "ycoord": 27.638028811059243 }, "geometry": { "type": "Point", "coordinates": [ 85.322403985327327, 27.638028811059243 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3471, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 101, "repvalue": 909000, "xcoord": 85.322556503680104, "ycoord": 27.635274900807005 }, "geometry": { "type": "Point", "coordinates": [ 85.322556503680104, 27.635274900807005 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3472, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 88, "repvalue": 704000, "xcoord": 85.320392595348935, "ycoord": 27.639480755599294 }, "geometry": { "type": "Point", "coordinates": [ 85.320392595348935, 27.639480755599294 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3473, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 99, "repvalue": 792000, "xcoord": 85.321312590221908, "ycoord": 27.637129823086251 }, "geometry": { "type": "Point", "coordinates": [ 85.321312590221908, 27.637129823086251 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3474, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 91, "repvalue": 910000, "xcoord": 85.324733301989454, "ycoord": 27.637466456117707 }, "geometry": { "type": "Point", "coordinates": [ 85.324733301989454, 27.637466456117707 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3475, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 95, "repvalue": 570000, "xcoord": 85.322425000902129, "ycoord": 27.636651187721942 }, "geometry": { "type": "Point", "coordinates": [ 85.322425000902129, 27.636651187721942 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3476, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 91, "repvalue": 455000, "xcoord": 85.322930930178686, "ycoord": 27.639708322935537 }, "geometry": { "type": "Point", "coordinates": [ 85.322930930178686, 27.639708322935537 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3477, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 97, "repvalue": 873000, "xcoord": 85.320197164001314, "ycoord": 27.637805252160206 }, "geometry": { "type": "Point", "coordinates": [ 85.320197164001314, 27.637805252160206 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3478, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 103, "repvalue": 927000, "xcoord": 85.320637625751644, "ycoord": 27.637909007661552 }, "geometry": { "type": "Point", "coordinates": [ 85.320637625751644, 27.637909007661552 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3479, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Ind", "fptarea": 96, "repvalue": 864000, "xcoord": 85.323537402277893, "ycoord": 27.636172542968289 }, "geometry": { "type": "Point", "coordinates": [ 85.323537402277893, 27.636172542968289 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3480, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 87, "repvalue": 522000, "xcoord": 85.32232802094633, "ycoord": 27.635764235740389 }, "geometry": { "type": "Point", "coordinates": [ 85.32232802094633, 27.635764235740389 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3481, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 98, "repvalue": 588000, "xcoord": 85.323743382862048, "ycoord": 27.637159232082631 }, "geometry": { "type": "Point", "coordinates": [ 85.323743382862048, 27.637159232082631 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3482, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 97, "repvalue": 582000, "xcoord": 85.322726454375029, "ycoord": 27.638623231408626 }, "geometry": { "type": "Point", "coordinates": [ 85.322726454375029, 27.638623231408626 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3483, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 97, "repvalue": 485000, "xcoord": 85.322511474637679, "ycoord": 27.638226951247315 }, "geometry": { "type": "Point", "coordinates": [ 85.322511474637679, 27.638226951247315 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3484, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 89, "repvalue": 801000, "xcoord": 85.319142577677866, "ycoord": 27.641729259416085 }, "geometry": { "type": "Point", "coordinates": [ 85.319142577677866, 27.641729259416085 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3485, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 86, "repvalue": 774000, "xcoord": 85.320996142213517, "ycoord": 27.636141793420645 }, "geometry": { "type": "Point", "coordinates": [ 85.320996142213517, 27.636141793420645 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3486, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 101, "repvalue": 1010000, "xcoord": 85.320168603238272, "ycoord": 27.639674881311816 }, "geometry": { "type": "Point", "coordinates": [ 85.320168603238272, 27.639674881311816 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3487, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+8s+Ind", "fptarea": 100, "repvalue": 800000, "xcoord": 85.322181501063952, "ycoord": 27.638124538706926 }, "geometry": { "type": "Point", "coordinates": [ 85.322181501063952, 27.638124538706926 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3488, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 97, "repvalue": 970000, "xcoord": 85.322066505085317, "ycoord": 27.638418406479691 }, "geometry": { "type": "Point", "coordinates": [ 85.322066505085317, 27.638418406479691 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3489, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 91, "repvalue": 546000, "xcoord": 85.323160920024975, "ycoord": 27.63912058584032 }, "geometry": { "type": "Point", "coordinates": [ 85.323160920024975, 27.63912058584032 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3490, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 98, "repvalue": 784000, "xcoord": 85.32527526714567, "ycoord": 27.63816194280135 }, "geometry": { "type": "Point", "coordinates": [ 85.32527526714567, 27.63816194280135 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3491, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 101, "repvalue": 707000, "xcoord": 85.32130207544175, "ycoord": 27.637818634349994 }, "geometry": { "type": "Point", "coordinates": [ 85.32130207544175, 27.637818634349994 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3492, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Ind", "fptarea": 87, "repvalue": 522000, "xcoord": 85.323369902102954, "ycoord": 27.63991047185317 }, "geometry": { "type": "Point", "coordinates": [ 85.323369902102954, 27.63991047185317 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3493, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 92, "repvalue": 552000, "xcoord": 85.320908187934933, "ycoord": 27.63466443116193 }, "geometry": { "type": "Point", "coordinates": [ 85.320908187934933, 27.63466443116193 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3494, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+5s+Ind", "fptarea": 102, "repvalue": 510000, "xcoord": 85.32162754159414, "ycoord": 27.638216253762376 }, "geometry": { "type": "Point", "coordinates": [ 85.32162754159414, 27.638216253762376 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3495, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 99, "repvalue": 792000, "xcoord": 85.324610817567304, "ycoord": 27.638252335209842 }, "geometry": { "type": "Point", "coordinates": [ 85.324610817567304, 27.638252335209842 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3496, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 89, "repvalue": 534000, "xcoord": 85.325732215941329, "ycoord": 27.63718326232112 }, "geometry": { "type": "Point", "coordinates": [ 85.325732215941329, 27.63718326232112 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3497, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 94, "repvalue": 846000, "xcoord": 85.323187928838777, "ycoord": 27.63734935537304 }, "geometry": { "type": "Point", "coordinates": [ 85.323187928838777, 27.63734935537304 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3498, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 85, "repvalue": 765000, "xcoord": 85.324827304134246, "ycoord": 27.638550210679842 }, "geometry": { "type": "Point", "coordinates": [ 85.324827304134246, 27.638550210679842 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3499, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+7s+Ind", "fptarea": 94, "repvalue": 658000, "xcoord": 85.323083440043831, "ycoord": 27.636954412260135 }, "geometry": { "type": "Point", "coordinates": [ 85.323083440043831, 27.636954412260135 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3500, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 86, "repvalue": 774000, "xcoord": 85.320415140356928, "ycoord": 27.638004732417802 }, "geometry": { "type": "Point", "coordinates": [ 85.320415140356928, 27.638004732417802 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3501, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 87, "repvalue": 609000, "xcoord": 85.322478448987638, "ycoord": 27.640391787394908 }, "geometry": { "type": "Point", "coordinates": [ 85.322478448987638, 27.640391787394908 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3502, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 100, "repvalue": 700000, "xcoord": 85.322812932414379, "ycoord": 27.640198994577222 }, "geometry": { "type": "Point", "coordinates": [ 85.322812932414379, 27.640198994577222 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3503, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 103, "repvalue": 721000, "xcoord": 85.322421998768462, "ycoord": 27.636847991073495 }, "geometry": { "type": "Point", "coordinates": [ 85.322421998768462, 27.636847991073495 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3504, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Ind", "fptarea": 102, "repvalue": 612000, "xcoord": 85.31982960639634, "ycoord": 27.640162872121625 }, "geometry": { "type": "Point", "coordinates": [ 85.31982960639634, 27.640162872121625 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3505, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 103, "repvalue": 1030000, "xcoord": 85.320922520130253, "ycoord": 27.640963470655176 }, "geometry": { "type": "Point", "coordinates": [ 85.320922520130253, 27.640963470655176 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3506, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Ind", "fptarea": 86, "repvalue": 774000, "xcoord": 85.321034517029318, "ycoord": 27.64086640728592 }, "geometry": { "type": "Point", "coordinates": [ 85.321034517029318, 27.64086640728592 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3507, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+5s+Ind", "fptarea": 89, "repvalue": 445000, "xcoord": 85.321928983385945, "ycoord": 27.640188298313639 }, "geometry": { "type": "Point", "coordinates": [ 85.321928983385945, 27.640188298313639 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3508, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 97, "repvalue": 776000, "xcoord": 85.319944610337487, "ycoord": 27.639869006621996 }, "geometry": { "type": "Point", "coordinates": [ 85.319944610337487, 27.639869006621996 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3509, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Ind", "fptarea": 95, "repvalue": 570000, "xcoord": 85.3207030343778, "ycoord": 27.64086239250711 }, "geometry": { "type": "Point", "coordinates": [ 85.3207030343778, 27.64086239250711 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3510, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 94, "repvalue": 658000, "xcoord": 85.32275497038917, "ycoord": 27.636753599517462 }, "geometry": { "type": "Point", "coordinates": [ 85.32275497038917, 27.636753599517462 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3511, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 95, "repvalue": 950000, "xcoord": 85.324501825066477, "ycoord": 27.638152598243501 }, "geometry": { "type": "Point", "coordinates": [ 85.324501825066477, 27.638152598243501 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3512, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+10s+Ind", "fptarea": 94, "repvalue": 940000, "xcoord": 85.323089441941121, "ycoord": 27.636560805423553 }, "geometry": { "type": "Point", "coordinates": [ 85.323089441941121, 27.636560805423553 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3513, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 90, "repvalue": 630000, "xcoord": 85.321438100196374, "ycoord": 27.636147144510609 }, "geometry": { "type": "Point", "coordinates": [ 85.321438100196374, 27.636147144510609 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3514, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 100, "repvalue": 800000, "xcoord": 85.325394749806108, "ycoord": 27.637572866528547 }, "geometry": { "type": "Point", "coordinates": [ 85.325394749806108, 27.637572866528547 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3515, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 88, "repvalue": 704000, "xcoord": 85.320164093392648, "ycoord": 27.639970085866118 }, "geometry": { "type": "Point", "coordinates": [ 85.320164093392648, 27.639970085866118 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3516, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 89, "repvalue": 623000, "xcoord": 85.323280415243332, "ycoord": 27.638531512016172 }, "geometry": { "type": "Point", "coordinates": [ 85.323280415243332, 27.638531512016172 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3517, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 97, "repvalue": 485000, "xcoord": 85.323150415931877, "ycoord": 27.639809397559922 }, "geometry": { "type": "Point", "coordinates": [ 85.323150415931877, 27.639809397559922 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3518, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 87, "repvalue": 696000, "xcoord": 85.322972949632558, "ycoord": 27.636953075894535 }, "geometry": { "type": "Point", "coordinates": [ 85.322972949632558, 27.636953075894535 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3519, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 90, "repvalue": 810000, "xcoord": 85.32035123968798, "ycoord": 27.634952945094359 }, "geometry": { "type": "Point", "coordinates": [ 85.32035123968798, 27.634952945094359 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3520, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Ind", "fptarea": 85, "repvalue": 765000, "xcoord": 85.324746793097773, "ycoord": 27.636580840018343 }, "geometry": { "type": "Point", "coordinates": [ 85.324746793097773, 27.636580840018343 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3521, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 102, "repvalue": 816000, "xcoord": 85.323478895181012, "ycoord": 27.640010209717207 }, "geometry": { "type": "Point", "coordinates": [ 85.323478895181012, 27.640010209717207 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3522, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 96, "repvalue": 864000, "xcoord": 85.320551178937492, "ycoord": 27.636333244100385 }, "geometry": { "type": "Point", "coordinates": [ 85.320551178937492, 27.636333244100385 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3523, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+7s+Ind", "fptarea": 101, "repvalue": 707000, "xcoord": 85.321194588721923, "ycoord": 27.637620493327148 }, "geometry": { "type": "Point", "coordinates": [ 85.321194588721923, 27.637620493327148 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3524, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 86, "repvalue": 688000, "xcoord": 85.319714601801593, "ycoord": 27.640456737486613 }, "geometry": { "type": "Point", "coordinates": [ 85.319714601801593, 27.640456737486613 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3525, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 102, "repvalue": 816000, "xcoord": 85.324403328293656, "ycoord": 27.637364048865852 }, "geometry": { "type": "Point", "coordinates": [ 85.324403328293656, 27.637364048865852 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3526, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 103, "repvalue": 721000, "xcoord": 85.323422412194645, "ycoord": 27.636466412196349 }, "geometry": { "type": "Point", "coordinates": [ 85.323422412194645, 27.636466412196349 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3527, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Ind", "fptarea": 89, "repvalue": 534000, "xcoord": 85.323980860595626, "ycoord": 27.636079484202586 }, "geometry": { "type": "Point", "coordinates": [ 85.323980860595626, 27.636079484202586 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3528, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+8s+Ind", "fptarea": 102, "repvalue": 816000, "xcoord": 85.322423499839104, "ycoord": 27.636749589398455 }, "geometry": { "type": "Point", "coordinates": [ 85.322423499839104, 27.636749589398455 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3529, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 103, "repvalue": 1030000, "xcoord": 85.320507596995313, "ycoord": 27.639186889506345 }, "geometry": { "type": "Point", "coordinates": [ 85.320507596995313, 27.639186889506345 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3530, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Ind", "fptarea": 91, "repvalue": 546000, "xcoord": 85.320357250850947, "ycoord": 27.634559338696416 }, "geometry": { "type": "Point", "coordinates": [ 85.320357250850947, 27.634559338696416 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3531, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 94, "repvalue": 846000, "xcoord": 85.322220534134544, "ycoord": 27.635566095464082 }, "geometry": { "type": "Point", "coordinates": [ 85.322220534134544, 27.635566095464082 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3532, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 96, "repvalue": 768000, "xcoord": 85.322370957839283, "ycoord": 27.640193647149243 }, "geometry": { "type": "Point", "coordinates": [ 85.322370957839283, 27.640193647149243 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3533, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Ind", "fptarea": 101, "repvalue": 808000, "xcoord": 85.32507676484893, "ycoord": 27.63668324637365 }, "geometry": { "type": "Point", "coordinates": [ 85.32507676484893, 27.63668324637365 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3534, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 94, "repvalue": 940000, "xcoord": 85.32104202979265, "ycoord": 27.640374399531584 }, "geometry": { "type": "Point", "coordinates": [ 85.32104202979265, 27.640374399531584 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3535, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 90, "repvalue": 810000, "xcoord": 85.324376339034259, "ycoord": 27.639135280433482 }, "geometry": { "type": "Point", "coordinates": [ 85.324376339034259, 27.639135280433482 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3536, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Ind", "fptarea": 99, "repvalue": 495000, "xcoord": 85.321819991614845, "ycoord": 27.640088559287612 }, "geometry": { "type": "Point", "coordinates": [ 85.321819991614845, 27.640088559287612 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3537, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 96, "repvalue": 672000, "xcoord": 85.320189648277733, "ycoord": 27.63829725988321 }, "geometry": { "type": "Point", "coordinates": [ 85.320189648277733, 27.63829725988321 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3538, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 103, "repvalue": 927000, "xcoord": 85.32386887127862, "ycoord": 27.636176550348338 }, "geometry": { "type": "Point", "coordinates": [ 85.32386887127862, 27.636176550348338 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3539, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 93, "repvalue": 744000, "xcoord": 85.324086851555364, "ycoord": 27.636376025028284 }, "geometry": { "type": "Point", "coordinates": [ 85.324086851555364, 27.636376025028284 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3540, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Ind", "fptarea": 89, "repvalue": 445000, "xcoord": 85.325832220302871, "ycoord": 27.637873409357567 }, "geometry": { "type": "Point", "coordinates": [ 85.325832220302871, 27.637873409357567 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3541, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 105, "repvalue": 840000, "xcoord": 85.323844874506435, "ycoord": 27.637750978270098 }, "geometry": { "type": "Point", "coordinates": [ 85.323844874506435, 27.637750978270098 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3542, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 102, "repvalue": 714000, "xcoord": 85.324525812844726, "ycoord": 27.636578169882565 }, "geometry": { "type": "Point", "coordinates": [ 85.324525812844726, 27.636578169882565 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3543, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Ind", "fptarea": 95, "repvalue": 570000, "xcoord": 85.323266911211903, "ycoord": 27.639417127200488 }, "geometry": { "type": "Point", "coordinates": [ 85.323266911211903, 27.639417127200488 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3544, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 105, "repvalue": 735000, "xcoord": 85.322862459228872, "ycoord": 27.636951739440974 }, "geometry": { "type": "Point", "coordinates": [ 85.322862459228872, 27.636951739440974 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3545, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 88, "repvalue": 792000, "xcoord": 85.322732457974652, "ycoord": 27.638229624738855 }, "geometry": { "type": "Point", "coordinates": [ 85.322732457974652, 27.638229624738855 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3546, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 85, "repvalue": 595000, "xcoord": 85.321008160409107, "ycoord": 27.635354580475294 }, "geometry": { "type": "Point", "coordinates": [ 85.321008160409107, 27.635354580475294 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3547, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 100, "repvalue": 1000000, "xcoord": 85.320809020245335, "ycoord": 27.641158935456222 }, "geometry": { "type": "Point", "coordinates": [ 85.320809020245335, 27.641158935456222 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3548, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 89, "repvalue": 623000, "xcoord": 85.322974450217032, "ycoord": 27.636854674193163 }, "geometry": { "type": "Point", "coordinates": [ 85.322974450217032, 27.636854674193163 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3549, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+6s+Ind", "fptarea": 103, "repvalue": 618000, "xcoord": 85.321166045136465, "ycoord": 27.639490123486755 }, "geometry": { "type": "Point", "coordinates": [ 85.321166045136465, 27.639490123486755 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3550, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 103, "repvalue": 824000, "xcoord": 85.325152785519094, "ycoord": 27.638947822434186 }, "geometry": { "type": "Point", "coordinates": [ 85.325152785519094, 27.638947822434186 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3551, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+7s+Ind", "fptarea": 103, "repvalue": 721000, "xcoord": 85.325827726001563, "ycoord": 27.638168614846442 }, "geometry": { "type": "Point", "coordinates": [ 85.325827726001563, 27.638168614846442 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3552, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 95, "repvalue": 760000, "xcoord": 85.321902580168597, "ycoord": 27.634676469175577 }, "geometry": { "type": "Point", "coordinates": [ 85.321902580168597, 27.634676469175577 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3553, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 88, "repvalue": 704000, "xcoord": 85.322299498872525, "ycoord": 27.637633867488557 }, "geometry": { "type": "Point", "coordinates": [ 85.322299498872525, 27.637633867488557 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3554, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+6s+Ind", "fptarea": 104, "repvalue": 624000, "xcoord": 85.32056921097066, "ycoord": 27.63515242494957 }, "geometry": { "type": "Point", "coordinates": [ 85.32056921097066, 27.63515242494957 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3555, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+8s+Ind", "fptarea": 101, "repvalue": 808000, "xcoord": 85.321651570576236, "ycoord": 27.63664182773779 }, "geometry": { "type": "Point", "coordinates": [ 85.321651570576236, 27.63664182773779 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3556, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 104, "repvalue": 728000, "xcoord": 85.320630111965116, "ycoord": 27.638401015488565 }, "geometry": { "type": "Point", "coordinates": [ 85.320630111965116, 27.638401015488565 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3557, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 88, "repvalue": 792000, "xcoord": 85.322205522023879, "ycoord": 27.636550112213705 }, "geometry": { "type": "Point", "coordinates": [ 85.322205522023879, 27.636550112213705 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3558, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 97, "repvalue": 970000, "xcoord": 85.32481830981115, "ycoord": 27.639140621282699 }, "geometry": { "type": "Point", "coordinates": [ 85.32481830981115, 27.639140621282699 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3559, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 105, "repvalue": 840000, "xcoord": 85.324737799093953, "ycoord": 27.637171250764496 }, "geometry": { "type": "Point", "coordinates": [ 85.324737799093953, 27.637171250764496 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3560, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 92, "repvalue": 644000, "xcoord": 85.320782675684612, "ycoord": 27.635647109323763 }, "geometry": { "type": "Point", "coordinates": [ 85.320782675684612, 27.635647109323763 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3561, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Ind", "fptarea": 102, "repvalue": 510000, "xcoord": 85.320161086790804, "ycoord": 27.640166888894964 }, "geometry": { "type": "Point", "coordinates": [ 85.320161086790804, 27.640166888894964 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3562, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 101, "repvalue": 808000, "xcoord": 85.320352742490144, "ycoord": 27.634854543497081 }, "geometry": { "type": "Point", "coordinates": [ 85.320352742490144, 27.634854543497081 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3563, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 100, "repvalue": 900000, "xcoord": 85.323380404866569, "ycoord": 27.639221660066053 }, "geometry": { "type": "Point", "coordinates": [ 85.323380404866569, 27.639221660066053 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3564, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 96, "repvalue": 864000, "xcoord": 85.32094355687714, "ycoord": 27.639585848948844 }, "geometry": { "type": "Point", "coordinates": [ 85.32094355687714, 27.639585848948844 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3565, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 91, "repvalue": 637000, "xcoord": 85.325948703700945, "ycoord": 27.637481136124723 }, "geometry": { "type": "Point", "coordinates": [ 85.325948703700945, 27.637481136124723 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3566, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 95, "repvalue": 665000, "xcoord": 85.321255505501739, "ycoord": 27.640869083365224 }, "geometry": { "type": "Point", "coordinates": [ 85.321255505501739, 27.640869083365224 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3567, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 102, "repvalue": 816000, "xcoord": 85.32099764451462, "ycoord": 27.636043391807629 }, "geometry": { "type": "Point", "coordinates": [ 85.32099764451462, 27.636043391807629 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3568, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 104, "repvalue": 832000, "xcoord": 85.320976611606213, "ycoord": 27.637421014255917 }, "geometry": { "type": "Point", "coordinates": [ 85.320976611606213, 27.637421014255917 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3569, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 91, "repvalue": 637000, "xcoord": 85.320815031352808, "ycoord": 27.640765329317905 }, "geometry": { "type": "Point", "coordinates": [ 85.320815031352808, 27.640765329317905 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3570, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Ind", "fptarea": 96, "repvalue": 768000, "xcoord": 85.322777481091975, "ycoord": 27.635277573964885 }, "geometry": { "type": "Point", "coordinates": [ 85.322777481091975, 27.635277573964885 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3571, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 105, "repvalue": 945000, "xcoord": 85.322665491623212, "ycoord": 27.63537463913817 }, "geometry": { "type": "Point", "coordinates": [ 85.322665491623212, 27.63537463913817 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3572, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 98, "repvalue": 588000, "xcoord": 85.324262847202888, "ycoord": 27.639330748468208 }, "geometry": { "type": "Point", "coordinates": [ 85.324262847202888, 27.639330748468208 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3573, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 103, "repvalue": 721000, "xcoord": 85.3202347397621, "ycoord": 27.635345212993133 }, "geometry": { "type": "Point", "coordinates": [ 85.3202347397621, 27.635345212993133 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3574, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Ind", "fptarea": 101, "repvalue": 808000, "xcoord": 85.324955782895358, "ycoord": 27.637370724207557 }, "geometry": { "type": "Point", "coordinates": [ 85.324955782895358, 27.637370724207557 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3575, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Ind", "fptarea": 85, "repvalue": 765000, "xcoord": 85.320639128486093, "ycoord": 27.637810606091733 }, "geometry": { "type": "Point", "coordinates": [ 85.320639128486093, 27.637810606091733 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3576, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 91, "repvalue": 637000, "xcoord": 85.321524559758004, "ycoord": 27.637722908116519 }, "geometry": { "type": "Point", "coordinates": [ 85.321524559758004, 27.637722908116519 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3577, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+6s+Ind", "fptarea": 88, "repvalue": 528000, "xcoord": 85.320939049128484, "ycoord": 27.639881053624489 }, "geometry": { "type": "Point", "coordinates": [ 85.320939049128484, 27.639881053624489 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3578, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 87, "repvalue": 696000, "xcoord": 85.321950006835337, "ycoord": 27.638810675741219 }, "geometry": { "type": "Point", "coordinates": [ 85.321950006835337, 27.638810675741219 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3579, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 92, "repvalue": 828000, "xcoord": 85.319484590651328, "ycoord": 27.641044467812602 }, "geometry": { "type": "Point", "coordinates": [ 85.319484590651328, 27.641044467812602 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3580, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Ind", "fptarea": 104, "repvalue": 728000, "xcoord": 85.321968025747424, "ycoord": 27.637629856163784 }, "geometry": { "type": "Point", "coordinates": [ 85.321968025747424, 27.637629856163784 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3581, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 103, "repvalue": 824000, "xcoord": 85.322001057572976, "ycoord": 27.635465019721313 }, "geometry": { "type": "Point", "coordinates": [ 85.322001057572976, 27.635465019721313 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3582, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 88, "repvalue": 528000, "xcoord": 85.320528637353476, "ycoord": 27.637809267740803 }, "geometry": { "type": "Point", "coordinates": [ 85.320528637353476, 27.637809267740803 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3583, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 104, "repvalue": 832000, "xcoord": 85.322635474845285, "ycoord": 27.63734267299402 }, "geometry": { "type": "Point", "coordinates": [ 85.322635474845285, 27.63734267299402 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3584, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 104, "repvalue": 1040000, "xcoord": 85.322440011113898, "ycoord": 27.635667170875799 }, "geometry": { "type": "Point", "coordinates": [ 85.322440011113898, 27.635667170875799 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3585, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Ind", "fptarea": 88, "repvalue": 528000, "xcoord": 85.322883468101921, "ycoord": 27.635574115565579 }, "geometry": { "type": "Point", "coordinates": [ 85.322883468101921, 27.635574115565579 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3586, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 91, "repvalue": 819000, "xcoord": 85.321336622604179, "ycoord": 27.635555397069695 }, "geometry": { "type": "Point", "coordinates": [ 85.321336622604179, 27.635555397069695 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3587, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 101, "repvalue": 606000, "xcoord": 85.322284486151347, "ycoord": 27.638617883984686 }, "geometry": { "type": "Point", "coordinates": [ 85.322284486151347, 27.638617883984686 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3588, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 97, "repvalue": 582000, "xcoord": 85.322337027346279, "ycoord": 27.635173825604259 }, "geometry": { "type": "Point", "coordinates": [ 85.322337027346279, 27.635173825604259 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3589, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 94, "repvalue": 564000, "xcoord": 85.325060278808266, "ycoord": 27.637765666201535 }, "geometry": { "type": "Point", "coordinates": [ 85.325060278808266, 27.637765666201535 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3590, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 93, "repvalue": 837000, "xcoord": 85.320684206977717, "ycoord": 27.634858558312651 }, "geometry": { "type": "Point", "coordinates": [ 85.320684206977717, 27.634858558312651 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3591, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 92, "repvalue": 644000, "xcoord": 85.324194342522176, "ycoord": 27.636574164019173 }, "geometry": { "type": "Point", "coordinates": [ 85.324194342522176, 27.636574164019173 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3592, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 87, "repvalue": 783000, "xcoord": 85.32483929613953, "ycoord": 27.637762996460257 }, "geometry": { "type": "Point", "coordinates": [ 85.32483929613953, 27.637762996460257 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3593, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 99, "repvalue": 594000, "xcoord": 85.323517901197391, "ycoord": 27.637451765466675 }, "geometry": { "type": "Point", "coordinates": [ 85.323517901197391, 27.637451765466675 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3594, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+9s+Ind", "fptarea": 89, "repvalue": 801000, "xcoord": 85.321176561514093, "ycoord": 27.638801312437156 }, "geometry": { "type": "Point", "coordinates": [ 85.321176561514093, 27.638801312437156 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3595, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 101, "repvalue": 707000, "xcoord": 85.320152066802393, "ycoord": 27.640757297946145 }, "geometry": { "type": "Point", "coordinates": [ 85.320152066802393, 27.640757297946145 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3596, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 87, "repvalue": 609000, "xcoord": 85.320358753622656, "ycoord": 27.634460937093255 }, "geometry": { "type": "Point", "coordinates": [ 85.320358753622656, 27.634460937093255 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3597, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+9s+Ind", "fptarea": 98, "repvalue": 882000, "xcoord": 85.321439602102487, "ycoord": 27.636048742875328 }, "geometry": { "type": "Point", "coordinates": [ 85.321439602102487, 27.636048742875328 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3598, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 90, "repvalue": 540000, "xcoord": 85.322866961255755, "ycoord": 27.636656534349108 }, "geometry": { "type": "Point", "coordinates": [ 85.322866961255755, 27.636656534349108 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3599, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 97, "repvalue": 970000, "xcoord": 85.321394541607333, "ycoord": 27.639000791293398 }, "geometry": { "type": "Point", "coordinates": [ 85.321394541607333, 27.639000791293398 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3600, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Ind", "fptarea": 93, "repvalue": 837000, "xcoord": 85.322305503747927, "ycoord": 27.637240260848891 }, "geometry": { "type": "Point", "coordinates": [ 85.322305503747927, 27.637240260848891 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3601, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 93, "repvalue": 837000, "xcoord": 85.323952366232731, "ycoord": 27.637949117451278 }, "geometry": { "type": "Point", "coordinates": [ 85.323952366232731, 27.637949117451278 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3602, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Ind", "fptarea": 101, "repvalue": 505000, "xcoord": 85.320321182044751, "ycoord": 27.636920976730764 }, "geometry": { "type": "Point", "coordinates": [ 85.320321182044751, 27.636920976730764 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3603, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 97, "repvalue": 582000, "xcoord": 85.322612960264706, "ycoord": 27.638818697999533 }, "geometry": { "type": "Point", "coordinates": [ 85.322612960264706, 27.638818697999533 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3604, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 90, "repvalue": 720000, "xcoord": 85.323044424745063, "ycoord": 27.639512856123886 }, "geometry": { "type": "Point", "coordinates": [ 85.323044424745063, 27.639512856123886 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3605, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 97, "repvalue": 582000, "xcoord": 85.323968863303634, "ycoord": 27.636866698266797 }, "geometry": { "type": "Point", "coordinates": [ 85.323968863303634, 27.636866698266797 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3606, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 90, "repvalue": 720000, "xcoord": 85.320797699947036, "ycoord": 27.634663093165084 }, "geometry": { "type": "Point", "coordinates": [ 85.320797699947036, 27.634663093165084 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3607, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Ind", "fptarea": 97, "repvalue": 970000, "xcoord": 85.324294336825943, "ycoord": 27.637264311771425 }, "geometry": { "type": "Point", "coordinates": [ 85.324294336825943, 27.637264311771425 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3608, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Ind", "fptarea": 101, "repvalue": 909000, "xcoord": 85.32053164299704, "ycoord": 27.637612464607884 }, "geometry": { "type": "Point", "coordinates": [ 85.32053164299704, 27.637612464607884 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3609, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 94, "repvalue": 752000, "xcoord": 85.32225896277879, "ycoord": 27.640290711690273 }, "geometry": { "type": "Point", "coordinates": [ 85.32225896277879, 27.640290711690273 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3610, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 91, "repvalue": 819000, "xcoord": 85.323036921213472, "ycoord": 27.640004864445146 }, "geometry": { "type": "Point", "coordinates": [ 85.323036921213472, 27.640004864445146 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3611, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 93, "repvalue": 651000, "xcoord": 85.323617891717689, "ycoord": 27.638141913470637 }, "geometry": { "type": "Point", "coordinates": [ 85.323617891717689, 27.638141913470637 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3612, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 95, "repvalue": 570000, "xcoord": 85.320056606886638, "ycoord": 27.639771944017198 }, "geometry": { "type": "Point", "coordinates": [ 85.320056606886638, 27.639771944017198 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3613, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 96, "repvalue": 864000, "xcoord": 85.320824047785493, "ycoord": 27.640174920066261 }, "geometry": { "type": "Point", "coordinates": [ 85.320824047785493, 27.640174920066261 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3614, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 87, "repvalue": 870000, "xcoord": 85.320903681032391, "ycoord": 27.634959636041692 }, "geometry": { "type": "Point", "coordinates": [ 85.320903681032391, 27.634959636041692 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3615, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 92, "repvalue": 828000, "xcoord": 85.323296919334041, "ycoord": 27.63744909329565 }, "geometry": { "type": "Point", "coordinates": [ 85.323296919334041, 27.63744909329565 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3616, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+9s+Ind", "fptarea": 102, "repvalue": 918000, "xcoord": 85.3226339739265, "ycoord": 27.637441074671361 }, "geometry": { "type": "Point", "coordinates": [ 85.3226339739265, 27.637441074671361 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3617, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 86, "repvalue": 774000, "xcoord": 85.325290252822086, "ycoord": 27.637177924731169 }, "geometry": { "type": "Point", "coordinates": [ 85.325290252822086, 27.637177924731169 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3618, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 87, "repvalue": 783000, "xcoord": 85.319713098071304, "ycoord": 27.640555138972122 }, "geometry": { "type": "Point", "coordinates": [ 85.319713098071304, 27.640555138972122 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3619, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Ind", "fptarea": 86, "repvalue": 430000, "xcoord": 85.321075083689351, "ycoord": 27.638209564975288 }, "geometry": { "type": "Point", "coordinates": [ 85.321075083689351, 27.638209564975288 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3620, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 95, "repvalue": 760000, "xcoord": 85.325606742436406, "ycoord": 27.638165946292318 }, "geometry": { "type": "Point", "coordinates": [ 85.325606742436406, 27.638165946292318 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3621, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 101, "repvalue": 808000, "xcoord": 85.320663171201389, "ycoord": 27.636236180774429 }, "geometry": { "type": "Point", "coordinates": [ 85.320663171201389, 27.636236180774429 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3622, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Ind", "fptarea": 91, "repvalue": 546000, "xcoord": 85.320712051448822, "ycoord": 27.640271983297708 }, "geometry": { "type": "Point", "coordinates": [ 85.320712051448822, 27.640271983297708 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3623, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 86, "repvalue": 774000, "xcoord": 85.325714237778826, "ycoord": 27.638364084254157 }, "geometry": { "type": "Point", "coordinates": [ 85.325714237778826, 27.638364084254157 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3624, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 99, "repvalue": 693000, "xcoord": 85.323063933037204, "ycoord": 27.638233634316396 }, "geometry": { "type": "Point", "coordinates": [ 85.323063933037204, 27.638233634316396 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3625, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 103, "repvalue": 618000, "xcoord": 85.320050593318356, "ycoord": 27.640165550058487 }, "geometry": { "type": "Point", "coordinates": [ 85.320050593318356, 27.640165550058487 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3626, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 94, "repvalue": 846000, "xcoord": 85.323384905936919, "ycoord": 27.638926454992362 }, "geometry": { "type": "Point", "coordinates": [ 85.323384905936919, 27.638926454992362 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3627, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Ind", "fptarea": 102, "repvalue": 612000, "xcoord": 85.320207685694342, "ycoord": 27.637116441286167 }, "geometry": { "type": "Point", "coordinates": [ 85.320207685694342, 27.637116441286167 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3628, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 99, "repvalue": 891000, "xcoord": 85.321626039718055, "ycoord": 27.638314655376405 }, "geometry": { "type": "Point", "coordinates": [ 85.321626039718055, 27.638314655376405 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3629, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 89, "repvalue": 534000, "xcoord": 85.320170106504904, "ycoord": 27.639576479790769 }, "geometry": { "type": "Point", "coordinates": [ 85.320170106504904, 27.639576479790769 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3630, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 92, "repvalue": 828000, "xcoord": 85.320268573836088, "ycoord": 27.64036503067754 }, "geometry": { "type": "Point", "coordinates": [ 85.320268573836088, 27.64036503067754 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3631, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Ind", "fptarea": 97, "repvalue": 776000, "xcoord": 85.322087525234011, "ycoord": 27.637040783458428 }, "geometry": { "type": "Point", "coordinates": [ 85.322087525234011, 27.637040783458428 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3632, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Ind", "fptarea": 95, "repvalue": 760000, "xcoord": 85.320793192748269, "ycoord": 27.634958298028142 }, "geometry": { "type": "Point", "coordinates": [ 85.320793192748269, 27.634958298028142 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3633, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Ind", "fptarea": 89, "repvalue": 623000, "xcoord": 85.321857534720948, "ycoord": 27.637628518879598 }, "geometry": { "type": "Point", "coordinates": [ 85.321857534720948, 27.637628518879598 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3634, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 101, "repvalue": 505000, "xcoord": 85.321594498561524, "ycoord": 27.640381088930866 }, "geometry": { "type": "Point", "coordinates": [ 85.321594498561524, 27.640381088930866 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3635, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 98, "repvalue": 980000, "xcoord": 85.32203797535459, "ycoord": 27.640288037261346 }, "geometry": { "type": "Point", "coordinates": [ 85.32203797535459, 27.640288037261346 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3636, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 101, "repvalue": 909000, "xcoord": 85.320297133736034, "ycoord": 27.63849540161592 }, "geometry": { "type": "Point", "coordinates": [ 85.320297133736034, 27.63849540161592 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3637, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 91, "repvalue": 455000, "xcoord": 85.321709498126907, "ycoord": 27.640087221776351 }, "geometry": { "type": "Point", "coordinates": [ 85.321709498126907, 27.640087221776351 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3638, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Ind", "fptarea": 87, "repvalue": 522000, "xcoord": 85.324197341450173, "ycoord": 27.636377360480896 }, "geometry": { "type": "Point", "coordinates": [ 85.324197341450173, 27.636377360480896 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3639, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 97, "repvalue": 582000, "xcoord": 85.320312164157542, "ycoord": 27.637511386106862 }, "geometry": { "type": "Point", "coordinates": [ 85.320312164157542, 27.637511386106862 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3640, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 95, "repvalue": 855000, "xcoord": 85.32385837293026, "ycoord": 27.636865362610472 }, "geometry": { "type": "Point", "coordinates": [ 85.32385837293026, 27.636865362610472 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3641, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 90, "repvalue": 810000, "xcoord": 85.323755381916513, "ycoord": 27.636372018142662 }, "geometry": { "type": "Point", "coordinates": [ 85.323755381916513, 27.636372018142662 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3642, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 105, "repvalue": 735000, "xcoord": 85.321173556872836, "ycoord": 27.638998115601545 }, "geometry": { "type": "Point", "coordinates": [ 85.321173556872836, 27.638998115601545 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3643, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 94, "repvalue": 658000, "xcoord": 85.320940551718977, "ycoord": 27.63978265206741 }, "geometry": { "type": "Point", "coordinates": [ 85.320940551718977, 27.63978265206741 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3644, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 98, "repvalue": 490000, "xcoord": 85.320848090265414, "ycoord": 27.638600495136096 }, "geometry": { "type": "Point", "coordinates": [ 85.320848090265414, 27.638600495136096 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3645, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 88, "repvalue": 528000, "xcoord": 85.321966524213281, "ycoord": 27.637728257803332 }, "geometry": { "type": "Point", "coordinates": [ 85.321966524213281, 27.637728257803332 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3646, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+10s+Ind", "fptarea": 90, "repvalue": 900000, "xcoord": 85.320298636812467, "ycoord": 27.638397000071645 }, "geometry": { "type": "Point", "coordinates": [ 85.320298636812467, 27.638397000071645 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3647, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 100, "repvalue": 800000, "xcoord": 85.3234104107093, "ycoord": 27.637253625991161 }, "geometry": { "type": "Point", "coordinates": [ 85.3234104107093, 27.637253625991161 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3648, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+10s+Ind", "fptarea": 97, "repvalue": 970000, "xcoord": 85.321120151244855, "ycoord": 27.63525751670484 }, "geometry": { "type": "Point", "coordinates": [ 85.321120151244855, 27.63525751670484 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3649, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 105, "repvalue": 840000, "xcoord": 85.322142462848745, "ycoord": 27.640682980954683 }, "geometry": { "type": "Point", "coordinates": [ 85.322142462848745, 27.640682980954683 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3650, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 95, "repvalue": 950000, "xcoord": 85.3227759804317, "ycoord": 27.635375975678695 }, "geometry": { "type": "Point", "coordinates": [ 85.3227759804317, 27.635375975678695 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3651, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 103, "repvalue": 927000, "xcoord": 85.323640392167462, "ycoord": 27.636665887560056 }, "geometry": { "type": "Point", "coordinates": [ 85.323640392167462, 27.636665887560056 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3652, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 95, "repvalue": 760000, "xcoord": 85.322004060283561, "ycoord": 27.635268216373031 }, "geometry": { "type": "Point", "coordinates": [ 85.322004060283561, 27.635268216373031 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3653, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Ind", "fptarea": 88, "repvalue": 616000, "xcoord": 85.324043361259612, "ycoord": 27.639229675595949 }, "geometry": { "type": "Point", "coordinates": [ 85.324043361259612, 27.639229675595949 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3654, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 93, "repvalue": 651000, "xcoord": 85.323054929369789, "ycoord": 27.638824044412306 }, "geometry": { "type": "Point", "coordinates": [ 85.323054929369789, 27.638824044412306 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3655, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+5s+Ind", "fptarea": 88, "repvalue": 440000, "xcoord": 85.325164775397269, "ycoord": 27.63816060812843 }, "geometry": { "type": "Point", "coordinates": [ 85.325164775397269, 27.63816060812843 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3656, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 94, "repvalue": 658000, "xcoord": 85.321388533023566, "ycoord": 27.639394397649031 }, "geometry": { "type": "Point", "coordinates": [ 85.321388533023566, 27.639394397649031 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3657, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 104, "repvalue": 832000, "xcoord": 85.325390254388068, "ycoord": 27.63786807196405 }, "geometry": { "type": "Point", "coordinates": [ 85.325390254388068, 27.63786807196405 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3658, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+7s+Ind", "fptarea": 100, "repvalue": 700000, "xcoord": 85.325726223342002, "ycoord": 27.637576869655675 }, "geometry": { "type": "Point", "coordinates": [ 85.325726223342002, 27.637576869655675 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3659, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 92, "repvalue": 736000, "xcoord": 85.322890970909555, "ycoord": 27.635082106968738 }, "geometry": { "type": "Point", "coordinates": [ 85.322890970909555, 27.635082106968738 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3660, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 100, "repvalue": 900000, "xcoord": 85.320159583478457, "ycoord": 27.640265290407172 }, "geometry": { "type": "Point", "coordinates": [ 85.320159583478457, 27.640265290407172 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3661, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 90, "repvalue": 630000, "xcoord": 85.322123556304248, "ycoord": 27.634679143322206 }, "geometry": { "type": "Point", "coordinates": [ 85.322123556304248, 27.634679143322206 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3662, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 88, "repvalue": 792000, "xcoord": 85.320370048626714, "ycoord": 27.640956778449532 }, "geometry": { "type": "Point", "coordinates": [ 85.320370048626714, 27.640956778449532 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3663, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 94, "repvalue": 752000, "xcoord": 85.320799202331401, "ycoord": 27.634564691541115 }, "geometry": { "type": "Point", "coordinates": [ 85.320799202331401, 27.634564691541115 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3664, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 95, "repvalue": 570000, "xcoord": 85.321040527255207, "ycoord": 27.640472801085398 }, "geometry": { "type": "Point", "coordinates": [ 85.321040527255207, 27.640472801085398 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3665, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 91, "repvalue": 819000, "xcoord": 85.324606319915759, "ycoord": 27.638547540497829 }, "geometry": { "type": "Point", "coordinates": [ 85.324606319915759, 27.638547540497829 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3666, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 102, "repvalue": 612000, "xcoord": 85.32353140208231, "ycoord": 27.636566149917368 }, "geometry": { "type": "Point", "coordinates": [ 85.32353140208231, 27.636566149917368 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3667, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 88, "repvalue": 792000, "xcoord": 85.320597049041965, "ycoord": 27.640565849490176 }, "geometry": { "type": "Point", "coordinates": [ 85.320597049041965, 27.640565849490176 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3668, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Ind", "fptarea": 96, "repvalue": 960000, "xcoord": 85.321514046040647, "ycoord": 27.638411719396348 }, "geometry": { "type": "Point", "coordinates": [ 85.321514046040647, 27.638411719396348 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3669, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 91, "repvalue": 728000, "xcoord": 85.321190082022767, "ycoord": 27.637915698124523 }, "geometry": { "type": "Point", "coordinates": [ 85.321190082022767, 27.637915698124523 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3670, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 95, "repvalue": 570000, "xcoord": 85.323516401061056, "ycoord": 27.637550167187019 }, "geometry": { "type": "Point", "coordinates": [ 85.323516401061056, 27.637550167187019 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3671, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 96, "repvalue": 960000, "xcoord": 85.32270994384838, "ycoord": 27.639705649629057 }, "geometry": { "type": "Point", "coordinates": [ 85.32270994384838, 27.639705649629057 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3672, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 99, "repvalue": 594000, "xcoord": 85.319474062676221, "ycoord": 27.641733278040448 }, "geometry": { "type": "Point", "coordinates": [ 85.319474062676221, 27.641733278040448 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3673, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 89, "repvalue": 623000, "xcoord": 85.322747466441186, "ycoord": 27.637245607961386 }, "geometry": { "type": "Point", "coordinates": [ 85.322747466441186, 27.637245607961386 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3674, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 97, "repvalue": 776000, "xcoord": 85.32293393176603, "ycoord": 27.639511519613738 }, "geometry": { "type": "Point", "coordinates": [ 85.32293393176603, 27.639511519613738 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3675, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 103, "repvalue": 824000, "xcoord": 85.322114548947638, "ycoord": 27.635269553435744 }, "geometry": { "type": "Point", "coordinates": [ 85.322114548947638, 27.635269553435744 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3676, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Ind", "fptarea": 105, "repvalue": 1050000, "xcoord": 85.320619592344045, "ycoord": 27.639089826384549 }, "geometry": { "type": "Point", "coordinates": [ 85.320619592344045, 27.639089826384549 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3677, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 99, "repvalue": 693000, "xcoord": 85.320607569462922, "ycoord": 27.639877038748772 }, "geometry": { "type": "Point", "coordinates": [ 85.320607569462922, 27.639877038748772 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3678, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 102, "repvalue": 918000, "xcoord": 85.324177847874736, "ycoord": 27.637656583374454 }, "geometry": { "type": "Point", "coordinates": [ 85.324177847874736, 27.637656583374454 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3679, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 95, "repvalue": 760000, "xcoord": 85.321297568993174, "ycoord": 27.638113839155235 }, "geometry": { "type": "Point", "coordinates": [ 85.321297568993174, 27.638113839155235 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3680, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 87, "repvalue": 783000, "xcoord": 85.32173803319796, "ycoord": 27.638217591255888 }, "geometry": { "type": "Point", "coordinates": [ 85.32173803319796, 27.638217591255888 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3681, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 88, "repvalue": 528000, "xcoord": 85.320430169409931, "ycoord": 27.637020716779439 }, "geometry": { "type": "Point", "coordinates": [ 85.320430169409931, 27.637020716779439 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3682, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Ind", "fptarea": 99, "repvalue": 495000, "xcoord": 85.322157478155759, "ycoord": 27.63969896482331 }, "geometry": { "type": "Point", "coordinates": [ 85.322157478155759, 27.63969896482331 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3683, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 86, "repvalue": 516000, "xcoord": 85.320174616259081, "ycoord": 27.639281275218799 }, "geometry": { "type": "Point", "coordinates": [ 85.320174616259081, 27.639281275218799 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3684, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 104, "repvalue": 936000, "xcoord": 85.320292624461004, "ycoord": 27.63879060623993 }, "geometry": { "type": "Point", "coordinates": [ 85.320292624461004, 27.63879060623993 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3685, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 101, "repvalue": 909000, "xcoord": 85.32037155179485, "ycoord": 27.640858376936496 }, "geometry": { "type": "Point", "coordinates": [ 85.32037155179485, 27.640858376936496 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3686, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 87, "repvalue": 609000, "xcoord": 85.32249796458963, "ycoord": 27.639112566121078 }, "geometry": { "type": "Point", "coordinates": [ 85.32249796458963, 27.639112566121078 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3687, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 94, "repvalue": 752000, "xcoord": 85.320221213036788, "ycoord": 27.636230827199274 }, "geometry": { "type": "Point", "coordinates": [ 85.320221213036788, 27.636230827199274 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3688, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Ind", "fptarea": 93, "repvalue": 744000, "xcoord": 85.322393476980636, "ycoord": 27.638717622619708 }, "geometry": { "type": "Point", "coordinates": [ 85.322393476980636, 27.638717622619708 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3689, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 93, "repvalue": 651000, "xcoord": 85.32374788256449, "ycoord": 27.636864026866185 }, "geometry": { "type": "Point", "coordinates": [ 85.32374788256449, 27.636864026866185 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3690, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 98, "repvalue": 686000, "xcoord": 85.321809478692558, "ycoord": 27.640777370436979 }, "geometry": { "type": "Point", "coordinates": [ 85.321809478692558, 27.640777370436979 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3691, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 86, "repvalue": 774000, "xcoord": 85.321662082643087, "ycoord": 27.635953016233529 }, "geometry": { "type": "Point", "coordinates": [ 85.321662082643087, 27.635953016233529 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3692, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 98, "repvalue": 784000, "xcoord": 85.32275196883279, "ycoord": 27.636950402899448 }, "geometry": { "type": "Point", "coordinates": [ 85.32275196883279, 27.636950402899448 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3693, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 96, "repvalue": 576000, "xcoord": 85.324491329801702, "ycoord": 27.638841410532926 }, "geometry": { "type": "Point", "coordinates": [ 85.324491329801702, 27.638841410532926 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3694, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+10s+Ind", "fptarea": 91, "repvalue": 910000, "xcoord": 85.322848952737431, "ycoord": 27.637837354637107 }, "geometry": { "type": "Point", "coordinates": [ 85.322848952737431, 27.637837354637107 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3695, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 102, "repvalue": 918000, "xcoord": 85.320398607518669, "ycoord": 27.639087149449942 }, "geometry": { "type": "Point", "coordinates": [ 85.320398607518669, 27.639087149449942 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3696, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 86, "repvalue": 688000, "xcoord": 85.323193930462736, "ycoord": 27.636955748537769 }, "geometry": { "type": "Point", "coordinates": [ 85.323193930462736, 27.636955748537769 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3697, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Ind", "fptarea": 97, "repvalue": 485000, "xcoord": 85.322959444029919, "ycoord": 27.637838691140711 }, "geometry": { "type": "Point", "coordinates": [ 85.322959444029919, 27.637838691140711 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3698, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 98, "repvalue": 588000, "xcoord": 85.323313422504512, "ycoord": 27.636366674397031 }, "geometry": { "type": "Point", "coordinates": [ 85.323313422504512, 27.636366674397031 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3699, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Ind", "fptarea": 90, "repvalue": 450000, "xcoord": 85.322040978613515, "ycoord": 27.640091234046196 }, "geometry": { "type": "Point", "coordinates": [ 85.322040978613515, 27.640091234046196 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3700, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 95, "repvalue": 760000, "xcoord": 85.322756471155941, "ycoord": 27.636655197824265 }, "geometry": { "type": "Point", "coordinates": [ 85.322756471155941, 27.636655197824265 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3701, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 99, "repvalue": 594000, "xcoord": 85.319820584630051, "ycoord": 27.640753281072556 }, "geometry": { "type": "Point", "coordinates": [ 85.319820584630051, 27.640753281072556 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3702, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 104, "repvalue": 624000, "xcoord": 85.321200597547517, "ycoord": 27.637226886910039 }, "geometry": { "type": "Point", "coordinates": [ 85.321200597547517, 27.637226886910039 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3703, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 100, "repvalue": 600000, "xcoord": 85.322854955698588, "ycoord": 27.637443747897994 }, "geometry": { "type": "Point", "coordinates": [ 85.322854955698588, 27.637443747897994 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3704, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 104, "repvalue": 728000, "xcoord": 85.322841448864835, "ycoord": 27.638329363027889 }, "geometry": { "type": "Point", "coordinates": [ 85.322841448864835, 27.638329363027889 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3705, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 87, "repvalue": 522000, "xcoord": 85.3217830829782, "ycoord": 27.635265541983738 }, "geometry": { "type": "Point", "coordinates": [ 85.3217830829782, 27.635265541983738 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3706, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 98, "repvalue": 980000, "xcoord": 85.322700937718537, "ycoord": 27.6402960594924 }, "geometry": { "type": "Point", "coordinates": [ 85.322700937718537, 27.6402960594924 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3707, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+9s+Ind", "fptarea": 88, "repvalue": 792000, "xcoord": 85.322618964320256, "ycoord": 27.638425091363782 }, "geometry": { "type": "Point", "coordinates": [ 85.322618964320256, 27.638425091363782 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3708, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 101, "repvalue": 909000, "xcoord": 85.324289838513593, "ycoord": 27.637559517053568 }, "geometry": { "type": "Point", "coordinates": [ 85.324289838513593, 27.637559517053568 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3709, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 103, "repvalue": 927000, "xcoord": 85.321408060475378, "ycoord": 27.638115176907089 }, "geometry": { "type": "Point", "coordinates": [ 85.321408060475378, 27.638115176907089 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3710, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 90, "repvalue": 810000, "xcoord": 85.321367502020962, "ycoord": 27.64077201970829 }, "geometry": { "type": "Point", "coordinates": [ 85.321367502020962, 27.64077201970829 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3711, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+6s+Ind", "fptarea": 98, "repvalue": 588000, "xcoord": 85.319919050021539, "ycoord": 27.641541832015076 }, "geometry": { "type": "Point", "coordinates": [ 85.319919050021539, 27.641541832015076 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3712, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 100, "repvalue": 700000, "xcoord": 85.323438913442359, "ycoord": 27.635383993074687 }, "geometry": { "type": "Point", "coordinates": [ 85.323438913442359, 27.635383993074687 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3713, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 102, "repvalue": 714000, "xcoord": 85.325288754288636, "ycoord": 27.637276326544807 }, "geometry": { "type": "Point", "coordinates": [ 85.325288754288636, 27.637276326544807 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3714, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 95, "repvalue": 570000, "xcoord": 85.32020918876286, "ycoord": 27.637018039726843 }, "geometry": { "type": "Point", "coordinates": [ 85.32020918876286, 27.637018039726843 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3715, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 104, "repvalue": 624000, "xcoord": 85.321730524235178, "ycoord": 27.638709599339116 }, "geometry": { "type": "Point", "coordinates": [ 85.321730524235178, 27.638709599339116 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3716, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Ind", "fptarea": 103, "repvalue": 721000, "xcoord": 85.325160279249928, "ycoord": 27.638455813504123 }, "geometry": { "type": "Point", "coordinates": [ 85.325160279249928, 27.638455813504123 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3717, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 98, "repvalue": 588000, "xcoord": 85.320304649042015, "ycoord": 27.638003393879796 }, "geometry": { "type": "Point", "coordinates": [ 85.320304649042015, 27.638003393879796 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3718, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+9s+Ind", "fptarea": 96, "repvalue": 864000, "xcoord": 85.324198840902767, "ycoord": 27.63627895870955 }, "geometry": { "type": "Point", "coordinates": [ 85.324198840902767, 27.63627895870955 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3719, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 101, "repvalue": 808000, "xcoord": 85.320606066568487, "ycoord": 27.639975440287675 }, "geometry": { "type": "Point", "coordinates": [ 85.320606066568487, 27.639975440287675 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3720, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 87, "repvalue": 783000, "xcoord": 85.324840795106013, "ycoord": 27.637664594676185 }, "geometry": { "type": "Point", "coordinates": [ 85.324840795106013, 27.637664594676185 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3721, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 104, "repvalue": 832000, "xcoord": 85.320894667021705, "ycoord": 27.63555004576147 }, "geometry": { "type": "Point", "coordinates": [ 85.320894667021705, 27.63555004576147 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3722, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 94, "repvalue": 470000, "xcoord": 85.320442192103854, "ycoord": 27.636233504162774 }, "geometry": { "type": "Point", "coordinates": [ 85.320442192103854, 27.636233504162774 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3723, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 105, "repvalue": 945000, "xcoord": 85.32205599445156, "ycoord": 27.63910721788212 }, "geometry": { "type": "Point", "coordinates": [ 85.32205599445156, 27.63910721788212 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3724, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 100, "repvalue": 700000, "xcoord": 85.322821937905971, "ycoord": 27.639608584671681 }, "geometry": { "type": "Point", "coordinates": [ 85.322821937905971, 27.639608584671681 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3725, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Ind", "fptarea": 96, "repvalue": 672000, "xcoord": 85.321889067253565, "ycoord": 27.635562084225882 }, "geometry": { "type": "Point", "coordinates": [ 85.321889067253565, 27.635562084225882 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3726, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+5s+Ind", "fptarea": 99, "repvalue": 495000, "xcoord": 85.320106214172867, "ycoord": 27.636524693277753 }, "geometry": { "type": "Point", "coordinates": [ 85.320106214172867, 27.636524693277753 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3727, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 95, "repvalue": 855000, "xcoord": 85.32042415788014, "ycoord": 27.637414323052454 }, "geometry": { "type": "Point", "coordinates": [ 85.32042415788014, 27.637414323052454 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3728, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+5s+Ind", "fptarea": 88, "repvalue": 440000, "xcoord": 85.32207551390313, "ycoord": 27.637827996648763 }, "geometry": { "type": "Point", "coordinates": [ 85.32207551390313, 27.637827996648763 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3729, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 95, "repvalue": 570000, "xcoord": 85.32015507349567, "ycoord": 27.64056049493497 }, "geometry": { "type": "Point", "coordinates": [ 85.32015507349567, 27.64056049493497 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3730, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 97, "repvalue": 970000, "xcoord": 85.320957079711846, "ycoord": 27.638700234842407 }, "geometry": { "type": "Point", "coordinates": [ 85.320957079711846, 27.638700234842407 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3731, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Ind", "fptarea": 91, "repvalue": 546000, "xcoord": 85.320840577199903, "ycoord": 27.639092502967255 }, "geometry": { "type": "Point", "coordinates": [ 85.320840577199903, 27.639092502967255 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3732, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 100, "repvalue": 600000, "xcoord": 85.32058953422704, "ycoord": 27.64105785711844 }, "geometry": { "type": "Point", "coordinates": [ 85.32058953422704, 27.64105785711844 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3733, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 91, "repvalue": 637000, "xcoord": 85.322160481125849, "ycoord": 27.639502161579365 }, "geometry": { "type": "Point", "coordinates": [ 85.322160481125849, 27.639502161579365 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3734, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 87, "repvalue": 696000, "xcoord": 85.323051928086485, "ycoord": 27.639020847765835 }, "geometry": { "type": "Point", "coordinates": [ 85.323051928086485, 27.639020847765835 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3735, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 88, "repvalue": 528000, "xcoord": 85.3244988264574, "ycoord": 27.638349401762124 }, "geometry": { "type": "Point", "coordinates": [ 85.3244988264574, 27.638349401762124 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3736, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 102, "repvalue": 918000, "xcoord": 85.32216498552387, "ycoord": 27.639206956702417 }, "geometry": { "type": "Point", "coordinates": [ 85.32216498552387, 27.639206956702417 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3737, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 91, "repvalue": 910000, "xcoord": 85.319374096335679, "ycoord": 27.641043128398131 }, "geometry": { "type": "Point", "coordinates": [ 85.319374096335679, 27.641043128398131 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3738, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 96, "repvalue": 864000, "xcoord": 85.322167988417846, "ycoord": 27.63901015344376 }, "geometry": { "type": "Point", "coordinates": [ 85.322167988417846, 27.63901015344376 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3739, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+5s+Ind", "fptarea": 97, "repvalue": 485000, "xcoord": 85.321450115232068, "ycoord": 27.635359931387153 }, "geometry": { "type": "Point", "coordinates": [ 85.321450115232068, 27.635359931387153 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3740, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 101, "repvalue": 1010000, "xcoord": 85.320071640273909, "ycoord": 27.63878792881092 }, "geometry": { "type": "Point", "coordinates": [ 85.320071640273909, 27.63878792881092 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3741, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 87, "repvalue": 435000, "xcoord": 85.320736095630863, "ycoord": 27.638697558480178 }, "geometry": { "type": "Point", "coordinates": [ 85.320736095630863, 27.638697558480178 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3742, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Ind", "fptarea": 90, "repvalue": 450000, "xcoord": 85.321848524809369, "ycoord": 27.638218928661431 }, "geometry": { "type": "Point", "coordinates": [ 85.321848524809369, 27.638218928661431 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3743, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+7s+Ind", "fptarea": 87, "repvalue": 609000, "xcoord": 85.323259408706036, "ycoord": 27.639909135584702 }, "geometry": { "type": "Point", "coordinates": [ 85.323259408706036, 27.639909135584702 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3744, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+10s+Ind", "fptarea": 98, "repvalue": 980000, "xcoord": 85.321563607442144, "ycoord": 27.635164465588506 }, "geometry": { "type": "Point", "coordinates": [ 85.321563607442144, 27.635164465588506 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3745, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+7s+Ind", "fptarea": 105, "repvalue": 735000, "xcoord": 85.321612522490668, "ycoord": 27.63920026983638 }, "geometry": { "type": "Point", "coordinates": [ 85.321612522490668, 27.63920026983638 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3746, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 86, "repvalue": 516000, "xcoord": 85.324930301498441, "ycoord": 27.63904355450606 }, "geometry": { "type": "Point", "coordinates": [ 85.324930301498441, 27.63904355450606 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3747, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 97, "repvalue": 873000, "xcoord": 85.320773660761574, "ycoord": 27.636237518948313 }, "geometry": { "type": "Point", "coordinates": [ 85.320773660761574, 27.636237518948313 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3748, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 98, "repvalue": 686000, "xcoord": 85.320628609184965, "ycoord": 27.638499417049552 }, "geometry": { "type": "Point", "coordinates": [ 85.320628609184965, 27.638499417049552 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3749, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 100, "repvalue": 800000, "xcoord": 85.321936491931993, "ycoord": 27.639696290285183 }, "geometry": { "type": "Point", "coordinates": [ 85.321936491931993, 27.639696290285183 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3750, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Ind", "fptarea": 92, "repvalue": 920000, "xcoord": 85.322373960490395, "ycoord": 27.63999684389778 }, "geometry": { "type": "Point", "coordinates": [ 85.322373960490395, 27.63999684389778 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3751, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 85, "repvalue": 850000, "xcoord": 85.320364035877915, "ycoord": 27.641350384486991 }, "geometry": { "type": "Point", "coordinates": [ 85.320364035877915, 27.641350384486991 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3752, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 97, "repvalue": 679000, "xcoord": 85.321597502625863, "ycoord": 27.64018428576318 }, "geometry": { "type": "Point", "coordinates": [ 85.321597502625863, 27.64018428576318 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3753, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 92, "repvalue": 552000, "xcoord": 85.321017173735939, "ycoord": 27.634764170704457 }, "geometry": { "type": "Point", "coordinates": [ 85.321017173735939, 27.634764170704457 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3754, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 104, "repvalue": 832000, "xcoord": 85.321030009279923, "ycoord": 27.641161611920847 }, "geometry": { "type": "Point", "coordinates": [ 85.321030009279923, 27.641161611920847 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3755, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+10s+Ind", "fptarea": 102, "repvalue": 1020000, "xcoord": 85.320822545065752, "ycoord": 27.640273321611883 }, "geometry": { "type": "Point", "coordinates": [ 85.320822545065752, 27.640273321611883 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3756, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 91, "repvalue": 546000, "xcoord": 85.322158979644612, "ycoord": 27.639600563202073 }, "geometry": { "type": "Point", "coordinates": [ 85.322158979644612, 27.639600563202073 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3757, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 91, "repvalue": 546000, "xcoord": 85.319937092826137, "ycoord": 27.640361014134722 }, "geometry": { "type": "Point", "coordinates": [ 85.319937092826137, 27.640361014134722 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3758, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+10s+Ind", "fptarea": 101, "repvalue": 1010000, "xcoord": 85.320724073783595, "ycoord": 27.639484770936047 }, "geometry": { "type": "Point", "coordinates": [ 85.320724073783595, 27.639484770936047 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3759, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 89, "repvalue": 712000, "xcoord": 85.3228234387946, "ycoord": 27.639510183015602 }, "geometry": { "type": "Point", "coordinates": [ 85.3228234387946, 27.639510183015602 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3760, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 101, "repvalue": 505000, "xcoord": 85.321978536273306, "ycoord": 27.636941044645727 }, "geometry": { "type": "Point", "coordinates": [ 85.321978536273306, 27.636941044645727 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3761, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 103, "repvalue": 927000, "xcoord": 85.325270771294612, "ycoord": 27.638457148193712 }, "geometry": { "type": "Point", "coordinates": [ 85.325270771294612, 27.638457148193712 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3762, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 104, "repvalue": 936000, "xcoord": 85.319831109997367, "ycoord": 27.640064470624647 }, "geometry": { "type": "Point", "coordinates": [ 85.319831109997367, 27.640064470624647 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3763, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Ind", "fptarea": 92, "repvalue": 644000, "xcoord": 85.324268845484767, "ycoord": 27.638937141528384 }, "geometry": { "type": "Point", "coordinates": [ 85.324268845484767, 27.638937141528384 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3764, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 97, "repvalue": 582000, "xcoord": 85.32405685893211, "ycoord": 27.638344060034999 }, "geometry": { "type": "Point", "coordinates": [ 85.32405685893211, 27.638344060034999 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3765, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Ind", "fptarea": 91, "repvalue": 546000, "xcoord": 85.320540659744907, "ycoord": 27.637022055173791 }, "geometry": { "type": "Point", "coordinates": [ 85.320540659744907, 27.637022055173791 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3766, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 90, "repvalue": 720000, "xcoord": 85.319811562589393, "ycoord": 27.641343689970476 }, "geometry": { "type": "Point", "coordinates": [ 85.319811562589393, 27.641343689970476 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3767, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Ind", "fptarea": 88, "repvalue": 704000, "xcoord": 85.324188344574978, "ycoord": 27.636967771078059 }, "geometry": { "type": "Point", "coordinates": [ 85.324188344574978, 27.636967771078059 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3768, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 90, "repvalue": 720000, "xcoord": 85.324394332147463, "ycoord": 27.637954459441378 }, "geometry": { "type": "Point", "coordinates": [ 85.324394332147463, 27.637954459441378 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3769, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 100, "repvalue": 1000000, "xcoord": 85.325173767486831, "ycoord": 27.637570197337286 }, "geometry": { "type": "Point", "coordinates": [ 85.325173767486831, 27.637570197337286 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3770, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 104, "repvalue": 624000, "xcoord": 85.323870371012262, "ycoord": 27.63607814859072 }, "geometry": { "type": "Point", "coordinates": [ 85.323870371012262, 27.63607814859072 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3771, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 87, "repvalue": 870000, "xcoord": 85.320828555898999, "ycoord": 27.639879715420562 }, "geometry": { "type": "Point", "coordinates": [ 85.320828555898999, 27.639879715420562 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3772, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 86, "repvalue": 516000, "xcoord": 85.322515977850074, "ycoord": 27.637931746262897 }, "geometry": { "type": "Point", "coordinates": [ 85.322515977850074, 27.637931746262897 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3773, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Ind", "fptarea": 96, "repvalue": 864000, "xcoord": 85.324843793016143, "ycoord": 27.637467791103635 }, "geometry": { "type": "Point", "coordinates": [ 85.324843793016143, 27.637467791103635 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3774, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Ind", "fptarea": 90, "repvalue": 810000, "xcoord": 85.323513400765549, "ycoord": 27.637746970623287 }, "geometry": { "type": "Point", "coordinates": [ 85.323513400765549, 27.637746970623287 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3775, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 102, "repvalue": 714000, "xcoord": 85.325515729328814, "ycoord": 27.636885388219017 }, "geometry": { "type": "Point", "coordinates": [ 85.325515729328814, 27.636885388219017 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3776, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 95, "repvalue": 665000, "xcoord": 85.320621095169912, "ycoord": 27.638991424832398 }, "geometry": { "type": "Point", "coordinates": [ 85.320621095169912, 27.638991424832398 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3777, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 87, "repvalue": 696000, "xcoord": 85.323256407650433, "ycoord": 27.640105938928087 }, "geometry": { "type": "Point", "coordinates": [ 85.323256407650433, 27.640105938928087 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3778, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 93, "repvalue": 558000, "xcoord": 85.323035420484345, "ycoord": 27.640103266104987 }, "geometry": { "type": "Point", "coordinates": [ 85.323035420484345, 27.640103266104987 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3779, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 92, "repvalue": 828000, "xcoord": 85.319941603355815, "ycoord": 27.640065809631501 }, "geometry": { "type": "Point", "coordinates": [ 85.319941603355815, 27.640065809631501 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3780, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Ind", "fptarea": 93, "repvalue": 837000, "xcoord": 85.325491755406745, "ycoord": 27.63845981730897 }, "geometry": { "type": "Point", "coordinates": [ 85.325491755406745, 27.63845981730897 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3781, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Ind", "fptarea": 95, "repvalue": 665000, "xcoord": 85.324274843645028, "ycoord": 27.638543534565017 }, "geometry": { "type": "Point", "coordinates": [ 85.324274843645028, 27.638543534565017 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3782, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 93, "repvalue": 558000, "xcoord": 85.319837124325304, "ycoord": 27.639670864622033 }, "geometry": { "type": "Point", "coordinates": [ 85.319837124325304, 27.639670864622033 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3783, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 86, "repvalue": 774000, "xcoord": 85.322334025243407, "ycoord": 27.635370628988859 }, "geometry": { "type": "Point", "coordinates": [ 85.322334025243407, 27.635370628988859 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3784, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+10s+Ind", "fptarea": 92, "repvalue": 920000, "xcoord": 85.32079469515547, "ycoord": 27.634859896408592 }, "geometry": { "type": "Point", "coordinates": [ 85.32079469515547, 27.634859896408592 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3785, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 95, "repvalue": 855000, "xcoord": 85.321895073069683, "ycoord": 27.635168477551574 }, "geometry": { "type": "Point", "coordinates": [ 85.321895073069683, 27.635168477551574 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3786, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Ind", "fptarea": 88, "repvalue": 616000, "xcoord": 85.32382537569589, "ycoord": 27.639030200679091 }, "geometry": { "type": "Point", "coordinates": [ 85.32382537569589, 27.639030200679091 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3787, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Ind", "fptarea": 92, "repvalue": 460000, "xcoord": 85.321753050552573, "ycoord": 27.637233574979028 }, "geometry": { "type": "Point", "coordinates": [ 85.321753050552573, 27.637233574979028 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3788, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 96, "repvalue": 480000, "xcoord": 85.320861613303506, "ycoord": 27.637714880947257 }, "geometry": { "type": "Point", "coordinates": [ 85.320861613303506, 27.637714880947257 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3789, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 103, "repvalue": 824000, "xcoord": 85.325945707765939, "ycoord": 27.63767793980832 }, "geometry": { "type": "Point", "coordinates": [ 85.325945707765939, 27.63767793980832 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3790, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 94, "repvalue": 564000, "xcoord": 85.3218470231308, "ycoord": 27.638317330286586 }, "geometry": { "type": "Point", "coordinates": [ 85.3218470231308, 27.638317330286586 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3791, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 98, "repvalue": 784000, "xcoord": 85.323504399696546, "ycoord": 27.638337380896768 }, "geometry": { "type": "Point", "coordinates": [ 85.323504399696546, 27.638337380896768 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3792, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 93, "repvalue": 558000, "xcoord": 85.321154025962244, "ycoord": 27.64027733602655 }, "geometry": { "type": "Point", "coordinates": [ 85.321154025962244, 27.64027733602655 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3793, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 86, "repvalue": 602000, "xcoord": 85.320331702566506, "ycoord": 27.636232165725001 }, "geometry": { "type": "Point", "coordinates": [ 85.320331702566506, 27.636232165725001 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3794, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 98, "repvalue": 882000, "xcoord": 85.325066273838516, "ycoord": 27.637372059012002 }, "geometry": { "type": "Point", "coordinates": [ 85.325066273838516, 27.637372059012002 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3795, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 104, "repvalue": 520000, "xcoord": 85.323731383320975, "ycoord": 27.637946445928414 }, "geometry": { "type": "Point", "coordinates": [ 85.323731383320975, 27.637946445928414 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3796, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 89, "repvalue": 534000, "xcoord": 85.325514231015646, "ycoord": 27.636983790048173 }, "geometry": { "type": "Point", "coordinates": [ 85.325514231015646, 27.636983790048173 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3797, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Ind", "fptarea": 89, "repvalue": 445000, "xcoord": 85.322778981744648, "ycoord": 27.635179172249607 }, "geometry": { "type": "Point", "coordinates": [ 85.322778981744648, 27.635179172249607 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3798, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 92, "repvalue": 736000, "xcoord": 85.320875135724663, "ycoord": 27.636829266639193 }, "geometry": { "type": "Point", "coordinates": [ 85.320875135724663, 27.636829266639193 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3799, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 104, "repvalue": 832000, "xcoord": 85.324834799194548, "ycoord": 27.638058201803645 }, "geometry": { "type": "Point", "coordinates": [ 85.324834799194548, 27.638058201803645 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3800, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 96, "repvalue": 576000, "xcoord": 85.320377564391265, "ycoord": 27.640464770869599 }, "geometry": { "type": "Point", "coordinates": [ 85.320377564391265, 27.640464770869599 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3801, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Ind", "fptarea": 87, "repvalue": 783000, "xcoord": 85.320775163267797, "ycoord": 27.636139117347899 }, "geometry": { "type": "Point", "coordinates": [ 85.320775163267797, 27.636139117347899 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3802, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 89, "repvalue": 712000, "xcoord": 85.321639556328805, "ycoord": 27.637429040797187 }, "geometry": { "type": "Point", "coordinates": [ 85.321639556328805, 27.637429040797187 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3803, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 102, "repvalue": 918000, "xcoord": 85.32371488315745, "ycoord": 27.639028864812545 }, "geometry": { "type": "Point", "coordinates": [ 85.32371488315745, 27.639028864812545 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3804, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 88, "repvalue": 616000, "xcoord": 85.321856033088039, "ycoord": 27.637726920513579 }, "geometry": { "type": "Point", "coordinates": [ 85.321856033088039, 27.637726920513579 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3805, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 87, "repvalue": 522000, "xcoord": 85.324855784352792, "ycoord": 27.63668057675455 }, "geometry": { "type": "Point", "coordinates": [ 85.324855784352792, 27.63668057675455 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3806, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 99, "repvalue": 792000, "xcoord": 85.322935432548292, "ycoord": 27.639413117950628 }, "geometry": { "type": "Point", "coordinates": [ 85.322935432548292, 27.639413117950628 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3807, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 90, "repvalue": 720000, "xcoord": 85.321175059197273, "ycoord": 27.638899714020081 }, "geometry": { "type": "Point", "coordinates": [ 85.321175059197273, 27.638899714020081 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3808, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 103, "repvalue": 618000, "xcoord": 85.325063276338582, "ycoord": 27.637568862609715 }, "geometry": { "type": "Point", "coordinates": [ 85.325063276338582, 27.637568862609715 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3809, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Ind", "fptarea": 90, "repvalue": 810000, "xcoord": 85.3235299020144, "ycoord": 27.636664551650956 }, "geometry": { "type": "Point", "coordinates": [ 85.3235299020144, 27.636664551650956 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3810, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+7s+Ind", "fptarea": 102, "repvalue": 714000, "xcoord": 85.320690216925328, "ycoord": 27.634464951842013 }, "geometry": { "type": "Point", "coordinates": [ 85.320690216925328, 27.634464951842013 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3811, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 104, "repvalue": 624000, "xcoord": 85.323039922648931, "ycoord": 27.639808061121055 }, "geometry": { "type": "Point", "coordinates": [ 85.323039922648931, 27.639808061121055 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3812, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 99, "repvalue": 792000, "xcoord": 85.320548173491972, "ycoord": 27.636530047271577 }, "geometry": { "type": "Point", "coordinates": [ 85.320548173491972, 27.636530047271577 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3813, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 101, "repvalue": 606000, "xcoord": 85.324073355251173, "ycoord": 27.63726164085416 }, "geometry": { "type": "Point", "coordinates": [ 85.324073355251173, 27.63726164085416 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3814, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+7s+Ind", "fptarea": 99, "repvalue": 693000, "xcoord": 85.320681201958223, "ycoord": 27.635055361539141 }, "geometry": { "type": "Point", "coordinates": [ 85.320681201958223, 27.635055361539141 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3815, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 98, "repvalue": 784000, "xcoord": 85.324406326948235, "ycoord": 27.637167245328904 }, "geometry": { "type": "Point", "coordinates": [ 85.324406326948235, 27.637167245328904 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3816, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 92, "repvalue": 644000, "xcoord": 85.325509736030568, "ycoord": 27.63727899552682 }, "geometry": { "type": "Point", "coordinates": [ 85.325509736030568, 27.63727899552682 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3817, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 95, "repvalue": 570000, "xcoord": 85.322950439952507, "ycoord": 27.638429101238593 }, "geometry": { "type": "Point", "coordinates": [ 85.322950439952507, 27.638429101238593 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3818, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 91, "repvalue": 455000, "xcoord": 85.32529324986622, "ycoord": 27.63698112109947 }, "geometry": { "type": "Point", "coordinates": [ 85.32529324986622, 27.63698112109947 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3819, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 100, "repvalue": 800000, "xcoord": 85.320748116990629, "ycoord": 27.637910345930081 }, "geometry": { "type": "Point", "coordinates": [ 85.320748116990629, 27.637910345930081 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3820, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 94, "repvalue": 940000, "xcoord": 85.323931368630255, "ycoord": 27.639326741610311 }, "geometry": { "type": "Point", "coordinates": [ 85.323931368630255, 27.639326741610311 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3821, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 92, "repvalue": 552000, "xcoord": 85.322832443966661, "ycoord": 27.638919773048244 }, "geometry": { "type": "Point", "coordinates": [ 85.322832443966661, 27.638919773048244 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3822, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Ind", "fptarea": 91, "repvalue": 819000, "xcoord": 85.320466236029063, "ycoord": 27.634659078646788 }, "geometry": { "type": "Point", "coordinates": [ 85.320466236029063, 27.634659078646788 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3823, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 101, "repvalue": 808000, "xcoord": 85.324180846969952, "ycoord": 27.637459779868557 }, "geometry": { "type": "Point", "coordinates": [ 85.324180846969952, 27.637459779868557 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3824, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 101, "repvalue": 808000, "xcoord": 85.322397980603441, "ycoord": 27.638422417674054 }, "geometry": { "type": "Point", "coordinates": [ 85.322397980603441, 27.638422417674054 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3825, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+10s+Ind", "fptarea": 103, "repvalue": 1030000, "xcoord": 85.322078516781502, "ycoord": 27.637631193360008 }, "geometry": { "type": "Point", "coordinates": [ 85.322078516781502, 27.637631193360008 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3826, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 91, "repvalue": 637000, "xcoord": 85.323483396137561, "ycoord": 27.639715004662158 }, "geometry": { "type": "Point", "coordinates": [ 85.323483396137561, 27.639715004662158 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3827, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Ind", "fptarea": 94, "repvalue": 940000, "xcoord": 85.322606956087427, "ycoord": 27.639212304611728 }, "geometry": { "type": "Point", "coordinates": [ 85.322606956087427, 27.639212304611728 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3828, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Ind", "fptarea": 87, "repvalue": 435000, "xcoord": 85.321539578707089, "ycoord": 27.63673889187735 }, "geometry": { "type": "Point", "coordinates": [ 85.321539578707089, 27.63673889187735 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3829, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 105, "repvalue": 735000, "xcoord": 85.323514900917104, "ycoord": 27.637648568905888 }, "geometry": { "type": "Point", "coordinates": [ 85.323514900917104, 27.637648568905888 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3830, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 101, "repvalue": 707000, "xcoord": 85.324071855623814, "ycoord": 27.637360042605231 }, "geometry": { "type": "Point", "coordinates": [ 85.324071855623814, 27.637360042605231 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3831, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 94, "repvalue": 752000, "xcoord": 85.325382761872731, "ycoord": 27.638360080993785 }, "geometry": { "type": "Point", "coordinates": [ 85.325382761872731, 27.638360080993785 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3832, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 105, "repvalue": 840000, "xcoord": 85.32200255893207, "ycoord": 27.635366618047914 }, "geometry": { "type": "Point", "coordinates": [ 85.32200255893207, 27.635366618047914 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3833, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 90, "repvalue": 540000, "xcoord": 85.32329841966029, "ycoord": 27.637350691584949 }, "geometry": { "type": "Point", "coordinates": [ 85.32329841966029, 27.637350691584949 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3834, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 92, "repvalue": 828000, "xcoord": 85.32263997755598, "ycoord": 27.637047467953181 }, "geometry": { "type": "Point", "coordinates": [ 85.32263997755598, 27.637047467953181 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3835, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 94, "repvalue": 564000, "xcoord": 85.320846587667546, "ycoord": 27.638698896705275 }, "geometry": { "type": "Point", "coordinates": [ 85.320846587667546, 27.638698896705275 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3836, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 89, "repvalue": 534000, "xcoord": 85.31994009985354, "ycoord": 27.640164211134046 }, "geometry": { "type": "Point", "coordinates": [ 85.31994009985354, 27.640164211134046 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3837, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Ind", "fptarea": 94, "repvalue": 752000, "xcoord": 85.325497749069555, "ycoord": 27.638066210071798 }, "geometry": { "type": "Point", "coordinates": [ 85.325497749069555, 27.638066210071798 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3838, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 92, "repvalue": 644000, "xcoord": 85.322232543275163, "ycoord": 27.634778881958418 }, "geometry": { "type": "Point", "coordinates": [ 85.322232543275163, 27.634778881958418 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3839, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 92, "repvalue": 828000, "xcoord": 85.325393251341026, "ycoord": 27.637671268341855 }, "geometry": { "type": "Point", "coordinates": [ 85.325393251341026, 27.637671268341855 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3840, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 98, "repvalue": 686000, "xcoord": 85.32109761832379, "ycoord": 27.636733541005665 }, "geometry": { "type": "Point", "coordinates": [ 85.32109761832379, 27.636733541005665 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3841, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 97, "repvalue": 873000, "xcoord": 85.325046789545794, "ycoord": 27.638651282291899 }, "geometry": { "type": "Point", "coordinates": [ 85.325046789545794, 27.638651282291899 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3842, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+8s+Ind", "fptarea": 89, "repvalue": 712000, "xcoord": 85.320993137588474, "ycoord": 27.636338596642268 }, "geometry": { "type": "Point", "coordinates": [ 85.320993137588474, 27.636338596642268 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3843, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 93, "repvalue": 744000, "xcoord": 85.321385528685994, "ycoord": 27.639591200818025 }, "geometry": { "type": "Point", "coordinates": [ 85.321385528685994, 27.639591200818025 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3844, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 100, "repvalue": 500000, "xcoord": 85.323735883205899, "ycoord": 27.637651240747285 }, "geometry": { "type": "Point", "coordinates": [ 85.323735883205899, 27.637651240747285 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3845, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 98, "repvalue": 882000, "xcoord": 85.322045483444853, "ycoord": 27.639796029212427 }, "geometry": { "type": "Point", "coordinates": [ 85.322045483444853, 27.639796029212427 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3846, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+7s+Ind", "fptarea": 92, "repvalue": 644000, "xcoord": 85.323496898596588, "ycoord": 27.638829389417531 }, "geometry": { "type": "Point", "coordinates": [ 85.323496898596588, 27.638829389417531 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3847, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 102, "repvalue": 612000, "xcoord": 85.321238149947277, "ycoord": 27.634766846269514 }, "geometry": { "type": "Point", "coordinates": [ 85.321238149947277, 27.634766846269514 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3848, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 93, "repvalue": 651000, "xcoord": 85.32294143560128, "ycoord": 27.639019511283479 }, "geometry": { "type": "Point", "coordinates": [ 85.32294143560128, 27.639019511283479 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3849, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 89, "repvalue": 623000, "xcoord": 85.322736960594497, "ycoord": 27.637934419721073 }, "geometry": { "type": "Point", "coordinates": [ 85.322736960594497, 27.637934419721073 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3850, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 93, "repvalue": 651000, "xcoord": 85.323525401765053, "ycoord": 27.636959756842881 }, "geometry": { "type": "Point", "coordinates": [ 85.323525401765053, 27.636959756842881 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3851, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 94, "repvalue": 846000, "xcoord": 85.322603953953134, "ycoord": 27.639409107908993 }, "geometry": { "type": "Point", "coordinates": [ 85.322603953953134, 27.639409107908993 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3852, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+9s+Ind", "fptarea": 97, "repvalue": 873000, "xcoord": 85.322509973551661, "ycoord": 27.638325352905841 }, "geometry": { "type": "Point", "coordinates": [ 85.322509973551661, 27.638325352905841 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3853, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 89, "repvalue": 890000, "xcoord": 85.320984123530565, "ycoord": 27.636929006271789 }, "geometry": { "type": "Point", "coordinates": [ 85.320984123530565, 27.636929006271789 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3854, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 104, "repvalue": 624000, "xcoord": 85.324842294064879, "ycoord": 27.637566192890652 }, "geometry": { "type": "Point", "coordinates": [ 85.324842294064879, 27.637566192890652 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3855, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Ind", "fptarea": 101, "repvalue": 606000, "xcoord": 85.325400743590507, "ycoord": 27.637179259260606 }, "geometry": { "type": "Point", "coordinates": [ 85.325400743590507, 27.637179259260606 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3856, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 105, "repvalue": 1050000, "xcoord": 85.320101704762465, "ycoord": 27.636819897956677 }, "geometry": { "type": "Point", "coordinates": [ 85.320101704762465, 27.636819897956677 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3857, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 86, "repvalue": 774000, "xcoord": 85.320445197701147, "ycoord": 27.636036700993881 }, "geometry": { "type": "Point", "coordinates": [ 85.320445197701147, 27.636036700993881 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3858, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 86, "repvalue": 516000, "xcoord": 85.323168422720457, "ycoord": 27.638628577425031 }, "geometry": { "type": "Point", "coordinates": [ 85.323168422720457, 27.638628577425031 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3859, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 94, "repvalue": 658000, "xcoord": 85.324492829148042, "ycoord": 27.638743008781709 }, "geometry": { "type": "Point", "coordinates": [ 85.324492829148042, 27.638743008781709 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3860, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Ind", "fptarea": 103, "repvalue": 824000, "xcoord": 85.320509099927563, "ycoord": 27.639088487961228 }, "geometry": { "type": "Point", "coordinates": [ 85.320509099927563, 27.639088487961228 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3861, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 91, "repvalue": 546000, "xcoord": 85.320872130795507, "ycoord": 27.637026069829066 }, "geometry": { "type": "Point", "coordinates": [ 85.320872130795507, 27.637026069829066 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3862, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 103, "repvalue": 618000, "xcoord": 85.321521555876828, "ycoord": 27.637919711346687 }, "geometry": { "type": "Point", "coordinates": [ 85.321521555876828, 27.637919711346687 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3863, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Ind", "fptarea": 89, "repvalue": 445000, "xcoord": 85.325833718388111, "ycoord": 27.637775007525004 }, "geometry": { "type": "Point", "coordinates": [ 85.325833718388111, 27.637775007525004 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3864, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Ind", "fptarea": 87, "repvalue": 435000, "xcoord": 85.324412324166232, "ycoord": 27.63677363823734 }, "geometry": { "type": "Point", "coordinates": [ 85.324412324166232, 27.63677363823734 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3865, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 90, "repvalue": 720000, "xcoord": 85.319369584095753, "ycoord": 27.641338332773611 }, "geometry": { "type": "Point", "coordinates": [ 85.319369584095753, 27.641338332773611 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3866, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 100, "repvalue": 600000, "xcoord": 85.324068856346287, "ycoord": 27.637556846102957 }, "geometry": { "type": "Point", "coordinates": [ 85.324068856346287, 27.637556846102957 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3867, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 94, "repvalue": 658000, "xcoord": 85.322733958855551, "ycoord": 27.638131223067738 }, "geometry": { "type": "Point", "coordinates": [ 85.322733958855551, 27.638131223067738 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3868, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 87, "repvalue": 783000, "xcoord": 85.322721951595426, "ycoord": 27.6389184363955 }, "geometry": { "type": "Point", "coordinates": [ 85.322721951595426, 27.6389184363955 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3869, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 93, "repvalue": 837000, "xcoord": 85.321827500616664, "ycoord": 27.639596551279613 }, "geometry": { "type": "Point", "coordinates": [ 85.321827500616664, 27.639596551279613 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3870, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 85, "repvalue": 595000, "xcoord": 85.321681604063372, "ycoord": 27.634673794677131 }, "geometry": { "type": "Point", "coordinates": [ 85.321681604063372, 27.634673794677131 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3871, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 98, "repvalue": 686000, "xcoord": 85.323310421996496, "ycoord": 27.636563477846387 }, "geometry": { "type": "Point", "coordinates": [ 85.323310421996496, 27.636563477846387 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3872, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+9s+Ind", "fptarea": 102, "repvalue": 918000, "xcoord": 85.320240751441943, "ycoord": 27.634951606641021 }, "geometry": { "type": "Point", "coordinates": [ 85.320240751441943, 27.634951606641021 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3873, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 95, "repvalue": 570000, "xcoord": 85.324949787470118, "ycoord": 27.637764331374878 }, "geometry": { "type": "Point", "coordinates": [ 85.324949787470118, 27.637764331374878 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3874, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 99, "repvalue": 594000, "xcoord": 85.32250847245804, "ycoord": 27.638423754562908 }, "geometry": { "type": "Point", "coordinates": [ 85.32250847245804, 27.638423754562908 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3875, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 91, "repvalue": 637000, "xcoord": 85.321181068418852, "ycoord": 27.638506107679529 }, "geometry": { "type": "Point", "coordinates": [ 85.321181068418852, 27.638506107679529 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3876, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 86, "repvalue": 602000, "xcoord": 85.322285987457704, "ycoord": 27.6385194823417 }, "geometry": { "type": "Point", "coordinates": [ 85.322285987457704, 27.6385194823417 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3877, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 97, "repvalue": 970000, "xcoord": 85.322820437009725, "ycoord": 27.639706986326281 }, "geometry": { "type": "Point", "coordinates": [ 85.322820437009725, 27.639706986326281 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3878, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 86, "repvalue": 516000, "xcoord": 85.322942936345498, "ycoord": 27.638921109613012 }, "geometry": { "type": "Point", "coordinates": [ 85.322942936345498, 27.638921109613012 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3879, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 97, "repvalue": 582000, "xcoord": 85.32408835110671, "ycoord": 27.636277623262494 }, "geometry": { "type": "Point", "coordinates": [ 85.32408835110671, 27.636277623262494 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3880, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 96, "repvalue": 768000, "xcoord": 85.323598389943982, "ycoord": 27.639421135658583 }, "geometry": { "type": "Point", "coordinates": [ 85.323598389943982, 27.639421135658583 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3881, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Ind", "fptarea": 105, "repvalue": 630000, "xcoord": 85.323828375596534, "ycoord": 27.638833397247744 }, "geometry": { "type": "Point", "coordinates": [ 85.323828375596534, 27.638833397247744 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3882, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 90, "repvalue": 630000, "xcoord": 85.320733090214745, "ycoord": 27.638894361602976 }, "geometry": { "type": "Point", "coordinates": [ 85.320733090214745, 27.638894361602976 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3883, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 96, "repvalue": 576000, "xcoord": 85.321382524317968, "ycoord": 27.639788003981124 }, "geometry": { "type": "Point", "coordinates": [ 85.321382524317968, 27.639788003981124 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3884, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Ind", "fptarea": 92, "repvalue": 644000, "xcoord": 85.321641058136379, "ycoord": 27.637330639169907 }, "geometry": { "type": "Point", "coordinates": [ 85.321641058136379, 27.637330639169907 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3885, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 97, "repvalue": 679000, "xcoord": 85.325508237687032, "ycoord": 27.637377397350093 }, "geometry": { "type": "Point", "coordinates": [ 85.325508237687032, 27.637377397350093 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3886, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 88, "repvalue": 616000, "xcoord": 85.321853029799399, "ycoord": 27.637923723777142 }, "geometry": { "type": "Point", "coordinates": [ 85.321853029799399, 27.637923723777142 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3887, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 89, "repvalue": 534000, "xcoord": 85.32538426039099, "ycoord": 27.638261679190784 }, "geometry": { "type": "Point", "coordinates": [ 85.32538426039099, 27.638261679190784 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3888, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 101, "repvalue": 707000, "xcoord": 85.322781983027141, "ycoord": 27.634982368814633 }, "geometry": { "type": "Point", "coordinates": [ 85.322781983027141, 27.634982368814633 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3889, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 103, "repvalue": 721000, "xcoord": 85.320477536750573, "ycoord": 27.641154920099432 }, "geometry": { "type": "Point", "coordinates": [ 85.320477536750573, 27.641154920099432 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3890, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 102, "repvalue": 816000, "xcoord": 85.321370506541285, "ycoord": 27.640575216574636 }, "geometry": { "type": "Point", "coordinates": [ 85.321370506541285, 27.640575216574636 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3891, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+10s+Ind", "fptarea": 101, "repvalue": 1010000, "xcoord": 85.320383576865765, "ycoord": 27.640071164779144 }, "geometry": { "type": "Point", "coordinates": [ 85.320383576865765, 27.640071164779144 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3892, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+7s+Ind", "fptarea": 91, "repvalue": 637000, "xcoord": 85.324155353691424, "ycoord": 27.639132609481027 }, "geometry": { "type": "Point", "coordinates": [ 85.324155353691424, 27.639132609481027 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3893, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 99, "repvalue": 495000, "xcoord": 85.322311508501571, "ycoord": 27.636846654185678 }, "geometry": { "type": "Point", "coordinates": [ 85.322311508501571, 27.636846654185678 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3894, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+9s+Ind", "fptarea": 95, "repvalue": 855000, "xcoord": 85.324628807489503, "ycoord": 27.637071513925473 }, "geometry": { "type": "Point", "coordinates": [ 85.324628807489503, 27.637071513925473 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3895, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 93, "repvalue": 837000, "xcoord": 85.322620465315111, "ycoord": 27.638326689701163 }, "geometry": { "type": "Point", "coordinates": [ 85.322620465315111, 27.638326689701163 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3896, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Ind", "fptarea": 99, "repvalue": 693000, "xcoord": 85.322753469614781, "ycoord": 27.636852001209192 }, "geometry": { "type": "Point", "coordinates": [ 85.322753469614781, 27.636852001209192 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3897, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 102, "repvalue": 816000, "xcoord": 85.322226538765719, "ycoord": 27.635172488723025 }, "geometry": { "type": "Point", "coordinates": [ 85.322226538765719, 27.635172488723025 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3898, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Ind", "fptarea": 89, "repvalue": 534000, "xcoord": 85.322255959884473, "ycoord": 27.640487514921784 }, "geometry": { "type": "Point", "coordinates": [ 85.322255959884473, 27.640487514921784 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3899, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 98, "repvalue": 588000, "xcoord": 85.325263278057577, "ycoord": 27.638949157151529 }, "geometry": { "type": "Point", "coordinates": [ 85.325263278057577, 27.638949157151529 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3900, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 87, "repvalue": 609000, "xcoord": 85.322487456348355, "ycoord": 27.639801377607125 }, "geometry": { "type": "Point", "coordinates": [ 85.322487456348355, 27.639801377607125 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3901, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 87, "repvalue": 783000, "xcoord": 85.321718509498879, "ycoord": 27.639496812195731 }, "geometry": { "type": "Point", "coordinates": [ 85.321718509498879, 27.639496812195731 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3902, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+7s+Ind", "fptarea": 87, "repvalue": 609000, "xcoord": 85.321064566940208, "ycoord": 27.638898376047766 }, "geometry": { "type": "Point", "coordinates": [ 85.321064566940208, 27.638898376047766 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3903, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 88, "repvalue": 704000, "xcoord": 85.319601100397577, "ycoord": 27.640652201239941 }, "geometry": { "type": "Point", "coordinates": [ 85.319601100397577, 27.640652201239941 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3904, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 103, "repvalue": 927000, "xcoord": 85.320282102552611, "ycoord": 27.639479416977764 }, "geometry": { "type": "Point", "coordinates": [ 85.320282102552611, 27.639479416977764 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3905, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Ind", "fptarea": 105, "repvalue": 840000, "xcoord": 85.323220936264704, "ycoord": 27.635184517487627 }, "geometry": { "type": "Point", "coordinates": [ 85.323220936264704, 27.635184517487627 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3906, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 86, "repvalue": 688000, "xcoord": 85.320704537242023, "ycoord": 27.640763990975888 }, "geometry": { "type": "Point", "coordinates": [ 85.320704537242023, 27.640763990975888 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3907, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 93, "repvalue": 837000, "xcoord": 85.321046537359237, "ycoord": 27.640079194861318 }, "geometry": { "type": "Point", "coordinates": [ 85.321046537359237, 27.640079194861318 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3908, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 87, "repvalue": 870000, "xcoord": 85.323287917216831, "ycoord": 27.638039503528923 }, "geometry": { "type": "Point", "coordinates": [ 85.323287917216831, 27.638039503528923 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3909, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 94, "repvalue": 564000, "xcoord": 85.322663990856583, "ycoord": 27.635473040844946 }, "geometry": { "type": "Point", "coordinates": [ 85.322663990856583, 27.635473040844946 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3910, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 91, "repvalue": 546000, "xcoord": 85.321375013264642, "ycoord": 27.640280011863112 }, "geometry": { "type": "Point", "coordinates": [ 85.321375013264642, 27.640280011863112 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3911, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 86, "repvalue": 688000, "xcoord": 85.32081953960342, "ycoord": 27.640470124698705 }, "geometry": { "type": "Point", "coordinates": [ 85.32081953960342, 27.640470124698705 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3912, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 88, "repvalue": 792000, "xcoord": 85.32171550573868, "ycoord": 27.639693615395156 }, "geometry": { "type": "Point", "coordinates": [ 85.32171550573868, 27.639693615395156 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3913, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 94, "repvalue": 564000, "xcoord": 85.320044579628146, "ycoord": 27.640559156076229 }, "geometry": { "type": "Point", "coordinates": [ 85.320044579628146, 27.640559156076229 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3914, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Ind", "fptarea": 90, "repvalue": 630000, "xcoord": 85.320646642044096, "ycoord": 27.637318598220549 }, "geometry": { "type": "Point", "coordinates": [ 85.320646642044096, 27.637318598220549 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3915, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+10s+Ind", "fptarea": 94, "repvalue": 940000, "xcoord": 85.323301420289965, "ycoord": 27.637153888159137 }, "geometry": { "type": "Point", "coordinates": [ 85.323301420289965, 27.637153888159137 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3916, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 90, "repvalue": 540000, "xcoord": 85.319701067954554, "ycoord": 27.641342350803232 }, "geometry": { "type": "Point", "coordinates": [ 85.319701067954554, 27.641342350803232 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3917, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 96, "repvalue": 960000, "xcoord": 85.324044861031396, "ycoord": 27.639131273872842 }, "geometry": { "type": "Point", "coordinates": [ 85.324044861031396, 27.639131273872842 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3918, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 93, "repvalue": 744000, "xcoord": 85.322723452529559, "ycoord": 27.638820034734685 }, "geometry": { "type": "Point", "coordinates": [ 85.322723452529559, 27.638820034734685 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3919, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 91, "repvalue": 637000, "xcoord": 85.320158080158492, "ycoord": 27.640363691917909 }, "geometry": { "type": "Point", "coordinates": [ 85.320158080158492, 27.640363691917909 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3920, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+5s+Ind", "fptarea": 94, "repvalue": 470000, "xcoord": 85.323590888919597, "ycoord": 27.639913144126183 }, "geometry": { "type": "Point", "coordinates": [ 85.323590888919597, 27.639913144126183 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3921, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+6s+Ind", "fptarea": 97, "repvalue": 582000, "xcoord": 85.320946562004835, "ycoord": 27.63938904582438 }, "geometry": { "type": "Point", "coordinates": [ 85.320946562004835, 27.63938904582438 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3922, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 91, "repvalue": 819000, "xcoord": 85.320186641934967, "ycoord": 27.638494062962113 }, "geometry": { "type": "Point", "coordinates": [ 85.320186641934967, 27.638494062962113 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3923, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 91, "repvalue": 546000, "xcoord": 85.320582734275732, "ycoord": 27.634266810447354 }, "geometry": { "type": "Point", "coordinates": [ 85.320582734275732, 27.634266810447354 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3924, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 104, "repvalue": 832000, "xcoord": 85.323378904494589, "ycoord": 27.639320061754347 }, "geometry": { "type": "Point", "coordinates": [ 85.323378904494589, 27.639320061754347 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3925, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 105, "repvalue": 630000, "xcoord": 85.319587565524373, "ycoord": 27.641537814479918 }, "geometry": { "type": "Point", "coordinates": [ 85.319587565524373, 27.641537814479918 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3926, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Ind", "fptarea": 94, "repvalue": 752000, "xcoord": 85.325947205737251, "ycoord": 27.637579537967262 }, "geometry": { "type": "Point", "coordinates": [ 85.325947205737251, 27.637579537967262 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3927, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Ind", "fptarea": 85, "repvalue": 595000, "xcoord": 85.321635050860408, "ycoord": 27.637724245670174 }, "geometry": { "type": "Point", "coordinates": [ 85.321635050860408, 27.637724245670174 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3928, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+5s+Ind", "fptarea": 90, "repvalue": 450000, "xcoord": 85.324377838502159, "ycoord": 27.639036878692238 }, "geometry": { "type": "Point", "coordinates": [ 85.324377838502159, 27.639036878692238 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3929, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Ind", "fptarea": 88, "repvalue": 880000, "xcoord": 85.322187506486586, "ycoord": 27.637730932118941 }, "geometry": { "type": "Point", "coordinates": [ 85.322187506486586, 27.637730932118941 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3930, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 92, "repvalue": 828000, "xcoord": 85.321638054513613, "ycoord": 27.637527442422982 }, "geometry": { "type": "Point", "coordinates": [ 85.321638054513613, 27.637527442422982 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3931, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+10s+Ind", "fptarea": 92, "repvalue": 920000, "xcoord": 85.323157918893557, "ycoord": 27.639317389196144 }, "geometry": { "type": "Point", "coordinates": [ 85.323157918893557, 27.639317389196144 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3932, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+5s+Ind", "fptarea": 87, "repvalue": 435000, "xcoord": 85.319707083073908, "ycoord": 27.640948744899454 }, "geometry": { "type": "Point", "coordinates": [ 85.319707083073908, 27.640948744899454 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3933, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 99, "repvalue": 891000, "xcoord": 85.324837797165472, "ycoord": 27.637861398242858 }, "geometry": { "type": "Point", "coordinates": [ 85.324837797165472, 27.637861398242858 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3934, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 104, "repvalue": 936000, "xcoord": 85.320919514758828, "ycoord": 27.641160273732524 }, "geometry": { "type": "Point", "coordinates": [ 85.320919514758828, 27.641160273732524 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3935, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 93, "repvalue": 558000, "xcoord": 85.322827941414872, "ycoord": 27.639214978038545 }, "geometry": { "type": "Point", "coordinates": [ 85.322827941414872, 27.639214978038545 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3936, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 99, "repvalue": 594000, "xcoord": 85.323387906612453, "ycoord": 27.638729651602532 }, "geometry": { "type": "Point", "coordinates": [ 85.323387906612453, 27.638729651602532 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3937, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+6s+Ind", "fptarea": 96, "repvalue": 576000, "xcoord": 85.324715312887591, "ycoord": 27.638647277398086 }, "geometry": { "type": "Point", "coordinates": [ 85.324715312887591, 27.638647277398086 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3938, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 103, "repvalue": 721000, "xcoord": 85.320452711561089, "ycoord": 27.635544693045894 }, "geometry": { "type": "Point", "coordinates": [ 85.320452711561089, 27.635544693045894 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3939, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 92, "repvalue": 552000, "xcoord": 85.321962019565177, "ycoord": 27.638023462713154 }, "geometry": { "type": "Point", "coordinates": [ 85.321962019565177, 27.638023462713154 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3940, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+10s+Ind", "fptarea": 95, "repvalue": 950000, "xcoord": 85.321391537330669, "ycoord": 27.639197594474155 }, "geometry": { "type": "Point", "coordinates": [ 85.321391537330669, 27.639197594474155 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3941, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 89, "repvalue": 623000, "xcoord": 85.32006562701045, "ycoord": 27.639181534911096 }, "geometry": { "type": "Point", "coordinates": [ 85.32006562701045, 27.639181534911096 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3942, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 93, "repvalue": 651000, "xcoord": 85.319934085768253, "ycoord": 27.640557817129501 }, "geometry": { "type": "Point", "coordinates": [ 85.319934085768253, 27.640557817129501 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3943, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+9s+Ind", "fptarea": 97, "repvalue": 873000, "xcoord": 85.322600951788417, "ycoord": 27.639605911200377 }, "geometry": { "type": "Point", "coordinates": [ 85.322600951788417, 27.639605911200377 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3944, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 92, "repvalue": 644000, "xcoord": 85.321998054831965, "ycoord": 27.635661823063707 }, "geometry": { "type": "Point", "coordinates": [ 85.321998054831965, 27.635661823063707 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3945, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 88, "repvalue": 616000, "xcoord": 85.321457624381949, "ycoord": 27.634867923137154 }, "geometry": { "type": "Point", "coordinates": [ 85.321457624381949, 27.634867923137154 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3946, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 87, "repvalue": 696000, "xcoord": 85.324277842679535, "ycoord": 27.638346731074503 }, "geometry": { "type": "Point", "coordinates": [ 85.324277842679535, 27.638346731074503 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3947, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 102, "repvalue": 612000, "xcoord": 85.323861372496367, "ycoord": 27.636668559114369 }, "geometry": { "type": "Point", "coordinates": [ 85.323861372496367, 27.636668559114369 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3948, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 102, "repvalue": 612000, "xcoord": 85.323057930622696, "ycoord": 27.638627241052891 }, "geometry": { "type": "Point", "coordinates": [ 85.323057930622696, 27.638627241052891 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3949, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 98, "repvalue": 588000, "xcoord": 85.321762060599966, "ycoord": 27.636643165142271 }, "geometry": { "type": "Point", "coordinates": [ 85.321762060599966, 27.636643165142271 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3950, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 93, "repvalue": 465000, "xcoord": 85.322887969809315, "ycoord": 27.635278910411891 }, "geometry": { "type": "Point", "coordinates": [ 85.322887969809315, 27.635278910411891 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3951, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 99, "repvalue": 693000, "xcoord": 85.321777076736666, "ycoord": 27.635659148629898 }, "geometry": { "type": "Point", "coordinates": [ 85.321777076736666, 27.635659148629898 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3952, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 104, "repvalue": 936000, "xcoord": 85.321509540047586, "ycoord": 27.638706924208481 }, "geometry": { "type": "Point", "coordinates": [ 85.321509540047586, 27.638706924208481 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3953, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 89, "repvalue": 712000, "xcoord": 85.32318342754094, "ycoord": 27.637644560484041 }, "geometry": { "type": "Point", "coordinates": [ 85.32318342754094, 27.637644560484041 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3954, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 104, "repvalue": 936000, "xcoord": 85.324515318431125, "ycoord": 27.637266982336829 }, "geometry": { "type": "Point", "coordinates": [ 85.324515318431125, 27.637266982336829 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3955, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 93, "repvalue": 558000, "xcoord": 85.321663584336477, "ycoord": 27.635854614584172 }, "geometry": { "type": "Point", "coordinates": [ 85.321663584336477, 27.635854614584172 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3956, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 105, "repvalue": 735000, "xcoord": 85.321118649103411, "ycoord": 27.635355918335197 }, "geometry": { "type": "Point", "coordinates": [ 85.321118649103411, 27.635355918335197 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3957, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 89, "repvalue": 534000, "xcoord": 85.322645981063715, "ycoord": 27.63665386121145 }, "geometry": { "type": "Point", "coordinates": [ 85.322645981063715, 27.63665386121145 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3958, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 99, "repvalue": 693000, "xcoord": 85.321309586037074, "ycoord": 27.637326626311818 }, "geometry": { "type": "Point", "coordinates": [ 85.321309586037074, 27.637326626311818 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3959, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 105, "repvalue": 945000, "xcoord": 85.323852373706799, "ycoord": 27.637258969585019 }, "geometry": { "type": "Point", "coordinates": [ 85.323852373706799, 27.637258969585019 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3960, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+5s+Ind", "fptarea": 100, "repvalue": 500000, "xcoord": 85.324035862286578, "ycoord": 27.639721684189404 }, "geometry": { "type": "Point", "coordinates": [ 85.324035862286578, 27.639721684189404 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3961, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 104, "repvalue": 832000, "xcoord": 85.322228039904488, "ycoord": 27.635074087034084 }, "geometry": { "type": "Point", "coordinates": [ 85.322228039904488, 27.635074087034084 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3962, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 103, "repvalue": 927000, "xcoord": 85.322927928560915, "ycoord": 27.639905126251449 }, "geometry": { "type": "Point", "coordinates": [ 85.322927928560915, 27.639905126251449 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3963, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 104, "repvalue": 624000, "xcoord": 85.321376515490527, "ycoord": 27.640181610289655 }, "geometry": { "type": "Point", "coordinates": [ 85.321376515490527, 27.640181610289655 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3964, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 87, "repvalue": 783000, "xcoord": 85.322523483051881, "ycoord": 27.637439737926094 }, "geometry": { "type": "Point", "coordinates": [ 85.322523483051881, 27.637439737926094 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3965, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 88, "repvalue": 792000, "xcoord": 85.320515111580349, "ycoord": 27.638694881766067 }, "geometry": { "type": "Point", "coordinates": [ 85.320515111580349, 27.638694881766067 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3966, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+5s+Ind", "fptarea": 105, "repvalue": 525000, "xcoord": 85.323059431237724, "ycoord": 27.638528839370981 }, "geometry": { "type": "Point", "coordinates": [ 85.323059431237724, 27.638528839370981 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3967, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Ind", "fptarea": 101, "repvalue": 505000, "xcoord": 85.319823591915963, "ycoord": 27.640556478094801 }, "geometry": { "type": "Point", "coordinates": [ 85.319823591915963, 27.640556478094801 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3968, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 97, "repvalue": 873000, "xcoord": 85.323837375115971, "ycoord": 27.638242986918382 }, "geometry": { "type": "Point", "coordinates": [ 85.323837375115971, 27.638242986918382 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3969, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 96, "repvalue": 672000, "xcoord": 85.323964364193699, "ycoord": 27.637161903516585 }, "geometry": { "type": "Point", "coordinates": [ 85.323964364193699, 27.637161903516585 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3970, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 92, "repvalue": 552000, "xcoord": 85.319480078707741, "ycoord": 27.641339672204801 }, "geometry": { "type": "Point", "coordinates": [ 85.319480078707741, 27.641339672204801 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3971, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 91, "repvalue": 819000, "xcoord": 85.32473480103188, "ycoord": 27.637368054334775 }, "geometry": { "type": "Point", "coordinates": [ 85.32473480103188, 27.637368054334775 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3972, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 91, "repvalue": 455000, "xcoord": 85.325733714072186, "ycoord": 27.6370848604838 }, "geometry": { "type": "Point", "coordinates": [ 85.325733714072186, 27.6370848604838 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3973, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 100, "repvalue": 600000, "xcoord": 85.320743609037848, "ycoord": 27.638205550647406 }, "geometry": { "type": "Point", "coordinates": [ 85.320743609037848, 27.638205550647406 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3974, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 97, "repvalue": 970000, "xcoord": 85.32416885040665, "ycoord": 27.638246993856821 }, "geometry": { "type": "Point", "coordinates": [ 85.32416885040665, 27.638246993856821 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3975, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Ind", "fptarea": 87, "repvalue": 609000, "xcoord": 85.320252037899948, "ycoord": 27.641447447259761 }, "geometry": { "type": "Point", "coordinates": [ 85.320252037899948, 27.641447447259761 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3976, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 103, "repvalue": 927000, "xcoord": 85.321981539212203, "ycoord": 27.636744241341617 }, "geometry": { "type": "Point", "coordinates": [ 85.321981539212203, 27.636744241341617 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3977, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Ind", "fptarea": 103, "repvalue": 824000, "xcoord": 85.324285340132832, "ycoord": 27.637854722322455 }, "geometry": { "type": "Point", "coordinates": [ 85.324285340132832, 27.637854722322455 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3978, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 102, "repvalue": 510000, "xcoord": 85.324857283235687, "ycoord": 27.636582174954292 }, "geometry": { "type": "Point", "coordinates": [ 85.324857283235687, 27.636582174954292 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3979, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 87, "repvalue": 522000, "xcoord": 85.321033014453803, "ycoord": 27.640964808832365 }, "geometry": { "type": "Point", "coordinates": [ 85.321033014453803, 27.640964808832365 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3980, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 91, "repvalue": 546000, "xcoord": 85.32427634316609, "ycoord": 27.638445132820497 }, "geometry": { "type": "Point", "coordinates": [ 85.32427634316609, 27.638445132820497 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3981, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 95, "repvalue": 950000, "xcoord": 85.322662490082365, "ycoord": 27.635571442550251 }, "geometry": { "type": "Point", "coordinates": [ 85.322662490082365, 27.635571442550251 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3982, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 104, "repvalue": 728000, "xcoord": 85.320555687048611, "ycoord": 27.636038039332551 }, "geometry": { "type": "Point", "coordinates": [ 85.320555687048611, 27.636038039332551 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3983, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 93, "repvalue": 558000, "xcoord": 85.324150854649517, "ycoord": 27.639427814662596 }, "geometry": { "type": "Point", "coordinates": [ 85.324150854649517, 27.639427814662596 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3984, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 89, "repvalue": 890000, "xcoord": 85.321780079872653, "ycoord": 27.635462345309758 }, "geometry": { "type": "Point", "coordinates": [ 85.321780079872653, 27.635462345309758 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3985, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 88, "repvalue": 616000, "xcoord": 85.321084097748738, "ycoord": 27.637619155427188 }, "geometry": { "type": "Point", "coordinates": [ 85.321084097748738, 27.637619155427188 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3986, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 93, "repvalue": 744000, "xcoord": 85.319817577313657, "ycoord": 27.640950084044416 }, "geometry": { "type": "Point", "coordinates": [ 85.319817577313657, 27.640950084044416 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3987, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 89, "repvalue": 623000, "xcoord": 85.32053615140525, "ycoord": 27.637317259897465 }, "geometry": { "type": "Point", "coordinates": [ 85.32053615140525, 27.637317259897465 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3988, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 88, "repvalue": 440000, "xcoord": 85.321621534044112, "ycoord": 27.638609860209645 }, "geometry": { "type": "Point", "coordinates": [ 85.321621534044112, 27.638609860209645 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3989, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Ind", "fptarea": 95, "repvalue": 570000, "xcoord": 85.321868045938118, "ycoord": 27.636939707400483 }, "geometry": { "type": "Point", "coordinates": [ 85.321868045938118, 27.636939707400483 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3990, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 94, "repvalue": 564000, "xcoord": 85.325829224109583, "ycoord": 27.638070213018288 }, "geometry": { "type": "Point", "coordinates": [ 85.325829224109583, 27.638070213018288 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3991, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 94, "repvalue": 658000, "xcoord": 85.322829442273076, "ycoord": 27.63911657637658 }, "geometry": { "type": "Point", "coordinates": [ 85.322829442273076, 27.63911657637658 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3992, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+7s+Ind", "fptarea": 88, "repvalue": 616000, "xcoord": 85.324370341086635, "ycoord": 27.639528887383744 }, "geometry": { "type": "Point", "coordinates": [ 85.324370341086635, 27.639528887383744 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3993, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 88, "repvalue": 616000, "xcoord": 85.322060499054558, "ycoord": 27.638812013004202 }, "geometry": { "type": "Point", "coordinates": [ 85.322060499054558, 27.638812013004202 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3994, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 88, "repvalue": 528000, "xcoord": 85.324307831352584, "ycoord": 27.636378695845551 }, "geometry": { "type": "Point", "coordinates": [ 85.324307831352584, 27.636378695845551 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3995, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 90, "repvalue": 450000, "xcoord": 85.321167547498959, "ycoord": 27.639391721912659 }, "geometry": { "type": "Point", "coordinates": [ 85.321167547498959, 27.639391721912659 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3996, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 85, "repvalue": 595000, "xcoord": 85.322058997527833, "ycoord": 27.638910414631646 }, "geometry": { "type": "Point", "coordinates": [ 85.322058997527833, 27.638910414631646 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3997, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 89, "repvalue": 801000, "xcoord": 85.321933488536416, "ycoord": 27.63989309350098 }, "geometry": { "type": "Point", "coordinates": [ 85.321933488536416, 27.63989309350098 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3998, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 88, "repvalue": 704000, "xcoord": 85.323823875734163, "ycoord": 27.63912860239255 }, "geometry": { "type": "Point", "coordinates": [ 85.323823875734163, 27.63912860239255 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 3999, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 94, "repvalue": 846000, "xcoord": 85.324709316277122, "ycoord": 27.639040884444448 }, "geometry": { "type": "Point", "coordinates": [ 85.324709316277122, 27.639040884444448 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4000, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 92, "repvalue": 736000, "xcoord": 85.321726018766157, "ycoord": 27.639004804171385 }, "geometry": { "type": "Point", "coordinates": [ 85.321726018766157, 27.639004804171385 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4001, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 96, "repvalue": 864000, "xcoord": 85.32114501126172, "ycoord": 27.640867745369562 }, "geometry": { "type": "Point", "coordinates": [ 85.32114501126172, 27.640867745369562 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4002, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 92, "repvalue": 552000, "xcoord": 85.320542162509554, "ycoord": 27.636923653596298 }, "geometry": { "type": "Point", "coordinates": [ 85.320542162509554, 27.636923653596298 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4003, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 87, "repvalue": 522000, "xcoord": 85.320991635264534, "ycoord": 27.636436998250868 }, "geometry": { "type": "Point", "coordinates": [ 85.320991635264534, 27.636436998250868 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4004, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 90, "repvalue": 810000, "xcoord": 85.325730717802898, "ycoord": 27.637281664156962 }, "geometry": { "type": "Point", "coordinates": [ 85.325730717802898, 27.637281664156962 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4005, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 95, "repvalue": 855000, "xcoord": 85.322826440549051, "ycoord": 27.639313379699036 }, "geometry": { "type": "Point", "coordinates": [ 85.322826440549051, 27.639313379699036 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4006, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 101, "repvalue": 1010000, "xcoord": 85.320422654978657, "ycoord": 27.637512724617018 }, "geometry": { "type": "Point", "coordinates": [ 85.320422654978657, 27.637512724617018 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4007, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 104, "repvalue": 832000, "xcoord": 85.319602604234262, "ycoord": 27.640553799761463 }, "geometry": { "type": "Point", "coordinates": [ 85.319602604234262, 27.640553799761463 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4008, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 92, "repvalue": 736000, "xcoord": 85.321515548023115, "ycoord": 27.638313317789365 }, "geometry": { "type": "Point", "coordinates": [ 85.321515548023115, 27.638313317789365 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4009, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 101, "repvalue": 1010000, "xcoord": 85.320295630651984, "ycoord": 27.638593803158731 }, "geometry": { "type": "Point", "coordinates": [ 85.320295630651984, 27.638593803158731 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4010, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 101, "repvalue": 909000, "xcoord": 85.325075266155949, "ycoord": 27.636781648183543 }, "geometry": { "type": "Point", "coordinates": [ 85.325075266155949, 27.636781648183543 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4011, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 90, "repvalue": 810000, "xcoord": 85.320558692417947, "ycoord": 27.635841236146639 }, "geometry": { "type": "Point", "coordinates": [ 85.320558692417947, 27.635841236146639 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4012, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 104, "repvalue": 832000, "xcoord": 85.320800704708134, "ycoord": 27.634466289915682 }, "geometry": { "type": "Point", "coordinates": [ 85.320800704708134, 27.634466289915682 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4013, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 104, "repvalue": 832000, "xcoord": 85.321983040670233, "ycoord": 27.63664583968735 }, "geometry": { "type": "Point", "coordinates": [ 85.321983040670233, 27.63664583968735 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4014, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Ind", "fptarea": 90, "repvalue": 630000, "xcoord": 85.321566610896994, "ycoord": 27.634967662275908 }, "geometry": { "type": "Point", "coordinates": [ 85.321566610896994, 27.634967662275908 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4015, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 97, "repvalue": 776000, "xcoord": 85.31947556669553, "ycoord": 27.641634876583741 }, "geometry": { "type": "Point", "coordinates": [ 85.31947556669553, 27.641634876583741 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4016, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 91, "repvalue": 546000, "xcoord": 85.320757132690559, "ycoord": 27.637319936455683 }, "geometry": { "type": "Point", "coordinates": [ 85.320757132690559, 27.637319936455683 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4017, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 95, "repvalue": 665000, "xcoord": 85.322054492902012, "ycoord": 27.639205619505155 }, "geometry": { "type": "Point", "coordinates": [ 85.322054492902012, 27.639205619505155 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4018, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 104, "repvalue": 936000, "xcoord": 85.321411064584524, "ycoord": 27.637918373693932 }, "geometry": { "type": "Point", "coordinates": [ 85.321411064584524, 27.637918373693932 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4019, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 91, "repvalue": 637000, "xcoord": 85.321529065522668, "ycoord": 27.637427703260226 }, "geometry": { "type": "Point", "coordinates": [ 85.321529065522668, 27.637427703260226 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4020, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 95, "repvalue": 665000, "xcoord": 85.320676694371826, "ycoord": 27.635350566367833 }, "geometry": { "type": "Point", "coordinates": [ 85.320676694371826, 27.635350566367833 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4021, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 96, "repvalue": 768000, "xcoord": 85.322293493875364, "ycoord": 27.638027474104678 }, "geometry": { "type": "Point", "coordinates": [ 85.322293493875364, 27.638027474104678 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4022, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 90, "repvalue": 540000, "xcoord": 85.322418996604355, "ycoord": 27.637044794419172 }, "geometry": { "type": "Point", "coordinates": [ 85.322418996604355, 27.637044794419172 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4023, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 102, "repvalue": 1020000, "xcoord": 85.323702882460651, "ycoord": 27.639816078434585 }, "geometry": { "type": "Point", "coordinates": [ 85.323702882460651, 27.639816078434585 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4024, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 94, "repvalue": 940000, "xcoord": 85.322532489042956, "ycoord": 27.636849327873364 }, "geometry": { "type": "Point", "coordinates": [ 85.322532489042956, 27.636849327873364 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4025, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 102, "repvalue": 714000, "xcoord": 85.321642559936336, "ycoord": 27.637232237541166 }, "geometry": { "type": "Point", "coordinates": [ 85.321642559936336, 27.637232237541166 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4026, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 101, "repvalue": 1010000, "xcoord": 85.322715947782768, "ycoord": 27.639312043024056 }, "geometry": { "type": "Point", "coordinates": [ 85.322715947782768, 27.639312043024056 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4027, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+9s+Ind", "fptarea": 102, "repvalue": 918000, "xcoord": 85.325070770031417, "ycoord": 27.637076853604391 }, "geometry": { "type": "Point", "coordinates": [ 85.325070770031417, 27.637076853604391 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4028, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 91, "repvalue": 728000, "xcoord": 85.323202932670512, "ycoord": 27.636365338240715 }, "geometry": { "type": "Point", "coordinates": [ 85.323202932670512, 27.636365338240715 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4029, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 102, "repvalue": 918000, "xcoord": 85.321630545323487, "ycoord": 27.638019450529914 }, "geometry": { "type": "Point", "coordinates": [ 85.321630545323487, 27.638019450529914 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4030, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 87, "repvalue": 522000, "xcoord": 85.321112640461536, "ycoord": 27.635749524841913 }, "geometry": { "type": "Point", "coordinates": [ 85.321112640461536, 27.635749524841913 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4031, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 100, "repvalue": 900000, "xcoord": 85.323042924053965, "ycoord": 27.639611257791088 }, "geometry": { "type": "Point", "coordinates": [ 85.323042924053965, 27.639611257791088 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4032, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 93, "repvalue": 651000, "xcoord": 85.321221627477698, "ycoord": 27.635849264264685 }, "geometry": { "type": "Point", "coordinates": [ 85.321221627477698, 27.635849264264685 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4033, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 102, "repvalue": 714000, "xcoord": 85.323171423745393, "ycoord": 27.638431774048613 }, "geometry": { "type": "Point", "coordinates": [ 85.323171423745393, 27.638431774048613 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4034, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 96, "repvalue": 576000, "xcoord": 85.321273533443389, "ycoord": 27.63968826455941 }, "geometry": { "type": "Point", "coordinates": [ 85.321273533443389, 27.63968826455941 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4035, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 97, "repvalue": 970000, "xcoord": 85.32274446480875, "ycoord": 27.63744241132866 }, "geometry": { "type": "Point", "coordinates": [ 85.32274446480875, 27.63744241132866 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4036, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 100, "repvalue": 900000, "xcoord": 85.320334708361301, "ycoord": 27.636035362567249 }, "geometry": { "type": "Point", "coordinates": [ 85.320334708361301, 27.636035362567249 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4037, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+9s+Ind", "fptarea": 91, "repvalue": 819000, "xcoord": 85.322008564292332, "ycoord": 27.634973011339579 }, "geometry": { "type": "Point", "coordinates": [ 85.322008564292332, 27.634973011339579 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4038, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Ind", "fptarea": 90, "repvalue": 720000, "xcoord": 85.325294748376891, "ycoord": 27.63688271928142 }, "geometry": { "type": "Point", "coordinates": [ 85.325294748376891, 27.63688271928142 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4039, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Ind", "fptarea": 87, "repvalue": 435000, "xcoord": 85.322485955140579, "ycoord": 27.639899779242107 }, "geometry": { "type": "Point", "coordinates": [ 85.322485955140579, 27.639899779242107 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4040, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+7s+Ind", "fptarea": 90, "repvalue": 630000, "xcoord": 85.32010771729442, "ycoord": 27.636426291715164 }, "geometry": { "type": "Point", "coordinates": [ 85.32010771729442, 27.636426291715164 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4041, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 104, "repvalue": 520000, "xcoord": 85.324952785197937, "ycoord": 27.637567527794165 }, "geometry": { "type": "Point", "coordinates": [ 85.324952785197937, 27.637567527794165 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4042, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 88, "repvalue": 704000, "xcoord": 85.323829875535452, "ycoord": 27.638734995529859 }, "geometry": { "type": "Point", "coordinates": [ 85.323829875535452, 27.638734995529859 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4043, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Ind", "fptarea": 103, "repvalue": 515000, "xcoord": 85.323153417139366, "ycoord": 27.639612594218825 }, "geometry": { "type": "Point", "coordinates": [ 85.323153417139366, 27.639612594218825 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4044, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 94, "repvalue": 564000, "xcoord": 85.320373054955382, "ycoord": 27.640759975421975 }, "geometry": { "type": "Point", "coordinates": [ 85.320373054955382, 27.640759975421975 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4045, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 86, "repvalue": 602000, "xcoord": 85.32293693332295, "ycoord": 27.639314716286041 }, "geometry": { "type": "Point", "coordinates": [ 85.32293693332295, 27.639314716286041 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4046, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+5s+Ind", "fptarea": 95, "repvalue": 475000, "xcoord": 85.321596000597495, "ycoord": 27.640282687347764 }, "geometry": { "type": "Point", "coordinates": [ 85.321596000597495, 27.640282687347764 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4047, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 93, "repvalue": 651000, "xcoord": 85.323620891876502, "ycoord": 27.637945110035027 }, "geometry": { "type": "Point", "coordinates": [ 85.323620891876502, 27.637945110035027 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4048, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+7s+Ind", "fptarea": 95, "repvalue": 665000, "xcoord": 85.32133361866299, "ycoord": 27.635752200342367 }, "geometry": { "type": "Point", "coordinates": [ 85.32133361866299, 27.635752200342367 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4049, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Ind", "fptarea": 102, "repvalue": 612000, "xcoord": 85.322304002540506, "ycoord": 27.637338662511016 }, "geometry": { "type": "Point", "coordinates": [ 85.322304002540506, 27.637338662511016 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4050, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Ind", "fptarea": 103, "repvalue": 515000, "xcoord": 85.320141543135847, "ycoord": 27.641446108438871 }, "geometry": { "type": "Point", "coordinates": [ 85.320141543135847, 27.641446108438871 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4051, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+8s+Ind", "fptarea": 103, "repvalue": 824000, "xcoord": 85.323060931845163, "ycoord": 27.638430437687589 }, "geometry": { "type": "Point", "coordinates": [ 85.323060931845163, 27.638430437687589 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4052, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+8s+Ind", "fptarea": 86, "repvalue": 688000, "xcoord": 85.320345228403113, "ycoord": 27.63534655146875 }, "geometry": { "type": "Point", "coordinates": [ 85.320345228403113, 27.63534655146875 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4053, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 87, "repvalue": 609000, "xcoord": 85.321660580942094, "ycoord": 27.636051417881411 }, "geometry": { "type": "Point", "coordinates": [ 85.321660580942094, 27.636051417881411 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4054, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 91, "repvalue": 728000, "xcoord": 85.320818036860842, "ycoord": 27.640568526239907 }, "geometry": { "type": "Point", "coordinates": [ 85.320818036860842, 27.640568526239907 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4055, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Ind", "fptarea": 91, "repvalue": 637000, "xcoord": 85.321562105703293, "ycoord": 27.635262867242602 }, "geometry": { "type": "Point", "coordinates": [ 85.321562105703293, 27.635262867242602 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4056, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 91, "repvalue": 637000, "xcoord": 85.321409562533759, "ycoord": 27.638016775301249 }, "geometry": { "type": "Point", "coordinates": [ 85.321409562533759, 27.638016775301249 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4057, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Ind", "fptarea": 95, "repvalue": 855000, "xcoord": 85.322811431472502, "ycoord": 27.640297396222994 }, "geometry": { "type": "Point", "coordinates": [ 85.322811431472502, 27.640297396222994 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4058, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 92, "repvalue": 828000, "xcoord": 85.321644061728691, "ycoord": 27.637133835910952 }, "geometry": { "type": "Point", "coordinates": [ 85.321644061728691, 27.637133835910952 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4059, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 90, "repvalue": 720000, "xcoord": 85.322536991935777, "ycoord": 27.636554122827125 }, "geometry": { "type": "Point", "coordinates": [ 85.322536991935777, 27.636554122827125 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4060, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Ind", "fptarea": 96, "repvalue": 480000, "xcoord": 85.324389833971765, "ycoord": 27.638249664709278 }, "geometry": { "type": "Point", "coordinates": [ 85.324389833971765, 27.638249664709278 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4061, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+9s+Ind", "fptarea": 91, "repvalue": 819000, "xcoord": 85.321417072711455, "ycoord": 27.637524767249964 }, "geometry": { "type": "Point", "coordinates": [ 85.321417072711455, 27.637524767249964 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 4062, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 86, "repvalue": 774000, "xcoord": 85.32416285194256, "ycoord": 27.638640600815638 }, "geometry": { "type": "Point", "coordinates": [ 85.32416285194256, 27.638640600815638 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1545, "nhouse": 17, "residents": 76, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 80, "repvalue": 1600000, "xcoord": 85.305577883253648, "ycoord": 27.61689167385742 }, "geometry": { "type": "Point", "coordinates": [ 85.305577883253648, 27.61689167385742 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1546, "nhouse": 7, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 62, "repvalue": 620000, "xcoord": 85.304446024193894, "ycoord": 27.620499591459531 }, "geometry": { "type": "Point", "coordinates": [ 85.304446024193894, 27.620499591459531 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1547, "nhouse": 18, "residents": 66, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 58, "repvalue": 1624000, "xcoord": 85.305682691521, "ycoord": 27.617851652486021 }, "geometry": { "type": "Point", "coordinates": [ 85.305682691521, 27.617851652486021 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1548, "nhouse": 3, "residents": 15, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 82, "repvalue": 328000, "xcoord": 85.305759628331046, "ycoord": 27.620622164880217 }, "geometry": { "type": "Point", "coordinates": [ 85.305759628331046, 27.620622164880217 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1549, "nhouse": 4, "residents": 16, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 64, "repvalue": 384000, "xcoord": 85.304685159346818, "ycoord": 27.62050251446643 }, "geometry": { "type": "Point", "coordinates": [ 85.304685159346818, 27.62050251446643 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1550, "nhouse": 32, "residents": 128, "specialfac": 0, "expstr": "RCi+HC+19s+Res", "fptarea": 77, "repvalue": 2926000, "xcoord": 85.305320717474345, "ycoord": 27.61806027477731 }, "geometry": { "type": "Point", "coordinates": [ 85.305320717474345, 27.61806027477731 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1551, "nhouse": 4, "residents": 13, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 54, "repvalue": 432000, "xcoord": 85.306124888874677, "ycoord": 27.620200537849687 }, "geometry": { "type": "Point", "coordinates": [ 85.306124888874677, 27.620200537849687 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1552, "nhouse": 2, "residents": 5, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 52, "repvalue": 208000, "xcoord": 85.306162589734512, "ycoord": 27.61775099126703 }, "geometry": { "type": "Point", "coordinates": [ 85.306162589734512, 27.61775099126703 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1553, "nhouse": 8, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 63, "repvalue": 756000, "xcoord": 85.306853762941145, "ycoord": 27.619463782510028 }, "geometry": { "type": "Point", "coordinates": [ 85.306853762941145, 27.619463782510028 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1554, "nhouse": 11, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 73, "repvalue": 1022000, "xcoord": 85.307359874974281, "ycoord": 27.617659083945721 }, "geometry": { "type": "Point", "coordinates": [ 85.307359874974281, 27.617659083945721 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1555, "nhouse": 11, "residents": 47, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 76, "repvalue": 1064000, "xcoord": 85.304346148365937, "ycoord": 27.619220106858158 }, "geometry": { "type": "Point", "coordinates": [ 85.304346148365937, 27.619220106858158 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1556, "nhouse": 5, "residents": 22, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 81, "repvalue": 486000, "xcoord": 85.306152755186346, "ycoord": 27.61839000350701 }, "geometry": { "type": "Point", "coordinates": [ 85.306152755186346, 27.61839000350701 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1557, "nhouse": 8, "residents": 29, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 62, "repvalue": 744000, "xcoord": 85.304021914588603, "ycoord": 27.616979181169626 }, "geometry": { "type": "Point", "coordinates": [ 85.304021914588603, 27.616979181169626 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1558, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 88, "repvalue": 352000, "xcoord": 85.304491966322544, "ycoord": 27.61751753735394 }, "geometry": { "type": "Point", "coordinates": [ 85.304491966322544, 27.61751753735394 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1559, "nhouse": 4, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 45, "repvalue": 360000, "xcoord": 85.307485990706581, "ycoord": 27.617234534361248 }, "geometry": { "type": "Point", "coordinates": [ 85.307485990706581, 27.617234534361248 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1560, "nhouse": 7, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 63, "repvalue": 630000, "xcoord": 85.304113580588933, "ycoord": 27.618791175741119 }, "geometry": { "type": "Point", "coordinates": [ 85.304113580588933, 27.618791175741119 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1561, "nhouse": 18, "residents": 74, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 56, "repvalue": 1680000, "xcoord": 85.30617570196172, "ycoord": 27.61689897485045 }, "geometry": { "type": "Point", "coordinates": [ 85.30617570196172, 27.61689897485045 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1562, "nhouse": 11, "residents": 47, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 82, "repvalue": 984000, "xcoord": 85.305674493730379, "ycoord": 27.618384162550129 }, "geometry": { "type": "Point", "coordinates": [ 85.305674493730379, 27.618384162550129 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1563, "nhouse": 13, "residents": 54, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 82, "repvalue": 1148000, "xcoord": 85.30688980809208, "ycoord": 27.61712073683799 }, "geometry": { "type": "Point", "coordinates": [ 85.30688980809208, 27.61712073683799 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1564, "nhouse": 12, "residents": 55, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 56, "repvalue": 1120000, "xcoord": 85.306133085118546, "ycoord": 27.61966802780065 }, "geometry": { "type": "Point", "coordinates": [ 85.306133085118546, 27.61966802780065 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1565, "nhouse": 6, "residents": 24, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 76, "repvalue": 608000, "xcoord": 85.305209352473454, "ycoord": 27.617526304033163 }, "geometry": { "type": "Point", "coordinates": [ 85.305209352473454, 27.617526304033163 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1566, "nhouse": 15, "residents": 74, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 87, "repvalue": 1392000, "xcoord": 85.304930856279924, "ycoord": 27.620079429309573 }, "geometry": { "type": "Point", "coordinates": [ 85.304930856279924, 27.620079429309573 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1567, "nhouse": 27, "residents": 107, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 83, "repvalue": 2490000, "xcoord": 85.303887579737392, "ycoord": 27.617936236637103 }, "geometry": { "type": "Point", "coordinates": [ 85.303887579737392, 27.617936236637103 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1568, "nhouse": 3, "residents": 19, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 77, "repvalue": 308000, "xcoord": 85.306773520894637, "ycoord": 27.616906273269617 }, "geometry": { "type": "Point", "coordinates": [ 85.306773520894637, 27.616906273269617 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1569, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 48, "repvalue": 288000, "xcoord": 85.305936574451508, "ycoord": 27.616896054762098 }, "geometry": { "type": "Point", "coordinates": [ 85.305936574451508, 27.616896054762098 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1570, "nhouse": 1, "residents": 5, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 82, "repvalue": 164000, "xcoord": 85.304478840720392, "ycoord": 27.618369552950703 }, "geometry": { "type": "Point", "coordinates": [ 85.304478840720392, 27.618369552950703 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1571, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 67, "repvalue": 268000, "xcoord": 85.305762907621016, "ycoord": 27.620409160919053 }, "geometry": { "type": "Point", "coordinates": [ 85.305762907621016, 27.620409160919053 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1572, "nhouse": 9, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 52, "repvalue": 832000, "xcoord": 85.306362384541501, "ycoord": 27.620309959951761 }, "geometry": { "type": "Point", "coordinates": [ 85.306362384541501, 27.620309959951761 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1573, "nhouse": 12, "residents": 53, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 83, "repvalue": 1162000, "xcoord": 85.305879196117587, "ycoord": 27.620623625309069 }, "geometry": { "type": "Point", "coordinates": [ 85.305879196117587, 27.620623625309069 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1574, "nhouse": 7, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 48, "repvalue": 672000, "xcoord": 85.306051220837688, "ycoord": 27.617217021007171 }, "geometry": { "type": "Point", "coordinates": [ 85.306051220837688, 27.617217021007171 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1575, "nhouse": 5, "residents": 23, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 87, "repvalue": 522000, "xcoord": 85.303520677295296, "ycoord": 27.618464359747186 }, "geometry": { "type": "Point", "coordinates": [ 85.303520677295296, 27.618464359747186 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1576, "nhouse": 1, "residents": 5, "specialfac": 0, "expstr": "BrCfl+MC+1s+Res", "fptarea": 53, "repvalue": 106000, "xcoord": 85.305653178422091, "ycoord": 27.61976868851497 }, "geometry": { "type": "Point", "coordinates": [ 85.305653178422091, 27.61976868851497 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1577, "nhouse": 11, "residents": 43, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 72, "repvalue": 1008000, "xcoord": 85.306282154427606, "ycoord": 27.61775245120938 }, "geometry": { "type": "Point", "coordinates": [ 85.306282154427606, 27.61775245120938 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1578, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 45, "repvalue": 270000, "xcoord": 85.305541810531494, "ycoord": 27.61923471801374 }, "geometry": { "type": "Point", "coordinates": [ 85.305541810531494, 27.61923471801374 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1579, "nhouse": 6, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 82, "repvalue": 656000, "xcoord": 85.304457510387863, "ycoord": 27.619754078059948 }, "geometry": { "type": "Point", "coordinates": [ 85.304457510387863, 27.619754078059948 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1580, "nhouse": 5, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 79, "repvalue": 474000, "xcoord": 85.305073386777977, "ycoord": 27.618589862985182 }, "geometry": { "type": "Point", "coordinates": [ 85.305073386777977, 27.618589862985182 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1581, "nhouse": 28, "residents": 108, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 85, "repvalue": 2550000, "xcoord": 85.307096172691857, "ycoord": 27.619253697122865 }, "geometry": { "type": "Point", "coordinates": [ 85.307096172691857, 27.619253697122865 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1582, "nhouse": 4, "residents": 14, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 71, "repvalue": 426000, "xcoord": 85.305070106407072, "ycoord": 27.61880286692605 }, "geometry": { "type": "Point", "coordinates": [ 85.305070106407072, 27.61880286692605 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1583, "nhouse": 7, "residents": 29, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 81, "repvalue": 648000, "xcoord": 85.307122383792773, "ycoord": 27.617549663724073 }, "geometry": { "type": "Point", "coordinates": [ 85.307122383792773, 27.617549663724073 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1584, "nhouse": 7, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 60, "repvalue": 720000, "xcoord": 85.305156868797113, "ycoord": 27.620934367021533 }, "geometry": { "type": "Point", "coordinates": [ 85.305156868797113, 27.620934367021533 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1585, "nhouse": 9, "residents": 29, "specialfac": 0, "expstr": "RCi+HC+9s+Res", "fptarea": 49, "repvalue": 882000, "xcoord": 85.304450946902477, "ycoord": 27.620180085727196 }, "geometry": { "type": "Point", "coordinates": [ 85.304450946902477, 27.620180085727196 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1586, "nhouse": 5, "residents": 17, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 86, "repvalue": 516000, "xcoord": 85.303962829819525, "ycoord": 27.620813249847874 }, "geometry": { "type": "Point", "coordinates": [ 85.303962829819525, 27.620813249847874 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1587, "nhouse": 8, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 57, "repvalue": 798000, "xcoord": 85.306119971020408, "ycoord": 27.620520043858402 }, "geometry": { "type": "Point", "coordinates": [ 85.306119971020408, 27.620520043858402 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1588, "nhouse": 25, "residents": 99, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 72, "repvalue": 2304000, "xcoord": 85.30648359095531, "ycoord": 27.62020491782167 }, "geometry": { "type": "Point", "coordinates": [ 85.30648359095531, 27.62020491782167 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1589, "nhouse": 7, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 49, "repvalue": 686000, "xcoord": 85.30747125060843, "ycoord": 27.618193053426452 }, "geometry": { "type": "Point", "coordinates": [ 85.30747125060843, 27.618193053426452 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1590, "nhouse": 12, "residents": 48, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 81, "repvalue": 1134000, "xcoord": 85.305579522819357, "ycoord": 27.616785171830479 }, "geometry": { "type": "Point", "coordinates": [ 85.305579522819357, 27.616785171830479 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1591, "nhouse": 13, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 87, "repvalue": 1218000, "xcoord": 85.306960222055352, "ycoord": 27.620317258393413 }, "geometry": { "type": "Point", "coordinates": [ 85.306960222055352, 27.620317258393413 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1592, "nhouse": 19, "residents": 75, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 52, "repvalue": 1768000, "xcoord": 85.304688440699223, "ycoord": 27.620289510620271 }, "geometry": { "type": "Point", "coordinates": [ 85.304688440699223, 27.620289510620271 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1593, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 60, "repvalue": 240000, "xcoord": 85.304929215857385, "ycoord": 27.620185931250131 }, "geometry": { "type": "Point", "coordinates": [ 85.304929215857385, 27.620185931250131 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1594, "nhouse": 12, "residents": 46, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 81, "repvalue": 1134000, "xcoord": 85.306501618581038, "ycoord": 27.619033395439839 }, "geometry": { "type": "Point", "coordinates": [ 85.306501618581038, 27.619033395439839 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1595, "nhouse": 26, "residents": 106, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 75, "repvalue": 2400000, "xcoord": 85.306639209954213, "ycoord": 27.617863332489325 }, "geometry": { "type": "Point", "coordinates": [ 85.306639209954213, 27.617863332489325 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1596, "nhouse": 26, "residents": 102, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 75, "repvalue": 2400000, "xcoord": 85.303602484468598, "ycoord": 27.62091536512639 }, "geometry": { "type": "Point", "coordinates": [ 85.303602484468598, 27.62091536512639 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1597, "nhouse": 10, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 69, "repvalue": 966000, "xcoord": 85.30389742724384, "ycoord": 27.617297225106014 }, "geometry": { "type": "Point", "coordinates": [ 85.30389742724384, 27.617297225106014 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1598, "nhouse": 6, "residents": 22, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 60, "repvalue": 600000, "xcoord": 85.306036468258696, "ycoord": 27.618175539362291 }, "geometry": { "type": "Point", "coordinates": [ 85.306036468258696, 27.618175539362291 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1599, "nhouse": 5, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 84, "repvalue": 504000, "xcoord": 85.305086507901578, "ycoord": 27.617737847152718 }, "geometry": { "type": "Point", "coordinates": [ 85.305086507901578, 27.617737847152718 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1600, "nhouse": 5, "residents": 15, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 82, "repvalue": 492000, "xcoord": 85.303884297163208, "ycoord": 27.618149240466995 }, "geometry": { "type": "Point", "coordinates": [ 85.303884297163208, 27.618149240466995 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1601, "nhouse": 1, "residents": 7, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 65, "repvalue": 130000, "xcoord": 85.306850485893463, "ycoord": 27.61967678662063 }, "geometry": { "type": "Point", "coordinates": [ 85.306850485893463, 27.61967678662063 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1602, "nhouse": 1, "residents": 2, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 82, "repvalue": 164000, "xcoord": 85.303733543740265, "ycoord": 27.620171314353769 }, "geometry": { "type": "Point", "coordinates": [ 85.303733543740265, 27.620171314353769 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1603, "nhouse": 10, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 47, "repvalue": 940000, "xcoord": 85.306413190742106, "ycoord": 27.617008396598237 }, "geometry": { "type": "Point", "coordinates": [ 85.306413190742106, 27.617008396598237 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1604, "nhouse": 6, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 56, "repvalue": 672000, "xcoord": 85.307245224321335, "ycoord": 27.617338118610576 }, "geometry": { "type": "Point", "coordinates": [ 85.307245224321335, 27.617338118610576 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1605, "nhouse": 7, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 46, "repvalue": 644000, "xcoord": 85.307128936208414, "ycoord": 27.617123655305367 }, "geometry": { "type": "Point", "coordinates": [ 85.307128936208414, 27.617123655305367 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1606, "nhouse": 13, "residents": 46, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 82, "repvalue": 1148000, "xcoord": 85.303630393111618, "ycoord": 27.619104833338895 }, "geometry": { "type": "Point", "coordinates": [ 85.303630393111618, 27.619104833338895 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1607, "nhouse": 6, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 53, "repvalue": 530000, "xcoord": 85.306732557719087, "ycoord": 27.619568825026846 }, "geometry": { "type": "Point", "coordinates": [ 85.306732557719087, 27.619568825026846 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1608, "nhouse": 8, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 66, "repvalue": 792000, "xcoord": 85.304449306008621, "ycoord": 27.620286587639701 }, "geometry": { "type": "Point", "coordinates": [ 85.304449306008621, 27.620286587639701 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1609, "nhouse": 27, "residents": 102, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 72, "repvalue": 2448000, "xcoord": 85.306485229875349, "ycoord": 27.620098415795582 }, "geometry": { "type": "Point", "coordinates": [ 85.306485229875349, 27.620098415795582 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1610, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 68, "repvalue": 272000, "xcoord": 85.305563126757335, "ycoord": 27.617850192022292 }, "geometry": { "type": "Point", "coordinates": [ 85.305563126757335, 27.617850192022292 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1611, "nhouse": 30, "residents": 126, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 74, "repvalue": 2664000, "xcoord": 85.305789140645246, "ycoord": 27.61870512898129 }, "geometry": { "type": "Point", "coordinates": [ 85.305789140645246, 27.61870512898129 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1612, "nhouse": 6, "residents": 18, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 58, "repvalue": 580000, "xcoord": 85.305528692098207, "ycoord": 27.620086733863548 }, "geometry": { "type": "Point", "coordinates": [ 85.305528692098207, 27.620086733863548 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1613, "nhouse": 5, "residents": 21, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 58, "repvalue": 464000, "xcoord": 85.30735496123458, "ycoord": 27.617978590275893 }, "geometry": { "type": "Point", "coordinates": [ 85.30735496123458, 27.617978590275893 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1614, "nhouse": 3, "residents": 18, "specialfac": 0, "expstr": "BrCfl+MC+2s+Res", "fptarea": 72, "repvalue": 288000, "xcoord": 85.305895591051822, "ycoord": 27.619558605368443 }, "geometry": { "type": "Point", "coordinates": [ 85.305895591051822, 27.619558605368443 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1615, "nhouse": 20, "residents": 77, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 66, "repvalue": 1848000, "xcoord": 85.307466337080598, "ycoord": 27.618512559750467 }, "geometry": { "type": "Point", "coordinates": [ 85.307466337080598, 27.618512559750467 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1616, "nhouse": 2, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 46, "repvalue": 184000, "xcoord": 85.303722052439838, "ycoord": 27.620916827428459 }, "geometry": { "type": "Point", "coordinates": [ 85.303722052439838, 27.620916827428459 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1617, "nhouse": 9, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 69, "repvalue": 828000, "xcoord": 85.304215094702059, "ycoord": 27.619964158544089 }, "geometry": { "type": "Point", "coordinates": [ 85.304215094702059, 27.619964158544089 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1618, "nhouse": 5, "residents": 20, "specialfac": 0, "expstr": "BrCri+MC+4s+Res", "fptarea": 62, "repvalue": 496000, "xcoord": 85.304447665105769, "ycoord": 27.620393089550479 }, "geometry": { "type": "Point", "coordinates": [ 85.304447665105769, 27.620393089550479 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1619, "nhouse": 9, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 54, "repvalue": 864000, "xcoord": 85.306380413537468, "ycoord": 27.619138437661253 }, "geometry": { "type": "Point", "coordinates": [ 85.306380413537468, 27.619138437661253 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1620, "nhouse": 17, "residents": 58, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 72, "repvalue": 1584000, "xcoord": 85.304842457657116, "ycoord": 27.618054431016517 }, "geometry": { "type": "Point", "coordinates": [ 85.304842457657116, 27.618054431016517 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1621, "nhouse": 3, "residents": 16, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 51, "repvalue": 306000, "xcoord": 85.305458319539028, "ycoord": 27.616890213349958 }, "geometry": { "type": "Point", "coordinates": [ 85.305458319539028, 27.616890213349958 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1622, "nhouse": 19, "residents": 83, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 75, "repvalue": 1800000, "xcoord": 85.305697446977277, "ycoord": 27.616893134261939 }, "geometry": { "type": "Point", "coordinates": [ 85.305697446977277, 27.616893134261939 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1623, "nhouse": 6, "residents": 21, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 47, "repvalue": 564000, "xcoord": 85.304862141359962, "ycoord": 27.616776407280859 }, "geometry": { "type": "Point", "coordinates": [ 85.304862141359962, 27.616776407280859 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1624, "nhouse": 3, "residents": 8, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 70, "repvalue": 280000, "xcoord": 85.304947260010252, "ycoord": 27.6190144098091 }, "geometry": { "type": "Point", "coordinates": [ 85.304947260010252, 27.6190144098091 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1625, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 58, "repvalue": 232000, "xcoord": 85.306881616394435, "ycoord": 27.617653247291315 }, "geometry": { "type": "Point", "coordinates": [ 85.306881616394435, 27.617653247291315 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1626, "nhouse": 10, "residents": 46, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 62, "repvalue": 992000, "xcoord": 85.307109278529978, "ycoord": 27.618401680478666 }, "geometry": { "type": "Point", "coordinates": [ 85.307109278529978, 27.618401680478666 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1627, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 50, "repvalue": 300000, "xcoord": 85.306984798111969, "ycoord": 27.618719727452365 }, "geometry": { "type": "Point", "coordinates": [ 85.306984798111969, 27.618719727452365 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1628, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 73, "repvalue": 292000, "xcoord": 85.305427163885156, "ycoord": 27.618913751409107 }, "geometry": { "type": "Point", "coordinates": [ 85.305427163885156, 27.618913751409107 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1629, "nhouse": 8, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 74, "repvalue": 740000, "xcoord": 85.304609890105326, "ycoord": 27.617625500686749 }, "geometry": { "type": "Point", "coordinates": [ 85.304609890105326, 27.617625500686749 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1630, "nhouse": 1, "residents": 2, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 64, "repvalue": 128000, "xcoord": 85.30616914592008, "ycoord": 27.617324983072539 }, "geometry": { "type": "Point", "coordinates": [ 85.30616914592008, 27.617324983072539 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1631, "nhouse": 8, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 60, "repvalue": 720000, "xcoord": 85.307595728962909, "ycoord": 27.617875005903304 }, "geometry": { "type": "Point", "coordinates": [ 85.307595728962909, 27.617875005903304 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1632, "nhouse": 10, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 62, "repvalue": 992000, "xcoord": 85.303645167221546, "ycoord": 27.618146316308334 }, "geometry": { "type": "Point", "coordinates": [ 85.303645167221546, 27.618146316308334 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1633, "nhouse": 22, "residents": 89, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 76, "repvalue": 1976000, "xcoord": 85.307089619557033, "ycoord": 27.619679705403556 }, "geometry": { "type": "Point", "coordinates": [ 85.307089619557033, 27.619679705403556 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1634, "nhouse": 10, "residents": 45, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 58, "repvalue": 928000, "xcoord": 85.306534393294484, "ycoord": 27.616903354210816 }, "geometry": { "type": "Point", "coordinates": [ 85.306534393294484, 27.616903354210816 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1635, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 76, "repvalue": 304000, "xcoord": 85.30569580751812, "ycoord": 27.616999636293734 }, "geometry": { "type": "Point", "coordinates": [ 85.30569580751812, 27.616999636293734 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1636, "nhouse": 35, "residents": 161, "specialfac": 0, "expstr": "RCi+HC+19s+Res", "fptarea": 85, "repvalue": 3230000, "xcoord": 85.305907066970477, "ycoord": 27.618813091307352 }, "geometry": { "type": "Point", "coordinates": [ 85.305907066970477, 27.618813091307352 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1637, "nhouse": 9, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 75, "repvalue": 900000, "xcoord": 85.305181471667922, "ycoord": 27.619336837715704 }, "geometry": { "type": "Point", "coordinates": [ 85.305181471667922, 27.619336837715704 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1638, "nhouse": 23, "residents": 87, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 66, "repvalue": 2112000, "xcoord": 85.304372401995565, "ycoord": 27.617516075880385 }, "geometry": { "type": "Point", "coordinates": [ 85.304372401995565, 27.617516075880385 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1639, "nhouse": 8, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 53, "repvalue": 742000, "xcoord": 85.308091997607178, "ycoord": 27.61670931640008 }, "geometry": { "type": "Point", "coordinates": [ 85.308091997607178, 27.61670931640008 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1640, "nhouse": 8, "residents": 30, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 55, "repvalue": 770000, "xcoord": 85.306396802589461, "ycoord": 27.618073417215996 }, "geometry": { "type": "Point", "coordinates": [ 85.306396802589461, 27.618073417215996 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1641, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 61, "repvalue": 122000, "xcoord": 85.304945619677724, "ycoord": 27.619120911766913 }, "geometry": { "type": "Point", "coordinates": [ 85.304945619677724, 27.619120911766913 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1642, "nhouse": 11, "residents": 48, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 49, "repvalue": 980000, "xcoord": 85.306495063206668, "ycoord": 27.619459403602839 }, "geometry": { "type": "Point", "coordinates": [ 85.306495063206668, 27.619459403602839 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1643, "nhouse": 1, "residents": 8, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 69, "repvalue": 138000, "xcoord": 85.303496051234376, "ycoord": 27.620061887877345 }, "geometry": { "type": "Point", "coordinates": [ 85.303496051234376, 27.620061887877345 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1644, "nhouse": 15, "residents": 67, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 69, "repvalue": 1380000, "xcoord": 85.306873424472016, "ycoord": 27.618185757701514 }, "geometry": { "type": "Point", "coordinates": [ 85.306873424472016, 27.618185757701514 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1645, "nhouse": 9, "residents": 29, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 69, "repvalue": 828000, "xcoord": 85.305672854145271, "ycoord": 27.618490664557772 }, "geometry": { "type": "Point", "coordinates": [ 85.305672854145271, 27.618490664557772 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1646, "nhouse": 10, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 80, "repvalue": 960000, "xcoord": 85.304226582198893, "ycoord": 27.619218645176296 }, "geometry": { "type": "Point", "coordinates": [ 85.304226582198893, 27.619218645176296 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1647, "nhouse": 9, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 60, "repvalue": 840000, "xcoord": 85.304467355345793, "ycoord": 27.619115066507298 }, "geometry": { "type": "Point", "coordinates": [ 85.304467355345793, 27.619115066507298 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1648, "nhouse": 9, "residents": 52, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 71, "repvalue": 852000, "xcoord": 85.304329738676827, "ycoord": 27.620285125994968 }, "geometry": { "type": "Point", "coordinates": [ 85.304329738676827, 27.620285125994968 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1649, "nhouse": 12, "residents": 52, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 77, "repvalue": 1078000, "xcoord": 85.30592182107533, "ycoord": 27.617854573104594 }, "geometry": { "type": "Point", "coordinates": [ 85.30592182107533, 27.617854573104594 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1650, "nhouse": 10, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 74, "repvalue": 888000, "xcoord": 85.305898869930701, "ycoord": 27.619345601359615 }, "geometry": { "type": "Point", "coordinates": [ 85.305898869930701, 27.619345601359615 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1651, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 53, "repvalue": 106000, "xcoord": 85.305448481262431, "ycoord": 27.617529225435923 }, "geometry": { "type": "Point", "coordinates": [ 85.305448481262431, 27.617529225435923 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1652, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 84, "repvalue": 168000, "xcoord": 85.304980064770518, "ycoord": 27.61688437029056 }, "geometry": { "type": "Point", "coordinates": [ 85.304980064770518, 27.61688437029056 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1653, "nhouse": 12, "residents": 46, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 81, "repvalue": 1134000, "xcoord": 85.303751600606276, "ycoord": 27.618999793637013 }, "geometry": { "type": "Point", "coordinates": [ 85.303751600606276, 27.618999793637013 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1654, "nhouse": 7, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 49, "repvalue": 686000, "xcoord": 85.303756525016937, "ycoord": 27.618680287950752 }, "geometry": { "type": "Point", "coordinates": [ 85.303756525016937, 27.618680287950752 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1655, "nhouse": 28, "residents": 119, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 71, "repvalue": 2556000, "xcoord": 85.307097810953081, "ycoord": 27.619147195048374 }, "geometry": { "type": "Point", "coordinates": [ 85.307097810953081, 27.619147195048374 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1656, "nhouse": 8, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 73, "repvalue": 730000, "xcoord": 85.304224941154942, "ycoord": 27.61932514709116 }, "geometry": { "type": "Point", "coordinates": [ 85.304224941154942, 27.61932514709116 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1657, "nhouse": 16, "residents": 71, "specialfac": 0, "expstr": "RCi+HC+9s+Res", "fptarea": 85, "repvalue": 1530000, "xcoord": 85.307002819267865, "ycoord": 27.617548204515572 }, "geometry": { "type": "Point", "coordinates": [ 85.307002819267865, 27.617548204515572 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1658, "nhouse": 1, "residents": 5, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 51, "repvalue": 102000, "xcoord": 85.304439460456393, "ycoord": 27.620925599078475 }, "geometry": { "type": "Point", "coordinates": [ 85.304439460456393, 27.620925599078475 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1659, "nhouse": 10, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 69, "repvalue": 966000, "xcoord": 85.304957101816385, "ycoord": 27.618375398025997 }, "geometry": { "type": "Point", "coordinates": [ 85.304957101816385, 27.618375398025997 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1660, "nhouse": 19, "residents": 97, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 50, "repvalue": 1700000, "xcoord": 85.304118503905443, "ycoord": 27.618471669985233 }, "geometry": { "type": "Point", "coordinates": [ 85.304118503905443, 27.618471669985233 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1661, "nhouse": 11, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 66, "repvalue": 1056000, "xcoord": 85.303720410789452, "ycoord": 27.621023329289368 }, "geometry": { "type": "Point", "coordinates": [ 85.303720410789452, 27.621023329289368 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1662, "nhouse": 11, "residents": 46, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 87, "repvalue": 1044000, "xcoord": 85.30568597057426, "ycoord": 27.617638648448295 }, "geometry": { "type": "Point", "coordinates": [ 85.30568597057426, 27.617638648448295 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1663, "nhouse": 4, "residents": 19, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 45, "repvalue": 360000, "xcoord": 85.306010239652508, "ycoord": 27.619879571648575 }, "geometry": { "type": "Point", "coordinates": [ 85.306010239652508, 27.619879571648575 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1664, "nhouse": 10, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 65, "repvalue": 910000, "xcoord": 85.306377135619158, "ycoord": 27.619351441729599 }, "geometry": { "type": "Point", "coordinates": [ 85.306377135619158, 27.619351441729599 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1665, "nhouse": 27, "residents": 124, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 73, "repvalue": 2482000, "xcoord": 85.307217377220496, "ycoord": 27.619148654252527 }, "geometry": { "type": "Point", "coordinates": [ 85.307217377220496, 27.619148654252527 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1666, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 57, "repvalue": 114000, "xcoord": 85.305761267980529, "ycoord": 27.620515662900498 }, "geometry": { "type": "Point", "coordinates": [ 85.305761267980529, 27.620515662900498 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1667, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 67, "repvalue": 268000, "xcoord": 85.30508486779263, "ycoord": 27.617844349137812 }, "geometry": { "type": "Point", "coordinates": [ 85.30508486779263, 27.617844349137812 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1668, "nhouse": 7, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 59, "repvalue": 708000, "xcoord": 85.306496702063754, "ycoord": 27.619352901564682 }, "geometry": { "type": "Point", "coordinates": [ 85.306496702063754, 27.619352901564682 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1669, "nhouse": 21, "residents": 87, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 65, "repvalue": 1950000, "xcoord": 85.305338755833404, "ycoord": 27.616888752739538 }, "geometry": { "type": "Point", "coordinates": [ 85.305338755833404, 27.616888752739538 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1670, "nhouse": 15, "residents": 51, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 69, "repvalue": 1380000, "xcoord": 85.303969395370302, "ycoord": 27.620387242327382 }, "geometry": { "type": "Point", "coordinates": [ 85.303969395370302, 27.620387242327382 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1671, "nhouse": 9, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 67, "repvalue": 804000, "xcoord": 85.306529477316786, "ycoord": 27.617222860439149 }, "geometry": { "type": "Point", "coordinates": [ 85.306529477316786, 27.617222860439149 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1672, "nhouse": 11, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 62, "repvalue": 992000, "xcoord": 85.305312517860258, "ycoord": 27.618592784725475 }, "geometry": { "type": "Point", "coordinates": [ 85.305312517860258, 27.618592784725475 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1673, "nhouse": 10, "residents": 45, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 68, "repvalue": 952000, "xcoord": 85.307353323303374, "ycoord": 27.618085092382504 }, "geometry": { "type": "Point", "coordinates": [ 85.307353323303374, 27.618085092382504 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1674, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 73, "repvalue": 146000, "xcoord": 85.304454228663175, "ycoord": 27.619967081897023 }, "geometry": { "type": "Point", "coordinates": [ 85.304454228663175, 27.619967081897023 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1675, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 48, "repvalue": 96000, "xcoord": 85.306593325317934, "ycoord": 27.620845389766131 }, "geometry": { "type": "Point", "coordinates": [ 85.306593325317934, 27.620845389766131 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1676, "nhouse": 9, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 68, "repvalue": 816000, "xcoord": 85.307594091271824, "ycoord": 27.617981508024783 }, "geometry": { "type": "Point", "coordinates": [ 85.307594091271824, 27.617981508024783 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1677, "nhouse": 8, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 60, "repvalue": 720000, "xcoord": 85.304809648605158, "ycoord": 27.620184470023851 }, "geometry": { "type": "Point", "coordinates": [ 85.304809648605158, 27.620184470023851 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1678, "nhouse": 20, "residents": 81, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 85, "repvalue": 1870000, "xcoord": 85.303874449224452, "ycoord": 27.618788251915269 }, "geometry": { "type": "Point", "coordinates": [ 85.303874449224452, 27.618788251915269 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1679, "nhouse": 20, "residents": 81, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 84, "repvalue": 1848000, "xcoord": 85.306861955403036, "ycoord": 27.618931272203334 }, "geometry": { "type": "Point", "coordinates": [ 85.306861955403036, 27.618931272203334 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1680, "nhouse": 8, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 61, "repvalue": 732000, "xcoord": 85.305075026949922, "ycoord": 27.618483361012164 }, "geometry": { "type": "Point", "coordinates": [ 85.305075026949922, 27.618483361012164 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1681, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 78, "repvalue": 312000, "xcoord": 85.307133850425757, "ycoord": 27.616804148973234 }, "geometry": { "type": "Point", "coordinates": [ 85.307133850425757, 27.616804148973234 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1682, "nhouse": 25, "residents": 97, "specialfac": 0, "expstr": "RCi+HC+19s+Res", "fptarea": 60, "repvalue": 2280000, "xcoord": 85.303995656132273, "ycoord": 27.618683211969358 }, "geometry": { "type": "Point", "coordinates": [ 85.303995656132273, 27.618683211969358 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1683, "nhouse": 10, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 68, "repvalue": 952000, "xcoord": 85.306771882475516, "ycoord": 27.61701277536061 }, "geometry": { "type": "Point", "coordinates": [ 85.306771882475516, 27.61701277536061 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1684, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 58, "repvalue": 348000, "xcoord": 85.305184751897698, "ycoord": 27.619123833778932 }, "geometry": { "type": "Point", "coordinates": [ 85.305184751897698, 27.619123833778932 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1685, "nhouse": 6, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 46, "repvalue": 552000, "xcoord": 85.304193759608609, "ycoord": 27.621348683145673 }, "geometry": { "type": "Point", "coordinates": [ 85.304193759608609, 27.621348683145673 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1686, "nhouse": 8, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 67, "repvalue": 804000, "xcoord": 85.306167506887164, "ycoord": 27.617431485123749 }, "geometry": { "type": "Point", "coordinates": [ 85.306167506887164, 27.617431485123749 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1687, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 58, "repvalue": 232000, "xcoord": 85.307608830168135, "ycoord": 27.617022988869387 }, "geometry": { "type": "Point", "coordinates": [ 85.307608830168135, 27.617022988869387 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1688, "nhouse": 8, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 52, "repvalue": 728000, "xcoord": 85.304238069254495, "ycoord": 27.61847313172396 }, "geometry": { "type": "Point", "coordinates": [ 85.304238069254495, 27.61847313172396 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1689, "nhouse": 7, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 63, "repvalue": 630000, "xcoord": 85.305394364950487, "ycoord": 27.621043790798524 }, "geometry": { "type": "Point", "coordinates": [ 85.305394364950487, 27.621043790798524 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1690, "nhouse": 3, "residents": 19, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 80, "repvalue": 320000, "xcoord": 85.305663016445649, "ycoord": 27.619129676567422 }, "geometry": { "type": "Point", "coordinates": [ 85.305663016445649, 27.619129676567422 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1691, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 83, "repvalue": 166000, "xcoord": 85.307106002124385, "ycoord": 27.618614684650069 }, "geometry": { "type": "Point", "coordinates": [ 85.307106002124385, 27.618614684650069 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1692, "nhouse": 9, "residents": 45, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 69, "repvalue": 828000, "xcoord": 85.30746469922002, "ycoord": 27.618619061855028 }, "geometry": { "type": "Point", "coordinates": [ 85.30746469922002, 27.618619061855028 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1693, "nhouse": 7, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 69, "repvalue": 690000, "xcoord": 85.304360916316242, "ycoord": 27.618261589487503 }, "geometry": { "type": "Point", "coordinates": [ 85.304360916316242, 27.618261589487503 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1694, "nhouse": 9, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 58, "repvalue": 812000, "xcoord": 85.306840654534582, "ycoord": 27.620315798911026 }, "geometry": { "type": "Point", "coordinates": [ 85.306840654534582, 27.620315798911026 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1695, "nhouse": 6, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 72, "repvalue": 576000, "xcoord": 85.304262682887796, "ycoord": 27.61687560261284 }, "geometry": { "type": "Point", "coordinates": [ 85.304262682887796, 27.61687560261284 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1696, "nhouse": 19, "residents": 66, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 49, "repvalue": 1764000, "xcoord": 85.304012067937663, "ycoord": 27.617618192771282 }, "geometry": { "type": "Point", "coordinates": [ 85.304012067937663, 27.617618192771282 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1697, "nhouse": 5, "residents": 18, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 59, "repvalue": 472000, "xcoord": 85.306491785465539, "ycoord": 27.619672407673985 }, "geometry": { "type": "Point", "coordinates": [ 85.306491785465539, 27.619672407673985 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1698, "nhouse": 6, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 48, "repvalue": 576000, "xcoord": 85.303502618382154, "ycoord": 27.619635880413927 }, "geometry": { "type": "Point", "coordinates": [ 85.303502618382154, 27.619635880413927 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1699, "nhouse": 20, "residents": 79, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 51, "repvalue": 1836000, "xcoord": 85.306260847333022, "ycoord": 27.619136977736353 }, "geometry": { "type": "Point", "coordinates": [ 85.306260847333022, 27.619136977736353 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1700, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 58, "repvalue": 232000, "xcoord": 85.304729454565873, "ycoord": 27.617626961960969 }, "geometry": { "type": "Point", "coordinates": [ 85.304729454565873, 27.617626961960969 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1701, "nhouse": 11, "residents": 48, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 47, "repvalue": 1034000, "xcoord": 85.306981521421307, "ycoord": 27.618932731600264 }, "geometry": { "type": "Point", "coordinates": [ 85.306981521421307, 27.618932731600264 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1702, "nhouse": 10, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 66, "repvalue": 924000, "xcoord": 85.305273156580796, "ycoord": 27.621148831876248 }, "geometry": { "type": "Point", "coordinates": [ 85.305273156580796, 27.621148831876248 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1703, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 65, "repvalue": 260000, "xcoord": 85.306649041459039, "ycoord": 27.617224320039764 }, "geometry": { "type": "Point", "coordinates": [ 85.306649041459039, 27.617224320039764 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1704, "nhouse": 4, "residents": 14, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 73, "repvalue": 438000, "xcoord": 85.307127298117976, "ycoord": 27.617230157412632 }, "geometry": { "type": "Point", "coordinates": [ 85.307127298117976, 27.617230157412632 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1705, "nhouse": 3, "residents": 17, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 84, "repvalue": 336000, "xcoord": 85.303866242361138, "ycoord": 27.619320761408051 }, "geometry": { "type": "Point", "coordinates": [ 85.303866242361138, 27.619320761408051 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1706, "nhouse": 9, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 60, "repvalue": 840000, "xcoord": 85.306367301648336, "ycoord": 27.619990453893234 }, "geometry": { "type": "Point", "coordinates": [ 85.306367301648336, 27.619990453893234 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1707, "nhouse": 4, "residents": 19, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 60, "repvalue": 360000, "xcoord": 85.304500169531295, "ycoord": 27.61698502754988 }, "geometry": { "type": "Point", "coordinates": [ 85.304500169531295, 27.61698502754988 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1708, "nhouse": 16, "residents": 64, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 54, "repvalue": 1512000, "xcoord": 85.304932496693468, "ycoord": 27.619972927367293 }, "geometry": { "type": "Point", "coordinates": [ 85.304932496693468, 27.619972927367293 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1709, "nhouse": 8, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 59, "repvalue": 826000, "xcoord": 85.305040581448765, "ycoord": 27.620719902083266 }, "geometry": { "type": "Point", "coordinates": [ 85.305040581448765, 27.620719902083266 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1710, "nhouse": 8, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 57, "repvalue": 798000, "xcoord": 85.306609713497366, "ycoord": 27.619780369465396 }, "geometry": { "type": "Point", "coordinates": [ 85.306609713497366, 27.619780369465396 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1711, "nhouse": 4, "residents": 15, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 64, "repvalue": 384000, "xcoord": 85.305060265078339, "ycoord": 27.619441878707232 }, "geometry": { "type": "Point", "coordinates": [ 85.305060265078339, 27.619441878707232 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1712, "nhouse": 12, "residents": 47, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 52, "repvalue": 1144000, "xcoord": 85.305191312249235, "ycoord": 27.618697825884684 }, "geometry": { "type": "Point", "coordinates": [ 85.305191312249235, 27.618697825884684 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1713, "nhouse": 4, "residents": 16, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 72, "repvalue": 432000, "xcoord": 85.303504260146582, "ycoord": 27.619529378543763 }, "geometry": { "type": "Point", "coordinates": [ 85.303504260146582, 27.619529378543763 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1714, "nhouse": 7, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 56, "repvalue": 672000, "xcoord": 85.306740750803769, "ycoord": 27.619036314761658 }, "geometry": { "type": "Point", "coordinates": [ 85.306740750803769, 27.619036314761658 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1715, "nhouse": 5, "residents": 19, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 74, "repvalue": 444000, "xcoord": 85.304084038987824, "ycoord": 27.620708209950319 }, "geometry": { "type": "Point", "coordinates": [ 85.304084038987824, 27.620708209950319 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1716, "nhouse": 27, "residents": 97, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 69, "repvalue": 2484000, "xcoord": 85.304978424618014, "ycoord": 27.616990872282873 }, "geometry": { "type": "Point", "coordinates": [ 85.304978424618014, 27.616990872282873 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1717, "nhouse": 8, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 79, "repvalue": 790000, "xcoord": 85.305785861643173, "ycoord": 27.61891813299766 }, "geometry": { "type": "Point", "coordinates": [ 85.305785861643173, 27.61891813299766 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 1718, "nhouse": 33, "residents": 136, "specialfac": 0, "expstr": "RCi+HC+19s+Res", "fptarea": 78, "repvalue": 2964000, "xcoord": 85.307223929713231, "ycoord": 27.618722645911035 }, "geometry": { "type": "Point", "coordinates": [ 85.307223929713231, 27.618722645911035 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 4064, "nhouse": 0, "residents": 0, "specialfac": 1, "expstr": "RCi+HC+8s+Edu", "fptarea": 108, "repvalue": 2592000, "xcoord": 85.303482916506368, "ycoord": 27.620913902721348 }, "geometry": { "type": "Point", "coordinates": [ 85.303482916506368, 27.620913902721348 ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "bldid": 4070, "nhouse": 0, "residents": 0, "specialfac": 2, "expstr": "RCi+HC+6s+Hea", "fptarea": 123, "repvalue": 2952000, "xcoord": 85.306631016786227, "ycoord": 27.618395842816522 }, "geometry": { "type": "Point", "coordinates": [ 85.306631016786227, 27.618395842816522 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1719, "nhouse": 11, "residents": 51, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 100, "repvalue": 1200000, "xcoord": 85.308175962042554, "ycoord": 27.623723192972207 }, "geometry": { "type": "Point", "coordinates": [ 85.308175962042554, 27.623723192972207 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1720, "nhouse": 10, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 82, "repvalue": 984000, "xcoord": 85.308372436760351, "ycoord": 27.619504906824726 }, "geometry": { "type": "Point", "coordinates": [ 85.308372436760351, 27.619504906824726 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1721, "nhouse": 24, "residents": 93, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 82, "repvalue": 2460000, "xcoord": 85.307543185662027, "ycoord": 27.622074096928557 }, "geometry": { "type": "Point", "coordinates": [ 85.307543185662027, 27.622074096928557 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1722, "nhouse": 24, "residents": 113, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 92, "repvalue": 2576000, "xcoord": 85.307440430777675, "ycoord": 27.620196984501813 }, "geometry": { "type": "Point", "coordinates": [ 85.307440430777675, 27.620196984501813 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1723, "nhouse": 18, "residents": 71, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 98, "repvalue": 1960000, "xcoord": 85.308428356724306, "ycoord": 27.624429718379268 }, "geometry": { "type": "Point", "coordinates": [ 85.308428356724306, 27.624429718379268 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1724, "nhouse": 18, "residents": 84, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 99, "repvalue": 1980000, "xcoord": 85.307678392600465, "ycoord": 27.621841264378329 }, "geometry": { "type": "Point", "coordinates": [ 85.307678392600465, 27.621841264378329 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1725, "nhouse": 2, "residents": 5, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 100, "repvalue": 200000, "xcoord": 85.308285938712871, "ycoord": 27.625131428095077 }, "geometry": { "type": "Point", "coordinates": [ 85.308285938712871, 27.625131428095077 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1726, "nhouse": 14, "residents": 45, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 95, "repvalue": 1520000, "xcoord": 85.307270966816802, "ycoord": 27.622656980658387 }, "geometry": { "type": "Point", "coordinates": [ 85.307270966816802, 27.622656980658387 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1727, "nhouse": 4, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 99, "repvalue": 396000, "xcoord": 85.308765430935736, "ycoord": 27.619626940253042 }, "geometry": { "type": "Point", "coordinates": [ 85.308765430935736, 27.619626940253042 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1728, "nhouse": 4, "residents": 19, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 105, "repvalue": 420000, "xcoord": 85.307956014114566, "ycoord": 27.620906722022426 }, "geometry": { "type": "Point", "coordinates": [ 85.307956014114566, 27.620906722022426 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1729, "nhouse": 4, "residents": 10, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 70, "repvalue": 420000, "xcoord": 85.308943964943779, "ycoord": 27.625139452984538 }, "geometry": { "type": "Point", "coordinates": [ 85.308943964943779, 27.625139452984538 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1730, "nhouse": 3, "residents": 15, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 100, "repvalue": 400000, "xcoord": 85.30777934876987, "ycoord": 27.623835595588837 }, "geometry": { "type": "Point", "coordinates": [ 85.30777934876987, 27.623835595588837 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1731, "nhouse": 30, "residents": 123, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 100, "repvalue": 3200000, "xcoord": 85.307808191284863, "ycoord": 27.621960089175264 }, "geometry": { "type": "Point", "coordinates": [ 85.307808191284863, 27.621960089175264 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1732, "nhouse": 12, "residents": 50, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 83, "repvalue": 1328000, "xcoord": 85.308646442590515, "ycoord": 27.618804800798127 }, "geometry": { "type": "Point", "coordinates": [ 85.308646442590515, 27.618804800798127 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1733, "nhouse": 11, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 61, "repvalue": 1342000, "xcoord": 85.308080405409854, "ycoord": 27.621377204130045 }, "geometry": { "type": "Point", "coordinates": [ 85.308080405409854, 27.621377204130045 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1734, "nhouse": 23, "residents": 101, "specialfac": 0, "expstr": "RCi+HC+19s+Res", "fptarea": 64, "repvalue": 2432000, "xcoord": 85.308365229547448, "ycoord": 27.619973783781152 }, "geometry": { "type": "Point", "coordinates": [ 85.308365229547448, 27.619973783781152 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1735, "nhouse": 9, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 67, "repvalue": 938000, "xcoord": 85.308354418401606, "ycoord": 27.620677099153102 }, "geometry": { "type": "Point", "coordinates": [ 85.308354418401606, 27.620677099153102 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1736, "nhouse": 6, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 61, "repvalue": 732000, "xcoord": 85.307303422571991, "ycoord": 27.62054703610254 }, "geometry": { "type": "Point", "coordinates": [ 85.307303422571991, 27.62054703610254 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1737, "nhouse": 14, "residents": 52, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 60, "repvalue": 1560000, "xcoord": 85.307572030044739, "ycoord": 27.620198590268167 }, "geometry": { "type": "Point", "coordinates": [ 85.307572030044739, 27.620198590268167 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1738, "nhouse": 8, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 68, "repvalue": 952000, "xcoord": 85.307298013524488, "ycoord": 27.620898693575537 }, "geometry": { "type": "Point", "coordinates": [ 85.307298013524488, 27.620898693575537 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1739, "nhouse": 16, "residents": 66, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 70, "repvalue": 1820000, "xcoord": 85.308051568246611, "ycoord": 27.623252710965506 }, "geometry": { "type": "Point", "coordinates": [ 85.308051568246611, 27.623252710965506 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1740, "nhouse": 5, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 84, "repvalue": 504000, "xcoord": 85.30824444208919, "ycoord": 27.619268863379698 }, "geometry": { "type": "Point", "coordinates": [ 85.30824444208919, 27.619268863379698 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1741, "nhouse": 8, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 99, "repvalue": 990000, "xcoord": 85.30867895252959, "ycoord": 27.625253462568836 }, "geometry": { "type": "Point", "coordinates": [ 85.30867895252959, 27.625253462568836 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1742, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 60, "repvalue": 120000, "xcoord": 85.307797375668358, "ycoord": 27.622663404143047 }, "geometry": { "type": "Point", "coordinates": [ 85.307797375668358, 27.622663404143047 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1743, "nhouse": 8, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 70, "repvalue": 840000, "xcoord": 85.308276927057463, "ycoord": 27.625717523783837 }, "geometry": { "type": "Point", "coordinates": [ 85.308276927057463, 27.625717523783837 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1744, "nhouse": 24, "residents": 87, "specialfac": 0, "expstr": "RCi+HC+19s+Res", "fptarea": 69, "repvalue": 2622000, "xcoord": 85.307883912121795, "ycoord": 27.625595488123952 }, "geometry": { "type": "Point", "coordinates": [ 85.307883912121795, 27.625595488123952 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1745, "nhouse": 12, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 98, "repvalue": 1176000, "xcoord": 85.308127259857102, "ycoord": 27.618329504381425 }, "geometry": { "type": "Point", "coordinates": [ 85.308127259857102, 27.618329504381425 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1746, "nhouse": 4, "residents": 19, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 77, "repvalue": 462000, "xcoord": 85.307766729293149, "ycoord": 27.624656129476531 }, "geometry": { "type": "Point", "coordinates": [ 85.307766729293149, 27.624656129476531 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1747, "nhouse": 19, "residents": 66, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 62, "repvalue": 1984000, "xcoord": 85.307645942250574, "ycoord": 27.623951208950309 }, "geometry": { "type": "Point", "coordinates": [ 85.307645942250574, 27.623951208950309 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1748, "nhouse": 24, "residents": 102, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 103, "repvalue": 2678000, "xcoord": 85.308028135999564, "ycoord": 27.624776559875382 }, "geometry": { "type": "Point", "coordinates": [ 85.308028135999564, 27.624776559875382 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1749, "nhouse": 10, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 75, "repvalue": 1050000, "xcoord": 85.307683800649144, "ycoord": 27.621489606883838 }, "geometry": { "type": "Point", "coordinates": [ 85.307683800649144, 27.621489606883838 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1750, "nhouse": 22, "residents": 89, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 90, "repvalue": 2340000, "xcoord": 85.307649548019214, "ycoord": 27.623716770697975 }, "geometry": { "type": "Point", "coordinates": [ 85.307649548019214, 27.623716770697975 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1751, "nhouse": 31, "residents": 108, "specialfac": 0, "expstr": "RCi+HC+19s+Res", "fptarea": 86, "repvalue": 3268000, "xcoord": 85.308904234453848, "ycoord": 27.619159667623471 }, "geometry": { "type": "Point", "coordinates": [ 85.308904234453848, 27.619159667623471 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1752, "nhouse": 13, "residents": 60, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 65, "repvalue": 1430000, "xcoord": 85.308275124693722, "ycoord": 27.625834742915323 }, "geometry": { "type": "Point", "coordinates": [ 85.308275124693722, 27.625834742915323 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1753, "nhouse": 2, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 89, "repvalue": 178000, "xcoord": 85.308626626134384, "ycoord": 27.620094212660799 }, "geometry": { "type": "Point", "coordinates": [ 85.308626626134384, 27.620094212660799 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1754, "nhouse": 19, "residents": 64, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 58, "repvalue": 1972000, "xcoord": 85.308300356795513, "ycoord": 27.624193674884388 }, "geometry": { "type": "Point", "coordinates": [ 85.308300356795513, 27.624193674884388 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1755, "nhouse": 13, "residents": 47, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 97, "repvalue": 1358000, "xcoord": 85.30836162587569, "ycoord": 27.620208222246831 }, "geometry": { "type": "Point", "coordinates": [ 85.30836162587569, 27.620208222246831 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1756, "nhouse": 8, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 103, "repvalue": 824000, "xcoord": 85.307413387150305, "ycoord": 27.62195527189219 }, "geometry": { "type": "Point", "coordinates": [ 85.307413387150305, 27.62195527189219 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1757, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 83, "repvalue": 332000, "xcoord": 85.308419346095661, "ycoord": 27.625015814170514 }, "geometry": { "type": "Point", "coordinates": [ 85.308419346095661, 27.625015814170514 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1758, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 89, "repvalue": 356000, "xcoord": 85.307856856709293, "ycoord": 27.618795170889239 }, "geometry": { "type": "Point", "coordinates": [ 85.307856856709293, 27.618795170889239 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1759, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 101, "repvalue": 404000, "xcoord": 85.308426554620354, "ycoord": 27.624546937541698 }, "geometry": { "type": "Point", "coordinates": [ 85.308426554620354, 27.624546937541698 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1760, "nhouse": 25, "residents": 102, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 81, "repvalue": 2754000, "xcoord": 85.308273322319096, "ycoord": 27.625951962044713 }, "geometry": { "type": "Point", "coordinates": [ 85.308273322319096, 27.625951962044713 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1761, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 81, "repvalue": 324000, "xcoord": 85.308246243983447, "ycoord": 27.619151644139148 }, "geometry": { "type": "Point", "coordinates": [ 85.308246243983447, 27.619151644139148 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1762, "nhouse": 4, "residents": 13, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 71, "repvalue": 426000, "xcoord": 85.308489621783693, "ycoord": 27.620444265613262 }, "geometry": { "type": "Point", "coordinates": [ 85.308489621783693, 27.620444265613262 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1763, "nhouse": 7, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 106, "repvalue": 848000, "xcoord": 85.307415190135032, "ycoord": 27.621838052747457 }, "geometry": { "type": "Point", "coordinates": [ 85.307415190135032, 27.621838052747457 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1764, "nhouse": 32, "residents": 141, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 97, "repvalue": 3492000, "xcoord": 85.307636927638413, "ycoord": 27.624537304544582 }, "geometry": { "type": "Point", "coordinates": [ 85.307636927638413, 27.624537304544582 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1765, "nhouse": 8, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 71, "repvalue": 852000, "xcoord": 85.308902433259604, "ycoord": 27.619276886903808 }, "geometry": { "type": "Point", "coordinates": [ 85.308902433259604, 27.619276886903808 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1766, "nhouse": 2, "residents": 10, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 101, "repvalue": 202000, "xcoord": 85.307554002632187, "ycoord": 27.621370781993605 }, "geometry": { "type": "Point", "coordinates": [ 85.307554002632187, 27.621370781993605 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1767, "nhouse": 26, "residents": 113, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 89, "repvalue": 2848000, "xcoord": 85.30791095241031, "ycoord": 27.62383720122773 }, "geometry": { "type": "Point", "coordinates": [ 85.30791095241031, 27.62383720122773 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1768, "nhouse": 18, "residents": 67, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 54, "repvalue": 1944000, "xcoord": 85.308496828610686, "ycoord": 27.619975388658442 }, "geometry": { "type": "Point", "coordinates": [ 85.308496828610686, 27.619975388658442 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1769, "nhouse": 5, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 101, "repvalue": 606000, "xcoord": 85.307420599023828, "ycoord": 27.621486395300725 }, "geometry": { "type": "Point", "coordinates": [ 85.307420599023828, 27.621486395300725 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1770, "nhouse": 15, "residents": 72, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 77, "repvalue": 1694000, "xcoord": 85.307950607069301, "ycoord": 27.621258379596021 }, "geometry": { "type": "Point", "coordinates": [ 85.307950607069301, 27.621258379596021 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1771, "nhouse": 7, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 96, "repvalue": 768000, "xcoord": 85.308549149172578, "ycoord": 27.625134638425145 }, "geometry": { "type": "Point", "coordinates": [ 85.308549149172578, 27.625134638425145 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1772, "nhouse": 11, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 102, "repvalue": 1224000, "xcoord": 85.308413939587851, "ycoord": 27.625367471620176 }, "geometry": { "type": "Point", "coordinates": [ 85.308413939587851, 27.625367471620176 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1773, "nhouse": 31, "residents": 115, "specialfac": 0, "expstr": "RCi+HC+19s+Res", "fptarea": 94, "repvalue": 3572000, "xcoord": 85.307568424649318, "ycoord": 27.620433028629968 }, "geometry": { "type": "Point", "coordinates": [ 85.307568424649318, 27.620433028629968 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 1774, "nhouse": 2, "residents": 5, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 103, "repvalue": 618000, "xcoord": 85.308388652352775, "ycoord": 27.618449933550536 }, "geometry": { "type": "Point", "coordinates": [ 85.308388652352775, 27.618449933550536 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 2126, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Com", "fptarea": 114, "repvalue": 2052000, "xcoord": 85.307809993849517, "ycoord": 27.621842870006649 }, "geometry": { "type": "Point", "coordinates": [ 85.307809993849517, 27.621842870006649 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 2167, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Com", "fptarea": 114, "repvalue": 2052000, "xcoord": 85.307577438056185, "ycoord": 27.61984693270978 }, "geometry": { "type": "Point", "coordinates": [ 85.307577438056185, 27.61984693270978 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 2174, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Com", "fptarea": 95, "repvalue": 1710000, "xcoord": 85.308096625089618, "ycoord": 27.620322231300001 }, "geometry": { "type": "Point", "coordinates": [ 85.308096625089618, 27.620322231300001 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 2181, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Com", "fptarea": 106, "repvalue": 1908000, "xcoord": 85.308504035263553, "ycoord": 27.619506511670195 }, "geometry": { "type": "Point", "coordinates": [ 85.308504035263553, 27.619506511670195 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 2197, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Com", "fptarea": 106, "repvalue": 1484000, "xcoord": 85.30781720399925, "ycoord": 27.621373993311309 }, "geometry": { "type": "Point", "coordinates": [ 85.30781720399925, 27.621373993311309 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 2198, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Com", "fptarea": 109, "repvalue": 2180000, "xcoord": 85.308280531752274, "ycoord": 27.625483085514603 }, "geometry": { "type": "Point", "coordinates": [ 85.308280531752274, 27.625483085514603 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 2203, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 138, "repvalue": 1932000, "xcoord": 85.309201771492724, "ycoord": 27.625494319653601 }, "geometry": { "type": "Point", "coordinates": [ 85.309201771492724, 27.625494319653601 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 2209, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 109, "repvalue": 1962000, "xcoord": 85.307716246883601, "ycoord": 27.619379661521908 }, "geometry": { "type": "Point", "coordinates": [ 85.307716246883601, 27.619379661521908 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 2212, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+7s+Com", "fptarea": 119, "repvalue": 1666000, "xcoord": 85.308305763396902, "ycoord": 27.623842017395891 }, "geometry": { "type": "Point", "coordinates": [ 85.308305763396902, 27.623842017395891 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 2215, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+5s+Com", "fptarea": 149, "repvalue": 1490000, "xcoord": 85.307941595109455, "ycoord": 27.62184447551023 }, "geometry": { "type": "Point", "coordinates": [ 85.307941595109455, 27.62184447551023 ] } } +] +} diff --git a/building_tv50_2.geojson b/building_tv50_2.geojson new file mode 100644 index 0000000000000000000000000000000000000000..6a43446f4afdb1f04aa6a644cb993164642f5733 --- /dev/null +++ b/building_tv50_2.geojson @@ -0,0 +1,2696 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1, "nhouse": 7, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 58, "repvalue": 696000, "xcoord": 85.315359264687459, "ycoord": 27.629101643149866 }, "geometry": { "type": "Point", "coordinates": [ 85.315359264687459, 27.629101643149866 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 2, "nhouse": 6, "residents": 29, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 59, "repvalue": 590000, "xcoord": 85.314790667047788, "ycoord": 27.631197194396844 }, "geometry": { "type": "Point", "coordinates": [ 85.314790667047788, 27.631197194396844 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 3, "nhouse": 13, "residents": 57, "specialfac": 0, "expstr": "RCi+HC+8s+ResCom", "fptarea": 74, "repvalue": 1184000, "xcoord": 85.314167481718727, "ycoord": 27.629851691089147 }, "geometry": { "type": "Point", "coordinates": [ 85.314167481718727, 27.629851691089147 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 4, "nhouse": 5, "residents": 19, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 83, "repvalue": 498000, "xcoord": 85.314758036888151, "ycoord": 27.6263229132052 }, "geometry": { "type": "Point", "coordinates": [ 85.314758036888151, 27.6263229132052 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 5, "nhouse": 11, "residents": 43, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 74, "repvalue": 1036000, "xcoord": 85.315667935139928, "ycoord": 27.629965489936996 }, "geometry": { "type": "Point", "coordinates": [ 85.315667935139928, 27.629965489936996 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 6, "nhouse": 6, "residents": 29, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 65, "repvalue": 650000, "xcoord": 85.314360078737593, "ycoord": 27.631287527277106 }, "geometry": { "type": "Point", "coordinates": [ 85.314360078737593, 27.631287527277106 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 7, "nhouse": 13, "residents": 45, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 85, "repvalue": 1190000, "xcoord": 85.315071085970047, "ycoord": 27.626900115252369 }, "geometry": { "type": "Point", "coordinates": [ 85.315071085970047, 27.626900115252369 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 8, "nhouse": 25, "residents": 87, "specialfac": 0, "expstr": "RCi+HC+16s+ResCom", "fptarea": 69, "repvalue": 2208000, "xcoord": 85.315451912194973, "ycoord": 27.630058432339574 }, "geometry": { "type": "Point", "coordinates": [ 85.315451912194973, 27.630058432339574 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 9, "nhouse": 10, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+8s+ResCom", "fptarea": 59, "repvalue": 944000, "xcoord": 85.314886237938424, "ycoord": 27.631962886469839 }, "geometry": { "type": "Point", "coordinates": [ 85.314886237938424, 27.631962886469839 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 10, "nhouse": 17, "residents": 63, "specialfac": 0, "expstr": "RCi+HC+12s+ResCom", "fptarea": 67, "repvalue": 1608000, "xcoord": 85.315230035314613, "ycoord": 27.630533568708039 }, "geometry": { "type": "Point", "coordinates": [ 85.315230035314613, 27.630533568708039 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 11, "nhouse": 26, "residents": 97, "specialfac": 0, "expstr": "RCi+HC+16s+ResCom", "fptarea": 73, "repvalue": 2336000, "xcoord": 85.315068159309661, "ycoord": 27.627091212488466 }, "geometry": { "type": "Point", "coordinates": [ 85.315068159309661, 27.627091212488466 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 12, "nhouse": 32, "residents": 108, "specialfac": 0, "expstr": "RCi+HC+17s+ResCom", "fptarea": 85, "repvalue": 2890000, "xcoord": 85.315288565975564, "ycoord": 27.626711624508722 }, "geometry": { "type": "Point", "coordinates": [ 85.315288565975564, 27.626711624508722 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 13, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 67, "repvalue": 268000, "xcoord": 85.31418212426739, "ycoord": 27.628896205677133 }, "geometry": { "type": "Point", "coordinates": [ 85.31418212426739, 27.628896205677133 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 14, "nhouse": 1, "residents": 5, "specialfac": 0, "expstr": "BrCfl+LC+1s+ResCom", "fptarea": 69, "repvalue": 138000, "xcoord": 85.315054988981331, "ycoord": 27.627951149982191 }, "geometry": { "type": "Point", "coordinates": [ 85.315054988981331, 27.627951149982191 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 15, "nhouse": 16, "residents": 63, "specialfac": 0, "expstr": "RCi+HC+14s+ResCom", "fptarea": 54, "repvalue": 1512000, "xcoord": 85.314534701730665, "ycoord": 27.626893597503923 }, "geometry": { "type": "Point", "coordinates": [ 85.314534701730665, 27.626893597503923 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 16, "nhouse": 10, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 66, "repvalue": 924000, "xcoord": 85.315340242355759, "ycoord": 27.630343774875573 }, "geometry": { "type": "Point", "coordinates": [ 85.315340242355759, 27.630343774875573 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 17, "nhouse": 8, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 54, "repvalue": 756000, "xcoord": 85.314464431591105, "ycoord": 27.631479928373562 }, "geometry": { "type": "Point", "coordinates": [ 85.314464431591105, 27.631479928373562 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 18, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "RCi+HC+1s+ResCom", "fptarea": 74, "repvalue": 148000, "xcoord": 85.313939741761033, "ycoord": 27.630709019242595 }, "geometry": { "type": "Point", "coordinates": [ 85.313939741761033, 27.630709019242595 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 19, "nhouse": 3, "residents": 7, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 53, "repvalue": 318000, "xcoord": 85.314017731862322, "ycoord": 27.632621293635637 }, "geometry": { "type": "Point", "coordinates": [ 85.314017731862322, 27.632621293635637 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 20, "nhouse": 9, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 69, "repvalue": 828000, "xcoord": 85.315678175928952, "ycoord": 27.629296649656705 }, "geometry": { "type": "Point", "coordinates": [ 85.315678175928952, 27.629296649656705 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 21, "nhouse": 4, "residents": 16, "specialfac": 0, "expstr": "BrCfl+LC+3s+ResCom", "fptarea": 69, "repvalue": 414000, "xcoord": 85.315281250273202, "ycoord": 27.627189367655095 }, "geometry": { "type": "Point", "coordinates": [ 85.315281250273202, 27.627189367655095 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 22, "nhouse": 9, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+8s+ResCom", "fptarea": 54, "repvalue": 864000, "xcoord": 85.314503960587629, "ycoord": 27.628900117652947 }, "geometry": { "type": "Point", "coordinates": [ 85.314503960587629, 27.628900117652947 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 23, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 70, "repvalue": 280000, "xcoord": 85.31498620111941, "ycoord": 27.632441932844827 }, "geometry": { "type": "Point", "coordinates": [ 85.31498620111941, 27.632441932844827 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 24, "nhouse": 8, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 46, "repvalue": 736000, "xcoord": 85.315344632232652, "ycoord": 27.630057129113542 }, "geometry": { "type": "Point", "coordinates": [ 85.315344632232652, 27.630057129113542 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 25, "nhouse": 22, "residents": 92, "specialfac": 0, "expstr": "RCi+HC+17s+ResCom", "fptarea": 61, "repvalue": 2074000, "xcoord": 85.314768708737077, "ycoord": 27.632630422437181 }, "geometry": { "type": "Point", "coordinates": [ 85.314768708737077, 27.632630422437181 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 26, "nhouse": 11, "residents": 53, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 84, "repvalue": 1008000, "xcoord": 85.313809026164989, "ycoord": 27.632236490736467 }, "geometry": { "type": "Point", "coordinates": [ 85.313809026164989, 27.632236490736467 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 27, "nhouse": 6, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 58, "repvalue": 580000, "xcoord": 85.315672324092716, "ycoord": 27.629678844110916 }, "geometry": { "type": "Point", "coordinates": [ 85.315672324092716, 27.629678844110916 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 28, "nhouse": 1, "residents": 7, "specialfac": 0, "expstr": "RCi+HC+1s+ResCom", "fptarea": 56, "repvalue": 112000, "xcoord": 85.315276860765351, "ycoord": 27.627476013526262 }, "geometry": { "type": "Point", "coordinates": [ 85.315276860765351, 27.627476013526262 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 29, "nhouse": 7, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 47, "repvalue": 658000, "xcoord": 85.315681101803875, "ycoord": 27.629105552421279 }, "geometry": { "type": "Point", "coordinates": [ 85.315681101803875, 27.629105552421279 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 30, "nhouse": 4, "residents": 21, "specialfac": 0, "expstr": "RCi+HC+4s+ResCom", "fptarea": 52, "repvalue": 416000, "xcoord": 85.314846287512381, "ycoord": 27.627566348630015 }, "geometry": { "type": "Point", "coordinates": [ 85.314846287512381, 27.627566348630015 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 31, "nhouse": 16, "residents": 69, "specialfac": 0, "expstr": "RCi+HC+9s+ResCom", "fptarea": 82, "repvalue": 1476000, "xcoord": 85.313958780197041, "ycoord": 27.629466888479339 }, "geometry": { "type": "Point", "coordinates": [ 85.313958780197041, 27.629466888479339 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 32, "nhouse": 21, "residents": 90, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 55, "repvalue": 1870000, "xcoord": 85.313820743937242, "ycoord": 27.631472102822105 }, "geometry": { "type": "Point", "coordinates": [ 85.313820743937242, 27.631472102822105 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 33, "nhouse": 11, "residents": 48, "specialfac": 0, "expstr": "RCi+HC+8s+ResCom", "fptarea": 66, "repvalue": 1056000, "xcoord": 85.314766818112105, "ycoord": 27.625749621508426 }, "geometry": { "type": "Point", "coordinates": [ 85.314766818112105, 27.625749621508426 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 34, "nhouse": 4, "residents": 13, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 63, "repvalue": 378000, "xcoord": 85.315322682199863, "ycoord": 27.631490357798768 }, "geometry": { "type": "Point", "coordinates": [ 85.315322682199863, 27.631490357798768 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 35, "nhouse": 9, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+8s+ResCom", "fptarea": 57, "repvalue": 912000, "xcoord": 85.313858823510373, "ycoord": 27.628987841486779 }, "geometry": { "type": "Point", "coordinates": [ 85.313858823510373, 27.628987841486779 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 36, "nhouse": 10, "residents": 46, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 81, "repvalue": 972000, "xcoord": 85.314029448375905, "ycoord": 27.631856905681378 }, "geometry": { "type": "Point", "coordinates": [ 85.314029448375905, 27.631856905681378 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 37, "nhouse": 5, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 50, "repvalue": 500000, "xcoord": 85.313816349826709, "ycoord": 27.631758748300403 }, "geometry": { "type": "Point", "coordinates": [ 85.313816349826709, 27.631758748300403 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 38, "nhouse": 24, "residents": 98, "specialfac": 0, "expstr": "RCi+HC+13s+ResCom", "fptarea": 85, "repvalue": 2210000, "xcoord": 85.314012959846934, "ycoord": 27.625931591945964 }, "geometry": { "type": "Point", "coordinates": [ 85.314012959846934, 27.625931591945964 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 39, "nhouse": 3, "residents": 19, "specialfac": 0, "expstr": "BrCfl+LC+2s+ResCom", "fptarea": 86, "repvalue": 344000, "xcoord": 85.313835390503669, "ycoord": 27.630516617804194 }, "geometry": { "type": "Point", "coordinates": [ 85.313835390503669, 27.630516617804194 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 40, "nhouse": 7, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+4s+ResCom", "fptarea": 87, "repvalue": 696000, "xcoord": 85.314254261939638, "ycoord": 27.631190674634045 }, "geometry": { "type": "Point", "coordinates": [ 85.314254261939638, 27.631190674634045 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 41, "nhouse": 10, "residents": 46, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 74, "repvalue": 888000, "xcoord": 85.314125014251374, "ycoord": 27.632622597998907 }, "geometry": { "type": "Point", "coordinates": [ 85.314125014251374, 27.632622597998907 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 42, "nhouse": 19, "residents": 68, "specialfac": 0, "expstr": "RCi+HC+15s+ResCom", "fptarea": 58, "repvalue": 1740000, "xcoord": 85.314806768778567, "ycoord": 27.630146160302061 }, "geometry": { "type": "Point", "coordinates": [ 85.314806768778567, 27.630146160302061 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 43, "nhouse": 13, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+12s+ResCom", "fptarea": 49, "repvalue": 1176000, "xcoord": 85.313914843506396, "ycoord": 27.632333343732821 }, "geometry": { "type": "Point", "coordinates": [ 85.313914843506396, 27.632333343732821 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 44, "nhouse": 10, "residents": 55, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 69, "repvalue": 966000, "xcoord": 85.314528846519849, "ycoord": 27.627275791865216 }, "geometry": { "type": "Point", "coordinates": [ 85.314528846519849, 27.627275791865216 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 45, "nhouse": 9, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 64, "repvalue": 896000, "xcoord": 85.314115843415991, "ycoord": 27.626219541774741 }, "geometry": { "type": "Point", "coordinates": [ 85.314115843415991, 27.626219541774741 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 46, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "BrCfl+LC+2s+ResCom", "fptarea": 55, "repvalue": 220000, "xcoord": 85.314174803083148, "ycoord": 27.629373948400492 }, "geometry": { "type": "Point", "coordinates": [ 85.314174803083148, 27.629373948400492 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 47, "nhouse": 9, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 87, "repvalue": 870000, "xcoord": 85.315597230209249, "ycoord": 27.62757547141462 }, "geometry": { "type": "Point", "coordinates": [ 85.315597230209249, 27.62757547141462 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 48, "nhouse": 6, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 46, "repvalue": 552000, "xcoord": 85.315391453552706, "ycoord": 27.626999573541152 }, "geometry": { "type": "Point", "coordinates": [ 85.315391453552706, 27.626999573541152 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 49, "nhouse": 2, "residents": 11, "specialfac": 0, "expstr": "BrCri+LC+2s+ResCom", "fptarea": 66, "repvalue": 264000, "xcoord": 85.314218727485724, "ycoord": 27.626507491539748 }, "geometry": { "type": "Point", "coordinates": [ 85.314218727485724, 27.626507491539748 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 50, "nhouse": 3, "residents": 18, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 55, "repvalue": 330000, "xcoord": 85.313850036349137, "ycoord": 27.629561132647463 }, "geometry": { "type": "Point", "coordinates": [ 85.313850036349137, 27.629561132647463 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 51, "nhouse": 12, "residents": 49, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 80, "repvalue": 1120000, "xcoord": 85.315559192164514, "ycoord": 27.6300597354827 }, "geometry": { "type": "Point", "coordinates": [ 85.315559192164514, 27.6300597354827 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 52, "nhouse": 14, "residents": 65, "specialfac": 0, "expstr": "RCi+HC+9s+Res", "fptarea": 70, "repvalue": 1260000, "xcoord": 85.313531127845167, "ycoord": 27.629366122052215 }, "geometry": { "type": "Point", "coordinates": [ 85.313531127845167, 27.629366122052215 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 53, "nhouse": 4, "residents": 15, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 68, "repvalue": 408000, "xcoord": 85.314004174628124, "ycoord": 27.626504883404799 }, "geometry": { "type": "Point", "coordinates": [ 85.314004174628124, 27.626504883404799 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 54, "nhouse": 18, "residents": 74, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 76, "repvalue": 1672000, "xcoord": 85.31420701494595, "ycoord": 27.627271880158109 }, "geometry": { "type": "Point", "coordinates": [ 85.31420701494595, 27.627271880158109 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 55, "nhouse": 3, "residents": 15, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 82, "repvalue": 328000, "xcoord": 85.314580497008976, "ycoord": 27.63090794112653 }, "geometry": { "type": "Point", "coordinates": [ 85.314580497008976, 27.63090794112653 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 56, "nhouse": 22, "residents": 75, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 78, "repvalue": 2028000, "xcoord": 85.314512744095637, "ycoord": 27.628326826244269 }, "geometry": { "type": "Point", "coordinates": [ 85.314512744095637, 27.628326826244269 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 57, "nhouse": 5, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 67, "repvalue": 536000, "xcoord": 85.31549726757531, "ycoord": 27.62709642523712 }, "geometry": { "type": "Point", "coordinates": [ 85.31549726757531, 27.62709642523712 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 58, "nhouse": 5, "residents": 22, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 87, "repvalue": 522000, "xcoord": 85.313753009274635, "ycoord": 27.628890988548655 }, "geometry": { "type": "Point", "coordinates": [ 85.313753009274635, 27.628890988548655 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 59, "nhouse": 4, "residents": 15, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 48, "repvalue": 384000, "xcoord": 85.314398145836094, "ycoord": 27.628803265184548 }, "geometry": { "type": "Point", "coordinates": [ 85.314398145836094, 27.628803265184548 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 60, "nhouse": 7, "residents": 30, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 58, "repvalue": 696000, "xcoord": 85.315334389085706, "ycoord": 27.630725969205514 }, "geometry": { "type": "Point", "coordinates": [ 85.315334389085706, 27.630725969205514 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 61, "nhouse": 3, "residents": 7, "specialfac": 0, "expstr": "BrCfl+MC+3s+ResCom", "fptarea": 49, "repvalue": 294000, "xcoord": 85.31360032187051, "ycoord": 27.631851687567732 }, "geometry": { "type": "Point", "coordinates": [ 85.31360032187051, 27.631851687567732 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 62, "nhouse": 6, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 72, "repvalue": 576000, "xcoord": 85.315273934390774, "ycoord": 27.627667110766769 }, "geometry": { "type": "Point", "coordinates": [ 85.315273934390774, 27.627667110766769 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 63, "nhouse": 14, "residents": 49, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 62, "repvalue": 1240000, "xcoord": 85.314399609857958, "ycoord": 27.628707716623779 }, "geometry": { "type": "Point", "coordinates": [ 85.314399609857958, 27.628707716623779 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 64, "nhouse": 4, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+4s+ResCom", "fptarea": 47, "repvalue": 376000, "xcoord": 85.315219791264013, "ycoord": 27.631202408714564 }, "geometry": { "type": "Point", "coordinates": [ 85.315219791264013, 27.631202408714564 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 65, "nhouse": 6, "residents": 18, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 57, "repvalue": 570000, "xcoord": 85.313911914162986, "ycoord": 27.632524440705293 }, "geometry": { "type": "Point", "coordinates": [ 85.313911914162986, 27.632524440705293 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 66, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 66, "repvalue": 132000, "xcoord": 85.315191984204432, "ycoord": 27.633017831246526 }, "geometry": { "type": "Point", "coordinates": [ 85.315191984204432, 27.633017831246526 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 67, "nhouse": 9, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 81, "repvalue": 810000, "xcoord": 85.315567970606949, "ycoord": 27.629486443857967 }, "geometry": { "type": "Point", "coordinates": [ 85.315567970606949, 27.629486443857967 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 68, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 74, "repvalue": 148000, "xcoord": 85.315591378519244, "ycoord": 27.627957665947708 }, "geometry": { "type": "Point", "coordinates": [ 85.315591378519244, 27.627957665947708 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 69, "nhouse": 14, "residents": 62, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 78, "repvalue": 1248000, "xcoord": 85.31420262262462, "ycoord": 27.627558525867087 }, "geometry": { "type": "Point", "coordinates": [ 85.31420262262462, 27.627558525867087 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 70, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "BrCfl+MC+2s+Res", "fptarea": 80, "repvalue": 320000, "xcoord": 85.313969031157953, "ycoord": 27.628798048740414 }, "geometry": { "type": "Point", "coordinates": [ 85.313969031157953, 27.628798048740414 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 71, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 73, "repvalue": 146000, "xcoord": 85.31538999049809, "ycoord": 27.62709512217431 }, "geometry": { "type": "Point", "coordinates": [ 85.31538999049809, 27.62709512217431 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 72, "nhouse": 24, "residents": 86, "specialfac": 0, "expstr": "RCi+HC+19s+Res", "fptarea": 57, "repvalue": 2166000, "xcoord": 85.315300270724805, "ycoord": 27.625947235402343 }, "geometry": { "type": "Point", "coordinates": [ 85.315300270724805, 27.625947235402343 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 73, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 54, "repvalue": 216000, "xcoord": 85.314011495661816, "ycoord": 27.626027140525903 }, "geometry": { "type": "Point", "coordinates": [ 85.314011495661816, 27.626027140525903 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 74, "nhouse": 13, "residents": 47, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 51, "repvalue": 1224000, "xcoord": 85.31338868883438, "ycoord": 27.631657981074198 }, "geometry": { "type": "Point", "coordinates": [ 85.31338868883438, 27.631657981074198 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 75, "nhouse": 6, "residents": 22, "specialfac": 0, "expstr": "RCi+HC+4s+ResCom", "fptarea": 69, "repvalue": 552000, "xcoord": 85.313944135354404, "ycoord": 27.630422373702672 }, "geometry": { "type": "Point", "coordinates": [ 85.313944135354404, 27.630422373702672 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 76, "nhouse": 3, "residents": 19, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 83, "repvalue": 332000, "xcoord": 85.313534057457346, "ycoord": 27.629175025030278 }, "geometry": { "type": "Point", "coordinates": [ 85.313534057457346, 27.629175025030278 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 77, "nhouse": 13, "residents": 54, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 87, "repvalue": 1218000, "xcoord": 85.315106655925135, "ycoord": 27.631583299497347 }, "geometry": { "type": "Point", "coordinates": [ 85.315106655925135, 27.631583299497347 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 78, "nhouse": 5, "residents": 18, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 61, "repvalue": 488000, "xcoord": 85.314122085237059, "ycoord": 27.632813694984129 }, "geometry": { "type": "Point", "coordinates": [ 85.314122085237059, 27.632813694984129 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 79, "nhouse": 13, "residents": 51, "specialfac": 0, "expstr": "RCi+HC+9s+Res", "fptarea": 67, "repvalue": 1206000, "xcoord": 85.313841248928355, "ycoord": 27.630134423758165 }, "geometry": { "type": "Point", "coordinates": [ 85.313841248928355, 27.630134423758165 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 80, "nhouse": 16, "residents": 66, "specialfac": 0, "expstr": "RCi+HC+14s+ResCom", "fptarea": 55, "repvalue": 1540000, "xcoord": 85.314900875557143, "ycoord": 27.63100740099447 }, "geometry": { "type": "Point", "coordinates": [ 85.314900875557143, 27.63100740099447 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 81, "nhouse": 6, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 75, "repvalue": 600000, "xcoord": 85.314737546356866, "ycoord": 27.627660593636676 }, "geometry": { "type": "Point", "coordinates": [ 85.314737546356866, 27.627660593636676 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 82, "nhouse": 14, "residents": 47, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 80, "repvalue": 1280000, "xcoord": 85.313284337757267, "ycoord": 27.631465579248999 }, "geometry": { "type": "Point", "coordinates": [ 85.313284337757267, 27.631465579248999 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 83, "nhouse": 3, "residents": 16, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 55, "repvalue": 330000, "xcoord": 85.314154302808646, "ycoord": 27.630711627841261 }, "geometry": { "type": "Point", "coordinates": [ 85.314154302808646, 27.630711627841261 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 84, "nhouse": 18, "residents": 59, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 57, "repvalue": 1710000, "xcoord": 85.314428888782146, "ycoord": 27.626796745117002 }, "geometry": { "type": "Point", "coordinates": [ 85.314428888782146, 27.626796745117002 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 85, "nhouse": 21, "residents": 96, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 73, "repvalue": 1898000, "xcoord": 85.315302194040314, "ycoord": 27.63282803762316 }, "geometry": { "type": "Point", "coordinates": [ 85.315302194040314, 27.63282803762316 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 86, "nhouse": 11, "residents": 46, "specialfac": 0, "expstr": "RCi+HC+8s+ResCom", "fptarea": 62, "repvalue": 992000, "xcoord": 85.314780420037891, "ycoord": 27.631866034187869 }, "geometry": { "type": "Point", "coordinates": [ 85.314780420037891, 27.631866034187869 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 87, "nhouse": 10, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 59, "repvalue": 944000, "xcoord": 85.31464783328741, "ycoord": 27.626512706814832 }, "geometry": { "type": "Point", "coordinates": [ 85.31464783328741, 27.626512706814832 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 88, "nhouse": 12, "residents": 46, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 80, "repvalue": 1120000, "xcoord": 85.314755109755851, "ycoord": 27.626514010426359 }, "geometry": { "type": "Point", "coordinates": [ 85.314755109755851, 27.626514010426359 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 89, "nhouse": 11, "residents": 46, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 76, "repvalue": 1064000, "xcoord": 85.314908194096304, "ycoord": 27.630529658204715 }, "geometry": { "type": "Point", "coordinates": [ 85.314908194096304, 27.630529658204715 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 90, "nhouse": 6, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 49, "repvalue": 588000, "xcoord": 85.314199694374352, "ycoord": 27.62774962299946 }, "geometry": { "type": "Point", "coordinates": [ 85.314199694374352, 27.62774962299946 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 91, "nhouse": 22, "residents": 95, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 67, "repvalue": 2010000, "xcoord": 85.313515014462666, "ycoord": 27.630417155573596 }, "geometry": { "type": "Point", "coordinates": [ 85.313515014462666, 27.630417155573596 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 92, "nhouse": 1, "residents": 1, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 81, "repvalue": 162000, "xcoord": 85.313507689909443, "ycoord": 27.63089489802779 }, "geometry": { "type": "Point", "coordinates": [ 85.313507689909443, 27.63089489802779 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 93, "nhouse": 11, "residents": 43, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 49, "repvalue": 980000, "xcoord": 85.315187142089457, "ycoord": 27.626328126780148 }, "geometry": { "type": "Point", "coordinates": [ 85.315187142089457, 27.626328126780148 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 94, "nhouse": 7, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 45, "repvalue": 630000, "xcoord": 85.314265976098923, "ycoord": 27.630426286428872 }, "geometry": { "type": "Point", "coordinates": [ 85.314265976098923, 27.630426286428872 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 95, "nhouse": 20, "residents": 79, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 57, "repvalue": 1824000, "xcoord": 85.315057915771376, "ycoord": 27.62776005277108 }, "geometry": { "type": "Point", "coordinates": [ 85.315057915771376, 27.62776005277108 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 96, "nhouse": 11, "residents": 48, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 72, "repvalue": 1008000, "xcoord": 85.3152183277994, "ycoord": 27.631297957281372 }, "geometry": { "type": "Point", "coordinates": [ 85.3152183277994, 27.631297957281372 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 97, "nhouse": 9, "residents": 30, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 84, "repvalue": 840000, "xcoord": 85.31379694376362, "ycoord": 27.626024532112062 }, "geometry": { "type": "Point", "coordinates": [ 85.31379694376362, 27.626024532112062 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 98, "nhouse": 9, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 70, "repvalue": 840000, "xcoord": 85.31571182175135, "ycoord": 27.627099031114032 }, "geometry": { "type": "Point", "coordinates": [ 85.31571182175135, 27.627099031114032 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 99, "nhouse": 6, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 58, "repvalue": 580000, "xcoord": 85.314299651737315, "ycoord": 27.628228669844084 }, "geometry": { "type": "Point", "coordinates": [ 85.314299651737315, 27.628228669844084 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 100, "nhouse": 11, "residents": 46, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 85, "repvalue": 1020000, "xcoord": 85.315584063744694, "ycoord": 27.628435409082837 }, "geometry": { "type": "Point", "coordinates": [ 85.315584063744694, 27.628435409082837 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 101, "nhouse": 7, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 71, "repvalue": 710000, "xcoord": 85.313723716010585, "ycoord": 27.630801958812256 }, "geometry": { "type": "Point", "coordinates": [ 85.313723716010585, 27.630801958812256 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 102, "nhouse": 4, "residents": 16, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 46, "repvalue": 460000, "xcoord": 85.315660620074567, "ycoord": 27.630443232952693 }, "geometry": { "type": "Point", "coordinates": [ 85.315660620074567, 27.630443232952693 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 103, "nhouse": 15, "residents": 59, "specialfac": 0, "expstr": "RCi+HC+9s+Res", "fptarea": 79, "repvalue": 1422000, "xcoord": 85.314852141692924, "ycoord": 27.62718415422216 }, "geometry": { "type": "Point", "coordinates": [ 85.314852141692924, 27.62718415422216 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 104, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 75, "repvalue": 300000, "xcoord": 85.314127943236855, "ycoord": 27.632431501008138 }, "geometry": { "type": "Point", "coordinates": [ 85.314127943236855, 27.632431501008138 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 105, "nhouse": 16, "residents": 65, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 64, "repvalue": 1536000, "xcoord": 85.313902755423726, "ycoord": 27.626121384933715 }, "geometry": { "type": "Point", "coordinates": [ 85.313902755423726, 27.626121384933715 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 106, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 79, "repvalue": 316000, "xcoord": 85.314121699798633, "ycoord": 27.625837347436665 }, "geometry": { "type": "Point", "coordinates": [ 85.314121699798633, 27.625837347436665 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 107, "nhouse": 22, "residents": 93, "specialfac": 0, "expstr": "RCi+HC+18s+ResCom", "fptarea": 55, "repvalue": 1980000, "xcoord": 85.314111451053321, "ycoord": 27.626506187513726 }, "geometry": { "type": "Point", "coordinates": [ 85.314111451053321, 27.626506187513726 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 108, "nhouse": 2, "residents": 9, "specialfac": 0, "expstr": "BrCfl+LC+2s+ResCom", "fptarea": 61, "repvalue": 244000, "xcoord": 85.314705344097348, "ycoord": 27.629762662336422 }, "geometry": { "type": "Point", "coordinates": [ 85.314705344097348, 27.629762662336422 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 109, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "BrCfl+LC+2s+ResCom", "fptarea": 87, "repvalue": 348000, "xcoord": 85.314671674369805, "ycoord": 27.631960278895022 }, "geometry": { "type": "Point", "coordinates": [ 85.314671674369805, 27.631960278895022 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 110, "nhouse": 1, "residents": 2, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 49, "repvalue": 98000, "xcoord": 85.313703209009759, "ycoord": 27.632139637666352 }, "geometry": { "type": "Point", "coordinates": [ 85.313703209009759, 27.632139637666352 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 111, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 83, "repvalue": 166000, "xcoord": 85.314423033227925, "ycoord": 27.62717893946278 }, "geometry": { "type": "Point", "coordinates": [ 85.314423033227925, 27.62717893946278 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 112, "nhouse": 16, "residents": 63, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 55, "repvalue": 1540000, "xcoord": 85.315401694733353, "ycoord": 27.626330733070219 }, "geometry": { "type": "Point", "coordinates": [ 85.315401694733353, 27.626330733070219 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 113, "nhouse": 7, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 47, "repvalue": 658000, "xcoord": 85.3136354775786, "ycoord": 27.629558523677801 }, "geometry": { "type": "Point", "coordinates": [ 85.3136354775786, 27.629558523677801 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 114, "nhouse": 1, "residents": 2, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 66, "repvalue": 132000, "xcoord": 85.315162266874509, "ycoord": 27.627952453341109 }, "geometry": { "type": "Point", "coordinates": [ 85.315162266874509, 27.627952453341109 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 115, "nhouse": 5, "residents": 19, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 76, "repvalue": 456000, "xcoord": 85.314442468767311, "ycoord": 27.632913156114359 }, "geometry": { "type": "Point", "coordinates": [ 85.314442468767311, 27.632913156114359 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 116, "nhouse": 12, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 74, "repvalue": 1184000, "xcoord": 85.31540462072013, "ycoord": 27.626139635780316 }, "geometry": { "type": "Point", "coordinates": [ 85.31540462072013, 27.626139635780316 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 117, "nhouse": 6, "residents": 21, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 45, "repvalue": 540000, "xcoord": 85.314980346098395, "ycoord": 27.632824126989409 }, "geometry": { "type": "Point", "coordinates": [ 85.314980346098395, 27.632824126989409 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 118, "nhouse": 11, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 76, "repvalue": 1064000, "xcoord": 85.315518222671528, "ycoord": 27.632735095737328 }, "geometry": { "type": "Point", "coordinates": [ 85.315518222671528, 27.632735095737328 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 119, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 54, "repvalue": 324000, "xcoord": 85.31569426788451, "ycoord": 27.628245614793126 }, "geometry": { "type": "Point", "coordinates": [ 85.31569426788451, 27.628245614793126 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 120, "nhouse": 5, "residents": 19, "specialfac": 0, "expstr": "RCi+HC+4s+ResCom", "fptarea": 60, "repvalue": 480000, "xcoord": 85.315888346106917, "ycoord": 27.629585901318485 }, "geometry": { "type": "Point", "coordinates": [ 85.315888346106917, 27.629585901318485 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 121, "nhouse": 10, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 78, "repvalue": 936000, "xcoord": 85.314401073872645, "ycoord": 27.628612168061625 }, "geometry": { "type": "Point", "coordinates": [ 85.314401073872645, 27.628612168061625 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 122, "nhouse": 21, "residents": 90, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 54, "repvalue": 1944000, "xcoord": 85.314508352374062, "ycoord": 27.628613471954854 }, "geometry": { "type": "Point", "coordinates": [ 85.314508352374062, 27.628613471954854 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 123, "nhouse": 2, "residents": 9, "specialfac": 0, "expstr": "BrCfl+MC+2s+Res", "fptarea": 58, "repvalue": 232000, "xcoord": 85.315075475906596, "ycoord": 27.626613469387809 }, "geometry": { "type": "Point", "coordinates": [ 85.315075475906596, 27.626613469387809 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 124, "nhouse": 10, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 63, "repvalue": 882000, "xcoord": 85.315705970577625, "ycoord": 27.627481225695934 }, "geometry": { "type": "Point", "coordinates": [ 85.315705970577625, 27.627481225695934 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 125, "nhouse": 3, "residents": 16, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 55, "repvalue": 330000, "xcoord": 85.31457171289199, "ycoord": 27.631481232341923 }, "geometry": { "type": "Point", "coordinates": [ 85.31457171289199, 27.631481232341923 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 126, "nhouse": 8, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 61, "repvalue": 732000, "xcoord": 85.315532855281546, "ycoord": 27.631779610057041 }, "geometry": { "type": "Point", "coordinates": [ 85.315532855281546, 27.631779610057041 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 127, "nhouse": 8, "residents": 49, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 77, "repvalue": 770000, "xcoord": 85.314093880953962, "ycoord": 27.627652770344721 }, "geometry": { "type": "Point", "coordinates": [ 85.314093880953962, 27.627652770344721 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 128, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 45, "repvalue": 360000, "xcoord": 85.3149213670129, "ycoord": 27.629669721095709 }, "geometry": { "type": "Point", "coordinates": [ 85.3149213670129, 27.629669721095709 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 129, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 46, "repvalue": 184000, "xcoord": 85.314633196263046, "ycoord": 27.627468192784637 }, "geometry": { "type": "Point", "coordinates": [ 85.314633196263046, 27.627468192784637 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 130, "nhouse": 5, "residents": 17, "specialfac": 0, "expstr": "BrCfl+LC+3s+ResCom", "fptarea": 80, "repvalue": 480000, "xcoord": 85.314474680353939, "ycoord": 27.630811088654287 }, "geometry": { "type": "Point", "coordinates": [ 85.314474680353939, 27.630811088654287 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 131, "nhouse": 5, "residents": 20, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 88, "repvalue": 528000, "xcoord": 85.315000838167535, "ycoord": 27.631486447386195 }, "geometry": { "type": "Point", "coordinates": [ 85.315000838167535, 27.631486447386195 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 132, "nhouse": 17, "residents": 64, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 78, "repvalue": 1560000, "xcoord": 85.314155767160813, "ycoord": 27.630616079318802 }, "geometry": { "type": "Point", "coordinates": [ 85.314155767160813, 27.630616079318802 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 133, "nhouse": 14, "residents": 55, "specialfac": 0, "expstr": "RCi+HC+8s+ResCom", "fptarea": 84, "repvalue": 1344000, "xcoord": 85.315405086477682, "ycoord": 27.633115986658954 }, "geometry": { "type": "Point", "coordinates": [ 85.315405086477682, 27.633115986658954 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 134, "nhouse": 3, "residents": 8, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 58, "repvalue": 348000, "xcoord": 85.314756573325596, "ycoord": 27.626418461816471 }, "geometry": { "type": "Point", "coordinates": [ 85.314756573325596, 27.626418461816471 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 135, "nhouse": 33, "residents": 158, "specialfac": 0, "expstr": "RCi+HC+19s+Res", "fptarea": 78, "repvalue": 2964000, "xcoord": 85.313293128576049, "ycoord": 27.630892288413055 }, "geometry": { "type": "Point", "coordinates": [ 85.313293128576049, 27.630892288413055 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 136, "nhouse": 1, "residents": 2, "specialfac": 0, "expstr": "BrCri+LC+1s+ResCom", "fptarea": 85, "repvalue": 170000, "xcoord": 85.314639051159261, "ycoord": 27.627085998413378 }, "geometry": { "type": "Point", "coordinates": [ 85.314639051159261, 27.627085998413378 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 137, "nhouse": 8, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 62, "repvalue": 744000, "xcoord": 85.313490110246207, "ycoord": 27.632041479776216 }, "geometry": { "type": "Point", "coordinates": [ 85.313490110246207, 27.632041479776216 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 138, "nhouse": 16, "residents": 64, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 55, "repvalue": 1430000, "xcoord": 85.314552266671356, "ycoord": 27.625747014286766 }, "geometry": { "type": "Point", "coordinates": [ 85.314552266671356, 27.625747014286766 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 139, "nhouse": 11, "residents": 45, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 63, "repvalue": 1008000, "xcoord": 85.315154950238636, "ycoord": 27.628430196370925 }, "geometry": { "type": "Point", "coordinates": [ 85.315154950238636, 27.628430196370925 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 140, "nhouse": 10, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+9s+Res", "fptarea": 51, "repvalue": 918000, "xcoord": 85.314173338824673, "ycoord": 27.629469496940995 }, "geometry": { "type": "Point", "coordinates": [ 85.314173338824673, 27.629469496940995 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 141, "nhouse": 21, "residents": 81, "specialfac": 0, "expstr": "RCi+HC+13s+ResCom", "fptarea": 73, "repvalue": 1898000, "xcoord": 85.315250522356919, "ycoord": 27.629195888490919 }, "geometry": { "type": "Point", "coordinates": [ 85.315250522356919, 27.629195888490919 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 142, "nhouse": 14, "residents": 56, "specialfac": 0, "expstr": "RCi+HC+8s+ResCom", "fptarea": 83, "repvalue": 1328000, "xcoord": 85.314871166983565, "ycoord": 27.625942022243255 }, "geometry": { "type": "Point", "coordinates": [ 85.314871166983565, 27.625942022243255 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 143, "nhouse": 22, "residents": 86, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 61, "repvalue": 2074000, "xcoord": 85.313595927114974, "ycoord": 27.632138332997751 }, "geometry": { "type": "Point", "coordinates": [ 85.313595927114974, 27.632138332997751 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 144, "nhouse": 6, "residents": 18, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 49, "repvalue": 588000, "xcoord": 85.315003765490715, "ycoord": 27.63129535027781 }, "geometry": { "type": "Point", "coordinates": [ 85.315003765490715, 27.63129535027781 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 145, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrCfl+LC+1s+ResCom", "fptarea": 70, "repvalue": 140000, "xcoord": 85.313500365175955, "ycoord": 27.631372640447267 }, "geometry": { "type": "Point", "coordinates": [ 85.313500365175955, 27.631372640447267 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 146, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 56, "repvalue": 336000, "xcoord": 85.315053525575493, "ycoord": 27.628046698585667 }, "geometry": { "type": "Point", "coordinates": [ 85.315053525575493, 27.628046698585667 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 147, "nhouse": 5, "residents": 18, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 87, "repvalue": 522000, "xcoord": 85.31529588149786, "ycoord": 27.626233881327646 }, "geometry": { "type": "Point", "coordinates": [ 85.31529588149786, 27.626233881327646 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 148, "nhouse": 12, "residents": 58, "specialfac": 0, "expstr": "RCi+HC+8s+ResCom", "fptarea": 71, "repvalue": 1136000, "xcoord": 85.315268081555189, "ycoord": 27.628049305231119 }, "geometry": { "type": "Point", "coordinates": [ 85.315268081555189, 27.628049305231119 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 149, "nhouse": 5, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 49, "repvalue": 490000, "xcoord": 85.31383099660944, "ycoord": 27.630803263324147 }, "geometry": { "type": "Point", "coordinates": [ 85.31383099660944, 27.630803263324147 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 150, "nhouse": 11, "residents": 46, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 87, "repvalue": 1044000, "xcoord": 85.314667282385187, "ycoord": 27.632246924478956 }, "geometry": { "type": "Point", "coordinates": [ 85.314667282385187, 27.632246924478956 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 151, "nhouse": 9, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 74, "repvalue": 888000, "xcoord": 85.313725180742281, "ycoord": 27.630706410312268 }, "geometry": { "type": "Point", "coordinates": [ 85.313725180742281, 27.630706410312268 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 152, "nhouse": 2, "residents": 5, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 46, "repvalue": 184000, "xcoord": 85.315621115610369, "ycoord": 27.633023044637767 }, "geometry": { "type": "Point", "coordinates": [ 85.315621115610369, 27.633023044637767 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 153, "nhouse": 5, "residents": 20, "specialfac": 0, "expstr": "BrCfl+LC+3s+ResCom", "fptarea": 82, "repvalue": 492000, "xcoord": 85.314358614521126, "ycoord": 27.63138307580039 }, "geometry": { "type": "Point", "coordinates": [ 85.314358614521126, 27.63138307580039 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 154, "nhouse": 4, "residents": 22, "specialfac": 0, "expstr": "RCi+HC+4s+ResCom", "fptarea": 55, "repvalue": 440000, "xcoord": 85.314803841255994, "ycoord": 27.630337257422699 }, "geometry": { "type": "Point", "coordinates": [ 85.314803841255994, 27.630337257422699 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 155, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 66, "repvalue": 264000, "xcoord": 85.31462148612475, "ycoord": 27.628232581460537 }, "geometry": { "type": "Point", "coordinates": [ 85.31462148612475, 27.628232581460537 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 156, "nhouse": 12, "residents": 47, "specialfac": 0, "expstr": "RCi+HC+8s+ResCom", "fptarea": 68, "repvalue": 1088000, "xcoord": 85.314622949917265, "ycoord": 27.628137032880907 }, "geometry": { "type": "Point", "coordinates": [ 85.314622949917265, 27.628137032880907 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 157, "nhouse": 21, "residents": 77, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 63, "repvalue": 1890000, "xcoord": 85.314721445663039, "ycoord": 27.62871162807053 }, "geometry": { "type": "Point", "coordinates": [ 85.314721445663039, 27.62871162807053 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 158, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrCfl+MC+1s+Res", "fptarea": 47, "repvalue": 94000, "xcoord": 85.313957315745213, "ycoord": 27.629562437007927 }, "geometry": { "type": "Point", "coordinates": [ 85.313957315745213, 27.629562437007927 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 159, "nhouse": 8, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 67, "repvalue": 804000, "xcoord": 85.314333721738365, "ycoord": 27.633007400483727 }, "geometry": { "type": "Point", "coordinates": [ 85.314333721738365, 27.633007400483727 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 160, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 87, "repvalue": 348000, "xcoord": 85.315453375379803, "ycoord": 27.629962883744192 }, "geometry": { "type": "Point", "coordinates": [ 85.315453375379803, 27.629962883744192 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 161, "nhouse": 2, "residents": 4, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 62, "repvalue": 248000, "xcoord": 85.313996853414224, "ycoord": 27.626982626248992 }, "geometry": { "type": "Point", "coordinates": [ 85.313996853414224, 27.626982626248992 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 162, "nhouse": 11, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 86, "repvalue": 1032000, "xcoord": 85.314163088813558, "ycoord": 27.630138336685683 }, "geometry": { "type": "Point", "coordinates": [ 85.314163088813558, 27.630138336685683 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 163, "nhouse": 18, "residents": 72, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 55, "repvalue": 1650000, "xcoord": 85.313179987030864, "ycoord": 27.631273177356398 }, "geometry": { "type": "Point", "coordinates": [ 85.313179987030864, 27.631273177356398 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 164, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 45, "repvalue": 90000, "xcoord": 85.313751544679917, "ycoord": 27.628986537075029 }, "geometry": { "type": "Point", "coordinates": [ 85.313751544679917, 27.628986537075029 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 165, "nhouse": 30, "residents": 109, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 86, "repvalue": 2752000, "xcoord": 85.315573822757869, "ycoord": 27.629104249413714 }, "geometry": { "type": "Point", "coordinates": [ 85.315573822757869, 27.629104249413714 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 166, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 84, "repvalue": 168000, "xcoord": 85.315488489654754, "ycoord": 27.627669717038476 }, "geometry": { "type": "Point", "coordinates": [ 85.315488489654754, 27.627669717038476 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 167, "nhouse": 8, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 55, "repvalue": 770000, "xcoord": 85.314323076019747, "ycoord": 27.626699892656326 }, "geometry": { "type": "Point", "coordinates": [ 85.314323076019747, 27.626699892656326 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 168, "nhouse": 7, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 58, "repvalue": 696000, "xcoord": 85.315178362839532, "ycoord": 27.626901418553352 }, "geometry": { "type": "Point", "coordinates": [ 85.315178362839532, 27.626901418553352 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 169, "nhouse": 12, "residents": 51, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 70, "repvalue": 1120000, "xcoord": 85.314952101548826, "ycoord": 27.62766320073743 }, "geometry": { "type": "Point", "coordinates": [ 85.314952101548826, 27.62766320073743 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 170, "nhouse": 13, "residents": 52, "specialfac": 0, "expstr": "RCi+HC+8s+ResCom", "fptarea": 79, "repvalue": 1264000, "xcoord": 85.313951457865826, "ycoord": 27.629944631108362 }, "geometry": { "type": "Point", "coordinates": [ 85.313951457865826, 27.629944631108362 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 171, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 76, "repvalue": 152000, "xcoord": 85.315562118340807, "ycoord": 27.629868638280005 }, "geometry": { "type": "Point", "coordinates": [ 85.315562118340807, 27.629868638280005 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 172, "nhouse": 26, "residents": 90, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 71, "repvalue": 2414000, "xcoord": 85.315353411791975, "ycoord": 27.629483837551991 }, "geometry": { "type": "Point", "coordinates": [ 85.315353411791975, 27.629483837551991 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 173, "nhouse": 6, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 88, "repvalue": 1408000, "xcoord": 85.314393753727217, "ycoord": 27.629089910858504 }, "geometry": { "type": "Point", "coordinates": [ 85.314393753727217, 27.629089910858504 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 2685, "nhouse": 0, "residents": 0, "specialfac": 1, "expstr": "RCi+HC+7s+Edu", "fptarea": 99, "repvalue": 2079000, "xcoord": 85.315673787062579, "ycoord": 27.629583295499447 }, "geometry": { "type": "Point", "coordinates": [ 85.315673787062579, 27.629583295499447 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 174, "nhouse": 9, "residents": 30, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 54, "repvalue": 864000, "xcoord": 85.305340950931466, "ycoord": 27.638430696409532 }, "geometry": { "type": "Point", "coordinates": [ 85.305340950931466, 27.638430696409532 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 175, "nhouse": 6, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 49, "repvalue": 588000, "xcoord": 85.307614964693428, "ycoord": 27.636576333984905 }, "geometry": { "type": "Point", "coordinates": [ 85.307614964693428, 27.636576333984905 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 176, "nhouse": 10, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 77, "repvalue": 924000, "xcoord": 85.307207922986279, "ycoord": 27.637277167100102 }, "geometry": { "type": "Point", "coordinates": [ 85.307207922986279, 27.637277167100102 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 177, "nhouse": 4, "residents": 18, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 67, "repvalue": 402000, "xcoord": 85.30569726799321, "ycoord": 27.641022989941863 }, "geometry": { "type": "Point", "coordinates": [ 85.30569726799321, 27.641022989941863 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 178, "nhouse": 13, "residents": 63, "specialfac": 0, "expstr": "RCi+HC+12s+ResCom", "fptarea": 52, "repvalue": 1248000, "xcoord": 85.306516829236926, "ycoord": 27.639268499454538 }, "geometry": { "type": "Point", "coordinates": [ 85.306516829236926, 27.639268499454538 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 179, "nhouse": 11, "residents": 49, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 85, "repvalue": 1020000, "xcoord": 85.306558486657764, "ycoord": 27.636563434614867 }, "geometry": { "type": "Point", "coordinates": [ 85.306558486657764, 27.636563434614867 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 180, "nhouse": 24, "residents": 96, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 68, "repvalue": 2176000, "xcoord": 85.30586919849523, "ycoord": 27.638437152137097 }, "geometry": { "type": "Point", "coordinates": [ 85.30586919849523, 27.638437152137097 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 181, "nhouse": 6, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 45, "repvalue": 540000, "xcoord": 85.305999448602208, "ycoord": 27.63855637722698 }, "geometry": { "type": "Point", "coordinates": [ 85.305999448602208, 27.63855637722698 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 182, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 54, "repvalue": 324000, "xcoord": 85.307320069800454, "ycoord": 27.638572506572654 }, "geometry": { "type": "Point", "coordinates": [ 85.307320069800454, 27.638572506572654 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 183, "nhouse": 32, "residents": 132, "specialfac": 0, "expstr": "RCi+HC+19s+Res", "fptarea": 76, "repvalue": 2888000, "xcoord": 85.30760953483167, "ycoord": 27.636929168784786 }, "geometry": { "type": "Point", "coordinates": [ 85.30760953483167, 27.636929168784786 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 184, "nhouse": 23, "residents": 79, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 70, "repvalue": 2100000, "xcoord": 85.305845642256642, "ycoord": 27.63996610100665 }, "geometry": { "type": "Point", "coordinates": [ 85.305845642256642, 27.63996610100665 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 185, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 57, "repvalue": 228000, "xcoord": 85.30799847726928, "ycoord": 27.637404450513856 }, "geometry": { "type": "Point", "coordinates": [ 85.30799847726928, 27.637404450513856 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 186, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 44, "repvalue": 176000, "xcoord": 85.306435482850944, "ycoord": 27.635973763947074 }, "geometry": { "type": "Point", "coordinates": [ 85.306435482850944, 27.635973763947074 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 187, "nhouse": 21, "residents": 85, "specialfac": 0, "expstr": "RCi+HC+16s+ResCom", "fptarea": 60, "repvalue": 1920000, "xcoord": 85.307222406047217, "ycoord": 27.636336274501232 }, "geometry": { "type": "Point", "coordinates": [ 85.307222406047217, 27.636336274501232 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 188, "nhouse": 8, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 83, "repvalue": 830000, "xcoord": 85.306705033422361, "ycoord": 27.63562415503262 }, "geometry": { "type": "Point", "coordinates": [ 85.306705033422361, 27.63562415503262 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 189, "nhouse": 13, "residents": 54, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 85, "repvalue": 1190000, "xcoord": 85.306748354739952, "ycoord": 27.641388732197775 }, "geometry": { "type": "Point", "coordinates": [ 85.306748354739952, 27.641388732197775 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 190, "nhouse": 7, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 62, "repvalue": 620000, "xcoord": 85.307694535790475, "ycoord": 27.639988681678503 }, "geometry": { "type": "Point", "coordinates": [ 85.307694535790475, 27.639988681678503 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 191, "nhouse": 4, "residents": 14, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 46, "repvalue": 368000, "xcoord": 85.307347224657548, "ycoord": 27.636808333066302 }, "geometry": { "type": "Point", "coordinates": [ 85.307347224657548, 27.636808333066302 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 192, "nhouse": 17, "residents": 80, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 51, "repvalue": 1530000, "xcoord": 85.306401068978005, "ycoord": 27.638208382855222 }, "geometry": { "type": "Point", "coordinates": [ 85.306401068978005, 27.638208382855222 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 193, "nhouse": 4, "residents": 13, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 74, "repvalue": 444000, "xcoord": 85.307226026702764, "ycoord": 27.636101051330463 }, "geometry": { "type": "Point", "coordinates": [ 85.307226026702764, 27.636101051330463 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 194, "nhouse": 12, "residents": 45, "specialfac": 0, "expstr": "RCi+HC+9s+Res", "fptarea": 64, "repvalue": 1152000, "xcoord": 85.307958663613661, "ycoord": 27.639991905477945 }, "geometry": { "type": "Point", "coordinates": [ 85.307958663613661, 27.639991905477945 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 195, "nhouse": 6, "residents": 21, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 48, "repvalue": 576000, "xcoord": 85.307493765174456, "ycoord": 27.635869052394966 }, "geometry": { "type": "Point", "coordinates": [ 85.307493765174456, 27.635869052394966 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 196, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 47, "repvalue": 188000, "xcoord": 85.30627444176487, "ycoord": 27.637853935140686 }, "geometry": { "type": "Point", "coordinates": [ 85.30627444176487, 27.637853935140686 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 197, "nhouse": 6, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 60, "repvalue": 600000, "xcoord": 85.30579149429002, "ycoord": 27.634907193731642 }, "geometry": { "type": "Point", "coordinates": [ 85.30579149429002, 27.634907193731642 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 198, "nhouse": 15, "residents": 59, "specialfac": 0, "expstr": "RCi+HC+8s+ResCom", "fptarea": 87, "repvalue": 1392000, "xcoord": 85.307947804422952, "ycoord": 27.640697574836803 }, "geometry": { "type": "Point", "coordinates": [ 85.307947804422952, 27.640697574836803 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 199, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "BrCfl+LC+3s+ResCom", "fptarea": 47, "repvalue": 282000, "xcoord": 85.307287480714308, "ycoord": 27.640689514155159 }, "geometry": { "type": "Point", "coordinates": [ 85.307287480714308, 27.640689514155159 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 200, "nhouse": 3, "residents": 15, "specialfac": 0, "expstr": "BrCfl+MC+3s+Res", "fptarea": 51, "repvalue": 306000, "xcoord": 85.307188007631254, "ycoord": 27.638570894203596 }, "geometry": { "type": "Point", "coordinates": [ 85.307188007631254, 27.638570894203596 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 201, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 68, "repvalue": 272000, "xcoord": 85.306773710936909, "ycoord": 27.639742171429489 }, "geometry": { "type": "Point", "coordinates": [ 85.306773710936909, 27.639742171429489 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 202, "nhouse": 16, "residents": 70, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 68, "repvalue": 1496000, "xcoord": 85.307148172939307, "ycoord": 27.641158347646552 }, "geometry": { "type": "Point", "coordinates": [ 85.307148172939307, 27.641158347646552 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 203, "nhouse": 1, "residents": 2, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 80, "repvalue": 160000, "xcoord": 85.307108450819058, "ycoord": 27.63515854630101 }, "geometry": { "type": "Point", "coordinates": [ 85.307108450819058, 27.63515854630101 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 204, "nhouse": 10, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 69, "repvalue": 966000, "xcoord": 85.307882703600782, "ycoord": 27.636344334328324 }, "geometry": { "type": "Point", "coordinates": [ 85.307882703600782, 27.636344334328324 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 205, "nhouse": 7, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 55, "repvalue": 660000, "xcoord": 85.306267195801567, "ycoord": 27.638324381122956 }, "geometry": { "type": "Point", "coordinates": [ 85.306267195801567, 27.638324381122956 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 206, "nhouse": 5, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 56, "repvalue": 560000, "xcoord": 85.307452131980611, "ycoord": 27.638574118816045 }, "geometry": { "type": "Point", "coordinates": [ 85.307452131980611, 27.638574118816045 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 207, "nhouse": 9, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 60, "repvalue": 840000, "xcoord": 85.308340379808357, "ycoord": 27.64093763288848 }, "geometry": { "type": "Point", "coordinates": [ 85.308340379808357, 27.64093763288848 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 208, "nhouse": 10, "residents": 45, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 77, "repvalue": 924000, "xcoord": 85.308476063587236, "ycoord": 27.640704021119866 }, "geometry": { "type": "Point", "coordinates": [ 85.308476063587236, 27.640704021119866 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 209, "nhouse": 19, "residents": 69, "specialfac": 0, "expstr": "RCi+HC+16s+ResCom", "fptarea": 54, "repvalue": 1728000, "xcoord": 85.306654325680356, "ycoord": 27.638917277994842 }, "geometry": { "type": "Point", "coordinates": [ 85.306654325680356, 27.638917277994842 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 210, "nhouse": 8, "residents": 30, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 54, "repvalue": 756000, "xcoord": 85.30569545565811, "ycoord": 27.641140601351658 }, "geometry": { "type": "Point", "coordinates": [ 85.30569545565811, 27.641140601351658 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 211, "nhouse": 32, "residents": 137, "specialfac": 0, "expstr": "RCi+HC+19s+Res", "fptarea": 78, "repvalue": 2964000, "xcoord": 85.306041117487425, "ycoord": 27.635851312834834 }, "geometry": { "type": "Point", "coordinates": [ 85.306041117487425, 27.635851312834834 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 212, "nhouse": 8, "residents": 29, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 50, "repvalue": 800000, "xcoord": 85.30616774199369, "ycoord": 27.636205760723531 }, "geometry": { "type": "Point", "coordinates": [ 85.30616774199369, 27.636205760723531 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 213, "nhouse": 11, "residents": 52, "specialfac": 0, "expstr": "RCi+HC+9s+Res", "fptarea": 57, "repvalue": 1026000, "xcoord": 85.307862796969928, "ycoord": 27.63763806205791 }, "geometry": { "type": "Point", "coordinates": [ 85.307862796969928, 27.63763806205791 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 214, "nhouse": 15, "residents": 65, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 87, "repvalue": 1392000, "xcoord": 85.30827164533595, "ycoord": 27.636819615289436 }, "geometry": { "type": "Point", "coordinates": [ 85.30827164533595, 27.636819615289436 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 215, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 75, "repvalue": 300000, "xcoord": 85.306560297718292, "ycoord": 27.63644582307484 }, "geometry": { "type": "Point", "coordinates": [ 85.306560297718292, 27.63644582307484 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 216, "nhouse": 18, "residents": 64, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 68, "repvalue": 1632000, "xcoord": 85.307045081146171, "ycoord": 27.639274950882598 }, "geometry": { "type": "Point", "coordinates": [ 85.307045081146171, 27.639274950882598 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 217, "nhouse": 9, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 64, "repvalue": 896000, "xcoord": 85.306261761213861, "ycoord": 27.638677215587563 }, "geometry": { "type": "Point", "coordinates": [ 85.306261761213861, 27.638677215587563 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 218, "nhouse": 7, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 80, "repvalue": 640000, "xcoord": 85.30601394278608, "ycoord": 27.637615485390786 }, "geometry": { "type": "Point", "coordinates": [ 85.30601394278608, 27.637615485390786 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 219, "nhouse": 3, "residents": 8, "specialfac": 0, "expstr": "BrCri+LC+2s+ResCom", "fptarea": 80, "repvalue": 320000, "xcoord": 85.306240021875183, "ycoord": 27.640088553256547 }, "geometry": { "type": "Point", "coordinates": [ 85.306240021875183, 27.640088553256547 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 220, "nhouse": 6, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 57, "repvalue": 570000, "xcoord": 85.306907585417605, "ycoord": 27.639626172748489 }, "geometry": { "type": "Point", "coordinates": [ 85.306907585417605, 27.639626172748489 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 221, "nhouse": 15, "residents": 52, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 47, "repvalue": 1410000, "xcoord": 85.306685113549605, "ycoord": 27.636917882107433 }, "geometry": { "type": "Point", "coordinates": [ 85.306685113549605, 27.636917882107433 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 222, "nhouse": 8, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 56, "repvalue": 784000, "xcoord": 85.306576596769347, "ycoord": 27.635387319119886 }, "geometry": { "type": "Point", "coordinates": [ 85.306576596769347, 27.635387319119886 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 223, "nhouse": 2, "residents": 11, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 58, "repvalue": 232000, "xcoord": 85.306757410771468, "ycoord": 27.64080067482789 }, "geometry": { "type": "Point", "coordinates": [ 85.306757410771468, 27.64080067482789 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 224, "nhouse": 3, "residents": 15, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 49, "repvalue": 294000, "xcoord": 85.307066809404958, "ycoord": 27.637863612459377 }, "geometry": { "type": "Point", "coordinates": [ 85.307066809404958, 27.637863612459377 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 225, "nhouse": 13, "residents": 48, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 84, "repvalue": 1176000, "xcoord": 85.306010319305969, "ycoord": 27.637850708362468 }, "geometry": { "type": "Point", "coordinates": [ 85.306010319305969, 27.637850708362468 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 226, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 87, "repvalue": 348000, "xcoord": 85.306046552131335, "ycoord": 27.635498478266815 }, "geometry": { "type": "Point", "coordinates": [ 85.306046552131335, 27.635498478266815 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 227, "nhouse": 11, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 74, "repvalue": 1036000, "xcoord": 85.307202491657435, "ycoord": 27.637630001789955 }, "geometry": { "type": "Point", "coordinates": [ 85.307202491657435, 27.637630001789955 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 228, "nhouse": 8, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 69, "repvalue": 828000, "xcoord": 85.306021189614583, "ycoord": 27.637145039422176 }, "geometry": { "type": "Point", "coordinates": [ 85.306021189614583, 27.637145039422176 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 229, "nhouse": 5, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 52, "repvalue": 520000, "xcoord": 85.306281687552598, "ycoord": 27.637383489124726 }, "geometry": { "type": "Point", "coordinates": [ 85.306281687552598, 27.637383489124726 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 230, "nhouse": 4, "residents": 16, "specialfac": 0, "expstr": "BrCri+MC+3s+Res", "fptarea": 66, "repvalue": 396000, "xcoord": 85.306091651148535, "ycoord": 27.641145442758454 }, "geometry": { "type": "Point", "coordinates": [ 85.306091651148535, 27.641145442758454 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 231, "nhouse": 10, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 75, "repvalue": 900000, "xcoord": 85.30689490865241, "ycoord": 27.640449453255069 }, "geometry": { "type": "Point", "coordinates": [ 85.30689490865241, 27.640449453255069 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 232, "nhouse": 27, "residents": 102, "specialfac": 0, "expstr": "RCi+HC+19s+Res", "fptarea": 66, "repvalue": 2508000, "xcoord": 85.305912682061674, "ycoord": 27.635614476366424 }, "geometry": { "type": "Point", "coordinates": [ 85.305912682061674, 27.635614476366424 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 233, "nhouse": 7, "residents": 35, "specialfac": 0, "expstr": "BrCri+MC+4s+Res", "fptarea": 80, "repvalue": 640000, "xcoord": 85.307019729514295, "ycoord": 27.640921511993295 }, "geometry": { "type": "Point", "coordinates": [ 85.307019729514295, 27.640921511993295 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 234, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 72, "repvalue": 144000, "xcoord": 85.305447638546482, "ycoord": 27.64007887049921 }, "geometry": { "type": "Point", "coordinates": [ 85.305447638546482, 27.64007887049921 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 235, "nhouse": 5, "residents": 13, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 45, "repvalue": 450000, "xcoord": 85.30913096185553, "ycoord": 27.64106491101321 }, "geometry": { "type": "Point", "coordinates": [ 85.30913096185553, 27.64106491101321 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 236, "nhouse": 3, "residents": 8, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 72, "repvalue": 288000, "xcoord": 85.307224216380476, "ycoord": 27.636218662916896 }, "geometry": { "type": "Point", "coordinates": [ 85.307224216380476, 27.636218662916896 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 237, "nhouse": 4, "residents": 16, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 46, "repvalue": 460000, "xcoord": 85.305583327150956, "ycoord": 27.639845261762741 }, "geometry": { "type": "Point", "coordinates": [ 85.305583327150956, 27.639845261762741 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 238, "nhouse": 10, "residents": 54, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 80, "repvalue": 960000, "xcoord": 85.306097086851025, "ycoord": 27.640792608450532 }, "geometry": { "type": "Point", "coordinates": [ 85.306097086851025, 27.640792608450532 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 239, "nhouse": 5, "residents": 25, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 76, "repvalue": 456000, "xcoord": 85.30599038938054, "ycoord": 27.639144434556194 }, "geometry": { "type": "Point", "coordinates": [ 85.30599038938054, 27.639144434556194 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 240, "nhouse": 6, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 71, "repvalue": 568000, "xcoord": 85.306799064983295, "ycoord": 27.638095610248644 }, "geometry": { "type": "Point", "coordinates": [ 85.306799064983295, 27.638095610248644 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 241, "nhouse": 4, "residents": 17, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 63, "repvalue": 378000, "xcoord": 85.307560661634326, "ycoord": 27.640104681131302 }, "geometry": { "type": "Point", "coordinates": [ 85.307560661634326, 27.640104681131302 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 242, "nhouse": 10, "residents": 47, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 82, "repvalue": 984000, "xcoord": 85.307424976771969, "ycoord": 27.640338291969076 }, "geometry": { "type": "Point", "coordinates": [ 85.307424976771969, 27.640338291969076 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 243, "nhouse": 9, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 58, "repvalue": 812000, "xcoord": 85.306549431190504, "ycoord": 27.637151492283422 }, "geometry": { "type": "Point", "coordinates": [ 85.306549431190504, 27.637151492283422 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 244, "nhouse": 3, "residents": 15, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 61, "repvalue": 366000, "xcoord": 85.307358085909414, "ycoord": 27.636102663531172 }, "geometry": { "type": "Point", "coordinates": [ 85.307358085909414, 27.636102663531172 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 245, "nhouse": 8, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 70, "repvalue": 840000, "xcoord": 85.307338173312701, "ycoord": 27.637396390954375 }, "geometry": { "type": "Point", "coordinates": [ 85.307338173312701, 27.637396390954375 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 246, "nhouse": 10, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+8s+ResCom", "fptarea": 57, "repvalue": 912000, "xcoord": 85.307052324074633, "ycoord": 27.638804504775202 }, "geometry": { "type": "Point", "coordinates": [ 85.307052324074633, 27.638804504775202 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 247, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 72, "repvalue": 144000, "xcoord": 85.306554864503781, "ycoord": 27.636798657688598 }, "geometry": { "type": "Point", "coordinates": [ 85.306554864503781, 27.636798657688598 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 248, "nhouse": 24, "residents": 93, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 61, "repvalue": 2196000, "xcoord": 85.307169901611289, "ycoord": 27.639747009531227 }, "geometry": { "type": "Point", "coordinates": [ 85.307169901611289, 27.639747009531227 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 249, "nhouse": 5, "residents": 18, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 80, "repvalue": 480000, "xcoord": 85.30846520738821, "ycoord": 27.641409690595268 }, "geometry": { "type": "Point", "coordinates": [ 85.30846520738821, 27.641409690595268 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 250, "nhouse": 19, "residents": 74, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 62, "repvalue": 1736000, "xcoord": 85.306665192349229, "ycoord": 27.638211608927566 }, "geometry": { "type": "Point", "coordinates": [ 85.306665192349229, 27.638211608927566 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 251, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 81, "repvalue": 324000, "xcoord": 85.307363516387298, "ycoord": 27.635749828735189 }, "geometry": { "type": "Point", "coordinates": [ 85.307363516387298, 27.635749828735189 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 252, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 69, "repvalue": 138000, "xcoord": 85.306545808926785, "ycoord": 27.637386715336113 }, "geometry": { "type": "Point", "coordinates": [ 85.306545808926785, 27.637386715336113 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 253, "nhouse": 15, "residents": 59, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 64, "repvalue": 1408000, "xcoord": 85.306943801784499, "ycoord": 27.637273942161375 }, "geometry": { "type": "Point", "coordinates": [ 85.306943801784499, 27.637273942161375 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 254, "nhouse": 8, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 59, "repvalue": 826000, "xcoord": 85.307685485081322, "ycoord": 27.640576739402668 }, "geometry": { "type": "Point", "coordinates": [ 85.307685485081322, 27.640576739402668 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 255, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 82, "repvalue": 328000, "xcoord": 85.307441270193294, "ycoord": 27.639279788134083 }, "geometry": { "type": "Point", "coordinates": [ 85.307441270193294, 27.639279788134083 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 256, "nhouse": 6, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 52, "repvalue": 624000, "xcoord": 85.306714087471107, "ycoord": 27.635036097187154 }, "geometry": { "type": "Point", "coordinates": [ 85.306714087471107, 27.635036097187154 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 257, "nhouse": 6, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 50, "repvalue": 600000, "xcoord": 85.306750165968197, "ycoord": 27.641271120728007 }, "geometry": { "type": "Point", "coordinates": [ 85.306750165968197, 27.641271120728007 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 258, "nhouse": 9, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 83, "repvalue": 830000, "xcoord": 85.305851078476366, "ycoord": 27.639613266683721 }, "geometry": { "type": "Point", "coordinates": [ 85.305851078476366, 27.639613266683721 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 259, "nhouse": 18, "residents": 61, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 69, "repvalue": 1656000, "xcoord": 85.307728925984918, "ycoord": 27.637754061846785 }, "geometry": { "type": "Point", "coordinates": [ 85.307728925984918, 27.637754061846785 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 260, "nhouse": 7, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 48, "repvalue": 672000, "xcoord": 85.306562108767864, "ycoord": 27.636328211532707 }, "geometry": { "type": "Point", "coordinates": [ 85.306562108767864, 27.636328211532707 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 261, "nhouse": 7, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 65, "repvalue": 650000, "xcoord": 85.306791821189478, "ycoord": 27.638566056342412 }, "geometry": { "type": "Point", "coordinates": [ 85.306791821189478, 27.638566056342412 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 262, "nhouse": 1, "residents": 2, "specialfac": 0, "expstr": "BrCfl+LC+1s+ResCom", "fptarea": 64, "repvalue": 128000, "xcoord": 85.306305235149949, "ycoord": 27.635854539340293 }, "geometry": { "type": "Point", "coordinates": [ 85.306305235149949, 27.635854539340293 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 263, "nhouse": 2, "residents": 5, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 64, "repvalue": 256000, "xcoord": 85.307209733407277, "ycoord": 27.637159555532609 }, "geometry": { "type": "Point", "coordinates": [ 85.307209733407277, 27.637159555532609 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 264, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "BrCfl+LC+3s+ResCom", "fptarea": 56, "repvalue": 336000, "xcoord": 85.306171364884335, "ycoord": 27.635970537676879 }, "geometry": { "type": "Point", "coordinates": [ 85.306171364884335, 27.635970537676879 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 265, "nhouse": 12, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+9s+Res", "fptarea": 64, "repvalue": 1152000, "xcoord": 85.306708655074772, "ycoord": 27.635388931900739 }, "geometry": { "type": "Point", "coordinates": [ 85.306708655074772, 27.635388931900739 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 266, "nhouse": 13, "residents": 49, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 84, "repvalue": 1176000, "xcoord": 85.307157226744607, "ycoord": 27.640570290135337 }, "geometry": { "type": "Point", "coordinates": [ 85.307157226744607, 27.640570290135337 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 267, "nhouse": 9, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 72, "repvalue": 864000, "xcoord": 85.306788199226744, "ycoord": 27.638801279376668 }, "geometry": { "type": "Point", "coordinates": [ 85.306788199226744, 27.638801279376668 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 268, "nhouse": 20, "residents": 81, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 53, "repvalue": 1908000, "xcoord": 85.306525885691784, "ycoord": 27.638680441975417 }, "geometry": { "type": "Point", "coordinates": [ 85.306525885691784, 27.638680441975417 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 269, "nhouse": 2, "residents": 5, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 58, "repvalue": 232000, "xcoord": 85.306885853490982, "ycoord": 27.641037510696631 }, "geometry": { "type": "Point", "coordinates": [ 85.306885853490982, 27.641037510696631 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 270, "nhouse": 2, "residents": 10, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 64, "repvalue": 256000, "xcoord": 85.305456701029073, "ycoord": 27.639490813414682 }, "geometry": { "type": "Point", "coordinates": [ 85.305456701029073, 27.639490813414682 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 271, "nhouse": 16, "residents": 61, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 58, "repvalue": 1508000, "xcoord": 85.305925363577572, "ycoord": 27.634791195704938 }, "geometry": { "type": "Point", "coordinates": [ 85.305925363577572, 27.634791195704938 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 272, "nhouse": 3, "residents": 17, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 72, "repvalue": 288000, "xcoord": 85.307821169727276, "ycoord": 27.640343128305918 }, "geometry": { "type": "Point", "coordinates": [ 85.307821169727276, 27.640343128305918 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 273, "nhouse": 34, "residents": 116, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 87, "repvalue": 3132000, "xcoord": 85.306055609651693, "ycoord": 27.634910420611341 }, "geometry": { "type": "Point", "coordinates": [ 85.306055609651693, 27.634910420611341 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 274, "nhouse": 2, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 53, "repvalue": 212000, "xcoord": 85.306164119059147, "ycoord": 27.636440983761776 }, "geometry": { "type": "Point", "coordinates": [ 85.306164119059147, 27.636440983761776 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 275, "nhouse": 5, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 85, "repvalue": 510000, "xcoord": 85.305654000876842, "ycoord": 27.635258414630702 }, "geometry": { "type": "Point", "coordinates": [ 85.305654000876842, 27.635258414630702 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 276, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 56, "repvalue": 336000, "xcoord": 85.305977706009159, "ycoord": 27.639967714728677 }, "geometry": { "type": "Point", "coordinates": [ 85.305977706009159, 27.639967714728677 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 277, "nhouse": 9, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 73, "repvalue": 876000, "xcoord": 85.307318259388893, "ycoord": 27.638690118122906 }, "geometry": { "type": "Point", "coordinates": [ 85.307318259388893, 27.638690118122906 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 278, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 52, "repvalue": 104000, "xcoord": 85.306363027982954, "ycoord": 27.640678223922283 }, "geometry": { "type": "Point", "coordinates": [ 85.306363027982954, 27.640678223922283 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 279, "nhouse": 22, "residents": 107, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 75, "repvalue": 1950000, "xcoord": 85.306976392762849, "ycoord": 27.635156933913141 }, "geometry": { "type": "Point", "coordinates": [ 85.306976392762849, 27.635156933913141 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 280, "nhouse": 4, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 69, "repvalue": 414000, "xcoord": 85.307598674812027, "ycoord": 27.637634838327717 }, "geometry": { "type": "Point", "coordinates": [ 85.307598674812027, 27.637634838327717 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 281, "nhouse": 10, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 65, "repvalue": 910000, "xcoord": 85.305520130720993, "ycoord": 27.635374412349538 }, "geometry": { "type": "Point", "coordinates": [ 85.305520130720993, 27.635374412349538 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 282, "nhouse": 21, "residents": 81, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 63, "repvalue": 1890000, "xcoord": 85.307466613749526, "ycoord": 27.637633226274129 }, "geometry": { "type": "Point", "coordinates": [ 85.307466613749526, 27.637633226274129 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 283, "nhouse": 18, "residents": 62, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 74, "repvalue": 1628000, "xcoord": 85.306185856007943, "ycoord": 27.635029645406057 }, "geometry": { "type": "Point", "coordinates": [ 85.306185856007943, 27.635029645406057 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 284, "nhouse": 5, "residents": 23, "specialfac": 0, "expstr": "BrCri+LC+4s+ResCom", "fptarea": 66, "repvalue": 528000, "xcoord": 85.305986765615017, "ycoord": 27.639379657473139 }, "geometry": { "type": "Point", "coordinates": [ 85.305986765615017, 27.639379657473139 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 285, "nhouse": 13, "residents": 53, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 45, "repvalue": 1170000, "xcoord": 85.306817173699841, "ycoord": 27.636919494866891 }, "geometry": { "type": "Point", "coordinates": [ 85.306817173699841, 27.636919494866891 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 286, "nhouse": 22, "residents": 82, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 83, "repvalue": 1992000, "xcoord": 85.307857367658528, "ycoord": 27.63799089684905 }, "geometry": { "type": "Point", "coordinates": [ 85.307857367658528, 27.63799089684905 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 287, "nhouse": 10, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 77, "repvalue": 924000, "xcoord": 85.30590543523968, "ycoord": 27.636084922412397 }, "geometry": { "type": "Point", "coordinates": [ 85.30590543523968, 27.636084922412397 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 288, "nhouse": 24, "residents": 108, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 69, "repvalue": 2208000, "xcoord": 85.307547989500307, "ycoord": 27.64092796185955 }, "geometry": { "type": "Point", "coordinates": [ 85.307547989500307, 27.64092796185955 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 289, "nhouse": 5, "residents": 21, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 86, "repvalue": 516000, "xcoord": 85.306498715504176, "ycoord": 27.640444614254921 }, "geometry": { "type": "Point", "coordinates": [ 85.306498715504176, 27.640444614254921 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 290, "nhouse": 10, "residents": 50, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 80, "repvalue": 960000, "xcoord": 85.307079483493098, "ycoord": 27.637040331572514 }, "geometry": { "type": "Point", "coordinates": [ 85.307079483493098, 27.637040331572514 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 291, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 81, "repvalue": 324000, "xcoord": 85.306317913857271, "ycoord": 27.635031258539804 }, "geometry": { "type": "Point", "coordinates": [ 85.306317913857271, 27.635031258539804 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 292, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "RCi+HC+1s+ResCom", "fptarea": 65, "repvalue": 130000, "xcoord": 85.30645178277652, "ycoord": 27.634915259988531 }, "geometry": { "type": "Point", "coordinates": [ 85.30645178277652, 27.634915259988531 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 293, "nhouse": 30, "residents": 113, "specialfac": 0, "expstr": "RCi+HC+19s+ResCom", "fptarea": 73, "repvalue": 2774000, "xcoord": 85.305644941075954, "ycoord": 27.635846472134237 }, "geometry": { "type": "Point", "coordinates": [ 85.305644941075954, 27.635846472134237 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 294, "nhouse": 8, "residents": 21, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 57, "repvalue": 798000, "xcoord": 85.305720827350484, "ycoord": 27.639494041422914 }, "geometry": { "type": "Point", "coordinates": [ 85.305720827350484, 27.639494041422914 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 295, "nhouse": 13, "residents": 53, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 76, "repvalue": 1216000, "xcoord": 85.305746196890979, "ycoord": 27.63784748108159 }, "geometry": { "type": "Point", "coordinates": [ 85.305746196890979, 27.63784748108159 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 296, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 86, "repvalue": 344000, "xcoord": 85.305201638370519, "ycoord": 27.638899527846867 }, "geometry": { "type": "Point", "coordinates": [ 85.305201638370519, 27.638899527846867 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 297, "nhouse": 13, "residents": 68, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 75, "repvalue": 1200000, "xcoord": 85.308863213386928, "ycoord": 27.641296912534113 }, "geometry": { "type": "Point", "coordinates": [ 85.308863213386928, 27.641296912534113 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 298, "nhouse": 3, "residents": 15, "specialfac": 0, "expstr": "BrCri+LC+2s+ResCom", "fptarea": 77, "repvalue": 308000, "xcoord": 85.305619572173313, "ycoord": 27.637493032864196 }, "geometry": { "type": "Point", "coordinates": [ 85.305619572173313, 27.637493032864196 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 299, "nhouse": 11, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 85, "repvalue": 1020000, "xcoord": 85.307057756155771, "ycoord": 27.638451670172547 }, "geometry": { "type": "Point", "coordinates": [ 85.307057756155771, 27.638451670172547 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 300, "nhouse": 12, "residents": 66, "specialfac": 0, "expstr": "RCi+HC+12s+ResCom", "fptarea": 48, "repvalue": 1152000, "xcoord": 85.307600484842709, "ycoord": 27.637517226742489 }, "geometry": { "type": "Point", "coordinates": [ 85.307600484842709, 27.637517226742489 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 301, "nhouse": 10, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 81, "repvalue": 972000, "xcoord": 85.307680054524241, "ycoord": 27.640929574011906 }, "geometry": { "type": "Point", "coordinates": [ 85.307680054524241, 27.640929574011906 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 302, "nhouse": 31, "residents": 125, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 86, "repvalue": 2924000, "xcoord": 85.305297447497082, "ycoord": 27.641253370197344 }, "geometry": { "type": "Point", "coordinates": [ 85.305297447497082, 27.641253370197344 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 303, "nhouse": 10, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 85, "repvalue": 1020000, "xcoord": 85.30586376260483, "ycoord": 27.638789986523186 }, "geometry": { "type": "Point", "coordinates": [ 85.30586376260483, 27.638789986523186 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 304, "nhouse": 4, "residents": 16, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 64, "repvalue": 384000, "xcoord": 85.306225528104676, "ycoord": 27.641029444867463 }, "geometry": { "type": "Point", "coordinates": [ 85.306225528104676, 27.641029444867463 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 305, "nhouse": 10, "residents": 50, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 60, "repvalue": 960000, "xcoord": 85.305786058964401, "ycoord": 27.635260028283099 }, "geometry": { "type": "Point", "coordinates": [ 85.305786058964401, 27.635260028283099 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 306, "nhouse": 10, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 80, "repvalue": 960000, "xcoord": 85.305885505573599, "ycoord": 27.63737864886518 }, "geometry": { "type": "Point", "coordinates": [ 85.305885505573599, 27.63737864886518 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 307, "nhouse": 8, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 62, "repvalue": 744000, "xcoord": 85.307300154670116, "ycoord": 27.639866233509668 }, "geometry": { "type": "Point", "coordinates": [ 85.307300154670116, 27.639866233509668 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 308, "nhouse": 2, "residents": 9, "specialfac": 0, "expstr": "BrCri+LC+2s+ResCom", "fptarea": 62, "repvalue": 248000, "xcoord": 85.305997636779836, "ycoord": 27.638673988697033 }, "geometry": { "type": "Point", "coordinates": [ 85.305997636779836, 27.638673988697033 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 309, "nhouse": 33, "residents": 136, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 82, "repvalue": 2952000, "xcoord": 85.306312480191409, "ycoord": 27.635384093181209 }, "geometry": { "type": "Point", "coordinates": [ 85.306312480191409, 27.635384093181209 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 310, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "BrCfl+LC+2s+ResCom", "fptarea": 61, "repvalue": 244000, "xcoord": 85.308468826165054, "ycoord": 27.641174467445214 }, "geometry": { "type": "Point", "coordinates": [ 85.308468826165054, 27.641174467445214 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 311, "nhouse": 33, "residents": 144, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 84, "repvalue": 3024000, "xcoord": 85.306522263142753, "ycoord": 27.638915664973382 }, "geometry": { "type": "Point", "coordinates": [ 85.306522263142753, 27.638915664973382 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 312, "nhouse": 2, "residents": 9, "specialfac": 0, "expstr": "BrCri+LC+2s+ResCom", "fptarea": 60, "repvalue": 240000, "xcoord": 85.308604509998744, "ycoord": 27.640940855559336 }, "geometry": { "type": "Point", "coordinates": [ 85.308604509998744, 27.640940855559336 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 313, "nhouse": 18, "residents": 70, "specialfac": 0, "expstr": "RCi+HC+16s+ResCom", "fptarea": 51, "repvalue": 1632000, "xcoord": 85.30578062353996, "ycoord": 27.635612862815613 }, "geometry": { "type": "Point", "coordinates": [ 85.30578062353996, 27.635612862815613 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 314, "nhouse": 17, "residents": 76, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 52, "repvalue": 1560000, "xcoord": 85.306679680626615, "ycoord": 27.637270716720003 }, "geometry": { "type": "Point", "coordinates": [ 85.306679680626615, 27.637270716720003 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 315, "nhouse": 4, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 53, "repvalue": 424000, "xcoord": 85.305577890018796, "ycoord": 27.6401980960249 }, "geometry": { "type": "Point", "coordinates": [ 85.305577890018796, 27.6401980960249 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 316, "nhouse": 25, "residents": 109, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 66, "repvalue": 2376000, "xcoord": 85.307602294862434, "ycoord": 27.637399615155157 }, "geometry": { "type": "Point", "coordinates": [ 85.307602294862434, 27.637399615155157 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 317, "nhouse": 5, "residents": 17, "specialfac": 0, "expstr": "BrCfl+LC+3s+ResCom", "fptarea": 76, "repvalue": 456000, "xcoord": 85.306889475588463, "ycoord": 27.640802287726324 }, "geometry": { "type": "Point", "coordinates": [ 85.306889475588463, 27.640802287726324 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 318, "nhouse": 7, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 56, "repvalue": 672000, "xcoord": 85.308076249661809, "ycoord": 27.640934409714895 }, "geometry": { "type": "Point", "coordinates": [ 85.308076249661809, 27.640934409714895 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 319, "nhouse": 5, "residents": 15, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 84, "repvalue": 504000, "xcoord": 85.307549799838071, "ycoord": 27.640810350333254 }, "geometry": { "type": "Point", "coordinates": [ 85.307549799838071, 27.640810350333254 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 320, "nhouse": 8, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 79, "repvalue": 790000, "xcoord": 85.305981329884432, "ycoord": 27.639732491832778 }, "geometry": { "type": "Point", "coordinates": [ 85.305981329884432, 27.639732491832778 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 321, "nhouse": 3, "residents": 15, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 53, "repvalue": 318000, "xcoord": 85.305053259972127, "ycoord": 27.639956416035286 }, "geometry": { "type": "Point", "coordinates": [ 85.305053259972127, 27.639956416035286 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 322, "nhouse": 7, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 56, "repvalue": 672000, "xcoord": 85.306809930344883, "ycoord": 27.637389941044852 }, "geometry": { "type": "Point", "coordinates": [ 85.306809930344883, 27.637389941044852 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 323, "nhouse": 10, "residents": 43, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 65, "repvalue": 910000, "xcoord": 85.307575143415164, "ycoord": 27.639163788744142 }, "geometry": { "type": "Point", "coordinates": [ 85.307575143415164, 27.639163788744142 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 324, "nhouse": 5, "residents": 21, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 78, "repvalue": 468000, "xcoord": 85.308268026805919, "ycoord": 27.637054838563188 }, "geometry": { "type": "Point", "coordinates": [ 85.308268026805919, 27.637054838563188 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 325, "nhouse": 14, "residents": 48, "specialfac": 0, "expstr": "RCi+HC+8s+ResCom", "fptarea": 83, "repvalue": 1328000, "xcoord": 85.306415559512615, "ycoord": 27.637267490775979 }, "geometry": { "type": "Point", "coordinates": [ 85.306415559512615, 27.637267490775979 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 326, "nhouse": 5, "residents": 21, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 77, "repvalue": 462000, "xcoord": 85.307595054717765, "ycoord": 27.63787006149186 }, "geometry": { "type": "Point", "coordinates": [ 85.307595054717765, 27.63787006149186 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 327, "nhouse": 1, "residents": 2, "specialfac": 0, "expstr": "RCi+HC+1s+ResCom", "fptarea": 78, "repvalue": 156000, "xcoord": 85.305778811709885, "ycoord": 27.635730474322237 }, "geometry": { "type": "Point", "coordinates": [ 85.305778811709885, 27.635730474322237 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 328, "nhouse": 7, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 47, "repvalue": 658000, "xcoord": 85.308016572631246, "ycoord": 27.63622833428435 }, "geometry": { "type": "Point", "coordinates": [ 85.308016572631246, 27.63622833428435 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 329, "nhouse": 2, "residents": 14, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 70, "repvalue": 280000, "xcoord": 85.309127344511609, "ycoord": 27.641300134247565 }, "geometry": { "type": "Point", "coordinates": [ 85.309127344511609, 27.641300134247565 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 330, "nhouse": 22, "residents": 82, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 72, "repvalue": 2016000, "xcoord": 85.307086725587837, "ycoord": 27.636569885305146 }, "geometry": { "type": "Point", "coordinates": [ 85.307086725587837, 27.636569885305146 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 331, "nhouse": 7, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 70, "repvalue": 700000, "xcoord": 85.306410125644447, "ycoord": 27.637620325321485 }, "geometry": { "type": "Point", "coordinates": [ 85.306410125644447, 27.637620325321485 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 332, "nhouse": 5, "residents": 22, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 82, "repvalue": 492000, "xcoord": 85.305623196434013, "ycoord": 27.637257809928034 }, "geometry": { "type": "Point", "coordinates": [ 85.305623196434013, 27.637257809928034 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 333, "nhouse": 8, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 64, "repvalue": 768000, "xcoord": 85.309002514152198, "ycoord": 27.640828077008582 }, "geometry": { "type": "Point", "coordinates": [ 85.309002514152198, 27.640828077008582 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 334, "nhouse": 5, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 47, "repvalue": 470000, "xcoord": 85.307678244316619, "ycoord": 27.641047185544114 }, "geometry": { "type": "Point", "coordinates": [ 85.307678244316619, 27.641047185544114 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 335, "nhouse": 21, "residents": 87, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 82, "repvalue": 1968000, "xcoord": 85.307095777959475, "ycoord": 27.635981827423592 }, "geometry": { "type": "Point", "coordinates": [ 85.307095777959475, 27.635981827423592 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 336, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 56, "repvalue": 224000, "xcoord": 85.307410492984957, "ycoord": 27.641279184123711 }, "geometry": { "type": "Point", "coordinates": [ 85.307410492984957, 27.641279184123711 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 337, "nhouse": 8, "residents": 30, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 63, "repvalue": 756000, "xcoord": 85.308738384178241, "ycoord": 27.640824855107837 }, "geometry": { "type": "Point", "coordinates": [ 85.308738384178241, 27.640824855107837 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 338, "nhouse": 21, "residents": 83, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 86, "repvalue": 1892000, "xcoord": 85.307309207166611, "ycoord": 27.639278175842595 }, "geometry": { "type": "Point", "coordinates": [ 85.307309207166611, 27.639278175842595 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 339, "nhouse": 9, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 67, "repvalue": 804000, "xcoord": 85.3067809551696, "ycoord": 27.639271725419917 }, "geometry": { "type": "Point", "coordinates": [ 85.3067809551696, 27.639271725419917 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 340, "nhouse": 2, "residents": 4, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 57, "repvalue": 228000, "xcoord": 85.305760692805151, "ycoord": 27.636906589272741 }, "geometry": { "type": "Point", "coordinates": [ 85.305760692805151, 27.636906589272741 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 341, "nhouse": 15, "residents": 58, "specialfac": 0, "expstr": "RCi+HC+14s+ResCom", "fptarea": 51, "repvalue": 1428000, "xcoord": 85.307488335086873, "ycoord": 27.636221887208677 }, "geometry": { "type": "Point", "coordinates": [ 85.307488335086873, 27.636221887208677 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 342, "nhouse": 22, "residents": 82, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 76, "repvalue": 1976000, "xcoord": 85.307690915539709, "ycoord": 27.64022390477448 }, "geometry": { "type": "Point", "coordinates": [ 85.307690915539709, 27.64022390477448 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 343, "nhouse": 11, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 49, "repvalue": 980000, "xcoord": 85.30756971282959, "ycoord": 27.639516623405108 }, "geometry": { "type": "Point", "coordinates": [ 85.30756971282959, 27.639516623405108 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 344, "nhouse": 21, "residents": 84, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 76, "repvalue": 1976000, "xcoord": 85.306364839568658, "ycoord": 27.640560612463958 }, "geometry": { "type": "Point", "coordinates": [ 85.306364839568658, 27.640560612463958 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 345, "nhouse": 4, "residents": 22, "specialfac": 0, "expstr": "BrCfl+LC+3s+ResCom", "fptarea": 65, "repvalue": 390000, "xcoord": 85.307938754795813, "ycoord": 27.641285632577972 }, "geometry": { "type": "Point", "coordinates": [ 85.307938754795813, 27.641285632577972 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 346, "nhouse": 7, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 57, "repvalue": 684000, "xcoord": 85.30801838210715, "ycoord": 27.636110722649828 }, "geometry": { "type": "Point", "coordinates": [ 85.30801838210715, 27.636110722649828 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 347, "nhouse": 4, "residents": 23, "specialfac": 0, "expstr": "BrCfl+MC+3s+Res", "fptarea": 70, "repvalue": 420000, "xcoord": 85.305454888554507, "ycoord": 27.639608424835799 }, "geometry": { "type": "Point", "coordinates": [ 85.305454888554507, 27.639608424835799 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 348, "nhouse": 8, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 51, "repvalue": 714000, "xcoord": 85.305194387497338, "ycoord": 27.639369973496585 }, "geometry": { "type": "Point", "coordinates": [ 85.305194387497338, 27.639369973496585 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 349, "nhouse": 10, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 79, "repvalue": 948000, "xcoord": 85.306779144127887, "ycoord": 27.639389336925465 }, "geometry": { "type": "Point", "coordinates": [ 85.306779144127887, 27.639389336925465 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 350, "nhouse": 8, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 63, "repvalue": 756000, "xcoord": 85.307448511428717, "ycoord": 27.638809341930479 }, "geometry": { "type": "Point", "coordinates": [ 85.307448511428717, 27.638809341930479 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 351, "nhouse": 2, "residents": 4, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 51, "repvalue": 204000, "xcoord": 85.30650414973924, "ycoord": 27.640091779836911 }, "geometry": { "type": "Point", "coordinates": [ 85.30650414973924, 27.640091779836911 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 352, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 68, "repvalue": 272000, "xcoord": 85.305923551965364, "ycoord": 27.634908807234318 }, "geometry": { "type": "Point", "coordinates": [ 85.305923551965364, 27.634908807234318 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 353, "nhouse": 4, "residents": 20, "specialfac": 0, "expstr": "BrCfl+LC+3s+ResCom", "fptarea": 59, "repvalue": 354000, "xcoord": 85.305641317078752, "ycoord": 27.636081695120922 }, "geometry": { "type": "Point", "coordinates": [ 85.305641317078752, 27.636081695120922 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 354, "nhouse": 18, "residents": 71, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 83, "repvalue": 1660000, "xcoord": 85.306113393365735, "ycoord": 27.639734105413083 }, "geometry": { "type": "Point", "coordinates": [ 85.306113393365735, 27.639734105413083 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 355, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 55, "repvalue": 330000, "xcoord": 85.306715898247958, "ycoord": 27.634918485611742 }, "geometry": { "type": "Point", "coordinates": [ 85.306715898247958, 27.634918485611742 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 356, "nhouse": 3, "residents": 7, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 73, "repvalue": 292000, "xcoord": 85.306370274259933, "ycoord": 27.64020777807632 }, "geometry": { "type": "Point", "coordinates": [ 85.306370274259933, 27.64020777807632 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 357, "nhouse": 15, "residents": 57, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 85, "repvalue": 1360000, "xcoord": 85.306395634846453, "ycoord": 27.638561217350205 }, "geometry": { "type": "Point", "coordinates": [ 85.306395634846453, 27.638561217350205 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 358, "nhouse": 10, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 79, "repvalue": 948000, "xcoord": 85.305693643312011, "ycoord": 27.641258212759357 }, "geometry": { "type": "Point", "coordinates": [ 85.305693643312011, 27.641258212759357 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 359, "nhouse": 21, "residents": 82, "specialfac": 0, "expstr": "RCi+HC+13s+ResCom", "fptarea": 75, "repvalue": 1950000, "xcoord": 85.305317387356382, "ycoord": 27.639959644861776 }, "geometry": { "type": "Point", "coordinates": [ 85.305317387356382, 27.639959644861776 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 360, "nhouse": 8, "residents": 29, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 49, "repvalue": 784000, "xcoord": 85.30939147568013, "ycoord": 27.641303355458284 }, "geometry": { "type": "Point", "coordinates": [ 85.30939147568013, 27.641303355458284 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 361, "nhouse": 31, "residents": 120, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 84, "repvalue": 2856000, "xcoord": 85.306100710597804, "ycoord": 27.640557385568059 }, "geometry": { "type": "Point", "coordinates": [ 85.306100710597804, 27.640557385568059 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 362, "nhouse": 7, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 49, "repvalue": 686000, "xcoord": 85.305169008057405, "ycoord": 27.641016533005349 }, "geometry": { "type": "Point", "coordinates": [ 85.305169008057405, 27.641016533005349 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 363, "nhouse": 6, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 48, "repvalue": 576000, "xcoord": 85.307810309492609, "ycoord": 27.641048797578812 }, "geometry": { "type": "Point", "coordinates": [ 85.307810309492609, 27.641048797578812 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 364, "nhouse": 25, "residents": 106, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 83, "repvalue": 2324000, "xcoord": 85.305775188016753, "ycoord": 27.635965697329176 }, "geometry": { "type": "Point", "coordinates": [ 85.305775188016753, 27.635965697329176 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 365, "nhouse": 20, "residents": 71, "specialfac": 0, "expstr": "RCi+HC+19s+Res", "fptarea": 47, "repvalue": 1786000, "xcoord": 85.307229647314443, "ycoord": 27.635865828151292 }, "geometry": { "type": "Point", "coordinates": [ 85.307229647314443, 27.635865828151292 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 366, "nhouse": 14, "residents": 54, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 50, "repvalue": 1300000, "xcoord": 85.307204302111359, "ycoord": 27.637512390228768 }, "geometry": { "type": "Point", "coordinates": [ 85.307204302111359, 27.637512390228768 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 367, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 63, "repvalue": 126000, "xcoord": 85.306659759064161, "ycoord": 27.638564443470678 }, "geometry": { "type": "Point", "coordinates": [ 85.306659759064161, 27.638564443470678 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 368, "nhouse": 23, "residents": 89, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 60, "repvalue": 2160000, "xcoord": 85.305648565029244, "ycoord": 27.635611249139135 }, "geometry": { "type": "Point", "coordinates": [ 85.305648565029244, 27.635611249139135 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 369, "nhouse": 11, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 76, "repvalue": 1064000, "xcoord": 85.307486525035742, "ycoord": 27.63633949880904 }, "geometry": { "type": "Point", "coordinates": [ 85.307486525035742, 27.63633949880904 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 370, "nhouse": 6, "residents": 21, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 53, "repvalue": 530000, "xcoord": 85.30689309764206, "ycoord": 27.640567064747593 }, "geometry": { "type": "Point", "coordinates": [ 85.30689309764206, 27.640567064747593 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 371, "nhouse": 14, "residents": 67, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 48, "repvalue": 1248000, "xcoord": 85.306880420262473, "ycoord": 27.641390345136298 }, "geometry": { "type": "Point", "coordinates": [ 85.306880420262473, 27.641390345136298 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 372, "nhouse": 10, "residents": 43, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 59, "repvalue": 944000, "xcoord": 85.305728076010197, "ycoord": 27.639023595653207 }, "geometry": { "type": "Point", "coordinates": [ 85.305728076010197, 27.639023595653207 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 373, "nhouse": 1, "residents": 2, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 72, "repvalue": 144000, "xcoord": 85.305065950256889, "ycoord": 27.639133136256046 }, "geometry": { "type": "Point", "coordinates": [ 85.305065950256889, 27.639133136256046 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 374, "nhouse": 8, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 62, "repvalue": 744000, "xcoord": 85.306431860524555, "ycoord": 27.636208987025814 }, "geometry": { "type": "Point", "coordinates": [ 85.306431860524555, 27.636208987025814 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 375, "nhouse": 9, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 72, "repvalue": 864000, "xcoord": 85.306392012037222, "ycoord": 27.638796440336339 }, "geometry": { "type": "Point", "coordinates": [ 85.306392012037222, 27.638796440336339 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 376, "nhouse": 11, "residents": 50, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 62, "repvalue": 992000, "xcoord": 85.306556675586251, "ycoord": 27.636681046152788 }, "geometry": { "type": "Point", "coordinates": [ 85.306556675586251, 27.636681046152788 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 377, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 70, "repvalue": 280000, "xcoord": 85.308148632044748, "ycoord": 27.636229945739128 }, "geometry": { "type": "Point", "coordinates": [ 85.308148632044748, 27.636229945739128 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 378, "nhouse": 7, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 80, "repvalue": 640000, "xcoord": 85.306276253228262, "ycoord": 27.637736323639853 }, "geometry": { "type": "Point", "coordinates": [ 85.306276253228262, 27.637736323639853 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 379, "nhouse": 11, "residents": 49, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 76, "repvalue": 1064000, "xcoord": 85.309257601543109, "ycoord": 27.641419356537796 }, "geometry": { "type": "Point", "coordinates": [ 85.309257601543109, 27.641419356537796 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 380, "nhouse": 2, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 68, "repvalue": 272000, "xcoord": 85.305771564279723, "ycoord": 27.636200920327692 }, "geometry": { "type": "Point", "coordinates": [ 85.305771564279723, 27.636200920327692 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 381, "nhouse": 6, "residents": 22, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 78, "repvalue": 624000, "xcoord": 85.306388389184093, "ycoord": 27.639031663314054 }, "geometry": { "type": "Point", "coordinates": [ 85.306388389184093, 27.639031663314054 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 382, "nhouse": 5, "residents": 17, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 51, "repvalue": 510000, "xcoord": 85.30663077987596, "ycoord": 27.64044622738065 }, "geometry": { "type": "Point", "coordinates": [ 85.30663077987596, 27.64044622738065 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 383, "nhouse": 9, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 74, "repvalue": 888000, "xcoord": 85.305397133506247, "ycoord": 27.634784740972439 }, "geometry": { "type": "Point", "coordinates": [ 85.305397133506247, 27.634784740972439 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 384, "nhouse": 4, "residents": 15, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 81, "repvalue": 648000, "xcoord": 85.305521942800283, "ycoord": 27.635256800852652 }, "geometry": { "type": "Point", "coordinates": [ 85.305521942800283, 27.635256800852652 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 2682, "nhouse": 0, "residents": 0, "specialfac": 1, "expstr": "RCi+LC+6s+Edu", "fptarea": 150, "repvalue": 2700000, "xcoord": 85.307365326524646, "ycoord": 27.635632217132315 }, "geometry": { "type": "Point", "coordinates": [ 85.307365326524646, 27.635632217132315 ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "bldid": 2689, "nhouse": 0, "residents": 0, "specialfac": 2, "expstr": "RCi+HC+10s+Hea", "fptarea": 104, "repvalue": 4160000, "xcoord": 85.306804497713458, "ycoord": 27.637742775656221 }, "geometry": { "type": "Point", "coordinates": [ 85.306804497713458, 27.637742775656221 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 385, "nhouse": 10, "residents": 45, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 86, "repvalue": 1376000, "xcoord": 85.315554314732012, "ycoord": 27.620470534403221 }, "geometry": { "type": "Point", "coordinates": [ 85.315554314732012, 27.620470534403221 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 386, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "BrCri+LC+2s+ResCom", "fptarea": 96, "repvalue": 384000, "xcoord": 85.311963928482342, "ycoord": 27.61942997641631 }, "geometry": { "type": "Point", "coordinates": [ 85.311963928482342, 27.61942997641631 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 387, "nhouse": 10, "residents": 43, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 110, "repvalue": 1320000, "xcoord": 85.314697546510232, "ycoord": 27.619573984273277 }, "geometry": { "type": "Point", "coordinates": [ 85.314697546510232, 27.619573984273277 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 388, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 115, "repvalue": 460000, "xcoord": 85.317800788156944, "ycoord": 27.619943957484189 }, "geometry": { "type": "Point", "coordinates": [ 85.317800788156944, 27.619943957484189 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 389, "nhouse": 10, "residents": 43, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 111, "repvalue": 1332000, "xcoord": 85.31095737205257, "ycoord": 27.620193097639159 }, "geometry": { "type": "Point", "coordinates": [ 85.31095737205257, 27.620193097639159 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 390, "nhouse": 5, "residents": 17, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 87, "repvalue": 696000, "xcoord": 85.313062548672818, "ycoord": 27.62077255551285 }, "geometry": { "type": "Point", "coordinates": [ 85.313062548672818, 27.62077255551285 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 391, "nhouse": 18, "residents": 74, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 80, "repvalue": 2400000, "xcoord": 85.312796901162983, "ycoord": 27.621877002286688 }, "geometry": { "type": "Point", "coordinates": [ 85.312796901162983, 27.621877002286688 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 392, "nhouse": 6, "residents": 22, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 127, "repvalue": 762000, "xcoord": 85.314793049001537, "ycoord": 27.621458198221607 }, "geometry": { "type": "Point", "coordinates": [ 85.314793049001537, 27.621458198221607 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 393, "nhouse": 24, "residents": 95, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 95, "repvalue": 3040000, "xcoord": 85.311798822116174, "ycoord": 27.622086393278572 }, "geometry": { "type": "Point", "coordinates": [ 85.311798822116174, 27.622086393278572 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 394, "nhouse": 4, "residents": 10, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 132, "repvalue": 528000, "xcoord": 85.314048736985967, "ycoord": 27.621338385199472 }, "geometry": { "type": "Point", "coordinates": [ 85.314048736985967, 27.621338385199472 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 395, "nhouse": 3, "residents": 18, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 126, "repvalue": 504000, "xcoord": 85.311207737848022, "ycoord": 27.620085378378938 }, "geometry": { "type": "Point", "coordinates": [ 85.311207737848022, 27.620085378378938 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 396, "nhouse": 23, "residents": 83, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 93, "repvalue": 2976000, "xcoord": 85.311190742519003, "ycoord": 27.621192848871289 }, "geometry": { "type": "Point", "coordinates": [ 85.311190742519003, 27.621192848871289 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 397, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 125, "repvalue": 500000, "xcoord": 85.316175983611558, "ycoord": 27.620478082534245 }, "geometry": { "type": "Point", "coordinates": [ 85.316175983611558, 27.620478082534245 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 398, "nhouse": 1, "residents": 7, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 87, "repvalue": 174000, "xcoord": 85.313312913971416, "ycoord": 27.620664832426726 }, "geometry": { "type": "Point", "coordinates": [ 85.313312913971416, 27.620664832426726 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 399, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 81, "repvalue": 324000, "xcoord": 85.313329887569708, "ycoord": 27.619557360636428 }, "geometry": { "type": "Point", "coordinates": [ 85.313329887569708, 27.619557360636428 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 400, "nhouse": 6, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 70, "repvalue": 840000, "xcoord": 85.315428285716038, "ycoord": 27.620579771735812 }, "geometry": { "type": "Point", "coordinates": [ 85.315428285716038, 27.620579771735812 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 401, "nhouse": 2, "residents": 9, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 86, "repvalue": 344000, "xcoord": 85.313084617537001, "ycoord": 27.619332842357498 }, "geometry": { "type": "Point", "coordinates": [ 85.313084617537001, 27.619332842357498 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 402, "nhouse": 5, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 118, "repvalue": 708000, "xcoord": 85.316686870695619, "ycoord": 27.619598140059544 }, "geometry": { "type": "Point", "coordinates": [ 85.316686870695619, 27.619598140059544 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 403, "nhouse": 24, "residents": 115, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 132, "repvalue": 3168000, "xcoord": 85.312291067891735, "ycoord": 27.622424687050398 }, "geometry": { "type": "Point", "coordinates": [ 85.312291067891735, 27.622424687050398 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 404, "nhouse": 9, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 123, "repvalue": 1230000, "xcoord": 85.315559400106309, "ycoord": 27.620138292492356 }, "geometry": { "type": "Point", "coordinates": [ 85.315559400106309, 27.620138292492356 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 405, "nhouse": 14, "residents": 62, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 130, "repvalue": 1820000, "xcoord": 85.316569314032591, "ycoord": 27.619153641653806 }, "geometry": { "type": "Point", "coordinates": [ 85.316569314032591, 27.619153641653806 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 406, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 121, "repvalue": 484000, "xcoord": 85.310293194201108, "ycoord": 27.622954200790492 }, "geometry": { "type": "Point", "coordinates": [ 85.310293194201108, 27.622954200790492 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 407, "nhouse": 9, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 88, "repvalue": 1232000, "xcoord": 85.311931651881054, "ycoord": 27.621534171213113 }, "geometry": { "type": "Point", "coordinates": [ 85.311931651881054, 27.621534171213113 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 408, "nhouse": 7, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 108, "repvalue": 864000, "xcoord": 85.311311677879246, "ycoord": 27.621415856757075 }, "geometry": { "type": "Point", "coordinates": [ 85.311311677879246, 27.621415856757075 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 409, "nhouse": 7, "residents": 30, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 102, "repvalue": 1020000, "xcoord": 85.311563745425445, "ycoord": 27.621197389923779 }, "geometry": { "type": "Point", "coordinates": [ 85.311563745425445, 27.621197389923779 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 410, "nhouse": 14, "residents": 56, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 119, "repvalue": 1904000, "xcoord": 85.312089959379932, "ycoord": 27.619320742310041 }, "geometry": { "type": "Point", "coordinates": [ 85.312089959379932, 27.619320742310041 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 411, "nhouse": 5, "residents": 18, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 82, "repvalue": 656000, "xcoord": 85.315063762281824, "ycoord": 27.620021504789189 }, "geometry": { "type": "Point", "coordinates": [ 85.315063762281824, 27.620021504789189 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 412, "nhouse": 1, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+1s+ResCom", "fptarea": 103, "repvalue": 206000, "xcoord": 85.311422417314503, "ycoord": 27.622303346798635 }, "geometry": { "type": "Point", "coordinates": [ 85.311422417314503, 27.622303346798635 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 413, "nhouse": 4, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 80, "repvalue": 640000, "xcoord": 85.311170346844023, "ycoord": 27.622521813215936 }, "geometry": { "type": "Point", "coordinates": [ 85.311170346844023, 27.622521813215936 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 414, "nhouse": 14, "residents": 66, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 119, "repvalue": 1904000, "xcoord": 85.311693176947756, "ycoord": 27.620866662172055 }, "geometry": { "type": "Point", "coordinates": [ 85.311693176947756, 27.620866662172055 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 415, "nhouse": 1, "residents": 6, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 92, "repvalue": 184000, "xcoord": 85.311202639351137, "ycoord": 27.620417619546231 }, "geometry": { "type": "Point", "coordinates": [ 85.311202639351137, 27.620417619546231 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 416, "nhouse": 8, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 91, "repvalue": 1092000, "xcoord": 85.310671303569251, "ycoord": 27.622626503568252 }, "geometry": { "type": "Point", "coordinates": [ 85.310671303569251, 27.622626503568252 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 417, "nhouse": 6, "residents": 24, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 130, "repvalue": 780000, "xcoord": 85.315188095499792, "ycoord": 27.620023015055153 }, "geometry": { "type": "Point", "coordinates": [ 85.315188095499792, 27.620023015055153 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 418, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrCfl+LC+1s+ResCom", "fptarea": 81, "repvalue": 162000, "xcoord": 85.31104771087935, "ycoord": 27.622409552212613 }, "geometry": { "type": "Point", "coordinates": [ 85.31104771087935, 27.622409552212613 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 419, "nhouse": 3, "residents": 8, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 105, "repvalue": 420000, "xcoord": 85.31106130907348, "ycoord": 27.621523576054496 }, "geometry": { "type": "Point", "coordinates": [ 85.31106130907348, 27.621523576054496 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 420, "nhouse": 4, "residents": 17, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 97, "repvalue": 582000, "xcoord": 85.315300561036679, "ycoord": 27.620799756223064 }, "geometry": { "type": "Point", "coordinates": [ 85.315300561036679, 27.620799756223064 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 421, "nhouse": 7, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 81, "repvalue": 972000, "xcoord": 85.311551850742774, "ycoord": 27.621972619306355 }, "geometry": { "type": "Point", "coordinates": [ 85.311551850742774, 27.621972619306355 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 422, "nhouse": 18, "residents": 71, "specialfac": 0, "expstr": "RCi+HC+13s+ResCom", "fptarea": 86, "repvalue": 2236000, "xcoord": 85.311815811971812, "ycoord": 27.620978922580932 }, "geometry": { "type": "Point", "coordinates": [ 85.311815811971812, 27.620978922580932 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 423, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 126, "repvalue": 504000, "xcoord": 85.311814113029868, "ycoord": 27.621089669659089 }, "geometry": { "type": "Point", "coordinates": [ 85.311814113029868, 27.621089669659089 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 424, "nhouse": 5, "residents": 26, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 88, "repvalue": 704000, "xcoord": 85.316421262682894, "ycoord": 27.620702595704174 }, "geometry": { "type": "Point", "coordinates": [ 85.316421262682894, 27.620702595704174 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 425, "nhouse": 7, "residents": 19, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 80, "repvalue": 960000, "xcoord": 85.31155694852211, "ycoord": 27.621640378153582 }, "geometry": { "type": "Point", "coordinates": [ 85.31155694852211, 27.621640378153582 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 426, "nhouse": 5, "residents": 29, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 129, "repvalue": 774000, "xcoord": 85.312297862066842, "ycoord": 27.621981698702701 }, "geometry": { "type": "Point", "coordinates": [ 85.312297862066842, 27.621981698702701 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 427, "nhouse": 7, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 79, "repvalue": 948000, "xcoord": 85.312790109026466, "ycoord": 27.622319990755209 }, "geometry": { "type": "Point", "coordinates": [ 85.312790109026466, 27.622319990755209 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 428, "nhouse": 4, "residents": 16, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 122, "repvalue": 488000, "xcoord": 85.313672338920966, "ycoord": 27.621555345162285 }, "geometry": { "type": "Point", "coordinates": [ 85.313672338920966, 27.621555345162285 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 429, "nhouse": 25, "residents": 85, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 94, "repvalue": 3384000, "xcoord": 85.314930950325291, "ycoord": 27.620573730753154 }, "geometry": { "type": "Point", "coordinates": [ 85.314930950325291, 27.620573730753154 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 430, "nhouse": 12, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 117, "repvalue": 1638000, "xcoord": 85.311301480849863, "ycoord": 27.622080338983128 }, "geometry": { "type": "Point", "coordinates": [ 85.311301480849863, 27.622080338983128 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 431, "nhouse": 3, "residents": 16, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 108, "repvalue": 432000, "xcoord": 85.314316066822101, "ycoord": 27.620123188091842 }, "geometry": { "type": "Point", "coordinates": [ 85.314316066822101, 27.620123188091842 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 432, "nhouse": 12, "residents": 46, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 129, "repvalue": 1548000, "xcoord": 85.315189790970479, "ycoord": 27.619912267767148 }, "geometry": { "type": "Point", "coordinates": [ 85.315189790970479, 27.619912267767148 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 433, "nhouse": 6, "residents": 19, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 132, "repvalue": 792000, "xcoord": 85.311684681564685, "ycoord": 27.621420397518065 }, "geometry": { "type": "Point", "coordinates": [ 85.311684681564685, 27.621420397518065 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 434, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 70, "repvalue": 420000, "xcoord": 85.316446675851608, "ycoord": 27.619041385295514 }, "geometry": { "type": "Point", "coordinates": [ 85.316446675851608, 27.619041385295514 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 435, "nhouse": 5, "residents": 18, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 106, "repvalue": 636000, "xcoord": 85.311449606927638, "ycoord": 27.620531393992849 }, "geometry": { "type": "Point", "coordinates": [ 85.311449606927638, 27.620531393992849 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 436, "nhouse": 10, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 130, "repvalue": 1300000, "xcoord": 85.311044311233815, "ycoord": 27.62263104623349 }, "geometry": { "type": "Point", "coordinates": [ 85.311044311233815, 27.62263104623349 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 437, "nhouse": 3, "residents": 6, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 71, "repvalue": 426000, "xcoord": 85.319062728571637, "ycoord": 27.61874080786729 }, "geometry": { "type": "Point", "coordinates": [ 85.319062728571637, 27.61874080786729 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 438, "nhouse": 12, "residents": 43, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 112, "repvalue": 1568000, "xcoord": 85.312052589116064, "ycoord": 27.621757178525964 }, "geometry": { "type": "Point", "coordinates": [ 85.312052589116064, 27.621757178525964 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 439, "nhouse": 5, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 120, "repvalue": 720000, "xcoord": 85.315687123439147, "ycoord": 27.619918307689307 }, "geometry": { "type": "Point", "coordinates": [ 85.315687123439147, 27.619918307689307 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 440, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 93, "repvalue": 372000, "xcoord": 85.313304426809069, "ycoord": 27.621218568251937 }, "geometry": { "type": "Point", "coordinates": [ 85.313304426809069, 27.621218568251937 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 441, "nhouse": 22, "residents": 95, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 130, "repvalue": 2860000, "xcoord": 85.318298121437564, "ycoord": 27.61994998805374 }, "geometry": { "type": "Point", "coordinates": [ 85.318298121437564, 27.61994998805374 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 442, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 117, "repvalue": 468000, "xcoord": 85.314310977698469, "ycoord": 27.620455429790461 }, "geometry": { "type": "Point", "coordinates": [ 85.314310977698469, 27.620455429790461 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 443, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "BrCri+LC+2s+ResCom", "fptarea": 89, "repvalue": 356000, "xcoord": 85.312793505114101, "ycoord": 27.622098496524671 }, "geometry": { "type": "Point", "coordinates": [ 85.312793505114101, 27.622098496524671 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 444, "nhouse": 11, "residents": 48, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 117, "repvalue": 1404000, "xcoord": 85.31108510441959, "ycoord": 27.619973117490598 }, "geometry": { "type": "Point", "coordinates": [ 85.31108510441959, 27.619973117490598 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 445, "nhouse": 9, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 85, "repvalue": 1190000, "xcoord": 85.311315076811454, "ycoord": 27.621194362666799 }, "geometry": { "type": "Point", "coordinates": [ 85.311315076811454, 27.621194362666799 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 446, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "BrCri+MC+2s+Res", "fptarea": 119, "repvalue": 476000, "xcoord": 85.31383230834895, "ycoord": 27.619231165495602 }, "geometry": { "type": "Point", "coordinates": [ 85.31383230834895, 27.619231165495602 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 447, "nhouse": 4, "residents": 21, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 90, "repvalue": 540000, "xcoord": 85.31867112149942, "ycoord": 27.619954509811812 }, "geometry": { "type": "Point", "coordinates": [ 85.31867112149942, 27.619954509811812 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 448, "nhouse": 5, "residents": 19, "specialfac": 0, "expstr": "BrCri+LC+3s+ResCom", "fptarea": 119, "repvalue": 714000, "xcoord": 85.312583892277857, "ycoord": 27.619548287519898 }, "geometry": { "type": "Point", "coordinates": [ 85.312583892277857, 27.619548287519898 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 449, "nhouse": 11, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 108, "repvalue": 1512000, "xcoord": 85.311841294937565, "ycoord": 27.619317716184803 }, "geometry": { "type": "Point", "coordinates": [ 85.311841294937565, 27.619317716184803 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 450, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 96, "repvalue": 384000, "xcoord": 85.312580496136007, "ycoord": 27.619769781807875 }, "geometry": { "type": "Point", "coordinates": [ 85.312580496136007, 27.619769781807875 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 451, "nhouse": 7, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 69, "repvalue": 966000, "xcoord": 85.314826966590914, "ycoord": 27.619243253016677 }, "geometry": { "type": "Point", "coordinates": [ 85.314826966590914, 27.619243253016677 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 452, "nhouse": 4, "residents": 20, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 95, "repvalue": 570000, "xcoord": 85.316555761535753, "ycoord": 27.620039620632259 }, "geometry": { "type": "Point", "coordinates": [ 85.316555761535753, 27.620039620632259 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 453, "nhouse": 15, "residents": 54, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 124, "repvalue": 1984000, "xcoord": 85.311180544856086, "ycoord": 27.621857331077184 }, "geometry": { "type": "Point", "coordinates": [ 85.311180544856086, 27.621857331077184 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 454, "nhouse": 4, "residents": 13, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 100, "repvalue": 600000, "xcoord": 85.312585590334251, "ycoord": 27.619437540373109 }, "geometry": { "type": "Point", "coordinates": [ 85.312585590334251, 27.619437540373109 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 455, "nhouse": 28, "residents": 113, "specialfac": 0, "expstr": "RCi+HC+18s+ResCom", "fptarea": 104, "repvalue": 3744000, "xcoord": 85.312415403646284, "ycoord": 27.62242619992174 }, "geometry": { "type": "Point", "coordinates": [ 85.312415403646284, 27.62242619992174 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 456, "nhouse": 2, "residents": 5, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 87, "repvalue": 348000, "xcoord": 85.318049454777935, "ycoord": 27.619946972991649 }, "geometry": { "type": "Point", "coordinates": [ 85.318049454777935, 27.619946972991649 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 457, "nhouse": 5, "residents": 26, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 75, "repvalue": 600000, "xcoord": 85.316448369985523, "ycoord": 27.618930637920027 }, "geometry": { "type": "Point", "coordinates": [ 85.316448369985523, 27.618930637920027 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 458, "nhouse": 4, "residents": 17, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 128, "repvalue": 512000, "xcoord": 85.314682282687968, "ycoord": 27.620570709593764 }, "geometry": { "type": "Point", "coordinates": [ 85.314682282687968, 27.620570709593764 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 459, "nhouse": 14, "residents": 60, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 133, "repvalue": 1862000, "xcoord": 85.313208949850221, "ycoord": 27.619334354362415 }, "geometry": { "type": "Point", "coordinates": [ 85.313208949850221, 27.619334354362415 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 460, "nhouse": 6, "residents": 28, "specialfac": 0, "expstr": "BrCfl+LC+4s+ResCom", "fptarea": 100, "repvalue": 800000, "xcoord": 85.311289583874341, "ycoord": 27.622855568162002 }, "geometry": { "type": "Point", "coordinates": [ 85.311289583874341, 27.622855568162002 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 461, "nhouse": 3, "residents": 4, "specialfac": 0, "expstr": "BrCfl+MC+2s+ResCom", "fptarea": 98, "repvalue": 392000, "xcoord": 85.311177145557522, "ycoord": 27.622078825130895 }, "geometry": { "type": "Point", "coordinates": [ 85.311177145557522, 27.622078825130895 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 462, "nhouse": 13, "residents": 45, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 125, "repvalue": 1750000, "xcoord": 85.313421971861985, "ycoord": 27.621663068809507 }, "geometry": { "type": "Point", "coordinates": [ 85.313421971861985, 27.621663068809507 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 463, "nhouse": 9, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 98, "repvalue": 1176000, "xcoord": 85.316302011801042, "ycoord": 27.620368844482233 }, "geometry": { "type": "Point", "coordinates": [ 85.316302011801042, 27.620368844482233 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 464, "nhouse": 7, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 123, "repvalue": 984000, "xcoord": 85.315695598147926, "ycoord": 27.619364571079899 }, "geometry": { "type": "Point", "coordinates": [ 85.315695598147926, 27.619364571079899 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 465, "nhouse": 6, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 132, "repvalue": 792000, "xcoord": 85.315801287360671, "ycoord": 27.620584301303705 }, "geometry": { "type": "Point", "coordinates": [ 85.315801287360671, 27.620584301303705 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 466, "nhouse": 2, "residents": 9, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 69, "repvalue": 276000, "xcoord": 85.312170129503784, "ycoord": 27.622201679911761 }, "geometry": { "type": "Point", "coordinates": [ 85.312170129503784, 27.622201679911761 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 467, "nhouse": 6, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 132, "repvalue": 792000, "xcoord": 85.314326244807972, "ycoord": 27.61945870464427 }, "geometry": { "type": "Point", "coordinates": [ 85.314326244807972, 27.61945870464427 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 468, "nhouse": 12, "residents": 45, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 118, "repvalue": 1652000, "xcoord": 85.312188814273796, "ycoord": 27.620983461920723 }, "geometry": { "type": "Point", "coordinates": [ 85.312188814273796, 27.620983461920723 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 469, "nhouse": 10, "residents": 45, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 122, "repvalue": 1708000, "xcoord": 85.311059609333157, "ycoord": 27.621634323080794 }, "geometry": { "type": "Point", "coordinates": [ 85.311059609333157, 27.621634323080794 ] } }, +{ "type": "Feature", "properties": { "zoneid": 6, "bldid": 470, "nhouse": 5, "residents": 22, "specialfac": 0, "expstr": "BrCri+MC+3s+Res", "fptarea": 85, "repvalue": 510000, "xcoord": 85.312140654431857, "ycoord": 27.623257456280541 }, "geometry": { "type": "Point", "coordinates": [ 85.312140654431857, 27.623257456280541 ] } }, +{ "type": "Feature", "properties": { "zoneid": 6, "bldid": 471, "nhouse": 21, "residents": 92, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 86, "repvalue": 1892000, "xcoord": 85.312027010850883, "ycoord": 27.62414678389446 }, "geometry": { "type": "Point", "coordinates": [ 85.312027010850883, 27.62414678389446 ] } }, +{ "type": "Feature", "properties": { "zoneid": 6, "bldid": 472, "nhouse": 10, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 77, "repvalue": 924000, "xcoord": 85.312815950653345, "ycoord": 27.624868952030784 }, "geometry": { "type": "Point", "coordinates": [ 85.312815950653345, 27.624868952030784 ] } }, +{ "type": "Feature", "properties": { "zoneid": 6, "bldid": 473, "nhouse": 5, "residents": 21, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 79, "repvalue": 474000, "xcoord": 85.312109234162889, "ycoord": 27.625305708265746 }, "geometry": { "type": "Point", "coordinates": [ 85.312109234162889, 27.625305708265746 ] } }, +{ "type": "Feature", "properties": { "zoneid": 6, "bldid": 474, "nhouse": 7, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 51, "repvalue": 714000, "xcoord": 85.313110440393672, "ycoord": 27.625228818492936 }, "geometry": { "type": "Point", "coordinates": [ 85.313110440393672, 27.625228818492936 ] } }, +{ "type": "Feature", "properties": { "zoneid": 6, "bldid": 475, "nhouse": 18, "residents": 68, "specialfac": 0, "expstr": "RCi+HC+11s+ResCom", "fptarea": 75, "repvalue": 1650000, "xcoord": 85.312418747702637, "ycoord": 27.624685977362351 }, "geometry": { "type": "Point", "coordinates": [ 85.312418747702637, 27.624685977362351 ] } }, +{ "type": "Feature", "properties": { "zoneid": 6, "bldid": 476, "nhouse": 19, "residents": 63, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 55, "repvalue": 1760000, "xcoord": 85.311917463945349, "ycoord": 27.624768947974509 }, "geometry": { "type": "Point", "coordinates": [ 85.311917463945349, 27.624768947974509 ] } }, +{ "type": "Feature", "properties": { "zoneid": 6, "bldid": 477, "nhouse": 13, "residents": 56, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 57, "repvalue": 1254000, "xcoord": 85.312124261661722, "ycoord": 27.624326109569804 }, "geometry": { "type": "Point", "coordinates": [ 85.312124261661722, 27.624326109569804 ] } }, +{ "type": "Feature", "properties": { "zoneid": 6, "bldid": 478, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 52, "repvalue": 312000, "xcoord": 85.312713235639606, "ycoord": 27.625045844597487 }, "geometry": { "type": "Point", "coordinates": [ 85.312713235639606, 27.625045844597487 ] } }, +{ "type": "Feature", "properties": { "zoneid": 6, "bldid": 479, "nhouse": 21, "residents": 79, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 63, "repvalue": 1890000, "xcoord": 85.311718863294615, "ycoord": 27.624677459528787 }, "geometry": { "type": "Point", "coordinates": [ 85.311718863294615, 27.624677459528787 ] } }, +{ "type": "Feature", "properties": { "zoneid": 6, "bldid": 480, "nhouse": 7, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 48, "repvalue": 672000, "xcoord": 85.311340797058406, "ycoord": 27.623247720184107 }, "geometry": { "type": "Point", "coordinates": [ 85.311340797058406, 27.623247720184107 ] } }, +{ "type": "Feature", "properties": { "zoneid": 6, "bldid": 481, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 47, "repvalue": 188000, "xcoord": 85.312209218221838, "ycoord": 27.625306925059185 }, "geometry": { "type": "Point", "coordinates": [ 85.312209218221838, 27.625306925059185 ] } }, +{ "type": "Feature", "properties": { "zoneid": 6, "bldid": 482, "nhouse": 7, "residents": 32, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 84, "repvalue": 672000, "xcoord": 85.312744644321867, "ycoord": 27.622997591896766 }, "geometry": { "type": "Point", "coordinates": [ 85.312744644321867, 27.622997591896766 ] } }, +{ "type": "Feature", "properties": { "zoneid": 6, "bldid": 483, "nhouse": 4, "residents": 17, "specialfac": 0, "expstr": "BrCfl+LC+4s+ResCom", "fptarea": 49, "repvalue": 392000, "xcoord": 85.312416015921372, "ycoord": 27.624864086244862 }, "geometry": { "type": "Point", "coordinates": [ 85.312416015921372, 27.624864086244862 ] } }, +{ "type": "Feature", "properties": { "zoneid": 6, "bldid": 484, "nhouse": 6, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 59, "repvalue": 590000, "xcoord": 85.313407662294992, "ycoord": 27.625410575442807 }, "geometry": { "type": "Point", "coordinates": [ 85.313407662294992, 27.625410575442807 ] } }, +{ "type": "Feature", "properties": { "zoneid": 6, "bldid": 485, "nhouse": 15, "residents": 62, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 62, "repvalue": 1612000, "xcoord": 85.312807757099108, "ycoord": 27.625403278759318 }, "geometry": { "type": "Point", "coordinates": [ 85.312807757099108, 27.625403278759318 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2035, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 94, "repvalue": 564000, "xcoord": 85.319311944585664, "ycoord": 27.635477239789026 }, "geometry": { "type": "Point", "coordinates": [ 85.319311944585664, 27.635477239789026 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2036, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 96, "repvalue": 864000, "xcoord": 85.319093975083959, "ycoord": 27.635277758038232 }, "geometry": { "type": "Point", "coordinates": [ 85.319093975083959, 27.635277758038232 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2037, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 87, "repvalue": 783000, "xcoord": 85.319738865394527, "ycoord": 27.636466611642202 }, "geometry": { "type": "Point", "coordinates": [ 85.319738865394527, 27.636466611642202 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2038, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Ind", "fptarea": 91, "repvalue": 455000, "xcoord": 85.318845922176891, "ycoord": 27.637046306082389 }, "geometry": { "type": "Point", "coordinates": [ 85.318845922176891, 27.637046306082389 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2039, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 100, "repvalue": 900000, "xcoord": 85.318959420806848, "ycoord": 27.636850842744536 }, "geometry": { "type": "Point", "coordinates": [ 85.318959420806848, 27.636850842744536 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2040, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 89, "repvalue": 801000, "xcoord": 85.319644914241096, "ycoord": 27.635382855620968 }, "geometry": { "type": "Point", "coordinates": [ 85.319644914241096, 27.635382855620968 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2041, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Ind", "fptarea": 95, "repvalue": 570000, "xcoord": 85.319078935189978, "ycoord": 27.636261773247902 }, "geometry": { "type": "Point", "coordinates": [ 85.319078935189978, 27.636261773247902 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2042, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 90, "repvalue": 900000, "xcoord": 85.319752396138284, "ycoord": 27.635580997685754 }, "geometry": { "type": "Point", "coordinates": [ 85.319752396138284, 27.635580997685754 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2043, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+8s+Ind", "fptarea": 102, "repvalue": 816000, "xcoord": 85.319305929448532, "ycoord": 27.63587084592336 }, "geometry": { "type": "Point", "coordinates": [ 85.319305929448532, 27.63587084592336 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2044, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 104, "repvalue": 728000, "xcoord": 85.319422433306855, "ycoord": 27.635478579005625 }, "geometry": { "type": "Point", "coordinates": [ 85.319422433306855, 27.635478579005625 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2045, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 89, "repvalue": 890000, "xcoord": 85.318854947755739, "ycoord": 27.636455897111794 }, "geometry": { "type": "Point", "coordinates": [ 85.318854947755739, 27.636455897111794 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2046, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 91, "repvalue": 819000, "xcoord": 85.319867394803225, "ycoord": 27.635287131860732 }, "geometry": { "type": "Point", "coordinates": [ 85.319867394803225, 27.635287131860732 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2047, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 88, "repvalue": 528000, "xcoord": 85.319631382745783, "ycoord": 27.636268469553784 }, "geometry": { "type": "Point", "coordinates": [ 85.319631382745783, 27.636268469553784 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2048, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 99, "repvalue": 594000, "xcoord": 85.319404388714545, "ycoord": 27.636659397404831 }, "geometry": { "type": "Point", "coordinates": [ 85.319404388714545, 27.636659397404831 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2049, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 100, "repvalue": 700000, "xcoord": 85.319988405307654, "ycoord": 27.634599659580051 }, "geometry": { "type": "Point", "coordinates": [ 85.319988405307654, 27.634599659580051 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2050, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 100, "repvalue": 900000, "xcoord": 85.31909698297126, "ycoord": 27.63508095497863 }, "geometry": { "type": "Point", "coordinates": [ 85.31909698297126, 27.63508095497863 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2051, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Ind", "fptarea": 94, "repvalue": 564000, "xcoord": 85.319187920753322, "ycoord": 27.636361514203443 }, "geometry": { "type": "Point", "coordinates": [ 85.319187920753322, 27.636361514203443 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2052, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 99, "repvalue": 693000, "xcoord": 85.319737361940454, "ycoord": 27.636565013185557 }, "geometry": { "type": "Point", "coordinates": [ 85.319737361940454, 27.636565013185557 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2053, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 101, "repvalue": 1010000, "xcoord": 85.318956412447562, "ycoord": 27.637047645739997 }, "geometry": { "type": "Point", "coordinates": [ 85.318956412447562, 27.637047645739997 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2054, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 103, "repvalue": 515000, "xcoord": 85.318733927525273, "ycoord": 27.637143367821189 }, "geometry": { "type": "Point", "coordinates": [ 85.318733927525273, 27.637143367821189 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2055, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 102, "repvalue": 816000, "xcoord": 85.319871904549146, "ycoord": 27.634991927152118 }, "geometry": { "type": "Point", "coordinates": [ 85.319871904549146, 27.634991927152118 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2056, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 93, "repvalue": 465000, "xcoord": 85.319423936973337, "ycoord": 27.635380177462789 }, "geometry": { "type": "Point", "coordinates": [ 85.319423936973337, 27.635380177462789 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2057, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 96, "repvalue": 576000, "xcoord": 85.319429951563038, "ycoord": 27.63498657127672 }, "geometry": { "type": "Point", "coordinates": [ 85.319429951563038, 27.63498657127672 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2058, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Ind", "fptarea": 92, "repvalue": 920000, "xcoord": 85.319407396222815, "ycoord": 27.636462594353013 }, "geometry": { "type": "Point", "coordinates": [ 85.319407396222815, 27.636462594353013 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2059, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Ind", "fptarea": 85, "repvalue": 765000, "xcoord": 85.319077431158647, "ycoord": 27.636360174760775 }, "geometry": { "type": "Point", "coordinates": [ 85.319077431158647, 27.636360174760775 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2060, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 100, "repvalue": 800000, "xcoord": 85.319432958812158, "ycoord": 27.634789768174858 }, "geometry": { "type": "Point", "coordinates": [ 85.319432958812158, 27.634789768174858 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2061, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Ind", "fptarea": 93, "repvalue": 837000, "xcoord": 85.319874911008341, "ycoord": 27.634795124005688 }, "geometry": { "type": "Point", "coordinates": [ 85.319874911008341, 27.634795124005688 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2062, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 89, "repvalue": 534000, "xcoord": 85.319883930203005, "ycoord": 27.634204714531062 }, "geometry": { "type": "Point", "coordinates": [ 85.319883930203005, 27.634204714531062 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2063, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 102, "repvalue": 816000, "xcoord": 85.319529914877322, "ycoord": 27.635676721226663 }, "geometry": { "type": "Point", "coordinates": [ 85.319529914877322, 27.635676721226663 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2064, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 99, "repvalue": 693000, "xcoord": 85.31931946333556, "ycoord": 27.634985232087974 }, "geometry": { "type": "Point", "coordinates": [ 85.31931946333556, 27.634985232087974 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2065, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+8s+Ind", "fptarea": 97, "repvalue": 776000, "xcoord": 85.319541943327764, "ycoord": 27.634889508821736 }, "geometry": { "type": "Point", "coordinates": [ 85.319541943327764, 27.634889508821736 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2066, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 98, "repvalue": 588000, "xcoord": 85.319770436169748, "ycoord": 27.634400178891664 }, "geometry": { "type": "Point", "coordinates": [ 85.319770436169748, 27.634400178891664 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2067, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 93, "repvalue": 837000, "xcoord": 85.319083447238228, "ycoord": 27.635966568700464 }, "geometry": { "type": "Point", "coordinates": [ 85.319083447238228, 27.635966568700464 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2068, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 103, "repvalue": 618000, "xcoord": 85.319767429574043, "ycoord": 27.634596982038737 }, "geometry": { "type": "Point", "coordinates": [ 85.319767429574043, 27.634596982038737 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2069, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+5s+Ind", "fptarea": 92, "repvalue": 460000, "xcoord": 85.31987791743704, "ycoord": 27.634598320853375 }, "geometry": { "type": "Point", "coordinates": [ 85.31987791743704, 27.634598320853375 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2070, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 99, "repvalue": 594000, "xcoord": 85.3192908910721, "ycoord": 27.636854861156145 }, "geometry": { "type": "Point", "coordinates": [ 85.3192908910721, 27.636854861156145 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2071, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 85, "repvalue": 510000, "xcoord": 85.3194164185647, "ycoord": 27.635872185162249 }, "geometry": { "type": "Point", "coordinates": [ 85.3194164185647, 27.635872185162249 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2072, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 96, "repvalue": 960000, "xcoord": 85.31885645199219, "ycoord": 27.636357495611549 }, "geometry": { "type": "Point", "coordinates": [ 85.31885645199219, 27.636357495611549 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2073, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 89, "repvalue": 890000, "xcoord": 85.319080439213678, "ycoord": 27.636163371733566 }, "geometry": { "type": "Point", "coordinates": [ 85.319080439213678, 27.636163371733566 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2074, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Ind", "fptarea": 90, "repvalue": 540000, "xcoord": 85.319431455191406, "ycoord": 27.634888169726526 }, "geometry": { "type": "Point", "coordinates": [ 85.319431455191406, 27.634888169726526 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2075, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 96, "repvalue": 864000, "xcoord": 85.319749389359686, "ycoord": 27.635777800797491 }, "geometry": { "type": "Point", "coordinates": [ 85.319749389359686, 27.635777800797491 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2076, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 93, "repvalue": 837000, "xcoord": 85.319426944283435, "ycoord": 27.635183374372698 }, "geometry": { "type": "Point", "coordinates": [ 85.319426944283435, 27.635183374372698 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2077, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 89, "repvalue": 801000, "xcoord": 85.319413411147906, "ycoord": 27.636068988231731 }, "geometry": { "type": "Point", "coordinates": [ 85.319413411147906, 27.636068988231731 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2078, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 91, "repvalue": 728000, "xcoord": 85.319320967062666, "ycoord": 27.634886830543351 }, "geometry": { "type": "Point", "coordinates": [ 85.319320967062666, 27.634886830543351 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2079, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 88, "repvalue": 792000, "xcoord": 85.319081943229762, "ycoord": 27.636064970217749 }, "geometry": { "type": "Point", "coordinates": [ 85.319081943229762, 27.636064970217749 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2080, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 89, "repvalue": 712000, "xcoord": 85.318736936294798, "ycoord": 27.63694656485097 }, "geometry": { "type": "Point", "coordinates": [ 85.318736936294798, 27.63694656485097 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2081, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Ind", "fptarea": 97, "repvalue": 485000, "xcoord": 85.319299914189443, "ycoord": 27.636264452034144 }, "geometry": { "type": "Point", "coordinates": [ 85.319299914189443, 27.636264452034144 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2082, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 103, "repvalue": 927000, "xcoord": 85.318963933288572, "ycoord": 27.636555638240321 }, "geometry": { "type": "Point", "coordinates": [ 85.318963933288572, 27.636555638240321 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2083, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 103, "repvalue": 618000, "xcoord": 85.319638900319404, "ycoord": 27.635776461828058 }, "geometry": { "type": "Point", "coordinates": [ 85.319638900319404, 27.635776461828058 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2084, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 93, "repvalue": 558000, "xcoord": 85.319732851532493, "ycoord": 27.636860217806788 }, "geometry": { "type": "Point", "coordinates": [ 85.319732851532493, 27.636860217806788 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2085, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 94, "repvalue": 658000, "xcoord": 85.319292394944057, "ycoord": 27.636756459639486 }, "geometry": { "type": "Point", "coordinates": [ 85.319292394944057, 27.636756459639486 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2086, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 100, "repvalue": 900000, "xcoord": 85.319626872110177, "ycoord": 27.636563674171555 }, "geometry": { "type": "Point", "coordinates": [ 85.319626872110177, 27.636563674171555 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2087, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 104, "repvalue": 728000, "xcoord": 85.319204463592413, "ycoord": 27.635279097419602 }, "geometry": { "type": "Point", "coordinates": [ 85.319204463592413, 27.635279097419602 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2088, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Ind", "fptarea": 93, "repvalue": 837000, "xcoord": 85.318966941571603, "ycoord": 27.636358835230137 }, "geometry": { "type": "Point", "coordinates": [ 85.318966941571603, 27.636358835230137 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2089, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 105, "repvalue": 945000, "xcoord": 85.319880923835257, "ycoord": 27.63440151769516 }, "geometry": { "type": "Point", "coordinates": [ 85.319880923835257, 27.63440151769516 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2090, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 91, "repvalue": 546000, "xcoord": 85.319882427022947, "ycoord": 27.634303116113845 }, "geometry": { "type": "Point", "coordinates": [ 85.319882427022947, 27.634303116113845 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2091, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Ind", "fptarea": 99, "repvalue": 495000, "xcoord": 85.3192984103556, "ycoord": 27.636362853558154 }, "geometry": { "type": "Point", "coordinates": [ 85.3192984103556, 27.636362853558154 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2092, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 102, "repvalue": 714000, "xcoord": 85.318968445701685, "ycoord": 27.636260433722835 }, "geometry": { "type": "Point", "coordinates": [ 85.318968445701685, 27.636260433722835 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2093, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+8s+Ind", "fptarea": 86, "repvalue": 688000, "xcoord": 85.319640403811249, "ycoord": 27.635678060278494 }, "geometry": { "type": "Point", "coordinates": [ 85.319640403811249, 27.635678060278494 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2094, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 96, "repvalue": 864000, "xcoord": 85.319622361405962, "ycoord": 27.636858878776071 }, "geometry": { "type": "Point", "coordinates": [ 85.319622361405962, 27.636858878776071 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2095, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 104, "repvalue": 728000, "xcoord": 85.31920295973606, "ycoord": 27.635377498952771 }, "geometry": { "type": "Point", "coordinates": [ 85.31920295973606, 27.635377498952771 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2096, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 100, "repvalue": 600000, "xcoord": 85.319317959600838, "ycoord": 27.635083633631133 }, "geometry": { "type": "Point", "coordinates": [ 85.319317959600838, 27.635083633631133 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2097, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 89, "repvalue": 534000, "xcoord": 85.319417922261678, "ycoord": 27.635773783625304 }, "geometry": { "type": "Point", "coordinates": [ 85.319417922261678, 27.635773783625304 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2098, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+8s+Ind", "fptarea": 98, "repvalue": 784000, "xcoord": 85.31951938958305, "ycoord": 27.636365532003691 }, "geometry": { "type": "Point", "coordinates": [ 85.31951938958305, 27.636365532003691 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2099, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 88, "repvalue": 528000, "xcoord": 85.319650928040843, "ycoord": 27.634989249390337 }, "geometry": { "type": "Point", "coordinates": [ 85.319650928040843, 27.634989249390337 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2100, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 89, "repvalue": 534000, "xcoord": 85.319513374961502, "ycoord": 27.636759138129595 }, "geometry": { "type": "Point", "coordinates": [ 85.319513374961502, 27.636759138129595 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2101, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 95, "repvalue": 570000, "xcoord": 85.319879420639964, "ycoord": 27.634499919275001 }, "geometry": { "type": "Point", "coordinates": [ 85.319879420639964, 27.634499919275001 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2102, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 97, "repvalue": 873000, "xcoord": 85.319207471282226, "ycoord": 27.635082294348859 }, "geometry": { "type": "Point", "coordinates": [ 85.319207471282226, 27.635082294348859 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2103, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 96, "repvalue": 768000, "xcoord": 85.319414914860118, "ycoord": 27.635970586697727 }, "geometry": { "type": "Point", "coordinates": [ 85.319414914860118, 27.635970586697727 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2104, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 100, "repvalue": 500000, "xcoord": 85.319865891539337, "ycoord": 27.635385533427321 }, "geometry": { "type": "Point", "coordinates": [ 85.319865891539337, 27.635385533427321 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2105, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 95, "repvalue": 665000, "xcoord": 85.319532922035677, "ycoord": 27.635479918134266 }, "geometry": { "type": "Point", "coordinates": [ 85.319532922035677, 27.635479918134266 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2106, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 94, "repvalue": 846000, "xcoord": 85.319180400976066, "ycoord": 27.636853521773574 }, "geometry": { "type": "Point", "coordinates": [ 85.319180400976066, 27.636853521773574 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2107, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 103, "repvalue": 927000, "xcoord": 85.318851939259957, "ycoord": 27.636652700107881 }, "geometry": { "type": "Point", "coordinates": [ 85.318851939259957, 27.636652700107881 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2108, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 102, "repvalue": 612000, "xcoord": 85.319876414226485, "ycoord": 27.634696722430274 }, "geometry": { "type": "Point", "coordinates": [ 85.319876414226485, 27.634696722430274 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2109, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 91, "repvalue": 910000, "xcoord": 85.319629879208208, "ycoord": 27.636366871094513 }, "geometry": { "type": "Point", "coordinates": [ 85.319629879208208, 27.636366871094513 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2110, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 96, "repvalue": 864000, "xcoord": 85.319756906249026, "ycoord": 27.635285793007096 }, "geometry": { "type": "Point", "coordinates": [ 85.319756906249026, 27.635285793007096 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2111, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 101, "repvalue": 606000, "xcoord": 85.319072919018907, "ycoord": 27.636655379290552 }, "geometry": { "type": "Point", "coordinates": [ 85.319072919018907, 27.636655379290552 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2112, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 89, "repvalue": 712000, "xcoord": 85.319183408909836, "ycoord": 27.636656718749943 }, "geometry": { "type": "Point", "coordinates": [ 85.319183408909836, 27.636656718749943 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2113, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+5s+Ind", "fptarea": 87, "repvalue": 435000, "xcoord": 85.319643410772102, "ycoord": 27.635481257174952 }, "geometry": { "type": "Point", "coordinates": [ 85.319643410772102, 27.635481257174952 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2114, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+10s+Ind", "fptarea": 85, "repvalue": 850000, "xcoord": 85.319510367604977, "ycoord": 27.636955941183725 }, "geometry": { "type": "Point", "coordinates": [ 85.319510367604977, 27.636955941183725 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2115, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 87, "repvalue": 522000, "xcoord": 85.319743375711042, "ycoord": 27.636171407003307 }, "geometry": { "type": "Point", "coordinates": [ 85.319743375711042, 27.636171407003307 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2116, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 93, "repvalue": 744000, "xcoord": 85.319764422947856, "ycoord": 27.634793785179916 }, "geometry": { "type": "Point", "coordinates": [ 85.319764422947856, 27.634793785179916 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2117, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 95, "repvalue": 665000, "xcoord": 85.318735431913851, "ycoord": 27.637044966336816 }, "geometry": { "type": "Point", "coordinates": [ 85.318735431913851, 27.637044966336816 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2118, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 92, "repvalue": 920000, "xcoord": 85.319304425645186, "ycoord": 27.635969247453264 }, "geometry": { "type": "Point", "coordinates": [ 85.319304425645186, 27.635969247453264 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2119, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 103, "repvalue": 824000, "xcoord": 85.318974462145746, "ycoord": 27.635866827678935 }, "geometry": { "type": "Point", "coordinates": [ 85.318974462145746, 27.635866827678935 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2120, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 93, "repvalue": 651000, "xcoord": 85.318848930733679, "ycoord": 27.636849503098077 }, "geometry": { "type": "Point", "coordinates": [ 85.318848930733679, 27.636849503098077 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2121, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+8s+Ind", "fptarea": 105, "repvalue": 840000, "xcoord": 85.319540439798132, "ycoord": 27.634987910377504 }, "geometry": { "type": "Point", "coordinates": [ 85.319540439798132, 27.634987910377504 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2122, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 97, "repvalue": 776000, "xcoord": 85.319405892472489, "ycoord": 27.636560995879659 }, "geometry": { "type": "Point", "coordinates": [ 85.319405892472489, 27.636560995879659 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2123, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+5s+Ind", "fptarea": 102, "repvalue": 510000, "xcoord": 85.319523900469179, "ycoord": 27.636070327393803 }, "geometry": { "type": "Point", "coordinates": [ 85.319523900469179, 27.636070327393803 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2124, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+5s+Ind", "fptarea": 103, "repvalue": 515000, "xcoord": 85.319868898059482, "ycoord": 27.635188730292665 }, "geometry": { "type": "Point", "coordinates": [ 85.319868898059482, 27.635188730292665 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2125, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Ind", "fptarea": 102, "repvalue": 612000, "xcoord": 85.319731348047924, "ycoord": 27.636958619344259 }, "geometry": { "type": "Point", "coordinates": [ 85.319731348047924, 27.636958619344259 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2126, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 102, "repvalue": 612000, "xcoord": 85.319071414957079, "ycoord": 27.636753780797537 }, "geometry": { "type": "Point", "coordinates": [ 85.319071414957079, 27.636753780797537 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2127, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 101, "repvalue": 505000, "xcoord": 85.319198448121284, "ycoord": 27.635672703543431 }, "geometry": { "type": "Point", "coordinates": [ 85.319198448121284, 27.635672703543431 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2128, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Ind", "fptarea": 90, "repvalue": 540000, "xcoord": 85.319322470782168, "ycoord": 27.634788428997258 }, "geometry": { "type": "Point", "coordinates": [ 85.319322470782168, 27.634788428997258 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2129, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 96, "repvalue": 672000, "xcoord": 85.319656941718662, "ycoord": 27.634595643136148 }, "geometry": { "type": "Point", "coordinates": [ 85.319656941718662, 27.634595643136148 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2130, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 92, "repvalue": 552000, "xcoord": 85.319401381175766, "ycoord": 27.636856200450755 }, "geometry": { "type": "Point", "coordinates": [ 85.319401381175766, 27.636856200450755 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2131, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 87, "repvalue": 696000, "xcoord": 85.3197554028864, "ycoord": 27.635384194568125 }, "geometry": { "type": "Point", "coordinates": [ 85.3197554028864, 27.635384194568125 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2132, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 94, "repvalue": 564000, "xcoord": 85.319628375663001, "ycoord": 27.636465272633767 }, "geometry": { "type": "Point", "coordinates": [ 85.319628375663001, 27.636465272633767 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2133, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 87, "repvalue": 870000, "xcoord": 85.318965437433903, "ycoord": 27.636457236735964 }, "geometry": { "type": "Point", "coordinates": [ 85.318965437433903, 27.636457236735964 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2134, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 94, "repvalue": 846000, "xcoord": 85.319177393011799, "ycoord": 27.637050324791325 }, "geometry": { "type": "Point", "coordinates": [ 85.319177393011799, 27.637050324791325 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2135, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 92, "repvalue": 920000, "xcoord": 85.319295402665077, "ycoord": 27.636559656601769 }, "geometry": { "type": "Point", "coordinates": [ 85.319295402665077, 27.636559656601769 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2136, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Ind", "fptarea": 105, "repvalue": 945000, "xcoord": 85.319544950364161, "ycoord": 27.634692705705788 }, "geometry": { "type": "Point", "coordinates": [ 85.319544950364161, 27.634692705705788 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2137, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 98, "repvalue": 882000, "xcoord": 85.319759912951426, "ycoord": 27.635088989880643 }, "geometry": { "type": "Point", "coordinates": [ 85.319759912951426, 27.635088989880643 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2138, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 97, "repvalue": 679000, "xcoord": 85.319428447927052, "ycoord": 27.635084972825446 }, "geometry": { "type": "Point", "coordinates": [ 85.319428447927052, 27.635084972825446 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2139, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 93, "repvalue": 744000, "xcoord": 85.319655438310647, "ycoord": 27.634694044701906 }, "geometry": { "type": "Point", "coordinates": [ 85.319655438310647, 27.634694044701906 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2140, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 105, "repvalue": 630000, "xcoord": 85.319402884948957, "ycoord": 27.636757798928528 }, "geometry": { "type": "Point", "coordinates": [ 85.319402884948957, 27.636757798928528 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2141, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Ind", "fptarea": 102, "repvalue": 816000, "xcoord": 85.3197614162912, "ycoord": 27.634990588315208 }, "geometry": { "type": "Point", "coordinates": [ 85.3197614162912, 27.634990588315208 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2142, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 94, "repvalue": 846000, "xcoord": 85.319411907428062, "ycoord": 27.636167389764264 }, "geometry": { "type": "Point", "coordinates": [ 85.319411907428062, 27.636167389764264 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2143, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 91, "repvalue": 728000, "xcoord": 85.319189424685902, "ycoord": 27.636263112685004 }, "geometry": { "type": "Point", "coordinates": [ 85.319189424685902, 27.636263112685004 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2144, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 87, "repvalue": 783000, "xcoord": 85.319199952000503, "ycoord": 27.635574302014682 }, "geometry": { "type": "Point", "coordinates": [ 85.319199952000503, 27.635574302014682 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2145, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+5s+Ind", "fptarea": 95, "repvalue": 475000, "xcoord": 85.318969949824137, "ycoord": 27.636162032214081 }, "geometry": { "type": "Point", "coordinates": [ 85.318969949824137, 27.636162032214081 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2146, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 92, "repvalue": 828000, "xcoord": 85.319089463195809, "ycoord": 27.635572962616589 }, "geometry": { "type": "Point", "coordinates": [ 85.319089463195809, 27.635572962616589 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2147, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 94, "repvalue": 564000, "xcoord": 85.318957916631021, "ycoord": 27.636949244243009 }, "geometry": { "type": "Point", "coordinates": [ 85.318957916631021, 27.636949244243009 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2148, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 89, "repvalue": 712000, "xcoord": 85.319992914597336, "ycoord": 27.634304454823816 }, "geometry": { "type": "Point", "coordinates": [ 85.319992914597336, 27.634304454823816 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2149, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 100, "repvalue": 1000000, "xcoord": 85.319514878628311, "ycoord": 27.636660736600327 }, "geometry": { "type": "Point", "coordinates": [ 85.319514878628311, 27.636660736600327 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2150, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 94, "repvalue": 564000, "xcoord": 85.319192432528183, "ycoord": 27.636066309643702 }, "geometry": { "type": "Point", "coordinates": [ 85.319192432528183, 27.636066309643702 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2151, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+10s+Ind", "fptarea": 101, "repvalue": 1010000, "xcoord": 85.319517885939106, "ycoord": 27.636463933537371 }, "geometry": { "type": "Point", "coordinates": [ 85.319517885939106, 27.636463933537371 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2152, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 101, "repvalue": 909000, "xcoord": 85.319420929632741, "ycoord": 27.635576980546993 }, "geometry": { "type": "Point", "coordinates": [ 85.319420929632741, 27.635576980546993 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2153, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+10s+Ind", "fptarea": 102, "repvalue": 1020000, "xcoord": 85.318971453938971, "ycoord": 27.636063630703838 }, "geometry": { "type": "Point", "coordinates": [ 85.318971453938971, 27.636063630703838 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2154, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 105, "repvalue": 1050000, "xcoord": 85.319193936437898, "ycoord": 27.635967908120843 }, "geometry": { "type": "Point", "coordinates": [ 85.319193936437898, 27.635967908120843 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2155, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 102, "repvalue": 918000, "xcoord": 85.319190928610851, "ycoord": 27.63616471116509 }, "geometry": { "type": "Point", "coordinates": [ 85.319190928610851, 27.63616471116509 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2156, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+9s+Ind", "fptarea": 95, "repvalue": 855000, "xcoord": 85.319746382550605, "ycoord": 27.635974603903342 }, "geometry": { "type": "Point", "coordinates": [ 85.319746382550605, 27.635974603903342 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2157, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+7s+Ind", "fptarea": 101, "repvalue": 707000, "xcoord": 85.319765926264751, "ycoord": 27.634695383610065 }, "geometry": { "type": "Point", "coordinates": [ 85.319765926264751, 27.634695383610065 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2158, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 89, "repvalue": 623000, "xcoord": 85.319634389798097, "ycoord": 27.63607166646791 }, "geometry": { "type": "Point", "coordinates": [ 85.319634389798097, 27.63607166646791 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2159, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 94, "repvalue": 470000, "xcoord": 85.319196944234449, "ycoord": 27.63577110507071 }, "geometry": { "type": "Point", "coordinates": [ 85.319196944234449, 27.63577110507071 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2160, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 98, "repvalue": 882000, "xcoord": 85.319075927119698, "ycoord": 27.636458576272172 }, "geometry": { "type": "Point", "coordinates": [ 85.319075927119698, 27.636458576272172 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2161, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+9s+Ind", "fptarea": 102, "repvalue": 918000, "xcoord": 85.318972958046174, "ycoord": 27.635965229192124 }, "geometry": { "type": "Point", "coordinates": [ 85.318972958046174, 27.635965229192124 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2162, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 91, "repvalue": 728000, "xcoord": 85.319534425603408, "ycoord": 27.635381516585856 }, "geometry": { "type": "Point", "coordinates": [ 85.319534425603408, 27.635381516585856 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2163, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 96, "repvalue": 672000, "xcoord": 85.319511871287048, "ycoord": 27.636857539657399 }, "geometry": { "type": "Point", "coordinates": [ 85.319511871287048, 27.636857539657399 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2164, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Ind", "fptarea": 91, "repvalue": 455000, "xcoord": 85.31974187227982, "ycoord": 27.636269808551074 }, "geometry": { "type": "Point", "coordinates": [ 85.31974187227982, 27.636269808551074 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2165, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 91, "repvalue": 728000, "xcoord": 85.319293898808368, "ycoord": 27.63665805812137 }, "geometry": { "type": "Point", "coordinates": [ 85.319293898808368, 27.63665805812137 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2166, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Ind", "fptarea": 87, "repvalue": 435000, "xcoord": 85.319635893312821, "ycoord": 27.635973264922768 }, "geometry": { "type": "Point", "coordinates": [ 85.319635893312821, 27.635973264922768 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2167, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+7s+Ind", "fptarea": 97, "repvalue": 679000, "xcoord": 85.319084951239063, "ycoord": 27.635868167181705 }, "geometry": { "type": "Point", "coordinates": [ 85.319084951239063, 27.635868167181705 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2168, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 90, "repvalue": 630000, "xcoord": 85.318847426459115, "ycoord": 27.636947904590972 }, "geometry": { "type": "Point", "coordinates": [ 85.318847426459115, 27.636947904590972 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2169, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 105, "repvalue": 840000, "xcoord": 85.319408899965509, "ycoord": 27.636364192824903 }, "geometry": { "type": "Point", "coordinates": [ 85.319408899965509, 27.636364192824903 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2170, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 92, "repvalue": 828000, "xcoord": 85.318857956221009, "ycoord": 27.636259094109821 }, "geometry": { "type": "Point", "coordinates": [ 85.318857956221009, 27.636259094109821 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2171, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Ind", "fptarea": 95, "repvalue": 665000, "xcoord": 85.319526907688513, "ycoord": 27.63587352431318 }, "geometry": { "type": "Point", "coordinates": [ 85.319526907688513, 27.63587352431318 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2172, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 97, "repvalue": 873000, "xcoord": 85.31973435500943, "ycoord": 27.63676181626785 }, "geometry": { "type": "Point", "coordinates": [ 85.31973435500943, 27.63676181626785 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2173, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+8s+Ind", "fptarea": 94, "repvalue": 752000, "xcoord": 85.319632886275755, "ycoord": 27.636170068011584 }, "geometry": { "type": "Point", "coordinates": [ 85.319632886275755, 27.636170068011584 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2174, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 98, "repvalue": 784000, "xcoord": 85.318850435000627, "ycoord": 27.636751101603718 }, "geometry": { "type": "Point", "coordinates": [ 85.318850435000627, 27.636751101603718 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2175, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 92, "repvalue": 736000, "xcoord": 85.319205967441135, "ycoord": 27.635180695884973 }, "geometry": { "type": "Point", "coordinates": [ 85.319205967441135, 27.635180695884973 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2176, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 93, "repvalue": 744000, "xcoord": 85.319641907295491, "ycoord": 27.635579658727458 }, "geometry": { "type": "Point", "coordinates": [ 85.319641907295491, 27.635579658727458 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2177, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 86, "repvalue": 688000, "xcoord": 85.319747885958961, "ycoord": 27.635876202351156 }, "geometry": { "type": "Point", "coordinates": [ 85.319747885958961, 27.635876202351156 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2178, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 100, "repvalue": 600000, "xcoord": 85.319296906514154, "ycoord": 27.636461255080693 }, "geometry": { "type": "Point", "coordinates": [ 85.319296906514154, 27.636461255080693 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2179, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 91, "repvalue": 455000, "xcoord": 85.319744879134632, "ycoord": 27.636073005454058 }, "geometry": { "type": "Point", "coordinates": [ 85.319744879134632, 27.636073005454058 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2180, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 95, "repvalue": 950000, "xcoord": 85.319066902725865, "ycoord": 27.637048985309637 }, "geometry": { "type": "Point", "coordinates": [ 85.319066902725865, 27.637048985309637 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2181, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 102, "repvalue": 714000, "xcoord": 85.31920145587209, "ycoord": 27.635475900484462 }, "geometry": { "type": "Point", "coordinates": [ 85.31920145587209, 27.635475900484462 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2182, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 89, "repvalue": 712000, "xcoord": 85.319092471128869, "ycoord": 27.635376159565823 }, "geometry": { "type": "Point", "coordinates": [ 85.319092471128869, 27.635376159565823 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2183, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+10s+Ind", "fptarea": 101, "repvalue": 1010000, "xcoord": 85.319991411508397, "ycoord": 27.634402856410695 }, "geometry": { "type": "Point", "coordinates": [ 85.319991411508397, 27.634402856410695 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2184, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Ind", "fptarea": 95, "repvalue": 475000, "xcoord": 85.319313448350883, "ycoord": 27.635378838251754 }, "geometry": { "type": "Point", "coordinates": [ 85.319313448350883, 27.635378838251754 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2185, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 102, "repvalue": 714000, "xcoord": 85.319653934895001, "ycoord": 27.634792446266182 }, "geometry": { "type": "Point", "coordinates": [ 85.319653934895001, 27.634792446266182 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2186, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 97, "repvalue": 776000, "xcoord": 85.319302921834236, "ycoord": 27.636067648981697 }, "geometry": { "type": "Point", "coordinates": [ 85.319302921834236, 27.636067648981697 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2187, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 97, "repvalue": 679000, "xcoord": 85.319637396819914, "ycoord": 27.635874863376145 }, "geometry": { "type": "Point", "coordinates": [ 85.319637396819914, 27.635874863376145 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2188, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 92, "repvalue": 552000, "xcoord": 85.319535929163521, "ycoord": 27.635283115035978 }, "geometry": { "type": "Point", "coordinates": [ 85.319535929163521, 27.635283115035978 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2189, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 95, "repvalue": 570000, "xcoord": 85.319625368549723, "ycoord": 27.636662075707868 }, "geometry": { "type": "Point", "coordinates": [ 85.319625368549723, 27.636662075707868 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2190, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 99, "repvalue": 594000, "xcoord": 85.31918641681311, "ycoord": 27.636459915720415 }, "geometry": { "type": "Point", "coordinates": [ 85.31918641681311, 27.636459915720415 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2191, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 101, "repvalue": 909000, "xcoord": 85.318853443511657, "ycoord": 27.636554298610577 }, "geometry": { "type": "Point", "coordinates": [ 85.318853443511657, 27.636554298610577 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2192, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Ind", "fptarea": 90, "repvalue": 540000, "xcoord": 85.31931645585847, "ycoord": 27.635182035172814 }, "geometry": { "type": "Point", "coordinates": [ 85.31931645585847, 27.635182035172814 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2193, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 99, "repvalue": 693000, "xcoord": 85.319301418015641, "ycoord": 27.63616605050866 }, "geometry": { "type": "Point", "coordinates": [ 85.319301418015641, 27.63616605050866 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2194, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 88, "repvalue": 792000, "xcoord": 85.319528411286726, "ycoord": 27.635775122770657 }, "geometry": { "type": "Point", "coordinates": [ 85.319528411286726, 27.635775122770657 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2195, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 97, "repvalue": 776000, "xcoord": 85.319620857822642, "ycoord": 27.636957280307975 }, "geometry": { "type": "Point", "coordinates": [ 85.319620857822642, 27.636957280307975 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2196, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 101, "repvalue": 808000, "xcoord": 85.319995920752362, "ycoord": 27.634107651645632 }, "geometry": { "type": "Point", "coordinates": [ 85.319995920752362, 27.634107651645632 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2197, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 85, "repvalue": 850000, "xcoord": 85.319647921156218, "ycoord": 27.635186052508594 }, "geometry": { "type": "Point", "coordinates": [ 85.319647921156218, 27.635186052508594 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2198, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Ind", "fptarea": 91, "repvalue": 728000, "xcoord": 85.318977470322039, "ycoord": 27.635670024648146 }, "geometry": { "type": "Point", "coordinates": [ 85.318977470322039, 27.635670024648146 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2199, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 98, "repvalue": 882000, "xcoord": 85.3195223968481, "ycoord": 27.636168728931903 }, "geometry": { "type": "Point", "coordinates": [ 85.3195223968481, 27.636168728931903 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2200, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 103, "repvalue": 824000, "xcoord": 85.319195440339982, "ycoord": 27.635869506596514 }, "geometry": { "type": "Point", "coordinates": [ 85.319195440339982, 27.635869506596514 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2201, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 89, "repvalue": 712000, "xcoord": 85.31965844511906, "ycoord": 27.634497241568919 }, "geometry": { "type": "Point", "coordinates": [ 85.31965844511906, 27.634497241568919 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2202, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 90, "repvalue": 540000, "xcoord": 85.319208975115714, "ycoord": 27.634983892811281 }, "geometry": { "type": "Point", "coordinates": [ 85.319208975115714, 27.634983892811281 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2203, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Ind", "fptarea": 101, "repvalue": 505000, "xcoord": 85.319287883305336, "ycoord": 27.637051664185037 }, "geometry": { "type": "Point", "coordinates": [ 85.319287883305336, 27.637051664185037 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2204, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Ind", "fptarea": 99, "repvalue": 495000, "xcoord": 85.319307433244248, "ycoord": 27.635772444391986 }, "geometry": { "type": "Point", "coordinates": [ 85.319307433244248, 27.635772444391986 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2205, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Ind", "fptarea": 87, "repvalue": 435000, "xcoord": 85.319419425951025, "ycoord": 27.63567538208688 }, "geometry": { "type": "Point", "coordinates": [ 85.319419425951025, 27.63567538208688 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2206, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 94, "repvalue": 752000, "xcoord": 85.319314952108499, "ycoord": 27.635280436713021 }, "geometry": { "type": "Point", "coordinates": [ 85.319314952108499, 27.635280436713021 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2207, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+9s+Ind", "fptarea": 85, "repvalue": 765000, "xcoord": 85.319090967166147, "ycoord": 27.635474561091939 }, "geometry": { "type": "Point", "coordinates": [ 85.319090967166147, 27.635474561091939 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2208, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 89, "repvalue": 712000, "xcoord": 85.319994417678657, "ycoord": 27.634206053235463 }, "geometry": { "type": "Point", "coordinates": [ 85.319994417678657, 27.634206053235463 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2209, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 88, "repvalue": 704000, "xcoord": 85.318978974398746, "ycoord": 27.635571623130541 }, "geometry": { "type": "Point", "coordinates": [ 85.318978974398746, 27.635571623130541 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2210, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 101, "repvalue": 606000, "xcoord": 85.318954908256501, "ycoord": 27.637146047235518 }, "geometry": { "type": "Point", "coordinates": [ 85.318954908256501, 27.637146047235518 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2211, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 98, "repvalue": 588000, "xcoord": 85.318962429135638, "ycoord": 27.636654039743199 }, "geometry": { "type": "Point", "coordinates": [ 85.318962429135638, 27.636654039743199 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2212, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+10s+Ind", "fptarea": 100, "repvalue": 1000000, "xcoord": 85.319762919623329, "ycoord": 27.634892186748299 }, "geometry": { "type": "Point", "coordinates": [ 85.319762919623329, 27.634892186748299 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2213, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+8s+Ind", "fptarea": 93, "repvalue": 744000, "xcoord": 85.319740368840982, "ycoord": 27.636368210097373 }, "geometry": { "type": "Point", "coordinates": [ 85.319740368840982, 27.636368210097373 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2214, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 97, "repvalue": 776000, "xcoord": 85.319546453870913, "ycoord": 27.634594304145605 }, "geometry": { "type": "Point", "coordinates": [ 85.319546453870913, 27.634594304145605 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2215, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Ind", "fptarea": 100, "repvalue": 500000, "xcoord": 85.318975966237701, "ycoord": 27.63576842616428 }, "geometry": { "type": "Point", "coordinates": [ 85.318975966237701, 27.63576842616428 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2216, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 101, "repvalue": 909000, "xcoord": 85.319289387192526, "ycoord": 27.636953262671327 }, "geometry": { "type": "Point", "coordinates": [ 85.319289387192526, 27.636953262671327 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2217, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 102, "repvalue": 612000, "xcoord": 85.319525404082654, "ycoord": 27.635971925854221 }, "geometry": { "type": "Point", "coordinates": [ 85.319525404082654, 27.635971925854221 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2218, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 91, "repvalue": 819000, "xcoord": 85.319520893219391, "ycoord": 27.636267130468529 }, "geometry": { "type": "Point", "coordinates": [ 85.319520893219391, 27.636267130468529 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2219, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 99, "repvalue": 594000, "xcoord": 85.319768932875704, "ycoord": 27.634498580465934 }, "geometry": { "type": "Point", "coordinates": [ 85.319768932875704, 27.634498580465934 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2220, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 102, "repvalue": 1020000, "xcoord": 85.319649424602346, "ycoord": 27.635087650950204 }, "geometry": { "type": "Point", "coordinates": [ 85.319649424602346, 27.635087650950204 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2221, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 99, "repvalue": 792000, "xcoord": 85.319310440812814, "ycoord": 27.635575641324813 }, "geometry": { "type": "Point", "coordinates": [ 85.319310440812814, 27.635575641324813 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2222, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Ind", "fptarea": 103, "repvalue": 1030000, "xcoord": 85.319623864981651, "ycoord": 27.636760477242706 }, "geometry": { "type": "Point", "coordinates": [ 85.319623864981651, 27.636760477242706 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2223, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 99, "repvalue": 990000, "xcoord": 85.319758409604034, "ycoord": 27.63518739144461 }, "geometry": { "type": "Point", "coordinates": [ 85.319758409604034, 27.63518739144461 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2224, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 89, "repvalue": 712000, "xcoord": 85.319873407782552, "ycoord": 27.634893525579638 }, "geometry": { "type": "Point", "coordinates": [ 85.319873407782552, 27.634893525579638 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2225, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Ind", "fptarea": 87, "repvalue": 870000, "xcoord": 85.319087959217853, "ycoord": 27.635671364139771 }, "geometry": { "type": "Point", "coordinates": [ 85.319087959217853, 27.635671364139771 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2226, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 102, "repvalue": 714000, "xcoord": 85.319178896997727, "ycoord": 27.636951923283185 }, "geometry": { "type": "Point", "coordinates": [ 85.319178896997727, 27.636951923283185 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2227, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 94, "repvalue": 564000, "xcoord": 85.319989908411827, "ycoord": 27.63450125799611 }, "geometry": { "type": "Point", "coordinates": [ 85.319989908411827, 27.63450125799611 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2228, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 87, "repvalue": 870000, "xcoord": 85.319543446849764, "ycoord": 27.634791107264501 }, "geometry": { "type": "Point", "coordinates": [ 85.319543446849764, 27.634791107264501 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2229, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 98, "repvalue": 588000, "xcoord": 85.319425440632187, "ycoord": 27.635281775918479 }, "geometry": { "type": "Point", "coordinates": [ 85.319425440632187, 27.635281775918479 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2230, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 91, "repvalue": 455000, "xcoord": 85.319086455232267, "ycoord": 27.635769765661468 }, "geometry": { "type": "Point", "coordinates": [ 85.319086455232267, 27.635769765661468 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2231, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 86, "repvalue": 516000, "xcoord": 85.319410403700601, "ycoord": 27.636265791295319 }, "geometry": { "type": "Point", "coordinates": [ 85.319410403700601, 27.636265791295319 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2232, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+8s+Ind", "fptarea": 95, "repvalue": 760000, "xcoord": 85.318844417887064, "ycoord": 27.637144707572336 }, "geometry": { "type": "Point", "coordinates": [ 85.318844417887064, 27.637144707572336 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2233, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 101, "repvalue": 707000, "xcoord": 85.319537432716018, "ycoord": 27.635184713484627 }, "geometry": { "type": "Point", "coordinates": [ 85.319537432716018, 27.635184713484627 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2234, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+8s+Ind", "fptarea": 104, "repvalue": 832000, "xcoord": 85.319308937032346, "ycoord": 27.635674042859133 }, "geometry": { "type": "Point", "coordinates": [ 85.319308937032346, 27.635674042859133 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2235, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 89, "repvalue": 801000, "xcoord": 85.319538936260884, "ycoord": 27.635086311931804 }, "geometry": { "type": "Point", "coordinates": [ 85.319538936260884, 27.635086311931804 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2236, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 99, "repvalue": 594000, "xcoord": 85.319870401308123, "ycoord": 27.635090328723134 }, "geometry": { "type": "Point", "coordinates": [ 85.319870401308123, 27.635090328723134 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2237, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 94, "repvalue": 846000, "xcoord": 85.319434462425278, "ycoord": 27.63469136662172 }, "geometry": { "type": "Point", "coordinates": [ 85.319434462425278, 27.63469136662172 ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "bldid": 2238, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 102, "repvalue": 714000, "xcoord": 85.319531418460315, "ycoord": 27.635578319681198 }, "geometry": { "type": "Point", "coordinates": [ 85.319531418460315, 27.635578319681198 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 2023, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Com", "fptarea": 100, "repvalue": 1000000, "xcoord": 85.320966678316395, "ycoord": 27.622110844341979 }, "geometry": { "type": "Point", "coordinates": [ 85.320966678316395, 27.622110844341979 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 2024, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 115, "repvalue": 2070000, "xcoord": 85.321427573504323, "ycoord": 27.622219422990877 }, "geometry": { "type": "Point", "coordinates": [ 85.321427573504323, 27.622219422990877 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 486, "nhouse": 10, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 94, "repvalue": 1128000, "xcoord": 85.325948868603191, "ycoord": 27.626588449238994 }, "geometry": { "type": "Point", "coordinates": [ 85.325948868603191, 27.626588449238994 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 487, "nhouse": 13, "residents": 64, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 103, "repvalue": 1442000, "xcoord": 85.323402197089848, "ycoord": 27.624561363405256 }, "geometry": { "type": "Point", "coordinates": [ 85.323402197089848, 27.624561363405256 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 488, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 81, "repvalue": 324000, "xcoord": 85.325197958294311, "ycoord": 27.624383427566588 }, "geometry": { "type": "Point", "coordinates": [ 85.325197958294311, 27.624383427566588 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 489, "nhouse": 10, "residents": 48, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 94, "repvalue": 1128000, "xcoord": 85.324817758738945, "ycoord": 27.627273504195848 }, "geometry": { "type": "Point", "coordinates": [ 85.324817758738945, 27.627273504195848 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 490, "nhouse": 25, "residents": 100, "specialfac": 0, "expstr": "RCi+HC+19s+Res", "fptarea": 71, "repvalue": 2698000, "xcoord": 85.324958675329569, "ycoord": 27.625378699526014 }, "geometry": { "type": "Point", "coordinates": [ 85.324958675329569, 27.625378699526014 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 491, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 89, "repvalue": 356000, "xcoord": 85.324761933505272, "ycoord": 27.623579632289502 }, "geometry": { "type": "Point", "coordinates": [ 85.324761933505272, 27.623579632289502 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 492, "nhouse": 5, "residents": 22, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 102, "repvalue": 612000, "xcoord": 85.325302408534569, "ycoord": 27.624883769704613 }, "geometry": { "type": "Point", "coordinates": [ 85.325302408534569, 27.624883769704613 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 493, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 61, "repvalue": 366000, "xcoord": 85.325270508171954, "ycoord": 27.626979523843193 }, "geometry": { "type": "Point", "coordinates": [ 85.325270508171954, 27.626979523843193 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 494, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 61, "repvalue": 244000, "xcoord": 85.325052490124165, "ycoord": 27.626577626370374 }, "geometry": { "type": "Point", "coordinates": [ 85.325052490124165, 27.626577626370374 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 495, "nhouse": 8, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 88, "repvalue": 880000, "xcoord": 85.32573692336328, "ycoord": 27.62578736138304 }, "geometry": { "type": "Point", "coordinates": [ 85.32573692336328, 27.62578736138304 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 496, "nhouse": 8, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+8s+ResCom", "fptarea": 55, "repvalue": 880000, "xcoord": 85.324484654599473, "ycoord": 27.627069847950828 }, "geometry": { "type": "Point", "coordinates": [ 85.324484654599473, 27.627069847950828 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 497, "nhouse": 18, "residents": 69, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 103, "repvalue": 2060000, "xcoord": 85.325374960551699, "ycoord": 27.627479865871074 }, "geometry": { "type": "Point", "coordinates": [ 85.325374960551699, 27.627479865871074 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 498, "nhouse": 13, "residents": 50, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 89, "repvalue": 1424000, "xcoord": 85.323518803940502, "ycoord": 27.624263324580379 }, "geometry": { "type": "Point", "coordinates": [ 85.323518803940502, 27.624263324580379 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 499, "nhouse": 7, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 57, "repvalue": 798000, "xcoord": 85.325310003351333, "ycoord": 27.624384780525631 }, "geometry": { "type": "Point", "coordinates": [ 85.325310003351333, 27.624384780525631 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 500, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "BrCfl+LC+2s+ResCom", "fptarea": 55, "repvalue": 220000, "xcoord": 85.32440148481659, "ycoord": 27.625172336623891 }, "geometry": { "type": "Point", "coordinates": [ 85.32440148481659, 27.625172336623891 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 501, "nhouse": 11, "residents": 43, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 89, "repvalue": 1246000, "xcoord": 85.326275901309359, "ycoord": 27.627191293441225 }, "geometry": { "type": "Point", "coordinates": [ 85.326275901309359, 27.627191293441225 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 502, "nhouse": 27, "residents": 108, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 105, "repvalue": 2940000, "xcoord": 85.3261577798758, "ycoord": 27.627589132495661 }, "geometry": { "type": "Point", "coordinates": [ 85.3261577798758, 27.627589132495661 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 503, "nhouse": 7, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 55, "repvalue": 770000, "xcoord": 85.324976906684768, "ycoord": 27.624181125729294 }, "geometry": { "type": "Point", "coordinates": [ 85.324976906684768, 27.624181125729294 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 504, "nhouse": 6, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 93, "repvalue": 744000, "xcoord": 85.324649889299351, "ycoord": 27.623578278924004 }, "geometry": { "type": "Point", "coordinates": [ 85.324649889299351, 27.623578278924004 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 505, "nhouse": 5, "residents": 21, "specialfac": 0, "expstr": "BrCfl+MC+3s+Res", "fptarea": 100, "repvalue": 600000, "xcoord": 85.32572325522311, "ycoord": 27.626685541892833 }, "geometry": { "type": "Point", "coordinates": [ 85.32572325522311, 27.626685541892833 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 506, "nhouse": 8, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 84, "repvalue": 840000, "xcoord": 85.324166752869615, "ycoord": 27.625868213432458 }, "geometry": { "type": "Point", "coordinates": [ 85.324166752869615, 27.625868213432458 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 507, "nhouse": 5, "residents": 20, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 73, "repvalue": 584000, "xcoord": 85.32549916038468, "ycoord": 27.62668283634514 }, "geometry": { "type": "Point", "coordinates": [ 85.32549916038468, 27.62668283634514 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 508, "nhouse": 11, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 83, "repvalue": 1162000, "xcoord": 85.324863342516039, "ycoord": 27.624279570329382 }, "geometry": { "type": "Point", "coordinates": [ 85.324863342516039, 27.624279570329382 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 509, "nhouse": 10, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 74, "repvalue": 1036000, "xcoord": 85.325742997889236, "ycoord": 27.625388170006005 }, "geometry": { "type": "Point", "coordinates": [ 85.325742997889236, 27.625388170006005 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 510, "nhouse": 14, "residents": 51, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 94, "repvalue": 1504000, "xcoord": 85.324843590409259, "ycoord": 27.625576941838744 }, "geometry": { "type": "Point", "coordinates": [ 85.324843590409259, 27.625576941838744 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 511, "nhouse": 11, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 97, "repvalue": 1164000, "xcoord": 85.325602094746017, "ycoord": 27.627282976068386 }, "geometry": { "type": "Point", "coordinates": [ 85.325602094746017, 27.627282976068386 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 512, "nhouse": 8, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 70, "repvalue": 980000, "xcoord": 85.32504337407137, "ycoord": 27.627176413112323 }, "geometry": { "type": "Point", "coordinates": [ 85.32504337407137, 27.627176413112323 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 513, "nhouse": 6, "residents": 21, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 85, "repvalue": 680000, "xcoord": 85.323723128321632, "ycoord": 27.625563403876097 }, "geometry": { "type": "Point", "coordinates": [ 85.323723128321632, 27.625563403876097 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 514, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "BrCri+LC+2s+ResCom", "fptarea": 74, "repvalue": 296000, "xcoord": 85.325050970801556, "ycoord": 27.626677424164484 }, "geometry": { "type": "Point", "coordinates": [ 85.325050970801556, 27.626677424164484 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 515, "nhouse": 25, "residents": 105, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 83, "repvalue": 2656000, "xcoord": 85.325942794514603, "ycoord": 27.62698764058905 }, "geometry": { "type": "Point", "coordinates": [ 85.325942794514603, 27.62698764058905 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 516, "nhouse": 10, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 78, "repvalue": 1092000, "xcoord": 85.32548852775038, "ycoord": 27.627381421021411 }, "geometry": { "type": "Point", "coordinates": [ 85.32548852775038, 27.627381421021411 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 517, "nhouse": 12, "residents": 54, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 107, "repvalue": 1284000, "xcoord": 85.325832265406689, "ycoord": 27.626886490194639 }, "geometry": { "type": "Point", "coordinates": [ 85.325832265406689, 27.626886490194639 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 518, "nhouse": 12, "residents": 47, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 108, "repvalue": 1296000, "xcoord": 85.325294813522561, "ycoord": 27.62538275884576 }, "geometry": { "type": "Point", "coordinates": [ 85.325294813522561, 27.62538275884576 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 519, "nhouse": 9, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 58, "repvalue": 928000, "xcoord": 85.32595038710582, "ycoord": 27.626488651397686 }, "geometry": { "type": "Point", "coordinates": [ 85.32595038710582, 27.626488651397686 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 520, "nhouse": 10, "residents": 52, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 86, "repvalue": 1032000, "xcoord": 85.324421241795633, "ycoord": 27.623874965332892 }, "geometry": { "type": "Point", "coordinates": [ 85.324421241795633, 27.623874965332892 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 521, "nhouse": 25, "residents": 105, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 107, "repvalue": 2782000, "xcoord": 85.324938923425307, "ycoord": 27.626676070893218 }, "geometry": { "type": "Point", "coordinates": [ 85.324938923425307, 27.626676070893218 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 522, "nhouse": 11, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 87, "repvalue": 1218000, "xcoord": 85.32474673922593, "ycoord": 27.624577610445137 }, "geometry": { "type": "Point", "coordinates": [ 85.32474673922593, 27.624577610445137 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 523, "nhouse": 13, "residents": 47, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 55, "repvalue": 1430000, "xcoord": 85.323935058380641, "ycoord": 27.626364494166623 }, "geometry": { "type": "Point", "coordinates": [ 85.323935058380641, 27.626364494166623 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 524, "nhouse": 10, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 82, "repvalue": 1148000, "xcoord": 85.325390151005465, "ycoord": 27.626481887811643 }, "geometry": { "type": "Point", "coordinates": [ 85.325390151005465, 27.626481887811643 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 525, "nhouse": 24, "residents": 90, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 70, "repvalue": 2520000, "xcoord": 85.325629433064577, "ycoord": 27.625486615192411 }, "geometry": { "type": "Point", "coordinates": [ 85.325629433064577, 27.625486615192411 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 526, "nhouse": 7, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 68, "repvalue": 816000, "xcoord": 85.324375646774357, "ycoord": 27.626868898695449 }, "geometry": { "type": "Point", "coordinates": [ 85.324375646774357, 27.626868898695449 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 527, "nhouse": 10, "residents": 45, "specialfac": 0, "expstr": "RCi+HC+9s+Res", "fptarea": 63, "repvalue": 1134000, "xcoord": 85.32493436510606, "ycoord": 27.626975464249327 }, "geometry": { "type": "Point", "coordinates": [ 85.32493436510606, 27.626975464249327 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 528, "nhouse": 2, "residents": 13, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 66, "repvalue": 264000, "xcoord": 85.324717867942766, "ycoord": 27.626473768523915 }, "geometry": { "type": "Point", "coordinates": [ 85.324717867942766, 27.626473768523915 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 529, "nhouse": 11, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 87, "repvalue": 1218000, "xcoord": 85.325954942566867, "ycoord": 27.626189257864709 }, "geometry": { "type": "Point", "coordinates": [ 85.325954942566867, 27.626189257864709 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 530, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 80, "repvalue": 320000, "xcoord": 85.325399264902828, "ycoord": 27.625883100903344 }, "geometry": { "type": "Point", "coordinates": [ 85.325399264902828, 27.625883100903344 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 531, "nhouse": 5, "residents": 24, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 94, "repvalue": 564000, "xcoord": 85.324951078599554, "ycoord": 27.625877688543667 }, "geometry": { "type": "Point", "coordinates": [ 85.324951078599554, 27.625877688543667 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 532, "nhouse": 29, "residents": 108, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 104, "repvalue": 3120000, "xcoord": 85.324990579462963, "ycoord": 27.623282945238739 }, "geometry": { "type": "Point", "coordinates": [ 85.324990579462963, 27.623282945238739 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 533, "nhouse": 4, "residents": 13, "specialfac": 0, "expstr": "BrCfl+LC+3s+ResCom", "fptarea": 82, "repvalue": 492000, "xcoord": 85.324713309061281, "ycoord": 27.626773161854835 }, "geometry": { "type": "Point", "coordinates": [ 85.324713309061281, 27.626773161854835 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 534, "nhouse": 13, "residents": 59, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 106, "repvalue": 1484000, "xcoord": 85.32394113959117, "ycoord": 27.625965303191471 }, "geometry": { "type": "Point", "coordinates": [ 85.32394113959117, 27.625965303191471 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 535, "nhouse": 10, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 99, "repvalue": 1188000, "xcoord": 85.324399964994271, "ycoord": 27.625272134404916 }, "geometry": { "type": "Point", "coordinates": [ 85.324399964994271, 27.625272134404916 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 536, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 82, "repvalue": 2460000, "xcoord": 85.324384766341268, "ycoord": 27.626270112131902 }, "geometry": { "type": "Point", "coordinates": [ 85.324384766341268, 27.626270112131902 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 2031, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Com", "fptarea": 134, "repvalue": 1608000, "xcoord": 85.318233902096409, "ycoord": 27.63209751222659 }, "geometry": { "type": "Point", "coordinates": [ 85.318233902096409, 27.63209751222659 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 2032, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+5s+Com", "fptarea": 123, "repvalue": 1230000, "xcoord": 85.318603245296529, "ycoord": 27.6324355415044 }, "geometry": { "type": "Point", "coordinates": [ 85.318603245296529, 27.6324355415044 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 2033, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 121, "repvalue": 2178000, "xcoord": 85.319328349500978, "ycoord": 27.634000900331579 }, "geometry": { "type": "Point", "coordinates": [ 85.319328349500978, 27.634000900331579 ] } }, +{ "type": "Feature", "properties": { "zoneid": 17, "bldid": 537, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 56, "repvalue": 224000, "xcoord": 85.316872544505799, "ycoord": 27.621646119633827 }, "geometry": { "type": "Point", "coordinates": [ 85.316872544505799, 27.621646119633827 ] } }, +{ "type": "Feature", "properties": { "zoneid": 17, "bldid": 538, "nhouse": 19, "residents": 86, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 86, "repvalue": 1720000, "xcoord": 85.316578050941956, "ycoord": 27.621286260863936 }, "geometry": { "type": "Point", "coordinates": [ 85.316578050941956, 27.621286260863936 ] } }, +{ "type": "Feature", "properties": { "zoneid": 17, "bldid": 539, "nhouse": 20, "residents": 75, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 51, "repvalue": 1836000, "xcoord": 85.317880522256957, "ycoord": 27.621123920112115 }, "geometry": { "type": "Point", "coordinates": [ 85.317880522256957, 27.621123920112115 ] } }, +{ "type": "Feature", "properties": { "zoneid": 17, "bldid": 540, "nhouse": 22, "residents": 92, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 68, "repvalue": 2040000, "xcoord": 85.318081844473241, "ycoord": 27.621037290222674 }, "geometry": { "type": "Point", "coordinates": [ 85.318081844473241, 27.621037290222674 ] } }, +{ "type": "Feature", "properties": { "zoneid": 17, "bldid": 541, "nhouse": 11, "residents": 43, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 75, "repvalue": 1050000, "xcoord": 85.315770028135645, "ycoord": 27.621810878807707 }, "geometry": { "type": "Point", "coordinates": [ 85.315770028135645, 27.621810878807707 ] } }, +{ "type": "Feature", "properties": { "zoneid": 17, "bldid": 542, "nhouse": 9, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 69, "repvalue": 828000, "xcoord": 85.317380619561646, "ycoord": 27.621117856704075 }, "geometry": { "type": "Point", "coordinates": [ 85.317380619561646, 27.621117856704075 ] } }, +{ "type": "Feature", "properties": { "zoneid": 17, "bldid": 543, "nhouse": 4, "residents": 13, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 60, "repvalue": 360000, "xcoord": 85.315872735047364, "ycoord": 27.621633983543681 }, "geometry": { "type": "Point", "coordinates": [ 85.315872735047364, 27.621633983543681 ] } }, +{ "type": "Feature", "properties": { "zoneid": 17, "bldid": 544, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 47, "repvalue": 282000, "xcoord": 85.316871182397804, "ycoord": 27.621735174319234 }, "geometry": { "type": "Point", "coordinates": [ 85.316871182397804, 27.621735174319234 ] } }, +{ "type": "Feature", "properties": { "zoneid": 17, "bldid": 545, "nhouse": 2, "residents": 11, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 51, "repvalue": 204000, "xcoord": 85.315972715965088, "ycoord": 27.621635197476692 }, "geometry": { "type": "Point", "coordinates": [ 85.315972715965088, 27.621635197476692 ] } }, +{ "type": "Feature", "properties": { "zoneid": 17, "bldid": 546, "nhouse": 24, "residents": 106, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 69, "repvalue": 2208000, "xcoord": 85.318681727503744, "ycoord": 27.621044563045007 }, "geometry": { "type": "Point", "coordinates": [ 85.318681727503744, 27.621044563045007 ] } }, +{ "type": "Feature", "properties": { "zoneid": 17, "bldid": 547, "nhouse": 9, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+8s+ResCom", "fptarea": 51, "repvalue": 816000, "xcoord": 85.315574155484157, "ycoord": 27.62154128668546 }, "geometry": { "type": "Point", "coordinates": [ 85.315574155484157, 27.62154128668546 ] } }, +{ "type": "Feature", "properties": { "zoneid": 17, "bldid": 548, "nhouse": 7, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 56, "repvalue": 672000, "xcoord": 85.315471448199617, "ycoord": 27.621718181713028 }, "geometry": { "type": "Point", "coordinates": [ 85.315471448199617, 27.621718181713028 ] } }, +{ "type": "Feature", "properties": { "zoneid": 17, "bldid": 549, "nhouse": 9, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 58, "repvalue": 812000, "xcoord": 85.314567527781534, "ycoord": 27.621974414176211 }, "geometry": { "type": "Point", "coordinates": [ 85.314567527781534, 27.621974414176211 ] } }, +{ "type": "Feature", "properties": { "zoneid": 17, "bldid": 550, "nhouse": 10, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 58, "repvalue": 928000, "xcoord": 85.318370898969491, "ycoord": 27.621753365022975 }, "geometry": { "type": "Point", "coordinates": [ 85.318370898969491, 27.621753365022975 ] } }, +{ "type": "Feature", "properties": { "zoneid": 17, "bldid": 551, "nhouse": 8, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 53, "repvalue": 742000, "xcoord": 85.318783068553188, "ycoord": 27.620956720148243 }, "geometry": { "type": "Point", "coordinates": [ 85.318783068553188, 27.620956720148243 ] } }, +{ "type": "Feature", "properties": { "zoneid": 17, "bldid": 552, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 75, "repvalue": 300000, "xcoord": 85.317481961667582, "ycoord": 27.621030014808412 }, "geometry": { "type": "Point", "coordinates": [ 85.317481961667582, 27.621030014808412 ] } }, +{ "type": "Feature", "properties": { "zoneid": 17, "bldid": 553, "nhouse": 7, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 48, "repvalue": 672000, "xcoord": 85.317477876910772, "ycoord": 27.621297178968575 }, "geometry": { "type": "Point", "coordinates": [ 85.317477876910772, 27.621297178968575 ] } }, +{ "type": "Feature", "properties": { "zoneid": 17, "bldid": 554, "nhouse": 8, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 83, "repvalue": 830000, "xcoord": 85.316869820283557, "ycoord": 27.621824229003433 }, "geometry": { "type": "Point", "coordinates": [ 85.316869820283557, 27.621824229003433 ] } }, +{ "type": "Feature", "properties": { "zoneid": 17, "bldid": 555, "nhouse": 8, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 79, "repvalue": 790000, "xcoord": 85.3175860265777, "ycoord": 27.620764063372743 }, "geometry": { "type": "Point", "coordinates": [ 85.3175860265777, 27.620764063372743 ] } }, +{ "type": "Feature", "properties": { "zoneid": 17, "bldid": 556, "nhouse": 6, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 53, "repvalue": 636000, "xcoord": 85.316680756050673, "ycoord": 27.621109364908879 }, "geometry": { "type": "Point", "coordinates": [ 85.316680756050673, 27.621109364908879 ] } }, +{ "type": "Feature", "properties": { "zoneid": 17, "bldid": 557, "nhouse": 8, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 61, "repvalue": 732000, "xcoord": 85.318385868478956, "ycoord": 27.620773762663521 }, "geometry": { "type": "Point", "coordinates": [ 85.318385868478956, 27.620773762663521 ] } }, +{ "type": "Feature", "properties": { "zoneid": 17, "bldid": 558, "nhouse": 8, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 47, "repvalue": 752000, "xcoord": 85.317779180362237, "ycoord": 27.621211762308256 }, "geometry": { "type": "Point", "coordinates": [ 85.317779180362237, 27.621211762308256 ] } }, +{ "type": "Feature", "properties": { "zoneid": 17, "bldid": 559, "nhouse": 21, "residents": 82, "specialfac": 0, "expstr": "RCi+HC+16s+ResCom", "fptarea": 75, "repvalue": 2400000, "xcoord": 85.315271486271357, "ycoord": 27.621715753045855 }, "geometry": { "type": "Point", "coordinates": [ 85.315271486271357, 27.621715753045855 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 560, "nhouse": 33, "residents": 129, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 102, "repvalue": 3468000, "xcoord": 85.315139024379491, "ycoord": 27.623657410303405 }, "geometry": { "type": "Point", "coordinates": [ 85.315139024379491, 27.623657410303405 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 561, "nhouse": 28, "residents": 120, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 87, "repvalue": 2958000, "xcoord": 85.315160417277127, "ycoord": 27.622260247558113 }, "geometry": { "type": "Point", "coordinates": [ 85.315160417277127, 27.622260247558113 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 562, "nhouse": 6, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 66, "repvalue": 660000, "xcoord": 85.316231972974279, "ycoord": 27.625467369434251 }, "geometry": { "type": "Point", "coordinates": [ 85.316231972974279, 27.625467369434251 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 563, "nhouse": 4, "residents": 13, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 83, "repvalue": 498000, "xcoord": 85.315924858119942, "ycoord": 27.623567138386036 }, "geometry": { "type": "Point", "coordinates": [ 85.315924858119942, 27.623567138386036 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 564, "nhouse": 5, "residents": 20, "specialfac": 0, "expstr": "BrCfl+MC+3s+Res", "fptarea": 104, "repvalue": 624000, "xcoord": 85.315691604995294, "ycoord": 27.624163201416206 }, "geometry": { "type": "Point", "coordinates": [ 85.315691604995294, 27.624163201416206 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 565, "nhouse": 26, "residents": 96, "specialfac": 0, "expstr": "RCi+HC+19s+Res", "fptarea": 74, "repvalue": 2812000, "xcoord": 85.315031565275149, "ycoord": 27.623356657188225 }, "geometry": { "type": "Point", "coordinates": [ 85.315031565275149, 27.623356657188225 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 566, "nhouse": 4, "residents": 14, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 87, "repvalue": 522000, "xcoord": 85.314703077452847, "ycoord": 27.62285358670724 }, "geometry": { "type": "Point", "coordinates": [ 85.314703077452847, 27.62285358670724 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 567, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "BrCri+LC+2s+ResCom", "fptarea": 58, "repvalue": 232000, "xcoord": 85.314001766473538, "ycoord": 27.624741564716818 }, "geometry": { "type": "Point", "coordinates": [ 85.314001766473538, 27.624741564716818 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 568, "nhouse": 13, "residents": 58, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 89, "repvalue": 1424000, "xcoord": 85.314936332665312, "ycoord": 27.62225752534744 }, "geometry": { "type": "Point", "coordinates": [ 85.314936332665312, 27.62225752534744 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 569, "nhouse": 5, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 93, "repvalue": 558000, "xcoord": 85.315488905632435, "ycoord": 27.622763317010939 }, "geometry": { "type": "Point", "coordinates": [ 85.315488905632435, 27.622763317010939 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 570, "nhouse": 7, "residents": 34, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 105, "repvalue": 840000, "xcoord": 85.314568105224922, "ycoord": 27.624349184756639 }, "geometry": { "type": "Point", "coordinates": [ 85.314568105224922, 27.624349184756639 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 571, "nhouse": 6, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 54, "repvalue": 648000, "xcoord": 85.315272459594809, "ycoord": 27.622261608527815 }, "geometry": { "type": "Point", "coordinates": [ 85.315272459594809, 27.622261608527815 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 572, "nhouse": 12, "residents": 54, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 97, "repvalue": 1358000, "xcoord": 85.31302090497887, "ycoord": 27.622932952599076 }, "geometry": { "type": "Point", "coordinates": [ 85.31302090497887, 27.622932952599076 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 573, "nhouse": 34, "residents": 126, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 108, "repvalue": 3672000, "xcoord": 85.315789901018377, "ycoord": 27.625062738178766 }, "geometry": { "type": "Point", "coordinates": [ 85.315789901018377, 27.625062738178766 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 574, "nhouse": 7, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 72, "repvalue": 864000, "xcoord": 85.315358528081035, "ycoord": 27.623959524325937 }, "geometry": { "type": "Point", "coordinates": [ 85.315358528081035, 27.623959524325937 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 575, "nhouse": 3, "residents": 8, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 64, "repvalue": 384000, "xcoord": 85.315111516962475, "ycoord": 27.625453761968416 }, "geometry": { "type": "Point", "coordinates": [ 85.315111516962475, 27.625453761968416 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 576, "nhouse": 5, "residents": 22, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 69, "repvalue": 552000, "xcoord": 85.315152777133321, "ycoord": 27.622759234286928 }, "geometry": { "type": "Point", "coordinates": [ 85.315152777133321, 27.622759234286928 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 577, "nhouse": 10, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 74, "repvalue": 1036000, "xcoord": 85.315447653683535, "ycoord": 27.625457845157708 }, "geometry": { "type": "Point", "coordinates": [ 85.315447653683535, 27.625457845157708 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 578, "nhouse": 17, "residents": 82, "specialfac": 0, "expstr": "RCi+HC+17s+ResCom", "fptarea": 57, "repvalue": 1938000, "xcoord": 85.313691632982142, "ycoord": 27.623040924873933 }, "geometry": { "type": "Point", "coordinates": [ 85.313691632982142, 27.623040924873933 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 579, "nhouse": 6, "residents": 29, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 108, "repvalue": 648000, "xcoord": 85.315040734316, "ycoord": 27.622757873198076 }, "geometry": { "type": "Point", "coordinates": [ 85.315040734316, 27.622757873198076 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 580, "nhouse": 11, "residents": 47, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 87, "repvalue": 1218000, "xcoord": 85.314798307904326, "ycoord": 27.623952718536991 }, "geometry": { "type": "Point", "coordinates": [ 85.314798307904326, 27.623952718536991 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 581, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 72, "repvalue": 144000, "xcoord": 85.314704605911174, "ycoord": 27.622753789389002 }, "geometry": { "type": "Point", "coordinates": [ 85.314704605911174, 27.622753789389002 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 582, "nhouse": 6, "residents": 13, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 89, "repvalue": 712000, "xcoord": 85.315705353535051, "ycoord": 27.623265025209392 }, "geometry": { "type": "Point", "coordinates": [ 85.315705353535051, 27.623265025209392 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 583, "nhouse": 9, "residents": 45, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 103, "repvalue": 1030000, "xcoord": 85.315361583944679, "ycoord": 27.623759929652316 }, "geometry": { "type": "Point", "coordinates": [ 85.315361583944679, 27.623759929652316 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 584, "nhouse": 1, "residents": 2, "specialfac": 0, "expstr": "RCi+HC+1s+ResCom", "fptarea": 58, "repvalue": 116000, "xcoord": 85.314790665570087, "ycoord": 27.62445170505093 }, "geometry": { "type": "Point", "coordinates": [ 85.314790665570087, 27.62445170505093 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 585, "nhouse": 1, "residents": 1, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 61, "repvalue": 122000, "xcoord": 85.314354718428703, "ycoord": 27.623647880420592 }, "geometry": { "type": "Point", "coordinates": [ 85.314354718428703, 27.623647880420592 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 586, "nhouse": 11, "residents": 50, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 91, "repvalue": 1274000, "xcoord": 85.314575748534935, "ycoord": 27.623850198292601 }, "geometry": { "type": "Point", "coordinates": [ 85.314575748534935, 27.623850198292601 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 587, "nhouse": 9, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 82, "repvalue": 984000, "xcoord": 85.313697750485105, "ycoord": 27.622641735810927 }, "geometry": { "type": "Point", "coordinates": [ 85.313697750485105, 27.622641735810927 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 588, "nhouse": 9, "residents": 29, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 69, "repvalue": 966000, "xcoord": 85.315590254791871, "ycoord": 27.623463259255679 }, "geometry": { "type": "Point", "coordinates": [ 85.315590254791871, 27.623463259255679 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 589, "nhouse": 9, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 76, "repvalue": 1064000, "xcoord": 85.314580334426623, "ycoord": 27.623550806396008 }, "geometry": { "type": "Point", "coordinates": [ 85.314580334426623, 27.623550806396008 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 590, "nhouse": 13, "residents": 62, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 72, "repvalue": 1440000, "xcoord": 85.315017811183495, "ycoord": 27.624254833071234 }, "geometry": { "type": "Point", "coordinates": [ 85.315017811183495, 27.624254833071234 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 591, "nhouse": 5, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 97, "repvalue": 582000, "xcoord": 85.314478991685945, "ycoord": 27.622850863704247 }, "geometry": { "type": "Point", "coordinates": [ 85.314478991685945, 27.622850863704247 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 592, "nhouse": 11, "residents": 48, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 102, "repvalue": 1224000, "xcoord": 85.314581863041454, "ycoord": 27.623451009094108 }, "geometry": { "type": "Point", "coordinates": [ 85.314581863041454, 27.623451009094108 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 593, "nhouse": 7, "residents": 20, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 96, "repvalue": 768000, "xcoord": 85.313903485285593, "ycoord": 27.623842027311142 }, "geometry": { "type": "Point", "coordinates": [ 85.313903485285593, 27.623842027311142 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 594, "nhouse": 2, "residents": 18, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 59, "repvalue": 236000, "xcoord": 85.314786080075208, "ycoord": 27.624751096941118 }, "geometry": { "type": "Point", "coordinates": [ 85.314786080075208, 27.624751096941118 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 595, "nhouse": 3, "residents": 15, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 88, "repvalue": 352000, "xcoord": 85.314695435043333, "ycoord": 27.623352573275721 }, "geometry": { "type": "Point", "coordinates": [ 85.314695435043333, 27.623352573275721 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 596, "nhouse": 4, "residents": 18, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 82, "repvalue": 492000, "xcoord": 85.315918748454152, "ycoord": 27.623966327854198 }, "geometry": { "type": "Point", "coordinates": [ 85.315918748454152, 27.623966327854198 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 597, "nhouse": 35, "residents": 123, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 102, "repvalue": 3672000, "xcoord": 85.315679383536946, "ycoord": 27.624961580163738 }, "geometry": { "type": "Point", "coordinates": [ 85.315679383536946, 27.624961580163738 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 598, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "RCi+HC+1s+ResCom", "fptarea": 61, "repvalue": 122000, "xcoord": 85.313352444539163, "ycoord": 27.623236432245804 }, "geometry": { "type": "Point", "coordinates": [ 85.313352444539163, 27.623236432245804 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 599, "nhouse": 7, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 55, "repvalue": 770000, "xcoord": 85.314374592549768, "ycoord": 27.622350515546984 }, "geometry": { "type": "Point", "coordinates": [ 85.314374592549768, 27.622350515546984 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 600, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 69, "repvalue": 138000, "xcoord": 85.313466017352326, "ycoord": 27.623137997470788 }, "geometry": { "type": "Point", "coordinates": [ 85.313466017352326, 27.623137997470788 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 601, "nhouse": 4, "residents": 17, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 59, "repvalue": 472000, "xcoord": 85.315594837848707, "ycoord": 27.623163867185795 }, "geometry": { "type": "Point", "coordinates": [ 85.315594837848707, 27.623163867185795 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 602, "nhouse": 5, "residents": 19, "specialfac": 0, "expstr": "BrCri+LC+4s+ResCom", "fptarea": 78, "repvalue": 624000, "xcoord": 85.314931747993626, "ycoord": 27.62255691735481 }, "geometry": { "type": "Point", "coordinates": [ 85.314931747993626, 27.62255691735481 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 603, "nhouse": 16, "residents": 53, "specialfac": 0, "expstr": "RCi+HC+13s+ResCom", "fptarea": 69, "repvalue": 1794000, "xcoord": 85.312895090942376, "ycoord": 27.623829764735177 }, "geometry": { "type": "Point", "coordinates": [ 85.312895090942376, 27.623829764735177 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 604, "nhouse": 8, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 60, "repvalue": 840000, "xcoord": 85.315711463792951, "ycoord": 27.622865835744776 }, "geometry": { "type": "Point", "coordinates": [ 85.315711463792951, 27.622865835744776 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 605, "nhouse": 13, "residents": 51, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 91, "repvalue": 1456000, "xcoord": 85.313453780281975, "ycoord": 27.623936375419994 }, "geometry": { "type": "Point", "coordinates": [ 85.313453780281975, 27.623936375419994 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 606, "nhouse": 7, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 76, "repvalue": 760000, "xcoord": 85.316910353440932, "ycoord": 27.625076339988986 }, "geometry": { "type": "Point", "coordinates": [ 85.316910353440932, 27.625076339988986 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 607, "nhouse": 11, "residents": 43, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 77, "repvalue": 1232000, "xcoord": 85.31358723732906, "ycoord": 27.622540576288557 }, "geometry": { "type": "Point", "coordinates": [ 85.31358723732906, 27.622540576288557 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 608, "nhouse": 8, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 58, "repvalue": 928000, "xcoord": 85.313783794575528, "ycoord": 27.624339651427267 }, "geometry": { "type": "Point", "coordinates": [ 85.313783794575528, 27.624339651427267 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 609, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 62, "repvalue": 248000, "xcoord": 85.313240401340124, "ycoord": 27.623235069681446 }, "geometry": { "type": "Point", "coordinates": [ 85.313240401340124, 27.623235069681446 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 610, "nhouse": 22, "residents": 81, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 103, "repvalue": 2472000, "xcoord": 85.315487377884594, "ycoord": 27.622863114369398 }, "geometry": { "type": "Point", "coordinates": [ 85.315487377884594, 27.622863114369398 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 611, "nhouse": 4, "residents": 18, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 106, "repvalue": 424000, "xcoord": 85.316680155598903, "ycoord": 27.625472809888453 }, "geometry": { "type": "Point", "coordinates": [ 85.316680155598903, 27.625472809888453 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 612, "nhouse": 13, "residents": 58, "specialfac": 0, "expstr": "RCi+HC+10s+ResCom", "fptarea": 74, "repvalue": 1480000, "xcoord": 85.313470606123943, "ycoord": 27.622838605714861 }, "geometry": { "type": "Point", "coordinates": [ 85.313470606123943, 27.622838605714861 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 613, "nhouse": 20, "residents": 79, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 65, "repvalue": 2210000, "xcoord": 85.312784577428275, "ycoord": 27.623728604569248 }, "geometry": { "type": "Point", "coordinates": [ 85.312784577428275, 27.623728604569248 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 614, "nhouse": 20, "residents": 89, "specialfac": 0, "expstr": "RCi+HC+16s+ResCom", "fptarea": 65, "repvalue": 2080000, "xcoord": 85.316354708433678, "ycoord": 27.624770148096491 }, "geometry": { "type": "Point", "coordinates": [ 85.316354708433678, 27.624770148096491 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 615, "nhouse": 19, "residents": 67, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 59, "repvalue": 2124000, "xcoord": 85.313555117068304, "ycoord": 27.624636318510056 }, "geometry": { "type": "Point", "coordinates": [ 85.313555117068304, 27.624636318510056 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 616, "nhouse": 13, "residents": 62, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 95, "repvalue": 1330000, "xcoord": 85.316580325206843, "ycoord": 27.624673070856122 }, "geometry": { "type": "Point", "coordinates": [ 85.316580325206843, 27.624673070856122 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 617, "nhouse": 1, "residents": 2, "specialfac": 0, "expstr": "RCi+HC+1s+ResCom", "fptarea": 76, "repvalue": 152000, "xcoord": 85.314913408599637, "ycoord": 27.623754485247972 }, "geometry": { "type": "Point", "coordinates": [ 85.314913408599637, 27.623754485247972 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 618, "nhouse": 1, "residents": 5, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 58, "repvalue": 116000, "xcoord": 85.31602162842708, "ycoord": 27.624566472479838 }, "geometry": { "type": "Point", "coordinates": [ 85.31602162842708, 27.624566472479838 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 619, "nhouse": 6, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 70, "repvalue": 700000, "xcoord": 85.315036149830931, "ycoord": 27.623057265199964 }, "geometry": { "type": "Point", "coordinates": [ 85.315036149830931, 27.623057265199964 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 620, "nhouse": 1, "residents": 5, "specialfac": 0, "expstr": "RCi+HC+1s+ResCom", "fptarea": 98, "repvalue": 196000, "xcoord": 85.314472876962043, "ycoord": 27.623250052916084 }, "geometry": { "type": "Point", "coordinates": [ 85.314472876962043, 27.623250052916084 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 621, "nhouse": 11, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 77, "repvalue": 1078000, "xcoord": 85.313455309943294, "ycoord": 27.623836578181642 }, "geometry": { "type": "Point", "coordinates": [ 85.313455309943294, 27.623836578181642 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 622, "nhouse": 27, "residents": 105, "specialfac": 0, "expstr": "RCi+HC+15s+ResCom", "fptarea": 97, "repvalue": 2910000, "xcoord": 85.313920306575014, "ycoord": 27.622744257336361 }, "geometry": { "type": "Point", "coordinates": [ 85.313920306575014, 27.622744257336361 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 623, "nhouse": 4, "residents": 17, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 82, "repvalue": 492000, "xcoord": 85.315485850128908, "ycoord": 27.622962911726333 }, "geometry": { "type": "Point", "coordinates": [ 85.315485850128908, 27.622962911726333 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 624, "nhouse": 3, "residents": 15, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 60, "repvalue": 360000, "xcoord": 85.313109998606123, "ycoord": 27.624431273688906 }, "geometry": { "type": "Point", "coordinates": [ 85.313109998606123, 27.624431273688906 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 625, "nhouse": 15, "residents": 63, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 78, "repvalue": 1716000, "xcoord": 85.315470572139944, "ycoord": 27.623960885212441 }, "geometry": { "type": "Point", "coordinates": [ 85.315470572139944, 27.623960885212441 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 626, "nhouse": 6, "residents": 22, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 86, "repvalue": 688000, "xcoord": 85.313344795882344, "ycoord": 27.623735418439086 }, "geometry": { "type": "Point", "coordinates": [ 85.313344795882344, 27.623735418439086 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 627, "nhouse": 4, "residents": 17, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 72, "repvalue": 432000, "xcoord": 85.315921803302743, "ycoord": 27.623766733123148 }, "geometry": { "type": "Point", "coordinates": [ 85.315921803302743, 27.623766733123148 ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "bldid": 628, "nhouse": 5, "residents": 21, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 73, "repvalue": 1022000, "xcoord": 85.315900418702824, "ycoord": 27.625163896113335 }, "geometry": { "type": "Point", "coordinates": [ 85.315900418702824, 27.625163896113335 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 629, "nhouse": 13, "residents": 47, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 86, "repvalue": 1204000, "xcoord": 85.312566481960573, "ycoord": 27.636061053881534 }, "geometry": { "type": "Point", "coordinates": [ 85.312566481960573, 27.636061053881534 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 630, "nhouse": 5, "residents": 20, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 66, "repvalue": 528000, "xcoord": 85.31534337098347, "ycoord": 27.637549302066581 }, "geometry": { "type": "Point", "coordinates": [ 85.31534337098347, 27.637549302066581 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 631, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 52, "repvalue": 312000, "xcoord": 85.312558512938068, "ycoord": 27.636580414006211 }, "geometry": { "type": "Point", "coordinates": [ 85.312558512938068, 27.636580414006211 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 632, "nhouse": 18, "residents": 73, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 48, "repvalue": 1632000, "xcoord": 85.310149136038774, "ycoord": 27.633953786165954 }, "geometry": { "type": "Point", "coordinates": [ 85.310149136038774, 27.633953786165954 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 633, "nhouse": 5, "residents": 17, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 44, "repvalue": 528000, "xcoord": 85.311424086597611, "ycoord": 27.634488775098507 }, "geometry": { "type": "Point", "coordinates": [ 85.311424086597611, 27.634488775098507 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 634, "nhouse": 31, "residents": 123, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 84, "repvalue": 2856000, "xcoord": 85.314691323640332, "ycoord": 27.634424633090287 }, "geometry": { "type": "Point", "coordinates": [ 85.314691323640332, 27.634424633090287 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 635, "nhouse": 15, "residents": 59, "specialfac": 0, "expstr": "RCi+HC+9s+Res", "fptarea": 77, "repvalue": 1386000, "xcoord": 85.313355822374689, "ycoord": 27.637836812416673 }, "geometry": { "type": "Point", "coordinates": [ 85.313355822374689, 27.637836812416673 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 636, "nhouse": 6, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 50, "repvalue": 600000, "xcoord": 85.311147759019391, "ycoord": 27.63729047711983 }, "geometry": { "type": "Point", "coordinates": [ 85.311147759019391, 27.63729047711983 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 637, "nhouse": 4, "residents": 13, "specialfac": 0, "expstr": "BrCri+MC+3s+ResCom", "fptarea": 70, "repvalue": 420000, "xcoord": 85.309903107781068, "ycoord": 27.634781918558122 }, "geometry": { "type": "Point", "coordinates": [ 85.309903107781068, 27.634781918558122 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 638, "nhouse": 4, "residents": 13, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 66, "repvalue": 396000, "xcoord": 85.308535493821537, "ycoord": 27.63268741537814 }, "geometry": { "type": "Point", "coordinates": [ 85.308535493821537, 27.63268741537814 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 639, "nhouse": 16, "residents": 61, "specialfac": 0, "expstr": "RCi+HC+10s+ResCom", "fptarea": 73, "repvalue": 1460000, "xcoord": 85.310615653820932, "ycoord": 27.633959470794565 }, "geometry": { "type": "Point", "coordinates": [ 85.310615653820932, 27.633959470794565 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 640, "nhouse": 8, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 74, "repvalue": 740000, "xcoord": 85.31062363112899, "ycoord": 27.633440110994908 }, "geometry": { "type": "Point", "coordinates": [ 85.31062363112899, 27.633440110994908 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 641, "nhouse": 29, "residents": 128, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 73, "repvalue": 2628000, "xcoord": 85.31196259597202, "ycoord": 27.63740429139116 }, "geometry": { "type": "Point", "coordinates": [ 85.31196259597202, 27.63740429139116 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 642, "nhouse": 7, "residents": 29, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 49, "repvalue": 686000, "xcoord": 85.312262812272678, "ycoord": 27.6330445061914 }, "geometry": { "type": "Point", "coordinates": [ 85.312262812272678, 27.6330445061914 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 643, "nhouse": 15, "residents": 45, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 50, "repvalue": 1400000, "xcoord": 85.312099954796082, "ycoord": 27.636055375418408 }, "geometry": { "type": "Point", "coordinates": [ 85.312099954796082, 27.636055375418408 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 644, "nhouse": 6, "residents": 17, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 48, "repvalue": 576000, "xcoord": 85.308068981935264, "ycoord": 27.632681723993276 }, "geometry": { "type": "Point", "coordinates": [ 85.308068981935264, 27.632681723993276 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 645, "nhouse": 23, "residents": 95, "specialfac": 0, "expstr": "RCi+HC+17s+ResCom", "fptarea": 61, "repvalue": 2074000, "xcoord": 85.315936082971135, "ycoord": 27.636933153464728 }, "geometry": { "type": "Point", "coordinates": [ 85.315936082971135, 27.636933153464728 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 646, "nhouse": 13, "residents": 49, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 47, "repvalue": 1222000, "xcoord": 85.314002688663237, "ycoord": 27.63368902104002 }, "geometry": { "type": "Point", "coordinates": [ 85.314002688663237, 27.63368902104002 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 647, "nhouse": 7, "residents": 32, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 80, "repvalue": 640000, "xcoord": 85.311662130327548, "ycoord": 27.634179999496418 }, "geometry": { "type": "Point", "coordinates": [ 85.311662130327548, 27.634179999496418 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 648, "nhouse": 13, "residents": 56, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 75, "repvalue": 1200000, "xcoord": 85.314927766935199, "ycoord": 27.634219723643071 }, "geometry": { "type": "Point", "coordinates": [ 85.314927766935199, 27.634219723643071 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 649, "nhouse": 2, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 55, "repvalue": 220000, "xcoord": 85.314084288535852, "ycoord": 27.635975625945452 }, "geometry": { "type": "Point", "coordinates": [ 85.314084288535852, 27.635975625945452 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 650, "nhouse": 10, "residents": 47, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 69, "repvalue": 966000, "xcoord": 85.311909738126275, "ycoord": 27.633247991226604 }, "geometry": { "type": "Point", "coordinates": [ 85.311909738126275, 27.633247991226604 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 651, "nhouse": 7, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 69, "repvalue": 690000, "xcoord": 85.309428603318963, "ycoord": 27.635295590758446 }, "geometry": { "type": "Point", "coordinates": [ 85.309428603318963, 27.635295590758446 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 652, "nhouse": 21, "residents": 77, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 69, "repvalue": 1932000, "xcoord": 85.316631110698864, "ycoord": 27.637253268157462 }, "geometry": { "type": "Point", "coordinates": [ 85.316631110698864, 27.637253268157462 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 653, "nhouse": 5, "residents": 21, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 80, "repvalue": 480000, "xcoord": 85.308767152670995, "ycoord": 27.632794132357382 }, "geometry": { "type": "Point", "coordinates": [ 85.308767152670995, 27.632794132357382 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 654, "nhouse": 4, "residents": 14, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 76, "repvalue": 456000, "xcoord": 85.311155734942602, "ycoord": 27.636771117426775 }, "geometry": { "type": "Point", "coordinates": [ 85.311155734942602, 27.636771117426775 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 655, "nhouse": 16, "residents": 62, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 45, "repvalue": 1530000, "xcoord": 85.313753504625808, "ycoord": 27.634724905852217 }, "geometry": { "type": "Point", "coordinates": [ 85.313753504625808, 27.634724905852217 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 656, "nhouse": 7, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 47, "repvalue": 658000, "xcoord": 85.310583742454313, "ycoord": 27.636036909582899 }, "geometry": { "type": "Point", "coordinates": [ 85.310583742454313, 27.636036909582899 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 657, "nhouse": 11, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 71, "repvalue": 994000, "xcoord": 85.31152955394704, "ycoord": 27.635217299298358 }, "geometry": { "type": "Point", "coordinates": [ 85.31152955394704, 27.635217299298358 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 658, "nhouse": 2, "residents": 13, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 45, "repvalue": 180000, "xcoord": 85.310963947090031, "ycoord": 27.634067605210717 }, "geometry": { "type": "Point", "coordinates": [ 85.310963947090031, 27.634067605210717 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 659, "nhouse": 8, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 56, "repvalue": 784000, "xcoord": 85.313769429920484, "ycoord": 27.633686184643306 }, "geometry": { "type": "Point", "coordinates": [ 85.313769429920484, 27.633686184643306 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 660, "nhouse": 18, "residents": 78, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 67, "repvalue": 1608000, "xcoord": 85.310983088412641, "ycoord": 27.632821141417661 }, "geometry": { "type": "Point", "coordinates": [ 85.310983088412641, 27.632821141417661 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 661, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 86, "repvalue": 344000, "xcoord": 85.310331328045038, "ycoord": 27.637280530023016 }, "geometry": { "type": "Point", "coordinates": [ 85.310331328045038, 27.637280530023016 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 662, "nhouse": 11, "residents": 51, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 77, "repvalue": 1078000, "xcoord": 85.311903361205935, "ycoord": 27.633663479357232 }, "geometry": { "type": "Point", "coordinates": [ 85.311903361205935, 27.633663479357232 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 663, "nhouse": 5, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 49, "repvalue": 490000, "xcoord": 85.30988395262932, "ycoord": 27.636028381302904 }, "geometry": { "type": "Point", "coordinates": [ 85.30988395262932, 27.636028381302904 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 664, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 85, "repvalue": 340000, "xcoord": 85.313314062816929, "ycoord": 27.63295340590442 }, "geometry": { "type": "Point", "coordinates": [ 85.313314062816929, 27.63295340590442 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 665, "nhouse": 2, "residents": 5, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 62, "repvalue": 248000, "xcoord": 85.314573101662816, "ycoord": 27.634527087645758 }, "geometry": { "type": "Point", "coordinates": [ 85.314573101662816, 27.634527087645758 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 666, "nhouse": 13, "residents": 52, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 55, "repvalue": 1210000, "xcoord": 85.313197434262534, "ycoord": 27.632951987210667 }, "geometry": { "type": "Point", "coordinates": [ 85.313197434262534, 27.632951987210667 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 667, "nhouse": 16, "residents": 70, "specialfac": 0, "expstr": "RCi+HC+11s+ResCom", "fptarea": 66, "repvalue": 1452000, "xcoord": 85.312925937988538, "ycoord": 27.635442079383786 }, "geometry": { "type": "Point", "coordinates": [ 85.312925937988538, 27.635442079383786 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 668, "nhouse": 7, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 45, "repvalue": 630000, "xcoord": 85.311773976853431, "ycoord": 27.634493035576419 }, "geometry": { "type": "Point", "coordinates": [ 85.311773976853431, 27.634493035576419 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 669, "nhouse": 10, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 69, "repvalue": 966000, "xcoord": 85.316629520668954, "ycoord": 27.63735714038555 }, "geometry": { "type": "Point", "coordinates": [ 85.316629520668954, 27.63735714038555 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 670, "nhouse": 2, "residents": 14, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 57, "repvalue": 228000, "xcoord": 85.316539918468251, "ycoord": 27.635589896277747 }, "geometry": { "type": "Point", "coordinates": [ 85.316539918468251, 27.635589896277747 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 671, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 73, "repvalue": 292000, "xcoord": 85.309645899782353, "ycoord": 27.636337153370608 }, "geometry": { "type": "Point", "coordinates": [ 85.309645899782353, 27.636337153370608 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 672, "nhouse": 10, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 69, "repvalue": 966000, "xcoord": 85.313659170881223, "ycoord": 27.63326927779336 }, "geometry": { "type": "Point", "coordinates": [ 85.313659170881223, 27.63326927779336 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 673, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 81, "repvalue": 162000, "xcoord": 85.314335065021439, "ycoord": 27.634835868563389 }, "geometry": { "type": "Point", "coordinates": [ 85.314335065021439, 27.634835868563389 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 674, "nhouse": 6, "residents": 19, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 44, "repvalue": 616000, "xcoord": 85.315154662043554, "ycoord": 27.634638046911284 }, "geometry": { "type": "Point", "coordinates": [ 85.315154662043554, 27.634638046911284 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 675, "nhouse": 2, "residents": 13, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 49, "repvalue": 196000, "xcoord": 85.311657346759617, "ycoord": 27.63449161551512 }, "geometry": { "type": "Point", "coordinates": [ 85.311657346759617, 27.63449161551512 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 676, "nhouse": 8, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 59, "repvalue": 826000, "xcoord": 85.312953024589291, "ycoord": 27.633676254167725 }, "geometry": { "type": "Point", "coordinates": [ 85.312953024589291, 27.633676254167725 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 677, "nhouse": 24, "residents": 101, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 68, "repvalue": 2176000, "xcoord": 85.310507002220717, "ycoord": 27.633438690015964 }, "geometry": { "type": "Point", "coordinates": [ 85.310507002220717, 27.633438690015964 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 678, "nhouse": 15, "residents": 62, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 50, "repvalue": 1400000, "xcoord": 85.312251655002271, "ycoord": 27.633771610556675 }, "geometry": { "type": "Point", "coordinates": [ 85.312251655002271, 27.633771610556675 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 679, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 51, "repvalue": 306000, "xcoord": 85.316512887246475, "ycoord": 27.637355724272609 }, "geometry": { "type": "Point", "coordinates": [ 85.316512887246475, 27.637355724272609 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 680, "nhouse": 13, "residents": 53, "specialfac": 0, "expstr": "RCi+HC+9s+Res", "fptarea": 65, "repvalue": 1170000, "xcoord": 85.315924948140207, "ycoord": 27.637660258800086 }, "geometry": { "type": "Point", "coordinates": [ 85.315924948140207, 27.637660258800086 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 681, "nhouse": 5, "residents": 19, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 88, "repvalue": 528000, "xcoord": 85.314290484828589, "ycoord": 27.637744287901356 }, "geometry": { "type": "Point", "coordinates": [ 85.314290484828589, 27.637744287901356 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 682, "nhouse": 9, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 61, "repvalue": 854000, "xcoord": 85.309872778222797, "ycoord": 27.636755484461538 }, "geometry": { "type": "Point", "coordinates": [ 85.309872778222797, 27.636755484461538 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 683, "nhouse": 4, "residents": 18, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 46, "repvalue": 460000, "xcoord": 85.31609247700905, "ycoord": 27.634337764461918 }, "geometry": { "type": "Point", "coordinates": [ 85.31609247700905, 27.634337764461918 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 684, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 67, "repvalue": 268000, "xcoord": 85.310575764079033, "ycoord": 27.636556269177397 }, "geometry": { "type": "Point", "coordinates": [ 85.310575764079033, 27.636556269177397 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 685, "nhouse": 11, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 85, "repvalue": 1020000, "xcoord": 85.310284914612808, "ycoord": 27.632708744106694 }, "geometry": { "type": "Point", "coordinates": [ 85.310284914612808, 27.632708744106694 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 686, "nhouse": 8, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 62, "repvalue": 744000, "xcoord": 85.313178317921427, "ycoord": 27.634198452405691 }, "geometry": { "type": "Point", "coordinates": [ 85.313178317921427, 27.634198452405691 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 687, "nhouse": 15, "residents": 61, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 45, "repvalue": 1350000, "xcoord": 85.312579231953123, "ycoord": 27.635230077596709 }, "geometry": { "type": "Point", "coordinates": [ 85.312579231953123, 27.635230077596709 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 688, "nhouse": 32, "residents": 121, "specialfac": 0, "expstr": "RCi+HC+19s+Res", "fptarea": 77, "repvalue": 2926000, "xcoord": 85.310101254504787, "ycoord": 27.637069943353247 }, "geometry": { "type": "Point", "coordinates": [ 85.310101254504787, 27.637069943353247 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 689, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 49, "repvalue": 196000, "xcoord": 85.315824222312699, "ycoord": 27.636620120210321 }, "geometry": { "type": "Point", "coordinates": [ 85.315824222312699, 27.636620120210321 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 690, "nhouse": 5, "residents": 24, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 67, "repvalue": 536000, "xcoord": 85.312115896602634, "ycoord": 27.635016655295345 }, "geometry": { "type": "Point", "coordinates": [ 85.312115896602634, 27.635016655295345 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 691, "nhouse": 28, "residents": 102, "specialfac": 0, "expstr": "RCi+HC+16s+ResCom", "fptarea": 81, "repvalue": 2592000, "xcoord": 85.309425409913459, "ycoord": 27.635503334499287 }, "geometry": { "type": "Point", "coordinates": [ 85.309425409913459, 27.635503334499287 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 692, "nhouse": 1, "residents": 7, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 48, "repvalue": 96000, "xcoord": 85.31139697452123, "ycoord": 27.636254598713425 }, "geometry": { "type": "Point", "coordinates": [ 85.31139697452123, 27.636254598713425 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 693, "nhouse": 3, "residents": 15, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 75, "repvalue": 300000, "xcoord": 85.311272367422902, "ycoord": 27.636772538017347 }, "geometry": { "type": "Point", "coordinates": [ 85.311272367422902, 27.636772538017347 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 694, "nhouse": 24, "residents": 98, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 64, "repvalue": 2176000, "xcoord": 85.313523429283919, "ycoord": 27.634514324735161 }, "geometry": { "type": "Point", "coordinates": [ 85.313523429283919, 27.634514324735161 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 695, "nhouse": 8, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 52, "repvalue": 728000, "xcoord": 85.314688140290627, "ycoord": 27.634632377421866 }, "geometry": { "type": "Point", "coordinates": [ 85.314688140290627, 27.634632377421866 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 696, "nhouse": 10, "residents": 53, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 66, "repvalue": 924000, "xcoord": 85.308073775299064, "ycoord": 27.632370108471516 }, "geometry": { "type": "Point", "coordinates": [ 85.308073775299064, 27.632370108471516 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 697, "nhouse": 20, "residents": 79, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 58, "repvalue": 1856000, "xcoord": 85.307717499975269, "ycoord": 27.632781326244206 }, "geometry": { "type": "Point", "coordinates": [ 85.307717499975269, 27.632781326244206 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 698, "nhouse": 8, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 61, "repvalue": 732000, "xcoord": 85.31091449298404, "ycoord": 27.637287635582261 }, "geometry": { "type": "Point", "coordinates": [ 85.31091449298404, 27.637287635582261 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 699, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 81, "repvalue": 324000, "xcoord": 85.313253527706422, "ycoord": 27.636900545114791 }, "geometry": { "type": "Point", "coordinates": [ 85.313253527706422, 27.636900545114791 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 700, "nhouse": 11, "residents": 48, "specialfac": 0, "expstr": "RCi+HC+9s+Res", "fptarea": 57, "repvalue": 1026000, "xcoord": 85.312135025644494, "ycoord": 27.633770190931049 }, "geometry": { "type": "Point", "coordinates": [ 85.312135025644494, 27.633770190931049 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 701, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 55, "repvalue": 330000, "xcoord": 85.311743681230439, "ycoord": 27.636466603470371 }, "geometry": { "type": "Point", "coordinates": [ 85.311743681230439, 27.636466603470371 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 702, "nhouse": 8, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 80, "repvalue": 800000, "xcoord": 85.316421696811034, "ycoord": 27.635692352414413 }, "geometry": { "type": "Point", "coordinates": [ 85.316421696811034, 27.635692352414413 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 703, "nhouse": 12, "residents": 53, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 86, "repvalue": 1204000, "xcoord": 85.309228875036425, "ycoord": 27.633111437104791 }, "geometry": { "type": "Point", "coordinates": [ 85.309228875036425, 27.633111437104791 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 704, "nhouse": 26, "residents": 106, "specialfac": 0, "expstr": "RCi+HC+19s+Res", "fptarea": 62, "repvalue": 2356000, "xcoord": 85.316747744019807, "ycoord": 27.637254684166169 }, "geometry": { "type": "Point", "coordinates": [ 85.316747744019807, 27.637254684166169 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 705, "nhouse": 4, "residents": 20, "specialfac": 0, "expstr": "BrCri+LC+3s+ResCom", "fptarea": 63, "repvalue": 378000, "xcoord": 85.310797859979161, "ycoord": 27.637286214666442 }, "geometry": { "type": "Point", "coordinates": [ 85.310797859979161, 27.637286214666442 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 706, "nhouse": 8, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 74, "repvalue": 740000, "xcoord": 85.313165573012029, "ycoord": 27.635029429071096 }, "geometry": { "type": "Point", "coordinates": [ 85.313165573012029, 27.635029429071096 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 707, "nhouse": 3, "residents": 15, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 48, "repvalue": 288000, "xcoord": 85.309211310436424, "ycoord": 27.634254027839926 }, "geometry": { "type": "Point", "coordinates": [ 85.309211310436424, 27.634254027839926 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 708, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "BrCri+MC+2s+Res", "fptarea": 66, "repvalue": 264000, "xcoord": 85.310131580368775, "ycoord": 27.635096377306144 }, "geometry": { "type": "Point", "coordinates": [ 85.310131580368775, 27.635096377306144 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 709, "nhouse": 10, "residents": 47, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 67, "repvalue": 938000, "xcoord": 85.314296853836524, "ycoord": 27.637328799503273 }, "geometry": { "type": "Point", "coordinates": [ 85.314296853836524, 27.637328799503273 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 710, "nhouse": 8, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 52, "repvalue": 728000, "xcoord": 85.315403832777676, "ycoord": 27.633602158970973 }, "geometry": { "type": "Point", "coordinates": [ 85.315403832777676, 27.633602158970973 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 711, "nhouse": 7, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 50, "repvalue": 700000, "xcoord": 85.310467110795457, "ycoord": 27.636035488447927 }, "geometry": { "type": "Point", "coordinates": [ 85.310467110795457, 27.636035488447927 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 712, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 52, "repvalue": 312000, "xcoord": 85.313732800468685, "ycoord": 27.636075243178478 }, "geometry": { "type": "Point", "coordinates": [ 85.313732800468685, 27.636075243178478 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 713, "nhouse": 7, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 51, "repvalue": 714000, "xcoord": 85.315464777957331, "ycoord": 27.637239102679445 }, "geometry": { "type": "Point", "coordinates": [ 85.315464777957331, 27.637239102679445 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 714, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "BrCfl+MC+3s+Res", "fptarea": 60, "repvalue": 360000, "xcoord": 85.314120910199946, "ycoord": 27.633586566942778 }, "geometry": { "type": "Point", "coordinates": [ 85.314120910199946, 27.633586566942778 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 715, "nhouse": 12, "residents": 64, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 49, "repvalue": 1078000, "xcoord": 85.310235443482924, "ycoord": 27.635928773978851 }, "geometry": { "type": "Point", "coordinates": [ 85.310235443482924, 27.635928773978851 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 716, "nhouse": 15, "residents": 55, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 88, "repvalue": 1408000, "xcoord": 85.312897255372548, "ycoord": 27.637311776154437 }, "geometry": { "type": "Point", "coordinates": [ 85.312897255372548, 27.637311776154437 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 717, "nhouse": 30, "residents": 119, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 81, "repvalue": 2754000, "xcoord": 85.314349392950703, "ycoord": 27.633901019217259 }, "geometry": { "type": "Point", "coordinates": [ 85.314349392950703, 27.633901019217259 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 718, "nhouse": 6, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 45, "repvalue": 540000, "xcoord": 85.31281408731671, "ycoord": 27.635129044085012 }, "geometry": { "type": "Point", "coordinates": [ 85.31281408731671, 27.635129044085012 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 719, "nhouse": 5, "residents": 19, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 82, "repvalue": 492000, "xcoord": 85.314577876979101, "ycoord": 27.634215471159688 }, "geometry": { "type": "Point", "coordinates": [ 85.314577876979101, 27.634215471159688 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 720, "nhouse": 21, "residents": 88, "specialfac": 0, "expstr": "RCi+HC+13s+ResCom", "fptarea": 76, "repvalue": 1976000, "xcoord": 85.309679425649961, "ycoord": 27.634155843777794 }, "geometry": { "type": "Point", "coordinates": [ 85.309679425649961, 27.634155843777794 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 721, "nhouse": 9, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 88, "repvalue": 880000, "xcoord": 85.311764410147333, "ycoord": 27.635116267606932 }, "geometry": { "type": "Point", "coordinates": [ 85.311764410147333, 27.635116267606932 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 722, "nhouse": 4, "residents": 17, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 52, "repvalue": 416000, "xcoord": 85.311676480570597, "ycoord": 27.633245151351691 }, "geometry": { "type": "Point", "coordinates": [ 85.311676480570597, 27.633245151351691 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 723, "nhouse": 1, "residents": 7, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 58, "repvalue": 116000, "xcoord": 85.310280127442766, "ycoord": 27.633020359969699 }, "geometry": { "type": "Point", "coordinates": [ 85.310280127442766, 27.633020359969699 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 724, "nhouse": 5, "residents": 19, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 59, "repvalue": 472000, "xcoord": 85.3113234047578, "ycoord": 27.633448634810541 }, "geometry": { "type": "Point", "coordinates": [ 85.3113234047578, 27.633448634810541 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 725, "nhouse": 7, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 52, "repvalue": 624000, "xcoord": 85.310960756750092, "ycoord": 27.634275349153253 }, "geometry": { "type": "Point", "coordinates": [ 85.310960756750092, 27.634275349153253 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 726, "nhouse": 28, "residents": 117, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 85, "repvalue": 2550000, "xcoord": 85.316327327525897, "ycoord": 27.634236724756139 }, "geometry": { "type": "Point", "coordinates": [ 85.316327327525897, 27.634236724756139 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 727, "nhouse": 14, "residents": 60, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 50, "repvalue": 1300000, "xcoord": 85.30897325988812, "ycoord": 27.634562798915159 }, "geometry": { "type": "Point", "coordinates": [ 85.30897325988812, 27.634562798915159 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 728, "nhouse": 9, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 85, "repvalue": 850000, "xcoord": 85.310259382151145, "ycoord": 27.634370695205405 }, "geometry": { "type": "Point", "coordinates": [ 85.310259382151145, 27.634370695205405 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 729, "nhouse": 13, "residents": 55, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 78, "repvalue": 1248000, "xcoord": 85.313317248534418, "ycoord": 27.632745661669812 }, "geometry": { "type": "Point", "coordinates": [ 85.313317248534418, 27.632745661669812 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 730, "nhouse": 8, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 45, "repvalue": 720000, "xcoord": 85.312604730300862, "ycoord": 27.633568124711982 }, "geometry": { "type": "Point", "coordinates": [ 85.312604730300862, 27.633568124711982 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 731, "nhouse": 14, "residents": 52, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 80, "repvalue": 1280000, "xcoord": 85.314637202061988, "ycoord": 27.637956285834441 }, "geometry": { "type": "Point", "coordinates": [ 85.314637202061988, 27.637956285834441 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 732, "nhouse": 6, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 61, "repvalue": 610000, "xcoord": 85.309233665202456, "ycoord": 27.63279982141529 }, "geometry": { "type": "Point", "coordinates": [ 85.309233665202456, 27.63279982141529 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 733, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 51, "repvalue": 204000, "xcoord": 85.310927256119314, "ycoord": 27.636456660153502 }, "geometry": { "type": "Point", "coordinates": [ 85.310927256119314, 27.636456660153502 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 734, "nhouse": 23, "residents": 97, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 65, "repvalue": 2080000, "xcoord": 85.316536738452143, "ycoord": 27.635797640772342 }, "geometry": { "type": "Point", "coordinates": [ 85.316536738452143, 27.635797640772342 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 735, "nhouse": 6, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 51, "repvalue": 612000, "xcoord": 85.315479097746831, "ycoord": 27.636304253112719 }, "geometry": { "type": "Point", "coordinates": [ 85.315479097746831, 27.636304253112719 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 736, "nhouse": 5, "residents": 17, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 79, "repvalue": 474000, "xcoord": 85.311449601593111, "ycoord": 27.632826823027674 }, "geometry": { "type": "Point", "coordinates": [ 85.311449601593111, 27.632826823027674 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 737, "nhouse": 5, "residents": 19, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 83, "repvalue": 498000, "xcoord": 85.316314606381667, "ycoord": 27.635067702766264 }, "geometry": { "type": "Point", "coordinates": [ 85.316314606381667, 27.635067702766264 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 738, "nhouse": 17, "residents": 55, "specialfac": 0, "expstr": "RCi+HC+10s+ResCom", "fptarea": 75, "repvalue": 1500000, "xcoord": 85.310692396296574, "ycoord": 27.636557690245557 }, "geometry": { "type": "Point", "coordinates": [ 85.310692396296574, 27.636557690245557 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 739, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 53, "repvalue": 318000, "xcoord": 85.313435469613253, "ycoord": 27.632643208127117 }, "geometry": { "type": "Point", "coordinates": [ 85.313435469613253, 27.632643208127117 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 740, "nhouse": 11, "residents": 43, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 71, "repvalue": 994000, "xcoord": 85.309794458994133, "ycoord": 27.634261137394478 }, "geometry": { "type": "Point", "coordinates": [ 85.309794458994133, 27.634261137394478 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 741, "nhouse": 6, "residents": 22, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 47, "repvalue": 564000, "xcoord": 85.314052439946749, "ycoord": 27.638053067850876 }, "geometry": { "type": "Point", "coordinates": [ 85.314052439946749, 27.638053067850876 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 742, "nhouse": 19, "residents": 78, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 82, "repvalue": 1804000, "xcoord": 85.316087705958111, "ycoord": 27.634649381185781 }, "geometry": { "type": "Point", "coordinates": [ 85.316087705958111, 27.634649381185781 ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "bldid": 2686, "nhouse": 0, "residents": 0, "specialfac": 1, "expstr": "RCi+HC+9s+Edu", "fptarea": 117, "repvalue": 3159000, "xcoord": 85.314007465425362, "ycoord": 27.633377404607984 }, "geometry": { "type": "Point", "coordinates": [ 85.314007465425362, 27.633377404607984 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 743, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 60, "repvalue": 240000, "xcoord": 85.318989242564953, "ycoord": 27.638909106170196 }, "geometry": { "type": "Point", "coordinates": [ 85.318989242564953, 27.638909106170196 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 744, "nhouse": 7, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 56, "repvalue": 784000, "xcoord": 85.318665754717145, "ycoord": 27.63890518364035 }, "geometry": { "type": "Point", "coordinates": [ 85.318665754717145, 27.63890518364035 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 745, "nhouse": 9, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 61, "repvalue": 976000, "xcoord": 85.318554988634631, "ycoord": 27.639095935924004 }, "geometry": { "type": "Point", "coordinates": [ 85.318554988634631, 27.639095935924004 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 746, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 59, "repvalue": 354000, "xcoord": 85.31857260908545, "ycoord": 27.63794357607285 }, "geometry": { "type": "Point", "coordinates": [ 85.31857260908545, 27.63794357607285 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 747, "nhouse": 4, "residents": 21, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 57, "repvalue": 456000, "xcoord": 85.318651071294994, "ycoord": 27.639865483443199 }, "geometry": { "type": "Point", "coordinates": [ 85.318651071294994, 27.639865483443199 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 748, "nhouse": 14, "residents": 56, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 95, "repvalue": 1520000, "xcoord": 85.319411753781438, "ycoord": 27.639490515158496 }, "geometry": { "type": "Point", "coordinates": [ 85.319411753781438, 27.639490515158496 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 749, "nhouse": 2, "residents": 10, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 67, "repvalue": 268000, "xcoord": 85.319066243737979, "ycoord": 27.64092704338249 }, "geometry": { "type": "Point", "coordinates": [ 85.319066243737979, 27.64092704338249 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 750, "nhouse": 19, "residents": 77, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 87, "repvalue": 2088000, "xcoord": 85.318860858914434, "ycoord": 27.640252218577384 }, "geometry": { "type": "Point", "coordinates": [ 85.318860858914434, 27.640252218577384 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 751, "nhouse": 1, "residents": 2, "specialfac": 0, "expstr": "BrCri+MC+1s+Res", "fptarea": 86, "repvalue": 172000, "xcoord": 85.319100007706879, "ycoord": 27.638718353492717 }, "geometry": { "type": "Point", "coordinates": [ 85.319100007706879, 27.638718353492717 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 752, "nhouse": 31, "residents": 120, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 94, "repvalue": 3384000, "xcoord": 85.31943523590887, "ycoord": 27.637954034722423 }, "geometry": { "type": "Point", "coordinates": [ 85.31943523590887, 27.637954034722423 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 753, "nhouse": 22, "residents": 79, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 100, "repvalue": 2400000, "xcoord": 85.319209304640594, "ycoord": 27.638623630723362 }, "geometry": { "type": "Point", "coordinates": [ 85.319209304640594, 27.638623630723362 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 754, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 93, "repvalue": 186000, "xcoord": 85.318887285688106, "ycoord": 27.638523678741159 }, "geometry": { "type": "Point", "coordinates": [ 85.318887285688106, 27.638523678741159 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 755, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 78, "repvalue": 312000, "xcoord": 85.319658229530475, "ycoord": 27.637476498284094 }, "geometry": { "type": "Point", "coordinates": [ 85.319658229530475, 27.637476498284094 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 756, "nhouse": 9, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 82, "repvalue": 984000, "xcoord": 85.319069179887762, "ycoord": 27.640734983421524 }, "geometry": { "type": "Point", "coordinates": [ 85.319069179887762, 27.640734983421524 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 757, "nhouse": 2, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 57, "repvalue": 228000, "xcoord": 85.319746982513422, "ycoord": 27.638726195723908 }, "geometry": { "type": "Point", "coordinates": [ 85.319746982513422, 27.638726195723908 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 758, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 68, "repvalue": 408000, "xcoord": 85.319221046918813, "ycoord": 27.637855390534153 }, "geometry": { "type": "Point", "coordinates": [ 85.319221046918813, 27.637855390534153 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 759, "nhouse": 5, "residents": 29, "specialfac": 0, "expstr": "BrCfl+MC+3s+Res", "fptarea": 91, "repvalue": 546000, "xcoord": 85.319327407530523, "ycoord": 27.637952727684453 }, "geometry": { "type": "Point", "coordinates": [ 85.319327407530523, 27.637952727684453 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 760, "nhouse": 33, "residents": 144, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 100, "repvalue": 3600000, "xcoord": 85.319072116008513, "ycoord": 27.640542923454944 }, "geometry": { "type": "Point", "coordinates": [ 85.319072116008513, 27.640542923454944 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 761, "nhouse": 5, "residents": 17, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 66, "repvalue": 528000, "xcoord": 85.319229853322526, "ycoord": 27.637279210333354 }, "geometry": { "type": "Point", "coordinates": [ 85.319229853322526, 27.637279210333354 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 762, "nhouse": 16, "residents": 46, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 76, "repvalue": 1672000, "xcoord": 85.318783861297419, "ycoord": 27.638234281251499 }, "geometry": { "type": "Point", "coordinates": [ 85.318783861297419, 27.638234281251499 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 763, "nhouse": 22, "residents": 91, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 71, "repvalue": 2414000, "xcoord": 85.319300988313429, "ycoord": 27.639681268054268 }, "geometry": { "type": "Point", "coordinates": [ 85.319300988313429, 27.639681268054268 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 764, "nhouse": 25, "residents": 105, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 96, "repvalue": 2688000, "xcoord": 85.319764590200279, "ycoord": 27.637573835104899 }, "geometry": { "type": "Point", "coordinates": [ 85.319764590200279, 27.637573835104899 ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "bldid": 765, "nhouse": 11, "residents": 53, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 59, "repvalue": 2006000, "xcoord": 85.318955476098523, "ycoord": 27.641117795873381 }, "geometry": { "type": "Point", "coordinates": [ 85.318955476098523, 27.641117795873381 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2239, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 95, "repvalue": 950000, "xcoord": 85.320963534327163, "ycoord": 27.635199667291612 }, "geometry": { "type": "Point", "coordinates": [ 85.320963534327163, 27.635199667291612 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2240, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 94, "repvalue": 940000, "xcoord": 85.320309620331699, "ycoord": 27.634601228542998 }, "geometry": { "type": "Point", "coordinates": [ 85.320309620331699, 27.634601228542998 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2241, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 101, "repvalue": 909000, "xcoord": 85.321166485940424, "ycoord": 27.636383162496404 }, "geometry": { "type": "Point", "coordinates": [ 85.321166485940424, 27.636383162496404 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2242, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 104, "repvalue": 936000, "xcoord": 85.320302106132559, "ycoord": 27.635093236521723 }, "geometry": { "type": "Point", "coordinates": [ 85.320302106132559, 27.635093236521723 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2243, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 89, "repvalue": 890000, "xcoord": 85.320173581708488, "ycoord": 27.636272716954991 }, "geometry": { "type": "Point", "coordinates": [ 85.320173581708488, 27.636272716954991 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2244, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 96, "repvalue": 672000, "xcoord": 85.322174405046297, "ycoord": 27.635509584277244 }, "geometry": { "type": "Point", "coordinates": [ 85.322174405046297, 27.635509584277244 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2245, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 93, "repvalue": 744000, "xcoord": 85.322186414488229, "ycoord": 27.634722370783802 }, "geometry": { "type": "Point", "coordinates": [ 85.322186414488229, 27.634722370783802 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2246, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 100, "repvalue": 900000, "xcoord": 85.323064318210726, "ycoord": 27.635126670403249 }, "geometry": { "type": "Point", "coordinates": [ 85.323064318210726, 27.635126670403249 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2247, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 92, "repvalue": 460000, "xcoord": 85.32283733865745, "ycoord": 27.63551760458418 }, "geometry": { "type": "Point", "coordinates": [ 85.32283733865745, 27.63551760458418 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2248, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 95, "repvalue": 570000, "xcoord": 85.32039155513597, "ycoord": 27.636472197155104 }, "geometry": { "type": "Point", "coordinates": [ 85.32039155513597, 27.636472197155104 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2249, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 97, "repvalue": 582000, "xcoord": 85.321072520684254, "ycoord": 27.635299406809025 }, "geometry": { "type": "Point", "coordinates": [ 85.321072520684254, 27.635299406809025 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2250, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Ind", "fptarea": 105, "repvalue": 630000, "xcoord": 85.322722347518152, "ycoord": 27.635811473205433 }, "geometry": { "type": "Point", "coordinates": [ 85.322722347518152, 27.635811473205433 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2251, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+5s+Ind", "fptarea": 91, "repvalue": 455000, "xcoord": 85.321718934698509, "ycoord": 27.636389850514004 }, "geometry": { "type": "Point", "coordinates": [ 85.321718934698509, 27.636389850514004 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2252, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 85, "repvalue": 510000, "xcoord": 85.320308117507111, "ycoord": 27.634699630141689 }, "geometry": { "type": "Point", "coordinates": [ 85.320308117507111, 27.634699630141689 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2253, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+7s+Ind", "fptarea": 93, "repvalue": 651000, "xcoord": 85.322719346023391, "ycoord": 27.636008276610863 }, "geometry": { "type": "Point", "coordinates": [ 85.322719346023391, 27.636008276610863 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2254, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 105, "repvalue": 735000, "xcoord": 85.320611032034137, "ycoord": 27.636573275456062 }, "geometry": { "type": "Point", "coordinates": [ 85.320611032034137, 27.636573275456062 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2255, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+8s+Ind", "fptarea": 97, "repvalue": 776000, "xcoord": 85.321950424405244, "ycoord": 27.635703713474314 }, "geometry": { "type": "Point", "coordinates": [ 85.321950424405244, 27.635703713474314 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2256, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Ind", "fptarea": 97, "repvalue": 776000, "xcoord": 85.321733951059585, "ycoord": 27.635405833987491 }, "geometry": { "type": "Point", "coordinates": [ 85.321733951059585, 27.635405833987491 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2257, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 100, "repvalue": 900000, "xcoord": 85.320750069539983, "ycoord": 27.634704983167872 }, "geometry": { "type": "Point", "coordinates": [ 85.320750069539983, 27.634704983167872 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2258, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 89, "repvalue": 712000, "xcoord": 85.322610357432993, "ycoord": 27.635908538300754 }, "geometry": { "type": "Point", "coordinates": [ 85.322610357432993, 27.635908538300754 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2259, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Ind", "fptarea": 86, "repvalue": 430000, "xcoord": 85.320517072217228, "ycoord": 27.635489519656307 }, "geometry": { "type": "Point", "coordinates": [ 85.320517072217228, 27.635489519656307 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2260, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 91, "repvalue": 910000, "xcoord": 85.321181507238848, "ycoord": 27.635399146248133 }, "geometry": { "type": "Point", "coordinates": [ 85.321181507238848, 27.635399146248133 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2261, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 95, "repvalue": 855000, "xcoord": 85.322840339878667, "ycoord": 27.635320801152911 }, "geometry": { "type": "Point", "coordinates": [ 85.322840339878667, 27.635320801152911 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2262, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Ind", "fptarea": 87, "repvalue": 870000, "xcoord": 85.320293088842206, "ycoord": 27.635683646047628 }, "geometry": { "type": "Point", "coordinates": [ 85.320293088842206, 27.635683646047628 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2263, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Ind", "fptarea": 98, "repvalue": 490000, "xcoord": 85.320291585933816, "ycoord": 27.635782047630123 }, "geometry": { "type": "Point", "coordinates": [ 85.320291585933816, 27.635782047630123 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2264, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 104, "repvalue": 728000, "xcoord": 85.321963936907522, "ycoord": 27.634818098414193 }, "geometry": { "type": "Point", "coordinates": [ 85.321963936907522, 27.634818098414193 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2265, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 87, "repvalue": 609000, "xcoord": 85.321193523729377, "ycoord": 27.634611933143525 }, "geometry": { "type": "Point", "coordinates": [ 85.321193523729377, 27.634611933143525 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2266, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+8s+Ind", "fptarea": 101, "repvalue": 808000, "xcoord": 85.320833514308973, "ycoord": 27.636477550230325 }, "geometry": { "type": "Point", "coordinates": [ 85.320833514308973, 27.636477550230325 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2267, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 96, "repvalue": 480000, "xcoord": 85.322072923857306, "ycoord": 27.634917837173688 }, "geometry": { "type": "Point", "coordinates": [ 85.322072923857306, 27.634917837173688 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2268, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 85, "repvalue": 595000, "xcoord": 85.322838839271853, "ycoord": 27.635419202869286 }, "geometry": { "type": "Point", "coordinates": [ 85.322838839271853, 27.635419202869286 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2269, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 89, "repvalue": 534000, "xcoord": 85.322160893841996, "ycoord": 27.636395199344761 }, "geometry": { "type": "Point", "coordinates": [ 85.322160893841996, 27.636395199344761 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2270, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 94, "repvalue": 658000, "xcoord": 85.322283392846742, "ycoord": 27.635609322900581 }, "geometry": { "type": "Point", "coordinates": [ 85.322283392846742, 27.635609322900581 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2271, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 87, "repvalue": 609000, "xcoord": 85.321853448705383, "ycoord": 27.634816761251535 }, "geometry": { "type": "Point", "coordinates": [ 85.321853448705383, 27.634816761251535 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2272, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+7s+Ind", "fptarea": 91, "repvalue": 637000, "xcoord": 85.322062414824515, "ycoord": 27.635606648926057 }, "geometry": { "type": "Point", "coordinates": [ 85.322062414824515, 27.635606648926057 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2273, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 89, "repvalue": 623000, "xcoord": 85.321841436832742, "ycoord": 27.635603974599686 }, "geometry": { "type": "Point", "coordinates": [ 85.321841436832742, 27.635603974599686 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2274, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 95, "repvalue": 760000, "xcoord": 85.320633571330688, "ycoord": 27.635097251490109 }, "geometry": { "type": "Point", "coordinates": [ 85.320633571330688, 27.635097251490109 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2275, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+6s+Ind", "fptarea": 101, "repvalue": 606000, "xcoord": 85.322168400142701, "ycoord": 27.635903190988639 }, "geometry": { "type": "Point", "coordinates": [ 85.322168400142701, 27.635903190988639 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2276, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+8s+Ind", "fptarea": 99, "repvalue": 792000, "xcoord": 85.323283795185816, "ycoord": 27.63522774448046 }, "geometry": { "type": "Point", "coordinates": [ 85.323283795185816, 27.63522774448046 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2277, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 91, "repvalue": 546000, "xcoord": 85.32282683414364, "ycoord": 27.63620641654725 }, "geometry": { "type": "Point", "coordinates": [ 85.32282683414364, 27.63620641654725 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2278, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 90, "repvalue": 900000, "xcoord": 85.322828334811291, "ycoord": 27.636108014842652 }, "geometry": { "type": "Point", "coordinates": [ 85.322828334811291, 27.636108014842652 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2279, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 98, "repvalue": 686000, "xcoord": 85.320179593843704, "ycoord": 27.635879110667886 }, "geometry": { "type": "Point", "coordinates": [ 85.320179593843704, 27.635879110667886 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2280, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 104, "repvalue": 832000, "xcoord": 85.322625365513886, "ycoord": 27.634924521255641 }, "geometry": { "type": "Point", "coordinates": [ 85.322625365513886, 27.634924521255641 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2281, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 89, "repvalue": 801000, "xcoord": 85.322271383646878, "ycoord": 27.636396536332544 }, "geometry": { "type": "Point", "coordinates": [ 85.322271383646878, 27.636396536332544 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2282, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+10s+Ind", "fptarea": 90, "repvalue": 900000, "xcoord": 85.322284893962475, "ycoord": 27.635510921214962 }, "geometry": { "type": "Point", "coordinates": [ 85.322284893962475, 27.635510921214962 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2283, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+6s+Ind", "fptarea": 88, "repvalue": 528000, "xcoord": 85.32152048239098, "ycoord": 27.634911150892801 }, "geometry": { "type": "Point", "coordinates": [ 85.32152048239098, 27.634911150892801 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2284, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Ind", "fptarea": 98, "repvalue": 882000, "xcoord": 85.321515977084303, "ycoord": 27.635206355854901 }, "geometry": { "type": "Point", "coordinates": [ 85.321515977084303, 27.635206355854901 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2285, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 91, "repvalue": 637000, "xcoord": 85.320290083017809, "ycoord": 27.635880449211147 }, "geometry": { "type": "Point", "coordinates": [ 85.320290083017809, 27.635880449211147 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2286, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 98, "repvalue": 686000, "xcoord": 85.322953829636276, "ycoord": 27.635125334103485 }, "geometry": { "type": "Point", "coordinates": [ 85.322953829636276, 27.635125334103485 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2287, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 85, "repvalue": 680000, "xcoord": 85.320176587791337, "ycoord": 27.636075913814384 }, "geometry": { "type": "Point", "coordinates": [ 85.320176587791337, 27.636075913814384 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2288, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 97, "repvalue": 679000, "xcoord": 85.322177407452443, "ycoord": 27.635312780912713 }, "geometry": { "type": "Point", "coordinates": [ 85.322177407452443, 27.635312780912713 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2289, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 93, "repvalue": 558000, "xcoord": 85.320730537261738, "ycoord": 27.635984204106418 }, "geometry": { "type": "Point", "coordinates": [ 85.320730537261738, 27.635984204106418 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2290, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+5s+Ind", "fptarea": 92, "repvalue": 460000, "xcoord": 85.320956022861807, "ycoord": 27.635691675393211 }, "geometry": { "type": "Point", "coordinates": [ 85.320956022861807, 27.635691675393211 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2291, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 90, "repvalue": 810000, "xcoord": 85.322949328134925, "ycoord": 27.635420539273692 }, "geometry": { "type": "Point", "coordinates": [ 85.322949328134925, 27.635420539273692 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2292, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+5s+Ind", "fptarea": 95, "repvalue": 475000, "xcoord": 85.321406990392902, "ycoord": 27.635106616671166 }, "geometry": { "type": "Point", "coordinates": [ 85.321406990392902, 27.635106616671166 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2293, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 100, "repvalue": 700000, "xcoord": 85.321945920100816, "ycoord": 27.635998918467852 }, "geometry": { "type": "Point", "coordinates": [ 85.321945920100816, 27.635998918467852 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2294, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 85, "repvalue": 595000, "xcoord": 85.321735452653826, "ycoord": 27.635307432326741 }, "geometry": { "type": "Point", "coordinates": [ 85.321735452653826, 27.635307432326741 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2295, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 102, "repvalue": 714000, "xcoord": 85.32053360136679, "ycoord": 27.634407101996796 }, "geometry": { "type": "Point", "coordinates": [ 85.32053360136679, 27.634407101996796 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2296, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 101, "repvalue": 1010000, "xcoord": 85.323388283414332, "ycoord": 27.635622687495637 }, "geometry": { "type": "Point", "coordinates": [ 85.323388283414332, 27.635622687495637 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2297, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Ind", "fptarea": 99, "repvalue": 792000, "xcoord": 85.321829424472966, "ycoord": 27.636391187853636 }, "geometry": { "type": "Point", "coordinates": [ 85.321829424472966, 27.636391187853636 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2298, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 89, "repvalue": 534000, "xcoord": 85.321847442829949, "ycoord": 27.635210367937383 }, "geometry": { "type": "Point", "coordinates": [ 85.321847442829949, 27.635210367937383 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2299, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 89, "repvalue": 623000, "xcoord": 85.322832836768612, "ycoord": 27.635812809720036 }, "geometry": { "type": "Point", "coordinates": [ 85.322832836768612, 27.635812809720036 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2300, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 93, "repvalue": 651000, "xcoord": 85.322937323796694, "ycoord": 27.636207752996132 }, "geometry": { "type": "Point", "coordinates": [ 85.322937323796694, 27.636207752996132 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2301, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 88, "repvalue": 616000, "xcoord": 85.322735853868025, "ycoord": 27.63492585780816 }, "geometry": { "type": "Point", "coordinates": [ 85.322735853868025, 27.63492585780816 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2302, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 100, "repvalue": 700000, "xcoord": 85.322496866194044, "ycoord": 27.636104004984901 }, "geometry": { "type": "Point", "coordinates": [ 85.322496866194044, 27.636104004984901 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2303, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 92, "repvalue": 828000, "xcoord": 85.323059817005614, "ycoord": 27.63542187559014 }, "geometry": { "type": "Point", "coordinates": [ 85.323059817005614, 27.63542187559014 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2304, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Ind", "fptarea": 99, "repvalue": 693000, "xcoord": 85.320521580258514, "ycoord": 27.635194314857742 }, "geometry": { "type": "Point", "coordinates": [ 85.320521580258514, 27.635194314857742 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2305, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 104, "repvalue": 624000, "xcoord": 85.321075525034829, "ycoord": 27.635102603549885 }, "geometry": { "type": "Point", "coordinates": [ 85.321075525034829, 27.635102603549885 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2306, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Ind", "fptarea": 101, "repvalue": 1010000, "xcoord": 85.320394560854282, "ycoord": 27.636275393998105 }, "geometry": { "type": "Point", "coordinates": [ 85.320394560854282, 27.636275393998105 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2307, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Ind", "fptarea": 102, "repvalue": 1020000, "xcoord": 85.320303608987629, "ycoord": 27.634994834928928 }, "geometry": { "type": "Point", "coordinates": [ 85.320303608987629, 27.634994834928928 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2308, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 87, "repvalue": 870000, "xcoord": 85.321060502977375, "ycoord": 27.636086619786667 }, "geometry": { "type": "Point", "coordinates": [ 85.321060502977375, 27.636086619786667 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2309, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 100, "repvalue": 900000, "xcoord": 85.322498367150317, "ycoord": 27.636005603295526 }, "geometry": { "type": "Point", "coordinates": [ 85.322498367150317, 27.636005603295526 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2310, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 87, "repvalue": 522000, "xcoord": 85.320511061388856, "ycoord": 27.635883126033789 }, "geometry": { "type": "Point", "coordinates": [ 85.320511061388856, 27.635883126033789 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2311, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 99, "repvalue": 693000, "xcoord": 85.322732852510185, "ycoord": 27.635122661240075 }, "geometry": { "type": "Point", "coordinates": [ 85.322732852510185, 27.635122661240075 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2312, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 85, "repvalue": 680000, "xcoord": 85.322825333468387, "ycoord": 27.63630481825037 }, "geometry": { "type": "Point", "coordinates": [ 85.322825333468387, 27.63630481825037 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2313, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 87, "repvalue": 522000, "xcoord": 85.320745562205403, "ycoord": 27.635000188021923 }, "geometry": { "type": "Point", "coordinates": [ 85.320745562205403, 27.635000188021923 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2314, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 85, "repvalue": 680000, "xcoord": 85.322493864258632, "ycoord": 27.636300808359259 }, "geometry": { "type": "Point", "coordinates": [ 85.322493864258632, 27.636300808359259 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2315, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 90, "repvalue": 720000, "xcoord": 85.322935823220178, "ycoord": 27.636306154704815 }, "geometry": { "type": "Point", "coordinates": [ 85.322935823220178, 27.636306154704815 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2316, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 91, "repvalue": 728000, "xcoord": 85.321508468087586, "ycoord": 27.635698364095649 }, "geometry": { "type": "Point", "coordinates": [ 85.321508468087586, 27.635698364095649 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2317, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Ind", "fptarea": 104, "repvalue": 520000, "xcoord": 85.322398384897411, "ycoord": 27.635315454677944 }, "geometry": { "type": "Point", "coordinates": [ 85.322398384897411, 27.635315454677944 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2318, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 94, "repvalue": 940000, "xcoord": 85.32074706465788, "ycoord": 27.634901786405379 }, "geometry": { "type": "Point", "coordinates": [ 85.32074706465788, 27.634901786405379 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2319, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 86, "repvalue": 602000, "xcoord": 85.320641084048702, "ycoord": 27.634605243427863 }, "geometry": { "type": "Point", "coordinates": [ 85.320641084048702, 27.634605243427863 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2320, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Ind", "fptarea": 89, "repvalue": 445000, "xcoord": 85.32062455581773, "ycoord": 27.635687661116236 }, "geometry": { "type": "Point", "coordinates": [ 85.32062455581773, 27.635687661116236 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2321, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 104, "repvalue": 728000, "xcoord": 85.321632472323955, "ycoord": 27.634814086662356 }, "geometry": { "type": "Point", "coordinates": [ 85.321632472323955, 27.634814086662356 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2322, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 96, "repvalue": 576000, "xcoord": 85.320414097280647, "ycoord": 27.634996173334109 }, "geometry": { "type": "Point", "coordinates": [ 85.320414097280647, 27.634996173334109 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2323, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 86, "repvalue": 688000, "xcoord": 85.321190519652433, "ycoord": 27.634808736428514 }, "geometry": { "type": "Point", "coordinates": [ 85.321190519652433, 27.634808736428514 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2324, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Ind", "fptarea": 100, "repvalue": 500000, "xcoord": 85.320733542311402, "ycoord": 27.63578740090129 }, "geometry": { "type": "Point", "coordinates": [ 85.320733542311402, 27.63578740090129 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2325, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 98, "repvalue": 686000, "xcoord": 85.32118751554502, "ycoord": 27.635005539707606 }, "geometry": { "type": "Point", "coordinates": [ 85.32118751554502, 27.635005539707606 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2326, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 88, "repvalue": 616000, "xcoord": 85.32205490814421, "ycoord": 27.636098657276449 }, "geometry": { "type": "Point", "coordinates": [ 85.32205490814421, 27.636098657276449 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2327, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 102, "repvalue": 612000, "xcoord": 85.320405080628461, "ycoord": 27.635586582902253 }, "geometry": { "type": "Point", "coordinates": [ 85.320405080628461, 27.635586582902253 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2328, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 98, "repvalue": 686000, "xcoord": 85.322171402609726, "ycoord": 27.635706387635885 }, "geometry": { "type": "Point", "coordinates": [ 85.322171402609726, 27.635706387635885 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2329, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 99, "repvalue": 792000, "xcoord": 85.320178090821329, "ycoord": 27.635977512241872 }, "geometry": { "type": "Point", "coordinates": [ 85.320178090821329, 27.635977512241872 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2330, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 97, "repvalue": 679000, "xcoord": 85.320732039790386, "ycoord": 27.635885802504589 }, "geometry": { "type": "Point", "coordinates": [ 85.320732039790386, 27.635885802504589 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2331, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 92, "repvalue": 828000, "xcoord": 85.322495365230139, "ycoord": 27.636202406672815 }, "geometry": { "type": "Point", "coordinates": [ 85.322495365230139, 27.636202406672815 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2332, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 91, "repvalue": 910000, "xcoord": 85.320503547682009, "ycoord": 27.636375133972518 }, "geometry": { "type": "Point", "coordinates": [ 85.320503547682009, 27.636375133972518 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2333, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 87, "repvalue": 435000, "xcoord": 85.321500958900543, "ycoord": 27.636190372299584 }, "geometry": { "type": "Point", "coordinates": [ 85.321500958900543, 27.636190372299584 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2334, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 95, "repvalue": 760000, "xcoord": 85.321606943154947, "ycoord": 27.636486914725403 }, "geometry": { "type": "Point", "coordinates": [ 85.321606943154947, 27.636486914725403 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2335, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 95, "repvalue": 855000, "xcoord": 85.322057910839163, "ycoord": 27.635901853940705 }, "geometry": { "type": "Point", "coordinates": [ 85.322057910839163, 27.635901853940705 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2336, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 103, "repvalue": 824000, "xcoord": 85.32327929455036, "ycoord": 27.635522949696284 }, "geometry": { "type": "Point", "coordinates": [ 85.32327929455036, 27.635522949696284 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2337, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 86, "repvalue": 860000, "xcoord": 85.321278477742169, "ycoord": 27.636286098652082 }, "geometry": { "type": "Point", "coordinates": [ 85.321278477742169, 27.636286098652082 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2338, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 99, "repvalue": 495000, "xcoord": 85.322405889792165, "ycoord": 27.634823446185248 }, "geometry": { "type": "Point", "coordinates": [ 85.322405889792165, 27.634823446185248 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2339, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 103, "repvalue": 927000, "xcoord": 85.320960529763866, "ycoord": 27.63539647053668 }, "geometry": { "type": "Point", "coordinates": [ 85.320960529763866, 27.63539647053668 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2340, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Ind", "fptarea": 86, "repvalue": 516000, "xcoord": 85.320526088231233, "ycoord": 27.634899110045925 }, "geometry": { "type": "Point", "coordinates": [ 85.320526088231233, 27.634899110045925 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2341, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 92, "repvalue": 736000, "xcoord": 85.320306614674905, "ycoord": 27.634798031738907 }, "geometry": { "type": "Point", "coordinates": [ 85.320306614674905, 27.634798031738907 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2342, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 90, "repvalue": 540000, "xcoord": 85.322292399427027, "ycoord": 27.635018912764792 }, "geometry": { "type": "Point", "coordinates": [ 85.322292399427027, 27.635018912764792 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2343, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Ind", "fptarea": 87, "repvalue": 435000, "xcoord": 85.321180005143276, "ycoord": 27.635497547879577 }, "geometry": { "type": "Point", "coordinates": [ 85.321180005143276, 27.635497547879577 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2344, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 104, "repvalue": 832000, "xcoord": 85.320959027470792, "ycoord": 27.635494872156997 }, "geometry": { "type": "Point", "coordinates": [ 85.320959027470792, 27.635494872156997 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2345, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 99, "repvalue": 792000, "xcoord": 85.32207142258973, "ycoord": 27.635016238857016 }, "geometry": { "type": "Point", "coordinates": [ 85.32207142258973, 27.635016238857016 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2346, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 97, "repvalue": 776000, "xcoord": 85.320426119056975, "ycoord": 27.634208960494149 }, "geometry": { "type": "Point", "coordinates": [ 85.320426119056975, 27.634208960494149 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2347, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+10s+Ind", "fptarea": 100, "repvalue": 1000000, "xcoord": 85.321291995987778, "ycoord": 27.635400483971925 }, "geometry": { "type": "Point", "coordinates": [ 85.321291995987778, 27.635400483971925 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2348, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Ind", "fptarea": 99, "repvalue": 594000, "xcoord": 85.321059000729747, "ycoord": 27.636185021402248 }, "geometry": { "type": "Point", "coordinates": [ 85.321059000729747, 27.636185021402248 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2349, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 98, "repvalue": 588000, "xcoord": 85.320424616361592, "ycoord": 27.634307362104302 }, "geometry": { "type": "Point", "coordinates": [ 85.320424616361592, 27.634307362104302 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2350, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 92, "repvalue": 828000, "xcoord": 85.322392380844661, "ycoord": 27.63570906144562 }, "geometry": { "type": "Point", "coordinates": [ 85.322392380844661, 27.63570906144562 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2351, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 93, "repvalue": 744000, "xcoord": 85.321844439846572, "ycoord": 27.635407171271485 }, "geometry": { "type": "Point", "coordinates": [ 85.321844439846572, 27.635407171271485 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2352, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+10s+Ind", "fptarea": 95, "repvalue": 950000, "xcoord": 85.321175498810859, "ycoord": 27.635792752765106 }, "geometry": { "type": "Point", "coordinates": [ 85.321175498810859, 27.635792752765106 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2353, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 97, "repvalue": 582000, "xcoord": 85.321848944310219, "ycoord": 27.635111966268131 }, "geometry": { "type": "Point", "coordinates": [ 85.321848944310219, 27.635111966268131 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2354, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 101, "repvalue": 606000, "xcoord": 85.32195793142705, "ycoord": 27.635211705122295 }, "geometry": { "type": "Point", "coordinates": [ 85.32195793142705, 27.635211705122295 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2355, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 99, "repvalue": 594000, "xcoord": 85.320393057998928, "ycoord": 27.636373795577335 }, "geometry": { "type": "Point", "coordinates": [ 85.320393057998928, 27.636373795577335 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2356, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 87, "repvalue": 696000, "xcoord": 85.321302509752428, "ycoord": 27.634711672471582 }, "geometry": { "type": "Point", "coordinates": [ 85.321302509752428, 27.634711672471582 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2357, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 90, "repvalue": 900000, "xcoord": 85.323391283663284, "ycoord": 27.635425884011724 }, "geometry": { "type": "Point", "coordinates": [ 85.323391283663284, 27.635425884011724 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2358, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+5s+Ind", "fptarea": 88, "repvalue": 440000, "xcoord": 85.320847036246548, "ycoord": 27.635591935777043 }, "geometry": { "type": "Point", "coordinates": [ 85.320847036246548, 27.635591935777043 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2359, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Ind", "fptarea": 86, "repvalue": 688000, "xcoord": 85.320726029630123, "ycoord": 27.636279408903061 }, "geometry": { "type": "Point", "coordinates": [ 85.320726029630123, 27.636279408903061 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2360, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 101, "repvalue": 808000, "xcoord": 85.320836519237304, "ycoord": 27.636280747028788 }, "geometry": { "type": "Point", "coordinates": [ 85.320836519237304, 27.636280747028788 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2361, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 86, "repvalue": 602000, "xcoord": 85.32163097066902, "ycoord": 27.634912488324893 }, "geometry": { "type": "Point", "coordinates": [ 85.32163097066902, 27.634912488324893 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2362, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 89, "repvalue": 801000, "xcoord": 85.322952329143433, "ycoord": 27.635223735828358 }, "geometry": { "type": "Point", "coordinates": [ 85.322952329143433, 27.635223735828358 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2363, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 89, "repvalue": 712000, "xcoord": 85.320287077162931, "ycoord": 27.636077252368782 }, "geometry": { "type": "Point", "coordinates": [ 85.320287077162931, 27.636077252368782 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2364, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 103, "repvalue": 927000, "xcoord": 85.321062005217399, "ycoord": 27.635988218169615 }, "geometry": { "type": "Point", "coordinates": [ 85.321062005217399, 27.635988218169615 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2365, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 103, "repvalue": 927000, "xcoord": 85.322950828642988, "ycoord": 27.635322137551757 }, "geometry": { "type": "Point", "coordinates": [ 85.322950828642988, 27.635322137551757 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2366, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 96, "repvalue": 576000, "xcoord": 85.322844841653406, "ycoord": 27.635025595994982 }, "geometry": { "type": "Point", "coordinates": [ 85.322844841653406, 27.635025595994982 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2367, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 93, "repvalue": 837000, "xcoord": 85.321414499654935, "ycoord": 27.634614608414097 }, "geometry": { "type": "Point", "coordinates": [ 85.321414499654935, 27.634614608414097 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2368, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+10s+Ind", "fptarea": 94, "repvalue": 940000, "xcoord": 85.323161303860815, "ycoord": 27.636013622186002 }, "geometry": { "type": "Point", "coordinates": [ 85.323161303860815, 27.636013622186002 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2369, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 90, "repvalue": 540000, "xcoord": 85.320742557277597, "ycoord": 27.635196991250595 }, "geometry": { "type": "Point", "coordinates": [ 85.320742557277597, 27.635196991250595 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2370, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 103, "repvalue": 927000, "xcoord": 85.323167305239963, "ycoord": 27.635620015280306 }, "geometry": { "type": "Point", "coordinates": [ 85.323167305239963, 27.635620015280306 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2371, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Ind", "fptarea": 100, "repvalue": 600000, "xcoord": 85.32172343968675, "ycoord": 27.636094645571507 }, "geometry": { "type": "Point", "coordinates": [ 85.32172343968675, 27.636094645571507 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2372, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 87, "repvalue": 522000, "xcoord": 85.322501369040083, "ycoord": 27.635808799912343 }, "geometry": { "type": "Point", "coordinates": [ 85.322501369040083, 27.635808799912343 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2373, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 89, "repvalue": 623000, "xcoord": 85.321505464435603, "ycoord": 27.635895167381634 }, "geometry": { "type": "Point", "coordinates": [ 85.321505464435603, 27.635895167381634 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2374, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 91, "repvalue": 819000, "xcoord": 85.320850041037801, "ycoord": 27.635395132549014 }, "geometry": { "type": "Point", "coordinates": [ 85.320850041037801, 27.635395132549014 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2375, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 99, "repvalue": 792000, "xcoord": 85.323049313927498, "ycoord": 27.636110687641345 }, "geometry": { "type": "Point", "coordinates": [ 85.323049313927498, 27.636110687641345 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2376, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 104, "repvalue": 624000, "xcoord": 85.323162804217006, "ycoord": 27.63591522046179 }, "geometry": { "type": "Point", "coordinates": [ 85.323162804217006, 27.63591522046179 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2377, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Ind", "fptarea": 86, "repvalue": 516000, "xcoord": 85.32239388186926, "ycoord": 27.635610659755908 }, "geometry": { "type": "Point", "coordinates": [ 85.32239388186926, 27.635610659755908 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2378, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 93, "repvalue": 744000, "xcoord": 85.321839935314415, "ycoord": 27.635702376261587 }, "geometry": { "type": "Point", "coordinates": [ 85.321839935314415, 27.635702376261587 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2379, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Ind", "fptarea": 91, "repvalue": 728000, "xcoord": 85.321385963446588, "ycoord": 27.636484239595195 }, "geometry": { "type": "Point", "coordinates": [ 85.321385963446588, 27.636484239595195 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2380, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 95, "repvalue": 665000, "xcoord": 85.322508873631321, "ycoord": 27.635316791428632 }, "geometry": { "type": "Point", "coordinates": [ 85.322508873631321, 27.635316791428632 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2381, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 98, "repvalue": 686000, "xcoord": 85.321838433788457, "ycoord": 27.635800777922007 }, "geometry": { "type": "Point", "coordinates": [ 85.321838433788457, 27.635800777922007 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2382, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 98, "repvalue": 980000, "xcoord": 85.322613359110022, "ycoord": 27.635711734903509 }, "geometry": { "type": "Point", "coordinates": [ 85.322613359110022, 27.635711734903509 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2383, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 95, "repvalue": 665000, "xcoord": 85.320512564107375, "ycoord": 27.635784724441628 }, "geometry": { "type": "Point", "coordinates": [ 85.320512564107375, 27.635784724441628 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2384, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Ind", "fptarea": 93, "repvalue": 744000, "xcoord": 85.322383374537267, "ycoord": 27.636299471552963 }, "geometry": { "type": "Point", "coordinates": [ 85.322383374537267, 27.636299471552963 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2385, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 89, "repvalue": 801000, "xcoord": 85.321055996211641, "ycoord": 27.636381824628998 }, "geometry": { "type": "Point", "coordinates": [ 85.321055996211641, 27.636381824628998 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2386, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+5s+Ind", "fptarea": 93, "repvalue": 465000, "xcoord": 85.323055315732049, "ycoord": 27.635717080763769 }, "geometry": { "type": "Point", "coordinates": [ 85.323055315732049, 27.635717080763769 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2387, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 97, "repvalue": 582000, "xcoord": 85.321285987954766, "ycoord": 27.635794090511151 }, "geometry": { "type": "Point", "coordinates": [ 85.321285987954766, 27.635794090511151 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2388, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 103, "repvalue": 824000, "xcoord": 85.320860557567244, "ycoord": 27.634706321204526 }, "geometry": { "type": "Point", "coordinates": [ 85.320860557567244, 27.634706321204526 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2389, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Ind", "fptarea": 99, "repvalue": 693000, "xcoord": 85.322172903831827, "ycoord": 27.635607985957304 }, "geometry": { "type": "Point", "coordinates": [ 85.322172903831827, 27.635607985957304 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2390, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 87, "repvalue": 783000, "xcoord": 85.322399885891585, "ycoord": 27.635217052982348 }, "geometry": { "type": "Point", "coordinates": [ 85.322399885891585, 27.635217052982348 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2391, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 86, "repvalue": 860000, "xcoord": 85.32328229498161, "ycoord": 27.635326146220539 }, "geometry": { "type": "Point", "coordinates": [ 85.32328229498161, 27.635326146220539 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2392, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 94, "repvalue": 470000, "xcoord": 85.321499457040304, "ycoord": 27.636288773935952 }, "geometry": { "type": "Point", "coordinates": [ 85.321499457040304, 27.636288773935952 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2393, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 102, "repvalue": 612000, "xcoord": 85.322604353987614, "ycoord": 27.636302145077586 }, "geometry": { "type": "Point", "coordinates": [ 85.322604353987614, 27.636302145077586 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2394, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+8s+Ind", "fptarea": 98, "repvalue": 784000, "xcoord": 85.320859055228738, "ycoord": 27.634804722829578 }, "geometry": { "type": "Point", "coordinates": [ 85.320859055228738, 27.634804722829578 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2395, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 90, "repvalue": 900000, "xcoord": 85.321845941342062, "ycoord": 27.635308769605167 }, "geometry": { "type": "Point", "coordinates": [ 85.321845941342062, 27.635308769605167 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2396, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 99, "repvalue": 891000, "xcoord": 85.320181096858462, "ycoord": 27.63578070909243 }, "geometry": { "type": "Point", "coordinates": [ 85.320181096858462, 27.63578070909243 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2397, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+7s+Ind", "fptarea": 105, "repvalue": 735000, "xcoord": 85.321290493990944, "ycoord": 27.635498885608932 }, "geometry": { "type": "Point", "coordinates": [ 85.321290493990944, 27.635498885608932 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2398, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+7s+Ind", "fptarea": 99, "repvalue": 693000, "xcoord": 85.322390879812446, "ycoord": 27.635807463133851 }, "geometry": { "type": "Point", "coordinates": [ 85.322390879812446, 27.635807463133851 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2399, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+5s+Ind", "fptarea": 93, "repvalue": 465000, "xcoord": 85.320729034725474, "ycoord": 27.636082605706772 }, "geometry": { "type": "Point", "coordinates": [ 85.320729034725474, 27.636082605706772 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2400, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 99, "repvalue": 594000, "xcoord": 85.320741054802269, "ycoord": 27.635295392862727 }, "geometry": { "type": "Point", "coordinates": [ 85.320741054802269, 27.635295392862727 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2401, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 100, "repvalue": 800000, "xcoord": 85.320856050528889, "ycoord": 27.635001526075278 }, "geometry": { "type": "Point", "coordinates": [ 85.320856050528889, 27.635001526075278 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2402, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 89, "repvalue": 801000, "xcoord": 85.321960934182513, "ycoord": 27.635014901771186 }, "geometry": { "type": "Point", "coordinates": [ 85.321960934182513, 27.635014901771186 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2403, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+5s+Ind", "fptarea": 93, "repvalue": 465000, "xcoord": 85.320957525170115, "ycoord": 27.635593273775843 }, "geometry": { "type": "Point", "coordinates": [ 85.320957525170115, 27.635593273775843 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2404, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 94, "repvalue": 846000, "xcoord": 85.322608856583045, "ycoord": 27.636006939997174 }, "geometry": { "type": "Point", "coordinates": [ 85.322608856583045, 27.636006939997174 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2405, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 97, "repvalue": 679000, "xcoord": 85.32294032492689, "ycoord": 27.636010949574359 }, "geometry": { "type": "Point", "coordinates": [ 85.32294032492689, 27.636010949574359 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2406, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 100, "repvalue": 800000, "xcoord": 85.320400572199517, "ycoord": 27.635881787666449 }, "geometry": { "type": "Point", "coordinates": [ 85.320400572199517, 27.635881787666449 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2407, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 88, "repvalue": 704000, "xcoord": 85.321293497976995, "ycoord": 27.635302082333428 }, "geometry": { "type": "Point", "coordinates": [ 85.321293497976995, 27.635302082333428 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2408, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+10s+Ind", "fptarea": 96, "repvalue": 960000, "xcoord": 85.321850445782886, "ycoord": 27.635013564597411 }, "geometry": { "type": "Point", "coordinates": [ 85.321850445782886, 27.635013564597411 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2409, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 94, "repvalue": 846000, "xcoord": 85.322731351819868, "ycoord": 27.635221062953828 }, "geometry": { "type": "Point", "coordinates": [ 85.322731351819868, 27.635221062953828 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2410, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 101, "repvalue": 707000, "xcoord": 85.322063916137751, "ycoord": 27.635508247251561 }, "geometry": { "type": "Point", "coordinates": [ 85.322063916137751, 27.635508247251561 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2411, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 101, "repvalue": 707000, "xcoord": 85.321177000929282, "ycoord": 27.635694351138067 }, "geometry": { "type": "Point", "coordinates": [ 85.321177000929282, 27.635694351138067 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2412, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 96, "repvalue": 864000, "xcoord": 85.321496453296959, "ycoord": 27.636485577204283 }, "geometry": { "type": "Point", "coordinates": [ 85.321496453296959, 27.636485577204283 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2413, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 97, "repvalue": 679000, "xcoord": 85.320950013552462, "ycoord": 27.63608528184799 }, "geometry": { "type": "Point", "coordinates": [ 85.320950013552462, 27.63608528184799 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2414, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 90, "repvalue": 630000, "xcoord": 85.322716344498204, "ycoord": 27.636205080010402 }, "geometry": { "type": "Point", "coordinates": [ 85.322716344498204, 27.636205080010402 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2415, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+9s+Ind", "fptarea": 88, "repvalue": 792000, "xcoord": 85.322277388307697, "ycoord": 27.636002929628344 }, "geometry": { "type": "Point", "coordinates": [ 85.322277388307697, 27.636002929628344 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2416, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Ind", "fptarea": 96, "repvalue": 864000, "xcoord": 85.320644089082592, "ycoord": 27.634408440192658 }, "geometry": { "type": "Point", "coordinates": [ 85.320644089082592, 27.634408440192658 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2417, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+10s+Ind", "fptarea": 90, "repvalue": 900000, "xcoord": 85.321081533644602, "ycoord": 27.634708997013963 }, "geometry": { "type": "Point", "coordinates": [ 85.321081533644602, 27.634708997013963 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2418, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 104, "repvalue": 728000, "xcoord": 85.320420108229754, "ycoord": 27.634602566925906 }, "geometry": { "type": "Point", "coordinates": [ 85.320420108229754, 27.634602566925906 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2419, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 95, "repvalue": 760000, "xcoord": 85.321057498474516, "ycoord": 27.636283423016359 }, "geometry": { "type": "Point", "coordinates": [ 85.321057498474516, 27.636283423016359 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2420, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 97, "repvalue": 582000, "xcoord": 85.320299100399581, "ycoord": 27.635290039702912 }, "geometry": { "type": "Point", "coordinates": [ 85.320299100399581, 27.635290039702912 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2421, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 103, "repvalue": 721000, "xcoord": 85.321402484744311, "ycoord": 27.635401821607751 }, "geometry": { "type": "Point", "coordinates": [ 85.321402484744311, 27.635401821607751 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2422, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 88, "repvalue": 528000, "xcoord": 85.321183009326816, "ycoord": 27.635300744615204 }, "geometry": { "type": "Point", "coordinates": [ 85.321183009326816, 27.635300744615204 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2423, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 102, "repvalue": 612000, "xcoord": 85.320942501744426, "ycoord": 27.636577289883355 }, "geometry": { "type": "Point", "coordinates": [ 85.320942501744426, 27.636577289883355 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2424, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 99, "repvalue": 594000, "xcoord": 85.322605854860356, "ycoord": 27.63620374338559 }, "geometry": { "type": "Point", "coordinates": [ 85.322605854860356, 27.63620374338559 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2425, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+10s+Ind", "fptarea": 92, "repvalue": 920000, "xcoord": 85.321066511891743, "ycoord": 27.63569301330962 }, "geometry": { "type": "Point", "coordinates": [ 85.321066511891743, 27.63569301330962 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2426, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 98, "repvalue": 784000, "xcoord": 85.322051905418817, "ycoord": 27.636295460606298 }, "geometry": { "type": "Point", "coordinates": [ 85.322051905418817, 27.636295460606298 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2427, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 87, "repvalue": 609000, "xcoord": 85.320527590873581, "ycoord": 27.634800708439048 }, "geometry": { "type": "Point", "coordinates": [ 85.320527590873581, 27.634800708439048 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2428, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+10s+Ind", "fptarea": 101, "repvalue": 1010000, "xcoord": 85.32162796733634, "ycoord": 27.635109291645563 }, "geometry": { "type": "Point", "coordinates": [ 85.32162796733634, 27.635109291645563 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2429, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 103, "repvalue": 721000, "xcoord": 85.320188611817954, "ycoord": 27.635288701193062 }, "geometry": { "type": "Point", "coordinates": [ 85.320188611817954, 27.635288701193062 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2430, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 99, "repvalue": 693000, "xcoord": 85.320844031424841, "ycoord": 27.635788738999185 }, "geometry": { "type": "Point", "coordinates": [ 85.320844031424841, 27.635788738999185 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2431, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Ind", "fptarea": 89, "repvalue": 445000, "xcoord": 85.320736547330597, "ycoord": 27.635590597690282 }, "geometry": { "type": "Point", "coordinates": [ 85.320736547330597, 27.635590597690282 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2432, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 88, "repvalue": 792000, "xcoord": 85.321393473241571, "ycoord": 27.635992231441165 }, "geometry": { "type": "Point", "coordinates": [ 85.321393473241571, 27.635992231441165 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2433, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 87, "repvalue": 435000, "xcoord": 85.320406583422866, "ycoord": 27.635488181311242 }, "geometry": { "type": "Point", "coordinates": [ 85.320406583422866, 27.635488181311242 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2434, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 100, "repvalue": 900000, "xcoord": 85.321745963600392, "ycoord": 27.634618620660287 }, "geometry": { "type": "Point", "coordinates": [ 85.321745963600392, 27.634618620660287 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2435, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 99, "repvalue": 594000, "xcoord": 85.321178503040088, "ycoord": 27.635595949509565 }, "geometry": { "type": "Point", "coordinates": [ 85.321178503040088, 27.635595949509565 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2436, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+8s+Ind", "fptarea": 91, "repvalue": 728000, "xcoord": 85.321411495972967, "ycoord": 27.634811411721341 }, "geometry": { "type": "Point", "coordinates": [ 85.321411495972967, 27.634811411721341 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2437, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 96, "repvalue": 576000, "xcoord": 85.320739552319338, "ycoord": 27.635393794473384 }, "geometry": { "type": "Point", "coordinates": [ 85.320739552319338, 27.635393794473384 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2438, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 98, "repvalue": 784000, "xcoord": 85.321620458871408, "ycoord": 27.635601299921486 }, "geometry": { "type": "Point", "coordinates": [ 85.321620458871408, 27.635601299921486 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2439, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Ind", "fptarea": 85, "repvalue": 850000, "xcoord": 85.321742960510861, "ycoord": 27.634815424000923 }, "geometry": { "type": "Point", "coordinates": [ 85.321742960510861, 27.634815424000923 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2440, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 89, "repvalue": 445000, "xcoord": 85.321284485927478, "ycoord": 27.635892492142283 }, "geometry": { "type": "Point", "coordinates": [ 85.321284485927478, 27.635892492142283 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2441, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 95, "repvalue": 855000, "xcoord": 85.320738049828776, "ycoord": 27.635492196082573 }, "geometry": { "type": "Point", "coordinates": [ 85.320738049828776, 27.635492196082573 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2442, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 100, "repvalue": 900000, "xcoord": 85.323170305883892, "ycoord": 27.635423211818626 }, "geometry": { "type": "Point", "coordinates": [ 85.323170305883892, 27.635423211818626 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2443, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Ind", "fptarea": 90, "repvalue": 540000, "xcoord": 85.32053209875491, "ycoord": 27.634505503609564 }, "geometry": { "type": "Point", "coordinates": [ 85.32053209875491, 27.634505503609564 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2444, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 100, "repvalue": 500000, "xcoord": 85.321947421543229, "ycoord": 27.635900516804814 }, "geometry": { "type": "Point", "coordinates": [ 85.321947421543229, 27.635900516804814 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2445, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+9s+Ind", "fptarea": 91, "repvalue": 819000, "xcoord": 85.320751571969609, "ycoord": 27.634606581546905 }, "geometry": { "type": "Point", "coordinates": [ 85.320751571969609, 27.634606581546905 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2446, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 101, "repvalue": 606000, "xcoord": 85.320965036597386, "ycoord": 27.635101265666879 }, "geometry": { "type": "Point", "coordinates": [ 85.320965036597386, 27.635101265666879 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2447, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 90, "repvalue": 720000, "xcoord": 85.321071018497548, "ycoord": 27.63539780843638 }, "geometry": { "type": "Point", "coordinates": [ 85.321071018497548, 27.63539780843638 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2448, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 100, "repvalue": 600000, "xcoord": 85.320642586569463, "ycoord": 27.634506841810989 }, "geometry": { "type": "Point", "coordinates": [ 85.320642586569463, 27.634506841810989 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2449, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 96, "repvalue": 672000, "xcoord": 85.322056409495502, "ycoord": 27.636000255609314 }, "geometry": { "type": "Point", "coordinates": [ 85.322056409495502, 27.636000255609314 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2450, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 89, "repvalue": 890000, "xcoord": 85.323050814390044, "ycoord": 27.63601228592416 }, "geometry": { "type": "Point", "coordinates": [ 85.323050814390044, 27.63601228592416 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2451, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 96, "repvalue": 960000, "xcoord": 85.3213919712978, "ycoord": 27.636090633074907 }, "geometry": { "type": "Point", "coordinates": [ 85.3213919712978, 27.636090633074907 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2452, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 99, "repvalue": 792000, "xcoord": 85.321400982846214, "ycoord": 27.635500223250332 }, "geometry": { "type": "Point", "coordinates": [ 85.321400982846214, 27.635500223250332 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2453, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 88, "repvalue": 528000, "xcoord": 85.320409588988824, "ycoord": 27.635291378124805 }, "geometry": { "type": "Point", "coordinates": [ 85.320409588988824, 27.635291378124805 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2454, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 91, "repvalue": 728000, "xcoord": 85.320294591742979, "ycoord": 27.635585244463662 }, "geometry": { "type": "Point", "coordinates": [ 85.320294591742979, 27.635585244463662 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2455, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+5s+Ind", "fptarea": 100, "repvalue": 500000, "xcoord": 85.320296094636134, "ycoord": 27.635486842878212 }, "geometry": { "type": "Point", "coordinates": [ 85.320296094636134, 27.635486842878212 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2456, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+9s+Ind", "fptarea": 92, "repvalue": 828000, "xcoord": 85.321169490261013, "ycoord": 27.63618635925852 }, "geometry": { "type": "Point", "coordinates": [ 85.321169490261013, 27.63618635925852 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2457, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 103, "repvalue": 515000, "xcoord": 85.321511471709115, "ycoord": 27.635501560803768 }, "geometry": { "type": "Point", "coordinates": [ 85.321511471709115, 27.635501560803768 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2458, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 90, "repvalue": 720000, "xcoord": 85.320524585581282, "ycoord": 27.634997511651338 }, "geometry": { "type": "Point", "coordinates": [ 85.320524585581282, 27.634997511651338 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2459, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Ind", "fptarea": 98, "repvalue": 588000, "xcoord": 85.322513376294751, "ycoord": 27.635021586320736 }, "geometry": { "type": "Point", "coordinates": [ 85.322513376294751, 27.635021586320736 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2460, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 93, "repvalue": 837000, "xcoord": 85.321835430713747, "ycoord": 27.635997581238446 }, "geometry": { "type": "Point", "coordinates": [ 85.321835430713747, 27.635997581238446 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2461, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+9s+Ind", "fptarea": 92, "repvalue": 828000, "xcoord": 85.322286395070606, "ycoord": 27.635412519527875 }, "geometry": { "type": "Point", "coordinates": [ 85.322286395070606, 27.635412519527875 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2462, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Ind", "fptarea": 95, "repvalue": 855000, "xcoord": 85.3215039625982, "ycoord": 27.635993569022421 }, "geometry": { "type": "Point", "coordinates": [ 85.3215039625982, 27.635993569022421 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2463, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 90, "repvalue": 630000, "xcoord": 85.322511875414548, "ycoord": 27.63511998802484 }, "geometry": { "type": "Point", "coordinates": [ 85.322511875414548, 27.63511998802484 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2464, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Ind", "fptarea": 91, "repvalue": 546000, "xcoord": 85.32195192582482, "ycoord": 27.635605311806856 }, "geometry": { "type": "Point", "coordinates": [ 85.32195192582482, 27.635605311806856 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2465, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 94, "repvalue": 846000, "xcoord": 85.321942917193141, "ycoord": 27.636195721789527 }, "geometry": { "type": "Point", "coordinates": [ 85.321942917193141, 27.636195721789527 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2466, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 101, "repvalue": 707000, "xcoord": 85.322065417443369, "ycoord": 27.635409845575602 }, "geometry": { "type": "Point", "coordinates": [ 85.322065417443369, 27.635409845575602 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2467, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 95, "repvalue": 760000, "xcoord": 85.320305111835083, "ycoord": 27.634896433334649 }, "geometry": { "type": "Point", "coordinates": [ 85.320305111835083, 27.634896433334649 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2468, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 102, "repvalue": 1020000, "xcoord": 85.320845533839503, "ycoord": 27.635690337388848 }, "geometry": { "type": "Point", "coordinates": [ 85.320845533839503, 27.635690337388848 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2469, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 102, "repvalue": 714000, "xcoord": 85.32062305320558, "ycoord": 27.635786062715439 }, "geometry": { "type": "Point", "coordinates": [ 85.32062305320558, 27.635786062715439 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2470, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 97, "repvalue": 873000, "xcoord": 85.322069921314551, "ycoord": 27.635114640538863 }, "geometry": { "type": "Point", "coordinates": [ 85.322069921314551, 27.635114640538863 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2471, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Ind", "fptarea": 92, "repvalue": 460000, "xcoord": 85.321944418650773, "ycoord": 27.636097320129423 }, "geometry": { "type": "Point", "coordinates": [ 85.321944418650773, 27.636097320129423 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2472, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 100, "repvalue": 900000, "xcoord": 85.320418605503889, "ycoord": 27.634700968530165 }, "geometry": { "type": "Point", "coordinates": [ 85.320418605503889, 27.634700968530165 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2473, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 95, "repvalue": 665000, "xcoord": 85.320175084753714, "ycoord": 27.636174315385425 }, "geometry": { "type": "Point", "coordinates": [ 85.320175084753714, 27.636174315385425 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2474, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 100, "repvalue": 700000, "xcoord": 85.322510374526743, "ycoord": 27.635218389727473 }, "geometry": { "type": "Point", "coordinates": [ 85.322510374526743, 27.635218389727473 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2475, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Ind", "fptarea": 105, "repvalue": 1050000, "xcoord": 85.321962435548812, "ycoord": 27.634916500093425 }, "geometry": { "type": "Point", "coordinates": [ 85.321962435548812, 27.634916500093425 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2476, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+8s+Ind", "fptarea": 88, "repvalue": 704000, "xcoord": 85.3230583165887, "ycoord": 27.635520277316154 }, "geometry": { "type": "Point", "coordinates": [ 85.3230583165887, 27.635520277316154 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2477, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+7s+Ind", "fptarea": 91, "repvalue": 637000, "xcoord": 85.320520077585698, "ycoord": 27.635292716458739 }, "geometry": { "type": "Point", "coordinates": [ 85.320520077585698, 27.635292716458739 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2478, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 96, "repvalue": 864000, "xcoord": 85.32141299781776, "ycoord": 27.634713010068459 }, "geometry": { "type": "Point", "coordinates": [ 85.32141299781776, 27.634713010068459 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2479, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+5s+Ind", "fptarea": 105, "repvalue": 525000, "xcoord": 85.321497955172433, "ycoord": 27.636387175570849 }, "geometry": { "type": "Point", "coordinates": [ 85.321497955172433, 27.636387175570849 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2480, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 85, "repvalue": 510000, "xcoord": 85.321611448462278, "ycoord": 27.636191709804006 }, "geometry": { "type": "Point", "coordinates": [ 85.321611448462278, 27.636191709804006 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2481, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 97, "repvalue": 873000, "xcoord": 85.320281065361755, "ycoord": 27.636470858666385 }, "geometry": { "type": "Point", "coordinates": [ 85.320281065361755, 27.636470858666385 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2482, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 99, "repvalue": 891000, "xcoord": 85.322619362372819, "ycoord": 27.635318128091349 }, "geometry": { "type": "Point", "coordinates": [ 85.322619362372819, 27.635318128091349 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2483, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 92, "repvalue": 736000, "xcoord": 85.320630566190175, "ycoord": 27.635294054704712 }, "geometry": { "type": "Point", "coordinates": [ 85.320630566190175, 27.635294054704712 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2484, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Ind", "fptarea": 101, "repvalue": 505000, "xcoord": 85.322728350416398, "ycoord": 27.63541786637693 }, "geometry": { "type": "Point", "coordinates": [ 85.322728350416398, 27.63541786637693 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2485, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 102, "repvalue": 612000, "xcoord": 85.321518980629691, "ycoord": 27.635009552548311 }, "geometry": { "type": "Point", "coordinates": [ 85.321518980629691, 27.635009552548311 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2486, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 99, "repvalue": 990000, "xcoord": 85.323274793846466, "ycoord": 27.63581815489886 }, "geometry": { "type": "Point", "coordinates": [ 85.323274793846466, 27.63581815489886 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2487, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 93, "repvalue": 744000, "xcoord": 85.321186013479902, "ycoord": 27.635103941344937 }, "geometry": { "type": "Point", "coordinates": [ 85.321186013479902, 27.635103941344937 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2488, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 88, "repvalue": 528000, "xcoord": 85.322059412175221, "ycoord": 27.635803452270626 }, "geometry": { "type": "Point", "coordinates": [ 85.322059412175221, 27.635803452270626 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2489, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Ind", "fptarea": 97, "repvalue": 485000, "xcoord": 85.321948922978038, "ycoord": 27.635802115140297 }, "geometry": { "type": "Point", "coordinates": [ 85.321948922978038, 27.635802115140297 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2490, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 95, "repvalue": 570000, "xcoord": 85.323386783278451, "ycoord": 27.635721089235386 }, "geometry": { "type": "Point", "coordinates": [ 85.323386783278451, 27.635721089235386 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2491, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+8s+Ind", "fptarea": 99, "repvalue": 792000, "xcoord": 85.322941825480569, "ycoord": 27.635912547861256 }, "geometry": { "type": "Point", "coordinates": [ 85.322941825480569, 27.635912547861256 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2492, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 94, "repvalue": 470000, "xcoord": 85.321854950155213, "ycoord": 27.634718359576393 }, "geometry": { "type": "Point", "coordinates": [ 85.321854950155213, 27.634718359576393 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2493, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 96, "repvalue": 480000, "xcoord": 85.3222743859925, "ycoord": 27.636199732983386 }, "geometry": { "type": "Point", "coordinates": [ 85.3222743859925, 27.636199732983386 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2494, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 92, "repvalue": 920000, "xcoord": 85.321517478860812, "ycoord": 27.635107954202343 }, "geometry": { "type": "Point", "coordinates": [ 85.321517478860812, 27.635107954202343 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2495, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+10s+Ind", "fptarea": 93, "repvalue": 930000, "xcoord": 85.320857552882615, "ycoord": 27.634903124453164 }, "geometry": { "type": "Point", "coordinates": [ 85.320857552882615, 27.634903124453164 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2496, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 97, "repvalue": 873000, "xcoord": 85.321724941334267, "ycoord": 27.63599624392106 }, "geometry": { "type": "Point", "coordinates": [ 85.321724941334267, 27.63599624392106 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2497, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 96, "repvalue": 576000, "xcoord": 85.322720846774587, "ycoord": 27.635909874908887 }, "geometry": { "type": "Point", "coordinates": [ 85.322720846774587, 27.635909874908887 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2498, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 101, "repvalue": 808000, "xcoord": 85.320835016776954, "ycoord": 27.636379148630294 }, "geometry": { "type": "Point", "coordinates": [ 85.320835016776954, 27.636379148630294 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2499, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 101, "repvalue": 808000, "xcoord": 85.322295401559586, "ycoord": 27.634822109374419 }, "geometry": { "type": "Point", "coordinates": [ 85.322295401559586, 27.634822109374419 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2500, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 104, "repvalue": 936000, "xcoord": 85.32316580490658, "ycoord": 27.635718417008935 }, "geometry": { "type": "Point", "coordinates": [ 85.32316580490658, 27.635718417008935 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2501, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 89, "repvalue": 623000, "xcoord": 85.320423113658606, "ycoord": 27.634405763712973 }, "geometry": { "type": "Point", "coordinates": [ 85.320423113658606, 27.634405763712973 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2502, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 100, "repvalue": 700000, "xcoord": 85.322614859937147, "ycoord": 27.635613333202677 }, "geometry": { "type": "Point", "coordinates": [ 85.322614859937147, 27.635613333202677 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2503, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+6s+Ind", "fptarea": 93, "repvalue": 558000, "xcoord": 85.320842529002576, "ycoord": 27.635887140608045 }, "geometry": { "type": "Point", "coordinates": [ 85.320842529002576, 27.635887140608045 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2504, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 90, "repvalue": 810000, "xcoord": 85.322181911004577, "ycoord": 27.635017575854878 }, "geometry": { "type": "Point", "coordinates": [ 85.322181911004577, 27.635017575854878 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2505, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 103, "repvalue": 824000, "xcoord": 85.320182599865589, "ycoord": 27.635682307515498 }, "geometry": { "type": "Point", "coordinates": [ 85.320182599865589, 27.635682307515498 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2506, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 90, "repvalue": 720000, "xcoord": 85.321720436368864, "ycoord": 27.636291448867983 }, "geometry": { "type": "Point", "coordinates": [ 85.321720436368864, 27.636291448867983 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2507, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 89, "repvalue": 623000, "xcoord": 85.320962032049309, "ycoord": 27.635298068914885 }, "geometry": { "type": "Point", "coordinates": [ 85.320962032049309, 27.635298068914885 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2508, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 99, "repvalue": 594000, "xcoord": 85.320184102865113, "ycoord": 27.6355839059371 }, "geometry": { "type": "Point", "coordinates": [ 85.320184102865113, 27.6355839059371 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2509, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 92, "repvalue": 736000, "xcoord": 85.322290898349337, "ycoord": 27.635117314457769 }, "geometry": { "type": "Point", "coordinates": [ 85.322290898349337, 27.635117314457769 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2510, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Ind", "fptarea": 96, "repvalue": 480000, "xcoord": 85.320951515891224, "ycoord": 27.635986880236512 }, "geometry": { "type": "Point", "coordinates": [ 85.320951515891224, 27.635986880236512 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2511, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 91, "repvalue": 819000, "xcoord": 85.321083035778017, "ycoord": 27.634610595376301 }, "geometry": { "type": "Point", "coordinates": [ 85.321083035778017, 27.634610595376301 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2512, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 87, "repvalue": 870000, "xcoord": 85.320529093508313, "ycoord": 27.63470230683069 }, "geometry": { "type": "Point", "coordinates": [ 85.320529093508313, 27.63470230683069 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2513, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Ind", "fptarea": 97, "repvalue": 485000, "xcoord": 85.321941415727892, "ycoord": 27.636294123448156 }, "geometry": { "type": "Point", "coordinates": [ 85.321941415727892, 27.636294123448156 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2514, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 98, "repvalue": 882000, "xcoord": 85.320947008852102, "ycoord": 27.636282085066554 }, "geometry": { "type": "Point", "coordinates": [ 85.320947008852102, 27.636282085066554 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2515, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 92, "repvalue": 644000, "xcoord": 85.320851543421981, "ycoord": 27.635296730932779 }, "geometry": { "type": "Point", "coordinates": [ 85.320851543421981, 27.635296730932779 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2516, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 85, "repvalue": 680000, "xcoord": 85.323052314845, "ycoord": 27.635913884205497 }, "geometry": { "type": "Point", "coordinates": [ 85.323052314845, 27.635913884205497 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2517, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 100, "repvalue": 500000, "xcoord": 85.321615953701098, "ycoord": 27.635896504869368 }, "geometry": { "type": "Point", "coordinates": [ 85.321615953701098, 27.635896504869368 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2518, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 91, "repvalue": 637000, "xcoord": 85.321730947848266, "ycoord": 27.635602637304565 }, "geometry": { "type": "Point", "coordinates": [ 85.321730947848266, 27.635602637304565 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2519, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 98, "repvalue": 784000, "xcoord": 85.322386376670167, "ycoord": 27.636102668189732 }, "geometry": { "type": "Point", "coordinates": [ 85.322386376670167, 27.636102668189732 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2520, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 86, "repvalue": 602000, "xcoord": 85.322384875607511, "ycoord": 27.636201069872079 }, "geometry": { "type": "Point", "coordinates": [ 85.322384875607511, 27.636201069872079 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2521, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 89, "repvalue": 712000, "xcoord": 85.321399480940514, "ycoord": 27.635598624891447 }, "geometry": { "type": "Point", "coordinates": [ 85.321399480940514, 27.635598624891447 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2522, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 99, "repvalue": 594000, "xcoord": 85.321388967387421, "ycoord": 27.636287436338002 }, "geometry": { "type": "Point", "coordinates": [ 85.321388967387421, 27.636287436338002 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2523, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 91, "repvalue": 546000, "xcoord": 85.321296501932594, "ycoord": 27.635105279052034 }, "geometry": { "type": "Point", "coordinates": [ 85.321296501932594, 27.635105279052034 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2524, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+5s+Ind", "fptarea": 85, "repvalue": 425000, "xcoord": 85.320411091760377, "ycoord": 27.635192976529375 }, "geometry": { "type": "Point", "coordinates": [ 85.320411091760377, 27.635192976529375 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2525, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 91, "repvalue": 819000, "xcoord": 85.321956430037915, "ycoord": 27.635310106795639 }, "geometry": { "type": "Point", "coordinates": [ 85.321956430037915, 27.635310106795639 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2526, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 101, "repvalue": 909000, "xcoord": 85.322166898897791, "ycoord": 27.636001592662808 }, "geometry": { "type": "Point", "coordinates": [ 85.322166898897791, 27.636001592662808 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2527, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 90, "repvalue": 900000, "xcoord": 85.322843341069429, "ycoord": 27.635123997715763 }, "geometry": { "type": "Point", "coordinates": [ 85.322843341069429, 27.635123997715763 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2528, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Ind", "fptarea": 94, "repvalue": 564000, "xcoord": 85.320615540030559, "ycoord": 27.636278070689372 }, "geometry": { "type": "Point", "coordinates": [ 85.320615540030559, 27.636278070689372 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2529, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 92, "repvalue": 644000, "xcoord": 85.320614037372707, "ycoord": 27.636376472279743 }, "geometry": { "type": "Point", "coordinates": [ 85.320614037372707, 27.636376472279743 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2530, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 101, "repvalue": 808000, "xcoord": 85.322725348982488, "ycoord": 27.635614669794119 }, "geometry": { "type": "Point", "coordinates": [ 85.322725348982488, 27.635614669794119 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2531, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Ind", "fptarea": 94, "repvalue": 658000, "xcoord": 85.321288991986492, "ycoord": 27.63559728724448 }, "geometry": { "type": "Point", "coordinates": [ 85.321288991986492, 27.63559728724448 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2532, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 96, "repvalue": 864000, "xcoord": 85.322626866280132, "ycoord": 27.634826119543042 }, "geometry": { "type": "Point", "coordinates": [ 85.322626866280132, 27.634826119543042 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2533, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 97, "repvalue": 582000, "xcoord": 85.321523485890708, "ycoord": 27.634714347577372 }, "geometry": { "type": "Point", "coordinates": [ 85.321523485890708, 27.634714347577372 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2534, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 96, "repvalue": 672000, "xcoord": 85.323280794769786, "ycoord": 27.63542454795915 }, "geometry": { "type": "Point", "coordinates": [ 85.323280794769786, 27.63542454795915 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2535, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 95, "repvalue": 855000, "xcoord": 85.321192021694714, "ycoord": 27.63471033478675 }, "geometry": { "type": "Point", "coordinates": [ 85.321192021694714, 27.63471033478675 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2536, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+9s+Ind", "fptarea": 94, "repvalue": 846000, "xcoord": 85.320288580094171, "ycoord": 27.635978850790703 }, "geometry": { "type": "Point", "coordinates": [ 85.320288580094171, 27.635978850790703 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2537, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+7s+Ind", "fptarea": 86, "repvalue": 602000, "xcoord": 85.322834337405837, "ycoord": 27.635714408009559 }, "geometry": { "type": "Point", "coordinates": [ 85.322834337405837, 27.635714408009559 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2538, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 94, "repvalue": 846000, "xcoord": 85.321409994120557, "ycoord": 27.634909813372758 }, "geometry": { "type": "Point", "coordinates": [ 85.321409994120557, 27.634909813372758 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2539, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 98, "repvalue": 784000, "xcoord": 85.321953427236792, "ycoord": 27.635506910137916 }, "geometry": { "type": "Point", "coordinates": [ 85.321953427236792, 27.635506910137916 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2540, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 100, "repvalue": 700000, "xcoord": 85.323389783542609, "ycoord": 27.635524285754414 }, "geometry": { "type": "Point", "coordinates": [ 85.323389783542609, 27.635524285754414 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2541, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 93, "repvalue": 744000, "xcoord": 85.320971045602107, "ycoord": 27.634707659153221 }, "geometry": { "type": "Point", "coordinates": [ 85.320971045602107, 27.634707659153221 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2542, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 96, "repvalue": 864000, "xcoord": 85.321954928641162, "ycoord": 27.635408508467521 }, "geometry": { "type": "Point", "coordinates": [ 85.321954928641162, 27.635408508467521 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2543, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 87, "repvalue": 522000, "xcoord": 85.32183242760857, "ycoord": 27.636194384548983 }, "geometry": { "type": "Point", "coordinates": [ 85.32183242760857, 27.636194384548983 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2544, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 90, "repvalue": 540000, "xcoord": 85.320744059745309, "ycoord": 27.635098589636993 }, "geometry": { "type": "Point", "coordinates": [ 85.320744059745309, 27.635098589636993 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2545, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 100, "repvalue": 700000, "xcoord": 85.320535103971054, "ycoord": 27.634308700382547 }, "geometry": { "type": "Point", "coordinates": [ 85.320535103971054, 27.634308700382547 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2546, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 101, "repvalue": 606000, "xcoord": 85.320735044824801, "ycoord": 27.635688999296523 }, "geometry": { "type": "Point", "coordinates": [ 85.320735044824801, 27.635688999296523 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2547, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 103, "repvalue": 824000, "xcoord": 85.321164983768696, "ycoord": 27.636481564113136 }, "geometry": { "type": "Point", "coordinates": [ 85.321164983768696, 27.636481564113136 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2548, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 97, "repvalue": 970000, "xcoord": 85.320506553187599, "ycoord": 27.636178330801442 }, "geometry": { "type": "Point", "coordinates": [ 85.320506553187599, 27.636178330801442 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2549, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+10s+Ind", "fptarea": 102, "repvalue": 1020000, "xcoord": 85.32128148185005, "ycoord": 27.636089295400122 }, "geometry": { "type": "Point", "coordinates": [ 85.32128148185005, 27.636089295400122 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2550, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Ind", "fptarea": 100, "repvalue": 600000, "xcoord": 85.322726849703244, "ycoord": 27.635516268086256 }, "geometry": { "type": "Point", "coordinates": [ 85.322726849703244, 27.635516268086256 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2551, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 103, "repvalue": 927000, "xcoord": 85.322829835471339, "ycoord": 27.63600961313659 }, "geometry": { "type": "Point", "coordinates": [ 85.322829835471339, 27.63600961313659 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2552, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Ind", "fptarea": 98, "repvalue": 588000, "xcoord": 85.321732449457727, "ycoord": 27.635504235646767 }, "geometry": { "type": "Point", "coordinates": [ 85.321732449457727, 27.635504235646767 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2553, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 99, "repvalue": 891000, "xcoord": 85.320621550585813, "ycoord": 27.635884464313172 }, "geometry": { "type": "Point", "coordinates": [ 85.320621550585813, 27.635884464313172 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2554, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 95, "repvalue": 665000, "xcoord": 85.321506966265403, "ycoord": 27.635796765739371 }, "geometry": { "type": "Point", "coordinates": [ 85.321506966265403, 27.635796765739371 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2555, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 97, "repvalue": 582000, "xcoord": 85.321524987629161, "ycoord": 27.634615945917449 }, "geometry": { "type": "Point", "coordinates": [ 85.321524987629161, 27.634615945917449 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2556, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 93, "repvalue": 465000, "xcoord": 85.321080031503584, "ycoord": 27.634807398650157 }, "geometry": { "type": "Point", "coordinates": [ 85.321080031503584, 27.634807398650157 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2557, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 105, "repvalue": 525000, "xcoord": 85.320402075016787, "ycoord": 27.635783386079854 }, "geometry": { "type": "Point", "coordinates": [ 85.320402075016787, 27.635783386079854 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2558, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 93, "repvalue": 465000, "xcoord": 85.320638078984359, "ycoord": 27.634802046657178 }, "geometry": { "type": "Point", "coordinates": [ 85.320638078984359, 27.634802046657178 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2559, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Ind", "fptarea": 92, "repvalue": 920000, "xcoord": 85.322183412173402, "ycoord": 27.634919174165994 }, "geometry": { "type": "Point", "coordinates": [ 85.322183412173402, 27.634919174165994 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2560, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 95, "repvalue": 950000, "xcoord": 85.322281891723392, "ycoord": 27.63570772458473 }, "geometry": { "type": "Point", "coordinates": [ 85.322281891723392, 27.63570772458473 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2561, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Ind", "fptarea": 86, "repvalue": 516000, "xcoord": 85.321959432808598, "ycoord": 27.635113303447472 }, "geometry": { "type": "Point", "coordinates": [ 85.321959432808598, 27.635113303447472 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2562, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 92, "repvalue": 828000, "xcoord": 85.321618957155579, "ycoord": 27.635699701572253 }, "geometry": { "type": "Point", "coordinates": [ 85.321618957155579, 27.635699701572253 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2563, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 102, "repvalue": 918000, "xcoord": 85.32040357782644, "ycoord": 27.635684984491792 }, "geometry": { "type": "Point", "coordinates": [ 85.32040357782644, 27.635684984491792 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2564, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 91, "repvalue": 819000, "xcoord": 85.323277794323346, "ycoord": 27.635621351431951 }, "geometry": { "type": "Point", "coordinates": [ 85.323277794323346, 27.635621351431951 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2565, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 102, "repvalue": 1020000, "xcoord": 85.322165397645264, "ycoord": 27.636099994335499 }, "geometry": { "type": "Point", "coordinates": [ 85.322165397645264, 27.636099994335499 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2566, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 98, "repvalue": 784000, "xcoord": 85.321609946700775, "ycoord": 27.636290111445948 }, "geometry": { "type": "Point", "coordinates": [ 85.321609946700775, 27.636290111445948 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2567, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 100, "repvalue": 700000, "xcoord": 85.320417102770435, "ycoord": 27.634799370132953 }, "geometry": { "type": "Point", "coordinates": [ 85.320417102770435, 27.634799370132953 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2568, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 102, "repvalue": 714000, "xcoord": 85.32031112314867, "ycoord": 27.634502826942835 }, "geometry": { "type": "Point", "coordinates": [ 85.32031112314867, 27.634502826942835 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2569, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+6s+Ind", "fptarea": 105, "repvalue": 630000, "xcoord": 85.321623462280215, "ycoord": 27.635404496615539 }, "geometry": { "type": "Point", "coordinates": [ 85.321623462280215, 27.635404496615539 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2570, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 93, "repvalue": 558000, "xcoord": 85.322180409828135, "ycoord": 27.635115977542291 }, "geometry": { "type": "Point", "coordinates": [ 85.322180409828135, 27.635115977542291 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2571, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 86, "repvalue": 430000, "xcoord": 85.322943326026675, "ycoord": 27.635814146146686 }, "geometry": { "type": "Point", "coordinates": [ 85.322943326026675, 27.635814146146686 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2572, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 88, "repvalue": 616000, "xcoord": 85.323273293596628, "ycoord": 27.635916556630107 }, "geometry": { "type": "Point", "coordinates": [ 85.323273293596628, 27.635916556630107 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2573, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Ind", "fptarea": 102, "repvalue": 714000, "xcoord": 85.322163896385106, "ycoord": 27.63619839600673 }, "geometry": { "type": "Point", "coordinates": [ 85.322163896385106, 27.63619839600673 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2574, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 102, "repvalue": 918000, "xcoord": 85.321842938343451, "ycoord": 27.635505572936324 }, "geometry": { "type": "Point", "coordinates": [ 85.321842938343451, 27.635505572936324 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2575, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 88, "repvalue": 792000, "xcoord": 85.32173695424045, "ycoord": 27.635209030664516 }, "geometry": { "type": "Point", "coordinates": [ 85.32173695424045, 27.635209030664516 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2576, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 100, "repvalue": 800000, "xcoord": 85.322617861568546, "ycoord": 27.635416529796601 }, "geometry": { "type": "Point", "coordinates": [ 85.322617861568546, 27.635416529796601 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2577, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Ind", "fptarea": 99, "repvalue": 891000, "xcoord": 85.323056816164183, "ycoord": 27.6356186790407 }, "geometry": { "type": "Point", "coordinates": [ 85.323056816164183, 27.6356186790407 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2578, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 103, "repvalue": 721000, "xcoord": 85.321741458954676, "ycoord": 27.634913825669027 }, "geometry": { "type": "Point", "coordinates": [ 85.321741458954676, 27.634913825669027 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2579, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 89, "repvalue": 445000, "xcoord": 85.322938824365593, "ycoord": 27.636109351285981 }, "geometry": { "type": "Point", "coordinates": [ 85.322938824365593, 27.636109351285981 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2580, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 92, "repvalue": 552000, "xcoord": 85.321726442974196, "ycoord": 27.635897842269145 }, "geometry": { "type": "Point", "coordinates": [ 85.321726442974196, 27.635897842269145 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2581, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+5s+Ind", "fptarea": 90, "repvalue": 450000, "xcoord": 85.322507372728282, "ycoord": 27.635415193128317 }, "geometry": { "type": "Point", "coordinates": [ 85.322507372728282, 27.635415193128317 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2582, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Ind", "fptarea": 87, "repvalue": 435000, "xcoord": 85.321275473603848, "ycoord": 27.636482901898145 }, "geometry": { "type": "Point", "coordinates": [ 85.321275473603848, 27.636482901898145 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2583, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 96, "repvalue": 672000, "xcoord": 85.320848538645976, "ycoord": 27.635493534163764 }, "geometry": { "type": "Point", "coordinates": [ 85.320848538645976, 27.635493534163764 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2584, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 104, "repvalue": 728000, "xcoord": 85.322835838035445, "ycoord": 27.635616006297607 }, "geometry": { "type": "Point", "coordinates": [ 85.322835838035445, 27.635616006297607 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2585, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 105, "repvalue": 735000, "xcoord": 85.321172494551163, "ycoord": 27.63598955601476 }, "geometry": { "type": "Point", "coordinates": [ 85.321172494551163, 27.63598955601476 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2586, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 95, "repvalue": 570000, "xcoord": 85.320509558662721, "ycoord": 27.63598152762448 }, "geometry": { "type": "Point", "coordinates": [ 85.320509558662721, 27.63598152762448 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2587, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 90, "repvalue": 540000, "xcoord": 85.322499868099001, "ycoord": 27.63590720160467 }, "geometry": { "type": "Point", "coordinates": [ 85.322499868099001, 27.63590720160467 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2588, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 97, "repvalue": 873000, "xcoord": 85.32227888945387, "ycoord": 27.635904527948608 }, "geometry": { "type": "Point", "coordinates": [ 85.32227888945387, 27.635904527948608 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2589, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+7s+Ind", "fptarea": 90, "repvalue": 630000, "xcoord": 85.320515569521561, "ycoord": 27.635587921252892 }, "geometry": { "type": "Point", "coordinates": [ 85.320515569521561, 27.635587921252892 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2590, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+9s+Ind", "fptarea": 89, "repvalue": 801000, "xcoord": 85.320723024504304, "ycoord": 27.636476212093466 }, "geometry": { "type": "Point", "coordinates": [ 85.320723024504304, 27.636476212093466 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2591, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 87, "repvalue": 870000, "xcoord": 85.322293900497101, "ycoord": 27.634920511070344 }, "geometry": { "type": "Point", "coordinates": [ 85.322293900497101, 27.634920511070344 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2592, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Ind", "fptarea": 89, "repvalue": 534000, "xcoord": 85.321856451597441, "ycoord": 27.634619957899776 }, "geometry": { "type": "Point", "coordinates": [ 85.321856451597441, 27.634619957899776 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2593, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 92, "repvalue": 920000, "xcoord": 85.322946327096005, "ycoord": 27.635617342713129 }, "geometry": { "type": "Point", "coordinates": [ 85.322946327096005, 27.635617342713129 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2594, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 102, "repvalue": 816000, "xcoord": 85.322723848254128, "ycoord": 27.635713071500515 }, "geometry": { "type": "Point", "coordinates": [ 85.322723848254128, 27.635713071500515 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2595, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 89, "repvalue": 445000, "xcoord": 85.322516378032347, "ycoord": 27.634824782908126 }, "geometry": { "type": "Point", "coordinates": [ 85.322516378032347, 27.634824782908126 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2596, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Ind", "fptarea": 104, "repvalue": 520000, "xcoord": 85.321397979027196, "ycoord": 27.63569702653108 }, "geometry": { "type": "Point", "coordinates": [ 85.321397979027196, 27.63569702653108 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2597, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Ind", "fptarea": 95, "repvalue": 855000, "xcoord": 85.322075926369607, "ycoord": 27.63472103380262 }, "geometry": { "type": "Point", "coordinates": [ 85.322075926369607, 27.63472103380262 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2598, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+10s+Ind", "fptarea": 100, "repvalue": 1000000, "xcoord": 85.321629469006496, "ycoord": 27.635010889985963 }, "geometry": { "type": "Point", "coordinates": [ 85.321629469006496, 27.635010889985963 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2599, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+8s+Ind", "fptarea": 89, "repvalue": 712000, "xcoord": 85.322289397264029, "ycoord": 27.635215716149276 }, "geometry": { "type": "Point", "coordinates": [ 85.322289397264029, 27.635215716149276 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2600, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 93, "repvalue": 744000, "xcoord": 85.320412594524328, "ycoord": 27.635094574932474 }, "geometry": { "type": "Point", "coordinates": [ 85.320412594524328, 27.635094574932474 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2601, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 88, "repvalue": 704000, "xcoord": 85.321612950216149, "ycoord": 27.6360933081606 }, "geometry": { "type": "Point", "coordinates": [ 85.321612950216149, 27.6360933081606 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2602, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 90, "repvalue": 540000, "xcoord": 85.322622363958573, "ycoord": 27.635121324676437 }, "geometry": { "type": "Point", "coordinates": [ 85.322622363958573, 27.635121324676437 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2603, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 91, "repvalue": 819000, "xcoord": 85.322178908644105, "ycoord": 27.635214379228238 }, "geometry": { "type": "Point", "coordinates": [ 85.322178908644105, 27.635214379228238 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2604, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 89, "repvalue": 534000, "xcoord": 85.320300603269885, "ycoord": 27.635191638113053 }, "geometry": { "type": "Point", "coordinates": [ 85.320300603269885, 27.635191638113053 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2605, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+9s+Ind", "fptarea": 92, "repvalue": 828000, "xcoord": 85.323171806194466, "ycoord": 27.635324810085571 }, "geometry": { "type": "Point", "coordinates": [ 85.323171806194466, 27.635324810085571 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2606, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 99, "repvalue": 693000, "xcoord": 85.32106951630324, "ycoord": 27.635496210062268 }, "geometry": { "type": "Point", "coordinates": [ 85.32106951630324, 27.635496210062268 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2607, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Ind", "fptarea": 91, "repvalue": 546000, "xcoord": 85.322944826565148, "ycoord": 27.635715744430644 }, "geometry": { "type": "Point", "coordinates": [ 85.322944826565148, 27.635715744430644 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2608, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 95, "repvalue": 665000, "xcoord": 85.320187108841296, "ycoord": 27.635387102775884 }, "geometry": { "type": "Point", "coordinates": [ 85.320187108841296, 27.635387102775884 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2609, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 91, "repvalue": 637000, "xcoord": 85.320636576440748, "ycoord": 27.634900448269629 }, "geometry": { "type": "Point", "coordinates": [ 85.320636576440748, 27.634900448269629 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2610, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 98, "repvalue": 882000, "xcoord": 85.320724527071008, "ycoord": 27.636377810498995 }, "geometry": { "type": "Point", "coordinates": [ 85.320724527071008, 27.636377810498995 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2611, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 101, "repvalue": 808000, "xcoord": 85.322060913503677, "ycoord": 27.635705050599078 }, "geometry": { "type": "Point", "coordinates": [ 85.322060913503677, 27.635705050599078 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2612, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Ind", "fptarea": 94, "repvalue": 846000, "xcoord": 85.32062756101918, "ycoord": 27.635490857913418 }, "geometry": { "type": "Point", "coordinates": [ 85.32062756101918, 27.635490857913418 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2613, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 96, "repvalue": 960000, "xcoord": 85.321396477106276, "ycoord": 27.635795428169242 }, "geometry": { "type": "Point", "coordinates": [ 85.321396477106276, 27.635795428169242 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2614, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 93, "repvalue": 744000, "xcoord": 85.32106500967457, "ycoord": 27.635791414931088 }, "geometry": { "type": "Point", "coordinates": [ 85.32106500967457, 27.635791414931088 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2615, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 103, "repvalue": 515000, "xcoord": 85.321077027198697, "ycoord": 27.635004201918122 }, "geometry": { "type": "Point", "coordinates": [ 85.321077027198697, 27.635004201918122 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2616, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+8s+Ind", "fptarea": 86, "repvalue": 688000, "xcoord": 85.321727944606494, "ycoord": 27.635799440615756 }, "geometry": { "type": "Point", "coordinates": [ 85.321727944606494, 27.635799440615756 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2617, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 91, "repvalue": 819000, "xcoord": 85.32074856710274, "ycoord": 27.634803384787357 }, "geometry": { "type": "Point", "coordinates": [ 85.32074856710274, 27.634803384787357 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2618, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 96, "repvalue": 672000, "xcoord": 85.322502869973533, "ycoord": 27.635710398218546 }, "geometry": { "type": "Point", "coordinates": [ 85.322502869973533, 27.635710398218546 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2619, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 93, "repvalue": 651000, "xcoord": 85.320954520545897, "ycoord": 27.635790077009116 }, "geometry": { "type": "Point", "coordinates": [ 85.320954520545897, 27.635790077009116 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2620, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 97, "repvalue": 776000, "xcoord": 85.320953018222369, "ycoord": 27.635888478623549 }, "geometry": { "type": "Point", "coordinates": [ 85.320953018222369, 27.635888478623549 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2621, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 93, "repvalue": 744000, "xcoord": 85.322053406785315, "ycoord": 27.636197058942109 }, "geometry": { "type": "Point", "coordinates": [ 85.322053406785315, 27.636197058942109 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2622, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 91, "repvalue": 728000, "xcoord": 85.32304781345735, "ycoord": 27.636209089357052 }, "geometry": { "type": "Point", "coordinates": [ 85.32304781345735, 27.636209089357052 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2623, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 101, "repvalue": 909000, "xcoord": 85.320502044917788, "ycoord": 27.636473535555854 }, "geometry": { "type": "Point", "coordinates": [ 85.320502044917788, 27.636473535555854 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2624, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Ind", "fptarea": 91, "repvalue": 819000, "xcoord": 85.323053815292326, "ycoord": 27.63581548248537 }, "geometry": { "type": "Point", "coordinates": [ 85.323053815292326, 27.63581548248537 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2625, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Ind", "fptarea": 101, "repvalue": 1010000, "xcoord": 85.320629063608493, "ycoord": 27.635392456309802 }, "geometry": { "type": "Point", "coordinates": [ 85.320629063608493, 27.635392456309802 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2626, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 101, "repvalue": 909000, "xcoord": 85.320839524135167, "ycoord": 27.636083943821362 }, "geometry": { "type": "Point", "coordinates": [ 85.320839524135167, 27.636083943821362 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2627, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 98, "repvalue": 686000, "xcoord": 85.321833929164967, "ycoord": 27.636095982894446 }, "geometry": { "type": "Point", "coordinates": [ 85.321833929164967, 27.636095982894446 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2628, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 94, "repvalue": 752000, "xcoord": 85.320832011833389, "ycoord": 27.636575951828885 }, "geometry": { "type": "Point", "coordinates": [ 85.320832011833389, 27.636575951828885 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2629, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 94, "repvalue": 658000, "xcoord": 85.321394975177739, "ycoord": 27.635893829805937 }, "geometry": { "type": "Point", "coordinates": [ 85.321394975177739, 27.635893829805937 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2630, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 95, "repvalue": 760000, "xcoord": 85.320421610947989, "ycoord": 27.634504165320173 }, "geometry": { "type": "Point", "coordinates": [ 85.320421610947989, 27.634504165320173 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2631, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+5s+Ind", "fptarea": 92, "repvalue": 460000, "xcoord": 85.321299505857738, "ycoord": 27.63490847576475 }, "geometry": { "type": "Point", "coordinates": [ 85.321299505857738, 27.63490847576475 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2632, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 99, "repvalue": 693000, "xcoord": 85.320727532181621, "ycoord": 27.636181007305652 }, "geometry": { "type": "Point", "coordinates": [ 85.320727532181621, 27.636181007305652 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2633, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Ind", "fptarea": 96, "repvalue": 864000, "xcoord": 85.322404388828417, "ycoord": 27.634921847886734 }, "geometry": { "type": "Point", "coordinates": [ 85.322404388828417, 27.634921847886734 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2634, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Ind", "fptarea": 94, "repvalue": 846000, "xcoord": 85.320297597521659, "ycoord": 27.635388441291301 }, "geometry": { "type": "Point", "coordinates": [ 85.320297597521659, 27.635388441291301 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2635, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+8s+Ind", "fptarea": 104, "repvalue": 832000, "xcoord": 85.321068014101286, "ycoord": 27.635594611686681 }, "geometry": { "type": "Point", "coordinates": [ 85.321068014101286, 27.635594611686681 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2636, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 98, "repvalue": 588000, "xcoord": 85.321509969902152, "ycoord": 27.635599962450446 }, "geometry": { "type": "Point", "coordinates": [ 85.321509969902152, 27.635599962450446 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2637, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 88, "repvalue": 616000, "xcoord": 85.322401386878141, "ycoord": 27.635118651285282 }, "geometry": { "type": "Point", "coordinates": [ 85.322401386878141, 27.635118651285282 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2638, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 91, "repvalue": 546000, "xcoord": 85.321830926044569, "ycoord": 27.636292786202052 }, "geometry": { "type": "Point", "coordinates": [ 85.321830926044569, 27.636292786202052 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2639, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 97, "repvalue": 485000, "xcoord": 85.322395382886256, "ycoord": 27.635512258064725 }, "geometry": { "type": "Point", "coordinates": [ 85.322395382886256, 27.635512258064725 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2640, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Ind", "fptarea": 92, "repvalue": 828000, "xcoord": 85.322955330121502, "ycoord": 27.635026932377144 }, "geometry": { "type": "Point", "coordinates": [ 85.322955330121502, 27.635026932377144 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2641, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Ind", "fptarea": 96, "repvalue": 864000, "xcoord": 85.322066918741371, "ycoord": 27.635311443898154 }, "geometry": { "type": "Point", "coordinates": [ 85.322066918741371, 27.635311443898154 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2642, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+10s+Ind", "fptarea": 89, "repvalue": 890000, "xcoord": 85.32129499995861, "ycoord": 27.635203680693468 }, "geometry": { "type": "Point", "coordinates": [ 85.32129499995861, 27.635203680693468 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2643, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Ind", "fptarea": 86, "repvalue": 602000, "xcoord": 85.323271793339188, "ycoord": 27.63601495835988 }, "geometry": { "type": "Point", "coordinates": [ 85.323271793339188, 27.63601495835988 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2644, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Ind", "fptarea": 98, "repvalue": 490000, "xcoord": 85.322280390592439, "ycoord": 27.635806126267404 }, "geometry": { "type": "Point", "coordinates": [ 85.322280390592439, 27.635806126267404 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2645, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 89, "repvalue": 534000, "xcoord": 85.32283133612377, "ycoord": 27.63591121142905 }, "geometry": { "type": "Point", "coordinates": [ 85.32283133612377, 27.63591121142905 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2646, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 96, "repvalue": 672000, "xcoord": 85.32251487716735, "ycoord": 27.634923184615165 }, "geometry": { "type": "Point", "coordinates": [ 85.32251487716735, 27.634923184615165 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2647, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Ind", "fptarea": 95, "repvalue": 760000, "xcoord": 85.321078529354949, "ycoord": 27.634905800284873 }, "geometry": { "type": "Point", "coordinates": [ 85.321078529354949, 27.634905800284873 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2648, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Ind", "fptarea": 103, "repvalue": 515000, "xcoord": 85.3232762940887, "ycoord": 27.635719753166143 }, "geometry": { "type": "Point", "coordinates": [ 85.3232762940887, 27.635719753166143 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2649, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 104, "repvalue": 728000, "xcoord": 85.321635475610961, "ycoord": 27.634617283332847 }, "geometry": { "type": "Point", "coordinates": [ 85.321635475610961, 27.634617283332847 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2650, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 88, "repvalue": 528000, "xcoord": 85.321408492260531, "ycoord": 27.635008215022701 }, "geometry": { "type": "Point", "coordinates": [ 85.321408492260531, 27.635008215022701 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2651, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 87, "repvalue": 696000, "xcoord": 85.321304011688355, "ycoord": 27.634613270822786 }, "geometry": { "type": "Point", "coordinates": [ 85.321304011688355, 27.634613270822786 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2652, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Ind", "fptarea": 88, "repvalue": 880000, "xcoord": 85.320399069374645, "ycoord": 27.635980189251576 }, "geometry": { "type": "Point", "coordinates": [ 85.320399069374645, 27.635980189251576 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2653, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 94, "repvalue": 940000, "xcoord": 85.320635073889534, "ycoord": 27.634998849880613 }, "geometry": { "type": "Point", "coordinates": [ 85.320635073889534, 27.634998849880613 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2654, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Ind", "fptarea": 96, "repvalue": 576000, "xcoord": 85.321939914255026, "ycoord": 27.636392525105311 }, "geometry": { "type": "Point", "coordinates": [ 85.321939914255026, 27.636392525105311 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2655, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 104, "repvalue": 1040000, "xcoord": 85.320853045798572, "ycoord": 27.635198329315084 }, "geometry": { "type": "Point", "coordinates": [ 85.320853045798572, 27.635198329315084 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2656, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 95, "repvalue": 665000, "xcoord": 85.322296902614454, "ycoord": 27.634723707677026 }, "geometry": { "type": "Point", "coordinates": [ 85.322296902614454, 27.634723707677026 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2657, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+8s+Ind", "fptarea": 85, "repvalue": 680000, "xcoord": 85.320639581520339, "ycoord": 27.63470364504326 }, "geometry": { "type": "Point", "coordinates": [ 85.320639581520339, 27.63470364504326 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2658, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Ind", "fptarea": 104, "repvalue": 832000, "xcoord": 85.321405488517641, "ycoord": 27.63520501831816 }, "geometry": { "type": "Point", "coordinates": [ 85.321405488517641, 27.63520501831816 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2659, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 100, "repvalue": 800000, "xcoord": 85.322387877725205, "ycoord": 27.636004266505914 }, "geometry": { "type": "Point", "coordinates": [ 85.322387877725205, 27.636004266505914 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2660, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 90, "repvalue": 630000, "xcoord": 85.322623864740038, "ycoord": 27.63502292296678 }, "geometry": { "type": "Point", "coordinates": [ 85.322623864740038, 27.63502292296678 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2661, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Ind", "fptarea": 87, "repvalue": 609000, "xcoord": 85.321074022863357, "ycoord": 27.635201005180189 }, "geometry": { "type": "Point", "coordinates": [ 85.321074022863357, 27.635201005180189 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2662, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 102, "repvalue": 612000, "xcoord": 85.320721521929954, "ycoord": 27.636574613686459 }, "geometry": { "type": "Point", "coordinates": [ 85.320721521929954, 27.636574613686459 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2663, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Ind", "fptarea": 94, "repvalue": 940000, "xcoord": 85.321298003898974, "ycoord": 27.635006877409129 }, "geometry": { "type": "Point", "coordinates": [ 85.321298003898974, 27.635006877409129 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2664, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Ind", "fptarea": 90, "repvalue": 630000, "xcoord": 85.322717845264592, "ycoord": 27.636106678311364 }, "geometry": { "type": "Point", "coordinates": [ 85.322717845264592, 27.636106678311364 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2665, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+7s+Ind", "fptarea": 103, "repvalue": 721000, "xcoord": 85.32127697567681, "ycoord": 27.636384500275849 }, "geometry": { "type": "Point", "coordinates": [ 85.32127697567681, 27.636384500275849 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2666, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 90, "repvalue": 630000, "xcoord": 85.320862059898118, "ycoord": 27.634607919577995 }, "geometry": { "type": "Point", "coordinates": [ 85.320862059898118, 27.634607919577995 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2667, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Ind", "fptarea": 101, "repvalue": 606000, "xcoord": 85.32218491333461, "ycoord": 27.634820772475635 }, "geometry": { "type": "Point", "coordinates": [ 85.32218491333461, 27.634820772475635 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2668, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+10s+Ind", "fptarea": 101, "repvalue": 1010000, "xcoord": 85.322389378772627, "ycoord": 27.635905864820622 }, "geometry": { "type": "Point", "coordinates": [ 85.322389378772627, 27.635905864820622 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2669, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Ind", "fptarea": 104, "repvalue": 832000, "xcoord": 85.321287489974438, "ycoord": 27.635695688878553 }, "geometry": { "type": "Point", "coordinates": [ 85.321287489974438, 27.635695688878553 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2670, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 86, "repvalue": 602000, "xcoord": 85.320626058422263, "ycoord": 27.635589259515566 }, "geometry": { "type": "Point", "coordinates": [ 85.320626058422263, 27.635589259515566 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2671, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 98, "repvalue": 588000, "xcoord": 85.320854548167532, "ycoord": 27.635099927695915 }, "geometry": { "type": "Point", "coordinates": [ 85.320854548167532, 27.635099927695915 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2672, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 100, "repvalue": 700000, "xcoord": 85.320948511206083, "ycoord": 27.636183683458007 }, "geometry": { "type": "Point", "coordinates": [ 85.320948511206083, 27.636183683458007 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2673, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Ind", "fptarea": 93, "repvalue": 744000, "xcoord": 85.320618545323413, "ycoord": 27.636081267504213 }, "geometry": { "type": "Point", "coordinates": [ 85.320618545323413, 27.636081267504213 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2674, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Ind", "fptarea": 88, "repvalue": 616000, "xcoord": 85.321189017602535, "ycoord": 27.63490713806879 }, "geometry": { "type": "Point", "coordinates": [ 85.321189017602535, 27.63490713806879 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2675, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+5s+Ind", "fptarea": 91, "repvalue": 455000, "xcoord": 85.321403986634792, "ycoord": 27.635303419963691 }, "geometry": { "type": "Point", "coordinates": [ 85.321403986634792, 27.635303419963691 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2676, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+6s+Ind", "fptarea": 100, "repvalue": 600000, "xcoord": 85.320285574224059, "ycoord": 27.636175653945394 }, "geometry": { "type": "Point", "coordinates": [ 85.320285574224059, 27.636175653945394 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2677, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Ind", "fptarea": 103, "repvalue": 618000, "xcoord": 85.32150246075318, "ycoord": 27.636091970661735 }, "geometry": { "type": "Point", "coordinates": [ 85.32150246075318, 27.636091970661735 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2678, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Ind", "fptarea": 95, "repvalue": 570000, "xcoord": 85.322714843724185, "ycoord": 27.636303481707962 }, "geometry": { "type": "Point", "coordinates": [ 85.322714843724185, 27.636303481707962 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2679, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Ind", "fptarea": 99, "repvalue": 990000, "xcoord": 85.322396883895649, "ycoord": 27.635413856372075 }, "geometry": { "type": "Point", "coordinates": [ 85.322396883895649, 27.635413856372075 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 2680, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Ind", "fptarea": 90, "repvalue": 720000, "xcoord": 85.321965438258616, "ycoord": 27.634719696733487 }, "geometry": { "type": "Point", "coordinates": [ 85.321965438258616, 27.634719696733487 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 766, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 67, "repvalue": 268000, "xcoord": 85.319932039833887, "ycoord": 27.640451075690823 }, "geometry": { "type": "Point", "coordinates": [ 85.319932039833887, 27.640451075690823 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 767, "nhouse": 4, "residents": 20, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 53, "repvalue": 424000, "xcoord": 85.319927020864895, "ycoord": 27.640779548918061 }, "geometry": { "type": "Point", "coordinates": [ 85.319927020864895, 27.640779548918061 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 768, "nhouse": 13, "residents": 50, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 87, "repvalue": 1218000, "xcoord": 85.322067235564447, "ycoord": 27.637520125098128 }, "geometry": { "type": "Point", "coordinates": [ 85.322067235564447, 27.637520125098128 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 769, "nhouse": 10, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 82, "repvalue": 984000, "xcoord": 85.321772889999892, "ycoord": 27.640692394114819 }, "geometry": { "type": "Point", "coordinates": [ 85.321772889999892, 27.640692394114819 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 770, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 55, "repvalue": 220000, "xcoord": 85.321690051586415, "ycoord": 27.638063117155664 }, "geometry": { "type": "Point", "coordinates": [ 85.321690051586415, 27.638063117155664 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 771, "nhouse": 19, "residents": 83, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 54, "repvalue": 1728000, "xcoord": 85.320228109723004, "ycoord": 27.637169321660316 }, "geometry": { "type": "Point", "coordinates": [ 85.320228109723004, 27.637169321660316 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 772, "nhouse": 25, "residents": 104, "specialfac": 0, "expstr": "RCi+HC+17s+ResCom", "fptarea": 69, "repvalue": 2346000, "xcoord": 85.324379795973456, "ycoord": 27.639081253673119 }, "geometry": { "type": "Point", "coordinates": [ 85.324379795973456, 27.639081253673119 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 773, "nhouse": 32, "residents": 117, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 86, "repvalue": 2924000, "xcoord": 85.323635450269805, "ycoord": 27.639510301670455 }, "geometry": { "type": "Point", "coordinates": [ 85.323635450269805, 27.639510301670455 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 774, "nhouse": 9, "residents": 29, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 52, "repvalue": 832000, "xcoord": 85.322691970460497, "ycoord": 27.636870615279115 }, "geometry": { "type": "Point", "coordinates": [ 85.322691970460497, 27.636870615279115 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 775, "nhouse": 4, "residents": 17, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 50, "repvalue": 400000, "xcoord": 85.323916387294389, "ycoord": 27.637213956545711 }, "geometry": { "type": "Point", "coordinates": [ 85.323916387294389, 27.637213956545711 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 776, "nhouse": 8, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 52, "repvalue": 728000, "xcoord": 85.321914217329606, "ycoord": 27.639489479181634 }, "geometry": { "type": "Point", "coordinates": [ 85.321914217329606, 27.639489479181634 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 777, "nhouse": 9, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+8s+ResCom", "fptarea": 55, "repvalue": 880000, "xcoord": 85.323052449145592, "ycoord": 27.637422533113529 }, "geometry": { "type": "Point", "coordinates": [ 85.323052449145592, 27.637422533113529 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 778, "nhouse": 7, "residents": 23, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 84, "repvalue": 672000, "xcoord": 85.322651888363623, "ycoord": 27.639498405719504 }, "geometry": { "type": "Point", "coordinates": [ 85.322651888363623, 27.639498405719504 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 779, "nhouse": 9, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 70, "repvalue": 840000, "xcoord": 85.321153142361922, "ycoord": 27.64101342483751 }, "geometry": { "type": "Point", "coordinates": [ 85.321153142361922, 27.64101342483751 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 780, "nhouse": 7, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 57, "repvalue": 684000, "xcoord": 85.320696471227535, "ycoord": 27.638708154906467 }, "geometry": { "type": "Point", "coordinates": [ 85.320696471227535, 27.638708154906467 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 781, "nhouse": 20, "residents": 76, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 51, "repvalue": 1836000, "xcoord": 85.322535624383121, "ycoord": 27.639058953262534 }, "geometry": { "type": "Point", "coordinates": [ 85.322535624383121, 27.639058953262534 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 782, "nhouse": 3, "residents": 19, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 46, "repvalue": 276000, "xcoord": 85.321179889951566, "ycoord": 27.639261566391337 }, "geometry": { "type": "Point", "coordinates": [ 85.321179889951566, 27.639261566391337 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 783, "nhouse": 5, "residents": 21, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 50, "repvalue": 500000, "xcoord": 85.320066695673731, "ycoord": 27.639686127881941 }, "geometry": { "type": "Point", "coordinates": [ 85.320066695673731, 27.639686127881941 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 784, "nhouse": 21, "residents": 95, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 87, "repvalue": 1914000, "xcoord": 85.324389806509018, "ycoord": 27.638424305539647 }, "geometry": { "type": "Point", "coordinates": [ 85.324389806509018, 27.638424305539647 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 785, "nhouse": 6, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 48, "repvalue": 576000, "xcoord": 85.322293076038122, "ycoord": 27.638836995552971 }, "geometry": { "type": "Point", "coordinates": [ 85.322293076038122, 27.638836995552971 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 786, "nhouse": 3, "residents": 8, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 48, "repvalue": 288000, "xcoord": 85.321927584500799, "ycoord": 27.638613549482027 }, "geometry": { "type": "Point", "coordinates": [ 85.321927584500799, 27.638613549482027 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 787, "nhouse": 14, "residents": 57, "specialfac": 0, "expstr": "RCi+HC+15s+ResCom", "fptarea": 44, "repvalue": 1320000, "xcoord": 85.323517512989525, "ycoord": 27.639180341165616 }, "geometry": { "type": "Point", "coordinates": [ 85.323517512989525, 27.639180341165616 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 788, "nhouse": 17, "residents": 66, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 71, "repvalue": 1562000, "xcoord": 85.323800120105545, "ycoord": 27.636774504894049 }, "geometry": { "type": "Point", "coordinates": [ 85.323800120105545, 27.636774504894049 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 789, "nhouse": 8, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 49, "repvalue": 784000, "xcoord": 85.320433859032704, "ycoord": 27.639800087701698 }, "geometry": { "type": "Point", "coordinates": [ 85.320433859032704, 27.639800087701698 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 790, "nhouse": 12, "residents": 54, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 79, "repvalue": 1106000, "xcoord": 85.321284447435758, "ycoord": 27.640467457867359 }, "geometry": { "type": "Point", "coordinates": [ 85.321284447435758, 27.640467457867359 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 791, "nhouse": 12, "residents": 49, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 82, "repvalue": 1148000, "xcoord": 85.322404327531586, "ycoord": 27.639604921874366 }, "geometry": { "type": "Point", "coordinates": [ 85.322404327531586, 27.639604921874366 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 792, "nhouse": 13, "residents": 45, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 47, "repvalue": 1222000, "xcoord": 85.32218349636662, "ycoord": 27.637959577886232 }, "geometry": { "type": "Point", "coordinates": [ 85.32218349636662, 27.637959577886232 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 793, "nhouse": 10, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 82, "repvalue": 984000, "xcoord": 85.324660715935806, "ycoord": 27.636784906166564 }, "geometry": { "type": "Point", "coordinates": [ 85.324660715935806, 27.636784906166564 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 794, "nhouse": 3, "residents": 16, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 84, "repvalue": 336000, "xcoord": 85.325024539893349, "ycoord": 27.637117836481252 }, "geometry": { "type": "Point", "coordinates": [ 85.325024539893349, 27.637117836481252 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 795, "nhouse": 6, "residents": 22, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 47, "repvalue": 564000, "xcoord": 85.323766740932143, "ycoord": 27.638964331609266 }, "geometry": { "type": "Point", "coordinates": [ 85.323766740932143, 27.638964331609266 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 796, "nhouse": 9, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 86, "repvalue": 860000, "xcoord": 85.325022872218526, "ycoord": 27.637227327897627 }, "geometry": { "type": "Point", "coordinates": [ 85.325022872218526, 27.637227327897627 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 797, "nhouse": 6, "residents": 28, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 80, "repvalue": 640000, "xcoord": 85.324761974916498, "ycoord": 27.638209779790163 }, "geometry": { "type": "Point", "coordinates": [ 85.324761974916498, 27.638209779790163 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 798, "nhouse": 17, "residents": 64, "specialfac": 0, "expstr": "RCi+HC+10s+ResCom", "fptarea": 78, "repvalue": 1560000, "xcoord": 85.324127231448884, "ycoord": 27.639516247031825 }, "geometry": { "type": "Point", "coordinates": [ 85.324127231448884, 27.639516247031825 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 799, "nhouse": 6, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 50, "repvalue": 600000, "xcoord": 85.321181561595779, "ycoord": 27.639152075222967 }, "geometry": { "type": "Point", "coordinates": [ 85.321181561595779, 27.639152075222967 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 800, "nhouse": 24, "residents": 94, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 75, "repvalue": 2250000, "xcoord": 85.321668327060323, "ycoord": 27.639486502797645 }, "geometry": { "type": "Point", "coordinates": [ 85.321668327060323, 27.639486502797645 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 801, "nhouse": 12, "residents": 43, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 82, "repvalue": 1148000, "xcoord": 85.321332920751601, "ycoord": 27.637292213625976 }, "geometry": { "type": "Point", "coordinates": [ 85.321332920751601, 27.637292213625976 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 802, "nhouse": 9, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 61, "repvalue": 854000, "xcoord": 85.322570698291045, "ycoord": 27.6367596366761 }, "geometry": { "type": "Point", "coordinates": [ 85.322570698291045, 27.6367596366761 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 803, "nhouse": 4, "residents": 17, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 73, "repvalue": 438000, "xcoord": 85.321791272190254, "ycoord": 27.639487991044099 }, "geometry": { "type": "Point", "coordinates": [ 85.321791272190254, 27.639487991044099 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 804, "nhouse": 11, "residents": 50, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 84, "repvalue": 1008000, "xcoord": 85.322078929828962, "ycoord": 27.636753686339507 }, "geometry": { "type": "Point", "coordinates": [ 85.322078929828962, 27.636753686339507 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 805, "nhouse": 3, "residents": 16, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 77, "repvalue": 308000, "xcoord": 85.323549228297765, "ycoord": 27.637100006134187 }, "geometry": { "type": "Point", "coordinates": [ 85.323549228297765, 27.637100006134187 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 806, "nhouse": 20, "residents": 79, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 77, "repvalue": 1848000, "xcoord": 85.320233127024323, "ycoord": 27.636840848211264 }, "geometry": { "type": "Point", "coordinates": [ 85.320233127024323, 27.636840848211264 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 807, "nhouse": 17, "residents": 77, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 78, "repvalue": 1560000, "xcoord": 85.325150817664337, "ycoord": 27.636900338783608 }, "geometry": { "type": "Point", "coordinates": [ 85.325150817664337, 27.636900338783608 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 808, "nhouse": 11, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 82, "repvalue": 984000, "xcoord": 85.324536105510461, "ycoord": 27.636892911991563 }, "geometry": { "type": "Point", "coordinates": [ 85.324536105510461, 27.636892911991563 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 809, "nhouse": 7, "residents": 33, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 88, "repvalue": 704000, "xcoord": 85.324255182557067, "ycoord": 27.639189259083839 }, "geometry": { "type": "Point", "coordinates": [ 85.324255182557067, 27.639189259083839 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 810, "nhouse": 10, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 48, "repvalue": 960000, "xcoord": 85.320691454912435, "ycoord": 27.639036628345298 }, "geometry": { "type": "Point", "coordinates": [ 85.320691454912435, 27.639036628345298 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 811, "nhouse": 34, "residents": 133, "specialfac": 0, "expstr": "RCi+HC+19s+Res", "fptarea": 82, "repvalue": 3116000, "xcoord": 85.323158696261515, "ycoord": 27.638518933026383 }, "geometry": { "type": "Point", "coordinates": [ 85.323158696261515, 27.638518933026383 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 812, "nhouse": 20, "residents": 80, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 77, "repvalue": 1848000, "xcoord": 85.324662383939781, "ycoord": 27.63667541476352 }, "geometry": { "type": "Point", "coordinates": [ 85.324662383939781, 27.63667541476352 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 813, "nhouse": 10, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 80, "repvalue": 960000, "xcoord": 85.320310913639645, "ycoord": 27.639798598236439 }, "geometry": { "type": "Point", "coordinates": [ 85.320310913639645, 27.639798598236439 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 814, "nhouse": 13, "residents": 60, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 80, "repvalue": 1280000, "xcoord": 85.323555904771681, "ycoord": 27.636662040780589 }, "geometry": { "type": "Point", "coordinates": [ 85.323555904771681, 27.636662040780589 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 815, "nhouse": 4, "residents": 16, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 71, "repvalue": 426000, "xcoord": 85.32276314279126, "ycoord": 27.640266331823504 }, "geometry": { "type": "Point", "coordinates": [ 85.32276314279126, 27.640266331823504 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 816, "nhouse": 5, "residents": 12, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 60, "repvalue": 480000, "xcoord": 85.320470650204868, "ycoord": 27.637391282686657 }, "geometry": { "type": "Point", "coordinates": [ 85.320470650204868, 27.637391282686657 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 817, "nhouse": 22, "residents": 87, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 70, "repvalue": 1960000, "xcoord": 85.324529432873746, "ycoord": 27.63733087755072 }, "geometry": { "type": "Point", "coordinates": [ 85.324529432873746, 27.63733087755072 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 818, "nhouse": 15, "residents": 60, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 47, "repvalue": 1410000, "xcoord": 85.320450582858712, "ycoord": 27.638705176440588 }, "geometry": { "type": "Point", "coordinates": [ 85.320450582858712, 27.638705176440588 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 819, "nhouse": 16, "residents": 69, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 54, "repvalue": 1512000, "xcoord": 85.320187968256036, "ycoord": 27.639797108662265 }, "geometry": { "type": "Point", "coordinates": [ 85.320187968256036, 27.639797108662265 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 820, "nhouse": 6, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 46, "repvalue": 644000, "xcoord": 85.324173952284355, "ycoord": 27.636450489103652 }, "geometry": { "type": "Point", "coordinates": [ 85.324173952284355, 27.636450489103652 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 821, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 82, "repvalue": 328000, "xcoord": 85.324162272767211, "ycoord": 27.637216928719628 }, "geometry": { "type": "Point", "coordinates": [ 85.324162272767211, 27.637216928719628 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 822, "nhouse": 22, "residents": 91, "specialfac": 0, "expstr": "RCi+HC+19s+Res", "fptarea": 53, "repvalue": 2014000, "xcoord": 85.322291405522691, "ycoord": 27.638946486788818 }, "geometry": { "type": "Point", "coordinates": [ 85.322291405522691, 27.638946486788818 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 823, "nhouse": 7, "residents": 27, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 86, "repvalue": 688000, "xcoord": 85.320578543635449, "ycoord": 27.63837819229342 }, "geometry": { "type": "Point", "coordinates": [ 85.320578543635449, 27.63837819229342 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 824, "nhouse": 3, "residents": 17, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 52, "repvalue": 312000, "xcoord": 85.321440821913825, "ycoord": 27.638279122914067 }, "geometry": { "type": "Point", "coordinates": [ 85.321440821913825, 27.638279122914067 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 825, "nhouse": 13, "residents": 55, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 88, "repvalue": 1232000, "xcoord": 85.324635694747101, "ycoord": 27.638427276993571 }, "geometry": { "type": "Point", "coordinates": [ 85.324635694747101, 27.638427276993571 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 826, "nhouse": 8, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+8s+ResCom", "fptarea": 47, "repvalue": 752000, "xcoord": 85.324411494840561, "ycoord": 27.637000917692067 }, "geometry": { "type": "Point", "coordinates": [ 85.324411494840561, 27.637000917692067 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 827, "nhouse": 17, "residents": 63, "specialfac": 0, "expstr": "RCi+HC+9s+Res", "fptarea": 88, "repvalue": 1584000, "xcoord": 85.320191313585809, "ycoord": 27.639578126452204 }, "geometry": { "type": "Point", "coordinates": [ 85.320191313585809, 27.639578126452204 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 828, "nhouse": 10, "residents": 30, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 59, "repvalue": 944000, "xcoord": 85.32178458788934, "ycoord": 27.639925955822605 }, "geometry": { "type": "Point", "coordinates": [ 85.32178458788934, 27.639925955822605 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 829, "nhouse": 5, "residents": 17, "specialfac": 0, "expstr": "BrCfl+MC+3s+Res", "fptarea": 80, "repvalue": 480000, "xcoord": 85.324896593789177, "ycoord": 27.637444825441055 }, "geometry": { "type": "Point", "coordinates": [ 85.324896593789177, 27.637444825441055 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 830, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 87, "repvalue": 348000, "xcoord": 85.322417690865223, "ycoord": 27.638728991968947 }, "geometry": { "type": "Point", "coordinates": [ 85.322417690865223, 27.638728991968947 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 831, "nhouse": 23, "residents": 86, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 71, "repvalue": 2130000, "xcoord": 85.321792943241903, "ycoord": 27.63937849984492 }, "geometry": { "type": "Point", "coordinates": [ 85.321792943241903, 27.63937849984492 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 832, "nhouse": 1, "residents": 7, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 57, "repvalue": 114000, "xcoord": 85.320785974167762, "ycoord": 27.640899466729586 }, "geometry": { "type": "Point", "coordinates": [ 85.320785974167762, 27.640899466729586 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 833, "nhouse": 2, "residents": 9, "specialfac": 0, "expstr": "BrCfl+LC+2s+ResCom", "fptarea": 57, "repvalue": 228000, "xcoord": 85.324904932774572, "ycoord": 27.63689736839352 }, "geometry": { "type": "Point", "coordinates": [ 85.324904932774572, 27.63689736839352 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 834, "nhouse": 19, "residents": 63, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 58, "repvalue": 1740000, "xcoord": 85.323534205680687, "ycoord": 27.638085428073179 }, "geometry": { "type": "Point", "coordinates": [ 85.323534205680687, 27.638085428073179 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 835, "nhouse": 33, "residents": 123, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 86, "repvalue": 2924000, "xcoord": 85.320674733249078, "ycoord": 27.640131539689609 }, "geometry": { "type": "Point", "coordinates": [ 85.320674733249078, 27.640131539689609 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 836, "nhouse": 11, "residents": 49, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 84, "repvalue": 1008000, "xcoord": 85.320719879575734, "ycoord": 27.637175278641671 }, "geometry": { "type": "Point", "coordinates": [ 85.320719879575734, 27.637175278641671 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 837, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 75, "repvalue": 300000, "xcoord": 85.321071990672294, "ycoord": 27.638274657095071 }, "geometry": { "type": "Point", "coordinates": [ 85.321071990672294, 27.638274657095071 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 838, "nhouse": 12, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 52, "repvalue": 1144000, "xcoord": 85.321092050229581, "ycoord": 27.636960762840086 }, "geometry": { "type": "Point", "coordinates": [ 85.321092050229581, 27.636960762840086 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 839, "nhouse": 7, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 56, "repvalue": 672000, "xcoord": 85.32079767903727, "ycoord": 27.640133028848773 }, "geometry": { "type": "Point", "coordinates": [ 85.32079767903727, 27.640133028848773 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 840, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 68, "repvalue": 136000, "xcoord": 85.32071820761216, "ycoord": 27.637284769815295 }, "geometry": { "type": "Point", "coordinates": [ 85.32071820761216, 27.637284769815295 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 841, "nhouse": 16, "residents": 62, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 63, "repvalue": 1512000, "xcoord": 85.321705090709841, "ycoord": 27.637077696146161 }, "geometry": { "type": "Point", "coordinates": [ 85.321705090709841, 27.637077696146161 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 842, "nhouse": 11, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 87, "repvalue": 1044000, "xcoord": 85.321196605969405, "ycoord": 27.638166654625536 }, "geometry": { "type": "Point", "coordinates": [ 85.321196605969405, 27.638166654625536 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 843, "nhouse": 12, "residents": 61, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 49, "repvalue": 1176000, "xcoord": 85.323432962688955, "ycoord": 27.636660554237945 }, "geometry": { "type": "Point", "coordinates": [ 85.323432962688955, 27.636660554237945 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 844, "nhouse": 17, "residents": 65, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 64, "repvalue": 1536000, "xcoord": 85.324537773646114, "ycoord": 27.636783420597219 }, "geometry": { "type": "Point", "coordinates": [ 85.324537773646114, 27.636783420597219 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 845, "nhouse": 23, "residents": 91, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 58, "repvalue": 2088000, "xcoord": 85.321066975570844, "ycoord": 27.638603130617803 }, "geometry": { "type": "Point", "coordinates": [ 85.321066975570844, 27.638603130617803 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 846, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 67, "repvalue": 268000, "xcoord": 85.320432186598225, "ycoord": 27.639909578817782 }, "geometry": { "type": "Point", "coordinates": [ 85.320432186598225, 27.639909578817782 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 847, "nhouse": 15, "residents": 53, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 46, "repvalue": 1380000, "xcoord": 85.323805126656794, "ycoord": 27.636446030823887 }, "geometry": { "type": "Point", "coordinates": [ 85.323805126656794, 27.636446030823887 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 848, "nhouse": 9, "residents": 43, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 51, "repvalue": 816000, "xcoord": 85.321663313481935, "ycoord": 27.639814976363596 }, "geometry": { "type": "Point", "coordinates": [ 85.321663313481935, 27.639814976363596 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 849, "nhouse": 13, "residents": 55, "specialfac": 0, "expstr": "RCi+HC+13s+ResCom", "fptarea": 47, "repvalue": 1222000, "xcoord": 85.320167895484815, "ycoord": 27.641111001769509 }, "geometry": { "type": "Point", "coordinates": [ 85.320167895484815, 27.641111001769509 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 850, "nhouse": 8, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 53, "repvalue": 742000, "xcoord": 85.322809903132651, "ycoord": 27.637200576372081 }, "geometry": { "type": "Point", "coordinates": [ 85.322809903132651, 27.637200576372081 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 851, "nhouse": 11, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 87, "repvalue": 1044000, "xcoord": 85.325635919321655, "ycoord": 27.637344244063542 }, "geometry": { "type": "Point", "coordinates": [ 85.325635919321655, 27.637344244063542 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 852, "nhouse": 9, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 64, "repvalue": 896000, "xcoord": 85.323557573866623, "ycoord": 27.636552549437631 }, "geometry": { "type": "Point", "coordinates": [ 85.323557573866623, 27.636552549437631 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 853, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 53, "repvalue": 318000, "xcoord": 85.32441649961433, "ycoord": 27.636672443529669 }, "geometry": { "type": "Point", "coordinates": [ 85.32441649961433, 27.636672443529669 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 854, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 58, "repvalue": 348000, "xcoord": 85.322442745490662, "ycoord": 27.637086623081927 }, "geometry": { "type": "Point", "coordinates": [ 85.322442745490662, 27.637086623081927 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 855, "nhouse": 9, "residents": 30, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 59, "repvalue": 826000, "xcoord": 85.32084783752984, "ycoord": 27.636848294062275 }, "geometry": { "type": "Point", "coordinates": [ 85.32084783752984, 27.636848294062275 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 856, "nhouse": 5, "residents": 14, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 78, "repvalue": 468000, "xcoord": 85.321801298358864, "ycoord": 27.638831043821664 }, "geometry": { "type": "Point", "coordinates": [ 85.321801298358864, 27.638831043821664 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 857, "nhouse": 11, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 85, "repvalue": 1020000, "xcoord": 85.322268017317342, "ycoord": 27.640479363899299 }, "geometry": { "type": "Point", "coordinates": [ 85.322268017317342, 27.640479363899299 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 858, "nhouse": 12, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 73, "repvalue": 1168000, "xcoord": 85.322917817575657, "ycoord": 27.638187485106549 }, "geometry": { "type": "Point", "coordinates": [ 85.322917817575657, 27.638187485106549 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 859, "nhouse": 6, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 52, "repvalue": 624000, "xcoord": 85.321807982282763, "ycoord": 27.638393078970253 }, "geometry": { "type": "Point", "coordinates": [ 85.321807982282763, 27.638393078970253 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 860, "nhouse": 4, "residents": 15, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 73, "repvalue": 438000, "xcoord": 85.321954317033772, "ycoord": 27.636861689732903 }, "geometry": { "type": "Point", "coordinates": [ 85.321954317033772, 27.636861689732903 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 861, "nhouse": 10, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 78, "repvalue": 936000, "xcoord": 85.325014533703381, "ycoord": 27.637774784952221 }, "geometry": { "type": "Point", "coordinates": [ 85.325014533703381, 27.637774784952221 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 862, "nhouse": 11, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 63, "repvalue": 1008000, "xcoord": 85.32168503837562, "ycoord": 27.638391590792686 }, "geometry": { "type": "Point", "coordinates": [ 85.32168503837562, 27.638391590792686 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 863, "nhouse": 9, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 55, "repvalue": 880000, "xcoord": 85.320558476737943, "ycoord": 27.639692085933234 }, "geometry": { "type": "Point", "coordinates": [ 85.320558476737943, 27.639692085933234 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 864, "nhouse": 15, "residents": 55, "specialfac": 0, "expstr": "RCi+HC+13s+ResCom", "fptarea": 54, "repvalue": 1404000, "xcoord": 85.324172283810142, "ycoord": 27.636559980482829 }, "geometry": { "type": "Point", "coordinates": [ 85.324172283810142, 27.636559980482829 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 865, "nhouse": 7, "residents": 34, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 87, "repvalue": 696000, "xcoord": 85.321572121548272, "ycoord": 27.637733155257088 }, "geometry": { "type": "Point", "coordinates": [ 85.321572121548272, 27.637733155257088 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 866, "nhouse": 6, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 50, "repvalue": 600000, "xcoord": 85.322421031604421, "ycoord": 27.638510009474366 }, "geometry": { "type": "Point", "coordinates": [ 85.322421031604421, 27.638510009474366 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 867, "nhouse": 6, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 46, "repvalue": 552000, "xcoord": 85.322565687987108, "ycoord": 27.637088110523365 }, "geometry": { "type": "Point", "coordinates": [ 85.322565687987108, 27.637088110523365 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 868, "nhouse": 1, "residents": 2, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 49, "repvalue": 98000, "xcoord": 85.323303343163587, "ycoord": 27.637097032884938 }, "geometry": { "type": "Point", "coordinates": [ 85.323303343163587, 27.637097032884938 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 869, "nhouse": 6, "residents": 19, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 50, "repvalue": 600000, "xcoord": 85.324756970848, "ycoord": 27.638538253937934 }, "geometry": { "type": "Point", "coordinates": [ 85.324756970848, 27.638538253937934 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 870, "nhouse": 18, "residents": 87, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 85, "repvalue": 1700000, "xcoord": 85.32243439418437, "ycoord": 27.637634079423158 }, "geometry": { "type": "Point", "coordinates": [ 85.32243439418437, 27.637634079423158 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 871, "nhouse": 23, "residents": 101, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 66, "repvalue": 2112000, "xcoord": 85.320573527038405, "ycoord": 27.638706665727987 }, "geometry": { "type": "Point", "coordinates": [ 85.320573527038405, 27.638706665727987 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 872, "nhouse": 22, "residents": 102, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 87, "repvalue": 2088000, "xcoord": 85.32478199034378, "ycoord": 27.636895883035102 }, "geometry": { "type": "Point", "coordinates": [ 85.32478199034378, 27.636895883035102 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 873, "nhouse": 19, "residents": 68, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 61, "repvalue": 1708000, "xcoord": 85.323934743304079, "ycoord": 27.636009551546156 }, "geometry": { "type": "Point", "coordinates": [ 85.323934743304079, 27.636009551546156 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 874, "nhouse": 10, "residents": 49, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 68, "repvalue": 952000, "xcoord": 85.321306177833662, "ycoord": 27.639044072707332 }, "geometry": { "type": "Point", "coordinates": [ 85.321306177833662, 27.639044072707332 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 875, "nhouse": 4, "residents": 11, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 63, "repvalue": 378000, "xcoord": 85.32574219228411, "ycoord": 27.638440643144911 }, "geometry": { "type": "Point", "coordinates": [ 85.32574219228411, 27.638440643144911 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 876, "nhouse": 8, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 53, "repvalue": 742000, "xcoord": 85.324270199418535, "ycoord": 27.638203836937329 }, "geometry": { "type": "Point", "coordinates": [ 85.324270199418535, 27.638203836937329 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 877, "nhouse": 10, "residents": 43, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 71, "repvalue": 994000, "xcoord": 85.321658299818722, "ycoord": 27.64014344991314 }, "geometry": { "type": "Point", "coordinates": [ 85.321658299818722, 27.64014344991314 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 878, "nhouse": 16, "residents": 80, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 67, "repvalue": 1474000, "xcoord": 85.320970779659234, "ycoord": 27.636849782905756 }, "geometry": { "type": "Point", "coordinates": [ 85.320970779659234, 27.636849782905756 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 879, "nhouse": 9, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 64, "repvalue": 896000, "xcoord": 85.323387890265337, "ycoord": 27.639616819623114 }, "geometry": { "type": "Point", "coordinates": [ 85.323387890265337, 27.639616819623114 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 880, "nhouse": 10, "residents": 47, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 84, "repvalue": 1008000, "xcoord": 85.322392634120007, "ycoord": 27.640371360445911 }, "geometry": { "type": "Point", "coordinates": [ 85.322392634120007, 27.640371360445911 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 881, "nhouse": 23, "residents": 88, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 62, "repvalue": 2108000, "xcoord": 85.323898030145784, "ycoord": 27.638418361324796 }, "geometry": { "type": "Point", "coordinates": [ 85.323898030145784, 27.638418361324796 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 882, "nhouse": 23, "residents": 86, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 76, "repvalue": 2128000, "xcoord": 85.324290220714758, "ycoord": 27.636889940512383 }, "geometry": { "type": "Point", "coordinates": [ 85.324290220714758, 27.636889940512383 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 883, "nhouse": 4, "residents": 14, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 61, "repvalue": 366000, "xcoord": 85.323065806081246, "ycoord": 27.636546602641143 }, "geometry": { "type": "Point", "coordinates": [ 85.323065806081246, 27.636546602641143 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 884, "nhouse": 6, "residents": 36, "specialfac": 0, "expstr": "BrCfl+LC+4s+ResCom", "fptarea": 75, "repvalue": 600000, "xcoord": 85.323062466903849, "ycoord": 27.636765585270176 }, "geometry": { "type": "Point", "coordinates": [ 85.323062466903849, 27.636765585270176 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 885, "nhouse": 6, "residents": 21, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 50, "repvalue": 600000, "xcoord": 85.322941194452184, "ycoord": 27.636654606978297 }, "geometry": { "type": "Point", "coordinates": [ 85.322941194452184, 27.636654606978297 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 886, "nhouse": 6, "residents": 30, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 47, "repvalue": 564000, "xcoord": 85.32205888223568, "ycoord": 27.638067581299616 }, "geometry": { "type": "Point", "coordinates": [ 85.32205888223568, 27.638067581299616 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 887, "nhouse": 25, "residents": 102, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 87, "repvalue": 2262000, "xcoord": 85.319790689098213, "ycoord": 27.641653987425624 }, "geometry": { "type": "Point", "coordinates": [ 85.319790689098213, 27.641653987425624 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 888, "nhouse": 4, "residents": 13, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 49, "repvalue": 392000, "xcoord": 85.323529197972192, "ycoord": 27.638413902020041 }, "geometry": { "type": "Point", "coordinates": [ 85.323529197972192, 27.638413902020041 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 889, "nhouse": 21, "residents": 84, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 68, "repvalue": 1904000, "xcoord": 85.323928068523244, "ycoord": 27.636447517026042 }, "geometry": { "type": "Point", "coordinates": [ 85.323928068523244, 27.636447517026042 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 890, "nhouse": 29, "residents": 106, "specialfac": 0, "expstr": "RCi+HC+19s+Res", "fptarea": 69, "repvalue": 2622000, "xcoord": 85.322673600172934, "ycoord": 27.63807501936126 }, "geometry": { "type": "Point", "coordinates": [ 85.322673600172934, 27.63807501936126 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 891, "nhouse": 10, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 68, "repvalue": 952000, "xcoord": 85.322655228745589, "ycoord": 27.639279423222899 }, "geometry": { "type": "Point", "coordinates": [ 85.322655228745589, 27.639279423222899 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 892, "nhouse": 10, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 70, "repvalue": 980000, "xcoord": 85.319297225760209, "ycoord": 27.64175751728661 }, "geometry": { "type": "Point", "coordinates": [ 85.319297225760209, 27.64175751728661 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 893, "nhouse": 9, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 74, "repvalue": 888000, "xcoord": 85.320415461734626, "ycoord": 27.641004489878394 }, "geometry": { "type": "Point", "coordinates": [ 85.320415461734626, 27.641004489878394 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 894, "nhouse": 23, "residents": 87, "specialfac": 0, "expstr": "RCi+HC+16s+ResCom", "fptarea": 66, "repvalue": 2112000, "xcoord": 85.322562347737389, "ycoord": 27.637307093079102 }, "geometry": { "type": "Point", "coordinates": [ 85.322562347737389, 27.637307093079102 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 895, "nhouse": 17, "residents": 76, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 79, "repvalue": 1580000, "xcoord": 85.32045559982258, "ycoord": 27.638376703026712 }, "geometry": { "type": "Point", "coordinates": [ 85.32045559982258, 27.638376703026712 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 896, "nhouse": 12, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 49, "repvalue": 1078000, "xcoord": 85.323648803745797, "ycoord": 27.638634371199775 }, "geometry": { "type": "Point", "coordinates": [ 85.323648803745797, 27.638634371199775 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 897, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 55, "repvalue": 220000, "xcoord": 85.321075334026133, "ycoord": 27.638055674737465 }, "geometry": { "type": "Point", "coordinates": [ 85.321075334026133, 27.638055674737465 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 898, "nhouse": 7, "residents": 29, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 58, "repvalue": 696000, "xcoord": 85.321327906638317, "ycoord": 27.637620687239274 }, "geometry": { "type": "Point", "coordinates": [ 85.321327906638317, 27.637620687239274 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 899, "nhouse": 1, "residents": 5, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 44, "repvalue": 176000, "xcoord": 85.32129447704817, "ycoord": 27.639810510908703 }, "geometry": { "type": "Point", "coordinates": [ 85.32129447704817, 27.639810510908703 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 900, "nhouse": 2, "residents": 5, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 59, "repvalue": 236000, "xcoord": 85.320839478370459, "ycoord": 27.637395749973933 }, "geometry": { "type": "Point", "coordinates": [ 85.320839478370459, 27.637395749973933 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 901, "nhouse": 30, "residents": 120, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 83, "repvalue": 2822000, "xcoord": 85.322170131604167, "ycoord": 27.638835507783522 }, "geometry": { "type": "Point", "coordinates": [ 85.322170131604167, 27.638835507783522 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 902, "nhouse": 6, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 61, "repvalue": 610000, "xcoord": 85.321897507517434, "ycoord": 27.640584391142106 }, "geometry": { "type": "Point", "coordinates": [ 85.321897507517434, 27.640584391142106 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 903, "nhouse": 7, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 67, "repvalue": 670000, "xcoord": 85.323540882493518, "ycoord": 27.637647462785182 }, "geometry": { "type": "Point", "coordinates": [ 85.323540882493518, 27.637647462785182 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 904, "nhouse": 5, "residents": 23, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 87, "repvalue": 522000, "xcoord": 85.319177625877032, "ycoord": 27.641537044682796 }, "geometry": { "type": "Point", "coordinates": [ 85.319177625877032, 27.641537044682796 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 905, "nhouse": 6, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 47, "repvalue": 564000, "xcoord": 85.321337934780033, "ycoord": 27.636963739996279 }, "geometry": { "type": "Point", "coordinates": [ 85.321337934780033, 27.636963739996279 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 906, "nhouse": 14, "residents": 57, "specialfac": 0, "expstr": "RCi+HC+12s+ResCom", "fptarea": 56, "repvalue": 1344000, "xcoord": 85.321538696660653, "ycoord": 27.639922979165664 }, "geometry": { "type": "Point", "coordinates": [ 85.321538696660653, 27.639922979165664 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 907, "nhouse": 7, "residents": 30, "specialfac": 0, "expstr": "BrCri+LC+4s+ResCom", "fptarea": 88, "repvalue": 704000, "xcoord": 85.319544794258078, "ycoord": 27.641651007062467 }, "geometry": { "type": "Point", "coordinates": [ 85.319544794258078, 27.641651007062467 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 908, "nhouse": 7, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 68, "repvalue": 680000, "xcoord": 85.323633781042943, "ycoord": 27.639619792971089 }, "geometry": { "type": "Point", "coordinates": [ 85.323633781042943, 27.639619792971089 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 909, "nhouse": 5, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 84, "repvalue": 504000, "xcoord": 85.323811801926681, "ycoord": 27.636008065371506 }, "geometry": { "type": "Point", "coordinates": [ 85.323811801926681, 27.636008065371506 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 910, "nhouse": 11, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+9s+Res", "fptarea": 54, "repvalue": 972000, "xcoord": 85.320325966226022, "ycoord": 27.638813178171691 }, "geometry": { "type": "Point", "coordinates": [ 85.320325966226022, 27.638813178171691 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 911, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 85, "repvalue": 170000, "xcoord": 85.321292805469668, "ycoord": 27.639920002073033 }, "geometry": { "type": "Point", "coordinates": [ 85.321292805469668, 27.639920002073033 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 912, "nhouse": 21, "residents": 80, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 64, "repvalue": 1920000, "xcoord": 85.319804074409006, "ycoord": 27.640778058955043 }, "geometry": { "type": "Point", "coordinates": [ 85.319804074409006, 27.640778058955043 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 913, "nhouse": 16, "residents": 63, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 66, "repvalue": 1452000, "xcoord": 85.322788193892521, "ycoord": 27.638623963009355 }, "geometry": { "type": "Point", "coordinates": [ 85.322788193892521, 27.638623963009355 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 914, "nhouse": 9, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 68, "repvalue": 816000, "xcoord": 85.325620915242624, "ycoord": 27.638329667021939 }, "geometry": { "type": "Point", "coordinates": [ 85.325620915242624, 27.638329667021939 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 915, "nhouse": 7, "residents": 25, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 79, "repvalue": 632000, "xcoord": 85.320711519663561, "ycoord": 27.637722734491536 }, "geometry": { "type": "Point", "coordinates": [ 85.320711519663561, 27.637722734491536 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 916, "nhouse": 5, "residents": 18, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 81, "repvalue": 486000, "xcoord": 85.323881340840515, "ycoord": 27.63951327456898 }, "geometry": { "type": "Point", "coordinates": [ 85.323881340840515, 27.63951327456898 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 917, "nhouse": 3, "residents": 16, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 87, "repvalue": 348000, "xcoord": 85.321930926199357, "ycoord": 27.638394567038901 }, "geometry": { "type": "Point", "coordinates": [ 85.321930926199357, 27.638394567038901 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 918, "nhouse": 11, "residents": 55, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 76, "repvalue": 1064000, "xcoord": 85.322695310390316, "ycoord": 27.636651632695035 }, "geometry": { "type": "Point", "coordinates": [ 85.322695310390316, 27.636651632695035 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 919, "nhouse": 8, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 74, "repvalue": 1036000, "xcoord": 85.323407923301019, "ycoord": 27.63830292406038 }, "geometry": { "type": "Point", "coordinates": [ 85.323407923301019, 27.63830292406038 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 2684, "nhouse": 0, "residents": 0, "specialfac": 1, "expstr": "RCi+HC+10s+Edu", "fptarea": 130, "repvalue": 3900000, "xcoord": 85.321424108247243, "ycoord": 27.639374034799463 }, "geometry": { "type": "Point", "coordinates": [ 85.321424108247243, 27.639374034799463 ] } }, +{ "type": "Feature", "properties": { "zoneid": 43, "bldid": 920, "nhouse": 11, "residents": 50, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 105, "repvalue": 1260000, "xcoord": 85.325426097480445, "ycoord": 27.636392377208157 }, "geometry": { "type": "Point", "coordinates": [ 85.325426097480445, 27.636392377208157 ] } }, +{ "type": "Feature", "properties": { "zoneid": 43, "bldid": 921, "nhouse": 9, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 59, "repvalue": 944000, "xcoord": 85.323603075471269, "ycoord": 27.635080691465614 }, "geometry": { "type": "Point", "coordinates": [ 85.323603075471269, 27.635080691465614 ] } }, +{ "type": "Feature", "properties": { "zoneid": 43, "bldid": 922, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 64, "repvalue": 256000, "xcoord": 85.323734693634606, "ycoord": 27.635082282687993 }, "geometry": { "type": "Point", "coordinates": [ 85.323734693634606, 27.635082282687993 ] } }, +{ "type": "Feature", "properties": { "zoneid": 43, "bldid": 923, "nhouse": 8, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 62, "repvalue": 868000, "xcoord": 85.325424312574029, "ycoord": 27.63650959719449 }, "geometry": { "type": "Point", "coordinates": [ 85.325424312574029, 27.63650959719449 ] } }, +{ "type": "Feature", "properties": { "zoneid": 43, "bldid": 924, "nhouse": 9, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 80, "repvalue": 960000, "xcoord": 85.32399435732448, "ycoord": 27.635319904601442 }, "geometry": { "type": "Point", "coordinates": [ 85.32399435732448, 27.635319904601442 ] } }, +{ "type": "Feature", "properties": { "zoneid": 43, "bldid": 925, "nhouse": 27, "residents": 100, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 87, "repvalue": 2958000, "xcoord": 85.323215369617756, "ycoord": 27.634607037527509 }, "geometry": { "type": "Point", "coordinates": [ 85.323215369617756, 27.634607037527509 ] } }, +{ "type": "Feature", "properties": { "zoneid": 43, "bldid": 926, "nhouse": 10, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 84, "repvalue": 1176000, "xcoord": 85.324511902233809, "ycoord": 27.635912367036308 }, "geometry": { "type": "Point", "coordinates": [ 85.324511902233809, 27.635912367036308 ] } }, +{ "type": "Feature", "properties": { "zoneid": 43, "bldid": 927, "nhouse": 18, "residents": 78, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 57, "repvalue": 2052000, "xcoord": 85.325294477635509, "ycoord": 27.636390787521737 }, "geometry": { "type": "Point", "coordinates": [ 85.325294477635509, 27.636390787521737 ] } }, +{ "type": "Feature", "properties": { "zoneid": 43, "bldid": 928, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 72, "repvalue": 288000, "xcoord": 85.32438385496117, "ycoord": 27.635676336638085 }, "geometry": { "type": "Point", "coordinates": [ 85.32438385496117, 27.635676336638085 ] } }, +{ "type": "Feature", "properties": { "zoneid": 43, "bldid": 929, "nhouse": 5, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 70, "repvalue": 560000, "xcoord": 85.324771569545391, "ycoord": 27.636149987627658 }, "geometry": { "type": "Point", "coordinates": [ 85.324771569545391, 27.636149987627658 ] } }, +{ "type": "Feature", "properties": { "zoneid": 43, "bldid": 930, "nhouse": 29, "residents": 121, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 91, "repvalue": 3276000, "xcoord": 85.323866311808743, "ycoord": 27.635083873785554 }, "geometry": { "type": "Point", "coordinates": [ 85.323866311808743, 27.635083873785554 ] } }, +{ "type": "Feature", "properties": { "zoneid": 43, "bldid": 2018, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 149, "repvalue": 2086000, "xcoord": 85.323346987188245, "ycoord": 27.634608629092781 }, "geometry": { "type": "Point", "coordinates": [ 85.323346987188245, 27.634608629092781 ] } }, +{ "type": "Feature", "properties": { "zoneid": 43, "bldid": 2020, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Com", "fptarea": 134, "repvalue": 1876000, "xcoord": 85.324124189589796, "ycoord": 27.635438715391462 }, "geometry": { "type": "Point", "coordinates": [ 85.324124189589796, 27.635438715391462 ] } }, +{ "type": "Feature", "properties": { "zoneid": 43, "bldid": 2021, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Com", "fptarea": 118, "repvalue": 2360000, "xcoord": 85.325296262671273, "ycoord": 27.636273567541185 }, "geometry": { "type": "Point", "coordinates": [ 85.325296262671273, 27.636273567541185 ] } }, +{ "type": "Feature", "properties": { "zoneid": 43, "bldid": 2027, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Com", "fptarea": 118, "repvalue": 1180000, "xcoord": 85.324773355120101, "ycoord": 27.636032767674443 }, "geometry": { "type": "Point", "coordinates": [ 85.324773355120101, 27.636032767674443 ] } }, +{ "type": "Feature", "properties": { "zoneid": 43, "bldid": 2028, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+6s+Com", "fptarea": 139, "repvalue": 1668000, "xcoord": 85.323999716312059, "ycoord": 27.634968244833587 }, "geometry": { "type": "Point", "coordinates": [ 85.323999716312059, 27.634968244833587 ] } }, +{ "type": "Feature", "properties": { "zoneid": 44, "bldid": 2025, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Com", "fptarea": 146, "repvalue": 1460000, "xcoord": 85.318629261005555, "ycoord": 27.630495458270662 }, "geometry": { "type": "Point", "coordinates": [ 85.318629261005555, 27.630495458270662 ] } }, +{ "type": "Feature", "properties": { "zoneid": 44, "bldid": 2026, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+9s+Com", "fptarea": 105, "repvalue": 1890000, "xcoord": 85.321029213169695, "ycoord": 27.626926824211235 }, "geometry": { "type": "Point", "coordinates": [ 85.321029213169695, 27.626926824211235 ] } }, +{ "type": "Feature", "properties": { "zoneid": 45, "bldid": 2019, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 118, "repvalue": 2124000, "xcoord": 85.319874918202075, "ycoord": 27.6282547477389 }, "geometry": { "type": "Point", "coordinates": [ 85.319874918202075, 27.6282547477389 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 931, "nhouse": 8, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 85, "repvalue": 850000, "xcoord": 85.323808950146187, "ycoord": 27.627459203792885 }, "geometry": { "type": "Point", "coordinates": [ 85.323808950146187, 27.627459203792885 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 932, "nhouse": 2, "residents": 12, "specialfac": 0, "expstr": "BrM+LC+2s+Res", "fptarea": 55, "repvalue": 220000, "xcoord": 85.323190208638877, "ycoord": 27.624872408254934 }, "geometry": { "type": "Point", "coordinates": [ 85.323190208638877, 27.624872408254934 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 933, "nhouse": 19, "residents": 75, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 100, "repvalue": 2000000, "xcoord": 85.321861635038871, "ycoord": 27.625677030374497 }, "geometry": { "type": "Point", "coordinates": [ 85.321861635038871, 27.625677030374497 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 934, "nhouse": 2, "residents": 14, "specialfac": 0, "expstr": "BrM+LC+2s+Res", "fptarea": 55, "repvalue": 220000, "xcoord": 85.323415909390917, "ycoord": 27.627337211152099 }, "geometry": { "type": "Point", "coordinates": [ 85.323415909390917, 27.627337211152099 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 935, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrM+LC+1s+Res", "fptarea": 92, "repvalue": 184000, "xcoord": 85.322775735141164, "ycoord": 27.626157054419576 }, "geometry": { "type": "Point", "coordinates": [ 85.322775735141164, 27.626157054419576 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 936, "nhouse": 12, "residents": 46, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 108, "repvalue": 1296000, "xcoord": 85.322901982099452, "ycoord": 27.626510305972932 }, "geometry": { "type": "Point", "coordinates": [ 85.322901982099452, 27.626510305972932 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 937, "nhouse": 23, "residents": 95, "specialfac": 0, "expstr": "RCi+HC+19s+Res", "fptarea": 64, "repvalue": 2432000, "xcoord": 85.322405935015425, "ycoord": 27.624511199175242 }, "geometry": { "type": "Point", "coordinates": [ 85.322405935015425, 27.624511199175242 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 938, "nhouse": 11, "residents": 47, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 107, "repvalue": 1284000, "xcoord": 85.321863422919677, "ycoord": 27.625559810419297 }, "geometry": { "type": "Point", "coordinates": [ 85.321863422919677, 27.625559810419297 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 939, "nhouse": 5, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 104, "repvalue": 624000, "xcoord": 85.322921636701039, "ycoord": 27.625220885817214 }, "geometry": { "type": "Point", "coordinates": [ 85.322921636701039, 27.625220885817214 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 940, "nhouse": 6, "residents": 16, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 89, "repvalue": 712000, "xcoord": 85.322512520306191, "ycoord": 27.626153870973376 }, "geometry": { "type": "Point", "coordinates": [ 85.322512520306191, 27.626153870973376 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 941, "nhouse": 9, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 83, "repvalue": 996000, "xcoord": 85.322361251190983, "ycoord": 27.627441698687885 }, "geometry": { "type": "Point", "coordinates": [ 85.322361251190983, 27.627441698687885 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 942, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 100, "repvalue": 400000, "xcoord": 85.322786456640884, "ycoord": 27.625453734375711 }, "geometry": { "type": "Point", "coordinates": [ 85.322786456640884, 27.625453734375711 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 943, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 94, "repvalue": 376000, "xcoord": 85.321852695472884, "ycoord": 27.62626313011916 }, "geometry": { "type": "Point", "coordinates": [ 85.321852695472884, 27.62626313011916 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 944, "nhouse": 6, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 92, "repvalue": 736000, "xcoord": 85.324068596922643, "ycoord": 27.627696825026881 }, "geometry": { "type": "Point", "coordinates": [ 85.324068596922643, 27.627696825026881 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 945, "nhouse": 17, "residents": 70, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 77, "repvalue": 1848000, "xcoord": 85.323812522018983, "ycoord": 27.627224763706359 }, "geometry": { "type": "Point", "coordinates": [ 85.323812522018983, 27.627224763706359 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 946, "nhouse": 26, "residents": 93, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 93, "repvalue": 2790000, "xcoord": 85.323791090135117, "ycoord": 27.628631404100261 }, "geometry": { "type": "Point", "coordinates": [ 85.323791090135117, 27.628631404100261 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 947, "nhouse": 25, "residents": 110, "specialfac": 0, "expstr": "RCi+HC+19s+Res", "fptarea": 71, "repvalue": 2698000, "xcoord": 85.322236792685345, "ycoord": 27.626971226763295 }, "geometry": { "type": "Point", "coordinates": [ 85.322236792685345, 27.626971226763295 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 948, "nhouse": 12, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 94, "repvalue": 1316000, "xcoord": 85.322765013252919, "ycoord": 27.626860374388265 }, "geometry": { "type": "Point", "coordinates": [ 85.322765013252919, 27.626860374388265 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 949, "nhouse": 13, "residents": 69, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 99, "repvalue": 1386000, "xcoord": 85.32265127598815, "ycoord": 27.625686582769532 }, "geometry": { "type": "Point", "coordinates": [ 85.32265127598815, 27.625686582769532 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 950, "nhouse": 12, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 100, "repvalue": 1200000, "xcoord": 85.323817879747267, "ycoord": 27.6268731035609 }, "geometry": { "type": "Point", "coordinates": [ 85.323817879747267, 27.6268731035609 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 951, "nhouse": 6, "residents": 26, "specialfac": 0, "expstr": "BrM+LC+4s+Res", "fptarea": 91, "repvalue": 728000, "xcoord": 85.321333419503475, "ycoord": 27.625787879537331 }, "geometry": { "type": "Point", "coordinates": [ 85.321333419503475, 27.625787879537331 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 952, "nhouse": 4, "residents": 19, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 82, "repvalue": 492000, "xcoord": 85.321865210789696, "ycoord": 27.625442590462008 }, "geometry": { "type": "Point", "coordinates": [ 85.321865210789696, 27.625442590462008 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 953, "nhouse": 4, "residents": 22, "specialfac": 0, "expstr": "BrM+LC+3s+Res", "fptarea": 89, "repvalue": 534000, "xcoord": 85.323929844170053, "ycoord": 27.628164114674206 }, "geometry": { "type": "Point", "coordinates": [ 85.323929844170053, 27.628164114674206 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 954, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "BrM+LC+2s+Res", "fptarea": 85, "repvalue": 340000, "xcoord": 85.322261817814493, "ycoord": 27.625330147190564 }, "geometry": { "type": "Point", "coordinates": [ 85.322261817814493, 27.625330147190564 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 955, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "BrM+LC+2s+Res", "fptarea": 99, "repvalue": 396000, "xcoord": 85.32264234062383, "ycoord": 27.626272682750965 }, "geometry": { "type": "Point", "coordinates": [ 85.32264234062383, 27.626272682750965 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 956, "nhouse": 4, "residents": 13, "specialfac": 0, "expstr": "BrM+LC+2s+Res", "fptarea": 108, "repvalue": 432000, "xcoord": 85.324072168278292, "ycoord": 27.627462384917163 }, "geometry": { "type": "Point", "coordinates": [ 85.324072168278292, 27.627462384917163 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 957, "nhouse": 4, "residents": 15, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 79, "repvalue": 474000, "xcoord": 85.322251093018224, "ycoord": 27.626033467057567 }, "geometry": { "type": "Point", "coordinates": [ 85.322251093018224, 27.626033467057567 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 958, "nhouse": 27, "residents": 112, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 91, "repvalue": 2912000, "xcoord": 85.322274329585639, "ycoord": 27.624509607250705 }, "geometry": { "type": "Point", "coordinates": [ 85.322274329585639, 27.624509607250705 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 959, "nhouse": 13, "residents": 53, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 60, "repvalue": 1440000, "xcoord": 85.3226477018748, "ycoord": 27.62592102276837 }, "geometry": { "type": "Point", "coordinates": [ 85.3226477018748, 27.62592102276837 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 960, "nhouse": 7, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 67, "repvalue": 804000, "xcoord": 85.323446275894113, "ycoord": 27.625344470517046 }, "geometry": { "type": "Point", "coordinates": [ 85.323446275894113, 27.625344470517046 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 961, "nhouse": 4, "residents": 19, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 67, "repvalue": 402000, "xcoord": 85.324726643842268, "ycoord": 27.627704775732802 }, "geometry": { "type": "Point", "coordinates": [ 85.324726643842268, 27.627704775732802 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 962, "nhouse": 10, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 80, "repvalue": 1120000, "xcoord": 85.322119485778572, "ycoord": 27.626031874905667 }, "geometry": { "type": "Point", "coordinates": [ 85.322119485778572, 27.626031874905667 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 963, "nhouse": 9, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 70, "repvalue": 980000, "xcoord": 85.32318484935989, "ycoord": 27.625224068388587 }, "geometry": { "type": "Point", "coordinates": [ 85.32318484935989, 27.625224068388587 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 964, "nhouse": 32, "residents": 138, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 101, "repvalue": 3434000, "xcoord": 85.323933415892114, "ycoord": 27.627929674596956 }, "geometry": { "type": "Point", "coordinates": [ 85.323933415892114, 27.627929674596956 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 965, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrM+LC+1s+Res", "fptarea": 97, "repvalue": 194000, "xcoord": 85.323668410525258, "ycoord": 27.628043713183946 }, "geometry": { "type": "Point", "coordinates": [ 85.323668410525258, 27.628043713183946 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 966, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 61, "repvalue": 244000, "xcoord": 85.321582327541307, "ycoord": 27.62672882460539 }, "geometry": { "type": "Point", "coordinates": [ 85.321582327541307, 27.62672882460539 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 967, "nhouse": 4, "residents": 16, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 78, "repvalue": 468000, "xcoord": 85.322660211082678, "ycoord": 27.625100482735885 }, "geometry": { "type": "Point", "coordinates": [ 85.322660211082678, 27.625100482735885 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 968, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 92, "repvalue": 368000, "xcoord": 85.32174254417103, "ycoord": 27.624854898196997 }, "geometry": { "type": "Point", "coordinates": [ 85.32174254417103, 27.624854898196997 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 969, "nhouse": 4, "residents": 16, "specialfac": 0, "expstr": "BrM+LC+3s+Res", "fptarea": 83, "repvalue": 498000, "xcoord": 85.32262446908571, "ycoord": 27.627444882557235 }, "geometry": { "type": "Point", "coordinates": [ 85.32262446908571, 27.627444882557235 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 970, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "BrM+MC+2s+Res", "fptarea": 72, "repvalue": 288000, "xcoord": 85.322133786540988, "ycoord": 27.625094115129436 }, "geometry": { "type": "Point", "coordinates": [ 85.322133786540988, 27.625094115129436 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 971, "nhouse": 8, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 66, "repvalue": 2376000, "xcoord": 85.321726452177671, "ycoord": 27.625909877760314 }, "geometry": { "type": "Point", "coordinates": [ 85.321726452177671, 27.625909877760314 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1991, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Com", "fptarea": 107, "repvalue": 2140000, "xcoord": 85.321603785925831, "ycoord": 27.625322185420195 }, "geometry": { "type": "Point", "coordinates": [ 85.321603785925831, 27.625322185420195 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1992, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Com", "fptarea": 99, "repvalue": 1782000, "xcoord": 85.321843755636934, "ycoord": 27.626849229811622 }, "geometry": { "type": "Point", "coordinates": [ 85.321843755636934, 27.626849229811622 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1993, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Com", "fptarea": 131, "repvalue": 1834000, "xcoord": 85.322539327528617, "ycoord": 27.624395570959475 }, "geometry": { "type": "Point", "coordinates": [ 85.322539327528617, 27.624395570959475 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1994, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 102, "repvalue": 1836000, "xcoord": 85.321589480508933, "ycoord": 27.626259944910402 }, "geometry": { "type": "Point", "coordinates": [ 85.321589480508933, 27.626259944910402 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1995, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Com", "fptarea": 111, "repvalue": 1998000, "xcoord": 85.32185984714728, "ycoord": 27.625794250327598 }, "geometry": { "type": "Point", "coordinates": [ 85.32185984714728, 27.625794250327598 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1996, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+5s+Com", "fptarea": 95, "repvalue": 950000, "xcoord": 85.322110547451203, "ycoord": 27.626617974697947 }, "geometry": { "type": "Point", "coordinates": [ 85.322110547451203, 27.626617974697947 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1997, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Com", "fptarea": 135, "repvalue": 1350000, "xcoord": 85.323810736087964, "ycoord": 27.627341983750668 }, "geometry": { "type": "Point", "coordinates": [ 85.323810736087964, 27.627341983750668 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1998, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Com", "fptarea": 145, "repvalue": 1450000, "xcoord": 85.322620894648566, "ycoord": 27.627679322493435 }, "geometry": { "type": "Point", "coordinates": [ 85.322620894648566, 27.627679322493435 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1999, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+9s+Com", "fptarea": 142, "repvalue": 2556000, "xcoord": 85.32250000943796, "ycoord": 27.626974410819063 }, "geometry": { "type": "Point", "coordinates": [ 85.32250000943796, 27.626974410819063 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 2000, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Com", "fptarea": 149, "repvalue": 1788000, "xcoord": 85.322925210124694, "ycoord": 27.624986445761749 }, "geometry": { "type": "Point", "coordinates": [ 85.322925210124694, 27.624986445761749 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 2001, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 118, "repvalue": 2124000, "xcoord": 85.322770374245593, "ycoord": 27.626508714413312 }, "geometry": { "type": "Point", "coordinates": [ 85.322770374245593, 27.626508714413312 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 2002, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Com", "fptarea": 146, "repvalue": 2920000, "xcoord": 85.322530392057629, "ycoord": 27.624981671016315 }, "geometry": { "type": "Point", "coordinates": [ 85.322530392057629, 27.624981671016315 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 2003, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Com", "fptarea": 121, "repvalue": 2420000, "xcoord": 85.323015722412023, "ycoord": 27.627684097408981 }, "geometry": { "type": "Point", "coordinates": [ 85.323015722412023, 27.627684097408981 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 2004, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 124, "repvalue": 1736000, "xcoord": 85.323433772417417, "ycoord": 27.626165010851622 }, "geometry": { "type": "Point", "coordinates": [ 85.323433772417417, 27.626165010851622 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 2005, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Com", "fptarea": 121, "repvalue": 1936000, "xcoord": 85.321874149977759, "ycoord": 27.624856490644255 }, "geometry": { "type": "Point", "coordinates": [ 85.321874149977759, 27.624856490644255 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 2006, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Com", "fptarea": 142, "repvalue": 2840000, "xcoord": 85.322885900090583, "ycoord": 27.6275652859124 }, "geometry": { "type": "Point", "coordinates": [ 85.322885900090583, 27.6275652859124 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 2007, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Com", "fptarea": 115, "repvalue": 1610000, "xcoord": 85.321735392281951, "ycoord": 27.625323778023802 }, "geometry": { "type": "Point", "coordinates": [ 85.321735392281951, 27.625323778023802 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 2008, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+5s+Com", "fptarea": 144, "repvalue": 1440000, "xcoord": 85.322894834647869, "ycoord": 27.62697918596691 }, "geometry": { "type": "Point", "coordinates": [ 85.322894834647869, 27.62697918596691 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 2009, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Com", "fptarea": 119, "repvalue": 1190000, "xcoord": 85.323938773394346, "ycoord": 27.627578014465431 }, "geometry": { "type": "Point", "coordinates": [ 85.323938773394346, 27.627578014465431 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 2010, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Com", "fptarea": 101, "repvalue": 1616000, "xcoord": 85.323545732057227, "ycoord": 27.627456022169508 }, "geometry": { "type": "Point", "coordinates": [ 85.323545732057227, 27.627456022169508 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 2011, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Com", "fptarea": 102, "repvalue": 1632000, "xcoord": 85.322238580264738, "ycoord": 27.626854006807392 }, "geometry": { "type": "Point", "coordinates": [ 85.322238580264738, 27.626854006807392 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 2012, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Com", "fptarea": 116, "repvalue": 1392000, "xcoord": 85.324063239808254, "ycoord": 27.628048485175793 }, "geometry": { "type": "Point", "coordinates": [ 85.324063239808254, 27.628048485175793 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 2013, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Com", "fptarea": 106, "repvalue": 1484000, "xcoord": 85.322525030645537, "ycoord": 27.625333331025363 }, "geometry": { "type": "Point", "coordinates": [ 85.322525030645537, 27.625333331025363 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 2014, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Com", "fptarea": 114, "repvalue": 1824000, "xcoord": 85.32418592155156, "ycoord": 27.628636175836032 }, "geometry": { "type": "Point", "coordinates": [ 85.32418592155156, 27.628636175836032 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 2015, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 102, "repvalue": 1224000, "xcoord": 85.323414123028925, "ycoord": 27.627454431170655 }, "geometry": { "type": "Point", "coordinates": [ 85.323414123028925, 27.627454431170655 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 2016, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Com", "fptarea": 98, "repvalue": 1960000, "xcoord": 85.323318242002586, "ycoord": 27.625108439436769 }, "geometry": { "type": "Point", "coordinates": [ 85.323318242002586, 27.625108439436769 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 2017, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 144, "repvalue": 2592000, "xcoord": 85.323042523335488, "ycoord": 27.625925797328868 }, "geometry": { "type": "Point", "coordinates": [ 85.323042523335488, 27.625925797328868 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 972, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 56, "repvalue": 336000, "xcoord": 85.314362682651762, "ycoord": 27.618435380153119 }, "geometry": { "type": "Point", "coordinates": [ 85.314362682651762, 27.618435380153119 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 973, "nhouse": 11, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 82, "repvalue": 984000, "xcoord": 85.316286771577651, "ycoord": 27.61824483924277 }, "geometry": { "type": "Point", "coordinates": [ 85.316286771577651, 27.61824483924277 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 974, "nhouse": 5, "residents": 21, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 83, "repvalue": 498000, "xcoord": 85.312103034739238, "ycoord": 27.617017495544221 }, "geometry": { "type": "Point", "coordinates": [ 85.312103034739238, 27.617017495544221 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 975, "nhouse": 18, "residents": 75, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 63, "repvalue": 1638000, "xcoord": 85.314742484392085, "ycoord": 27.617156541328303 }, "geometry": { "type": "Point", "coordinates": [ 85.314742484392085, 27.617156541328303 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 976, "nhouse": 6, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 75, "repvalue": 600000, "xcoord": 85.317380308739345, "ycoord": 27.61740247189454 }, "geometry": { "type": "Point", "coordinates": [ 85.317380308739345, 27.61740247189454 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 977, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 74, "repvalue": 296000, "xcoord": 85.313768981232002, "ycoord": 27.618000346510559 }, "geometry": { "type": "Point", "coordinates": [ 85.313768981232002, 27.618000346510559 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 978, "nhouse": 7, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 47, "repvalue": 658000, "xcoord": 85.315827840205984, "ycoord": 27.616848859358772 }, "geometry": { "type": "Point", "coordinates": [ 85.315827840205984, 27.616848859358772 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 979, "nhouse": 15, "residents": 69, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 85, "repvalue": 1360000, "xcoord": 85.312820052351384, "ycoord": 27.617240127088685 }, "geometry": { "type": "Point", "coordinates": [ 85.312820052351384, 27.617240127088685 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 980, "nhouse": 10, "residents": 48, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 48, "repvalue": 960000, "xcoord": 85.317245544131879, "ycoord": 27.618363428078951 }, "geometry": { "type": "Point", "coordinates": [ 85.317245544131879, 27.618363428078951 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 981, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 49, "repvalue": 196000, "xcoord": 85.314477820571028, "ycoord": 27.618757642608635 }, "geometry": { "type": "Point", "coordinates": [ 85.314477820571028, 27.618757642608635 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 982, "nhouse": 11, "residents": 43, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 85, "repvalue": 1020000, "xcoord": 85.315694699528976, "ycoord": 27.617702878903373 }, "geometry": { "type": "Point", "coordinates": [ 85.315694699528976, 27.617702878903373 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 983, "nhouse": 11, "residents": 46, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 82, "repvalue": 984000, "xcoord": 85.31520303983983, "ycoord": 27.61844558959676 }, "geometry": { "type": "Point", "coordinates": [ 85.31520303983983, 27.61844558959676 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 984, "nhouse": 13, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 61, "repvalue": 1220000, "xcoord": 85.313668591615496, "ycoord": 27.616715672816632 }, "geometry": { "type": "Point", "coordinates": [ 85.313668591615496, 27.616715672816632 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 985, "nhouse": 7, "residents": 29, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 82, "repvalue": 656000, "xcoord": 85.311492945292599, "ycoord": 27.617651796972851 }, "geometry": { "type": "Point", "coordinates": [ 85.311492945292599, 27.617651796972851 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 986, "nhouse": 8, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 63, "repvalue": 756000, "xcoord": 85.311246282262701, "ycoord": 27.618076611699767 }, "geometry": { "type": "Point", "coordinates": [ 85.311246282262701, 27.618076611699767 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 987, "nhouse": 3, "residents": 7, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 83, "repvalue": 332000, "xcoord": 85.318700859895998, "ycoord": 27.61741848375318 }, "geometry": { "type": "Point", "coordinates": [ 85.318700859895998, 27.61741848375318 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 988, "nhouse": 18, "residents": 66, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 48, "repvalue": 1728000, "xcoord": 85.31485107324454, "ycoord": 27.617906541856375 }, "geometry": { "type": "Point", "coordinates": [ 85.31485107324454, 27.617906541856375 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 989, "nhouse": 9, "residents": 48, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 82, "repvalue": 820000, "xcoord": 85.315461145656016, "ycoord": 27.617272224874217 }, "geometry": { "type": "Point", "coordinates": [ 85.315461145656016, 27.617272224874217 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 990, "nhouse": 9, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 68, "repvalue": 816000, "xcoord": 85.314482733651545, "ycoord": 27.618436838956463 }, "geometry": { "type": "Point", "coordinates": [ 85.314482733651545, 27.618436838956463 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 991, "nhouse": 27, "residents": 90, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 77, "repvalue": 2464000, "xcoord": 85.319181060586672, "ycoord": 27.617424303133362 }, "geometry": { "type": "Point", "coordinates": [ 85.319181060586672, 27.617424303133362 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 992, "nhouse": 21, "residents": 69, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 53, "repvalue": 1908000, "xcoord": 85.313640738342428, "ycoord": 27.618533559659515 }, "geometry": { "type": "Point", "coordinates": [ 85.313640738342428, 27.618533559659515 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 993, "nhouse": 9, "residents": 52, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 63, "repvalue": 882000, "xcoord": 85.311471617646376, "ycoord": 27.619041944031132 }, "geometry": { "type": "Point", "coordinates": [ 85.311471617646376, 27.619041944031132 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 994, "nhouse": 9, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 83, "repvalue": 830000, "xcoord": 85.316166720675582, "ycoord": 27.618243382009592 }, "geometry": { "type": "Point", "coordinates": [ 85.316166720675582, 27.618243382009592 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 995, "nhouse": 28, "residents": 118, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 80, "repvalue": 2560000, "xcoord": 85.316174900716959, "ycoord": 27.6177087087422 }, "geometry": { "type": "Point", "coordinates": [ 85.316174900716959, 27.6177087087422 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 996, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 80, "repvalue": 320000, "xcoord": 85.315344369377996, "ycoord": 27.617056897733061 }, "geometry": { "type": "Point", "coordinates": [ 85.315344369377996, 27.617056897733061 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 997, "nhouse": 5, "residents": 17, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 83, "repvalue": 498000, "xcoord": 85.312798741835508, "ycoord": 27.61863027518222 }, "geometry": { "type": "Point", "coordinates": [ 85.312798741835508, 27.61863027518222 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 998, "nhouse": 7, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 88, "repvalue": 704000, "xcoord": 85.315923346352804, "ycoord": 27.618454336500278 }, "geometry": { "type": "Point", "coordinates": [ 85.315923346352804, 27.618454336500278 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 999, "nhouse": 21, "residents": 88, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 69, "repvalue": 1932000, "xcoord": 85.316786600006481, "ycoord": 27.616967450827307 }, "geometry": { "type": "Point", "coordinates": [ 85.316786600006481, 27.616967450827307 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1000, "nhouse": 7, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 65, "repvalue": 650000, "xcoord": 85.312701642083269, "ycoord": 27.617131732430508 }, "geometry": { "type": "Point", "coordinates": [ 85.312701642083269, 27.617131732430508 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1001, "nhouse": 12, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 78, "repvalue": 1092000, "xcoord": 85.315707790854532, "ycoord": 27.616847401796115 }, "geometry": { "type": "Point", "coordinates": [ 85.315707790854532, 27.616847401796115 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1002, "nhouse": 12, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 80, "repvalue": 1120000, "xcoord": 85.31437250926821, "ycoord": 27.617793772841441 }, "geometry": { "type": "Point", "coordinates": [ 85.31437250926821, 27.617793772841441 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1003, "nhouse": 17, "residents": 65, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 69, "repvalue": 1518000, "xcoord": 85.314148787996004, "ycoord": 27.61672150947599 }, "geometry": { "type": "Point", "coordinates": [ 85.314148787996004, 27.61672150947599 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1004, "nhouse": 11, "residents": 49, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 73, "repvalue": 1022000, "xcoord": 85.318588977776443, "ycoord": 27.616882354653058 }, "geometry": { "type": "Point", "coordinates": [ 85.318588977776443, 27.616882354653058 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1005, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 72, "repvalue": 288000, "xcoord": 85.317256988849877, "ycoord": 27.61761488508947 }, "geometry": { "type": "Point", "coordinates": [ 85.317256988849877, 27.61761488508947 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1006, "nhouse": 7, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 72, "repvalue": 720000, "xcoord": 85.314143874300086, "ycoord": 27.617042313152204 }, "geometry": { "type": "Point", "coordinates": [ 85.314143874300086, 27.617042313152204 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1007, "nhouse": 8, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 56, "repvalue": 784000, "xcoord": 85.310889413348733, "ycoord": 27.617858357905856 }, "geometry": { "type": "Point", "coordinates": [ 85.310889413348733, 27.617858357905856 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1008, "nhouse": 10, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 60, "repvalue": 960000, "xcoord": 85.311843253980143, "ycoord": 27.618297786896296 }, "geometry": { "type": "Point", "coordinates": [ 85.311843253980143, 27.618297786896296 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1009, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 50, "repvalue": 300000, "xcoord": 85.314982583658718, "ycoord": 27.617159458050082 }, "geometry": { "type": "Point", "coordinates": [ 85.314982583658718, 27.617159458050082 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1010, "nhouse": 21, "residents": 98, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 73, "repvalue": 1898000, "xcoord": 85.312201766199081, "ycoord": 27.618409103943208 }, "geometry": { "type": "Point", "coordinates": [ 85.312201766199081, 27.618409103943208 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1011, "nhouse": 4, "residents": 15, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 67, "repvalue": 402000, "xcoord": 85.315696335976227, "ycoord": 27.617595944271052 }, "geometry": { "type": "Point", "coordinates": [ 85.315696335976227, 27.617595944271052 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1012, "nhouse": 8, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 51, "repvalue": 816000, "xcoord": 85.317493820018768, "ycoord": 27.617831666965195 }, "geometry": { "type": "Point", "coordinates": [ 85.317493820018768, 27.617831666965195 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1013, "nhouse": 1, "residents": 6, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 84, "repvalue": 168000, "xcoord": 85.313884117000796, "ycoord": 27.618322609380535 }, "geometry": { "type": "Point", "coordinates": [ 85.313884117000796, 27.618322609380535 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1014, "nhouse": 9, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 68, "repvalue": 816000, "xcoord": 85.312920432159103, "ycoord": 27.618524800883254 }, "geometry": { "type": "Point", "coordinates": [ 85.312920432159103, 27.618524800883254 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1015, "nhouse": 2, "residents": 4, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 63, "repvalue": 252000, "xcoord": 85.310879566405859, "ycoord": 27.618499964057772 }, "geometry": { "type": "Point", "coordinates": [ 85.310879566405859, 27.618499964057772 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1016, "nhouse": 7, "residents": 30, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 63, "repvalue": 630000, "xcoord": 85.311354847682111, "ycoord": 27.618826613847304 }, "geometry": { "type": "Point", "coordinates": [ 85.311354847682111, 27.618826613847304 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1017, "nhouse": 7, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 69, "repvalue": 690000, "xcoord": 85.312573395325472, "ycoord": 27.617664944470523 }, "geometry": { "type": "Point", "coordinates": [ 85.312573395325472, 27.617664944470523 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1018, "nhouse": 26, "residents": 98, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 81, "repvalue": 2430000, "xcoord": 85.316309673494558, "ycoord": 27.616747753892284 }, "geometry": { "type": "Point", "coordinates": [ 85.316309673494558, 27.616747753892284 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1019, "nhouse": 7, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 56, "repvalue": 672000, "xcoord": 85.312106314506522, "ycoord": 27.616803626652995 }, "geometry": { "type": "Point", "coordinates": [ 85.312106314506522, 27.616803626652995 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1020, "nhouse": 12, "residents": 45, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 56, "repvalue": 1120000, "xcoord": 85.313903775392788, "ycoord": 27.61703939499051 }, "geometry": { "type": "Point", "coordinates": [ 85.313903775392788, 27.61703939499051 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1021, "nhouse": 7, "residents": 21, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 66, "repvalue": 660000, "xcoord": 85.312214885059078, "ycoord": 27.617553628464535 }, "geometry": { "type": "Point", "coordinates": [ 85.312214885059078, 27.617553628464535 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1022, "nhouse": 7, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 71, "repvalue": 710000, "xcoord": 85.312107954376614, "ycoord": 27.61669669220478 }, "geometry": { "type": "Point", "coordinates": [ 85.312107954376614, 27.61669669220478 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1023, "nhouse": 5, "residents": 21, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 51, "repvalue": 510000, "xcoord": 85.315089537103432, "ycoord": 27.618016393057051 }, "geometry": { "type": "Point", "coordinates": [ 85.315089537103432, 27.618016393057051 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1024, "nhouse": 4, "residents": 16, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 51, "repvalue": 408000, "xcoord": 85.312221444272211, "ycoord": 27.617125890683464 }, "geometry": { "type": "Point", "coordinates": [ 85.312221444272211, 27.617125890683464 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1025, "nhouse": 8, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 67, "repvalue": 804000, "xcoord": 85.314257372512387, "ycoord": 27.617471510314378 }, "geometry": { "type": "Point", "coordinates": [ 85.314257372512387, 27.617471510314378 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1026, "nhouse": 11, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 87, "repvalue": 1044000, "xcoord": 85.31160479308258, "ycoord": 27.618187930234424 }, "geometry": { "type": "Point", "coordinates": [ 85.31160479308258, 27.618187930234424 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1027, "nhouse": 19, "residents": 74, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 81, "repvalue": 1782000, "xcoord": 85.313522325905865, "ycoord": 27.618425165623304 }, "geometry": { "type": "Point", "coordinates": [ 85.313522325905865, 27.618425165623304 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1028, "nhouse": 5, "residents": 19, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 80, "repvalue": 480000, "xcoord": 85.318574275159321, "ycoord": 27.617844767813832 }, "geometry": { "type": "Point", "coordinates": [ 85.318574275159321, 27.617844767813832 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1029, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 76, "repvalue": 304000, "xcoord": 85.318827443565624, "ycoord": 27.616992199508275 }, "geometry": { "type": "Point", "coordinates": [ 85.318827443565624, 27.616992199508275 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1030, "nhouse": 6, "residents": 23, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 74, "repvalue": 592000, "xcoord": 85.312818413135133, "ycoord": 27.617347061567852 }, "geometry": { "type": "Point", "coordinates": [ 85.312818413135133, 27.617347061567852 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1031, "nhouse": 13, "residents": 63, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 85, "repvalue": 1190000, "xcoord": 85.315804931638624, "ycoord": 27.618345944315777 }, "geometry": { "type": "Point", "coordinates": [ 85.315804931638624, 27.618345944315777 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1032, "nhouse": 24, "residents": 81, "specialfac": 0, "expstr": "RCi+HC+19s+Res", "fptarea": 57, "repvalue": 2166000, "xcoord": 85.316160176480224, "ycoord": 27.618671120592232 }, "geometry": { "type": "Point", "coordinates": [ 85.316160176480224, 27.618671120592232 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1033, "nhouse": 4, "residents": 15, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 50, "repvalue": 400000, "xcoord": 85.319070809214168, "ycoord": 27.616781239486144 }, "geometry": { "type": "Point", "coordinates": [ 85.319070809214168, 27.616781239486144 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1034, "nhouse": 24, "residents": 89, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 71, "repvalue": 2272000, "xcoord": 85.319302743706928, "ycoord": 27.617318822883799 }, "geometry": { "type": "Point", "coordinates": [ 85.319302743706928, 27.617318822883799 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1035, "nhouse": 3, "residents": 8, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 78, "repvalue": 312000, "xcoord": 85.315206313783619, "ycoord": 27.618231720407469 }, "geometry": { "type": "Point", "coordinates": [ 85.315206313783619, 27.618231720407469 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1036, "nhouse": 9, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 59, "repvalue": 826000, "xcoord": 85.314844524031031, "ycoord": 27.618334280169719 }, "geometry": { "type": "Point", "coordinates": [ 85.314844524031031, 27.618334280169719 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1037, "nhouse": 1, "residents": 2, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 60, "repvalue": 120000, "xcoord": 85.3136358227881, "ycoord": 27.618854363167866 }, "geometry": { "type": "Point", "coordinates": [ 85.3136358227881, 27.618854363167866 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1038, "nhouse": 7, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 85, "repvalue": 680000, "xcoord": 85.31112787276686, "ycoord": 27.6179682157392 }, "geometry": { "type": "Point", "coordinates": [ 85.31112787276686, 27.6179682157392 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1039, "nhouse": 4, "residents": 22, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 65, "repvalue": 390000, "xcoord": 85.31617162872746, "ycoord": 27.617922578054369 }, "geometry": { "type": "Point", "coordinates": [ 85.31617162872746, 27.617922578054369 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1040, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 71, "repvalue": 284000, "xcoord": 85.312099754935801, "ycoord": 27.617231364428498 }, "geometry": { "type": "Point", "coordinates": [ 85.312099754935801, 27.617231364428498 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1041, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 70, "repvalue": 280000, "xcoord": 85.31868779151101, "ycoord": 27.618273962108415 }, "geometry": { "type": "Point", "coordinates": [ 85.31868779151101, 27.618273962108415 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1042, "nhouse": 15, "residents": 59, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 47, "repvalue": 1410000, "xcoord": 85.317863777671178, "ycoord": 27.617194426327707 }, "geometry": { "type": "Point", "coordinates": [ 85.317863777671178, 27.617194426327707 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1043, "nhouse": 9, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 84, "repvalue": 840000, "xcoord": 85.317485646340245, "ycoord": 27.618366340586292 }, "geometry": { "type": "Point", "coordinates": [ 85.317485646340245, 27.618366340586292 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1044, "nhouse": 7, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 45, "repvalue": 630000, "xcoord": 85.318350512480251, "ycoord": 27.616772509407252 }, "geometry": { "type": "Point", "coordinates": [ 85.318350512480251, 27.616772509407252 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1045, "nhouse": 7, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 85, "repvalue": 680000, "xcoord": 85.313787002457985, "ycoord": 27.616824066677836 }, "geometry": { "type": "Point", "coordinates": [ 85.313787002457985, 27.616824066677836 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1046, "nhouse": 33, "residents": 136, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 88, "repvalue": 2992000, "xcoord": 85.312461543159671, "ycoord": 27.617128811764569 }, "geometry": { "type": "Point", "coordinates": [ 85.312461543159671, 27.617128811764569 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1047, "nhouse": 2, "residents": 9, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 45, "repvalue": 180000, "xcoord": 85.311739606349974, "ycoord": 27.617226981697186 }, "geometry": { "type": "Point", "coordinates": [ 85.311739606349974, 27.617226981697186 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1048, "nhouse": 1, "residents": 8, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 78, "repvalue": 156000, "xcoord": 85.318455858328775, "ycoord": 27.617736377797073 }, "geometry": { "type": "Point", "coordinates": [ 85.318455858328775, 27.617736377797073 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1049, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 63, "repvalue": 126000, "xcoord": 85.311238078156777, "ycoord": 27.618611283579149 }, "geometry": { "type": "Point", "coordinates": [ 85.311238078156777, 27.618611283579149 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1050, "nhouse": 31, "residents": 153, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 77, "repvalue": 2772000, "xcoord": 85.317630216070427, "ycoord": 27.616763775591828 }, "geometry": { "type": "Point", "coordinates": [ 85.317630216070427, 27.616763775591828 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1051, "nhouse": 13, "residents": 52, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 55, "repvalue": 1210000, "xcoord": 85.312096475096226, "ycoord": 27.617445233305812 }, "geometry": { "type": "Point", "coordinates": [ 85.312096475096226, 27.617445233305812 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1052, "nhouse": 5, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 60, "repvalue": 480000, "xcoord": 85.313278946351517, "ycoord": 27.618636115223197 }, "geometry": { "type": "Point", "coordinates": [ 85.313278946351517, 27.618636115223197 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1053, "nhouse": 20, "residents": 74, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 58, "repvalue": 1856000, "xcoord": 85.311484742532542, "ycoord": 27.618186468953116 }, "geometry": { "type": "Point", "coordinates": [ 85.311484742532542, 27.618186468953116 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1054, "nhouse": 3, "residents": 17, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 62, "repvalue": 372000, "xcoord": 85.31738357830865, "ycoord": 27.617188602433206 }, "geometry": { "type": "Point", "coordinates": [ 85.31738357830865, 27.617188602433206 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1055, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 56, "repvalue": 224000, "xcoord": 85.318212489346124, "ycoord": 27.617947336565667 }, "geometry": { "type": "Point", "coordinates": [ 85.318212489346124, 27.617947336565667 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1056, "nhouse": 21, "residents": 101, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 69, "repvalue": 1932000, "xcoord": 85.311469976994942, "ycoord": 27.619148878408065 }, "geometry": { "type": "Point", "coordinates": [ 85.311469976994942, 27.619148878408065 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1057, "nhouse": 10, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 77, "repvalue": 924000, "xcoord": 85.317865411976314, "ycoord": 27.617087491568089 }, "geometry": { "type": "Point", "coordinates": [ 85.317865411976314, 27.617087491568089 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1058, "nhouse": 25, "residents": 99, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 82, "repvalue": 2296000, "xcoord": 85.317378673941178, "ycoord": 27.617509406622606 }, "geometry": { "type": "Point", "coordinates": [ 85.317378673941178, 27.617509406622606 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1059, "nhouse": 5, "residents": 18, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 87, "repvalue": 522000, "xcoord": 85.312438588543344, "ycoord": 27.618625894061587 }, "geometry": { "type": "Point", "coordinates": [ 85.312438588543344, 27.618625894061587 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1060, "nhouse": 27, "residents": 104, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 77, "repvalue": 2464000, "xcoord": 85.315586105011462, "ycoord": 27.616952878767563 }, "geometry": { "type": "Point", "coordinates": [ 85.315586105011462, 27.616952878767563 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1061, "nhouse": 22, "residents": 83, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 85, "repvalue": 2040000, "xcoord": 85.31328550173177, "ycoord": 27.618208377273898 }, "geometry": { "type": "Point", "coordinates": [ 85.31328550173177, 27.618208377273898 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1062, "nhouse": 12, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 84, "repvalue": 1176000, "xcoord": 85.314020548766536, "ycoord": 27.617254723218846 }, "geometry": { "type": "Point", "coordinates": [ 85.314020548766536, 27.617254723218846 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1063, "nhouse": 5, "residents": 22, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 54, "repvalue": 540000, "xcoord": 85.312435309167881, "ycoord": 27.618839762933337 }, "geometry": { "type": "Point", "coordinates": [ 85.312435309167881, 27.618839762933337 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1064, "nhouse": 4, "residents": 9, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 72, "repvalue": 432000, "xcoord": 85.316539958570715, "ycoord": 27.617392275990849 }, "geometry": { "type": "Point", "coordinates": [ 85.316539958570715, 27.617392275990849 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1065, "nhouse": 11, "residents": 53, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 84, "repvalue": 1008000, "xcoord": 85.315811477123916, "ycoord": 27.617918205791394 }, "geometry": { "type": "Point", "coordinates": [ 85.315811477123916, 27.617918205791394 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1066, "nhouse": 10, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 84, "repvalue": 1008000, "xcoord": 85.31808917035211, "ycoord": 27.61815975052906 }, "geometry": { "type": "Point", "coordinates": [ 85.31808917035211, 27.61815975052906 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1067, "nhouse": 32, "residents": 131, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 85, "repvalue": 2890000, "xcoord": 85.3158294764646, "ycoord": 27.616741924705945 }, "geometry": { "type": "Point", "coordinates": [ 85.3158294764646, 27.616741924705945 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1068, "nhouse": 7, "residents": 29, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 50, "repvalue": 700000, "xcoord": 85.310529262937067, "ycoord": 27.617853971941713 }, "geometry": { "type": "Point", "coordinates": [ 85.310529262937067, 27.617853971941713 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1069, "nhouse": 12, "residents": 51, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 68, "repvalue": 1088000, "xcoord": 85.314747396367565, "ycoord": 27.616835737558329 }, "geometry": { "type": "Point", "coordinates": [ 85.314747396367565, 27.616835737558329 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1070, "nhouse": 6, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 69, "repvalue": 552000, "xcoord": 85.319190858701333, "ycoord": 27.61678269413602 }, "geometry": { "type": "Point", "coordinates": [ 85.319190858701333, 27.61678269413602 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1071, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 50, "repvalue": 300000, "xcoord": 85.318464027076914, "ycoord": 27.617201703860456 }, "geometry": { "type": "Point", "coordinates": [ 85.318464027076914, 27.617201703860456 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1072, "nhouse": 11, "residents": 46, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 64, "repvalue": 1024000, "xcoord": 85.319057744057289, "ycoord": 27.617636718082732 }, "geometry": { "type": "Point", "coordinates": [ 85.319057744057289, 27.617636718082732 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1073, "nhouse": 24, "residents": 96, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 81, "repvalue": 2268000, "xcoord": 85.316521966324416, "ycoord": 27.618568557396614 }, "geometry": { "type": "Point", "coordinates": [ 85.316521966324416, 27.618568557396614 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1074, "nhouse": 11, "residents": 47, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 86, "repvalue": 1032000, "xcoord": 85.312938462852514, "ycoord": 27.617348521654545 }, "geometry": { "type": "Point", "coordinates": [ 85.312938462852514, 27.617348521654545 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1075, "nhouse": 1, "residents": 2, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 44, "repvalue": 176000, "xcoord": 85.316776787803462, "ycoord": 27.617609059013674 }, "geometry": { "type": "Point", "coordinates": [ 85.316776787803462, 27.617609059013674 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1076, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 80, "repvalue": 320000, "xcoord": 85.314976035163795, "ycoord": 27.617587196438492 }, "geometry": { "type": "Point", "coordinates": [ 85.314976035163795, 27.617587196438492 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1077, "nhouse": 9, "residents": 43, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 57, "repvalue": 798000, "xcoord": 85.312436948860139, "ycoord": 27.618732828498327 }, "geometry": { "type": "Point", "coordinates": [ 85.312436948860139, 27.618732828498327 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1078, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 58, "repvalue": 348000, "xcoord": 85.316049942059138, "ycoord": 27.618028055384073 }, "geometry": { "type": "Point", "coordinates": [ 85.316049942059138, 27.618028055384073 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1079, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 48, "repvalue": 288000, "xcoord": 85.313045400387765, "ycoord": 27.618205457513834 }, "geometry": { "type": "Point", "coordinates": [ 85.313045400387765, 27.618205457513834 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1080, "nhouse": 4, "residents": 14, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 73, "repvalue": 438000, "xcoord": 85.314260648157884, "ycoord": 27.617257641199345 }, "geometry": { "type": "Point", "coordinates": [ 85.314260648157884, 27.617257641199345 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1081, "nhouse": 24, "residents": 101, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 69, "repvalue": 2208000, "xcoord": 85.316882120187344, "ycoord": 27.618572927909849 }, "geometry": { "type": "Point", "coordinates": [ 85.316882120187344, 27.618572927909849 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1082, "nhouse": 5, "residents": 17, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 79, "repvalue": 474000, "xcoord": 85.311241359826255, "ycoord": 27.618397414832614 }, "geometry": { "type": "Point", "coordinates": [ 85.311241359826255, 27.618397414832614 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1083, "nhouse": 28, "residents": 120, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 85, "repvalue": 2550000, "xcoord": 85.314607697310166, "ycoord": 27.618117493968409 }, "geometry": { "type": "Point", "coordinates": [ 85.314607697310166, 27.618117493968409 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1084, "nhouse": 11, "residents": 52, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 73, "repvalue": 1022000, "xcoord": 85.314749033674687, "ycoord": 27.616728802964865 }, "geometry": { "type": "Point", "coordinates": [ 85.314749033674687, 27.616728802964865 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1085, "nhouse": 10, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 67, "repvalue": 938000, "xcoord": 85.31569142660743, "ycoord": 27.617916748162806 }, "geometry": { "type": "Point", "coordinates": [ 85.31569142660743, 27.617916748162806 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1086, "nhouse": 12, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 51, "repvalue": 1122000, "xcoord": 85.314972760862219, "ycoord": 27.617801065622256 }, "geometry": { "type": "Point", "coordinates": [ 85.314972760862219, 27.617801065622256 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1087, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 50, "repvalue": 200000, "xcoord": 85.319176161407867, "ycoord": 27.617745107608581 }, "geometry": { "type": "Point", "coordinates": [ 85.319176161407867, 27.617745107608581 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1088, "nhouse": 8, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 77, "repvalue": 770000, "xcoord": 85.316054850406431, "ycoord": 27.61770725143819 }, "geometry": { "type": "Point", "coordinates": [ 85.316054850406431, 27.61770725143819 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1089, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 67, "repvalue": 268000, "xcoord": 85.311483101953399, "ycoord": 27.618293403343955 }, "geometry": { "type": "Point", "coordinates": [ 85.311483101953399, 27.618293403343955 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1090, "nhouse": 4, "residents": 20, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 59, "repvalue": 354000, "xcoord": 85.312805299079912, "ycoord": 27.618202537338576 }, "geometry": { "type": "Point", "coordinates": [ 85.312805299079912, 27.618202537338576 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1091, "nhouse": 7, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 54, "repvalue": 648000, "xcoord": 85.311619556839446, "ycoord": 27.617225520579161 }, "geometry": { "type": "Point", "coordinates": [ 85.311619556839446, 27.617225520579161 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1092, "nhouse": 15, "residents": 68, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 45, "repvalue": 1350000, "xcoord": 85.31664201760303, "ycoord": 27.618570014338161 }, "geometry": { "type": "Point", "coordinates": [ 85.31664201760303, 27.618570014338161 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1093, "nhouse": 7, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 84, "repvalue": 672000, "xcoord": 85.314867445646854, "ycoord": 27.61683719595133 }, "geometry": { "type": "Point", "coordinates": [ 85.314867445646854, 27.61683719595133 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1094, "nhouse": 10, "residents": 45, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 66, "repvalue": 924000, "xcoord": 85.311844894209742, "ycoord": 27.618190852485636 }, "geometry": { "type": "Point", "coordinates": [ 85.311844894209742, 27.618190852485636 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1095, "nhouse": 6, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 63, "repvalue": 630000, "xcoord": 85.315201402854399, "ycoord": 27.618552524188811 }, "geometry": { "type": "Point", "coordinates": [ 85.315201402854399, 27.618552524188811 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1096, "nhouse": 9, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 62, "repvalue": 868000, "xcoord": 85.314505660286898, "ycoord": 27.616939755039496 }, "geometry": { "type": "Point", "coordinates": [ 85.314505660286898, 27.616939755039496 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1097, "nhouse": 7, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 65, "repvalue": 650000, "xcoord": 85.31664528876864, "ycoord": 27.61835614499412 }, "geometry": { "type": "Point", "coordinates": [ 85.31664528876864, 27.61835614499412 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1098, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 44, "repvalue": 264000, "xcoord": 85.314005805980457, "ycoord": 27.618217134062927 }, "geometry": { "type": "Point", "coordinates": [ 85.314005805980457, 27.618217134062927 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1099, "nhouse": 10, "residents": 54, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 76, "repvalue": 912000, "xcoord": 85.311361410591232, "ycoord": 27.61839887633473 }, "geometry": { "type": "Point", "coordinates": [ 85.311361410591232, 27.61839887633473 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1100, "nhouse": 7, "residents": 30, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 54, "repvalue": 648000, "xcoord": 85.318110413640966, "ycoord": 27.616769598550619 }, "geometry": { "type": "Point", "coordinates": [ 85.318110413640966, 27.616769598550619 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1101, "nhouse": 8, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 65, "repvalue": 780000, "xcoord": 85.318343977177761, "ycoord": 27.617200248561492 }, "geometry": { "type": "Point", "coordinates": [ 85.318343977177761, 27.617200248561492 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1102, "nhouse": 3, "residents": 17, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 87, "repvalue": 348000, "xcoord": 85.317978924914385, "ycoord": 27.617516686330028 }, "geometry": { "type": "Point", "coordinates": [ 85.317978924914385, 27.617516686330028 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1103, "nhouse": 8, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 65, "repvalue": 780000, "xcoord": 85.3128085776479, "ycoord": 27.617988668406333 }, "geometry": { "type": "Point", "coordinates": [ 85.3128085776479, 27.617988668406333 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1104, "nhouse": 15, "residents": 58, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 51, "repvalue": 1428000, "xcoord": 85.316176536698194, "ycoord": 27.617601774083511 }, "geometry": { "type": "Point", "coordinates": [ 85.316176536698194, 27.617601774083511 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1105, "nhouse": 7, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 65, "repvalue": 650000, "xcoord": 85.311251204617776, "ycoord": 27.617755808551259 }, "geometry": { "type": "Point", "coordinates": [ 85.311251204617776, 27.617755808551259 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1106, "nhouse": 4, "residents": 16, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 71, "repvalue": 426000, "xcoord": 85.313662038138915, "ycoord": 27.617143410942507 }, "geometry": { "type": "Point", "coordinates": [ 85.313662038138915, 27.617143410942507 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1107, "nhouse": 30, "residents": 122, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 87, "repvalue": 2784000, "xcoord": 85.311007822486005, "ycoord": 27.617966754055924 }, "geometry": { "type": "Point", "coordinates": [ 85.311007822486005, 27.617966754055924 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1108, "nhouse": 29, "residents": 108, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 87, "repvalue": 2610000, "xcoord": 85.311979705398144, "ycoord": 27.617229903621855 }, "geometry": { "type": "Point", "coordinates": [ 85.311979705398144, 27.617229903621855 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1109, "nhouse": 1, "residents": 7, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 74, "repvalue": 148000, "xcoord": 85.319189225704719, "ycoord": 27.616889628973254 }, "geometry": { "type": "Point", "coordinates": [ 85.319189225704719, 27.616889628973254 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1110, "nhouse": 17, "residents": 71, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 52, "repvalue": 1560000, "xcoord": 85.31568160762636, "ycoord": 27.618558355899395 }, "geometry": { "type": "Point", "coordinates": [ 85.31568160762636, 27.618558355899395 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1111, "nhouse": 19, "residents": 80, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 59, "repvalue": 1770000, "xcoord": 85.315214498485261, "ycoord": 27.617697047403809 }, "geometry": { "type": "Point", "coordinates": [ 85.315214498485261, 27.617697047403809 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1112, "nhouse": 11, "residents": 49, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 63, "repvalue": 1008000, "xcoord": 85.318227195189863, "ycoord": 27.616984923598267 }, "geometry": { "type": "Point", "coordinates": [ 85.318227195189863, 27.616984923598267 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1113, "nhouse": 24, "residents": 95, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 72, "repvalue": 2160000, "xcoord": 85.315225956688764, "ycoord": 27.616948505125681 }, "geometry": { "type": "Point", "coordinates": [ 85.315225956688764, 27.616948505125681 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1114, "nhouse": 5, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 54, "repvalue": 540000, "xcoord": 85.315081351683958, "ycoord": 27.618551066001658 }, "geometry": { "type": "Point", "coordinates": [ 85.315081351683958, 27.618551066001658 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1115, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 53, "repvalue": 212000, "xcoord": 85.316403550875108, "ycoord": 27.618460165693293 }, "geometry": { "type": "Point", "coordinates": [ 85.316403550875108, 27.618460165693293 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1116, "nhouse": 5, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 85, "repvalue": 510000, "xcoord": 85.317146748680727, "ycoord": 27.616971820421252 }, "geometry": { "type": "Point", "coordinates": [ 85.317146748680727, 27.616971820421252 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1117, "nhouse": 12, "residents": 45, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 85, "repvalue": 1190000, "xcoord": 85.315564829682614, "ycoord": 27.618343028902054 }, "geometry": { "type": "Point", "coordinates": [ 85.315564829682614, 27.618343028902054 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1118, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 76, "repvalue": 304000, "xcoord": 85.319067542978956, "ycoord": 27.616995109145723 }, "geometry": { "type": "Point", "coordinates": [ 85.319067542978956, 27.616995109145723 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1119, "nhouse": 31, "residents": 112, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 85, "repvalue": 2890000, "xcoord": 85.317743727817032, "ycoord": 27.617192970509777 }, "geometry": { "type": "Point", "coordinates": [ 85.317743727817032, 27.617192970509777 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1120, "nhouse": 9, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 62, "repvalue": 868000, "xcoord": 85.311606433536156, "ycoord": 27.618080995835232 }, "geometry": { "type": "Point", "coordinates": [ 85.311606433536156, 27.618080995835232 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1121, "nhouse": 10, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 77, "repvalue": 924000, "xcoord": 85.317745362238668, "ycoord": 27.617086035756738 }, "geometry": { "type": "Point", "coordinates": [ 85.317745362238668, 27.617086035756738 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1122, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 60, "repvalue": 360000, "xcoord": 85.313760789404583, "ycoord": 27.618535019092256 }, "geometry": { "type": "Point", "coordinates": [ 85.313760789404583, 27.618535019092256 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1123, "nhouse": 12, "residents": 49, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 44, "repvalue": 1144000, "xcoord": 85.318210855318455, "ycoord": 27.618054271331147 }, "geometry": { "type": "Point", "coordinates": [ 85.318210855318455, 27.618054271331147 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1124, "nhouse": 7, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 48, "repvalue": 672000, "xcoord": 85.316165084640261, "ycoord": 27.618350316657864 }, "geometry": { "type": "Point", "coordinates": [ 85.316165084640261, 27.618350316657864 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1125, "nhouse": 12, "residents": 56, "specialfac": 0, "expstr": "RCi+HC+9s+Res", "fptarea": 65, "repvalue": 1170000, "xcoord": 85.315568102909324, "ycoord": 27.618129159669717 }, "geometry": { "type": "Point", "coordinates": [ 85.315568102909324, 27.618129159669717 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1126, "nhouse": 7, "residents": 26, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 87, "repvalue": 696000, "xcoord": 85.312318537464009, "ycoord": 27.618624433480441 }, "geometry": { "type": "Point", "coordinates": [ 85.312318537464009, 27.618624433480441 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1127, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 51, "repvalue": 102000, "xcoord": 85.312821691558611, "ycoord": 27.617133192607785 }, "geometry": { "type": "Point", "coordinates": [ 85.312821691558611, 27.617133192607785 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1128, "nhouse": 27, "residents": 112, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 75, "repvalue": 2400000, "xcoord": 85.314504022728741, "ycoord": 27.617046689616291 }, "geometry": { "type": "Point", "coordinates": [ 85.314504022728741, 27.617046689616291 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1129, "nhouse": 7, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 83, "repvalue": 664000, "xcoord": 85.31665346652494, "ycoord": 27.617821471603602 }, "geometry": { "type": "Point", "coordinates": [ 85.31665346652494, 27.617821471603602 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1130, "nhouse": 10, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 60, "repvalue": 960000, "xcoord": 85.31485434779718, "ycoord": 27.61769267268927 }, "geometry": { "type": "Point", "coordinates": [ 85.31485434779718, 27.61769267268927 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1131, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 52, "repvalue": 208000, "xcoord": 85.311846534430316, "ycoord": 27.618083918073232 }, "geometry": { "type": "Point", "coordinates": [ 85.311846534430316, 27.618083918073232 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1132, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 48, "repvalue": 288000, "xcoord": 85.313772257899799, "ycoord": 27.617786477465703 }, "geometry": { "type": "Point", "coordinates": [ 85.313772257899799, 27.617786477465703 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1133, "nhouse": 18, "residents": 70, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 65, "repvalue": 1690000, "xcoord": 85.317270067987081, "ycoord": 27.61675940728292 }, "geometry": { "type": "Point", "coordinates": [ 85.317270067987081, 27.61675940728292 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1134, "nhouse": 5, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 52, "repvalue": 520000, "xcoord": 85.313288779367724, "ycoord": 27.617994508288824 }, "geometry": { "type": "Point", "coordinates": [ 85.313288779367724, 27.617994508288824 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1135, "nhouse": 5, "residents": 18, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 87, "repvalue": 522000, "xcoord": 85.314374147006049, "ycoord": 27.617686838283415 }, "geometry": { "type": "Point", "coordinates": [ 85.314374147006049, 27.617686838283415 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1136, "nhouse": 4, "residents": 19, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 44, "repvalue": 440000, "xcoord": 85.315446415452513, "ycoord": 27.618234636430788 }, "geometry": { "type": "Point", "coordinates": [ 85.315446415452513, 27.618234636430788 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1137, "nhouse": 17, "residents": 68, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 68, "repvalue": 1632000, "xcoord": 85.313033926746385, "ycoord": 27.618953998814412 }, "geometry": { "type": "Point", "coordinates": [ 85.313033926746385, 27.618953998814412 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1138, "nhouse": 15, "residents": 59, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 85, "repvalue": 1360000, "xcoord": 85.317982193336675, "ycoord": 27.617302816806315 }, "geometry": { "type": "Point", "coordinates": [ 85.317982193336675, 27.617302816806315 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1139, "nhouse": 6, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 54, "repvalue": 648000, "xcoord": 85.312336574664613, "ycoord": 27.617448154634147 }, "geometry": { "type": "Point", "coordinates": [ 85.312336574664613, 27.617448154634147 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1140, "nhouse": 6, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 54, "repvalue": 648000, "xcoord": 85.310405929607768, "ycoord": 27.618066378417424 }, "geometry": { "type": "Point", "coordinates": [ 85.310405929607768, 27.618066378417424 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1141, "nhouse": 9, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 56, "repvalue": 896000, "xcoord": 85.314862534020889, "ycoord": 27.617157999741092 }, "geometry": { "type": "Point", "coordinates": [ 85.314862534020889, 27.617157999741092 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1142, "nhouse": 5, "residents": 22, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 48, "repvalue": 480000, "xcoord": 85.318108779595846, "ycoord": 27.616876533328618 }, "geometry": { "type": "Point", "coordinates": [ 85.318108779595846, 27.616876533328618 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1143, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 67, "repvalue": 134000, "xcoord": 85.317370499815226, "ycoord": 27.618044080236839 }, "geometry": { "type": "Point", "coordinates": [ 85.317370499815226, 27.618044080236839 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1144, "nhouse": 3, "residents": 16, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 70, "repvalue": 280000, "xcoord": 85.312940101952265, "ycoord": 27.617241587168778 }, "geometry": { "type": "Point", "coordinates": [ 85.312940101952265, 27.617241587168778 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1145, "nhouse": 28, "residents": 100, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 71, "repvalue": 2556000, "xcoord": 85.316775152404759, "ycoord": 27.61771599370531 }, "geometry": { "type": "Point", "coordinates": [ 85.316775152404759, 27.61771599370531 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1146, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 52, "repvalue": 312000, "xcoord": 85.314249183240747, "ycoord": 27.61800618307154 }, "geometry": { "type": "Point", "coordinates": [ 85.314249183240747, 27.61800618307154 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1147, "nhouse": 5, "residents": 18, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 80, "repvalue": 480000, "xcoord": 85.314132408693766, "ycoord": 27.617790855002536 }, "geometry": { "type": "Point", "coordinates": [ 85.314132408693766, 27.617790855002536 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1148, "nhouse": 6, "residents": 29, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 48, "repvalue": 576000, "xcoord": 85.318339075606374, "ycoord": 27.617521052908931 }, "geometry": { "type": "Point", "coordinates": [ 85.318339075606374, 27.617521052908931 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1149, "nhouse": 7, "residents": 22, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 60, "repvalue": 720000, "xcoord": 85.317130398323926, "ycoord": 27.618041167561429 }, "geometry": { "type": "Point", "coordinates": [ 85.317130398323926, 27.618041167561429 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1150, "nhouse": 10, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+9s+Res", "fptarea": 52, "repvalue": 936000, "xcoord": 85.31256027918937, "ycoord": 27.618520420093837 }, "geometry": { "type": "Point", "coordinates": [ 85.31256027918937, 27.618520420093837 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 1151, "nhouse": 7, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 68, "repvalue": 680000, "xcoord": 85.315822931376033, "ycoord": 27.617169663306804 }, "geometry": { "type": "Point", "coordinates": [ 85.315822931376033, 27.617169663306804 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 2683, "nhouse": 0, "residents": 0, "specialfac": 1, "expstr": "RCi+HC+8s+Edu", "fptarea": 124, "repvalue": 2976000, "xcoord": 85.315349279578896, "ycoord": 27.616736093858943 }, "geometry": { "type": "Point", "coordinates": [ 85.315349279578896, 27.616736093858943 ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "bldid": 2690, "nhouse": 0, "residents": 0, "specialfac": 2, "expstr": "RCi+HC+6s+Hea", "fptarea": 103, "repvalue": 2472000, "xcoord": 85.310999617260208, "ycoord": 27.618501425877898 }, "geometry": { "type": "Point", "coordinates": [ 85.310999617260208, 27.618501425877898 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1152, "nhouse": 7, "residents": 30, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 114, "repvalue": 912000, "xcoord": 85.310268776422603, "ycoord": 27.626062347005238 }, "geometry": { "type": "Point", "coordinates": [ 85.310268776422603, 27.626062347005238 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1153, "nhouse": 6, "residents": 30, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 131, "repvalue": 786000, "xcoord": 85.309333633771473, "ycoord": 27.630053545962273 }, "geometry": { "type": "Point", "coordinates": [ 85.309333633771473, 27.630053545962273 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1154, "nhouse": 9, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 100, "repvalue": 1200000, "xcoord": 85.307203299004769, "ycoord": 27.630583472836292 }, "geometry": { "type": "Point", "coordinates": [ 85.307203299004769, 27.630583472836292 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1155, "nhouse": 2, "residents": 11, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 82, "repvalue": 328000, "xcoord": 85.308095784874368, "ycoord": 27.629371350125801 }, "geometry": { "type": "Point", "coordinates": [ 85.308095784874368, 27.629371350125801 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1156, "nhouse": 1, "residents": 5, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 84, "repvalue": 168000, "xcoord": 85.310757761077809, "ycoord": 27.626735403501808 }, "geometry": { "type": "Point", "coordinates": [ 85.310757761077809, 27.626735403501808 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1157, "nhouse": 8, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 80, "repvalue": 1120000, "xcoord": 85.309494317743585, "ycoord": 27.627720657561831 }, "geometry": { "type": "Point", "coordinates": [ 85.309494317743585, 27.627720657561831 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1158, "nhouse": 4, "residents": 19, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 81, "repvalue": 486000, "xcoord": 85.310362853039493, "ycoord": 27.628064791867235 }, "geometry": { "type": "Point", "coordinates": [ 85.310362853039493, 27.628064791867235 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1159, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 88, "repvalue": 352000, "xcoord": 85.31015762876693, "ycoord": 27.625171526567303 }, "geometry": { "type": "Point", "coordinates": [ 85.31015762876693, 27.625171526567303 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1160, "nhouse": 4, "residents": 16, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 71, "repvalue": 568000, "xcoord": 85.309229325539178, "ycoord": 27.628718075961448 }, "geometry": { "type": "Point", "coordinates": [ 85.309229325539178, 27.628718075961448 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1161, "nhouse": 1, "residents": 5, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 83, "repvalue": 166000, "xcoord": 85.309714898420054, "ycoord": 27.62961346089067 }, "geometry": { "type": "Point", "coordinates": [ 85.309714898420054, 27.62961346089067 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1162, "nhouse": 4, "residents": 21, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 67, "repvalue": 536000, "xcoord": 85.308213756503619, "ycoord": 27.629817521986425 }, "geometry": { "type": "Point", "coordinates": [ 85.308213756503619, 27.629817521986425 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1163, "nhouse": 8, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 79, "repvalue": 1106000, "xcoord": 85.310875741409717, "ycoord": 27.627181573615445 }, "geometry": { "type": "Point", "coordinates": [ 85.310875741409717, 27.627181573615445 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1164, "nhouse": 1, "residents": 6, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 84, "repvalue": 168000, "xcoord": 85.310020871338835, "ycoord": 27.625948143108932 }, "geometry": { "type": "Point", "coordinates": [ 85.310020871338835, 27.625948143108932 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1165, "nhouse": 5, "residents": 21, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 111, "repvalue": 666000, "xcoord": 85.309196862556234, "ycoord": 27.630830160636723 }, "geometry": { "type": "Point", "coordinates": [ 85.309196862556234, 27.630830160636723 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1166, "nhouse": 4, "residents": 17, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 92, "repvalue": 552000, "xcoord": 85.308492434713926, "ycoord": 27.627930807554524 }, "geometry": { "type": "Point", "coordinates": [ 85.308492434713926, 27.627930807554524 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1167, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 104, "repvalue": 416000, "xcoord": 85.307210141595007, "ycoord": 27.630138823930398 }, "geometry": { "type": "Point", "coordinates": [ 85.307210141595007, 27.630138823930398 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1168, "nhouse": 9, "residents": 45, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 78, "repvalue": 1248000, "xcoord": 85.310364560327287, "ycoord": 27.627953629421469 }, "geometry": { "type": "Point", "coordinates": [ 85.310364560327287, 27.627953629421469 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1169, "nhouse": 5, "residents": 26, "specialfac": 0, "expstr": "BrCfl+MC+3s+Res", "fptarea": 106, "repvalue": 636000, "xcoord": 85.31016445785022, "ycoord": 27.624726876634728 }, "geometry": { "type": "Point", "coordinates": [ 85.31016445785022, 27.624726876634728 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1170, "nhouse": 11, "residents": 48, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 105, "repvalue": 1470000, "xcoord": 85.311003962169323, "ycoord": 27.626960768681709 }, "geometry": { "type": "Point", "coordinates": [ 85.311003962169323, 27.626960768681709 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1171, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 104, "repvalue": 416000, "xcoord": 85.310395289835796, "ycoord": 27.625952705076426 }, "geometry": { "type": "Point", "coordinates": [ 85.310395289835796, 27.625952705076426 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1172, "nhouse": 2, "residents": 4, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 72, "repvalue": 288000, "xcoord": 85.306722876467077, "ycoord": 27.629354593316382 }, "geometry": { "type": "Point", "coordinates": [ 85.306722876467077, 27.629354593316382 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1173, "nhouse": 11, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 99, "repvalue": 1386000, "xcoord": 85.307700833820121, "ycoord": 27.630700728562577 }, "geometry": { "type": "Point", "coordinates": [ 85.307700833820121, 27.630700728562577 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1174, "nhouse": 9, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 99, "repvalue": 1188000, "xcoord": 85.310897927821927, "ycoord": 27.625736461106882 }, "geometry": { "type": "Point", "coordinates": [ 85.310897927821927, 27.625736461106882 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1175, "nhouse": 4, "residents": 13, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 79, "repvalue": 632000, "xcoord": 85.309219074452486, "ycoord": 27.62938505014273 }, "geometry": { "type": "Point", "coordinates": [ 85.309219074452486, 27.62938505014273 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1176, "nhouse": 9, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 100, "repvalue": 1200000, "xcoord": 85.310027701199715, "ycoord": 27.625503493257568 }, "geometry": { "type": "Point", "coordinates": [ 85.310027701199715, 27.625503493257568 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1177, "nhouse": 4, "residents": 17, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 80, "repvalue": 640000, "xcoord": 85.309832876900984, "ycoord": 27.630059631663688 }, "geometry": { "type": "Point", "coordinates": [ 85.309832876900984, 27.630059631663688 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1178, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 121, "repvalue": 484000, "xcoord": 85.310126895956003, "ycoord": 27.627172450891802 }, "geometry": { "type": "Point", "coordinates": [ 85.310126895956003, 27.627172450891802 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1179, "nhouse": 11, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 105, "repvalue": 1470000, "xcoord": 85.308827554798413, "ycoord": 27.630492107750907 }, "geometry": { "type": "Point", "coordinates": [ 85.308827554798413, 27.630492107750907 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1180, "nhouse": 14, "residents": 61, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 130, "repvalue": 1820000, "xcoord": 85.308998502591422, "ycoord": 27.627492246367233 }, "geometry": { "type": "Point", "coordinates": [ 85.308998502591422, 27.627492246367233 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1181, "nhouse": 6, "residents": 26, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 101, "repvalue": 808000, "xcoord": 85.310258532790684, "ycoord": 27.626729321800411 }, "geometry": { "type": "Point", "coordinates": [ 85.310258532790684, 27.626729321800411 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1182, "nhouse": 8, "residents": 30, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 134, "repvalue": 1072000, "xcoord": 85.308866859660483, "ycoord": 27.627935373947768 }, "geometry": { "type": "Point", "coordinates": [ 85.308866859660483, 27.627935373947768 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1183, "nhouse": 7, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 81, "repvalue": 972000, "xcoord": 85.310511560993945, "ycoord": 27.626510037922728 }, "geometry": { "type": "Point", "coordinates": [ 85.310511560993945, 27.626510037922728 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1184, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 81, "repvalue": 162000, "xcoord": 85.308201789128418, "ycoord": 27.630595657992401 }, "geometry": { "type": "Point", "coordinates": [ 85.308201789128418, 27.630595657992401 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1185, "nhouse": 11, "residents": 43, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 105, "repvalue": 1470000, "xcoord": 85.309008754191638, "ycoord": 27.626825272080076 }, "geometry": { "type": "Point", "coordinates": [ 85.309008754191638, 27.626825272080076 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1186, "nhouse": 11, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 90, "repvalue": 1440000, "xcoord": 85.309511398705524, "ycoord": 27.626609033463783 }, "geometry": { "type": "Point", "coordinates": [ 85.309511398705524, 27.626609033463783 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1187, "nhouse": 11, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 116, "repvalue": 1392000, "xcoord": 85.309892649951706, "ycoord": 27.626168947128786 }, "geometry": { "type": "Point", "coordinates": [ 85.309892649951706, 27.626168947128786 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1188, "nhouse": 3, "residents": 18, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 101, "repvalue": 404000, "xcoord": 85.308107752377495, "ycoord": 27.628593214025187 }, "geometry": { "type": "Point", "coordinates": [ 85.308107752377495, 27.628593214025187 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1189, "nhouse": 22, "residents": 84, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 124, "repvalue": 2976000, "xcoord": 85.308988250638933, "ycoord": 27.628159220586738 }, "geometry": { "type": "Point", "coordinates": [ 85.308988250638933, 27.628159220586738 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1190, "nhouse": 4, "residents": 17, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 96, "repvalue": 576000, "xcoord": 85.309205405788958, "ycoord": 27.630274348945861 }, "geometry": { "type": "Point", "coordinates": [ 85.309205405788958, 27.630274348945861 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1191, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 126, "repvalue": 504000, "xcoord": 85.309073759718331, "ycoord": 27.630717476441248 }, "geometry": { "type": "Point", "coordinates": [ 85.309073759718331, 27.630717476441248 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1192, "nhouse": 10, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 129, "repvalue": 1290000, "xcoord": 85.307823935164521, "ycoord": 27.630813413913831 }, "geometry": { "type": "Point", "coordinates": [ 85.307823935164521, 27.630813413913831 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1193, "nhouse": 6, "residents": 21, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 125, "repvalue": 750000, "xcoord": 85.309661823297489, "ycoord": 27.624943118116803 }, "geometry": { "type": "Point", "coordinates": [ 85.309661823297489, 27.624943118116803 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1194, "nhouse": 2, "residents": 5, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 126, "repvalue": 252000, "xcoord": 85.311268933337502, "ycoord": 27.625963345740058 }, "geometry": { "type": "Point", "coordinates": [ 85.311268933337502, 27.625963345740058 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1195, "nhouse": 8, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 115, "repvalue": 1150000, "xcoord": 85.309489193264227, "ycoord": 27.628054144754604 }, "geometry": { "type": "Point", "coordinates": [ 85.309489193264227, 27.628054144754604 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1196, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 115, "repvalue": 230000, "xcoord": 85.308704452716398, "ycoord": 27.630379423256034 }, "geometry": { "type": "Point", "coordinates": [ 85.308704452716398, 27.630379423256034 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1197, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 94, "repvalue": 188000, "xcoord": 85.309207114406149, "ycoord": 27.630163186602047 }, "geometry": { "type": "Point", "coordinates": [ 85.309207114406149, 27.630163186602047 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1198, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 122, "repvalue": 488000, "xcoord": 85.309393424457525, "ycoord": 27.626162862428568 }, "geometry": { "type": "Point", "coordinates": [ 85.309393424457525, 27.626162862428568 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1199, "nhouse": 13, "residents": 57, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 129, "repvalue": 1806000, "xcoord": 85.309696109174112, "ycoord": 27.6308362469873 }, "geometry": { "type": "Point", "coordinates": [ 85.309696109174112, 27.6308362469873 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1200, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "BrCri+MC+2s+Res", "fptarea": 89, "repvalue": 356000, "xcoord": 85.310390168471017, "ycoord": 27.626286192509546 }, "geometry": { "type": "Point", "coordinates": [ 85.310390168471017, 27.626286192509546 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1201, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "BrCri+MC+2s+Res", "fptarea": 89, "repvalue": 356000, "xcoord": 85.308853188991321, "ycoord": 27.62882467277468 }, "geometry": { "type": "Point", "coordinates": [ 85.308853188991321, 27.62882467277468 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1202, "nhouse": 10, "residents": 56, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 92, "repvalue": 1288000, "xcoord": 85.308613824907226, "ycoord": 27.628154654487197 }, "geometry": { "type": "Point", "coordinates": [ 85.308613824907226, 27.628154654487197 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1203, "nhouse": 18, "residents": 92, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 80, "repvalue": 2400000, "xcoord": 85.309860203210832, "ycoord": 27.628281033304852 }, "geometry": { "type": "Point", "coordinates": [ 85.309860203210832, 27.628281033304852 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1204, "nhouse": 6, "residents": 27, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 101, "repvalue": 808000, "xcoord": 85.308755722385712, "ycoord": 27.627044553038928 }, "geometry": { "type": "Point", "coordinates": [ 85.308755722385712, 27.627044553038928 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1205, "nhouse": 9, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 118, "repvalue": 1180000, "xcoord": 85.310280726881615, "ycoord": 27.625284209658691 }, "geometry": { "type": "Point", "coordinates": [ 85.310280726881615, 27.625284209658691 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1206, "nhouse": 4, "residents": 9, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 91, "repvalue": 546000, "xcoord": 85.308595024588982, "ycoord": 27.629377440144424 }, "geometry": { "type": "Point", "coordinates": [ 85.308595024588982, 27.629377440144424 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1207, "nhouse": 3, "residents": 6, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 79, "repvalue": 474000, "xcoord": 85.310111528362427, "ycoord": 27.628172912825708 }, "geometry": { "type": "Point", "coordinates": [ 85.310111528362427, 27.628172912825708 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1208, "nhouse": 9, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 122, "repvalue": 1220000, "xcoord": 85.308244527551267, "ycoord": 27.627816600405236 }, "geometry": { "type": "Point", "coordinates": [ 85.308244527551267, 27.627816600405236 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1209, "nhouse": 2, "residents": 12, "specialfac": 0, "expstr": "BrCri+MC+1s+Res", "fptarea": 123, "repvalue": 246000, "xcoord": 85.310121773512833, "ycoord": 27.627505938220018 }, "geometry": { "type": "Point", "coordinates": [ 85.310121773512833, 27.627505938220018 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1210, "nhouse": 4, "residents": 18, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 100, "repvalue": 600000, "xcoord": 85.311378384301705, "ycoord": 27.626965328149179 }, "geometry": { "type": "Point", "coordinates": [ 85.311378384301705, 27.626965328149179 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1211, "nhouse": 10, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 104, "repvalue": 1248000, "xcoord": 85.307357188020376, "ycoord": 27.628695238194098 }, "geometry": { "type": "Point", "coordinates": [ 85.307357188020376, 27.628695238194098 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1212, "nhouse": 2, "residents": 13, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 79, "repvalue": 316000, "xcoord": 85.309624249889069, "ycoord": 27.627388691661977 }, "geometry": { "type": "Point", "coordinates": [ 85.309624249889069, 27.627388691661977 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1213, "nhouse": 21, "residents": 80, "specialfac": 0, "expstr": "RCi+HC+19s+Res", "fptarea": 71, "repvalue": 2698000, "xcoord": 85.307837615305772, "ycoord": 27.629924115815633 }, "geometry": { "type": "Point", "coordinates": [ 85.307837615305772, 27.629924115815633 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1214, "nhouse": 6, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 68, "repvalue": 816000, "xcoord": 85.310641488486382, "ycoord": 27.626178070812941 }, "geometry": { "type": "Point", "coordinates": [ 85.310641488486382, 27.626178070812941 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1215, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 97, "repvalue": 388000, "xcoord": 85.308106042763569, "ycoord": 27.628704376330916 }, "geometry": { "type": "Point", "coordinates": [ 85.308106042763569, 27.628704376330916 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1216, "nhouse": 9, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 76, "repvalue": 1216000, "xcoord": 85.307456342287708, "ycoord": 27.630364195320851 }, "geometry": { "type": "Point", "coordinates": [ 85.307456342287708, 27.630364195320851 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1217, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 122, "repvalue": 488000, "xcoord": 85.308473633225361, "ycoord": 27.629153593174383 }, "geometry": { "type": "Point", "coordinates": [ 85.308473633225361, 27.629153593174383 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1218, "nhouse": 5, "residents": 21, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 86, "repvalue": 688000, "xcoord": 85.311631410956579, "ycoord": 27.626746042159219 }, "geometry": { "type": "Point", "coordinates": [ 85.311631410956579, 27.626746042159219 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1219, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 107, "repvalue": 428000, "xcoord": 85.309890942316528, "ycoord": 27.62628010957603 }, "geometry": { "type": "Point", "coordinates": [ 85.309890942316528, 27.62628010957603 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1220, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 86, "repvalue": 344000, "xcoord": 85.310624419251923, "ycoord": 27.627289695629621 }, "geometry": { "type": "Point", "coordinates": [ 85.310624419251923, 27.627289695629621 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1221, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 88, "repvalue": 352000, "xcoord": 85.309366093059566, "ycoord": 27.627941460901095 }, "geometry": { "type": "Point", "coordinates": [ 85.309366093059566, 27.627941460901095 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1222, "nhouse": 10, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 113, "repvalue": 1356000, "xcoord": 85.310400411112553, "ycoord": 27.625619217626383 }, "geometry": { "type": "Point", "coordinates": [ 85.310400411112553, 27.625619217626383 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1223, "nhouse": 7, "residents": 27, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 120, "repvalue": 960000, "xcoord": 85.309066924491233, "ycoord": 27.63116212573901 }, "geometry": { "type": "Point", "coordinates": [ 85.309066924491233, 27.63116212573901 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1224, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 77, "repvalue": 462000, "xcoord": 85.30760338596393, "ycoord": 27.628920609237113 }, "geometry": { "type": "Point", "coordinates": [ 85.30760338596393, 27.628920609237113 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1225, "nhouse": 2, "residents": 10, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 125, "repvalue": 250000, "xcoord": 85.308572804504081, "ycoord": 27.630822550173374 }, "geometry": { "type": "Point", "coordinates": [ 85.308572804504081, 27.630822550173374 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1226, "nhouse": 33, "residents": 120, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 129, "repvalue": 4386000, "xcoord": 85.308097494547042, "ycoord": 27.629260187831356 }, "geometry": { "type": "Point", "coordinates": [ 85.308097494547042, 27.629260187831356 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1227, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 124, "repvalue": 496000, "xcoord": 85.310003796002079, "ycoord": 27.627059767605775 }, "geometry": { "type": "Point", "coordinates": [ 85.310003796002079, 27.627059767605775 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1228, "nhouse": 7, "residents": 22, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 119, "repvalue": 952000, "xcoord": 85.307081909350075, "ycoord": 27.630359624751893 }, "geometry": { "type": "Point", "coordinates": [ 85.307081909350075, 27.630359624751893 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1229, "nhouse": 9, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 91, "repvalue": 1274000, "xcoord": 85.310638074717701, "ycoord": 27.626400395791311 }, "geometry": { "type": "Point", "coordinates": [ 85.310638074717701, 27.626400395791311 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1230, "nhouse": 1, "residents": 2, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 90, "repvalue": 180000, "xcoord": 85.311128769537007, "ycoord": 27.626962288616408 }, "geometry": { "type": "Point", "coordinates": [ 85.311128769537007, 27.626962288616408 ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "bldid": 1231, "nhouse": 2, "residents": 5, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 117, "repvalue": 468000, "xcoord": 85.308447992923007, "ycoord": 27.63082102774402 }, "geometry": { "type": "Point", "coordinates": [ 85.308447992923007, 27.63082102774402 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1232, "nhouse": 11, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 77, "repvalue": 1232000, "xcoord": 85.311001548148937, "ycoord": 27.640709546616229 }, "geometry": { "type": "Point", "coordinates": [ 85.311001548148937, 27.640709546616229 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1233, "nhouse": 10, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 69, "repvalue": 1104000, "xcoord": 85.309102653400089, "ycoord": 27.640287137881582 }, "geometry": { "type": "Point", "coordinates": [ 85.309102653400089, 27.640287137881582 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1234, "nhouse": 4, "residents": 17, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 75, "repvalue": 450000, "xcoord": 85.311454389342472, "ycoord": 27.640415616044127 }, "geometry": { "type": "Point", "coordinates": [ 85.311454389342472, 27.640415616044127 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1235, "nhouse": 20, "residents": 71, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 99, "repvalue": 2178000, "xcoord": 85.310207920024936, "ycoord": 27.641298768883846 }, "geometry": { "type": "Point", "coordinates": [ 85.310207920024936, 27.641298768883846 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1236, "nhouse": 8, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 92, "repvalue": 920000, "xcoord": 85.311105944527554, "ycoord": 27.641209896139646 }, "geometry": { "type": "Point", "coordinates": [ 85.311105944527554, 27.641209896139646 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1237, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 89, "repvalue": 356000, "xcoord": 85.31021098748468, "ycoord": 27.641099175239876 }, "geometry": { "type": "Point", "coordinates": [ 85.31021098748468, 27.641099175239876 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1238, "nhouse": 11, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 82, "repvalue": 1148000, "xcoord": 85.30833051417855, "ycoord": 27.639479194642892 }, "geometry": { "type": "Point", "coordinates": [ 85.30833051417855, 27.639479194642892 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1239, "nhouse": 1, "residents": 5, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 97, "repvalue": 194000, "xcoord": 85.308445644062559, "ycoord": 27.639280968395518 }, "geometry": { "type": "Point", "coordinates": [ 85.308445644062559, 27.639280968395518 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1240, "nhouse": 17, "residents": 70, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 66, "repvalue": 1980000, "xcoord": 85.310541037427186, "ycoord": 27.641502459781194 }, "geometry": { "type": "Point", "coordinates": [ 85.310541037427186, 27.641502459781194 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1241, "nhouse": 14, "residents": 62, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 66, "repvalue": 1584000, "xcoord": 85.312237281813069, "ycoord": 27.640524964574961 }, "geometry": { "type": "Point", "coordinates": [ 85.312237281813069, 27.640524964574961 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1242, "nhouse": 10, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 91, "repvalue": 1092000, "xcoord": 85.310232458819812, "ycoord": 27.639702019562367 }, "geometry": { "type": "Point", "coordinates": [ 85.310232458819812, 27.639702019562367 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1243, "nhouse": 12, "residents": 48, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 94, "repvalue": 1316000, "xcoord": 85.309980729310709, "ycoord": 27.641495630563 }, "geometry": { "type": "Point", "coordinates": [ 85.309980729310709, 27.641495630563 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1244, "nhouse": 7, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 57, "repvalue": 798000, "xcoord": 85.308444108853209, "ycoord": 27.639380765153284 }, "geometry": { "type": "Point", "coordinates": [ 85.308444108853209, 27.639380765153284 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1245, "nhouse": 9, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 70, "repvalue": 980000, "xcoord": 85.309558565992347, "ycoord": 27.639793620032012 }, "geometry": { "type": "Point", "coordinates": [ 85.309558565992347, 27.639793620032012 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1246, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 68, "repvalue": 272000, "xcoord": 85.312234218105218, "ycoord": 27.640724558444433 }, "geometry": { "type": "Point", "coordinates": [ 85.312234218105218, 27.640724558444433 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1247, "nhouse": 12, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 54, "repvalue": 1296000, "xcoord": 85.308995197376319, "ycoord": 27.639986380788251 }, "geometry": { "type": "Point", "coordinates": [ 85.308995197376319, 27.639986380788251 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1248, "nhouse": 6, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 58, "repvalue": 696000, "xcoord": 85.308784891658135, "ycoord": 27.639085476063251 }, "geometry": { "type": "Point", "coordinates": [ 85.308784891658135, 27.639085476063251 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1249, "nhouse": 8, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 75, "repvalue": 900000, "xcoord": 85.31099848217454, "ycoord": 27.640909140352985 }, "geometry": { "type": "Point", "coordinates": [ 85.31099848217454, 27.640909140352985 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1250, "nhouse": 5, "residents": 23, "specialfac": 0, "expstr": "BrCri+MC+3s+Res", "fptarea": 105, "repvalue": 630000, "xcoord": 85.310105061506874, "ycoord": 27.640698622045715 }, "geometry": { "type": "Point", "coordinates": [ 85.310105061506874, 27.640698622045715 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1251, "nhouse": 9, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 101, "repvalue": 1010000, "xcoord": 85.311785974374459, "ycoord": 27.640719100864683 }, "geometry": { "type": "Point", "coordinates": [ 85.311785974374459, 27.640719100864683 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1252, "nhouse": 5, "residents": 18, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 101, "repvalue": 606000, "xcoord": 85.31099388315387, "ycoord": 27.641208530946738 }, "geometry": { "type": "Point", "coordinates": [ 85.31099388315387, 27.641208530946738 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1253, "nhouse": 10, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 80, "repvalue": 1120000, "xcoord": 85.309673694080359, "ycoord": 27.639595392688815 }, "geometry": { "type": "Point", "coordinates": [ 85.309673694080359, 27.639595392688815 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1254, "nhouse": 10, "residents": 51, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 108, "repvalue": 1080000, "xcoord": 85.310098926275643, "ycoord": 27.641097809328794 }, "geometry": { "type": "Point", "coordinates": [ 85.310098926275643, 27.641097809328794 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1255, "nhouse": 13, "residents": 54, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 90, "repvalue": 1440000, "xcoord": 85.311564917483281, "ycoord": 27.64051677773147 }, "geometry": { "type": "Point", "coordinates": [ 85.311564917483281, 27.64051677773147 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1256, "nhouse": 6, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 79, "repvalue": 632000, "xcoord": 85.309230059063097, "ycoord": 27.639290536647728 }, "geometry": { "type": "Point", "coordinates": [ 85.309230059063097, 27.639290536647728 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1257, "nhouse": 9, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 69, "repvalue": 966000, "xcoord": 85.311119740462473, "ycoord": 27.640311724265626 }, "geometry": { "type": "Point", "coordinates": [ 85.311119740462473, 27.640311724265626 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1258, "nhouse": 13, "residents": 54, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 94, "repvalue": 1504000, "xcoord": 85.308224596363374, "ycoord": 27.639078640297793 }, "geometry": { "type": "Point", "coordinates": [ 85.308224596363374, 27.639078640297793 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1259, "nhouse": 7, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 64, "repvalue": 768000, "xcoord": 85.311898035295343, "ycoord": 27.640720465395358 }, "geometry": { "type": "Point", "coordinates": [ 85.311898035295343, 27.640720465395358 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1260, "nhouse": 9, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 87, "repvalue": 1044000, "xcoord": 85.312235749963065, "ycoord": 27.640624761510448 }, "geometry": { "type": "Point", "coordinates": [ 85.312235749963065, 27.640624761510448 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1261, "nhouse": 32, "residents": 152, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 101, "repvalue": 3434000, "xcoord": 85.310892553437114, "ycoord": 27.640508587630347 }, "geometry": { "type": "Point", "coordinates": [ 85.310892553437114, 27.640508587630347 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1262, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 56, "repvalue": 112000, "xcoord": 85.311334665404914, "ycoord": 27.640913235608391 }, "geometry": { "type": "Point", "coordinates": [ 85.311334665404914, 27.640913235608391 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1263, "nhouse": 10, "residents": 45, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 89, "repvalue": 1068000, "xcoord": 85.310900218664301, "ycoord": 27.640009603275605 }, "geometry": { "type": "Point", "coordinates": [ 85.310900218664301, 27.640009603275605 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1264, "nhouse": 5, "residents": 19, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 102, "repvalue": 612000, "xcoord": 85.311673913461462, "ycoord": 27.64071773624352 }, "geometry": { "type": "Point", "coordinates": [ 85.311673913461462, 27.64071773624352 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1265, "nhouse": 11, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 86, "repvalue": 1204000, "xcoord": 85.308672832583412, "ycoord": 27.639084109091126 }, "geometry": { "type": "Point", "coordinates": [ 85.308672832583412, 27.639084109091126 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1266, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 80, "repvalue": 320000, "xcoord": 85.309449574796716, "ycoord": 27.639592660044183 }, "geometry": { "type": "Point", "coordinates": [ 85.309449574796716, 27.639592660044183 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1267, "nhouse": 7, "residents": 29, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 67, "repvalue": 804000, "xcoord": 85.310319981445048, "ycoord": 27.641300134715962 }, "geometry": { "type": "Point", "coordinates": [ 85.310319981445048, 27.641300134715962 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1268, "nhouse": 4, "residents": 17, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 61, "repvalue": 488000, "xcoord": 85.310329183120075, "ycoord": 27.640701353731288 }, "geometry": { "type": "Point", "coordinates": [ 85.310329183120075, 27.640701353731288 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1269, "nhouse": 5, "residents": 20, "specialfac": 0, "expstr": "BrCri+MC+4s+Res", "fptarea": 77, "repvalue": 616000, "xcoord": 85.3087818218726, "ycoord": 27.639285069617941 }, "geometry": { "type": "Point", "coordinates": [ 85.3087818218726, 27.639285069617941 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1270, "nhouse": 12, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 66, "repvalue": 1320000, "xcoord": 85.310669965415826, "ycoord": 27.640406060016325 }, "geometry": { "type": "Point", "coordinates": [ 85.310669965415826, 27.640406060016325 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1271, "nhouse": 26, "residents": 119, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 75, "repvalue": 2700000, "xcoord": 85.308772612326592, "ycoord": 27.639883850245671 }, "geometry": { "type": "Point", "coordinates": [ 85.308772612326592, 27.639883850245671 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1272, "nhouse": 22, "residents": 81, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 75, "repvalue": 2400000, "xcoord": 85.310114264117189, "ycoord": 27.640099841075642 }, "geometry": { "type": "Point", "coordinates": [ 85.310114264117189, 27.640099841075642 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1273, "nhouse": 2, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 99, "repvalue": 1584000, "xcoord": 85.310886421113523, "ycoord": 27.640907775086866 }, "geometry": { "type": "Point", "coordinates": [ 85.310886421113523, 27.640907775086866 ] } }, +{ "type": "Feature", "properties": { "zoneid": 59, "bldid": 1274, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrM+LC+1s+Res", "fptarea": 81, "repvalue": 162000, "xcoord": 85.309392483573674, "ycoord": 27.632452730901505 }, "geometry": { "type": "Point", "coordinates": [ 85.309392483573674, 27.632452730901505 ] } }, +{ "type": "Feature", "properties": { "zoneid": 59, "bldid": 1275, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrM+LC+1s+Res", "fptarea": 83, "repvalue": 166000, "xcoord": 85.310770404106719, "ycoord": 27.632294516421755 }, "geometry": { "type": "Point", "coordinates": [ 85.310770404106719, 27.632294516421755 ] } }, +{ "type": "Feature", "properties": { "zoneid": 59, "bldid": 1276, "nhouse": 5, "residents": 17, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 63, "repvalue": 504000, "xcoord": 85.311754055606997, "ycoord": 27.632218992120006 }, "geometry": { "type": "Point", "coordinates": [ 85.311754055606997, 27.632218992120006 ] } }, +{ "type": "Feature", "properties": { "zoneid": 59, "bldid": 1277, "nhouse": 3, "residents": 6, "specialfac": 0, "expstr": "BrM+LC+3s+Res", "fptarea": 46, "repvalue": 276000, "xcoord": 85.310902220938019, "ycoord": 27.630108532323021 }, "geometry": { "type": "Point", "coordinates": [ 85.310902220938019, 27.630108532323021 ] } }, +{ "type": "Feature", "properties": { "zoneid": 59, "bldid": 1278, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "BrM+LC+2s+Res", "fptarea": 45, "repvalue": 180000, "xcoord": 85.311074500016247, "ycoord": 27.631685695450894 }, "geometry": { "type": "Point", "coordinates": [ 85.311074500016247, 27.631685695450894 ] } }, +{ "type": "Feature", "properties": { "zoneid": 59, "bldid": 1279, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "BrCfl+MC+3s+Res", "fptarea": 52, "repvalue": 312000, "xcoord": 85.311658510546437, "ycoord": 27.632042821639121 }, "geometry": { "type": "Point", "coordinates": [ 85.311658510546437, 27.632042821639121 ] } }, +{ "type": "Feature", "properties": { "zoneid": 59, "bldid": 1280, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "BrM+LC+2s+Res", "fptarea": 68, "repvalue": 272000, "xcoord": 85.311868398741254, "ycoord": 27.631170340835016 }, "geometry": { "type": "Point", "coordinates": [ 85.311868398741254, 27.631170340835016 ] } }, +{ "type": "Feature", "properties": { "zoneid": 59, "bldid": 1281, "nhouse": 5, "residents": 23, "specialfac": 0, "expstr": "BrCfl+MC+3s+Res", "fptarea": 81, "repvalue": 486000, "xcoord": 85.310786526790437, "ycoord": 27.631244669826408 }, "geometry": { "type": "Point", "coordinates": [ 85.310786526790437, 27.631244669826408 ] } }, +{ "type": "Feature", "properties": { "zoneid": 59, "bldid": 1282, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 56, "repvalue": 336000, "xcoord": 85.310489149589174, "ycoord": 27.631416054162091 }, "geometry": { "type": "Point", "coordinates": [ 85.310489149589174, 27.631416054162091 ] } }, +{ "type": "Feature", "properties": { "zoneid": 59, "bldid": 1283, "nhouse": 3, "residents": 7, "specialfac": 0, "expstr": "BrM+LC+3s+Res", "fptarea": 61, "repvalue": 366000, "xcoord": 85.310880726340699, "ycoord": 27.631508328059198 }, "geometry": { "type": "Point", "coordinates": [ 85.310880726340699, 27.631508328059198 ] } }, +{ "type": "Feature", "properties": { "zoneid": 59, "bldid": 1284, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 69, "repvalue": 138000, "xcoord": 85.310279249988568, "ycoord": 27.632288532338599 }, "geometry": { "type": "Point", "coordinates": [ 85.310279249988568, 27.632288532338599 ] } }, +{ "type": "Feature", "properties": { "zoneid": 59, "bldid": 1285, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 75, "repvalue": 150000, "xcoord": 85.310186395380882, "ycoord": 27.631937386573188 }, "geometry": { "type": "Point", "coordinates": [ 85.310186395380882, 27.631937386573188 ] } }, +{ "type": "Feature", "properties": { "zoneid": 59, "bldid": 1286, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "BrM+LC+2s+Res", "fptarea": 54, "repvalue": 216000, "xcoord": 85.310591410671634, "ycoord": 27.631154789292971 }, "geometry": { "type": "Point", "coordinates": [ 85.310591410671634, 27.631154789292971 ] } }, +{ "type": "Feature", "properties": { "zoneid": 59, "bldid": 1287, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 73, "repvalue": 292000, "xcoord": 85.309399206987948, "ycoord": 27.632015295162137 }, "geometry": { "type": "Point", "coordinates": [ 85.309399206987948, 27.632015295162137 ] } }, +{ "type": "Feature", "properties": { "zoneid": 59, "bldid": 1288, "nhouse": 4, "residents": 23, "specialfac": 0, "expstr": "BrM+LC+4s+Res", "fptarea": 57, "repvalue": 456000, "xcoord": 85.311167357326426, "ycoord": 27.6320368407507 }, "geometry": { "type": "Point", "coordinates": [ 85.311167357326426, 27.6320368407507 ] } }, +{ "type": "Feature", "properties": { "zoneid": 59, "bldid": 1289, "nhouse": 2, "residents": 9, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 55, "repvalue": 220000, "xcoord": 85.309790784757183, "ycoord": 27.632107572185131 }, "geometry": { "type": "Point", "coordinates": [ 85.309790784757183, 27.632107572185131 ] } }, +{ "type": "Feature", "properties": { "zoneid": 59, "bldid": 1290, "nhouse": 5, "residents": 31, "specialfac": 0, "expstr": "BrM+LC+3s+Res", "fptarea": 83, "repvalue": 498000, "xcoord": 85.311889880465642, "ycoord": 27.62977054431633 }, "geometry": { "type": "Point", "coordinates": [ 85.311889880465642, 27.62977054431633 ] } }, +{ "type": "Feature", "properties": { "zoneid": 59, "bldid": 1291, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "BrM+LC+2s+Res", "fptarea": 81, "repvalue": 324000, "xcoord": 85.311576394864403, "ycoord": 27.630991778538366 }, "geometry": { "type": "Point", "coordinates": [ 85.311576394864403, 27.630991778538366 ] } }, +{ "type": "Feature", "properties": { "zoneid": 59, "bldid": 1292, "nhouse": 4, "residents": 14, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 72, "repvalue": 432000, "xcoord": 85.31166656767418, "ycoord": 27.631517898102476 }, "geometry": { "type": "Point", "coordinates": [ 85.31166656767418, 27.631517898102476 ] } }, +{ "type": "Feature", "properties": { "zoneid": 59, "bldid": 1293, "nhouse": 4, "residents": 16, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 49, "repvalue": 392000, "xcoord": 85.311276333244152, "ycoord": 27.631338139150845 }, "geometry": { "type": "Point", "coordinates": [ 85.311276333244152, 27.631338139150845 ] } }, +{ "type": "Feature", "properties": { "zoneid": 59, "bldid": 1294, "nhouse": 5, "residents": 16, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 81, "repvalue": 486000, "xcoord": 85.309793473468261, "ycoord": 27.631932597848113 }, "geometry": { "type": "Point", "coordinates": [ 85.309793473468261, 27.631932597848113 ] } }, +{ "type": "Feature", "properties": { "zoneid": 59, "bldid": 1295, "nhouse": 2, "residents": 9, "specialfac": 0, "expstr": "BrM+LC+3s+Res", "fptarea": 45, "repvalue": 270000, "xcoord": 85.311281705741763, "ycoord": 27.630988190164608 }, "geometry": { "type": "Point", "coordinates": [ 85.311281705741763, 27.630988190164608 ] } }, +{ "type": "Feature", "properties": { "zoneid": 59, "bldid": 1296, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "BrM+LC+2s+Res", "fptarea": 69, "repvalue": 276000, "xcoord": 85.311164670788358, "ycoord": 27.632211815209349 }, "geometry": { "type": "Point", "coordinates": [ 85.311164670788358, 27.632211815209349 ] } }, +{ "type": "Feature", "properties": { "zoneid": 59, "bldid": 1297, "nhouse": 3, "residents": 16, "specialfac": 0, "expstr": "BrM+LC+3s+Res", "fptarea": 45, "repvalue": 270000, "xcoord": 85.311564308715546, "ycoord": 27.631779163850663 }, "geometry": { "type": "Point", "coordinates": [ 85.311564308715546, 27.631779163850663 ] } }, +{ "type": "Feature", "properties": { "zoneid": 59, "bldid": 1298, "nhouse": 4, "residents": 15, "specialfac": 0, "expstr": "BrM+MC+4s+Res", "fptarea": 59, "repvalue": 472000, "xcoord": 85.311655824788758, "ycoord": 27.632217796142026 }, "geometry": { "type": "Point", "coordinates": [ 85.311655824788758, 27.632217796142026 ] } }, +{ "type": "Feature", "properties": { "zoneid": 61, "bldid": 1299, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 83, "repvalue": 332000, "xcoord": 85.306051341557037, "ycoord": 27.633674608344737 }, "geometry": { "type": "Point", "coordinates": [ 85.306051341557037, 27.633674608344737 ] } }, +{ "type": "Feature", "properties": { "zoneid": 61, "bldid": 1300, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 69, "repvalue": 276000, "xcoord": 85.307410431366065, "ycoord": 27.6347412464889 }, "geometry": { "type": "Point", "coordinates": [ 85.307410431366065, 27.6347412464889 ] } }, +{ "type": "Feature", "properties": { "zoneid": 61, "bldid": 1301, "nhouse": 2, "residents": 13, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 63, "repvalue": 252000, "xcoord": 85.306137447026074, "ycoord": 27.634463191146367 }, "geometry": { "type": "Point", "coordinates": [ 85.306137447026074, 27.634463191146367 ] } }, +{ "type": "Feature", "properties": { "zoneid": 61, "bldid": 1302, "nhouse": 5, "residents": 21, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 64, "repvalue": 512000, "xcoord": 85.307117079471467, "ycoord": 27.634650161803243 }, "geometry": { "type": "Point", "coordinates": [ 85.307117079471467, 27.634650161803243 ] } }, +{ "type": "Feature", "properties": { "zoneid": 61, "bldid": 1303, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 61, "repvalue": 366000, "xcoord": 85.305548051898157, "ycoord": 27.634455989833505 }, "geometry": { "type": "Point", "coordinates": [ 85.305548051898157, 27.634455989833505 ] } }, +{ "type": "Feature", "properties": { "zoneid": 61, "bldid": 1304, "nhouse": 5, "residents": 17, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 60, "repvalue": 480000, "xcoord": 85.307405045698374, "ycoord": 27.635091194584987 }, "geometry": { "type": "Point", "coordinates": [ 85.307405045698374, 27.635091194584987 ] } }, +{ "type": "Feature", "properties": { "zoneid": 61, "bldid": 1305, "nhouse": 5, "residents": 15, "specialfac": 0, "expstr": "BrM+LC+3s+Res", "fptarea": 80, "repvalue": 480000, "xcoord": 85.308194948597631, "ycoord": 27.634838324283098 }, "geometry": { "type": "Point", "coordinates": [ 85.308194948597631, 27.634838324283098 ] } }, +{ "type": "Feature", "properties": { "zoneid": 61, "bldid": 1306, "nhouse": 1, "residents": 2, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 57, "repvalue": 114000, "xcoord": 85.306722801546528, "ycoord": 27.634732850947469 }, "geometry": { "type": "Point", "coordinates": [ 85.306722801546528, 27.634732850947469 ] } }, +{ "type": "Feature", "properties": { "zoneid": 61, "bldid": 1307, "nhouse": 1, "residents": 5, "specialfac": 0, "expstr": "BrM+MC+1s+Res", "fptarea": 80, "repvalue": 160000, "xcoord": 85.306331217614911, "ycoord": 27.634640564987539 }, "geometry": { "type": "Point", "coordinates": [ 85.306331217614911, 27.634640564987539 ] } }, +{ "type": "Feature", "properties": { "zoneid": 61, "bldid": 1308, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 60, "repvalue": 120000, "xcoord": 85.308099407338347, "ycoord": 27.634662151565607 }, "geometry": { "type": "Point", "coordinates": [ 85.308099407338347, 27.634662151565607 ] } }, +{ "type": "Feature", "properties": { "zoneid": 61, "bldid": 1309, "nhouse": 1, "residents": 6, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 49, "repvalue": 98000, "xcoord": 85.307613628250991, "ycoord": 27.634306209398645 }, "geometry": { "type": "Point", "coordinates": [ 85.307613628250991, 27.634306209398645 ] } }, +{ "type": "Feature", "properties": { "zoneid": 61, "bldid": 1310, "nhouse": 2, "residents": 11, "specialfac": 0, "expstr": "BrM+LC+2s+Res", "fptarea": 62, "repvalue": 248000, "xcoord": 85.307705129951174, "ycoord": 27.634744843535202 }, "geometry": { "type": "Point", "coordinates": [ 85.307705129951174, 27.634744843535202 ] } }, +{ "type": "Feature", "properties": { "zoneid": 61, "bldid": 1311, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "BrM+LC+2s+Res", "fptarea": 77, "repvalue": 308000, "xcoord": 85.305753950761613, "ycoord": 27.63384598183989 }, "geometry": { "type": "Point", "coordinates": [ 85.305753950761613, 27.63384598183989 ] } }, +{ "type": "Feature", "properties": { "zoneid": 61, "bldid": 1312, "nhouse": 4, "residents": 20, "specialfac": 0, "expstr": "BrM+LC+4s+Res", "fptarea": 49, "repvalue": 392000, "xcoord": 85.307018846718151, "ycoord": 27.634648962444619 }, "geometry": { "type": "Point", "coordinates": [ 85.307018846718151, 27.634648962444619 ] } }, +{ "type": "Feature", "properties": { "zoneid": 61, "bldid": 1313, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrM+LC+1s+Res", "fptarea": 49, "repvalue": 98000, "xcoord": 85.306335259359386, "ycoord": 27.634378104046178 }, "geometry": { "type": "Point", "coordinates": [ 85.306335259359386, 27.634378104046178 ] } }, +{ "type": "Feature", "properties": { "zoneid": 61, "bldid": 1314, "nhouse": 4, "residents": 12, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 71, "repvalue": 426000, "xcoord": 85.305845444693375, "ycoord": 27.634284616882791 }, "geometry": { "type": "Point", "coordinates": [ 85.305845444693375, 27.634284616882791 ] } }, +{ "type": "Feature", "properties": { "zoneid": 61, "bldid": 1315, "nhouse": 2, "residents": 10, "specialfac": 0, "expstr": "BrM+LC+2s+Res", "fptarea": 62, "repvalue": 248000, "xcoord": 85.306833155971617, "ycoord": 27.633946667474373 }, "geometry": { "type": "Point", "coordinates": [ 85.306833155971617, 27.633946667474373 ] } }, +{ "type": "Feature", "properties": { "zoneid": 61, "bldid": 1316, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 64, "repvalue": 128000, "xcoord": 85.307902941716421, "ycoord": 27.634659754169338 }, "geometry": { "type": "Point", "coordinates": [ 85.307902941716421, 27.634659754169338 ] } }, +{ "type": "Feature", "properties": { "zoneid": 61, "bldid": 1317, "nhouse": 4, "residents": 18, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 62, "repvalue": 372000, "xcoord": 85.307119772725059, "ycoord": 27.634475187772505 }, "geometry": { "type": "Point", "coordinates": [ 85.307119772725059, 27.634475187772505 ] } }, +{ "type": "Feature", "properties": { "zoneid": 62, "bldid": 1318, "nhouse": 6, "residents": 21, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 64, "repvalue": 640000, "xcoord": 85.312988953391056, "ycoord": 27.630002553233002 }, "geometry": { "type": "Point", "coordinates": [ 85.312988953391056, 27.630002553233002 ] } }, +{ "type": "Feature", "properties": { "zoneid": 62, "bldid": 1319, "nhouse": 10, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 102, "repvalue": 1020000, "xcoord": 85.313717142666349, "ycoord": 27.628544549395336 }, "geometry": { "type": "Point", "coordinates": [ 85.313717142666349, 27.628544549395336 ] } }, +{ "type": "Feature", "properties": { "zoneid": 62, "bldid": 1320, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 62, "repvalue": 124000, "xcoord": 85.313725171256166, "ycoord": 27.628020768184577 }, "geometry": { "type": "Point", "coordinates": [ 85.313725171256166, 27.628020768184577 ] } }, +{ "type": "Feature", "properties": { "zoneid": 62, "bldid": 1321, "nhouse": 12, "residents": 46, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 107, "repvalue": 1284000, "xcoord": 85.312758537665616, "ycoord": 27.629685422826292 }, "geometry": { "type": "Point", "coordinates": [ 85.312758537665616, 27.629685422826292 ] } }, +{ "type": "Feature", "properties": { "zoneid": 62, "bldid": 1322, "nhouse": 21, "residents": 89, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 66, "repvalue": 2244000, "xcoord": 85.313103358523207, "ycoord": 27.630213496399769 }, "geometry": { "type": "Point", "coordinates": [ 85.313103358523207, 27.630213496399769 ] } }, +{ "type": "Feature", "properties": { "zoneid": 62, "bldid": 1323, "nhouse": 8, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 73, "repvalue": 876000, "xcoord": 85.312510446509933, "ycoord": 27.630520609754758 }, "geometry": { "type": "Point", "coordinates": [ 85.312510446509933, 27.630520609754758 ] } }, +{ "type": "Feature", "properties": { "zoneid": 62, "bldid": 1324, "nhouse": 29, "residents": 117, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 107, "repvalue": 3210000, "xcoord": 85.312985740309259, "ycoord": 27.630212065582857 }, "geometry": { "type": "Point", "coordinates": [ 85.312985740309259, 27.630212065582857 ] } }, +{ "type": "Feature", "properties": { "zoneid": 62, "bldid": 1325, "nhouse": 7, "residents": 29, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 69, "repvalue": 828000, "xcoord": 85.312257529265906, "ycoord": 27.631670064317952 }, "geometry": { "type": "Point", "coordinates": [ 85.312257529265906, 27.631670064317952 ] } }, +{ "type": "Feature", "properties": { "zoneid": 62, "bldid": 1326, "nhouse": 5, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 88, "repvalue": 528000, "xcoord": 85.312844021206814, "ycoord": 27.6317819769823 }, "geometry": { "type": "Point", "coordinates": [ 85.312844021206814, 27.6317819769823 ] } }, +{ "type": "Feature", "properties": { "zoneid": 62, "bldid": 1327, "nhouse": 8, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 75, "repvalue": 900000, "xcoord": 85.312644133703415, "ycoord": 27.629474479413567 }, "geometry": { "type": "Point", "coordinates": [ 85.312644133703415, 27.629474479413567 ] } }, +{ "type": "Feature", "properties": { "zoneid": 62, "bldid": 1328, "nhouse": 4, "residents": 15, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 81, "repvalue": 486000, "xcoord": 85.312143124437284, "ycoord": 27.63145912050026 }, "geometry": { "type": "Point", "coordinates": [ 85.312143124437284, 27.63145912050026 ] } }, +{ "type": "Feature", "properties": { "zoneid": 62, "bldid": 1329, "nhouse": 28, "residents": 111, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 95, "repvalue": 3040000, "xcoord": 85.312394435134351, "ycoord": 27.630414422283121 }, "geometry": { "type": "Point", "coordinates": [ 85.312394435134351, 27.630414422283121 ] } }, +{ "type": "Feature", "properties": { "zoneid": 62, "bldid": 1330, "nhouse": 1, "residents": 5, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 55, "repvalue": 110000, "xcoord": 85.312963247765623, "ycoord": 27.631678651844901 }, "geometry": { "type": "Point", "coordinates": [ 85.312963247765623, 27.631678651844901 ] } }, +{ "type": "Feature", "properties": { "zoneid": 62, "bldid": 1331, "nhouse": 18, "residents": 72, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 61, "repvalue": 1952000, "xcoord": 85.31250883948249, "ycoord": 27.630625365896819 }, "geometry": { "type": "Point", "coordinates": [ 85.31250883948249, 27.630625365896819 ] } }, +{ "type": "Feature", "properties": { "zoneid": 62, "bldid": 1332, "nhouse": 13, "residents": 45, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 98, "repvalue": 1372000, "xcoord": 85.312038365062108, "ycoord": 27.630619639936469 }, "geometry": { "type": "Point", "coordinates": [ 85.312038365062108, 27.630619639936469 ] } }, +{ "type": "Feature", "properties": { "zoneid": 62, "bldid": 1333, "nhouse": 9, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 60, "repvalue": 960000, "xcoord": 85.313607555348213, "ycoord": 27.628019337999039 }, "geometry": { "type": "Point", "coordinates": [ 85.313607555348213, 27.628019337999039 ] } }, +{ "type": "Feature", "properties": { "zoneid": 62, "bldid": 1334, "nhouse": 25, "residents": 97, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 77, "repvalue": 2618000, "xcoord": 85.313718748401641, "ycoord": 27.628439793156524 }, "geometry": { "type": "Point", "coordinates": [ 85.313718748401641, 27.628439793156524 ] } }, +{ "type": "Feature", "properties": { "zoneid": 62, "bldid": 1335, "nhouse": 7, "residents": 30, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 84, "repvalue": 840000, "xcoord": 85.312136694620619, "ycoord": 27.631878144922304 }, "geometry": { "type": "Point", "coordinates": [ 85.312136694620619, 27.631878144922304 ] } }, +{ "type": "Feature", "properties": { "zoneid": 62, "bldid": 1336, "nhouse": 8, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 75, "repvalue": 900000, "xcoord": 85.312850448303493, "ycoord": 27.63136295240141 }, "geometry": { "type": "Point", "coordinates": [ 85.312850448303493, 27.63136295240141 ] } }, +{ "type": "Feature", "properties": { "zoneid": 62, "bldid": 1337, "nhouse": 13, "residents": 46, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 96, "repvalue": 1344000, "xcoord": 85.312620030360335, "ycoord": 27.63104582171465 }, "geometry": { "type": "Point", "coordinates": [ 85.312620030360335, 27.63104582171465 ] } }, +{ "type": "Feature", "properties": { "zoneid": 62, "bldid": 1338, "nhouse": 8, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 68, "repvalue": 816000, "xcoord": 85.313127454113214, "ycoord": 27.628642153518108 }, "geometry": { "type": "Point", "coordinates": [ 85.313127454113214, 27.628642153518108 ] } }, +{ "type": "Feature", "properties": { "zoneid": 62, "bldid": 1339, "nhouse": 2, "residents": 14, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 67, "repvalue": 268000, "xcoord": 85.312164020382852, "ycoord": 27.630097290944185 }, "geometry": { "type": "Point", "coordinates": [ 85.312164020382852, 27.630097290944185 ] } }, +{ "type": "Feature", "properties": { "zoneid": 62, "bldid": 1340, "nhouse": 11, "residents": 51, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 91, "repvalue": 1274000, "xcoord": 85.312368720003221, "ycoord": 27.632090520281039 }, "geometry": { "type": "Point", "coordinates": [ 85.312368720003221, 27.632090520281039 ] } }, +{ "type": "Feature", "properties": { "zoneid": 62, "bldid": 1341, "nhouse": 10, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 92, "repvalue": 1104000, "xcoord": 85.312863302080629, "ycoord": 27.630524903159525 }, "geometry": { "type": "Point", "coordinates": [ 85.312863302080629, 27.630524903159525 ] } }, +{ "type": "Feature", "properties": { "zoneid": 62, "bldid": 1342, "nhouse": 2, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 66, "repvalue": 264000, "xcoord": 85.313364293290448, "ycoord": 27.628540258444687 }, "geometry": { "type": "Point", "coordinates": [ 85.313364293290448, 27.628540258444687 ] } }, +{ "type": "Feature", "properties": { "zoneid": 62, "bldid": 1343, "nhouse": 24, "residents": 89, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 88, "repvalue": 2640000, "xcoord": 85.313723565555549, "ycoord": 27.628125524430068 }, "geometry": { "type": "Point", "coordinates": [ 85.313723565555549, 27.628125524430068 ] } }, +{ "type": "Feature", "properties": { "zoneid": 62, "bldid": 1344, "nhouse": 19, "residents": 74, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 70, "repvalue": 2100000, "xcoord": 85.312719973648981, "ycoord": 27.632199570399798 }, "geometry": { "type": "Point", "coordinates": [ 85.312719973648981, 27.632199570399798 ] } }, +{ "type": "Feature", "properties": { "zoneid": 62, "bldid": 1345, "nhouse": 3, "residents": 8, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 98, "repvalue": 392000, "xcoord": 85.312516874532946, "ycoord": 27.630101585169839 }, "geometry": { "type": "Point", "coordinates": [ 85.312516874532946, 27.630101585169839 ] } }, +{ "type": "Feature", "properties": { "zoneid": 62, "bldid": 1346, "nhouse": 13, "residents": 49, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 102, "repvalue": 1428000, "xcoord": 85.313955586641399, "ycoord": 27.628337897026171 }, "geometry": { "type": "Point", "coordinates": [ 85.313955586641399, 27.628337897026171 ] } }, +{ "type": "Feature", "properties": { "zoneid": 62, "bldid": 1347, "nhouse": 5, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 76, "repvalue": 608000, "xcoord": 85.313491545364627, "ycoord": 27.627913151479351 }, "geometry": { "type": "Point", "coordinates": [ 85.313491545364627, 27.627913151479351 ] } }, +{ "type": "Feature", "properties": { "zoneid": 62, "bldid": 1348, "nhouse": 6, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 55, "repvalue": 660000, "xcoord": 85.312483125863977, "ycoord": 27.632301463942774 }, "geometry": { "type": "Point", "coordinates": [ 85.312483125863977, 27.632301463942774 ] } }, +{ "type": "Feature", "properties": { "zoneid": 62, "bldid": 1349, "nhouse": 5, "residents": 14, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 107, "repvalue": 642000, "xcoord": 85.312532943983399, "ycoord": 27.629054023590712 }, "geometry": { "type": "Point", "coordinates": [ 85.312532943983399, 27.629054023590712 ] } }, +{ "type": "Feature", "properties": { "zoneid": 62, "bldid": 1350, "nhouse": 5, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 82, "repvalue": 1312000, "xcoord": 85.312631278829926, "ycoord": 27.63031252868754 }, "geometry": { "type": "Point", "coordinates": [ 85.312631278829926, 27.63031252868754 ] } }, +{ "type": "Feature", "properties": { "zoneid": 62, "bldid": 2022, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Com", "fptarea": 119, "repvalue": 2380000, "xcoord": 85.313117816111287, "ycoord": 27.629270690715828 }, "geometry": { "type": "Point", "coordinates": [ 85.313117816111287, 27.629270690715828 ] } }, +{ "type": "Feature", "properties": { "zoneid": 69, "bldid": 1351, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 82, "repvalue": 164000, "xcoord": 85.318102211690118, "ycoord": 27.635152994344317 }, "geometry": { "type": "Point", "coordinates": [ 85.318102211690118, 27.635152994344317 ] } }, +{ "type": "Feature", "properties": { "zoneid": 69, "bldid": 1352, "nhouse": 10, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 66, "repvalue": 924000, "xcoord": 85.317396922858705, "ycoord": 27.634964235825393 }, "geometry": { "type": "Point", "coordinates": [ 85.317396922858705, 27.634964235825393 ] } }, +{ "type": "Feature", "properties": { "zoneid": 69, "bldid": 1353, "nhouse": 16, "residents": 57, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 59, "repvalue": 1534000, "xcoord": 85.31839326300755, "ycoord": 27.635967432098365 }, "geometry": { "type": "Point", "coordinates": [ 85.31839326300755, 27.635967432098365 ] } }, +{ "type": "Feature", "properties": { "zoneid": 69, "bldid": 1354, "nhouse": 26, "residents": 104, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 70, "repvalue": 2380000, "xcoord": 85.318071902167333, "ycoord": 27.637134845032904 }, "geometry": { "type": "Point", "coordinates": [ 85.318071902167333, 27.637134845032904 ] } }, +{ "type": "Feature", "properties": { "zoneid": 69, "bldid": 1355, "nhouse": 7, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 66, "repvalue": 660000, "xcoord": 85.318398772734469, "ycoord": 27.635607095533707 }, "geometry": { "type": "Point", "coordinates": [ 85.318398772734469, 27.635607095533707 ] } }, +{ "type": "Feature", "properties": { "zoneid": 69, "bldid": 1356, "nhouse": 11, "residents": 43, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 71, "repvalue": 994000, "xcoord": 85.318203361036794, "ycoord": 27.63515422123664 }, "geometry": { "type": "Point", "coordinates": [ 85.318203361036794, 27.63515422123664 ] } }, +{ "type": "Feature", "properties": { "zoneid": 69, "bldid": 1357, "nhouse": 13, "residents": 63, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 72, "repvalue": 1152000, "xcoord": 85.317787740415653, "ycoord": 27.635869986159641 }, "geometry": { "type": "Point", "coordinates": [ 85.317787740415653, 27.635869986159641 ] } }, +{ "type": "Feature", "properties": { "zoneid": 69, "bldid": 1358, "nhouse": 10, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 67, "repvalue": 938000, "xcoord": 85.317401057435177, "ycoord": 27.634693983503247 }, "geometry": { "type": "Point", "coordinates": [ 85.317401057435177, 27.634693983503247 ] } }, +{ "type": "Feature", "properties": { "zoneid": 69, "bldid": 1359, "nhouse": 10, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 69, "repvalue": 966000, "xcoord": 85.317275098741518, "ycoord": 27.636314269726686 }, "geometry": { "type": "Point", "coordinates": [ 85.317275098741518, 27.636314269726686 ] } }, +{ "type": "Feature", "properties": { "zoneid": 69, "bldid": 1360, "nhouse": 13, "residents": 48, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 75, "repvalue": 1200000, "xcoord": 85.317798763688444, "ycoord": 27.635149313225046 }, "geometry": { "type": "Point", "coordinates": [ 85.317798763688444, 27.635149313225046 ] } }, +{ "type": "Feature", "properties": { "zoneid": 69, "bldid": 1361, "nhouse": 14, "residents": 61, "specialfac": 0, "expstr": "RCi+HC+9s+Res", "fptarea": 70, "repvalue": 1260000, "xcoord": 85.318078790966965, "ycoord": 27.636684424474307 }, "geometry": { "type": "Point", "coordinates": [ 85.318078790966965, 27.636684424474307 ] } }, +{ "type": "Feature", "properties": { "zoneid": 69, "bldid": 1362, "nhouse": 2, "residents": 13, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 47, "repvalue": 188000, "xcoord": 85.317374870811989, "ycoord": 27.636405581355927 }, "geometry": { "type": "Point", "coordinates": [ 85.317374870811989, 27.636405581355927 ] } }, +{ "type": "Feature", "properties": { "zoneid": 69, "bldid": 1363, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 75, "repvalue": 150000, "xcoord": 85.318610712917575, "ycoord": 27.634978959748015 }, "geometry": { "type": "Point", "coordinates": [ 85.318610712917575, 27.634978959748015 ] } }, +{ "type": "Feature", "properties": { "zoneid": 69, "bldid": 1364, "nhouse": 24, "residents": 91, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 78, "repvalue": 2184000, "xcoord": 85.317901290813495, "ycoord": 27.635060456211466 }, "geometry": { "type": "Point", "coordinates": [ 85.317901290813495, 27.635060456211466 ] } }, +{ "type": "Feature", "properties": { "zoneid": 69, "bldid": 1365, "nhouse": 9, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 71, "repvalue": 852000, "xcoord": 85.317676944153774, "ycoord": 27.636499347655334 }, "geometry": { "type": "Point", "coordinates": [ 85.317676944153774, 27.636499347655334 ] } }, +{ "type": "Feature", "properties": { "zoneid": 69, "bldid": 1366, "nhouse": 11, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 88, "repvalue": 1056000, "xcoord": 85.317474643048001, "ycoord": 27.636496892919567 }, "geometry": { "type": "Point", "coordinates": [ 85.317474643048001, 27.636496892919567 ] } }, +{ "type": "Feature", "properties": { "zoneid": 69, "bldid": 1367, "nhouse": 18, "residents": 68, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 65, "repvalue": 1690000, "xcoord": 85.31788062317861, "ycoord": 27.636411717987677 }, "geometry": { "type": "Point", "coordinates": [ 85.31788062317861, 27.636411717987677 ] } }, +{ "type": "Feature", "properties": { "zoneid": 69, "bldid": 1368, "nhouse": 25, "residents": 108, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 67, "repvalue": 2278000, "xcoord": 85.318185452314111, "ycoord": 27.636325314958285 }, "geometry": { "type": "Point", "coordinates": [ 85.318185452314111, 27.636325314958285 ] } }, +{ "type": "Feature", "properties": { "zoneid": 69, "bldid": 1369, "nhouse": 23, "residents": 114, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 74, "repvalue": 2072000, "xcoord": 85.317589574727535, "ycoord": 27.635597279323584 }, "geometry": { "type": "Point", "coordinates": [ 85.317589574727535, 27.635597279323584 ] } }, +{ "type": "Feature", "properties": { "zoneid": 69, "bldid": 1370, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 84, "repvalue": 336000, "xcoord": 85.317985907064909, "ycoord": 27.636142692745814 }, "geometry": { "type": "Point", "coordinates": [ 85.317985907064909, 27.636142692745814 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 1371, "nhouse": 5, "residents": 19, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 67, "repvalue": 536000, "xcoord": 85.320241289479767, "ycoord": 27.625067127273741 }, "geometry": { "type": "Point", "coordinates": [ 85.320241289479767, 27.625067127273741 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 1372, "nhouse": 4, "residents": 15, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 68, "repvalue": 408000, "xcoord": 85.319844230833013, "ycoord": 27.625296012602032 }, "geometry": { "type": "Point", "coordinates": [ 85.319844230833013, 27.625296012602032 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 1373, "nhouse": 5, "residents": 24, "specialfac": 0, "expstr": "Adb+LC+3s+Res", "fptarea": 87, "repvalue": 522000, "xcoord": 85.320760594853283, "ycoord": 27.62542395826425 }, "geometry": { "type": "Point", "coordinates": [ 85.320760594853283, 27.62542395826425 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 1374, "nhouse": 5, "residents": 22, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 78, "repvalue": 468000, "xcoord": 85.321295945722724, "ycoord": 27.624729354259902 }, "geometry": { "type": "Point", "coordinates": [ 85.321295945722724, 27.624729354259902 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 1375, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "Adb+LC+2s+Res", "fptarea": 71, "repvalue": 284000, "xcoord": 85.32088819310286, "ycoord": 27.625659198078029 }, "geometry": { "type": "Point", "coordinates": [ 85.32088819310286, 27.625659198078029 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 1376, "nhouse": 5, "residents": 26, "specialfac": 0, "expstr": "BrM+LC+4s+Res", "fptarea": 65, "repvalue": 520000, "xcoord": 85.319943283623644, "ycoord": 27.627400466110867 }, "geometry": { "type": "Point", "coordinates": [ 85.319943283623644, 27.627400466110867 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 1377, "nhouse": 6, "residents": 25, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 72, "repvalue": 576000, "xcoord": 85.320652611059927, "ycoord": 27.623903633644414 }, "geometry": { "type": "Point", "coordinates": [ 85.320652611059927, 27.623903633644414 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 1378, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 77, "repvalue": 308000, "xcoord": 85.319298160296754, "ycoord": 27.626691565046194 }, "geometry": { "type": "Point", "coordinates": [ 85.319298160296754, 27.626691565046194 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 1379, "nhouse": 3, "residents": 8, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 46, "repvalue": 276000, "xcoord": 85.319549784651116, "ycoord": 27.627395698576965 }, "geometry": { "type": "Point", "coordinates": [ 85.319549784651116, 27.627395698576965 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 1380, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrCfl+MC+1s+Res", "fptarea": 84, "repvalue": 168000, "xcoord": 85.319705930414017, "ycoord": 27.625761726804242 }, "geometry": { "type": "Point", "coordinates": [ 85.319705930414017, 27.625761726804242 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 1381, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 75, "repvalue": 300000, "xcoord": 85.320244856559, "ycoord": 27.624833475570764 }, "geometry": { "type": "Point", "coordinates": [ 85.320244856559, 27.624833475570764 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 1382, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 57, "repvalue": 228000, "xcoord": 85.32010655850533, "ycoord": 27.625299190303551 }, "geometry": { "type": "Point", "coordinates": [ 85.32010655850533, 27.625299190303551 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 1383, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 61, "repvalue": 122000, "xcoord": 85.319679166637613, "ycoord": 27.627514113654353 }, "geometry": { "type": "Point", "coordinates": [ 85.319679166637613, 27.627514113654353 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 1384, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 76, "repvalue": 152000, "xcoord": 85.320225237091847, "ycoord": 27.626118559834445 }, "geometry": { "type": "Point", "coordinates": [ 85.320225237091847, 27.626118559834445 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 1385, "nhouse": 4, "residents": 18, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 52, "repvalue": 416000, "xcoord": 85.320099423575726, "ycoord": 27.625766493636618 }, "geometry": { "type": "Point", "coordinates": [ 85.320099423575726, 27.625766493636618 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 1386, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 45, "repvalue": 180000, "xcoord": 85.320076233868107, "ycoord": 27.627285229239853 }, "geometry": { "type": "Point", "coordinates": [ 85.320076233868107, 27.627285229239853 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 1387, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "BrCfl+MC+3s+Res", "fptarea": 46, "repvalue": 276000, "xcoord": 85.319700577852032, "ycoord": 27.626112204211609 }, "geometry": { "type": "Point", "coordinates": [ 85.319700577852032, 27.626112204211609 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 1388, "nhouse": 5, "residents": 22, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 74, "repvalue": 444000, "xcoord": 85.320101207324228, "ycoord": 27.625649667806464 }, "geometry": { "type": "Point", "coordinates": [ 85.320101207324228, 27.625649667806464 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 1389, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 74, "repvalue": 296000, "xcoord": 85.319301729624257, "ycoord": 27.626457913511224 }, "geometry": { "type": "Point", "coordinates": [ 85.319301729624257, 27.626457913511224 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 1390, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 79, "repvalue": 158000, "xcoord": 85.319546215708272, "ycoord": 27.627629350110151 }, "geometry": { "type": "Point", "coordinates": [ 85.319546215708272, 27.627629350110151 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 1391, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "Adb+LC+1s+Res", "fptarea": 81, "repvalue": 162000, "xcoord": 85.321164782480139, "ycoord": 27.624727766625671 }, "geometry": { "type": "Point", "coordinates": [ 85.321164782480139, 27.624727766625671 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 1392, "nhouse": 4, "residents": 17, "specialfac": 0, "expstr": "BrM+LC+4s+Res", "fptarea": 54, "repvalue": 432000, "xcoord": 85.319957555626544, "ycoord": 27.626465859706691 }, "geometry": { "type": "Point", "coordinates": [ 85.319957555626544, 27.626465859706691 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 1393, "nhouse": 5, "residents": 18, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 85, "repvalue": 510000, "xcoord": 85.31997361080839, "ycoord": 27.625414427343287 }, "geometry": { "type": "Point", "coordinates": [ 85.31997361080839, 27.625414427343287 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 1394, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 67, "repvalue": 268000, "xcoord": 85.319941499574952, "ycoord": 27.627517291902052 }, "geometry": { "type": "Point", "coordinates": [ 85.319941499574952, 27.627517291902052 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 1395, "nhouse": 5, "residents": 24, "specialfac": 0, "expstr": "BrCfl+MC+3s+Res", "fptarea": 76, "repvalue": 456000, "xcoord": 85.320774858718735, "ycoord": 27.624489351201227 }, "geometry": { "type": "Point", "coordinates": [ 85.320774858718735, 27.624489351201227 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 1396, "nhouse": 1, "residents": 7, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 83, "repvalue": 166000, "xcoord": 85.319808548902373, "ycoord": 27.627632528621433 }, "geometry": { "type": "Point", "coordinates": [ 85.319808548902373, 27.627632528621433 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 1397, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 63, "repvalue": 126000, "xcoord": 85.32023058798444, "ycoord": 27.625768082332883 }, "geometry": { "type": "Point", "coordinates": [ 85.32023058798444, 27.625768082332883 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 1398, "nhouse": 4, "residents": 15, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 66, "repvalue": 396000, "xcoord": 85.319423972099543, "ycoord": 27.627043631859333 }, "geometry": { "type": "Point", "coordinates": [ 85.319423972099543, 27.627043631859333 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 1399, "nhouse": 4, "residents": 14, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 72, "repvalue": 432000, "xcoord": 85.320376019865563, "ycoord": 27.624835064080312 }, "geometry": { "type": "Point", "coordinates": [ 85.320376019865563, 27.624835064080312 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 1400, "nhouse": 5, "residents": 16, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 79, "repvalue": 474000, "xcoord": 85.32049648348567, "ycoord": 27.625537607644151 }, "geometry": { "type": "Point", "coordinates": [ 85.32049648348567, 27.625537607644151 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 1401, "nhouse": 3, "residents": 8, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 78, "repvalue": 312000, "xcoord": 85.320638346510918, "ycoord": 27.624838240727637 }, "geometry": { "type": "Point", "coordinates": [ 85.320638346510918, 27.624838240727637 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 1402, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 70, "repvalue": 140000, "xcoord": 85.318867174691576, "ycoord": 27.629140135916 }, "geometry": { "type": "Point", "coordinates": [ 85.318867174691576, 27.629140135916 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 1403, "nhouse": 2, "residents": 11, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 65, "repvalue": 260000, "xcoord": 85.320769509849683, "ycoord": 27.624839828865419 }, "geometry": { "type": "Point", "coordinates": [ 85.320769509849683, 27.624839828865419 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 1404, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 49, "repvalue": 196000, "xcoord": 85.320119044218799, "ycoord": 27.624481409390821 }, "geometry": { "type": "Point", "coordinates": [ 85.320119044218799, 27.624481409390821 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 1405, "nhouse": 1, "residents": 2, "specialfac": 0, "expstr": "BrM+LC+1s+Res", "fptarea": 50, "repvalue": 100000, "xcoord": 85.319292806224965, "ycoord": 27.627042042333105 }, "geometry": { "type": "Point", "coordinates": [ 85.319292806224965, 27.627042042333105 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 1406, "nhouse": 7, "residents": 32, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 81, "repvalue": 648000, "xcoord": 85.320755245726644, "ycoord": 27.625774435878654 }, "geometry": { "type": "Point", "coordinates": [ 85.320755245726644, 27.625774435878654 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 1407, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 59, "repvalue": 118000, "xcoord": 85.319291021512868, "ycoord": 27.627158868091257 }, "geometry": { "type": "Point", "coordinates": [ 85.319291021512868, 27.627158868091257 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 1408, "nhouse": 4, "residents": 12, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 45, "repvalue": 360000, "xcoord": 85.319276743429484, "ycoord": 27.628093474081783 }, "geometry": { "type": "Point", "coordinates": [ 85.319276743429484, 27.628093474081783 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 1409, "nhouse": 1, "residents": 5, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 81, "repvalue": 162000, "xcoord": 85.321040749896468, "ycoord": 27.624258875240049 }, "geometry": { "type": "Point", "coordinates": [ 85.321040749896468, 27.624258875240049 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 1410, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 65, "repvalue": 260000, "xcoord": 85.319264249542542, "ycoord": 27.628911254214575 }, "geometry": { "type": "Point", "coordinates": [ 85.319264249542542, 27.628911254214575 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 1411, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 86, "repvalue": 344000, "xcoord": 85.319688088164895, "ycoord": 27.626929984756185 }, "geometry": { "type": "Point", "coordinates": [ 85.319688088164895, 27.626929984756185 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 1412, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrM+LC+1s+Res", "fptarea": 49, "repvalue": 98000, "xcoord": 85.319540862213429, "ycoord": 27.62797982739438 }, "geometry": { "type": "Point", "coordinates": [ 85.319540862213429, 27.62797982739438 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 1413, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 50, "repvalue": 100000, "xcoord": 85.319427541213244, "ycoord": 27.626809980321095 }, "geometry": { "type": "Point", "coordinates": [ 85.319427541213244, 27.626809980321095 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 1414, "nhouse": 3, "residents": 16, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 80, "repvalue": 320000, "xcoord": 85.320379586623645, "ycoord": 27.624601412353343 }, "geometry": { "type": "Point", "coordinates": [ 85.320379586623645, 27.624601412353343 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 1415, "nhouse": 3, "residents": 15, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 74, "repvalue": 296000, "xcoord": 85.320622298072209, "ycoord": 27.625889673537586 }, "geometry": { "type": "Point", "coordinates": [ 85.320622298072209, 27.625889673537586 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 1416, "nhouse": 7, "residents": 29, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 83, "repvalue": 664000, "xcoord": 85.319294590926305, "ycoord": 27.626925216572879 }, "geometry": { "type": "Point", "coordinates": [ 85.319294590926305, 27.626925216572879 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 1417, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 70, "repvalue": 280000, "xcoord": 85.320365319333717, "ycoord": 27.625536019211438 }, "geometry": { "type": "Point", "coordinates": [ 85.320365319333717, 27.625536019211438 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 1418, "nhouse": 4, "residents": 21, "specialfac": 0, "expstr": "BrCri+MC+3s+Res", "fptarea": 67, "repvalue": 402000, "xcoord": 85.320757028779596, "ycoord": 27.625657610009259 }, "geometry": { "type": "Point", "coordinates": [ 85.320757028779596, 27.625657610009259 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 1419, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 85, "repvalue": 170000, "xcoord": 85.320640129617104, "ycoord": 27.6247214148495 }, "geometry": { "type": "Point", "coordinates": [ 85.320640129617104, 27.6247214148495 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 1420, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 72, "repvalue": 288000, "xcoord": 85.319691656700641, "ycoord": 27.626696333182387 }, "geometry": { "type": "Point", "coordinates": [ 85.319691656700641, 27.626696333182387 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 1421, "nhouse": 5, "residents": 22, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 82, "repvalue": 492000, "xcoord": 85.320354618415422, "ycoord": 27.626236974267879 }, "geometry": { "type": "Point", "coordinates": [ 85.320354618415422, 27.626236974267879 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 2030, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Com", "fptarea": 148, "repvalue": 2368000, "xcoord": 85.320117260577675, "ycoord": 27.62459823524172 }, "geometry": { "type": "Point", "coordinates": [ 85.320117260577675, 27.62459823524172 ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "bldid": 2034, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 134, "repvalue": 1876000, "xcoord": 85.319677382299943, "ycoord": 27.627630939427764 }, "geometry": { "type": "Point", "coordinates": [ 85.319677382299943, 27.627630939427764 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1422, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "BrCri+MC+2s+Res", "fptarea": 73, "repvalue": 292000, "xcoord": 85.303796345631142, "ycoord": 27.620516258282638 }, "geometry": { "type": "Point", "coordinates": [ 85.303796345631142, 27.620516258282638 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1423, "nhouse": 2, "residents": 14, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 64, "repvalue": 256000, "xcoord": 85.309042038886687, "ycoord": 27.619534400854885 }, "geometry": { "type": "Point", "coordinates": [ 85.309042038886687, 27.619534400854885 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1424, "nhouse": 20, "residents": 81, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 67, "repvalue": 1876000, "xcoord": 85.304648696341573, "ycoord": 27.620621761186932 }, "geometry": { "type": "Point", "coordinates": [ 85.304648696341573, 27.620621761186932 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1425, "nhouse": 11, "residents": 49, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 73, "repvalue": 1022000, "xcoord": 85.307533252695364, "ycoord": 27.620466823430746 }, "geometry": { "type": "Point", "coordinates": [ 85.307533252695364, 27.620466823430746 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1426, "nhouse": 5, "residents": 17, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 46, "repvalue": 460000, "xcoord": 85.304106271254639, "ycoord": 27.621185623925822 }, "geometry": { "type": "Point", "coordinates": [ 85.304106271254639, 27.621185623925822 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1427, "nhouse": 9, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 80, "repvalue": 800000, "xcoord": 85.305235033293073, "ycoord": 27.617205962395129 }, "geometry": { "type": "Point", "coordinates": [ 85.305235033293073, 27.617205962395129 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1428, "nhouse": 11, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 84, "repvalue": 1008000, "xcoord": 85.308407573204732, "ycoord": 27.626087348957189 }, "geometry": { "type": "Point", "coordinates": [ 85.308407573204732, 27.626087348957189 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1429, "nhouse": 7, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 51, "repvalue": 714000, "xcoord": 85.304907372606266, "ycoord": 27.624618378515368 }, "geometry": { "type": "Point", "coordinates": [ 85.304907372606266, 27.624618378515368 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1430, "nhouse": 6, "residents": 18, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 76, "repvalue": 608000, "xcoord": 85.304933733373787, "ycoord": 27.622907219857755 }, "geometry": { "type": "Point", "coordinates": [ 85.304933733373787, 27.622907219857755 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1431, "nhouse": 2, "residents": 10, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 58, "repvalue": 232000, "xcoord": 85.306683824905704, "ycoord": 27.620171209177652 }, "geometry": { "type": "Point", "coordinates": [ 85.306683824905704, 27.620171209177652 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1432, "nhouse": 8, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 56, "repvalue": 784000, "xcoord": 85.306237798835539, "ycoord": 27.628342841171431 }, "geometry": { "type": "Point", "coordinates": [ 85.306237798835539, 27.628342841171431 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1433, "nhouse": 9, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 82, "repvalue": 820000, "xcoord": 85.310036149445239, "ycoord": 27.61735961915117 }, "geometry": { "type": "Point", "coordinates": [ 85.310036149445239, 27.61735961915117 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1434, "nhouse": 3, "residents": 18, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 54, "repvalue": 324000, "xcoord": 85.30496009181735, "ycoord": 27.621196060754698 }, "geometry": { "type": "Point", "coordinates": [ 85.30496009181735, 27.621196060754698 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1435, "nhouse": 4, "residents": 22, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 66, "repvalue": 396000, "xcoord": 85.306863637616232, "ycoord": 27.62236029833856 }, "geometry": { "type": "Point", "coordinates": [ 85.306863637616232, 27.62236029833856 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1436, "nhouse": 9, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 57, "repvalue": 798000, "xcoord": 85.307729164161614, "ycoord": 27.621610202347359 }, "geometry": { "type": "Point", "coordinates": [ 85.307729164161614, 27.621610202347359 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1437, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 85, "repvalue": 340000, "xcoord": 85.306385589290642, "ycoord": 27.618741332584673 }, "geometry": { "type": "Point", "coordinates": [ 85.306385589290642, 27.618741332584673 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1438, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 53, "repvalue": 106000, "xcoord": 85.307473303612582, "ycoord": 27.624364468569144 }, "geometry": { "type": "Point", "coordinates": [ 85.307473303612582, 27.624364468569144 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1439, "nhouse": 5, "residents": 18, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 81, "repvalue": 486000, "xcoord": 85.30415900769033, "ycoord": 27.617763305894186 }, "geometry": { "type": "Point", "coordinates": [ 85.30415900769033, 27.617763305894186 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1440, "nhouse": 2, "residents": 5, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 53, "repvalue": 212000, "xcoord": 85.308853419878176, "ycoord": 27.617915699819839 }, "geometry": { "type": "Point", "coordinates": [ 85.308853419878176, 27.617915699819839 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1441, "nhouse": 12, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 71, "repvalue": 1136000, "xcoord": 85.308422138079266, "ycoord": 27.618195688470614 }, "geometry": { "type": "Point", "coordinates": [ 85.308422138079266, 27.618195688470614 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1442, "nhouse": 27, "residents": 120, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 80, "repvalue": 2400000, "xcoord": 85.306441111578948, "ycoord": 27.622069892838287 }, "geometry": { "type": "Point", "coordinates": [ 85.306441111578948, 27.622069892838287 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1443, "nhouse": 7, "residents": 30, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 47, "repvalue": 658000, "xcoord": 85.305290367598445, "ycoord": 27.627475526451292 }, "geometry": { "type": "Point", "coordinates": [ 85.305290367598445, 27.627475526451292 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1444, "nhouse": 7, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 63, "repvalue": 630000, "xcoord": 85.306059459217465, "ycoord": 27.626058688730428 }, "geometry": { "type": "Point", "coordinates": [ 85.306059459217465, 27.626058688730428 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1445, "nhouse": 11, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 74, "repvalue": 1036000, "xcoord": 85.307660446105416, "ycoord": 27.619137221833757 }, "geometry": { "type": "Point", "coordinates": [ 85.307660446105416, 27.619137221833757 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1446, "nhouse": 11, "residents": 45, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 74, "repvalue": 1036000, "xcoord": 85.307389970475867, "ycoord": 27.622842134158482 }, "geometry": { "type": "Point", "coordinates": [ 85.307389970475867, 27.622842134158482 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1447, "nhouse": 7, "residents": 29, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 44, "repvalue": 704000, "xcoord": 85.3088344298137, "ycoord": 27.619151540071368 }, "geometry": { "type": "Point", "coordinates": [ 85.3088344298137, 27.619151540071368 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1448, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "BrCfl+MC+2s+Res", "fptarea": 67, "repvalue": 268000, "xcoord": 85.306296338452768, "ycoord": 27.624540265190436 }, "geometry": { "type": "Point", "coordinates": [ 85.306296338452768, 27.624540265190436 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1449, "nhouse": 6, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 48, "repvalue": 576000, "xcoord": 85.303983426937748, "ycoord": 27.622230026827371 }, "geometry": { "type": "Point", "coordinates": [ 85.303983426937748, 27.622230026827371 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1450, "nhouse": 11, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 75, "repvalue": 1050000, "xcoord": 85.306941112427083, "ycoord": 27.624262890685571 }, "geometry": { "type": "Point", "coordinates": [ 85.306941112427083, 27.624262890685571 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1451, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 49, "repvalue": 98000, "xcoord": 85.307846124992679, "ycoord": 27.62094605263518 }, "geometry": { "type": "Point", "coordinates": [ 85.307846124992679, 27.62094605263518 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1452, "nhouse": 6, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 53, "repvalue": 636000, "xcoord": 85.304433777591555, "ycoord": 27.620714216430983 }, "geometry": { "type": "Point", "coordinates": [ 85.304433777591555, 27.620714216430983 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1453, "nhouse": 24, "residents": 94, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 74, "repvalue": 2220000, "xcoord": 85.305319654131381, "ycoord": 27.625574239431828 }, "geometry": { "type": "Point", "coordinates": [ 85.305319654131381, 27.625574239431828 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1454, "nhouse": 27, "residents": 109, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 70, "repvalue": 2520000, "xcoord": 85.306556539307891, "ycoord": 27.628441815994869 }, "geometry": { "type": "Point", "coordinates": [ 85.306556539307891, 27.628441815994869 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1455, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 60, "repvalue": 240000, "xcoord": 85.305028905686953, "ycoord": 27.616728032108028 }, "geometry": { "type": "Point", "coordinates": [ 85.305028905686953, 27.616728032108028 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1456, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 59, "repvalue": 236000, "xcoord": 85.306853398388441, "ycoord": 27.623025749698716 }, "geometry": { "type": "Point", "coordinates": [ 85.306853398388441, 27.623025749698716 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1457, "nhouse": 18, "residents": 67, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 51, "repvalue": 1734000, "xcoord": 85.30392944430136, "ycoord": 27.618806404605358 }, "geometry": { "type": "Point", "coordinates": [ 85.30392944430136, 27.618806404605358 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1458, "nhouse": 8, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 54, "repvalue": 756000, "xcoord": 85.307110692920617, "ycoord": 27.627117429862977 }, "geometry": { "type": "Point", "coordinates": [ 85.307110692920617, 27.627117429862977 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1459, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 79, "repvalue": 316000, "xcoord": 85.303506939635582, "ycoord": 27.618515990980448 }, "geometry": { "type": "Point", "coordinates": [ 85.303506939635582, 27.618515990980448 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1460, "nhouse": 10, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 82, "repvalue": 984000, "xcoord": 85.306525894656446, "ycoord": 27.623497162915221 }, "geometry": { "type": "Point", "coordinates": [ 85.306525894656446, 27.623497162915221 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1461, "nhouse": 19, "residents": 79, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 77, "repvalue": 1694000, "xcoord": 85.306947001118175, "ycoord": 27.616941620470104 }, "geometry": { "type": "Point", "coordinates": [ 85.306947001118175, 27.616941620470104 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1462, "nhouse": 13, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 88, "repvalue": 1232000, "xcoord": 85.303835904932171, "ycoord": 27.617949520091141 }, "geometry": { "type": "Point", "coordinates": [ 85.303835904932171, 27.617949520091141 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1463, "nhouse": 20, "residents": 85, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 82, "repvalue": 1804000, "xcoord": 85.30731538400974, "ycoord": 27.62769042208236 }, "geometry": { "type": "Point", "coordinates": [ 85.30731538400974, 27.62769042208236 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1464, "nhouse": 14, "residents": 50, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 61, "repvalue": 1342000, "xcoord": 85.305555204563163, "ycoord": 27.617209873699387 }, "geometry": { "type": "Point", "coordinates": [ 85.305555204563163, 27.617209873699387 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1465, "nhouse": 9, "residents": 49, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 85, "repvalue": 850000, "xcoord": 85.305794885996306, "ycoord": 27.622442330052749 }, "geometry": { "type": "Point", "coordinates": [ 85.305794885996306, 27.622442330052749 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1466, "nhouse": 5, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 74, "repvalue": 444000, "xcoord": 85.304982055411827, "ycoord": 27.619770094495259 }, "geometry": { "type": "Point", "coordinates": [ 85.304982055411827, 27.619770094495259 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1467, "nhouse": 8, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 63, "repvalue": 756000, "xcoord": 85.30791192229114, "ycoord": 27.623609161718836 }, "geometry": { "type": "Point", "coordinates": [ 85.30791192229114, 27.623609161718836 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1468, "nhouse": 5, "residents": 18, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 46, "repvalue": 460000, "xcoord": 85.309292001117498, "ycoord": 27.617160386357856 }, "geometry": { "type": "Point", "coordinates": [ 85.309292001117498, 27.617160386357856 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1469, "nhouse": 7, "residents": 22, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 70, "repvalue": 700000, "xcoord": 85.308626883968216, "ycoord": 27.625709694370983 }, "geometry": { "type": "Point", "coordinates": [ 85.308626883968216, 27.625709694370983 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1470, "nhouse": 11, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 72, "repvalue": 1008000, "xcoord": 85.305022890152557, "ycoord": 27.624049296737404 }, "geometry": { "type": "Point", "coordinates": [ 85.305022890152557, 27.624049296737404 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1471, "nhouse": 4, "residents": 20, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 74, "repvalue": 444000, "xcoord": 85.308549316618439, "ycoord": 27.61686608504365 }, "geometry": { "type": "Point", "coordinates": [ 85.308549316618439, 27.61686608504365 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1472, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 44, "repvalue": 264000, "xcoord": 85.30466334124948, "ycoord": 27.61967111712319 }, "geometry": { "type": "Point", "coordinates": [ 85.30466334124948, 27.61967111712319 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1473, "nhouse": 7, "residents": 22, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 62, "repvalue": 620000, "xcoord": 85.307465991925184, "ycoord": 27.624839790988915 }, "geometry": { "type": "Point", "coordinates": [ 85.307465991925184, 27.624839790988915 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1474, "nhouse": 2, "residents": 5, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 49, "repvalue": 196000, "xcoord": 85.308487951448356, "ycoord": 27.620858798841098 }, "geometry": { "type": "Point", "coordinates": [ 85.308487951448356, 27.620858798841098 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1475, "nhouse": 3, "residents": 15, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 56, "repvalue": 336000, "xcoord": 85.304731991498912, "ycoord": 27.62214409593598 }, "geometry": { "type": "Point", "coordinates": [ 85.304731991498912, 27.62214409593598 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1476, "nhouse": 13, "residents": 57, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 87, "repvalue": 1218000, "xcoord": 85.30388109424139, "ycoord": 27.621943528690402 }, "geometry": { "type": "Point", "coordinates": [ 85.30388109424139, 27.621943528690402 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1477, "nhouse": 24, "residents": 98, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 67, "repvalue": 2144000, "xcoord": 85.304220323400472, "ycoord": 27.620711606948056 }, "geometry": { "type": "Point", "coordinates": [ 85.304220323400472, 27.620711606948056 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1478, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 78, "repvalue": 312000, "xcoord": 85.306796402148976, "ycoord": 27.61979225398591 }, "geometry": { "type": "Point", "coordinates": [ 85.306796402148976, 27.61979225398591 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1479, "nhouse": 3, "residents": 15, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 84, "repvalue": 336000, "xcoord": 85.30795871250659, "ycoord": 27.627508108138816 }, "geometry": { "type": "Point", "coordinates": [ 85.30795871250659, 27.627508108138816 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1480, "nhouse": 5, "residents": 22, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 88, "repvalue": 528000, "xcoord": 85.306180917144445, "ycoord": 27.618168339248228 }, "geometry": { "type": "Point", "coordinates": [ 85.306180917144445, 27.618168339248228 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1481, "nhouse": 6, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 53, "repvalue": 530000, "xcoord": 85.304895828385796, "ycoord": 27.618437888209666 }, "geometry": { "type": "Point", "coordinates": [ 85.304895828385796, 27.618437888209666 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1482, "nhouse": 14, "residents": 60, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 49, "repvalue": 1274000, "xcoord": 85.307445532593832, "ycoord": 27.619229682008427 }, "geometry": { "type": "Point", "coordinates": [ 85.307445532593832, 27.619229682008427 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1483, "nhouse": 8, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 54, "repvalue": 756000, "xcoord": 85.307995238610118, "ycoord": 27.618190481884042 }, "geometry": { "type": "Point", "coordinates": [ 85.307995238610118, 27.618190481884042 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1484, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 69, "repvalue": 276000, "xcoord": 85.304954234586276, "ycoord": 27.621576318371648 }, "geometry": { "type": "Point", "coordinates": [ 85.304954234586276, 27.621576318371648 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1485, "nhouse": 13, "residents": 57, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 85, "repvalue": 1190000, "xcoord": 85.305302234097255, "ycoord": 27.619774006716412 }, "geometry": { "type": "Point", "coordinates": [ 85.305302234097255, 27.619774006716412 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1486, "nhouse": 11, "residents": 51, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 61, "repvalue": 976000, "xcoord": 85.309612302650748, "ycoord": 27.624105307959866 }, "geometry": { "type": "Point", "coordinates": [ 85.309612302650748, 27.624105307959866 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1487, "nhouse": 16, "residents": 50, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 61, "repvalue": 1464000, "xcoord": 85.306599039901002, "ycoord": 27.618743938565885 }, "geometry": { "type": "Point", "coordinates": [ 85.306599039901002, 27.618743938565885 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1488, "nhouse": 6, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 45, "repvalue": 540000, "xcoord": 85.308299339463346, "ycoord": 27.619240097611041 }, "geometry": { "type": "Point", "coordinates": [ 85.308299339463346, 27.619240097611041 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1489, "nhouse": 4, "residents": 20, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 68, "repvalue": 408000, "xcoord": 85.30950119030075, "ycoord": 27.624389200863089 }, "geometry": { "type": "Point", "coordinates": [ 85.30950119030075, 27.624389200863089 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1490, "nhouse": 9, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 72, "repvalue": 864000, "xcoord": 85.306806586019107, "ycoord": 27.626067812201658 }, "geometry": { "type": "Point", "coordinates": [ 85.306806586019107, 27.626067812201658 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1491, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 75, "repvalue": 150000, "xcoord": 85.305496513865961, "ycoord": 27.627953456595154 }, "geometry": { "type": "Point", "coordinates": [ 85.305496513865961, 27.627953456595154 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1492, "nhouse": 11, "residents": 50, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 85, "repvalue": 1020000, "xcoord": 85.30997921680175, "ycoord": 27.621067141774375 }, "geometry": { "type": "Point", "coordinates": [ 85.30997921680175, 27.621067141774375 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1493, "nhouse": 10, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 78, "repvalue": 936000, "xcoord": 85.309471864377912, "ycoord": 27.619349475146915 }, "geometry": { "type": "Point", "coordinates": [ 85.309471864377912, 27.619349475146915 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1494, "nhouse": 27, "residents": 114, "specialfac": 0, "expstr": "RCi+HC+19s+Res", "fptarea": 66, "repvalue": 2508000, "xcoord": 85.307588804510871, "ycoord": 27.616854369775968 }, "geometry": { "type": "Point", "coordinates": [ 85.307588804510871, 27.616854369775968 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1495, "nhouse": 22, "residents": 87, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 72, "repvalue": 2016000, "xcoord": 85.304848971033081, "ycoord": 27.621479949637283 }, "geometry": { "type": "Point", "coordinates": [ 85.304848971033081, 27.621479949637283 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1496, "nhouse": 7, "residents": 22, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 56, "repvalue": 672000, "xcoord": 85.307338785691059, "ycoord": 27.626169390961735 }, "geometry": { "type": "Point", "coordinates": [ 85.307338785691059, 27.626169390961735 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1497, "nhouse": 7, "residents": 39, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 86, "repvalue": 688000, "xcoord": 85.307376809512093, "ycoord": 27.623697714640159 }, "geometry": { "type": "Point", "coordinates": [ 85.307376809512093, 27.623697714640159 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1498, "nhouse": 7, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 87, "repvalue": 696000, "xcoord": 85.309590271734166, "ycoord": 27.618590258509574 }, "geometry": { "type": "Point", "coordinates": [ 85.309590271734166, 27.618590258509574 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1499, "nhouse": 7, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 57, "repvalue": 684000, "xcoord": 85.303721854684326, "ycoord": 27.618423536987319 }, "geometry": { "type": "Point", "coordinates": [ 85.303721854684326, 27.618423536987319 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1500, "nhouse": 14, "residents": 45, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 83, "repvalue": 1328000, "xcoord": 85.30660775267863, "ycoord": 27.625114561629719 }, "geometry": { "type": "Point", "coordinates": [ 85.30660775267863, 27.625114561629719 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1501, "nhouse": 6, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 58, "repvalue": 580000, "xcoord": 85.309217516404644, "ycoord": 27.622008683025467 }, "geometry": { "type": "Point", "coordinates": [ 85.309217516404644, 27.622008683025467 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1502, "nhouse": 15, "residents": 59, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 47, "repvalue": 1410000, "xcoord": 85.308147307349088, "ycoord": 27.622185797671278 }, "geometry": { "type": "Point", "coordinates": [ 85.308147307349088, 27.622185797671278 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1503, "nhouse": 7, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 48, "repvalue": 672000, "xcoord": 85.305996635762952, "ycoord": 27.62320545275146 }, "geometry": { "type": "Point", "coordinates": [ 85.305996635762952, 27.62320545275146 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1504, "nhouse": 17, "residents": 62, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 47, "repvalue": 1598000, "xcoord": 85.306477608981226, "ycoord": 27.626634289103205 }, "geometry": { "type": "Point", "coordinates": [ 85.306477608981226, 27.626634289103205 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1505, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 77, "repvalue": 308000, "xcoord": 85.307718930492371, "ycoord": 27.622275654077768 }, "geometry": { "type": "Point", "coordinates": [ 85.307718930492371, 27.622275654077768 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1506, "nhouse": 19, "residents": 70, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 53, "repvalue": 1696000, "xcoord": 85.30908303207174, "ycoord": 27.623813609105834 }, "geometry": { "type": "Point", "coordinates": [ 85.30908303207174, 27.623813609105834 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1507, "nhouse": 11, "residents": 49, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 87, "repvalue": 1044000, "xcoord": 85.307986491025417, "ycoord": 27.625701882994743 }, "geometry": { "type": "Point", "coordinates": [ 85.307986491025417, 27.625701882994743 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1508, "nhouse": 23, "residents": 102, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 68, "repvalue": 2176000, "xcoord": 85.304199814066706, "ycoord": 27.622042508093323 }, "geometry": { "type": "Point", "coordinates": [ 85.304199814066706, 27.622042508093323 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1509, "nhouse": 9, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 73, "repvalue": 876000, "xcoord": 85.303489354538286, "ycoord": 27.619656763345819 }, "geometry": { "type": "Point", "coordinates": [ 85.303489354538286, 27.619656763345819 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1510, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 45, "repvalue": 180000, "xcoord": 85.305908932552853, "ycoord": 27.621968311500272 }, "geometry": { "type": "Point", "coordinates": [ 85.305908932552853, 27.621968311500272 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1511, "nhouse": 8, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 61, "repvalue": 732000, "xcoord": 85.305442491356473, "ycoord": 27.624529835426461 }, "geometry": { "type": "Point", "coordinates": [ 85.305442491356473, 27.624529835426461 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1512, "nhouse": 1, "residents": 1, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 48, "repvalue": 96000, "xcoord": 85.304527322774064, "ycoord": 27.621571100529636 }, "geometry": { "type": "Point", "coordinates": [ 85.304527322774064, 27.621571100529636 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1513, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 54, "repvalue": 108000, "xcoord": 85.305389930106628, "ycoord": 27.621011148341434 }, "geometry": { "type": "Point", "coordinates": [ 85.305389930106628, 27.621011148341434 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1514, "nhouse": 11, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 78, "repvalue": 1092000, "xcoord": 85.305316872834624, "ycoord": 27.6188233622143 }, "geometry": { "type": "Point", "coordinates": [ 85.305316872834624, 27.6188233622143 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1515, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 66, "repvalue": 264000, "xcoord": 85.309890009053802, "ycoord": 27.619925065418037 }, "geometry": { "type": "Point", "coordinates": [ 85.309890009053802, 27.619925065418037 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1516, "nhouse": 8, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 60, "repvalue": 720000, "xcoord": 85.306597510706794, "ycoord": 27.625780012637474 }, "geometry": { "type": "Point", "coordinates": [ 85.306597510706794, 27.625780012637474 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1517, "nhouse": 15, "residents": 52, "specialfac": 0, "expstr": "RCi+HC+9s+Res", "fptarea": 77, "repvalue": 1386000, "xcoord": 85.305110742232742, "ycoord": 27.618345432003601 }, "geometry": { "type": "Point", "coordinates": [ 85.305110742232742, 27.618345432003601 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1518, "nhouse": 12, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 80, "repvalue": 1120000, "xcoord": 85.307701386243025, "ycoord": 27.623416428316055 }, "geometry": { "type": "Point", "coordinates": [ 85.307701386243025, 27.623416428316055 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1519, "nhouse": 13, "residents": 48, "specialfac": 0, "expstr": "RCi+HC+9s+Res", "fptarea": 68, "repvalue": 1224000, "xcoord": 85.305983562850315, "ycoord": 27.61712002311074 }, "geometry": { "type": "Point", "coordinates": [ 85.305983562850315, 27.61712002311074 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1520, "nhouse": 14, "residents": 63, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 82, "repvalue": 1312000, "xcoord": 85.305497978112356, "ycoord": 27.627858392253628 }, "geometry": { "type": "Point", "coordinates": [ 85.305497978112356, 27.627858392253628 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1521, "nhouse": 9, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 73, "repvalue": 876000, "xcoord": 85.30886664918313, "ycoord": 27.62400113563238 }, "geometry": { "type": "Point", "coordinates": [ 85.30886664918313, 27.62400113563238 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1522, "nhouse": 27, "residents": 111, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 84, "repvalue": 2520000, "xcoord": 85.305844645949009, "ycoord": 27.619210138602206 }, "geometry": { "type": "Point", "coordinates": [ 85.305844645949009, 27.619210138602206 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1523, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 47, "repvalue": 188000, "xcoord": 85.306066777357799, "ycoord": 27.625583366740528 }, "geometry": { "type": "Point", "coordinates": [ 85.306066777357799, 27.625583366740528 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1524, "nhouse": 12, "residents": 46, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 76, "repvalue": 1064000, "xcoord": 85.304913230755446, "ycoord": 27.624238121074395 }, "geometry": { "type": "Point", "coordinates": [ 85.304913230755446, 27.624238121074395 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1525, "nhouse": 5, "residents": 24, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 84, "repvalue": 504000, "xcoord": 85.303976100842121, "ycoord": 27.622705348533454 }, "geometry": { "type": "Point", "coordinates": [ 85.303976100842121, 27.622705348533454 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1526, "nhouse": 7, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 46, "repvalue": 644000, "xcoord": 85.304984983769174, "ycoord": 27.619579965637293 }, "geometry": { "type": "Point", "coordinates": [ 85.304984983769174, 27.619579965637293 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1527, "nhouse": 11, "residents": 43, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 48, "repvalue": 1056000, "xcoord": 85.309194144816985, "ycoord": 27.623529716537469 }, "geometry": { "type": "Point", "coordinates": [ 85.309194144816985, 27.623529716537469 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1528, "nhouse": 2, "residents": 5, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 57, "repvalue": 228000, "xcoord": 85.309264254085477, "ycoord": 27.618966614945933 }, "geometry": { "type": "Point", "coordinates": [ 85.309264254085477, 27.618966614945933 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1529, "nhouse": 8, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 54, "repvalue": 756000, "xcoord": 85.30899237213589, "ycoord": 27.622766597506569 }, "geometry": { "type": "Point", "coordinates": [ 85.30899237213589, 27.622766597506569 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1530, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 47, "repvalue": 188000, "xcoord": 85.303957052153805, "ycoord": 27.623941184808388 }, "geometry": { "type": "Point", "coordinates": [ 85.303957052153805, 27.623941184808388 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1531, "nhouse": 6, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 51, "repvalue": 612000, "xcoord": 85.308979223670221, "ycoord": 27.623622178707237 }, "geometry": { "type": "Point", "coordinates": [ 85.308979223670221, 27.623622178707237 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1532, "nhouse": 9, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 72, "repvalue": 864000, "xcoord": 85.303949954087031, "ycoord": 27.617475503026082 }, "geometry": { "type": "Point", "coordinates": [ 85.303949954087031, 27.617475503026082 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1533, "nhouse": 5, "residents": 14, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 79, "repvalue": 474000, "xcoord": 85.305131237336653, "ycoord": 27.617014529520308 }, "geometry": { "type": "Point", "coordinates": [ 85.305131237336653, 27.617014529520308 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1534, "nhouse": 3, "residents": 17, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 74, "repvalue": 296000, "xcoord": 85.306284631446786, "ycoord": 27.625300780562611 }, "geometry": { "type": "Point", "coordinates": [ 85.306284631446786, 27.625300780562611 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1535, "nhouse": 4, "residents": 16, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 59, "repvalue": 354000, "xcoord": 85.30814438413023, "ycoord": 27.622375926769362 }, "geometry": { "type": "Point", "coordinates": [ 85.30814438413023, 27.622375926769362 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1536, "nhouse": 8, "residents": 22, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 51, "repvalue": 714000, "xcoord": 85.30406964325833, "ycoord": 27.623562232621751 }, "geometry": { "type": "Point", "coordinates": [ 85.30406964325833, 27.623562232621751 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1537, "nhouse": 3, "residents": 17, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 69, "repvalue": 276000, "xcoord": 85.307606353360626, "ycoord": 27.622654609917319 }, "geometry": { "type": "Point", "coordinates": [ 85.307606353360626, 27.622654609917319 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1538, "nhouse": 9, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 44, "repvalue": 880000, "xcoord": 85.306680832778952, "ycoord": 27.627302346516416 }, "geometry": { "type": "Point", "coordinates": [ 85.306680832778952, 27.627302346516416 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1539, "nhouse": 7, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 66, "repvalue": 660000, "xcoord": 85.307506935068332, "ycoord": 27.622177984995552 }, "geometry": { "type": "Point", "coordinates": [ 85.307506935068332, 27.622177984995552 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1540, "nhouse": 26, "residents": 90, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 65, "repvalue": 2340000, "xcoord": 85.30805373357704, "ycoord": 27.621328914801438 }, "geometry": { "type": "Point", "coordinates": [ 85.30805373357704, 27.621328914801438 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1541, "nhouse": 29, "residents": 119, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 76, "repvalue": 2584000, "xcoord": 85.308957223230223, "ycoord": 27.618107130212618 }, "geometry": { "type": "Point", "coordinates": [ 85.308957223230223, 27.618107130212618 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1542, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 53, "repvalue": 212000, "xcoord": 85.307411904126283, "ycoord": 27.621416166441616 }, "geometry": { "type": "Point", "coordinates": [ 85.307411904126283, 27.621416166441616 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1543, "nhouse": 8, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 74, "repvalue": 740000, "xcoord": 85.306309508286176, "ycoord": 27.623684685291586 }, "geometry": { "type": "Point", "coordinates": [ 85.306309508286176, 27.623684685291586 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1544, "nhouse": 8, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 53, "repvalue": 742000, "xcoord": 85.308328611903349, "ycoord": 27.624279821247036 }, "geometry": { "type": "Point", "coordinates": [ 85.308328611903349, 27.624279821247036 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1545, "nhouse": 24, "residents": 98, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 86, "repvalue": 2236000, "xcoord": 85.306158873737232, "ycoord": 27.626535314311376 }, "geometry": { "type": "Point", "coordinates": [ 85.306158873737232, 27.626535314311376 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1546, "nhouse": 21, "residents": 74, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 75, "repvalue": 1950000, "xcoord": 85.305173547029753, "ycoord": 27.621198669141489 }, "geometry": { "type": "Point", "coordinates": [ 85.305173547029753, 27.621198669141489 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1547, "nhouse": 25, "residents": 99, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 69, "repvalue": 2346000, "xcoord": 85.303885490024342, "ycoord": 27.621658335653631 }, "geometry": { "type": "Point", "coordinates": [ 85.303885490024342, 27.621658335653631 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1548, "nhouse": 25, "residents": 93, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 66, "repvalue": 2244000, "xcoord": 85.309270095780491, "ycoord": 27.618586356337037 }, "geometry": { "type": "Point", "coordinates": [ 85.309270095780491, 27.618586356337037 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1549, "nhouse": 6, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 77, "repvalue": 616000, "xcoord": 85.30648199891057, "ycoord": 27.626349095875248 }, "geometry": { "type": "Point", "coordinates": [ 85.30648199891057, 27.626349095875248 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1550, "nhouse": 15, "residents": 56, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 54, "repvalue": 1404000, "xcoord": 85.305433844201602, "ycoord": 27.618159214801551 }, "geometry": { "type": "Point", "coordinates": [ 85.305433844201602, 27.618159214801551 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1551, "nhouse": 8, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 56, "repvalue": 784000, "xcoord": 85.30874085191148, "ycoord": 27.618294657182815 }, "geometry": { "type": "Point", "coordinates": [ 85.30874085191148, 27.618294657182815 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1552, "nhouse": 25, "residents": 98, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 83, "repvalue": 2324000, "xcoord": 85.306543451148883, "ycoord": 27.622356389384791 }, "geometry": { "type": "Point", "coordinates": [ 85.306543451148883, 27.622356389384791 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1553, "nhouse": 2, "residents": 10, "specialfac": 0, "expstr": "BrCri+MC+2s+Res", "fptarea": 53, "repvalue": 212000, "xcoord": 85.308542073468629, "ycoord": 27.62428242471799 }, "geometry": { "type": "Point", "coordinates": [ 85.308542073468629, 27.62428242471799 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1554, "nhouse": 9, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 62, "repvalue": 868000, "xcoord": 85.30615604424051, "ycoord": 27.619784435696477 }, "geometry": { "type": "Point", "coordinates": [ 85.30615604424051, 27.619784435696477 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1555, "nhouse": 20, "residents": 89, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 66, "repvalue": 1848000, "xcoord": 85.307558100208766, "ycoord": 27.625791738242093 }, "geometry": { "type": "Point", "coordinates": [ 85.307558100208766, 27.625791738242093 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1556, "nhouse": 14, "residents": 60, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 85, "repvalue": 1360000, "xcoord": 85.309324245030538, "ycoord": 27.622009984019989 }, "geometry": { "type": "Point", "coordinates": [ 85.309324245030538, 27.622009984019989 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1557, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 87, "repvalue": 348000, "xcoord": 85.303986357325755, "ycoord": 27.622039898135313 }, "geometry": { "type": "Point", "coordinates": [ 85.303986357325755, 27.622039898135313 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1558, "nhouse": 2, "residents": 10, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 58, "repvalue": 232000, "xcoord": 85.30528743878736, "ycoord": 27.627665655122982 }, "geometry": { "type": "Point", "coordinates": [ 85.30528743878736, 27.627665655122982 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1559, "nhouse": 19, "residents": 80, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 49, "repvalue": 1764000, "xcoord": 85.307157524028412, "ycoord": 27.6171343545765 }, "geometry": { "type": "Point", "coordinates": [ 85.307157524028412, 27.6171343545765 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1560, "nhouse": 10, "residents": 43, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 65, "repvalue": 910000, "xcoord": 85.309451419721768, "ycoord": 27.62068038017437 }, "geometry": { "type": "Point", "coordinates": [ 85.309451419721768, 27.62068038017437 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1561, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 68, "repvalue": 272000, "xcoord": 85.308004007395866, "ycoord": 27.617620094273246 }, "geometry": { "type": "Point", "coordinates": [ 85.308004007395866, 27.617620094273246 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1562, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 55, "repvalue": 330000, "xcoord": 85.305519940947747, "ycoord": 27.626432426965792 }, "geometry": { "type": "Point", "coordinates": [ 85.305519940947747, 27.626432426965792 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1563, "nhouse": 7, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 46, "repvalue": 644000, "xcoord": 85.309344692378019, "ycoord": 27.620679079335126 }, "geometry": { "type": "Point", "coordinates": [ 85.309344692378019, 27.620679079335126 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1564, "nhouse": 6, "residents": 24, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 69, "repvalue": 552000, "xcoord": 85.307480615120895, "ycoord": 27.623889146114998 }, "geometry": { "type": "Point", "coordinates": [ 85.307480615120895, 27.623889146114998 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1565, "nhouse": 8, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 47, "repvalue": 752000, "xcoord": 85.306838815128287, "ycoord": 27.617035382423396 }, "geometry": { "type": "Point", "coordinates": [ 85.306838815128287, 27.617035382423396 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1566, "nhouse": 7, "residents": 23, "specialfac": 0, "expstr": "BrCfl+MC+4s+Res", "fptarea": 83, "repvalue": 664000, "xcoord": 85.308957308272767, "ycoord": 27.625048147127622 }, "geometry": { "type": "Point", "coordinates": [ 85.308957308272767, 27.625048147127622 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1567, "nhouse": 14, "residents": 61, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 80, "repvalue": 1280000, "xcoord": 85.304816752342504, "ycoord": 27.623571366052186 }, "geometry": { "type": "Point", "coordinates": [ 85.304816752342504, 27.623571366052186 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1568, "nhouse": 8, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 53, "repvalue": 742000, "xcoord": 85.305189651797548, "ycoord": 27.620152960466111 }, "geometry": { "type": "Point", "coordinates": [ 85.305189651797548, 27.620152960466111 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1569, "nhouse": 3, "residents": 17, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 83, "repvalue": 332000, "xcoord": 85.308235035850473, "ycoord": 27.623422938604076 }, "geometry": { "type": "Point", "coordinates": [ 85.308235035850473, 27.623422938604076 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1570, "nhouse": 18, "residents": 70, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 60, "repvalue": 1680000, "xcoord": 85.303828579530403, "ycoord": 27.618424842054065 }, "geometry": { "type": "Point", "coordinates": [ 85.303828579530403, 27.618424842054065 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1571, "nhouse": 2, "residents": 10, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 60, "repvalue": 240000, "xcoord": 85.305977609357697, "ycoord": 27.624441290232365 }, "geometry": { "type": "Point", "coordinates": [ 85.305977609357697, 27.624441290232365 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1572, "nhouse": 11, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 84, "repvalue": 1008000, "xcoord": 85.306929410014305, "ycoord": 27.625023406342216 }, "geometry": { "type": "Point", "coordinates": [ 85.306929410014305, 27.625023406342216 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1573, "nhouse": 9, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+9s+Res", "fptarea": 45, "repvalue": 810000, "xcoord": 85.30673209146255, "ycoord": 27.617034079732168 }, "geometry": { "type": "Point", "coordinates": [ 85.30673209146255, 27.617034079732168 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1574, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 61, "repvalue": 122000, "xcoord": 85.304267196596768, "ycoord": 27.617669546175627 }, "geometry": { "type": "Point", "coordinates": [ 85.304267196596768, 27.617669546175627 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1575, "nhouse": 12, "residents": 48, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 79, "repvalue": 1106000, "xcoord": 85.304756887801133, "ycoord": 27.620528001230578 }, "geometry": { "type": "Point", "coordinates": [ 85.304756887801133, 27.620528001230578 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1576, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 77, "repvalue": 308000, "xcoord": 85.304487967247155, "ycoord": 27.617196833147503 }, "geometry": { "type": "Point", "coordinates": [ 85.304487967247155, 27.617196833147503 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1577, "nhouse": 1, "residents": 1, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 77, "repvalue": 154000, "xcoord": 85.310014253561761, "ycoord": 27.618785589638218 }, "geometry": { "type": "Point", "coordinates": [ 85.310014253561761, 27.618785589638218 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1578, "nhouse": 7, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 46, "repvalue": 644000, "xcoord": 85.305917595066717, "ycoord": 27.628338929996438 }, "geometry": { "type": "Point", "coordinates": [ 85.305917595066717, 27.628338929996438 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1579, "nhouse": 7, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 66, "repvalue": 660000, "xcoord": 85.308115115719971, "ycoord": 27.617336202171881 }, "geometry": { "type": "Point", "coordinates": [ 85.308115115719971, 27.617336202171881 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1580, "nhouse": 30, "residents": 140, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 80, "repvalue": 2720000, "xcoord": 85.305224636817385, "ycoord": 27.624812420282531 }, "geometry": { "type": "Point", "coordinates": [ 85.305224636817385, 27.624812420282531 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1581, "nhouse": 8, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 65, "repvalue": 780000, "xcoord": 85.306265606583707, "ycoord": 27.626536617854725 }, "geometry": { "type": "Point", "coordinates": [ 85.306265606583707, 27.626536617854725 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1582, "nhouse": 5, "residents": 17, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 48, "repvalue": 480000, "xcoord": 85.30709025784482, "ycoord": 27.621507323384044 }, "geometry": { "type": "Point", "coordinates": [ 85.30709025784482, 27.621507323384044 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1583, "nhouse": 12, "residents": 64, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 84, "repvalue": 1176000, "xcoord": 85.305696805361634, "ycoord": 27.628811643848028 }, "geometry": { "type": "Point", "coordinates": [ 85.305696805361634, 27.628811643848028 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1584, "nhouse": 23, "residents": 99, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 66, "repvalue": 2112000, "xcoord": 85.307875359270184, "ycoord": 27.619044761308636 }, "geometry": { "type": "Point", "coordinates": [ 85.307875359270184, 27.619044761308636 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1585, "nhouse": 5, "residents": 20, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 64, "repvalue": 512000, "xcoord": 85.305131084846096, "ycoord": 27.623955536670174 }, "geometry": { "type": "Point", "coordinates": [ 85.305131084846096, 27.623955536670174 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1586, "nhouse": 19, "residents": 82, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 81, "repvalue": 1782000, "xcoord": 85.30706539476725, "ycoord": 27.623123419815997 }, "geometry": { "type": "Point", "coordinates": [ 85.30706539476725, 27.623123419815997 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1587, "nhouse": 7, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 49, "repvalue": 686000, "xcoord": 85.305531653800216, "ycoord": 27.625671912019133 }, "geometry": { "type": "Point", "coordinates": [ 85.305531653800216, 27.625671912019133 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1588, "nhouse": 6, "residents": 14, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 54, "repvalue": 540000, "xcoord": 85.308126844215749, "ycoord": 27.623516701242448 }, "geometry": { "type": "Point", "coordinates": [ 85.308126844215749, 27.623516701242448 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1589, "nhouse": 23, "residents": 89, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 67, "repvalue": 2144000, "xcoord": 85.308378301334798, "ycoord": 27.621047626410519 }, "geometry": { "type": "Point", "coordinates": [ 85.308378301334798, 27.621047626410519 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1590, "nhouse": 7, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 58, "repvalue": 696000, "xcoord": 85.306391440873, "ycoord": 27.618361074530192 }, "geometry": { "type": "Point", "coordinates": [ 85.306391440873, 27.618361074530192 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1591, "nhouse": 2, "residents": 14, "specialfac": 0, "expstr": "BrCfl+MC+2s+Res", "fptarea": 53, "repvalue": 212000, "xcoord": 85.309508369205545, "ycoord": 27.616972858356508 }, "geometry": { "type": "Point", "coordinates": [ 85.309508369205545, 27.616972858356508 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1592, "nhouse": 2, "residents": 10, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 46, "repvalue": 184000, "xcoord": 85.307012736709737, "ycoord": 27.626545740360495 }, "geometry": { "type": "Point", "coordinates": [ 85.307012736709737, 27.626545740360495 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1593, "nhouse": 5, "residents": 23, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 61, "repvalue": 488000, "xcoord": 85.305021425732477, "ycoord": 27.624144361107703 }, "geometry": { "type": "Point", "coordinates": [ 85.305021425732477, 27.624144361107703 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1594, "nhouse": 20, "residents": 67, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 59, "repvalue": 1888000, "xcoord": 85.307999623035201, "ycoord": 27.617905288084831 }, "geometry": { "type": "Point", "coordinates": [ 85.307999623035201, 27.617905288084831 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1595, "nhouse": 9, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 82, "repvalue": 820000, "xcoord": 85.30572755051621, "ycoord": 27.626815292426979 }, "geometry": { "type": "Point", "coordinates": [ 85.30572755051621, 27.626815292426979 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1596, "nhouse": 29, "residents": 104, "specialfac": 0, "expstr": "RCi+HC+19s+Res", "fptarea": 71, "repvalue": 2698000, "xcoord": 85.306493705073464, "ycoord": 27.625588580540217 }, "geometry": { "type": "Point", "coordinates": [ 85.306493705073464, 27.625588580540217 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1597, "nhouse": 11, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 72, "repvalue": 1008000, "xcoord": 85.307328547681124, "ycoord": 27.626834842120317 }, "geometry": { "type": "Point", "coordinates": [ 85.307328547681124, 27.626834842120317 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1598, "nhouse": 1, "residents": 1, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 67, "repvalue": 134000, "xcoord": 85.304009799396468, "ycoord": 27.620518868400911 }, "geometry": { "type": "Point", "coordinates": [ 85.304009799396468, 27.620518868400911 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1599, "nhouse": 21, "residents": 74, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 76, "repvalue": 1976000, "xcoord": 85.308751151408956, "ycoord": 27.624570221509284 }, "geometry": { "type": "Point", "coordinates": [ 85.308751151408956, 27.624570221509284 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1600, "nhouse": 6, "residents": 26, "specialfac": 0, "expstr": "BrCri+MC+4s+Res", "fptarea": 79, "repvalue": 632000, "xcoord": 85.308607828832351, "ycoord": 27.620004518976121 }, "geometry": { "type": "Point", "coordinates": [ 85.308607828832351, 27.620004518976121 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1601, "nhouse": 3, "residents": 8, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 50, "repvalue": 300000, "xcoord": 85.305907347519891, "ycoord": 27.629004380456891 }, "geometry": { "type": "Point", "coordinates": [ 85.305907347519891, 27.629004380456891 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1602, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 56, "repvalue": 336000, "xcoord": 85.306841739939259, "ycoord": 27.616845253307513 }, "geometry": { "type": "Point", "coordinates": [ 85.306841739939259, 27.616845253307513 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1603, "nhouse": 4, "residents": 12, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 65, "repvalue": 390000, "xcoord": 85.309144383352518, "ycoord": 27.619820895779291 }, "geometry": { "type": "Point", "coordinates": [ 85.309144383352518, 27.619820895779291 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1604, "nhouse": 17, "residents": 74, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 55, "repvalue": 1540000, "xcoord": 85.306485000413474, "ycoord": 27.619217958179679 }, "geometry": { "type": "Point", "coordinates": [ 85.306485000413474, 27.619217958179679 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1605, "nhouse": 6, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 45, "repvalue": 540000, "xcoord": 85.305449811686501, "ycoord": 27.624054513483838 }, "geometry": { "type": "Point", "coordinates": [ 85.305449811686501, 27.624054513483838 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1606, "nhouse": 19, "residents": 66, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 62, "repvalue": 1736000, "xcoord": 85.307439684436829, "ycoord": 27.619609940222951 }, "geometry": { "type": "Point", "coordinates": [ 85.307439684436829, 27.619609940222951 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1607, "nhouse": 6, "residents": 29, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 51, "repvalue": 612000, "xcoord": 85.307129708762645, "ycoord": 27.625881592133229 }, "geometry": { "type": "Point", "coordinates": [ 85.307129708762645, 27.625881592133229 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1608, "nhouse": 1, "residents": 7, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 63, "repvalue": 126000, "xcoord": 85.308916322227887, "ycoord": 27.620768939766073 }, "geometry": { "type": "Point", "coordinates": [ 85.308916322227887, 27.620768939766073 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1609, "nhouse": 8, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 64, "repvalue": 768000, "xcoord": 85.304831397632242, "ycoord": 27.622620722309712 }, "geometry": { "type": "Point", "coordinates": [ 85.304831397632242, 27.622620722309712 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1610, "nhouse": 10, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 60, "repvalue": 960000, "xcoord": 85.308698484299399, "ycoord": 27.62105153096007 }, "geometry": { "type": "Point", "coordinates": [ 85.308698484299399, 27.62105153096007 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1611, "nhouse": 14, "residents": 58, "specialfac": 0, "expstr": "RCi+HC+9s+Res", "fptarea": 74, "repvalue": 1332000, "xcoord": 85.305594462974994, "ycoord": 27.628525146761245 }, "geometry": { "type": "Point", "coordinates": [ 85.305594462974994, 27.628525146761245 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1612, "nhouse": 8, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 55, "repvalue": 770000, "xcoord": 85.307656060572398, "ycoord": 27.619422415532256 }, "geometry": { "type": "Point", "coordinates": [ 85.307656060572398, 27.619422415532256 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1613, "nhouse": 11, "residents": 45, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 78, "repvalue": 1092000, "xcoord": 85.305992245161576, "ycoord": 27.62349064603691 }, "geometry": { "type": "Point", "coordinates": [ 85.305992245161576, 27.62349064603691 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1614, "nhouse": 15, "residents": 75, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 70, "repvalue": 1400000, "xcoord": 85.306439648506711, "ycoord": 27.6221649573056 }, "geometry": { "type": "Point", "coordinates": [ 85.306439648506711, 27.6221649573056 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1615, "nhouse": 14, "residents": 52, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 66, "repvalue": 1320000, "xcoord": 85.308077142192616, "ycoord": 27.626748894507934 }, "geometry": { "type": "Point", "coordinates": [ 85.308077142192616, 27.626748894507934 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1616, "nhouse": 6, "residents": 24, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 73, "repvalue": 584000, "xcoord": 85.305585819773384, "ycoord": 27.622154529246284 }, "geometry": { "type": "Point", "coordinates": [ 85.305585819773384, 27.622154529246284 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1617, "nhouse": 5, "residents": 17, "specialfac": 0, "expstr": "BrCfl+MC+3s+Res", "fptarea": 84, "repvalue": 504000, "xcoord": 85.304078434386483, "ycoord": 27.622991846613093 }, "geometry": { "type": "Point", "coordinates": [ 85.304078434386483, 27.622991846613093 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1618, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 82, "repvalue": 328000, "xcoord": 85.307305145197489, "ycoord": 27.628355873086964 }, "geometry": { "type": "Point", "coordinates": [ 85.307305145197489, 27.628355873086964 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1619, "nhouse": 27, "residents": 106, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 74, "repvalue": 2516000, "xcoord": 85.307107767298987, "ycoord": 27.627307558723853 }, "geometry": { "type": "Point", "coordinates": [ 85.307107767298987, 27.627307558723853 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1620, "nhouse": 16, "residents": 64, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 55, "repvalue": 1430000, "xcoord": 85.307080020357716, "ycoord": 27.622172774904133 }, "geometry": { "type": "Point", "coordinates": [ 85.307080020357716, 27.622172774904133 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1621, "nhouse": 21, "residents": 92, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 77, "repvalue": 2002000, "xcoord": 85.309286267665101, "ycoord": 27.624481663434331 }, "geometry": { "type": "Point", "coordinates": [ 85.309286267665101, 27.624481663434331 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1622, "nhouse": 21, "residents": 84, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 82, "repvalue": 1968000, "xcoord": 85.305644366540733, "ycoord": 27.618351951158598 }, "geometry": { "type": "Point", "coordinates": [ 85.305644366540733, 27.618351951158598 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1623, "nhouse": 9, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 53, "repvalue": 848000, "xcoord": 85.306603428046031, "ycoord": 27.61845874499565 }, "geometry": { "type": "Point", "coordinates": [ 85.306603428046031, 27.61845874499565 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1624, "nhouse": 2, "residents": 5, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 48, "repvalue": 192000, "xcoord": 85.304036169530121, "ycoord": 27.618807709529026 }, "geometry": { "type": "Point", "coordinates": [ 85.304036169530121, 27.618807709529026 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1625, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 51, "repvalue": 102000, "xcoord": 85.30398928768507, "ycoord": 27.621849769437762 }, "geometry": { "type": "Point", "coordinates": [ 85.30398928768507, 27.621849769437762 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1626, "nhouse": 6, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 44, "repvalue": 616000, "xcoord": 85.308514305741056, "ycoord": 27.626088650751083 }, "geometry": { "type": "Point", "coordinates": [ 85.308514305741056, 27.626088650751083 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1627, "nhouse": 6, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 45, "repvalue": 540000, "xcoord": 85.308432365726119, "ycoord": 27.617530236106656 }, "geometry": { "type": "Point", "coordinates": [ 85.308432365726119, 27.617530236106656 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1628, "nhouse": 11, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 44, "repvalue": 1056000, "xcoord": 85.308183845168628, "ycoord": 27.619809183481269 }, "geometry": { "type": "Point", "coordinates": [ 85.308183845168628, 27.619809183481269 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1629, "nhouse": 8, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 55, "repvalue": 770000, "xcoord": 85.309872489053888, "ycoord": 27.621065841324423 }, "geometry": { "type": "Point", "coordinates": [ 85.309872489053888, 27.621065841324423 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1630, "nhouse": 8, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 55, "repvalue": 770000, "xcoord": 85.308844655383282, "ycoord": 27.618486087657097 }, "geometry": { "type": "Point", "coordinates": [ 85.308844655383282, 27.618486087657097 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1631, "nhouse": 17, "residents": 83, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 45, "repvalue": 1530000, "xcoord": 85.305656074517742, "ycoord": 27.617591435277134 }, "geometry": { "type": "Point", "coordinates": [ 85.305656074517742, 27.617591435277134 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1632, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 80, "repvalue": 320000, "xcoord": 85.307920693525418, "ycoord": 27.623038774578102 }, "geometry": { "type": "Point", "coordinates": [ 85.307920693525418, 27.623038774578102 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1633, "nhouse": 5, "residents": 25, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 77, "repvalue": 462000, "xcoord": 85.304398622293135, "ycoord": 27.622995761338291 }, "geometry": { "type": "Point", "coordinates": [ 85.304398622293135, 27.622995761338291 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1634, "nhouse": 6, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 80, "repvalue": 640000, "xcoord": 85.308030346581788, "ycoord": 27.622849947546385 }, "geometry": { "type": "Point", "coordinates": [ 85.308030346581788, 27.622849947546385 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1635, "nhouse": 8, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 77, "repvalue": 770000, "xcoord": 85.306284715946887, "ycoord": 27.618359771437486 }, "geometry": { "type": "Point", "coordinates": [ 85.306284715946887, 27.618359771437486 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1636, "nhouse": 6, "residents": 29, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 79, "repvalue": 632000, "xcoord": 85.30585770489381, "ycoord": 27.625295566169349 }, "geometry": { "type": "Point", "coordinates": [ 85.30585770489381, 27.625295566169349 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1637, "nhouse": 12, "residents": 54, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 68, "repvalue": 1088000, "xcoord": 85.308666339337563, "ycoord": 27.623142951675231 }, "geometry": { "type": "Point", "coordinates": [ 85.308666339337563, 27.623142951675231 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1638, "nhouse": 2, "residents": 2, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 53, "repvalue": 212000, "xcoord": 85.305139870620337, "ycoord": 27.623385150379779 }, "geometry": { "type": "Point", "coordinates": [ 85.305139870620337, 27.623385150379779 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1639, "nhouse": 18, "residents": 76, "specialfac": 0, "expstr": "RCi+HC+19s+Res", "fptarea": 44, "repvalue": 1672000, "xcoord": 85.308132690968463, "ycoord": 27.623136443106745 }, "geometry": { "type": "Point", "coordinates": [ 85.308132690968463, 27.623136443106745 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1640, "nhouse": 11, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 86, "repvalue": 1032000, "xcoord": 85.3102539762112, "ycoord": 27.617077025231264 }, "geometry": { "type": "Point", "coordinates": [ 85.3102539762112, 27.617077025231264 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1641, "nhouse": 4, "residents": 15, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 71, "repvalue": 426000, "xcoord": 85.30678464019519, "ycoord": 27.627493778515326 }, "geometry": { "type": "Point", "coordinates": [ 85.30678464019519, 27.627493778515326 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1642, "nhouse": 4, "residents": 14, "specialfac": 0, "expstr": "BrCri+MC+3s+Res", "fptarea": 67, "repvalue": 402000, "xcoord": 85.307058081703374, "ycoord": 27.623598742220373 }, "geometry": { "type": "Point", "coordinates": [ 85.307058081703374, 27.623598742220373 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1643, "nhouse": 5, "residents": 25, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 62, "repvalue": 496000, "xcoord": 85.304553686040578, "ycoord": 27.619859941457783 }, "geometry": { "type": "Point", "coordinates": [ 85.304553686040578, 27.619859941457783 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1644, "nhouse": 15, "residents": 56, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 84, "repvalue": 1344000, "xcoord": 85.307118006849308, "ycoord": 27.626642107686724 }, "geometry": { "type": "Point", "coordinates": [ 85.307118006849308, 27.626642107686724 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1645, "nhouse": 3, "residents": 7, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 57, "repvalue": 342000, "xcoord": 85.304787639194799, "ycoord": 27.618531648398932 }, "geometry": { "type": "Point", "coordinates": [ 85.304787639194799, 27.618531648398932 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1646, "nhouse": 11, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 45, "repvalue": 1080000, "xcoord": 85.305192579843919, "ycoord": 27.619962831598166 }, "geometry": { "type": "Point", "coordinates": [ 85.305192579843919, 27.619962831598166 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1647, "nhouse": 11, "residents": 51, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 75, "repvalue": 1050000, "xcoord": 85.304670663434408, "ycoord": 27.619195795039776 }, "geometry": { "type": "Point", "coordinates": [ 85.304670663434408, 27.619195795039776 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1648, "nhouse": 11, "residents": 48, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 61, "repvalue": 976000, "xcoord": 85.307591732017002, "ycoord": 27.623605255022298 }, "geometry": { "type": "Point", "coordinates": [ 85.307591732017002, 27.623605255022298 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1649, "nhouse": 13, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 87, "repvalue": 1218000, "xcoord": 85.304044959058004, "ycoord": 27.618237323139422 }, "geometry": { "type": "Point", "coordinates": [ 85.304044959058004, 27.618237323139422 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1650, "nhouse": 9, "residents": 30, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 56, "repvalue": 896000, "xcoord": 85.305965900198458, "ycoord": 27.625201805489766 }, "geometry": { "type": "Point", "coordinates": [ 85.305965900198458, 27.625201805489766 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1651, "nhouse": 22, "residents": 106, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 77, "repvalue": 2002000, "xcoord": 85.307176511831202, "ycoord": 27.622839529039453 }, "geometry": { "type": "Point", "coordinates": [ 85.307176511831202, 27.622839529039453 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1652, "nhouse": 4, "residents": 13, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 65, "repvalue": 390000, "xcoord": 85.307433836165245, "ycoord": 27.619990198415483 }, "geometry": { "type": "Point", "coordinates": [ 85.307433836165245, 27.619990198415483 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1653, "nhouse": 7, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 50, "repvalue": 700000, "xcoord": 85.309243807251519, "ycoord": 27.62029751990389 }, "geometry": { "type": "Point", "coordinates": [ 85.309243807251519, 27.62029751990389 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1654, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 62, "repvalue": 248000, "xcoord": 85.308249651524875, "ycoord": 27.622472293157504 }, "geometry": { "type": "Point", "coordinates": [ 85.308249651524875, 27.622472293157504 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1655, "nhouse": 20, "residents": 74, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 65, "repvalue": 1820000, "xcoord": 85.307139977789518, "ycoord": 27.618275129328424 }, "geometry": { "type": "Point", "coordinates": [ 85.307139977789518, 27.618275129328424 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1656, "nhouse": 6, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 77, "repvalue": 616000, "xcoord": 85.306974754309721, "ycoord": 27.622076407682652 }, "geometry": { "type": "Point", "coordinates": [ 85.306974754309721, 27.622076407682652 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1657, "nhouse": 9, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 69, "repvalue": 828000, "xcoord": 85.306698451958965, "ycoord": 27.619220564049211 }, "geometry": { "type": "Point", "coordinates": [ 85.306698451958965, 27.619220564049211 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1658, "nhouse": 19, "residents": 71, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 54, "repvalue": 1728000, "xcoord": 85.307813963979484, "ycoord": 27.623037472459387 }, "geometry": { "type": "Point", "coordinates": [ 85.307813963979484, 27.623037472459387 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1659, "nhouse": 16, "residents": 60, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 73, "repvalue": 1460000, "xcoord": 85.309448498942146, "ycoord": 27.620870509442017 }, "geometry": { "type": "Point", "coordinates": [ 85.309448498942146, 27.620870509442017 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1660, "nhouse": 21, "residents": 85, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 54, "repvalue": 1944000, "xcoord": 85.304423524389733, "ycoord": 27.621379667110755 }, "geometry": { "type": "Point", "coordinates": [ 85.304423524389733, 27.621379667110755 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1661, "nhouse": 4, "residents": 8, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 59, "repvalue": 354000, "xcoord": 85.306356329659096, "ycoord": 27.620642622527203 }, "geometry": { "type": "Point", "coordinates": [ 85.306356329659096, 27.620642622527203 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1662, "nhouse": 22, "residents": 87, "specialfac": 0, "expstr": "RCi+HC+19s+Res", "fptarea": 52, "repvalue": 1976000, "xcoord": 85.307884145015308, "ycoord": 27.625415387338034 }, "geometry": { "type": "Point", "coordinates": [ 85.307884145015308, 27.625415387338034 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1663, "nhouse": 10, "residents": 43, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 78, "repvalue": 936000, "xcoord": 85.30471734564685, "ycoord": 27.623094739694736 }, "geometry": { "type": "Point", "coordinates": [ 85.30471734564685, 27.623094739694736 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1664, "nhouse": 8, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 65, "repvalue": 780000, "xcoord": 85.304601827815645, "ycoord": 27.623663821267083 }, "geometry": { "type": "Point", "coordinates": [ 85.304601827815645, 27.623663821267083 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1665, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 77, "repvalue": 308000, "xcoord": 85.308308149143969, "ycoord": 27.625610724541406 }, "geometry": { "type": "Point", "coordinates": [ 85.308308149143969, 27.625610724541406 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1666, "nhouse": 22, "residents": 87, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 64, "repvalue": 2048000, "xcoord": 85.305154513003629, "ycoord": 27.622434506452493 }, "geometry": { "type": "Point", "coordinates": [ 85.305154513003629, 27.622434506452493 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1667, "nhouse": 9, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 74, "repvalue": 888000, "xcoord": 85.309723276648171, "ycoord": 27.616880394681008 }, "geometry": { "type": "Point", "coordinates": [ 85.309723276648171, 27.616880394681008 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1668, "nhouse": 8, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 50, "repvalue": 800000, "xcoord": 85.304889797470082, "ycoord": 27.625759150706315 }, "geometry": { "type": "Point", "coordinates": [ 85.304889797470082, 27.625759150706315 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1669, "nhouse": 12, "residents": 43, "specialfac": 0, "expstr": "RCi+HC+9s+Res", "fptarea": 64, "repvalue": 1152000, "xcoord": 85.305694012056861, "ycoord": 27.622060768610229 }, "geometry": { "type": "Point", "coordinates": [ 85.305694012056861, 27.622060768610229 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1670, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 46, "repvalue": 92000, "xcoord": 85.308792063004432, "ycoord": 27.621908413641655 }, "geometry": { "type": "Point", "coordinates": [ 85.308792063004432, 27.621908413641655 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1671, "nhouse": 4, "residents": 15, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 76, "repvalue": 456000, "xcoord": 85.308401726669615, "ycoord": 27.626467606985258 }, "geometry": { "type": "Point", "coordinates": [ 85.308401726669615, 27.626467606985258 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1672, "nhouse": 12, "residents": 47, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 86, "repvalue": 1204000, "xcoord": 85.305813788481686, "ycoord": 27.628147497402431 }, "geometry": { "type": "Point", "coordinates": [ 85.305813788481686, 27.628147497402431 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1673, "nhouse": 29, "residents": 112, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 82, "repvalue": 2624000, "xcoord": 85.303655913850491, "ycoord": 27.62270143287089 }, "geometry": { "type": "Point", "coordinates": [ 85.303655913850491, 27.62270143287089 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1674, "nhouse": 2, "residents": 5, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 55, "repvalue": 220000, "xcoord": 85.309284699517335, "ycoord": 27.617635709718606 }, "geometry": { "type": "Point", "coordinates": [ 85.309284699517335, 27.617635709718606 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1675, "nhouse": 8, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 74, "repvalue": 740000, "xcoord": 85.30446307051686, "ycoord": 27.618812928403344 }, "geometry": { "type": "Point", "coordinates": [ 85.30446307051686, 27.618812928403344 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1676, "nhouse": 21, "residents": 101, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 64, "repvalue": 1920000, "xcoord": 85.306727651076642, "ycoord": 27.624260284752996 }, "geometry": { "type": "Point", "coordinates": [ 85.306727651076642, 27.624260284752996 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1677, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 47, "repvalue": 282000, "xcoord": 85.308129767606431, "ycoord": 27.623326572177337 }, "geometry": { "type": "Point", "coordinates": [ 85.308129767606431, 27.623326572177337 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1678, "nhouse": 5, "residents": 19, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 66, "repvalue": 528000, "xcoord": 85.304473124315194, "ycoord": 27.625088481667373 }, "geometry": { "type": "Point", "coordinates": [ 85.304473124315194, 27.625088481667373 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1679, "nhouse": 19, "residents": 69, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 50, "repvalue": 1700000, "xcoord": 85.308033270056413, "ycoord": 27.62265981847251 }, "geometry": { "type": "Point", "coordinates": [ 85.308033270056413, 27.62265981847251 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1680, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 71, "repvalue": 284000, "xcoord": 85.304210068909399, "ycoord": 27.621377057554369 }, "geometry": { "type": "Point", "coordinates": [ 85.304210068909399, 27.621377057554369 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1681, "nhouse": 12, "residents": 50, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 77, "repvalue": 1078000, "xcoord": 85.307091720314318, "ycoord": 27.621412258875672 }, "geometry": { "type": "Point", "coordinates": [ 85.307091720314318, 27.621412258875672 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1682, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 62, "repvalue": 124000, "xcoord": 85.304546363144141, "ycoord": 27.620335263466867 }, "geometry": { "type": "Point", "coordinates": [ 85.304546363144141, 27.620335263466867 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1683, "nhouse": 8, "residents": 43, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 53, "repvalue": 742000, "xcoord": 85.304870936331653, "ycoord": 27.62005398351836 }, "geometry": { "type": "Point", "coordinates": [ 85.304870936331653, 27.62005398351836 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1684, "nhouse": 35, "residents": 149, "specialfac": 0, "expstr": "RCi+HC+19s+Res", "fptarea": 83, "repvalue": 3154000, "xcoord": 85.305908811476655, "ycoord": 27.628909316109524 }, "geometry": { "type": "Point", "coordinates": [ 85.305908811476655, 27.628909316109524 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1685, "nhouse": 1, "residents": 2, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 54, "repvalue": 108000, "xcoord": 85.305429453082482, "ycoord": 27.618444408211211 }, "geometry": { "type": "Point", "coordinates": [ 85.305429453082482, 27.618444408211211 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1686, "nhouse": 6, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 46, "repvalue": 552000, "xcoord": 85.308189690804568, "ycoord": 27.61942892513115 }, "geometry": { "type": "Point", "coordinates": [ 85.308189690804568, 27.61942892513115 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1687, "nhouse": 5, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 45, "repvalue": 540000, "xcoord": 85.308676567655695, "ycoord": 27.622477499701656 }, "geometry": { "type": "Point", "coordinates": [ 85.308676567655695, 27.622477499701656 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1688, "nhouse": 11, "residents": 53, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 76, "repvalue": 1064000, "xcoord": 85.306612204142667, "ycoord": 27.617888357818067 }, "geometry": { "type": "Point", "coordinates": [ 85.306612204142667, 27.617888357818067 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1689, "nhouse": 7, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 49, "repvalue": 686000, "xcoord": 85.308283299621152, "ycoord": 27.627226821036651 }, "geometry": { "type": "Point", "coordinates": [ 85.308283299621152, 27.627226821036651 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1690, "nhouse": 8, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 55, "repvalue": 770000, "xcoord": 85.30936221755988, "ycoord": 27.619538303676563 }, "geometry": { "type": "Point", "coordinates": [ 85.30936221755988, 27.619538303676563 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1691, "nhouse": 26, "residents": 92, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 73, "repvalue": 2336000, "xcoord": 85.304579855665239, "ycoord": 27.625089786445031 }, "geometry": { "type": "Point", "coordinates": [ 85.304579855665239, 27.625089786445031 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1692, "nhouse": 8, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 56, "repvalue": 784000, "xcoord": 85.30889148673954, "ycoord": 27.622385037897832 }, "geometry": { "type": "Point", "coordinates": [ 85.30889148673954, 27.622385037897832 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1693, "nhouse": 9, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 63, "repvalue": 882000, "xcoord": 85.307215996214723, "ycoord": 27.620272787209217 }, "geometry": { "type": "Point", "coordinates": [ 85.307215996214723, 27.620272787209217 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1694, "nhouse": 13, "residents": 54, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 76, "repvalue": 1216000, "xcoord": 85.306129600509266, "ycoord": 27.628436601894599 }, "geometry": { "type": "Point", "coordinates": [ 85.306129600509266, 27.628436601894599 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1695, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 58, "repvalue": 232000, "xcoord": 85.30858152842606, "ycoord": 27.621715681606858 }, "geometry": { "type": "Point", "coordinates": [ 85.30858152842606, 27.621715681606858 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1696, "nhouse": 15, "residents": 53, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 58, "repvalue": 1392000, "xcoord": 85.30665749440432, "ycoord": 27.621882370062462 }, "geometry": { "type": "Point", "coordinates": [ 85.30665749440432, 27.621882370062462 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1697, "nhouse": 6, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 44, "repvalue": 616000, "xcoord": 85.30821895778179, "ycoord": 27.624468648436554 }, "geometry": { "type": "Point", "coordinates": [ 85.30821895778179, 27.624468648436554 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1698, "nhouse": 13, "residents": 53, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 77, "repvalue": 1232000, "xcoord": 85.305283202666672, "ycoord": 27.621009844363634 }, "geometry": { "type": "Point", "coordinates": [ 85.305283202666672, 27.621009844363634 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1699, "nhouse": 13, "residents": 58, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 61, "repvalue": 1220000, "xcoord": 85.304574189196529, "ycoord": 27.618529039649516 }, "geometry": { "type": "Point", "coordinates": [ 85.304574189196529, 27.618529039649516 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1700, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 82, "repvalue": 328000, "xcoord": 85.307103419812492, "ycoord": 27.620651742759243 }, "geometry": { "type": "Point", "coordinates": [ 85.307103419812492, 27.620651742759243 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1701, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 46, "repvalue": 276000, "xcoord": 85.307534701933662, "ycoord": 27.627312769618271 }, "geometry": { "type": "Point", "coordinates": [ 85.307534701933662, 27.627312769618271 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1702, "nhouse": 6, "residents": 22, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 76, "repvalue": 608000, "xcoord": 85.30798502906255, "ycoord": 27.625796947488379 }, "geometry": { "type": "Point", "coordinates": [ 85.30798502906255, 27.625796947488379 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1703, "nhouse": 9, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 86, "repvalue": 860000, "xcoord": 85.304753958931997, "ycoord": 27.620718130040071 }, "geometry": { "type": "Point", "coordinates": [ 85.304753958931997, 27.620718130040071 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1704, "nhouse": 28, "residents": 120, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 78, "repvalue": 2652000, "xcoord": 85.305229178003444, "ycoord": 27.617586220284974 }, "geometry": { "type": "Point", "coordinates": [ 85.305229178003444, 27.617586220284974 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1705, "nhouse": 6, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 76, "repvalue": 608000, "xcoord": 85.30575097327349, "ycoord": 27.625294262365895 }, "geometry": { "type": "Point", "coordinates": [ 85.30575097327349, 27.625294262365895 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1706, "nhouse": 5, "residents": 25, "specialfac": 0, "expstr": "BrCri+MC+4s+Res", "fptarea": 61, "repvalue": 488000, "xcoord": 85.308065446396057, "ycoord": 27.627509410339467 }, "geometry": { "type": "Point", "coordinates": [ 85.308065446396057, 27.627509410339467 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1707, "nhouse": 5, "residents": 22, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 61, "repvalue": 488000, "xcoord": 85.306666271496056, "ycoord": 27.621311983150342 }, "geometry": { "type": "Point", "coordinates": [ 85.306666271496056, 27.621311983150342 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1708, "nhouse": 11, "residents": 52, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 87, "repvalue": 1044000, "xcoord": 85.30409162059432, "ycoord": 27.622136267507305 }, "geometry": { "type": "Point", "coordinates": [ 85.30409162059432, 27.622136267507305 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1709, "nhouse": 7, "residents": 26, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 87, "repvalue": 696000, "xcoord": 85.309333008351146, "ycoord": 27.621439596330891 }, "geometry": { "type": "Point", "coordinates": [ 85.309333008351146, 27.621439596330891 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1710, "nhouse": 15, "residents": 64, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 50, "repvalue": 1400000, "xcoord": 85.307417730297445, "ycoord": 27.627976918097531 }, "geometry": { "type": "Point", "coordinates": [ 85.307417730297445, 27.627976918097531 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1711, "nhouse": 4, "residents": 16, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 72, "repvalue": 432000, "xcoord": 85.308904635196853, "ycoord": 27.621529456583431 }, "geometry": { "type": "Point", "coordinates": [ 85.308904635196853, 27.621529456583431 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1712, "nhouse": 7, "residents": 29, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 82, "repvalue": 656000, "xcoord": 85.309077188434358, "ycoord": 27.624193867391451 }, "geometry": { "type": "Point", "coordinates": [ 85.309077188434358, 27.624193867391451 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1713, "nhouse": 15, "residents": 62, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 46, "repvalue": 1380000, "xcoord": 85.306894353193258, "ycoord": 27.620363943853953 }, "geometry": { "type": "Point", "coordinates": [ 85.306894353193258, 27.620363943853953 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1714, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 50, "repvalue": 200000, "xcoord": 85.305321264316021, "ycoord": 27.618538168836864 }, "geometry": { "type": "Point", "coordinates": [ 85.305321264316021, 27.618538168836864 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1715, "nhouse": 5, "residents": 25, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 76, "repvalue": 456000, "xcoord": 85.306081508043007, "ycoord": 27.617691713467774 }, "geometry": { "type": "Point", "coordinates": [ 85.306081508043007, 27.617691713467774 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1716, "nhouse": 17, "residents": 65, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 67, "repvalue": 1608000, "xcoord": 85.304600548331109, "ycoord": 27.616817879785852 }, "geometry": { "type": "Point", "coordinates": [ 85.304600548331109, 27.616817879785852 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1717, "nhouse": 17, "residents": 66, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 64, "repvalue": 1536000, "xcoord": 85.306476145657115, "ycoord": 27.626729353509766 }, "geometry": { "type": "Point", "coordinates": [ 85.306476145657115, 27.626729353509766 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1718, "nhouse": 1, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 83, "repvalue": 166000, "xcoord": 85.308509921126813, "ycoord": 27.626373844289894 }, "geometry": { "type": "Point", "coordinates": [ 85.308509921126813, 27.626373844289894 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1719, "nhouse": 9, "residents": 29, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 53, "repvalue": 848000, "xcoord": 85.308571299864028, "ycoord": 27.622381133620777 }, "geometry": { "type": "Point", "coordinates": [ 85.308571299864028, 27.622381133620777 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1720, "nhouse": 4, "residents": 13, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 68, "repvalue": 408000, "xcoord": 85.304335839223853, "ycoord": 27.620142525411463 }, "geometry": { "type": "Point", "coordinates": [ 85.304335839223853, 27.620142525411463 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1721, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 66, "repvalue": 264000, "xcoord": 85.30582989191538, "ycoord": 27.627101789427304 }, "geometry": { "type": "Point", "coordinates": [ 85.30582989191538, 27.627101789427304 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1722, "nhouse": 7, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 44, "repvalue": 704000, "xcoord": 85.304490703269963, "ycoord": 27.623947709612715 }, "geometry": { "type": "Point", "coordinates": [ 85.304490703269963, 27.623947709612715 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1723, "nhouse": 9, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 69, "repvalue": 828000, "xcoord": 85.303777296694278, "ycoord": 27.621752094832214 }, "geometry": { "type": "Point", "coordinates": [ 85.303777296694278, 27.621752094832214 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1724, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 56, "repvalue": 224000, "xcoord": 85.308973379721678, "ycoord": 27.62400243698292 }, "geometry": { "type": "Point", "coordinates": [ 85.308973379721678, 27.62400243698292 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1725, "nhouse": 12, "residents": 43, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 46, "repvalue": 1104000, "xcoord": 85.30832856379719, "ycoord": 27.617338805370952 }, "geometry": { "type": "Point", "coordinates": [ 85.30832856379719, 27.617338805370952 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1726, "nhouse": 10, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 82, "repvalue": 984000, "xcoord": 85.306919170026973, "ycoord": 27.625688857469616 }, "geometry": { "type": "Point", "coordinates": [ 85.306919170026973, 27.625688857469616 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1727, "nhouse": 1, "residents": 5, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 59, "repvalue": 118000, "xcoord": 85.304897120569038, "ycoord": 27.625283828984152 }, "geometry": { "type": "Point", "coordinates": [ 85.304897120569038, 27.625283828984152 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1728, "nhouse": 10, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 48, "repvalue": 960000, "xcoord": 85.308599062287882, "ycoord": 27.620574906569182 }, "geometry": { "type": "Point", "coordinates": [ 85.308599062287882, 27.620574906569182 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1729, "nhouse": 10, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 78, "repvalue": 936000, "xcoord": 85.307523018338344, "ycoord": 27.621132275203315 }, "geometry": { "type": "Point", "coordinates": [ 85.307523018338344, 27.621132275203315 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1730, "nhouse": 4, "residents": 13, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 60, "repvalue": 360000, "xcoord": 85.308629744066323, "ycoord": 27.61857854977702 }, "geometry": { "type": "Point", "coordinates": [ 85.308629744066323, 27.61857854977702 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1731, "nhouse": 4, "residents": 15, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 60, "repvalue": 360000, "xcoord": 85.307207222358528, "ycoord": 27.620843174369192 }, "geometry": { "type": "Point", "coordinates": [ 85.307207222358528, 27.620843174369192 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1732, "nhouse": 9, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 56, "repvalue": 896000, "xcoord": 85.30406524759735, "ycoord": 27.623847425607515 }, "geometry": { "type": "Point", "coordinates": [ 85.30406524759735, 27.623847425607515 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1733, "nhouse": 17, "residents": 69, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 80, "repvalue": 1600000, "xcoord": 85.306584412285147, "ycoord": 27.619694583710668 }, "geometry": { "type": "Point", "coordinates": [ 85.306584412285147, 27.619694583710668 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1734, "nhouse": 15, "residents": 69, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 69, "repvalue": 1380000, "xcoord": 85.306625309527689, "ycoord": 27.623973788316853 }, "geometry": { "type": "Point", "coordinates": [ 85.306625309527689, 27.623973788316853 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1735, "nhouse": 17, "residents": 60, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 69, "repvalue": 1518000, "xcoord": 85.30939580461262, "ycoord": 27.617351816444501 }, "geometry": { "type": "Point", "coordinates": [ 85.30939580461262, 27.617351816444501 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1736, "nhouse": 5, "residents": 18, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 87, "repvalue": 522000, "xcoord": 85.306242189704648, "ycoord": 27.628057648049161 }, "geometry": { "type": "Point", "coordinates": [ 85.306242189704648, 27.628057648049161 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1737, "nhouse": 6, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 60, "repvalue": 600000, "xcoord": 85.306274387440268, "ycoord": 27.62596623144108 }, "geometry": { "type": "Point", "coordinates": [ 85.306274387440268, 27.62596623144108 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1738, "nhouse": 6, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 46, "repvalue": 552000, "xcoord": 85.305712910360782, "ycoord": 27.627765936036429 }, "geometry": { "type": "Point", "coordinates": [ 85.305712910360782, 27.627765936036429 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1739, "nhouse": 22, "residents": 90, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 62, "repvalue": 1984000, "xcoord": 85.304170512578736, "ycoord": 27.623943794976277 }, "geometry": { "type": "Point", "coordinates": [ 85.304170512578736, 27.623943794976277 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1740, "nhouse": 10, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 63, "repvalue": 1008000, "xcoord": 85.307851972077287, "ycoord": 27.620565794413853 }, "geometry": { "type": "Point", "coordinates": [ 85.307851972077287, 27.620565794413853 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1741, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 49, "repvalue": 196000, "xcoord": 85.307031790580126, "ycoord": 27.61836889136368 }, "geometry": { "type": "Point", "coordinates": [ 85.307031790580126, 27.61836889136368 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1742, "nhouse": 1, "residents": 6, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 82, "repvalue": 164000, "xcoord": 85.30619262132376, "ycoord": 27.617407823135139 }, "geometry": { "type": "Point", "coordinates": [ 85.30619262132376, 27.617407823135139 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1743, "nhouse": 12, "residents": 49, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 68, "repvalue": 1088000, "xcoord": 85.309417829028646, "ycoord": 27.622866866420416 }, "geometry": { "type": "Point", "coordinates": [ 85.309417829028646, 27.622866866420416 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1744, "nhouse": 10, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 63, "repvalue": 1008000, "xcoord": 85.30460036305584, "ycoord": 27.623758885621896 }, "geometry": { "type": "Point", "coordinates": [ 85.30460036305584, 27.623758885621896 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1745, "nhouse": 6, "residents": 22, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 44, "repvalue": 616000, "xcoord": 85.305376754619758, "ycoord": 27.621866728162157 }, "geometry": { "type": "Point", "coordinates": [ 85.305376754619758, 27.621866728162157 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1746, "nhouse": 10, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 79, "repvalue": 948000, "xcoord": 85.307520094171892, "ycoord": 27.621322404268817 }, "geometry": { "type": "Point", "coordinates": [ 85.307520094171892, 27.621322404268817 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1747, "nhouse": 19, "residents": 71, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 87, "repvalue": 1740000, "xcoord": 85.309694076969791, "ycoord": 27.618781688418721 }, "geometry": { "type": "Point", "coordinates": [ 85.309694076969791, 27.618781688418721 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1748, "nhouse": 9, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 57, "repvalue": 798000, "xcoord": 85.30700981098984, "ycoord": 27.626735869227389 }, "geometry": { "type": "Point", "coordinates": [ 85.30700981098984, 27.626735869227389 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1749, "nhouse": 8, "residents": 29, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 62, "repvalue": 744000, "xcoord": 85.306077118688791, "ycoord": 27.617976906992403 }, "geometry": { "type": "Point", "coordinates": [ 85.306077118688791, 27.617976906992403 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1750, "nhouse": 7, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 52, "repvalue": 624000, "xcoord": 85.304748101107648, "ycoord": 27.621098387642558 }, "geometry": { "type": "Point", "coordinates": [ 85.304748101107648, 27.621098387642558 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1751, "nhouse": 22, "residents": 85, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 66, "repvalue": 1980000, "xcoord": 85.308550777540049, "ycoord": 27.616771020399881 }, "geometry": { "type": "Point", "coordinates": [ 85.308550777540049, 27.616771020399881 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1752, "nhouse": 28, "residents": 116, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 69, "repvalue": 2484000, "xcoord": 85.304261126773227, "ycoord": 27.624990807546059 }, "geometry": { "type": "Point", "coordinates": [ 85.304261126773227, 27.624990807546059 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1753, "nhouse": 17, "residents": 72, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 46, "repvalue": 1564000, "xcoord": 85.304854828603823, "ycoord": 27.621099692035816 }, "geometry": { "type": "Point", "coordinates": [ 85.304854828603823, 27.621099692035816 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1754, "nhouse": 13, "residents": 78, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 85, "repvalue": 1190000, "xcoord": 85.305986489148765, "ycoord": 27.616929894081437 }, "geometry": { "type": "Point", "coordinates": [ 85.305986489148765, 27.616929894081437 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1755, "nhouse": 3, "residents": 8, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 71, "repvalue": 284000, "xcoord": 85.305976145737887, "ycoord": 27.624536354644359 }, "geometry": { "type": "Point", "coordinates": [ 85.305976145737887, 27.624536354644359 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1756, "nhouse": 5, "residents": 14, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 86, "repvalue": 516000, "xcoord": 85.309588811597379, "ycoord": 27.618685323179562 }, "geometry": { "type": "Point", "coordinates": [ 85.309588811597379, 27.618685323179562 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1757, "nhouse": 5, "residents": 24, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 71, "repvalue": 568000, "xcoord": 85.309293461416075, "ycoord": 27.617065321681583 }, "geometry": { "type": "Point", "coordinates": [ 85.309293461416075, 27.617065321681583 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1758, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 83, "repvalue": 332000, "xcoord": 85.304135570422531, "ycoord": 27.619284336350422 }, "geometry": { "type": "Point", "coordinates": [ 85.304135570422531, 27.619284336350422 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1759, "nhouse": 5, "residents": 18, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 85, "repvalue": 510000, "xcoord": 85.307337323139706, "ycoord": 27.626264455417097 }, "geometry": { "type": "Point", "coordinates": [ 85.307337323139706, 27.626264455417097 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1760, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 74, "repvalue": 296000, "xcoord": 85.304294822933983, "ycoord": 27.622804327810403 }, "geometry": { "type": "Point", "coordinates": [ 85.304294822933983, 27.622804327810403 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1761, "nhouse": 8, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 74, "repvalue": 740000, "xcoord": 85.30346883728501, "ycoord": 27.62098766418854 }, "geometry": { "type": "Point", "coordinates": [ 85.30346883728501, 27.62098766418854 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1762, "nhouse": 5, "residents": 15, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 59, "repvalue": 472000, "xcoord": 85.307445518247903, "ycoord": 27.626170693581461 }, "geometry": { "type": "Point", "coordinates": [ 85.307445518247903, 27.626170693581461 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1763, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 74, "repvalue": 296000, "xcoord": 85.305917713555516, "ycoord": 27.621397924816488 }, "geometry": { "type": "Point", "coordinates": [ 85.305917713555516, 27.621397924816488 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1764, "nhouse": 2, "residents": 4, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 53, "repvalue": 212000, "xcoord": 85.309327166166028, "ycoord": 27.621819854795781 }, "geometry": { "type": "Point", "coordinates": [ 85.309327166166028, 27.621819854795781 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1765, "nhouse": 10, "residents": 46, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 68, "repvalue": 952000, "xcoord": 85.306430869922892, "ycoord": 27.62273534408062 }, "geometry": { "type": "Point", "coordinates": [ 85.306430869922892, 27.62273534408062 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1766, "nhouse": 12, "residents": 58, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 70, "repvalue": 1120000, "xcoord": 85.307910460393686, "ycoord": 27.623704226237482 }, "geometry": { "type": "Point", "coordinates": [ 85.307910460393686, 27.623704226237482 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1767, "nhouse": 9, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 54, "repvalue": 864000, "xcoord": 85.306489388942225, "ycoord": 27.618932764645773 }, "geometry": { "type": "Point", "coordinates": [ 85.306489388942225, 27.618932764645773 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1768, "nhouse": 8, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 52, "repvalue": 728000, "xcoord": 85.307379734220859, "ycoord": 27.623507585653847 }, "geometry": { "type": "Point", "coordinates": [ 85.307379734220859, 27.623507585653847 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1769, "nhouse": 29, "residents": 120, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 82, "repvalue": 2624000, "xcoord": 85.305620949210294, "ycoord": 27.619872982657601 }, "geometry": { "type": "Point", "coordinates": [ 85.305620949210294, 27.619872982657601 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1770, "nhouse": 10, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 65, "repvalue": 910000, "xcoord": 85.307303713896488, "ycoord": 27.621509928520524 }, "geometry": { "type": "Point", "coordinates": [ 85.307303713896488, 27.621509928520524 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1771, "nhouse": 8, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 63, "repvalue": 756000, "xcoord": 85.308104917872882, "ycoord": 27.624942669055454 }, "geometry": { "type": "Point", "coordinates": [ 85.308104917872882, 27.624942669055454 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1772, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 83, "repvalue": 332000, "xcoord": 85.306805177742447, "ycoord": 27.619221866860926 }, "geometry": { "type": "Point", "coordinates": [ 85.306805177742447, 27.619221866860926 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1773, "nhouse": 8, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 47, "repvalue": 752000, "xcoord": 85.307815425918903, "ycoord": 27.622942407936357 }, "geometry": { "type": "Point", "coordinates": [ 85.307815425918903, 27.622942407936357 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1774, "nhouse": 2, "residents": 3, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 47, "repvalue": 282000, "xcoord": 85.306695526605637, "ycoord": 27.619410693085893 }, "geometry": { "type": "Point", "coordinates": [ 85.306695526605637, 27.619410693085893 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1775, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 65, "repvalue": 260000, "xcoord": 85.308868026797228, "ycoord": 27.61696505331447 }, "geometry": { "type": "Point", "coordinates": [ 85.308868026797228, 27.61696505331447 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1776, "nhouse": 18, "residents": 70, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 82, "repvalue": 1640000, "xcoord": 85.305188187763605, "ycoord": 27.620248024898018 }, "geometry": { "type": "Point", "coordinates": [ 85.305188187763605, 27.620248024898018 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1777, "nhouse": 15, "residents": 60, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 88, "repvalue": 1408000, "xcoord": 85.309805182351184, "ycoord": 27.618497794865959 }, "geometry": { "type": "Point", "coordinates": [ 85.309805182351184, 27.618497794865959 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1778, "nhouse": 22, "residents": 85, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 74, "repvalue": 2072000, "xcoord": 85.308077118739547, "ycoord": 27.619807881704624 }, "geometry": { "type": "Point", "coordinates": [ 85.308077118739547, 27.619807881704624 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1779, "nhouse": 8, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 73, "repvalue": 730000, "xcoord": 85.307234978406839, "ycoord": 27.625977959355598 }, "geometry": { "type": "Point", "coordinates": [ 85.307234978406839, 27.625977959355598 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1780, "nhouse": 8, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 60, "repvalue": 720000, "xcoord": 85.3043490218367, "ycoord": 27.619286945840042 }, "geometry": { "type": "Point", "coordinates": [ 85.3043490218367, 27.619286945840042 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1781, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 85, "repvalue": 170000, "xcoord": 85.308593217781791, "ycoord": 27.620955164937062 }, "geometry": { "type": "Point", "coordinates": [ 85.308593217781791, 27.620955164937062 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1782, "nhouse": 16, "residents": 56, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 76, "repvalue": 1520000, "xcoord": 85.307239366251295, "ycoord": 27.625692765988777 }, "geometry": { "type": "Point", "coordinates": [ 85.307239366251295, 27.625692765988777 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1783, "nhouse": 11, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 75, "repvalue": 1050000, "xcoord": 85.306097511590181, "ycoord": 27.623587014007647 }, "geometry": { "type": "Point", "coordinates": [ 85.306097511590181, 27.623587014007647 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1784, "nhouse": 3, "residents": 8, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 55, "repvalue": 330000, "xcoord": 85.307198410529054, "ycoord": 27.628354570264722 }, "geometry": { "type": "Point", "coordinates": [ 85.307198410529054, 27.628354570264722 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1785, "nhouse": 16, "residents": 62, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 50, "repvalue": 1500000, "xcoord": 85.308123920796447, "ycoord": 27.623706830302051 }, "geometry": { "type": "Point", "coordinates": [ 85.308123920796447, 27.623706830302051 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1786, "nhouse": 10, "residents": 53, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 70, "repvalue": 980000, "xcoord": 85.304846042204659, "ycoord": 27.621670078429773 }, "geometry": { "type": "Point", "coordinates": [ 85.304846042204659, 27.621670078429773 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1787, "nhouse": 5, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 85, "repvalue": 510000, "xcoord": 85.307368047675212, "ycoord": 27.617327088391175 }, "geometry": { "type": "Point", "coordinates": [ 85.307368047675212, 27.617327088391175 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1788, "nhouse": 7, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 48, "repvalue": 672000, "xcoord": 85.309503988862261, "ycoord": 27.617258052416698 }, "geometry": { "type": "Point", "coordinates": [ 85.309503988862261, 27.617258052416698 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1789, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 49, "repvalue": 98000, "xcoord": 85.309932344802334, "ycoord": 27.617168189493949 }, "geometry": { "type": "Point", "coordinates": [ 85.309932344802334, 27.617168189493949 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1790, "nhouse": 10, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 71, "repvalue": 994000, "xcoord": 85.306762759984679, "ycoord": 27.621978737506641 }, "geometry": { "type": "Point", "coordinates": [ 85.306762759984679, 27.621978737506641 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1791, "nhouse": 3, "residents": 15, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 52, "repvalue": 312000, "xcoord": 85.30744259332225, "ycoord": 27.626360822501262 }, "geometry": { "type": "Point", "coordinates": [ 85.30744259332225, 27.626360822501262 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1792, "nhouse": 12, "residents": 51, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 81, "repvalue": 1134000, "xcoord": 85.309422210638019, "ycoord": 27.62258167260347 }, "geometry": { "type": "Point", "coordinates": [ 85.309422210638019, 27.62258167260347 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1793, "nhouse": 8, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 64, "repvalue": 768000, "xcoord": 85.306901614946156, "ycoord": 27.626829630674138 }, "geometry": { "type": "Point", "coordinates": [ 85.306901614946156, 27.626829630674138 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1794, "nhouse": 2, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 55, "repvalue": 220000, "xcoord": 85.308311072481217, "ycoord": 27.625420595515848 }, "geometry": { "type": "Point", "coordinates": [ 85.308311072481217, 27.625420595515848 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1795, "nhouse": 10, "residents": 45, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 77, "repvalue": 924000, "xcoord": 85.306584341941317, "ycoord": 27.626635592405613 }, "geometry": { "type": "Point", "coordinates": [ 85.306584341941317, 27.626635592405613 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1796, "nhouse": 10, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 69, "repvalue": 966000, "xcoord": 85.305698269488317, "ycoord": 27.628716579508392 }, "geometry": { "type": "Point", "coordinates": [ 85.305698269488317, 27.628716579508392 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1797, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 55, "repvalue": 330000, "xcoord": 85.306789088957402, "ycoord": 27.620267576552266 }, "geometry": { "type": "Point", "coordinates": [ 85.306789088957402, 27.620267576552266 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1798, "nhouse": 36, "residents": 159, "specialfac": 0, "expstr": "RCi+HC+19s+Res", "fptarea": 88, "repvalue": 3344000, "xcoord": 85.304669199011769, "ycoord": 27.619290859459198 }, "geometry": { "type": "Point", "coordinates": [ 85.304669199011769, 27.619290859459198 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1799, "nhouse": 6, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 54, "repvalue": 648000, "xcoord": 85.307069782519605, "ycoord": 27.622838226356869 }, "geometry": { "type": "Point", "coordinates": [ 85.307069782519605, 27.622838226356869 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1800, "nhouse": 33, "residents": 141, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 83, "repvalue": 2988000, "xcoord": 85.307457217663966, "ycoord": 27.625410177847282 }, "geometry": { "type": "Point", "coordinates": [ 85.307457217663966, 27.625410177847282 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1801, "nhouse": 24, "residents": 102, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 82, "repvalue": 2296000, "xcoord": 85.307571262949338, "ycoord": 27.617995144828729 }, "geometry": { "type": "Point", "coordinates": [ 85.307571262949338, 27.617995144828729 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1802, "nhouse": 19, "residents": 69, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 55, "repvalue": 1760000, "xcoord": 85.306620979981375, "ycoord": 27.617317970591003 }, "geometry": { "type": "Point", "coordinates": [ 85.306620979981375, 27.617317970591003 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1803, "nhouse": 12, "residents": 57, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 83, "repvalue": 1162000, "xcoord": 85.309110787785912, "ycoord": 27.622007381948897 }, "geometry": { "type": "Point", "coordinates": [ 85.309110787785912, 27.622007381948897 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1804, "nhouse": 31, "residents": 121, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 80, "repvalue": 2880000, "xcoord": 85.303745057268571, "ycoord": 27.623843510002196 }, "geometry": { "type": "Point", "coordinates": [ 85.303745057268571, 27.623843510002196 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1805, "nhouse": 11, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 65, "repvalue": 1040000, "xcoord": 85.305958581740953, "ycoord": 27.625677127480955 }, "geometry": { "type": "Point", "coordinates": [ 85.305958581740953, 27.625677127480955 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1806, "nhouse": 6, "residents": 21, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 68, "repvalue": 544000, "xcoord": 85.304338768743605, "ycoord": 27.619952396627433 }, "geometry": { "type": "Point", "coordinates": [ 85.304338768743605, 27.619952396627433 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1807, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 87, "repvalue": 348000, "xcoord": 85.306637013520472, "ycoord": 27.623213272664959 }, "geometry": { "type": "Point", "coordinates": [ 85.306637013520472, 27.623213272664959 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1808, "nhouse": 2, "residents": 4, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 58, "repvalue": 232000, "xcoord": 85.303476165036969, "ycoord": 27.620512342489935 }, "geometry": { "type": "Point", "coordinates": [ 85.303476165036969, 27.620512342489935 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1809, "nhouse": 9, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 64, "repvalue": 896000, "xcoord": 85.307131204283309, "ycoord": 27.618845516630167 }, "geometry": { "type": "Point", "coordinates": [ 85.307131204283309, 27.618845516630167 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1810, "nhouse": 3, "residents": 8, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 52, "repvalue": 312000, "xcoord": 85.3076940663844, "ycoord": 27.616950736401019 }, "geometry": { "type": "Point", "coordinates": [ 85.3076940663844, 27.616950736401019 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1811, "nhouse": 8, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 52, "repvalue": 728000, "xcoord": 85.308951463894843, "ycoord": 27.625428405320825 }, "geometry": { "type": "Point", "coordinates": [ 85.308951463894843, 27.625428405320825 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1812, "nhouse": 14, "residents": 57, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 49, "repvalue": 1274000, "xcoord": 85.306335846211439, "ycoord": 27.621973525159827 }, "geometry": { "type": "Point", "coordinates": [ 85.306335846211439, 27.621973525159827 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1813, "nhouse": 11, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 73, "repvalue": 1022000, "xcoord": 85.309767221444588, "ycoord": 27.620969476146346 }, "geometry": { "type": "Point", "coordinates": [ 85.309767221444588, 27.620969476146346 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1814, "nhouse": 1, "residents": 8, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 79, "repvalue": 158000, "xcoord": 85.306182380191927, "ycoord": 27.618073274738908 }, "geometry": { "type": "Point", "coordinates": [ 85.306182380191927, 27.618073274738908 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1815, "nhouse": 6, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 59, "repvalue": 590000, "xcoord": 85.307887052179311, "ycoord": 27.618284244624071 }, "geometry": { "type": "Point", "coordinates": [ 85.307887052179311, 27.618284244624071 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1816, "nhouse": 7, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 64, "repvalue": 640000, "xcoord": 85.308504074874236, "ycoord": 27.626754102322394 }, "geometry": { "type": "Point", "coordinates": [ 85.308504074874236, 27.626754102322394 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1817, "nhouse": 5, "residents": 17, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 62, "repvalue": 496000, "xcoord": 85.3077043103562, "ycoord": 27.623226299290089 }, "geometry": { "type": "Point", "coordinates": [ 85.3077043103562, 27.623226299290089 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1818, "nhouse": 6, "residents": 17, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 67, "repvalue": 536000, "xcoord": 85.303800741367397, "ycoord": 27.620231065199743 }, "geometry": { "type": "Point", "coordinates": [ 85.303800741367397, 27.620231065199743 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1819, "nhouse": 6, "residents": 20, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 73, "repvalue": 584000, "xcoord": 85.308061041637202, "ycoord": 27.620853591996472 }, "geometry": { "type": "Point", "coordinates": [ 85.308061041637202, 27.620853591996472 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1820, "nhouse": 10, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 70, "repvalue": 980000, "xcoord": 85.30533882959628, "ycoord": 27.617397395203401 }, "geometry": { "type": "Point", "coordinates": [ 85.30533882959628, 27.617397395203401 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1821, "nhouse": 8, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 55, "repvalue": 770000, "xcoord": 85.305180867486328, "ycoord": 27.62072334703694 }, "geometry": { "type": "Point", "coordinates": [ 85.305180867486328, 27.62072334703694 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1822, "nhouse": 15, "residents": 59, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 57, "repvalue": 1368000, "xcoord": 85.309254030843761, "ycoord": 27.619632067458582 }, "geometry": { "type": "Point", "coordinates": [ 85.309254030843761, 27.619632067458582 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1823, "nhouse": 8, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 45, "repvalue": 720000, "xcoord": 85.308527459197293, "ycoord": 27.625233070060418 }, "geometry": { "type": "Point", "coordinates": [ 85.308527459197293, 27.625233070060418 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1824, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 72, "repvalue": 288000, "xcoord": 85.306530283876285, "ycoord": 27.623211969551168 }, "geometry": { "type": "Point", "coordinates": [ 85.306530283876285, 27.623211969551168 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1825, "nhouse": 9, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 62, "repvalue": 868000, "xcoord": 85.304571260260317, "ycoord": 27.618719168495765 }, "geometry": { "type": "Point", "coordinates": [ 85.304571260260317, 27.618719168495765 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1826, "nhouse": 7, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 52, "repvalue": 624000, "xcoord": 85.307490850931757, "ycoord": 27.623223694621466 }, "geometry": { "type": "Point", "coordinates": [ 85.307490850931757, 27.623223694621466 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1827, "nhouse": 28, "residents": 95, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 81, "repvalue": 2592000, "xcoord": 85.307205724462818, "ycoord": 27.627879248151633 }, "geometry": { "type": "Point", "coordinates": [ 85.307205724462818, 27.627879248151633 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1828, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 62, "repvalue": 248000, "xcoord": 85.308467493586107, "ycoord": 27.622189702901501 }, "geometry": { "type": "Point", "coordinates": [ 85.308467493586107, 27.622189702901501 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1829, "nhouse": 3, "residents": 8, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 48, "repvalue": 288000, "xcoord": 85.305471771601006, "ycoord": 27.62262854744975 }, "geometry": { "type": "Point", "coordinates": [ 85.305471771601006, 27.62262854744975 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1830, "nhouse": 19, "residents": 87, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 49, "repvalue": 1764000, "xcoord": 85.304160256379802, "ycoord": 27.624609245255382 }, "geometry": { "type": "Point", "coordinates": [ 85.304160256379802, 27.624609245255382 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1831, "nhouse": 6, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 63, "repvalue": 630000, "xcoord": 85.307018629330926, "ycoord": 27.619224472238237 }, "geometry": { "type": "Point", "coordinates": [ 85.307018629330926, 27.619224472238237 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1832, "nhouse": 6, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 59, "repvalue": 590000, "xcoord": 85.30658002386069, "ycoord": 27.6199797772273 }, "geometry": { "type": "Point", "coordinates": [ 85.30658002386069, 27.6199797772273 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1833, "nhouse": 3, "residents": 15, "specialfac": 0, "expstr": "BrCri+MC+3s+Res", "fptarea": 50, "repvalue": 300000, "xcoord": 85.306626830397207, "ycoord": 27.616937712412138 }, "geometry": { "type": "Point", "coordinates": [ 85.306626830397207, 27.616937712412138 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1834, "nhouse": 6, "residents": 22, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 58, "repvalue": 580000, "xcoord": 85.308527401935507, "ycoord": 27.618292054535331 }, "geometry": { "type": "Point", "coordinates": [ 85.308527401935507, 27.618292054535331 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1835, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 85, "repvalue": 340000, "xcoord": 85.304457212161353, "ycoord": 27.619193186052858 }, "geometry": { "type": "Point", "coordinates": [ 85.304457212161353, 27.619193186052858 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1836, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 53, "repvalue": 212000, "xcoord": 85.306620920412158, "ycoord": 27.62425898166363 }, "geometry": { "type": "Point", "coordinates": [ 85.306620920412158, 27.62425898166363 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1837, "nhouse": 8, "residents": 29, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 53, "repvalue": 742000, "xcoord": 85.309028892610527, "ycoord": 27.620389982476123 }, "geometry": { "type": "Point", "coordinates": [ 85.309028892610527, 27.620389982476123 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1838, "nhouse": 6, "residents": 19, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 52, "repvalue": 624000, "xcoord": 85.304650160864639, "ycoord": 27.620526696786751 }, "geometry": { "type": "Point", "coordinates": [ 85.304650160864639, 27.620526696786751 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1839, "nhouse": 4, "residents": 13, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 50, "repvalue": 400000, "xcoord": 85.307574185459316, "ycoord": 27.62474602896684 }, "geometry": { "type": "Point", "coordinates": [ 85.307574185459316, 27.62474602896684 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1840, "nhouse": 13, "residents": 46, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 85, "repvalue": 1190000, "xcoord": 85.308113688603342, "ycoord": 27.624372281967361 }, "geometry": { "type": "Point", "coordinates": [ 85.308113688603342, 27.624372281967361 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1841, "nhouse": 9, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 61, "repvalue": 854000, "xcoord": 85.304183698603538, "ycoord": 27.623088215947003 }, "geometry": { "type": "Point", "coordinates": [ 85.304183698603538, 27.623088215947003 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1842, "nhouse": 7, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 58, "repvalue": 696000, "xcoord": 85.309173593812361, "ycoord": 27.617919602866934 }, "geometry": { "type": "Point", "coordinates": [ 85.309173593812361, 27.617919602866934 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1843, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 54, "repvalue": 108000, "xcoord": 85.308742383908509, "ycoord": 27.625140608769289 }, "geometry": { "type": "Point", "coordinates": [ 85.308742383908509, 27.625140608769289 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1844, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 53, "repvalue": 318000, "xcoord": 85.309495347965353, "ycoord": 27.62476945919941 }, "geometry": { "type": "Point", "coordinates": [ 85.309495347965353, 27.62476945919941 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1845, "nhouse": 12, "residents": 46, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 68, "repvalue": 1088000, "xcoord": 85.305515548509746, "ycoord": 27.626717620048108 }, "geometry": { "type": "Point", "coordinates": [ 85.305515548509746, 27.626717620048108 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1846, "nhouse": 9, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 63, "repvalue": 882000, "xcoord": 85.303999543716586, "ycoord": 27.621184318953016 }, "geometry": { "type": "Point", "coordinates": [ 85.303999543716586, 27.621184318953016 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1847, "nhouse": 7, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 62, "repvalue": 620000, "xcoord": 85.309281778827184, "ycoord": 27.617825839053285 }, "geometry": { "type": "Point", "coordinates": [ 85.309281778827184, 27.617825839053285 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1848, "nhouse": 23, "residents": 91, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 62, "repvalue": 2108000, "xcoord": 85.305971754835426, "ycoord": 27.624821547872063 }, "geometry": { "type": "Point", "coordinates": [ 85.305971754835426, 27.624821547872063 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1849, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 86, "repvalue": 344000, "xcoord": 85.308879798735319, "ycoord": 27.623145554528278 }, "geometry": { "type": "Point", "coordinates": [ 85.308879798735319, 27.623145554528278 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1850, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 75, "repvalue": 300000, "xcoord": 85.308920704746455, "ycoord": 27.62048374593688 }, "geometry": { "type": "Point", "coordinates": [ 85.308920704746455, 27.62048374593688 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1851, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 50, "repvalue": 300000, "xcoord": 85.303816858514381, "ycoord": 27.619185357123264 }, "geometry": { "type": "Point", "coordinates": [ 85.303816858514381, 27.619185357123264 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1852, "nhouse": 14, "residents": 55, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 64, "repvalue": 1280000, "xcoord": 85.306628292983262, "ycoord": 27.616842647863983 }, "geometry": { "type": "Point", "coordinates": [ 85.306628292983262, 27.616842647863983 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1853, "nhouse": 8, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 49, "repvalue": 784000, "xcoord": 85.306201399157246, "ycoord": 27.616837435992586 }, "geometry": { "type": "Point", "coordinates": [ 85.306201399157246, 27.616837435992586 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1854, "nhouse": 7, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 47, "repvalue": 658000, "xcoord": 85.304822610544477, "ycoord": 27.623191108571692 }, "geometry": { "type": "Point", "coordinates": [ 85.304822610544477, 27.623191108571692 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1855, "nhouse": 12, "residents": 52, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 81, "repvalue": 1134000, "xcoord": 85.308213072203017, "ycoord": 27.617907891510779 }, "geometry": { "type": "Point", "coordinates": [ 85.308213072203017, 27.617907891510779 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1856, "nhouse": 8, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 64, "repvalue": 768000, "xcoord": 85.3055025127709, "ycoord": 27.620632194482386 }, "geometry": { "type": "Point", "coordinates": [ 85.3055025127709, 27.620632194482386 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1857, "nhouse": 12, "residents": 53, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 69, "repvalue": 1104000, "xcoord": 85.309468943798578, "ycoord": 27.619539604453045 }, "geometry": { "type": "Point", "coordinates": [ 85.309468943798578, 27.619539604453045 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1858, "nhouse": 11, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 82, "repvalue": 984000, "xcoord": 85.306612141987628, "ycoord": 27.624829368320057 }, "geometry": { "type": "Point", "coordinates": [ 85.306612141987628, 27.624829368320057 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1859, "nhouse": 13, "residents": 51, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 50, "repvalue": 1200000, "xcoord": 85.30437664813293, "ycoord": 27.624421726503222 }, "geometry": { "type": "Point", "coordinates": [ 85.30437664813293, 27.624421726503222 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1860, "nhouse": 17, "residents": 66, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 66, "repvalue": 1584000, "xcoord": 85.305603248051227, "ycoord": 27.627954760709521 }, "geometry": { "type": "Point", "coordinates": [ 85.305603248051227, 27.627954760709521 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1861, "nhouse": 10, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 66, "repvalue": 924000, "xcoord": 85.308948459201957, "ycoord": 27.618677518064779 }, "geometry": { "type": "Point", "coordinates": [ 85.308948459201957, 27.618677518064779 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1862, "nhouse": 20, "residents": 75, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 52, "repvalue": 1872000, "xcoord": 85.308409034820613, "ycoord": 27.625992284446735 }, "geometry": { "type": "Point", "coordinates": [ 85.308409034820613, 27.625992284446735 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1863, "nhouse": 13, "residents": 46, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 87, "repvalue": 1218000, "xcoord": 85.3087862188343, "ycoord": 27.622288671974431 }, "geometry": { "type": "Point", "coordinates": [ 85.3087862188343, 27.622288671974431 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1864, "nhouse": 5, "residents": 22, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 48, "repvalue": 480000, "xcoord": 85.305560933923573, "ycoord": 27.623770624267507 }, "geometry": { "type": "Point", "coordinates": [ 85.305560933923573, 27.623770624267507 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1865, "nhouse": 6, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 71, "repvalue": 568000, "xcoord": 85.304749565574483, "ycoord": 27.621003323244 }, "geometry": { "type": "Point", "coordinates": [ 85.304749565574483, 27.621003323244 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1866, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 56, "repvalue": 336000, "xcoord": 85.306410385557328, "ycoord": 27.62406624636321 }, "geometry": { "type": "Point", "coordinates": [ 85.306410385557328, 27.62406624636321 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1867, "nhouse": 11, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 83, "repvalue": 996000, "xcoord": 85.306055170950174, "ycoord": 27.61940287442998 }, "geometry": { "type": "Point", "coordinates": [ 85.306055170950174, 27.61940287442998 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1868, "nhouse": 10, "residents": 47, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 71, "repvalue": 994000, "xcoord": 85.308381223984838, "ycoord": 27.620857497253013 }, "geometry": { "type": "Point", "coordinates": [ 85.308381223984838, 27.620857497253013 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1869, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 85, "repvalue": 340000, "xcoord": 85.308395836805587, "ycoord": 27.619906851382989 }, "geometry": { "type": "Point", "coordinates": [ 85.308395836805587, 27.619906851382989 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1870, "nhouse": 14, "residents": 60, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 80, "repvalue": 1280000, "xcoord": 85.305818180413283, "ycoord": 27.627862304334798 }, "geometry": { "type": "Point", "coordinates": [ 85.305818180413283, 27.627862304334798 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1871, "nhouse": 29, "residents": 117, "specialfac": 0, "expstr": "RCi+HC+19s+Res", "fptarea": 70, "repvalue": 2660000, "xcoord": 85.307559568002176, "ycoord": 27.618755661420607 }, "geometry": { "type": "Point", "coordinates": [ 85.307559568002176, 27.618755661420607 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1872, "nhouse": 10, "residents": 51, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 67, "repvalue": 938000, "xcoord": 85.305756828675996, "ycoord": 27.624914004795627 }, "geometry": { "type": "Point", "coordinates": [ 85.305756828675996, 27.624914004795627 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1873, "nhouse": 8, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 49, "repvalue": 784000, "xcoord": 85.306242286706748, "ycoord": 27.621116641682271 }, "geometry": { "type": "Point", "coordinates": [ 85.306242286706748, 27.621116641682271 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1874, "nhouse": 9, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 73, "repvalue": 876000, "xcoord": 85.307961636682947, "ycoord": 27.627317979199649 }, "geometry": { "type": "Point", "coordinates": [ 85.307961636682947, 27.627317979199649 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1875, "nhouse": 11, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 84, "repvalue": 1008000, "xcoord": 85.308496718674178, "ycoord": 27.620288411304184 }, "geometry": { "type": "Point", "coordinates": [ 85.308496718674178, 27.620288411304184 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1876, "nhouse": 4, "residents": 22, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 72, "repvalue": 432000, "xcoord": 85.307794958115394, "ycoord": 27.62427331113371 }, "geometry": { "type": "Point", "coordinates": [ 85.307794958115394, 27.62427331113371 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1877, "nhouse": 28, "residents": 117, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 86, "repvalue": 2580000, "xcoord": 85.308444054035988, "ycoord": 27.616769719036821 }, "geometry": { "type": "Point", "coordinates": [ 85.308444054035988, 27.616769719036821 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1878, "nhouse": 11, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 54, "repvalue": 1080000, "xcoord": 85.309170672895149, "ycoord": 27.618109732182912 }, "geometry": { "type": "Point", "coordinates": [ 85.309170672895149, 27.618109732182912 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1879, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 69, "repvalue": 138000, "xcoord": 85.309496808559928, "ycoord": 27.624674394617383 }, "geometry": { "type": "Point", "coordinates": [ 85.309496808559928, 27.624674394617383 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1880, "nhouse": 4, "residents": 18, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 59, "repvalue": 354000, "xcoord": 85.304743707664073, "ycoord": 27.621383580829988 }, "geometry": { "type": "Point", "coordinates": [ 85.304743707664073, 27.621383580829988 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1881, "nhouse": 15, "residents": 73, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 87, "repvalue": 1392000, "xcoord": 85.303483492609487, "ycoord": 27.62003702075695 }, "geometry": { "type": "Point", "coordinates": [ 85.303483492609487, 27.62003702075695 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1882, "nhouse": 9, "residents": 45, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 75, "repvalue": 900000, "xcoord": 85.304968877448786, "ycoord": 27.620625674288039 }, "geometry": { "type": "Point", "coordinates": [ 85.304968877448786, 27.620625674288039 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1883, "nhouse": 14, "residents": 54, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 64, "repvalue": 1280000, "xcoord": 85.305558006040314, "ycoord": 27.623960753067426 }, "geometry": { "type": "Point", "coordinates": [ 85.305558006040314, 27.623960753067426 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1884, "nhouse": 19, "residents": 70, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 69, "repvalue": 1794000, "xcoord": 85.305572645169846, "ycoord": 27.623010109012895 }, "geometry": { "type": "Point", "coordinates": [ 85.305572645169846, 27.623010109012895 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1885, "nhouse": 19, "residents": 69, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 86, "repvalue": 1720000, "xcoord": 85.303692549441436, "ycoord": 27.62032482439038 }, "geometry": { "type": "Point", "coordinates": [ 85.303692549441436, 27.62032482439038 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1886, "nhouse": 6, "residents": 29, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 62, "repvalue": 620000, "xcoord": 85.305922103960071, "ycoord": 27.621112731456041 }, "geometry": { "type": "Point", "coordinates": [ 85.305922103960071, 27.621112731456041 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1887, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 58, "repvalue": 348000, "xcoord": 85.306717466057108, "ycoord": 27.617984725176747 }, "geometry": { "type": "Point", "coordinates": [ 85.306717466057108, 27.617984725176747 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1888, "nhouse": 4, "residents": 19, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 64, "repvalue": 384000, "xcoord": 85.30448044900524, "ycoord": 27.624613160001992 }, "geometry": { "type": "Point", "coordinates": [ 85.30448044900524, 27.624613160001992 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1889, "nhouse": 2, "residents": 13, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 46, "repvalue": 276000, "xcoord": 85.307958699228749, "ycoord": 27.620567096396456 }, "geometry": { "type": "Point", "coordinates": [ 85.307958699228749, 27.620567096396456 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1890, "nhouse": 4, "residents": 14, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 71, "repvalue": 426000, "xcoord": 85.307096064525908, "ycoord": 27.628068074112395 }, "geometry": { "type": "Point", "coordinates": [ 85.307096064525908, 27.628068074112395 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1891, "nhouse": 9, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+9s+Res", "fptarea": 48, "repvalue": 864000, "xcoord": 85.303613664559379, "ycoord": 27.61851729621651 }, "geometry": { "type": "Point", "coordinates": [ 85.303613664559379, 27.61851729621651 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1892, "nhouse": 15, "residents": 65, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 59, "repvalue": 1416000, "xcoord": 85.307385583552417, "ycoord": 27.623127327664751 }, "geometry": { "type": "Point", "coordinates": [ 85.307385583552417, 27.623127327664751 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1893, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 77, "repvalue": 154000, "xcoord": 85.308796446056874, "ycoord": 27.621623219877637 }, "geometry": { "type": "Point", "coordinates": [ 85.308796446056874, 27.621623219877637 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1894, "nhouse": 21, "residents": 79, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 79, "repvalue": 1896000, "xcoord": 85.309672175333688, "ycoord": 27.620207658361281 }, "geometry": { "type": "Point", "coordinates": [ 85.309672175333688, 27.620207658361281 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1895, "nhouse": 6, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 58, "repvalue": 580000, "xcoord": 85.307467462162094, "ycoord": 27.617803713508099 }, "geometry": { "type": "Point", "coordinates": [ 85.307467462162094, 27.617803713508099 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1896, "nhouse": 18, "residents": 73, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 47, "repvalue": 1692000, "xcoord": 85.305327119524165, "ycoord": 27.618157910981036 }, "geometry": { "type": "Point", "coordinates": [ 85.305327119524165, 27.618157910981036 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1897, "nhouse": 4, "residents": 16, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 62, "repvalue": 372000, "xcoord": 85.304597619653137, "ycoord": 27.617008008681587 }, "geometry": { "type": "Point", "coordinates": [ 85.304597619653137, 27.617008008681587 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1898, "nhouse": 7, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 82, "repvalue": 656000, "xcoord": 85.306341606341817, "ycoord": 27.628534273484078 }, "geometry": { "type": "Point", "coordinates": [ 85.306341606341817, 27.628534273484078 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 1899, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 51, "repvalue": 1734000, "xcoord": 85.306370876028282, "ycoord": 27.626632985718732 }, "geometry": { "type": "Point", "coordinates": [ 85.306370876028282, 27.626632985718732 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 2681, "nhouse": 0, "residents": 0, "specialfac": 1, "expstr": "RCi+HC+7s+Edu", "fptarea": 98, "repvalue": 2058000, "xcoord": 85.303566771616289, "ycoord": 27.621559355585514 }, "geometry": { "type": "Point", "coordinates": [ 85.303566771616289, 27.621559355585514 ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "bldid": 2688, "nhouse": 0, "residents": 0, "specialfac": 2, "expstr": "RCi+MC+6s+Hea", "fptarea": 92, "repvalue": 2208000, "xcoord": 85.303584357331303, "ycoord": 27.620418583487112 }, "geometry": { "type": "Point", "coordinates": [ 85.303584357331303, 27.620418583487112 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1900, "nhouse": 8, "residents": 30, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 74, "repvalue": 740000, "xcoord": 85.316026354827997, "ycoord": 27.641332819263219 }, "geometry": { "type": "Point", "coordinates": [ 85.316026354827997, 27.641332819263219 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1901, "nhouse": 15, "residents": 56, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 86, "repvalue": 1376000, "xcoord": 85.316156011061025, "ycoord": 27.641109552208597 }, "geometry": { "type": "Point", "coordinates": [ 85.316156011061025, 27.641109552208597 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1902, "nhouse": 9, "residents": 22, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 56, "repvalue": 896000, "xcoord": 85.309269599402185, "ycoord": 27.637428277309663 }, "geometry": { "type": "Point", "coordinates": [ 85.309269599402185, 27.637428277309663 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1903, "nhouse": 5, "residents": 19, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 79, "repvalue": 474000, "xcoord": 85.309893732720127, "ycoord": 27.637885569915085 }, "geometry": { "type": "Point", "coordinates": [ 85.309893732720127, 27.637885569915085 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1904, "nhouse": 14, "residents": 54, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 45, "repvalue": 1350000, "xcoord": 85.310768564164277, "ycoord": 27.638458335321328 }, "geometry": { "type": "Point", "coordinates": [ 85.310768564164277, 27.638458335321328 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1905, "nhouse": 7, "residents": 30, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 63, "repvalue": 630000, "xcoord": 85.315175583792069, "ycoord": 27.639186485057245 }, "geometry": { "type": "Point", "coordinates": [ 85.315175583792069, 27.639186485057245 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1906, "nhouse": 29, "residents": 108, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 78, "repvalue": 2652000, "xcoord": 85.317580473928103, "ycoord": 27.638766004760761 }, "geometry": { "type": "Point", "coordinates": [ 85.317580473928103, 27.638766004760761 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1907, "nhouse": 12, "residents": 46, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 70, "repvalue": 1120000, "xcoord": 85.314511793054763, "ycoord": 27.641314414113005 }, "geometry": { "type": "Point", "coordinates": [ 85.314511793054763, 27.641314414113005 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1908, "nhouse": 3, "residents": 17, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 57, "repvalue": 342000, "xcoord": 85.317953948056768, "ycoord": 27.639107799361209 }, "geometry": { "type": "Point", "coordinates": [ 85.317953948056768, 27.639107799361209 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1909, "nhouse": 7, "residents": 30, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 50, "repvalue": 700000, "xcoord": 85.314919716841203, "ycoord": 27.639408217340605 }, "geometry": { "type": "Point", "coordinates": [ 85.314919716841203, 27.639408217340605 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1910, "nhouse": 2, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 61, "repvalue": 244000, "xcoord": 85.315310405026096, "ycoord": 27.638626018619266 }, "geometry": { "type": "Point", "coordinates": [ 85.315310405026096, 27.638626018619266 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1911, "nhouse": 9, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 67, "repvalue": 938000, "xcoord": 85.313253107956442, "ycoord": 27.641074264125013 }, "geometry": { "type": "Point", "coordinates": [ 85.313253107956442, 27.641074264125013 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1912, "nhouse": 1, "residents": 8, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 78, "repvalue": 156000, "xcoord": 85.317663692067995, "ycoord": 27.641577539760139 }, "geometry": { "type": "Point", "coordinates": [ 85.317663692067995, 27.641577539760139 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1913, "nhouse": 8, "residents": 30, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 48, "repvalue": 768000, "xcoord": 85.314008662988954, "ycoord": 27.64119587547895 }, "geometry": { "type": "Point", "coordinates": [ 85.314008662988954, 27.64119587547895 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1914, "nhouse": 5, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 49, "repvalue": 490000, "xcoord": 85.317710123765679, "ycoord": 27.638542735898124 }, "geometry": { "type": "Point", "coordinates": [ 85.317710123765679, 27.638542735898124 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1915, "nhouse": 15, "residents": 70, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 66, "repvalue": 1452000, "xcoord": 85.316306320248671, "ycoord": 27.639537484281497 }, "geometry": { "type": "Point", "coordinates": [ 85.316306320248671, 27.639537484281497 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1916, "nhouse": 12, "residents": 61, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 70, "repvalue": 1120000, "xcoord": 85.316582833594822, "ycoord": 27.637966948112599 }, "geometry": { "type": "Point", "coordinates": [ 85.316582833594822, 27.637966948112599 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1917, "nhouse": 4, "residents": 16, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 47, "repvalue": 376000, "xcoord": 85.317539198095602, "ycoord": 27.641463607995959 }, "geometry": { "type": "Point", "coordinates": [ 85.317539198095602, 27.641463607995959 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1918, "nhouse": 5, "residents": 15, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 85, "repvalue": 510000, "xcoord": 85.315044205757744, "ycoord": 27.639522151265894 }, "geometry": { "type": "Point", "coordinates": [ 85.315044205757744, 27.639522151265894 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1919, "nhouse": 3, "residents": 15, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 69, "repvalue": 276000, "xcoord": 85.312540678222717, "ycoord": 27.63814265242689 }, "geometry": { "type": "Point", "coordinates": [ 85.312540678222717, 27.63814265242689 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1920, "nhouse": 8, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 67, "repvalue": 804000, "xcoord": 85.315042483398912, "ycoord": 27.639634551263669 }, "geometry": { "type": "Point", "coordinates": [ 85.315042483398912, 27.639634551263669 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1921, "nhouse": 2, "residents": 4, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 56, "repvalue": 224000, "xcoord": 85.314298999186619, "ycoord": 27.638726146214829 }, "geometry": { "type": "Point", "coordinates": [ 85.314298999186619, 27.638726146214829 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1922, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 52, "repvalue": 312000, "xcoord": 85.315417674053705, "ycoord": 27.639863952428971 }, "geometry": { "type": "Point", "coordinates": [ 85.315417674053705, 27.639863952428971 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1923, "nhouse": 18, "residents": 71, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 60, "repvalue": 1680000, "xcoord": 85.317412984311233, "ycoord": 27.64146207623504 }, "geometry": { "type": "Point", "coordinates": [ 85.317412984311233, 27.64146207623504 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1924, "nhouse": 5, "residents": 12, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 77, "repvalue": 462000, "xcoord": 85.316707322770498, "ycoord": 27.638080880570726 }, "geometry": { "type": "Point", "coordinates": [ 85.316707322770498, 27.638080880570726 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1925, "nhouse": 15, "residents": 64, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 67, "repvalue": 1340000, "xcoord": 85.314537637366257, "ycoord": 27.639628414814315 }, "geometry": { "type": "Point", "coordinates": [ 85.314537637366257, 27.639628414814315 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1926, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 69, "repvalue": 138000, "xcoord": 85.317916119944272, "ycoord": 27.641580602722559 }, "geometry": { "type": "Point", "coordinates": [ 85.317916119944272, 27.641580602722559 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1927, "nhouse": 12, "residents": 54, "specialfac": 0, "expstr": "RCi+HC+9s+Res", "fptarea": 62, "repvalue": 1116000, "xcoord": 85.309895460212317, "ycoord": 27.637773170187774 }, "geometry": { "type": "Point", "coordinates": [ 85.309895460212317, 27.637773170187774 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1928, "nhouse": 22, "residents": 90, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 68, "repvalue": 2040000, "xcoord": 85.316681513413144, "ycoord": 27.639766882130946 }, "geometry": { "type": "Point", "coordinates": [ 85.316681513413144, 27.639766882130946 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1929, "nhouse": 6, "residents": 23, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 74, "repvalue": 592000, "xcoord": 85.313424146040774, "ycoord": 27.638153402199769 }, "geometry": { "type": "Point", "coordinates": [ 85.313424146040774, 27.638153402199769 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1930, "nhouse": 26, "residents": 105, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 81, "repvalue": 2430000, "xcoord": 85.317194961429948, "ycoord": 27.639211010186404 }, "geometry": { "type": "Point", "coordinates": [ 85.317194961429948, 27.639211010186404 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1931, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 61, "repvalue": 244000, "xcoord": 85.315652879812319, "ycoord": 27.640991019503431 }, "geometry": { "type": "Point", "coordinates": [ 85.315652879812319, 27.640991019503431 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1932, "nhouse": 11, "residents": 49, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 70, "repvalue": 980000, "xcoord": 85.314508346976979, "ycoord": 27.641539213986832 }, "geometry": { "type": "Point", "coordinates": [ 85.314508346976979, 27.641539213986832 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1933, "nhouse": 2, "residents": 10, "specialfac": 0, "expstr": "BrCri+MC+2s+Res", "fptarea": 55, "repvalue": 220000, "xcoord": 85.311024436739331, "ycoord": 27.638236610947597 }, "geometry": { "type": "Point", "coordinates": [ 85.311024436739331, 27.638236610947597 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1934, "nhouse": 5, "residents": 25, "specialfac": 0, "expstr": "BrCri+MC+3s+Res", "fptarea": 77, "repvalue": 462000, "xcoord": 85.316705602216416, "ycoord": 27.638193280688185 }, "geometry": { "type": "Point", "coordinates": [ 85.316705602216416, 27.638193280688185 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1935, "nhouse": 4, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 69, "repvalue": 414000, "xcoord": 85.314902491615129, "ycoord": 27.640532217178251 }, "geometry": { "type": "Point", "coordinates": [ 85.314902491615129, 27.640532217178251 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1936, "nhouse": 7, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 48, "repvalue": 672000, "xcoord": 85.316572509407493, "ycoord": 27.638641348756405 }, "geometry": { "type": "Point", "coordinates": [ 85.316572509407493, 27.638641348756405 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1937, "nhouse": 4, "residents": 17, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 79, "repvalue": 474000, "xcoord": 85.316812886868888, "ycoord": 27.639431214172095 }, "geometry": { "type": "Point", "coordinates": [ 85.316812886868888, 27.639431214172095 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1938, "nhouse": 4, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 48, "repvalue": 384000, "xcoord": 85.312784474656723, "ycoord": 27.638707723793001 }, "geometry": { "type": "Point", "coordinates": [ 85.312784474656723, 27.638707723793001 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1939, "nhouse": 15, "residents": 58, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 69, "repvalue": 1380000, "xcoord": 85.312893439733699, "ycoord": 27.639833258412061 }, "geometry": { "type": "Point", "coordinates": [ 85.312893439733699, 27.639833258412061 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1940, "nhouse": 6, "residents": 22, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 47, "repvalue": 564000, "xcoord": 85.312286533862022, "ycoord": 27.63825197989058 }, "geometry": { "type": "Point", "coordinates": [ 85.312286533862022, 27.63825197989058 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1941, "nhouse": 9, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 70, "repvalue": 840000, "xcoord": 85.316916732099997, "ycoord": 27.640893947642674 }, "geometry": { "type": "Point", "coordinates": [ 85.316916732099997, 27.640893947642674 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1942, "nhouse": 1, "residents": 2, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 75, "repvalue": 150000, "xcoord": 85.312519979768339, "ycoord": 27.639491450799518 }, "geometry": { "type": "Point", "coordinates": [ 85.312519979768339, 27.639491450799518 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1943, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 49, "repvalue": 196000, "xcoord": 85.312414468574374, "ycoord": 27.638141116285947 }, "geometry": { "type": "Point", "coordinates": [ 85.312414468574374, 27.638141116285947 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1944, "nhouse": 11, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 87, "repvalue": 1044000, "xcoord": 85.313420698202208, "ycoord": 27.638378202049921 }, "geometry": { "type": "Point", "coordinates": [ 85.313420698202208, 27.638378202049921 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1945, "nhouse": 2, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 58, "repvalue": 232000, "xcoord": 85.317965983263932, "ycoord": 27.638320998096692 }, "geometry": { "type": "Point", "coordinates": [ 85.317965983263932, 27.638320998096692 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1946, "nhouse": 5, "residents": 22, "specialfac": 0, "expstr": "BrCfl+MC+3s+Res", "fptarea": 77, "repvalue": 462000, "xcoord": 85.313256556531897, "ycoord": 27.640849464381692 }, "geometry": { "type": "Point", "coordinates": [ 85.313256556531897, 27.640849464381692 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1947, "nhouse": 21, "residents": 83, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 67, "repvalue": 1876000, "xcoord": 85.31552150074404, "ycoord": 27.64132668604984 }, "geometry": { "type": "Point", "coordinates": [ 85.31552150074404, 27.64132668604984 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1948, "nhouse": 7, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 44, "repvalue": 704000, "xcoord": 85.309515105207893, "ycoord": 27.637880953960877 }, "geometry": { "type": "Point", "coordinates": [ 85.309515105207893, 27.637880953960877 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1949, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 55, "repvalue": 110000, "xcoord": 85.313023100226147, "ycoord": 27.639609994446957 }, "geometry": { "type": "Point", "coordinates": [ 85.313023100226147, 27.639609994446957 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1950, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 86, "repvalue": 344000, "xcoord": 85.312143071527061, "ycoord": 27.639374441937619 }, "geometry": { "type": "Point", "coordinates": [ 85.312143071527061, 27.639374441937619 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1951, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 56, "repvalue": 224000, "xcoord": 85.309388896057143, "ycoord": 27.637879415079926 }, "geometry": { "type": "Point", "coordinates": [ 85.309388896057143, 27.637879415079926 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1952, "nhouse": 29, "residents": 116, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 76, "repvalue": 2584000, "xcoord": 85.312646190972984, "ycoord": 27.639492986913282 }, "geometry": { "type": "Point", "coordinates": [ 85.312646190972984, 27.639492986913282 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1953, "nhouse": 6, "residents": 26, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 75, "repvalue": 600000, "xcoord": 85.311389257603778, "ycoord": 27.639140421240363 }, "geometry": { "type": "Point", "coordinates": [ 85.311389257603778, 27.639140421240363 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1954, "nhouse": 10, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 71, "repvalue": 994000, "xcoord": 85.314406256813697, "ycoord": 27.639964080287466 }, "geometry": { "type": "Point", "coordinates": [ 85.314406256813697, 27.639964080287466 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1955, "nhouse": 6, "residents": 19, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 61, "repvalue": 610000, "xcoord": 85.317684329274201, "ycoord": 27.640228738216599 }, "geometry": { "type": "Point", "coordinates": [ 85.317684329274201, 27.640228738216599 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1956, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 46, "repvalue": 276000, "xcoord": 85.317559836728805, "ycoord": 27.640114806516689 }, "geometry": { "type": "Point", "coordinates": [ 85.317559836728805, 27.640114806516689 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1957, "nhouse": 3, "residents": 7, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 58, "repvalue": 348000, "xcoord": 85.315265629230623, "ycoord": 27.641548418715683 }, "geometry": { "type": "Point", "coordinates": [ 85.315265629230623, 27.641548418715683 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1958, "nhouse": 9, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 65, "repvalue": 910000, "xcoord": 85.313673118184056, "ycoord": 27.638381272409788 }, "geometry": { "type": "Point", "coordinates": [ 85.313673118184056, 27.638381272409788 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1959, "nhouse": 31, "residents": 126, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 83, "repvalue": 2822000, "xcoord": 85.317049826766677, "ycoord": 27.640445879442055 }, "geometry": { "type": "Point", "coordinates": [ 85.317049826766677, 27.640445879442055 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1960, "nhouse": 5, "residents": 18, "specialfac": 0, "expstr": "BrCfl+MC+3s+Res", "fptarea": 87, "repvalue": 522000, "xcoord": 85.316192156869093, "ycoord": 27.638749150999182 }, "geometry": { "type": "Point", "coordinates": [ 85.316192156869093, 27.638749150999182 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1961, "nhouse": 12, "residents": 52, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 77, "repvalue": 1078000, "xcoord": 85.311897551647249, "ycoord": 27.63892176940319 }, "geometry": { "type": "Point", "coordinates": [ 85.311897551647249, 27.63892176940319 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1962, "nhouse": 5, "residents": 17, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 87, "repvalue": 522000, "xcoord": 85.315557660501852, "ycoord": 27.638966285686077 }, "geometry": { "type": "Point", "coordinates": [ 85.315557660501852, 27.638966285686077 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1963, "nhouse": 10, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 80, "repvalue": 960000, "xcoord": 85.312023762157651, "ycoord": 27.638923306054359 }, "geometry": { "type": "Point", "coordinates": [ 85.312023762157651, 27.638923306054359 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1964, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 47, "repvalue": 282000, "xcoord": 85.312274458064493, "ycoord": 27.639038778859252 }, "geometry": { "type": "Point", "coordinates": [ 85.312274458064493, 27.639038778859252 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1965, "nhouse": 12, "residents": 47, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 60, "repvalue": 1200000, "xcoord": 85.317544357888337, "ycoord": 27.641126407652077 }, "geometry": { "type": "Point", "coordinates": [ 85.317544357888337, 27.641126407652077 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1966, "nhouse": 13, "residents": 68, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 72, "repvalue": 1152000, "xcoord": 85.315317293011759, "ycoord": 27.638176418489145 }, "geometry": { "type": "Point", "coordinates": [ 85.315317293011759, 27.638176418489145 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1967, "nhouse": 9, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 57, "repvalue": 798000, "xcoord": 85.3136679471245, "ycoord": 27.638718472214379 }, "geometry": { "type": "Point", "coordinates": [ 85.3136679471245, 27.638718472214379 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1968, "nhouse": 11, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 71, "repvalue": 994000, "xcoord": 85.311648582202864, "ycoord": 27.638693896129965 }, "geometry": { "type": "Point", "coordinates": [ 85.311648582202864, 27.638693896129965 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1969, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 72, "repvalue": 288000, "xcoord": 85.317844931241126, "ycoord": 27.637982266334973 }, "geometry": { "type": "Point", "coordinates": [ 85.317844931241126, 27.637982266334973 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1970, "nhouse": 26, "residents": 109, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 71, "repvalue": 2414000, "xcoord": 85.318298200178532, "ycoord": 27.641360395994425 }, "geometry": { "type": "Point", "coordinates": [ 85.318298200178532, 27.641360395994425 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1971, "nhouse": 13, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 78, "repvalue": 1248000, "xcoord": 85.317326332585438, "ycoord": 27.638875341615833 }, "geometry": { "type": "Point", "coordinates": [ 85.317326332585438, 27.638875341615833 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1972, "nhouse": 9, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 51, "repvalue": 816000, "xcoord": 85.313045516915977, "ycoord": 27.638148795842909 }, "geometry": { "type": "Point", "coordinates": [ 85.313045516915977, 27.638148795842909 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1973, "nhouse": 12, "residents": 55, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 46, "repvalue": 1104000, "xcoord": 85.311531001315615, "ycoord": 27.638130360085572 }, "geometry": { "type": "Point", "coordinates": [ 85.311531001315615, 27.638130360085572 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1974, "nhouse": 19, "residents": 71, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 50, "repvalue": 1700000, "xcoord": 85.311019257591795, "ycoord": 27.638573810298027 }, "geometry": { "type": "Point", "coordinates": [ 85.311019257591795, 27.638573810298027 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1975, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrCri+MC+1s+Res", "fptarea": 82, "repvalue": 164000, "xcoord": 85.317046386003341, "ycoord": 27.640670679638053 }, "geometry": { "type": "Point", "coordinates": [ 85.317046386003341, 27.640670679638053 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1976, "nhouse": 6, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 52, "repvalue": 624000, "xcoord": 85.317677450364769, "ycoord": 27.640678338761852 }, "geometry": { "type": "Point", "coordinates": [ 85.317677450364769, 27.640678338761852 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1977, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 68, "repvalue": 136000, "xcoord": 85.314793505585783, "ycoord": 27.639406683300237 }, "geometry": { "type": "Point", "coordinates": [ 85.314793505585783, 27.639406683300237 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1978, "nhouse": 8, "residents": 21, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 64, "repvalue": 768000, "xcoord": 85.317675730612535, "ycoord": 27.640790738893365 }, "geometry": { "type": "Point", "coordinates": [ 85.317675730612535, 27.640790738893365 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1979, "nhouse": 6, "residents": 29, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 68, "repvalue": 544000, "xcoord": 85.315929407243544, "ycoord": 27.639420485531339 }, "geometry": { "type": "Point", "coordinates": [ 85.315929407243544, 27.639420485531339 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1980, "nhouse": 19, "residents": 76, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 68, "repvalue": 1768000, "xcoord": 85.317461142499795, "ycoord": 27.638314872556851 }, "geometry": { "type": "Point", "coordinates": [ 85.317461142499795, 27.638314872556851 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1981, "nhouse": 5, "residents": 21, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 81, "repvalue": 486000, "xcoord": 85.315804917474082, "ycoord": 27.639306552363895 }, "geometry": { "type": "Point", "coordinates": [ 85.315804917474082, 27.639306552363895 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1982, "nhouse": 9, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 78, "repvalue": 936000, "xcoord": 85.310398569543153, "ycoord": 27.637891722913849 }, "geometry": { "type": "Point", "coordinates": [ 85.310398569543153, 27.637891722913849 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1983, "nhouse": 8, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 49, "repvalue": 784000, "xcoord": 85.317181200044985, "ycoord": 27.640110211151594 }, "geometry": { "type": "Point", "coordinates": [ 85.317181200044985, 27.640110211151594 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1984, "nhouse": 29, "residents": 101, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 73, "repvalue": 2628000, "xcoord": 85.317813980798107, "ycoord": 27.640005469369168 }, "geometry": { "type": "Point", "coordinates": [ 85.317813980798107, 27.640005469369168 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1985, "nhouse": 4, "residents": 16, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 76, "repvalue": 456000, "xcoord": 85.313766579077466, "ycoord": 27.64051840602648 }, "geometry": { "type": "Point", "coordinates": [ 85.313766579077466, 27.64051840602648 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1986, "nhouse": 11, "residents": 51, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 67, "repvalue": 1072000, "xcoord": 85.315905306081049, "ycoord": 27.640994086066407 }, "geometry": { "type": "Point", "coordinates": [ 85.315905306081049, 27.640994086066407 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1987, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 81, "repvalue": 324000, "xcoord": 85.312015135049663, "ycoord": 27.63948530519664 }, "geometry": { "type": "Point", "coordinates": [ 85.312015135049663, 27.63948530519664 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1988, "nhouse": 8, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 49, "repvalue": 784000, "xcoord": 85.314141769788876, "ycoord": 27.640747810633812 }, "geometry": { "type": "Point", "coordinates": [ 85.314141769788876, 27.640747810633812 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1989, "nhouse": 13, "residents": 58, "specialfac": 0, "expstr": "RCi+HC+9s+Res", "fptarea": 69, "repvalue": 1242000, "xcoord": 85.314418317835816, "ycoord": 27.639177280558169 }, "geometry": { "type": "Point", "coordinates": [ 85.314418317835816, 27.639177280558169 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1990, "nhouse": 16, "residents": 60, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 51, "repvalue": 1632000, "xcoord": 85.311269951564739, "ycoord": 27.638689284842918 }, "geometry": { "type": "Point", "coordinates": [ 85.311269951564739, 27.638689284842918 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 2687, "nhouse": 0, "residents": 0, "specialfac": 1, "expstr": "RCi+HC+8s+Edu", "fptarea": 137, "repvalue": 3288000, "xcoord": 85.313628299350384, "ycoord": 27.641303670141674 }, "geometry": { "type": "Point", "coordinates": [ 85.313628299350384, 27.641303670141674 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 2029, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Com", "fptarea": 118, "repvalue": 2360000, "xcoord": 85.31607078593585, "ycoord": 27.626476388140617 }, "geometry": { "type": "Point", "coordinates": [ 85.31607078593585, 27.626476388140617 ] } } +] +} diff --git a/building_tv50_3.geojson b/building_tv50_3.geojson new file mode 100644 index 0000000000000000000000000000000000000000..d01dac48f6b7f26860e5cfbc6499b9b29169dfea --- /dev/null +++ b/building_tv50_3.geojson @@ -0,0 +1,1596 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1, "nhouse": 5, "residents": 25, "specialfac": 0, "expstr": "BrM+LC+3s+ResCom", "fptarea": 99, "repvalue": 594000, "xcoord": 85.317748789818708, "ycoord": 27.628178548553819 }, "geometry": { "type": "Point", "coordinates": [ 85.317748789818708, 27.628178548553819 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 2, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "BrCri+LC+2s+ResCom", "fptarea": 102, "repvalue": 408000, "xcoord": 85.315355580810376, "ycoord": 27.630252747294801 }, "geometry": { "type": "Point", "coordinates": [ 85.315355580810376, 27.630252747294801 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 3, "nhouse": 3, "residents": 16, "specialfac": 0, "expstr": "BrCfl+LC+2s+ResCom", "fptarea": 88, "repvalue": 352000, "xcoord": 85.314076114686799, "ycoord": 27.628133948941539 }, "geometry": { "type": "Point", "coordinates": [ 85.314076114686799, 27.628133948941539 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 4, "nhouse": 24, "residents": 104, "specialfac": 0, "expstr": "RCi+HC+13s+ResCom", "fptarea": 103, "repvalue": 2678000, "xcoord": 85.316369174106882, "ycoord": 27.632602001384498 }, "geometry": { "type": "Point", "coordinates": [ 85.316369174106882, 27.632602001384498 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 5, "nhouse": 19, "residents": 88, "specialfac": 0, "expstr": "RCi+HC+15s+ResCom", "fptarea": 65, "repvalue": 1950000, "xcoord": 85.317743430474465, "ycoord": 27.628529025486223 }, "geometry": { "type": "Point", "coordinates": [ 85.317743430474465, 27.628529025486223 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 6, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 63, "repvalue": 252000, "xcoord": 85.314394429459497, "ycoord": 27.633045399211419 }, "geometry": { "type": "Point", "coordinates": [ 85.314394429459497, 27.633045399211419 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 7, "nhouse": 15, "residents": 57, "specialfac": 0, "expstr": "RCi+HC+11s+ResCom", "fptarea": 73, "repvalue": 1606000, "xcoord": 85.313314189187722, "ycoord": 27.626488823721587 }, "geometry": { "type": "Point", "coordinates": [ 85.313314189187722, 27.626488823721587 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 8, "nhouse": 4, "residents": 16, "specialfac": 0, "expstr": "BrM+LC+3s+Res", "fptarea": 70, "repvalue": 420000, "xcoord": 85.310903001763023, "ycoord": 27.629731196487601 }, "geometry": { "type": "Point", "coordinates": [ 85.310903001763023, 27.629731196487601 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 9, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 58, "repvalue": 232000, "xcoord": 85.313576518821009, "ycoord": 27.626492013897256 }, "geometry": { "type": "Point", "coordinates": [ 85.313576518821009, 27.626492013897256 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 10, "nhouse": 22, "residents": 90, "specialfac": 0, "expstr": "RCi+HC+14s+ResCom", "fptarea": 86, "repvalue": 2408000, "xcoord": 85.316926039808266, "ycoord": 27.630505511260587 }, "geometry": { "type": "Point", "coordinates": [ 85.316926039808266, 27.630505511260587 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 11, "nhouse": 5, "residents": 17, "specialfac": 0, "expstr": "BrM+LC+3s+ResCom", "fptarea": 99, "repvalue": 594000, "xcoord": 85.315121871126905, "ycoord": 27.628380352578837 }, "geometry": { "type": "Point", "coordinates": [ 85.315121871126905, 27.628380352578837 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 12, "nhouse": 2, "residents": 13, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 73, "repvalue": 292000, "xcoord": 85.315130817172715, "ycoord": 27.627796225124087 }, "geometry": { "type": "Point", "coordinates": [ 85.315130817172715, 27.627796225124087 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 13, "nhouse": 4, "residents": 14, "specialfac": 0, "expstr": "BrM+MC+3s+ResCom", "fptarea": 70, "repvalue": 420000, "xcoord": 85.309293068542843, "ycoord": 27.63204851746298 }, "geometry": { "type": "Point", "coordinates": [ 85.309293068542843, 27.63204851746298 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 14, "nhouse": 7, "residents": 18, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 62, "repvalue": 744000, "xcoord": 85.315059241267562, "ycoord": 27.632469243309391 }, "geometry": { "type": "Point", "coordinates": [ 85.315059241267562, 27.632469243309391 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 15, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "BrM+LC+3s+ResCom", "fptarea": 64, "repvalue": 384000, "xcoord": 85.317413191442938, "ycoord": 27.632965215238169 }, "geometry": { "type": "Point", "coordinates": [ 85.317413191442938, 27.632965215238169 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 16, "nhouse": 25, "residents": 103, "specialfac": 0, "expstr": "RCi+HC+14s+ResCom", "fptarea": 97, "repvalue": 2716000, "xcoord": 85.313255079940703, "ycoord": 27.630344061078219 }, "geometry": { "type": "Point", "coordinates": [ 85.313255079940703, 27.630344061078219 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 17, "nhouse": 2, "residents": 12, "specialfac": 0, "expstr": "BrCri+LC+2s+ResCom", "fptarea": 63, "repvalue": 252000, "xcoord": 85.310734157784623, "ycoord": 27.632182927519374 }, "geometry": { "type": "Point", "coordinates": [ 85.310734157784623, 27.632182927519374 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 18, "nhouse": 26, "residents": 89, "specialfac": 0, "expstr": "RCi+HC+16s+ResCom", "fptarea": 87, "repvalue": 2784000, "xcoord": 85.31754972523909, "ycoord": 27.632616330182262 }, "geometry": { "type": "Point", "coordinates": [ 85.31754972523909, 27.632616330182262 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 19, "nhouse": 16, "residents": 64, "specialfac": 0, "expstr": "RCi+HC+9s+ResCom", "fptarea": 105, "repvalue": 1890000, "xcoord": 85.316106829529218, "ycoord": 27.632598815843604 }, "geometry": { "type": "Point", "coordinates": [ 85.316106829529218, 27.632598815843604 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 20, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 71, "repvalue": 284000, "xcoord": 85.31486848422017, "ycoord": 27.627793037749566 }, "geometry": { "type": "Point", "coordinates": [ 85.31486848422017, 27.627793037749566 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 21, "nhouse": 5, "residents": 20, "specialfac": 0, "expstr": "BrM+LC+4s+ResCom", "fptarea": 69, "repvalue": 552000, "xcoord": 85.313515627662312, "ycoord": 27.630464077128952 }, "geometry": { "type": "Point", "coordinates": [ 85.313515627662312, 27.630464077128952 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 22, "nhouse": 17, "residents": 59, "specialfac": 0, "expstr": "RCi+HC+14s+ResCom", "fptarea": 68, "repvalue": 1904000, "xcoord": 85.316458572264395, "ycoord": 27.626760724302827 }, "geometry": { "type": "Point", "coordinates": [ 85.316458572264395, 27.626760724302827 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 23, "nhouse": 4, "residents": 20, "specialfac": 0, "expstr": "BrM+LC+3s+ResCom", "fptarea": 76, "repvalue": 456000, "xcoord": 85.312308215584707, "ycoord": 27.632202094032905 }, "geometry": { "type": "Point", "coordinates": [ 85.312308215584707, 27.632202094032905 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 24, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrCri+LC+1s+ResCom", "fptarea": 80, "repvalue": 160000, "xcoord": 85.315022910958817, "ycoord": 27.626275899976001 }, "geometry": { "type": "Point", "coordinates": [ 85.315022910958817, 27.626275899976001 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 25, "nhouse": 6, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 63, "repvalue": 756000, "xcoord": 85.310994706732586, "ycoord": 27.632302948349775 }, "geometry": { "type": "Point", "coordinates": [ 85.310994706732586, 27.632302948349775 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 26, "nhouse": 5, "residents": 25, "specialfac": 0, "expstr": "BrM+MC+3s+ResCom", "fptarea": 103, "repvalue": 618000, "xcoord": 85.314435604951782, "ycoord": 27.630358415304872 }, "geometry": { "type": "Point", "coordinates": [ 85.314435604951782, 27.630358415304872 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 27, "nhouse": 11, "residents": 43, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 90, "repvalue": 1260000, "xcoord": 85.317447145373691, "ycoord": 27.630745529481093 }, "geometry": { "type": "Point", "coordinates": [ 85.317447145373691, 27.630745529481093 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 28, "nhouse": 4, "residents": 16, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 75, "repvalue": 450000, "xcoord": 85.31183014566254, "ycoord": 27.629158250750336 }, "geometry": { "type": "Point", "coordinates": [ 85.31183014566254, 27.629158250750336 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 29, "nhouse": 11, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 81, "repvalue": 1134000, "xcoord": 85.315964925164707, "ycoord": 27.633298175646754 }, "geometry": { "type": "Point", "coordinates": [ 85.315964925164707, 27.633298175646754 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 30, "nhouse": 4, "residents": 20, "specialfac": 0, "expstr": "BrM+LC+3s+ResCom", "fptarea": 74, "repvalue": 444000, "xcoord": 85.316079380832605, "ycoord": 27.625821342360055 }, "geometry": { "type": "Point", "coordinates": [ 85.316079380832605, 27.625821342360055 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 31, "nhouse": 4, "residents": 18, "specialfac": 0, "expstr": "RCi+HC+4s+ResCom", "fptarea": 61, "repvalue": 488000, "xcoord": 85.316054347422423, "ycoord": 27.627456900367811 }, "geometry": { "type": "Point", "coordinates": [ 85.316054347422423, 27.627456900367811 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 32, "nhouse": 1, "residents": 5, "specialfac": 0, "expstr": "BrCri+LC+1s+ResCom", "fptarea": 95, "repvalue": 190000, "xcoord": 85.31573656789763, "ycoord": 27.631075305571844 }, "geometry": { "type": "Point", "coordinates": [ 85.31573656789763, 27.631075305571844 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 33, "nhouse": 9, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 106, "repvalue": 1060000, "xcoord": 85.315078926359277, "ycoord": 27.631184163639446 }, "geometry": { "type": "Point", "coordinates": [ 85.315078926359277, 27.631184163639446 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 34, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 84, "repvalue": 336000, "xcoord": 85.314462455463087, "ycoord": 27.628606033904759 }, "geometry": { "type": "Point", "coordinates": [ 85.314462455463087, 27.628606033904759 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 35, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 102, "repvalue": 408000, "xcoord": 85.314606151310713, "ycoord": 27.627789849879282 }, "geometry": { "type": "Point", "coordinates": [ 85.314606151310713, 27.627789849879282 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 36, "nhouse": 12, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 107, "repvalue": 1284000, "xcoord": 85.314742686510442, "ycoord": 27.627440967449502 }, "geometry": { "type": "Point", "coordinates": [ 85.314742686510442, 27.627440967449502 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 37, "nhouse": 19, "residents": 72, "specialfac": 0, "expstr": "RCi+HC+16s+ResCom", "fptarea": 66, "repvalue": 2112000, "xcoord": 85.316617214752341, "ycoord": 27.633539790407024 }, "geometry": { "type": "Point", "coordinates": [ 85.316617214752341, 27.633539790407024 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 38, "nhouse": 10, "residents": 47, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 80, "repvalue": 1120000, "xcoord": 85.315407461055699, "ycoord": 27.626864807841393 }, "geometry": { "type": "Point", "coordinates": [ 85.315407461055699, 27.626864807841393 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 39, "nhouse": 3, "residents": 8, "specialfac": 0, "expstr": "BrCri+LC+3s+ResCom", "fptarea": 63, "repvalue": 378000, "xcoord": 85.316746600285995, "ycoord": 27.633658208302229 }, "geometry": { "type": "Point", "coordinates": [ 85.316746600285995, 27.633658208302229 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 40, "nhouse": 6, "residents": 20, "specialfac": 0, "expstr": "BrM+LC+4s+ResCom", "fptarea": 85, "repvalue": 680000, "xcoord": 85.316124714096148, "ycoord": 27.631430560999657 }, "geometry": { "type": "Point", "coordinates": [ 85.316124714096148, 27.631430560999657 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 41, "nhouse": 4, "residents": 16, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 77, "repvalue": 462000, "xcoord": 85.312886655725634, "ycoord": 27.628703719469762 }, "geometry": { "type": "Point", "coordinates": [ 85.312886655725634, 27.628703719469762 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 42, "nhouse": 8, "residents": 34, "specialfac": 0, "expstr": "BrM+LC+4s+ResCom", "fptarea": 103, "repvalue": 824000, "xcoord": 85.316004274273425, "ycoord": 27.630728015163186 }, "geometry": { "type": "Point", "coordinates": [ 85.316004274273425, 27.630728015163186 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 43, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "BrM+LC+1s+ResCom", "fptarea": 101, "repvalue": 202000, "xcoord": 85.312333309720742, "ycoord": 27.63056654030429 }, "geometry": { "type": "Point", "coordinates": [ 85.312333309720742, 27.63056654030429 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 44, "nhouse": 9, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 81, "repvalue": 972000, "xcoord": 85.316158691807985, "ycoord": 27.629210876224427 }, "geometry": { "type": "Point", "coordinates": [ 85.316158691807985, 27.629210876224427 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 45, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrM+LC+1s+ResCom", "fptarea": 68, "repvalue": 136000, "xcoord": 85.314616889549299, "ycoord": 27.627088897054087 }, "geometry": { "type": "Point", "coordinates": [ 85.314616889549299, 27.627088897054087 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 46, "nhouse": 37, "residents": 147, "specialfac": 0, "expstr": "RCi+HC+18s+ResCom", "fptarea": 108, "repvalue": 3888000, "xcoord": 85.313826315048672, "ycoord": 27.627312981607815 }, "geometry": { "type": "Point", "coordinates": [ 85.313826315048672, 27.627312981607815 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 47, "nhouse": 4, "residents": 17, "specialfac": 0, "expstr": "BrCfl+LC+3s+ResCom", "fptarea": 71, "repvalue": 426000, "xcoord": 85.317482882159013, "ycoord": 27.628409017348591 }, "geometry": { "type": "Point", "coordinates": [ 85.317482882159013, 27.628409017348591 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 48, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "BrCri+LC+2s+ResCom", "fptarea": 88, "repvalue": 352000, "xcoord": 85.314813005769423, "ycoord": 27.631414626644517 }, "geometry": { "type": "Point", "coordinates": [ 85.314813005769423, 27.631414626644517 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 49, "nhouse": 11, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 103, "repvalue": 1236000, "xcoord": 85.317039335686218, "ycoord": 27.631675358768277 }, "geometry": { "type": "Point", "coordinates": [ 85.317039335686218, 27.631675358768277 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 50, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrCri+LC+1s+ResCom", "fptarea": 66, "repvalue": 132000, "xcoord": 85.311936215387391, "ycoord": 27.630795401190884 }, "geometry": { "type": "Point", "coordinates": [ 85.311936215387391, 27.630795401190884 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 51, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "BrCri+LC+2s+ResCom", "fptarea": 87, "repvalue": 348000, "xcoord": 85.316665487908836, "ycoord": 27.630385501450686 }, "geometry": { "type": "Point", "coordinates": [ 85.316665487908836, 27.630385501450686 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 52, "nhouse": 24, "residents": 106, "specialfac": 0, "expstr": "RCi+HC+12s+ResCom", "fptarea": 106, "repvalue": 2544000, "xcoord": 85.314884588928408, "ycoord": 27.626741608342005 }, "geometry": { "type": "Point", "coordinates": [ 85.314884588928408, 27.626741608342005 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 53, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "BrM+MC+2s+ResCom", "fptarea": 89, "repvalue": 356000, "xcoord": 85.311273192216348, "ycoord": 27.631254716764644 }, "geometry": { "type": "Point", "coordinates": [ 85.311273192216348, 27.631254716764644 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 54, "nhouse": 6, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 57, "repvalue": 684000, "xcoord": 85.315371682545248, "ycoord": 27.629201317996028 }, "geometry": { "type": "Point", "coordinates": [ 85.315371682545248, 27.629201317996028 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 55, "nhouse": 8, "residents": 31, "specialfac": 0, "expstr": "BrM+LC+4s+ResCom", "fptarea": 105, "repvalue": 840000, "xcoord": 85.312725026618452, "ycoord": 27.630688154115845 }, "geometry": { "type": "Point", "coordinates": [ 85.312725026618452, 27.630688154115845 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 56, "nhouse": 8, "residents": 31, "specialfac": 0, "expstr": "BrM+LC+4s+ResCom", "fptarea": 107, "repvalue": 856000, "xcoord": 85.316203393404138, "ycoord": 27.626290237220982 }, "geometry": { "type": "Point", "coordinates": [ 85.316203393404138, 27.626290237220982 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 57, "nhouse": 15, "residents": 72, "specialfac": 0, "expstr": "RCi+HC+10s+ResCom", "fptarea": 81, "repvalue": 1620000, "xcoord": 85.315783072747777, "ycoord": 27.628037842458298 }, "geometry": { "type": "Point", "coordinates": [ 85.315783072747777, 27.628037842458298 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 58, "nhouse": 5, "residents": 23, "specialfac": 0, "expstr": "BrM+LC+3s+ResCom", "fptarea": 89, "repvalue": 534000, "xcoord": 85.31538062757663, "ycoord": 27.628617190535191 }, "geometry": { "type": "Point", "coordinates": [ 85.31538062757663, 27.628617190535191 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 59, "nhouse": 15, "residents": 57, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 102, "repvalue": 1632000, "xcoord": 85.316334558174105, "ycoord": 27.626291829628546 }, "geometry": { "type": "Point", "coordinates": [ 85.316334558174105, 27.626291829628546 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 60, "nhouse": 5, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 107, "repvalue": 642000, "xcoord": 85.317183017846332, "ycoord": 27.630859171744358 }, "geometry": { "type": "Point", "coordinates": [ 85.317183017846332, 27.630859171744358 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 61, "nhouse": 5, "residents": 13, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 100, "repvalue": 600000, "xcoord": 85.313175859698831, "ycoord": 27.626954530034471 }, "geometry": { "type": "Point", "coordinates": [ 85.313175859698831, 27.626954530034471 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 62, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 72, "repvalue": 288000, "xcoord": 85.312081726194577, "ycoord": 27.629862395717922 }, "geometry": { "type": "Point", "coordinates": [ 85.312081726194577, 27.629862395717922 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 63, "nhouse": 10, "residents": 47, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 105, "repvalue": 1050000, "xcoord": 85.311267811545662, "ycoord": 27.6316051923712 }, "geometry": { "type": "Point", "coordinates": [ 85.311267811545662, 27.6316051923712 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 64, "nhouse": 4, "residents": 14, "specialfac": 0, "expstr": "BrM+LC+3s+ResCom", "fptarea": 74, "repvalue": 444000, "xcoord": 85.313880484088969, "ycoord": 27.632338068041374 }, "geometry": { "type": "Point", "coordinates": [ 85.313880484088969, 27.632338068041374 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 65, "nhouse": 7, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 69, "repvalue": 828000, "xcoord": 85.315204728772045, "ycoord": 27.631536233691257 }, "geometry": { "type": "Point", "coordinates": [ 85.315204728772045, 27.631536233691257 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 66, "nhouse": 4, "residents": 14, "specialfac": 0, "expstr": "BrCri+LC+4s+ResCom", "fptarea": 61, "repvalue": 488000, "xcoord": 85.317254498676135, "ycoord": 27.626186147361391 }, "geometry": { "type": "Point", "coordinates": [ 85.317254498676135, 27.626186147361391 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 67, "nhouse": 3, "residents": 21, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 89, "repvalue": 356000, "xcoord": 85.313364753830484, "ycoord": 27.631747560515613 }, "geometry": { "type": "Point", "coordinates": [ 85.313364753830484, 27.631747560515613 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 68, "nhouse": 5, "residents": 21, "specialfac": 0, "expstr": "BrM+LC+3s+ResCom", "fptarea": 106, "repvalue": 636000, "xcoord": 85.318178009367429, "ycoord": 27.62584680748898 }, "geometry": { "type": "Point", "coordinates": [ 85.318178009367429, 27.62584680748898 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 69, "nhouse": 6, "residents": 24, "specialfac": 0, "expstr": "BrM+LC+4s+ResCom", "fptarea": 85, "repvalue": 680000, "xcoord": 85.311934422580194, "ycoord": 27.630912226442895 }, "geometry": { "type": "Point", "coordinates": [ 85.311934422580194, 27.630912226442895 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 70, "nhouse": 5, "residents": 18, "specialfac": 0, "expstr": "BrM+MC+4s+ResCom", "fptarea": 69, "repvalue": 552000, "xcoord": 85.314667515182819, "ycoord": 27.632347635726276 }, "geometry": { "type": "Point", "coordinates": [ 85.314667515182819, 27.632347635726276 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 71, "nhouse": 29, "residents": 112, "specialfac": 0, "expstr": "RCi+HC+19s+ResCom", "fptarea": 78, "repvalue": 2964000, "xcoord": 85.311028789191127, "ycoord": 27.630083269729301 }, "geometry": { "type": "Point", "coordinates": [ 85.311028789191127, 27.630083269729301 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 72, "nhouse": 5, "residents": 24, "specialfac": 0, "expstr": "BrM+LC+3s+ResCom", "fptarea": 104, "repvalue": 624000, "xcoord": 85.316378115133304, "ycoord": 27.632017873909781 }, "geometry": { "type": "Point", "coordinates": [ 85.316378115133304, 27.632017873909781 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 73, "nhouse": 5, "residents": 18, "specialfac": 0, "expstr": "BrM+LC+4s+ResCom", "fptarea": 80, "repvalue": 640000, "xcoord": 85.31710546398466, "ycoord": 27.627352812157557 }, "geometry": { "type": "Point", "coordinates": [ 85.31710546398466, 27.627352812157557 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 74, "nhouse": 1, "residents": 1, "specialfac": 0, "expstr": "RCi+HC+1s+ResCom", "fptarea": 58, "repvalue": 116000, "xcoord": 85.317752362661125, "ycoord": 27.62794489725518 }, "geometry": { "type": "Point", "coordinates": [ 85.317752362661125, 27.62794489725518 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 75, "nhouse": 2, "residents": 14, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 69, "repvalue": 276000, "xcoord": 85.311921872627764, "ycoord": 27.631730003148835 }, "geometry": { "type": "Point", "coordinates": [ 85.311921872627764, 27.631730003148835 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 76, "nhouse": 5, "residents": 11, "specialfac": 0, "expstr": "BrM+LC+3s+ResCom", "fptarea": 99, "repvalue": 594000, "xcoord": 85.316762691054123, "ycoord": 27.632606778766096 }, "geometry": { "type": "Point", "coordinates": [ 85.316762691054123, 27.632606778766096 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 77, "nhouse": 25, "residents": 103, "specialfac": 0, "expstr": "RCi+HC+13s+ResCom", "fptarea": 102, "repvalue": 2652000, "xcoord": 85.315835540915842, "ycoord": 27.633179757072313 }, "geometry": { "type": "Point", "coordinates": [ 85.315835540915842, 27.633179757072313 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 78, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "RCi+HC+1s+ResCom", "fptarea": 105, "repvalue": 210000, "xcoord": 85.316669063386158, "ycoord": 27.630151850356707 }, "geometry": { "type": "Point", "coordinates": [ 85.316669063386158, 27.630151850356707 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 79, "nhouse": 8, "residents": 30, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 92, "repvalue": 920000, "xcoord": 85.308635416470267, "ycoord": 27.63215734440081 }, "geometry": { "type": "Point", "coordinates": [ 85.308635416470267, 27.63215734440081 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 80, "nhouse": 8, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 96, "repvalue": 960000, "xcoord": 85.312178836689569, "ycoord": 27.632083672260276 }, "geometry": { "type": "Point", "coordinates": [ 85.312178836689569, 27.632083672260276 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 81, "nhouse": 8, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 62, "repvalue": 868000, "xcoord": 85.314299064652417, "ycoord": 27.630707297086964 }, "geometry": { "type": "Point", "coordinates": [ 85.314299064652417, 27.630707297086964 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 82, "nhouse": 30, "residents": 118, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 95, "repvalue": 3230000, "xcoord": 85.314636575312861, "ycoord": 27.625803816680516 }, "geometry": { "type": "Point", "coordinates": [ 85.314636575312861, 27.625803816680516 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 83, "nhouse": 12, "residents": 52, "specialfac": 0, "expstr": "RCi+HC+8s+ResCom", "fptarea": 80, "repvalue": 1280000, "xcoord": 85.310471814969091, "ycoord": 27.632179731364999 }, "geometry": { "type": "Point", "coordinates": [ 85.310471814969091, 27.632179731364999 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 84, "nhouse": 9, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 64, "repvalue": 1024000, "xcoord": 85.312843653412273, "ycoord": 27.631507527166594 }, "geometry": { "type": "Point", "coordinates": [ 85.312843653412273, 27.631507527166594 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 85, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 85, "repvalue": 340000, "xcoord": 85.315883835743733, "ycoord": 27.630025469222474 }, "geometry": { "type": "Point", "coordinates": [ 85.315883835743733, 27.630025469222474 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 86, "nhouse": 7, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 56, "repvalue": 784000, "xcoord": 85.313490551210307, "ycoord": 27.632099631879935 }, "geometry": { "type": "Point", "coordinates": [ 85.313490551210307, 27.632099631879935 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 87, "nhouse": 5, "residents": 14, "specialfac": 0, "expstr": "BrM+LC+3s+ResCom", "fptarea": 93, "repvalue": 558000, "xcoord": 85.310615546366805, "ycoord": 27.631363553408729 }, "geometry": { "type": "Point", "coordinates": [ 85.310615546366805, 27.631363553408729 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 88, "nhouse": 27, "residents": 114, "specialfac": 0, "expstr": "RCi+HC+17s+ResCom", "fptarea": 86, "repvalue": 2924000, "xcoord": 85.318436767063631, "ycoord": 27.626083639851299 }, "geometry": { "type": "Point", "coordinates": [ 85.318436767063631, 27.626083639851299 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 89, "nhouse": 14, "residents": 48, "specialfac": 0, "expstr": "RCi+HC+11s+ResCom", "fptarea": 73, "repvalue": 1606000, "xcoord": 85.313050068302516, "ycoord": 27.626602458442079 }, "geometry": { "type": "Point", "coordinates": [ 85.313050068302516, 27.626602458442079 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 90, "nhouse": 3, "residents": 7, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 98, "repvalue": 392000, "xcoord": 85.315118292633201, "ycoord": 27.628614003546208 }, "geometry": { "type": "Point", "coordinates": [ 85.315118292633201, 27.628614003546208 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 91, "nhouse": 13, "residents": 59, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 66, "repvalue": 1320000, "xcoord": 85.313118535981403, "ycoord": 27.630692941532001 }, "geometry": { "type": "Point", "coordinates": [ 85.313118535981403, 27.630692941532001 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 92, "nhouse": 9, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 96, "repvalue": 960000, "xcoord": 85.316678001891177, "ycoord": 27.629567722585428 }, "geometry": { "type": "Point", "coordinates": [ 85.316678001891177, 27.629567722585428 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 93, "nhouse": 4, "residents": 18, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 71, "repvalue": 426000, "xcoord": 85.317590822928437, "ycoord": 27.629929341741089 }, "geometry": { "type": "Point", "coordinates": [ 85.317590822928437, 27.629929341741089 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 94, "nhouse": 4, "residents": 13, "specialfac": 0, "expstr": "BrCri+LC+4s+ResCom", "fptarea": 60, "repvalue": 480000, "xcoord": 85.315339478203313, "ycoord": 27.631304176425473 }, "geometry": { "type": "Point", "coordinates": [ 85.315339478203313, 27.631304176425473 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 95, "nhouse": 13, "residents": 51, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 98, "repvalue": 1372000, "xcoord": 85.314270418691422, "ycoord": 27.632576503173397 }, "geometry": { "type": "Point", "coordinates": [ 85.314270418691422, 27.632576503173397 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 96, "nhouse": 13, "residents": 51, "specialfac": 0, "expstr": "RCi+HC+12s+ResCom", "fptarea": 57, "repvalue": 1368000, "xcoord": 85.311551671859519, "ycoord": 27.630206484231479 }, "geometry": { "type": "Point", "coordinates": [ 85.311551671859519, 27.630206484231479 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 97, "nhouse": 8, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 62, "repvalue": 868000, "xcoord": 85.314315176793272, "ycoord": 27.629655868429854 }, "geometry": { "type": "Point", "coordinates": [ 85.314315176793272, 27.629655868429854 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 98, "nhouse": 5, "residents": 23, "specialfac": 0, "expstr": "BrCri+LC+3s+ResCom", "fptarea": 96, "repvalue": 576000, "xcoord": 85.315616130835565, "ycoord": 27.630372759491411 }, "geometry": { "type": "Point", "coordinates": [ 85.315616130835565, 27.630372759491411 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 99, "nhouse": 6, "residents": 28, "specialfac": 0, "expstr": "BrM+LC+4s+Res", "fptarea": 85, "repvalue": 680000, "xcoord": 85.316818108140112, "ycoord": 27.628985186855019 }, "geometry": { "type": "Point", "coordinates": [ 85.316818108140112, 27.628985186855019 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 100, "nhouse": 2, "residents": 9, "specialfac": 0, "expstr": "BrM+LC+2s+Res", "fptarea": 55, "repvalue": 220000, "xcoord": 85.315073557827134, "ycoord": 27.631534639937968 }, "geometry": { "type": "Point", "coordinates": [ 85.315073557827134, 27.631534639937968 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 101, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "BrCfl+LC+2s+ResCom", "fptarea": 94, "repvalue": 376000, "xcoord": 85.315765187128179, "ycoord": 27.629206097667989 }, "geometry": { "type": "Point", "coordinates": [ 85.315765187128179, 27.629206097667989 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 102, "nhouse": 11, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+11s+ResCom", "fptarea": 57, "repvalue": 1254000, "xcoord": 85.316848493765477, "ycoord": 27.62699915173458 }, "geometry": { "type": "Point", "coordinates": [ 85.316848493765477, 27.62699915173458 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 103, "nhouse": 4, "residents": 18, "specialfac": 0, "expstr": "BrM+LC+3s+ResCom", "fptarea": 76, "repvalue": 456000, "xcoord": 85.314811215969641, "ycoord": 27.631531452059537 }, "geometry": { "type": "Point", "coordinates": [ 85.314811215969641, 27.631531452059537 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 104, "nhouse": 10, "residents": 56, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 82, "repvalue": 1148000, "xcoord": 85.31449467287699, "ycoord": 27.626503175608267 }, "geometry": { "type": "Point", "coordinates": [ 85.31449467287699, 27.626503175608267 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 105, "nhouse": 3, "residents": 15, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 90, "repvalue": 360000, "xcoord": 85.317481095421911, "ycoord": 27.628525842974927 }, "geometry": { "type": "Point", "coordinates": [ 85.317481095421911, 27.628525842974927 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 106, "nhouse": 6, "residents": 29, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 61, "repvalue": 610000, "xcoord": 85.316502134499515, "ycoord": 27.632486768470329 }, "geometry": { "type": "Point", "coordinates": [ 85.316502134499515, 27.632486768470329 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 107, "nhouse": 10, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 93, "repvalue": 1116000, "xcoord": 85.309682991479335, "ycoord": 27.632286965019748 }, "geometry": { "type": "Point", "coordinates": [ 85.309682991479335, 27.632286965019748 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 108, "nhouse": 5, "residents": 21, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 64, "repvalue": 512000, "xcoord": 85.316874198309478, "ycoord": 27.633893451586566 }, "geometry": { "type": "Point", "coordinates": [ 85.316874198309478, 27.633893451586566 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 109, "nhouse": 9, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 87, "repvalue": 1044000, "xcoord": 85.314739107354285, "ycoord": 27.627674618402839 }, "geometry": { "type": "Point", "coordinates": [ 85.314739107354285, 27.627674618402839 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 110, "nhouse": 6, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 59, "repvalue": 708000, "xcoord": 85.313512045441385, "ycoord": 27.630697727832572 }, "geometry": { "type": "Point", "coordinates": [ 85.313512045441385, 27.630697727832572 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 111, "nhouse": 7, "residents": 19, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 60, "repvalue": 840000, "xcoord": 85.312193177481717, "ycoord": 27.631149070225941 }, "geometry": { "type": "Point", "coordinates": [ 85.312193177481717, 27.631149070225941 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 112, "nhouse": 9, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 70, "repvalue": 980000, "xcoord": 85.312493153523505, "ycoord": 27.628698931711995 }, "geometry": { "type": "Point", "coordinates": [ 85.312493153523505, 27.628698931711995 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 113, "nhouse": 6, "residents": 20, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 92, "repvalue": 736000, "xcoord": 85.313673660421017, "ycoord": 27.628713291638839 }, "geometry": { "type": "Point", "coordinates": [ 85.313673660421017, 27.628713291638839 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 114, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 64, "repvalue": 384000, "xcoord": 85.312750112947256, "ycoord": 27.629052599678285 }, "geometry": { "type": "Point", "coordinates": [ 85.312750112947256, 27.629052599678285 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 115, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "BrCri+LC+2s+ResCom", "fptarea": 75, "repvalue": 300000, "xcoord": 85.316047194632063, "ycoord": 27.627924202581038 }, "geometry": { "type": "Point", "coordinates": [ 85.316047194632063, 27.627924202581038 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 116, "nhouse": 19, "residents": 75, "specialfac": 0, "expstr": "RCi+HC+16s+ResCom", "fptarea": 64, "repvalue": 2048000, "xcoord": 85.314368877626521, "ycoord": 27.626151105025425 }, "geometry": { "type": "Point", "coordinates": [ 85.314368877626521, 27.626151105025425 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 117, "nhouse": 20, "residents": 80, "specialfac": 0, "expstr": "RCi+HC+14s+ResCom", "fptarea": 77, "repvalue": 2156000, "xcoord": 85.314223392770117, "ycoord": 27.627084114460899 }, "geometry": { "type": "Point", "coordinates": [ 85.314223392770117, 27.627084114460899 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 118, "nhouse": 4, "residents": 15, "specialfac": 0, "expstr": "BrM+LC+2s+Res", "fptarea": 96, "repvalue": 384000, "xcoord": 85.315761609875068, "ycoord": 27.629439748685023 }, "geometry": { "type": "Point", "coordinates": [ 85.315761609875068, 27.629439748685023 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 119, "nhouse": 15, "residents": 68, "specialfac": 0, "expstr": "RCi+HC+11s+ResCom", "fptarea": 72, "repvalue": 1584000, "xcoord": 85.317759508216909, "ycoord": 27.627477594632992 }, "geometry": { "type": "Point", "coordinates": [ 85.317759508216909, 27.627477594632992 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 120, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 93, "repvalue": 372000, "xcoord": 85.313299860751371, "ycoord": 27.627423426924679 }, "geometry": { "type": "Point", "coordinates": [ 85.313299860751371, 27.627423426924679 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 121, "nhouse": 2, "residents": 10, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 57, "repvalue": 228000, "xcoord": 85.314464245410974, "ycoord": 27.628489208461477 }, "geometry": { "type": "Point", "coordinates": [ 85.314464245410974, 27.628489208461477 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 122, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "BrCfl+LC+2s+ResCom", "fptarea": 64, "repvalue": 256000, "xcoord": 85.311815802998282, "ycoord": 27.630092852877667 }, "geometry": { "type": "Point", "coordinates": [ 85.311815802998282, 27.630092852877667 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 123, "nhouse": 2, "residents": 5, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 54, "repvalue": 216000, "xcoord": 85.310750305000511, "ycoord": 27.631131501021223 }, "geometry": { "type": "Point", "coordinates": [ 85.310750305000511, 27.631131501021223 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 124, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 58, "repvalue": 232000, "xcoord": 85.310604780688891, "ycoord": 27.632064504353906 }, "geometry": { "type": "Point", "coordinates": [ 85.310604780688891, 27.632064504353906 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 125, "nhouse": 32, "residents": 120, "specialfac": 0, "expstr": "RCi+HC+17s+ResCom", "fptarea": 102, "repvalue": 3468000, "xcoord": 85.311571396024561, "ycoord": 27.628921406468535 }, "geometry": { "type": "Point", "coordinates": [ 85.311571396024561, 27.628921406468535 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 126, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 96, "repvalue": 384000, "xcoord": 85.317014310327465, "ycoord": 27.633310916204497 }, "geometry": { "type": "Point", "coordinates": [ 85.317014310327465, 27.633310916204497 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 127, "nhouse": 11, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 83, "repvalue": 1162000, "xcoord": 85.313163321079045, "ycoord": 27.627772307731156 }, "geometry": { "type": "Point", "coordinates": [ 85.313163321079045, 27.627772307731156 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 128, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 65, "repvalue": 260000, "xcoord": 85.316773417748678, "ycoord": 27.631905825648619 }, "geometry": { "type": "Point", "coordinates": [ 85.316773417748678, 27.631905825648619 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 129, "nhouse": 22, "residents": 82, "specialfac": 0, "expstr": "RCi+HC+12s+ResCom", "fptarea": 97, "repvalue": 2328000, "xcoord": 85.313837058037066, "ycoord": 27.626612029016371 }, "geometry": { "type": "Point", "coordinates": [ 85.313837058037066, 27.626612029016371 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 130, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "BrM+LC+3s+Res", "fptarea": 72, "repvalue": 432000, "xcoord": 85.317633701408738, "ycoord": 27.627125526545228 }, "geometry": { "type": "Point", "coordinates": [ 85.317633701408738, 27.627125526545228 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 131, "nhouse": 6, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 55, "repvalue": 660000, "xcoord": 85.313443563121297, "ycoord": 27.626607244286916 }, "geometry": { "type": "Point", "coordinates": [ 85.313443563121297, 27.626607244286916 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 132, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 87, "repvalue": 348000, "xcoord": 85.314951335088466, "ycoord": 27.630948918925512 }, "geometry": { "type": "Point", "coordinates": [ 85.314951335088466, 27.630948918925512 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 133, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "RCi+HC+1s+ResCom", "fptarea": 73, "repvalue": 146000, "xcoord": 85.316760903234041, "ycoord": 27.632723604278411 }, "geometry": { "type": "Point", "coordinates": [ 85.316760903234041, 27.632723604278411 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 134, "nhouse": 5, "residents": 14, "specialfac": 0, "expstr": "RCi+HC+4s+ResCom", "fptarea": 66, "repvalue": 528000, "xcoord": 85.317871025345212, "ycoord": 27.628764267849572 }, "geometry": { "type": "Point", "coordinates": [ 85.317871025345212, 27.628764267849572 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 135, "nhouse": 24, "residents": 89, "specialfac": 0, "expstr": "RCi+HC+18s+ResCom", "fptarea": 70, "repvalue": 2520000, "xcoord": 85.314889956970646, "ycoord": 27.626391131835462 }, "geometry": { "type": "Point", "coordinates": [ 85.314889956970646, 27.626391131835462 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 136, "nhouse": 17, "residents": 69, "specialfac": 0, "expstr": "RCi+HC+12s+ResCom", "fptarea": 75, "repvalue": 1800000, "xcoord": 85.313260453993763, "ycoord": 27.62999358504829 }, "geometry": { "type": "Point", "coordinates": [ 85.313260453993763, 27.62999358504829 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 137, "nhouse": 10, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 95, "repvalue": 1140000, "xcoord": 85.317328484558089, "ycoord": 27.629926158793221 }, "geometry": { "type": "Point", "coordinates": [ 85.317328484558089, 27.629926158793221 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 138, "nhouse": 23, "residents": 101, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 86, "repvalue": 2408000, "xcoord": 85.313140033669256, "ycoord": 27.629291037469482 }, "geometry": { "type": "Point", "coordinates": [ 85.313140033669256, 27.629291037469482 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 139, "nhouse": 4, "residents": 23, "specialfac": 0, "expstr": "BrM+LC+2s+Res", "fptarea": 107, "repvalue": 428000, "xcoord": 85.314029562527466, "ycoord": 27.631171409339711 }, "geometry": { "type": "Point", "coordinates": [ 85.314029562527466, 27.631171409339711 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 140, "nhouse": 11, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 84, "repvalue": 1176000, "xcoord": 85.317150845858123, "ycoord": 27.632962031633525 }, "geometry": { "type": "Point", "coordinates": [ 85.317150845858123, 27.632962031633525 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 141, "nhouse": 17, "residents": 62, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 88, "repvalue": 1760000, "xcoord": 85.311975654415676, "ycoord": 27.628225245121531 }, "geometry": { "type": "Point", "coordinates": [ 85.311975654415676, 27.628225245121531 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 142, "nhouse": 14, "residents": 46, "specialfac": 0, "expstr": "RCi+HC+13s+ResCom", "fptarea": 60, "repvalue": 1560000, "xcoord": 85.31192007973425, "ycoord": 27.631846828384248 }, "geometry": { "type": "Point", "coordinates": [ 85.31192007973425, 27.631846828384248 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 143, "nhouse": 19, "residents": 84, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 67, "repvalue": 2144000, "xcoord": 85.315493906123905, "ycoord": 27.62978703879228 }, "geometry": { "type": "Point", "coordinates": [ 85.315493906123905, 27.62978703879228 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 144, "nhouse": 5, "residents": 21, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 92, "repvalue": 552000, "xcoord": 85.311657737559329, "ycoord": 27.631843634508499 }, "geometry": { "type": "Point", "coordinates": [ 85.311657737559329, 27.631843634508499 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 145, "nhouse": 17, "residents": 71, "specialfac": 0, "expstr": "RCi+HC+13s+ResCom", "fptarea": 75, "repvalue": 1950000, "xcoord": 85.313885856604543, "ycoord": 27.631987591999085 }, "geometry": { "type": "Point", "coordinates": [ 85.313885856604543, 27.631987591999085 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 146, "nhouse": 2, "residents": 10, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 60, "repvalue": 240000, "xcoord": 85.318039701162576, "ycoord": 27.626312519649144 }, "geometry": { "type": "Point", "coordinates": [ 85.318039701162576, 27.626312519649144 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 147, "nhouse": 5, "residents": 19, "specialfac": 0, "expstr": "BrM+LC+3s+ResCom", "fptarea": 91, "repvalue": 546000, "xcoord": 85.315890989865636, "ycoord": 27.62955816719013 }, "geometry": { "type": "Point", "coordinates": [ 85.315890989865636, 27.62955816719013 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 148, "nhouse": 32, "residents": 122, "specialfac": 0, "expstr": "RCi+HC+16s+ResCom", "fptarea": 108, "repvalue": 3456000, "xcoord": 85.316413876548523, "ycoord": 27.629681363492129 }, "geometry": { "type": "Point", "coordinates": [ 85.316413876548523, 27.629681363492129 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 149, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "BrCfl+LC+1s+ResCom", "fptarea": 103, "repvalue": 206000, "xcoord": 85.311566016836323, "ycoord": 27.629271882246972 }, "geometry": { "type": "Point", "coordinates": [ 85.311566016836323, 27.629271882246972 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 150, "nhouse": 26, "residents": 99, "specialfac": 0, "expstr": "RCi+HC+16s+ResCom", "fptarea": 87, "repvalue": 2784000, "xcoord": 85.315601819590356, "ycoord": 27.631307363280762 }, "geometry": { "type": "Point", "coordinates": [ 85.315601819590356, 27.631307363280762 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 151, "nhouse": 4, "residents": 17, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 62, "repvalue": 496000, "xcoord": 85.315394939066948, "ycoord": 27.627682586489936 }, "geometry": { "type": "Point", "coordinates": [ 85.315394939066948, 27.627682586489936 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 152, "nhouse": 22, "residents": 85, "specialfac": 0, "expstr": "RCi+HC+18s+ResCom", "fptarea": 66, "repvalue": 2376000, "xcoord": 85.31217525138365, "ycoord": 27.632317322748104 }, "geometry": { "type": "Point", "coordinates": [ 85.31217525138365, 27.632317322748104 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 153, "nhouse": 12, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 87, "repvalue": 1218000, "xcoord": 85.315804534070367, "ycoord": 27.626635935932772 }, "geometry": { "type": "Point", "coordinates": [ 85.315804534070367, 27.626635935932772 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 154, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrM+LC+1s+ResCom", "fptarea": 69, "repvalue": 138000, "xcoord": 85.317739857524543, "ycoord": 27.628762676764119 }, "geometry": { "type": "Point", "coordinates": [ 85.317739857524543, 27.628762676764119 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 155, "nhouse": 22, "residents": 80, "specialfac": 0, "expstr": "RCi+HC+13s+ResCom", "fptarea": 95, "repvalue": 2470000, "xcoord": 85.317400681121271, "ycoord": 27.633782994012464 }, "geometry": { "type": "Point", "coordinates": [ 85.317400681121271, 27.633782994012464 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 156, "nhouse": 6, "residents": 26, "specialfac": 0, "expstr": "BrM+LC+3s+Res", "fptarea": 105, "repvalue": 630000, "xcoord": 85.313281949235673, "ycoord": 27.628591680741753 }, "geometry": { "type": "Point", "coordinates": [ 85.313281949235673, 27.628591680741753 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 157, "nhouse": 3, "residents": 15, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 105, "repvalue": 420000, "xcoord": 85.31607044057111, "ycoord": 27.626405470266654 }, "geometry": { "type": "Point", "coordinates": [ 85.31607044057111, 27.626405470266654 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 158, "nhouse": 14, "residents": 58, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 107, "repvalue": 1498000, "xcoord": 85.316784144055887, "ycoord": 27.63120487245644 }, "geometry": { "type": "Point", "coordinates": [ 85.316784144055887, 27.63120487245644 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 159, "nhouse": 14, "residents": 58, "specialfac": 0, "expstr": "RCi+HC+14s+ResCom", "fptarea": 56, "repvalue": 1568000, "xcoord": 85.312577727558121, "ycoord": 27.631737985629485 }, "geometry": { "type": "Point", "coordinates": [ 85.312577727558121, 27.631737985629485 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 160, "nhouse": 34, "residents": 118, "specialfac": 0, "expstr": "RCi+HC+17s+ResCom", "fptarea": 105, "repvalue": 3570000, "xcoord": 85.316063288168223, "ycoord": 27.626872772554584 }, "geometry": { "type": "Point", "coordinates": [ 85.316063288168223, 27.626872772554584 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 161, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 56, "repvalue": 224000, "xcoord": 85.310879681219348, "ycoord": 27.631249924024086 }, "geometry": { "type": "Point", "coordinates": [ 85.310879681219348, 27.631249924024086 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 162, "nhouse": 6, "residents": 28, "specialfac": 0, "expstr": "BrM+MC+4s+ResCom", "fptarea": 94, "repvalue": 752000, "xcoord": 85.318124430542866, "ycoord": 27.629351577924968 }, "geometry": { "type": "Point", "coordinates": [ 85.318124430542866, 27.629351577924968 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 163, "nhouse": 27, "residents": 105, "specialfac": 0, "expstr": "RCi+HC+14s+ResCom", "fptarea": 103, "repvalue": 2884000, "xcoord": 85.314586463532763, "ycoord": 27.629074929864792 }, "geometry": { "type": "Point", "coordinates": [ 85.314586463532763, 27.629074929864792 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 164, "nhouse": 5, "residents": 22, "specialfac": 0, "expstr": "BrM+LC+3s+ResCom", "fptarea": 105, "repvalue": 630000, "xcoord": 85.311158164554712, "ycoord": 27.630201692447695 }, "geometry": { "type": "Point", "coordinates": [ 85.311158164554712, 27.630201692447695 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 165, "nhouse": 2, "residents": 5, "specialfac": 0, "expstr": "BrCfl+MC+2s+ResCom", "fptarea": 66, "repvalue": 264000, "xcoord": 85.317416765723749, "ycoord": 27.632731564141118 }, "geometry": { "type": "Point", "coordinates": [ 85.317416765723749, 27.632731564141118 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 166, "nhouse": 7, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 81, "repvalue": 810000, "xcoord": 85.31416252343196, "ycoord": 27.631056178679163 }, "geometry": { "type": "Point", "coordinates": [ 85.31416252343196, 27.631056178679163 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 167, "nhouse": 7, "residents": 28, "specialfac": 0, "expstr": "BrM+LC+4s+ResCom", "fptarea": 102, "repvalue": 816000, "xcoord": 85.316149750681575, "ycoord": 27.629795003869489 }, "geometry": { "type": "Point", "coordinates": [ 85.316149750681575, 27.629795003869489 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 168, "nhouse": 15, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+14s+ResCom", "fptarea": 59, "repvalue": 1652000, "xcoord": 85.31536989350667, "ycoord": 27.629318143481971 }, "geometry": { "type": "Point", "coordinates": [ 85.31536989350667, 27.629318143481971 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 169, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 56, "repvalue": 224000, "xcoord": 85.315400305698148, "ycoord": 27.627332109938731 }, "geometry": { "type": "Point", "coordinates": [ 85.315400305698148, 27.627332109938731 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 170, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "RCi+HC+1s+ResCom", "fptarea": 69, "repvalue": 138000, "xcoord": 85.312347648277751, "ycoord": 27.62963193799099 }, "geometry": { "type": "Point", "coordinates": [ 85.312347648277751, 27.62963193799099 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 171, "nhouse": 14, "residents": 60, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 77, "repvalue": 1540000, "xcoord": 85.310910176947857, "ycoord": 27.629263895636569 }, "geometry": { "type": "Point", "coordinates": [ 85.310910176947857, 27.629263895636569 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 172, "nhouse": 5, "residents": 21, "specialfac": 0, "expstr": "BrM+LC+4s+ResCom", "fptarea": 67, "repvalue": 536000, "xcoord": 85.316236213435943, "ycoord": 27.632717234156878 }, "geometry": { "type": "Point", "coordinates": [ 85.316236213435943, 27.632717234156878 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 173, "nhouse": 5, "residents": 22, "specialfac": 0, "expstr": "BrM+LC+3s+ResCom", "fptarea": 91, "repvalue": 546000, "xcoord": 85.314342028421947, "ycoord": 27.627903486961102 }, "geometry": { "type": "Point", "coordinates": [ 85.314342028421947, 27.627903486961102 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 174, "nhouse": 8, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 72, "repvalue": 864000, "xcoord": 85.315003229312254, "ycoord": 27.627560980518115 }, "geometry": { "type": "Point", "coordinates": [ 85.315003229312254, 27.627560980518115 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 175, "nhouse": 24, "residents": 103, "specialfac": 0, "expstr": "RCi+HC+19s+ResCom", "fptarea": 68, "repvalue": 2584000, "xcoord": 85.313754685210753, "ycoord": 27.631985996974709 }, "geometry": { "type": "Point", "coordinates": [ 85.313754685210753, 27.631985996974709 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 176, "nhouse": 6, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 61, "repvalue": 732000, "xcoord": 85.313262245323216, "ycoord": 27.629876759700824 }, "geometry": { "type": "Point", "coordinates": [ 85.313262245323216, 27.629876759700824 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 177, "nhouse": 4, "residents": 14, "specialfac": 0, "expstr": "BrM+LC+4s+Res", "fptarea": 58, "repvalue": 464000, "xcoord": 85.313111369740426, "ycoord": 27.63116024281975 }, "geometry": { "type": "Point", "coordinates": [ 85.313111369740426, 27.63116024281975 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 178, "nhouse": 4, "residents": 18, "specialfac": 0, "expstr": "BrM+LC+2s+Res", "fptarea": 107, "repvalue": 428000, "xcoord": 85.316626154817598, "ycoord": 27.632955662936656 }, "geometry": { "type": "Point", "coordinates": [ 85.316626154817598, 27.632955662936656 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 179, "nhouse": 7, "residents": 27, "specialfac": 0, "expstr": "BrCfl+LC+4s+ResCom", "fptarea": 103, "repvalue": 824000, "xcoord": 85.309557206305513, "ycoord": 27.631934890743683 }, "geometry": { "type": "Point", "coordinates": [ 85.309557206305513, 27.631934890743683 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 180, "nhouse": 3, "residents": 21, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 58, "repvalue": 348000, "xcoord": 85.311044932153322, "ycoord": 27.629031842752784 }, "geometry": { "type": "Point", "coordinates": [ 85.311044932153322, 27.629031842752784 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 181, "nhouse": 3, "residents": 17, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 79, "repvalue": 316000, "xcoord": 85.312733986264263, "ycoord": 27.630104027577705 }, "geometry": { "type": "Point", "coordinates": [ 85.312733986264263, 27.630104027577705 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 182, "nhouse": 9, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 67, "repvalue": 938000, "xcoord": 85.313183024387257, "ycoord": 27.626487228447854 }, "geometry": { "type": "Point", "coordinates": [ 85.313183024387257, 27.626487228447854 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 183, "nhouse": 4, "residents": 17, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 82, "repvalue": 492000, "xcoord": 85.314832692856143, "ycoord": 27.630129546942332 }, "geometry": { "type": "Point", "coordinates": [ 85.314832692856143, 27.630129546942332 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 184, "nhouse": 10, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 98, "repvalue": 1176000, "xcoord": 85.316456784564878, "ycoord": 27.626877549895291 }, "geometry": { "type": "Point", "coordinates": [ 85.316456784564878, 27.626877549895291 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 185, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "BrM+LC+2s+Res", "fptarea": 92, "repvalue": 368000, "xcoord": 85.317542577234093, "ycoord": 27.633083632407811 }, "geometry": { "type": "Point", "coordinates": [ 85.317542577234093, 27.633083632407811 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 186, "nhouse": 14, "residents": 60, "specialfac": 0, "expstr": "RCi+HC+9s+ResCom", "fptarea": 86, "repvalue": 1548000, "xcoord": 85.316881349398983, "ycoord": 27.633426149576398 }, "geometry": { "type": "Point", "coordinates": [ 85.316881349398983, 27.633426149576398 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 187, "nhouse": 5, "residents": 19, "specialfac": 0, "expstr": "BrCfl+LC+4s+ResCom", "fptarea": 70, "repvalue": 560000, "xcoord": 85.311704356519257, "ycoord": 27.62880617812359 }, "geometry": { "type": "Point", "coordinates": [ 85.311704356519257, 27.62880617812359 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 188, "nhouse": 8, "residents": 21, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 72, "repvalue": 864000, "xcoord": 85.317723778717607, "ycoord": 27.629814107411939 }, "geometry": { "type": "Point", "coordinates": [ 85.317723778717607, 27.629814107411939 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 189, "nhouse": 6, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 55, "repvalue": 770000, "xcoord": 85.315445600605997, "ycoord": 27.632941326116669 }, "geometry": { "type": "Point", "coordinates": [ 85.315445600605997, 27.632941326116669 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 190, "nhouse": 1, "residents": 6, "specialfac": 0, "expstr": "RCi+HC+1s+ResCom", "fptarea": 68, "repvalue": 136000, "xcoord": 85.315484961249851, "ycoord": 27.630371166188716 }, "geometry": { "type": "Point", "coordinates": [ 85.315484961249851, 27.630371166188716 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 191, "nhouse": 18, "residents": 66, "specialfac": 0, "expstr": "RCi+HC+9s+Res", "fptarea": 105, "repvalue": 1890000, "xcoord": 85.312245157065334, "ycoord": 27.627761136737881 }, "geometry": { "type": "Point", "coordinates": [ 85.312245157065334, 27.627761136737881 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 192, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrCri+LC+1s+ResCom", "fptarea": 70, "repvalue": 140000, "xcoord": 85.312186007171945, "ycoord": 27.631616371259717 }, "geometry": { "type": "Point", "coordinates": [ 85.312186007171945, 27.631616371259717 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 193, "nhouse": 6, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 66, "repvalue": 660000, "xcoord": 85.314196540185804, "ycoord": 27.6288364960294 }, "geometry": { "type": "Point", "coordinates": [ 85.314196540185804, 27.6288364960294 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 194, "nhouse": 1, "residents": 5, "specialfac": 0, "expstr": "BrCri+LC+1s+ResCom", "fptarea": 73, "repvalue": 146000, "xcoord": 85.312723234656943, "ycoord": 27.630804979417245 }, "geometry": { "type": "Point", "coordinates": [ 85.312723234656943, 27.630804979417245 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 195, "nhouse": 23, "residents": 102, "specialfac": 0, "expstr": "RCi+HC+19s+ResCom", "fptarea": 62, "repvalue": 2356000, "xcoord": 85.317391744854532, "ycoord": 27.634367121646136 }, "geometry": { "type": "Point", "coordinates": [ 85.317391744854532, 27.634367121646136 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 196, "nhouse": 7, "residents": 29, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 57, "repvalue": 798000, "xcoord": 85.317808496629112, "ycoord": 27.632853164144311 }, "geometry": { "type": "Point", "coordinates": [ 85.317808496629112, 27.632853164144311 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 197, "nhouse": 9, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 98, "repvalue": 980000, "xcoord": 85.317200889667149, "ycoord": 27.629690915959863 }, "geometry": { "type": "Point", "coordinates": [ 85.317200889667149, 27.629690915959863 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 198, "nhouse": 9, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 73, "repvalue": 1022000, "xcoord": 85.3114456079512, "ycoord": 27.62856933364457 }, "geometry": { "type": "Point", "coordinates": [ 85.3114456079512, 27.62856933364457 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 199, "nhouse": 3, "residents": 8, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 92, "repvalue": 368000, "xcoord": 85.314660355017693, "ycoord": 27.632814937275981 }, "geometry": { "type": "Point", "coordinates": [ 85.314660355017693, 27.632814937275981 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 200, "nhouse": 37, "residents": 154, "specialfac": 0, "expstr": "RCi+HC+19s+ResCom", "fptarea": 106, "repvalue": 4028000, "xcoord": 85.317112612107849, "ycoord": 27.626885509651117 }, "geometry": { "type": "Point", "coordinates": [ 85.317112612107849, 27.626885509651117 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 201, "nhouse": 5, "residents": 19, "specialfac": 0, "expstr": "BrM+LC+3s+ResCom", "fptarea": 97, "repvalue": 582000, "xcoord": 85.314730159275399, "ycoord": 27.628258745749857 }, "geometry": { "type": "Point", "coordinates": [ 85.314730159275399, 27.628258745749857 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 202, "nhouse": 4, "residents": 10, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 106, "repvalue": 424000, "xcoord": 85.3177809438521, "ycoord": 27.626075686567255 }, "geometry": { "type": "Point", "coordinates": [ 85.3177809438521, 27.626075686567255 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 203, "nhouse": 7, "residents": 35, "specialfac": 0, "expstr": "BrCfl+LC+4s+ResCom", "fptarea": 99, "repvalue": 792000, "xcoord": 85.315869526983263, "ycoord": 27.630960073187552 }, "geometry": { "type": "Point", "coordinates": [ 85.315869526983263, 27.630960073187552 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 204, "nhouse": 5, "residents": 17, "specialfac": 0, "expstr": "BrM+LC+3s+Res", "fptarea": 98, "repvalue": 588000, "xcoord": 85.309551820013425, "ycoord": 27.632285366004954 }, "geometry": { "type": "Point", "coordinates": [ 85.309551820013425, 27.632285366004954 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 205, "nhouse": 9, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 81, "repvalue": 972000, "xcoord": 85.313287322803575, "ycoord": 27.628241204618419 }, "geometry": { "type": "Point", "coordinates": [ 85.313287322803575, 27.628241204618419 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 206, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "BrCri+LC+2s+ResCom", "fptarea": 63, "repvalue": 252000, "xcoord": 85.316302376207119, "ycoord": 27.628394689983374 }, "geometry": { "type": "Point", "coordinates": [ 85.316302376207119, 27.628394689983374 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 207, "nhouse": 5, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 87, "repvalue": 522000, "xcoord": 85.315157653694854, "ycoord": 27.626043842448567 }, "geometry": { "type": "Point", "coordinates": [ 85.315157653694854, 27.626043842448567 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 208, "nhouse": 7, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 64, "repvalue": 768000, "xcoord": 85.313007073986711, "ycoord": 27.629406267224713 }, "geometry": { "type": "Point", "coordinates": [ 85.313007073986711, 27.629406267224713 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 209, "nhouse": 7, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 85, "repvalue": 680000, "xcoord": 85.315281662487934, "ycoord": 27.626512737955785 }, "geometry": { "type": "Point", "coordinates": [ 85.315281662487934, 27.626512737955785 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 210, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 76, "repvalue": 304000, "xcoord": 85.316403148575944, "ycoord": 27.630382316704583 }, "geometry": { "type": "Point", "coordinates": [ 85.316403148575944, 27.630382316704583 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 211, "nhouse": 6, "residents": 32, "specialfac": 0, "expstr": "BrM+LC+3s+ResCom", "fptarea": 106, "repvalue": 636000, "xcoord": 85.314350978426134, "ycoord": 27.627319359701097 }, "geometry": { "type": "Point", "coordinates": [ 85.314350978426134, 27.627319359701097 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 212, "nhouse": 3, "residents": 16, "specialfac": 0, "expstr": "BrM+LC+2s+Res", "fptarea": 95, "repvalue": 380000, "xcoord": 85.313172277289951, "ycoord": 27.627188180815335 }, "geometry": { "type": "Point", "coordinates": [ 85.313172277289951, 27.627188180815335 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 213, "nhouse": 16, "residents": 66, "specialfac": 0, "expstr": "RCi+HC+11s+ResCom", "fptarea": 78, "repvalue": 1716000, "xcoord": 85.315970291259063, "ycoord": 27.632947699276322 }, "geometry": { "type": "Point", "coordinates": [ 85.315970291259063, 27.632947699276322 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 214, "nhouse": 4, "residents": 22, "specialfac": 0, "expstr": "BrM+LC+3s+ResCom", "fptarea": 71, "repvalue": 426000, "xcoord": 85.31612113726888, "ycoord": 27.631664211985047 }, "geometry": { "type": "Point", "coordinates": [ 85.31612113726888, 27.631664211985047 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 215, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 93, "repvalue": 372000, "xcoord": 85.314187588785614, "ycoord": 27.629420623115127 }, "geometry": { "type": "Point", "coordinates": [ 85.314187588785614, 27.629420623115127 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 216, "nhouse": 9, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 75, "repvalue": 1050000, "xcoord": 85.31417505637279, "ycoord": 27.630238400947999 }, "geometry": { "type": "Point", "coordinates": [ 85.31417505637279, 27.630238400947999 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 217, "nhouse": 7, "residents": 19, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 64, "repvalue": 768000, "xcoord": 85.314926279462597, "ycoord": 27.63258447477337 }, "geometry": { "type": "Point", "coordinates": [ 85.314926279462597, 27.63258447477337 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 218, "nhouse": 9, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 78, "repvalue": 936000, "xcoord": 85.311557051306764, "ycoord": 27.629856008502848 }, "geometry": { "type": "Point", "coordinates": [ 85.311557051306764, 27.629856008502848 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 219, "nhouse": 5, "residents": 25, "specialfac": 0, "expstr": "BrM+LC+3s+ResCom", "fptarea": 91, "repvalue": 546000, "xcoord": 85.314024190655687, "ycoord": 27.631521885449224 }, "geometry": { "type": "Point", "coordinates": [ 85.314024190655687, 27.631521885449224 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 220, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 91, "repvalue": 364000, "xcoord": 85.317326697542043, "ycoord": 27.630042984384719 }, "geometry": { "type": "Point", "coordinates": [ 85.317326697542043, 27.630042984384719 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 221, "nhouse": 25, "residents": 102, "specialfac": 0, "expstr": "RCi+HC+15s+ResCom", "fptarea": 92, "repvalue": 2760000, "xcoord": 85.313713055387552, "ycoord": 27.626143132492871 }, "geometry": { "type": "Point", "coordinates": [ 85.313713055387552, 27.626143132492871 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 222, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 93, "repvalue": 372000, "xcoord": 85.312726818569189, "ycoord": 27.630571328812366 }, "geometry": { "type": "Point", "coordinates": [ 85.312726818569189, 27.630571328812366 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 223, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrM+LC+1s+Res", "fptarea": 85, "repvalue": 170000, "xcoord": 85.315924969592587, "ycoord": 27.627338482083072 }, "geometry": { "type": "Point", "coordinates": [ 85.315924969592587, 27.627338482083072 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 224, "nhouse": 4, "residents": 20, "specialfac": 0, "expstr": "BrCri+LC+2s+ResCom", "fptarea": 104, "repvalue": 416000, "xcoord": 85.315116503370191, "ycoord": 27.628730829026782 }, "geometry": { "type": "Point", "coordinates": [ 85.315116503370191, 27.628730829026782 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 225, "nhouse": 4, "residents": 12, "specialfac": 0, "expstr": "BrM+LC+3s+ResCom", "fptarea": 77, "repvalue": 462000, "xcoord": 85.314954914291249, "ycoord": 27.6307152680569 }, "geometry": { "type": "Point", "coordinates": [ 85.314954914291249, 27.6307152680569 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 226, "nhouse": 5, "residents": 11, "specialfac": 0, "expstr": "BrCri+LC+3s+ResCom", "fptarea": 93, "repvalue": 558000, "xcoord": 85.316780568663191, "ycoord": 27.6314385235288 }, "geometry": { "type": "Point", "coordinates": [ 85.316780568663191, 27.6314385235288 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 227, "nhouse": 11, "residents": 45, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 60, "repvalue": 1320000, "xcoord": 85.315238725194746, "ycoord": 27.629316550002223 }, "geometry": { "type": "Point", "coordinates": [ 85.315238725194746, 27.629316550002223 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 228, "nhouse": 6, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+4s+ResCom", "fptarea": 90, "repvalue": 720000, "xcoord": 85.310872505300338, "ycoord": 27.631717224733958 }, "geometry": { "type": "Point", "coordinates": [ 85.310872505300338, 27.631717224733958 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 229, "nhouse": 13, "residents": 62, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 104, "repvalue": 1456000, "xcoord": 85.317520401154027, "ycoord": 27.62595567871622 }, "geometry": { "type": "Point", "coordinates": [ 85.317520401154027, 27.62595567871622 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 230, "nhouse": 9, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+8s+ResCom", "fptarea": 63, "repvalue": 1008000, "xcoord": 85.311837316735691, "ycoord": 27.628690949636855 }, "geometry": { "type": "Point", "coordinates": [ 85.311837316735691, 27.628690949636855 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 231, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "BrM+LC+2s+Res", "fptarea": 60, "repvalue": 240000, "xcoord": 85.315518950339268, "ycoord": 27.628151481806256 }, "geometry": { "type": "Point", "coordinates": [ 85.315518950339268, 27.628151481806256 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 232, "nhouse": 2, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 76, "repvalue": 304000, "xcoord": 85.317132971025316, "ycoord": 27.634130286836989 }, "geometry": { "type": "Point", "coordinates": [ 85.317132971025316, 27.634130286836989 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 233, "nhouse": 15, "residents": 57, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 57, "repvalue": 1710000, "xcoord": 85.314545293966717, "ycoord": 27.631761914477575 }, "geometry": { "type": "Point", "coordinates": [ 85.314545293966717, 27.631761914477575 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 234, "nhouse": 5, "residents": 16, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 102, "repvalue": 612000, "xcoord": 85.315946428470724, "ycoord": 27.625936575313702 }, "geometry": { "type": "Point", "coordinates": [ 85.315946428470724, 27.625936575313702 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 235, "nhouse": 4, "residents": 17, "specialfac": 0, "expstr": "BrM+MC+3s+ResCom", "fptarea": 75, "repvalue": 450000, "xcoord": 85.313037528935268, "ycoord": 27.627420236127168 }, "geometry": { "type": "Point", "coordinates": [ 85.313037528935268, 27.627420236127168 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 236, "nhouse": 4, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+4s+ResCom", "fptarea": 64, "repvalue": 512000, "xcoord": 85.315461703317496, "ycoord": 27.631889897176645 }, "geometry": { "type": "Point", "coordinates": [ 85.315461703317496, 27.631889897176645 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 237, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 80, "repvalue": 320000, "xcoord": 85.317391023344229, "ycoord": 27.625837261783502 }, "geometry": { "type": "Point", "coordinates": [ 85.317391023344229, 27.625837261783502 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 238, "nhouse": 12, "residents": 47, "specialfac": 0, "expstr": "RCi+HC+8s+ResCom", "fptarea": 86, "repvalue": 1376000, "xcoord": 85.312072763178051, "ycoord": 27.630446522079687 }, "geometry": { "type": "Point", "coordinates": [ 85.312072763178051, 27.630446522079687 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 239, "nhouse": 12, "residents": 47, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 92, "repvalue": 1288000, "xcoord": 85.31273219435667, "ycoord": 27.630220852889479 }, "geometry": { "type": "Point", "coordinates": [ 85.31273219435667, 27.630220852889479 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 240, "nhouse": 5, "residents": 15, "specialfac": 0, "expstr": "BrM+LC+4s+ResCom", "fptarea": 77, "repvalue": 616000, "xcoord": 85.31454171373511, "ycoord": 27.63199556526158 }, "geometry": { "type": "Point", "coordinates": [ 85.31454171373511, 27.63199556526158 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 241, "nhouse": 17, "residents": 52, "specialfac": 0, "expstr": "RCi+HC+10s+ResCom", "fptarea": 89, "repvalue": 1780000, "xcoord": 85.311048519359503, "ycoord": 27.62879819229072 }, "geometry": { "type": "Point", "coordinates": [ 85.311048519359503, 27.62879819229072 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 242, "nhouse": 12, "residents": 64, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 91, "repvalue": 1274000, "xcoord": 85.316810958129352, "ycoord": 27.629452489149148 }, "geometry": { "type": "Point", "coordinates": [ 85.316810958129352, 27.629452489149148 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 243, "nhouse": 12, "residents": 54, "specialfac": 0, "expstr": "RCi+HC+8s+ResCom", "fptarea": 84, "repvalue": 1344000, "xcoord": 85.315653694575914, "ycoord": 27.627919423912449 }, "geometry": { "type": "Point", "coordinates": [ 85.315653694575914, 27.627919423912449 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 244, "nhouse": 1, "residents": 5, "specialfac": 0, "expstr": "BrCri+LC+1s+ResCom", "fptarea": 54, "repvalue": 108000, "xcoord": 85.318303816712486, "ycoord": 27.626198875157339 }, "geometry": { "type": "Point", "coordinates": [ 85.318303816712486, 27.626198875157339 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 245, "nhouse": 10, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 76, "repvalue": 1216000, "xcoord": 85.314595412684326, "ycoord": 27.628490802629774 }, "geometry": { "type": "Point", "coordinates": [ 85.314595412684326, 27.628490802629774 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 246, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "RCi+HC+1s+ResCom", "fptarea": 80, "repvalue": 160000, "xcoord": 85.313452517401984, "ycoord": 27.62602311718851 }, "geometry": { "type": "Point", "coordinates": [ 85.313452517401984, 27.62602311718851 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 247, "nhouse": 5, "residents": 18, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 94, "repvalue": 564000, "xcoord": 85.317195528233853, "ycoord": 27.630041392717001 }, "geometry": { "type": "Point", "coordinates": [ 85.317195528233853, 27.630041392717001 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 248, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrM+MC+1s+ResCom", "fptarea": 79, "repvalue": 158000, "xcoord": 85.317398893889433, "ycoord": 27.633899819543348 }, "geometry": { "type": "Point", "coordinates": [ 85.317398893889433, 27.633899819543348 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 249, "nhouse": 7, "residents": 37, "specialfac": 0, "expstr": "BrM+MC+4s+ResCom", "fptarea": 95, "repvalue": 760000, "xcoord": 85.311312647499662, "ycoord": 27.628684561745775 }, "geometry": { "type": "Point", "coordinates": [ 85.311312647499662, 27.628684561745775 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 250, "nhouse": 4, "residents": 15, "specialfac": 0, "expstr": "BrM+LC+2s+Res", "fptarea": 99, "repvalue": 396000, "xcoord": 85.316967149046263, "ycoord": 27.627818522864594 }, "geometry": { "type": "Point", "coordinates": [ 85.316967149046263, 27.627818522864594 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 251, "nhouse": 16, "residents": 69, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 108, "repvalue": 1728000, "xcoord": 85.312737570047076, "ycoord": 27.629870376947913 }, "geometry": { "type": "Point", "coordinates": [ 85.312737570047076, 27.629870376947913 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 252, "nhouse": 1, "residents": 2, "specialfac": 0, "expstr": "BrCri+MC+1s+ResCom", "fptarea": 81, "repvalue": 162000, "xcoord": 85.313679032769087, "ycoord": 27.62836281545081 }, "geometry": { "type": "Point", "coordinates": [ 85.313679032769087, 27.62836281545081 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 253, "nhouse": 23, "residents": 101, "specialfac": 0, "expstr": "RCi+HC+14s+ResCom", "fptarea": 91, "repvalue": 2548000, "xcoord": 85.315382416550605, "ycoord": 27.628500365036796 }, "geometry": { "type": "Point", "coordinates": [ 85.315382416550605, 27.628500365036796 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 254, "nhouse": 4, "residents": 22, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 92, "repvalue": 552000, "xcoord": 85.309294864241053, "ycoord": 27.631931692389614 }, "geometry": { "type": "Point", "coordinates": [ 85.309294864241053, 27.631931692389614 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 255, "nhouse": 2, "residents": 5, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 59, "repvalue": 236000, "xcoord": 85.317355288508182, "ycoord": 27.628173774671716 }, "geometry": { "type": "Point", "coordinates": [ 85.317355288508182, 27.628173774671716 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 256, "nhouse": 6, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+4s+ResCom", "fptarea": 94, "repvalue": 752000, "xcoord": 85.316744812369066, "ycoord": 27.633775033795878 }, "geometry": { "type": "Point", "coordinates": [ 85.316744812369066, 27.633775033795878 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 257, "nhouse": 22, "residents": 77, "specialfac": 0, "expstr": "RCi+HC+12s+ResCom", "fptarea": 100, "repvalue": 2400000, "xcoord": 85.314863115790217, "ycoord": 27.628143514181399 }, "geometry": { "type": "Point", "coordinates": [ 85.314863115790217, 27.628143514181399 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 258, "nhouse": 5, "residents": 17, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 90, "repvalue": 540000, "xcoord": 85.31550821736252, "ycoord": 27.628852434850067 }, "geometry": { "type": "Point", "coordinates": [ 85.31550821736252, 27.628852434850067 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 259, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "BrM+MC+2s+ResCom", "fptarea": 70, "repvalue": 280000, "xcoord": 85.315975657256516, "ycoord": 27.63259722288721 }, "geometry": { "type": "Point", "coordinates": [ 85.315975657256516, 27.63259722288721 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 260, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "BrM+LC+2s+Res", "fptarea": 62, "repvalue": 248000, "xcoord": 85.313102411696562, "ycoord": 27.631744369382741 }, "geometry": { "type": "Point", "coordinates": [ 85.313102411696562, 27.631744369382741 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 261, "nhouse": 14, "residents": 61, "specialfac": 0, "expstr": "RCi+HC+11s+ResCom", "fptarea": 70, "repvalue": 1540000, "xcoord": 85.315013964917384, "ycoord": 27.626860027526277 }, "geometry": { "type": "Point", "coordinates": [ 85.315013964917384, 27.626860027526277 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 262, "nhouse": 7, "residents": 23, "specialfac": 0, "expstr": "BrM+MC+4s+ResCom", "fptarea": 92, "repvalue": 736000, "xcoord": 85.312987366182981, "ycoord": 27.630691345850568 }, "geometry": { "type": "Point", "coordinates": [ 85.312987366182981, 27.630691345850568 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 263, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "BrM+LC+3s+Res", "fptarea": 56, "repvalue": 336000, "xcoord": 85.316330982572168, "ycoord": 27.626525480812283 }, "geometry": { "type": "Point", "coordinates": [ 85.316330982572168, 27.626525480812283 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 264, "nhouse": 5, "residents": 22, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 56, "repvalue": 560000, "xcoord": 85.314008074458386, "ycoord": 27.632573313665667 }, "geometry": { "type": "Point", "coordinates": [ 85.314008074458386, 27.632573313665667 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 265, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "BrCri+LC+2s+ResCom", "fptarea": 92, "repvalue": 368000, "xcoord": 85.317098315689364, "ycoord": 27.627820114630797 }, "geometry": { "type": "Point", "coordinates": [ 85.317098315689364, 27.627820114630797 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 266, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "BrM+LC+3s+ResCom", "fptarea": 63, "repvalue": 378000, "xcoord": 85.308768383986987, "ycoord": 27.632042119235741 }, "geometry": { "type": "Point", "coordinates": [ 85.308768383986987, 27.632042119235741 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 267, "nhouse": 9, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 63, "repvalue": 882000, "xcoord": 85.314622258523158, "ycoord": 27.626738420613467 }, "geometry": { "type": "Point", "coordinates": [ 85.314622258523158, 27.626738420613467 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 268, "nhouse": 8, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 76, "repvalue": 912000, "xcoord": 85.315582140503039, "ycoord": 27.632592443274252 }, "geometry": { "type": "Point", "coordinates": [ 85.315582140503039, 27.632592443274252 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 269, "nhouse": 2, "residents": 12, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 63, "repvalue": 252000, "xcoord": 85.31702503573942, "ycoord": 27.632609963067342 }, "geometry": { "type": "Point", "coordinates": [ 85.31702503573942, 27.632609963067342 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 270, "nhouse": 25, "residents": 104, "specialfac": 0, "expstr": "RCi+HC+19s+ResCom", "fptarea": 74, "repvalue": 2812000, "xcoord": 85.313384458109823, "ycoord": 27.630462481835146 }, "geometry": { "type": "Point", "coordinates": [ 85.313384458109823, 27.630462481835146 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 271, "nhouse": 6, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 67, "repvalue": 670000, "xcoord": 85.316463935298373, "ycoord": 27.626410247512954 }, "geometry": { "type": "Point", "coordinates": [ 85.316463935298373, 27.626410247512954 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 272, "nhouse": 20, "residents": 71, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 89, "repvalue": 2136000, "xcoord": 85.315024700134799, "ycoord": 27.626159074459725 }, "geometry": { "type": "Point", "coordinates": [ 85.315024700134799, 27.626159074459725 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 273, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "BrCri+MC+2s+ResCom", "fptarea": 89, "repvalue": 356000, "xcoord": 85.316527166596657, "ycoord": 27.630851211271214 }, "geometry": { "type": "Point", "coordinates": [ 85.316527166596657, 27.630851211271214 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 274, "nhouse": 22, "residents": 75, "specialfac": 0, "expstr": "RCi+HC+11s+ResCom", "fptarea": 106, "repvalue": 2332000, "xcoord": 85.31419474992731, "ycoord": 27.628953321450695 }, "geometry": { "type": "Point", "coordinates": [ 85.31419474992731, 27.628953321450695 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 275, "nhouse": 8, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 92, "repvalue": 920000, "xcoord": 85.317537216117429, "ycoord": 27.63343410905518 }, "geometry": { "type": "Point", "coordinates": [ 85.317537216117429, 27.63343410905518 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 276, "nhouse": 4, "residents": 14, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 62, "repvalue": 496000, "xcoord": 85.317684471300538, "ycoord": 27.632384270510144 }, "geometry": { "type": "Point", "coordinates": [ 85.317684471300538, 27.632384270510144 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 277, "nhouse": 1, "residents": 5, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 93, "repvalue": 186000, "xcoord": 85.318037915175509, "ycoord": 27.62642934534427 }, "geometry": { "type": "Point", "coordinates": [ 85.318037915175509, 27.62642934534427 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 278, "nhouse": 9, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 87, "repvalue": 1044000, "xcoord": 85.311817595869073, "ycoord": 27.629976027619023 }, "geometry": { "type": "Point", "coordinates": [ 85.311817595869073, 27.629976027619023 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 279, "nhouse": 3, "residents": 16, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 78, "repvalue": 312000, "xcoord": 85.311526566488055, "ycoord": 27.631842037384686 }, "geometry": { "type": "Point", "coordinates": [ 85.311526566488055, 27.631842037384686 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 280, "nhouse": 10, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 92, "repvalue": 1104000, "xcoord": 85.316692302939714, "ycoord": 27.628633118043496 }, "geometry": { "type": "Point", "coordinates": [ 85.316692302939714, 27.628633118043496 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 281, "nhouse": 4, "residents": 15, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 73, "repvalue": 438000, "xcoord": 85.316566498488044, "ycoord": 27.628281049136536 }, "geometry": { "type": "Point", "coordinates": [ 85.316566498488044, 27.628281049136536 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 282, "nhouse": 4, "residents": 17, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 107, "repvalue": 428000, "xcoord": 85.317592609655449, "ycoord": 27.629812516131793 }, "geometry": { "type": "Point", "coordinates": [ 85.317592609655449, 27.629812516131793 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 283, "nhouse": 20, "residents": 83, "specialfac": 0, "expstr": "RCi+HC+13s+ResCom", "fptarea": 87, "repvalue": 2262000, "xcoord": 85.3177791576083, "ycoord": 27.626192512250814 }, "geometry": { "type": "Point", "coordinates": [ 85.3177791576083, 27.626192512250814 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 284, "nhouse": 18, "residents": 75, "specialfac": 0, "expstr": "RCi+HC+11s+ResCom", "fptarea": 88, "repvalue": 1936000, "xcoord": 85.31449646263097, "ycoord": 27.626386350127628 }, "geometry": { "type": "Point", "coordinates": [ 85.31449646263097, 27.626386350127628 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 285, "nhouse": 34, "residents": 160, "specialfac": 0, "expstr": "RCi+HC+18s+ResCom", "fptarea": 99, "repvalue": 3564000, "xcoord": 85.316146174155676, "ycoord": 27.630028654912987 }, "geometry": { "type": "Point", "coordinates": [ 85.316146174155676, 27.630028654912987 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 286, "nhouse": 7, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 75, "repvalue": 750000, "xcoord": 85.316137232652565, "ycoord": 27.630612782485418 }, "geometry": { "type": "Point", "coordinates": [ 85.316137232652565, 27.630612782485418 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 287, "nhouse": 24, "residents": 103, "specialfac": 0, "expstr": "RCi+HC+17s+ResCom", "fptarea": 77, "repvalue": 2618000, "xcoord": 85.317010735104091, "ycoord": 27.633544567233606 }, "geometry": { "type": "Point", "coordinates": [ 85.317010735104091, 27.633544567233606 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 288, "nhouse": 1, "residents": 2, "specialfac": 0, "expstr": "BrM+LC+1s+ResCom", "fptarea": 69, "repvalue": 138000, "xcoord": 85.312455518073122, "ycoord": 27.63115226301538 }, "geometry": { "type": "Point", "coordinates": [ 85.312455518073122, 27.63115226301538 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 289, "nhouse": 9, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 103, "repvalue": 1030000, "xcoord": 85.31209965141845, "ycoord": 27.628694142838739 }, "geometry": { "type": "Point", "coordinates": [ 85.31209965141845, 27.628694142838739 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 290, "nhouse": 4, "residents": 19, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 75, "repvalue": 450000, "xcoord": 85.31204945807275, "ycoord": 27.631965250377391 }, "geometry": { "type": "Point", "coordinates": [ 85.31204945807275, 27.631965250377391 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 291, "nhouse": 11, "residents": 47, "specialfac": 0, "expstr": "RCi+HC+10s+ResCom", "fptarea": 62, "repvalue": 1240000, "xcoord": 85.312868738849943, "ycoord": 27.629871972822059 }, "geometry": { "type": "Point", "coordinates": [ 85.312868738849943, 27.629871972822059 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 292, "nhouse": 9, "residents": 52, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 103, "repvalue": 1030000, "xcoord": 85.316099675401048, "ycoord": 27.633066117723075 }, "geometry": { "type": "Point", "coordinates": [ 85.316099675401048, 27.633066117723075 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 293, "nhouse": 18, "residents": 64, "specialfac": 0, "expstr": "RCi+HC+12s+ResCom", "fptarea": 80, "repvalue": 1920000, "xcoord": 85.311283953266283, "ycoord": 27.630553765495502 }, "geometry": { "type": "Point", "coordinates": [ 85.311283953266283, 27.630553765495502 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 294, "nhouse": 2, "residents": 4, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 62, "repvalue": 248000, "xcoord": 85.309161897387668, "ycoord": 27.632046918092112 }, "geometry": { "type": "Point", "coordinates": [ 85.309161897387668, 27.632046918092112 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 295, "nhouse": 5, "residents": 19, "specialfac": 0, "expstr": "BrM+LC+3s+ResCom", "fptarea": 102, "repvalue": 612000, "xcoord": 85.316674426521459, "ycoord": 27.629801373700165 }, "geometry": { "type": "Point", "coordinates": [ 85.316674426521459, 27.629801373700165 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 296, "nhouse": 11, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 90, "repvalue": 1260000, "xcoord": 85.312973032415272, "ycoord": 27.631625948329798 }, "geometry": { "type": "Point", "coordinates": [ 85.312973032415272, 27.631625948329798 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 297, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 74, "repvalue": 296000, "xcoord": 85.308766587721351, "ycoord": 27.632158944275425 }, "geometry": { "type": "Point", "coordinates": [ 85.308766587721351, 27.632158944275425 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 298, "nhouse": 5, "residents": 26, "specialfac": 0, "expstr": "BrM+LC+3s+ResCom", "fptarea": 100, "repvalue": 600000, "xcoord": 85.317439997500401, "ycoord": 27.631212831807989 }, "geometry": { "type": "Point", "coordinates": [ 85.317439997500401, 27.631212831807989 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 299, "nhouse": 29, "residents": 116, "specialfac": 0, "expstr": "RCi+HC+16s+ResCom", "fptarea": 100, "repvalue": 3200000, "xcoord": 85.315545781085476, "ycoord": 27.626399098869886 }, "geometry": { "type": "Point", "coordinates": [ 85.315545781085476, 27.626399098869886 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 300, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 90, "repvalue": 360000, "xcoord": 85.31427758044029, "ycoord": 27.632109201701603 }, "geometry": { "type": "Point", "coordinates": [ 85.31427758044029, 27.632109201701603 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 301, "nhouse": 12, "residents": 43, "specialfac": 0, "expstr": "RCi+HC+8s+ResCom", "fptarea": 82, "repvalue": 1312000, "xcoord": 85.317986116874181, "ycoord": 27.629817289600382 }, "geometry": { "type": "Point", "coordinates": [ 85.317986116874181, 27.629817289600382 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 302, "nhouse": 12, "residents": 60, "specialfac": 0, "expstr": "RCi+HC+11s+ResCom", "fptarea": 59, "repvalue": 1298000, "xcoord": 85.316133655975975, "ycoord": 27.630846433499858 }, "geometry": { "type": "Point", "coordinates": [ 85.316133655975975, 27.630846433499858 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 303, "nhouse": 6, "residents": 27, "specialfac": 0, "expstr": "BrM+LC+4s+ResCom", "fptarea": 74, "repvalue": 592000, "xcoord": 85.312588480518045, "ycoord": 27.631037033936881 }, "geometry": { "type": "Point", "coordinates": [ 85.312588480518045, 27.631037033936881 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 304, "nhouse": 4, "residents": 17, "specialfac": 0, "expstr": "BrM+LC+4s+ResCom", "fptarea": 58, "repvalue": 464000, "xcoord": 85.316338133733012, "ycoord": 27.626058178436509 }, "geometry": { "type": "Point", "coordinates": [ 85.316338133733012, 27.626058178436509 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 305, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "BrCri+LC+2s+ResCom", "fptarea": 63, "repvalue": 252000, "xcoord": 85.314839851473621, "ycoord": 27.629662245170188 }, "geometry": { "type": "Point", "coordinates": [ 85.314839851473621, 27.629662245170188 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 306, "nhouse": 2, "residents": 4, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 71, "repvalue": 284000, "xcoord": 85.315657271827376, "ycoord": 27.627685772857209 }, "geometry": { "type": "Point", "coordinates": [ 85.315657271827376, 27.627685772857209 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 307, "nhouse": 4, "residents": 20, "specialfac": 0, "expstr": "BrCfl+MC+3s+ResCom", "fptarea": 71, "repvalue": 426000, "xcoord": 85.315208307525936, "ycoord": 27.631302582811898 }, "geometry": { "type": "Point", "coordinates": [ 85.315208307525936, 27.631302582811898 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 308, "nhouse": 3, "residents": 8, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 89, "repvalue": 356000, "xcoord": 85.310484375938515, "ycoord": 27.63136195532482 }, "geometry": { "type": "Point", "coordinates": [ 85.310484375938515, 27.63136195532482 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 309, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "BrM+LC+2s+Res", "fptarea": 89, "repvalue": 356000, "xcoord": 85.318056550142373, "ycoord": 27.633790951129789 }, "geometry": { "type": "Point", "coordinates": [ 85.318056550142373, 27.633790951129789 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 310, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 55, "repvalue": 220000, "xcoord": 85.315527894190495, "ycoord": 27.627567354212673 }, "geometry": { "type": "Point", "coordinates": [ 85.315527894190495, 27.627567354212673 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 311, "nhouse": 19, "residents": 80, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 105, "repvalue": 2100000, "xcoord": 85.317671963303596, "ycoord": 27.63320204946714 }, "geometry": { "type": "Point", "coordinates": [ 85.317671963303596, 27.63320204946714 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 312, "nhouse": 5, "residents": 20, "specialfac": 0, "expstr": "BrM+MC+3s+ResCom", "fptarea": 90, "repvalue": 540000, "xcoord": 85.315759821232376, "ycoord": 27.629556574190424 }, "geometry": { "type": "Point", "coordinates": [ 85.315759821232376, 27.629556574190424 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 313, "nhouse": 7, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+4s+ResCom", "fptarea": 99, "repvalue": 792000, "xcoord": 85.312378115419136, "ycoord": 27.627645907634165 }, "geometry": { "type": "Point", "coordinates": [ 85.312378115419136, 27.627645907634165 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 314, "nhouse": 16, "residents": 68, "specialfac": 0, "expstr": "RCi+HC+10s+ResCom", "fptarea": 90, "repvalue": 1800000, "xcoord": 85.317585462682885, "ycoord": 27.630279818556538 }, "geometry": { "type": "Point", "coordinates": [ 85.317585462682885, 27.630279818556538 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 315, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 86, "repvalue": 172000, "xcoord": 85.313698730548737, "ycoord": 27.627077735934897 }, "geometry": { "type": "Point", "coordinates": [ 85.313698730548737, 27.627077735934897 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 316, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 57, "repvalue": 114000, "xcoord": 85.317224121426193, "ycoord": 27.628172183129802 }, "geometry": { "type": "Point", "coordinates": [ 85.317224121426193, 27.628172183129802 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 317, "nhouse": 25, "residents": 103, "specialfac": 0, "expstr": "RCi+HC+16s+ResCom", "fptarea": 81, "repvalue": 2592000, "xcoord": 85.317655880818947, "ycoord": 27.634253479405292 }, "geometry": { "type": "Point", "coordinates": [ 85.317655880818947, 27.634253479405292 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 318, "nhouse": 8, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 91, "repvalue": 910000, "xcoord": 85.313057233418021, "ycoord": 27.626135156862073 }, "geometry": { "type": "Point", "coordinates": [ 85.313057233418021, 27.626135156862073 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 319, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 87, "repvalue": 174000, "xcoord": 85.315019332574551, "ycoord": 27.626509551002339 }, "geometry": { "type": "Point", "coordinates": [ 85.315019332574551, 27.626509551002339 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 320, "nhouse": 26, "residents": 102, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 78, "repvalue": 2808000, "xcoord": 85.310619134839726, "ycoord": 27.631129903077056 }, "geometry": { "type": "Point", "coordinates": [ 85.310619134839726, 27.631129903077056 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 321, "nhouse": 25, "residents": 88, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 84, "repvalue": 2688000, "xcoord": 85.313519209840123, "ycoord": 27.630230426417032 }, "geometry": { "type": "Point", "coordinates": [ 85.313519209840123, 27.630230426417032 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 322, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrM+LC+1s+ResCom", "fptarea": 77, "repvalue": 154000, "xcoord": 85.313946738335261, "ycoord": 27.628015528881033 }, "geometry": { "type": "Point", "coordinates": [ 85.313946738335261, 27.628015528881033 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 323, "nhouse": 17, "residents": 77, "specialfac": 0, "expstr": "RCi+HC+17s+ResCom", "fptarea": 54, "repvalue": 1836000, "xcoord": 85.315454546664512, "ycoord": 27.632357198948519 }, "geometry": { "type": "Point", "coordinates": [ 85.315454546664512, 27.632357198948519 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 324, "nhouse": 5, "residents": 22, "specialfac": 0, "expstr": "BrM+LC+3s+ResCom", "fptarea": 91, "repvalue": 546000, "xcoord": 85.315278084617077, "ycoord": 27.626746389005305 }, "geometry": { "type": "Point", "coordinates": [ 85.315278084617077, 27.626746389005305 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 325, "nhouse": 9, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+8s+ResCom", "fptarea": 60, "repvalue": 960000, "xcoord": 85.315790226694205, "ycoord": 27.627570540316327 }, "geometry": { "type": "Point", "coordinates": [ 85.315790226694205, 27.627570540316327 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 326, "nhouse": 11, "residents": 47, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 106, "repvalue": 1272000, "xcoord": 85.312663740365679, "ycoord": 27.626130369996446 }, "geometry": { "type": "Point", "coordinates": [ 85.312663740365679, 27.626130369996446 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 327, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 60, "repvalue": 360000, "xcoord": 85.317635487877652, "ycoord": 27.627008700886133 }, "geometry": { "type": "Point", "coordinates": [ 85.317635487877652, 27.627008700886133 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 328, "nhouse": 15, "residents": 65, "specialfac": 0, "expstr": "RCi+HC+12s+ResCom", "fptarea": 71, "repvalue": 1704000, "xcoord": 85.312189592348417, "ycoord": 27.631382720746984 }, "geometry": { "type": "Point", "coordinates": [ 85.312189592348417, 27.631382720746984 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 329, "nhouse": 11, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 98, "repvalue": 1176000, "xcoord": 85.309287681383395, "ycoord": 27.63239899267063 }, "geometry": { "type": "Point", "coordinates": [ 85.309287681383395, 27.63239899267063 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 330, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 105, "repvalue": 420000, "xcoord": 85.312097858944611, "ycoord": 27.628810968135998 }, "geometry": { "type": "Point", "coordinates": [ 85.312097858944611, 27.628810968135998 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 331, "nhouse": 8, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 65, "repvalue": 910000, "xcoord": 85.31813871917538, "ycoord": 27.628416972657952 }, "geometry": { "type": "Point", "coordinates": [ 85.31813871917538, 27.628416972657952 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 332, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "BrCfl+LC+3s+ResCom", "fptarea": 68, "repvalue": 408000, "xcoord": 85.312184214567537, "ycoord": 27.631733196512968 }, "geometry": { "type": "Point", "coordinates": [ 85.312184214567537, 27.631733196512968 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 333, "nhouse": 5, "residents": 20, "specialfac": 0, "expstr": "BrM+LC+3s+Res", "fptarea": 96, "repvalue": 576000, "xcoord": 85.315244092695593, "ycoord": 27.628966073561784 }, "geometry": { "type": "Point", "coordinates": [ 85.315244092695593, 27.628966073561784 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 334, "nhouse": 9, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+8s+ResCom", "fptarea": 64, "repvalue": 1024000, "xcoord": 85.31207993361285, "ycoord": 27.629979220994436 }, "geometry": { "type": "Point", "coordinates": [ 85.31207993361285, 27.629979220994436 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 335, "nhouse": 5, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 91, "repvalue": 546000, "xcoord": 85.316853855611939, "ycoord": 27.626648674886379 }, "geometry": { "type": "Point", "coordinates": [ 85.316853855611939, 27.626648674886379 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 336, "nhouse": 31, "residents": 117, "specialfac": 0, "expstr": "RCi+HC+17s+ResCom", "fptarea": 99, "repvalue": 3366000, "xcoord": 85.317897819334419, "ycoord": 27.627011882945165 }, "geometry": { "type": "Point", "coordinates": [ 85.317897819334419, 27.627011882945165 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 337, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "BrM+LC+3s+ResCom", "fptarea": 56, "repvalue": 336000, "xcoord": 85.314144618314799, "ycoord": 27.63222443240441 }, "geometry": { "type": "Point", "coordinates": [ 85.314144618314799, 27.63222443240441 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 338, "nhouse": 1, "residents": 2, "specialfac": 0, "expstr": "BrM+LC+1s+ResCom", "fptarea": 79, "repvalue": 158000, "xcoord": 85.31248777732182, "ycoord": 27.629049407668514 }, "geometry": { "type": "Point", "coordinates": [ 85.31248777732182, 27.629049407668514 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 339, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 56, "repvalue": 224000, "xcoord": 85.317461440604035, "ycoord": 27.629810924727693 }, "geometry": { "type": "Point", "coordinates": [ 85.317461440604035, 27.629810924727693 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 340, "nhouse": 7, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 62, "repvalue": 744000, "xcoord": 85.315573195032655, "ycoord": 27.633176570461007 }, "geometry": { "type": "Point", "coordinates": [ 85.315573195032655, 27.633176570461007 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 341, "nhouse": 7, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+6s+ResCom", "fptarea": 69, "repvalue": 828000, "xcoord": 85.314108338837613, "ycoord": 27.626031090920964 }, "geometry": { "type": "Point", "coordinates": [ 85.314108338837613, 27.626031090920964 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 342, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 86, "repvalue": 344000, "xcoord": 85.318049403933941, "ycoord": 27.634258253398098 }, "geometry": { "type": "Point", "coordinates": [ 85.318049403933941, 27.634258253398098 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 343, "nhouse": 19, "residents": 77, "specialfac": 0, "expstr": "RCi+HC+15s+ResCom", "fptarea": 68, "repvalue": 2040000, "xcoord": 85.311400775745582, "ycoord": 27.631489964519147 }, "geometry": { "type": "Point", "coordinates": [ 85.311400775745582, 27.631489964519147 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 344, "nhouse": 10, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 92, "repvalue": 1104000, "xcoord": 85.315750877857397, "ycoord": 27.630140701686322 }, "geometry": { "type": "Point", "coordinates": [ 85.315750877857397, 27.630140701686322 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 345, "nhouse": 5, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 94, "repvalue": 564000, "xcoord": 85.312212894943499, "ycoord": 27.629863992211821 }, "geometry": { "type": "Point", "coordinates": [ 85.312212894943499, 27.629863992211821 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 346, "nhouse": 5, "residents": 16, "specialfac": 0, "expstr": "BrM+LC+3s+ResCom", "fptarea": 98, "repvalue": 588000, "xcoord": 85.311285746736814, "ycoord": 27.630436940276713 }, "geometry": { "type": "Point", "coordinates": [ 85.311285746736814, 27.630436940276713 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 347, "nhouse": 5, "residents": 22, "specialfac": 0, "expstr": "BrM+LC+3s+ResCom", "fptarea": 86, "repvalue": 516000, "xcoord": 85.312485985233025, "ycoord": 27.629166232983209 }, "geometry": { "type": "Point", "coordinates": [ 85.312485985233025, 27.629166232983209 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 348, "nhouse": 14, "residents": 68, "specialfac": 0, "expstr": "RCi+HC+14s+ResCom", "fptarea": 57, "repvalue": 1596000, "xcoord": 85.314361718075645, "ycoord": 27.626618406920592 }, "geometry": { "type": "Point", "coordinates": [ 85.314361718075645, 27.626618406920592 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 349, "nhouse": 7, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 57, "repvalue": 798000, "xcoord": 85.312884864086584, "ycoord": 27.628820544814335 }, "geometry": { "type": "Point", "coordinates": [ 85.312884864086584, 27.628820544814335 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 350, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 72, "repvalue": 288000, "xcoord": 85.314363507979522, "ycoord": 27.626501581449915 }, "geometry": { "type": "Point", "coordinates": [ 85.314363507979522, 27.626501581449915 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 351, "nhouse": 15, "residents": 57, "specialfac": 0, "expstr": "RCi+HC+9s+Res", "fptarea": 93, "repvalue": 1674000, "xcoord": 85.309681196166196, "ycoord": 27.63240379011058 }, "geometry": { "type": "Point", "coordinates": [ 85.309681196166196, 27.63240379011058 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 352, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "BrM+LC+3s+ResCom", "fptarea": 63, "repvalue": 378000, "xcoord": 85.314965651641117, "ycoord": 27.630014315401251 }, "geometry": { "type": "Point", "coordinates": [ 85.314965651641117, 27.630014315401251 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 353, "nhouse": 10, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 83, "repvalue": 1162000, "xcoord": 85.311291127083663, "ycoord": 27.630086464607896 }, "geometry": { "type": "Point", "coordinates": [ 85.311291127083663, 27.630086464607896 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 354, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+2s+ResCom", "fptarea": 88, "repvalue": 352000, "xcoord": 85.317262357800743, "ycoord": 27.634248704296724 }, "geometry": { "type": "Point", "coordinates": [ 85.317262357800743, 27.634248704296724 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 355, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 100, "repvalue": 400000, "xcoord": 85.312568766461567, "ycoord": 27.632322111982905 }, "geometry": { "type": "Point", "coordinates": [ 85.312568766461567, 27.632322111982905 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 356, "nhouse": 21, "residents": 86, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 62, "repvalue": 2232000, "xcoord": 85.314751634212342, "ycoord": 27.626856840029859 }, "geometry": { "type": "Point", "coordinates": [ 85.314751634212342, 27.626856840029859 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 357, "nhouse": 4, "residents": 18, "specialfac": 0, "expstr": "BrM+LC+3s+ResCom", "fptarea": 80, "repvalue": 480000, "xcoord": 85.316449633659246, "ycoord": 27.627344852244434 }, "geometry": { "type": "Point", "coordinates": [ 85.316449633659246, 27.627344852244434 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 358, "nhouse": 23, "residents": 114, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 106, "repvalue": 2544000, "xcoord": 85.313914508382695, "ycoord": 27.630118386124749 }, "geometry": { "type": "Point", "coordinates": [ 85.313914508382695, 27.630118386124749 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 359, "nhouse": 15, "residents": 65, "specialfac": 0, "expstr": "RCi+HC+12s+ResCom", "fptarea": 73, "repvalue": 1752000, "xcoord": 85.317497175668677, "ycoord": 27.627474412263204 }, "geometry": { "type": "Point", "coordinates": [ 85.317497175668677, 27.627474412263204 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 360, "nhouse": 13, "residents": 50, "specialfac": 0, "expstr": "RCi+HC+8s+ResCom", "fptarea": 87, "repvalue": 1392000, "xcoord": 85.314593622875563, "ycoord": 27.628607628080935 }, "geometry": { "type": "Point", "coordinates": [ 85.314593622875563, 27.628607628080935 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 361, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 98, "repvalue": 196000, "xcoord": 85.318305602399832, "ycoord": 27.626082049442349 }, "geometry": { "type": "Point", "coordinates": [ 85.318305602399832, 27.626082049442349 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 362, "nhouse": 3, "residents": 16, "specialfac": 0, "expstr": "BrCri+MC+3s+ResCom", "fptarea": 66, "repvalue": 396000, "xcoord": 85.314164313884405, "ycoord": 27.630939353295219 }, "geometry": { "type": "Point", "coordinates": [ 85.314164313884405, 27.630939353295219 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 363, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 80, "repvalue": 160000, "xcoord": 85.315321585394642, "ycoord": 27.632472430817959 }, "geometry": { "type": "Point", "coordinates": [ 85.315321585394642, 27.632472430817959 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 364, "nhouse": 7, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 84, "repvalue": 840000, "xcoord": 85.316263037956816, "ycoord": 27.630964851726244 }, "geometry": { "type": "Point", "coordinates": [ 85.316263037956816, 27.630964851726244 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 365, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "BrM+LC+2s+ResCom", "fptarea": 80, "repvalue": 320000, "xcoord": 85.31503006759813, "ycoord": 27.625808597898438 }, "geometry": { "type": "Point", "coordinates": [ 85.31503006759813, 27.625808597898438 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 366, "nhouse": 2, "residents": 4, "specialfac": 0, "expstr": "BrCfl+LC+2s+ResCom", "fptarea": 57, "repvalue": 228000, "xcoord": 85.315864161020457, "ycoord": 27.631310549640219 }, "geometry": { "type": "Point", "coordinates": [ 85.315864161020457, 27.631310549640219 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 367, "nhouse": 11, "residents": 47, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 82, "repvalue": 1148000, "xcoord": 85.312051250837897, "ycoord": 27.631848425136173 }, "geometry": { "type": "Point", "coordinates": [ 85.312051250837897, 27.631848425136173 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 368, "nhouse": 26, "residents": 91, "specialfac": 0, "expstr": "RCi+HC+17s+ResCom", "fptarea": 82, "repvalue": 2788000, "xcoord": 85.311026995474677, "ycoord": 27.630200094938534 }, "geometry": { "type": "Point", "coordinates": [ 85.311026995474677, 27.630200094938534 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 369, "nhouse": 8, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 64, "repvalue": 896000, "xcoord": 85.314760581644961, "ycoord": 27.626272712558329 }, "geometry": { "type": "Point", "coordinates": [ 85.314760581644961, 27.626272712558329 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 370, "nhouse": 7, "residents": 25, "specialfac": 0, "expstr": "BrCfl+LC+4s+ResCom", "fptarea": 94, "repvalue": 752000, "xcoord": 85.31655934762243, "ycoord": 27.628748351417546 }, "geometry": { "type": "Point", "coordinates": [ 85.31655934762243, 27.628748351417546 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 371, "nhouse": 7, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 55, "repvalue": 770000, "xcoord": 85.317720205531117, "ycoord": 27.630047758644185 }, "geometry": { "type": "Point", "coordinates": [ 85.317720205531117, 27.630047758644185 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 372, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrCri+LC+1s+ResCom", "fptarea": 65, "repvalue": 130000, "xcoord": 85.317589036190668, "ycoord": 27.630046167348311 }, "geometry": { "type": "Point", "coordinates": [ 85.317589036190668, 27.630046167348311 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 373, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrM+LC+1s+ResCom", "fptarea": 69, "repvalue": 138000, "xcoord": 85.312101443881502, "ycoord": 27.628577317539406 }, "geometry": { "type": "Point", "coordinates": [ 85.312101443881502, 27.628577317539406 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 374, "nhouse": 5, "residents": 22, "specialfac": 0, "expstr": "BrM+LC+3s+Res", "fptarea": 103, "repvalue": 618000, "xcoord": 85.314979967504442, "ycoord": 27.629079711744154 }, "geometry": { "type": "Point", "coordinates": [ 85.314979967504442, 27.629079711744154 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 375, "nhouse": 14, "residents": 62, "specialfac": 0, "expstr": "RCi+HC+12s+ResCom", "fptarea": 64, "repvalue": 1536000, "xcoord": 85.316918889794636, "ycoord": 27.630972813478273 }, "geometry": { "type": "Point", "coordinates": [ 85.316918889794636, 27.630972813478273 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 376, "nhouse": 5, "residents": 21, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 96, "repvalue": 576000, "xcoord": 85.311003676178487, "ycoord": 27.631718822469676 }, "geometry": { "type": "Point", "coordinates": [ 85.311003676178487, 27.631718822469676 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 377, "nhouse": 11, "residents": 56, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 72, "repvalue": 1152000, "xcoord": 85.317422127064319, "ycoord": 27.632381087479988 }, "geometry": { "type": "Point", "coordinates": [ 85.317422127064319, 27.632381087479988 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 378, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 57, "repvalue": 342000, "xcoord": 85.315809899158822, "ycoord": 27.626285459254703 }, "geometry": { "type": "Point", "coordinates": [ 85.315809899158822, 27.626285459254703 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 379, "nhouse": 5, "residents": 19, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 73, "repvalue": 584000, "xcoord": 85.316471085859689, "ycoord": 27.625942945097414 }, "geometry": { "type": "Point", "coordinates": [ 85.316471085859689, 27.625942945097414 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 380, "nhouse": 10, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 79, "repvalue": 1106000, "xcoord": 85.311537326191996, "ycoord": 27.631141086083129 }, "geometry": { "type": "Point", "coordinates": [ 85.311537326191996, 27.631141086083129 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 381, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "BrCfl+LC+2s+ResCom", "fptarea": 70, "repvalue": 280000, "xcoord": 85.315880258618208, "ycoord": 27.630259120226196 }, "geometry": { "type": "Point", "coordinates": [ 85.315880258618208, 27.630259120226196 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 382, "nhouse": 13, "residents": 57, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 103, "repvalue": 1442000, "xcoord": 85.312852612739803, "ycoord": 27.630923400661676 }, "geometry": { "type": "Point", "coordinates": [ 85.312852612739803, 27.630923400661676 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 383, "nhouse": 9, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+8s+ResCom", "fptarea": 62, "repvalue": 992000, "xcoord": 85.315933910980164, "ycoord": 27.626754354298811 }, "geometry": { "type": "Point", "coordinates": [ 85.315933910980164, 27.626754354298811 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 384, "nhouse": 9, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+5s+ResCom", "fptarea": 98, "repvalue": 980000, "xcoord": 85.313166903595743, "ycoord": 27.627538656971051 }, "geometry": { "type": "Point", "coordinates": [ 85.313166903595743, 27.627538656971051 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 385, "nhouse": 23, "residents": 104, "specialfac": 0, "expstr": "RCi+HC+14s+ResCom", "fptarea": 91, "repvalue": 2548000, "xcoord": 85.314345608455938, "ycoord": 27.62766983606333 }, "geometry": { "type": "Point", "coordinates": [ 85.314345608455938, 27.62766983606333 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 386, "nhouse": 3, "residents": 17, "specialfac": 0, "expstr": "BrM+LC+2s+Res", "fptarea": 103, "repvalue": 412000, "xcoord": 85.313747521278472, "ycoord": 27.632453298328755 }, "geometry": { "type": "Point", "coordinates": [ 85.313747521278472, 27.632453298328755 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 387, "nhouse": 8, "residents": 30, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 93, "repvalue": 3348000, "xcoord": 85.31701609792303, "ycoord": 27.633194090686821 }, "geometry": { "type": "Point", "coordinates": [ 85.31701609792303, 27.633194090686821 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1308, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Com", "fptarea": 136, "repvalue": 1904000, "xcoord": 85.308899555109733, "ycoord": 27.63204371897849 }, "geometry": { "type": "Point", "coordinates": [ 85.308899555109733, 27.63204371897849 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1316, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Com", "fptarea": 102, "repvalue": 1224000, "xcoord": 85.315224411385344, "ycoord": 27.630251153752077 }, "geometry": { "type": "Point", "coordinates": [ 85.315224411385344, 27.630251153752077 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1317, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 138, "repvalue": 1932000, "xcoord": 85.314065372527381, "ycoord": 27.628834901465638 }, "geometry": { "type": "Point", "coordinates": [ 85.314065372527381, 27.628834901465638 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1318, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Com", "fptarea": 104, "repvalue": 1248000, "xcoord": 85.313776175972848, "ycoord": 27.63058409271332 }, "geometry": { "type": "Point", "coordinates": [ 85.313776175972848, 27.63058409271332 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1322, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Com", "fptarea": 135, "repvalue": 2430000, "xcoord": 85.31682883283348, "ycoord": 27.628284233351579 }, "geometry": { "type": "Point", "coordinates": [ 85.31682883283348, 27.628284233351579 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1326, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Com", "fptarea": 133, "repvalue": 2128000, "xcoord": 85.312857988206915, "ycoord": 27.630572924733823 }, "geometry": { "type": "Point", "coordinates": [ 85.312857988206915, 27.630572924733823 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1332, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Com", "fptarea": 148, "repvalue": 2072000, "xcoord": 85.313388040565926, "ycoord": 27.630228831138986 }, "geometry": { "type": "Point", "coordinates": [ 85.313388040565926, 27.630228831138986 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1338, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Com", "fptarea": 135, "repvalue": 1620000, "xcoord": 85.317614049540779, "ycoord": 27.628410608658349 }, "geometry": { "type": "Point", "coordinates": [ 85.317614049540779, 27.628410608658349 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1340, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Com", "fptarea": 122, "repvalue": 2196000, "xcoord": 85.310259720691548, "ycoord": 27.628905430385863 }, "geometry": { "type": "Point", "coordinates": [ 85.310259720691548, 27.628905430385863 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1341, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 136, "repvalue": 1904000, "xcoord": 85.313447144865904, "ycoord": 27.626373593453781 }, "geometry": { "type": "Point", "coordinates": [ 85.313447144865904, 27.626373593453781 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1347, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+8s+Com", "fptarea": 146, "repvalue": 2336000, "xcoord": 85.317844228936892, "ycoord": 27.630516652287142 }, "geometry": { "type": "Point", "coordinates": [ 85.317844228936892, 27.630516652287142 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1349, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Com", "fptarea": 119, "repvalue": 1428000, "xcoord": 85.316327406927186, "ycoord": 27.626759131987722 }, "geometry": { "type": "Point", "coordinates": [ 85.316327406927186, 27.626759131987722 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1356, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Com", "fptarea": 110, "repvalue": 1540000, "xcoord": 85.311562430656878, "ycoord": 27.629505532755559 }, "geometry": { "type": "Point", "coordinates": [ 85.311562430656878, 27.629505532755559 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1357, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Com", "fptarea": 126, "repvalue": 2520000, "xcoord": 85.313307025055778, "ycoord": 27.626956125339735 }, "geometry": { "type": "Point", "coordinates": [ 85.313307025055778, 27.626956125339735 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1358, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Com", "fptarea": 136, "repvalue": 1632000, "xcoord": 85.315917816288774, "ycoord": 27.627805784273122 }, "geometry": { "type": "Point", "coordinates": [ 85.315917816288774, 27.627805784273122 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1366, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Com", "fptarea": 127, "repvalue": 1778000, "xcoord": 85.314072534010094, "ycoord": 27.628367599791204 }, "geometry": { "type": "Point", "coordinates": [ 85.314072534010094, 27.628367599791204 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1367, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 95, "repvalue": 1140000, "xcoord": 85.314838061835403, "ycoord": 27.629779070616333 }, "geometry": { "type": "Point", "coordinates": [ 85.314838061835403, 27.629779070616333 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1373, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+8s+Com", "fptarea": 143, "repvalue": 2288000, "xcoord": 85.311666703310507, "ycoord": 27.631259508389604 }, "geometry": { "type": "Point", "coordinates": [ 85.311666703310507, 27.631259508389604 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1375, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 134, "repvalue": 1876000, "xcoord": 85.312918903384485, "ycoord": 27.6266008629126 }, "geometry": { "type": "Point", "coordinates": [ 85.312918903384485, 27.6266008629126 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1377, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Com", "fptarea": 108, "repvalue": 1728000, "xcoord": 85.315155864668768, "ycoord": 27.626160667974791 }, "geometry": { "type": "Point", "coordinates": [ 85.315155864668768, 27.626160667974791 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1388, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 107, "repvalue": 1284000, "xcoord": 85.316318467626445, "ycoord": 27.627343259890001 }, "geometry": { "type": "Point", "coordinates": [ 85.316318467626445, 27.627343259890001 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1391, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Com", "fptarea": 102, "repvalue": 1632000, "xcoord": 85.315467070694169, "ycoord": 27.631539420825941 }, "geometry": { "type": "Point", "coordinates": [ 85.315467070694169, 27.631539420825941 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1395, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Com", "fptarea": 114, "repvalue": 2052000, "xcoord": 85.314099388034805, "ycoord": 27.626615218216344 }, "geometry": { "type": "Point", "coordinates": [ 85.314099388034805, 27.626615218216344 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1404, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Com", "fptarea": 107, "repvalue": 2140000, "xcoord": 85.312913529017294, "ycoord": 27.626951339052155 }, "geometry": { "type": "Point", "coordinates": [ 85.312913529017294, 27.626951339052155 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1405, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 110, "repvalue": 1320000, "xcoord": 85.315680522912317, "ycoord": 27.626167040795771 }, "geometry": { "type": "Point", "coordinates": [ 85.315680522912317, 27.626167040795771 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1416, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Com", "fptarea": 148, "repvalue": 2960000, "xcoord": 85.314897114209487, "ycoord": 27.625923829797689 }, "geometry": { "type": "Point", "coordinates": [ 85.314897114209487, 27.625923829797689 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1418, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+6s+Com", "fptarea": 100, "repvalue": 1200000, "xcoord": 85.316018581748523, "ycoord": 27.629793411101947 }, "geometry": { "type": "Point", "coordinates": [ 85.316018581748523, 27.629793411101947 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1420, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 109, "repvalue": 1526000, "xcoord": 85.315781284234262, "ycoord": 27.628154667988611 }, "geometry": { "type": "Point", "coordinates": [ 85.315781284234262, 27.628154667988611 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1432, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 138, "repvalue": 2484000, "xcoord": 85.317599756455948, "ycoord": 27.629345213673844 }, "geometry": { "type": "Point", "coordinates": [ 85.317599756455948, 27.629345213673844 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1433, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Com", "fptarea": 125, "repvalue": 2000000, "xcoord": 85.311690013000884, "ycoord": 27.629740780237629 }, "geometry": { "type": "Point", "coordinates": [ 85.311690013000884, 27.629740780237629 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1438, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Com", "fptarea": 98, "repvalue": 1568000, "xcoord": 85.313168694837927, "ycoord": 27.627421831587892 }, "geometry": { "type": "Point", "coordinates": [ 85.313168694837927, 27.627421831587892 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1442, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Com", "fptarea": 146, "repvalue": 2628000, "xcoord": 85.315477805156789, "ycoord": 27.630838468068511 }, "geometry": { "type": "Point", "coordinates": [ 85.315477805156789, 27.630838468068511 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1453, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Com", "fptarea": 117, "repvalue": 1872000, "xcoord": 85.314324127605516, "ycoord": 27.629071741325486 }, "geometry": { "type": "Point", "coordinates": [ 85.314324127605516, 27.629071741325486 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1458, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Com", "fptarea": 127, "repvalue": 1524000, "xcoord": 85.311165338799128, "ycoord": 27.629734391566739 }, "geometry": { "type": "Point", "coordinates": [ 85.311165338799128, 27.629734391566739 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1460, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Com", "fptarea": 107, "repvalue": 1926000, "xcoord": 85.317626555425463, "ycoord": 27.627592829160861 }, "geometry": { "type": "Point", "coordinates": [ 85.317626555425463, 27.627592829160861 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1462, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Com", "fptarea": 125, "repvalue": 2500000, "xcoord": 85.313944947873949, "ycoord": 27.628132354301098 }, "geometry": { "type": "Point", "coordinates": [ 85.313944947873949, 27.628132354301098 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1467, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Com", "fptarea": 133, "repvalue": 2128000, "xcoord": 85.315377049596378, "ycoord": 27.628850841525747 }, "geometry": { "type": "Point", "coordinates": [ 85.315377049596378, 27.628850841525747 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1468, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 113, "repvalue": 1582000, "xcoord": 85.316388844009865, "ycoord": 27.63131692087164 }, "geometry": { "type": "Point", "coordinates": [ 85.316388844009865, 27.63131692087164 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1476, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Com", "fptarea": 147, "repvalue": 2352000, "xcoord": 85.311661323892181, "ycoord": 27.631609984067168 }, "geometry": { "type": "Point", "coordinates": [ 85.311661323892181, 27.631609984067168 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1477, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Com", "fptarea": 140, "repvalue": 2520000, "xcoord": 85.312983782805745, "ycoord": 27.630924996482825 }, "geometry": { "type": "Point", "coordinates": [ 85.312983782805745, 27.630924996482825 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1479, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Com", "fptarea": 147, "repvalue": 2940000, "xcoord": 85.312994532808034, "ycoord": 27.630224044561132 }, "geometry": { "type": "Point", "coordinates": [ 85.312994532808034, 27.630224044561132 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1487, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Com", "fptarea": 103, "repvalue": 1236000, "xcoord": 85.313109578153203, "ycoord": 27.631277068136498 }, "geometry": { "type": "Point", "coordinates": [ 85.313109578153203, 27.631277068136498 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1491, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+7s+Com", "fptarea": 103, "repvalue": 1442000, "xcoord": 85.316697665655397, "ycoord": 27.628282641306029 }, "geometry": { "type": "Point", "coordinates": [ 85.316697665655397, 27.628282641306029 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1498, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Com", "fptarea": 131, "repvalue": 1572000, "xcoord": 85.312730402438305, "ycoord": 27.630337678199187 }, "geometry": { "type": "Point", "coordinates": [ 85.312730402438305, 27.630337678199187 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1500, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 116, "repvalue": 1624000, "xcoord": 85.315706156945311, "ycoord": 27.63306133838757 }, "geometry": { "type": "Point", "coordinates": [ 85.315706156945311, 27.63306133838757 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1515, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 103, "repvalue": 1236000, "xcoord": 85.314845220323633, "ycoord": 27.629311768819285 }, "geometry": { "type": "Point", "coordinates": [ 85.314845220323633, 27.629311768819285 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1517, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+9s+Com", "fptarea": 145, "repvalue": 2610000, "xcoord": 85.317849588412088, "ycoord": 27.63016617543698 }, "geometry": { "type": "Point", "coordinates": [ 85.317849588412088, 27.63016617543698 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1519, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 124, "repvalue": 2232000, "xcoord": 85.314498252374193, "ycoord": 27.626269524644925 }, "geometry": { "type": "Point", "coordinates": [ 85.314498252374193, 27.626269524644925 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1522, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Com", "fptarea": 109, "repvalue": 1308000, "xcoord": 85.317023248197657, "ycoord": 27.632726788595392 }, "geometry": { "type": "Point", "coordinates": [ 85.317023248197657, 27.632726788595392 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1528, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 122, "repvalue": 2196000, "xcoord": 85.314971020170645, "ycoord": 27.629663839045403 }, "geometry": { "type": "Point", "coordinates": [ 85.314971020170645, 27.629663839045403 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1529, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Com", "fptarea": 123, "repvalue": 1968000, "xcoord": 85.318167294376465, "ycoord": 27.626547761725561 }, "geometry": { "type": "Point", "coordinates": [ 85.318167294376465, 27.626547761725561 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1533, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+9s+Com", "fptarea": 101, "repvalue": 1818000, "xcoord": 85.316264826172102, "ycoord": 27.630848026214263 }, "geometry": { "type": "Point", "coordinates": [ 85.316264826172102, 27.630848026214263 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1534, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 137, "repvalue": 2466000, "xcoord": 85.314969230671579, "ycoord": 27.629780664499425 }, "geometry": { "type": "Point", "coordinates": [ 85.314969230671579, 27.629780664499425 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1535, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 135, "repvalue": 1890000, "xcoord": 85.317060784315487, "ycoord": 27.630273452070654 }, "geometry": { "type": "Point", "coordinates": [ 85.317060784315487, 27.630273452070654 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1536, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Com", "fptarea": 126, "repvalue": 1764000, "xcoord": 85.310473609425685, "ycoord": 27.632062906222636 }, "geometry": { "type": "Point", "coordinates": [ 85.310473609425685, 27.632062906222636 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1537, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+6s+Com", "fptarea": 114, "repvalue": 1368000, "xcoord": 85.317860307072181, "ycoord": 27.629465221680622 }, "geometry": { "type": "Point", "coordinates": [ 85.317860307072181, 27.629465221680622 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1540, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Com", "fptarea": 110, "repvalue": 2200000, "xcoord": 85.318158364921729, "ycoord": 27.627131890198989 }, "geometry": { "type": "Point", "coordinates": [ 85.318158364921729, 27.627131890198989 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1551, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Com", "fptarea": 125, "repvalue": 1750000, "xcoord": 85.316128290880371, "ycoord": 27.631196910005961 }, "geometry": { "type": "Point", "coordinates": [ 85.316128290880371, 27.631196910005961 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1586, "nhouse": 0, "residents": 0, "specialfac": 1, "expstr": "RCi+HC+9s+Edu", "fptarea": 140, "repvalue": 3780000, "xcoord": 85.31563938513942, "ycoord": 27.628854028050441 }, "geometry": { "type": "Point", "coordinates": [ 85.31563938513942, 27.628854028050441 ] } }, +{ "type": "Feature", "properties": { "zoneid": 1, "bldid": 1590, "nhouse": 0, "residents": 0, "specialfac": 2, "expstr": "RCi+HC+9s+Hea", "fptarea": 86, "repvalue": 3096000, "xcoord": 85.31113664078508, "ycoord": 27.631603594891295 }, "geometry": { "type": "Point", "coordinates": [ 85.31113664078508, 27.631603594891295 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 388, "nhouse": 10, "residents": 45, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 80, "repvalue": 960000, "xcoord": 85.306708238203683, "ycoord": 27.620343873984506 }, "geometry": { "type": "Point", "coordinates": [ 85.306708238203683, 27.620343873984506 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 389, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 74, "repvalue": 296000, "xcoord": 85.30546555993071, "ycoord": 27.626276644051373 }, "geometry": { "type": "Point", "coordinates": [ 85.30546555993071, 27.626276644051373 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 390, "nhouse": 5, "residents": 18, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 87, "repvalue": 522000, "xcoord": 85.308488532851015, "ycoord": 27.624365080886118 }, "geometry": { "type": "Point", "coordinates": [ 85.308488532851015, 27.624365080886118 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 391, "nhouse": 10, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 86, "repvalue": 1032000, "xcoord": 85.304552531012249, "ycoord": 27.625752731607633 }, "geometry": { "type": "Point", "coordinates": [ 85.304552531012249, 27.625752731607633 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 392, "nhouse": 4, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 55, "repvalue": 440000, "xcoord": 85.305728948705394, "ycoord": 27.62412629574634 }, "geometry": { "type": "Point", "coordinates": [ 85.305728948705394, 27.62412629574634 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 393, "nhouse": 6, "residents": 22, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 76, "repvalue": 608000, "xcoord": 85.304924730971194, "ycoord": 27.624013918391196 }, "geometry": { "type": "Point", "coordinates": [ 85.304924730971194, 27.624013918391196 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 394, "nhouse": 4, "residents": 13, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 70, "repvalue": 420000, "xcoord": 85.303901351178965, "ycoord": 27.623181001264463 }, "geometry": { "type": "Point", "coordinates": [ 85.303901351178965, 27.623181001264463 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 395, "nhouse": 11, "residents": 48, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 79, "repvalue": 1106000, "xcoord": 85.3058582704477, "ycoord": 27.623204918280138 }, "geometry": { "type": "Point", "coordinates": [ 85.3058582704477, 27.623204918280138 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 396, "nhouse": 8, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 61, "repvalue": 732000, "xcoord": 85.304536945366834, "ycoord": 27.619291842303191 }, "geometry": { "type": "Point", "coordinates": [ 85.304536945366834, 27.619291842303191 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 397, "nhouse": 6, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 55, "repvalue": 550000, "xcoord": 85.306001795092399, "ycoord": 27.621360756524503 }, "geometry": { "type": "Point", "coordinates": [ 85.306001795092399, 27.621360756524503 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 398, "nhouse": 8, "residents": 30, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 78, "repvalue": 780000, "xcoord": 85.307389436476669, "ycoord": 27.620967493518268 }, "geometry": { "type": "Point", "coordinates": [ 85.307389436476669, 27.620967493518268 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 399, "nhouse": 6, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 61, "repvalue": 610000, "xcoord": 85.305661197962905, "ycoord": 27.621048943869159 }, "geometry": { "type": "Point", "coordinates": [ 85.305661197962905, 27.621048943869159 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 400, "nhouse": 15, "residents": 71, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 63, "repvalue": 1386000, "xcoord": 85.305226019367552, "ycoord": 27.619402814044417 }, "geometry": { "type": "Point", "coordinates": [ 85.305226019367552, 27.619402814044417 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 401, "nhouse": 18, "residents": 58, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 82, "repvalue": 1640000, "xcoord": 85.304108108678847, "ycoord": 27.617235583558067 }, "geometry": { "type": "Point", "coordinates": [ 85.304108108678847, 27.617235583558067 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 402, "nhouse": 8, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 58, "repvalue": 812000, "xcoord": 85.309016742289458, "ycoord": 27.619961832620849 }, "geometry": { "type": "Point", "coordinates": [ 85.309016742289458, 27.619961832620849 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 403, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 56, "repvalue": 224000, "xcoord": 85.309046674323781, "ycoord": 27.618013729301246 }, "geometry": { "type": "Point", "coordinates": [ 85.309046674323781, 27.618013729301246 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 404, "nhouse": 5, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 86, "repvalue": 516000, "xcoord": 85.308444345517231, "ycoord": 27.619749751507758 }, "geometry": { "type": "Point", "coordinates": [ 85.308444345517231, 27.619749751507758 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 405, "nhouse": 27, "residents": 97, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 74, "repvalue": 2516000, "xcoord": 85.30487121680558, "ycoord": 27.620013783491952 }, "geometry": { "type": "Point", "coordinates": [ 85.30487121680558, 27.620013783491952 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 406, "nhouse": 13, "residents": 48, "specialfac": 0, "expstr": "RCi+HC+7s+ResCom", "fptarea": 83, "repvalue": 1162000, "xcoord": 85.309185521341689, "ycoord": 27.623963376089698 }, "geometry": { "type": "Point", "coordinates": [ 85.309185521341689, 27.623963376089698 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 407, "nhouse": 27, "residents": 108, "specialfac": 0, "expstr": "RCi+HC+19s+Res", "fptarea": 64, "repvalue": 2432000, "xcoord": 85.306260422320591, "ycoord": 27.619517999549753 }, "geometry": { "type": "Point", "coordinates": [ 85.306260422320591, 27.619517999549753 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 408, "nhouse": 12, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 84, "repvalue": 1176000, "xcoord": 85.308439617575033, "ycoord": 27.62005734663428 }, "geometry": { "type": "Point", "coordinates": [ 85.308439617575033, 27.62005734663428 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 409, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 46, "repvalue": 184000, "xcoord": 85.309488206361394, "ycoord": 27.619249722679225 }, "geometry": { "type": "Point", "coordinates": [ 85.309488206361394, 27.619249722679225 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 410, "nhouse": 6, "residents": 29, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 71, "repvalue": 568000, "xcoord": 85.310038559815666, "ycoord": 27.620897244531726 }, "geometry": { "type": "Point", "coordinates": [ 85.310038559815666, 27.620897244531726 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 411, "nhouse": 6, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 61, "repvalue": 610000, "xcoord": 85.308955293437009, "ycoord": 27.623960569205536 }, "geometry": { "type": "Point", "coordinates": [ 85.308955293437009, 27.623960569205536 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 412, "nhouse": 1, "residents": 8, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 68, "repvalue": 136000, "xcoord": 85.309406171944843, "ycoord": 27.617095152276796 }, "geometry": { "type": "Point", "coordinates": [ 85.309406171944843, 27.617095152276796 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 413, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 61, "repvalue": 244000, "xcoord": 85.306443303683366, "ycoord": 27.622596758098283 }, "geometry": { "type": "Point", "coordinates": [ 85.306443303683366, 27.622596758098283 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 414, "nhouse": 16, "residents": 76, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 46, "repvalue": 1472000, "xcoord": 85.305342707158317, "ycoord": 27.619301688863359 }, "geometry": { "type": "Point", "coordinates": [ 85.305342707158317, 27.619301688863359 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 415, "nhouse": 20, "residents": 88, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 70, "repvalue": 1820000, "xcoord": 85.306187826105926, "ycoord": 27.624234451397914 }, "geometry": { "type": "Point", "coordinates": [ 85.306187826105926, 27.624234451397914 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 416, "nhouse": 7, "residents": 19, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 58, "repvalue": 696000, "xcoord": 85.304497453336523, "ycoord": 27.621855129563741 }, "geometry": { "type": "Point", "coordinates": [ 85.304497453336523, 27.621855129563741 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 417, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 82, "repvalue": 328000, "xcoord": 85.308357604019093, "ycoord": 27.617902776743147 }, "geometry": { "type": "Point", "coordinates": [ 85.308357604019093, 27.617902776743147 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 418, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 56, "repvalue": 336000, "xcoord": 85.306607327431905, "ycoord": 27.619419684201123 }, "geometry": { "type": "Point", "coordinates": [ 85.306607327431905, 27.619419684201123 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 419, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 57, "repvalue": 228000, "xcoord": 85.304530626992488, "ycoord": 27.619701968332041 }, "geometry": { "type": "Point", "coordinates": [ 85.304530626992488, 27.619701968332041 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 420, "nhouse": 11, "residents": 58, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 85, "repvalue": 1020000, "xcoord": 85.310036985251429, "ycoord": 27.620999776309777 }, "geometry": { "type": "Point", "coordinates": [ 85.310036985251429, 27.620999776309777 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 421, "nhouse": 7, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 52, "repvalue": 624000, "xcoord": 85.306883243793877, "ycoord": 27.623935290067131 }, "geometry": { "type": "Point", "coordinates": [ 85.306883243793877, 27.623935290067131 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 422, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 46, "repvalue": 276000, "xcoord": 85.306372375686166, "ycoord": 27.619724468274615 }, "geometry": { "type": "Point", "coordinates": [ 85.306372375686166, 27.619724468274615 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 423, "nhouse": 19, "residents": 73, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 54, "repvalue": 1728000, "xcoord": 85.304313046884985, "ycoord": 27.618878902135794 }, "geometry": { "type": "Point", "coordinates": [ 85.304313046884985, 27.618878902135794 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 424, "nhouse": 16, "residents": 66, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 53, "repvalue": 1484000, "xcoord": 85.303512030103505, "ycoord": 27.618561455341617 }, "geometry": { "type": "Point", "coordinates": [ 85.303512030103505, 27.618561455341617 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 425, "nhouse": 11, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 45, "repvalue": 1080000, "xcoord": 85.307848302817504, "ycoord": 27.621075643204229 }, "geometry": { "type": "Point", "coordinates": [ 85.307848302817504, 27.621075643204229 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 426, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 85, "repvalue": 340000, "xcoord": 85.306840700428495, "ycoord": 27.619217431293144 }, "geometry": { "type": "Point", "coordinates": [ 85.306840700428495, 27.619217431293144 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 427, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 67, "repvalue": 268000, "xcoord": 85.303723282246366, "ycoord": 27.619794648385394 }, "geometry": { "type": "Point", "coordinates": [ 85.303723282246366, 27.619794648385394 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 428, "nhouse": 11, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 64, "repvalue": 1024000, "xcoord": 85.308939535281624, "ycoord": 27.624985885886812 }, "geometry": { "type": "Point", "coordinates": [ 85.308939535281624, 27.624985885886812 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 429, "nhouse": 5, "residents": 18, "specialfac": 0, "expstr": "RCi+HC+3s+ResCom", "fptarea": 81, "repvalue": 486000, "xcoord": 85.305691190760299, "ycoord": 27.619100844240251 }, "geometry": { "type": "Point", "coordinates": [ 85.305691190760299, 27.619100844240251 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 430, "nhouse": 4, "residents": 17, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 66, "repvalue": 396000, "xcoord": 85.307553424229269, "ycoord": 27.625276630587422 }, "geometry": { "type": "Point", "coordinates": [ 85.307553424229269, 27.625276630587422 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 431, "nhouse": 19, "residents": 86, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 66, "repvalue": 1716000, "xcoord": 85.307072495368644, "ycoord": 27.61911770959685 }, "geometry": { "type": "Point", "coordinates": [ 85.307072495368644, 27.61911770959685 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 432, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 76, "repvalue": 152000, "xcoord": 85.307266439959079, "ycoord": 27.621478746909169 }, "geometry": { "type": "Point", "coordinates": [ 85.307266439959079, 27.621478746909169 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 433, "nhouse": 26, "residents": 102, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 78, "repvalue": 2340000, "xcoord": 85.306162571113177, "ycoord": 27.625874955595418 }, "geometry": { "type": "Point", "coordinates": [ 85.306162571113177, 27.625874955595418 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 434, "nhouse": 11, "residents": 46, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 72, "repvalue": 1008000, "xcoord": 85.306454349637818, "ycoord": 27.621879037118703 }, "geometry": { "type": "Point", "coordinates": [ 85.306454349637818, 27.621879037118703 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 435, "nhouse": 15, "residents": 63, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 52, "repvalue": 1352000, "xcoord": 85.305926024631177, "ycoord": 27.626282269452837 }, "geometry": { "type": "Point", "coordinates": [ 85.305926024631177, 27.626282269452837 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 436, "nhouse": 12, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 68, "repvalue": 1088000, "xcoord": 85.307274325760304, "ycoord": 27.62096608877339 }, "geometry": { "type": "Point", "coordinates": [ 85.307274325760304, 27.62096608877339 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 437, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 62, "repvalue": 124000, "xcoord": 85.309609614770139, "ycoord": 27.618840998374218 }, "geometry": { "type": "Point", "coordinates": [ 85.309609614770139, 27.618840998374218 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 438, "nhouse": 7, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+4s+ResCom", "fptarea": 83, "repvalue": 664000, "xcoord": 85.307446204240676, "ycoord": 27.61727635354136 }, "geometry": { "type": "Point", "coordinates": [ 85.307446204240676, 27.61727635354136 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 439, "nhouse": 5, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 87, "repvalue": 522000, "xcoord": 85.304795400123609, "ycoord": 27.624935294490712 }, "geometry": { "type": "Point", "coordinates": [ 85.304795400123609, 27.624935294490712 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 440, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 55, "repvalue": 220000, "xcoord": 85.304459746585792, "ycoord": 27.616829678706047 }, "geometry": { "type": "Point", "coordinates": [ 85.304459746585792, 27.616829678706047 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 441, "nhouse": 7, "residents": 30, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 46, "repvalue": 736000, "xcoord": 85.305309549950266, "ycoord": 27.621454851126156 }, "geometry": { "type": "Point", "coordinates": [ 85.305309549950266, 27.621454851126156 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 442, "nhouse": 3, "residents": 19, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 50, "repvalue": 300000, "xcoord": 85.30675871793774, "ycoord": 27.617062861636835 }, "geometry": { "type": "Point", "coordinates": [ 85.30675871793774, 27.617062861636835 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 444, "nhouse": 3, "residents": 7, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 74, "repvalue": 296000, "xcoord": 85.303851033349375, "ycoord": 27.618975804244112 }, "geometry": { "type": "Point", "coordinates": [ 85.303851033349375, 27.618975804244112 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 445, "nhouse": 18, "residents": 60, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 85, "repvalue": 1700000, "xcoord": 85.307201797671809, "ycoord": 27.618196329473601 }, "geometry": { "type": "Point", "coordinates": [ 85.307201797671809, 27.618196329473601 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 446, "nhouse": 7, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 47, "repvalue": 658000, "xcoord": 85.305740000035087, "ycoord": 27.623408575190719 }, "geometry": { "type": "Point", "coordinates": [ 85.305740000035087, 27.623408575190719 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 447, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 47, "repvalue": 282000, "xcoord": 85.307067763720113, "ycoord": 27.619425304532903 }, "geometry": { "type": "Point", "coordinates": [ 85.307067763720113, 27.619425304532903 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 448, "nhouse": 1, "residents": 6, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 69, "repvalue": 138000, "xcoord": 85.30411577427833, "ycoord": 27.624209130696062 }, "geometry": { "type": "Point", "coordinates": [ 85.30411577427833, 27.624209130696062 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 449, "nhouse": 4, "residents": 16, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 64, "repvalue": 384000, "xcoord": 85.306296627056085, "ycoord": 27.624645983308938 }, "geometry": { "type": "Point", "coordinates": [ 85.306296627056085, 27.624645983308938 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 450, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 80, "repvalue": 320000, "xcoord": 85.306757085132418, "ycoord": 27.624651605647482 }, "geometry": { "type": "Point", "coordinates": [ 85.306757085132418, 27.624651605647482 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 451, "nhouse": 13, "residents": 55, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 84, "repvalue": 1176000, "xcoord": 85.305268493072148, "ycoord": 27.6241206700935 }, "geometry": { "type": "Point", "coordinates": [ 85.305268493072148, 27.6241206700935 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 452, "nhouse": 7, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 45, "repvalue": 720000, "xcoord": 85.307914538026026, "ycoord": 27.62425552835883 }, "geometry": { "type": "Point", "coordinates": [ 85.307914538026026, 27.62425552835883 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 453, "nhouse": 5, "residents": 31, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 62, "repvalue": 496000, "xcoord": 85.304967375300066, "ycoord": 27.621245568354432 }, "geometry": { "type": "Point", "coordinates": [ 85.304967375300066, 27.621245568354432 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 454, "nhouse": 7, "residents": 39, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 82, "repvalue": 656000, "xcoord": 85.305546087264446, "ycoord": 27.621047537686621 }, "geometry": { "type": "Point", "coordinates": [ 85.305546087264446, 27.621047537686621 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 455, "nhouse": 9, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 63, "repvalue": 882000, "xcoord": 85.306539480468871, "ycoord": 27.623828542321725 }, "geometry": { "type": "Point", "coordinates": [ 85.306539480468871, 27.623828542321725 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 456, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 54, "repvalue": 324000, "xcoord": 85.307771038824256, "ycoord": 27.626099692625189 }, "geometry": { "type": "Point", "coordinates": [ 85.307771038824256, 27.626099692625189 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 457, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 56, "repvalue": 336000, "xcoord": 85.309612764397841, "ycoord": 27.61863593479805 }, "geometry": { "type": "Point", "coordinates": [ 85.309612764397841, 27.61863593479805 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 458, "nhouse": 10, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+9s+Res", "fptarea": 50, "repvalue": 900000, "xcoord": 85.304569910458227, "ycoord": 27.624624885937507 }, "geometry": { "type": "Point", "coordinates": [ 85.304569910458227, 27.624624885937507 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 459, "nhouse": 27, "residents": 110, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 84, "repvalue": 2520000, "xcoord": 85.306241485878402, "ycoord": 27.620748378618959 }, "geometry": { "type": "Point", "coordinates": [ 85.306241485878402, 27.620748378618959 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 460, "nhouse": 12, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+9s+Res", "fptarea": 62, "repvalue": 1116000, "xcoord": 85.303709058592148, "ycoord": 27.620717431457859 }, "geometry": { "type": "Point", "coordinates": [ 85.303709058592148, 27.620717431457859 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 461, "nhouse": 9, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 73, "repvalue": 876000, "xcoord": 85.310095238588289, "ycoord": 27.617206099457487 }, "geometry": { "type": "Point", "coordinates": [ 85.310095238588289, 27.617206099457487 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 462, "nhouse": 4, "residents": 13, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 66, "repvalue": 396000, "xcoord": 85.309630086755362, "ycoord": 27.61750808501484 }, "geometry": { "type": "Point", "coordinates": [ 85.309630086755362, 27.61750808501484 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 463, "nhouse": 10, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 45, "repvalue": 900000, "xcoord": 85.305389923349225, "ycoord": 27.62371195070088 }, "geometry": { "type": "Point", "coordinates": [ 85.305389923349225, 27.62371195070088 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 464, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 78, "repvalue": 156000, "xcoord": 85.304568535235887, "ycoord": 27.617241211775141 }, "geometry": { "type": "Point", "coordinates": [ 85.304568535235887, 27.617241211775141 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 465, "nhouse": 18, "residents": 57, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 57, "repvalue": 1710000, "xcoord": 85.304935787492369, "ycoord": 27.623296198123239 }, "geometry": { "type": "Point", "coordinates": [ 85.304935787492369, 27.623296198123239 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 466, "nhouse": 4, "residents": 15, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 66, "repvalue": 396000, "xcoord": 85.304455008097051, "ycoord": 27.617137273326914 }, "geometry": { "type": "Point", "coordinates": [ 85.304455008097051, 27.617137273326914 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 467, "nhouse": 7, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 62, "repvalue": 620000, "xcoord": 85.303743826330773, "ycoord": 27.61846173927426 }, "geometry": { "type": "Point", "coordinates": [ 85.303743826330773, 27.61846173927426 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 468, "nhouse": 19, "residents": 80, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 52, "repvalue": 1768000, "xcoord": 85.307132400657039, "ycoord": 27.622707721328062 }, "geometry": { "type": "Point", "coordinates": [ 85.307132400657039, 27.622707721328062 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 469, "nhouse": 8, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 74, "repvalue": 740000, "xcoord": 85.306887976863806, "ycoord": 27.623627695360423 }, "geometry": { "type": "Point", "coordinates": [ 85.306887976863806, 27.623627695360423 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 470, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 45, "repvalue": 270000, "xcoord": 85.306493796140785, "ycoord": 27.619315747266306 }, "geometry": { "type": "Point", "coordinates": [ 85.306493796140785, 27.619315747266306 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 471, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 57, "repvalue": 342000, "xcoord": 85.304376022227075, "ycoord": 27.622263848222534 }, "geometry": { "type": "Point", "coordinates": [ 85.304376022227075, 27.622263848222534 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 472, "nhouse": 5, "residents": 19, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 65, "repvalue": 520000, "xcoord": 85.304035427280198, "ycoord": 27.6219520316934 }, "geometry": { "type": "Point", "coordinates": [ 85.304035427280198, 27.6219520316934 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 473, "nhouse": 30, "residents": 133, "specialfac": 0, "expstr": "RCi+HC+16s+ResCom", "fptarea": 84, "repvalue": 2688000, "xcoord": 85.305479917281289, "ycoord": 27.617867653147414 }, "geometry": { "type": "Point", "coordinates": [ 85.305479917281289, 27.617867653147414 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 474, "nhouse": 18, "residents": 82, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 59, "repvalue": 1652000, "xcoord": 85.307537660792931, "ycoord": 27.61881573330508 }, "geometry": { "type": "Point", "coordinates": [ 85.307537660792931, 27.61881573330508 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 475, "nhouse": 9, "residents": 46, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 82, "repvalue": 820000, "xcoord": 85.305541350963011, "ycoord": 27.621355132293804 }, "geometry": { "type": "Point", "coordinates": [ 85.305541350963011, 27.621355132293804 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 476, "nhouse": 15, "residents": 57, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 60, "repvalue": 1440000, "xcoord": 85.305192859734774, "ycoord": 27.621555976145547 }, "geometry": { "type": "Point", "coordinates": [ 85.305192859734774, 27.621555976145547 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 477, "nhouse": 6, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 48, "repvalue": 576000, "xcoord": 85.304899457387478, "ycoord": 27.625654421566534 }, "geometry": { "type": "Point", "coordinates": [ 85.304899457387478, 27.625654421566534 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 478, "nhouse": 26, "residents": 112, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 73, "repvalue": 2336000, "xcoord": 85.304330200861983, "ycoord": 27.625237259830076 }, "geometry": { "type": "Point", "coordinates": [ 85.304330200861983, 27.625237259830076 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 479, "nhouse": 9, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 54, "repvalue": 864000, "xcoord": 85.307312151892219, "ycoord": 27.625991541823719 }, "geometry": { "type": "Point", "coordinates": [ 85.307312151892219, 27.625991541823719 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 480, "nhouse": 5, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 47, "repvalue": 470000, "xcoord": 85.303816267049015, "ycoord": 27.621231496386105 }, "geometry": { "type": "Point", "coordinates": [ 85.303816267049015, 27.621231496386105 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 481, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "BrCfl+LC+2s+ResCom", "fptarea": 57, "repvalue": 228000, "xcoord": 85.304633099930982, "ycoord": 27.620523627323955 }, "geometry": { "type": "Point", "coordinates": [ 85.304633099930982, 27.620523627323955 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 482, "nhouse": 24, "residents": 91, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 86, "repvalue": 2236000, "xcoord": 85.308802278993483, "ycoord": 27.618933708486658 }, "geometry": { "type": "Point", "coordinates": [ 85.308802278993483, 27.618933708486658 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 483, "nhouse": 7, "residents": 26, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 80, "repvalue": 640000, "xcoord": 85.309579691647116, "ycoord": 27.620789102028862 }, "geometry": { "type": "Point", "coordinates": [ 85.309579691647116, 27.620789102028862 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 484, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 58, "repvalue": 232000, "xcoord": 85.309122399856648, "ycoord": 27.620578426311905 }, "geometry": { "type": "Point", "coordinates": [ 85.309122399856648, 27.620578426311905 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 485, "nhouse": 8, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 53, "repvalue": 742000, "xcoord": 85.306858051612991, "ycoord": 27.618089583222808 }, "geometry": { "type": "Point", "coordinates": [ 85.306858051612991, 27.618089583222808 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 486, "nhouse": 7, "residents": 28, "specialfac": 0, "expstr": "BrCfl+MC+4s+Res", "fptarea": 78, "repvalue": 624000, "xcoord": 85.308310322507509, "ycoord": 27.620978728041575 }, "geometry": { "type": "Point", "coordinates": [ 85.308310322507509, 27.620978728041575 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 487, "nhouse": 2, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 68, "repvalue": 272000, "xcoord": 85.306282422049478, "ycoord": 27.625568766967699 }, "geometry": { "type": "Point", "coordinates": [ 85.306282422049478, 27.625568766967699 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 488, "nhouse": 8, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 66, "repvalue": 792000, "xcoord": 85.308305593944183, "ycoord": 27.621286323092274 }, "geometry": { "type": "Point", "coordinates": [ 85.308305593944183, 27.621286323092274 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 489, "nhouse": 5, "residents": 18, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 52, "repvalue": 520000, "xcoord": 85.308693473002634, "ycoord": 27.618522178051155 }, "geometry": { "type": "Point", "coordinates": [ 85.308693473002634, 27.618522178051155 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 490, "nhouse": 17, "residents": 60, "specialfac": 0, "expstr": "RCi+HC+9s+Res", "fptarea": 88, "repvalue": 1584000, "xcoord": 85.304954740577486, "ycoord": 27.622065820338719 }, "geometry": { "type": "Point", "coordinates": [ 85.304954740577486, 27.622065820338719 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 491, "nhouse": 16, "residents": 54, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 57, "repvalue": 1482000, "xcoord": 85.305688033765506, "ycoord": 27.619305907386266 }, "geometry": { "type": "Point", "coordinates": [ 85.305688033765506, 27.619305907386266 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 492, "nhouse": 8, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 63, "repvalue": 756000, "xcoord": 85.306766552190183, "ycoord": 27.624036416323392 }, "geometry": { "type": "Point", "coordinates": [ 85.306766552190183, 27.624036416323392 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 493, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 68, "repvalue": 136000, "xcoord": 85.305997060001431, "ycoord": 27.621668351190461 }, "geometry": { "type": "Point", "coordinates": [ 85.305997060001431, 27.621668351190461 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 494, "nhouse": 17, "residents": 72, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 72, "repvalue": 1584000, "xcoord": 85.307086652895251, "ycoord": 27.625681136994146 }, "geometry": { "type": "Point", "coordinates": [ 85.307086652895251, 27.625681136994146 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 495, "nhouse": 18, "residents": 72, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 63, "repvalue": 1638000, "xcoord": 85.305380596606298, "ycoord": 27.616840931128106 }, "geometry": { "type": "Point", "coordinates": [ 85.305380596606298, 27.616840931128106 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 496, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 57, "repvalue": 228000, "xcoord": 85.30948190644456, "ycoord": 27.619659849762456 }, "geometry": { "type": "Point", "coordinates": [ 85.30948190644456, 27.619659849762456 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 497, "nhouse": 7, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 56, "repvalue": 672000, "xcoord": 85.308721913572583, "ycoord": 27.624162825264278 }, "geometry": { "type": "Point", "coordinates": [ 85.308721913572583, 27.624162825264278 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 498, "nhouse": 2, "residents": 5, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 67, "repvalue": 268000, "xcoord": 85.304076510241003, "ycoord": 27.61928621359791 }, "geometry": { "type": "Point", "coordinates": [ 85.304076510241003, 27.61928621359791 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 499, "nhouse": 12, "residents": 50, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 72, "repvalue": 1152000, "xcoord": 85.306730324137405, "ycoord": 27.618908431283867 }, "geometry": { "type": "Point", "coordinates": [ 85.306730324137405, 27.618908431283867 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 500, "nhouse": 8, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 67, "repvalue": 804000, "xcoord": 85.306583661637092, "ycoord": 27.620957658299918 }, "geometry": { "type": "Point", "coordinates": [ 85.306583661637092, 27.620957658299918 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 501, "nhouse": 8, "residents": 30, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 76, "repvalue": 760000, "xcoord": 85.306414975850217, "ycoord": 27.616956114448826 }, "geometry": { "type": "Point", "coordinates": [ 85.306414975850217, 27.616956114448826 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 502, "nhouse": 9, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 57, "repvalue": 798000, "xcoord": 85.305273230692038, "ycoord": 27.623813075652443 }, "geometry": { "type": "Point", "coordinates": [ 85.305273230692038, 27.623813075652443 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 503, "nhouse": 4, "residents": 16, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 69, "repvalue": 414000, "xcoord": 85.304383921752972, "ycoord": 27.621751190912878 }, "geometry": { "type": "Point", "coordinates": [ 85.304383921752972, 27.621751190912878 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 504, "nhouse": 7, "residents": 30, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 45, "repvalue": 630000, "xcoord": 85.303869995082891, "ycoord": 27.617745426385895 }, "geometry": { "type": "Point", "coordinates": [ 85.303869995082891, 27.617745426385895 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 505, "nhouse": 9, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 58, "repvalue": 812000, "xcoord": 85.305033698833654, "ycoord": 27.616939243757876 }, "geometry": { "type": "Point", "coordinates": [ 85.305033698833654, 27.616939243757876 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 506, "nhouse": 6, "residents": 24, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 74, "repvalue": 592000, "xcoord": 85.307717424351793, "ycoord": 27.622099555294263 }, "geometry": { "type": "Point", "coordinates": [ 85.307717424351793, 27.622099555294263 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 507, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 53, "repvalue": 318000, "xcoord": 85.307723731495301, "ycoord": 27.621689428729741 }, "geometry": { "type": "Point", "coordinates": [ 85.307723731495301, 27.621689428729741 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 508, "nhouse": 1, "residents": 2, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 54, "repvalue": 108000, "xcoord": 85.309500805795679, "ycoord": 27.618429468436016 }, "geometry": { "type": "Point", "coordinates": [ 85.309500805795679, 27.618429468436016 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 509, "nhouse": 9, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 75, "repvalue": 900000, "xcoord": 85.305147061812789, "ycoord": 27.624529389316287 }, "geometry": { "type": "Point", "coordinates": [ 85.305147061812789, 27.624529389316287 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 510, "nhouse": 4, "residents": 14, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 65, "repvalue": 390000, "xcoord": 85.304213736767437, "ycoord": 27.617852179871203 }, "geometry": { "type": "Point", "coordinates": [ 85.304213736767437, 27.617852179871203 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 511, "nhouse": 15, "residents": 57, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 58, "repvalue": 1392000, "xcoord": 85.309213880066721, "ycoord": 27.622117805441395 }, "geometry": { "type": "Point", "coordinates": [ 85.309213880066721, 27.622117805441395 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 512, "nhouse": 6, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 61, "repvalue": 610000, "xcoord": 85.30696522625243, "ycoord": 27.626089857946972 }, "geometry": { "type": "Point", "coordinates": [ 85.30696522625243, 27.626089857946972 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 513, "nhouse": 5, "residents": 16, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 60, "repvalue": 480000, "xcoord": 85.305615413678126, "ycoord": 27.624022357979257 }, "geometry": { "type": "Point", "coordinates": [ 85.305615413678126, 27.624022357979257 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 514, "nhouse": 6, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 52, "repvalue": 624000, "xcoord": 85.305902468213347, "ycoord": 27.620334035013805 }, "geometry": { "type": "Point", "coordinates": [ 85.305902468213347, 27.620334035013805 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 515, "nhouse": 5, "residents": 17, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 79, "repvalue": 474000, "xcoord": 85.307485623499602, "ycoord": 27.622199277772634 }, "geometry": { "type": "Point", "coordinates": [ 85.307485623499602, 27.622199277772634 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 516, "nhouse": 8, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 66, "repvalue": 792000, "xcoord": 85.305467139106568, "ycoord": 27.626174112594008 }, "geometry": { "type": "Point", "coordinates": [ 85.305467139106568, 27.626174112594008 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 517, "nhouse": 7, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 48, "repvalue": 672000, "xcoord": 85.304980009488688, "ycoord": 27.620425316267809 }, "geometry": { "type": "Point", "coordinates": [ 85.304980009488688, 27.620425316267809 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 518, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 49, "repvalue": 294000, "xcoord": 85.305574503496786, "ycoord": 27.619201969741283 }, "geometry": { "type": "Point", "coordinates": [ 85.305574503496786, 27.619201969741283 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 519, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 52, "repvalue": 312000, "xcoord": 85.30854212005535, "ycoord": 27.620879004019084 }, "geometry": { "type": "Point", "coordinates": [ 85.30854212005535, 27.620879004019084 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 520, "nhouse": 12, "residents": 52, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 71, "repvalue": 1136000, "xcoord": 85.304396560560406, "ycoord": 27.620930939134269 }, "geometry": { "type": "Point", "coordinates": [ 85.304396560560406, 27.620930939134269 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 521, "nhouse": 12, "residents": 49, "specialfac": 0, "expstr": "RCi+HC+9s+Res", "fptarea": 64, "repvalue": 1152000, "xcoord": 85.308953717658923, "ycoord": 27.624063100880857 }, "geometry": { "type": "Point", "coordinates": [ 85.308953717658923, 27.624063100880857 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 522, "nhouse": 14, "residents": 52, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 48, "repvalue": 1344000, "xcoord": 85.308622560138758, "ycoord": 27.623136104849351 }, "geometry": { "type": "Point", "coordinates": [ 85.308622560138758, 27.623136104849351 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 523, "nhouse": 20, "residents": 78, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 62, "repvalue": 1860000, "xcoord": 85.306408665098232, "ycoord": 27.617366241015088 }, "geometry": { "type": "Point", "coordinates": [ 85.306408665098232, 27.617366241015088 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 524, "nhouse": 13, "residents": 58, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 85, "repvalue": 1190000, "xcoord": 85.304622042737122, "ycoord": 27.621241347766041 }, "geometry": { "type": "Point", "coordinates": [ 85.304622042737122, 27.621241347766041 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 525, "nhouse": 12, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 81, "repvalue": 1134000, "xcoord": 85.305572924888097, "ycoord": 27.619304501307397 }, "geometry": { "type": "Point", "coordinates": [ 85.305572924888097, 27.619304501307397 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 526, "nhouse": 7, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 84, "repvalue": 672000, "xcoord": 85.309111371907974, "ycoord": 27.621296148417517 }, "geometry": { "type": "Point", "coordinates": [ 85.309111371907974, 27.621296148417517 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 527, "nhouse": 8, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 77, "repvalue": 770000, "xcoord": 85.304221406896914, "ycoord": 27.624825726712917 }, "geometry": { "type": "Point", "coordinates": [ 85.304221406896914, 27.624825726712917 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 528, "nhouse": 19, "residents": 82, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 60, "repvalue": 1680000, "xcoord": 85.305222692208801, "ycoord": 27.627094082281669 }, "geometry": { "type": "Point", "coordinates": [ 85.305222692208801, 27.627094082281669 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 529, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 55, "repvalue": 220000, "xcoord": 85.306742883983162, "ycoord": 27.625574389525656 }, "geometry": { "type": "Point", "coordinates": [ 85.306742883983162, 27.625574389525656 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 530, "nhouse": 8, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 50, "repvalue": 800000, "xcoord": 85.306824925749396, "ycoord": 27.620242747552837 }, "geometry": { "type": "Point", "coordinates": [ 85.306824925749396, 27.620242747552837 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 531, "nhouse": 9, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 85, "repvalue": 850000, "xcoord": 85.30746354433127, "ycoord": 27.623634720354033 }, "geometry": { "type": "Point", "coordinates": [ 85.30746354433127, 27.623634720354033 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 532, "nhouse": 4, "residents": 17, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 67, "repvalue": 402000, "xcoord": 85.304784341917838, "ycoord": 27.625653014536834 }, "geometry": { "type": "Point", "coordinates": [ 85.304784341917838, 27.625653014536834 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 533, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 70, "repvalue": 280000, "xcoord": 85.305957597991608, "ycoord": 27.624231639513798 }, "geometry": { "type": "Point", "coordinates": [ 85.305957597991608, 27.624231639513798 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 534, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "BrCfl+MC+2s+Res", "fptarea": 47, "repvalue": 188000, "xcoord": 85.304707141174035, "ycoord": 27.623190852787996 }, "geometry": { "type": "Point", "coordinates": [ 85.304707141174035, 27.623190852787996 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 535, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 46, "repvalue": 184000, "xcoord": 85.307471429935987, "ycoord": 27.623122062325223 }, "geometry": { "type": "Point", "coordinates": [ 85.307471429935987, 27.623122062325223 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 536, "nhouse": 7, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 55, "repvalue": 660000, "xcoord": 85.308001247403851, "ycoord": 27.618616287031156 }, "geometry": { "type": "Point", "coordinates": [ 85.308001247403851, 27.618616287031156 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 537, "nhouse": 7, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 51, "repvalue": 714000, "xcoord": 85.303953500813677, "ycoord": 27.619797463562513 }, "geometry": { "type": "Point", "coordinates": [ 85.303953500813677, 27.619797463562513 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 538, "nhouse": 10, "residents": 47, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 80, "repvalue": 960000, "xcoord": 85.308672988795749, "ycoord": 27.619855090569853 }, "geometry": { "type": "Point", "coordinates": [ 85.308672988795749, 27.619855090569853 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 539, "nhouse": 14, "residents": 46, "specialfac": 0, "expstr": "RCi+HC+9s+Res", "fptarea": 73, "repvalue": 1314000, "xcoord": 85.305359919349428, "ycoord": 27.625660048730765 }, "geometry": { "type": "Point", "coordinates": [ 85.305359919349428, 27.625660048730765 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 540, "nhouse": 11, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 84, "repvalue": 1008000, "xcoord": 85.308099017024631, "ycoord": 27.619745539782798 }, "geometry": { "type": "Point", "coordinates": [ 85.308099017024631, 27.619745539782798 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 541, "nhouse": 10, "residents": 47, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 69, "repvalue": 966000, "xcoord": 85.303838391525844, "ycoord": 27.619796056021663 }, "geometry": { "type": "Point", "coordinates": [ 85.303838391525844, 27.619796056021663 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 542, "nhouse": 9, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 50, "repvalue": 800000, "xcoord": 85.308717106877879, "ycoord": 27.616984201732325 }, "geometry": { "type": "Point", "coordinates": [ 85.308717106877879, 27.616984201732325 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 543, "nhouse": 5, "residents": 21, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 56, "repvalue": 448000, "xcoord": 85.304710300516845, "ycoord": 27.622985789861112 }, "geometry": { "type": "Point", "coordinates": [ 85.304710300516845, 27.622985789861112 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 544, "nhouse": 8, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 79, "repvalue": 790000, "xcoord": 85.309101919055962, "ycoord": 27.621911338731405 }, "geometry": { "type": "Point", "coordinates": [ 85.309101919055962, 27.621911338731405 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 545, "nhouse": 19, "residents": 65, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 60, "repvalue": 1800000, "xcoord": 85.308267762739689, "ycoord": 27.623747082979854 }, "geometry": { "type": "Point", "coordinates": [ 85.308267762739689, 27.623747082979854 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 546, "nhouse": 8, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 78, "repvalue": 780000, "xcoord": 85.307518739190456, "ycoord": 27.620046113312924 }, "geometry": { "type": "Point", "coordinates": [ 85.307518739190456, 27.620046113312924 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 547, "nhouse": 5, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 45, "repvalue": 540000, "xcoord": 85.308832213516709, "ycoord": 27.616985605094577 }, "geometry": { "type": "Point", "coordinates": [ 85.308832213516709, 27.616985605094577 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 548, "nhouse": 10, "residents": 43, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 60, "repvalue": 960000, "xcoord": 85.303576561793861, "ycoord": 27.621843869405584 }, "geometry": { "type": "Point", "coordinates": [ 85.303576561793861, 27.621843869405584 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 549, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 54, "repvalue": 324000, "xcoord": 85.309411023206152, "ycoord": 27.624273777686259 }, "geometry": { "type": "Point", "coordinates": [ 85.309411023206152, 27.624273777686259 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 550, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 81, "repvalue": 324000, "xcoord": 85.305088802903612, "ycoord": 27.62083684897144 }, "geometry": { "type": "Point", "coordinates": [ 85.305088802903612, 27.62083684897144 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 551, "nhouse": 5, "residents": 21, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 64, "repvalue": 512000, "xcoord": 85.304137897645077, "ycoord": 27.622773690724575 }, "geometry": { "type": "Point", "coordinates": [ 85.304137897645077, 27.622773690724575 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 552, "nhouse": 4, "residents": 13, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 44, "repvalue": 440000, "xcoord": 85.307149751423054, "ycoord": 27.621579873654653 }, "geometry": { "type": "Point", "coordinates": [ 85.307149751423054, 27.621579873654653 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 553, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 44, "repvalue": 352000, "xcoord": 85.307116626358436, "ycoord": 27.623733037226895 }, "geometry": { "type": "Point", "coordinates": [ 85.307116626358436, 27.623733037226895 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 554, "nhouse": 26, "residents": 100, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 79, "repvalue": 2370000, "xcoord": 85.307506124122369, "ycoord": 27.620866366523579 }, "geometry": { "type": "Point", "coordinates": [ 85.307506124122369, 27.620866366523579 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 555, "nhouse": 6, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 52, "repvalue": 624000, "xcoord": 85.306619878132352, "ycoord": 27.626085641653013 }, "geometry": { "type": "Point", "coordinates": [ 85.306619878132352, 27.626085641653013 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 556, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 45, "repvalue": 270000, "xcoord": 85.304655213092047, "ycoord": 27.61908818620471 }, "geometry": { "type": "Point", "coordinates": [ 85.304655213092047, 27.61908818620471 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 557, "nhouse": 8, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 64, "repvalue": 768000, "xcoord": 85.305017908850914, "ycoord": 27.617964559393862 }, "geometry": { "type": "Point", "coordinates": [ 85.305017908850914, 27.617964559393862 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 558, "nhouse": 9, "residents": 52, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 64, "repvalue": 896000, "xcoord": 85.30493262852805, "ycoord": 27.623501261064934 }, "geometry": { "type": "Point", "coordinates": [ 85.30493262852805, 27.623501261064934 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 559, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 80, "repvalue": 320000, "xcoord": 85.307684309661695, "ycoord": 27.62425271933823 }, "geometry": { "type": "Point", "coordinates": [ 85.307684309661695, 27.62425271933823 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 560, "nhouse": 6, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 51, "repvalue": 612000, "xcoord": 85.306523771998883, "ycoord": 27.617367646310143 }, "geometry": { "type": "Point", "coordinates": [ 85.306523771998883, 27.617367646310143 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 561, "nhouse": 12, "residents": 63, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 80, "repvalue": 1120000, "xcoord": 85.306039562178711, "ycoord": 27.626386207050821 }, "geometry": { "type": "Point", "coordinates": [ 85.306039562178711, 27.626386207050821 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 562, "nhouse": 7, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 45, "repvalue": 630000, "xcoord": 85.303776754984526, "ycoord": 27.623794781971512 }, "geometry": { "type": "Point", "coordinates": [ 85.303776754984526, 27.623794781971512 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 563, "nhouse": 8, "residents": 46, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 72, "repvalue": 720000, "xcoord": 85.306917951231483, "ycoord": 27.621679595217071 }, "geometry": { "type": "Point", "coordinates": [ 85.306917951231483, 27.621679595217071 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 564, "nhouse": 23, "residents": 94, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 76, "repvalue": 2128000, "xcoord": 85.307291673789791, "ycoord": 27.619838240733962 }, "geometry": { "type": "Point", "coordinates": [ 85.307291673789791, 27.619838240733962 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 565, "nhouse": 3, "residents": 16, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 81, "repvalue": 324000, "xcoord": 85.308198364272656, "ycoord": 27.62077226069724 }, "geometry": { "type": "Point", "coordinates": [ 85.308198364272656, 27.62077226069724 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 566, "nhouse": 2, "residents": 10, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 50, "repvalue": 200000, "xcoord": 85.305238650640987, "ycoord": 27.618582561629921 }, "geometry": { "type": "Point", "coordinates": [ 85.305238650640987, 27.618582561629921 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 567, "nhouse": 7, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 56, "repvalue": 672000, "xcoord": 85.306181512557856, "ycoord": 27.624644577485672 }, "geometry": { "type": "Point", "coordinates": [ 85.306181512557856, 27.624644577485672 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 568, "nhouse": 4, "residents": 16, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 60, "repvalue": 360000, "xcoord": 85.309716849724225, "ycoord": 27.619355060025445 }, "geometry": { "type": "Point", "coordinates": [ 85.309716849724225, 27.619355060025445 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 569, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 76, "repvalue": 152000, "xcoord": 85.305073010821957, "ycoord": 27.621862164060769 }, "geometry": { "type": "Point", "coordinates": [ 85.305073010821957, 27.621862164060769 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 570, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 61, "repvalue": 122000, "xcoord": 85.305347443602045, "ycoord": 27.618994094196818 }, "geometry": { "type": "Point", "coordinates": [ 85.305347443602045, 27.618994094196818 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 571, "nhouse": 7, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 49, "repvalue": 686000, "xcoord": 85.306389646094004, "ycoord": 27.626082830313077 }, "geometry": { "type": "Point", "coordinates": [ 85.306389646094004, 27.626082830313077 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 572, "nhouse": 19, "residents": 67, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 71, "repvalue": 1704000, "xcoord": 85.307308996994436, "ycoord": 27.626196604938308 }, "geometry": { "type": "Point", "coordinates": [ 85.307308996994436, 27.626196604938308 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 573, "nhouse": 13, "residents": 51, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 87, "repvalue": 1218000, "xcoord": 85.306411820490894, "ycoord": 27.617161177735156 }, "geometry": { "type": "Point", "coordinates": [ 85.306411820490894, 27.617161177735156 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 574, "nhouse": 4, "residents": 16, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 47, "repvalue": 376000, "xcoord": 85.306995202384783, "ycoord": 27.624141758417029 }, "geometry": { "type": "Point", "coordinates": [ 85.306995202384783, 27.624141758417029 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 575, "nhouse": 8, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 48, "repvalue": 768000, "xcoord": 85.306049141874766, "ycoord": 27.618284809073351 }, "geometry": { "type": "Point", "coordinates": [ 85.306049141874766, 27.618284809073351 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 576, "nhouse": 17, "residents": 69, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 49, "repvalue": 1568000, "xcoord": 85.306610409431414, "ycoord": 27.626700830748629 }, "geometry": { "type": "Point", "coordinates": [ 85.306610409431414, 27.626700830748629 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 577, "nhouse": 6, "residents": 22, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 49, "repvalue": 588000, "xcoord": 85.307394167536046, "ycoord": 27.620659898599342 }, "geometry": { "type": "Point", "coordinates": [ 85.307394167536046, 27.620659898599342 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 578, "nhouse": 7, "residents": 23, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 83, "repvalue": 664000, "xcoord": 85.306080604327789, "ycoord": 27.62372038788839 }, "geometry": { "type": "Point", "coordinates": [ 85.306080604327789, 27.62372038788839 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 579, "nhouse": 24, "residents": 93, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 69, "repvalue": 2208000, "xcoord": 85.308144725921551, "ycoord": 27.616772120014272 }, "geometry": { "type": "Point", "coordinates": [ 85.308144725921551, 27.616772120014272 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 580, "nhouse": 8, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 61, "repvalue": 732000, "xcoord": 85.309825660236768, "ycoord": 27.619766589818649 }, "geometry": { "type": "Point", "coordinates": [ 85.309825660236768, 27.619766589818649 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 581, "nhouse": 7, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 59, "repvalue": 708000, "xcoord": 85.307225430434869, "ycoord": 27.624144568570852 }, "geometry": { "type": "Point", "coordinates": [ 85.307225430434869, 27.624144568570852 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 582, "nhouse": 5, "residents": 23, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 74, "repvalue": 444000, "xcoord": 85.306375531462265, "ycoord": 27.619519405068232 }, "geometry": { "type": "Point", "coordinates": [ 85.306375531462265, 27.619519405068232 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 583, "nhouse": 8, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 75, "repvalue": 750000, "xcoord": 85.309573391659541, "ycoord": 27.621199229040514 }, "geometry": { "type": "Point", "coordinates": [ 85.309573391659541, 27.621199229040514 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 584, "nhouse": 15, "residents": 72, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 49, "repvalue": 1372000, "xcoord": 85.309119249055797, "ycoord": 27.620783489778646 }, "geometry": { "type": "Point", "coordinates": [ 85.309119249055797, 27.620783489778646 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 585, "nhouse": 14, "residents": 54, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 85, "repvalue": 1360000, "xcoord": 85.306028625857053, "ycoord": 27.619617719812208 }, "geometry": { "type": "Point", "coordinates": [ 85.306028625857053, 27.619617719812208 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 586, "nhouse": 6, "residents": 18, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 71, "repvalue": 568000, "xcoord": 85.306269890091528, "ycoord": 27.618902809928809 }, "geometry": { "type": "Point", "coordinates": [ 85.306269890091528, 27.618902809928809 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 587, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 73, "repvalue": 292000, "xcoord": 85.305640674840561, "ycoord": 27.62238185380896 }, "geometry": { "type": "Point", "coordinates": [ 85.305640674840561, 27.62238185380896 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 588, "nhouse": 5, "residents": 24, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 81, "repvalue": 486000, "xcoord": 85.306168885061467, "ycoord": 27.62546482958442 }, "geometry": { "type": "Point", "coordinates": [ 85.306168885061467, 27.62546482958442 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 589, "nhouse": 17, "residents": 63, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 55, "repvalue": 1540000, "xcoord": 85.304663110253202, "ycoord": 27.618575528586163 }, "geometry": { "type": "Point", "coordinates": [ 85.304663110253202, 27.618575528586163 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 590, "nhouse": 9, "residents": 30, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 59, "repvalue": 826000, "xcoord": 85.308340268334931, "ycoord": 27.619030625719642 }, "geometry": { "type": "Point", "coordinates": [ 85.308340268334931, 27.619030625719642 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 591, "nhouse": 7, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 53, "repvalue": 636000, "xcoord": 85.308898481398259, "ycoord": 27.620165492734539 }, "geometry": { "type": "Point", "coordinates": [ 85.308898481398259, 27.620165492734539 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 592, "nhouse": 7, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 46, "repvalue": 644000, "xcoord": 85.309581266623212, "ycoord": 27.62068657027195 }, "geometry": { "type": "Point", "coordinates": [ 85.309581266623212, 27.62068657027195 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 593, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 51, "repvalue": 306000, "xcoord": 85.305796698378614, "ycoord": 27.627203646454653 }, "geometry": { "type": "Point", "coordinates": [ 85.305796698378614, 27.627203646454653 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 594, "nhouse": 7, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 46, "repvalue": 644000, "xcoord": 85.304445315869629, "ycoord": 27.625238667217182 }, "geometry": { "type": "Point", "coordinates": [ 85.304445315869629, 27.625238667217182 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 595, "nhouse": 8, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 49, "repvalue": 784000, "xcoord": 85.306927416196245, "ycoord": 27.621064405578188 }, "geometry": { "type": "Point", "coordinates": [ 85.306927416196245, 27.621064405578188 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 596, "nhouse": 4, "residents": 14, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 72, "repvalue": 432000, "xcoord": 85.304929469530336, "ycoord": 27.623706324000239 }, "geometry": { "type": "Point", "coordinates": [ 85.304929469530336, 27.623706324000239 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 597, "nhouse": 5, "residents": 15, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 52, "repvalue": 520000, "xcoord": 85.307670116527035, "ycoord": 27.625175503712644 }, "geometry": { "type": "Point", "coordinates": [ 85.307670116527035, 27.625175503712644 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 598, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 69, "repvalue": 276000, "xcoord": 85.306558416055466, "ycoord": 27.622598163608746 }, "geometry": { "type": "Point", "coordinates": [ 85.306558416055466, 27.622598163608746 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 599, "nhouse": 5, "residents": 17, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 56, "repvalue": 448000, "xcoord": 85.308674564553925, "ycoord": 27.619752558847242 }, "geometry": { "type": "Point", "coordinates": [ 85.308674564553925, 27.619752558847242 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 600, "nhouse": 3, "residents": 16, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 57, "repvalue": 342000, "xcoord": 85.310210345541151, "ycoord": 27.617207501686835 }, "geometry": { "type": "Point", "coordinates": [ 85.310210345541151, 27.617207501686835 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 601, "nhouse": 11, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 87, "repvalue": 1044000, "xcoord": 85.306178355733778, "ycoord": 27.624849640519958 }, "geometry": { "type": "Point", "coordinates": [ 85.306178355733778, 27.624849640519958 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 602, "nhouse": 6, "residents": 21, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 75, "repvalue": 600000, "xcoord": 85.304943684757177, "ycoord": 27.622783540741011 }, "geometry": { "type": "Point", "coordinates": [ 85.304943684757177, 27.622783540741011 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 603, "nhouse": 27, "residents": 90, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 82, "repvalue": 2460000, "xcoord": 85.304800327756098, "ycoord": 27.617141493755753 }, "geometry": { "type": "Point", "coordinates": [ 85.304800327756098, 27.617141493755753 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 604, "nhouse": 8, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 50, "repvalue": 800000, "xcoord": 85.305033526967733, "ycoord": 27.624425451084445 }, "geometry": { "type": "Point", "coordinates": [ 85.305033526967733, 27.624425451084445 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 605, "nhouse": 22, "residents": 75, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 85, "repvalue": 2040000, "xcoord": 85.307272748616725, "ycoord": 27.62106862040374 }, "geometry": { "type": "Point", "coordinates": [ 85.307272748616725, 27.62106862040374 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 606, "nhouse": 13, "residents": 59, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 87, "repvalue": 1218000, "xcoord": 85.305610676972464, "ycoord": 27.624329952465612 }, "geometry": { "type": "Point", "coordinates": [ 85.305610676972464, 27.624329952465612 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 607, "nhouse": 3, "residents": 16, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 75, "repvalue": 300000, "xcoord": 85.309527712768059, "ycoord": 27.624172649109969 }, "geometry": { "type": "Point", "coordinates": [ 85.309527712768059, 27.624172649109969 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 608, "nhouse": 5, "residents": 18, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 49, "repvalue": 490000, "xcoord": 85.304314626638558, "ycoord": 27.618776370630385 }, "geometry": { "type": "Point", "coordinates": [ 85.304314626638558, 27.618776370630385 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 609, "nhouse": 8, "residents": 29, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 80, "repvalue": 800000, "xcoord": 85.30701097808813, "ycoord": 27.623116442643077 }, "geometry": { "type": "Point", "coordinates": [ 85.30701097808813, 27.623116442643077 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 610, "nhouse": 2, "residents": 10, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 56, "repvalue": 224000, "xcoord": 85.303625557701366, "ycoord": 27.618665394567472 }, "geometry": { "type": "Point", "coordinates": [ 85.303625557701366, 27.618665394567472 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 611, "nhouse": 3, "residents": 8, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 84, "repvalue": 336000, "xcoord": 85.306899020401929, "ycoord": 27.622909974322141 }, "geometry": { "type": "Point", "coordinates": [ 85.306899020401929, 27.622909974322141 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 612, "nhouse": 9, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 71, "repvalue": 852000, "xcoord": 85.307326366824512, "ycoord": 27.617582544074722 }, "geometry": { "type": "Point", "coordinates": [ 85.307326366824512, 27.617582544074722 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 613, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 67, "repvalue": 134000, "xcoord": 85.309355771046256, "ycoord": 27.62037616910607 }, "geometry": { "type": "Point", "coordinates": [ 85.309355771046256, 27.62037616910607 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 614, "nhouse": 3, "residents": 17, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 68, "repvalue": 272000, "xcoord": 85.309299059849849, "ycoord": 27.624067311082186 }, "geometry": { "type": "Point", "coordinates": [ 85.309299059849849, 27.624067311082186 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 615, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 58, "repvalue": 348000, "xcoord": 85.308124270584244, "ycoord": 27.625591248035764 }, "geometry": { "type": "Point", "coordinates": [ 85.308124270584244, 27.625591248035764 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 616, "nhouse": 21, "residents": 72, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 63, "repvalue": 1890000, "xcoord": 85.304790660942643, "ycoord": 27.62524288880579 }, "geometry": { "type": "Point", "coordinates": [ 85.304790660942643, 27.62524288880579 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 617, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 66, "repvalue": 264000, "xcoord": 85.304631520356892, "ycoord": 27.620626158820478 }, "geometry": { "type": "Point", "coordinates": [ 85.304631520356892, 27.620626158820478 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 618, "nhouse": 23, "residents": 85, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 82, "repvalue": 2132000, "xcoord": 85.307490354537507, "ycoord": 27.621891682892993 }, "geometry": { "type": "Point", "coordinates": [ 85.307490354537507, 27.621891682892993 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 619, "nhouse": 8, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 61, "repvalue": 732000, "xcoord": 85.306864360884632, "ycoord": 27.617679456603813 }, "geometry": { "type": "Point", "coordinates": [ 85.306864360884632, 27.617679456603813 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 620, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 52, "repvalue": 312000, "xcoord": 85.304100209382398, "ycoord": 27.617748241128002 }, "geometry": { "type": "Point", "coordinates": [ 85.304100209382398, 27.617748241128002 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 621, "nhouse": 28, "residents": 120, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 75, "repvalue": 2550000, "xcoord": 85.307417821708242, "ycoord": 27.619121923788828 }, "geometry": { "type": "Point", "coordinates": [ 85.307417821708242, 27.619121923788828 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 622, "nhouse": 2, "residents": 5, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 58, "repvalue": 232000, "xcoord": 85.306252532282244, "ycoord": 27.620030657523237 }, "geometry": { "type": "Point", "coordinates": [ 85.306252532282244, 27.620030657523237 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 623, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 84, "repvalue": 168000, "xcoord": 85.307919268278098, "ycoord": 27.623947933502041 }, "geometry": { "type": "Point", "coordinates": [ 85.307919268278098, 27.623947933502041 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 624, "nhouse": 2, "residents": 5, "specialfac": 0, "expstr": "BrCfl+MC+2s+Res", "fptarea": 52, "repvalue": 208000, "xcoord": 85.306359752248341, "ycoord": 27.620544721036186 }, "geometry": { "type": "Point", "coordinates": [ 85.306359752248341, 27.620544721036186 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 625, "nhouse": 1, "residents": 2, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 80, "repvalue": 160000, "xcoord": 85.306069656483515, "ycoord": 27.616951898064269 }, "geometry": { "type": "Point", "coordinates": [ 85.306069656483515, 27.616951898064269 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 626, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 54, "repvalue": 324000, "xcoord": 85.30720495169831, "ycoord": 27.617991266133949 }, "geometry": { "type": "Point", "coordinates": [ 85.30720495169831, 27.617991266133949 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 627, "nhouse": 15, "residents": 53, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 51, "repvalue": 1428000, "xcoord": 85.304440575649195, "ycoord": 27.625546261462947 }, "geometry": { "type": "Point", "coordinates": [ 85.304440575649195, 27.625546261462947 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 628, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 81, "repvalue": 324000, "xcoord": 85.304879113271056, "ycoord": 27.619501125884362 }, "geometry": { "type": "Point", "coordinates": [ 85.304879113271056, 27.619501125884362 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 629, "nhouse": 11, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 86, "repvalue": 1032000, "xcoord": 85.310059028393709, "ycoord": 27.619564331271683 }, "geometry": { "type": "Point", "coordinates": [ 85.310059028393709, 27.619564331271683 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 630, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "BrCri+MC+2s+Res", "fptarea": 82, "repvalue": 328000, "xcoord": 85.306225704592848, "ycoord": 27.621773694334067 }, "geometry": { "type": "Point", "coordinates": [ 85.306225704592848, 27.621773694334067 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 631, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 48, "repvalue": 288000, "xcoord": 85.304666269059268, "ycoord": 27.618370465527551 }, "geometry": { "type": "Point", "coordinates": [ 85.304666269059268, 27.618370465527551 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 632, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 84, "repvalue": 336000, "xcoord": 85.306517461541958, "ycoord": 27.617777772875201 }, "geometry": { "type": "Point", "coordinates": [ 85.306517461541958, 27.617777772875201 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 633, "nhouse": 9, "residents": 30, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 82, "repvalue": 820000, "xcoord": 85.306384911138124, "ycoord": 27.626390424831509 }, "geometry": { "type": "Point", "coordinates": [ 85.306384911138124, 27.626390424831509 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 634, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 44, "repvalue": 176000, "xcoord": 85.304852264437415, "ycoord": 27.621244161587075 }, "geometry": { "type": "Point", "coordinates": [ 85.304852264437415, 27.621244161587075 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 635, "nhouse": 4, "residents": 19, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 73, "repvalue": 438000, "xcoord": 85.308756583664618, "ycoord": 27.621907128340808 }, "geometry": { "type": "Point", "coordinates": [ 85.308756583664618, 27.621907128340808 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 636, "nhouse": 25, "residents": 99, "specialfac": 0, "expstr": "RCi+HC+19s+Res", "fptarea": 60, "repvalue": 2280000, "xcoord": 85.308042265202502, "ycoord": 27.623436679693803 }, "geometry": { "type": "Point", "coordinates": [ 85.308042265202502, 27.623436679693803 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 637, "nhouse": 2, "residents": 12, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 65, "repvalue": 260000, "xcoord": 85.308881149590974, "ycoord": 27.621293341658927 }, "geometry": { "type": "Point", "coordinates": [ 85.308881149590974, 27.621293341658927 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 638, "nhouse": 8, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 62, "repvalue": 744000, "xcoord": 85.307037794871235, "ycoord": 27.621373405460393 }, "geometry": { "type": "Point", "coordinates": [ 85.307037794871235, 27.621373405460393 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 639, "nhouse": 7, "residents": 30, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 58, "repvalue": 696000, "xcoord": 85.305823539045235, "ycoord": 27.625460611395592 }, "geometry": { "type": "Point", "coordinates": [ 85.305823539045235, 27.625460611395592 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 640, "nhouse": 3, "residents": 18, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 88, "repvalue": 352000, "xcoord": 85.307220721330879, "ycoord": 27.616965949339718 }, "geometry": { "type": "Point", "coordinates": [ 85.307220721330879, 27.616965949339718 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 641, "nhouse": 23, "residents": 107, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 88, "repvalue": 2112000, "xcoord": 85.306402354212878, "ycoord": 27.61777636755577 }, "geometry": { "type": "Point", "coordinates": [ 85.306402354212878, 27.61777636755577 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 642, "nhouse": 6, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 48, "repvalue": 576000, "xcoord": 85.309149180319906, "ycoord": 27.618835386586419 }, "geometry": { "type": "Point", "coordinates": [ 85.309149180319906, 27.618835386586419 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 643, "nhouse": 6, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 59, "repvalue": 590000, "xcoord": 85.307778913316227, "ycoord": 27.618100820199022 }, "geometry": { "type": "Point", "coordinates": [ 85.307778913316227, 27.618100820199022 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 644, "nhouse": 7, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 69, "repvalue": 690000, "xcoord": 85.306835968112267, "ycoord": 27.619525026187844 }, "geometry": { "type": "Point", "coordinates": [ 85.306835968112267, 27.619525026187844 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 645, "nhouse": 15, "residents": 63, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 57, "repvalue": 1368000, "xcoord": 85.306612060365836, "ycoord": 27.619112089338191 }, "geometry": { "type": "Point", "coordinates": [ 85.306612060365836, 27.619112089338191 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 646, "nhouse": 11, "residents": 52, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 48, "repvalue": 1056000, "xcoord": 85.305139331958927, "ycoord": 27.617555839610986 }, "geometry": { "type": "Point", "coordinates": [ 85.305139331958927, 27.617555839610986 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 647, "nhouse": 8, "residents": 29, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 55, "repvalue": 770000, "xcoord": 85.305605940191725, "ycoord": 27.624637546937567 }, "geometry": { "type": "Point", "coordinates": [ 85.305605940191725, 27.624637546937567 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 648, "nhouse": 31, "residents": 113, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 84, "repvalue": 2856000, "xcoord": 85.310328600578572, "ycoord": 27.617003840120457 }, "geometry": { "type": "Point", "coordinates": [ 85.310328600578572, 27.617003840120457 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 649, "nhouse": 7, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 63, "repvalue": 630000, "xcoord": 85.306468550979048, "ycoord": 27.620956252886977 }, "geometry": { "type": "Point", "coordinates": [ 85.306468550979048, 27.620956252886977 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 650, "nhouse": 13, "residents": 62, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 81, "repvalue": 1296000, "xcoord": 85.307443040784207, "ycoord": 27.624967631041848 }, "geometry": { "type": "Point", "coordinates": [ 85.307443040784207, 27.624967631041848 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 651, "nhouse": 15, "residents": 58, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 88, "repvalue": 1408000, "xcoord": 85.308609951642438, "ycoord": 27.623956358163415 }, "geometry": { "type": "Point", "coordinates": [ 85.308609951642438, 27.623956358163415 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 652, "nhouse": 7, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 51, "repvalue": 714000, "xcoord": 85.308523208023445, "ycoord": 27.622109384300856 }, "geometry": { "type": "Point", "coordinates": [ 85.308523208023445, 27.622109384300856 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 653, "nhouse": 6, "residents": 18, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 50, "repvalue": 600000, "xcoord": 85.30814318987062, "ycoord": 27.624360868625544 }, "geometry": { "type": "Point", "coordinates": [ 85.30814318987062, 27.624360868625544 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 654, "nhouse": 9, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 51, "repvalue": 816000, "xcoord": 85.307212810986471, "ycoord": 27.624964821172355 }, "geometry": { "type": "Point", "coordinates": [ 85.307212810986471, 27.624964821172355 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 655, "nhouse": 10, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 76, "repvalue": 912000, "xcoord": 85.309981706007321, "ycoord": 27.617102165301596 }, "geometry": { "type": "Point", "coordinates": [ 85.309981706007321, 27.617102165301596 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 656, "nhouse": 4, "residents": 15, "specialfac": 0, "expstr": "BrCri+MC+3s+Res", "fptarea": 66, "repvalue": 396000, "xcoord": 85.305992324835415, "ycoord": 27.621975945842031 }, "geometry": { "type": "Point", "coordinates": [ 85.305992324835415, 27.621975945842031 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 657, "nhouse": 18, "residents": 75, "specialfac": 0, "expstr": "RCi+HC+19s+Res", "fptarea": 44, "repvalue": 1672000, "xcoord": 85.30604903394422, "ycoord": 27.62577101810929 }, "geometry": { "type": "Point", "coordinates": [ 85.30604903394422, 27.62577101810929 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 658, "nhouse": 7, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 55, "repvalue": 660000, "xcoord": 85.308904783623902, "ycoord": 27.619755365804984 }, "geometry": { "type": "Point", "coordinates": [ 85.308904783623902, 27.619755365804984 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 659, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 47, "repvalue": 188000, "xcoord": 85.306170463527707, "ycoord": 27.625362298077672 }, "geometry": { "type": "Point", "coordinates": [ 85.306170463527707, 27.625362298077672 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 660, "nhouse": 12, "residents": 53, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 73, "repvalue": 1168000, "xcoord": 85.305845641313823, "ycoord": 27.624025170411681 }, "geometry": { "type": "Point", "coordinates": [ 85.305845641313823, 27.624025170411681 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 661, "nhouse": 4, "residents": 16, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 52, "repvalue": 416000, "xcoord": 85.305946547694901, "ycoord": 27.62494936006523 }, "geometry": { "type": "Point", "coordinates": [ 85.305946547694901, 27.62494936006523 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 662, "nhouse": 5, "residents": 17, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 58, "repvalue": 464000, "xcoord": 85.306723948067187, "ycoord": 27.626804767828407 }, "geometry": { "type": "Point", "coordinates": [ 85.306723948067187, 27.626804767828407 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 663, "nhouse": 6, "residents": 20, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 76, "repvalue": 608000, "xcoord": 85.305896154647087, "ycoord": 27.620744161271467 }, "geometry": { "type": "Point", "coordinates": [ 85.305896154647087, 27.620744161271467 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 664, "nhouse": 8, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 64, "repvalue": 768000, "xcoord": 85.306750773593876, "ycoord": 27.625061731831547 }, "geometry": { "type": "Point", "coordinates": [ 85.306750773593876, 27.625061731831547 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 665, "nhouse": 33, "residents": 146, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 81, "repvalue": 2916000, "xcoord": 85.308157378548373, "ycoord": 27.623438083916763 }, "geometry": { "type": "Point", "coordinates": [ 85.308157378548373, 27.623438083916763 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 666, "nhouse": 30, "residents": 116, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 80, "repvalue": 2720000, "xcoord": 85.30722385303298, "ycoord": 27.624247100151624 }, "geometry": { "type": "Point", "coordinates": [ 85.30722385303298, 27.624247100151624 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 667, "nhouse": 9, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 56, "repvalue": 896000, "xcoord": 85.306388154233218, "ycoord": 27.618699152178756 }, "geometry": { "type": "Point", "coordinates": [ 85.306388154233218, 27.618699152178756 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 668, "nhouse": 4, "residents": 14, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 63, "repvalue": 378000, "xcoord": 85.307679571005778, "ycoord": 27.617074098889088 }, "geometry": { "type": "Point", "coordinates": [ 85.307679571005778, 27.617074098889088 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 669, "nhouse": 25, "residents": 106, "specialfac": 0, "expstr": "RCi+HC+19s+Res", "fptarea": 59, "repvalue": 2242000, "xcoord": 85.309805188657251, "ycoord": 27.62109950287898 }, "geometry": { "type": "Point", "coordinates": [ 85.309805188657251, 27.62109950287898 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 670, "nhouse": 4, "residents": 19, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 52, "repvalue": 416000, "xcoord": 85.30370115626981, "ycoord": 27.621230088664358 }, "geometry": { "type": "Point", "coordinates": [ 85.30370115626981, 27.621230088664358 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 671, "nhouse": 2, "residents": 12, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 46, "repvalue": 184000, "xcoord": 85.307446195267715, "ycoord": 27.624762567876697 }, "geometry": { "type": "Point", "coordinates": [ 85.307446195267715, 27.624762567876697 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 672, "nhouse": 1, "residents": 5, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 67, "repvalue": 134000, "xcoord": 85.304672586571257, "ycoord": 27.617960339391139 }, "geometry": { "type": "Point", "coordinates": [ 85.304672586571257, 27.617960339391139 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 673, "nhouse": 2, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 54, "repvalue": 216000, "xcoord": 85.304295669044834, "ycoord": 27.620006748589681 }, "geometry": { "type": "Point", "coordinates": [ 85.304295669044834, 27.620006748589681 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 674, "nhouse": 7, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 65, "repvalue": 650000, "xcoord": 85.304765583612991, "ycoord": 27.61939718760506 }, "geometry": { "type": "Point", "coordinates": [ 85.304765583612991, 27.61939718760506 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 675, "nhouse": 31, "residents": 113, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 79, "repvalue": 2844000, "xcoord": 85.304978430244304, "ycoord": 27.620527847784231 }, "geometry": { "type": "Point", "coordinates": [ 85.304978430244304, 27.620527847784231 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 676, "nhouse": 5, "residents": 16, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 48, "repvalue": 480000, "xcoord": 85.307572349644587, "ycoord": 27.624046251485041 }, "geometry": { "type": "Point", "coordinates": [ 85.307572349644587, 27.624046251485041 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 677, "nhouse": 16, "residents": 64, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 76, "repvalue": 1520000, "xcoord": 85.304998959770472, "ycoord": 27.619194937945974 }, "geometry": { "type": "Point", "coordinates": [ 85.304998959770472, 27.619194937945974 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 678, "nhouse": 11, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 71, "repvalue": 994000, "xcoord": 85.306200452801846, "ycoord": 27.623414199145643 }, "geometry": { "type": "Point", "coordinates": [ 85.306200452801846, 27.623414199145643 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 679, "nhouse": 7, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 48, "repvalue": 672000, "xcoord": 85.304063869930999, "ycoord": 27.620106465434745 }, "geometry": { "type": "Point", "coordinates": [ 85.304063869930999, 27.620106465434745 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 680, "nhouse": 5, "residents": 22, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 81, "repvalue": 486000, "xcoord": 85.304311467123057, "ycoord": 27.618981433639593 }, "geometry": { "type": "Point", "coordinates": [ 85.304311467123057, 27.618981433639593 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 681, "nhouse": 7, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 48, "repvalue": 672000, "xcoord": 85.303578142432244, "ycoord": 27.621741337983185 }, "geometry": { "type": "Point", "coordinates": [ 85.303578142432244, 27.621741337983185 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 682, "nhouse": 11, "residents": 46, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 52, "repvalue": 1040000, "xcoord": 85.304325684679895, "ycoord": 27.618058650047789 }, "geometry": { "type": "Point", "coordinates": [ 85.304325684679895, 27.618058650047789 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 683, "nhouse": 8, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 72, "repvalue": 720000, "xcoord": 85.307104006319562, "ycoord": 27.624553289830839 }, "geometry": { "type": "Point", "coordinates": [ 85.307104006319562, 27.624553289830839 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 684, "nhouse": 2, "residents": 5, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 47, "repvalue": 188000, "xcoord": 85.309436228065948, "ycoord": 27.622633270350935 }, "geometry": { "type": "Point", "coordinates": [ 85.309436228065948, 27.622633270350935 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 685, "nhouse": 8, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 64, "repvalue": 768000, "xcoord": 85.306561571869878, "ycoord": 27.622393100467523 }, "geometry": { "type": "Point", "coordinates": [ 85.306561571869878, 27.622393100467523 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 686, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 64, "repvalue": 384000, "xcoord": 85.307681155690076, "ycoord": 27.62445778254374 }, "geometry": { "type": "Point", "coordinates": [ 85.307681155690076, 27.62445778254374 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 687, "nhouse": 11, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 48, "repvalue": 1056000, "xcoord": 85.303926636985722, "ycoord": 27.621540498353745 }, "geometry": { "type": "Point", "coordinates": [ 85.303926636985722, 27.621540498353745 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 688, "nhouse": 4, "residents": 22, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 65, "repvalue": 390000, "xcoord": 85.306288735469124, "ycoord": 27.625158640913131 }, "geometry": { "type": "Point", "coordinates": [ 85.306288735469124, 27.625158640913131 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 689, "nhouse": 5, "residents": 17, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 76, "repvalue": 456000, "xcoord": 85.306348706302586, "ycoord": 27.621262442118606 }, "geometry": { "type": "Point", "coordinates": [ 85.306348706302586, 27.621262442118606 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 690, "nhouse": 2, "residents": 10, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 47, "repvalue": 188000, "xcoord": 85.308373418515885, "ycoord": 27.62436367689471 }, "geometry": { "type": "Point", "coordinates": [ 85.308373418515885, 27.62436367689471 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 691, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 66, "repvalue": 264000, "xcoord": 85.303619236099664, "ycoord": 27.619075520439392 }, "geometry": { "type": "Point", "coordinates": [ 85.303619236099664, 27.619075520439392 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 692, "nhouse": 8, "residents": 29, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 67, "repvalue": 804000, "xcoord": 85.307671693575315, "ycoord": 27.625072972121885 }, "geometry": { "type": "Point", "coordinates": [ 85.307671693575315, 27.625072972121885 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 693, "nhouse": 2, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 56, "repvalue": 224000, "xcoord": 85.307260131168121, "ycoord": 27.621888873389011 }, "geometry": { "type": "Point", "coordinates": [ 85.307260131168121, 27.621888873389011 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 694, "nhouse": 2, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 61, "repvalue": 244000, "xcoord": 85.304078090242186, "ycoord": 27.61918368211111 }, "geometry": { "type": "Point", "coordinates": [ 85.304078090242186, 27.61918368211111 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 695, "nhouse": 10, "residents": 47, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 66, "repvalue": 924000, "xcoord": 85.307045681702064, "ycoord": 27.620860747377545 }, "geometry": { "type": "Point", "coordinates": [ 85.307045681702064, 27.620860747377545 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 696, "nhouse": 10, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 67, "repvalue": 938000, "xcoord": 85.305349022399938, "ycoord": 27.618891562638115 }, "geometry": { "type": "Point", "coordinates": [ 85.305349022399938, 27.618891562638115 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 697, "nhouse": 3, "residents": 18, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 79, "repvalue": 316000, "xcoord": 85.307788372032505, "ycoord": 27.617485629968527 }, "geometry": { "type": "Point", "coordinates": [ 85.307788372032505, 27.617485629968527 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 698, "nhouse": 8, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 63, "repvalue": 756000, "xcoord": 85.309187096897148, "ycoord": 27.623860844400603 }, "geometry": { "type": "Point", "coordinates": [ 85.309187096897148, 27.623860844400603 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 699, "nhouse": 7, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 70, "repvalue": 700000, "xcoord": 85.306843855264304, "ycoord": 27.619012368022013 }, "geometry": { "type": "Point", "coordinates": [ 85.306843855264304, 27.619012368022013 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 700, "nhouse": 5, "residents": 16, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 81, "repvalue": 486000, "xcoord": 85.307782077762084, "ycoord": 27.625381971514386 }, "geometry": { "type": "Point", "coordinates": [ 85.307782077762084, 27.625381971514386 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 701, "nhouse": 9, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 72, "repvalue": 864000, "xcoord": 85.308870119734678, "ycoord": 27.622011063600997 }, "geometry": { "type": "Point", "coordinates": [ 85.308870119734678, 27.622011063600997 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 702, "nhouse": 19, "residents": 72, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 67, "repvalue": 1742000, "xcoord": 85.309368372069713, "ycoord": 27.619555915052224 }, "geometry": { "type": "Point", "coordinates": [ 85.309368372069713, 27.619555915052224 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 703, "nhouse": 1, "residents": 1, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 88, "repvalue": 176000, "xcoord": 85.306966804018614, "ycoord": 27.625987326407156 }, "geometry": { "type": "Point", "coordinates": [ 85.306966804018614, 27.625987326407156 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 704, "nhouse": 3, "residents": 17, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 77, "repvalue": 308000, "xcoord": 85.30971370019428, "ycoord": 27.619560123591402 }, "geometry": { "type": "Point", "coordinates": [ 85.30971370019428, 27.619560123591402 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 705, "nhouse": 6, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 46, "repvalue": 552000, "xcoord": 85.307105583853584, "ycoord": 27.624450758260938 }, "geometry": { "type": "Point", "coordinates": [ 85.307105583853584, 27.624450758260938 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 706, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrCri+MC+1s+Res", "fptarea": 55, "repvalue": 110000, "xcoord": 85.308945744844635, "ycoord": 27.617089540139357 }, "geometry": { "type": "Point", "coordinates": [ 85.308945744844635, 27.617089540139357 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 707, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrCfl+MC+1s+Res", "fptarea": 67, "repvalue": 134000, "xcoord": 85.309387272606372, "ycoord": 27.618325533779615 }, "geometry": { "type": "Point", "coordinates": [ 85.309387272606372, 27.618325533779615 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 708, "nhouse": 17, "residents": 65, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 51, "repvalue": 1530000, "xcoord": 85.305848798647318, "ycoord": 27.62382010738839 }, "geometry": { "type": "Point", "coordinates": [ 85.305848798647318, 27.62382010738839 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 709, "nhouse": 29, "residents": 114, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 72, "repvalue": 2592000, "xcoord": 85.309246961837857, "ycoord": 27.619964639030343 }, "geometry": { "type": "Point", "coordinates": [ 85.309246961837857, 27.619964639030343 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 710, "nhouse": 16, "residents": 80, "specialfac": 0, "expstr": "RCi+HC+9s+Res", "fptarea": 81, "repvalue": 1458000, "xcoord": 85.309921874343587, "ycoord": 27.62099837375996 }, "geometry": { "type": "Point", "coordinates": [ 85.309921874343587, 27.62099837375996 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 711, "nhouse": 9, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 68, "repvalue": 816000, "xcoord": 85.307734768675758, "ycoord": 27.620971707180292 }, "geometry": { "type": "Point", "coordinates": [ 85.307734768675758, 27.620971707180292 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 712, "nhouse": 6, "residents": 21, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 45, "repvalue": 630000, "xcoord": 85.307745805448064, "ycoord": 27.620253985552484 }, "geometry": { "type": "Point", "coordinates": [ 85.307745805448064, 27.620253985552484 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 713, "nhouse": 10, "residents": 47, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 79, "repvalue": 948000, "xcoord": 85.308666685679839, "ycoord": 27.620265217444317 }, "geometry": { "type": "Point", "coordinates": [ 85.308666685679839, 27.620265217444317 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 714, "nhouse": 7, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 48, "repvalue": 672000, "xcoord": 85.305434134281171, "ycoord": 27.620841068341399 }, "geometry": { "type": "Point", "coordinates": [ 85.305434134281171, 27.620841068341399 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 715, "nhouse": 5, "residents": 16, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 75, "repvalue": 450000, "xcoord": 85.306984199684848, "ycoord": 27.617373266536138 }, "geometry": { "type": "Point", "coordinates": [ 85.306984199684848, 27.617373266536138 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 716, "nhouse": 20, "residents": 83, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 83, "repvalue": 1826000, "xcoord": 85.308395486500956, "ycoord": 27.622928233787945 }, "geometry": { "type": "Point", "coordinates": [ 85.308395486500956, 27.622928233787945 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 717, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 59, "repvalue": 236000, "xcoord": 85.307695348299902, "ycoord": 27.623534998068596 }, "geometry": { "type": "Point", "coordinates": [ 85.307695348299902, 27.623534998068596 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 718, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 85, "repvalue": 170000, "xcoord": 85.309067256034979, "ycoord": 27.624167036056562 }, "geometry": { "type": "Point", "coordinates": [ 85.309067256034979, 27.624167036056562 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 719, "nhouse": 22, "residents": 78, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 63, "repvalue": 2016000, "xcoord": 85.30579682899004, "ycoord": 27.619717439666942 }, "geometry": { "type": "Point", "coordinates": [ 85.30579682899004, 27.619717439666942 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 720, "nhouse": 21, "residents": 82, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 65, "repvalue": 1950000, "xcoord": 85.30790032648234, "ycoord": 27.617692097553338 }, "geometry": { "type": "Point", "coordinates": [ 85.30790032648234, 27.617692097553338 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 721, "nhouse": 12, "residents": 45, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 78, "repvalue": 1092000, "xcoord": 85.30525286018549, "ycoord": 27.617659777541284 }, "geometry": { "type": "Point", "coordinates": [ 85.30525286018549, 27.617659777541284 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 722, "nhouse": 9, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 70, "repvalue": 840000, "xcoord": 85.304678705586582, "ycoord": 27.625036418842122 }, "geometry": { "type": "Point", "coordinates": [ 85.304678705586582, 27.625036418842122 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 723, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 73, "repvalue": 292000, "xcoord": 85.305022470554078, "ycoord": 27.625143171271965 }, "geometry": { "type": "Point", "coordinates": [ 85.305022470554078, 27.625143171271965 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 724, "nhouse": 12, "residents": 50, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 69, "repvalue": 1104000, "xcoord": 85.309010440425695, "ycoord": 27.620371959561965 }, "geometry": { "type": "Point", "coordinates": [ 85.309010440425695, 27.620371959561965 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 725, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 79, "repvalue": 316000, "xcoord": 85.303989842152703, "ycoord": 27.617439239285808 }, "geometry": { "type": "Point", "coordinates": [ 85.303989842152703, 27.617439239285808 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 726, "nhouse": 6, "residents": 25, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 72, "repvalue": 576000, "xcoord": 85.308570485855327, "ycoord": 27.619033433164752 }, "geometry": { "type": "Point", "coordinates": [ 85.308570485855327, 27.619033433164752 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 727, "nhouse": 8, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 54, "repvalue": 756000, "xcoord": 85.305191280612888, "ycoord": 27.62165850765658 }, "geometry": { "type": "Point", "coordinates": [ 85.305191280612888, 27.62165850765658 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 728, "nhouse": 2, "residents": 10, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 61, "repvalue": 244000, "xcoord": 85.306003373439381, "ycoord": 27.621258224965981 }, "geometry": { "type": "Point", "coordinates": [ 85.306003373439381, 27.621258224965981 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 729, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 52, "repvalue": 312000, "xcoord": 85.305255859052025, "ycoord": 27.62494092186596 }, "geometry": { "type": "Point", "coordinates": [ 85.305255859052025, 27.62494092186596 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 730, "nhouse": 18, "residents": 70, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 62, "repvalue": 1736000, "xcoord": 85.306255688322594, "ycoord": 27.619825594338643 }, "geometry": { "type": "Point", "coordinates": [ 85.306255688322594, 27.619825594338643 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 731, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 64, "repvalue": 128000, "xcoord": 85.306290313803188, "ycoord": 27.625056109395487 }, "geometry": { "type": "Point", "coordinates": [ 85.306290313803188, 27.625056109395487 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 732, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 85, "repvalue": 340000, "xcoord": 85.306851688077415, "ycoord": 27.625985921077387 }, "geometry": { "type": "Point", "coordinates": [ 85.306851688077415, 27.625985921077387 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 733, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 85, "repvalue": 340000, "xcoord": 85.309948642625301, "ycoord": 27.619255333419204 }, "geometry": { "type": "Point", "coordinates": [ 85.309948642625301, 27.619255333419204 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 734, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 51, "repvalue": 204000, "xcoord": 85.307018865627285, "ycoord": 27.62260378469615 }, "geometry": { "type": "Point", "coordinates": [ 85.307018865627285, 27.62260378469615 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 735, "nhouse": 17, "residents": 67, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 51, "repvalue": 1632000, "xcoord": 85.309147605065121, "ycoord": 27.618937918347768 }, "geometry": { "type": "Point", "coordinates": [ 85.309147605065121, 27.618937918347768 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 736, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 53, "repvalue": 318000, "xcoord": 85.309231209071228, "ycoord": 27.620989956456874 }, "geometry": { "type": "Point", "coordinates": [ 85.309231209071228, 27.620989956456874 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 737, "nhouse": 4, "residents": 15, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 66, "repvalue": 396000, "xcoord": 85.306507918490283, "ycoord": 27.625879172998296 }, "geometry": { "type": "Point", "coordinates": [ 85.306507918490283, 27.625879172998296 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 738, "nhouse": 18, "residents": 77, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 86, "repvalue": 1720000, "xcoord": 85.310216642088747, "ycoord": 27.616797374304152 }, "geometry": { "type": "Point", "coordinates": [ 85.310216642088747, 27.616797374304152 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 739, "nhouse": 11, "residents": 45, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 85, "repvalue": 1020000, "xcoord": 85.305230589409959, "ycoord": 27.626581425103801 }, "geometry": { "type": "Point", "coordinates": [ 85.305230589409959, 27.626581425103801 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 740, "nhouse": 6, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 57, "repvalue": 570000, "xcoord": 85.307077186966055, "ycoord": 27.626296326274392 }, "geometry": { "type": "Point", "coordinates": [ 85.307077186966055, 27.626296326274392 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 741, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 83, "repvalue": 332000, "xcoord": 85.304469015844958, "ycoord": 27.623700695772435 }, "geometry": { "type": "Point", "coordinates": [ 85.304469015844958, 27.623700695772435 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 742, "nhouse": 9, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 67, "repvalue": 804000, "xcoord": 85.305904046584075, "ycoord": 27.620231503445392 }, "geometry": { "type": "Point", "coordinates": [ 85.305904046584075, 27.620231503445392 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 743, "nhouse": 11, "residents": 55, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 46, "repvalue": 1012000, "xcoord": 85.305057217906011, "ycoord": 27.62288747899019 }, "geometry": { "type": "Point", "coordinates": [ 85.305057217906011, 27.62288747899019 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 744, "nhouse": 12, "residents": 46, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 76, "repvalue": 1064000, "xcoord": 85.306370797785618, "ycoord": 27.619826999875407 }, "geometry": { "type": "Point", "coordinates": [ 85.306370797785618, 27.619826999875407 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 745, "nhouse": 4, "residents": 14, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 46, "repvalue": 460000, "xcoord": 85.304175819610151, "ycoord": 27.620312935758459 }, "geometry": { "type": "Point", "coordinates": [ 85.304175819610151, 27.620312935758459 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 746, "nhouse": 14, "residents": 60, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 48, "repvalue": 1344000, "xcoord": 85.306671950623354, "ycoord": 27.622702100598058 }, "geometry": { "type": "Point", "coordinates": [ 85.306671950623354, 27.622702100598058 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 747, "nhouse": 7, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 63, "repvalue": 630000, "xcoord": 85.306399198720186, "ycoord": 27.61798143081651 }, "geometry": { "type": "Point", "coordinates": [ 85.306399198720186, 27.61798143081651 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 748, "nhouse": 13, "residents": 48, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 87, "repvalue": 1218000, "xcoord": 85.305481351313972, "ycoord": 27.625251329405742 }, "geometry": { "type": "Point", "coordinates": [ 85.305481351313972, 27.625251329405742 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 749, "nhouse": 4, "residents": 10, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 57, "repvalue": 456000, "xcoord": 85.307731615237287, "ycoord": 27.62117677048813 }, "geometry": { "type": "Point", "coordinates": [ 85.307731615237287, 27.62117677048813 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 750, "nhouse": 4, "residents": 12, "specialfac": 0, "expstr": "BrCri+MC+3s+Res", "fptarea": 69, "repvalue": 414000, "xcoord": 85.305263755377169, "ycoord": 27.624428264520162 }, "geometry": { "type": "Point", "coordinates": [ 85.305263755377169, 27.624428264520162 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 751, "nhouse": 6, "residents": 21, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 50, "repvalue": 600000, "xcoord": 85.307444618030132, "ycoord": 27.624865099460074 }, "geometry": { "type": "Point", "coordinates": [ 85.307444618030132, 27.624865099460074 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 752, "nhouse": 6, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 45, "repvalue": 540000, "xcoord": 85.309451980021493, "ycoord": 27.621607953058515 }, "geometry": { "type": "Point", "coordinates": [ 85.309451980021493, 27.621607953058515 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 753, "nhouse": 11, "residents": 50, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 83, "repvalue": 996000, "xcoord": 85.304801906939375, "ycoord": 27.617038962198755 }, "geometry": { "type": "Point", "coordinates": [ 85.304801906939375, 27.617038962198755 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 754, "nhouse": 8, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 66, "repvalue": 792000, "xcoord": 85.307163946754386, "ycoord": 27.620657089050688 }, "geometry": { "type": "Point", "coordinates": [ 85.307163946754386, 27.620657089050688 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 755, "nhouse": 12, "residents": 43, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 78, "repvalue": 1092000, "xcoord": 85.304338321940676, "ycoord": 27.617238397857449 }, "geometry": { "type": "Point", "coordinates": [ 85.304338321940676, 27.617238397857449 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 756, "nhouse": 16, "residents": 62, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 52, "repvalue": 1456000, "xcoord": 85.306307674927666, "ycoord": 27.6239282625959 }, "geometry": { "type": "Point", "coordinates": [ 85.306307674927666, 27.6239282625959 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 757, "nhouse": 17, "residents": 66, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 67, "repvalue": 1608000, "xcoord": 85.309634810859976, "ycoord": 27.617200489585844 }, "geometry": { "type": "Point", "coordinates": [ 85.309634810859976, 27.617200489585844 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 758, "nhouse": 12, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 49, "repvalue": 1078000, "xcoord": 85.308411248348207, "ycoord": 27.621902917091244 }, "geometry": { "type": "Point", "coordinates": [ 85.308411248348207, 27.621902917091244 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 759, "nhouse": 5, "residents": 15, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 81, "repvalue": 486000, "xcoord": 85.3066151438194, "ycoord": 27.626393236208017 }, "geometry": { "type": "Point", "coordinates": [ 85.3066151438194, 27.626393236208017 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 760, "nhouse": 22, "residents": 96, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 56, "repvalue": 2016000, "xcoord": 85.305452926223481, "ycoord": 27.627096895652738 }, "geometry": { "type": "Point", "coordinates": [ 85.305452926223481, 27.627096895652738 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 761, "nhouse": 9, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 60, "repvalue": 840000, "xcoord": 85.307900346820006, "ycoord": 27.625178312842873 }, "geometry": { "type": "Point", "coordinates": [ 85.307900346820006, 27.625178312842873 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 762, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 70, "repvalue": 280000, "xcoord": 85.308518479828138, "ycoord": 27.62241697933532 }, "geometry": { "type": "Point", "coordinates": [ 85.308518479828138, 27.62241697933532 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 763, "nhouse": 4, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 65, "repvalue": 390000, "xcoord": 85.309814637253282, "ycoord": 27.620484312269326 }, "geometry": { "type": "Point", "coordinates": [ 85.309814637253282, 27.620484312269326 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 764, "nhouse": 21, "residents": 96, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 60, "repvalue": 1920000, "xcoord": 85.305694213294359, "ycoord": 27.626381988410994 }, "geometry": { "type": "Point", "coordinates": [ 85.305694213294359, 27.626381988410994 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 765, "nhouse": 13, "residents": 49, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 87, "repvalue": 1218000, "xcoord": 85.30798863669645, "ycoord": 27.619436540615766 }, "geometry": { "type": "Point", "coordinates": [ 85.30798863669645, 27.619436540615766 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 766, "nhouse": 8, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 76, "repvalue": 760000, "xcoord": 85.307772607338805, "ycoord": 27.618510946987371 }, "geometry": { "type": "Point", "coordinates": [ 85.307772607338805, 27.618510946987371 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 767, "nhouse": 7, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 54, "repvalue": 756000, "xcoord": 85.30639130984261, "ycoord": 27.618494088940391 }, "geometry": { "type": "Point", "coordinates": [ 85.30639130984261, 27.618494088940391 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 768, "nhouse": 23, "residents": 90, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 71, "repvalue": 2130000, "xcoord": 85.306105858233181, "ycoord": 27.622079883251111 }, "geometry": { "type": "Point", "coordinates": [ 85.306105858233181, 27.622079883251111 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 769, "nhouse": 11, "residents": 48, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 57, "repvalue": 1254000, "xcoord": 85.305319023813638, "ycoord": 27.620839661980177 }, "geometry": { "type": "Point", "coordinates": [ 85.305319023813638, 27.620839661980177 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1587, "nhouse": 0, "residents": 0, "specialfac": 1, "expstr": "RCi+HC+9s+Edu", "fptarea": 114, "repvalue": 3078000, "xcoord": 85.305024224944106, "ycoord": 27.617554433158659 }, "geometry": { "type": "Point", "coordinates": [ 85.305024224944106, 27.617554433158659 ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "bldid": 1591, "nhouse": 0, "residents": 0, "specialfac": 2, "expstr": "RCi+HC+7s+Hea", "fptarea": 94, "repvalue": 2632000, "xcoord": 85.304849105592552, "ycoord": 27.621449224580537 }, "geometry": { "type": "Point", "coordinates": [ 85.304849105592552, 27.621449224580537 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 770, "nhouse": 6, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 78, "repvalue": 780000, "xcoord": 85.312991250311043, "ycoord": 27.617595836820918 }, "geometry": { "type": "Point", "coordinates": [ 85.312991250311043, 27.617595836820918 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 771, "nhouse": 13, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 123, "repvalue": 1722000, "xcoord": 85.316991554558243, "ycoord": 27.617199694795691 }, "geometry": { "type": "Point", "coordinates": [ 85.316991554558243, 27.617199694795691 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 772, "nhouse": 8, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 89, "repvalue": 1068000, "xcoord": 85.318839733976361, "ycoord": 27.618778677169566 }, "geometry": { "type": "Point", "coordinates": [ 85.318839733976361, 27.618778677169566 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 773, "nhouse": 10, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 108, "repvalue": 1296000, "xcoord": 85.31684295778777, "ycoord": 27.618754462330308 }, "geometry": { "type": "Point", "coordinates": [ 85.31684295778777, 27.618754462330308 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 774, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 125, "repvalue": 250000, "xcoord": 85.315712967366778, "ycoord": 27.619185480455144 }, "geometry": { "type": "Point", "coordinates": [ 85.315712967366778, 27.619185480455144 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 775, "nhouse": 2, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 73, "repvalue": 292000, "xcoord": 85.311324545044414, "ycoord": 27.620466325645065 }, "geometry": { "type": "Point", "coordinates": [ 85.311324545044414, 27.620466325645065 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 776, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 76, "repvalue": 304000, "xcoord": 85.318227631740825, "ycoord": 27.617992971763179 }, "geometry": { "type": "Point", "coordinates": [ 85.318227631740825, 27.617992971763179 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 777, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 83, "repvalue": 332000, "xcoord": 85.316448156397115, "ycoord": 27.620083874047683 }, "geometry": { "type": "Point", "coordinates": [ 85.316448156397115, 27.620083874047683 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 778, "nhouse": 4, "residents": 15, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 69, "repvalue": 552000, "xcoord": 85.311565617384147, "ycoord": 27.621025177327102 }, "geometry": { "type": "Point", "coordinates": [ 85.311565617384147, 27.621025177327102 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 779, "nhouse": 25, "residents": 93, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 114, "repvalue": 3192000, "xcoord": 85.313449554026064, "ycoord": 27.620269813314504 }, "geometry": { "type": "Point", "coordinates": [ 85.313449554026064, 27.620269813314504 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 780, "nhouse": 5, "residents": 23, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 82, "repvalue": 656000, "xcoord": 85.312064820136243, "ycoord": 27.621031253173776 }, "geometry": { "type": "Point", "coordinates": [ 85.312064820136243, 27.621031253173776 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 781, "nhouse": 15, "residents": 71, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 126, "repvalue": 2016000, "xcoord": 85.311360364083541, "ycoord": 27.618131910172512 }, "geometry": { "type": "Point", "coordinates": [ 85.311360364083541, 27.618131910172512 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 782, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 118, "repvalue": 472000, "xcoord": 85.311078357051599, "ycoord": 27.62024096145252 }, "geometry": { "type": "Point", "coordinates": [ 85.311078357051599, 27.62024096145252 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 783, "nhouse": 14, "residents": 57, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 119, "repvalue": 1904000, "xcoord": 85.312615155473949, "ycoord": 27.617702445864939 }, "geometry": { "type": "Point", "coordinates": [ 85.312615155473949, 27.617702445864939 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 784, "nhouse": 14, "residents": 54, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 115, "repvalue": 1840000, "xcoord": 85.31357265047447, "ycoord": 27.620382493464913 }, "geometry": { "type": "Point", "coordinates": [ 85.31357265047447, 27.620382493464913 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 785, "nhouse": 7, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 118, "repvalue": 944000, "xcoord": 85.313599905142979, "ycoord": 27.618603889189217 }, "geometry": { "type": "Point", "coordinates": [ 85.313599905142979, 27.618603889189217 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 786, "nhouse": 10, "residents": 45, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 79, "repvalue": 1264000, "xcoord": 85.311452756339492, "ycoord": 27.620245519701953 }, "geometry": { "type": "Point", "coordinates": [ 85.311452756339492, 27.620245519701953 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 787, "nhouse": 7, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 84, "repvalue": 1008000, "xcoord": 85.316617164559005, "ycoord": 27.617195151952 }, "geometry": { "type": "Point", "coordinates": [ 85.316617164559005, 27.617195151952 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 788, "nhouse": 2, "residents": 5, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 86, "repvalue": 344000, "xcoord": 85.310303956256377, "ycoord": 27.621899280239631 }, "geometry": { "type": "Point", "coordinates": [ 85.310303956256377, 27.621899280239631 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 789, "nhouse": 10, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 96, "repvalue": 1344000, "xcoord": 85.311704061282555, "ycoord": 27.620137395326076 }, "geometry": { "type": "Point", "coordinates": [ 85.311704061282555, 27.620137395326076 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 790, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 112, "repvalue": 224000, "xcoord": 85.316974555944626, "ycoord": 27.618311324692801 }, "geometry": { "type": "Point", "coordinates": [ 85.316974555944626, 27.618311324692801 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 791, "nhouse": 7, "residents": 28, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 115, "repvalue": 920000, "xcoord": 85.31558476575637, "ycoord": 27.61940629080631 }, "geometry": { "type": "Point", "coordinates": [ 85.31558476575637, 27.61940629080631 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 792, "nhouse": 30, "residents": 131, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 116, "repvalue": 3944000, "xcoord": 85.314487111111148, "ycoord": 27.617725204362607 }, "geometry": { "type": "Point", "coordinates": [ 85.314487111111148, 27.617725204362607 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 793, "nhouse": 2, "residents": 4, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 129, "repvalue": 258000, "xcoord": 85.315844570628116, "ycoord": 27.618742344142134 }, "geometry": { "type": "Point", "coordinates": [ 85.315844570628116, 27.618742344142134 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 794, "nhouse": 7, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 120, "repvalue": 960000, "xcoord": 85.318697953042488, "ycoord": 27.619888795213821 }, "geometry": { "type": "Point", "coordinates": [ 85.318697953042488, 27.619888795213821 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 795, "nhouse": 12, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 112, "repvalue": 1568000, "xcoord": 85.316342063546614, "ycoord": 27.618859567069869 }, "geometry": { "type": "Point", "coordinates": [ 85.316342063546614, 27.618859567069869 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 796, "nhouse": 11, "residents": 46, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 101, "repvalue": 1414000, "xcoord": 85.313611828275057, "ycoord": 27.617825749667375 }, "geometry": { "type": "Point", "coordinates": [ 85.313611828275057, 27.617825749667375 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 797, "nhouse": 12, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 134, "repvalue": 1608000, "xcoord": 85.313859719617582, "ycoord": 27.617939946620236 }, "geometry": { "type": "Point", "coordinates": [ 85.313859719617582, 27.617939946620236 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 798, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 108, "repvalue": 432000, "xcoord": 85.319239593934739, "ycoord": 27.617115767530578 }, "geometry": { "type": "Point", "coordinates": [ 85.319239593934739, 27.617115767530578 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 799, "nhouse": 4, "residents": 14, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 87, "repvalue": 522000, "xcoord": 85.311584378042468, "ycoord": 27.619802388319584 }, "geometry": { "type": "Point", "coordinates": [ 85.311584378042468, 27.619802388319584 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 800, "nhouse": 8, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 79, "repvalue": 1106000, "xcoord": 85.313429109991546, "ycoord": 27.621603766142581 }, "geometry": { "type": "Point", "coordinates": [ 85.313429109991546, 27.621603766142581 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 801, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 95, "repvalue": 380000, "xcoord": 85.317949154183481, "ycoord": 27.619879716914397 }, "geometry": { "type": "Point", "coordinates": [ 85.317949154183481, 27.619879716914397 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 802, "nhouse": 18, "residents": 64, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 103, "repvalue": 2266000, "xcoord": 85.313182915062328, "ycoord": 27.621378405416252 }, "geometry": { "type": "Point", "coordinates": [ 85.313182915062328, 27.621378405416252 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 803, "nhouse": 32, "residents": 138, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 129, "repvalue": 4128000, "xcoord": 85.318730218674162, "ycoord": 27.617776696855458 }, "geometry": { "type": "Point", "coordinates": [ 85.318730218674162, 27.617776696855458 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 804, "nhouse": 4, "residents": 22, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 128, "repvalue": 512000, "xcoord": 85.312743360712545, "ycoord": 27.617481638384845 }, "geometry": { "type": "Point", "coordinates": [ 85.312743360712545, 27.617481638384845 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 805, "nhouse": 4, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 77, "repvalue": 616000, "xcoord": 85.317461851699179, "ycoord": 27.619095521547717 }, "geometry": { "type": "Point", "coordinates": [ 85.317461851699179, 27.619095521547717 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 806, "nhouse": 4, "residents": 16, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 84, "repvalue": 504000, "xcoord": 85.313331568967016, "ycoord": 27.619823644830785 }, "geometry": { "type": "Point", "coordinates": [ 85.313331568967016, 27.619823644830785 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 807, "nhouse": 8, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 78, "repvalue": 1092000, "xcoord": 85.318492512015567, "ycoord": 27.616995529902884 }, "geometry": { "type": "Point", "coordinates": [ 85.318492512015567, 27.616995529902884 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 808, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 97, "repvalue": 388000, "xcoord": 85.313800107648987, "ycoord": 27.621830643742509 }, "geometry": { "type": "Point", "coordinates": [ 85.313800107648987, 27.621830643742509 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 809, "nhouse": 17, "residents": 66, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 102, "repvalue": 2244000, "xcoord": 85.314056523513713, "ycoord": 27.621389026911238 }, "geometry": { "type": "Point", "coordinates": [ 85.314056523513713, 27.621389026911238 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 810, "nhouse": 4, "residents": 18, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 102, "repvalue": 612000, "xcoord": 85.316331859841682, "ycoord": 27.619526544647993 }, "geometry": { "type": "Point", "coordinates": [ 85.316331859841682, 27.619526544647993 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 811, "nhouse": 6, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 70, "repvalue": 840000, "xcoord": 85.313574353964441, "ycoord": 27.620271330711777 }, "geometry": { "type": "Point", "coordinates": [ 85.313574353964441, 27.620271330711777 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 812, "nhouse": 36, "residents": 157, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 133, "repvalue": 4788000, "xcoord": 85.313357123337411, "ycoord": 27.618156203409555 }, "geometry": { "type": "Point", "coordinates": [ 85.313357123337411, 27.618156203409555 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 813, "nhouse": 6, "residents": 21, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 126, "repvalue": 756000, "xcoord": 85.317116351244124, "ycoord": 27.617201208852595 }, "geometry": { "type": "Point", "coordinates": [ 85.317116351244124, 27.617201208852595 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 814, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 80, "repvalue": 480000, "xcoord": 85.315488891073073, "ycoord": 27.617515006096436 }, "geometry": { "type": "Point", "coordinates": [ 85.315488891073073, 27.617515006096436 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 815, "nhouse": 14, "residents": 61, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 131, "repvalue": 1834000, "xcoord": 85.314717981368716, "ycoord": 27.618951028284666 }, "geometry": { "type": "Point", "coordinates": [ 85.314717981368716, 27.618951028284666 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 816, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 88, "repvalue": 352000, "xcoord": 85.318234426150212, "ycoord": 27.61754831951966 }, "geometry": { "type": "Point", "coordinates": [ 85.318234426150212, 27.61754831951966 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 817, "nhouse": 9, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 86, "repvalue": 1204000, "xcoord": 85.318357524849262, "ycoord": 27.617660995547066 }, "geometry": { "type": "Point", "coordinates": [ 85.318357524849262, 27.617660995547066 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 818, "nhouse": 12, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 129, "repvalue": 1548000, "xcoord": 85.314482003929129, "ycoord": 27.61805869289579 }, "geometry": { "type": "Point", "coordinates": [ 85.314482003929129, 27.61805869289579 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 819, "nhouse": 8, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 68, "repvalue": 1088000, "xcoord": 85.312683710447658, "ycoord": 27.621372333522491 }, "geometry": { "type": "Point", "coordinates": [ 85.312683710447658, 27.621372333522491 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 820, "nhouse": 5, "residents": 23, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 86, "repvalue": 688000, "xcoord": 85.311719409163459, "ycoord": 27.619136931409994 }, "geometry": { "type": "Point", "coordinates": [ 85.311719409163459, 27.619136931409994 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 821, "nhouse": 4, "residents": 13, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 131, "repvalue": 524000, "xcoord": 85.315446354210565, "ycoord": 27.620294078209298 }, "geometry": { "type": "Point", "coordinates": [ 85.315446354210565, 27.620294078209298 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 822, "nhouse": 7, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 81, "repvalue": 810000, "xcoord": 85.313304308551878, "ycoord": 27.621602248547507 }, "geometry": { "type": "Point", "coordinates": [ 85.313304308551878, 27.621602248547507 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 823, "nhouse": 11, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 108, "repvalue": 1512000, "xcoord": 85.315824156940664, "ycoord": 27.620076298911385 }, "geometry": { "type": "Point", "coordinates": [ 85.315824156940664, 27.620076298911385 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 824, "nhouse": 5, "residents": 20, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 108, "repvalue": 648000, "xcoord": 85.31396748742857, "ycoord": 27.619053091586558 }, "geometry": { "type": "Point", "coordinates": [ 85.31396748742857, 27.619053091586558 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 825, "nhouse": 29, "residents": 109, "specialfac": 0, "expstr": "RCi+HC+19s+Res", "fptarea": 99, "repvalue": 3762000, "xcoord": 85.314499027527887, "ycoord": 27.616947064386093 }, "geometry": { "type": "Point", "coordinates": [ 85.314499027527887, 27.616947064386093 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 826, "nhouse": 11, "residents": 50, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 117, "repvalue": 1404000, "xcoord": 85.312794876568773, "ycoord": 27.622263153143898 }, "geometry": { "type": "Point", "coordinates": [ 85.312794876568773, 27.622263153143898 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 827, "nhouse": 8, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 131, "repvalue": 1048000, "xcoord": 85.313051297470565, "ycoord": 27.621821538423056 }, "geometry": { "type": "Point", "coordinates": [ 85.313051297470565, 27.621821538423056 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 828, "nhouse": 1, "residents": 7, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 106, "repvalue": 212000, "xcoord": 85.311975826277589, "ycoord": 27.618695318355172 }, "geometry": { "type": "Point", "coordinates": [ 85.311975826277589, 27.618695318355172 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 829, "nhouse": 9, "residents": 48, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 78, "repvalue": 1248000, "xcoord": 85.311709177330755, "ycoord": 27.619803907370962 }, "geometry": { "type": "Point", "coordinates": [ 85.311709177330755, 27.619803907370962 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 830, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 96, "repvalue": 384000, "xcoord": 85.314307828838409, "ycoord": 27.621280897835412 }, "geometry": { "type": "Point", "coordinates": [ 85.314307828838409, 27.621280897835412 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 831, "nhouse": 4, "residents": 17, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 86, "repvalue": 516000, "xcoord": 85.315482085584378, "ycoord": 27.617959657713392 }, "geometry": { "type": "Point", "coordinates": [ 85.315482085584378, 27.617959657713392 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 832, "nhouse": 10, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 100, "repvalue": 1400000, "xcoord": 85.315330062615274, "ycoord": 27.619736748201696 }, "geometry": { "type": "Point", "coordinates": [ 85.315330062615274, 27.619736748201696 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 833, "nhouse": 7, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 127, "repvalue": 1016000, "xcoord": 85.311685301686964, "ycoord": 27.621360184350156 }, "geometry": { "type": "Point", "coordinates": [ 85.311685301686964, 27.621360184350156 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 834, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 113, "repvalue": 452000, "xcoord": 85.313059817975486, "ycoord": 27.621265724903392 }, "geometry": { "type": "Point", "coordinates": [ 85.313059817975486, 27.621265724903392 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 835, "nhouse": 3, "residents": 8, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 103, "repvalue": 412000, "xcoord": 85.31155879503352, "ycoord": 27.62146982781892 }, "geometry": { "type": "Point", "coordinates": [ 85.31155879503352, 27.62146982781892 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 836, "nhouse": 5, "residents": 16, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 68, "repvalue": 680000, "xcoord": 85.318092641424656, "ycoord": 27.618658436932215 }, "geometry": { "type": "Point", "coordinates": [ 85.318092641424656, 27.618658436932215 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 837, "nhouse": 2, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 77, "repvalue": 308000, "xcoord": 85.312052884445919, "ycoord": 27.621809391714692 }, "geometry": { "type": "Point", "coordinates": [ 85.312052884445919, 27.621809391714692 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 838, "nhouse": 8, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 88, "repvalue": 1056000, "xcoord": 85.31323232581083, "ycoord": 27.618154685923503 }, "geometry": { "type": "Point", "coordinates": [ 85.31323232581083, 27.618154685923503 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 839, "nhouse": 8, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 110, "repvalue": 1100000, "xcoord": 85.317817557670026, "ycoord": 27.620322855472246 }, "geometry": { "type": "Point", "coordinates": [ 85.317817557670026, 27.620322855472246 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 840, "nhouse": 8, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 100, "repvalue": 1000000, "xcoord": 85.317196956066283, "ycoord": 27.620092960509343 }, "geometry": { "type": "Point", "coordinates": [ 85.317196956066283, 27.620092960509343 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 841, "nhouse": 3, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 80, "repvalue": 480000, "xcoord": 85.316222367129328, "ycoord": 27.618524563440072 }, "geometry": { "type": "Point", "coordinates": [ 85.316222367129328, 27.618524563440072 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 842, "nhouse": 4, "residents": 14, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 90, "repvalue": 540000, "xcoord": 85.31170235591361, "ycoord": 27.620248557974026 }, "geometry": { "type": "Point", "coordinates": [ 85.31170235591361, 27.620248557974026 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 843, "nhouse": 35, "residents": 135, "specialfac": 0, "expstr": "RCi+HC+19s+Res", "fptarea": 123, "repvalue": 4674000, "xcoord": 85.314839375656348, "ycoord": 27.619174870166709 }, "geometry": { "type": "Point", "coordinates": [ 85.314839375656348, 27.619174870166709 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 844, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 110, "repvalue": 220000, "xcoord": 85.315972770881999, "ycoord": 27.61852153347284 }, "geometry": { "type": "Point", "coordinates": [ 85.315972770881999, 27.61852153347284 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 845, "nhouse": 10, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 95, "repvalue": 1330000, "xcoord": 85.31194684011686, "ycoord": 27.620585083772799 }, "geometry": { "type": "Point", "coordinates": [ 85.31194684011686, 27.620585083772799 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 846, "nhouse": 9, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 83, "repvalue": 1162000, "xcoord": 85.310931376801591, "ycoord": 27.6216845555068 }, "geometry": { "type": "Point", "coordinates": [ 85.310931376801591, 27.6216845555068 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 847, "nhouse": 4, "residents": 17, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 95, "repvalue": 570000, "xcoord": 85.311083475017838, "ycoord": 27.619907473610191 }, "geometry": { "type": "Point", "coordinates": [ 85.311083475017838, 27.619907473610191 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 848, "nhouse": 7, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 95, "repvalue": 950000, "xcoord": 85.315940451324863, "ycoord": 27.620633628605979 }, "geometry": { "type": "Point", "coordinates": [ 85.315940451324863, 27.620633628605979 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 849, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 112, "repvalue": 224000, "xcoord": 85.318478925444708, "ycoord": 27.617884834548825 }, "geometry": { "type": "Point", "coordinates": [ 85.318478925444708, 27.617884834548825 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 850, "nhouse": 34, "residents": 134, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 133, "repvalue": 4256000, "xcoord": 85.31095526343293, "ycoord": 27.6201282792066 }, "geometry": { "type": "Point", "coordinates": [ 85.31095526343293, 27.6201282792066 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 851, "nhouse": 6, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 82, "repvalue": 820000, "xcoord": 85.313852907425996, "ycoord": 27.6183845978364 }, "geometry": { "type": "Point", "coordinates": [ 85.313852907425996, 27.6183845978364 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 852, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 101, "repvalue": 404000, "xcoord": 85.314338477970807, "ycoord": 27.619279967491646 }, "geometry": { "type": "Point", "coordinates": [ 85.314338477970807, 27.619279967491646 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 853, "nhouse": 7, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 69, "repvalue": 966000, "xcoord": 85.316993254366054, "ycoord": 27.617088531795648 }, "geometry": { "type": "Point", "coordinates": [ 85.316993254366054, 27.617088531795648 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 854, "nhouse": 9, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 88, "repvalue": 1232000, "xcoord": 85.31531644891534, "ycoord": 27.620626051047989 }, "geometry": { "type": "Point", "coordinates": [ 85.31531644891534, 27.620626051047989 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 855, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "BrCri+MC+2s+Res", "fptarea": 112, "repvalue": 448000, "xcoord": 85.314186433575259, "ycoord": 27.621057055497602 }, "geometry": { "type": "Point", "coordinates": [ 85.314186433575259, 27.621057055497602 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 856, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 103, "repvalue": 412000, "xcoord": 85.317815858461273, "ycoord": 27.620434018467652 }, "geometry": { "type": "Point", "coordinates": [ 85.317815858461273, 27.620434018467652 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 857, "nhouse": 10, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 129, "repvalue": 1290000, "xcoord": 85.315367497073808, "ycoord": 27.61729116475453 }, "geometry": { "type": "Point", "coordinates": [ 85.315367497073808, 27.61729116475453 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 858, "nhouse": 5, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 75, "repvalue": 750000, "xcoord": 85.317979735309734, "ycoord": 27.617878782412742 }, "geometry": { "type": "Point", "coordinates": [ 85.317979735309734, 27.617878782412742 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 859, "nhouse": 6, "residents": 19, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 130, "repvalue": 780000, "xcoord": 85.314468384348046, "ycoord": 27.618947995568291 }, "geometry": { "type": "Point", "coordinates": [ 85.314468384348046, 27.618947995568291 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 860, "nhouse": 7, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 95, "repvalue": 950000, "xcoord": 85.315706162300643, "ycoord": 27.619630132016397 }, "geometry": { "type": "Point", "coordinates": [ 85.315706162300643, 27.619630132016397 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 861, "nhouse": 5, "residents": 13, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 121, "repvalue": 726000, "xcoord": 85.312351925085025, "ycoord": 27.618588711239028 }, "geometry": { "type": "Point", "coordinates": [ 85.312351925085025, 27.618588711239028 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 862, "nhouse": 8, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 113, "repvalue": 1130000, "xcoord": 85.314554025977543, "ycoord": 27.621506256660304 }, "geometry": { "type": "Point", "coordinates": [ 85.314554025977543, 27.621506256660304 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 863, "nhouse": 3, "residents": 8, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 97, "repvalue": 388000, "xcoord": 85.315822455736722, "ycoord": 27.620187461796615 }, "geometry": { "type": "Point", "coordinates": [ 85.315822455736722, 27.620187461796615 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 864, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 68, "repvalue": 272000, "xcoord": 85.312437517611301, "ycoord": 27.621146971556623 }, "geometry": { "type": "Point", "coordinates": [ 85.312437517611301, 27.621146971556623 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 865, "nhouse": 9, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 114, "repvalue": 1140000, "xcoord": 85.31195707084882, "ycoord": 27.619918107805045 }, "geometry": { "type": "Point", "coordinates": [ 85.31195707084882, 27.619918107805045 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 866, "nhouse": 10, "residents": 48, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 111, "repvalue": 1332000, "xcoord": 85.316996653952458, "ycoord": 27.616866205789936 }, "geometry": { "type": "Point", "coordinates": [ 85.316996653952458, 27.616866205789936 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 867, "nhouse": 5, "residents": 17, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 129, "repvalue": 774000, "xcoord": 85.310912607390364, "ycoord": 27.622907343770024 }, "geometry": { "type": "Point", "coordinates": [ 85.310912607390364, 27.622907343770024 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 868, "nhouse": 8, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 84, "repvalue": 1008000, "xcoord": 85.31883633783616, "ycoord": 27.619001003324897 }, "geometry": { "type": "Point", "coordinates": [ 85.31883633783616, 27.619001003324897 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 869, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 77, "repvalue": 462000, "xcoord": 85.318849922163494, "ycoord": 27.618111698658502 }, "geometry": { "type": "Point", "coordinates": [ 85.318849922163494, 27.618111698658502 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 870, "nhouse": 3, "residents": 8, "specialfac": 0, "expstr": "BrCri+MC+3s+Res", "fptarea": 70, "repvalue": 420000, "xcoord": 85.316488967260057, "ycoord": 27.61741596338392 }, "geometry": { "type": "Point", "coordinates": [ 85.316488967260057, 27.61741596338392 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 871, "nhouse": 9, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 84, "repvalue": 1176000, "xcoord": 85.313965784423658, "ycoord": 27.619164254381754 }, "geometry": { "type": "Point", "coordinates": [ 85.313965784423658, 27.619164254381754 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 872, "nhouse": 5, "residents": 18, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 115, "repvalue": 690000, "xcoord": 85.312849412892035, "ycoord": 27.618705946503656 }, "geometry": { "type": "Point", "coordinates": [ 85.312849412892035, 27.618705946503656 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 873, "nhouse": 8, "residents": 29, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 109, "repvalue": 1090000, "xcoord": 85.317080655674971, "ycoord": 27.619535631569097 }, "geometry": { "type": "Point", "coordinates": [ 85.317080655674971, 27.619535631569097 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 874, "nhouse": 20, "residents": 81, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 85, "repvalue": 2550000, "xcoord": 85.313878452339708, "ycoord": 27.616717155620794 }, "geometry": { "type": "Point", "coordinates": [ 85.313878452339708, 27.616717155620794 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 875, "nhouse": 4, "residents": 15, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 76, "repvalue": 608000, "xcoord": 85.311804986667184, "ycoord": 27.62169519128696 }, "geometry": { "type": "Point", "coordinates": [ 85.311804986667184, 27.62169519128696 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 876, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 108, "repvalue": 432000, "xcoord": 85.311042528825467, "ycoord": 27.6225753758753 }, "geometry": { "type": "Point", "coordinates": [ 85.311042528825467, 27.6225753758753 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 877, "nhouse": 12, "residents": 50, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 113, "repvalue": 1582000, "xcoord": 85.314326559239234, "ycoord": 27.620058107142103 }, "geometry": { "type": "Point", "coordinates": [ 85.314326559239234, 27.620058107142103 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 878, "nhouse": 11, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 104, "repvalue": 1456000, "xcoord": 85.311439111021627, "ycoord": 27.621134820703606 }, "geometry": { "type": "Point", "coordinates": [ 85.311439111021627, 27.621134820703606 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 879, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 113, "repvalue": 452000, "xcoord": 85.311068120855282, "ycoord": 27.620907937086443 }, "geometry": { "type": "Point", "coordinates": [ 85.311068120855282, 27.620907937086443 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 880, "nhouse": 4, "residents": 13, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 101, "repvalue": 606000, "xcoord": 85.312307602242385, "ycoord": 27.621478941087219 }, "geometry": { "type": "Point", "coordinates": [ 85.312307602242385, 27.621478941087219 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 881, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "BrCri+MC+2s+Res", "fptarea": 104, "repvalue": 416000, "xcoord": 85.3159387501981, "ycoord": 27.620744791488942 }, "geometry": { "type": "Point", "coordinates": [ 85.3159387501981, 27.620744791488942 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 882, "nhouse": 10, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 83, "repvalue": 1328000, "xcoord": 85.317829451858771, "ycoord": 27.61954471445187 }, "geometry": { "type": "Point", "coordinates": [ 85.317829451858771, 27.61954471445187 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 883, "nhouse": 15, "residents": 61, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 82, "repvalue": 1968000, "xcoord": 85.310950145030318, "ycoord": 27.62046176701622 }, "geometry": { "type": "Point", "coordinates": [ 85.310950145030318, 27.62046176701622 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 884, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 105, "repvalue": 210000, "xcoord": 85.311180979571475, "ycoord": 27.621687594862063 }, "geometry": { "type": "Point", "coordinates": [ 85.311180979571475, 27.621687594862063 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 885, "nhouse": 7, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 68, "repvalue": 952000, "xcoord": 85.317239448373982, "ycoord": 27.617313885809732 }, "geometry": { "type": "Point", "coordinates": [ 85.317239448373982, 27.617313885809732 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 886, "nhouse": 5, "residents": 14, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 72, "repvalue": 720000, "xcoord": 85.314606801427345, "ycoord": 27.618060209253017 }, "geometry": { "type": "Point", "coordinates": [ 85.314606801427345, 27.618060209253017 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 887, "nhouse": 7, "residents": 28, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 130, "repvalue": 1040000, "xcoord": 85.312687119356369, "ycoord": 27.621150008148053 }, "geometry": { "type": "Point", "coordinates": [ 85.312687119356369, 27.621150008148053 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 888, "nhouse": 7, "residents": 29, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 102, "repvalue": 1020000, "xcoord": 85.312811920243547, "ycoord": 27.621151526275494 }, "geometry": { "type": "Point", "coordinates": [ 85.312811920243547, 27.621151526275494 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 889, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 81, "repvalue": 162000, "xcoord": 85.317995024690546, "ycoord": 27.616878314933722 }, "geometry": { "type": "Point", "coordinates": [ 85.317995024690546, 27.616878314933722 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 890, "nhouse": 4, "residents": 29, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 95, "repvalue": 570000, "xcoord": 85.310546732739283, "ycoord": 27.622346970948378 }, "geometry": { "type": "Point", "coordinates": [ 85.310546732739283, 27.622346970948378 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 891, "nhouse": 11, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 106, "repvalue": 1484000, "xcoord": 85.313962378384588, "ycoord": 27.619386579966534 }, "geometry": { "type": "Point", "coordinates": [ 85.313962378384588, 27.619386579966534 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 892, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 79, "repvalue": 474000, "xcoord": 85.310428757839418, "ycoord": 27.621900800548577 }, "geometry": { "type": "Point", "coordinates": [ 85.310428757839418, 27.621900800548577 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 893, "nhouse": 4, "residents": 17, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 91, "repvalue": 546000, "xcoord": 85.314490515850409, "ycoord": 27.617502878664418 }, "geometry": { "type": "Point", "coordinates": [ 85.314490515850409, 27.617502878664418 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 894, "nhouse": 14, "residents": 71, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 130, "repvalue": 1820000, "xcoord": 85.312316126378605, "ycoord": 27.620923127753517 }, "geometry": { "type": "Point", "coordinates": [ 85.312316126378605, 27.620923127753517 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 895, "nhouse": 6, "residents": 25, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 105, "repvalue": 840000, "xcoord": 85.312447745614165, "ycoord": 27.62047999547389 }, "geometry": { "type": "Point", "coordinates": [ 85.312447745614165, 27.62047999547389 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 896, "nhouse": 2, "residents": 11, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 131, "repvalue": 262000, "xcoord": 85.311174155475271, "ycoord": 27.622132245223057 }, "geometry": { "type": "Point", "coordinates": [ 85.311174155475271, 27.622132245223057 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 897, "nhouse": 3, "residents": 16, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 74, "repvalue": 444000, "xcoord": 85.311618485302219, "ycoord": 27.617579134996188 }, "geometry": { "type": "Point", "coordinates": [ 85.311618485302219, 27.617579134996188 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 898, "nhouse": 13, "residents": 53, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 127, "repvalue": 1778000, "xcoord": 85.313058113894016, "ycoord": 27.621376887611085 }, "geometry": { "type": "Point", "coordinates": [ 85.313058113894016, 27.621376887611085 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 899, "nhouse": 6, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 91, "repvalue": 728000, "xcoord": 85.311579261616515, "ycoord": 27.620135876253276 }, "geometry": { "type": "Point", "coordinates": [ 85.311579261616515, 27.620135876253276 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 900, "nhouse": 5, "residents": 25, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 78, "repvalue": 624000, "xcoord": 85.313812030998747, "ycoord": 27.621052504502167 }, "geometry": { "type": "Point", "coordinates": [ 85.313812030998747, 27.621052504502167 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 901, "nhouse": 8, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 93, "repvalue": 1116000, "xcoord": 85.316249576841756, "ycoord": 27.616745956258288 }, "geometry": { "type": "Point", "coordinates": [ 85.316249576841756, 27.616745956258288 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 902, "nhouse": 11, "residents": 46, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 130, "repvalue": 1560000, "xcoord": 85.312336583309516, "ycoord": 27.619589175560975 }, "geometry": { "type": "Point", "coordinates": [ 85.312336583309516, 27.619589175560975 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 903, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 106, "repvalue": 424000, "xcoord": 85.314500729834137, "ycoord": 27.616835901524791 }, "geometry": { "type": "Point", "coordinates": [ 85.314500729834137, 27.616835901524791 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 904, "nhouse": 4, "residents": 11, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 96, "repvalue": 576000, "xcoord": 85.313126269540078, "ycoord": 27.616930377838045 }, "geometry": { "type": "Point", "coordinates": [ 85.313126269540078, 27.616930377838045 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 905, "nhouse": 15, "residents": 60, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 119, "repvalue": 1904000, "xcoord": 85.31635906894229, "ycoord": 27.617747937622717 }, "geometry": { "type": "Point", "coordinates": [ 85.31635906894229, 27.617747937622717 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 906, "nhouse": 4, "residents": 19, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 100, "repvalue": 600000, "xcoord": 85.314329964639867, "ycoord": 27.619835781537081 }, "geometry": { "type": "Point", "coordinates": [ 85.314329964639867, 27.619835781537081 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 907, "nhouse": 6, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 110, "repvalue": 880000, "xcoord": 85.318967928420321, "ycoord": 27.618557863466485 }, "geometry": { "type": "Point", "coordinates": [ 85.318967928420321, 27.618557863466485 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 908, "nhouse": 3, "residents": 19, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 111, "repvalue": 444000, "xcoord": 85.315605181764056, "ycoord": 27.618072336072821 }, "geometry": { "type": "Point", "coordinates": [ 85.315605181764056, 27.618072336072821 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 909, "nhouse": 15, "residents": 68, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 122, "repvalue": 1952000, "xcoord": 85.317123149913357, "ycoord": 27.616756556812682 }, "geometry": { "type": "Point", "coordinates": [ 85.317123149913357, 27.616756556812682 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 910, "nhouse": 11, "residents": 45, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 101, "repvalue": 1414000, "xcoord": 85.311169037300516, "ycoord": 27.622465732974085 }, "geometry": { "type": "Point", "coordinates": [ 85.311169037300516, 27.622465732974085 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 911, "nhouse": 5, "residents": 17, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 115, "repvalue": 690000, "xcoord": 85.315611986788113, "ycoord": 27.617627684434879 }, "geometry": { "type": "Point", "coordinates": [ 85.315611986788113, 27.617627684434879 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 912, "nhouse": 9, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 92, "repvalue": 1288000, "xcoord": 85.316227469140358, "ycoord": 27.618191074630122 }, "geometry": { "type": "Point", "coordinates": [ 85.316227469140358, 27.618191074630122 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 913, "nhouse": 9, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 81, "repvalue": 1296000, "xcoord": 85.318451750435187, "ycoord": 27.619663443480121 }, "geometry": { "type": "Point", "coordinates": [ 85.318451750435187, 27.619663443480121 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 914, "nhouse": 9, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 75, "repvalue": 1200000, "xcoord": 85.31832525222562, "ycoord": 27.61977309353566 }, "geometry": { "type": "Point", "coordinates": [ 85.31832525222562, 27.61977309353566 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 915, "nhouse": 16, "residents": 81, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 133, "repvalue": 2128000, "xcoord": 85.31217086593422, "ycoord": 27.622255561027931 }, "geometry": { "type": "Point", "coordinates": [ 85.31217086593422, 27.622255561027931 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 916, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 120, "repvalue": 240000, "xcoord": 85.317101053668793, "ycoord": 27.61820167583252 }, "geometry": { "type": "Point", "coordinates": [ 85.317101053668793, 27.61820167583252 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 917, "nhouse": 7, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 79, "repvalue": 948000, "xcoord": 85.317338752439341, "ycoord": 27.618982844716836 }, "geometry": { "type": "Point", "coordinates": [ 85.317338752439341, 27.618982844716836 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 918, "nhouse": 5, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 114, "repvalue": 684000, "xcoord": 85.313110935881127, "ycoord": 27.617930842799058 }, "geometry": { "type": "Point", "coordinates": [ 85.313110935881127, 27.617930842799058 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 919, "nhouse": 1, "residents": 7, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 102, "repvalue": 408000, "xcoord": 85.316485566569085, "ycoord": 27.617638289313888 }, "geometry": { "type": "Point", "coordinates": [ 85.316485566569085, 27.617638289313888 ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "bldid": 1588, "nhouse": 0, "residents": 0, "specialfac": 1, "expstr": "RCi+HC+6s+Edu", "fptarea": 107, "repvalue": 1926000, "xcoord": 85.317713148657162, "ycoord": 27.618987385883194 }, "geometry": { "type": "Point", "coordinates": [ 85.317713148657162, 27.618987385883194 ] } }, +{ "type": "Feature", "properties": { "zoneid": 9, "bldid": 1579, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Com", "fptarea": 106, "repvalue": 1908000, "xcoord": 85.32443357648728, "ycoord": 27.622390608333756 }, "geometry": { "type": "Point", "coordinates": [ 85.32443357648728, 27.622390608333756 ] } }, +{ "type": "Feature", "properties": { "zoneid": 9, "bldid": 1581, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+9s+Com", "fptarea": 134, "repvalue": 2412000, "xcoord": 85.320549392082881, "ycoord": 27.619898137105547 }, "geometry": { "type": "Point", "coordinates": [ 85.320549392082881, 27.619898137105547 ] } }, +{ "type": "Feature", "properties": { "zoneid": 9, "bldid": 1583, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Com", "fptarea": 127, "repvalue": 2540000, "xcoord": 85.323135280077864, "ycoord": 27.62179265736625 }, "geometry": { "type": "Point", "coordinates": [ 85.323135280077864, 27.62179265736625 ] } }, +{ "type": "Feature", "properties": { "zoneid": 9, "bldid": 1585, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Com", "fptarea": 147, "repvalue": 1470000, "xcoord": 85.321852977662431, "ycoord": 27.620146818804162 }, "geometry": { "type": "Point", "coordinates": [ 85.321852977662431, 27.620146818804162 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 1558, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Com", "fptarea": 116, "repvalue": 2088000, "xcoord": 85.321788164609472, "ycoord": 27.621849555776901 }, "geometry": { "type": "Point", "coordinates": [ 85.321788164609472, 27.621849555776901 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 1560, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Com", "fptarea": 100, "repvalue": 1600000, "xcoord": 85.321666794584957, "ycoord": 27.622159762908037 }, "geometry": { "type": "Point", "coordinates": [ 85.321666794584957, 27.622159762908037 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 1565, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 111, "repvalue": 1998000, "xcoord": 85.321431974879218, "ycoord": 27.622260813191616 }, "geometry": { "type": "Point", "coordinates": [ 85.321431974879218, 27.622260813191616 ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "bldid": 1574, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Com", "fptarea": 117, "repvalue": 2106000, "xcoord": 85.32131694175871, "ycoord": 27.622155529120423 }, "geometry": { "type": "Point", "coordinates": [ 85.32131694175871, 27.622155529120423 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1556, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 146, "repvalue": 2044000, "xcoord": 85.321092967102558, "ycoord": 27.623080046299847 }, "geometry": { "type": "Point", "coordinates": [ 85.321092967102558, 27.623080046299847 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1559, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 114, "repvalue": 1596000, "xcoord": 85.32383221709506, "ycoord": 27.622881066424384 }, "geometry": { "type": "Point", "coordinates": [ 85.32383221709506, 27.622881066424384 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1562, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 140, "repvalue": 2520000, "xcoord": 85.323307593134714, "ycoord": 27.623106836160112 }, "geometry": { "type": "Point", "coordinates": [ 85.323307593134714, 27.623106836160112 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1563, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Com", "fptarea": 111, "repvalue": 2220000, "xcoord": 85.324355072043005, "ycoord": 27.622771328686088 }, "geometry": { "type": "Point", "coordinates": [ 85.324355072043005, 27.622771328686088 ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "bldid": 1566, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 98, "repvalue": 1372000, "xcoord": 85.324224800165965, "ycoord": 27.622769754790994 }, "geometry": { "type": "Point", "coordinates": [ 85.324224800165965, 27.622769754790994 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 920, "nhouse": 1, "residents": 2, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 117, "repvalue": 234000, "xcoord": 85.325338931790029, "ycoord": 27.624256352811638 }, "geometry": { "type": "Point", "coordinates": [ 85.325338931790029, 27.624256352811638 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 921, "nhouse": 6, "residents": 18, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 79, "repvalue": 790000, "xcoord": 85.324470097012266, "ycoord": 27.624793417997587 }, "geometry": { "type": "Point", "coordinates": [ 85.324470097012266, 27.624793417997587 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 922, "nhouse": 17, "residents": 70, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 104, "repvalue": 2288000, "xcoord": 85.325416865923373, "ycoord": 27.627214110799677 }, "geometry": { "type": "Point", "coordinates": [ 85.325416865923373, 27.627214110799677 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 923, "nhouse": 7, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 95, "repvalue": 950000, "xcoord": 85.3250830748092, "ycoord": 27.624910333713913 }, "geometry": { "type": "Point", "coordinates": [ 85.3250830748092, 27.624910333713913 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 924, "nhouse": 12, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 116, "repvalue": 1624000, "xcoord": 85.324923472333268, "ycoord": 27.627317664004234 }, "geometry": { "type": "Point", "coordinates": [ 85.324923472333268, 27.627317664004234 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 925, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "BrCri+MC+1s+Res", "fptarea": 128, "repvalue": 256000, "xcoord": 85.325071407340602, "ycoord": 27.625676774962191 }, "geometry": { "type": "Point", "coordinates": [ 85.325071407340602, 27.625676774962191 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 926, "nhouse": 8, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 76, "repvalue": 1064000, "xcoord": 85.326149458401432, "ycoord": 27.627551489980174 }, "geometry": { "type": "Point", "coordinates": [ 85.326149458401432, 27.627551489980174 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 927, "nhouse": 5, "residents": 23, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 107, "repvalue": 642000, "xcoord": 85.325458527464718, "ycoord": 27.624476820339432 }, "geometry": { "type": "Point", "coordinates": [ 85.325458527464718, 27.624476820339432 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 928, "nhouse": 18, "residents": 85, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 92, "repvalue": 2392000, "xcoord": 85.323368742738239, "ycoord": 27.624451573191379 }, "geometry": { "type": "Point", "coordinates": [ 85.323368742738239, 27.624451573191379 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 929, "nhouse": 21, "residents": 84, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 77, "repvalue": 2772000, "xcoord": 85.32408296495089, "ycoord": 27.625993369280771 }, "geometry": { "type": "Point", "coordinates": [ 85.32408296495089, 27.625993369280771 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 930, "nhouse": 7, "residents": 31, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 127, "repvalue": 1016000, "xcoord": 85.3239650385391, "ycoord": 27.625663409123863 }, "geometry": { "type": "Point", "coordinates": [ 85.3239650385391, 27.625663409123863 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 931, "nhouse": 22, "residents": 76, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 92, "repvalue": 2944000, "xcoord": 85.324342165673883, "ycoord": 27.625120407563916 }, "geometry": { "type": "Point", "coordinates": [ 85.324342165673883, 27.625120407563916 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 932, "nhouse": 3, "residents": 15, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 81, "repvalue": 486000, "xcoord": 85.325099741822257, "ycoord": 27.62381541749011 }, "geometry": { "type": "Point", "coordinates": [ 85.325099741822257, 27.62381541749011 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 933, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 122, "repvalue": 488000, "xcoord": 85.324981814282154, "ycoord": 27.623485458067222 }, "geometry": { "type": "Point", "coordinates": [ 85.324981814282154, 27.623485458067222 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 934, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 108, "repvalue": 432000, "xcoord": 85.325054738729094, "ycoord": 27.626771690876325 }, "geometry": { "type": "Point", "coordinates": [ 85.325054738729094, 27.626771690876325 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 935, "nhouse": 11, "residents": 43, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 110, "repvalue": 1540000, "xcoord": 85.325186003677231, "ycoord": 27.626225717525259 }, "geometry": { "type": "Point", "coordinates": [ 85.325186003677231, 27.626225717525259 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 936, "nhouse": 8, "residents": 30, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 105, "repvalue": 1050000, "xcoord": 85.323739196130717, "ycoord": 27.624346539310505 }, "geometry": { "type": "Point", "coordinates": [ 85.323739196130717, 27.624346539310505 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 937, "nhouse": 6, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 70, "repvalue": 840000, "xcoord": 85.324946810495121, "ycoord": 27.625784781897213 }, "geometry": { "type": "Point", "coordinates": [ 85.324946810495121, 27.625784781897213 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 938, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "BrCfl+MC+1s+Res", "fptarea": 110, "repvalue": 220000, "xcoord": 85.325798990309792, "ycoord": 27.626342630440263 }, "geometry": { "type": "Point", "coordinates": [ 85.325798990309792, 27.626342630440263 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 939, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 123, "repvalue": 492000, "xcoord": 85.32360959505057, "ycoord": 27.624783019682759 }, "geometry": { "type": "Point", "coordinates": [ 85.32360959505057, 27.624783019682759 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 940, "nhouse": 12, "residents": 54, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 115, "repvalue": 1610000, "xcoord": 85.325418532497849, "ycoord": 27.627104619203131 }, "geometry": { "type": "Point", "coordinates": [ 85.325418532497849, 27.627104619203131 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 941, "nhouse": 13, "residents": 55, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 79, "repvalue": 1738000, "xcoord": 85.324599694737017, "ycoord": 27.624356936670775 }, "geometry": { "type": "Point", "coordinates": [ 85.324599694737017, 27.624356936670775 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 942, "nhouse": 6, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 85, "repvalue": 850000, "xcoord": 85.324970146813882, "ycoord": 27.624251899433137 }, "geometry": { "type": "Point", "coordinates": [ 85.324970146813882, 27.624251899433137 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 943, "nhouse": 7, "residents": 29, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 70, "repvalue": 980000, "xcoord": 85.324101310400806, "ycoord": 27.624788962230063 }, "geometry": { "type": "Point", "coordinates": [ 85.324101310400806, 27.624788962230063 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 944, "nhouse": 16, "residents": 60, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 130, "repvalue": 2080000, "xcoord": 85.324190885495568, "ycoord": 27.626980278569647 }, "geometry": { "type": "Point", "coordinates": [ 85.324190885495568, 27.626980278569647 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 945, "nhouse": 1, "residents": 1, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 115, "repvalue": 230000, "xcoord": 85.324833882716177, "ycoord": 27.625126347581265 }, "geometry": { "type": "Point", "coordinates": [ 85.324833882716177, 27.625126347581265 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 946, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 110, "repvalue": 440000, "xcoord": 85.326151124270865, "ycoord": 27.627441998347852 }, "geometry": { "type": "Point", "coordinates": [ 85.326151124270865, 27.627441998347852 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 947, "nhouse": 5, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 117, "repvalue": 702000, "xcoord": 85.32383710456871, "ycoord": 27.625990398073487 }, "geometry": { "type": "Point", "coordinates": [ 85.32383710456871, 27.625990398073487 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 948, "nhouse": 3, "residents": 17, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 102, "repvalue": 408000, "xcoord": 85.325574791099655, "ycoord": 27.624916271063764 }, "geometry": { "type": "Point", "coordinates": [ 85.325574791099655, 27.624916271063764 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 949, "nhouse": 9, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 119, "repvalue": 1190000, "xcoord": 85.3262707247207, "ycoord": 27.627662465303462 }, "geometry": { "type": "Point", "coordinates": [ 85.3262707247207, 27.627662465303462 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 950, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 71, "repvalue": 284000, "xcoord": 85.323717510745922, "ycoord": 27.625769929264102 }, "geometry": { "type": "Point", "coordinates": [ 85.323717510745922, 27.625769929264102 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 951, "nhouse": 7, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 72, "repvalue": 1008000, "xcoord": 85.326274056224534, "ycoord": 27.627443482026909 }, "geometry": { "type": "Point", "coordinates": [ 85.326274056224534, 27.627443482026909 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 952, "nhouse": 13, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 123, "repvalue": 1722000, "xcoord": 85.325084741552814, "ycoord": 27.624800842099727 }, "geometry": { "type": "Point", "coordinates": [ 85.325084741552814, 27.624800842099727 ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "bldid": 953, "nhouse": 1, "residents": 1, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 76, "repvalue": 304000, "xcoord": 85.325081408056178, "ycoord": 27.625019825326273 }, "geometry": { "type": "Point", "coordinates": [ 85.325081408056178, 27.625019825326273 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1298, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Com", "fptarea": 127, "repvalue": 2540000, "xcoord": 85.319681532661846, "ycoord": 27.627663576322721 }, "geometry": { "type": "Point", "coordinates": [ 85.319681532661846, 27.627663576322721 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1301, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Com", "fptarea": 116, "repvalue": 1856000, "xcoord": 85.320361533927468, "ycoord": 27.626377836614303 }, "geometry": { "type": "Point", "coordinates": [ 85.320361533927468, 27.626377836614303 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1303, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Com", "fptarea": 101, "repvalue": 1818000, "xcoord": 85.319571039936505, "ycoord": 27.626250626410442 }, "geometry": { "type": "Point", "coordinates": [ 85.319571039936505, 27.626250626410442 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1304, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Com", "fptarea": 97, "repvalue": 1552000, "xcoord": 85.319444381197812, "ycoord": 27.625896188865028 }, "geometry": { "type": "Point", "coordinates": [ 85.319444381197812, 27.625896188865028 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1305, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Com", "fptarea": 129, "repvalue": 1548000, "xcoord": 85.320086662014418, "ycoord": 27.62708031304615 }, "geometry": { "type": "Point", "coordinates": [ 85.320086662014418, 27.62708031304615 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1306, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 143, "repvalue": 2574000, "xcoord": 85.319299756833004, "ycoord": 27.626717876122392 }, "geometry": { "type": "Point", "coordinates": [ 85.319299756833004, 27.626717876122392 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1307, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Com", "fptarea": 103, "repvalue": 1854000, "xcoord": 85.319540500117895, "ycoord": 27.628250038670728 }, "geometry": { "type": "Point", "coordinates": [ 85.319540500117895, 27.628250038670728 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1315, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 127, "repvalue": 2286000, "xcoord": 85.319951020706071, "ycoord": 27.62731393846601 }, "geometry": { "type": "Point", "coordinates": [ 85.319951020706071, 27.62731393846601 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1327, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Com", "fptarea": 150, "repvalue": 1500000, "xcoord": 85.319012297735455, "ycoord": 27.628243637181761 }, "geometry": { "type": "Point", "coordinates": [ 85.319012297735455, 27.628243637181761 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1329, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Com", "fptarea": 132, "repvalue": 2640000, "xcoord": 85.319267414596467, "ycoord": 27.628834900411746 }, "geometry": { "type": "Point", "coordinates": [ 85.319267414596467, 27.628834900411746 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1339, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Com", "fptarea": 150, "repvalue": 2400000, "xcoord": 85.319279992552055, "ycoord": 27.628011613269056 }, "geometry": { "type": "Point", "coordinates": [ 85.319279992552055, 27.628011613269056 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1342, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Com", "fptarea": 100, "repvalue": 1600000, "xcoord": 85.320497173120344, "ycoord": 27.62614421067261 }, "geometry": { "type": "Point", "coordinates": [ 85.320497173120344, 27.62614421067261 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1345, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Com", "fptarea": 138, "repvalue": 1932000, "xcoord": 85.319826155835884, "ycoord": 27.626841888702828 }, "geometry": { "type": "Point", "coordinates": [ 85.319826155835884, 27.626841888702828 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1346, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Com", "fptarea": 141, "repvalue": 2820000, "xcoord": 85.319281789359309, "ycoord": 27.627894000811693 }, "geometry": { "type": "Point", "coordinates": [ 85.319281789359309, 27.627894000811693 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1350, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Com", "fptarea": 103, "repvalue": 1030000, "xcoord": 85.319563854379865, "ycoord": 27.626721076408707 }, "geometry": { "type": "Point", "coordinates": [ 85.319563854379865, 27.626721076408707 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1352, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 100, "repvalue": 1200000, "xcoord": 85.319021283181783, "ycoord": 27.627655574974536 }, "geometry": { "type": "Point", "coordinates": [ 85.319021283181783, 27.627655574974536 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1359, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 140, "repvalue": 2520000, "xcoord": 85.31955127923662, "ycoord": 27.627544363824722 }, "geometry": { "type": "Point", "coordinates": [ 85.31955127923662, 27.627544363824722 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1364, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 102, "repvalue": 1836000, "xcoord": 85.320357942841127, "ycoord": 27.626613061708913 }, "geometry": { "type": "Point", "coordinates": [ 85.320357942841127, 27.626613061708913 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1365, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+10s+Com", "fptarea": 127, "repvalue": 2540000, "xcoord": 85.319412042871093, "ycoord": 27.628013213562575 }, "geometry": { "type": "Point", "coordinates": [ 85.319412042871093, 27.628013213562575 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1389, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Com", "fptarea": 109, "repvalue": 1308000, "xcoord": 85.319303350197089, "ycoord": 27.626482651159304 }, "geometry": { "type": "Point", "coordinates": [ 85.319303350197089, 27.626482651159304 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1393, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Com", "fptarea": 133, "repvalue": 1330000, "xcoord": 85.319133566265862, "ycoord": 27.628950912369472 }, "geometry": { "type": "Point", "coordinates": [ 85.319133566265862, 27.628950912369472 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1402, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Com", "fptarea": 105, "repvalue": 1680000, "xcoord": 85.319024877284093, "ycoord": 27.627420350076925 }, "geometry": { "type": "Point", "coordinates": [ 85.319024877284093, 27.627420350076925 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1407, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 120, "repvalue": 1440000, "xcoord": 85.319278195733929, "ycoord": 27.628129225724322 }, "geometry": { "type": "Point", "coordinates": [ 85.319278195733929, 27.628129225724322 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1408, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 111, "repvalue": 1554000, "xcoord": 85.319404856097265, "ycoord": 27.628483663402847 }, "geometry": { "type": "Point", "coordinates": [ 85.319404856097265, 27.628483663402847 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1410, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Com", "fptarea": 106, "repvalue": 1696000, "xcoord": 85.320083070233494, "ycoord": 27.627315538083707 }, "geometry": { "type": "Point", "coordinates": [ 85.320083070233494, 27.627315538083707 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1415, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Com", "fptarea": 124, "repvalue": 1240000, "xcoord": 85.31929077323224, "ycoord": 27.627305938493329 }, "geometry": { "type": "Point", "coordinates": [ 85.31929077323224, 27.627305938493329 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1426, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Com", "fptarea": 135, "repvalue": 1350000, "xcoord": 85.320366920475379, "ycoord": 27.62602499895662 }, "geometry": { "type": "Point", "coordinates": [ 85.320366920475379, 27.62602499895662 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1428, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 135, "repvalue": 1620000, "xcoord": 85.319961796764261, "ycoord": 27.626608263375843 }, "geometry": { "type": "Point", "coordinates": [ 85.319961796764261, 27.626608263375843 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1434, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Com", "fptarea": 99, "repvalue": 1386000, "xcoord": 85.319010500613516, "ycoord": 27.628361249616901 }, "geometry": { "type": "Point", "coordinates": [ 85.319010500613516, 27.628361249616901 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1441, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Com", "fptarea": 130, "repvalue": 2080000, "xcoord": 85.318885638890549, "ycoord": 27.627889199201331 }, "geometry": { "type": "Point", "coordinates": [ 85.318885638890549, 27.627889199201331 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1443, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Com", "fptarea": 139, "repvalue": 1946000, "xcoord": 85.319137160325695, "ycoord": 27.628715687502204 }, "geometry": { "type": "Point", "coordinates": [ 85.319137160325695, 27.628715687502204 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1445, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Com", "fptarea": 137, "repvalue": 1644000, "xcoord": 85.319553075718318, "ycoord": 27.627426751343034 }, "geometry": { "type": "Point", "coordinates": [ 85.319553075718318, 27.627426751343034 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1447, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Com", "fptarea": 117, "repvalue": 1872000, "xcoord": 85.320231281174145, "ycoord": 27.626258624768955 }, "geometry": { "type": "Point", "coordinates": [ 85.320231281174145, 27.626258624768955 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1450, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 109, "repvalue": 1308000, "xcoord": 85.320104620266108, "ycoord": 27.625904187732218 }, "geometry": { "type": "Point", "coordinates": [ 85.320104620266108, 27.625904187732218 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1451, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Com", "fptarea": 121, "repvalue": 1936000, "xcoord": 85.319422822705235, "ycoord": 27.627307538739089 }, "geometry": { "type": "Point", "coordinates": [ 85.319422822705235, 27.627307538739089 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1454, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 102, "repvalue": 1836000, "xcoord": 85.319560261536211, "ycoord": 27.626956301395232 }, "geometry": { "type": "Point", "coordinates": [ 85.319560261536211, 27.626956301395232 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1457, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Com", "fptarea": 99, "repvalue": 1386000, "xcoord": 85.32036512497028, "ycoord": 27.626142611511288 }, "geometry": { "type": "Point", "coordinates": [ 85.32036512497028, 27.626142611511288 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1466, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 102, "repvalue": 1836000, "xcoord": 85.319963592735874, "ycoord": 27.626490650853459 }, "geometry": { "type": "Point", "coordinates": [ 85.319963592735874, 27.626490650853459 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1469, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Com", "fptarea": 141, "repvalue": 1692000, "xcoord": 85.319285382941146, "ycoord": 27.627658775890655 }, "geometry": { "type": "Point", "coordinates": [ 85.319285382941146, 27.627658775890655 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1472, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Com", "fptarea": 104, "repvalue": 1456000, "xcoord": 85.319178488883523, "ycoord": 27.626010600924065 }, "geometry": { "type": "Point", "coordinates": [ 85.319178488883523, 27.626010600924065 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1483, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Com", "fptarea": 145, "repvalue": 2030000, "xcoord": 85.319167708075909, "ycoord": 27.626716275790816 }, "geometry": { "type": "Point", "coordinates": [ 85.319167708075909, 27.626716275790816 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1488, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 114, "repvalue": 1596000, "xcoord": 85.318883841660281, "ycoord": 27.628006811634819 }, "geometry": { "type": "Point", "coordinates": [ 85.318883841660281, 27.628006811634819 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1489, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Com", "fptarea": 146, "repvalue": 1460000, "xcoord": 85.319972572430672, "ycoord": 27.625902588209986 }, "geometry": { "type": "Point", "coordinates": [ 85.319972572430672, 27.625902588209986 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1490, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 113, "repvalue": 1356000, "xcoord": 85.319271008352501, "ycoord": 27.628599675524345 }, "geometry": { "type": "Point", "coordinates": [ 85.319271008352501, 27.628599675524345 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1492, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Com", "fptarea": 125, "repvalue": 1500000, "xcoord": 85.319960000781776, "ycoord": 27.626725875896124 }, "geometry": { "type": "Point", "coordinates": [ 85.319960000781776, 27.626725875896124 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1497, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Com", "fptarea": 125, "repvalue": 1750000, "xcoord": 85.319956408784137, "ycoord": 27.626961100930384 }, "geometry": { "type": "Point", "coordinates": [ 85.319956408784137, 27.626961100930384 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1508, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Com", "fptarea": 117, "repvalue": 1638000, "xcoord": 85.320218711270712, "ycoord": 27.627081912522328 }, "geometry": { "type": "Point", "coordinates": [ 85.320218711270712, 27.627081912522328 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1510, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+8s+Com", "fptarea": 137, "repvalue": 2192000, "xcoord": 85.319947428599619, "ycoord": 27.627549163479244 }, "geometry": { "type": "Point", "coordinates": [ 85.319947428599619, 27.627549163479244 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1511, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Com", "fptarea": 119, "repvalue": 1666000, "xcoord": 85.319431805600985, "ycoord": 27.626719476328351 }, "geometry": { "type": "Point", "coordinates": [ 85.319431805600985, 27.626719476328351 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1518, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Com", "fptarea": 106, "repvalue": 1908000, "xcoord": 85.319276398904904, "ycoord": 27.628246838177478 }, "geometry": { "type": "Point", "coordinates": [ 85.319276398904904, 27.628246838177478 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1521, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Com", "fptarea": 110, "repvalue": 1980000, "xcoord": 85.319176692109465, "ycoord": 27.626128213407117 }, "geometry": { "type": "Point", "coordinates": [ 85.319176692109465, 27.626128213407117 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1523, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Com", "fptarea": 150, "repvalue": 3000000, "xcoord": 85.318882044419112, "ycoord": 27.628124424066201 }, "geometry": { "type": "Point", "coordinates": [ 85.318882044419112, 27.628124424066201 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1530, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Com", "fptarea": 103, "repvalue": 2060000, "xcoord": 85.320095641276282, "ycoord": 27.626492250415463 }, "geometry": { "type": "Point", "coordinates": [ 85.320095641276282, 27.626492250415463 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1531, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+10s+Com", "fptarea": 97, "repvalue": 1940000, "xcoord": 85.31900510918237, "ycoord": 27.628714086909696 }, "geometry": { "type": "Point", "coordinates": [ 85.31900510918237, 27.628714086909696 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1532, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Com", "fptarea": 129, "repvalue": 1548000, "xcoord": 85.319831544206352, "ycoord": 27.626489051165841 }, "geometry": { "type": "Point", "coordinates": [ 85.319831544206352, 27.626489051165841 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1541, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Com", "fptarea": 123, "repvalue": 1230000, "xcoord": 85.319838728547936, "ycoord": 27.62601860108709 }, "geometry": { "type": "Point", "coordinates": [ 85.319838728547936, 27.62601860108709 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1542, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Com", "fptarea": 108, "repvalue": 1944000, "xcoord": 85.318869463426026, "ycoord": 27.628947711026989 }, "geometry": { "type": "Point", "coordinates": [ 85.318869463426026, 27.628947711026989 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1544, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Com", "fptarea": 145, "repvalue": 1450000, "xcoord": 85.319138957339305, "ycoord": 27.628598075065415 }, "geometry": { "type": "Point", "coordinates": [ 85.319138957339305, 27.628598075065415 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1549, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Com", "fptarea": 112, "repvalue": 1344000, "xcoord": 85.319023080238381, "ycoord": 27.62753796252678 }, "geometry": { "type": "Point", "coordinates": [ 85.319023080238381, 27.62753796252678 ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "bldid": 1555, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+5s+Com", "fptarea": 140, "repvalue": 1400000, "xcoord": 85.31928717971573, "ycoord": 27.627541163426979 }, "geometry": { "type": "Point", "coordinates": [ 85.31928717971573, 27.627541163426979 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1302, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Com", "fptarea": 113, "repvalue": 1582000, "xcoord": 85.318133077685204, "ycoord": 27.624636678452415 }, "geometry": { "type": "Point", "coordinates": [ 85.318133077685204, 27.624636678452415 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1309, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Com", "fptarea": 115, "repvalue": 2070000, "xcoord": 85.317736939175589, "ycoord": 27.624631874081299 }, "geometry": { "type": "Point", "coordinates": [ 85.317736939175589, 27.624631874081299 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1310, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 141, "repvalue": 1974000, "xcoord": 85.318292087251635, "ycoord": 27.622874092640156 }, "geometry": { "type": "Point", "coordinates": [ 85.318292087251635, 27.622874092640156 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1313, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 126, "repvalue": 2268000, "xcoord": 85.317330008806422, "ycoord": 27.625332742920001 }, "geometry": { "type": "Point", "coordinates": [ 85.317330008806422, 27.625332742920001 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1324, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Com", "fptarea": 135, "repvalue": 1350000, "xcoord": 85.318127684293188, "ycoord": 27.624989515775379 }, "geometry": { "type": "Point", "coordinates": [ 85.318127684293188, 27.624989515775379 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1328, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 140, "repvalue": 1960000, "xcoord": 85.3177387373741, "ycoord": 27.624514261660007 }, "geometry": { "type": "Point", "coordinates": [ 85.3177387373741, 27.624514261660007 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1335, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Com", "fptarea": 142, "repvalue": 2840000, "xcoord": 85.317990243776435, "ycoord": 27.625340751700179 }, "geometry": { "type": "Point", "coordinates": [ 85.317990243776435, 27.625340751700179 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1337, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Com", "fptarea": 146, "repvalue": 2336000, "xcoord": 85.319057401255563, "ycoord": 27.624647884255761 }, "geometry": { "type": "Point", "coordinates": [ 85.319057401255563, 27.624647884255761 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1344, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Com", "fptarea": 104, "repvalue": 1872000, "xcoord": 85.318532810987179, "ycoord": 27.624406256752881 }, "geometry": { "type": "Point", "coordinates": [ 85.318532810987179, 27.624406256752881 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1351, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+8s+Com", "fptarea": 133, "repvalue": 2128000, "xcoord": 85.318529216292873, "ycoord": 27.62464148169315 }, "geometry": { "type": "Point", "coordinates": [ 85.318529216292873, 27.62464148169315 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1354, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Com", "fptarea": 150, "repvalue": 2700000, "xcoord": 85.318695407675676, "ycoord": 27.622408445098809 }, "geometry": { "type": "Point", "coordinates": [ 85.318695407675676, 27.622408445098809 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1363, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Com", "fptarea": 98, "repvalue": 980000, "xcoord": 85.318145661885296, "ycoord": 27.623813391291925 }, "geometry": { "type": "Point", "coordinates": [ 85.318145661885296, 27.623813391291925 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1372, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 96, "repvalue": 1152000, "xcoord": 85.318655870817025, "ycoord": 27.624995919940723 }, "geometry": { "type": "Point", "coordinates": [ 85.318655870817025, 27.624995919940723 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1378, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Com", "fptarea": 95, "repvalue": 1330000, "xcoord": 85.318543594808716, "ycoord": 27.623700581881621 }, "geometry": { "type": "Point", "coordinates": [ 85.318543594808716, 27.623700581881621 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1379, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 103, "repvalue": 1442000, "xcoord": 85.31760669136699, "ycoord": 27.624512659959748 }, "geometry": { "type": "Point", "coordinates": [ 85.31760669136699, 27.624512659959748 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1382, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 115, "repvalue": 2070000, "xcoord": 85.317594102761731, "ycoord": 27.625335946808875 }, "geometry": { "type": "Point", "coordinates": [ 85.317594102761731, 27.625335946808875 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1383, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+8s+Com", "fptarea": 106, "repvalue": 1696000, "xcoord": 85.318011818840233, "ycoord": 27.623929402466079 }, "geometry": { "type": "Point", "coordinates": [ 85.318011818840233, 27.623929402466079 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1384, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Com", "fptarea": 129, "repvalue": 1806000, "xcoord": 85.318827451232337, "ycoord": 27.622410045650991 }, "geometry": { "type": "Point", "coordinates": [ 85.318827451232337, 27.622410045650991 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1386, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Com", "fptarea": 132, "repvalue": 2112000, "xcoord": 85.317992041758345, "ycoord": 27.625223139275565 }, "geometry": { "type": "Point", "coordinates": [ 85.317992041758345, 27.625223139275565 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1392, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Com", "fptarea": 142, "repvalue": 1420000, "xcoord": 85.319059198044229, "ycoord": 27.624530271754839 }, "geometry": { "type": "Point", "coordinates": [ 85.319059198044229, 27.624530271754839 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1394, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Com", "fptarea": 97, "repvalue": 1552000, "xcoord": 85.318147459584594, "ycoord": 27.623695778832015 }, "geometry": { "type": "Point", "coordinates": [ 85.318147459584594, 27.623695778832015 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1397, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Com", "fptarea": 121, "repvalue": 1936000, "xcoord": 85.318789714578514, "ycoord": 27.624879908189357 }, "geometry": { "type": "Point", "coordinates": [ 85.318789714578514, 27.624879908189357 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1399, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 132, "repvalue": 2376000, "xcoord": 85.318391777533321, "ycoord": 27.624992718109244 }, "geometry": { "type": "Point", "coordinates": [ 85.318391777533321, 27.624992718109244 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1400, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Com", "fptarea": 150, "repvalue": 1800000, "xcoord": 85.317460257221867, "ycoord": 27.625451957317885 }, "geometry": { "type": "Point", "coordinates": [ 85.317460257221867, 27.625451957317885 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1406, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Com", "fptarea": 106, "repvalue": 1696000, "xcoord": 85.317995637689464, "ycoord": 27.624987914420046 }, "geometry": { "type": "Point", "coordinates": [ 85.317995637689464, 27.624987914420046 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1411, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Com", "fptarea": 138, "repvalue": 1932000, "xcoord": 85.318552581027149, "ycoord": 27.623112519431082 }, "geometry": { "type": "Point", "coordinates": [ 85.318552581027149, 27.623112519431082 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1412, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Com", "fptarea": 113, "repvalue": 1356000, "xcoord": 85.318559769805873, "ycoord": 27.622642069432807 }, "geometry": { "type": "Point", "coordinates": [ 85.318559769805873, 27.622642069432807 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1413, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Com", "fptarea": 100, "repvalue": 1000000, "xcoord": 85.318959494799898, "ycoord": 27.622411646077584 }, "geometry": { "type": "Point", "coordinates": [ 85.318959494799898, 27.622411646077584 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1421, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Com", "fptarea": 124, "repvalue": 1736000, "xcoord": 85.31869720468039, "ycoord": 27.622290832581818 }, "geometry": { "type": "Point", "coordinates": [ 85.31869720468039, 27.622290832581818 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1422, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Com", "fptarea": 101, "repvalue": 1414000, "xcoord": 85.318531013645469, "ycoord": 27.62452386922407 }, "geometry": { "type": "Point", "coordinates": [ 85.318531013645469, 27.62452386922407 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1423, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Com", "fptarea": 112, "repvalue": 1792000, "xcoord": 85.317601296315829, "ycoord": 27.624865497193415 }, "geometry": { "type": "Point", "coordinates": [ 85.317601296315829, 27.624865497193415 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1430, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 110, "repvalue": 1320000, "xcoord": 85.318791511670923, "ycoord": 27.624762295708564 }, "geometry": { "type": "Point", "coordinates": [ 85.318791511670923, 27.624762295708564 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1435, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Com", "fptarea": 130, "repvalue": 1560000, "xcoord": 85.31866305972882, "ycoord": 27.62452547004516 }, "geometry": { "type": "Point", "coordinates": [ 85.31866305972882, 27.62452547004516 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1448, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Com", "fptarea": 109, "repvalue": 1744000, "xcoord": 85.318134875460757, "ycoord": 27.624519066007224 }, "geometry": { "type": "Point", "coordinates": [ 85.318134875460757, 27.624519066007224 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1456, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 113, "repvalue": 2034000, "xcoord": 85.318288492276608, "ycoord": 27.623109317603241 }, "geometry": { "type": "Point", "coordinates": [ 85.318288492276608, 27.623109317603241 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1459, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 105, "repvalue": 1470000, "xcoord": 85.318699001674204, "ycoord": 27.622173220062727 }, "geometry": { "type": "Point", "coordinates": [ 85.318699001674204, 27.622173220062727 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1461, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+9s+Com", "fptarea": 108, "repvalue": 1944000, "xcoord": 85.318125886474064, "ycoord": 27.625107128212157 }, "geometry": { "type": "Point", "coordinates": [ 85.318125886474064, 27.625107128212157 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1463, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 108, "repvalue": 1944000, "xcoord": 85.317881571508394, "ycoord": 27.623810188614961 }, "geometry": { "type": "Point", "coordinates": [ 85.317881571508394, 27.623810188614961 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1465, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 138, "repvalue": 1932000, "xcoord": 85.318673842769812, "ycoord": 27.623819795138736 }, "geometry": { "type": "Point", "coordinates": [ 85.318673842769812, 27.623819795138736 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1470, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Com", "fptarea": 120, "repvalue": 1920000, "xcoord": 85.317876177499272, "ycoord": 27.624163025934283 }, "geometry": { "type": "Point", "coordinates": [ 85.317876177499272, 27.624163025934283 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1471, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Com", "fptarea": 140, "repvalue": 2800000, "xcoord": 85.318416941909774, "ycoord": 27.62334614355056 }, "geometry": { "type": "Point", "coordinates": [ 85.318416941909774, 27.62334614355056 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1473, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 122, "repvalue": 1464000, "xcoord": 85.318684625418769, "ycoord": 27.623114120156618 }, "geometry": { "type": "Point", "coordinates": [ 85.318684625418769, 27.623114120156618 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1481, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Com", "fptarea": 106, "repvalue": 1908000, "xcoord": 85.317467451383507, "ycoord": 27.624981507742699 }, "geometry": { "type": "Point", "coordinates": [ 85.317467451383507, 27.624981507742699 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1482, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 134, "repvalue": 2412000, "xcoord": 85.317603094677125, "ycoord": 27.624747884784298 }, "geometry": { "type": "Point", "coordinates": [ 85.317603094677125, 27.624747884784298 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1493, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Com", "fptarea": 104, "repvalue": 1248000, "xcoord": 85.31865766806132, "ycoord": 27.624878307469981 }, "geometry": { "type": "Point", "coordinates": [ 85.31865766806132, 27.624878307469981 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1495, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Com", "fptarea": 140, "repvalue": 2240000, "xcoord": 85.318556175438289, "ycoord": 27.622877294436147 }, "geometry": { "type": "Point", "coordinates": [ 85.318556175438289, 27.622877294436147 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1496, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Com", "fptarea": 147, "repvalue": 2352000, "xcoord": 85.318017212361056, "ycoord": 27.623576565110248 }, "geometry": { "type": "Point", "coordinates": [ 85.318017212361056, 27.623576565110248 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1499, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+8s+Com", "fptarea": 114, "repvalue": 1824000, "xcoord": 85.318796902882809, "ycoord": 27.624409458253538 }, "geometry": { "type": "Point", "coordinates": [ 85.318796902882809, 27.624409458253538 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1503, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Com", "fptarea": 144, "repvalue": 2592000, "xcoord": 85.317597699560579, "ycoord": 27.625100722005349 }, "geometry": { "type": "Point", "coordinates": [ 85.317597699560579, 27.625100722005349 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1506, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Com", "fptarea": 134, "repvalue": 2412000, "xcoord": 85.31828489725801, "ycoord": 27.623344542557913 }, "geometry": { "type": "Point", "coordinates": [ 85.31828489725801, 27.623344542557913 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1509, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Com", "fptarea": 107, "repvalue": 1712000, "xcoord": 85.31906099482201, "ycoord": 27.624412659251803 }, "geometry": { "type": "Point", "coordinates": [ 85.31906099482201, 27.624412659251803 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1513, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Com", "fptarea": 108, "repvalue": 1728000, "xcoord": 85.318805888018176, "ycoord": 27.62382139578645 }, "geometry": { "type": "Point", "coordinates": [ 85.318805888018176, 27.62382139578645 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1524, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Com", "fptarea": 102, "repvalue": 1020000, "xcoord": 85.318831044948922, "ycoord": 27.622174820598982 }, "geometry": { "type": "Point", "coordinates": [ 85.318831044948922, 27.622174820598982 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1527, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Com", "fptarea": 128, "repvalue": 2560000, "xcoord": 85.318523824169731, "ycoord": 27.624994319087786 }, "geometry": { "type": "Point", "coordinates": [ 85.318523824169731, 27.624994319087786 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1538, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+10s+Com", "fptarea": 101, "repvalue": 2020000, "xcoord": 85.317463854324487, "ycoord": 27.625216732534497 }, "geometry": { "type": "Point", "coordinates": [ 85.317463854324487, 27.625216732534497 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1539, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+10s+Com", "fptarea": 148, "repvalue": 2960000, "xcoord": 85.31746205577862, "ycoord": 27.625334344927236 }, "geometry": { "type": "Point", "coordinates": [ 85.31746205577862, 27.625334344927236 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1543, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Com", "fptarea": 146, "repvalue": 2336000, "xcoord": 85.31839537257494, "ycoord": 27.624757493197524 }, "geometry": { "type": "Point", "coordinates": [ 85.31839537257494, 27.624757493197524 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1547, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Com", "fptarea": 125, "repvalue": 1250000, "xcoord": 85.317861792995544, "ycoord": 27.625103925359955 }, "geometry": { "type": "Point", "coordinates": [ 85.317861792995544, 27.625103925359955 ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "bldid": 1554, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Com", "fptarea": 130, "repvalue": 2340000, "xcoord": 85.31732821010867, "ycoord": 27.625450355302672 }, "geometry": { "type": "Point", "coordinates": [ 85.31732821010867, 27.625450355302672 ] } }, +{ "type": "Feature", "properties": { "zoneid": 20, "bldid": 954, "nhouse": 25, "residents": 81, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 70, "repvalue": 2240000, "xcoord": 85.313835414756099, "ycoord": 27.641536153253575 }, "geometry": { "type": "Point", "coordinates": [ 85.313835414756099, 27.641536153253575 ] } }, +{ "type": "Feature", "properties": { "zoneid": 20, "bldid": 955, "nhouse": 5, "residents": 21, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 84, "repvalue": 504000, "xcoord": 85.313661367487555, "ycoord": 27.639841689051384 }, "geometry": { "type": "Point", "coordinates": [ 85.313661367487555, 27.639841689051384 ] } }, +{ "type": "Feature", "properties": { "zoneid": 20, "bldid": 956, "nhouse": 6, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 58, "repvalue": 580000, "xcoord": 85.313255913780125, "ycoord": 27.640193040421842 }, "geometry": { "type": "Point", "coordinates": [ 85.313255913780125, 27.640193040421842 ] } }, +{ "type": "Feature", "properties": { "zoneid": 20, "bldid": 957, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 68, "repvalue": 272000, "xcoord": 85.313439517307032, "ycoord": 27.641264124891201 }, "geometry": { "type": "Point", "coordinates": [ 85.313439517307032, 27.641264124891201 ] } }, +{ "type": "Feature", "properties": { "zoneid": 20, "bldid": 958, "nhouse": 14, "residents": 51, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 47, "repvalue": 1316000, "xcoord": 85.313344983030944, "ycoord": 27.640906691242762 }, "geometry": { "type": "Point", "coordinates": [ 85.313344983030944, 27.640906691242762 ] } }, +{ "type": "Feature", "properties": { "zoneid": 20, "bldid": 959, "nhouse": 25, "residents": 110, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 66, "repvalue": 2244000, "xcoord": 85.31315181755096, "ycoord": 27.64045898660812 }, "geometry": { "type": "Point", "coordinates": [ 85.31315181755096, 27.64045898660812 ] } }, +{ "type": "Feature", "properties": { "zoneid": 20, "bldid": 960, "nhouse": 29, "residents": 116, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 77, "repvalue": 2618000, "xcoord": 85.313738147440645, "ycoord": 27.641356828401396 }, "geometry": { "type": "Point", "coordinates": [ 85.313738147440645, 27.641356828401396 ] } }, +{ "type": "Feature", "properties": { "zoneid": 20, "bldid": 961, "nhouse": 26, "residents": 110, "specialfac": 0, "expstr": "RCi+HC+19s+Res", "fptarea": 64, "repvalue": 2432000, "xcoord": 85.31346000688545, "ycoord": 27.639928310607431 }, "geometry": { "type": "Point", "coordinates": [ 85.31346000688545, 27.639928310607431 ] } }, +{ "type": "Feature", "properties": { "zoneid": 20, "bldid": 962, "nhouse": 10, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 68, "repvalue": 952000, "xcoord": 85.312957287218509, "ycoord": 27.640100336016626 }, "geometry": { "type": "Point", "coordinates": [ 85.312957287218509, 27.640100336016626 ] } }, +{ "type": "Feature", "properties": { "zoneid": 20, "bldid": 963, "nhouse": 10, "residents": 45, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 64, "repvalue": 896000, "xcoord": 85.313339518681914, "ycoord": 27.641262908340241 }, "geometry": { "type": "Point", "coordinates": [ 85.313339518681914, 27.641262908340241 ] } }, +{ "type": "Feature", "properties": { "zoneid": 20, "bldid": 964, "nhouse": 2, "residents": 9, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 54, "repvalue": 216000, "xcoord": 85.313338152578979, "ycoord": 27.641351962611598 }, "geometry": { "type": "Point", "coordinates": [ 85.313338152578979, 27.641351962611598 ] } }, +{ "type": "Feature", "properties": { "zoneid": 20, "bldid": 965, "nhouse": 7, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 86, "repvalue": 688000, "xcoord": 85.313562735978863, "ycoord": 27.63975141841679 }, "geometry": { "type": "Point", "coordinates": [ 85.313562735978863, 27.63975141841679 ] } }, +{ "type": "Feature", "properties": { "zoneid": 20, "bldid": 966, "nhouse": 17, "residents": 68, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 72, "repvalue": 1584000, "xcoord": 85.314143604187876, "ycoord": 27.641005475799055 }, "geometry": { "type": "Point", "coordinates": [ 85.314143604187876, 27.641005475799055 ] } }, +{ "type": "Feature", "properties": { "zoneid": 20, "bldid": 967, "nhouse": 8, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 68, "repvalue": 816000, "xcoord": 85.313936779285299, "ycoord": 27.641448315161554 }, "geometry": { "type": "Point", "coordinates": [ 85.313936779285299, 27.641448315161554 ] } }, +{ "type": "Feature", "properties": { "zoneid": 20, "bldid": 968, "nhouse": 8, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 68, "repvalue": 816000, "xcoord": 85.313939510526609, "ycoord": 27.6412702065651 }, "geometry": { "type": "Point", "coordinates": [ 85.313939510526609, 27.6412702065651 ] } }, +{ "type": "Feature", "properties": { "zoneid": 20, "bldid": 969, "nhouse": 5, "residents": 19, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 85, "repvalue": 510000, "xcoord": 85.313154549948791, "ycoord": 27.640280878058409 }, "geometry": { "type": "Point", "coordinates": [ 85.313154549948791, 27.640280878058409 ] } }, +{ "type": "Feature", "properties": { "zoneid": 20, "bldid": 970, "nhouse": 4, "residents": 19, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 71, "repvalue": 426000, "xcoord": 85.313242252411911, "ycoord": 27.641083583180055 }, "geometry": { "type": "Point", "coordinates": [ 85.313242252411911, 27.641083583180055 ] } }, +{ "type": "Feature", "properties": { "zoneid": 20, "bldid": 971, "nhouse": 5, "residents": 21, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 64, "repvalue": 512000, "xcoord": 85.313743610520362, "ycoord": 27.641000611235469 }, "geometry": { "type": "Point", "coordinates": [ 85.313743610520362, 27.641000611235469 ] } }, +{ "type": "Feature", "properties": { "zoneid": 20, "bldid": 972, "nhouse": 11, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 70, "repvalue": 2380000, "xcoord": 85.31376136483712, "ycoord": 27.6398429053129 }, "geometry": { "type": "Point", "coordinates": [ 85.31376136483712, 27.6398429053129 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 973, "nhouse": 13, "residents": 55, "specialfac": 0, "expstr": "RCi+HC+9s+Res", "fptarea": 85, "repvalue": 1530000, "xcoord": 85.315361930927779, "ycoord": 27.640637429055957 }, "geometry": { "type": "Point", "coordinates": [ 85.315361930927779, 27.640637429055957 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 974, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 68, "repvalue": 272000, "xcoord": 85.315351227608076, "ycoord": 27.641336008687471 }, "geometry": { "type": "Point", "coordinates": [ 85.315351227608076, 27.641336008687471 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 975, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 56, "repvalue": 112000, "xcoord": 85.315374417647305, "ycoord": 27.639822419392051 }, "geometry": { "type": "Point", "coordinates": [ 85.315374417647305, 27.639822419392051 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 976, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 57, "repvalue": 342000, "xcoord": 85.31459535014362, "ycoord": 27.639463595979048 }, "geometry": { "type": "Point", "coordinates": [ 85.31459535014362, 27.639463595979048 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 977, "nhouse": 4, "residents": 15, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 60, "repvalue": 480000, "xcoord": 85.316835692792552, "ycoord": 27.638326295503994 }, "geometry": { "type": "Point", "coordinates": [ 85.316835692792552, 27.638326295503994 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 978, "nhouse": 25, "residents": 112, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 90, "repvalue": 2700000, "xcoord": 85.316305621170414, "ycoord": 27.63878566619066 }, "geometry": { "type": "Point", "coordinates": [ 85.316305621170414, 27.63878566619066 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 979, "nhouse": 22, "residents": 89, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 79, "repvalue": 2212000, "xcoord": 85.315614488686791, "ycoord": 27.641222755845341 }, "geometry": { "type": "Point", "coordinates": [ 85.315614488686791, 27.641222755845341 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 980, "nhouse": 5, "residents": 16, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 105, "repvalue": 630000, "xcoord": 85.317616541780183, "ycoord": 27.638568676232463 }, "geometry": { "type": "Point", "coordinates": [ 85.317616541780183, 27.638568676232463 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 981, "nhouse": 15, "residents": 55, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 73, "repvalue": 1606000, "xcoord": 85.314443196359562, "ycoord": 27.640859165406173 }, "geometry": { "type": "Point", "coordinates": [ 85.314443196359562, 27.640859165406173 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 982, "nhouse": 3, "residents": 14, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 93, "repvalue": 372000, "xcoord": 85.31735685223731, "ycoord": 27.638449073095416 }, "geometry": { "type": "Point", "coordinates": [ 85.31735685223731, 27.638449073095416 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 983, "nhouse": 4, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 75, "repvalue": 450000, "xcoord": 85.317609416448818, "ycoord": 27.639034396674845 }, "geometry": { "type": "Point", "coordinates": [ 85.317609416448818, 27.639034396674845 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 984, "nhouse": 11, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 107, "repvalue": 1070000, "xcoord": 85.314217420483999, "ycoord": 27.638527388327411 }, "geometry": { "type": "Point", "coordinates": [ 85.314217420483999, 27.638527388327411 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 985, "nhouse": 2, "residents": 13, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 79, "repvalue": 316000, "xcoord": 85.315130783870174, "ycoord": 27.638654942457023 }, "geometry": { "type": "Point", "coordinates": [ 85.315130783870174, 27.638654942457023 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 986, "nhouse": 1, "residents": 8, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 92, "repvalue": 184000, "xcoord": 85.315777328429775, "ycoord": 27.639128604629718 }, "geometry": { "type": "Point", "coordinates": [ 85.315777328429775, 27.639128604629718 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 987, "nhouse": 19, "residents": 71, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 66, "repvalue": 2112000, "xcoord": 85.314466398425409, "ycoord": 27.639345576715296 }, "geometry": { "type": "Point", "coordinates": [ 85.314466398425409, 27.639345576715296 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 988, "nhouse": 29, "residents": 110, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 107, "repvalue": 3210000, "xcoord": 85.317835265033253, "ycoord": 27.641366171311098 }, "geometry": { "type": "Point", "coordinates": [ 85.317835265033253, 27.641366171311098 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 989, "nhouse": 11, "residents": 51, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 89, "repvalue": 1246000, "xcoord": 85.314978638547203, "ycoord": 27.640050512980196 }, "geometry": { "type": "Point", "coordinates": [ 85.314978638547203, 27.640050512980196 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 990, "nhouse": 18, "residents": 64, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 101, "repvalue": 2020000, "xcoord": 85.314982206957495, "ycoord": 27.639817653112846 }, "geometry": { "type": "Point", "coordinates": [ 85.314982206957495, 27.639817653112846 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 991, "nhouse": 17, "residents": 72, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 59, "repvalue": 1770000, "xcoord": 85.314589996363992, "ycoord": 27.639812885725153 }, "geometry": { "type": "Point", "coordinates": [ 85.314589996363992, 27.639812885725153 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 992, "nhouse": 11, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 104, "repvalue": 1248000, "xcoord": 85.316823217692942, "ycoord": 27.639141305957331 }, "geometry": { "type": "Point", "coordinates": [ 85.316823217692942, 27.639141305957331 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 993, "nhouse": 13, "residents": 51, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 61, "repvalue": 1586000, "xcoord": 85.317355070654656, "ycoord": 27.638565503195547 }, "geometry": { "type": "Point", "coordinates": [ 85.317355070654656, 27.638565503195547 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 994, "nhouse": 14, "residents": 67, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 97, "repvalue": 1552000, "xcoord": 85.315739876757874, "ycoord": 27.641573634070706 }, "geometry": { "type": "Point", "coordinates": [ 85.315739876757874, 27.641573634070706 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 995, "nhouse": 10, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 73, "repvalue": 1168000, "xcoord": 85.316663962805023, "ycoord": 27.641002599254318 }, "geometry": { "type": "Point", "coordinates": [ 85.316663962805023, 27.641002599254318 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 996, "nhouse": 3, "residents": 15, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 79, "repvalue": 316000, "xcoord": 85.316925439631135, "ycoord": 27.641005773850935 }, "geometry": { "type": "Point", "coordinates": [ 85.316925439631135, 27.641005773850935 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 997, "nhouse": 10, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 83, "repvalue": 1162000, "xcoord": 85.314742146099135, "ycoord": 27.638417315787919 }, "geometry": { "type": "Point", "coordinates": [ 85.314742146099135, 27.638417315787919 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 998, "nhouse": 5, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 103, "repvalue": 618000, "xcoord": 85.315252600195791, "ycoord": 27.639238680972788 }, "geometry": { "type": "Point", "coordinates": [ 85.315252600195791, 27.639238680972788 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 999, "nhouse": 9, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 59, "repvalue": 944000, "xcoord": 85.317854858591517, "ycoord": 27.640085440296907 }, "geometry": { "type": "Point", "coordinates": [ 85.317854858591517, 27.640085440296907 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1000, "nhouse": 11, "residents": 47, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 89, "repvalue": 1246000, "xcoord": 85.316929004064249, "ycoord": 27.640772913782065 }, "geometry": { "type": "Point", "coordinates": [ 85.316929004064249, 27.640772913782065 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1001, "nhouse": 10, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 94, "repvalue": 1128000, "xcoord": 85.317980252834488, "ycoord": 27.640436316810565 }, "geometry": { "type": "Point", "coordinates": [ 85.317980252834488, 27.640436316810565 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1002, "nhouse": 11, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 97, "repvalue": 1164000, "xcoord": 85.316445269671362, "ycoord": 27.638205103544355 }, "geometry": { "type": "Point", "coordinates": [ 85.316445269671362, 27.638205103544355 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1003, "nhouse": 29, "residents": 117, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 107, "repvalue": 2996000, "xcoord": 85.317627229456718, "ycoord": 27.637870095507044 }, "geometry": { "type": "Point", "coordinates": [ 85.317627229456718, 27.637870095507044 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1004, "nhouse": 2, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 56, "repvalue": 336000, "xcoord": 85.316918310636638, "ycoord": 27.641471493963941 }, "geometry": { "type": "Point", "coordinates": [ 85.316918310636638, 27.641471493963941 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1567, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 147, "repvalue": 2646000, "xcoord": 85.317088253930194, "ycoord": 27.638911619907162 }, "geometry": { "type": "Point", "coordinates": [ 85.317088253930194, 27.638911619907162 ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "bldid": 1570, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 127, "repvalue": 1778000, "xcoord": 85.316559962836621, "ycoord": 27.639254561405284 }, "geometry": { "type": "Point", "coordinates": [ 85.316559962836621, 27.639254561405284 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 1005, "nhouse": 8, "residents": 27, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 64, "repvalue": 896000, "xcoord": 85.322546566516735, "ycoord": 27.636311355089063 }, "geometry": { "type": "Point", "coordinates": [ 85.322546566516735, 27.636311355089063 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 1006, "nhouse": 5, "residents": 22, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 98, "repvalue": 588000, "xcoord": 85.320940250986169, "ycoord": 27.635037062083075 }, "geometry": { "type": "Point", "coordinates": [ 85.320940250986169, 27.635037062083075 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 1007, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 73, "repvalue": 438000, "xcoord": 85.322879019557092, "ycoord": 27.635832741790225 }, "geometry": { "type": "Point", "coordinates": [ 85.322879019557092, 27.635832741790225 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 1008, "nhouse": 11, "residents": 49, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 74, "repvalue": 1184000, "xcoord": 85.320402855679276, "ycoord": 27.634740972712027 }, "geometry": { "type": "Point", "coordinates": [ 85.320402855679276, 27.634740972712027 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 1009, "nhouse": 11, "residents": 47, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 99, "repvalue": 1188000, "xcoord": 85.321139298838645, "ycoord": 27.636197795677937 }, "geometry": { "type": "Point", "coordinates": [ 85.321139298838645, 27.636197795677937 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 1010, "nhouse": 9, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 74, "repvalue": 888000, "xcoord": 85.322988855487409, "ycoord": 27.635737543279014 }, "geometry": { "type": "Point", "coordinates": [ 85.322988855487409, 27.635737543279014 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 1011, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 69, "repvalue": 414000, "xcoord": 85.321572757087324, "ycoord": 27.636203043428331 }, "geometry": { "type": "Point", "coordinates": [ 85.321572757087324, 27.636203043428331 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 1012, "nhouse": 10, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 101, "repvalue": 1010000, "xcoord": 85.323211469630849, "ycoord": 27.635354127534054 }, "geometry": { "type": "Point", "coordinates": [ 85.323211469630849, 27.635354127534054 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 1013, "nhouse": 9, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 80, "repvalue": 960000, "xcoord": 85.322772127107953, "ycoord": 27.635734921826408 }, "geometry": { "type": "Point", "coordinates": [ 85.322772127107953, 27.635734921826408 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 1014, "nhouse": 12, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 96, "repvalue": 1344000, "xcoord": 85.321899323471797, "ycoord": 27.636110469211328 }, "geometry": { "type": "Point", "coordinates": [ 85.321899323471797, 27.636110469211328 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 1015, "nhouse": 10, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 67, "repvalue": 1072000, "xcoord": 85.322221472336594, "ycoord": 27.636307421671628 }, "geometry": { "type": "Point", "coordinates": [ 85.322221472336594, 27.636307421671628 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 1016, "nhouse": 22, "residents": 90, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 77, "repvalue": 2464000, "xcoord": 85.320726471363372, "ycoord": 27.634841419289884 }, "geometry": { "type": "Point", "coordinates": [ 85.320726471363372, 27.634841419289884 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 1017, "nhouse": 11, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 93, "repvalue": 1302000, "xcoord": 85.320839254938647, "ycoord": 27.634553204290583 }, "geometry": { "type": "Point", "coordinates": [ 85.320839254938647, 27.634553204290583 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 1018, "nhouse": 21, "residents": 81, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 89, "repvalue": 2314000, "xcoord": 85.321051560961706, "ycoord": 27.63484535602003 }, "geometry": { "type": "Point", "coordinates": [ 85.321051560961706, 27.63484535602003 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 1019, "nhouse": 1, "residents": 5, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 73, "repvalue": 146000, "xcoord": 85.320817152363574, "ycoord": 27.636000840799589 }, "geometry": { "type": "Point", "coordinates": [ 85.320817152363574, 27.636000840799589 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 1020, "nhouse": 21, "residents": 82, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 72, "repvalue": 2304000, "xcoord": 85.322984440539656, "ycoord": 27.636027070876416 }, "geometry": { "type": "Point", "coordinates": [ 85.322984440539656, 27.636027070876416 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 1021, "nhouse": 12, "residents": 51, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 81, "repvalue": 1296000, "xcoord": 85.322668178665964, "ycoord": 27.635444083411187 }, "geometry": { "type": "Point", "coordinates": [ 85.322668178665964, 27.635444083411187 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 1022, "nhouse": 23, "residents": 97, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 74, "repvalue": 2516000, "xcoord": 85.320937304188107, "ycoord": 27.635230080299241 }, "geometry": { "type": "Point", "coordinates": [ 85.320937304188107, 27.635230080299241 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 1023, "nhouse": 32, "residents": 134, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 100, "repvalue": 3600000, "xcoord": 85.320929937064747, "ycoord": 27.63571262581485 }, "geometry": { "type": "Point", "coordinates": [ 85.320929937064747, 27.63571262581485 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 1024, "nhouse": 6, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 66, "repvalue": 660000, "xcoord": 85.321593377105401, "ycoord": 27.634851915544822 }, "geometry": { "type": "Point", "coordinates": [ 85.321593377105401, 27.634851915544822 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 1025, "nhouse": 9, "residents": 46, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 86, "repvalue": 1032000, "xcoord": 85.32157128417397, "ycoord": 27.636299552552256 }, "geometry": { "type": "Point", "coordinates": [ 85.32157128417397, 27.636299552552256 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 1026, "nhouse": 13, "residents": 60, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 87, "repvalue": 1392000, "xcoord": 85.322123414539732, "ycoord": 27.635630546278797 }, "geometry": { "type": "Point", "coordinates": [ 85.322123414539732, 27.635630546278797 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 1027, "nhouse": 17, "residents": 64, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 57, "repvalue": 1824000, "xcoord": 85.320825993591413, "ycoord": 27.635421786234218 }, "geometry": { "type": "Point", "coordinates": [ 85.320825993591413, 27.635421786234218 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 1028, "nhouse": 5, "residents": 19, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 70, "repvalue": 560000, "xcoord": 85.322338670436864, "ycoord": 27.635729677905886 }, "geometry": { "type": "Point", "coordinates": [ 85.322338670436864, 27.635729677905886 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 1029, "nhouse": 9, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 83, "repvalue": 996000, "xcoord": 85.320391064687755, "ycoord": 27.635513045362448 }, "geometry": { "type": "Point", "coordinates": [ 85.320391064687755, 27.635513045362448 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 1030, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 98, "repvalue": 392000, "xcoord": 85.320374851308642, "ycoord": 27.636574645108801 }, "geometry": { "type": "Point", "coordinates": [ 85.320374851308642, 27.636574645108801 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 1031, "nhouse": 16, "residents": 57, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 70, "repvalue": 1680000, "xcoord": 85.320266486436125, "ycoord": 27.636573332345979 }, "geometry": { "type": "Point", "coordinates": [ 85.320266486436125, 27.636573332345979 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 1032, "nhouse": 22, "residents": 94, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 97, "repvalue": 2328000, "xcoord": 85.322003270379042, "ycoord": 27.636401308114191 }, "geometry": { "type": "Point", "coordinates": [ 85.322003270379042, 27.636401308114191 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 1033, "nhouse": 9, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 89, "repvalue": 1068000, "xcoord": 85.321810103614155, "ycoord": 27.634854538762493 }, "geometry": { "type": "Point", "coordinates": [ 85.321810103614155, 27.634854538762493 ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "bldid": 1034, "nhouse": 16, "residents": 48, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 89, "repvalue": 2848000, "xcoord": 85.320489111685362, "ycoord": 27.636189921514017 }, "geometry": { "type": "Point", "coordinates": [ 85.320489111685362, 27.636189921514017 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1035, "nhouse": 20, "residents": 93, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 89, "repvalue": 2492000, "xcoord": 85.324036248217439, "ycoord": 27.638227085554664 }, "geometry": { "type": "Point", "coordinates": [ 85.324036248217439, 27.638227085554664 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1036, "nhouse": 23, "residents": 103, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 86, "repvalue": 3096000, "xcoord": 85.323630853171949, "ycoord": 27.63926309783292 }, "geometry": { "type": "Point", "coordinates": [ 85.323630853171949, 27.63926309783292 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1037, "nhouse": 8, "residents": 18, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 97, "repvalue": 1164000, "xcoord": 85.322076250250987, "ycoord": 27.639012978191069 }, "geometry": { "type": "Point", "coordinates": [ 85.322076250250987, 27.639012978191069 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1038, "nhouse": 7, "residents": 34, "specialfac": 0, "expstr": "RCi+MC+4s+Res", "fptarea": 111, "repvalue": 888000, "xcoord": 85.32218668564505, "ycoord": 27.640286541307692 }, "geometry": { "type": "Point", "coordinates": [ 85.32218668564505, 27.640286541307692 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1039, "nhouse": 15, "residents": 60, "specialfac": 0, "expstr": "RCi+MC+11s+Res", "fptarea": 91, "repvalue": 2002000, "xcoord": 85.32378890014482, "ycoord": 27.637414496058668 }, "geometry": { "type": "Point", "coordinates": [ 85.32378890014482, 27.637414496058668 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1040, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "RCi+MC+3s+Res", "fptarea": 74, "repvalue": 444000, "xcoord": 85.323795950368989, "ycoord": 27.636951953056027 }, "geometry": { "type": "Point", "coordinates": [ 85.323795950368989, 27.636951953056027 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1041, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 85, "repvalue": 170000, "xcoord": 85.321451741897135, "ycoord": 27.637386221282988 }, "geometry": { "type": "Point", "coordinates": [ 85.321451741897135, 27.637386221282988 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1042, "nhouse": 4, "residents": 17, "specialfac": 0, "expstr": "RCi+MC+3s+Res", "fptarea": 103, "repvalue": 618000, "xcoord": 85.322495770250967, "ycoord": 27.637051885690436 }, "geometry": { "type": "Point", "coordinates": [ 85.322495770250967, 27.637051885690436 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1043, "nhouse": 6, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 109, "repvalue": 872000, "xcoord": 85.321722014343877, "ycoord": 27.636695551089392 }, "geometry": { "type": "Point", "coordinates": [ 85.321722014343877, 27.636695551089392 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1044, "nhouse": 13, "residents": 55, "specialfac": 0, "expstr": "RCi+LC+7s+Res", "fptarea": 122, "repvalue": 1708000, "xcoord": 85.320677987407535, "ycoord": 27.637029880915524 }, "geometry": { "type": "Point", "coordinates": [ 85.320677987407535, 27.637029880915524 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1045, "nhouse": 5, "residents": 18, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 85, "repvalue": 680000, "xcoord": 85.322090365891242, "ycoord": 27.638087893179446 }, "geometry": { "type": "Point", "coordinates": [ 85.322090365891242, 27.638087893179446 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1046, "nhouse": 10, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 116, "repvalue": 1392000, "xcoord": 85.320526953638776, "ycoord": 27.638415934816276 }, "geometry": { "type": "Point", "coordinates": [ 85.320526953638776, 27.638415934816276 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1047, "nhouse": 25, "residents": 114, "specialfac": 0, "expstr": "RCi+MC+14s+Res", "fptarea": 119, "repvalue": 3332000, "xcoord": 85.32390993003493, "ycoord": 27.637994244471447 }, "geometry": { "type": "Point", "coordinates": [ 85.32390993003493, 27.637994244471447 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1048, "nhouse": 9, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 100, "repvalue": 1200000, "xcoord": 85.321448211812495, "ycoord": 27.63761749249565 }, "geometry": { "type": "Point", "coordinates": [ 85.321448211812495, 27.63761749249565 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1049, "nhouse": 4, "residents": 15, "specialfac": 0, "expstr": "RCi+LC+3s+Res", "fptarea": 83, "repvalue": 498000, "xcoord": 85.323376453826242, "ycoord": 27.638913050563954 }, "geometry": { "type": "Point", "coordinates": [ 85.323376453826242, 27.638913050563954 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1050, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 85, "repvalue": 510000, "xcoord": 85.321560404430542, "ycoord": 27.638775420382622 }, "geometry": { "type": "Point", "coordinates": [ 85.321560404430542, 27.638775420382622 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1051, "nhouse": 7, "residents": 21, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 111, "repvalue": 888000, "xcoord": 85.322365928550965, "ycoord": 27.637050314710397 }, "geometry": { "type": "Point", "coordinates": [ 85.322365928550965, 27.637050314710397 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1052, "nhouse": 11, "residents": 36, "specialfac": 0, "expstr": "RCi+MC+6s+Res", "fptarea": 118, "repvalue": 1416000, "xcoord": 85.321716720208613, "ycoord": 27.637042457988034 }, "geometry": { "type": "Point", "coordinates": [ 85.321716720208613, 27.637042457988034 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1053, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "RCi+MC+2s+Res", "fptarea": 114, "repvalue": 456000, "xcoord": 85.325604931572101, "ycoord": 27.63755209619281 }, "geometry": { "type": "Point", "coordinates": [ 85.325604931572101, 27.63755209619281 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1054, "nhouse": 5, "residents": 19, "specialfac": 0, "expstr": "RCi+MC+3s+Res", "fptarea": 123, "repvalue": 738000, "xcoord": 85.322609737579782, "ycoord": 27.638094177619092 }, "geometry": { "type": "Point", "coordinates": [ 85.322609737579782, 27.638094177619092 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1055, "nhouse": 3, "residents": 16, "specialfac": 0, "expstr": "RCi+LC+2s+Res", "fptarea": 110, "repvalue": 440000, "xcoord": 85.321446446754408, "ycoord": 27.637733128098933 }, "geometry": { "type": "Point", "coordinates": [ 85.321446446754408, 27.637733128098933 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1056, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 109, "repvalue": 436000, "xcoord": 85.319995214342285, "ycoord": 27.639219090998235 }, "geometry": { "type": "Point", "coordinates": [ 85.319995214342285, 27.639219090998235 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1057, "nhouse": 4, "residents": 16, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 129, "repvalue": 516000, "xcoord": 85.321821856549874, "ycoord": 27.638662928301422 }, "geometry": { "type": "Point", "coordinates": [ 85.321821856549874, 27.638662928301422 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1058, "nhouse": 6, "residents": 22, "specialfac": 0, "expstr": "RCi+MC+4s+Res", "fptarea": 104, "repvalue": 832000, "xcoord": 85.325459241318171, "ycoord": 27.638591250613718 }, "geometry": { "type": "Point", "coordinates": [ 85.325459241318171, 27.638591250613718 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1059, "nhouse": 22, "residents": 87, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 95, "repvalue": 2850000, "xcoord": 85.32314497890853, "ycoord": 27.637059738768535 }, "geometry": { "type": "Point", "coordinates": [ 85.32314497890853, 27.637059738768535 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1060, "nhouse": 8, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 78, "repvalue": 1092000, "xcoord": 85.321291890493569, "ycoord": 27.639350454225852 }, "geometry": { "type": "Point", "coordinates": [ 85.321291890493569, 27.639350454225852 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1061, "nhouse": 13, "residents": 45, "specialfac": 0, "expstr": "RCi+MC+7s+Res", "fptarea": 120, "repvalue": 1680000, "xcoord": 85.320377681430969, "ycoord": 27.639686352613065 }, "geometry": { "type": "Point", "coordinates": [ 85.320377681430969, 27.639686352613065 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1062, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 123, "repvalue": 246000, "xcoord": 85.324580285704585, "ycoord": 27.636614461639301 }, "geometry": { "type": "Point", "coordinates": [ 85.324580285704585, 27.636614461639301 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1063, "nhouse": 7, "residents": 32, "specialfac": 0, "expstr": "RCi+LC+6s+Res", "fptarea": 77, "repvalue": 924000, "xcoord": 85.32092178020693, "ycoord": 27.638073746083613 }, "geometry": { "type": "Point", "coordinates": [ 85.32092178020693, 27.638073746083613 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1064, "nhouse": 21, "residents": 99, "specialfac": 0, "expstr": "RCi+HC+19s+Res", "fptarea": 72, "repvalue": 2736000, "xcoord": 85.323360585296612, "ycoord": 27.639953771755941 }, "geometry": { "type": "Point", "coordinates": [ 85.323360585296612, 27.639953771755941 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1065, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "RCi+MC+2s+Res", "fptarea": 122, "repvalue": 488000, "xcoord": 85.32271665113629, "ycoord": 27.639599012002353 }, "geometry": { "type": "Point", "coordinates": [ 85.32271665113629, 27.639599012002353 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1066, "nhouse": 4, "residents": 15, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 88, "repvalue": 528000, "xcoord": 85.321183231203349, "ycoord": 27.637961255151247 }, "geometry": { "type": "Point", "coordinates": [ 85.321183231203349, 27.637961255151247 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1067, "nhouse": 10, "residents": 37, "specialfac": 0, "expstr": "RCi+MC+6s+Res", "fptarea": 107, "repvalue": 1284000, "xcoord": 85.320398876672201, "ycoord": 27.63829872639224 }, "geometry": { "type": "Point", "coordinates": [ 85.320398876672201, 27.63829872639224 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1068, "nhouse": 7, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 88, "repvalue": 880000, "xcoord": 85.322444612463329, "ycoord": 27.640405319437381 }, "geometry": { "type": "Point", "coordinates": [ 85.322444612463329, 27.640405319437381 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1069, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "RCi+MC+2s+Res", "fptarea": 97, "repvalue": 388000, "xcoord": 85.323269531351187, "ycoord": 27.637408216176553 }, "geometry": { "type": "Point", "coordinates": [ 85.323269531351187, 27.637408216176553 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1070, "nhouse": 16, "residents": 57, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 107, "repvalue": 2140000, "xcoord": 85.323683734889499, "ycoord": 27.635794025726284 }, "geometry": { "type": "Point", "coordinates": [ 85.323683734889499, 27.635794025726284 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1071, "nhouse": 5, "residents": 18, "specialfac": 0, "expstr": "RCi+MC+5s+Res", "fptarea": 69, "repvalue": 690000, "xcoord": 85.321035733056448, "ycoord": 27.639116038544714 }, "geometry": { "type": "Point", "coordinates": [ 85.321035733056448, 27.639116038544714 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1072, "nhouse": 2, "residents": 5, "specialfac": 0, "expstr": "RCi+MC+1s+Res", "fptarea": 119, "repvalue": 238000, "xcoord": 85.321946406264047, "ycoord": 27.639011406715991 }, "geometry": { "type": "Point", "coordinates": [ 85.321946406264047, 27.639011406715991 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1073, "nhouse": 8, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 130, "repvalue": 1040000, "xcoord": 85.321192057857587, "ycoord": 27.637383077211698 }, "geometry": { "type": "Point", "coordinates": [ 85.321192057857587, 27.637383077211698 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1074, "nhouse": 9, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 105, "repvalue": 1260000, "xcoord": 85.324057395994856, "ycoord": 27.636839456435737 }, "geometry": { "type": "Point", "coordinates": [ 85.324057395994856, 27.636839456435737 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1075, "nhouse": 2, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 84, "repvalue": 336000, "xcoord": 85.319707253253313, "ycoord": 27.641066111362118 }, "geometry": { "type": "Point", "coordinates": [ 85.319707253253313, 27.641066111362118 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1076, "nhouse": 6, "residents": 22, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 102, "repvalue": 816000, "xcoord": 85.320246070287524, "ycoord": 27.63980041501004 }, "geometry": { "type": "Point", "coordinates": [ 85.320246070287524, 27.63980041501004 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1077, "nhouse": 9, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 125, "repvalue": 1250000, "xcoord": 85.324308269106453, "ycoord": 27.637420773997135 }, "geometry": { "type": "Point", "coordinates": [ 85.324308269106453, 27.637420773997135 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1078, "nhouse": 4, "residents": 16, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 130, "repvalue": 520000, "xcoord": 85.323513349653581, "ycoord": 27.638452077859458 }, "geometry": { "type": "Point", "coordinates": [ 85.323513349653581, 27.638452077859458 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1079, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 90, "repvalue": 360000, "xcoord": 85.320400642873921, "ycoord": 27.638183090860629 }, "geometry": { "type": "Point", "coordinates": [ 85.320400642873921, 27.638183090860629 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1080, "nhouse": 8, "residents": 35, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 79, "repvalue": 1106000, "xcoord": 85.320889996975609, "ycoord": 27.640155185931846 }, "geometry": { "type": "Point", "coordinates": [ 85.320889996975609, 27.640155185931846 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1081, "nhouse": 31, "residents": 119, "specialfac": 0, "expstr": "RCi+MC+17s+Res", "fptarea": 120, "repvalue": 4080000, "xcoord": 85.322221973068963, "ycoord": 27.637973828828304 }, "geometry": { "type": "Point", "coordinates": [ 85.322221973068963, 27.637973828828304 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1082, "nhouse": 7, "residents": 36, "specialfac": 0, "expstr": "RCi+MC+7s+Res", "fptarea": 72, "repvalue": 1008000, "xcoord": 85.322218444515755, "ycoord": 27.638205100112835 }, "geometry": { "type": "Point", "coordinates": [ 85.322218444515755, 27.638205100112835 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1083, "nhouse": 8, "residents": 34, "specialfac": 0, "expstr": "RCi+MC+5s+Res", "fptarea": 105, "repvalue": 1050000, "xcoord": 85.322088601472998, "ycoord": 27.638203528813015 }, "geometry": { "type": "Point", "coordinates": [ 85.322088601472998, 27.638203528813015 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1084, "nhouse": 17, "residents": 60, "specialfac": 0, "expstr": "RCi+LC+8s+Res", "fptarea": 133, "repvalue": 2128000, "xcoord": 85.321713190732552, "ycoord": 27.637273729243621 }, "geometry": { "type": "Point", "coordinates": [ 85.321713190732552, 27.637273729243621 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1085, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 78, "repvalue": 312000, "xcoord": 85.323104421899856, "ycoord": 27.63971935966013 }, "geometry": { "type": "Point", "coordinates": [ 85.323104421899856, 27.63971935966013 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1086, "nhouse": 7, "residents": 23, "specialfac": 0, "expstr": "RCi+MC+4s+Res", "fptarea": 111, "repvalue": 888000, "xcoord": 85.319858302819867, "ycoord": 27.639680059482028 }, "geometry": { "type": "Point", "coordinates": [ 85.319858302819867, 27.639680059482028 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1087, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 125, "repvalue": 250000, "xcoord": 85.320932373860103, "ycoord": 27.637379932654504 }, "geometry": { "type": "Point", "coordinates": [ 85.320932373860103, 27.637379932654504 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1088, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 105, "repvalue": 420000, "xcoord": 85.322455197558241, "ycoord": 27.639711505698966 }, "geometry": { "type": "Point", "coordinates": [ 85.322455197558241, 27.639711505698966 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1089, "nhouse": 5, "residents": 22, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 82, "repvalue": 656000, "xcoord": 85.321302482385931, "ycoord": 27.638656640792547 }, "geometry": { "type": "Point", "coordinates": [ 85.321302482385931, 27.638656640792547 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1090, "nhouse": 10, "residents": 43, "specialfac": 0, "expstr": "RCi+LC+7s+Res", "fptarea": 101, "repvalue": 1414000, "xcoord": 85.323415239984044, "ycoord": 27.636369064734858 }, "geometry": { "type": "Point", "coordinates": [ 85.323415239984044, 27.636369064734858 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1091, "nhouse": 9, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 103, "repvalue": 1236000, "xcoord": 85.322334174026835, "ycoord": 27.639131756409423 }, "geometry": { "type": "Point", "coordinates": [ 85.322334174026835, 27.639131756409423 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1092, "nhouse": 13, "residents": 56, "specialfac": 0, "expstr": "RCi+MC+7s+Res", "fptarea": 122, "repvalue": 1708000, "xcoord": 85.320230171540075, "ycoord": 27.640841134396013 }, "geometry": { "type": "Point", "coordinates": [ 85.320230171540075, 27.640841134396013 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1093, "nhouse": 7, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 69, "repvalue": 966000, "xcoord": 85.320923545842078, "ycoord": 27.637958110517186 }, "geometry": { "type": "Point", "coordinates": [ 85.320923545842078, 27.637958110517186 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1094, "nhouse": 1, "residents": 5, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 102, "repvalue": 204000, "xcoord": 85.320633838657713, "ycoord": 27.63992076948875 }, "geometry": { "type": "Point", "coordinates": [ 85.320633838657713, 27.63992076948875 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1095, "nhouse": 8, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 101, "repvalue": 1010000, "xcoord": 85.324811784436804, "ycoord": 27.638467772181382 }, "geometry": { "type": "Point", "coordinates": [ 85.324811784436804, 27.638467772181382 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1096, "nhouse": 6, "residents": 26, "specialfac": 0, "expstr": "RCi+MC+3s+Res", "fptarea": 130, "repvalue": 780000, "xcoord": 85.321586878571679, "ycoord": 27.637040886279131 }, "geometry": { "type": "Point", "coordinates": [ 85.321586878571679, 27.637040886279131 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1097, "nhouse": 9, "residents": 38, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 74, "repvalue": 1184000, "xcoord": 85.322737816791857, "ycoord": 27.638211384097275 }, "geometry": { "type": "Point", "coordinates": [ 85.322737816791857, 27.638211384097275 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1098, "nhouse": 8, "residents": 38, "specialfac": 0, "expstr": "RCi+LC+7s+Res", "fptarea": 81, "repvalue": 1134000, "xcoord": 85.321978167963536, "ycoord": 27.63692996539519 }, "geometry": { "type": "Point", "coordinates": [ 85.321978167963536, 27.63692996539519 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1099, "nhouse": 4, "residents": 19, "specialfac": 0, "expstr": "RCi+LC+2s+Res", "fptarea": 134, "repvalue": 536000, "xcoord": 85.322887058908904, "ycoord": 27.636940962201752 }, "geometry": { "type": "Point", "coordinates": [ 85.322887058908904, 27.636940962201752 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1100, "nhouse": 13, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 109, "repvalue": 1744000, "xcoord": 85.320133891132301, "ycoord": 27.638642486790786 }, "geometry": { "type": "Point", "coordinates": [ 85.320133891132301, 27.638642486790786 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1101, "nhouse": 2, "residents": 5, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 73, "repvalue": 292000, "xcoord": 85.325475089074658, "ycoord": 27.637550528097531 }, "geometry": { "type": "Point", "coordinates": [ 85.325475089074658, 27.637550528097531 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1102, "nhouse": 2, "residents": 10, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 126, "repvalue": 252000, "xcoord": 85.324187237558633, "ycoord": 27.636841025821258 }, "geometry": { "type": "Point", "coordinates": [ 85.324187237558633, 27.636841025821258 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1103, "nhouse": 11, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 125, "repvalue": 1500000, "xcoord": 85.320786640027976, "ycoord": 27.63841908024073 }, "geometry": { "type": "Point", "coordinates": [ 85.320786640027976, 27.63841908024073 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1104, "nhouse": 6, "residents": 30, "specialfac": 0, "expstr": "RCi+MC+5s+Res", "fptarea": 91, "repvalue": 910000, "xcoord": 85.323364111710035, "ycoord": 27.639722500394171 }, "geometry": { "type": "Point", "coordinates": [ 85.323364111710035, 27.639722500394171 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1105, "nhouse": 4, "residents": 21, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 123, "repvalue": 492000, "xcoord": 85.323118529315721, "ycoord": 27.638794274254582 }, "geometry": { "type": "Point", "coordinates": [ 85.323118529315721, 27.638794274254582 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1106, "nhouse": 4, "residents": 13, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 103, "repvalue": 618000, "xcoord": 85.319959878231316, "ycoord": 27.641531800416871 }, "geometry": { "type": "Point", "coordinates": [ 85.319959878231316, 27.641531800416871 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1107, "nhouse": 12, "residents": 41, "specialfac": 0, "expstr": "RCi+MC+8s+Res", "fptarea": 100, "repvalue": 1600000, "xcoord": 85.322458725839155, "ycoord": 27.639480234436572 }, "geometry": { "type": "Point", "coordinates": [ 85.322458725839155, 27.639480234436572 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1108, "nhouse": 8, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 131, "repvalue": 1048000, "xcoord": 85.321284829021678, "ycoord": 27.639812996474053 }, "geometry": { "type": "Point", "coordinates": [ 85.321284829021678, 27.639812996474053 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1109, "nhouse": 16, "residents": 70, "specialfac": 0, "expstr": "RCi+MC+9s+Res", "fptarea": 119, "repvalue": 2142000, "xcoord": 85.320368849633297, "ycoord": 27.640264530118664 }, "geometry": { "type": "Point", "coordinates": [ 85.320368849633297, 27.640264530118664 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1110, "nhouse": 9, "residents": 34, "specialfac": 0, "expstr": "RCi+MC+8s+Res", "fptarea": 77, "repvalue": 1232000, "xcoord": 85.319577407000637, "ycoord": 27.641064537561828 }, "geometry": { "type": "Point", "coordinates": [ 85.319577407000637, 27.641064537561828 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1111, "nhouse": 12, "residents": 56, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 117, "repvalue": 1638000, "xcoord": 85.321025139275037, "ycoord": 27.639809851836986 }, "geometry": { "type": "Point", "coordinates": [ 85.321025139275037, 27.639809851836986 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1112, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 103, "repvalue": 412000, "xcoord": 85.323260715607177, "ycoord": 27.637986394730618 }, "geometry": { "type": "Point", "coordinates": [ 85.323260715607177, 27.637986394730618 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1113, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 81, "repvalue": 486000, "xcoord": 85.320256668978985, "ycoord": 27.639106601994559 }, "geometry": { "type": "Point", "coordinates": [ 85.320256668978985, 27.639106601994559 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1114, "nhouse": 11, "residents": 44, "specialfac": 0, "expstr": "RCi+MC+7s+Res", "fptarea": 107, "repvalue": 1498000, "xcoord": 85.322095659082919, "ycoord": 27.637740986266554 }, "geometry": { "type": "Point", "coordinates": [ 85.322095659082919, 27.637740986266554 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1115, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 126, "repvalue": 504000, "xcoord": 85.321919935579601, "ycoord": 27.640745940646863 }, "geometry": { "type": "Point", "coordinates": [ 85.321919935579601, 27.640745940646863 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1116, "nhouse": 3, "residents": 8, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 100, "repvalue": 400000, "xcoord": 85.320761917680258, "ycoord": 27.640037977764369 }, "geometry": { "type": "Point", "coordinates": [ 85.320761917680258, 27.640037977764369 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1117, "nhouse": 13, "residents": 61, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 119, "repvalue": 4284000, "xcoord": 85.321972874583452, "ycoord": 27.637276872327728 }, "geometry": { "type": "Point", "coordinates": [ 85.321972874583452, 27.637276872327728 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1576, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 121, "repvalue": 1452000, "xcoord": 85.322981631348043, "ycoord": 27.639255246455079 }, "geometry": { "type": "Point", "coordinates": [ 85.322981631348043, 27.639255246455079 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1578, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 145, "repvalue": 1740000, "xcoord": 85.320763683630616, "ycoord": 27.639922342240183 }, "geometry": { "type": "Point", "coordinates": [ 85.320763683630616, 27.639922342240183 ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "bldid": 1589, "nhouse": 0, "residents": 0, "specialfac": 1, "expstr": "RCi+MC+9s+Edu", "fptarea": 142, "repvalue": 3834000, "xcoord": 85.322342995069519, "ycoord": 27.638553578225761 }, "geometry": { "type": "Point", "coordinates": [ 85.322342995069519, 27.638553578225761 ] } }, +{ "type": "Feature", "properties": { "zoneid": 43, "bldid": 1118, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 94, "repvalue": 376000, "xcoord": 85.323930708903049, "ycoord": 27.635491374378972 }, "geometry": { "type": "Point", "coordinates": [ 85.323930708903049, 27.635491374378972 ] } }, +{ "type": "Feature", "properties": { "zoneid": 43, "bldid": 1119, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 71, "repvalue": 426000, "xcoord": 85.323189219598504, "ycoord": 27.634812823407568 }, "geometry": { "type": "Point", "coordinates": [ 85.323189219598504, 27.634812823407568 ] } }, +{ "type": "Feature", "properties": { "zoneid": 43, "bldid": 1120, "nhouse": 10, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 101, "repvalue": 1414000, "xcoord": 85.32505145675502, "ycoord": 27.635951308183643 }, "geometry": { "type": "Point", "coordinates": [ 85.32505145675502, 27.635951308183643 ] } }, +{ "type": "Feature", "properties": { "zoneid": 43, "bldid": 1121, "nhouse": 8, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 92, "repvalue": 1104000, "xcoord": 85.323563364652244, "ycoord": 27.634928945135876 }, "geometry": { "type": "Point", "coordinates": [ 85.323563364652244, 27.634928945135876 ] } }, +{ "type": "Feature", "properties": { "zoneid": 43, "bldid": 1122, "nhouse": 10, "residents": 45, "specialfac": 0, "expstr": "RCi+MC+6s+Res", "fptarea": 109, "repvalue": 1308000, "xcoord": 85.32430995725457, "ycoord": 27.635272762807336 }, "geometry": { "type": "Point", "coordinates": [ 85.32430995725457, 27.635272762807336 ] } }, +{ "type": "Feature", "properties": { "zoneid": 43, "bldid": 1123, "nhouse": 3, "residents": 9, "specialfac": 0, "expstr": "RCi+MC+2s+Res", "fptarea": 106, "repvalue": 424000, "xcoord": 85.324181274408133, "ycoord": 27.635494402967549 }, "geometry": { "type": "Point", "coordinates": [ 85.324181274408133, 27.635494402967549 ] } }, +{ "type": "Feature", "properties": { "zoneid": 43, "bldid": 1124, "nhouse": 2, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 131, "repvalue": 262000, "xcoord": 85.323932409328435, "ycoord": 27.635379797258913 }, "geometry": { "type": "Point", "coordinates": [ 85.323932409328435, 27.635379797258913 ] } }, +{ "type": "Feature", "properties": { "zoneid": 43, "bldid": 1125, "nhouse": 1, "residents": 1, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 89, "repvalue": 178000, "xcoord": 85.323692047986853, "ycoord": 27.634707305557907 }, "geometry": { "type": "Point", "coordinates": [ 85.323692047986853, 27.634707305557907 ] } }, +{ "type": "Feature", "properties": { "zoneid": 43, "bldid": 1126, "nhouse": 11, "residents": 43, "specialfac": 0, "expstr": "RCi+LC+6s+Res", "fptarea": 119, "repvalue": 1428000, "xcoord": 85.325544095970983, "ycoord": 27.636515246949607 }, "geometry": { "type": "Point", "coordinates": [ 85.325544095970983, 27.636515246949607 ] } }, +{ "type": "Feature", "properties": { "zoneid": 43, "bldid": 1127, "nhouse": 2, "residents": 10, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 118, "repvalue": 472000, "xcoord": 85.323314501525758, "ycoord": 27.634814338394062 }, "geometry": { "type": "Point", "coordinates": [ 85.323314501525758, 27.634814338394062 ] } }, +{ "type": "Feature", "properties": { "zoneid": 43, "bldid": 1577, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 99, "repvalue": 1386000, "xcoord": 85.324303157057003, "ycoord": 27.635719071369508 }, "geometry": { "type": "Point", "coordinates": [ 85.324303157057003, 27.635719071369508 ] } }, +{ "type": "Feature", "properties": { "zoneid": 43, "bldid": 1582, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Com", "fptarea": 135, "repvalue": 2160000, "xcoord": 85.323934109744044, "ycoord": 27.635268220136965 }, "geometry": { "type": "Point", "coordinates": [ 85.323934109744044, 27.635268220136965 ] } }, +{ "type": "Feature", "properties": { "zoneid": 43, "bldid": 1584, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Com", "fptarea": 129, "repvalue": 2064000, "xcoord": 85.323810527792858, "ycoord": 27.63515512857062 }, "geometry": { "type": "Point", "coordinates": [ 85.323810527792858, 27.63515512857062 ] } }, +{ "type": "Feature", "properties": { "zoneid": 45, "bldid": 1564, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Com", "fptarea": 99, "repvalue": 1782000, "xcoord": 85.32061292585847, "ycoord": 27.626761098100207 }, "geometry": { "type": "Point", "coordinates": [ 85.32061292585847, 27.626761098100207 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1299, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 110, "repvalue": 1320000, "xcoord": 85.322831297007681, "ycoord": 27.624750706124239 }, "geometry": { "type": "Point", "coordinates": [ 85.322831297007681, 27.624750706124239 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1300, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Com", "fptarea": 127, "repvalue": 1524000, "xcoord": 85.322033636458428, "ycoord": 27.62509396107221 }, "geometry": { "type": "Point", "coordinates": [ 85.322033636458428, 27.62509396107221 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1311, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Com", "fptarea": 116, "repvalue": 1160000, "xcoord": 85.321751602641697, "ycoord": 27.626266892118217 }, "geometry": { "type": "Point", "coordinates": [ 85.321751602641697, 27.626266892118217 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1312, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Com", "fptarea": 146, "repvalue": 1752000, "xcoord": 85.322167476964623, "ycoord": 27.624977945908526 }, "geometry": { "type": "Point", "coordinates": [ 85.322167476964623, 27.624977945908526 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1314, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Com", "fptarea": 120, "repvalue": 2160000, "xcoord": 85.321912352000126, "ycoord": 27.624386687405799 }, "geometry": { "type": "Point", "coordinates": [ 85.321912352000126, 27.624386687405799 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1319, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+10s+Com", "fptarea": 118, "repvalue": 2360000, "xcoord": 85.322156715794549, "ycoord": 27.625683621964122 }, "geometry": { "type": "Point", "coordinates": [ 85.322156715794549, 27.625683621964122 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1320, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Com", "fptarea": 98, "repvalue": 1764000, "xcoord": 85.323088220277782, "ycoord": 27.625224350430166 }, "geometry": { "type": "Point", "coordinates": [ 85.323088220277782, 27.625224350430166 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1321, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Com", "fptarea": 132, "repvalue": 1584000, "xcoord": 85.321630319139331, "ycoord": 27.625559618342631 }, "geometry": { "type": "Point", "coordinates": [ 85.321630319139331, 27.625559618342631 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1323, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Com", "fptarea": 135, "repvalue": 1890000, "xcoord": 85.32150186010216, "ycoord": 27.625322795022747 }, "geometry": { "type": "Point", "coordinates": [ 85.32150186010216, 27.625322795022747 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1325, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Com", "fptarea": 108, "repvalue": 1296000, "xcoord": 85.322171063934377, "ycoord": 27.624742720539849 }, "geometry": { "type": "Point", "coordinates": [ 85.322171063934377, 27.624742720539849 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1330, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Com", "fptarea": 141, "repvalue": 2256000, "xcoord": 85.321887238807747, "ycoord": 27.626033264675765 }, "geometry": { "type": "Point", "coordinates": [ 85.321887238807747, 27.626033264675765 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1331, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+10s+Com", "fptarea": 114, "repvalue": 2280000, "xcoord": 85.321628525019833, "ycoord": 27.625677230981523 }, "geometry": { "type": "Point", "coordinates": [ 85.321628525019833, 27.625677230981523 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1333, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Com", "fptarea": 108, "repvalue": 1296000, "xcoord": 85.322829504233198, "ycoord": 27.624868318849348 }, "geometry": { "type": "Point", "coordinates": [ 85.322829504233198, 27.624868318849348 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1334, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Com", "fptarea": 109, "repvalue": 1308000, "xcoord": 85.322436950317709, "ycoord": 27.624628302447018 }, "geometry": { "type": "Point", "coordinates": [ 85.322436950317709, 27.624628302447018 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1336, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+6s+Com", "fptarea": 132, "repvalue": 1584000, "xcoord": 85.321364429697709, "ycoord": 27.625674034736608 }, "geometry": { "type": "Point", "coordinates": [ 85.321364429697709, 27.625674034736608 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1343, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Com", "fptarea": 123, "repvalue": 1476000, "xcoord": 85.322306697171598, "ycoord": 27.624509092514948 }, "geometry": { "type": "Point", "coordinates": [ 85.322306697171598, 27.624509092514948 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1348, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Com", "fptarea": 148, "repvalue": 2664000, "xcoord": 85.323222059894846, "ycoord": 27.625108334208182 }, "geometry": { "type": "Point", "coordinates": [ 85.323222059894846, 27.625108334208182 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1353, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+9s+Com", "fptarea": 107, "repvalue": 1926000, "xcoord": 85.322424397783323, "ycoord": 27.625451591326556 }, "geometry": { "type": "Point", "coordinates": [ 85.322424397783323, 27.625451591326556 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1355, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Com", "fptarea": 136, "repvalue": 2176000, "xcoord": 85.322560031454657, "ycoord": 27.625217963091568 }, "geometry": { "type": "Point", "coordinates": [ 85.322560031454657, 27.625217963091568 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1360, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+8s+Com", "fptarea": 133, "repvalue": 2128000, "xcoord": 85.322552858989724, "ycoord": 27.625688413882227 }, "geometry": { "type": "Point", "coordinates": [ 85.322552858989724, 27.625688413882227 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1361, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Com", "fptarea": 98, "repvalue": 1568000, "xcoord": 85.322153128650925, "ycoord": 27.625918847299161 }, "geometry": { "type": "Point", "coordinates": [ 85.322153128650925, 27.625918847299161 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1362, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Com", "fptarea": 133, "repvalue": 1596000, "xcoord": 85.321755190696507, "ycoord": 27.62603166684347 }, "geometry": { "type": "Point", "coordinates": [ 85.321755190696507, 27.62603166684347 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1368, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 112, "repvalue": 1568000, "xcoord": 85.322438743493436, "ycoord": 27.624510689741538 }, "geometry": { "type": "Point", "coordinates": [ 85.322438743493436, 27.624510689741538 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1369, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Com", "fptarea": 119, "repvalue": 1666000, "xcoord": 85.322567203745763, "ycoord": 27.624747512267277 }, "geometry": { "type": "Point", "coordinates": [ 85.322567203745763, 27.624747512267277 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1370, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 104, "repvalue": 1872000, "xcoord": 85.32322026751072, "ycoord": 27.62522594695081 }, "geometry": { "type": "Point", "coordinates": [ 85.32322026751072, 27.62522594695081 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1371, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 97, "repvalue": 1746000, "xcoord": 85.322172857402933, "ycoord": 27.62462510785236 }, "geometry": { "type": "Point", "coordinates": [ 85.322172857402933, 27.62462510785236 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1374, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Com", "fptarea": 135, "repvalue": 2430000, "xcoord": 85.322019286929844, "ycoord": 27.626034862382447 }, "geometry": { "type": "Point", "coordinates": [ 85.322019286929844, 27.626034862382447 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1376, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 107, "repvalue": 1284000, "xcoord": 85.322827711447829, "ycoord": 27.624985931572354 }, "geometry": { "type": "Point", "coordinates": [ 85.322827711447829, 27.624985931572354 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1380, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 103, "repvalue": 1442000, "xcoord": 85.322154922228179, "ycoord": 27.625801234632693 }, "geometry": { "type": "Point", "coordinates": [ 85.322154922228179, 27.625801234632693 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1381, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Com", "fptarea": 112, "repvalue": 1568000, "xcoord": 85.322292350333583, "ycoord": 27.625449994036412 }, "geometry": { "type": "Point", "coordinates": [ 85.322292350333583, 27.625449994036412 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1385, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 126, "repvalue": 1512000, "xcoord": 85.3232238522681, "ycoord": 27.624990721463448 }, "geometry": { "type": "Point", "coordinates": [ 85.3232238522681, 27.624990721463448 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1387, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Com", "fptarea": 125, "repvalue": 2250000, "xcoord": 85.321635701432555, "ycoord": 27.625206780413357 }, "geometry": { "type": "Point", "coordinates": [ 85.321635701432555, 27.625206780413357 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1390, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Com", "fptarea": 133, "repvalue": 1596000, "xcoord": 85.321903383247417, "ycoord": 27.624974750763794 }, "geometry": { "type": "Point", "coordinates": [ 85.321903383247417, 27.624974750763794 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1396, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+6s+Com", "fptarea": 137, "repvalue": 1644000, "xcoord": 85.321500065863418, "ycoord": 27.625440407657884 }, "geometry": { "type": "Point", "coordinates": [ 85.321500065863418, 27.625440407657884 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1398, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Com", "fptarea": 143, "repvalue": 2288000, "xcoord": 85.321489300202686, "ycoord": 27.626146083424597 }, "geometry": { "type": "Point", "coordinates": [ 85.321489300202686, 27.626146083424597 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1401, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+6s+Com", "fptarea": 124, "repvalue": 1488000, "xcoord": 85.322556445243919, "ycoord": 27.625453188491093 }, "geometry": { "type": "Point", "coordinates": [ 85.322556445243919, 27.625453188491093 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1403, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Com", "fptarea": 120, "repvalue": 1920000, "xcoord": 85.322558238354716, "ycoord": 27.625335575792384 }, "geometry": { "type": "Point", "coordinates": [ 85.322558238354716, 27.625335575792384 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1409, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 123, "repvalue": 2214000, "xcoord": 85.322820540197711, "ycoord": 27.625456382443375 }, "geometry": { "type": "Point", "coordinates": [ 85.322820540197711, 27.625456382443375 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1414, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Com", "fptarea": 111, "repvalue": 1776000, "xcoord": 85.321632113247944, "ycoord": 27.62544200570165 }, "geometry": { "type": "Point", "coordinates": [ 85.321632113247944, 27.62544200570165 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1417, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Com", "fptarea": 135, "repvalue": 1350000, "xcoord": 85.322957965721812, "ycoord": 27.625105141057173 }, "geometry": { "type": "Point", "coordinates": [ 85.322957965721812, 27.625105141057173 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1419, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 111, "repvalue": 1554000, "xcoord": 85.322563617621938, "ycoord": 27.624982737683627 }, "geometry": { "type": "Point", "coordinates": [ 85.322563617621938, 27.624982737683627 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1424, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 110, "repvalue": 1320000, "xcoord": 85.321758778707846, "ycoord": 27.625796441560308 }, "geometry": { "type": "Point", "coordinates": [ 85.321758778707846, 27.625796441560308 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1425, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 107, "repvalue": 1498000, "xcoord": 85.321360840862141, "ycoord": 27.625909259976279 }, "geometry": { "type": "Point", "coordinates": [ 85.321360840862141, 27.625909259976279 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1427, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Com", "fptarea": 141, "repvalue": 2820000, "xcoord": 85.322040810961866, "ycoord": 27.624623510366629 }, "geometry": { "type": "Point", "coordinates": [ 85.322040810961866, 27.624623510366629 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1429, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Com", "fptarea": 142, "repvalue": 1704000, "xcoord": 85.321760572697215, "ycoord": 27.625678828915582 }, "geometry": { "type": "Point", "coordinates": [ 85.321760572697215, 27.625678828915582 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1431, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+5s+Com", "fptarea": 139, "repvalue": 1390000, "xcoord": 85.322701043275927, "ycoord": 27.624631496539283 }, "geometry": { "type": "Point", "coordinates": [ 85.322701043275927, 27.624631496539283 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1436, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Com", "fptarea": 142, "repvalue": 1988000, "xcoord": 85.322031842805387, "ycoord": 27.625211573743343 }, "geometry": { "type": "Point", "coordinates": [ 85.322031842805387, 27.625211573743343 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1437, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Com", "fptarea": 126, "repvalue": 2016000, "xcoord": 85.322022874377197, "ycoord": 27.625799637067498 }, "geometry": { "type": "Point", "coordinates": [ 85.322022874377197, 27.625799637067498 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1439, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 134, "repvalue": 1876000, "xcoord": 85.322965136277602, "ycoord": 27.624634690129163 }, "geometry": { "type": "Point", "coordinates": [ 85.322965136277602, 27.624634690129163 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1440, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Com", "fptarea": 108, "repvalue": 1944000, "xcoord": 85.321492888799767, "ycoord": 27.625910858177438 }, "geometry": { "type": "Point", "coordinates": [ 85.321492888799767, 27.625910858177438 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1444, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Com", "fptarea": 132, "repvalue": 1848000, "xcoord": 85.321910558271313, "ycoord": 27.624504300081608 }, "geometry": { "type": "Point", "coordinates": [ 85.321910558271313, 27.624504300081608 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1446, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Com", "fptarea": 149, "repvalue": 2384000, "xcoord": 85.322822333026537, "ycoord": 27.625338769728778 }, "geometry": { "type": "Point", "coordinates": [ 85.322822333026537, 27.625338769728778 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1449, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Com", "fptarea": 119, "repvalue": 1904000, "xcoord": 85.322028255466719, "ycoord": 27.625446799079313 }, "geometry": { "type": "Point", "coordinates": [ 85.322028255466719, 27.625446799079313 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1452, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+5s+Com", "fptarea": 137, "repvalue": 1370000, "xcoord": 85.322288763515402, "ycoord": 27.625685219395756 }, "geometry": { "type": "Point", "coordinates": [ 85.322288763515402, 27.625685219395756 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1455, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Com", "fptarea": 98, "repvalue": 1176000, "xcoord": 85.321889032677845, "ycoord": 27.625915652027288 }, "geometry": { "type": "Point", "coordinates": [ 85.321889032677845, 27.625915652027288 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1464, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+9s+Com", "fptarea": 134, "repvalue": 2412000, "xcoord": 85.322290556929929, "ycoord": 27.625567606717134 }, "geometry": { "type": "Point", "coordinates": [ 85.322290556929929, 27.625567606717134 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1474, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Com", "fptarea": 140, "repvalue": 2800000, "xcoord": 85.322021080658956, "ycoord": 27.625917249726026 }, "geometry": { "type": "Point", "coordinates": [ 85.322021080658956, 27.625917249726026 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1475, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+8s+Com", "fptarea": 98, "repvalue": 1568000, "xcoord": 85.323354106997655, "ycoord": 27.625109930595286 }, "geometry": { "type": "Point", "coordinates": [ 85.323354106997655, 27.625109930595286 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1478, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+10s+Com", "fptarea": 97, "repvalue": 1940000, "xcoord": 85.321885444926764, "ycoord": 27.626150877322136 }, "geometry": { "type": "Point", "coordinates": [ 85.321885444926764, 27.626150877322136 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1480, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+10s+Com", "fptarea": 112, "repvalue": 2240000, "xcoord": 85.321892620385455, "ycoord": 27.625680426724031 }, "geometry": { "type": "Point", "coordinates": [ 85.321892620385455, 27.625680426724031 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1484, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+HC+9s+Com", "fptarea": 131, "repvalue": 2358000, "xcoord": 85.32162493674825, "ycoord": 27.625912456252994 }, "geometry": { "type": "Point", "coordinates": [ 85.32162493674825, 27.625912456252994 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1485, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Com", "fptarea": 114, "repvalue": 1140000, "xcoord": 85.322294143726381, "ycoord": 27.625332381353587 }, "geometry": { "type": "Point", "coordinates": [ 85.322294143726381, 27.625332381353587 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1486, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+7s+Com", "fptarea": 136, "repvalue": 1904000, "xcoord": 85.322286970090019, "ycoord": 27.625802832072271 }, "geometry": { "type": "Point", "coordinates": [ 85.322286970090019, 27.625802832072271 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1494, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+8s+Com", "fptarea": 139, "repvalue": 2224000, "xcoord": 85.322440536658306, "ycoord": 27.624393077033947 }, "geometry": { "type": "Point", "coordinates": [ 85.322440536658306, 27.624393077033947 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1501, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+5s+Com", "fptarea": 125, "repvalue": 1250000, "xcoord": 85.322169270454935, "ycoord": 27.624860333225243 }, "geometry": { "type": "Point", "coordinates": [ 85.322169270454935, 27.624860333225243 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1502, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 150, "repvalue": 2100000, "xcoord": 85.322295937108294, "ycoord": 27.625214768668656 }, "geometry": { "type": "Point", "coordinates": [ 85.322295937108294, 27.625214768668656 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1504, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Com", "fptarea": 140, "repvalue": 2240000, "xcoord": 85.322695664529448, "ycoord": 27.624984334690787 }, "geometry": { "type": "Point", "coordinates": [ 85.322695664529448, 27.624984334690787 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1505, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+7s+Com", "fptarea": 97, "repvalue": 1358000, "xcoord": 85.321359046428043, "ycoord": 27.626026872592952 }, "geometry": { "type": "Point", "coordinates": [ 85.321359046428043, 27.626026872592952 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1507, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 137, "repvalue": 1918000, "xcoord": 85.3219069707811, "ycoord": 27.624739525426907 }, "geometry": { "type": "Point", "coordinates": [ 85.3219069707811, 27.624739525426907 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1512, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 135, "repvalue": 1620000, "xcoord": 85.322030049141489, "ycoord": 27.625329186412383 }, "geometry": { "type": "Point", "coordinates": [ 85.322030049141489, 27.625329186412383 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1514, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Com", "fptarea": 127, "repvalue": 1270000, "xcoord": 85.322308490477454, "ycoord": 27.624391479815301 }, "geometry": { "type": "Point", "coordinates": [ 85.322308490477454, 27.624391479815301 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1516, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Com", "fptarea": 122, "repvalue": 2196000, "xcoord": 85.321767748545966, "ycoord": 27.625208378315623 }, "geometry": { "type": "Point", "coordinates": [ 85.321767748545966, 27.625208378315623 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1520, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+5s+Com", "fptarea": 106, "repvalue": 1060000, "xcoord": 85.322565410689293, "ycoord": 27.624865124976509 }, "geometry": { "type": "Point", "coordinates": [ 85.322565410689293, 27.624865124976509 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1525, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 142, "repvalue": 1988000, "xcoord": 85.322688492715386, "ycoord": 27.625454785530039 }, "geometry": { "type": "Point", "coordinates": [ 85.322688492715386, 27.625454785530039 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1526, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Com", "fptarea": 117, "repvalue": 1638000, "xcoord": 85.322570789826116, "ycoord": 27.624512286842524 }, "geometry": { "type": "Point", "coordinates": [ 85.322570789826116, 27.624512286842524 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1545, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+HC+7s+Com", "fptarea": 119, "repvalue": 1666000, "xcoord": 85.322956173055701, "ycoord": 27.625222753783916 }, "geometry": { "type": "Point", "coordinates": [ 85.322956173055701, 27.625222753783916 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1546, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+9s+Com", "fptarea": 121, "repvalue": 2178000, "xcoord": 85.322568996791389, "ycoord": 27.624629899555952 }, "geometry": { "type": "Point", "coordinates": [ 85.322568996791389, 27.624629899555952 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1548, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Com", "fptarea": 125, "repvalue": 1250000, "xcoord": 85.322174650860632, "ycoord": 27.624507495162764 }, "geometry": { "type": "Point", "coordinates": [ 85.322174650860632, 27.624507495162764 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1550, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 107, "repvalue": 1498000, "xcoord": 85.321623142596152, "ycoord": 27.626030068885569 }, "geometry": { "type": "Point", "coordinates": [ 85.321623142596152, 27.626030068885569 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1552, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+8s+Com", "fptarea": 121, "repvalue": 1936000, "xcoord": 85.321769542480979, "ycoord": 27.625090765660385 }, "geometry": { "type": "Point", "coordinates": [ 85.321769542480979, 27.625090765660385 ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "bldid": 1553, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+8s+Com", "fptarea": 121, "repvalue": 1936000, "xcoord": 85.321491094506655, "ycoord": 27.626028470802066 }, "geometry": { "type": "Point", "coordinates": [ 85.321491094506655, 27.626028470802066 ] } }, +{ "type": "Feature", "properties": { "zoneid": 51, "bldid": 1128, "nhouse": 13, "residents": 63, "specialfac": 0, "expstr": "RCi+HC+9s+Res", "fptarea": 69, "repvalue": 1242000, "xcoord": 85.311314869236654, "ycoord": 27.634813376096382 }, "geometry": { "type": "Point", "coordinates": [ 85.311314869236654, 27.634813376096382 ] } }, +{ "type": "Feature", "properties": { "zoneid": 51, "bldid": 1129, "nhouse": 6, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 54, "repvalue": 540000, "xcoord": 85.311098987446897, "ycoord": 27.637204241012757 }, "geometry": { "type": "Point", "coordinates": [ 85.311098987446897, 27.637204241012757 ] } }, +{ "type": "Feature", "properties": { "zoneid": 51, "bldid": 1130, "nhouse": 10, "residents": 29, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 67, "repvalue": 938000, "xcoord": 85.309630278966736, "ycoord": 27.633675885883516 }, "geometry": { "type": "Point", "coordinates": [ 85.309630278966736, 27.633675885883516 ] } }, +{ "type": "Feature", "properties": { "zoneid": 51, "bldid": 1131, "nhouse": 9, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 68, "repvalue": 816000, "xcoord": 85.31067075317759, "ycoord": 27.635922494006806 }, "geometry": { "type": "Point", "coordinates": [ 85.31067075317759, 27.635922494006806 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1132, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 70, "repvalue": 280000, "xcoord": 85.308829261493884, "ycoord": 27.640357455447976 }, "geometry": { "type": "Point", "coordinates": [ 85.308829261493884, 27.640357455447976 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1133, "nhouse": 11, "residents": 36, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 62, "repvalue": 992000, "xcoord": 85.308826490412244, "ycoord": 27.640537622719744 }, "geometry": { "type": "Point", "coordinates": [ 85.308826490412244, 27.640537622719744 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1134, "nhouse": 10, "residents": 40, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 69, "repvalue": 966000, "xcoord": 85.308035280310605, "ycoord": 27.639356662180106 }, "geometry": { "type": "Point", "coordinates": [ 85.308035280310605, 27.639356662180106 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1135, "nhouse": 8, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 56, "repvalue": 784000, "xcoord": 85.30873780701441, "ycoord": 27.63972563604904 }, "geometry": { "type": "Point", "coordinates": [ 85.30873780701441, 27.63972563604904 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1136, "nhouse": 17, "residents": 62, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 79, "repvalue": 1580000, "xcoord": 85.309835259390482, "ycoord": 27.640730125536745 }, "geometry": { "type": "Point", "coordinates": [ 85.309835259390482, 27.640730125536745 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1137, "nhouse": 7, "residents": 31, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 47, "repvalue": 658000, "xcoord": 85.308022804917513, "ycoord": 27.640167414647987 }, "geometry": { "type": "Point", "coordinates": [ 85.308022804917513, 27.640167414647987 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1138, "nhouse": 4, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 60, "repvalue": 360000, "xcoord": 85.309623256879334, "ycoord": 27.641358244674663 }, "geometry": { "type": "Point", "coordinates": [ 85.309623256879334, 27.641358244674663 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1139, "nhouse": 11, "residents": 55, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 70, "repvalue": 980000, "xcoord": 85.308935956897415, "ycoord": 27.639998354738854 }, "geometry": { "type": "Point", "coordinates": [ 85.308935956897415, 27.639998354738854 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1140, "nhouse": 13, "residents": 48, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 88, "repvalue": 1232000, "xcoord": 85.31044356798273, "ycoord": 27.640647439619716 }, "geometry": { "type": "Point", "coordinates": [ 85.31044356798273, 27.640647439619716 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1141, "nhouse": 10, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 81, "repvalue": 972000, "xcoord": 85.312455588401448, "ycoord": 27.641392750038058 }, "geometry": { "type": "Point", "coordinates": [ 85.312455588401448, 27.641392750038058 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1142, "nhouse": 8, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 51, "repvalue": 816000, "xcoord": 85.312458353638604, "ycoord": 27.641212582450546 }, "geometry": { "type": "Point", "coordinates": [ 85.312458353638604, 27.641212582450546 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1143, "nhouse": 5, "residents": 18, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 47, "repvalue": 470000, "xcoord": 85.308042210859412, "ycoord": 27.638906244099172 }, "geometry": { "type": "Point", "coordinates": [ 85.308042210859412, 27.638906244099172 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1144, "nhouse": 5, "residents": 23, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 86, "repvalue": 516000, "xcoord": 85.308444048450767, "ycoord": 27.639091348461108 }, "geometry": { "type": "Point", "coordinates": [ 85.308444048450767, 27.639091348461108 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1145, "nhouse": 1, "residents": 7, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 52, "repvalue": 104000, "xcoord": 85.307724890338307, "ycoord": 27.639803376498794 }, "geometry": { "type": "Point", "coordinates": [ 85.307724890338307, 27.639803376498794 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1146, "nhouse": 4, "residents": 17, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 65, "repvalue": 390000, "xcoord": 85.308021418730561, "ycoord": 27.640257498249358 }, "geometry": { "type": "Point", "coordinates": [ 85.308021418730561, 27.640257498249358 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1147, "nhouse": 5, "residents": 16, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 64, "repvalue": 512000, "xcoord": 85.310535032799848, "ycoord": 27.641279258284683 }, "geometry": { "type": "Point", "coordinates": [ 85.310535032799848, 27.641279258284683 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1148, "nhouse": 5, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 60, "repvalue": 480000, "xcoord": 85.308028349600988, "ycoord": 27.639807080230163 }, "geometry": { "type": "Point", "coordinates": [ 85.308028349600988, 27.639807080230163 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1149, "nhouse": 10, "residents": 45, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 80, "repvalue": 960000, "xcoord": 85.311863873744628, "ycoord": 27.640394439415207 }, "geometry": { "type": "Point", "coordinates": [ 85.311863873744628, 27.640394439415207 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1150, "nhouse": 9, "residents": 39, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 61, "repvalue": 854000, "xcoord": 85.309344725486852, "ycoord": 27.639733038396226 }, "geometry": { "type": "Point", "coordinates": [ 85.309344725486852, 27.639733038396226 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1151, "nhouse": 6, "residents": 22, "specialfac": 0, "expstr": "BrCfl+MC+4s+Res", "fptarea": 72, "repvalue": 576000, "xcoord": 85.310350719745912, "ycoord": 27.640105704598152 }, "geometry": { "type": "Point", "coordinates": [ 85.310350719745912, 27.640105704598152 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1152, "nhouse": 10, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 77, "repvalue": 924000, "xcoord": 85.311240347796826, "ycoord": 27.641468052839368 }, "geometry": { "type": "Point", "coordinates": [ 85.311240347796826, 27.641468052839368 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1153, "nhouse": 35, "residents": 142, "specialfac": 0, "expstr": "RCi+HC+19s+Res", "fptarea": 86, "repvalue": 3268000, "xcoord": 85.310935499570817, "ycoord": 27.641554439652978 }, "geometry": { "type": "Point", "coordinates": [ 85.310935499570817, 27.641554439652978 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1154, "nhouse": 5, "residents": 19, "specialfac": 0, "expstr": "BrCri+MC+3s+Res", "fptarea": 86, "repvalue": 516000, "xcoord": 85.307848223772851, "ycoord": 27.638363273431239 }, "geometry": { "type": "Point", "coordinates": [ 85.307848223772851, 27.638363273431239 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1155, "nhouse": 12, "residents": 44, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 83, "repvalue": 1162000, "xcoord": 85.31164911687172, "ycoord": 27.641202729749139 }, "geometry": { "type": "Point", "coordinates": [ 85.31164911687172, 27.641202729749139 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1156, "nhouse": 32, "residents": 148, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 86, "repvalue": 2924000, "xcoord": 85.309626026752198, "ycoord": 27.641178077349956 }, "geometry": { "type": "Point", "coordinates": [ 85.309626026752198, 27.641178077349956 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1157, "nhouse": 5, "residents": 18, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 86, "repvalue": 516000, "xcoord": 85.308226497801968, "ycoord": 27.640079799859187 }, "geometry": { "type": "Point", "coordinates": [ 85.308226497801968, 27.640079799859187 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1158, "nhouse": 5, "residents": 22, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 67, "repvalue": 536000, "xcoord": 85.307619577767355, "ycoord": 27.640072392533011 }, "geometry": { "type": "Point", "coordinates": [ 85.307619577767355, 27.640072392533011 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1159, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 79, "repvalue": 158000, "xcoord": 85.310740110016241, "ycoord": 27.641101556103504 }, "geometry": { "type": "Point", "coordinates": [ 85.310740110016241, 27.641101556103504 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1160, "nhouse": 4, "residents": 18, "specialfac": 0, "expstr": "BrCri+LC+3s+Res", "fptarea": 68, "repvalue": 408000, "xcoord": 85.310856487293094, "ycoord": 27.640111867600634 }, "geometry": { "type": "Point", "coordinates": [ 85.310856487293094, 27.640111867600634 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1161, "nhouse": 6, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 49, "repvalue": 588000, "xcoord": 85.30954841660251, "ycoord": 27.639645421576187 }, "geometry": { "type": "Point", "coordinates": [ 85.30954841660251, 27.639645421576187 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1162, "nhouse": 1, "residents": 2, "specialfac": 0, "expstr": "BrCri+LC+1s+Res", "fptarea": 79, "repvalue": 158000, "xcoord": 85.310857871149466, "ycoord": 27.640021783865265 }, "geometry": { "type": "Point", "coordinates": [ 85.310857871149466, 27.640021783865265 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1163, "nhouse": 5, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 52, "repvalue": 520000, "xcoord": 85.312355816322125, "ycoord": 27.641301434910631 }, "geometry": { "type": "Point", "coordinates": [ 85.312355816322125, 27.641301434910631 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1164, "nhouse": 2, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 48, "repvalue": 192000, "xcoord": 85.31125280015992, "ycoord": 27.640657299174343 }, "geometry": { "type": "Point", "coordinates": [ 85.31125280015992, 27.640657299174343 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1165, "nhouse": 5, "residents": 17, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 47, "repvalue": 470000, "xcoord": 85.309225564791149, "ycoord": 27.640902892390919 }, "geometry": { "type": "Point", "coordinates": [ 85.309225564791149, 27.640902892390919 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1166, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 54, "repvalue": 324000, "xcoord": 85.309429258212461, "ycoord": 27.640815275861218 }, "geometry": { "type": "Point", "coordinates": [ 85.309429258212461, 27.640815275861218 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1167, "nhouse": 7, "residents": 29, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 55, "repvalue": 660000, "xcoord": 85.310945186570393, "ycoord": 27.640923853584908 }, "geometry": { "type": "Point", "coordinates": [ 85.310945186570393, 27.640923853584908 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1168, "nhouse": 21, "residents": 81, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 67, "repvalue": 1876000, "xcoord": 85.309540107065587, "ycoord": 27.640185923633261 }, "geometry": { "type": "Point", "coordinates": [ 85.309540107065587, 27.640185923633261 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1169, "nhouse": 11, "residents": 47, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 48, "repvalue": 1056000, "xcoord": 85.307446389874784, "ycoord": 27.638178167486998 }, "geometry": { "type": "Point", "coordinates": [ 85.307446389874784, 27.638178167486998 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1170, "nhouse": 20, "residents": 75, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 83, "repvalue": 1826000, "xcoord": 85.308838960077082, "ycoord": 27.639726869957894 }, "geometry": { "type": "Point", "coordinates": [ 85.308838960077082, 27.639726869957894 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1171, "nhouse": 12, "residents": 46, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 72, "repvalue": 1152000, "xcoord": 85.311557645647795, "ycoord": 27.640570911529942 }, "geometry": { "type": "Point", "coordinates": [ 85.311557645647795, 27.640570911529942 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1172, "nhouse": 20, "residents": 83, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 83, "repvalue": 1826000, "xcoord": 85.307734595024968, "ycoord": 27.639172791318806 }, "geometry": { "type": "Point", "coordinates": [ 85.307734595024968, 27.639172791318806 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1173, "nhouse": 4, "residents": 14, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 45, "repvalue": 450000, "xcoord": 85.308836189085454, "ycoord": 27.639907037246946 }, "geometry": { "type": "Point", "coordinates": [ 85.308836189085454, 27.639907037246946 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1174, "nhouse": 6, "residents": 21, "specialfac": 0, "expstr": "BrCri+LC+4s+Res", "fptarea": 76, "repvalue": 608000, "xcoord": 85.307752617178153, "ycoord": 27.638001704395439 }, "geometry": { "type": "Point", "coordinates": [ 85.307752617178153, 27.638001704395439 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1175, "nhouse": 8, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 68, "repvalue": 816000, "xcoord": 85.307717958226263, "ycoord": 27.640253794447467 }, "geometry": { "type": "Point", "coordinates": [ 85.307717958226263, 27.640253794447467 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1176, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 56, "repvalue": 336000, "xcoord": 85.310228800189378, "ycoord": 27.641455727236302 }, "geometry": { "type": "Point", "coordinates": [ 85.310228800189378, 27.641455727236302 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1177, "nhouse": 17, "residents": 72, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 45, "repvalue": 1530000, "xcoord": 85.308015873918436, "ycoord": 27.64061783264248 }, "geometry": { "type": "Point", "coordinates": [ 85.308015873918436, 27.64061783264248 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1178, "nhouse": 7, "residents": 17, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 44, "repvalue": 704000, "xcoord": 85.310636187385398, "ycoord": 27.641280490946205 }, "geometry": { "type": "Point", "coordinates": [ 85.310636187385398, 27.641280490946205 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1179, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 53, "repvalue": 318000, "xcoord": 85.311546578944345, "ycoord": 27.641291581581825 }, "geometry": { "type": "Point", "coordinates": [ 85.311546578944345, 27.641291581581825 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1180, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 46, "repvalue": 368000, "xcoord": 85.308633882635448, "ycoord": 27.639904569336714 }, "geometry": { "type": "Point", "coordinates": [ 85.308633882635448, 27.639904569336714 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1181, "nhouse": 4, "residents": 12, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 68, "repvalue": 408000, "xcoord": 85.311657416402639, "ycoord": 27.640662227182077 }, "geometry": { "type": "Point", "coordinates": [ 85.311657416402639, 27.640662227182077 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1182, "nhouse": 10, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 74, "repvalue": 888000, "xcoord": 85.307828816053672, "ycoord": 27.639624443952133 }, "geometry": { "type": "Point", "coordinates": [ 85.307828816053672, 27.639624443952133 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1183, "nhouse": 7, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 49, "repvalue": 686000, "xcoord": 85.31013456806059, "ycoord": 27.641004075838179 }, "geometry": { "type": "Point", "coordinates": [ 85.31013456806059, 27.641004075838179 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1184, "nhouse": 21, "residents": 82, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 54, "repvalue": 1944000, "xcoord": 85.309734105353002, "ycoord": 27.640728892313522 }, "geometry": { "type": "Point", "coordinates": [ 85.309734105353002, 27.640728892313522 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1185, "nhouse": 13, "residents": 63, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 88, "repvalue": 1232000, "xcoord": 85.310252334955393, "ycoord": 27.639924304360825 }, "geometry": { "type": "Point", "coordinates": [ 85.310252334955393, 27.639924304360825 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1186, "nhouse": 24, "residents": 97, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 66, "repvalue": 2244000, "xcoord": 85.310040336605397, "ycoord": 27.640552424382417 }, "geometry": { "type": "Point", "coordinates": [ 85.310040336605397, 27.640552424382417 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1187, "nhouse": 12, "residents": 41, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 77, "repvalue": 1078000, "xcoord": 85.308137819037029, "ycoord": 27.639267812967844 }, "geometry": { "type": "Point", "coordinates": [ 85.308137819037029, 27.639267812967844 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1188, "nhouse": 7, "residents": 24, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 49, "repvalue": 686000, "xcoord": 85.308046369111523, "ycoord": 27.638635993235802 }, "geometry": { "type": "Point", "coordinates": [ 85.308046369111523, 27.638635993235802 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1189, "nhouse": 22, "residents": 97, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 57, "repvalue": 2052000, "xcoord": 85.312365495074474, "ycoord": 27.64067084835688 }, "geometry": { "type": "Point", "coordinates": [ 85.312365495074474, 27.64067084835688 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1190, "nhouse": 17, "residents": 55, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 70, "repvalue": 1540000, "xcoord": 85.310347951186131, "ycoord": 27.640285872018236 }, "geometry": { "type": "Point", "coordinates": [ 85.310347951186131, 27.640285872018236 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1191, "nhouse": 9, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 58, "repvalue": 812000, "xcoord": 85.309544261862968, "ycoord": 27.639915672610279 }, "geometry": { "type": "Point", "coordinates": [ 85.309544261862968, 27.639915672610279 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1192, "nhouse": 11, "residents": 52, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 53, "repvalue": 1060000, "xcoord": 85.312053735203833, "ycoord": 27.641207656689719 }, "geometry": { "type": "Point", "coordinates": [ 85.312053735203833, 27.641207656689719 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1193, "nhouse": 2, "residents": 8, "specialfac": 0, "expstr": "BrCri+LC+2s+Res", "fptarea": 54, "repvalue": 216000, "xcoord": 85.309522102275238, "ycoord": 27.641357011271097 }, "geometry": { "type": "Point", "coordinates": [ 85.309522102275238, 27.641357011271097 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1194, "nhouse": 21, "residents": 87, "specialfac": 0, "expstr": "RCi+HC+16s+Res", "fptarea": 61, "repvalue": 1952000, "xcoord": 85.309542876936931, "ycoord": 27.640005756285845 }, "geometry": { "type": "Point", "coordinates": [ 85.309542876936931, 27.640005756285845 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1195, "nhouse": 5, "residents": 25, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 52, "repvalue": 520000, "xcoord": 85.308329037089351, "ycoord": 27.639990950537555 }, "geometry": { "type": "Point", "coordinates": [ 85.308329037089351, 27.639990950537555 ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "bldid": 1196, "nhouse": 4, "residents": 19, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 61, "repvalue": 976000, "xcoord": 85.307650079395216, "ycoord": 27.638090553377094 }, "geometry": { "type": "Point", "coordinates": [ 85.307650079395216, 27.638090553377094 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1197, "nhouse": 4, "residents": 12, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 73, "repvalue": 438000, "xcoord": 85.306623860163583, "ycoord": 27.63105562263106 }, "geometry": { "type": "Point", "coordinates": [ 85.306623860163583, 27.63105562263106 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1198, "nhouse": 1, "residents": 6, "specialfac": 0, "expstr": "BrM+LC+1s+Res", "fptarea": 83, "repvalue": 166000, "xcoord": 85.306402152168317, "ycoord": 27.632314323137525 }, "geometry": { "type": "Point", "coordinates": [ 85.306402152168317, 27.632314323137525 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1199, "nhouse": 7, "residents": 38, "specialfac": 0, "expstr": "BrM+LC+4s+Res", "fptarea": 78, "repvalue": 624000, "xcoord": 85.307367864903071, "ycoord": 27.635299433522651 }, "geometry": { "type": "Point", "coordinates": [ 85.307367864903071, 27.635299433522651 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1200, "nhouse": 4, "residents": 22, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 67, "repvalue": 402000, "xcoord": 85.308275434031003, "ycoord": 27.635490710760607 }, "geometry": { "type": "Point", "coordinates": [ 85.308275434031003, 27.635490710760607 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1201, "nhouse": 4, "residents": 19, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 66, "repvalue": 396000, "xcoord": 85.307182205809269, "ycoord": 27.63421596025611 }, "geometry": { "type": "Point", "coordinates": [ 85.307182205809269, 27.63421596025611 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1202, "nhouse": 2, "residents": 11, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 44, "repvalue": 264000, "xcoord": 85.306195698263934, "ycoord": 27.632582103150586 }, "geometry": { "type": "Point", "coordinates": [ 85.306195698263934, 27.632582103150586 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1203, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrM+LC+1s+Res", "fptarea": 72, "repvalue": 144000, "xcoord": 85.306039054100154, "ycoord": 27.636184211040835 }, "geometry": { "type": "Point", "coordinates": [ 85.306039054100154, 27.636184211040835 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1204, "nhouse": 3, "residents": 13, "specialfac": 0, "expstr": "BrM+MC+3s+Res", "fptarea": 46, "repvalue": 276000, "xcoord": 85.305857570158409, "ycoord": 27.634830485940519 }, "geometry": { "type": "Point", "coordinates": [ 85.305857570158409, 27.634830485940519 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1205, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 73, "repvalue": 292000, "xcoord": 85.306206795927622, "ycoord": 27.631861434189059 }, "geometry": { "type": "Point", "coordinates": [ 85.306206795927622, 27.631861434189059 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1206, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 76, "repvalue": 304000, "xcoord": 85.307778004984598, "ycoord": 27.634944037363343 }, "geometry": { "type": "Point", "coordinates": [ 85.307778004984598, 27.634944037363343 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1207, "nhouse": 4, "residents": 20, "specialfac": 0, "expstr": "BrM+LC+3s+Res", "fptarea": 68, "repvalue": 408000, "xcoord": 85.305811925629698, "ycoord": 27.631225906447852 }, "geometry": { "type": "Point", "coordinates": [ 85.305811925629698, 27.631225906447852 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1208, "nhouse": 1, "residents": 3, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 59, "repvalue": 118000, "xcoord": 85.306630794049781, "ycoord": 27.630605204340306 }, "geometry": { "type": "Point", "coordinates": [ 85.306630794049781, 27.630605204340306 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1209, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 83, "repvalue": 166000, "xcoord": 85.306828923373445, "ycoord": 27.630877925416513 }, "geometry": { "type": "Point", "coordinates": [ 85.306828923373445, 27.630877925416513 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1210, "nhouse": 7, "residents": 21, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 83, "repvalue": 664000, "xcoord": 85.306313489973206, "ycoord": 27.631502335092293 }, "geometry": { "type": "Point", "coordinates": [ 85.306313489973206, 27.631502335092293 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1211, "nhouse": 4, "residents": 14, "specialfac": 0, "expstr": "BrM+LC+4s+Res", "fptarea": 57, "repvalue": 456000, "xcoord": 85.307884697525893, "ycoord": 27.634584937114028 }, "geometry": { "type": "Point", "coordinates": [ 85.307884697525893, 27.634584937114028 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1212, "nhouse": 3, "residents": 8, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 46, "repvalue": 276000, "xcoord": 85.306270487594617, "ycoord": 27.634294927177031 }, "geometry": { "type": "Point", "coordinates": [ 85.306270487594617, 27.634294927177031 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1213, "nhouse": 7, "residents": 28, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 80, "repvalue": 640000, "xcoord": 85.305853407200672, "ycoord": 27.63510073664575 }, "geometry": { "type": "Point", "coordinates": [ 85.305853407200672, 27.63510073664575 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1214, "nhouse": 2, "residents": 11, "specialfac": 0, "expstr": "BrM+MC+2s+Res", "fptarea": 46, "repvalue": 184000, "xcoord": 85.306816443577958, "ycoord": 27.631688678368988 }, "geometry": { "type": "Point", "coordinates": [ 85.306816443577958, 27.631688678368988 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1215, "nhouse": 3, "residents": 7, "specialfac": 0, "expstr": "BrM+LC+3s+Res", "fptarea": 46, "repvalue": 276000, "xcoord": 85.306712524487921, "ycoord": 27.631867610614258 }, "geometry": { "type": "Point", "coordinates": [ 85.306712524487921, 27.631867610614258 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1216, "nhouse": 4, "residents": 13, "specialfac": 0, "expstr": "BrM+LC+4s+Res", "fptarea": 51, "repvalue": 408000, "xcoord": 85.306012828518817, "ycoord": 27.63131846138652 }, "geometry": { "type": "Point", "coordinates": [ 85.306012828518817, 27.63131846138652 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1217, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 87, "repvalue": 348000, "xcoord": 85.306974363196872, "ycoord": 27.634573824912398 }, "geometry": { "type": "Point", "coordinates": [ 85.306974363196872, 27.634573824912398 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1218, "nhouse": 1, "residents": 2, "specialfac": 0, "expstr": "BrM+LC+1s+Res", "fptarea": 84, "repvalue": 168000, "xcoord": 85.307629766340739, "ycoord": 27.631428305065828 }, "geometry": { "type": "Point", "coordinates": [ 85.307629766340739, 27.631428305065828 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1219, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 59, "repvalue": 118000, "xcoord": 85.305574942608743, "ycoord": 27.633475524590537 }, "geometry": { "type": "Point", "coordinates": [ 85.305574942608743, 27.633475524590537 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1220, "nhouse": 6, "residents": 25, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 68, "repvalue": 544000, "xcoord": 85.30597953124709, "ycoord": 27.633480467985937 }, "geometry": { "type": "Point", "coordinates": [ 85.30597953124709, 27.633480467985937 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1221, "nhouse": 4, "residents": 19, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 61, "repvalue": 366000, "xcoord": 85.308165970069695, "ycoord": 27.636029978610889 }, "geometry": { "type": "Point", "coordinates": [ 85.308165970069695, 27.636029978610889 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1222, "nhouse": 7, "residents": 23, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 88, "repvalue": 704000, "xcoord": 85.3064561377236, "ycoord": 27.635378401256933 }, "geometry": { "type": "Point", "coordinates": [ 85.3064561377236, 27.635378401256933 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1223, "nhouse": 1, "residents": 5, "specialfac": 0, "expstr": "BrCfl+LC+1s+Res", "fptarea": 62, "repvalue": 124000, "xcoord": 85.305436320429891, "ycoord": 27.635906544496109 }, "geometry": { "type": "Point", "coordinates": [ 85.305436320429891, 27.635906544496109 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1224, "nhouse": 4, "residents": 15, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 63, "repvalue": 378000, "xcoord": 85.305580493735505, "ycoord": 27.633115190282002 }, "geometry": { "type": "Point", "coordinates": [ 85.305580493735505, 27.633115190282002 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1225, "nhouse": 7, "residents": 33, "specialfac": 0, "expstr": "BrM+LC+4s+Res", "fptarea": 84, "repvalue": 672000, "xcoord": 85.305950393091962, "ycoord": 27.635372223177008 }, "geometry": { "type": "Point", "coordinates": [ 85.305950393091962, 27.635372223177008 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1226, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 79, "repvalue": 316000, "xcoord": 85.306683400930041, "ycoord": 27.633759366963801 }, "geometry": { "type": "Point", "coordinates": [ 85.306683400930041, 27.633759366963801 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1227, "nhouse": 7, "residents": 32, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 79, "repvalue": 632000, "xcoord": 85.307460695601762, "ycoord": 27.635841170063326 }, "geometry": { "type": "Point", "coordinates": [ 85.307460695601762, 27.635841170063326 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1228, "nhouse": 3, "residents": 12, "specialfac": 0, "expstr": "BrM+LC+3s+Res", "fptarea": 56, "repvalue": 336000, "xcoord": 85.306453363340651, "ycoord": 27.635558568436643 }, "geometry": { "type": "Point", "coordinates": [ 85.306453363340651, 27.635558568436643 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1229, "nhouse": 2, "residents": 14, "specialfac": 0, "expstr": "BrM+LC+2s+Res", "fptarea": 60, "repvalue": 240000, "xcoord": 85.308175670674657, "ycoord": 27.635399392943807 }, "geometry": { "type": "Point", "coordinates": [ 85.308175670674657, 27.635399392943807 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1230, "nhouse": 4, "residents": 19, "specialfac": 0, "expstr": "BrM+LC+4s+Res", "fptarea": 54, "repvalue": 432000, "xcoord": 85.306371635534333, "ycoord": 27.634296162662828 }, "geometry": { "type": "Point", "coordinates": [ 85.306371635534333, 27.634296162662828 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1231, "nhouse": 4, "residents": 14, "specialfac": 0, "expstr": "BrM+LC+4s+Res", "fptarea": 50, "repvalue": 400000, "xcoord": 85.308280976787074, "ycoord": 27.635130376052683 }, "geometry": { "type": "Point", "coordinates": [ 85.308280976787074, 27.635130376052683 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1232, "nhouse": 4, "residents": 10, "specialfac": 0, "expstr": "BrM+LC+3s+Res", "fptarea": 64, "repvalue": 384000, "xcoord": 85.306856572953762, "ycoord": 27.635653593218169 }, "geometry": { "type": "Point", "coordinates": [ 85.306856572953762, 27.635653593218169 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1233, "nhouse": 3, "residents": 16, "specialfac": 0, "expstr": "BrM+LC+2s+Res", "fptarea": 77, "repvalue": 308000, "xcoord": 85.306465847861119, "ycoord": 27.634747816089032 }, "geometry": { "type": "Point", "coordinates": [ 85.306465847861119, 27.634747816089032 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1234, "nhouse": 5, "residents": 25, "specialfac": 0, "expstr": "BrM+LC+3s+Res", "fptarea": 86, "repvalue": 516000, "xcoord": 85.306733325291574, "ycoord": 27.630516355745513 }, "geometry": { "type": "Point", "coordinates": [ 85.306733325291574, 27.630516355745513 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1235, "nhouse": 5, "residents": 20, "specialfac": 0, "expstr": "BrM+LC+4s+Res", "fptarea": 59, "repvalue": 472000, "xcoord": 85.306051542005406, "ycoord": 27.635373458940421 }, "geometry": { "type": "Point", "coordinates": [ 85.306051542005406, 27.635373458940421 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1236, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "BrCfl+MC+2s+Res", "fptarea": 64, "repvalue": 256000, "xcoord": 85.307658835754381, "ycoord": 27.636113890270536 }, "geometry": { "type": "Point", "coordinates": [ 85.307658835754381, 27.636113890270536 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1237, "nhouse": 2, "residents": 5, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 57, "repvalue": 228000, "xcoord": 85.306259389202296, "ycoord": 27.635015595909501 }, "geometry": { "type": "Point", "coordinates": [ 85.306259389202296, 27.635015595909501 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1238, "nhouse": 4, "residents": 15, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 52, "repvalue": 416000, "xcoord": 85.306033637430417, "ycoord": 27.629967206900744 }, "geometry": { "type": "Point", "coordinates": [ 85.306033637430417, 27.629967206900744 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1239, "nhouse": 2, "residents": 9, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 66, "repvalue": 264000, "xcoord": 85.306622473367042, "ycoord": 27.631145706285508 }, "geometry": { "type": "Point", "coordinates": [ 85.306622473367042, 27.631145706285508 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1240, "nhouse": 7, "residents": 25, "specialfac": 0, "expstr": "BrCfl+LC+4s+Res", "fptarea": 85, "repvalue": 680000, "xcoord": 85.307051937780017, "ycoord": 27.636106481435274 }, "geometry": { "type": "Point", "coordinates": [ 85.307051937780017, 27.636106481435274 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1241, "nhouse": 5, "residents": 23, "specialfac": 0, "expstr": "BrCfl+LC+3s+Res", "fptarea": 74, "repvalue": 444000, "xcoord": 85.307076898057289, "ycoord": 27.634484976265274 }, "geometry": { "type": "Point", "coordinates": [ 85.307076898057289, 27.634484976265274 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1242, "nhouse": 2, "residents": 9, "specialfac": 0, "expstr": "BrM+LC+2s+Res", "fptarea": 71, "repvalue": 284000, "xcoord": 85.306779001063859, "ycoord": 27.634120936626374 }, "geometry": { "type": "Point", "coordinates": [ 85.306779001063859, 27.634120936626374 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1243, "nhouse": 4, "residents": 17, "specialfac": 0, "expstr": "BrCfl+MC+3s+Res", "fptarea": 69, "repvalue": 414000, "xcoord": 85.307532779165925, "ycoord": 27.631156819532123 }, "geometry": { "type": "Point", "coordinates": [ 85.307532779165925, 27.631156819532123 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1244, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrM+LC+1s+Res", "fptarea": 51, "repvalue": 102000, "xcoord": 85.306770679868023, "ycoord": 27.634661438339123 }, "geometry": { "type": "Point", "coordinates": [ 85.306770679868023, 27.634661438339123 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1245, "nhouse": 5, "residents": 11, "specialfac": 0, "expstr": "BrM+LC+3s+Res", "fptarea": 77, "repvalue": 462000, "xcoord": 85.307477331814397, "ycoord": 27.634760166390908 }, "geometry": { "type": "Point", "coordinates": [ 85.307477331814397, 27.634760166390908 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1246, "nhouse": 6, "residents": 22, "specialfac": 0, "expstr": "BrM+LC+4s+Res", "fptarea": 68, "repvalue": 544000, "xcoord": 85.305875608972286, "ycoord": 27.633659399422751 }, "geometry": { "type": "Point", "coordinates": [ 85.305875608972286, 27.633659399422751 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1247, "nhouse": 5, "residents": 19, "specialfac": 0, "expstr": "BrCfl+MC+3s+Res", "fptarea": 82, "repvalue": 492000, "xcoord": 85.307334647576226, "ycoord": 27.630884099371858 }, "geometry": { "type": "Point", "coordinates": [ 85.307334647576226, 27.630884099371858 ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "bldid": 1248, "nhouse": 1, "residents": 4, "specialfac": 0, "expstr": "BrCfl+LC+2s+Res", "fptarea": 45, "repvalue": 180000, "xcoord": 85.305669151119034, "ycoord": 27.633927178431374 }, "geometry": { "type": "Point", "coordinates": [ 85.305669151119034, 27.633927178431374 ] } }, +{ "type": "Feature", "properties": { "zoneid": 14, "bldid": 1557, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 96, "repvalue": 1344000, "xcoord": 85.322658695407597, "ycoord": 27.627316097538269 }, "geometry": { "type": "Point", "coordinates": [ 85.322658695407597, 27.627316097538269 ] } }, +{ "type": "Feature", "properties": { "zoneid": 14, "bldid": 1561, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+7s+Com", "fptarea": 117, "repvalue": 1638000, "xcoord": 85.324623467888657, "ycoord": 27.629452337417352 }, "geometry": { "type": "Point", "coordinates": [ 85.324623467888657, 27.629452337417352 ] } }, +{ "type": "Feature", "properties": { "zoneid": 14, "bldid": 1568, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+6s+Com", "fptarea": 125, "repvalue": 1500000, "xcoord": 85.324874782765221, "ycoord": 27.629344189663708 }, "geometry": { "type": "Point", "coordinates": [ 85.324874782765221, 27.629344189663708 ] } }, +{ "type": "Feature", "properties": { "zoneid": 14, "bldid": 1572, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+MC+9s+Com", "fptarea": 134, "repvalue": 2412000, "xcoord": 85.321911540061876, "ycoord": 27.627195875260878 }, "geometry": { "type": "Point", "coordinates": [ 85.321911540061876, 27.627195875260878 ] } }, +{ "type": "Feature", "properties": { "zoneid": 14, "bldid": 1575, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+9s+Com", "fptarea": 104, "repvalue": 1872000, "xcoord": 85.320400263876522, "ycoord": 27.62806704913006 }, "geometry": { "type": "Point", "coordinates": [ 85.320400263876522, 27.62806704913006 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1249, "nhouse": 2, "residents": 6, "specialfac": 0, "expstr": "RCi+HC+1s+Res", "fptarea": 102, "repvalue": 204000, "xcoord": 85.316574749313716, "ycoord": 27.62430586430601 }, "geometry": { "type": "Point", "coordinates": [ 85.316574749313716, 27.62430586430601 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1250, "nhouse": 17, "residents": 64, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 77, "repvalue": 1848000, "xcoord": 85.317051606907953, "ycoord": 27.623892547743441 }, "geometry": { "type": "Point", "coordinates": [ 85.317051606907953, 27.623892547743441 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1251, "nhouse": 4, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 84, "repvalue": 504000, "xcoord": 85.317314063510736, "ycoord": 27.622114541026971 }, "geometry": { "type": "Point", "coordinates": [ 85.317314063510736, 27.622114541026971 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1252, "nhouse": 4, "residents": 16, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 88, "repvalue": 528000, "xcoord": 85.316474767950865, "ycoord": 27.623152115661906 }, "geometry": { "type": "Point", "coordinates": [ 85.316474767950865, 27.623152115661906 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1253, "nhouse": 11, "residents": 43, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 101, "repvalue": 1212000, "xcoord": 85.315640267104726, "ycoord": 27.623875415132865 }, "geometry": { "type": "Point", "coordinates": [ 85.315640267104726, 27.623875415132865 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1254, "nhouse": 4, "residents": 12, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 97, "repvalue": 388000, "xcoord": 85.315988292132985, "ycoord": 27.624193968917158 }, "geometry": { "type": "Point", "coordinates": [ 85.315988292132985, 27.624193968917158 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1255, "nhouse": 20, "residents": 91, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 72, "repvalue": 2160000, "xcoord": 85.317310859736764, "ycoord": 27.622324054082188 }, "geometry": { "type": "Point", "coordinates": [ 85.317310859736764, 27.622324054082188 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1256, "nhouse": 13, "residents": 50, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 60, "repvalue": 1320000, "xcoord": 85.315290640184614, "ycoord": 27.623661616948286 }, "geometry": { "type": "Point", "coordinates": [ 85.315290640184614, 27.623661616948286 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1257, "nhouse": 24, "residents": 108, "specialfac": 0, "expstr": "RCi+HC+14s+Res", "fptarea": 97, "repvalue": 2716000, "xcoord": 85.316136362759991, "ycoord": 27.622205024380882 }, "geometry": { "type": "Point", "coordinates": [ 85.316136362759991, 27.622205024380882 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1258, "nhouse": 2, "residents": 7, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 75, "repvalue": 300000, "xcoord": 85.314960264757119, "ycoord": 27.622190741243347 }, "geometry": { "type": "Point", "coordinates": [ 85.314960264757119, 27.622190741243347 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1259, "nhouse": 5, "residents": 19, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 92, "repvalue": 552000, "xcoord": 85.317665291457132, "ycoord": 27.622223577564981 }, "geometry": { "type": "Point", "coordinates": [ 85.317665291457132, 27.622223577564981 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1260, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 103, "repvalue": 412000, "xcoord": 85.315746654140369, "ycoord": 27.624610138288411 }, "geometry": { "type": "Point", "coordinates": [ 85.315746654140369, 27.624610138288411 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1261, "nhouse": 9, "residents": 46, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 99, "repvalue": 990000, "xcoord": 85.315759482182372, "ycoord": 27.623772086978885 }, "geometry": { "type": "Point", "coordinates": [ 85.315759482182372, 27.623772086978885 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1262, "nhouse": 6, "residents": 28, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 57, "repvalue": 684000, "xcoord": 85.316718002232108, "ycoord": 27.622631188184148 }, "geometry": { "type": "Point", "coordinates": [ 85.316718002232108, 27.622631188184148 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1263, "nhouse": 2, "residents": 9, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 70, "repvalue": 280000, "xcoord": 85.317061220246373, "ycoord": 27.623264008783771 }, "geometry": { "type": "Point", "coordinates": [ 85.317061220246373, 27.623264008783771 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1264, "nhouse": 4, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 82, "repvalue": 492000, "xcoord": 85.317781299973461, "ycoord": 27.622329760587636 }, "geometry": { "type": "Point", "coordinates": [ 85.317781299973461, 27.622329760587636 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1265, "nhouse": 3, "residents": 15, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 84, "repvalue": 336000, "xcoord": 85.315166612686241, "ycoord": 27.62407921384505 }, "geometry": { "type": "Point", "coordinates": [ 85.315166612686241, 27.62407921384505 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1266, "nhouse": 4, "residents": 17, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 107, "repvalue": 428000, "xcoord": 85.317660486763771, "ycoord": 27.622537847197187 }, "geometry": { "type": "Point", "coordinates": [ 85.317660486763771, 27.622537847197187 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1267, "nhouse": 36, "residents": 131, "specialfac": 0, "expstr": "RCi+HC+19s+Res", "fptarea": 106, "repvalue": 4028000, "xcoord": 85.316476370694232, "ycoord": 27.623047359192736 }, "geometry": { "type": "Point", "coordinates": [ 85.316476370694232, 27.623047359192736 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1268, "nhouse": 14, "residents": 52, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 107, "repvalue": 1498000, "xcoord": 85.316341128051462, "ycoord": 27.624198252575102 }, "geometry": { "type": "Point", "coordinates": [ 85.316341128051462, 27.624198252575102 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1269, "nhouse": 7, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 54, "repvalue": 756000, "xcoord": 85.316447519990362, "ycoord": 27.624932975382475 }, "geometry": { "type": "Point", "coordinates": [ 85.316447519990362, 27.624932975382475 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1270, "nhouse": 11, "residents": 48, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 91, "repvalue": 1274000, "xcoord": 85.315654699074372, "ycoord": 27.622932607353981 }, "geometry": { "type": "Point", "coordinates": [ 85.315654699074372, 27.622932607353981 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1271, "nhouse": 17, "residents": 67, "specialfac": 0, "expstr": "RCi+HC+11s+Res", "fptarea": 82, "repvalue": 1804000, "xcoord": 85.315665923454986, "ycoord": 27.622199312321428 }, "geometry": { "type": "Point", "coordinates": [ 85.315665923454986, 27.622199312321428 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1272, "nhouse": 18, "residents": 78, "specialfac": 0, "expstr": "RCi+HC+12s+Res", "fptarea": 84, "repvalue": 2016000, "xcoord": 85.315406647735813, "ycoord": 27.6237678019023 }, "geometry": { "type": "Point", "coordinates": [ 85.315406647735813, 27.6237678019023 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1273, "nhouse": 15, "residents": 62, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 80, "repvalue": 1600000, "xcoord": 85.31598668884709, "ycoord": 27.624298725342666 }, "geometry": { "type": "Point", "coordinates": [ 85.31598668884709, 27.624298725342666 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1274, "nhouse": 5, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 91, "repvalue": 546000, "xcoord": 85.317412451512723, "ycoord": 27.623373046097203 }, "geometry": { "type": "Point", "coordinates": [ 85.317412451512723, 27.623373046097203 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1275, "nhouse": 5, "residents": 23, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 91, "repvalue": 546000, "xcoord": 85.315546710081563, "ycoord": 27.622302640489387 }, "geometry": { "type": "Point", "coordinates": [ 85.315546710081563, 27.622302640489387 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1276, "nhouse": 9, "residents": 32, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 75, "repvalue": 1050000, "xcoord": 85.317312461628077, "ycoord": 27.622219297555407 }, "geometry": { "type": "Point", "coordinates": [ 85.317312461628077, 27.622219297555407 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1277, "nhouse": 12, "residents": 52, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 93, "repvalue": 1302000, "xcoord": 85.316959631876841, "ycoord": 27.622215016649168 }, "geometry": { "type": "Point", "coordinates": [ 85.316959631876841, 27.622215016649168 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1278, "nhouse": 8, "residents": 22, "specialfac": 0, "expstr": "RCi+HC+6s+Res", "fptarea": 75, "repvalue": 900000, "xcoord": 85.315055417504524, "ycoord": 27.623658759545766 }, "geometry": { "type": "Point", "coordinates": [ 85.315055417504524, 27.623658759545766 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1279, "nhouse": 5, "residents": 20, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 94, "repvalue": 564000, "xcoord": 85.315872283566549, "ycoord": 27.624087784411046 }, "geometry": { "type": "Point", "coordinates": [ 85.315872283566549, 27.624087784411046 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1280, "nhouse": 21, "residents": 94, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 87, "repvalue": 2262000, "xcoord": 85.315058625753281, "ycoord": 27.623449246774314 }, "geometry": { "type": "Point", "coordinates": [ 85.315058625753281, 27.623449246774314 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1281, "nhouse": 7, "residents": 22, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 56, "repvalue": 784000, "xcoord": 85.316585968218689, "ycoord": 27.623572569071001 }, "geometry": { "type": "Point", "coordinates": [ 85.316585968218689, 27.623572569071001 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1282, "nhouse": 16, "residents": 69, "specialfac": 0, "expstr": "RCi+HC+13s+Res", "fptarea": 66, "repvalue": 1716000, "xcoord": 85.315524259209354, "ycoord": 27.6237692303608 }, "geometry": { "type": "Point", "coordinates": [ 85.315524259209354, 27.6237692303608 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1283, "nhouse": 18, "residents": 85, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 99, "repvalue": 1980000, "xcoord": 85.316689156177404, "ycoord": 27.62451680472169 }, "geometry": { "type": "Point", "coordinates": [ 85.316689156177404, 27.62451680472169 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1284, "nhouse": 4, "residents": 14, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 62, "repvalue": 496000, "xcoord": 85.31719004566699, "ycoord": 27.622532140242651 }, "geometry": { "type": "Point", "coordinates": [ 85.31719004566699, 27.622532140242651 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1285, "nhouse": 7, "residents": 26, "specialfac": 0, "expstr": "RCi+HC+4s+Res", "fptarea": 105, "repvalue": 840000, "xcoord": 85.317668494542801, "ycoord": 27.622014064468502 }, "geometry": { "type": "Point", "coordinates": [ 85.317668494542801, 27.622014064468502 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1286, "nhouse": 33, "residents": 125, "specialfac": 0, "expstr": "RCi+HC+18s+Res", "fptarea": 99, "repvalue": 3564000, "xcoord": 85.315061833967391, "ycoord": 27.623239733996179 }, "geometry": { "type": "Point", "coordinates": [ 85.315061833967391, 27.623239733996179 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1287, "nhouse": 7, "residents": 37, "specialfac": 0, "expstr": "RCi+HC+5s+Res", "fptarea": 88, "repvalue": 880000, "xcoord": 85.315756275223791, "ycoord": 27.623981599816283 }, "geometry": { "type": "Point", "coordinates": [ 85.315756275223791, 27.623981599816283 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1288, "nhouse": 16, "residents": 64, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 91, "repvalue": 1820000, "xcoord": 85.318019722575642, "ycoord": 27.622123100111509 }, "geometry": { "type": "Point", "coordinates": [ 85.318019722575642, 27.622123100111509 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1289, "nhouse": 10, "residents": 33, "specialfac": 0, "expstr": "RCi+HC+7s+Res", "fptarea": 83, "repvalue": 1162000, "xcoord": 85.316361965618768, "ycoord": 27.622836418644923 }, "geometry": { "type": "Point", "coordinates": [ 85.316361965618768, 27.622836418644923 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1290, "nhouse": 16, "residents": 70, "specialfac": 0, "expstr": "RCi+HC+15s+Res", "fptarea": 58, "repvalue": 1740000, "xcoord": 85.314958660629145, "ycoord": 27.622295497643599 }, "geometry": { "type": "Point", "coordinates": [ 85.314958660629145, 27.622295497643599 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1291, "nhouse": 8, "residents": 34, "specialfac": 0, "expstr": "RCi+HC+8s+Res", "fptarea": 55, "repvalue": 880000, "xcoord": 85.316958029650024, "ycoord": 27.622319773156974 }, "geometry": { "type": "Point", "coordinates": [ 85.316958029650024, 27.622319773156974 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1292, "nhouse": 4, "residents": 14, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 69, "repvalue": 414000, "xcoord": 85.315859456211598, "ycoord": 27.624925835731148 }, "geometry": { "type": "Point", "coordinates": [ 85.315859456211598, 27.624925835731148 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1293, "nhouse": 3, "residents": 10, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 89, "repvalue": 356000, "xcoord": 85.316457137203088, "ycoord": 27.62430443671262 }, "geometry": { "type": "Point", "coordinates": [ 85.316457137203088, 27.62430443671262 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1294, "nhouse": 5, "residents": 18, "specialfac": 0, "expstr": "RCi+HC+3s+Res", "fptarea": 97, "repvalue": 582000, "xcoord": 85.317426867994854, "ycoord": 27.62243023738942 }, "geometry": { "type": "Point", "coordinates": [ 85.317426867994854, 27.62243023738942 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1295, "nhouse": 10, "residents": 42, "specialfac": 0, "expstr": "RCi+HC+10s+Res", "fptarea": 58, "repvalue": 1160000, "xcoord": 85.316237943240424, "ycoord": 27.623254016770204 }, "geometry": { "type": "Point", "coordinates": [ 85.316237943240424, 27.623254016770204 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1296, "nhouse": 3, "residents": 11, "specialfac": 0, "expstr": "RCi+HC+2s+Res", "fptarea": 101, "repvalue": 404000, "xcoord": 85.315894730105015, "ycoord": 27.622621194343928 }, "geometry": { "type": "Point", "coordinates": [ 85.315894730105015, 27.622621194343928 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1297, "nhouse": 12, "residents": 51, "specialfac": 0, "expstr": "RCi+HC+17s+Res", "fptarea": 98, "repvalue": 3332000, "xcoord": 85.316827600617913, "ycoord": 27.623156397934462 }, "geometry": { "type": "Point", "coordinates": [ 85.316827600617913, 27.623156397934462 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1569, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+LC+10s+Com", "fptarea": 111, "repvalue": 2220000, "xcoord": 85.316940404584344, "ycoord": 27.62347209463276 }, "geometry": { "type": "Point", "coordinates": [ 85.316940404584344, 27.62347209463276 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1571, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "BrCri+LC+6s+Com", "fptarea": 119, "repvalue": 1428000, "xcoord": 85.316226722168423, "ycoord": 27.623987311907424 }, "geometry": { "type": "Point", "coordinates": [ 85.316226722168423, 27.623987311907424 ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "bldid": 1573, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+6s+Com", "fptarea": 114, "repvalue": 1368000, "xcoord": 85.31645072576255, "ycoord": 27.624723462499198 }, "geometry": { "type": "Point", "coordinates": [ 85.31645072576255, 27.624723462499198 ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "bldid": 1580, "nhouse": 0, "residents": 0, "specialfac": 0, "expstr": "RCi+MC+5s+Com", "fptarea": 116, "repvalue": 1160000, "xcoord": 85.31979859215626, "ycoord": 27.633667961995645 }, "geometry": { "type": "Point", "coordinates": [ 85.31979859215626, 27.633667961995645 ] } } +] +} diff --git a/demo2/.DS_Store b/demo2/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..396bc31cc2ff9ce8b0952ed10ceeb7c16ed6c300 Binary files /dev/null and b/demo2/.DS_Store differ diff --git a/demo2/__init__.py b/demo2/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..71d08c639940df474075b16e8ba5d4c893be40f9 --- /dev/null +++ b/demo2/__init__.py @@ -0,0 +1,3 @@ +"""Example Solara app as python packages""" +__title__ = "Solara example app" +__version__ = "0.0.1" \ No newline at end of file diff --git a/demo2/__pycache__/__init__.cpython-310.pyc b/demo2/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8668ca076386d17481641774cc6bf3500472911a Binary files /dev/null and b/demo2/__pycache__/__init__.cpython-310.pyc differ diff --git a/demo2/__pycache__/__init__.cpython-312.pyc b/demo2/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1ee51589a344761b374bc78240b6d10617690ddb Binary files /dev/null and b/demo2/__pycache__/__init__.cpython-312.pyc differ diff --git a/demo2/assets/custom.css b/demo2/assets/custom.css new file mode 100644 index 0000000000000000000000000000000000000000..db1b336382e88a3b9c37a467e93dac991ec1aa49 --- /dev/null +++ b/demo2/assets/custom.css @@ -0,0 +1,18 @@ +header { + background-image: url('/static/public/tomorrows-cities-logo-header.png'); /* Replace 'your-image.jpg' with the path to your image file */ + background-position: center; /* Center the background image */ + background-repeat: no-repeat; /* Prevent image from repeating */ + height: 200px; /* Set a specific height for the header */ +} + +.v-application--wrap > div:nth-child(2) > div:nth-child(2){ + display: none !important; +} + +.theme--light.v-sheet { + background-color: #EBEBEB; +} + +.v-navigation-drawer__content { + background-color: #EBEBEB; +} \ No newline at end of file diff --git a/demo2/pages/.DS_Store b/demo2/pages/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..025776c68f4ce29737cb69556ae4f51f4f439cdf Binary files /dev/null and b/demo2/pages/.DS_Store differ diff --git a/demo2/pages/__init__.py b/demo2/pages/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..64c5db6648b793341f16214834ca9133cbaa274d --- /dev/null +++ b/demo2/pages/__init__.py @@ -0,0 +1,702 @@ +#%% +css = """ + +@font-face { + font-family: 'Open Sans'; + font-style: normal; + font-weight: 400; + font-stretch: 100%; + font-display: swap; + src: url('/static/public/open-sans.regular.ttf') format('truetype'); +} + +@font-face { + font-family: 'Museo 900'; + src: url('/static/public/Museo900-Regular.woff2') format('woff2'), + url('/static/public/Museo900-Regular.woff') format('woff'); + font-weight: 900; + font-style: normal; + font-display: swap; +} + + +@font-face { + font-family: 'Museo 700'; + src: url('/static/public/Museo700-Regular.woff2') format('woff2') +} + + +.v-application { + font-family: 'Open Sans' +} + +.v-card__title { + padding: 2px; + font-family: 'Museo 900' +} + +.v-application .ma-2 { + margin: 2px!important; +} + +.leaflet-control-attribution { + display: none; +} +.v-btn__content { + font-size: 12px; +} + +.v-input__control { + height: 24px +} + +.jupyter-widgets.leaflet-widgets { + height: 280px; + overflow: hidden; +} + +.col { + overflow: hidden; +} + +.v-card__title { + font-size: 20px; + text-color: "orange"; +} + +label.v-label.theme--dark { + font-size: 14px; + line-height: 100%; +} + +.metricdesc { + font-size: 15px; + margin-top: -30px; + text-align: center; +} +.infobox { + font-size: 14px; + line-height: 110%; +} + +.infoitem { + font-size: 12px; + line-height: 110%; +} + +.maintitle { + font-family: 'Museo 900'; + font-size: 30px; + text-align: center; +} + +""" + +import solara +import pandas as pd +import geopandas as gpd +import ipyleaflet +from random import uniform +import random +import numpy as np +import json +import matplotlib.pyplot as plt +from .engine import run_engine + +languages = ["EN","TR"] +lang = solara.reactive("EN") + +lbl_land_use_btn = [{'EN': 'civil societies', + 'TR': 'sivil toplum'}, + {'EN': 'women', + 'TR': 'kadınlar'}, + {'EN': 'youth', + 'TR': 'gençler'},] +lbl_maintitle = {'EN': 'Tomorrow\'s Cities Decision Making Simulation','TR': 'Yarının Şehirleri için Karar Verme Simülasyonu'} +lbl_earthquake= {'EN': 'Earthquake', 'TR': 'Deprem'} +lbl_flood = {'EN': 'Flood', 'TR': 'Sel'} +lbl_debris = {'EN': 'Landslide', 'TR': 'Heyelan'} +lbl_reset = {'EN': 'Reset Simulation', 'TR': 'Simülasyonu Sıfırla'} +lbl_language = {'EN': 'Language', 'TR': 'Dil'} +lbl_luf_res_high = {'EN': 'Residential (High Density)', 'TR': 'Yerlesim Alani (Yuksek Yogunluk)'} +lbl_tv0_map_title = {'EN': '1. Today\'s land use', 'TR': '1. Mevcut plan'} +lbl_density_map_title = {'EN': '2. Select the potential hazard', 'TR': '2. Olası tehlikeyi seçin'} +lbl_policy_card_title = {'EN': '4. Select three policies to make your city resillient', 'TR': '4. Şehrinizi dayanıklı hale getirmek için üç politika seçin'} +lbl_too_many_policy_selected_error = {'EN': 'You cannot select more than three policies', + 'TR': 'Üçten fazla politika seçemezsiniz'} +lbl_infobox = {'EN': f''' + Our decisions directly influence our future. It is critical for a + resilient city life where the decisions at the city scale reduces the disaster risk in the future. + In this simulation, we calculate possible disaster impacts calculated with Tomorrow's Cities Decision + Support System (TCDSE). The simulation shows how earthquake and flood hazards that may occur + in an urban environment affect different urban scenarios. To use the simulation 1) Check land use 2) Select the + possible hazard 3) Select the possible city scenarios for the future 4) choose policies 5) Run and check the metrics. + ''', + "TR": f''' + Aldığımız kararlar, geleceğimizi doğrudan etkilemektedir. Kent ölçeğinde alınan kararların, gelecekte afet riskini azaltacak + nitelikte olması dayanıklı bir şehir hayatı için önemlidir. + Bu simülasyonda, Yarının Şehirleri Karar Destek Sistemi (TCDSE) ile hesaplanan olası afet etkilerini hesaplıyoruz. Simülasyon, + bir kent ortamında meydana gelebilecek deprem ve sel tehlikelerinin, farklı kent senaryolarını nasıl etkilediğini gösteriyor. + Simülasyonu kullanmak için 1) Mevcut planı inceleyin 2) Olası tehlikeyi seçin 3) Geleceğe dair olası şehir senaryolarını seçin + 4) Politikaları seçin 5) Çalıştırın ve metrikleri inceleyin.'''} +lbl_infobox_title = {'EN': '', 'TR': ''} +lbl_landuse_plans_title = {'EN': '3. Future land uses', 'TR': '3. Geleceğin alternatif yerleşim planlarından birini seçin'} +lbl_run_btn = {'EN': 'RUN', 'TR': 'ÇALIŞTIR'} +lbl_results_card_title = {'EN': '5. Impact metrics', 'TR': '5. Etki metrikleri'} +lbl_info1 = {'EN': 'Number of individuals
39058', 'TR': 'Kişi Sayısı
39058'} +lbl_info2 = {'EN': 'Number of households
10397', 'TR': 'Hane Sayısı
10397'} +lbl_info3 = {'EN': 'Number of buildings
4810', 'TR': 'Bina Sayısı
4810'} +lbl_info4 = {'EN': 'Number of schools
4', 'TR': 'Okul Sayısı
4'} +lbl_info5 = {'EN': 'Number of hospitals
1', 'TR': 'Hastane Sayısı
1'} +#lbl_info6 = {'EN': 'Number of green field
', 'TR': 'Yeşil Alan Sayısı
'} + +hazard_types = ["earthquake", "flood", "debris"] +hazard_type_default = hazard_types[0] +hazard_type = solara.reactive("earthquake") + +flood_df = gpd.read_file('hazard_flood.geojson') +debris_df = gpd.read_file('hazard_debris.geojson') +earthquake_df = gpd.read_file('hazard_earthquake.geojson') + +earthquake_df_as_geo = gpd.read_file('hazard_earthquake.geojson') +print('bir',earthquake_df_as_geo.crs) +earthquake_df_as_geo = earthquake_df_as_geo.set_crs("EPSG:4326",allow_override=True) +print('iki',earthquake_df_as_geo.crs) +earthquake_df_as_geo = earthquake_df_as_geo.to_crs(32645) +print('uc',earthquake_df_as_geo.crs) + +debris_df_as_geo = gpd.read_file('hazard_debris.geojson') +debris_df_as_geo = debris_df_as_geo.set_crs("EPSG:4326",allow_override=True) +debris_df_as_geo = debris_df_as_geo.to_crs("EPSG:32645") + +flood_df_as_geo = gpd.read_file('hazard_flood.geojson') +flood_df_as_geo = flood_df_as_geo.set_crs("EPSG:4326",allow_override=True) +flood_df_as_geo = flood_df_as_geo.to_crs("EPSG:32645") + +landuse_tv0_df = gpd.read_file('landuse_tv0.geojson') +landuse_tv50_1_df = gpd.read_file('landuse_tv50_1.geojson') +landuse_tv50_2_df = gpd.read_file('landuse_tv50_2.geojson') +landuse_tv50_3_df = gpd.read_file('landuse_tv50_3.geojson') +n_landuses = 3 + +luf_types = pd.unique(landuse_tv0_df['luf']) + +luf_colors = dict() +for luf_label in luf_types: + if luf_label == 'Agricultural Areas': + luf_colors[luf_label] = { + 'color': 'black', + 'fillColor': '#ffe665', + } + elif luf_label == 'Urban Green': + luf_colors[luf_label] = { + 'color': 'black', + 'fillColor': '#abdda4', + } + elif luf_label == 'Public Service Areas': + luf_colors[luf_label] = { + 'color': 'black', + 'fillColor': '#2b83ba', + } + elif luf_label == 'Commercial Areas': + luf_colors[luf_label] = { + 'color': 'black', + 'fillColor': '#d42c45', + } + elif luf_label == 'Industrial Areas': + luf_colors[luf_label] = { + 'color': 'black', + 'fillColor': '#936ede', + } + elif luf_label == 'Residential Areas with Low Density': + luf_colors[luf_label] = { + 'color': 'black', + 'fillColor': '#be8750', + } + elif luf_label == 'Residential Areas with Moderate Density': + luf_colors[luf_label] = { + 'color': 'black', + 'fillColor': '#a97d51', + } + elif luf_label == 'Residential Areas with High Density': + luf_colors[luf_label] = { + 'color': 'black', + 'fillColor': '#8c541a', + } + else: + luf_colors[luf_label] = { + 'color': 'black', + 'fillColor': random.choice(['red', 'yellow', 'green', 'orange','blue']), + } + +# +plt.switch_backend("agg") +plt.rcParams['axes.facecolor'] = '#1e1e1e' +plt.rcParams['axes.edgecolor'] = '#1e1e1e' +#plt.switch_backend('macosx') +#%matplotlib inline +# for j in range(1, n_landuses+1): + # df = eval(f'landuse_tv50_{j}_df') + # title = f'tv50_{j}' + # for i, row in df.iterrows(): + # df.loc[i, 'color'] = luf_colors[row['luf']]['fillColor'] + # fig, ax = plt.subplots(nrows=1, ncols=1,figsize=(4*1.3, 5*1.3)) + # fig.set_tight_layout(True) + # fig.patch.set_facecolor('white') + # #fig.patch.set_alpha(0.7) + # df.plot(color=df['color'],ax=ax) + # #ax.set_title(f'{title}') + # ax.set_xticks([]) + # ax.set_yticks([]) + # plt.savefig(f'landuse_{title}_selected.png') + + # fig, ax = plt.subplots(nrows=1, ncols=1,figsize=(4*1.3,5*1.3)) + # fig.set_tight_layout(True) + # #fig.patch.set_facecolor('black') + # fig.patch.set_alpha(0.0) + # df.plot(color=df['color'],ax=ax) + # #ax.set_title(f'{title}') + # ax.set_xticks([]) + # ax.set_yticks([]) + # plt.savefig(f'landuse_{title}.png') + +landuse_tv0_json = json.loads(landuse_tv0_df.to_json()) +luf_filtered_data = solara.reactive(landuse_tv0_json) + +luf_selected = solara.reactive(luf_types) +luf_type_selected = dict() +for luf_type in luf_types: + luf_type_selected[luf_type] = solara.reactive(True) + +lbl_luf = dict() +for luf_label in luf_types: + if luf_label == 'Agricultural Areas': + lbl_luf[luf_label] = {'EN': 'Agricultural Areas', 'TR': 'Tarım Alanları'} + elif luf_label == 'Urban Green': + lbl_luf[luf_label] = {'EN': 'Urban Green & Recreation Areas', 'TR': 'Kentsel Yeşil/Rekreasyon Alanları'} + elif luf_label == 'Public Service Areas': + lbl_luf[luf_label] = {'EN': 'Public Service Areas', 'TR': 'Kamu Hizmet Alanları'} + elif luf_label == 'Commercial Areas': + lbl_luf[luf_label] = {'EN': 'Commercial & Mixed Use Areas', 'TR': 'Ticari/Karışık Kullanım Alanları'} + elif luf_label == 'Industrial Areas': + lbl_luf[luf_label] = {'EN': 'Industrial Areas', 'TR': 'Sanayi Alanları'} + elif luf_label == 'Residential Areas with Low Density': + lbl_luf[luf_label] = {'EN': 'Residential Areas with Low Density', 'TR': 'Düşük Yoğunluklu Konut Alanı'} + elif luf_label == 'Residential Areas with Moderate Density': + lbl_luf[luf_label] = {'EN': 'Residential Areas with Moderate Density', 'TR': 'Orta Yoğunluklu Konut Alanı'} + elif luf_label == 'Residential Areas with High Density': + lbl_luf[luf_label] = {'EN': 'Residential Areas with High Density', 'TR': 'Yüksek Yoğunluklu Konut Alanı'} + else: + lbl_luf[luf_label] = {'EN': luf_label, 'TR': '(TR)'+luf_label} + +policies = [1,2,3,4,5,6] +lbl_policy = dict() +lbl_policy[1] = {'EN': 'Loans for reconstruction for minor to moderate damages', + 'TR': 'Küçük ila orta dereceli hasarlar için yeniden yapılanma kredileri'} +lbl_policy[2] = {'EN': 'Knowledge sharing about disaster risk reduction in schools', + 'TR': 'Devlet ve özel okullarda afet risklerinin azaltılması hakkında bilgi paylaşımı'} +lbl_policy[3] = {'EN': 'Catastrophe bond for education/health facilities', + 'TR': 'Eğitim ve sağlık tesislerini yapılandırmak için afet bonosu'} +lbl_policy[4] = {'EN': 'Repair loan assistance for flooding', + 'TR': 'Sel için onarım kredisi yardımı'} +lbl_policy[5] = {'EN': 'Technical assistance for debris removal in education facilities', + 'TR': 'Eğitim tesislerinde enkaz kaldırma için teknik yardım'} +lbl_policy[6] = {'EN': 'Compulsory content insurance for schools and hospitals', + 'TR': 'Okullar ve hastaneler için zorunlu eşya sigortası'} +#lbl_policy[7] = {'EN': 'Green resilient infrastructure (prevention) & financial support for business recovery', 'TR': 'Politika 7'} +#lbl_policy[8] = {'EN': 'Green resilient infrastructure (prevention), reinforcement of schools, hospitals & shelters, financial support for affected business & household', 'TR': 'Politika 8'} +policy_selected = dict() +for policy in policies: + policy_selected[policy] = solara.reactive(False) +last_selected_policies = solara.reactive(set()) + +earthquake_locs = np.array([earthquake_df.geometry.y.to_list(), earthquake_df.geometry.x.to_list(), earthquake_df.im.to_list()]).transpose().tolist() +flood_locs = np.array([flood_df.geometry.y.to_list(), flood_df.geometry.x.to_list(), flood_df.im.to_list()]).transpose().tolist() +debris_locs = np.array([debris_df.geometry.y.to_list(), debris_df.geometry.x.to_list(), debris_df.im.to_list()]).transpose().tolist() + +hazard_intensities = { + "earthquake": earthquake_locs, + "flood": flood_locs, + "debris": debris_locs +} + +hazard_df = { + "earthquake": earthquake_df, + "flood": flood_df, + "debris": debris_df +} + +hazard_df_as_geo = { + "earthquake": earthquake_df_as_geo, + "flood": flood_df_as_geo, + "debris": debris_df_as_geo +} + +zoom_default = 12 +tv0_zoom = solara.reactive(zoom_default) + +tv0_center_default = (32.215, 35.21) +tv0_center = solara.reactive(tv0_center_default) +print(tv0_center) +def random_color(feature): + return luf_colors[feature['properties']['luf']] + +@solara.component +def TV0MAP(): + selected_lufs = set() + for luf_type in luf_types: + if luf_type_selected[luf_type].value: + selected_lufs.add(luf_type) + x = {'type':landuse_tv0_json['type'] } + x['features'] = [] + for f in landuse_tv0_json['features']: + if f['properties']['luf'] in selected_lufs: + x['features'].append(f) + ipyleaflet.Map.element( + zoom=tv0_zoom.value, + on_zoom=tv0_zoom.set, + max_zoom=21, + min_zoom=1, + center=tv0_center.value, + on_center=tv0_center.set, + scroll_wheel_zoom=True, + dragging=True, + double_click_zoom=False, + touch_zoom=False, + box_zoom=False, + keyboard=True, + zoom_control=False, + layers=[ + ipyleaflet.basemap_to_tiles(ipyleaflet.basemaps.OpenStreetMap.Mapnik), #ipyleaflet.basemaps.Esri.WorldImagery + ipyleaflet.GeoJSON( + data=x, + style={ + 'opacity': 1, 'dashArray': '9', 'fillOpacity': 0.5, 'weight': 1 + }, + hover_style={ + 'color': 'white', 'dashArray': '0', 'fillOpacity': 0.5 + }, + style_callback=random_color) + ], + ) + +@solara.component +def DensityMap(hazard_type): + locs = hazard_intensities[hazard_type] + ipyleaflet.Map.element( + zoom=tv0_zoom.value, + max_zoom=zoom_default, + min_zoom=zoom_default, + on_zoom=tv0_zoom.set, + center=tv0_center.value, + on_center=tv0_center.set, + scroll_wheel_zoom=False, + dragging=False, + double_click_zoom=False, + touch_zoom=False, + box_zoom=False, + keyboard=False, + zoom_control=False, + layers=[ + ipyleaflet.basemap_to_tiles(ipyleaflet.basemaps.Esri.WorldTopoMap), + ipyleaflet.Heatmap( + name=hazard_type, + locations=locs, + radius=10 + ), + ], + ) + +run_is_allowed = solara.reactive(True) + +@solara.component +def PolicyValidation(): + npolicies_selected = 0 + selected_policies = set() + for p in policies: + if policy_selected[p].value: + selected_policies.add(p) + npolicies_selected += 1 + if npolicies_selected > 3: + print("roll-back") + solara.Warning(label=lbl_too_many_policy_selected_error[lang.value]) + run_is_allowed.value = False + # Roll-back to last selection + #for p in policies: + # if p in last_selected_policies.value: + # policy_selected[p].value = True + # else: + # policy_selected[p].value = False + else: + last_selected_policies.value = selected_policies + run_is_allowed.value = True + +landuseplan_selected = solara.reactive(1) + +lbl_metric1 = {"EN": "Number of workers unemployed", "TR": "İşini kaybedenlerin sayısı"} +lbl_metric2 = {"EN": "Number of children with no access to education", "TR": "Okula gidemeyen çocuk sayısı"} +lbl_metric3 = {"EN": "Number of households with no access to hospital", "TR": "Hastane erişimi olmayan hane sayısı"} +lbl_metric4 = {"EN": "Number of individuals with no access to hospital", "TR": "Hastane erişimi olmayan kişi sayısı"} +lbl_metric5 = {"EN": "Number of homeless households", "TR": "İşlevsiz kalan hane sayısı"} +lbl_metric6 = {"EN": "Number of homeless individuals", "TR": "Evsiz kalan sayısı"} +lbl_metric7 = {"EN": "Population displacement", "TR": "Yer değiştirmek zorunda kalan kişi sayısı"} + +metrics = {"metric1": {"desc": lbl_metric1, "value": solara.reactive(0), "max_value": solara.reactive(0)}, + "metric2": {"desc": lbl_metric2, "value": solara.reactive(0), "max_value": solara.reactive(0)}, + "metric3": {"desc": lbl_metric3, "value": solara.reactive(0), "max_value": solara.reactive(0)}, + "metric4": {"desc": lbl_metric4, "value": solara.reactive(0), "max_value": solara.reactive(0)}, + "metric5": {"desc": lbl_metric5, "value": solara.reactive(0), "max_value": solara.reactive(0)}, + "metric6": {"desc": lbl_metric6, "value": solara.reactive(0), "max_value": solara.reactive(0)}, + "metric7": {"desc": lbl_metric7, "value": solara.reactive(0), "max_value": solara.reactive(0)}} + +@solara.component +def MetricWidget(name, description, value, max_value=10000): + value, set_value = solara.use_state_or_update(value) + max_value, set_max_value = solara.use_state_or_update(max_value) + options = { + "series": [ { + "type": 'gauge', + "min": 0, + "name": description, + "max": max(1,max_value), # workaround when max_value = 0 + "startAngle": 180, + "endAngle": 0, + "progress": {"show": True, "width": 10, "itemStyle": {"color": 'red'}}, + "pointer": { "show": False}, + "axisLine": {"lineStyle": {"width": 10}}, + "axisTick": {"show": False}, + "splitLine": {"show": False}, + "axisLabel": {"show": False}, + "anchor": {"show": False}, + "title": {"show": False}, + "detail": { + "valueAnimation": True, + "offsetCenter": [0, '25%'], + "fontSize": 16, + "color": 'white'}, + #"title": {"fontSize": 12}, + "data": [{"value": value, "name": name}]}]} + print(f'value/max_value {value}:{max_value}') + + solara.FigureEcharts(option=options, attributes={ "style": "height: 100px; width: 100px" }) + +@solara.component +def MetricsPanel(metrics): + ''' + with solara.Columns([33,33,33]): + with solara.Column(align="center", gap="2px"): + for key in ["metric1","metric2"]: + MetricWidget(key, metrics[key]["desc"], metrics[key]["value"].value, + max_value=metrics[key]["max_value"].value) + solara.HTML(unsafe_innerHTML=metrics[key]["desc"][lang.value], classes=["metricdesc"]) + with solara.Column(align="center", gap="2px"): + for key in ["metric3","metric4"]: + MetricWidget(key, metrics[key]["desc"], metrics[key]["value"].value, + max_value=metrics[key]["max_value"].value) + solara.HTML(unsafe_innerHTML=metrics[key]["desc"][lang.value], classes=["metricdesc"]) + with solara.Column(align="center", gap="2px"): + for key in ["metric6","metric7"]: + MetricWidget(key, metrics[key]["desc"], metrics[key]["value"].value, + max_value=metrics[key]["max_value"].value) + solara.HTML(unsafe_innerHTML=metrics[key]["desc"][lang.value], classes=["metricdesc"]) + ''' + with solara.GridFixed(columns=3): + for key in ["metric2","metric4","metric7"]: + with solara.Row(justify="center"): + MetricWidget(key, metrics[key]["desc"], metrics[key]["value"].value, + max_value=metrics[key]["max_value"].value) + for key in ["metric2","metric4","metric7"]: + with solara.Row(justify="center"): + solara.HTML(unsafe_innerHTML=metrics[key]["desc"][lang.value], classes=["metricdesc"]) + # for key in ["metric4","metric6","metric7"]: + # with solara.Row(justify="center"): + # MetricWidget(key,metrics[key]["desc"], metrics[key]["value"].value, + # max_value=metrics[key]["max_value"].value) + # for key in ["metric4","metric6","metric7"]: + # with solara.Row(justify="center"): + # solara.HTML(unsafe_innerHTML=metrics[key]["desc"][lang.value], classes=["metricdesc"]) + + +def run_simulation(): + print("Running simulation") + print(f"Selected landuse plans: {landuseplan_selected.value}") + selected_policies = set() + for p in policies: + if policy_selected[p].value: + selected_policies.add(p) + print(f"Selected policies: {selected_policies}") + + new_metrics = run_engine(hazard_type.value, + landuseplan_selected.value, + hazard_df_as_geo[hazard_type.value], + list(selected_policies)) + for key in new_metrics.keys(): + metrics[key]["value"].value = new_metrics[key]["value"] + metrics[key]["max_value"].value = new_metrics[key]["max_value"] + + print(metrics) + +@solara.component +def LandUsePlans(): + for p in policies: + if policy_selected[p].value: + print(p, 'selected') + + for p in policies: + if policy_selected[p].value: + print(p, 'selected') + + #with solara.Column(gap="2px"): + # with solara.Columns([2,32,32,32,2]): + # solara.HTML(unsafe_innerHTML="") + # for i in range(1, n_landuses+1): + # if landuseplan_selected.value == i: + # solara.Image(f"landuse_tv50_{i}_selected.png", width="230px") + # else: + # solara.Image(f"landuse_tv50_{i}.png",width="230px") + # solara.HTML(unsafe_innerHTML="") + # with solara.Row(): + # with solara.ToggleButtonsSingle(value=landuseplan_selected): + # for i in range(0, n_landuses): + # solara.Button(lbl_land_use_btn[i][lang.value], value=i+1, text=True, style="width: 320px; height: 26px") + + + def landuse_1(): + landuseplan_selected.value = 1 + + def landuse_2(): + landuseplan_selected.value = 2 + + def landuse_3(): + landuseplan_selected.value = 3 + + funcs = {1: landuse_1, 2: landuse_2, 3: landuse_3} + + butons = [] + with solara.Columns([32,32,32]): + for i in range(0, n_landuses): + with solara.Column(): + if landuseplan_selected.value == i + 1: + solara.Button(lbl_land_use_btn[i][lang.value], value=i+1, + text=True, on_click=funcs[i+1], style="background-color: #545454; height: 26px") + with solara.Row(justify="center"): + solara.Image(f"landuse_tv50_{i+1}_selected.png", width="100%") + + else: + solara.Button(lbl_land_use_btn[i][lang.value], value=i+1, + text=True, on_click=funcs[i+1], style="height: 26px") + with solara.Row(justify="center"): + solara.Image(f"landuse_tv50_{i+1}.png", width="100%") + +@solara.component +def Page(): + def reset_view(): + tv0_zoom.value = zoom_default + tv0_center.value = tv0_center_default + hazard_type.value = hazard_type_default + for luf_type in luf_types: + luf_type_selected[luf_type].value = True + landuseplan_selected.value = 1 + + solara.Style(css) + with solara.Columns([1,98,1]): + solara.HTML(unsafe_innerHTML="") + with solara.Column(): + with solara.Columns(([15,15,45,20,10]), style="display: flex; justify-content: center; align-items: center;"): + solara.HTML(unsafe_innerHTML="") + with solara.Column(): + solara.Markdown("""[![Tomorrow's Cities](/static/public/tc-logo.png)](https://tomorrowscities.org/)""") + #solara.Button(label=lbl_reset[lang.value], on_click=reset_view, style="height: 26px;") + solara.HTML(unsafe_innerHTML=lbl_maintitle[lang.value],classes=["maintitle"]) + with solara.Column(): + solara.Markdown("""[![UR24](/static/public/ur-logo.png)](https://urpartner.io/)""") + with solara.ToggleButtonsSingle(value=lang): + solara.Button(label="EN", value="EN", text=True,classes=["langbutton"],style="height: 26px;") + solara.Button(label="TR", value="TR", text=True,classes=["langbutton"],style="height: 26px;") + with solara.Columns([50,50]): + with solara.Column(gap="2px"): + with solara.Card(title=lbl_tv0_map_title[lang.value]): + with solara.Columns([50,25,25], classes=["mycol"]): + TV0MAP() + with solara.Column(gap="13px"): + for luf_type in luf_types: + with solara.Row(): + #solara.Button(label="", + # color=luf_colors[luf_type]['fillColor'], + # classes=["lufbox"]) + solara.HTML(unsafe_innerHTML="        ", + style=f"margin: 1px; background-color: {luf_colors[luf_type]['fillColor']};") + solara.HTML(unsafe_innerHTML=lbl_luf[luf_type][lang.value], + style="font-size: 12px; line-height: 100%; display: flex; justify-content: center; align-items: center;") + #solara.Checkbox(label=lbl_luf[luf_type][lang.value],value=luf_type_selected[luf_type], + # style="margin-top: 0px; line-height: 80%;") + with solara.Column(gap="20px"): + solara.HTML(unsafe_innerHTML=lbl_info1[lang.value], classes=["infoitem"]) + solara.HTML(unsafe_innerHTML=lbl_info2[lang.value], classes=["infoitem"]) + solara.HTML(unsafe_innerHTML=lbl_info3[lang.value], classes=["infoitem"]) + solara.HTML(unsafe_innerHTML=lbl_info4[lang.value], classes=["infoitem"]) + solara.HTML(unsafe_innerHTML=lbl_info5[lang.value], classes=["infoitem"]) + with solara.Card(title=lbl_infobox_title[lang.value], style={"text-align": "justify"}): + solara.HTML(unsafe_innerHTML=lbl_infobox[lang.value], classes=["infobox"]) + with solara.Card(title=lbl_density_map_title[lang.value]): + with solara.Columns([30,30,30]): + with solara.Column(): + if hazard_type.value == "earthquake": + bgcolor = "background-color: #545454;" + else: + bgcolor = "" + with solara.Row(justify="center"): + solara.Button(lbl_earthquake[lang.value], value="earthquake", text=True, on_click=lambda: hazard_type.set("earthquake"), style=f"{bgcolor} width: 100%; height: 26px") + # DensityMap("earthquake") + with solara.Row(justify="center"): + solara.Image("/static/public/eq1.jpg") + with solara.Column(): + if hazard_type.value == "flood": + bgcolor = "background-color: #545454;" + else: + bgcolor = "" + with solara.Row(justify="center"): + solara.Button(lbl_flood[lang.value], value="flood", text=True, on_click=lambda: hazard_type.set("flood"), style=f"{bgcolor} width: 100%; height: 26px") + # DensityMap("flood") + with solara.Row(justify="center"): + solara.Image("/static/public/fl1.jpg") + # with solara.Column(): + # if hazard_type.value == "debris": + # bgcolor = "background-color: #545454;" + # else: + # bgcolor = "" + # with solara.Row(justify="center"): + # solara.Button(lbl_debris[lang.value], value="debris", text=True, on_click=lambda: hazard_type.set("debris"), style=f"{bgcolor} width: 200px; height: 26px") + # DensityMap("debris") + #with solara.Columns([30,30,30]): + # DensityMap("earthquake") + # DensityMap("flood") + # DensityMap("debris") + with solara.Column(gap="2px"): + with solara.Card(title=lbl_landuse_plans_title[lang.value]): + LandUsePlans() + with solara.Card(lbl_policy_card_title[lang.value]): + with solara.GridFixed(columns=1,row_gap="2px", column_gap="2px"): + for p in policies: + solara.Checkbox(label=lbl_policy[p][lang.value],value=policy_selected[p], style="font-size: 15px") + solara.Button(label=lbl_run_btn[lang.value],on_click=run_simulation, disabled=not run_is_allowed.value, style="height: 50px") + PolicyValidation() + with solara.Card(title=lbl_results_card_title[lang.value]): + MetricsPanel(metrics) + solara.HTML(unsafe_innerHTML="") + solara.Title("Tomorrow's Cities Demo") + + +@solara.component +def Layout(children): + # if you need the normal applayout + # layout = solara.AppLayout(children=children, style) + layout = solara.Div(children=children, style={"width": "100%", "min-height": "100vh"}) + + def log(*args): + print("stop doing that!") + + #solara.v.use_event(layout, "contextmenu.prevent", log) + return layout + +Page() \ No newline at end of file diff --git a/demo2/pages/__pycache__/__init__.cpython-310.pyc b/demo2/pages/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f619b6778fef4fc2a794f219558002095091ea42 Binary files /dev/null and b/demo2/pages/__pycache__/__init__.cpython-310.pyc differ diff --git a/demo2/pages/__pycache__/__init__.cpython-312.pyc b/demo2/pages/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..903909e5e6b08f417993e7e0e0b3fabd85c6073a Binary files /dev/null and b/demo2/pages/__pycache__/__init__.cpython-312.pyc differ diff --git a/demo2/pages/__pycache__/engine.cpython-310.pyc b/demo2/pages/__pycache__/engine.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..395a442b04312d6434d8c232b6716ee2d49c7329 Binary files /dev/null and b/demo2/pages/__pycache__/engine.cpython-310.pyc differ diff --git a/demo2/pages/__pycache__/engine.cpython-312.pyc b/demo2/pages/__pycache__/engine.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a3f5fcb8fb655eae0267793c372050c6c42f170f Binary files /dev/null and b/demo2/pages/__pycache__/engine.cpython-312.pyc differ diff --git a/demo2/pages/engine.py b/demo2/pages/engine.py new file mode 100644 index 0000000000000000000000000000000000000000..7f3a9aff142146db73a6123383f0e320b28ae7d8 --- /dev/null +++ b/demo2/pages/engine.py @@ -0,0 +1,334 @@ +#%% +import warnings +import json +import sys +import argparse +import io +import os +import pandas as pd +import psycopg2 +import geopandas as gpd +import numpy as np +from scipy.stats import norm +from scipy.interpolate import interp1d + +# Damage States +DS_NO = 1 +DS_SLIGHT = 2 +DS_MODERATE = 3 +DS_EXTENSIZE = 4 +DS_COLLAPSED = 5 + +# Hazard Types +HAZARD_EARTHQUAKE = "earthquake" +HAZARD_FLOOD = "flood" +HAZARD_DEBRIS = "debris" + +weights = { + "earthquake": {"metric1": 0.2, + "metric2": 0.2, + "metric3": 0.2, + "metric4": 0.2, + "metric5": 0.2, + "metric6": 0.2, + "metric7": 0.2, + }, + "flood": {"metric1": 20, + "metric2": 20, + "metric3": 20, + "metric4": 20, + "metric5": 20, + "metric6": 20, + "metric7": 20, + }, + "debris": {"metric1": 200, + "metric2": 200, + "metric3": 200, + "metric4": 200, + "metric5": 200, + "metric6": 200, + "metric7": 200, + } +} + +def run_engine(hazard_type, scenario, gdf_intensity, policies=[]): + + building_file = f"building_tv50_{scenario}.geojson" + household_file = f"household_tv50_{scenario}.json" + individual_file = f"individual_tv50_{scenario}.json" + + threshold = 1 + threshold_flood = 0.2 + threshold_flood_distance = 40 + epsg = 32645 # katmandu + + df_buildings = gpd.read_file(building_file) + df_household = pd.read_json(household_file) + df_individual = pd.read_json(individual_file) + #gdf_intensity = intensity_df.copy() + + # Read vulnerability from this table if hazard is earthquake + if hazard_type == HAZARD_EARTHQUAKE: + df_eq = pd.read_csv('earthquake_fragility.csv') + + elif hazard_type == HAZARD_FLOOD or hazard_type == HAZARD_DEBRIS: + df_flood = pd.read_csv('flood_vulnerability.csv') + + # TODO: Fix the confusion geometry/geograhy etc + gdf_buildings = gpd.GeoDataFrame(df_buildings, + geometry=gpd.points_from_xy(df_buildings.xcoord, df_buildings.ycoord)) + + # + # We asssume all input is EPSG:4326 + gdf_buildings = gdf_buildings.set_crs("EPSG:4326",allow_override=True) + #gdf_intensity = gdf_intensity.set_crs("EPSG:4326",allow_override=True) + + # Convert both to the same target coordinate system + print(epsg) + gdf_buildings = gdf_buildings.to_crs(f"EPSG:{epsg}") + #gdf_intensity = gdf_intensity.to_crs(f"EPSG:{epsg}") + + #%% + gdf_building_intensity = gpd.sjoin_nearest(gdf_buildings,gdf_intensity, + how='left', rsuffix='intensity',distance_col='distance') + gdf_building_intensity = gdf_building_intensity.drop_duplicates(subset=['bldid'], keep='first') + + # TODO: Check if the logic makes sense + if hazard_type == HAZARD_FLOOD or hazard_type == HAZARD_DEBRIS: + away_from_flood = gdf_building_intensity['distance'] > threshold_flood_distance + print('threshold_flood_distance',threshold_flood_distance) + print('number of distant buildings', len(gdf_building_intensity.loc[away_from_flood, 'im'])) + gdf_building_intensity.loc[away_from_flood, 'im'] = 0 + + #%% + gdf_building_intensity[['material','code_level','storeys','occupancy']] = \ + gdf_building_intensity['expstr'].str.split('+',expand=True) + gdf_building_intensity['height'] = gdf_building_intensity['storeys'].str.extract(r'([0-9]+)s').astype('int') + #%% + lr = (gdf_building_intensity['height'] <= 4) + mr = (gdf_building_intensity['height'] >= 5) & (gdf_building_intensity['height'] <= 8) + hr = (gdf_building_intensity['height'] >= 9) + gdf_building_intensity.loc[lr, 'height_level'] = 'LR' + gdf_building_intensity.loc[mr, 'height_level'] = 'MR' + gdf_building_intensity.loc[hr, 'height_level'] = 'HR' + + #%% + gdf_building_intensity['vulnstreq'] = \ + gdf_building_intensity[['material','code_level','height_level']] \ + .agg('+'.join,axis=1) + + #%% + if hazard_type == HAZARD_EARTHQUAKE: + bld_eq = gdf_building_intensity.merge(df_eq, on='vulnstreq', how='left') + nulls = bld_eq['muds1_g'].isna() + bld_eq.loc[nulls, ['muds1_g','muds2_g','muds3_g','muds4_g']] = [0.048,0.203,0.313,0.314] + bld_eq.loc[nulls, ['sigmads1','sigmads2','sigmads3','sigmads4']] = [0.301,0.276,0.252,0.253] + bld_eq['logim'] = np.log(bld_eq['im']/9.81) + for m in ['muds1_g','muds2_g','muds3_g','muds4_g']: + bld_eq[m] = np.log(bld_eq[m]) + + for i in [1,2,3,4]: + bld_eq[f'prob_ds{i}'] = norm.cdf(bld_eq['logim'],bld_eq[f'muds{i}_g'],bld_eq[f'sigmads{i}']) + bld_eq[['prob_ds0','prob_ds5']] = [1,0] + for i in [1,2,3,4,5]: + bld_eq[f'ds_{i}'] = np.abs(bld_eq[f'prob_ds{i-1}'] - bld_eq[f'prob_ds{i}']) + df_ds = bld_eq[['ds_1','ds_2','ds_3','ds_4','ds_5']] + bld_eq['eq_ds'] = df_ds.idxmax(axis='columns').str.extract(r'ds_([0-9]+)').astype('int') + + # Create a simplified building-hazard relation + bld_hazard = bld_eq[['bldid','occupancy','eq_ds']] + bld_hazard = bld_hazard.rename(columns={'eq_ds':'ds'}) + + ds_str = {1: 'No Damage',2:'Low',3:'Medium',4:'High',5:'Collapsed'} + + elif hazard_type == HAZARD_FLOOD or hazard_type == HAZARD_DEBRIS: + bld_flood = gdf_building_intensity.merge(df_flood, on='expstr', how='left') + x = np.array([0,0.5,1,1.5,2,3,4,5,6]) + y = bld_flood[['hw0','hw0.5','hw1','hw1.5','hw2','hw3','hw4','hw5','hw6']].to_numpy() + xnew = bld_flood['im'].to_numpy() + flood_mapping = interp1d(x,y,axis=1,kind='linear',bounds_error=False, fill_value=(0,1)) + # TODO: find another way for vectorized interpolate + bld_flood['fl_prob'] = np.diag(flood_mapping(xnew)) + bld_flood['fl_ds'] = 0 + bld_flood.loc[bld_flood['fl_prob'] > threshold_flood,'fl_ds'] = 1 + + # Create a simplified building-hazard relation + bld_hazard = bld_flood[['bldid','occupancy','fl_ds']] + bld_hazard = bld_hazard.rename(columns={'fl_ds':'ds'}) + + ds_str = {0: 'No Damage',1:'Flooded'} + + bld_hazard['occupancy'] = pd.Categorical(bld_hazard['occupancy']) + for key, value in ds_str.items(): + bld_hazard.loc[bld_hazard['ds'] == key,'damage_level'] = value + bld_hazard['damage_level'] = pd.Categorical(bld_hazard['damage_level'], list(ds_str.values())) + + #%% Find the damage state of the building that the household is in + df_household_bld = df_household.merge(bld_hazard[['bldid','ds']], on='bldid', how='left',validate='many_to_one') + #%% find the damage state of the hospital that the household is associated with + df_hospitals = df_household.merge(bld_hazard[['bldid','damage_level', 'ds']], + how='left', left_on='commfacid', right_on='bldid', suffixes=['','_comm'], + validate='many_to_one') + #%% + df_workers = df_individual.merge(bld_hazard[['bldid','damage_level', 'ds']], + how='left', left_on='indivfacid_2', right_on='bldid', + suffixes=['_l','_r'],validate='many_to_one') + + #%% + df_students = df_individual.merge(bld_hazard[['bldid','damage_level', 'ds']], + how='left', left_on='indivfacid_1', right_on='bldid', + suffixes=['_l','_r'],validate='many_to_one') + #%% + df_indiv_hosp = df_individual.merge(df_hospitals[['hhid','ds','bldid']], + how='left', on='hhid', validate='many_to_one') + #%% + # get the ds of household that individual lives in + df_indiv_household = df_individual[['hhid','individ']].merge(df_household_bld[['hhid','ds']]) + + df_displaced_indiv = df_indiv_hosp.rename(columns={'ds':'ds_hospital'})\ + .merge(df_workers[['individ','ds']].rename(columns={'ds':'ds_workplace'}),on='individ', how='inner')\ + .merge(df_students[['individ','ds']].rename(columns={'ds':'ds_school'}), on='individ', how='inner')\ + .merge(df_indiv_household[['individ','ds']].rename(columns={'ds':'ds_household'}), on='individ',how='left') + #%% + if hazard_type == HAZARD_EARTHQUAKE: + # Effect of policies on thresholds + # First get the global threshold + thresholds = {f'metric{id}': threshold for id in range(8)} + else: + # Default thresholds for flood and debris + # For flood, there are only two states: 0 or 1. + # So threshold is set to 0. + thresholds = {f'metric{id}': 0 for id in range(8)} + + # Policy 6 is valid for all three hazard types + # Policy-6: Compulsory content insurance for schools and hospitals + # increases threshold for loss of edu/health in all hazard-types from minor to moderate + # slight to moderate + if 6 in policies and thresholds['metric3'] == DS_NO: + thresholds['metric3'] = DS_SLIGHT + if 6 in policies and thresholds['metric2'] == DS_NO: + thresholds['metric2'] = DS_SLIGHT + + if hazard_type == HAZARD_EARTHQUAKE: + # Policy-1: Loans for reconstruction for minor to moderate damages + # Changes: Damage state thresholds for “displacement” + # Increase thresholds from “slight to moderate” as fewer people will be displaced. + if 1 in policies and thresholds['metric7'] == DS_NO: + thresholds['metric7'] = DS_SLIGHT + + # Policy-3: Cat-bond agreement for education and health facilities + # Changes: Damage state thresholds for “loss of access to hospitals” and “loss of access to schools” + # Increase thresholds from “slight to moderate” as fewer people will be displaced. + if 3 in policies and thresholds['metric3'] == DS_NO: + thresholds['metric3'] = DS_SLIGHT + if 3 in policies and thresholds['metric2'] == DS_NO: + thresholds['metric2'] = DS_SLIGHT + + # Policy-2: Knowledge sharing about DRR in public and private schools + # Changes: Damage state thresholds for “loss of school access” + # Increase thresholds loss of school access to beyond current scale. So that the impact will be downgraded to “0”. + if 2 in policies: + thresholds['metric2'] = DS_COLLAPSED + + if hazard_type == HAZARD_FLOOD: + # Polcy-4: Repair loan assistance for flooding + # we have only two states 0/1. So if this policy + # is effective, increase it to 1 meaning that + # population displacement is solved + if 4 in policies: + thresholds['metric6'] = 1 + + if hazard_type == HAZARD_FLOOD or hazard_type == HAZARD_DEBRIS: + # Policy-5: Technical assistance for debris removal in education facilities + # loss of education is solved via this policy. For both flood and debris + # loss of education metric is fixed. + if 5 in policies: + thresholds['metric2'] = 1 + + #%% metric 1 number of unemployed workers in each building + df_workers_per_building = df_workers[df_workers['ds'] > thresholds['metric1']].groupby('bldid',as_index=False).agg({'individ':'count'}) + df_metric1 = bld_hazard.merge(df_workers_per_building,how='left',left_on='bldid',right_on = 'bldid')[['bldid','individ']] + df_metric1.rename(columns={'individ':'metric1'}, inplace=True) + df_metric1['metric1'] = df_metric1['metric1'].fillna(0).astype(int) + + #%% metric 2 number of students in each building with no access to schools + df_students_per_building = df_students[df_students['ds'] > thresholds['metric2']].groupby('bldid',as_index=False).agg({'individ':'count'}) + df_metric2 = bld_hazard.merge(df_students_per_building,how='left',left_on='bldid',right_on = 'bldid')[['bldid','individ']] + df_metric2.rename(columns={'individ':'metric2'}, inplace=True) + df_metric2['metric2'] = df_metric2['metric2'].fillna(0).astype(int) + + #%% metric 3 number of households in each building with no access to hospitals + df_hospitals_per_household = df_hospitals[df_hospitals['ds'] > thresholds['metric3']].groupby('bldid',as_index=False).agg({'hhid':'count'}) + df_metric3 = bld_hazard.merge(df_hospitals_per_household,how='left',left_on='bldid',right_on='bldid')[['bldid','hhid']] + df_metric3.rename(columns={'hhid':'metric3'}, inplace=True) + df_metric3['metric3'] = df_metric3['metric3'].fillna(0).astype(int) + + #%% metric 4 number of individuals in each building with no access to hospitals + df_hospitals_per_individual = df_hospitals[df_hospitals['ds'] > thresholds['metric4']].groupby('bldid',as_index=False).agg({'nind':'sum'}) + df_metric4 = bld_hazard.merge(df_hospitals_per_individual,how='left',left_on='bldid',right_on='bldid')[['bldid','nind']] + df_metric4.rename(columns={'nind':'metric4'}, inplace=True) + df_metric4['metric4'] = df_metric4['metric4'].fillna(0).astype(int) + + #%% metric 5 number of damaged households in each building + df_homeless_households = df_household_bld[df_household_bld['ds'] > thresholds['metric5']].groupby('bldid',as_index=False).agg({'hhid':'count'}) + df_metric5 = bld_hazard.merge(df_homeless_households,how='left',left_on='bldid',right_on='bldid')[['bldid','hhid']] + df_metric5.rename(columns={'hhid':'metric5'}, inplace=True) + df_metric5['metric5'] = df_metric5['metric5'].fillna(0).astype(int) + + #%% metric 6 number of homeless individuals in each building + df_homeless_individuals = df_household_bld[df_household_bld['ds'] > thresholds['metric6']].groupby('bldid',as_index=False).agg({'nind':'sum'}) + df_metric6 = bld_hazard.merge(df_homeless_individuals,how='left',left_on='bldid',right_on='bldid')[['bldid','nind']] + df_metric6.rename(columns={'nind':'metric6'}, inplace=True) + df_metric6['metric6'] = df_metric6['metric6'].fillna(0).astype(int) + + #%% metric 7 the number of displaced individuals in each building + # more info: an individual is displaced if at least of the conditions below hold + df_disp_per_bld = df_displaced_indiv[(df_displaced_indiv['ds_household'] > thresholds['metric6']) | + (df_displaced_indiv['ds_school'] > thresholds['metric7']) | + (df_displaced_indiv['ds_workplace'] > thresholds['metric7']) | + (df_displaced_indiv['ds_hospital'] > thresholds['metric7'])].groupby('bldid',as_index=False).agg({'individ':'count'}) + df_metric7 = bld_hazard.merge(df_disp_per_bld,how='left',left_on='bldid',right_on='bldid')[['bldid','individ']] + df_metric7.rename(columns={'individ':'metric7'}, inplace=True) + df_metric7['metric7'] = df_metric7['metric7'].fillna(0).astype(int) + + df_metrics = {'metric1': df_metric1, + 'metric2': df_metric2, + 'metric3': df_metric3, + 'metric4': df_metric4, + 'metric5': df_metric5, + 'metric6': df_metric6, + 'metric7': df_metric7} + + #%% + number_of_workers = len(df_workers.loc[df_workers['indivfacid_2'] > 0]) + print('number of workers', number_of_workers) + + number_of_students = len(df_workers.loc[df_students['indivfacid_1'] > 0]) + print('number of students', number_of_students) + + number_of_households = len(df_household) + print('number of households', number_of_households) + + number_of_individuals = len(df_individual) + print('number of individuals', number_of_individuals) + metrics = {"metric1": {"desc": "Number of workers unemployed", "value": 0, "max_value": number_of_individuals}, + "metric2": {"desc": "Number of children with no access to education", "value": 0, "max_value": number_of_individuals}, + "metric3": {"desc": "Number of households with no access to hospital", "value": 0, "max_value": number_of_individuals}, + "metric4": {"desc": "Number of individuals with no access to hospital", "value": 0, "max_value": number_of_individuals}, + "metric5": {"desc": "Number of homeless households", "value": 0, "max_value": number_of_individuals}, + "metric6": {"desc": "Number of homeless individuals", "value": 0, "max_value": number_of_individuals}, + "metric7": {"desc": "Population displacement", "value": 0, "max_value": number_of_individuals},} + metrics["metric1"]["value"] = int(df_metric1['metric1'].sum()) + metrics["metric2"]["value"] = int(df_metric2['metric2'].sum()) + metrics["metric3"]["value"] = int(df_metric3['metric3'].sum()) + metrics["metric4"]["value"] = int(df_metric4['metric4'].sum()) + metrics["metric5"]["value"] = int(df_metric5['metric5'].sum()) + metrics["metric6"]["value"] = int(df_metric6['metric6'].sum()) + metrics["metric7"]["value"] = int(df_metric7['metric7'].sum()) + + for key in metrics.keys(): + metrics[key]["value"] = int(metrics[key]["value"] * weights[hazard_type][key]) + + # return to WSG + return metrics + diff --git a/demo2/public/Museo700-Regular.woff2 b/demo2/public/Museo700-Regular.woff2 new file mode 100644 index 0000000000000000000000000000000000000000..b99b245254fb266253f11d4ebf18758672306f2a Binary files /dev/null and b/demo2/public/Museo700-Regular.woff2 differ diff --git a/demo2/public/Museo900-Regular.woff b/demo2/public/Museo900-Regular.woff new file mode 100644 index 0000000000000000000000000000000000000000..fcd505080388e71582f9ca52774b9d61a3151727 Binary files /dev/null and b/demo2/public/Museo900-Regular.woff differ diff --git a/demo2/public/Museo900-Regular.woff2 b/demo2/public/Museo900-Regular.woff2 new file mode 100644 index 0000000000000000000000000000000000000000..935dd8098e2e9cc5f5b9aac3888e353b1b7bac60 Binary files /dev/null and b/demo2/public/Museo900-Regular.woff2 differ diff --git a/demo2/public/OpenSans400.woff2 b/demo2/public/OpenSans400.woff2 new file mode 100644 index 0000000000000000000000000000000000000000..a4383620168de912a362257082fc45b2f0bcfc22 Binary files /dev/null and b/demo2/public/OpenSans400.woff2 differ diff --git a/demo2/public/eq1.jpg b/demo2/public/eq1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..35fec3a242e35e1addf1f2a93000ad435001780d Binary files /dev/null and b/demo2/public/eq1.jpg differ diff --git a/demo2/public/eq2.jpg b/demo2/public/eq2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f3a4df650eb946564a12c76566def5aa39b9bfaf Binary files /dev/null and b/demo2/public/eq2.jpg differ diff --git a/demo2/public/fl1.jpg b/demo2/public/fl1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0fd70597f4ee859371d18ccfd0be84afb2408765 Binary files /dev/null and b/demo2/public/fl1.jpg differ diff --git a/demo2/public/fl2.jpg b/demo2/public/fl2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..28cdd0a306d20e4a191d2ec9017eba5f51e1fc18 Binary files /dev/null and b/demo2/public/fl2.jpg differ diff --git a/demo2/public/open-sans.regular.ttf b/demo2/public/open-sans.regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..db433349b7047f72f40072630c1bc110620bf09e Binary files /dev/null and b/demo2/public/open-sans.regular.ttf differ diff --git a/demo2/public/tc-logo.png b/demo2/public/tc-logo.png new file mode 100644 index 0000000000000000000000000000000000000000..ec98cb9a196723f91f2db249df25f9640b9009fb Binary files /dev/null and b/demo2/public/tc-logo.png differ diff --git a/demo2/public/tomorrows-cities-logo-header.png b/demo2/public/tomorrows-cities-logo-header.png new file mode 100644 index 0000000000000000000000000000000000000000..1d794b2f90231bb61c2b7353eec9c0902a569dc5 Binary files /dev/null and b/demo2/public/tomorrows-cities-logo-header.png differ diff --git a/demo2/public/ur-logo.png b/demo2/public/ur-logo.png new file mode 100644 index 0000000000000000000000000000000000000000..aaaf17dadbbb5d0319abb751fb40fb04716aa283 Binary files /dev/null and b/demo2/public/ur-logo.png differ diff --git a/earthquake_fragility.csv b/earthquake_fragility.csv new file mode 100644 index 0000000000000000000000000000000000000000..8a31625b01f67e769f751ef7d639c7fe540bc710 --- /dev/null +++ b/earthquake_fragility.csv @@ -0,0 +1,12 @@ +vulnstreq,muds1_g,muds2_g,muds3_g,muds4_g,sigmads1,sigmads2,sigmads3,sigmads4 +Adb+LC+LR,0.399,0.861,1.238,1.577,0.586,0.586,0.586,0.586 +BrM+LC+LR,0.057,0.098,0.147,0.223,0.406,0.404,0.358,0.31 +BrCfl+LC+LR,0.057,0.119,0.214,0.361,0.451,0.349,0.286,0.247 +BrCri+LC+LR,0.124,0.175,0.295,0.445,0.326,0.3,0.254,0.254 +StMin+LC+LR,0.057,0.098,0.147,0.223,0.406,0.404,0.358,0.310 +RCi+LC+LR,0.180,0.677,4.915,5.773,0.223,0.223,0.223,0.223 +RCi+MC+LR,0.137,0.633,1.577,2.016,0.223,0.223,0.223,0.223 +RCi+HC+LR,0.109,0.255,0.578,0.689,0.228,0.228,0.218,0.217 +RCi+LC+MR,0.039,0.322,4.027,5.352,0.259,0.259,0.259,0.259 +RCi+MC+MR,0.031,0.268,0.793,1.036,0.268,0.268,0.268,0.268 +RCi+HC+MR,0.048,0.203,0.313,0.314,0.301,0.276,0.252,0.253 \ No newline at end of file diff --git a/flood_vulnerability.csv b/flood_vulnerability.csv new file mode 100644 index 0000000000000000000000000000000000000000..42289b610147b4f830a49e1c67a2925d1b91c867 --- /dev/null +++ b/flood_vulnerability.csv @@ -0,0 +1,1261 @@ +expstr,hw0,hw0.5,hw1,hw1.5,hw2,hw3,hw4,hw5,hw6 +BrCfl+LC+1s+Res,0.000,0.660,0.980,1.000,1.000,1.000,1.000,1.000,1.000 +BrCfl+LC+2s+Res,0.000,0.330,0.490,0.620,0.720,0.870,0.930,0.980,1.000 +BrCfl+LC+3s+Res,0.000,0.220,0.327,0.413,0.480,0.580,0.620,0.653,0.667 +BrCfl+LC+4s+Res,0.000,0.165,0.245,0.310,0.360,0.435,0.465,0.490,0.500 +BrCfl+LC+5s+Res,0.000,0.132,0.196,0.248,0.288,0.348,0.372,0.392,0.400 +BrCfl+LC+6s+Res,0.000,0.110,0.163,0.207,0.240,0.290,0.310,0.327,0.333 +BrCfl+LC+7s+Res,0.000,0.094,0.140,0.177,0.206,0.249,0.266,0.280,0.286 +BrCfl+LC+8s+Res,0.000,0.083,0.122,0.155,0.180,0.217,0.233,0.245,0.250 +BrCfl+LC+9s+Res,0.000,0.073,0.109,0.138,0.160,0.193,0.207,0.218,0.222 +BrCfl+LC+10s+Res,0.000,0.066,0.098,0.124,0.144,0.174,0.186,0.196,0.200 +BrCfl+MC+1s+Res,0.000,0.660,0.980,1.000,1.000,1.000,1.000,1.000,1.000 +BrCfl+MC+2s+Res,0.000,0.330,0.490,0.620,0.720,0.870,0.930,0.980,1.000 +BrCfl+MC+3s+Res,0.000,0.220,0.327,0.413,0.480,0.580,0.620,0.653,0.667 +BrCfl+MC+4s+Res,0.000,0.165,0.245,0.310,0.360,0.435,0.465,0.490,0.500 +BrCfl+MC+5s+Res,0.000,0.132,0.196,0.248,0.288,0.348,0.372,0.392,0.400 +BrCfl+MC+6s+Res,0.000,0.110,0.163,0.207,0.240,0.290,0.310,0.327,0.333 +BrCfl+MC+7s+Res,0.000,0.094,0.140,0.177,0.206,0.249,0.266,0.280,0.286 +BrCfl+MC+8s+Res,0.000,0.083,0.122,0.155,0.180,0.217,0.233,0.245,0.250 +BrCfl+MC+9s+Res,0.000,0.073,0.109,0.138,0.160,0.193,0.207,0.218,0.222 +BrCfl+MC+10s+Res,0.000,0.066,0.098,0.124,0.144,0.174,0.186,0.196,0.200 +BrCfl+HC+1s+Res,0.000,0.660,0.980,1.000,1.000,1.000,1.000,1.000,1.000 +BrCfl+HC+2s+Res,0.000,0.330,0.490,0.620,0.720,0.870,0.930,0.980,1.000 +BrCfl+HC+3s+Res,0.000,0.220,0.327,0.413,0.480,0.580,0.620,0.653,0.667 +BrCfl+HC+4s+Res,0.000,0.165,0.245,0.310,0.360,0.435,0.465,0.490,0.500 +BrCfl+HC+5s+Res,0.000,0.132,0.196,0.248,0.288,0.348,0.372,0.392,0.400 +BrCfl+HC+6s+Res,0.000,0.110,0.163,0.207,0.240,0.290,0.310,0.327,0.333 +BrCfl+HC+7s+Res,0.000,0.094,0.140,0.177,0.206,0.249,0.266,0.280,0.286 +BrCfl+HC+8s+Res,0.000,0.083,0.122,0.155,0.180,0.217,0.233,0.245,0.250 +BrCfl+HC+9s+Res,0.000,0.073,0.109,0.138,0.160,0.193,0.207,0.218,0.222 +BrCfl+HC+10s+Res,0.000,0.066,0.098,0.124,0.144,0.174,0.186,0.196,0.200 +BrCri+LC+1s+Res,0.000,0.660,0.980,1.000,1.000,1.000,1.000,1.000,1.000 +BrCri+LC+2s+Res,0.000,0.330,0.490,0.620,0.720,0.870,0.930,0.980,1.000 +BrCri+LC+3s+Res,0.000,0.220,0.327,0.413,0.480,0.580,0.620,0.653,0.667 +BrCri+LC+4s+Res,0.000,0.165,0.245,0.310,0.360,0.435,0.465,0.490,0.500 +BrCri+LC+5s+Res,0.000,0.132,0.196,0.248,0.288,0.348,0.372,0.392,0.400 +BrCri+LC+6s+Res,0.000,0.110,0.163,0.207,0.240,0.290,0.310,0.327,0.333 +BrCri+LC+7s+Res,0.000,0.094,0.140,0.177,0.206,0.249,0.266,0.280,0.286 +BrCri+LC+8s+Res,0.000,0.083,0.122,0.155,0.180,0.217,0.233,0.245,0.250 +BrCri+LC+9s+Res,0.000,0.073,0.109,0.138,0.160,0.193,0.207,0.218,0.222 +BrCri+LC+10s+Res,0.000,0.066,0.098,0.124,0.144,0.174,0.186,0.196,0.200 +BrCri+MC+1s+Res,0.000,0.660,0.980,1.000,1.000,1.000,1.000,1.000,1.000 +BrCri+MC+2s+Res,0.000,0.330,0.490,0.620,0.720,0.870,0.930,0.980,1.000 +BrCri+MC+3s+Res,0.000,0.220,0.327,0.413,0.480,0.580,0.620,0.653,0.667 +BrCri+MC+4s+Res,0.000,0.165,0.245,0.310,0.360,0.435,0.465,0.490,0.500 +BrCri+MC+5s+Res,0.000,0.132,0.196,0.248,0.288,0.348,0.372,0.392,0.400 +BrCri+MC+6s+Res,0.000,0.110,0.163,0.207,0.240,0.290,0.310,0.327,0.333 +BrCri+MC+7s+Res,0.000,0.094,0.140,0.177,0.206,0.249,0.266,0.280,0.286 +BrCri+MC+8s+Res,0.000,0.083,0.122,0.155,0.180,0.217,0.233,0.245,0.250 +BrCri+MC+9s+Res,0.000,0.073,0.109,0.138,0.160,0.193,0.207,0.218,0.222 +BrCri+MC+10s+Res,0.000,0.066,0.098,0.124,0.144,0.174,0.186,0.196,0.200 +BrCri+HC+1s+Res,0.000,0.660,0.980,1.000,1.000,1.000,1.000,1.000,1.000 +BrCri+HC+2s+Res,0.000,0.330,0.490,0.620,0.720,0.870,0.930,0.980,1.000 +BrCri+HC+3s+Res,0.000,0.220,0.327,0.413,0.480,0.580,0.620,0.653,0.667 +BrCri+HC+4s+Res,0.000,0.165,0.245,0.310,0.360,0.435,0.465,0.490,0.500 +BrCri+HC+5s+Res,0.000,0.132,0.196,0.248,0.288,0.348,0.372,0.392,0.400 +BrCri+HC+6s+Res,0.000,0.110,0.163,0.207,0.240,0.290,0.310,0.327,0.333 +BrCri+HC+7s+Res,0.000,0.094,0.140,0.177,0.206,0.249,0.266,0.280,0.286 +BrCri+HC+8s+Res,0.000,0.083,0.122,0.155,0.180,0.217,0.233,0.245,0.250 +BrCri+HC+9s+Res,0.000,0.073,0.109,0.138,0.160,0.193,0.207,0.218,0.222 +BrCri+HC+10s+Res,0.000,0.066,0.098,0.124,0.144,0.174,0.186,0.196,0.200 +BrM+LC+1s+Res,0.000,0.660,0.980,1.000,1.000,1.000,1.000,1.000,1.000 +BrM+LC+2s+Res,0.000,0.330,0.490,0.620,0.720,0.870,0.930,0.980,1.000 +BrM+LC+3s+Res,0.000,0.220,0.327,0.413,0.480,0.580,0.620,0.653,0.667 +BrM+LC+4s+Res,0.000,0.165,0.245,0.310,0.360,0.435,0.465,0.490,0.500 +BrM+LC+5s+Res,0.000,0.132,0.196,0.248,0.288,0.348,0.372,0.392,0.400 +BrM+LC+6s+Res,0.000,0.110,0.163,0.207,0.240,0.290,0.310,0.327,0.333 +BrM+LC+7s+Res,0.000,0.094,0.140,0.177,0.206,0.249,0.266,0.280,0.286 +BrM+LC+8s+Res,0.000,0.083,0.122,0.155,0.180,0.217,0.233,0.245,0.250 +BrM+LC+9s+Res,0.000,0.073,0.109,0.138,0.160,0.193,0.207,0.218,0.222 +BrM+LC+10s+Res,0.000,0.066,0.098,0.124,0.144,0.174,0.186,0.196,0.200 +BrM+MC+1s+Res,0.000,0.660,0.980,1.000,1.000,1.000,1.000,1.000,1.000 +BrM+MC+2s+Res,0.000,0.330,0.490,0.620,0.720,0.870,0.930,0.980,1.000 +BrM+MC+3s+Res,0.000,0.220,0.327,0.413,0.480,0.580,0.620,0.653,0.667 +BrM+MC+4s+Res,0.000,0.165,0.245,0.310,0.360,0.435,0.465,0.490,0.500 +BrM+MC+5s+Res,0.000,0.132,0.196,0.248,0.288,0.348,0.372,0.392,0.400 +BrM+MC+6s+Res,0.000,0.110,0.163,0.207,0.240,0.290,0.310,0.327,0.333 +BrM+MC+7s+Res,0.000,0.094,0.140,0.177,0.206,0.249,0.266,0.280,0.286 +BrM+MC+8s+Res,0.000,0.083,0.122,0.155,0.180,0.217,0.233,0.245,0.250 +BrM+MC+9s+Res,0.000,0.073,0.109,0.138,0.160,0.193,0.207,0.218,0.222 +BrM+MC+10s+Res,0.000,0.066,0.098,0.124,0.144,0.174,0.186,0.196,0.200 +BrM+HC+1s+Res,0.000,0.660,0.980,1.000,1.000,1.000,1.000,1.000,1.000 +BrM+HC+2s+Res,0.000,0.330,0.490,0.620,0.720,0.870,0.930,0.980,1.000 +BrM+HC+3s+Res,0.000,0.220,0.327,0.413,0.480,0.580,0.620,0.653,0.667 +BrM+HC+4s+Res,0.000,0.165,0.245,0.310,0.360,0.435,0.465,0.490,0.500 +BrM+HC+5s+Res,0.000,0.132,0.196,0.248,0.288,0.348,0.372,0.392,0.400 +BrM+HC+6s+Res,0.000,0.110,0.163,0.207,0.240,0.290,0.310,0.327,0.333 +BrM+HC+7s+Res,0.000,0.094,0.140,0.177,0.206,0.249,0.266,0.280,0.286 +BrM+HC+8s+Res,0.000,0.083,0.122,0.155,0.180,0.217,0.233,0.245,0.250 +BrM+HC+9s+Res,0.000,0.073,0.109,0.138,0.160,0.193,0.207,0.218,0.222 +BrM+HC+10s+Res,0.000,0.066,0.098,0.124,0.144,0.174,0.186,0.196,0.200 +Adb+LC+1s+Res,0.000,0.396,0.588,0.600,0.600,0.600,0.600,0.600,0.600 +Adb+LC+2s+Res,0.000,0.198,0.294,0.372,0.432,0.522,0.558,0.588,0.600 +Adb+LC+3s+Res,0.000,0.132,0.196,0.248,0.288,0.348,0.372,0.392,0.400 +Adb+LC+4s+Res,0.000,0.099,0.147,0.186,0.216,0.261,0.279,0.294,0.300 +Adb+LC+5s+Res,0.000,0.079,0.118,0.149,0.173,0.209,0.223,0.235,0.240 +Adb+LC+6s+Res,0.000,0.066,0.098,0.124,0.144,0.174,0.186,0.196,0.200 +Adb+LC+7s+Res,0.000,0.057,0.084,0.106,0.123,0.149,0.159,0.168,0.171 +Adb+LC+8s+Res,0.000,0.050,0.073,0.093,0.108,0.131,0.140,0.147,0.150 +Adb+LC+9s+Res,0.000,0.044,0.065,0.083,0.096,0.116,0.124,0.131,0.133 +Adb+LC+10s+Res,0.000,0.040,0.059,0.074,0.086,0.104,0.112,0.118,0.120 +Adb+MC+1s+Res,0.000,0.396,0.588,0.600,0.600,0.600,0.600,0.600,0.600 +Adb+MC+2s+Res,0.000,0.198,0.294,0.372,0.432,0.522,0.558,0.588,0.600 +Adb+MC+3s+Res,0.000,0.132,0.196,0.248,0.288,0.348,0.372,0.392,0.400 +Adb+MC+4s+Res,0.000,0.099,0.147,0.186,0.216,0.261,0.279,0.294,0.300 +Adb+MC+5s+Res,0.000,0.079,0.118,0.149,0.173,0.209,0.223,0.235,0.240 +Adb+MC+6s+Res,0.000,0.066,0.098,0.124,0.144,0.174,0.186,0.196,0.200 +Adb+MC+7s+Res,0.000,0.057,0.084,0.106,0.123,0.149,0.159,0.168,0.171 +Adb+MC+8s+Res,0.000,0.050,0.073,0.093,0.108,0.131,0.140,0.147,0.150 +Adb+MC+9s+Res,0.000,0.044,0.065,0.083,0.096,0.116,0.124,0.131,0.133 +Adb+MC+10s+Res,0.000,0.040,0.059,0.074,0.086,0.104,0.112,0.118,0.120 +Adb+HC+1s+Res,0.000,0.396,0.588,0.600,0.600,0.600,0.600,0.600,0.600 +Adb+HC+2s+Res,0.000,0.198,0.294,0.372,0.432,0.522,0.558,0.588,0.600 +Adb+HC+3s+Res,0.000,0.132,0.196,0.248,0.288,0.348,0.372,0.392,0.400 +Adb+HC+4s+Res,0.000,0.099,0.147,0.186,0.216,0.261,0.279,0.294,0.300 +Adb+HC+5s+Res,0.000,0.079,0.118,0.149,0.173,0.209,0.223,0.235,0.240 +Adb+HC+6s+Res,0.000,0.066,0.098,0.124,0.144,0.174,0.186,0.196,0.200 +Adb+HC+7s+Res,0.000,0.057,0.084,0.106,0.123,0.149,0.159,0.168,0.171 +Adb+HC+8s+Res,0.000,0.050,0.073,0.093,0.108,0.131,0.140,0.147,0.150 +Adb+HC+9s+Res,0.000,0.044,0.065,0.083,0.096,0.116,0.124,0.131,0.133 +Adb+HC+10s+Res,0.000,0.040,0.059,0.074,0.086,0.104,0.112,0.118,0.120 +RCi+LC+1s+Res,0.000,0.396,0.588,0.600,0.600,0.600,0.600,0.600,0.600 +RCi+LC+2s+Res,0.000,0.198,0.294,0.372,0.432,0.522,0.558,0.588,0.600 +RCi+LC+3s+Res,0.000,0.132,0.196,0.248,0.288,0.348,0.372,0.392,0.400 +RCi+LC+4s+Res,0.000,0.099,0.147,0.186,0.216,0.261,0.279,0.294,0.300 +RCi+LC+5s+Res,0.000,0.079,0.118,0.149,0.173,0.209,0.223,0.235,0.240 +RCi+LC+6s+Res,0.000,0.066,0.098,0.124,0.144,0.174,0.186,0.196,0.200 +RCi+LC+7s+Res,0.000,0.057,0.084,0.106,0.123,0.149,0.159,0.168,0.171 +RCi+LC+8s+Res,0.000,0.050,0.073,0.093,0.108,0.131,0.140,0.147,0.150 +RCi+LC+9s+Res,0.000,0.044,0.065,0.083,0.096,0.116,0.124,0.131,0.133 +RCi+LC+10s+Res,0.000,0.040,0.059,0.074,0.086,0.104,0.112,0.118,0.120 +RCi+MC+1s+Res,0.000,0.396,0.588,0.600,0.600,0.600,0.600,0.600,0.600 +RCi+MC+2s+Res,0.000,0.198,0.294,0.372,0.432,0.522,0.558,0.588,0.600 +RCi+MC+3s+Res,0.000,0.132,0.196,0.248,0.288,0.348,0.372,0.392,0.400 +RCi+MC+4s+Res,0.000,0.099,0.147,0.186,0.216,0.261,0.279,0.294,0.300 +RCi+MC+5s+Res,0.000,0.079,0.118,0.149,0.173,0.209,0.223,0.235,0.240 +RCi+MC+6s+Res,0.000,0.066,0.098,0.124,0.144,0.174,0.186,0.196,0.200 +RCi+MC+7s+Res,0.000,0.057,0.084,0.106,0.123,0.149,0.159,0.168,0.171 +RCi+MC+8s+Res,0.000,0.050,0.073,0.093,0.108,0.131,0.140,0.147,0.150 +RCi+MC+9s+Res,0.000,0.044,0.065,0.083,0.096,0.116,0.124,0.131,0.133 +RCi+MC+10s+Res,0.000,0.040,0.059,0.074,0.086,0.104,0.112,0.118,0.120 +RCi+HC+1s+Res,0.000,0.396,0.588,0.600,0.600,0.600,0.600,0.600,0.600 +RCi+HC+2s+Res,0.000,0.198,0.294,0.372,0.432,0.522,0.558,0.588,0.600 +RCi+HC+3s+Res,0.000,0.132,0.196,0.248,0.288,0.348,0.372,0.392,0.400 +RCi+HC+4s+Res,0.000,0.099,0.147,0.186,0.216,0.261,0.279,0.294,0.300 +RCi+HC+5s+Res,0.000,0.079,0.118,0.149,0.173,0.209,0.223,0.235,0.240 +RCi+HC+6s+Res,0.000,0.066,0.098,0.124,0.144,0.174,0.186,0.196,0.200 +RCi+HC+7s+Res,0.000,0.057,0.084,0.106,0.123,0.149,0.159,0.168,0.171 +RCi+HC+8s+Res,0.000,0.050,0.073,0.093,0.108,0.131,0.140,0.147,0.150 +RCi+HC+9s+Res,0.000,0.044,0.065,0.083,0.096,0.116,0.124,0.131,0.133 +RCi+HC+10s+Res,0.000,0.040,0.059,0.074,0.086,0.104,0.112,0.118,0.120 +StMin+LC+1s+Res,0.000,0.396,0.588,0.600,0.600,0.600,0.600,0.600,0.600 +StMin+LC+2s+Res,0.000,0.198,0.294,0.372,0.432,0.522,0.558,0.588,0.600 +StMin+LC+3s+Res,0.000,0.132,0.196,0.248,0.288,0.348,0.372,0.392,0.400 +StMin+LC+4s+Res,0.000,0.099,0.147,0.186,0.216,0.261,0.279,0.294,0.300 +StMin+LC+5s+Res,0.000,0.079,0.118,0.149,0.173,0.209,0.223,0.235,0.240 +StMin+LC+6s+Res,0.000,0.066,0.098,0.124,0.144,0.174,0.186,0.196,0.200 +StMin+LC+7s+Res,0.000,0.057,0.084,0.106,0.123,0.149,0.159,0.168,0.171 +StMin+LC+8s+Res,0.000,0.050,0.073,0.093,0.108,0.131,0.140,0.147,0.150 +StMin+LC+9s+Res,0.000,0.044,0.065,0.083,0.096,0.116,0.124,0.131,0.133 +StMin+LC+10s+Res,0.000,0.040,0.059,0.074,0.086,0.104,0.112,0.118,0.120 +StMin+MC+1s+Res,0.000,0.396,0.588,0.600,0.600,0.600,0.600,0.600,0.600 +StMin+MC+2s+Res,0.000,0.198,0.294,0.372,0.432,0.522,0.558,0.588,0.600 +StMin+MC+3s+Res,0.000,0.132,0.196,0.248,0.288,0.348,0.372,0.392,0.400 +StMin+MC+4s+Res,0.000,0.099,0.147,0.186,0.216,0.261,0.279,0.294,0.300 +StMin+MC+5s+Res,0.000,0.079,0.118,0.149,0.173,0.209,0.223,0.235,0.240 +StMin+MC+6s+Res,0.000,0.066,0.098,0.124,0.144,0.174,0.186,0.196,0.200 +StMin+MC+7s+Res,0.000,0.057,0.084,0.106,0.123,0.149,0.159,0.168,0.171 +StMin+MC+8s+Res,0.000,0.050,0.073,0.093,0.108,0.131,0.140,0.147,0.150 +StMin+MC+9s+Res,0.000,0.044,0.065,0.083,0.096,0.116,0.124,0.131,0.133 +StMin+MC+10s+Res,0.000,0.040,0.059,0.074,0.086,0.104,0.112,0.118,0.120 +StMin+HC+1s+Res,0.000,0.396,0.588,0.600,0.600,0.600,0.600,0.600,0.600 +StMin+HC+2s+Res,0.000,0.198,0.294,0.372,0.432,0.522,0.558,0.588,0.600 +StMin+HC+3s+Res,0.000,0.132,0.196,0.248,0.288,0.348,0.372,0.392,0.400 +StMin+HC+4s+Res,0.000,0.099,0.147,0.186,0.216,0.261,0.279,0.294,0.300 +StMin+HC+5s+Res,0.000,0.079,0.118,0.149,0.173,0.209,0.223,0.235,0.240 +StMin+HC+6s+Res,0.000,0.066,0.098,0.124,0.144,0.174,0.186,0.196,0.200 +StMin+HC+7s+Res,0.000,0.057,0.084,0.106,0.123,0.149,0.159,0.168,0.171 +StMin+HC+8s+Res,0.000,0.050,0.073,0.093,0.108,0.131,0.140,0.147,0.150 +StMin+HC+9s+Res,0.000,0.044,0.065,0.083,0.096,0.116,0.124,0.131,0.133 +StMin+HC+10s+Res,0.000,0.040,0.059,0.074,0.086,0.104,0.112,0.118,0.120 +BrCfl+LC+1s+Com,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000 +BrCfl+LC+2s+Com,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000 +BrCfl+LC+3s+Com,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667 +BrCfl+LC+4s+Com,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500 +BrCfl+LC+5s+Com,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +BrCfl+LC+6s+Com,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333 +BrCfl+LC+7s+Com,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286 +BrCfl+LC+8s+Com,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250 +BrCfl+LC+9s+Com,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222 +BrCfl+LC+10s+Com,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +BrCfl+MC+1s+Com,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000 +BrCfl+MC+2s+Com,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000 +BrCfl+MC+3s+Com,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667 +BrCfl+MC+4s+Com,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500 +BrCfl+MC+5s+Com,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +BrCfl+MC+6s+Com,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333 +BrCfl+MC+7s+Com,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286 +BrCfl+MC+8s+Com,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250 +BrCfl+MC+9s+Com,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222 +BrCfl+MC+10s+Com,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +BrCfl+HC+1s+Com,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000 +BrCfl+HC+2s+Com,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000 +BrCfl+HC+3s+Com,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667 +BrCfl+HC+4s+Com,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500 +BrCfl+HC+5s+Com,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +BrCfl+HC+6s+Com,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333 +BrCfl+HC+7s+Com,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286 +BrCfl+HC+8s+Com,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250 +BrCfl+HC+9s+Com,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222 +BrCfl+HC+10s+Com,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +BrCri+LC+1s+Com,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000 +BrCri+LC+2s+Com,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000 +BrCri+LC+3s+Com,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667 +BrCri+LC+4s+Com,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500 +BrCri+LC+5s+Com,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +BrCri+LC+6s+Com,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333 +BrCri+LC+7s+Com,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286 +BrCri+LC+8s+Com,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250 +BrCri+LC+9s+Com,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222 +BrCri+LC+10s+Com,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +BrCri+MC+1s+Com,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000 +BrCri+MC+2s+Com,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000 +BrCri+MC+3s+Com,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667 +BrCri+MC+4s+Com,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500 +BrCri+MC+5s+Com,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +BrCri+MC+6s+Com,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333 +BrCri+MC+7s+Com,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286 +BrCri+MC+8s+Com,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250 +BrCri+MC+9s+Com,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222 +BrCri+MC+10s+Com,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +BrCri+HC+1s+Com,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000 +BrCri+HC+2s+Com,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000 +BrCri+HC+3s+Com,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667 +BrCri+HC+4s+Com,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500 +BrCri+HC+5s+Com,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +BrCri+HC+6s+Com,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333 +BrCri+HC+7s+Com,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286 +BrCri+HC+8s+Com,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250 +BrCri+HC+9s+Com,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222 +BrCri+HC+10s+Com,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +BrM+LC+1s+Com,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000 +BrM+LC+2s+Com,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000 +BrM+LC+3s+Com,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667 +BrM+LC+4s+Com,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500 +BrM+LC+5s+Com,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +BrM+LC+6s+Com,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333 +BrM+LC+7s+Com,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286 +BrM+LC+8s+Com,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250 +BrM+LC+9s+Com,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222 +BrM+LC+10s+Com,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +BrM+MC+1s+Com,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000 +BrM+MC+2s+Com,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000 +BrM+MC+3s+Com,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667 +BrM+MC+4s+Com,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500 +BrM+MC+5s+Com,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +BrM+MC+6s+Com,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333 +BrM+MC+7s+Com,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286 +BrM+MC+8s+Com,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250 +BrM+MC+9s+Com,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222 +BrM+MC+10s+Com,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +BrM+HC+1s+Com,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000 +BrM+HC+2s+Com,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000 +BrM+HC+3s+Com,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667 +BrM+HC+4s+Com,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500 +BrM+HC+5s+Com,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +BrM+HC+6s+Com,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333 +BrM+HC+7s+Com,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286 +BrM+HC+8s+Com,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250 +BrM+HC+9s+Com,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222 +BrM+HC+10s+Com,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +Adb+LC+1s+Com,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600 +Adb+LC+2s+Com,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600 +Adb+LC+3s+Com,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +Adb+LC+4s+Com,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300 +Adb+LC+5s+Com,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240 +Adb+LC+6s+Com,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +Adb+LC+7s+Com,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171 +Adb+LC+8s+Com,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150 +Adb+LC+9s+Com,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133 +Adb+LC+10s+Com,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120 +Adb+MC+1s+Com,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600 +Adb+MC+2s+Com,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600 +Adb+MC+3s+Com,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +Adb+MC+4s+Com,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300 +Adb+MC+5s+Com,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240 +Adb+MC+6s+Com,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +Adb+MC+7s+Com,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171 +Adb+MC+8s+Com,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150 +Adb+MC+9s+Com,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133 +Adb+MC+10s+Com,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120 +Adb+HC+1s+Com,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600 +Adb+HC+2s+Com,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600 +Adb+HC+3s+Com,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +Adb+HC+4s+Com,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300 +Adb+HC+5s+Com,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240 +Adb+HC+6s+Com,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +Adb+HC+7s+Com,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171 +Adb+HC+8s+Com,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150 +Adb+HC+9s+Com,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133 +Adb+HC+10s+Com,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120 +RCi+LC+1s+Com,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600 +RCi+LC+2s+Com,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600 +RCi+LC+3s+Com,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +RCi+LC+4s+Com,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300 +RCi+LC+5s+Com,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240 +RCi+LC+6s+Com,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +RCi+LC+7s+Com,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171 +RCi+LC+8s+Com,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150 +RCi+LC+9s+Com,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133 +RCi+LC+10s+Com,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120 +RCi+MC+1s+Com,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600 +RCi+MC+2s+Com,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600 +RCi+MC+3s+Com,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +RCi+MC+4s+Com,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300 +RCi+MC+5s+Com,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240 +RCi+MC+6s+Com,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +RCi+MC+7s+Com,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171 +RCi+MC+8s+Com,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150 +RCi+MC+9s+Com,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133 +RCi+MC+10s+Com,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120 +RCi+HC+1s+Com,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600 +RCi+HC+2s+Com,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600 +RCi+HC+3s+Com,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +RCi+HC+4s+Com,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300 +RCi+HC+5s+Com,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240 +RCi+HC+6s+Com,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +RCi+HC+7s+Com,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171 +RCi+HC+8s+Com,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150 +RCi+HC+9s+Com,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133 +RCi+HC+10s+Com,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120 +StMin+LC+1s+Com,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600 +StMin+LC+2s+Com,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600 +StMin+LC+3s+Com,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +StMin+LC+4s+Com,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300 +StMin+LC+5s+Com,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240 +StMin+LC+6s+Com,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +StMin+LC+7s+Com,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171 +StMin+LC+8s+Com,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150 +StMin+LC+9s+Com,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133 +StMin+LC+10s+Com,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120 +StMin+MC+1s+Com,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600 +StMin+MC+2s+Com,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600 +StMin+MC+3s+Com,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +StMin+MC+4s+Com,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300 +StMin+MC+5s+Com,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240 +StMin+MC+6s+Com,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +StMin+MC+7s+Com,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171 +StMin+MC+8s+Com,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150 +StMin+MC+9s+Com,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133 +StMin+MC+10s+Com,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120 +StMin+HC+1s+Com,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600 +StMin+HC+2s+Com,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600 +StMin+HC+3s+Com,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +StMin+HC+4s+Com,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300 +StMin+HC+5s+Com,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240 +StMin+HC+6s+Com,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +StMin+HC+7s+Com,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171 +StMin+HC+8s+Com,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150 +StMin+HC+9s+Com,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133 +StMin+HC+10s+Com,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120 +BrCfl+LC+1s+Ind,0.000,0.560,0.960,1.000,1.000,1.000,1.000,1.000,1.000 +BrCfl+LC+2s+Ind,0.000,0.280,0.480,0.630,0.720,0.860,0.910,0.960,1.000 +BrCfl+LC+3s+Ind,0.000,0.187,0.320,0.420,0.480,0.573,0.607,0.640,0.667 +BrCfl+LC+4s+Ind,0.000,0.140,0.240,0.315,0.360,0.430,0.455,0.480,0.500 +BrCfl+LC+5s+Ind,0.000,0.112,0.192,0.252,0.288,0.344,0.364,0.384,0.400 +BrCfl+LC+6s+Ind,0.000,0.093,0.160,0.210,0.240,0.287,0.303,0.320,0.333 +BrCfl+LC+7s+Ind,0.000,0.080,0.137,0.180,0.206,0.246,0.260,0.274,0.286 +BrCfl+LC+8s+Ind,0.000,0.070,0.120,0.158,0.180,0.215,0.228,0.240,0.250 +BrCfl+LC+9s+Ind,0.000,0.062,0.107,0.140,0.160,0.191,0.202,0.213,0.222 +BrCfl+LC+10s+Ind,0.000,0.056,0.096,0.126,0.144,0.172,0.182,0.192,0.200 +BrCfl+MC+1s+Ind,0.000,0.560,0.960,1.000,1.000,1.000,1.000,1.000,1.000 +BrCfl+MC+2s+Ind,0.000,0.280,0.480,0.630,0.720,0.860,0.910,0.960,1.000 +BrCfl+MC+3s+Ind,0.000,0.187,0.320,0.420,0.480,0.573,0.607,0.640,0.667 +BrCfl+MC+4s+Ind,0.000,0.140,0.240,0.315,0.360,0.430,0.455,0.480,0.500 +BrCfl+MC+5s+Ind,0.000,0.112,0.192,0.252,0.288,0.344,0.364,0.384,0.400 +BrCfl+MC+6s+Ind,0.000,0.093,0.160,0.210,0.240,0.287,0.303,0.320,0.333 +BrCfl+MC+7s+Ind,0.000,0.080,0.137,0.180,0.206,0.246,0.260,0.274,0.286 +BrCfl+MC+8s+Ind,0.000,0.070,0.120,0.158,0.180,0.215,0.228,0.240,0.250 +BrCfl+MC+9s+Ind,0.000,0.062,0.107,0.140,0.160,0.191,0.202,0.213,0.222 +BrCfl+MC+10s+Ind,0.000,0.056,0.096,0.126,0.144,0.172,0.182,0.192,0.200 +BrCfl+HC+1s+Ind,0.000,0.560,0.960,1.000,1.000,1.000,1.000,1.000,1.000 +BrCfl+HC+2s+Ind,0.000,0.280,0.480,0.630,0.720,0.860,0.910,0.960,1.000 +BrCfl+HC+3s+Ind,0.000,0.187,0.320,0.420,0.480,0.573,0.607,0.640,0.667 +BrCfl+HC+4s+Ind,0.000,0.140,0.240,0.315,0.360,0.430,0.455,0.480,0.500 +BrCfl+HC+5s+Ind,0.000,0.112,0.192,0.252,0.288,0.344,0.364,0.384,0.400 +BrCfl+HC+6s+Ind,0.000,0.093,0.160,0.210,0.240,0.287,0.303,0.320,0.333 +BrCfl+HC+7s+Ind,0.000,0.080,0.137,0.180,0.206,0.246,0.260,0.274,0.286 +BrCfl+HC+8s+Ind,0.000,0.070,0.120,0.158,0.180,0.215,0.228,0.240,0.250 +BrCfl+HC+9s+Ind,0.000,0.062,0.107,0.140,0.160,0.191,0.202,0.213,0.222 +BrCfl+HC+10s+Ind,0.000,0.056,0.096,0.126,0.144,0.172,0.182,0.192,0.200 +BrCri+LC+1s+Ind,0.000,0.560,0.960,1.000,1.000,1.000,1.000,1.000,1.000 +BrCri+LC+2s+Ind,0.000,0.280,0.480,0.630,0.720,0.860,0.910,0.960,1.000 +BrCri+LC+3s+Ind,0.000,0.187,0.320,0.420,0.480,0.573,0.607,0.640,0.667 +BrCri+LC+4s+Ind,0.000,0.140,0.240,0.315,0.360,0.430,0.455,0.480,0.500 +BrCri+LC+5s+Ind,0.000,0.112,0.192,0.252,0.288,0.344,0.364,0.384,0.400 +BrCri+LC+6s+Ind,0.000,0.093,0.160,0.210,0.240,0.287,0.303,0.320,0.333 +BrCri+LC+7s+Ind,0.000,0.080,0.137,0.180,0.206,0.246,0.260,0.274,0.286 +BrCri+LC+8s+Ind,0.000,0.070,0.120,0.158,0.180,0.215,0.228,0.240,0.250 +BrCri+LC+9s+Ind,0.000,0.062,0.107,0.140,0.160,0.191,0.202,0.213,0.222 +BrCri+LC+10s+Ind,0.000,0.056,0.096,0.126,0.144,0.172,0.182,0.192,0.200 +BrCri+MC+1s+Ind,0.000,0.560,0.960,1.000,1.000,1.000,1.000,1.000,1.000 +BrCri+MC+2s+Ind,0.000,0.280,0.480,0.630,0.720,0.860,0.910,0.960,1.000 +BrCri+MC+3s+Ind,0.000,0.187,0.320,0.420,0.480,0.573,0.607,0.640,0.667 +BrCri+MC+4s+Ind,0.000,0.140,0.240,0.315,0.360,0.430,0.455,0.480,0.500 +BrCri+MC+5s+Ind,0.000,0.112,0.192,0.252,0.288,0.344,0.364,0.384,0.400 +BrCri+MC+6s+Ind,0.000,0.093,0.160,0.210,0.240,0.287,0.303,0.320,0.333 +BrCri+MC+7s+Ind,0.000,0.080,0.137,0.180,0.206,0.246,0.260,0.274,0.286 +BrCri+MC+8s+Ind,0.000,0.070,0.120,0.158,0.180,0.215,0.228,0.240,0.250 +BrCri+MC+9s+Ind,0.000,0.062,0.107,0.140,0.160,0.191,0.202,0.213,0.222 +BrCri+MC+10s+Ind,0.000,0.056,0.096,0.126,0.144,0.172,0.182,0.192,0.200 +BrCri+HC+1s+Ind,0.000,0.560,0.960,1.000,1.000,1.000,1.000,1.000,1.000 +BrCri+HC+2s+Ind,0.000,0.280,0.480,0.630,0.720,0.860,0.910,0.960,1.000 +BrCri+HC+3s+Ind,0.000,0.187,0.320,0.420,0.480,0.573,0.607,0.640,0.667 +BrCri+HC+4s+Ind,0.000,0.140,0.240,0.315,0.360,0.430,0.455,0.480,0.500 +BrCri+HC+5s+Ind,0.000,0.112,0.192,0.252,0.288,0.344,0.364,0.384,0.400 +BrCri+HC+6s+Ind,0.000,0.093,0.160,0.210,0.240,0.287,0.303,0.320,0.333 +BrCri+HC+7s+Ind,0.000,0.080,0.137,0.180,0.206,0.246,0.260,0.274,0.286 +BrCri+HC+8s+Ind,0.000,0.070,0.120,0.158,0.180,0.215,0.228,0.240,0.250 +BrCri+HC+9s+Ind,0.000,0.062,0.107,0.140,0.160,0.191,0.202,0.213,0.222 +BrCri+HC+10s+Ind,0.000,0.056,0.096,0.126,0.144,0.172,0.182,0.192,0.200 +BrM+LC+1s+Ind,0.000,0.560,0.960,1.000,1.000,1.000,1.000,1.000,1.000 +BrM+LC+2s+Ind,0.000,0.280,0.480,0.630,0.720,0.860,0.910,0.960,1.000 +BrM+LC+3s+Ind,0.000,0.187,0.320,0.420,0.480,0.573,0.607,0.640,0.667 +BrM+LC+4s+Ind,0.000,0.140,0.240,0.315,0.360,0.430,0.455,0.480,0.500 +BrM+LC+5s+Ind,0.000,0.112,0.192,0.252,0.288,0.344,0.364,0.384,0.400 +BrM+LC+6s+Ind,0.000,0.093,0.160,0.210,0.240,0.287,0.303,0.320,0.333 +BrM+LC+7s+Ind,0.000,0.080,0.137,0.180,0.206,0.246,0.260,0.274,0.286 +BrM+LC+8s+Ind,0.000,0.070,0.120,0.158,0.180,0.215,0.228,0.240,0.250 +BrM+LC+9s+Ind,0.000,0.062,0.107,0.140,0.160,0.191,0.202,0.213,0.222 +BrM+LC+10s+Ind,0.000,0.056,0.096,0.126,0.144,0.172,0.182,0.192,0.200 +BrM+MC+1s+Ind,0.000,0.560,0.960,1.000,1.000,1.000,1.000,1.000,1.000 +BrM+MC+2s+Ind,0.000,0.280,0.480,0.630,0.720,0.860,0.910,0.960,1.000 +BrM+MC+3s+Ind,0.000,0.187,0.320,0.420,0.480,0.573,0.607,0.640,0.667 +BrM+MC+4s+Ind,0.000,0.140,0.240,0.315,0.360,0.430,0.455,0.480,0.500 +BrM+MC+5s+Ind,0.000,0.112,0.192,0.252,0.288,0.344,0.364,0.384,0.400 +BrM+MC+6s+Ind,0.000,0.093,0.160,0.210,0.240,0.287,0.303,0.320,0.333 +BrM+MC+7s+Ind,0.000,0.080,0.137,0.180,0.206,0.246,0.260,0.274,0.286 +BrM+MC+8s+Ind,0.000,0.070,0.120,0.158,0.180,0.215,0.228,0.240,0.250 +BrM+MC+9s+Ind,0.000,0.062,0.107,0.140,0.160,0.191,0.202,0.213,0.222 +BrM+MC+10s+Ind,0.000,0.056,0.096,0.126,0.144,0.172,0.182,0.192,0.200 +BrM+HC+1s+Ind,0.000,0.560,0.960,1.000,1.000,1.000,1.000,1.000,1.000 +BrM+HC+2s+Ind,0.000,0.280,0.480,0.630,0.720,0.860,0.910,0.960,1.000 +BrM+HC+3s+Ind,0.000,0.187,0.320,0.420,0.480,0.573,0.607,0.640,0.667 +BrM+HC+4s+Ind,0.000,0.140,0.240,0.315,0.360,0.430,0.455,0.480,0.500 +BrM+HC+5s+Ind,0.000,0.112,0.192,0.252,0.288,0.344,0.364,0.384,0.400 +BrM+HC+6s+Ind,0.000,0.093,0.160,0.210,0.240,0.287,0.303,0.320,0.333 +BrM+HC+7s+Ind,0.000,0.080,0.137,0.180,0.206,0.246,0.260,0.274,0.286 +BrM+HC+8s+Ind,0.000,0.070,0.120,0.158,0.180,0.215,0.228,0.240,0.250 +BrM+HC+9s+Ind,0.000,0.062,0.107,0.140,0.160,0.191,0.202,0.213,0.222 +BrM+HC+10s+Ind,0.000,0.056,0.096,0.126,0.144,0.172,0.182,0.192,0.200 +Adb+LC+1s+Ind,0.000,0.336,0.576,0.600,0.600,0.600,0.600,0.600,0.600 +Adb+LC+2s+Ind,0.000,0.168,0.288,0.378,0.432,0.516,0.546,0.576,0.600 +Adb+LC+3s+Ind,0.000,0.112,0.192,0.252,0.288,0.344,0.364,0.384,0.400 +Adb+LC+4s+Ind,0.000,0.084,0.144,0.189,0.216,0.258,0.273,0.288,0.300 +Adb+LC+5s+Ind,0.000,0.067,0.115,0.151,0.173,0.206,0.218,0.230,0.240 +Adb+LC+6s+Ind,0.000,0.056,0.096,0.126,0.144,0.172,0.182,0.192,0.200 +Adb+LC+7s+Ind,0.000,0.048,0.082,0.108,0.123,0.147,0.156,0.165,0.171 +Adb+LC+8s+Ind,0.000,0.042,0.072,0.095,0.108,0.129,0.137,0.144,0.150 +Adb+LC+9s+Ind,0.000,0.037,0.064,0.084,0.096,0.115,0.121,0.128,0.133 +Adb+LC+10s+Ind,0.000,0.034,0.058,0.076,0.086,0.103,0.109,0.115,0.120 +Adb+MC+1s+Ind,0.000,0.336,0.576,0.600,0.600,0.600,0.600,0.600,0.600 +Adb+MC+2s+Ind,0.000,0.168,0.288,0.378,0.432,0.516,0.546,0.576,0.600 +Adb+MC+3s+Ind,0.000,0.112,0.192,0.252,0.288,0.344,0.364,0.384,0.400 +Adb+MC+4s+Ind,0.000,0.084,0.144,0.189,0.216,0.258,0.273,0.288,0.300 +Adb+MC+5s+Ind,0.000,0.067,0.115,0.151,0.173,0.206,0.218,0.230,0.240 +Adb+MC+6s+Ind,0.000,0.056,0.096,0.126,0.144,0.172,0.182,0.192,0.200 +Adb+MC+7s+Ind,0.000,0.048,0.082,0.108,0.123,0.147,0.156,0.165,0.171 +Adb+MC+8s+Ind,0.000,0.042,0.072,0.095,0.108,0.129,0.137,0.144,0.150 +Adb+MC+9s+Ind,0.000,0.037,0.064,0.084,0.096,0.115,0.121,0.128,0.133 +Adb+MC+10s+Ind,0.000,0.034,0.058,0.076,0.086,0.103,0.109,0.115,0.120 +Adb+HC+1s+Ind,0.000,0.336,0.576,0.600,0.600,0.600,0.600,0.600,0.600 +Adb+HC+2s+Ind,0.000,0.168,0.288,0.378,0.432,0.516,0.546,0.576,0.600 +Adb+HC+3s+Ind,0.000,0.112,0.192,0.252,0.288,0.344,0.364,0.384,0.400 +Adb+HC+4s+Ind,0.000,0.084,0.144,0.189,0.216,0.258,0.273,0.288,0.300 +Adb+HC+5s+Ind,0.000,0.067,0.115,0.151,0.173,0.206,0.218,0.230,0.240 +Adb+HC+6s+Ind,0.000,0.056,0.096,0.126,0.144,0.172,0.182,0.192,0.200 +Adb+HC+7s+Ind,0.000,0.048,0.082,0.108,0.123,0.147,0.156,0.165,0.171 +Adb+HC+8s+Ind,0.000,0.042,0.072,0.095,0.108,0.129,0.137,0.144,0.150 +Adb+HC+9s+Ind,0.000,0.037,0.064,0.084,0.096,0.115,0.121,0.128,0.133 +Adb+HC+10s+Ind,0.000,0.034,0.058,0.076,0.086,0.103,0.109,0.115,0.120 +RCi+LC+1s+Ind,0.000,0.336,0.576,0.600,0.600,0.600,0.600,0.600,0.600 +RCi+LC+2s+Ind,0.000,0.168,0.288,0.378,0.432,0.516,0.546,0.576,0.600 +RCi+LC+3s+Ind,0.000,0.112,0.192,0.252,0.288,0.344,0.364,0.384,0.400 +RCi+LC+4s+Ind,0.000,0.084,0.144,0.189,0.216,0.258,0.273,0.288,0.300 +RCi+LC+5s+Ind,0.000,0.067,0.115,0.151,0.173,0.206,0.218,0.230,0.240 +RCi+LC+6s+Ind,0.000,0.056,0.096,0.126,0.144,0.172,0.182,0.192,0.200 +RCi+LC+7s+Ind,0.000,0.048,0.082,0.108,0.123,0.147,0.156,0.165,0.171 +RCi+LC+8s+Ind,0.000,0.042,0.072,0.095,0.108,0.129,0.137,0.144,0.150 +RCi+LC+9s+Ind,0.000,0.037,0.064,0.084,0.096,0.115,0.121,0.128,0.133 +RCi+LC+10s+Ind,0.000,0.034,0.058,0.076,0.086,0.103,0.109,0.115,0.120 +RCi+MC+1s+Ind,0.000,0.336,0.576,0.600,0.600,0.600,0.600,0.600,0.600 +RCi+MC+2s+Ind,0.000,0.168,0.288,0.378,0.432,0.516,0.546,0.576,0.600 +RCi+MC+3s+Ind,0.000,0.112,0.192,0.252,0.288,0.344,0.364,0.384,0.400 +RCi+MC+4s+Ind,0.000,0.084,0.144,0.189,0.216,0.258,0.273,0.288,0.300 +RCi+MC+5s+Ind,0.000,0.067,0.115,0.151,0.173,0.206,0.218,0.230,0.240 +RCi+MC+6s+Ind,0.000,0.056,0.096,0.126,0.144,0.172,0.182,0.192,0.200 +RCi+MC+7s+Ind,0.000,0.048,0.082,0.108,0.123,0.147,0.156,0.165,0.171 +RCi+MC+8s+Ind,0.000,0.042,0.072,0.095,0.108,0.129,0.137,0.144,0.150 +RCi+MC+9s+Ind,0.000,0.037,0.064,0.084,0.096,0.115,0.121,0.128,0.133 +RCi+MC+10s+Ind,0.000,0.034,0.058,0.076,0.086,0.103,0.109,0.115,0.120 +RCi+HC+1s+Ind,0.000,0.336,0.576,0.600,0.600,0.600,0.600,0.600,0.600 +RCi+HC+2s+Ind,0.000,0.168,0.288,0.378,0.432,0.516,0.546,0.576,0.600 +RCi+HC+3s+Ind,0.000,0.112,0.192,0.252,0.288,0.344,0.364,0.384,0.400 +RCi+HC+4s+Ind,0.000,0.084,0.144,0.189,0.216,0.258,0.273,0.288,0.300 +RCi+HC+5s+Ind,0.000,0.067,0.115,0.151,0.173,0.206,0.218,0.230,0.240 +RCi+HC+6s+Ind,0.000,0.056,0.096,0.126,0.144,0.172,0.182,0.192,0.200 +RCi+HC+7s+Ind,0.000,0.048,0.082,0.108,0.123,0.147,0.156,0.165,0.171 +RCi+HC+8s+Ind,0.000,0.042,0.072,0.095,0.108,0.129,0.137,0.144,0.150 +RCi+HC+9s+Ind,0.000,0.037,0.064,0.084,0.096,0.115,0.121,0.128,0.133 +RCi+HC+10s+Ind,0.000,0.034,0.058,0.076,0.086,0.103,0.109,0.115,0.120 +StMin+LC+1s+Ind,0.000,0.336,0.576,0.600,0.600,0.600,0.600,0.600,0.600 +StMin+LC+2s+Ind,0.000,0.168,0.288,0.378,0.432,0.516,0.546,0.576,0.600 +StMin+LC+3s+Ind,0.000,0.112,0.192,0.252,0.288,0.344,0.364,0.384,0.400 +StMin+LC+4s+Ind,0.000,0.084,0.144,0.189,0.216,0.258,0.273,0.288,0.300 +StMin+LC+5s+Ind,0.000,0.067,0.115,0.151,0.173,0.206,0.218,0.230,0.240 +StMin+LC+6s+Ind,0.000,0.056,0.096,0.126,0.144,0.172,0.182,0.192,0.200 +StMin+LC+7s+Ind,0.000,0.048,0.082,0.108,0.123,0.147,0.156,0.165,0.171 +StMin+LC+8s+Ind,0.000,0.042,0.072,0.095,0.108,0.129,0.137,0.144,0.150 +StMin+LC+9s+Ind,0.000,0.037,0.064,0.084,0.096,0.115,0.121,0.128,0.133 +StMin+LC+10s+Ind,0.000,0.034,0.058,0.076,0.086,0.103,0.109,0.115,0.120 +StMin+MC+1s+Ind,0.000,0.336,0.576,0.600,0.600,0.600,0.600,0.600,0.600 +StMin+MC+2s+Ind,0.000,0.168,0.288,0.378,0.432,0.516,0.546,0.576,0.600 +StMin+MC+3s+Ind,0.000,0.112,0.192,0.252,0.288,0.344,0.364,0.384,0.400 +StMin+MC+4s+Ind,0.000,0.084,0.144,0.189,0.216,0.258,0.273,0.288,0.300 +StMin+MC+5s+Ind,0.000,0.067,0.115,0.151,0.173,0.206,0.218,0.230,0.240 +StMin+MC+6s+Ind,0.000,0.056,0.096,0.126,0.144,0.172,0.182,0.192,0.200 +StMin+MC+7s+Ind,0.000,0.048,0.082,0.108,0.123,0.147,0.156,0.165,0.171 +StMin+MC+8s+Ind,0.000,0.042,0.072,0.095,0.108,0.129,0.137,0.144,0.150 +StMin+MC+9s+Ind,0.000,0.037,0.064,0.084,0.096,0.115,0.121,0.128,0.133 +StMin+MC+10s+Ind,0.000,0.034,0.058,0.076,0.086,0.103,0.109,0.115,0.120 +StMin+HC+1s+Ind,0.000,0.336,0.576,0.600,0.600,0.600,0.600,0.600,0.600 +StMin+HC+2s+Ind,0.000,0.168,0.288,0.378,0.432,0.516,0.546,0.576,0.600 +StMin+HC+3s+Ind,0.000,0.112,0.192,0.252,0.288,0.344,0.364,0.384,0.400 +StMin+HC+4s+Ind,0.000,0.084,0.144,0.189,0.216,0.258,0.273,0.288,0.300 +StMin+HC+5s+Ind,0.000,0.067,0.115,0.151,0.173,0.206,0.218,0.230,0.240 +StMin+HC+6s+Ind,0.000,0.056,0.096,0.126,0.144,0.172,0.182,0.192,0.200 +StMin+HC+7s+Ind,0.000,0.048,0.082,0.108,0.123,0.147,0.156,0.165,0.171 +StMin+HC+8s+Ind,0.000,0.042,0.072,0.095,0.108,0.129,0.137,0.144,0.150 +StMin+HC+9s+Ind,0.000,0.037,0.064,0.084,0.096,0.115,0.121,0.128,0.133 +StMin+HC+10s+Ind,0.000,0.034,0.058,0.076,0.086,0.103,0.109,0.115,0.120 +BrCfl+LC+1s+Agri,0.000,0.280,0.740,1.000,1.000,1.000,1.000,1.000,1.000 +BrCfl+LC+2s+Agri,0.000,0.140,0.370,0.520,0.560,0.660,0.830,0.990,1.000 +BrCfl+LC+3s+Agri,0.000,0.093,0.247,0.347,0.373,0.440,0.553,0.660,0.667 +BrCfl+LC+4s+Agri,0.000,0.070,0.185,0.260,0.280,0.330,0.415,0.495,0.500 +BrCfl+LC+5s+Agri,0.000,0.056,0.148,0.208,0.224,0.264,0.332,0.396,0.400 +BrCfl+LC+6s+Agri,0.000,0.047,0.123,0.173,0.187,0.220,0.277,0.330,0.333 +BrCfl+LC+7s+Agri,0.000,0.040,0.106,0.149,0.160,0.189,0.237,0.283,0.286 +BrCfl+LC+8s+Agri,0.000,0.035,0.092,0.130,0.140,0.165,0.207,0.247,0.250 +BrCfl+LC+9s+Agri,0.000,0.031,0.082,0.116,0.124,0.147,0.184,0.220,0.222 +BrCfl+LC+10s+Agri,0.000,0.028,0.074,0.104,0.112,0.132,0.166,0.198,0.200 +BrCfl+MC+1s+Agri,0.000,0.280,0.740,1.000,1.000,1.000,1.000,1.000,1.000 +BrCfl+MC+2s+Agri,0.000,0.140,0.370,0.520,0.560,0.660,0.830,0.990,1.000 +BrCfl+MC+3s+Agri,0.000,0.093,0.247,0.347,0.373,0.440,0.553,0.660,0.667 +BrCfl+MC+4s+Agri,0.000,0.070,0.185,0.260,0.280,0.330,0.415,0.495,0.500 +BrCfl+MC+5s+Agri,0.000,0.056,0.148,0.208,0.224,0.264,0.332,0.396,0.400 +BrCfl+MC+6s+Agri,0.000,0.047,0.123,0.173,0.187,0.220,0.277,0.330,0.333 +BrCfl+MC+7s+Agri,0.000,0.040,0.106,0.149,0.160,0.189,0.237,0.283,0.286 +BrCfl+MC+8s+Agri,0.000,0.035,0.092,0.130,0.140,0.165,0.207,0.247,0.250 +BrCfl+MC+9s+Agri,0.000,0.031,0.082,0.116,0.124,0.147,0.184,0.220,0.222 +BrCfl+MC+10s+Agri,0.000,0.028,0.074,0.104,0.112,0.132,0.166,0.198,0.200 +BrCfl+HC+1s+Agri,0.000,0.280,0.740,1.000,1.000,1.000,1.000,1.000,1.000 +BrCfl+HC+2s+Agri,0.000,0.140,0.370,0.520,0.560,0.660,0.830,0.990,1.000 +BrCfl+HC+3s+Agri,0.000,0.093,0.247,0.347,0.373,0.440,0.553,0.660,0.667 +BrCfl+HC+4s+Agri,0.000,0.070,0.185,0.260,0.280,0.330,0.415,0.495,0.500 +BrCfl+HC+5s+Agri,0.000,0.056,0.148,0.208,0.224,0.264,0.332,0.396,0.400 +BrCfl+HC+6s+Agri,0.000,0.047,0.123,0.173,0.187,0.220,0.277,0.330,0.333 +BrCfl+HC+7s+Agri,0.000,0.040,0.106,0.149,0.160,0.189,0.237,0.283,0.286 +BrCfl+HC+8s+Agri,0.000,0.035,0.092,0.130,0.140,0.165,0.207,0.247,0.250 +BrCfl+HC+9s+Agri,0.000,0.031,0.082,0.116,0.124,0.147,0.184,0.220,0.222 +BrCfl+HC+10s+Agri,0.000,0.028,0.074,0.104,0.112,0.132,0.166,0.198,0.200 +BrCri+LC+1s+Agri,0.000,0.280,0.740,1.000,1.000,1.000,1.000,1.000,1.000 +BrCri+LC+2s+Agri,0.000,0.140,0.370,0.520,0.560,0.660,0.830,0.990,1.000 +BrCri+LC+3s+Agri,0.000,0.093,0.247,0.347,0.373,0.440,0.553,0.660,0.667 +BrCri+LC+4s+Agri,0.000,0.070,0.185,0.260,0.280,0.330,0.415,0.495,0.500 +BrCri+LC+5s+Agri,0.000,0.056,0.148,0.208,0.224,0.264,0.332,0.396,0.400 +BrCri+LC+6s+Agri,0.000,0.047,0.123,0.173,0.187,0.220,0.277,0.330,0.333 +BrCri+LC+7s+Agri,0.000,0.040,0.106,0.149,0.160,0.189,0.237,0.283,0.286 +BrCri+LC+8s+Agri,0.000,0.035,0.092,0.130,0.140,0.165,0.207,0.247,0.250 +BrCri+LC+9s+Agri,0.000,0.031,0.082,0.116,0.124,0.147,0.184,0.220,0.222 +BrCri+LC+10s+Agri,0.000,0.028,0.074,0.104,0.112,0.132,0.166,0.198,0.200 +BrCri+MC+1s+Agri,0.000,0.280,0.740,1.000,1.000,1.000,1.000,1.000,1.000 +BrCri+MC+2s+Agri,0.000,0.140,0.370,0.520,0.560,0.660,0.830,0.990,1.000 +BrCri+MC+3s+Agri,0.000,0.093,0.247,0.347,0.373,0.440,0.553,0.660,0.667 +BrCri+MC+4s+Agri,0.000,0.070,0.185,0.260,0.280,0.330,0.415,0.495,0.500 +BrCri+MC+5s+Agri,0.000,0.056,0.148,0.208,0.224,0.264,0.332,0.396,0.400 +BrCri+MC+6s+Agri,0.000,0.047,0.123,0.173,0.187,0.220,0.277,0.330,0.333 +BrCri+MC+7s+Agri,0.000,0.040,0.106,0.149,0.160,0.189,0.237,0.283,0.286 +BrCri+MC+8s+Agri,0.000,0.035,0.092,0.130,0.140,0.165,0.207,0.247,0.250 +BrCri+MC+9s+Agri,0.000,0.031,0.082,0.116,0.124,0.147,0.184,0.220,0.222 +BrCri+MC+10s+Agri,0.000,0.028,0.074,0.104,0.112,0.132,0.166,0.198,0.200 +BrCri+HC+1s+Agri,0.000,0.280,0.740,1.000,1.000,1.000,1.000,1.000,1.000 +BrCri+HC+2s+Agri,0.000,0.140,0.370,0.520,0.560,0.660,0.830,0.990,1.000 +BrCri+HC+3s+Agri,0.000,0.093,0.247,0.347,0.373,0.440,0.553,0.660,0.667 +BrCri+HC+4s+Agri,0.000,0.070,0.185,0.260,0.280,0.330,0.415,0.495,0.500 +BrCri+HC+5s+Agri,0.000,0.056,0.148,0.208,0.224,0.264,0.332,0.396,0.400 +BrCri+HC+6s+Agri,0.000,0.047,0.123,0.173,0.187,0.220,0.277,0.330,0.333 +BrCri+HC+7s+Agri,0.000,0.040,0.106,0.149,0.160,0.189,0.237,0.283,0.286 +BrCri+HC+8s+Agri,0.000,0.035,0.092,0.130,0.140,0.165,0.207,0.247,0.250 +BrCri+HC+9s+Agri,0.000,0.031,0.082,0.116,0.124,0.147,0.184,0.220,0.222 +BrCri+HC+10s+Agri,0.000,0.028,0.074,0.104,0.112,0.132,0.166,0.198,0.200 +BrM+LC+1s+Agri,0.000,0.280,0.740,1.000,1.000,1.000,1.000,1.000,1.000 +BrM+LC+2s+Agri,0.000,0.140,0.370,0.520,0.560,0.660,0.830,0.990,1.000 +BrM+LC+3s+Agri,0.000,0.093,0.247,0.347,0.373,0.440,0.553,0.660,0.667 +BrM+LC+4s+Agri,0.000,0.070,0.185,0.260,0.280,0.330,0.415,0.495,0.500 +BrM+LC+5s+Agri,0.000,0.056,0.148,0.208,0.224,0.264,0.332,0.396,0.400 +BrM+LC+6s+Agri,0.000,0.047,0.123,0.173,0.187,0.220,0.277,0.330,0.333 +BrM+LC+7s+Agri,0.000,0.040,0.106,0.149,0.160,0.189,0.237,0.283,0.286 +BrM+LC+8s+Agri,0.000,0.035,0.092,0.130,0.140,0.165,0.207,0.247,0.250 +BrM+LC+9s+Agri,0.000,0.031,0.082,0.116,0.124,0.147,0.184,0.220,0.222 +BrM+LC+10s+Agri,0.000,0.028,0.074,0.104,0.112,0.132,0.166,0.198,0.200 +BrM+MC+1s+Agri,0.000,0.280,0.740,1.000,1.000,1.000,1.000,1.000,1.000 +BrM+MC+2s+Agri,0.000,0.140,0.370,0.520,0.560,0.660,0.830,0.990,1.000 +BrM+MC+3s+Agri,0.000,0.093,0.247,0.347,0.373,0.440,0.553,0.660,0.667 +BrM+MC+4s+Agri,0.000,0.070,0.185,0.260,0.280,0.330,0.415,0.495,0.500 +BrM+MC+5s+Agri,0.000,0.056,0.148,0.208,0.224,0.264,0.332,0.396,0.400 +BrM+MC+6s+Agri,0.000,0.047,0.123,0.173,0.187,0.220,0.277,0.330,0.333 +BrM+MC+7s+Agri,0.000,0.040,0.106,0.149,0.160,0.189,0.237,0.283,0.286 +BrM+MC+8s+Agri,0.000,0.035,0.092,0.130,0.140,0.165,0.207,0.247,0.250 +BrM+MC+9s+Agri,0.000,0.031,0.082,0.116,0.124,0.147,0.184,0.220,0.222 +BrM+MC+10s+Agri,0.000,0.028,0.074,0.104,0.112,0.132,0.166,0.198,0.200 +BrM+HC+1s+Agri,0.000,0.280,0.740,1.000,1.000,1.000,1.000,1.000,1.000 +BrM+HC+2s+Agri,0.000,0.140,0.370,0.520,0.560,0.660,0.830,0.990,1.000 +BrM+HC+3s+Agri,0.000,0.093,0.247,0.347,0.373,0.440,0.553,0.660,0.667 +BrM+HC+4s+Agri,0.000,0.070,0.185,0.260,0.280,0.330,0.415,0.495,0.500 +BrM+HC+5s+Agri,0.000,0.056,0.148,0.208,0.224,0.264,0.332,0.396,0.400 +BrM+HC+6s+Agri,0.000,0.047,0.123,0.173,0.187,0.220,0.277,0.330,0.333 +BrM+HC+7s+Agri,0.000,0.040,0.106,0.149,0.160,0.189,0.237,0.283,0.286 +BrM+HC+8s+Agri,0.000,0.035,0.092,0.130,0.140,0.165,0.207,0.247,0.250 +BrM+HC+9s+Agri,0.000,0.031,0.082,0.116,0.124,0.147,0.184,0.220,0.222 +BrM+HC+10s+Agri,0.000,0.028,0.074,0.104,0.112,0.132,0.166,0.198,0.200 +Adb+LC+1s+Agri,0.000,0.168,0.444,0.600,0.600,0.600,0.600,0.600,0.600 +Adb+LC+2s+Agri,0.000,0.084,0.222,0.312,0.336,0.396,0.498,0.594,0.600 +Adb+LC+3s+Agri,0.000,0.056,0.148,0.208,0.224,0.264,0.332,0.396,0.400 +Adb+LC+4s+Agri,0.000,0.042,0.111,0.156,0.168,0.198,0.249,0.297,0.300 +Adb+LC+5s+Agri,0.000,0.034,0.089,0.125,0.134,0.158,0.199,0.238,0.240 +Adb+LC+6s+Agri,0.000,0.028,0.074,0.104,0.112,0.132,0.166,0.198,0.200 +Adb+LC+7s+Agri,0.000,0.024,0.063,0.089,0.096,0.113,0.142,0.170,0.171 +Adb+LC+8s+Agri,0.000,0.021,0.056,0.078,0.084,0.099,0.124,0.148,0.150 +Adb+LC+9s+Agri,0.000,0.019,0.049,0.069,0.075,0.088,0.111,0.132,0.133 +Adb+LC+10s+Agri,0.000,0.017,0.044,0.062,0.067,0.079,0.100,0.119,0.120 +Adb+MC+1s+Agri,0.000,0.168,0.444,0.600,0.600,0.600,0.600,0.600,0.600 +Adb+MC+2s+Agri,0.000,0.084,0.222,0.312,0.336,0.396,0.498,0.594,0.600 +Adb+MC+3s+Agri,0.000,0.056,0.148,0.208,0.224,0.264,0.332,0.396,0.400 +Adb+MC+4s+Agri,0.000,0.042,0.111,0.156,0.168,0.198,0.249,0.297,0.300 +Adb+MC+5s+Agri,0.000,0.034,0.089,0.125,0.134,0.158,0.199,0.238,0.240 +Adb+MC+6s+Agri,0.000,0.028,0.074,0.104,0.112,0.132,0.166,0.198,0.200 +Adb+MC+7s+Agri,0.000,0.024,0.063,0.089,0.096,0.113,0.142,0.170,0.171 +Adb+MC+8s+Agri,0.000,0.021,0.056,0.078,0.084,0.099,0.124,0.148,0.150 +Adb+MC+9s+Agri,0.000,0.019,0.049,0.069,0.075,0.088,0.111,0.132,0.133 +Adb+MC+10s+Agri,0.000,0.017,0.044,0.062,0.067,0.079,0.100,0.119,0.120 +Adb+HC+1s+Agri,0.000,0.168,0.444,0.600,0.600,0.600,0.600,0.600,0.600 +Adb+HC+2s+Agri,0.000,0.084,0.222,0.312,0.336,0.396,0.498,0.594,0.600 +Adb+HC+3s+Agri,0.000,0.056,0.148,0.208,0.224,0.264,0.332,0.396,0.400 +Adb+HC+4s+Agri,0.000,0.042,0.111,0.156,0.168,0.198,0.249,0.297,0.300 +Adb+HC+5s+Agri,0.000,0.034,0.089,0.125,0.134,0.158,0.199,0.238,0.240 +Adb+HC+6s+Agri,0.000,0.028,0.074,0.104,0.112,0.132,0.166,0.198,0.200 +Adb+HC+7s+Agri,0.000,0.024,0.063,0.089,0.096,0.113,0.142,0.170,0.171 +Adb+HC+8s+Agri,0.000,0.021,0.056,0.078,0.084,0.099,0.124,0.148,0.150 +Adb+HC+9s+Agri,0.000,0.019,0.049,0.069,0.075,0.088,0.111,0.132,0.133 +Adb+HC+10s+Agri,0.000,0.017,0.044,0.062,0.067,0.079,0.100,0.119,0.120 +RCi+LC+1s+Agri,0.000,0.168,0.444,0.600,0.600,0.600,0.600,0.600,0.600 +RCi+LC+2s+Agri,0.000,0.084,0.222,0.312,0.336,0.396,0.498,0.594,0.600 +RCi+LC+3s+Agri,0.000,0.056,0.148,0.208,0.224,0.264,0.332,0.396,0.400 +RCi+LC+4s+Agri,0.000,0.042,0.111,0.156,0.168,0.198,0.249,0.297,0.300 +RCi+LC+5s+Agri,0.000,0.034,0.089,0.125,0.134,0.158,0.199,0.238,0.240 +RCi+LC+6s+Agri,0.000,0.028,0.074,0.104,0.112,0.132,0.166,0.198,0.200 +RCi+LC+7s+Agri,0.000,0.024,0.063,0.089,0.096,0.113,0.142,0.170,0.171 +RCi+LC+8s+Agri,0.000,0.021,0.056,0.078,0.084,0.099,0.124,0.148,0.150 +RCi+LC+9s+Agri,0.000,0.019,0.049,0.069,0.075,0.088,0.111,0.132,0.133 +RCi+LC+10s+Agri,0.000,0.017,0.044,0.062,0.067,0.079,0.100,0.119,0.120 +RCi+MC+1s+Agri,0.000,0.168,0.444,0.600,0.600,0.600,0.600,0.600,0.600 +RCi+MC+2s+Agri,0.000,0.084,0.222,0.312,0.336,0.396,0.498,0.594,0.600 +RCi+MC+3s+Agri,0.000,0.056,0.148,0.208,0.224,0.264,0.332,0.396,0.400 +RCi+MC+4s+Agri,0.000,0.042,0.111,0.156,0.168,0.198,0.249,0.297,0.300 +RCi+MC+5s+Agri,0.000,0.034,0.089,0.125,0.134,0.158,0.199,0.238,0.240 +RCi+MC+6s+Agri,0.000,0.028,0.074,0.104,0.112,0.132,0.166,0.198,0.200 +RCi+MC+7s+Agri,0.000,0.024,0.063,0.089,0.096,0.113,0.142,0.170,0.171 +RCi+MC+8s+Agri,0.000,0.021,0.056,0.078,0.084,0.099,0.124,0.148,0.150 +RCi+MC+9s+Agri,0.000,0.019,0.049,0.069,0.075,0.088,0.111,0.132,0.133 +RCi+MC+10s+Agri,0.000,0.017,0.044,0.062,0.067,0.079,0.100,0.119,0.120 +RCi+HC+1s+Agri,0.000,0.168,0.444,0.600,0.600,0.600,0.600,0.600,0.600 +RCi+HC+2s+Agri,0.000,0.084,0.222,0.312,0.336,0.396,0.498,0.594,0.600 +RCi+HC+3s+Agri,0.000,0.056,0.148,0.208,0.224,0.264,0.332,0.396,0.400 +RCi+HC+4s+Agri,0.000,0.042,0.111,0.156,0.168,0.198,0.249,0.297,0.300 +RCi+HC+5s+Agri,0.000,0.034,0.089,0.125,0.134,0.158,0.199,0.238,0.240 +RCi+HC+6s+Agri,0.000,0.028,0.074,0.104,0.112,0.132,0.166,0.198,0.200 +RCi+HC+7s+Agri,0.000,0.024,0.063,0.089,0.096,0.113,0.142,0.170,0.171 +RCi+HC+8s+Agri,0.000,0.021,0.056,0.078,0.084,0.099,0.124,0.148,0.150 +RCi+HC+9s+Agri,0.000,0.019,0.049,0.069,0.075,0.088,0.111,0.132,0.133 +RCi+HC+10s+Agri,0.000,0.017,0.044,0.062,0.067,0.079,0.100,0.119,0.120 +StMin+LC+1s+Agri,0.000,0.168,0.444,0.600,0.600,0.600,0.600,0.600,0.600 +StMin+LC+2s+Agri,0.000,0.084,0.222,0.312,0.336,0.396,0.498,0.594,0.600 +StMin+LC+3s+Agri,0.000,0.056,0.148,0.208,0.224,0.264,0.332,0.396,0.400 +StMin+LC+4s+Agri,0.000,0.042,0.111,0.156,0.168,0.198,0.249,0.297,0.300 +StMin+LC+5s+Agri,0.000,0.034,0.089,0.125,0.134,0.158,0.199,0.238,0.240 +StMin+LC+6s+Agri,0.000,0.028,0.074,0.104,0.112,0.132,0.166,0.198,0.200 +StMin+LC+7s+Agri,0.000,0.024,0.063,0.089,0.096,0.113,0.142,0.170,0.171 +StMin+LC+8s+Agri,0.000,0.021,0.056,0.078,0.084,0.099,0.124,0.148,0.150 +StMin+LC+9s+Agri,0.000,0.019,0.049,0.069,0.075,0.088,0.111,0.132,0.133 +StMin+LC+10s+Agri,0.000,0.017,0.044,0.062,0.067,0.079,0.100,0.119,0.120 +StMin+MC+1s+Agri,0.000,0.168,0.444,0.600,0.600,0.600,0.600,0.600,0.600 +StMin+MC+2s+Agri,0.000,0.084,0.222,0.312,0.336,0.396,0.498,0.594,0.600 +StMin+MC+3s+Agri,0.000,0.056,0.148,0.208,0.224,0.264,0.332,0.396,0.400 +StMin+MC+4s+Agri,0.000,0.042,0.111,0.156,0.168,0.198,0.249,0.297,0.300 +StMin+MC+5s+Agri,0.000,0.034,0.089,0.125,0.134,0.158,0.199,0.238,0.240 +StMin+MC+6s+Agri,0.000,0.028,0.074,0.104,0.112,0.132,0.166,0.198,0.200 +StMin+MC+7s+Agri,0.000,0.024,0.063,0.089,0.096,0.113,0.142,0.170,0.171 +StMin+MC+8s+Agri,0.000,0.021,0.056,0.078,0.084,0.099,0.124,0.148,0.150 +StMin+MC+9s+Agri,0.000,0.019,0.049,0.069,0.075,0.088,0.111,0.132,0.133 +StMin+MC+10s+Agri,0.000,0.017,0.044,0.062,0.067,0.079,0.100,0.119,0.120 +StMin+HC+1s+Agri,0.000,0.168,0.444,0.600,0.600,0.600,0.600,0.600,0.600 +StMin+HC+2s+Agri,0.000,0.084,0.222,0.312,0.336,0.396,0.498,0.594,0.600 +StMin+HC+3s+Agri,0.000,0.056,0.148,0.208,0.224,0.264,0.332,0.396,0.400 +StMin+HC+4s+Agri,0.000,0.042,0.111,0.156,0.168,0.198,0.249,0.297,0.300 +StMin+HC+5s+Agri,0.000,0.034,0.089,0.125,0.134,0.158,0.199,0.238,0.240 +StMin+HC+6s+Agri,0.000,0.028,0.074,0.104,0.112,0.132,0.166,0.198,0.200 +StMin+HC+7s+Agri,0.000,0.024,0.063,0.089,0.096,0.113,0.142,0.170,0.171 +StMin+HC+8s+Agri,0.000,0.021,0.056,0.078,0.084,0.099,0.124,0.148,0.150 +StMin+HC+9s+Agri,0.000,0.019,0.049,0.069,0.075,0.088,0.111,0.132,0.133 +StMin+HC+10s+Agri,0.000,0.017,0.044,0.062,0.067,0.079,0.100,0.119,0.120 +BrCfl+LC+1s+ResCom,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000 +BrCfl+LC+2s+ResCom,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000 +BrCfl+LC+3s+ResCom,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667 +BrCfl+LC+4s+ResCom,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500 +BrCfl+LC+5s+ResCom,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +BrCfl+LC+6s+ResCom,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333 +BrCfl+LC+7s+ResCom,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286 +BrCfl+LC+8s+ResCom,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250 +BrCfl+LC+9s+ResCom,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222 +BrCfl+LC+10s+ResCom,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +BrCfl+MC+1s+ResCom,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000 +BrCfl+MC+2s+ResCom,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000 +BrCfl+MC+3s+ResCom,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667 +BrCfl+MC+4s+ResCom,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500 +BrCfl+MC+5s+ResCom,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +BrCfl+MC+6s+ResCom,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333 +BrCfl+MC+7s+ResCom,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286 +BrCfl+MC+8s+ResCom,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250 +BrCfl+MC+9s+ResCom,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222 +BrCfl+MC+10s+ResCom,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +BrCfl+HC+1s+ResCom,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000 +BrCfl+HC+2s+ResCom,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000 +BrCfl+HC+3s+ResCom,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667 +BrCfl+HC+4s+ResCom,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500 +BrCfl+HC+5s+ResCom,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +BrCfl+HC+6s+ResCom,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333 +BrCfl+HC+7s+ResCom,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286 +BrCfl+HC+8s+ResCom,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250 +BrCfl+HC+9s+ResCom,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222 +BrCfl+HC+10s+ResCom,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +BrCri+LC+1s+ResCom,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000 +BrCri+LC+2s+ResCom,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000 +BrCri+LC+3s+ResCom,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667 +BrCri+LC+4s+ResCom,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500 +BrCri+LC+5s+ResCom,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +BrCri+LC+6s+ResCom,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333 +BrCri+LC+7s+ResCom,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286 +BrCri+LC+8s+ResCom,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250 +BrCri+LC+9s+ResCom,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222 +BrCri+LC+10s+ResCom,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +BrCri+MC+1s+ResCom,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000 +BrCri+MC+2s+ResCom,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000 +BrCri+MC+3s+ResCom,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667 +BrCri+MC+4s+ResCom,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500 +BrCri+MC+5s+ResCom,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +BrCri+MC+6s+ResCom,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333 +BrCri+MC+7s+ResCom,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286 +BrCri+MC+8s+ResCom,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250 +BrCri+MC+9s+ResCom,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222 +BrCri+MC+10s+ResCom,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +BrCri+HC+1s+ResCom,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000 +BrCri+HC+2s+ResCom,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000 +BrCri+HC+3s+ResCom,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667 +BrCri+HC+4s+ResCom,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500 +BrCri+HC+5s+ResCom,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +BrCri+HC+6s+ResCom,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333 +BrCri+HC+7s+ResCom,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286 +BrCri+HC+8s+ResCom,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250 +BrCri+HC+9s+ResCom,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222 +BrCri+HC+10s+ResCom,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +BrM+LC+1s+ResCom,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000 +BrM+LC+2s+ResCom,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000 +BrM+LC+3s+ResCom,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667 +BrM+LC+4s+ResCom,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500 +BrM+LC+5s+ResCom,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +BrM+LC+6s+ResCom,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333 +BrM+LC+7s+ResCom,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286 +BrM+LC+8s+ResCom,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250 +BrM+LC+9s+ResCom,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222 +BrM+LC+10s+ResCom,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +BrM+MC+1s+ResCom,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000 +BrM+MC+2s+ResCom,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000 +BrM+MC+3s+ResCom,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667 +BrM+MC+4s+ResCom,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500 +BrM+MC+5s+ResCom,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +BrM+MC+6s+ResCom,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333 +BrM+MC+7s+ResCom,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286 +BrM+MC+8s+ResCom,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250 +BrM+MC+9s+ResCom,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222 +BrM+MC+10s+ResCom,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +BrM+HC+1s+ResCom,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000 +BrM+HC+2s+ResCom,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000 +BrM+HC+3s+ResCom,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667 +BrM+HC+4s+ResCom,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500 +BrM+HC+5s+ResCom,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +BrM+HC+6s+ResCom,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333 +BrM+HC+7s+ResCom,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286 +BrM+HC+8s+ResCom,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250 +BrM+HC+9s+ResCom,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222 +BrM+HC+10s+ResCom,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +Adb+LC+1s+ResCom,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600 +Adb+LC+2s+ResCom,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600 +Adb+LC+3s+ResCom,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +Adb+LC+4s+ResCom,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300 +Adb+LC+5s+ResCom,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240 +Adb+LC+6s+ResCom,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +Adb+LC+7s+ResCom,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171 +Adb+LC+8s+ResCom,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150 +Adb+LC+9s+ResCom,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133 +Adb+LC+10s+ResCom,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120 +Adb+MC+1s+ResCom,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600 +Adb+MC+2s+ResCom,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600 +Adb+MC+3s+ResCom,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +Adb+MC+4s+ResCom,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300 +Adb+MC+5s+ResCom,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240 +Adb+MC+6s+ResCom,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +Adb+MC+7s+ResCom,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171 +Adb+MC+8s+ResCom,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150 +Adb+MC+9s+ResCom,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133 +Adb+MC+10s+ResCom,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120 +Adb+HC+1s+ResCom,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600 +Adb+HC+2s+ResCom,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600 +Adb+HC+3s+ResCom,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +Adb+HC+4s+ResCom,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300 +Adb+HC+5s+ResCom,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240 +Adb+HC+6s+ResCom,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +Adb+HC+7s+ResCom,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171 +Adb+HC+8s+ResCom,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150 +Adb+HC+9s+ResCom,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133 +Adb+HC+10s+ResCom,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120 +RCi+LC+1s+ResCom,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600 +RCi+LC+2s+ResCom,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600 +RCi+LC+3s+ResCom,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +RCi+LC+4s+ResCom,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300 +RCi+LC+5s+ResCom,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240 +RCi+LC+6s+ResCom,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +RCi+LC+7s+ResCom,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171 +RCi+LC+8s+ResCom,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150 +RCi+LC+9s+ResCom,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133 +RCi+LC+10s+ResCom,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120 +RCi+MC+1s+ResCom,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600 +RCi+MC+2s+ResCom,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600 +RCi+MC+3s+ResCom,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +RCi+MC+4s+ResCom,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300 +RCi+MC+5s+ResCom,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240 +RCi+MC+6s+ResCom,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +RCi+MC+7s+ResCom,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171 +RCi+MC+8s+ResCom,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150 +RCi+MC+9s+ResCom,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133 +RCi+MC+10s+ResCom,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120 +RCi+HC+1s+ResCom,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600 +RCi+HC+2s+ResCom,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600 +RCi+HC+3s+ResCom,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +RCi+HC+4s+ResCom,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300 +RCi+HC+5s+ResCom,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240 +RCi+HC+6s+ResCom,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +RCi+HC+7s+ResCom,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171 +RCi+HC+8s+ResCom,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150 +RCi+HC+9s+ResCom,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133 +RCi+HC+10s+ResCom,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120 +StMin+LC+1s+ResCom,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600 +StMin+LC+2s+ResCom,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600 +StMin+LC+3s+ResCom,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +StMin+LC+4s+ResCom,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300 +StMin+LC+5s+ResCom,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240 +StMin+LC+6s+ResCom,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +StMin+LC+7s+ResCom,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171 +StMin+LC+8s+ResCom,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150 +StMin+LC+9s+ResCom,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133 +StMin+LC+10s+ResCom,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120 +StMin+MC+1s+ResCom,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600 +StMin+MC+2s+ResCom,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600 +StMin+MC+3s+ResCom,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +StMin+MC+4s+ResCom,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300 +StMin+MC+5s+ResCom,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240 +StMin+MC+6s+ResCom,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +StMin+MC+7s+ResCom,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171 +StMin+MC+8s+ResCom,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150 +StMin+MC+9s+ResCom,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133 +StMin+MC+10s+ResCom,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120 +StMin+HC+1s+ResCom,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600 +StMin+HC+2s+ResCom,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600 +StMin+HC+3s+ResCom,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +StMin+HC+4s+ResCom,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300 +StMin+HC+5s+ResCom,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240 +StMin+HC+6s+ResCom,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +StMin+HC+7s+ResCom,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171 +StMin+HC+8s+ResCom,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150 +StMin+HC+9s+ResCom,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133 +StMin+HC+10s+ResCom,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120 +BrCfl+LC+1s+Edu,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000 +BrCfl+LC+2s+Edu,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000 +BrCfl+LC+3s+Edu,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667 +BrCfl+LC+4s+Edu,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500 +BrCfl+LC+5s+Edu,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +BrCfl+LC+6s+Edu,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333 +BrCfl+LC+7s+Edu,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286 +BrCfl+LC+8s+Edu,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250 +BrCfl+LC+9s+Edu,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222 +BrCfl+LC+10s+Edu,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +BrCfl+MC+1s+Edu,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000 +BrCfl+MC+2s+Edu,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000 +BrCfl+MC+3s+Edu,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667 +BrCfl+MC+4s+Edu,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500 +BrCfl+MC+5s+Edu,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +BrCfl+MC+6s+Edu,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333 +BrCfl+MC+7s+Edu,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286 +BrCfl+MC+8s+Edu,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250 +BrCfl+MC+9s+Edu,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222 +BrCfl+MC+10s+Edu,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +BrCfl+HC+1s+Edu,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000 +BrCfl+HC+2s+Edu,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000 +BrCfl+HC+3s+Edu,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667 +BrCfl+HC+4s+Edu,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500 +BrCfl+HC+5s+Edu,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +BrCfl+HC+6s+Edu,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333 +BrCfl+HC+7s+Edu,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286 +BrCfl+HC+8s+Edu,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250 +BrCfl+HC+9s+Edu,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222 +BrCfl+HC+10s+Edu,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +BrCri+LC+1s+Edu,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000 +BrCri+LC+2s+Edu,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000 +BrCri+LC+3s+Edu,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667 +BrCri+LC+4s+Edu,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500 +BrCri+LC+5s+Edu,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +BrCri+LC+6s+Edu,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333 +BrCri+LC+7s+Edu,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286 +BrCri+LC+8s+Edu,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250 +BrCri+LC+9s+Edu,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222 +BrCri+LC+10s+Edu,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +BrCri+MC+1s+Edu,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000 +BrCri+MC+2s+Edu,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000 +BrCri+MC+3s+Edu,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667 +BrCri+MC+4s+Edu,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500 +BrCri+MC+5s+Edu,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +BrCri+MC+6s+Edu,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333 +BrCri+MC+7s+Edu,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286 +BrCri+MC+8s+Edu,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250 +BrCri+MC+9s+Edu,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222 +BrCri+MC+10s+Edu,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +BrCri+HC+1s+Edu,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000 +BrCri+HC+2s+Edu,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000 +BrCri+HC+3s+Edu,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667 +BrCri+HC+4s+Edu,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500 +BrCri+HC+5s+Edu,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +BrCri+HC+6s+Edu,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333 +BrCri+HC+7s+Edu,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286 +BrCri+HC+8s+Edu,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250 +BrCri+HC+9s+Edu,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222 +BrCri+HC+10s+Edu,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +BrM+LC+1s+Edu,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000 +BrM+LC+2s+Edu,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000 +BrM+LC+3s+Edu,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667 +BrM+LC+4s+Edu,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500 +BrM+LC+5s+Edu,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +BrM+LC+6s+Edu,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333 +BrM+LC+7s+Edu,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286 +BrM+LC+8s+Edu,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250 +BrM+LC+9s+Edu,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222 +BrM+LC+10s+Edu,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +BrM+MC+1s+Edu,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000 +BrM+MC+2s+Edu,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000 +BrM+MC+3s+Edu,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667 +BrM+MC+4s+Edu,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500 +BrM+MC+5s+Edu,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +BrM+MC+6s+Edu,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333 +BrM+MC+7s+Edu,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286 +BrM+MC+8s+Edu,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250 +BrM+MC+9s+Edu,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222 +BrM+MC+10s+Edu,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +BrM+HC+1s+Edu,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000 +BrM+HC+2s+Edu,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000 +BrM+HC+3s+Edu,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667 +BrM+HC+4s+Edu,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500 +BrM+HC+5s+Edu,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +BrM+HC+6s+Edu,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333 +BrM+HC+7s+Edu,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286 +BrM+HC+8s+Edu,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250 +BrM+HC+9s+Edu,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222 +BrM+HC+10s+Edu,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +Adb+LC+1s+Edu,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600 +Adb+LC+2s+Edu,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600 +Adb+LC+3s+Edu,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +Adb+LC+4s+Edu,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300 +Adb+LC+5s+Edu,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240 +Adb+LC+6s+Edu,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +Adb+LC+7s+Edu,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171 +Adb+LC+8s+Edu,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150 +Adb+LC+9s+Edu,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133 +Adb+LC+10s+Edu,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120 +Adb+MC+1s+Edu,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600 +Adb+MC+2s+Edu,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600 +Adb+MC+3s+Edu,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +Adb+MC+4s+Edu,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300 +Adb+MC+5s+Edu,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240 +Adb+MC+6s+Edu,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +Adb+MC+7s+Edu,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171 +Adb+MC+8s+Edu,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150 +Adb+MC+9s+Edu,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133 +Adb+MC+10s+Edu,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120 +Adb+HC+1s+Edu,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600 +Adb+HC+2s+Edu,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600 +Adb+HC+3s+Edu,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +Adb+HC+4s+Edu,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300 +Adb+HC+5s+Edu,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240 +Adb+HC+6s+Edu,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +Adb+HC+7s+Edu,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171 +Adb+HC+8s+Edu,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150 +Adb+HC+9s+Edu,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133 +Adb+HC+10s+Edu,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120 +RCi+LC+1s+Edu,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600 +RCi+LC+2s+Edu,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600 +RCi+LC+3s+Edu,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +RCi+LC+4s+Edu,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300 +RCi+LC+5s+Edu,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240 +RCi+LC+6s+Edu,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +RCi+LC+7s+Edu,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171 +RCi+LC+8s+Edu,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150 +RCi+LC+9s+Edu,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133 +RCi+LC+10s+Edu,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120 +RCi+MC+1s+Edu,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600 +RCi+MC+2s+Edu,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600 +RCi+MC+3s+Edu,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +RCi+MC+4s+Edu,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300 +RCi+MC+5s+Edu,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240 +RCi+MC+6s+Edu,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +RCi+MC+7s+Edu,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171 +RCi+MC+8s+Edu,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150 +RCi+MC+9s+Edu,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133 +RCi+MC+10s+Edu,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120 +RCi+HC+1s+Edu,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600 +RCi+HC+2s+Edu,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600 +RCi+HC+3s+Edu,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +RCi+HC+4s+Edu,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300 +RCi+HC+5s+Edu,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240 +RCi+HC+6s+Edu,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +RCi+HC+7s+Edu,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171 +RCi+HC+8s+Edu,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150 +RCi+HC+9s+Edu,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133 +RCi+HC+10s+Edu,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120 +StMin+LC+1s+Edu,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600 +StMin+LC+2s+Edu,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600 +StMin+LC+3s+Edu,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +StMin+LC+4s+Edu,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300 +StMin+LC+5s+Edu,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240 +StMin+LC+6s+Edu,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +StMin+LC+7s+Edu,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171 +StMin+LC+8s+Edu,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150 +StMin+LC+9s+Edu,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133 +StMin+LC+10s+Edu,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120 +StMin+MC+1s+Edu,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600 +StMin+MC+2s+Edu,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600 +StMin+MC+3s+Edu,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +StMin+MC+4s+Edu,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300 +StMin+MC+5s+Edu,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240 +StMin+MC+6s+Edu,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +StMin+MC+7s+Edu,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171 +StMin+MC+8s+Edu,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150 +StMin+MC+9s+Edu,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133 +StMin+MC+10s+Edu,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120 +StMin+HC+1s+Edu,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600 +StMin+HC+2s+Edu,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600 +StMin+HC+3s+Edu,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +StMin+HC+4s+Edu,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300 +StMin+HC+5s+Edu,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240 +StMin+HC+6s+Edu,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +StMin+HC+7s+Edu,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171 +StMin+HC+8s+Edu,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150 +StMin+HC+9s+Edu,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133 +StMin+HC+10s+Edu,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120 +BrCfl+LC+1s+Hea,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000 +BrCfl+LC+2s+Hea,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000 +BrCfl+LC+3s+Hea,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667 +BrCfl+LC+4s+Hea,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500 +BrCfl+LC+5s+Hea,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +BrCfl+LC+6s+Hea,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333 +BrCfl+LC+7s+Hea,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286 +BrCfl+LC+8s+Hea,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250 +BrCfl+LC+9s+Hea,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222 +BrCfl+LC+10s+Hea,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +BrCfl+MC+1s+Hea,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000 +BrCfl+MC+2s+Hea,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000 +BrCfl+MC+3s+Hea,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667 +BrCfl+MC+4s+Hea,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500 +BrCfl+MC+5s+Hea,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +BrCfl+MC+6s+Hea,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333 +BrCfl+MC+7s+Hea,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286 +BrCfl+MC+8s+Hea,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250 +BrCfl+MC+9s+Hea,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222 +BrCfl+MC+10s+Hea,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +BrCfl+HC+1s+Hea,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000 +BrCfl+HC+2s+Hea,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000 +BrCfl+HC+3s+Hea,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667 +BrCfl+HC+4s+Hea,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500 +BrCfl+HC+5s+Hea,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +BrCfl+HC+6s+Hea,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333 +BrCfl+HC+7s+Hea,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286 +BrCfl+HC+8s+Hea,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250 +BrCfl+HC+9s+Hea,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222 +BrCfl+HC+10s+Hea,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +BrCri+LC+1s+Hea,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000 +BrCri+LC+2s+Hea,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000 +BrCri+LC+3s+Hea,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667 +BrCri+LC+4s+Hea,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500 +BrCri+LC+5s+Hea,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +BrCri+LC+6s+Hea,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333 +BrCri+LC+7s+Hea,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286 +BrCri+LC+8s+Hea,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250 +BrCri+LC+9s+Hea,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222 +BrCri+LC+10s+Hea,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +BrCri+MC+1s+Hea,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000 +BrCri+MC+2s+Hea,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000 +BrCri+MC+3s+Hea,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667 +BrCri+MC+4s+Hea,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500 +BrCri+MC+5s+Hea,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +BrCri+MC+6s+Hea,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333 +BrCri+MC+7s+Hea,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286 +BrCri+MC+8s+Hea,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250 +BrCri+MC+9s+Hea,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222 +BrCri+MC+10s+Hea,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +BrCri+HC+1s+Hea,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000 +BrCri+HC+2s+Hea,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000 +BrCri+HC+3s+Hea,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667 +BrCri+HC+4s+Hea,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500 +BrCri+HC+5s+Hea,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +BrCri+HC+6s+Hea,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333 +BrCri+HC+7s+Hea,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286 +BrCri+HC+8s+Hea,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250 +BrCri+HC+9s+Hea,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222 +BrCri+HC+10s+Hea,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +BrM+LC+1s+Hea,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000 +BrM+LC+2s+Hea,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000 +BrM+LC+3s+Hea,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667 +BrM+LC+4s+Hea,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500 +BrM+LC+5s+Hea,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +BrM+LC+6s+Hea,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333 +BrM+LC+7s+Hea,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286 +BrM+LC+8s+Hea,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250 +BrM+LC+9s+Hea,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222 +BrM+LC+10s+Hea,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +BrM+MC+1s+Hea,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000 +BrM+MC+2s+Hea,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000 +BrM+MC+3s+Hea,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667 +BrM+MC+4s+Hea,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500 +BrM+MC+5s+Hea,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +BrM+MC+6s+Hea,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333 +BrM+MC+7s+Hea,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286 +BrM+MC+8s+Hea,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250 +BrM+MC+9s+Hea,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222 +BrM+MC+10s+Hea,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +BrM+HC+1s+Hea,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000 +BrM+HC+2s+Hea,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000 +BrM+HC+3s+Hea,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667 +BrM+HC+4s+Hea,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500 +BrM+HC+5s+Hea,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +BrM+HC+6s+Hea,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333 +BrM+HC+7s+Hea,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286 +BrM+HC+8s+Hea,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250 +BrM+HC+9s+Hea,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222 +BrM+HC+10s+Hea,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +Adb+LC+1s+Hea,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600 +Adb+LC+2s+Hea,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600 +Adb+LC+3s+Hea,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +Adb+LC+4s+Hea,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300 +Adb+LC+5s+Hea,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240 +Adb+LC+6s+Hea,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +Adb+LC+7s+Hea,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171 +Adb+LC+8s+Hea,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150 +Adb+LC+9s+Hea,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133 +Adb+LC+10s+Hea,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120 +Adb+MC+1s+Hea,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600 +Adb+MC+2s+Hea,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600 +Adb+MC+3s+Hea,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +Adb+MC+4s+Hea,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300 +Adb+MC+5s+Hea,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240 +Adb+MC+6s+Hea,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +Adb+MC+7s+Hea,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171 +Adb+MC+8s+Hea,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150 +Adb+MC+9s+Hea,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133 +Adb+MC+10s+Hea,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120 +Adb+HC+1s+Hea,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600 +Adb+HC+2s+Hea,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600 +Adb+HC+3s+Hea,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +Adb+HC+4s+Hea,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300 +Adb+HC+5s+Hea,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240 +Adb+HC+6s+Hea,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +Adb+HC+7s+Hea,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171 +Adb+HC+8s+Hea,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150 +Adb+HC+9s+Hea,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133 +Adb+HC+10s+Hea,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120 +RCi+LC+1s+Hea,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600 +RCi+LC+2s+Hea,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600 +RCi+LC+3s+Hea,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +RCi+LC+4s+Hea,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300 +RCi+LC+5s+Hea,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240 +RCi+LC+6s+Hea,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +RCi+LC+7s+Hea,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171 +RCi+LC+8s+Hea,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150 +RCi+LC+9s+Hea,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133 +RCi+LC+10s+Hea,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120 +RCi+MC+1s+Hea,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600 +RCi+MC+2s+Hea,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600 +RCi+MC+3s+Hea,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +RCi+MC+4s+Hea,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300 +RCi+MC+5s+Hea,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240 +RCi+MC+6s+Hea,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +RCi+MC+7s+Hea,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171 +RCi+MC+8s+Hea,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150 +RCi+MC+9s+Hea,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133 +RCi+MC+10s+Hea,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120 +RCi+HC+1s+Hea,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600 +RCi+HC+2s+Hea,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600 +RCi+HC+3s+Hea,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +RCi+HC+4s+Hea,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300 +RCi+HC+5s+Hea,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240 +RCi+HC+6s+Hea,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +RCi+HC+7s+Hea,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171 +RCi+HC+8s+Hea,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150 +RCi+HC+9s+Hea,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133 +RCi+HC+10s+Hea,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120 +StMin+LC+1s+Hea,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600 +StMin+LC+2s+Hea,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600 +StMin+LC+3s+Hea,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +StMin+LC+4s+Hea,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300 +StMin+LC+5s+Hea,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240 +StMin+LC+6s+Hea,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +StMin+LC+7s+Hea,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171 +StMin+LC+8s+Hea,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150 +StMin+LC+9s+Hea,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133 +StMin+LC+10s+Hea,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120 +StMin+MC+1s+Hea,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600 +StMin+MC+2s+Hea,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600 +StMin+MC+3s+Hea,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +StMin+MC+4s+Hea,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300 +StMin+MC+5s+Hea,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240 +StMin+MC+6s+Hea,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +StMin+MC+7s+Hea,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171 +StMin+MC+8s+Hea,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150 +StMin+MC+9s+Hea,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133 +StMin+MC+10s+Hea,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120 +StMin+HC+1s+Hea,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600 +StMin+HC+2s+Hea,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600 +StMin+HC+3s+Hea,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400 +StMin+HC+4s+Hea,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300 +StMin+HC+5s+Hea,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240 +StMin+HC+6s+Hea,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200 +StMin+HC+7s+Hea,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171 +StMin+HC+8s+Hea,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150 +StMin+HC+9s+Hea,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133 +StMin+HC+10s+Hea,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120 \ No newline at end of file diff --git a/hazard_debris.geojson b/hazard_debris.geojson new file mode 100644 index 0000000000000000000000000000000000000000..ebcb0239bfa66a97e27a36f2c67c598b0c95dd9e --- /dev/null +++ b/hazard_debris.geojson @@ -0,0 +1,1006 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "im": 0.00014148 }, "geometry": { "type": "Point", "coordinates": [ 85.311965703724567, 27.625722981169012 ] } }, +{ "type": "Feature", "properties": { "im": 1.17257474 }, "geometry": { "type": "Point", "coordinates": [ 85.310399634258332, 27.623647317670173 ] } }, +{ "type": "Feature", "properties": { "im": 1.999e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.3125747307392, 27.625151241522673 ] } }, +{ "type": "Feature", "properties": { "im": 1.9999999999999999e-07 }, "geometry": { "type": "Point", "coordinates": [ 85.31364363529552, 27.622963715919024 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.309728461629945, 27.6236348885474 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.31289788793066, 27.620900481542833 ] } }, +{ "type": "Feature", "properties": { "im": 2.925e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.310971373904735, 27.624765938717452 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310573641976802, 27.626008850992257 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310511496363048, 27.627848361158925 ] } }, +{ "type": "Feature", "properties": { "im": 0.00067486 }, "geometry": { "type": "Point", "coordinates": [ 85.313656064418268, 27.623448451706132 ] } }, +{ "type": "Feature", "properties": { "im": 0.13296818 }, "geometry": { "type": "Point", "coordinates": [ 85.313506914945307, 27.624045049598028 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314526103010635, 27.622665416973039 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312686592843946, 27.627450629231021 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.309815465489166, 27.624753509594669 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311257243727923, 27.622168252063133 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.309902469348415, 27.625660835555333 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311953274601819, 27.62807208536838 ] } }, +{ "type": "Feature", "properties": { "im": 0.00495482 }, "geometry": { "type": "Point", "coordinates": [ 85.312972462667162, 27.626555732393147 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313308048981341, 27.62623257520174 ] } }, +{ "type": "Feature", "properties": { "im": 1.118e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.3129600335444, 27.625200958013625 ] } }, +{ "type": "Feature", "properties": { "im": 0.34207191 }, "geometry": { "type": "Point", "coordinates": [ 85.313245903367601, 27.623597601179117 ] } }, +{ "type": "Feature", "properties": { "im": 0.00371292 }, "geometry": { "type": "Point", "coordinates": [ 85.311182668991449, 27.62522581625916 ] } }, +{ "type": "Feature", "properties": { "im": 0.23757105 }, "geometry": { "type": "Point", "coordinates": [ 85.312612018107444, 27.626294720815398 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311866270742584, 27.622304972413346 ] } }, +{ "type": "Feature", "properties": { "im": 0.46978701 }, "geometry": { "type": "Point", "coordinates": [ 85.313469627577064, 27.624529785385263 ] } }, +{ "type": "Feature", "properties": { "im": 2.02377149 }, "geometry": { "type": "Point", "coordinates": [ 85.312388293897996, 27.626779456602641 ] } }, +{ "type": "Feature", "properties": { "im": 2.37214085 }, "geometry": { "type": "Point", "coordinates": [ 85.312152140565786, 27.626754598357095 ] } }, +{ "type": "Feature", "properties": { "im": 0.32251571 }, "geometry": { "type": "Point", "coordinates": [ 85.313531773190803, 27.622329830658881 ] } }, +{ "type": "Feature", "properties": { "im": 1.067e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.314637965115367, 27.621633799784959 ] } }, +{ "type": "Feature", "properties": { "im": 0.12771617 }, "geometry": { "type": "Point", "coordinates": [ 85.313817643014005, 27.62484051345395 ] } }, +{ "type": "Feature", "properties": { "im": 0.27704253 }, "geometry": { "type": "Point", "coordinates": [ 85.312748738457685, 27.623411164337877 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312089994952046, 27.622280114167822 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311741979515091, 27.628333096946111 ] } }, +{ "type": "Feature", "properties": { "im": 0.40831541 }, "geometry": { "type": "Point", "coordinates": [ 85.312736309334937, 27.62645629941116 ] } }, +{ "type": "Feature", "properties": { "im": 0.26161316 }, "geometry": { "type": "Point", "coordinates": [ 85.31337019459508, 27.622715133464041 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310772507940783, 27.626046138360444 ] } }, +{ "type": "Feature", "properties": { "im": 0.24457994 }, "geometry": { "type": "Point", "coordinates": [ 85.313208615999358, 27.623784038020354 ] } }, +{ "type": "Feature", "properties": { "im": 0.00268649 }, "geometry": { "type": "Point", "coordinates": [ 85.312139711443038, 27.625946705378531 ] } }, +{ "type": "Feature", "properties": { "im": 0.0015668 }, "geometry": { "type": "Point", "coordinates": [ 85.312947604421652, 27.625076666786097 ] } }, +{ "type": "Feature", "properties": { "im": 0.00308552 }, "geometry": { "type": "Point", "coordinates": [ 85.310859511800004, 27.627922935895452 ] } }, +{ "type": "Feature", "properties": { "im": 0.00020524 }, "geometry": { "type": "Point", "coordinates": [ 85.311480967937399, 27.626282291692682 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.315259421252762, 27.621248496979799 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313680922663778, 27.623212298373971 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310250484785342, 27.628494675541834 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311990561970049, 27.622180681185871 ] } }, +{ "type": "Feature", "properties": { "im": 0.16568602 }, "geometry": { "type": "Point", "coordinates": [ 85.312810884071425, 27.623436022583427 ] } }, +{ "type": "Feature", "properties": { "im": 1.905e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.313618777050053, 27.622578413113821 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310747649695273, 27.627413341862713 ] } }, +{ "type": "Feature", "properties": { "im": 0.21915665 }, "geometry": { "type": "Point", "coordinates": [ 85.312002991092811, 27.62489022994491 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312885458807926, 27.622652987850262 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.31337019459508, 27.620888052420089 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310250484785357, 27.626108283974268 ] } }, +{ "type": "Feature", "properties": { "im": 4.652e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.310958944781987, 27.624591930998982 ] } }, +{ "type": "Feature", "properties": { "im": 0.00274013 }, "geometry": { "type": "Point", "coordinates": [ 85.311393964078164, 27.62362245942462 ] } }, +{ "type": "Feature", "properties": { "im": 0.40129549 }, "geometry": { "type": "Point", "coordinates": [ 85.313631206172786, 27.624741080471949 ] } }, +{ "type": "Feature", "properties": { "im": 0.58243061 }, "geometry": { "type": "Point", "coordinates": [ 85.311804125128845, 27.627649495194966 ] } }, +{ "type": "Feature", "properties": { "im": 0.00012796 }, "geometry": { "type": "Point", "coordinates": [ 85.310797366186264, 27.624641647490012 ] } }, +{ "type": "Feature", "properties": { "im": 0.00020328 }, "geometry": { "type": "Point", "coordinates": [ 85.311083236009466, 27.625089095908844 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.309740890752693, 27.623709463283824 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313743068277518, 27.621695945398759 ] } }, +{ "type": "Feature", "properties": { "im": 1.42024899 }, "geometry": { "type": "Point", "coordinates": [ 85.311816554251578, 27.627251763267072 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310784937063502, 27.626493586779429 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311953274601819, 27.624057478720825 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313842501259501, 27.623846183634107 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313395052840562, 27.621944527853667 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.315122700902535, 27.620838335929076 ] } }, +{ "type": "Feature", "properties": { "im": 0.52365907 }, "geometry": { "type": "Point", "coordinates": [ 85.31337019459508, 27.625026950295155 ] } }, +{ "type": "Feature", "properties": { "im": 0.4467455 }, "geometry": { "type": "Point", "coordinates": [ 85.313929505118722, 27.621584083293978 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313059466526383, 27.622416834518084 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310772507940783, 27.62736362537176 ] } }, +{ "type": "Feature", "properties": { "im": 0.00207634 }, "geometry": { "type": "Point", "coordinates": [ 85.310760078818021, 27.623088007146496 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.31441424090589, 27.622652987850326 ] } }, +{ "type": "Feature", "properties": { "im": 0.00103673 }, "geometry": { "type": "Point", "coordinates": [ 85.313966792486966, 27.6206518990879 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312674163721184, 27.622043960835697 ] } }, +{ "type": "Feature", "properties": { "im": 0.12561408 }, "geometry": { "type": "Point", "coordinates": [ 85.313034608280887, 27.62361003030189 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310138622680626, 27.626978322566547 ] } }, +{ "type": "Feature", "properties": { "im": 0.00029385 }, "geometry": { "type": "Point", "coordinates": [ 85.311543113551124, 27.623982903984299 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312997320912643, 27.62216825206313 ] } }, +{ "type": "Feature", "properties": { "im": 0.30455458 }, "geometry": { "type": "Point", "coordinates": [ 85.312798454948677, 27.624119624334512 ] } }, +{ "type": "Feature", "properties": { "im": 0.2860057 }, "geometry": { "type": "Point", "coordinates": [ 85.313680922663778, 27.624915088190434 ] } }, +{ "type": "Feature", "properties": { "im": 0.00731321 }, "geometry": { "type": "Point", "coordinates": [ 85.31450124476514, 27.620564895228647 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310610929345046, 27.624567072753464 ] } }, +{ "type": "Feature", "properties": { "im": 0.00011709 }, "geometry": { "type": "Point", "coordinates": [ 85.312400723020744, 27.623871041879571 ] } }, +{ "type": "Feature", "properties": { "im": 0.00011684 }, "geometry": { "type": "Point", "coordinates": [ 85.313755497400251, 27.620664328210626 ] } }, +{ "type": "Feature", "properties": { "im": 0.00091462 }, "geometry": { "type": "Point", "coordinates": [ 85.311580400919382, 27.62807208536843 ] } }, +{ "type": "Feature", "properties": { "im": 1.068e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.313854930382249, 27.624144482580018 ] } }, +{ "type": "Feature", "properties": { "im": 0.04061385 }, "geometry": { "type": "Point", "coordinates": [ 85.313258332490335, 27.625300390995591 ] } }, +{ "type": "Feature", "properties": { "im": 0.0042589 }, "geometry": { "type": "Point", "coordinates": [ 85.311741979515105, 27.623324160478667 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314240233187434, 27.622727562586821 ] } }, +{ "type": "Feature", "properties": { "im": 0.0002262 }, "geometry": { "type": "Point", "coordinates": [ 85.310946515659239, 27.628283380455127 ] } }, +{ "type": "Feature", "properties": { "im": 0.00015336 }, "geometry": { "type": "Point", "coordinates": [ 85.312786025825929, 27.627052897303074 ] } }, +{ "type": "Feature", "properties": { "im": 9.94e-06 }, "geometry": { "type": "Point", "coordinates": [ 85.315048126166033, 27.621509508557509 ] } }, +{ "type": "Feature", "properties": { "im": 0.9332454 }, "geometry": { "type": "Point", "coordinates": [ 85.311393964078164, 27.627674353440419 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314289949678425, 27.621695945398756 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312910317053408, 27.622416834518084 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313830072136753, 27.625872130642048 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313457198454316, 27.620813477683622 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310014331453132, 27.625213387136366 ] } }, +{ "type": "Feature", "properties": { "im": 0.00017176 }, "geometry": { "type": "Point", "coordinates": [ 85.314787114588341, 27.621621370662201 ] } }, +{ "type": "Feature", "properties": { "im": 0.24280764 }, "geometry": { "type": "Point", "coordinates": [ 85.314078654591725, 27.621397646452746 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314575819501627, 27.622031531712889 ] } }, +{ "type": "Feature", "properties": { "im": 0.8810036 }, "geometry": { "type": "Point", "coordinates": [ 85.311940845479072, 27.627699211685911 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.31064821671329, 27.624654076612732 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314488815642392, 27.621633799784934 ] } }, +{ "type": "Feature", "properties": { "im": 0.00051503 }, "geometry": { "type": "Point", "coordinates": [ 85.31141882232366, 27.625337678363856 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310548783731306, 27.625611119064271 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314078654591711, 27.62429363205305 ] } }, +{ "type": "Feature", "properties": { "im": 0.01417671 }, "geometry": { "type": "Point", "coordinates": [ 85.313966792486966, 27.621024772770348 ] } }, +{ "type": "Feature", "properties": { "im": 0.00747212 }, "geometry": { "type": "Point", "coordinates": [ 85.310673074958785, 27.623933187493325 ] } }, +{ "type": "Feature", "properties": { "im": 1.57e-06 }, "geometry": { "type": "Point", "coordinates": [ 85.311915987233576, 27.624989662926922 ] } }, +{ "type": "Feature", "properties": { "im": 0.01981865 }, "geometry": { "type": "Point", "coordinates": [ 85.312860600562402, 27.623249585742208 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.31156797179662, 27.622429263640832 ] } }, +{ "type": "Feature", "properties": { "im": 0.16276965 }, "geometry": { "type": "Point", "coordinates": [ 85.313444769331568, 27.623759179774844 ] } }, +{ "type": "Feature", "properties": { "im": 1.91945529 }, "geometry": { "type": "Point", "coordinates": [ 85.311953274601819, 27.627077755548548 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312201857056777, 27.621944527853707 ] } }, +{ "type": "Feature", "properties": { "im": 9.92e-06 }, "geometry": { "type": "Point", "coordinates": [ 85.311219956359693, 27.624181769948315 ] } }, +{ "type": "Feature", "properties": { "im": 8.725e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.310934086536491, 27.627562491335709 ] } }, +{ "type": "Feature", "properties": { "im": 0.02517401 }, "geometry": { "type": "Point", "coordinates": [ 85.314637965115367, 27.621037201893039 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311717121269609, 27.622379547149826 ] } }, +{ "type": "Feature", "properties": { "im": 0.76723871 }, "geometry": { "type": "Point", "coordinates": [ 85.311965703724567, 27.626854031339057 ] } }, +{ "type": "Feature", "properties": { "im": 1.237e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.309989473207651, 27.623373876969676 ] } }, +{ "type": "Feature", "properties": { "im": 0.00059109 }, "geometry": { "type": "Point", "coordinates": [ 85.312574730739215, 27.62694103519835 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.31390464687324, 27.625536544327776 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313419911086072, 27.620676757333403 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314526103010635, 27.622031531712913 ] } }, +{ "type": "Feature", "properties": { "im": 0.00044255 }, "geometry": { "type": "Point", "coordinates": [ 85.310586071099564, 27.628457388173548 ] } }, +{ "type": "Feature", "properties": { "im": 0.04141744 }, "geometry": { "type": "Point", "coordinates": [ 85.312475297757231, 27.623274443987668 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313171328631114, 27.62092533978835 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314414240905904, 27.623460880828922 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313308048981341, 27.626617878006925 ] } }, +{ "type": "Feature", "properties": { "im": 2.40721661 }, "geometry": { "type": "Point", "coordinates": [ 85.312077565829298, 27.627127472039557 ] } }, +{ "type": "Feature", "properties": { "im": 0.00379418 }, "geometry": { "type": "Point", "coordinates": [ 85.310772507940783, 27.623572742933643 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310921657413743, 27.626319579060898 ] } }, +{ "type": "Feature", "properties": { "im": 0.30987641 }, "geometry": { "type": "Point", "coordinates": [ 85.313593918804543, 27.624057478720779 ] } }, +{ "type": "Feature", "properties": { "im": 0.20010727 }, "geometry": { "type": "Point", "coordinates": [ 85.312786025825929, 27.623411164337881 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310499067240315, 27.627786215545186 ] } }, +{ "type": "Feature", "properties": { "im": 0.00058794 }, "geometry": { "type": "Point", "coordinates": [ 85.312674163721198, 27.626928606075559 ] } }, +{ "type": "Feature", "properties": { "im": 0.19400015 }, "geometry": { "type": "Point", "coordinates": [ 85.313432340208834, 27.623025861532724 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.31390464687324, 27.62569812292357 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.3146503942381, 27.622603271359317 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312723880212189, 27.62773649905423 ] } }, +{ "type": "Feature", "properties": { "im": 0.00415935 }, "geometry": { "type": "Point", "coordinates": [ 85.312500156002727, 27.626941035198364 ] } }, +{ "type": "Feature", "properties": { "im": 0.07437365 }, "geometry": { "type": "Point", "coordinates": [ 85.313469627577064, 27.623709463283834 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314488815642378, 27.621683516275951 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311791696006097, 27.622168252063116 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313245903367601, 27.626878889584638 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310971373904735, 27.626058567483206 ] } }, +{ "type": "Feature", "properties": { "im": 0.00704008 }, "geometry": { "type": "Point", "coordinates": [ 85.312860600562416, 27.626493586779436 ] } }, +{ "type": "Feature", "properties": { "im": 2.015e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.312935175298904, 27.625834843273768 ] } }, +{ "type": "Feature", "properties": { "im": 2.964e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.311294531096181, 27.622826995568783 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310014331453146, 27.624343348544034 ] } }, +{ "type": "Feature", "properties": { "im": 0.00010783 }, "geometry": { "type": "Point", "coordinates": [ 85.310971373904735, 27.627550062213025 ] } }, +{ "type": "Feature", "properties": { "im": 0.15556832 }, "geometry": { "type": "Point", "coordinates": [ 85.311518255305629, 27.625872130642041 ] } }, +{ "type": "Feature", "properties": { "im": 0.94561015 }, "geometry": { "type": "Point", "coordinates": [ 85.311617688287626, 27.627376054494484 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312612018107458, 27.625536544327808 ] } }, +{ "type": "Feature", "properties": { "im": 7.011e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.310064047944138, 27.624082336966314 ] } }, +{ "type": "Feature", "properties": { "im": 0.22464687 }, "geometry": { "type": "Point", "coordinates": [ 85.312711451089427, 27.626294720815434 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.31411594195994, 27.622839424691549 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310685504081533, 27.627052897303084 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310262913908105, 27.62459193099895 ] } }, +{ "type": "Feature", "properties": { "im": 0.00141181 }, "geometry": { "type": "Point", "coordinates": [ 85.311505826182909, 27.627885648527169 ] } }, +{ "type": "Feature", "properties": { "im": 0.00406886 }, "geometry": { "type": "Point", "coordinates": [ 85.313569060559033, 27.623349018724209 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314240233187434, 27.62394561661608 ] } }, +{ "type": "Feature", "properties": { "im": 0.85168216 }, "geometry": { "type": "Point", "coordinates": [ 85.311940845479072, 27.62643144116565 ] } }, +{ "type": "Feature", "properties": { "im": 0.00843019 }, "geometry": { "type": "Point", "coordinates": [ 85.312823313194173, 27.623709463283863 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.309977044084889, 27.626431441165643 ] } }, +{ "type": "Feature", "properties": { "im": 1.283e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.314936264061316, 27.621720803644227 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311543113551124, 27.626841602216388 ] } }, +{ "type": "Feature", "properties": { "im": 0.07401269 }, "geometry": { "type": "Point", "coordinates": [ 85.312723880212189, 27.623895900125106 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311269672850685, 27.628357955191632 ] } }, +{ "type": "Feature", "properties": { "im": 0.06376188 }, "geometry": { "type": "Point", "coordinates": [ 85.31366849354103, 27.622006673467428 ] } }, +{ "type": "Feature", "properties": { "im": 0.06223428 }, "geometry": { "type": "Point", "coordinates": [ 85.311456109691903, 27.625710552046286 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310971373904721, 27.62741334186277 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313780355645761, 27.625971563623974 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313892217750507, 27.625996421869463 ] } }, +{ "type": "Feature", "properties": { "im": 0.0018539 }, "geometry": { "type": "Point", "coordinates": [ 85.311543113551139, 27.628009939754641 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.309716032507197, 27.623436022583402 ] } }, +{ "type": "Feature", "properties": { "im": 0.00140028 }, "geometry": { "type": "Point", "coordinates": [ 85.313059466526383, 27.62423148643925 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.3102877721536, 27.625511686082287 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.309778178120936, 27.624616789244453 ] } }, +{ "type": "Feature", "properties": { "im": 0.36574838 }, "geometry": { "type": "Point", "coordinates": [ 85.310685504081519, 27.624219057316573 ] } }, +{ "type": "Feature", "properties": { "im": 1.245e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.312152140565772, 27.625735410291796 ] } }, +{ "type": "Feature", "properties": { "im": 0.44694679 }, "geometry": { "type": "Point", "coordinates": [ 85.313705780909274, 27.622068819081175 ] } }, +{ "type": "Feature", "properties": { "im": 0.04441408 }, "geometry": { "type": "Point", "coordinates": [ 85.313096753894627, 27.622976145041747 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310362346890074, 27.6273387671263 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313059466526383, 27.620937768911105 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311903558110828, 27.622976145041726 ] } }, +{ "type": "Feature", "properties": { "im": 0.0002085 }, "geometry": { "type": "Point", "coordinates": [ 85.311306960218928, 27.628196376595827 ] } }, +{ "type": "Feature", "properties": { "im": 1.51620513 }, "geometry": { "type": "Point", "coordinates": [ 85.312288860916013, 27.627139901162284 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313482056699812, 27.620863194174635 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313830072136753, 27.623336589601447 ] } }, +{ "type": "Feature", "properties": { "im": 0.37019958 }, "geometry": { "type": "Point", "coordinates": [ 85.311045948641237, 27.627885648527212 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314600677747123, 27.622056389958384 ] } }, +{ "type": "Feature", "properties": { "im": 9.84e-06 }, "geometry": { "type": "Point", "coordinates": [ 85.312612018107458, 27.625188528890895 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310797366186264, 27.625287961872871 ] } }, +{ "type": "Feature", "properties": { "im": 0.11659881 }, "geometry": { "type": "Point", "coordinates": [ 85.312574730739215, 27.623721892406643 ] } }, +{ "type": "Feature", "properties": { "im": 0.05949183 }, "geometry": { "type": "Point", "coordinates": [ 85.310847082677256, 27.623659746792839 ] } }, +{ "type": "Feature", "properties": { "im": 1.088e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.311306960218914, 27.627152330285032 ] } }, +{ "type": "Feature", "properties": { "im": 0.0182876 }, "geometry": { "type": "Point", "coordinates": [ 85.313233474244853, 27.625934276255727 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311207527236931, 27.626269862569981 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.31497355142956, 27.620540036983183 ] } }, +{ "type": "Feature", "properties": { "im": 0.00027789 }, "geometry": { "type": "Point", "coordinates": [ 85.312114853197542, 27.624492498017009 ] } }, +{ "type": "Feature", "properties": { "im": 4.431e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.312425581266254, 27.627537633090252 ] } }, +{ "type": "Feature", "properties": { "im": 0.18231609 }, "geometry": { "type": "Point", "coordinates": [ 85.313233474244853, 27.623038290655479 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.309865181980157, 27.625735410291792 ] } }, +{ "type": "Feature", "properties": { "im": 3.087e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.311070806886718, 27.624467639771495 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313780355645761, 27.62520095801365 ] } }, +{ "type": "Feature", "properties": { "im": 1.09573424 }, "geometry": { "type": "Point", "coordinates": [ 85.311480967937399, 27.627525203967455 ] } }, +{ "type": "Feature", "properties": { "im": 1.22965615 }, "geometry": { "type": "Point", "coordinates": [ 85.311530684428391, 27.627487916599218 ] } }, +{ "type": "Feature", "properties": { "im": 1.27414851 }, "geometry": { "type": "Point", "coordinates": [ 85.311878699865332, 27.627500345721998 ] } }, +{ "type": "Feature", "properties": { "im": 0.0182825 }, "geometry": { "type": "Point", "coordinates": [ 85.313357765472333, 27.625213387136384 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313208615999358, 27.621782949257987 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313991650732476, 27.625126383277099 ] } }, +{ "type": "Feature", "properties": { "im": 0.00040158 }, "geometry": { "type": "Point", "coordinates": [ 85.311940845479057, 27.624243915562062 ] } }, +{ "type": "Feature", "properties": { "im": 0.00012673 }, "geometry": { "type": "Point", "coordinates": [ 85.31141882232366, 27.627239334144264 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314998409675056, 27.621944527853678 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310971373904721, 27.622826995568765 ] } }, +{ "type": "Feature", "properties": { "im": 0.01049341 }, "geometry": { "type": "Point", "coordinates": [ 85.312450439511721, 27.623659746792928 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310374776012836, 27.627550062212944 ] } }, +{ "type": "Feature", "properties": { "im": 0.1988816 }, "geometry": { "type": "Point", "coordinates": [ 85.31189112898808, 27.623411164337888 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310412063381065, 27.624716222226485 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310387205135584, 27.62518852889092 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.31031263039911, 27.624915088190402 ] } }, +{ "type": "Feature", "properties": { "im": 0.48721903 }, "geometry": { "type": "Point", "coordinates": [ 85.313022179158139, 27.623063148900979 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310474208994819, 27.626307149938206 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.31491140581582, 27.620602182596915 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310088906189634, 27.625337678363891 ] } }, +{ "type": "Feature", "properties": { "im": 0.0274322 }, "geometry": { "type": "Point", "coordinates": [ 85.314613106869871, 27.620676757333417 ] } }, +{ "type": "Feature", "properties": { "im": 2.8e-07 }, "geometry": { "type": "Point", "coordinates": [ 85.312512585125475, 27.627624636949506 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310735220572525, 27.627413341862756 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313805213891257, 27.623572742933675 ] } }, +{ "type": "Feature", "properties": { "im": 0.00059355 }, "geometry": { "type": "Point", "coordinates": [ 85.311207527236931, 27.625325249241087 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312848171439668, 27.620900481542837 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312624447230206, 27.627773786422424 ] } }, +{ "type": "Feature", "properties": { "im": 0.00041141 }, "geometry": { "type": "Point", "coordinates": [ 85.310784937063517, 27.627972652386394 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310188339171617, 27.627189617653318 ] } }, +{ "type": "Feature", "properties": { "im": 0.86879904 }, "geometry": { "type": "Point", "coordinates": [ 85.311990561970063, 27.626555732393129 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313656064418282, 27.625959134501255 ] } }, +{ "type": "Feature", "properties": { "im": 0.00199531 }, "geometry": { "type": "Point", "coordinates": [ 85.3110956651322, 27.625151241522673 ] } }, +{ "type": "Feature", "properties": { "im": 2.012e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.312139711443038, 27.625747839414569 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313494485822559, 27.620888052420067 ] } }, +{ "type": "Feature", "properties": { "im": 0.01081431 }, "geometry": { "type": "Point", "coordinates": [ 85.3129600335444, 27.623262014864935 ] } }, +{ "type": "Feature", "properties": { "im": 0.20459057 }, "geometry": { "type": "Point", "coordinates": [ 85.313395052840562, 27.623585172056409 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313904646873226, 27.625983992746729 ] } }, +{ "type": "Feature", "properties": { "im": 0.00016218 }, "geometry": { "type": "Point", "coordinates": [ 85.310859511800004, 27.624915088190409 ] } }, +{ "type": "Feature", "properties": { "im": 1.65657259 }, "geometry": { "type": "Point", "coordinates": [ 85.312164569688534, 27.626170429587919 ] } }, +{ "type": "Feature", "properties": { "im": 1.38104049 }, "geometry": { "type": "Point", "coordinates": [ 85.311344247587172, 27.62344845170615 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311729550392343, 27.624517356262498 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312997320912643, 27.62155922504849 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310859511800004, 27.627289050635287 ] } }, +{ "type": "Feature", "properties": { "im": 0.26163774 }, "geometry": { "type": "Point", "coordinates": [ 85.311630117410374, 27.627773786422438 ] } }, +{ "type": "Feature", "properties": { "im": 0.0014086 }, "geometry": { "type": "Point", "coordinates": [ 85.31005161882139, 27.62365974679285 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312525014248223, 27.625797555905546 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.315085413534305, 27.622329830658838 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310760078818021, 27.626269862569952 ] } }, +{ "type": "Feature", "properties": { "im": 0.67246616 }, "geometry": { "type": "Point", "coordinates": [ 85.31266173459845, 27.626406582920151 ] } }, +{ "type": "Feature", "properties": { "im": 0.041213 }, "geometry": { "type": "Point", "coordinates": [ 85.312537443370957, 27.626878889584624 ] } }, +{ "type": "Feature", "properties": { "im": 0.00011801 }, "geometry": { "type": "Point", "coordinates": [ 85.312375864775248, 27.624654076612746 ] } }, +{ "type": "Feature", "properties": { "im": 6.2e-07 }, "geometry": { "type": "Point", "coordinates": [ 85.312922746176156, 27.627090184671346 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313941934241484, 27.623784038020403 ] } }, +{ "type": "Feature", "properties": { "im": 0.2655027 }, "geometry": { "type": "Point", "coordinates": [ 85.311008661272979, 27.628084514491114 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312288860916013, 27.622777279077756 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311990561970049, 27.625573831696059 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314724968974602, 27.623001003287268 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313295619858593, 27.626058567483259 ] } }, +{ "type": "Feature", "properties": { "im": 0.01039158 }, "geometry": { "type": "Point", "coordinates": [ 85.313904646873226, 27.62111177662954 ] } }, +{ "type": "Feature", "properties": { "im": 1.218e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.311207527236945, 27.624306061175751 ] } }, +{ "type": "Feature", "properties": { "im": 0.00196463 }, "geometry": { "type": "Point", "coordinates": [ 85.310188339171617, 27.623286873110441 ] } }, +{ "type": "Feature", "properties": { "im": 4.733e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.313743068277518, 27.620627040842354 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312052707583803, 27.621994244344645 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310834653554508, 27.626804314848094 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310859511800004, 27.626394153797385 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313780355645761, 27.623647317670088 ] } }, +{ "type": "Feature", "properties": { "im": 2.51952218 }, "geometry": { "type": "Point", "coordinates": [ 85.31216456968852, 27.626680023620622 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311132952500458, 27.627152330285011 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311567971796634, 27.622416834518063 ] } }, +{ "type": "Feature", "properties": { "im": 0.00031695 }, "geometry": { "type": "Point", "coordinates": [ 85.313966792486966, 27.624840513453933 ] } }, +{ "type": "Feature", "properties": { "im": 4.0000000000000001e-08 }, "geometry": { "type": "Point", "coordinates": [ 85.314861689324829, 27.620589753474189 ] } }, +{ "type": "Feature", "properties": { "im": 0.18494568 }, "geometry": { "type": "Point", "coordinates": [ 85.313208615999358, 27.62383375451137 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310586071099564, 27.626704881866079 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313395052840576, 27.620577324351391 ] } }, +{ "type": "Feature", "properties": { "im": 0.99133213 }, "geometry": { "type": "Point", "coordinates": [ 85.311978132847315, 27.627612207826711 ] } }, +{ "type": "Feature", "properties": { "im": 0.72441617 }, "geometry": { "type": "Point", "coordinates": [ 85.311791696006097, 27.626356866429191 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311493397060147, 27.62208124820387 ] } }, +{ "type": "Feature", "properties": { "im": 0.01055904 }, "geometry": { "type": "Point", "coordinates": [ 85.312786025825929, 27.623871041879575 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314426670028652, 27.623286873110484 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313457198454316, 27.621136634875029 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312226715302273, 27.62556140257329 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311369105832654, 27.626580590638671 ] } }, +{ "type": "Feature", "properties": { "im": 0.02629167 }, "geometry": { "type": "Point", "coordinates": [ 85.313283190735845, 27.625872130642044 ] } }, +{ "type": "Feature", "properties": { "im": 3.851e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.312910317053394, 27.62538739485483 ] } }, +{ "type": "Feature", "properties": { "im": 0.00033698 }, "geometry": { "type": "Point", "coordinates": [ 85.310983803027483, 27.623622459424624 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313121612140122, 27.622329830658899 ] } }, +{ "type": "Feature", "properties": { "im": 1.78599301 }, "geometry": { "type": "Point", "coordinates": [ 85.311928416356324, 27.627264192389806 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313929505118736, 27.623324160478646 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314712539851854, 27.622913999428022 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310449350749323, 27.626195287833436 ] } }, +{ "type": "Feature", "properties": { "im": 0.02017153 }, "geometry": { "type": "Point", "coordinates": [ 85.312450439511736, 27.626145571342487 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.30981546548918, 27.624765938717481 ] } }, +{ "type": "Feature", "properties": { "im": 1.28947307 }, "geometry": { "type": "Point", "coordinates": [ 85.312251573547755, 27.626518445024907 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314314807923921, 27.62269027521851 ] } }, +{ "type": "Feature", "properties": { "im": 0.00835103 }, "geometry": { "type": "Point", "coordinates": [ 85.310934086536491, 27.623187440128429 ] } }, +{ "type": "Feature", "properties": { "im": 0.02288291 }, "geometry": { "type": "Point", "coordinates": [ 85.310859511800004, 27.628295809577885 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314762256342846, 27.623001003287282 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.31396679248698, 27.623908329247804 ] } }, +{ "type": "Feature", "properties": { "im": 0.04730875 }, "geometry": { "type": "Point", "coordinates": [ 85.314103512837207, 27.620987485402086 ] } }, +{ "type": "Feature", "properties": { "im": 9.95e-06 }, "geometry": { "type": "Point", "coordinates": [ 85.312015420215545, 27.624716222226464 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310325059521844, 27.622851853814254 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314463957396882, 27.624057478720783 ] } }, +{ "type": "Feature", "properties": { "im": 0.6499766 }, "geometry": { "type": "Point", "coordinates": [ 85.312748738457685, 27.624069907843587 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310399634258332, 27.626344437306418 ] } }, +{ "type": "Feature", "properties": { "im": 0.00029635 }, "geometry": { "type": "Point", "coordinates": [ 85.310946515659239, 27.627661924317721 ] } }, +{ "type": "Feature", "properties": { "im": 2.04892063 }, "geometry": { "type": "Point", "coordinates": [ 85.312027849338307, 27.627065326425821 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310461779872071, 27.626928606075548 ] } }, +{ "type": "Feature", "properties": { "im": 0.06387277 }, "geometry": { "type": "Point", "coordinates": [ 85.31212728232029, 27.624007762229795 ] } }, +{ "type": "Feature", "properties": { "im": 0.09826343 }, "geometry": { "type": "Point", "coordinates": [ 85.313593918804543, 27.623945616616062 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.31032505952183, 27.626319579060919 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310797366186264, 27.627351196249016 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314103512837207, 27.623659746792868 ] } }, +{ "type": "Feature", "properties": { "im": 0.00060213 }, "geometry": { "type": "Point", "coordinates": [ 85.311493397060147, 27.624455210648794 ] } }, +{ "type": "Feature", "properties": { "im": 4.443e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.313718210032022, 27.620577324351391 ] } }, +{ "type": "Feature", "properties": { "im": 0.12906443 }, "geometry": { "type": "Point", "coordinates": [ 85.313618777050053, 27.624902659067669 ] } }, +{ "type": "Feature", "properties": { "im": 2.499e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.310896799168233, 27.624579501876227 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310983803027483, 27.622665416973092 ] } }, +{ "type": "Feature", "properties": { "im": 0.00063736 }, "geometry": { "type": "Point", "coordinates": [ 85.312326148284257, 27.625946705378453 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.31266173459845, 27.622764849955061 ] } }, +{ "type": "Feature", "properties": { "im": 0.00451962 }, "geometry": { "type": "Point", "coordinates": [ 85.311095665132214, 27.624069907843587 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314923834938568, 27.622789708200489 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313270761613097, 27.622317401536154 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310586071099564, 27.62676702747989 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312326148284257, 27.621683516275922 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.309952185839407, 27.625971563624017 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313444769331554, 27.620975056279327 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311306960218928, 27.626816743970846 ] } }, +{ "type": "Feature", "properties": { "im": 0.00044231 }, "geometry": { "type": "Point", "coordinates": [ 85.311344247587172, 27.625250674504635 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312711451089442, 27.622665416973017 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314066225468963, 27.623858612756862 ] } }, +{ "type": "Feature", "properties": { "im": 0.68236121 }, "geometry": { "type": "Point", "coordinates": [ 85.313482056699797, 27.622690275218513 ] } }, +{ "type": "Feature", "properties": { "im": 0.01645068 }, "geometry": { "type": "Point", "coordinates": [ 85.314227804064672, 27.621335500839066 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313469627577064, 27.622081248203894 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310573641976802, 27.625238245381841 ] } }, +{ "type": "Feature", "properties": { "im": 1.704e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.314140800205436, 27.621820236626188 ] } }, +{ "type": "Feature", "properties": { "im": 0.00896329 }, "geometry": { "type": "Point", "coordinates": [ 85.312276431793265, 27.62337387696968 ] } }, +{ "type": "Feature", "properties": { "im": 3.834e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.312525014248223, 27.623510597319953 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311456109691889, 27.626568161515905 ] } }, +{ "type": "Feature", "properties": { "im": 0.00022161 }, "geometry": { "type": "Point", "coordinates": [ 85.310200768294365, 27.624231486439314 ] } }, +{ "type": "Feature", "properties": { "im": 0.00045405 }, "geometry": { "type": "Point", "coordinates": [ 85.312089994952046, 27.624393065035036 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314849260202081, 27.620341171019149 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.31216456968852, 27.622019102590116 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313854930382249, 27.623833754511388 ] } }, +{ "type": "Feature", "properties": { "im": 7.514e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.314078654591711, 27.620415745755686 ] } }, +{ "type": "Feature", "properties": { "im": 0.00074779 }, "geometry": { "type": "Point", "coordinates": [ 85.311021090395727, 27.625101525031599 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310436921626575, 27.626878889584599 ] } }, +{ "type": "Feature", "properties": { "im": 0.08007066 }, "geometry": { "type": "Point", "coordinates": [ 85.313283190735845, 27.622541125745609 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.315159988270779, 27.62148465031196 ] } }, +{ "type": "Feature", "properties": { "im": 0.00941511 }, "geometry": { "type": "Point", "coordinates": [ 85.312823313194173, 27.6267048818661 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314115941959955, 27.620192021546217 ] } }, +{ "type": "Feature", "properties": { "im": 0.00068713 }, "geometry": { "type": "Point", "coordinates": [ 85.311369105832654, 27.627500345722005 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311667404778618, 27.625536544327836 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312276431793265, 27.621956956976394 ] } }, +{ "type": "Feature", "properties": { "im": 0.22533101 }, "geometry": { "type": "Point", "coordinates": [ 85.313792784768509, 27.624591930998996 ] } }, +{ "type": "Feature", "properties": { "im": 4.37e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.311344247587172, 27.625971563624013 ] } }, +{ "type": "Feature", "properties": { "im": 0.18243276 }, "geometry": { "type": "Point", "coordinates": [ 85.313320478104089, 27.622739991709526 ] } }, +{ "type": "Feature", "properties": { "im": 0.00074549 }, "geometry": { "type": "Point", "coordinates": [ 85.311605259164878, 27.62502695029519 ] } }, +{ "type": "Feature", "properties": { "im": 3.191e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.313208615999358, 27.6225784131138 ] } }, +{ "type": "Feature", "properties": { "im": 5.545e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.310996232150217, 27.62423148643926 ] } }, +{ "type": "Feature", "properties": { "im": 0.44487785 }, "geometry": { "type": "Point", "coordinates": [ 85.312711451089442, 27.623995333107096 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311754408637853, 27.622193110308622 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311393964078164, 27.622379547149805 ] } }, +{ "type": "Feature", "properties": { "im": 0.72369907 }, "geometry": { "type": "Point", "coordinates": [ 85.312537443370971, 27.626816743970849 ] } }, +{ "type": "Feature", "properties": { "im": 0.0718063 }, "geometry": { "type": "Point", "coordinates": [ 85.311729550392343, 27.624368206789541 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314613106869871, 27.620229308914467 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311021090395712, 27.62689131870733 ] } }, +{ "type": "Feature", "properties": { "im": 0.13007442 }, "geometry": { "type": "Point", "coordinates": [ 85.314339666169417, 27.620689186456126 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311132952500458, 27.625312820118321 ] } }, +{ "type": "Feature", "properties": { "im": 0.20938316 }, "geometry": { "type": "Point", "coordinates": [ 85.313506914945307, 27.624467639771474 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313718210032022, 27.625586260818825 ] } }, +{ "type": "Feature", "properties": { "im": 0.00333384 }, "geometry": { "type": "Point", "coordinates": [ 85.311493397060147, 27.627873219404389 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310548783731306, 27.626257433447229 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313556631436299, 27.625859701519229 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311008661272979, 27.622615700482083 ] } }, +{ "type": "Feature", "properties": { "im": 1.22463124 }, "geometry": { "type": "Point", "coordinates": [ 85.311195098114197, 27.623547884688108 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310362346890088, 27.622913999428036 ] } }, +{ "type": "Feature", "properties": { "im": 0.98737135 }, "geometry": { "type": "Point", "coordinates": [ 85.311480967937399, 27.627599778703964 ] } }, +{ "type": "Feature", "properties": { "im": 1.01e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.312823313194173, 27.62568569380079 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310362346890088, 27.624591930998939 ] } }, +{ "type": "Feature", "properties": { "im": 0.10088387 }, "geometry": { "type": "Point", "coordinates": [ 85.313469627577064, 27.624629218367215 ] } }, +{ "type": "Feature", "properties": { "im": 0.2166146 }, "geometry": { "type": "Point", "coordinates": [ 85.314352095292179, 27.621037201893071 ] } }, +{ "type": "Feature", "properties": { "im": 0.00027657 }, "geometry": { "type": "Point", "coordinates": [ 85.313854930382249, 27.624380635912253 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.31189112898808, 27.622106106449358 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.31135667670992, 27.622516267500078 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313332907226837, 27.62631957906094 ] } }, +{ "type": "Feature", "properties": { "im": 0.00042492 }, "geometry": { "type": "Point", "coordinates": [ 85.311319389341676, 27.624455210648765 ] } }, +{ "type": "Feature", "properties": { "im": 0.24337496 }, "geometry": { "type": "Point", "coordinates": [ 85.312624447230206, 27.62620771695623 ] } }, +{ "type": "Feature", "properties": { "im": 0.000786 }, "geometry": { "type": "Point", "coordinates": [ 85.312462868634483, 27.625064237663437 ] } }, +{ "type": "Feature", "properties": { "im": 9.285e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.310722791449777, 27.627798644667948 ] } }, +{ "type": "Feature", "properties": { "im": 0.06650299 }, "geometry": { "type": "Point", "coordinates": [ 85.312201857056777, 27.624032620475358 ] } }, +{ "type": "Feature", "properties": { "im": 0.01457942 }, "geometry": { "type": "Point", "coordinates": [ 85.310685504081533, 27.623336589601461 ] } }, +{ "type": "Feature", "properties": { "im": 0.00034111 }, "geometry": { "type": "Point", "coordinates": [ 85.310337488644578, 27.624268773807522 ] } }, +{ "type": "Feature", "properties": { "im": 0.00076041 }, "geometry": { "type": "Point", "coordinates": [ 85.313606347927291, 27.625337678363813 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314339666169417, 27.624032620475315 ] } }, +{ "type": "Feature", "properties": { "im": 0.19078162 }, "geometry": { "type": "Point", "coordinates": [ 85.31031263039911, 27.6237591797749 ] } }, +{ "type": "Feature", "properties": { "im": 0.46487695 }, "geometry": { "type": "Point", "coordinates": [ 85.313531773190803, 27.622690275218567 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310722791449777, 27.626468728533901 ] } }, +{ "type": "Feature", "properties": { "im": 0.06060199 }, "geometry": { "type": "Point", "coordinates": [ 85.312848171439668, 27.626443870288398 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311021090395727, 27.625747839414515 ] } }, +{ "type": "Feature", "properties": { "im": 0.00016886 }, "geometry": { "type": "Point", "coordinates": [ 85.311369105832668, 27.624343348544009 ] } }, +{ "type": "Feature", "properties": { "im": 0.71103543 }, "geometry": { "type": "Point", "coordinates": [ 85.311915987233576, 27.626779456602605 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.315135130025283, 27.621944527853657 ] } }, +{ "type": "Feature", "properties": { "im": 0.17173964 }, "geometry": { "type": "Point", "coordinates": [ 85.313469627577064, 27.623262014864942 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314836831079333, 27.622901570305274 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314053796346215, 27.623721892406657 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313245903367601, 27.620676757333364 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.31182898337434, 27.621969386099149 ] } }, +{ "type": "Feature", "properties": { "im": 0.00040657 }, "geometry": { "type": "Point", "coordinates": [ 85.312835742316921, 27.626767027479843 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310262913908105, 27.626804314848098 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310685504081533, 27.626568161515834 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312500156002713, 27.622193110308608 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313680922663778, 27.621410075575504 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.31313404126287, 27.62168351627594 ] } }, +{ "type": "Feature", "properties": { "im": 0.00026003 }, "geometry": { "type": "Point", "coordinates": [ 85.310747649695273, 27.627972652386415 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311505826182909, 27.626953464321112 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311269672850685, 27.622155822940424 ] } }, +{ "type": "Feature", "properties": { "im": 0.54486822 }, "geometry": { "type": "Point", "coordinates": [ 85.310436921626575, 27.623622459424681 ] } }, +{ "type": "Feature", "properties": { "im": 9.035e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.309852752857438, 27.623970474861565 ] } }, +{ "type": "Feature", "properties": { "im": 0.1842872 }, "geometry": { "type": "Point", "coordinates": [ 85.313606347927291, 27.624939946435909 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310697933204281, 27.627537633090256 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.309952185839407, 27.624915088190463 ] } }, +{ "type": "Feature", "properties": { "im": 0.00043627 }, "geometry": { "type": "Point", "coordinates": [ 85.31105837776397, 27.623634888547361 ] } }, +{ "type": "Feature", "properties": { "im": 0.0048148 }, "geometry": { "type": "Point", "coordinates": [ 85.311543113551139, 27.624678934858199 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313979221609728, 27.62271513346408 ] } }, +{ "type": "Feature", "properties": { "im": 0.01495849 }, "geometry": { "type": "Point", "coordinates": [ 85.312549872493719, 27.625126383277177 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313705780909274, 27.625312820118342 ] } }, +{ "type": "Feature", "properties": { "im": 0.17192731 }, "geometry": { "type": "Point", "coordinates": [ 85.313780355645761, 27.622056389958377 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310225626539847, 27.626555732393147 ] } }, +{ "type": "Feature", "properties": { "im": 0.00592095 }, "geometry": { "type": "Point", "coordinates": [ 85.310200768294365, 27.62347330995166 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.309778178120936, 27.6238710418796 ] } }, +{ "type": "Feature", "properties": { "im": 0.00034572 }, "geometry": { "type": "Point", "coordinates": [ 85.310983803027483, 27.624542214507965 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313842501259501, 27.623212298373943 ] } }, +{ "type": "Feature", "properties": { "im": 0.10140298 }, "geometry": { "type": "Point", "coordinates": [ 85.311381534955416, 27.625673264678049 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312388293897996, 27.621882382239914 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312114853197542, 27.622130964694872 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313979221609728, 27.625213387136352 ] } }, +{ "type": "Feature", "properties": { "im": 0.09939266 }, "geometry": { "type": "Point", "coordinates": [ 85.313009750035377, 27.624902659067672 ] } }, +{ "type": "Feature", "properties": { "im": 0.00529648 }, "geometry": { "type": "Point", "coordinates": [ 85.311754408637853, 27.626220146078989 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314787114588327, 27.622590842236555 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314066225468963, 27.623746750652135 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.31310918301736, 27.621907240485424 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.31289788793066, 27.62213096469489 ] } }, +{ "type": "Feature", "properties": { "im": 0.00196687 }, "geometry": { "type": "Point", "coordinates": [ 85.312786025825929, 27.622951286796223 ] } }, +{ "type": "Feature", "properties": { "im": 0.04279988 }, "geometry": { "type": "Point", "coordinates": [ 85.314588248624375, 27.621422504698252 ] } }, +{ "type": "Feature", "properties": { "im": 2.948e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.312052707583803, 27.625673264678081 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312748738457671, 27.620975056279374 ] } }, +{ "type": "Feature", "properties": { "im": 1.5384786 }, "geometry": { "type": "Point", "coordinates": [ 85.311319389341676, 27.623498168197205 ] } }, +{ "type": "Feature", "properties": { "im": 0.0536327 }, "geometry": { "type": "Point", "coordinates": [ 85.313941934241484, 27.62127335522527 ] } }, +{ "type": "Feature", "properties": { "im": 0.36551414 }, "geometry": { "type": "Point", "coordinates": [ 85.312848171439668, 27.624728651349194 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313842501259501, 27.62530039099564 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310710362327029, 27.62599642186952 ] } }, +{ "type": "Feature", "properties": { "im": 0.01988409 }, "geometry": { "type": "Point", "coordinates": [ 85.31159283004213, 27.623672175915591 ] } }, +{ "type": "Feature", "properties": { "im": 0.0005685 }, "geometry": { "type": "Point", "coordinates": [ 85.310486638117567, 27.623597601179149 ] } }, +{ "type": "Feature", "properties": { "im": 2.9999999999999997e-08 }, "geometry": { "type": "Point", "coordinates": [ 85.310797366186264, 27.624430352403223 ] } }, +{ "type": "Feature", "properties": { "im": 0.14928843 }, "geometry": { "type": "Point", "coordinates": [ 85.313283190735845, 27.622702704341251 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313469627577049, 27.626443870288451 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312127282320276, 27.623199869251181 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313308048981341, 27.626431441165689 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.31467525248361, 27.622180681185842 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312288860916013, 27.622093677326678 ] } }, +{ "type": "Feature", "properties": { "im": 9.15e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.313705780909274, 27.625051808540693 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313680922663778, 27.626394153797431 ] } }, +{ "type": "Feature", "properties": { "im": 5.13e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.314998409675042, 27.620975056279296 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310412063381079, 27.625412253100325 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314414240905904, 27.623535455565371 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313767926522999, 27.623448451706174 ] } }, +{ "type": "Feature", "properties": { "im": 0.00017952 }, "geometry": { "type": "Point", "coordinates": [ 85.312624447230206, 27.627214475898782 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313593918804543, 27.626468728533929 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314687681606358, 27.623572742933671 ] } }, +{ "type": "Feature", "properties": { "im": 2.026e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.312910317053394, 27.627065326425846 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313245903367601, 27.626642736252389 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313022179158139, 27.620962627156604 ] } }, +{ "type": "Feature", "properties": { "im": 0.24413427 }, "geometry": { "type": "Point", "coordinates": [ 85.313792784768509, 27.621994244344677 ] } }, +{ "type": "Feature", "properties": { "im": 0.00521068 }, "geometry": { "type": "Point", "coordinates": [ 85.311605259164878, 27.627885648527133 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312761167580433, 27.622690275218577 ] } }, +{ "type": "Feature", "properties": { "im": 0.04351142 }, "geometry": { "type": "Point", "coordinates": [ 85.313221045122106, 27.625474398714069 ] } }, +{ "type": "Feature", "properties": { "im": 2.37326303 }, "geometry": { "type": "Point", "coordinates": [ 85.312276431793251, 27.626841602216384 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312562301616467, 27.627898077649931 ] } }, +{ "type": "Feature", "properties": { "im": 0.01011808 }, "geometry": { "type": "Point", "coordinates": [ 85.31447638651963, 27.621310642593578 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.31373063915477, 27.625834843273768 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312674163721198, 27.621236067857026 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313879788627744, 27.622379547149858 ] } }, +{ "type": "Feature", "properties": { "im": 0.04863931 }, "geometry": { "type": "Point", "coordinates": [ 85.313270761613083, 27.623535455565413 ] } }, +{ "type": "Feature", "properties": { "im": 0.02501416 }, "geometry": { "type": "Point", "coordinates": [ 85.311269672850685, 27.625586260818753 ] } }, +{ "type": "Feature", "properties": { "im": 0.00124946 }, "geometry": { "type": "Point", "coordinates": [ 85.313569060559033, 27.625747839414508 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312226715302273, 27.622255255922362 ] } }, +{ "type": "Feature", "properties": { "im": 0.38888581 }, "geometry": { "type": "Point", "coordinates": [ 85.314016508977971, 27.621410075575525 ] } }, +{ "type": "Feature", "properties": { "im": 0.00010031 }, "geometry": { "type": "Point", "coordinates": [ 85.314414240905904, 27.621596512416691 ] } }, +{ "type": "Feature", "properties": { "im": 4.628e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.309765748998188, 27.623784038020311 ] } }, +{ "type": "Feature", "properties": { "im": 0.0277121 }, "geometry": { "type": "Point", "coordinates": [ 85.312823313194173, 27.623572742933689 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311965703724567, 27.622640558727575 ] } }, +{ "type": "Feature", "properties": { "im": 0.09450921 }, "geometry": { "type": "Point", "coordinates": [ 85.31182898337434, 27.623436022583405 ] } }, +{ "type": "Feature", "properties": { "im": 0.00013404 }, "geometry": { "type": "Point", "coordinates": [ 85.314476386519644, 27.621596512416748 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313929505118736, 27.625685693800754 ] } }, +{ "type": "Feature", "properties": { "im": 0.00017683 }, "geometry": { "type": "Point", "coordinates": [ 85.310896799168248, 27.624119624334526 ] } }, +{ "type": "Feature", "properties": { "im": 0.08210367 }, "geometry": { "type": "Point", "coordinates": [ 85.312810884071425, 27.623833754511331 ] } }, +{ "type": "Feature", "properties": { "im": 0.00353898 }, "geometry": { "type": "Point", "coordinates": [ 85.310474208994805, 27.623373876969655 ] } }, +{ "type": "Feature", "properties": { "im": 0.00025085 }, "geometry": { "type": "Point", "coordinates": [ 85.313991650732476, 27.624989662926897 ] } }, +{ "type": "Feature", "properties": { "im": 0.0002384 }, "geometry": { "type": "Point", "coordinates": [ 85.312823313194158, 27.626916176952864 ] } }, +{ "type": "Feature", "properties": { "im": 0.00076765 }, "geometry": { "type": "Point", "coordinates": [ 85.311555542673887, 27.626220146078946 ] } }, +{ "type": "Feature", "properties": { "im": 0.00041053 }, "geometry": { "type": "Point", "coordinates": [ 85.313071895649131, 27.62503937941791 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310424492503827, 27.62727662151249 ] } }, +{ "type": "Feature", "properties": { "im": 0.00081031 }, "geometry": { "type": "Point", "coordinates": [ 85.314787114588341, 27.620689186456172 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310250484785357, 27.626095854851521 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314637965115367, 27.620540036983193 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310200768294365, 27.627463058353765 ] } }, +{ "type": "Feature", "properties": { "im": 0.72962349 }, "geometry": { "type": "Point", "coordinates": [ 85.312338577407004, 27.623908329247804 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311928416356324, 27.621869953117177 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313382623717828, 27.621944527853696 ] } }, +{ "type": "Feature", "properties": { "im": 0.00057459 }, "geometry": { "type": "Point", "coordinates": [ 85.311132952500458, 27.628096943613851 ] } }, +{ "type": "Feature", "properties": { "im": 2.9999999999999997e-08 }, "geometry": { "type": "Point", "coordinates": [ 85.312027849338307, 27.625051808540658 ] } }, +{ "type": "Feature", "properties": { "im": 0.00081448 }, "geometry": { "type": "Point", "coordinates": [ 85.312027849338307, 27.624194199071027 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.31337019459508, 27.620701615578877 ] } }, +{ "type": "Feature", "properties": { "im": 0.00016687 }, "geometry": { "type": "Point", "coordinates": [ 85.310747649695273, 27.627873219404378 ] } }, +{ "type": "Feature", "properties": { "im": 0.00018858 }, "geometry": { "type": "Point", "coordinates": [ 85.311182668991449, 27.627512774844721 ] } }, +{ "type": "Feature", "properties": { "im": 0.00901934 }, "geometry": { "type": "Point", "coordinates": [ 85.314799543711089, 27.620788619438134 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313034608280887, 27.62154679592577 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313842501259501, 27.625635977309827 ] } }, +{ "type": "Feature", "properties": { "im": 0.05561931 }, "geometry": { "type": "Point", "coordinates": [ 85.313904646873226, 27.62121120961152 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311493397060147, 27.622665416973064 ] } }, +{ "type": "Feature", "properties": { "im": 1.001e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.313718210032022, 27.621024772770323 ] } }, +{ "type": "Feature", "properties": { "im": 0.30285397 }, "geometry": { "type": "Point", "coordinates": [ 85.31293517529889, 27.626145571342473 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312537443370971, 27.62247898013182 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312313719161509, 27.622665416973053 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313693351786526, 27.622503838377341 ] } }, +{ "type": "Feature", "properties": { "im": 2.60753277 }, "geometry": { "type": "Point", "coordinates": [ 85.312201857056777, 27.626568161515866 ] } }, +{ "type": "Feature", "properties": { "im": 0.07505971 }, "geometry": { "type": "Point", "coordinates": [ 85.312773596703181, 27.626269862569917 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.309914898471163, 27.624877800822176 ] } }, +{ "type": "Feature", "properties": { "im": 2.37844207 }, "geometry": { "type": "Point", "coordinates": [ 85.312152140565786, 27.62704046818034 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314240233187434, 27.623759179774861 ] } }, +{ "type": "Feature", "properties": { "im": 0.49600145 }, "geometry": { "type": "Point", "coordinates": [ 85.312015420215559, 27.625996421869459 ] } }, +{ "type": "Feature", "properties": { "im": 5.537e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.314277520555663, 27.6204157457557 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314215374941938, 27.623871041879624 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313792784768509, 27.625424682223084 ] } }, +{ "type": "Feature", "properties": { "im": 0.00025207 }, "geometry": { "type": "Point", "coordinates": [ 85.314252662310182, 27.620502749614886 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314227804064686, 27.625399823977542 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311145381623206, 27.622454121886364 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312338577407004, 27.622230397676848 ] } }, +{ "type": "Feature", "properties": { "im": 0.00026159 }, "geometry": { "type": "Point", "coordinates": [ 85.311555542673887, 27.627226905021505 ] } }, +{ "type": "Feature", "properties": { "im": 0.00725924 }, "geometry": { "type": "Point", "coordinates": [ 85.312176998811282, 27.624765938717484 ] } }, +{ "type": "Feature", "properties": { "im": 0.00083904 }, "geometry": { "type": "Point", "coordinates": [ 85.313183757753862, 27.626692452743324 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313581489681795, 27.626344437306418 ] } }, +{ "type": "Feature", "properties": { "im": 0.00084422 }, "geometry": { "type": "Point", "coordinates": [ 85.311195098114197, 27.625151241522662 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312251573547755, 27.627985081509166 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312997320912643, 27.622006673467396 ] } }, +{ "type": "Feature", "properties": { "im": 3.876e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.312027849338307, 27.623286873110438 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313196186876596, 27.62182023662621 ] } }, +{ "type": "Feature", "properties": { "im": 0.00268604 }, "geometry": { "type": "Point", "coordinates": [ 85.312910317053408, 27.623547884688161 ] } }, +{ "type": "Feature", "properties": { "im": 4.443e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.312413152143492, 27.627562491335723 ] } }, +{ "type": "Feature", "properties": { "im": 0.00955052 }, "geometry": { "type": "Point", "coordinates": [ 85.311779266883363, 27.623448451706203 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312823313194173, 27.625859701519254 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312102424074794, 27.625238245381869 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311555542673872, 27.622193110308629 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312276431793265, 27.625772697660068 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.31473739809735, 27.622031531712924 ] } }, +{ "type": "Feature", "properties": { "im": 0.00130238 }, "geometry": { "type": "Point", "coordinates": [ 85.312400723020744, 27.624330919421276 ] } }, +{ "type": "Feature", "properties": { "im": 0.00013813 }, "geometry": { "type": "Point", "coordinates": [ 85.311393964078164, 27.625921847132993 ] } }, +{ "type": "Feature", "properties": { "im": 0.00024804 }, "geometry": { "type": "Point", "coordinates": [ 85.310536354608544, 27.628345526068831 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312388293897996, 27.625847272396523 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311008661272965, 27.625822414151045 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314724968974588, 27.621782949257963 ] } }, +{ "type": "Feature", "properties": { "im": 3.719e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.312512585125475, 27.626021280115022 ] } }, +{ "type": "Feature", "properties": { "im": 0.00030682 }, "geometry": { "type": "Point", "coordinates": [ 85.311145381623206, 27.625101525031631 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312413152143492, 27.622503838377352 ] } }, +{ "type": "Feature", "properties": { "im": 0.14749364 }, "geometry": { "type": "Point", "coordinates": [ 85.31411594195994, 27.62142250469828 ] } }, +{ "type": "Feature", "properties": { "im": 0.03570434 }, "geometry": { "type": "Point", "coordinates": [ 85.314588248624375, 27.620676757333367 ] } }, +{ "type": "Feature", "properties": { "im": 0.00018815 }, "geometry": { "type": "Point", "coordinates": [ 85.312984891789881, 27.625362536609355 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.31180412512883, 27.622255255922365 ] } }, +{ "type": "Feature", "properties": { "im": 0.00027953 }, "geometry": { "type": "Point", "coordinates": [ 85.312674163721198, 27.623001003287261 ] } }, +{ "type": "Feature", "properties": { "im": 6.502e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.310909228290996, 27.623585172056369 ] } }, +{ "type": "Feature", "properties": { "im": 7.327e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.312065136706551, 27.625760268537274 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.309977044084903, 27.625747839414505 ] } }, +{ "type": "Feature", "properties": { "im": 2.45803709 }, "geometry": { "type": "Point", "coordinates": [ 85.31218942793403, 27.626667594497867 ] } }, +{ "type": "Feature", "properties": { "im": 0.00021613 }, "geometry": { "type": "Point", "coordinates": [ 85.310474208994819, 27.623199869251192 ] } }, +{ "type": "Feature", "properties": { "im": 1.47947497 }, "geometry": { "type": "Point", "coordinates": [ 85.31135667670992, 27.623498168197187 ] } }, +{ "type": "Feature", "properties": { "im": 0.00021975 }, "geometry": { "type": "Point", "coordinates": [ 85.311480967937399, 27.627301479758025 ] } }, +{ "type": "Feature", "properties": { "im": 0.00222478 }, "geometry": { "type": "Point", "coordinates": [ 85.310014331453146, 27.623634888547354 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312338577407004, 27.62500209204963 ] } }, +{ "type": "Feature", "properties": { "im": 0.18999794 }, "geometry": { "type": "Point", "coordinates": [ 85.311779266883363, 27.626456299411124 ] } }, +{ "type": "Feature", "properties": { "im": 0.00045762 }, "geometry": { "type": "Point", "coordinates": [ 85.312114853197542, 27.627724069931432 ] } }, +{ "type": "Feature", "properties": { "im": 0.31009766 }, "geometry": { "type": "Point", "coordinates": [ 85.313593918804543, 27.624753509594662 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310697933204281, 27.625200958013604 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310163480926107, 27.626431441165685 ] } }, +{ "type": "Feature", "properties": { "im": 0.11034144 }, "geometry": { "type": "Point", "coordinates": [ 85.312723880212189, 27.623858612756887 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314252662310182, 27.623386306092385 ] } }, +{ "type": "Feature", "properties": { "im": 1.742e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.314028938100719, 27.624405494157724 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313146470385618, 27.621298213470791 ] } }, +{ "type": "Feature", "properties": { "im": 0.36348609 }, "geometry": { "type": "Point", "coordinates": [ 85.313469627577064, 27.624455210648751 ] } }, +{ "type": "Feature", "properties": { "im": 0.10498759 }, "geometry": { "type": "Point", "coordinates": [ 85.312972462667162, 27.623697034161083 ] } }, +{ "type": "Feature", "properties": { "im": 0.10777844 }, "geometry": { "type": "Point", "coordinates": [ 85.311393964078164, 27.628009939754651 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313270761613097, 27.622068819081168 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313556631436299, 27.621323071716301 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314327237046669, 27.62368460503841 ] } }, +{ "type": "Feature", "properties": { "im": 0.00011501 }, "geometry": { "type": "Point", "coordinates": [ 85.3108843700455, 27.625026950295137 ] } }, +{ "type": "Feature", "properties": { "im": 0.24888749 }, "geometry": { "type": "Point", "coordinates": [ 85.311667404778603, 27.62788564852719 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314314807923907, 27.625076666786168 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.309765748998174, 27.624169340825567 ] } }, +{ "type": "Feature", "properties": { "im": 0.00017785 }, "geometry": { "type": "Point", "coordinates": [ 85.3108843700455, 27.624132053457302 ] } }, +{ "type": "Feature", "properties": { "im": 0.09123791 }, "geometry": { "type": "Point", "coordinates": [ 85.31310918301736, 27.624654076612703 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310586071099564, 27.624852942576641 ] } }, +{ "type": "Feature", "properties": { "im": 4.519e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.312823313194173, 27.627164759407776 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311083236009466, 27.625660835555276 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311331818464424, 27.623995333107118 ] } }, +{ "type": "Feature", "properties": { "im": 5.144e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.311219956359693, 27.624032620475322 ] } }, +{ "type": "Feature", "properties": { "im": 0.00058701 }, "geometry": { "type": "Point", "coordinates": [ 85.310946515659239, 27.623846183634125 ] } }, +{ "type": "Feature", "properties": { "im": 0.0002512 }, "geometry": { "type": "Point", "coordinates": [ 85.312761167580433, 27.627052897303024 ] } }, +{ "type": "Feature", "properties": { "im": 3.876e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.314985980552308, 27.620937768911045 ] } }, +{ "type": "Feature", "properties": { "im": 0.00123709 }, "geometry": { "type": "Point", "coordinates": [ 85.312114853197542, 27.625847272396474 ] } }, +{ "type": "Feature", "properties": { "im": 0.16568602 }, "geometry": { "type": "Point", "coordinates": [ 85.312798454948677, 27.623436022583437 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313208615999358, 27.622155822940421 ] } }, +{ "type": "Feature", "properties": { "im": 9.887e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.310126193557892, 27.624156911702766 ] } }, +{ "type": "Feature", "properties": { "im": 0.17921107 }, "geometry": { "type": "Point", "coordinates": [ 85.313208615999358, 27.623025861532749 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311679833901366, 27.622752420832246 ] } }, +{ "type": "Feature", "properties": { "im": 0.18878999 }, "geometry": { "type": "Point", "coordinates": [ 85.313556631436299, 27.624790796962913 ] } }, +{ "type": "Feature", "properties": { "im": 0.03611326 }, "geometry": { "type": "Point", "coordinates": [ 85.3144390991514, 27.620838335929076 ] } }, +{ "type": "Feature", "properties": { "im": 0.00016942 }, "geometry": { "type": "Point", "coordinates": [ 85.314762256342831, 27.621559225048454 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312313719161494, 27.623137723637488 ] } }, +{ "type": "Feature", "properties": { "im": 0.1146328 }, "geometry": { "type": "Point", "coordinates": [ 85.312487726879979, 27.627139901162305 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312612018107444, 27.622565983991073 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311406393200912, 27.62262812960477 ] } }, +{ "type": "Feature", "properties": { "im": 3.644e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.312761167580433, 27.625101525031596 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.31289788793066, 27.62189481136269 ] } }, +{ "type": "Feature", "properties": { "im": 0.00397756 }, "geometry": { "type": "Point", "coordinates": [ 85.311008661272979, 27.625002092049638 ] } }, +{ "type": "Feature", "properties": { "im": 0.00061269 }, "geometry": { "type": "Point", "coordinates": [ 85.313047037403635, 27.626742169234319 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314861689324829, 27.622193110308601 ] } }, +{ "type": "Feature", "properties": { "im": 3.653e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.312686592843946, 27.624405494157781 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.315085413534305, 27.62095019803381 ] } }, +{ "type": "Feature", "properties": { "im": 0.00028744 }, "geometry": { "type": "Point", "coordinates": [ 85.31156797179662, 27.627251763267036 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313581489681795, 27.625946705378482 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.309803036366432, 27.624194199071045 ] } }, +{ "type": "Feature", "properties": { "im": 0.00230472 }, "geometry": { "type": "Point", "coordinates": [ 85.313854930382249, 27.620912910665613 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313022179158139, 27.627040468180276 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314066225468963, 27.622565983991066 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310138622680611, 27.625076666786192 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312624447230206, 27.621484650312002 ] } }, +{ "type": "Feature", "properties": { "im": 0.000928 }, "geometry": { "type": "Point", "coordinates": [ 85.309989473207651, 27.62378403802035 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310772507940783, 27.624952375558632 ] } }, +{ "type": "Feature", "properties": { "im": 0.02474685 }, "geometry": { "type": "Point", "coordinates": [ 85.312786025825929, 27.626332008183667 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.31112052337771, 27.627177188530535 ] } }, +{ "type": "Feature", "properties": { "im": 0.00066267 }, "geometry": { "type": "Point", "coordinates": [ 85.311654975655856, 27.625002092049673 ] } }, +{ "type": "Feature", "properties": { "im": 1.35073226 }, "geometry": { "type": "Point", "coordinates": [ 85.311518255305643, 27.62763706607225 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312040278461055, 27.625225816259125 ] } }, +{ "type": "Feature", "properties": { "im": 0.00731714 }, "geometry": { "type": "Point", "coordinates": [ 85.313892217750507, 27.621273355225295 ] } }, +{ "type": "Feature", "properties": { "im": 0.00012696 }, "geometry": { "type": "Point", "coordinates": [ 85.313680922663778, 27.620875623297344 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313096753894612, 27.622267685045156 ] } }, +{ "type": "Feature", "properties": { "im": 0.00034213 }, "geometry": { "type": "Point", "coordinates": [ 85.310573641976802, 27.628457388173583 ] } }, +{ "type": "Feature", "properties": { "im": 4.183e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.312935175298904, 27.625312820118353 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312077565829298, 27.623187440128476 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310101335312368, 27.626456299411135 ] } }, +{ "type": "Feature", "properties": { "im": 0.00117563 }, "geometry": { "type": "Point", "coordinates": [ 85.313432340208834, 27.62567326467806 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313183757753862, 27.620863194174596 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313842501259501, 27.625499256959564 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.31259958898471, 27.622926428550784 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310772507940783, 27.625921847132989 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312711451089442, 27.621198780488818 ] } }, +{ "type": "Feature", "properties": { "im": 0.00021739 }, "geometry": { "type": "Point", "coordinates": [ 85.312587159861963, 27.627264192389784 ] } }, +{ "type": "Feature", "properties": { "im": 0.0360937 }, "geometry": { "type": "Point", "coordinates": [ 85.31289788793066, 27.623187440128486 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311642546533108, 27.628270951332336 ] } }, +{ "type": "Feature", "properties": { "im": 0.00035726 }, "geometry": { "type": "Point", "coordinates": [ 85.312052707583803, 27.624480068894282 ] } }, +{ "type": "Feature", "properties": { "im": 0.00507232 }, "geometry": { "type": "Point", "coordinates": [ 85.310784937063502, 27.623759179774851 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310548783731306, 27.628569250278346 ] } }, +{ "type": "Feature", "properties": { "im": 5.751e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.31315889950838, 27.626767027479858 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312251573547755, 27.625660835555266 ] } }, +{ "type": "Feature", "properties": { "im": 0.05046349 }, "geometry": { "type": "Point", "coordinates": [ 85.313121612140122, 27.626655165375123 ] } }, +{ "type": "Feature", "properties": { "im": 0.54305541 }, "geometry": { "type": "Point", "coordinates": [ 85.311605259164878, 27.627748928176917 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313767926523013, 27.620316312773717 ] } }, +{ "type": "Feature", "properties": { "im": 0.00021599 }, "geometry": { "type": "Point", "coordinates": [ 85.310064047944124, 27.623473309951688 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.31524699213, 27.621546795925696 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.31420294581919, 27.620092588564216 ] } }, +{ "type": "Feature", "properties": { "im": 0.01234082 }, "geometry": { "type": "Point", "coordinates": [ 85.313917075995988, 27.621285784348046 ] } }, +{ "type": "Feature", "properties": { "im": 0.00188844 }, "geometry": { "type": "Point", "coordinates": [ 85.312500156002727, 27.624989662926875 ] } }, +{ "type": "Feature", "properties": { "im": 1.06222988 }, "geometry": { "type": "Point", "coordinates": [ 85.311853841619822, 27.626269862569931 ] } }, +{ "type": "Feature", "properties": { "im": 0.36259206 }, "geometry": { "type": "Point", "coordinates": [ 85.310635787590542, 27.624368206789537 ] } }, +{ "type": "Feature", "properties": { "im": 0.0003598 }, "geometry": { "type": "Point", "coordinates": [ 85.312947604421652, 27.626854031339054 ] } }, +{ "type": "Feature", "properties": { "im": 3.783e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.312549872493719, 27.623013432410005 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312276431793265, 27.621633799785013 ] } }, +{ "type": "Feature", "properties": { "im": 0.00015859 }, "geometry": { "type": "Point", "coordinates": [ 85.314886547570325, 27.621646228907707 ] } }, +{ "type": "Feature", "properties": { "im": 3.515e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.310598500222298, 27.622938857673475 ] } }, +{ "type": "Feature", "properties": { "im": 1.32196577 }, "geometry": { "type": "Point", "coordinates": [ 85.312239144425035, 27.626506015902109 ] } }, +{ "type": "Feature", "properties": { "im": 0.2934836 }, "geometry": { "type": "Point", "coordinates": [ 85.313569060559047, 27.623958045738792 ] } }, +{ "type": "Feature", "properties": { "im": 1.63469308 }, "geometry": { "type": "Point", "coordinates": [ 85.311754408637853, 27.627487916599243 ] } }, +{ "type": "Feature", "properties": { "im": 0.21576217 }, "geometry": { "type": "Point", "coordinates": [ 85.312935175298904, 27.623945616616059 ] } }, +{ "type": "Feature", "properties": { "im": 0.00056738 }, "geometry": { "type": "Point", "coordinates": [ 85.312239144425035, 27.624442781526 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314488815642392, 27.623112865392006 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314861689324829, 27.620428174878427 ] } }, +{ "type": "Feature", "properties": { "im": 0.77820097 }, "geometry": { "type": "Point", "coordinates": [ 85.312450439511736, 27.627052897303077 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312102424074794, 27.621658658030512 ] } }, +{ "type": "Feature", "properties": { "im": 0.00684264 }, "geometry": { "type": "Point", "coordinates": [ 85.312413152143492, 27.626046138360469 ] } }, +{ "type": "Feature", "properties": { "im": 0.06267812 }, "geometry": { "type": "Point", "coordinates": [ 85.314240233187434, 27.62148465031202 ] } }, +{ "type": "Feature", "properties": { "im": 1.723e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.315085413534305, 27.621410075575515 ] } }, +{ "type": "Feature", "properties": { "im": 0.24764403 }, "geometry": { "type": "Point", "coordinates": [ 85.311853841619836, 27.626829173093562 ] } }, +{ "type": "Feature", "properties": { "im": 0.01221508 }, "geometry": { "type": "Point", "coordinates": [ 85.313506914945307, 27.625399823977574 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311456109691903, 27.626953464321044 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.309890040225667, 27.624268773807543 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311145381623206, 27.628631395892089 ] } }, +{ "type": "Feature", "properties": { "im": 0.57759592 }, "geometry": { "type": "Point", "coordinates": [ 85.313444769331568, 27.62276484995505 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310760078818021, 27.624703793103748 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312239144425035, 27.622615700482093 ] } }, +{ "type": "Feature", "properties": { "im": 0.41084557 }, "geometry": { "type": "Point", "coordinates": [ 85.311741979515105, 27.625946705378542 ] } }, +{ "type": "Feature", "properties": { "im": 0.10439794 }, "geometry": { "type": "Point", "coordinates": [ 85.313569060559047, 27.624902659067661 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.30987761110292, 27.623498168197195 ] } }, +{ "type": "Feature", "properties": { "im": 0.00043999 }, "geometry": { "type": "Point", "coordinates": [ 85.312649305475688, 27.627065326425821 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.31420294581919, 27.623262014864945 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313370194595066, 27.620577324351416 ] } }, +{ "type": "Feature", "properties": { "im": 0.00030796 }, "geometry": { "type": "Point", "coordinates": [ 85.311306960218928, 27.62731390888074 ] } }, +{ "type": "Feature", "properties": { "im": 0.29460159 }, "geometry": { "type": "Point", "coordinates": [ 85.313618777050038, 27.624156911702798 ] } }, +{ "type": "Feature", "properties": { "im": 0.00056042 }, "geometry": { "type": "Point", "coordinates": [ 85.313929505118736, 27.624828084331213 ] } }, +{ "type": "Feature", "properties": { "im": 0.00016921 }, "geometry": { "type": "Point", "coordinates": [ 85.311518255305629, 27.624865371699464 ] } }, +{ "type": "Feature", "properties": { "im": 0.01724214 }, "geometry": { "type": "Point", "coordinates": [ 85.312251573547769, 27.624405494157795 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.31034991776734, 27.627736499054208 ] } }, +{ "type": "Feature", "properties": { "im": 9.9999999999999995e-07 }, "geometry": { "type": "Point", "coordinates": [ 85.311505826182909, 27.624306061175762 ] } }, +{ "type": "Feature", "properties": { "im": 0.01449632 }, "geometry": { "type": "Point", "coordinates": [ 85.314637965115367, 27.621049631015786 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311157810745954, 27.62277727907782 ] } }, +{ "type": "Feature", "properties": { "im": 0.02974776 }, "geometry": { "type": "Point", "coordinates": [ 85.314240233187434, 27.620639469965134 ] } }, +{ "type": "Feature", "properties": { "im": 0.00121207 }, "geometry": { "type": "Point", "coordinates": [ 85.312201857056763, 27.625200958013661 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312375864775248, 27.621360359084502 ] } }, +{ "type": "Feature", "properties": { "im": 0.00679807 }, "geometry": { "type": "Point", "coordinates": [ 85.31491140581582, 27.621074489261275 ] } }, +{ "type": "Feature", "properties": { "im": 0.0005826 }, "geometry": { "type": "Point", "coordinates": [ 85.312823313194173, 27.622938857673471 ] } }, +{ "type": "Feature", "properties": { "im": 0.00019135 }, "geometry": { "type": "Point", "coordinates": [ 85.312636876352954, 27.623075578023744 ] } }, +{ "type": "Feature", "properties": { "im": 0.00442756 }, "geometry": { "type": "Point", "coordinates": [ 85.311518255305643, 27.624405494157738 ] } }, +{ "type": "Feature", "properties": { "im": 1.53976298 }, "geometry": { "type": "Point", "coordinates": [ 85.311816554251592, 27.627388483617249 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310250484785357, 27.626245004324403 ] } }, +{ "type": "Feature", "properties": { "im": 6.264e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.31313404126287, 27.625138812399864 ] } }, +{ "type": "Feature", "properties": { "im": 2.919e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.311157810745954, 27.628308238700583 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.31112052337771, 27.625225816259139 ] } }, +{ "type": "Feature", "properties": { "im": 0.36958031 }, "geometry": { "type": "Point", "coordinates": [ 85.313208615999343, 27.625275532750113 ] } }, +{ "type": "Feature", "properties": { "im": 0.12069484 }, "geometry": { "type": "Point", "coordinates": [ 85.31135667670992, 27.625660835555262 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311443680569155, 27.622901570305228 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310722791449777, 27.625872130641959 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310175910048855, 27.626916176952847 ] } }, +{ "type": "Feature", "properties": { "im": 0.00093067 }, "geometry": { "type": "Point", "coordinates": [ 85.311232385482455, 27.623299302233196 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314339666169417, 27.623982903984359 ] } }, +{ "type": "Feature", "properties": { "im": 8.33e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.310685504081533, 27.627823502913412 ] } }, +{ "type": "Feature", "properties": { "im": 0.17949977 }, "geometry": { "type": "Point", "coordinates": [ 85.314103512837207, 27.621260926102551 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311940845479072, 27.622690275218531 ] } }, +{ "type": "Feature", "properties": { "im": 0.07307917 }, "geometry": { "type": "Point", "coordinates": [ 85.314414240905904, 27.620689186456115 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312773596703181, 27.621484650312006 ] } }, +{ "type": "Feature", "properties": { "im": 0.0003961 }, "geometry": { "type": "Point", "coordinates": [ 85.314004079855223, 27.624803226085668 ] } }, +{ "type": "Feature", "properties": { "im": 0.00013383 }, "geometry": { "type": "Point", "coordinates": [ 85.314277520555677, 27.620465462246631 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312089994952046, 27.622217968554136 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310026760575894, 27.62638172467469 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310387205135584, 27.622913999428025 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312239144425021, 27.625735410291824 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310337488644592, 27.624728651349223 ] } }, +{ "type": "Feature", "properties": { "im": 0.06141143 }, "geometry": { "type": "Point", "coordinates": [ 85.313332907226837, 27.625300390995598 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313780355645761, 27.625561402573297 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310499067240315, 27.626518445024885 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310884370045486, 27.625561402573329 ] } }, +{ "type": "Feature", "properties": { "im": 0.0315417 }, "geometry": { "type": "Point", "coordinates": [ 85.311344247587172, 27.6254743987141 ] } }, +{ "type": "Feature", "properties": { "im": 0.29560443 }, "geometry": { "type": "Point", "coordinates": [ 85.312587159861963, 27.624132053457288 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313171328631114, 27.626816743970831 ] } }, +{ "type": "Feature", "properties": { "im": 0.00176738 }, "geometry": { "type": "Point", "coordinates": [ 85.312897887930646, 27.623436022583409 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313096753894627, 27.622491409254604 ] } }, +{ "type": "Feature", "properties": { "im": 0.49960773 }, "geometry": { "type": "Point", "coordinates": [ 85.313469627577064, 27.622416834518059 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313680922663778, 27.622839424691477 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312798454948677, 27.622379547149809 ] } }, +{ "type": "Feature", "properties": { "im": 2.43515403 }, "geometry": { "type": "Point", "coordinates": [ 85.312201857056777, 27.626928606075545 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310722791449777, 27.627139901162316 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312313719161509, 27.62191966960814 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312438010388988, 27.621397646452781 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312301290038761, 27.621472221189233 ] } }, +{ "type": "Feature", "properties": { "im": 0.09554776 }, "geometry": { "type": "Point", "coordinates": [ 85.311704692146847, 27.627798644667966 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.31032505952183, 27.626133142219743 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311617688287612, 27.622988574164484 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314575819501613, 27.62302586153276 ] } }, +{ "type": "Feature", "properties": { "im": 0.27928672 }, "geometry": { "type": "Point", "coordinates": [ 85.312027849338307, 27.623498168197145 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314526103010635, 27.623684605038349 ] } }, +{ "type": "Feature", "properties": { "im": 0.00021358 }, "geometry": { "type": "Point", "coordinates": [ 85.311083236009466, 27.623585172056426 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310088906189634, 27.625896988887476 ] } }, +{ "type": "Feature", "properties": { "im": 0.00014357 }, "geometry": { "type": "Point", "coordinates": [ 85.313047037403621, 27.625113954154397 ] } }, +{ "type": "Feature", "properties": { "im": 8.722e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.312910317053408, 27.625896988887508 ] } }, +{ "type": "Feature", "properties": { "im": 0.00266082 }, "geometry": { "type": "Point", "coordinates": [ 85.311145381623206, 27.625051808540647 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314066225468963, 27.625698122923566 ] } }, +{ "type": "Feature", "properties": { "im": 2.43004209 }, "geometry": { "type": "Point", "coordinates": [ 85.312139711443038, 27.626220146078911 ] } }, +{ "type": "Feature", "properties": { "im": 2.112e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.314190516696442, 27.625089095908887 ] } }, +{ "type": "Feature", "properties": { "im": 9.043e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.312972462667162, 27.625287961872896 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313705780909274, 27.623473309951688 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313121612140108, 27.620888052420135 ] } }, +{ "type": "Feature", "properties": { "im": 0.01373315 }, "geometry": { "type": "Point", "coordinates": [ 85.312264002670517, 27.623361447846928 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314227804064672, 27.624368206789505 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311456109691903, 27.623920758370584 ] } }, +{ "type": "Feature", "properties": { "im": 2.081e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.312487726879979, 27.627525203967476 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.31112052337771, 27.625747839414515 ] } }, +{ "type": "Feature", "properties": { "im": 0.08170355 }, "geometry": { "type": "Point", "coordinates": [ 85.31259958898471, 27.624094766089094 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314874118447577, 27.622342259781643 ] } }, +{ "type": "Feature", "properties": { "im": 0.17667726 }, "geometry": { "type": "Point", "coordinates": [ 85.313407481963324, 27.623398735215201 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311021090395712, 27.622503838377309 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312537443370971, 27.624405494157784 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.315097842657039, 27.6221309646949 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312027849338307, 27.625238245381905 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313283190735845, 27.621136634875015 ] } }, +{ "type": "Feature", "properties": { "im": 0.00071302 }, "geometry": { "type": "Point", "coordinates": [ 85.313979221609728, 27.624952375558703 ] } }, +{ "type": "Feature", "properties": { "im": 0.38209949 }, "geometry": { "type": "Point", "coordinates": [ 85.310934086536491, 27.628022368877424 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310325059521844, 27.622926428550713 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.31417808757368, 27.624082336966321 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.309840323734676, 27.624939946435962 ] } }, +{ "type": "Feature", "properties": { "im": 0.45277009 }, "geometry": { "type": "Point", "coordinates": [ 85.311070806886704, 27.623498168197123 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310337488644592, 27.625611119064303 ] } }, +{ "type": "Feature", "properties": { "im": 5.208e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.312313719161509, 27.625872130642048 ] } }, +{ "type": "Feature", "properties": { "im": 0.45313779 }, "geometry": { "type": "Point", "coordinates": [ 85.310151051803373, 27.623622459424606 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.31034991776734, 27.62285185381425 ] } }, +{ "type": "Feature", "properties": { "im": 0.00055231 }, "geometry": { "type": "Point", "coordinates": [ 85.311717121269609, 27.625374965732068 ] } }, +{ "type": "Feature", "properties": { "im": 0.00013623 }, "geometry": { "type": "Point", "coordinates": [ 85.311331818464424, 27.625163670645399 ] } }, +{ "type": "Feature", "properties": { "im": 0.00550555 }, "geometry": { "type": "Point", "coordinates": [ 85.311431251446393, 27.623647317670123 ] } }, +{ "type": "Feature", "properties": { "im": 0.03989058 }, "geometry": { "type": "Point", "coordinates": [ 85.314550961256131, 27.620863194174582 ] } }, +{ "type": "Feature", "properties": { "im": 0.312983 }, "geometry": { "type": "Point", "coordinates": [ 85.313047037403621, 27.625946705378528 ] } }, +{ "type": "Feature", "properties": { "im": 0.01119188 }, "geometry": { "type": "Point", "coordinates": [ 85.313357765472318, 27.625735410291764 ] } }, +{ "type": "Feature", "properties": { "im": 0.04663861 }, "geometry": { "type": "Point", "coordinates": [ 85.314613106869857, 27.621285784348018 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.31259958898471, 27.627487916599208 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.309740890752693, 27.623361447846971 ] } }, +{ "type": "Feature", "properties": { "im": 0.00019664 }, "geometry": { "type": "Point", "coordinates": [ 85.311095665132214, 27.624330919421283 ] } }, +{ "type": "Feature", "properties": { "im": 1.7e-07 }, "geometry": { "type": "Point", "coordinates": [ 85.311940845479072, 27.625586260818825 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.31420294581919, 27.622367118027118 ] } }, +{ "type": "Feature", "properties": { "im": 1.24018044 }, "geometry": { "type": "Point", "coordinates": [ 85.311841412497088, 27.626319579060958 ] } }, +{ "type": "Feature", "properties": { "im": 0.19706728 }, "geometry": { "type": "Point", "coordinates": [ 85.311717121269609, 27.627835932036216 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311257243727923, 27.622292543290651 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312326148284257, 27.627898077649917 ] } }, +{ "type": "Feature", "properties": { "im": 0.00997628 }, "geometry": { "type": "Point", "coordinates": [ 85.314401811783142, 27.621459792066485 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311207527236931, 27.626965893443835 ] } }, +{ "type": "Feature", "properties": { "im": 0.46395471 }, "geometry": { "type": "Point", "coordinates": [ 85.313457198454316, 27.622441692763559 ] } }, +{ "type": "Feature", "properties": { "im": 0.01424821 }, "geometry": { "type": "Point", "coordinates": [ 85.312450439511736, 27.62603370923776 ] } }, +{ "type": "Feature", "properties": { "im": 0.00452651 }, "geometry": { "type": "Point", "coordinates": [ 85.31212728232029, 27.624156911702787 ] } }, +{ "type": "Feature", "properties": { "im": 1.018e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.312612018107458, 27.625300390995633 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313283190735845, 27.621907240485395 ] } }, +{ "type": "Feature", "properties": { "im": 0.00026687 }, "geometry": { "type": "Point", "coordinates": [ 85.313867359504982, 27.620651899087939 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310275343030838, 27.624840513453893 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.31394193424147, 27.62385861275683 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314041367223467, 27.624057478720832 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310337488644592, 27.626182858710667 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310499067240301, 27.627065326425818 ] } }, +{ "type": "Feature", "properties": { "im": 0.01102799 }, "geometry": { "type": "Point", "coordinates": [ 85.31266173459845, 27.625002092049623 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.309902469348415, 27.623299302233189 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312587159861963, 27.622789708200528 ] } }, +{ "type": "Feature", "properties": { "im": 0.07186153 }, "geometry": { "type": "Point", "coordinates": [ 85.313208615999358, 27.623448451706171 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314053796346215, 27.622876712059789 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310101335312382, 27.625635977309784 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310548783731306, 27.627226905021526 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314066225468963, 27.622317401536094 ] } }, +{ "type": "Feature", "properties": { "im": 0.37612585 }, "geometry": { "type": "Point", "coordinates": [ 85.313022179158139, 27.623001003287264 ] } }, +{ "type": "Feature", "properties": { "im": 0.91194383 }, "geometry": { "type": "Point", "coordinates": [ 85.310586071099564, 27.624281202930241 ] } }, +{ "type": "Feature", "properties": { "im": 9.96e-06 }, "geometry": { "type": "Point", "coordinates": [ 85.313817643014005, 27.62147222118924 ] } }, +{ "type": "Feature", "properties": { "im": 0.00755777 }, "geometry": { "type": "Point", "coordinates": [ 85.312475297757231, 27.625176099768161 ] } }, +{ "type": "Feature", "properties": { "im": 0.28651229 }, "geometry": { "type": "Point", "coordinates": [ 85.312674163721198, 27.626182858710674 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310175910048855, 27.627997510631925 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313842501259501, 27.623821325388583 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310921657413729, 27.626680023620622 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314339666169417, 27.620179592423479 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312313719161509, 27.627873219404407 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314836831079333, 27.621820236626217 ] } }, +{ "type": "Feature", "properties": { "im": 1.51616722 }, "geometry": { "type": "Point", "coordinates": [ 85.312276431793251, 27.627177188530553 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310896799168248, 27.625971563624013 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311990561970049, 27.622826995568794 ] } }, +{ "type": "Feature", "properties": { "im": 0.49841181 }, "geometry": { "type": "Point", "coordinates": [ 85.313506914945307, 27.624231486439299 ] } }, +{ "type": "Feature", "properties": { "im": 0.00033957 }, "geometry": { "type": "Point", "coordinates": [ 85.311841412497088, 27.624977233804177 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312475297757217, 27.621509508557498 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310436921626561, 27.627711640808716 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314376953537661, 27.622690275218584 ] } }, +{ "type": "Feature", "properties": { "im": 0.00042548 }, "geometry": { "type": "Point", "coordinates": [ 85.311257243727923, 27.623672175915651 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312089994952032, 27.622466551009058 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.31390464687324, 27.625809985028248 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312624447230206, 27.62188238223991 ] } }, +{ "type": "Feature", "properties": { "im": 1.61407994 }, "geometry": { "type": "Point", "coordinates": [ 85.312226715302273, 27.627202046776073 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311244814605189, 27.622715133464038 ] } }, +{ "type": "Feature", "properties": { "im": 0.71437714 }, "geometry": { "type": "Point", "coordinates": [ 85.311269672850685, 27.627661924317707 ] } }, +{ "type": "Feature", "properties": { "im": 0.18590976 }, "geometry": { "type": "Point", "coordinates": [ 85.313183757753862, 27.623833754511384 ] } }, +{ "type": "Feature", "properties": { "im": 0.04093381 }, "geometry": { "type": "Point", "coordinates": [ 85.313208615999358, 27.622913999427983 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.31441424090589, 27.621907240485438 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311580400919382, 27.622081248203862 ] } }, +{ "type": "Feature", "properties": { "im": 0.06245826 }, "geometry": { "type": "Point", "coordinates": [ 85.313071895649131, 27.623299302233214 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312264002670517, 27.625548973450542 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310300201276348, 27.625722981169062 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313071895649131, 27.620925339788311 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310337488644578, 27.62588455976476 ] } }, +{ "type": "Feature", "properties": { "im": 0.79010438 }, "geometry": { "type": "Point", "coordinates": [ 85.311853841619822, 27.627599778703953 ] } }, +{ "type": "Feature", "properties": { "im": 1.87984589 }, "geometry": { "type": "Point", "coordinates": [ 85.312052707583803, 27.627214475898796 ] } }, +{ "type": "Feature", "properties": { "im": 0.00141199 }, "geometry": { "type": "Point", "coordinates": [ 85.313954363364218, 27.624964804681394 ] } }, +{ "type": "Feature", "properties": { "im": 0.00010347 }, "geometry": { "type": "Point", "coordinates": [ 85.310946515659239, 27.627550062212958 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311480967937399, 27.626593019761348 ] } }, +{ "type": "Feature", "properties": { "im": 0.02179031 }, "geometry": { "type": "Point", "coordinates": [ 85.310809795309012, 27.628258522209563 ] } }, +{ "type": "Feature", "properties": { "im": 0.0002589 }, "geometry": { "type": "Point", "coordinates": [ 85.310635787590542, 27.627997510631896 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310847082677256, 27.625387394854862 ] } }, +{ "type": "Feature", "properties": { "im": 0.01053116 }, "geometry": { "type": "Point", "coordinates": [ 85.312201857056777, 27.624107195211771 ] } }, +{ "type": "Feature", "properties": { "im": 0.18918236 }, "geometry": { "type": "Point", "coordinates": [ 85.313419911086072, 27.623274443987654 ] } }, +{ "type": "Feature", "properties": { "im": 0.00031112 }, "geometry": { "type": "Point", "coordinates": [ 85.310337488644592, 27.624281202930245 ] } }, +{ "type": "Feature", "properties": { "im": 0.00016079 }, "geometry": { "type": "Point", "coordinates": [ 85.311219956359693, 27.623212298373989 ] } }, +{ "type": "Feature", "properties": { "im": 0.01404479 }, "geometry": { "type": "Point", "coordinates": [ 85.312438010388988, 27.62411962433459 ] } }, +{ "type": "Feature", "properties": { "im": 0.8526602 }, "geometry": { "type": "Point", "coordinates": [ 85.311940845479057, 27.626692452743374 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313830072136739, 27.62602128011498 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.309753319875441, 27.623659746792917 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.315197275639022, 27.621410075575472 ] } }, +{ "type": "Feature", "properties": { "im": 0.00106766 }, "geometry": { "type": "Point", "coordinates": [ 85.312947604421652, 27.626481157656659 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310374776012836, 27.627214475898793 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313569060559047, 27.626443870288441 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313805213891257, 27.622367118027107 ] } }, +{ "type": "Feature", "properties": { "im": 0.00018857 }, "geometry": { "type": "Point", "coordinates": [ 85.311605259164878, 27.625176099768144 ] } }, +{ "type": "Feature", "properties": { "im": 0.21212186 }, "geometry": { "type": "Point", "coordinates": [ 85.313482056699812, 27.623199869251163 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313854930382249, 27.625722981169027 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314178087573694, 27.623684605038378 ] } }, +{ "type": "Feature", "properties": { "im": 0.37938849 }, "geometry": { "type": "Point", "coordinates": [ 85.310523925485811, 27.624181769948308 ] } }, +{ "type": "Feature", "properties": { "im": 0.00143503 }, "geometry": { "type": "Point", "coordinates": [ 85.314961122306812, 27.621484650311967 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310710362327029, 27.62576026853727 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310387205135584, 27.62278970820056 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311083236009466, 27.622242826799585 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314451528274134, 27.62445521064879 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312922746176142, 27.620975056279374 ] } }, +{ "type": "Feature", "properties": { "im": 0.00016967 }, "geometry": { "type": "Point", "coordinates": [ 85.312823313194173, 27.627077755548559 ] } }, +{ "type": "Feature", "properties": { "im": 0.25270304 }, "geometry": { "type": "Point", "coordinates": [ 85.313096753894627, 27.623473309951699 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314190516696442, 27.622926428550723 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313705780909274, 27.623460880828926 ] } }, +{ "type": "Feature", "properties": { "im": 0.31281393 }, "geometry": { "type": "Point", "coordinates": [ 85.313146470385618, 27.62338630609241 ] } }, +{ "type": "Feature", "properties": { "im": 0.00057676 }, "geometry": { "type": "Point", "coordinates": [ 85.313767926523013, 27.620850765051888 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310660645836037, 27.625126383277102 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310971373904735, 27.626269862569941 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311866270742584, 27.628121801859351 ] } }, +{ "type": "Feature", "properties": { "im": 0.00021778 }, "geometry": { "type": "Point", "coordinates": [ 85.314787114588341, 27.621571654171191 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310200768294365, 27.62812180185939 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312972462667148, 27.622242826799646 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313991650732476, 27.623634888547404 ] } }, +{ "type": "Feature", "properties": { "im": 0.00012993 }, "geometry": { "type": "Point", "coordinates": [ 85.311058377763956, 27.624666505735419 ] } }, +{ "type": "Feature", "properties": { "im": 0.0185949 }, "geometry": { "type": "Point", "coordinates": [ 85.313332907226837, 27.625710552046254 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310610929345046, 27.62603370923777 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310001902330384, 27.624393065034994 ] } }, +{ "type": "Feature", "properties": { "im": 0.00021935 }, "geometry": { "type": "Point", "coordinates": [ 85.310461779872071, 27.623199869251202 ] } }, +{ "type": "Feature", "properties": { "im": 0.67082854 }, "geometry": { "type": "Point", "coordinates": [ 85.311456109691903, 27.627786215545186 ] } }, +{ "type": "Feature", "properties": { "im": 0.74419086 }, "geometry": { "type": "Point", "coordinates": [ 85.311219956359693, 27.627686782563188 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312810884071425, 27.620925339788311 ] } }, +{ "type": "Feature", "properties": { "im": 0.07689122 }, "geometry": { "type": "Point", "coordinates": [ 85.313494485822559, 27.624753509594662 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.31005161882139, 27.625760268537299 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310735220572525, 27.62654330327036 ] } }, +{ "type": "Feature", "properties": { "im": 0.0041087 }, "geometry": { "type": "Point", "coordinates": [ 85.311232385482455, 27.625287961872839 ] } }, +{ "type": "Feature", "properties": { "im": 0.00142841 }, "geometry": { "type": "Point", "coordinates": [ 85.310772507940783, 27.628022368877399 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312761167580419, 27.622205539431388 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314849260202081, 27.622491409254568 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312810884071425, 27.622106106449376 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.309989473207651, 27.625822414151006 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313171328631114, 27.622106106449433 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.31518484651626, 27.621919669608168 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310921657413743, 27.625946705378468 ] } }, +{ "type": "Feature", "properties": { "im": 0.00463384 }, "geometry": { "type": "Point", "coordinates": [ 85.311480967937385, 27.625499256959579 ] } }, +{ "type": "Feature", "properties": { "im": 0.00098182 }, "geometry": { "type": "Point", "coordinates": [ 85.310760078818021, 27.623038290655476 ] } }, +{ "type": "Feature", "properties": { "im": 0.23042599 }, "geometry": { "type": "Point", "coordinates": [ 85.31313404126287, 27.623759179774879 ] } }, +{ "type": "Feature", "properties": { "im": 0.53098602 }, "geometry": { "type": "Point", "coordinates": [ 85.311841412497088, 27.627736499054247 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314414240905904, 27.623908329247811 ] } }, +{ "type": "Feature", "properties": { "im": 0.00043547 }, "geometry": { "type": "Point", "coordinates": [ 85.310784937063502, 27.627761357299732 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312152140565786, 27.625126383277141 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.31420294581919, 27.624504927139721 ] } }, +{ "type": "Feature", "properties": { "im": 1.126e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.312810884071411, 27.62564840643256 ] } }, +{ "type": "Feature", "properties": { "im": 0.00020601 }, "geometry": { "type": "Point", "coordinates": [ 85.311543113551139, 27.626108283974236 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314376953537661, 27.623100436269251 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313208615999358, 27.620676757333413 ] } }, +{ "type": "Feature", "properties": { "im": 0.38310738 }, "geometry": { "type": "Point", "coordinates": [ 85.312450439511721, 27.626941035198357 ] } }, +{ "type": "Feature", "properties": { "im": 0.00036962 }, "geometry": { "type": "Point", "coordinates": [ 85.309914898471149, 27.623821325388569 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312065136706551, 27.622876712059764 ] } }, +{ "type": "Feature", "properties": { "im": 0.11530625 }, "geometry": { "type": "Point", "coordinates": [ 85.314327237046669, 27.620850765051848 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310337488644578, 27.628320667823374 ] } }, +{ "type": "Feature", "properties": { "im": 0.00614743 }, "geometry": { "type": "Point", "coordinates": [ 85.310561212854054, 27.623286873110416 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314613106869871, 27.622913999427965 ] } }, +{ "type": "Feature", "properties": { "im": 0.00786824 }, "geometry": { "type": "Point", "coordinates": [ 85.31494869318405, 27.621024772770337 ] } }, +{ "type": "Feature", "properties": { "im": 0.0018631 }, "geometry": { "type": "Point", "coordinates": [ 85.310275343030852, 27.624206628193768 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312798454948677, 27.627649495194941 ] } }, +{ "type": "Feature", "properties": { "im": 0.00052426 }, "geometry": { "type": "Point", "coordinates": [ 85.311070806886704, 27.623088007146471 ] } }, +{ "type": "Feature", "properties": { "im": 2.3e-07 }, "geometry": { "type": "Point", "coordinates": [ 85.311928416356324, 27.624343348544009 ] } }, +{ "type": "Feature", "properties": { "im": 0.00017366 }, "geometry": { "type": "Point", "coordinates": [ 85.312487726879965, 27.624852942576652 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314227804064672, 27.621944527853671 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.31450124476514, 27.623709463283845 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314389382660409, 27.622466551009115 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.31105837776397, 27.625996421869491 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313581489681781, 27.620502749614896 ] } }, +{ "type": "Feature", "properties": { "im": 0.0002628 }, "geometry": { "type": "Point", "coordinates": [ 85.31082222443176, 27.624094766089041 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.31420294581919, 27.622155822940424 ] } }, +{ "type": "Feature", "properties": { "im": 0.0001852 }, "geometry": { "type": "Point", "coordinates": [ 85.31141882232366, 27.62466650573549 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310784937063517, 27.627065326425804 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312748738457671, 27.627388483617214 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313109183017374, 27.622304972413328 ] } }, +{ "type": "Feature", "properties": { "im": 0.01265744 }, "geometry": { "type": "Point", "coordinates": [ 85.313059466526383, 27.625300390995648 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311990561970063, 27.625325249241122 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310374776012836, 27.626207716956173 ] } }, +{ "type": "Feature", "properties": { "im": 0.48440918 }, "geometry": { "type": "Point", "coordinates": [ 85.311630117410374, 27.627313908880737 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314252662310182, 27.624616789244495 ] } }, +{ "type": "Feature", "properties": { "im": 0.02983398 }, "geometry": { "type": "Point", "coordinates": [ 85.311791696006097, 27.627090184671271 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.310001902330399, 27.624778367840225 ] } }, +{ "type": "Feature", "properties": { "im": 0.00037534 }, "geometry": { "type": "Point", "coordinates": [ 85.313618777050053, 27.622404405395308 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314103512837193, 27.624107195211845 ] } }, +{ "type": "Feature", "properties": { "im": 0.00024782 }, "geometry": { "type": "Point", "coordinates": [ 85.312276431793265, 27.624753509594743 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314401811783142, 27.621745661889676 ] } }, +{ "type": "Feature", "properties": { "im": 0.01382489 }, "geometry": { "type": "Point", "coordinates": [ 85.312873029685164, 27.624219057316527 ] } }, +{ "type": "Feature", "properties": { "im": 2.982e-05 }, "geometry": { "type": "Point", "coordinates": [ 85.313805213891243, 27.62419419907102 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.313792784768509, 27.623485739074383 ] } }, +{ "type": "Feature", "properties": { "im": 0.00061147 }, "geometry": { "type": "Point", "coordinates": [ 85.314016508977971, 27.624629218367243 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.314824401956585, 27.622242826799585 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.311965703724582, 27.624989662926914 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.31488654757031, 27.622391976272617 ] } }, +{ "type": "Feature", "properties": { "im": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 85.312102424074794, 27.621845094871713 ] } } +] +} diff --git a/hazard_debris.xlsx b/hazard_debris.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..07808773434e9a39b6b3cf6edb63cc23e99944a5 Binary files /dev/null and b/hazard_debris.xlsx differ diff --git a/hazard_earthquake.geojson b/hazard_earthquake.geojson new file mode 100644 index 0000000000000000000000000000000000000000..2c73641f78952fc085478a816a405ea3f353f94b --- /dev/null +++ b/hazard_earthquake.geojson @@ -0,0 +1,1006 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "im": 0.719787 }, "geometry": { "type": "Point", "coordinates": [ 85.324958144325649, 27.62864409584909 ] } }, +{ "type": "Feature", "properties": { "im": 0.721813 }, "geometry": { "type": "Point", "coordinates": [ 85.324965838601145, 27.628138756894916 ] } }, +{ "type": "Feature", "properties": { "im": 1.571118 }, "geometry": { "type": "Point", "coordinates": [ 85.304221417507179, 27.637742503637543 ] } }, +{ "type": "Feature", "properties": { "im": 0.653227 }, "geometry": { "type": "Point", "coordinates": [ 85.322612882163554, 27.641756957033031 ] } }, +{ "type": "Feature", "properties": { "im": 0.454057 }, "geometry": { "type": "Point", "coordinates": [ 85.317255086138431, 27.627287263495639 ] } }, +{ "type": "Feature", "properties": { "im": 1.65503 }, "geometry": { "type": "Point", "coordinates": [ 85.303839044338261, 27.620805965461255 ] } }, +{ "type": "Feature", "properties": { "im": 0.997977 }, "geometry": { "type": "Point", "coordinates": [ 85.305520202445663, 27.623100945836338 ] } }, +{ "type": "Feature", "properties": { "im": 1.347867 }, "geometry": { "type": "Point", "coordinates": [ 85.304038243311666, 27.62181925972375 ] } }, +{ "type": "Feature", "properties": { "im": 0.458211 }, "geometry": { "type": "Point", "coordinates": [ 85.315900541010109, 27.617667633421942 ] } }, +{ "type": "Feature", "properties": { "im": 0.641677 }, "geometry": { "type": "Point", "coordinates": [ 85.324788819577009, 27.639761543022171 ] } }, +{ "type": "Feature", "properties": { "im": 1.111638 }, "geometry": { "type": "Point", "coordinates": [ 85.31385838119094, 27.624971570567599 ] } }, +{ "type": "Feature", "properties": { "im": 0.494627 }, "geometry": { "type": "Point", "coordinates": [ 85.316615598322841, 27.62702678730794 ] } }, +{ "type": "Feature", "properties": { "im": 3.617433 }, "geometry": { "type": "Point", "coordinates": [ 85.314924438835988, 27.639389286242434 ] } }, +{ "type": "Feature", "properties": { "im": 0.701537 }, "geometry": { "type": "Point", "coordinates": [ 85.320326260219232, 27.636927682264051 ] } }, +{ "type": "Feature", "properties": { "im": 1.363067 }, "geometry": { "type": "Point", "coordinates": [ 85.304525815830274, 27.63193379954992 ] } }, +{ "type": "Feature", "properties": { "im": 2.643941 }, "geometry": { "type": "Point", "coordinates": [ 85.315112149566872, 27.641160571283788 ] } }, +{ "type": "Feature", "properties": { "im": 1.516228 }, "geometry": { "type": "Point", "coordinates": [ 85.306818517951513, 27.62235865709096 ] } }, +{ "type": "Feature", "properties": { "im": 0.666934 }, "geometry": { "type": "Point", "coordinates": [ 85.323756106735217, 27.623069821141669 ] } }, +{ "type": "Feature", "properties": { "im": 1.004816 }, "geometry": { "type": "Point", "coordinates": [ 85.315114105912087, 27.627008553722842 ] } }, +{ "type": "Feature", "properties": { "im": 3.712433 }, "geometry": { "type": "Point", "coordinates": [ 85.310029683872528, 27.636802563609692 ] } }, +{ "type": "Feature", "properties": { "im": 1.138189 }, "geometry": { "type": "Point", "coordinates": [ 85.317588056938348, 27.633609186482776 ] } }, +{ "type": "Feature", "properties": { "im": 0.730385 }, "geometry": { "type": "Point", "coordinates": [ 85.315137322139506, 27.625492544057462 ] } }, +{ "type": "Feature", "properties": { "im": 1.334047 }, "geometry": { "type": "Point", "coordinates": [ 85.308686343963444, 27.626424883936387 ] } }, +{ "type": "Feature", "properties": { "im": 0.63632 }, "geometry": { "type": "Point", "coordinates": [ 85.324387155801872, 27.63798768028251 ] } }, +{ "type": "Feature", "properties": { "im": 1.882795 }, "geometry": { "type": "Point", "coordinates": [ 85.313320347568123, 27.632041050502195 ] } }, +{ "type": "Feature", "properties": { "im": 0.584535 }, "geometry": { "type": "Point", "coordinates": [ 85.32443720189012, 27.634702981772719 ] } }, +{ "type": "Feature", "properties": { "im": 1.983194 }, "geometry": { "type": "Point", "coordinates": [ 85.313546767192904, 27.631285659402966 ] } }, +{ "type": "Feature", "properties": { "im": 0.402725 }, "geometry": { "type": "Point", "coordinates": [ 85.315425604216671, 27.620694453090131 ] } }, +{ "type": "Feature", "properties": { "im": 1.444728 }, "geometry": { "type": "Point", "coordinates": [ 85.30512955967292, 27.62056902589471 ] } }, +{ "type": "Feature", "properties": { "im": 3.041593 }, "geometry": { "type": "Point", "coordinates": [ 85.312837503737143, 27.635573184695282 ] } }, +{ "type": "Feature", "properties": { "im": 0.703355 }, "geometry": { "type": "Point", "coordinates": [ 85.322410645540231, 27.626844292019644 ] } }, +{ "type": "Feature", "properties": { "im": 0.719787 }, "geometry": { "type": "Point", "coordinates": [ 85.324958144325649, 27.62864409584909 ] } }, +{ "type": "Feature", "properties": { "im": 0.404766 }, "geometry": { "type": "Point", "coordinates": [ 85.315854143180033, 27.620699657015674 ] } }, +{ "type": "Feature", "properties": { "im": 0.474132 }, "geometry": { "type": "Point", "coordinates": [ 85.324912601242701, 27.617524036573695 ] } }, +{ "type": "Feature", "properties": { "im": 3.498179 }, "geometry": { "type": "Point", "coordinates": [ 85.312611068818356, 27.63632857357814 ] } }, +{ "type": "Feature", "properties": { "im": 2.482474 }, "geometry": { "type": "Point", "coordinates": [ 85.311281578224538, 27.63909224830223 ] } }, +{ "type": "Feature", "properties": { "im": 1.647919 }, "geometry": { "type": "Point", "coordinates": [ 85.313370711390419, 27.628756367874065 ] } }, +{ "type": "Feature", "properties": { "im": 0.658922 }, "geometry": { "type": "Point", "coordinates": [ 85.32004583031781, 27.641220443566148 ] } }, +{ "type": "Feature", "properties": { "im": 1.363136 }, "geometry": { "type": "Point", "coordinates": [ 85.312387921458182, 27.622931964364433 ] } }, +{ "type": "Feature", "properties": { "im": 0.69167 }, "geometry": { "type": "Point", "coordinates": [ 85.322886440623279, 27.623817455883067 ] } }, +{ "type": "Feature", "properties": { "im": 0.512307 }, "geometry": { "type": "Point", "coordinates": [ 85.322096668914028, 27.633411101221927 ] } }, +{ "type": "Feature", "properties": { "im": 0.456312 }, "geometry": { "type": "Point", "coordinates": [ 85.316911553021839, 27.621723354259561 ] } }, +{ "type": "Feature", "properties": { "im": 1.037876 }, "geometry": { "type": "Point", "coordinates": [ 85.317491418102179, 27.639925891699946 ] } }, +{ "type": "Feature", "properties": { "im": 1.878833 }, "geometry": { "type": "Point", "coordinates": [ 85.308289935130205, 27.638297633965184 ] } }, +{ "type": "Feature", "properties": { "im": 1.390948 }, "geometry": { "type": "Point", "coordinates": [ 85.304444017077969, 27.637239797803666 ] } }, +{ "type": "Feature", "properties": { "im": 1.422924 }, "geometry": { "type": "Point", "coordinates": [ 85.306518184956161, 27.627914713404895 ] } }, +{ "type": "Feature", "properties": { "im": 0.650075 }, "geometry": { "type": "Point", "coordinates": [ 85.324773421608896, 27.640772219106388 ] } }, +{ "type": "Feature", "properties": { "im": 0.443533 }, "geometry": { "type": "Point", "coordinates": [ 85.317175546352146, 27.618441254081223 ] } }, +{ "type": "Feature", "properties": { "im": 1.813205 }, "geometry": { "type": "Point", "coordinates": [ 85.307458932244387, 27.636518491503782 ] } }, +{ "type": "Feature", "properties": { "im": 1.780125 }, "geometry": { "type": "Point", "coordinates": [ 85.304806400354423, 27.641540368258941 ] } }, +{ "type": "Feature", "properties": { "im": 3.394714 }, "geometry": { "type": "Point", "coordinates": [ 85.309194777731022, 27.635276097639299 ] } }, +{ "type": "Feature", "properties": { "im": 2.057212 }, "geometry": { "type": "Point", "coordinates": [ 85.308628075515273, 27.630214894306583 ] } }, +{ "type": "Feature", "properties": { "im": 2.20784 }, "geometry": { "type": "Point", "coordinates": [ 85.309836887706822, 27.62138461096124 ] } }, +{ "type": "Feature", "properties": { "im": 2.795596 }, "geometry": { "type": "Point", "coordinates": [ 85.312431156238446, 27.634051950867075 ] } }, +{ "type": "Feature", "properties": { "im": 0.596603 }, "geometry": { "type": "Point", "coordinates": [ 85.321300173815615, 27.629358011732986 ] } }, +{ "type": "Feature", "properties": { "im": 1.950136 }, "geometry": { "type": "Point", "coordinates": [ 85.308402638355616, 27.630970288431772 ] } }, +{ "type": "Feature", "properties": { "im": 0.441004 }, "geometry": { "type": "Point", "coordinates": [ 85.317347823309859, 27.621223216292741 ] } }, +{ "type": "Feature", "properties": { "im": 0.586316 }, "geometry": { "type": "Point", "coordinates": [ 85.321642162026933, 27.621022529549798 ] } }, +{ "type": "Feature", "properties": { "im": 0.479552 }, "geometry": { "type": "Point", "coordinates": [ 85.316899959209522, 27.622481360240698 ] } }, +{ "type": "Feature", "properties": { "im": 1.322269 }, "geometry": { "type": "Point", "coordinates": [ 85.303979826193356, 27.625609263480865 ] } }, +{ "type": "Feature", "properties": { "im": 1.355251 }, "geometry": { "type": "Point", "coordinates": [ 85.303847371821107, 27.634199930572471 ] } }, +{ "type": "Feature", "properties": { "im": 0.452385 }, "geometry": { "type": "Point", "coordinates": [ 85.317925481320117, 27.625526387822777 ] } }, +{ "type": "Feature", "properties": { "im": 1.198138 }, "geometry": { "type": "Point", "coordinates": [ 85.310312994308362, 27.618357830062486 ] } }, +{ "type": "Feature", "properties": { "im": 0.661699 }, "geometry": { "type": "Point", "coordinates": [ 85.323969875183849, 27.623072404487615 ] } }, +{ "type": "Feature", "properties": { "im": 0.682822 }, "geometry": { "type": "Point", "coordinates": [ 85.321993642159001, 27.62608109980135 ] } }, +{ "type": "Feature", "properties": { "im": 1.647731 }, "geometry": { "type": "Point", "coordinates": [ 85.310090464120051, 27.618860549538809 ] } }, +{ "type": "Feature", "properties": { "im": 1.504827 }, "geometry": { "type": "Point", "coordinates": [ 85.309971436050489, 27.640592570943117 ] } }, +{ "type": "Feature", "properties": { "im": 0.474809 }, "geometry": { "type": "Point", "coordinates": [ 85.317328505455123, 27.622486559920983 ] } }, +{ "type": "Feature", "properties": { "im": 1.236029 }, "geometry": { "type": "Point", "coordinates": [ 85.304244219847718, 27.622327207358996 ] } }, +{ "type": "Feature", "properties": { "im": 1.474928 }, "geometry": { "type": "Point", "coordinates": [ 85.314802551518298, 27.633322646562387 ] } }, +{ "type": "Feature", "properties": { "im": 0.809388 }, "geometry": { "type": "Point", "coordinates": [ 85.313327353579155, 27.617636369398429 ] } }, +{ "type": "Feature", "properties": { "im": 0.531079 }, "geometry": { "type": "Point", "coordinates": [ 85.322335553836709, 27.617745609354685 ] } }, +{ "type": "Feature", "properties": { "im": 1.204437 }, "geometry": { "type": "Point", "coordinates": [ 85.317724546443415, 27.638665145453306 ] } }, +{ "type": "Feature", "properties": { "im": 3.469199 }, "geometry": { "type": "Point", "coordinates": [ 85.30882614182562, 27.617328850134225 ] } }, +{ "type": "Feature", "properties": { "im": 0.61012 }, "geometry": { "type": "Point", "coordinates": [ 85.3250466164003, 27.622832695533354 ] } }, +{ "type": "Feature", "properties": { "im": 0.937344 }, "geometry": { "type": "Point", "coordinates": [ 85.308457031584524, 27.627432946285456 ] } }, +{ "type": "Feature", "properties": { "im": 1.365878 }, "geometry": { "type": "Point", "coordinates": [ 85.314428170303856, 27.629780085343462 ] } }, +{ "type": "Feature", "properties": { "im": 0.506694 }, "geometry": { "type": "Point", "coordinates": [ 85.319730482736915, 27.619735805536237 ] } }, +{ "type": "Feature", "properties": { "im": 3.48939 }, "geometry": { "type": "Point", "coordinates": [ 85.310665328527051, 27.637315738967416 ] } }, +{ "type": "Feature", "properties": { "im": 0.588293 }, "geometry": { "type": "Point", "coordinates": [ 85.324034544559908, 27.632929105598809 ] } }, +{ "type": "Feature", "properties": { "im": 0.661937 }, "geometry": { "type": "Point", "coordinates": [ 85.321595915752567, 27.624054560632864 ] } }, +{ "type": "Feature", "properties": { "im": 1.803019 }, "geometry": { "type": "Point", "coordinates": [ 85.314794808868172, 27.633827982498712 ] } }, +{ "type": "Feature", "properties": { "im": 1.675134 }, "geometry": { "type": "Point", "coordinates": [ 85.313230535717878, 27.623953075287748 ] } }, +{ "type": "Feature", "properties": { "im": 1.124937 }, "geometry": { "type": "Point", "coordinates": [ 85.31510249711836, 27.62776655842449 ] } }, +{ "type": "Feature", "properties": { "im": 3.773772 }, "geometry": { "type": "Point", "coordinates": [ 85.311928878263046, 27.638847416445646 ] } }, +{ "type": "Feature", "properties": { "im": 2.235268 }, "geometry": { "type": "Point", "coordinates": [ 85.308301596057461, 27.637539633081897 ] } }, +{ "type": "Feature", "properties": { "im": 2.032665 }, "geometry": { "type": "Point", "coordinates": [ 85.312742850921069, 27.627737870155073 ] } }, +{ "type": "Feature", "properties": { "im": 0.993048 }, "geometry": { "type": "Point", "coordinates": [ 85.31220414465858, 27.620908006436991 ] } }, +{ "type": "Feature", "properties": { "im": 0.676797 }, "geometry": { "type": "Point", "coordinates": [ 85.325012000047494, 27.625106722355 ] } }, +{ "type": "Feature", "properties": { "im": 0.721813 }, "geometry": { "type": "Point", "coordinates": [ 85.324965838601145, 27.628138756894916 ] } }, +{ "type": "Feature", "properties": { "im": 0.634224 }, "geometry": { "type": "Point", "coordinates": [ 85.321935832881778, 27.629871136357341 ] } }, +{ "type": "Feature", "properties": { "im": 1.507459 }, "geometry": { "type": "Point", "coordinates": [ 85.313827403012098, 27.626992915529012 ] } }, +{ "type": "Feature", "properties": { "im": 1.16879 }, "geometry": { "type": "Point", "coordinates": [ 85.30741908720637, 27.625145849990762 ] } }, +{ "type": "Feature", "properties": { "im": 0.611037 }, "geometry": { "type": "Point", "coordinates": [ 85.320730083805401, 27.624549511661606 ] } }, +{ "type": "Feature", "properties": { "im": 0.585431 }, "geometry": { "type": "Point", "coordinates": [ 85.32486579739377, 27.634708160272176 ] } }, +{ "type": "Feature", "properties": { "im": 3.220517 }, "geometry": { "type": "Point", "coordinates": [ 85.312450539811167, 27.632788612535023 ] } }, +{ "type": "Feature", "properties": { "im": 1.602051 }, "geometry": { "type": "Point", "coordinates": [ 85.309124848985803, 27.639824105214174 ] } }, +{ "type": "Feature", "properties": { "im": 2.890428 }, "geometry": { "type": "Point", "coordinates": [ 85.314288761753133, 27.63887612914499 ] } }, +{ "type": "Feature", "properties": { "im": 0.500978 }, "geometry": { "type": "Point", "coordinates": [ 85.319637882690799, 27.625799861473105 ] } }, +{ "type": "Feature", "properties": { "im": 2.526882 }, "geometry": { "type": "Point", "coordinates": [ 85.310008978974963, 27.624166573084789 ] } }, +{ "type": "Feature", "properties": { "im": 1.129642 }, "geometry": { "type": "Point", "coordinates": [ 85.315083148121346, 27.629029899399775 ] } }, +{ "type": "Feature", "properties": { "im": 0.508428 }, "geometry": { "type": "Point", "coordinates": [ 85.321659354710391, 27.633911239840508 ] } }, +{ "type": "Feature", "properties": { "im": 0.708616 }, "geometry": { "type": "Point", "coordinates": [ 85.323085820501845, 27.624830730414729 ] } }, +{ "type": "Feature", "properties": { "im": 2.733676 }, "geometry": { "type": "Point", "coordinates": [ 85.309923589688907, 27.629725259826298 ] } }, +{ "type": "Feature", "properties": { "im": 1.324136 }, "geometry": { "type": "Point", "coordinates": [ 85.306234382655745, 27.632460108346244 ] } }, +{ "type": "Feature", "properties": { "im": 0.457471 }, "geometry": { "type": "Point", "coordinates": [ 85.318033620698756, 27.618451661305713 ] } }, +{ "type": "Feature", "properties": { "im": 0.883771 }, "geometry": { "type": "Point", "coordinates": [ 85.313300247754228, 27.619405047658926 ] } }, +{ "type": "Feature", "properties": { "im": 0.461789 }, "geometry": { "type": "Point", "coordinates": [ 85.3174930592739, 27.62577385806966 ] } }, +{ "type": "Feature", "properties": { "im": 0.519733 }, "geometry": { "type": "Point", "coordinates": [ 85.317431231108372, 27.629816554476506 ] } }, +{ "type": "Feature", "properties": { "im": 3.010682 }, "geometry": { "type": "Point", "coordinates": [ 85.311297099062472, 27.638081578990587 ] } }, +{ "type": "Feature", "properties": { "im": 0.527203 }, "geometry": { "type": "Point", "coordinates": [ 85.317840487008979, 27.631085096177227 ] } }, +{ "type": "Feature", "properties": { "im": 0.590246 }, "geometry": { "type": "Point", "coordinates": [ 85.324861948978835, 27.634960829501861 ] } }, +{ "type": "Feature", "properties": { "im": 1.45699 }, "geometry": { "type": "Point", "coordinates": [ 85.309096500266378, 27.627693459336694 ] } }, +{ "type": "Feature", "properties": { "im": 0.709377 }, "geometry": { "type": "Point", "coordinates": [ 85.323514377257467, 27.624835911391866 ] } }, +{ "type": "Feature", "properties": { "im": 0.977937 }, "geometry": { "type": "Point", "coordinates": [ 85.31328475760229, 27.620415720737107 ] } }, +{ "type": "Feature", "properties": { "im": 2.28013 }, "geometry": { "type": "Point", "coordinates": [ 85.309170276717666, 27.622892776257054 ] } }, +{ "type": "Feature", "properties": { "im": 3.473966 }, "geometry": { "type": "Point", "coordinates": [ 85.312170836120231, 27.637081359466695 ] } }, +{ "type": "Feature", "properties": { "im": 0.607605 }, "geometry": { "type": "Point", "coordinates": [ 85.320978554383089, 27.622278077540617 ] } }, +{ "type": "Feature", "properties": { "im": 0.509329 }, "geometry": { "type": "Point", "coordinates": [ 85.321878012315807, 27.633661170730061 ] } }, +{ "type": "Feature", "properties": { "im": 1.571297 }, "geometry": { "type": "Point", "coordinates": [ 85.313238282306415, 27.62344773903984 ] } }, +{ "type": "Feature", "properties": { "im": 2.512915 }, "geometry": { "type": "Point", "coordinates": [ 85.311030441575767, 27.627464310828167 ] } }, +{ "type": "Feature", "properties": { "im": 2.249524 }, "geometry": { "type": "Point", "coordinates": [ 85.308823446475344, 27.631480850380836 ] } }, +{ "type": "Feature", "properties": { "im": 0.525428 }, "geometry": { "type": "Point", "coordinates": [ 85.315979981145716, 27.626513639921434 ] } }, +{ "type": "Feature", "properties": { "im": 0.823855 }, "geometry": { "type": "Point", "coordinates": [ 85.319062609750574, 27.635396076714621 ] } }, +{ "type": "Feature", "properties": { "im": 0.456443 }, "geometry": { "type": "Point", "coordinates": [ 85.318779750350643, 27.625789461631957 ] } }, +{ "type": "Feature", "properties": { "im": 1.198301 }, "geometry": { "type": "Point", "coordinates": [ 85.315247633485029, 27.632317194693815 ] } }, +{ "type": "Feature", "properties": { "im": 0.795494 }, "geometry": { "type": "Point", "coordinates": [ 85.314329515377025, 27.622197429125016 ] } }, +{ "type": "Feature", "properties": { "im": 0.505895 }, "geometry": { "type": "Point", "coordinates": [ 85.324468686405623, 27.618529540339814 ] } }, +{ "type": "Feature", "properties": { "im": 1.321376 }, "geometry": { "type": "Point", "coordinates": [ 85.305800895007565, 27.632707527114512 ] } }, +{ "type": "Feature", "properties": { "im": 0.496999 }, "geometry": { "type": "Point", "coordinates": [ 85.320036590376844, 27.627826416722346 ] } }, +{ "type": "Feature", "properties": { "im": 0.497186 }, "geometry": { "type": "Point", "coordinates": [ 85.319511849895449, 27.619985872752565 ] } }, +{ "type": "Feature", "properties": { "im": 0.465138 }, "geometry": { "type": "Point", "coordinates": [ 85.317940932216231, 27.624515713071851 ] } }, +{ "type": "Feature", "properties": { "im": 2.003348 }, "geometry": { "type": "Point", "coordinates": [ 85.309525065081431, 27.627698684024871 ] } }, +{ "type": "Feature", "properties": { "im": 1.012957 }, "geometry": { "type": "Point", "coordinates": [ 85.319245509300742, 27.6374200159167 ] } }, +{ "type": "Feature", "properties": { "im": 1.411764 }, "geometry": { "type": "Point", "coordinates": [ 85.305133451030386, 27.620316358711296 ] } }, +{ "type": "Feature", "properties": { "im": 0.575202 }, "geometry": { "type": "Point", "coordinates": [ 85.320988959671823, 27.635672131919339 ] } }, +{ "type": "Feature", "properties": { "im": 1.299299 }, "geometry": { "type": "Point", "coordinates": [ 85.305578311865517, 27.633210236130651 ] } }, +{ "type": "Feature", "properties": { "im": 2.168306 }, "geometry": { "type": "Point", "coordinates": [ 85.311892460527645, 27.627222091369479 ] } }, +{ "type": "Feature", "properties": { "im": 0.676875 }, "geometry": { "type": "Point", "coordinates": [ 85.322169896074001, 27.628610389935758 ] } }, +{ "type": "Feature", "properties": { "im": 0.644685 }, "geometry": { "type": "Point", "coordinates": [ 85.32196944184912, 27.641749170392515 ] } }, +{ "type": "Feature", "properties": { "im": 0.676797 }, "geometry": { "type": "Point", "coordinates": [ 85.325012000047494, 27.625106722355 ] } }, +{ "type": "Feature", "properties": { "im": 2.177049 }, "geometry": { "type": "Point", "coordinates": [ 85.310313351036882, 27.63225715710751 ] } }, +{ "type": "Feature", "properties": { "im": 0.429297 }, "geometry": { "type": "Point", "coordinates": [ 85.314996052274168, 27.620689235534748 ] } }, +{ "type": "Feature", "properties": { "im": 0.549029 }, "geometry": { "type": "Point", "coordinates": [ 85.319875818901494, 27.624286450045908 ] } }, +{ "type": "Feature", "properties": { "im": 1.260403 }, "geometry": { "type": "Point", "coordinates": [ 85.317034719207285, 27.641689353195677 ] } }, +{ "type": "Feature", "properties": { "im": 0.456912 }, "geometry": { "type": "Point", "coordinates": [ 85.317823723757016, 27.618196400293751 ] } }, +{ "type": "Feature", "properties": { "im": 0.687196 }, "geometry": { "type": "Point", "coordinates": [ 85.323318843537464, 27.623569967866821 ] } }, +{ "type": "Feature", "properties": { "im": 2.202615 }, "geometry": { "type": "Point", "coordinates": [ 85.316040049884407, 27.636622976364769 ] } }, +{ "type": "Feature", "properties": { "im": 2.120549 }, "geometry": { "type": "Point", "coordinates": [ 85.30625297172142, 27.617297455271267 ] } }, +{ "type": "Feature", "properties": { "im": 3.495171 }, "geometry": { "type": "Point", "coordinates": [ 85.313036805443815, 27.636586468864603 ] } }, +{ "type": "Feature", "properties": { "im": 0.641235 }, "geometry": { "type": "Point", "coordinates": [ 85.322034989888962, 27.63745380274576 ] } }, +{ "type": "Feature", "properties": { "im": 2.564576 }, "geometry": { "type": "Point", "coordinates": [ 85.309594941322246, 27.623150667558303 ] } }, +{ "type": "Feature", "properties": { "im": 2.755327 }, "geometry": { "type": "Point", "coordinates": [ 85.310290061673726, 27.633773161518992 ] } }, +{ "type": "Feature", "properties": { "im": 0.517369 }, "geometry": { "type": "Point", "coordinates": [ 85.316010919159652, 27.624492292577024 ] } }, +{ "type": "Feature", "properties": { "im": 2.58143 }, "geometry": { "type": "Point", "coordinates": [ 85.315778805505389, 27.639652382517109 ] } }, +{ "type": "Feature", "properties": { "im": 2.361926 }, "geometry": { "type": "Point", "coordinates": [ 85.310870973562956, 27.623924358813507 ] } }, +{ "type": "Feature", "properties": { "im": 1.516174 }, "geometry": { "type": "Point", "coordinates": [ 85.304342178610739, 27.629909839515175 ] } }, +{ "type": "Feature", "properties": { "im": 0.612734 }, "geometry": { "type": "Point", "coordinates": [ 85.322135211782097, 27.630884411507978 ] } }, +{ "type": "Feature", "properties": { "im": 0.893033 }, "geometry": { "type": "Point", "coordinates": [ 85.319268678849994, 27.635904005301935 ] } }, +{ "type": "Feature", "properties": { "im": 2.227703 }, "geometry": { "type": "Point", "coordinates": [ 85.310161670173372, 27.628211872230782 ] } }, +{ "type": "Feature", "properties": { "im": 2.428648 }, "geometry": { "type": "Point", "coordinates": [ 85.307473498602718, 27.62160850667582 ] } }, +{ "type": "Feature", "properties": { "im": 0.637208 }, "geometry": { "type": "Point", "coordinates": [ 85.324804216743502, 27.63875086678269 ] } }, +{ "type": "Feature", "properties": { "im": 1.360123 }, "geometry": { "type": "Point", "coordinates": [ 85.306070167379829, 27.629172814453259 ] } }, +{ "type": "Feature", "properties": { "im": 0.400861 }, "geometry": { "type": "Point", "coordinates": [ 85.315429471962162, 27.620441784566307 ] } }, +{ "type": "Feature", "properties": { "im": 0.696677 }, "geometry": { "type": "Point", "coordinates": [ 85.324996613699923, 27.626117400690184 ] } }, +{ "type": "Feature", "properties": { "im": 0.541153 }, "geometry": { "type": "Point", "coordinates": [ 85.314774550847403, 27.621191975418874 ] } }, +{ "type": "Feature", "properties": { "im": 1.140986 }, "geometry": { "type": "Point", "coordinates": [ 85.311818240650268, 27.618123442223759 ] } }, +{ "type": "Feature", "properties": { "im": 0.715567 }, "geometry": { "type": "Point", "coordinates": [ 85.324357112198911, 27.625856959659405 ] } }, +{ "type": "Feature", "properties": { "im": 1.813394 }, "geometry": { "type": "Point", "coordinates": [ 85.303769430097489, 27.6392532589098 ] } }, +{ "type": "Feature", "properties": { "im": 1.906665 }, "geometry": { "type": "Point", "coordinates": [ 85.316877916603474, 27.637896725128435 ] } }, +{ "type": "Feature", "properties": { "im": 1.260066 }, "geometry": { "type": "Point", "coordinates": [ 85.305793111214285, 27.633212860743882 ] } }, +{ "type": "Feature", "properties": { "im": 3.557376 }, "geometry": { "type": "Point", "coordinates": [ 85.307711588697359, 27.620095122315981 ] } }, +{ "type": "Feature", "properties": { "im": 0.552028 }, "geometry": { "type": "Point", "coordinates": [ 85.323172502679981, 27.633171399574625 ] } }, +{ "type": "Feature", "properties": { "im": 0.55315 }, "geometry": { "type": "Point", "coordinates": [ 85.317216437098338, 27.629813948180288 ] } }, +{ "type": "Feature", "properties": { "im": 0.639883 }, "geometry": { "type": "Point", "coordinates": [ 85.32178161961518, 27.639977889832291 ] } }, +{ "type": "Feature", "properties": { "im": 0.714953 }, "geometry": { "type": "Point", "coordinates": [ 85.324981226551145, 27.627128078870161 ] } }, +{ "type": "Feature", "properties": { "im": 0.972229 }, "geometry": { "type": "Point", "coordinates": [ 85.312851333572709, 27.62066316479153 ] } }, +{ "type": "Feature", "properties": { "im": 0.978624 }, "geometry": { "type": "Point", "coordinates": [ 85.305722297475, 27.623861558735626 ] } }, +{ "type": "Feature", "properties": { "im": 2.305824 }, "geometry": { "type": "Point", "coordinates": [ 85.311884706518256, 27.627727426991299 ] } }, +{ "type": "Feature", "properties": { "im": 1.394947 }, "geometry": { "type": "Point", "coordinates": [ 85.304115699964498, 27.630665213020613 ] } }, +{ "type": "Feature", "properties": { "im": 2.058114 }, "geometry": { "type": "Point", "coordinates": [ 85.314354601709226, 27.634580776695593 ] } }, +{ "type": "Feature", "properties": { "im": 1.230249 }, "geometry": { "type": "Point", "coordinates": [ 85.303999299833592, 27.62434592913797 ] } }, +{ "type": "Feature", "properties": { "im": 1.290437 }, "geometry": { "type": "Point", "coordinates": [ 85.305625017499665, 27.630178234108097 ] } }, +{ "type": "Feature", "properties": { "im": 1.366086 }, "geometry": { "type": "Point", "coordinates": [ 85.303905814799876, 27.630409931769247 ] } }, +{ "type": "Feature", "properties": { "im": 0.487854 }, "geometry": { "type": "Point", "coordinates": [ 85.319810223195972, 27.628581821082001 ] } }, +{ "type": "Feature", "properties": { "im": 2.670414 }, "geometry": { "type": "Point", "coordinates": [ 85.307274267978144, 27.620595215918861 ] } }, +{ "type": "Feature", "properties": { "im": 2.510228 }, "geometry": { "type": "Point", "coordinates": [ 85.310387088688159, 27.627456474164944 ] } }, +{ "type": "Feature", "properties": { "im": 2.870427 }, "geometry": { "type": "Point", "coordinates": [ 85.312841379869553, 27.635320517050705 ] } }, +{ "type": "Feature", "properties": { "im": 0.705525 }, "geometry": { "type": "Point", "coordinates": [ 85.319070333311743, 27.634890739781927 ] } }, +{ "type": "Feature", "properties": { "im": 0.736603 }, "geometry": { "type": "Point", "coordinates": [ 85.320525633314645, 27.637940958652695 ] } }, +{ "type": "Feature", "properties": { "im": 2.689109 }, "geometry": { "type": "Point", "coordinates": [ 85.310816666020528, 27.627461707165335 ] } }, +{ "type": "Feature", "properties": { "im": 1.411104 }, "geometry": { "type": "Point", "coordinates": [ 85.304467390431611, 27.635723798739765 ] } }, +{ "type": "Feature", "properties": { "im": 1.066598 }, "geometry": { "type": "Point", "coordinates": [ 85.305710625549466, 27.624619560100815 ] } }, +{ "type": "Feature", "properties": { "im": 0.469839 }, "geometry": { "type": "Point", "coordinates": [ 85.318248392626103, 27.618454265353872 ] } }, +{ "type": "Feature", "properties": { "im": 1.729744 }, "geometry": { "type": "Point", "coordinates": [ 85.316487990343475, 27.63536484065073 ] } }, +{ "type": "Feature", "properties": { "im": 3.410314 }, "geometry": { "type": "Point", "coordinates": [ 85.312649834314712, 27.633801897265904 ] } }, +{ "type": "Feature", "properties": { "im": 0.635346 }, "geometry": { "type": "Point", "coordinates": [ 85.325035078066676, 27.623590704561202 ] } }, +{ "type": "Feature", "properties": { "im": 0.460651 }, "geometry": { "type": "Point", "coordinates": [ 85.317239627126114, 27.628297937485968 ] } }, +{ "type": "Feature", "properties": { "im": 0.775835 }, "geometry": { "type": "Point", "coordinates": [ 85.319191439982006, 27.640957372658832 ] } }, +{ "type": "Feature", "properties": { "im": 0.61652 }, "geometry": { "type": "Point", "coordinates": [ 85.3248388574373, 27.636476844676181 ] } }, +{ "type": "Feature", "properties": { "im": 3.097094 }, "geometry": { "type": "Point", "coordinates": [ 85.310462166177572, 27.63655511970498 ] } }, +{ "type": "Feature", "properties": { "im": 0.452925 }, "geometry": { "type": "Point", "coordinates": [ 85.318320294199509, 27.627805615268237 ] } }, +{ "type": "Feature", "properties": { "im": 1.894239 }, "geometry": { "type": "Point", "coordinates": [ 85.306049869423717, 27.616536830462394 ] } }, +{ "type": "Feature", "properties": { "im": 0.950933 }, "geometry": { "type": "Point", "coordinates": [ 85.315902622013667, 27.631567005564673 ] } }, +{ "type": "Feature", "properties": { "im": 0.539449 }, "geometry": { "type": "Point", "coordinates": [ 85.32485875965456, 27.621061413753736 ] } }, +{ "type": "Feature", "properties": { "im": 1.427064 }, "geometry": { "type": "Point", "coordinates": [ 85.304474570252282, 27.621319164905422 ] } }, +{ "type": "Feature", "properties": { "im": 1.332861 }, "geometry": { "type": "Point", "coordinates": [ 85.303811782407422, 27.622574634228663 ] } }, +{ "type": "Feature", "properties": { "im": 0.468796 }, "geometry": { "type": "Point", "coordinates": [ 85.318799054254669, 27.624526117661645 ] } }, +{ "type": "Feature", "properties": { "im": 1.629954 }, "geometry": { "type": "Point", "coordinates": [ 85.306686303447563, 27.630949340853356 ] } }, +{ "type": "Feature", "properties": { "im": 1.415075 }, "geometry": { "type": "Point", "coordinates": [ 85.305398801799313, 27.617034308257235 ] } }, +{ "type": "Feature", "properties": { "im": 0.567794 }, "geometry": { "type": "Point", "coordinates": [ 85.321908851355914, 27.631639819336318 ] } }, +{ "type": "Feature", "properties": { "im": 1.231293 }, "geometry": { "type": "Point", "coordinates": [ 85.305047829462822, 27.625875034502929 ] } }, +{ "type": "Feature", "properties": { "im": 0.556857 }, "geometry": { "type": "Point", "coordinates": [ 85.320623268151124, 27.617472173990581 ] } }, +{ "type": "Feature", "properties": { "im": 0.841863 }, "geometry": { "type": "Point", "coordinates": [ 85.319471901907107, 27.636664614381118 ] } }, +{ "type": "Feature", "properties": { "im": 1.132461 }, "geometry": { "type": "Point", "coordinates": [ 85.311384822901317, 27.618370882028117 ] } }, +{ "type": "Feature", "properties": { "im": 1.245566 }, "geometry": { "type": "Point", "coordinates": [ 85.304822378617459, 27.626630422554957 ] } }, +{ "type": "Feature", "properties": { "im": 1.204109 }, "geometry": { "type": "Point", "coordinates": [ 85.305399560074207, 27.63093362243303 ] } }, +{ "type": "Feature", "properties": { "im": 2.604363 }, "geometry": { "type": "Point", "coordinates": [ 85.311351415632146, 27.634544235176193 ] } }, +{ "type": "Feature", "properties": { "im": 3.103552 }, "geometry": { "type": "Point", "coordinates": [ 85.308987743810547, 27.634768143801331 ] } }, +{ "type": "Feature", "properties": { "im": 1.710431 }, "geometry": { "type": "Point", "coordinates": [ 85.306194642061939, 27.621087465851449 ] } }, +{ "type": "Feature", "properties": { "im": 0.47415 }, "geometry": { "type": "Point", "coordinates": [ 85.317742613679385, 27.623502445516781 ] } }, +{ "type": "Feature", "properties": { "im": 0.605266 }, "geometry": { "type": "Point", "coordinates": [ 85.322710171697551, 27.621288164596582 ] } }, +{ "type": "Feature", "properties": { "im": 0.506336 }, "geometry": { "type": "Point", "coordinates": [ 85.316210236016161, 27.625505574140455 ] } }, +{ "type": "Feature", "properties": { "im": 2.711966 }, "geometry": { "type": "Point", "coordinates": [ 85.3131808340367, 27.64113708613943 ] } }, +{ "type": "Feature", "properties": { "im": 0.479758 }, "geometry": { "type": "Point", "coordinates": [ 85.314836453947891, 27.617149279519868 ] } }, +{ "type": "Feature", "properties": { "im": 1.938889 }, "geometry": { "type": "Point", "coordinates": [ 85.31173684133887, 27.6234294710715 ] } }, +{ "type": "Feature", "properties": { "im": 1.064472 }, "geometry": { "type": "Point", "coordinates": [ 85.315511719466087, 27.629035105823849 ] } }, +{ "type": "Feature", "properties": { "im": 1.649757 }, "geometry": { "type": "Point", "coordinates": [ 85.31257843975564, 27.62445057345586 ] } }, +{ "type": "Feature", "properties": { "im": 0.526211 }, "geometry": { "type": "Point", "coordinates": [ 85.322529112399451, 27.633163617748448 ] } }, +{ "type": "Feature", "properties": { "im": 0.591094 }, "geometry": { "type": "Point", "coordinates": [ 85.325054308372373, 27.622327356132953 ] } }, +{ "type": "Feature", "properties": { "im": 0.497739 }, "geometry": { "type": "Point", "coordinates": [ 85.320227219568352, 27.629345019353117 ] } }, +{ "type": "Feature", "properties": { "im": 0.539113 }, "geometry": { "type": "Point", "coordinates": [ 85.320067455605155, 27.625805065540558 ] } }, +{ "type": "Feature", "properties": { "im": 1.435537 }, "geometry": { "type": "Point", "coordinates": [ 85.308655268873622, 27.628446223072391 ] } }, +{ "type": "Feature", "properties": { "im": 2.447265 }, "geometry": { "type": "Point", "coordinates": [ 85.309939116832595, 27.628714589859211 ] } }, +{ "type": "Feature", "properties": { "im": 0.4836 }, "geometry": { "type": "Point", "coordinates": [ 85.319361338954153, 27.629839959348693 ] } }, +{ "type": "Feature", "properties": { "im": 0.696677 }, "geometry": { "type": "Point", "coordinates": [ 85.324996613699923, 27.626117400690184 ] } }, +{ "type": "Feature", "properties": { "im": 1.453461 }, "geometry": { "type": "Point", "coordinates": [ 85.316300261996048, 27.633593555510199 ] } }, +{ "type": "Feature", "properties": { "im": 1.735593 }, "geometry": { "type": "Point", "coordinates": [ 85.305465409793797, 27.640537568576764 ] } }, +{ "type": "Feature", "properties": { "im": 2.110194 }, "geometry": { "type": "Point", "coordinates": [ 85.309669970364624, 27.632249315871011 ] } }, +{ "type": "Feature", "properties": { "im": 0.640453 }, "geometry": { "type": "Point", "coordinates": [ 85.322670697269714, 27.637966925654531 ] } }, +{ "type": "Feature", "properties": { "im": 1.256602 }, "geometry": { "type": "Point", "coordinates": [ 85.305574419400017, 27.633462902902732 ] } }, +{ "type": "Feature", "properties": { "im": 0.633235 }, "geometry": { "type": "Point", "coordinates": [ 85.324819613108389, 27.637740190387944 ] } }, +{ "type": "Feature", "properties": { "im": 1.479497 }, "geometry": { "type": "Point", "coordinates": [ 85.305991534655007, 27.620326841059086 ] } }, +{ "type": "Feature", "properties": { "im": 0.557755 }, "geometry": { "type": "Point", "coordinates": [ 85.320281228961605, 27.62580765480519 ] } }, +{ "type": "Feature", "properties": { "im": 1.143558 }, "geometry": { "type": "Point", "coordinates": [ 85.315098627419701, 27.628019226638958 ] } }, +{ "type": "Feature", "properties": { "im": 1.858873 }, "geometry": { "type": "Point", "coordinates": [ 85.314787066016478, 27.634333318396191 ] } }, +{ "type": "Feature", "properties": { "im": 2.788078 }, "geometry": { "type": "Point", "coordinates": [ 85.314128179502788, 27.635336168715991 ] } }, +{ "type": "Feature", "properties": { "im": 3.450857 }, "geometry": { "type": "Point", "coordinates": [ 85.311101691971075, 27.63681562575989 ] } }, +{ "type": "Feature", "properties": { "im": 0.739644 }, "geometry": { "type": "Point", "coordinates": [ 85.323904442645173, 27.627367785304898 ] } }, +{ "type": "Feature", "properties": { "im": 0.533855 }, "geometry": { "type": "Point", "coordinates": [ 85.321897287092199, 27.632397826181759 ] } }, +{ "type": "Feature", "properties": { "im": 1.800488 }, "geometry": { "type": "Point", "coordinates": [ 85.31711979248503, 27.636130655645324 ] } }, +{ "type": "Feature", "properties": { "im": 0.528919 }, "geometry": { "type": "Point", "coordinates": [ 85.321265470448949, 27.631632032044504 ] } }, +{ "type": "Feature", "properties": { "im": 1.737636 }, "geometry": { "type": "Point", "coordinates": [ 85.308912781259153, 27.625669500726175 ] } }, +{ "type": "Feature", "properties": { "im": 2.002904 }, "geometry": { "type": "Point", "coordinates": [ 85.313734449117078, 27.63305694668545 ] } }, +{ "type": "Feature", "properties": { "im": 0.566849 }, "geometry": { "type": "Point", "coordinates": [ 85.324881190552574, 27.63369748325642 ] } }, +{ "type": "Feature", "properties": { "im": 0.412908 }, "geometry": { "type": "Point", "coordinates": [ 85.316497458387985, 27.620707466571979 ] } }, +{ "type": "Feature", "properties": { "im": 1.412446 }, "geometry": { "type": "Point", "coordinates": [ 85.303862409730272, 27.619289963281858 ] } }, +{ "type": "Feature", "properties": { "im": 2.540052 }, "geometry": { "type": "Point", "coordinates": [ 85.307336444931522, 27.616552535341015 ] } }, +{ "type": "Feature", "properties": { "im": 1.651179 }, "geometry": { "type": "Point", "coordinates": [ 85.304600390193045, 27.641032421075213 ] } }, +{ "type": "Feature", "properties": { "im": 1.488815 }, "geometry": { "type": "Point", "coordinates": [ 85.310925271208603, 27.620387008558819 ] } }, +{ "type": "Feature", "properties": { "im": 1.455821 }, "geometry": { "type": "Point", "coordinates": [ 85.307852539872286, 27.638797725016481 ] } }, +{ "type": "Feature", "properties": { "im": 0.637888 }, "geometry": { "type": "Point", "coordinates": [ 85.323341943371915, 27.622053951053374 ] } }, +{ "type": "Feature", "properties": { "im": 2.033938 }, "geometry": { "type": "Point", "coordinates": [ 85.307732055179216, 27.632731108440204 ] } }, +{ "type": "Feature", "properties": { "im": 1.484572 }, "geometry": { "type": "Point", "coordinates": [ 85.305953425265784, 27.636752819734841 ] } }, +{ "type": "Feature", "properties": { "im": 1.529056 }, "geometry": { "type": "Point", "coordinates": [ 85.313620360745048, 27.62648496777096 ] } }, +{ "type": "Feature", "properties": { "im": 2.79779 }, "geometry": { "type": "Point", "coordinates": [ 85.310512624982906, 27.633270444063463 ] } }, +{ "type": "Feature", "properties": { "im": 1.361685 }, "geometry": { "type": "Point", "coordinates": [ 85.311139033035175, 27.620389611442743 ] } }, +{ "type": "Feature", "properties": { "im": 1.146243 }, "geometry": { "type": "Point", "coordinates": [ 85.318586642192003, 27.638422887990416 ] } }, +{ "type": "Feature", "properties": { "im": 2.180556 }, "geometry": { "type": "Point", "coordinates": [ 85.309291873812398, 27.628959415231758 ] } }, +{ "type": "Feature", "properties": { "im": 2.41776 }, "geometry": { "type": "Point", "coordinates": [ 85.309404465687862, 27.621632056035679 ] } }, +{ "type": "Feature", "properties": { "im": 0.474941 }, "geometry": { "type": "Point", "coordinates": [ 85.318630600574039, 27.62149148775617 ] } }, +{ "type": "Feature", "properties": { "im": 1.513853 }, "geometry": { "type": "Point", "coordinates": [ 85.316184202952087, 27.64117359603258 ] } }, +{ "type": "Feature", "properties": { "im": 1.105129 }, "geometry": { "type": "Point", "coordinates": [ 85.313690064163922, 27.621936940887004 ] } }, +{ "type": "Feature", "properties": { "im": 1.094904 }, "geometry": { "type": "Point", "coordinates": [ 85.304224750686828, 27.623590542230044 ] } }, +{ "type": "Feature", "properties": { "im": 3.324174 }, "geometry": { "type": "Point", "coordinates": [ 85.31431587408764, 27.637107454946833 ] } }, +{ "type": "Feature", "properties": { "im": 0.733571 }, "geometry": { "type": "Point", "coordinates": [ 85.319628794803947, 27.640457244056062 ] } }, +{ "type": "Feature", "properties": { "im": 0.641369 }, "geometry": { "type": "Point", "coordinates": [ 85.322405774585263, 27.641249020395048 ] } }, +{ "type": "Feature", "properties": { "im": 1.727777 }, "geometry": { "type": "Point", "coordinates": [ 85.305933963814397, 27.638016153098476 ] } }, +{ "type": "Feature", "properties": { "im": 2.165932 }, "geometry": { "type": "Point", "coordinates": [ 85.31210337240222, 27.627477373528372 ] } }, +{ "type": "Feature", "properties": { "im": 0.472324 }, "geometry": { "type": "Point", "coordinates": [ 85.316337811659906, 27.617167510140817 ] } }, +{ "type": "Feature", "properties": { "im": 0.639651 }, "geometry": { "type": "Point", "coordinates": [ 85.323302558001686, 27.638732714764288 ] } }, +{ "type": "Feature", "properties": { "im": 1.112416 }, "geometry": { "type": "Point", "coordinates": [ 85.314864485463431, 27.629279957673859 ] } }, +{ "type": "Feature", "properties": { "im": 1.567416 }, "geometry": { "type": "Point", "coordinates": [ 85.311886208592597, 27.641626757278967 ] } }, +{ "type": "Feature", "properties": { "im": 0.65298 }, "geometry": { "type": "Point", "coordinates": [ 85.324769571991609, 27.641024888103182 ] } }, +{ "type": "Feature", "properties": { "im": 1.7668 }, "geometry": { "type": "Point", "coordinates": [ 85.312302656804547, 27.628490658928619 ] } }, +{ "type": "Feature", "properties": { "im": 1.642545 }, "geometry": { "type": "Point", "coordinates": [ 85.312773849999402, 27.625716526542089 ] } }, +{ "type": "Feature", "properties": { "im": 1.9652 }, "geometry": { "type": "Point", "coordinates": [ 85.307099325846991, 27.631965241716568 ] } }, +{ "type": "Feature", "properties": { "im": 0.636553 }, "geometry": { "type": "Point", "coordinates": [ 85.324597103744424, 27.638242933011121 ] } }, +{ "type": "Feature", "properties": { "im": 0.546623 }, "geometry": { "type": "Point", "coordinates": [ 85.317220302228748, 27.629561279755503 ] } }, +{ "type": "Feature", "properties": { "im": 1.972726 }, "geometry": { "type": "Point", "coordinates": [ 85.30973209005812, 27.628206637071695 ] } }, +{ "type": "Feature", "properties": { "im": 0.711568 }, "geometry": { "type": "Point", "coordinates": [ 85.324946602536841, 27.629402104207593 ] } }, +{ "type": "Feature", "properties": { "im": 0.53834 }, "geometry": { "type": "Point", "coordinates": [ 85.320818763723906, 27.618738120524249 ] } }, +{ "type": "Feature", "properties": { "im": 1.125004 }, "geometry": { "type": "Point", "coordinates": [ 85.317935492819146, 27.638920419914889 ] } }, +{ "type": "Feature", "properties": { "im": 2.636652 }, "geometry": { "type": "Point", "coordinates": [ 85.30896714585954, 27.62213215494317 ] } }, +{ "type": "Feature", "properties": { "im": 1.439333 }, "geometry": { "type": "Point", "coordinates": [ 85.308690228122131, 27.626172216500684 ] } }, +{ "type": "Feature", "properties": { "im": 3.09889 }, "geometry": { "type": "Point", "coordinates": [ 85.312045219045402, 27.631267390018852 ] } }, +{ "type": "Feature", "properties": { "im": 0.698959 }, "geometry": { "type": "Point", "coordinates": [ 85.322395234167232, 27.627854968753208 ] } }, +{ "type": "Feature", "properties": { "im": 0.705998 }, "geometry": { "type": "Point", "coordinates": [ 85.320946524666198, 27.638451486996644 ] } }, +{ "type": "Feature", "properties": { "im": 0.50988 }, "geometry": { "type": "Point", "coordinates": [ 85.323618305770509, 27.618013833541774 ] } }, +{ "type": "Feature", "properties": { "im": 2.348779 }, "geometry": { "type": "Point", "coordinates": [ 85.307099373195229, 27.61806593227173 ] } }, +{ "type": "Feature", "properties": { "im": 1.635952 }, "geometry": { "type": "Point", "coordinates": [ 85.309910612122181, 27.616583921677883 ] } }, +{ "type": "Feature", "properties": { "im": 0.569035 }, "geometry": { "type": "Point", "coordinates": [ 85.324877342338013, 27.633950152524918 ] } }, +{ "type": "Feature", "properties": { "im": 2.298785 }, "geometry": { "type": "Point", "coordinates": [ 85.309880885874875, 27.632504601434654 ] } }, +{ "type": "Feature", "properties": { "im": 2.615488 }, "geometry": { "type": "Point", "coordinates": [ 85.308945007214177, 27.637547482043541 ] } }, +{ "type": "Feature", "properties": { "im": 1.259095 }, "geometry": { "type": "Point", "coordinates": [ 85.310522873470902, 27.618613101674427 ] } }, +{ "type": "Feature", "properties": { "im": 1.011774 }, "geometry": { "type": "Point", "coordinates": [ 85.316331203421271, 27.631572209895268 ] } }, +{ "type": "Feature", "properties": { "im": 1.692569 }, "geometry": { "type": "Point", "coordinates": [ 85.305247715024294, 27.640787621666686 ] } }, +{ "type": "Feature", "properties": { "im": 1.441242 }, "geometry": { "type": "Point", "coordinates": [ 85.309672562388272, 27.618097312239385 ] } }, +{ "type": "Feature", "properties": { "im": 2.035433 }, "geometry": { "type": "Point", "coordinates": [ 85.309735972109394, 27.627953969564196 ] } }, +{ "type": "Feature", "properties": { "im": 1.100749 }, "geometry": { "type": "Point", "coordinates": [ 85.315891016406695, 27.632325010076265 ] } }, +{ "type": "Feature", "properties": { "im": 1.546595 }, "geometry": { "type": "Point", "coordinates": [ 85.30776315287973, 27.630709771518742 ] } }, +{ "type": "Feature", "properties": { "im": 0.662038 }, "geometry": { "type": "Point", "coordinates": [ 85.324761872606729, 27.641530226067658 ] } }, +{ "type": "Feature", "properties": { "im": 1.567731 }, "geometry": { "type": "Point", "coordinates": [ 85.305772870551763, 27.620576885143141 ] } }, +{ "type": "Feature", "properties": { "im": 0.451864 }, "geometry": { "type": "Point", "coordinates": [ 85.317243491954656, 27.628045269002943 ] } }, +{ "type": "Feature", "properties": { "im": 1.655099 }, "geometry": { "type": "Point", "coordinates": [ 85.306186863913339, 27.621592800430399 ] } }, +{ "type": "Feature", "properties": { "im": 2.845699 }, "geometry": { "type": "Point", "coordinates": [ 85.309412229078092, 27.62112672061772 ] } }, +{ "type": "Feature", "properties": { "im": 1.318035 }, "geometry": { "type": "Point", "coordinates": [ 85.303983721022817, 27.625356596631711 ] } }, +{ "type": "Feature", "properties": { "im": 2.708339 }, "geometry": { "type": "Point", "coordinates": [ 85.309805840391675, 27.623405952768898 ] } }, +{ "type": "Feature", "properties": { "im": 0.461357 }, "geometry": { "type": "Point", "coordinates": [ 85.317875260351045, 27.628811079690902 ] } }, +{ "type": "Feature", "properties": { "im": 2.613565 }, "geometry": { "type": "Point", "coordinates": [ 85.309178041598443, 27.622387440992142 ] } }, +{ "type": "Feature", "properties": { "im": 0.606618 }, "geometry": { "type": "Point", "coordinates": [ 85.321307885122778, 27.628852673779232 ] } }, +{ "type": "Feature", "properties": { "im": 1.087783 }, "geometry": { "type": "Point", "coordinates": [ 85.3152940709071, 27.629285177125197 ] } }, +{ "type": "Feature", "properties": { "im": 1.187987 }, "geometry": { "type": "Point", "coordinates": [ 85.313467540943222, 27.622439665901013 ] } }, +{ "type": "Feature", "properties": { "im": 0.758385 }, "geometry": { "type": "Point", "coordinates": [ 85.313124201295437, 27.616875752773439 ] } }, +{ "type": "Feature", "properties": { "im": 2.598653 }, "geometry": { "type": "Point", "coordinates": [ 85.315387887529454, 27.63712048409888 ] } }, +{ "type": "Feature", "properties": { "im": 0.733855 }, "geometry": { "type": "Point", "coordinates": [ 85.324314779928073, 27.628636323474073 ] } }, +{ "type": "Feature", "properties": { "im": 1.869593 }, "geometry": { "type": "Point", "coordinates": [ 85.308916664773477, 27.625416833233352 ] } }, +{ "type": "Feature", "properties": { "im": 2.681657 }, "geometry": { "type": "Point", "coordinates": [ 85.30819450019915, 27.616563002755697 ] } }, +{ "type": "Feature", "properties": { "im": 1.0066 }, "geometry": { "type": "Point", "coordinates": [ 85.315519457249621, 27.628529769351609 ] } }, +{ "type": "Feature", "properties": { "im": 0.696677 }, "geometry": { "type": "Point", "coordinates": [ 85.324996613699923, 27.626117400690184 ] } }, +{ "type": "Feature", "properties": { "im": 0.497613 }, "geometry": { "type": "Point", "coordinates": [ 85.321015960603091, 27.633903450804155 ] } }, +{ "type": "Feature", "properties": { "im": 1.934523 }, "geometry": { "type": "Point", "coordinates": [ 85.308429836209157, 27.629201617596543 ] } }, +{ "type": "Feature", "properties": { "im": 0.721813 }, "geometry": { "type": "Point", "coordinates": [ 85.324965838601145, 27.628138756894916 ] } }, +{ "type": "Feature", "properties": { "im": 0.433504 }, "geometry": { "type": "Point", "coordinates": [ 85.317351686729936, 27.620970547537979 ] } }, +{ "type": "Feature", "properties": { "im": 1.116516 }, "geometry": { "type": "Point", "coordinates": [ 85.30517625261912, 27.617537019052904 ] } }, +{ "type": "Feature", "properties": { "im": 2.224122 }, "geometry": { "type": "Point", "coordinates": [ 85.306849618742959, 27.620337318103651 ] } }, +{ "type": "Feature", "properties": { "im": 0.63722 }, "geometry": { "type": "Point", "coordinates": [ 85.322206379711318, 27.640235746139211 ] } }, +{ "type": "Feature", "properties": { "im": 0.692893 }, "geometry": { "type": "Point", "coordinates": [ 85.324716416782465, 27.630410187148957 ] } }, +{ "type": "Feature", "properties": { "im": 0.587744 }, "geometry": { "type": "Point", "coordinates": [ 85.323785087203078, 27.635200531341663 ] } }, +{ "type": "Feature", "properties": { "im": 1.532275 }, "geometry": { "type": "Point", "coordinates": [ 85.306780514259103, 27.638784636891153 ] } }, +{ "type": "Feature", "properties": { "im": 0.482914 }, "geometry": { "type": "Point", "coordinates": [ 85.315616162547954, 27.622213060172609 ] } }, +{ "type": "Feature", "properties": { "im": 0.744532 }, "geometry": { "type": "Point", "coordinates": [ 85.320720137691481, 27.639206891041137 ] } }, +{ "type": "Feature", "properties": { "im": 1.722534 }, "geometry": { "type": "Point", "coordinates": [ 85.307002091485828, 27.638281914217146 ] } }, +{ "type": "Feature", "properties": { "im": 1.275554 }, "geometry": { "type": "Point", "coordinates": [ 85.30513804596049, 27.633962998410343 ] } }, +{ "type": "Feature", "properties": { "im": 3.529196 }, "geometry": { "type": "Point", "coordinates": [ 85.309576766563524, 27.63831332940854 ] } }, +{ "type": "Feature", "properties": { "im": 1.158225 }, "geometry": { "type": "Point", "coordinates": [ 85.317272737646007, 27.640175952676906 ] } }, +{ "type": "Feature", "properties": { "im": 1.316404 }, "geometry": { "type": "Point", "coordinates": [ 85.303780622872864, 27.624595969380106 ] } }, +{ "type": "Feature", "properties": { "im": 0.522716 }, "geometry": { "type": "Point", "coordinates": [ 85.319925970529297, 27.62100175265557 ] } }, +{ "type": "Feature", "properties": { "im": 0.635346 }, "geometry": { "type": "Point", "coordinates": [ 85.325035078066676, 27.623590704561202 ] } }, +{ "type": "Feature", "properties": { "im": 1.119851 }, "geometry": { "type": "Point", "coordinates": [ 85.317170051608841, 27.632845968520652 ] } }, +{ "type": "Feature", "properties": { "im": 0.960018 }, "geometry": { "type": "Point", "coordinates": [ 85.315691693683434, 27.631311728587789 ] } }, +{ "type": "Feature", "properties": { "im": 0.498713 }, "geometry": { "type": "Point", "coordinates": [ 85.321230763016501, 27.633906051569987 ] } }, +{ "type": "Feature", "properties": { "im": 1.23087 }, "geometry": { "type": "Point", "coordinates": [ 85.310169704318469, 27.641605845408591 ] } }, +{ "type": "Feature", "properties": { "im": 1.519446 }, "geometry": { "type": "Point", "coordinates": [ 85.305450157963691, 27.627648952738511 ] } }, +{ "type": "Feature", "properties": { "im": 1.281347 }, "geometry": { "type": "Point", "coordinates": [ 85.303933084285077, 27.628641264913071 ] } }, +{ "type": "Feature", "properties": { "im": 0.957715 }, "geometry": { "type": "Point", "coordinates": [ 85.307817566063875, 27.627172430410585 ] } }, +{ "type": "Feature", "properties": { "im": 0.741798 }, "geometry": { "type": "Point", "coordinates": [ 85.316163831283021, 27.628537594792633 ] } }, +{ "type": "Feature", "properties": { "im": 1.730461 }, "geometry": { "type": "Point", "coordinates": [ 85.311258295452518, 27.640608251978328 ] } }, +{ "type": "Feature", "properties": { "im": 0.733684 }, "geometry": { "type": "Point", "coordinates": [ 85.32031468245539, 27.637685687915354 ] } }, +{ "type": "Feature", "properties": { "im": 0.669756 }, "geometry": { "type": "Point", "coordinates": [ 85.324276290785065, 27.63116301683236 ] } }, +{ "type": "Feature", "properties": { "im": 0.543863 }, "geometry": { "type": "Point", "coordinates": [ 85.323380439086549, 27.619527255588249 ] } }, +{ "type": "Feature", "properties": { "im": 1.647015 }, "geometry": { "type": "Point", "coordinates": [ 85.309303523218972, 27.628201412934992 ] } }, +{ "type": "Feature", "properties": { "im": 2.057709 }, "geometry": { "type": "Point", "coordinates": [ 85.309237503899567, 27.632496758127761 ] } }, +{ "type": "Feature", "properties": { "im": 1.508267 }, "geometry": { "type": "Point", "coordinates": [ 85.306304409025131, 27.627912102749494 ] } }, +{ "type": "Feature", "properties": { "im": 0.721297 }, "geometry": { "type": "Point", "coordinates": [ 85.32496968566376, 27.627886087403276 ] } }, +{ "type": "Feature", "properties": { "im": 0.45018 }, "geometry": { "type": "Point", "coordinates": [ 85.317673073104828, 27.628050480873181 ] } }, +{ "type": "Feature", "properties": { "im": 0.467804 }, "geometry": { "type": "Point", "coordinates": [ 85.316977242739384, 27.617427985383433 ] } }, +{ "type": "Feature", "properties": { "im": 1.221878 }, "geometry": { "type": "Point", "coordinates": [ 85.318200538995868, 27.635638338340648 ] } }, +{ "type": "Feature", "properties": { "im": 1.359416 }, "geometry": { "type": "Point", "coordinates": [ 85.306448167415098, 27.632462719503756 ] } }, +{ "type": "Feature", "properties": { "im": 0.553441 }, "geometry": { "type": "Point", "coordinates": [ 85.319291846589877, 27.634387994337736 ] } }, +{ "type": "Feature", "properties": { "im": 1.476197 }, "geometry": { "type": "Point", "coordinates": [ 85.31776706324095, 27.635885795066482 ] } }, +{ "type": "Feature", "properties": { "im": 0.437503 }, "geometry": { "type": "Point", "coordinates": [ 85.316103713871527, 27.61842824681699 ] } }, +{ "type": "Feature", "properties": { "im": 1.484953 }, "geometry": { "type": "Point", "coordinates": [ 85.305344334299562, 27.62057165010123 ] } }, +{ "type": "Feature", "properties": { "im": 3.177965 }, "geometry": { "type": "Point", "coordinates": [ 85.308569671743442, 27.620105588642232 ] } }, +{ "type": "Feature", "properties": { "im": 1.060479 }, "geometry": { "type": "Point", "coordinates": [ 85.316109683265253, 27.632074950453578 ] } }, +{ "type": "Feature", "properties": { "im": 3.10624 }, "geometry": { "type": "Point", "coordinates": [ 85.308378200173934, 27.618586963587827 ] } }, +{ "type": "Feature", "properties": { "im": 0.668431 }, "geometry": { "type": "Point", "coordinates": [ 85.324329399792006, 27.641777714986741 ] } }, +{ "type": "Feature", "properties": { "im": 0.640385 }, "geometry": { "type": "Point", "coordinates": [ 85.323060772789461, 27.640498798556433 ] } }, +{ "type": "Feature", "properties": { "im": 1.549393 }, "geometry": { "type": "Point", "coordinates": [ 85.30433828385182, 27.630162506245487 ] } }, +{ "type": "Feature", "properties": { "im": 0.606681 }, "geometry": { "type": "Point", "coordinates": [ 85.322264205092992, 27.636445714720168 ] } }, +{ "type": "Feature", "properties": { "im": 1.86627 }, "geometry": { "type": "Point", "coordinates": [ 85.307044957956663, 27.621603276707368 ] } }, +{ "type": "Feature", "properties": { "im": 4.101055 }, "geometry": { "type": "Point", "coordinates": [ 85.310224065266638, 27.638068505452903 ] } }, +{ "type": "Feature", "properties": { "im": 1.179004 }, "geometry": { "type": "Point", "coordinates": [ 85.306924431772686, 27.629435961184647 ] } }, +{ "type": "Feature", "properties": { "im": 2.840676 }, "geometry": { "type": "Point", "coordinates": [ 85.308814494506052, 27.618086853431663 ] } }, +{ "type": "Feature", "properties": { "im": 0.892631 }, "geometry": { "type": "Point", "coordinates": [ 85.318989225890917, 27.640196775638685 ] } }, +{ "type": "Feature", "properties": { "im": 0.489075 }, "geometry": { "type": "Point", "coordinates": [ 85.319794786802589, 27.629592496212343 ] } }, +{ "type": "Feature", "properties": { "im": 1.421174 }, "geometry": { "type": "Point", "coordinates": [ 85.310944660826706, 27.619123668721024 ] } }, +{ "type": "Feature", "properties": { "im": 1.515401 }, "geometry": { "type": "Point", "coordinates": [ 85.305867049069519, 27.628412189696167 ] } }, +{ "type": "Feature", "properties": { "im": 1.969763 }, "geometry": { "type": "Point", "coordinates": [ 85.313343593468204, 27.630525043339247 ] } }, +{ "type": "Feature", "properties": { "im": 0.605645 }, "geometry": { "type": "Point", "coordinates": [ 85.322495393748724, 27.621285567210251 ] } }, +{ "type": "Feature", "properties": { "im": 0.642955 }, "geometry": { "type": "Point", "coordinates": [ 85.31514892957324, 27.624734539093733 ] } }, +{ "type": "Feature", "properties": { "im": 1.487106 }, "geometry": { "type": "Point", "coordinates": [ 85.305613569560037, 27.617036931738962 ] } }, +{ "type": "Feature", "properties": { "im": 0.73443 }, "geometry": { "type": "Point", "coordinates": [ 85.323702215302546, 27.626607193396662 ] } }, +{ "type": "Feature", "properties": { "im": 2.901801 }, "geometry": { "type": "Point", "coordinates": [ 85.312990291413684, 27.639618479711132 ] } }, +{ "type": "Feature", "properties": { "im": 0.641677 }, "geometry": { "type": "Point", "coordinates": [ 85.324788819577009, 27.639761543022171 ] } }, +{ "type": "Feature", "properties": { "im": 0.49844 }, "geometry": { "type": "Point", "coordinates": [ 85.32038800065834, 27.632884983981796 ] } }, +{ "type": "Feature", "properties": { "im": 3.522731 }, "geometry": { "type": "Point", "coordinates": [ 85.310450520625338, 27.637313121543023 ] } }, +{ "type": "Feature", "properties": { "im": 0.642326 }, "geometry": { "type": "Point", "coordinates": [ 85.321754624037837, 27.64174657009389 ] } }, +{ "type": "Feature", "properties": { "im": 1.356741 }, "geometry": { "type": "Point", "coordinates": [ 85.308266611909673, 27.639813635469473 ] } }, +{ "type": "Feature", "properties": { "im": 0.648232 }, "geometry": { "type": "Point", "coordinates": [ 85.32491197446592, 27.631676128759185 ] } }, +{ "type": "Feature", "properties": { "im": 1.424333 }, "geometry": { "type": "Point", "coordinates": [ 85.30520422942287, 27.629667663245563 ] } }, +{ "type": "Feature", "properties": { "im": 0.655186 }, "geometry": { "type": "Point", "coordinates": [ 85.324184656781753, 27.623074999745405 ] } }, +{ "type": "Feature", "properties": { "im": 0.982726 }, "geometry": { "type": "Point", "coordinates": [ 85.306787413920873, 27.624379995456795 ] } }, +{ "type": "Feature", "properties": { "im": 1.123397 }, "geometry": { "type": "Point", "coordinates": [ 85.319016264161135, 27.638428097495417 ] } }, +{ "type": "Feature", "properties": { "im": 0.504061 }, "geometry": { "type": "Point", "coordinates": [ 85.3139745206322, 27.6173915214296 ] } }, +{ "type": "Feature", "properties": { "im": 0.662787 }, "geometry": { "type": "Point", "coordinates": [ 85.324547054915328, 27.641527630113586 ] } }, +{ "type": "Feature", "properties": { "im": 3.074832 }, "geometry": { "type": "Point", "coordinates": [ 85.309044792388448, 27.617078800523533 ] } }, +{ "type": "Feature", "properties": { "im": 2.160275 }, "geometry": { "type": "Point", "coordinates": [ 85.308835100355296, 27.630722848543293 ] } }, +{ "type": "Feature", "properties": { "im": 0.663546 }, "geometry": { "type": "Point", "coordinates": [ 85.323471140748353, 27.641767338663985 ] } }, +{ "type": "Feature", "properties": { "im": 2.722325 }, "geometry": { "type": "Point", "coordinates": [ 85.311390207122372, 27.632017559857761 ] } }, +{ "type": "Feature", "properties": { "im": 2.410389 }, "geometry": { "type": "Point", "coordinates": [ 85.313192462661306, 27.640379083650334 ] } }, +{ "type": "Feature", "properties": { "im": 1.318101 }, "geometry": { "type": "Point", "coordinates": [ 85.311242772594341, 27.641618920901497 ] } }, +{ "type": "Feature", "properties": { "im": 0.56101 }, "geometry": { "type": "Point", "coordinates": [ 85.321073811457779, 27.630113418241752 ] } }, +{ "type": "Feature", "properties": { "im": 0.482274 }, "geometry": { "type": "Point", "coordinates": [ 85.318936624817965, 27.629582096032141 ] } }, +{ "type": "Feature", "properties": { "im": 0.44854 }, "geometry": { "type": "Point", "coordinates": [ 85.317605090005344, 27.618446464499915 ] } }, +{ "type": "Feature", "properties": { "im": 2.957005 }, "geometry": { "type": "Point", "coordinates": [ 85.306896263857183, 27.617305308457514 ] } }, +{ "type": "Feature", "properties": { "im": 0.613346 }, "geometry": { "type": "Point", "coordinates": [ 85.323552037370916, 27.636461291794085 ] } }, +{ "type": "Feature", "properties": { "im": 4.078316 }, "geometry": { "type": "Point", "coordinates": [ 85.307727129805002, 27.619084452102808 ] } }, +{ "type": "Feature", "properties": { "im": 0.9241 }, "geometry": { "type": "Point", "coordinates": [ 85.313494647571318, 27.620670988261388 ] } }, +{ "type": "Feature", "properties": { "im": 0.431195 }, "geometry": { "type": "Point", "coordinates": [ 85.315456544770683, 27.618673104627813 ] } }, +{ "type": "Feature", "properties": { "im": 0.666946 }, "geometry": { "type": "Point", "coordinates": [ 85.321589945351192, 27.638459277530899 ] } }, +{ "type": "Feature", "properties": { "im": 1.509848 }, "geometry": { "type": "Point", "coordinates": [ 85.309676442911069, 27.617844644371498 ] } }, +{ "type": "Feature", "properties": { "im": 0.630618 }, "geometry": { "type": "Point", "coordinates": [ 85.320689266903258, 27.641228238995321 ] } }, +{ "type": "Feature", "properties": { "im": 0.540865 }, "geometry": { "type": "Point", "coordinates": [ 85.321040232500451, 27.618235369366214 ] } }, +{ "type": "Feature", "properties": { "im": 0.440129 }, "geometry": { "type": "Point", "coordinates": [ 85.317386455247203, 27.618696528308469 ] } }, +{ "type": "Feature", "properties": { "im": 1.15782 }, "geometry": { "type": "Point", "coordinates": [ 85.307434634331528, 27.624135180666414 ] } }, +{ "type": "Feature", "properties": { "im": 0.491885 }, "geometry": { "type": "Point", "coordinates": [ 85.323637547782795, 27.616750485015757 ] } }, +{ "type": "Feature", "properties": { "im": 0.439295 }, "geometry": { "type": "Point", "coordinates": [ 85.317684664332191, 27.627292475198814 ] } }, +{ "type": "Feature", "properties": { "im": 1.654519 }, "geometry": { "type": "Point", "coordinates": [ 85.309553461063658, 27.639829331918815 ] } }, +{ "type": "Feature", "properties": { "im": 3.391634 }, "geometry": { "type": "Point", "coordinates": [ 85.310863599036907, 27.638329012919911 ] } }, +{ "type": "Feature", "properties": { "im": 3.334902 }, "geometry": { "type": "Point", "coordinates": [ 85.311128853176214, 27.635046953946368 ] } }, +{ "type": "Feature", "properties": { "im": 2.397002 }, "geometry": { "type": "Point", "coordinates": [ 85.311670930357522, 27.627724824622167 ] } }, +{ "type": "Feature", "properties": { "im": 1.690899 }, "geometry": { "type": "Point", "coordinates": [ 85.317131391499217, 27.635372651069858 ] } }, +{ "type": "Feature", "properties": { "im": 3.031919 }, "geometry": { "type": "Point", "coordinates": [ 85.311413479592957, 27.63050155420061 ] } }, +{ "type": "Feature", "properties": { "im": 1.242136 }, "geometry": { "type": "Point", "coordinates": [ 85.303655952279996, 27.632681303769377 ] } }, +{ "type": "Feature", "properties": { "im": 1.080918 }, "geometry": { "type": "Point", "coordinates": [ 85.317177783026921, 27.632340631894323 ] } }, +{ "type": "Feature", "properties": { "im": 0.40814 }, "geometry": { "type": "Point", "coordinates": [ 85.316295292534974, 27.619946865981618 ] } }, +{ "type": "Feature", "properties": { "im": 1.052311 }, "geometry": { "type": "Point", "coordinates": [ 85.313062236034042, 27.620918445260742 ] } }, +{ "type": "Feature", "properties": { "im": 0.675066 }, "geometry": { "type": "Point", "coordinates": [ 85.323112775319771, 27.623062044631276 ] } }, +{ "type": "Feature", "properties": { "im": 0.487343 }, "geometry": { "type": "Point", "coordinates": [ 85.318833798115733, 27.622252097903729 ] } }, +{ "type": "Feature", "properties": { "im": 0.546231 }, "geometry": { "type": "Point", "coordinates": [ 85.324644995013955, 27.621058831949835 ] } }, +{ "type": "Feature", "properties": { "im": 1.142255 }, "geometry": { "type": "Point", "coordinates": [ 85.305156798111355, 27.618800355406925 ] } }, +{ "type": "Feature", "properties": { "im": 3.007439 }, "geometry": { "type": "Point", "coordinates": [ 85.311639908377714, 27.629746166498677 ] } }, +{ "type": "Feature", "properties": { "im": 3.406137 }, "geometry": { "type": "Point", "coordinates": [ 85.312661462979719, 27.63304389418289 ] } }, +{ "type": "Feature", "properties": { "im": 0.48299 }, "geometry": { "type": "Point", "coordinates": [ 85.319423096276793, 27.625797258940903 ] } }, +{ "type": "Feature", "properties": { "im": 0.41326 }, "geometry": { "type": "Point", "coordinates": [ 85.316088250099568, 27.619438921498514 ] } }, +{ "type": "Feature", "properties": { "im": 0.53556 }, "geometry": { "type": "Point", "coordinates": [ 85.320607846497751, 27.618482851161676 ] } }, +{ "type": "Feature", "properties": { "im": 0.495205 }, "geometry": { "type": "Point", "coordinates": [ 85.316252767320606, 27.622726220648186 ] } }, +{ "type": "Feature", "properties": { "im": 0.657224 }, "geometry": { "type": "Point", "coordinates": [ 85.324915822229684, 27.631423459403372 ] } }, +{ "type": "Feature", "properties": { "im": 0.468414 }, "geometry": { "type": "Point", "coordinates": [ 85.318416835781946, 27.621488896319459 ] } }, +{ "type": "Feature", "properties": { "im": 1.550522 }, "geometry": { "type": "Point", "coordinates": [ 85.313203421069645, 27.625721751849596 ] } }, +{ "type": "Feature", "properties": { "im": 0.590303 }, "geometry": { "type": "Point", "coordinates": [ 85.322928800304595, 27.621038092174064 ] } }, +{ "type": "Feature", "properties": { "im": 0.445254 }, "geometry": { "type": "Point", "coordinates": [ 85.31670063986023, 27.621468079207233 ] } }, +{ "type": "Feature", "properties": { "im": 1.728442 }, "geometry": { "type": "Point", "coordinates": [ 85.316924320085477, 27.634864707452053 ] } }, +{ "type": "Feature", "properties": { "im": 1.739053 }, "geometry": { "type": "Point", "coordinates": [ 85.31644544216816, 27.63814418941579 ] } }, +{ "type": "Feature", "properties": { "im": 0.813143 }, "geometry": { "type": "Point", "coordinates": [ 85.316580801582703, 27.629300802904304 ] } }, +{ "type": "Feature", "properties": { "im": 0.480211 }, "geometry": { "type": "Point", "coordinates": [ 85.315830941546679, 27.622215668288483 ] } }, +{ "type": "Feature", "properties": { "im": 1.576138 }, "geometry": { "type": "Point", "coordinates": [ 85.303531229747364, 27.640766628210692 ] } }, +{ "type": "Feature", "properties": { "im": 2.971828 }, "geometry": { "type": "Point", "coordinates": [ 85.310266770491651, 27.635289165580858 ] } }, +{ "type": "Feature", "properties": { "im": 3.291715 }, "geometry": { "type": "Point", "coordinates": [ 85.311117212962756, 27.635804956210428 ] } }, +{ "type": "Feature", "properties": { "im": 2.027682 }, "geometry": { "type": "Point", "coordinates": [ 85.309455172465775, 27.632246697345352 ] } }, +{ "type": "Feature", "properties": { "im": 0.876931 }, "geometry": { "type": "Point", "coordinates": [ 85.316565335056268, 27.630311476250323 ] } }, +{ "type": "Feature", "properties": { "im": 1.338622 }, "geometry": { "type": "Point", "coordinates": [ 85.305250938343988, 27.626635660262671 ] } }, +{ "type": "Feature", "properties": { "im": 2.683309 }, "geometry": { "type": "Point", "coordinates": [ 85.309861473028903, 27.633767938140924 ] } }, +{ "type": "Feature", "properties": { "im": 0.701786 }, "geometry": { "type": "Point", "coordinates": [ 85.322402939954046, 27.627349630405831 ] } }, +{ "type": "Feature", "properties": { "im": 2.012079 }, "geometry": { "type": "Point", "coordinates": [ 85.310036143165235, 27.622397899045176 ] } }, +{ "type": "Feature", "properties": { "im": 1.131129 }, "geometry": { "type": "Point", "coordinates": [ 85.316756931622749, 27.631830093492781 ] } }, +{ "type": "Feature", "properties": { "im": 1.410429 }, "geometry": { "type": "Point", "coordinates": [ 85.305310019754131, 27.636744957101911 ] } }, +{ "type": "Feature", "properties": { "im": 1.206833 }, "geometry": { "type": "Point", "coordinates": [ 85.306705750427113, 27.629686005710052 ] } }, +{ "type": "Feature", "properties": { "im": 0.881827 }, "geometry": { "type": "Point", "coordinates": [ 85.318985363079776, 27.640449443906043 ] } }, +{ "type": "Feature", "properties": { "im": 0.720316 }, "geometry": { "type": "Point", "coordinates": [ 85.323659865143298, 27.62938655597733 ] } }, +{ "type": "Feature", "properties": { "im": 0.700281 }, "geometry": { "type": "Point", "coordinates": [ 85.322399087085714, 27.627602299584371 ] } }, +{ "type": "Feature", "properties": { "im": 0.628245 }, "geometry": { "type": "Point", "coordinates": [ 85.321185624418462, 27.622786015763484 ] } }, +{ "type": "Feature", "properties": { "im": 1.778879 }, "geometry": { "type": "Point", "coordinates": [ 85.307216900896137, 27.638284537066923 ] } }, +{ "type": "Feature", "properties": { "im": 0.607178 }, "geometry": { "type": "Point", "coordinates": [ 85.324896582909943, 27.632686806085424 ] } }, +{ "type": "Feature", "properties": { "im": 0.816288 }, "geometry": { "type": "Point", "coordinates": [ 85.318540277530218, 27.641454906705565 ] } }, +{ "type": "Feature", "properties": { "im": 0.667054 }, "geometry": { "type": "Point", "coordinates": [ 85.32475802283912, 27.641782895035334 ] } }, +{ "type": "Feature", "properties": { "im": 1.372237 }, "geometry": { "type": "Point", "coordinates": [ 85.305570526883855, 27.633715569665096 ] } }, +{ "type": "Feature", "properties": { "im": 1.609178 }, "geometry": { "type": "Point", "coordinates": [ 85.305975976792652, 27.621337510182549 ] } }, +{ "type": "Feature", "properties": { "im": 1.401925 }, "geometry": { "type": "Point", "coordinates": [ 85.306510406039493, 27.628420047571279 ] } }, +{ "type": "Feature", "properties": { "im": 2.445857 }, "geometry": { "type": "Point", "coordinates": [ 85.30836377997997, 27.63349696022804 ] } }, +{ "type": "Feature", "properties": { "im": 1.156563 }, "geometry": { "type": "Point", "coordinates": [ 85.307399652161465, 27.626409186427704 ] } }, +{ "type": "Feature", "properties": { "im": 1.421223 }, "geometry": { "type": "Point", "coordinates": [ 85.304042137380634, 27.621566592728911 ] } }, +{ "type": "Feature", "properties": { "im": 0.65539 }, "geometry": { "type": "Point", "coordinates": [ 85.322015712559249, 27.638717146462444 ] } }, +{ "type": "Feature", "properties": { "im": 1.295205 }, "geometry": { "type": "Point", "coordinates": [ 85.317503016422933, 27.639167887394251 ] } }, +{ "type": "Feature", "properties": { "im": 2.790221 }, "geometry": { "type": "Point", "coordinates": [ 85.311428993563581, 27.629490883568316 ] } }, +{ "type": "Feature", "properties": { "im": 0.524204 }, "geometry": { "type": "Point", "coordinates": [ 85.32318207643057, 27.618513993291142 ] } }, +{ "type": "Feature", "properties": { "im": 0.892107 }, "geometry": { "type": "Point", "coordinates": [ 85.319452595786018, 27.637927956577826 ] } }, +{ "type": "Feature", "properties": { "im": 1.391102 }, "geometry": { "type": "Point", "coordinates": [ 85.308032359522642, 27.641074348292342 ] } }, +{ "type": "Feature", "properties": { "im": 1.422119 }, "geometry": { "type": "Point", "coordinates": [ 85.304073288107517, 27.619545256420579 ] } }, +{ "type": "Feature", "properties": { "im": 1.478929 }, "geometry": { "type": "Point", "coordinates": [ 85.305324879215107, 27.621834986012821 ] } }, +{ "type": "Feature", "properties": { "im": 0.674575 }, "geometry": { "type": "Point", "coordinates": [ 85.324923517606976, 27.630918120662635 ] } }, +{ "type": "Feature", "properties": { "im": 0.525342 }, "geometry": { "type": "Point", "coordinates": [ 85.324031445522863, 27.619029690569217 ] } }, +{ "type": "Feature", "properties": { "im": 0.739958 }, "geometry": { "type": "Point", "coordinates": [ 85.323900593221353, 27.627620454677427 ] } }, +{ "type": "Feature", "properties": { "im": 0.547883 }, "geometry": { "type": "Point", "coordinates": [ 85.322747766521402, 27.63291354708651 ] } }, +{ "type": "Feature", "properties": { "im": 1.425829 }, "geometry": { "type": "Point", "coordinates": [ 85.304681561133066, 27.621827124358735 ] } }, +{ "type": "Feature", "properties": { "im": 1.029189 }, "geometry": { "type": "Point", "coordinates": [ 85.312667549654464, 27.618639206633716 ] } }, +{ "type": "Feature", "properties": { "im": 0.63232 }, "geometry": { "type": "Point", "coordinates": [ 85.320896366371457, 27.641736177846578 ] } }, +{ "type": "Feature", "properties": { "im": 0.656295 }, "geometry": { "type": "Point", "coordinates": [ 85.325023539282412, 27.624348713501753 ] } }, +{ "type": "Feature", "properties": { "im": 0.63505 }, "geometry": { "type": "Point", "coordinates": [ 85.32417619556324, 27.637732415023027 ] } }, +{ "type": "Feature", "properties": { "im": 2.849984 }, "geometry": { "type": "Point", "coordinates": [ 85.310282298148479, 27.63427849624512 ] } }, +{ "type": "Feature", "properties": { "im": 0.465104 }, "geometry": { "type": "Point", "coordinates": [ 85.317496923106674, 27.62552118946174 ] } }, +{ "type": "Feature", "properties": { "im": 0.733587 }, "geometry": { "type": "Point", "coordinates": [ 85.31761124558011, 27.632093176327878 ] } }, +{ "type": "Feature", "properties": { "im": 0.595613 }, "geometry": { "type": "Point", "coordinates": [ 85.320515299710962, 27.624546910928391 ] } }, +{ "type": "Feature", "properties": { "im": 0.656528 }, "geometry": { "type": "Point", "coordinates": [ 85.324395590821609, 27.623330264263831 ] } }, +{ "type": "Feature", "properties": { "im": 2.392967 }, "geometry": { "type": "Point", "coordinates": [ 85.311018804428755, 27.628222313882297 ] } }, +{ "type": "Feature", "properties": { "im": 0.451641 }, "geometry": { "type": "Point", "coordinates": [ 85.318440001086813, 27.619972882869288 ] } }, +{ "type": "Feature", "properties": { "im": 1.478827 }, "geometry": { "type": "Point", "coordinates": [ 85.308453201894309, 27.641584912306087 ] } }, +{ "type": "Feature", "properties": { "im": 0.586616 }, "geometry": { "type": "Point", "coordinates": [ 85.322920187009501, 27.635695504083078 ] } }, +{ "type": "Feature", "properties": { "im": 0.72049 }, "geometry": { "type": "Point", "coordinates": [ 85.324142325153019, 27.625854364428868 ] } }, +{ "type": "Feature", "properties": { "im": 0.997698 }, "geometry": { "type": "Point", "coordinates": [ 85.315480766317407, 27.631056451324561 ] } }, +{ "type": "Feature", "properties": { "im": 0.546011 }, "geometry": { "type": "Point", "coordinates": [ 85.321454361819164, 27.619251245283905 ] } }, +{ "type": "Feature", "properties": { "im": 1.505958 }, "geometry": { "type": "Point", "coordinates": [ 85.303897454396377, 27.617015959357243 ] } }, +{ "type": "Feature", "properties": { "im": 3.047478 }, "geometry": { "type": "Point", "coordinates": [ 85.313618215905706, 27.640636977766608 ] } }, +{ "type": "Feature", "properties": { "im": 1.107759 }, "geometry": { "type": "Point", "coordinates": [ 85.307204303423077, 27.625143228597736 ] } }, +{ "type": "Feature", "properties": { "im": 0.604881 }, "geometry": { "type": "Point", "coordinates": [ 85.321112372419364, 27.627586728653807 ] } }, +{ "type": "Feature", "properties": { "im": 3.309605 }, "geometry": { "type": "Point", "coordinates": [ 85.311814911348861, 27.632275445840115 ] } }, +{ "type": "Feature", "properties": { "im": 1.376052 }, "geometry": { "type": "Point", "coordinates": [ 85.305200336683413, 27.629920330097669 ] } }, +{ "type": "Feature", "properties": { "im": 1.475012 }, "geometry": { "type": "Point", "coordinates": [ 85.307122657385847, 27.630449239413128 ] } }, +{ "type": "Feature", "properties": { "im": 1.520459 }, "geometry": { "type": "Point", "coordinates": [ 85.307638742645963, 27.638795115474867 ] } }, +{ "type": "Feature", "properties": { "im": 0.624109 }, "geometry": { "type": "Point", "coordinates": [ 85.324831159856018, 27.63698218299 ] } }, +{ "type": "Feature", "properties": { "im": 0.73598 }, "geometry": { "type": "Point", "coordinates": [ 85.32347972630123, 27.627109935770356 ] } }, +{ "type": "Feature", "properties": { "im": 1.357697 }, "geometry": { "type": "Point", "coordinates": [ 85.304260378026029, 27.635215838811678 ] } }, +{ "type": "Feature", "properties": { "im": 2.413863 }, "geometry": { "type": "Point", "coordinates": [ 85.310231521628594, 27.623663854603439 ] } }, +{ "type": "Feature", "properties": { "im": 1.005069 }, "geometry": { "type": "Point", "coordinates": [ 85.316140626197992, 27.630053604594572 ] } }, +{ "type": "Feature", "properties": { "im": 2.165597 }, "geometry": { "type": "Point", "coordinates": [ 85.308523067179991, 27.623137599691891 ] } }, +{ "type": "Feature", "properties": { "im": 2.800084 }, "geometry": { "type": "Point", "coordinates": [ 85.309193570753507, 27.621376770345805 ] } }, +{ "type": "Feature", "properties": { "im": 1.017422 }, "geometry": { "type": "Point", "coordinates": [ 85.312893940939503, 27.617883814173734 ] } }, +{ "type": "Feature", "properties": { "im": 0.594453 }, "geometry": { "type": "Point", "coordinates": [ 85.315355976187178, 27.62524248485931 ] } }, +{ "type": "Feature", "properties": { "im": 0.581793 }, "geometry": { "type": "Point", "coordinates": [ 85.319991540621501, 27.616706376671015 ] } }, +{ "type": "Feature", "properties": { "im": 1.125202 }, "geometry": { "type": "Point", "coordinates": [ 85.316323468367031, 27.632077546357241 ] } }, +{ "type": "Feature", "properties": { "im": 0.417651 }, "geometry": { "type": "Point", "coordinates": [ 85.316938603489788, 27.619954673297265 ] } }, +{ "type": "Feature", "properties": { "im": 0.536991 }, "geometry": { "type": "Point", "coordinates": [ 85.32210922685384, 27.618501020140403 ] } }, +{ "type": "Feature", "properties": { "im": 1.044577 }, "geometry": { "type": "Point", "coordinates": [ 85.319233923847563, 27.638178021093037 ] } }, +{ "type": "Feature", "properties": { "im": 1.138947 }, "geometry": { "type": "Point", "coordinates": [ 85.313054489468797, 27.621423781646943 ] } }, +{ "type": "Feature", "properties": { "im": 1.662543 }, "geometry": { "type": "Point", "coordinates": [ 85.306616283840427, 27.635497345358701 ] } }, +{ "type": "Feature", "properties": { "im": 2.478447 }, "geometry": { "type": "Point", "coordinates": [ 85.309396702095484, 27.622137391414803 ] } }, +{ "type": "Feature", "properties": { "im": 3.177925 }, "geometry": { "type": "Point", "coordinates": [ 85.31223675375476, 27.632786010600729 ] } }, +{ "type": "Feature", "properties": { "im": 2.711344 }, "geometry": { "type": "Point", "coordinates": [ 85.310422010684391, 27.625182465231866 ] } }, +{ "type": "Feature", "properties": { "im": 0.435315 }, "geometry": { "type": "Point", "coordinates": [ 85.316957923743402, 27.61869132946164 ] } }, +{ "type": "Feature", "properties": { "im": 1.703449 }, "geometry": { "type": "Point", "coordinates": [ 85.306682413899765, 27.631202007852885 ] } }, +{ "type": "Feature", "properties": { "im": 1.447697 }, "geometry": { "type": "Point", "coordinates": [ 85.317357793434667, 27.634617253232349 ] } }, +{ "type": "Feature", "properties": { "im": 0.600565 }, "geometry": { "type": "Point", "coordinates": [ 85.324639446139713, 27.635463572643488 ] } }, +{ "type": "Feature", "properties": { "im": 0.901126 }, "geometry": { "type": "Point", "coordinates": [ 85.308242243222168, 27.627430326300434 ] } }, +{ "type": "Feature", "properties": { "im": 0.627448 }, "geometry": { "type": "Point", "coordinates": [ 85.32095927733657, 27.623541423335777 ] } }, +{ "type": "Feature", "properties": { "im": 1.223958 }, "geometry": { "type": "Point", "coordinates": [ 85.303792308078613, 27.623837968771159 ] } }, +{ "type": "Feature", "properties": { "im": 2.453395 }, "geometry": { "type": "Point", "coordinates": [ 85.309625992173892, 27.621129325896739 ] } }, +{ "type": "Feature", "properties": { "im": 1.332438 }, "geometry": { "type": "Point", "coordinates": [ 85.304318809296717, 27.631425839751319 ] } }, +{ "type": "Feature", "properties": { "im": 0.574659 }, "geometry": { "type": "Point", "coordinates": [ 85.324873494073358, 27.634202821783703 ] } }, +{ "type": "Feature", "properties": { "im": 1.713151 }, "geometry": { "type": "Point", "coordinates": [ 85.309680323383347, 27.617591976493909 ] } }, +{ "type": "Feature", "properties": { "im": 1.134926 }, "geometry": { "type": "Point", "coordinates": [ 85.315282462231607, 27.6300431816484 ] } }, +{ "type": "Feature", "properties": { "im": 0.554689 }, "geometry": { "type": "Point", "coordinates": [ 85.319883535089005, 27.62378111209259 ] } }, +{ "type": "Feature", "properties": { "im": 3.975315 }, "geometry": { "type": "Point", "coordinates": [ 85.31281812231839, 27.636836522772541 ] } }, +{ "type": "Feature", "properties": { "im": 0.640952 }, "geometry": { "type": "Point", "coordinates": [ 85.323926724677293, 27.640003839161611 ] } }, +{ "type": "Feature", "properties": { "im": 0.514181 }, "geometry": { "type": "Point", "coordinates": [ 85.31601865315973, 27.623986955643868 ] } }, +{ "type": "Feature", "properties": { "im": 0.646363 }, "geometry": { "type": "Point", "coordinates": [ 85.324188504811062, 27.622822330170528 ] } }, +{ "type": "Feature", "properties": { "im": 3.279607 }, "geometry": { "type": "Point", "coordinates": [ 85.313040681285074, 27.636333801230936 ] } }, +{ "type": "Feature", "properties": { "im": 3.825151 }, "geometry": { "type": "Point", "coordinates": [ 85.313664714636673, 27.63760496638282 ] } }, +{ "type": "Feature", "properties": { "im": 0.656295 }, "geometry": { "type": "Point", "coordinates": [ 85.325023539282412, 27.624348713501753 ] } }, +{ "type": "Feature", "properties": { "im": 0.489413 }, "geometry": { "type": "Point", "coordinates": [ 85.319033138303411, 27.623265376698125 ] } }, +{ "type": "Feature", "properties": { "im": 1.130999 }, "geometry": { "type": "Point", "coordinates": [ 85.313269266643715, 27.621426393659995 ] } }, +{ "type": "Feature", "properties": { "im": 1.706027 }, "geometry": { "type": "Point", "coordinates": [ 85.305926178879218, 27.638521486375922 ] } }, +{ "type": "Feature", "properties": { "im": 0.542257 }, "geometry": { "type": "Point", "coordinates": [ 85.320269656348799, 27.626565661654144 ] } }, +{ "type": "Feature", "properties": { "im": 0.726914 }, "geometry": { "type": "Point", "coordinates": [ 85.324345567635291, 27.626614968088923 ] } }, +{ "type": "Feature", "properties": { "im": 1.057932 }, "geometry": { "type": "Point", "coordinates": [ 85.312679170717772, 27.617881201887055 ] } }, +{ "type": "Feature", "properties": { "im": 0.454588 }, "geometry": { "type": "Point", "coordinates": [ 85.31648199673532, 27.621718141126507 ] } }, +{ "type": "Feature", "properties": { "im": 3.710846 }, "geometry": { "type": "Point", "coordinates": [ 85.30958841863098, 27.63755532802228 ] } }, +{ "type": "Feature", "properties": { "im": 1.663593 }, "geometry": { "type": "Point", "coordinates": [ 85.313784802748287, 27.629772263836511 ] } }, +{ "type": "Feature", "properties": { "im": 2.553368 }, "geometry": { "type": "Point", "coordinates": [ 85.311487163759494, 27.62570086731364 ] } }, +{ "type": "Feature", "properties": { "im": 1.153629 }, "geometry": { "type": "Point", "coordinates": [ 85.319027851237152, 27.637670092431257 ] } }, +{ "type": "Feature", "properties": { "im": 1.011624 }, "geometry": { "type": "Point", "coordinates": [ 85.306592074564307, 27.623114036886783 ] } }, +{ "type": "Feature", "properties": { "im": 1.529182 }, "geometry": { "type": "Point", "coordinates": [ 85.306133204485775, 27.639029444207694 ] } }, +{ "type": "Feature", "properties": { "im": 1.444038 }, "geometry": { "type": "Point", "coordinates": [ 85.305566634317032, 27.63396823641774 ] } }, +{ "type": "Feature", "properties": { "im": 0.431023 }, "geometry": { "type": "Point", "coordinates": [ 85.317378729262074, 27.619201865982955 ] } }, +{ "type": "Feature", "properties": { "im": 0.466861 }, "geometry": { "type": "Point", "coordinates": [ 85.315834808611427, 27.621962999767277 ] } }, +{ "type": "Feature", "properties": { "im": 0.591346 }, "geometry": { "type": "Point", "coordinates": [ 85.322701527377973, 27.635945574693135 ] } }, +{ "type": "Feature", "properties": { "im": 2.461991 }, "geometry": { "type": "Point", "coordinates": [ 85.310805027402282, 27.628219710135998 ] } }, +{ "type": "Feature", "properties": { "im": 1.169318 }, "geometry": { "type": "Point", "coordinates": [ 85.31507153811863, 27.629787903868458 ] } }, +{ "type": "Feature", "properties": { "im": 0.490189 }, "geometry": { "type": "Point", "coordinates": [ 85.314410785469235, 27.616891392234653 ] } }, +{ "type": "Feature", "properties": { "im": 0.531867 }, "geometry": { "type": "Point", "coordinates": [ 85.318047556592489, 27.63159303856294 ] } }, +{ "type": "Feature", "properties": { "im": 0.710934 }, "geometry": { "type": "Point", "coordinates": [ 85.324985073413458, 27.626875409339718 ] } }, +{ "type": "Feature", "properties": { "im": 1.633015 }, "geometry": { "type": "Point", "coordinates": [ 85.308282160925742, 27.638802967838796 ] } }, +{ "type": "Feature", "properties": { "im": 0.640412 }, "geometry": { "type": "Point", "coordinates": [ 85.324577855196935, 27.639506278244614 ] } }, +{ "type": "Feature", "properties": { "im": 1.647116 }, "geometry": { "type": "Point", "coordinates": [ 85.303842938697002, 27.620553298455636 ] } }, +{ "type": "Feature", "properties": { "im": 2.725206 }, "geometry": { "type": "Point", "coordinates": [ 85.314046832146204, 27.640642190724506 ] } }, +{ "type": "Feature", "properties": { "im": 0.66377 }, "geometry": { "type": "Point", "coordinates": [ 85.322039881453989, 27.623049068984741 ] } }, +{ "type": "Feature", "properties": { "im": 0.469013 }, "geometry": { "type": "Point", "coordinates": [ 85.318082326404593, 27.629319022000796 ] } }, +{ "type": "Feature", "properties": { "im": 2.081892 }, "geometry": { "type": "Point", "coordinates": [ 85.310456928589375, 27.622908455512359 ] } }, +{ "type": "Feature", "properties": { "im": 0.531227 }, "geometry": { "type": "Point", "coordinates": [ 85.322533907638515, 27.618758872562868 ] } }, +{ "type": "Feature", "properties": { "im": 0.466084 }, "geometry": { "type": "Point", "coordinates": [ 85.318518623642632, 27.628818881977057 ] } }, +{ "type": "Feature", "properties": { "im": 2.019723 }, "geometry": { "type": "Point", "coordinates": [ 85.311480870019039, 27.640105533861952 ] } }, +{ "type": "Feature", "properties": { "im": 0.467509 }, "geometry": { "type": "Point", "coordinates": [ 85.317044162204837, 27.627031988651545 ] } }, +{ "type": "Feature", "properties": { "im": 0.523712 }, "geometry": { "type": "Point", "coordinates": [ 85.315807738100972, 27.623731679211911 ] } }, +{ "type": "Feature", "properties": { "im": 0.667054 }, "geometry": { "type": "Point", "coordinates": [ 85.32475802283912, 27.641782895035334 ] } }, +{ "type": "Feature", "properties": { "im": 3.482165 }, "geometry": { "type": "Point", "coordinates": [ 85.308795081295855, 27.619350192066559 ] } }, +{ "type": "Feature", "properties": { "im": 0.814345 }, "geometry": { "type": "Point", "coordinates": [ 85.318973774344727, 27.641207448649851 ] } }, +{ "type": "Feature", "properties": { "im": 1.361109 }, "geometry": { "type": "Point", "coordinates": [ 85.314217248717512, 27.629524806365204 ] } }, +{ "type": "Feature", "properties": { "im": 2.228 }, "geometry": { "type": "Point", "coordinates": [ 85.30885452247729, 27.629459511953165 ] } }, +{ "type": "Feature", "properties": { "im": 1.135285 }, "geometry": { "type": "Point", "coordinates": [ 85.305527984152775, 27.622595611541858 ] } }, +{ "type": "Feature", "properties": { "im": 1.085936 }, "geometry": { "type": "Point", "coordinates": [ 85.312461539464323, 27.618131269823429 ] } }, +{ "type": "Feature", "properties": { "im": 1.143152 }, "geometry": { "type": "Point", "coordinates": [ 85.319023988928748, 27.637922760795686 ] } }, +{ "type": "Feature", "properties": { "im": 0.632099 }, "geometry": { "type": "Point", "coordinates": [ 85.321622893623925, 27.622285876004192 ] } }, +{ "type": "Feature", "properties": { "im": 2.990369 }, "geometry": { "type": "Point", "coordinates": [ 85.313173081368049, 27.641642421083613 ] } }, +{ "type": "Feature", "properties": { "im": 2.8106 }, "geometry": { "type": "Point", "coordinates": [ 85.313835892053902, 27.640386910659462 ] } }, +{ "type": "Feature", "properties": { "im": 0.426163 }, "geometry": { "type": "Point", "coordinates": [ 85.316524514342802, 27.618938785727924 ] } }, +{ "type": "Feature", "properties": { "im": 1.246623 }, "geometry": { "type": "Point", "coordinates": [ 85.310599336855873, 27.641611081540596 ] } }, +{ "type": "Feature", "properties": { "im": 1.263296 }, "geometry": { "type": "Point", "coordinates": [ 85.313639724444229, 27.625221627285338 ] } }, +{ "type": "Feature", "properties": { "im": 1.640253 }, "geometry": { "type": "Point", "coordinates": [ 85.303523432864139, 27.641271960657921 ] } }, +{ "type": "Feature", "properties": { "im": 1.954753 }, "geometry": { "type": "Point", "coordinates": [ 85.311291768445685, 27.624434913073394 ] } }, +{ "type": "Feature", "properties": { "im": 1.457955 }, "geometry": { "type": "Point", "coordinates": [ 85.307497816383531, 27.633991821991817 ] } }, +{ "type": "Feature", "properties": { "im": 2.303572 }, "geometry": { "type": "Point", "coordinates": [ 85.309148160387906, 27.638308103038884 ] } }, +{ "type": "Feature", "properties": { "im": 0.424193 }, "geometry": { "type": "Point", "coordinates": [ 85.314790027831407, 27.620181301677047 ] } }, +{ "type": "Feature", "properties": { "im": 1.904059 }, "geometry": { "type": "Point", "coordinates": [ 85.310297477419894, 27.619368501733693 ] } }, +{ "type": "Feature", "properties": { "im": 0.501892 }, "geometry": { "type": "Point", "coordinates": [ 85.320426581903661, 27.630358296293711 ] } }, +{ "type": "Feature", "properties": { "im": 0.525887 }, "geometry": { "type": "Point", "coordinates": [ 85.319325098058073, 27.618214599225123 ] } }, +{ "type": "Feature", "properties": { "im": 0.681899 }, "geometry": { "type": "Point", "coordinates": [ 85.324927365220503, 27.630665451277714 ] } }, +{ "type": "Feature", "properties": { "im": 1.900217 }, "geometry": { "type": "Point", "coordinates": [ 85.314370091346476, 27.633570105123241 ] } }, +{ "type": "Feature", "properties": { "im": 0.964585 }, "geometry": { "type": "Point", "coordinates": [ 85.304869092038643, 27.623598418845049 ] } }, +{ "type": "Feature", "properties": { "im": 0.498872 }, "geometry": { "type": "Point", "coordinates": [ 85.31925949776317, 27.622509972804149 ] } }, +{ "type": "Feature", "properties": { "im": 3.950693 }, "geometry": { "type": "Point", "coordinates": [ 85.313223470107204, 27.638357743252104 ] } }, +{ "type": "Feature", "properties": { "im": 1.047748 }, "geometry": { "type": "Point", "coordinates": [ 85.306967204695724, 27.626656622599651 ] } }, +{ "type": "Feature", "properties": { "im": 0.992433 }, "geometry": { "type": "Point", "coordinates": [ 85.312897814033931, 27.617631145877514 ] } }, +{ "type": "Feature", "properties": { "im": 0.503102 }, "geometry": { "type": "Point", "coordinates": [ 85.324046836103804, 27.61801901170162 ] } }, +{ "type": "Feature", "properties": { "im": 1.190278 }, "geometry": { "type": "Point", "coordinates": [ 85.311185560116115, 27.617357595090546 ] } }, +{ "type": "Feature", "properties": { "im": 1.781033 }, "geometry": { "type": "Point", "coordinates": [ 85.313362963664787, 27.629261703769807 ] } }, +{ "type": "Feature", "properties": { "im": 0.599895 }, "geometry": { "type": "Point", "coordinates": [ 85.324854251998701, 27.635466167932108 ] } }, +{ "type": "Feature", "properties": { "im": 0.757459 }, "geometry": { "type": "Point", "coordinates": [ 85.318441373539784, 27.633872252546375 ] } }, +{ "type": "Feature", "properties": { "im": 1.534965 }, "geometry": { "type": "Point", "coordinates": [ 85.311330544668877, 27.621908234150727 ] } }, +{ "type": "Feature", "properties": { "im": 1.524068 }, "geometry": { "type": "Point", "coordinates": [ 85.305987645265375, 27.620579508354517 ] } }, +{ "type": "Feature", "properties": { "im": 1.471257 }, "geometry": { "type": "Point", "coordinates": [ 85.305110102125667, 27.621832361666076 ] } }, +{ "type": "Feature", "properties": { "im": 1.37903 }, "geometry": { "type": "Point", "coordinates": [ 85.305247046212571, 27.626888327231331 ] } }, +{ "type": "Feature", "properties": { "im": 1.711706 }, "geometry": { "type": "Point", "coordinates": [ 85.305835102589981, 27.616534207699541 ] } }, +{ "type": "Feature", "properties": { "im": 0.475893 }, "geometry": { "type": "Point", "coordinates": [ 85.324280842487198, 27.616758257463381 ] } }, +{ "type": "Feature", "properties": { "im": 0.69337 }, "geometry": { "type": "Point", "coordinates": [ 85.322204576302681, 27.626336367577597 ] } }, +{ "type": "Feature", "properties": { "im": 0.579872 }, "geometry": { "type": "Point", "coordinates": [ 85.322074556185186, 27.620775044955469 ] } }, +{ "type": "Feature", "properties": { "im": 0.674575 }, "geometry": { "type": "Point", "coordinates": [ 85.324923517606976, 27.630918120662635 ] } }, +{ "type": "Feature", "properties": { "im": 1.065274 }, "geometry": { "type": "Point", "coordinates": [ 85.31815416916821, 27.638670357670822 ] } }, +{ "type": "Feature", "properties": { "im": 0.512876 }, "geometry": { "type": "Point", "coordinates": [ 85.323403534109843, 27.618011237843564 ] } }, +{ "type": "Feature", "properties": { "im": 0.590775 }, "geometry": { "type": "Point", "coordinates": [ 85.320768643554374, 27.622022820493385 ] } }, +{ "type": "Feature", "properties": { "im": 1.565237 }, "geometry": { "type": "Point", "coordinates": [ 85.317759333366894, 27.636391131587814 ] } }, +{ "type": "Feature", "properties": { "im": 1.78581 }, "geometry": { "type": "Point", "coordinates": [ 85.305484878708711, 27.639274235979297 ] } }, +{ "type": "Feature", "properties": { "im": 0.463975 }, "geometry": { "type": "Point", "coordinates": [ 85.318998397066991, 27.62553939635708 ] } }, +{ "type": "Feature", "properties": { "im": 0.715105 }, "geometry": { "type": "Point", "coordinates": [ 85.324950449849865, 27.629149434764454 ] } }, +{ "type": "Feature", "properties": { "im": 2.036697 }, "geometry": { "type": "Point", "coordinates": [ 85.313331970745111, 27.631283046964416 ] } }, +{ "type": "Feature", "properties": { "im": 1.732726 }, "geometry": { "type": "Point", "coordinates": [ 85.316499593334044, 27.634606836238206 ] } }, +{ "type": "Feature", "properties": { "im": 0.602732 }, "geometry": { "type": "Point", "coordinates": [ 85.320526869640688, 27.623788903763174 ] } }, +{ "type": "Feature", "properties": { "im": 1.295083 }, "geometry": { "type": "Point", "coordinates": [ 85.317284337596845, 27.639417948483874 ] } }, +{ "type": "Feature", "properties": { "im": 2.241019 }, "geometry": { "type": "Point", "coordinates": [ 85.307676618246006, 27.622369129727602 ] } }, +{ "type": "Feature", "properties": { "im": 0.512151 }, "geometry": { "type": "Point", "coordinates": [ 85.317844350914839, 27.630832427717568 ] } }, +{ "type": "Feature", "properties": { "im": 0.70141 }, "geometry": { "type": "Point", "coordinates": [ 85.324992766987847, 27.626370070249727 ] } }, +{ "type": "Feature", "properties": { "im": 1.840355 }, "geometry": { "type": "Point", "coordinates": [ 85.307462820886059, 27.636265824596293 ] } }, +{ "type": "Feature", "properties": { "im": 1.297041 }, "geometry": { "type": "Point", "coordinates": [ 85.305145833010343, 27.63345766500726 ] } }, +{ "type": "Feature", "properties": { "im": 0.453008 }, "geometry": { "type": "Point", "coordinates": [ 85.318213642271644, 27.62072828567165 ] } }, +{ "type": "Feature", "properties": { "im": 2.178161 }, "geometry": { "type": "Point", "coordinates": [ 85.315575603941113, 27.638891769226994 ] } }, +{ "type": "Feature", "properties": { "im": 0.684939 }, "geometry": { "type": "Point", "coordinates": [ 85.322675509343014, 27.623562189199614 ] } }, +{ "type": "Feature", "properties": { "im": 0.637208 }, "geometry": { "type": "Point", "coordinates": [ 85.324804216743502, 27.63875086678269 ] } }, +{ "type": "Feature", "properties": { "im": 1.21057 }, "geometry": { "type": "Point", "coordinates": [ 85.307641643697124, 27.624643136352724 ] } }, +{ "type": "Feature", "properties": { "im": 0.658576 }, "geometry": { "type": "Point", "coordinates": [ 85.319835888029118, 27.640965184264203 ] } }, +{ "type": "Feature", "properties": { "im": 1.808595 }, "geometry": { "type": "Point", "coordinates": [ 85.315422720475127, 27.634846472463821 ] } }, +{ "type": "Feature", "properties": { "im": 0.658748 }, "geometry": { "type": "Point", "coordinates": [ 85.322476134923505, 27.622548914170164 ] } }, +{ "type": "Feature", "properties": { "im": 0.475175 }, "geometry": { "type": "Point", "coordinates": [ 85.319217042776529, 27.625289330684542 ] } }, +{ "type": "Feature", "properties": { "im": 2.482069 }, "geometry": { "type": "Point", "coordinates": [ 85.309598822855548, 27.622897999884589 ] } }, +{ "type": "Feature", "properties": { "im": 1.506435 }, "geometry": { "type": "Point", "coordinates": [ 85.312980887038506, 27.626224475379331 ] } }, +{ "type": "Feature", "properties": { "im": 2.047974 }, "geometry": { "type": "Point", "coordinates": [ 85.309454924111364, 27.618347375124792 ] } }, +{ "type": "Feature", "properties": { "im": 0.563308 }, "geometry": { "type": "Point", "coordinates": [ 85.320784066048461, 27.621012143754442 ] } }, +{ "type": "Feature", "properties": { "im": 0.5816 }, "geometry": { "type": "Point", "coordinates": [ 85.320699232391817, 27.626570863897566 ] } }, +{ "type": "Feature", "properties": { "im": 0.635346 }, "geometry": { "type": "Point", "coordinates": [ 85.325035078066676, 27.623590704561202 ] } }, +{ "type": "Feature", "properties": { "im": 1.331853 }, "geometry": { "type": "Point", "coordinates": [ 85.304697773814382, 27.634715758943372 ] } }, +{ "type": "Feature", "properties": { "im": 0.446317 }, "geometry": { "type": "Point", "coordinates": [ 85.317815999943051, 27.618701738118407 ] } }, +{ "type": "Feature", "properties": { "im": 0.599895 }, "geometry": { "type": "Point", "coordinates": [ 85.324854251998701, 27.635466167932108 ] } }, +{ "type": "Feature", "properties": { "im": 1.630302 }, "geometry": { "type": "Point", "coordinates": [ 85.305945640837209, 27.637258153109439 ] } }, +{ "type": "Feature", "properties": { "im": 0.67157 }, "geometry": { "type": "Point", "coordinates": [ 85.320494760609762, 27.639962306773828 ] } }, +{ "type": "Feature", "properties": { "im": 3.049134 }, "geometry": { "type": "Point", "coordinates": [ 85.31364534104803, 27.638868304629341 ] } }, +{ "type": "Feature", "properties": { "im": 1.188505 }, "geometry": { "type": "Point", "coordinates": [ 85.318169626582176, 27.637659684716073 ] } }, +{ "type": "Feature", "properties": { "im": 0.561892 }, "geometry": { "type": "Point", "coordinates": [ 85.314755203484012, 27.622455317377792 ] } }, +{ "type": "Feature", "properties": { "im": 0.603938 }, "geometry": { "type": "Point", "coordinates": [ 85.323773534120278, 27.635958538527785 ] } }, +{ "type": "Feature", "properties": { "im": 2.766808 }, "geometry": { "type": "Point", "coordinates": [ 85.308577566989825, 27.633499568193308 ] } }, +{ "type": "Feature", "properties": { "im": 1.049904 }, "geometry": { "type": "Point", "coordinates": [ 85.304439531108372, 27.623593168100662 ] } }, +{ "type": "Feature", "properties": { "im": 0.623267 }, "geometry": { "type": "Point", "coordinates": [ 85.320939999035247, 27.624804768888364 ] } }, +{ "type": "Feature", "properties": { "im": 2.775899 }, "geometry": { "type": "Point", "coordinates": [ 85.313610465411116, 27.641142312861291 ] } }, +{ "type": "Feature", "properties": { "im": 1.476548 }, "geometry": { "type": "Point", "coordinates": [ 85.306866095188454, 27.633225966452123 ] } }, +{ "type": "Feature", "properties": { "im": 0.712964 }, "geometry": { "type": "Point", "coordinates": [ 85.322629286552498, 27.626594220781261 ] } }, +{ "type": "Feature", "properties": { "im": 3.237455 }, "geometry": { "type": "Point", "coordinates": [ 85.308783432763164, 27.620108195130992 ] } }, +{ "type": "Feature", "properties": { "im": 0.467678 }, "geometry": { "type": "Point", "coordinates": [ 85.317048027274552, 27.626779320147843 ] } }, +{ "type": "Feature", "properties": { "im": 0.521844 }, "geometry": { "type": "Point", "coordinates": [ 85.315811605467786, 27.623479010748934 ] } }, +{ "type": "Feature", "properties": { "im": 0.849784 }, "geometry": { "type": "Point", "coordinates": [ 85.314708764673426, 27.625487337089165 ] } }, +{ "type": "Feature", "properties": { "im": 1.110042 }, "geometry": { "type": "Point", "coordinates": [ 85.318789864154652, 27.639183497802485 ] } }, +{ "type": "Feature", "properties": { "im": 0.423502 }, "geometry": { "type": "Point", "coordinates": [ 85.315023132330623, 27.618920556054494 ] } }, +{ "type": "Feature", "properties": { "im": 3.426365 }, "geometry": { "type": "Point", "coordinates": [ 85.311289338744515, 27.638586913665826 ] } }, +{ "type": "Feature", "properties": { "im": 1.549382 }, "geometry": { "type": "Point", "coordinates": [ 85.308492071551072, 27.639058243339303 ] } }, +{ "type": "Feature", "properties": { "im": 2.294225 }, "geometry": { "type": "Point", "coordinates": [ 85.309981812309232, 27.625935246648659 ] } }, +{ "type": "Feature", "properties": { "im": 0.559488 }, "geometry": { "type": "Point", "coordinates": [ 85.323590551801104, 27.633934601304258 ] } }, +{ "type": "Feature", "properties": { "im": 1.643371 }, "geometry": { "type": "Point", "coordinates": [ 85.305914501096439, 27.639279486219234 ] } }, +{ "type": "Feature", "properties": { "im": 0.501798 }, "geometry": { "type": "Point", "coordinates": [ 85.319537533321338, 27.632369249097231 ] } }, +{ "type": "Feature", "properties": { "im": 2.806536 }, "geometry": { "type": "Point", "coordinates": [ 85.311768372150041, 27.635307456658229 ] } }, +{ "type": "Feature", "properties": { "im": 0.56794 }, "geometry": { "type": "Point", "coordinates": [ 85.321216461945369, 27.620764661919708 ] } }, +{ "type": "Feature", "properties": { "im": 2.099681 }, "geometry": { "type": "Point", "coordinates": [ 85.308394867085141, 27.631475622868717 ] } }, +{ "type": "Feature", "properties": { "im": 1.627834 }, "geometry": { "type": "Point", "coordinates": [ 85.31671826369174, 27.634356775874515 ] } }, +{ "type": "Feature", "properties": { "im": 0.664558 }, "geometry": { "type": "Point", "coordinates": [ 85.321584353055101, 27.624812568185337 ] } }, +{ "type": "Feature", "properties": { "im": 2.206796 }, "geometry": { "type": "Point", "coordinates": [ 85.310348281671338, 27.629983149834832 ] } }, +{ "type": "Feature", "properties": { "im": 2.833705 }, "geometry": { "type": "Point", "coordinates": [ 85.312112661387658, 27.64087137084136 ] } }, +{ "type": "Feature", "properties": { "im": 2.020167 }, "geometry": { "type": "Point", "coordinates": [ 85.308920548237253, 27.62516416573083 ] } }, +{ "type": "Feature", "properties": { "im": 0.991071 }, "geometry": { "type": "Point", "coordinates": [ 85.312632683741185, 27.620913220349561 ] } }, +{ "type": "Feature", "properties": { "im": 2.733828 }, "geometry": { "type": "Point", "coordinates": [ 85.309697149322488, 27.630480644202198 ] } }, +{ "type": "Feature", "properties": { "im": 1.263808 }, "geometry": { "type": "Point", "coordinates": [ 85.306007910592101, 27.633215485024682 ] } }, +{ "type": "Feature", "properties": { "im": 0.573085 }, "geometry": { "type": "Point", "coordinates": [ 85.319498928365903, 27.634895934898047 ] } }, +{ "type": "Feature", "properties": { "im": 1.022562 }, "geometry": { "type": "Point", "coordinates": [ 85.317483685636759, 27.64043122785521 ] } }, +{ "type": "Feature", "properties": { "im": 1.523476 }, "geometry": { "type": "Point", "coordinates": [ 85.307079881505928, 27.633228576702347 ] } }, +{ "type": "Feature", "properties": { "im": 0.538454 }, "geometry": { "type": "Point", "coordinates": [ 85.313759751251069, 27.617388910858182 ] } }, +{ "type": "Feature", "properties": { "im": 1.549325 }, "geometry": { "type": "Point", "coordinates": [ 85.305340443383983, 27.620824317302969 ] } }, +{ "type": "Feature", "properties": { "im": 0.49334 }, "geometry": { "type": "Point", "coordinates": [ 85.317839170781582, 27.617185724528007 ] } }, +{ "type": "Feature", "properties": { "im": 0.69328 }, "geometry": { "type": "Point", "coordinates": [ 85.315542669391547, 27.627013759701899 ] } }, +{ "type": "Feature", "properties": { "im": 2.413851 }, "geometry": { "type": "Point", "coordinates": [ 85.310028382220608, 27.622903234533602 ] } }, +{ "type": "Feature", "properties": { "im": 0.566849 }, "geometry": { "type": "Point", "coordinates": [ 85.324881190552574, 27.63369748325642 ] } }, +{ "type": "Feature", "properties": { "im": 2.808804 }, "geometry": { "type": "Point", "coordinates": [ 85.311515788149052, 27.63783152779034 ] } }, +{ "type": "Feature", "properties": { "im": 0.47141 }, "geometry": { "type": "Point", "coordinates": [ 85.317504650621359, 27.62501585221678 ] } }, +{ "type": "Feature", "properties": { "im": 1.423037 }, "geometry": { "type": "Point", "coordinates": [ 85.304775657898603, 27.629662424866236 ] } }, +{ "type": "Feature", "properties": { "im": 3.219284 }, "geometry": { "type": "Point", "coordinates": [ 85.312120418674908, 27.640366036117655 ] } }, +{ "type": "Feature", "properties": { "im": 1.868263 }, "geometry": { "type": "Point", "coordinates": [ 85.307466709477112, 27.636013157679095 ] } }, +{ "type": "Feature", "properties": { "im": 1.739103 }, "geometry": { "type": "Point", "coordinates": [ 85.313749943449608, 27.632046275214378 ] } }, +{ "type": "Feature", "properties": { "im": 0.614164 }, "geometry": { "type": "Point", "coordinates": [ 85.321514967386705, 27.629360611666343 ] } }, +{ "type": "Feature", "properties": { "im": 2.626086 }, "geometry": { "type": "Point", "coordinates": [ 85.313504152079673, 27.634065005588013 ] } }, +{ "type": "Feature", "properties": { "im": 0.645879 }, "geometry": { "type": "Point", "coordinates": [ 85.320260646912871, 27.641223046466383 ] } }, +{ "type": "Feature", "properties": { "im": 0.457012 }, "geometry": { "type": "Point", "coordinates": [ 85.317125318103635, 27.621725948035706 ] } }, +{ "type": "Feature", "properties": { "im": 2.56606 }, "geometry": { "type": "Point", "coordinates": [ 85.311491041368711, 27.625448199485657 ] } }, +{ "type": "Feature", "properties": { "im": 3.654241 }, "geometry": { "type": "Point", "coordinates": [ 85.307731014955479, 27.618831784525252 ] } }, +{ "type": "Feature", "properties": { "im": 0.891777 }, "geometry": { "type": "Point", "coordinates": [ 85.31790843660481, 27.640689096949114 ] } }, +{ "type": "Feature", "properties": { "im": 1.431949 }, "geometry": { "type": "Point", "coordinates": [ 85.304470677216798, 27.621571831965962 ] } }, +{ "type": "Feature", "properties": { "im": 0.967459 }, "geometry": { "type": "Point", "coordinates": [ 85.308246128566211, 27.627177658959432 ] } }, +{ "type": "Feature", "properties": { "im": 2.70083 }, "geometry": { "type": "Point", "coordinates": [ 85.310999408173799, 27.629485652111658 ] } }, +{ "type": "Feature", "properties": { "im": 1.78963 }, "geometry": { "type": "Point", "coordinates": [ 85.305025110955029, 27.641290328388344 ] } }, +{ "type": "Feature", "properties": { "im": 2.755091 }, "geometry": { "type": "Point", "coordinates": [ 85.310433650440615, 27.624424462079411 ] } }, +{ "type": "Feature", "properties": { "im": 1.169244 }, "geometry": { "type": "Point", "coordinates": [ 85.316962984117538, 27.632338024987217 ] } }, +{ "type": "Feature", "properties": { "im": 0.601482 }, "geometry": { "type": "Point", "coordinates": [ 85.324839528137602, 27.622324762285892 ] } }, +{ "type": "Feature", "properties": { "im": 1.404092 }, "geometry": { "type": "Point", "coordinates": [ 85.303870197788711, 27.618784629144365 ] } }, +{ "type": "Feature", "properties": { "im": 1.631515 }, "geometry": { "type": "Point", "coordinates": [ 85.310902002000802, 27.621903016043813 ] } }, +{ "type": "Feature", "properties": { "im": 1.816742 }, "geometry": { "type": "Point", "coordinates": [ 85.315633654478717, 27.635101749999588 ] } }, +{ "type": "Feature", "properties": { "im": 1.13712 }, "geometry": { "type": "Point", "coordinates": [ 85.313475285946168, 27.621934329481078 ] } }, +{ "type": "Feature", "properties": { "im": 0.59623 }, "geometry": { "type": "Point", "coordinates": [ 85.32297412437191, 27.632158137881706 ] } }, +{ "type": "Feature", "properties": { "im": 1.360383 }, "geometry": { "type": "Point", "coordinates": [ 85.316617703513202, 27.640926145523721 ] } }, +{ "type": "Feature", "properties": { "im": 1.615954 }, "geometry": { "type": "Point", "coordinates": [ 85.30660850287137, 27.636002678998356 ] } }, +{ "type": "Feature", "properties": { "im": 0.434258 }, "geometry": { "type": "Point", "coordinates": [ 85.317593502580621, 27.619204471109711 ] } }, +{ "type": "Feature", "properties": { "im": 0.696655 }, "geometry": { "type": "Point", "coordinates": [ 85.320950382645037, 27.638198818401783 ] } }, +{ "type": "Feature", "properties": { "im": 3.075416 }, "geometry": { "type": "Point", "coordinates": [ 85.307087713621868, 27.618823934811001 ] } }, +{ "type": "Feature", "properties": { "im": 1.89287 }, "geometry": { "type": "Point", "coordinates": [ 85.312704097533199, 27.630264548797552 ] } }, +{ "type": "Feature", "properties": { "im": 0.569836 }, "geometry": { "type": "Point", "coordinates": [ 85.324662539436545, 27.633947557402639 ] } }, +{ "type": "Feature", "properties": { "im": 3.125619 }, "geometry": { "type": "Point", "coordinates": [ 85.308769055684564, 27.635018191133664 ] } }, +{ "type": "Feature", "properties": { "im": 2.093237 }, "geometry": { "type": "Point", "coordinates": [ 85.308729066928194, 27.623645541609655 ] } }, +{ "type": "Feature", "properties": { "im": 0.638433 }, "geometry": { "type": "Point", "coordinates": [ 85.324160793291512, 27.638743091085534 ] } }, +{ "type": "Feature", "properties": { "im": 1.612177 }, "geometry": { "type": "Point", "coordinates": [ 85.313577756170204, 27.629264315985075 ] } }, +{ "type": "Feature", "properties": { "im": 1.139259 }, "geometry": { "type": "Point", "coordinates": [ 85.312184768027379, 27.622171346771907 ] } }, +{ "type": "Feature", "properties": { "im": 0.48402 }, "geometry": { "type": "Point", "coordinates": [ 85.318841518420939, 27.62174676007302 ] } }, +{ "type": "Feature", "properties": { "im": 0.706495 }, "geometry": { "type": "Point", "coordinates": [ 85.323303442645411, 27.624580645548434 ] } }, +{ "type": "Feature", "properties": { "im": 0.710934 }, "geometry": { "type": "Point", "coordinates": [ 85.324985073413458, 27.626875409339718 ] } }, +{ "type": "Feature", "properties": { "im": 1.612412 }, "geometry": { "type": "Point", "coordinates": [ 85.303746043623718, 27.640769256653151 ] } }, +{ "type": "Feature", "properties": { "im": 0.514729 }, "geometry": { "type": "Point", "coordinates": [ 85.321223049701544, 27.634411389135561 ] } }, +{ "type": "Feature", "properties": { "im": 0.583952 }, "geometry": { "type": "Point", "coordinates": [ 85.315348238732284, 27.625747821528435 ] } }, +{ "type": "Feature", "properties": { "im": 0.489929 }, "geometry": { "type": "Point", "coordinates": [ 85.314192147022339, 27.61714145087436 ] } }, +{ "type": "Feature", "properties": { "im": 0.574659 }, "geometry": { "type": "Point", "coordinates": [ 85.324873494073358, 27.634202821783703 ] } }, +{ "type": "Feature", "properties": { "im": 0.544592 }, "geometry": { "type": "Point", "coordinates": [ 85.322112086663296, 27.632400425452794 ] } }, +{ "type": "Feature", "properties": { "im": 1.403161 }, "geometry": { "type": "Point", "coordinates": [ 85.305785327218359, 27.633718194334392 ] } }, +{ "type": "Feature", "properties": { "im": 1.302333 }, "geometry": { "type": "Point", "coordinates": [ 85.304034349191994, 27.622071926708873 ] } }, +{ "type": "Feature", "properties": { "im": 1.812811 }, "geometry": { "type": "Point", "coordinates": [ 85.304631556399571, 27.639011089853685 ] } }, +{ "type": "Feature", "properties": { "im": 0.50021 }, "geometry": { "type": "Point", "coordinates": [ 85.316427874610113, 27.62525550084457 ] } }, +{ "type": "Feature", "properties": { "im": 1.996286 }, "geometry": { "type": "Point", "coordinates": [ 85.311295646295164, 27.624182245224816 ] } }, +{ "type": "Feature", "properties": { "im": 2.749994 }, "geometry": { "type": "Point", "coordinates": [ 85.309654438419642, 27.633259985182402 ] } }, +{ "type": "Feature", "properties": { "im": 0.788383 }, "geometry": { "type": "Point", "coordinates": [ 85.317813438259705, 27.632853775123056 ] } }, +{ "type": "Feature", "properties": { "im": 1.7748 }, "geometry": { "type": "Point", "coordinates": [ 85.30547709129479, 27.639779569047434 ] } }, +{ "type": "Feature", "properties": { "im": 1.68981 }, "geometry": { "type": "Point", "coordinates": [ 85.305898930010116, 27.64029015254097 ] } }, +{ "type": "Feature", "properties": { "im": 0.445723 }, "geometry": { "type": "Point", "coordinates": [ 85.318225226175528, 27.619970278986383 ] } }, +{ "type": "Feature", "properties": { "im": 2.523581 }, "geometry": { "type": "Point", "coordinates": [ 85.312423402456133, 27.634557286131933 ] } }, +{ "type": "Feature", "properties": { "im": 1.30872 }, "geometry": { "type": "Point", "coordinates": [ 85.309748853604731, 27.641095286249293 ] } }, +{ "type": "Feature", "properties": { "im": 0.628205 }, "geometry": { "type": "Point", "coordinates": [ 85.324904278788111, 27.632181467441711 ] } }, +{ "type": "Feature", "properties": { "im": 2.762356 }, "geometry": { "type": "Point", "coordinates": [ 85.309865355699174, 27.633515270819096 ] } }, +{ "type": "Feature", "properties": { "im": 2.386873 }, "geometry": { "type": "Point", "coordinates": [ 85.310968371539957, 27.631506992773716 ] } }, +{ "type": "Feature", "properties": { "im": 0.707513 }, "geometry": { "type": "Point", "coordinates": [ 85.322606172449369, 27.628110236048173 ] } }, +{ "type": "Feature", "properties": { "im": 1.463443 }, "geometry": { "type": "Point", "coordinates": [ 85.305968993515009, 27.635742152869081 ] } }, +{ "type": "Feature", "properties": { "im": 1.455029 }, "geometry": { "type": "Point", "coordinates": [ 85.311541445695283, 27.622163516838445 ] } }, +{ "type": "Feature", "properties": { "im": 1.673323 }, "geometry": { "type": "Point", "coordinates": [ 85.311954485335633, 27.623179404996836 ] } }, +{ "type": "Feature", "properties": { "im": 1.48287 }, "geometry": { "type": "Point", "coordinates": [ 85.306538465034293, 27.640550680006726 ] } }, +{ "type": "Feature", "properties": { "im": 0.643177 }, "geometry": { "type": "Point", "coordinates": [ 85.324570155427196, 27.640011616270083 ] } }, +{ "type": "Feature", "properties": { "im": 0.709083 }, "geometry": { "type": "Point", "coordinates": [ 85.324571899273508, 27.625859554557636 ] } }, +{ "type": "Feature", "properties": { "im": 0.475235 }, "geometry": { "type": "Point", "coordinates": [ 85.316474265607056, 27.62222347834555 ] } }, +{ "type": "Feature", "properties": { "im": 2.497579 }, "geometry": { "type": "Point", "coordinates": [ 85.309240153366972, 27.618344757474759 ] } }, +{ "type": "Feature", "properties": { "im": 0.532142 }, "geometry": { "type": "Point", "coordinates": [ 85.313556596303101, 27.616628294727757 ] } }, +{ "type": "Feature", "properties": { "im": 0.539885 }, "geometry": { "type": "Point", "coordinates": [ 85.324652688250723, 27.620553492524259 ] } }, +{ "type": "Feature", "properties": { "im": 1.881689 }, "geometry": { "type": "Point", "coordinates": [ 85.313316473074934, 27.632293718328711 ] } }, +{ "type": "Feature", "properties": { "im": 0.47109 }, "geometry": { "type": "Point", "coordinates": [ 85.318876257306968, 27.619472739354467 ] } }, +{ "type": "Feature", "properties": { "im": 0.720175 }, "geometry": { "type": "Point", "coordinates": [ 85.324973532676296, 27.627633417901936 ] } }, +{ "type": "Feature", "properties": { "im": 2.748657 }, "geometry": { "type": "Point", "coordinates": [ 85.313859139080336, 27.638870904917439 ] } }, +{ "type": "Feature", "properties": { "im": 0.71099 }, "geometry": { "type": "Point", "coordinates": [ 85.320938808557841, 27.638956824157248 ] } }, +{ "type": "Feature", "properties": { "im": 1.133715 }, "geometry": { "type": "Point", "coordinates": [ 85.306058495219759, 27.629930815374809 ] } }, +{ "type": "Feature", "properties": { "im": 0.498945 }, "geometry": { "type": "Point", "coordinates": [ 85.316037987278946, 27.622723613141122 ] } }, +{ "type": "Feature", "properties": { "im": 0.593823 }, "geometry": { "type": "Point", "coordinates": [ 85.323781236225599, 27.635453200413405 ] } }, +{ "type": "Feature", "properties": { "im": 0.498314 }, "geometry": { "type": "Point", "coordinates": [ 85.319837234950413, 27.626813139230311 ] } }, +{ "type": "Feature", "properties": { "im": 0.908875 }, "geometry": { "type": "Point", "coordinates": [ 85.312422795415202, 27.620657951597607 ] } }, +{ "type": "Feature", "properties": { "im": 1.127772 }, "geometry": { "type": "Point", "coordinates": [ 85.318590505586954, 27.638170219701053 ] } }, +{ "type": "Feature", "properties": { "im": 1.936161 }, "geometry": { "type": "Point", "coordinates": [ 85.317096593097858, 27.637646664534149 ] } }, +{ "type": "Feature", "properties": { "im": 1.155287 }, "geometry": { "type": "Point", "coordinates": [ 85.307200416022624, 27.625395895876533 ] } }, +{ "type": "Feature", "properties": { "im": 0.603026 }, "geometry": { "type": "Point", "coordinates": [ 85.319284124210938, 27.634893331364626 ] } }, +{ "type": "Feature", "properties": { "im": 1.529368 }, "geometry": { "type": "Point", "coordinates": [ 85.314381708045161, 27.63281210134204 ] } }, +{ "type": "Feature", "properties": { "im": 0.662915 }, "geometry": { "type": "Point", "coordinates": [ 85.325019692920847, 27.6246013831292 ] } }, +{ "type": "Feature", "properties": { "im": 0.493235 }, "geometry": { "type": "Point", "coordinates": [ 85.31904857754644, 27.622254701041861 ] } }, +{ "type": "Feature", "properties": { "im": 1.361562 }, "geometry": { "type": "Point", "coordinates": [ 85.30430712395524, 27.632183839738257 ] } }, +{ "type": "Feature", "properties": { "im": 1.462929 }, "geometry": { "type": "Point", "coordinates": [ 85.304330494181869, 27.630667839676963 ] } }, +{ "type": "Feature", "properties": { "im": 3.241725 }, "geometry": { "type": "Point", "coordinates": [ 85.312771601766812, 27.639868533167483 ] } }, +{ "type": "Feature", "properties": { "im": 0.819667 }, "geometry": { "type": "Point", "coordinates": [ 85.314918667084996, 27.625742602857819 ] } }, +{ "type": "Feature", "properties": { "im": 0.471589 }, "geometry": { "type": "Point", "coordinates": [ 85.314379828053987, 27.618912740126131 ] } }, +{ "type": "Feature", "properties": { "im": 0.852979 }, "geometry": { "type": "Point", "coordinates": [ 85.30780979335897, 27.627677764971139 ] } }, +{ "type": "Feature", "properties": { "im": 0.717682 }, "geometry": { "type": "Point", "coordinates": [ 85.324084590435049, 27.629644405287287 ] } }, +{ "type": "Feature", "properties": { "im": 1.471023 }, "geometry": { "type": "Point", "coordinates": [ 85.3058195457957, 27.617544877293479 ] } }, +{ "type": "Feature", "properties": { "im": 1.953208 }, "geometry": { "type": "Point", "coordinates": [ 85.311893967168885, 27.641121422669404 ] } }, +{ "type": "Feature", "properties": { "im": 0.497689 }, "geometry": { "type": "Point", "coordinates": [ 85.320805015786419, 27.633648180964112 ] } }, +{ "type": "Feature", "properties": { "im": 0.627546 }, "geometry": { "type": "Point", "coordinates": [ 85.32482731099023, 27.637234852132352 ] } }, +{ "type": "Feature", "properties": { "im": 2.884074 }, "geometry": { "type": "Point", "coordinates": [ 85.308336576107365, 27.635265629907558 ] } }, +{ "type": "Feature", "properties": { "im": 2.677435 }, "geometry": { "type": "Point", "coordinates": [ 85.306650395557128, 27.619324026633063 ] } }, +{ "type": "Feature", "properties": { "im": 1.377389 }, "geometry": { "type": "Point", "coordinates": [ 85.305535765657297, 27.622090277208535 ] } }, +{ "type": "Feature", "properties": { "im": 2.417799 }, "geometry": { "type": "Point", "coordinates": [ 85.316036180884879, 27.636875644378719 ] } }, +{ "type": "Feature", "properties": { "im": 1.158105 }, "geometry": { "type": "Point", "coordinates": [ 85.306124631433548, 27.625635475663618 ] } }, +{ "type": "Feature", "properties": { "im": 0.696677 }, "geometry": { "type": "Point", "coordinates": [ 85.324996613699923, 27.626117400690184 ] } }, +{ "type": "Feature", "properties": { "im": 1.306994 }, "geometry": { "type": "Point", "coordinates": [ 85.30398761580156, 27.625103929772845 ] } }, +{ "type": "Feature", "properties": { "im": 1.334561 }, "geometry": { "type": "Point", "coordinates": [ 85.316402887900693, 27.640923537006103 ] } }, +{ "type": "Feature", "properties": { "im": 0.620052 }, "geometry": { "type": "Point", "coordinates": [ 85.324835008671698, 27.636729513837942 ] } }, +{ "type": "Feature", "properties": { "im": 1.190332 }, "geometry": { "type": "Point", "coordinates": [ 85.306281068725042, 27.629428104964735 ] } }, +{ "type": "Feature", "properties": { "im": 1.622179 }, "geometry": { "type": "Point", "coordinates": [ 85.310722131721576, 27.619626389217803 ] } }, +{ "type": "Feature", "properties": { "im": 2.410483 }, "geometry": { "type": "Point", "coordinates": [ 85.310016740424786, 27.623661237693451 ] } }, +{ "type": "Feature", "properties": { "im": 0.512007 }, "geometry": { "type": "Point", "coordinates": [ 85.319738198101533, 27.619230467289231 ] } }, +{ "type": "Feature", "properties": { "im": 1.041792 }, "geometry": { "type": "Point", "coordinates": [ 85.306553187574991, 27.625640709175428 ] } }, +{ "type": "Feature", "properties": { "im": 1.661932 }, "geometry": { "type": "Point", "coordinates": [ 85.308908897694252, 27.625922168209275 ] } }, +{ "type": "Feature", "properties": { "im": 1.51114 }, "geometry": { "type": "Point", "coordinates": [ 85.303877985644363, 27.61827929496803 ] } }, +{ "type": "Feature", "properties": { "im": 1.641039 }, "geometry": { "type": "Point", "coordinates": [ 85.31713912392371, 27.634867314637674 ] } }, +{ "type": "Feature", "properties": { "im": 0.678445 }, "geometry": { "type": "Point", "coordinates": [ 85.32258305654085, 27.629626250965796 ] } }, +{ "type": "Feature", "properties": { "im": 0.667054 }, "geometry": { "type": "Point", "coordinates": [ 85.32475802283912, 27.641782895035334 ] } }, +{ "type": "Feature", "properties": { "im": 3.719467 }, "geometry": { "type": "Point", "coordinates": [ 85.307297585853433, 27.619079210993444 ] } }, +{ "type": "Feature", "properties": { "im": 1.919322 }, "geometry": { "type": "Point", "coordinates": [ 85.310247041951556, 27.62265318359238 ] } }, +{ "type": "Feature", "properties": { "im": 4.035757 }, "geometry": { "type": "Point", "coordinates": [ 85.308155660796828, 27.619089679526901 ] } }, +{ "type": "Feature", "properties": { "im": 0.513789 }, "geometry": { "type": "Point", "coordinates": [ 85.316385343162878, 27.62803485357426 ] } }, +{ "type": "Feature", "properties": { "im": 0.422206 }, "geometry": { "type": "Point", "coordinates": [ 85.317156228801039, 27.619704598103944 ] } }, +{ "type": "Feature", "properties": { "im": 1.877313 }, "geometry": { "type": "Point", "coordinates": [ 85.305075742263469, 27.638005664236175 ] } }, +{ "type": "Feature", "properties": { "im": 0.818746 }, "geometry": { "type": "Point", "coordinates": [ 85.318648450477369, 27.63438019419576 ] } }, +{ "type": "Feature", "properties": { "im": 1.277556 }, "geometry": { "type": "Point", "coordinates": [ 85.304705563135244, 27.634210425710513 ] } }, +{ "type": "Feature", "properties": { "im": 0.654199 }, "geometry": { "type": "Point", "coordinates": [ 85.322011856942751, 27.638969815176669 ] } }, +{ "type": "Feature", "properties": { "im": 2.355478 }, "geometry": { "type": "Point", "coordinates": [ 85.309280223950879, 27.629717417441135 ] } }, +{ "type": "Feature", "properties": { "im": 1.06174 }, "geometry": { "type": "Point", "coordinates": [ 85.305309314235728, 27.622845654567296 ] } }, +{ "type": "Feature", "properties": { "im": 3.459123 }, "geometry": { "type": "Point", "coordinates": [ 85.312587807098467, 27.637844578899379 ] } }, +{ "type": "Feature", "properties": { "im": 1.819925 }, "geometry": { "type": "Point", "coordinates": [ 85.306094280687049, 27.641556110098097 ] } }, +{ "type": "Feature", "properties": { "im": 2.836959 }, "geometry": { "type": "Point", "coordinates": [ 85.309255679287659, 27.61733408620707 ] } }, +{ "type": "Feature", "properties": { "im": 1.386369 }, "geometry": { "type": "Point", "coordinates": [ 85.304497927400888, 27.619803162338243 ] } }, +{ "type": "Feature", "properties": { "im": 1.257811 }, "geometry": { "type": "Point", "coordinates": [ 85.313038995733166, 27.622434454302869 ] } }, +{ "type": "Feature", "properties": { "im": 0.445441 }, "geometry": { "type": "Point", "coordinates": [ 85.317917755570349, 27.626031725140013 ] } }, +{ "type": "Feature", "properties": { "im": 0.620052 }, "geometry": { "type": "Point", "coordinates": [ 85.324835008671698, 27.636729513837942 ] } }, +{ "type": "Feature", "properties": { "im": 0.494181 }, "geometry": { "type": "Point", "coordinates": [ 85.319990286507206, 27.630858442330531 ] } }, +{ "type": "Feature", "properties": { "im": 0.967091 }, "geometry": { "type": "Point", "coordinates": [ 85.306795190232222, 27.623874660923601 ] } }, +{ "type": "Feature", "properties": { "im": 1.589345 }, "geometry": { "type": "Point", "coordinates": [ 85.30564058442323, 27.629167566456424 ] } }, +{ "type": "Feature", "properties": { "im": 0.509857 }, "geometry": { "type": "Point", "coordinates": [ 85.319527282594791, 27.618975196369774 ] } }, +{ "type": "Feature", "properties": { "im": 1.533239 }, "geometry": { "type": "Point", "coordinates": [ 85.30477955157059, 27.629409758060394 ] } }, +{ "type": "Feature", "properties": { "im": 0.683723 }, "geometry": { "type": "Point", "coordinates": [ 85.321997495709496, 27.62582843061999 ] } }, +{ "type": "Feature", "properties": { "im": 1.643825 }, "geometry": { "type": "Point", "coordinates": [ 85.306160448130697, 27.637260777506373 ] } }, +{ "type": "Feature", "properties": { "im": 0.422966 }, "geometry": { "type": "Point", "coordinates": [ 85.317144637666772, 27.620462604401133 ] } }, +{ "type": "Feature", "properties": { "im": 0.577175 }, "geometry": { "type": "Point", "coordinates": [ 85.324885038717056, 27.633444813978226 ] } }, +{ "type": "Feature", "properties": { "im": 1.459577 }, "geometry": { "type": "Point", "coordinates": [ 85.309330878486151, 27.640332046590256 ] } }, +{ "type": "Feature", "properties": { "im": 1.582195 }, "geometry": { "type": "Point", "coordinates": [ 85.305874830937938, 27.627906855697706 ] } }, +{ "type": "Feature", "properties": { "im": 2.462602 }, "geometry": { "type": "Point", "coordinates": [ 85.313726701648292, 27.633562282362732 ] } }, +{ "type": "Feature", "properties": { "im": 1.483635 }, "geometry": { "type": "Point", "coordinates": [ 85.308695223756416, 27.639818864824786 ] } }, +{ "type": "Feature", "properties": { "im": 1.643022 }, "geometry": { "type": "Point", "coordinates": [ 85.314166908524854, 27.632809490064098 ] } }, +{ "type": "Feature", "properties": { "im": 0.565106 }, "geometry": { "type": "Point", "coordinates": [ 85.320113747421061, 27.622773037603462 ] } }, +{ "type": "Feature", "properties": { "im": 1.488102 }, "geometry": { "type": "Point", "coordinates": [ 85.304973863827584, 27.630675705267315 ] } }, +{ "type": "Feature", "properties": { "im": 1.109147 }, "geometry": { "type": "Point", "coordinates": [ 85.312465413591809, 27.617878601592629 ] } }, +{ "type": "Feature", "properties": { "im": 0.489911 }, "geometry": { "type": "Point", "coordinates": [ 85.324691151430017, 27.618026794814412 ] } }, +{ "type": "Feature", "properties": { "im": 1.37488 }, "geometry": { "type": "Point", "coordinates": [ 85.308222815743221, 27.628693662859781 ] } }, +{ "type": "Feature", "properties": { "im": 0.497317 }, "geometry": { "type": "Point", "coordinates": [ 85.313978391165762, 27.617138852974566 ] } }, +{ "type": "Feature", "properties": { "im": 0.500934 }, "geometry": { "type": "Point", "coordinates": [ 85.315398528588403, 27.622463132485137 ] } }, +{ "type": "Feature", "properties": { "im": 0.637208 }, "geometry": { "type": "Point", "coordinates": [ 85.324804216743502, 27.63875086678269 ] } }, +{ "type": "Feature", "properties": { "im": 1.735002 }, "geometry": { "type": "Point", "coordinates": [ 85.310407816376454, 27.640092460868019 ] } }, +{ "type": "Feature", "properties": { "im": 2.050209 }, "geometry": { "type": "Point", "coordinates": [ 85.306638732269647, 27.620082028858594 ] } }, +{ "type": "Feature", "properties": { "im": 1.545813 }, "geometry": { "type": "Point", "coordinates": [ 85.312977012722087, 27.626477143373439 ] } }, +{ "type": "Feature", "properties": { "im": 0.644265 }, "geometry": { "type": "Point", "coordinates": [ 85.320126890292698, 27.635914405610023 ] } }, +{ "type": "Feature", "properties": { "im": 0.484172 }, "geometry": { "type": "Point", "coordinates": [ 85.324694997472534, 27.617774124990081 ] } }, +{ "type": "Feature", "properties": { "im": 0.591114 }, "geometry": { "type": "Point", "coordinates": [ 85.321096948637077, 27.628597404605426 ] } }, +{ "type": "Feature", "properties": { "im": 2.471389 }, "geometry": { "type": "Point", "coordinates": [ 85.30940058391694, 27.621884723730101 ] } }, +{ "type": "Feature", "properties": { "im": 0.501656 }, "geometry": { "type": "Point", "coordinates": [ 85.316447205072905, 27.623992158306489 ] } }, +{ "type": "Feature", "properties": { "im": 0.604119 }, "geometry": { "type": "Point", "coordinates": [ 85.324850403433487, 27.635718837132686 ] } }, +{ "type": "Feature", "properties": { "im": 3.51462 }, "geometry": { "type": "Point", "coordinates": [ 85.308791198502192, 27.619602859764409 ] } }, +{ "type": "Feature", "properties": { "im": 1.498786 }, "geometry": { "type": "Point", "coordinates": [ 85.316511195871541, 27.633848831738316 ] } }, +{ "type": "Feature", "properties": { "im": 0.684157 }, "geometry": { "type": "Point", "coordinates": [ 85.319621071984614, 27.640962580728281 ] } }, +{ "type": "Feature", "properties": { "im": 1.892559 }, "geometry": { "type": "Point", "coordinates": [ 85.30914309804281, 27.624661449378415 ] } }, +{ "type": "Feature", "properties": { "im": 0.687245 }, "geometry": { "type": "Point", "coordinates": [ 85.324498785451468, 27.630660273663398 ] } }, +{ "type": "Feature", "properties": { "im": 0.64877 }, "geometry": { "type": "Point", "coordinates": [ 85.324129986342356, 27.640764442744729 ] } }, +{ "type": "Feature", "properties": { "im": 1.081171 }, "geometry": { "type": "Point", "coordinates": [ 85.317173917343041, 27.632593300212339 ] } }, +{ "type": "Feature", "properties": { "im": 1.819925 }, "geometry": { "type": "Point", "coordinates": [ 85.306094280687049, 27.641556110098097 ] } }, +{ "type": "Feature", "properties": { "im": 0.815236 }, "geometry": { "type": "Point", "coordinates": [ 85.319479624003762, 27.636159277434491 ] } }, +{ "type": "Feature", "properties": { "im": 3.127946 }, "geometry": { "type": "Point", "coordinates": [ 85.310843821028925, 27.625693033227282 ] } }, +{ "type": "Feature", "properties": { "im": 1.713336 }, "geometry": { "type": "Point", "coordinates": [ 85.316051656580868, 27.63586497226467 ] } }, +{ "type": "Feature", "properties": { "im": 0.59083 }, "geometry": { "type": "Point", "coordinates": [ 85.321296318086766, 27.629610680695304 ] } }, +{ "type": "Feature", "properties": { "im": 3.262492 }, "geometry": { "type": "Point", "coordinates": [ 85.308608503318382, 27.617578911699535 ] } }, +{ "type": "Feature", "properties": { "im": 0.635892 }, "geometry": { "type": "Point", "coordinates": [ 85.324811915026146, 27.638245528604727 ] } }, +{ "type": "Feature", "properties": { "im": 2.572973 }, "geometry": { "type": "Point", "coordinates": [ 85.315391758058254, 27.63686781617826 ] } }, +{ "type": "Feature", "properties": { "im": 1.474788 }, "geometry": { "type": "Point", "coordinates": [ 85.313593249448729, 27.628253644043124 ] } }, +{ "type": "Feature", "properties": { "im": 0.727598 }, "geometry": { "type": "Point", "coordinates": [ 85.318863253560181, 27.6343827986693 ] } }, +{ "type": "Feature", "properties": { "im": 1.745675 }, "geometry": { "type": "Point", "coordinates": [ 85.30793417963001, 27.633491718581759 ] } }, +{ "type": "Feature", "properties": { "im": 1.006151 }, "geometry": { "type": "Point", "coordinates": [ 85.311626725894087, 27.61660481939041 ] } }, +{ "type": "Feature", "properties": { "im": 0.674493 }, "geometry": { "type": "Point", "coordinates": [ 85.322683212439429, 27.623056850466849 ] } }, +{ "type": "Feature", "properties": { "im": 0.513673 }, "geometry": { "type": "Point", "coordinates": [ 85.320637519925214, 27.630613566506426 ] } }, +{ "type": "Feature", "properties": { "im": 0.937166 }, "geometry": { "type": "Point", "coordinates": [ 85.312430544628555, 27.620152615320418 ] } }, +{ "type": "Feature", "properties": { "im": 0.710715 }, "geometry": { "type": "Point", "coordinates": [ 85.314934145734725, 27.624731929703795 ] } }, +{ "type": "Feature", "properties": { "im": 0.675429 }, "geometry": { "type": "Point", "coordinates": [ 85.321794270807843, 27.625067824219641 ] } }, +{ "type": "Feature", "properties": { "im": 1.9051 }, "geometry": { "type": "Point", "coordinates": [ 85.304857038731271, 27.638255704597778 ] } }, +{ "type": "Feature", "properties": { "im": 2.775402 }, "geometry": { "type": "Point", "coordinates": [ 85.308335477521183, 27.621366307436318 ] } }, +{ "type": "Feature", "properties": { "im": 2.894412 }, "geometry": { "type": "Point", "coordinates": [ 85.307531785523707, 27.617818493869347 ] } }, +{ "type": "Feature", "properties": { "im": 4.159454 }, "geometry": { "type": "Point", "coordinates": [ 85.313453780896836, 27.637349685928406 ] } }, +{ "type": "Feature", "properties": { "im": 1.837095 }, "geometry": { "type": "Point", "coordinates": [ 85.305048480315747, 27.63977432975291 ] } }, +{ "type": "Feature", "properties": { "im": 0.592278 }, "geometry": { "type": "Point", "coordinates": [ 85.318870977705018, 27.633877461714601 ] } }, +{ "type": "Feature", "properties": { "im": 0.59303 }, "geometry": { "type": "Point", "coordinates": [ 85.314957362198129, 27.623215919681581 ] } }, +{ "type": "Feature", "properties": { "im": 0.635892 }, "geometry": { "type": "Point", "coordinates": [ 85.324811915026146, 27.638245528604727 ] } }, +{ "type": "Feature", "properties": { "im": 0.65098 }, "geometry": { "type": "Point", "coordinates": [ 85.321365713527527, 27.625062637888963 ] } }, +{ "type": "Feature", "properties": { "im": 0.593084 }, "geometry": { "type": "Point", "coordinates": [ 85.323348786046523, 27.635700687441048 ] } }, +{ "type": "Feature", "properties": { "im": 0.431361 }, "geometry": { "type": "Point", "coordinates": [ 85.315203091603848, 27.621197181441332 ] } }, +{ "type": "Feature", "properties": { "im": 0.563443 }, "geometry": { "type": "Point", "coordinates": [ 85.322936501413153, 27.620532753191767 ] } }, +{ "type": "Feature", "properties": { "im": 2.738854 }, "geometry": { "type": "Point", "coordinates": [ 85.311218079713427, 27.62923560035177 ] } }, +{ "type": "Feature", "properties": { "im": 0.600685 }, "geometry": { "type": "Point", "coordinates": [ 85.325050462411369, 27.622580025838005 ] } }, +{ "type": "Feature", "properties": { "im": 2.104041 }, "geometry": { "type": "Point", "coordinates": [ 85.306837956325737, 27.621095320296721 ] } }, +{ "type": "Feature", "properties": { "im": 1.104566 }, "geometry": { "type": "Point", "coordinates": [ 85.305172361818876, 27.617789686343134 ] } }, +{ "type": "Feature", "properties": { "im": 2.007057 }, "geometry": { "type": "Point", "coordinates": [ 85.312356918954904, 27.624953308385965 ] } }, +{ "type": "Feature", "properties": { "im": 0.989282 }, "geometry": { "type": "Point", "coordinates": [ 85.305075075348824, 27.624106365442724 ] } }, +{ "type": "Feature", "properties": { "im": 0.544489 }, "geometry": { "type": "Point", "coordinates": [ 85.323168650627167, 27.633424068640895 ] } }, +{ "type": "Feature", "properties": { "im": 1.890234 }, "geometry": { "type": "Point", "coordinates": [ 85.307435599331427, 27.638034492744719 ] } }, +{ "type": "Feature", "properties": { "im": 2.333771 }, "geometry": { "type": "Point", "coordinates": [ 85.311252987174299, 27.626961591025232 ] } }, +{ "type": "Feature", "properties": { "im": 1.456745 }, "geometry": { "type": "Point", "coordinates": [ 85.303589699902673, 27.636976633617596 ] } }, +{ "type": "Feature", "properties": { "im": 0.710189 }, "geometry": { "type": "Point", "coordinates": [ 85.323020348574232, 27.629126108195376 ] } }, +{ "type": "Feature", "properties": { "im": 3.248112 }, "geometry": { "type": "Point", "coordinates": [ 85.312665339100477, 27.632791226469138 ] } }, +{ "type": "Feature", "properties": { "im": 0.638257 }, "geometry": { "type": "Point", "coordinates": [ 85.323945981109816, 27.638740494440526 ] } }, +{ "type": "Feature", "properties": { "im": 0.725749 }, "geometry": { "type": "Point", "coordinates": [ 85.315538800827127, 27.627266428001118 ] } }, +{ "type": "Feature", "properties": { "im": 0.566849 }, "geometry": { "type": "Point", "coordinates": [ 85.324881190552574, 27.63369748325642 ] } }, +{ "type": "Feature", "properties": { "im": 1.330862 }, "geometry": { "type": "Point", "coordinates": [ 85.304135176223042, 27.629401879509391 ] } }, +{ "type": "Feature", "properties": { "im": 2.926442 }, "geometry": { "type": "Point", "coordinates": [ 85.310629035797177, 27.62569041708894 ] } }, +{ "type": "Feature", "properties": { "im": 2.678536 }, "geometry": { "type": "Point", "coordinates": [ 85.314468715224649, 27.6411527499953 ] } }, +{ "type": "Feature", "properties": { "im": 2.91764 }, "geometry": { "type": "Point", "coordinates": [ 85.312849131982986, 27.63481518173241 ] } }, +{ "type": "Feature", "properties": { "im": 1.581769 }, "geometry": { "type": "Point", "coordinates": [ 85.305117885296553, 27.621327027386659 ] } }, +{ "type": "Feature", "properties": { "im": 1.273055 }, "geometry": { "type": "Point", "coordinates": [ 85.306697971787173, 27.630191339796511 ] } }, +{ "type": "Feature", "properties": { "im": 0.668299 }, "geometry": { "type": "Point", "coordinates": [ 85.324061493391156, 27.63116042101943 ] } }, +{ "type": "Feature", "properties": { "im": 3.703293 }, "geometry": { "type": "Point", "coordinates": [ 85.312357487156163, 27.638852634314944 ] } }, +{ "type": "Feature", "properties": { "im": 0.611941 }, "geometry": { "type": "Point", "coordinates": [ 85.324199297467288, 27.636216400638155 ] } }, +{ "type": "Feature", "properties": { "im": 1.430946 }, "geometry": { "type": "Point", "coordinates": [ 85.316935919823536, 27.634106702814524 ] } }, +{ "type": "Feature", "properties": { "im": 0.873547 }, "geometry": { "type": "Point", "coordinates": [ 85.314501720705422, 27.624979390486807 ] } }, +{ "type": "Feature", "properties": { "im": 1.089767 }, "geometry": { "type": "Point", "coordinates": [ 85.319008539192438, 27.638933434156321 ] } }, +{ "type": "Feature", "properties": { "im": 1.236797 }, "geometry": { "type": "Point", "coordinates": [ 85.316621571841665, 27.640673477581643 ] } }, +{ "type": "Feature", "properties": { "im": 0.470404 }, "geometry": { "type": "Point", "coordinates": [ 85.31859199261423, 27.624018176340446 ] } }, +{ "type": "Feature", "properties": { "im": 0.580475 }, "geometry": { "type": "Point", "coordinates": [ 85.325058154283312, 27.622074686418205 ] } }, +{ "type": "Feature", "properties": { "im": 2.141646 }, "geometry": { "type": "Point", "coordinates": [ 85.309860171071293, 27.619868604197734 ] } }, +{ "type": "Feature", "properties": { "im": 1.164025 }, "geometry": { "type": "Point", "coordinates": [ 85.308678575494369, 27.626930218778654 ] } }, +{ "type": "Feature", "properties": { "im": 1.290397 }, "geometry": { "type": "Point", "coordinates": [ 85.311027956224422, 27.641616303997797 ] } }, +{ "type": "Feature", "properties": { "im": 0.491141 }, "geometry": { "type": "Point", "coordinates": [ 85.31764988929207, 27.629566491959874 ] } }, +{ "type": "Feature", "properties": { "im": 3.502124 }, "geometry": { "type": "Point", "coordinates": [ 85.314959284715442, 27.637115275894551 ] } }, +{ "type": "Feature", "properties": { "im": 0.574478 }, "geometry": { "type": "Point", "coordinates": [ 85.323360341929586, 27.634942680391898 ] } }, +{ "type": "Feature", "properties": { "im": 1.760925 }, "geometry": { "type": "Point", "coordinates": [ 85.303749941496164, 27.640516590386884 ] } }, +{ "type": "Feature", "properties": { "im": 0.673898 }, "geometry": { "type": "Point", "coordinates": [ 85.322372115603031, 27.629370983562477 ] } }, +{ "type": "Feature", "properties": { "im": 0.591738 }, "geometry": { "type": "Point", "coordinates": [ 85.324249345403786, 27.63293170160588 ] } }, +{ "type": "Feature", "properties": { "im": 0.733426 }, "geometry": { "type": "Point", "coordinates": [ 85.324537268664585, 27.628133579833776 ] } }, +{ "type": "Feature", "properties": { "im": 1.3811 }, "geometry": { "type": "Point", "coordinates": [ 85.307446294144128, 27.623377178571193 ] } }, +{ "type": "Feature", "properties": { "im": 0.543558 }, "geometry": { "type": "Point", "coordinates": [ 85.321676841991803, 27.618748505320706 ] } }, +{ "type": "Feature", "properties": { "im": 0.640702 }, "geometry": { "type": "Point", "coordinates": [ 85.324792668943786, 27.639508873976858 ] } }, +{ "type": "Feature", "properties": { "im": 0.681899 }, "geometry": { "type": "Point", "coordinates": [ 85.324927365220503, 27.630665451277714 ] } }, +{ "type": "Feature", "properties": { "im": 2.737127 }, "geometry": { "type": "Point", "coordinates": [ 85.312638205195611, 27.634559900261532 ] } }, +{ "type": "Feature", "properties": { "im": 1.176795 }, "geometry": { "type": "Point", "coordinates": [ 85.304615379288265, 27.626122463213839 ] } }, +{ "type": "Feature", "properties": { "im": 2.575976 }, "geometry": { "type": "Point", "coordinates": [ 85.309908061736721, 27.630735929638014 ] } }, +{ "type": "Feature", "properties": { "im": 1.172146 }, "geometry": { "type": "Point", "coordinates": [ 85.314879966934328, 27.628269285063414 ] } }, +{ "type": "Feature", "properties": { "im": 2.087587 }, "geometry": { "type": "Point", "coordinates": [ 85.312372420610146, 27.623942636452863 ] } }, +{ "type": "Feature", "properties": { "im": 0.586066 }, "geometry": { "type": "Point", "coordinates": [ 85.320319801073694, 27.623280964677967 ] } }, +{ "type": "Feature", "properties": { "im": 0.633235 }, "geometry": { "type": "Point", "coordinates": [ 85.324819613108389, 27.637740190387944 ] } }, +{ "type": "Feature", "properties": { "im": 1.143311 }, "geometry": { "type": "Point", "coordinates": [ 85.315087018021487, 27.628777231224131 ] } }, +{ "type": "Feature", "properties": { "im": 2.304586 }, "geometry": { "type": "Point", "coordinates": [ 85.312213490372798, 27.634302016403272 ] } }, +{ "type": "Feature", "properties": { "im": 0.489775 }, "geometry": { "type": "Point", "coordinates": [ 85.319135975464107, 27.630595374286521 ] } }, +{ "type": "Feature", "properties": { "im": 1.29628 }, "geometry": { "type": "Point", "coordinates": [ 85.304018299655993, 27.636981876933831 ] } }, +{ "type": "Feature", "properties": { "im": 0.445731 }, "geometry": { "type": "Point", "coordinates": [ 85.318335742964138, 27.626794940644022 ] } }, +{ "type": "Feature", "properties": { "im": 1.418856 }, "geometry": { "type": "Point", "coordinates": [ 85.313417193508542, 27.625724351684177 ] } }, +{ "type": "Feature", "properties": { "im": 1.847086 }, "geometry": { "type": "Point", "coordinates": [ 85.308145093181849, 27.633747006669324 ] } }, +{ "type": "Feature", "properties": { "im": 0.635028 }, "geometry": { "type": "Point", "coordinates": [ 85.323961385353556, 27.637729818488967 ] } }, +{ "type": "Feature", "properties": { "im": 1.297627 }, "geometry": { "type": "Point", "coordinates": [ 85.304178019530013, 27.626622544929894 ] } }, +{ "type": "Feature", "properties": { "im": 1.204229 }, "geometry": { "type": "Point", "coordinates": [ 85.316749198439197, 27.63233543004679 ] } }, +{ "type": "Feature", "properties": { "im": 1.22797 }, "geometry": { "type": "Point", "coordinates": [ 85.317369390064329, 27.633859248398604 ] } }, +{ "type": "Feature", "properties": { "im": 2.049667 }, "geometry": { "type": "Point", "coordinates": [ 85.310258681663399, 27.621895180232148 ] } }, +{ "type": "Feature", "properties": { "im": 0.559486 }, "geometry": { "type": "Point", "coordinates": [ 85.319765200295734, 27.617461783119076 ] } }, +{ "type": "Feature", "properties": { "im": 0.559153 }, "geometry": { "type": "Point", "coordinates": [ 85.318246901581432, 27.632606317612662 ] } }, +{ "type": "Feature", "properties": { "im": 0.628562 }, "geometry": { "type": "Point", "coordinates": [ 85.320955421776702, 27.623794092465705 ] } }, +{ "type": "Feature", "properties": { "im": 0.517119 }, "geometry": { "type": "Point", "coordinates": [ 85.323825381289268, 27.618521768305765 ] } }, +{ "type": "Feature", "properties": { "im": 1.539263 }, "geometry": { "type": "Point", "coordinates": [ 85.306600721699752, 27.636508012599162 ] } }, +{ "type": "Feature", "properties": { "im": 0.930482 }, "geometry": { "type": "Point", "coordinates": [ 85.319264817384123, 27.636156673761999 ] } }, +{ "type": "Feature", "properties": { "im": 1.116171 }, "geometry": { "type": "Point", "coordinates": [ 85.314658447774931, 27.628772023532505 ] } }, +{ "type": "Feature", "properties": { "im": 1.359402 }, "geometry": { "type": "Point", "coordinates": [ 85.303936979722977, 27.628388598180475 ] } }, +{ "type": "Feature", "properties": { "im": 2.940046 }, "geometry": { "type": "Point", "coordinates": [ 85.312986414916566, 27.639871147218557 ] } }, +{ "type": "Feature", "properties": { "im": 0.526598 }, "geometry": { "type": "Point", "coordinates": [ 85.319093502788846, 27.633374728750898 ] } }, +{ "type": "Feature", "properties": { "im": 2.46367 }, "geometry": { "type": "Point", "coordinates": [ 85.309392820223508, 27.622390059089806 ] } }, +{ "type": "Feature", "properties": { "im": 1.495779 }, "geometry": { "type": "Point", "coordinates": [ 85.31774000780139, 27.637654472721277 ] } }, +{ "type": "Feature", "properties": { "im": 2.690621 }, "geometry": { "type": "Point", "coordinates": [ 85.311374691132201, 27.633028230101655 ] } }, +{ "type": "Feature", "properties": { "im": 1.702004 }, "geometry": { "type": "Point", "coordinates": [ 85.309128734345904, 27.639571438209241 ] } }, +{ "type": "Feature", "properties": { "im": 1.815353 }, "geometry": { "type": "Point", "coordinates": [ 85.308296633436584, 27.623892982642737 ] } }, +{ "type": "Feature", "properties": { "im": 2.521243 }, "geometry": { "type": "Point", "coordinates": [ 85.311787764366301, 27.634044118987269 ] } }, +{ "type": "Feature", "properties": { "im": 1.414461 }, "geometry": { "type": "Point", "coordinates": [ 85.307634853991146, 27.639047782313227 ] } }, +{ "type": "Feature", "properties": { "im": 0.559286 }, "geometry": { "type": "Point", "coordinates": [ 85.323387303901924, 27.633173996937572 ] } }, +{ "type": "Feature", "properties": { "im": 0.488931 }, "geometry": { "type": "Point", "coordinates": [ 85.324269301855423, 27.617516266857304 ] } } +] +} diff --git a/hazard_flood.geojson b/hazard_flood.geojson new file mode 100644 index 0000000000000000000000000000000000000000..866e1ee64669fc06a1dc0fa938556bb591554ddf --- /dev/null +++ b/hazard_flood.geojson @@ -0,0 +1,1006 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "im": 1.73857999 }, "geometry": { "type": "Point", "coordinates": [ 85.309984657433333, 27.629707953007689 ] } }, +{ "type": "Feature", "properties": { "im": 0.45558101 }, "geometry": { "type": "Point", "coordinates": [ 85.31028929707864, 27.623068873080442 ] } }, +{ "type": "Feature", "properties": { "im": 0.242411 }, "geometry": { "type": "Point", "coordinates": [ 85.317717485403165, 27.628989676837488 ] } }, +{ "type": "Feature", "properties": { "im": 0.0101567 }, "geometry": { "type": "Point", "coordinates": [ 85.314124710830768, 27.638603368584793 ] } }, +{ "type": "Feature", "properties": { "im": 0.210674 }, "geometry": { "type": "Point", "coordinates": [ 85.325787805232565, 27.6407122681156 ] } }, +{ "type": "Feature", "properties": { "im": 0.0637984 }, "geometry": { "type": "Point", "coordinates": [ 85.314006228500574, 27.639721093257876 ] } }, +{ "type": "Feature", "properties": { "im": 0.232179 }, "geometry": { "type": "Point", "coordinates": [ 85.313701079624437, 27.638471859369901 ] } }, +{ "type": "Feature", "properties": { "im": 0.00562008 }, "geometry": { "type": "Point", "coordinates": [ 85.312996111338123, 27.628932322170932 ] } }, +{ "type": "Feature", "properties": { "im": 0.0118833 }, "geometry": { "type": "Point", "coordinates": [ 85.310843483695479, 27.629212987021631 ] } }, +{ "type": "Feature", "properties": { "im": 0.30801201 }, "geometry": { "type": "Point", "coordinates": [ 85.309571427121625, 27.618348794937482 ] } }, +{ "type": "Feature", "properties": { "im": 0.0126697 }, "geometry": { "type": "Point", "coordinates": [ 85.325278163500769, 27.624929425093697 ] } }, +{ "type": "Feature", "properties": { "im": 1.53407001 }, "geometry": { "type": "Point", "coordinates": [ 85.309093114484341, 27.636285715975145 ] } }, +{ "type": "Feature", "properties": { "im": 2.81100988 }, "geometry": { "type": "Point", "coordinates": [ 85.309810764701027, 27.622557612427368 ] } }, +{ "type": "Feature", "properties": { "im": 0.00998637 }, "geometry": { "type": "Point", "coordinates": [ 85.313756710449894, 27.624266342017918 ] } }, +{ "type": "Feature", "properties": { "im": 2.90943003 }, "geometry": { "type": "Point", "coordinates": [ 85.309957502202778, 27.618281294970931 ] } }, +{ "type": "Feature", "properties": { "im": 0.0111559 }, "geometry": { "type": "Point", "coordinates": [ 85.306160737075615, 27.641123697877763 ] } }, +{ "type": "Feature", "properties": { "im": 0.107611 }, "geometry": { "type": "Point", "coordinates": [ 85.309348691115702, 27.627570176583422 ] } }, +{ "type": "Feature", "properties": { "im": 0.46495101 }, "geometry": { "type": "Point", "coordinates": [ 85.304931029200958, 27.628852027740642 ] } }, +{ "type": "Feature", "properties": { "im": 0.012012 }, "geometry": { "type": "Point", "coordinates": [ 85.310642788115189, 27.618524306717493 ] } }, +{ "type": "Feature", "properties": { "im": 0.0668191 }, "geometry": { "type": "Point", "coordinates": [ 85.307223327856434, 27.618175751403751 ] } }, +{ "type": "Feature", "properties": { "im": 0.36384201 }, "geometry": { "type": "Point", "coordinates": [ 85.309963792236815, 27.627108346199005 ] } }, +{ "type": "Feature", "properties": { "im": 0.00738905 }, "geometry": { "type": "Point", "coordinates": [ 85.32425925372398, 27.63859987227633 ] } }, +{ "type": "Feature", "properties": { "im": 0.0787685 }, "geometry": { "type": "Point", "coordinates": [ 85.322274392439283, 27.627871558031877 ] } }, +{ "type": "Feature", "properties": { "im": 0.00788889 }, "geometry": { "type": "Point", "coordinates": [ 85.322686988537342, 27.628724951832037 ] } }, +{ "type": "Feature", "properties": { "im": 2.26713991 }, "geometry": { "type": "Point", "coordinates": [ 85.31115175149742, 27.624974740403992 ] } }, +{ "type": "Feature", "properties": { "im": 1.76266003 }, "geometry": { "type": "Point", "coordinates": [ 85.316981692142022, 27.63336716395164 ] } }, +{ "type": "Feature", "properties": { "im": 0.16643 }, "geometry": { "type": "Point", "coordinates": [ 85.321335236834003, 27.626993739423408 ] } }, +{ "type": "Feature", "properties": { "im": 0.0130213 }, "geometry": { "type": "Point", "coordinates": [ 85.314495120883407, 27.621044171313731 ] } }, +{ "type": "Feature", "properties": { "im": 0.19750901 }, "geometry": { "type": "Point", "coordinates": [ 85.321577039626035, 27.636383244857509 ] } }, +{ "type": "Feature", "properties": { "im": 2.1006999 }, "geometry": { "type": "Point", "coordinates": [ 85.308413829589028, 27.638281094594277 ] } }, +{ "type": "Feature", "properties": { "im": 0.0205391 }, "geometry": { "type": "Point", "coordinates": [ 85.320743425589882, 27.636553662292108 ] } }, +{ "type": "Feature", "properties": { "im": 0.018175 }, "geometry": { "type": "Point", "coordinates": [ 85.313855514788528, 27.640296894055869 ] } }, +{ "type": "Feature", "properties": { "im": 1.42607999 }, "geometry": { "type": "Point", "coordinates": [ 85.31292579513979, 27.640123124237153 ] } }, +{ "type": "Feature", "properties": { "im": 0.208231 }, "geometry": { "type": "Point", "coordinates": [ 85.310930910729766, 27.628798877452649 ] } }, +{ "type": "Feature", "properties": { "im": 2.34617996 }, "geometry": { "type": "Point", "coordinates": [ 85.311288685276054, 27.627936783414516 ] } }, +{ "type": "Feature", "properties": { "im": 0.88288802 }, "geometry": { "type": "Point", "coordinates": [ 85.325559519295396, 27.627748801133002 ] } }, +{ "type": "Feature", "properties": { "im": 0.45899001 }, "geometry": { "type": "Point", "coordinates": [ 85.310498049485275, 27.623992020848856 ] } }, +{ "type": "Feature", "properties": { "im": 1.18954003 }, "geometry": { "type": "Point", "coordinates": [ 85.304747785663295, 27.630221666000093 ] } }, +{ "type": "Feature", "properties": { "im": 0.0508765 }, "geometry": { "type": "Point", "coordinates": [ 85.325311621932272, 27.629388461589766 ] } }, +{ "type": "Feature", "properties": { "im": 0.55990797 }, "geometry": { "type": "Point", "coordinates": [ 85.325444863506718, 27.641935601839084 ] } }, +{ "type": "Feature", "properties": { "im": 0.0314081 }, "geometry": { "type": "Point", "coordinates": [ 85.308094047298638, 27.630082022530534 ] } }, +{ "type": "Feature", "properties": { "im": 0.118128 }, "geometry": { "type": "Point", "coordinates": [ 85.323973022122573, 27.617476585092707 ] } }, +{ "type": "Feature", "properties": { "im": 0.0967758 }, "geometry": { "type": "Point", "coordinates": [ 85.314091584181099, 27.631508897077257 ] } }, +{ "type": "Feature", "properties": { "im": 0.422194 }, "geometry": { "type": "Point", "coordinates": [ 85.311865264497399, 27.637907987527697 ] } }, +{ "type": "Feature", "properties": { "im": 0.120858 }, "geometry": { "type": "Point", "coordinates": [ 85.326481914169477, 27.631063294418126 ] } }, +{ "type": "Feature", "properties": { "im": 0.016818 }, "geometry": { "type": "Point", "coordinates": [ 85.319297983069134, 27.639622884353034 ] } }, +{ "type": "Feature", "properties": { "im": 0.0149968 }, "geometry": { "type": "Point", "coordinates": [ 85.316227707572921, 27.621715054423841 ] } }, +{ "type": "Feature", "properties": { "im": 0.0126263 }, "geometry": { "type": "Point", "coordinates": [ 85.308660301155868, 27.627525680730333 ] } }, +{ "type": "Feature", "properties": { "im": 0.0688626 }, "geometry": { "type": "Point", "coordinates": [ 85.321099802588407, 27.638435292061356 ] } }, +{ "type": "Feature", "properties": { "im": 0.0485816 }, "geometry": { "type": "Point", "coordinates": [ 85.30699452530402, 27.631729298778932 ] } }, +{ "type": "Feature", "properties": { "im": 0.245684 }, "geometry": { "type": "Point", "coordinates": [ 85.324445466303757, 27.625045725686675 ] } }, +{ "type": "Feature", "properties": { "im": 2.87969995 }, "geometry": { "type": "Point", "coordinates": [ 85.310865652813433, 27.639646763778273 ] } }, +{ "type": "Feature", "properties": { "im": 0.11831 }, "geometry": { "type": "Point", "coordinates": [ 85.322566607086671, 27.637947615256973 ] } }, +{ "type": "Feature", "properties": { "im": 0.0224096 }, "geometry": { "type": "Point", "coordinates": [ 85.321377576197946, 27.637499998350258 ] } }, +{ "type": "Feature", "properties": { "im": 0.0121775 }, "geometry": { "type": "Point", "coordinates": [ 85.315973544034819, 27.630376495256339 ] } }, +{ "type": "Feature", "properties": { "im": 0.0509442 }, "geometry": { "type": "Point", "coordinates": [ 85.304529379640456, 27.628612454386747 ] } }, +{ "type": "Feature", "properties": { "im": 0.0159877 }, "geometry": { "type": "Point", "coordinates": [ 85.31457290263927, 27.626550700367485 ] } }, +{ "type": "Feature", "properties": { "im": 0.17525899 }, "geometry": { "type": "Point", "coordinates": [ 85.31874843866855, 27.629164639285108 ] } }, +{ "type": "Feature", "properties": { "im": 0.063138 }, "geometry": { "type": "Point", "coordinates": [ 85.324994203009837, 27.619618956781725 ] } }, +{ "type": "Feature", "properties": { "im": 0.00852543 }, "geometry": { "type": "Point", "coordinates": [ 85.321403849192919, 27.625153355093619 ] } }, +{ "type": "Feature", "properties": { "im": 0.120658 }, "geometry": { "type": "Point", "coordinates": [ 85.31318141491424, 27.620811588105976 ] } }, +{ "type": "Feature", "properties": { "im": 2.06863999 }, "geometry": { "type": "Point", "coordinates": [ 85.306800482528857, 27.63248507297828 ] } }, +{ "type": "Feature", "properties": { "im": 0.0316305 }, "geometry": { "type": "Point", "coordinates": [ 85.307772577577694, 27.636486217787439 ] } }, +{ "type": "Feature", "properties": { "im": 0.0339111 }, "geometry": { "type": "Point", "coordinates": [ 85.319494867304059, 27.621429757260238 ] } }, +{ "type": "Feature", "properties": { "im": 0.0840746 }, "geometry": { "type": "Point", "coordinates": [ 85.31443848324318, 27.630032925807654 ] } }, +{ "type": "Feature", "properties": { "im": 0.017041 }, "geometry": { "type": "Point", "coordinates": [ 85.317415404162489, 27.638137912912885 ] } }, +{ "type": "Feature", "properties": { "im": 0.0354861 }, "geometry": { "type": "Point", "coordinates": [ 85.310774719631837, 27.632371084549472 ] } }, +{ "type": "Feature", "properties": { "im": 0.024162 }, "geometry": { "type": "Point", "coordinates": [ 85.32260937970031, 27.633814428861999 ] } }, +{ "type": "Feature", "properties": { "im": 0.0180857 }, "geometry": { "type": "Point", "coordinates": [ 85.312525832128571, 27.634486328499847 ] } }, +{ "type": "Feature", "properties": { "im": 1.15529001 }, "geometry": { "type": "Point", "coordinates": [ 85.312722586884533, 27.640156753402113 ] } }, +{ "type": "Feature", "properties": { "im": 3.13165998 }, "geometry": { "type": "Point", "coordinates": [ 85.307847272250896, 27.631631401125748 ] } }, +{ "type": "Feature", "properties": { "im": 0.0101597 }, "geometry": { "type": "Point", "coordinates": [ 85.317057813348612, 27.637664244900364 ] } }, +{ "type": "Feature", "properties": { "im": 3.63576007 }, "geometry": { "type": "Point", "coordinates": [ 85.307608811976962, 27.63395707469947 ] } }, +{ "type": "Feature", "properties": { "im": 0.0196506 }, "geometry": { "type": "Point", "coordinates": [ 85.313651179288655, 27.628507063585484 ] } }, +{ "type": "Feature", "properties": { "im": 0.0347974 }, "geometry": { "type": "Point", "coordinates": [ 85.319120087879256, 27.620757324357747 ] } }, +{ "type": "Feature", "properties": { "im": 0.0201243 }, "geometry": { "type": "Point", "coordinates": [ 85.315974557159706, 27.636929049139965 ] } }, +{ "type": "Feature", "properties": { "im": 0.0205954 }, "geometry": { "type": "Point", "coordinates": [ 85.312507021885281, 27.629106882297112 ] } }, +{ "type": "Feature", "properties": { "im": 3.39791989 }, "geometry": { "type": "Point", "coordinates": [ 85.315727149457857, 27.62396536490289 ] } }, +{ "type": "Feature", "properties": { "im": 0.26208201 }, "geometry": { "type": "Point", "coordinates": [ 85.304448194797402, 27.632564636185286 ] } }, +{ "type": "Feature", "properties": { "im": 0.062269 }, "geometry": { "type": "Point", "coordinates": [ 85.305805570789047, 27.619440067969954 ] } }, +{ "type": "Feature", "properties": { "im": 0.0599303 }, "geometry": { "type": "Point", "coordinates": [ 85.304124671515524, 27.62857140382188 ] } }, +{ "type": "Feature", "properties": { "im": 0.11056 }, "geometry": { "type": "Point", "coordinates": [ 85.304218708238409, 27.630359605320766 ] } }, +{ "type": "Feature", "properties": { "im": 0.22016101 }, "geometry": { "type": "Point", "coordinates": [ 85.319357271052525, 27.638396129354259 ] } }, +{ "type": "Feature", "properties": { "im": 0.0804186 }, "geometry": { "type": "Point", "coordinates": [ 85.320590835348767, 27.639909317326701 ] } }, +{ "type": "Feature", "properties": { "im": 0.16088399 }, "geometry": { "type": "Point", "coordinates": [ 85.325138386363932, 27.627454897505512 ] } }, +{ "type": "Feature", "properties": { "im": 0.37546399 }, "geometry": { "type": "Point", "coordinates": [ 85.324818670790378, 27.635140817872195 ] } }, +{ "type": "Feature", "properties": { "im": 0.0379822 }, "geometry": { "type": "Point", "coordinates": [ 85.323269083138229, 27.641060902163279 ] } }, +{ "type": "Feature", "properties": { "im": 0.00566799 }, "geometry": { "type": "Point", "coordinates": [ 85.321542607114125, 27.638639215427681 ] } }, +{ "type": "Feature", "properties": { "im": 0.0188538 }, "geometry": { "type": "Point", "coordinates": [ 85.319390943830896, 27.628233769535466 ] } }, +{ "type": "Feature", "properties": { "im": 0.00532375 }, "geometry": { "type": "Point", "coordinates": [ 85.314029173120602, 27.622356238507692 ] } }, +{ "type": "Feature", "properties": { "im": 0.0540752 }, "geometry": { "type": "Point", "coordinates": [ 85.324899059033157, 27.641838752533502 ] } }, +{ "type": "Feature", "properties": { "im": 0.185223 }, "geometry": { "type": "Point", "coordinates": [ 85.310592094546024, 27.633704637516843 ] } }, +{ "type": "Feature", "properties": { "im": 1.49320996 }, "geometry": { "type": "Point", "coordinates": [ 85.31004304306164, 27.620628977666051 ] } }, +{ "type": "Feature", "properties": { "im": 0.00585439 }, "geometry": { "type": "Point", "coordinates": [ 85.308974746248651, 27.622890392460334 ] } }, +{ "type": "Feature", "properties": { "im": 0.0115718 }, "geometry": { "type": "Point", "coordinates": [ 85.303711948321606, 27.640877145466323 ] } }, +{ "type": "Feature", "properties": { "im": 0.0162174 }, "geometry": { "type": "Point", "coordinates": [ 85.322086686219464, 27.629548041532587 ] } }, +{ "type": "Feature", "properties": { "im": 0.0388745 }, "geometry": { "type": "Point", "coordinates": [ 85.320116289532677, 27.628513324480242 ] } }, +{ "type": "Feature", "properties": { "im": 0.147471 }, "geometry": { "type": "Point", "coordinates": [ 85.307477843035713, 27.617438763201026 ] } }, +{ "type": "Feature", "properties": { "im": 1.81122994 }, "geometry": { "type": "Point", "coordinates": [ 85.310193835714003, 27.624006365814314 ] } }, +{ "type": "Feature", "properties": { "im": 0.50556499 }, "geometry": { "type": "Point", "coordinates": [ 85.308524585927628, 27.632397808428564 ] } }, +{ "type": "Feature", "properties": { "im": 0.0177614 }, "geometry": { "type": "Point", "coordinates": [ 85.306913142525019, 27.635699531819981 ] } }, +{ "type": "Feature", "properties": { "im": 3.33683991 }, "geometry": { "type": "Point", "coordinates": [ 85.310356599032303, 27.61736555146123 ] } }, +{ "type": "Feature", "properties": { "im": 0.0247444 }, "geometry": { "type": "Point", "coordinates": [ 85.30702309354011, 27.633823567409426 ] } }, +{ "type": "Feature", "properties": { "im": 0.0566169 }, "geometry": { "type": "Point", "coordinates": [ 85.314733012815935, 27.62139003285073 ] } }, +{ "type": "Feature", "properties": { "im": 0.00533666 }, "geometry": { "type": "Point", "coordinates": [ 85.312591895919908, 27.6275374716719 ] } }, +{ "type": "Feature", "properties": { "im": 0.0834937 }, "geometry": { "type": "Point", "coordinates": [ 85.319728388032388, 27.627371405058053 ] } }, +{ "type": "Feature", "properties": { "im": 0.0198763 }, "geometry": { "type": "Point", "coordinates": [ 85.303841677355479, 27.61669035838737 ] } }, +{ "type": "Feature", "properties": { "im": 2.54959989 }, "geometry": { "type": "Point", "coordinates": [ 85.31126513875391, 27.64003070212506 ] } }, +{ "type": "Feature", "properties": { "im": 0.0670341 }, "geometry": { "type": "Point", "coordinates": [ 85.314415454194034, 27.630213156680302 ] } }, +{ "type": "Feature", "properties": { "im": 0.109266 }, "geometry": { "type": "Point", "coordinates": [ 85.322061304721146, 27.635197733128368 ] } }, +{ "type": "Feature", "properties": { "im": 1.78546 }, "geometry": { "type": "Point", "coordinates": [ 85.310686869344437, 27.639409921993089 ] } }, +{ "type": "Feature", "properties": { "im": 0.175685 }, "geometry": { "type": "Point", "coordinates": [ 85.314043445667053, 27.629360233754294 ] } }, +{ "type": "Feature", "properties": { "im": 0.0610624 }, "geometry": { "type": "Point", "coordinates": [ 85.316934174684363, 27.625875383433023 ] } }, +{ "type": "Feature", "properties": { "im": 0.124742 }, "geometry": { "type": "Point", "coordinates": [ 85.312589885589887, 27.619739378689136 ] } }, +{ "type": "Feature", "properties": { "im": 0.29658401 }, "geometry": { "type": "Point", "coordinates": [ 85.321285749404822, 27.619610227609819 ] } }, +{ "type": "Feature", "properties": { "im": 0.13522799 }, "geometry": { "type": "Point", "coordinates": [ 85.309663195144751, 27.628205797347011 ] } }, +{ "type": "Feature", "properties": { "im": 1.62673998 }, "geometry": { "type": "Point", "coordinates": [ 85.311798541672601, 27.626408649848514 ] } }, +{ "type": "Feature", "properties": { "im": 0.00724162 }, "geometry": { "type": "Point", "coordinates": [ 85.303164289307688, 27.639588822922146 ] } }, +{ "type": "Feature", "properties": { "im": 0.0473381 }, "geometry": { "type": "Point", "coordinates": [ 85.325610158878163, 27.633742389927178 ] } }, +{ "type": "Feature", "properties": { "im": 0.00755264 }, "geometry": { "type": "Point", "coordinates": [ 85.312066845872707, 27.616844839739496 ] } }, +{ "type": "Feature", "properties": { "im": 3.08186007 }, "geometry": { "type": "Point", "coordinates": [ 85.310197346287808, 27.619818558979144 ] } }, +{ "type": "Feature", "properties": { "im": 0.00863039 }, "geometry": { "type": "Point", "coordinates": [ 85.309212966559599, 27.628489125785119 ] } }, +{ "type": "Feature", "properties": { "im": 0.207803 }, "geometry": { "type": "Point", "coordinates": [ 85.303353266009196, 27.635222793068998 ] } }, +{ "type": "Feature", "properties": { "im": 0.0596191 }, "geometry": { "type": "Point", "coordinates": [ 85.312750657882717, 27.621149319665523 ] } }, +{ "type": "Feature", "properties": { "im": 2.64417005 }, "geometry": { "type": "Point", "coordinates": [ 85.309768022603578, 27.622701500140352 ] } }, +{ "type": "Feature", "properties": { "im": 0.0727233 }, "geometry": { "type": "Point", "coordinates": [ 85.321989407107864, 27.619979764621309 ] } }, +{ "type": "Feature", "properties": { "im": 1.24942994 }, "geometry": { "type": "Point", "coordinates": [ 85.308223956076176, 27.634812980000227 ] } }, +{ "type": "Feature", "properties": { "im": 0.0244459 }, "geometry": { "type": "Point", "coordinates": [ 85.308580390876855, 27.64062975998419 ] } }, +{ "type": "Feature", "properties": { "im": 0.0232607 }, "geometry": { "type": "Point", "coordinates": [ 85.323827135029077, 27.625724197471392 ] } }, +{ "type": "Feature", "properties": { "im": 0.0055213 }, "geometry": { "type": "Point", "coordinates": [ 85.314481595289394, 27.636477682432147 ] } }, +{ "type": "Feature", "properties": { "im": 0.0455796 }, "geometry": { "type": "Point", "coordinates": [ 85.326591351211235, 27.626533777308001 ] } }, +{ "type": "Feature", "properties": { "im": 0.00635948 }, "geometry": { "type": "Point", "coordinates": [ 85.314607550801909, 27.640161629854347 ] } }, +{ "type": "Feature", "properties": { "im": 0.33744001 }, "geometry": { "type": "Point", "coordinates": [ 85.322202756076734, 27.61927835076467 ] } }, +{ "type": "Feature", "properties": { "im": 0.49393901 }, "geometry": { "type": "Point", "coordinates": [ 85.310012105644788, 27.627921232720986 ] } }, +{ "type": "Feature", "properties": { "im": 0.0230938 }, "geometry": { "type": "Point", "coordinates": [ 85.314575422737576, 27.622417030673521 ] } }, +{ "type": "Feature", "properties": { "im": 1.59563994 }, "geometry": { "type": "Point", "coordinates": [ 85.308038799911401, 27.634991231109819 ] } }, +{ "type": "Feature", "properties": { "im": 0.0758071 }, "geometry": { "type": "Point", "coordinates": [ 85.306547989192779, 27.623871642835429 ] } }, +{ "type": "Feature", "properties": { "im": 0.0312658 }, "geometry": { "type": "Point", "coordinates": [ 85.310068057793771, 27.637470919772912 ] } }, +{ "type": "Feature", "properties": { "im": 2.2281301 }, "geometry": { "type": "Point", "coordinates": [ 85.311908163500462, 27.625868451960816 ] } }, +{ "type": "Feature", "properties": { "im": 0.143281 }, "geometry": { "type": "Point", "coordinates": [ 85.310294785374651, 27.633267789714221 ] } }, +{ "type": "Feature", "properties": { "im": 0.0155332 }, "geometry": { "type": "Point", "coordinates": [ 85.323804095108528, 27.621915127704224 ] } }, +{ "type": "Feature", "properties": { "im": 0.0123445 }, "geometry": { "type": "Point", "coordinates": [ 85.304981808126385, 27.629502485513314 ] } }, +{ "type": "Feature", "properties": { "im": 1.95720005 }, "geometry": { "type": "Point", "coordinates": [ 85.310800706426363, 27.628039146860949 ] } }, +{ "type": "Feature", "properties": { "im": 0.00785089 }, "geometry": { "type": "Point", "coordinates": [ 85.315271792263673, 27.625909352754864 ] } }, +{ "type": "Feature", "properties": { "im": 0.0831496 }, "geometry": { "type": "Point", "coordinates": [ 85.321039006950642, 27.63843455586122 ] } }, +{ "type": "Feature", "properties": { "im": 2.38948989 }, "geometry": { "type": "Point", "coordinates": [ 85.305053685199283, 27.63009904801967 ] } }, +{ "type": "Feature", "properties": { "im": 0.63819599 }, "geometry": { "type": "Point", "coordinates": [ 85.324655593493986, 27.641853861685153 ] } }, +{ "type": "Feature", "properties": { "im": 2.35918999 }, "geometry": { "type": "Point", "coordinates": [ 85.308339432652218, 27.637846962216535 ] } }, +{ "type": "Feature", "properties": { "im": 0.0215349 }, "geometry": { "type": "Point", "coordinates": [ 85.318757681361149, 27.641818564820234 ] } }, +{ "type": "Feature", "properties": { "im": 0.00504021 }, "geometry": { "type": "Point", "coordinates": [ 85.304437480923468, 27.637203615855029 ] } }, +{ "type": "Feature", "properties": { "im": 0.79420298 }, "geometry": { "type": "Point", "coordinates": [ 85.320193062969736, 27.627467289800329 ] } }, +{ "type": "Feature", "properties": { "im": 0.0101507 }, "geometry": { "type": "Point", "coordinates": [ 85.311477293897511, 27.623570720152554 ] } }, +{ "type": "Feature", "properties": { "im": 0.0557901 }, "geometry": { "type": "Point", "coordinates": [ 85.309572417039703, 27.627518750627171 ] } }, +{ "type": "Feature", "properties": { "im": 0.454339 }, "geometry": { "type": "Point", "coordinates": [ 85.310479449754368, 27.62388348783999 ] } }, +{ "type": "Feature", "properties": { "im": 2.33232999 }, "geometry": { "type": "Point", "coordinates": [ 85.311619820548302, 27.627489538487229 ] } }, +{ "type": "Feature", "properties": { "im": 0.0281215 }, "geometry": { "type": "Point", "coordinates": [ 85.306472558636415, 27.61692106386581 ] } }, +{ "type": "Feature", "properties": { "im": 0.86695099 }, "geometry": { "type": "Point", "coordinates": [ 85.313186966358955, 27.632346296204883 ] } }, +{ "type": "Feature", "properties": { "im": 0.126808 }, "geometry": { "type": "Point", "coordinates": [ 85.318984836221503, 27.630936513162453 ] } }, +{ "type": "Feature", "properties": { "im": 0.0397634 }, "geometry": { "type": "Point", "coordinates": [ 85.325812253407221, 27.633780932390824 ] } }, +{ "type": "Feature", "properties": { "im": 0.005624 }, "geometry": { "type": "Point", "coordinates": [ 85.317391718843226, 27.637036509781883 ] } }, +{ "type": "Feature", "properties": { "im": 0.30565199 }, "geometry": { "type": "Point", "coordinates": [ 85.314196571204789, 27.632593237829067 ] } }, +{ "type": "Feature", "properties": { "im": 0.0248911 }, "geometry": { "type": "Point", "coordinates": [ 85.310020700019848, 27.627361754551586 ] } }, +{ "type": "Feature", "properties": { "im": 3.8352499 }, "geometry": { "type": "Point", "coordinates": [ 85.310614913473103, 27.624300312612846 ] } }, +{ "type": "Feature", "properties": { "im": 0.0197305 }, "geometry": { "type": "Point", "coordinates": [ 85.312389640584811, 27.616939022645738 ] } }, +{ "type": "Feature", "properties": { "im": 0.12659299 }, "geometry": { "type": "Point", "coordinates": [ 85.315067781876635, 27.625997129830321 ] } }, +{ "type": "Feature", "properties": { "im": 0.33536801 }, "geometry": { "type": "Point", "coordinates": [ 85.310863528104562, 27.621306861859686 ] } }, +{ "type": "Feature", "properties": { "im": 0.0248068 }, "geometry": { "type": "Point", "coordinates": [ 85.324136992893727, 27.631991685303298 ] } }, +{ "type": "Feature", "properties": { "im": 0.0221429 }, "geometry": { "type": "Point", "coordinates": [ 85.303868207335015, 27.620228688627911 ] } }, +{ "type": "Feature", "properties": { "im": 1.24094999 }, "geometry": { "type": "Point", "coordinates": [ 85.303285576166743, 27.621214370176002 ] } }, +{ "type": "Feature", "properties": { "im": 1.82430995 }, "geometry": { "type": "Point", "coordinates": [ 85.312440587590174, 27.626831638621791 ] } }, +{ "type": "Feature", "properties": { "im": 1.69505 }, "geometry": { "type": "Point", "coordinates": [ 85.308489337686538, 27.636007585973577 ] } }, +{ "type": "Feature", "properties": { "im": 0.0160791 }, "geometry": { "type": "Point", "coordinates": [ 85.313596397158193, 27.632080510088745 ] } }, +{ "type": "Feature", "properties": { "im": 0.0664268 }, "geometry": { "type": "Point", "coordinates": [ 85.311031396136357, 27.628854254496279 ] } }, +{ "type": "Feature", "properties": { "im": 0.850416 }, "geometry": { "type": "Point", "coordinates": [ 85.308437425745453, 27.634111593962313 ] } }, +{ "type": "Feature", "properties": { "im": 0.0562014 }, "geometry": { "type": "Point", "coordinates": [ 85.307523556408597, 27.638179974655358 ] } }, +{ "type": "Feature", "properties": { "im": 0.0180134 }, "geometry": { "type": "Point", "coordinates": [ 85.308833213858236, 27.625506070967056 ] } }, +{ "type": "Feature", "properties": { "im": 1.39677 }, "geometry": { "type": "Point", "coordinates": [ 85.309044544021987, 27.638126329045178 ] } }, +{ "type": "Feature", "properties": { "im": 0.00977039 }, "geometry": { "type": "Point", "coordinates": [ 85.319998490063611, 27.617645120077704 ] } }, +{ "type": "Feature", "properties": { "im": 0.77247798 }, "geometry": { "type": "Point", "coordinates": [ 85.320158155234978, 27.62311654685438 ] } }, +{ "type": "Feature", "properties": { "im": 2.51440001 }, "geometry": { "type": "Point", "coordinates": [ 85.309930924238529, 27.621331603581918 ] } }, +{ "type": "Feature", "properties": { "im": 0.191292 }, "geometry": { "type": "Point", "coordinates": [ 85.326424251837608, 27.628192466681405 ] } }, +{ "type": "Feature", "properties": { "im": 0.30943799 }, "geometry": { "type": "Point", "coordinates": [ 85.308482947806382, 27.632469504679879 ] } }, +{ "type": "Feature", "properties": { "im": 0.0265989 }, "geometry": { "type": "Point", "coordinates": [ 85.314875711791473, 27.630597823056405 ] } }, +{ "type": "Feature", "properties": { "im": 0.00537085 }, "geometry": { "type": "Point", "coordinates": [ 85.305178268423731, 27.620695978432643 ] } }, +{ "type": "Feature", "properties": { "im": 0.0375767 }, "geometry": { "type": "Point", "coordinates": [ 85.306818506539756, 27.633947426572355 ] } }, +{ "type": "Feature", "properties": { "im": 0.337286 }, "geometry": { "type": "Point", "coordinates": [ 85.310477838560928, 27.639822548683021 ] } }, +{ "type": "Feature", "properties": { "im": 2.44386005 }, "geometry": { "type": "Point", "coordinates": [ 85.309696676842378, 27.622068843153436 ] } }, +{ "type": "Feature", "properties": { "im": 1.73567998 }, "geometry": { "type": "Point", "coordinates": [ 85.312056144700719, 27.626790857927205 ] } }, +{ "type": "Feature", "properties": { "im": 0.0793767 }, "geometry": { "type": "Point", "coordinates": [ 85.306071631714829, 27.627169167012255 ] } }, +{ "type": "Feature", "properties": { "im": 0.145905 }, "geometry": { "type": "Point", "coordinates": [ 85.308044358275225, 27.631994826813141 ] } }, +{ "type": "Feature", "properties": { "im": 0.0190333 }, "geometry": { "type": "Point", "coordinates": [ 85.308183415296668, 27.62427067389779 ] } }, +{ "type": "Feature", "properties": { "im": 0.25360999 }, "geometry": { "type": "Point", "coordinates": [ 85.325073812118092, 27.621045959622304 ] } }, +{ "type": "Feature", "properties": { "im": 0.0203202 }, "geometry": { "type": "Point", "coordinates": [ 85.314366923416372, 27.641313971857262 ] } }, +{ "type": "Feature", "properties": { "im": 0.180438 }, "geometry": { "type": "Point", "coordinates": [ 85.320318096620966, 27.628569922246175 ] } }, +{ "type": "Feature", "properties": { "im": 0.0331118 }, "geometry": { "type": "Point", "coordinates": [ 85.309131279925055, 27.62193559419466 ] } }, +{ "type": "Feature", "properties": { "im": 0.37774599 }, "geometry": { "type": "Point", "coordinates": [ 85.319846097026954, 27.62497203258334 ] } }, +{ "type": "Feature", "properties": { "im": 1.29489994 }, "geometry": { "type": "Point", "coordinates": [ 85.303280124066092, 27.632081022140255 ] } }, +{ "type": "Feature", "properties": { "im": 1.31380999 }, "geometry": { "type": "Point", "coordinates": [ 85.309067867714305, 27.639245777361555 ] } }, +{ "type": "Feature", "properties": { "im": 3.23844004 }, "geometry": { "type": "Point", "coordinates": [ 85.309808663809434, 27.629290633803823 ] } }, +{ "type": "Feature", "properties": { "im": 1.11578 }, "geometry": { "type": "Point", "coordinates": [ 85.308152327612959, 27.638151546653873 ] } }, +{ "type": "Feature", "properties": { "im": 0.17132901 }, "geometry": { "type": "Point", "coordinates": [ 85.325779900977039, 27.634574791463805 ] } }, +{ "type": "Feature", "properties": { "im": 0.0947057 }, "geometry": { "type": "Point", "coordinates": [ 85.319249095035033, 27.617617990936523 ] } }, +{ "type": "Feature", "properties": { "im": 0.0060133 }, "geometry": { "type": "Point", "coordinates": [ 85.325763482716866, 27.634321877421964 ] } }, +{ "type": "Feature", "properties": { "im": 0.0616331 }, "geometry": { "type": "Point", "coordinates": [ 85.309338016573136, 27.619031891284486 ] } }, +{ "type": "Feature", "properties": { "im": 0.0289961 }, "geometry": { "type": "Point", "coordinates": [ 85.308380508147152, 27.628587280201153 ] } }, +{ "type": "Feature", "properties": { "im": 0.019321 }, "geometry": { "type": "Point", "coordinates": [ 85.317455105979121, 27.638192547944389 ] } }, +{ "type": "Feature", "properties": { "im": 0.58116901 }, "geometry": { "type": "Point", "coordinates": [ 85.310396274205715, 27.627980066905931 ] } }, +{ "type": "Feature", "properties": { "im": 2.54663992 }, "geometry": { "type": "Point", "coordinates": [ 85.309760814782933, 27.623170740152453 ] } }, +{ "type": "Feature", "properties": { "im": 0.0839242 }, "geometry": { "type": "Point", "coordinates": [ 85.307947469951287, 27.619845285008818 ] } }, +{ "type": "Feature", "properties": { "im": 3.18109012 }, "geometry": { "type": "Point", "coordinates": [ 85.309852120657979, 27.622503963167546 ] } }, +{ "type": "Feature", "properties": { "im": 0.863859 }, "geometry": { "type": "Point", "coordinates": [ 85.307380638993621, 27.632979533800057 ] } }, +{ "type": "Feature", "properties": { "im": 0.0137136 }, "geometry": { "type": "Point", "coordinates": [ 85.306877942714038, 27.631402956735833 ] } }, +{ "type": "Feature", "properties": { "im": 0.14563 }, "geometry": { "type": "Point", "coordinates": [ 85.311159653776301, 27.640300182774087 ] } }, +{ "type": "Feature", "properties": { "im": 0.0114773 }, "geometry": { "type": "Point", "coordinates": [ 85.32354061697292, 27.627237029787636 ] } }, +{ "type": "Feature", "properties": { "im": 0.0734502 }, "geometry": { "type": "Point", "coordinates": [ 85.305203504739481, 27.621689094590597 ] } }, +{ "type": "Feature", "properties": { "im": 3.73677993 }, "geometry": { "type": "Point", "coordinates": [ 85.310675700975082, 27.624301053035087 ] } }, +{ "type": "Feature", "properties": { "im": 0.0125293 }, "geometry": { "type": "Point", "coordinates": [ 85.311785666158116, 27.640452215446441 ] } }, +{ "type": "Feature", "properties": { "im": 1.18043005 }, "geometry": { "type": "Point", "coordinates": [ 85.304185784673066, 27.627236374963555 ] } }, +{ "type": "Feature", "properties": { "im": 1.65532005 }, "geometry": { "type": "Point", "coordinates": [ 85.312032453762797, 27.640220556818676 ] } }, +{ "type": "Feature", "properties": { "im": 0.154065 }, "geometry": { "type": "Point", "coordinates": [ 85.324705786795434, 27.626583217626884 ] } }, +{ "type": "Feature", "properties": { "im": 0.192819 }, "geometry": { "type": "Point", "coordinates": [ 85.319181839426051, 27.622021651414734 ] } }, +{ "type": "Feature", "properties": { "im": 1.91071999 }, "geometry": { "type": "Point", "coordinates": [ 85.308866872543149, 27.636499569132283 ] } }, +{ "type": "Feature", "properties": { "im": 0.346861 }, "geometry": { "type": "Point", "coordinates": [ 85.31909836371679, 27.639421902417958 ] } }, +{ "type": "Feature", "properties": { "im": 0.0703526 }, "geometry": { "type": "Point", "coordinates": [ 85.308645279946106, 27.623229345403061 ] } }, +{ "type": "Feature", "properties": { "im": 0.0820732 }, "geometry": { "type": "Point", "coordinates": [ 85.313639946120816, 27.637171439752084 ] } }, +{ "type": "Feature", "properties": { "im": 0.602956 }, "geometry": { "type": "Point", "coordinates": [ 85.318549457739834, 27.635552314606375 ] } }, +{ "type": "Feature", "properties": { "im": 0.0413364 }, "geometry": { "type": "Point", "coordinates": [ 85.310089432078939, 27.637398976138808 ] } }, +{ "type": "Feature", "properties": { "im": 0.072174 }, "geometry": { "type": "Point", "coordinates": [ 85.316648561810553, 27.625998274762324 ] } }, +{ "type": "Feature", "properties": { "im": 0.00910254 }, "geometry": { "type": "Point", "coordinates": [ 85.314158289352491, 27.623188158290041 ] } }, +{ "type": "Feature", "properties": { "im": 0.0334216 }, "geometry": { "type": "Point", "coordinates": [ 85.303580696014819, 27.619160160884039 ] } }, +{ "type": "Feature", "properties": { "im": 0.0182134 }, "geometry": { "type": "Point", "coordinates": [ 85.321114805637919, 27.636124933272335 ] } }, +{ "type": "Feature", "properties": { "im": 0.00779596 }, "geometry": { "type": "Point", "coordinates": [ 85.319131381225006, 27.627977908246727 ] } }, +{ "type": "Feature", "properties": { "im": 0.0253407 }, "geometry": { "type": "Point", "coordinates": [ 85.305167984118057, 27.621363741660982 ] } }, +{ "type": "Feature", "properties": { "im": 0.0543973 }, "geometry": { "type": "Point", "coordinates": [ 85.315590906607881, 27.636834133539825 ] } }, +{ "type": "Feature", "properties": { "im": 0.0169362 }, "geometry": { "type": "Point", "coordinates": [ 85.320170636908713, 27.640878985284807 ] } }, +{ "type": "Feature", "properties": { "im": 0.69881302 }, "geometry": { "type": "Point", "coordinates": [ 85.325566674793265, 27.637929725687584 ] } }, +{ "type": "Feature", "properties": { "im": 0.22768299 }, "geometry": { "type": "Point", "coordinates": [ 85.32550731039828, 27.641828049454798 ] } }, +{ "type": "Feature", "properties": { "im": 0.0491773 }, "geometry": { "type": "Point", "coordinates": [ 85.323857707481579, 27.639678084873456 ] } }, +{ "type": "Feature", "properties": { "im": 0.0057933 }, "geometry": { "type": "Point", "coordinates": [ 85.314026982178632, 27.638367516470321 ] } }, +{ "type": "Feature", "properties": { "im": 0.0271527 }, "geometry": { "type": "Point", "coordinates": [ 85.308054347385351, 27.624756478008045 ] } }, +{ "type": "Feature", "properties": { "im": 1.10484004 }, "geometry": { "type": "Point", "coordinates": [ 85.309934210194825, 27.63431035608059 ] } }, +{ "type": "Feature", "properties": { "im": 0.0134655 }, "geometry": { "type": "Point", "coordinates": [ 85.322587463830118, 27.633922470424519 ] } }, +{ "type": "Feature", "properties": { "im": 0.20236599 }, "geometry": { "type": "Point", "coordinates": [ 85.314884443564651, 27.632673803102907 ] } }, +{ "type": "Feature", "properties": { "im": 2.24794006 }, "geometry": { "type": "Point", "coordinates": [ 85.312097959835597, 27.639914486621858 ] } }, +{ "type": "Feature", "properties": { "im": 0.0161096 }, "geometry": { "type": "Point", "coordinates": [ 85.313178049970389, 27.631606093959096 ] } }, +{ "type": "Feature", "properties": { "im": 4.6747098 }, "geometry": { "type": "Point", "coordinates": [ 85.309840645532731, 27.617973002765076 ] } }, +{ "type": "Feature", "properties": { "im": 0.0294638 }, "geometry": { "type": "Point", "coordinates": [ 85.320277649929437, 27.621926619614534 ] } }, +{ "type": "Feature", "properties": { "im": 0.103363 }, "geometry": { "type": "Point", "coordinates": [ 85.309249185629525, 27.618218510011467 ] } }, +{ "type": "Feature", "properties": { "im": 1.15047002 }, "geometry": { "type": "Point", "coordinates": [ 85.304222325087153, 27.630124986235597 ] } }, +{ "type": "Feature", "properties": { "im": 0.479893 }, "geometry": { "type": "Point", "coordinates": [ 85.31043766122805, 27.629244145420984 ] } }, +{ "type": "Feature", "properties": { "im": 0.0148788 }, "geometry": { "type": "Point", "coordinates": [ 85.3171268940376, 27.637123551116272 ] } }, +{ "type": "Feature", "properties": { "im": 0.184461 }, "geometry": { "type": "Point", "coordinates": [ 85.310015935791057, 27.625033109143555 ] } }, +{ "type": "Feature", "properties": { "im": 0.0582842 }, "geometry": { "type": "Point", "coordinates": [ 85.304891538354696, 27.631414791014148 ] } }, +{ "type": "Feature", "properties": { "im": 0.0146244 }, "geometry": { "type": "Point", "coordinates": [ 85.303141463043289, 27.62267474129656 ] } }, +{ "type": "Feature", "properties": { "im": 1.61318004 }, "geometry": { "type": "Point", "coordinates": [ 85.312537474146836, 27.641652737012365 ] } }, +{ "type": "Feature", "properties": { "im": 0.0972587 }, "geometry": { "type": "Point", "coordinates": [ 85.310827065988704, 27.62764234449703 ] } }, +{ "type": "Feature", "properties": { "im": 3.29199004 }, "geometry": { "type": "Point", "coordinates": [ 85.307106664241559, 27.632344403042126 ] } }, +{ "type": "Feature", "properties": { "im": 0.00827994 }, "geometry": { "type": "Point", "coordinates": [ 85.317993430799561, 27.638776714200205 ] } }, +{ "type": "Feature", "properties": { "im": 0.0422266 }, "geometry": { "type": "Point", "coordinates": [ 85.322573053439868, 27.62157532469999 ] } }, +{ "type": "Feature", "properties": { "im": 0.00580062 }, "geometry": { "type": "Point", "coordinates": [ 85.321756247148343, 27.628623435860565 ] } }, +{ "type": "Feature", "properties": { "im": 0.0606527 }, "geometry": { "type": "Point", "coordinates": [ 85.312583075923513, 27.636039416031188 ] } }, +{ "type": "Feature", "properties": { "im": 0.00514399 }, "geometry": { "type": "Point", "coordinates": [ 85.314058436093362, 27.624414418808922 ] } }, +{ "type": "Feature", "properties": { "im": 0.024202 }, "geometry": { "type": "Point", "coordinates": [ 85.32039231574538, 27.639636146141349 ] } }, +{ "type": "Feature", "properties": { "im": 0.201869 }, "geometry": { "type": "Point", "coordinates": [ 85.316732585593826, 27.628454243925678 ] } }, +{ "type": "Feature", "properties": { "im": 0.0205345 }, "geometry": { "type": "Point", "coordinates": [ 85.308054069859509, 27.624774525680088 ] } }, +{ "type": "Feature", "properties": { "im": 0.0365171 }, "geometry": { "type": "Point", "coordinates": [ 85.309129855742754, 27.619390375516677 ] } }, +{ "type": "Feature", "properties": { "im": 0.0665502 }, "geometry": { "type": "Point", "coordinates": [ 85.303564363112542, 27.625477824948291 ] } }, +{ "type": "Feature", "properties": { "im": 0.00986356 }, "geometry": { "type": "Point", "coordinates": [ 85.311324058038949, 27.622991220014178 ] } }, +{ "type": "Feature", "properties": { "im": 2.88356996 }, "geometry": { "type": "Point", "coordinates": [ 85.310910022375992, 27.616957116263087 ] } }, +{ "type": "Feature", "properties": { "im": 0.026435 }, "geometry": { "type": "Point", "coordinates": [ 85.310505335945606, 27.640671282366501 ] } }, +{ "type": "Feature", "properties": { "im": 0.154898 }, "geometry": { "type": "Point", "coordinates": [ 85.313222137943526, 27.624765272034686 ] } }, +{ "type": "Feature", "properties": { "im": 0.17970601 }, "geometry": { "type": "Point", "coordinates": [ 85.316890795091027, 27.635333628595941 ] } }, +{ "type": "Feature", "properties": { "im": 0.105834 }, "geometry": { "type": "Point", "coordinates": [ 85.324728248360259, 27.626439079817686 ] } }, +{ "type": "Feature", "properties": { "im": 0.0163565 }, "geometry": { "type": "Point", "coordinates": [ 85.307623283555415, 27.623794512652552 ] } }, +{ "type": "Feature", "properties": { "im": 0.0864395 }, "geometry": { "type": "Point", "coordinates": [ 85.321606083987021, 27.619866820030829 ] } }, +{ "type": "Feature", "properties": { "im": 0.28916499 }, "geometry": { "type": "Point", "coordinates": [ 85.323910983458788, 27.64150189048441 ] } }, +{ "type": "Feature", "properties": { "im": 0.0265164 }, "geometry": { "type": "Point", "coordinates": [ 85.307848074543784, 27.638165884678287 ] } }, +{ "type": "Feature", "properties": { "im": 0.117519 }, "geometry": { "type": "Point", "coordinates": [ 85.325775713532082, 27.636181291166043 ] } }, +{ "type": "Feature", "properties": { "im": 0.00702432 }, "geometry": { "type": "Point", "coordinates": [ 85.309039751632611, 27.627891329020748 ] } }, +{ "type": "Feature", "properties": { "im": 2.44544005 }, "geometry": { "type": "Point", "coordinates": [ 85.310317563953717, 27.621228007695535 ] } }, +{ "type": "Feature", "properties": { "im": 0.00714717 }, "geometry": { "type": "Point", "coordinates": [ 85.306797668061535, 27.635300999178384 ] } }, +{ "type": "Feature", "properties": { "im": 1.78594005 }, "geometry": { "type": "Point", "coordinates": [ 85.312092182571575, 27.641611214156406 ] } }, +{ "type": "Feature", "properties": { "im": 0.0915265 }, "geometry": { "type": "Point", "coordinates": [ 85.318727770824751, 27.62786470911627 ] } }, +{ "type": "Feature", "properties": { "im": 0.0199712 }, "geometry": { "type": "Point", "coordinates": [ 85.313301354744752, 27.632817015381708 ] } }, +{ "type": "Feature", "properties": { "im": 0.24960899 }, "geometry": { "type": "Point", "coordinates": [ 85.320198460403503, 27.631095628598448 ] } }, +{ "type": "Feature", "properties": { "im": 2.69205999 }, "geometry": { "type": "Point", "coordinates": [ 85.308312508910788, 27.63432668244527 ] } }, +{ "type": "Feature", "properties": { "im": 0.0183917 }, "geometry": { "type": "Point", "coordinates": [ 85.318071500205107, 27.627044451733344 ] } }, +{ "type": "Feature", "properties": { "im": 0.0481581 }, "geometry": { "type": "Point", "coordinates": [ 85.317009620862095, 27.635515581732289 ] } }, +{ "type": "Feature", "properties": { "im": 0.197936 }, "geometry": { "type": "Point", "coordinates": [ 85.318284432408603, 27.630350385763421 ] } }, +{ "type": "Feature", "properties": { "im": 0.015283 }, "geometry": { "type": "Point", "coordinates": [ 85.308328883400122, 27.630626418850536 ] } }, +{ "type": "Feature", "properties": { "im": 0.0433278 }, "geometry": { "type": "Point", "coordinates": [ 85.318452383078352, 27.624666323876934 ] } }, +{ "type": "Feature", "properties": { "im": 0.0448086 }, "geometry": { "type": "Point", "coordinates": [ 85.308232838912915, 27.630282277306417 ] } }, +{ "type": "Feature", "properties": { "im": 0.43534201 }, "geometry": { "type": "Point", "coordinates": [ 85.325902925568172, 27.633150237510424 ] } }, +{ "type": "Feature", "properties": { "im": 0.0486465 }, "geometry": { "type": "Point", "coordinates": [ 85.312155024764607, 27.63619666547573 ] } }, +{ "type": "Feature", "properties": { "im": 0.15108401 }, "geometry": { "type": "Point", "coordinates": [ 85.321289317873237, 27.626018422912487 ] } }, +{ "type": "Feature", "properties": { "im": 0.0613281 }, "geometry": { "type": "Point", "coordinates": [ 85.308636690453042, 27.625106551126372 ] } }, +{ "type": "Feature", "properties": { "im": 0.15790699 }, "geometry": { "type": "Point", "coordinates": [ 85.308672538994585, 27.632002490155415 ] } }, +{ "type": "Feature", "properties": { "im": 0.71191603 }, "geometry": { "type": "Point", "coordinates": [ 85.303804372200503, 27.63488534302012 ] } }, +{ "type": "Feature", "properties": { "im": 0.0768408 }, "geometry": { "type": "Point", "coordinates": [ 85.324807516032024, 27.638534293282607 ] } }, +{ "type": "Feature", "properties": { "im": 2.93383002 }, "geometry": { "type": "Point", "coordinates": [ 85.30711998392556, 27.63279584150694 ] } }, +{ "type": "Feature", "properties": { "im": 0.22525901 }, "geometry": { "type": "Point", "coordinates": [ 85.325003477207204, 27.620341115138206 ] } }, +{ "type": "Feature", "properties": { "im": 0.215509 }, "geometry": { "type": "Point", "coordinates": [ 85.322204689330817, 27.629784133836264 ] } }, +{ "type": "Feature", "properties": { "im": 2.71055007 }, "geometry": { "type": "Point", "coordinates": [ 85.310173707553773, 27.63059475855836 ] } }, +{ "type": "Feature", "properties": { "im": 0.26015601 }, "geometry": { "type": "Point", "coordinates": [ 85.311641518022455, 27.637959416215164 ] } }, +{ "type": "Feature", "properties": { "im": 2.56088996 }, "geometry": { "type": "Point", "coordinates": [ 85.310084675274624, 27.620557280583281 ] } }, +{ "type": "Feature", "properties": { "im": 0.0411651 }, "geometry": { "type": "Point", "coordinates": [ 85.312598524816153, 27.620497629690341 ] } }, +{ "type": "Feature", "properties": { "im": 0.49941799 }, "geometry": { "type": "Point", "coordinates": [ 85.313732157898713, 27.632479284617109 ] } }, +{ "type": "Feature", "properties": { "im": 0.80374599 }, "geometry": { "type": "Point", "coordinates": [ 85.324418815339072, 27.640100042841429 ] } }, +{ "type": "Feature", "properties": { "im": 0.00981996 }, "geometry": { "type": "Point", "coordinates": [ 85.30744449523219, 27.631464026170764 ] } }, +{ "type": "Feature", "properties": { "im": 0.0625227 }, "geometry": { "type": "Point", "coordinates": [ 85.314477117699823, 27.626188514514826 ] } }, +{ "type": "Feature", "properties": { "im": 0.0129572 }, "geometry": { "type": "Point", "coordinates": [ 85.314320860207374, 27.636385473063442 ] } }, +{ "type": "Feature", "properties": { "im": 2.68658996 }, "geometry": { "type": "Point", "coordinates": [ 85.310648089845813, 27.619499129886449 ] } }, +{ "type": "Feature", "properties": { "im": 0.16544101 }, "geometry": { "type": "Point", "coordinates": [ 85.325946750409557, 27.6329341530048 ] } }, +{ "type": "Feature", "properties": { "im": 0.103507 }, "geometry": { "type": "Point", "coordinates": [ 85.312567921920362, 27.625136386593006 ] } }, +{ "type": "Feature", "properties": { "im": 0.162269 }, "geometry": { "type": "Point", "coordinates": [ 85.326284320294434, 27.621403543879403 ] } }, +{ "type": "Feature", "properties": { "im": 0.00685154 }, "geometry": { "type": "Point", "coordinates": [ 85.321644365141736, 27.639940126147888 ] } }, +{ "type": "Feature", "properties": { "im": 0.0724052 }, "geometry": { "type": "Point", "coordinates": [ 85.31058979053914, 27.629895836949775 ] } }, +{ "type": "Feature", "properties": { "im": 0.48885801 }, "geometry": { "type": "Point", "coordinates": [ 85.31365165514157, 27.632442203491102 ] } }, +{ "type": "Feature", "properties": { "im": 0.0435298 }, "geometry": { "type": "Point", "coordinates": [ 85.314803663731098, 27.632654770337933 ] } }, +{ "type": "Feature", "properties": { "im": 2.09993005 }, "geometry": { "type": "Point", "coordinates": [ 85.308750553322525, 27.634837455083229 ] } }, +{ "type": "Feature", "properties": { "im": 0.00550438 }, "geometry": { "type": "Point", "coordinates": [ 85.307144736949894, 27.62723642327602 ] } }, +{ "type": "Feature", "properties": { "im": 1.18357003 }, "geometry": { "type": "Point", "coordinates": [ 85.309762570187445, 27.628333365976633 ] } }, +{ "type": "Feature", "properties": { "im": 0.105367 }, "geometry": { "type": "Point", "coordinates": [ 85.318569375089155, 27.640877625225791 ] } }, +{ "type": "Feature", "properties": { "im": 1.99181998 }, "geometry": { "type": "Point", "coordinates": [ 85.302981902178061, 27.639586590569355 ] } }, +{ "type": "Feature", "properties": { "im": 0.0987674 }, "geometry": { "type": "Point", "coordinates": [ 85.304353131608764, 27.636101472725272 ] } }, +{ "type": "Feature", "properties": { "im": 0.0154977 }, "geometry": { "type": "Point", "coordinates": [ 85.303751585260073, 27.62910837167145 ] } }, +{ "type": "Feature", "properties": { "im": 0.0724828 }, "geometry": { "type": "Point", "coordinates": [ 85.321115213417457, 27.625474781661083 ] } }, +{ "type": "Feature", "properties": { "im": 1.89547002 }, "geometry": { "type": "Point", "coordinates": [ 85.309372381044795, 27.636577938003402 ] } }, +{ "type": "Feature", "properties": { "im": 0.128005 }, "geometry": { "type": "Point", "coordinates": [ 85.326774771812254, 27.619802907345797 ] } }, +{ "type": "Feature", "properties": { "im": 0.0646968 }, "geometry": { "type": "Point", "coordinates": [ 85.30320959994441, 27.626141373138822 ] } }, +{ "type": "Feature", "properties": { "im": 0.0392803 }, "geometry": { "type": "Point", "coordinates": [ 85.307301597483345, 27.618357217226993 ] } }, +{ "type": "Feature", "properties": { "im": 0.0454972 }, "geometry": { "type": "Point", "coordinates": [ 85.317599339676391, 27.620811091571067 ] } }, +{ "type": "Feature", "properties": { "im": 0.114284 }, "geometry": { "type": "Point", "coordinates": [ 85.316832584306553, 27.625892201638223 ] } }, +{ "type": "Feature", "properties": { "im": 0.0193056 }, "geometry": { "type": "Point", "coordinates": [ 85.315894608554459, 27.632884637207731 ] } }, +{ "type": "Feature", "properties": { "im": 0.84470701 }, "geometry": { "type": "Point", "coordinates": [ 85.307571068868825, 27.632458378122589 ] } }, +{ "type": "Feature", "properties": { "im": 0.0830854 }, "geometry": { "type": "Point", "coordinates": [ 85.323064774427451, 27.641166737630353 ] } }, +{ "type": "Feature", "properties": { "im": 0.0116834 }, "geometry": { "type": "Point", "coordinates": [ 85.325024980415719, 27.622922690013393 ] } }, +{ "type": "Feature", "properties": { "im": 0.253582 }, "geometry": { "type": "Point", "coordinates": [ 85.321366675787317, 27.627589807003858 ] } }, +{ "type": "Feature", "properties": { "im": 3.04516006 }, "geometry": { "type": "Point", "coordinates": [ 85.3073756500401, 27.631986665937681 ] } }, +{ "type": "Feature", "properties": { "im": 0.0453742 }, "geometry": { "type": "Point", "coordinates": [ 85.306988786761423, 27.620248761505508 ] } }, +{ "type": "Feature", "properties": { "im": 0.0241336 }, "geometry": { "type": "Point", "coordinates": [ 85.31118665401776, 27.62270072975873 ] } }, +{ "type": "Feature", "properties": { "im": 0.0319803 }, "geometry": { "type": "Point", "coordinates": [ 85.309517573148185, 27.617896861603896 ] } }, +{ "type": "Feature", "properties": { "im": 0.0758884 }, "geometry": { "type": "Point", "coordinates": [ 85.324348290204824, 27.638077466136153 ] } }, +{ "type": "Feature", "properties": { "im": 0.0096797 }, "geometry": { "type": "Point", "coordinates": [ 85.311002632010826, 27.622806795430691 ] } }, +{ "type": "Feature", "properties": { "im": 2.45335007 }, "geometry": { "type": "Point", "coordinates": [ 85.324049909160593, 27.640366350435748 ] } }, +{ "type": "Feature", "properties": { "im": 0.0105948 }, "geometry": { "type": "Point", "coordinates": [ 85.318877466166157, 27.628678823639568 ] } }, +{ "type": "Feature", "properties": { "im": 0.75772399 }, "geometry": { "type": "Point", "coordinates": [ 85.304207904160819, 27.629745738366307 ] } }, +{ "type": "Feature", "properties": { "im": 1.53991997 }, "geometry": { "type": "Point", "coordinates": [ 85.311510108718252, 27.625394278400655 ] } }, +{ "type": "Feature", "properties": { "im": 2.89861989 }, "geometry": { "type": "Point", "coordinates": [ 85.30982351617196, 27.621727418442216 ] } }, +{ "type": "Feature", "properties": { "im": 2.03016996 }, "geometry": { "type": "Point", "coordinates": [ 85.311867874347769, 27.641698738179741 ] } }, +{ "type": "Feature", "properties": { "im": 0.136199 }, "geometry": { "type": "Point", "coordinates": [ 85.324930468521046, 27.623806055005183 ] } }, +{ "type": "Feature", "properties": { "im": 4.38668013 }, "geometry": { "type": "Point", "coordinates": [ 85.307149401094705, 27.633518241957429 ] } }, +{ "type": "Feature", "properties": { "im": 0.0145086 }, "geometry": { "type": "Point", "coordinates": [ 85.312461293239068, 27.624160330815339 ] } }, +{ "type": "Feature", "properties": { "im": 0.01 }, "geometry": { "type": "Point", "coordinates": [ 85.31318376213423, 27.641805010442113 ] } }, +{ "type": "Feature", "properties": { "im": 0.054713 }, "geometry": { "type": "Point", "coordinates": [ 85.312651069432775, 27.635570916038731 ] } }, +{ "type": "Feature", "properties": { "im": 0.0326338 }, "geometry": { "type": "Point", "coordinates": [ 85.3204255440926, 27.641441657283611 ] } }, +{ "type": "Feature", "properties": { "im": 0.0124317 }, "geometry": { "type": "Point", "coordinates": [ 85.313437413982015, 27.639804430119735 ] } }, +{ "type": "Feature", "properties": { "im": 0.046726 }, "geometry": { "type": "Point", "coordinates": [ 85.312695835154059, 27.618116068871995 ] } }, +{ "type": "Feature", "properties": { "im": 0.0412334 }, "geometry": { "type": "Point", "coordinates": [ 85.31935330849204, 27.621409990961386 ] } }, +{ "type": "Feature", "properties": { "im": 0.33453 }, "geometry": { "type": "Point", "coordinates": [ 85.307244055572525, 27.633952622276897 ] } }, +{ "type": "Feature", "properties": { "im": 0.0150524 }, "geometry": { "type": "Point", "coordinates": [ 85.31882704647164, 27.62136751108747 ] } }, +{ "type": "Feature", "properties": { "im": 0.0113852 }, "geometry": { "type": "Point", "coordinates": [ 85.307045513251083, 27.638950332145932 ] } }, +{ "type": "Feature", "properties": { "im": 2.95744991 }, "geometry": { "type": "Point", "coordinates": [ 85.309657285410481, 27.623313887006734 ] } }, +{ "type": "Feature", "properties": { "im": 0.0599512 }, "geometry": { "type": "Point", "coordinates": [ 85.304610432564004, 27.628613445307607 ] } }, +{ "type": "Feature", "properties": { "im": 0.0654252 }, "geometry": { "type": "Point", "coordinates": [ 85.307084521764494, 27.624564132868983 ] } }, +{ "type": "Feature", "properties": { "im": 0.00705647 }, "geometry": { "type": "Point", "coordinates": [ 85.325402761621575, 27.624732366928161 ] } }, +{ "type": "Feature", "properties": { "im": 0.0353825 }, "geometry": { "type": "Point", "coordinates": [ 85.32252393251072, 27.640745019439077 ] } }, +{ "type": "Feature", "properties": { "im": 0.0168311 }, "geometry": { "type": "Point", "coordinates": [ 85.320372802501026, 27.626314195224786 ] } }, +{ "type": "Feature", "properties": { "im": 0.014446 }, "geometry": { "type": "Point", "coordinates": [ 85.316005140554267, 27.633608022785236 ] } }, +{ "type": "Feature", "properties": { "im": 0.0214735 }, "geometry": { "type": "Point", "coordinates": [ 85.311930727876657, 27.636284190161135 ] } }, +{ "type": "Feature", "properties": { "im": 0.0169219 }, "geometry": { "type": "Point", "coordinates": [ 85.324421544060456, 27.635930268690796 ] } }, +{ "type": "Feature", "properties": { "im": 0.0448192 }, "geometry": { "type": "Point", "coordinates": [ 85.320311669376167, 27.640934847303786 ] } }, +{ "type": "Feature", "properties": { "im": 0.00598603 }, "geometry": { "type": "Point", "coordinates": [ 85.304064548684281, 27.616693083331821 ] } }, +{ "type": "Feature", "properties": { "im": 0.0172526 }, "geometry": { "type": "Point", "coordinates": [ 85.309221220686709, 27.622676784468485 ] } }, +{ "type": "Feature", "properties": { "im": 0.0713676 }, "geometry": { "type": "Point", "coordinates": [ 85.321113010270338, 27.625619163993555 ] } }, +{ "type": "Feature", "properties": { "im": 4.88927984 }, "geometry": { "type": "Point", "coordinates": [ 85.309841476990542, 27.61791885964567 ] } }, +{ "type": "Feature", "properties": { "im": 3.87420988 }, "geometry": { "type": "Point", "coordinates": [ 85.309797155619194, 27.622124220840576 ] } }, +{ "type": "Feature", "properties": { "im": 0.0182628 }, "geometry": { "type": "Point", "coordinates": [ 85.326403492736929, 27.626892533469537 ] } }, +{ "type": "Feature", "properties": { "im": 0.0257724 }, "geometry": { "type": "Point", "coordinates": [ 85.307498592921036, 27.635851087619255 ] } }, +{ "type": "Feature", "properties": { "im": 1.05517995 }, "geometry": { "type": "Point", "coordinates": [ 85.309576909213021, 27.631183169528398 ] } }, +{ "type": "Feature", "properties": { "im": 3.04569006 }, "geometry": { "type": "Point", "coordinates": [ 85.31188485467095, 27.626066730075017 ] } }, +{ "type": "Feature", "properties": { "im": 0.0229305 }, "geometry": { "type": "Point", "coordinates": [ 85.32493170304555, 27.62106229467312 ] } }, +{ "type": "Feature", "properties": { "im": 0.79621601 }, "geometry": { "type": "Point", "coordinates": [ 85.320439973225206, 27.631206860619919 ] } }, +{ "type": "Feature", "properties": { "im": 0.0213231 }, "geometry": { "type": "Point", "coordinates": [ 85.306238903725585, 27.633416868083252 ] } }, +{ "type": "Feature", "properties": { "im": 0.166409 }, "geometry": { "type": "Point", "coordinates": [ 85.325532873157613, 27.629499440118163 ] } }, +{ "type": "Feature", "properties": { "im": 0.0159695 }, "geometry": { "type": "Point", "coordinates": [ 85.313762242095962, 27.623905387477389 ] } }, +{ "type": "Feature", "properties": { "im": 0.0105091 }, "geometry": { "type": "Point", "coordinates": [ 85.30967916664089, 27.64035434445012 ] } }, +{ "type": "Feature", "properties": { "im": 0.0408514 }, "geometry": { "type": "Point", "coordinates": [ 85.314073444461854, 27.624757571962064 ] } }, +{ "type": "Feature", "properties": { "im": 0.00676638 }, "geometry": { "type": "Point", "coordinates": [ 85.321865163368656, 27.62945510544278 ] } }, +{ "type": "Feature", "properties": { "im": 0.16576201 }, "geometry": { "type": "Point", "coordinates": [ 85.316227776393077, 27.637600014091458 ] } }, +{ "type": "Feature", "properties": { "im": 0.127534 }, "geometry": { "type": "Point", "coordinates": [ 85.313397449632248, 27.622583222333557 ] } }, +{ "type": "Feature", "properties": { "im": 0.0115102 }, "geometry": { "type": "Point", "coordinates": [ 85.307285777311932, 27.618068207068355 ] } }, +{ "type": "Feature", "properties": { "im": 2.25112009 }, "geometry": { "type": "Point", "coordinates": [ 85.303068171601524, 27.63530955929674 ] } }, +{ "type": "Feature", "properties": { "im": 0.0408485 }, "geometry": { "type": "Point", "coordinates": [ 85.316287073842275, 27.617834785705103 ] } }, +{ "type": "Feature", "properties": { "im": 0.0217681 }, "geometry": { "type": "Point", "coordinates": [ 85.303107047800609, 27.640671182015865 ] } }, +{ "type": "Feature", "properties": { "im": 0.0122013 }, "geometry": { "type": "Point", "coordinates": [ 85.325683632771387, 27.626252054493595 ] } }, +{ "type": "Feature", "properties": { "im": 0.71177799 }, "geometry": { "type": "Point", "coordinates": [ 85.31139502824837, 27.628930886977027 ] } }, +{ "type": "Feature", "properties": { "im": 2.16004992 }, "geometry": { "type": "Point", "coordinates": [ 85.303004720875165, 27.632853845584325 ] } }, +{ "type": "Feature", "properties": { "im": 0.0126005 }, "geometry": { "type": "Point", "coordinates": [ 85.306958164439664, 27.631458089309501 ] } }, +{ "type": "Feature", "properties": { "im": 0.0230512 }, "geometry": { "type": "Point", "coordinates": [ 85.313525315523265, 27.626140841438893 ] } }, +{ "type": "Feature", "properties": { "im": 0.0249444 }, "geometry": { "type": "Point", "coordinates": [ 85.322574153868899, 27.621503133437955 ] } }, +{ "type": "Feature", "properties": { "im": 0.0113946 }, "geometry": { "type": "Point", "coordinates": [ 85.315144687633151, 27.626268830527284 ] } }, +{ "type": "Feature", "properties": { "im": 0.0402891 }, "geometry": { "type": "Point", "coordinates": [ 85.317808978502654, 27.621680087850557 ] } }, +{ "type": "Feature", "properties": { "im": 0.0170347 }, "geometry": { "type": "Point", "coordinates": [ 85.304668202547944, 27.627494987582462 ] } }, +{ "type": "Feature", "properties": { "im": 2.18505001 }, "geometry": { "type": "Point", "coordinates": [ 85.30850405087881, 27.637686511383073 ] } }, +{ "type": "Feature", "properties": { "im": 0.15033101 }, "geometry": { "type": "Point", "coordinates": [ 85.310163813338988, 27.622002330912185 ] } }, +{ "type": "Feature", "properties": { "im": 2.0662601 }, "geometry": { "type": "Point", "coordinates": [ 85.31025251837184, 27.629422400203872 ] } }, +{ "type": "Feature", "properties": { "im": 2.53839993 }, "geometry": { "type": "Point", "coordinates": [ 85.308590940007136, 27.637308499757395 ] } }, +{ "type": "Feature", "properties": { "im": 0.54673702 }, "geometry": { "type": "Point", "coordinates": [ 85.325978214319676, 27.633530220233204 ] } }, +{ "type": "Feature", "properties": { "im": 0.0131099 }, "geometry": { "type": "Point", "coordinates": [ 85.313551255804896, 27.640311244365009 ] } }, +{ "type": "Feature", "properties": { "im": 0.0426641 }, "geometry": { "type": "Point", "coordinates": [ 85.309358532207767, 27.617696361426713 ] } }, +{ "type": "Feature", "properties": { "im": 0.0752102 }, "geometry": { "type": "Point", "coordinates": [ 85.320879338971324, 27.623666813489898 ] } }, +{ "type": "Feature", "properties": { "im": 3.78461003 }, "geometry": { "type": "Point", "coordinates": [ 85.303275640834457, 27.638940349790385 ] } }, +{ "type": "Feature", "properties": { "im": 0.0270637 }, "geometry": { "type": "Point", "coordinates": [ 85.315054696648872, 27.638759082208036 ] } }, +{ "type": "Feature", "properties": { "im": 0.184964 }, "geometry": { "type": "Point", "coordinates": [ 85.322220717538713, 27.620758761852418 ] } }, +{ "type": "Feature", "properties": { "im": 0.123301 }, "geometry": { "type": "Point", "coordinates": [ 85.306766443131536, 27.622845399886085 ] } }, +{ "type": "Feature", "properties": { "im": 0.212139 }, "geometry": { "type": "Point", "coordinates": [ 85.322977209050904, 27.640263123475201 ] } }, +{ "type": "Feature", "properties": { "im": 0.0532904 }, "geometry": { "type": "Point", "coordinates": [ 85.309215338402055, 27.619102600291345 ] } }, +{ "type": "Feature", "properties": { "im": 0.01 }, "geometry": { "type": "Point", "coordinates": [ 85.325302727293703, 27.641951936030402 ] } }, +{ "type": "Feature", "properties": { "im": 0.144109 }, "geometry": { "type": "Point", "coordinates": [ 85.309663685268887, 27.624216518435905 ] } }, +{ "type": "Feature", "properties": { "im": 0.00681468 }, "geometry": { "type": "Point", "coordinates": [ 85.319044812905204, 27.628337881143132 ] } }, +{ "type": "Feature", "properties": { "im": 0.0843615 }, "geometry": { "type": "Point", "coordinates": [ 85.308269748215906, 27.626564211255495 ] } }, +{ "type": "Feature", "properties": { "im": 0.149358 }, "geometry": { "type": "Point", "coordinates": [ 85.309850680530417, 27.619958743950431 ] } }, +{ "type": "Feature", "properties": { "im": 0.35835001 }, "geometry": { "type": "Point", "coordinates": [ 85.311562078054237, 27.627290273722938 ] } }, +{ "type": "Feature", "properties": { "im": 0.0218053 }, "geometry": { "type": "Point", "coordinates": [ 85.308290292970341, 27.627864137689436 ] } }, +{ "type": "Feature", "properties": { "im": 0.388695 }, "geometry": { "type": "Point", "coordinates": [ 85.312251499097925, 27.632551526276512 ] } }, +{ "type": "Feature", "properties": { "im": 0.0471423 }, "geometry": { "type": "Point", "coordinates": [ 85.311784041289698, 27.632636091197867 ] } }, +{ "type": "Feature", "properties": { "im": 0.0990387 }, "geometry": { "type": "Point", "coordinates": [ 85.313655735088787, 27.620275822661391 ] } }, +{ "type": "Feature", "properties": { "im": 0.375617 }, "geometry": { "type": "Point", "coordinates": [ 85.310111341191245, 27.635973210988169 ] } }, +{ "type": "Feature", "properties": { "im": 0.0277678 }, "geometry": { "type": "Point", "coordinates": [ 85.325216825767782, 27.624964786716628 ] } }, +{ "type": "Feature", "properties": { "im": 1.55158997 }, "geometry": { "type": "Point", "coordinates": [ 85.310073010168296, 27.634510609285403 ] } }, +{ "type": "Feature", "properties": { "im": 0.14867599 }, "geometry": { "type": "Point", "coordinates": [ 85.307868361026451, 27.618400234356876 ] } }, +{ "type": "Feature", "properties": { "im": 0.0482807 }, "geometry": { "type": "Point", "coordinates": [ 85.312186645247152, 27.620925844587376 ] } }, +{ "type": "Feature", "properties": { "im": 0.00625798 }, "geometry": { "type": "Point", "coordinates": [ 85.310799258432155, 27.637371523855958 ] } }, +{ "type": "Feature", "properties": { "im": 0.0615336 }, "geometry": { "type": "Point", "coordinates": [ 85.303361071178642, 27.628146890248019 ] } }, +{ "type": "Feature", "properties": { "im": 2.14345002 }, "geometry": { "type": "Point", "coordinates": [ 85.313039081037672, 27.640666034144459 ] } }, +{ "type": "Feature", "properties": { "im": 0.0553933 }, "geometry": { "type": "Point", "coordinates": [ 85.308524805633169, 27.621837944170078 ] } }, +{ "type": "Feature", "properties": { "im": 0.00566963 }, "geometry": { "type": "Point", "coordinates": [ 85.313495302354497, 27.625454535266847 ] } }, +{ "type": "Feature", "properties": { "im": 0.088293 }, "geometry": { "type": "Point", "coordinates": [ 85.321532138837355, 27.639325030327658 ] } }, +{ "type": "Feature", "properties": { "im": 0.118799 }, "geometry": { "type": "Point", "coordinates": [ 85.309743903442779, 27.62427164928015 ] } }, +{ "type": "Feature", "properties": { "im": 0.142158 }, "geometry": { "type": "Point", "coordinates": [ 85.314953836609192, 27.628143825038734 ] } }, +{ "type": "Feature", "properties": { "im": 0.78076798 }, "geometry": { "type": "Point", "coordinates": [ 85.304347610305427, 27.627256404699835 ] } }, +{ "type": "Feature", "properties": { "im": 0.0162669 }, "geometry": { "type": "Point", "coordinates": [ 85.321108093113281, 27.640547370224933 ] } }, +{ "type": "Feature", "properties": { "im": 0.318477 }, "geometry": { "type": "Point", "coordinates": [ 85.319218089775575, 27.620975125458422 ] } }, +{ "type": "Feature", "properties": { "im": 1.34850001 }, "geometry": { "type": "Point", "coordinates": [ 85.30759160252974, 27.633758303283244 ] } }, +{ "type": "Feature", "properties": { "im": 0.116373 }, "geometry": { "type": "Point", "coordinates": [ 85.303579257896175, 27.620568124835767 ] } }, +{ "type": "Feature", "properties": { "im": 0.304021 }, "geometry": { "type": "Point", "coordinates": [ 85.325111042017511, 27.631913198007915 ] } }, +{ "type": "Feature", "properties": { "im": 0.0434575 }, "geometry": { "type": "Point", "coordinates": [ 85.307487205054201, 27.63659104073599 ] } }, +{ "type": "Feature", "properties": { "im": 3.52769995 }, "geometry": { "type": "Point", "coordinates": [ 85.310654607191537, 27.624354949323024 ] } }, +{ "type": "Feature", "properties": { "im": 0.0200537 }, "geometry": { "type": "Point", "coordinates": [ 85.321082867155283, 27.640871984344983 ] } }, +{ "type": "Feature", "properties": { "im": 0.00653286 }, "geometry": { "type": "Point", "coordinates": [ 85.318108510733623, 27.640529064621468 ] } }, +{ "type": "Feature", "properties": { "im": 0.0744668 }, "geometry": { "type": "Point", "coordinates": [ 85.31356451130624, 27.632838267193399 ] } }, +{ "type": "Feature", "properties": { "im": 0.213525 }, "geometry": { "type": "Point", "coordinates": [ 85.324508733609392, 27.634198414728168 ] } }, +{ "type": "Feature", "properties": { "im": 0.00857175 }, "geometry": { "type": "Point", "coordinates": [ 85.310260530383488, 27.627581289650834 ] } }, +{ "type": "Feature", "properties": { "im": 0.29051501 }, "geometry": { "type": "Point", "coordinates": [ 85.324605370040445, 27.625192066575302 ] } }, +{ "type": "Feature", "properties": { "im": 0.00544753 }, "geometry": { "type": "Point", "coordinates": [ 85.315176566493037, 27.621539830216399 ] } }, +{ "type": "Feature", "properties": { "im": 0.254994 }, "geometry": { "type": "Point", "coordinates": [ 85.313587899402307, 27.62866875378732 ] } }, +{ "type": "Feature", "properties": { "im": 0.0783529 }, "geometry": { "type": "Point", "coordinates": [ 85.321386667224047, 27.636904422147548 ] } }, +{ "type": "Feature", "properties": { "im": 0.0482987 }, "geometry": { "type": "Point", "coordinates": [ 85.320649702321347, 27.640036388007424 ] } }, +{ "type": "Feature", "properties": { "im": 1.16218996 }, "geometry": { "type": "Point", "coordinates": [ 85.310686289557907, 27.638128291200129 ] } }, +{ "type": "Feature", "properties": { "im": 0.0342771 }, "geometry": { "type": "Point", "coordinates": [ 85.310168801950425, 27.621677472323434 ] } }, +{ "type": "Feature", "properties": { "im": 0.0175746 }, "geometry": { "type": "Point", "coordinates": [ 85.315257901774658, 27.638725449470215 ] } }, +{ "type": "Feature", "properties": { "im": 0.00701585 }, "geometry": { "type": "Point", "coordinates": [ 85.320066188010415, 27.619848178537765 ] } }, +{ "type": "Feature", "properties": { "im": 1.75572002 }, "geometry": { "type": "Point", "coordinates": [ 85.308882419268883, 27.636806626328866 ] } }, +{ "type": "Feature", "properties": { "im": 0.01 }, "geometry": { "type": "Point", "coordinates": [ 85.326947333102211, 27.617783257526604 ] } }, +{ "type": "Feature", "properties": { "im": 0.0578224 }, "geometry": { "type": "Point", "coordinates": [ 85.325030112785313, 27.634565736264392 ] } }, +{ "type": "Feature", "properties": { "im": 0.25138 }, "geometry": { "type": "Point", "coordinates": [ 85.316532580403646, 27.637549562115876 ] } }, +{ "type": "Feature", "properties": { "im": 0.00905415 }, "geometry": { "type": "Point", "coordinates": [ 85.315403308470408, 27.617318624638415 ] } }, +{ "type": "Feature", "properties": { "im": 0.00678068 }, "geometry": { "type": "Point", "coordinates": [ 85.315055790082624, 27.629426690856686 ] } }, +{ "type": "Feature", "properties": { "im": 1.52183998 }, "geometry": { "type": "Point", "coordinates": [ 85.310005507412384, 27.617794500573385 ] } }, +{ "type": "Feature", "properties": { "im": 0.0351982 }, "geometry": { "type": "Point", "coordinates": [ 85.309023052230785, 27.623703279390224 ] } }, +{ "type": "Feature", "properties": { "im": 0.00737182 }, "geometry": { "type": "Point", "coordinates": [ 85.311619830126901, 27.636731680931405 ] } }, +{ "type": "Feature", "properties": { "im": 0.52989399 }, "geometry": { "type": "Point", "coordinates": [ 85.31665860397392, 27.641233510242358 ] } }, +{ "type": "Feature", "properties": { "im": 0.161752 }, "geometry": { "type": "Point", "coordinates": [ 85.312471082922954, 27.619557422453994 ] } }, +{ "type": "Feature", "properties": { "im": 0.0526416 }, "geometry": { "type": "Point", "coordinates": [ 85.306647079115749, 27.624017261098327 ] } }, +{ "type": "Feature", "properties": { "im": 0.0140501 }, "geometry": { "type": "Point", "coordinates": [ 85.303681162419281, 27.640244983897855 ] } }, +{ "type": "Feature", "properties": { "im": 0.0764398 }, "geometry": { "type": "Point", "coordinates": [ 85.316246551103859, 27.617834293838008 ] } }, +{ "type": "Feature", "properties": { "im": 0.00682584 }, "geometry": { "type": "Point", "coordinates": [ 85.30805933890089, 27.623113892470826 ] } }, +{ "type": "Feature", "properties": { "im": 2.2321701 }, "geometry": { "type": "Point", "coordinates": [ 85.312712616838141, 27.640806469689942 ] } }, +{ "type": "Feature", "properties": { "im": 0.00708775 }, "geometry": { "type": "Point", "coordinates": [ 85.323823867217584, 27.64189796146422 ] } }, +{ "type": "Feature", "properties": { "im": 0.00862985 }, "geometry": { "type": "Point", "coordinates": [ 85.323060024917694, 27.638820037024455 ] } }, +{ "type": "Feature", "properties": { "im": 0.680457 }, "geometry": { "type": "Point", "coordinates": [ 85.310113598734276, 27.638464281893295 ] } }, +{ "type": "Feature", "properties": { "im": 1.39909995 }, "geometry": { "type": "Point", "coordinates": [ 85.324157199039959, 27.641306304825267 ] } }, +{ "type": "Feature", "properties": { "im": 0.0117082 }, "geometry": { "type": "Point", "coordinates": [ 85.324829909646681, 27.625086471967279 ] } }, +{ "type": "Feature", "properties": { "im": 0.0842287 }, "geometry": { "type": "Point", "coordinates": [ 85.313719745532097, 27.63989811962831 ] } }, +{ "type": "Feature", "properties": { "im": 0.75525099 }, "geometry": { "type": "Point", "coordinates": [ 85.305582993936213, 27.618101570896691 ] } }, +{ "type": "Feature", "properties": { "im": 0.013654 }, "geometry": { "type": "Point", "coordinates": [ 85.325807517635099, 27.635423527911083 ] } }, +{ "type": "Feature", "properties": { "im": 0.12567399 }, "geometry": { "type": "Point", "coordinates": [ 85.309680897954834, 27.624415289957117 ] } }, +{ "type": "Feature", "properties": { "im": 0.031856 }, "geometry": { "type": "Point", "coordinates": [ 85.314444672263889, 27.617722155030087 ] } }, +{ "type": "Feature", "properties": { "im": 0.099332 }, "geometry": { "type": "Point", "coordinates": [ 85.326343683785922, 27.622830301924832 ] } }, +{ "type": "Feature", "properties": { "im": 0.0320027 }, "geometry": { "type": "Point", "coordinates": [ 85.314128470572399, 27.621166073069247 ] } }, +{ "type": "Feature", "properties": { "im": 0.00586545 }, "geometry": { "type": "Point", "coordinates": [ 85.316488873291505, 27.628487387767645 ] } }, +{ "type": "Feature", "properties": { "im": 0.0987513 }, "geometry": { "type": "Point", "coordinates": [ 85.319941779457494, 27.629323510456764 ] } }, +{ "type": "Feature", "properties": { "im": 2.50594997 }, "geometry": { "type": "Point", "coordinates": [ 85.310867838234159, 27.617064909150962 ] } }, +{ "type": "Feature", "properties": { "im": 0.91015399 }, "geometry": { "type": "Point", "coordinates": [ 85.324713806871131, 27.639363512184332 ] } }, +{ "type": "Feature", "properties": { "im": 0.40011999 }, "geometry": { "type": "Point", "coordinates": [ 85.319979974930988, 27.633457676316169 ] } }, +{ "type": "Feature", "properties": { "im": 0.138795 }, "geometry": { "type": "Point", "coordinates": [ 85.320452836360431, 27.639654930403083 ] } }, +{ "type": "Feature", "properties": { "im": 0.0672042 }, "geometry": { "type": "Point", "coordinates": [ 85.318526279865267, 27.622483034735868 ] } }, +{ "type": "Feature", "properties": { "im": 1.58694005 }, "geometry": { "type": "Point", "coordinates": [ 85.3131229120049, 27.640486543705872 ] } }, +{ "type": "Feature", "properties": { "im": 0.0234095 }, "geometry": { "type": "Point", "coordinates": [ 85.303718304249472, 27.635209208307451 ] } }, +{ "type": "Feature", "properties": { "im": 0.57794201 }, "geometry": { "type": "Point", "coordinates": [ 85.315908608088307, 27.634617710735718 ] } }, +{ "type": "Feature", "properties": { "im": 0.00842024 }, "geometry": { "type": "Point", "coordinates": [ 85.326062257127319, 27.628007586275398 ] } }, +{ "type": "Feature", "properties": { "im": 1.87733996 }, "geometry": { "type": "Point", "coordinates": [ 85.303157026027876, 27.634805218508461 ] } }, +{ "type": "Feature", "properties": { "im": 1.12671995 }, "geometry": { "type": "Point", "coordinates": [ 85.317280133409085, 27.633731807662006 ] } }, +{ "type": "Feature", "properties": { "im": 0.499836 }, "geometry": { "type": "Point", "coordinates": [ 85.318311557491299, 27.617967650693856 ] } }, +{ "type": "Feature", "properties": { "im": 0.193022 }, "geometry": { "type": "Point", "coordinates": [ 85.321473611611708, 27.625894295637188 ] } }, +{ "type": "Feature", "properties": { "im": 1.04635 }, "geometry": { "type": "Point", "coordinates": [ 85.318933734231436, 27.619690049481157 ] } }, +{ "type": "Feature", "properties": { "im": 0.00847205 }, "geometry": { "type": "Point", "coordinates": [ 85.318910559938303, 27.626513091763648 ] } }, +{ "type": "Feature", "properties": { "im": 0.0142561 }, "geometry": { "type": "Point", "coordinates": [ 85.307365894451223, 27.636571508830411 ] } }, +{ "type": "Feature", "properties": { "im": 0.0250468 }, "geometry": { "type": "Point", "coordinates": [ 85.308775785121853, 27.629241939126107 ] } }, +{ "type": "Feature", "properties": { "im": 0.0114895 }, "geometry": { "type": "Point", "coordinates": [ 85.321296145355106, 27.641506355103651 ] } }, +{ "type": "Feature", "properties": { "im": 2.21740007 }, "geometry": { "type": "Point", "coordinates": [ 85.308593714116725, 27.635810297899575 ] } }, +{ "type": "Feature", "properties": { "im": 0.0295056 }, "geometry": { "type": "Point", "coordinates": [ 85.307665133835371, 27.638199753857492 ] } }, +{ "type": "Feature", "properties": { "im": 0.0325148 }, "geometry": { "type": "Point", "coordinates": [ 85.313003207959326, 27.620538654377579 ] } }, +{ "type": "Feature", "properties": { "im": 0.89640898 }, "geometry": { "type": "Point", "coordinates": [ 85.31590547725358, 27.633498505910996 ] } }, +{ "type": "Feature", "properties": { "im": 0.0950768 }, "geometry": { "type": "Point", "coordinates": [ 85.308806486198222, 27.61801455148451 ] } }, +{ "type": "Feature", "properties": { "im": 0.20166899 }, "geometry": { "type": "Point", "coordinates": [ 85.314929464980295, 27.620471813361451 ] } }, +{ "type": "Feature", "properties": { "im": 0.158627 }, "geometry": { "type": "Point", "coordinates": [ 85.320056072635893, 27.641744049049326 ] } }, +{ "type": "Feature", "properties": { "im": 0.0196554 }, "geometry": { "type": "Point", "coordinates": [ 85.310687542730975, 27.620889543739626 ] } }, +{ "type": "Feature", "properties": { "im": 0.18475799 }, "geometry": { "type": "Point", "coordinates": [ 85.314380965101094, 27.639075811801181 ] } }, +{ "type": "Feature", "properties": { "im": 0.023921 }, "geometry": { "type": "Point", "coordinates": [ 85.320366401022298, 27.641332634253995 ] } }, +{ "type": "Feature", "properties": { "im": 0.58426797 }, "geometry": { "type": "Point", "coordinates": [ 85.318820243252247, 27.631096977724319 ] } }, +{ "type": "Feature", "properties": { "im": 0.22123601 }, "geometry": { "type": "Point", "coordinates": [ 85.303112349429455, 27.621934292592389 ] } }, +{ "type": "Feature", "properties": { "im": 0.23982801 }, "geometry": { "type": "Point", "coordinates": [ 85.323415096664874, 27.632813310586652 ] } }, +{ "type": "Feature", "properties": { "im": 1.34834003 }, "geometry": { "type": "Point", "coordinates": [ 85.304648693205337, 27.630076046366373 ] } }, +{ "type": "Feature", "properties": { "im": 0.413102 }, "geometry": { "type": "Point", "coordinates": [ 85.310181286228669, 27.635378379023454 ] } }, +{ "type": "Feature", "properties": { "im": 0.0118569 }, "geometry": { "type": "Point", "coordinates": [ 85.318447217274908, 27.631633987757276 ] } }, +{ "type": "Feature", "properties": { "im": 0.00587167 }, "geometry": { "type": "Point", "coordinates": [ 85.314828585607543, 27.636319440553677 ] } }, +{ "type": "Feature", "properties": { "im": 0.0130859 }, "geometry": { "type": "Point", "coordinates": [ 85.313820540340245, 27.624068556061658 ] } }, +{ "type": "Feature", "properties": { "im": 0.26315999 }, "geometry": { "type": "Point", "coordinates": [ 85.325062945975148, 27.635071564351243 ] } }, +{ "type": "Feature", "properties": { "im": 0.0151864 }, "geometry": { "type": "Point", "coordinates": [ 85.319527390805874, 27.637874709881444 ] } }, +{ "type": "Feature", "properties": { "im": 0.0179754 }, "geometry": { "type": "Point", "coordinates": [ 85.314306392182061, 27.630717261153418 ] } }, +{ "type": "Feature", "properties": { "im": 0.12542699 }, "geometry": { "type": "Point", "coordinates": [ 85.321834639286777, 27.620826295890193 ] } }, +{ "type": "Feature", "properties": { "im": 0.0770012 }, "geometry": { "type": "Point", "coordinates": [ 85.324769537343499, 27.622396121561653 ] } }, +{ "type": "Feature", "properties": { "im": 0.21017399 }, "geometry": { "type": "Point", "coordinates": [ 85.32668228766012, 27.617888367599896 ] } }, +{ "type": "Feature", "properties": { "im": 2.75652003 }, "geometry": { "type": "Point", "coordinates": [ 85.325278305864515, 27.62758294522185 ] } }, +{ "type": "Feature", "properties": { "im": 0.798527 }, "geometry": { "type": "Point", "coordinates": [ 85.313639547899456, 27.618687129061762 ] } }, +{ "type": "Feature", "properties": { "im": 2.40028 }, "geometry": { "type": "Point", "coordinates": [ 85.310230339936609, 27.630866214481649 ] } }, +{ "type": "Feature", "properties": { "im": 0.024518 }, "geometry": { "type": "Point", "coordinates": [ 85.307431760750291, 27.624387860375951 ] } }, +{ "type": "Feature", "properties": { "im": 0.0274498 }, "geometry": { "type": "Point", "coordinates": [ 85.30532484263712, 27.64143840062906 ] } }, +{ "type": "Feature", "properties": { "im": 3.29715991 }, "geometry": { "type": "Point", "coordinates": [ 85.310169523975389, 27.629547746309829 ] } }, +{ "type": "Feature", "properties": { "im": 1.03251004 }, "geometry": { "type": "Point", "coordinates": [ 85.30486654642128, 27.631721352923879 ] } }, +{ "type": "Feature", "properties": { "im": 0.026107 }, "geometry": { "type": "Point", "coordinates": [ 85.323089865663434, 27.631545799485732 ] } }, +{ "type": "Feature", "properties": { "im": 0.0147929 }, "geometry": { "type": "Point", "coordinates": [ 85.321949792822593, 27.63586427456255 ] } }, +{ "type": "Feature", "properties": { "im": 0.0172775 }, "geometry": { "type": "Point", "coordinates": [ 85.325228158358954, 27.633539214228673 ] } }, +{ "type": "Feature", "properties": { "im": 0.14901599 }, "geometry": { "type": "Point", "coordinates": [ 85.314382715828543, 27.625736089963947 ] } }, +{ "type": "Feature", "properties": { "im": 0.00565622 }, "geometry": { "type": "Point", "coordinates": [ 85.314330420549936, 27.623858140889798 ] } }, +{ "type": "Feature", "properties": { "im": 0.167478 }, "geometry": { "type": "Point", "coordinates": [ 85.307808686834434, 27.618327302104309 ] } }, +{ "type": "Feature", "properties": { "im": 0.16523799 }, "geometry": { "type": "Point", "coordinates": [ 85.313054863713575, 27.621134968716589 ] } }, +{ "type": "Feature", "properties": { "im": 0.0290639 }, "geometry": { "type": "Point", "coordinates": [ 85.316267199456789, 27.641643931647888 ] } }, +{ "type": "Feature", "properties": { "im": 0.41145 }, "geometry": { "type": "Point", "coordinates": [ 85.3101981042782, 27.629006562819722 ] } }, +{ "type": "Feature", "properties": { "im": 3.96438003 }, "geometry": { "type": "Point", "coordinates": [ 85.310373535539654, 27.617582370804641 ] } }, +{ "type": "Feature", "properties": { "im": 0.0233585 }, "geometry": { "type": "Point", "coordinates": [ 85.32121378747614, 27.619013669039802 ] } }, +{ "type": "Feature", "properties": { "im": 0.00524498 }, "geometry": { "type": "Point", "coordinates": [ 85.303792565043338, 27.631708220009411 ] } }, +{ "type": "Feature", "properties": { "im": 0.232186 }, "geometry": { "type": "Point", "coordinates": [ 85.306125535433281, 27.62366792251213 ] } }, +{ "type": "Feature", "properties": { "im": 0.85285199 }, "geometry": { "type": "Point", "coordinates": [ 85.32438039760828, 27.641290951559448 ] } }, +{ "type": "Feature", "properties": { "im": 1.62501001 }, "geometry": { "type": "Point", "coordinates": [ 85.312566049319344, 27.641111553557966 ] } }, +{ "type": "Feature", "properties": { "im": 0.0218075 }, "geometry": { "type": "Point", "coordinates": [ 85.306937175886532, 27.617016990686448 ] } }, +{ "type": "Feature", "properties": { "im": 0.0503929 }, "geometry": { "type": "Point", "coordinates": [ 85.304063912924917, 27.635141231900544 ] } }, +{ "type": "Feature", "properties": { "im": 0.00591347 }, "geometry": { "type": "Point", "coordinates": [ 85.314551492553832, 27.63059388282138 ] } }, +{ "type": "Feature", "properties": { "im": 0.0284718 }, "geometry": { "type": "Point", "coordinates": [ 85.322432594233916, 27.621483370254467 ] } }, +{ "type": "Feature", "properties": { "im": 0.0155564 }, "geometry": { "type": "Point", "coordinates": [ 85.316998276108777, 27.625659548091804 ] } }, +{ "type": "Feature", "properties": { "im": 0.0308149 }, "geometry": { "type": "Point", "coordinates": [ 85.314885692573753, 27.625976866399743 ] } }, +{ "type": "Feature", "properties": { "im": 0.00505316 }, "geometry": { "type": "Point", "coordinates": [ 85.311161987223102, 27.63354912023841 ] } }, +{ "type": "Feature", "properties": { "im": 0.69326699 }, "geometry": { "type": "Point", "coordinates": [ 85.309846118584232, 27.628171924713378 ] } }, +{ "type": "Feature", "properties": { "im": 0.0062182 }, "geometry": { "type": "Point", "coordinates": [ 85.310503246328423, 27.621013656594165 ] } }, +{ "type": "Feature", "properties": { "im": 0.00866279 }, "geometry": { "type": "Point", "coordinates": [ 85.325899232149624, 27.641381504872957 ] } }, +{ "type": "Feature", "properties": { "im": 0.19374999 }, "geometry": { "type": "Point", "coordinates": [ 85.309864995442425, 27.62826241006767 ] } }, +{ "type": "Feature", "properties": { "im": 0.36183301 }, "geometry": { "type": "Point", "coordinates": [ 85.325620464176367, 27.635728138364701 ] } }, +{ "type": "Feature", "properties": { "im": 2.18598008 }, "geometry": { "type": "Point", "coordinates": [ 85.310420092943758, 27.639623283585227 ] } }, +{ "type": "Feature", "properties": { "im": 0.0113732 }, "geometry": { "type": "Point", "coordinates": [ 85.307910845189909, 27.627498487461864 ] } }, +{ "type": "Feature", "properties": { "im": 0.00716833 }, "geometry": { "type": "Point", "coordinates": [ 85.313829943642574, 27.623454933293278 ] } }, +{ "type": "Feature", "properties": { "im": 1.80184996 }, "geometry": { "type": "Point", "coordinates": [ 85.309956330264356, 27.628913361276631 ] } }, +{ "type": "Feature", "properties": { "im": 3.40243006 }, "geometry": { "type": "Point", "coordinates": [ 85.310811209451103, 27.616793453218612 ] } }, +{ "type": "Feature", "properties": { "im": 0.0322138 }, "geometry": { "type": "Point", "coordinates": [ 85.307658239760912, 27.630744593288163 ] } }, +{ "type": "Feature", "properties": { "im": 0.236136 }, "geometry": { "type": "Point", "coordinates": [ 85.326670432070273, 27.627996874681781 ] } }, +{ "type": "Feature", "properties": { "im": 1.77759004 }, "geometry": { "type": "Point", "coordinates": [ 85.307455872440912, 27.63204179824908 ] } }, +{ "type": "Feature", "properties": { "im": 0.0572349 }, "geometry": { "type": "Point", "coordinates": [ 85.326576637710005, 27.638158532643104 ] } }, +{ "type": "Feature", "properties": { "im": 2.73912001 }, "geometry": { "type": "Point", "coordinates": [ 85.311852558502508, 27.640055907074938 ] } }, +{ "type": "Feature", "properties": { "im": 0.0181754 }, "geometry": { "type": "Point", "coordinates": [ 85.313937149233254, 27.629683860817039 ] } }, +{ "type": "Feature", "properties": { "im": 0.0171498 }, "geometry": { "type": "Point", "coordinates": [ 85.314784937590517, 27.635199743876814 ] } }, +{ "type": "Feature", "properties": { "im": 1.39453995 }, "geometry": { "type": "Point", "coordinates": [ 85.309453939815953, 27.631271925697334 ] } }, +{ "type": "Feature", "properties": { "im": 0.124577 }, "geometry": { "type": "Point", "coordinates": [ 85.314131628070228, 27.638152176252945 ] } }, +{ "type": "Feature", "properties": { "im": 0.0184894 }, "geometry": { "type": "Point", "coordinates": [ 85.303151595112794, 27.625960153171622 ] } }, +{ "type": "Feature", "properties": { "im": 0.113017 }, "geometry": { "type": "Point", "coordinates": [ 85.322681182019437, 27.633093252842674 ] } }, +{ "type": "Feature", "properties": { "im": 1.05084002 }, "geometry": { "type": "Point", "coordinates": [ 85.307430887390069, 27.632348360908306 ] } }, +{ "type": "Feature", "properties": { "im": 0.0474771 }, "geometry": { "type": "Point", "coordinates": [ 85.307561108013189, 27.61729537053878 ] } }, +{ "type": "Feature", "properties": { "im": 1.35039997 }, "geometry": { "type": "Point", "coordinates": [ 85.312828344860165, 27.639869223703855 ] } }, +{ "type": "Feature", "properties": { "im": 0.00525098 }, "geometry": { "type": "Point", "coordinates": [ 85.318345311751628, 27.634322364823031 ] } }, +{ "type": "Feature", "properties": { "im": 2.04736996 }, "geometry": { "type": "Point", "coordinates": [ 85.310402983539646, 27.630182377962015 ] } }, +{ "type": "Feature", "properties": { "im": 1.84325004 }, "geometry": { "type": "Point", "coordinates": [ 85.321109387003233, 27.632496595675104 ] } }, +{ "type": "Feature", "properties": { "im": 0.171064 }, "geometry": { "type": "Point", "coordinates": [ 85.321700359087103, 27.641583453371638 ] } }, +{ "type": "Feature", "properties": { "im": 0.0484995 }, "geometry": { "type": "Point", "coordinates": [ 85.313278200783031, 27.630361788313476 ] } }, +{ "type": "Feature", "properties": { "im": 0.322943 }, "geometry": { "type": "Point", "coordinates": [ 85.325921266997781, 27.633276816872652 ] } }, +{ "type": "Feature", "properties": { "im": 0.0263444 }, "geometry": { "type": "Point", "coordinates": [ 85.308992000230049, 27.627042347128711 ] } }, +{ "type": "Feature", "properties": { "im": 0.0105261 }, "geometry": { "type": "Point", "coordinates": [ 85.31047335624703, 27.637475859174899 ] } }, +{ "type": "Feature", "properties": { "im": 0.0747282 }, "geometry": { "type": "Point", "coordinates": [ 85.317470355292841, 27.61864339264282 ] } }, +{ "type": "Feature", "properties": { "im": 0.160862 }, "geometry": { "type": "Point", "coordinates": [ 85.316820434013337, 27.637282290794428 ] } }, +{ "type": "Feature", "properties": { "im": 0.0745016 }, "geometry": { "type": "Point", "coordinates": [ 85.308048521698524, 27.626453206169415 ] } }, +{ "type": "Feature", "properties": { "im": 0.00905457 }, "geometry": { "type": "Point", "coordinates": [ 85.313942115291766, 27.624070034058981 ] } }, +{ "type": "Feature", "properties": { "im": 1.59029996 }, "geometry": { "type": "Point", "coordinates": [ 85.303287893565525, 27.638146255762454 ] } }, +{ "type": "Feature", "properties": { "im": 0.287332 }, "geometry": { "type": "Point", "coordinates": [ 85.320098321145551, 27.621725885353897 ] } }, +{ "type": "Feature", "properties": { "im": 0.0355106 }, "geometry": { "type": "Point", "coordinates": [ 85.31026213618297, 27.624837547180512 ] } }, +{ "type": "Feature", "properties": { "im": 0.62267798 }, "geometry": { "type": "Point", "coordinates": [ 85.320962331211007, 27.635491298461432 ] } }, +{ "type": "Feature", "properties": { "im": 0.0285144 }, "geometry": { "type": "Point", "coordinates": [ 85.308411019296784, 27.623966582043373 ] } }, +{ "type": "Feature", "properties": { "im": 0.0106203 }, "geometry": { "type": "Point", "coordinates": [ 85.308774633227046, 27.624043220645238 ] } }, +{ "type": "Feature", "properties": { "im": 0.77099502 }, "geometry": { "type": "Point", "coordinates": [ 85.309839186701851, 27.62862311669576 ] } }, +{ "type": "Feature", "properties": { "im": 0.42694399 }, "geometry": { "type": "Point", "coordinates": [ 85.318184473271018, 27.618327132497317 ] } }, +{ "type": "Feature", "properties": { "im": 0.00712519 }, "geometry": { "type": "Point", "coordinates": [ 85.315095425019109, 27.637423798471644 ] } }, +{ "type": "Feature", "properties": { "im": 0.0110871 }, "geometry": { "type": "Point", "coordinates": [ 85.31289649093037, 27.623533837340378 ] } }, +{ "type": "Feature", "properties": { "im": 0.0163347 }, "geometry": { "type": "Point", "coordinates": [ 85.320613292609579, 27.63711167013011 ] } }, +{ "type": "Feature", "properties": { "im": 0.42564499 }, "geometry": { "type": "Point", "coordinates": [ 85.304878744427214, 27.632244981719438 ] } }, +{ "type": "Feature", "properties": { "im": 0.27792701 }, "geometry": { "type": "Point", "coordinates": [ 85.318166125158868, 27.632785848851942 ] } }, +{ "type": "Feature", "properties": { "im": 0.60924703 }, "geometry": { "type": "Point", "coordinates": [ 85.316899080994261, 27.63479219676686 ] } }, +{ "type": "Feature", "properties": { "im": 0.0403238 }, "geometry": { "type": "Point", "coordinates": [ 85.308574749145791, 27.619907088767846 ] } }, +{ "type": "Feature", "properties": { "im": 0.158186 }, "geometry": { "type": "Point", "coordinates": [ 85.326507776217326, 27.628031014282254 ] } }, +{ "type": "Feature", "properties": { "im": 0.00568762 }, "geometry": { "type": "Point", "coordinates": [ 85.321183638727717, 27.628959476438578 ] } }, +{ "type": "Feature", "properties": { "im": 0.0311075 }, "geometry": { "type": "Point", "coordinates": [ 85.311843124249776, 27.623502969069644 ] } }, +{ "type": "Feature", "properties": { "im": 0.0618339 }, "geometry": { "type": "Point", "coordinates": [ 85.308986174797212, 27.627421348290262 ] } }, +{ "type": "Feature", "properties": { "im": 0.0205597 }, "geometry": { "type": "Point", "coordinates": [ 85.321986302090551, 27.628156890502019 ] } }, +{ "type": "Feature", "properties": { "im": 0.011976 }, "geometry": { "type": "Point", "coordinates": [ 85.32448588053974, 27.631707083264107 ] } }, +{ "type": "Feature", "properties": { "im": 0.111656 }, "geometry": { "type": "Point", "coordinates": [ 85.318572855779621, 27.624739988925267 ] } }, +{ "type": "Feature", "properties": { "im": 0.0170161 }, "geometry": { "type": "Point", "coordinates": [ 85.308847682798358, 27.629838500599924 ] } }, +{ "type": "Feature", "properties": { "im": 0.0342308 }, "geometry": { "type": "Point", "coordinates": [ 85.318925878091378, 27.618877653483196 ] } }, +{ "type": "Feature", "properties": { "im": 0.00959445 }, "geometry": { "type": "Point", "coordinates": [ 85.313013762721468, 27.626459539327172 ] } }, +{ "type": "Feature", "properties": { "im": 0.00869267 }, "geometry": { "type": "Point", "coordinates": [ 85.308819095418102, 27.630379683442818 ] } }, +{ "type": "Feature", "properties": { "im": 0.00836272 }, "geometry": { "type": "Point", "coordinates": [ 85.308933234075084, 27.641410258312892 ] } }, +{ "type": "Feature", "properties": { "im": 0.102754 }, "geometry": { "type": "Point", "coordinates": [ 85.310456538711918, 27.629334630711309 ] } }, +{ "type": "Feature", "properties": { "im": 0.0815252 }, "geometry": { "type": "Point", "coordinates": [ 85.312790751242574, 27.623821368447103 ] } }, +{ "type": "Feature", "properties": { "im": 0.18356299 }, "geometry": { "type": "Point", "coordinates": [ 85.318701470471851, 27.622954487580579 ] } }, +{ "type": "Feature", "properties": { "im": 0.34848201 }, "geometry": { "type": "Point", "coordinates": [ 85.311847049398978, 27.632492449815519 ] } }, +{ "type": "Feature", "properties": { "im": 2.90095997 }, "geometry": { "type": "Point", "coordinates": [ 85.310124308001377, 27.631171790312628 ] } }, +{ "type": "Feature", "properties": { "im": 2.59050012 }, "geometry": { "type": "Point", "coordinates": [ 85.312918041632798, 27.640628459188697 ] } }, +{ "type": "Feature", "properties": { "im": 0.12504201 }, "geometry": { "type": "Point", "coordinates": [ 85.312284550173544, 27.633039307199201 ] } }, +{ "type": "Feature", "properties": { "im": 0.51846302 }, "geometry": { "type": "Point", "coordinates": [ 85.319247833836499, 27.634947044753616 ] } }, +{ "type": "Feature", "properties": { "im": 0.39624399 }, "geometry": { "type": "Point", "coordinates": [ 85.310236488336258, 27.633104619870068 ] } }, +{ "type": "Feature", "properties": { "im": 0.0397188 }, "geometry": { "type": "Point", "coordinates": [ 85.318098550758847, 27.634554036061438 ] } }, +{ "type": "Feature", "properties": { "im": 3.25407004 }, "geometry": { "type": "Point", "coordinates": [ 85.310096560752086, 27.618463499985644 ] } }, +{ "type": "Feature", "properties": { "im": 1.44856 }, "geometry": { "type": "Point", "coordinates": [ 85.309226643180466, 27.636828875400145 ] } }, +{ "type": "Feature", "properties": { "im": 0.00978998 }, "geometry": { "type": "Point", "coordinates": [ 85.312732630578765, 27.627611388280208 ] } }, +{ "type": "Feature", "properties": { "im": 0.00701222 }, "geometry": { "type": "Point", "coordinates": [ 85.308318038135951, 27.624741643548056 ] } }, +{ "type": "Feature", "properties": { "im": 0.0105652 }, "geometry": { "type": "Point", "coordinates": [ 85.304169708599773, 27.617759381182655 ] } }, +{ "type": "Feature", "properties": { "im": 0.0252989 }, "geometry": { "type": "Point", "coordinates": [ 85.308278359216544, 27.628640187289712 ] } }, +{ "type": "Feature", "properties": { "im": 0.77239299 }, "geometry": { "type": "Point", "coordinates": [ 85.324202495571029, 27.639664201708587 ] } }, +{ "type": "Feature", "properties": { "im": 0.13318899 }, "geometry": { "type": "Point", "coordinates": [ 85.304429589551788, 27.640344394223678 ] } }, +{ "type": "Feature", "properties": { "im": 2.13574004 }, "geometry": { "type": "Point", "coordinates": [ 85.312027297805187, 27.627350090102084 ] } }, +{ "type": "Feature", "properties": { "im": 0.27976799 }, "geometry": { "type": "Point", "coordinates": [ 85.317018458595086, 27.634938054426168 ] } }, +{ "type": "Feature", "properties": { "im": 0.0122819 }, "geometry": { "type": "Point", "coordinates": [ 85.3054303512818, 27.630645182237991 ] } }, +{ "type": "Feature", "properties": { "im": 0.0135879 }, "geometry": { "type": "Point", "coordinates": [ 85.313143104299002, 27.620666713443306 ] } }, +{ "type": "Feature", "properties": { "im": 0.24943399 }, "geometry": { "type": "Point", "coordinates": [ 85.314972164841208, 27.628270405340018 ] } }, +{ "type": "Feature", "properties": { "im": 0.0374781 }, "geometry": { "type": "Point", "coordinates": [ 85.308038499394598, 27.640280178354889 ] } }, +{ "type": "Feature", "properties": { "im": 0.0166309 }, "geometry": { "type": "Point", "coordinates": [ 85.311792116938932, 27.633430436066643 ] } }, +{ "type": "Feature", "properties": { "im": 0.0190508 }, "geometry": { "type": "Point", "coordinates": [ 85.307598004136281, 27.630707756080543 ] } }, +{ "type": "Feature", "properties": { "im": 0.0319668 }, "geometry": { "type": "Point", "coordinates": [ 85.312625607345637, 27.624017921317407 ] } }, +{ "type": "Feature", "properties": { "im": 0.0590903 }, "geometry": { "type": "Point", "coordinates": [ 85.318351659443806, 27.619321971387006 ] } }, +{ "type": "Feature", "properties": { "im": 0.0531292 }, "geometry": { "type": "Point", "coordinates": [ 85.304712738926895, 27.632495666599432 ] } }, +{ "type": "Feature", "properties": { "im": 1.15478003 }, "geometry": { "type": "Point", "coordinates": [ 85.323846152704547, 27.640436091598428 ] } }, +{ "type": "Feature", "properties": { "im": 0.0432385 }, "geometry": { "type": "Point", "coordinates": [ 85.311763223221789, 27.632671939859303 ] } }, +{ "type": "Feature", "properties": { "im": 3.33842993 }, "geometry": { "type": "Point", "coordinates": [ 85.31210276209525, 27.626394301653853 ] } }, +{ "type": "Feature", "properties": { "im": 0.0666704 }, "geometry": { "type": "Point", "coordinates": [ 85.311967200903666, 27.616735320633062 ] } }, +{ "type": "Feature", "properties": { "im": 0.0230662 }, "geometry": { "type": "Point", "coordinates": [ 85.315945813327076, 27.638806011151313 ] } }, +{ "type": "Feature", "properties": { "im": 0.0168908 }, "geometry": { "type": "Point", "coordinates": [ 85.325684963557677, 27.632822685511144 ] } }, +{ "type": "Feature", "properties": { "im": 0.00513368 }, "geometry": { "type": "Point", "coordinates": [ 85.32020868671907, 27.641041906069077 ] } }, +{ "type": "Feature", "properties": { "im": 0.0436557 }, "geometry": { "type": "Point", "coordinates": [ 85.306620150609106, 27.624450157549109 ] } }, +{ "type": "Feature", "properties": { "im": 0.0413536 }, "geometry": { "type": "Point", "coordinates": [ 85.311840127252751, 27.625019223232982 ] } }, +{ "type": "Feature", "properties": { "im": 0.31447399 }, "geometry": { "type": "Point", "coordinates": [ 85.313145608001307, 27.632399946294164 ] } }, +{ "type": "Feature", "properties": { "im": 1.65480006 }, "geometry": { "type": "Point", "coordinates": [ 85.309157801613779, 27.637351515894096 ] } }, +{ "type": "Feature", "properties": { "im": 0.0114408 }, "geometry": { "type": "Point", "coordinates": [ 85.308217291848379, 27.628657493373677 ] } }, +{ "type": "Feature", "properties": { "im": 0.59900898 }, "geometry": { "type": "Point", "coordinates": [ 85.321352831886458, 27.632481491836479 ] } }, +{ "type": "Feature", "properties": { "im": 0.00630257 }, "geometry": { "type": "Point", "coordinates": [ 85.306478050496082, 27.623148746781485 ] } }, +{ "type": "Feature", "properties": { "im": 0.013156 }, "geometry": { "type": "Point", "coordinates": [ 85.322700479928187, 27.638472716852633 ] } }, +{ "type": "Feature", "properties": { "im": 0.0204306 }, "geometry": { "type": "Point", "coordinates": [ 85.310687819779289, 27.62087149603289 ] } }, +{ "type": "Feature", "properties": { "im": 0.140876 }, "geometry": { "type": "Point", "coordinates": [ 85.320512374408111, 27.635756615524443 ] } }, +{ "type": "Feature", "properties": { "im": 1.78033996 }, "geometry": { "type": "Point", "coordinates": [ 85.311890911014402, 27.641518508309478 ] } }, +{ "type": "Feature", "properties": { "im": 0.60559702 }, "geometry": { "type": "Point", "coordinates": [ 85.307007090373745, 27.623010797020346 ] } }, +{ "type": "Feature", "properties": { "im": 0.182629 }, "geometry": { "type": "Point", "coordinates": [ 85.321491671829349, 27.626038923226403 ] } }, +{ "type": "Feature", "properties": { "im": 0.0873594 }, "geometry": { "type": "Point", "coordinates": [ 85.321218455175426, 27.62534967351305 ] } }, +{ "type": "Feature", "properties": { "im": 0.00983805 }, "geometry": { "type": "Point", "coordinates": [ 85.32549333337343, 27.620112364565525 ] } }, +{ "type": "Feature", "properties": { "im": 0.117091 }, "geometry": { "type": "Point", "coordinates": [ 85.310151593167191, 27.635991752606877 ] } }, +{ "type": "Feature", "properties": { "im": 0.0181731 }, "geometry": { "type": "Point", "coordinates": [ 85.309468456842239, 27.618455846534165 ] } }, +{ "type": "Feature", "properties": { "im": 0.0952656 }, "geometry": { "type": "Point", "coordinates": [ 85.317500279971142, 27.633914989916878 ] } }, +{ "type": "Feature", "properties": { "im": 1.15556002 }, "geometry": { "type": "Point", "coordinates": [ 85.308828835826887, 27.635018920270454 ] } }, +{ "type": "Feature", "properties": { "im": 0.30351701 }, "geometry": { "type": "Point", "coordinates": [ 85.304892928966026, 27.631324552887691 ] } }, +{ "type": "Feature", "properties": { "im": 0.21996801 }, "geometry": { "type": "Point", "coordinates": [ 85.30535525999548, 27.624994290336534 ] } }, +{ "type": "Feature", "properties": { "im": 0.130895 }, "geometry": { "type": "Point", "coordinates": [ 85.322855340360135, 27.640279700374467 ] } }, +{ "type": "Feature", "properties": { "im": 0.00771206 }, "geometry": { "type": "Point", "coordinates": [ 85.320220263393168, 27.61772001037178 ] } }, +{ "type": "Feature", "properties": { "im": 1.69367003 }, "geometry": { "type": "Point", "coordinates": [ 85.308208134916399, 27.631888518793218 ] } }, +{ "type": "Feature", "properties": { "im": 0.00976346 }, "geometry": { "type": "Point", "coordinates": [ 85.322358850278889, 27.626320182722445 ] } }, +{ "type": "Feature", "properties": { "im": 0.29472601 }, "geometry": { "type": "Point", "coordinates": [ 85.326770925331061, 27.628052240641605 ] } }, +{ "type": "Feature", "properties": { "im": 0.0730795 }, "geometry": { "type": "Point", "coordinates": [ 85.313710551031406, 27.63917596568816 ] } }, +{ "type": "Feature", "properties": { "im": 0.26357499 }, "geometry": { "type": "Point", "coordinates": [ 85.314860369933086, 27.62498374864354 ] } }, +{ "type": "Feature", "properties": { "im": 0.0123608 }, "geometry": { "type": "Point", "coordinates": [ 85.307345728577644, 27.618123091844087 ] } }, +{ "type": "Feature", "properties": { "im": 0.0138616 }, "geometry": { "type": "Point", "coordinates": [ 85.32346038935593, 27.627181906545552 ] } }, +{ "type": "Feature", "properties": { "im": 0.00884836 }, "geometry": { "type": "Point", "coordinates": [ 85.308542614284789, 27.628589257493484 ] } }, +{ "type": "Feature", "properties": { "im": 1.49952996 }, "geometry": { "type": "Point", "coordinates": [ 85.324324913499524, 27.639611528014743 ] } }, +{ "type": "Feature", "properties": { "im": 0.0869343 }, "geometry": { "type": "Point", "coordinates": [ 85.310508161304199, 27.618053338815958 ] } }, +{ "type": "Feature", "properties": { "im": 2.58167005 }, "geometry": { "type": "Point", "coordinates": [ 85.309610661175867, 27.623710442290676 ] } }, +{ "type": "Feature", "properties": { "im": 0.0138887 }, "geometry": { "type": "Point", "coordinates": [ 85.30651597346953, 27.63121802636255 ] } }, +{ "type": "Feature", "properties": { "im": 0.0811674 }, "geometry": { "type": "Point", "coordinates": [ 85.318889762164673, 27.641134225641423 ] } }, +{ "type": "Feature", "properties": { "im": 1.98924005 }, "geometry": { "type": "Point", "coordinates": [ 85.321361168219241, 27.627950762765675 ] } }, +{ "type": "Feature", "properties": { "im": 0.132309 }, "geometry": { "type": "Point", "coordinates": [ 85.311631684989194, 27.625395758487798 ] } }, +{ "type": "Feature", "properties": { "im": 0.0503734 }, "geometry": { "type": "Point", "coordinates": [ 85.318201002169275, 27.619897780786321 ] } }, +{ "type": "Feature", "properties": { "im": 0.442334 }, "geometry": { "type": "Point", "coordinates": [ 85.32436123201208, 27.641218515495492 ] } }, +{ "type": "Feature", "properties": { "im": 2.03706002 }, "geometry": { "type": "Point", "coordinates": [ 85.312217655359433, 27.641360027186916 ] } }, +{ "type": "Feature", "properties": { "im": 0.049202 }, "geometry": { "type": "Point", "coordinates": [ 85.308122623117072, 27.62295220488901 ] } }, +{ "type": "Feature", "properties": { "im": 0.151416 }, "geometry": { "type": "Point", "coordinates": [ 85.325728177459425, 27.639303561044528 ] } }, +{ "type": "Feature", "properties": { "im": 2.31366992 }, "geometry": { "type": "Point", "coordinates": [ 85.309471396821735, 27.628817195351058 ] } }, +{ "type": "Feature", "properties": { "im": 0.0262625 }, "geometry": { "type": "Point", "coordinates": [ 85.310483639105115, 27.624930501019232 ] } }, +{ "type": "Feature", "properties": { "im": 1.97363997 }, "geometry": { "type": "Point", "coordinates": [ 85.323966921071531, 27.640491704946083 ] } }, +{ "type": "Feature", "properties": { "im": 0.0804145 }, "geometry": { "type": "Point", "coordinates": [ 85.312925914407217, 27.636151894279966 ] } }, +{ "type": "Feature", "properties": { "im": 0.0227383 }, "geometry": { "type": "Point", "coordinates": [ 85.314163370896125, 27.640047923119038 ] } }, +{ "type": "Feature", "properties": { "im": 0.0187318 }, "geometry": { "type": "Point", "coordinates": [ 85.303601827481145, 27.625676844556178 ] } }, +{ "type": "Feature", "properties": { "im": 0.31775701 }, "geometry": { "type": "Point", "coordinates": [ 85.30517502270196, 27.62880085677719 ] } }, +{ "type": "Feature", "properties": { "im": 0.132323 }, "geometry": { "type": "Point", "coordinates": [ 85.312487746966184, 27.61979228940115 ] } }, +{ "type": "Feature", "properties": { "im": 0.0101989 }, "geometry": { "type": "Point", "coordinates": [ 85.309602087656089, 27.625587648684235 ] } }, +{ "type": "Feature", "properties": { "im": 0.0221551 }, "geometry": { "type": "Point", "coordinates": [ 85.308935395343823, 27.62940634501529 ] } }, +{ "type": "Feature", "properties": { "im": 0.39762601 }, "geometry": { "type": "Point", "coordinates": [ 85.319914455545586, 27.623149697314439 ] } }, +{ "type": "Feature", "properties": { "im": 0.0117326 }, "geometry": { "type": "Point", "coordinates": [ 85.315224910171892, 27.626323958373757 ] } }, +{ "type": "Feature", "properties": { "im": 6.24872017 }, "geometry": { "type": "Point", "coordinates": [ 85.303039700766533, 27.638468136216531 ] } }, +{ "type": "Feature", "properties": { "im": 0.0926061 }, "geometry": { "type": "Point", "coordinates": [ 85.308435414108956, 27.619742929982969 ] } }, +{ "type": "Feature", "properties": { "im": 0.0170634 }, "geometry": { "type": "Point", "coordinates": [ 85.320130932803153, 27.64082435094846 ] } }, +{ "type": "Feature", "properties": { "im": 0.118955 }, "geometry": { "type": "Point", "coordinates": [ 85.304011468904662, 27.634599060076749 ] } }, +{ "type": "Feature", "properties": { "im": 0.161889 }, "geometry": { "type": "Point", "coordinates": [ 85.310928055110438, 27.636903765822101 ] } }, +{ "type": "Feature", "properties": { "im": 0.0446339 }, "geometry": { "type": "Point", "coordinates": [ 85.305097862415238, 27.628547199301071 ] } }, +{ "type": "Feature", "properties": { "im": 0.523592 }, "geometry": { "type": "Point", "coordinates": [ 85.319152617572271, 27.62128120120348 ] } }, +{ "type": "Feature", "properties": { "im": 0.0234995 }, "geometry": { "type": "Point", "coordinates": [ 85.306717999462919, 27.635209771154507 ] } }, +{ "type": "Feature", "properties": { "im": 0.0132192 }, "geometry": { "type": "Point", "coordinates": [ 85.315379134540365, 27.637427245887693 ] } }, +{ "type": "Feature", "properties": { "im": 0.24523599 }, "geometry": { "type": "Point", "coordinates": [ 85.321797797399995, 27.619255400788724 ] } }, +{ "type": "Feature", "properties": { "im": 0.0143884 }, "geometry": { "type": "Point", "coordinates": [ 85.321603953812485, 27.638603855887901 ] } }, +{ "type": "Feature", "properties": { "im": 1.20714998 }, "geometry": { "type": "Point", "coordinates": [ 85.321234708254067, 27.633581179419089 ] } }, +{ "type": "Feature", "properties": { "im": 0.019697 }, "geometry": { "type": "Point", "coordinates": [ 85.316686117182542, 27.616919021499378 ] } }, +{ "type": "Feature", "properties": { "im": 0.107857 }, "geometry": { "type": "Point", "coordinates": [ 85.315918188656568, 27.632668310623249 ] } }, +{ "type": "Feature", "properties": { "im": 2.88393998 }, "geometry": { "type": "Point", "coordinates": [ 85.311070146911462, 27.625009848823684 ] } }, +{ "type": "Feature", "properties": { "im": 1.38998997 }, "geometry": { "type": "Point", "coordinates": [ 85.31097891886219, 27.628312083436683 ] } }, +{ "type": "Feature", "properties": { "im": 0.0153331 }, "geometry": { "type": "Point", "coordinates": [ 85.325071339883564, 27.62120839017971 ] } }, +{ "type": "Feature", "properties": { "im": 2.3819201 }, "geometry": { "type": "Point", "coordinates": [ 85.310902579419746, 27.639881877149421 ] } }, +{ "type": "Feature", "properties": { "im": 1.07293999 }, "geometry": { "type": "Point", "coordinates": [ 85.322915567453691, 27.629684425971508 ] } }, +{ "type": "Feature", "properties": { "im": 0.79808199 }, "geometry": { "type": "Point", "coordinates": [ 85.307699588094508, 27.633326396400886 ] } }, +{ "type": "Feature", "properties": { "im": 0.213962 }, "geometry": { "type": "Point", "coordinates": [ 85.325073811718823, 27.631696134745866 ] } }, +{ "type": "Feature", "properties": { "im": 0.0118229 }, "geometry": { "type": "Point", "coordinates": [ 85.304582092977682, 27.619930548467906 ] } }, +{ "type": "Feature", "properties": { "im": 0.2958 }, "geometry": { "type": "Point", "coordinates": [ 85.318723761923138, 27.629453157773902 ] } }, +{ "type": "Feature", "properties": { "im": 0.0298588 }, "geometry": { "type": "Point", "coordinates": [ 85.313810170648807, 27.632678795046889 ] } }, +{ "type": "Feature", "properties": { "im": 0.00561611 }, "geometry": { "type": "Point", "coordinates": [ 85.308303346951732, 27.636239980271395 ] } }, +{ "type": "Feature", "properties": { "im": 2.47307992 }, "geometry": { "type": "Point", "coordinates": [ 85.309833547384173, 27.62371315860231 ] } }, +{ "type": "Feature", "properties": { "im": 0.0279859 }, "geometry": { "type": "Point", "coordinates": [ 85.313106298784533, 27.641569404322176 ] } }, +{ "type": "Feature", "properties": { "im": 0.0205381 }, "geometry": { "type": "Point", "coordinates": [ 85.310954601271234, 27.632535735233603 ] } }, +{ "type": "Feature", "properties": { "im": 1.25883996 }, "geometry": { "type": "Point", "coordinates": [ 85.310784480981837, 27.634374870209029 ] } }, +{ "type": "Feature", "properties": { "im": 0.0986494 }, "geometry": { "type": "Point", "coordinates": [ 85.320339088022408, 27.635158830235966 ] } }, +{ "type": "Feature", "properties": { "im": 0.00932786 }, "geometry": { "type": "Point", "coordinates": [ 85.321946984008989, 27.62674842699213 ] } }, +{ "type": "Feature", "properties": { "im": 1.08580005 }, "geometry": { "type": "Point", "coordinates": [ 85.307933872923144, 27.633906888662509 ] } }, +{ "type": "Feature", "properties": { "im": 0.0376097 }, "geometry": { "type": "Point", "coordinates": [ 85.321955864667871, 27.618192295473623 ] } }, +{ "type": "Feature", "properties": { "im": 0.0322465 }, "geometry": { "type": "Point", "coordinates": [ 85.318785120948149, 27.62676428674057 ] } }, +{ "type": "Feature", "properties": { "im": 0.47582299 }, "geometry": { "type": "Point", "coordinates": [ 85.313167868397244, 27.633591587401018 ] } }, +{ "type": "Feature", "properties": { "im": 0.0289857 }, "geometry": { "type": "Point", "coordinates": [ 85.32270117104359, 27.633111545748864 ] } }, +{ "type": "Feature", "properties": { "im": 0.32589599 }, "geometry": { "type": "Point", "coordinates": [ 85.318288261896612, 27.632751227974769 ] } }, +{ "type": "Feature", "properties": { "im": 0.0089122 }, "geometry": { "type": "Point", "coordinates": [ 85.3039505011633, 27.631980917097451 ] } }, +{ "type": "Feature", "properties": { "im": 1.35829997 }, "geometry": { "type": "Point", "coordinates": [ 85.324638627669657, 27.641637043395431 ] } }, +{ "type": "Feature", "properties": { "im": 0.0827098 }, "geometry": { "type": "Point", "coordinates": [ 85.319248828906495, 27.625596584861441 ] } }, +{ "type": "Feature", "properties": { "im": 0.00548515 }, "geometry": { "type": "Point", "coordinates": [ 85.316637171651536, 27.629391742639712 ] } }, +{ "type": "Feature", "properties": { "im": 1.82058001 }, "geometry": { "type": "Point", "coordinates": [ 85.313001647298009, 27.64178474342933 ] } }, +{ "type": "Feature", "properties": { "im": 0.86453098 }, "geometry": { "type": "Point", "coordinates": [ 85.320294481894138, 27.623479220437179 ] } }, +{ "type": "Feature", "properties": { "im": 0.0918601 }, "geometry": { "type": "Point", "coordinates": [ 85.324560666235499, 27.621472989889849 ] } }, +{ "type": "Feature", "properties": { "im": 0.0470424 }, "geometry": { "type": "Point", "coordinates": [ 85.306677882832076, 27.624649423982678 ] } }, +{ "type": "Feature", "properties": { "im": 0.24364901 }, "geometry": { "type": "Point", "coordinates": [ 85.320503993089574, 27.623030479407735 ] } }, +{ "type": "Feature", "properties": { "im": 0.234394 }, "geometry": { "type": "Point", "coordinates": [ 85.31314040874021, 27.640667267066046 ] } }, +{ "type": "Feature", "properties": { "im": 0.105265 }, "geometry": { "type": "Point", "coordinates": [ 85.316935663549955, 27.627102876361093 ] } }, +{ "type": "Feature", "properties": { "im": 0.31256199 }, "geometry": { "type": "Point", "coordinates": [ 85.303846398924989, 27.632160153955351 ] } }, +{ "type": "Feature", "properties": { "im": 0.598387 }, "geometry": { "type": "Point", "coordinates": [ 85.320942066541946, 27.635491053068236 ] } }, +{ "type": "Feature", "properties": { "im": 0.160951 }, "geometry": { "type": "Point", "coordinates": [ 85.308544300079674, 27.641658227882306 ] } }, +{ "type": "Feature", "properties": { "im": 0.112085 }, "geometry": { "type": "Point", "coordinates": [ 85.322225239295904, 27.636409141009381 ] } }, +{ "type": "Feature", "properties": { "im": 2.45842004 }, "geometry": { "type": "Point", "coordinates": [ 85.307186053474396, 27.632453678444133 ] } }, +{ "type": "Feature", "properties": { "im": 0.0148719 }, "geometry": { "type": "Point", "coordinates": [ 85.309145881859791, 27.640763015113073 ] } }, +{ "type": "Feature", "properties": { "im": 0.00614271 }, "geometry": { "type": "Point", "coordinates": [ 85.320228676683271, 27.641060199357664 ] } }, +{ "type": "Feature", "properties": { "im": 0.00921928 }, "geometry": { "type": "Point", "coordinates": [ 85.323506503683831, 27.625485657216927 ] } }, +{ "type": "Feature", "properties": { "im": 0.62958801 }, "geometry": { "type": "Point", "coordinates": [ 85.316906640499113, 27.635622638206726 ] } }, +{ "type": "Feature", "properties": { "im": 0.18854 }, "geometry": { "type": "Point", "coordinates": [ 85.326103333023099, 27.627971979778316 ] } }, +{ "type": "Feature", "properties": { "im": 0.27223101 }, "geometry": { "type": "Point", "coordinates": [ 85.325144526808657, 27.640361527262669 ] } }, +{ "type": "Feature", "properties": { "im": 0.0496333 }, "geometry": { "type": "Point", "coordinates": [ 85.314742318441148, 27.632690126947217 ] } }, +{ "type": "Feature", "properties": { "im": 2.33410001 }, "geometry": { "type": "Point", "coordinates": [ 85.311755664986208, 27.639765910562787 ] } }, +{ "type": "Feature", "properties": { "im": 0.0134656 }, "geometry": { "type": "Point", "coordinates": [ 85.307039452828477, 27.635394206657253 ] } }, +{ "type": "Feature", "properties": { "im": 0.0377505 }, "geometry": { "type": "Point", "coordinates": [ 85.318731792144888, 27.62362274650328 ] } }, +{ "type": "Feature", "properties": { "im": 0.0105335 }, "geometry": { "type": "Point", "coordinates": [ 85.318476761925069, 27.627049366045274 ] } }, +{ "type": "Feature", "properties": { "im": 0.0122824 }, "geometry": { "type": "Point", "coordinates": [ 85.316181608479084, 27.628700270467217 ] } }, +{ "type": "Feature", "properties": { "im": 0.00998329 }, "geometry": { "type": "Point", "coordinates": [ 85.305783200031712, 27.6406317074924 ] } }, +{ "type": "Feature", "properties": { "im": 2.67065001 }, "geometry": { "type": "Point", "coordinates": [ 85.309168582514971, 27.631376752859595 ] } }, +{ "type": "Feature", "properties": { "im": 0.0164871 }, "geometry": { "type": "Point", "coordinates": [ 85.324650986096856, 27.622196126973904 ] } }, +{ "type": "Feature", "properties": { "im": 2.94433999 }, "geometry": { "type": "Point", "coordinates": [ 85.311407964215704, 27.625447188018313 ] } }, +{ "type": "Feature", "properties": { "im": 0.0145291 }, "geometry": { "type": "Point", "coordinates": [ 85.32246886049235, 27.637711768295627 ] } }, +{ "type": "Feature", "properties": { "im": 0.282428 }, "geometry": { "type": "Point", "coordinates": [ 85.326744675331341, 27.619116599850166 ] } }, +{ "type": "Feature", "properties": { "im": 1.82691002 }, "geometry": { "type": "Point", "coordinates": [ 85.310739916855724, 27.628038406401586 ] } }, +{ "type": "Feature", "properties": { "im": 0.469733 }, "geometry": { "type": "Point", "coordinates": [ 85.306585117854226, 27.629359613979112 ] } }, +{ "type": "Feature", "properties": { "im": 1.23727 }, "geometry": { "type": "Point", "coordinates": [ 85.304698994709696, 27.628127150137395 ] } }, +{ "type": "Feature", "properties": { "im": 0.952223 }, "geometry": { "type": "Point", "coordinates": [ 85.308392733139883, 27.63701726518061 ] } }, +{ "type": "Feature", "properties": { "im": 0.0588557 }, "geometry": { "type": "Point", "coordinates": [ 85.31035309985964, 27.621553359991371 ] } }, +{ "type": "Feature", "properties": { "im": 0.58481997 }, "geometry": { "type": "Point", "coordinates": [ 85.32361631968746, 27.620938096323993 ] } }, +{ "type": "Feature", "properties": { "im": 0.0513701 }, "geometry": { "type": "Point", "coordinates": [ 85.319777723839081, 27.624140852725937 ] } }, +{ "type": "Feature", "properties": { "im": 0.0151203 }, "geometry": { "type": "Point", "coordinates": [ 85.314387729380229, 27.621439990470911 ] } }, +{ "type": "Feature", "properties": { "im": 0.00686151 }, "geometry": { "type": "Point", "coordinates": [ 85.325073391231498, 27.61841048516575 ] } }, +{ "type": "Feature", "properties": { "im": 3.94011998 }, "geometry": { "type": "Point", "coordinates": [ 85.303290863171341, 27.620871465070429 ] } }, +{ "type": "Feature", "properties": { "im": 0.0860461 }, "geometry": { "type": "Point", "coordinates": [ 85.315262878882308, 27.638400590810299 ] } }, +{ "type": "Feature", "properties": { "im": 2.72969007 }, "geometry": { "type": "Point", "coordinates": [ 85.311185074314338, 27.62544447407981 ] } }, +{ "type": "Feature", "properties": { "im": 0.0164437 }, "geometry": { "type": "Point", "coordinates": [ 85.3181691932039, 27.639212072253621 ] } }, +{ "type": "Feature", "properties": { "im": 0.029962 }, "geometry": { "type": "Point", "coordinates": [ 85.323517328578063, 27.62743531073929 ] } }, +{ "type": "Feature", "properties": { "im": 0.0132171 }, "geometry": { "type": "Point", "coordinates": [ 85.303621172389455, 27.620478382239284 ] } }, +{ "type": "Feature", "properties": { "im": 2.4911201 }, "geometry": { "type": "Point", "coordinates": [ 85.310427682305018, 27.629893861964103 ] } }, +{ "type": "Feature", "properties": { "im": 0.0177306 }, "geometry": { "type": "Point", "coordinates": [ 85.307588579687049, 27.627368197729375 ] } }, +{ "type": "Feature", "properties": { "im": 2.79292011 }, "geometry": { "type": "Point", "coordinates": [ 85.311067653593668, 27.625172278117727 ] } }, +{ "type": "Feature", "properties": { "im": 0.0295512 }, "geometry": { "type": "Point", "coordinates": [ 85.313727433368399, 27.638075056670171 ] } }, +{ "type": "Feature", "properties": { "im": 2.64626002 }, "geometry": { "type": "Point", "coordinates": [ 85.309840998317512, 27.639056643155904 ] } }, +{ "type": "Feature", "properties": { "im": 0.0164043 }, "geometry": { "type": "Point", "coordinates": [ 85.326306746120878, 27.641242016256754 ] } }, +{ "type": "Feature", "properties": { "im": 1.99459004 }, "geometry": { "type": "Point", "coordinates": [ 85.309231654631603, 27.63913946867704 ] } }, +{ "type": "Feature", "properties": { "im": 3.32454991 }, "geometry": { "type": "Point", "coordinates": [ 85.310384554008905, 27.639297931847739 ] } }, +{ "type": "Feature", "properties": { "im": 0.00692389 }, "geometry": { "type": "Point", "coordinates": [ 85.311182047688547, 27.617718574159007 ] } }, +{ "type": "Feature", "properties": { "im": 0.0322248 }, "geometry": { "type": "Point", "coordinates": [ 85.311173201315299, 27.627538253647089 ] } }, +{ "type": "Feature", "properties": { "im": 0.315007 }, "geometry": { "type": "Point", "coordinates": [ 85.325811043933626, 27.617877855103796 ] } }, +{ "type": "Feature", "properties": { "im": 0.00674004 }, "geometry": { "type": "Point", "coordinates": [ 85.314682030518384, 27.636624527376444 ] } }, +{ "type": "Feature", "properties": { "im": 0.0279109 }, "geometry": { "type": "Point", "coordinates": [ 85.30841687199063, 27.628858489519306 ] } }, +{ "type": "Feature", "properties": { "im": 0.0131176 }, "geometry": { "type": "Point", "coordinates": [ 85.307348780663531, 27.619242295325162 ] } }, +{ "type": "Feature", "properties": { "im": 0.261583 }, "geometry": { "type": "Point", "coordinates": [ 85.320505780096397, 27.641496782567895 ] } }, +{ "type": "Feature", "properties": { "im": 0.0237327 }, "geometry": { "type": "Point", "coordinates": [ 85.304054700292156, 27.629166232015862 ] } }, +{ "type": "Feature", "properties": { "im": 2.44261003 }, "geometry": { "type": "Point", "coordinates": [ 85.31056198152406, 27.617187542091504 ] } }, +{ "type": "Feature", "properties": { "im": 0.0175904 }, "geometry": { "type": "Point", "coordinates": [ 85.313405054768879, 27.624731394384636 ] } }, +{ "type": "Feature", "properties": { "im": 0.0208267 }, "geometry": { "type": "Point", "coordinates": [ 85.309757703870517, 27.637882310495716 ] } }, +{ "type": "Feature", "properties": { "im": 0.350171 }, "geometry": { "type": "Point", "coordinates": [ 85.322742800399197, 27.633039844831302 ] } }, +{ "type": "Feature", "properties": { "im": 0.0759909 }, "geometry": { "type": "Point", "coordinates": [ 85.310237799349849, 27.629061199680407 ] } }, +{ "type": "Feature", "properties": { "im": 0.00527524 }, "geometry": { "type": "Point", "coordinates": [ 85.306979509201028, 27.634021596594284 ] } }, +{ "type": "Feature", "properties": { "im": 0.00772712 }, "geometry": { "type": "Point", "coordinates": [ 85.323636994678594, 27.635541712179375 ] } }, +{ "type": "Feature", "properties": { "im": 0.815395 }, "geometry": { "type": "Point", "coordinates": [ 85.32135255645106, 27.632499539612184 ] } }, +{ "type": "Feature", "properties": { "im": 0.00691769 }, "geometry": { "type": "Point", "coordinates": [ 85.322192958865045, 27.629224407143116 ] } }, +{ "type": "Feature", "properties": { "im": 0.0259145 }, "geometry": { "type": "Point", "coordinates": [ 85.314670892753995, 27.636028706836889 ] } }, +{ "type": "Feature", "properties": { "im": 0.0100278 }, "geometry": { "type": "Point", "coordinates": [ 85.313614266613129, 27.640167602424526 ] } }, +{ "type": "Feature", "properties": { "im": 0.0236071 }, "geometry": { "type": "Point", "coordinates": [ 85.313177035947973, 27.627707049778245 ] } }, +{ "type": "Feature", "properties": { "im": 2.0072701 }, "geometry": { "type": "Point", "coordinates": [ 85.306754953629806, 27.632809435609509 ] } }, +{ "type": "Feature", "properties": { "im": 0.18466 }, "geometry": { "type": "Point", "coordinates": [ 85.323243062578769, 27.617503865848597 ] } }, +{ "type": "Feature", "properties": { "im": 0.0629785 }, "geometry": { "type": "Point", "coordinates": [ 85.307072802930307, 27.631910764807103 ] } }, +{ "type": "Feature", "properties": { "im": 0.164683 }, "geometry": { "type": "Point", "coordinates": [ 85.316821370526682, 27.627949890857597 ] } }, +{ "type": "Feature", "properties": { "im": 0.0166309 }, "geometry": { "type": "Point", "coordinates": [ 85.310797169488168, 27.630909222496985 ] } }, +{ "type": "Feature", "properties": { "im": 0.32127699 }, "geometry": { "type": "Point", "coordinates": [ 85.305331939688401, 27.625192566852558 ] } }, +{ "type": "Feature", "properties": { "im": 0.0480215 }, "geometry": { "type": "Point", "coordinates": [ 85.317047625883674, 27.63170726419094 ] } }, +{ "type": "Feature", "properties": { "im": 0.0527437 }, "geometry": { "type": "Point", "coordinates": [ 85.314536006538674, 27.631604554921946 ] } }, +{ "type": "Feature", "properties": { "im": 6.29933023 }, "geometry": { "type": "Point", "coordinates": [ 85.303346231975596, 27.617279984205698 ] } }, +{ "type": "Feature", "properties": { "im": 0.95225602 }, "geometry": { "type": "Point", "coordinates": [ 85.304568195522762, 27.630038960168406 ] } }, +{ "type": "Feature", "properties": { "im": 0.45495901 }, "geometry": { "type": "Point", "coordinates": [ 85.313858000334051, 27.618978602314705 ] } }, +{ "type": "Feature", "properties": { "im": 0.0147582 }, "geometry": { "type": "Point", "coordinates": [ 85.309685079437358, 27.625462302744886 ] } }, +{ "type": "Feature", "properties": { "im": 0.31127599 }, "geometry": { "type": "Point", "coordinates": [ 85.323776453033062, 27.630380777351863 ] } }, +{ "type": "Feature", "properties": { "im": 0.00633881 }, "geometry": { "type": "Point", "coordinates": [ 85.30645573800517, 27.631181188666481 ] } }, +{ "type": "Feature", "properties": { "im": 3.1363399 }, "geometry": { "type": "Point", "coordinates": [ 85.309768691584139, 27.629254044504204 ] } }, +{ "type": "Feature", "properties": { "im": 0.62677598 }, "geometry": { "type": "Point", "coordinates": [ 85.308399118207404, 27.636602169370928 ] } }, +{ "type": "Feature", "properties": { "im": 1.72536004 }, "geometry": { "type": "Point", "coordinates": [ 85.304287288688613, 27.629855015254599 ] } }, +{ "type": "Feature", "properties": { "im": 0.0587274 }, "geometry": { "type": "Point", "coordinates": [ 85.324081168135109, 27.635655388250015 ] } }, +{ "type": "Feature", "properties": { "im": 0.0798398 }, "geometry": { "type": "Point", "coordinates": [ 85.320553332334782, 27.622453440720466 ] } }, +{ "type": "Feature", "properties": { "im": 1.45960999 }, "geometry": { "type": "Point", "coordinates": [ 85.309374045732369, 27.636469652080788 ] } }, +{ "type": "Feature", "properties": { "im": 2.10160995 }, "geometry": { "type": "Point", "coordinates": [ 85.313035481379003, 27.640900653943568 ] } }, +{ "type": "Feature", "properties": { "im": 1.29384995 }, "geometry": { "type": "Point", "coordinates": [ 85.309639919209772, 27.631039529212124 ] } }, +{ "type": "Feature", "properties": { "im": 0.46040699 }, "geometry": { "type": "Point", "coordinates": [ 85.319877956837971, 27.629521299442064 ] } }, +{ "type": "Feature", "properties": { "im": 0.0189262 }, "geometry": { "type": "Point", "coordinates": [ 85.322931071119669, 27.627337966843584 ] } }, +{ "type": "Feature", "properties": { "im": 0.0759375 }, "geometry": { "type": "Point", "coordinates": [ 85.312721384627352, 27.624380108201521 ] } }, +{ "type": "Feature", "properties": { "im": 0.30142 }, "geometry": { "type": "Point", "coordinates": [ 85.309989156656002, 27.618859315282609 ] } }, +{ "type": "Feature", "properties": { "im": 0.0162154 }, "geometry": { "type": "Point", "coordinates": [ 85.317295641162048, 27.636692373308431 ] } }, +{ "type": "Feature", "properties": { "im": 0.0173839 }, "geometry": { "type": "Point", "coordinates": [ 85.317736410530188, 27.626426649897162 ] } }, +{ "type": "Feature", "properties": { "im": 0.00675016 }, "geometry": { "type": "Point", "coordinates": [ 85.322712903407492, 27.633671272231819 ] } }, +{ "type": "Feature", "properties": { "im": 8.05607033 }, "geometry": { "type": "Point", "coordinates": [ 85.302926120198691, 27.639260989852335 ] } }, +{ "type": "Feature", "properties": { "im": 0.17814299 }, "geometry": { "type": "Point", "coordinates": [ 85.323438914246992, 27.640557525214675 ] } }, +{ "type": "Feature", "properties": { "im": 1.72031999 }, "geometry": { "type": "Point", "coordinates": [ 85.30858344510429, 27.637795786138749 ] } }, +{ "type": "Feature", "properties": { "im": 1.04491997 }, "geometry": { "type": "Point", "coordinates": [ 85.307452539906166, 27.632258370015776 ] } }, +{ "type": "Feature", "properties": { "im": 0.0157104 }, "geometry": { "type": "Point", "coordinates": [ 85.303611411902565, 27.628998350906272 ] } }, +{ "type": "Feature", "properties": { "im": 2.64475989 }, "geometry": { "type": "Point", "coordinates": [ 85.308882669758916, 27.631517674733097 ] } }, +{ "type": "Feature", "properties": { "im": 0.83580703 }, "geometry": { "type": "Point", "coordinates": [ 85.32620986681971, 27.627630293814939 ] } }, +{ "type": "Feature", "properties": { "im": 0.00782109 }, "geometry": { "type": "Point", "coordinates": [ 85.307901406018473, 27.624158927241403 ] } }, +{ "type": "Feature", "properties": { "im": 0.0607104 }, "geometry": { "type": "Point", "coordinates": [ 85.309370027609361, 27.624862777503751 ] } }, +{ "type": "Feature", "properties": { "im": 0.20670301 }, "geometry": { "type": "Point", "coordinates": [ 85.309190619625355, 27.618073387514933 ] } }, +{ "type": "Feature", "properties": { "im": 3.19906998 }, "geometry": { "type": "Point", "coordinates": [ 85.309727775436983, 27.622682958596513 ] } }, +{ "type": "Feature", "properties": { "im": 0.70017701 }, "geometry": { "type": "Point", "coordinates": [ 85.305485096624579, 27.638931269454975 ] } }, +{ "type": "Feature", "properties": { "im": 0.0206234 }, "geometry": { "type": "Point", "coordinates": [ 85.319957369437972, 27.637591103280229 ] } }, +{ "type": "Feature", "properties": { "im": 0.00651103 }, "geometry": { "type": "Point", "coordinates": [ 85.321008522058861, 27.636448566090273 ] } }, +{ "type": "Feature", "properties": { "im": 0.10314 }, "geometry": { "type": "Point", "coordinates": [ 85.324727198190388, 27.63981495177077 ] } }, +{ "type": "Feature", "properties": { "im": 0.0181421 }, "geometry": { "type": "Point", "coordinates": [ 85.309665796465026, 27.635949729030209 ] } }, +{ "type": "Feature", "properties": { "im": 0.0154475 }, "geometry": { "type": "Point", "coordinates": [ 85.318860697720723, 27.639057999151522 ] } }, +{ "type": "Feature", "properties": { "im": 0.154571 }, "geometry": { "type": "Point", "coordinates": [ 85.304195384208541, 27.630557881356076 ] } }, +{ "type": "Feature", "properties": { "im": 0.0182657 }, "geometry": { "type": "Point", "coordinates": [ 85.310579671551153, 27.637152235907397 ] } }, +{ "type": "Feature", "properties": { "im": 0.040065 }, "geometry": { "type": "Point", "coordinates": [ 85.322989767342094, 27.640768706170572 ] } }, +{ "type": "Feature", "properties": { "im": 0.00873683 }, "geometry": { "type": "Point", "coordinates": [ 85.321975097150712, 27.620918250890405 ] } }, +{ "type": "Feature", "properties": { "im": 0.0216128 }, "geometry": { "type": "Point", "coordinates": [ 85.317919484285127, 27.62505698625581 ] } }, +{ "type": "Feature", "properties": { "im": 1.57837999 }, "geometry": { "type": "Point", "coordinates": [ 85.311433636428191, 27.639617580515726 ] } }, +{ "type": "Feature", "properties": { "im": 0.0107758 }, "geometry": { "type": "Point", "coordinates": [ 85.314402266873174, 27.637686139230894 ] } }, +{ "type": "Feature", "properties": { "im": 0.0496189 }, "geometry": { "type": "Point", "coordinates": [ 85.323229589702152, 27.6183882095673 ] } }, +{ "type": "Feature", "properties": { "im": 0.24589001 }, "geometry": { "type": "Point", "coordinates": [ 85.324544079555608, 27.629216730278657 ] } }, +{ "type": "Feature", "properties": { "im": 0.00860131 }, "geometry": { "type": "Point", "coordinates": [ 85.310436462536742, 27.625363151980743 ] } }, +{ "type": "Feature", "properties": { "im": 0.233749 }, "geometry": { "type": "Point", "coordinates": [ 85.323802319957224, 27.64065217490084 ] } }, +{ "type": "Feature", "properties": { "im": 0.0738386 }, "geometry": { "type": "Point", "coordinates": [ 85.319047713240195, 27.626821623100565 ] } }, +{ "type": "Feature", "properties": { "im": 0.17927299 }, "geometry": { "type": "Point", "coordinates": [ 85.312257837824774, 27.624212008395503 ] } }, +{ "type": "Feature", "properties": { "im": 0.129995 }, "geometry": { "type": "Point", "coordinates": [ 85.315190376180539, 27.624608684915142 ] } }, +{ "type": "Feature", "properties": { "im": 0.0167371 }, "geometry": { "type": "Point", "coordinates": [ 85.322827843358169, 27.619484472836259 ] } }, +{ "type": "Feature", "properties": { "im": 0.0353424 }, "geometry": { "type": "Point", "coordinates": [ 85.308886994116392, 27.619369363748316 ] } }, +{ "type": "Feature", "properties": { "im": 0.26370099 }, "geometry": { "type": "Point", "coordinates": [ 85.316666201753179, 27.631467970384769 ] } }, +{ "type": "Feature", "properties": { "im": 2.59209991 }, "geometry": { "type": "Point", "coordinates": [ 85.309930951769104, 27.622649332340174 ] } }, +{ "type": "Feature", "properties": { "im": 2.33304 }, "geometry": { "type": "Point", "coordinates": [ 85.310857616518192, 27.628292554945087 ] } }, +{ "type": "Feature", "properties": { "im": 0.293329 }, "geometry": { "type": "Point", "coordinates": [ 85.304594493447382, 27.632277608660353 ] } }, +{ "type": "Feature", "properties": { "im": 0.0137062 }, "geometry": { "type": "Point", "coordinates": [ 85.311875078846953, 27.64122949891004 ] } }, +{ "type": "Feature", "properties": { "im": 0.0153144 }, "geometry": { "type": "Point", "coordinates": [ 85.311904091424339, 27.636699040024197 ] } }, +{ "type": "Feature", "properties": { "im": 1.41357005 }, "geometry": { "type": "Point", "coordinates": [ 85.308714752044352, 27.638483327052857 ] } }, +{ "type": "Feature", "properties": { "im": 0.117626 }, "geometry": { "type": "Point", "coordinates": [ 85.321561919286154, 27.617447432321345 ] } }, +{ "type": "Feature", "properties": { "im": 0.100337 }, "geometry": { "type": "Point", "coordinates": [ 85.317324413327043, 27.62553714766965 ] } }, +{ "type": "Feature", "properties": { "im": 0.00717798 }, "geometry": { "type": "Point", "coordinates": [ 85.306852522179753, 27.61725062135497 ] } }, +{ "type": "Feature", "properties": { "im": 2.87642002 }, "geometry": { "type": "Point", "coordinates": [ 85.309680573155049, 27.621797880805598 ] } }, +{ "type": "Feature", "properties": { "im": 0.00924508 }, "geometry": { "type": "Point", "coordinates": [ 85.316943946339308, 27.626561443877058 ] } }, +{ "type": "Feature", "properties": { "im": 0.172608 }, "geometry": { "type": "Point", "coordinates": [ 85.313474069345546, 27.640057590730954 ] } }, +{ "type": "Feature", "properties": { "im": 0.0788714 }, "geometry": { "type": "Point", "coordinates": [ 85.309092105496859, 27.619209404574395 ] } }, +{ "type": "Feature", "properties": { "im": 0.11105 }, "geometry": { "type": "Point", "coordinates": [ 85.324786636194716, 27.625266460742683 ] } }, +{ "type": "Feature", "properties": { "im": 0.00704228 }, "geometry": { "type": "Point", "coordinates": [ 85.310693825706025, 27.640276456477622 ] } }, +{ "type": "Feature", "properties": { "im": 0.0243405 }, "geometry": { "type": "Point", "coordinates": [ 85.30778450218294, 27.638345619020036 ] } }, +{ "type": "Feature", "properties": { "im": 0.00661297 }, "geometry": { "type": "Point", "coordinates": [ 85.316577209697144, 27.62933686148633 ] } }, +{ "type": "Feature", "properties": { "im": 0.0290576 }, "geometry": { "type": "Point", "coordinates": [ 85.309733795455344, 27.618332722461993 ] } }, +{ "type": "Feature", "properties": { "im": 7.5742898 }, "geometry": { "type": "Point", "coordinates": [ 85.303208855749375, 27.616989487078893 ] } }, +{ "type": "Feature", "properties": { "im": 1.66237998 }, "geometry": { "type": "Point", "coordinates": [ 85.30952673111868, 27.637085248985048 ] } }, +{ "type": "Feature", "properties": { "im": 0.0480674 }, "geometry": { "type": "Point", "coordinates": [ 85.318024000188117, 27.63280217607614 ] } }, +{ "type": "Feature", "properties": { "im": 0.0284897 }, "geometry": { "type": "Point", "coordinates": [ 85.312505637648798, 27.62919712080798 ] } }, +{ "type": "Feature", "properties": { "im": 0.0215438 }, "geometry": { "type": "Point", "coordinates": [ 85.311635972694134, 27.629078229149776 ] } }, +{ "type": "Feature", "properties": { "im": 0.0445186 }, "geometry": { "type": "Point", "coordinates": [ 85.309299125598031, 27.64134251683247 ] } }, +{ "type": "Feature", "properties": { "im": 0.0500823 }, "geometry": { "type": "Point", "coordinates": [ 85.321836015384051, 27.620736056836986 ] } }, +{ "type": "Feature", "properties": { "im": 1.30469 }, "geometry": { "type": "Point", "coordinates": [ 85.310528736609058, 27.619353267555091 ] } }, +{ "type": "Feature", "properties": { "im": 0.017198 }, "geometry": { "type": "Point", "coordinates": [ 85.308469059174769, 27.629418708618878 ] } }, +{ "type": "Feature", "properties": { "im": 0.515962 }, "geometry": { "type": "Point", "coordinates": [ 85.319472961723363, 27.626844827837406 ] } }, +{ "type": "Feature", "properties": { "im": 0.045402 }, "geometry": { "type": "Point", "coordinates": [ 85.317427192067171, 27.620141112073899 ] } }, +{ "type": "Feature", "properties": { "im": 0.40674499 }, "geometry": { "type": "Point", "coordinates": [ 85.309860536383439, 27.62723344529083 ] } }, +{ "type": "Feature", "properties": { "im": 0.19081201 }, "geometry": { "type": "Point", "coordinates": [ 85.32462913177082, 27.626293473365351 ] } }, +{ "type": "Feature", "properties": { "im": 1.91525996 }, "geometry": { "type": "Point", "coordinates": [ 85.308428543405753, 27.637324569592071 ] } }, +{ "type": "Feature", "properties": { "im": 0.0555926 }, "geometry": { "type": "Point", "coordinates": [ 85.30451769714432, 27.629370454763915 ] } }, +{ "type": "Feature", "properties": { "im": 2.00830007 }, "geometry": { "type": "Point", "coordinates": [ 85.309657197152831, 27.636509206404234 ] } }, +{ "type": "Feature", "properties": { "im": 0.28167599 }, "geometry": { "type": "Point", "coordinates": [ 85.311440859038868, 27.629906202518573 ] } }, +{ "type": "Feature", "properties": { "im": 0.00578876 }, "geometry": { "type": "Point", "coordinates": [ 85.304286265114683, 27.635180053377233 ] } }, +{ "type": "Feature", "properties": { "im": 1.87380004 }, "geometry": { "type": "Point", "coordinates": [ 85.312429729980337, 27.640748873418271 ] } }, +{ "type": "Feature", "properties": { "im": 0.00728411 }, "geometry": { "type": "Point", "coordinates": [ 85.32393069017867, 27.633559639597898 ] } }, +{ "type": "Feature", "properties": { "im": 0.207414 }, "geometry": { "type": "Point", "coordinates": [ 85.326765160881379, 27.628431245216035 ] } }, +{ "type": "Feature", "properties": { "im": 0.290205 }, "geometry": { "type": "Point", "coordinates": [ 85.325957006936449, 27.641580764758697 ] } }, +{ "type": "Feature", "properties": { "im": 0.0309702 }, "geometry": { "type": "Point", "coordinates": [ 85.314716643673279, 27.63039732812187 ] } }, +{ "type": "Feature", "properties": { "im": 0.0105893 }, "geometry": { "type": "Point", "coordinates": [ 85.314140161398342, 27.621725799202611 ] } }, +{ "type": "Feature", "properties": { "im": 0.0585114 }, "geometry": { "type": "Point", "coordinates": [ 85.324291910593146, 27.619159195468153 ] } }, +{ "type": "Feature", "properties": { "im": 1.66863 }, "geometry": { "type": "Point", "coordinates": [ 85.303108850741907, 27.637927452584321 ] } }, +{ "type": "Feature", "properties": { "im": 0.75657499 }, "geometry": { "type": "Point", "coordinates": [ 85.325798109416681, 27.637372935730202 ] } }, +{ "type": "Feature", "properties": { "im": 2.28585005 }, "geometry": { "type": "Point", "coordinates": [ 85.310119293429395, 27.630178921197917 ] } }, +{ "type": "Feature", "properties": { "im": 3.66745996 }, "geometry": { "type": "Point", "coordinates": [ 85.30704780249701, 27.633535052591796 ] } }, +{ "type": "Feature", "properties": { "im": 0.0813583 }, "geometry": { "type": "Point", "coordinates": [ 85.32028441302559, 27.622811206811829 ] } }, +{ "type": "Feature", "properties": { "im": 1.69913006 }, "geometry": { "type": "Point", "coordinates": [ 85.303562034827792, 27.634828225272006 ] } }, +{ "type": "Feature", "properties": { "im": 0.0230346 }, "geometry": { "type": "Point", "coordinates": [ 85.307724002867474, 27.635691379657658 ] } }, +{ "type": "Feature", "properties": { "im": 0.43400899 }, "geometry": { "type": "Point", "coordinates": [ 85.321909269501333, 27.629220974600557 ] } }, +{ "type": "Feature", "properties": { "im": 0.0508242 }, "geometry": { "type": "Point", "coordinates": [ 85.310153893597644, 27.625287505077406 ] } }, +{ "type": "Feature", "properties": { "im": 0.00599983 }, "geometry": { "type": "Point", "coordinates": [ 85.324334350244428, 27.637662122062899 ] } }, +{ "type": "Feature", "properties": { "im": 3.67278004 }, "geometry": { "type": "Point", "coordinates": [ 85.310235342656611, 27.618663752585217 ] } }, +{ "type": "Feature", "properties": { "im": 1.68366003 }, "geometry": { "type": "Point", "coordinates": [ 85.309310773081663, 27.639266790719276 ] } }, +{ "type": "Feature", "properties": { "im": 0.99512702 }, "geometry": { "type": "Point", "coordinates": [ 85.307732896638328, 27.633796129819402 ] } }, +{ "type": "Feature", "properties": { "im": 0.117346 }, "geometry": { "type": "Point", "coordinates": [ 85.310956196785241, 27.629791993859907 ] } }, +{ "type": "Feature", "properties": { "im": 0.306732 }, "geometry": { "type": "Point", "coordinates": [ 85.325440888601307, 27.639534755927819 ] } }, +{ "type": "Feature", "properties": { "im": 1.59043002 }, "geometry": { "type": "Point", "coordinates": [ 85.309936344187662, 27.628895066650447 ] } }, +{ "type": "Feature", "properties": { "im": 0.164995 }, "geometry": { "type": "Point", "coordinates": [ 85.309079330782126, 27.618721869770315 ] } }, +{ "type": "Feature", "properties": { "im": 0.13621899 }, "geometry": { "type": "Point", "coordinates": [ 85.305915687569993, 27.624134686753564 ] } }, +{ "type": "Feature", "properties": { "im": 0.01796 }, "geometry": { "type": "Point", "coordinates": [ 85.318566317925743, 27.631797891837351 ] } }, +{ "type": "Feature", "properties": { "im": 0.0343853 }, "geometry": { "type": "Point", "coordinates": [ 85.307055827910617, 27.63564712096742 ] } }, +{ "type": "Feature", "properties": { "im": 0.0125978 }, "geometry": { "type": "Point", "coordinates": [ 85.308169824354636, 27.627790463891877 ] } }, +{ "type": "Feature", "properties": { "im": 2.16327 }, "geometry": { "type": "Point", "coordinates": [ 85.312959680326287, 27.64055676169448 ] } }, +{ "type": "Feature", "properties": { "im": 0.101417 }, "geometry": { "type": "Point", "coordinates": [ 85.322391654665751, 27.637458118704437 ] } }, +{ "type": "Feature", "properties": { "im": 0.00545125 }, "geometry": { "type": "Point", "coordinates": [ 85.319783397550339, 27.633058170280627 ] } }, +{ "type": "Feature", "properties": { "im": 2.41178989 }, "geometry": { "type": "Point", "coordinates": [ 85.311815075639885, 27.639856889205156 ] } }, +{ "type": "Feature", "properties": { "im": 2.61611009 }, "geometry": { "type": "Point", "coordinates": [ 85.30850071853088, 27.635267632410699 ] } }, +{ "type": "Feature", "properties": { "im": 0.0057593 }, "geometry": { "type": "Point", "coordinates": [ 85.309505315952904, 27.633204014121262 ] } }, +{ "type": "Feature", "properties": { "im": 0.03467 }, "geometry": { "type": "Point", "coordinates": [ 85.316283101802142, 27.616769721456457 ] } }, +{ "type": "Feature", "properties": { "im": 0.051354 }, "geometry": { "type": "Point", "coordinates": [ 85.308718018387907, 27.625089491854901 ] } }, +{ "type": "Feature", "properties": { "im": 1.63882005 }, "geometry": { "type": "Point", "coordinates": [ 85.31884965461127, 27.619887592861499 ] } }, +{ "type": "Feature", "properties": { "im": 0.256033 }, "geometry": { "type": "Point", "coordinates": [ 85.322446889476922, 27.641809101827228 ] } }, +{ "type": "Feature", "properties": { "im": 0.0134724 }, "geometry": { "type": "Point", "coordinates": [ 85.303994466797931, 27.629129393327144 ] } }, +{ "type": "Feature", "properties": { "im": 0.207755 }, "geometry": { "type": "Point", "coordinates": [ 85.320300666930081, 27.621746387057726 ] } }, +{ "type": "Feature", "properties": { "im": 0.31247601 }, "geometry": { "type": "Point", "coordinates": [ 85.32013352142026, 27.62871209545677 ] } }, +{ "type": "Feature", "properties": { "im": 0.00973576 }, "geometry": { "type": "Point", "coordinates": [ 85.321411394921611, 27.623330282293356 ] } }, +{ "type": "Feature", "properties": { "im": 0.00679013 }, "geometry": { "type": "Point", "coordinates": [ 85.313576285545182, 27.64132240757116 ] } }, +{ "type": "Feature", "properties": { "im": 0.32635799 }, "geometry": { "type": "Point", "coordinates": [ 85.315045173904323, 27.632766011644645 ] } }, +{ "type": "Feature", "properties": { "im": 1.90611005 }, "geometry": { "type": "Point", "coordinates": [ 85.308829122658395, 27.637636323746953 ] } }, +{ "type": "Feature", "properties": { "im": 1.17101002 }, "geometry": { "type": "Point", "coordinates": [ 85.303433396758095, 27.616883927171866 ] } }, +{ "type": "Feature", "properties": { "im": 0.0111065 }, "geometry": { "type": "Point", "coordinates": [ 85.313927660407757, 27.623690785422387 ] } }, +{ "type": "Feature", "properties": { "im": 0.097438 }, "geometry": { "type": "Point", "coordinates": [ 85.309647027136393, 27.623981651532073 ] } }, +{ "type": "Feature", "properties": { "im": 0.25123101 }, "geometry": { "type": "Point", "coordinates": [ 85.3140112095153, 27.639396234854274 ] } }, +{ "type": "Feature", "properties": { "im": 0.21964701 }, "geometry": { "type": "Point", "coordinates": [ 85.304689179021196, 27.631394266180205 ] } }, +{ "type": "Feature", "properties": { "im": 0.00808395 }, "geometry": { "type": "Point", "coordinates": [ 85.320279385168305, 27.632432390711532 ] } }, +{ "type": "Feature", "properties": { "im": 0.0280676 }, "geometry": { "type": "Point", "coordinates": [ 85.325684607187668, 27.628851431094507 ] } }, +{ "type": "Feature", "properties": { "im": 0.0157412 }, "geometry": { "type": "Point", "coordinates": [ 85.323074469936216, 27.628567177692133 ] } }, +{ "type": "Feature", "properties": { "im": 0.0625791 }, "geometry": { "type": "Point", "coordinates": [ 85.323098353737777, 27.638964909444969 ] } }, +{ "type": "Feature", "properties": { "im": 1.37478995 }, "geometry": { "type": "Point", "coordinates": [ 85.312556354931516, 27.641743222033973 ] } }, +{ "type": "Feature", "properties": { "im": 0.0504509 }, "geometry": { "type": "Point", "coordinates": [ 85.309599096520529, 27.629739355804453 ] } }, +{ "type": "Feature", "properties": { "im": 0.0681516 }, "geometry": { "type": "Point", "coordinates": [ 85.31973500927046, 27.629591771932503 ] } }, +{ "type": "Feature", "properties": { "im": 0.0219444 }, "geometry": { "type": "Point", "coordinates": [ 85.308699726041482, 27.628916092615487 ] } }, +{ "type": "Feature", "properties": { "im": 0.171258 }, "geometry": { "type": "Point", "coordinates": [ 85.322733227714323, 27.61771431604733 ] } }, +{ "type": "Feature", "properties": { "im": 0.16612101 }, "geometry": { "type": "Point", "coordinates": [ 85.305011248097983, 27.628907161333363 ] } }, +{ "type": "Feature", "properties": { "im": 0.103303 }, "geometry": { "type": "Point", "coordinates": [ 85.307561864334858, 27.638324850462951 ] } }, +{ "type": "Feature", "properties": { "im": 0.0759188 }, "geometry": { "type": "Point", "coordinates": [ 85.309206817538254, 27.62493299215274 ] } }, +{ "type": "Feature", "properties": { "im": 0.00890142 }, "geometry": { "type": "Point", "coordinates": [ 85.322376981997976, 27.629118326708515 ] } }, +{ "type": "Feature", "properties": { "im": 0.0117082 }, "geometry": { "type": "Point", "coordinates": [ 85.308645545604236, 27.621893569753652 ] } }, +{ "type": "Feature", "properties": { "im": 0.0211749 }, "geometry": { "type": "Point", "coordinates": [ 85.318101750531781, 27.621087951362306 ] } }, +{ "type": "Feature", "properties": { "im": 0.32914999 }, "geometry": { "type": "Point", "coordinates": [ 85.310011388339234, 27.620050957472298 ] } }, +{ "type": "Feature", "properties": { "im": 0.355005 }, "geometry": { "type": "Point", "coordinates": [ 85.313132233227776, 27.62534181327031 ] } }, +{ "type": "Feature", "properties": { "im": 0.0615909 }, "geometry": { "type": "Point", "coordinates": [ 85.32244808118422, 27.623126211309216 ] } }, +{ "type": "Feature", "properties": { "im": 0.00666788 }, "geometry": { "type": "Point", "coordinates": [ 85.312865651346101, 27.622901674157752 ] } } +] +} diff --git a/household_tv50_1.json b/household_tv50_1.json new file mode 100644 index 0000000000000000000000000000000000000000..4830e8917a4a43b95abfb5829cf40e3f147dddb9 --- /dev/null +++ b/household_tv50_1.json @@ -0,0 +1 @@ +{"hhid":{"0":1,"1":2,"2":3,"3":4,"4":5,"5":6,"6":7,"7":8,"8":9,"9":10,"10":11,"11":12,"12":13,"13":14,"14":15,"15":16,"16":17,"17":18,"18":19,"19":20,"20":21,"21":22,"22":23,"23":24,"24":25,"25":26,"26":27,"27":28,"28":29,"29":30,"30":31,"31":32,"32":33,"33":34,"34":35,"35":36,"36":37,"37":38,"38":39,"39":40,"40":41,"41":42,"42":43,"43":44,"44":45,"45":46,"46":47,"47":48,"48":49,"49":50,"50":51,"51":52,"52":53,"53":54,"54":55,"55":56,"56":57,"57":58,"58":59,"59":60,"60":61,"61":62,"62":63,"63":64,"64":65,"65":66,"66":67,"67":68,"68":69,"69":70,"70":71,"71":72,"72":73,"73":74,"74":75,"75":76,"76":77,"77":78,"78":79,"79":80,"80":81,"81":82,"82":83,"83":84,"84":85,"85":86,"86":87,"87":88,"88":89,"89":90,"90":91,"91":92,"92":93,"93":94,"94":95,"95":96,"96":97,"97":98,"98":99,"99":100,"100":101,"101":102,"102":103,"103":104,"104":105,"105":106,"106":107,"107":108,"108":109,"109":110,"110":111,"111":112,"112":113,"113":114,"114":115,"115":116,"116":117,"117":118,"118":119,"119":120,"120":121,"121":122,"122":123,"123":124,"124":125,"125":126,"126":127,"127":128,"128":129,"129":130,"130":131,"131":132,"132":133,"133":134,"134":135,"135":136,"136":137,"137":138,"138":139,"139":140,"140":141,"141":142,"142":143,"143":144,"144":145,"145":146,"146":147,"147":148,"148":149,"149":150,"150":151,"151":152,"152":153,"153":154,"154":155,"155":156,"156":157,"157":158,"158":159,"159":160,"160":161,"161":162,"162":163,"163":164,"164":165,"165":166,"166":167,"167":168,"168":169,"169":170,"170":171,"171":172,"172":173,"173":174,"174":175,"175":176,"176":177,"177":178,"178":179,"179":180,"180":181,"181":182,"182":183,"183":184,"184":185,"185":186,"186":187,"187":188,"188":189,"189":190,"190":191,"191":192,"192":193,"193":194,"194":195,"195":196,"196":197,"197":198,"198":199,"199":200,"200":201,"201":202,"202":203,"203":204,"204":205,"205":206,"206":207,"207":208,"208":209,"209":210,"210":211,"211":212,"212":213,"213":214,"214":215,"215":216,"216":217,"217":218,"218":219,"219":220,"220":221,"221":222,"222":223,"223":224,"224":225,"225":226,"226":227,"227":228,"228":229,"229":230,"230":231,"231":232,"232":233,"233":234,"234":235,"235":236,"236":237,"237":238,"238":239,"239":240,"240":241,"241":242,"242":243,"243":244,"244":245,"245":246,"246":247,"247":248,"248":249,"249":250,"250":251,"251":252,"252":253,"253":254,"254":255,"255":256,"256":257,"257":258,"258":259,"259":260,"260":261,"261":262,"262":263,"263":264,"264":265,"265":266,"266":267,"267":268,"268":269,"269":270,"270":271,"271":272,"272":273,"273":274,"274":275,"275":276,"276":277,"277":278,"278":279,"279":280,"280":281,"281":282,"282":283,"283":284,"284":285,"285":286,"286":287,"287":288,"288":289,"289":290,"290":291,"291":292,"292":293,"293":294,"294":295,"295":296,"296":297,"297":298,"298":299,"299":300,"300":301,"301":302,"302":303,"303":304,"304":305,"305":306,"306":307,"307":308,"308":309,"309":310,"310":311,"311":312,"312":313,"313":314,"314":315,"315":316,"316":317,"317":318,"318":319,"319":320,"320":321,"321":322,"322":323,"323":324,"324":325,"325":326,"326":327,"327":328,"328":329,"329":330,"330":331,"331":332,"332":333,"333":334,"334":335,"335":336,"336":337,"337":338,"338":339,"339":340,"340":341,"341":342,"342":343,"343":344,"344":345,"345":346,"346":347,"347":348,"348":349,"349":350,"350":351,"351":352,"352":353,"353":354,"354":355,"355":356,"356":357,"357":358,"358":359,"359":360,"360":361,"361":362,"362":363,"363":364,"364":365,"365":366,"366":367,"367":368,"368":369,"369":370,"370":371,"371":372,"372":373,"373":374,"374":375,"375":376,"376":377,"377":378,"378":379,"379":380,"380":381,"381":382,"382":383,"383":384,"384":385,"385":386,"386":387,"387":388,"388":389,"389":390,"390":391,"391":392,"392":393,"393":394,"394":395,"395":396,"396":397,"397":398,"398":399,"399":400,"400":401,"401":402,"402":403,"403":404,"404":405,"405":406,"406":407,"407":408,"408":409,"409":410,"410":411,"411":412,"412":413,"413":414,"414":415,"415":416,"416":417,"417":418,"418":419,"419":420,"420":421,"421":422,"422":423,"423":424,"424":425,"425":426,"426":427,"427":428,"428":429,"429":430,"430":431,"431":432,"432":433,"433":434,"434":435,"435":436,"436":437,"437":438,"438":439,"439":440,"440":441,"441":442,"442":443,"443":444,"444":445,"445":446,"446":447,"447":448,"448":449,"449":450,"450":451,"451":452,"452":453,"453":454,"454":455,"455":456,"456":457,"457":458,"458":459,"459":460,"460":461,"461":462,"462":463,"463":464,"464":465,"465":466,"466":467,"467":468,"468":469,"469":470,"470":471,"471":472,"472":473,"473":474,"474":475,"475":476,"476":477,"477":478,"478":479,"479":480,"480":481,"481":482,"482":483,"483":484,"484":485,"485":486,"486":487,"487":488,"488":489,"489":490,"490":491,"491":492,"492":493,"493":494,"494":495,"495":496,"496":497,"497":498,"498":499,"499":500,"500":501,"501":502,"502":503,"503":504,"504":505,"505":506,"506":507,"507":508,"508":509,"509":510,"510":511,"511":512,"512":513,"513":514,"514":515,"515":516,"516":517,"517":518,"518":519,"519":520,"520":521,"521":522,"522":523,"523":524,"524":525,"525":526,"526":527,"527":528,"528":529,"529":530,"530":531,"531":532,"532":533,"533":534,"534":535,"535":536,"536":537,"537":538,"538":539,"539":540,"540":541,"541":542,"542":543,"543":544,"544":545,"545":546,"546":547,"547":548,"548":549,"549":550,"550":551,"551":552,"552":553,"553":554,"554":555,"555":556,"556":557,"557":558,"558":559,"559":560,"560":561,"561":562,"562":563,"563":564,"564":565,"565":566,"566":567,"567":568,"568":569,"569":570,"570":571,"571":572,"572":573,"573":574,"574":575,"575":576,"576":577,"577":578,"578":579,"579":580,"580":581,"581":582,"582":583,"583":584,"584":585,"585":586,"586":587,"587":588,"588":589,"589":590,"590":591,"591":592,"592":593,"593":594,"594":595,"595":596,"596":597,"597":598,"598":599,"599":600,"600":601,"601":602,"602":603,"603":604,"604":605,"605":606,"606":607,"607":608,"608":609,"609":610,"610":611,"611":612,"612":613,"613":614,"614":615,"615":616,"616":617,"617":618,"618":619,"619":620,"620":621,"621":622,"622":623,"623":624,"624":625,"625":626,"626":627,"627":628,"628":629,"629":630,"630":631,"631":632,"632":633,"633":634,"634":635,"635":636,"636":637,"637":638,"638":639,"639":640,"640":641,"641":642,"642":643,"643":644,"644":645,"645":646,"646":647,"647":648,"648":649,"649":650,"650":651,"651":652,"652":653,"653":654,"654":655,"655":656,"656":657,"657":658,"658":659,"659":660,"660":661,"661":662,"662":663,"663":664,"664":665,"665":666,"666":667,"667":668,"668":669,"669":670,"670":671,"671":672,"672":673,"673":674,"674":675,"675":676,"676":677,"677":678,"678":679,"679":680,"680":681,"681":682,"682":683,"683":684,"684":685,"685":686,"686":687,"687":688,"688":689,"689":690,"690":691,"691":692,"692":693,"693":694,"694":695,"695":696,"696":697,"697":698,"698":699,"699":700,"700":701,"701":702,"702":703,"703":704,"704":705,"705":706,"706":707,"707":708,"708":709,"709":710,"710":711,"711":712,"712":713,"713":714,"714":715,"715":716,"716":717,"717":718,"718":719,"719":720,"720":721,"721":722,"722":723,"723":724,"724":725,"725":726,"726":727,"727":728,"728":729,"729":730,"730":731,"731":732,"732":733,"733":734,"734":735,"735":736,"736":737,"737":738,"738":739,"739":740,"740":741,"741":742,"742":743,"743":744,"744":745,"745":746,"746":747,"747":748,"748":749,"749":750,"750":751,"751":752,"752":753,"753":754,"754":755,"755":756,"756":757,"757":758,"758":759,"759":760,"760":761,"761":762,"762":763,"763":764,"764":765,"765":766,"766":767,"767":768,"768":769,"769":770,"770":771,"771":772,"772":773,"773":774,"774":775,"775":776,"776":777,"777":778,"778":779,"779":780,"780":781,"781":782,"782":783,"783":784,"784":785,"785":786,"786":787,"787":788,"788":789,"789":790,"790":791,"791":792,"792":793,"793":794,"794":795,"795":796,"796":797,"797":798,"798":799,"799":800,"800":801,"801":802,"802":803,"803":804,"804":805,"805":806,"806":807,"807":808,"808":809,"809":810,"810":811,"811":812,"812":813,"813":814,"814":815,"815":816,"816":817,"817":818,"818":819,"819":820,"820":821,"821":822,"822":823,"823":824,"824":825,"825":826,"826":827,"827":828,"828":829,"829":830,"830":831,"831":832,"832":833,"833":834,"834":835,"835":836,"836":837,"837":838,"838":839,"839":840,"840":841,"841":842,"842":843,"843":844,"844":845,"845":846,"846":847,"847":848,"848":849,"849":850,"850":851,"851":852,"852":853,"853":854,"854":855,"855":856,"856":857,"857":858,"858":859,"859":860,"860":861,"861":862,"862":863,"863":864,"864":865,"865":866,"866":867,"867":868,"868":869,"869":870,"870":871,"871":872,"872":873,"873":874,"874":875,"875":876,"876":877,"877":878,"878":879,"879":880,"880":881,"881":882,"882":883,"883":884,"884":885,"885":886,"886":887,"887":888,"888":889,"889":890,"890":891,"891":892,"892":893,"893":894,"894":895,"895":896,"896":897,"897":898,"898":899,"899":900,"900":901,"901":902,"902":903,"903":904,"904":905,"905":906,"906":907,"907":908,"908":909,"909":910,"910":911,"911":912,"912":913,"913":914,"914":915,"915":916,"916":917,"917":918,"918":919,"919":920,"920":921,"921":922,"922":923,"923":924,"924":925,"925":926,"926":927,"927":928,"928":929,"929":930,"930":931,"931":932,"932":933,"933":934,"934":935,"935":936,"936":937,"937":938,"938":939,"939":940,"940":941,"941":942,"942":943,"943":944,"944":945,"945":946,"946":947,"947":948,"948":949,"949":950,"950":951,"951":952,"952":953,"953":954,"954":955,"955":956,"956":957,"957":958,"958":959,"959":960,"960":961,"961":962,"962":963,"963":964,"964":965,"965":966,"966":967,"967":968,"968":969,"969":970,"970":971,"971":972,"972":973,"973":974,"974":975,"975":976,"976":977,"977":978,"978":979,"979":980,"980":981,"981":982,"982":983,"983":984,"984":985,"985":986,"986":987,"987":988,"988":989,"989":990,"990":991,"991":992,"992":993,"993":994,"994":995,"995":996,"996":997,"997":998,"998":999,"999":1000,"1000":1001,"1001":1002,"1002":1003,"1003":1004,"1004":1005,"1005":1006,"1006":1007,"1007":1008,"1008":1009,"1009":1010,"1010":1011,"1011":1012,"1012":1013,"1013":1014,"1014":1015,"1015":1016,"1016":1017,"1017":1018,"1018":1019,"1019":1020,"1020":1021,"1021":1022,"1022":1023,"1023":1024,"1024":1025,"1025":1026,"1026":1027,"1027":1028,"1028":1029,"1029":1030,"1030":1031,"1031":1032,"1032":1033,"1033":1034,"1034":1035,"1035":1036,"1036":1037,"1037":1038,"1038":1039,"1039":1040,"1040":1041,"1041":1042,"1042":1043,"1043":1044,"1044":1045,"1045":1046,"1046":1047,"1047":1048,"1048":1049,"1049":1050,"1050":1051,"1051":1052,"1052":1053,"1053":1054,"1054":1055,"1055":1056,"1056":1057,"1057":1058,"1058":1059,"1059":1060,"1060":1061,"1061":1062,"1062":1063,"1063":1064,"1064":1065,"1065":1066,"1066":1067,"1067":1068,"1068":1069,"1069":1070,"1070":1071,"1071":1072,"1072":1073,"1073":1074,"1074":1075,"1075":1076,"1076":1077,"1077":1078,"1078":1079,"1079":1080,"1080":1081,"1081":1082,"1082":1083,"1083":1084,"1084":1085,"1085":1086,"1086":1087,"1087":1088,"1088":1089,"1089":1090,"1090":1091,"1091":1092,"1092":1093,"1093":1094,"1094":1095,"1095":1096,"1096":1097,"1097":1098,"1098":1099,"1099":1100,"1100":1101,"1101":1102,"1102":1103,"1103":1104,"1104":1105,"1105":1106,"1106":1107,"1107":1108,"1108":1109,"1109":1110,"1110":1111,"1111":1112,"1112":1113,"1113":1114,"1114":1115,"1115":1116,"1116":1117,"1117":1118,"1118":1119,"1119":1120,"1120":1121,"1121":1122,"1122":1123,"1123":1124,"1124":1125,"1125":1126,"1126":1127,"1127":1128,"1128":1129,"1129":1130,"1130":1131,"1131":1132,"1132":1133,"1133":1134,"1134":1135,"1135":1136,"1136":1137,"1137":1138,"1138":1139,"1139":1140,"1140":1141,"1141":1142,"1142":1143,"1143":1144,"1144":1145,"1145":1146,"1146":1147,"1147":1148,"1148":1149,"1149":1150,"1150":1151,"1151":1152,"1152":1153,"1153":1154,"1154":1155,"1155":1156,"1156":1157,"1157":1158,"1158":1159,"1159":1160,"1160":1161,"1161":1162,"1162":1163,"1163":1164,"1164":1165,"1165":1166,"1166":1167,"1167":1168,"1168":1169,"1169":1170,"1170":1171,"1171":1172,"1172":1173,"1173":1174,"1174":1175,"1175":1176,"1176":1177,"1177":1178,"1178":1179,"1179":1180,"1180":1181,"1181":1182,"1182":1183,"1183":1184,"1184":1185,"1185":1186,"1186":1187,"1187":1188,"1188":1189,"1189":1190,"1190":1191,"1191":1192,"1192":1193,"1193":1194,"1194":1195,"1195":1196,"1196":1197,"1197":1198,"1198":1199,"1199":1200,"1200":1201,"1201":1202,"1202":1203,"1203":1204,"1204":1205,"1205":1206,"1206":1207,"1207":1208,"1208":1209,"1209":1210,"1210":1211,"1211":1212,"1212":1213,"1213":1214,"1214":1215,"1215":1216,"1216":1217,"1217":1218,"1218":1219,"1219":1220,"1220":1221,"1221":1222,"1222":1223,"1223":1224,"1224":1225,"1225":1226,"1226":1227,"1227":1228,"1228":1229,"1229":1230,"1230":1231,"1231":1232,"1232":1233,"1233":1234,"1234":1235,"1235":1236,"1236":1237,"1237":1238,"1238":1239,"1239":1240,"1240":1241,"1241":1242,"1242":1243,"1243":1244,"1244":1245,"1245":1246,"1246":1247,"1247":1248,"1248":1249,"1249":1250,"1250":1251,"1251":1252,"1252":1253,"1253":1254,"1254":1255,"1255":1256,"1256":1257,"1257":1258,"1258":1259,"1259":1260,"1260":1261,"1261":1262,"1262":1263,"1263":1264,"1264":1265,"1265":1266,"1266":1267,"1267":1268,"1268":1269,"1269":1270,"1270":1271,"1271":1272,"1272":1273,"1273":1274,"1274":1275,"1275":1276,"1276":1277,"1277":1278,"1278":1279,"1279":1280,"1280":1281,"1281":1282,"1282":1283,"1283":1284,"1284":1285,"1285":1286,"1286":1287,"1287":1288,"1288":1289,"1289":1290,"1290":1291,"1291":1292,"1292":1293,"1293":1294,"1294":1295,"1295":1296,"1296":1297,"1297":1298,"1298":1299,"1299":1300,"1300":1301,"1301":1302,"1302":1303,"1303":1304,"1304":1305,"1305":1306,"1306":1307,"1307":1308,"1308":1309,"1309":1310,"1310":1311,"1311":1312,"1312":1313,"1313":1314,"1314":1315,"1315":1316,"1316":1317,"1317":1318,"1318":1319,"1319":1320,"1320":1321,"1321":1322,"1322":1323,"1323":1324,"1324":1325,"1325":1326,"1326":1327,"1327":1328,"1328":1329,"1329":1330,"1330":1331,"1331":1332,"1332":1333,"1333":1334,"1334":1335,"1335":1336,"1336":1337,"1337":1338,"1338":1339,"1339":1340,"1340":1341,"1341":1342,"1342":1343,"1343":1344,"1344":1345,"1345":1346,"1346":1347,"1347":1348,"1348":1349,"1349":1350,"1350":1351,"1351":1352,"1352":1353,"1353":1354,"1354":1355,"1355":1356,"1356":1357,"1357":1358,"1358":1359,"1359":1360,"1360":1361,"1361":1362,"1362":1363,"1363":1364,"1364":1365,"1365":1366,"1366":1367,"1367":1368,"1368":1369,"1369":1370,"1370":1371,"1371":1372,"1372":1373,"1373":1374,"1374":1375,"1375":1376,"1376":1377,"1377":1378,"1378":1379,"1379":1380,"1380":1381,"1381":1382,"1382":1383,"1383":1384,"1384":1385,"1385":1386,"1386":1387,"1387":1388,"1388":1389,"1389":1390,"1390":1391,"1391":1392,"1392":1393,"1393":1394,"1394":1395,"1395":1396,"1396":1397,"1397":1398,"1398":1399,"1399":1400,"1400":1401,"1401":1402,"1402":1403,"1403":1404,"1404":1405,"1405":1406,"1406":1407,"1407":1408,"1408":1409,"1409":1410,"1410":1411,"1411":1412,"1412":1413,"1413":1414,"1414":1415,"1415":1416,"1416":1417,"1417":1418,"1418":1419,"1419":1420,"1420":1421,"1421":1422,"1422":1423,"1423":1424,"1424":1425,"1425":1426,"1426":1427,"1427":1428,"1428":1429,"1429":1430,"1430":1431,"1431":1432,"1432":1433,"1433":1434,"1434":1435,"1435":1436,"1436":1437,"1437":1438,"1438":1439,"1439":1440,"1440":1441,"1441":1442,"1442":1443,"1443":1444,"1444":1445,"1445":1446,"1446":1447,"1447":1448,"1448":1449,"1449":1450,"1450":1451,"1451":1452,"1452":1453,"1453":1454,"1454":1455,"1455":1456,"1456":1457,"1457":1458,"1458":1459,"1459":1460,"1460":1461,"1461":1462,"1462":1463,"1463":1464,"1464":1465,"1465":1466,"1466":1467,"1467":1468,"1468":1469,"1469":1470,"1470":1471,"1471":1472,"1472":1473,"1473":1474,"1474":1475,"1475":1476,"1476":1477,"1477":1478,"1478":1479,"1479":1480,"1480":1481,"1481":1482,"1482":1483,"1483":1484,"1484":1485,"1485":1486,"1486":1487,"1487":1488,"1488":1489,"1489":1490,"1490":1491,"1491":1492,"1492":1493,"1493":1494,"1494":1495,"1495":1496,"1496":1497,"1497":1498,"1498":1499,"1499":1500,"1500":1501,"1501":1502,"1502":1503,"1503":1504,"1504":1505,"1505":1506,"1506":1507,"1507":1508,"1508":1509,"1509":1510,"1510":1511,"1511":1512,"1512":1513,"1513":1514,"1514":1515,"1515":1516,"1516":1517,"1517":1518,"1518":1519,"1519":1520,"1520":1521,"1521":1522,"1522":1523,"1523":1524,"1524":1525,"1525":1526,"1526":1527,"1527":1528,"1528":1529,"1529":1530,"1530":1531,"1531":1532,"1532":1533,"1533":1534,"1534":1535,"1535":1536,"1536":1537,"1537":1538,"1538":1539,"1539":1540,"1540":1541,"1541":1542,"1542":1543,"1543":1544,"1544":1545,"1545":1546,"1546":1547,"1547":1548,"1548":1549,"1549":1550,"1550":1551,"1551":1552,"1552":1553,"1553":1554,"1554":1555,"1555":1556,"1556":1557,"1557":1558,"1558":1559,"1559":1560,"1560":1561,"1561":1562,"1562":1563,"1563":1564,"1564":1565,"1565":1566,"1566":1567,"1567":1568,"1568":1569,"1569":1570,"1570":1571,"1571":1572,"1572":1573,"1573":1574,"1574":1575,"1575":1576,"1576":1577,"1577":1578,"1578":1579,"1579":1580,"1580":1581,"1581":1582,"1582":1583,"1583":1584,"1584":1585,"1585":1586,"1586":1587,"1587":1588,"1588":1589,"1589":1590,"1590":1591,"1591":1592,"1592":1593,"1593":1594,"1594":1595,"1595":1596,"1596":1597,"1597":1598,"1598":1599,"1599":1600,"1600":1601,"1601":1602,"1602":1603,"1603":1604,"1604":1605,"1605":1606,"1606":1607,"1607":1608,"1608":1609,"1609":1610,"1610":1611,"1611":1612,"1612":1613,"1613":1614,"1614":1615,"1615":1616,"1616":1617,"1617":1618,"1618":1619,"1619":1620,"1620":1621,"1621":1622,"1622":1623,"1623":1624,"1624":1625,"1625":1626,"1626":1627,"1627":1628,"1628":1629,"1629":1630,"1630":1631,"1631":1632,"1632":1633,"1633":1634,"1634":1635,"1635":1636,"1636":1637,"1637":1638,"1638":1639,"1639":1640,"1640":1641,"1641":1642,"1642":1643,"1643":1644,"1644":1645,"1645":1646,"1646":1647,"1647":1648,"1648":1649,"1649":1650,"1650":1651,"1651":1652,"1652":1653,"1653":1654,"1654":1655,"1655":1656,"1656":1657,"1657":1658,"1658":1659,"1659":1660,"1660":1661,"1661":1662,"1662":1663,"1663":1664,"1664":1665,"1665":1666,"1666":1667,"1667":1668,"1668":1669,"1669":1670,"1670":1671,"1671":1672,"1672":1673,"1673":1674,"1674":1675,"1675":1676,"1676":1677,"1677":1678,"1678":1679,"1679":1680,"1680":1681,"1681":1682,"1682":1683,"1683":1684,"1684":1685,"1685":1686,"1686":1687,"1687":1688,"1688":1689,"1689":1690,"1690":1691,"1691":1692,"1692":1693,"1693":1694,"1694":1695,"1695":1696,"1696":1697,"1697":1698,"1698":1699,"1699":1700,"1700":1701,"1701":1702,"1702":1703,"1703":1704,"1704":1705,"1705":1706,"1706":1707,"1707":1708,"1708":1709,"1709":1710,"1710":1711,"1711":1712,"1712":1713,"1713":1714,"1714":1715,"1715":1716,"1716":1717,"1717":1718,"1718":1719,"1719":1720,"1720":1721,"1721":1722,"1722":1723,"1723":1724,"1724":1725,"1725":1726,"1726":1727,"1727":1728,"1728":1729,"1729":1730,"1730":1731,"1731":1732,"1732":1733,"1733":1734,"1734":1735,"1735":1736,"1736":1737,"1737":1738,"1738":1739,"1739":1740,"1740":1741,"1741":1742,"1742":1743,"1743":1744,"1744":1745,"1745":1746,"1746":1747,"1747":1748,"1748":1749,"1749":1750,"1750":1751,"1751":1752,"1752":1753,"1753":1754,"1754":1755,"1755":1756,"1756":1757,"1757":1758,"1758":1759,"1759":1760,"1760":1761,"1761":1762,"1762":1763,"1763":1764,"1764":1765,"1765":1766,"1766":1767,"1767":1768,"1768":1769,"1769":1770,"1770":1771,"1771":1772,"1772":1773,"1773":1774,"1774":1775,"1775":1776,"1776":1777,"1777":1778,"1778":1779,"1779":1780,"1780":1781,"1781":1782,"1782":1783,"1783":1784,"1784":1785,"1785":1786,"1786":1787,"1787":1788,"1788":1789,"1789":1790,"1790":1791,"1791":1792,"1792":1793,"1793":1794,"1794":1795,"1795":1796,"1796":1797,"1797":1798,"1798":1799,"1799":1800,"1800":1801,"1801":1802,"1802":1803,"1803":1804,"1804":1805,"1805":1806,"1806":1807,"1807":1808,"1808":1809,"1809":1810,"1810":1811,"1811":1812,"1812":1813,"1813":1814,"1814":1815,"1815":1816,"1816":1817,"1817":1818,"1818":1819,"1819":1820,"1820":1821,"1821":1822,"1822":1823,"1823":1824,"1824":1825,"1825":1826,"1826":1827,"1827":1828,"1828":1829,"1829":1830,"1830":1831,"1831":1832,"1832":1833,"1833":1834,"1834":1835,"1835":1836,"1836":1837,"1837":1838,"1838":1839,"1839":1840,"1840":1841,"1841":1842,"1842":1843,"1843":1844,"1844":1845,"1845":1846,"1846":1847,"1847":1848,"1848":1849,"1849":1850,"1850":1851,"1851":1852,"1852":1853,"1853":1854,"1854":1855,"1855":1856,"1856":1857,"1857":1858,"1858":1859,"1859":1860,"1860":1861,"1861":1862,"1862":1863,"1863":1864,"1864":1865,"1865":1866,"1866":1867,"1867":1868,"1868":1869,"1869":1870,"1870":1871,"1871":1872,"1872":1873,"1873":1874,"1874":1875,"1875":1876,"1876":1877,"1877":1878,"1878":1879,"1879":1880,"1880":1881,"1881":1882,"1882":1883,"1883":1884,"1884":1885,"1885":1886,"1886":1887,"1887":1888,"1888":1889,"1889":1890,"1890":1891,"1891":1892,"1892":1893,"1893":1894,"1894":1895,"1895":1896,"1896":1897,"1897":1898,"1898":1899,"1899":1900,"1900":1901,"1901":1902,"1902":1903,"1903":1904,"1904":1905,"1905":1906,"1906":1907,"1907":1908,"1908":1909,"1909":1910,"1910":1911,"1911":1912,"1912":1913,"1913":1914,"1914":1915,"1915":1916,"1916":1917,"1917":1918,"1918":1919,"1919":1920,"1920":1921,"1921":1922,"1922":1923,"1923":1924,"1924":1925,"1925":1926,"1926":1927,"1927":1928,"1928":1929,"1929":1930,"1930":1931,"1931":1932,"1932":1933,"1933":1934,"1934":1935,"1935":1936,"1936":1937,"1937":1938,"1938":1939,"1939":1940,"1940":1941,"1941":1942,"1942":1943,"1943":1944,"1944":1945,"1945":1946,"1946":1947,"1947":1948,"1948":1949,"1949":1950,"1950":1951,"1951":1952,"1952":1953,"1953":1954,"1954":1955,"1955":1956,"1956":1957,"1957":1958,"1958":1959,"1959":1960,"1960":1961,"1961":1962,"1962":1963,"1963":1964,"1964":1965,"1965":1966,"1966":1967,"1967":1968,"1968":1969,"1969":1970,"1970":1971,"1971":1972,"1972":1973,"1973":1974,"1974":1975,"1975":1976,"1976":1977,"1977":1978,"1978":1979,"1979":1980,"1980":1981,"1981":1982,"1982":1983,"1983":1984,"1984":1985,"1985":1986,"1986":1987,"1987":1988,"1988":1989,"1989":1990,"1990":1991,"1991":1992,"1992":1993,"1993":1994,"1994":1995,"1995":1996,"1996":1997,"1997":1998,"1998":1999,"1999":2000,"2000":2001,"2001":2002,"2002":2003,"2003":2004,"2004":2005,"2005":2006,"2006":2007,"2007":2008,"2008":2009,"2009":2010,"2010":2011,"2011":2012,"2012":2013,"2013":2014,"2014":2015,"2015":2016,"2016":2017,"2017":2018,"2018":2019,"2019":2020,"2020":2021,"2021":2022,"2022":2023,"2023":2024,"2024":2025,"2025":2026,"2026":2027,"2027":2028,"2028":2029,"2029":2030,"2030":2031,"2031":2032,"2032":2033,"2033":2034,"2034":2035,"2035":2036,"2036":2037,"2037":2038,"2038":2039,"2039":2040,"2040":2041,"2041":2042,"2042":2043,"2043":2044,"2044":2045,"2045":2046,"2046":2047,"2047":2048,"2048":2049,"2049":2050,"2050":2051,"2051":2052,"2052":2053,"2053":2054,"2054":2055,"2055":2056,"2056":2057,"2057":2058,"2058":2059,"2059":2060,"2060":2061,"2061":2062,"2062":2063,"2063":2064,"2064":2065,"2065":2066,"2066":2067,"2067":2068,"2068":2069,"2069":2070,"2070":2071,"2071":2072,"2072":2073,"2073":2074,"2074":2075,"2075":2076,"2076":2077,"2077":2078,"2078":2079,"2079":2080,"2080":2081,"2081":2082,"2082":2083,"2083":2084,"2084":2085,"2085":2086,"2086":2087,"2087":2088,"2088":2089,"2089":2090,"2090":2091,"2091":2092,"2092":2093,"2093":2094,"2094":2095,"2095":2096,"2096":2097,"2097":2098,"2098":2099,"2099":2100,"2100":2101,"2101":2102,"2102":2103,"2103":2104,"2104":2105,"2105":2106,"2106":2107,"2107":2108,"2108":2109,"2109":2110,"2110":2111,"2111":2112,"2112":2113,"2113":2114,"2114":2115,"2115":2116,"2116":2117,"2117":2118,"2118":2119,"2119":2120,"2120":2121,"2121":2122,"2122":2123,"2123":2124,"2124":2125,"2125":2126,"2126":2127,"2127":2128,"2128":2129,"2129":2130,"2130":2131,"2131":2132,"2132":2133,"2133":2134,"2134":2135,"2135":2136,"2136":2137,"2137":2138,"2138":2139,"2139":2140,"2140":2141,"2141":2142,"2142":2143,"2143":2144,"2144":2145,"2145":2146,"2146":2147,"2147":2148,"2148":2149,"2149":2150,"2150":2151,"2151":2152,"2152":2153,"2153":2154,"2154":2155,"2155":2156,"2156":2157,"2157":2158,"2158":2159,"2159":2160,"2160":2161,"2161":2162,"2162":2163,"2163":2164,"2164":2165,"2165":2166,"2166":2167,"2167":2168,"2168":2169,"2169":2170,"2170":2171,"2171":2172,"2172":2173,"2173":2174,"2174":2175,"2175":2176,"2176":2177,"2177":2178,"2178":2179,"2179":2180,"2180":2181,"2181":2182,"2182":2183,"2183":2184,"2184":2185,"2185":2186,"2186":2187,"2187":2188,"2188":2189,"2189":2190,"2190":2191,"2191":2192,"2192":2193,"2193":2194,"2194":2195,"2195":2196,"2196":2197,"2197":2198,"2198":2199,"2199":2200,"2200":2201,"2201":2202,"2202":2203,"2203":2204,"2204":2205,"2205":2206,"2206":2207,"2207":2208,"2208":2209,"2209":2210,"2210":2211,"2211":2212,"2212":2213,"2213":2214,"2214":2215,"2215":2216,"2216":2217,"2217":2218,"2218":2219,"2219":2220,"2220":2221,"2221":2222,"2222":2223,"2223":2224,"2224":2225,"2225":2226,"2226":2227,"2227":2228,"2228":2229,"2229":2230,"2230":2231,"2231":2232,"2232":2233,"2233":2234,"2234":2235,"2235":2236,"2236":2237,"2237":2238,"2238":2239,"2239":2240,"2240":2241,"2241":2242,"2242":2243,"2243":2244,"2244":2245,"2245":2246,"2246":2247,"2247":2248,"2248":2249,"2249":2250,"2250":2251,"2251":2252,"2252":2253,"2253":2254,"2254":2255,"2255":2256,"2256":2257,"2257":2258,"2258":2259,"2259":2260,"2260":2261,"2261":2262,"2262":2263,"2263":2264,"2264":2265,"2265":2266,"2266":2267,"2267":2268,"2268":2269,"2269":2270,"2270":2271,"2271":2272,"2272":2273,"2273":2274,"2274":2275,"2275":2276,"2276":2277,"2277":2278,"2278":2279,"2279":2280,"2280":2281,"2281":2282,"2282":2283,"2283":2284,"2284":2285,"2285":2286,"2286":2287,"2287":2288,"2288":2289,"2289":2290,"2290":2291,"2291":2292,"2292":2293,"2293":2294,"2294":2295,"2295":2296,"2296":2297,"2297":2298,"2298":2299,"2299":2300,"2300":2301,"2301":2302,"2302":2303,"2303":2304,"2304":2305,"2305":2306,"2306":2307,"2307":2308,"2308":2309,"2309":2310,"2310":2311,"2311":2312,"2312":2313,"2313":2314,"2314":2315,"2315":2316,"2316":2317,"2317":2318,"2318":2319,"2319":2320,"2320":2321,"2321":2322,"2322":2323,"2323":2324,"2324":2325,"2325":2326,"2326":2327,"2327":2328,"2328":2329,"2329":2330,"2330":2331,"2331":2332,"2332":2333,"2333":2334,"2334":2335,"2335":2336,"2336":2337,"2337":2338,"2338":2339,"2339":2340,"2340":2341,"2341":2342,"2342":2343,"2343":2344,"2344":2345,"2345":2346,"2346":2347,"2347":2348,"2348":2349,"2349":2350,"2350":2351,"2351":2352,"2352":2353,"2353":2354,"2354":2355,"2355":2356,"2356":2357,"2357":2358,"2358":2359,"2359":2360,"2360":2361,"2361":2362,"2362":2363,"2363":2364,"2364":2365,"2365":2366,"2366":2367,"2367":2368,"2368":2369,"2369":2370,"2370":2371,"2371":2372,"2372":2373,"2373":2374,"2374":2375,"2375":2376,"2376":2377,"2377":2378,"2378":2379,"2379":2380,"2380":2381,"2381":2382,"2382":2383,"2383":2384,"2384":2385,"2385":2386,"2386":2387,"2387":2388,"2388":2389,"2389":2390,"2390":2391,"2391":2392,"2392":2393,"2393":2394,"2394":2395,"2395":2396,"2396":2397,"2397":2398,"2398":2399,"2399":2400,"2400":2401,"2401":2402,"2402":2403,"2403":2404,"2404":2405,"2405":2406,"2406":2407,"2407":2408,"2408":2409,"2409":2410,"2410":2411,"2411":2412,"2412":2413,"2413":2414,"2414":2415,"2415":2416,"2416":2417,"2417":2418,"2418":2419,"2419":2420,"2420":2421,"2421":2422,"2422":2423,"2423":2424,"2424":2425,"2425":2426,"2426":2427,"2427":2428,"2428":2429,"2429":2430,"2430":2431,"2431":2432,"2432":2433,"2433":2434,"2434":2435,"2435":2436,"2436":2437,"2437":2438,"2438":2439,"2439":2440,"2440":2441,"2441":2442,"2442":2443,"2443":2444,"2444":2445,"2445":2446,"2446":2447,"2447":2448,"2448":2449,"2449":2450,"2450":2451,"2451":2452,"2452":2453,"2453":2454,"2454":2455,"2455":2456,"2456":2457,"2457":2458,"2458":2459,"2459":2460,"2460":2461,"2461":2462,"2462":2463,"2463":2464,"2464":2465,"2465":2466,"2466":2467,"2467":2468,"2468":2469,"2469":2470,"2470":2471,"2471":2472,"2472":2473,"2473":2474,"2474":2475,"2475":2476,"2476":2477,"2477":2478,"2478":2479,"2479":2480,"2480":2481,"2481":2482,"2482":2483,"2483":2484,"2484":2485,"2485":2486,"2486":2487,"2487":2488,"2488":2489,"2489":2490,"2490":2491,"2491":2492,"2492":2493,"2493":2494,"2494":2495,"2495":2496,"2496":2497,"2497":2498,"2498":2499,"2499":2500,"2500":2501,"2501":2502,"2502":2503,"2503":2504,"2504":2505,"2505":2506,"2506":2507,"2507":2508,"2508":2509,"2509":2510,"2510":2511,"2511":2512,"2512":2513,"2513":2514,"2514":2515,"2515":2516,"2516":2517,"2517":2518,"2518":2519,"2519":2520,"2520":2521,"2521":2522,"2522":2523,"2523":2524,"2524":2525,"2525":2526,"2526":2527,"2527":2528,"2528":2529,"2529":2530,"2530":2531,"2531":2532,"2532":2533,"2533":2534,"2534":2535,"2535":2536,"2536":2537,"2537":2538,"2538":2539,"2539":2540,"2540":2541,"2541":2542,"2542":2543,"2543":2544,"2544":2545,"2545":2546,"2546":2547,"2547":2548,"2548":2549,"2549":2550,"2550":2551,"2551":2552,"2552":2553,"2553":2554,"2554":2555,"2555":2556,"2556":2557,"2557":2558,"2558":2559,"2559":2560,"2560":2561,"2561":2562,"2562":2563,"2563":2564,"2564":2565,"2565":2566,"2566":2567,"2567":2568,"2568":2569,"2569":2570,"2570":2571,"2571":2572,"2572":2573,"2573":2574,"2574":2575,"2575":2576,"2576":2577,"2577":2578,"2578":2579,"2579":2580,"2580":2581,"2581":2582,"2582":2583,"2583":2584,"2584":2585,"2585":2586,"2586":2587,"2587":2588,"2588":2589,"2589":2590,"2590":2591,"2591":2592,"2592":2593,"2593":2594,"2594":2595,"2595":2596,"2596":2597,"2597":2598,"2598":2599,"2599":2600,"2600":2601,"2601":2602,"2602":2603,"2603":2604,"2604":2605,"2605":2606,"2606":2607,"2607":2608,"2608":2609,"2609":2610,"2610":2611,"2611":2612,"2612":2613,"2613":2614,"2614":2615,"2615":2616,"2616":2617,"2617":2618,"2618":2619,"2619":2620,"2620":2621,"2621":2622,"2622":2623,"2623":2624,"2624":2625,"2625":2626,"2626":2627,"2627":2628,"2628":2629,"2629":2630,"2630":2631,"2631":2632,"2632":2633,"2633":2634,"2634":2635,"2635":2636,"2636":2637,"2637":2638,"2638":2639,"2639":2640,"2640":2641,"2641":2642,"2642":2643,"2643":2644,"2644":2645,"2645":2646,"2646":2647,"2647":2648,"2648":2649,"2649":2650,"2650":2651,"2651":2652,"2652":2653,"2653":2654,"2654":2655,"2655":2656,"2656":2657,"2657":2658,"2658":2659,"2659":2660,"2660":2661,"2661":2662,"2662":2663,"2663":2664,"2664":2665,"2665":2666,"2666":2667,"2667":2668,"2668":2669,"2669":2670,"2670":2671,"2671":2672,"2672":2673,"2673":2674,"2674":2675,"2675":2676,"2676":2677,"2677":2678,"2678":2679,"2679":2680,"2680":2681,"2681":2682,"2682":2683,"2683":2684,"2684":2685,"2685":2686,"2686":2687,"2687":2688,"2688":2689,"2689":2690,"2690":2691,"2691":2692,"2692":2693,"2693":2694,"2694":2695,"2695":2696,"2696":2697,"2697":2698,"2698":2699,"2699":2700,"2700":2701,"2701":2702,"2702":2703,"2703":2704,"2704":2705,"2705":2706,"2706":2707,"2707":2708,"2708":2709,"2709":2710,"2710":2711,"2711":2712,"2712":2713,"2713":2714,"2714":2715,"2715":2716,"2716":2717,"2717":2718,"2718":2719,"2719":2720,"2720":2721,"2721":2722,"2722":2723,"2723":2724,"2724":2725,"2725":2726,"2726":2727,"2727":2728,"2728":2729,"2729":2730,"2730":2731,"2731":2732,"2732":2733,"2733":2734,"2734":2735,"2735":2736,"2736":2737,"2737":2738,"2738":2739,"2739":2740,"2740":2741,"2741":2742,"2742":2743,"2743":2744,"2744":2745,"2745":2746,"2746":2747,"2747":2748,"2748":2749,"2749":2750,"2750":2751,"2751":2752,"2752":2753,"2753":2754,"2754":2755,"2755":2756,"2756":2757,"2757":2758,"2758":2759,"2759":2760,"2760":2761,"2761":2762,"2762":2763,"2763":2764,"2764":2765,"2765":2766,"2766":2767,"2767":2768,"2768":2769,"2769":2770,"2770":2771,"2771":2772,"2772":2773,"2773":2774,"2774":2775,"2775":2776,"2776":2777,"2777":2778,"2778":2779,"2779":2780,"2780":2781,"2781":2782,"2782":2783,"2783":2784,"2784":2785,"2785":2786,"2786":2787,"2787":2788,"2788":2789,"2789":2790,"2790":2791,"2791":2792,"2792":2793,"2793":2794,"2794":2795,"2795":2796,"2796":2797,"2797":2798,"2798":2799,"2799":2800,"2800":2801,"2801":2802,"2802":2803,"2803":2804,"2804":2805,"2805":2806,"2806":2807,"2807":2808,"2808":2809,"2809":2810,"2810":2811,"2811":2812,"2812":2813,"2813":2814,"2814":2815,"2815":2816,"2816":2817,"2817":2818,"2818":2819,"2819":2820,"2820":2821,"2821":2822,"2822":2823,"2823":2824,"2824":2825,"2825":2826,"2826":2827,"2827":2828,"2828":2829,"2829":2830,"2830":2831,"2831":2832,"2832":2833,"2833":2834,"2834":2835,"2835":2836,"2836":2837,"2837":2838,"2838":2839,"2839":2840,"2840":2841,"2841":2842,"2842":2843,"2843":2844,"2844":2845,"2845":2846,"2846":2847,"2847":2848,"2848":2849,"2849":2850,"2850":2851,"2851":2852,"2852":2853,"2853":2854,"2854":2855,"2855":2856,"2856":2857,"2857":2858,"2858":2859,"2859":2860,"2860":2861,"2861":2862,"2862":2863,"2863":2864,"2864":2865,"2865":2866,"2866":2867,"2867":2868,"2868":2869,"2869":2870,"2870":2871,"2871":2872,"2872":2873,"2873":2874,"2874":2875,"2875":2876,"2876":2877,"2877":2878,"2878":2879,"2879":2880,"2880":2881,"2881":2882,"2882":2883,"2883":2884,"2884":2885,"2885":2886,"2886":2887,"2887":2888,"2888":2889,"2889":2890,"2890":2891,"2891":2892,"2892":2893,"2893":2894,"2894":2895,"2895":2896,"2896":2897,"2897":2898,"2898":2899,"2899":2900,"2900":2901,"2901":2902,"2902":2903,"2903":2904,"2904":2905,"2905":2906,"2906":2907,"2907":2908,"2908":2909,"2909":2910,"2910":2911,"2911":2912,"2912":2913,"2913":2914,"2914":2915,"2915":2916,"2916":2917,"2917":2918,"2918":2919,"2919":2920,"2920":2921,"2921":2922,"2922":2923,"2923":2924,"2924":2925,"2925":2926,"2926":2927,"2927":2928,"2928":2929,"2929":2930,"2930":2931,"2931":2932,"2932":2933,"2933":2934,"2934":2935,"2935":2936,"2936":2937,"2937":2938,"2938":2939,"2939":2940,"2940":2941,"2941":2942,"2942":2943,"2943":2944,"2944":2945,"2945":2946,"2946":2947,"2947":2948,"2948":2949,"2949":2950,"2950":2951,"2951":2952,"2952":2953,"2953":2954,"2954":2955,"2955":2956,"2956":2957,"2957":2958,"2958":2959,"2959":2960,"2960":2961,"2961":2962,"2962":2963,"2963":2964,"2964":2965,"2965":2966,"2966":2967,"2967":2968,"2968":2969,"2969":2970,"2970":2971,"2971":2972,"2972":2973,"2973":2974,"2974":2975,"2975":2976,"2976":2977,"2977":2978,"2978":2979,"2979":2980,"2980":2981,"2981":2982,"2982":2983,"2983":2984,"2984":2985,"2985":2986,"2986":2987,"2987":2988,"2988":2989,"2989":2990,"2990":2991,"2991":2992,"2992":2993,"2993":2994,"2994":2995,"2995":2996,"2996":2997,"2997":2998,"2998":2999,"2999":3000,"3000":3001,"3001":3002,"3002":3003,"3003":3004,"3004":3005,"3005":3006,"3006":3007,"3007":3008,"3008":3009,"3009":3010,"3010":3011,"3011":3012,"3012":3013,"3013":3014,"3014":3015,"3015":3016,"3016":3017,"3017":3018,"3018":3019,"3019":3020,"3020":3021,"3021":3022,"3022":3023,"3023":3024,"3024":3025,"3025":3026,"3026":3027,"3027":3028,"3028":3029,"3029":3030,"3030":3031,"3031":3032,"3032":3033,"3033":3034,"3034":3035,"3035":3036,"3036":3037,"3037":3038,"3038":3039,"3039":3040,"3040":3041,"3041":3042,"3042":3043,"3043":3044,"3044":3045,"3045":3046,"3046":3047,"3047":3048,"3048":3049,"3049":3050,"3050":3051,"3051":3052,"3052":3053,"3053":3054,"3054":3055,"3055":3056,"3056":3057,"3057":3058,"3058":3059,"3059":3060,"3060":3061,"3061":3062,"3062":3063,"3063":3064,"3064":3065,"3065":3066,"3066":3067,"3067":3068,"3068":3069,"3069":3070,"3070":3071,"3071":3072,"3072":3073,"3073":3074,"3074":3075,"3075":3076,"3076":3077,"3077":3078,"3078":3079,"3079":3080,"3080":3081,"3081":3082,"3082":3083,"3083":3084,"3084":3085,"3085":3086,"3086":3087,"3087":3088,"3088":3089,"3089":3090,"3090":3091,"3091":3092,"3092":3093,"3093":3094,"3094":3095,"3095":3096,"3096":3097,"3097":3098,"3098":3099,"3099":3100,"3100":3101,"3101":3102,"3102":3103,"3103":3104,"3104":3105,"3105":3106,"3106":3107,"3107":3108,"3108":3109,"3109":3110,"3110":3111,"3111":3112,"3112":3113,"3113":3114,"3114":3115,"3115":3116,"3116":3117,"3117":3118,"3118":3119,"3119":3120,"3120":3121,"3121":3122,"3122":3123,"3123":3124,"3124":3125,"3125":3126,"3126":3127,"3127":3128,"3128":3129,"3129":3130,"3130":3131,"3131":3132,"3132":3133,"3133":3134,"3134":3135,"3135":3136,"3136":3137,"3137":3138,"3138":3139,"3139":3140,"3140":3141,"3141":3142,"3142":3143,"3143":3144,"3144":3145,"3145":3146,"3146":3147,"3147":3148,"3148":3149,"3149":3150,"3150":3151,"3151":3152,"3152":3153,"3153":3154,"3154":3155,"3155":3156,"3156":3157,"3157":3158,"3158":3159,"3159":3160,"3160":3161,"3161":3162,"3162":3163,"3163":3164,"3164":3165,"3165":3166,"3166":3167,"3167":3168,"3168":3169,"3169":3170,"3170":3171,"3171":3172,"3172":3173,"3173":3174,"3174":3175,"3175":3176,"3176":3177,"3177":3178,"3178":3179,"3179":3180,"3180":3181,"3181":3182,"3182":3183,"3183":3184,"3184":3185,"3185":3186,"3186":3187,"3187":3188,"3188":3189,"3189":3190,"3190":3191,"3191":3192,"3192":3193,"3193":3194,"3194":3195,"3195":3196,"3196":3197,"3197":3198,"3198":3199,"3199":3200,"3200":3201,"3201":3202,"3202":3203,"3203":3204,"3204":3205,"3205":3206,"3206":3207,"3207":3208,"3208":3209,"3209":3210,"3210":3211,"3211":3212,"3212":3213,"3213":3214,"3214":3215,"3215":3216,"3216":3217,"3217":3218,"3218":3219,"3219":3220,"3220":3221,"3221":3222,"3222":3223,"3223":3224,"3224":3225,"3225":3226,"3226":3227,"3227":3228,"3228":3229,"3229":3230,"3230":3231,"3231":3232,"3232":3233,"3233":3234,"3234":3235,"3235":3236,"3236":3237,"3237":3238,"3238":3239,"3239":3240,"3240":3241,"3241":3242,"3242":3243,"3243":3244,"3244":3245,"3245":3246,"3246":3247,"3247":3248,"3248":3249,"3249":3250,"3250":3251,"3251":3252,"3252":3253,"3253":3254,"3254":3255,"3255":3256,"3256":3257,"3257":3258,"3258":3259,"3259":3260,"3260":3261,"3261":3262,"3262":3263,"3263":3264,"3264":3265,"3265":3266,"3266":3267,"3267":3268,"3268":3269,"3269":3270,"3270":3271,"3271":3272,"3272":3273,"3273":3274,"3274":3275,"3275":3276,"3276":3277,"3277":3278,"3278":3279,"3279":3280,"3280":3281,"3281":3282,"3282":3283,"3283":3284,"3284":3285,"3285":3286,"3286":3287,"3287":3288,"3288":3289,"3289":3290,"3290":3291,"3291":3292,"3292":3293,"3293":3294,"3294":3295,"3295":3296,"3296":3297,"3297":3298,"3298":3299,"3299":3300,"3300":3301,"3301":3302,"3302":3303,"3303":3304,"3304":3305,"3305":3306,"3306":3307,"3307":3308,"3308":3309,"3309":3310,"3310":3311,"3311":3312,"3312":3313,"3313":3314,"3314":3315,"3315":3316,"3316":3317,"3317":3318,"3318":3319,"3319":3320,"3320":3321,"3321":3322,"3322":3323,"3323":3324,"3324":3325,"3325":3326,"3326":3327,"3327":3328,"3328":3329,"3329":3330,"3330":3331,"3331":3332,"3332":3333,"3333":3334,"3334":3335,"3335":3336,"3336":3337,"3337":3338,"3338":3339,"3339":3340,"3340":3341,"3341":3342,"3342":3343,"3343":3344,"3344":3345,"3345":3346,"3346":3347,"3347":3348,"3348":3349,"3349":3350,"3350":3351,"3351":3352,"3352":3353,"3353":3354,"3354":3355,"3355":3356,"3356":3357,"3357":3358,"3358":3359,"3359":3360,"3360":3361,"3361":3362,"3362":3363,"3363":3364,"3364":3365,"3365":3366,"3366":3367,"3367":3368,"3368":3369,"3369":3370,"3370":3371,"3371":3372,"3372":3373,"3373":3374,"3374":3375,"3375":3376,"3376":3377,"3377":3378,"3378":3379,"3379":3380,"3380":3381,"3381":3382,"3382":3383,"3383":3384,"3384":3385,"3385":3386,"3386":3387,"3387":3388,"3388":3389,"3389":3390,"3390":3391,"3391":3392,"3392":3393,"3393":3394,"3394":3395,"3395":3396,"3396":3397,"3397":3398,"3398":3399,"3399":3400,"3400":3401,"3401":3402,"3402":3403,"3403":3404,"3404":3405,"3405":3406,"3406":3407,"3407":3408,"3408":3409,"3409":3410,"3410":3411,"3411":3412,"3412":3413,"3413":3414,"3414":3415,"3415":3416,"3416":3417,"3417":3418,"3418":3419,"3419":3420,"3420":3421,"3421":3422,"3422":3423,"3423":3424,"3424":3425,"3425":3426,"3426":3427,"3427":3428,"3428":3429,"3429":3430,"3430":3431,"3431":3432,"3432":3433,"3433":3434,"3434":3435,"3435":3436,"3436":3437,"3437":3438,"3438":3439,"3439":3440,"3440":3441,"3441":3442,"3442":3443,"3443":3444,"3444":3445,"3445":3446,"3446":3447,"3447":3448,"3448":3449,"3449":3450,"3450":3451,"3451":3452,"3452":3453,"3453":3454,"3454":3455,"3455":3456,"3456":3457,"3457":3458,"3458":3459,"3459":3460,"3460":3461,"3461":3462,"3462":3463,"3463":3464,"3464":3465,"3465":3466,"3466":3467,"3467":3468,"3468":3469,"3469":3470,"3470":3471,"3471":3472,"3472":3473,"3473":3474,"3474":3475,"3475":3476,"3476":3477,"3477":3478,"3478":3479,"3479":3480,"3480":3481,"3481":3482,"3482":3483,"3483":3484,"3484":3485,"3485":3486,"3486":3487,"3487":3488,"3488":3489,"3489":3490,"3490":3491,"3491":3492,"3492":3493,"3493":3494,"3494":3495,"3495":3496,"3496":3497,"3497":3498,"3498":3499,"3499":3500,"3500":3501,"3501":3502,"3502":3503,"3503":3504,"3504":3505,"3505":3506,"3506":3507,"3507":3508,"3508":3509,"3509":3510,"3510":3511,"3511":3512,"3512":3513,"3513":3514,"3514":3515,"3515":3516,"3516":3517,"3517":3518,"3518":3519,"3519":3520,"3520":3521,"3521":3522,"3522":3523,"3523":3524,"3524":3525,"3525":3526,"3526":3527,"3527":3528,"3528":3529,"3529":3530,"3530":3531,"3531":3532,"3532":3533,"3533":3534,"3534":3535,"3535":3536,"3536":3537,"3537":3538,"3538":3539,"3539":3540,"3540":3541,"3541":3542,"3542":3543,"3543":3544,"3544":3545,"3545":3546,"3546":3547,"3547":3548,"3548":3549,"3549":3550,"3550":3551,"3551":3552,"3552":3553,"3553":3554,"3554":3555,"3555":3556,"3556":3557,"3557":3558,"3558":3559,"3559":3560,"3560":3561,"3561":3562,"3562":3563,"3563":3564,"3564":3565,"3565":3566,"3566":3567,"3567":3568,"3568":3569,"3569":3570,"3570":3571,"3571":3572,"3572":3573,"3573":3574,"3574":3575,"3575":3576,"3576":3577,"3577":3578,"3578":3579,"3579":3580,"3580":3581,"3581":3582,"3582":3583,"3583":3584,"3584":3585,"3585":3586,"3586":3587,"3587":3588,"3588":3589,"3589":3590,"3590":3591,"3591":3592,"3592":3593,"3593":3594,"3594":3595,"3595":3596,"3596":3597,"3597":3598,"3598":3599,"3599":3600,"3600":3601,"3601":3602,"3602":3603,"3603":3604,"3604":3605,"3605":3606,"3606":3607,"3607":3608,"3608":3609,"3609":3610,"3610":3611,"3611":3612,"3612":3613,"3613":3614,"3614":3615,"3615":3616,"3616":3617,"3617":3618,"3618":3619,"3619":3620,"3620":3621,"3621":3622,"3622":3623,"3623":3624,"3624":3625,"3625":3626,"3626":3627,"3627":3628,"3628":3629,"3629":3630,"3630":3631,"3631":3632,"3632":3633,"3633":3634,"3634":3635,"3635":3636,"3636":3637,"3637":3638,"3638":3639,"3639":3640,"3640":3641,"3641":3642,"3642":3643,"3643":3644,"3644":3645,"3645":3646,"3646":3647,"3647":3648,"3648":3649,"3649":3650,"3650":3651,"3651":3652,"3652":3653,"3653":3654,"3654":3655,"3655":3656,"3656":3657,"3657":3658,"3658":3659,"3659":3660,"3660":3661,"3661":3662,"3662":3663,"3663":3664,"3664":3665,"3665":3666,"3666":3667,"3667":3668,"3668":3669,"3669":3670,"3670":3671,"3671":3672,"3672":3673,"3673":3674,"3674":3675,"3675":3676,"3676":3677,"3677":3678,"3678":3679,"3679":3680,"3680":3681,"3681":3682,"3682":3683,"3683":3684,"3684":3685,"3685":3686,"3686":3687,"3687":3688,"3688":3689,"3689":3690,"3690":3691,"3691":3692,"3692":3693,"3693":3694,"3694":3695,"3695":3696,"3696":3697,"3697":3698,"3698":3699,"3699":3700,"3700":3701,"3701":3702,"3702":3703,"3703":3704,"3704":3705,"3705":3706,"3706":3707,"3707":3708,"3708":3709,"3709":3710,"3710":3711,"3711":3712,"3712":3713,"3713":3714,"3714":3715,"3715":3716,"3716":3717,"3717":3718,"3718":3719,"3719":3720,"3720":3721,"3721":3722,"3722":3723,"3723":3724,"3724":3725,"3725":3726,"3726":3727,"3727":3728,"3728":3729,"3729":3730,"3730":3731,"3731":3732,"3732":3733,"3733":3734,"3734":3735,"3735":3736,"3736":3737,"3737":3738,"3738":3739,"3739":3740,"3740":3741,"3741":3742,"3742":3743,"3743":3744,"3744":3745,"3745":3746,"3746":3747,"3747":3748,"3748":3749,"3749":3750,"3750":3751,"3751":3752,"3752":3753,"3753":3754,"3754":3755,"3755":3756,"3756":3757,"3757":3758,"3758":3759,"3759":3760,"3760":3761,"3761":3762,"3762":3763,"3763":3764,"3764":3765,"3765":3766,"3766":3767,"3767":3768,"3768":3769,"3769":3770,"3770":3771,"3771":3772,"3772":3773,"3773":3774,"3774":3775,"3775":3776,"3776":3777,"3777":3778,"3778":3779,"3779":3780,"3780":3781,"3781":3782,"3782":3783,"3783":3784,"3784":3785,"3785":3786,"3786":3787,"3787":3788,"3788":3789,"3789":3790,"3790":3791,"3791":3792,"3792":3793,"3793":3794,"3794":3795,"3795":3796,"3796":3797,"3797":3798,"3798":3799,"3799":3800,"3800":3801,"3801":3802,"3802":3803,"3803":3804,"3804":3805,"3805":3806,"3806":3807,"3807":3808,"3808":3809,"3809":3810,"3810":3811,"3811":3812,"3812":3813,"3813":3814,"3814":3815,"3815":3816,"3816":3817,"3817":3818,"3818":3819,"3819":3820,"3820":3821,"3821":3822,"3822":3823,"3823":3824,"3824":3825,"3825":3826,"3826":3827,"3827":3828,"3828":3829,"3829":3830,"3830":3831,"3831":3832,"3832":3833,"3833":3834,"3834":3835,"3835":3836,"3836":3837,"3837":3838,"3838":3839,"3839":3840,"3840":3841,"3841":3842,"3842":3843,"3843":3844,"3844":3845,"3845":3846,"3846":3847,"3847":3848,"3848":3849,"3849":3850,"3850":3851,"3851":3852,"3852":3853,"3853":3854,"3854":3855,"3855":3856,"3856":3857,"3857":3858,"3858":3859,"3859":3860,"3860":3861,"3861":3862,"3862":3863,"3863":3864,"3864":3865,"3865":3866,"3866":3867,"3867":3868,"3868":3869,"3869":3870,"3870":3871,"3871":3872,"3872":3873,"3873":3874,"3874":3875,"3875":3876,"3876":3877,"3877":3878,"3878":3879,"3879":3880,"3880":3881,"3881":3882,"3882":3883,"3883":3884,"3884":3885,"3885":3886,"3886":3887,"3887":3888,"3888":3889,"3889":3890,"3890":3891,"3891":3892,"3892":3893,"3893":3894,"3894":3895,"3895":3896,"3896":3897,"3897":3898,"3898":3899,"3899":3900,"3900":3901,"3901":3902,"3902":3903,"3903":3904,"3904":3905,"3905":3906,"3906":3907,"3907":3908,"3908":3909,"3909":3910,"3910":3911,"3911":3912,"3912":3913,"3913":3914,"3914":3915,"3915":3916,"3916":3917,"3917":3918,"3918":3919,"3919":3920,"3920":3921,"3921":3922,"3922":3923,"3923":3924,"3924":3925,"3925":3926,"3926":3927,"3927":3928,"3928":3929,"3929":3930,"3930":3931,"3931":3932,"3932":3933,"3933":3934,"3934":3935,"3935":3936,"3936":3937,"3937":3938,"3938":3939,"3939":3940,"3940":3941,"3941":3942,"3942":3943,"3943":3944,"3944":3945,"3945":3946,"3946":3947,"3947":3948,"3948":3949,"3949":3950,"3950":3951,"3951":3952,"3952":3953,"3953":3954,"3954":3955,"3955":3956,"3956":3957,"3957":3958,"3958":3959,"3959":3960,"3960":3961,"3961":3962,"3962":3963,"3963":3964,"3964":3965,"3965":3966,"3966":3967,"3967":3968,"3968":3969,"3969":3970,"3970":3971,"3971":3972,"3972":3973,"3973":3974,"3974":3975,"3975":3976,"3976":3977,"3977":3978,"3978":3979,"3979":3980,"3980":3981,"3981":3982,"3982":3983,"3983":3984,"3984":3985,"3985":3986,"3986":3987,"3987":3988,"3988":3989,"3989":3990,"3990":3991,"3991":3992,"3992":3993,"3993":3994,"3994":3995,"3995":3996,"3996":3997,"3997":3998,"3998":3999,"3999":4000,"4000":4001,"4001":4002,"4002":4003,"4003":4004,"4004":4005,"4005":4006,"4006":4007,"4007":4008,"4008":4009,"4009":4010,"4010":4011,"4011":4012,"4012":4013,"4013":4014,"4014":4015,"4015":4016,"4016":4017,"4017":4018,"4018":4019,"4019":4020,"4020":4021,"4021":4022,"4022":4023,"4023":4024,"4024":4025,"4025":4026,"4026":4027,"4027":4028,"4028":4029,"4029":4030,"4030":4031,"4031":4032,"4032":4033,"4033":4034,"4034":4035,"4035":4036,"4036":4037,"4037":4038,"4038":4039,"4039":4040,"4040":4041,"4041":4042,"4042":4043,"4043":4044,"4044":4045,"4045":4046,"4046":4047,"4047":4048,"4048":4049,"4049":4050,"4050":4051,"4051":4052,"4052":4053,"4053":4054,"4054":4055,"4055":4056,"4056":4057,"4057":4058,"4058":4059,"4059":4060,"4060":4061,"4061":4062,"4062":4063,"4063":4064,"4064":4065,"4065":4066,"4066":4067,"4067":4068,"4068":4069,"4069":4070,"4070":4071,"4071":4072,"4072":4073,"4073":4074,"4074":4075,"4075":4076,"4076":4077,"4077":4078,"4078":4079,"4079":4080,"4080":4081,"4081":4082,"4082":4083,"4083":4084,"4084":4085,"4085":4086,"4086":4087,"4087":4088,"4088":4089,"4089":4090,"4090":4091,"4091":4092,"4092":4093,"4093":4094,"4094":4095,"4095":4096,"4096":4097,"4097":4098,"4098":4099,"4099":4100,"4100":4101,"4101":4102,"4102":4103,"4103":4104,"4104":4105,"4105":4106,"4106":4107,"4107":4108,"4108":4109,"4109":4110,"4110":4111,"4111":4112,"4112":4113,"4113":4114,"4114":4115,"4115":4116,"4116":4117,"4117":4118,"4118":4119,"4119":4120,"4120":4121,"4121":4122,"4122":4123,"4123":4124,"4124":4125,"4125":4126,"4126":4127,"4127":4128,"4128":4129,"4129":4130,"4130":4131,"4131":4132,"4132":4133,"4133":4134,"4134":4135,"4135":4136,"4136":4137,"4137":4138,"4138":4139,"4139":4140,"4140":4141,"4141":4142,"4142":4143,"4143":4144,"4144":4145,"4145":4146,"4146":4147,"4147":4148,"4148":4149,"4149":4150,"4150":4151,"4151":4152,"4152":4153,"4153":4154,"4154":4155,"4155":4156,"4156":4157,"4157":4158,"4158":4159,"4159":4160,"4160":4161,"4161":4162,"4162":4163,"4163":4164,"4164":4165,"4165":4166,"4166":4167,"4167":4168,"4168":4169,"4169":4170,"4170":4171,"4171":4172,"4172":4173,"4173":4174,"4174":4175,"4175":4176,"4176":4177,"4177":4178,"4178":4179,"4179":4180,"4180":4181,"4181":4182,"4182":4183,"4183":4184,"4184":4185,"4185":4186,"4186":4187,"4187":4188,"4188":4189,"4189":4190,"4190":4191,"4191":4192,"4192":4193,"4193":4194,"4194":4195,"4195":4196,"4196":4197,"4197":4198,"4198":4199,"4199":4200,"4200":4201,"4201":4202,"4202":4203,"4203":4204,"4204":4205,"4205":4206,"4206":4207,"4207":4208,"4208":4209,"4209":4210,"4210":4211,"4211":4212,"4212":4213,"4213":4214,"4214":4215,"4215":4216,"4216":4217,"4217":4218,"4218":4219,"4219":4220,"4220":4221,"4221":4222,"4222":4223,"4223":4224,"4224":4225,"4225":4226,"4226":4227,"4227":4228,"4228":4229,"4229":4230,"4230":4231,"4231":4232,"4232":4233,"4233":4234,"4234":4235,"4235":4236,"4236":4237,"4237":4238,"4238":4239,"4239":4240,"4240":4241,"4241":4242,"4242":4243,"4243":4244,"4244":4245,"4245":4246,"4246":4247,"4247":4248,"4248":4249,"4249":4250,"4250":4251,"4251":4252,"4252":4253,"4253":4254,"4254":4255,"4255":4256,"4256":4257,"4257":4258,"4258":4259,"4259":4260,"4260":4261,"4261":4262,"4262":4263,"4263":4264,"4264":4265,"4265":4266,"4266":4267,"4267":4268,"4268":4269,"4269":4270,"4270":4271,"4271":4272,"4272":4273,"4273":4274,"4274":4275,"4275":4276,"4276":4277,"4277":4278,"4278":4279,"4279":4280,"4280":4281,"4281":4282,"4282":4283,"4283":4284,"4284":4285,"4285":4286,"4286":4287,"4287":4288,"4288":4289,"4289":4290,"4290":4291,"4291":4292,"4292":4293,"4293":4294,"4294":4295,"4295":4296,"4296":4297,"4297":4298,"4298":4299,"4299":4300,"4300":4301,"4301":4302,"4302":4303,"4303":4304,"4304":4305,"4305":4306,"4306":4307,"4307":4308,"4308":4309,"4309":4310,"4310":4311,"4311":4312,"4312":4313,"4313":4314,"4314":4315,"4315":4316,"4316":4317,"4317":4318,"4318":4319,"4319":4320,"4320":4321,"4321":4322,"4322":4323,"4323":4324,"4324":4325,"4325":4326,"4326":4327,"4327":4328,"4328":4329,"4329":4330,"4330":4331,"4331":4332,"4332":4333,"4333":4334,"4334":4335,"4335":4336,"4336":4337,"4337":4338,"4338":4339,"4339":4340,"4340":4341,"4341":4342,"4342":4343,"4343":4344,"4344":4345,"4345":4346,"4346":4347,"4347":4348,"4348":4349,"4349":4350,"4350":4351,"4351":4352,"4352":4353,"4353":4354,"4354":4355,"4355":4356,"4356":4357,"4357":4358,"4358":4359,"4359":4360,"4360":4361,"4361":4362,"4362":4363,"4363":4364,"4364":4365,"4365":4366,"4366":4367,"4367":4368,"4368":4369,"4369":4370,"4370":4371,"4371":4372,"4372":4373,"4373":4374,"4374":4375,"4375":4376,"4376":4377,"4377":4378,"4378":4379,"4379":4380,"4380":4381,"4381":4382,"4382":4383,"4383":4384,"4384":4385,"4385":4386,"4386":4387,"4387":4388,"4388":4389,"4389":4390,"4390":4391,"4391":4392,"4392":4393,"4393":4394,"4394":4395,"4395":4396,"4396":4397,"4397":4398,"4398":4399,"4399":4400,"4400":4401,"4401":4402,"4402":4403,"4403":4404,"4404":4405,"4405":4406,"4406":4407,"4407":4408,"4408":4409,"4409":4410,"4410":4411,"4411":4412,"4412":4413,"4413":4414,"4414":4415,"4415":4416,"4416":4417,"4417":4418,"4418":4419,"4419":4420,"4420":4421,"4421":4422,"4422":4423,"4423":4424,"4424":4425,"4425":4426,"4426":4427,"4427":4428,"4428":4429,"4429":4430,"4430":4431,"4431":4432,"4432":4433,"4433":4434,"4434":4435,"4435":4436,"4436":4437,"4437":4438,"4438":4439,"4439":4440,"4440":4441,"4441":4442,"4442":4443,"4443":4444,"4444":4445,"4445":4446,"4446":4447,"4447":4448,"4448":4449,"4449":4450,"4450":4451,"4451":4452,"4452":4453,"4453":4454,"4454":4455,"4455":4456,"4456":4457,"4457":4458,"4458":4459,"4459":4460,"4460":4461,"4461":4462,"4462":4463,"4463":4464,"4464":4465,"4465":4466,"4466":4467,"4467":4468,"4468":4469,"4469":4470,"4470":4471,"4471":4472,"4472":4473,"4473":4474,"4474":4475,"4475":4476,"4476":4477,"4477":4478,"4478":4479,"4479":4480,"4480":4481,"4481":4482,"4482":4483,"4483":4484,"4484":4485,"4485":4486,"4486":4487,"4487":4488,"4488":4489,"4489":4490,"4490":4491,"4491":4492,"4492":4493,"4493":4494,"4494":4495,"4495":4496,"4496":4497,"4497":4498,"4498":4499,"4499":4500,"4500":4501,"4501":4502,"4502":4503,"4503":4504,"4504":4505,"4505":4506,"4506":4507,"4507":4508,"4508":4509,"4509":4510,"4510":4511,"4511":4512,"4512":4513,"4513":4514,"4514":4515,"4515":4516,"4516":4517,"4517":4518,"4518":4519,"4519":4520,"4520":4521,"4521":4522,"4522":4523,"4523":4524,"4524":4525,"4525":4526,"4526":4527,"4527":4528,"4528":4529,"4529":4530,"4530":4531,"4531":4532,"4532":4533,"4533":4534,"4534":4535,"4535":4536,"4536":4537,"4537":4538,"4538":4539,"4539":4540,"4540":4541,"4541":4542,"4542":4543,"4543":4544,"4544":4545,"4545":4546,"4546":4547,"4547":4548,"4548":4549,"4549":4550,"4550":4551,"4551":4552,"4552":4553,"4553":4554,"4554":4555,"4555":4556,"4556":4557,"4557":4558,"4558":4559,"4559":4560,"4560":4561,"4561":4562,"4562":4563,"4563":4564,"4564":4565,"4565":4566,"4566":4567,"4567":4568,"4568":4569,"4569":4570,"4570":4571,"4571":4572,"4572":4573,"4573":4574,"4574":4575,"4575":4576,"4576":4577,"4577":4578,"4578":4579,"4579":4580,"4580":4581,"4581":4582,"4582":4583,"4583":4584,"4584":4585,"4585":4586,"4586":4587,"4587":4588,"4588":4589,"4589":4590,"4590":4591,"4591":4592,"4592":4593,"4593":4594,"4594":4595,"4595":4596,"4596":4597,"4597":4598,"4598":4599,"4599":4600,"4600":4601,"4601":4602,"4602":4603,"4603":4604,"4604":4605,"4605":4606,"4606":4607,"4607":4608,"4608":4609,"4609":4610,"4610":4611,"4611":4612,"4612":4613,"4613":4614,"4614":4615,"4615":4616,"4616":4617,"4617":4618,"4618":4619,"4619":4620,"4620":4621,"4621":4622,"4622":4623,"4623":4624,"4624":4625,"4625":4626,"4626":4627,"4627":4628,"4628":4629,"4629":4630,"4630":4631,"4631":4632,"4632":4633,"4633":4634,"4634":4635,"4635":4636,"4636":4637,"4637":4638,"4638":4639,"4639":4640,"4640":4641,"4641":4642,"4642":4643,"4643":4644,"4644":4645,"4645":4646,"4646":4647,"4647":4648,"4648":4649,"4649":4650,"4650":4651,"4651":4652,"4652":4653,"4653":4654,"4654":4655,"4655":4656,"4656":4657,"4657":4658,"4658":4659,"4659":4660,"4660":4661,"4661":4662,"4662":4663,"4663":4664,"4664":4665,"4665":4666,"4666":4667,"4667":4668,"4668":4669,"4669":4670,"4670":4671,"4671":4672,"4672":4673,"4673":4674,"4674":4675,"4675":4676,"4676":4677,"4677":4678,"4678":4679,"4679":4680,"4680":4681,"4681":4682,"4682":4683,"4683":4684,"4684":4685,"4685":4686,"4686":4687,"4687":4688,"4688":4689,"4689":4690,"4690":4691,"4691":4692,"4692":4693,"4693":4694,"4694":4695,"4695":4696,"4696":4697,"4697":4698,"4698":4699,"4699":4700,"4700":4701,"4701":4702,"4702":4703,"4703":4704,"4704":4705,"4705":4706,"4706":4707,"4707":4708,"4708":4709,"4709":4710,"4710":4711,"4711":4712,"4712":4713,"4713":4714,"4714":4715,"4715":4716,"4716":4717,"4717":4718,"4718":4719,"4719":4720,"4720":4721,"4721":4722,"4722":4723,"4723":4724,"4724":4725,"4725":4726,"4726":4727,"4727":4728,"4728":4729,"4729":4730,"4730":4731,"4731":4732,"4732":4733,"4733":4734,"4734":4735,"4735":4736,"4736":4737,"4737":4738,"4738":4739,"4739":4740,"4740":4741,"4741":4742,"4742":4743,"4743":4744,"4744":4745,"4745":4746,"4746":4747,"4747":4748,"4748":4749,"4749":4750,"4750":4751,"4751":4752,"4752":4753,"4753":4754,"4754":4755,"4755":4756,"4756":4757,"4757":4758,"4758":4759,"4759":4760,"4760":4761,"4761":4762,"4762":4763,"4763":4764,"4764":4765,"4765":4766,"4766":4767,"4767":4768,"4768":4769,"4769":4770,"4770":4771,"4771":4772,"4772":4773,"4773":4774,"4774":4775,"4775":4776,"4776":4777,"4777":4778,"4778":4779,"4779":4780,"4780":4781,"4781":4782,"4782":4783,"4783":4784,"4784":4785,"4785":4786,"4786":4787,"4787":4788,"4788":4789,"4789":4790,"4790":4791,"4791":4792,"4792":4793,"4793":4794,"4794":4795,"4795":4796,"4796":4797,"4797":4798,"4798":4799,"4799":4800,"4800":4801,"4801":4802,"4802":4803,"4803":4804,"4804":4805,"4805":4806,"4806":4807,"4807":4808,"4808":4809,"4809":4810,"4810":4811,"4811":4812,"4812":4813,"4813":4814,"4814":4815,"4815":4816,"4816":4817,"4817":4818,"4818":4819,"4819":4820,"4820":4821,"4821":4822,"4822":4823,"4823":4824,"4824":4825,"4825":4826,"4826":4827,"4827":4828,"4828":4829,"4829":4830,"4830":4831,"4831":4832,"4832":4833,"4833":4834,"4834":4835,"4835":4836,"4836":4837,"4837":4838,"4838":4839,"4839":4840,"4840":4841,"4841":4842,"4842":4843,"4843":4844,"4844":4845,"4845":4846,"4846":4847,"4847":4848,"4848":4849,"4849":4850,"4850":4851,"4851":4852,"4852":4853,"4853":4854,"4854":4855,"4855":4856,"4856":4857,"4857":4858,"4858":4859,"4859":4860,"4860":4861,"4861":4862,"4862":4863,"4863":4864,"4864":4865,"4865":4866,"4866":4867,"4867":4868,"4868":4869,"4869":4870,"4870":4871,"4871":4872,"4872":4873,"4873":4874,"4874":4875,"4875":4876,"4876":4877,"4877":4878,"4878":4879,"4879":4880,"4880":4881,"4881":4882,"4882":4883,"4883":4884,"4884":4885,"4885":4886,"4886":4887,"4887":4888,"4888":4889,"4889":4890,"4890":4891,"4891":4892,"4892":4893,"4893":4894,"4894":4895,"4895":4896,"4896":4897,"4897":4898,"4898":4899,"4899":4900,"4900":4901,"4901":4902,"4902":4903,"4903":4904,"4904":4905,"4905":4906,"4906":4907,"4907":4908,"4908":4909,"4909":4910,"4910":4911,"4911":4912,"4912":4913,"4913":4914,"4914":4915,"4915":4916,"4916":4917,"4917":4918,"4918":4919,"4919":4920,"4920":4921,"4921":4922,"4922":4923,"4923":4924,"4924":4925,"4925":4926,"4926":4927,"4927":4928,"4928":4929,"4929":4930,"4930":4931,"4931":4932,"4932":4933,"4933":4934,"4934":4935,"4935":4936,"4936":4937,"4937":4938,"4938":4939,"4939":4940,"4940":4941,"4941":4942,"4942":4943,"4943":4944,"4944":4945,"4945":4946,"4946":4947,"4947":4948,"4948":4949,"4949":4950,"4950":4951,"4951":4952,"4952":4953,"4953":4954,"4954":4955,"4955":4956,"4956":4957,"4957":4958,"4958":4959,"4959":4960,"4960":4961,"4961":4962,"4962":4963,"4963":4964,"4964":4965,"4965":4966,"4966":4967,"4967":4968,"4968":4969,"4969":4970,"4970":4971,"4971":4972,"4972":4973,"4973":4974,"4974":4975,"4975":4976,"4976":4977,"4977":4978,"4978":4979,"4979":4980,"4980":4981,"4981":4982,"4982":4983,"4983":4984,"4984":4985,"4985":4986,"4986":4987,"4987":4988,"4988":4989,"4989":4990,"4990":4991,"4991":4992,"4992":4993,"4993":4994,"4994":4995,"4995":4996,"4996":4997,"4997":4998,"4998":4999,"4999":5000,"5000":5001,"5001":5002,"5002":5003,"5003":5004,"5004":5005,"5005":5006,"5006":5007,"5007":5008,"5008":5009,"5009":5010,"5010":5011,"5011":5012,"5012":5013,"5013":5014,"5014":5015,"5015":5016,"5016":5017,"5017":5018,"5018":5019,"5019":5020,"5020":5021,"5021":5022,"5022":5023,"5023":5024,"5024":5025,"5025":5026,"5026":5027,"5027":5028,"5028":5029,"5029":5030,"5030":5031,"5031":5032,"5032":5033,"5033":5034,"5034":5035,"5035":5036,"5036":5037,"5037":5038,"5038":5039,"5039":5040,"5040":5041,"5041":5042,"5042":5043,"5043":5044,"5044":5045,"5045":5046,"5046":5047,"5047":5048,"5048":5049,"5049":5050,"5050":5051,"5051":5052,"5052":5053,"5053":5054,"5054":5055,"5055":5056,"5056":5057,"5057":5058,"5058":5059,"5059":5060,"5060":5061,"5061":5062,"5062":5063,"5063":5064,"5064":5065,"5065":5066,"5066":5067,"5067":5068,"5068":5069,"5069":5070,"5070":5071,"5071":5072,"5072":5073,"5073":5074,"5074":5075,"5075":5076,"5076":5077,"5077":5078,"5078":5079,"5079":5080,"5080":5081,"5081":5082,"5082":5083,"5083":5084,"5084":5085,"5085":5086,"5086":5087,"5087":5088,"5088":5089,"5089":5090,"5090":5091,"5091":5092,"5092":5093,"5093":5094,"5094":5095,"5095":5096,"5096":5097,"5097":5098,"5098":5099,"5099":5100,"5100":5101,"5101":5102,"5102":5103,"5103":5104,"5104":5105,"5105":5106,"5106":5107,"5107":5108,"5108":5109,"5109":5110,"5110":5111,"5111":5112,"5112":5113,"5113":5114,"5114":5115,"5115":5116,"5116":5117,"5117":5118,"5118":5119,"5119":5120,"5120":5121,"5121":5122,"5122":5123,"5123":5124,"5124":5125,"5125":5126,"5126":5127,"5127":5128,"5128":5129,"5129":5130,"5130":5131,"5131":5132,"5132":5133,"5133":5134,"5134":5135,"5135":5136,"5136":5137,"5137":5138,"5138":5139,"5139":5140,"5140":5141,"5141":5142,"5142":5143,"5143":5144,"5144":5145,"5145":5146,"5146":5147,"5147":5148,"5148":5149,"5149":5150,"5150":5151,"5151":5152,"5152":5153,"5153":5154,"5154":5155,"5155":5156,"5156":5157,"5157":5158,"5158":5159,"5159":5160,"5160":5161,"5161":5162,"5162":5163,"5163":5164,"5164":5165,"5165":5166,"5166":5167,"5167":5168,"5168":5169,"5169":5170,"5170":5171,"5171":5172,"5172":5173,"5173":5174,"5174":5175,"5175":5176,"5176":5177,"5177":5178,"5178":5179,"5179":5180,"5180":5181,"5181":5182,"5182":5183,"5183":5184,"5184":5185,"5185":5186,"5186":5187,"5187":5188,"5188":5189,"5189":5190,"5190":5191,"5191":5192,"5192":5193,"5193":5194,"5194":5195,"5195":5196,"5196":5197,"5197":5198,"5198":5199,"5199":5200,"5200":5201,"5201":5202,"5202":5203,"5203":5204,"5204":5205,"5205":5206,"5206":5207,"5207":5208,"5208":5209,"5209":5210,"5210":5211,"5211":5212,"5212":5213,"5213":5214,"5214":5215,"5215":5216,"5216":5217,"5217":5218,"5218":5219,"5219":5220,"5220":5221,"5221":5222,"5222":5223,"5223":5224,"5224":5225,"5225":5226,"5226":5227,"5227":5228,"5228":5229,"5229":5230,"5230":5231,"5231":5232,"5232":5233,"5233":5234,"5234":5235,"5235":5236,"5236":5237,"5237":5238,"5238":5239,"5239":5240,"5240":5241,"5241":5242,"5242":5243,"5243":5244,"5244":5245,"5245":5246,"5246":5247,"5247":5248,"5248":5249,"5249":5250,"5250":5251,"5251":5252,"5252":5253,"5253":5254,"5254":5255,"5255":5256,"5256":5257,"5257":5258,"5258":5259,"5259":5260,"5260":5261,"5261":5262,"5262":5263,"5263":5264,"5264":5265,"5265":5266,"5266":5267,"5267":5268,"5268":5269,"5269":5270,"5270":5271,"5271":5272,"5272":5273,"5273":5274,"5274":5275,"5275":5276,"5276":5277,"5277":5278,"5278":5279,"5279":5280,"5280":5281,"5281":5282,"5282":5283,"5283":5284,"5284":5285,"5285":5286,"5286":5287,"5287":5288,"5288":5289,"5289":5290,"5290":5291,"5291":5292,"5292":5293,"5293":5294,"5294":5295,"5295":5296,"5296":5297,"5297":5298,"5298":5299,"5299":5300,"5300":5301,"5301":5302,"5302":5303,"5303":5304,"5304":5305,"5305":5306,"5306":5307,"5307":5308,"5308":5309,"5309":5310,"5310":5311,"5311":5312,"5312":5313,"5313":5314,"5314":5315,"5315":5316,"5316":5317,"5317":5318,"5318":5319,"5319":5320,"5320":5321,"5321":5322,"5322":5323,"5323":5324,"5324":5325,"5325":5326,"5326":5327,"5327":5328,"5328":5329,"5329":5330,"5330":5331,"5331":5332,"5332":5333,"5333":5334,"5334":5335,"5335":5336,"5336":5337,"5337":5338,"5338":5339,"5339":5340,"5340":5341,"5341":5342,"5342":5343,"5343":5344,"5344":5345,"5345":5346,"5346":5347,"5347":5348,"5348":5349,"5349":5350,"5350":5351,"5351":5352,"5352":5353,"5353":5354,"5354":5355,"5355":5356,"5356":5357,"5357":5358,"5358":5359,"5359":5360,"5360":5361,"5361":5362,"5362":5363,"5363":5364,"5364":5365,"5365":5366,"5366":5367,"5367":5368,"5368":5369,"5369":5370,"5370":5371,"5371":5372,"5372":5373,"5373":5374,"5374":5375,"5375":5376,"5376":5377,"5377":5378,"5378":5379,"5379":5380,"5380":5381,"5381":5382,"5382":5383,"5383":5384,"5384":5385,"5385":5386,"5386":5387,"5387":5388,"5388":5389,"5389":5390,"5390":5391,"5391":5392,"5392":5393,"5393":5394,"5394":5395,"5395":5396,"5396":5397,"5397":5398,"5398":5399,"5399":5400,"5400":5401,"5401":5402,"5402":5403,"5403":5404,"5404":5405,"5405":5406,"5406":5407,"5407":5408,"5408":5409,"5409":5410,"5410":5411,"5411":5412,"5412":5413,"5413":5414,"5414":5415,"5415":5416,"5416":5417,"5417":5418,"5418":5419,"5419":5420,"5420":5421,"5421":5422,"5422":5423,"5423":5424,"5424":5425,"5425":5426,"5426":5427,"5427":5428,"5428":5429,"5429":5430,"5430":5431,"5431":5432,"5432":5433,"5433":5434,"5434":5435,"5435":5436,"5436":5437,"5437":5438,"5438":5439,"5439":5440,"5440":5441,"5441":5442,"5442":5443,"5443":5444,"5444":5445,"5445":5446,"5446":5447,"5447":5448,"5448":5449,"5449":5450,"5450":5451,"5451":5452,"5452":5453,"5453":5454,"5454":5455,"5455":5456,"5456":5457,"5457":5458,"5458":5459,"5459":5460,"5460":5461,"5461":5462,"5462":5463,"5463":5464,"5464":5465,"5465":5466,"5466":5467,"5467":5468,"5468":5469,"5469":5470,"5470":5471,"5471":5472,"5472":5473,"5473":5474,"5474":5475,"5475":5476,"5476":5477,"5477":5478,"5478":5479,"5479":5480,"5480":5481,"5481":5482,"5482":5483,"5483":5484,"5484":5485,"5485":5486,"5486":5487,"5487":5488,"5488":5489,"5489":5490,"5490":5491,"5491":5492,"5492":5493,"5493":5494,"5494":5495,"5495":5496,"5496":5497,"5497":5498,"5498":5499,"5499":5500,"5500":5501,"5501":5502,"5502":5503,"5503":5504,"5504":5505,"5505":5506,"5506":5507,"5507":5508,"5508":5509,"5509":5510,"5510":5511,"5511":5512,"5512":5513,"5513":5514,"5514":5515,"5515":5516,"5516":5517,"5517":5518,"5518":5519,"5519":5520,"5520":5521,"5521":5522,"5522":5523,"5523":5524,"5524":5525,"5525":5526,"5526":5527,"5527":5528,"5528":5529,"5529":5530,"5530":5531,"5531":5532,"5532":5533,"5533":5534,"5534":5535,"5535":5536,"5536":5537,"5537":5538,"5538":5539,"5539":5540,"5540":5541,"5541":5542,"5542":5543,"5543":5544,"5544":5545,"5545":5546,"5546":5547,"5547":5548,"5548":5549,"5549":5550,"5550":5551,"5551":5552,"5552":5553,"5553":5554,"5554":5555,"5555":5556,"5556":5557,"5557":5558,"5558":5559,"5559":5560,"5560":5561,"5561":5562,"5562":5563,"5563":5564,"5564":5565,"5565":5566,"5566":5567,"5567":5568,"5568":5569,"5569":5570,"5570":5571,"5571":5572,"5572":5573,"5573":5574,"5574":5575,"5575":5576,"5576":5577,"5577":5578,"5578":5579,"5579":5580,"5580":5581,"5581":5582,"5582":5583,"5583":5584,"5584":5585,"5585":5586,"5586":5587,"5587":5588,"5588":5589,"5589":5590,"5590":5591,"5591":5592,"5592":5593,"5593":5594,"5594":5595,"5595":5596,"5596":5597,"5597":5598,"5598":5599,"5599":5600,"5600":5601,"5601":5602,"5602":5603,"5603":5604,"5604":5605,"5605":5606,"5606":5607,"5607":5608,"5608":5609,"5609":5610,"5610":5611,"5611":5612,"5612":5613,"5613":5614,"5614":5615,"5615":5616,"5616":5617,"5617":5618,"5618":5619,"5619":5620,"5620":5621,"5621":5622,"5622":5623,"5623":5624,"5624":5625,"5625":5626,"5626":5627,"5627":5628,"5628":5629,"5629":5630,"5630":5631,"5631":5632,"5632":5633,"5633":5634,"5634":5635,"5635":5636,"5636":5637,"5637":5638,"5638":5639,"5639":5640,"5640":5641,"5641":5642,"5642":5643,"5643":5644,"5644":5645,"5645":5646,"5646":5647,"5647":5648,"5648":5649,"5649":5650,"5650":5651,"5651":5652,"5652":5653,"5653":5654,"5654":5655,"5655":5656,"5656":5657,"5657":5658,"5658":5659,"5659":5660,"5660":5661,"5661":5662,"5662":5663,"5663":5664,"5664":5665,"5665":5666,"5666":5667,"5667":5668,"5668":5669,"5669":5670,"5670":5671,"5671":5672,"5672":5673,"5673":5674,"5674":5675,"5675":5676,"5676":5677,"5677":5678,"5678":5679,"5679":5680,"5680":5681,"5681":5682,"5682":5683,"5683":5684,"5684":5685,"5685":5686,"5686":5687,"5687":5688,"5688":5689,"5689":5690,"5690":5691,"5691":5692,"5692":5693,"5693":5694,"5694":5695,"5695":5696,"5696":5697,"5697":5698,"5698":5699,"5699":5700,"5700":5701,"5701":5702,"5702":5703,"5703":5704,"5704":5705,"5705":5706,"5706":5707,"5707":5708,"5708":5709,"5709":5710,"5710":5711,"5711":5712,"5712":5713,"5713":5714,"5714":5715,"5715":5716,"5716":5717,"5717":5718,"5718":5719,"5719":5720,"5720":5721,"5721":5722,"5722":5723,"5723":5724,"5724":5725,"5725":5726,"5726":5727,"5727":5728,"5728":5729,"5729":5730,"5730":5731,"5731":5732,"5732":5733,"5733":5734,"5734":5735,"5735":5736,"5736":5737,"5737":5738,"5738":5739,"5739":5740,"5740":5741,"5741":5742,"5742":5743,"5743":5744,"5744":5745,"5745":5746,"5746":5747,"5747":5748,"5748":5749,"5749":5750,"5750":5751,"5751":5752,"5752":5753,"5753":5754,"5754":5755,"5755":5756,"5756":5757,"5757":5758,"5758":5759,"5759":5760,"5760":5761,"5761":5762,"5762":5763,"5763":5764,"5764":5765,"5765":5766,"5766":5767,"5767":5768,"5768":5769,"5769":5770,"5770":5771,"5771":5772,"5772":5773,"5773":5774,"5774":5775,"5775":5776,"5776":5777,"5777":5778,"5778":5779,"5779":5780,"5780":5781,"5781":5782,"5782":5783,"5783":5784,"5784":5785,"5785":5786,"5786":5787,"5787":5788,"5788":5789,"5789":5790,"5790":5791,"5791":5792,"5792":5793,"5793":5794,"5794":5795,"5795":5796,"5796":5797,"5797":5798,"5798":5799,"5799":5800,"5800":5801,"5801":5802,"5802":5803,"5803":5804,"5804":5805,"5805":5806,"5806":5807,"5807":5808,"5808":5809,"5809":5810,"5810":5811,"5811":5812,"5812":5813,"5813":5814,"5814":5815,"5815":5816,"5816":5817,"5817":5818,"5818":5819,"5819":5820,"5820":5821,"5821":5822,"5822":5823,"5823":5824,"5824":5825,"5825":5826,"5826":5827,"5827":5828,"5828":5829,"5829":5830,"5830":5831,"5831":5832,"5832":5833,"5833":5834,"5834":5835,"5835":5836,"5836":5837,"5837":5838,"5838":5839,"5839":5840,"5840":5841,"5841":5842,"5842":5843,"5843":5844,"5844":5845,"5845":5846,"5846":5847,"5847":5848,"5848":5849,"5849":5850,"5850":5851,"5851":5852,"5852":5853,"5853":5854,"5854":5855,"5855":5856,"5856":5857,"5857":5858,"5858":5859,"5859":5860,"5860":5861,"5861":5862,"5862":5863,"5863":5864,"5864":5865,"5865":5866,"5866":5867,"5867":5868,"5868":5869,"5869":5870,"5870":5871,"5871":5872,"5872":5873,"5873":5874,"5874":5875,"5875":5876,"5876":5877,"5877":5878,"5878":5879,"5879":5880,"5880":5881,"5881":5882,"5882":5883,"5883":5884,"5884":5885,"5885":5886,"5886":5887,"5887":5888,"5888":5889,"5889":5890,"5890":5891,"5891":5892,"5892":5893,"5893":5894,"5894":5895,"5895":5896,"5896":5897,"5897":5898,"5898":5899,"5899":5900,"5900":5901,"5901":5902,"5902":5903,"5903":5904,"5904":5905,"5905":5906,"5906":5907,"5907":5908,"5908":5909,"5909":5910,"5910":5911,"5911":5912,"5912":5913,"5913":5914,"5914":5915,"5915":5916,"5916":5917,"5917":5918,"5918":5919,"5919":5920,"5920":5921,"5921":5922,"5922":5923,"5923":5924,"5924":5925,"5925":5926,"5926":5927,"5927":5928,"5928":5929,"5929":5930,"5930":5931,"5931":5932,"5932":5933,"5933":5934,"5934":5935,"5935":5936,"5936":5937,"5937":5938,"5938":5939,"5939":5940,"5940":5941,"5941":5942,"5942":5943,"5943":5944,"5944":5945,"5945":5946,"5946":5947,"5947":5948,"5948":5949,"5949":5950,"5950":5951,"5951":5952,"5952":5953,"5953":5954,"5954":5955,"5955":5956,"5956":5957,"5957":5958,"5958":5959,"5959":5960,"5960":5961,"5961":5962,"5962":5963,"5963":5964,"5964":5965,"5965":5966,"5966":5967,"5967":5968,"5968":5969,"5969":5970,"5970":5971,"5971":5972,"5972":5973,"5973":5974,"5974":5975,"5975":5976,"5976":5977,"5977":5978,"5978":5979,"5979":5980,"5980":5981,"5981":5982,"5982":5983,"5983":5984,"5984":5985,"5985":5986,"5986":5987,"5987":5988,"5988":5989,"5989":5990,"5990":5991,"5991":5992,"5992":5993,"5993":5994,"5994":5995,"5995":5996,"5996":5997,"5997":5998,"5998":5999,"5999":6000,"6000":6001,"6001":6002,"6002":6003,"6003":6004,"6004":6005,"6005":6006,"6006":6007,"6007":6008,"6008":6009,"6009":6010,"6010":6011,"6011":6012,"6012":6013,"6013":6014,"6014":6015,"6015":6016,"6016":6017,"6017":6018,"6018":6019,"6019":6020,"6020":6021,"6021":6022,"6022":6023,"6023":6024,"6024":6025,"6025":6026,"6026":6027,"6027":6028,"6028":6029,"6029":6030,"6030":6031,"6031":6032,"6032":6033,"6033":6034,"6034":6035,"6035":6036,"6036":6037,"6037":6038,"6038":6039,"6039":6040,"6040":6041,"6041":6042,"6042":6043,"6043":6044,"6044":6045,"6045":6046,"6046":6047,"6047":6048,"6048":6049,"6049":6050,"6050":6051,"6051":6052,"6052":6053,"6053":6054,"6054":6055,"6055":6056,"6056":6057,"6057":6058,"6058":6059,"6059":6060,"6060":6061,"6061":6062,"6062":6063,"6063":6064,"6064":6065,"6065":6066,"6066":6067,"6067":6068,"6068":6069,"6069":6070,"6070":6071,"6071":6072,"6072":6073,"6073":6074,"6074":6075,"6075":6076,"6076":6077,"6077":6078,"6078":6079,"6079":6080,"6080":6081,"6081":6082,"6082":6083,"6083":6084,"6084":6085,"6085":6086,"6086":6087,"6087":6088,"6088":6089,"6089":6090,"6090":6091,"6091":6092,"6092":6093,"6093":6094,"6094":6095,"6095":6096,"6096":6097,"6097":6098,"6098":6099,"6099":6100,"6100":6101,"6101":6102,"6102":6103,"6103":6104,"6104":6105,"6105":6106,"6106":6107,"6107":6108,"6108":6109,"6109":6110,"6110":6111,"6111":6112,"6112":6113,"6113":6114,"6114":6115,"6115":6116,"6116":6117,"6117":6118,"6118":6119,"6119":6120,"6120":6121,"6121":6122,"6122":6123,"6123":6124,"6124":6125,"6125":6126,"6126":6127,"6127":6128,"6128":6129,"6129":6130,"6130":6131,"6131":6132,"6132":6133,"6133":6134,"6134":6135,"6135":6136,"6136":6137,"6137":6138,"6138":6139,"6139":6140,"6140":6141,"6141":6142,"6142":6143,"6143":6144,"6144":6145,"6145":6146,"6146":6147,"6147":6148,"6148":6149,"6149":6150,"6150":6151,"6151":6152,"6152":6153,"6153":6154,"6154":6155,"6155":6156,"6156":6157,"6157":6158,"6158":6159,"6159":6160,"6160":6161,"6161":6162,"6162":6163,"6163":6164,"6164":6165,"6165":6166,"6166":6167,"6167":6168,"6168":6169,"6169":6170,"6170":6171,"6171":6172,"6172":6173,"6173":6174,"6174":6175,"6175":6176,"6176":6177,"6177":6178,"6178":6179,"6179":6180,"6180":6181,"6181":6182,"6182":6183,"6183":6184,"6184":6185,"6185":6186,"6186":6187,"6187":6188,"6188":6189,"6189":6190,"6190":6191,"6191":6192,"6192":6193,"6193":6194,"6194":6195,"6195":6196,"6196":6197,"6197":6198,"6198":6199,"6199":6200,"6200":6201,"6201":6202,"6202":6203,"6203":6204,"6204":6205,"6205":6206,"6206":6207,"6207":6208,"6208":6209,"6209":6210,"6210":6211,"6211":6212,"6212":6213,"6213":6214,"6214":6215,"6215":6216,"6216":6217,"6217":6218,"6218":6219,"6219":6220,"6220":6221,"6221":6222,"6222":6223,"6223":6224,"6224":6225,"6225":6226,"6226":6227,"6227":6228,"6228":6229,"6229":6230,"6230":6231,"6231":6232,"6232":6233,"6233":6234,"6234":6235,"6235":6236,"6236":6237,"6237":6238,"6238":6239,"6239":6240,"6240":6241,"6241":6242,"6242":6243,"6243":6244,"6244":6245,"6245":6246,"6246":6247,"6247":6248,"6248":6249,"6249":6250,"6250":6251,"6251":6252,"6252":6253,"6253":6254,"6254":6255,"6255":6256,"6256":6257,"6257":6258,"6258":6259,"6259":6260,"6260":6261,"6261":6262,"6262":6263,"6263":6264,"6264":6265,"6265":6266,"6266":6267,"6267":6268,"6268":6269,"6269":6270,"6270":6271,"6271":6272,"6272":6273,"6273":6274,"6274":6275,"6275":6276,"6276":6277,"6277":6278,"6278":6279,"6279":6280,"6280":6281,"6281":6282,"6282":6283,"6283":6284,"6284":6285,"6285":6286,"6286":6287,"6287":6288,"6288":6289,"6289":6290,"6290":6291,"6291":6292,"6292":6293,"6293":6294,"6294":6295,"6295":6296,"6296":6297,"6297":6298,"6298":6299,"6299":6300,"6300":6301,"6301":6302,"6302":6303,"6303":6304,"6304":6305,"6305":6306,"6306":6307,"6307":6308,"6308":6309,"6309":6310,"6310":6311,"6311":6312,"6312":6313,"6313":6314,"6314":6315,"6315":6316,"6316":6317,"6317":6318,"6318":6319,"6319":6320,"6320":6321,"6321":6322,"6322":6323,"6323":6324,"6324":6325,"6325":6326,"6326":6327,"6327":6328,"6328":6329,"6329":6330,"6330":6331,"6331":6332,"6332":6333,"6333":6334,"6334":6335,"6335":6336,"6336":6337,"6337":6338,"6338":6339,"6339":6340,"6340":6341,"6341":6342,"6342":6343,"6343":6344,"6344":6345,"6345":6346,"6346":6347,"6347":6348,"6348":6349,"6349":6350,"6350":6351,"6351":6352,"6352":6353,"6353":6354,"6354":6355,"6355":6356,"6356":6357,"6357":6358,"6358":6359,"6359":6360,"6360":6361,"6361":6362,"6362":6363,"6363":6364,"6364":6365,"6365":6366,"6366":6367,"6367":6368,"6368":6369,"6369":6370,"6370":6371,"6371":6372,"6372":6373,"6373":6374,"6374":6375,"6375":6376,"6376":6377,"6377":6378,"6378":6379,"6379":6380,"6380":6381,"6381":6382,"6382":6383,"6383":6384,"6384":6385,"6385":6386,"6386":6387,"6387":6388,"6388":6389,"6389":6390,"6390":6391,"6391":6392,"6392":6393,"6393":6394,"6394":6395,"6395":6396,"6396":6397,"6397":6398,"6398":6399,"6399":6400,"6400":6401,"6401":6402,"6402":6403,"6403":6404,"6404":6405,"6405":6406,"6406":6407,"6407":6408,"6408":6409,"6409":6410,"6410":6411,"6411":6412,"6412":6413,"6413":6414,"6414":6415,"6415":6416,"6416":6417,"6417":6418,"6418":6419,"6419":6420,"6420":6421,"6421":6422,"6422":6423,"6423":6424,"6424":6425,"6425":6426,"6426":6427,"6427":6428,"6428":6429,"6429":6430,"6430":6431,"6431":6432,"6432":6433,"6433":6434,"6434":6435,"6435":6436,"6436":6437,"6437":6438,"6438":6439,"6439":6440,"6440":6441,"6441":6442,"6442":6443,"6443":6444,"6444":6445,"6445":6446,"6446":6447,"6447":6448,"6448":6449,"6449":6450,"6450":6451,"6451":6452,"6452":6453,"6453":6454,"6454":6455,"6455":6456,"6456":6457,"6457":6458,"6458":6459,"6459":6460,"6460":6461,"6461":6462,"6462":6463,"6463":6464,"6464":6465,"6465":6466,"6466":6467,"6467":6468,"6468":6469,"6469":6470,"6470":6471,"6471":6472,"6472":6473,"6473":6474,"6474":6475,"6475":6476,"6476":6477,"6477":6478,"6478":6479,"6479":6480,"6480":6481,"6481":6482,"6482":6483,"6483":6484,"6484":6485,"6485":6486,"6486":6487,"6487":6488,"6488":6489,"6489":6490,"6490":6491,"6491":6492,"6492":6493,"6493":6494,"6494":6495,"6495":6496,"6496":6497,"6497":6498,"6498":6499,"6499":6500,"6500":6501,"6501":6502,"6502":6503,"6503":6504,"6504":6505,"6505":6506,"6506":6507,"6507":6508,"6508":6509,"6509":6510,"6510":6511,"6511":6512,"6512":6513,"6513":6514,"6514":6515,"6515":6516,"6516":6517,"6517":6518,"6518":6519,"6519":6520,"6520":6521,"6521":6522,"6522":6523,"6523":6524,"6524":6525,"6525":6526,"6526":6527,"6527":6528,"6528":6529,"6529":6530,"6530":6531,"6531":6532,"6532":6533,"6533":6534,"6534":6535,"6535":6536,"6536":6537,"6537":6538,"6538":6539,"6539":6540,"6540":6541,"6541":6542,"6542":6543,"6543":6544,"6544":6545,"6545":6546,"6546":6547,"6547":6548,"6548":6549,"6549":6550,"6550":6551,"6551":6552,"6552":6553,"6553":6554,"6554":6555,"6555":6556,"6556":6557,"6557":6558,"6558":6559,"6559":6560,"6560":6561,"6561":6562,"6562":6563,"6563":6564,"6564":6565,"6565":6566,"6566":6567,"6567":6568,"6568":6569,"6569":6570,"6570":6571,"6571":6572,"6572":6573,"6573":6574,"6574":6575,"6575":6576,"6576":6577,"6577":6578,"6578":6579,"6579":6580,"6580":6581,"6581":6582,"6582":6583,"6583":6584,"6584":6585,"6585":6586,"6586":6587,"6587":6588,"6588":6589,"6589":6590,"6590":6591,"6591":6592,"6592":6593,"6593":6594,"6594":6595,"6595":6596,"6596":6597,"6597":6598,"6598":6599,"6599":6600,"6600":6601,"6601":6602,"6602":6603,"6603":6604,"6604":6605,"6605":6606,"6606":6607,"6607":6608,"6608":6609,"6609":6610,"6610":6611,"6611":6612,"6612":6613,"6613":6614,"6614":6615,"6615":6616,"6616":6617,"6617":6618,"6618":6619,"6619":6620,"6620":6621,"6621":6622,"6622":6623,"6623":6624,"6624":6625,"6625":6626,"6626":6627,"6627":6628,"6628":6629,"6629":6630,"6630":6631,"6631":6632,"6632":6633,"6633":6634,"6634":6635,"6635":6636,"6636":6637,"6637":6638,"6638":6639,"6639":6640,"6640":6641,"6641":6642,"6642":6643,"6643":6644,"6644":6645,"6645":6646,"6646":6647,"6647":6648,"6648":6649,"6649":6650,"6650":6651,"6651":6652,"6652":6653,"6653":6654,"6654":6655,"6655":6656,"6656":6657,"6657":6658,"6658":6659,"6659":6660,"6660":6661,"6661":6662,"6662":6663,"6663":6664,"6664":6665,"6665":6666,"6666":6667,"6667":6668,"6668":6669,"6669":6670,"6670":6671,"6671":6672,"6672":6673,"6673":6674,"6674":6675,"6675":6676,"6676":6677,"6677":6678,"6678":6679,"6679":6680,"6680":6681,"6681":6682,"6682":6683,"6683":6684,"6684":6685,"6685":6686,"6686":6687,"6687":6688,"6688":6689,"6689":6690,"6690":6691,"6691":6692,"6692":6693,"6693":6694,"6694":6695,"6695":6696,"6696":6697,"6697":6698,"6698":6699,"6699":6700,"6700":6701,"6701":6702,"6702":6703,"6703":6704,"6704":6705,"6705":6706,"6706":6707,"6707":6708,"6708":6709,"6709":6710,"6710":6711,"6711":6712,"6712":6713,"6713":6714,"6714":6715,"6715":6716,"6716":6717,"6717":6718,"6718":6719,"6719":6720,"6720":6721,"6721":6722,"6722":6723,"6723":6724,"6724":6725,"6725":6726,"6726":6727,"6727":6728,"6728":6729,"6729":6730,"6730":6731,"6731":6732,"6732":6733,"6733":6734,"6734":6735,"6735":6736,"6736":6737,"6737":6738,"6738":6739,"6739":6740,"6740":6741,"6741":6742,"6742":6743,"6743":6744,"6744":6745,"6745":6746,"6746":6747,"6747":6748,"6748":6749,"6749":6750,"6750":6751,"6751":6752,"6752":6753,"6753":6754,"6754":6755,"6755":6756,"6756":6757,"6757":6758,"6758":6759,"6759":6760,"6760":6761,"6761":6762,"6762":6763,"6763":6764,"6764":6765,"6765":6766,"6766":6767,"6767":6768,"6768":6769,"6769":6770,"6770":6771,"6771":6772,"6772":6773,"6773":6774,"6774":6775,"6775":6776,"6776":6777,"6777":6778,"6778":6779,"6779":6780,"6780":6781,"6781":6782,"6782":6783,"6783":6784,"6784":6785,"6785":6786,"6786":6787,"6787":6788,"6788":6789,"6789":6790,"6790":6791,"6791":6792,"6792":6793,"6793":6794,"6794":6795,"6795":6796,"6796":6797,"6797":6798,"6798":6799,"6799":6800,"6800":6801,"6801":6802,"6802":6803,"6803":6804,"6804":6805,"6805":6806,"6806":6807,"6807":6808,"6808":6809,"6809":6810,"6810":6811,"6811":6812,"6812":6813,"6813":6814,"6814":6815,"6815":6816,"6816":6817,"6817":6818,"6818":6819,"6819":6820,"6820":6821,"6821":6822,"6822":6823,"6823":6824,"6824":6825,"6825":6826,"6826":6827,"6827":6828,"6828":6829,"6829":6830,"6830":6831,"6831":6832,"6832":6833,"6833":6834,"6834":6835,"6835":6836,"6836":6837,"6837":6838,"6838":6839,"6839":6840,"6840":6841,"6841":6842,"6842":6843,"6843":6844,"6844":6845,"6845":6846,"6846":6847,"6847":6848,"6848":6849,"6849":6850,"6850":6851,"6851":6852,"6852":6853,"6853":6854,"6854":6855,"6855":6856,"6856":6857,"6857":6858,"6858":6859,"6859":6860,"6860":6861,"6861":6862,"6862":6863,"6863":6864,"6864":6865,"6865":6866,"6866":6867,"6867":6868,"6868":6869,"6869":6870,"6870":6871,"6871":6872,"6872":6873,"6873":6874,"6874":6875,"6875":6876,"6876":6877,"6877":6878,"6878":6879,"6879":6880,"6880":6881,"6881":6882,"6882":6883,"6883":6884,"6884":6885,"6885":6886,"6886":6887,"6887":6888,"6888":6889,"6889":6890,"6890":6891,"6891":6892,"6892":6893,"6893":6894,"6894":6895,"6895":6896,"6896":6897,"6897":6898,"6898":6899,"6899":6900,"6900":6901,"6901":6902,"6902":6903,"6903":6904,"6904":6905,"6905":6906,"6906":6907,"6907":6908,"6908":6909,"6909":6910,"6910":6911,"6911":6912,"6912":6913,"6913":6914,"6914":6915,"6915":6916,"6916":6917,"6917":6918,"6918":6919,"6919":6920,"6920":6921,"6921":6922,"6922":6923,"6923":6924,"6924":6925,"6925":6926,"6926":6927,"6927":6928,"6928":6929,"6929":6930,"6930":6931,"6931":6932,"6932":6933,"6933":6934,"6934":6935,"6935":6936,"6936":6937,"6937":6938,"6938":6939,"6939":6940,"6940":6941,"6941":6942,"6942":6943,"6943":6944,"6944":6945,"6945":6946,"6946":6947,"6947":6948,"6948":6949,"6949":6950,"6950":6951,"6951":6952,"6952":6953,"6953":6954,"6954":6955,"6955":6956,"6956":6957,"6957":6958,"6958":6959,"6959":6960,"6960":6961,"6961":6962,"6962":6963,"6963":6964,"6964":6965,"6965":6966,"6966":6967,"6967":6968,"6968":6969,"6969":6970,"6970":6971,"6971":6972,"6972":6973,"6973":6974,"6974":6975,"6975":6976,"6976":6977,"6977":6978,"6978":6979,"6979":6980,"6980":6981,"6981":6982,"6982":6983,"6983":6984,"6984":6985,"6985":6986,"6986":6987,"6987":6988,"6988":6989,"6989":6990,"6990":6991,"6991":6992,"6992":6993,"6993":6994,"6994":6995,"6995":6996,"6996":6997,"6997":6998,"6998":6999,"6999":7000,"7000":7001,"7001":7002,"7002":7003,"7003":7004,"7004":7005,"7005":7006,"7006":7007,"7007":7008,"7008":7009,"7009":7010,"7010":7011,"7011":7012,"7012":7013,"7013":7014,"7014":7015,"7015":7016,"7016":7017,"7017":7018,"7018":7019,"7019":7020,"7020":7021,"7021":7022,"7022":7023,"7023":7024,"7024":7025,"7025":7026,"7026":7027,"7027":7028,"7028":7029,"7029":7030,"7030":7031,"7031":7032,"7032":7033,"7033":7034,"7034":7035,"7035":7036,"7036":7037,"7037":7038,"7038":7039,"7039":7040,"7040":7041,"7041":7042,"7042":7043,"7043":7044,"7044":7045,"7045":7046,"7046":7047,"7047":7048,"7048":7049,"7049":7050,"7050":7051,"7051":7052,"7052":7053,"7053":7054,"7054":7055,"7055":7056,"7056":7057,"7057":7058,"7058":7059,"7059":7060,"7060":7061,"7061":7062,"7062":7063,"7063":7064,"7064":7065,"7065":7066,"7066":7067,"7067":7068,"7068":7069,"7069":7070,"7070":7071,"7071":7072,"7072":7073,"7073":7074,"7074":7075,"7075":7076,"7076":7077,"7077":7078,"7078":7079,"7079":7080,"7080":7081,"7081":7082,"7082":7083,"7083":7084,"7084":7085,"7085":7086,"7086":7087,"7087":7088,"7088":7089,"7089":7090,"7090":7091,"7091":7092,"7092":7093,"7093":7094,"7094":7095,"7095":7096,"7096":7097,"7097":7098,"7098":7099,"7099":7100,"7100":7101,"7101":7102,"7102":7103,"7103":7104,"7104":7105,"7105":7106,"7106":7107,"7107":7108,"7108":7109,"7109":7110,"7110":7111,"7111":7112,"7112":7113,"7113":7114,"7114":7115,"7115":7116,"7116":7117,"7117":7118,"7118":7119,"7119":7120,"7120":7121,"7121":7122,"7122":7123,"7123":7124,"7124":7125,"7125":7126,"7126":7127,"7127":7128,"7128":7129,"7129":7130,"7130":7131,"7131":7132,"7132":7133,"7133":7134,"7134":7135,"7135":7136,"7136":7137,"7137":7138,"7138":7139,"7139":7140,"7140":7141,"7141":7142,"7142":7143,"7143":7144,"7144":7145,"7145":7146,"7146":7147,"7147":7148,"7148":7149,"7149":7150,"7150":7151,"7151":7152,"7152":7153,"7153":7154,"7154":7155,"7155":7156,"7156":7157,"7157":7158,"7158":7159,"7159":7160,"7160":7161,"7161":7162,"7162":7163,"7163":7164,"7164":7165,"7165":7166,"7166":7167,"7167":7168,"7168":7169,"7169":7170,"7170":7171,"7171":7172,"7172":7173,"7173":7174,"7174":7175,"7175":7176,"7176":7177,"7177":7178,"7178":7179,"7179":7180,"7180":7181,"7181":7182,"7182":7183,"7183":7184,"7184":7185,"7185":7186,"7186":7187,"7187":7188,"7188":7189,"7189":7190,"7190":7191,"7191":7192,"7192":7193,"7193":7194,"7194":7195,"7195":7196,"7196":7197,"7197":7198,"7198":7199,"7199":7200,"7200":7201,"7201":7202,"7202":7203,"7203":7204,"7204":7205,"7205":7206,"7206":7207,"7207":7208,"7208":7209,"7209":7210,"7210":7211,"7211":7212,"7212":7213,"7213":7214,"7214":7215,"7215":7216,"7216":7217,"7217":7218,"7218":7219,"7219":7220,"7220":7221,"7221":7222,"7222":7223,"7223":7224,"7224":7225,"7225":7226,"7226":7227,"7227":7228,"7228":7229,"7229":7230,"7230":7231,"7231":7232,"7232":7233,"7233":7234,"7234":7235,"7235":7236,"7236":7237,"7237":7238,"7238":7239,"7239":7240,"7240":7241,"7241":7242,"7242":7243,"7243":7244,"7244":7245,"7245":7246,"7246":7247,"7247":7248,"7248":7249,"7249":7250,"7250":7251,"7251":7252,"7252":7253,"7253":7254,"7254":7255,"7255":7256,"7256":7257,"7257":7258,"7258":7259,"7259":7260,"7260":7261,"7261":7262,"7262":7263,"7263":7264,"7264":7265,"7265":7266,"7266":7267,"7267":7268,"7268":7269,"7269":7270,"7270":7271,"7271":7272,"7272":7273,"7273":7274,"7274":7275,"7275":7276,"7276":7277,"7277":7278,"7278":7279,"7279":7280,"7280":7281,"7281":7282,"7282":7283,"7283":7284,"7284":7285,"7285":7286,"7286":7287,"7287":7288,"7288":7289,"7289":7290,"7290":7291,"7291":7292,"7292":7293,"7293":7294,"7294":7295,"7295":7296,"7296":7297,"7297":7298,"7298":7299,"7299":7300,"7300":7301,"7301":7302,"7302":7303,"7303":7304,"7304":7305,"7305":7306,"7306":7307,"7307":7308,"7308":7309,"7309":7310,"7310":7311,"7311":7312,"7312":7313,"7313":7314,"7314":7315,"7315":7316,"7316":7317,"7317":7318,"7318":7319,"7319":7320,"7320":7321,"7321":7322,"7322":7323,"7323":7324,"7324":7325,"7325":7326,"7326":7327,"7327":7328,"7328":7329,"7329":7330,"7330":7331,"7331":7332,"7332":7333,"7333":7334,"7334":7335,"7335":7336,"7336":7337,"7337":7338,"7338":7339,"7339":7340,"7340":7341,"7341":7342,"7342":7343,"7343":7344,"7344":7345,"7345":7346,"7346":7347,"7347":7348,"7348":7349,"7349":7350,"7350":7351,"7351":7352,"7352":7353,"7353":7354,"7354":7355,"7355":7356,"7356":7357,"7357":7358,"7358":7359,"7359":7360,"7360":7361,"7361":7362,"7362":7363,"7363":7364,"7364":7365,"7365":7366,"7366":7367,"7367":7368,"7368":7369,"7369":7370,"7370":7371,"7371":7372,"7372":7373,"7373":7374,"7374":7375,"7375":7376,"7376":7377,"7377":7378,"7378":7379,"7379":7380,"7380":7381,"7381":7382,"7382":7383,"7383":7384,"7384":7385,"7385":7386,"7386":7387,"7387":7388,"7388":7389,"7389":7390,"7390":7391,"7391":7392,"7392":7393,"7393":7394,"7394":7395,"7395":7396,"7396":7397,"7397":7398,"7398":7399,"7399":7400,"7400":7401,"7401":7402,"7402":7403,"7403":7404,"7404":7405,"7405":7406,"7406":7407,"7407":7408,"7408":7409,"7409":7410,"7410":7411,"7411":7412,"7412":7413,"7413":7414,"7414":7415,"7415":7416,"7416":7417,"7417":7418,"7418":7419,"7419":7420,"7420":7421,"7421":7422,"7422":7423,"7423":7424,"7424":7425,"7425":7426,"7426":7427,"7427":7428,"7428":7429,"7429":7430,"7430":7431,"7431":7432,"7432":7433,"7433":7434,"7434":7435,"7435":7436,"7436":7437,"7437":7438,"7438":7439,"7439":7440,"7440":7441,"7441":7442,"7442":7443,"7443":7444,"7444":7445,"7445":7446,"7446":7447,"7447":7448,"7448":7449,"7449":7450,"7450":7451,"7451":7452,"7452":7453,"7453":7454,"7454":7455,"7455":7456,"7456":7457,"7457":7458,"7458":7459,"7459":7460,"7460":7461,"7461":7462,"7462":7463,"7463":7464,"7464":7465,"7465":7466,"7466":7467,"7467":7468,"7468":7469,"7469":7470,"7470":7471,"7471":7472,"7472":7473,"7473":7474,"7474":7475,"7475":7476,"7476":7477,"7477":7478,"7478":7479,"7479":7480,"7480":7481,"7481":7482,"7482":7483,"7483":7484,"7484":7485,"7485":7486,"7486":7487,"7487":7488,"7488":7489,"7489":7490,"7490":7491,"7491":7492,"7492":7493,"7493":7494,"7494":7495,"7495":7496,"7496":7497,"7497":7498,"7498":7499,"7499":7500,"7500":7501,"7501":7502,"7502":7503,"7503":7504,"7504":7505,"7505":7506,"7506":7507,"7507":7508,"7508":7509,"7509":7510,"7510":7511,"7511":7512,"7512":7513,"7513":7514,"7514":7515,"7515":7516,"7516":7517,"7517":7518,"7518":7519,"7519":7520,"7520":7521,"7521":7522,"7522":7523,"7523":7524,"7524":7525,"7525":7526,"7526":7527,"7527":7528,"7528":7529,"7529":7530,"7530":7531,"7531":7532,"7532":7533,"7533":7534,"7534":7535,"7535":7536,"7536":7537,"7537":7538,"7538":7539,"7539":7540,"7540":7541,"7541":7542,"7542":7543,"7543":7544,"7544":7545,"7545":7546,"7546":7547,"7547":7548,"7548":7549,"7549":7550,"7550":7551,"7551":7552,"7552":7553,"7553":7554,"7554":7555,"7555":7556,"7556":7557,"7557":7558,"7558":7559,"7559":7560,"7560":7561,"7561":7562,"7562":7563,"7563":7564,"7564":7565,"7565":7566,"7566":7567,"7567":7568,"7568":7569,"7569":7570,"7570":7571,"7571":7572,"7572":7573,"7573":7574,"7574":7575,"7575":7576,"7576":7577,"7577":7578,"7578":7579,"7579":7580,"7580":7581,"7581":7582,"7582":7583,"7583":7584,"7584":7585,"7585":7586,"7586":7587,"7587":7588,"7588":7589,"7589":7590,"7590":7591,"7591":7592,"7592":7593,"7593":7594,"7594":7595,"7595":7596,"7596":7597,"7597":7598,"7598":7599,"7599":7600,"7600":7601,"7601":7602,"7602":7603,"7603":7604,"7604":7605,"7605":7606,"7606":7607,"7607":7608,"7608":7609,"7609":7610,"7610":7611,"7611":7612,"7612":7613,"7613":7614,"7614":7615,"7615":7616,"7616":7617,"7617":7618,"7618":7619,"7619":7620,"7620":7621,"7621":7622,"7622":7623,"7623":7624,"7624":7625,"7625":7626,"7626":7627,"7627":7628,"7628":7629,"7629":7630,"7630":7631,"7631":7632,"7632":7633,"7633":7634,"7634":7635,"7635":7636,"7636":7637,"7637":7638,"7638":7639,"7639":7640,"7640":7641,"7641":7642,"7642":7643,"7643":7644,"7644":7645,"7645":7646,"7646":7647,"7647":7648,"7648":7649,"7649":7650,"7650":7651,"7651":7652,"7652":7653,"7653":7654,"7654":7655,"7655":7656,"7656":7657,"7657":7658,"7658":7659,"7659":7660,"7660":7661,"7661":7662,"7662":7663,"7663":7664,"7664":7665,"7665":7666,"7666":7667,"7667":7668,"7668":7669,"7669":7670,"7670":7671,"7671":7672,"7672":7673,"7673":7674,"7674":7675,"7675":7676,"7676":7677,"7677":7678,"7678":7679,"7679":7680,"7680":7681,"7681":7682,"7682":7683,"7683":7684,"7684":7685,"7685":7686,"7686":7687,"7687":7688,"7688":7689,"7689":7690,"7690":7691,"7691":7692,"7692":7693,"7693":7694,"7694":7695,"7695":7696,"7696":7697,"7697":7698,"7698":7699,"7699":7700,"7700":7701,"7701":7702,"7702":7703,"7703":7704,"7704":7705,"7705":7706,"7706":7707,"7707":7708,"7708":7709,"7709":7710,"7710":7711,"7711":7712,"7712":7713,"7713":7714,"7714":7715,"7715":7716,"7716":7717,"7717":7718,"7718":7719,"7719":7720,"7720":7721,"7721":7722,"7722":7723,"7723":7724,"7724":7725,"7725":7726,"7726":7727,"7727":7728,"7728":7729,"7729":7730,"7730":7731,"7731":7732,"7732":7733,"7733":7734,"7734":7735,"7735":7736,"7736":7737,"7737":7738,"7738":7739,"7739":7740,"7740":7741,"7741":7742,"7742":7743,"7743":7744,"7744":7745,"7745":7746,"7746":7747,"7747":7748,"7748":7749,"7749":7750,"7750":7751,"7751":7752,"7752":7753,"7753":7754,"7754":7755,"7755":7756,"7756":7757,"7757":7758,"7758":7759,"7759":7760,"7760":7761,"7761":7762,"7762":7763,"7763":7764,"7764":7765,"7765":7766,"7766":7767,"7767":7768,"7768":7769,"7769":7770,"7770":7771,"7771":7772,"7772":7773,"7773":7774,"7774":7775,"7775":7776,"7776":7777,"7777":7778,"7778":7779,"7779":7780,"7780":7781,"7781":7782,"7782":7783,"7783":7784,"7784":7785,"7785":7786,"7786":7787,"7787":7788,"7788":7789,"7789":7790,"7790":7791,"7791":7792,"7792":7793,"7793":7794,"7794":7795,"7795":7796,"7796":7797,"7797":7798,"7798":7799,"7799":7800,"7800":7801,"7801":7802,"7802":7803,"7803":7804,"7804":7805,"7805":7806,"7806":7807,"7807":7808,"7808":7809,"7809":7810,"7810":7811,"7811":7812,"7812":7813,"7813":7814,"7814":7815,"7815":7816,"7816":7817,"7817":7818,"7818":7819,"7819":7820,"7820":7821,"7821":7822,"7822":7823,"7823":7824,"7824":7825,"7825":7826,"7826":7827,"7827":7828,"7828":7829,"7829":7830,"7830":7831,"7831":7832,"7832":7833,"7833":7834,"7834":7835,"7835":7836,"7836":7837,"7837":7838,"7838":7839,"7839":7840,"7840":7841,"7841":7842,"7842":7843,"7843":7844,"7844":7845,"7845":7846,"7846":7847,"7847":7848,"7848":7849,"7849":7850,"7850":7851,"7851":7852,"7852":7853,"7853":7854,"7854":7855,"7855":7856,"7856":7857,"7857":7858,"7858":7859,"7859":7860,"7860":7861,"7861":7862,"7862":7863,"7863":7864,"7864":7865,"7865":7866,"7866":7867,"7867":7868,"7868":7869,"7869":7870,"7870":7871,"7871":7872,"7872":7873,"7873":7874,"7874":7875,"7875":7876,"7876":7877,"7877":7878,"7878":7879,"7879":7880,"7880":7881,"7881":7882,"7882":7883,"7883":7884,"7884":7885,"7885":7886,"7886":7887,"7887":7888,"7888":7889,"7889":7890,"7890":7891,"7891":7892,"7892":7893,"7893":7894,"7894":7895,"7895":7896,"7896":7897,"7897":7898,"7898":7899,"7899":7900,"7900":7901,"7901":7902,"7902":7903,"7903":7904,"7904":7905,"7905":7906,"7906":7907,"7907":7908,"7908":7909,"7909":7910,"7910":7911,"7911":7912,"7912":7913,"7913":7914,"7914":7915,"7915":7916,"7916":7917,"7917":7918,"7918":7919,"7919":7920,"7920":7921,"7921":7922,"7922":7923,"7923":7924,"7924":7925,"7925":7926,"7926":7927,"7927":7928,"7928":7929,"7929":7930,"7930":7931,"7931":7932,"7932":7933,"7933":7934,"7934":7935,"7935":7936,"7936":7937,"7937":7938,"7938":7939,"7939":7940,"7940":7941,"7941":7942,"7942":7943,"7943":7944,"7944":7945,"7945":7946,"7946":7947,"7947":7948,"7948":7949,"7949":7950,"7950":7951,"7951":7952,"7952":7953,"7953":7954,"7954":7955,"7955":7956,"7956":7957,"7957":7958,"7958":7959,"7959":7960,"7960":7961,"7961":7962,"7962":7963,"7963":7964,"7964":7965,"7965":7966,"7966":7967,"7967":7968,"7968":7969,"7969":7970,"7970":7971,"7971":7972,"7972":7973,"7973":7974,"7974":7975,"7975":7976,"7976":7977,"7977":7978,"7978":7979,"7979":7980,"7980":7981,"7981":7982,"7982":7983,"7983":7984,"7984":7985,"7985":7986,"7986":7987,"7987":7988,"7988":7989,"7989":7990,"7990":7991,"7991":7992,"7992":7993,"7993":7994,"7994":7995,"7995":7996,"7996":7997,"7997":7998,"7998":7999,"7999":8000,"8000":8001,"8001":8002,"8002":8003,"8003":8004,"8004":8005,"8005":8006,"8006":8007,"8007":8008,"8008":8009,"8009":8010,"8010":8011,"8011":8012,"8012":8013,"8013":8014,"8014":8015,"8015":8016,"8016":8017,"8017":8018,"8018":8019,"8019":8020,"8020":8021,"8021":8022,"8022":8023,"8023":8024,"8024":8025,"8025":8026,"8026":8027,"8027":8028,"8028":8029,"8029":8030,"8030":8031,"8031":8032,"8032":8033,"8033":8034,"8034":8035,"8035":8036,"8036":8037,"8037":8038,"8038":8039,"8039":8040,"8040":8041,"8041":8042,"8042":8043,"8043":8044,"8044":8045,"8045":8046,"8046":8047,"8047":8048,"8048":8049,"8049":8050,"8050":8051,"8051":8052,"8052":8053,"8053":8054,"8054":8055,"8055":8056,"8056":8057,"8057":8058,"8058":8059,"8059":8060,"8060":8061,"8061":8062,"8062":8063,"8063":8064,"8064":8065,"8065":8066,"8066":8067,"8067":8068,"8068":8069,"8069":8070,"8070":8071,"8071":8072,"8072":8073,"8073":8074,"8074":8075,"8075":8076,"8076":8077,"8077":8078,"8078":8079,"8079":8080,"8080":8081,"8081":8082,"8082":8083,"8083":8084,"8084":8085,"8085":8086,"8086":8087,"8087":8088,"8088":8089,"8089":8090,"8090":8091,"8091":8092,"8092":8093,"8093":8094,"8094":8095,"8095":8096,"8096":8097,"8097":8098,"8098":8099,"8099":8100,"8100":8101,"8101":8102,"8102":8103,"8103":8104,"8104":8105,"8105":8106,"8106":8107,"8107":8108,"8108":8109,"8109":8110,"8110":8111,"8111":8112,"8112":8113,"8113":8114,"8114":8115,"8115":8116,"8116":8117,"8117":8118,"8118":8119,"8119":8120,"8120":8121,"8121":8122,"8122":8123,"8123":8124,"8124":8125,"8125":8126,"8126":8127,"8127":8128,"8128":8129,"8129":8130,"8130":8131,"8131":8132,"8132":8133,"8133":8134,"8134":8135,"8135":8136,"8136":8137,"8137":8138,"8138":8139,"8139":8140,"8140":8141,"8141":8142,"8142":8143,"8143":8144,"8144":8145,"8145":8146,"8146":8147,"8147":8148,"8148":8149,"8149":8150,"8150":8151,"8151":8152,"8152":8153,"8153":8154,"8154":8155,"8155":8156,"8156":8157,"8157":8158,"8158":8159,"8159":8160,"8160":8161,"8161":8162,"8162":8163,"8163":8164,"8164":8165,"8165":8166,"8166":8167,"8167":8168,"8168":8169,"8169":8170,"8170":8171,"8171":8172,"8172":8173,"8173":8174,"8174":8175,"8175":8176,"8176":8177,"8177":8178,"8178":8179,"8179":8180,"8180":8181,"8181":8182,"8182":8183,"8183":8184,"8184":8185,"8185":8186,"8186":8187,"8187":8188,"8188":8189,"8189":8190,"8190":8191,"8191":8192,"8192":8193,"8193":8194,"8194":8195,"8195":8196,"8196":8197,"8197":8198,"8198":8199,"8199":8200,"8200":8201,"8201":8202,"8202":8203,"8203":8204,"8204":8205,"8205":8206,"8206":8207,"8207":8208,"8208":8209,"8209":8210,"8210":8211,"8211":8212,"8212":8213,"8213":8214,"8214":8215,"8215":8216,"8216":8217,"8217":8218,"8218":8219,"8219":8220,"8220":8221,"8221":8222,"8222":8223,"8223":8224,"8224":8225,"8225":8226,"8226":8227,"8227":8228,"8228":8229,"8229":8230,"8230":8231,"8231":8232,"8232":8233,"8233":8234,"8234":8235,"8235":8236,"8236":8237,"8237":8238,"8238":8239,"8239":8240,"8240":8241,"8241":8242,"8242":8243,"8243":8244,"8244":8245,"8245":8246,"8246":8247,"8247":8248,"8248":8249,"8249":8250,"8250":8251,"8251":8252,"8252":8253,"8253":8254,"8254":8255,"8255":8256,"8256":8257,"8257":8258,"8258":8259,"8259":8260,"8260":8261,"8261":8262,"8262":8263,"8263":8264,"8264":8265,"8265":8266,"8266":8267,"8267":8268,"8268":8269,"8269":8270,"8270":8271,"8271":8272,"8272":8273,"8273":8274,"8274":8275,"8275":8276,"8276":8277,"8277":8278,"8278":8279,"8279":8280,"8280":8281,"8281":8282,"8282":8283,"8283":8284,"8284":8285,"8285":8286,"8286":8287,"8287":8288,"8288":8289,"8289":8290,"8290":8291,"8291":8292,"8292":8293,"8293":8294,"8294":8295,"8295":8296,"8296":8297,"8297":8298,"8298":8299,"8299":8300,"8300":8301,"8301":8302,"8302":8303,"8303":8304,"8304":8305,"8305":8306,"8306":8307,"8307":8308,"8308":8309,"8309":8310,"8310":8311,"8311":8312,"8312":8313,"8313":8314,"8314":8315,"8315":8316,"8316":8317,"8317":8318,"8318":8319,"8319":8320,"8320":8321,"8321":8322,"8322":8323,"8323":8324,"8324":8325,"8325":8326,"8326":8327,"8327":8328,"8328":8329,"8329":8330,"8330":8331,"8331":8332,"8332":8333,"8333":8334,"8334":8335,"8335":8336,"8336":8337,"8337":8338,"8338":8339,"8339":8340,"8340":8341,"8341":8342,"8342":8343,"8343":8344,"8344":8345,"8345":8346,"8346":8347,"8347":8348,"8348":8349,"8349":8350,"8350":8351,"8351":8352,"8352":8353,"8353":8354,"8354":8355,"8355":8356,"8356":8357,"8357":8358,"8358":8359,"8359":8360,"8360":8361,"8361":8362,"8362":8363,"8363":8364,"8364":8365,"8365":8366,"8366":8367,"8367":8368,"8368":8369,"8369":8370,"8370":8371,"8371":8372,"8372":8373,"8373":8374,"8374":8375,"8375":8376,"8376":8377,"8377":8378,"8378":8379,"8379":8380,"8380":8381,"8381":8382,"8382":8383,"8383":8384,"8384":8385,"8385":8386,"8386":8387,"8387":8388,"8388":8389,"8389":8390,"8390":8391,"8391":8392,"8392":8393,"8393":8394,"8394":8395,"8395":8396,"8396":8397,"8397":8398,"8398":8399,"8399":8400,"8400":8401,"8401":8402,"8402":8403,"8403":8404,"8404":8405,"8405":8406,"8406":8407,"8407":8408,"8408":8409,"8409":8410,"8410":8411,"8411":8412,"8412":8413,"8413":8414,"8414":8415,"8415":8416,"8416":8417,"8417":8418,"8418":8419,"8419":8420,"8420":8421,"8421":8422,"8422":8423,"8423":8424,"8424":8425,"8425":8426,"8426":8427,"8427":8428,"8428":8429,"8429":8430,"8430":8431,"8431":8432,"8432":8433,"8433":8434,"8434":8435,"8435":8436,"8436":8437,"8437":8438,"8438":8439,"8439":8440,"8440":8441,"8441":8442,"8442":8443,"8443":8444,"8444":8445,"8445":8446,"8446":8447,"8447":8448,"8448":8449,"8449":8450,"8450":8451,"8451":8452,"8452":8453,"8453":8454,"8454":8455,"8455":8456,"8456":8457,"8457":8458,"8458":8459,"8459":8460,"8460":8461,"8461":8462,"8462":8463,"8463":8464,"8464":8465,"8465":8466,"8466":8467,"8467":8468,"8468":8469,"8469":8470,"8470":8471,"8471":8472,"8472":8473,"8473":8474,"8474":8475,"8475":8476,"8476":8477,"8477":8478,"8478":8479,"8479":8480,"8480":8481,"8481":8482,"8482":8483,"8483":8484,"8484":8485,"8485":8486,"8486":8487,"8487":8488,"8488":8489,"8489":8490,"8490":8491,"8491":8492,"8492":8493,"8493":8494,"8494":8495,"8495":8496,"8496":8497,"8497":8498,"8498":8499,"8499":8500,"8500":8501,"8501":8502,"8502":8503,"8503":8504,"8504":8505,"8505":8506,"8506":8507,"8507":8508,"8508":8509,"8509":8510,"8510":8511,"8511":8512,"8512":8513,"8513":8514,"8514":8515,"8515":8516,"8516":8517,"8517":8518,"8518":8519,"8519":8520,"8520":8521,"8521":8522,"8522":8523,"8523":8524,"8524":8525,"8525":8526,"8526":8527,"8527":8528,"8528":8529,"8529":8530,"8530":8531,"8531":8532,"8532":8533,"8533":8534,"8534":8535,"8535":8536,"8536":8537,"8537":8538,"8538":8539,"8539":8540,"8540":8541,"8541":8542,"8542":8543,"8543":8544,"8544":8545,"8545":8546,"8546":8547,"8547":8548,"8548":8549,"8549":8550,"8550":8551,"8551":8552,"8552":8553,"8553":8554,"8554":8555,"8555":8556,"8556":8557,"8557":8558,"8558":8559,"8559":8560,"8560":8561,"8561":8562,"8562":8563,"8563":8564,"8564":8565,"8565":8566,"8566":8567,"8567":8568,"8568":8569,"8569":8570,"8570":8571,"8571":8572,"8572":8573,"8573":8574,"8574":8575,"8575":8576,"8576":8577,"8577":8578,"8578":8579,"8579":8580,"8580":8581,"8581":8582,"8582":8583,"8583":8584,"8584":8585,"8585":8586,"8586":8587,"8587":8588,"8588":8589,"8589":8590,"8590":8591,"8591":8592,"8592":8593,"8593":8594,"8594":8595,"8595":8596,"8596":8597,"8597":8598,"8598":8599,"8599":8600,"8600":8601,"8601":8602,"8602":8603,"8603":8604,"8604":8605,"8605":8606,"8606":8607,"8607":8608,"8608":8609,"8609":8610,"8610":8611,"8611":8612,"8612":8613,"8613":8614,"8614":8615,"8615":8616,"8616":8617,"8617":8618,"8618":8619,"8619":8620,"8620":8621,"8621":8622,"8622":8623,"8623":8624,"8624":8625,"8625":8626,"8626":8627,"8627":8628,"8628":8629,"8629":8630,"8630":8631,"8631":8632,"8632":8633,"8633":8634,"8634":8635,"8635":8636,"8636":8637,"8637":8638,"8638":8639,"8639":8640,"8640":8641,"8641":8642,"8642":8643,"8643":8644,"8644":8645,"8645":8646,"8646":8647,"8647":8648,"8648":8649,"8649":8650,"8650":8651,"8651":8652,"8652":8653,"8653":8654,"8654":8655,"8655":8656,"8656":8657,"8657":8658,"8658":8659,"8659":8660,"8660":8661,"8661":8662,"8662":8663,"8663":8664,"8664":8665,"8665":8666,"8666":8667,"8667":8668,"8668":8669,"8669":8670,"8670":8671,"8671":8672,"8672":8673,"8673":8674,"8674":8675,"8675":8676,"8676":8677,"8677":8678,"8678":8679,"8679":8680,"8680":8681,"8681":8682,"8682":8683,"8683":8684,"8684":8685,"8685":8686,"8686":8687,"8687":8688,"8688":8689,"8689":8690,"8690":8691,"8691":8692,"8692":8693,"8693":8694,"8694":8695,"8695":8696,"8696":8697,"8697":8698,"8698":8699,"8699":8700,"8700":8701,"8701":8702,"8702":8703,"8703":8704,"8704":8705,"8705":8706,"8706":8707,"8707":8708,"8708":8709,"8709":8710,"8710":8711,"8711":8712,"8712":8713,"8713":8714,"8714":8715,"8715":8716,"8716":8717,"8717":8718,"8718":8719,"8719":8720,"8720":8721,"8721":8722,"8722":8723,"8723":8724,"8724":8725,"8725":8726,"8726":8727,"8727":8728,"8728":8729,"8729":8730,"8730":8731,"8731":8732,"8732":8733,"8733":8734,"8734":8735,"8735":8736,"8736":8737,"8737":8738,"8738":8739,"8739":8740,"8740":8741,"8741":8742,"8742":8743,"8743":8744,"8744":8745,"8745":8746,"8746":8747,"8747":8748,"8748":8749,"8749":8750,"8750":8751,"8751":8752,"8752":8753,"8753":8754,"8754":8755,"8755":8756,"8756":8757,"8757":8758,"8758":8759,"8759":8760,"8760":8761,"8761":8762,"8762":8763,"8763":8764,"8764":8765,"8765":8766,"8766":8767,"8767":8768,"8768":8769,"8769":8770,"8770":8771,"8771":8772,"8772":8773,"8773":8774,"8774":8775,"8775":8776,"8776":8777,"8777":8778,"8778":8779,"8779":8780,"8780":8781,"8781":8782,"8782":8783,"8783":8784,"8784":8785,"8785":8786,"8786":8787,"8787":8788,"8788":8789,"8789":8790,"8790":8791,"8791":8792,"8792":8793,"8793":8794,"8794":8795,"8795":8796,"8796":8797,"8797":8798,"8798":8799,"8799":8800,"8800":8801,"8801":8802,"8802":8803,"8803":8804,"8804":8805,"8805":8806,"8806":8807,"8807":8808,"8808":8809,"8809":8810,"8810":8811,"8811":8812,"8812":8813,"8813":8814,"8814":8815,"8815":8816,"8816":8817,"8817":8818,"8818":8819,"8819":8820,"8820":8821,"8821":8822,"8822":8823,"8823":8824,"8824":8825,"8825":8826,"8826":8827,"8827":8828,"8828":8829,"8829":8830,"8830":8831,"8831":8832,"8832":8833,"8833":8834,"8834":8835,"8835":8836,"8836":8837,"8837":8838,"8838":8839,"8839":8840,"8840":8841,"8841":8842,"8842":8843,"8843":8844,"8844":8845,"8845":8846,"8846":8847,"8847":8848,"8848":8849,"8849":8850,"8850":8851,"8851":8852,"8852":8853,"8853":8854,"8854":8855,"8855":8856,"8856":8857,"8857":8858,"8858":8859,"8859":8860,"8860":8861,"8861":8862,"8862":8863,"8863":8864,"8864":8865,"8865":8866,"8866":8867,"8867":8868,"8868":8869,"8869":8870,"8870":8871,"8871":8872,"8872":8873,"8873":8874,"8874":8875,"8875":8876,"8876":8877,"8877":8878,"8878":8879,"8879":8880,"8880":8881,"8881":8882,"8882":8883,"8883":8884,"8884":8885,"8885":8886,"8886":8887,"8887":8888,"8888":8889,"8889":8890,"8890":8891,"8891":8892,"8892":8893,"8893":8894,"8894":8895,"8895":8896,"8896":8897,"8897":8898,"8898":8899,"8899":8900,"8900":8901,"8901":8902,"8902":8903,"8903":8904,"8904":8905,"8905":8906,"8906":8907,"8907":8908,"8908":8909,"8909":8910,"8910":8911,"8911":8912,"8912":8913,"8913":8914,"8914":8915,"8915":8916,"8916":8917,"8917":8918,"8918":8919,"8919":8920,"8920":8921,"8921":8922,"8922":8923,"8923":8924,"8924":8925,"8925":8926,"8926":8927,"8927":8928,"8928":8929,"8929":8930,"8930":8931,"8931":8932,"8932":8933,"8933":8934,"8934":8935,"8935":8936,"8936":8937,"8937":8938,"8938":8939,"8939":8940,"8940":8941,"8941":8942,"8942":8943,"8943":8944,"8944":8945,"8945":8946,"8946":8947,"8947":8948,"8948":8949,"8949":8950,"8950":8951,"8951":8952,"8952":8953,"8953":8954,"8954":8955,"8955":8956,"8956":8957,"8957":8958,"8958":8959,"8959":8960,"8960":8961,"8961":8962,"8962":8963,"8963":8964,"8964":8965,"8965":8966,"8966":8967,"8967":8968,"8968":8969,"8969":8970,"8970":8971,"8971":8972,"8972":8973,"8973":8974,"8974":8975,"8975":8976,"8976":8977,"8977":8978,"8978":8979,"8979":8980,"8980":8981,"8981":8982,"8982":8983,"8983":8984,"8984":8985,"8985":8986,"8986":8987,"8987":8988,"8988":8989,"8989":8990,"8990":8991,"8991":8992,"8992":8993,"8993":8994,"8994":8995,"8995":8996,"8996":8997,"8997":8998,"8998":8999,"8999":9000,"9000":9001,"9001":9002,"9002":9003,"9003":9004,"9004":9005,"9005":9006,"9006":9007,"9007":9008,"9008":9009,"9009":9010,"9010":9011,"9011":9012,"9012":9013,"9013":9014,"9014":9015,"9015":9016,"9016":9017,"9017":9018,"9018":9019,"9019":9020,"9020":9021,"9021":9022,"9022":9023,"9023":9024,"9024":9025,"9025":9026,"9026":9027,"9027":9028,"9028":9029,"9029":9030,"9030":9031,"9031":9032,"9032":9033,"9033":9034,"9034":9035,"9035":9036,"9036":9037,"9037":9038,"9038":9039,"9039":9040,"9040":9041,"9041":9042,"9042":9043,"9043":9044,"9044":9045,"9045":9046,"9046":9047,"9047":9048,"9048":9049,"9049":9050,"9050":9051,"9051":9052,"9052":9053,"9053":9054,"9054":9055,"9055":9056,"9056":9057,"9057":9058,"9058":9059,"9059":9060,"9060":9061,"9061":9062,"9062":9063,"9063":9064,"9064":9065,"9065":9066,"9066":9067,"9067":9068,"9068":9069,"9069":9070,"9070":9071,"9071":9072,"9072":9073,"9073":9074,"9074":9075,"9075":9076,"9076":9077,"9077":9078,"9078":9079,"9079":9080,"9080":9081,"9081":9082,"9082":9083,"9083":9084,"9084":9085,"9085":9086,"9086":9087,"9087":9088,"9088":9089,"9089":9090,"9090":9091,"9091":9092,"9092":9093,"9093":9094,"9094":9095,"9095":9096,"9096":9097,"9097":9098,"9098":9099,"9099":9100,"9100":9101,"9101":9102,"9102":9103,"9103":9104,"9104":9105,"9105":9106,"9106":9107,"9107":9108,"9108":9109,"9109":9110,"9110":9111,"9111":9112,"9112":9113,"9113":9114,"9114":9115,"9115":9116,"9116":9117,"9117":9118,"9118":9119,"9119":9120,"9120":9121,"9121":9122,"9122":9123,"9123":9124,"9124":9125,"9125":9126,"9126":9127,"9127":9128,"9128":9129,"9129":9130,"9130":9131,"9131":9132,"9132":9133,"9133":9134,"9134":9135,"9135":9136,"9136":9137,"9137":9138,"9138":9139,"9139":9140,"9140":9141,"9141":9142,"9142":9143,"9143":9144,"9144":9145,"9145":9146,"9146":9147,"9147":9148,"9148":9149,"9149":9150,"9150":9151,"9151":9152,"9152":9153,"9153":9154,"9154":9155,"9155":9156,"9156":9157,"9157":9158,"9158":9159,"9159":9160,"9160":9161,"9161":9162,"9162":9163,"9163":9164,"9164":9165,"9165":9166,"9166":9167,"9167":9168,"9168":9169,"9169":9170,"9170":9171,"9171":9172,"9172":9173,"9173":9174,"9174":9175,"9175":9176,"9176":9177,"9177":9178,"9178":9179,"9179":9180,"9180":9181,"9181":9182,"9182":9183,"9183":9184,"9184":9185,"9185":9186,"9186":9187,"9187":9188,"9188":9189,"9189":9190,"9190":9191,"9191":9192,"9192":9193,"9193":9194,"9194":9195,"9195":9196,"9196":9197,"9197":9198,"9198":9199,"9199":9200,"9200":9201,"9201":9202,"9202":9203,"9203":9204,"9204":9205,"9205":9206,"9206":9207,"9207":9208,"9208":9209,"9209":9210,"9210":9211,"9211":9212,"9212":9213,"9213":9214,"9214":9215,"9215":9216,"9216":9217,"9217":9218,"9218":9219,"9219":9220,"9220":9221,"9221":9222,"9222":9223,"9223":9224,"9224":9225,"9225":9226,"9226":9227,"9227":9228,"9228":9229,"9229":9230,"9230":9231,"9231":9232,"9232":9233,"9233":9234,"9234":9235,"9235":9236,"9236":9237,"9237":9238,"9238":9239,"9239":9240,"9240":9241,"9241":9242,"9242":9243,"9243":9244,"9244":9245,"9245":9246,"9246":9247,"9247":9248,"9248":9249,"9249":9250,"9250":9251,"9251":9252,"9252":9253,"9253":9254,"9254":9255,"9255":9256,"9256":9257,"9257":9258,"9258":9259,"9259":9260,"9260":9261,"9261":9262,"9262":9263,"9263":9264,"9264":9265,"9265":9266,"9266":9267,"9267":9268,"9268":9269,"9269":9270,"9270":9271,"9271":9272,"9272":9273,"9273":9274,"9274":9275,"9275":9276,"9276":9277,"9277":9278,"9278":9279,"9279":9280,"9280":9281,"9281":9282,"9282":9283,"9283":9284,"9284":9285,"9285":9286,"9286":9287,"9287":9288,"9288":9289,"9289":9290,"9290":9291,"9291":9292,"9292":9293,"9293":9294,"9294":9295,"9295":9296,"9296":9297,"9297":9298,"9298":9299,"9299":9300,"9300":9301,"9301":9302,"9302":9303,"9303":9304,"9304":9305,"9305":9306,"9306":9307,"9307":9308,"9308":9309,"9309":9310,"9310":9311,"9311":9312,"9312":9313,"9313":9314,"9314":9315,"9315":9316,"9316":9317,"9317":9318,"9318":9319,"9319":9320,"9320":9321,"9321":9322,"9322":9323,"9323":9324,"9324":9325,"9325":9326,"9326":9327,"9327":9328,"9328":9329,"9329":9330,"9330":9331,"9331":9332,"9332":9333,"9333":9334,"9334":9335,"9335":9336,"9336":9337,"9337":9338,"9338":9339,"9339":9340,"9340":9341,"9341":9342,"9342":9343,"9343":9344,"9344":9345,"9345":9346,"9346":9347,"9347":9348,"9348":9349,"9349":9350,"9350":9351,"9351":9352,"9352":9353,"9353":9354,"9354":9355,"9355":9356,"9356":9357,"9357":9358,"9358":9359,"9359":9360,"9360":9361,"9361":9362,"9362":9363,"9363":9364,"9364":9365,"9365":9366,"9366":9367,"9367":9368,"9368":9369,"9369":9370,"9370":9371,"9371":9372,"9372":9373,"9373":9374,"9374":9375,"9375":9376,"9376":9377,"9377":9378,"9378":9379,"9379":9380,"9380":9381,"9381":9382,"9382":9383,"9383":9384,"9384":9385,"9385":9386,"9386":9387,"9387":9388,"9388":9389,"9389":9390,"9390":9391,"9391":9392,"9392":9393,"9393":9394,"9394":9395,"9395":9396,"9396":9397,"9397":9398,"9398":9399,"9399":9400,"9400":9401,"9401":9402,"9402":9403,"9403":9404,"9404":9405,"9405":9406,"9406":9407,"9407":9408,"9408":9409,"9409":9410,"9410":9411,"9411":9412,"9412":9413,"9413":9414,"9414":9415,"9415":9416,"9416":9417,"9417":9418,"9418":9419,"9419":9420,"9420":9421,"9421":9422,"9422":9423,"9423":9424,"9424":9425,"9425":9426,"9426":9427,"9427":9428,"9428":9429,"9429":9430,"9430":9431,"9431":9432,"9432":9433,"9433":9434,"9434":9435,"9435":9436,"9436":9437,"9437":9438,"9438":9439,"9439":9440,"9440":9441,"9441":9442,"9442":9443,"9443":9444,"9444":9445,"9445":9446,"9446":9447,"9447":9448,"9448":9449,"9449":9450,"9450":9451,"9451":9452,"9452":9453,"9453":9454,"9454":9455,"9455":9456,"9456":9457,"9457":9458,"9458":9459,"9459":9460,"9460":9461,"9461":9462,"9462":9463,"9463":9464,"9464":9465,"9465":9466,"9466":9467,"9467":9468,"9468":9469,"9469":9470,"9470":9471,"9471":9472,"9472":9473,"9473":9474,"9474":9475,"9475":9476,"9476":9477,"9477":9478,"9478":9479,"9479":9480,"9480":9481,"9481":9482,"9482":9483,"9483":9484,"9484":9485,"9485":9486,"9486":9487,"9487":9488,"9488":9489,"9489":9490,"9490":9491,"9491":9492,"9492":9493,"9493":9494,"9494":9495,"9495":9496,"9496":9497,"9497":9498,"9498":9499,"9499":9500,"9500":9501,"9501":9502,"9502":9503,"9503":9504,"9504":9505,"9505":9506,"9506":9507,"9507":9508,"9508":9509,"9509":9510,"9510":9511,"9511":9512,"9512":9513,"9513":9514,"9514":9515,"9515":9516,"9516":9517,"9517":9518,"9518":9519,"9519":9520,"9520":9521,"9521":9522,"9522":9523,"9523":9524,"9524":9525,"9525":9526,"9526":9527,"9527":9528,"9528":9529,"9529":9530,"9530":9531,"9531":9532,"9532":9533,"9533":9534,"9534":9535,"9535":9536,"9536":9537,"9537":9538,"9538":9539,"9539":9540,"9540":9541,"9541":9542,"9542":9543,"9543":9544,"9544":9545,"9545":9546,"9546":9547,"9547":9548,"9548":9549,"9549":9550,"9550":9551,"9551":9552,"9552":9553,"9553":9554,"9554":9555,"9555":9556,"9556":9557,"9557":9558,"9558":9559,"9559":9560,"9560":9561,"9561":9562,"9562":9563,"9563":9564,"9564":9565,"9565":9566,"9566":9567,"9567":9568,"9568":9569,"9569":9570,"9570":9571,"9571":9572,"9572":9573,"9573":9574,"9574":9575,"9575":9576,"9576":9577,"9577":9578,"9578":9579,"9579":9580,"9580":9581,"9581":9582,"9582":9583,"9583":9584,"9584":9585,"9585":9586,"9586":9587,"9587":9588,"9588":9589,"9589":9590,"9590":9591,"9591":9592,"9592":9593,"9593":9594,"9594":9595,"9595":9596,"9596":9597,"9597":9598,"9598":9599,"9599":9600,"9600":9601,"9601":9602,"9602":9603,"9603":9604,"9604":9605,"9605":9606,"9606":9607,"9607":9608,"9608":9609,"9609":9610,"9610":9611,"9611":9612,"9612":9613,"9613":9614,"9614":9615,"9615":9616,"9616":9617,"9617":9618,"9618":9619,"9619":9620,"9620":9621,"9621":9622,"9622":9623,"9623":9624,"9624":9625,"9625":9626,"9626":9627,"9627":9628,"9628":9629,"9629":9630,"9630":9631,"9631":9632,"9632":9633,"9633":9634,"9634":9635,"9635":9636,"9636":9637,"9637":9638,"9638":9639,"9639":9640,"9640":9641,"9641":9642,"9642":9643,"9643":9644,"9644":9645,"9645":9646,"9646":9647,"9647":9648,"9648":9649,"9649":9650,"9650":9651,"9651":9652,"9652":9653,"9653":9654,"9654":9655,"9655":9656,"9656":9657,"9657":9658,"9658":9659,"9659":9660,"9660":9661,"9661":9662,"9662":9663,"9663":9664,"9664":9665,"9665":9666,"9666":9667,"9667":9668,"9668":9669,"9669":9670,"9670":9671,"9671":9672,"9672":9673,"9673":9674,"9674":9675,"9675":9676,"9676":9677,"9677":9678,"9678":9679,"9679":9680,"9680":9681,"9681":9682,"9682":9683,"9683":9684,"9684":9685,"9685":9686,"9686":9687,"9687":9688,"9688":9689,"9689":9690,"9690":9691,"9691":9692,"9692":9693,"9693":9694,"9694":9695,"9695":9696,"9696":9697,"9697":9698,"9698":9699,"9699":9700,"9700":9701,"9701":9702,"9702":9703,"9703":9704,"9704":9705,"9705":9706,"9706":9707,"9707":9708,"9708":9709,"9709":9710,"9710":9711,"9711":9712,"9712":9713,"9713":9714,"9714":9715,"9715":9716,"9716":9717,"9717":9718,"9718":9719,"9719":9720,"9720":9721,"9721":9722,"9722":9723,"9723":9724,"9724":9725,"9725":9726,"9726":9727,"9727":9728,"9728":9729,"9729":9730,"9730":9731,"9731":9732,"9732":9733,"9733":9734,"9734":9735,"9735":9736,"9736":9737,"9737":9738,"9738":9739,"9739":9740,"9740":9741,"9741":9742,"9742":9743,"9743":9744,"9744":9745,"9745":9746,"9746":9747,"9747":9748,"9748":9749,"9749":9750,"9750":9751,"9751":9752,"9752":9753,"9753":9754,"9754":9755,"9755":9756,"9756":9757,"9757":9758,"9758":9759,"9759":9760,"9760":9761,"9761":9762,"9762":9763,"9763":9764,"9764":9765,"9765":9766,"9766":9767,"9767":9768,"9768":9769,"9769":9770,"9770":9771,"9771":9772,"9772":9773,"9773":9774,"9774":9775,"9775":9776,"9776":9777,"9777":9778,"9778":9779,"9779":9780,"9780":9781,"9781":9782,"9782":9783,"9783":9784,"9784":9785,"9785":9786,"9786":9787,"9787":9788,"9788":9789,"9789":9790,"9790":9791,"9791":9792,"9792":9793,"9793":9794,"9794":9795,"9795":9796,"9796":9797,"9797":9798,"9798":9799,"9799":9800,"9800":9801,"9801":9802,"9802":9803,"9803":9804,"9804":9805,"9805":9806,"9806":9807,"9807":9808,"9808":9809,"9809":9810,"9810":9811,"9811":9812,"9812":9813,"9813":9814,"9814":9815,"9815":9816,"9816":9817,"9817":9818,"9818":9819,"9819":9820,"9820":9821,"9821":9822,"9822":9823,"9823":9824,"9824":9825,"9825":9826,"9826":9827,"9827":9828,"9828":9829,"9829":9830,"9830":9831,"9831":9832,"9832":9833,"9833":9834,"9834":9835,"9835":9836,"9836":9837,"9837":9838,"9838":9839,"9839":9840,"9840":9841,"9841":9842,"9842":9843,"9843":9844,"9844":9845,"9845":9846,"9846":9847,"9847":9848,"9848":9849,"9849":9850,"9850":9851,"9851":9852,"9852":9853,"9853":9854,"9854":9855,"9855":9856,"9856":9857,"9857":9858,"9858":9859,"9859":9860,"9860":9861,"9861":9862,"9862":9863,"9863":9864,"9864":9865,"9865":9866,"9866":9867,"9867":9868,"9868":9869,"9869":9870,"9870":9871,"9871":9872,"9872":9873,"9873":9874,"9874":9875,"9875":9876,"9876":9877,"9877":9878,"9878":9879,"9879":9880,"9880":9881,"9881":9882,"9882":9883,"9883":9884,"9884":9885,"9885":9886,"9886":9887,"9887":9888,"9888":9889,"9889":9890,"9890":9891,"9891":9892,"9892":9893,"9893":9894,"9894":9895,"9895":9896,"9896":9897,"9897":9898,"9898":9899,"9899":9900,"9900":9901,"9901":9902,"9902":9903,"9903":9904,"9904":9905,"9905":9906,"9906":9907,"9907":9908,"9908":9909,"9909":9910,"9910":9911,"9911":9912,"9912":9913,"9913":9914,"9914":9915,"9915":9916,"9916":9917,"9917":9918,"9918":9919,"9919":9920,"9920":9921,"9921":9922,"9922":9923,"9923":9924,"9924":9925,"9925":9926,"9926":9927,"9927":9928,"9928":9929,"9929":9930,"9930":9931,"9931":9932,"9932":9933,"9933":9934,"9934":9935,"9935":9936,"9936":9937,"9937":9938,"9938":9939,"9939":9940,"9940":9941,"9941":9942,"9942":9943,"9943":9944,"9944":9945,"9945":9946,"9946":9947,"9947":9948,"9948":9949,"9949":9950,"9950":9951,"9951":9952,"9952":9953,"9953":9954,"9954":9955,"9955":9956,"9956":9957,"9957":9958,"9958":9959,"9959":9960,"9960":9961,"9961":9962,"9962":9963,"9963":9964,"9964":9965,"9965":9966,"9966":9967,"9967":9968,"9968":9969,"9969":9970,"9970":9971,"9971":9972,"9972":9973,"9973":9974,"9974":9975,"9975":9976,"9976":9977,"9977":9978,"9978":9979,"9979":9980,"9980":9981,"9981":9982,"9982":9983,"9983":9984,"9984":9985,"9985":9986,"9986":9987,"9987":9988,"9988":9989,"9989":9990,"9990":9991,"9991":9992,"9992":9993,"9993":9994,"9994":9995,"9995":9996,"9996":9997,"9997":9998,"9998":9999,"9999":10000,"10000":10001,"10001":10002,"10002":10003,"10003":10004,"10004":10005,"10005":10006,"10006":10007,"10007":10008,"10008":10009,"10009":10010,"10010":10011,"10011":10012,"10012":10013,"10013":10014,"10014":10015,"10015":10016,"10016":10017,"10017":10018,"10018":10019,"10019":10020,"10020":10021,"10021":10022,"10022":10023,"10023":10024,"10024":10025,"10025":10026,"10026":10027,"10027":10028,"10028":10029,"10029":10030,"10030":10031,"10031":10032,"10032":10033,"10033":10034,"10034":10035,"10035":10036,"10036":10037,"10037":10038,"10038":10039,"10039":10040,"10040":10041,"10041":10042,"10042":10043,"10043":10044,"10044":10045,"10045":10046,"10046":10047,"10047":10048,"10048":10049,"10049":10050,"10050":10051,"10051":10052,"10052":10053,"10053":10054,"10054":10055,"10055":10056,"10056":10057,"10057":10058,"10058":10059,"10059":10060,"10060":10061,"10061":10062,"10062":10063,"10063":10064,"10064":10065,"10065":10066,"10066":10067,"10067":10068,"10068":10069,"10069":10070,"10070":10071,"10071":10072,"10072":10073,"10073":10074,"10074":10075,"10075":10076,"10076":10077,"10077":10078,"10078":10079,"10079":10080,"10080":10081,"10081":10082,"10082":10083,"10083":10084,"10084":10085,"10085":10086,"10086":10087,"10087":10088,"10088":10089,"10089":10090,"10090":10091,"10091":10092,"10092":10093,"10093":10094,"10094":10095,"10095":10096,"10096":10097,"10097":10098,"10098":10099,"10099":10100,"10100":10101,"10101":10102,"10102":10103,"10103":10104,"10104":10105,"10105":10106,"10106":10107,"10107":10108,"10108":10109,"10109":10110,"10110":10111,"10111":10112,"10112":10113,"10113":10114,"10114":10115,"10115":10116,"10116":10117,"10117":10118,"10118":10119,"10119":10120,"10120":10121,"10121":10122,"10122":10123,"10123":10124,"10124":10125,"10125":10126,"10126":10127,"10127":10128,"10128":10129,"10129":10130,"10130":10131,"10131":10132,"10132":10133,"10133":10134,"10134":10135,"10135":10136,"10136":10137,"10137":10138,"10138":10139,"10139":10140,"10140":10141,"10141":10142,"10142":10143,"10143":10144,"10144":10145,"10145":10146,"10146":10147,"10147":10148,"10148":10149,"10149":10150,"10150":10151,"10151":10152,"10152":10153,"10153":10154,"10154":10155,"10155":10156,"10156":10157,"10157":10158,"10158":10159,"10159":10160,"10160":10161,"10161":10162,"10162":10163,"10163":10164,"10164":10165,"10165":10166,"10166":10167,"10167":10168,"10168":10169,"10169":10170,"10170":10171,"10171":10172,"10172":10173,"10173":10174,"10174":10175,"10175":10176,"10176":10177,"10177":10178,"10178":10179,"10179":10180,"10180":10181,"10181":10182,"10182":10183,"10183":10184,"10184":10185,"10185":10186,"10186":10187,"10187":10188,"10188":10189,"10189":10190,"10190":10191,"10191":10192,"10192":10193,"10193":10194,"10194":10195,"10195":10196,"10196":10197,"10197":10198,"10198":10199,"10199":10200,"10200":10201,"10201":10202,"10202":10203,"10203":10204,"10204":10205,"10205":10206,"10206":10207,"10207":10208,"10208":10209,"10209":10210,"10210":10211,"10211":10212,"10212":10213,"10213":10214,"10214":10215,"10215":10216,"10216":10217,"10217":10218,"10218":10219,"10219":10220,"10220":10221,"10221":10222,"10222":10223,"10223":10224,"10224":10225,"10225":10226,"10226":10227,"10227":10228,"10228":10229,"10229":10230,"10230":10231,"10231":10232,"10232":10233,"10233":10234,"10234":10235,"10235":10236,"10236":10237,"10237":10238,"10238":10239,"10239":10240,"10240":10241,"10241":10242,"10242":10243,"10243":10244,"10244":10245,"10245":10246,"10246":10247,"10247":10248,"10248":10249,"10249":10250,"10250":10251,"10251":10252,"10252":10253,"10253":10254,"10254":10255,"10255":10256,"10256":10257,"10257":10258,"10258":10259,"10259":10260,"10260":10261,"10261":10262,"10262":10263,"10263":10264,"10264":10265,"10265":10266,"10266":10267,"10267":10268,"10268":10269,"10269":10270,"10270":10271,"10271":10272,"10272":10273,"10273":10274,"10274":10275,"10275":10276,"10276":10277,"10277":10278,"10278":10279,"10279":10280,"10280":10281,"10281":10282,"10282":10283,"10283":10284,"10284":10285,"10285":10286,"10286":10287,"10287":10288,"10288":10289,"10289":10290,"10290":10291,"10291":10292,"10292":10293,"10293":10294,"10294":10295,"10295":10296,"10296":10297,"10297":10298,"10298":10299,"10299":10300,"10300":10301,"10301":10302,"10302":10303,"10303":10304,"10304":10305,"10305":10306,"10306":10307,"10307":10308,"10308":10309,"10309":10310,"10310":10311,"10311":10312,"10312":10313,"10313":10314,"10314":10315,"10315":10316,"10316":10317,"10317":10318,"10318":10319,"10319":10320,"10320":10321,"10321":10322,"10322":10323,"10323":10324,"10324":10325,"10325":10326,"10326":10327,"10327":10328,"10328":10329,"10329":10330,"10330":10331,"10331":10332,"10332":10333,"10333":10334,"10334":10335,"10335":10336,"10336":10337,"10337":10338,"10338":10339,"10339":10340,"10340":10341,"10341":10342,"10342":10343,"10343":10344,"10344":10345,"10345":10346,"10346":10347,"10347":10348,"10348":10349,"10349":10350,"10350":10351,"10351":10352,"10352":10353,"10353":10354,"10354":10355,"10355":10356,"10356":10357,"10357":10358,"10358":10359,"10359":10360,"10360":10361,"10361":10362,"10362":10363,"10363":10364,"10364":10365,"10365":10366,"10366":10367,"10367":10368,"10368":10369,"10369":10370,"10370":10371,"10371":10372,"10372":10373,"10373":10374,"10374":10375,"10375":10376,"10376":10377,"10377":10378,"10378":10379,"10379":10380,"10380":10381,"10381":10382,"10382":10383,"10383":10384,"10384":10385,"10385":10386,"10386":10387,"10387":10388,"10388":10389,"10389":10390,"10390":10391,"10391":10392,"10392":10393,"10393":10394,"10394":10395,"10395":10396,"10396":10397,"10397":10398,"10398":10399,"10399":10400,"10400":10401,"10401":10402,"10402":10403,"10403":10404,"10404":10405,"10405":10406,"10406":10407,"10407":10408,"10408":10409,"10409":10410,"10410":10411,"10411":10412,"10412":10413,"10413":10414,"10414":10415,"10415":10416,"10416":10417,"10417":10418,"10418":10419,"10419":10420,"10420":10421,"10421":10422,"10422":10423,"10423":10424,"10424":10425,"10425":10426,"10426":10427,"10427":10428,"10428":10429,"10429":10430,"10430":10431,"10431":10432,"10432":10433,"10433":10434,"10434":10435,"10435":10436,"10436":10437,"10437":10438,"10438":10439,"10439":10440,"10440":10441,"10441":10442,"10442":10443,"10443":10444,"10444":10445,"10445":10446,"10446":10447,"10447":10448,"10448":10449,"10449":10450,"10450":10451,"10451":10452,"10452":10453,"10453":10454,"10454":10455,"10455":10456,"10456":10457,"10457":10458,"10458":10459,"10459":10460,"10460":10461,"10461":10462,"10462":10463,"10463":10464,"10464":10465,"10465":10466,"10466":10467,"10467":10468,"10468":10469,"10469":10470,"10470":10471,"10471":10472,"10472":10473,"10473":10474,"10474":10475,"10475":10476,"10476":10477,"10477":10478,"10478":10479,"10479":10480,"10480":10481,"10481":10482,"10482":10483,"10483":10484,"10484":10485,"10485":10486,"10486":10487,"10487":10488,"10488":10489,"10489":10490,"10490":10491,"10491":10492,"10492":10493,"10493":10494,"10494":10495,"10495":10496,"10496":10497,"10497":10498,"10498":10499,"10499":10500,"10500":10501,"10501":10502,"10502":10503,"10503":10504,"10504":10505,"10505":10506,"10506":10507,"10507":10508,"10508":10509,"10509":10510,"10510":10511,"10511":10512,"10512":10513,"10513":10514,"10514":10515,"10515":10516,"10516":10517,"10517":10518,"10518":10519,"10519":10520,"10520":10521,"10521":10522,"10522":10523,"10523":10524,"10524":10525,"10525":10526,"10526":10527,"10527":10528,"10528":10529,"10529":10530,"10530":10531,"10531":10532,"10532":10533,"10533":10534,"10534":10535,"10535":10536,"10536":10537,"10537":10538,"10538":10539,"10539":10540,"10540":10541,"10541":10542,"10542":10543,"10543":10544,"10544":10545,"10545":10546,"10546":10547,"10547":10548,"10548":10549,"10549":10550,"10550":10551,"10551":10552,"10552":10553,"10553":10554,"10554":10555,"10555":10556,"10556":10557,"10557":10558,"10558":10559,"10559":10560,"10560":10561,"10561":10562,"10562":10563,"10563":10564,"10564":10565,"10565":10566,"10566":10567,"10567":10568,"10568":10569,"10569":10570,"10570":10571,"10571":10572,"10572":10573,"10573":10574,"10574":10575,"10575":10576,"10576":10577,"10577":10578,"10578":10579,"10579":10580,"10580":10581,"10581":10582,"10582":10583,"10583":10584,"10584":10585,"10585":10586,"10586":10587,"10587":10588,"10588":10589,"10589":10590,"10590":10591,"10591":10592,"10592":10593,"10593":10594,"10594":10595,"10595":10596,"10596":10597,"10597":10598,"10598":10599,"10599":10600,"10600":10601,"10601":10602,"10602":10603,"10603":10604,"10604":10605,"10605":10606,"10606":10607,"10607":10608,"10608":10609,"10609":10610,"10610":10611,"10611":10612,"10612":10613,"10613":10614,"10614":10615,"10615":10616,"10616":10617,"10617":10618,"10618":10619,"10619":10620,"10620":10621,"10621":10622,"10622":10623,"10623":10624,"10624":10625,"10625":10626,"10626":10627,"10627":10628,"10628":10629,"10629":10630,"10630":10631,"10631":10632,"10632":10633,"10633":10634,"10634":10635,"10635":10636,"10636":10637,"10637":10638,"10638":10639,"10639":10640,"10640":10641,"10641":10642,"10642":10643,"10643":10644,"10644":10645,"10645":10646,"10646":10647,"10647":10648,"10648":10649,"10649":10650,"10650":10651,"10651":10652,"10652":10653,"10653":10654,"10654":10655,"10655":10656,"10656":10657,"10657":10658,"10658":10659,"10659":10660,"10660":10661,"10661":10662,"10662":10663,"10663":10664,"10664":10665,"10665":10666,"10666":10667,"10667":10668,"10668":10669,"10669":10670,"10670":10671,"10671":10672,"10672":10673,"10673":10674,"10674":10675,"10675":10676,"10676":10677,"10677":10678,"10678":10679,"10679":10680,"10680":10681,"10681":10682,"10682":10683,"10683":10684,"10684":10685,"10685":10686,"10686":10687,"10687":10688,"10688":10689,"10689":10690,"10690":10691,"10691":10692,"10692":10693,"10693":10694,"10694":10695,"10695":10696,"10696":10697,"10697":10698,"10698":10699,"10699":10700,"10700":10701,"10701":10702,"10702":10703,"10703":10704,"10704":10705,"10705":10706,"10706":10707,"10707":10708,"10708":10709,"10709":10710,"10710":10711,"10711":10712,"10712":10713,"10713":10714,"10714":10715,"10715":10716,"10716":10717,"10717":10718,"10718":10719,"10719":10720,"10720":10721,"10721":10722,"10722":10723,"10723":10724,"10724":10725,"10725":10726,"10726":10727,"10727":10728,"10728":10729,"10729":10730,"10730":10731,"10731":10732,"10732":10733,"10733":10734,"10734":10735,"10735":10736,"10736":10737,"10737":10738,"10738":10739,"10739":10740,"10740":10741,"10741":10742,"10742":10743,"10743":10744,"10744":10745,"10745":10746,"10746":10747,"10747":10748,"10748":10749,"10749":10750,"10750":10751,"10751":10752,"10752":10753,"10753":10754,"10754":10755,"10755":10756,"10756":10757,"10757":10758,"10758":10759,"10759":10760,"10760":10761,"10761":10762,"10762":10763,"10763":10764,"10764":10765,"10765":10766,"10766":10767,"10767":10768,"10768":10769,"10769":10770,"10770":10771,"10771":10772,"10772":10773,"10773":10774,"10774":10775,"10775":10776,"10776":10777,"10777":10778,"10778":10779,"10779":10780,"10780":10781,"10781":10782,"10782":10783,"10783":10784,"10784":10785,"10785":10786,"10786":10787,"10787":10788,"10788":10789,"10789":10790,"10790":10791,"10791":10792,"10792":10793,"10793":10794,"10794":10795,"10795":10796,"10796":10797,"10797":10798,"10798":10799,"10799":10800,"10800":10801,"10801":10802,"10802":10803,"10803":10804,"10804":10805,"10805":10806,"10806":10807,"10807":10808,"10808":10809,"10809":10810,"10810":10811,"10811":10812,"10812":10813,"10813":10814,"10814":10815,"10815":10816,"10816":10817,"10817":10818,"10818":10819,"10819":10820,"10820":10821,"10821":10822,"10822":10823,"10823":10824,"10824":10825,"10825":10826,"10826":10827,"10827":10828,"10828":10829,"10829":10830,"10830":10831,"10831":10832,"10832":10833,"10833":10834,"10834":10835,"10835":10836,"10836":10837,"10837":10838,"10838":10839,"10839":10840,"10840":10841,"10841":10842,"10842":10843,"10843":10844,"10844":10845,"10845":10846,"10846":10847,"10847":10848,"10848":10849,"10849":10850,"10850":10851,"10851":10852,"10852":10853,"10853":10854,"10854":10855,"10855":10856,"10856":10857,"10857":10858,"10858":10859,"10859":10860,"10860":10861,"10861":10862,"10862":10863,"10863":10864,"10864":10865,"10865":10866,"10866":10867,"10867":10868,"10868":10869,"10869":10870,"10870":10871,"10871":10872,"10872":10873,"10873":10874,"10874":10875,"10875":10876,"10876":10877,"10877":10878,"10878":10879,"10879":10880,"10880":10881,"10881":10882,"10882":10883,"10883":10884,"10884":10885,"10885":10886,"10886":10887,"10887":10888,"10888":10889,"10889":10890,"10890":10891,"10891":10892,"10892":10893,"10893":10894,"10894":10895,"10895":10896,"10896":10897,"10897":10898,"10898":10899,"10899":10900,"10900":10901,"10901":10902,"10902":10903,"10903":10904,"10904":10905,"10905":10906,"10906":10907,"10907":10908,"10908":10909,"10909":10910,"10910":10911,"10911":10912,"10912":10913,"10913":10914,"10914":10915,"10915":10916,"10916":10917,"10917":10918,"10918":10919,"10919":10920,"10920":10921,"10921":10922,"10922":10923,"10923":10924,"10924":10925,"10925":10926,"10926":10927,"10927":10928,"10928":10929,"10929":10930,"10930":10931,"10931":10932,"10932":10933,"10933":10934,"10934":10935,"10935":10936,"10936":10937,"10937":10938,"10938":10939,"10939":10940,"10940":10941,"10941":10942,"10942":10943,"10943":10944,"10944":10945,"10945":10946,"10946":10947,"10947":10948,"10948":10949,"10949":10950,"10950":10951,"10951":10952,"10952":10953,"10953":10954,"10954":10955,"10955":10956,"10956":10957,"10957":10958,"10958":10959,"10959":10960,"10960":10961,"10961":10962,"10962":10963,"10963":10964,"10964":10965,"10965":10966,"10966":10967,"10967":10968,"10968":10969,"10969":10970,"10970":10971,"10971":10972,"10972":10973,"10973":10974,"10974":10975,"10975":10976,"10976":10977,"10977":10978,"10978":10979,"10979":10980,"10980":10981,"10981":10982,"10982":10983,"10983":10984,"10984":10985,"10985":10986,"10986":10987,"10987":10988,"10988":10989,"10989":10990,"10990":10991,"10991":10992,"10992":10993,"10993":10994,"10994":10995,"10995":10996,"10996":10997,"10997":10998,"10998":10999,"10999":11000,"11000":11001,"11001":11002,"11002":11003,"11003":11004,"11004":11005,"11005":11006,"11006":11007,"11007":11008,"11008":11009,"11009":11010,"11010":11011,"11011":11012,"11012":11013,"11013":11014,"11014":11015,"11015":11016,"11016":11017,"11017":11018,"11018":11019,"11019":11020,"11020":11021,"11021":11022,"11022":11023,"11023":11024,"11024":11025,"11025":11026,"11026":11027,"11027":11028,"11028":11029,"11029":11030,"11030":11031,"11031":11032,"11032":11033,"11033":11034,"11034":11035,"11035":11036,"11036":11037,"11037":11038,"11038":11039,"11039":11040,"11040":11041,"11041":11042,"11042":11043,"11043":11044,"11044":11045,"11045":11046,"11046":11047,"11047":11048,"11048":11049,"11049":11050,"11050":11051,"11051":11052,"11052":11053,"11053":11054,"11054":11055,"11055":11056,"11056":11057,"11057":11058,"11058":11059,"11059":11060,"11060":11061,"11061":11062,"11062":11063,"11063":11064,"11064":11065,"11065":11066,"11066":11067,"11067":11068,"11068":11069,"11069":11070,"11070":11071,"11071":11072,"11072":11073,"11073":11074,"11074":11075,"11075":11076,"11076":11077,"11077":11078,"11078":11079,"11079":11080,"11080":11081,"11081":11082,"11082":11083,"11083":11084,"11084":11085,"11085":11086,"11086":11087,"11087":11088,"11088":11089,"11089":11090,"11090":11091,"11091":11092,"11092":11093,"11093":11094,"11094":11095,"11095":11096,"11096":11097,"11097":11098,"11098":11099,"11099":11100,"11100":11101,"11101":11102,"11102":11103,"11103":11104,"11104":11105,"11105":11106,"11106":11107,"11107":11108,"11108":11109,"11109":11110,"11110":11111,"11111":11112,"11112":11113,"11113":11114,"11114":11115,"11115":11116,"11116":11117,"11117":11118,"11118":11119,"11119":11120,"11120":11121,"11121":11122,"11122":11123,"11123":11124,"11124":11125,"11125":11126,"11126":11127,"11127":11128,"11128":11129,"11129":11130,"11130":11131,"11131":11132,"11132":11133,"11133":11134,"11134":11135,"11135":11136,"11136":11137,"11137":11138,"11138":11139,"11139":11140,"11140":11141,"11141":11142,"11142":11143,"11143":11144,"11144":11145,"11145":11146,"11146":11147,"11147":11148,"11148":11149,"11149":11150,"11150":11151,"11151":11152,"11152":11153,"11153":11154,"11154":11155,"11155":11156,"11156":11157,"11157":11158,"11158":11159,"11159":11160,"11160":11161,"11161":11162,"11162":11163,"11163":11164,"11164":11165,"11165":11166,"11166":11167,"11167":11168,"11168":11169,"11169":11170,"11170":11171,"11171":11172,"11172":11173,"11173":11174,"11174":11175,"11175":11176,"11176":11177,"11177":11178,"11178":11179,"11179":11180,"11180":11181,"11181":11182,"11182":11183,"11183":11184,"11184":11185,"11185":11186,"11186":11187,"11187":11188,"11188":11189,"11189":11190,"11190":11191,"11191":11192,"11192":11193,"11193":11194,"11194":11195,"11195":11196,"11196":11197,"11197":11198,"11198":11199,"11199":11200,"11200":11201,"11201":11202,"11202":11203,"11203":11204,"11204":11205,"11205":11206,"11206":11207,"11207":11208,"11208":11209,"11209":11210,"11210":11211,"11211":11212,"11212":11213,"11213":11214,"11214":11215,"11215":11216,"11216":11217,"11217":11218,"11218":11219,"11219":11220,"11220":11221,"11221":11222,"11222":11223,"11223":11224,"11224":11225,"11225":11226,"11226":11227,"11227":11228,"11228":11229,"11229":11230,"11230":11231,"11231":11232,"11232":11233,"11233":11234,"11234":11235,"11235":11236,"11236":11237,"11237":11238,"11238":11239,"11239":11240,"11240":11241,"11241":11242,"11242":11243,"11243":11244,"11244":11245,"11245":11246,"11246":11247,"11247":11248,"11248":11249,"11249":11250,"11250":11251,"11251":11252,"11252":11253,"11253":11254,"11254":11255,"11255":11256,"11256":11257,"11257":11258,"11258":11259,"11259":11260,"11260":11261,"11261":11262,"11262":11263,"11263":11264,"11264":11265,"11265":11266,"11266":11267,"11267":11268,"11268":11269,"11269":11270,"11270":11271,"11271":11272,"11272":11273,"11273":11274,"11274":11275,"11275":11276,"11276":11277,"11277":11278,"11278":11279,"11279":11280,"11280":11281,"11281":11282,"11282":11283,"11283":11284,"11284":11285,"11285":11286,"11286":11287,"11287":11288,"11288":11289,"11289":11290,"11290":11291,"11291":11292,"11292":11293,"11293":11294,"11294":11295,"11295":11296,"11296":11297,"11297":11298,"11298":11299,"11299":11300,"11300":11301,"11301":11302,"11302":11303,"11303":11304,"11304":11305,"11305":11306,"11306":11307,"11307":11308,"11308":11309,"11309":11310,"11310":11311,"11311":11312,"11312":11313,"11313":11314,"11314":11315,"11315":11316,"11316":11317,"11317":11318,"11318":11319,"11319":11320,"11320":11321,"11321":11322,"11322":11323,"11323":11324,"11324":11325,"11325":11326,"11326":11327,"11327":11328,"11328":11329,"11329":11330,"11330":11331,"11331":11332,"11332":11333,"11333":11334,"11334":11335,"11335":11336,"11336":11337,"11337":11338,"11338":11339,"11339":11340,"11340":11341,"11341":11342,"11342":11343,"11343":11344,"11344":11345,"11345":11346,"11346":11347,"11347":11348,"11348":11349,"11349":11350,"11350":11351,"11351":11352,"11352":11353,"11353":11354,"11354":11355,"11355":11356,"11356":11357,"11357":11358,"11358":11359,"11359":11360,"11360":11361,"11361":11362,"11362":11363,"11363":11364,"11364":11365,"11365":11366,"11366":11367,"11367":11368,"11368":11369,"11369":11370,"11370":11371,"11371":11372,"11372":11373,"11373":11374,"11374":11375,"11375":11376,"11376":11377,"11377":11378,"11378":11379,"11379":11380,"11380":11381,"11381":11382,"11382":11383,"11383":11384,"11384":11385,"11385":11386,"11386":11387,"11387":11388,"11388":11389,"11389":11390,"11390":11391,"11391":11392,"11392":11393,"11393":11394,"11394":11395,"11395":11396,"11396":11397,"11397":11398,"11398":11399,"11399":11400,"11400":11401,"11401":11402,"11402":11403,"11403":11404,"11404":11405,"11405":11406,"11406":11407,"11407":11408,"11408":11409,"11409":11410,"11410":11411,"11411":11412,"11412":11413,"11413":11414,"11414":11415,"11415":11416,"11416":11417,"11417":11418,"11418":11419,"11419":11420,"11420":11421,"11421":11422,"11422":11423,"11423":11424,"11424":11425,"11425":11426,"11426":11427,"11427":11428,"11428":11429,"11429":11430,"11430":11431,"11431":11432,"11432":11433,"11433":11434,"11434":11435,"11435":11436,"11436":11437,"11437":11438,"11438":11439,"11439":11440,"11440":11441,"11441":11442,"11442":11443,"11443":11444,"11444":11445,"11445":11446,"11446":11447,"11447":11448,"11448":11449,"11449":11450,"11450":11451,"11451":11452,"11452":11453,"11453":11454,"11454":11455,"11455":11456,"11456":11457,"11457":11458,"11458":11459,"11459":11460,"11460":11461,"11461":11462,"11462":11463,"11463":11464,"11464":11465,"11465":11466,"11466":11467,"11467":11468,"11468":11469,"11469":11470,"11470":11471,"11471":11472,"11472":11473,"11473":11474,"11474":11475,"11475":11476,"11476":11477,"11477":11478,"11478":11479,"11479":11480,"11480":11481,"11481":11482,"11482":11483,"11483":11484,"11484":11485,"11485":11486,"11486":11487,"11487":11488,"11488":11489,"11489":11490,"11490":11491,"11491":11492,"11492":11493,"11493":11494,"11494":11495,"11495":11496,"11496":11497,"11497":11498,"11498":11499,"11499":11500,"11500":11501,"11501":11502,"11502":11503,"11503":11504,"11504":11505,"11505":11506,"11506":11507,"11507":11508,"11508":11509,"11509":11510,"11510":11511,"11511":11512,"11512":11513,"11513":11514,"11514":11515,"11515":11516,"11516":11517,"11517":11518,"11518":11519,"11519":11520,"11520":11521,"11521":11522,"11522":11523,"11523":11524,"11524":11525,"11525":11526,"11526":11527,"11527":11528,"11528":11529,"11529":11530,"11530":11531,"11531":11532,"11532":11533,"11533":11534,"11534":11535,"11535":11536,"11536":11537,"11537":11538,"11538":11539,"11539":11540,"11540":11541,"11541":11542,"11542":11543,"11543":11544,"11544":11545,"11545":11546,"11546":11547,"11547":11548,"11548":11549,"11549":11550,"11550":11551,"11551":11552,"11552":11553,"11553":11554,"11554":11555,"11555":11556,"11556":11557,"11557":11558,"11558":11559,"11559":11560,"11560":11561,"11561":11562,"11562":11563,"11563":11564,"11564":11565,"11565":11566,"11566":11567,"11567":11568,"11568":11569,"11569":11570,"11570":11571,"11571":11572,"11572":11573,"11573":11574,"11574":11575,"11575":11576,"11576":11577,"11577":11578,"11578":11579,"11579":11580,"11580":11581,"11581":11582,"11582":11583,"11583":11584,"11584":11585,"11585":11586,"11586":11587,"11587":11588,"11588":11589,"11589":11590,"11590":11591,"11591":11592,"11592":11593,"11593":11594,"11594":11595,"11595":11596,"11596":11597,"11597":11598,"11598":11599,"11599":11600,"11600":11601,"11601":11602,"11602":11603,"11603":11604,"11604":11605,"11605":11606,"11606":11607,"11607":11608,"11608":11609,"11609":11610,"11610":11611,"11611":11612,"11612":11613,"11613":11614,"11614":11615,"11615":11616,"11616":11617,"11617":11618,"11618":11619,"11619":11620,"11620":11621,"11621":11622,"11622":11623,"11623":11624,"11624":11625,"11625":11626,"11626":11627,"11627":11628,"11628":11629,"11629":11630,"11630":11631,"11631":11632,"11632":11633,"11633":11634,"11634":11635,"11635":11636,"11636":11637,"11637":11638,"11638":11639,"11639":11640,"11640":11641,"11641":11642,"11642":11643,"11643":11644,"11644":11645,"11645":11646,"11646":11647,"11647":11648,"11648":11649,"11649":11650,"11650":11651,"11651":11652,"11652":11653,"11653":11654,"11654":11655,"11655":11656,"11656":11657,"11657":11658,"11658":11659,"11659":11660,"11660":11661,"11661":11662,"11662":11663,"11663":11664,"11664":11665,"11665":11666,"11666":11667,"11667":11668,"11668":11669,"11669":11670,"11670":11671,"11671":11672,"11672":11673,"11673":11674,"11674":11675,"11675":11676,"11676":11677,"11677":11678,"11678":11679,"11679":11680,"11680":11681,"11681":11682,"11682":11683,"11683":11684,"11684":11685,"11685":11686,"11686":11687,"11687":11688,"11688":11689,"11689":11690,"11690":11691,"11691":11692,"11692":11693,"11693":11694,"11694":11695,"11695":11696,"11696":11697,"11697":11698,"11698":11699,"11699":11700,"11700":11701,"11701":11702,"11702":11703,"11703":11704,"11704":11705,"11705":11706,"11706":11707,"11707":11708,"11708":11709,"11709":11710,"11710":11711,"11711":11712,"11712":11713,"11713":11714,"11714":11715,"11715":11716,"11716":11717,"11717":11718,"11718":11719,"11719":11720,"11720":11721,"11721":11722,"11722":11723,"11723":11724,"11724":11725,"11725":11726,"11726":11727,"11727":11728,"11728":11729,"11729":11730,"11730":11731,"11731":11732,"11732":11733,"11733":11734,"11734":11735,"11735":11736,"11736":11737,"11737":11738,"11738":11739,"11739":11740,"11740":11741,"11741":11742,"11742":11743,"11743":11744,"11744":11745,"11745":11746,"11746":11747,"11747":11748,"11748":11749,"11749":11750,"11750":11751,"11751":11752,"11752":11753,"11753":11754,"11754":11755,"11755":11756,"11756":11757,"11757":11758,"11758":11759,"11759":11760,"11760":11761,"11761":11762,"11762":11763,"11763":11764,"11764":11765,"11765":11766,"11766":11767,"11767":11768,"11768":11769,"11769":11770,"11770":11771,"11771":11772,"11772":11773,"11773":11774,"11774":11775,"11775":11776,"11776":11777,"11777":11778,"11778":11779,"11779":11780,"11780":11781,"11781":11782,"11782":11783,"11783":11784,"11784":11785,"11785":11786,"11786":11787,"11787":11788,"11788":11789,"11789":11790,"11790":11791,"11791":11792,"11792":11793,"11793":11794,"11794":11795,"11795":11796,"11796":11797,"11797":11798,"11798":11799,"11799":11800,"11800":11801,"11801":11802,"11802":11803,"11803":11804,"11804":11805,"11805":11806,"11806":11807,"11807":11808,"11808":11809,"11809":11810,"11810":11811,"11811":11812,"11812":11813,"11813":11814,"11814":11815,"11815":11816,"11816":11817,"11817":11818,"11818":11819,"11819":11820,"11820":11821,"11821":11822,"11822":11823,"11823":11824,"11824":11825,"11825":11826,"11826":11827,"11827":11828,"11828":11829,"11829":11830,"11830":11831,"11831":11832,"11832":11833,"11833":11834,"11834":11835,"11835":11836,"11836":11837,"11837":11838,"11838":11839,"11839":11840,"11840":11841,"11841":11842,"11842":11843,"11843":11844,"11844":11845,"11845":11846,"11846":11847,"11847":11848,"11848":11849,"11849":11850,"11850":11851,"11851":11852,"11852":11853,"11853":11854,"11854":11855,"11855":11856,"11856":11857,"11857":11858,"11858":11859,"11859":11860,"11860":11861,"11861":11862,"11862":11863,"11863":11864,"11864":11865,"11865":11866,"11866":11867,"11867":11868,"11868":11869,"11869":11870,"11870":11871,"11871":11872,"11872":11873,"11873":11874,"11874":11875,"11875":11876,"11876":11877,"11877":11878,"11878":11879,"11879":11880,"11880":11881,"11881":11882,"11882":11883,"11883":11884,"11884":11885,"11885":11886,"11886":11887,"11887":11888,"11888":11889,"11889":11890,"11890":11891,"11891":11892,"11892":11893,"11893":11894,"11894":11895,"11895":11896,"11896":11897,"11897":11898,"11898":11899,"11899":11900,"11900":11901,"11901":11902,"11902":11903,"11903":11904,"11904":11905,"11905":11906,"11906":11907,"11907":11908,"11908":11909,"11909":11910,"11910":11911,"11911":11912,"11912":11913,"11913":11914,"11914":11915,"11915":11916,"11916":11917,"11917":11918,"11918":11919,"11919":11920,"11920":11921,"11921":11922,"11922":11923,"11923":11924,"11924":11925,"11925":11926,"11926":11927,"11927":11928,"11928":11929,"11929":11930,"11930":11931,"11931":11932,"11932":11933,"11933":11934,"11934":11935,"11935":11936,"11936":11937,"11937":11938,"11938":11939,"11939":11940,"11940":11941,"11941":11942,"11942":11943,"11943":11944,"11944":11945,"11945":11946,"11946":11947,"11947":11948,"11948":11949,"11949":11950,"11950":11951,"11951":11952,"11952":11953,"11953":11954,"11954":11955,"11955":11956,"11956":11957,"11957":11958,"11958":11959,"11959":11960,"11960":11961,"11961":11962,"11962":11963,"11963":11964,"11964":11965,"11965":11966,"11966":11967,"11967":11968,"11968":11969,"11969":11970,"11970":11971,"11971":11972,"11972":11973,"11973":11974,"11974":11975,"11975":11976,"11976":11977,"11977":11978,"11978":11979,"11979":11980,"11980":11981,"11981":11982,"11982":11983,"11983":11984,"11984":11985,"11985":11986,"11986":11987,"11987":11988,"11988":11989,"11989":11990,"11990":11991,"11991":11992,"11992":11993,"11993":11994,"11994":11995,"11995":11996,"11996":11997,"11997":11998,"11998":11999,"11999":12000,"12000":12001,"12001":12002,"12002":12003,"12003":12004,"12004":12005,"12005":12006,"12006":12007,"12007":12008,"12008":12009,"12009":12010,"12010":12011,"12011":12012,"12012":12013,"12013":12014,"12014":12015,"12015":12016,"12016":12017,"12017":12018,"12018":12019,"12019":12020,"12020":12021,"12021":12022,"12022":12023,"12023":12024,"12024":12025,"12025":12026,"12026":12027,"12027":12028,"12028":12029,"12029":12030,"12030":12031,"12031":12032,"12032":12033,"12033":12034,"12034":12035,"12035":12036,"12036":12037,"12037":12038,"12038":12039,"12039":12040,"12040":12041,"12041":12042,"12042":12043,"12043":12044,"12044":12045,"12045":12046,"12046":12047,"12047":12048,"12048":12049,"12049":12050,"12050":12051,"12051":12052,"12052":12053,"12053":12054,"12054":12055,"12055":12056,"12056":12057,"12057":12058,"12058":12059,"12059":12060,"12060":12061,"12061":12062,"12062":12063,"12063":12064,"12064":12065,"12065":12066,"12066":12067,"12067":12068,"12068":12069,"12069":12070,"12070":12071,"12071":12072,"12072":12073,"12073":12074,"12074":12075,"12075":12076,"12076":12077,"12077":12078,"12078":12079,"12079":12080,"12080":12081,"12081":12082,"12082":12083,"12083":12084,"12084":12085,"12085":12086,"12086":12087,"12087":12088,"12088":12089,"12089":12090,"12090":12091,"12091":12092,"12092":12093,"12093":12094,"12094":12095,"12095":12096,"12096":12097,"12097":12098,"12098":12099,"12099":12100,"12100":12101,"12101":12102,"12102":12103,"12103":12104,"12104":12105,"12105":12106,"12106":12107,"12107":12108,"12108":12109,"12109":12110,"12110":12111,"12111":12112,"12112":12113,"12113":12114,"12114":12115,"12115":12116,"12116":12117,"12117":12118,"12118":12119,"12119":12120,"12120":12121,"12121":12122,"12122":12123,"12123":12124,"12124":12125,"12125":12126,"12126":12127,"12127":12128,"12128":12129,"12129":12130,"12130":12131,"12131":12132,"12132":12133,"12133":12134,"12134":12135,"12135":12136,"12136":12137,"12137":12138,"12138":12139,"12139":12140,"12140":12141,"12141":12142,"12142":12143,"12143":12144,"12144":12145,"12145":12146,"12146":12147,"12147":12148,"12148":12149,"12149":12150,"12150":12151,"12151":12152,"12152":12153,"12153":12154,"12154":12155,"12155":12156,"12156":12157,"12157":12158,"12158":12159,"12159":12160,"12160":12161,"12161":12162,"12162":12163,"12163":12164,"12164":12165,"12165":12166,"12166":12167,"12167":12168,"12168":12169,"12169":12170,"12170":12171,"12171":12172,"12172":12173,"12173":12174,"12174":12175,"12175":12176,"12176":12177,"12177":12178,"12178":12179,"12179":12180,"12180":12181,"12181":12182,"12182":12183,"12183":12184,"12184":12185,"12185":12186,"12186":12187,"12187":12188,"12188":12189,"12189":12190,"12190":12191,"12191":12192,"12192":12193,"12193":12194,"12194":12195,"12195":12196,"12196":12197,"12197":12198,"12198":12199,"12199":12200,"12200":12201,"12201":12202,"12202":12203,"12203":12204,"12204":12205,"12205":12206,"12206":12207,"12207":12208,"12208":12209,"12209":12210,"12210":12211,"12211":12212,"12212":12213,"12213":12214,"12214":12215,"12215":12216,"12216":12217,"12217":12218,"12218":12219,"12219":12220,"12220":12221,"12221":12222,"12222":12223,"12223":12224,"12224":12225,"12225":12226,"12226":12227,"12227":12228,"12228":12229,"12229":12230,"12230":12231,"12231":12232,"12232":12233,"12233":12234,"12234":12235,"12235":12236,"12236":12237,"12237":12238,"12238":12239,"12239":12240,"12240":12241,"12241":12242,"12242":12243,"12243":12244,"12244":12245,"12245":12246,"12246":12247,"12247":12248,"12248":12249,"12249":12250,"12250":12251,"12251":12252,"12252":12253,"12253":12254,"12254":12255,"12255":12256,"12256":12257,"12257":12258,"12258":12259,"12259":12260,"12260":12261,"12261":12262,"12262":12263,"12263":12264,"12264":12265,"12265":12266,"12266":12267,"12267":12268,"12268":12269,"12269":12270,"12270":12271,"12271":12272,"12272":12273,"12273":12274,"12274":12275,"12275":12276,"12276":12277,"12277":12278,"12278":12279,"12279":12280,"12280":12281,"12281":12282,"12282":12283,"12283":12284,"12284":12285,"12285":12286,"12286":12287,"12287":12288,"12288":12289,"12289":12290,"12290":12291,"12291":12292,"12292":12293,"12293":12294,"12294":12295,"12295":12296,"12296":12297,"12297":12298,"12298":12299,"12299":12300,"12300":12301,"12301":12302,"12302":12303,"12303":12304,"12304":12305,"12305":12306,"12306":12307,"12307":12308,"12308":12309,"12309":12310,"12310":12311,"12311":12312,"12312":12313,"12313":12314,"12314":12315,"12315":12316,"12316":12317,"12317":12318,"12318":12319,"12319":12320,"12320":12321,"12321":12322,"12322":12323,"12323":12324,"12324":12325,"12325":12326,"12326":12327,"12327":12328,"12328":12329,"12329":12330,"12330":12331,"12331":12332,"12332":12333,"12333":12334,"12334":12335,"12335":12336,"12336":12337,"12337":12338,"12338":12339,"12339":12340,"12340":12341,"12341":12342,"12342":12343,"12343":12344,"12344":12345,"12345":12346,"12346":12347,"12347":12348,"12348":12349,"12349":12350,"12350":12351,"12351":12352,"12352":12353,"12353":12354,"12354":12355,"12355":12356,"12356":12357,"12357":12358,"12358":12359,"12359":12360,"12360":12361,"12361":12362,"12362":12363,"12363":12364,"12364":12365,"12365":12366,"12366":12367,"12367":12368,"12368":12369,"12369":12370,"12370":12371,"12371":12372,"12372":12373,"12373":12374,"12374":12375,"12375":12376,"12376":12377,"12377":12378,"12378":12379,"12379":12380,"12380":12381,"12381":12382,"12382":12383,"12383":12384,"12384":12385,"12385":12386,"12386":12387,"12387":12388,"12388":12389,"12389":12390,"12390":12391,"12391":12392,"12392":12393,"12393":12394,"12394":12395,"12395":12396,"12396":12397,"12397":12398,"12398":12399,"12399":12400,"12400":12401,"12401":12402,"12402":12403,"12403":12404,"12404":12405,"12405":12406,"12406":12407,"12407":12408,"12408":12409,"12409":12410,"12410":12411,"12411":12412,"12412":12413,"12413":12414,"12414":12415,"12415":12416,"12416":12417,"12417":12418,"12418":12419,"12419":12420,"12420":12421,"12421":12422,"12422":12423,"12423":12424,"12424":12425,"12425":12426,"12426":12427,"12427":12428,"12428":12429,"12429":12430,"12430":12431,"12431":12432,"12432":12433,"12433":12434,"12434":12435,"12435":12436,"12436":12437,"12437":12438,"12438":12439,"12439":12440,"12440":12441,"12441":12442,"12442":12443,"12443":12444,"12444":12445,"12445":12446,"12446":12447,"12447":12448,"12448":12449,"12449":12450,"12450":12451,"12451":12452,"12452":12453,"12453":12454,"12454":12455,"12455":12456,"12456":12457,"12457":12458,"12458":12459,"12459":12460,"12460":12461,"12461":12462,"12462":12463,"12463":12464,"12464":12465,"12465":12466,"12466":12467,"12467":12468,"12468":12469,"12469":12470,"12470":12471,"12471":12472,"12472":12473,"12473":12474,"12474":12475,"12475":12476,"12476":12477,"12477":12478,"12478":12479,"12479":12480,"12480":12481,"12481":12482,"12482":12483,"12483":12484,"12484":12485,"12485":12486,"12486":12487,"12487":12488,"12488":12489,"12489":12490,"12490":12491,"12491":12492,"12492":12493,"12493":12494,"12494":12495,"12495":12496,"12496":12497,"12497":12498,"12498":12499,"12499":12500,"12500":12501,"12501":12502,"12502":12503,"12503":12504,"12504":12505,"12505":12506,"12506":12507,"12507":12508,"12508":12509,"12509":12510,"12510":12511,"12511":12512,"12512":12513,"12513":12514,"12514":12515,"12515":12516,"12516":12517,"12517":12518,"12518":12519,"12519":12520,"12520":12521,"12521":12522,"12522":12523,"12523":12524,"12524":12525,"12525":12526,"12526":12527,"12527":12528,"12528":12529,"12529":12530,"12530":12531,"12531":12532,"12532":12533,"12533":12534,"12534":12535,"12535":12536,"12536":12537,"12537":12538,"12538":12539,"12539":12540,"12540":12541,"12541":12542,"12542":12543,"12543":12544,"12544":12545,"12545":12546,"12546":12547,"12547":12548,"12548":12549,"12549":12550,"12550":12551,"12551":12552,"12552":12553,"12553":12554,"12554":12555,"12555":12556,"12556":12557,"12557":12558,"12558":12559,"12559":12560,"12560":12561,"12561":12562,"12562":12563,"12563":12564,"12564":12565,"12565":12566,"12566":12567,"12567":12568,"12568":12569,"12569":12570,"12570":12571,"12571":12572,"12572":12573,"12573":12574,"12574":12575,"12575":12576,"12576":12577,"12577":12578,"12578":12579,"12579":12580,"12580":12581,"12581":12582,"12582":12583,"12583":12584,"12584":12585,"12585":12586,"12586":12587,"12587":12588,"12588":12589,"12589":12590,"12590":12591,"12591":12592,"12592":12593,"12593":12594,"12594":12595,"12595":12596,"12596":12597,"12597":12598,"12598":12599,"12599":12600,"12600":12601,"12601":12602,"12602":12603,"12603":12604,"12604":12605,"12605":12606,"12606":12607,"12607":12608,"12608":12609,"12609":12610,"12610":12611,"12611":12612,"12612":12613,"12613":12614,"12614":12615,"12615":12616,"12616":12617,"12617":12618,"12618":12619,"12619":12620,"12620":12621,"12621":12622,"12622":12623,"12623":12624,"12624":12625,"12625":12626,"12626":12627,"12627":12628,"12628":12629,"12629":12630,"12630":12631,"12631":12632,"12632":12633,"12633":12634,"12634":12635,"12635":12636,"12636":12637,"12637":12638,"12638":12639,"12639":12640,"12640":12641,"12641":12642,"12642":12643,"12643":12644,"12644":12645,"12645":12646,"12646":12647,"12647":12648,"12648":12649,"12649":12650,"12650":12651,"12651":12652,"12652":12653,"12653":12654,"12654":12655,"12655":12656,"12656":12657,"12657":12658,"12658":12659,"12659":12660,"12660":12661,"12661":12662,"12662":12663,"12663":12664,"12664":12665,"12665":12666,"12666":12667,"12667":12668,"12668":12669,"12669":12670,"12670":12671,"12671":12672,"12672":12673,"12673":12674,"12674":12675,"12675":12676,"12676":12677,"12677":12678,"12678":12679,"12679":12680,"12680":12681,"12681":12682,"12682":12683,"12683":12684,"12684":12685,"12685":12686,"12686":12687,"12687":12688,"12688":12689,"12689":12690,"12690":12691,"12691":12692,"12692":12693,"12693":12694,"12694":12695,"12695":12696,"12696":12697,"12697":12698,"12698":12699,"12699":12700,"12700":12701,"12701":12702,"12702":12703,"12703":12704,"12704":12705,"12705":12706,"12706":12707,"12707":12708,"12708":12709,"12709":12710,"12710":12711,"12711":12712,"12712":12713,"12713":12714,"12714":12715,"12715":12716,"12716":12717,"12717":12718,"12718":12719,"12719":12720,"12720":12721,"12721":12722,"12722":12723,"12723":12724,"12724":12725,"12725":12726,"12726":12727,"12727":12728,"12728":12729,"12729":12730,"12730":12731,"12731":12732,"12732":12733,"12733":12734,"12734":12735,"12735":12736,"12736":12737,"12737":12738,"12738":12739,"12739":12740,"12740":12741,"12741":12742,"12742":12743,"12743":12744,"12744":12745,"12745":12746,"12746":12747,"12747":12748,"12748":12749,"12749":12750,"12750":12751,"12751":12752,"12752":12753,"12753":12754,"12754":12755,"12755":12756,"12756":12757,"12757":12758,"12758":12759,"12759":12760,"12760":12761,"12761":12762,"12762":12763,"12763":12764,"12764":12765,"12765":12766,"12766":12767,"12767":12768,"12768":12769,"12769":12770,"12770":12771,"12771":12772,"12772":12773,"12773":12774,"12774":12775,"12775":12776,"12776":12777,"12777":12778,"12778":12779,"12779":12780,"12780":12781,"12781":12782,"12782":12783,"12783":12784,"12784":12785,"12785":12786,"12786":12787,"12787":12788,"12788":12789,"12789":12790,"12790":12791,"12791":12792,"12792":12793,"12793":12794,"12794":12795,"12795":12796,"12796":12797,"12797":12798,"12798":12799,"12799":12800,"12800":12801,"12801":12802,"12802":12803,"12803":12804,"12804":12805,"12805":12806,"12806":12807,"12807":12808,"12808":12809,"12809":12810,"12810":12811,"12811":12812,"12812":12813,"12813":12814,"12814":12815,"12815":12816,"12816":12817,"12817":12818,"12818":12819,"12819":12820,"12820":12821,"12821":12822,"12822":12823,"12823":12824,"12824":12825,"12825":12826,"12826":12827,"12827":12828,"12828":12829,"12829":12830,"12830":12831,"12831":12832,"12832":12833,"12833":12834,"12834":12835,"12835":12836,"12836":12837,"12837":12838,"12838":12839,"12839":12840,"12840":12841,"12841":12842,"12842":12843,"12843":12844,"12844":12845,"12845":12846,"12846":12847,"12847":12848,"12848":12849,"12849":12850,"12850":12851,"12851":12852,"12852":12853,"12853":12854,"12854":12855,"12855":12856,"12856":12857,"12857":12858,"12858":12859,"12859":12860,"12860":12861,"12861":12862,"12862":12863,"12863":12864,"12864":12865,"12865":12866,"12866":12867,"12867":12868,"12868":12869,"12869":12870,"12870":12871,"12871":12872,"12872":12873,"12873":12874,"12874":12875,"12875":12876,"12876":12877,"12877":12878,"12878":12879,"12879":12880,"12880":12881,"12881":12882,"12882":12883,"12883":12884,"12884":12885,"12885":12886,"12886":12887,"12887":12888,"12888":12889,"12889":12890,"12890":12891,"12891":12892,"12892":12893,"12893":12894,"12894":12895,"12895":12896,"12896":12897,"12897":12898,"12898":12899,"12899":12900,"12900":12901,"12901":12902,"12902":12903,"12903":12904,"12904":12905,"12905":12906,"12906":12907,"12907":12908,"12908":12909,"12909":12910,"12910":12911,"12911":12912,"12912":12913,"12913":12914,"12914":12915,"12915":12916,"12916":12917,"12917":12918,"12918":12919,"12919":12920,"12920":12921,"12921":12922,"12922":12923,"12923":12924,"12924":12925,"12925":12926,"12926":12927,"12927":12928,"12928":12929,"12929":12930,"12930":12931,"12931":12932,"12932":12933,"12933":12934,"12934":12935,"12935":12936,"12936":12937,"12937":12938,"12938":12939,"12939":12940,"12940":12941,"12941":12942,"12942":12943,"12943":12944,"12944":12945,"12945":12946,"12946":12947,"12947":12948,"12948":12949,"12949":12950,"12950":12951,"12951":12952,"12952":12953,"12953":12954,"12954":12955,"12955":12956,"12956":12957,"12957":12958,"12958":12959,"12959":12960,"12960":12961,"12961":12962,"12962":12963,"12963":12964,"12964":12965,"12965":12966,"12966":12967,"12967":12968,"12968":12969,"12969":12970,"12970":12971,"12971":12972,"12972":12973,"12973":12974,"12974":12975,"12975":12976,"12976":12977,"12977":12978,"12978":12979,"12979":12980,"12980":12981,"12981":12982,"12982":12983,"12983":12984,"12984":12985,"12985":12986,"12986":12987,"12987":12988,"12988":12989,"12989":12990,"12990":12991,"12991":12992,"12992":12993,"12993":12994,"12994":12995,"12995":12996,"12996":12997,"12997":12998,"12998":12999,"12999":13000,"13000":13001,"13001":13002,"13002":13003,"13003":13004,"13004":13005,"13005":13006,"13006":13007,"13007":13008,"13008":13009,"13009":13010,"13010":13011,"13011":13012,"13012":13013,"13013":13014,"13014":13015,"13015":13016,"13016":13017,"13017":13018,"13018":13019,"13019":13020,"13020":13021,"13021":13022,"13022":13023,"13023":13024,"13024":13025,"13025":13026,"13026":13027,"13027":13028,"13028":13029,"13029":13030,"13030":13031,"13031":13032,"13032":13033,"13033":13034,"13034":13035,"13035":13036,"13036":13037,"13037":13038,"13038":13039,"13039":13040,"13040":13041,"13041":13042,"13042":13043,"13043":13044,"13044":13045,"13045":13046,"13046":13047,"13047":13048,"13048":13049,"13049":13050,"13050":13051,"13051":13052,"13052":13053,"13053":13054,"13054":13055,"13055":13056,"13056":13057,"13057":13058,"13058":13059,"13059":13060,"13060":13061,"13061":13062,"13062":13063,"13063":13064,"13064":13065,"13065":13066,"13066":13067,"13067":13068,"13068":13069,"13069":13070,"13070":13071,"13071":13072,"13072":13073,"13073":13074,"13074":13075,"13075":13076,"13076":13077,"13077":13078,"13078":13079,"13079":13080,"13080":13081,"13081":13082,"13082":13083,"13083":13084,"13084":13085,"13085":13086,"13086":13087,"13087":13088,"13088":13089,"13089":13090,"13090":13091,"13091":13092,"13092":13093,"13093":13094,"13094":13095,"13095":13096,"13096":13097,"13097":13098,"13098":13099,"13099":13100,"13100":13101,"13101":13102,"13102":13103,"13103":13104,"13104":13105,"13105":13106,"13106":13107,"13107":13108,"13108":13109,"13109":13110,"13110":13111,"13111":13112,"13112":13113,"13113":13114,"13114":13115,"13115":13116,"13116":13117,"13117":13118,"13118":13119,"13119":13120,"13120":13121,"13121":13122,"13122":13123,"13123":13124,"13124":13125,"13125":13126,"13126":13127,"13127":13128,"13128":13129,"13129":13130,"13130":13131,"13131":13132,"13132":13133,"13133":13134,"13134":13135,"13135":13136,"13136":13137,"13137":13138,"13138":13139,"13139":13140,"13140":13141,"13141":13142,"13142":13143,"13143":13144,"13144":13145,"13145":13146,"13146":13147,"13147":13148,"13148":13149,"13149":13150,"13150":13151,"13151":13152,"13152":13153,"13153":13154,"13154":13155,"13155":13156,"13156":13157,"13157":13158,"13158":13159,"13159":13160,"13160":13161,"13161":13162,"13162":13163,"13163":13164,"13164":13165,"13165":13166,"13166":13167,"13167":13168,"13168":13169,"13169":13170,"13170":13171,"13171":13172,"13172":13173,"13173":13174,"13174":13175,"13175":13176,"13176":13177,"13177":13178,"13178":13179,"13179":13180,"13180":13181,"13181":13182,"13182":13183,"13183":13184,"13184":13185,"13185":13186,"13186":13187,"13187":13188,"13188":13189,"13189":13190,"13190":13191,"13191":13192,"13192":13193,"13193":13194,"13194":13195,"13195":13196,"13196":13197,"13197":13198,"13198":13199,"13199":13200,"13200":13201,"13201":13202,"13202":13203,"13203":13204,"13204":13205,"13205":13206,"13206":13207,"13207":13208,"13208":13209,"13209":13210,"13210":13211,"13211":13212,"13212":13213,"13213":13214,"13214":13215,"13215":13216,"13216":13217,"13217":13218,"13218":13219,"13219":13220,"13220":13221,"13221":13222,"13222":13223,"13223":13224,"13224":13225,"13225":13226,"13226":13227,"13227":13228,"13228":13229,"13229":13230,"13230":13231,"13231":13232,"13232":13233,"13233":13234,"13234":13235,"13235":13236,"13236":13237,"13237":13238,"13238":13239,"13239":13240,"13240":13241,"13241":13242,"13242":13243,"13243":13244,"13244":13245,"13245":13246,"13246":13247,"13247":13248,"13248":13249,"13249":13250,"13250":13251,"13251":13252,"13252":13253,"13253":13254,"13254":13255,"13255":13256,"13256":13257,"13257":13258,"13258":13259,"13259":13260,"13260":13261,"13261":13262,"13262":13263,"13263":13264,"13264":13265,"13265":13266,"13266":13267,"13267":13268,"13268":13269,"13269":13270,"13270":13271,"13271":13272,"13272":13273,"13273":13274,"13274":13275,"13275":13276,"13276":13277,"13277":13278,"13278":13279,"13279":13280,"13280":13281,"13281":13282,"13282":13283,"13283":13284,"13284":13285,"13285":13286,"13286":13287,"13287":13288,"13288":13289,"13289":13290,"13290":13291,"13291":13292,"13292":13293,"13293":13294,"13294":13295,"13295":13296,"13296":13297,"13297":13298,"13298":13299,"13299":13300,"13300":13301,"13301":13302,"13302":13303,"13303":13304,"13304":13305,"13305":13306,"13306":13307,"13307":13308,"13308":13309,"13309":13310,"13310":13311,"13311":13312,"13312":13313,"13313":13314,"13314":13315,"13315":13316,"13316":13317,"13317":13318,"13318":13319,"13319":13320,"13320":13321,"13321":13322,"13322":13323,"13323":13324,"13324":13325,"13325":13326,"13326":13327,"13327":13328,"13328":13329,"13329":13330,"13330":13331,"13331":13332,"13332":13333,"13333":13334,"13334":13335,"13335":13336,"13336":13337,"13337":13338,"13338":13339,"13339":13340,"13340":13341,"13341":13342,"13342":13343,"13343":13344,"13344":13345,"13345":13346,"13346":13347,"13347":13348,"13348":13349,"13349":13350,"13350":13351,"13351":13352,"13352":13353,"13353":13354,"13354":13355,"13355":13356,"13356":13357,"13357":13358,"13358":13359,"13359":13360,"13360":13361,"13361":13362,"13362":13363,"13363":13364,"13364":13365,"13365":13366,"13366":13367,"13367":13368,"13368":13369,"13369":13370,"13370":13371,"13371":13372,"13372":13373,"13373":13374,"13374":13375,"13375":13376,"13376":13377,"13377":13378,"13378":13379,"13379":13380,"13380":13381,"13381":13382,"13382":13383,"13383":13384,"13384":13385,"13385":13386,"13386":13387,"13387":13388,"13388":13389,"13389":13390,"13390":13391,"13391":13392,"13392":13393,"13393":13394,"13394":13395,"13395":13396,"13396":13397,"13397":13398,"13398":13399,"13399":13400,"13400":13401,"13401":13402,"13402":13403,"13403":13404,"13404":13405,"13405":13406,"13406":13407,"13407":13408,"13408":13409,"13409":13410,"13410":13411,"13411":13412,"13412":13413,"13413":13414,"13414":13415,"13415":13416,"13416":13417,"13417":13418,"13418":13419,"13419":13420,"13420":13421,"13421":13422,"13422":13423,"13423":13424,"13424":13425,"13425":13426,"13426":13427,"13427":13428,"13428":13429,"13429":13430,"13430":13431,"13431":13432,"13432":13433,"13433":13434,"13434":13435,"13435":13436,"13436":13437,"13437":13438,"13438":13439,"13439":13440,"13440":13441,"13441":13442,"13442":13443,"13443":13444,"13444":13445,"13445":13446,"13446":13447,"13447":13448,"13448":13449,"13449":13450,"13450":13451,"13451":13452,"13452":13453,"13453":13454,"13454":13455,"13455":13456,"13456":13457,"13457":13458,"13458":13459,"13459":13460,"13460":13461,"13461":13462,"13462":13463,"13463":13464,"13464":13465,"13465":13466,"13466":13467,"13467":13468,"13468":13469,"13469":13470,"13470":13471,"13471":13472,"13472":13473,"13473":13474,"13474":13475,"13475":13476,"13476":13477,"13477":13478,"13478":13479,"13479":13480,"13480":13481,"13481":13482,"13482":13483,"13483":13484,"13484":13485,"13485":13486,"13486":13487,"13487":13488,"13488":13489,"13489":13490,"13490":13491,"13491":13492,"13492":13493,"13493":13494,"13494":13495,"13495":13496,"13496":13497,"13497":13498,"13498":13499,"13499":13500,"13500":13501,"13501":13502,"13502":13503,"13503":13504,"13504":13505,"13505":13506,"13506":13507,"13507":13508,"13508":13509,"13509":13510,"13510":13511,"13511":13512,"13512":13513,"13513":13514,"13514":13515,"13515":13516,"13516":13517,"13517":13518,"13518":13519,"13519":13520,"13520":13521,"13521":13522,"13522":13523,"13523":13524,"13524":13525,"13525":13526,"13526":13527,"13527":13528,"13528":13529,"13529":13530,"13530":13531,"13531":13532,"13532":13533,"13533":13534,"13534":13535,"13535":13536,"13536":13537,"13537":13538,"13538":13539,"13539":13540,"13540":13541,"13541":13542,"13542":13543,"13543":13544,"13544":13545,"13545":13546,"13546":13547,"13547":13548,"13548":13549,"13549":13550,"13550":13551,"13551":13552,"13552":13553,"13553":13554,"13554":13555,"13555":13556,"13556":13557,"13557":13558,"13558":13559,"13559":13560,"13560":13561,"13561":13562,"13562":13563,"13563":13564,"13564":13565,"13565":13566,"13566":13567,"13567":13568,"13568":13569,"13569":13570,"13570":13571,"13571":13572,"13572":13573,"13573":13574,"13574":13575,"13575":13576,"13576":13577,"13577":13578,"13578":13579,"13579":13580,"13580":13581,"13581":13582,"13582":13583,"13583":13584,"13584":13585,"13585":13586,"13586":13587,"13587":13588,"13588":13589,"13589":13590,"13590":13591,"13591":13592,"13592":13593,"13593":13594,"13594":13595,"13595":13596,"13596":13597,"13597":13598,"13598":13599,"13599":13600,"13600":13601,"13601":13602,"13602":13603,"13603":13604,"13604":13605,"13605":13606,"13606":13607,"13607":13608,"13608":13609,"13609":13610,"13610":13611,"13611":13612,"13612":13613,"13613":13614,"13614":13615,"13615":13616,"13616":13617,"13617":13618,"13618":13619,"13619":13620,"13620":13621,"13621":13622,"13622":13623,"13623":13624,"13624":13625,"13625":13626,"13626":13627,"13627":13628,"13628":13629,"13629":13630,"13630":13631,"13631":13632,"13632":13633,"13633":13634,"13634":13635,"13635":13636,"13636":13637,"13637":13638,"13638":13639,"13639":13640,"13640":13641,"13641":13642,"13642":13643,"13643":13644,"13644":13645,"13645":13646,"13646":13647,"13647":13648,"13648":13649,"13649":13650,"13650":13651,"13651":13652,"13652":13653,"13653":13654,"13654":13655,"13655":13656,"13656":13657,"13657":13658,"13658":13659,"13659":13660,"13660":13661,"13661":13662,"13662":13663,"13663":13664,"13664":13665,"13665":13666,"13666":13667,"13667":13668,"13668":13669,"13669":13670,"13670":13671,"13671":13672,"13672":13673,"13673":13674,"13674":13675,"13675":13676,"13676":13677,"13677":13678,"13678":13679,"13679":13680,"13680":13681,"13681":13682,"13682":13683,"13683":13684,"13684":13685,"13685":13686,"13686":13687,"13687":13688,"13688":13689,"13689":13690,"13690":13691,"13691":13692,"13692":13693,"13693":13694,"13694":13695,"13695":13696,"13696":13697,"13697":13698,"13698":13699,"13699":13700,"13700":13701,"13701":13702,"13702":13703,"13703":13704,"13704":13705,"13705":13706,"13706":13707,"13707":13708,"13708":13709,"13709":13710,"13710":13711,"13711":13712,"13712":13713,"13713":13714,"13714":13715,"13715":13716,"13716":13717,"13717":13718,"13718":13719,"13719":13720,"13720":13721,"13721":13722,"13722":13723,"13723":13724,"13724":13725,"13725":13726,"13726":13727,"13727":13728,"13728":13729,"13729":13730,"13730":13731,"13731":13732,"13732":13733,"13733":13734,"13734":13735,"13735":13736,"13736":13737,"13737":13738,"13738":13739,"13739":13740,"13740":13741,"13741":13742,"13742":13743,"13743":13744,"13744":13745,"13745":13746,"13746":13747,"13747":13748,"13748":13749,"13749":13750,"13750":13751,"13751":13752,"13752":13753,"13753":13754,"13754":13755,"13755":13756,"13756":13757,"13757":13758,"13758":13759,"13759":13760,"13760":13761,"13761":13762,"13762":13763,"13763":13764,"13764":13765,"13765":13766,"13766":13767,"13767":13768,"13768":13769,"13769":13770,"13770":13771,"13771":13772,"13772":13773,"13773":13774,"13774":13775,"13775":13776,"13776":13777,"13777":13778,"13778":13779,"13779":13780,"13780":13781,"13781":13782,"13782":13783,"13783":13784,"13784":13785,"13785":13786,"13786":13787,"13787":13788,"13788":13789,"13789":13790,"13790":13791,"13791":13792,"13792":13793,"13793":13794,"13794":13795,"13795":13796,"13796":13797,"13797":13798,"13798":13799,"13799":13800,"13800":13801,"13801":13802,"13802":13803,"13803":13804,"13804":13805,"13805":13806,"13806":13807,"13807":13808,"13808":13809,"13809":13810,"13810":13811,"13811":13812,"13812":13813,"13813":13814,"13814":13815,"13815":13816,"13816":13817,"13817":13818,"13818":13819,"13819":13820,"13820":13821,"13821":13822,"13822":13823,"13823":13824,"13824":13825,"13825":13826,"13826":13827,"13827":13828,"13828":13829,"13829":13830,"13830":13831,"13831":13832,"13832":13833,"13833":13834,"13834":13835,"13835":13836,"13836":13837,"13837":13838,"13838":13839,"13839":13840,"13840":13841,"13841":13842,"13842":13843,"13843":13844,"13844":13845,"13845":13846,"13846":13847,"13847":13848,"13848":13849,"13849":13850,"13850":13851,"13851":13852,"13852":13853,"13853":13854,"13854":13855,"13855":13856,"13856":13857,"13857":13858,"13858":13859,"13859":13860,"13860":13861,"13861":13862,"13862":13863,"13863":13864,"13864":13865,"13865":13866,"13866":13867,"13867":13868,"13868":13869,"13869":13870,"13870":13871,"13871":13872,"13872":13873,"13873":13874,"13874":13875,"13875":13876,"13876":13877,"13877":13878,"13878":13879,"13879":13880,"13880":13881,"13881":13882,"13882":13883,"13883":13884,"13884":13885,"13885":13886,"13886":13887,"13887":13888,"13888":13889,"13889":13890,"13890":13891,"13891":13892,"13892":13893,"13893":13894,"13894":13895,"13895":13896,"13896":13897,"13897":13898,"13898":13899,"13899":13900,"13900":13901,"13901":13902,"13902":13903,"13903":13904,"13904":13905,"13905":13906,"13906":13907,"13907":13908,"13908":13909,"13909":13910,"13910":13911,"13911":13912,"13912":13913,"13913":13914,"13914":13915,"13915":13916,"13916":13917,"13917":13918,"13918":13919,"13919":13920,"13920":13921,"13921":13922,"13922":13923,"13923":13924,"13924":13925,"13925":13926,"13926":13927,"13927":13928,"13928":13929,"13929":13930,"13930":13931,"13931":13932,"13932":13933,"13933":13934,"13934":13935,"13935":13936,"13936":13937,"13937":13938,"13938":13939,"13939":13940,"13940":13941,"13941":13942,"13942":13943,"13943":13944,"13944":13945,"13945":13946,"13946":13947,"13947":13948,"13948":13949,"13949":13950,"13950":13951,"13951":13952,"13952":13953,"13953":13954,"13954":13955,"13955":13956,"13956":13957,"13957":13958,"13958":13959,"13959":13960,"13960":13961,"13961":13962,"13962":13963,"13963":13964,"13964":13965,"13965":13966,"13966":13967,"13967":13968,"13968":13969,"13969":13970,"13970":13971,"13971":13972,"13972":13973,"13973":13974,"13974":13975,"13975":13976,"13976":13977,"13977":13978,"13978":13979,"13979":13980,"13980":13981,"13981":13982,"13982":13983,"13983":13984,"13984":13985,"13985":13986,"13986":13987,"13987":13988,"13988":13989,"13989":13990,"13990":13991,"13991":13992,"13992":13993,"13993":13994,"13994":13995,"13995":13996,"13996":13997,"13997":13998,"13998":13999,"13999":14000,"14000":14001,"14001":14002,"14002":14003,"14003":14004,"14004":14005,"14005":14006,"14006":14007,"14007":14008,"14008":14009,"14009":14010,"14010":14011,"14011":14012,"14012":14013,"14013":14014,"14014":14015,"14015":14016,"14016":14017,"14017":14018,"14018":14019,"14019":14020,"14020":14021,"14021":14022,"14022":14023,"14023":14024,"14024":14025,"14025":14026,"14026":14027,"14027":14028,"14028":14029,"14029":14030,"14030":14031,"14031":14032,"14032":14033,"14033":14034,"14034":14035,"14035":14036,"14036":14037,"14037":14038,"14038":14039,"14039":14040,"14040":14041,"14041":14042,"14042":14043,"14043":14044,"14044":14045,"14045":14046,"14046":14047,"14047":14048,"14048":14049,"14049":14050,"14050":14051,"14051":14052,"14052":14053,"14053":14054,"14054":14055,"14055":14056,"14056":14057,"14057":14058,"14058":14059,"14059":14060,"14060":14061,"14061":14062,"14062":14063,"14063":14064,"14064":14065,"14065":14066,"14066":14067,"14067":14068,"14068":14069,"14069":14070,"14070":14071,"14071":14072,"14072":14073,"14073":14074,"14074":14075,"14075":14076,"14076":14077,"14077":14078,"14078":14079,"14079":14080,"14080":14081,"14081":14082,"14082":14083,"14083":14084,"14084":14085,"14085":14086,"14086":14087,"14087":14088,"14088":14089,"14089":14090,"14090":14091,"14091":14092,"14092":14093,"14093":14094,"14094":14095,"14095":14096,"14096":14097,"14097":14098,"14098":14099,"14099":14100,"14100":14101,"14101":14102,"14102":14103,"14103":14104,"14104":14105,"14105":14106,"14106":14107,"14107":14108,"14108":14109,"14109":14110,"14110":14111,"14111":14112,"14112":14113,"14113":14114,"14114":14115,"14115":14116,"14116":14117,"14117":14118,"14118":14119,"14119":14120,"14120":14121,"14121":14122,"14122":14123,"14123":14124,"14124":14125,"14125":14126,"14126":14127,"14127":14128,"14128":14129,"14129":14130,"14130":14131,"14131":14132,"14132":14133,"14133":14134,"14134":14135,"14135":14136,"14136":14137,"14137":14138,"14138":14139,"14139":14140,"14140":14141,"14141":14142,"14142":14143,"14143":14144,"14144":14145,"14145":14146,"14146":14147,"14147":14148,"14148":14149,"14149":14150,"14150":14151,"14151":14152,"14152":14153,"14153":14154,"14154":14155,"14155":14156,"14156":14157,"14157":14158,"14158":14159,"14159":14160,"14160":14161,"14161":14162,"14162":14163,"14163":14164,"14164":14165,"14165":14166,"14166":14167,"14167":14168,"14168":14169,"14169":14170,"14170":14171,"14171":14172,"14172":14173,"14173":14174,"14174":14175,"14175":14176,"14176":14177,"14177":14178,"14178":14179,"14179":14180,"14180":14181,"14181":14182,"14182":14183,"14183":14184,"14184":14185,"14185":14186,"14186":14187,"14187":14188,"14188":14189,"14189":14190,"14190":14191,"14191":14192,"14192":14193,"14193":14194,"14194":14195,"14195":14196,"14196":14197,"14197":14198,"14198":14199,"14199":14200,"14200":14201,"14201":14202,"14202":14203,"14203":14204,"14204":14205,"14205":14206,"14206":14207,"14207":14208,"14208":14209,"14209":14210,"14210":14211,"14211":14212,"14212":14213,"14213":14214,"14214":14215,"14215":14216,"14216":14217,"14217":14218,"14218":14219,"14219":14220,"14220":14221,"14221":14222,"14222":14223,"14223":14224,"14224":14225,"14225":14226,"14226":14227,"14227":14228,"14228":14229,"14229":14230,"14230":14231,"14231":14232,"14232":14233,"14233":14234,"14234":14235,"14235":14236,"14236":14237,"14237":14238,"14238":14239,"14239":14240,"14240":14241,"14241":14242,"14242":14243,"14243":14244,"14244":14245,"14245":14246,"14246":14247,"14247":14248,"14248":14249,"14249":14250,"14250":14251,"14251":14252,"14252":14253,"14253":14254,"14254":14255,"14255":14256,"14256":14257,"14257":14258,"14258":14259,"14259":14260,"14260":14261,"14261":14262,"14262":14263,"14263":14264,"14264":14265,"14265":14266,"14266":14267,"14267":14268,"14268":14269,"14269":14270,"14270":14271,"14271":14272,"14272":14273,"14273":14274,"14274":14275,"14275":14276,"14276":14277,"14277":14278,"14278":14279,"14279":14280,"14280":14281,"14281":14282,"14282":14283,"14283":14284,"14284":14285,"14285":14286,"14286":14287,"14287":14288,"14288":14289,"14289":14290,"14290":14291,"14291":14292,"14292":14293,"14293":14294,"14294":14295,"14295":14296,"14296":14297,"14297":14298,"14298":14299,"14299":14300,"14300":14301,"14301":14302,"14302":14303,"14303":14304,"14304":14305,"14305":14306,"14306":14307,"14307":14308,"14308":14309,"14309":14310,"14310":14311,"14311":14312,"14312":14313,"14313":14314,"14314":14315,"14315":14316,"14316":14317,"14317":14318,"14318":14319,"14319":14320,"14320":14321,"14321":14322,"14322":14323,"14323":14324,"14324":14325,"14325":14326,"14326":14327,"14327":14328,"14328":14329,"14329":14330,"14330":14331,"14331":14332,"14332":14333,"14333":14334,"14334":14335,"14335":14336,"14336":14337,"14337":14338,"14338":14339,"14339":14340,"14340":14341,"14341":14342,"14342":14343,"14343":14344,"14344":14345,"14345":14346,"14346":14347,"14347":14348,"14348":14349,"14349":14350,"14350":14351,"14351":14352,"14352":14353,"14353":14354,"14354":14355,"14355":14356,"14356":14357,"14357":14358,"14358":14359,"14359":14360,"14360":14361,"14361":14362,"14362":14363,"14363":14364,"14364":14365,"14365":14366,"14366":14367,"14367":14368,"14368":14369,"14369":14370,"14370":14371,"14371":14372,"14372":14373,"14373":14374,"14374":14375,"14375":14376,"14376":14377,"14377":14378,"14378":14379,"14379":14380,"14380":14381,"14381":14382,"14382":14383,"14383":14384,"14384":14385,"14385":14386,"14386":14387,"14387":14388,"14388":14389,"14389":14390,"14390":14391,"14391":14392,"14392":14393,"14393":14394,"14394":14395,"14395":14396,"14396":14397,"14397":14398,"14398":14399,"14399":14400,"14400":14401,"14401":14402,"14402":14403,"14403":14404,"14404":14405,"14405":14406,"14406":14407,"14407":14408,"14408":14409,"14409":14410,"14410":14411,"14411":14412,"14412":14413,"14413":14414,"14414":14415,"14415":14416,"14416":14417,"14417":14418,"14418":14419,"14419":14420,"14420":14421,"14421":14422,"14422":14423,"14423":14424,"14424":14425,"14425":14426,"14426":14427,"14427":14428,"14428":14429,"14429":14430,"14430":14431,"14431":14432,"14432":14433,"14433":14434,"14434":14435,"14435":14436,"14436":14437,"14437":14438,"14438":14439,"14439":14440,"14440":14441,"14441":14442,"14442":14443,"14443":14444,"14444":14445,"14445":14446,"14446":14447,"14447":14448,"14448":14449,"14449":14450,"14450":14451,"14451":14452,"14452":14453,"14453":14454,"14454":14455,"14455":14456,"14456":14457,"14457":14458,"14458":14459,"14459":14460,"14460":14461,"14461":14462,"14462":14463,"14463":14464,"14464":14465,"14465":14466,"14466":14467,"14467":14468,"14468":14469,"14469":14470,"14470":14471,"14471":14472,"14472":14473,"14473":14474,"14474":14475,"14475":14476,"14476":14477,"14477":14478,"14478":14479,"14479":14480,"14480":14481,"14481":14482,"14482":14483,"14483":14484,"14484":14485,"14485":14486,"14486":14487,"14487":14488,"14488":14489,"14489":14490,"14490":14491,"14491":14492,"14492":14493,"14493":14494,"14494":14495,"14495":14496,"14496":14497,"14497":14498,"14498":14499,"14499":14500,"14500":14501,"14501":14502,"14502":14503,"14503":14504,"14504":14505,"14505":14506,"14506":14507,"14507":14508,"14508":14509,"14509":14510,"14510":14511,"14511":14512,"14512":14513,"14513":14514,"14514":14515,"14515":14516,"14516":14517,"14517":14518,"14518":14519,"14519":14520,"14520":14521,"14521":14522,"14522":14523,"14523":14524,"14524":14525,"14525":14526,"14526":14527,"14527":14528,"14528":14529,"14529":14530,"14530":14531,"14531":14532,"14532":14533,"14533":14534,"14534":14535,"14535":14536,"14536":14537,"14537":14538,"14538":14539,"14539":14540,"14540":14541,"14541":14542,"14542":14543,"14543":14544,"14544":14545,"14545":14546,"14546":14547,"14547":14548,"14548":14549,"14549":14550,"14550":14551,"14551":14552,"14552":14553,"14553":14554,"14554":14555,"14555":14556,"14556":14557,"14557":14558,"14558":14559,"14559":14560,"14560":14561,"14561":14562,"14562":14563,"14563":14564,"14564":14565,"14565":14566,"14566":14567,"14567":14568,"14568":14569,"14569":14570,"14570":14571,"14571":14572,"14572":14573,"14573":14574,"14574":14575,"14575":14576,"14576":14577,"14577":14578,"14578":14579,"14579":14580,"14580":14581,"14581":14582,"14582":14583,"14583":14584,"14584":14585,"14585":14586,"14586":14587,"14587":14588,"14588":14589,"14589":14590,"14590":14591,"14591":14592,"14592":14593,"14593":14594,"14594":14595,"14595":14596,"14596":14597,"14597":14598,"14598":14599,"14599":14600,"14600":14601,"14601":14602,"14602":14603,"14603":14604,"14604":14605,"14605":14606,"14606":14607,"14607":14608,"14608":14609,"14609":14610,"14610":14611,"14611":14612,"14612":14613,"14613":14614,"14614":14615,"14615":14616,"14616":14617,"14617":14618,"14618":14619,"14619":14620,"14620":14621,"14621":14622,"14622":14623,"14623":14624,"14624":14625,"14625":14626,"14626":14627,"14627":14628,"14628":14629,"14629":14630,"14630":14631,"14631":14632,"14632":14633,"14633":14634,"14634":14635,"14635":14636,"14636":14637,"14637":14638,"14638":14639,"14639":14640,"14640":14641,"14641":14642,"14642":14643,"14643":14644,"14644":14645,"14645":14646,"14646":14647,"14647":14648,"14648":14649,"14649":14650,"14650":14651,"14651":14652,"14652":14653,"14653":14654,"14654":14655,"14655":14656,"14656":14657,"14657":14658,"14658":14659,"14659":14660,"14660":14661,"14661":14662,"14662":14663,"14663":14664,"14664":14665,"14665":14666,"14666":14667,"14667":14668,"14668":14669,"14669":14670,"14670":14671,"14671":14672,"14672":14673,"14673":14674,"14674":14675,"14675":14676,"14676":14677,"14677":14678,"14678":14679,"14679":14680,"14680":14681,"14681":14682,"14682":14683,"14683":14684,"14684":14685,"14685":14686,"14686":14687,"14687":14688,"14688":14689,"14689":14690,"14690":14691,"14691":14692,"14692":14693,"14693":14694,"14694":14695,"14695":14696,"14696":14697,"14697":14698,"14698":14699,"14699":14700,"14700":14701,"14701":14702,"14702":14703,"14703":14704,"14704":14705,"14705":14706,"14706":14707,"14707":14708,"14708":14709,"14709":14710,"14710":14711,"14711":14712,"14712":14713,"14713":14714,"14714":14715,"14715":14716,"14716":14717,"14717":14718,"14718":14719,"14719":14720,"14720":14721,"14721":14722,"14722":14723,"14723":14724,"14724":14725,"14725":14726,"14726":14727,"14727":14728,"14728":14729,"14729":14730,"14730":14731,"14731":14732,"14732":14733,"14733":14734,"14734":14735,"14735":14736,"14736":14737,"14737":14738,"14738":14739,"14739":14740,"14740":14741,"14741":14742,"14742":14743,"14743":14744,"14744":14745,"14745":14746,"14746":14747,"14747":14748,"14748":14749,"14749":14750,"14750":14751,"14751":14752,"14752":14753,"14753":14754,"14754":14755,"14755":14756,"14756":14757,"14757":14758,"14758":14759,"14759":14760,"14760":14761,"14761":14762,"14762":14763,"14763":14764,"14764":14765,"14765":14766,"14766":14767,"14767":14768,"14768":14769,"14769":14770,"14770":14771,"14771":14772,"14772":14773,"14773":14774,"14774":14775,"14775":14776,"14776":14777,"14777":14778,"14778":14779,"14779":14780,"14780":14781,"14781":14782,"14782":14783,"14783":14784,"14784":14785,"14785":14786,"14786":14787,"14787":14788,"14788":14789,"14789":14790,"14790":14791,"14791":14792,"14792":14793,"14793":14794,"14794":14795,"14795":14796,"14796":14797,"14797":14798,"14798":14799,"14799":14800,"14800":14801,"14801":14802,"14802":14803,"14803":14804,"14804":14805,"14805":14806,"14806":14807,"14807":14808,"14808":14809,"14809":14810,"14810":14811,"14811":14812,"14812":14813,"14813":14814,"14814":14815,"14815":14816,"14816":14817,"14817":14818,"14818":14819,"14819":14820,"14820":14821,"14821":14822,"14822":14823,"14823":14824,"14824":14825,"14825":14826,"14826":14827,"14827":14828,"14828":14829,"14829":14830,"14830":14831,"14831":14832,"14832":14833,"14833":14834,"14834":14835,"14835":14836,"14836":14837,"14837":14838,"14838":14839,"14839":14840,"14840":14841,"14841":14842,"14842":14843,"14843":14844,"14844":14845,"14845":14846,"14846":14847,"14847":14848,"14848":14849,"14849":14850,"14850":14851,"14851":14852,"14852":14853,"14853":14854,"14854":14855,"14855":14856,"14856":14857,"14857":14858,"14858":14859,"14859":14860,"14860":14861,"14861":14862,"14862":14863,"14863":14864,"14864":14865,"14865":14866,"14866":14867,"14867":14868,"14868":14869,"14869":14870,"14870":14871,"14871":14872,"14872":14873,"14873":14874,"14874":14875,"14875":14876,"14876":14877,"14877":14878,"14878":14879,"14879":14880,"14880":14881,"14881":14882,"14882":14883,"14883":14884,"14884":14885,"14885":14886,"14886":14887,"14887":14888,"14888":14889,"14889":14890,"14890":14891,"14891":14892,"14892":14893,"14893":14894,"14894":14895,"14895":14896,"14896":14897,"14897":14898,"14898":14899,"14899":14900,"14900":14901,"14901":14902,"14902":14903,"14903":14904,"14904":14905,"14905":14906,"14906":14907,"14907":14908,"14908":14909,"14909":14910,"14910":14911,"14911":14912,"14912":14913,"14913":14914,"14914":14915,"14915":14916,"14916":14917,"14917":14918,"14918":14919,"14919":14920,"14920":14921,"14921":14922,"14922":14923,"14923":14924,"14924":14925,"14925":14926,"14926":14927,"14927":14928,"14928":14929,"14929":14930,"14930":14931,"14931":14932,"14932":14933,"14933":14934,"14934":14935,"14935":14936,"14936":14937,"14937":14938,"14938":14939,"14939":14940,"14940":14941,"14941":14942,"14942":14943,"14943":14944,"14944":14945,"14945":14946,"14946":14947,"14947":14948,"14948":14949,"14949":14950,"14950":14951,"14951":14952,"14952":14953,"14953":14954,"14954":14955,"14955":14956,"14956":14957,"14957":14958,"14958":14959,"14959":14960,"14960":14961,"14961":14962,"14962":14963,"14963":14964,"14964":14965,"14965":14966,"14966":14967,"14967":14968,"14968":14969,"14969":14970,"14970":14971,"14971":14972,"14972":14973,"14973":14974,"14974":14975,"14975":14976,"14976":14977,"14977":14978,"14978":14979,"14979":14980,"14980":14981,"14981":14982,"14982":14983,"14983":14984,"14984":14985,"14985":14986,"14986":14987,"14987":14988,"14988":14989,"14989":14990,"14990":14991,"14991":14992,"14992":14993,"14993":14994,"14994":14995,"14995":14996,"14996":14997,"14997":14998,"14998":14999,"14999":15000,"15000":15001,"15001":15002,"15002":15003,"15003":15004,"15004":15005,"15005":15006,"15006":15007,"15007":15008,"15008":15009,"15009":15010,"15010":15011,"15011":15012,"15012":15013,"15013":15014,"15014":15015,"15015":15016,"15016":15017,"15017":15018,"15018":15019,"15019":15020,"15020":15021,"15021":15022,"15022":15023,"15023":15024,"15024":15025,"15025":15026,"15026":15027,"15027":15028,"15028":15029,"15029":15030,"15030":15031,"15031":15032,"15032":15033,"15033":15034,"15034":15035,"15035":15036,"15036":15037,"15037":15038,"15038":15039,"15039":15040,"15040":15041,"15041":15042,"15042":15043,"15043":15044,"15044":15045,"15045":15046,"15046":15047,"15047":15048,"15048":15049,"15049":15050,"15050":15051,"15051":15052,"15052":15053,"15053":15054,"15054":15055,"15055":15056,"15056":15057,"15057":15058,"15058":15059,"15059":15060,"15060":15061,"15061":15062,"15062":15063,"15063":15064,"15064":15065,"15065":15066,"15066":15067,"15067":15068,"15068":15069,"15069":15070,"15070":15071,"15071":15072,"15072":15073,"15073":15074,"15074":15075,"15075":15076,"15076":15077,"15077":15078,"15078":15079,"15079":15080,"15080":15081,"15081":15082,"15082":15083,"15083":15084,"15084":15085,"15085":15086,"15086":15087,"15087":15088,"15088":15089,"15089":15090,"15090":15091,"15091":15092,"15092":15093,"15093":15094,"15094":15095,"15095":15096,"15096":15097,"15097":15098,"15098":15099,"15099":15100,"15100":15101,"15101":15102,"15102":15103,"15103":15104,"15104":15105,"15105":15106,"15106":15107,"15107":15108,"15108":15109,"15109":15110,"15110":15111,"15111":15112,"15112":15113,"15113":15114,"15114":15115,"15115":15116,"15116":15117,"15117":15118,"15118":15119,"15119":15120,"15120":15121,"15121":15122,"15122":15123,"15123":15124,"15124":15125,"15125":15126,"15126":15127,"15127":15128,"15128":15129,"15129":15130,"15130":15131,"15131":15132,"15132":15133,"15133":15134,"15134":15135,"15135":15136,"15136":15137,"15137":15138,"15138":15139,"15139":15140,"15140":15141,"15141":15142,"15142":15143,"15143":15144,"15144":15145,"15145":15146,"15146":15147,"15147":15148,"15148":15149,"15149":15150,"15150":15151},"nind":{"0":4,"1":5,"2":5,"3":3,"4":3,"5":4,"6":5,"7":3,"8":7,"9":4,"10":4,"11":1,"12":3,"13":1,"14":3,"15":4,"16":9,"17":3,"18":9,"19":4,"20":2,"21":4,"22":1,"23":3,"24":4,"25":2,"26":7,"27":4,"28":5,"29":4,"30":4,"31":3,"32":5,"33":5,"34":9,"35":5,"36":4,"37":4,"38":2,"39":2,"40":4,"41":4,"42":5,"43":3,"44":3,"45":5,"46":7,"47":5,"48":5,"49":6,"50":5,"51":4,"52":7,"53":5,"54":5,"55":3,"56":5,"57":2,"58":5,"59":3,"60":5,"61":4,"62":6,"63":1,"64":8,"65":1,"66":8,"67":4,"68":3,"69":3,"70":6,"71":4,"72":6,"73":3,"74":4,"75":3,"76":5,"77":4,"78":4,"79":4,"80":3,"81":3,"82":2,"83":8,"84":3,"85":4,"86":5,"87":1,"88":3,"89":3,"90":3,"91":4,"92":4,"93":9,"94":2,"95":4,"96":5,"97":2,"98":2,"99":4,"100":3,"101":9,"102":3,"103":7,"104":5,"105":5,"106":3,"107":3,"108":1,"109":2,"110":4,"111":6,"112":6,"113":5,"114":5,"115":4,"116":4,"117":3,"118":7,"119":4,"120":4,"121":2,"122":2,"123":4,"124":3,"125":6,"126":7,"127":4,"128":3,"129":5,"130":3,"131":3,"132":3,"133":4,"134":1,"135":5,"136":1,"137":4,"138":2,"139":5,"140":6,"141":8,"142":3,"143":1,"144":4,"145":2,"146":4,"147":2,"148":2,"149":4,"150":3,"151":7,"152":3,"153":4,"154":3,"155":8,"156":1,"157":8,"158":5,"159":5,"160":3,"161":4,"162":4,"163":3,"164":5,"165":8,"166":4,"167":7,"168":1,"169":3,"170":3,"171":3,"172":5,"173":4,"174":5,"175":4,"176":7,"177":5,"178":6,"179":3,"180":3,"181":4,"182":3,"183":1,"184":4,"185":4,"186":3,"187":3,"188":4,"189":3,"190":3,"191":4,"192":4,"193":4,"194":4,"195":5,"196":5,"197":1,"198":4,"199":6,"200":5,"201":3,"202":4,"203":4,"204":4,"205":5,"206":3,"207":4,"208":4,"209":2,"210":1,"211":3,"212":5,"213":3,"214":2,"215":3,"216":5,"217":3,"218":3,"219":2,"220":3,"221":2,"222":4,"223":1,"224":4,"225":4,"226":3,"227":4,"228":4,"229":4,"230":2,"231":2,"232":4,"233":4,"234":5,"235":7,"236":4,"237":1,"238":3,"239":5,"240":2,"241":5,"242":4,"243":5,"244":3,"245":7,"246":3,"247":3,"248":4,"249":3,"250":3,"251":5,"252":7,"253":7,"254":3,"255":6,"256":5,"257":4,"258":3,"259":4,"260":6,"261":5,"262":5,"263":5,"264":2,"265":3,"266":4,"267":3,"268":5,"269":3,"270":6,"271":5,"272":4,"273":1,"274":3,"275":3,"276":4,"277":4,"278":2,"279":4,"280":4,"281":4,"282":4,"283":2,"284":4,"285":3,"286":4,"287":3,"288":8,"289":5,"290":7,"291":5,"292":4,"293":4,"294":5,"295":7,"296":4,"297":3,"298":8,"299":4,"300":3,"301":4,"302":5,"303":2,"304":3,"305":6,"306":4,"307":3,"308":4,"309":4,"310":1,"311":4,"312":3,"313":4,"314":4,"315":4,"316":2,"317":2,"318":4,"319":5,"320":5,"321":4,"322":4,"323":3,"324":4,"325":3,"326":3,"327":4,"328":4,"329":6,"330":3,"331":1,"332":3,"333":4,"334":5,"335":7,"336":3,"337":3,"338":3,"339":5,"340":5,"341":3,"342":5,"343":3,"344":8,"345":4,"346":2,"347":4,"348":4,"349":3,"350":6,"351":3,"352":3,"353":2,"354":5,"355":2,"356":7,"357":7,"358":5,"359":2,"360":2,"361":4,"362":9,"363":4,"364":6,"365":4,"366":4,"367":3,"368":5,"369":5,"370":7,"371":4,"372":1,"373":4,"374":4,"375":3,"376":5,"377":6,"378":3,"379":5,"380":5,"381":4,"382":1,"383":3,"384":5,"385":3,"386":3,"387":3,"388":6,"389":4,"390":3,"391":4,"392":1,"393":4,"394":4,"395":4,"396":3,"397":3,"398":3,"399":4,"400":1,"401":3,"402":3,"403":4,"404":2,"405":3,"406":4,"407":3,"408":7,"409":4,"410":4,"411":3,"412":4,"413":2,"414":3,"415":3,"416":4,"417":4,"418":1,"419":5,"420":3,"421":7,"422":3,"423":1,"424":4,"425":3,"426":2,"427":7,"428":4,"429":2,"430":6,"431":5,"432":3,"433":8,"434":4,"435":4,"436":5,"437":3,"438":4,"439":4,"440":7,"441":7,"442":6,"443":6,"444":3,"445":5,"446":4,"447":4,"448":3,"449":2,"450":4,"451":3,"452":6,"453":4,"454":3,"455":2,"456":5,"457":4,"458":6,"459":3,"460":4,"461":8,"462":3,"463":5,"464":2,"465":5,"466":4,"467":4,"468":2,"469":3,"470":2,"471":3,"472":4,"473":3,"474":5,"475":3,"476":4,"477":4,"478":2,"479":4,"480":4,"481":7,"482":8,"483":3,"484":4,"485":4,"486":5,"487":5,"488":2,"489":3,"490":2,"491":7,"492":4,"493":2,"494":4,"495":8,"496":3,"497":4,"498":3,"499":2,"500":4,"501":7,"502":7,"503":2,"504":4,"505":5,"506":4,"507":4,"508":5,"509":7,"510":4,"511":9,"512":3,"513":4,"514":5,"515":3,"516":4,"517":5,"518":3,"519":8,"520":3,"521":4,"522":3,"523":7,"524":1,"525":7,"526":7,"527":3,"528":6,"529":5,"530":3,"531":2,"532":3,"533":8,"534":4,"535":3,"536":2,"537":5,"538":5,"539":3,"540":5,"541":4,"542":5,"543":9,"544":4,"545":4,"546":3,"547":5,"548":4,"549":4,"550":4,"551":2,"552":4,"553":2,"554":4,"555":2,"556":5,"557":5,"558":4,"559":4,"560":5,"561":4,"562":8,"563":9,"564":4,"565":4,"566":5,"567":5,"568":3,"569":7,"570":5,"571":6,"572":5,"573":1,"574":4,"575":4,"576":4,"577":4,"578":4,"579":2,"580":3,"581":5,"582":8,"583":5,"584":3,"585":3,"586":4,"587":2,"588":8,"589":6,"590":3,"591":4,"592":5,"593":2,"594":2,"595":5,"596":4,"597":5,"598":3,"599":8,"600":3,"601":2,"602":5,"603":1,"604":2,"605":2,"606":9,"607":5,"608":1,"609":3,"610":4,"611":3,"612":2,"613":3,"614":4,"615":3,"616":5,"617":7,"618":1,"619":4,"620":4,"621":3,"622":3,"623":2,"624":3,"625":1,"626":2,"627":2,"628":4,"629":3,"630":3,"631":4,"632":4,"633":4,"634":4,"635":5,"636":4,"637":4,"638":8,"639":4,"640":4,"641":4,"642":4,"643":3,"644":1,"645":5,"646":5,"647":5,"648":2,"649":4,"650":1,"651":2,"652":4,"653":1,"654":4,"655":3,"656":6,"657":2,"658":5,"659":1,"660":6,"661":4,"662":6,"663":4,"664":6,"665":2,"666":4,"667":2,"668":2,"669":3,"670":4,"671":5,"672":5,"673":5,"674":6,"675":5,"676":4,"677":3,"678":4,"679":1,"680":2,"681":2,"682":3,"683":4,"684":3,"685":3,"686":3,"687":5,"688":3,"689":5,"690":4,"691":4,"692":4,"693":5,"694":4,"695":4,"696":3,"697":4,"698":8,"699":3,"700":2,"701":2,"702":4,"703":5,"704":8,"705":4,"706":4,"707":2,"708":5,"709":3,"710":4,"711":4,"712":3,"713":6,"714":3,"715":4,"716":4,"717":4,"718":6,"719":3,"720":3,"721":1,"722":4,"723":2,"724":8,"725":2,"726":5,"727":2,"728":4,"729":4,"730":3,"731":5,"732":4,"733":5,"734":4,"735":3,"736":4,"737":2,"738":4,"739":5,"740":4,"741":5,"742":5,"743":5,"744":4,"745":6,"746":7,"747":5,"748":4,"749":6,"750":4,"751":3,"752":3,"753":4,"754":4,"755":5,"756":5,"757":4,"758":3,"759":7,"760":3,"761":3,"762":4,"763":3,"764":4,"765":4,"766":4,"767":1,"768":3,"769":4,"770":4,"771":8,"772":3,"773":5,"774":4,"775":7,"776":1,"777":3,"778":3,"779":3,"780":6,"781":3,"782":5,"783":5,"784":4,"785":7,"786":1,"787":5,"788":4,"789":4,"790":3,"791":3,"792":7,"793":2,"794":3,"795":4,"796":8,"797":4,"798":5,"799":4,"800":3,"801":5,"802":5,"803":7,"804":3,"805":5,"806":4,"807":5,"808":3,"809":5,"810":3,"811":3,"812":1,"813":5,"814":3,"815":4,"816":5,"817":5,"818":3,"819":4,"820":2,"821":5,"822":3,"823":3,"824":4,"825":2,"826":4,"827":4,"828":2,"829":4,"830":4,"831":3,"832":3,"833":3,"834":4,"835":4,"836":4,"837":6,"838":8,"839":4,"840":4,"841":5,"842":4,"843":4,"844":3,"845":2,"846":2,"847":3,"848":4,"849":3,"850":6,"851":3,"852":4,"853":2,"854":8,"855":4,"856":4,"857":2,"858":8,"859":5,"860":1,"861":4,"862":4,"863":3,"864":3,"865":4,"866":5,"867":5,"868":2,"869":4,"870":2,"871":4,"872":4,"873":1,"874":5,"875":3,"876":3,"877":4,"878":8,"879":1,"880":2,"881":4,"882":3,"883":3,"884":4,"885":3,"886":9,"887":2,"888":3,"889":4,"890":1,"891":4,"892":4,"893":7,"894":6,"895":4,"896":5,"897":2,"898":4,"899":5,"900":3,"901":7,"902":3,"903":6,"904":2,"905":8,"906":3,"907":4,"908":5,"909":4,"910":7,"911":3,"912":3,"913":9,"914":3,"915":5,"916":7,"917":2,"918":3,"919":3,"920":2,"921":5,"922":2,"923":4,"924":4,"925":5,"926":3,"927":2,"928":4,"929":2,"930":4,"931":4,"932":4,"933":6,"934":4,"935":3,"936":4,"937":2,"938":4,"939":4,"940":1,"941":3,"942":3,"943":9,"944":2,"945":7,"946":5,"947":3,"948":4,"949":2,"950":5,"951":7,"952":7,"953":2,"954":5,"955":7,"956":5,"957":1,"958":4,"959":4,"960":5,"961":9,"962":1,"963":1,"964":3,"965":4,"966":3,"967":5,"968":3,"969":6,"970":4,"971":2,"972":2,"973":7,"974":5,"975":2,"976":1,"977":2,"978":3,"979":4,"980":5,"981":5,"982":6,"983":4,"984":3,"985":1,"986":3,"987":3,"988":4,"989":1,"990":3,"991":5,"992":7,"993":8,"994":6,"995":4,"996":6,"997":7,"998":5,"999":2,"1000":4,"1001":4,"1002":3,"1003":4,"1004":4,"1005":1,"1006":3,"1007":1,"1008":3,"1009":5,"1010":8,"1011":4,"1012":5,"1013":3,"1014":4,"1015":4,"1016":2,"1017":2,"1018":3,"1019":3,"1020":4,"1021":5,"1022":3,"1023":4,"1024":6,"1025":3,"1026":5,"1027":4,"1028":4,"1029":4,"1030":3,"1031":2,"1032":5,"1033":3,"1034":4,"1035":7,"1036":5,"1037":4,"1038":3,"1039":5,"1040":5,"1041":2,"1042":3,"1043":4,"1044":4,"1045":4,"1046":3,"1047":8,"1048":2,"1049":5,"1050":4,"1051":9,"1052":2,"1053":5,"1054":4,"1055":5,"1056":3,"1057":4,"1058":4,"1059":2,"1060":2,"1061":3,"1062":5,"1063":5,"1064":5,"1065":4,"1066":2,"1067":3,"1068":5,"1069":7,"1070":4,"1071":9,"1072":4,"1073":2,"1074":3,"1075":3,"1076":5,"1077":6,"1078":4,"1079":3,"1080":3,"1081":5,"1082":1,"1083":5,"1084":4,"1085":7,"1086":5,"1087":3,"1088":3,"1089":4,"1090":4,"1091":9,"1092":4,"1093":3,"1094":2,"1095":3,"1096":4,"1097":5,"1098":3,"1099":2,"1100":3,"1101":8,"1102":5,"1103":4,"1104":3,"1105":7,"1106":8,"1107":3,"1108":4,"1109":4,"1110":4,"1111":6,"1112":4,"1113":5,"1114":4,"1115":4,"1116":3,"1117":4,"1118":4,"1119":4,"1120":3,"1121":4,"1122":2,"1123":4,"1124":4,"1125":8,"1126":3,"1127":3,"1128":4,"1129":4,"1130":5,"1131":4,"1132":5,"1133":1,"1134":3,"1135":4,"1136":4,"1137":5,"1138":5,"1139":4,"1140":2,"1141":3,"1142":3,"1143":3,"1144":3,"1145":3,"1146":7,"1147":4,"1148":4,"1149":1,"1150":5,"1151":6,"1152":5,"1153":6,"1154":5,"1155":4,"1156":3,"1157":4,"1158":3,"1159":3,"1160":5,"1161":5,"1162":3,"1163":2,"1164":3,"1165":7,"1166":6,"1167":5,"1168":2,"1169":5,"1170":4,"1171":6,"1172":5,"1173":1,"1174":5,"1175":3,"1176":6,"1177":2,"1178":9,"1179":2,"1180":6,"1181":1,"1182":4,"1183":4,"1184":3,"1185":2,"1186":7,"1187":3,"1188":4,"1189":3,"1190":7,"1191":6,"1192":3,"1193":5,"1194":4,"1195":7,"1196":3,"1197":1,"1198":3,"1199":2,"1200":2,"1201":4,"1202":4,"1203":2,"1204":3,"1205":4,"1206":5,"1207":5,"1208":1,"1209":4,"1210":4,"1211":5,"1212":4,"1213":5,"1214":3,"1215":4,"1216":7,"1217":6,"1218":3,"1219":4,"1220":3,"1221":4,"1222":5,"1223":4,"1224":2,"1225":4,"1226":3,"1227":3,"1228":1,"1229":3,"1230":5,"1231":4,"1232":2,"1233":2,"1234":1,"1235":5,"1236":5,"1237":4,"1238":5,"1239":1,"1240":4,"1241":3,"1242":3,"1243":3,"1244":6,"1245":7,"1246":3,"1247":4,"1248":3,"1249":5,"1250":4,"1251":4,"1252":2,"1253":6,"1254":4,"1255":2,"1256":5,"1257":3,"1258":2,"1259":3,"1260":3,"1261":3,"1262":2,"1263":3,"1264":9,"1265":2,"1266":4,"1267":4,"1268":1,"1269":5,"1270":3,"1271":2,"1272":4,"1273":5,"1274":3,"1275":3,"1276":1,"1277":4,"1278":5,"1279":4,"1280":4,"1281":5,"1282":1,"1283":2,"1284":7,"1285":1,"1286":4,"1287":2,"1288":7,"1289":4,"1290":2,"1291":3,"1292":3,"1293":3,"1294":4,"1295":5,"1296":7,"1297":4,"1298":4,"1299":4,"1300":4,"1301":9,"1302":5,"1303":4,"1304":4,"1305":2,"1306":4,"1307":4,"1308":6,"1309":2,"1310":3,"1311":5,"1312":1,"1313":7,"1314":2,"1315":3,"1316":8,"1317":2,"1318":2,"1319":1,"1320":5,"1321":4,"1322":5,"1323":3,"1324":3,"1325":3,"1326":3,"1327":3,"1328":2,"1329":6,"1330":4,"1331":3,"1332":4,"1333":5,"1334":4,"1335":4,"1336":4,"1337":5,"1338":6,"1339":6,"1340":3,"1341":3,"1342":4,"1343":2,"1344":6,"1345":5,"1346":4,"1347":5,"1348":5,"1349":3,"1350":4,"1351":3,"1352":1,"1353":5,"1354":4,"1355":4,"1356":4,"1357":4,"1358":4,"1359":3,"1360":5,"1361":3,"1362":5,"1363":1,"1364":7,"1365":5,"1366":3,"1367":3,"1368":6,"1369":9,"1370":8,"1371":3,"1372":6,"1373":4,"1374":4,"1375":5,"1376":4,"1377":4,"1378":1,"1379":8,"1380":3,"1381":3,"1382":5,"1383":4,"1384":7,"1385":7,"1386":4,"1387":2,"1388":3,"1389":4,"1390":3,"1391":4,"1392":4,"1393":5,"1394":3,"1395":1,"1396":3,"1397":6,"1398":6,"1399":5,"1400":1,"1401":4,"1402":5,"1403":5,"1404":6,"1405":2,"1406":5,"1407":6,"1408":7,"1409":4,"1410":3,"1411":2,"1412":4,"1413":4,"1414":4,"1415":4,"1416":6,"1417":4,"1418":3,"1419":4,"1420":5,"1421":3,"1422":4,"1423":9,"1424":7,"1425":4,"1426":9,"1427":5,"1428":4,"1429":3,"1430":7,"1431":4,"1432":4,"1433":5,"1434":4,"1435":4,"1436":4,"1437":4,"1438":4,"1439":5,"1440":3,"1441":4,"1442":4,"1443":4,"1444":4,"1445":5,"1446":4,"1447":3,"1448":3,"1449":2,"1450":5,"1451":5,"1452":5,"1453":4,"1454":2,"1455":4,"1456":6,"1457":1,"1458":4,"1459":5,"1460":3,"1461":4,"1462":6,"1463":3,"1464":3,"1465":4,"1466":5,"1467":2,"1468":6,"1469":2,"1470":3,"1471":3,"1472":5,"1473":6,"1474":3,"1475":3,"1476":3,"1477":2,"1478":2,"1479":6,"1480":3,"1481":4,"1482":3,"1483":3,"1484":5,"1485":5,"1486":3,"1487":3,"1488":8,"1489":7,"1490":1,"1491":4,"1492":4,"1493":1,"1494":5,"1495":6,"1496":5,"1497":3,"1498":8,"1499":2,"1500":4,"1501":4,"1502":2,"1503":4,"1504":3,"1505":9,"1506":4,"1507":6,"1508":5,"1509":3,"1510":4,"1511":4,"1512":1,"1513":4,"1514":7,"1515":4,"1516":4,"1517":8,"1518":5,"1519":4,"1520":3,"1521":3,"1522":5,"1523":3,"1524":4,"1525":8,"1526":4,"1527":3,"1528":3,"1529":5,"1530":4,"1531":2,"1532":2,"1533":5,"1534":4,"1535":4,"1536":2,"1537":4,"1538":5,"1539":2,"1540":3,"1541":3,"1542":6,"1543":4,"1544":8,"1545":3,"1546":4,"1547":3,"1548":3,"1549":5,"1550":3,"1551":6,"1552":2,"1553":3,"1554":7,"1555":4,"1556":4,"1557":4,"1558":3,"1559":3,"1560":3,"1561":4,"1562":5,"1563":2,"1564":3,"1565":2,"1566":5,"1567":3,"1568":3,"1569":1,"1570":2,"1571":3,"1572":6,"1573":7,"1574":4,"1575":4,"1576":3,"1577":3,"1578":3,"1579":7,"1580":1,"1581":3,"1582":6,"1583":8,"1584":2,"1585":1,"1586":3,"1587":4,"1588":4,"1589":3,"1590":5,"1591":5,"1592":4,"1593":6,"1594":2,"1595":4,"1596":8,"1597":9,"1598":5,"1599":4,"1600":1,"1601":6,"1602":6,"1603":5,"1604":3,"1605":3,"1606":2,"1607":4,"1608":3,"1609":3,"1610":4,"1611":4,"1612":3,"1613":8,"1614":9,"1615":1,"1616":4,"1617":9,"1618":3,"1619":2,"1620":4,"1621":3,"1622":3,"1623":4,"1624":4,"1625":5,"1626":4,"1627":3,"1628":4,"1629":4,"1630":4,"1631":4,"1632":3,"1633":5,"1634":2,"1635":3,"1636":5,"1637":3,"1638":3,"1639":4,"1640":7,"1641":6,"1642":1,"1643":3,"1644":4,"1645":8,"1646":6,"1647":4,"1648":4,"1649":7,"1650":3,"1651":4,"1652":5,"1653":4,"1654":1,"1655":3,"1656":3,"1657":5,"1658":4,"1659":2,"1660":3,"1661":5,"1662":1,"1663":4,"1664":9,"1665":2,"1666":7,"1667":9,"1668":3,"1669":4,"1670":3,"1671":1,"1672":2,"1673":4,"1674":3,"1675":7,"1676":5,"1677":8,"1678":4,"1679":3,"1680":5,"1681":3,"1682":4,"1683":4,"1684":4,"1685":3,"1686":9,"1687":3,"1688":4,"1689":5,"1690":3,"1691":2,"1692":3,"1693":4,"1694":5,"1695":4,"1696":3,"1697":5,"1698":4,"1699":6,"1700":3,"1701":4,"1702":3,"1703":5,"1704":6,"1705":9,"1706":6,"1707":3,"1708":3,"1709":3,"1710":4,"1711":5,"1712":7,"1713":4,"1714":4,"1715":4,"1716":3,"1717":5,"1718":5,"1719":5,"1720":3,"1721":4,"1722":2,"1723":1,"1724":4,"1725":4,"1726":5,"1727":4,"1728":2,"1729":2,"1730":3,"1731":2,"1732":5,"1733":3,"1734":4,"1735":2,"1736":5,"1737":4,"1738":5,"1739":5,"1740":4,"1741":2,"1742":3,"1743":3,"1744":3,"1745":1,"1746":1,"1747":4,"1748":2,"1749":3,"1750":2,"1751":7,"1752":5,"1753":4,"1754":2,"1755":3,"1756":5,"1757":4,"1758":8,"1759":7,"1760":3,"1761":5,"1762":4,"1763":3,"1764":1,"1765":7,"1766":5,"1767":4,"1768":9,"1769":4,"1770":4,"1771":1,"1772":4,"1773":4,"1774":4,"1775":5,"1776":4,"1777":4,"1778":4,"1779":7,"1780":7,"1781":3,"1782":9,"1783":5,"1784":4,"1785":5,"1786":3,"1787":2,"1788":1,"1789":4,"1790":7,"1791":3,"1792":2,"1793":4,"1794":6,"1795":3,"1796":3,"1797":3,"1798":4,"1799":5,"1800":5,"1801":4,"1802":2,"1803":5,"1804":4,"1805":4,"1806":4,"1807":4,"1808":3,"1809":6,"1810":3,"1811":7,"1812":5,"1813":2,"1814":5,"1815":8,"1816":4,"1817":4,"1818":3,"1819":3,"1820":4,"1821":4,"1822":3,"1823":9,"1824":3,"1825":4,"1826":4,"1827":4,"1828":7,"1829":3,"1830":3,"1831":6,"1832":2,"1833":3,"1834":4,"1835":7,"1836":4,"1837":5,"1838":6,"1839":3,"1840":4,"1841":5,"1842":8,"1843":3,"1844":3,"1845":3,"1846":2,"1847":4,"1848":3,"1849":5,"1850":3,"1851":4,"1852":4,"1853":4,"1854":3,"1855":9,"1856":5,"1857":1,"1858":4,"1859":1,"1860":4,"1861":5,"1862":5,"1863":6,"1864":2,"1865":6,"1866":5,"1867":3,"1868":3,"1869":4,"1870":4,"1871":3,"1872":4,"1873":4,"1874":3,"1875":1,"1876":4,"1877":8,"1878":7,"1879":4,"1880":4,"1881":4,"1882":4,"1883":4,"1884":7,"1885":6,"1886":2,"1887":2,"1888":3,"1889":5,"1890":3,"1891":5,"1892":4,"1893":4,"1894":4,"1895":3,"1896":2,"1897":8,"1898":1,"1899":3,"1900":3,"1901":5,"1902":3,"1903":4,"1904":4,"1905":3,"1906":3,"1907":4,"1908":8,"1909":4,"1910":1,"1911":4,"1912":6,"1913":3,"1914":4,"1915":3,"1916":7,"1917":3,"1918":1,"1919":2,"1920":3,"1921":5,"1922":3,"1923":4,"1924":4,"1925":2,"1926":4,"1927":5,"1928":4,"1929":9,"1930":3,"1931":4,"1932":4,"1933":4,"1934":3,"1935":4,"1936":4,"1937":3,"1938":3,"1939":4,"1940":3,"1941":5,"1942":3,"1943":3,"1944":3,"1945":3,"1946":3,"1947":2,"1948":7,"1949":4,"1950":5,"1951":5,"1952":4,"1953":5,"1954":4,"1955":4,"1956":3,"1957":3,"1958":6,"1959":3,"1960":5,"1961":3,"1962":9,"1963":4,"1964":4,"1965":6,"1966":1,"1967":3,"1968":4,"1969":3,"1970":7,"1971":4,"1972":5,"1973":4,"1974":4,"1975":4,"1976":4,"1977":7,"1978":8,"1979":5,"1980":2,"1981":4,"1982":4,"1983":5,"1984":2,"1985":4,"1986":3,"1987":5,"1988":3,"1989":4,"1990":2,"1991":5,"1992":8,"1993":2,"1994":1,"1995":3,"1996":4,"1997":5,"1998":1,"1999":3,"2000":4,"2001":4,"2002":4,"2003":3,"2004":3,"2005":2,"2006":4,"2007":3,"2008":4,"2009":2,"2010":5,"2011":4,"2012":2,"2013":8,"2014":4,"2015":4,"2016":3,"2017":7,"2018":4,"2019":3,"2020":2,"2021":3,"2022":5,"2023":7,"2024":8,"2025":3,"2026":5,"2027":6,"2028":3,"2029":3,"2030":4,"2031":2,"2032":4,"2033":5,"2034":4,"2035":7,"2036":9,"2037":4,"2038":3,"2039":4,"2040":4,"2041":4,"2042":3,"2043":4,"2044":4,"2045":3,"2046":2,"2047":3,"2048":4,"2049":5,"2050":1,"2051":5,"2052":4,"2053":4,"2054":3,"2055":5,"2056":4,"2057":3,"2058":3,"2059":3,"2060":5,"2061":3,"2062":3,"2063":4,"2064":3,"2065":6,"2066":2,"2067":3,"2068":7,"2069":2,"2070":4,"2071":8,"2072":7,"2073":3,"2074":4,"2075":3,"2076":5,"2077":4,"2078":3,"2079":4,"2080":3,"2081":9,"2082":4,"2083":3,"2084":4,"2085":4,"2086":4,"2087":3,"2088":3,"2089":4,"2090":3,"2091":3,"2092":3,"2093":5,"2094":4,"2095":8,"2096":2,"2097":4,"2098":4,"2099":4,"2100":3,"2101":7,"2102":5,"2103":3,"2104":3,"2105":8,"2106":4,"2107":6,"2108":3,"2109":5,"2110":4,"2111":4,"2112":3,"2113":8,"2114":4,"2115":3,"2116":5,"2117":4,"2118":1,"2119":7,"2120":3,"2121":5,"2122":4,"2123":3,"2124":3,"2125":2,"2126":3,"2127":4,"2128":2,"2129":4,"2130":5,"2131":7,"2132":2,"2133":3,"2134":6,"2135":1,"2136":4,"2137":3,"2138":2,"2139":4,"2140":4,"2141":5,"2142":1,"2143":7,"2144":3,"2145":3,"2146":3,"2147":3,"2148":4,"2149":4,"2150":8,"2151":3,"2152":3,"2153":4,"2154":4,"2155":3,"2156":2,"2157":4,"2158":4,"2159":3,"2160":2,"2161":9,"2162":6,"2163":6,"2164":4,"2165":4,"2166":3,"2167":6,"2168":4,"2169":2,"2170":4,"2171":3,"2172":8,"2173":2,"2174":3,"2175":4,"2176":2,"2177":5,"2178":2,"2179":5,"2180":6,"2181":2,"2182":2,"2183":3,"2184":3,"2185":3,"2186":3,"2187":1,"2188":4,"2189":3,"2190":9,"2191":5,"2192":4,"2193":3,"2194":3,"2195":7,"2196":8,"2197":4,"2198":4,"2199":4,"2200":6,"2201":5,"2202":8,"2203":3,"2204":6,"2205":7,"2206":3,"2207":3,"2208":1,"2209":6,"2210":3,"2211":7,"2212":5,"2213":5,"2214":3,"2215":4,"2216":5,"2217":8,"2218":3,"2219":3,"2220":3,"2221":7,"2222":2,"2223":4,"2224":5,"2225":4,"2226":4,"2227":3,"2228":3,"2229":2,"2230":4,"2231":5,"2232":4,"2233":5,"2234":2,"2235":5,"2236":3,"2237":1,"2238":2,"2239":7,"2240":3,"2241":5,"2242":1,"2243":4,"2244":6,"2245":3,"2246":4,"2247":4,"2248":4,"2249":3,"2250":4,"2251":4,"2252":3,"2253":7,"2254":1,"2255":4,"2256":3,"2257":4,"2258":3,"2259":4,"2260":1,"2261":3,"2262":6,"2263":3,"2264":4,"2265":3,"2266":5,"2267":4,"2268":3,"2269":5,"2270":6,"2271":5,"2272":1,"2273":6,"2274":4,"2275":4,"2276":3,"2277":3,"2278":4,"2279":5,"2280":3,"2281":3,"2282":4,"2283":2,"2284":4,"2285":3,"2286":5,"2287":1,"2288":4,"2289":4,"2290":7,"2291":9,"2292":3,"2293":4,"2294":4,"2295":4,"2296":4,"2297":5,"2298":5,"2299":4,"2300":1,"2301":6,"2302":4,"2303":7,"2304":2,"2305":3,"2306":4,"2307":3,"2308":4,"2309":1,"2310":2,"2311":4,"2312":4,"2313":1,"2314":4,"2315":2,"2316":4,"2317":9,"2318":9,"2319":4,"2320":8,"2321":9,"2322":4,"2323":5,"2324":4,"2325":5,"2326":3,"2327":2,"2328":9,"2329":3,"2330":3,"2331":7,"2332":2,"2333":3,"2334":2,"2335":3,"2336":1,"2337":5,"2338":5,"2339":6,"2340":7,"2341":3,"2342":4,"2343":4,"2344":4,"2345":4,"2346":4,"2347":3,"2348":7,"2349":3,"2350":5,"2351":2,"2352":3,"2353":2,"2354":4,"2355":3,"2356":4,"2357":4,"2358":2,"2359":4,"2360":3,"2361":5,"2362":5,"2363":4,"2364":3,"2365":3,"2366":5,"2367":4,"2368":5,"2369":3,"2370":4,"2371":5,"2372":3,"2373":5,"2374":3,"2375":7,"2376":3,"2377":3,"2378":3,"2379":5,"2380":3,"2381":4,"2382":3,"2383":3,"2384":4,"2385":4,"2386":3,"2387":4,"2388":4,"2389":6,"2390":3,"2391":7,"2392":2,"2393":4,"2394":4,"2395":2,"2396":4,"2397":8,"2398":3,"2399":3,"2400":4,"2401":2,"2402":4,"2403":6,"2404":5,"2405":9,"2406":3,"2407":3,"2408":4,"2409":4,"2410":3,"2411":7,"2412":3,"2413":4,"2414":4,"2415":3,"2416":7,"2417":2,"2418":3,"2419":4,"2420":4,"2421":4,"2422":4,"2423":4,"2424":2,"2425":4,"2426":4,"2427":4,"2428":4,"2429":4,"2430":3,"2431":5,"2432":4,"2433":1,"2434":4,"2435":4,"2436":3,"2437":1,"2438":4,"2439":4,"2440":5,"2441":2,"2442":6,"2443":2,"2444":4,"2445":3,"2446":4,"2447":8,"2448":3,"2449":5,"2450":5,"2451":9,"2452":4,"2453":3,"2454":5,"2455":5,"2456":3,"2457":4,"2458":7,"2459":7,"2460":5,"2461":4,"2462":3,"2463":2,"2464":5,"2465":3,"2466":5,"2467":2,"2468":1,"2469":3,"2470":9,"2471":6,"2472":4,"2473":4,"2474":1,"2475":7,"2476":5,"2477":6,"2478":8,"2479":2,"2480":4,"2481":2,"2482":2,"2483":4,"2484":7,"2485":3,"2486":5,"2487":4,"2488":2,"2489":1,"2490":8,"2491":4,"2492":3,"2493":3,"2494":3,"2495":4,"2496":4,"2497":5,"2498":2,"2499":4,"2500":3,"2501":4,"2502":3,"2503":4,"2504":3,"2505":5,"2506":8,"2507":6,"2508":9,"2509":4,"2510":8,"2511":6,"2512":3,"2513":4,"2514":9,"2515":3,"2516":3,"2517":3,"2518":8,"2519":5,"2520":5,"2521":2,"2522":4,"2523":4,"2524":5,"2525":9,"2526":3,"2527":2,"2528":4,"2529":3,"2530":4,"2531":2,"2532":1,"2533":3,"2534":4,"2535":2,"2536":5,"2537":2,"2538":5,"2539":3,"2540":3,"2541":1,"2542":1,"2543":3,"2544":2,"2545":5,"2546":3,"2547":3,"2548":1,"2549":3,"2550":4,"2551":3,"2552":3,"2553":3,"2554":3,"2555":6,"2556":4,"2557":3,"2558":2,"2559":5,"2560":3,"2561":3,"2562":4,"2563":4,"2564":3,"2565":3,"2566":3,"2567":3,"2568":2,"2569":5,"2570":9,"2571":3,"2572":3,"2573":4,"2574":1,"2575":4,"2576":4,"2577":5,"2578":3,"2579":4,"2580":5,"2581":3,"2582":3,"2583":3,"2584":3,"2585":3,"2586":3,"2587":2,"2588":3,"2589":7,"2590":5,"2591":8,"2592":1,"2593":6,"2594":3,"2595":4,"2596":4,"2597":4,"2598":3,"2599":4,"2600":9,"2601":3,"2602":3,"2603":3,"2604":5,"2605":3,"2606":3,"2607":4,"2608":8,"2609":5,"2610":4,"2611":4,"2612":4,"2613":4,"2614":3,"2615":5,"2616":3,"2617":5,"2618":3,"2619":2,"2620":3,"2621":4,"2622":5,"2623":1,"2624":3,"2625":2,"2626":3,"2627":4,"2628":3,"2629":4,"2630":3,"2631":3,"2632":3,"2633":5,"2634":2,"2635":5,"2636":2,"2637":4,"2638":3,"2639":2,"2640":1,"2641":6,"2642":6,"2643":4,"2644":4,"2645":4,"2646":5,"2647":5,"2648":4,"2649":5,"2650":2,"2651":4,"2652":7,"2653":4,"2654":4,"2655":4,"2656":3,"2657":8,"2658":9,"2659":3,"2660":6,"2661":6,"2662":7,"2663":4,"2664":1,"2665":5,"2666":4,"2667":5,"2668":2,"2669":3,"2670":3,"2671":4,"2672":2,"2673":3,"2674":3,"2675":6,"2676":3,"2677":4,"2678":1,"2679":4,"2680":3,"2681":4,"2682":3,"2683":5,"2684":4,"2685":4,"2686":3,"2687":4,"2688":4,"2689":3,"2690":5,"2691":6,"2692":1,"2693":3,"2694":2,"2695":6,"2696":3,"2697":7,"2698":3,"2699":6,"2700":2,"2701":1,"2702":4,"2703":6,"2704":5,"2705":7,"2706":3,"2707":4,"2708":6,"2709":4,"2710":3,"2711":4,"2712":3,"2713":3,"2714":3,"2715":4,"2716":3,"2717":4,"2718":5,"2719":7,"2720":4,"2721":2,"2722":4,"2723":1,"2724":4,"2725":5,"2726":6,"2727":4,"2728":4,"2729":3,"2730":1,"2731":2,"2732":4,"2733":4,"2734":7,"2735":5,"2736":3,"2737":5,"2738":4,"2739":4,"2740":4,"2741":3,"2742":4,"2743":1,"2744":3,"2745":4,"2746":5,"2747":3,"2748":2,"2749":7,"2750":6,"2751":4,"2752":5,"2753":4,"2754":3,"2755":9,"2756":2,"2757":2,"2758":4,"2759":4,"2760":3,"2761":4,"2762":4,"2763":5,"2764":3,"2765":4,"2766":2,"2767":3,"2768":2,"2769":5,"2770":7,"2771":7,"2772":2,"2773":6,"2774":5,"2775":5,"2776":2,"2777":2,"2778":3,"2779":4,"2780":3,"2781":2,"2782":2,"2783":7,"2784":2,"2785":5,"2786":4,"2787":7,"2788":3,"2789":3,"2790":4,"2791":5,"2792":4,"2793":5,"2794":4,"2795":5,"2796":3,"2797":5,"2798":2,"2799":5,"2800":4,"2801":5,"2802":4,"2803":4,"2804":4,"2805":4,"2806":3,"2807":1,"2808":3,"2809":8,"2810":3,"2811":4,"2812":3,"2813":3,"2814":2,"2815":5,"2816":7,"2817":3,"2818":3,"2819":1,"2820":4,"2821":6,"2822":4,"2823":3,"2824":3,"2825":3,"2826":8,"2827":4,"2828":3,"2829":4,"2830":7,"2831":4,"2832":5,"2833":7,"2834":5,"2835":2,"2836":3,"2837":3,"2838":6,"2839":4,"2840":3,"2841":2,"2842":2,"2843":8,"2844":5,"2845":2,"2846":4,"2847":1,"2848":4,"2849":6,"2850":4,"2851":5,"2852":4,"2853":4,"2854":7,"2855":4,"2856":4,"2857":4,"2858":7,"2859":1,"2860":4,"2861":5,"2862":3,"2863":4,"2864":3,"2865":1,"2866":3,"2867":4,"2868":3,"2869":9,"2870":3,"2871":3,"2872":8,"2873":4,"2874":3,"2875":3,"2876":3,"2877":6,"2878":4,"2879":3,"2880":2,"2881":3,"2882":3,"2883":2,"2884":3,"2885":3,"2886":3,"2887":5,"2888":4,"2889":3,"2890":1,"2891":4,"2892":5,"2893":3,"2894":4,"2895":3,"2896":4,"2897":4,"2898":3,"2899":4,"2900":5,"2901":1,"2902":3,"2903":4,"2904":2,"2905":4,"2906":4,"2907":3,"2908":4,"2909":5,"2910":4,"2911":4,"2912":3,"2913":8,"2914":3,"2915":4,"2916":2,"2917":5,"2918":4,"2919":4,"2920":5,"2921":7,"2922":6,"2923":3,"2924":4,"2925":5,"2926":6,"2927":3,"2928":4,"2929":4,"2930":4,"2931":4,"2932":4,"2933":7,"2934":4,"2935":7,"2936":4,"2937":3,"2938":2,"2939":3,"2940":6,"2941":5,"2942":5,"2943":2,"2944":1,"2945":4,"2946":5,"2947":8,"2948":4,"2949":2,"2950":5,"2951":1,"2952":7,"2953":3,"2954":3,"2955":3,"2956":8,"2957":4,"2958":4,"2959":3,"2960":5,"2961":3,"2962":6,"2963":4,"2964":4,"2965":5,"2966":2,"2967":9,"2968":5,"2969":6,"2970":4,"2971":5,"2972":4,"2973":3,"2974":2,"2975":4,"2976":4,"2977":9,"2978":5,"2979":3,"2980":4,"2981":3,"2982":5,"2983":3,"2984":4,"2985":5,"2986":7,"2987":6,"2988":4,"2989":9,"2990":1,"2991":3,"2992":4,"2993":4,"2994":9,"2995":4,"2996":1,"2997":8,"2998":4,"2999":4,"3000":4,"3001":6,"3002":8,"3003":4,"3004":7,"3005":4,"3006":3,"3007":4,"3008":4,"3009":4,"3010":5,"3011":3,"3012":6,"3013":2,"3014":3,"3015":3,"3016":3,"3017":3,"3018":3,"3019":4,"3020":3,"3021":6,"3022":5,"3023":4,"3024":4,"3025":5,"3026":3,"3027":4,"3028":3,"3029":4,"3030":4,"3031":7,"3032":1,"3033":2,"3034":3,"3035":3,"3036":2,"3037":4,"3038":2,"3039":1,"3040":3,"3041":5,"3042":6,"3043":7,"3044":4,"3045":4,"3046":5,"3047":1,"3048":8,"3049":4,"3050":5,"3051":4,"3052":4,"3053":5,"3054":6,"3055":3,"3056":1,"3057":1,"3058":3,"3059":4,"3060":3,"3061":4,"3062":4,"3063":3,"3064":4,"3065":3,"3066":2,"3067":3,"3068":3,"3069":2,"3070":7,"3071":2,"3072":4,"3073":3,"3074":4,"3075":5,"3076":6,"3077":2,"3078":1,"3079":3,"3080":3,"3081":4,"3082":6,"3083":3,"3084":5,"3085":5,"3086":2,"3087":8,"3088":4,"3089":2,"3090":3,"3091":4,"3092":5,"3093":9,"3094":3,"3095":4,"3096":1,"3097":4,"3098":4,"3099":4,"3100":3,"3101":8,"3102":3,"3103":4,"3104":3,"3105":5,"3106":5,"3107":7,"3108":3,"3109":2,"3110":4,"3111":3,"3112":5,"3113":5,"3114":4,"3115":2,"3116":8,"3117":6,"3118":4,"3119":2,"3120":8,"3121":5,"3122":4,"3123":5,"3124":5,"3125":8,"3126":4,"3127":3,"3128":5,"3129":2,"3130":3,"3131":7,"3132":7,"3133":8,"3134":4,"3135":2,"3136":3,"3137":7,"3138":5,"3139":3,"3140":5,"3141":4,"3142":4,"3143":5,"3144":6,"3145":5,"3146":4,"3147":9,"3148":3,"3149":5,"3150":2,"3151":2,"3152":5,"3153":4,"3154":7,"3155":6,"3156":4,"3157":4,"3158":2,"3159":5,"3160":4,"3161":5,"3162":1,"3163":3,"3164":5,"3165":7,"3166":3,"3167":5,"3168":4,"3169":3,"3170":4,"3171":4,"3172":3,"3173":5,"3174":4,"3175":3,"3176":7,"3177":5,"3178":2,"3179":7,"3180":4,"3181":5,"3182":4,"3183":3,"3184":4,"3185":3,"3186":3,"3187":6,"3188":5,"3189":5,"3190":1,"3191":4,"3192":4,"3193":6,"3194":5,"3195":5,"3196":5,"3197":3,"3198":4,"3199":3,"3200":2,"3201":1,"3202":4,"3203":2,"3204":3,"3205":2,"3206":5,"3207":3,"3208":4,"3209":4,"3210":4,"3211":4,"3212":4,"3213":1,"3214":2,"3215":5,"3216":4,"3217":1,"3218":7,"3219":5,"3220":1,"3221":4,"3222":2,"3223":3,"3224":5,"3225":5,"3226":4,"3227":5,"3228":4,"3229":4,"3230":4,"3231":6,"3232":3,"3233":3,"3234":5,"3235":5,"3236":5,"3237":3,"3238":4,"3239":8,"3240":6,"3241":2,"3242":4,"3243":3,"3244":8,"3245":4,"3246":5,"3247":3,"3248":4,"3249":3,"3250":4,"3251":4,"3252":3,"3253":3,"3254":2,"3255":3,"3256":4,"3257":3,"3258":9,"3259":4,"3260":8,"3261":4,"3262":3,"3263":9,"3264":5,"3265":5,"3266":5,"3267":4,"3268":5,"3269":5,"3270":6,"3271":4,"3272":2,"3273":8,"3274":4,"3275":1,"3276":3,"3277":9,"3278":4,"3279":5,"3280":4,"3281":4,"3282":3,"3283":4,"3284":3,"3285":6,"3286":4,"3287":4,"3288":4,"3289":2,"3290":3,"3291":4,"3292":1,"3293":1,"3294":4,"3295":4,"3296":4,"3297":3,"3298":1,"3299":5,"3300":3,"3301":5,"3302":4,"3303":4,"3304":4,"3305":4,"3306":4,"3307":8,"3308":4,"3309":4,"3310":5,"3311":3,"3312":3,"3313":3,"3314":5,"3315":5,"3316":2,"3317":3,"3318":4,"3319":2,"3320":3,"3321":4,"3322":4,"3323":3,"3324":5,"3325":8,"3326":4,"3327":2,"3328":1,"3329":2,"3330":4,"3331":5,"3332":3,"3333":7,"3334":7,"3335":4,"3336":7,"3337":5,"3338":7,"3339":1,"3340":6,"3341":1,"3342":2,"3343":7,"3344":6,"3345":4,"3346":4,"3347":7,"3348":4,"3349":4,"3350":3,"3351":4,"3352":5,"3353":1,"3354":4,"3355":3,"3356":7,"3357":4,"3358":5,"3359":2,"3360":5,"3361":3,"3362":3,"3363":2,"3364":3,"3365":5,"3366":4,"3367":8,"3368":4,"3369":3,"3370":2,"3371":3,"3372":3,"3373":3,"3374":4,"3375":5,"3376":7,"3377":3,"3378":2,"3379":4,"3380":6,"3381":6,"3382":5,"3383":5,"3384":3,"3385":3,"3386":6,"3387":4,"3388":4,"3389":5,"3390":3,"3391":4,"3392":6,"3393":5,"3394":1,"3395":3,"3396":5,"3397":4,"3398":4,"3399":2,"3400":4,"3401":1,"3402":7,"3403":4,"3404":4,"3405":3,"3406":3,"3407":5,"3408":2,"3409":4,"3410":4,"3411":2,"3412":3,"3413":4,"3414":5,"3415":2,"3416":8,"3417":3,"3418":4,"3419":3,"3420":4,"3421":4,"3422":5,"3423":3,"3424":4,"3425":3,"3426":3,"3427":1,"3428":4,"3429":5,"3430":5,"3431":3,"3432":4,"3433":3,"3434":3,"3435":7,"3436":7,"3437":5,"3438":3,"3439":2,"3440":4,"3441":4,"3442":4,"3443":4,"3444":4,"3445":4,"3446":1,"3447":3,"3448":3,"3449":5,"3450":1,"3451":4,"3452":4,"3453":4,"3454":4,"3455":9,"3456":3,"3457":2,"3458":3,"3459":3,"3460":5,"3461":5,"3462":4,"3463":2,"3464":6,"3465":4,"3466":3,"3467":5,"3468":4,"3469":4,"3470":5,"3471":4,"3472":8,"3473":4,"3474":5,"3475":3,"3476":3,"3477":3,"3478":5,"3479":6,"3480":4,"3481":4,"3482":3,"3483":4,"3484":4,"3485":3,"3486":4,"3487":6,"3488":2,"3489":1,"3490":7,"3491":9,"3492":4,"3493":3,"3494":2,"3495":5,"3496":8,"3497":3,"3498":4,"3499":4,"3500":5,"3501":4,"3502":5,"3503":4,"3504":2,"3505":5,"3506":5,"3507":5,"3508":2,"3509":4,"3510":3,"3511":5,"3512":3,"3513":3,"3514":3,"3515":6,"3516":4,"3517":3,"3518":2,"3519":3,"3520":4,"3521":4,"3522":2,"3523":4,"3524":5,"3525":4,"3526":7,"3527":5,"3528":3,"3529":3,"3530":2,"3531":3,"3532":3,"3533":4,"3534":2,"3535":2,"3536":3,"3537":3,"3538":4,"3539":4,"3540":4,"3541":3,"3542":2,"3543":3,"3544":3,"3545":4,"3546":3,"3547":2,"3548":5,"3549":4,"3550":3,"3551":3,"3552":5,"3553":3,"3554":5,"3555":1,"3556":3,"3557":3,"3558":5,"3559":3,"3560":1,"3561":3,"3562":3,"3563":2,"3564":9,"3565":2,"3566":7,"3567":5,"3568":5,"3569":5,"3570":4,"3571":2,"3572":3,"3573":2,"3574":4,"3575":4,"3576":6,"3577":4,"3578":4,"3579":2,"3580":4,"3581":2,"3582":5,"3583":5,"3584":5,"3585":4,"3586":6,"3587":3,"3588":8,"3589":3,"3590":2,"3591":3,"3592":2,"3593":4,"3594":4,"3595":5,"3596":1,"3597":8,"3598":4,"3599":4,"3600":5,"3601":3,"3602":2,"3603":4,"3604":4,"3605":4,"3606":2,"3607":8,"3608":5,"3609":3,"3610":4,"3611":7,"3612":6,"3613":1,"3614":4,"3615":3,"3616":4,"3617":4,"3618":4,"3619":7,"3620":4,"3621":2,"3622":3,"3623":7,"3624":7,"3625":1,"3626":3,"3627":4,"3628":1,"3629":4,"3630":3,"3631":2,"3632":4,"3633":1,"3634":6,"3635":4,"3636":5,"3637":1,"3638":5,"3639":1,"3640":3,"3641":4,"3642":5,"3643":4,"3644":4,"3645":4,"3646":3,"3647":4,"3648":4,"3649":6,"3650":4,"3651":2,"3652":7,"3653":7,"3654":2,"3655":4,"3656":3,"3657":4,"3658":4,"3659":4,"3660":7,"3661":4,"3662":9,"3663":6,"3664":4,"3665":9,"3666":4,"3667":4,"3668":7,"3669":3,"3670":3,"3671":8,"3672":1,"3673":6,"3674":2,"3675":3,"3676":3,"3677":4,"3678":5,"3679":4,"3680":3,"3681":5,"3682":5,"3683":6,"3684":4,"3685":4,"3686":5,"3687":3,"3688":3,"3689":8,"3690":4,"3691":3,"3692":9,"3693":6,"3694":5,"3695":5,"3696":1,"3697":3,"3698":2,"3699":4,"3700":5,"3701":5,"3702":7,"3703":3,"3704":4,"3705":4,"3706":1,"3707":4,"3708":3,"3709":3,"3710":5,"3711":3,"3712":4,"3713":8,"3714":5,"3715":5,"3716":4,"3717":3,"3718":4,"3719":1,"3720":3,"3721":2,"3722":8,"3723":3,"3724":4,"3725":4,"3726":4,"3727":4,"3728":7,"3729":4,"3730":3,"3731":8,"3732":4,"3733":3,"3734":6,"3735":2,"3736":4,"3737":6,"3738":4,"3739":1,"3740":3,"3741":4,"3742":4,"3743":6,"3744":5,"3745":3,"3746":3,"3747":5,"3748":3,"3749":3,"3750":9,"3751":4,"3752":2,"3753":6,"3754":3,"3755":4,"3756":4,"3757":3,"3758":3,"3759":5,"3760":3,"3761":3,"3762":6,"3763":4,"3764":1,"3765":2,"3766":2,"3767":5,"3768":3,"3769":4,"3770":1,"3771":7,"3772":3,"3773":6,"3774":4,"3775":4,"3776":4,"3777":6,"3778":3,"3779":3,"3780":1,"3781":3,"3782":4,"3783":3,"3784":3,"3785":5,"3786":3,"3787":2,"3788":6,"3789":3,"3790":4,"3791":3,"3792":7,"3793":3,"3794":5,"3795":4,"3796":5,"3797":4,"3798":4,"3799":3,"3800":6,"3801":3,"3802":5,"3803":3,"3804":3,"3805":3,"3806":4,"3807":3,"3808":3,"3809":4,"3810":7,"3811":4,"3812":3,"3813":2,"3814":2,"3815":4,"3816":6,"3817":7,"3818":4,"3819":5,"3820":4,"3821":3,"3822":4,"3823":5,"3824":4,"3825":2,"3826":2,"3827":6,"3828":6,"3829":4,"3830":2,"3831":4,"3832":3,"3833":4,"3834":3,"3835":3,"3836":3,"3837":2,"3838":2,"3839":7,"3840":8,"3841":4,"3842":4,"3843":4,"3844":7,"3845":6,"3846":4,"3847":3,"3848":3,"3849":3,"3850":3,"3851":4,"3852":5,"3853":3,"3854":2,"3855":5,"3856":9,"3857":3,"3858":2,"3859":8,"3860":3,"3861":4,"3862":4,"3863":3,"3864":8,"3865":8,"3866":4,"3867":5,"3868":5,"3869":3,"3870":3,"3871":3,"3872":3,"3873":3,"3874":7,"3875":3,"3876":5,"3877":6,"3878":4,"3879":4,"3880":3,"3881":3,"3882":7,"3883":3,"3884":4,"3885":4,"3886":4,"3887":8,"3888":3,"3889":2,"3890":9,"3891":4,"3892":3,"3893":5,"3894":3,"3895":1,"3896":4,"3897":7,"3898":7,"3899":5,"3900":7,"3901":4,"3902":3,"3903":4,"3904":8,"3905":5,"3906":3,"3907":6,"3908":2,"3909":3,"3910":2,"3911":3,"3912":4,"3913":4,"3914":6,"3915":3,"3916":2,"3917":4,"3918":4,"3919":4,"3920":3,"3921":5,"3922":3,"3923":4,"3924":7,"3925":4,"3926":4,"3927":9,"3928":4,"3929":5,"3930":9,"3931":3,"3932":3,"3933":3,"3934":1,"3935":2,"3936":5,"3937":4,"3938":2,"3939":7,"3940":1,"3941":1,"3942":4,"3943":5,"3944":3,"3945":4,"3946":2,"3947":2,"3948":4,"3949":5,"3950":4,"3951":4,"3952":5,"3953":3,"3954":6,"3955":7,"3956":3,"3957":4,"3958":6,"3959":4,"3960":2,"3961":2,"3962":4,"3963":4,"3964":4,"3965":3,"3966":5,"3967":3,"3968":2,"3969":4,"3970":8,"3971":4,"3972":2,"3973":4,"3974":5,"3975":4,"3976":3,"3977":6,"3978":3,"3979":3,"3980":4,"3981":8,"3982":8,"3983":4,"3984":4,"3985":5,"3986":4,"3987":4,"3988":3,"3989":4,"3990":4,"3991":1,"3992":7,"3993":2,"3994":1,"3995":7,"3996":7,"3997":3,"3998":7,"3999":8,"4000":5,"4001":5,"4002":4,"4003":5,"4004":7,"4005":3,"4006":3,"4007":8,"4008":3,"4009":5,"4010":3,"4011":5,"4012":5,"4013":3,"4014":4,"4015":2,"4016":1,"4017":4,"4018":4,"4019":7,"4020":7,"4021":1,"4022":2,"4023":3,"4024":2,"4025":5,"4026":4,"4027":3,"4028":2,"4029":1,"4030":4,"4031":5,"4032":1,"4033":5,"4034":5,"4035":4,"4036":4,"4037":4,"4038":4,"4039":9,"4040":4,"4041":2,"4042":2,"4043":3,"4044":3,"4045":4,"4046":3,"4047":5,"4048":3,"4049":4,"4050":3,"4051":8,"4052":5,"4053":3,"4054":9,"4055":3,"4056":3,"4057":7,"4058":4,"4059":8,"4060":2,"4061":7,"4062":5,"4063":3,"4064":2,"4065":4,"4066":5,"4067":4,"4068":4,"4069":3,"4070":3,"4071":4,"4072":5,"4073":3,"4074":2,"4075":9,"4076":3,"4077":6,"4078":4,"4079":3,"4080":4,"4081":4,"4082":2,"4083":6,"4084":5,"4085":4,"4086":8,"4087":3,"4088":3,"4089":5,"4090":5,"4091":6,"4092":2,"4093":3,"4094":4,"4095":3,"4096":8,"4097":3,"4098":4,"4099":4,"4100":5,"4101":4,"4102":5,"4103":4,"4104":3,"4105":4,"4106":5,"4107":4,"4108":9,"4109":1,"4110":4,"4111":3,"4112":2,"4113":1,"4114":9,"4115":5,"4116":3,"4117":5,"4118":4,"4119":4,"4120":6,"4121":3,"4122":3,"4123":6,"4124":7,"4125":1,"4126":4,"4127":2,"4128":5,"4129":2,"4130":3,"4131":3,"4132":5,"4133":4,"4134":5,"4135":4,"4136":5,"4137":4,"4138":4,"4139":4,"4140":4,"4141":4,"4142":1,"4143":1,"4144":3,"4145":3,"4146":3,"4147":9,"4148":4,"4149":2,"4150":3,"4151":3,"4152":2,"4153":5,"4154":9,"4155":5,"4156":2,"4157":5,"4158":5,"4159":3,"4160":3,"4161":4,"4162":4,"4163":9,"4164":4,"4165":3,"4166":3,"4167":4,"4168":2,"4169":3,"4170":1,"4171":7,"4172":3,"4173":4,"4174":4,"4175":4,"4176":5,"4177":2,"4178":4,"4179":7,"4180":8,"4181":7,"4182":5,"4183":4,"4184":3,"4185":6,"4186":4,"4187":7,"4188":5,"4189":3,"4190":1,"4191":3,"4192":4,"4193":4,"4194":2,"4195":4,"4196":4,"4197":1,"4198":4,"4199":3,"4200":3,"4201":5,"4202":5,"4203":2,"4204":2,"4205":3,"4206":4,"4207":2,"4208":4,"4209":2,"4210":3,"4211":5,"4212":6,"4213":3,"4214":3,"4215":7,"4216":1,"4217":3,"4218":4,"4219":4,"4220":5,"4221":1,"4222":3,"4223":3,"4224":6,"4225":5,"4226":4,"4227":4,"4228":4,"4229":5,"4230":4,"4231":4,"4232":6,"4233":3,"4234":5,"4235":2,"4236":3,"4237":3,"4238":3,"4239":6,"4240":5,"4241":3,"4242":2,"4243":6,"4244":3,"4245":3,"4246":4,"4247":4,"4248":4,"4249":8,"4250":3,"4251":3,"4252":4,"4253":4,"4254":9,"4255":4,"4256":3,"4257":7,"4258":2,"4259":8,"4260":3,"4261":3,"4262":4,"4263":4,"4264":4,"4265":3,"4266":4,"4267":5,"4268":4,"4269":4,"4270":2,"4271":3,"4272":5,"4273":5,"4274":6,"4275":2,"4276":5,"4277":3,"4278":6,"4279":4,"4280":3,"4281":3,"4282":2,"4283":5,"4284":4,"4285":5,"4286":5,"4287":3,"4288":5,"4289":4,"4290":3,"4291":3,"4292":5,"4293":3,"4294":2,"4295":3,"4296":5,"4297":2,"4298":3,"4299":5,"4300":3,"4301":4,"4302":3,"4303":3,"4304":7,"4305":5,"4306":4,"4307":5,"4308":3,"4309":4,"4310":5,"4311":4,"4312":2,"4313":4,"4314":4,"4315":4,"4316":5,"4317":1,"4318":3,"4319":2,"4320":3,"4321":4,"4322":3,"4323":9,"4324":4,"4325":3,"4326":4,"4327":7,"4328":2,"4329":4,"4330":4,"4331":4,"4332":1,"4333":2,"4334":4,"4335":5,"4336":4,"4337":3,"4338":1,"4339":4,"4340":6,"4341":5,"4342":2,"4343":3,"4344":2,"4345":5,"4346":5,"4347":4,"4348":4,"4349":4,"4350":4,"4351":3,"4352":3,"4353":4,"4354":4,"4355":3,"4356":7,"4357":6,"4358":3,"4359":3,"4360":4,"4361":4,"4362":5,"4363":3,"4364":3,"4365":6,"4366":2,"4367":3,"4368":2,"4369":3,"4370":5,"4371":3,"4372":4,"4373":4,"4374":4,"4375":4,"4376":3,"4377":4,"4378":7,"4379":1,"4380":9,"4381":4,"4382":5,"4383":3,"4384":3,"4385":5,"4386":9,"4387":2,"4388":3,"4389":2,"4390":2,"4391":4,"4392":3,"4393":4,"4394":4,"4395":4,"4396":7,"4397":3,"4398":4,"4399":3,"4400":9,"4401":4,"4402":2,"4403":3,"4404":7,"4405":4,"4406":3,"4407":4,"4408":4,"4409":5,"4410":3,"4411":3,"4412":3,"4413":4,"4414":4,"4415":5,"4416":2,"4417":3,"4418":5,"4419":3,"4420":4,"4421":4,"4422":3,"4423":5,"4424":4,"4425":6,"4426":6,"4427":4,"4428":4,"4429":4,"4430":4,"4431":4,"4432":3,"4433":4,"4434":3,"4435":4,"4436":4,"4437":7,"4438":3,"4439":3,"4440":5,"4441":7,"4442":2,"4443":8,"4444":4,"4445":3,"4446":4,"4447":2,"4448":3,"4449":4,"4450":4,"4451":5,"4452":1,"4453":3,"4454":9,"4455":5,"4456":2,"4457":3,"4458":4,"4459":2,"4460":3,"4461":2,"4462":3,"4463":6,"4464":3,"4465":4,"4466":2,"4467":1,"4468":3,"4469":3,"4470":2,"4471":3,"4472":7,"4473":8,"4474":8,"4475":4,"4476":5,"4477":5,"4478":6,"4479":7,"4480":6,"4481":3,"4482":9,"4483":3,"4484":2,"4485":5,"4486":4,"4487":6,"4488":5,"4489":4,"4490":5,"4491":4,"4492":6,"4493":3,"4494":4,"4495":6,"4496":5,"4497":5,"4498":6,"4499":5,"4500":3,"4501":8,"4502":2,"4503":7,"4504":5,"4505":6,"4506":4,"4507":9,"4508":4,"4509":1,"4510":5,"4511":5,"4512":3,"4513":5,"4514":4,"4515":4,"4516":5,"4517":3,"4518":1,"4519":7,"4520":2,"4521":8,"4522":5,"4523":7,"4524":3,"4525":3,"4526":4,"4527":4,"4528":4,"4529":1,"4530":7,"4531":3,"4532":4,"4533":3,"4534":1,"4535":3,"4536":5,"4537":4,"4538":3,"4539":7,"4540":3,"4541":3,"4542":3,"4543":5,"4544":1,"4545":5,"4546":3,"4547":2,"4548":9,"4549":4,"4550":4,"4551":1,"4552":3,"4553":5,"4554":4,"4555":4,"4556":2,"4557":8,"4558":1,"4559":1,"4560":5,"4561":5,"4562":4,"4563":6,"4564":3,"4565":2,"4566":7,"4567":3,"4568":5,"4569":3,"4570":3,"4571":8,"4572":5,"4573":2,"4574":4,"4575":7,"4576":4,"4577":3,"4578":3,"4579":3,"4580":4,"4581":4,"4582":7,"4583":3,"4584":2,"4585":5,"4586":4,"4587":6,"4588":4,"4589":4,"4590":3,"4591":5,"4592":4,"4593":4,"4594":5,"4595":2,"4596":3,"4597":4,"4598":4,"4599":9,"4600":2,"4601":1,"4602":3,"4603":3,"4604":4,"4605":3,"4606":4,"4607":3,"4608":2,"4609":8,"4610":4,"4611":4,"4612":1,"4613":2,"4614":1,"4615":1,"4616":4,"4617":4,"4618":4,"4619":3,"4620":5,"4621":2,"4622":2,"4623":4,"4624":4,"4625":2,"4626":4,"4627":8,"4628":4,"4629":3,"4630":6,"4631":4,"4632":5,"4633":3,"4634":4,"4635":1,"4636":4,"4637":8,"4638":3,"4639":5,"4640":7,"4641":2,"4642":4,"4643":8,"4644":4,"4645":5,"4646":4,"4647":4,"4648":2,"4649":3,"4650":5,"4651":2,"4652":1,"4653":1,"4654":4,"4655":4,"4656":4,"4657":3,"4658":5,"4659":3,"4660":5,"4661":4,"4662":2,"4663":7,"4664":7,"4665":3,"4666":4,"4667":3,"4668":2,"4669":3,"4670":4,"4671":4,"4672":7,"4673":5,"4674":3,"4675":4,"4676":3,"4677":3,"4678":4,"4679":3,"4680":5,"4681":6,"4682":3,"4683":4,"4684":3,"4685":2,"4686":2,"4687":4,"4688":3,"4689":4,"4690":1,"4691":3,"4692":5,"4693":4,"4694":3,"4695":6,"4696":5,"4697":3,"4698":4,"4699":6,"4700":5,"4701":4,"4702":2,"4703":4,"4704":4,"4705":4,"4706":3,"4707":3,"4708":3,"4709":3,"4710":6,"4711":6,"4712":3,"4713":1,"4714":2,"4715":4,"4716":6,"4717":3,"4718":4,"4719":4,"4720":1,"4721":3,"4722":2,"4723":4,"4724":3,"4725":2,"4726":5,"4727":1,"4728":1,"4729":3,"4730":3,"4731":3,"4732":5,"4733":4,"4734":5,"4735":2,"4736":3,"4737":8,"4738":5,"4739":5,"4740":4,"4741":7,"4742":4,"4743":3,"4744":6,"4745":2,"4746":6,"4747":4,"4748":4,"4749":7,"4750":9,"4751":3,"4752":3,"4753":4,"4754":3,"4755":8,"4756":4,"4757":2,"4758":4,"4759":4,"4760":4,"4761":5,"4762":3,"4763":4,"4764":1,"4765":4,"4766":4,"4767":5,"4768":4,"4769":4,"4770":4,"4771":3,"4772":3,"4773":3,"4774":3,"4775":3,"4776":5,"4777":3,"4778":5,"4779":7,"4780":7,"4781":4,"4782":6,"4783":3,"4784":2,"4785":4,"4786":3,"4787":2,"4788":8,"4789":3,"4790":3,"4791":5,"4792":4,"4793":2,"4794":4,"4795":5,"4796":3,"4797":2,"4798":5,"4799":4,"4800":5,"4801":7,"4802":5,"4803":3,"4804":4,"4805":3,"4806":4,"4807":1,"4808":6,"4809":3,"4810":4,"4811":4,"4812":5,"4813":3,"4814":3,"4815":3,"4816":5,"4817":4,"4818":3,"4819":4,"4820":3,"4821":3,"4822":3,"4823":1,"4824":4,"4825":4,"4826":5,"4827":2,"4828":4,"4829":2,"4830":3,"4831":5,"4832":4,"4833":4,"4834":2,"4835":4,"4836":7,"4837":5,"4838":3,"4839":5,"4840":4,"4841":5,"4842":8,"4843":3,"4844":4,"4845":2,"4846":8,"4847":7,"4848":4,"4849":4,"4850":3,"4851":4,"4852":3,"4853":3,"4854":4,"4855":3,"4856":4,"4857":4,"4858":4,"4859":1,"4860":2,"4861":1,"4862":4,"4863":6,"4864":4,"4865":9,"4866":3,"4867":5,"4868":4,"4869":5,"4870":3,"4871":7,"4872":4,"4873":5,"4874":5,"4875":3,"4876":4,"4877":4,"4878":4,"4879":3,"4880":7,"4881":4,"4882":5,"4883":4,"4884":3,"4885":2,"4886":6,"4887":5,"4888":7,"4889":2,"4890":2,"4891":3,"4892":4,"4893":3,"4894":5,"4895":5,"4896":5,"4897":4,"4898":7,"4899":6,"4900":4,"4901":2,"4902":4,"4903":5,"4904":4,"4905":3,"4906":4,"4907":4,"4908":3,"4909":8,"4910":5,"4911":7,"4912":4,"4913":4,"4914":4,"4915":4,"4916":4,"4917":4,"4918":5,"4919":3,"4920":3,"4921":2,"4922":3,"4923":1,"4924":5,"4925":6,"4926":4,"4927":3,"4928":5,"4929":3,"4930":5,"4931":3,"4932":3,"4933":8,"4934":6,"4935":3,"4936":3,"4937":4,"4938":4,"4939":4,"4940":4,"4941":4,"4942":4,"4943":4,"4944":9,"4945":4,"4946":3,"4947":3,"4948":2,"4949":4,"4950":3,"4951":2,"4952":4,"4953":4,"4954":4,"4955":2,"4956":3,"4957":4,"4958":4,"4959":4,"4960":3,"4961":4,"4962":5,"4963":5,"4964":3,"4965":3,"4966":1,"4967":4,"4968":2,"4969":6,"4970":5,"4971":2,"4972":5,"4973":5,"4974":5,"4975":4,"4976":5,"4977":3,"4978":7,"4979":3,"4980":3,"4981":2,"4982":5,"4983":1,"4984":6,"4985":9,"4986":5,"4987":5,"4988":4,"4989":3,"4990":3,"4991":4,"4992":3,"4993":4,"4994":5,"4995":6,"4996":4,"4997":3,"4998":8,"4999":1,"5000":3,"5001":5,"5002":7,"5003":3,"5004":3,"5005":4,"5006":4,"5007":3,"5008":9,"5009":3,"5010":4,"5011":2,"5012":2,"5013":4,"5014":3,"5015":1,"5016":7,"5017":5,"5018":5,"5019":2,"5020":2,"5021":4,"5022":6,"5023":4,"5024":4,"5025":4,"5026":5,"5027":2,"5028":3,"5029":4,"5030":4,"5031":7,"5032":5,"5033":4,"5034":4,"5035":2,"5036":4,"5037":4,"5038":5,"5039":6,"5040":4,"5041":5,"5042":3,"5043":4,"5044":3,"5045":2,"5046":4,"5047":1,"5048":3,"5049":3,"5050":4,"5051":1,"5052":3,"5053":3,"5054":4,"5055":3,"5056":4,"5057":7,"5058":6,"5059":5,"5060":6,"5061":7,"5062":1,"5063":3,"5064":2,"5065":8,"5066":3,"5067":5,"5068":4,"5069":2,"5070":4,"5071":8,"5072":2,"5073":4,"5074":3,"5075":5,"5076":4,"5077":3,"5078":9,"5079":4,"5080":5,"5081":5,"5082":3,"5083":3,"5084":3,"5085":5,"5086":3,"5087":2,"5088":6,"5089":8,"5090":4,"5091":4,"5092":3,"5093":7,"5094":8,"5095":4,"5096":4,"5097":3,"5098":4,"5099":9,"5100":3,"5101":5,"5102":5,"5103":4,"5104":4,"5105":4,"5106":5,"5107":4,"5108":1,"5109":2,"5110":3,"5111":3,"5112":4,"5113":2,"5114":3,"5115":5,"5116":5,"5117":2,"5118":2,"5119":3,"5120":3,"5121":5,"5122":3,"5123":1,"5124":4,"5125":4,"5126":6,"5127":3,"5128":4,"5129":5,"5130":6,"5131":3,"5132":3,"5133":4,"5134":7,"5135":4,"5136":4,"5137":4,"5138":1,"5139":1,"5140":4,"5141":6,"5142":4,"5143":5,"5144":3,"5145":3,"5146":6,"5147":5,"5148":3,"5149":5,"5150":3,"5151":5,"5152":4,"5153":7,"5154":3,"5155":8,"5156":4,"5157":4,"5158":4,"5159":3,"5160":5,"5161":1,"5162":3,"5163":4,"5164":4,"5165":5,"5166":2,"5167":1,"5168":3,"5169":4,"5170":3,"5171":3,"5172":2,"5173":4,"5174":4,"5175":7,"5176":6,"5177":2,"5178":5,"5179":7,"5180":3,"5181":3,"5182":2,"5183":3,"5184":5,"5185":5,"5186":3,"5187":5,"5188":4,"5189":9,"5190":2,"5191":4,"5192":4,"5193":4,"5194":8,"5195":2,"5196":4,"5197":4,"5198":3,"5199":5,"5200":3,"5201":4,"5202":4,"5203":3,"5204":7,"5205":2,"5206":4,"5207":3,"5208":4,"5209":4,"5210":4,"5211":4,"5212":1,"5213":4,"5214":4,"5215":2,"5216":3,"5217":2,"5218":6,"5219":3,"5220":3,"5221":2,"5222":5,"5223":4,"5224":4,"5225":2,"5226":5,"5227":4,"5228":9,"5229":2,"5230":2,"5231":5,"5232":2,"5233":4,"5234":5,"5235":3,"5236":3,"5237":8,"5238":4,"5239":4,"5240":3,"5241":4,"5242":4,"5243":9,"5244":4,"5245":5,"5246":6,"5247":4,"5248":3,"5249":5,"5250":1,"5251":4,"5252":5,"5253":3,"5254":4,"5255":3,"5256":2,"5257":4,"5258":2,"5259":5,"5260":2,"5261":3,"5262":3,"5263":3,"5264":3,"5265":4,"5266":3,"5267":4,"5268":4,"5269":4,"5270":5,"5271":3,"5272":4,"5273":3,"5274":1,"5275":4,"5276":2,"5277":2,"5278":5,"5279":2,"5280":3,"5281":7,"5282":3,"5283":3,"5284":5,"5285":2,"5286":3,"5287":4,"5288":5,"5289":3,"5290":3,"5291":4,"5292":6,"5293":4,"5294":5,"5295":4,"5296":6,"5297":1,"5298":4,"5299":3,"5300":3,"5301":3,"5302":5,"5303":6,"5304":4,"5305":6,"5306":4,"5307":2,"5308":3,"5309":2,"5310":2,"5311":3,"5312":8,"5313":9,"5314":5,"5315":3,"5316":2,"5317":4,"5318":4,"5319":4,"5320":4,"5321":3,"5322":5,"5323":3,"5324":3,"5325":5,"5326":5,"5327":3,"5328":4,"5329":5,"5330":3,"5331":6,"5332":5,"5333":3,"5334":3,"5335":7,"5336":3,"5337":1,"5338":5,"5339":7,"5340":4,"5341":5,"5342":8,"5343":6,"5344":3,"5345":9,"5346":2,"5347":3,"5348":4,"5349":8,"5350":3,"5351":4,"5352":3,"5353":5,"5354":3,"5355":5,"5356":9,"5357":7,"5358":4,"5359":5,"5360":3,"5361":4,"5362":4,"5363":4,"5364":3,"5365":7,"5366":9,"5367":5,"5368":1,"5369":4,"5370":6,"5371":9,"5372":4,"5373":2,"5374":4,"5375":3,"5376":3,"5377":4,"5378":4,"5379":4,"5380":3,"5381":4,"5382":3,"5383":4,"5384":5,"5385":3,"5386":5,"5387":1,"5388":3,"5389":7,"5390":7,"5391":3,"5392":3,"5393":4,"5394":1,"5395":4,"5396":4,"5397":4,"5398":4,"5399":5,"5400":4,"5401":4,"5402":4,"5403":4,"5404":4,"5405":8,"5406":4,"5407":4,"5408":4,"5409":3,"5410":5,"5411":5,"5412":4,"5413":4,"5414":7,"5415":3,"5416":2,"5417":8,"5418":4,"5419":4,"5420":5,"5421":2,"5422":4,"5423":4,"5424":4,"5425":1,"5426":4,"5427":4,"5428":4,"5429":1,"5430":3,"5431":4,"5432":2,"5433":6,"5434":6,"5435":1,"5436":3,"5437":4,"5438":7,"5439":4,"5440":4,"5441":1,"5442":5,"5443":3,"5444":3,"5445":1,"5446":2,"5447":3,"5448":5,"5449":3,"5450":4,"5451":2,"5452":4,"5453":4,"5454":3,"5455":5,"5456":3,"5457":4,"5458":3,"5459":4,"5460":4,"5461":3,"5462":4,"5463":4,"5464":4,"5465":6,"5466":8,"5467":4,"5468":6,"5469":3,"5470":3,"5471":3,"5472":3,"5473":5,"5474":6,"5475":1,"5476":4,"5477":4,"5478":4,"5479":3,"5480":4,"5481":3,"5482":7,"5483":5,"5484":4,"5485":7,"5486":1,"5487":4,"5488":5,"5489":6,"5490":4,"5491":3,"5492":3,"5493":3,"5494":6,"5495":4,"5496":3,"5497":5,"5498":9,"5499":3,"5500":1,"5501":5,"5502":4,"5503":3,"5504":4,"5505":6,"5506":4,"5507":4,"5508":4,"5509":4,"5510":3,"5511":5,"5512":3,"5513":7,"5514":5,"5515":3,"5516":4,"5517":6,"5518":6,"5519":3,"5520":7,"5521":4,"5522":3,"5523":1,"5524":3,"5525":4,"5526":4,"5527":5,"5528":2,"5529":3,"5530":3,"5531":2,"5532":3,"5533":2,"5534":2,"5535":5,"5536":4,"5537":2,"5538":1,"5539":5,"5540":8,"5541":3,"5542":1,"5543":3,"5544":4,"5545":7,"5546":3,"5547":3,"5548":2,"5549":4,"5550":4,"5551":4,"5552":4,"5553":4,"5554":7,"5555":3,"5556":5,"5557":5,"5558":6,"5559":3,"5560":4,"5561":5,"5562":5,"5563":5,"5564":9,"5565":5,"5566":2,"5567":4,"5568":6,"5569":5,"5570":8,"5571":3,"5572":9,"5573":8,"5574":2,"5575":3,"5576":3,"5577":3,"5578":3,"5579":5,"5580":2,"5581":2,"5582":4,"5583":5,"5584":3,"5585":5,"5586":5,"5587":5,"5588":5,"5589":2,"5590":7,"5591":4,"5592":4,"5593":3,"5594":4,"5595":8,"5596":2,"5597":7,"5598":2,"5599":5,"5600":4,"5601":5,"5602":4,"5603":3,"5604":1,"5605":7,"5606":3,"5607":1,"5608":4,"5609":4,"5610":7,"5611":4,"5612":5,"5613":2,"5614":7,"5615":4,"5616":4,"5617":4,"5618":1,"5619":6,"5620":1,"5621":6,"5622":7,"5623":4,"5624":7,"5625":6,"5626":3,"5627":6,"5628":5,"5629":4,"5630":4,"5631":5,"5632":4,"5633":5,"5634":5,"5635":4,"5636":3,"5637":5,"5638":2,"5639":3,"5640":4,"5641":9,"5642":5,"5643":5,"5644":5,"5645":4,"5646":3,"5647":2,"5648":3,"5649":2,"5650":4,"5651":2,"5652":2,"5653":4,"5654":4,"5655":1,"5656":5,"5657":4,"5658":4,"5659":4,"5660":3,"5661":3,"5662":2,"5663":9,"5664":4,"5665":2,"5666":3,"5667":3,"5668":5,"5669":3,"5670":5,"5671":5,"5672":3,"5673":3,"5674":3,"5675":1,"5676":3,"5677":4,"5678":2,"5679":3,"5680":4,"5681":4,"5682":6,"5683":3,"5684":2,"5685":4,"5686":4,"5687":2,"5688":3,"5689":8,"5690":2,"5691":6,"5692":1,"5693":1,"5694":3,"5695":6,"5696":4,"5697":4,"5698":2,"5699":8,"5700":1,"5701":4,"5702":6,"5703":4,"5704":4,"5705":5,"5706":3,"5707":2,"5708":3,"5709":3,"5710":4,"5711":5,"5712":4,"5713":7,"5714":4,"5715":7,"5716":4,"5717":6,"5718":2,"5719":2,"5720":3,"5721":4,"5722":4,"5723":5,"5724":4,"5725":3,"5726":3,"5727":5,"5728":3,"5729":4,"5730":3,"5731":4,"5732":4,"5733":2,"5734":2,"5735":3,"5736":2,"5737":5,"5738":5,"5739":5,"5740":2,"5741":4,"5742":2,"5743":3,"5744":9,"5745":4,"5746":4,"5747":5,"5748":7,"5749":3,"5750":5,"5751":4,"5752":4,"5753":5,"5754":5,"5755":3,"5756":6,"5757":8,"5758":4,"5759":4,"5760":5,"5761":9,"5762":7,"5763":3,"5764":2,"5765":4,"5766":4,"5767":4,"5768":1,"5769":7,"5770":5,"5771":5,"5772":9,"5773":1,"5774":3,"5775":3,"5776":8,"5777":5,"5778":4,"5779":5,"5780":4,"5781":4,"5782":5,"5783":5,"5784":4,"5785":4,"5786":3,"5787":1,"5788":7,"5789":2,"5790":4,"5791":6,"5792":4,"5793":8,"5794":5,"5795":3,"5796":3,"5797":3,"5798":7,"5799":2,"5800":3,"5801":3,"5802":4,"5803":3,"5804":3,"5805":3,"5806":4,"5807":4,"5808":2,"5809":5,"5810":3,"5811":6,"5812":7,"5813":4,"5814":3,"5815":1,"5816":3,"5817":4,"5818":1,"5819":3,"5820":2,"5821":1,"5822":3,"5823":4,"5824":4,"5825":2,"5826":4,"5827":4,"5828":2,"5829":4,"5830":3,"5831":5,"5832":3,"5833":5,"5834":3,"5835":3,"5836":3,"5837":3,"5838":4,"5839":4,"5840":4,"5841":4,"5842":5,"5843":5,"5844":2,"5845":5,"5846":4,"5847":3,"5848":7,"5849":3,"5850":7,"5851":3,"5852":2,"5853":3,"5854":3,"5855":5,"5856":3,"5857":4,"5858":4,"5859":5,"5860":4,"5861":3,"5862":2,"5863":4,"5864":3,"5865":8,"5866":3,"5867":4,"5868":2,"5869":4,"5870":4,"5871":5,"5872":5,"5873":4,"5874":8,"5875":3,"5876":4,"5877":3,"5878":4,"5879":8,"5880":3,"5881":1,"5882":5,"5883":4,"5884":4,"5885":3,"5886":4,"5887":3,"5888":3,"5889":3,"5890":4,"5891":3,"5892":4,"5893":3,"5894":3,"5895":4,"5896":6,"5897":4,"5898":3,"5899":3,"5900":4,"5901":3,"5902":3,"5903":7,"5904":2,"5905":5,"5906":4,"5907":5,"5908":5,"5909":2,"5910":4,"5911":4,"5912":7,"5913":4,"5914":4,"5915":4,"5916":2,"5917":8,"5918":4,"5919":4,"5920":4,"5921":9,"5922":6,"5923":6,"5924":3,"5925":1,"5926":7,"5927":3,"5928":4,"5929":3,"5930":4,"5931":8,"5932":3,"5933":4,"5934":3,"5935":3,"5936":5,"5937":3,"5938":5,"5939":1,"5940":4,"5941":7,"5942":3,"5943":2,"5944":3,"5945":5,"5946":2,"5947":7,"5948":3,"5949":3,"5950":5,"5951":3,"5952":4,"5953":2,"5954":6,"5955":4,"5956":2,"5957":3,"5958":6,"5959":3,"5960":4,"5961":4,"5962":1,"5963":2,"5964":4,"5965":7,"5966":3,"5967":5,"5968":5,"5969":5,"5970":5,"5971":4,"5972":5,"5973":4,"5974":4,"5975":3,"5976":5,"5977":2,"5978":7,"5979":4,"5980":3,"5981":3,"5982":6,"5983":4,"5984":4,"5985":8,"5986":3,"5987":6,"5988":3,"5989":9,"5990":4,"5991":5,"5992":3,"5993":8,"5994":4,"5995":5,"5996":5,"5997":1,"5998":7,"5999":2,"6000":4,"6001":4,"6002":5,"6003":3,"6004":4,"6005":3,"6006":4,"6007":5,"6008":2,"6009":3,"6010":8,"6011":4,"6012":4,"6013":4,"6014":3,"6015":4,"6016":5,"6017":1,"6018":3,"6019":7,"6020":1,"6021":4,"6022":4,"6023":2,"6024":4,"6025":3,"6026":3,"6027":3,"6028":3,"6029":1,"6030":4,"6031":7,"6032":5,"6033":3,"6034":5,"6035":7,"6036":3,"6037":3,"6038":3,"6039":3,"6040":6,"6041":3,"6042":4,"6043":6,"6044":2,"6045":4,"6046":8,"6047":5,"6048":2,"6049":5,"6050":8,"6051":4,"6052":4,"6053":3,"6054":4,"6055":4,"6056":5,"6057":3,"6058":2,"6059":5,"6060":5,"6061":3,"6062":4,"6063":1,"6064":5,"6065":3,"6066":3,"6067":4,"6068":3,"6069":4,"6070":3,"6071":4,"6072":4,"6073":5,"6074":3,"6075":3,"6076":4,"6077":4,"6078":3,"6079":3,"6080":2,"6081":3,"6082":4,"6083":2,"6084":5,"6085":1,"6086":4,"6087":1,"6088":5,"6089":3,"6090":4,"6091":5,"6092":5,"6093":4,"6094":3,"6095":2,"6096":3,"6097":3,"6098":4,"6099":1,"6100":2,"6101":4,"6102":2,"6103":8,"6104":4,"6105":7,"6106":8,"6107":4,"6108":4,"6109":6,"6110":7,"6111":4,"6112":6,"6113":4,"6114":5,"6115":2,"6116":4,"6117":3,"6118":3,"6119":7,"6120":3,"6121":9,"6122":6,"6123":4,"6124":5,"6125":3,"6126":7,"6127":3,"6128":5,"6129":4,"6130":2,"6131":5,"6132":5,"6133":5,"6134":5,"6135":4,"6136":3,"6137":4,"6138":8,"6139":2,"6140":1,"6141":4,"6142":1,"6143":4,"6144":3,"6145":2,"6146":8,"6147":5,"6148":4,"6149":8,"6150":5,"6151":3,"6152":4,"6153":5,"6154":6,"6155":5,"6156":2,"6157":2,"6158":1,"6159":2,"6160":7,"6161":3,"6162":4,"6163":4,"6164":4,"6165":3,"6166":9,"6167":5,"6168":3,"6169":9,"6170":2,"6171":5,"6172":1,"6173":7,"6174":4,"6175":5,"6176":7,"6177":3,"6178":1,"6179":4,"6180":9,"6181":7,"6182":5,"6183":3,"6184":4,"6185":3,"6186":4,"6187":3,"6188":5,"6189":8,"6190":2,"6191":4,"6192":4,"6193":3,"6194":4,"6195":2,"6196":4,"6197":4,"6198":4,"6199":6,"6200":5,"6201":5,"6202":7,"6203":4,"6204":6,"6205":2,"6206":4,"6207":3,"6208":6,"6209":3,"6210":1,"6211":4,"6212":4,"6213":7,"6214":3,"6215":5,"6216":4,"6217":4,"6218":4,"6219":3,"6220":4,"6221":8,"6222":6,"6223":2,"6224":3,"6225":4,"6226":7,"6227":3,"6228":3,"6229":2,"6230":3,"6231":5,"6232":1,"6233":7,"6234":2,"6235":3,"6236":7,"6237":3,"6238":4,"6239":2,"6240":4,"6241":5,"6242":6,"6243":6,"6244":4,"6245":5,"6246":3,"6247":4,"6248":3,"6249":4,"6250":4,"6251":3,"6252":4,"6253":3,"6254":7,"6255":3,"6256":4,"6257":5,"6258":3,"6259":4,"6260":1,"6261":3,"6262":4,"6263":3,"6264":4,"6265":1,"6266":2,"6267":3,"6268":4,"6269":5,"6270":4,"6271":4,"6272":4,"6273":3,"6274":5,"6275":2,"6276":3,"6277":3,"6278":8,"6279":3,"6280":4,"6281":6,"6282":2,"6283":2,"6284":4,"6285":5,"6286":2,"6287":4,"6288":6,"6289":5,"6290":4,"6291":3,"6292":4,"6293":5,"6294":5,"6295":8,"6296":4,"6297":7,"6298":4,"6299":3,"6300":6,"6301":4,"6302":2,"6303":3,"6304":4,"6305":2,"6306":4,"6307":3,"6308":4,"6309":1,"6310":3,"6311":4,"6312":5,"6313":3,"6314":4,"6315":4,"6316":3,"6317":3,"6318":4,"6319":5,"6320":5,"6321":4,"6322":4,"6323":2,"6324":5,"6325":2,"6326":2,"6327":2,"6328":1,"6329":4,"6330":3,"6331":3,"6332":5,"6333":3,"6334":4,"6335":2,"6336":4,"6337":3,"6338":4,"6339":1,"6340":5,"6341":4,"6342":4,"6343":2,"6344":2,"6345":7,"6346":8,"6347":3,"6348":3,"6349":3,"6350":5,"6351":3,"6352":4,"6353":1,"6354":3,"6355":5,"6356":2,"6357":5,"6358":4,"6359":1,"6360":8,"6361":2,"6362":2,"6363":4,"6364":4,"6365":4,"6366":4,"6367":5,"6368":4,"6369":5,"6370":3,"6371":4,"6372":1,"6373":2,"6374":3,"6375":3,"6376":3,"6377":5,"6378":4,"6379":4,"6380":5,"6381":4,"6382":4,"6383":3,"6384":3,"6385":2,"6386":4,"6387":4,"6388":7,"6389":4,"6390":4,"6391":4,"6392":3,"6393":5,"6394":6,"6395":4,"6396":5,"6397":4,"6398":2,"6399":1,"6400":3,"6401":3,"6402":5,"6403":1,"6404":5,"6405":2,"6406":2,"6407":5,"6408":6,"6409":5,"6410":3,"6411":5,"6412":4,"6413":3,"6414":4,"6415":3,"6416":4,"6417":8,"6418":2,"6419":2,"6420":6,"6421":1,"6422":2,"6423":3,"6424":4,"6425":5,"6426":3,"6427":7,"6428":4,"6429":4,"6430":3,"6431":2,"6432":3,"6433":6,"6434":3,"6435":4,"6436":5,"6437":3,"6438":7,"6439":4,"6440":4,"6441":5,"6442":2,"6443":4,"6444":4,"6445":5,"6446":3,"6447":3,"6448":4,"6449":2,"6450":4,"6451":3,"6452":1,"6453":4,"6454":6,"6455":4,"6456":5,"6457":4,"6458":4,"6459":4,"6460":6,"6461":7,"6462":5,"6463":3,"6464":1,"6465":8,"6466":5,"6467":3,"6468":3,"6469":7,"6470":3,"6471":5,"6472":1,"6473":1,"6474":7,"6475":3,"6476":3,"6477":8,"6478":4,"6479":5,"6480":3,"6481":3,"6482":4,"6483":5,"6484":2,"6485":4,"6486":3,"6487":4,"6488":4,"6489":3,"6490":3,"6491":4,"6492":5,"6493":7,"6494":4,"6495":3,"6496":4,"6497":4,"6498":7,"6499":4,"6500":3,"6501":3,"6502":5,"6503":4,"6504":5,"6505":3,"6506":4,"6507":6,"6508":4,"6509":3,"6510":2,"6511":2,"6512":4,"6513":3,"6514":3,"6515":4,"6516":4,"6517":3,"6518":9,"6519":3,"6520":6,"6521":3,"6522":5,"6523":5,"6524":5,"6525":1,"6526":4,"6527":8,"6528":3,"6529":5,"6530":4,"6531":3,"6532":1,"6533":5,"6534":9,"6535":4,"6536":7,"6537":3,"6538":2,"6539":6,"6540":3,"6541":5,"6542":4,"6543":1,"6544":3,"6545":3,"6546":9,"6547":3,"6548":5,"6549":5,"6550":5,"6551":4,"6552":3,"6553":5,"6554":4,"6555":4,"6556":5,"6557":4,"6558":4,"6559":4,"6560":3,"6561":3,"6562":4,"6563":3,"6564":3,"6565":6,"6566":7,"6567":4,"6568":8,"6569":2,"6570":3,"6571":9,"6572":6,"6573":4,"6574":4,"6575":4,"6576":7,"6577":5,"6578":9,"6579":6,"6580":4,"6581":1,"6582":5,"6583":2,"6584":3,"6585":4,"6586":4,"6587":6,"6588":3,"6589":3,"6590":1,"6591":4,"6592":4,"6593":5,"6594":9,"6595":7,"6596":4,"6597":4,"6598":1,"6599":3,"6600":2,"6601":4,"6602":5,"6603":4,"6604":5,"6605":4,"6606":3,"6607":3,"6608":2,"6609":4,"6610":4,"6611":4,"6612":6,"6613":3,"6614":4,"6615":5,"6616":4,"6617":5,"6618":4,"6619":4,"6620":6,"6621":4,"6622":3,"6623":3,"6624":2,"6625":3,"6626":6,"6627":5,"6628":1,"6629":4,"6630":3,"6631":5,"6632":5,"6633":4,"6634":9,"6635":5,"6636":4,"6637":8,"6638":2,"6639":4,"6640":3,"6641":3,"6642":6,"6643":4,"6644":3,"6645":2,"6646":4,"6647":4,"6648":3,"6649":4,"6650":4,"6651":4,"6652":3,"6653":3,"6654":3,"6655":7,"6656":4,"6657":4,"6658":4,"6659":7,"6660":3,"6661":3,"6662":5,"6663":4,"6664":3,"6665":4,"6666":4,"6667":4,"6668":9,"6669":6,"6670":5,"6671":5,"6672":4,"6673":5,"6674":2,"6675":3,"6676":2,"6677":7,"6678":8,"6679":4,"6680":5,"6681":5,"6682":2,"6683":1,"6684":3,"6685":3,"6686":8,"6687":4,"6688":6,"6689":4,"6690":4,"6691":3,"6692":5,"6693":3,"6694":3,"6695":2,"6696":4,"6697":5,"6698":4,"6699":3,"6700":5,"6701":4,"6702":2,"6703":4,"6704":9,"6705":6,"6706":3,"6707":4,"6708":4,"6709":9,"6710":4,"6711":7,"6712":4,"6713":5,"6714":5,"6715":7,"6716":5,"6717":4,"6718":3,"6719":3,"6720":2,"6721":3,"6722":2,"6723":3,"6724":1,"6725":5,"6726":3,"6727":7,"6728":2,"6729":5,"6730":4,"6731":4,"6732":2,"6733":4,"6734":5,"6735":5,"6736":4,"6737":5,"6738":4,"6739":4,"6740":8,"6741":4,"6742":5,"6743":2,"6744":3,"6745":2,"6746":8,"6747":9,"6748":3,"6749":3,"6750":4,"6751":1,"6752":4,"6753":3,"6754":3,"6755":4,"6756":4,"6757":4,"6758":3,"6759":3,"6760":6,"6761":7,"6762":5,"6763":7,"6764":4,"6765":2,"6766":4,"6767":7,"6768":3,"6769":4,"6770":5,"6771":3,"6772":3,"6773":2,"6774":4,"6775":5,"6776":2,"6777":4,"6778":3,"6779":2,"6780":1,"6781":3,"6782":5,"6783":3,"6784":5,"6785":6,"6786":4,"6787":4,"6788":3,"6789":3,"6790":7,"6791":7,"6792":3,"6793":3,"6794":3,"6795":6,"6796":3,"6797":3,"6798":4,"6799":8,"6800":5,"6801":4,"6802":3,"6803":3,"6804":3,"6805":2,"6806":5,"6807":5,"6808":3,"6809":2,"6810":1,"6811":4,"6812":5,"6813":7,"6814":3,"6815":4,"6816":3,"6817":4,"6818":9,"6819":3,"6820":5,"6821":8,"6822":3,"6823":1,"6824":4,"6825":3,"6826":3,"6827":3,"6828":2,"6829":1,"6830":3,"6831":4,"6832":7,"6833":2,"6834":4,"6835":9,"6836":3,"6837":7,"6838":3,"6839":3,"6840":1,"6841":3,"6842":3,"6843":3,"6844":5,"6845":2,"6846":4,"6847":1,"6848":5,"6849":5,"6850":3,"6851":1,"6852":4,"6853":5,"6854":2,"6855":4,"6856":4,"6857":4,"6858":5,"6859":6,"6860":5,"6861":3,"6862":4,"6863":3,"6864":3,"6865":3,"6866":5,"6867":2,"6868":4,"6869":4,"6870":6,"6871":3,"6872":4,"6873":3,"6874":6,"6875":5,"6876":5,"6877":4,"6878":3,"6879":4,"6880":2,"6881":5,"6882":3,"6883":3,"6884":4,"6885":4,"6886":4,"6887":4,"6888":4,"6889":4,"6890":6,"6891":4,"6892":8,"6893":6,"6894":7,"6895":3,"6896":2,"6897":3,"6898":3,"6899":4,"6900":3,"6901":3,"6902":4,"6903":3,"6904":6,"6905":6,"6906":2,"6907":8,"6908":4,"6909":4,"6910":3,"6911":4,"6912":2,"6913":2,"6914":3,"6915":4,"6916":4,"6917":5,"6918":3,"6919":9,"6920":4,"6921":4,"6922":7,"6923":8,"6924":1,"6925":3,"6926":7,"6927":6,"6928":8,"6929":7,"6930":3,"6931":3,"6932":9,"6933":4,"6934":3,"6935":3,"6936":6,"6937":3,"6938":2,"6939":2,"6940":4,"6941":7,"6942":9,"6943":5,"6944":5,"6945":3,"6946":4,"6947":5,"6948":4,"6949":2,"6950":3,"6951":4,"6952":2,"6953":3,"6954":4,"6955":5,"6956":5,"6957":4,"6958":4,"6959":1,"6960":3,"6961":4,"6962":3,"6963":5,"6964":6,"6965":3,"6966":4,"6967":4,"6968":4,"6969":3,"6970":2,"6971":2,"6972":3,"6973":7,"6974":3,"6975":3,"6976":2,"6977":8,"6978":4,"6979":5,"6980":5,"6981":5,"6982":4,"6983":6,"6984":1,"6985":4,"6986":3,"6987":3,"6988":4,"6989":5,"6990":7,"6991":4,"6992":3,"6993":2,"6994":4,"6995":1,"6996":4,"6997":6,"6998":4,"6999":3,"7000":3,"7001":3,"7002":2,"7003":5,"7004":5,"7005":8,"7006":3,"7007":4,"7008":4,"7009":4,"7010":3,"7011":4,"7012":4,"7013":4,"7014":2,"7015":4,"7016":3,"7017":3,"7018":4,"7019":3,"7020":6,"7021":3,"7022":3,"7023":2,"7024":3,"7025":7,"7026":4,"7027":4,"7028":5,"7029":3,"7030":2,"7031":5,"7032":4,"7033":4,"7034":4,"7035":4,"7036":5,"7037":1,"7038":2,"7039":3,"7040":4,"7041":2,"7042":6,"7043":4,"7044":3,"7045":4,"7046":1,"7047":5,"7048":5,"7049":4,"7050":1,"7051":5,"7052":3,"7053":5,"7054":4,"7055":5,"7056":4,"7057":5,"7058":3,"7059":3,"7060":3,"7061":6,"7062":5,"7063":2,"7064":2,"7065":2,"7066":4,"7067":5,"7068":5,"7069":4,"7070":3,"7071":3,"7072":3,"7073":5,"7074":2,"7075":9,"7076":5,"7077":4,"7078":2,"7079":2,"7080":5,"7081":5,"7082":4,"7083":3,"7084":2,"7085":3,"7086":3,"7087":3,"7088":7,"7089":4,"7090":1,"7091":3,"7092":3,"7093":4,"7094":7,"7095":3,"7096":3,"7097":5,"7098":3,"7099":2,"7100":2,"7101":5,"7102":4,"7103":5,"7104":6,"7105":5,"7106":2,"7107":3,"7108":4,"7109":8,"7110":4,"7111":4,"7112":2,"7113":3,"7114":3,"7115":3,"7116":4,"7117":3,"7118":5,"7119":3,"7120":4,"7121":3,"7122":2,"7123":4,"7124":3,"7125":3,"7126":5,"7127":4,"7128":5,"7129":3,"7130":6,"7131":4,"7132":1,"7133":4,"7134":4,"7135":2,"7136":4,"7137":4,"7138":7,"7139":2,"7140":7,"7141":4,"7142":3,"7143":3,"7144":6,"7145":5,"7146":4,"7147":4,"7148":6,"7149":6,"7150":5,"7151":5,"7152":1,"7153":5,"7154":4,"7155":6,"7156":2,"7157":3,"7158":5,"7159":3,"7160":3,"7161":4,"7162":3,"7163":9,"7164":3,"7165":4,"7166":4,"7167":4,"7168":5,"7169":4,"7170":5,"7171":4,"7172":4,"7173":6,"7174":4,"7175":4,"7176":3,"7177":4,"7178":3,"7179":4,"7180":1,"7181":7,"7182":5,"7183":5,"7184":4,"7185":7,"7186":3,"7187":5,"7188":8,"7189":2,"7190":4,"7191":3,"7192":3,"7193":4,"7194":4,"7195":7,"7196":3,"7197":3,"7198":4,"7199":5,"7200":7,"7201":3,"7202":3,"7203":5,"7204":1,"7205":3,"7206":4,"7207":5,"7208":3,"7209":3,"7210":2,"7211":4,"7212":3,"7213":1,"7214":4,"7215":5,"7216":1,"7217":9,"7218":3,"7219":5,"7220":4,"7221":3,"7222":5,"7223":4,"7224":3,"7225":3,"7226":8,"7227":4,"7228":4,"7229":4,"7230":4,"7231":2,"7232":5,"7233":3,"7234":4,"7235":1,"7236":4,"7237":7,"7238":3,"7239":6,"7240":3,"7241":7,"7242":2,"7243":3,"7244":4,"7245":3,"7246":5,"7247":5,"7248":7,"7249":4,"7250":3,"7251":2,"7252":7,"7253":3,"7254":4,"7255":2,"7256":5,"7257":2,"7258":3,"7259":3,"7260":9,"7261":3,"7262":4,"7263":6,"7264":3,"7265":2,"7266":2,"7267":3,"7268":5,"7269":2,"7270":3,"7271":4,"7272":5,"7273":4,"7274":5,"7275":2,"7276":4,"7277":4,"7278":3,"7279":3,"7280":3,"7281":2,"7282":5,"7283":6,"7284":4,"7285":3,"7286":4,"7287":4,"7288":3,"7289":7,"7290":3,"7291":1,"7292":6,"7293":3,"7294":5,"7295":3,"7296":3,"7297":1,"7298":3,"7299":3,"7300":4,"7301":3,"7302":5,"7303":6,"7304":3,"7305":3,"7306":4,"7307":1,"7308":2,"7309":3,"7310":5,"7311":4,"7312":3,"7313":2,"7314":2,"7315":4,"7316":5,"7317":4,"7318":5,"7319":3,"7320":8,"7321":4,"7322":4,"7323":4,"7324":3,"7325":5,"7326":3,"7327":8,"7328":6,"7329":5,"7330":7,"7331":4,"7332":5,"7333":5,"7334":9,"7335":4,"7336":2,"7337":3,"7338":7,"7339":8,"7340":5,"7341":2,"7342":9,"7343":3,"7344":1,"7345":4,"7346":5,"7347":3,"7348":4,"7349":4,"7350":4,"7351":3,"7352":7,"7353":4,"7354":5,"7355":4,"7356":4,"7357":3,"7358":5,"7359":4,"7360":3,"7361":2,"7362":5,"7363":3,"7364":2,"7365":4,"7366":4,"7367":4,"7368":4,"7369":1,"7370":8,"7371":4,"7372":3,"7373":6,"7374":3,"7375":4,"7376":5,"7377":4,"7378":4,"7379":4,"7380":5,"7381":7,"7382":5,"7383":2,"7384":4,"7385":3,"7386":3,"7387":3,"7388":3,"7389":3,"7390":4,"7391":3,"7392":4,"7393":8,"7394":5,"7395":2,"7396":5,"7397":3,"7398":2,"7399":3,"7400":5,"7401":4,"7402":2,"7403":4,"7404":2,"7405":6,"7406":5,"7407":3,"7408":5,"7409":4,"7410":4,"7411":4,"7412":2,"7413":4,"7414":3,"7415":8,"7416":2,"7417":4,"7418":7,"7419":4,"7420":4,"7421":4,"7422":1,"7423":4,"7424":5,"7425":4,"7426":2,"7427":4,"7428":5,"7429":4,"7430":3,"7431":3,"7432":2,"7433":3,"7434":9,"7435":3,"7436":1,"7437":4,"7438":3,"7439":3,"7440":4,"7441":5,"7442":5,"7443":4,"7444":2,"7445":7,"7446":3,"7447":1,"7448":5,"7449":4,"7450":5,"7451":4,"7452":4,"7453":4,"7454":3,"7455":4,"7456":3,"7457":5,"7458":3,"7459":3,"7460":5,"7461":5,"7462":4,"7463":3,"7464":8,"7465":5,"7466":4,"7467":6,"7468":4,"7469":3,"7470":3,"7471":4,"7472":3,"7473":2,"7474":6,"7475":4,"7476":6,"7477":3,"7478":3,"7479":4,"7480":5,"7481":4,"7482":7,"7483":4,"7484":3,"7485":6,"7486":4,"7487":1,"7488":3,"7489":3,"7490":3,"7491":2,"7492":4,"7493":8,"7494":1,"7495":5,"7496":4,"7497":3,"7498":3,"7499":3,"7500":6,"7501":6,"7502":4,"7503":4,"7504":4,"7505":3,"7506":5,"7507":4,"7508":9,"7509":5,"7510":3,"7511":3,"7512":5,"7513":3,"7514":5,"7515":4,"7516":6,"7517":3,"7518":4,"7519":5,"7520":4,"7521":4,"7522":3,"7523":4,"7524":3,"7525":6,"7526":2,"7527":5,"7528":6,"7529":4,"7530":4,"7531":7,"7532":5,"7533":1,"7534":4,"7535":5,"7536":3,"7537":2,"7538":3,"7539":4,"7540":3,"7541":5,"7542":4,"7543":6,"7544":4,"7545":4,"7546":5,"7547":8,"7548":4,"7549":4,"7550":6,"7551":4,"7552":2,"7553":3,"7554":3,"7555":2,"7556":6,"7557":3,"7558":5,"7559":3,"7560":3,"7561":1,"7562":4,"7563":4,"7564":5,"7565":4,"7566":8,"7567":3,"7568":2,"7569":5,"7570":4,"7571":4,"7572":3,"7573":5,"7574":5,"7575":2,"7576":5,"7577":1,"7578":4,"7579":4,"7580":4,"7581":7,"7582":3,"7583":3,"7584":4,"7585":4,"7586":4,"7587":3,"7588":1,"7589":3,"7590":4,"7591":4,"7592":2,"7593":4,"7594":5,"7595":3,"7596":5,"7597":3,"7598":3,"7599":4,"7600":5,"7601":2,"7602":7,"7603":4,"7604":5,"7605":4,"7606":3,"7607":4,"7608":6,"7609":3,"7610":1,"7611":4,"7612":3,"7613":3,"7614":4,"7615":5,"7616":3,"7617":6,"7618":3,"7619":4,"7620":6,"7621":4,"7622":3,"7623":4,"7624":4,"7625":2,"7626":6,"7627":3,"7628":2,"7629":5,"7630":4,"7631":8,"7632":5,"7633":5,"7634":2,"7635":5,"7636":3,"7637":5,"7638":4,"7639":4,"7640":2,"7641":3,"7642":2,"7643":3,"7644":6,"7645":2,"7646":3,"7647":7,"7648":4,"7649":1,"7650":5,"7651":7,"7652":2,"7653":5,"7654":4,"7655":3,"7656":5,"7657":4,"7658":5,"7659":4,"7660":4,"7661":4,"7662":4,"7663":3,"7664":4,"7665":3,"7666":3,"7667":3,"7668":4,"7669":5,"7670":3,"7671":5,"7672":4,"7673":3,"7674":2,"7675":3,"7676":8,"7677":3,"7678":1,"7679":3,"7680":4,"7681":3,"7682":3,"7683":3,"7684":6,"7685":3,"7686":5,"7687":3,"7688":5,"7689":2,"7690":6,"7691":5,"7692":6,"7693":7,"7694":2,"7695":2,"7696":6,"7697":3,"7698":3,"7699":1,"7700":2,"7701":5,"7702":4,"7703":4,"7704":2,"7705":2,"7706":9,"7707":1,"7708":4,"7709":4,"7710":3,"7711":3,"7712":4,"7713":4,"7714":1,"7715":3,"7716":9,"7717":4,"7718":5,"7719":4,"7720":7,"7721":4,"7722":4,"7723":6,"7724":8,"7725":4,"7726":2,"7727":4,"7728":1,"7729":5,"7730":4,"7731":5,"7732":7,"7733":4,"7734":3,"7735":7,"7736":4,"7737":7,"7738":4,"7739":6,"7740":1,"7741":2,"7742":2,"7743":2,"7744":5,"7745":4,"7746":3,"7747":2,"7748":8,"7749":4,"7750":4,"7751":9,"7752":4,"7753":5,"7754":4,"7755":4,"7756":5,"7757":8,"7758":2,"7759":1,"7760":5,"7761":8,"7762":4,"7763":2,"7764":3,"7765":4,"7766":4,"7767":4,"7768":3,"7769":7,"7770":4,"7771":3,"7772":4,"7773":4,"7774":3,"7775":1,"7776":4,"7777":4,"7778":2,"7779":9,"7780":9,"7781":4,"7782":2,"7783":4,"7784":2,"7785":6,"7786":1,"7787":2,"7788":5,"7789":5,"7790":3,"7791":6,"7792":2,"7793":3,"7794":3,"7795":4,"7796":3,"7797":4,"7798":1,"7799":5,"7800":6,"7801":6,"7802":8,"7803":8,"7804":4,"7805":5,"7806":4,"7807":5,"7808":4,"7809":4,"7810":3,"7811":4,"7812":5,"7813":7,"7814":5,"7815":4,"7816":5,"7817":5,"7818":4,"7819":2,"7820":7,"7821":3,"7822":2,"7823":4,"7824":4,"7825":3,"7826":3,"7827":4,"7828":4,"7829":8,"7830":5,"7831":7,"7832":3,"7833":7,"7834":4,"7835":3,"7836":2,"7837":6,"7838":4,"7839":4,"7840":4,"7841":4,"7842":3,"7843":3,"7844":7,"7845":3,"7846":5,"7847":5,"7848":4,"7849":4,"7850":4,"7851":6,"7852":5,"7853":4,"7854":5,"7855":4,"7856":5,"7857":4,"7858":5,"7859":7,"7860":3,"7861":3,"7862":3,"7863":4,"7864":4,"7865":7,"7866":2,"7867":3,"7868":3,"7869":4,"7870":4,"7871":5,"7872":4,"7873":4,"7874":4,"7875":4,"7876":4,"7877":5,"7878":5,"7879":4,"7880":4,"7881":4,"7882":3,"7883":5,"7884":4,"7885":2,"7886":4,"7887":4,"7888":3,"7889":2,"7890":3,"7891":9,"7892":7,"7893":4,"7894":3,"7895":3,"7896":8,"7897":1,"7898":2,"7899":2,"7900":3,"7901":3,"7902":8,"7903":2,"7904":2,"7905":5,"7906":3,"7907":4,"7908":8,"7909":3,"7910":4,"7911":6,"7912":4,"7913":4,"7914":4,"7915":4,"7916":4,"7917":5,"7918":4,"7919":6,"7920":4,"7921":7,"7922":4,"7923":3,"7924":7,"7925":4,"7926":4,"7927":4,"7928":7,"7929":2,"7930":4,"7931":3,"7932":4,"7933":9,"7934":4,"7935":4,"7936":5,"7937":2,"7938":5,"7939":6,"7940":4,"7941":6,"7942":1,"7943":4,"7944":2,"7945":3,"7946":1,"7947":4,"7948":3,"7949":9,"7950":4,"7951":4,"7952":2,"7953":4,"7954":5,"7955":4,"7956":4,"7957":2,"7958":4,"7959":4,"7960":7,"7961":4,"7962":4,"7963":7,"7964":3,"7965":7,"7966":5,"7967":3,"7968":5,"7969":1,"7970":3,"7971":8,"7972":4,"7973":4,"7974":6,"7975":1,"7976":5,"7977":2,"7978":5,"7979":3,"7980":3,"7981":4,"7982":8,"7983":2,"7984":2,"7985":1,"7986":3,"7987":6,"7988":9,"7989":4,"7990":3,"7991":3,"7992":9,"7993":5,"7994":4,"7995":8,"7996":5,"7997":4,"7998":3,"7999":3,"8000":5,"8001":3,"8002":3,"8003":5,"8004":4,"8005":4,"8006":5,"8007":3,"8008":8,"8009":4,"8010":4,"8011":4,"8012":3,"8013":2,"8014":4,"8015":3,"8016":6,"8017":5,"8018":4,"8019":2,"8020":4,"8021":9,"8022":8,"8023":3,"8024":3,"8025":8,"8026":3,"8027":3,"8028":4,"8029":3,"8030":4,"8031":3,"8032":3,"8033":3,"8034":3,"8035":4,"8036":3,"8037":4,"8038":4,"8039":6,"8040":3,"8041":3,"8042":5,"8043":5,"8044":2,"8045":3,"8046":4,"8047":7,"8048":3,"8049":3,"8050":3,"8051":4,"8052":6,"8053":3,"8054":4,"8055":8,"8056":9,"8057":7,"8058":3,"8059":6,"8060":5,"8061":5,"8062":3,"8063":5,"8064":7,"8065":4,"8066":5,"8067":3,"8068":3,"8069":5,"8070":4,"8071":3,"8072":5,"8073":3,"8074":3,"8075":4,"8076":4,"8077":3,"8078":8,"8079":7,"8080":1,"8081":7,"8082":3,"8083":4,"8084":5,"8085":5,"8086":4,"8087":4,"8088":3,"8089":4,"8090":2,"8091":3,"8092":8,"8093":3,"8094":4,"8095":7,"8096":5,"8097":3,"8098":3,"8099":5,"8100":3,"8101":5,"8102":2,"8103":3,"8104":5,"8105":4,"8106":3,"8107":1,"8108":5,"8109":4,"8110":3,"8111":2,"8112":5,"8113":3,"8114":7,"8115":8,"8116":3,"8117":1,"8118":5,"8119":5,"8120":3,"8121":4,"8122":4,"8123":4,"8124":1,"8125":5,"8126":4,"8127":4,"8128":4,"8129":3,"8130":3,"8131":4,"8132":4,"8133":5,"8134":6,"8135":4,"8136":4,"8137":3,"8138":2,"8139":3,"8140":5,"8141":4,"8142":4,"8143":1,"8144":3,"8145":4,"8146":6,"8147":1,"8148":3,"8149":4,"8150":3,"8151":4,"8152":2,"8153":4,"8154":4,"8155":4,"8156":5,"8157":5,"8158":3,"8159":5,"8160":3,"8161":1,"8162":3,"8163":7,"8164":3,"8165":4,"8166":4,"8167":7,"8168":3,"8169":4,"8170":8,"8171":5,"8172":3,"8173":3,"8174":4,"8175":5,"8176":1,"8177":5,"8178":1,"8179":5,"8180":3,"8181":8,"8182":2,"8183":3,"8184":5,"8185":3,"8186":9,"8187":2,"8188":2,"8189":4,"8190":7,"8191":3,"8192":2,"8193":4,"8194":5,"8195":4,"8196":4,"8197":4,"8198":4,"8199":3,"8200":7,"8201":4,"8202":4,"8203":4,"8204":2,"8205":4,"8206":4,"8207":1,"8208":4,"8209":5,"8210":3,"8211":4,"8212":3,"8213":3,"8214":3,"8215":5,"8216":6,"8217":4,"8218":4,"8219":7,"8220":4,"8221":3,"8222":4,"8223":3,"8224":5,"8225":4,"8226":7,"8227":5,"8228":5,"8229":4,"8230":4,"8231":4,"8232":4,"8233":3,"8234":3,"8235":3,"8236":3,"8237":7,"8238":8,"8239":1,"8240":7,"8241":6,"8242":2,"8243":4,"8244":3,"8245":5,"8246":7,"8247":3,"8248":1,"8249":3,"8250":6,"8251":3,"8252":8,"8253":3,"8254":5,"8255":4,"8256":1,"8257":7,"8258":3,"8259":4,"8260":4,"8261":3,"8262":3,"8263":5,"8264":7,"8265":2,"8266":5,"8267":8,"8268":3,"8269":5,"8270":6,"8271":1,"8272":3,"8273":4,"8274":3,"8275":6,"8276":5,"8277":4,"8278":4,"8279":3,"8280":4,"8281":6,"8282":3,"8283":3,"8284":3,"8285":5,"8286":3,"8287":2,"8288":3,"8289":6,"8290":1,"8291":4,"8292":2,"8293":5,"8294":3,"8295":2,"8296":4,"8297":5,"8298":2,"8299":3,"8300":4,"8301":4,"8302":5,"8303":3,"8304":4,"8305":2,"8306":2,"8307":4,"8308":4,"8309":3,"8310":4,"8311":1,"8312":3,"8313":4,"8314":4,"8315":2,"8316":4,"8317":1,"8318":5,"8319":7,"8320":5,"8321":3,"8322":2,"8323":3,"8324":5,"8325":3,"8326":4,"8327":6,"8328":4,"8329":6,"8330":1,"8331":3,"8332":3,"8333":2,"8334":8,"8335":7,"8336":2,"8337":5,"8338":3,"8339":4,"8340":1,"8341":4,"8342":2,"8343":4,"8344":3,"8345":4,"8346":4,"8347":5,"8348":2,"8349":1,"8350":4,"8351":6,"8352":9,"8353":1,"8354":3,"8355":3,"8356":2,"8357":3,"8358":4,"8359":6,"8360":2,"8361":2,"8362":1,"8363":4,"8364":4,"8365":2,"8366":5,"8367":4,"8368":1,"8369":6,"8370":1,"8371":4,"8372":5,"8373":2,"8374":3,"8375":4,"8376":3,"8377":4,"8378":2,"8379":4,"8380":5,"8381":3,"8382":7,"8383":4,"8384":4,"8385":9,"8386":2,"8387":9,"8388":4,"8389":5,"8390":3,"8391":4,"8392":3,"8393":6,"8394":4,"8395":2,"8396":5,"8397":6,"8398":1,"8399":3,"8400":4,"8401":2,"8402":1,"8403":4,"8404":4,"8405":2,"8406":2,"8407":4,"8408":4,"8409":3,"8410":8,"8411":9,"8412":3,"8413":6,"8414":3,"8415":4,"8416":4,"8417":4,"8418":4,"8419":4,"8420":4,"8421":7,"8422":4,"8423":1,"8424":8,"8425":3,"8426":3,"8427":5,"8428":3,"8429":4,"8430":3,"8431":3,"8432":9,"8433":2,"8434":4,"8435":2,"8436":7,"8437":4,"8438":8,"8439":4,"8440":4,"8441":6,"8442":7,"8443":6,"8444":1,"8445":3,"8446":3,"8447":4,"8448":3,"8449":3,"8450":2,"8451":3,"8452":5,"8453":2,"8454":3,"8455":3,"8456":5,"8457":3,"8458":4,"8459":3,"8460":7,"8461":2,"8462":1,"8463":5,"8464":3,"8465":7,"8466":9,"8467":4,"8468":4,"8469":4,"8470":4,"8471":3,"8472":3,"8473":4,"8474":5,"8475":4,"8476":3,"8477":3,"8478":6,"8479":2,"8480":3,"8481":3,"8482":4,"8483":4,"8484":5,"8485":4,"8486":4,"8487":3,"8488":6,"8489":4,"8490":1,"8491":8,"8492":7,"8493":4,"8494":3,"8495":4,"8496":3,"8497":9,"8498":3,"8499":4,"8500":4,"8501":5,"8502":3,"8503":3,"8504":2,"8505":4,"8506":3,"8507":4,"8508":5,"8509":5,"8510":4,"8511":6,"8512":4,"8513":4,"8514":4,"8515":5,"8516":3,"8517":3,"8518":5,"8519":3,"8520":3,"8521":9,"8522":4,"8523":4,"8524":8,"8525":2,"8526":4,"8527":8,"8528":2,"8529":1,"8530":5,"8531":5,"8532":3,"8533":2,"8534":1,"8535":7,"8536":5,"8537":5,"8538":4,"8539":2,"8540":4,"8541":1,"8542":3,"8543":5,"8544":7,"8545":4,"8546":4,"8547":4,"8548":3,"8549":3,"8550":4,"8551":4,"8552":3,"8553":5,"8554":4,"8555":4,"8556":3,"8557":1,"8558":3,"8559":3,"8560":4,"8561":3,"8562":3,"8563":5,"8564":4,"8565":1,"8566":6,"8567":1,"8568":2,"8569":3,"8570":2,"8571":4,"8572":3,"8573":7,"8574":5,"8575":5,"8576":4,"8577":2,"8578":5,"8579":3,"8580":5,"8581":5,"8582":2,"8583":4,"8584":4,"8585":4,"8586":1,"8587":4,"8588":5,"8589":2,"8590":9,"8591":4,"8592":4,"8593":7,"8594":2,"8595":2,"8596":5,"8597":9,"8598":5,"8599":4,"8600":5,"8601":3,"8602":3,"8603":5,"8604":3,"8605":4,"8606":2,"8607":3,"8608":1,"8609":4,"8610":7,"8611":4,"8612":4,"8613":1,"8614":9,"8615":2,"8616":4,"8617":5,"8618":6,"8619":5,"8620":4,"8621":8,"8622":6,"8623":5,"8624":3,"8625":5,"8626":5,"8627":6,"8628":3,"8629":4,"8630":3,"8631":4,"8632":4,"8633":6,"8634":2,"8635":5,"8636":4,"8637":3,"8638":4,"8639":4,"8640":4,"8641":7,"8642":3,"8643":3,"8644":3,"8645":4,"8646":4,"8647":2,"8648":4,"8649":5,"8650":4,"8651":7,"8652":4,"8653":3,"8654":1,"8655":4,"8656":2,"8657":5,"8658":4,"8659":9,"8660":4,"8661":2,"8662":3,"8663":2,"8664":4,"8665":3,"8666":3,"8667":3,"8668":1,"8669":3,"8670":3,"8671":8,"8672":3,"8673":4,"8674":3,"8675":4,"8676":2,"8677":3,"8678":2,"8679":4,"8680":3,"8681":7,"8682":5,"8683":5,"8684":1,"8685":5,"8686":4,"8687":3,"8688":7,"8689":4,"8690":5,"8691":7,"8692":6,"8693":4,"8694":3,"8695":3,"8696":7,"8697":3,"8698":2,"8699":2,"8700":4,"8701":5,"8702":4,"8703":3,"8704":5,"8705":2,"8706":3,"8707":1,"8708":3,"8709":4,"8710":5,"8711":5,"8712":5,"8713":9,"8714":2,"8715":3,"8716":5,"8717":3,"8718":6,"8719":3,"8720":2,"8721":4,"8722":5,"8723":4,"8724":2,"8725":6,"8726":3,"8727":3,"8728":6,"8729":4,"8730":4,"8731":5,"8732":4,"8733":4,"8734":2,"8735":1,"8736":4,"8737":4,"8738":4,"8739":5,"8740":3,"8741":5,"8742":6,"8743":7,"8744":3,"8745":8,"8746":8,"8747":1,"8748":3,"8749":3,"8750":5,"8751":4,"8752":5,"8753":4,"8754":4,"8755":3,"8756":3,"8757":1,"8758":1,"8759":3,"8760":3,"8761":3,"8762":3,"8763":5,"8764":3,"8765":4,"8766":2,"8767":6,"8768":4,"8769":4,"8770":3,"8771":5,"8772":4,"8773":2,"8774":3,"8775":5,"8776":7,"8777":2,"8778":3,"8779":9,"8780":3,"8781":3,"8782":4,"8783":4,"8784":4,"8785":4,"8786":8,"8787":3,"8788":3,"8789":2,"8790":4,"8791":7,"8792":2,"8793":7,"8794":4,"8795":4,"8796":1,"8797":5,"8798":5,"8799":4,"8800":2,"8801":5,"8802":3,"8803":4,"8804":5,"8805":3,"8806":6,"8807":4,"8808":4,"8809":4,"8810":6,"8811":4,"8812":5,"8813":3,"8814":3,"8815":5,"8816":4,"8817":1,"8818":4,"8819":7,"8820":8,"8821":4,"8822":4,"8823":3,"8824":1,"8825":4,"8826":3,"8827":5,"8828":2,"8829":2,"8830":4,"8831":3,"8832":3,"8833":4,"8834":9,"8835":4,"8836":4,"8837":4,"8838":4,"8839":3,"8840":8,"8841":4,"8842":4,"8843":2,"8844":4,"8845":2,"8846":4,"8847":6,"8848":4,"8849":4,"8850":4,"8851":2,"8852":5,"8853":4,"8854":3,"8855":5,"8856":4,"8857":4,"8858":6,"8859":6,"8860":8,"8861":4,"8862":2,"8863":1,"8864":5,"8865":2,"8866":4,"8867":1,"8868":3,"8869":3,"8870":3,"8871":3,"8872":5,"8873":6,"8874":1,"8875":4,"8876":4,"8877":3,"8878":5,"8879":3,"8880":3,"8881":4,"8882":5,"8883":3,"8884":4,"8885":4,"8886":5,"8887":3,"8888":2,"8889":7,"8890":8,"8891":5,"8892":4,"8893":3,"8894":3,"8895":2,"8896":5,"8897":4,"8898":9,"8899":4,"8900":3,"8901":4,"8902":5,"8903":3,"8904":4,"8905":8,"8906":1,"8907":3,"8908":3,"8909":3,"8910":5,"8911":7,"8912":7,"8913":3,"8914":3,"8915":2,"8916":4,"8917":4,"8918":4,"8919":5,"8920":4,"8921":4,"8922":4,"8923":9,"8924":3,"8925":7,"8926":3,"8927":3,"8928":2,"8929":3,"8930":3,"8931":4,"8932":7,"8933":5,"8934":1,"8935":4,"8936":7,"8937":4,"8938":1,"8939":4,"8940":5,"8941":4,"8942":6,"8943":2,"8944":3,"8945":3,"8946":9,"8947":1,"8948":2,"8949":2,"8950":5,"8951":1,"8952":3,"8953":4,"8954":5,"8955":5,"8956":4,"8957":4,"8958":4,"8959":4,"8960":3,"8961":2,"8962":3,"8963":3,"8964":4,"8965":4,"8966":5,"8967":7,"8968":8,"8969":5,"8970":4,"8971":5,"8972":3,"8973":3,"8974":4,"8975":6,"8976":3,"8977":6,"8978":6,"8979":3,"8980":3,"8981":4,"8982":4,"8983":5,"8984":2,"8985":5,"8986":2,"8987":3,"8988":3,"8989":4,"8990":4,"8991":8,"8992":6,"8993":4,"8994":1,"8995":2,"8996":4,"8997":3,"8998":4,"8999":5,"9000":2,"9001":4,"9002":8,"9003":4,"9004":3,"9005":3,"9006":4,"9007":5,"9008":3,"9009":4,"9010":4,"9011":3,"9012":5,"9013":6,"9014":3,"9015":7,"9016":2,"9017":8,"9018":3,"9019":3,"9020":3,"9021":4,"9022":4,"9023":3,"9024":8,"9025":3,"9026":3,"9027":4,"9028":6,"9029":6,"9030":3,"9031":7,"9032":3,"9033":3,"9034":2,"9035":3,"9036":9,"9037":5,"9038":3,"9039":3,"9040":5,"9041":4,"9042":1,"9043":3,"9044":2,"9045":3,"9046":4,"9047":3,"9048":9,"9049":3,"9050":3,"9051":7,"9052":4,"9053":2,"9054":4,"9055":4,"9056":2,"9057":5,"9058":2,"9059":1,"9060":7,"9061":6,"9062":3,"9063":5,"9064":5,"9065":5,"9066":3,"9067":1,"9068":6,"9069":4,"9070":3,"9071":4,"9072":4,"9073":5,"9074":3,"9075":6,"9076":7,"9077":4,"9078":3,"9079":4,"9080":5,"9081":2,"9082":2,"9083":4,"9084":5,"9085":5,"9086":3,"9087":4,"9088":3,"9089":1,"9090":4,"9091":5,"9092":3,"9093":4,"9094":7,"9095":3,"9096":4,"9097":4,"9098":2,"9099":4,"9100":4,"9101":5,"9102":3,"9103":1,"9104":3,"9105":4,"9106":4,"9107":4,"9108":1,"9109":4,"9110":4,"9111":8,"9112":3,"9113":5,"9114":5,"9115":5,"9116":5,"9117":4,"9118":3,"9119":1,"9120":2,"9121":7,"9122":9,"9123":5,"9124":2,"9125":6,"9126":2,"9127":5,"9128":3,"9129":7,"9130":4,"9131":3,"9132":4,"9133":4,"9134":4,"9135":5,"9136":3,"9137":3,"9138":5,"9139":4,"9140":3,"9141":3,"9142":4,"9143":5,"9144":2,"9145":4,"9146":3,"9147":3,"9148":3,"9149":3,"9150":5,"9151":4,"9152":2,"9153":5,"9154":6,"9155":5,"9156":5,"9157":4,"9158":2,"9159":4,"9160":2,"9161":4,"9162":7,"9163":1,"9164":4,"9165":3,"9166":3,"9167":4,"9168":2,"9169":7,"9170":5,"9171":4,"9172":3,"9173":5,"9174":7,"9175":3,"9176":4,"9177":8,"9178":4,"9179":4,"9180":4,"9181":3,"9182":2,"9183":3,"9184":6,"9185":5,"9186":4,"9187":2,"9188":3,"9189":6,"9190":4,"9191":2,"9192":1,"9193":5,"9194":4,"9195":4,"9196":1,"9197":8,"9198":2,"9199":2,"9200":6,"9201":4,"9202":4,"9203":4,"9204":4,"9205":4,"9206":4,"9207":6,"9208":4,"9209":3,"9210":4,"9211":4,"9212":3,"9213":8,"9214":4,"9215":4,"9216":4,"9217":5,"9218":4,"9219":5,"9220":9,"9221":2,"9222":3,"9223":3,"9224":3,"9225":4,"9226":2,"9227":3,"9228":6,"9229":1,"9230":8,"9231":3,"9232":5,"9233":3,"9234":3,"9235":9,"9236":3,"9237":5,"9238":7,"9239":1,"9240":4,"9241":4,"9242":5,"9243":4,"9244":4,"9245":4,"9246":5,"9247":3,"9248":4,"9249":3,"9250":3,"9251":2,"9252":3,"9253":4,"9254":5,"9255":3,"9256":5,"9257":4,"9258":3,"9259":1,"9260":3,"9261":1,"9262":4,"9263":9,"9264":5,"9265":4,"9266":4,"9267":4,"9268":4,"9269":4,"9270":5,"9271":3,"9272":3,"9273":4,"9274":3,"9275":3,"9276":8,"9277":2,"9278":4,"9279":7,"9280":9,"9281":4,"9282":4,"9283":2,"9284":5,"9285":7,"9286":7,"9287":2,"9288":5,"9289":4,"9290":3,"9291":2,"9292":3,"9293":3,"9294":4,"9295":4,"9296":5,"9297":4,"9298":4,"9299":2,"9300":5,"9301":7,"9302":4,"9303":4,"9304":5,"9305":3,"9306":3,"9307":4,"9308":3,"9309":3,"9310":9,"9311":6,"9312":5,"9313":3,"9314":4,"9315":5,"9316":3,"9317":5,"9318":3,"9319":4,"9320":3,"9321":8,"9322":5,"9323":3,"9324":4,"9325":6,"9326":7,"9327":3,"9328":4,"9329":4,"9330":5,"9331":3,"9332":3,"9333":5,"9334":3,"9335":6,"9336":3,"9337":5,"9338":3,"9339":5,"9340":4,"9341":7,"9342":4,"9343":4,"9344":2,"9345":7,"9346":4,"9347":5,"9348":5,"9349":3,"9350":4,"9351":2,"9352":3,"9353":3,"9354":4,"9355":1,"9356":2,"9357":3,"9358":6,"9359":3,"9360":4,"9361":5,"9362":4,"9363":6,"9364":3,"9365":7,"9366":4,"9367":8,"9368":5,"9369":1,"9370":4,"9371":4,"9372":5,"9373":9,"9374":3,"9375":3,"9376":4,"9377":6,"9378":4,"9379":1,"9380":2,"9381":5,"9382":4,"9383":3,"9384":5,"9385":4,"9386":4,"9387":3,"9388":4,"9389":5,"9390":4,"9391":1,"9392":4,"9393":8,"9394":1,"9395":1,"9396":4,"9397":2,"9398":4,"9399":4,"9400":7,"9401":4,"9402":2,"9403":2,"9404":5,"9405":3,"9406":1,"9407":3,"9408":2,"9409":4,"9410":2,"9411":5,"9412":6,"9413":3,"9414":5,"9415":5,"9416":8,"9417":6,"9418":3,"9419":3,"9420":4,"9421":2,"9422":7,"9423":3,"9424":4,"9425":4,"9426":4,"9427":1,"9428":5,"9429":3,"9430":4,"9431":4,"9432":4,"9433":6,"9434":2,"9435":8,"9436":2,"9437":4,"9438":4,"9439":2,"9440":3,"9441":4,"9442":3,"9443":3,"9444":3,"9445":4,"9446":6,"9447":4,"9448":4,"9449":3,"9450":3,"9451":3,"9452":4,"9453":3,"9454":4,"9455":3,"9456":3,"9457":2,"9458":8,"9459":7,"9460":3,"9461":3,"9462":3,"9463":4,"9464":5,"9465":3,"9466":3,"9467":4,"9468":6,"9469":2,"9470":5,"9471":3,"9472":4,"9473":3,"9474":4,"9475":5,"9476":4,"9477":3,"9478":3,"9479":4,"9480":2,"9481":4,"9482":3,"9483":4,"9484":3,"9485":3,"9486":3,"9487":5,"9488":5,"9489":3,"9490":6,"9491":4,"9492":4,"9493":4,"9494":2,"9495":5,"9496":5,"9497":4,"9498":2,"9499":4,"9500":5,"9501":2,"9502":5,"9503":6,"9504":2,"9505":4,"9506":4,"9507":2,"9508":3,"9509":3,"9510":7,"9511":4,"9512":4,"9513":3,"9514":2,"9515":4,"9516":2,"9517":4,"9518":4,"9519":3,"9520":7,"9521":3,"9522":5,"9523":5,"9524":4,"9525":8,"9526":2,"9527":1,"9528":5,"9529":3,"9530":5,"9531":3,"9532":9,"9533":3,"9534":4,"9535":3,"9536":2,"9537":5,"9538":2,"9539":2,"9540":4,"9541":4,"9542":4,"9543":6,"9544":4,"9545":4,"9546":3,"9547":8,"9548":8,"9549":4,"9550":8,"9551":4,"9552":3,"9553":4,"9554":3,"9555":5,"9556":4,"9557":1,"9558":4,"9559":4,"9560":9,"9561":5,"9562":5,"9563":8,"9564":3,"9565":4,"9566":1,"9567":3,"9568":4,"9569":2,"9570":4,"9571":3,"9572":6,"9573":5,"9574":7,"9575":7,"9576":4,"9577":2,"9578":5,"9579":7,"9580":9,"9581":4,"9582":4,"9583":3,"9584":3,"9585":2,"9586":4,"9587":5,"9588":2,"9589":4,"9590":3,"9591":6,"9592":3,"9593":5,"9594":2,"9595":2,"9596":4,"9597":1,"9598":6,"9599":3,"9600":4,"9601":4,"9602":3,"9603":4,"9604":4,"9605":3,"9606":3,"9607":3,"9608":3,"9609":4,"9610":5,"9611":4,"9612":7,"9613":3,"9614":2,"9615":4,"9616":6,"9617":7,"9618":3,"9619":5,"9620":4,"9621":4,"9622":3,"9623":5,"9624":1,"9625":9,"9626":3,"9627":5,"9628":3,"9629":2,"9630":4,"9631":3,"9632":4,"9633":3,"9634":5,"9635":3,"9636":3,"9637":5,"9638":3,"9639":3,"9640":5,"9641":3,"9642":3,"9643":3,"9644":3,"9645":3,"9646":5,"9647":3,"9648":3,"9649":1,"9650":4,"9651":1,"9652":4,"9653":2,"9654":3,"9655":7,"9656":4,"9657":4,"9658":4,"9659":4,"9660":2,"9661":5,"9662":6,"9663":3,"9664":2,"9665":6,"9666":3,"9667":3,"9668":6,"9669":3,"9670":3,"9671":3,"9672":9,"9673":1,"9674":4,"9675":3,"9676":3,"9677":2,"9678":5,"9679":4,"9680":3,"9681":4,"9682":5,"9683":3,"9684":3,"9685":4,"9686":4,"9687":4,"9688":1,"9689":4,"9690":2,"9691":8,"9692":3,"9693":7,"9694":3,"9695":5,"9696":1,"9697":5,"9698":3,"9699":6,"9700":4,"9701":2,"9702":4,"9703":4,"9704":4,"9705":4,"9706":8,"9707":5,"9708":6,"9709":5,"9710":1,"9711":2,"9712":5,"9713":4,"9714":3,"9715":4,"9716":4,"9717":2,"9718":3,"9719":4,"9720":1,"9721":3,"9722":3,"9723":3,"9724":4,"9725":5,"9726":4,"9727":2,"9728":4,"9729":4,"9730":3,"9731":3,"9732":6,"9733":4,"9734":5,"9735":5,"9736":4,"9737":1,"9738":5,"9739":4,"9740":2,"9741":7,"9742":3,"9743":2,"9744":6,"9745":8,"9746":3,"9747":5,"9748":3,"9749":2,"9750":4,"9751":4,"9752":4,"9753":1,"9754":3,"9755":2,"9756":3,"9757":9,"9758":3,"9759":2,"9760":3,"9761":5,"9762":4,"9763":7,"9764":4,"9765":4,"9766":4,"9767":5,"9768":5,"9769":3,"9770":5,"9771":4,"9772":2,"9773":3,"9774":2,"9775":4,"9776":7,"9777":1,"9778":3,"9779":4,"9780":4,"9781":2,"9782":4,"9783":3,"9784":3,"9785":4,"9786":4,"9787":4,"9788":4,"9789":5,"9790":3,"9791":8,"9792":4,"9793":5,"9794":5,"9795":3,"9796":5,"9797":4,"9798":5,"9799":8,"9800":5,"9801":1,"9802":1,"9803":4,"9804":3,"9805":7,"9806":3,"9807":2,"9808":4,"9809":4,"9810":4,"9811":4,"9812":5,"9813":4,"9814":4,"9815":4,"9816":6,"9817":4,"9818":3,"9819":3,"9820":3,"9821":2,"9822":2,"9823":4,"9824":4,"9825":4,"9826":3,"9827":3,"9828":4,"9829":1,"9830":4,"9831":4,"9832":3,"9833":8,"9834":3,"9835":3,"9836":6,"9837":3,"9838":5,"9839":9,"9840":4,"9841":2,"9842":5,"9843":3,"9844":4,"9845":7,"9846":3,"9847":4,"9848":4,"9849":3,"9850":3,"9851":8,"9852":5,"9853":6,"9854":2,"9855":2,"9856":2,"9857":6,"9858":4,"9859":4,"9860":7,"9861":4,"9862":4,"9863":5,"9864":3,"9865":3,"9866":4,"9867":4,"9868":4,"9869":3,"9870":3,"9871":4,"9872":2,"9873":2,"9874":5,"9875":3,"9876":4,"9877":5,"9878":7,"9879":9,"9880":4,"9881":5,"9882":4,"9883":4,"9884":3,"9885":1,"9886":3,"9887":4,"9888":5,"9889":4,"9890":3,"9891":3,"9892":4,"9893":2,"9894":2,"9895":5,"9896":3,"9897":4,"9898":7,"9899":3,"9900":6,"9901":4,"9902":5,"9903":1,"9904":5,"9905":5,"9906":3,"9907":2,"9908":7,"9909":5,"9910":4,"9911":3,"9912":2,"9913":1,"9914":4,"9915":4,"9916":4,"9917":3,"9918":3,"9919":4,"9920":3,"9921":4,"9922":3,"9923":2,"9924":4,"9925":9,"9926":8,"9927":4,"9928":3,"9929":3,"9930":3,"9931":3,"9932":4,"9933":3,"9934":3,"9935":2,"9936":8,"9937":4,"9938":3,"9939":1,"9940":3,"9941":4,"9942":3,"9943":5,"9944":4,"9945":9,"9946":8,"9947":4,"9948":5,"9949":4,"9950":7,"9951":3,"9952":5,"9953":4,"9954":7,"9955":3,"9956":2,"9957":7,"9958":4,"9959":6,"9960":7,"9961":4,"9962":4,"9963":4,"9964":4,"9965":4,"9966":9,"9967":5,"9968":6,"9969":7,"9970":2,"9971":4,"9972":4,"9973":2,"9974":4,"9975":4,"9976":2,"9977":4,"9978":3,"9979":4,"9980":4,"9981":3,"9982":3,"9983":4,"9984":4,"9985":3,"9986":1,"9987":4,"9988":8,"9989":4,"9990":6,"9991":5,"9992":1,"9993":5,"9994":1,"9995":5,"9996":3,"9997":6,"9998":8,"9999":5,"10000":2,"10001":1,"10002":4,"10003":8,"10004":4,"10005":9,"10006":3,"10007":3,"10008":3,"10009":4,"10010":5,"10011":3,"10012":3,"10013":4,"10014":5,"10015":4,"10016":4,"10017":2,"10018":4,"10019":7,"10020":1,"10021":3,"10022":2,"10023":3,"10024":5,"10025":4,"10026":6,"10027":2,"10028":2,"10029":2,"10030":3,"10031":4,"10032":3,"10033":4,"10034":1,"10035":3,"10036":7,"10037":3,"10038":6,"10039":3,"10040":5,"10041":8,"10042":5,"10043":3,"10044":4,"10045":2,"10046":4,"10047":4,"10048":2,"10049":8,"10050":4,"10051":2,"10052":3,"10053":5,"10054":3,"10055":3,"10056":5,"10057":5,"10058":2,"10059":5,"10060":5,"10061":4,"10062":4,"10063":7,"10064":4,"10065":1,"10066":4,"10067":3,"10068":4,"10069":4,"10070":4,"10071":6,"10072":1,"10073":3,"10074":8,"10075":1,"10076":7,"10077":2,"10078":3,"10079":7,"10080":3,"10081":3,"10082":4,"10083":3,"10084":2,"10085":9,"10086":1,"10087":6,"10088":3,"10089":5,"10090":4,"10091":3,"10092":2,"10093":3,"10094":5,"10095":4,"10096":3,"10097":3,"10098":4,"10099":4,"10100":1,"10101":2,"10102":3,"10103":5,"10104":4,"10105":3,"10106":4,"10107":3,"10108":4,"10109":4,"10110":5,"10111":5,"10112":3,"10113":9,"10114":3,"10115":4,"10116":2,"10117":5,"10118":4,"10119":4,"10120":4,"10121":9,"10122":3,"10123":5,"10124":4,"10125":4,"10126":4,"10127":6,"10128":2,"10129":5,"10130":4,"10131":1,"10132":5,"10133":4,"10134":5,"10135":4,"10136":3,"10137":4,"10138":2,"10139":3,"10140":3,"10141":5,"10142":2,"10143":4,"10144":5,"10145":4,"10146":4,"10147":4,"10148":5,"10149":2,"10150":3,"10151":4,"10152":6,"10153":3,"10154":4,"10155":4,"10156":6,"10157":5,"10158":3,"10159":9,"10160":3,"10161":3,"10162":5,"10163":5,"10164":4,"10165":4,"10166":3,"10167":6,"10168":4,"10169":4,"10170":5,"10171":5,"10172":7,"10173":7,"10174":8,"10175":3,"10176":4,"10177":5,"10178":4,"10179":3,"10180":3,"10181":5,"10182":3,"10183":9,"10184":4,"10185":5,"10186":8,"10187":7,"10188":5,"10189":5,"10190":6,"10191":1,"10192":3,"10193":3,"10194":4,"10195":4,"10196":3,"10197":4,"10198":4,"10199":3,"10200":3,"10201":5,"10202":4,"10203":5,"10204":5,"10205":5,"10206":6,"10207":2,"10208":4,"10209":8,"10210":1,"10211":4,"10212":8,"10213":5,"10214":4,"10215":4,"10216":4,"10217":5,"10218":4,"10219":3,"10220":2,"10221":6,"10222":4,"10223":5,"10224":6,"10225":7,"10226":5,"10227":4,"10228":4,"10229":1,"10230":3,"10231":3,"10232":1,"10233":4,"10234":7,"10235":5,"10236":5,"10237":4,"10238":3,"10239":5,"10240":4,"10241":1,"10242":4,"10243":5,"10244":3,"10245":5,"10246":1,"10247":4,"10248":4,"10249":6,"10250":5,"10251":3,"10252":3,"10253":3,"10254":4,"10255":3,"10256":4,"10257":4,"10258":3,"10259":3,"10260":1,"10261":4,"10262":7,"10263":4,"10264":3,"10265":7,"10266":6,"10267":5,"10268":4,"10269":5,"10270":4,"10271":5,"10272":4,"10273":1,"10274":5,"10275":5,"10276":3,"10277":3,"10278":2,"10279":3,"10280":2,"10281":4,"10282":3,"10283":1,"10284":2,"10285":2,"10286":4,"10287":2,"10288":8,"10289":4,"10290":4,"10291":4,"10292":6,"10293":3,"10294":4,"10295":7,"10296":6,"10297":5,"10298":4,"10299":6,"10300":4,"10301":5,"10302":6,"10303":2,"10304":3,"10305":3,"10306":4,"10307":2,"10308":5,"10309":5,"10310":5,"10311":7,"10312":3,"10313":5,"10314":6,"10315":5,"10316":3,"10317":3,"10318":3,"10319":1,"10320":5,"10321":7,"10322":5,"10323":2,"10324":7,"10325":3,"10326":7,"10327":8,"10328":4,"10329":6,"10330":3,"10331":5,"10332":4,"10333":2,"10334":6,"10335":2,"10336":4,"10337":4,"10338":3,"10339":7,"10340":1,"10341":3,"10342":5,"10343":7,"10344":4,"10345":3,"10346":3,"10347":4,"10348":4,"10349":3,"10350":2,"10351":9,"10352":7,"10353":4,"10354":7,"10355":2,"10356":4,"10357":1,"10358":3,"10359":5,"10360":4,"10361":5,"10362":4,"10363":4,"10364":8,"10365":4,"10366":5,"10367":3,"10368":3,"10369":3,"10370":3,"10371":4,"10372":4,"10373":5,"10374":5,"10375":2,"10376":3,"10377":8,"10378":4,"10379":3,"10380":2,"10381":1,"10382":4,"10383":3,"10384":4,"10385":6,"10386":4,"10387":3,"10388":3,"10389":4,"10390":3,"10391":5,"10392":4,"10393":4,"10394":4,"10395":6,"10396":5,"10397":4,"10398":4,"10399":5,"10400":5,"10401":2,"10402":5,"10403":2,"10404":2,"10405":6,"10406":1,"10407":3,"10408":2,"10409":5,"10410":1,"10411":4,"10412":3,"10413":3,"10414":3,"10415":7,"10416":2,"10417":3,"10418":5,"10419":4,"10420":4,"10421":9,"10422":3,"10423":9,"10424":3,"10425":7,"10426":1,"10427":4,"10428":7,"10429":3,"10430":4,"10431":4,"10432":2,"10433":7,"10434":4,"10435":4,"10436":6,"10437":4,"10438":3,"10439":5,"10440":4,"10441":4,"10442":3,"10443":3,"10444":5,"10445":9,"10446":3,"10447":2,"10448":5,"10449":8,"10450":3,"10451":8,"10452":2,"10453":9,"10454":6,"10455":4,"10456":3,"10457":4,"10458":5,"10459":4,"10460":4,"10461":4,"10462":4,"10463":5,"10464":3,"10465":5,"10466":2,"10467":5,"10468":5,"10469":3,"10470":4,"10471":3,"10472":3,"10473":4,"10474":5,"10475":4,"10476":5,"10477":4,"10478":5,"10479":3,"10480":4,"10481":4,"10482":6,"10483":4,"10484":4,"10485":1,"10486":4,"10487":4,"10488":3,"10489":2,"10490":3,"10491":2,"10492":3,"10493":1,"10494":3,"10495":2,"10496":4,"10497":4,"10498":5,"10499":7,"10500":3,"10501":5,"10502":3,"10503":2,"10504":4,"10505":5,"10506":4,"10507":3,"10508":4,"10509":3,"10510":3,"10511":4,"10512":5,"10513":6,"10514":7,"10515":1,"10516":7,"10517":4,"10518":4,"10519":5,"10520":4,"10521":4,"10522":2,"10523":1,"10524":7,"10525":4,"10526":2,"10527":5,"10528":6,"10529":1,"10530":4,"10531":4,"10532":3,"10533":8,"10534":4,"10535":2,"10536":4,"10537":3,"10538":3,"10539":3,"10540":2,"10541":3,"10542":3,"10543":3,"10544":4,"10545":9,"10546":5,"10547":3,"10548":3,"10549":3,"10550":3,"10551":4,"10552":3,"10553":7,"10554":3,"10555":5,"10556":4,"10557":5,"10558":3,"10559":1,"10560":5,"10561":6,"10562":4,"10563":5,"10564":5,"10565":6,"10566":8,"10567":5,"10568":4,"10569":2,"10570":3,"10571":5,"10572":7,"10573":2,"10574":7,"10575":5,"10576":7,"10577":4,"10578":4,"10579":4,"10580":3,"10581":7,"10582":3,"10583":4,"10584":1,"10585":4,"10586":3,"10587":5,"10588":9,"10589":4,"10590":4,"10591":4,"10592":6,"10593":4,"10594":3,"10595":1,"10596":4,"10597":1,"10598":3,"10599":4,"10600":5,"10601":5,"10602":2,"10603":4,"10604":2,"10605":4,"10606":3,"10607":5,"10608":5,"10609":2,"10610":1,"10611":3,"10612":8,"10613":5,"10614":3,"10615":5,"10616":6,"10617":6,"10618":3,"10619":5,"10620":6,"10621":3,"10622":3,"10623":4,"10624":4,"10625":4,"10626":2,"10627":3,"10628":2,"10629":9,"10630":3,"10631":3,"10632":4,"10633":5,"10634":5,"10635":4,"10636":3,"10637":4,"10638":4,"10639":4,"10640":3,"10641":3,"10642":3,"10643":4,"10644":3,"10645":4,"10646":8,"10647":4,"10648":3,"10649":6,"10650":3,"10651":3,"10652":3,"10653":1,"10654":3,"10655":4,"10656":7,"10657":2,"10658":4,"10659":3,"10660":4,"10661":6,"10662":3,"10663":3,"10664":3,"10665":4,"10666":4,"10667":7,"10668":4,"10669":4,"10670":4,"10671":5,"10672":6,"10673":2,"10674":8,"10675":5,"10676":5,"10677":4,"10678":3,"10679":2,"10680":3,"10681":5,"10682":2,"10683":4,"10684":4,"10685":3,"10686":7,"10687":2,"10688":3,"10689":4,"10690":4,"10691":5,"10692":7,"10693":6,"10694":4,"10695":2,"10696":2,"10697":4,"10698":1,"10699":4,"10700":3,"10701":4,"10702":4,"10703":4,"10704":1,"10705":8,"10706":2,"10707":1,"10708":2,"10709":4,"10710":8,"10711":3,"10712":3,"10713":5,"10714":5,"10715":5,"10716":4,"10717":3,"10718":2,"10719":3,"10720":4,"10721":4,"10722":3,"10723":4,"10724":7,"10725":1,"10726":5,"10727":4,"10728":4,"10729":4,"10730":8,"10731":2,"10732":7,"10733":3,"10734":5,"10735":3,"10736":3,"10737":3,"10738":3,"10739":1,"10740":4,"10741":3,"10742":4,"10743":3,"10744":9,"10745":1,"10746":5,"10747":3,"10748":4,"10749":2,"10750":3,"10751":1,"10752":2,"10753":3,"10754":5,"10755":6,"10756":4,"10757":4,"10758":3,"10759":5,"10760":4,"10761":4,"10762":4,"10763":7,"10764":3,"10765":3,"10766":3,"10767":5,"10768":4,"10769":4,"10770":4,"10771":4,"10772":1,"10773":3,"10774":6,"10775":4,"10776":3,"10777":3,"10778":6,"10779":4,"10780":8,"10781":4,"10782":5,"10783":2,"10784":5,"10785":6,"10786":3,"10787":4,"10788":7,"10789":3,"10790":4,"10791":3,"10792":4,"10793":3,"10794":4,"10795":7,"10796":4,"10797":4,"10798":8,"10799":4,"10800":3,"10801":6,"10802":5,"10803":2,"10804":4,"10805":9,"10806":2,"10807":5,"10808":3,"10809":1,"10810":6,"10811":5,"10812":5,"10813":8,"10814":3,"10815":3,"10816":5,"10817":2,"10818":3,"10819":4,"10820":4,"10821":2,"10822":4,"10823":4,"10824":3,"10825":5,"10826":3,"10827":2,"10828":3,"10829":2,"10830":5,"10831":1,"10832":3,"10833":2,"10834":1,"10835":3,"10836":2,"10837":6,"10838":4,"10839":2,"10840":6,"10841":6,"10842":8,"10843":5,"10844":2,"10845":9,"10846":3,"10847":4,"10848":4,"10849":3,"10850":2,"10851":3,"10852":6,"10853":4,"10854":4,"10855":4,"10856":5,"10857":2,"10858":4,"10859":2,"10860":4,"10861":3,"10862":7,"10863":5,"10864":2,"10865":1,"10866":4,"10867":7,"10868":5,"10869":1,"10870":3,"10871":4,"10872":5,"10873":6,"10874":2,"10875":8,"10876":3,"10877":3,"10878":4,"10879":4,"10880":5,"10881":3,"10882":1,"10883":4,"10884":4,"10885":4,"10886":2,"10887":5,"10888":5,"10889":5,"10890":6,"10891":7,"10892":4,"10893":3,"10894":4,"10895":4,"10896":2,"10897":8,"10898":6,"10899":1,"10900":5,"10901":3,"10902":2,"10903":3,"10904":4,"10905":6,"10906":4,"10907":7,"10908":2,"10909":7,"10910":4,"10911":3,"10912":4,"10913":5,"10914":5,"10915":3,"10916":4,"10917":3,"10918":5,"10919":3,"10920":1,"10921":1,"10922":4,"10923":3,"10924":4,"10925":7,"10926":4,"10927":4,"10928":4,"10929":6,"10930":5,"10931":3,"10932":4,"10933":4,"10934":5,"10935":4,"10936":3,"10937":2,"10938":4,"10939":9,"10940":2,"10941":4,"10942":3,"10943":3,"10944":4,"10945":3,"10946":5,"10947":4,"10948":4,"10949":2,"10950":2,"10951":2,"10952":5,"10953":6,"10954":3,"10955":3,"10956":3,"10957":4,"10958":3,"10959":3,"10960":1,"10961":4,"10962":6,"10963":1,"10964":4,"10965":4,"10966":2,"10967":2,"10968":4,"10969":3,"10970":3,"10971":3,"10972":2,"10973":4,"10974":4,"10975":6,"10976":3,"10977":4,"10978":2,"10979":3,"10980":3,"10981":5,"10982":7,"10983":3,"10984":2,"10985":4,"10986":7,"10987":4,"10988":4,"10989":7,"10990":3,"10991":5,"10992":2,"10993":4,"10994":2,"10995":4,"10996":7,"10997":6,"10998":4,"10999":2,"11000":5,"11001":4,"11002":3,"11003":4,"11004":3,"11005":5,"11006":5,"11007":4,"11008":4,"11009":4,"11010":3,"11011":3,"11012":3,"11013":4,"11014":2,"11015":4,"11016":7,"11017":4,"11018":7,"11019":3,"11020":1,"11021":5,"11022":5,"11023":5,"11024":5,"11025":3,"11026":4,"11027":2,"11028":4,"11029":3,"11030":2,"11031":3,"11032":8,"11033":5,"11034":4,"11035":4,"11036":7,"11037":4,"11038":4,"11039":8,"11040":4,"11041":1,"11042":7,"11043":7,"11044":3,"11045":8,"11046":3,"11047":7,"11048":5,"11049":3,"11050":3,"11051":3,"11052":4,"11053":3,"11054":4,"11055":4,"11056":3,"11057":4,"11058":1,"11059":3,"11060":3,"11061":3,"11062":3,"11063":2,"11064":4,"11065":4,"11066":4,"11067":3,"11068":2,"11069":4,"11070":3,"11071":2,"11072":4,"11073":5,"11074":5,"11075":2,"11076":4,"11077":3,"11078":3,"11079":4,"11080":5,"11081":4,"11082":5,"11083":5,"11084":3,"11085":6,"11086":4,"11087":3,"11088":3,"11089":4,"11090":3,"11091":3,"11092":3,"11093":7,"11094":6,"11095":2,"11096":6,"11097":5,"11098":4,"11099":3,"11100":5,"11101":5,"11102":5,"11103":3,"11104":1,"11105":2,"11106":5,"11107":4,"11108":4,"11109":2,"11110":7,"11111":7,"11112":4,"11113":4,"11114":3,"11115":2,"11116":4,"11117":4,"11118":4,"11119":4,"11120":4,"11121":4,"11122":4,"11123":3,"11124":3,"11125":5,"11126":9,"11127":4,"11128":5,"11129":4,"11130":2,"11131":4,"11132":2,"11133":5,"11134":3,"11135":4,"11136":5,"11137":2,"11138":3,"11139":8,"11140":6,"11141":9,"11142":2,"11143":1,"11144":4,"11145":3,"11146":8,"11147":9,"11148":5,"11149":4,"11150":3,"11151":2,"11152":3,"11153":3,"11154":4,"11155":4,"11156":3,"11157":2,"11158":7,"11159":5,"11160":7,"11161":1,"11162":2,"11163":4,"11164":5,"11165":4,"11166":8,"11167":7,"11168":3,"11169":5,"11170":4,"11171":3,"11172":3,"11173":2,"11174":4,"11175":4,"11176":3,"11177":6,"11178":2,"11179":6,"11180":1,"11181":5,"11182":4,"11183":1,"11184":4,"11185":4,"11186":3,"11187":6,"11188":4,"11189":4,"11190":3,"11191":2,"11192":4,"11193":5,"11194":4,"11195":5,"11196":5,"11197":3,"11198":3,"11199":4,"11200":3,"11201":3,"11202":4,"11203":7,"11204":5,"11205":5,"11206":4,"11207":3,"11208":4,"11209":5,"11210":4,"11211":3,"11212":4,"11213":4,"11214":4,"11215":3,"11216":5,"11217":8,"11218":3,"11219":3,"11220":4,"11221":5,"11222":2,"11223":4,"11224":7,"11225":3,"11226":3,"11227":3,"11228":4,"11229":3,"11230":5,"11231":5,"11232":8,"11233":4,"11234":3,"11235":3,"11236":7,"11237":1,"11238":4,"11239":5,"11240":3,"11241":5,"11242":3,"11243":4,"11244":3,"11245":3,"11246":9,"11247":5,"11248":4,"11249":3,"11250":4,"11251":3,"11252":4,"11253":5,"11254":1,"11255":4,"11256":3,"11257":4,"11258":4,"11259":4,"11260":4,"11261":3,"11262":1,"11263":7,"11264":4,"11265":2,"11266":3,"11267":3,"11268":7,"11269":4,"11270":2,"11271":3,"11272":4,"11273":4,"11274":5,"11275":3,"11276":4,"11277":3,"11278":6,"11279":5,"11280":5,"11281":4,"11282":9,"11283":6,"11284":3,"11285":4,"11286":8,"11287":3,"11288":5,"11289":1,"11290":8,"11291":9,"11292":4,"11293":1,"11294":5,"11295":1,"11296":4,"11297":3,"11298":1,"11299":3,"11300":3,"11301":5,"11302":4,"11303":3,"11304":3,"11305":4,"11306":4,"11307":5,"11308":5,"11309":2,"11310":9,"11311":5,"11312":4,"11313":5,"11314":5,"11315":3,"11316":9,"11317":4,"11318":3,"11319":3,"11320":3,"11321":4,"11322":5,"11323":5,"11324":2,"11325":5,"11326":7,"11327":4,"11328":5,"11329":4,"11330":2,"11331":3,"11332":4,"11333":5,"11334":6,"11335":8,"11336":6,"11337":1,"11338":4,"11339":4,"11340":5,"11341":4,"11342":4,"11343":3,"11344":9,"11345":6,"11346":5,"11347":3,"11348":4,"11349":4,"11350":4,"11351":3,"11352":8,"11353":4,"11354":4,"11355":3,"11356":4,"11357":6,"11358":3,"11359":2,"11360":3,"11361":3,"11362":1,"11363":4,"11364":6,"11365":5,"11366":4,"11367":5,"11368":4,"11369":5,"11370":5,"11371":4,"11372":2,"11373":3,"11374":3,"11375":9,"11376":7,"11377":4,"11378":3,"11379":2,"11380":8,"11381":4,"11382":7,"11383":5,"11384":3,"11385":3,"11386":5,"11387":2,"11388":4,"11389":1,"11390":4,"11391":5,"11392":5,"11393":3,"11394":3,"11395":5,"11396":5,"11397":4,"11398":1,"11399":7,"11400":6,"11401":4,"11402":4,"11403":5,"11404":3,"11405":4,"11406":4,"11407":9,"11408":4,"11409":7,"11410":4,"11411":4,"11412":3,"11413":6,"11414":4,"11415":2,"11416":4,"11417":3,"11418":3,"11419":4,"11420":4,"11421":5,"11422":1,"11423":5,"11424":3,"11425":3,"11426":3,"11427":3,"11428":3,"11429":4,"11430":2,"11431":3,"11432":4,"11433":4,"11434":4,"11435":3,"11436":4,"11437":8,"11438":2,"11439":2,"11440":3,"11441":3,"11442":6,"11443":2,"11444":3,"11445":7,"11446":2,"11447":4,"11448":3,"11449":3,"11450":4,"11451":5,"11452":1,"11453":3,"11454":5,"11455":1,"11456":2,"11457":1,"11458":4,"11459":9,"11460":5,"11461":4,"11462":3,"11463":3,"11464":5,"11465":4,"11466":3,"11467":2,"11468":5,"11469":6,"11470":3,"11471":3,"11472":2,"11473":4,"11474":3,"11475":3,"11476":4,"11477":6,"11478":2,"11479":5,"11480":3,"11481":1,"11482":9,"11483":1,"11484":4,"11485":3,"11486":4,"11487":7,"11488":3,"11489":2,"11490":7,"11491":5,"11492":3,"11493":8,"11494":3,"11495":5,"11496":4,"11497":7,"11498":5,"11499":4,"11500":3,"11501":3,"11502":8,"11503":3,"11504":5,"11505":1,"11506":4,"11507":3,"11508":2,"11509":1,"11510":5,"11511":1,"11512":3,"11513":3,"11514":5,"11515":6,"11516":4,"11517":3,"11518":3,"11519":6,"11520":6,"11521":4,"11522":5,"11523":4,"11524":3,"11525":5,"11526":4,"11527":4,"11528":5,"11529":2,"11530":6,"11531":7,"11532":3,"11533":5,"11534":4,"11535":4,"11536":8,"11537":5,"11538":5,"11539":2,"11540":4,"11541":4,"11542":4,"11543":3,"11544":3,"11545":5,"11546":3,"11547":2,"11548":1,"11549":1,"11550":6,"11551":3,"11552":5,"11553":4,"11554":4,"11555":5,"11556":4,"11557":5,"11558":9,"11559":4,"11560":3,"11561":3,"11562":3,"11563":3,"11564":1,"11565":5,"11566":5,"11567":4,"11568":4,"11569":4,"11570":4,"11571":4,"11572":4,"11573":4,"11574":3,"11575":2,"11576":2,"11577":6,"11578":7,"11579":4,"11580":4,"11581":6,"11582":8,"11583":4,"11584":4,"11585":5,"11586":3,"11587":3,"11588":4,"11589":4,"11590":9,"11591":9,"11592":4,"11593":3,"11594":3,"11595":2,"11596":3,"11597":3,"11598":4,"11599":4,"11600":1,"11601":5,"11602":3,"11603":1,"11604":3,"11605":2,"11606":3,"11607":2,"11608":4,"11609":4,"11610":5,"11611":6,"11612":4,"11613":3,"11614":4,"11615":4,"11616":1,"11617":5,"11618":2,"11619":4,"11620":5,"11621":4,"11622":3,"11623":5,"11624":5,"11625":3,"11626":8,"11627":2,"11628":3,"11629":3,"11630":3,"11631":3,"11632":5,"11633":6,"11634":1,"11635":4,"11636":3,"11637":3,"11638":5,"11639":3,"11640":4,"11641":5,"11642":5,"11643":4,"11644":5,"11645":3,"11646":9,"11647":7,"11648":3,"11649":8,"11650":3,"11651":3,"11652":3,"11653":3,"11654":2,"11655":5,"11656":3,"11657":4,"11658":4,"11659":4,"11660":3,"11661":4,"11662":4,"11663":5,"11664":4,"11665":6,"11666":3,"11667":8,"11668":3,"11669":3,"11670":3,"11671":3,"11672":4,"11673":4,"11674":3,"11675":4,"11676":9,"11677":3,"11678":1,"11679":5,"11680":4,"11681":3,"11682":4,"11683":2,"11684":4,"11685":9,"11686":4,"11687":5,"11688":8,"11689":7,"11690":3,"11691":3,"11692":7,"11693":3,"11694":4,"11695":1,"11696":5,"11697":7,"11698":3,"11699":4,"11700":5,"11701":1,"11702":5,"11703":4,"11704":4,"11705":4,"11706":4,"11707":3,"11708":4,"11709":3,"11710":5,"11711":5,"11712":3,"11713":5,"11714":7,"11715":3,"11716":3,"11717":4,"11718":4,"11719":4,"11720":7,"11721":5,"11722":7,"11723":4,"11724":6,"11725":1,"11726":7,"11727":4,"11728":5,"11729":2,"11730":4,"11731":1,"11732":7,"11733":5,"11734":6,"11735":5,"11736":6,"11737":1,"11738":5,"11739":4,"11740":8,"11741":8,"11742":4,"11743":5,"11744":4,"11745":5,"11746":3,"11747":7,"11748":4,"11749":3,"11750":4,"11751":4,"11752":4,"11753":3,"11754":3,"11755":5,"11756":4,"11757":4,"11758":4,"11759":5,"11760":3,"11761":8,"11762":3,"11763":8,"11764":4,"11765":5,"11766":2,"11767":4,"11768":1,"11769":5,"11770":4,"11771":3,"11772":3,"11773":9,"11774":4,"11775":6,"11776":5,"11777":2,"11778":7,"11779":4,"11780":8,"11781":4,"11782":2,"11783":9,"11784":5,"11785":6,"11786":5,"11787":3,"11788":3,"11789":4,"11790":1,"11791":3,"11792":7,"11793":3,"11794":4,"11795":3,"11796":9,"11797":4,"11798":5,"11799":4,"11800":4,"11801":4,"11802":3,"11803":7,"11804":2,"11805":6,"11806":2,"11807":4,"11808":4,"11809":3,"11810":4,"11811":1,"11812":5,"11813":3,"11814":4,"11815":7,"11816":4,"11817":4,"11818":3,"11819":4,"11820":3,"11821":4,"11822":4,"11823":3,"11824":6,"11825":4,"11826":1,"11827":2,"11828":4,"11829":4,"11830":4,"11831":4,"11832":4,"11833":6,"11834":4,"11835":3,"11836":3,"11837":4,"11838":8,"11839":5,"11840":3,"11841":5,"11842":2,"11843":3,"11844":5,"11845":7,"11846":5,"11847":3,"11848":5,"11849":4,"11850":7,"11851":3,"11852":9,"11853":1,"11854":3,"11855":7,"11856":3,"11857":3,"11858":3,"11859":2,"11860":7,"11861":2,"11862":4,"11863":2,"11864":3,"11865":7,"11866":2,"11867":3,"11868":2,"11869":3,"11870":6,"11871":4,"11872":5,"11873":4,"11874":7,"11875":4,"11876":4,"11877":2,"11878":1,"11879":1,"11880":4,"11881":4,"11882":5,"11883":4,"11884":3,"11885":5,"11886":3,"11887":7,"11888":2,"11889":4,"11890":2,"11891":2,"11892":8,"11893":5,"11894":7,"11895":4,"11896":2,"11897":5,"11898":5,"11899":4,"11900":3,"11901":8,"11902":2,"11903":3,"11904":4,"11905":6,"11906":3,"11907":5,"11908":4,"11909":4,"11910":4,"11911":6,"11912":3,"11913":2,"11914":2,"11915":4,"11916":3,"11917":4,"11918":6,"11919":5,"11920":3,"11921":4,"11922":4,"11923":3,"11924":5,"11925":2,"11926":6,"11927":2,"11928":4,"11929":4,"11930":4,"11931":4,"11932":5,"11933":3,"11934":1,"11935":7,"11936":2,"11937":7,"11938":5,"11939":7,"11940":5,"11941":4,"11942":5,"11943":3,"11944":4,"11945":3,"11946":2,"11947":4,"11948":4,"11949":2,"11950":2,"11951":3,"11952":3,"11953":3,"11954":2,"11955":4,"11956":5,"11957":4,"11958":5,"11959":3,"11960":3,"11961":5,"11962":4,"11963":3,"11964":3,"11965":4,"11966":5,"11967":5,"11968":4,"11969":5,"11970":2,"11971":2,"11972":5,"11973":4,"11974":3,"11975":4,"11976":4,"11977":3,"11978":2,"11979":4,"11980":5,"11981":4,"11982":4,"11983":1,"11984":3,"11985":4,"11986":4,"11987":4,"11988":1,"11989":5,"11990":2,"11991":3,"11992":3,"11993":3,"11994":4,"11995":4,"11996":6,"11997":3,"11998":3,"11999":5,"12000":3,"12001":5,"12002":5,"12003":5,"12004":4,"12005":2,"12006":3,"12007":5,"12008":8,"12009":7,"12010":4,"12011":4,"12012":4,"12013":3,"12014":6,"12015":5,"12016":4,"12017":3,"12018":9,"12019":3,"12020":4,"12021":8,"12022":2,"12023":1,"12024":3,"12025":4,"12026":8,"12027":9,"12028":4,"12029":2,"12030":3,"12031":4,"12032":2,"12033":2,"12034":3,"12035":4,"12036":4,"12037":5,"12038":5,"12039":4,"12040":3,"12041":3,"12042":6,"12043":4,"12044":3,"12045":3,"12046":4,"12047":3,"12048":4,"12049":4,"12050":1,"12051":4,"12052":4,"12053":5,"12054":5,"12055":3,"12056":6,"12057":2,"12058":3,"12059":2,"12060":4,"12061":3,"12062":1,"12063":7,"12064":3,"12065":6,"12066":4,"12067":2,"12068":5,"12069":1,"12070":6,"12071":5,"12072":3,"12073":3,"12074":3,"12075":4,"12076":4,"12077":1,"12078":3,"12079":5,"12080":3,"12081":4,"12082":3,"12083":6,"12084":4,"12085":4,"12086":5,"12087":9,"12088":3,"12089":7,"12090":5,"12091":4,"12092":3,"12093":7,"12094":4,"12095":3,"12096":3,"12097":3,"12098":3,"12099":6,"12100":8,"12101":6,"12102":5,"12103":2,"12104":6,"12105":3,"12106":4,"12107":3,"12108":5,"12109":4,"12110":4,"12111":3,"12112":3,"12113":2,"12114":4,"12115":4,"12116":4,"12117":5,"12118":1,"12119":4,"12120":2,"12121":4,"12122":2,"12123":4,"12124":3,"12125":9,"12126":4,"12127":2,"12128":8,"12129":7,"12130":2,"12131":3,"12132":4,"12133":2,"12134":2,"12135":5,"12136":2,"12137":4,"12138":3,"12139":4,"12140":4,"12141":1,"12142":2,"12143":3,"12144":7,"12145":5,"12146":4,"12147":3,"12148":1,"12149":7,"12150":4,"12151":3,"12152":3,"12153":4,"12154":5,"12155":9,"12156":7,"12157":4,"12158":4,"12159":5,"12160":4,"12161":4,"12162":2,"12163":5,"12164":3,"12165":4,"12166":5,"12167":4,"12168":4,"12169":2,"12170":2,"12171":4,"12172":1,"12173":4,"12174":5,"12175":2,"12176":4,"12177":4,"12178":3,"12179":3,"12180":4,"12181":4,"12182":4,"12183":5,"12184":9,"12185":5,"12186":2,"12187":3,"12188":3,"12189":6,"12190":4,"12191":6,"12192":2,"12193":7,"12194":4,"12195":4,"12196":5,"12197":4,"12198":3,"12199":3,"12200":3,"12201":4,"12202":2,"12203":4,"12204":6,"12205":3,"12206":1,"12207":5,"12208":2,"12209":3,"12210":4,"12211":7,"12212":3,"12213":4,"12214":5,"12215":7,"12216":3,"12217":5,"12218":6,"12219":2,"12220":2,"12221":4,"12222":2,"12223":2,"12224":6,"12225":5,"12226":5,"12227":4,"12228":1,"12229":6,"12230":5,"12231":7,"12232":3,"12233":4,"12234":8,"12235":4,"12236":1,"12237":5,"12238":3,"12239":4,"12240":3,"12241":1,"12242":3,"12243":5,"12244":4,"12245":4,"12246":4,"12247":3,"12248":3,"12249":2,"12250":4,"12251":3,"12252":2,"12253":4,"12254":3,"12255":5,"12256":3,"12257":3,"12258":3,"12259":1,"12260":2,"12261":7,"12262":3,"12263":3,"12264":4,"12265":2,"12266":3,"12267":5,"12268":4,"12269":3,"12270":4,"12271":3,"12272":3,"12273":4,"12274":3,"12275":3,"12276":3,"12277":4,"12278":2,"12279":6,"12280":4,"12281":5,"12282":3,"12283":8,"12284":4,"12285":4,"12286":2,"12287":4,"12288":4,"12289":4,"12290":4,"12291":1,"12292":4,"12293":3,"12294":3,"12295":4,"12296":4,"12297":2,"12298":4,"12299":4,"12300":4,"12301":4,"12302":2,"12303":2,"12304":4,"12305":4,"12306":3,"12307":2,"12308":5,"12309":3,"12310":6,"12311":4,"12312":4,"12313":7,"12314":3,"12315":3,"12316":7,"12317":3,"12318":4,"12319":4,"12320":3,"12321":6,"12322":4,"12323":2,"12324":3,"12325":4,"12326":9,"12327":5,"12328":3,"12329":3,"12330":4,"12331":5,"12332":3,"12333":5,"12334":5,"12335":4,"12336":5,"12337":4,"12338":3,"12339":5,"12340":4,"12341":6,"12342":4,"12343":3,"12344":2,"12345":4,"12346":3,"12347":3,"12348":3,"12349":1,"12350":4,"12351":7,"12352":3,"12353":3,"12354":4,"12355":9,"12356":3,"12357":5,"12358":4,"12359":4,"12360":1,"12361":6,"12362":3,"12363":5,"12364":5,"12365":9,"12366":6,"12367":4,"12368":5,"12369":3,"12370":7,"12371":3,"12372":2,"12373":3,"12374":5,"12375":4,"12376":6,"12377":4,"12378":4,"12379":4,"12380":3,"12381":1,"12382":3,"12383":5,"12384":4,"12385":5,"12386":5,"12387":5,"12388":5,"12389":2,"12390":3,"12391":1,"12392":7,"12393":4,"12394":3,"12395":5,"12396":3,"12397":3,"12398":2,"12399":7,"12400":8,"12401":3,"12402":4,"12403":3,"12404":3,"12405":4,"12406":3,"12407":8,"12408":4,"12409":4,"12410":4,"12411":5,"12412":4,"12413":8,"12414":2,"12415":4,"12416":3,"12417":4,"12418":4,"12419":7,"12420":1,"12421":6,"12422":4,"12423":2,"12424":8,"12425":2,"12426":5,"12427":3,"12428":6,"12429":3,"12430":5,"12431":4,"12432":3,"12433":3,"12434":3,"12435":3,"12436":7,"12437":4,"12438":4,"12439":5,"12440":8,"12441":4,"12442":3,"12443":3,"12444":2,"12445":8,"12446":3,"12447":4,"12448":4,"12449":4,"12450":5,"12451":4,"12452":3,"12453":8,"12454":4,"12455":5,"12456":2,"12457":5,"12458":4,"12459":4,"12460":4,"12461":3,"12462":5,"12463":5,"12464":5,"12465":3,"12466":4,"12467":8,"12468":4,"12469":5,"12470":4,"12471":4,"12472":4,"12473":2,"12474":4,"12475":4,"12476":9,"12477":3,"12478":1,"12479":1,"12480":4,"12481":8,"12482":5,"12483":2,"12484":3,"12485":5,"12486":8,"12487":7,"12488":4,"12489":3,"12490":6,"12491":2,"12492":5,"12493":2,"12494":7,"12495":4,"12496":4,"12497":5,"12498":4,"12499":5,"12500":4,"12501":6,"12502":3,"12503":4,"12504":5,"12505":2,"12506":3,"12507":3,"12508":7,"12509":4,"12510":2,"12511":5,"12512":3,"12513":3,"12514":3,"12515":4,"12516":3,"12517":6,"12518":4,"12519":3,"12520":3,"12521":2,"12522":5,"12523":6,"12524":3,"12525":4,"12526":4,"12527":1,"12528":3,"12529":3,"12530":2,"12531":4,"12532":4,"12533":2,"12534":3,"12535":4,"12536":5,"12537":8,"12538":3,"12539":4,"12540":2,"12541":1,"12542":4,"12543":1,"12544":6,"12545":3,"12546":5,"12547":4,"12548":4,"12549":3,"12550":3,"12551":4,"12552":6,"12553":4,"12554":4,"12555":4,"12556":5,"12557":3,"12558":5,"12559":5,"12560":2,"12561":3,"12562":9,"12563":2,"12564":5,"12565":4,"12566":5,"12567":8,"12568":4,"12569":5,"12570":2,"12571":9,"12572":4,"12573":3,"12574":8,"12575":4,"12576":2,"12577":6,"12578":5,"12579":7,"12580":5,"12581":5,"12582":5,"12583":6,"12584":4,"12585":3,"12586":5,"12587":4,"12588":4,"12589":5,"12590":4,"12591":6,"12592":4,"12593":5,"12594":7,"12595":5,"12596":3,"12597":8,"12598":3,"12599":5,"12600":3,"12601":4,"12602":5,"12603":3,"12604":1,"12605":3,"12606":5,"12607":4,"12608":4,"12609":3,"12610":3,"12611":4,"12612":7,"12613":2,"12614":3,"12615":8,"12616":2,"12617":7,"12618":4,"12619":3,"12620":4,"12621":3,"12622":4,"12623":5,"12624":3,"12625":2,"12626":2,"12627":4,"12628":5,"12629":2,"12630":3,"12631":2,"12632":1,"12633":3,"12634":6,"12635":1,"12636":5,"12637":4,"12638":8,"12639":3,"12640":5,"12641":3,"12642":4,"12643":3,"12644":6,"12645":2,"12646":4,"12647":2,"12648":3,"12649":3,"12650":5,"12651":7,"12652":4,"12653":7,"12654":6,"12655":5,"12656":4,"12657":6,"12658":3,"12659":4,"12660":4,"12661":4,"12662":2,"12663":7,"12664":2,"12665":3,"12666":6,"12667":4,"12668":4,"12669":4,"12670":3,"12671":5,"12672":3,"12673":4,"12674":4,"12675":3,"12676":3,"12677":4,"12678":3,"12679":5,"12680":3,"12681":4,"12682":2,"12683":3,"12684":3,"12685":4,"12686":3,"12687":3,"12688":1,"12689":7,"12690":3,"12691":5,"12692":1,"12693":4,"12694":4,"12695":1,"12696":2,"12697":6,"12698":4,"12699":4,"12700":6,"12701":3,"12702":5,"12703":1,"12704":1,"12705":4,"12706":4,"12707":2,"12708":4,"12709":3,"12710":2,"12711":4,"12712":2,"12713":3,"12714":5,"12715":4,"12716":7,"12717":4,"12718":9,"12719":5,"12720":4,"12721":1,"12722":6,"12723":4,"12724":5,"12725":4,"12726":5,"12727":5,"12728":2,"12729":4,"12730":7,"12731":4,"12732":4,"12733":3,"12734":3,"12735":3,"12736":4,"12737":3,"12738":3,"12739":3,"12740":3,"12741":4,"12742":4,"12743":2,"12744":3,"12745":4,"12746":1,"12747":6,"12748":5,"12749":4,"12750":4,"12751":4,"12752":4,"12753":3,"12754":3,"12755":3,"12756":4,"12757":3,"12758":4,"12759":4,"12760":4,"12761":8,"12762":7,"12763":2,"12764":4,"12765":3,"12766":4,"12767":3,"12768":4,"12769":7,"12770":4,"12771":4,"12772":1,"12773":8,"12774":4,"12775":3,"12776":3,"12777":3,"12778":4,"12779":5,"12780":9,"12781":4,"12782":4,"12783":2,"12784":9,"12785":3,"12786":5,"12787":3,"12788":3,"12789":3,"12790":1,"12791":5,"12792":4,"12793":2,"12794":3,"12795":3,"12796":3,"12797":1,"12798":4,"12799":2,"12800":5,"12801":5,"12802":4,"12803":3,"12804":2,"12805":3,"12806":6,"12807":5,"12808":2,"12809":4,"12810":2,"12811":1,"12812":5,"12813":3,"12814":1,"12815":3,"12816":8,"12817":2,"12818":4,"12819":5,"12820":1,"12821":6,"12822":3,"12823":4,"12824":4,"12825":6,"12826":5,"12827":3,"12828":5,"12829":4,"12830":4,"12831":5,"12832":4,"12833":4,"12834":3,"12835":5,"12836":4,"12837":3,"12838":5,"12839":9,"12840":3,"12841":2,"12842":2,"12843":7,"12844":4,"12845":4,"12846":3,"12847":2,"12848":9,"12849":4,"12850":6,"12851":2,"12852":3,"12853":3,"12854":2,"12855":3,"12856":5,"12857":3,"12858":3,"12859":3,"12860":3,"12861":4,"12862":3,"12863":8,"12864":4,"12865":3,"12866":3,"12867":3,"12868":4,"12869":2,"12870":3,"12871":2,"12872":3,"12873":4,"12874":2,"12875":4,"12876":7,"12877":3,"12878":3,"12879":1,"12880":1,"12881":2,"12882":4,"12883":4,"12884":4,"12885":5,"12886":8,"12887":3,"12888":3,"12889":1,"12890":8,"12891":5,"12892":2,"12893":9,"12894":4,"12895":7,"12896":3,"12897":3,"12898":1,"12899":3,"12900":3,"12901":1,"12902":4,"12903":4,"12904":4,"12905":4,"12906":1,"12907":5,"12908":4,"12909":1,"12910":5,"12911":4,"12912":3,"12913":2,"12914":4,"12915":4,"12916":5,"12917":5,"12918":3,"12919":3,"12920":3,"12921":4,"12922":4,"12923":5,"12924":4,"12925":3,"12926":5,"12927":8,"12928":4,"12929":4,"12930":4,"12931":7,"12932":3,"12933":4,"12934":7,"12935":5,"12936":2,"12937":3,"12938":3,"12939":4,"12940":3,"12941":3,"12942":3,"12943":5,"12944":2,"12945":4,"12946":8,"12947":3,"12948":3,"12949":3,"12950":7,"12951":3,"12952":4,"12953":3,"12954":3,"12955":7,"12956":3,"12957":3,"12958":5,"12959":5,"12960":4,"12961":4,"12962":5,"12963":3,"12964":4,"12965":3,"12966":4,"12967":7,"12968":2,"12969":2,"12970":5,"12971":3,"12972":5,"12973":4,"12974":2,"12975":1,"12976":3,"12977":3,"12978":2,"12979":4,"12980":4,"12981":3,"12982":6,"12983":3,"12984":6,"12985":1,"12986":7,"12987":3,"12988":4,"12989":8,"12990":1,"12991":2,"12992":4,"12993":1,"12994":7,"12995":4,"12996":1,"12997":3,"12998":5,"12999":5,"13000":3,"13001":4,"13002":7,"13003":6,"13004":5,"13005":3,"13006":2,"13007":3,"13008":4,"13009":1,"13010":4,"13011":6,"13012":6,"13013":4,"13014":4,"13015":8,"13016":1,"13017":5,"13018":3,"13019":2,"13020":8,"13021":3,"13022":3,"13023":4,"13024":6,"13025":3,"13026":1,"13027":5,"13028":3,"13029":6,"13030":2,"13031":4,"13032":4,"13033":2,"13034":6,"13035":6,"13036":3,"13037":4,"13038":8,"13039":3,"13040":6,"13041":3,"13042":2,"13043":3,"13044":5,"13045":3,"13046":5,"13047":5,"13048":4,"13049":3,"13050":6,"13051":3,"13052":9,"13053":2,"13054":6,"13055":4,"13056":5,"13057":8,"13058":7,"13059":4,"13060":3,"13061":1,"13062":4,"13063":4,"13064":1,"13065":3,"13066":4,"13067":4,"13068":5,"13069":9,"13070":2,"13071":3,"13072":3,"13073":4,"13074":4,"13075":4,"13076":4,"13077":4,"13078":4,"13079":3,"13080":6,"13081":7,"13082":4,"13083":3,"13084":3,"13085":2,"13086":5,"13087":3,"13088":4,"13089":9,"13090":4,"13091":3,"13092":5,"13093":1,"13094":4,"13095":3,"13096":8,"13097":7,"13098":2,"13099":5,"13100":5,"13101":3,"13102":5,"13103":4,"13104":3,"13105":5,"13106":3,"13107":2,"13108":2,"13109":5,"13110":4,"13111":4,"13112":5,"13113":5,"13114":4,"13115":4,"13116":4,"13117":3,"13118":4,"13119":1,"13120":4,"13121":2,"13122":5,"13123":2,"13124":7,"13125":4,"13126":5,"13127":8,"13128":3,"13129":3,"13130":4,"13131":4,"13132":4,"13133":3,"13134":5,"13135":4,"13136":4,"13137":3,"13138":2,"13139":3,"13140":2,"13141":3,"13142":3,"13143":5,"13144":7,"13145":4,"13146":5,"13147":7,"13148":4,"13149":4,"13150":4,"13151":3,"13152":2,"13153":5,"13154":4,"13155":2,"13156":4,"13157":3,"13158":4,"13159":5,"13160":4,"13161":4,"13162":3,"13163":4,"13164":2,"13165":4,"13166":2,"13167":3,"13168":2,"13169":5,"13170":7,"13171":1,"13172":4,"13173":4,"13174":5,"13175":2,"13176":4,"13177":6,"13178":5,"13179":4,"13180":8,"13181":5,"13182":2,"13183":4,"13184":7,"13185":4,"13186":4,"13187":4,"13188":4,"13189":3,"13190":4,"13191":6,"13192":4,"13193":3,"13194":3,"13195":5,"13196":1,"13197":3,"13198":4,"13199":8,"13200":4,"13201":3,"13202":3,"13203":4,"13204":3,"13205":4,"13206":3,"13207":4,"13208":1,"13209":4,"13210":4,"13211":7,"13212":3,"13213":3,"13214":5,"13215":4,"13216":4,"13217":6,"13218":4,"13219":7,"13220":3,"13221":1,"13222":3,"13223":1,"13224":9,"13225":3,"13226":4,"13227":3,"13228":9,"13229":4,"13230":4,"13231":5,"13232":5,"13233":4,"13234":4,"13235":5,"13236":3,"13237":4,"13238":2,"13239":4,"13240":3,"13241":4,"13242":4,"13243":8,"13244":7,"13245":3,"13246":3,"13247":4,"13248":1,"13249":7,"13250":6,"13251":9,"13252":2,"13253":3,"13254":4,"13255":3,"13256":3,"13257":4,"13258":7,"13259":4,"13260":4,"13261":3,"13262":3,"13263":5,"13264":4,"13265":7,"13266":4,"13267":3,"13268":4,"13269":3,"13270":5,"13271":4,"13272":4,"13273":5,"13274":5,"13275":2,"13276":2,"13277":3,"13278":8,"13279":8,"13280":3,"13281":7,"13282":4,"13283":5,"13284":4,"13285":4,"13286":4,"13287":4,"13288":4,"13289":4,"13290":3,"13291":2,"13292":1,"13293":4,"13294":3,"13295":5,"13296":4,"13297":3,"13298":2,"13299":4,"13300":3,"13301":1,"13302":5,"13303":3,"13304":5,"13305":5,"13306":2,"13307":4,"13308":4,"13309":4,"13310":4,"13311":3,"13312":1,"13313":5,"13314":4,"13315":6,"13316":5,"13317":6,"13318":5,"13319":4,"13320":5,"13321":3,"13322":1,"13323":4,"13324":3,"13325":4,"13326":4,"13327":6,"13328":1,"13329":6,"13330":4,"13331":4,"13332":3,"13333":5,"13334":1,"13335":2,"13336":2,"13337":4,"13338":9,"13339":4,"13340":4,"13341":5,"13342":2,"13343":2,"13344":3,"13345":4,"13346":7,"13347":2,"13348":3,"13349":4,"13350":2,"13351":3,"13352":1,"13353":4,"13354":4,"13355":2,"13356":3,"13357":5,"13358":8,"13359":5,"13360":5,"13361":4,"13362":6,"13363":3,"13364":2,"13365":4,"13366":2,"13367":2,"13368":1,"13369":4,"13370":8,"13371":2,"13372":3,"13373":3,"13374":4,"13375":3,"13376":4,"13377":6,"13378":4,"13379":5,"13380":1,"13381":3,"13382":7,"13383":3,"13384":5,"13385":3,"13386":4,"13387":3,"13388":5,"13389":3,"13390":8,"13391":4,"13392":2,"13393":4,"13394":1,"13395":4,"13396":2,"13397":4,"13398":3,"13399":3,"13400":5,"13401":2,"13402":5,"13403":4,"13404":6,"13405":3,"13406":4,"13407":4,"13408":4,"13409":3,"13410":3,"13411":4,"13412":4,"13413":3,"13414":4,"13415":5,"13416":4,"13417":4,"13418":1,"13419":4,"13420":3,"13421":4,"13422":4,"13423":4,"13424":5,"13425":2,"13426":4,"13427":4,"13428":3,"13429":3,"13430":4,"13431":4,"13432":3,"13433":4,"13434":8,"13435":7,"13436":3,"13437":3,"13438":4,"13439":7,"13440":3,"13441":4,"13442":4,"13443":9,"13444":3,"13445":4,"13446":8,"13447":4,"13448":3,"13449":4,"13450":5,"13451":4,"13452":8,"13453":8,"13454":3,"13455":5,"13456":4,"13457":3,"13458":4,"13459":3,"13460":2,"13461":4,"13462":4,"13463":5,"13464":4,"13465":3,"13466":2,"13467":5,"13468":3,"13469":4,"13470":3,"13471":3,"13472":4,"13473":3,"13474":1,"13475":4,"13476":3,"13477":4,"13478":5,"13479":5,"13480":3,"13481":3,"13482":3,"13483":5,"13484":5,"13485":4,"13486":3,"13487":3,"13488":4,"13489":1,"13490":4,"13491":2,"13492":4,"13493":4,"13494":4,"13495":4,"13496":4,"13497":2,"13498":5,"13499":5,"13500":1,"13501":7,"13502":4,"13503":8,"13504":3,"13505":3,"13506":3,"13507":3,"13508":2,"13509":4,"13510":4,"13511":3,"13512":4,"13513":4,"13514":5,"13515":1,"13516":4,"13517":3,"13518":4,"13519":2,"13520":4,"13521":3,"13522":4,"13523":4,"13524":3,"13525":2,"13526":6,"13527":3,"13528":2,"13529":5,"13530":4,"13531":4,"13532":7,"13533":3,"13534":5,"13535":5,"13536":6,"13537":3,"13538":4,"13539":8,"13540":5,"13541":4,"13542":4,"13543":3,"13544":4,"13545":5,"13546":4,"13547":3,"13548":3,"13549":2,"13550":5,"13551":3,"13552":8,"13553":6,"13554":1,"13555":1,"13556":2,"13557":3,"13558":6,"13559":5,"13560":3,"13561":4,"13562":4,"13563":4,"13564":3,"13565":2,"13566":3,"13567":4,"13568":4,"13569":4,"13570":3,"13571":4,"13572":3,"13573":3,"13574":5,"13575":5,"13576":3,"13577":3,"13578":4,"13579":4,"13580":3,"13581":6,"13582":2,"13583":4,"13584":5,"13585":4,"13586":5,"13587":4,"13588":3,"13589":5,"13590":5,"13591":2,"13592":3,"13593":5,"13594":5,"13595":4,"13596":4,"13597":3,"13598":5,"13599":3,"13600":1,"13601":5,"13602":2,"13603":3,"13604":4,"13605":1,"13606":3,"13607":3,"13608":3,"13609":3,"13610":2,"13611":3,"13612":4,"13613":2,"13614":9,"13615":2,"13616":3,"13617":4,"13618":3,"13619":5,"13620":3,"13621":2,"13622":7,"13623":5,"13624":2,"13625":9,"13626":7,"13627":9,"13628":4,"13629":5,"13630":3,"13631":3,"13632":3,"13633":4,"13634":4,"13635":3,"13636":1,"13637":5,"13638":3,"13639":7,"13640":4,"13641":3,"13642":5,"13643":4,"13644":9,"13645":2,"13646":5,"13647":4,"13648":6,"13649":3,"13650":4,"13651":9,"13652":4,"13653":4,"13654":1,"13655":4,"13656":5,"13657":8,"13658":2,"13659":5,"13660":3,"13661":3,"13662":3,"13663":3,"13664":2,"13665":4,"13666":4,"13667":5,"13668":5,"13669":4,"13670":6,"13671":7,"13672":2,"13673":5,"13674":5,"13675":4,"13676":4,"13677":3,"13678":4,"13679":5,"13680":6,"13681":3,"13682":2,"13683":3,"13684":4,"13685":5,"13686":8,"13687":7,"13688":7,"13689":3,"13690":7,"13691":4,"13692":2,"13693":7,"13694":4,"13695":3,"13696":3,"13697":4,"13698":5,"13699":3,"13700":3,"13701":2,"13702":4,"13703":7,"13704":4,"13705":4,"13706":4,"13707":4,"13708":5,"13709":2,"13710":7,"13711":3,"13712":4,"13713":6,"13714":4,"13715":4,"13716":4,"13717":8,"13718":1,"13719":5,"13720":3,"13721":3,"13722":5,"13723":4,"13724":2,"13725":1,"13726":7,"13727":4,"13728":4,"13729":5,"13730":4,"13731":4,"13732":2,"13733":4,"13734":4,"13735":5,"13736":6,"13737":4,"13738":6,"13739":9,"13740":5,"13741":4,"13742":6,"13743":5,"13744":7,"13745":3,"13746":4,"13747":6,"13748":5,"13749":9,"13750":4,"13751":3,"13752":3,"13753":3,"13754":8,"13755":2,"13756":3,"13757":4,"13758":4,"13759":3,"13760":6,"13761":6,"13762":7,"13763":2,"13764":4,"13765":4,"13766":5,"13767":6,"13768":5,"13769":7,"13770":8,"13771":5,"13772":9,"13773":5,"13774":3,"13775":4,"13776":4,"13777":3,"13778":5,"13779":3,"13780":3,"13781":6,"13782":1,"13783":6,"13784":4,"13785":3,"13786":4,"13787":7,"13788":2,"13789":5,"13790":1,"13791":4,"13792":4,"13793":5,"13794":5,"13795":5,"13796":4,"13797":4,"13798":4,"13799":4,"13800":4,"13801":1,"13802":3,"13803":4,"13804":7,"13805":8,"13806":2,"13807":4,"13808":6,"13809":4,"13810":4,"13811":1,"13812":2,"13813":2,"13814":4,"13815":4,"13816":3,"13817":4,"13818":7,"13819":1,"13820":3,"13821":4,"13822":7,"13823":2,"13824":4,"13825":6,"13826":3,"13827":3,"13828":5,"13829":3,"13830":3,"13831":1,"13832":4,"13833":3,"13834":4,"13835":3,"13836":5,"13837":5,"13838":9,"13839":2,"13840":4,"13841":5,"13842":2,"13843":6,"13844":1,"13845":3,"13846":5,"13847":4,"13848":5,"13849":3,"13850":4,"13851":3,"13852":2,"13853":3,"13854":4,"13855":3,"13856":3,"13857":2,"13858":5,"13859":3,"13860":3,"13861":7,"13862":4,"13863":4,"13864":4,"13865":3,"13866":8,"13867":3,"13868":1,"13869":6,"13870":8,"13871":5,"13872":3,"13873":1,"13874":3,"13875":2,"13876":4,"13877":4,"13878":3,"13879":1,"13880":5,"13881":3,"13882":4,"13883":3,"13884":2,"13885":3,"13886":3,"13887":2,"13888":4,"13889":2,"13890":4,"13891":4,"13892":4,"13893":3,"13894":3,"13895":1,"13896":4,"13897":4,"13898":3,"13899":5,"13900":5,"13901":5,"13902":4,"13903":5,"13904":3,"13905":4,"13906":3,"13907":1,"13908":5,"13909":8,"13910":3,"13911":7,"13912":2,"13913":3,"13914":3,"13915":3,"13916":4,"13917":2,"13918":3,"13919":3,"13920":2,"13921":4,"13922":4,"13923":4,"13924":4,"13925":8,"13926":5,"13927":4,"13928":3,"13929":4,"13930":3,"13931":2,"13932":5,"13933":4,"13934":4,"13935":3,"13936":3,"13937":6,"13938":4,"13939":5,"13940":4,"13941":4,"13942":2,"13943":4,"13944":2,"13945":3,"13946":5,"13947":3,"13948":4,"13949":4,"13950":4,"13951":3,"13952":4,"13953":4,"13954":5,"13955":2,"13956":3,"13957":3,"13958":4,"13959":4,"13960":4,"13961":4,"13962":2,"13963":3,"13964":7,"13965":2,"13966":6,"13967":3,"13968":4,"13969":5,"13970":3,"13971":4,"13972":4,"13973":5,"13974":3,"13975":3,"13976":8,"13977":5,"13978":3,"13979":4,"13980":3,"13981":5,"13982":4,"13983":4,"13984":4,"13985":3,"13986":4,"13987":7,"13988":9,"13989":5,"13990":5,"13991":6,"13992":7,"13993":5,"13994":4,"13995":4,"13996":7,"13997":6,"13998":3,"13999":2,"14000":4,"14001":4,"14002":3,"14003":2,"14004":5,"14005":4,"14006":4,"14007":7,"14008":5,"14009":5,"14010":3,"14011":2,"14012":4,"14013":2,"14014":4,"14015":6,"14016":2,"14017":5,"14018":2,"14019":5,"14020":3,"14021":7,"14022":5,"14023":6,"14024":1,"14025":3,"14026":4,"14027":3,"14028":3,"14029":4,"14030":4,"14031":3,"14032":3,"14033":5,"14034":2,"14035":2,"14036":4,"14037":4,"14038":3,"14039":4,"14040":3,"14041":4,"14042":4,"14043":5,"14044":2,"14045":2,"14046":7,"14047":5,"14048":3,"14049":7,"14050":6,"14051":7,"14052":7,"14053":7,"14054":4,"14055":4,"14056":4,"14057":4,"14058":3,"14059":2,"14060":9,"14061":3,"14062":5,"14063":3,"14064":3,"14065":5,"14066":9,"14067":5,"14068":4,"14069":3,"14070":4,"14071":3,"14072":4,"14073":5,"14074":3,"14075":5,"14076":3,"14077":3,"14078":3,"14079":7,"14080":1,"14081":2,"14082":2,"14083":3,"14084":9,"14085":3,"14086":3,"14087":4,"14088":1,"14089":4,"14090":6,"14091":2,"14092":3,"14093":5,"14094":5,"14095":4,"14096":4,"14097":4,"14098":3,"14099":4,"14100":5,"14101":3,"14102":3,"14103":4,"14104":5,"14105":4,"14106":3,"14107":3,"14108":3,"14109":4,"14110":5,"14111":3,"14112":3,"14113":9,"14114":3,"14115":3,"14116":3,"14117":4,"14118":6,"14119":6,"14120":4,"14121":6,"14122":5,"14123":5,"14124":8,"14125":4,"14126":4,"14127":7,"14128":4,"14129":2,"14130":3,"14131":5,"14132":3,"14133":1,"14134":2,"14135":5,"14136":4,"14137":9,"14138":4,"14139":4,"14140":4,"14141":7,"14142":5,"14143":3,"14144":3,"14145":1,"14146":3,"14147":7,"14148":4,"14149":3,"14150":5,"14151":7,"14152":8,"14153":1,"14154":4,"14155":4,"14156":7,"14157":3,"14158":2,"14159":6,"14160":2,"14161":4,"14162":4,"14163":3,"14164":8,"14165":3,"14166":4,"14167":9,"14168":3,"14169":3,"14170":4,"14171":3,"14172":4,"14173":4,"14174":3,"14175":5,"14176":4,"14177":4,"14178":4,"14179":2,"14180":4,"14181":5,"14182":3,"14183":4,"14184":4,"14185":3,"14186":7,"14187":2,"14188":3,"14189":4,"14190":3,"14191":4,"14192":5,"14193":6,"14194":3,"14195":5,"14196":7,"14197":5,"14198":4,"14199":3,"14200":4,"14201":4,"14202":5,"14203":3,"14204":4,"14205":5,"14206":4,"14207":3,"14208":6,"14209":4,"14210":4,"14211":5,"14212":6,"14213":6,"14214":5,"14215":2,"14216":3,"14217":5,"14218":3,"14219":6,"14220":3,"14221":6,"14222":4,"14223":3,"14224":5,"14225":4,"14226":1,"14227":1,"14228":4,"14229":5,"14230":1,"14231":4,"14232":4,"14233":6,"14234":7,"14235":5,"14236":4,"14237":3,"14238":4,"14239":3,"14240":8,"14241":3,"14242":5,"14243":4,"14244":7,"14245":4,"14246":2,"14247":4,"14248":4,"14249":2,"14250":5,"14251":3,"14252":3,"14253":1,"14254":5,"14255":1,"14256":7,"14257":5,"14258":4,"14259":3,"14260":4,"14261":3,"14262":2,"14263":3,"14264":9,"14265":3,"14266":1,"14267":8,"14268":3,"14269":4,"14270":4,"14271":5,"14272":5,"14273":4,"14274":3,"14275":3,"14276":4,"14277":5,"14278":4,"14279":5,"14280":2,"14281":3,"14282":6,"14283":2,"14284":7,"14285":3,"14286":7,"14287":4,"14288":4,"14289":2,"14290":2,"14291":4,"14292":4,"14293":5,"14294":3,"14295":5,"14296":2,"14297":3,"14298":6,"14299":3,"14300":4,"14301":5,"14302":4,"14303":2,"14304":3,"14305":3,"14306":2,"14307":5,"14308":4,"14309":4,"14310":2,"14311":6,"14312":7,"14313":2,"14314":5,"14315":3,"14316":2,"14317":3,"14318":4,"14319":8,"14320":3,"14321":4,"14322":2,"14323":9,"14324":4,"14325":2,"14326":5,"14327":3,"14328":8,"14329":4,"14330":3,"14331":9,"14332":5,"14333":4,"14334":4,"14335":4,"14336":6,"14337":6,"14338":4,"14339":1,"14340":9,"14341":6,"14342":5,"14343":4,"14344":4,"14345":3,"14346":5,"14347":3,"14348":3,"14349":4,"14350":4,"14351":3,"14352":1,"14353":4,"14354":3,"14355":2,"14356":2,"14357":6,"14358":1,"14359":5,"14360":4,"14361":3,"14362":3,"14363":4,"14364":7,"14365":3,"14366":5,"14367":5,"14368":6,"14369":3,"14370":4,"14371":5,"14372":3,"14373":5,"14374":5,"14375":5,"14376":3,"14377":4,"14378":4,"14379":3,"14380":2,"14381":5,"14382":3,"14383":7,"14384":2,"14385":1,"14386":8,"14387":5,"14388":6,"14389":3,"14390":4,"14391":5,"14392":5,"14393":4,"14394":5,"14395":4,"14396":4,"14397":5,"14398":5,"14399":3,"14400":4,"14401":7,"14402":4,"14403":4,"14404":4,"14405":5,"14406":4,"14407":6,"14408":4,"14409":4,"14410":2,"14411":6,"14412":1,"14413":5,"14414":3,"14415":3,"14416":4,"14417":4,"14418":1,"14419":2,"14420":3,"14421":3,"14422":7,"14423":3,"14424":3,"14425":3,"14426":3,"14427":4,"14428":5,"14429":4,"14430":5,"14431":5,"14432":5,"14433":5,"14434":4,"14435":5,"14436":7,"14437":6,"14438":3,"14439":1,"14440":3,"14441":2,"14442":2,"14443":4,"14444":3,"14445":2,"14446":5,"14447":8,"14448":9,"14449":9,"14450":6,"14451":2,"14452":8,"14453":8,"14454":6,"14455":4,"14456":7,"14457":4,"14458":4,"14459":4,"14460":5,"14461":2,"14462":4,"14463":3,"14464":4,"14465":4,"14466":5,"14467":7,"14468":1,"14469":4,"14470":3,"14471":5,"14472":5,"14473":8,"14474":2,"14475":2,"14476":2,"14477":8,"14478":8,"14479":3,"14480":5,"14481":6,"14482":4,"14483":5,"14484":2,"14485":2,"14486":5,"14487":3,"14488":2,"14489":2,"14490":5,"14491":2,"14492":3,"14493":5,"14494":4,"14495":6,"14496":2,"14497":3,"14498":8,"14499":5,"14500":5,"14501":3,"14502":3,"14503":6,"14504":2,"14505":4,"14506":1,"14507":4,"14508":4,"14509":3,"14510":3,"14511":3,"14512":4,"14513":2,"14514":5,"14515":4,"14516":4,"14517":2,"14518":3,"14519":2,"14520":2,"14521":3,"14522":9,"14523":7,"14524":4,"14525":5,"14526":5,"14527":6,"14528":7,"14529":3,"14530":6,"14531":3,"14532":4,"14533":4,"14534":8,"14535":5,"14536":4,"14537":6,"14538":3,"14539":4,"14540":5,"14541":3,"14542":4,"14543":6,"14544":4,"14545":3,"14546":6,"14547":3,"14548":3,"14549":5,"14550":4,"14551":5,"14552":4,"14553":3,"14554":3,"14555":4,"14556":4,"14557":6,"14558":3,"14559":4,"14560":3,"14561":3,"14562":5,"14563":5,"14564":7,"14565":5,"14566":4,"14567":3,"14568":4,"14569":4,"14570":5,"14571":3,"14572":2,"14573":1,"14574":4,"14575":3,"14576":5,"14577":4,"14578":3,"14579":4,"14580":3,"14581":5,"14582":3,"14583":4,"14584":4,"14585":4,"14586":4,"14587":3,"14588":4,"14589":4,"14590":5,"14591":7,"14592":2,"14593":5,"14594":4,"14595":3,"14596":3,"14597":3,"14598":3,"14599":3,"14600":3,"14601":3,"14602":2,"14603":5,"14604":4,"14605":4,"14606":4,"14607":3,"14608":5,"14609":4,"14610":1,"14611":6,"14612":3,"14613":5,"14614":4,"14615":3,"14616":4,"14617":3,"14618":3,"14619":4,"14620":4,"14621":1,"14622":4,"14623":3,"14624":3,"14625":3,"14626":4,"14627":3,"14628":3,"14629":4,"14630":7,"14631":5,"14632":3,"14633":3,"14634":1,"14635":4,"14636":3,"14637":7,"14638":2,"14639":3,"14640":3,"14641":2,"14642":3,"14643":5,"14644":3,"14645":3,"14646":6,"14647":7,"14648":4,"14649":5,"14650":2,"14651":4,"14652":7,"14653":3,"14654":4,"14655":2,"14656":4,"14657":4,"14658":9,"14659":4,"14660":6,"14661":3,"14662":5,"14663":9,"14664":4,"14665":4,"14666":2,"14667":2,"14668":5,"14669":1,"14670":7,"14671":7,"14672":6,"14673":5,"14674":7,"14675":7,"14676":5,"14677":2,"14678":5,"14679":1,"14680":4,"14681":4,"14682":3,"14683":5,"14684":8,"14685":4,"14686":7,"14687":4,"14688":3,"14689":1,"14690":7,"14691":3,"14692":3,"14693":4,"14694":9,"14695":1,"14696":3,"14697":1,"14698":4,"14699":9,"14700":2,"14701":6,"14702":1,"14703":2,"14704":3,"14705":4,"14706":5,"14707":5,"14708":4,"14709":2,"14710":1,"14711":5,"14712":2,"14713":3,"14714":6,"14715":1,"14716":2,"14717":9,"14718":3,"14719":4,"14720":3,"14721":3,"14722":1,"14723":7,"14724":3,"14725":4,"14726":5,"14727":5,"14728":4,"14729":4,"14730":5,"14731":4,"14732":5,"14733":5,"14734":3,"14735":4,"14736":2,"14737":5,"14738":4,"14739":4,"14740":3,"14741":4,"14742":5,"14743":4,"14744":5,"14745":3,"14746":5,"14747":4,"14748":4,"14749":4,"14750":4,"14751":2,"14752":2,"14753":6,"14754":4,"14755":3,"14756":4,"14757":5,"14758":7,"14759":8,"14760":3,"14761":3,"14762":4,"14763":4,"14764":3,"14765":4,"14766":7,"14767":2,"14768":8,"14769":9,"14770":3,"14771":4,"14772":3,"14773":3,"14774":2,"14775":4,"14776":5,"14777":8,"14778":5,"14779":3,"14780":4,"14781":4,"14782":3,"14783":2,"14784":4,"14785":4,"14786":5,"14787":4,"14788":4,"14789":3,"14790":3,"14791":9,"14792":7,"14793":8,"14794":7,"14795":5,"14796":4,"14797":3,"14798":5,"14799":3,"14800":3,"14801":4,"14802":4,"14803":8,"14804":1,"14805":3,"14806":3,"14807":5,"14808":4,"14809":3,"14810":4,"14811":4,"14812":3,"14813":8,"14814":3,"14815":3,"14816":3,"14817":4,"14818":4,"14819":2,"14820":6,"14821":7,"14822":2,"14823":3,"14824":7,"14825":5,"14826":3,"14827":3,"14828":3,"14829":2,"14830":3,"14831":5,"14832":4,"14833":4,"14834":4,"14835":3,"14836":5,"14837":4,"14838":4,"14839":5,"14840":3,"14841":5,"14842":4,"14843":8,"14844":2,"14845":7,"14846":4,"14847":3,"14848":3,"14849":9,"14850":3,"14851":1,"14852":4,"14853":4,"14854":1,"14855":4,"14856":4,"14857":4,"14858":5,"14859":8,"14860":2,"14861":4,"14862":6,"14863":4,"14864":2,"14865":3,"14866":4,"14867":8,"14868":4,"14869":3,"14870":7,"14871":3,"14872":8,"14873":5,"14874":3,"14875":3,"14876":2,"14877":5,"14878":1,"14879":1,"14880":4,"14881":5,"14882":3,"14883":3,"14884":5,"14885":5,"14886":4,"14887":5,"14888":3,"14889":5,"14890":4,"14891":6,"14892":1,"14893":4,"14894":4,"14895":3,"14896":2,"14897":4,"14898":5,"14899":1,"14900":4,"14901":5,"14902":5,"14903":3,"14904":2,"14905":5,"14906":7,"14907":4,"14908":4,"14909":3,"14910":6,"14911":4,"14912":2,"14913":3,"14914":3,"14915":6,"14916":4,"14917":6,"14918":3,"14919":4,"14920":4,"14921":3,"14922":2,"14923":4,"14924":7,"14925":5,"14926":3,"14927":4,"14928":2,"14929":1,"14930":2,"14931":4,"14932":5,"14933":3,"14934":4,"14935":4,"14936":2,"14937":2,"14938":2,"14939":6,"14940":2,"14941":4,"14942":5,"14943":4,"14944":3,"14945":7,"14946":5,"14947":4,"14948":8,"14949":1,"14950":3,"14951":2,"14952":3,"14953":4,"14954":5,"14955":6,"14956":2,"14957":4,"14958":4,"14959":4,"14960":5,"14961":3,"14962":1,"14963":3,"14964":4,"14965":1,"14966":5,"14967":4,"14968":8,"14969":3,"14970":4,"14971":3,"14972":4,"14973":3,"14974":4,"14975":3,"14976":4,"14977":5,"14978":6,"14979":2,"14980":3,"14981":2,"14982":3,"14983":6,"14984":3,"14985":5,"14986":4,"14987":4,"14988":2,"14989":9,"14990":7,"14991":4,"14992":4,"14993":4,"14994":4,"14995":3,"14996":4,"14997":3,"14998":2,"14999":5,"15000":4,"15001":4,"15002":8,"15003":1,"15004":2,"15005":3,"15006":4,"15007":4,"15008":3,"15009":3,"15010":3,"15011":4,"15012":5,"15013":4,"15014":4,"15015":4,"15016":4,"15017":4,"15018":4,"15019":4,"15020":3,"15021":5,"15022":2,"15023":7,"15024":6,"15025":8,"15026":4,"15027":3,"15028":3,"15029":3,"15030":1,"15031":3,"15032":4,"15033":9,"15034":9,"15035":7,"15036":4,"15037":5,"15038":1,"15039":4,"15040":1,"15041":4,"15042":3,"15043":2,"15044":4,"15045":4,"15046":6,"15047":3,"15048":4,"15049":3,"15050":7,"15051":5,"15052":2,"15053":3,"15054":6,"15055":4,"15056":5,"15057":4,"15058":9,"15059":4,"15060":3,"15061":4,"15062":5,"15063":4,"15064":5,"15065":3,"15066":5,"15067":1,"15068":5,"15069":1,"15070":8,"15071":3,"15072":4,"15073":6,"15074":5,"15075":4,"15076":3,"15077":5,"15078":3,"15079":4,"15080":4,"15081":3,"15082":1,"15083":1,"15084":4,"15085":4,"15086":5,"15087":3,"15088":3,"15089":4,"15090":6,"15091":1,"15092":4,"15093":7,"15094":4,"15095":7,"15096":4,"15097":3,"15098":4,"15099":4,"15100":6,"15101":5,"15102":4,"15103":3,"15104":4,"15105":3,"15106":3,"15107":3,"15108":4,"15109":4,"15110":4,"15111":3,"15112":3,"15113":3,"15114":3,"15115":5,"15116":3,"15117":4,"15118":2,"15119":3,"15120":5,"15121":9,"15122":3,"15123":4,"15124":2,"15125":4,"15126":5,"15127":4,"15128":3,"15129":4,"15130":7,"15131":3,"15132":4,"15133":5,"15134":5,"15135":3,"15136":5,"15137":6,"15138":4,"15139":6,"15140":4,"15141":3,"15142":4,"15143":3,"15144":6,"15145":2,"15146":2,"15147":4,"15148":2,"15149":2,"15150":5},"income":{"0":"midIncome","1":"highIncome","2":"midIncome","3":"highIncome","4":"lowIncomeA","5":"midIncome","6":"midIncome","7":"midIncome","8":"highIncome","9":"midIncome","10":"lowIncomeB","11":"lowIncomeB","12":"midIncome","13":"midIncome","14":"highIncome","15":"midIncome","16":"midIncome","17":"midIncome","18":"midIncome","19":"highIncome","20":"midIncome","21":"midIncome","22":"lowIncomeA","23":"midIncome","24":"midIncome","25":"lowIncomeB","26":"highIncome","27":"lowIncomeA","28":"lowIncomeB","29":"lowIncomeA","30":"midIncome","31":"midIncome","32":"midIncome","33":"midIncome","34":"lowIncomeB","35":"lowIncomeB","36":"midIncome","37":"lowIncomeA","38":"highIncome","39":"lowIncomeA","40":"midIncome","41":"highIncome","42":"lowIncomeB","43":"midIncome","44":"midIncome","45":"midIncome","46":"midIncome","47":"midIncome","48":"highIncome","49":"midIncome","50":"midIncome","51":"midIncome","52":"midIncome","53":"midIncome","54":"midIncome","55":"midIncome","56":"lowIncomeA","57":"midIncome","58":"midIncome","59":"lowIncomeB","60":"midIncome","61":"midIncome","62":"midIncome","63":"lowIncomeB","64":"midIncome","65":"midIncome","66":"midIncome","67":"midIncome","68":"midIncome","69":"lowIncomeA","70":"midIncome","71":"midIncome","72":"midIncome","73":"midIncome","74":"midIncome","75":"lowIncomeA","76":"midIncome","77":"midIncome","78":"midIncome","79":"lowIncomeA","80":"midIncome","81":"midIncome","82":"midIncome","83":"midIncome","84":"highIncome","85":"midIncome","86":"lowIncomeB","87":"highIncome","88":"midIncome","89":"midIncome","90":"midIncome","91":"midIncome","92":"highIncome","93":"midIncome","94":"midIncome","95":"midIncome","96":"midIncome","97":"lowIncomeB","98":"midIncome","99":"midIncome","100":"lowIncomeA","101":"midIncome","102":"midIncome","103":"midIncome","104":"midIncome","105":"midIncome","106":"midIncome","107":"lowIncomeA","108":"lowIncomeB","109":"highIncome","110":"midIncome","111":"midIncome","112":"lowIncomeA","113":"lowIncomeA","114":"midIncome","115":"lowIncomeA","116":"midIncome","117":"lowIncomeA","118":"midIncome","119":"midIncome","120":"midIncome","121":"midIncome","122":"midIncome","123":"midIncome","124":"lowIncomeA","125":"midIncome","126":"midIncome","127":"midIncome","128":"midIncome","129":"highIncome","130":"midIncome","131":"midIncome","132":"midIncome","133":"midIncome","134":"highIncome","135":"lowIncomeA","136":"highIncome","137":"midIncome","138":"midIncome","139":"midIncome","140":"midIncome","141":"midIncome","142":"highIncome","143":"lowIncomeA","144":"midIncome","145":"midIncome","146":"midIncome","147":"midIncome","148":"midIncome","149":"lowIncomeB","150":"highIncome","151":"midIncome","152":"midIncome","153":"midIncome","154":"midIncome","155":"midIncome","156":"lowIncomeA","157":"midIncome","158":"midIncome","159":"midIncome","160":"lowIncomeA","161":"highIncome","162":"midIncome","163":"midIncome","164":"midIncome","165":"midIncome","166":"midIncome","167":"midIncome","168":"midIncome","169":"lowIncomeA","170":"midIncome","171":"midIncome","172":"midIncome","173":"highIncome","174":"lowIncomeA","175":"midIncome","176":"midIncome","177":"midIncome","178":"midIncome","179":"midIncome","180":"midIncome","181":"midIncome","182":"midIncome","183":"highIncome","184":"midIncome","185":"highIncome","186":"lowIncomeA","187":"midIncome","188":"midIncome","189":"midIncome","190":"midIncome","191":"highIncome","192":"midIncome","193":"midIncome","194":"midIncome","195":"midIncome","196":"midIncome","197":"midIncome","198":"midIncome","199":"highIncome","200":"midIncome","201":"midIncome","202":"lowIncomeA","203":"midIncome","204":"midIncome","205":"lowIncomeA","206":"midIncome","207":"midIncome","208":"midIncome","209":"midIncome","210":"midIncome","211":"lowIncomeB","212":"midIncome","213":"midIncome","214":"lowIncomeB","215":"midIncome","216":"highIncome","217":"midIncome","218":"lowIncomeA","219":"midIncome","220":"midIncome","221":"midIncome","222":"lowIncomeA","223":"midIncome","224":"lowIncomeA","225":"midIncome","226":"midIncome","227":"midIncome","228":"midIncome","229":"midIncome","230":"midIncome","231":"midIncome","232":"highIncome","233":"midIncome","234":"midIncome","235":"midIncome","236":"midIncome","237":"midIncome","238":"highIncome","239":"midIncome","240":"lowIncomeA","241":"midIncome","242":"midIncome","243":"midIncome","244":"highIncome","245":"highIncome","246":"midIncome","247":"lowIncomeA","248":"midIncome","249":"midIncome","250":"midIncome","251":"midIncome","252":"midIncome","253":"lowIncomeB","254":"midIncome","255":"midIncome","256":"midIncome","257":"midIncome","258":"lowIncomeA","259":"midIncome","260":"midIncome","261":"midIncome","262":"lowIncomeA","263":"midIncome","264":"highIncome","265":"lowIncomeA","266":"midIncome","267":"midIncome","268":"midIncome","269":"midIncome","270":"midIncome","271":"lowIncomeB","272":"lowIncomeA","273":"midIncome","274":"lowIncomeB","275":"midIncome","276":"midIncome","277":"midIncome","278":"midIncome","279":"midIncome","280":"highIncome","281":"midIncome","282":"midIncome","283":"lowIncomeB","284":"midIncome","285":"midIncome","286":"midIncome","287":"midIncome","288":"lowIncomeA","289":"midIncome","290":"lowIncomeA","291":"highIncome","292":"midIncome","293":"midIncome","294":"lowIncomeA","295":"midIncome","296":"midIncome","297":"midIncome","298":"midIncome","299":"lowIncomeB","300":"midIncome","301":"highIncome","302":"midIncome","303":"midIncome","304":"midIncome","305":"highIncome","306":"lowIncomeA","307":"midIncome","308":"midIncome","309":"midIncome","310":"midIncome","311":"midIncome","312":"midIncome","313":"midIncome","314":"lowIncomeB","315":"highIncome","316":"lowIncomeB","317":"midIncome","318":"midIncome","319":"midIncome","320":"midIncome","321":"midIncome","322":"midIncome","323":"midIncome","324":"midIncome","325":"midIncome","326":"highIncome","327":"midIncome","328":"midIncome","329":"highIncome","330":"midIncome","331":"lowIncomeB","332":"midIncome","333":"midIncome","334":"midIncome","335":"midIncome","336":"midIncome","337":"highIncome","338":"midIncome","339":"lowIncomeB","340":"midIncome","341":"midIncome","342":"midIncome","343":"midIncome","344":"midIncome","345":"lowIncomeA","346":"midIncome","347":"midIncome","348":"midIncome","349":"midIncome","350":"midIncome","351":"lowIncomeA","352":"lowIncomeA","353":"midIncome","354":"midIncome","355":"midIncome","356":"lowIncomeA","357":"midIncome","358":"midIncome","359":"midIncome","360":"midIncome","361":"highIncome","362":"midIncome","363":"midIncome","364":"highIncome","365":"midIncome","366":"midIncome","367":"midIncome","368":"midIncome","369":"midIncome","370":"midIncome","371":"lowIncomeA","372":"lowIncomeA","373":"lowIncomeA","374":"midIncome","375":"lowIncomeA","376":"midIncome","377":"midIncome","378":"midIncome","379":"midIncome","380":"midIncome","381":"midIncome","382":"midIncome","383":"midIncome","384":"midIncome","385":"lowIncomeA","386":"lowIncomeB","387":"lowIncomeB","388":"lowIncomeA","389":"midIncome","390":"midIncome","391":"lowIncomeB","392":"lowIncomeB","393":"lowIncomeA","394":"lowIncomeB","395":"midIncome","396":"midIncome","397":"midIncome","398":"lowIncomeB","399":"midIncome","400":"highIncome","401":"midIncome","402":"midIncome","403":"midIncome","404":"midIncome","405":"lowIncomeA","406":"midIncome","407":"midIncome","408":"lowIncomeA","409":"midIncome","410":"highIncome","411":"midIncome","412":"midIncome","413":"midIncome","414":"midIncome","415":"midIncome","416":"midIncome","417":"midIncome","418":"lowIncomeA","419":"lowIncomeA","420":"midIncome","421":"midIncome","422":"highIncome","423":"midIncome","424":"highIncome","425":"lowIncomeA","426":"midIncome","427":"midIncome","428":"midIncome","429":"lowIncomeA","430":"lowIncomeA","431":"midIncome","432":"midIncome","433":"lowIncomeB","434":"midIncome","435":"midIncome","436":"midIncome","437":"highIncome","438":"midIncome","439":"lowIncomeA","440":"midIncome","441":"midIncome","442":"midIncome","443":"midIncome","444":"midIncome","445":"midIncome","446":"midIncome","447":"midIncome","448":"midIncome","449":"midIncome","450":"midIncome","451":"lowIncomeB","452":"midIncome","453":"midIncome","454":"midIncome","455":"midIncome","456":"midIncome","457":"highIncome","458":"lowIncomeB","459":"midIncome","460":"lowIncomeA","461":"midIncome","462":"midIncome","463":"midIncome","464":"midIncome","465":"midIncome","466":"midIncome","467":"midIncome","468":"highIncome","469":"lowIncomeA","470":"midIncome","471":"midIncome","472":"highIncome","473":"midIncome","474":"lowIncomeB","475":"midIncome","476":"midIncome","477":"midIncome","478":"lowIncomeB","479":"midIncome","480":"midIncome","481":"lowIncomeB","482":"midIncome","483":"midIncome","484":"lowIncomeA","485":"lowIncomeA","486":"midIncome","487":"midIncome","488":"highIncome","489":"highIncome","490":"midIncome","491":"highIncome","492":"highIncome","493":"highIncome","494":"midIncome","495":"midIncome","496":"midIncome","497":"lowIncomeB","498":"lowIncomeA","499":"midIncome","500":"midIncome","501":"midIncome","502":"midIncome","503":"midIncome","504":"lowIncomeA","505":"midIncome","506":"lowIncomeA","507":"midIncome","508":"lowIncomeA","509":"midIncome","510":"lowIncomeB","511":"midIncome","512":"midIncome","513":"midIncome","514":"midIncome","515":"lowIncomeA","516":"midIncome","517":"midIncome","518":"lowIncomeB","519":"lowIncomeA","520":"lowIncomeA","521":"midIncome","522":"highIncome","523":"lowIncomeB","524":"lowIncomeB","525":"midIncome","526":"lowIncomeB","527":"midIncome","528":"midIncome","529":"midIncome","530":"highIncome","531":"midIncome","532":"midIncome","533":"midIncome","534":"lowIncomeA","535":"midIncome","536":"midIncome","537":"midIncome","538":"highIncome","539":"midIncome","540":"midIncome","541":"midIncome","542":"midIncome","543":"lowIncomeB","544":"lowIncomeA","545":"midIncome","546":"midIncome","547":"midIncome","548":"lowIncomeA","549":"lowIncomeB","550":"midIncome","551":"lowIncomeB","552":"lowIncomeB","553":"lowIncomeB","554":"lowIncomeA","555":"midIncome","556":"midIncome","557":"midIncome","558":"midIncome","559":"lowIncomeB","560":"midIncome","561":"midIncome","562":"midIncome","563":"midIncome","564":"midIncome","565":"lowIncomeA","566":"midIncome","567":"midIncome","568":"midIncome","569":"midIncome","570":"midIncome","571":"midIncome","572":"highIncome","573":"midIncome","574":"midIncome","575":"midIncome","576":"midIncome","577":"lowIncomeB","578":"midIncome","579":"midIncome","580":"midIncome","581":"midIncome","582":"midIncome","583":"midIncome","584":"midIncome","585":"lowIncomeA","586":"lowIncomeB","587":"midIncome","588":"lowIncomeA","589":"highIncome","590":"lowIncomeA","591":"lowIncomeA","592":"midIncome","593":"midIncome","594":"midIncome","595":"lowIncomeA","596":"midIncome","597":"highIncome","598":"lowIncomeA","599":"midIncome","600":"midIncome","601":"midIncome","602":"highIncome","603":"lowIncomeA","604":"midIncome","605":"midIncome","606":"lowIncomeA","607":"lowIncomeA","608":"midIncome","609":"midIncome","610":"midIncome","611":"midIncome","612":"midIncome","613":"lowIncomeA","614":"lowIncomeB","615":"midIncome","616":"midIncome","617":"midIncome","618":"midIncome","619":"lowIncomeB","620":"midIncome","621":"midIncome","622":"midIncome","623":"midIncome","624":"lowIncomeB","625":"lowIncomeA","626":"lowIncomeB","627":"highIncome","628":"midIncome","629":"lowIncomeA","630":"midIncome","631":"midIncome","632":"midIncome","633":"highIncome","634":"midIncome","635":"highIncome","636":"midIncome","637":"midIncome","638":"lowIncomeA","639":"lowIncomeB","640":"lowIncomeB","641":"lowIncomeA","642":"lowIncomeB","643":"midIncome","644":"midIncome","645":"lowIncomeA","646":"highIncome","647":"lowIncomeB","648":"midIncome","649":"midIncome","650":"lowIncomeA","651":"midIncome","652":"midIncome","653":"midIncome","654":"midIncome","655":"midIncome","656":"midIncome","657":"midIncome","658":"lowIncomeA","659":"midIncome","660":"midIncome","661":"midIncome","662":"highIncome","663":"highIncome","664":"midIncome","665":"midIncome","666":"lowIncomeA","667":"midIncome","668":"midIncome","669":"highIncome","670":"midIncome","671":"highIncome","672":"midIncome","673":"midIncome","674":"lowIncomeB","675":"lowIncomeB","676":"midIncome","677":"midIncome","678":"highIncome","679":"midIncome","680":"midIncome","681":"midIncome","682":"highIncome","683":"lowIncomeA","684":"midIncome","685":"midIncome","686":"midIncome","687":"midIncome","688":"midIncome","689":"highIncome","690":"midIncome","691":"midIncome","692":"midIncome","693":"midIncome","694":"midIncome","695":"midIncome","696":"midIncome","697":"lowIncomeB","698":"midIncome","699":"midIncome","700":"midIncome","701":"lowIncomeB","702":"midIncome","703":"midIncome","704":"midIncome","705":"midIncome","706":"midIncome","707":"lowIncomeA","708":"midIncome","709":"midIncome","710":"midIncome","711":"midIncome","712":"midIncome","713":"midIncome","714":"midIncome","715":"midIncome","716":"lowIncomeA","717":"lowIncomeB","718":"midIncome","719":"lowIncomeA","720":"midIncome","721":"midIncome","722":"midIncome","723":"midIncome","724":"midIncome","725":"midIncome","726":"midIncome","727":"midIncome","728":"midIncome","729":"midIncome","730":"midIncome","731":"midIncome","732":"midIncome","733":"lowIncomeB","734":"midIncome","735":"midIncome","736":"lowIncomeA","737":"midIncome","738":"midIncome","739":"midIncome","740":"midIncome","741":"midIncome","742":"lowIncomeB","743":"midIncome","744":"midIncome","745":"midIncome","746":"midIncome","747":"midIncome","748":"midIncome","749":"lowIncomeB","750":"highIncome","751":"midIncome","752":"midIncome","753":"midIncome","754":"midIncome","755":"midIncome","756":"midIncome","757":"midIncome","758":"midIncome","759":"midIncome","760":"midIncome","761":"midIncome","762":"midIncome","763":"midIncome","764":"midIncome","765":"midIncome","766":"lowIncomeB","767":"midIncome","768":"lowIncomeB","769":"lowIncomeB","770":"midIncome","771":"lowIncomeA","772":"midIncome","773":"midIncome","774":"midIncome","775":"lowIncomeB","776":"lowIncomeA","777":"midIncome","778":"midIncome","779":"lowIncomeB","780":"lowIncomeB","781":"lowIncomeA","782":"midIncome","783":"midIncome","784":"midIncome","785":"midIncome","786":"lowIncomeB","787":"midIncome","788":"midIncome","789":"midIncome","790":"midIncome","791":"midIncome","792":"midIncome","793":"midIncome","794":"lowIncomeB","795":"lowIncomeA","796":"lowIncomeB","797":"lowIncomeB","798":"midIncome","799":"midIncome","800":"lowIncomeB","801":"midIncome","802":"midIncome","803":"midIncome","804":"midIncome","805":"midIncome","806":"midIncome","807":"highIncome","808":"lowIncomeB","809":"lowIncomeA","810":"midIncome","811":"midIncome","812":"midIncome","813":"midIncome","814":"lowIncomeA","815":"midIncome","816":"midIncome","817":"lowIncomeA","818":"midIncome","819":"lowIncomeB","820":"midIncome","821":"lowIncomeB","822":"highIncome","823":"lowIncomeA","824":"midIncome","825":"midIncome","826":"midIncome","827":"midIncome","828":"midIncome","829":"midIncome","830":"midIncome","831":"lowIncomeB","832":"highIncome","833":"midIncome","834":"midIncome","835":"highIncome","836":"lowIncomeA","837":"midIncome","838":"midIncome","839":"midIncome","840":"highIncome","841":"midIncome","842":"midIncome","843":"midIncome","844":"midIncome","845":"lowIncomeA","846":"lowIncomeA","847":"highIncome","848":"midIncome","849":"highIncome","850":"midIncome","851":"highIncome","852":"midIncome","853":"midIncome","854":"midIncome","855":"midIncome","856":"midIncome","857":"midIncome","858":"lowIncomeA","859":"lowIncomeB","860":"midIncome","861":"midIncome","862":"midIncome","863":"lowIncomeB","864":"midIncome","865":"midIncome","866":"midIncome","867":"midIncome","868":"lowIncomeA","869":"midIncome","870":"highIncome","871":"midIncome","872":"midIncome","873":"midIncome","874":"midIncome","875":"lowIncomeA","876":"midIncome","877":"midIncome","878":"lowIncomeA","879":"lowIncomeA","880":"midIncome","881":"midIncome","882":"midIncome","883":"midIncome","884":"midIncome","885":"midIncome","886":"midIncome","887":"midIncome","888":"midIncome","889":"highIncome","890":"midIncome","891":"midIncome","892":"lowIncomeB","893":"midIncome","894":"midIncome","895":"midIncome","896":"midIncome","897":"midIncome","898":"midIncome","899":"midIncome","900":"midIncome","901":"highIncome","902":"midIncome","903":"midIncome","904":"lowIncomeA","905":"highIncome","906":"midIncome","907":"midIncome","908":"lowIncomeA","909":"highIncome","910":"midIncome","911":"midIncome","912":"midIncome","913":"midIncome","914":"midIncome","915":"highIncome","916":"midIncome","917":"midIncome","918":"lowIncomeB","919":"midIncome","920":"lowIncomeA","921":"midIncome","922":"midIncome","923":"midIncome","924":"highIncome","925":"midIncome","926":"midIncome","927":"lowIncomeA","928":"lowIncomeB","929":"midIncome","930":"midIncome","931":"midIncome","932":"lowIncomeA","933":"midIncome","934":"midIncome","935":"lowIncomeB","936":"midIncome","937":"midIncome","938":"midIncome","939":"lowIncomeB","940":"midIncome","941":"midIncome","942":"midIncome","943":"midIncome","944":"midIncome","945":"lowIncomeB","946":"lowIncomeA","947":"midIncome","948":"midIncome","949":"midIncome","950":"midIncome","951":"lowIncomeA","952":"midIncome","953":"lowIncomeA","954":"midIncome","955":"midIncome","956":"midIncome","957":"midIncome","958":"midIncome","959":"midIncome","960":"midIncome","961":"midIncome","962":"midIncome","963":"midIncome","964":"midIncome","965":"midIncome","966":"lowIncomeA","967":"midIncome","968":"lowIncomeA","969":"midIncome","970":"midIncome","971":"midIncome","972":"midIncome","973":"midIncome","974":"midIncome","975":"lowIncomeB","976":"midIncome","977":"lowIncomeB","978":"midIncome","979":"midIncome","980":"midIncome","981":"lowIncomeA","982":"midIncome","983":"midIncome","984":"midIncome","985":"midIncome","986":"midIncome","987":"midIncome","988":"highIncome","989":"highIncome","990":"lowIncomeB","991":"midIncome","992":"highIncome","993":"midIncome","994":"midIncome","995":"midIncome","996":"lowIncomeA","997":"lowIncomeB","998":"highIncome","999":"lowIncomeB","1000":"midIncome","1001":"midIncome","1002":"midIncome","1003":"midIncome","1004":"lowIncomeB","1005":"midIncome","1006":"midIncome","1007":"midIncome","1008":"midIncome","1009":"midIncome","1010":"midIncome","1011":"midIncome","1012":"midIncome","1013":"midIncome","1014":"highIncome","1015":"midIncome","1016":"midIncome","1017":"lowIncomeB","1018":"midIncome","1019":"lowIncomeA","1020":"lowIncomeB","1021":"midIncome","1022":"midIncome","1023":"highIncome","1024":"midIncome","1025":"midIncome","1026":"midIncome","1027":"lowIncomeA","1028":"midIncome","1029":"midIncome","1030":"midIncome","1031":"midIncome","1032":"lowIncomeB","1033":"midIncome","1034":"midIncome","1035":"midIncome","1036":"midIncome","1037":"midIncome","1038":"midIncome","1039":"midIncome","1040":"midIncome","1041":"midIncome","1042":"midIncome","1043":"highIncome","1044":"highIncome","1045":"lowIncomeB","1046":"lowIncomeB","1047":"midIncome","1048":"highIncome","1049":"midIncome","1050":"lowIncomeB","1051":"midIncome","1052":"midIncome","1053":"midIncome","1054":"midIncome","1055":"midIncome","1056":"midIncome","1057":"midIncome","1058":"lowIncomeB","1059":"midIncome","1060":"highIncome","1061":"midIncome","1062":"midIncome","1063":"lowIncomeA","1064":"midIncome","1065":"lowIncomeA","1066":"midIncome","1067":"midIncome","1068":"midIncome","1069":"midIncome","1070":"midIncome","1071":"midIncome","1072":"highIncome","1073":"midIncome","1074":"midIncome","1075":"highIncome","1076":"midIncome","1077":"lowIncomeA","1078":"midIncome","1079":"midIncome","1080":"midIncome","1081":"midIncome","1082":"lowIncomeB","1083":"lowIncomeA","1084":"midIncome","1085":"midIncome","1086":"midIncome","1087":"midIncome","1088":"midIncome","1089":"midIncome","1090":"lowIncomeA","1091":"midIncome","1092":"midIncome","1093":"midIncome","1094":"midIncome","1095":"midIncome","1096":"highIncome","1097":"midIncome","1098":"midIncome","1099":"highIncome","1100":"midIncome","1101":"lowIncomeA","1102":"midIncome","1103":"midIncome","1104":"midIncome","1105":"midIncome","1106":"midIncome","1107":"midIncome","1108":"highIncome","1109":"midIncome","1110":"midIncome","1111":"midIncome","1112":"midIncome","1113":"midIncome","1114":"midIncome","1115":"lowIncomeA","1116":"lowIncomeA","1117":"midIncome","1118":"midIncome","1119":"midIncome","1120":"midIncome","1121":"midIncome","1122":"midIncome","1123":"midIncome","1124":"highIncome","1125":"lowIncomeB","1126":"midIncome","1127":"midIncome","1128":"midIncome","1129":"midIncome","1130":"midIncome","1131":"midIncome","1132":"midIncome","1133":"midIncome","1134":"highIncome","1135":"lowIncomeB","1136":"lowIncomeA","1137":"highIncome","1138":"lowIncomeB","1139":"highIncome","1140":"midIncome","1141":"lowIncomeB","1142":"midIncome","1143":"highIncome","1144":"midIncome","1145":"midIncome","1146":"lowIncomeB","1147":"midIncome","1148":"midIncome","1149":"midIncome","1150":"midIncome","1151":"midIncome","1152":"midIncome","1153":"lowIncomeA","1154":"midIncome","1155":"midIncome","1156":"lowIncomeA","1157":"lowIncomeB","1158":"midIncome","1159":"midIncome","1160":"midIncome","1161":"midIncome","1162":"midIncome","1163":"midIncome","1164":"midIncome","1165":"midIncome","1166":"midIncome","1167":"midIncome","1168":"lowIncomeB","1169":"highIncome","1170":"midIncome","1171":"midIncome","1172":"midIncome","1173":"midIncome","1174":"midIncome","1175":"midIncome","1176":"lowIncomeA","1177":"lowIncomeB","1178":"midIncome","1179":"highIncome","1180":"midIncome","1181":"lowIncomeB","1182":"midIncome","1183":"lowIncomeA","1184":"midIncome","1185":"midIncome","1186":"highIncome","1187":"midIncome","1188":"midIncome","1189":"midIncome","1190":"highIncome","1191":"midIncome","1192":"midIncome","1193":"midIncome","1194":"midIncome","1195":"lowIncomeB","1196":"midIncome","1197":"highIncome","1198":"midIncome","1199":"midIncome","1200":"midIncome","1201":"midIncome","1202":"midIncome","1203":"midIncome","1204":"midIncome","1205":"midIncome","1206":"highIncome","1207":"lowIncomeB","1208":"midIncome","1209":"midIncome","1210":"midIncome","1211":"highIncome","1212":"midIncome","1213":"midIncome","1214":"midIncome","1215":"midIncome","1216":"midIncome","1217":"highIncome","1218":"midIncome","1219":"midIncome","1220":"highIncome","1221":"midIncome","1222":"lowIncomeB","1223":"midIncome","1224":"lowIncomeB","1225":"midIncome","1226":"midIncome","1227":"midIncome","1228":"midIncome","1229":"midIncome","1230":"midIncome","1231":"midIncome","1232":"midIncome","1233":"midIncome","1234":"midIncome","1235":"lowIncomeA","1236":"lowIncomeB","1237":"highIncome","1238":"lowIncomeA","1239":"midIncome","1240":"lowIncomeA","1241":"highIncome","1242":"midIncome","1243":"midIncome","1244":"midIncome","1245":"midIncome","1246":"lowIncomeA","1247":"highIncome","1248":"lowIncomeA","1249":"midIncome","1250":"lowIncomeB","1251":"midIncome","1252":"midIncome","1253":"midIncome","1254":"lowIncomeB","1255":"midIncome","1256":"midIncome","1257":"highIncome","1258":"midIncome","1259":"midIncome","1260":"lowIncomeB","1261":"midIncome","1262":"midIncome","1263":"highIncome","1264":"lowIncomeA","1265":"midIncome","1266":"midIncome","1267":"midIncome","1268":"midIncome","1269":"lowIncomeB","1270":"midIncome","1271":"midIncome","1272":"midIncome","1273":"midIncome","1274":"midIncome","1275":"midIncome","1276":"midIncome","1277":"midIncome","1278":"midIncome","1279":"midIncome","1280":"midIncome","1281":"midIncome","1282":"midIncome","1283":"highIncome","1284":"midIncome","1285":"midIncome","1286":"midIncome","1287":"lowIncomeB","1288":"midIncome","1289":"lowIncomeA","1290":"lowIncomeB","1291":"lowIncomeA","1292":"midIncome","1293":"midIncome","1294":"midIncome","1295":"lowIncomeB","1296":"midIncome","1297":"midIncome","1298":"midIncome","1299":"highIncome","1300":"highIncome","1301":"highIncome","1302":"midIncome","1303":"highIncome","1304":"midIncome","1305":"highIncome","1306":"midIncome","1307":"highIncome","1308":"midIncome","1309":"midIncome","1310":"midIncome","1311":"midIncome","1312":"midIncome","1313":"midIncome","1314":"midIncome","1315":"midIncome","1316":"midIncome","1317":"lowIncomeA","1318":"midIncome","1319":"midIncome","1320":"midIncome","1321":"lowIncomeB","1322":"midIncome","1323":"midIncome","1324":"midIncome","1325":"midIncome","1326":"midIncome","1327":"midIncome","1328":"midIncome","1329":"midIncome","1330":"midIncome","1331":"highIncome","1332":"highIncome","1333":"lowIncomeB","1334":"lowIncomeB","1335":"lowIncomeA","1336":"lowIncomeA","1337":"lowIncomeA","1338":"midIncome","1339":"lowIncomeA","1340":"midIncome","1341":"midIncome","1342":"midIncome","1343":"midIncome","1344":"midIncome","1345":"midIncome","1346":"lowIncomeA","1347":"lowIncomeA","1348":"midIncome","1349":"highIncome","1350":"lowIncomeA","1351":"midIncome","1352":"midIncome","1353":"midIncome","1354":"midIncome","1355":"midIncome","1356":"midIncome","1357":"lowIncomeB","1358":"lowIncomeB","1359":"lowIncomeA","1360":"midIncome","1361":"midIncome","1362":"midIncome","1363":"midIncome","1364":"midIncome","1365":"midIncome","1366":"lowIncomeB","1367":"lowIncomeA","1368":"lowIncomeB","1369":"midIncome","1370":"midIncome","1371":"midIncome","1372":"lowIncomeB","1373":"midIncome","1374":"midIncome","1375":"midIncome","1376":"lowIncomeA","1377":"midIncome","1378":"midIncome","1379":"lowIncomeA","1380":"midIncome","1381":"lowIncomeA","1382":"midIncome","1383":"lowIncomeA","1384":"lowIncomeB","1385":"midIncome","1386":"midIncome","1387":"midIncome","1388":"midIncome","1389":"midIncome","1390":"highIncome","1391":"midIncome","1392":"midIncome","1393":"midIncome","1394":"highIncome","1395":"midIncome","1396":"midIncome","1397":"midIncome","1398":"midIncome","1399":"midIncome","1400":"lowIncomeB","1401":"highIncome","1402":"midIncome","1403":"highIncome","1404":"lowIncomeA","1405":"lowIncomeA","1406":"midIncome","1407":"lowIncomeA","1408":"midIncome","1409":"midIncome","1410":"midIncome","1411":"midIncome","1412":"midIncome","1413":"midIncome","1414":"midIncome","1415":"midIncome","1416":"lowIncomeB","1417":"midIncome","1418":"midIncome","1419":"midIncome","1420":"midIncome","1421":"midIncome","1422":"midIncome","1423":"midIncome","1424":"midIncome","1425":"midIncome","1426":"midIncome","1427":"midIncome","1428":"midIncome","1429":"midIncome","1430":"lowIncomeB","1431":"midIncome","1432":"midIncome","1433":"midIncome","1434":"midIncome","1435":"midIncome","1436":"midIncome","1437":"midIncome","1438":"midIncome","1439":"midIncome","1440":"midIncome","1441":"midIncome","1442":"highIncome","1443":"midIncome","1444":"midIncome","1445":"midIncome","1446":"midIncome","1447":"midIncome","1448":"lowIncomeA","1449":"midIncome","1450":"highIncome","1451":"midIncome","1452":"midIncome","1453":"midIncome","1454":"midIncome","1455":"midIncome","1456":"lowIncomeA","1457":"midIncome","1458":"lowIncomeB","1459":"midIncome","1460":"midIncome","1461":"lowIncomeB","1462":"lowIncomeB","1463":"midIncome","1464":"midIncome","1465":"midIncome","1466":"highIncome","1467":"lowIncomeA","1468":"lowIncomeB","1469":"midIncome","1470":"highIncome","1471":"midIncome","1472":"midIncome","1473":"midIncome","1474":"midIncome","1475":"lowIncomeB","1476":"highIncome","1477":"lowIncomeA","1478":"highIncome","1479":"lowIncomeB","1480":"highIncome","1481":"midIncome","1482":"midIncome","1483":"highIncome","1484":"midIncome","1485":"midIncome","1486":"midIncome","1487":"midIncome","1488":"midIncome","1489":"midIncome","1490":"midIncome","1491":"highIncome","1492":"midIncome","1493":"midIncome","1494":"lowIncomeB","1495":"midIncome","1496":"midIncome","1497":"midIncome","1498":"midIncome","1499":"lowIncomeB","1500":"midIncome","1501":"midIncome","1502":"lowIncomeB","1503":"highIncome","1504":"midIncome","1505":"midIncome","1506":"midIncome","1507":"midIncome","1508":"midIncome","1509":"highIncome","1510":"highIncome","1511":"midIncome","1512":"midIncome","1513":"lowIncomeB","1514":"midIncome","1515":"midIncome","1516":"lowIncomeB","1517":"midIncome","1518":"midIncome","1519":"midIncome","1520":"midIncome","1521":"midIncome","1522":"midIncome","1523":"lowIncomeB","1524":"lowIncomeA","1525":"midIncome","1526":"highIncome","1527":"midIncome","1528":"midIncome","1529":"midIncome","1530":"midIncome","1531":"highIncome","1532":"midIncome","1533":"midIncome","1534":"midIncome","1535":"midIncome","1536":"lowIncomeA","1537":"midIncome","1538":"midIncome","1539":"midIncome","1540":"midIncome","1541":"highIncome","1542":"highIncome","1543":"midIncome","1544":"lowIncomeA","1545":"lowIncomeA","1546":"lowIncomeA","1547":"lowIncomeA","1548":"midIncome","1549":"midIncome","1550":"midIncome","1551":"midIncome","1552":"lowIncomeA","1553":"lowIncomeA","1554":"midIncome","1555":"lowIncomeB","1556":"midIncome","1557":"lowIncomeA","1558":"midIncome","1559":"midIncome","1560":"lowIncomeA","1561":"midIncome","1562":"midIncome","1563":"lowIncomeB","1564":"highIncome","1565":"midIncome","1566":"lowIncomeA","1567":"midIncome","1568":"midIncome","1569":"lowIncomeB","1570":"midIncome","1571":"midIncome","1572":"midIncome","1573":"midIncome","1574":"midIncome","1575":"highIncome","1576":"midIncome","1577":"midIncome","1578":"lowIncomeA","1579":"midIncome","1580":"midIncome","1581":"highIncome","1582":"midIncome","1583":"midIncome","1584":"midIncome","1585":"midIncome","1586":"midIncome","1587":"midIncome","1588":"highIncome","1589":"lowIncomeA","1590":"lowIncomeA","1591":"highIncome","1592":"midIncome","1593":"midIncome","1594":"midIncome","1595":"lowIncomeA","1596":"highIncome","1597":"midIncome","1598":"midIncome","1599":"midIncome","1600":"midIncome","1601":"midIncome","1602":"lowIncomeA","1603":"lowIncomeB","1604":"highIncome","1605":"midIncome","1606":"midIncome","1607":"midIncome","1608":"midIncome","1609":"midIncome","1610":"midIncome","1611":"midIncome","1612":"midIncome","1613":"lowIncomeA","1614":"midIncome","1615":"midIncome","1616":"midIncome","1617":"midIncome","1618":"lowIncomeB","1619":"midIncome","1620":"highIncome","1621":"midIncome","1622":"midIncome","1623":"highIncome","1624":"midIncome","1625":"midIncome","1626":"lowIncomeB","1627":"midIncome","1628":"midIncome","1629":"midIncome","1630":"lowIncomeA","1631":"midIncome","1632":"midIncome","1633":"midIncome","1634":"midIncome","1635":"midIncome","1636":"midIncome","1637":"lowIncomeA","1638":"highIncome","1639":"highIncome","1640":"midIncome","1641":"midIncome","1642":"midIncome","1643":"midIncome","1644":"midIncome","1645":"midIncome","1646":"midIncome","1647":"lowIncomeB","1648":"lowIncomeB","1649":"midIncome","1650":"midIncome","1651":"midIncome","1652":"midIncome","1653":"lowIncomeA","1654":"midIncome","1655":"lowIncomeB","1656":"midIncome","1657":"lowIncomeA","1658":"lowIncomeB","1659":"lowIncomeA","1660":"lowIncomeB","1661":"highIncome","1662":"midIncome","1663":"midIncome","1664":"midIncome","1665":"midIncome","1666":"lowIncomeA","1667":"midIncome","1668":"midIncome","1669":"lowIncomeA","1670":"midIncome","1671":"midIncome","1672":"midIncome","1673":"lowIncomeA","1674":"midIncome","1675":"midIncome","1676":"midIncome","1677":"midIncome","1678":"midIncome","1679":"midIncome","1680":"lowIncomeB","1681":"midIncome","1682":"midIncome","1683":"lowIncomeA","1684":"highIncome","1685":"midIncome","1686":"lowIncomeA","1687":"lowIncomeA","1688":"midIncome","1689":"midIncome","1690":"midIncome","1691":"lowIncomeB","1692":"midIncome","1693":"midIncome","1694":"lowIncomeA","1695":"lowIncomeA","1696":"lowIncomeB","1697":"highIncome","1698":"lowIncomeA","1699":"midIncome","1700":"midIncome","1701":"midIncome","1702":"midIncome","1703":"midIncome","1704":"midIncome","1705":"midIncome","1706":"midIncome","1707":"midIncome","1708":"highIncome","1709":"midIncome","1710":"midIncome","1711":"midIncome","1712":"midIncome","1713":"midIncome","1714":"midIncome","1715":"midIncome","1716":"midIncome","1717":"midIncome","1718":"highIncome","1719":"highIncome","1720":"highIncome","1721":"midIncome","1722":"highIncome","1723":"midIncome","1724":"midIncome","1725":"highIncome","1726":"lowIncomeB","1727":"midIncome","1728":"lowIncomeA","1729":"midIncome","1730":"lowIncomeB","1731":"midIncome","1732":"midIncome","1733":"midIncome","1734":"midIncome","1735":"highIncome","1736":"midIncome","1737":"midIncome","1738":"lowIncomeA","1739":"midIncome","1740":"lowIncomeA","1741":"midIncome","1742":"highIncome","1743":"highIncome","1744":"midIncome","1745":"midIncome","1746":"lowIncomeB","1747":"midIncome","1748":"midIncome","1749":"midIncome","1750":"midIncome","1751":"midIncome","1752":"midIncome","1753":"midIncome","1754":"lowIncomeA","1755":"lowIncomeA","1756":"midIncome","1757":"midIncome","1758":"lowIncomeA","1759":"lowIncomeB","1760":"midIncome","1761":"midIncome","1762":"midIncome","1763":"midIncome","1764":"lowIncomeB","1765":"midIncome","1766":"midIncome","1767":"midIncome","1768":"midIncome","1769":"highIncome","1770":"lowIncomeA","1771":"lowIncomeA","1772":"highIncome","1773":"midIncome","1774":"highIncome","1775":"midIncome","1776":"midIncome","1777":"highIncome","1778":"midIncome","1779":"midIncome","1780":"midIncome","1781":"midIncome","1782":"lowIncomeA","1783":"midIncome","1784":"midIncome","1785":"midIncome","1786":"midIncome","1787":"midIncome","1788":"lowIncomeB","1789":"midIncome","1790":"midIncome","1791":"highIncome","1792":"lowIncomeB","1793":"lowIncomeB","1794":"highIncome","1795":"midIncome","1796":"highIncome","1797":"midIncome","1798":"midIncome","1799":"lowIncomeB","1800":"midIncome","1801":"midIncome","1802":"lowIncomeA","1803":"lowIncomeA","1804":"highIncome","1805":"midIncome","1806":"midIncome","1807":"midIncome","1808":"midIncome","1809":"midIncome","1810":"midIncome","1811":"midIncome","1812":"midIncome","1813":"lowIncomeB","1814":"midIncome","1815":"highIncome","1816":"midIncome","1817":"midIncome","1818":"highIncome","1819":"lowIncomeA","1820":"midIncome","1821":"highIncome","1822":"midIncome","1823":"midIncome","1824":"lowIncomeB","1825":"midIncome","1826":"highIncome","1827":"midIncome","1828":"midIncome","1829":"highIncome","1830":"midIncome","1831":"lowIncomeB","1832":"midIncome","1833":"midIncome","1834":"lowIncomeB","1835":"midIncome","1836":"midIncome","1837":"lowIncomeA","1838":"midIncome","1839":"lowIncomeA","1840":"lowIncomeB","1841":"midIncome","1842":"lowIncomeA","1843":"midIncome","1844":"lowIncomeB","1845":"midIncome","1846":"midIncome","1847":"midIncome","1848":"midIncome","1849":"highIncome","1850":"lowIncomeB","1851":"midIncome","1852":"midIncome","1853":"midIncome","1854":"highIncome","1855":"highIncome","1856":"midIncome","1857":"midIncome","1858":"highIncome","1859":"highIncome","1860":"midIncome","1861":"midIncome","1862":"midIncome","1863":"lowIncomeA","1864":"midIncome","1865":"midIncome","1866":"midIncome","1867":"midIncome","1868":"midIncome","1869":"midIncome","1870":"midIncome","1871":"midIncome","1872":"highIncome","1873":"midIncome","1874":"midIncome","1875":"midIncome","1876":"lowIncomeA","1877":"midIncome","1878":"midIncome","1879":"midIncome","1880":"midIncome","1881":"midIncome","1882":"lowIncomeB","1883":"highIncome","1884":"lowIncomeA","1885":"lowIncomeB","1886":"midIncome","1887":"midIncome","1888":"highIncome","1889":"highIncome","1890":"midIncome","1891":"midIncome","1892":"midIncome","1893":"highIncome","1894":"midIncome","1895":"midIncome","1896":"midIncome","1897":"midIncome","1898":"midIncome","1899":"lowIncomeB","1900":"lowIncomeA","1901":"midIncome","1902":"midIncome","1903":"lowIncomeA","1904":"midIncome","1905":"midIncome","1906":"lowIncomeA","1907":"midIncome","1908":"midIncome","1909":"highIncome","1910":"midIncome","1911":"midIncome","1912":"midIncome","1913":"lowIncomeA","1914":"lowIncomeB","1915":"midIncome","1916":"midIncome","1917":"midIncome","1918":"midIncome","1919":"midIncome","1920":"midIncome","1921":"midIncome","1922":"midIncome","1923":"midIncome","1924":"midIncome","1925":"lowIncomeB","1926":"midIncome","1927":"midIncome","1928":"midIncome","1929":"highIncome","1930":"lowIncomeB","1931":"midIncome","1932":"midIncome","1933":"lowIncomeA","1934":"highIncome","1935":"midIncome","1936":"lowIncomeB","1937":"midIncome","1938":"lowIncomeA","1939":"midIncome","1940":"midIncome","1941":"highIncome","1942":"midIncome","1943":"midIncome","1944":"midIncome","1945":"lowIncomeA","1946":"midIncome","1947":"midIncome","1948":"lowIncomeA","1949":"midIncome","1950":"highIncome","1951":"lowIncomeA","1952":"midIncome","1953":"midIncome","1954":"highIncome","1955":"midIncome","1956":"midIncome","1957":"midIncome","1958":"midIncome","1959":"midIncome","1960":"midIncome","1961":"highIncome","1962":"midIncome","1963":"midIncome","1964":"midIncome","1965":"highIncome","1966":"midIncome","1967":"midIncome","1968":"midIncome","1969":"midIncome","1970":"highIncome","1971":"midIncome","1972":"midIncome","1973":"lowIncomeB","1974":"lowIncomeA","1975":"highIncome","1976":"midIncome","1977":"midIncome","1978":"midIncome","1979":"midIncome","1980":"midIncome","1981":"lowIncomeB","1982":"lowIncomeA","1983":"midIncome","1984":"midIncome","1985":"midIncome","1986":"lowIncomeB","1987":"midIncome","1988":"midIncome","1989":"midIncome","1990":"midIncome","1991":"lowIncomeA","1992":"midIncome","1993":"highIncome","1994":"midIncome","1995":"midIncome","1996":"midIncome","1997":"midIncome","1998":"midIncome","1999":"midIncome","2000":"midIncome","2001":"lowIncomeA","2002":"lowIncomeB","2003":"midIncome","2004":"midIncome","2005":"midIncome","2006":"midIncome","2007":"midIncome","2008":"midIncome","2009":"lowIncomeA","2010":"midIncome","2011":"midIncome","2012":"lowIncomeB","2013":"midIncome","2014":"midIncome","2015":"midIncome","2016":"midIncome","2017":"midIncome","2018":"midIncome","2019":"midIncome","2020":"midIncome","2021":"lowIncomeA","2022":"lowIncomeB","2023":"midIncome","2024":"midIncome","2025":"midIncome","2026":"midIncome","2027":"highIncome","2028":"midIncome","2029":"midIncome","2030":"midIncome","2031":"midIncome","2032":"midIncome","2033":"midIncome","2034":"highIncome","2035":"midIncome","2036":"lowIncomeA","2037":"midIncome","2038":"midIncome","2039":"midIncome","2040":"lowIncomeB","2041":"midIncome","2042":"midIncome","2043":"lowIncomeA","2044":"midIncome","2045":"lowIncomeA","2046":"midIncome","2047":"midIncome","2048":"midIncome","2049":"lowIncomeA","2050":"midIncome","2051":"lowIncomeB","2052":"lowIncomeB","2053":"midIncome","2054":"midIncome","2055":"midIncome","2056":"lowIncomeB","2057":"midIncome","2058":"midIncome","2059":"midIncome","2060":"midIncome","2061":"midIncome","2062":"midIncome","2063":"lowIncomeA","2064":"midIncome","2065":"midIncome","2066":"midIncome","2067":"midIncome","2068":"midIncome","2069":"highIncome","2070":"highIncome","2071":"midIncome","2072":"lowIncomeB","2073":"midIncome","2074":"midIncome","2075":"lowIncomeA","2076":"lowIncomeB","2077":"lowIncomeA","2078":"highIncome","2079":"midIncome","2080":"midIncome","2081":"midIncome","2082":"midIncome","2083":"midIncome","2084":"midIncome","2085":"midIncome","2086":"midIncome","2087":"midIncome","2088":"highIncome","2089":"lowIncomeA","2090":"highIncome","2091":"midIncome","2092":"highIncome","2093":"lowIncomeA","2094":"midIncome","2095":"midIncome","2096":"midIncome","2097":"midIncome","2098":"lowIncomeA","2099":"midIncome","2100":"lowIncomeA","2101":"midIncome","2102":"midIncome","2103":"midIncome","2104":"midIncome","2105":"lowIncomeA","2106":"midIncome","2107":"midIncome","2108":"lowIncomeB","2109":"midIncome","2110":"midIncome","2111":"midIncome","2112":"midIncome","2113":"midIncome","2114":"midIncome","2115":"midIncome","2116":"midIncome","2117":"midIncome","2118":"midIncome","2119":"midIncome","2120":"midIncome","2121":"midIncome","2122":"midIncome","2123":"midIncome","2124":"midIncome","2125":"midIncome","2126":"midIncome","2127":"lowIncomeB","2128":"highIncome","2129":"midIncome","2130":"midIncome","2131":"lowIncomeA","2132":"midIncome","2133":"midIncome","2134":"midIncome","2135":"midIncome","2136":"midIncome","2137":"lowIncomeA","2138":"midIncome","2139":"midIncome","2140":"midIncome","2141":"lowIncomeA","2142":"lowIncomeB","2143":"midIncome","2144":"lowIncomeA","2145":"lowIncomeB","2146":"midIncome","2147":"midIncome","2148":"lowIncomeA","2149":"highIncome","2150":"midIncome","2151":"midIncome","2152":"midIncome","2153":"midIncome","2154":"midIncome","2155":"midIncome","2156":"midIncome","2157":"midIncome","2158":"midIncome","2159":"midIncome","2160":"lowIncomeB","2161":"midIncome","2162":"midIncome","2163":"midIncome","2164":"midIncome","2165":"midIncome","2166":"midIncome","2167":"midIncome","2168":"lowIncomeB","2169":"lowIncomeB","2170":"lowIncomeA","2171":"midIncome","2172":"midIncome","2173":"midIncome","2174":"midIncome","2175":"midIncome","2176":"highIncome","2177":"midIncome","2178":"midIncome","2179":"midIncome","2180":"midIncome","2181":"midIncome","2182":"midIncome","2183":"highIncome","2184":"midIncome","2185":"midIncome","2186":"midIncome","2187":"midIncome","2188":"lowIncomeB","2189":"midIncome","2190":"lowIncomeA","2191":"midIncome","2192":"highIncome","2193":"lowIncomeB","2194":"midIncome","2195":"midIncome","2196":"highIncome","2197":"lowIncomeB","2198":"lowIncomeB","2199":"midIncome","2200":"lowIncomeB","2201":"highIncome","2202":"midIncome","2203":"highIncome","2204":"midIncome","2205":"midIncome","2206":"midIncome","2207":"midIncome","2208":"midIncome","2209":"midIncome","2210":"midIncome","2211":"highIncome","2212":"midIncome","2213":"midIncome","2214":"highIncome","2215":"midIncome","2216":"midIncome","2217":"midIncome","2218":"lowIncomeA","2219":"lowIncomeB","2220":"midIncome","2221":"highIncome","2222":"midIncome","2223":"midIncome","2224":"midIncome","2225":"midIncome","2226":"midIncome","2227":"midIncome","2228":"midIncome","2229":"highIncome","2230":"midIncome","2231":"midIncome","2232":"highIncome","2233":"midIncome","2234":"midIncome","2235":"lowIncomeA","2236":"midIncome","2237":"midIncome","2238":"midIncome","2239":"lowIncomeA","2240":"midIncome","2241":"midIncome","2242":"midIncome","2243":"midIncome","2244":"lowIncomeA","2245":"midIncome","2246":"midIncome","2247":"midIncome","2248":"midIncome","2249":"lowIncomeA","2250":"lowIncomeA","2251":"lowIncomeA","2252":"midIncome","2253":"lowIncomeA","2254":"highIncome","2255":"lowIncomeA","2256":"midIncome","2257":"lowIncomeA","2258":"lowIncomeA","2259":"midIncome","2260":"midIncome","2261":"midIncome","2262":"midIncome","2263":"midIncome","2264":"highIncome","2265":"highIncome","2266":"midIncome","2267":"midIncome","2268":"midIncome","2269":"midIncome","2270":"midIncome","2271":"midIncome","2272":"midIncome","2273":"midIncome","2274":"midIncome","2275":"lowIncomeB","2276":"lowIncomeB","2277":"midIncome","2278":"midIncome","2279":"lowIncomeB","2280":"lowIncomeA","2281":"midIncome","2282":"midIncome","2283":"midIncome","2284":"midIncome","2285":"lowIncomeA","2286":"lowIncomeA","2287":"midIncome","2288":"midIncome","2289":"midIncome","2290":"midIncome","2291":"highIncome","2292":"midIncome","2293":"midIncome","2294":"lowIncomeA","2295":"midIncome","2296":"lowIncomeA","2297":"midIncome","2298":"lowIncomeA","2299":"highIncome","2300":"midIncome","2301":"midIncome","2302":"midIncome","2303":"midIncome","2304":"midIncome","2305":"midIncome","2306":"midIncome","2307":"midIncome","2308":"midIncome","2309":"midIncome","2310":"midIncome","2311":"midIncome","2312":"highIncome","2313":"midIncome","2314":"midIncome","2315":"midIncome","2316":"lowIncomeA","2317":"midIncome","2318":"midIncome","2319":"midIncome","2320":"lowIncomeA","2321":"lowIncomeA","2322":"midIncome","2323":"highIncome","2324":"midIncome","2325":"midIncome","2326":"midIncome","2327":"lowIncomeB","2328":"lowIncomeB","2329":"midIncome","2330":"midIncome","2331":"midIncome","2332":"midIncome","2333":"midIncome","2334":"lowIncomeB","2335":"midIncome","2336":"lowIncomeA","2337":"midIncome","2338":"midIncome","2339":"lowIncomeB","2340":"lowIncomeA","2341":"midIncome","2342":"midIncome","2343":"midIncome","2344":"midIncome","2345":"lowIncomeB","2346":"midIncome","2347":"midIncome","2348":"highIncome","2349":"midIncome","2350":"lowIncomeA","2351":"midIncome","2352":"midIncome","2353":"midIncome","2354":"midIncome","2355":"midIncome","2356":"midIncome","2357":"midIncome","2358":"midIncome","2359":"midIncome","2360":"midIncome","2361":"lowIncomeB","2362":"lowIncomeA","2363":"midIncome","2364":"midIncome","2365":"midIncome","2366":"midIncome","2367":"midIncome","2368":"midIncome","2369":"midIncome","2370":"midIncome","2371":"midIncome","2372":"midIncome","2373":"lowIncomeB","2374":"midIncome","2375":"lowIncomeB","2376":"midIncome","2377":"lowIncomeA","2378":"midIncome","2379":"midIncome","2380":"highIncome","2381":"lowIncomeB","2382":"highIncome","2383":"midIncome","2384":"lowIncomeA","2385":"lowIncomeB","2386":"midIncome","2387":"midIncome","2388":"midIncome","2389":"midIncome","2390":"lowIncomeB","2391":"lowIncomeB","2392":"midIncome","2393":"midIncome","2394":"lowIncomeA","2395":"lowIncomeB","2396":"lowIncomeB","2397":"highIncome","2398":"midIncome","2399":"midIncome","2400":"midIncome","2401":"midIncome","2402":"midIncome","2403":"highIncome","2404":"midIncome","2405":"midIncome","2406":"lowIncomeA","2407":"midIncome","2408":"midIncome","2409":"midIncome","2410":"midIncome","2411":"midIncome","2412":"midIncome","2413":"midIncome","2414":"lowIncomeA","2415":"midIncome","2416":"lowIncomeB","2417":"midIncome","2418":"midIncome","2419":"midIncome","2420":"midIncome","2421":"lowIncomeB","2422":"midIncome","2423":"lowIncomeB","2424":"highIncome","2425":"lowIncomeA","2426":"midIncome","2427":"midIncome","2428":"lowIncomeB","2429":"lowIncomeB","2430":"midIncome","2431":"lowIncomeB","2432":"midIncome","2433":"midIncome","2434":"midIncome","2435":"midIncome","2436":"midIncome","2437":"highIncome","2438":"midIncome","2439":"highIncome","2440":"midIncome","2441":"lowIncomeB","2442":"highIncome","2443":"midIncome","2444":"midIncome","2445":"midIncome","2446":"midIncome","2447":"midIncome","2448":"highIncome","2449":"midIncome","2450":"midIncome","2451":"highIncome","2452":"highIncome","2453":"midIncome","2454":"lowIncomeB","2455":"lowIncomeA","2456":"midIncome","2457":"lowIncomeA","2458":"midIncome","2459":"midIncome","2460":"midIncome","2461":"midIncome","2462":"lowIncomeA","2463":"highIncome","2464":"lowIncomeB","2465":"lowIncomeA","2466":"midIncome","2467":"lowIncomeB","2468":"midIncome","2469":"midIncome","2470":"midIncome","2471":"midIncome","2472":"midIncome","2473":"midIncome","2474":"midIncome","2475":"highIncome","2476":"lowIncomeA","2477":"lowIncomeB","2478":"lowIncomeA","2479":"midIncome","2480":"midIncome","2481":"lowIncomeB","2482":"midIncome","2483":"lowIncomeB","2484":"lowIncomeB","2485":"midIncome","2486":"midIncome","2487":"midIncome","2488":"midIncome","2489":"midIncome","2490":"lowIncomeB","2491":"midIncome","2492":"midIncome","2493":"midIncome","2494":"highIncome","2495":"midIncome","2496":"midIncome","2497":"midIncome","2498":"midIncome","2499":"midIncome","2500":"midIncome","2501":"midIncome","2502":"midIncome","2503":"highIncome","2504":"midIncome","2505":"midIncome","2506":"midIncome","2507":"midIncome","2508":"midIncome","2509":"midIncome","2510":"midIncome","2511":"midIncome","2512":"lowIncomeA","2513":"midIncome","2514":"midIncome","2515":"highIncome","2516":"midIncome","2517":"lowIncomeB","2518":"highIncome","2519":"midIncome","2520":"highIncome","2521":"midIncome","2522":"lowIncomeB","2523":"midIncome","2524":"midIncome","2525":"midIncome","2526":"midIncome","2527":"midIncome","2528":"midIncome","2529":"midIncome","2530":"midIncome","2531":"lowIncomeA","2532":"midIncome","2533":"midIncome","2534":"midIncome","2535":"highIncome","2536":"highIncome","2537":"midIncome","2538":"lowIncomeB","2539":"lowIncomeA","2540":"midIncome","2541":"midIncome","2542":"midIncome","2543":"midIncome","2544":"midIncome","2545":"midIncome","2546":"midIncome","2547":"midIncome","2548":"midIncome","2549":"lowIncomeA","2550":"midIncome","2551":"midIncome","2552":"midIncome","2553":"midIncome","2554":"lowIncomeA","2555":"highIncome","2556":"midIncome","2557":"lowIncomeB","2558":"midIncome","2559":"lowIncomeA","2560":"midIncome","2561":"lowIncomeA","2562":"midIncome","2563":"midIncome","2564":"highIncome","2565":"midIncome","2566":"midIncome","2567":"lowIncomeB","2568":"lowIncomeB","2569":"midIncome","2570":"midIncome","2571":"midIncome","2572":"midIncome","2573":"lowIncomeB","2574":"lowIncomeA","2575":"midIncome","2576":"midIncome","2577":"midIncome","2578":"midIncome","2579":"lowIncomeB","2580":"lowIncomeB","2581":"highIncome","2582":"midIncome","2583":"midIncome","2584":"midIncome","2585":"midIncome","2586":"midIncome","2587":"midIncome","2588":"midIncome","2589":"highIncome","2590":"midIncome","2591":"midIncome","2592":"midIncome","2593":"highIncome","2594":"lowIncomeA","2595":"midIncome","2596":"midIncome","2597":"highIncome","2598":"midIncome","2599":"midIncome","2600":"midIncome","2601":"lowIncomeB","2602":"lowIncomeB","2603":"midIncome","2604":"lowIncomeA","2605":"midIncome","2606":"midIncome","2607":"midIncome","2608":"midIncome","2609":"midIncome","2610":"midIncome","2611":"midIncome","2612":"midIncome","2613":"midIncome","2614":"highIncome","2615":"midIncome","2616":"midIncome","2617":"lowIncomeA","2618":"midIncome","2619":"highIncome","2620":"midIncome","2621":"midIncome","2622":"midIncome","2623":"midIncome","2624":"midIncome","2625":"midIncome","2626":"midIncome","2627":"highIncome","2628":"midIncome","2629":"midIncome","2630":"midIncome","2631":"midIncome","2632":"lowIncomeB","2633":"midIncome","2634":"highIncome","2635":"midIncome","2636":"midIncome","2637":"midIncome","2638":"midIncome","2639":"midIncome","2640":"midIncome","2641":"midIncome","2642":"midIncome","2643":"lowIncomeA","2644":"midIncome","2645":"lowIncomeA","2646":"lowIncomeB","2647":"midIncome","2648":"midIncome","2649":"midIncome","2650":"midIncome","2651":"midIncome","2652":"midIncome","2653":"lowIncomeA","2654":"midIncome","2655":"midIncome","2656":"midIncome","2657":"midIncome","2658":"midIncome","2659":"midIncome","2660":"midIncome","2661":"midIncome","2662":"midIncome","2663":"midIncome","2664":"midIncome","2665":"midIncome","2666":"midIncome","2667":"highIncome","2668":"midIncome","2669":"lowIncomeA","2670":"midIncome","2671":"lowIncomeB","2672":"midIncome","2673":"lowIncomeA","2674":"lowIncomeB","2675":"lowIncomeA","2676":"midIncome","2677":"midIncome","2678":"lowIncomeB","2679":"midIncome","2680":"midIncome","2681":"midIncome","2682":"midIncome","2683":"lowIncomeB","2684":"midIncome","2685":"midIncome","2686":"midIncome","2687":"lowIncomeA","2688":"midIncome","2689":"midIncome","2690":"midIncome","2691":"midIncome","2692":"lowIncomeB","2693":"lowIncomeA","2694":"lowIncomeB","2695":"lowIncomeA","2696":"midIncome","2697":"midIncome","2698":"midIncome","2699":"lowIncomeB","2700":"midIncome","2701":"midIncome","2702":"midIncome","2703":"lowIncomeA","2704":"midIncome","2705":"midIncome","2706":"midIncome","2707":"midIncome","2708":"lowIncomeA","2709":"highIncome","2710":"midIncome","2711":"highIncome","2712":"highIncome","2713":"midIncome","2714":"lowIncomeA","2715":"midIncome","2716":"highIncome","2717":"midIncome","2718":"midIncome","2719":"midIncome","2720":"midIncome","2721":"midIncome","2722":"midIncome","2723":"midIncome","2724":"midIncome","2725":"midIncome","2726":"midIncome","2727":"midIncome","2728":"midIncome","2729":"midIncome","2730":"midIncome","2731":"midIncome","2732":"lowIncomeB","2733":"midIncome","2734":"midIncome","2735":"midIncome","2736":"highIncome","2737":"highIncome","2738":"midIncome","2739":"midIncome","2740":"midIncome","2741":"midIncome","2742":"highIncome","2743":"midIncome","2744":"lowIncomeB","2745":"midIncome","2746":"midIncome","2747":"midIncome","2748":"midIncome","2749":"midIncome","2750":"highIncome","2751":"midIncome","2752":"midIncome","2753":"midIncome","2754":"midIncome","2755":"midIncome","2756":"midIncome","2757":"lowIncomeB","2758":"midIncome","2759":"midIncome","2760":"highIncome","2761":"lowIncomeB","2762":"midIncome","2763":"midIncome","2764":"midIncome","2765":"midIncome","2766":"lowIncomeB","2767":"highIncome","2768":"highIncome","2769":"midIncome","2770":"midIncome","2771":"midIncome","2772":"midIncome","2773":"midIncome","2774":"lowIncomeA","2775":"midIncome","2776":"midIncome","2777":"highIncome","2778":"midIncome","2779":"midIncome","2780":"midIncome","2781":"highIncome","2782":"midIncome","2783":"midIncome","2784":"midIncome","2785":"midIncome","2786":"midIncome","2787":"midIncome","2788":"lowIncomeA","2789":"midIncome","2790":"midIncome","2791":"midIncome","2792":"midIncome","2793":"highIncome","2794":"midIncome","2795":"midIncome","2796":"midIncome","2797":"midIncome","2798":"lowIncomeB","2799":"midIncome","2800":"midIncome","2801":"midIncome","2802":"midIncome","2803":"midIncome","2804":"lowIncomeB","2805":"midIncome","2806":"midIncome","2807":"midIncome","2808":"midIncome","2809":"midIncome","2810":"midIncome","2811":"midIncome","2812":"midIncome","2813":"lowIncomeA","2814":"lowIncomeB","2815":"midIncome","2816":"midIncome","2817":"lowIncomeB","2818":"midIncome","2819":"midIncome","2820":"midIncome","2821":"midIncome","2822":"midIncome","2823":"midIncome","2824":"midIncome","2825":"midIncome","2826":"midIncome","2827":"highIncome","2828":"midIncome","2829":"midIncome","2830":"midIncome","2831":"lowIncomeA","2832":"midIncome","2833":"midIncome","2834":"lowIncomeA","2835":"lowIncomeA","2836":"midIncome","2837":"midIncome","2838":"midIncome","2839":"midIncome","2840":"midIncome","2841":"midIncome","2842":"midIncome","2843":"midIncome","2844":"midIncome","2845":"highIncome","2846":"midIncome","2847":"lowIncomeA","2848":"midIncome","2849":"midIncome","2850":"highIncome","2851":"lowIncomeA","2852":"highIncome","2853":"midIncome","2854":"midIncome","2855":"midIncome","2856":"midIncome","2857":"midIncome","2858":"midIncome","2859":"highIncome","2860":"midIncome","2861":"midIncome","2862":"midIncome","2863":"midIncome","2864":"midIncome","2865":"lowIncomeA","2866":"midIncome","2867":"lowIncomeA","2868":"midIncome","2869":"midIncome","2870":"midIncome","2871":"midIncome","2872":"midIncome","2873":"midIncome","2874":"midIncome","2875":"midIncome","2876":"midIncome","2877":"midIncome","2878":"midIncome","2879":"midIncome","2880":"midIncome","2881":"midIncome","2882":"highIncome","2883":"midIncome","2884":"midIncome","2885":"midIncome","2886":"midIncome","2887":"midIncome","2888":"midIncome","2889":"highIncome","2890":"midIncome","2891":"midIncome","2892":"highIncome","2893":"midIncome","2894":"lowIncomeB","2895":"midIncome","2896":"highIncome","2897":"midIncome","2898":"lowIncomeA","2899":"midIncome","2900":"lowIncomeA","2901":"midIncome","2902":"midIncome","2903":"midIncome","2904":"lowIncomeA","2905":"midIncome","2906":"highIncome","2907":"midIncome","2908":"midIncome","2909":"midIncome","2910":"lowIncomeB","2911":"lowIncomeB","2912":"midIncome","2913":"highIncome","2914":"highIncome","2915":"lowIncomeA","2916":"midIncome","2917":"midIncome","2918":"midIncome","2919":"midIncome","2920":"midIncome","2921":"midIncome","2922":"midIncome","2923":"midIncome","2924":"midIncome","2925":"lowIncomeB","2926":"midIncome","2927":"lowIncomeA","2928":"midIncome","2929":"midIncome","2930":"midIncome","2931":"lowIncomeB","2932":"midIncome","2933":"midIncome","2934":"midIncome","2935":"midIncome","2936":"midIncome","2937":"midIncome","2938":"midIncome","2939":"midIncome","2940":"midIncome","2941":"lowIncomeB","2942":"midIncome","2943":"lowIncomeA","2944":"midIncome","2945":"lowIncomeA","2946":"midIncome","2947":"midIncome","2948":"midIncome","2949":"midIncome","2950":"lowIncomeB","2951":"midIncome","2952":"midIncome","2953":"midIncome","2954":"midIncome","2955":"midIncome","2956":"midIncome","2957":"midIncome","2958":"midIncome","2959":"midIncome","2960":"midIncome","2961":"midIncome","2962":"lowIncomeB","2963":"lowIncomeB","2964":"midIncome","2965":"midIncome","2966":"lowIncomeB","2967":"midIncome","2968":"midIncome","2969":"midIncome","2970":"midIncome","2971":"midIncome","2972":"midIncome","2973":"midIncome","2974":"midIncome","2975":"midIncome","2976":"highIncome","2977":"midIncome","2978":"midIncome","2979":"lowIncomeA","2980":"midIncome","2981":"midIncome","2982":"midIncome","2983":"midIncome","2984":"highIncome","2985":"midIncome","2986":"midIncome","2987":"lowIncomeA","2988":"highIncome","2989":"midIncome","2990":"midIncome","2991":"midIncome","2992":"midIncome","2993":"highIncome","2994":"lowIncomeB","2995":"highIncome","2996":"lowIncomeA","2997":"midIncome","2998":"midIncome","2999":"midIncome","3000":"midIncome","3001":"midIncome","3002":"midIncome","3003":"midIncome","3004":"midIncome","3005":"midIncome","3006":"midIncome","3007":"lowIncomeA","3008":"midIncome","3009":"highIncome","3010":"midIncome","3011":"lowIncomeA","3012":"midIncome","3013":"highIncome","3014":"midIncome","3015":"midIncome","3016":"midIncome","3017":"midIncome","3018":"highIncome","3019":"midIncome","3020":"lowIncomeB","3021":"lowIncomeB","3022":"midIncome","3023":"midIncome","3024":"midIncome","3025":"highIncome","3026":"midIncome","3027":"midIncome","3028":"midIncome","3029":"midIncome","3030":"midIncome","3031":"lowIncomeA","3032":"midIncome","3033":"lowIncomeA","3034":"midIncome","3035":"lowIncomeA","3036":"midIncome","3037":"midIncome","3038":"midIncome","3039":"midIncome","3040":"midIncome","3041":"midIncome","3042":"midIncome","3043":"lowIncomeB","3044":"midIncome","3045":"lowIncomeA","3046":"midIncome","3047":"midIncome","3048":"midIncome","3049":"midIncome","3050":"midIncome","3051":"midIncome","3052":"midIncome","3053":"midIncome","3054":"lowIncomeA","3055":"midIncome","3056":"midIncome","3057":"midIncome","3058":"midIncome","3059":"highIncome","3060":"lowIncomeB","3061":"lowIncomeA","3062":"lowIncomeB","3063":"midIncome","3064":"midIncome","3065":"lowIncomeA","3066":"lowIncomeA","3067":"midIncome","3068":"midIncome","3069":"midIncome","3070":"midIncome","3071":"midIncome","3072":"midIncome","3073":"highIncome","3074":"midIncome","3075":"midIncome","3076":"midIncome","3077":"midIncome","3078":"lowIncomeB","3079":"lowIncomeA","3080":"lowIncomeA","3081":"lowIncomeB","3082":"midIncome","3083":"lowIncomeA","3084":"midIncome","3085":"highIncome","3086":"midIncome","3087":"midIncome","3088":"midIncome","3089":"highIncome","3090":"midIncome","3091":"midIncome","3092":"midIncome","3093":"highIncome","3094":"lowIncomeB","3095":"midIncome","3096":"midIncome","3097":"midIncome","3098":"highIncome","3099":"midIncome","3100":"midIncome","3101":"midIncome","3102":"highIncome","3103":"midIncome","3104":"midIncome","3105":"midIncome","3106":"midIncome","3107":"midIncome","3108":"midIncome","3109":"lowIncomeB","3110":"midIncome","3111":"lowIncomeB","3112":"highIncome","3113":"midIncome","3114":"highIncome","3115":"midIncome","3116":"highIncome","3117":"midIncome","3118":"midIncome","3119":"highIncome","3120":"midIncome","3121":"midIncome","3122":"midIncome","3123":"midIncome","3124":"midIncome","3125":"midIncome","3126":"midIncome","3127":"midIncome","3128":"lowIncomeB","3129":"midIncome","3130":"lowIncomeB","3131":"midIncome","3132":"midIncome","3133":"highIncome","3134":"midIncome","3135":"midIncome","3136":"lowIncomeA","3137":"midIncome","3138":"midIncome","3139":"midIncome","3140":"midIncome","3141":"midIncome","3142":"highIncome","3143":"lowIncomeB","3144":"midIncome","3145":"midIncome","3146":"highIncome","3147":"lowIncomeA","3148":"midIncome","3149":"lowIncomeB","3150":"midIncome","3151":"lowIncomeB","3152":"midIncome","3153":"midIncome","3154":"midIncome","3155":"lowIncomeB","3156":"midIncome","3157":"midIncome","3158":"midIncome","3159":"lowIncomeA","3160":"midIncome","3161":"midIncome","3162":"lowIncomeA","3163":"highIncome","3164":"midIncome","3165":"midIncome","3166":"midIncome","3167":"midIncome","3168":"highIncome","3169":"midIncome","3170":"midIncome","3171":"midIncome","3172":"midIncome","3173":"midIncome","3174":"midIncome","3175":"lowIncomeA","3176":"lowIncomeB","3177":"midIncome","3178":"midIncome","3179":"highIncome","3180":"lowIncomeA","3181":"midIncome","3182":"midIncome","3183":"lowIncomeA","3184":"lowIncomeA","3185":"midIncome","3186":"midIncome","3187":"highIncome","3188":"midIncome","3189":"highIncome","3190":"highIncome","3191":"highIncome","3192":"lowIncomeA","3193":"midIncome","3194":"midIncome","3195":"lowIncomeB","3196":"midIncome","3197":"midIncome","3198":"midIncome","3199":"midIncome","3200":"midIncome","3201":"midIncome","3202":"lowIncomeB","3203":"midIncome","3204":"midIncome","3205":"midIncome","3206":"midIncome","3207":"midIncome","3208":"midIncome","3209":"highIncome","3210":"midIncome","3211":"lowIncomeA","3212":"midIncome","3213":"midIncome","3214":"lowIncomeB","3215":"midIncome","3216":"lowIncomeB","3217":"midIncome","3218":"lowIncomeB","3219":"midIncome","3220":"highIncome","3221":"lowIncomeB","3222":"midIncome","3223":"midIncome","3224":"midIncome","3225":"midIncome","3226":"midIncome","3227":"midIncome","3228":"midIncome","3229":"midIncome","3230":"midIncome","3231":"midIncome","3232":"midIncome","3233":"midIncome","3234":"midIncome","3235":"lowIncomeA","3236":"midIncome","3237":"lowIncomeA","3238":"midIncome","3239":"highIncome","3240":"midIncome","3241":"lowIncomeA","3242":"midIncome","3243":"midIncome","3244":"lowIncomeB","3245":"midIncome","3246":"highIncome","3247":"midIncome","3248":"midIncome","3249":"midIncome","3250":"midIncome","3251":"midIncome","3252":"midIncome","3253":"lowIncomeB","3254":"midIncome","3255":"highIncome","3256":"midIncome","3257":"lowIncomeA","3258":"highIncome","3259":"midIncome","3260":"midIncome","3261":"midIncome","3262":"lowIncomeB","3263":"midIncome","3264":"midIncome","3265":"midIncome","3266":"midIncome","3267":"highIncome","3268":"midIncome","3269":"highIncome","3270":"midIncome","3271":"midIncome","3272":"highIncome","3273":"highIncome","3274":"lowIncomeA","3275":"midIncome","3276":"midIncome","3277":"midIncome","3278":"midIncome","3279":"midIncome","3280":"midIncome","3281":"lowIncomeB","3282":"lowIncomeA","3283":"midIncome","3284":"midIncome","3285":"lowIncomeB","3286":"midIncome","3287":"midIncome","3288":"midIncome","3289":"midIncome","3290":"midIncome","3291":"midIncome","3292":"midIncome","3293":"lowIncomeB","3294":"midIncome","3295":"midIncome","3296":"lowIncomeA","3297":"midIncome","3298":"lowIncomeA","3299":"midIncome","3300":"midIncome","3301":"midIncome","3302":"midIncome","3303":"highIncome","3304":"midIncome","3305":"midIncome","3306":"midIncome","3307":"lowIncomeA","3308":"lowIncomeB","3309":"midIncome","3310":"midIncome","3311":"midIncome","3312":"lowIncomeB","3313":"midIncome","3314":"midIncome","3315":"lowIncomeA","3316":"midIncome","3317":"midIncome","3318":"midIncome","3319":"midIncome","3320":"lowIncomeB","3321":"midIncome","3322":"lowIncomeB","3323":"midIncome","3324":"midIncome","3325":"midIncome","3326":"lowIncomeA","3327":"highIncome","3328":"midIncome","3329":"midIncome","3330":"midIncome","3331":"midIncome","3332":"midIncome","3333":"midIncome","3334":"midIncome","3335":"lowIncomeA","3336":"midIncome","3337":"midIncome","3338":"lowIncomeA","3339":"lowIncomeB","3340":"highIncome","3341":"midIncome","3342":"midIncome","3343":"midIncome","3344":"lowIncomeA","3345":"midIncome","3346":"midIncome","3347":"midIncome","3348":"lowIncomeB","3349":"midIncome","3350":"midIncome","3351":"lowIncomeB","3352":"midIncome","3353":"lowIncomeB","3354":"lowIncomeB","3355":"lowIncomeB","3356":"lowIncomeA","3357":"midIncome","3358":"lowIncomeA","3359":"midIncome","3360":"midIncome","3361":"midIncome","3362":"highIncome","3363":"midIncome","3364":"midIncome","3365":"midIncome","3366":"midIncome","3367":"midIncome","3368":"lowIncomeA","3369":"lowIncomeA","3370":"highIncome","3371":"lowIncomeB","3372":"midIncome","3373":"midIncome","3374":"lowIncomeB","3375":"midIncome","3376":"midIncome","3377":"midIncome","3378":"midIncome","3379":"midIncome","3380":"midIncome","3381":"lowIncomeA","3382":"midIncome","3383":"midIncome","3384":"midIncome","3385":"midIncome","3386":"midIncome","3387":"midIncome","3388":"midIncome","3389":"midIncome","3390":"lowIncomeB","3391":"midIncome","3392":"midIncome","3393":"midIncome","3394":"highIncome","3395":"midIncome","3396":"midIncome","3397":"midIncome","3398":"lowIncomeB","3399":"midIncome","3400":"lowIncomeB","3401":"lowIncomeB","3402":"midIncome","3403":"midIncome","3404":"midIncome","3405":"lowIncomeB","3406":"lowIncomeB","3407":"midIncome","3408":"midIncome","3409":"lowIncomeB","3410":"midIncome","3411":"midIncome","3412":"midIncome","3413":"lowIncomeB","3414":"midIncome","3415":"lowIncomeA","3416":"lowIncomeA","3417":"midIncome","3418":"lowIncomeA","3419":"midIncome","3420":"midIncome","3421":"midIncome","3422":"midIncome","3423":"lowIncomeA","3424":"midIncome","3425":"midIncome","3426":"midIncome","3427":"highIncome","3428":"midIncome","3429":"midIncome","3430":"midIncome","3431":"midIncome","3432":"lowIncomeB","3433":"midIncome","3434":"lowIncomeA","3435":"midIncome","3436":"midIncome","3437":"lowIncomeB","3438":"lowIncomeA","3439":"midIncome","3440":"midIncome","3441":"midIncome","3442":"midIncome","3443":"lowIncomeB","3444":"midIncome","3445":"midIncome","3446":"midIncome","3447":"lowIncomeA","3448":"midIncome","3449":"midIncome","3450":"lowIncomeB","3451":"lowIncomeA","3452":"highIncome","3453":"midIncome","3454":"lowIncomeB","3455":"midIncome","3456":"midIncome","3457":"midIncome","3458":"lowIncomeA","3459":"midIncome","3460":"lowIncomeB","3461":"midIncome","3462":"midIncome","3463":"midIncome","3464":"lowIncomeA","3465":"midIncome","3466":"midIncome","3467":"midIncome","3468":"midIncome","3469":"midIncome","3470":"lowIncomeB","3471":"midIncome","3472":"midIncome","3473":"midIncome","3474":"midIncome","3475":"lowIncomeB","3476":"midIncome","3477":"midIncome","3478":"midIncome","3479":"lowIncomeB","3480":"highIncome","3481":"midIncome","3482":"midIncome","3483":"midIncome","3484":"highIncome","3485":"midIncome","3486":"midIncome","3487":"midIncome","3488":"highIncome","3489":"midIncome","3490":"midIncome","3491":"midIncome","3492":"midIncome","3493":"midIncome","3494":"midIncome","3495":"midIncome","3496":"midIncome","3497":"midIncome","3498":"lowIncomeA","3499":"midIncome","3500":"midIncome","3501":"midIncome","3502":"lowIncomeA","3503":"highIncome","3504":"midIncome","3505":"midIncome","3506":"lowIncomeA","3507":"midIncome","3508":"lowIncomeA","3509":"midIncome","3510":"midIncome","3511":"midIncome","3512":"midIncome","3513":"lowIncomeB","3514":"lowIncomeB","3515":"midIncome","3516":"midIncome","3517":"midIncome","3518":"highIncome","3519":"midIncome","3520":"midIncome","3521":"midIncome","3522":"midIncome","3523":"midIncome","3524":"midIncome","3525":"midIncome","3526":"highIncome","3527":"midIncome","3528":"lowIncomeB","3529":"midIncome","3530":"lowIncomeA","3531":"midIncome","3532":"highIncome","3533":"highIncome","3534":"midIncome","3535":"midIncome","3536":"midIncome","3537":"lowIncomeB","3538":"midIncome","3539":"midIncome","3540":"midIncome","3541":"midIncome","3542":"midIncome","3543":"midIncome","3544":"midIncome","3545":"midIncome","3546":"midIncome","3547":"highIncome","3548":"midIncome","3549":"midIncome","3550":"lowIncomeB","3551":"lowIncomeA","3552":"lowIncomeB","3553":"midIncome","3554":"midIncome","3555":"highIncome","3556":"lowIncomeA","3557":"midIncome","3558":"midIncome","3559":"midIncome","3560":"lowIncomeB","3561":"lowIncomeA","3562":"lowIncomeA","3563":"lowIncomeB","3564":"highIncome","3565":"midIncome","3566":"midIncome","3567":"midIncome","3568":"lowIncomeB","3569":"lowIncomeA","3570":"midIncome","3571":"midIncome","3572":"midIncome","3573":"midIncome","3574":"midIncome","3575":"midIncome","3576":"highIncome","3577":"midIncome","3578":"midIncome","3579":"lowIncomeB","3580":"highIncome","3581":"midIncome","3582":"highIncome","3583":"midIncome","3584":"lowIncomeA","3585":"midIncome","3586":"highIncome","3587":"lowIncomeA","3588":"lowIncomeB","3589":"midIncome","3590":"midIncome","3591":"midIncome","3592":"lowIncomeB","3593":"midIncome","3594":"midIncome","3595":"lowIncomeB","3596":"midIncome","3597":"midIncome","3598":"highIncome","3599":"midIncome","3600":"midIncome","3601":"midIncome","3602":"midIncome","3603":"midIncome","3604":"midIncome","3605":"highIncome","3606":"midIncome","3607":"midIncome","3608":"midIncome","3609":"lowIncomeB","3610":"midIncome","3611":"lowIncomeB","3612":"highIncome","3613":"midIncome","3614":"lowIncomeB","3615":"midIncome","3616":"midIncome","3617":"lowIncomeA","3618":"lowIncomeA","3619":"lowIncomeB","3620":"lowIncomeA","3621":"midIncome","3622":"midIncome","3623":"midIncome","3624":"midIncome","3625":"lowIncomeA","3626":"midIncome","3627":"lowIncomeB","3628":"lowIncomeB","3629":"lowIncomeB","3630":"lowIncomeA","3631":"midIncome","3632":"midIncome","3633":"highIncome","3634":"lowIncomeB","3635":"midIncome","3636":"midIncome","3637":"highIncome","3638":"midIncome","3639":"highIncome","3640":"midIncome","3641":"midIncome","3642":"midIncome","3643":"midIncome","3644":"midIncome","3645":"midIncome","3646":"midIncome","3647":"midIncome","3648":"lowIncomeA","3649":"midIncome","3650":"midIncome","3651":"highIncome","3652":"midIncome","3653":"midIncome","3654":"midIncome","3655":"midIncome","3656":"lowIncomeA","3657":"midIncome","3658":"midIncome","3659":"midIncome","3660":"midIncome","3661":"midIncome","3662":"midIncome","3663":"midIncome","3664":"midIncome","3665":"midIncome","3666":"midIncome","3667":"lowIncomeB","3668":"midIncome","3669":"midIncome","3670":"midIncome","3671":"midIncome","3672":"midIncome","3673":"highIncome","3674":"midIncome","3675":"highIncome","3676":"highIncome","3677":"lowIncomeA","3678":"lowIncomeB","3679":"midIncome","3680":"lowIncomeB","3681":"midIncome","3682":"midIncome","3683":"midIncome","3684":"lowIncomeB","3685":"lowIncomeA","3686":"midIncome","3687":"highIncome","3688":"highIncome","3689":"midIncome","3690":"midIncome","3691":"midIncome","3692":"midIncome","3693":"midIncome","3694":"midIncome","3695":"midIncome","3696":"highIncome","3697":"midIncome","3698":"midIncome","3699":"lowIncomeB","3700":"midIncome","3701":"midIncome","3702":"highIncome","3703":"midIncome","3704":"midIncome","3705":"midIncome","3706":"midIncome","3707":"midIncome","3708":"midIncome","3709":"highIncome","3710":"highIncome","3711":"lowIncomeB","3712":"midIncome","3713":"midIncome","3714":"midIncome","3715":"highIncome","3716":"highIncome","3717":"midIncome","3718":"lowIncomeA","3719":"midIncome","3720":"highIncome","3721":"lowIncomeB","3722":"midIncome","3723":"midIncome","3724":"midIncome","3725":"midIncome","3726":"lowIncomeB","3727":"midIncome","3728":"midIncome","3729":"midIncome","3730":"midIncome","3731":"lowIncomeB","3732":"midIncome","3733":"lowIncomeB","3734":"midIncome","3735":"lowIncomeB","3736":"midIncome","3737":"midIncome","3738":"midIncome","3739":"midIncome","3740":"highIncome","3741":"midIncome","3742":"midIncome","3743":"midIncome","3744":"midIncome","3745":"highIncome","3746":"lowIncomeB","3747":"lowIncomeA","3748":"midIncome","3749":"midIncome","3750":"lowIncomeB","3751":"midIncome","3752":"midIncome","3753":"midIncome","3754":"midIncome","3755":"midIncome","3756":"midIncome","3757":"lowIncomeB","3758":"midIncome","3759":"highIncome","3760":"lowIncomeA","3761":"midIncome","3762":"midIncome","3763":"lowIncomeB","3764":"midIncome","3765":"highIncome","3766":"midIncome","3767":"lowIncomeA","3768":"highIncome","3769":"lowIncomeB","3770":"midIncome","3771":"midIncome","3772":"midIncome","3773":"lowIncomeB","3774":"midIncome","3775":"midIncome","3776":"lowIncomeA","3777":"lowIncomeA","3778":"midIncome","3779":"highIncome","3780":"midIncome","3781":"midIncome","3782":"midIncome","3783":"highIncome","3784":"midIncome","3785":"midIncome","3786":"midIncome","3787":"midIncome","3788":"midIncome","3789":"midIncome","3790":"midIncome","3791":"midIncome","3792":"midIncome","3793":"midIncome","3794":"midIncome","3795":"midIncome","3796":"midIncome","3797":"lowIncomeA","3798":"highIncome","3799":"midIncome","3800":"midIncome","3801":"midIncome","3802":"midIncome","3803":"midIncome","3804":"midIncome","3805":"lowIncomeB","3806":"midIncome","3807":"midIncome","3808":"midIncome","3809":"midIncome","3810":"midIncome","3811":"midIncome","3812":"midIncome","3813":"midIncome","3814":"midIncome","3815":"midIncome","3816":"midIncome","3817":"midIncome","3818":"midIncome","3819":"midIncome","3820":"midIncome","3821":"lowIncomeB","3822":"highIncome","3823":"midIncome","3824":"midIncome","3825":"midIncome","3826":"midIncome","3827":"midIncome","3828":"midIncome","3829":"highIncome","3830":"midIncome","3831":"midIncome","3832":"midIncome","3833":"midIncome","3834":"highIncome","3835":"lowIncomeB","3836":"midIncome","3837":"midIncome","3838":"lowIncomeA","3839":"midIncome","3840":"midIncome","3841":"midIncome","3842":"midIncome","3843":"midIncome","3844":"midIncome","3845":"midIncome","3846":"highIncome","3847":"midIncome","3848":"midIncome","3849":"midIncome","3850":"midIncome","3851":"midIncome","3852":"midIncome","3853":"midIncome","3854":"midIncome","3855":"midIncome","3856":"highIncome","3857":"lowIncomeB","3858":"lowIncomeB","3859":"midIncome","3860":"midIncome","3861":"midIncome","3862":"midIncome","3863":"midIncome","3864":"highIncome","3865":"highIncome","3866":"midIncome","3867":"highIncome","3868":"midIncome","3869":"midIncome","3870":"midIncome","3871":"midIncome","3872":"midIncome","3873":"lowIncomeA","3874":"midIncome","3875":"midIncome","3876":"midIncome","3877":"midIncome","3878":"midIncome","3879":"midIncome","3880":"midIncome","3881":"midIncome","3882":"midIncome","3883":"highIncome","3884":"highIncome","3885":"midIncome","3886":"highIncome","3887":"midIncome","3888":"midIncome","3889":"midIncome","3890":"lowIncomeA","3891":"midIncome","3892":"highIncome","3893":"midIncome","3894":"lowIncomeB","3895":"midIncome","3896":"midIncome","3897":"midIncome","3898":"midIncome","3899":"highIncome","3900":"lowIncomeA","3901":"midIncome","3902":"midIncome","3903":"midIncome","3904":"highIncome","3905":"midIncome","3906":"midIncome","3907":"lowIncomeA","3908":"midIncome","3909":"midIncome","3910":"midIncome","3911":"midIncome","3912":"highIncome","3913":"midIncome","3914":"midIncome","3915":"midIncome","3916":"midIncome","3917":"highIncome","3918":"midIncome","3919":"lowIncomeB","3920":"highIncome","3921":"lowIncomeB","3922":"midIncome","3923":"highIncome","3924":"midIncome","3925":"midIncome","3926":"midIncome","3927":"lowIncomeB","3928":"highIncome","3929":"midIncome","3930":"midIncome","3931":"lowIncomeB","3932":"lowIncomeB","3933":"midIncome","3934":"midIncome","3935":"midIncome","3936":"midIncome","3937":"lowIncomeB","3938":"midIncome","3939":"midIncome","3940":"midIncome","3941":"lowIncomeA","3942":"midIncome","3943":"lowIncomeB","3944":"midIncome","3945":"midIncome","3946":"midIncome","3947":"midIncome","3948":"lowIncomeB","3949":"midIncome","3950":"highIncome","3951":"highIncome","3952":"midIncome","3953":"midIncome","3954":"lowIncomeA","3955":"lowIncomeB","3956":"midIncome","3957":"midIncome","3958":"lowIncomeB","3959":"midIncome","3960":"midIncome","3961":"midIncome","3962":"midIncome","3963":"midIncome","3964":"lowIncomeB","3965":"lowIncomeB","3966":"midIncome","3967":"lowIncomeA","3968":"midIncome","3969":"midIncome","3970":"lowIncomeB","3971":"midIncome","3972":"midIncome","3973":"midIncome","3974":"lowIncomeB","3975":"midIncome","3976":"lowIncomeB","3977":"midIncome","3978":"midIncome","3979":"midIncome","3980":"midIncome","3981":"midIncome","3982":"midIncome","3983":"midIncome","3984":"midIncome","3985":"midIncome","3986":"lowIncomeA","3987":"midIncome","3988":"highIncome","3989":"midIncome","3990":"midIncome","3991":"midIncome","3992":"midIncome","3993":"lowIncomeB","3994":"midIncome","3995":"midIncome","3996":"lowIncomeB","3997":"highIncome","3998":"midIncome","3999":"midIncome","4000":"midIncome","4001":"midIncome","4002":"midIncome","4003":"highIncome","4004":"highIncome","4005":"lowIncomeA","4006":"lowIncomeA","4007":"midIncome","4008":"midIncome","4009":"lowIncomeB","4010":"midIncome","4011":"midIncome","4012":"lowIncomeA","4013":"midIncome","4014":"lowIncomeB","4015":"midIncome","4016":"lowIncomeB","4017":"midIncome","4018":"midIncome","4019":"midIncome","4020":"lowIncomeA","4021":"midIncome","4022":"midIncome","4023":"midIncome","4024":"midIncome","4025":"midIncome","4026":"midIncome","4027":"lowIncomeB","4028":"midIncome","4029":"lowIncomeA","4030":"midIncome","4031":"midIncome","4032":"midIncome","4033":"midIncome","4034":"lowIncomeB","4035":"midIncome","4036":"midIncome","4037":"midIncome","4038":"midIncome","4039":"midIncome","4040":"midIncome","4041":"midIncome","4042":"lowIncomeB","4043":"lowIncomeA","4044":"midIncome","4045":"midIncome","4046":"highIncome","4047":"midIncome","4048":"midIncome","4049":"midIncome","4050":"midIncome","4051":"midIncome","4052":"midIncome","4053":"midIncome","4054":"midIncome","4055":"midIncome","4056":"midIncome","4057":"midIncome","4058":"lowIncomeA","4059":"midIncome","4060":"midIncome","4061":"highIncome","4062":"midIncome","4063":"midIncome","4064":"midIncome","4065":"midIncome","4066":"midIncome","4067":"midIncome","4068":"midIncome","4069":"midIncome","4070":"midIncome","4071":"midIncome","4072":"midIncome","4073":"midIncome","4074":"lowIncomeA","4075":"midIncome","4076":"midIncome","4077":"midIncome","4078":"midIncome","4079":"midIncome","4080":"lowIncomeA","4081":"midIncome","4082":"lowIncomeB","4083":"midIncome","4084":"midIncome","4085":"midIncome","4086":"highIncome","4087":"midIncome","4088":"midIncome","4089":"midIncome","4090":"midIncome","4091":"highIncome","4092":"midIncome","4093":"midIncome","4094":"midIncome","4095":"highIncome","4096":"midIncome","4097":"midIncome","4098":"lowIncomeA","4099":"midIncome","4100":"midIncome","4101":"lowIncomeB","4102":"midIncome","4103":"lowIncomeB","4104":"lowIncomeA","4105":"midIncome","4106":"midIncome","4107":"midIncome","4108":"midIncome","4109":"midIncome","4110":"midIncome","4111":"midIncome","4112":"lowIncomeA","4113":"midIncome","4114":"midIncome","4115":"midIncome","4116":"midIncome","4117":"highIncome","4118":"midIncome","4119":"midIncome","4120":"midIncome","4121":"midIncome","4122":"midIncome","4123":"highIncome","4124":"midIncome","4125":"midIncome","4126":"midIncome","4127":"lowIncomeB","4128":"midIncome","4129":"midIncome","4130":"midIncome","4131":"midIncome","4132":"highIncome","4133":"lowIncomeA","4134":"midIncome","4135":"midIncome","4136":"lowIncomeA","4137":"midIncome","4138":"midIncome","4139":"midIncome","4140":"midIncome","4141":"midIncome","4142":"midIncome","4143":"highIncome","4144":"highIncome","4145":"midIncome","4146":"lowIncomeA","4147":"midIncome","4148":"midIncome","4149":"lowIncomeA","4150":"highIncome","4151":"midIncome","4152":"midIncome","4153":"midIncome","4154":"highIncome","4155":"midIncome","4156":"midIncome","4157":"midIncome","4158":"lowIncomeA","4159":"lowIncomeA","4160":"midIncome","4161":"midIncome","4162":"midIncome","4163":"lowIncomeB","4164":"midIncome","4165":"midIncome","4166":"highIncome","4167":"midIncome","4168":"lowIncomeB","4169":"midIncome","4170":"midIncome","4171":"lowIncomeB","4172":"midIncome","4173":"midIncome","4174":"lowIncomeB","4175":"midIncome","4176":"midIncome","4177":"midIncome","4178":"midIncome","4179":"midIncome","4180":"midIncome","4181":"midIncome","4182":"midIncome","4183":"midIncome","4184":"midIncome","4185":"midIncome","4186":"midIncome","4187":"midIncome","4188":"midIncome","4189":"lowIncomeB","4190":"lowIncomeA","4191":"midIncome","4192":"lowIncomeA","4193":"midIncome","4194":"midIncome","4195":"midIncome","4196":"lowIncomeB","4197":"lowIncomeB","4198":"midIncome","4199":"midIncome","4200":"midIncome","4201":"lowIncomeA","4202":"midIncome","4203":"lowIncomeA","4204":"midIncome","4205":"midIncome","4206":"midIncome","4207":"lowIncomeA","4208":"lowIncomeA","4209":"midIncome","4210":"midIncome","4211":"lowIncomeB","4212":"highIncome","4213":"lowIncomeB","4214":"midIncome","4215":"midIncome","4216":"highIncome","4217":"midIncome","4218":"midIncome","4219":"midIncome","4220":"lowIncomeA","4221":"midIncome","4222":"lowIncomeB","4223":"midIncome","4224":"midIncome","4225":"midIncome","4226":"midIncome","4227":"lowIncomeB","4228":"midIncome","4229":"lowIncomeB","4230":"midIncome","4231":"midIncome","4232":"midIncome","4233":"midIncome","4234":"midIncome","4235":"lowIncomeA","4236":"midIncome","4237":"lowIncomeB","4238":"lowIncomeB","4239":"lowIncomeB","4240":"midIncome","4241":"midIncome","4242":"midIncome","4243":"midIncome","4244":"lowIncomeB","4245":"lowIncomeA","4246":"lowIncomeB","4247":"highIncome","4248":"midIncome","4249":"midIncome","4250":"midIncome","4251":"midIncome","4252":"midIncome","4253":"midIncome","4254":"midIncome","4255":"midIncome","4256":"midIncome","4257":"midIncome","4258":"midIncome","4259":"midIncome","4260":"highIncome","4261":"midIncome","4262":"lowIncomeA","4263":"midIncome","4264":"midIncome","4265":"midIncome","4266":"midIncome","4267":"midIncome","4268":"lowIncomeB","4269":"lowIncomeA","4270":"midIncome","4271":"midIncome","4272":"midIncome","4273":"lowIncomeB","4274":"lowIncomeB","4275":"lowIncomeA","4276":"midIncome","4277":"lowIncomeB","4278":"midIncome","4279":"midIncome","4280":"lowIncomeA","4281":"midIncome","4282":"midIncome","4283":"highIncome","4284":"midIncome","4285":"lowIncomeA","4286":"lowIncomeB","4287":"midIncome","4288":"lowIncomeB","4289":"highIncome","4290":"midIncome","4291":"midIncome","4292":"midIncome","4293":"midIncome","4294":"midIncome","4295":"midIncome","4296":"midIncome","4297":"midIncome","4298":"lowIncomeA","4299":"lowIncomeB","4300":"midIncome","4301":"midIncome","4302":"midIncome","4303":"midIncome","4304":"midIncome","4305":"lowIncomeA","4306":"midIncome","4307":"midIncome","4308":"midIncome","4309":"highIncome","4310":"lowIncomeB","4311":"midIncome","4312":"midIncome","4313":"midIncome","4314":"lowIncomeA","4315":"midIncome","4316":"midIncome","4317":"highIncome","4318":"highIncome","4319":"lowIncomeA","4320":"midIncome","4321":"midIncome","4322":"lowIncomeA","4323":"midIncome","4324":"lowIncomeB","4325":"lowIncomeB","4326":"midIncome","4327":"lowIncomeA","4328":"midIncome","4329":"midIncome","4330":"midIncome","4331":"midIncome","4332":"lowIncomeA","4333":"midIncome","4334":"midIncome","4335":"lowIncomeB","4336":"midIncome","4337":"midIncome","4338":"midIncome","4339":"lowIncomeB","4340":"midIncome","4341":"midIncome","4342":"midIncome","4343":"highIncome","4344":"midIncome","4345":"midIncome","4346":"midIncome","4347":"midIncome","4348":"midIncome","4349":"highIncome","4350":"midIncome","4351":"midIncome","4352":"midIncome","4353":"lowIncomeB","4354":"midIncome","4355":"midIncome","4356":"midIncome","4357":"midIncome","4358":"midIncome","4359":"midIncome","4360":"lowIncomeA","4361":"midIncome","4362":"midIncome","4363":"midIncome","4364":"midIncome","4365":"lowIncomeA","4366":"lowIncomeA","4367":"midIncome","4368":"midIncome","4369":"midIncome","4370":"midIncome","4371":"midIncome","4372":"midIncome","4373":"midIncome","4374":"highIncome","4375":"highIncome","4376":"highIncome","4377":"midIncome","4378":"midIncome","4379":"midIncome","4380":"lowIncomeB","4381":"lowIncomeB","4382":"lowIncomeA","4383":"lowIncomeA","4384":"lowIncomeA","4385":"lowIncomeA","4386":"lowIncomeB","4387":"lowIncomeA","4388":"lowIncomeB","4389":"midIncome","4390":"lowIncomeB","4391":"midIncome","4392":"midIncome","4393":"midIncome","4394":"midIncome","4395":"lowIncomeA","4396":"lowIncomeA","4397":"lowIncomeA","4398":"lowIncomeB","4399":"midIncome","4400":"lowIncomeB","4401":"lowIncomeA","4402":"lowIncomeA","4403":"lowIncomeA","4404":"lowIncomeB","4405":"lowIncomeA","4406":"lowIncomeA","4407":"lowIncomeA","4408":"lowIncomeB","4409":"lowIncomeB","4410":"lowIncomeA","4411":"lowIncomeA","4412":"lowIncomeA","4413":"lowIncomeA","4414":"lowIncomeB","4415":"lowIncomeA","4416":"lowIncomeA","4417":"midIncome","4418":"lowIncomeA","4419":"lowIncomeB","4420":"lowIncomeB","4421":"lowIncomeA","4422":"lowIncomeA","4423":"lowIncomeB","4424":"lowIncomeB","4425":"lowIncomeA","4426":"lowIncomeB","4427":"lowIncomeB","4428":"lowIncomeA","4429":"midIncome","4430":"lowIncomeA","4431":"lowIncomeA","4432":"lowIncomeA","4433":"lowIncomeA","4434":"lowIncomeB","4435":"lowIncomeA","4436":"lowIncomeB","4437":"midIncome","4438":"lowIncomeB","4439":"midIncome","4440":"lowIncomeA","4441":"lowIncomeB","4442":"lowIncomeA","4443":"lowIncomeA","4444":"lowIncomeB","4445":"lowIncomeB","4446":"lowIncomeA","4447":"lowIncomeA","4448":"lowIncomeA","4449":"lowIncomeA","4450":"lowIncomeA","4451":"midIncome","4452":"lowIncomeA","4453":"lowIncomeA","4454":"lowIncomeB","4455":"midIncome","4456":"lowIncomeB","4457":"lowIncomeB","4458":"lowIncomeA","4459":"lowIncomeB","4460":"lowIncomeA","4461":"midIncome","4462":"lowIncomeB","4463":"lowIncomeB","4464":"lowIncomeA","4465":"lowIncomeB","4466":"lowIncomeA","4467":"lowIncomeA","4468":"lowIncomeA","4469":"lowIncomeB","4470":"lowIncomeA","4471":"lowIncomeA","4472":"lowIncomeB","4473":"lowIncomeA","4474":"lowIncomeA","4475":"midIncome","4476":"lowIncomeA","4477":"lowIncomeA","4478":"lowIncomeB","4479":"lowIncomeA","4480":"lowIncomeA","4481":"lowIncomeA","4482":"lowIncomeB","4483":"lowIncomeA","4484":"lowIncomeB","4485":"lowIncomeB","4486":"lowIncomeA","4487":"lowIncomeA","4488":"lowIncomeA","4489":"lowIncomeB","4490":"lowIncomeB","4491":"lowIncomeA","4492":"lowIncomeB","4493":"lowIncomeA","4494":"lowIncomeA","4495":"lowIncomeA","4496":"lowIncomeA","4497":"lowIncomeB","4498":"lowIncomeB","4499":"lowIncomeA","4500":"lowIncomeB","4501":"lowIncomeB","4502":"lowIncomeA","4503":"lowIncomeB","4504":"lowIncomeA","4505":"lowIncomeB","4506":"midIncome","4507":"lowIncomeB","4508":"lowIncomeA","4509":"lowIncomeA","4510":"midIncome","4511":"lowIncomeA","4512":"lowIncomeB","4513":"lowIncomeB","4514":"lowIncomeA","4515":"lowIncomeB","4516":"lowIncomeA","4517":"lowIncomeA","4518":"lowIncomeA","4519":"lowIncomeB","4520":"lowIncomeA","4521":"lowIncomeB","4522":"lowIncomeA","4523":"lowIncomeA","4524":"lowIncomeA","4525":"midIncome","4526":"lowIncomeB","4527":"lowIncomeA","4528":"lowIncomeB","4529":"lowIncomeA","4530":"lowIncomeB","4531":"lowIncomeA","4532":"lowIncomeB","4533":"lowIncomeB","4534":"lowIncomeA","4535":"lowIncomeA","4536":"lowIncomeA","4537":"lowIncomeB","4538":"lowIncomeA","4539":"lowIncomeA","4540":"lowIncomeA","4541":"lowIncomeA","4542":"midIncome","4543":"midIncome","4544":"lowIncomeB","4545":"lowIncomeB","4546":"midIncome","4547":"midIncome","4548":"lowIncomeA","4549":"lowIncomeA","4550":"lowIncomeA","4551":"lowIncomeB","4552":"lowIncomeB","4553":"lowIncomeA","4554":"lowIncomeB","4555":"lowIncomeB","4556":"lowIncomeA","4557":"lowIncomeA","4558":"lowIncomeA","4559":"lowIncomeA","4560":"lowIncomeB","4561":"lowIncomeA","4562":"lowIncomeA","4563":"lowIncomeA","4564":"lowIncomeB","4565":"lowIncomeA","4566":"lowIncomeA","4567":"lowIncomeA","4568":"lowIncomeA","4569":"lowIncomeA","4570":"lowIncomeA","4571":"lowIncomeA","4572":"midIncome","4573":"lowIncomeA","4574":"lowIncomeA","4575":"lowIncomeB","4576":"lowIncomeB","4577":"lowIncomeA","4578":"lowIncomeA","4579":"lowIncomeA","4580":"lowIncomeA","4581":"lowIncomeA","4582":"lowIncomeA","4583":"lowIncomeA","4584":"lowIncomeA","4585":"lowIncomeB","4586":"lowIncomeA","4587":"lowIncomeA","4588":"lowIncomeA","4589":"lowIncomeB","4590":"lowIncomeB","4591":"lowIncomeB","4592":"lowIncomeB","4593":"lowIncomeB","4594":"midIncome","4595":"midIncome","4596":"midIncome","4597":"lowIncomeB","4598":"lowIncomeA","4599":"lowIncomeB","4600":"lowIncomeB","4601":"lowIncomeB","4602":"lowIncomeB","4603":"lowIncomeB","4604":"lowIncomeB","4605":"lowIncomeB","4606":"lowIncomeA","4607":"midIncome","4608":"lowIncomeB","4609":"lowIncomeA","4610":"lowIncomeB","4611":"lowIncomeB","4612":"lowIncomeA","4613":"midIncome","4614":"lowIncomeB","4615":"lowIncomeB","4616":"lowIncomeA","4617":"lowIncomeB","4618":"lowIncomeB","4619":"lowIncomeB","4620":"lowIncomeA","4621":"lowIncomeB","4622":"lowIncomeB","4623":"lowIncomeA","4624":"lowIncomeB","4625":"lowIncomeB","4626":"lowIncomeB","4627":"lowIncomeB","4628":"lowIncomeA","4629":"lowIncomeB","4630":"lowIncomeB","4631":"lowIncomeA","4632":"lowIncomeB","4633":"lowIncomeB","4634":"lowIncomeB","4635":"midIncome","4636":"lowIncomeB","4637":"lowIncomeB","4638":"lowIncomeA","4639":"lowIncomeA","4640":"midIncome","4641":"lowIncomeB","4642":"lowIncomeA","4643":"lowIncomeB","4644":"lowIncomeA","4645":"lowIncomeB","4646":"lowIncomeA","4647":"lowIncomeA","4648":"midIncome","4649":"lowIncomeA","4650":"lowIncomeA","4651":"midIncome","4652":"midIncome","4653":"lowIncomeA","4654":"lowIncomeA","4655":"lowIncomeA","4656":"lowIncomeB","4657":"lowIncomeB","4658":"lowIncomeA","4659":"lowIncomeA","4660":"lowIncomeA","4661":"midIncome","4662":"lowIncomeB","4663":"lowIncomeA","4664":"lowIncomeA","4665":"lowIncomeA","4666":"lowIncomeA","4667":"lowIncomeB","4668":"lowIncomeB","4669":"lowIncomeA","4670":"lowIncomeA","4671":"lowIncomeA","4672":"lowIncomeA","4673":"lowIncomeA","4674":"lowIncomeB","4675":"lowIncomeB","4676":"midIncome","4677":"lowIncomeB","4678":"lowIncomeB","4679":"lowIncomeB","4680":"lowIncomeA","4681":"lowIncomeB","4682":"lowIncomeA","4683":"lowIncomeB","4684":"midIncome","4685":"midIncome","4686":"lowIncomeB","4687":"lowIncomeA","4688":"lowIncomeA","4689":"lowIncomeA","4690":"lowIncomeA","4691":"lowIncomeA","4692":"lowIncomeB","4693":"lowIncomeA","4694":"lowIncomeA","4695":"lowIncomeA","4696":"lowIncomeA","4697":"lowIncomeB","4698":"lowIncomeB","4699":"lowIncomeB","4700":"lowIncomeA","4701":"lowIncomeB","4702":"lowIncomeA","4703":"lowIncomeB","4704":"lowIncomeA","4705":"lowIncomeA","4706":"lowIncomeA","4707":"lowIncomeB","4708":"lowIncomeB","4709":"lowIncomeA","4710":"lowIncomeB","4711":"lowIncomeA","4712":"lowIncomeA","4713":"lowIncomeA","4714":"midIncome","4715":"lowIncomeA","4716":"lowIncomeA","4717":"lowIncomeA","4718":"lowIncomeB","4719":"lowIncomeA","4720":"lowIncomeA","4721":"midIncome","4722":"lowIncomeA","4723":"lowIncomeA","4724":"lowIncomeA","4725":"midIncome","4726":"lowIncomeB","4727":"midIncome","4728":"lowIncomeB","4729":"lowIncomeA","4730":"lowIncomeA","4731":"midIncome","4732":"lowIncomeB","4733":"lowIncomeB","4734":"lowIncomeA","4735":"midIncome","4736":"lowIncomeB","4737":"lowIncomeB","4738":"lowIncomeA","4739":"lowIncomeB","4740":"lowIncomeA","4741":"lowIncomeB","4742":"lowIncomeB","4743":"lowIncomeB","4744":"lowIncomeB","4745":"lowIncomeA","4746":"lowIncomeB","4747":"lowIncomeA","4748":"lowIncomeA","4749":"lowIncomeA","4750":"lowIncomeA","4751":"lowIncomeA","4752":"lowIncomeB","4753":"lowIncomeA","4754":"lowIncomeB","4755":"lowIncomeA","4756":"midIncome","4757":"lowIncomeB","4758":"lowIncomeA","4759":"lowIncomeA","4760":"lowIncomeB","4761":"lowIncomeB","4762":"lowIncomeB","4763":"lowIncomeB","4764":"lowIncomeA","4765":"lowIncomeB","4766":"lowIncomeB","4767":"lowIncomeB","4768":"lowIncomeA","4769":"lowIncomeA","4770":"midIncome","4771":"lowIncomeB","4772":"lowIncomeB","4773":"lowIncomeA","4774":"lowIncomeB","4775":"midIncome","4776":"lowIncomeB","4777":"lowIncomeA","4778":"lowIncomeA","4779":"lowIncomeB","4780":"lowIncomeA","4781":"lowIncomeA","4782":"lowIncomeA","4783":"lowIncomeB","4784":"lowIncomeA","4785":"midIncome","4786":"lowIncomeA","4787":"lowIncomeA","4788":"lowIncomeB","4789":"lowIncomeB","4790":"lowIncomeB","4791":"midIncome","4792":"lowIncomeB","4793":"lowIncomeA","4794":"lowIncomeA","4795":"lowIncomeA","4796":"lowIncomeA","4797":"midIncome","4798":"lowIncomeB","4799":"lowIncomeA","4800":"lowIncomeA","4801":"lowIncomeB","4802":"lowIncomeA","4803":"lowIncomeB","4804":"lowIncomeA","4805":"lowIncomeA","4806":"lowIncomeA","4807":"lowIncomeA","4808":"lowIncomeA","4809":"lowIncomeB","4810":"lowIncomeB","4811":"lowIncomeB","4812":"lowIncomeB","4813":"lowIncomeA","4814":"midIncome","4815":"lowIncomeA","4816":"midIncome","4817":"lowIncomeB","4818":"lowIncomeB","4819":"lowIncomeA","4820":"lowIncomeB","4821":"lowIncomeA","4822":"lowIncomeB","4823":"midIncome","4824":"lowIncomeA","4825":"midIncome","4826":"lowIncomeB","4827":"lowIncomeB","4828":"lowIncomeB","4829":"lowIncomeA","4830":"lowIncomeA","4831":"lowIncomeA","4832":"lowIncomeA","4833":"lowIncomeB","4834":"lowIncomeA","4835":"lowIncomeB","4836":"lowIncomeA","4837":"midIncome","4838":"lowIncomeA","4839":"lowIncomeB","4840":"lowIncomeA","4841":"lowIncomeB","4842":"lowIncomeA","4843":"lowIncomeA","4844":"lowIncomeB","4845":"lowIncomeB","4846":"lowIncomeB","4847":"lowIncomeA","4848":"lowIncomeA","4849":"lowIncomeB","4850":"lowIncomeA","4851":"lowIncomeB","4852":"lowIncomeA","4853":"lowIncomeA","4854":"lowIncomeB","4855":"lowIncomeA","4856":"lowIncomeB","4857":"lowIncomeA","4858":"lowIncomeB","4859":"lowIncomeB","4860":"lowIncomeB","4861":"lowIncomeB","4862":"lowIncomeB","4863":"lowIncomeA","4864":"lowIncomeB","4865":"lowIncomeA","4866":"lowIncomeA","4867":"midIncome","4868":"lowIncomeA","4869":"lowIncomeB","4870":"lowIncomeB","4871":"lowIncomeB","4872":"lowIncomeA","4873":"lowIncomeB","4874":"lowIncomeA","4875":"midIncome","4876":"lowIncomeB","4877":"lowIncomeB","4878":"lowIncomeB","4879":"lowIncomeB","4880":"lowIncomeB","4881":"lowIncomeA","4882":"midIncome","4883":"lowIncomeA","4884":"midIncome","4885":"lowIncomeA","4886":"lowIncomeB","4887":"lowIncomeA","4888":"lowIncomeA","4889":"lowIncomeB","4890":"lowIncomeA","4891":"lowIncomeB","4892":"lowIncomeB","4893":"lowIncomeA","4894":"lowIncomeA","4895":"lowIncomeB","4896":"lowIncomeB","4897":"lowIncomeA","4898":"lowIncomeA","4899":"lowIncomeB","4900":"lowIncomeA","4901":"midIncome","4902":"lowIncomeB","4903":"midIncome","4904":"lowIncomeA","4905":"lowIncomeB","4906":"lowIncomeB","4907":"lowIncomeA","4908":"lowIncomeB","4909":"lowIncomeA","4910":"midIncome","4911":"lowIncomeB","4912":"lowIncomeB","4913":"lowIncomeB","4914":"lowIncomeB","4915":"lowIncomeB","4916":"lowIncomeA","4917":"lowIncomeA","4918":"lowIncomeA","4919":"midIncome","4920":"lowIncomeA","4921":"lowIncomeA","4922":"lowIncomeA","4923":"midIncome","4924":"lowIncomeA","4925":"lowIncomeA","4926":"midIncome","4927":"midIncome","4928":"lowIncomeB","4929":"lowIncomeB","4930":"lowIncomeA","4931":"lowIncomeB","4932":"midIncome","4933":"midIncome","4934":"lowIncomeA","4935":"midIncome","4936":"lowIncomeB","4937":"lowIncomeB","4938":"lowIncomeA","4939":"midIncome","4940":"midIncome","4941":"lowIncomeB","4942":"lowIncomeA","4943":"lowIncomeB","4944":"lowIncomeA","4945":"lowIncomeA","4946":"lowIncomeB","4947":"lowIncomeA","4948":"lowIncomeA","4949":"lowIncomeA","4950":"lowIncomeB","4951":"lowIncomeB","4952":"lowIncomeB","4953":"lowIncomeB","4954":"lowIncomeB","4955":"lowIncomeB","4956":"lowIncomeB","4957":"lowIncomeA","4958":"lowIncomeB","4959":"lowIncomeA","4960":"lowIncomeA","4961":"lowIncomeA","4962":"lowIncomeA","4963":"lowIncomeB","4964":"lowIncomeB","4965":"lowIncomeA","4966":"lowIncomeB","4967":"lowIncomeA","4968":"lowIncomeA","4969":"lowIncomeB","4970":"lowIncomeA","4971":"lowIncomeA","4972":"lowIncomeA","4973":"lowIncomeB","4974":"lowIncomeB","4975":"lowIncomeA","4976":"lowIncomeA","4977":"midIncome","4978":"midIncome","4979":"lowIncomeB","4980":"lowIncomeB","4981":"lowIncomeB","4982":"lowIncomeA","4983":"lowIncomeB","4984":"lowIncomeA","4985":"lowIncomeB","4986":"lowIncomeB","4987":"midIncome","4988":"midIncome","4989":"highIncome","4990":"midIncome","4991":"highIncome","4992":"highIncome","4993":"highIncome","4994":"highIncome","4995":"highIncome","4996":"highIncome","4997":"highIncome","4998":"highIncome","4999":"highIncome","5000":"highIncome","5001":"highIncome","5002":"highIncome","5003":"highIncome","5004":"midIncome","5005":"midIncome","5006":"highIncome","5007":"midIncome","5008":"highIncome","5009":"highIncome","5010":"highIncome","5011":"highIncome","5012":"highIncome","5013":"highIncome","5014":"highIncome","5015":"highIncome","5016":"highIncome","5017":"midIncome","5018":"highIncome","5019":"highIncome","5020":"highIncome","5021":"highIncome","5022":"highIncome","5023":"highIncome","5024":"midIncome","5025":"highIncome","5026":"highIncome","5027":"highIncome","5028":"highIncome","5029":"highIncome","5030":"midIncome","5031":"midIncome","5032":"highIncome","5033":"highIncome","5034":"midIncome","5035":"highIncome","5036":"highIncome","5037":"highIncome","5038":"highIncome","5039":"highIncome","5040":"highIncome","5041":"highIncome","5042":"midIncome","5043":"highIncome","5044":"midIncome","5045":"midIncome","5046":"highIncome","5047":"highIncome","5048":"highIncome","5049":"highIncome","5050":"highIncome","5051":"highIncome","5052":"highIncome","5053":"highIncome","5054":"highIncome","5055":"highIncome","5056":"highIncome","5057":"highIncome","5058":"highIncome","5059":"midIncome","5060":"highIncome","5061":"highIncome","5062":"midIncome","5063":"highIncome","5064":"highIncome","5065":"highIncome","5066":"highIncome","5067":"highIncome","5068":"highIncome","5069":"midIncome","5070":"highIncome","5071":"highIncome","5072":"midIncome","5073":"highIncome","5074":"midIncome","5075":"midIncome","5076":"midIncome","5077":"highIncome","5078":"highIncome","5079":"highIncome","5080":"highIncome","5081":"highIncome","5082":"highIncome","5083":"highIncome","5084":"highIncome","5085":"highIncome","5086":"highIncome","5087":"highIncome","5088":"highIncome","5089":"midIncome","5090":"highIncome","5091":"highIncome","5092":"highIncome","5093":"highIncome","5094":"highIncome","5095":"highIncome","5096":"highIncome","5097":"highIncome","5098":"highIncome","5099":"highIncome","5100":"highIncome","5101":"highIncome","5102":"midIncome","5103":"midIncome","5104":"highIncome","5105":"highIncome","5106":"highIncome","5107":"highIncome","5108":"highIncome","5109":"highIncome","5110":"highIncome","5111":"midIncome","5112":"highIncome","5113":"highIncome","5114":"highIncome","5115":"highIncome","5116":"highIncome","5117":"highIncome","5118":"highIncome","5119":"highIncome","5120":"midIncome","5121":"highIncome","5122":"midIncome","5123":"highIncome","5124":"highIncome","5125":"highIncome","5126":"highIncome","5127":"highIncome","5128":"midIncome","5129":"midIncome","5130":"midIncome","5131":"midIncome","5132":"highIncome","5133":"highIncome","5134":"highIncome","5135":"highIncome","5136":"midIncome","5137":"highIncome","5138":"midIncome","5139":"highIncome","5140":"highIncome","5141":"highIncome","5142":"midIncome","5143":"highIncome","5144":"highIncome","5145":"midIncome","5146":"highIncome","5147":"midIncome","5148":"midIncome","5149":"highIncome","5150":"highIncome","5151":"highIncome","5152":"highIncome","5153":"highIncome","5154":"midIncome","5155":"highIncome","5156":"highIncome","5157":"highIncome","5158":"highIncome","5159":"highIncome","5160":"highIncome","5161":"midIncome","5162":"highIncome","5163":"highIncome","5164":"highIncome","5165":"highIncome","5166":"highIncome","5167":"highIncome","5168":"highIncome","5169":"highIncome","5170":"highIncome","5171":"highIncome","5172":"highIncome","5173":"highIncome","5174":"highIncome","5175":"highIncome","5176":"highIncome","5177":"highIncome","5178":"highIncome","5179":"highIncome","5180":"highIncome","5181":"highIncome","5182":"highIncome","5183":"highIncome","5184":"midIncome","5185":"highIncome","5186":"highIncome","5187":"highIncome","5188":"highIncome","5189":"highIncome","5190":"midIncome","5191":"highIncome","5192":"highIncome","5193":"highIncome","5194":"highIncome","5195":"midIncome","5196":"highIncome","5197":"highIncome","5198":"highIncome","5199":"highIncome","5200":"highIncome","5201":"highIncome","5202":"highIncome","5203":"highIncome","5204":"highIncome","5205":"midIncome","5206":"highIncome","5207":"highIncome","5208":"midIncome","5209":"lowIncomeA","5210":"lowIncomeB","5211":"lowIncomeB","5212":"midIncome","5213":"lowIncomeB","5214":"midIncome","5215":"midIncome","5216":"midIncome","5217":"lowIncomeA","5218":"midIncome","5219":"midIncome","5220":"midIncome","5221":"midIncome","5222":"midIncome","5223":"midIncome","5224":"lowIncomeA","5225":"midIncome","5226":"lowIncomeA","5227":"midIncome","5228":"midIncome","5229":"lowIncomeA","5230":"midIncome","5231":"lowIncomeB","5232":"highIncome","5233":"lowIncomeB","5234":"midIncome","5235":"lowIncomeB","5236":"midIncome","5237":"midIncome","5238":"lowIncomeA","5239":"midIncome","5240":"midIncome","5241":"midIncome","5242":"lowIncomeA","5243":"highIncome","5244":"midIncome","5245":"highIncome","5246":"midIncome","5247":"midIncome","5248":"midIncome","5249":"midIncome","5250":"highIncome","5251":"midIncome","5252":"midIncome","5253":"midIncome","5254":"midIncome","5255":"midIncome","5256":"midIncome","5257":"midIncome","5258":"highIncome","5259":"midIncome","5260":"midIncome","5261":"midIncome","5262":"midIncome","5263":"lowIncomeA","5264":"midIncome","5265":"midIncome","5266":"midIncome","5267":"lowIncomeB","5268":"midIncome","5269":"midIncome","5270":"midIncome","5271":"midIncome","5272":"midIncome","5273":"highIncome","5274":"lowIncomeA","5275":"midIncome","5276":"midIncome","5277":"midIncome","5278":"midIncome","5279":"midIncome","5280":"lowIncomeB","5281":"midIncome","5282":"midIncome","5283":"highIncome","5284":"midIncome","5285":"midIncome","5286":"midIncome","5287":"midIncome","5288":"lowIncomeB","5289":"midIncome","5290":"midIncome","5291":"midIncome","5292":"midIncome","5293":"midIncome","5294":"lowIncomeA","5295":"highIncome","5296":"midIncome","5297":"midIncome","5298":"highIncome","5299":"highIncome","5300":"midIncome","5301":"midIncome","5302":"midIncome","5303":"lowIncomeB","5304":"midIncome","5305":"midIncome","5306":"highIncome","5307":"midIncome","5308":"lowIncomeB","5309":"lowIncomeA","5310":"lowIncomeA","5311":"midIncome","5312":"midIncome","5313":"midIncome","5314":"lowIncomeA","5315":"midIncome","5316":"midIncome","5317":"highIncome","5318":"highIncome","5319":"lowIncomeB","5320":"midIncome","5321":"lowIncomeB","5322":"highIncome","5323":"midIncome","5324":"midIncome","5325":"lowIncomeA","5326":"midIncome","5327":"lowIncomeA","5328":"midIncome","5329":"midIncome","5330":"midIncome","5331":"midIncome","5332":"highIncome","5333":"midIncome","5334":"midIncome","5335":"midIncome","5336":"lowIncomeA","5337":"midIncome","5338":"midIncome","5339":"midIncome","5340":"midIncome","5341":"lowIncomeA","5342":"midIncome","5343":"lowIncomeB","5344":"midIncome","5345":"midIncome","5346":"midIncome","5347":"midIncome","5348":"midIncome","5349":"lowIncomeA","5350":"lowIncomeB","5351":"midIncome","5352":"highIncome","5353":"lowIncomeB","5354":"lowIncomeA","5355":"lowIncomeB","5356":"midIncome","5357":"midIncome","5358":"highIncome","5359":"midIncome","5360":"midIncome","5361":"midIncome","5362":"midIncome","5363":"midIncome","5364":"midIncome","5365":"midIncome","5366":"highIncome","5367":"midIncome","5368":"lowIncomeA","5369":"lowIncomeB","5370":"highIncome","5371":"midIncome","5372":"midIncome","5373":"midIncome","5374":"highIncome","5375":"midIncome","5376":"midIncome","5377":"highIncome","5378":"highIncome","5379":"midIncome","5380":"midIncome","5381":"midIncome","5382":"midIncome","5383":"midIncome","5384":"lowIncomeB","5385":"lowIncomeB","5386":"lowIncomeA","5387":"midIncome","5388":"midIncome","5389":"midIncome","5390":"midIncome","5391":"midIncome","5392":"midIncome","5393":"midIncome","5394":"midIncome","5395":"highIncome","5396":"midIncome","5397":"midIncome","5398":"midIncome","5399":"midIncome","5400":"highIncome","5401":"midIncome","5402":"lowIncomeB","5403":"lowIncomeA","5404":"midIncome","5405":"midIncome","5406":"midIncome","5407":"lowIncomeB","5408":"midIncome","5409":"midIncome","5410":"midIncome","5411":"midIncome","5412":"midIncome","5413":"lowIncomeB","5414":"highIncome","5415":"midIncome","5416":"midIncome","5417":"midIncome","5418":"midIncome","5419":"midIncome","5420":"lowIncomeA","5421":"midIncome","5422":"highIncome","5423":"lowIncomeB","5424":"midIncome","5425":"midIncome","5426":"lowIncomeA","5427":"midIncome","5428":"midIncome","5429":"midIncome","5430":"midIncome","5431":"midIncome","5432":"midIncome","5433":"lowIncomeA","5434":"midIncome","5435":"midIncome","5436":"midIncome","5437":"midIncome","5438":"highIncome","5439":"midIncome","5440":"midIncome","5441":"highIncome","5442":"highIncome","5443":"highIncome","5444":"highIncome","5445":"midIncome","5446":"midIncome","5447":"midIncome","5448":"midIncome","5449":"midIncome","5450":"midIncome","5451":"midIncome","5452":"midIncome","5453":"highIncome","5454":"midIncome","5455":"midIncome","5456":"midIncome","5457":"midIncome","5458":"midIncome","5459":"highIncome","5460":"midIncome","5461":"midIncome","5462":"midIncome","5463":"midIncome","5464":"midIncome","5465":"midIncome","5466":"midIncome","5467":"midIncome","5468":"midIncome","5469":"midIncome","5470":"midIncome","5471":"midIncome","5472":"midIncome","5473":"midIncome","5474":"midIncome","5475":"highIncome","5476":"highIncome","5477":"lowIncomeB","5478":"midIncome","5479":"midIncome","5480":"lowIncomeB","5481":"midIncome","5482":"midIncome","5483":"midIncome","5484":"midIncome","5485":"midIncome","5486":"midIncome","5487":"lowIncomeB","5488":"midIncome","5489":"midIncome","5490":"lowIncomeA","5491":"midIncome","5492":"lowIncomeB","5493":"midIncome","5494":"lowIncomeA","5495":"lowIncomeA","5496":"lowIncomeB","5497":"lowIncomeA","5498":"midIncome","5499":"midIncome","5500":"midIncome","5501":"highIncome","5502":"midIncome","5503":"midIncome","5504":"midIncome","5505":"midIncome","5506":"midIncome","5507":"midIncome","5508":"midIncome","5509":"midIncome","5510":"midIncome","5511":"midIncome","5512":"midIncome","5513":"midIncome","5514":"midIncome","5515":"midIncome","5516":"midIncome","5517":"midIncome","5518":"midIncome","5519":"midIncome","5520":"highIncome","5521":"midIncome","5522":"midIncome","5523":"midIncome","5524":"lowIncomeA","5525":"lowIncomeA","5526":"midIncome","5527":"lowIncomeA","5528":"midIncome","5529":"midIncome","5530":"midIncome","5531":"midIncome","5532":"midIncome","5533":"lowIncomeA","5534":"midIncome","5535":"midIncome","5536":"lowIncomeB","5537":"midIncome","5538":"lowIncomeA","5539":"midIncome","5540":"midIncome","5541":"lowIncomeB","5542":"lowIncomeA","5543":"midIncome","5544":"midIncome","5545":"lowIncomeB","5546":"midIncome","5547":"lowIncomeB","5548":"midIncome","5549":"midIncome","5550":"midIncome","5551":"midIncome","5552":"lowIncomeB","5553":"midIncome","5554":"midIncome","5555":"highIncome","5556":"midIncome","5557":"midIncome","5558":"lowIncomeA","5559":"lowIncomeA","5560":"midIncome","5561":"midIncome","5562":"midIncome","5563":"midIncome","5564":"midIncome","5565":"midIncome","5566":"lowIncomeA","5567":"midIncome","5568":"highIncome","5569":"midIncome","5570":"midIncome","5571":"midIncome","5572":"midIncome","5573":"midIncome","5574":"midIncome","5575":"lowIncomeB","5576":"midIncome","5577":"midIncome","5578":"midIncome","5579":"midIncome","5580":"midIncome","5581":"lowIncomeB","5582":"midIncome","5583":"midIncome","5584":"midIncome","5585":"lowIncomeB","5586":"lowIncomeB","5587":"midIncome","5588":"midIncome","5589":"midIncome","5590":"midIncome","5591":"midIncome","5592":"midIncome","5593":"midIncome","5594":"midIncome","5595":"midIncome","5596":"midIncome","5597":"midIncome","5598":"midIncome","5599":"midIncome","5600":"midIncome","5601":"midIncome","5602":"midIncome","5603":"midIncome","5604":"midIncome","5605":"midIncome","5606":"midIncome","5607":"midIncome","5608":"midIncome","5609":"highIncome","5610":"midIncome","5611":"lowIncomeA","5612":"midIncome","5613":"midIncome","5614":"midIncome","5615":"midIncome","5616":"midIncome","5617":"lowIncomeB","5618":"midIncome","5619":"highIncome","5620":"midIncome","5621":"lowIncomeB","5622":"lowIncomeB","5623":"midIncome","5624":"midIncome","5625":"midIncome","5626":"midIncome","5627":"lowIncomeA","5628":"midIncome","5629":"midIncome","5630":"lowIncomeB","5631":"midIncome","5632":"midIncome","5633":"midIncome","5634":"midIncome","5635":"midIncome","5636":"midIncome","5637":"midIncome","5638":"midIncome","5639":"midIncome","5640":"lowIncomeA","5641":"lowIncomeB","5642":"midIncome","5643":"midIncome","5644":"midIncome","5645":"midIncome","5646":"midIncome","5647":"midIncome","5648":"lowIncomeA","5649":"lowIncomeA","5650":"midIncome","5651":"midIncome","5652":"midIncome","5653":"lowIncomeB","5654":"lowIncomeA","5655":"midIncome","5656":"midIncome","5657":"highIncome","5658":"lowIncomeA","5659":"midIncome","5660":"midIncome","5661":"lowIncomeA","5662":"lowIncomeA","5663":"highIncome","5664":"midIncome","5665":"midIncome","5666":"highIncome","5667":"midIncome","5668":"lowIncomeA","5669":"midIncome","5670":"midIncome","5671":"midIncome","5672":"midIncome","5673":"midIncome","5674":"lowIncomeA","5675":"midIncome","5676":"midIncome","5677":"highIncome","5678":"lowIncomeB","5679":"midIncome","5680":"midIncome","5681":"midIncome","5682":"midIncome","5683":"lowIncomeB","5684":"midIncome","5685":"lowIncomeA","5686":"midIncome","5687":"highIncome","5688":"midIncome","5689":"lowIncomeA","5690":"highIncome","5691":"midIncome","5692":"midIncome","5693":"midIncome","5694":"midIncome","5695":"midIncome","5696":"midIncome","5697":"midIncome","5698":"midIncome","5699":"midIncome","5700":"midIncome","5701":"midIncome","5702":"midIncome","5703":"lowIncomeA","5704":"midIncome","5705":"midIncome","5706":"lowIncomeB","5707":"midIncome","5708":"midIncome","5709":"midIncome","5710":"midIncome","5711":"midIncome","5712":"lowIncomeB","5713":"midIncome","5714":"midIncome","5715":"midIncome","5716":"midIncome","5717":"lowIncomeB","5718":"midIncome","5719":"midIncome","5720":"midIncome","5721":"midIncome","5722":"highIncome","5723":"midIncome","5724":"midIncome","5725":"highIncome","5726":"lowIncomeB","5727":"midIncome","5728":"midIncome","5729":"midIncome","5730":"midIncome","5731":"midIncome","5732":"midIncome","5733":"midIncome","5734":"midIncome","5735":"midIncome","5736":"midIncome","5737":"midIncome","5738":"midIncome","5739":"midIncome","5740":"midIncome","5741":"midIncome","5742":"midIncome","5743":"midIncome","5744":"midIncome","5745":"midIncome","5746":"midIncome","5747":"midIncome","5748":"midIncome","5749":"lowIncomeA","5750":"midIncome","5751":"lowIncomeA","5752":"midIncome","5753":"midIncome","5754":"highIncome","5755":"midIncome","5756":"midIncome","5757":"lowIncomeB","5758":"midIncome","5759":"midIncome","5760":"midIncome","5761":"midIncome","5762":"lowIncomeB","5763":"midIncome","5764":"midIncome","5765":"midIncome","5766":"highIncome","5767":"midIncome","5768":"midIncome","5769":"midIncome","5770":"midIncome","5771":"lowIncomeA","5772":"highIncome","5773":"midIncome","5774":"midIncome","5775":"highIncome","5776":"highIncome","5777":"midIncome","5778":"midIncome","5779":"midIncome","5780":"midIncome","5781":"midIncome","5782":"midIncome","5783":"midIncome","5784":"midIncome","5785":"lowIncomeA","5786":"lowIncomeB","5787":"midIncome","5788":"midIncome","5789":"midIncome","5790":"highIncome","5791":"lowIncomeB","5792":"midIncome","5793":"midIncome","5794":"midIncome","5795":"midIncome","5796":"midIncome","5797":"midIncome","5798":"lowIncomeB","5799":"midIncome","5800":"midIncome","5801":"lowIncomeA","5802":"lowIncomeA","5803":"midIncome","5804":"lowIncomeB","5805":"midIncome","5806":"midIncome","5807":"midIncome","5808":"midIncome","5809":"highIncome","5810":"midIncome","5811":"midIncome","5812":"midIncome","5813":"midIncome","5814":"midIncome","5815":"midIncome","5816":"midIncome","5817":"lowIncomeA","5818":"midIncome","5819":"midIncome","5820":"midIncome","5821":"midIncome","5822":"midIncome","5823":"lowIncomeA","5824":"lowIncomeA","5825":"midIncome","5826":"midIncome","5827":"midIncome","5828":"highIncome","5829":"midIncome","5830":"midIncome","5831":"midIncome","5832":"midIncome","5833":"midIncome","5834":"highIncome","5835":"midIncome","5836":"midIncome","5837":"highIncome","5838":"midIncome","5839":"lowIncomeB","5840":"midIncome","5841":"midIncome","5842":"midIncome","5843":"lowIncomeA","5844":"lowIncomeB","5845":"highIncome","5846":"midIncome","5847":"midIncome","5848":"midIncome","5849":"lowIncomeA","5850":"midIncome","5851":"lowIncomeA","5852":"midIncome","5853":"midIncome","5854":"midIncome","5855":"midIncome","5856":"midIncome","5857":"lowIncomeA","5858":"midIncome","5859":"midIncome","5860":"midIncome","5861":"midIncome","5862":"lowIncomeA","5863":"highIncome","5864":"midIncome","5865":"midIncome","5866":"midIncome","5867":"highIncome","5868":"midIncome","5869":"midIncome","5870":"midIncome","5871":"midIncome","5872":"midIncome","5873":"midIncome","5874":"lowIncomeA","5875":"midIncome","5876":"lowIncomeB","5877":"midIncome","5878":"lowIncomeA","5879":"midIncome","5880":"lowIncomeA","5881":"midIncome","5882":"midIncome","5883":"midIncome","5884":"midIncome","5885":"lowIncomeB","5886":"midIncome","5887":"midIncome","5888":"midIncome","5889":"midIncome","5890":"midIncome","5891":"lowIncomeA","5892":"highIncome","5893":"lowIncomeB","5894":"midIncome","5895":"midIncome","5896":"lowIncomeB","5897":"midIncome","5898":"highIncome","5899":"midIncome","5900":"midIncome","5901":"midIncome","5902":"midIncome","5903":"midIncome","5904":"midIncome","5905":"midIncome","5906":"midIncome","5907":"midIncome","5908":"midIncome","5909":"midIncome","5910":"midIncome","5911":"midIncome","5912":"midIncome","5913":"lowIncomeA","5914":"midIncome","5915":"lowIncomeA","5916":"midIncome","5917":"midIncome","5918":"midIncome","5919":"midIncome","5920":"midIncome","5921":"midIncome","5922":"midIncome","5923":"lowIncomeB","5924":"midIncome","5925":"lowIncomeA","5926":"midIncome","5927":"lowIncomeA","5928":"midIncome","5929":"midIncome","5930":"midIncome","5931":"midIncome","5932":"lowIncomeB","5933":"lowIncomeA","5934":"midIncome","5935":"midIncome","5936":"midIncome","5937":"midIncome","5938":"midIncome","5939":"midIncome","5940":"midIncome","5941":"midIncome","5942":"midIncome","5943":"midIncome","5944":"midIncome","5945":"midIncome","5946":"midIncome","5947":"midIncome","5948":"highIncome","5949":"midIncome","5950":"midIncome","5951":"midIncome","5952":"lowIncomeA","5953":"midIncome","5954":"lowIncomeA","5955":"midIncome","5956":"lowIncomeB","5957":"midIncome","5958":"midIncome","5959":"midIncome","5960":"lowIncomeA","5961":"lowIncomeB","5962":"midIncome","5963":"midIncome","5964":"midIncome","5965":"midIncome","5966":"lowIncomeB","5967":"lowIncomeA","5968":"highIncome","5969":"lowIncomeA","5970":"midIncome","5971":"midIncome","5972":"midIncome","5973":"midIncome","5974":"midIncome","5975":"midIncome","5976":"lowIncomeB","5977":"midIncome","5978":"midIncome","5979":"midIncome","5980":"midIncome","5981":"midIncome","5982":"midIncome","5983":"midIncome","5984":"lowIncomeA","5985":"highIncome","5986":"highIncome","5987":"lowIncomeA","5988":"midIncome","5989":"midIncome","5990":"midIncome","5991":"midIncome","5992":"midIncome","5993":"midIncome","5994":"midIncome","5995":"midIncome","5996":"midIncome","5997":"lowIncomeB","5998":"lowIncomeA","5999":"midIncome","6000":"highIncome","6001":"midIncome","6002":"lowIncomeB","6003":"midIncome","6004":"midIncome","6005":"midIncome","6006":"midIncome","6007":"midIncome","6008":"highIncome","6009":"lowIncomeA","6010":"midIncome","6011":"midIncome","6012":"highIncome","6013":"midIncome","6014":"lowIncomeB","6015":"midIncome","6016":"midIncome","6017":"midIncome","6018":"midIncome","6019":"midIncome","6020":"lowIncomeB","6021":"midIncome","6022":"midIncome","6023":"lowIncomeB","6024":"midIncome","6025":"midIncome","6026":"midIncome","6027":"highIncome","6028":"highIncome","6029":"lowIncomeA","6030":"midIncome","6031":"lowIncomeB","6032":"lowIncomeA","6033":"lowIncomeB","6034":"midIncome","6035":"midIncome","6036":"midIncome","6037":"midIncome","6038":"midIncome","6039":"midIncome","6040":"lowIncomeA","6041":"lowIncomeB","6042":"midIncome","6043":"midIncome","6044":"lowIncomeB","6045":"lowIncomeA","6046":"midIncome","6047":"midIncome","6048":"midIncome","6049":"midIncome","6050":"midIncome","6051":"lowIncomeA","6052":"midIncome","6053":"highIncome","6054":"lowIncomeB","6055":"midIncome","6056":"midIncome","6057":"midIncome","6058":"lowIncomeB","6059":"lowIncomeA","6060":"midIncome","6061":"midIncome","6062":"midIncome","6063":"midIncome","6064":"highIncome","6065":"highIncome","6066":"highIncome","6067":"highIncome","6068":"highIncome","6069":"highIncome","6070":"midIncome","6071":"midIncome","6072":"highIncome","6073":"highIncome","6074":"midIncome","6075":"highIncome","6076":"highIncome","6077":"highIncome","6078":"highIncome","6079":"highIncome","6080":"highIncome","6081":"midIncome","6082":"highIncome","6083":"highIncome","6084":"highIncome","6085":"highIncome","6086":"highIncome","6087":"highIncome","6088":"highIncome","6089":"highIncome","6090":"highIncome","6091":"highIncome","6092":"highIncome","6093":"highIncome","6094":"highIncome","6095":"highIncome","6096":"midIncome","6097":"highIncome","6098":"highIncome","6099":"highIncome","6100":"midIncome","6101":"highIncome","6102":"midIncome","6103":"highIncome","6104":"midIncome","6105":"highIncome","6106":"midIncome","6107":"highIncome","6108":"midIncome","6109":"midIncome","6110":"highIncome","6111":"midIncome","6112":"midIncome","6113":"highIncome","6114":"highIncome","6115":"highIncome","6116":"midIncome","6117":"highIncome","6118":"highIncome","6119":"highIncome","6120":"highIncome","6121":"highIncome","6122":"highIncome","6123":"highIncome","6124":"highIncome","6125":"highIncome","6126":"highIncome","6127":"highIncome","6128":"highIncome","6129":"highIncome","6130":"highIncome","6131":"midIncome","6132":"highIncome","6133":"lowIncomeB","6134":"lowIncomeA","6135":"highIncome","6136":"midIncome","6137":"midIncome","6138":"midIncome","6139":"midIncome","6140":"highIncome","6141":"lowIncomeA","6142":"lowIncomeB","6143":"midIncome","6144":"highIncome","6145":"midIncome","6146":"midIncome","6147":"midIncome","6148":"midIncome","6149":"lowIncomeB","6150":"midIncome","6151":"midIncome","6152":"highIncome","6153":"midIncome","6154":"midIncome","6155":"midIncome","6156":"midIncome","6157":"midIncome","6158":"midIncome","6159":"midIncome","6160":"highIncome","6161":"lowIncomeB","6162":"midIncome","6163":"midIncome","6164":"lowIncomeA","6165":"midIncome","6166":"midIncome","6167":"midIncome","6168":"midIncome","6169":"midIncome","6170":"lowIncomeA","6171":"midIncome","6172":"midIncome","6173":"midIncome","6174":"lowIncomeB","6175":"lowIncomeB","6176":"midIncome","6177":"midIncome","6178":"midIncome","6179":"midIncome","6180":"highIncome","6181":"lowIncomeA","6182":"midIncome","6183":"midIncome","6184":"lowIncomeB","6185":"lowIncomeB","6186":"highIncome","6187":"lowIncomeB","6188":"highIncome","6189":"midIncome","6190":"midIncome","6191":"lowIncomeB","6192":"midIncome","6193":"midIncome","6194":"midIncome","6195":"lowIncomeA","6196":"midIncome","6197":"midIncome","6198":"midIncome","6199":"lowIncomeB","6200":"midIncome","6201":"midIncome","6202":"midIncome","6203":"highIncome","6204":"highIncome","6205":"lowIncomeA","6206":"midIncome","6207":"midIncome","6208":"midIncome","6209":"lowIncomeA","6210":"lowIncomeB","6211":"midIncome","6212":"highIncome","6213":"highIncome","6214":"midIncome","6215":"highIncome","6216":"midIncome","6217":"lowIncomeB","6218":"midIncome","6219":"midIncome","6220":"midIncome","6221":"midIncome","6222":"midIncome","6223":"midIncome","6224":"highIncome","6225":"midIncome","6226":"midIncome","6227":"midIncome","6228":"midIncome","6229":"highIncome","6230":"midIncome","6231":"lowIncomeA","6232":"midIncome","6233":"lowIncomeB","6234":"midIncome","6235":"midIncome","6236":"midIncome","6237":"lowIncomeA","6238":"midIncome","6239":"midIncome","6240":"lowIncomeB","6241":"midIncome","6242":"midIncome","6243":"midIncome","6244":"midIncome","6245":"midIncome","6246":"highIncome","6247":"midIncome","6248":"midIncome","6249":"midIncome","6250":"midIncome","6251":"midIncome","6252":"lowIncomeA","6253":"midIncome","6254":"highIncome","6255":"midIncome","6256":"midIncome","6257":"midIncome","6258":"midIncome","6259":"midIncome","6260":"midIncome","6261":"lowIncomeA","6262":"midIncome","6263":"midIncome","6264":"lowIncomeB","6265":"lowIncomeB","6266":"highIncome","6267":"midIncome","6268":"midIncome","6269":"lowIncomeA","6270":"midIncome","6271":"midIncome","6272":"highIncome","6273":"midIncome","6274":"midIncome","6275":"midIncome","6276":"highIncome","6277":"midIncome","6278":"midIncome","6279":"highIncome","6280":"midIncome","6281":"highIncome","6282":"lowIncomeA","6283":"midIncome","6284":"midIncome","6285":"midIncome","6286":"midIncome","6287":"midIncome","6288":"midIncome","6289":"midIncome","6290":"midIncome","6291":"midIncome","6292":"midIncome","6293":"lowIncomeA","6294":"midIncome","6295":"midIncome","6296":"midIncome","6297":"midIncome","6298":"midIncome","6299":"midIncome","6300":"midIncome","6301":"lowIncomeA","6302":"midIncome","6303":"midIncome","6304":"lowIncomeB","6305":"midIncome","6306":"midIncome","6307":"lowIncomeB","6308":"midIncome","6309":"midIncome","6310":"midIncome","6311":"lowIncomeA","6312":"highIncome","6313":"midIncome","6314":"midIncome","6315":"midIncome","6316":"midIncome","6317":"midIncome","6318":"midIncome","6319":"highIncome","6320":"midIncome","6321":"highIncome","6322":"lowIncomeA","6323":"lowIncomeA","6324":"lowIncomeB","6325":"midIncome","6326":"midIncome","6327":"midIncome","6328":"highIncome","6329":"lowIncomeB","6330":"midIncome","6331":"lowIncomeA","6332":"midIncome","6333":"midIncome","6334":"midIncome","6335":"midIncome","6336":"midIncome","6337":"midIncome","6338":"midIncome","6339":"midIncome","6340":"midIncome","6341":"lowIncomeB","6342":"midIncome","6343":"midIncome","6344":"midIncome","6345":"midIncome","6346":"midIncome","6347":"lowIncomeB","6348":"lowIncomeA","6349":"midIncome","6350":"midIncome","6351":"midIncome","6352":"midIncome","6353":"midIncome","6354":"midIncome","6355":"midIncome","6356":"midIncome","6357":"midIncome","6358":"midIncome","6359":"midIncome","6360":"highIncome","6361":"highIncome","6362":"midIncome","6363":"midIncome","6364":"midIncome","6365":"highIncome","6366":"midIncome","6367":"midIncome","6368":"midIncome","6369":"lowIncomeB","6370":"midIncome","6371":"highIncome","6372":"midIncome","6373":"lowIncomeA","6374":"lowIncomeA","6375":"midIncome","6376":"midIncome","6377":"midIncome","6378":"midIncome","6379":"midIncome","6380":"midIncome","6381":"midIncome","6382":"lowIncomeB","6383":"midIncome","6384":"midIncome","6385":"lowIncomeB","6386":"lowIncomeA","6387":"lowIncomeA","6388":"midIncome","6389":"midIncome","6390":"midIncome","6391":"midIncome","6392":"midIncome","6393":"midIncome","6394":"midIncome","6395":"midIncome","6396":"lowIncomeA","6397":"midIncome","6398":"midIncome","6399":"lowIncomeB","6400":"midIncome","6401":"midIncome","6402":"highIncome","6403":"midIncome","6404":"midIncome","6405":"highIncome","6406":"midIncome","6407":"midIncome","6408":"midIncome","6409":"midIncome","6410":"midIncome","6411":"midIncome","6412":"midIncome","6413":"midIncome","6414":"midIncome","6415":"midIncome","6416":"lowIncomeA","6417":"midIncome","6418":"midIncome","6419":"lowIncomeA","6420":"midIncome","6421":"midIncome","6422":"midIncome","6423":"highIncome","6424":"midIncome","6425":"midIncome","6426":"lowIncomeB","6427":"midIncome","6428":"midIncome","6429":"midIncome","6430":"highIncome","6431":"midIncome","6432":"midIncome","6433":"midIncome","6434":"midIncome","6435":"midIncome","6436":"highIncome","6437":"midIncome","6438":"midIncome","6439":"midIncome","6440":"midIncome","6441":"lowIncomeB","6442":"lowIncomeA","6443":"highIncome","6444":"midIncome","6445":"midIncome","6446":"lowIncomeA","6447":"midIncome","6448":"midIncome","6449":"midIncome","6450":"midIncome","6451":"midIncome","6452":"highIncome","6453":"midIncome","6454":"lowIncomeB","6455":"midIncome","6456":"midIncome","6457":"midIncome","6458":"midIncome","6459":"midIncome","6460":"lowIncomeA","6461":"highIncome","6462":"midIncome","6463":"midIncome","6464":"lowIncomeB","6465":"lowIncomeA","6466":"highIncome","6467":"lowIncomeB","6468":"midIncome","6469":"midIncome","6470":"lowIncomeA","6471":"midIncome","6472":"lowIncomeB","6473":"midIncome","6474":"midIncome","6475":"midIncome","6476":"midIncome","6477":"highIncome","6478":"midIncome","6479":"midIncome","6480":"midIncome","6481":"midIncome","6482":"highIncome","6483":"lowIncomeA","6484":"highIncome","6485":"midIncome","6486":"midIncome","6487":"midIncome","6488":"midIncome","6489":"lowIncomeA","6490":"lowIncomeB","6491":"midIncome","6492":"lowIncomeA","6493":"lowIncomeA","6494":"midIncome","6495":"midIncome","6496":"highIncome","6497":"midIncome","6498":"midIncome","6499":"midIncome","6500":"midIncome","6501":"lowIncomeA","6502":"lowIncomeB","6503":"midIncome","6504":"midIncome","6505":"lowIncomeB","6506":"midIncome","6507":"midIncome","6508":"highIncome","6509":"midIncome","6510":"midIncome","6511":"midIncome","6512":"lowIncomeB","6513":"midIncome","6514":"highIncome","6515":"midIncome","6516":"midIncome","6517":"midIncome","6518":"lowIncomeB","6519":"midIncome","6520":"midIncome","6521":"midIncome","6522":"midIncome","6523":"midIncome","6524":"highIncome","6525":"highIncome","6526":"highIncome","6527":"lowIncomeB","6528":"midIncome","6529":"midIncome","6530":"midIncome","6531":"midIncome","6532":"lowIncomeA","6533":"midIncome","6534":"midIncome","6535":"lowIncomeB","6536":"midIncome","6537":"midIncome","6538":"midIncome","6539":"midIncome","6540":"lowIncomeB","6541":"lowIncomeA","6542":"midIncome","6543":"midIncome","6544":"midIncome","6545":"lowIncomeA","6546":"highIncome","6547":"midIncome","6548":"midIncome","6549":"lowIncomeB","6550":"lowIncomeA","6551":"highIncome","6552":"midIncome","6553":"lowIncomeB","6554":"lowIncomeA","6555":"midIncome","6556":"midIncome","6557":"midIncome","6558":"midIncome","6559":"lowIncomeB","6560":"midIncome","6561":"midIncome","6562":"lowIncomeA","6563":"highIncome","6564":"midIncome","6565":"midIncome","6566":"midIncome","6567":"midIncome","6568":"midIncome","6569":"midIncome","6570":"midIncome","6571":"highIncome","6572":"highIncome","6573":"midIncome","6574":"midIncome","6575":"highIncome","6576":"midIncome","6577":"midIncome","6578":"midIncome","6579":"midIncome","6580":"midIncome","6581":"lowIncomeA","6582":"midIncome","6583":"midIncome","6584":"midIncome","6585":"lowIncomeB","6586":"lowIncomeA","6587":"midIncome","6588":"midIncome","6589":"highIncome","6590":"midIncome","6591":"midIncome","6592":"midIncome","6593":"lowIncomeA","6594":"highIncome","6595":"lowIncomeA","6596":"midIncome","6597":"midIncome","6598":"midIncome","6599":"highIncome","6600":"lowIncomeB","6601":"midIncome","6602":"midIncome","6603":"midIncome","6604":"midIncome","6605":"midIncome","6606":"midIncome","6607":"midIncome","6608":"midIncome","6609":"midIncome","6610":"highIncome","6611":"midIncome","6612":"midIncome","6613":"midIncome","6614":"lowIncomeA","6615":"midIncome","6616":"midIncome","6617":"lowIncomeA","6618":"lowIncomeB","6619":"midIncome","6620":"midIncome","6621":"midIncome","6622":"midIncome","6623":"midIncome","6624":"midIncome","6625":"midIncome","6626":"midIncome","6627":"midIncome","6628":"midIncome","6629":"midIncome","6630":"midIncome","6631":"midIncome","6632":"midIncome","6633":"midIncome","6634":"midIncome","6635":"highIncome","6636":"midIncome","6637":"midIncome","6638":"midIncome","6639":"midIncome","6640":"midIncome","6641":"midIncome","6642":"midIncome","6643":"midIncome","6644":"midIncome","6645":"midIncome","6646":"midIncome","6647":"lowIncomeB","6648":"midIncome","6649":"midIncome","6650":"midIncome","6651":"highIncome","6652":"midIncome","6653":"midIncome","6654":"lowIncomeA","6655":"midIncome","6656":"highIncome","6657":"lowIncomeA","6658":"midIncome","6659":"midIncome","6660":"midIncome","6661":"midIncome","6662":"midIncome","6663":"midIncome","6664":"highIncome","6665":"lowIncomeA","6666":"midIncome","6667":"midIncome","6668":"midIncome","6669":"midIncome","6670":"lowIncomeB","6671":"lowIncomeB","6672":"midIncome","6673":"midIncome","6674":"midIncome","6675":"midIncome","6676":"lowIncomeA","6677":"midIncome","6678":"highIncome","6679":"highIncome","6680":"highIncome","6681":"highIncome","6682":"highIncome","6683":"midIncome","6684":"midIncome","6685":"midIncome","6686":"midIncome","6687":"midIncome","6688":"midIncome","6689":"midIncome","6690":"midIncome","6691":"midIncome","6692":"midIncome","6693":"midIncome","6694":"midIncome","6695":"midIncome","6696":"lowIncomeB","6697":"lowIncomeB","6698":"midIncome","6699":"midIncome","6700":"midIncome","6701":"midIncome","6702":"lowIncomeA","6703":"midIncome","6704":"highIncome","6705":"midIncome","6706":"lowIncomeA","6707":"lowIncomeB","6708":"midIncome","6709":"midIncome","6710":"midIncome","6711":"lowIncomeB","6712":"midIncome","6713":"highIncome","6714":"midIncome","6715":"midIncome","6716":"highIncome","6717":"midIncome","6718":"midIncome","6719":"midIncome","6720":"lowIncomeA","6721":"highIncome","6722":"midIncome","6723":"midIncome","6724":"lowIncomeB","6725":"midIncome","6726":"midIncome","6727":"midIncome","6728":"lowIncomeB","6729":"lowIncomeB","6730":"midIncome","6731":"midIncome","6732":"midIncome","6733":"midIncome","6734":"midIncome","6735":"midIncome","6736":"midIncome","6737":"midIncome","6738":"midIncome","6739":"highIncome","6740":"lowIncomeA","6741":"lowIncomeB","6742":"midIncome","6743":"midIncome","6744":"highIncome","6745":"midIncome","6746":"midIncome","6747":"lowIncomeA","6748":"midIncome","6749":"highIncome","6750":"lowIncomeA","6751":"midIncome","6752":"midIncome","6753":"midIncome","6754":"lowIncomeA","6755":"midIncome","6756":"lowIncomeA","6757":"midIncome","6758":"midIncome","6759":"lowIncomeA","6760":"midIncome","6761":"midIncome","6762":"midIncome","6763":"lowIncomeA","6764":"midIncome","6765":"midIncome","6766":"midIncome","6767":"midIncome","6768":"midIncome","6769":"midIncome","6770":"midIncome","6771":"lowIncomeA","6772":"lowIncomeB","6773":"lowIncomeA","6774":"midIncome","6775":"lowIncomeA","6776":"lowIncomeB","6777":"highIncome","6778":"highIncome","6779":"lowIncomeB","6780":"midIncome","6781":"midIncome","6782":"midIncome","6783":"midIncome","6784":"midIncome","6785":"midIncome","6786":"midIncome","6787":"highIncome","6788":"midIncome","6789":"highIncome","6790":"lowIncomeB","6791":"midIncome","6792":"lowIncomeB","6793":"highIncome","6794":"midIncome","6795":"midIncome","6796":"midIncome","6797":"midIncome","6798":"midIncome","6799":"midIncome","6800":"midIncome","6801":"lowIncomeA","6802":"lowIncomeB","6803":"midIncome","6804":"midIncome","6805":"lowIncomeB","6806":"midIncome","6807":"midIncome","6808":"midIncome","6809":"lowIncomeA","6810":"midIncome","6811":"lowIncomeB","6812":"midIncome","6813":"midIncome","6814":"midIncome","6815":"midIncome","6816":"lowIncomeA","6817":"midIncome","6818":"midIncome","6819":"midIncome","6820":"highIncome","6821":"midIncome","6822":"midIncome","6823":"midIncome","6824":"midIncome","6825":"midIncome","6826":"midIncome","6827":"midIncome","6828":"lowIncomeA","6829":"lowIncomeA","6830":"midIncome","6831":"midIncome","6832":"midIncome","6833":"midIncome","6834":"midIncome","6835":"midIncome","6836":"midIncome","6837":"midIncome","6838":"midIncome","6839":"midIncome","6840":"midIncome","6841":"midIncome","6842":"lowIncomeB","6843":"highIncome","6844":"lowIncomeB","6845":"midIncome","6846":"midIncome","6847":"midIncome","6848":"midIncome","6849":"midIncome","6850":"midIncome","6851":"midIncome","6852":"highIncome","6853":"midIncome","6854":"highIncome","6855":"midIncome","6856":"highIncome","6857":"midIncome","6858":"midIncome","6859":"midIncome","6860":"midIncome","6861":"midIncome","6862":"midIncome","6863":"midIncome","6864":"midIncome","6865":"lowIncomeA","6866":"midIncome","6867":"midIncome","6868":"lowIncomeA","6869":"midIncome","6870":"midIncome","6871":"midIncome","6872":"midIncome","6873":"midIncome","6874":"lowIncomeA","6875":"midIncome","6876":"midIncome","6877":"midIncome","6878":"highIncome","6879":"midIncome","6880":"midIncome","6881":"midIncome","6882":"highIncome","6883":"midIncome","6884":"highIncome","6885":"midIncome","6886":"midIncome","6887":"midIncome","6888":"highIncome","6889":"midIncome","6890":"lowIncomeB","6891":"midIncome","6892":"lowIncomeA","6893":"midIncome","6894":"midIncome","6895":"lowIncomeA","6896":"midIncome","6897":"midIncome","6898":"midIncome","6899":"lowIncomeB","6900":"lowIncomeA","6901":"midIncome","6902":"midIncome","6903":"midIncome","6904":"highIncome","6905":"midIncome","6906":"midIncome","6907":"lowIncomeA","6908":"midIncome","6909":"midIncome","6910":"midIncome","6911":"highIncome","6912":"midIncome","6913":"lowIncomeB","6914":"highIncome","6915":"midIncome","6916":"lowIncomeB","6917":"midIncome","6918":"midIncome","6919":"midIncome","6920":"midIncome","6921":"lowIncomeB","6922":"lowIncomeB","6923":"lowIncomeA","6924":"midIncome","6925":"midIncome","6926":"midIncome","6927":"midIncome","6928":"midIncome","6929":"highIncome","6930":"lowIncomeB","6931":"midIncome","6932":"midIncome","6933":"midIncome","6934":"midIncome","6935":"midIncome","6936":"midIncome","6937":"midIncome","6938":"highIncome","6939":"midIncome","6940":"highIncome","6941":"midIncome","6942":"midIncome","6943":"midIncome","6944":"lowIncomeA","6945":"midIncome","6946":"midIncome","6947":"lowIncomeB","6948":"lowIncomeB","6949":"midIncome","6950":"lowIncomeA","6951":"lowIncomeA","6952":"midIncome","6953":"midIncome","6954":"lowIncomeB","6955":"lowIncomeA","6956":"midIncome","6957":"midIncome","6958":"midIncome","6959":"midIncome","6960":"midIncome","6961":"midIncome","6962":"highIncome","6963":"midIncome","6964":"highIncome","6965":"midIncome","6966":"lowIncomeB","6967":"midIncome","6968":"lowIncomeB","6969":"lowIncomeB","6970":"midIncome","6971":"midIncome","6972":"midIncome","6973":"midIncome","6974":"midIncome","6975":"midIncome","6976":"midIncome","6977":"lowIncomeB","6978":"midIncome","6979":"midIncome","6980":"midIncome","6981":"midIncome","6982":"midIncome","6983":"lowIncomeA","6984":"midIncome","6985":"highIncome","6986":"midIncome","6987":"midIncome","6988":"highIncome","6989":"lowIncomeB","6990":"midIncome","6991":"midIncome","6992":"midIncome","6993":"midIncome","6994":"highIncome","6995":"highIncome","6996":"midIncome","6997":"midIncome","6998":"midIncome","6999":"lowIncomeB","7000":"lowIncomeB","7001":"midIncome","7002":"highIncome","7003":"midIncome","7004":"midIncome","7005":"midIncome","7006":"midIncome","7007":"lowIncomeB","7008":"lowIncomeA","7009":"midIncome","7010":"midIncome","7011":"lowIncomeA","7012":"midIncome","7013":"lowIncomeB","7014":"midIncome","7015":"midIncome","7016":"midIncome","7017":"midIncome","7018":"midIncome","7019":"lowIncomeB","7020":"midIncome","7021":"highIncome","7022":"midIncome","7023":"midIncome","7024":"midIncome","7025":"midIncome","7026":"midIncome","7027":"highIncome","7028":"highIncome","7029":"midIncome","7030":"midIncome","7031":"lowIncomeB","7032":"highIncome","7033":"highIncome","7034":"midIncome","7035":"midIncome","7036":"midIncome","7037":"lowIncomeB","7038":"midIncome","7039":"lowIncomeA","7040":"lowIncomeA","7041":"midIncome","7042":"midIncome","7043":"midIncome","7044":"midIncome","7045":"highIncome","7046":"midIncome","7047":"midIncome","7048":"midIncome","7049":"midIncome","7050":"midIncome","7051":"midIncome","7052":"midIncome","7053":"midIncome","7054":"midIncome","7055":"lowIncomeB","7056":"lowIncomeA","7057":"midIncome","7058":"midIncome","7059":"lowIncomeB","7060":"lowIncomeB","7061":"lowIncomeA","7062":"lowIncomeB","7063":"lowIncomeA","7064":"lowIncomeA","7065":"lowIncomeB","7066":"lowIncomeB","7067":"lowIncomeB","7068":"lowIncomeB","7069":"lowIncomeB","7070":"lowIncomeB","7071":"lowIncomeB","7072":"lowIncomeB","7073":"lowIncomeB","7074":"lowIncomeA","7075":"lowIncomeB","7076":"lowIncomeA","7077":"lowIncomeB","7078":"lowIncomeA","7079":"lowIncomeB","7080":"lowIncomeA","7081":"lowIncomeA","7082":"lowIncomeB","7083":"lowIncomeB","7084":"lowIncomeA","7085":"lowIncomeA","7086":"lowIncomeB","7087":"lowIncomeA","7088":"lowIncomeA","7089":"lowIncomeB","7090":"lowIncomeA","7091":"lowIncomeB","7092":"lowIncomeA","7093":"lowIncomeB","7094":"lowIncomeA","7095":"lowIncomeB","7096":"lowIncomeA","7097":"lowIncomeA","7098":"midIncome","7099":"lowIncomeB","7100":"lowIncomeA","7101":"lowIncomeB","7102":"lowIncomeA","7103":"lowIncomeB","7104":"midIncome","7105":"lowIncomeB","7106":"lowIncomeA","7107":"lowIncomeA","7108":"lowIncomeB","7109":"lowIncomeA","7110":"midIncome","7111":"lowIncomeB","7112":"lowIncomeA","7113":"midIncome","7114":"lowIncomeA","7115":"midIncome","7116":"lowIncomeA","7117":"lowIncomeB","7118":"midIncome","7119":"lowIncomeA","7120":"lowIncomeA","7121":"lowIncomeB","7122":"lowIncomeA","7123":"midIncome","7124":"lowIncomeA","7125":"lowIncomeA","7126":"lowIncomeA","7127":"lowIncomeA","7128":"lowIncomeB","7129":"lowIncomeA","7130":"lowIncomeA","7131":"lowIncomeA","7132":"lowIncomeB","7133":"midIncome","7134":"midIncome","7135":"lowIncomeA","7136":"lowIncomeB","7137":"lowIncomeB","7138":"lowIncomeA","7139":"lowIncomeB","7140":"lowIncomeB","7141":"lowIncomeB","7142":"lowIncomeA","7143":"lowIncomeB","7144":"midIncome","7145":"lowIncomeA","7146":"midIncome","7147":"lowIncomeB","7148":"lowIncomeA","7149":"midIncome","7150":"lowIncomeA","7151":"lowIncomeA","7152":"lowIncomeA","7153":"lowIncomeA","7154":"lowIncomeA","7155":"lowIncomeA","7156":"lowIncomeA","7157":"lowIncomeA","7158":"lowIncomeA","7159":"lowIncomeB","7160":"lowIncomeA","7161":"lowIncomeA","7162":"lowIncomeA","7163":"lowIncomeB","7164":"lowIncomeA","7165":"lowIncomeA","7166":"lowIncomeB","7167":"lowIncomeA","7168":"lowIncomeB","7169":"lowIncomeA","7170":"lowIncomeB","7171":"lowIncomeB","7172":"lowIncomeA","7173":"lowIncomeB","7174":"lowIncomeA","7175":"midIncome","7176":"lowIncomeB","7177":"lowIncomeA","7178":"lowIncomeB","7179":"lowIncomeB","7180":"midIncome","7181":"lowIncomeB","7182":"lowIncomeA","7183":"lowIncomeA","7184":"lowIncomeB","7185":"lowIncomeB","7186":"lowIncomeA","7187":"lowIncomeA","7188":"midIncome","7189":"lowIncomeA","7190":"lowIncomeA","7191":"lowIncomeB","7192":"midIncome","7193":"lowIncomeB","7194":"lowIncomeB","7195":"lowIncomeA","7196":"lowIncomeB","7197":"lowIncomeB","7198":"lowIncomeA","7199":"lowIncomeB","7200":"lowIncomeB","7201":"lowIncomeA","7202":"lowIncomeB","7203":"lowIncomeB","7204":"lowIncomeA","7205":"lowIncomeA","7206":"lowIncomeB","7207":"lowIncomeB","7208":"lowIncomeA","7209":"lowIncomeB","7210":"lowIncomeB","7211":"lowIncomeB","7212":"lowIncomeB","7213":"lowIncomeA","7214":"lowIncomeA","7215":"lowIncomeA","7216":"lowIncomeB","7217":"lowIncomeB","7218":"midIncome","7219":"lowIncomeA","7220":"lowIncomeA","7221":"midIncome","7222":"lowIncomeA","7223":"lowIncomeA","7224":"midIncome","7225":"midIncome","7226":"lowIncomeA","7227":"lowIncomeB","7228":"midIncome","7229":"lowIncomeA","7230":"lowIncomeA","7231":"lowIncomeA","7232":"lowIncomeB","7233":"lowIncomeA","7234":"lowIncomeB","7235":"lowIncomeB","7236":"lowIncomeB","7237":"lowIncomeA","7238":"midIncome","7239":"lowIncomeA","7240":"lowIncomeA","7241":"lowIncomeB","7242":"lowIncomeB","7243":"lowIncomeA","7244":"lowIncomeA","7245":"lowIncomeA","7246":"lowIncomeA","7247":"lowIncomeB","7248":"lowIncomeA","7249":"lowIncomeA","7250":"lowIncomeA","7251":"lowIncomeB","7252":"lowIncomeA","7253":"lowIncomeA","7254":"lowIncomeA","7255":"midIncome","7256":"lowIncomeA","7257":"midIncome","7258":"lowIncomeB","7259":"lowIncomeA","7260":"lowIncomeB","7261":"lowIncomeA","7262":"midIncome","7263":"lowIncomeA","7264":"lowIncomeA","7265":"lowIncomeB","7266":"lowIncomeA","7267":"lowIncomeB","7268":"lowIncomeA","7269":"lowIncomeB","7270":"lowIncomeB","7271":"lowIncomeB","7272":"lowIncomeB","7273":"lowIncomeA","7274":"midIncome","7275":"midIncome","7276":"lowIncomeA","7277":"lowIncomeB","7278":"lowIncomeA","7279":"lowIncomeB","7280":"lowIncomeB","7281":"lowIncomeB","7282":"midIncome","7283":"lowIncomeB","7284":"midIncome","7285":"lowIncomeB","7286":"lowIncomeB","7287":"lowIncomeA","7288":"lowIncomeA","7289":"lowIncomeB","7290":"lowIncomeA","7291":"lowIncomeB","7292":"lowIncomeA","7293":"lowIncomeB","7294":"lowIncomeB","7295":"lowIncomeB","7296":"midIncome","7297":"lowIncomeB","7298":"lowIncomeA","7299":"lowIncomeA","7300":"lowIncomeB","7301":"lowIncomeA","7302":"lowIncomeB","7303":"midIncome","7304":"midIncome","7305":"lowIncomeA","7306":"midIncome","7307":"lowIncomeB","7308":"lowIncomeA","7309":"lowIncomeA","7310":"lowIncomeA","7311":"lowIncomeA","7312":"lowIncomeB","7313":"lowIncomeA","7314":"lowIncomeB","7315":"lowIncomeA","7316":"lowIncomeA","7317":"lowIncomeA","7318":"lowIncomeA","7319":"lowIncomeB","7320":"lowIncomeA","7321":"lowIncomeB","7322":"lowIncomeA","7323":"lowIncomeA","7324":"lowIncomeB","7325":"lowIncomeA","7326":"lowIncomeA","7327":"lowIncomeA","7328":"lowIncomeA","7329":"midIncome","7330":"lowIncomeB","7331":"lowIncomeA","7332":"lowIncomeA","7333":"lowIncomeA","7334":"lowIncomeB","7335":"lowIncomeA","7336":"lowIncomeB","7337":"lowIncomeA","7338":"lowIncomeB","7339":"lowIncomeA","7340":"lowIncomeA","7341":"midIncome","7342":"lowIncomeA","7343":"lowIncomeA","7344":"lowIncomeA","7345":"lowIncomeA","7346":"midIncome","7347":"lowIncomeB","7348":"lowIncomeA","7349":"midIncome","7350":"midIncome","7351":"lowIncomeB","7352":"lowIncomeA","7353":"lowIncomeB","7354":"midIncome","7355":"lowIncomeA","7356":"lowIncomeA","7357":"lowIncomeA","7358":"midIncome","7359":"lowIncomeA","7360":"lowIncomeA","7361":"lowIncomeB","7362":"lowIncomeB","7363":"lowIncomeA","7364":"lowIncomeA","7365":"lowIncomeB","7366":"lowIncomeB","7367":"lowIncomeA","7368":"lowIncomeB","7369":"lowIncomeA","7370":"lowIncomeA","7371":"lowIncomeA","7372":"lowIncomeA","7373":"lowIncomeB","7374":"lowIncomeB","7375":"lowIncomeA","7376":"lowIncomeB","7377":"lowIncomeA","7378":"lowIncomeA","7379":"lowIncomeB","7380":"lowIncomeA","7381":"lowIncomeB","7382":"lowIncomeA","7383":"lowIncomeA","7384":"lowIncomeB","7385":"midIncome","7386":"lowIncomeA","7387":"lowIncomeA","7388":"lowIncomeA","7389":"lowIncomeA","7390":"lowIncomeA","7391":"lowIncomeA","7392":"lowIncomeB","7393":"lowIncomeA","7394":"lowIncomeA","7395":"lowIncomeA","7396":"midIncome","7397":"midIncome","7398":"lowIncomeA","7399":"lowIncomeA","7400":"lowIncomeA","7401":"lowIncomeA","7402":"lowIncomeA","7403":"lowIncomeA","7404":"lowIncomeA","7405":"lowIncomeA","7406":"midIncome","7407":"midIncome","7408":"lowIncomeA","7409":"lowIncomeB","7410":"midIncome","7411":"lowIncomeB","7412":"lowIncomeB","7413":"lowIncomeB","7414":"midIncome","7415":"lowIncomeA","7416":"lowIncomeA","7417":"lowIncomeB","7418":"lowIncomeA","7419":"lowIncomeB","7420":"lowIncomeA","7421":"lowIncomeB","7422":"lowIncomeB","7423":"lowIncomeA","7424":"lowIncomeA","7425":"lowIncomeB","7426":"lowIncomeA","7427":"lowIncomeB","7428":"lowIncomeB","7429":"lowIncomeA","7430":"midIncome","7431":"lowIncomeB","7432":"lowIncomeA","7433":"lowIncomeB","7434":"lowIncomeA","7435":"lowIncomeB","7436":"lowIncomeB","7437":"lowIncomeA","7438":"midIncome","7439":"midIncome","7440":"lowIncomeB","7441":"lowIncomeB","7442":"lowIncomeA","7443":"lowIncomeA","7444":"lowIncomeB","7445":"lowIncomeB","7446":"midIncome","7447":"lowIncomeA","7448":"lowIncomeB","7449":"midIncome","7450":"lowIncomeB","7451":"lowIncomeB","7452":"lowIncomeB","7453":"lowIncomeA","7454":"lowIncomeB","7455":"lowIncomeA","7456":"lowIncomeA","7457":"lowIncomeA","7458":"lowIncomeB","7459":"lowIncomeA","7460":"lowIncomeA","7461":"midIncome","7462":"lowIncomeA","7463":"lowIncomeA","7464":"lowIncomeA","7465":"lowIncomeB","7466":"lowIncomeB","7467":"lowIncomeA","7468":"lowIncomeA","7469":"lowIncomeB","7470":"lowIncomeB","7471":"lowIncomeB","7472":"lowIncomeB","7473":"lowIncomeA","7474":"lowIncomeA","7475":"lowIncomeA","7476":"midIncome","7477":"midIncome","7478":"lowIncomeB","7479":"lowIncomeB","7480":"lowIncomeA","7481":"midIncome","7482":"lowIncomeA","7483":"lowIncomeB","7484":"lowIncomeA","7485":"lowIncomeB","7486":"lowIncomeB","7487":"midIncome","7488":"lowIncomeA","7489":"lowIncomeA","7490":"lowIncomeA","7491":"lowIncomeA","7492":"lowIncomeB","7493":"lowIncomeA","7494":"midIncome","7495":"lowIncomeB","7496":"lowIncomeA","7497":"lowIncomeA","7498":"lowIncomeA","7499":"lowIncomeB","7500":"lowIncomeB","7501":"lowIncomeA","7502":"lowIncomeB","7503":"lowIncomeB","7504":"lowIncomeA","7505":"lowIncomeB","7506":"lowIncomeB","7507":"lowIncomeB","7508":"lowIncomeB","7509":"lowIncomeA","7510":"lowIncomeB","7511":"lowIncomeA","7512":"lowIncomeB","7513":"lowIncomeA","7514":"lowIncomeB","7515":"lowIncomeB","7516":"midIncome","7517":"lowIncomeB","7518":"lowIncomeB","7519":"lowIncomeB","7520":"lowIncomeA","7521":"lowIncomeA","7522":"lowIncomeA","7523":"lowIncomeA","7524":"lowIncomeA","7525":"lowIncomeA","7526":"lowIncomeA","7527":"lowIncomeA","7528":"lowIncomeB","7529":"lowIncomeA","7530":"lowIncomeB","7531":"lowIncomeB","7532":"lowIncomeA","7533":"lowIncomeB","7534":"lowIncomeA","7535":"midIncome","7536":"lowIncomeA","7537":"midIncome","7538":"lowIncomeB","7539":"lowIncomeA","7540":"lowIncomeA","7541":"lowIncomeA","7542":"lowIncomeA","7543":"lowIncomeA","7544":"lowIncomeA","7545":"lowIncomeB","7546":"lowIncomeB","7547":"lowIncomeB","7548":"midIncome","7549":"lowIncomeA","7550":"lowIncomeA","7551":"lowIncomeB","7552":"lowIncomeA","7553":"lowIncomeB","7554":"lowIncomeA","7555":"lowIncomeB","7556":"lowIncomeB","7557":"midIncome","7558":"lowIncomeA","7559":"lowIncomeB","7560":"lowIncomeB","7561":"lowIncomeB","7562":"lowIncomeB","7563":"lowIncomeA","7564":"lowIncomeA","7565":"lowIncomeA","7566":"lowIncomeA","7567":"midIncome","7568":"lowIncomeA","7569":"midIncome","7570":"lowIncomeA","7571":"lowIncomeA","7572":"lowIncomeA","7573":"lowIncomeB","7574":"lowIncomeA","7575":"midIncome","7576":"lowIncomeB","7577":"lowIncomeA","7578":"lowIncomeA","7579":"lowIncomeB","7580":"lowIncomeB","7581":"lowIncomeB","7582":"lowIncomeA","7583":"lowIncomeB","7584":"lowIncomeA","7585":"lowIncomeA","7586":"lowIncomeA","7587":"lowIncomeB","7588":"lowIncomeB","7589":"lowIncomeA","7590":"lowIncomeB","7591":"lowIncomeA","7592":"lowIncomeB","7593":"lowIncomeB","7594":"lowIncomeB","7595":"midIncome","7596":"lowIncomeB","7597":"lowIncomeA","7598":"lowIncomeA","7599":"lowIncomeA","7600":"lowIncomeB","7601":"lowIncomeA","7602":"lowIncomeB","7603":"lowIncomeB","7604":"lowIncomeA","7605":"lowIncomeB","7606":"lowIncomeB","7607":"lowIncomeA","7608":"lowIncomeB","7609":"lowIncomeA","7610":"lowIncomeB","7611":"lowIncomeA","7612":"lowIncomeA","7613":"midIncome","7614":"lowIncomeB","7615":"midIncome","7616":"lowIncomeA","7617":"lowIncomeB","7618":"midIncome","7619":"lowIncomeA","7620":"lowIncomeB","7621":"lowIncomeA","7622":"lowIncomeB","7623":"lowIncomeA","7624":"lowIncomeB","7625":"lowIncomeA","7626":"midIncome","7627":"lowIncomeB","7628":"midIncome","7629":"midIncome","7630":"lowIncomeA","7631":"lowIncomeA","7632":"lowIncomeA","7633":"midIncome","7634":"lowIncomeB","7635":"lowIncomeB","7636":"lowIncomeB","7637":"lowIncomeB","7638":"midIncome","7639":"lowIncomeA","7640":"midIncome","7641":"lowIncomeA","7642":"midIncome","7643":"lowIncomeB","7644":"lowIncomeB","7645":"lowIncomeA","7646":"lowIncomeA","7647":"lowIncomeB","7648":"lowIncomeA","7649":"lowIncomeB","7650":"lowIncomeA","7651":"lowIncomeA","7652":"lowIncomeB","7653":"lowIncomeA","7654":"lowIncomeB","7655":"lowIncomeA","7656":"lowIncomeB","7657":"lowIncomeA","7658":"midIncome","7659":"lowIncomeB","7660":"lowIncomeB","7661":"lowIncomeB","7662":"lowIncomeA","7663":"lowIncomeB","7664":"lowIncomeB","7665":"lowIncomeB","7666":"lowIncomeA","7667":"lowIncomeA","7668":"lowIncomeB","7669":"lowIncomeA","7670":"lowIncomeA","7671":"lowIncomeA","7672":"lowIncomeA","7673":"lowIncomeB","7674":"lowIncomeA","7675":"lowIncomeB","7676":"midIncome","7677":"lowIncomeA","7678":"lowIncomeA","7679":"lowIncomeA","7680":"lowIncomeA","7681":"lowIncomeA","7682":"lowIncomeA","7683":"lowIncomeA","7684":"lowIncomeB","7685":"lowIncomeA","7686":"lowIncomeA","7687":"lowIncomeB","7688":"lowIncomeB","7689":"lowIncomeB","7690":"lowIncomeB","7691":"lowIncomeA","7692":"lowIncomeA","7693":"lowIncomeA","7694":"lowIncomeA","7695":"lowIncomeB","7696":"lowIncomeA","7697":"lowIncomeA","7698":"lowIncomeA","7699":"lowIncomeA","7700":"lowIncomeA","7701":"lowIncomeA","7702":"lowIncomeB","7703":"lowIncomeB","7704":"lowIncomeB","7705":"lowIncomeB","7706":"lowIncomeA","7707":"lowIncomeB","7708":"lowIncomeA","7709":"lowIncomeB","7710":"lowIncomeA","7711":"lowIncomeB","7712":"lowIncomeA","7713":"lowIncomeB","7714":"lowIncomeA","7715":"lowIncomeA","7716":"lowIncomeB","7717":"lowIncomeB","7718":"lowIncomeB","7719":"lowIncomeB","7720":"lowIncomeA","7721":"lowIncomeB","7722":"lowIncomeA","7723":"lowIncomeA","7724":"midIncome","7725":"lowIncomeB","7726":"lowIncomeA","7727":"midIncome","7728":"lowIncomeA","7729":"lowIncomeA","7730":"lowIncomeB","7731":"lowIncomeB","7732":"lowIncomeA","7733":"lowIncomeA","7734":"lowIncomeB","7735":"lowIncomeB","7736":"lowIncomeA","7737":"lowIncomeB","7738":"lowIncomeA","7739":"lowIncomeA","7740":"lowIncomeB","7741":"lowIncomeB","7742":"lowIncomeB","7743":"lowIncomeA","7744":"lowIncomeB","7745":"lowIncomeB","7746":"lowIncomeA","7747":"lowIncomeB","7748":"lowIncomeB","7749":"midIncome","7750":"lowIncomeA","7751":"lowIncomeB","7752":"lowIncomeB","7753":"lowIncomeB","7754":"lowIncomeB","7755":"lowIncomeB","7756":"lowIncomeB","7757":"lowIncomeA","7758":"lowIncomeA","7759":"lowIncomeA","7760":"lowIncomeA","7761":"lowIncomeB","7762":"lowIncomeB","7763":"midIncome","7764":"lowIncomeA","7765":"lowIncomeA","7766":"lowIncomeB","7767":"lowIncomeB","7768":"lowIncomeA","7769":"lowIncomeA","7770":"lowIncomeA","7771":"lowIncomeB","7772":"lowIncomeA","7773":"lowIncomeB","7774":"midIncome","7775":"lowIncomeB","7776":"lowIncomeB","7777":"lowIncomeA","7778":"lowIncomeA","7779":"lowIncomeB","7780":"lowIncomeA","7781":"lowIncomeA","7782":"lowIncomeB","7783":"lowIncomeA","7784":"lowIncomeA","7785":"lowIncomeB","7786":"lowIncomeA","7787":"lowIncomeB","7788":"lowIncomeB","7789":"lowIncomeB","7790":"midIncome","7791":"lowIncomeA","7792":"lowIncomeB","7793":"lowIncomeB","7794":"lowIncomeA","7795":"lowIncomeA","7796":"midIncome","7797":"lowIncomeA","7798":"midIncome","7799":"midIncome","7800":"lowIncomeB","7801":"lowIncomeA","7802":"lowIncomeB","7803":"lowIncomeA","7804":"lowIncomeA","7805":"lowIncomeA","7806":"midIncome","7807":"lowIncomeA","7808":"lowIncomeB","7809":"lowIncomeB","7810":"midIncome","7811":"lowIncomeA","7812":"lowIncomeA","7813":"lowIncomeB","7814":"lowIncomeA","7815":"lowIncomeB","7816":"lowIncomeB","7817":"lowIncomeB","7818":"lowIncomeA","7819":"lowIncomeA","7820":"lowIncomeA","7821":"lowIncomeA","7822":"lowIncomeA","7823":"lowIncomeA","7824":"lowIncomeA","7825":"lowIncomeB","7826":"lowIncomeA","7827":"midIncome","7828":"lowIncomeB","7829":"lowIncomeA","7830":"lowIncomeA","7831":"lowIncomeA","7832":"lowIncomeB","7833":"lowIncomeB","7834":"lowIncomeA","7835":"lowIncomeA","7836":"lowIncomeB","7837":"lowIncomeA","7838":"lowIncomeB","7839":"lowIncomeB","7840":"lowIncomeA","7841":"lowIncomeB","7842":"lowIncomeA","7843":"lowIncomeA","7844":"lowIncomeA","7845":"lowIncomeB","7846":"lowIncomeB","7847":"lowIncomeB","7848":"lowIncomeB","7849":"lowIncomeA","7850":"lowIncomeA","7851":"lowIncomeB","7852":"lowIncomeB","7853":"lowIncomeA","7854":"lowIncomeA","7855":"lowIncomeA","7856":"midIncome","7857":"lowIncomeA","7858":"lowIncomeA","7859":"lowIncomeB","7860":"lowIncomeA","7861":"lowIncomeB","7862":"lowIncomeB","7863":"lowIncomeB","7864":"lowIncomeA","7865":"lowIncomeB","7866":"lowIncomeB","7867":"lowIncomeB","7868":"lowIncomeA","7869":"lowIncomeB","7870":"lowIncomeB","7871":"lowIncomeA","7872":"lowIncomeA","7873":"lowIncomeB","7874":"lowIncomeB","7875":"midIncome","7876":"lowIncomeA","7877":"lowIncomeA","7878":"lowIncomeA","7879":"lowIncomeA","7880":"midIncome","7881":"lowIncomeA","7882":"lowIncomeB","7883":"lowIncomeA","7884":"lowIncomeA","7885":"lowIncomeA","7886":"lowIncomeA","7887":"lowIncomeB","7888":"midIncome","7889":"lowIncomeA","7890":"lowIncomeB","7891":"lowIncomeB","7892":"lowIncomeA","7893":"lowIncomeA","7894":"lowIncomeA","7895":"lowIncomeB","7896":"lowIncomeA","7897":"lowIncomeB","7898":"lowIncomeB","7899":"midIncome","7900":"lowIncomeA","7901":"lowIncomeB","7902":"lowIncomeB","7903":"lowIncomeA","7904":"lowIncomeA","7905":"midIncome","7906":"lowIncomeB","7907":"lowIncomeA","7908":"lowIncomeB","7909":"midIncome","7910":"lowIncomeA","7911":"lowIncomeB","7912":"lowIncomeA","7913":"lowIncomeA","7914":"lowIncomeB","7915":"lowIncomeA","7916":"lowIncomeA","7917":"lowIncomeB","7918":"lowIncomeB","7919":"lowIncomeA","7920":"lowIncomeB","7921":"lowIncomeB","7922":"lowIncomeA","7923":"lowIncomeA","7924":"lowIncomeA","7925":"lowIncomeA","7926":"lowIncomeA","7927":"lowIncomeB","7928":"lowIncomeB","7929":"lowIncomeA","7930":"lowIncomeA","7931":"lowIncomeA","7932":"lowIncomeB","7933":"midIncome","7934":"lowIncomeA","7935":"midIncome","7936":"lowIncomeA","7937":"lowIncomeA","7938":"lowIncomeA","7939":"lowIncomeB","7940":"lowIncomeA","7941":"lowIncomeB","7942":"lowIncomeA","7943":"lowIncomeB","7944":"lowIncomeB","7945":"lowIncomeA","7946":"lowIncomeA","7947":"lowIncomeA","7948":"lowIncomeB","7949":"midIncome","7950":"lowIncomeA","7951":"lowIncomeB","7952":"lowIncomeA","7953":"lowIncomeA","7954":"midIncome","7955":"lowIncomeB","7956":"lowIncomeB","7957":"lowIncomeB","7958":"lowIncomeB","7959":"lowIncomeA","7960":"lowIncomeA","7961":"lowIncomeA","7962":"lowIncomeA","7963":"lowIncomeB","7964":"lowIncomeB","7965":"lowIncomeB","7966":"lowIncomeB","7967":"lowIncomeA","7968":"lowIncomeA","7969":"lowIncomeA","7970":"midIncome","7971":"midIncome","7972":"lowIncomeB","7973":"lowIncomeA","7974":"lowIncomeA","7975":"lowIncomeA","7976":"lowIncomeA","7977":"lowIncomeB","7978":"lowIncomeB","7979":"lowIncomeB","7980":"lowIncomeA","7981":"lowIncomeB","7982":"lowIncomeB","7983":"midIncome","7984":"lowIncomeA","7985":"lowIncomeA","7986":"lowIncomeA","7987":"lowIncomeB","7988":"lowIncomeB","7989":"lowIncomeA","7990":"lowIncomeA","7991":"lowIncomeA","7992":"lowIncomeA","7993":"lowIncomeB","7994":"lowIncomeA","7995":"lowIncomeA","7996":"lowIncomeB","7997":"lowIncomeA","7998":"lowIncomeA","7999":"lowIncomeA","8000":"lowIncomeB","8001":"lowIncomeA","8002":"lowIncomeB","8003":"midIncome","8004":"lowIncomeA","8005":"lowIncomeA","8006":"lowIncomeA","8007":"lowIncomeA","8008":"lowIncomeB","8009":"lowIncomeA","8010":"lowIncomeA","8011":"lowIncomeA","8012":"lowIncomeA","8013":"lowIncomeA","8014":"lowIncomeB","8015":"lowIncomeA","8016":"lowIncomeA","8017":"lowIncomeA","8018":"lowIncomeB","8019":"lowIncomeA","8020":"lowIncomeA","8021":"lowIncomeB","8022":"lowIncomeA","8023":"lowIncomeA","8024":"lowIncomeA","8025":"lowIncomeA","8026":"lowIncomeA","8027":"lowIncomeA","8028":"lowIncomeB","8029":"lowIncomeA","8030":"lowIncomeB","8031":"midIncome","8032":"lowIncomeB","8033":"lowIncomeA","8034":"lowIncomeA","8035":"lowIncomeB","8036":"lowIncomeA","8037":"lowIncomeB","8038":"midIncome","8039":"lowIncomeA","8040":"lowIncomeA","8041":"lowIncomeB","8042":"lowIncomeB","8043":"lowIncomeA","8044":"lowIncomeA","8045":"lowIncomeA","8046":"lowIncomeA","8047":"lowIncomeB","8048":"lowIncomeB","8049":"lowIncomeB","8050":"lowIncomeB","8051":"lowIncomeB","8052":"lowIncomeA","8053":"lowIncomeA","8054":"lowIncomeA","8055":"lowIncomeA","8056":"lowIncomeA","8057":"lowIncomeA","8058":"lowIncomeB","8059":"lowIncomeA","8060":"lowIncomeA","8061":"lowIncomeA","8062":"lowIncomeA","8063":"lowIncomeA","8064":"lowIncomeB","8065":"midIncome","8066":"lowIncomeA","8067":"lowIncomeB","8068":"lowIncomeB","8069":"lowIncomeA","8070":"lowIncomeA","8071":"lowIncomeB","8072":"lowIncomeA","8073":"lowIncomeA","8074":"lowIncomeA","8075":"lowIncomeA","8076":"lowIncomeA","8077":"lowIncomeB","8078":"lowIncomeB","8079":"lowIncomeB","8080":"lowIncomeB","8081":"lowIncomeA","8082":"lowIncomeB","8083":"lowIncomeA","8084":"lowIncomeA","8085":"lowIncomeA","8086":"midIncome","8087":"lowIncomeA","8088":"lowIncomeB","8089":"midIncome","8090":"lowIncomeA","8091":"lowIncomeB","8092":"lowIncomeA","8093":"lowIncomeB","8094":"lowIncomeA","8095":"lowIncomeB","8096":"lowIncomeB","8097":"lowIncomeA","8098":"lowIncomeB","8099":"lowIncomeB","8100":"lowIncomeB","8101":"lowIncomeA","8102":"lowIncomeA","8103":"lowIncomeA","8104":"midIncome","8105":"lowIncomeB","8106":"lowIncomeA","8107":"midIncome","8108":"lowIncomeB","8109":"lowIncomeA","8110":"lowIncomeB","8111":"lowIncomeB","8112":"lowIncomeB","8113":"lowIncomeA","8114":"lowIncomeA","8115":"midIncome","8116":"lowIncomeA","8117":"lowIncomeA","8118":"lowIncomeB","8119":"lowIncomeB","8120":"lowIncomeA","8121":"lowIncomeA","8122":"lowIncomeA","8123":"lowIncomeA","8124":"lowIncomeA","8125":"lowIncomeB","8126":"lowIncomeA","8127":"lowIncomeA","8128":"lowIncomeA","8129":"lowIncomeA","8130":"lowIncomeB","8131":"lowIncomeB","8132":"lowIncomeA","8133":"lowIncomeB","8134":"lowIncomeB","8135":"lowIncomeB","8136":"lowIncomeB","8137":"lowIncomeA","8138":"lowIncomeA","8139":"lowIncomeA","8140":"lowIncomeA","8141":"lowIncomeB","8142":"lowIncomeB","8143":"lowIncomeB","8144":"lowIncomeB","8145":"lowIncomeB","8146":"lowIncomeA","8147":"lowIncomeA","8148":"lowIncomeB","8149":"lowIncomeA","8150":"lowIncomeA","8151":"lowIncomeA","8152":"lowIncomeA","8153":"lowIncomeB","8154":"lowIncomeB","8155":"lowIncomeA","8156":"lowIncomeA","8157":"lowIncomeB","8158":"lowIncomeB","8159":"lowIncomeA","8160":"lowIncomeA","8161":"lowIncomeA","8162":"lowIncomeB","8163":"midIncome","8164":"lowIncomeA","8165":"lowIncomeA","8166":"lowIncomeB","8167":"lowIncomeA","8168":"lowIncomeB","8169":"lowIncomeA","8170":"lowIncomeB","8171":"lowIncomeA","8172":"lowIncomeB","8173":"lowIncomeA","8174":"lowIncomeB","8175":"lowIncomeA","8176":"midIncome","8177":"lowIncomeA","8178":"lowIncomeA","8179":"lowIncomeB","8180":"lowIncomeA","8181":"lowIncomeA","8182":"lowIncomeA","8183":"lowIncomeB","8184":"lowIncomeB","8185":"lowIncomeB","8186":"lowIncomeB","8187":"lowIncomeB","8188":"lowIncomeB","8189":"lowIncomeA","8190":"lowIncomeB","8191":"lowIncomeA","8192":"lowIncomeA","8193":"lowIncomeA","8194":"lowIncomeB","8195":"lowIncomeB","8196":"lowIncomeA","8197":"lowIncomeA","8198":"lowIncomeB","8199":"lowIncomeA","8200":"lowIncomeA","8201":"lowIncomeA","8202":"lowIncomeA","8203":"lowIncomeA","8204":"lowIncomeA","8205":"lowIncomeA","8206":"midIncome","8207":"lowIncomeB","8208":"lowIncomeA","8209":"lowIncomeA","8210":"lowIncomeB","8211":"lowIncomeB","8212":"lowIncomeA","8213":"lowIncomeA","8214":"lowIncomeB","8215":"lowIncomeB","8216":"lowIncomeA","8217":"midIncome","8218":"lowIncomeA","8219":"lowIncomeA","8220":"lowIncomeB","8221":"lowIncomeA","8222":"midIncome","8223":"lowIncomeB","8224":"lowIncomeB","8225":"lowIncomeA","8226":"lowIncomeA","8227":"lowIncomeA","8228":"lowIncomeA","8229":"lowIncomeB","8230":"midIncome","8231":"lowIncomeA","8232":"midIncome","8233":"lowIncomeA","8234":"lowIncomeA","8235":"midIncome","8236":"lowIncomeB","8237":"midIncome","8238":"lowIncomeA","8239":"lowIncomeB","8240":"lowIncomeB","8241":"midIncome","8242":"midIncome","8243":"lowIncomeA","8244":"lowIncomeA","8245":"lowIncomeA","8246":"lowIncomeA","8247":"midIncome","8248":"lowIncomeB","8249":"lowIncomeA","8250":"lowIncomeA","8251":"lowIncomeB","8252":"lowIncomeB","8253":"lowIncomeA","8254":"lowIncomeB","8255":"lowIncomeA","8256":"lowIncomeA","8257":"lowIncomeA","8258":"lowIncomeA","8259":"lowIncomeA","8260":"lowIncomeB","8261":"lowIncomeA","8262":"lowIncomeA","8263":"lowIncomeB","8264":"lowIncomeA","8265":"lowIncomeA","8266":"lowIncomeA","8267":"lowIncomeA","8268":"lowIncomeA","8269":"midIncome","8270":"lowIncomeA","8271":"lowIncomeA","8272":"lowIncomeA","8273":"lowIncomeA","8274":"lowIncomeB","8275":"lowIncomeB","8276":"lowIncomeB","8277":"lowIncomeA","8278":"midIncome","8279":"lowIncomeA","8280":"lowIncomeA","8281":"lowIncomeB","8282":"lowIncomeA","8283":"lowIncomeA","8284":"lowIncomeB","8285":"lowIncomeB","8286":"lowIncomeB","8287":"lowIncomeB","8288":"midIncome","8289":"lowIncomeB","8290":"lowIncomeB","8291":"lowIncomeB","8292":"lowIncomeB","8293":"lowIncomeA","8294":"lowIncomeB","8295":"lowIncomeA","8296":"lowIncomeA","8297":"lowIncomeB","8298":"lowIncomeA","8299":"midIncome","8300":"lowIncomeA","8301":"lowIncomeA","8302":"midIncome","8303":"lowIncomeA","8304":"lowIncomeA","8305":"lowIncomeB","8306":"lowIncomeB","8307":"lowIncomeA","8308":"midIncome","8309":"lowIncomeA","8310":"lowIncomeA","8311":"lowIncomeB","8312":"lowIncomeA","8313":"lowIncomeB","8314":"lowIncomeB","8315":"lowIncomeB","8316":"lowIncomeB","8317":"lowIncomeA","8318":"lowIncomeB","8319":"lowIncomeA","8320":"lowIncomeA","8321":"lowIncomeA","8322":"lowIncomeA","8323":"midIncome","8324":"lowIncomeA","8325":"lowIncomeB","8326":"lowIncomeA","8327":"lowIncomeA","8328":"lowIncomeB","8329":"lowIncomeB","8330":"midIncome","8331":"lowIncomeB","8332":"lowIncomeA","8333":"lowIncomeB","8334":"lowIncomeA","8335":"lowIncomeB","8336":"midIncome","8337":"midIncome","8338":"midIncome","8339":"lowIncomeB","8340":"lowIncomeA","8341":"lowIncomeB","8342":"lowIncomeA","8343":"lowIncomeB","8344":"midIncome","8345":"lowIncomeB","8346":"lowIncomeB","8347":"lowIncomeA","8348":"lowIncomeA","8349":"lowIncomeB","8350":"lowIncomeA","8351":"lowIncomeA","8352":"lowIncomeB","8353":"lowIncomeA","8354":"lowIncomeA","8355":"midIncome","8356":"lowIncomeA","8357":"lowIncomeB","8358":"lowIncomeA","8359":"lowIncomeB","8360":"lowIncomeA","8361":"lowIncomeB","8362":"lowIncomeA","8363":"midIncome","8364":"lowIncomeB","8365":"lowIncomeA","8366":"lowIncomeA","8367":"lowIncomeA","8368":"lowIncomeB","8369":"lowIncomeB","8370":"lowIncomeB","8371":"midIncome","8372":"lowIncomeA","8373":"lowIncomeB","8374":"midIncome","8375":"lowIncomeA","8376":"lowIncomeA","8377":"lowIncomeA","8378":"lowIncomeB","8379":"lowIncomeB","8380":"lowIncomeB","8381":"lowIncomeB","8382":"lowIncomeA","8383":"lowIncomeA","8384":"lowIncomeB","8385":"lowIncomeA","8386":"lowIncomeA","8387":"midIncome","8388":"lowIncomeA","8389":"lowIncomeB","8390":"lowIncomeB","8391":"lowIncomeB","8392":"midIncome","8393":"lowIncomeA","8394":"lowIncomeA","8395":"lowIncomeA","8396":"lowIncomeA","8397":"lowIncomeB","8398":"lowIncomeB","8399":"lowIncomeA","8400":"lowIncomeA","8401":"lowIncomeA","8402":"lowIncomeA","8403":"lowIncomeB","8404":"lowIncomeA","8405":"lowIncomeB","8406":"lowIncomeA","8407":"lowIncomeB","8408":"lowIncomeB","8409":"lowIncomeA","8410":"lowIncomeB","8411":"lowIncomeA","8412":"lowIncomeA","8413":"lowIncomeA","8414":"lowIncomeB","8415":"lowIncomeB","8416":"lowIncomeA","8417":"lowIncomeB","8418":"lowIncomeA","8419":"lowIncomeA","8420":"midIncome","8421":"lowIncomeA","8422":"lowIncomeB","8423":"lowIncomeA","8424":"lowIncomeB","8425":"lowIncomeB","8426":"lowIncomeB","8427":"lowIncomeA","8428":"lowIncomeB","8429":"lowIncomeB","8430":"lowIncomeA","8431":"lowIncomeB","8432":"lowIncomeB","8433":"lowIncomeB","8434":"lowIncomeA","8435":"lowIncomeA","8436":"lowIncomeA","8437":"lowIncomeB","8438":"lowIncomeA","8439":"lowIncomeB","8440":"lowIncomeA","8441":"lowIncomeA","8442":"lowIncomeB","8443":"lowIncomeA","8444":"lowIncomeA","8445":"lowIncomeA","8446":"lowIncomeB","8447":"lowIncomeB","8448":"lowIncomeA","8449":"lowIncomeB","8450":"lowIncomeB","8451":"lowIncomeA","8452":"lowIncomeB","8453":"lowIncomeA","8454":"lowIncomeA","8455":"lowIncomeA","8456":"lowIncomeA","8457":"lowIncomeA","8458":"midIncome","8459":"lowIncomeA","8460":"midIncome","8461":"lowIncomeB","8462":"lowIncomeA","8463":"lowIncomeA","8464":"lowIncomeA","8465":"lowIncomeA","8466":"lowIncomeA","8467":"lowIncomeA","8468":"lowIncomeB","8469":"midIncome","8470":"midIncome","8471":"lowIncomeB","8472":"midIncome","8473":"lowIncomeA","8474":"lowIncomeA","8475":"lowIncomeA","8476":"lowIncomeA","8477":"lowIncomeB","8478":"lowIncomeA","8479":"midIncome","8480":"midIncome","8481":"lowIncomeB","8482":"lowIncomeB","8483":"lowIncomeB","8484":"lowIncomeB","8485":"midIncome","8486":"lowIncomeA","8487":"lowIncomeA","8488":"lowIncomeA","8489":"lowIncomeA","8490":"lowIncomeB","8491":"lowIncomeA","8492":"lowIncomeA","8493":"midIncome","8494":"lowIncomeA","8495":"midIncome","8496":"lowIncomeB","8497":"midIncome","8498":"lowIncomeA","8499":"lowIncomeA","8500":"midIncome","8501":"lowIncomeB","8502":"midIncome","8503":"lowIncomeB","8504":"lowIncomeA","8505":"lowIncomeB","8506":"midIncome","8507":"lowIncomeB","8508":"lowIncomeB","8509":"lowIncomeB","8510":"lowIncomeA","8511":"lowIncomeA","8512":"lowIncomeB","8513":"lowIncomeA","8514":"lowIncomeA","8515":"lowIncomeA","8516":"lowIncomeA","8517":"lowIncomeA","8518":"lowIncomeB","8519":"lowIncomeA","8520":"midIncome","8521":"lowIncomeA","8522":"lowIncomeA","8523":"lowIncomeA","8524":"lowIncomeB","8525":"midIncome","8526":"lowIncomeA","8527":"lowIncomeA","8528":"lowIncomeA","8529":"lowIncomeA","8530":"lowIncomeB","8531":"lowIncomeB","8532":"lowIncomeB","8533":"lowIncomeA","8534":"midIncome","8535":"lowIncomeB","8536":"lowIncomeB","8537":"lowIncomeB","8538":"lowIncomeB","8539":"lowIncomeB","8540":"lowIncomeB","8541":"lowIncomeB","8542":"midIncome","8543":"lowIncomeA","8544":"midIncome","8545":"lowIncomeA","8546":"lowIncomeA","8547":"midIncome","8548":"lowIncomeB","8549":"lowIncomeA","8550":"lowIncomeA","8551":"lowIncomeA","8552":"lowIncomeB","8553":"lowIncomeA","8554":"lowIncomeB","8555":"lowIncomeB","8556":"lowIncomeB","8557":"lowIncomeA","8558":"lowIncomeB","8559":"lowIncomeB","8560":"lowIncomeA","8561":"lowIncomeB","8562":"lowIncomeA","8563":"lowIncomeB","8564":"lowIncomeB","8565":"lowIncomeA","8566":"lowIncomeA","8567":"lowIncomeA","8568":"lowIncomeA","8569":"lowIncomeA","8570":"lowIncomeB","8571":"lowIncomeA","8572":"lowIncomeB","8573":"lowIncomeA","8574":"midIncome","8575":"lowIncomeB","8576":"lowIncomeB","8577":"lowIncomeA","8578":"lowIncomeB","8579":"lowIncomeA","8580":"lowIncomeA","8581":"lowIncomeB","8582":"lowIncomeA","8583":"midIncome","8584":"lowIncomeA","8585":"lowIncomeB","8586":"lowIncomeA","8587":"lowIncomeA","8588":"lowIncomeB","8589":"lowIncomeA","8590":"lowIncomeB","8591":"lowIncomeB","8592":"lowIncomeA","8593":"lowIncomeA","8594":"midIncome","8595":"midIncome","8596":"lowIncomeB","8597":"lowIncomeA","8598":"lowIncomeB","8599":"lowIncomeA","8600":"lowIncomeB","8601":"lowIncomeA","8602":"lowIncomeA","8603":"lowIncomeA","8604":"lowIncomeA","8605":"lowIncomeA","8606":"lowIncomeB","8607":"midIncome","8608":"lowIncomeA","8609":"lowIncomeB","8610":"lowIncomeA","8611":"lowIncomeB","8612":"midIncome","8613":"lowIncomeB","8614":"lowIncomeA","8615":"lowIncomeB","8616":"lowIncomeB","8617":"lowIncomeA","8618":"lowIncomeA","8619":"lowIncomeA","8620":"lowIncomeA","8621":"lowIncomeB","8622":"lowIncomeA","8623":"midIncome","8624":"lowIncomeB","8625":"lowIncomeA","8626":"midIncome","8627":"lowIncomeB","8628":"lowIncomeA","8629":"lowIncomeA","8630":"lowIncomeB","8631":"midIncome","8632":"lowIncomeB","8633":"lowIncomeA","8634":"midIncome","8635":"lowIncomeB","8636":"lowIncomeA","8637":"lowIncomeA","8638":"lowIncomeA","8639":"lowIncomeA","8640":"lowIncomeB","8641":"lowIncomeA","8642":"lowIncomeA","8643":"lowIncomeA","8644":"lowIncomeA","8645":"lowIncomeA","8646":"lowIncomeA","8647":"midIncome","8648":"lowIncomeB","8649":"lowIncomeB","8650":"lowIncomeB","8651":"lowIncomeB","8652":"lowIncomeA","8653":"lowIncomeA","8654":"midIncome","8655":"lowIncomeA","8656":"lowIncomeB","8657":"lowIncomeB","8658":"midIncome","8659":"lowIncomeA","8660":"lowIncomeA","8661":"lowIncomeA","8662":"lowIncomeB","8663":"lowIncomeA","8664":"lowIncomeA","8665":"midIncome","8666":"lowIncomeB","8667":"lowIncomeA","8668":"midIncome","8669":"lowIncomeB","8670":"lowIncomeA","8671":"lowIncomeB","8672":"lowIncomeB","8673":"lowIncomeB","8674":"lowIncomeA","8675":"midIncome","8676":"lowIncomeB","8677":"lowIncomeB","8678":"lowIncomeB","8679":"lowIncomeA","8680":"lowIncomeA","8681":"lowIncomeB","8682":"lowIncomeA","8683":"lowIncomeA","8684":"lowIncomeB","8685":"lowIncomeA","8686":"lowIncomeB","8687":"lowIncomeA","8688":"lowIncomeB","8689":"lowIncomeA","8690":"midIncome","8691":"midIncome","8692":"midIncome","8693":"highIncome","8694":"midIncome","8695":"midIncome","8696":"midIncome","8697":"midIncome","8698":"lowIncomeA","8699":"midIncome","8700":"midIncome","8701":"midIncome","8702":"midIncome","8703":"midIncome","8704":"midIncome","8705":"lowIncomeA","8706":"midIncome","8707":"midIncome","8708":"midIncome","8709":"midIncome","8710":"lowIncomeB","8711":"midIncome","8712":"midIncome","8713":"midIncome","8714":"highIncome","8715":"midIncome","8716":"midIncome","8717":"midIncome","8718":"midIncome","8719":"midIncome","8720":"midIncome","8721":"highIncome","8722":"midIncome","8723":"lowIncomeB","8724":"midIncome","8725":"midIncome","8726":"midIncome","8727":"midIncome","8728":"midIncome","8729":"midIncome","8730":"midIncome","8731":"highIncome","8732":"midIncome","8733":"midIncome","8734":"midIncome","8735":"midIncome","8736":"midIncome","8737":"midIncome","8738":"lowIncomeA","8739":"midIncome","8740":"midIncome","8741":"midIncome","8742":"midIncome","8743":"midIncome","8744":"midIncome","8745":"highIncome","8746":"midIncome","8747":"midIncome","8748":"midIncome","8749":"midIncome","8750":"midIncome","8751":"midIncome","8752":"midIncome","8753":"midIncome","8754":"midIncome","8755":"midIncome","8756":"midIncome","8757":"midIncome","8758":"lowIncomeA","8759":"highIncome","8760":"midIncome","8761":"midIncome","8762":"lowIncomeB","8763":"lowIncomeA","8764":"midIncome","8765":"midIncome","8766":"midIncome","8767":"midIncome","8768":"lowIncomeA","8769":"midIncome","8770":"midIncome","8771":"midIncome","8772":"midIncome","8773":"midIncome","8774":"midIncome","8775":"highIncome","8776":"midIncome","8777":"midIncome","8778":"midIncome","8779":"midIncome","8780":"lowIncomeA","8781":"midIncome","8782":"midIncome","8783":"midIncome","8784":"midIncome","8785":"midIncome","8786":"midIncome","8787":"midIncome","8788":"midIncome","8789":"lowIncomeB","8790":"midIncome","8791":"midIncome","8792":"midIncome","8793":"lowIncomeA","8794":"midIncome","8795":"midIncome","8796":"midIncome","8797":"lowIncomeB","8798":"highIncome","8799":"midIncome","8800":"midIncome","8801":"midIncome","8802":"highIncome","8803":"lowIncomeB","8804":"midIncome","8805":"lowIncomeA","8806":"midIncome","8807":"highIncome","8808":"midIncome","8809":"lowIncomeB","8810":"midIncome","8811":"midIncome","8812":"lowIncomeA","8813":"midIncome","8814":"midIncome","8815":"lowIncomeB","8816":"highIncome","8817":"highIncome","8818":"midIncome","8819":"midIncome","8820":"midIncome","8821":"lowIncomeA","8822":"midIncome","8823":"lowIncomeA","8824":"lowIncomeA","8825":"highIncome","8826":"lowIncomeB","8827":"midIncome","8828":"lowIncomeB","8829":"midIncome","8830":"midIncome","8831":"lowIncomeA","8832":"midIncome","8833":"midIncome","8834":"lowIncomeA","8835":"midIncome","8836":"midIncome","8837":"midIncome","8838":"lowIncomeA","8839":"lowIncomeA","8840":"midIncome","8841":"midIncome","8842":"midIncome","8843":"lowIncomeB","8844":"midIncome","8845":"midIncome","8846":"midIncome","8847":"midIncome","8848":"midIncome","8849":"midIncome","8850":"midIncome","8851":"midIncome","8852":"midIncome","8853":"midIncome","8854":"midIncome","8855":"lowIncomeB","8856":"midIncome","8857":"lowIncomeB","8858":"midIncome","8859":"midIncome","8860":"midIncome","8861":"lowIncomeB","8862":"highIncome","8863":"midIncome","8864":"midIncome","8865":"midIncome","8866":"midIncome","8867":"midIncome","8868":"lowIncomeB","8869":"highIncome","8870":"midIncome","8871":"midIncome","8872":"highIncome","8873":"midIncome","8874":"highIncome","8875":"midIncome","8876":"midIncome","8877":"highIncome","8878":"highIncome","8879":"lowIncomeB","8880":"midIncome","8881":"midIncome","8882":"midIncome","8883":"midIncome","8884":"midIncome","8885":"midIncome","8886":"midIncome","8887":"midIncome","8888":"highIncome","8889":"midIncome","8890":"midIncome","8891":"midIncome","8892":"midIncome","8893":"lowIncomeA","8894":"midIncome","8895":"midIncome","8896":"midIncome","8897":"highIncome","8898":"highIncome","8899":"lowIncomeB","8900":"midIncome","8901":"highIncome","8902":"midIncome","8903":"highIncome","8904":"midIncome","8905":"midIncome","8906":"midIncome","8907":"midIncome","8908":"midIncome","8909":"midIncome","8910":"midIncome","8911":"midIncome","8912":"highIncome","8913":"midIncome","8914":"highIncome","8915":"midIncome","8916":"midIncome","8917":"midIncome","8918":"midIncome","8919":"midIncome","8920":"midIncome","8921":"midIncome","8922":"midIncome","8923":"midIncome","8924":"midIncome","8925":"midIncome","8926":"lowIncomeA","8927":"midIncome","8928":"midIncome","8929":"midIncome","8930":"lowIncomeB","8931":"midIncome","8932":"midIncome","8933":"midIncome","8934":"highIncome","8935":"midIncome","8936":"midIncome","8937":"lowIncomeA","8938":"lowIncomeB","8939":"lowIncomeB","8940":"midIncome","8941":"midIncome","8942":"midIncome","8943":"midIncome","8944":"midIncome","8945":"midIncome","8946":"midIncome","8947":"midIncome","8948":"midIncome","8949":"midIncome","8950":"lowIncomeB","8951":"midIncome","8952":"midIncome","8953":"midIncome","8954":"midIncome","8955":"lowIncomeA","8956":"midIncome","8957":"midIncome","8958":"midIncome","8959":"lowIncomeB","8960":"lowIncomeA","8961":"midIncome","8962":"midIncome","8963":"midIncome","8964":"midIncome","8965":"lowIncomeA","8966":"midIncome","8967":"midIncome","8968":"midIncome","8969":"midIncome","8970":"lowIncomeB","8971":"highIncome","8972":"highIncome","8973":"midIncome","8974":"midIncome","8975":"midIncome","8976":"midIncome","8977":"midIncome","8978":"midIncome","8979":"midIncome","8980":"midIncome","8981":"lowIncomeB","8982":"midIncome","8983":"midIncome","8984":"lowIncomeB","8985":"midIncome","8986":"midIncome","8987":"midIncome","8988":"lowIncomeA","8989":"midIncome","8990":"midIncome","8991":"midIncome","8992":"midIncome","8993":"midIncome","8994":"midIncome","8995":"midIncome","8996":"midIncome","8997":"midIncome","8998":"midIncome","8999":"midIncome","9000":"midIncome","9001":"midIncome","9002":"midIncome","9003":"midIncome","9004":"midIncome","9005":"midIncome","9006":"midIncome","9007":"midIncome","9008":"highIncome","9009":"lowIncomeB","9010":"lowIncomeB","9011":"midIncome","9012":"midIncome","9013":"midIncome","9014":"midIncome","9015":"midIncome","9016":"midIncome","9017":"lowIncomeA","9018":"midIncome","9019":"highIncome","9020":"midIncome","9021":"midIncome","9022":"lowIncomeB","9023":"midIncome","9024":"midIncome","9025":"midIncome","9026":"highIncome","9027":"midIncome","9028":"midIncome","9029":"midIncome","9030":"midIncome","9031":"midIncome","9032":"midIncome","9033":"midIncome","9034":"midIncome","9035":"midIncome","9036":"midIncome","9037":"highIncome","9038":"midIncome","9039":"highIncome","9040":"midIncome","9041":"midIncome","9042":"midIncome","9043":"midIncome","9044":"lowIncomeA","9045":"midIncome","9046":"midIncome","9047":"midIncome","9048":"midIncome","9049":"lowIncomeB","9050":"midIncome","9051":"midIncome","9052":"midIncome","9053":"midIncome","9054":"highIncome","9055":"midIncome","9056":"midIncome","9057":"midIncome","9058":"midIncome","9059":"lowIncomeA","9060":"midIncome","9061":"lowIncomeB","9062":"lowIncomeA","9063":"lowIncomeB","9064":"midIncome","9065":"midIncome","9066":"midIncome","9067":"lowIncomeB","9068":"midIncome","9069":"midIncome","9070":"highIncome","9071":"midIncome","9072":"midIncome","9073":"midIncome","9074":"lowIncomeA","9075":"lowIncomeA","9076":"midIncome","9077":"midIncome","9078":"lowIncomeA","9079":"lowIncomeA","9080":"midIncome","9081":"midIncome","9082":"midIncome","9083":"midIncome","9084":"midIncome","9085":"lowIncomeA","9086":"midIncome","9087":"midIncome","9088":"midIncome","9089":"highIncome","9090":"lowIncomeB","9091":"midIncome","9092":"lowIncomeB","9093":"lowIncomeB","9094":"midIncome","9095":"midIncome","9096":"midIncome","9097":"midIncome","9098":"midIncome","9099":"midIncome","9100":"lowIncomeB","9101":"midIncome","9102":"midIncome","9103":"midIncome","9104":"lowIncomeB","9105":"midIncome","9106":"highIncome","9107":"midIncome","9108":"midIncome","9109":"lowIncomeB","9110":"midIncome","9111":"lowIncomeB","9112":"midIncome","9113":"lowIncomeA","9114":"lowIncomeA","9115":"midIncome","9116":"midIncome","9117":"midIncome","9118":"midIncome","9119":"midIncome","9120":"highIncome","9121":"midIncome","9122":"midIncome","9123":"midIncome","9124":"lowIncomeA","9125":"highIncome","9126":"lowIncomeB","9127":"midIncome","9128":"midIncome","9129":"midIncome","9130":"lowIncomeB","9131":"highIncome","9132":"highIncome","9133":"midIncome","9134":"highIncome","9135":"midIncome","9136":"midIncome","9137":"midIncome","9138":"midIncome","9139":"midIncome","9140":"highIncome","9141":"midIncome","9142":"midIncome","9143":"midIncome","9144":"midIncome","9145":"midIncome","9146":"midIncome","9147":"midIncome","9148":"midIncome","9149":"lowIncomeB","9150":"midIncome","9151":"midIncome","9152":"lowIncomeA","9153":"midIncome","9154":"midIncome","9155":"midIncome","9156":"midIncome","9157":"midIncome","9158":"lowIncomeA","9159":"midIncome","9160":"midIncome","9161":"highIncome","9162":"midIncome","9163":"midIncome","9164":"midIncome","9165":"midIncome","9166":"midIncome","9167":"midIncome","9168":"lowIncomeA","9169":"lowIncomeB","9170":"lowIncomeA","9171":"midIncome","9172":"midIncome","9173":"midIncome","9174":"midIncome","9175":"midIncome","9176":"midIncome","9177":"midIncome","9178":"midIncome","9179":"midIncome","9180":"midIncome","9181":"midIncome","9182":"midIncome","9183":"midIncome","9184":"midIncome","9185":"lowIncomeA","9186":"midIncome","9187":"lowIncomeA","9188":"midIncome","9189":"midIncome","9190":"midIncome","9191":"lowIncomeB","9192":"midIncome","9193":"lowIncomeA","9194":"midIncome","9195":"midIncome","9196":"midIncome","9197":"midIncome","9198":"highIncome","9199":"midIncome","9200":"midIncome","9201":"midIncome","9202":"midIncome","9203":"highIncome","9204":"midIncome","9205":"midIncome","9206":"highIncome","9207":"midIncome","9208":"midIncome","9209":"midIncome","9210":"midIncome","9211":"midIncome","9212":"lowIncomeB","9213":"midIncome","9214":"midIncome","9215":"midIncome","9216":"midIncome","9217":"midIncome","9218":"midIncome","9219":"highIncome","9220":"midIncome","9221":"midIncome","9222":"midIncome","9223":"highIncome","9224":"lowIncomeB","9225":"midIncome","9226":"midIncome","9227":"midIncome","9228":"lowIncomeB","9229":"midIncome","9230":"midIncome","9231":"midIncome","9232":"lowIncomeA","9233":"midIncome","9234":"lowIncomeB","9235":"midIncome","9236":"midIncome","9237":"midIncome","9238":"midIncome","9239":"midIncome","9240":"midIncome","9241":"midIncome","9242":"lowIncomeB","9243":"midIncome","9244":"lowIncomeB","9245":"midIncome","9246":"midIncome","9247":"midIncome","9248":"midIncome","9249":"lowIncomeA","9250":"midIncome","9251":"lowIncomeB","9252":"lowIncomeB","9253":"lowIncomeA","9254":"lowIncomeA","9255":"lowIncomeB","9256":"lowIncomeB","9257":"lowIncomeB","9258":"lowIncomeA","9259":"lowIncomeA","9260":"midIncome","9261":"lowIncomeA","9262":"lowIncomeA","9263":"lowIncomeB","9264":"midIncome","9265":"lowIncomeA","9266":"lowIncomeA","9267":"lowIncomeB","9268":"midIncome","9269":"lowIncomeB","9270":"lowIncomeA","9271":"lowIncomeB","9272":"lowIncomeB","9273":"lowIncomeA","9274":"lowIncomeB","9275":"lowIncomeB","9276":"lowIncomeA","9277":"lowIncomeB","9278":"lowIncomeA","9279":"lowIncomeA","9280":"lowIncomeB","9281":"midIncome","9282":"lowIncomeA","9283":"lowIncomeA","9284":"lowIncomeA","9285":"lowIncomeA","9286":"lowIncomeB","9287":"midIncome","9288":"lowIncomeA","9289":"lowIncomeB","9290":"lowIncomeB","9291":"lowIncomeB","9292":"lowIncomeB","9293":"midIncome","9294":"lowIncomeB","9295":"lowIncomeB","9296":"lowIncomeB","9297":"lowIncomeA","9298":"lowIncomeB","9299":"lowIncomeB","9300":"lowIncomeA","9301":"lowIncomeB","9302":"lowIncomeA","9303":"lowIncomeA","9304":"lowIncomeA","9305":"lowIncomeB","9306":"lowIncomeB","9307":"lowIncomeB","9308":"lowIncomeB","9309":"lowIncomeA","9310":"lowIncomeB","9311":"lowIncomeA","9312":"midIncome","9313":"lowIncomeA","9314":"lowIncomeB","9315":"lowIncomeA","9316":"lowIncomeB","9317":"lowIncomeB","9318":"lowIncomeA","9319":"lowIncomeA","9320":"lowIncomeA","9321":"lowIncomeA","9322":"lowIncomeA","9323":"lowIncomeA","9324":"lowIncomeA","9325":"lowIncomeB","9326":"lowIncomeA","9327":"lowIncomeB","9328":"lowIncomeA","9329":"lowIncomeB","9330":"lowIncomeB","9331":"lowIncomeB","9332":"lowIncomeA","9333":"lowIncomeA","9334":"lowIncomeA","9335":"lowIncomeA","9336":"lowIncomeA","9337":"lowIncomeA","9338":"lowIncomeA","9339":"lowIncomeA","9340":"lowIncomeB","9341":"lowIncomeA","9342":"lowIncomeA","9343":"lowIncomeB","9344":"lowIncomeB","9345":"lowIncomeB","9346":"lowIncomeA","9347":"lowIncomeB","9348":"lowIncomeA","9349":"lowIncomeA","9350":"lowIncomeB","9351":"lowIncomeB","9352":"lowIncomeB","9353":"lowIncomeB","9354":"lowIncomeB","9355":"lowIncomeA","9356":"lowIncomeA","9357":"lowIncomeB","9358":"lowIncomeA","9359":"lowIncomeB","9360":"midIncome","9361":"lowIncomeB","9362":"lowIncomeA","9363":"lowIncomeA","9364":"lowIncomeB","9365":"lowIncomeA","9366":"lowIncomeB","9367":"midIncome","9368":"lowIncomeB","9369":"lowIncomeB","9370":"lowIncomeB","9371":"lowIncomeB","9372":"lowIncomeB","9373":"midIncome","9374":"lowIncomeA","9375":"lowIncomeB","9376":"lowIncomeB","9377":"lowIncomeB","9378":"lowIncomeB","9379":"lowIncomeB","9380":"lowIncomeA","9381":"lowIncomeB","9382":"lowIncomeA","9383":"lowIncomeB","9384":"lowIncomeA","9385":"lowIncomeA","9386":"lowIncomeA","9387":"lowIncomeA","9388":"lowIncomeB","9389":"midIncome","9390":"lowIncomeA","9391":"lowIncomeA","9392":"lowIncomeA","9393":"lowIncomeA","9394":"lowIncomeB","9395":"lowIncomeB","9396":"lowIncomeA","9397":"lowIncomeA","9398":"lowIncomeA","9399":"lowIncomeA","9400":"lowIncomeA","9401":"lowIncomeA","9402":"lowIncomeA","9403":"lowIncomeA","9404":"lowIncomeB","9405":"lowIncomeA","9406":"midIncome","9407":"lowIncomeA","9408":"lowIncomeB","9409":"lowIncomeA","9410":"lowIncomeB","9411":"lowIncomeA","9412":"lowIncomeB","9413":"lowIncomeB","9414":"lowIncomeB","9415":"lowIncomeA","9416":"lowIncomeB","9417":"midIncome","9418":"lowIncomeA","9419":"lowIncomeA","9420":"lowIncomeA","9421":"lowIncomeA","9422":"lowIncomeB","9423":"lowIncomeA","9424":"lowIncomeB","9425":"lowIncomeB","9426":"lowIncomeA","9427":"lowIncomeA","9428":"lowIncomeA","9429":"lowIncomeA","9430":"lowIncomeA","9431":"lowIncomeB","9432":"lowIncomeA","9433":"lowIncomeA","9434":"lowIncomeA","9435":"lowIncomeA","9436":"lowIncomeA","9437":"lowIncomeB","9438":"lowIncomeB","9439":"lowIncomeA","9440":"lowIncomeB","9441":"lowIncomeB","9442":"midIncome","9443":"lowIncomeA","9444":"lowIncomeA","9445":"midIncome","9446":"midIncome","9447":"midIncome","9448":"midIncome","9449":"lowIncomeB","9450":"highIncome","9451":"midIncome","9452":"midIncome","9453":"lowIncomeA","9454":"midIncome","9455":"midIncome","9456":"lowIncomeB","9457":"midIncome","9458":"lowIncomeA","9459":"midIncome","9460":"highIncome","9461":"midIncome","9462":"lowIncomeB","9463":"midIncome","9464":"midIncome","9465":"midIncome","9466":"lowIncomeB","9467":"midIncome","9468":"highIncome","9469":"lowIncomeA","9470":"midIncome","9471":"highIncome","9472":"highIncome","9473":"midIncome","9474":"highIncome","9475":"midIncome","9476":"lowIncomeA","9477":"midIncome","9478":"midIncome","9479":"midIncome","9480":"midIncome","9481":"midIncome","9482":"midIncome","9483":"lowIncomeA","9484":"midIncome","9485":"lowIncomeA","9486":"midIncome","9487":"midIncome","9488":"lowIncomeB","9489":"midIncome","9490":"lowIncomeB","9491":"highIncome","9492":"highIncome","9493":"highIncome","9494":"lowIncomeA","9495":"midIncome","9496":"highIncome","9497":"midIncome","9498":"midIncome","9499":"highIncome","9500":"midIncome","9501":"midIncome","9502":"midIncome","9503":"midIncome","9504":"midIncome","9505":"lowIncomeB","9506":"midIncome","9507":"midIncome","9508":"midIncome","9509":"midIncome","9510":"midIncome","9511":"midIncome","9512":"midIncome","9513":"midIncome","9514":"midIncome","9515":"midIncome","9516":"midIncome","9517":"midIncome","9518":"highIncome","9519":"lowIncomeB","9520":"lowIncomeB","9521":"lowIncomeA","9522":"midIncome","9523":"lowIncomeA","9524":"midIncome","9525":"lowIncomeA","9526":"midIncome","9527":"midIncome","9528":"highIncome","9529":"midIncome","9530":"midIncome","9531":"lowIncomeB","9532":"midIncome","9533":"highIncome","9534":"midIncome","9535":"midIncome","9536":"midIncome","9537":"midIncome","9538":"lowIncomeB","9539":"midIncome","9540":"highIncome","9541":"midIncome","9542":"highIncome","9543":"midIncome","9544":"midIncome","9545":"midIncome","9546":"midIncome","9547":"midIncome","9548":"lowIncomeA","9549":"midIncome","9550":"midIncome","9551":"midIncome","9552":"midIncome","9553":"midIncome","9554":"midIncome","9555":"midIncome","9556":"midIncome","9557":"lowIncomeB","9558":"midIncome","9559":"midIncome","9560":"midIncome","9561":"midIncome","9562":"lowIncomeA","9563":"highIncome","9564":"midIncome","9565":"midIncome","9566":"lowIncomeA","9567":"lowIncomeB","9568":"midIncome","9569":"lowIncomeB","9570":"midIncome","9571":"lowIncomeA","9572":"highIncome","9573":"midIncome","9574":"midIncome","9575":"midIncome","9576":"highIncome","9577":"midIncome","9578":"midIncome","9579":"midIncome","9580":"lowIncomeA","9581":"lowIncomeA","9582":"midIncome","9583":"highIncome","9584":"midIncome","9585":"midIncome","9586":"lowIncomeA","9587":"midIncome","9588":"midIncome","9589":"midIncome","9590":"midIncome","9591":"highIncome","9592":"midIncome","9593":"midIncome","9594":"midIncome","9595":"midIncome","9596":"midIncome","9597":"midIncome","9598":"midIncome","9599":"midIncome","9600":"midIncome","9601":"midIncome","9602":"lowIncomeA","9603":"midIncome","9604":"midIncome","9605":"highIncome","9606":"midIncome","9607":"lowIncomeB","9608":"midIncome","9609":"midIncome","9610":"midIncome","9611":"midIncome","9612":"midIncome","9613":"lowIncomeB","9614":"lowIncomeA","9615":"midIncome","9616":"midIncome","9617":"midIncome","9618":"midIncome","9619":"highIncome","9620":"midIncome","9621":"lowIncomeA","9622":"midIncome","9623":"midIncome","9624":"lowIncomeB","9625":"midIncome","9626":"midIncome","9627":"midIncome","9628":"midIncome","9629":"midIncome","9630":"highIncome","9631":"lowIncomeA","9632":"midIncome","9633":"lowIncomeA","9634":"midIncome","9635":"lowIncomeA","9636":"lowIncomeA","9637":"midIncome","9638":"midIncome","9639":"midIncome","9640":"midIncome","9641":"lowIncomeB","9642":"midIncome","9643":"midIncome","9644":"lowIncomeB","9645":"midIncome","9646":"midIncome","9647":"midIncome","9648":"midIncome","9649":"midIncome","9650":"highIncome","9651":"midIncome","9652":"midIncome","9653":"highIncome","9654":"midIncome","9655":"lowIncomeA","9656":"highIncome","9657":"highIncome","9658":"lowIncomeB","9659":"midIncome","9660":"midIncome","9661":"midIncome","9662":"midIncome","9663":"midIncome","9664":"midIncome","9665":"midIncome","9666":"midIncome","9667":"midIncome","9668":"lowIncomeB","9669":"lowIncomeA","9670":"midIncome","9671":"midIncome","9672":"midIncome","9673":"midIncome","9674":"lowIncomeA","9675":"midIncome","9676":"lowIncomeA","9677":"midIncome","9678":"midIncome","9679":"midIncome","9680":"midIncome","9681":"midIncome","9682":"lowIncomeB","9683":"midIncome","9684":"midIncome","9685":"lowIncomeA","9686":"midIncome","9687":"midIncome","9688":"lowIncomeB","9689":"midIncome","9690":"lowIncomeA","9691":"midIncome","9692":"midIncome","9693":"highIncome","9694":"midIncome","9695":"highIncome","9696":"midIncome","9697":"midIncome","9698":"midIncome","9699":"lowIncomeB","9700":"midIncome","9701":"lowIncomeB","9702":"lowIncomeB","9703":"lowIncomeA","9704":"midIncome","9705":"midIncome","9706":"midIncome","9707":"highIncome","9708":"midIncome","9709":"midIncome","9710":"midIncome","9711":"highIncome","9712":"midIncome","9713":"midIncome","9714":"midIncome","9715":"midIncome","9716":"lowIncomeB","9717":"midIncome","9718":"midIncome","9719":"midIncome","9720":"midIncome","9721":"midIncome","9722":"midIncome","9723":"midIncome","9724":"midIncome","9725":"midIncome","9726":"midIncome","9727":"highIncome","9728":"midIncome","9729":"midIncome","9730":"midIncome","9731":"lowIncomeA","9732":"lowIncomeB","9733":"midIncome","9734":"midIncome","9735":"midIncome","9736":"midIncome","9737":"lowIncomeB","9738":"midIncome","9739":"midIncome","9740":"midIncome","9741":"midIncome","9742":"midIncome","9743":"midIncome","9744":"midIncome","9745":"lowIncomeB","9746":"midIncome","9747":"midIncome","9748":"lowIncomeB","9749":"midIncome","9750":"midIncome","9751":"midIncome","9752":"midIncome","9753":"lowIncomeB","9754":"midIncome","9755":"highIncome","9756":"lowIncomeA","9757":"lowIncomeA","9758":"midIncome","9759":"lowIncomeB","9760":"lowIncomeA","9761":"midIncome","9762":"midIncome","9763":"lowIncomeA","9764":"midIncome","9765":"midIncome","9766":"midIncome","9767":"midIncome","9768":"midIncome","9769":"highIncome","9770":"midIncome","9771":"midIncome","9772":"midIncome","9773":"midIncome","9774":"midIncome","9775":"midIncome","9776":"midIncome","9777":"highIncome","9778":"lowIncomeB","9779":"midIncome","9780":"midIncome","9781":"midIncome","9782":"lowIncomeA","9783":"midIncome","9784":"midIncome","9785":"lowIncomeB","9786":"highIncome","9787":"lowIncomeB","9788":"midIncome","9789":"midIncome","9790":"midIncome","9791":"midIncome","9792":"midIncome","9793":"highIncome","9794":"lowIncomeB","9795":"lowIncomeB","9796":"midIncome","9797":"midIncome","9798":"midIncome","9799":"midIncome","9800":"midIncome","9801":"lowIncomeB","9802":"midIncome","9803":"midIncome","9804":"midIncome","9805":"midIncome","9806":"midIncome","9807":"midIncome","9808":"midIncome","9809":"highIncome","9810":"midIncome","9811":"midIncome","9812":"midIncome","9813":"lowIncomeA","9814":"midIncome","9815":"highIncome","9816":"midIncome","9817":"lowIncomeA","9818":"lowIncomeA","9819":"midIncome","9820":"midIncome","9821":"lowIncomeB","9822":"lowIncomeB","9823":"midIncome","9824":"lowIncomeA","9825":"highIncome","9826":"lowIncomeB","9827":"midIncome","9828":"midIncome","9829":"lowIncomeA","9830":"lowIncomeB","9831":"lowIncomeA","9832":"midIncome","9833":"midIncome","9834":"midIncome","9835":"highIncome","9836":"lowIncomeA","9837":"highIncome","9838":"midIncome","9839":"midIncome","9840":"midIncome","9841":"midIncome","9842":"highIncome","9843":"midIncome","9844":"lowIncomeB","9845":"lowIncomeB","9846":"midIncome","9847":"midIncome","9848":"midIncome","9849":"highIncome","9850":"midIncome","9851":"midIncome","9852":"midIncome","9853":"midIncome","9854":"lowIncomeB","9855":"midIncome","9856":"highIncome","9857":"midIncome","9858":"highIncome","9859":"midIncome","9860":"midIncome","9861":"midIncome","9862":"midIncome","9863":"midIncome","9864":"midIncome","9865":"midIncome","9866":"midIncome","9867":"lowIncomeA","9868":"midIncome","9869":"lowIncomeA","9870":"midIncome","9871":"midIncome","9872":"lowIncomeA","9873":"midIncome","9874":"midIncome","9875":"midIncome","9876":"lowIncomeA","9877":"midIncome","9878":"midIncome","9879":"midIncome","9880":"midIncome","9881":"midIncome","9882":"midIncome","9883":"midIncome","9884":"midIncome","9885":"lowIncomeB","9886":"lowIncomeB","9887":"midIncome","9888":"midIncome","9889":"midIncome","9890":"lowIncomeB","9891":"lowIncomeA","9892":"midIncome","9893":"midIncome","9894":"midIncome","9895":"highIncome","9896":"midIncome","9897":"lowIncomeB","9898":"midIncome","9899":"midIncome","9900":"highIncome","9901":"midIncome","9902":"midIncome","9903":"midIncome","9904":"midIncome","9905":"midIncome","9906":"highIncome","9907":"midIncome","9908":"midIncome","9909":"lowIncomeA","9910":"midIncome","9911":"midIncome","9912":"lowIncomeB","9913":"midIncome","9914":"midIncome","9915":"midIncome","9916":"midIncome","9917":"midIncome","9918":"lowIncomeB","9919":"midIncome","9920":"midIncome","9921":"midIncome","9922":"midIncome","9923":"midIncome","9924":"lowIncomeB","9925":"midIncome","9926":"midIncome","9927":"midIncome","9928":"midIncome","9929":"midIncome","9930":"lowIncomeA","9931":"midIncome","9932":"midIncome","9933":"lowIncomeB","9934":"midIncome","9935":"midIncome","9936":"midIncome","9937":"midIncome","9938":"midIncome","9939":"midIncome","9940":"midIncome","9941":"lowIncomeB","9942":"midIncome","9943":"midIncome","9944":"highIncome","9945":"lowIncomeB","9946":"lowIncomeA","9947":"midIncome","9948":"lowIncomeB","9949":"midIncome","9950":"lowIncomeB","9951":"midIncome","9952":"lowIncomeB","9953":"midIncome","9954":"midIncome","9955":"midIncome","9956":"midIncome","9957":"midIncome","9958":"midIncome","9959":"midIncome","9960":"midIncome","9961":"highIncome","9962":"midIncome","9963":"midIncome","9964":"midIncome","9965":"midIncome","9966":"midIncome","9967":"midIncome","9968":"midIncome","9969":"midIncome","9970":"midIncome","9971":"midIncome","9972":"midIncome","9973":"midIncome","9974":"midIncome","9975":"midIncome","9976":"midIncome","9977":"midIncome","9978":"midIncome","9979":"lowIncomeB","9980":"midIncome","9981":"midIncome","9982":"midIncome","9983":"midIncome","9984":"lowIncomeB","9985":"midIncome","9986":"midIncome","9987":"lowIncomeB","9988":"midIncome","9989":"midIncome","9990":"midIncome","9991":"lowIncomeB","9992":"midIncome","9993":"midIncome","9994":"midIncome","9995":"lowIncomeB","9996":"midIncome","9997":"highIncome","9998":"lowIncomeA","9999":"midIncome","10000":"midIncome","10001":"midIncome","10002":"lowIncomeA","10003":"midIncome","10004":"highIncome","10005":"lowIncomeA","10006":"midIncome","10007":"midIncome","10008":"midIncome","10009":"lowIncomeB","10010":"midIncome","10011":"midIncome","10012":"midIncome","10013":"midIncome","10014":"midIncome","10015":"midIncome","10016":"lowIncomeB","10017":"midIncome","10018":"lowIncomeA","10019":"midIncome","10020":"midIncome","10021":"midIncome","10022":"lowIncomeB","10023":"lowIncomeB","10024":"lowIncomeB","10025":"midIncome","10026":"midIncome","10027":"highIncome","10028":"midIncome","10029":"midIncome","10030":"midIncome","10031":"midIncome","10032":"midIncome","10033":"midIncome","10034":"midIncome","10035":"midIncome","10036":"midIncome","10037":"midIncome","10038":"midIncome","10039":"lowIncomeA","10040":"midIncome","10041":"lowIncomeA","10042":"highIncome","10043":"midIncome","10044":"midIncome","10045":"highIncome","10046":"lowIncomeA","10047":"midIncome","10048":"highIncome","10049":"midIncome","10050":"highIncome","10051":"highIncome","10052":"midIncome","10053":"midIncome","10054":"midIncome","10055":"midIncome","10056":"midIncome","10057":"midIncome","10058":"lowIncomeB","10059":"midIncome","10060":"midIncome","10061":"midIncome","10062":"midIncome","10063":"midIncome","10064":"midIncome","10065":"midIncome","10066":"midIncome","10067":"highIncome","10068":"highIncome","10069":"highIncome","10070":"midIncome","10071":"lowIncomeB","10072":"midIncome","10073":"midIncome","10074":"lowIncomeA","10075":"midIncome","10076":"midIncome","10077":"midIncome","10078":"midIncome","10079":"midIncome","10080":"midIncome","10081":"lowIncomeB","10082":"midIncome","10083":"midIncome","10084":"highIncome","10085":"midIncome","10086":"lowIncomeA","10087":"midIncome","10088":"midIncome","10089":"midIncome","10090":"midIncome","10091":"midIncome","10092":"midIncome","10093":"midIncome","10094":"midIncome","10095":"midIncome","10096":"highIncome","10097":"midIncome","10098":"midIncome","10099":"highIncome","10100":"midIncome","10101":"midIncome","10102":"lowIncomeA","10103":"lowIncomeB","10104":"midIncome","10105":"midIncome","10106":"midIncome","10107":"lowIncomeB","10108":"midIncome","10109":"midIncome","10110":"midIncome","10111":"lowIncomeA","10112":"lowIncomeB","10113":"lowIncomeB","10114":"lowIncomeA","10115":"midIncome","10116":"midIncome","10117":"midIncome","10118":"lowIncomeA","10119":"lowIncomeB","10120":"highIncome","10121":"midIncome","10122":"midIncome","10123":"midIncome","10124":"midIncome","10125":"midIncome","10126":"midIncome","10127":"midIncome","10128":"midIncome","10129":"highIncome","10130":"midIncome","10131":"midIncome","10132":"lowIncomeA","10133":"lowIncomeA","10134":"midIncome","10135":"midIncome","10136":"midIncome","10137":"lowIncomeA","10138":"midIncome","10139":"midIncome","10140":"highIncome","10141":"midIncome","10142":"midIncome","10143":"highIncome","10144":"highIncome","10145":"midIncome","10146":"lowIncomeB","10147":"midIncome","10148":"lowIncomeB","10149":"lowIncomeA","10150":"lowIncomeB","10151":"midIncome","10152":"midIncome","10153":"midIncome","10154":"midIncome","10155":"highIncome","10156":"midIncome","10157":"highIncome","10158":"midIncome","10159":"midIncome","10160":"midIncome","10161":"midIncome","10162":"midIncome","10163":"midIncome","10164":"midIncome","10165":"midIncome","10166":"highIncome","10167":"lowIncomeB","10168":"midIncome","10169":"midIncome","10170":"midIncome","10171":"midIncome","10172":"highIncome","10173":"lowIncomeB","10174":"midIncome","10175":"midIncome","10176":"midIncome","10177":"lowIncomeB","10178":"midIncome","10179":"lowIncomeB","10180":"lowIncomeA","10181":"midIncome","10182":"midIncome","10183":"midIncome","10184":"lowIncomeB","10185":"midIncome","10186":"lowIncomeB","10187":"midIncome","10188":"lowIncomeB","10189":"midIncome","10190":"midIncome","10191":"midIncome","10192":"midIncome","10193":"midIncome","10194":"midIncome","10195":"midIncome","10196":"highIncome","10197":"midIncome","10198":"lowIncomeB","10199":"lowIncomeB","10200":"midIncome","10201":"midIncome","10202":"lowIncomeA","10203":"midIncome","10204":"midIncome","10205":"midIncome","10206":"midIncome","10207":"midIncome","10208":"midIncome","10209":"lowIncomeB","10210":"midIncome","10211":"midIncome","10212":"midIncome","10213":"lowIncomeA","10214":"lowIncomeB","10215":"midIncome","10216":"midIncome","10217":"midIncome","10218":"midIncome","10219":"midIncome","10220":"lowIncomeA","10221":"midIncome","10222":"midIncome","10223":"midIncome","10224":"lowIncomeA","10225":"midIncome","10226":"midIncome","10227":"midIncome","10228":"midIncome","10229":"highIncome","10230":"lowIncomeA","10231":"highIncome","10232":"midIncome","10233":"midIncome","10234":"midIncome","10235":"midIncome","10236":"midIncome","10237":"midIncome","10238":"midIncome","10239":"highIncome","10240":"midIncome","10241":"midIncome","10242":"midIncome","10243":"midIncome","10244":"midIncome","10245":"lowIncomeB","10246":"midIncome","10247":"midIncome","10248":"lowIncomeB","10249":"midIncome","10250":"midIncome","10251":"midIncome","10252":"highIncome","10253":"midIncome","10254":"highIncome","10255":"midIncome","10256":"midIncome","10257":"lowIncomeB","10258":"midIncome","10259":"lowIncomeB","10260":"midIncome","10261":"highIncome","10262":"lowIncomeA","10263":"midIncome","10264":"midIncome","10265":"midIncome","10266":"highIncome","10267":"midIncome","10268":"midIncome","10269":"midIncome","10270":"lowIncomeA","10271":"midIncome","10272":"lowIncomeB","10273":"midIncome","10274":"midIncome","10275":"highIncome","10276":"lowIncomeB","10277":"lowIncomeB","10278":"lowIncomeA","10279":"midIncome","10280":"midIncome","10281":"midIncome","10282":"midIncome","10283":"lowIncomeA","10284":"midIncome","10285":"lowIncomeA","10286":"midIncome","10287":"lowIncomeB","10288":"midIncome","10289":"lowIncomeB","10290":"midIncome","10291":"lowIncomeA","10292":"midIncome","10293":"midIncome","10294":"midIncome","10295":"midIncome","10296":"midIncome","10297":"midIncome","10298":"lowIncomeB","10299":"midIncome","10300":"midIncome","10301":"midIncome","10302":"midIncome","10303":"midIncome","10304":"midIncome","10305":"lowIncomeB","10306":"midIncome","10307":"midIncome","10308":"midIncome","10309":"midIncome","10310":"midIncome","10311":"lowIncomeA","10312":"midIncome","10313":"midIncome","10314":"highIncome","10315":"midIncome","10316":"midIncome","10317":"midIncome","10318":"midIncome","10319":"midIncome","10320":"midIncome","10321":"midIncome","10322":"highIncome","10323":"midIncome","10324":"midIncome","10325":"highIncome","10326":"highIncome","10327":"lowIncomeA","10328":"midIncome","10329":"midIncome","10330":"midIncome","10331":"midIncome","10332":"midIncome","10333":"midIncome","10334":"midIncome","10335":"midIncome","10336":"midIncome","10337":"midIncome","10338":"midIncome","10339":"midIncome","10340":"midIncome","10341":"midIncome","10342":"midIncome","10343":"highIncome","10344":"midIncome","10345":"midIncome","10346":"lowIncomeB","10347":"midIncome","10348":"lowIncomeB","10349":"lowIncomeB","10350":"lowIncomeB","10351":"midIncome","10352":"midIncome","10353":"lowIncomeA","10354":"midIncome","10355":"midIncome","10356":"midIncome","10357":"midIncome","10358":"lowIncomeB","10359":"midIncome","10360":"midIncome","10361":"midIncome","10362":"midIncome","10363":"midIncome","10364":"highIncome","10365":"midIncome","10366":"midIncome","10367":"midIncome","10368":"midIncome","10369":"midIncome","10370":"midIncome","10371":"highIncome","10372":"highIncome","10373":"midIncome","10374":"lowIncomeB","10375":"highIncome","10376":"midIncome","10377":"lowIncomeB","10378":"midIncome","10379":"midIncome","10380":"midIncome","10381":"midIncome","10382":"midIncome","10383":"highIncome","10384":"midIncome","10385":"midIncome","10386":"midIncome","10387":"midIncome","10388":"midIncome","10389":"midIncome","10390":"midIncome","10391":"midIncome","10392":"midIncome","10393":"midIncome","10394":"midIncome","10395":"midIncome","10396":"midIncome","10397":"lowIncomeB","10398":"midIncome","10399":"midIncome","10400":"midIncome","10401":"midIncome","10402":"lowIncomeB","10403":"midIncome","10404":"midIncome","10405":"lowIncomeA","10406":"highIncome","10407":"lowIncomeA","10408":"midIncome","10409":"midIncome","10410":"lowIncomeB","10411":"midIncome","10412":"midIncome","10413":"highIncome","10414":"midIncome","10415":"midIncome","10416":"lowIncomeA","10417":"midIncome","10418":"lowIncomeA","10419":"midIncome","10420":"midIncome","10421":"lowIncomeB","10422":"lowIncomeB","10423":"midIncome","10424":"midIncome","10425":"midIncome","10426":"highIncome","10427":"midIncome","10428":"midIncome","10429":"midIncome","10430":"midIncome","10431":"midIncome","10432":"lowIncomeA","10433":"midIncome","10434":"midIncome","10435":"midIncome","10436":"lowIncomeB","10437":"midIncome","10438":"lowIncomeA","10439":"midIncome","10440":"midIncome","10441":"midIncome","10442":"lowIncomeB","10443":"midIncome","10444":"midIncome","10445":"midIncome","10446":"lowIncomeA","10447":"highIncome","10448":"midIncome","10449":"lowIncomeB","10450":"midIncome","10451":"lowIncomeA","10452":"lowIncomeB","10453":"midIncome","10454":"midIncome","10455":"lowIncomeA","10456":"midIncome","10457":"midIncome","10458":"midIncome","10459":"midIncome","10460":"lowIncomeA","10461":"midIncome","10462":"highIncome","10463":"midIncome","10464":"midIncome","10465":"lowIncomeB","10466":"highIncome","10467":"midIncome","10468":"midIncome","10469":"lowIncomeB","10470":"lowIncomeB","10471":"midIncome","10472":"midIncome","10473":"lowIncomeB","10474":"midIncome","10475":"midIncome","10476":"midIncome","10477":"midIncome","10478":"lowIncomeA","10479":"midIncome","10480":"highIncome","10481":"highIncome","10482":"midIncome","10483":"midIncome","10484":"lowIncomeB","10485":"midIncome","10486":"lowIncomeA","10487":"midIncome","10488":"lowIncomeB","10489":"midIncome","10490":"midIncome","10491":"midIncome","10492":"midIncome","10493":"midIncome","10494":"lowIncomeB","10495":"midIncome","10496":"lowIncomeB","10497":"lowIncomeB","10498":"midIncome","10499":"midIncome","10500":"highIncome","10501":"midIncome","10502":"midIncome","10503":"highIncome","10504":"highIncome","10505":"highIncome","10506":"highIncome","10507":"midIncome","10508":"midIncome","10509":"midIncome","10510":"lowIncomeB","10511":"midIncome","10512":"lowIncomeA","10513":"midIncome","10514":"midIncome","10515":"midIncome","10516":"highIncome","10517":"highIncome","10518":"midIncome","10519":"midIncome","10520":"midIncome","10521":"midIncome","10522":"lowIncomeA","10523":"midIncome","10524":"lowIncomeA","10525":"midIncome","10526":"midIncome","10527":"midIncome","10528":"midIncome","10529":"midIncome","10530":"midIncome","10531":"midIncome","10532":"midIncome","10533":"midIncome","10534":"midIncome","10535":"midIncome","10536":"midIncome","10537":"midIncome","10538":"midIncome","10539":"highIncome","10540":"midIncome","10541":"midIncome","10542":"midIncome","10543":"midIncome","10544":"midIncome","10545":"highIncome","10546":"midIncome","10547":"midIncome","10548":"midIncome","10549":"midIncome","10550":"midIncome","10551":"highIncome","10552":"midIncome","10553":"midIncome","10554":"midIncome","10555":"midIncome","10556":"midIncome","10557":"lowIncomeB","10558":"midIncome","10559":"midIncome","10560":"midIncome","10561":"midIncome","10562":"highIncome","10563":"midIncome","10564":"midIncome","10565":"midIncome","10566":"lowIncomeA","10567":"midIncome","10568":"highIncome","10569":"lowIncomeB","10570":"midIncome","10571":"midIncome","10572":"midIncome","10573":"highIncome","10574":"midIncome","10575":"midIncome","10576":"midIncome","10577":"midIncome","10578":"lowIncomeA","10579":"midIncome","10580":"midIncome","10581":"midIncome","10582":"midIncome","10583":"midIncome","10584":"lowIncomeB","10585":"midIncome","10586":"midIncome","10587":"lowIncomeA","10588":"midIncome","10589":"lowIncomeB","10590":"midIncome","10591":"midIncome","10592":"lowIncomeA","10593":"highIncome","10594":"lowIncomeA","10595":"midIncome","10596":"midIncome","10597":"midIncome","10598":"midIncome","10599":"midIncome","10600":"midIncome","10601":"midIncome","10602":"midIncome","10603":"midIncome","10604":"midIncome","10605":"midIncome","10606":"midIncome","10607":"midIncome","10608":"lowIncomeA","10609":"midIncome","10610":"highIncome","10611":"highIncome","10612":"highIncome","10613":"midIncome","10614":"highIncome","10615":"lowIncomeA","10616":"midIncome","10617":"midIncome","10618":"highIncome","10619":"lowIncomeA","10620":"midIncome","10621":"midIncome","10622":"lowIncomeB","10623":"midIncome","10624":"midIncome","10625":"midIncome","10626":"midIncome","10627":"lowIncomeA","10628":"lowIncomeB","10629":"midIncome","10630":"midIncome","10631":"midIncome","10632":"midIncome","10633":"midIncome","10634":"midIncome","10635":"midIncome","10636":"midIncome","10637":"highIncome","10638":"midIncome","10639":"highIncome","10640":"midIncome","10641":"midIncome","10642":"lowIncomeA","10643":"midIncome","10644":"midIncome","10645":"midIncome","10646":"lowIncomeA","10647":"midIncome","10648":"lowIncomeB","10649":"midIncome","10650":"midIncome","10651":"highIncome","10652":"midIncome","10653":"lowIncomeB","10654":"midIncome","10655":"midIncome","10656":"midIncome","10657":"highIncome","10658":"midIncome","10659":"midIncome","10660":"midIncome","10661":"midIncome","10662":"lowIncomeB","10663":"lowIncomeA","10664":"lowIncomeA","10665":"lowIncomeB","10666":"midIncome","10667":"midIncome","10668":"midIncome","10669":"midIncome","10670":"midIncome","10671":"midIncome","10672":"midIncome","10673":"lowIncomeB","10674":"midIncome","10675":"lowIncomeA","10676":"lowIncomeB","10677":"midIncome","10678":"midIncome","10679":"midIncome","10680":"midIncome","10681":"lowIncomeA","10682":"midIncome","10683":"midIncome","10684":"lowIncomeA","10685":"midIncome","10686":"lowIncomeA","10687":"midIncome","10688":"midIncome","10689":"lowIncomeA","10690":"midIncome","10691":"midIncome","10692":"midIncome","10693":"highIncome","10694":"midIncome","10695":"midIncome","10696":"midIncome","10697":"highIncome","10698":"lowIncomeB","10699":"midIncome","10700":"midIncome","10701":"highIncome","10702":"midIncome","10703":"midIncome","10704":"highIncome","10705":"lowIncomeB","10706":"midIncome","10707":"lowIncomeA","10708":"lowIncomeA","10709":"lowIncomeA","10710":"midIncome","10711":"midIncome","10712":"midIncome","10713":"lowIncomeB","10714":"midIncome","10715":"midIncome","10716":"midIncome","10717":"midIncome","10718":"midIncome","10719":"lowIncomeA","10720":"midIncome","10721":"midIncome","10722":"midIncome","10723":"midIncome","10724":"highIncome","10725":"midIncome","10726":"midIncome","10727":"midIncome","10728":"midIncome","10729":"lowIncomeA","10730":"midIncome","10731":"midIncome","10732":"highIncome","10733":"lowIncomeA","10734":"midIncome","10735":"midIncome","10736":"midIncome","10737":"midIncome","10738":"midIncome","10739":"midIncome","10740":"midIncome","10741":"lowIncomeA","10742":"midIncome","10743":"midIncome","10744":"midIncome","10745":"midIncome","10746":"midIncome","10747":"midIncome","10748":"highIncome","10749":"midIncome","10750":"midIncome","10751":"lowIncomeB","10752":"midIncome","10753":"lowIncomeA","10754":"highIncome","10755":"lowIncomeA","10756":"lowIncomeB","10757":"lowIncomeA","10758":"midIncome","10759":"midIncome","10760":"midIncome","10761":"midIncome","10762":"midIncome","10763":"midIncome","10764":"midIncome","10765":"lowIncomeB","10766":"midIncome","10767":"midIncome","10768":"midIncome","10769":"midIncome","10770":"midIncome","10771":"midIncome","10772":"midIncome","10773":"midIncome","10774":"midIncome","10775":"midIncome","10776":"highIncome","10777":"midIncome","10778":"lowIncomeB","10779":"midIncome","10780":"highIncome","10781":"midIncome","10782":"midIncome","10783":"midIncome","10784":"midIncome","10785":"midIncome","10786":"midIncome","10787":"midIncome","10788":"lowIncomeB","10789":"midIncome","10790":"midIncome","10791":"midIncome","10792":"midIncome","10793":"midIncome","10794":"midIncome","10795":"midIncome","10796":"midIncome","10797":"midIncome","10798":"midIncome","10799":"highIncome","10800":"midIncome","10801":"lowIncomeA","10802":"midIncome","10803":"midIncome","10804":"midIncome","10805":"midIncome","10806":"midIncome","10807":"lowIncomeA","10808":"lowIncomeA","10809":"lowIncomeB","10810":"midIncome","10811":"midIncome","10812":"midIncome","10813":"highIncome","10814":"lowIncomeB","10815":"midIncome","10816":"midIncome","10817":"highIncome","10818":"lowIncomeA","10819":"midIncome","10820":"midIncome","10821":"lowIncomeA","10822":"midIncome","10823":"midIncome","10824":"highIncome","10825":"midIncome","10826":"midIncome","10827":"midIncome","10828":"midIncome","10829":"midIncome","10830":"highIncome","10831":"midIncome","10832":"midIncome","10833":"lowIncomeA","10834":"midIncome","10835":"midIncome","10836":"midIncome","10837":"midIncome","10838":"highIncome","10839":"lowIncomeA","10840":"highIncome","10841":"midIncome","10842":"midIncome","10843":"midIncome","10844":"midIncome","10845":"midIncome","10846":"midIncome","10847":"midIncome","10848":"lowIncomeB","10849":"midIncome","10850":"midIncome","10851":"midIncome","10852":"midIncome","10853":"midIncome","10854":"midIncome","10855":"midIncome","10856":"midIncome","10857":"midIncome","10858":"lowIncomeB","10859":"midIncome","10860":"midIncome","10861":"midIncome","10862":"highIncome","10863":"midIncome","10864":"midIncome","10865":"midIncome","10866":"midIncome","10867":"midIncome","10868":"midIncome","10869":"midIncome","10870":"midIncome","10871":"midIncome","10872":"midIncome","10873":"midIncome","10874":"midIncome","10875":"midIncome","10876":"lowIncomeB","10877":"midIncome","10878":"lowIncomeB","10879":"midIncome","10880":"midIncome","10881":"lowIncomeB","10882":"midIncome","10883":"highIncome","10884":"midIncome","10885":"midIncome","10886":"midIncome","10887":"midIncome","10888":"lowIncomeA","10889":"midIncome","10890":"midIncome","10891":"midIncome","10892":"midIncome","10893":"lowIncomeA","10894":"lowIncomeA","10895":"highIncome","10896":"lowIncomeB","10897":"midIncome","10898":"highIncome","10899":"midIncome","10900":"midIncome","10901":"midIncome","10902":"lowIncomeA","10903":"midIncome","10904":"lowIncomeA","10905":"lowIncomeA","10906":"midIncome","10907":"midIncome","10908":"midIncome","10909":"midIncome","10910":"midIncome","10911":"lowIncomeA","10912":"lowIncomeB","10913":"midIncome","10914":"lowIncomeB","10915":"midIncome","10916":"lowIncomeB","10917":"midIncome","10918":"midIncome","10919":"midIncome","10920":"midIncome","10921":"midIncome","10922":"midIncome","10923":"midIncome","10924":"midIncome","10925":"lowIncomeA","10926":"midIncome","10927":"midIncome","10928":"midIncome","10929":"midIncome","10930":"midIncome","10931":"midIncome","10932":"lowIncomeA","10933":"midIncome","10934":"midIncome","10935":"midIncome","10936":"midIncome","10937":"highIncome","10938":"midIncome","10939":"highIncome","10940":"highIncome","10941":"lowIncomeA","10942":"lowIncomeB","10943":"midIncome","10944":"highIncome","10945":"midIncome","10946":"lowIncomeA","10947":"midIncome","10948":"highIncome","10949":"midIncome","10950":"midIncome","10951":"midIncome","10952":"midIncome","10953":"midIncome","10954":"lowIncomeB","10955":"lowIncomeA","10956":"midIncome","10957":"midIncome","10958":"midIncome","10959":"midIncome","10960":"midIncome","10961":"midIncome","10962":"lowIncomeA","10963":"lowIncomeB","10964":"lowIncomeB","10965":"midIncome","10966":"midIncome","10967":"midIncome","10968":"midIncome","10969":"midIncome","10970":"lowIncomeB","10971":"lowIncomeB","10972":"midIncome","10973":"midIncome","10974":"highIncome","10975":"highIncome","10976":"midIncome","10977":"midIncome","10978":"midIncome","10979":"lowIncomeA","10980":"midIncome","10981":"midIncome","10982":"midIncome","10983":"midIncome","10984":"lowIncomeA","10985":"midIncome","10986":"midIncome","10987":"midIncome","10988":"lowIncomeB","10989":"midIncome","10990":"midIncome","10991":"midIncome","10992":"midIncome","10993":"lowIncomeA","10994":"midIncome","10995":"midIncome","10996":"midIncome","10997":"lowIncomeA","10998":"midIncome","10999":"midIncome","11000":"midIncome","11001":"lowIncomeA","11002":"midIncome","11003":"midIncome","11004":"lowIncomeA","11005":"midIncome","11006":"midIncome","11007":"midIncome","11008":"midIncome","11009":"lowIncomeB","11010":"midIncome","11011":"midIncome","11012":"midIncome","11013":"lowIncomeB","11014":"midIncome","11015":"lowIncomeB","11016":"midIncome","11017":"midIncome","11018":"midIncome","11019":"lowIncomeA","11020":"midIncome","11021":"midIncome","11022":"midIncome","11023":"midIncome","11024":"midIncome","11025":"midIncome","11026":"midIncome","11027":"lowIncomeA","11028":"lowIncomeB","11029":"lowIncomeB","11030":"midIncome","11031":"midIncome","11032":"midIncome","11033":"midIncome","11034":"midIncome","11035":"lowIncomeA","11036":"lowIncomeA","11037":"lowIncomeA","11038":"midIncome","11039":"midIncome","11040":"lowIncomeB","11041":"midIncome","11042":"midIncome","11043":"midIncome","11044":"highIncome","11045":"lowIncomeB","11046":"midIncome","11047":"midIncome","11048":"lowIncomeB","11049":"midIncome","11050":"lowIncomeB","11051":"midIncome","11052":"lowIncomeA","11053":"midIncome","11054":"lowIncomeB","11055":"highIncome","11056":"midIncome","11057":"midIncome","11058":"midIncome","11059":"highIncome","11060":"highIncome","11061":"midIncome","11062":"midIncome","11063":"midIncome","11064":"midIncome","11065":"lowIncomeB","11066":"midIncome","11067":"midIncome","11068":"lowIncomeB","11069":"midIncome","11070":"midIncome","11071":"midIncome","11072":"midIncome","11073":"midIncome","11074":"highIncome","11075":"midIncome","11076":"midIncome","11077":"lowIncomeA","11078":"lowIncomeB","11079":"midIncome","11080":"midIncome","11081":"lowIncomeA","11082":"midIncome","11083":"lowIncomeA","11084":"midIncome","11085":"midIncome","11086":"midIncome","11087":"midIncome","11088":"midIncome","11089":"midIncome","11090":"lowIncomeA","11091":"midIncome","11092":"midIncome","11093":"midIncome","11094":"midIncome","11095":"midIncome","11096":"midIncome","11097":"midIncome","11098":"midIncome","11099":"midIncome","11100":"midIncome","11101":"lowIncomeB","11102":"lowIncomeA","11103":"midIncome","11104":"midIncome","11105":"midIncome","11106":"lowIncomeB","11107":"highIncome","11108":"lowIncomeB","11109":"midIncome","11110":"midIncome","11111":"lowIncomeA","11112":"midIncome","11113":"midIncome","11114":"midIncome","11115":"midIncome","11116":"midIncome","11117":"midIncome","11118":"highIncome","11119":"midIncome","11120":"midIncome","11121":"lowIncomeA","11122":"midIncome","11123":"midIncome","11124":"midIncome","11125":"midIncome","11126":"midIncome","11127":"highIncome","11128":"highIncome","11129":"midIncome","11130":"lowIncomeB","11131":"midIncome","11132":"midIncome","11133":"midIncome","11134":"lowIncomeB","11135":"lowIncomeB","11136":"highIncome","11137":"midIncome","11138":"midIncome","11139":"midIncome","11140":"midIncome","11141":"midIncome","11142":"highIncome","11143":"lowIncomeB","11144":"lowIncomeB","11145":"midIncome","11146":"highIncome","11147":"midIncome","11148":"midIncome","11149":"midIncome","11150":"midIncome","11151":"midIncome","11152":"midIncome","11153":"midIncome","11154":"midIncome","11155":"lowIncomeA","11156":"highIncome","11157":"midIncome","11158":"midIncome","11159":"lowIncomeB","11160":"midIncome","11161":"midIncome","11162":"lowIncomeB","11163":"midIncome","11164":"midIncome","11165":"midIncome","11166":"midIncome","11167":"lowIncomeB","11168":"midIncome","11169":"midIncome","11170":"midIncome","11171":"midIncome","11172":"midIncome","11173":"midIncome","11174":"highIncome","11175":"midIncome","11176":"midIncome","11177":"lowIncomeA","11178":"midIncome","11179":"midIncome","11180":"midIncome","11181":"lowIncomeB","11182":"lowIncomeA","11183":"midIncome","11184":"midIncome","11185":"midIncome","11186":"lowIncomeA","11187":"midIncome","11188":"midIncome","11189":"midIncome","11190":"midIncome","11191":"lowIncomeA","11192":"highIncome","11193":"midIncome","11194":"lowIncomeA","11195":"midIncome","11196":"midIncome","11197":"lowIncomeA","11198":"midIncome","11199":"lowIncomeA","11200":"midIncome","11201":"midIncome","11202":"highIncome","11203":"midIncome","11204":"midIncome","11205":"highIncome","11206":"midIncome","11207":"midIncome","11208":"midIncome","11209":"lowIncomeA","11210":"midIncome","11211":"midIncome","11212":"midIncome","11213":"lowIncomeB","11214":"midIncome","11215":"lowIncomeB","11216":"midIncome","11217":"midIncome","11218":"midIncome","11219":"lowIncomeB","11220":"midIncome","11221":"midIncome","11222":"midIncome","11223":"midIncome","11224":"lowIncomeB","11225":"lowIncomeB","11226":"midIncome","11227":"highIncome","11228":"midIncome","11229":"midIncome","11230":"midIncome","11231":"midIncome","11232":"midIncome","11233":"midIncome","11234":"midIncome","11235":"midIncome","11236":"midIncome","11237":"highIncome","11238":"midIncome","11239":"highIncome","11240":"midIncome","11241":"highIncome","11242":"midIncome","11243":"midIncome","11244":"lowIncomeA","11245":"midIncome","11246":"midIncome","11247":"midIncome","11248":"midIncome","11249":"midIncome","11250":"midIncome","11251":"midIncome","11252":"highIncome","11253":"midIncome","11254":"lowIncomeA","11255":"midIncome","11256":"midIncome","11257":"midIncome","11258":"midIncome","11259":"midIncome","11260":"midIncome","11261":"lowIncomeA","11262":"midIncome","11263":"midIncome","11264":"lowIncomeB","11265":"midIncome","11266":"highIncome","11267":"midIncome","11268":"midIncome","11269":"midIncome","11270":"highIncome","11271":"midIncome","11272":"midIncome","11273":"highIncome","11274":"lowIncomeB","11275":"lowIncomeB","11276":"midIncome","11277":"highIncome","11278":"highIncome","11279":"midIncome","11280":"lowIncomeB","11281":"lowIncomeA","11282":"midIncome","11283":"lowIncomeB","11284":"midIncome","11285":"midIncome","11286":"midIncome","11287":"midIncome","11288":"midIncome","11289":"midIncome","11290":"midIncome","11291":"midIncome","11292":"midIncome","11293":"midIncome","11294":"midIncome","11295":"lowIncomeB","11296":"midIncome","11297":"midIncome","11298":"midIncome","11299":"midIncome","11300":"highIncome","11301":"midIncome","11302":"midIncome","11303":"highIncome","11304":"midIncome","11305":"lowIncomeA","11306":"midIncome","11307":"midIncome","11308":"lowIncomeA","11309":"midIncome","11310":"lowIncomeB","11311":"midIncome","11312":"midIncome","11313":"midIncome","11314":"midIncome","11315":"midIncome","11316":"highIncome","11317":"midIncome","11318":"midIncome","11319":"midIncome","11320":"midIncome","11321":"midIncome","11322":"midIncome","11323":"midIncome","11324":"highIncome","11325":"midIncome","11326":"midIncome","11327":"highIncome","11328":"lowIncomeB","11329":"lowIncomeB","11330":"lowIncomeA","11331":"midIncome","11332":"midIncome","11333":"midIncome","11334":"lowIncomeA","11335":"lowIncomeA","11336":"midIncome","11337":"midIncome","11338":"midIncome","11339":"highIncome","11340":"midIncome","11341":"midIncome","11342":"highIncome","11343":"midIncome","11344":"lowIncomeB","11345":"lowIncomeA","11346":"midIncome","11347":"highIncome","11348":"lowIncomeA","11349":"midIncome","11350":"midIncome","11351":"lowIncomeB","11352":"midIncome","11353":"midIncome","11354":"lowIncomeA","11355":"midIncome","11356":"midIncome","11357":"midIncome","11358":"midIncome","11359":"midIncome","11360":"lowIncomeB","11361":"highIncome","11362":"highIncome","11363":"midIncome","11364":"highIncome","11365":"midIncome","11366":"highIncome","11367":"midIncome","11368":"highIncome","11369":"highIncome","11370":"highIncome","11371":"highIncome","11372":"highIncome","11373":"highIncome","11374":"highIncome","11375":"highIncome","11376":"highIncome","11377":"highIncome","11378":"highIncome","11379":"highIncome","11380":"highIncome","11381":"highIncome","11382":"highIncome","11383":"highIncome","11384":"midIncome","11385":"highIncome","11386":"highIncome","11387":"highIncome","11388":"highIncome","11389":"midIncome","11390":"highIncome","11391":"highIncome","11392":"midIncome","11393":"highIncome","11394":"midIncome","11395":"midIncome","11396":"midIncome","11397":"highIncome","11398":"highIncome","11399":"highIncome","11400":"midIncome","11401":"midIncome","11402":"highIncome","11403":"highIncome","11404":"highIncome","11405":"highIncome","11406":"highIncome","11407":"highIncome","11408":"highIncome","11409":"highIncome","11410":"midIncome","11411":"highIncome","11412":"highIncome","11413":"highIncome","11414":"highIncome","11415":"highIncome","11416":"highIncome","11417":"highIncome","11418":"highIncome","11419":"highIncome","11420":"highIncome","11421":"highIncome","11422":"highIncome","11423":"highIncome","11424":"highIncome","11425":"highIncome","11426":"highIncome","11427":"highIncome","11428":"highIncome","11429":"midIncome","11430":"midIncome","11431":"highIncome","11432":"highIncome","11433":"highIncome","11434":"highIncome","11435":"highIncome","11436":"midIncome","11437":"highIncome","11438":"highIncome","11439":"midIncome","11440":"highIncome","11441":"midIncome","11442":"highIncome","11443":"highIncome","11444":"midIncome","11445":"midIncome","11446":"lowIncomeA","11447":"midIncome","11448":"lowIncomeA","11449":"midIncome","11450":"midIncome","11451":"lowIncomeA","11452":"midIncome","11453":"midIncome","11454":"midIncome","11455":"lowIncomeA","11456":"lowIncomeB","11457":"lowIncomeA","11458":"midIncome","11459":"midIncome","11460":"midIncome","11461":"midIncome","11462":"midIncome","11463":"midIncome","11464":"lowIncomeA","11465":"midIncome","11466":"lowIncomeB","11467":"lowIncomeA","11468":"midIncome","11469":"highIncome","11470":"midIncome","11471":"midIncome","11472":"lowIncomeB","11473":"midIncome","11474":"midIncome","11475":"midIncome","11476":"highIncome","11477":"lowIncomeB","11478":"midIncome","11479":"highIncome","11480":"lowIncomeA","11481":"midIncome","11482":"midIncome","11483":"lowIncomeA","11484":"highIncome","11485":"midIncome","11486":"midIncome","11487":"lowIncomeB","11488":"midIncome","11489":"midIncome","11490":"lowIncomeA","11491":"midIncome","11492":"midIncome","11493":"midIncome","11494":"midIncome","11495":"midIncome","11496":"midIncome","11497":"midIncome","11498":"lowIncomeB","11499":"midIncome","11500":"midIncome","11501":"lowIncomeA","11502":"midIncome","11503":"midIncome","11504":"midIncome","11505":"lowIncomeB","11506":"lowIncomeB","11507":"midIncome","11508":"midIncome","11509":"midIncome","11510":"midIncome","11511":"midIncome","11512":"midIncome","11513":"highIncome","11514":"midIncome","11515":"lowIncomeB","11516":"midIncome","11517":"midIncome","11518":"midIncome","11519":"midIncome","11520":"midIncome","11521":"midIncome","11522":"midIncome","11523":"midIncome","11524":"midIncome","11525":"midIncome","11526":"lowIncomeB","11527":"midIncome","11528":"midIncome","11529":"midIncome","11530":"midIncome","11531":"midIncome","11532":"midIncome","11533":"midIncome","11534":"midIncome","11535":"midIncome","11536":"highIncome","11537":"highIncome","11538":"midIncome","11539":"midIncome","11540":"midIncome","11541":"midIncome","11542":"midIncome","11543":"lowIncomeB","11544":"midIncome","11545":"highIncome","11546":"highIncome","11547":"lowIncomeB","11548":"lowIncomeA","11549":"highIncome","11550":"midIncome","11551":"lowIncomeB","11552":"midIncome","11553":"midIncome","11554":"midIncome","11555":"midIncome","11556":"midIncome","11557":"midIncome","11558":"midIncome","11559":"midIncome","11560":"midIncome","11561":"highIncome","11562":"highIncome","11563":"midIncome","11564":"lowIncomeA","11565":"midIncome","11566":"lowIncomeB","11567":"midIncome","11568":"highIncome","11569":"midIncome","11570":"midIncome","11571":"midIncome","11572":"midIncome","11573":"lowIncomeB","11574":"midIncome","11575":"midIncome","11576":"lowIncomeB","11577":"lowIncomeA","11578":"lowIncomeB","11579":"highIncome","11580":"midIncome","11581":"midIncome","11582":"midIncome","11583":"midIncome","11584":"lowIncomeB","11585":"lowIncomeA","11586":"midIncome","11587":"midIncome","11588":"lowIncomeA","11589":"midIncome","11590":"midIncome","11591":"midIncome","11592":"lowIncomeB","11593":"midIncome","11594":"midIncome","11595":"lowIncomeB","11596":"midIncome","11597":"midIncome","11598":"highIncome","11599":"midIncome","11600":"midIncome","11601":"midIncome","11602":"midIncome","11603":"midIncome","11604":"midIncome","11605":"lowIncomeB","11606":"midIncome","11607":"midIncome","11608":"midIncome","11609":"midIncome","11610":"lowIncomeA","11611":"midIncome","11612":"midIncome","11613":"highIncome","11614":"midIncome","11615":"midIncome","11616":"midIncome","11617":"lowIncomeB","11618":"midIncome","11619":"midIncome","11620":"midIncome","11621":"midIncome","11622":"midIncome","11623":"highIncome","11624":"midIncome","11625":"midIncome","11626":"midIncome","11627":"midIncome","11628":"midIncome","11629":"midIncome","11630":"midIncome","11631":"lowIncomeA","11632":"midIncome","11633":"midIncome","11634":"lowIncomeB","11635":"midIncome","11636":"highIncome","11637":"midIncome","11638":"midIncome","11639":"midIncome","11640":"midIncome","11641":"midIncome","11642":"lowIncomeB","11643":"midIncome","11644":"lowIncomeB","11645":"lowIncomeB","11646":"highIncome","11647":"midIncome","11648":"midIncome","11649":"highIncome","11650":"midIncome","11651":"midIncome","11652":"lowIncomeB","11653":"midIncome","11654":"midIncome","11655":"midIncome","11656":"midIncome","11657":"midIncome","11658":"midIncome","11659":"midIncome","11660":"midIncome","11661":"midIncome","11662":"midIncome","11663":"lowIncomeA","11664":"midIncome","11665":"lowIncomeA","11666":"highIncome","11667":"midIncome","11668":"midIncome","11669":"lowIncomeA","11670":"midIncome","11671":"midIncome","11672":"lowIncomeB","11673":"highIncome","11674":"lowIncomeB","11675":"midIncome","11676":"lowIncomeA","11677":"midIncome","11678":"lowIncomeB","11679":"highIncome","11680":"midIncome","11681":"midIncome","11682":"midIncome","11683":"midIncome","11684":"midIncome","11685":"lowIncomeB","11686":"highIncome","11687":"midIncome","11688":"midIncome","11689":"midIncome","11690":"highIncome","11691":"highIncome","11692":"midIncome","11693":"lowIncomeA","11694":"lowIncomeB","11695":"lowIncomeB","11696":"midIncome","11697":"highIncome","11698":"lowIncomeB","11699":"highIncome","11700":"midIncome","11701":"midIncome","11702":"lowIncomeB","11703":"lowIncomeB","11704":"midIncome","11705":"midIncome","11706":"midIncome","11707":"midIncome","11708":"midIncome","11709":"midIncome","11710":"highIncome","11711":"midIncome","11712":"lowIncomeA","11713":"midIncome","11714":"midIncome","11715":"midIncome","11716":"midIncome","11717":"midIncome","11718":"midIncome","11719":"midIncome","11720":"lowIncomeA","11721":"lowIncomeB","11722":"midIncome","11723":"lowIncomeB","11724":"midIncome","11725":"midIncome","11726":"midIncome","11727":"midIncome","11728":"midIncome","11729":"midIncome","11730":"midIncome","11731":"midIncome","11732":"midIncome","11733":"midIncome","11734":"midIncome","11735":"midIncome","11736":"lowIncomeA","11737":"midIncome","11738":"lowIncomeB","11739":"midIncome","11740":"midIncome","11741":"midIncome","11742":"lowIncomeA","11743":"midIncome","11744":"lowIncomeB","11745":"midIncome","11746":"midIncome","11747":"midIncome","11748":"lowIncomeB","11749":"midIncome","11750":"midIncome","11751":"midIncome","11752":"lowIncomeB","11753":"lowIncomeA","11754":"midIncome","11755":"midIncome","11756":"midIncome","11757":"lowIncomeA","11758":"lowIncomeA","11759":"midIncome","11760":"midIncome","11761":"midIncome","11762":"midIncome","11763":"midIncome","11764":"midIncome","11765":"midIncome","11766":"midIncome","11767":"midIncome","11768":"midIncome","11769":"lowIncomeA","11770":"highIncome","11771":"midIncome","11772":"midIncome","11773":"highIncome","11774":"midIncome","11775":"midIncome","11776":"midIncome","11777":"midIncome","11778":"midIncome","11779":"midIncome","11780":"highIncome","11781":"midIncome","11782":"highIncome","11783":"midIncome","11784":"midIncome","11785":"midIncome","11786":"midIncome","11787":"highIncome","11788":"midIncome","11789":"highIncome","11790":"midIncome","11791":"midIncome","11792":"lowIncomeB","11793":"midIncome","11794":"midIncome","11795":"midIncome","11796":"midIncome","11797":"midIncome","11798":"lowIncomeB","11799":"midIncome","11800":"midIncome","11801":"midIncome","11802":"midIncome","11803":"lowIncomeA","11804":"midIncome","11805":"midIncome","11806":"midIncome","11807":"midIncome","11808":"lowIncomeA","11809":"midIncome","11810":"midIncome","11811":"midIncome","11812":"midIncome","11813":"midIncome","11814":"highIncome","11815":"midIncome","11816":"midIncome","11817":"lowIncomeB","11818":"highIncome","11819":"highIncome","11820":"midIncome","11821":"midIncome","11822":"lowIncomeA","11823":"midIncome","11824":"highIncome","11825":"lowIncomeA","11826":"midIncome","11827":"midIncome","11828":"midIncome","11829":"highIncome","11830":"midIncome","11831":"midIncome","11832":"midIncome","11833":"highIncome","11834":"midIncome","11835":"midIncome","11836":"midIncome","11837":"midIncome","11838":"lowIncomeA","11839":"lowIncomeB","11840":"highIncome","11841":"highIncome","11842":"midIncome","11843":"lowIncomeA","11844":"highIncome","11845":"midIncome","11846":"midIncome","11847":"midIncome","11848":"midIncome","11849":"highIncome","11850":"lowIncomeB","11851":"midIncome","11852":"lowIncomeB","11853":"midIncome","11854":"lowIncomeA","11855":"midIncome","11856":"midIncome","11857":"highIncome","11858":"midIncome","11859":"midIncome","11860":"lowIncomeA","11861":"highIncome","11862":"midIncome","11863":"midIncome","11864":"midIncome","11865":"midIncome","11866":"midIncome","11867":"midIncome","11868":"midIncome","11869":"midIncome","11870":"midIncome","11871":"midIncome","11872":"midIncome","11873":"midIncome","11874":"midIncome","11875":"midIncome","11876":"midIncome","11877":"midIncome","11878":"midIncome","11879":"midIncome","11880":"midIncome","11881":"highIncome","11882":"midIncome","11883":"highIncome","11884":"midIncome","11885":"midIncome","11886":"midIncome","11887":"highIncome","11888":"midIncome","11889":"midIncome","11890":"highIncome","11891":"lowIncomeB","11892":"midIncome","11893":"midIncome","11894":"midIncome","11895":"midIncome","11896":"midIncome","11897":"highIncome","11898":"lowIncomeB","11899":"midIncome","11900":"midIncome","11901":"midIncome","11902":"lowIncomeA","11903":"midIncome","11904":"midIncome","11905":"midIncome","11906":"highIncome","11907":"midIncome","11908":"midIncome","11909":"midIncome","11910":"highIncome","11911":"midIncome","11912":"midIncome","11913":"midIncome","11914":"midIncome","11915":"midIncome","11916":"midIncome","11917":"lowIncomeA","11918":"midIncome","11919":"midIncome","11920":"midIncome","11921":"midIncome","11922":"highIncome","11923":"midIncome","11924":"midIncome","11925":"midIncome","11926":"midIncome","11927":"highIncome","11928":"midIncome","11929":"midIncome","11930":"midIncome","11931":"midIncome","11932":"midIncome","11933":"lowIncomeB","11934":"midIncome","11935":"midIncome","11936":"lowIncomeB","11937":"midIncome","11938":"lowIncomeA","11939":"midIncome","11940":"midIncome","11941":"midIncome","11942":"midIncome","11943":"midIncome","11944":"lowIncomeB","11945":"midIncome","11946":"midIncome","11947":"midIncome","11948":"midIncome","11949":"midIncome","11950":"midIncome","11951":"midIncome","11952":"midIncome","11953":"midIncome","11954":"midIncome","11955":"midIncome","11956":"midIncome","11957":"midIncome","11958":"lowIncomeB","11959":"lowIncomeB","11960":"lowIncomeA","11961":"midIncome","11962":"midIncome","11963":"lowIncomeB","11964":"midIncome","11965":"midIncome","11966":"midIncome","11967":"lowIncomeA","11968":"lowIncomeA","11969":"lowIncomeA","11970":"highIncome","11971":"highIncome","11972":"midIncome","11973":"lowIncomeA","11974":"midIncome","11975":"highIncome","11976":"lowIncomeB","11977":"midIncome","11978":"lowIncomeA","11979":"midIncome","11980":"midIncome","11981":"midIncome","11982":"highIncome","11983":"midIncome","11984":"midIncome","11985":"midIncome","11986":"lowIncomeA","11987":"midIncome","11988":"midIncome","11989":"midIncome","11990":"midIncome","11991":"midIncome","11992":"midIncome","11993":"midIncome","11994":"midIncome","11995":"midIncome","11996":"lowIncomeA","11997":"midIncome","11998":"lowIncomeA","11999":"midIncome","12000":"midIncome","12001":"highIncome","12002":"lowIncomeB","12003":"midIncome","12004":"midIncome","12005":"midIncome","12006":"midIncome","12007":"midIncome","12008":"lowIncomeB","12009":"lowIncomeB","12010":"midIncome","12011":"midIncome","12012":"midIncome","12013":"midIncome","12014":"highIncome","12015":"lowIncomeB","12016":"lowIncomeB","12017":"midIncome","12018":"highIncome","12019":"lowIncomeA","12020":"midIncome","12021":"midIncome","12022":"midIncome","12023":"highIncome","12024":"midIncome","12025":"midIncome","12026":"lowIncomeB","12027":"midIncome","12028":"midIncome","12029":"midIncome","12030":"highIncome","12031":"lowIncomeA","12032":"highIncome","12033":"lowIncomeA","12034":"highIncome","12035":"midIncome","12036":"midIncome","12037":"highIncome","12038":"midIncome","12039":"midIncome","12040":"midIncome","12041":"midIncome","12042":"midIncome","12043":"midIncome","12044":"lowIncomeB","12045":"midIncome","12046":"lowIncomeB","12047":"lowIncomeA","12048":"midIncome","12049":"midIncome","12050":"midIncome","12051":"midIncome","12052":"midIncome","12053":"lowIncomeA","12054":"midIncome","12055":"midIncome","12056":"midIncome","12057":"midIncome","12058":"midIncome","12059":"midIncome","12060":"midIncome","12061":"midIncome","12062":"lowIncomeB","12063":"midIncome","12064":"midIncome","12065":"midIncome","12066":"midIncome","12067":"midIncome","12068":"midIncome","12069":"lowIncomeB","12070":"midIncome","12071":"midIncome","12072":"lowIncomeB","12073":"midIncome","12074":"lowIncomeB","12075":"midIncome","12076":"midIncome","12077":"midIncome","12078":"highIncome","12079":"midIncome","12080":"midIncome","12081":"midIncome","12082":"midIncome","12083":"lowIncomeA","12084":"midIncome","12085":"midIncome","12086":"midIncome","12087":"midIncome","12088":"midIncome","12089":"midIncome","12090":"midIncome","12091":"midIncome","12092":"midIncome","12093":"highIncome","12094":"midIncome","12095":"midIncome","12096":"lowIncomeA","12097":"highIncome","12098":"highIncome","12099":"midIncome","12100":"lowIncomeA","12101":"midIncome","12102":"midIncome","12103":"midIncome","12104":"lowIncomeB","12105":"lowIncomeA","12106":"midIncome","12107":"midIncome","12108":"lowIncomeB","12109":"lowIncomeB","12110":"midIncome","12111":"midIncome","12112":"lowIncomeB","12113":"midIncome","12114":"midIncome","12115":"midIncome","12116":"midIncome","12117":"midIncome","12118":"midIncome","12119":"midIncome","12120":"midIncome","12121":"midIncome","12122":"midIncome","12123":"lowIncomeB","12124":"midIncome","12125":"midIncome","12126":"midIncome","12127":"midIncome","12128":"midIncome","12129":"lowIncomeB","12130":"lowIncomeB","12131":"midIncome","12132":"midIncome","12133":"midIncome","12134":"midIncome","12135":"lowIncomeA","12136":"midIncome","12137":"midIncome","12138":"midIncome","12139":"highIncome","12140":"midIncome","12141":"lowIncomeB","12142":"midIncome","12143":"lowIncomeA","12144":"lowIncomeB","12145":"midIncome","12146":"midIncome","12147":"highIncome","12148":"midIncome","12149":"lowIncomeA","12150":"lowIncomeB","12151":"lowIncomeB","12152":"lowIncomeA","12153":"midIncome","12154":"midIncome","12155":"midIncome","12156":"midIncome","12157":"midIncome","12158":"lowIncomeB","12159":"midIncome","12160":"midIncome","12161":"midIncome","12162":"lowIncomeA","12163":"midIncome","12164":"midIncome","12165":"lowIncomeB","12166":"midIncome","12167":"highIncome","12168":"midIncome","12169":"midIncome","12170":"midIncome","12171":"midIncome","12172":"midIncome","12173":"midIncome","12174":"lowIncomeA","12175":"midIncome","12176":"lowIncomeA","12177":"midIncome","12178":"highIncome","12179":"midIncome","12180":"midIncome","12181":"midIncome","12182":"midIncome","12183":"midIncome","12184":"midIncome","12185":"midIncome","12186":"midIncome","12187":"lowIncomeB","12188":"midIncome","12189":"midIncome","12190":"highIncome","12191":"highIncome","12192":"midIncome","12193":"midIncome","12194":"lowIncomeA","12195":"midIncome","12196":"midIncome","12197":"midIncome","12198":"highIncome","12199":"midIncome","12200":"midIncome","12201":"midIncome","12202":"midIncome","12203":"lowIncomeA","12204":"lowIncomeA","12205":"midIncome","12206":"midIncome","12207":"midIncome","12208":"midIncome","12209":"midIncome","12210":"lowIncomeB","12211":"midIncome","12212":"midIncome","12213":"midIncome","12214":"lowIncomeA","12215":"highIncome","12216":"midIncome","12217":"midIncome","12218":"midIncome","12219":"highIncome","12220":"lowIncomeA","12221":"midIncome","12222":"lowIncomeB","12223":"midIncome","12224":"highIncome","12225":"midIncome","12226":"midIncome","12227":"highIncome","12228":"midIncome","12229":"midIncome","12230":"midIncome","12231":"midIncome","12232":"midIncome","12233":"midIncome","12234":"highIncome","12235":"midIncome","12236":"lowIncomeB","12237":"midIncome","12238":"lowIncomeA","12239":"lowIncomeB","12240":"midIncome","12241":"midIncome","12242":"midIncome","12243":"lowIncomeA","12244":"midIncome","12245":"midIncome","12246":"midIncome","12247":"midIncome","12248":"midIncome","12249":"midIncome","12250":"midIncome","12251":"midIncome","12252":"midIncome","12253":"lowIncomeB","12254":"midIncome","12255":"midIncome","12256":"midIncome","12257":"midIncome","12258":"midIncome","12259":"midIncome","12260":"midIncome","12261":"highIncome","12262":"midIncome","12263":"highIncome","12264":"midIncome","12265":"highIncome","12266":"midIncome","12267":"highIncome","12268":"midIncome","12269":"midIncome","12270":"midIncome","12271":"midIncome","12272":"midIncome","12273":"highIncome","12274":"midIncome","12275":"midIncome","12276":"midIncome","12277":"lowIncomeB","12278":"midIncome","12279":"highIncome","12280":"midIncome","12281":"midIncome","12282":"midIncome","12283":"midIncome","12284":"lowIncomeA","12285":"midIncome","12286":"midIncome","12287":"midIncome","12288":"midIncome","12289":"lowIncomeB","12290":"lowIncomeB","12291":"midIncome","12292":"midIncome","12293":"midIncome","12294":"highIncome","12295":"midIncome","12296":"midIncome","12297":"midIncome","12298":"lowIncomeA","12299":"midIncome","12300":"midIncome","12301":"highIncome","12302":"lowIncomeA","12303":"highIncome","12304":"midIncome","12305":"highIncome","12306":"midIncome","12307":"lowIncomeA","12308":"highIncome","12309":"midIncome","12310":"midIncome","12311":"midIncome","12312":"highIncome","12313":"midIncome","12314":"highIncome","12315":"midIncome","12316":"midIncome","12317":"lowIncomeB","12318":"midIncome","12319":"midIncome","12320":"midIncome","12321":"highIncome","12322":"midIncome","12323":"midIncome","12324":"midIncome","12325":"midIncome","12326":"lowIncomeB","12327":"midIncome","12328":"midIncome","12329":"midIncome","12330":"midIncome","12331":"midIncome","12332":"highIncome","12333":"midIncome","12334":"midIncome","12335":"midIncome","12336":"midIncome","12337":"midIncome","12338":"highIncome","12339":"midIncome","12340":"midIncome","12341":"midIncome","12342":"highIncome","12343":"lowIncomeA","12344":"midIncome","12345":"midIncome","12346":"midIncome","12347":"midIncome","12348":"midIncome","12349":"midIncome","12350":"midIncome","12351":"midIncome","12352":"midIncome","12353":"midIncome","12354":"highIncome","12355":"midIncome","12356":"midIncome","12357":"highIncome","12358":"midIncome","12359":"lowIncomeA","12360":"midIncome","12361":"midIncome","12362":"midIncome","12363":"midIncome","12364":"lowIncomeA","12365":"midIncome","12366":"midIncome","12367":"midIncome","12368":"highIncome","12369":"midIncome","12370":"midIncome","12371":"lowIncomeA","12372":"lowIncomeB","12373":"midIncome","12374":"lowIncomeA","12375":"lowIncomeA","12376":"midIncome","12377":"midIncome","12378":"midIncome","12379":"lowIncomeA","12380":"midIncome","12381":"midIncome","12382":"midIncome","12383":"lowIncomeB","12384":"highIncome","12385":"midIncome","12386":"midIncome","12387":"midIncome","12388":"midIncome","12389":"midIncome","12390":"midIncome","12391":"midIncome","12392":"highIncome","12393":"lowIncomeB","12394":"midIncome","12395":"midIncome","12396":"midIncome","12397":"midIncome","12398":"midIncome","12399":"highIncome","12400":"lowIncomeB","12401":"highIncome","12402":"midIncome","12403":"midIncome","12404":"highIncome","12405":"midIncome","12406":"midIncome","12407":"midIncome","12408":"midIncome","12409":"midIncome","12410":"midIncome","12411":"midIncome","12412":"midIncome","12413":"midIncome","12414":"lowIncomeA","12415":"midIncome","12416":"midIncome","12417":"midIncome","12418":"highIncome","12419":"midIncome","12420":"highIncome","12421":"midIncome","12422":"midIncome","12423":"highIncome","12424":"midIncome","12425":"midIncome","12426":"midIncome","12427":"midIncome","12428":"midIncome","12429":"midIncome","12430":"lowIncomeB","12431":"midIncome","12432":"highIncome","12433":"midIncome","12434":"midIncome","12435":"midIncome","12436":"lowIncomeB","12437":"lowIncomeA","12438":"lowIncomeA","12439":"midIncome","12440":"midIncome","12441":"midIncome","12442":"midIncome","12443":"lowIncomeB","12444":"midIncome","12445":"highIncome","12446":"midIncome","12447":"midIncome","12448":"midIncome","12449":"highIncome","12450":"midIncome","12451":"midIncome","12452":"midIncome","12453":"midIncome","12454":"midIncome","12455":"midIncome","12456":"midIncome","12457":"midIncome","12458":"lowIncomeA","12459":"lowIncomeA","12460":"highIncome","12461":"midIncome","12462":"midIncome","12463":"lowIncomeB","12464":"midIncome","12465":"midIncome","12466":"midIncome","12467":"midIncome","12468":"highIncome","12469":"midIncome","12470":"lowIncomeB","12471":"lowIncomeA","12472":"midIncome","12473":"midIncome","12474":"lowIncomeB","12475":"midIncome","12476":"midIncome","12477":"midIncome","12478":"midIncome","12479":"midIncome","12480":"midIncome","12481":"midIncome","12482":"midIncome","12483":"lowIncomeA","12484":"midIncome","12485":"lowIncomeA","12486":"midIncome","12487":"midIncome","12488":"lowIncomeA","12489":"midIncome","12490":"midIncome","12491":"midIncome","12492":"midIncome","12493":"midIncome","12494":"lowIncomeB","12495":"midIncome","12496":"midIncome","12497":"midIncome","12498":"midIncome","12499":"midIncome","12500":"midIncome","12501":"midIncome","12502":"midIncome","12503":"highIncome","12504":"midIncome","12505":"midIncome","12506":"midIncome","12507":"midIncome","12508":"midIncome","12509":"midIncome","12510":"midIncome","12511":"midIncome","12512":"midIncome","12513":"midIncome","12514":"midIncome","12515":"lowIncomeB","12516":"midIncome","12517":"highIncome","12518":"midIncome","12519":"midIncome","12520":"midIncome","12521":"highIncome","12522":"lowIncomeB","12523":"midIncome","12524":"lowIncomeA","12525":"lowIncomeA","12526":"midIncome","12527":"midIncome","12528":"midIncome","12529":"midIncome","12530":"midIncome","12531":"lowIncomeB","12532":"midIncome","12533":"midIncome","12534":"midIncome","12535":"midIncome","12536":"midIncome","12537":"highIncome","12538":"midIncome","12539":"midIncome","12540":"midIncome","12541":"midIncome","12542":"midIncome","12543":"midIncome","12544":"midIncome","12545":"midIncome","12546":"highIncome","12547":"lowIncomeA","12548":"lowIncomeA","12549":"midIncome","12550":"midIncome","12551":"lowIncomeB","12552":"midIncome","12553":"highIncome","12554":"midIncome","12555":"midIncome","12556":"midIncome","12557":"midIncome","12558":"midIncome","12559":"highIncome","12560":"midIncome","12561":"midIncome","12562":"lowIncomeA","12563":"midIncome","12564":"highIncome","12565":"midIncome","12566":"midIncome","12567":"lowIncomeA","12568":"midIncome","12569":"midIncome","12570":"midIncome","12571":"lowIncomeA","12572":"midIncome","12573":"midIncome","12574":"midIncome","12575":"midIncome","12576":"midIncome","12577":"lowIncomeB","12578":"midIncome","12579":"midIncome","12580":"midIncome","12581":"midIncome","12582":"lowIncomeA","12583":"midIncome","12584":"midIncome","12585":"midIncome","12586":"midIncome","12587":"lowIncomeB","12588":"midIncome","12589":"midIncome","12590":"lowIncomeA","12591":"midIncome","12592":"midIncome","12593":"midIncome","12594":"highIncome","12595":"midIncome","12596":"midIncome","12597":"highIncome","12598":"midIncome","12599":"midIncome","12600":"midIncome","12601":"midIncome","12602":"midIncome","12603":"highIncome","12604":"lowIncomeA","12605":"midIncome","12606":"midIncome","12607":"midIncome","12608":"midIncome","12609":"midIncome","12610":"midIncome","12611":"lowIncomeA","12612":"lowIncomeB","12613":"lowIncomeA","12614":"midIncome","12615":"midIncome","12616":"lowIncomeA","12617":"midIncome","12618":"midIncome","12619":"midIncome","12620":"midIncome","12621":"midIncome","12622":"midIncome","12623":"highIncome","12624":"midIncome","12625":"lowIncomeB","12626":"midIncome","12627":"midIncome","12628":"midIncome","12629":"midIncome","12630":"lowIncomeB","12631":"midIncome","12632":"midIncome","12633":"lowIncomeB","12634":"highIncome","12635":"lowIncomeA","12636":"midIncome","12637":"midIncome","12638":"midIncome","12639":"midIncome","12640":"midIncome","12641":"midIncome","12642":"midIncome","12643":"lowIncomeB","12644":"midIncome","12645":"midIncome","12646":"midIncome","12647":"highIncome","12648":"midIncome","12649":"lowIncomeB","12650":"midIncome","12651":"highIncome","12652":"midIncome","12653":"midIncome","12654":"midIncome","12655":"highIncome","12656":"midIncome","12657":"midIncome","12658":"lowIncomeA","12659":"highIncome","12660":"midIncome","12661":"lowIncomeB","12662":"highIncome","12663":"midIncome","12664":"midIncome","12665":"midIncome","12666":"midIncome","12667":"midIncome","12668":"lowIncomeB","12669":"midIncome","12670":"midIncome","12671":"highIncome","12672":"midIncome","12673":"highIncome","12674":"highIncome","12675":"midIncome","12676":"lowIncomeA","12677":"highIncome","12678":"highIncome","12679":"midIncome","12680":"midIncome","12681":"highIncome","12682":"midIncome","12683":"lowIncomeA","12684":"midIncome","12685":"lowIncomeB","12686":"highIncome","12687":"midIncome","12688":"midIncome","12689":"midIncome","12690":"midIncome","12691":"midIncome","12692":"lowIncomeA","12693":"midIncome","12694":"midIncome","12695":"midIncome","12696":"midIncome","12697":"midIncome","12698":"midIncome","12699":"midIncome","12700":"lowIncomeA","12701":"highIncome","12702":"lowIncomeB","12703":"midIncome","12704":"midIncome","12705":"midIncome","12706":"midIncome","12707":"lowIncomeA","12708":"midIncome","12709":"lowIncomeB","12710":"midIncome","12711":"midIncome","12712":"lowIncomeA","12713":"midIncome","12714":"midIncome","12715":"midIncome","12716":"lowIncomeB","12717":"midIncome","12718":"midIncome","12719":"midIncome","12720":"midIncome","12721":"lowIncomeB","12722":"lowIncomeB","12723":"lowIncomeA","12724":"midIncome","12725":"midIncome","12726":"midIncome","12727":"lowIncomeB","12728":"midIncome","12729":"midIncome","12730":"highIncome","12731":"midIncome","12732":"lowIncomeB","12733":"highIncome","12734":"lowIncomeB","12735":"midIncome","12736":"midIncome","12737":"midIncome","12738":"midIncome","12739":"lowIncomeA","12740":"lowIncomeB","12741":"midIncome","12742":"midIncome","12743":"midIncome","12744":"midIncome","12745":"midIncome","12746":"midIncome","12747":"midIncome","12748":"midIncome","12749":"lowIncomeA","12750":"lowIncomeB","12751":"highIncome","12752":"highIncome","12753":"midIncome","12754":"lowIncomeA","12755":"midIncome","12756":"lowIncomeB","12757":"midIncome","12758":"midIncome","12759":"midIncome","12760":"midIncome","12761":"highIncome","12762":"midIncome","12763":"midIncome","12764":"midIncome","12765":"highIncome","12766":"midIncome","12767":"midIncome","12768":"midIncome","12769":"midIncome","12770":"midIncome","12771":"midIncome","12772":"midIncome","12773":"midIncome","12774":"midIncome","12775":"lowIncomeB","12776":"midIncome","12777":"midIncome","12778":"midIncome","12779":"midIncome","12780":"lowIncomeB","12781":"midIncome","12782":"midIncome","12783":"lowIncomeA","12784":"midIncome","12785":"midIncome","12786":"midIncome","12787":"midIncome","12788":"midIncome","12789":"lowIncomeA","12790":"lowIncomeB","12791":"midIncome","12792":"midIncome","12793":"midIncome","12794":"lowIncomeB","12795":"lowIncomeB","12796":"lowIncomeA","12797":"lowIncomeA","12798":"lowIncomeA","12799":"lowIncomeB","12800":"lowIncomeA","12801":"lowIncomeA","12802":"lowIncomeA","12803":"lowIncomeA","12804":"lowIncomeA","12805":"midIncome","12806":"lowIncomeB","12807":"lowIncomeB","12808":"lowIncomeA","12809":"lowIncomeA","12810":"lowIncomeB","12811":"lowIncomeA","12812":"lowIncomeB","12813":"midIncome","12814":"lowIncomeA","12815":"lowIncomeB","12816":"lowIncomeB","12817":"lowIncomeA","12818":"lowIncomeA","12819":"lowIncomeA","12820":"lowIncomeA","12821":"lowIncomeB","12822":"lowIncomeB","12823":"lowIncomeA","12824":"lowIncomeA","12825":"lowIncomeA","12826":"lowIncomeA","12827":"lowIncomeA","12828":"lowIncomeA","12829":"lowIncomeA","12830":"lowIncomeA","12831":"lowIncomeB","12832":"lowIncomeB","12833":"lowIncomeB","12834":"lowIncomeB","12835":"lowIncomeB","12836":"lowIncomeA","12837":"lowIncomeA","12838":"lowIncomeA","12839":"lowIncomeB","12840":"lowIncomeB","12841":"lowIncomeA","12842":"lowIncomeB","12843":"lowIncomeB","12844":"lowIncomeB","12845":"lowIncomeA","12846":"lowIncomeA","12847":"midIncome","12848":"lowIncomeA","12849":"lowIncomeA","12850":"lowIncomeA","12851":"lowIncomeB","12852":"lowIncomeB","12853":"lowIncomeA","12854":"lowIncomeB","12855":"lowIncomeA","12856":"lowIncomeA","12857":"lowIncomeA","12858":"lowIncomeA","12859":"lowIncomeA","12860":"lowIncomeA","12861":"lowIncomeB","12862":"lowIncomeA","12863":"lowIncomeA","12864":"midIncome","12865":"lowIncomeA","12866":"lowIncomeA","12867":"lowIncomeA","12868":"lowIncomeA","12869":"lowIncomeA","12870":"midIncome","12871":"lowIncomeA","12872":"lowIncomeA","12873":"lowIncomeA","12874":"lowIncomeA","12875":"lowIncomeB","12876":"lowIncomeB","12877":"lowIncomeB","12878":"lowIncomeA","12879":"lowIncomeA","12880":"lowIncomeA","12881":"lowIncomeA","12882":"lowIncomeA","12883":"lowIncomeB","12884":"lowIncomeB","12885":"lowIncomeB","12886":"lowIncomeA","12887":"lowIncomeB","12888":"lowIncomeA","12889":"lowIncomeB","12890":"lowIncomeA","12891":"lowIncomeA","12892":"lowIncomeB","12893":"lowIncomeB","12894":"lowIncomeA","12895":"lowIncomeB","12896":"midIncome","12897":"lowIncomeA","12898":"lowIncomeA","12899":"lowIncomeA","12900":"lowIncomeB","12901":"midIncome","12902":"lowIncomeA","12903":"lowIncomeA","12904":"lowIncomeA","12905":"midIncome","12906":"lowIncomeA","12907":"midIncome","12908":"lowIncomeB","12909":"lowIncomeA","12910":"lowIncomeA","12911":"lowIncomeA","12912":"lowIncomeB","12913":"lowIncomeB","12914":"lowIncomeA","12915":"lowIncomeB","12916":"lowIncomeA","12917":"lowIncomeB","12918":"midIncome","12919":"lowIncomeB","12920":"lowIncomeA","12921":"lowIncomeA","12922":"lowIncomeA","12923":"lowIncomeA","12924":"lowIncomeA","12925":"lowIncomeA","12926":"lowIncomeB","12927":"lowIncomeA","12928":"lowIncomeA","12929":"lowIncomeA","12930":"lowIncomeA","12931":"lowIncomeA","12932":"lowIncomeB","12933":"lowIncomeA","12934":"lowIncomeB","12935":"lowIncomeB","12936":"lowIncomeA","12937":"lowIncomeA","12938":"lowIncomeB","12939":"lowIncomeB","12940":"lowIncomeA","12941":"lowIncomeA","12942":"midIncome","12943":"lowIncomeA","12944":"lowIncomeB","12945":"lowIncomeA","12946":"lowIncomeA","12947":"lowIncomeA","12948":"lowIncomeA","12949":"lowIncomeB","12950":"lowIncomeA","12951":"lowIncomeA","12952":"lowIncomeA","12953":"lowIncomeA","12954":"lowIncomeB","12955":"lowIncomeA","12956":"lowIncomeB","12957":"lowIncomeB","12958":"lowIncomeA","12959":"lowIncomeA","12960":"lowIncomeA","12961":"lowIncomeA","12962":"lowIncomeB","12963":"lowIncomeA","12964":"midIncome","12965":"lowIncomeA","12966":"lowIncomeA","12967":"midIncome","12968":"lowIncomeA","12969":"lowIncomeA","12970":"midIncome","12971":"lowIncomeA","12972":"lowIncomeB","12973":"midIncome","12974":"lowIncomeA","12975":"lowIncomeA","12976":"lowIncomeB","12977":"lowIncomeA","12978":"lowIncomeA","12979":"lowIncomeA","12980":"lowIncomeA","12981":"lowIncomeA","12982":"lowIncomeB","12983":"lowIncomeB","12984":"midIncome","12985":"lowIncomeB","12986":"lowIncomeB","12987":"lowIncomeB","12988":"lowIncomeB","12989":"lowIncomeA","12990":"lowIncomeA","12991":"lowIncomeA","12992":"lowIncomeB","12993":"lowIncomeB","12994":"lowIncomeA","12995":"lowIncomeB","12996":"lowIncomeA","12997":"lowIncomeB","12998":"lowIncomeB","12999":"lowIncomeA","13000":"lowIncomeB","13001":"lowIncomeA","13002":"lowIncomeB","13003":"lowIncomeB","13004":"midIncome","13005":"lowIncomeA","13006":"lowIncomeA","13007":"lowIncomeB","13008":"lowIncomeA","13009":"lowIncomeA","13010":"lowIncomeA","13011":"lowIncomeB","13012":"lowIncomeB","13013":"lowIncomeA","13014":"midIncome","13015":"lowIncomeB","13016":"lowIncomeA","13017":"lowIncomeB","13018":"lowIncomeB","13019":"midIncome","13020":"midIncome","13021":"lowIncomeA","13022":"lowIncomeA","13023":"lowIncomeB","13024":"lowIncomeB","13025":"lowIncomeA","13026":"lowIncomeB","13027":"lowIncomeB","13028":"midIncome","13029":"midIncome","13030":"lowIncomeA","13031":"lowIncomeB","13032":"lowIncomeA","13033":"lowIncomeB","13034":"lowIncomeB","13035":"lowIncomeB","13036":"lowIncomeA","13037":"lowIncomeA","13038":"lowIncomeA","13039":"lowIncomeA","13040":"lowIncomeA","13041":"lowIncomeA","13042":"lowIncomeA","13043":"lowIncomeB","13044":"lowIncomeB","13045":"lowIncomeB","13046":"lowIncomeB","13047":"lowIncomeA","13048":"lowIncomeB","13049":"lowIncomeB","13050":"lowIncomeA","13051":"lowIncomeA","13052":"lowIncomeA","13053":"midIncome","13054":"lowIncomeA","13055":"lowIncomeA","13056":"lowIncomeB","13057":"lowIncomeA","13058":"lowIncomeA","13059":"lowIncomeB","13060":"lowIncomeA","13061":"lowIncomeB","13062":"lowIncomeB","13063":"lowIncomeA","13064":"lowIncomeB","13065":"lowIncomeA","13066":"lowIncomeA","13067":"lowIncomeB","13068":"lowIncomeA","13069":"lowIncomeB","13070":"lowIncomeB","13071":"lowIncomeA","13072":"lowIncomeA","13073":"midIncome","13074":"lowIncomeB","13075":"lowIncomeA","13076":"lowIncomeB","13077":"lowIncomeA","13078":"lowIncomeB","13079":"lowIncomeA","13080":"lowIncomeB","13081":"lowIncomeA","13082":"lowIncomeA","13083":"lowIncomeB","13084":"midIncome","13085":"lowIncomeB","13086":"lowIncomeA","13087":"lowIncomeA","13088":"lowIncomeA","13089":"lowIncomeB","13090":"lowIncomeB","13091":"lowIncomeA","13092":"lowIncomeB","13093":"lowIncomeA","13094":"lowIncomeA","13095":"lowIncomeA","13096":"lowIncomeB","13097":"lowIncomeB","13098":"lowIncomeB","13099":"lowIncomeB","13100":"lowIncomeB","13101":"lowIncomeA","13102":"lowIncomeB","13103":"lowIncomeA","13104":"midIncome","13105":"lowIncomeB","13106":"lowIncomeA","13107":"lowIncomeB","13108":"lowIncomeA","13109":"lowIncomeA","13110":"lowIncomeB","13111":"midIncome","13112":"lowIncomeB","13113":"lowIncomeB","13114":"lowIncomeA","13115":"lowIncomeB","13116":"lowIncomeA","13117":"lowIncomeA","13118":"midIncome","13119":"lowIncomeA","13120":"lowIncomeB","13121":"lowIncomeA","13122":"lowIncomeB","13123":"lowIncomeB","13124":"midIncome","13125":"lowIncomeA","13126":"midIncome","13127":"lowIncomeA","13128":"lowIncomeA","13129":"lowIncomeB","13130":"lowIncomeA","13131":"lowIncomeA","13132":"lowIncomeB","13133":"midIncome","13134":"lowIncomeB","13135":"lowIncomeB","13136":"lowIncomeA","13137":"lowIncomeA","13138":"lowIncomeA","13139":"lowIncomeB","13140":"lowIncomeB","13141":"lowIncomeA","13142":"lowIncomeA","13143":"lowIncomeB","13144":"lowIncomeA","13145":"lowIncomeA","13146":"lowIncomeA","13147":"lowIncomeA","13148":"lowIncomeB","13149":"lowIncomeA","13150":"lowIncomeA","13151":"lowIncomeB","13152":"lowIncomeA","13153":"lowIncomeA","13154":"lowIncomeB","13155":"lowIncomeA","13156":"lowIncomeA","13157":"lowIncomeB","13158":"lowIncomeA","13159":"lowIncomeA","13160":"lowIncomeA","13161":"lowIncomeA","13162":"lowIncomeA","13163":"lowIncomeA","13164":"lowIncomeA","13165":"lowIncomeA","13166":"lowIncomeA","13167":"lowIncomeB","13168":"midIncome","13169":"lowIncomeA","13170":"lowIncomeA","13171":"lowIncomeA","13172":"lowIncomeB","13173":"midIncome","13174":"lowIncomeA","13175":"midIncome","13176":"lowIncomeA","13177":"lowIncomeA","13178":"lowIncomeA","13179":"lowIncomeA","13180":"lowIncomeB","13181":"lowIncomeB","13182":"lowIncomeA","13183":"lowIncomeA","13184":"lowIncomeA","13185":"lowIncomeA","13186":"midIncome","13187":"lowIncomeB","13188":"lowIncomeA","13189":"lowIncomeB","13190":"lowIncomeA","13191":"lowIncomeB","13192":"lowIncomeB","13193":"lowIncomeA","13194":"lowIncomeA","13195":"lowIncomeB","13196":"lowIncomeB","13197":"lowIncomeB","13198":"lowIncomeA","13199":"lowIncomeA","13200":"midIncome","13201":"lowIncomeA","13202":"lowIncomeB","13203":"lowIncomeB","13204":"lowIncomeA","13205":"lowIncomeB","13206":"lowIncomeA","13207":"lowIncomeB","13208":"lowIncomeA","13209":"lowIncomeA","13210":"lowIncomeB","13211":"midIncome","13212":"lowIncomeA","13213":"lowIncomeA","13214":"lowIncomeB","13215":"lowIncomeB","13216":"lowIncomeA","13217":"lowIncomeA","13218":"lowIncomeA","13219":"lowIncomeA","13220":"lowIncomeA","13221":"lowIncomeA","13222":"lowIncomeA","13223":"lowIncomeA","13224":"lowIncomeB","13225":"lowIncomeA","13226":"lowIncomeB","13227":"lowIncomeA","13228":"lowIncomeA","13229":"lowIncomeA","13230":"lowIncomeA","13231":"lowIncomeB","13232":"lowIncomeA","13233":"midIncome","13234":"lowIncomeB","13235":"lowIncomeA","13236":"lowIncomeB","13237":"lowIncomeB","13238":"lowIncomeA","13239":"lowIncomeB","13240":"lowIncomeB","13241":"lowIncomeB","13242":"lowIncomeA","13243":"midIncome","13244":"lowIncomeB","13245":"midIncome","13246":"lowIncomeB","13247":"lowIncomeB","13248":"lowIncomeB","13249":"lowIncomeB","13250":"lowIncomeA","13251":"lowIncomeA","13252":"lowIncomeA","13253":"lowIncomeB","13254":"lowIncomeA","13255":"lowIncomeB","13256":"lowIncomeB","13257":"lowIncomeB","13258":"lowIncomeB","13259":"lowIncomeB","13260":"lowIncomeA","13261":"lowIncomeB","13262":"lowIncomeB","13263":"midIncome","13264":"lowIncomeA","13265":"lowIncomeA","13266":"lowIncomeA","13267":"lowIncomeA","13268":"lowIncomeB","13269":"lowIncomeB","13270":"midIncome","13271":"lowIncomeB","13272":"lowIncomeA","13273":"lowIncomeB","13274":"lowIncomeB","13275":"lowIncomeA","13276":"lowIncomeB","13277":"lowIncomeA","13278":"lowIncomeA","13279":"lowIncomeB","13280":"lowIncomeA","13281":"lowIncomeA","13282":"lowIncomeA","13283":"lowIncomeA","13284":"lowIncomeA","13285":"lowIncomeA","13286":"lowIncomeA","13287":"lowIncomeB","13288":"lowIncomeA","13289":"lowIncomeA","13290":"lowIncomeA","13291":"lowIncomeB","13292":"lowIncomeB","13293":"lowIncomeA","13294":"lowIncomeA","13295":"lowIncomeB","13296":"lowIncomeB","13297":"lowIncomeB","13298":"lowIncomeB","13299":"lowIncomeA","13300":"lowIncomeA","13301":"midIncome","13302":"lowIncomeB","13303":"lowIncomeA","13304":"lowIncomeA","13305":"lowIncomeB","13306":"midIncome","13307":"lowIncomeB","13308":"lowIncomeB","13309":"midIncome","13310":"lowIncomeA","13311":"lowIncomeB","13312":"lowIncomeB","13313":"midIncome","13314":"lowIncomeB","13315":"lowIncomeA","13316":"lowIncomeA","13317":"lowIncomeA","13318":"lowIncomeA","13319":"lowIncomeB","13320":"lowIncomeA","13321":"lowIncomeB","13322":"lowIncomeA","13323":"lowIncomeB","13324":"lowIncomeA","13325":"lowIncomeB","13326":"lowIncomeA","13327":"lowIncomeB","13328":"lowIncomeB","13329":"lowIncomeA","13330":"lowIncomeA","13331":"lowIncomeB","13332":"lowIncomeA","13333":"midIncome","13334":"lowIncomeB","13335":"midIncome","13336":"lowIncomeA","13337":"lowIncomeA","13338":"lowIncomeA","13339":"lowIncomeA","13340":"lowIncomeB","13341":"lowIncomeA","13342":"lowIncomeA","13343":"lowIncomeA","13344":"lowIncomeA","13345":"lowIncomeB","13346":"lowIncomeA","13347":"lowIncomeA","13348":"lowIncomeA","13349":"lowIncomeB","13350":"lowIncomeB","13351":"lowIncomeB","13352":"lowIncomeB","13353":"lowIncomeA","13354":"lowIncomeB","13355":"lowIncomeB","13356":"lowIncomeB","13357":"lowIncomeA","13358":"lowIncomeB","13359":"lowIncomeB","13360":"lowIncomeA","13361":"lowIncomeB","13362":"lowIncomeA","13363":"lowIncomeB","13364":"lowIncomeB","13365":"lowIncomeA","13366":"lowIncomeB","13367":"lowIncomeB","13368":"lowIncomeA","13369":"lowIncomeB","13370":"midIncome","13371":"lowIncomeA","13372":"lowIncomeB","13373":"lowIncomeB","13374":"lowIncomeA","13375":"lowIncomeB","13376":"lowIncomeB","13377":"lowIncomeB","13378":"lowIncomeB","13379":"lowIncomeB","13380":"lowIncomeA","13381":"lowIncomeB","13382":"lowIncomeB","13383":"midIncome","13384":"midIncome","13385":"lowIncomeA","13386":"lowIncomeB","13387":"lowIncomeB","13388":"lowIncomeB","13389":"lowIncomeB","13390":"lowIncomeA","13391":"lowIncomeA","13392":"lowIncomeB","13393":"lowIncomeA","13394":"lowIncomeA","13395":"lowIncomeB","13396":"lowIncomeB","13397":"lowIncomeA","13398":"lowIncomeA","13399":"lowIncomeB","13400":"lowIncomeA","13401":"lowIncomeB","13402":"lowIncomeA","13403":"lowIncomeA","13404":"lowIncomeA","13405":"lowIncomeA","13406":"lowIncomeA","13407":"lowIncomeB","13408":"lowIncomeB","13409":"lowIncomeB","13410":"lowIncomeB","13411":"lowIncomeA","13412":"lowIncomeA","13413":"lowIncomeB","13414":"lowIncomeA","13415":"midIncome","13416":"lowIncomeB","13417":"lowIncomeB","13418":"lowIncomeB","13419":"lowIncomeA","13420":"midIncome","13421":"lowIncomeA","13422":"midIncome","13423":"lowIncomeB","13424":"lowIncomeB","13425":"lowIncomeA","13426":"lowIncomeA","13427":"lowIncomeB","13428":"lowIncomeB","13429":"midIncome","13430":"lowIncomeB","13431":"lowIncomeA","13432":"lowIncomeA","13433":"midIncome","13434":"lowIncomeA","13435":"lowIncomeA","13436":"lowIncomeA","13437":"lowIncomeB","13438":"lowIncomeB","13439":"lowIncomeB","13440":"lowIncomeA","13441":"lowIncomeB","13442":"lowIncomeA","13443":"lowIncomeA","13444":"lowIncomeB","13445":"lowIncomeB","13446":"lowIncomeB","13447":"lowIncomeA","13448":"lowIncomeB","13449":"lowIncomeB","13450":"lowIncomeA","13451":"lowIncomeA","13452":"lowIncomeB","13453":"midIncome","13454":"lowIncomeB","13455":"lowIncomeA","13456":"lowIncomeB","13457":"lowIncomeA","13458":"lowIncomeA","13459":"midIncome","13460":"lowIncomeB","13461":"lowIncomeA","13462":"midIncome","13463":"lowIncomeB","13464":"lowIncomeB","13465":"lowIncomeA","13466":"midIncome","13467":"lowIncomeA","13468":"lowIncomeA","13469":"lowIncomeA","13470":"lowIncomeA","13471":"lowIncomeB","13472":"lowIncomeB","13473":"lowIncomeA","13474":"lowIncomeB","13475":"lowIncomeA","13476":"midIncome","13477":"lowIncomeB","13478":"lowIncomeB","13479":"lowIncomeB","13480":"lowIncomeB","13481":"lowIncomeA","13482":"lowIncomeA","13483":"lowIncomeA","13484":"lowIncomeA","13485":"lowIncomeA","13486":"lowIncomeA","13487":"lowIncomeB","13488":"lowIncomeA","13489":"lowIncomeA","13490":"lowIncomeB","13491":"lowIncomeA","13492":"lowIncomeB","13493":"lowIncomeA","13494":"lowIncomeA","13495":"lowIncomeA","13496":"lowIncomeA","13497":"lowIncomeA","13498":"lowIncomeA","13499":"lowIncomeA","13500":"lowIncomeB","13501":"lowIncomeB","13502":"lowIncomeA","13503":"lowIncomeA","13504":"midIncome","13505":"lowIncomeB","13506":"lowIncomeB","13507":"lowIncomeB","13508":"lowIncomeA","13509":"lowIncomeA","13510":"lowIncomeA","13511":"lowIncomeA","13512":"lowIncomeB","13513":"lowIncomeB","13514":"midIncome","13515":"lowIncomeB","13516":"lowIncomeB","13517":"lowIncomeA","13518":"lowIncomeA","13519":"lowIncomeA","13520":"lowIncomeB","13521":"lowIncomeB","13522":"lowIncomeA","13523":"lowIncomeA","13524":"lowIncomeB","13525":"lowIncomeB","13526":"lowIncomeA","13527":"lowIncomeA","13528":"lowIncomeB","13529":"midIncome","13530":"lowIncomeA","13531":"lowIncomeA","13532":"lowIncomeB","13533":"lowIncomeA","13534":"lowIncomeA","13535":"lowIncomeA","13536":"lowIncomeB","13537":"lowIncomeB","13538":"midIncome","13539":"lowIncomeA","13540":"lowIncomeA","13541":"lowIncomeA","13542":"lowIncomeB","13543":"lowIncomeA","13544":"lowIncomeB","13545":"lowIncomeB","13546":"lowIncomeB","13547":"lowIncomeA","13548":"lowIncomeA","13549":"lowIncomeB","13550":"lowIncomeB","13551":"lowIncomeB","13552":"lowIncomeB","13553":"lowIncomeB","13554":"lowIncomeB","13555":"lowIncomeA","13556":"lowIncomeA","13557":"lowIncomeB","13558":"lowIncomeA","13559":"lowIncomeA","13560":"lowIncomeB","13561":"lowIncomeA","13562":"lowIncomeB","13563":"midIncome","13564":"lowIncomeB","13565":"lowIncomeA","13566":"lowIncomeB","13567":"lowIncomeB","13568":"lowIncomeA","13569":"lowIncomeA","13570":"lowIncomeA","13571":"lowIncomeA","13572":"lowIncomeB","13573":"lowIncomeA","13574":"lowIncomeA","13575":"lowIncomeA","13576":"lowIncomeA","13577":"lowIncomeB","13578":"lowIncomeA","13579":"lowIncomeA","13580":"midIncome","13581":"lowIncomeA","13582":"lowIncomeA","13583":"lowIncomeB","13584":"lowIncomeA","13585":"lowIncomeB","13586":"lowIncomeB","13587":"lowIncomeB","13588":"lowIncomeA","13589":"lowIncomeA","13590":"lowIncomeB","13591":"lowIncomeB","13592":"lowIncomeB","13593":"lowIncomeB","13594":"lowIncomeB","13595":"lowIncomeA","13596":"lowIncomeB","13597":"lowIncomeB","13598":"midIncome","13599":"lowIncomeA","13600":"lowIncomeB","13601":"lowIncomeA","13602":"lowIncomeA","13603":"lowIncomeA","13604":"lowIncomeB","13605":"lowIncomeB","13606":"lowIncomeB","13607":"lowIncomeB","13608":"lowIncomeB","13609":"lowIncomeB","13610":"lowIncomeB","13611":"lowIncomeA","13612":"lowIncomeA","13613":"lowIncomeA","13614":"lowIncomeB","13615":"lowIncomeB","13616":"midIncome","13617":"lowIncomeB","13618":"midIncome","13619":"lowIncomeB","13620":"midIncome","13621":"lowIncomeB","13622":"lowIncomeB","13623":"lowIncomeB","13624":"lowIncomeA","13625":"lowIncomeB","13626":"lowIncomeA","13627":"lowIncomeB","13628":"lowIncomeA","13629":"lowIncomeB","13630":"lowIncomeB","13631":"lowIncomeA","13632":"lowIncomeA","13633":"midIncome","13634":"midIncome","13635":"lowIncomeA","13636":"lowIncomeB","13637":"lowIncomeA","13638":"lowIncomeB","13639":"lowIncomeA","13640":"lowIncomeA","13641":"lowIncomeB","13642":"midIncome","13643":"lowIncomeA","13644":"lowIncomeB","13645":"lowIncomeA","13646":"lowIncomeB","13647":"lowIncomeB","13648":"lowIncomeB","13649":"lowIncomeB","13650":"lowIncomeA","13651":"midIncome","13652":"lowIncomeA","13653":"lowIncomeA","13654":"lowIncomeA","13655":"lowIncomeA","13656":"lowIncomeB","13657":"lowIncomeB","13658":"midIncome","13659":"lowIncomeB","13660":"lowIncomeB","13661":"lowIncomeA","13662":"lowIncomeA","13663":"lowIncomeB","13664":"lowIncomeA","13665":"lowIncomeA","13666":"lowIncomeB","13667":"lowIncomeA","13668":"lowIncomeA","13669":"lowIncomeA","13670":"lowIncomeA","13671":"lowIncomeA","13672":"lowIncomeB","13673":"lowIncomeB","13674":"lowIncomeA","13675":"lowIncomeB","13676":"lowIncomeA","13677":"lowIncomeA","13678":"lowIncomeA","13679":"lowIncomeA","13680":"lowIncomeA","13681":"lowIncomeA","13682":"lowIncomeA","13683":"lowIncomeA","13684":"lowIncomeB","13685":"lowIncomeA","13686":"lowIncomeB","13687":"lowIncomeA","13688":"midIncome","13689":"lowIncomeA","13690":"lowIncomeB","13691":"lowIncomeB","13692":"lowIncomeA","13693":"lowIncomeB","13694":"lowIncomeA","13695":"lowIncomeA","13696":"lowIncomeB","13697":"lowIncomeA","13698":"lowIncomeA","13699":"lowIncomeA","13700":"lowIncomeB","13701":"lowIncomeB","13702":"lowIncomeA","13703":"lowIncomeA","13704":"midIncome","13705":"lowIncomeA","13706":"lowIncomeB","13707":"lowIncomeB","13708":"lowIncomeA","13709":"lowIncomeB","13710":"lowIncomeA","13711":"lowIncomeB","13712":"lowIncomeA","13713":"lowIncomeA","13714":"lowIncomeA","13715":"lowIncomeA","13716":"lowIncomeB","13717":"lowIncomeA","13718":"lowIncomeA","13719":"lowIncomeB","13720":"lowIncomeA","13721":"lowIncomeB","13722":"lowIncomeA","13723":"lowIncomeA","13724":"lowIncomeB","13725":"lowIncomeA","13726":"midIncome","13727":"lowIncomeB","13728":"lowIncomeA","13729":"lowIncomeA","13730":"lowIncomeA","13731":"lowIncomeB","13732":"lowIncomeA","13733":"midIncome","13734":"lowIncomeA","13735":"lowIncomeA","13736":"midIncome","13737":"lowIncomeA","13738":"lowIncomeB","13739":"lowIncomeB","13740":"lowIncomeB","13741":"lowIncomeA","13742":"lowIncomeA","13743":"lowIncomeA","13744":"lowIncomeB","13745":"lowIncomeB","13746":"lowIncomeB","13747":"lowIncomeB","13748":"lowIncomeB","13749":"lowIncomeB","13750":"lowIncomeB","13751":"lowIncomeB","13752":"lowIncomeB","13753":"lowIncomeB","13754":"lowIncomeB","13755":"lowIncomeA","13756":"lowIncomeA","13757":"lowIncomeB","13758":"midIncome","13759":"lowIncomeB","13760":"lowIncomeB","13761":"midIncome","13762":"lowIncomeA","13763":"lowIncomeB","13764":"lowIncomeA","13765":"lowIncomeA","13766":"lowIncomeB","13767":"lowIncomeB","13768":"lowIncomeA","13769":"lowIncomeA","13770":"lowIncomeB","13771":"lowIncomeA","13772":"lowIncomeA","13773":"lowIncomeA","13774":"midIncome","13775":"midIncome","13776":"lowIncomeB","13777":"lowIncomeB","13778":"midIncome","13779":"lowIncomeB","13780":"lowIncomeB","13781":"lowIncomeA","13782":"lowIncomeB","13783":"lowIncomeB","13784":"lowIncomeA","13785":"lowIncomeB","13786":"lowIncomeA","13787":"lowIncomeA","13788":"midIncome","13789":"midIncome","13790":"lowIncomeA","13791":"lowIncomeB","13792":"midIncome","13793":"lowIncomeB","13794":"lowIncomeB","13795":"lowIncomeB","13796":"lowIncomeA","13797":"lowIncomeB","13798":"lowIncomeB","13799":"lowIncomeB","13800":"lowIncomeB","13801":"lowIncomeA","13802":"lowIncomeA","13803":"lowIncomeA","13804":"lowIncomeB","13805":"lowIncomeA","13806":"lowIncomeB","13807":"lowIncomeB","13808":"lowIncomeA","13809":"lowIncomeA","13810":"lowIncomeB","13811":"lowIncomeA","13812":"lowIncomeA","13813":"lowIncomeB","13814":"lowIncomeA","13815":"lowIncomeA","13816":"lowIncomeB","13817":"lowIncomeA","13818":"lowIncomeA","13819":"lowIncomeA","13820":"midIncome","13821":"lowIncomeA","13822":"lowIncomeA","13823":"lowIncomeB","13824":"midIncome","13825":"lowIncomeA","13826":"lowIncomeA","13827":"lowIncomeA","13828":"lowIncomeB","13829":"lowIncomeA","13830":"lowIncomeB","13831":"lowIncomeA","13832":"midIncome","13833":"lowIncomeB","13834":"lowIncomeA","13835":"lowIncomeB","13836":"lowIncomeA","13837":"lowIncomeA","13838":"lowIncomeB","13839":"lowIncomeB","13840":"lowIncomeA","13841":"lowIncomeA","13842":"lowIncomeA","13843":"lowIncomeA","13844":"lowIncomeA","13845":"lowIncomeA","13846":"lowIncomeB","13847":"lowIncomeA","13848":"lowIncomeA","13849":"lowIncomeB","13850":"lowIncomeA","13851":"lowIncomeA","13852":"lowIncomeB","13853":"lowIncomeA","13854":"lowIncomeB","13855":"lowIncomeA","13856":"lowIncomeB","13857":"lowIncomeA","13858":"lowIncomeB","13859":"lowIncomeB","13860":"lowIncomeA","13861":"lowIncomeA","13862":"lowIncomeA","13863":"lowIncomeA","13864":"lowIncomeB","13865":"lowIncomeB","13866":"lowIncomeB","13867":"lowIncomeA","13868":"lowIncomeB","13869":"lowIncomeB","13870":"lowIncomeB","13871":"lowIncomeB","13872":"lowIncomeA","13873":"lowIncomeB","13874":"lowIncomeA","13875":"lowIncomeB","13876":"lowIncomeA","13877":"lowIncomeB","13878":"lowIncomeA","13879":"lowIncomeA","13880":"lowIncomeA","13881":"lowIncomeA","13882":"lowIncomeB","13883":"lowIncomeA","13884":"lowIncomeA","13885":"lowIncomeA","13886":"lowIncomeA","13887":"midIncome","13888":"lowIncomeA","13889":"midIncome","13890":"lowIncomeB","13891":"lowIncomeA","13892":"lowIncomeA","13893":"lowIncomeA","13894":"lowIncomeB","13895":"lowIncomeA","13896":"lowIncomeB","13897":"lowIncomeA","13898":"lowIncomeA","13899":"lowIncomeA","13900":"lowIncomeB","13901":"lowIncomeA","13902":"lowIncomeA","13903":"lowIncomeB","13904":"midIncome","13905":"lowIncomeB","13906":"lowIncomeA","13907":"lowIncomeB","13908":"lowIncomeA","13909":"midIncome","13910":"lowIncomeA","13911":"lowIncomeB","13912":"lowIncomeA","13913":"lowIncomeA","13914":"lowIncomeB","13915":"midIncome","13916":"lowIncomeA","13917":"midIncome","13918":"lowIncomeA","13919":"lowIncomeA","13920":"lowIncomeB","13921":"lowIncomeB","13922":"lowIncomeA","13923":"lowIncomeA","13924":"lowIncomeB","13925":"lowIncomeB","13926":"lowIncomeB","13927":"lowIncomeA","13928":"lowIncomeB","13929":"lowIncomeA","13930":"lowIncomeB","13931":"lowIncomeB","13932":"lowIncomeA","13933":"lowIncomeB","13934":"lowIncomeA","13935":"lowIncomeA","13936":"midIncome","13937":"lowIncomeA","13938":"lowIncomeA","13939":"lowIncomeA","13940":"lowIncomeA","13941":"lowIncomeA","13942":"lowIncomeB","13943":"lowIncomeA","13944":"lowIncomeA","13945":"midIncome","13946":"lowIncomeA","13947":"midIncome","13948":"lowIncomeB","13949":"lowIncomeB","13950":"lowIncomeA","13951":"lowIncomeA","13952":"lowIncomeB","13953":"lowIncomeA","13954":"lowIncomeA","13955":"lowIncomeA","13956":"midIncome","13957":"lowIncomeB","13958":"lowIncomeA","13959":"lowIncomeA","13960":"lowIncomeA","13961":"midIncome","13962":"lowIncomeA","13963":"lowIncomeB","13964":"lowIncomeA","13965":"lowIncomeA","13966":"lowIncomeA","13967":"lowIncomeA","13968":"lowIncomeA","13969":"lowIncomeA","13970":"lowIncomeB","13971":"lowIncomeA","13972":"lowIncomeB","13973":"lowIncomeA","13974":"lowIncomeB","13975":"lowIncomeB","13976":"lowIncomeA","13977":"lowIncomeA","13978":"lowIncomeA","13979":"lowIncomeB","13980":"lowIncomeA","13981":"lowIncomeB","13982":"lowIncomeB","13983":"midIncome","13984":"lowIncomeA","13985":"lowIncomeB","13986":"lowIncomeA","13987":"lowIncomeB","13988":"lowIncomeA","13989":"lowIncomeA","13990":"lowIncomeA","13991":"lowIncomeA","13992":"lowIncomeB","13993":"lowIncomeA","13994":"lowIncomeB","13995":"lowIncomeB","13996":"lowIncomeA","13997":"lowIncomeA","13998":"midIncome","13999":"lowIncomeA","14000":"lowIncomeB","14001":"lowIncomeB","14002":"lowIncomeA","14003":"lowIncomeB","14004":"lowIncomeA","14005":"lowIncomeB","14006":"lowIncomeB","14007":"lowIncomeA","14008":"lowIncomeA","14009":"lowIncomeB","14010":"lowIncomeA","14011":"lowIncomeB","14012":"lowIncomeB","14013":"lowIncomeB","14014":"lowIncomeA","14015":"lowIncomeB","14016":"midIncome","14017":"lowIncomeB","14018":"lowIncomeB","14019":"lowIncomeB","14020":"lowIncomeA","14021":"lowIncomeB","14022":"lowIncomeA","14023":"lowIncomeA","14024":"lowIncomeB","14025":"lowIncomeA","14026":"lowIncomeB","14027":"lowIncomeB","14028":"lowIncomeB","14029":"lowIncomeA","14030":"lowIncomeA","14031":"lowIncomeA","14032":"lowIncomeA","14033":"lowIncomeA","14034":"lowIncomeA","14035":"midIncome","14036":"lowIncomeB","14037":"lowIncomeA","14038":"lowIncomeB","14039":"lowIncomeA","14040":"lowIncomeA","14041":"lowIncomeB","14042":"lowIncomeB","14043":"lowIncomeB","14044":"lowIncomeA","14045":"lowIncomeA","14046":"lowIncomeB","14047":"lowIncomeB","14048":"lowIncomeA","14049":"lowIncomeB","14050":"lowIncomeB","14051":"lowIncomeB","14052":"lowIncomeB","14053":"lowIncomeA","14054":"lowIncomeB","14055":"lowIncomeB","14056":"lowIncomeB","14057":"lowIncomeA","14058":"lowIncomeB","14059":"lowIncomeB","14060":"lowIncomeA","14061":"lowIncomeA","14062":"lowIncomeB","14063":"lowIncomeB","14064":"lowIncomeB","14065":"lowIncomeB","14066":"lowIncomeB","14067":"lowIncomeA","14068":"midIncome","14069":"lowIncomeA","14070":"lowIncomeA","14071":"lowIncomeB","14072":"lowIncomeB","14073":"lowIncomeA","14074":"lowIncomeA","14075":"lowIncomeB","14076":"lowIncomeB","14077":"lowIncomeB","14078":"lowIncomeA","14079":"midIncome","14080":"lowIncomeA","14081":"lowIncomeA","14082":"lowIncomeB","14083":"lowIncomeA","14084":"lowIncomeB","14085":"lowIncomeA","14086":"lowIncomeB","14087":"lowIncomeB","14088":"lowIncomeB","14089":"lowIncomeB","14090":"lowIncomeA","14091":"lowIncomeB","14092":"lowIncomeA","14093":"lowIncomeA","14094":"lowIncomeA","14095":"lowIncomeA","14096":"lowIncomeA","14097":"lowIncomeB","14098":"lowIncomeB","14099":"midIncome","14100":"lowIncomeA","14101":"lowIncomeA","14102":"midIncome","14103":"midIncome","14104":"lowIncomeA","14105":"midIncome","14106":"lowIncomeB","14107":"lowIncomeB","14108":"lowIncomeB","14109":"midIncome","14110":"lowIncomeB","14111":"lowIncomeB","14112":"midIncome","14113":"lowIncomeA","14114":"lowIncomeA","14115":"lowIncomeB","14116":"lowIncomeB","14117":"lowIncomeA","14118":"lowIncomeB","14119":"lowIncomeB","14120":"lowIncomeA","14121":"lowIncomeB","14122":"lowIncomeB","14123":"lowIncomeB","14124":"lowIncomeA","14125":"lowIncomeA","14126":"lowIncomeB","14127":"lowIncomeA","14128":"lowIncomeB","14129":"lowIncomeB","14130":"lowIncomeB","14131":"lowIncomeA","14132":"midIncome","14133":"lowIncomeB","14134":"midIncome","14135":"lowIncomeA","14136":"lowIncomeB","14137":"lowIncomeB","14138":"lowIncomeA","14139":"lowIncomeA","14140":"midIncome","14141":"lowIncomeA","14142":"lowIncomeA","14143":"lowIncomeB","14144":"lowIncomeA","14145":"lowIncomeB","14146":"lowIncomeA","14147":"lowIncomeB","14148":"lowIncomeB","14149":"lowIncomeA","14150":"lowIncomeA","14151":"lowIncomeA","14152":"lowIncomeB","14153":"midIncome","14154":"lowIncomeA","14155":"lowIncomeA","14156":"lowIncomeB","14157":"lowIncomeA","14158":"lowIncomeA","14159":"lowIncomeA","14160":"lowIncomeA","14161":"lowIncomeA","14162":"lowIncomeA","14163":"lowIncomeA","14164":"lowIncomeB","14165":"lowIncomeA","14166":"lowIncomeA","14167":"lowIncomeB","14168":"lowIncomeB","14169":"lowIncomeA","14170":"lowIncomeA","14171":"lowIncomeA","14172":"lowIncomeA","14173":"lowIncomeA","14174":"lowIncomeA","14175":"midIncome","14176":"lowIncomeB","14177":"lowIncomeB","14178":"lowIncomeB","14179":"lowIncomeB","14180":"lowIncomeB","14181":"lowIncomeB","14182":"lowIncomeB","14183":"lowIncomeB","14184":"lowIncomeB","14185":"lowIncomeA","14186":"lowIncomeA","14187":"lowIncomeB","14188":"lowIncomeB","14189":"lowIncomeB","14190":"lowIncomeB","14191":"lowIncomeB","14192":"midIncome","14193":"lowIncomeB","14194":"lowIncomeB","14195":"lowIncomeA","14196":"lowIncomeB","14197":"lowIncomeB","14198":"midIncome","14199":"lowIncomeA","14200":"lowIncomeA","14201":"lowIncomeA","14202":"lowIncomeA","14203":"lowIncomeA","14204":"lowIncomeB","14205":"lowIncomeB","14206":"lowIncomeB","14207":"lowIncomeB","14208":"midIncome","14209":"lowIncomeB","14210":"lowIncomeB","14211":"lowIncomeB","14212":"lowIncomeB","14213":"lowIncomeB","14214":"lowIncomeB","14215":"lowIncomeB","14216":"lowIncomeB","14217":"lowIncomeA","14218":"lowIncomeA","14219":"lowIncomeA","14220":"lowIncomeB","14221":"lowIncomeA","14222":"lowIncomeB","14223":"lowIncomeA","14224":"lowIncomeB","14225":"lowIncomeA","14226":"lowIncomeB","14227":"lowIncomeA","14228":"lowIncomeA","14229":"lowIncomeB","14230":"lowIncomeB","14231":"lowIncomeA","14232":"lowIncomeB","14233":"lowIncomeA","14234":"lowIncomeB","14235":"lowIncomeA","14236":"lowIncomeA","14237":"lowIncomeA","14238":"lowIncomeB","14239":"lowIncomeB","14240":"lowIncomeA","14241":"midIncome","14242":"lowIncomeA","14243":"lowIncomeB","14244":"lowIncomeB","14245":"lowIncomeA","14246":"lowIncomeA","14247":"lowIncomeA","14248":"lowIncomeB","14249":"lowIncomeA","14250":"lowIncomeB","14251":"lowIncomeB","14252":"midIncome","14253":"lowIncomeA","14254":"lowIncomeA","14255":"lowIncomeB","14256":"midIncome","14257":"lowIncomeB","14258":"lowIncomeB","14259":"lowIncomeA","14260":"midIncome","14261":"lowIncomeA","14262":"lowIncomeA","14263":"lowIncomeB","14264":"lowIncomeB","14265":"lowIncomeA","14266":"lowIncomeA","14267":"lowIncomeB","14268":"lowIncomeA","14269":"lowIncomeA","14270":"lowIncomeB","14271":"midIncome","14272":"lowIncomeB","14273":"midIncome","14274":"lowIncomeA","14275":"midIncome","14276":"lowIncomeA","14277":"lowIncomeA","14278":"lowIncomeA","14279":"lowIncomeA","14280":"lowIncomeB","14281":"lowIncomeB","14282":"lowIncomeB","14283":"lowIncomeB","14284":"lowIncomeB","14285":"midIncome","14286":"lowIncomeA","14287":"lowIncomeA","14288":"lowIncomeA","14289":"lowIncomeB","14290":"lowIncomeB","14291":"lowIncomeB","14292":"lowIncomeB","14293":"midIncome","14294":"lowIncomeA","14295":"lowIncomeA","14296":"midIncome","14297":"lowIncomeB","14298":"lowIncomeA","14299":"lowIncomeB","14300":"lowIncomeB","14301":"lowIncomeB","14302":"lowIncomeB","14303":"lowIncomeA","14304":"lowIncomeB","14305":"lowIncomeA","14306":"lowIncomeA","14307":"lowIncomeA","14308":"lowIncomeA","14309":"lowIncomeB","14310":"lowIncomeB","14311":"lowIncomeB","14312":"midIncome","14313":"lowIncomeA","14314":"midIncome","14315":"lowIncomeA","14316":"lowIncomeA","14317":"lowIncomeA","14318":"lowIncomeB","14319":"lowIncomeA","14320":"lowIncomeA","14321":"lowIncomeA","14322":"lowIncomeA","14323":"lowIncomeA","14324":"lowIncomeA","14325":"lowIncomeA","14326":"lowIncomeB","14327":"lowIncomeA","14328":"lowIncomeA","14329":"lowIncomeA","14330":"lowIncomeA","14331":"lowIncomeA","14332":"lowIncomeA","14333":"lowIncomeB","14334":"lowIncomeA","14335":"lowIncomeB","14336":"lowIncomeB","14337":"lowIncomeB","14338":"lowIncomeA","14339":"lowIncomeB","14340":"lowIncomeA","14341":"lowIncomeA","14342":"lowIncomeB","14343":"midIncome","14344":"lowIncomeA","14345":"lowIncomeB","14346":"midIncome","14347":"lowIncomeA","14348":"lowIncomeA","14349":"lowIncomeA","14350":"lowIncomeB","14351":"lowIncomeA","14352":"lowIncomeB","14353":"lowIncomeA","14354":"lowIncomeA","14355":"lowIncomeA","14356":"lowIncomeA","14357":"lowIncomeB","14358":"lowIncomeB","14359":"lowIncomeB","14360":"lowIncomeB","14361":"lowIncomeA","14362":"lowIncomeB","14363":"lowIncomeB","14364":"lowIncomeA","14365":"lowIncomeB","14366":"lowIncomeA","14367":"lowIncomeA","14368":"lowIncomeB","14369":"lowIncomeA","14370":"lowIncomeA","14371":"lowIncomeA","14372":"lowIncomeA","14373":"lowIncomeA","14374":"lowIncomeB","14375":"lowIncomeA","14376":"lowIncomeA","14377":"lowIncomeB","14378":"lowIncomeA","14379":"midIncome","14380":"midIncome","14381":"lowIncomeB","14382":"lowIncomeB","14383":"lowIncomeA","14384":"lowIncomeB","14385":"lowIncomeA","14386":"lowIncomeA","14387":"lowIncomeB","14388":"lowIncomeA","14389":"midIncome","14390":"lowIncomeB","14391":"lowIncomeB","14392":"lowIncomeA","14393":"lowIncomeA","14394":"lowIncomeA","14395":"midIncome","14396":"lowIncomeB","14397":"lowIncomeA","14398":"lowIncomeA","14399":"lowIncomeB","14400":"lowIncomeB","14401":"lowIncomeA","14402":"lowIncomeA","14403":"lowIncomeA","14404":"lowIncomeB","14405":"lowIncomeA","14406":"lowIncomeB","14407":"lowIncomeA","14408":"lowIncomeA","14409":"lowIncomeA","14410":"lowIncomeB","14411":"lowIncomeA","14412":"lowIncomeB","14413":"lowIncomeB","14414":"lowIncomeA","14415":"lowIncomeA","14416":"lowIncomeA","14417":"lowIncomeB","14418":"lowIncomeA","14419":"lowIncomeB","14420":"lowIncomeB","14421":"lowIncomeB","14422":"lowIncomeB","14423":"lowIncomeA","14424":"lowIncomeA","14425":"midIncome","14426":"lowIncomeA","14427":"lowIncomeA","14428":"midIncome","14429":"lowIncomeA","14430":"lowIncomeB","14431":"lowIncomeA","14432":"lowIncomeB","14433":"lowIncomeA","14434":"lowIncomeA","14435":"lowIncomeA","14436":"lowIncomeB","14437":"lowIncomeB","14438":"lowIncomeA","14439":"lowIncomeB","14440":"lowIncomeB","14441":"lowIncomeA","14442":"lowIncomeA","14443":"lowIncomeB","14444":"lowIncomeA","14445":"lowIncomeA","14446":"lowIncomeB","14447":"lowIncomeA","14448":"lowIncomeB","14449":"lowIncomeB","14450":"lowIncomeA","14451":"lowIncomeA","14452":"lowIncomeA","14453":"lowIncomeB","14454":"lowIncomeB","14455":"lowIncomeA","14456":"lowIncomeA","14457":"lowIncomeA","14458":"midIncome","14459":"midIncome","14460":"midIncome","14461":"midIncome","14462":"midIncome","14463":"lowIncomeA","14464":"midIncome","14465":"midIncome","14466":"highIncome","14467":"midIncome","14468":"midIncome","14469":"highIncome","14470":"lowIncomeB","14471":"midIncome","14472":"midIncome","14473":"lowIncomeB","14474":"lowIncomeA","14475":"highIncome","14476":"lowIncomeB","14477":"midIncome","14478":"lowIncomeB","14479":"midIncome","14480":"midIncome","14481":"midIncome","14482":"highIncome","14483":"midIncome","14484":"midIncome","14485":"midIncome","14486":"lowIncomeA","14487":"midIncome","14488":"midIncome","14489":"midIncome","14490":"lowIncomeB","14491":"midIncome","14492":"midIncome","14493":"lowIncomeA","14494":"midIncome","14495":"midIncome","14496":"midIncome","14497":"lowIncomeA","14498":"lowIncomeA","14499":"midIncome","14500":"midIncome","14501":"midIncome","14502":"midIncome","14503":"midIncome","14504":"lowIncomeB","14505":"midIncome","14506":"lowIncomeA","14507":"midIncome","14508":"midIncome","14509":"midIncome","14510":"midIncome","14511":"midIncome","14512":"lowIncomeB","14513":"midIncome","14514":"midIncome","14515":"midIncome","14516":"midIncome","14517":"lowIncomeA","14518":"midIncome","14519":"midIncome","14520":"midIncome","14521":"midIncome","14522":"midIncome","14523":"lowIncomeB","14524":"lowIncomeA","14525":"highIncome","14526":"midIncome","14527":"highIncome","14528":"midIncome","14529":"midIncome","14530":"midIncome","14531":"midIncome","14532":"midIncome","14533":"lowIncomeB","14534":"highIncome","14535":"midIncome","14536":"lowIncomeA","14537":"lowIncomeA","14538":"lowIncomeB","14539":"midIncome","14540":"midIncome","14541":"highIncome","14542":"midIncome","14543":"midIncome","14544":"midIncome","14545":"midIncome","14546":"midIncome","14547":"midIncome","14548":"lowIncomeB","14549":"midIncome","14550":"highIncome","14551":"midIncome","14552":"lowIncomeB","14553":"midIncome","14554":"lowIncomeA","14555":"lowIncomeB","14556":"highIncome","14557":"midIncome","14558":"midIncome","14559":"midIncome","14560":"lowIncomeB","14561":"midIncome","14562":"midIncome","14563":"midIncome","14564":"midIncome","14565":"midIncome","14566":"midIncome","14567":"midIncome","14568":"midIncome","14569":"midIncome","14570":"midIncome","14571":"midIncome","14572":"lowIncomeA","14573":"lowIncomeB","14574":"midIncome","14575":"midIncome","14576":"midIncome","14577":"midIncome","14578":"midIncome","14579":"highIncome","14580":"lowIncomeA","14581":"midIncome","14582":"midIncome","14583":"midIncome","14584":"midIncome","14585":"midIncome","14586":"midIncome","14587":"lowIncomeB","14588":"midIncome","14589":"midIncome","14590":"midIncome","14591":"lowIncomeB","14592":"midIncome","14593":"lowIncomeB","14594":"lowIncomeB","14595":"midIncome","14596":"midIncome","14597":"lowIncomeB","14598":"lowIncomeB","14599":"midIncome","14600":"lowIncomeB","14601":"midIncome","14602":"lowIncomeA","14603":"lowIncomeB","14604":"midIncome","14605":"lowIncomeA","14606":"midIncome","14607":"highIncome","14608":"midIncome","14609":"midIncome","14610":"midIncome","14611":"highIncome","14612":"midIncome","14613":"midIncome","14614":"midIncome","14615":"lowIncomeA","14616":"midIncome","14617":"lowIncomeA","14618":"midIncome","14619":"midIncome","14620":"highIncome","14621":"midIncome","14622":"midIncome","14623":"lowIncomeA","14624":"midIncome","14625":"midIncome","14626":"midIncome","14627":"midIncome","14628":"midIncome","14629":"midIncome","14630":"highIncome","14631":"midIncome","14632":"midIncome","14633":"lowIncomeB","14634":"midIncome","14635":"midIncome","14636":"midIncome","14637":"lowIncomeA","14638":"highIncome","14639":"lowIncomeB","14640":"midIncome","14641":"midIncome","14642":"lowIncomeA","14643":"lowIncomeA","14644":"midIncome","14645":"midIncome","14646":"midIncome","14647":"midIncome","14648":"midIncome","14649":"midIncome","14650":"midIncome","14651":"midIncome","14652":"midIncome","14653":"midIncome","14654":"midIncome","14655":"highIncome","14656":"midIncome","14657":"midIncome","14658":"midIncome","14659":"midIncome","14660":"lowIncomeA","14661":"midIncome","14662":"lowIncomeA","14663":"midIncome","14664":"highIncome","14665":"midIncome","14666":"highIncome","14667":"highIncome","14668":"lowIncomeB","14669":"midIncome","14670":"lowIncomeA","14671":"midIncome","14672":"midIncome","14673":"midIncome","14674":"midIncome","14675":"midIncome","14676":"midIncome","14677":"lowIncomeA","14678":"midIncome","14679":"midIncome","14680":"midIncome","14681":"midIncome","14682":"midIncome","14683":"lowIncomeA","14684":"highIncome","14685":"midIncome","14686":"midIncome","14687":"lowIncomeA","14688":"midIncome","14689":"midIncome","14690":"midIncome","14691":"midIncome","14692":"midIncome","14693":"midIncome","14694":"midIncome","14695":"midIncome","14696":"midIncome","14697":"midIncome","14698":"midIncome","14699":"midIncome","14700":"lowIncomeA","14701":"midIncome","14702":"midIncome","14703":"midIncome","14704":"midIncome","14705":"lowIncomeA","14706":"midIncome","14707":"lowIncomeB","14708":"midIncome","14709":"highIncome","14710":"lowIncomeB","14711":"highIncome","14712":"midIncome","14713":"midIncome","14714":"midIncome","14715":"midIncome","14716":"midIncome","14717":"midIncome","14718":"midIncome","14719":"midIncome","14720":"highIncome","14721":"lowIncomeA","14722":"lowIncomeA","14723":"highIncome","14724":"midIncome","14725":"midIncome","14726":"midIncome","14727":"midIncome","14728":"midIncome","14729":"midIncome","14730":"midIncome","14731":"midIncome","14732":"midIncome","14733":"midIncome","14734":"midIncome","14735":"lowIncomeA","14736":"midIncome","14737":"midIncome","14738":"midIncome","14739":"midIncome","14740":"lowIncomeA","14741":"lowIncomeA","14742":"lowIncomeA","14743":"midIncome","14744":"midIncome","14745":"highIncome","14746":"midIncome","14747":"midIncome","14748":"lowIncomeB","14749":"midIncome","14750":"midIncome","14751":"lowIncomeB","14752":"midIncome","14753":"midIncome","14754":"highIncome","14755":"midIncome","14756":"highIncome","14757":"midIncome","14758":"highIncome","14759":"lowIncomeA","14760":"midIncome","14761":"midIncome","14762":"midIncome","14763":"midIncome","14764":"lowIncomeA","14765":"highIncome","14766":"midIncome","14767":"midIncome","14768":"midIncome","14769":"highIncome","14770":"midIncome","14771":"lowIncomeA","14772":"midIncome","14773":"highIncome","14774":"midIncome","14775":"midIncome","14776":"midIncome","14777":"midIncome","14778":"midIncome","14779":"midIncome","14780":"midIncome","14781":"midIncome","14782":"midIncome","14783":"midIncome","14784":"midIncome","14785":"midIncome","14786":"midIncome","14787":"midIncome","14788":"highIncome","14789":"midIncome","14790":"midIncome","14791":"midIncome","14792":"highIncome","14793":"lowIncomeB","14794":"midIncome","14795":"midIncome","14796":"midIncome","14797":"lowIncomeB","14798":"midIncome","14799":"lowIncomeA","14800":"midIncome","14801":"midIncome","14802":"midIncome","14803":"midIncome","14804":"midIncome","14805":"midIncome","14806":"midIncome","14807":"midIncome","14808":"lowIncomeB","14809":"midIncome","14810":"midIncome","14811":"lowIncomeB","14812":"highIncome","14813":"midIncome","14814":"highIncome","14815":"midIncome","14816":"midIncome","14817":"midIncome","14818":"midIncome","14819":"midIncome","14820":"midIncome","14821":"lowIncomeB","14822":"midIncome","14823":"midIncome","14824":"lowIncomeB","14825":"lowIncomeB","14826":"midIncome","14827":"midIncome","14828":"midIncome","14829":"midIncome","14830":"lowIncomeA","14831":"midIncome","14832":"midIncome","14833":"highIncome","14834":"lowIncomeA","14835":"midIncome","14836":"lowIncomeA","14837":"midIncome","14838":"midIncome","14839":"midIncome","14840":"midIncome","14841":"midIncome","14842":"midIncome","14843":"lowIncomeB","14844":"midIncome","14845":"midIncome","14846":"lowIncomeA","14847":"midIncome","14848":"midIncome","14849":"midIncome","14850":"lowIncomeB","14851":"midIncome","14852":"midIncome","14853":"lowIncomeA","14854":"midIncome","14855":"midIncome","14856":"midIncome","14857":"lowIncomeB","14858":"midIncome","14859":"midIncome","14860":"lowIncomeB","14861":"highIncome","14862":"midIncome","14863":"highIncome","14864":"midIncome","14865":"midIncome","14866":"midIncome","14867":"highIncome","14868":"midIncome","14869":"midIncome","14870":"highIncome","14871":"midIncome","14872":"midIncome","14873":"midIncome","14874":"midIncome","14875":"midIncome","14876":"midIncome","14877":"midIncome","14878":"midIncome","14879":"midIncome","14880":"lowIncomeA","14881":"midIncome","14882":"midIncome","14883":"highIncome","14884":"highIncome","14885":"lowIncomeB","14886":"lowIncomeB","14887":"midIncome","14888":"midIncome","14889":"midIncome","14890":"midIncome","14891":"lowIncomeA","14892":"midIncome","14893":"highIncome","14894":"midIncome","14895":"highIncome","14896":"midIncome","14897":"midIncome","14898":"midIncome","14899":"midIncome","14900":"lowIncomeA","14901":"lowIncomeA","14902":"midIncome","14903":"midIncome","14904":"lowIncomeB","14905":"midIncome","14906":"midIncome","14907":"midIncome","14908":"midIncome","14909":"midIncome","14910":"midIncome","14911":"midIncome","14912":"midIncome","14913":"highIncome","14914":"midIncome","14915":"midIncome","14916":"lowIncomeA","14917":"lowIncomeB","14918":"midIncome","14919":"midIncome","14920":"midIncome","14921":"lowIncomeA","14922":"lowIncomeA","14923":"highIncome","14924":"lowIncomeA","14925":"highIncome","14926":"midIncome","14927":"lowIncomeB","14928":"midIncome","14929":"lowIncomeB","14930":"lowIncomeB","14931":"midIncome","14932":"lowIncomeB","14933":"lowIncomeA","14934":"midIncome","14935":"highIncome","14936":"midIncome","14937":"midIncome","14938":"midIncome","14939":"lowIncomeA","14940":"midIncome","14941":"midIncome","14942":"highIncome","14943":"lowIncomeA","14944":"midIncome","14945":"midIncome","14946":"midIncome","14947":"midIncome","14948":"midIncome","14949":"highIncome","14950":"midIncome","14951":"midIncome","14952":"midIncome","14953":"midIncome","14954":"midIncome","14955":"midIncome","14956":"midIncome","14957":"midIncome","14958":"midIncome","14959":"midIncome","14960":"midIncome","14961":"midIncome","14962":"midIncome","14963":"lowIncomeA","14964":"lowIncomeA","14965":"midIncome","14966":"highIncome","14967":"midIncome","14968":"lowIncomeA","14969":"lowIncomeB","14970":"midIncome","14971":"midIncome","14972":"midIncome","14973":"midIncome","14974":"midIncome","14975":"midIncome","14976":"midIncome","14977":"midIncome","14978":"midIncome","14979":"lowIncomeA","14980":"midIncome","14981":"midIncome","14982":"midIncome","14983":"midIncome","14984":"midIncome","14985":"midIncome","14986":"midIncome","14987":"lowIncomeB","14988":"midIncome","14989":"midIncome","14990":"midIncome","14991":"midIncome","14992":"midIncome","14993":"midIncome","14994":"lowIncomeB","14995":"midIncome","14996":"midIncome","14997":"midIncome","14998":"midIncome","14999":"midIncome","15000":"midIncome","15001":"midIncome","15002":"midIncome","15003":"lowIncomeA","15004":"midIncome","15005":"midIncome","15006":"midIncome","15007":"midIncome","15008":"highIncome","15009":"lowIncomeA","15010":"lowIncomeB","15011":"highIncome","15012":"midIncome","15013":"lowIncomeB","15014":"midIncome","15015":"midIncome","15016":"midIncome","15017":"midIncome","15018":"lowIncomeA","15019":"highIncome","15020":"lowIncomeB","15021":"midIncome","15022":"midIncome","15023":"lowIncomeB","15024":"midIncome","15025":"midIncome","15026":"midIncome","15027":"lowIncomeA","15028":"midIncome","15029":"lowIncomeA","15030":"midIncome","15031":"midIncome","15032":"midIncome","15033":"midIncome","15034":"lowIncomeA","15035":"midIncome","15036":"midIncome","15037":"lowIncomeB","15038":"midIncome","15039":"midIncome","15040":"midIncome","15041":"midIncome","15042":"lowIncomeB","15043":"midIncome","15044":"midIncome","15045":"midIncome","15046":"midIncome","15047":"midIncome","15048":"midIncome","15049":"midIncome","15050":"midIncome","15051":"midIncome","15052":"midIncome","15053":"highIncome","15054":"midIncome","15055":"highIncome","15056":"midIncome","15057":"midIncome","15058":"midIncome","15059":"lowIncomeB","15060":"midIncome","15061":"midIncome","15062":"lowIncomeB","15063":"midIncome","15064":"highIncome","15065":"midIncome","15066":"midIncome","15067":"midIncome","15068":"highIncome","15069":"midIncome","15070":"highIncome","15071":"midIncome","15072":"lowIncomeB","15073":"midIncome","15074":"midIncome","15075":"midIncome","15076":"midIncome","15077":"midIncome","15078":"midIncome","15079":"midIncome","15080":"midIncome","15081":"midIncome","15082":"midIncome","15083":"lowIncomeA","15084":"midIncome","15085":"midIncome","15086":"midIncome","15087":"midIncome","15088":"midIncome","15089":"midIncome","15090":"midIncome","15091":"midIncome","15092":"midIncome","15093":"midIncome","15094":"midIncome","15095":"midIncome","15096":"midIncome","15097":"midIncome","15098":"midIncome","15099":"midIncome","15100":"midIncome","15101":"highIncome","15102":"midIncome","15103":"midIncome","15104":"lowIncomeB","15105":"midIncome","15106":"lowIncomeA","15107":"midIncome","15108":"midIncome","15109":"lowIncomeB","15110":"midIncome","15111":"midIncome","15112":"midIncome","15113":"midIncome","15114":"midIncome","15115":"highIncome","15116":"lowIncomeB","15117":"midIncome","15118":"lowIncomeA","15119":"midIncome","15120":"midIncome","15121":"midIncome","15122":"midIncome","15123":"midIncome","15124":"lowIncomeA","15125":"midIncome","15126":"midIncome","15127":"midIncome","15128":"midIncome","15129":"midIncome","15130":"midIncome","15131":"midIncome","15132":"highIncome","15133":"midIncome","15134":"midIncome","15135":"midIncome","15136":"midIncome","15137":"lowIncomeA","15138":"lowIncomeA","15139":"highIncome","15140":"midIncome","15141":"lowIncomeA","15142":"midIncome","15143":"midIncome","15144":"midIncome","15145":"midIncome","15146":"midIncome","15147":"midIncome","15148":"lowIncomeB","15149":"midIncome","15150":"lowIncomeA"},"bldid":{"0":263,"1":136,"2":119,"3":172,"4":383,"5":245,"6":100,"7":188,"8":124,"9":318,"10":234,"11":279,"12":211,"13":285,"14":214,"15":171,"16":285,"17":54,"18":124,"19":226,"20":335,"21":8,"22":242,"23":136,"24":178,"25":123,"26":20,"27":64,"28":209,"29":207,"30":304,"31":69,"32":363,"33":273,"34":56,"35":236,"36":17,"37":330,"38":123,"39":166,"40":97,"41":300,"42":223,"43":291,"44":199,"45":124,"46":3,"47":110,"48":217,"49":108,"50":276,"51":396,"52":286,"53":315,"54":109,"55":141,"56":142,"57":187,"58":270,"59":154,"60":171,"61":157,"62":133,"63":100,"64":151,"65":272,"66":41,"67":19,"68":179,"69":346,"70":302,"71":184,"72":117,"73":312,"74":22,"75":236,"76":253,"77":59,"78":335,"79":283,"80":178,"81":220,"82":17,"83":257,"84":285,"85":248,"86":301,"87":397,"88":12,"89":123,"90":328,"91":84,"92":394,"93":147,"94":229,"95":239,"96":273,"97":327,"98":60,"99":47,"100":19,"101":84,"102":142,"103":100,"104":306,"105":225,"106":66,"107":301,"108":213,"109":285,"110":70,"111":39,"112":130,"113":194,"114":138,"115":364,"116":88,"117":51,"118":208,"119":56,"120":118,"121":239,"122":47,"123":50,"124":322,"125":37,"126":249,"127":268,"128":22,"129":74,"130":199,"131":155,"132":300,"133":4,"134":86,"135":353,"136":139,"137":109,"138":251,"139":97,"140":34,"141":312,"142":248,"143":175,"144":116,"145":331,"146":329,"147":401,"148":2,"149":201,"150":206,"151":33,"152":131,"153":245,"154":132,"155":326,"156":232,"157":236,"158":370,"159":327,"160":44,"161":70,"162":37,"163":266,"164":245,"165":21,"166":343,"167":38,"168":253,"169":31,"170":154,"171":279,"172":302,"173":32,"174":114,"175":355,"176":172,"177":104,"178":355,"179":248,"180":392,"181":142,"182":7,"183":102,"184":243,"185":299,"186":188,"187":220,"188":56,"189":332,"190":75,"191":288,"192":165,"193":124,"194":64,"195":306,"196":6,"197":374,"198":84,"199":279,"200":142,"201":312,"202":399,"203":117,"204":129,"205":277,"206":221,"207":380,"208":109,"209":111,"210":138,"211":33,"212":290,"213":54,"214":389,"215":386,"216":21,"217":194,"218":330,"219":357,"220":312,"221":386,"222":204,"223":355,"224":123,"225":354,"226":214,"227":189,"228":204,"229":74,"230":97,"231":383,"232":17,"233":256,"234":334,"235":19,"236":394,"237":393,"238":303,"239":4,"240":44,"241":178,"242":186,"243":360,"244":161,"245":33,"246":97,"247":322,"248":288,"249":287,"250":142,"251":168,"252":397,"253":117,"254":245,"255":181,"256":294,"257":278,"258":151,"259":17,"260":59,"261":213,"262":250,"263":338,"264":369,"265":320,"266":359,"267":389,"268":300,"269":20,"270":156,"271":17,"272":1,"273":262,"274":275,"275":330,"276":159,"277":120,"278":239,"279":201,"280":221,"281":239,"282":180,"283":89,"284":115,"285":75,"286":77,"287":279,"288":273,"289":303,"290":220,"291":249,"292":303,"293":111,"294":317,"295":172,"296":70,"297":160,"298":161,"299":120,"300":173,"301":75,"302":380,"303":166,"304":366,"305":70,"306":21,"307":158,"308":82,"309":201,"310":378,"311":178,"312":82,"313":371,"314":84,"315":107,"316":29,"317":88,"318":210,"319":204,"320":84,"321":156,"322":37,"323":269,"324":22,"325":13,"326":15,"327":314,"328":22,"329":142,"330":178,"331":229,"332":286,"333":17,"334":178,"335":86,"336":31,"337":17,"338":241,"339":203,"340":256,"341":234,"342":76,"343":62,"344":148,"345":229,"346":327,"347":59,"348":51,"349":31,"350":26,"351":155,"352":162,"353":203,"354":168,"355":335,"356":239,"357":239,"358":171,"359":117,"360":294,"361":339,"362":355,"363":186,"364":19,"365":209,"366":124,"367":224,"368":241,"369":319,"370":379,"371":21,"372":109,"373":161,"374":234,"375":308,"376":220,"377":150,"378":300,"379":117,"380":272,"381":200,"382":138,"383":257,"384":295,"385":379,"386":361,"387":343,"388":95,"389":394,"390":195,"391":180,"392":61,"393":17,"394":109,"395":60,"396":37,"397":373,"398":58,"399":117,"400":62,"401":108,"402":357,"403":311,"404":101,"405":34,"406":23,"407":124,"408":275,"409":317,"410":355,"411":401,"412":171,"413":136,"414":297,"415":320,"416":22,"417":98,"418":278,"419":235,"420":100,"421":108,"422":144,"423":317,"424":196,"425":18,"426":128,"427":117,"428":70,"429":19,"430":60,"431":163,"432":394,"433":393,"434":150,"435":228,"436":44,"437":394,"438":258,"439":332,"440":180,"441":56,"442":300,"443":61,"444":330,"445":246,"446":70,"447":243,"448":335,"449":145,"450":120,"451":378,"452":362,"453":198,"454":160,"455":224,"456":31,"457":130,"458":207,"459":50,"460":395,"461":64,"462":103,"463":272,"464":7,"465":6,"466":37,"467":295,"468":88,"469":161,"470":141,"471":394,"472":166,"473":20,"474":151,"475":17,"476":219,"477":303,"478":88,"479":88,"480":294,"481":123,"482":196,"483":298,"484":285,"485":256,"486":18,"487":190,"488":340,"489":386,"490":338,"491":246,"492":124,"493":249,"494":74,"495":198,"496":310,"497":243,"498":211,"499":291,"500":184,"501":27,"502":352,"503":234,"504":120,"505":309,"506":171,"507":120,"508":216,"509":274,"510":256,"511":355,"512":284,"513":24,"514":383,"515":26,"516":74,"517":239,"518":325,"519":214,"520":54,"521":88,"522":155,"523":300,"524":92,"525":239,"526":303,"527":229,"528":326,"529":386,"530":85,"531":46,"532":344,"533":35,"534":355,"535":367,"536":188,"537":70,"538":64,"539":401,"540":123,"541":22,"542":254,"543":332,"544":151,"545":138,"546":13,"547":94,"548":176,"549":54,"550":13,"551":214,"552":255,"553":274,"554":4,"555":64,"556":19,"557":258,"558":249,"559":149,"560":117,"561":251,"562":229,"563":196,"564":178,"565":120,"566":346,"567":356,"568":35,"569":282,"570":162,"571":298,"572":257,"573":161,"574":97,"575":210,"576":110,"577":145,"578":35,"579":78,"580":53,"581":202,"582":155,"583":155,"584":109,"585":330,"586":108,"587":4,"588":172,"589":368,"590":300,"591":378,"592":383,"593":303,"594":374,"595":47,"596":314,"597":66,"598":117,"599":31,"600":368,"601":158,"602":162,"603":260,"604":13,"605":112,"606":190,"607":204,"608":33,"609":175,"610":206,"611":33,"612":259,"613":238,"614":384,"615":82,"616":60,"617":249,"618":124,"619":76,"620":339,"621":250,"622":105,"623":22,"624":246,"625":306,"626":109,"627":213,"628":170,"629":269,"630":9,"631":218,"632":219,"633":236,"634":23,"635":294,"636":305,"637":357,"638":327,"639":259,"640":189,"641":68,"642":13,"643":31,"644":201,"645":28,"646":123,"647":120,"648":151,"649":152,"650":288,"651":303,"652":251,"653":152,"654":166,"655":159,"656":93,"657":97,"658":159,"659":234,"660":313,"661":51,"662":379,"663":113,"664":345,"665":398,"666":37,"667":78,"668":377,"669":61,"670":188,"671":392,"672":382,"673":203,"674":124,"675":64,"676":78,"677":178,"678":108,"679":304,"680":368,"681":60,"682":253,"683":342,"684":236,"685":383,"686":260,"687":209,"688":397,"689":70,"690":332,"691":203,"692":294,"693":393,"694":88,"695":229,"696":50,"697":264,"698":188,"699":33,"700":177,"701":340,"702":100,"703":150,"704":107,"705":285,"706":288,"707":299,"708":111,"709":359,"710":268,"711":240,"712":248,"713":47,"714":354,"715":111,"716":335,"717":332,"718":398,"719":77,"720":201,"721":84,"722":310,"723":312,"724":92,"725":4,"726":112,"727":249,"728":225,"729":220,"730":10,"731":123,"732":82,"733":35,"734":178,"735":246,"736":178,"737":124,"738":152,"739":187,"740":19,"741":383,"742":115,"743":114,"744":236,"745":77,"746":30,"747":255,"748":188,"749":155,"750":371,"751":389,"752":368,"753":6,"754":381,"755":46,"756":168,"757":368,"758":171,"759":394,"760":296,"761":107,"762":88,"763":161,"764":151,"765":327,"766":92,"767":305,"768":54,"769":97,"770":315,"771":322,"772":85,"773":198,"774":393,"775":58,"776":108,"777":345,"778":382,"779":117,"780":397,"781":251,"782":89,"783":392,"784":76,"785":193,"786":246,"787":1,"788":168,"789":27,"790":379,"791":271,"792":4,"793":108,"794":178,"795":60,"796":97,"797":291,"798":108,"799":311,"800":204,"801":149,"802":257,"803":142,"804":286,"805":303,"806":377,"807":248,"808":131,"809":109,"810":220,"811":97,"812":74,"813":76,"814":7,"815":78,"816":383,"817":151,"818":107,"819":74,"820":303,"821":288,"822":64,"823":170,"824":313,"825":279,"826":91,"827":270,"828":178,"829":286,"830":90,"831":159,"832":63,"833":205,"834":218,"835":336,"836":120,"837":145,"838":394,"839":218,"840":320,"841":188,"842":363,"843":243,"844":85,"845":248,"846":136,"847":317,"848":166,"849":94,"850":286,"851":286,"852":214,"853":163,"854":350,"855":281,"856":58,"857":317,"858":141,"859":271,"860":61,"861":11,"862":9,"863":97,"864":229,"865":288,"866":245,"867":296,"868":312,"869":152,"870":288,"871":292,"872":55,"873":184,"874":22,"875":201,"876":13,"877":204,"878":175,"879":17,"880":258,"881":204,"882":26,"883":97,"884":239,"885":84,"886":167,"887":245,"888":365,"889":103,"890":401,"891":49,"892":128,"893":346,"894":293,"895":332,"896":181,"897":93,"898":194,"899":349,"900":92,"901":214,"902":188,"903":102,"904":37,"905":335,"906":377,"907":48,"908":379,"909":56,"910":328,"911":401,"912":61,"913":172,"914":279,"915":317,"916":239,"917":237,"918":156,"919":80,"920":220,"921":100,"922":66,"923":323,"924":7,"925":94,"926":75,"927":214,"928":365,"929":75,"930":60,"931":10,"932":141,"933":151,"934":204,"935":234,"936":220,"937":315,"938":264,"939":13,"940":206,"941":84,"942":351,"943":203,"944":110,"945":142,"946":157,"947":60,"948":384,"949":48,"950":204,"951":179,"952":166,"953":265,"954":208,"955":124,"956":109,"957":93,"958":9,"959":307,"960":322,"961":201,"962":123,"963":142,"964":17,"965":114,"966":56,"967":155,"968":148,"969":204,"970":34,"971":355,"972":384,"973":356,"974":104,"975":271,"976":136,"977":318,"978":288,"979":339,"980":138,"981":60,"982":56,"983":202,"984":136,"985":163,"986":88,"987":394,"988":107,"989":371,"990":6,"991":98,"992":238,"993":201,"994":61,"995":180,"996":37,"997":189,"998":36,"999":370,"1000":35,"1001":392,"1002":218,"1003":92,"1004":294,"1005":347,"1006":307,"1007":78,"1008":169,"1009":239,"1010":311,"1011":76,"1012":206,"1013":142,"1014":28,"1015":48,"1016":151,"1017":22,"1018":124,"1019":148,"1020":194,"1021":37,"1022":70,"1023":203,"1024":69,"1025":26,"1026":294,"1027":70,"1028":203,"1029":6,"1030":204,"1031":240,"1032":175,"1033":221,"1034":369,"1035":54,"1036":119,"1037":172,"1038":120,"1039":37,"1040":109,"1041":221,"1042":203,"1043":323,"1044":132,"1045":233,"1046":17,"1047":335,"1048":212,"1049":103,"1050":312,"1051":28,"1052":314,"1053":197,"1054":159,"1055":308,"1056":307,"1057":115,"1058":233,"1059":220,"1060":172,"1061":48,"1062":320,"1063":61,"1064":60,"1065":26,"1066":332,"1067":166,"1068":124,"1069":35,"1070":229,"1071":244,"1072":312,"1073":227,"1074":290,"1075":303,"1076":309,"1077":130,"1078":201,"1079":327,"1080":239,"1081":152,"1082":204,"1083":320,"1084":63,"1085":13,"1086":118,"1087":224,"1088":246,"1089":285,"1090":197,"1091":283,"1092":311,"1093":188,"1094":379,"1095":348,"1096":225,"1097":84,"1098":151,"1099":350,"1100":19,"1101":60,"1102":228,"1103":45,"1104":130,"1105":239,"1106":182,"1107":27,"1108":357,"1109":184,"1110":352,"1111":220,"1112":312,"1113":245,"1114":163,"1115":90,"1116":152,"1117":84,"1118":31,"1119":366,"1120":47,"1121":383,"1122":343,"1123":128,"1124":183,"1125":46,"1126":322,"1127":208,"1128":108,"1129":374,"1130":378,"1131":47,"1132":50,"1133":152,"1134":277,"1135":88,"1136":203,"1137":398,"1138":161,"1139":149,"1140":396,"1141":53,"1142":345,"1143":267,"1144":167,"1145":255,"1146":210,"1147":35,"1148":325,"1149":322,"1150":69,"1151":357,"1152":210,"1153":42,"1154":312,"1155":246,"1156":179,"1157":355,"1158":34,"1159":153,"1160":56,"1161":206,"1162":309,"1163":163,"1164":157,"1165":56,"1166":343,"1167":203,"1168":33,"1169":295,"1170":339,"1171":273,"1172":317,"1173":298,"1174":377,"1175":398,"1176":41,"1177":54,"1178":295,"1179":179,"1180":394,"1181":151,"1182":204,"1183":154,"1184":312,"1185":151,"1186":60,"1187":368,"1188":229,"1189":94,"1190":228,"1191":351,"1192":81,"1193":105,"1194":26,"1195":35,"1196":383,"1197":287,"1198":115,"1199":378,"1200":303,"1201":204,"1202":64,"1203":87,"1204":136,"1205":111,"1206":121,"1207":109,"1208":361,"1209":354,"1210":109,"1211":149,"1212":115,"1213":26,"1214":121,"1215":354,"1216":48,"1217":160,"1218":270,"1219":346,"1220":152,"1221":27,"1222":196,"1223":272,"1224":220,"1225":4,"1226":214,"1227":324,"1228":231,"1229":100,"1230":234,"1231":91,"1232":229,"1233":107,"1234":94,"1235":346,"1236":220,"1237":87,"1238":377,"1239":236,"1240":245,"1241":295,"1242":312,"1243":335,"1244":382,"1245":300,"1246":22,"1247":87,"1248":236,"1249":124,"1250":398,"1251":326,"1252":62,"1253":319,"1254":332,"1255":253,"1256":124,"1257":356,"1258":221,"1259":176,"1260":93,"1261":22,"1262":90,"1263":159,"1264":286,"1265":120,"1266":106,"1267":123,"1268":123,"1269":42,"1270":60,"1271":109,"1272":17,"1273":371,"1274":100,"1275":66,"1276":87,"1277":49,"1278":147,"1279":151,"1280":53,"1281":199,"1282":249,"1283":17,"1284":285,"1285":244,"1286":178,"1287":73,"1288":183,"1289":140,"1290":332,"1291":58,"1292":184,"1293":70,"1294":120,"1295":260,"1296":31,"1297":322,"1298":19,"1299":69,"1300":355,"1301":286,"1302":171,"1303":204,"1304":220,"1305":60,"1306":229,"1307":117,"1308":80,"1309":397,"1310":355,"1311":142,"1312":265,"1313":322,"1314":22,"1315":349,"1316":19,"1317":178,"1318":159,"1319":224,"1320":25,"1321":39,"1322":7,"1323":105,"1324":151,"1325":47,"1326":220,"1327":142,"1328":60,"1329":279,"1330":151,"1331":176,"1332":203,"1333":373,"1334":37,"1335":377,"1336":56,"1337":286,"1338":338,"1339":37,"1340":291,"1341":387,"1342":194,"1343":319,"1344":383,"1345":239,"1346":80,"1347":10,"1348":54,"1349":373,"1350":258,"1351":61,"1352":79,"1353":311,"1354":213,"1355":211,"1356":117,"1357":100,"1358":128,"1359":26,"1360":172,"1361":259,"1362":286,"1363":46,"1364":380,"1365":317,"1366":379,"1367":51,"1368":58,"1369":233,"1370":74,"1371":108,"1372":188,"1373":329,"1374":243,"1375":37,"1376":70,"1377":60,"1378":229,"1379":167,"1380":245,"1381":281,"1382":253,"1383":400,"1384":133,"1385":220,"1386":185,"1387":147,"1388":47,"1389":274,"1390":120,"1391":151,"1392":248,"1393":265,"1394":171,"1395":396,"1396":204,"1397":276,"1398":389,"1399":26,"1400":172,"1401":372,"1402":151,"1403":70,"1404":125,"1405":312,"1406":326,"1407":116,"1408":279,"1409":278,"1410":292,"1411":279,"1412":124,"1413":146,"1414":369,"1415":256,"1416":328,"1417":124,"1418":258,"1419":389,"1420":375,"1421":94,"1422":380,"1423":380,"1424":110,"1425":93,"1426":121,"1427":151,"1428":136,"1429":172,"1430":396,"1431":173,"1432":355,"1433":203,"1434":109,"1435":84,"1436":199,"1437":206,"1438":15,"1439":229,"1440":13,"1441":219,"1442":304,"1443":280,"1444":52,"1445":255,"1446":379,"1447":396,"1448":106,"1449":157,"1450":17,"1451":330,"1452":312,"1453":123,"1454":142,"1455":28,"1456":317,"1457":161,"1458":387,"1459":214,"1460":142,"1461":229,"1462":157,"1463":157,"1464":279,"1465":327,"1466":333,"1467":211,"1468":244,"1469":249,"1470":183,"1471":9,"1472":84,"1473":312,"1474":396,"1475":229,"1476":108,"1477":345,"1478":330,"1479":131,"1480":97,"1481":19,"1482":312,"1483":250,"1484":303,"1485":335,"1486":128,"1487":98,"1488":229,"1489":161,"1490":54,"1491":20,"1492":28,"1493":302,"1494":23,"1495":37,"1496":61,"1497":60,"1498":31,"1499":12,"1500":142,"1501":130,"1502":248,"1503":207,"1504":21,"1505":383,"1506":248,"1507":220,"1508":310,"1509":256,"1510":349,"1511":190,"1512":70,"1513":70,"1514":361,"1515":363,"1516":144,"1517":299,"1518":355,"1519":286,"1520":26,"1521":239,"1522":344,"1523":172,"1524":123,"1525":60,"1526":172,"1527":6,"1528":78,"1529":130,"1530":109,"1531":334,"1532":151,"1533":98,"1534":201,"1535":78,"1536":311,"1537":31,"1538":220,"1539":272,"1540":261,"1541":26,"1542":22,"1543":204,"1544":98,"1545":180,"1546":127,"1547":229,"1548":288,"1549":214,"1550":178,"1551":17,"1552":236,"1553":117,"1554":53,"1555":332,"1556":114,"1557":307,"1558":301,"1559":123,"1560":72,"1561":124,"1562":195,"1563":379,"1564":342,"1565":346,"1566":166,"1567":220,"1568":170,"1569":60,"1570":344,"1571":368,"1572":22,"1573":186,"1574":13,"1575":228,"1576":166,"1577":295,"1578":236,"1579":335,"1580":339,"1581":383,"1582":250,"1583":327,"1584":226,"1585":125,"1586":8,"1587":85,"1588":161,"1589":126,"1590":357,"1591":39,"1592":81,"1593":29,"1594":335,"1595":368,"1596":64,"1597":113,"1598":303,"1599":394,"1600":66,"1601":229,"1602":373,"1603":374,"1604":322,"1605":377,"1606":175,"1607":171,"1608":370,"1609":341,"1610":344,"1611":183,"1612":201,"1613":171,"1614":395,"1615":150,"1616":111,"1617":208,"1618":176,"1619":258,"1620":180,"1621":302,"1622":26,"1623":355,"1624":148,"1625":142,"1626":249,"1627":253,"1628":286,"1629":19,"1630":156,"1631":176,"1632":327,"1633":395,"1634":13,"1635":107,"1636":327,"1637":67,"1638":248,"1639":367,"1640":286,"1641":286,"1642":218,"1643":286,"1644":293,"1645":220,"1646":220,"1647":93,"1648":236,"1649":62,"1650":17,"1651":371,"1652":383,"1653":386,"1654":120,"1655":161,"1656":91,"1657":258,"1658":57,"1659":295,"1660":129,"1661":399,"1662":279,"1663":252,"1664":356,"1665":151,"1666":369,"1667":339,"1668":37,"1669":26,"1670":76,"1671":54,"1672":258,"1673":82,"1674":374,"1675":64,"1676":214,"1677":123,"1678":171,"1679":396,"1680":54,"1681":279,"1682":300,"1683":203,"1684":286,"1685":365,"1686":135,"1687":180,"1688":343,"1689":239,"1690":159,"1691":23,"1692":341,"1693":225,"1694":312,"1695":288,"1696":14,"1697":351,"1698":70,"1699":239,"1700":7,"1701":84,"1702":337,"1703":332,"1704":385,"1705":22,"1706":95,"1707":310,"1708":26,"1709":187,"1710":249,"1711":70,"1712":250,"1713":330,"1714":239,"1715":14,"1716":214,"1717":245,"1718":93,"1719":167,"1720":12,"1721":317,"1722":203,"1723":13,"1724":14,"1725":322,"1726":128,"1727":112,"1728":75,"1729":249,"1730":53,"1731":295,"1732":322,"1733":282,"1734":11,"1735":343,"1736":151,"1737":153,"1738":98,"1739":93,"1740":124,"1741":123,"1742":61,"1743":56,"1744":396,"1745":26,"1746":327,"1747":140,"1748":208,"1749":293,"1750":245,"1751":255,"1752":71,"1753":2,"1754":275,"1755":4,"1756":351,"1757":12,"1758":266,"1759":385,"1760":4,"1761":214,"1762":131,"1763":106,"1764":277,"1765":207,"1766":75,"1767":93,"1768":34,"1769":117,"1770":80,"1771":152,"1772":54,"1773":179,"1774":195,"1775":203,"1776":70,"1777":13,"1778":92,"1779":305,"1780":55,"1781":168,"1782":224,"1783":70,"1784":259,"1785":229,"1786":295,"1787":244,"1788":201,"1789":184,"1790":388,"1791":94,"1792":166,"1793":307,"1794":321,"1795":60,"1796":40,"1797":220,"1798":326,"1799":188,"1800":303,"1801":247,"1802":70,"1803":123,"1804":85,"1805":84,"1806":310,"1807":123,"1808":24,"1809":188,"1810":269,"1811":37,"1812":272,"1813":243,"1814":20,"1815":257,"1816":255,"1817":255,"1818":299,"1819":285,"1820":201,"1821":316,"1822":383,"1823":210,"1824":51,"1825":13,"1826":279,"1827":255,"1828":234,"1829":271,"1830":109,"1831":322,"1832":60,"1833":80,"1834":349,"1835":229,"1836":51,"1837":252,"1838":346,"1839":351,"1840":60,"1841":120,"1842":379,"1843":125,"1844":187,"1845":171,"1846":371,"1847":272,"1848":400,"1849":240,"1850":327,"1851":85,"1852":214,"1853":285,"1854":96,"1855":85,"1856":31,"1857":128,"1858":188,"1859":256,"1860":327,"1861":222,"1862":93,"1863":343,"1864":398,"1865":236,"1866":167,"1867":88,"1868":2,"1869":26,"1870":77,"1871":26,"1872":327,"1873":97,"1874":264,"1875":234,"1876":326,"1877":95,"1878":160,"1879":17,"1880":16,"1881":130,"1882":218,"1883":131,"1884":285,"1885":364,"1886":190,"1887":66,"1888":37,"1889":167,"1890":222,"1891":336,"1892":234,"1893":37,"1894":212,"1895":166,"1896":180,"1897":299,"1898":378,"1899":167,"1900":22,"1901":248,"1902":194,"1903":220,"1904":180,"1905":93,"1906":97,"1907":70,"1908":115,"1909":20,"1910":332,"1911":236,"1912":256,"1913":93,"1914":397,"1915":332,"1916":379,"1917":322,"1918":305,"1919":163,"1920":348,"1921":194,"1922":85,"1923":67,"1924":208,"1925":218,"1926":367,"1927":309,"1928":335,"1929":48,"1930":239,"1931":358,"1932":34,"1933":167,"1934":214,"1935":244,"1936":36,"1937":232,"1938":393,"1939":230,"1940":17,"1941":279,"1942":178,"1943":174,"1944":279,"1945":162,"1946":130,"1947":151,"1948":355,"1949":222,"1950":160,"1951":330,"1952":90,"1953":339,"1954":337,"1955":107,"1956":148,"1957":60,"1958":298,"1959":210,"1960":294,"1961":363,"1962":343,"1963":401,"1964":85,"1965":108,"1966":167,"1967":178,"1968":37,"1969":180,"1970":84,"1971":18,"1972":322,"1973":148,"1974":201,"1975":99,"1976":272,"1977":43,"1978":171,"1979":136,"1980":279,"1981":279,"1982":278,"1983":353,"1984":244,"1985":37,"1986":228,"1987":286,"1988":17,"1989":239,"1990":19,"1991":93,"1992":117,"1993":21,"1994":332,"1995":279,"1996":26,"1997":383,"1998":149,"1999":37,"2000":248,"2001":303,"2002":357,"2003":147,"2004":72,"2005":370,"2006":242,"2007":347,"2008":167,"2009":163,"2010":179,"2011":70,"2012":50,"2013":10,"2014":109,"2015":380,"2016":8,"2017":267,"2018":240,"2019":187,"2020":34,"2021":24,"2022":187,"2023":283,"2024":91,"2025":171,"2026":13,"2027":10,"2028":279,"2029":75,"2030":51,"2031":101,"2032":17,"2033":121,"2034":303,"2035":26,"2036":37,"2037":291,"2038":317,"2039":257,"2040":355,"2041":186,"2042":320,"2043":127,"2044":13,"2045":239,"2046":170,"2047":130,"2048":31,"2049":253,"2050":195,"2051":118,"2052":239,"2053":87,"2054":279,"2055":210,"2056":148,"2057":239,"2058":82,"2059":401,"2060":151,"2061":178,"2062":294,"2063":84,"2064":305,"2065":2,"2066":9,"2067":79,"2068":149,"2069":46,"2070":343,"2071":177,"2072":345,"2073":175,"2074":243,"2075":70,"2076":93,"2077":239,"2078":337,"2079":27,"2080":40,"2081":197,"2082":204,"2083":387,"2084":111,"2085":246,"2086":228,"2087":79,"2088":191,"2089":214,"2090":394,"2091":350,"2092":20,"2093":347,"2094":173,"2095":261,"2096":379,"2097":70,"2098":117,"2099":123,"2100":4,"2101":38,"2102":157,"2103":106,"2104":163,"2105":110,"2106":8,"2107":196,"2108":241,"2109":361,"2110":245,"2111":351,"2112":312,"2113":17,"2114":52,"2115":228,"2116":286,"2117":135,"2118":257,"2119":109,"2120":226,"2121":162,"2122":383,"2123":168,"2124":61,"2125":74,"2126":187,"2127":145,"2128":121,"2129":166,"2130":376,"2131":204,"2132":111,"2133":279,"2134":6,"2135":318,"2136":383,"2137":60,"2138":37,"2139":389,"2140":229,"2141":78,"2142":117,"2143":192,"2144":19,"2145":150,"2146":123,"2147":49,"2148":226,"2149":383,"2150":258,"2151":299,"2152":142,"2153":60,"2154":237,"2155":393,"2156":288,"2157":401,"2158":221,"2159":1,"2160":117,"2161":178,"2162":204,"2163":286,"2164":108,"2165":133,"2166":161,"2167":335,"2168":104,"2169":272,"2170":80,"2171":303,"2172":310,"2173":369,"2174":355,"2175":203,"2176":163,"2177":64,"2178":224,"2179":122,"2180":32,"2181":378,"2182":117,"2183":94,"2184":76,"2185":365,"2186":142,"2187":349,"2188":209,"2189":294,"2190":379,"2191":163,"2192":21,"2193":117,"2194":132,"2195":8,"2196":357,"2197":265,"2198":244,"2199":47,"2200":35,"2201":92,"2202":370,"2203":317,"2204":312,"2205":23,"2206":343,"2207":22,"2208":89,"2209":383,"2210":249,"2211":163,"2212":312,"2213":75,"2214":163,"2215":34,"2216":47,"2217":184,"2218":75,"2219":295,"2220":4,"2221":393,"2222":201,"2223":82,"2224":171,"2225":288,"2226":206,"2227":193,"2228":88,"2229":394,"2230":308,"2231":58,"2232":256,"2233":352,"2234":88,"2235":271,"2236":70,"2237":87,"2238":178,"2239":156,"2240":318,"2241":283,"2242":147,"2243":378,"2244":14,"2245":317,"2246":379,"2247":192,"2248":112,"2249":107,"2250":286,"2251":345,"2252":39,"2253":91,"2254":139,"2255":379,"2256":26,"2257":102,"2258":273,"2259":288,"2260":202,"2261":302,"2262":20,"2263":201,"2264":335,"2265":178,"2266":89,"2267":23,"2268":191,"2269":394,"2270":210,"2271":221,"2272":317,"2273":236,"2274":167,"2275":59,"2276":54,"2277":80,"2278":397,"2279":249,"2280":313,"2281":54,"2282":270,"2283":335,"2284":68,"2285":8,"2286":357,"2287":401,"2288":331,"2289":181,"2290":228,"2291":56,"2292":356,"2293":307,"2294":128,"2295":286,"2296":322,"2297":17,"2298":260,"2299":77,"2300":13,"2301":64,"2302":271,"2303":365,"2304":186,"2305":130,"2306":312,"2307":128,"2308":20,"2309":133,"2310":121,"2311":357,"2312":92,"2313":328,"2314":389,"2315":228,"2316":330,"2317":22,"2318":239,"2319":89,"2320":133,"2321":168,"2322":249,"2323":300,"2324":117,"2325":233,"2326":264,"2327":224,"2328":203,"2329":34,"2330":276,"2331":317,"2332":142,"2333":6,"2334":61,"2335":142,"2336":187,"2337":397,"2338":226,"2339":94,"2340":153,"2341":246,"2342":91,"2343":120,"2344":247,"2345":294,"2346":211,"2347":201,"2348":22,"2349":38,"2350":351,"2351":214,"2352":17,"2353":229,"2354":62,"2355":394,"2356":188,"2357":117,"2358":187,"2359":12,"2360":303,"2361":239,"2362":47,"2363":178,"2364":329,"2365":4,"2366":339,"2367":385,"2368":206,"2369":317,"2370":54,"2371":157,"2372":236,"2373":176,"2374":352,"2375":84,"2376":308,"2377":377,"2378":67,"2379":97,"2380":37,"2381":211,"2382":17,"2383":217,"2384":157,"2385":60,"2386":400,"2387":399,"2388":327,"2389":6,"2390":222,"2391":190,"2392":54,"2393":279,"2394":327,"2395":286,"2396":156,"2397":288,"2398":2,"2399":311,"2400":251,"2401":178,"2402":355,"2403":330,"2404":167,"2405":35,"2406":316,"2407":33,"2408":398,"2409":332,"2410":303,"2411":17,"2412":58,"2413":93,"2414":377,"2415":108,"2416":292,"2417":364,"2418":379,"2419":258,"2420":123,"2421":175,"2422":379,"2423":210,"2424":190,"2425":282,"2426":323,"2427":161,"2428":257,"2429":91,"2430":26,"2431":240,"2432":236,"2433":107,"2434":264,"2435":157,"2436":180,"2437":126,"2438":241,"2439":6,"2440":322,"2441":160,"2442":60,"2443":187,"2444":144,"2445":151,"2446":4,"2447":346,"2448":33,"2449":150,"2450":286,"2451":129,"2452":186,"2453":35,"2454":80,"2455":167,"2456":144,"2457":203,"2458":142,"2459":273,"2460":54,"2461":184,"2462":214,"2463":209,"2464":11,"2465":66,"2466":22,"2467":12,"2468":359,"2469":390,"2470":378,"2471":256,"2472":256,"2473":54,"2474":273,"2475":228,"2476":103,"2477":161,"2478":239,"2479":61,"2480":204,"2481":332,"2482":227,"2483":311,"2484":123,"2485":383,"2486":116,"2487":149,"2488":303,"2489":120,"2490":117,"2491":49,"2492":70,"2493":327,"2494":107,"2495":41,"2496":111,"2497":393,"2498":249,"2499":224,"2500":88,"2501":351,"2502":203,"2503":107,"2504":19,"2505":227,"2506":93,"2507":121,"2508":99,"2509":34,"2510":239,"2511":204,"2512":389,"2513":97,"2514":218,"2515":194,"2516":332,"2517":25,"2518":19,"2519":253,"2520":117,"2521":259,"2522":339,"2523":12,"2524":211,"2525":124,"2526":286,"2527":308,"2528":303,"2529":212,"2530":373,"2531":354,"2532":19,"2533":256,"2534":117,"2535":107,"2536":382,"2537":351,"2538":397,"2539":312,"2540":225,"2541":151,"2542":166,"2543":35,"2544":37,"2545":273,"2546":54,"2547":202,"2548":322,"2549":170,"2550":152,"2551":26,"2552":117,"2553":60,"2554":90,"2555":265,"2556":391,"2557":130,"2558":220,"2559":42,"2560":199,"2561":9,"2562":187,"2563":117,"2564":123,"2565":223,"2566":317,"2567":240,"2568":82,"2569":234,"2570":172,"2571":126,"2572":72,"2573":388,"2574":105,"2575":273,"2576":378,"2577":151,"2578":344,"2579":264,"2580":35,"2581":20,"2582":307,"2583":61,"2584":214,"2585":322,"2586":243,"2587":172,"2588":235,"2589":151,"2590":4,"2591":204,"2592":399,"2593":58,"2594":112,"2595":289,"2596":152,"2597":93,"2598":202,"2599":70,"2600":64,"2601":5,"2602":162,"2603":204,"2604":53,"2605":234,"2606":286,"2607":318,"2608":279,"2609":137,"2610":288,"2611":50,"2612":214,"2613":380,"2614":259,"2615":401,"2616":350,"2617":27,"2618":303,"2619":98,"2620":111,"2621":22,"2622":325,"2623":122,"2624":61,"2625":343,"2626":178,"2627":46,"2628":108,"2629":348,"2630":249,"2631":257,"2632":9,"2633":210,"2634":97,"2635":364,"2636":194,"2637":223,"2638":164,"2639":264,"2640":56,"2641":256,"2642":89,"2643":93,"2644":1,"2645":208,"2646":204,"2647":97,"2648":61,"2649":379,"2650":203,"2651":266,"2652":128,"2653":113,"2654":226,"2655":397,"2656":143,"2657":108,"2658":203,"2659":281,"2660":343,"2661":224,"2662":192,"2663":23,"2664":28,"2665":168,"2666":249,"2667":343,"2668":47,"2669":364,"2670":211,"2671":123,"2672":102,"2673":271,"2674":250,"2675":293,"2676":161,"2677":34,"2678":265,"2679":252,"2680":382,"2681":379,"2682":139,"2683":220,"2684":45,"2685":299,"2686":26,"2687":64,"2688":27,"2689":70,"2690":265,"2691":256,"2692":286,"2693":239,"2694":246,"2695":261,"2696":268,"2697":61,"2698":204,"2699":199,"2700":327,"2701":363,"2702":368,"2703":177,"2704":221,"2705":300,"2706":393,"2707":399,"2708":85,"2709":218,"2710":286,"2711":346,"2712":118,"2713":80,"2714":389,"2715":11,"2716":143,"2717":203,"2718":380,"2719":246,"2720":7,"2721":69,"2722":301,"2723":115,"2724":284,"2725":305,"2726":166,"2727":265,"2728":379,"2729":228,"2730":296,"2731":10,"2732":220,"2733":218,"2734":26,"2735":355,"2736":150,"2737":163,"2738":4,"2739":128,"2740":149,"2741":365,"2742":137,"2743":397,"2744":305,"2745":60,"2746":379,"2747":25,"2748":145,"2749":9,"2750":13,"2751":161,"2752":256,"2753":167,"2754":268,"2755":360,"2756":244,"2757":192,"2758":147,"2759":355,"2760":124,"2761":24,"2762":295,"2763":213,"2764":6,"2765":112,"2766":252,"2767":136,"2768":303,"2769":335,"2770":253,"2771":17,"2772":196,"2773":8,"2774":382,"2775":24,"2776":234,"2777":175,"2778":6,"2779":285,"2780":346,"2781":60,"2782":2,"2783":35,"2784":168,"2785":184,"2786":234,"2787":264,"2788":113,"2789":197,"2790":220,"2791":394,"2792":253,"2793":279,"2794":152,"2795":37,"2796":229,"2797":357,"2798":332,"2799":216,"2800":187,"2801":341,"2802":34,"2803":236,"2804":142,"2805":171,"2806":84,"2807":42,"2808":249,"2809":272,"2810":250,"2811":360,"2812":376,"2813":294,"2814":282,"2815":32,"2816":121,"2817":169,"2818":256,"2819":377,"2820":139,"2821":257,"2822":220,"2823":107,"2824":286,"2825":26,"2826":324,"2827":152,"2828":250,"2829":196,"2830":221,"2831":19,"2832":31,"2833":25,"2834":229,"2835":29,"2836":92,"2837":356,"2838":361,"2839":250,"2840":165,"2841":64,"2842":269,"2843":336,"2844":12,"2845":149,"2846":223,"2847":249,"2848":172,"2849":310,"2850":26,"2851":85,"2852":210,"2853":220,"2854":76,"2855":183,"2856":61,"2857":274,"2858":107,"2859":74,"2860":246,"2861":123,"2862":368,"2863":75,"2864":56,"2865":239,"2866":362,"2867":322,"2868":31,"2869":355,"2870":20,"2871":368,"2872":168,"2873":214,"2874":180,"2875":165,"2876":17,"2877":311,"2878":20,"2879":93,"2880":229,"2881":243,"2882":195,"2883":239,"2884":307,"2885":147,"2886":377,"2887":396,"2888":401,"2889":367,"2890":188,"2891":124,"2892":251,"2893":316,"2894":345,"2895":294,"2896":159,"2897":53,"2898":335,"2899":143,"2900":171,"2901":365,"2902":341,"2903":48,"2904":131,"2905":330,"2906":6,"2907":213,"2908":396,"2909":73,"2910":92,"2911":13,"2912":227,"2913":327,"2914":234,"2915":321,"2916":201,"2917":204,"2918":186,"2919":175,"2920":150,"2921":49,"2922":94,"2923":232,"2924":7,"2925":4,"2926":393,"2927":6,"2928":273,"2929":6,"2930":246,"2931":359,"2932":218,"2933":319,"2934":292,"2935":105,"2936":214,"2937":214,"2938":36,"2939":14,"2940":107,"2941":2,"2942":271,"2943":310,"2944":287,"2945":311,"2946":239,"2947":388,"2948":81,"2949":369,"2950":295,"2951":34,"2952":215,"2953":152,"2954":340,"2955":83,"2956":356,"2957":201,"2958":172,"2959":151,"2960":227,"2961":204,"2962":119,"2963":27,"2964":22,"2965":271,"2966":396,"2967":94,"2968":181,"2969":347,"2970":239,"2971":228,"2972":236,"2973":53,"2974":317,"2975":26,"2976":22,"2977":332,"2978":139,"2979":204,"2980":279,"2981":65,"2982":49,"2983":294,"2984":312,"2985":277,"2986":209,"2987":152,"2988":22,"2989":401,"2990":229,"2991":7,"2992":258,"2993":220,"2994":239,"2995":171,"2996":129,"2997":210,"2998":111,"2999":149,"3000":256,"3001":264,"3002":248,"3003":272,"3004":109,"3005":18,"3006":286,"3007":229,"3008":285,"3009":117,"3010":161,"3011":84,"3012":204,"3013":201,"3014":379,"3015":97,"3016":23,"3017":346,"3018":371,"3019":142,"3020":326,"3021":302,"3022":199,"3023":303,"3024":22,"3025":22,"3026":200,"3027":244,"3028":385,"3029":50,"3030":286,"3031":10,"3032":229,"3033":188,"3034":172,"3035":228,"3036":112,"3037":36,"3038":147,"3039":22,"3040":120,"3041":140,"3042":60,"3043":53,"3044":122,"3045":221,"3046":236,"3047":19,"3048":149,"3049":143,"3050":317,"3051":266,"3052":115,"3053":368,"3054":21,"3055":20,"3056":312,"3057":330,"3058":75,"3059":97,"3060":264,"3061":215,"3062":84,"3063":87,"3064":199,"3065":53,"3066":95,"3067":24,"3068":327,"3069":115,"3070":58,"3071":238,"3072":245,"3073":246,"3074":165,"3075":201,"3076":311,"3077":142,"3078":234,"3079":92,"3080":239,"3081":80,"3082":206,"3083":31,"3084":224,"3085":310,"3086":303,"3087":117,"3088":13,"3089":357,"3090":286,"3091":17,"3092":222,"3093":134,"3094":60,"3095":229,"3096":145,"3097":28,"3098":75,"3099":84,"3100":108,"3101":391,"3102":221,"3103":187,"3104":212,"3105":355,"3106":286,"3107":204,"3108":22,"3109":267,"3110":229,"3111":49,"3112":171,"3113":383,"3114":393,"3115":379,"3116":255,"3117":4,"3118":368,"3119":394,"3120":279,"3121":151,"3122":99,"3123":22,"3124":19,"3125":203,"3126":16,"3127":219,"3128":367,"3129":313,"3130":124,"3131":343,"3132":153,"3133":246,"3134":234,"3135":244,"3136":51,"3137":20,"3138":346,"3139":6,"3140":17,"3141":20,"3142":253,"3143":78,"3144":55,"3145":115,"3146":385,"3147":276,"3148":153,"3149":317,"3150":376,"3151":13,"3152":319,"3153":194,"3154":256,"3155":59,"3156":56,"3157":295,"3158":335,"3159":388,"3160":273,"3161":327,"3162":216,"3163":342,"3164":187,"3165":286,"3166":201,"3167":108,"3168":236,"3169":322,"3170":168,"3171":256,"3172":436,"3173":481,"3174":436,"3175":442,"3176":436,"3177":406,"3178":427,"3179":458,"3180":423,"3181":436,"3182":403,"3183":437,"3184":492,"3185":408,"3186":434,"3187":499,"3188":436,"3189":447,"3190":437,"3191":417,"3192":453,"3193":496,"3194":455,"3195":436,"3196":504,"3197":418,"3198":462,"3199":431,"3200":415,"3201":418,"3202":430,"3203":428,"3204":437,"3205":483,"3206":459,"3207":497,"3208":447,"3209":428,"3210":486,"3211":482,"3212":492,"3213":436,"3214":489,"3215":413,"3216":407,"3217":425,"3218":405,"3219":453,"3220":491,"3221":494,"3222":510,"3223":403,"3224":476,"3225":453,"3226":472,"3227":428,"3228":485,"3229":492,"3230":425,"3231":458,"3232":457,"3233":497,"3234":403,"3235":461,"3236":490,"3237":452,"3238":412,"3239":431,"3240":474,"3241":418,"3242":504,"3243":480,"3244":449,"3245":458,"3246":501,"3247":449,"3248":406,"3249":500,"3250":448,"3251":497,"3252":497,"3253":423,"3254":429,"3255":453,"3256":409,"3257":434,"3258":424,"3259":443,"3260":428,"3261":403,"3262":406,"3263":476,"3264":409,"3265":408,"3266":494,"3267":496,"3268":458,"3269":412,"3270":416,"3271":408,"3272":434,"3273":461,"3274":414,"3275":417,"3276":498,"3277":468,"3278":457,"3279":480,"3280":403,"3281":485,"3282":404,"3283":449,"3284":476,"3285":412,"3286":423,"3287":428,"3288":412,"3289":405,"3290":437,"3291":438,"3292":421,"3293":413,"3294":418,"3295":420,"3296":489,"3297":497,"3298":510,"3299":484,"3300":476,"3301":484,"3302":436,"3303":458,"3304":458,"3305":436,"3306":426,"3307":436,"3308":510,"3309":403,"3310":472,"3311":410,"3312":476,"3313":444,"3314":494,"3315":409,"3316":492,"3317":434,"3318":453,"3319":437,"3320":410,"3321":465,"3322":412,"3323":418,"3324":457,"3325":441,"3326":490,"3327":434,"3328":492,"3329":489,"3330":444,"3331":444,"3332":453,"3333":476,"3334":418,"3335":437,"3336":470,"3337":455,"3338":470,"3339":461,"3340":439,"3341":485,"3342":433,"3343":476,"3344":491,"3345":414,"3346":427,"3347":486,"3348":470,"3349":434,"3350":461,"3351":448,"3352":449,"3353":422,"3354":461,"3355":418,"3356":423,"3357":498,"3358":408,"3359":407,"3360":442,"3361":472,"3362":453,"3363":448,"3364":428,"3365":444,"3366":437,"3367":436,"3368":504,"3369":476,"3370":463,"3371":451,"3372":487,"3373":444,"3374":458,"3375":419,"3376":437,"3377":423,"3378":456,"3379":436,"3380":455,"3381":475,"3382":428,"3383":429,"3384":457,"3385":470,"3386":428,"3387":474,"3388":438,"3389":460,"3390":464,"3391":457,"3392":498,"3393":416,"3394":464,"3395":436,"3396":458,"3397":498,"3398":414,"3399":437,"3400":428,"3401":446,"3402":494,"3403":426,"3404":419,"3405":482,"3406":428,"3407":462,"3408":461,"3409":493,"3410":459,"3411":492,"3412":407,"3413":409,"3414":481,"3415":451,"3416":492,"3417":481,"3418":508,"3419":409,"3420":427,"3421":488,"3422":497,"3423":495,"3424":433,"3425":417,"3426":481,"3427":492,"3428":478,"3429":470,"3430":458,"3431":438,"3432":411,"3433":434,"3434":458,"3435":510,"3436":448,"3437":489,"3438":403,"3439":479,"3440":403,"3441":486,"3442":499,"3443":444,"3444":506,"3445":437,"3446":439,"3447":433,"3448":421,"3449":434,"3450":499,"3451":435,"3452":475,"3453":452,"3454":412,"3455":478,"3456":496,"3457":510,"3458":428,"3459":412,"3460":450,"3461":478,"3462":448,"3463":486,"3464":444,"3465":403,"3466":459,"3467":410,"3468":488,"3469":437,"3470":496,"3471":468,"3472":499,"3473":491,"3474":506,"3475":476,"3476":428,"3477":431,"3478":408,"3479":449,"3480":464,"3481":450,"3482":458,"3483":418,"3484":404,"3485":499,"3486":474,"3487":485,"3488":494,"3489":493,"3490":442,"3491":470,"3492":434,"3493":457,"3494":429,"3495":507,"3496":510,"3497":484,"3498":504,"3499":460,"3500":468,"3501":453,"3502":471,"3503":452,"3504":436,"3505":451,"3506":474,"3507":421,"3508":408,"3509":478,"3510":487,"3511":409,"3512":481,"3513":408,"3514":449,"3515":451,"3516":408,"3517":492,"3518":445,"3519":475,"3520":426,"3521":408,"3522":510,"3523":479,"3524":459,"3525":424,"3526":428,"3527":448,"3528":486,"3529":409,"3530":463,"3531":486,"3532":433,"3533":453,"3534":492,"3535":506,"3536":403,"3537":504,"3538":407,"3539":460,"3540":458,"3541":404,"3542":422,"3543":488,"3544":422,"3545":438,"3546":461,"3547":474,"3548":405,"3549":474,"3550":461,"3551":456,"3552":427,"3553":510,"3554":417,"3555":423,"3556":468,"3557":410,"3558":461,"3559":489,"3560":497,"3561":500,"3562":475,"3563":494,"3564":428,"3565":504,"3566":406,"3567":496,"3568":502,"3569":477,"3570":427,"3571":417,"3572":427,"3573":457,"3574":509,"3575":413,"3576":504,"3577":510,"3578":457,"3579":421,"3580":405,"3581":504,"3582":493,"3583":460,"3584":434,"3585":437,"3586":498,"3587":453,"3588":425,"3589":471,"3590":407,"3591":445,"3592":437,"3593":471,"3594":412,"3595":440,"3596":470,"3597":440,"3598":447,"3599":498,"3600":489,"3601":462,"3602":420,"3603":466,"3604":509,"3605":412,"3606":413,"3607":510,"3608":448,"3609":477,"3610":508,"3611":461,"3612":488,"3613":511,"3614":478,"3615":468,"3616":409,"3617":476,"3618":428,"3619":453,"3620":436,"3621":464,"3622":436,"3623":455,"3624":496,"3625":502,"3626":405,"3627":443,"3628":429,"3629":461,"3630":482,"3631":493,"3632":475,"3633":510,"3634":449,"3635":422,"3636":493,"3637":482,"3638":486,"3639":409,"3640":453,"3641":497,"3642":470,"3643":417,"3644":491,"3645":474,"3646":469,"3647":436,"3648":448,"3649":406,"3650":475,"3651":447,"3652":413,"3653":506,"3654":504,"3655":431,"3656":438,"3657":438,"3658":405,"3659":403,"3660":492,"3661":455,"3662":504,"3663":496,"3664":453,"3665":415,"3666":422,"3667":427,"3668":494,"3669":461,"3670":453,"3671":442,"3672":436,"3673":449,"3674":504,"3675":508,"3676":498,"3677":405,"3678":474,"3679":474,"3680":441,"3681":410,"3682":488,"3683":421,"3684":438,"3685":430,"3686":412,"3687":472,"3688":412,"3689":461,"3690":484,"3691":484,"3692":437,"3693":414,"3694":484,"3695":498,"3696":472,"3697":463,"3698":438,"3699":417,"3700":453,"3701":440,"3702":418,"3703":423,"3704":504,"3705":429,"3706":445,"3707":405,"3708":476,"3709":492,"3710":427,"3711":453,"3712":412,"3713":498,"3714":455,"3715":461,"3716":504,"3717":476,"3718":419,"3719":453,"3720":474,"3721":474,"3722":438,"3723":448,"3724":434,"3725":404,"3726":476,"3727":409,"3728":460,"3729":422,"3730":481,"3731":428,"3732":449,"3733":462,"3734":431,"3735":458,"3736":474,"3737":498,"3738":455,"3739":502,"3740":479,"3741":436,"3742":484,"3743":511,"3744":499,"3745":504,"3746":490,"3747":500,"3748":496,"3749":434,"3750":427,"3751":461,"3752":496,"3753":406,"3754":422,"3755":489,"3756":504,"3757":455,"3758":422,"3759":433,"3760":437,"3761":458,"3762":494,"3763":437,"3764":408,"3765":450,"3766":427,"3767":434,"3768":500,"3769":430,"3770":510,"3771":494,"3772":503,"3773":433,"3774":432,"3775":445,"3776":429,"3777":490,"3778":426,"3779":474,"3780":455,"3781":461,"3782":452,"3783":504,"3784":436,"3785":494,"3786":439,"3787":510,"3788":438,"3789":410,"3790":494,"3791":413,"3792":410,"3793":410,"3794":471,"3795":444,"3796":461,"3797":422,"3798":422,"3799":478,"3800":453,"3801":474,"3802":504,"3803":450,"3804":484,"3805":453,"3806":404,"3807":409,"3808":504,"3809":408,"3810":405,"3811":476,"3812":427,"3813":445,"3814":474,"3815":497,"3816":474,"3817":453,"3818":464,"3819":491,"3820":492,"3821":494,"3822":474,"3823":462,"3824":504,"3825":490,"3826":468,"3827":474,"3828":428,"3829":455,"3830":491,"3831":481,"3832":486,"3833":462,"3834":458,"3835":407,"3836":442,"3837":403,"3838":484,"3839":511,"3840":468,"3841":458,"3842":418,"3843":493,"3844":508,"3845":415,"3846":484,"3847":403,"3848":451,"3849":494,"3850":503,"3851":412,"3852":498,"3853":493,"3854":406,"3855":428,"3856":474,"3857":418,"3858":481,"3859":497,"3860":447,"3861":468,"3862":423,"3863":453,"3864":461,"3865":409,"3866":452,"3867":403,"3868":470,"3869":475,"3870":422,"3871":474,"3872":418,"3873":460,"3874":412,"3875":484,"3876":465,"3877":434,"3878":465,"3879":449,"3880":473,"3881":504,"3882":471,"3883":475,"3884":436,"3885":457,"3886":463,"3887":498,"3888":461,"3889":434,"3890":476,"3891":427,"3892":453,"3893":404,"3894":417,"3895":455,"3896":448,"3897":504,"3898":427,"3899":497,"3900":500,"3901":449,"3902":425,"3903":496,"3904":510,"3905":476,"3906":436,"3907":478,"3908":420,"3909":486,"3910":501,"3911":440,"3912":487,"3913":476,"3914":403,"3915":482,"3916":467,"3917":408,"3918":436,"3919":478,"3920":423,"3921":449,"3922":418,"3923":439,"3924":402,"3925":412,"3926":461,"3927":492,"3928":497,"3929":476,"3930":422,"3931":417,"3932":430,"3933":423,"3934":428,"3935":492,"3936":453,"3937":494,"3938":485,"3939":459,"3940":485,"3941":403,"3942":435,"3943":421,"3944":425,"3945":460,"3946":421,"3947":468,"3948":409,"3949":425,"3950":492,"3951":408,"3952":478,"3953":428,"3954":504,"3955":500,"3956":458,"3957":453,"3958":418,"3959":434,"3960":438,"3961":422,"3962":425,"3963":412,"3964":470,"3965":470,"3966":420,"3967":470,"3968":450,"3969":437,"3970":507,"3971":407,"3972":403,"3973":460,"3974":422,"3975":470,"3976":428,"3977":418,"3978":498,"3979":457,"3980":510,"3981":425,"3982":436,"3983":403,"3984":420,"3985":434,"3986":484,"3987":461,"3988":478,"3989":488,"3990":455,"3991":417,"3992":426,"3993":430,"3994":479,"3995":440,"3996":421,"3997":454,"3998":434,"3999":476,"4000":472,"4001":485,"4002":405,"4003":412,"4004":496,"4005":425,"4006":510,"4007":476,"4008":435,"4009":475,"4010":422,"4011":422,"4012":415,"4013":436,"4014":442,"4015":493,"4016":458,"4017":504,"4018":449,"4019":403,"4020":476,"4021":449,"4022":474,"4023":425,"4024":511,"4025":444,"4026":468,"4027":425,"4028":467,"4029":415,"4030":426,"4031":448,"4032":455,"4033":472,"4034":461,"4035":403,"4036":496,"4037":500,"4038":494,"4039":425,"4040":423,"4041":418,"4042":468,"4043":449,"4044":504,"4045":437,"4046":473,"4047":463,"4048":497,"4049":495,"4050":459,"4051":403,"4052":422,"4053":427,"4054":427,"4055":498,"4056":510,"4057":510,"4058":412,"4059":455,"4060":444,"4061":421,"4062":467,"4063":403,"4064":420,"4065":474,"4066":406,"4067":478,"4068":494,"4069":403,"4070":417,"4071":510,"4072":484,"4073":494,"4074":510,"4075":497,"4076":448,"4077":468,"4078":474,"4079":463,"4080":407,"4081":485,"4082":426,"4083":475,"4084":461,"4085":457,"4086":436,"4087":461,"4088":476,"4089":403,"4090":437,"4091":455,"4092":494,"4093":471,"4094":436,"4095":480,"4096":403,"4097":458,"4098":487,"4099":468,"4100":460,"4101":413,"4102":409,"4103":476,"4104":485,"4105":433,"4106":431,"4107":445,"4108":403,"4109":484,"4110":464,"4111":507,"4112":420,"4113":411,"4114":411,"4115":443,"4116":413,"4117":454,"4118":429,"4119":497,"4120":437,"4121":426,"4122":461,"4123":479,"4124":497,"4125":428,"4126":510,"4127":415,"4128":461,"4129":484,"4130":474,"4131":412,"4132":428,"4133":436,"4134":408,"4135":421,"4136":472,"4137":449,"4138":430,"4139":412,"4140":460,"4141":440,"4142":476,"4143":403,"4144":471,"4145":493,"4146":453,"4147":496,"4148":505,"4149":409,"4150":416,"4151":443,"4152":437,"4153":451,"4154":437,"4155":470,"4156":418,"4157":455,"4158":417,"4159":448,"4160":452,"4161":469,"4162":449,"4163":430,"4164":408,"4165":504,"4166":445,"4167":496,"4168":504,"4169":428,"4170":428,"4171":421,"4172":491,"4173":476,"4174":461,"4175":473,"4176":444,"4177":403,"4178":453,"4179":413,"4180":437,"4181":422,"4182":432,"4183":492,"4184":403,"4185":458,"4186":492,"4187":497,"4188":458,"4189":462,"4190":428,"4191":443,"4192":417,"4193":460,"4194":406,"4195":461,"4196":426,"4197":485,"4198":461,"4199":428,"4200":430,"4201":410,"4202":483,"4203":459,"4204":438,"4205":500,"4206":459,"4207":423,"4208":403,"4209":489,"4210":484,"4211":448,"4212":503,"4213":486,"4214":497,"4215":476,"4216":418,"4217":457,"4218":496,"4219":458,"4220":419,"4221":408,"4222":418,"4223":448,"4224":428,"4225":498,"4226":423,"4227":464,"4228":500,"4229":458,"4230":449,"4231":476,"4232":468,"4233":408,"4234":499,"4235":403,"4236":483,"4237":403,"4238":494,"4239":403,"4240":453,"4241":438,"4242":470,"4243":420,"4244":476,"4245":458,"4246":423,"4247":498,"4248":494,"4249":470,"4250":487,"4251":496,"4252":502,"4253":501,"4254":497,"4255":488,"4256":461,"4257":484,"4258":504,"4259":488,"4260":436,"4261":458,"4262":488,"4263":439,"4264":448,"4265":498,"4266":437,"4267":433,"4268":473,"4269":457,"4270":488,"4271":494,"4272":421,"4273":488,"4274":403,"4275":426,"4276":464,"4277":440,"4278":473,"4279":427,"4280":453,"4281":422,"4282":448,"4283":484,"4284":442,"4285":413,"4286":455,"4287":463,"4288":414,"4289":498,"4290":464,"4291":453,"4292":437,"4293":406,"4294":458,"4295":410,"4296":415,"4297":434,"4298":499,"4299":444,"4300":440,"4301":475,"4302":501,"4303":427,"4304":494,"4305":458,"4306":412,"4307":429,"4308":499,"4309":470,"4310":464,"4311":423,"4312":472,"4313":461,"4314":445,"4315":422,"4316":433,"4317":476,"4318":494,"4319":434,"4320":472,"4321":458,"4322":461,"4323":425,"4324":462,"4325":501,"4326":417,"4327":428,"4328":403,"4329":409,"4330":461,"4331":461,"4332":484,"4333":458,"4334":494,"4335":406,"4336":453,"4337":419,"4338":476,"4339":418,"4340":453,"4341":439,"4342":422,"4343":452,"4344":492,"4345":486,"4346":476,"4347":408,"4348":470,"4349":494,"4350":428,"4351":437,"4352":455,"4353":428,"4354":496,"4355":440,"4356":444,"4357":470,"4358":508,"4359":463,"4360":449,"4361":409,"4362":461,"4363":495,"4364":496,"4365":494,"4366":475,"4367":437,"4368":470,"4369":416,"4370":461,"4371":462,"4372":508,"4373":499,"4374":468,"4375":413,"4376":510,"4377":474,"4378":455,"4379":429,"4380":581,"4381":565,"4382":514,"4383":582,"4384":571,"4385":545,"4386":556,"4387":576,"4388":576,"4389":527,"4390":555,"4391":513,"4392":578,"4393":536,"4394":537,"4395":541,"4396":528,"4397":572,"4398":582,"4399":513,"4400":579,"4401":565,"4402":581,"4403":545,"4404":582,"4405":552,"4406":565,"4407":514,"4408":549,"4409":520,"4410":580,"4411":532,"4412":575,"4413":518,"4414":580,"4415":529,"4416":558,"4417":525,"4418":581,"4419":567,"4420":581,"4421":522,"4422":567,"4423":557,"4424":515,"4425":584,"4426":574,"4427":525,"4428":565,"4429":544,"4430":581,"4431":552,"4432":541,"4433":561,"4434":522,"4435":524,"4436":571,"4437":548,"4438":538,"4439":545,"4440":549,"4441":571,"4442":542,"4443":552,"4444":541,"4445":552,"4446":545,"4447":559,"4448":549,"4449":519,"4450":556,"4451":528,"4452":577,"4453":528,"4454":548,"4455":581,"4456":571,"4457":583,"4458":563,"4459":520,"4460":575,"4461":543,"4462":524,"4463":541,"4464":578,"4465":526,"4466":551,"4467":541,"4468":536,"4469":559,"4470":549,"4471":552,"4472":561,"4473":545,"4474":515,"4475":552,"4476":519,"4477":581,"4478":532,"4479":563,"4480":541,"4481":513,"4482":575,"4483":545,"4484":539,"4485":532,"4486":545,"4487":532,"4488":516,"4489":537,"4490":525,"4491":558,"4492":528,"4493":520,"4494":528,"4495":513,"4496":574,"4497":558,"4498":552,"4499":556,"4500":517,"4501":545,"4502":531,"4503":536,"4504":527,"4505":559,"4506":555,"4507":552,"4508":528,"4509":561,"4510":567,"4511":565,"4512":555,"4513":527,"4514":536,"4515":548,"4516":580,"4517":512,"4518":552,"4519":542,"4520":547,"4521":581,"4522":522,"4523":542,"4524":578,"4525":555,"4526":559,"4527":528,"4528":531,"4529":578,"4530":581,"4531":513,"4532":528,"4533":512,"4534":578,"4535":576,"4536":532,"4537":556,"4538":552,"4539":552,"4540":553,"4541":563,"4542":565,"4543":559,"4544":528,"4545":581,"4546":554,"4547":549,"4548":542,"4549":555,"4550":529,"4551":544,"4552":549,"4553":543,"4554":578,"4555":531,"4556":584,"4557":532,"4558":546,"4559":569,"4560":584,"4561":542,"4562":548,"4563":574,"4564":576,"4565":583,"4566":531,"4567":523,"4568":526,"4569":528,"4570":542,"4571":583,"4572":556,"4573":512,"4574":569,"4575":576,"4576":515,"4577":552,"4578":528,"4579":584,"4580":535,"4581":567,"4582":583,"4583":561,"4584":559,"4585":565,"4586":552,"4587":572,"4588":569,"4589":522,"4590":521,"4591":537,"4592":531,"4593":578,"4594":544,"4595":532,"4596":573,"4597":552,"4598":563,"4599":520,"4600":583,"4601":569,"4602":528,"4603":576,"4604":576,"4605":542,"4606":528,"4607":578,"4608":555,"4609":556,"4610":547,"4611":556,"4612":541,"4613":537,"4614":572,"4615":547,"4616":513,"4617":516,"4618":543,"4619":555,"4620":516,"4621":584,"4622":525,"4623":563,"4624":529,"4625":537,"4626":518,"4627":526,"4628":528,"4629":559,"4630":552,"4631":531,"4632":528,"4633":570,"4634":528,"4635":523,"4636":550,"4637":528,"4638":529,"4639":552,"4640":514,"4641":583,"4642":514,"4643":542,"4644":582,"4645":580,"4646":583,"4647":525,"4648":535,"4649":554,"4650":584,"4651":546,"4652":576,"4653":583,"4654":565,"4655":528,"4656":541,"4657":533,"4658":525,"4659":531,"4660":512,"4661":547,"4662":540,"4663":563,"4664":541,"4665":521,"4666":569,"4667":568,"4668":526,"4669":522,"4670":522,"4671":531,"4672":580,"4673":565,"4674":551,"4675":546,"4676":531,"4677":533,"4678":576,"4679":531,"4680":566,"4681":563,"4682":552,"4683":581,"4684":548,"4685":571,"4686":551,"4687":572,"4688":522,"4689":570,"4690":513,"4691":558,"4692":556,"4693":554,"4694":581,"4695":582,"4696":533,"4697":567,"4698":576,"4699":515,"4700":523,"4701":581,"4702":529,"4703":536,"4704":549,"4705":523,"4706":516,"4707":543,"4708":541,"4709":521,"4710":541,"4711":559,"4712":515,"4713":522,"4714":543,"4715":524,"4716":525,"4717":575,"4718":563,"4719":582,"4720":531,"4721":525,"4722":537,"4723":541,"4724":541,"4725":564,"4726":520,"4727":561,"4728":552,"4729":524,"4730":563,"4731":563,"4732":552,"4733":527,"4734":561,"4735":570,"4736":561,"4737":563,"4738":531,"4739":565,"4740":576,"4741":563,"4742":515,"4743":549,"4744":513,"4745":576,"4746":569,"4747":549,"4748":512,"4749":514,"4750":563,"4751":541,"4752":567,"4753":576,"4754":524,"4755":522,"4756":546,"4757":516,"4758":520,"4759":567,"4760":531,"4761":572,"4762":543,"4763":580,"4764":531,"4765":569,"4766":556,"4767":552,"4768":522,"4769":578,"4770":563,"4771":527,"4772":564,"4773":565,"4774":548,"4775":528,"4776":516,"4777":512,"4778":531,"4779":556,"4780":513,"4781":552,"4782":532,"4783":522,"4784":516,"4785":581,"4786":538,"4787":552,"4788":541,"4789":563,"4790":513,"4791":567,"4792":516,"4793":513,"4794":578,"4795":554,"4796":565,"4797":547,"4798":531,"4799":532,"4800":535,"4801":531,"4802":524,"4803":564,"4804":575,"4805":520,"4806":524,"4807":531,"4808":570,"4809":572,"4810":573,"4811":582,"4812":556,"4813":548,"4814":546,"4815":581,"4816":581,"4817":531,"4818":567,"4819":569,"4820":541,"4821":565,"4822":524,"4823":514,"4824":528,"4825":584,"4826":533,"4827":541,"4828":548,"4829":531,"4830":522,"4831":562,"4832":536,"4833":539,"4834":547,"4835":549,"4836":549,"4837":541,"4838":576,"4839":582,"4840":571,"4841":514,"4842":526,"4843":552,"4844":534,"4845":513,"4846":558,"4847":531,"4848":576,"4849":528,"4850":535,"4851":563,"4852":573,"4853":567,"4854":578,"4855":524,"4856":529,"4857":515,"4858":531,"4859":577,"4860":582,"4861":563,"4862":580,"4863":526,"4864":581,"4865":541,"4866":551,"4867":531,"4868":581,"4869":556,"4870":577,"4871":572,"4872":549,"4873":527,"4874":576,"4875":554,"4876":529,"4877":556,"4878":515,"4879":558,"4880":558,"4881":522,"4882":513,"4883":582,"4884":578,"4885":518,"4886":541,"4887":555,"4888":522,"4889":543,"4890":583,"4891":522,"4892":545,"4893":579,"4894":548,"4895":525,"4896":531,"4897":581,"4898":576,"4899":580,"4900":582,"4901":563,"4902":535,"4903":549,"4904":531,"4905":522,"4906":541,"4907":583,"4908":580,"4909":512,"4910":525,"4911":522,"4912":562,"4913":582,"4914":533,"4915":569,"4916":528,"4917":581,"4918":526,"4919":566,"4920":535,"4921":537,"4922":581,"4923":575,"4924":573,"4925":543,"4926":530,"4927":554,"4928":531,"4929":581,"4930":544,"4931":513,"4932":513,"4933":549,"4934":548,"4935":548,"4936":565,"4937":578,"4938":531,"4939":531,"4940":528,"4941":571,"4942":543,"4943":565,"4944":569,"4945":581,"4946":547,"4947":549,"4948":531,"4949":548,"4950":552,"4951":576,"4952":526,"4953":581,"4954":560,"4955":569,"4956":546,"4957":516,"4958":512,"4959":512,"4960":578,"4961":563,"4962":514,"4963":546,"4964":583,"4965":576,"4966":537,"4967":520,"4968":580,"4969":541,"4970":512,"4971":573,"4972":541,"4973":574,"4974":581,"4975":522,"4976":552,"4977":538,"4978":563,"4979":531,"4980":518,"4981":565,"4982":525,"4983":582,"4984":583,"4985":561,"4986":544,"4987":587,"4988":594,"4989":590,"4990":587,"4991":588,"4992":591,"4993":591,"4994":587,"4995":588,"4996":591,"4997":589,"4998":585,"4999":592,"5000":587,"5001":590,"5002":594,"5003":592,"5004":592,"5005":589,"5006":592,"5007":589,"5008":587,"5009":592,"5010":591,"5011":592,"5012":585,"5013":594,"5014":586,"5015":593,"5016":594,"5017":587,"5018":591,"5019":594,"5020":590,"5021":587,"5022":589,"5023":585,"5024":587,"5025":585,"5026":587,"5027":601,"5028":602,"5029":596,"5030":596,"5031":598,"5032":598,"5033":597,"5034":597,"5035":601,"5036":595,"5037":599,"5038":600,"5039":600,"5040":602,"5041":598,"5042":595,"5043":598,"5044":600,"5045":595,"5046":601,"5047":595,"5048":595,"5049":598,"5050":602,"5051":595,"5052":597,"5053":595,"5054":598,"5055":601,"5056":601,"5057":602,"5058":598,"5059":600,"5060":600,"5061":598,"5062":596,"5063":598,"5064":596,"5065":598,"5066":595,"5067":602,"5068":602,"5069":597,"5070":602,"5071":601,"5072":600,"5073":598,"5074":601,"5075":596,"5076":595,"5077":598,"5078":600,"5079":598,"5080":601,"5081":602,"5082":600,"5083":600,"5084":606,"5085":607,"5086":608,"5087":605,"5088":606,"5089":606,"5090":606,"5091":608,"5092":605,"5093":606,"5094":608,"5095":607,"5096":606,"5097":608,"5098":604,"5099":608,"5100":605,"5101":607,"5102":606,"5103":607,"5104":603,"5105":607,"5106":606,"5107":607,"5108":605,"5109":608,"5110":608,"5111":604,"5112":605,"5113":606,"5114":608,"5115":609,"5116":606,"5117":609,"5118":605,"5119":604,"5120":605,"5121":608,"5122":606,"5123":607,"5124":603,"5125":606,"5126":607,"5127":607,"5128":609,"5129":603,"5130":607,"5131":603,"5132":609,"5133":607,"5134":605,"5135":607,"5136":607,"5137":605,"5138":604,"5139":617,"5140":619,"5141":621,"5142":614,"5143":612,"5144":621,"5145":611,"5146":622,"5147":611,"5148":610,"5149":615,"5150":615,"5151":615,"5152":619,"5153":619,"5154":618,"5155":610,"5156":611,"5157":614,"5158":616,"5159":622,"5160":620,"5161":618,"5162":618,"5163":610,"5164":621,"5165":611,"5166":610,"5167":619,"5168":611,"5169":620,"5170":621,"5171":618,"5172":616,"5173":616,"5174":618,"5175":621,"5176":610,"5177":621,"5178":621,"5179":614,"5180":613,"5181":620,"5182":618,"5183":621,"5184":612,"5185":619,"5186":618,"5187":619,"5188":618,"5189":614,"5190":619,"5191":619,"5192":617,"5193":611,"5194":610,"5195":610,"5196":618,"5197":616,"5198":622,"5199":618,"5200":612,"5201":611,"5202":618,"5203":610,"5204":621,"5205":613,"5206":613,"5207":612,"5208":640,"5209":624,"5210":683,"5211":627,"5212":717,"5213":668,"5214":629,"5215":629,"5216":663,"5217":630,"5218":632,"5219":676,"5220":685,"5221":717,"5222":692,"5223":645,"5224":672,"5225":680,"5226":665,"5227":655,"5228":667,"5229":688,"5230":705,"5231":680,"5232":632,"5233":624,"5234":716,"5235":708,"5236":639,"5237":683,"5238":674,"5239":675,"5240":689,"5241":684,"5242":651,"5243":663,"5244":705,"5245":664,"5246":637,"5247":680,"5248":659,"5249":669,"5250":679,"5251":698,"5252":714,"5253":650,"5254":706,"5255":647,"5256":709,"5257":650,"5258":713,"5259":714,"5260":667,"5261":624,"5262":629,"5263":628,"5264":629,"5265":705,"5266":626,"5267":665,"5268":717,"5269":709,"5270":666,"5271":680,"5272":648,"5273":678,"5274":632,"5275":660,"5276":692,"5277":643,"5278":658,"5279":632,"5280":698,"5281":668,"5282":717,"5283":636,"5284":695,"5285":679,"5286":688,"5287":689,"5288":625,"5289":716,"5290":659,"5291":705,"5292":660,"5293":688,"5294":623,"5295":637,"5296":631,"5297":659,"5298":677,"5299":680,"5300":658,"5301":686,"5302":692,"5303":697,"5304":678,"5305":681,"5306":640,"5307":667,"5308":642,"5309":661,"5310":692,"5311":654,"5312":650,"5313":685,"5314":660,"5315":692,"5316":632,"5317":680,"5318":711,"5319":658,"5320":692,"5321":685,"5322":659,"5323":679,"5324":666,"5325":655,"5326":681,"5327":658,"5328":665,"5329":628,"5330":644,"5331":658,"5332":678,"5333":679,"5334":630,"5335":717,"5336":664,"5337":650,"5338":717,"5339":692,"5340":667,"5341":701,"5342":628,"5343":712,"5344":640,"5345":659,"5346":663,"5347":680,"5348":658,"5349":654,"5350":669,"5351":701,"5352":630,"5353":636,"5354":702,"5355":717,"5356":629,"5357":629,"5358":691,"5359":675,"5360":623,"5361":665,"5362":699,"5363":667,"5364":651,"5365":658,"5366":672,"5367":665,"5368":689,"5369":686,"5370":631,"5371":660,"5372":660,"5373":717,"5374":631,"5375":667,"5376":642,"5377":629,"5378":677,"5379":706,"5380":647,"5381":632,"5382":632,"5383":648,"5384":672,"5385":696,"5386":632,"5387":629,"5388":685,"5389":662,"5390":696,"5391":628,"5392":689,"5393":640,"5394":681,"5395":677,"5396":715,"5397":655,"5398":637,"5399":628,"5400":654,"5401":655,"5402":706,"5403":650,"5404":669,"5405":630,"5406":664,"5407":689,"5408":637,"5409":673,"5410":695,"5411":704,"5412":689,"5413":629,"5414":682,"5415":678,"5416":635,"5417":648,"5418":683,"5419":667,"5420":677,"5421":629,"5422":662,"5423":634,"5424":698,"5425":708,"5426":623,"5427":714,"5428":714,"5429":675,"5430":680,"5431":632,"5432":692,"5433":626,"5434":658,"5435":677,"5436":666,"5437":637,"5438":697,"5439":708,"5440":656,"5441":667,"5442":637,"5443":632,"5444":646,"5445":714,"5446":714,"5447":687,"5448":712,"5449":678,"5450":681,"5451":689,"5452":642,"5453":667,"5454":629,"5455":677,"5456":684,"5457":656,"5458":646,"5459":716,"5460":632,"5461":709,"5462":711,"5463":665,"5464":631,"5465":690,"5466":637,"5467":661,"5468":685,"5469":636,"5470":640,"5471":684,"5472":660,"5473":706,"5474":654,"5475":639,"5476":692,"5477":705,"5478":658,"5479":651,"5480":629,"5481":710,"5482":648,"5483":666,"5484":653,"5485":625,"5486":637,"5487":629,"5488":697,"5489":699,"5490":666,"5491":716,"5492":673,"5493":683,"5494":714,"5495":635,"5496":699,"5497":655,"5498":642,"5499":705,"5500":655,"5501":680,"5502":700,"5503":703,"5504":675,"5505":681,"5506":665,"5507":688,"5508":680,"5509":714,"5510":677,"5511":655,"5512":647,"5513":717,"5514":645,"5515":636,"5516":668,"5517":717,"5518":637,"5519":638,"5520":683,"5521":684,"5522":632,"5523":665,"5524":635,"5525":672,"5526":637,"5527":669,"5528":669,"5529":649,"5530":631,"5531":705,"5532":675,"5533":717,"5534":699,"5535":716,"5536":645,"5537":623,"5538":698,"5539":696,"5540":645,"5541":629,"5542":672,"5543":655,"5544":628,"5545":680,"5546":623,"5547":645,"5548":644,"5549":655,"5550":663,"5551":717,"5552":654,"5553":668,"5554":681,"5555":705,"5556":627,"5557":643,"5558":658,"5559":654,"5560":699,"5561":628,"5562":648,"5563":685,"5564":679,"5565":704,"5566":624,"5567":695,"5568":701,"5569":665,"5570":678,"5571":624,"5572":703,"5573":689,"5574":683,"5575":636,"5576":640,"5577":709,"5578":687,"5579":655,"5580":643,"5581":631,"5582":671,"5583":667,"5584":701,"5585":684,"5586":631,"5587":682,"5588":706,"5589":632,"5590":642,"5591":633,"5592":644,"5593":713,"5594":667,"5595":708,"5596":685,"5597":714,"5598":628,"5599":665,"5600":670,"5601":711,"5602":714,"5603":672,"5604":673,"5605":627,"5606":629,"5607":672,"5608":625,"5609":677,"5610":667,"5611":633,"5612":683,"5613":684,"5614":636,"5615":628,"5616":628,"5617":652,"5618":694,"5619":689,"5620":689,"5621":705,"5622":655,"5623":668,"5624":625,"5625":716,"5626":641,"5627":673,"5628":668,"5629":659,"5630":709,"5631":637,"5632":632,"5633":662,"5634":647,"5635":693,"5636":632,"5637":636,"5638":658,"5639":665,"5640":669,"5641":675,"5642":716,"5643":711,"5644":640,"5645":641,"5646":692,"5647":640,"5648":639,"5649":674,"5650":676,"5651":712,"5652":635,"5653":650,"5654":665,"5655":667,"5656":681,"5657":643,"5658":677,"5659":636,"5660":655,"5661":632,"5662":669,"5663":637,"5664":684,"5665":634,"5666":701,"5667":629,"5668":650,"5669":668,"5670":669,"5671":630,"5672":629,"5673":699,"5674":714,"5675":655,"5676":647,"5677":653,"5678":642,"5679":703,"5680":691,"5681":689,"5682":638,"5683":681,"5684":669,"5685":692,"5686":714,"5687":692,"5688":692,"5689":665,"5690":640,"5691":628,"5692":659,"5693":667,"5694":658,"5695":665,"5696":637,"5697":650,"5698":713,"5699":637,"5700":681,"5701":691,"5702":714,"5703":685,"5704":689,"5705":628,"5706":658,"5707":707,"5708":692,"5709":664,"5710":655,"5711":639,"5712":674,"5713":655,"5714":624,"5715":651,"5716":683,"5717":664,"5718":655,"5719":639,"5720":709,"5721":648,"5722":716,"5723":665,"5724":646,"5725":709,"5726":689,"5727":678,"5728":665,"5729":650,"5730":637,"5731":658,"5732":650,"5733":704,"5734":706,"5735":635,"5736":675,"5737":716,"5738":696,"5739":672,"5740":686,"5741":696,"5742":625,"5743":630,"5744":645,"5745":689,"5746":692,"5747":680,"5748":662,"5749":671,"5750":639,"5751":643,"5752":708,"5753":636,"5754":665,"5755":661,"5756":680,"5757":658,"5758":662,"5759":629,"5760":681,"5761":705,"5762":716,"5763":666,"5764":639,"5765":642,"5766":636,"5767":705,"5768":642,"5769":691,"5770":684,"5771":699,"5772":703,"5773":699,"5774":673,"5775":639,"5776":694,"5777":632,"5778":648,"5779":658,"5780":675,"5781":633,"5782":637,"5783":699,"5784":716,"5785":645,"5786":636,"5787":629,"5788":651,"5789":655,"5790":692,"5791":677,"5792":692,"5793":629,"5794":695,"5795":643,"5796":697,"5797":657,"5798":629,"5799":692,"5800":630,"5801":689,"5802":667,"5803":665,"5804":628,"5805":680,"5806":711,"5807":667,"5808":636,"5809":647,"5810":666,"5811":697,"5812":717,"5813":624,"5814":671,"5815":623,"5816":680,"5817":697,"5818":717,"5819":653,"5820":706,"5821":645,"5822":679,"5823":668,"5824":670,"5825":683,"5826":703,"5827":633,"5828":710,"5829":631,"5830":631,"5831":706,"5832":704,"5833":692,"5834":713,"5835":695,"5836":675,"5837":713,"5838":630,"5839":636,"5840":716,"5841":707,"5842":637,"5843":624,"5844":641,"5845":717,"5846":641,"5847":716,"5848":683,"5849":662,"5850":648,"5851":655,"5852":665,"5853":652,"5854":692,"5855":662,"5856":667,"5857":651,"5858":706,"5859":684,"5860":650,"5861":696,"5862":667,"5863":698,"5864":638,"5865":706,"5866":688,"5867":624,"5868":706,"5869":716,"5870":651,"5871":714,"5872":717,"5873":664,"5874":711,"5875":625,"5876":639,"5877":695,"5878":632,"5879":656,"5880":651,"5881":676,"5882":681,"5883":639,"5884":709,"5885":641,"5886":685,"5887":677,"5888":629,"5889":692,"5890":703,"5891":708,"5892":664,"5893":667,"5894":651,"5895":641,"5896":640,"5897":708,"5898":679,"5899":717,"5900":697,"5901":624,"5902":711,"5903":662,"5904":707,"5905":684,"5906":628,"5907":692,"5908":651,"5909":650,"5910":637,"5911":663,"5912":672,"5913":629,"5914":711,"5915":708,"5916":692,"5917":669,"5918":672,"5919":694,"5920":694,"5921":651,"5922":709,"5923":692,"5924":679,"5925":674,"5926":706,"5927":666,"5928":628,"5929":714,"5930":706,"5931":632,"5932":637,"5933":688,"5934":669,"5935":717,"5936":689,"5937":681,"5938":683,"5939":659,"5940":697,"5941":650,"5942":655,"5943":685,"5944":691,"5945":632,"5946":694,"5947":668,"5948":628,"5949":713,"5950":712,"5951":654,"5952":654,"5953":645,"5954":664,"5955":703,"5956":632,"5957":714,"5958":665,"5959":665,"5960":663,"5961":716,"5962":632,"5963":714,"5964":659,"5965":696,"5966":685,"5967":655,"5968":650,"5969":658,"5970":635,"5971":672,"5972":664,"5973":637,"5974":710,"5975":679,"5976":662,"5977":681,"5978":708,"5979":645,"5980":683,"5981":717,"5982":667,"5983":669,"5984":628,"5985":651,"5986":678,"5987":684,"5988":627,"5989":713,"5990":624,"5991":629,"5992":654,"5993":717,"5994":697,"5995":649,"5996":681,"5997":689,"5998":637,"5999":652,"6000":698,"6001":655,"6002":689,"6003":696,"6004":639,"6005":649,"6006":658,"6007":639,"6008":635,"6009":636,"6010":692,"6011":672,"6012":667,"6013":689,"6014":694,"6015":632,"6016":636,"6017":636,"6018":682,"6019":647,"6020":708,"6021":637,"6022":658,"6023":716,"6024":656,"6025":698,"6026":632,"6027":714,"6028":630,"6029":627,"6030":632,"6031":694,"6032":681,"6033":697,"6034":677,"6035":662,"6036":705,"6037":632,"6038":641,"6039":683,"6040":633,"6041":691,"6042":710,"6043":636,"6044":623,"6045":629,"6046":697,"6047":683,"6048":716,"6049":629,"6050":701,"6051":676,"6052":694,"6053":689,"6054":671,"6055":717,"6056":647,"6057":684,"6058":629,"6059":629,"6060":668,"6061":706,"6062":694,"6063":692,"6064":724,"6065":724,"6066":724,"6067":720,"6068":724,"6069":724,"6070":719,"6071":718,"6072":724,"6073":724,"6074":722,"6075":722,"6076":724,"6077":719,"6078":720,"6079":719,"6080":720,"6081":724,"6082":722,"6083":722,"6084":719,"6085":718,"6086":720,"6087":719,"6088":719,"6089":724,"6090":724,"6091":724,"6092":719,"6093":722,"6094":722,"6095":720,"6096":724,"6097":722,"6098":720,"6099":722,"6100":725,"6101":720,"6102":721,"6103":723,"6104":720,"6105":725,"6106":725,"6107":721,"6108":721,"6109":725,"6110":724,"6111":722,"6112":724,"6113":723,"6114":721,"6115":722,"6116":721,"6117":721,"6118":722,"6119":720,"6120":720,"6121":722,"6122":723,"6123":724,"6124":725,"6125":723,"6126":724,"6127":724,"6128":725,"6129":721,"6130":724,"6131":724,"6132":724,"6133":753,"6134":776,"6135":727,"6136":727,"6137":812,"6138":800,"6139":787,"6140":788,"6141":812,"6142":750,"6143":772,"6144":811,"6145":796,"6146":763,"6147":765,"6148":807,"6149":809,"6150":758,"6151":787,"6152":806,"6153":803,"6154":795,"6155":746,"6156":811,"6157":800,"6158":748,"6159":748,"6160":757,"6161":753,"6162":746,"6163":727,"6164":811,"6165":737,"6166":814,"6167":730,"6168":808,"6169":730,"6170":759,"6171":759,"6172":809,"6173":733,"6174":748,"6175":729,"6176":774,"6177":821,"6178":819,"6179":777,"6180":738,"6181":741,"6182":785,"6183":777,"6184":743,"6185":789,"6186":795,"6187":759,"6188":737,"6189":761,"6190":759,"6191":816,"6192":788,"6193":788,"6194":766,"6195":746,"6196":729,"6197":770,"6198":738,"6199":755,"6200":746,"6201":729,"6202":816,"6203":816,"6204":771,"6205":760,"6206":807,"6207":748,"6208":746,"6209":762,"6210":731,"6211":774,"6212":754,"6213":779,"6214":808,"6215":750,"6216":730,"6217":798,"6218":734,"6219":790,"6220":818,"6221":761,"6222":782,"6223":816,"6224":752,"6225":752,"6226":758,"6227":744,"6228":759,"6229":737,"6230":785,"6231":729,"6232":788,"6233":756,"6234":759,"6235":758,"6236":783,"6237":796,"6238":816,"6239":737,"6240":809,"6241":779,"6242":729,"6243":772,"6244":799,"6245":729,"6246":791,"6247":796,"6248":785,"6249":734,"6250":795,"6251":750,"6252":763,"6253":735,"6254":799,"6255":796,"6256":790,"6257":729,"6258":741,"6259":754,"6260":807,"6261":784,"6262":812,"6263":756,"6264":815,"6265":797,"6266":727,"6267":796,"6268":750,"6269":790,"6270":729,"6271":802,"6272":767,"6273":809,"6274":816,"6275":782,"6276":773,"6277":747,"6278":809,"6279":796,"6280":797,"6281":792,"6282":793,"6283":740,"6284":768,"6285":755,"6286":789,"6287":745,"6288":729,"6289":768,"6290":814,"6291":780,"6292":807,"6293":745,"6294":727,"6295":759,"6296":729,"6297":763,"6298":819,"6299":740,"6300":758,"6301":782,"6302":793,"6303":788,"6304":803,"6305":816,"6306":761,"6307":811,"6308":808,"6309":750,"6310":756,"6311":796,"6312":817,"6313":793,"6314":794,"6315":732,"6316":748,"6317":787,"6318":795,"6319":759,"6320":816,"6321":731,"6322":748,"6323":802,"6324":765,"6325":808,"6326":819,"6327":748,"6328":796,"6329":731,"6330":791,"6331":807,"6332":758,"6333":748,"6334":759,"6335":810,"6336":729,"6337":787,"6338":818,"6339":802,"6340":731,"6341":758,"6342":755,"6343":759,"6344":762,"6345":727,"6346":821,"6347":739,"6348":785,"6349":788,"6350":766,"6351":814,"6352":811,"6353":747,"6354":744,"6355":763,"6356":786,"6357":819,"6358":772,"6359":735,"6360":792,"6361":761,"6362":752,"6363":752,"6364":809,"6365":819,"6366":780,"6367":819,"6368":746,"6369":790,"6370":809,"6371":821,"6372":820,"6373":739,"6374":777,"6375":795,"6376":795,"6377":808,"6378":816,"6379":805,"6380":750,"6381":744,"6382":802,"6383":746,"6384":740,"6385":819,"6386":796,"6387":789,"6388":752,"6389":768,"6390":821,"6391":808,"6392":727,"6393":821,"6394":818,"6395":741,"6396":737,"6397":818,"6398":792,"6399":788,"6400":787,"6401":758,"6402":749,"6403":815,"6404":762,"6405":758,"6406":805,"6407":748,"6408":759,"6409":761,"6410":753,"6411":786,"6412":819,"6413":741,"6414":802,"6415":735,"6416":729,"6417":804,"6418":781,"6419":727,"6420":764,"6421":814,"6422":772,"6423":813,"6424":746,"6425":820,"6426":728,"6427":789,"6428":784,"6429":746,"6430":814,"6431":800,"6432":795,"6433":808,"6434":776,"6435":748,"6436":756,"6437":820,"6438":809,"6439":766,"6440":805,"6441":755,"6442":770,"6443":799,"6444":761,"6445":737,"6446":775,"6447":745,"6448":816,"6449":762,"6450":750,"6451":790,"6452":796,"6453":776,"6454":727,"6455":762,"6456":782,"6457":795,"6458":734,"6459":816,"6460":786,"6461":802,"6462":821,"6463":732,"6464":819,"6465":818,"6466":759,"6467":796,"6468":763,"6469":754,"6470":758,"6471":767,"6472":748,"6473":818,"6474":798,"6475":740,"6476":748,"6477":802,"6478":746,"6479":809,"6480":819,"6481":744,"6482":740,"6483":787,"6484":748,"6485":740,"6486":780,"6487":795,"6488":737,"6489":773,"6490":740,"6491":737,"6492":740,"6493":741,"6494":811,"6495":752,"6496":726,"6497":795,"6498":811,"6499":761,"6500":816,"6501":795,"6502":746,"6503":767,"6504":789,"6505":814,"6506":753,"6507":775,"6508":781,"6509":759,"6510":816,"6511":771,"6512":759,"6513":775,"6514":761,"6515":790,"6516":795,"6517":816,"6518":810,"6519":818,"6520":758,"6521":803,"6522":792,"6523":765,"6524":753,"6525":800,"6526":748,"6527":782,"6528":753,"6529":746,"6530":742,"6531":784,"6532":820,"6533":744,"6534":809,"6535":791,"6536":729,"6537":729,"6538":761,"6539":748,"6540":803,"6541":748,"6542":745,"6543":746,"6544":786,"6545":811,"6546":742,"6547":796,"6548":797,"6549":737,"6550":754,"6551":757,"6552":746,"6553":746,"6554":759,"6555":821,"6556":750,"6557":785,"6558":754,"6559":753,"6560":814,"6561":788,"6562":811,"6563":746,"6564":729,"6565":790,"6566":795,"6567":802,"6568":737,"6569":759,"6570":800,"6571":740,"6572":809,"6573":769,"6574":748,"6575":746,"6576":729,"6577":772,"6578":788,"6579":804,"6580":775,"6581":807,"6582":746,"6583":762,"6584":783,"6585":772,"6586":727,"6587":755,"6588":780,"6589":813,"6590":773,"6591":737,"6592":772,"6593":741,"6594":805,"6595":759,"6596":821,"6597":789,"6598":811,"6599":740,"6600":791,"6601":811,"6602":759,"6603":792,"6604":737,"6605":739,"6606":743,"6607":746,"6608":809,"6609":738,"6610":787,"6611":750,"6612":785,"6613":746,"6614":766,"6615":795,"6616":758,"6617":737,"6618":763,"6619":795,"6620":796,"6621":809,"6622":808,"6623":777,"6624":731,"6625":789,"6626":773,"6627":808,"6628":812,"6629":759,"6630":729,"6631":731,"6632":795,"6633":772,"6634":759,"6635":795,"6636":741,"6637":746,"6638":778,"6639":780,"6640":790,"6641":748,"6642":727,"6643":812,"6644":774,"6645":820,"6646":800,"6647":755,"6648":744,"6649":759,"6650":743,"6651":746,"6652":808,"6653":790,"6654":748,"6655":740,"6656":808,"6657":746,"6658":816,"6659":758,"6660":753,"6661":775,"6662":734,"6663":738,"6664":762,"6665":819,"6666":775,"6667":788,"6668":735,"6669":753,"6670":761,"6671":777,"6672":738,"6673":819,"6674":748,"6675":816,"6676":800,"6677":811,"6678":765,"6679":805,"6680":740,"6681":770,"6682":745,"6683":785,"6684":796,"6685":779,"6686":802,"6687":816,"6688":751,"6689":802,"6690":782,"6691":795,"6692":741,"6693":787,"6694":754,"6695":819,"6696":762,"6697":748,"6698":741,"6699":816,"6700":788,"6701":748,"6702":746,"6703":762,"6704":729,"6705":818,"6706":811,"6707":811,"6708":753,"6709":745,"6710":790,"6711":729,"6712":726,"6713":808,"6714":806,"6715":746,"6716":737,"6717":819,"6718":771,"6719":735,"6720":746,"6721":809,"6722":734,"6723":819,"6724":726,"6725":791,"6726":759,"6727":795,"6728":741,"6729":761,"6730":737,"6731":802,"6732":808,"6733":758,"6734":736,"6735":796,"6736":741,"6737":729,"6738":818,"6739":741,"6740":751,"6741":739,"6742":745,"6743":759,"6744":796,"6745":729,"6746":822,"6747":727,"6748":809,"6749":796,"6750":748,"6751":789,"6752":808,"6753":785,"6754":727,"6755":740,"6756":817,"6757":811,"6758":809,"6759":806,"6760":818,"6761":744,"6762":799,"6763":796,"6764":765,"6765":811,"6766":787,"6767":746,"6768":802,"6769":774,"6770":819,"6771":802,"6772":818,"6773":763,"6774":793,"6775":794,"6776":809,"6777":750,"6778":766,"6779":795,"6780":768,"6781":746,"6782":803,"6783":811,"6784":729,"6785":774,"6786":730,"6787":782,"6788":750,"6789":791,"6790":761,"6791":762,"6792":795,"6793":782,"6794":774,"6795":741,"6796":774,"6797":760,"6798":753,"6799":804,"6800":788,"6801":758,"6802":807,"6803":741,"6804":746,"6805":753,"6806":770,"6807":756,"6808":745,"6809":777,"6810":729,"6811":776,"6812":758,"6813":743,"6814":774,"6815":798,"6816":812,"6817":802,"6818":740,"6819":745,"6820":807,"6821":750,"6822":740,"6823":727,"6824":778,"6825":812,"6826":740,"6827":802,"6828":741,"6829":732,"6830":811,"6831":731,"6832":788,"6833":800,"6834":794,"6835":759,"6836":809,"6837":807,"6838":762,"6839":744,"6840":795,"6841":732,"6842":787,"6843":795,"6844":746,"6845":747,"6846":752,"6847":761,"6848":727,"6849":748,"6850":767,"6851":762,"6852":774,"6853":761,"6854":754,"6855":814,"6856":787,"6857":759,"6858":812,"6859":754,"6860":814,"6861":761,"6862":791,"6863":772,"6864":781,"6865":759,"6866":777,"6867":746,"6868":804,"6869":737,"6870":743,"6871":821,"6872":763,"6873":731,"6874":815,"6875":802,"6876":788,"6877":802,"6878":795,"6879":759,"6880":802,"6881":795,"6882":741,"6883":797,"6884":816,"6885":822,"6886":753,"6887":797,"6888":819,"6889":772,"6890":786,"6891":732,"6892":748,"6893":729,"6894":748,"6895":790,"6896":753,"6897":746,"6898":795,"6899":744,"6900":737,"6901":789,"6902":776,"6903":772,"6904":727,"6905":817,"6906":740,"6907":772,"6908":760,"6909":737,"6910":789,"6911":795,"6912":804,"6913":760,"6914":796,"6915":801,"6916":785,"6917":830,"6918":823,"6919":827,"6920":828,"6921":833,"6922":825,"6923":832,"6924":835,"6925":834,"6926":826,"6927":828,"6928":835,"6929":823,"6930":836,"6931":830,"6932":827,"6933":834,"6934":828,"6935":829,"6936":829,"6937":830,"6938":824,"6939":834,"6940":825,"6941":835,"6942":836,"6943":825,"6944":834,"6945":829,"6946":836,"6947":823,"6948":831,"6949":832,"6950":824,"6951":825,"6952":832,"6953":829,"6954":836,"6955":830,"6956":828,"6957":829,"6958":835,"6959":831,"6960":832,"6961":835,"6962":827,"6963":833,"6964":831,"6965":836,"6966":834,"6967":836,"6968":836,"6969":834,"6970":832,"6971":828,"6972":829,"6973":827,"6974":826,"6975":828,"6976":829,"6977":830,"6978":824,"6979":834,"6980":829,"6981":825,"6982":825,"6983":830,"6984":827,"6985":830,"6986":837,"6987":837,"6988":825,"6989":831,"6990":826,"6991":829,"6992":833,"6993":825,"6994":827,"6995":824,"6996":829,"6997":838,"6998":832,"6999":830,"7000":825,"7001":828,"7002":826,"7003":833,"7004":823,"7005":832,"7006":827,"7007":834,"7008":831,"7009":829,"7010":837,"7011":826,"7012":829,"7013":827,"7014":825,"7015":825,"7016":827,"7017":835,"7018":835,"7019":832,"7020":833,"7021":834,"7022":827,"7023":832,"7024":829,"7025":827,"7026":827,"7027":827,"7028":838,"7029":828,"7030":832,"7031":825,"7032":829,"7033":838,"7034":835,"7035":832,"7036":829,"7037":827,"7038":831,"7039":827,"7040":828,"7041":827,"7042":838,"7043":828,"7044":833,"7045":827,"7046":833,"7047":825,"7048":823,"7049":828,"7050":835,"7051":838,"7052":831,"7053":827,"7054":830,"7055":827,"7056":824,"7057":830,"7058":835,"7059":885,"7060":937,"7061":975,"7062":959,"7063":979,"7064":966,"7065":899,"7066":904,"7067":977,"7068":940,"7069":903,"7070":974,"7071":859,"7072":870,"7073":972,"7074":859,"7075":858,"7076":943,"7077":961,"7078":946,"7079":968,"7080":963,"7081":980,"7082":847,"7083":921,"7084":887,"7085":860,"7086":962,"7087":906,"7088":905,"7089":923,"7090":888,"7091":981,"7092":859,"7093":986,"7094":969,"7095":975,"7096":893,"7097":955,"7098":918,"7099":843,"7100":856,"7101":974,"7102":920,"7103":888,"7104":867,"7105":969,"7106":952,"7107":915,"7108":981,"7109":925,"7110":985,"7111":947,"7112":863,"7113":888,"7114":958,"7115":982,"7116":903,"7117":900,"7118":966,"7119":887,"7120":892,"7121":869,"7122":930,"7123":946,"7124":986,"7125":899,"7126":971,"7127":940,"7128":933,"7129":982,"7130":918,"7131":882,"7132":868,"7133":893,"7134":872,"7135":885,"7136":884,"7137":903,"7138":985,"7139":974,"7140":931,"7141":968,"7142":955,"7143":941,"7144":984,"7145":877,"7146":951,"7147":966,"7148":896,"7149":985,"7150":870,"7151":968,"7152":925,"7153":855,"7154":888,"7155":959,"7156":957,"7157":865,"7158":860,"7159":897,"7160":870,"7161":944,"7162":961,"7163":931,"7164":860,"7165":981,"7166":916,"7167":985,"7168":948,"7169":883,"7170":961,"7171":865,"7172":898,"7173":870,"7174":975,"7175":907,"7176":933,"7177":949,"7178":901,"7179":926,"7180":930,"7181":981,"7182":968,"7183":859,"7184":972,"7185":916,"7186":876,"7187":937,"7188":860,"7189":900,"7190":981,"7191":900,"7192":885,"7193":931,"7194":853,"7195":848,"7196":914,"7197":987,"7198":885,"7199":940,"7200":865,"7201":859,"7202":891,"7203":843,"7204":905,"7205":975,"7206":870,"7207":917,"7208":848,"7209":948,"7210":881,"7211":843,"7212":870,"7213":852,"7214":984,"7215":931,"7216":981,"7217":961,"7218":846,"7219":961,"7220":865,"7221":963,"7222":940,"7223":929,"7224":888,"7225":940,"7226":934,"7227":966,"7228":940,"7229":899,"7230":920,"7231":844,"7232":880,"7233":943,"7234":958,"7235":952,"7236":865,"7237":961,"7238":865,"7239":961,"7240":877,"7241":869,"7242":969,"7243":896,"7244":901,"7245":920,"7246":961,"7247":907,"7248":958,"7249":931,"7250":880,"7251":885,"7252":975,"7253":888,"7254":941,"7255":911,"7256":926,"7257":963,"7258":870,"7259":857,"7260":955,"7261":972,"7262":964,"7263":931,"7264":982,"7265":965,"7266":857,"7267":885,"7268":938,"7269":931,"7270":968,"7271":936,"7272":984,"7273":954,"7274":946,"7275":850,"7276":900,"7277":852,"7278":888,"7279":934,"7280":980,"7281":962,"7282":899,"7283":931,"7284":906,"7285":913,"7286":925,"7287":938,"7288":879,"7289":964,"7290":851,"7291":948,"7292":958,"7293":912,"7294":968,"7295":905,"7296":840,"7297":923,"7298":911,"7299":912,"7300":890,"7301":880,"7302":912,"7303":958,"7304":923,"7305":971,"7306":966,"7307":972,"7308":930,"7309":913,"7310":843,"7311":847,"7312":979,"7313":856,"7314":959,"7315":904,"7316":981,"7317":846,"7318":844,"7319":936,"7320":962,"7321":986,"7322":974,"7323":924,"7324":921,"7325":899,"7326":871,"7327":938,"7328":856,"7329":888,"7330":916,"7331":859,"7332":984,"7333":958,"7334":884,"7335":908,"7336":974,"7337":901,"7338":974,"7339":945,"7340":900,"7341":865,"7342":843,"7343":940,"7344":933,"7345":981,"7346":891,"7347":840,"7348":905,"7349":971,"7350":933,"7351":894,"7352":932,"7353":854,"7354":918,"7355":942,"7356":936,"7357":871,"7358":859,"7359":985,"7360":862,"7361":972,"7362":964,"7363":931,"7364":850,"7365":940,"7366":942,"7367":901,"7368":954,"7369":840,"7370":968,"7371":854,"7372":870,"7373":965,"7374":884,"7375":941,"7376":940,"7377":984,"7378":958,"7379":936,"7380":920,"7381":900,"7382":942,"7383":847,"7384":885,"7385":969,"7386":965,"7387":917,"7388":882,"7389":940,"7390":894,"7391":885,"7392":870,"7393":859,"7394":864,"7395":981,"7396":854,"7397":859,"7398":899,"7399":958,"7400":942,"7401":950,"7402":882,"7403":869,"7404":926,"7405":862,"7406":917,"7407":963,"7408":968,"7409":900,"7410":887,"7411":916,"7412":961,"7413":958,"7414":900,"7415":936,"7416":891,"7417":905,"7418":907,"7419":911,"7420":961,"7421":903,"7422":954,"7423":936,"7424":958,"7425":956,"7426":972,"7427":905,"7428":900,"7429":985,"7430":850,"7431":938,"7432":984,"7433":935,"7434":968,"7435":985,"7436":843,"7437":892,"7438":935,"7439":870,"7440":911,"7441":972,"7442":976,"7443":958,"7444":845,"7445":926,"7446":874,"7447":878,"7448":931,"7449":969,"7450":892,"7451":885,"7452":938,"7453":842,"7454":958,"7455":905,"7456":979,"7457":923,"7458":849,"7459":985,"7460":856,"7461":961,"7462":971,"7463":885,"7464":940,"7465":874,"7466":880,"7467":924,"7468":843,"7469":872,"7470":885,"7471":953,"7472":872,"7473":903,"7474":959,"7475":858,"7476":944,"7477":893,"7478":951,"7479":888,"7480":916,"7481":984,"7482":952,"7483":938,"7484":936,"7485":916,"7486":963,"7487":905,"7488":984,"7489":984,"7490":864,"7491":952,"7492":886,"7493":898,"7494":972,"7495":846,"7496":844,"7497":936,"7498":977,"7499":910,"7500":900,"7501":876,"7502":936,"7503":907,"7504":969,"7505":963,"7506":955,"7507":881,"7508":841,"7509":899,"7510":970,"7511":874,"7512":854,"7513":944,"7514":899,"7515":940,"7516":979,"7517":967,"7518":938,"7519":961,"7520":945,"7521":982,"7522":901,"7523":888,"7524":968,"7525":885,"7526":891,"7527":905,"7528":923,"7529":893,"7530":967,"7531":915,"7532":900,"7533":964,"7534":858,"7535":925,"7536":968,"7537":872,"7538":916,"7539":870,"7540":885,"7541":962,"7542":900,"7543":920,"7544":871,"7545":880,"7546":918,"7547":876,"7548":880,"7549":934,"7550":901,"7551":937,"7552":940,"7553":966,"7554":845,"7555":861,"7556":934,"7557":950,"7558":975,"7559":840,"7560":962,"7561":879,"7562":944,"7563":873,"7564":840,"7565":974,"7566":942,"7567":968,"7568":912,"7569":974,"7570":876,"7571":971,"7572":879,"7573":979,"7574":864,"7575":931,"7576":976,"7577":973,"7578":929,"7579":971,"7580":958,"7581":912,"7582":858,"7583":864,"7584":893,"7585":899,"7586":958,"7587":885,"7588":870,"7589":953,"7590":939,"7591":848,"7592":974,"7593":899,"7594":974,"7595":931,"7596":920,"7597":885,"7598":881,"7599":849,"7600":973,"7601":902,"7602":857,"7603":958,"7604":975,"7605":857,"7606":968,"7607":920,"7608":929,"7609":971,"7610":941,"7611":871,"7612":892,"7613":980,"7614":860,"7615":854,"7616":925,"7617":913,"7618":894,"7619":987,"7620":963,"7621":921,"7622":911,"7623":851,"7624":969,"7625":986,"7626":875,"7627":966,"7628":981,"7629":902,"7630":951,"7631":859,"7632":960,"7633":941,"7634":971,"7635":870,"7636":931,"7637":942,"7638":947,"7639":845,"7640":853,"7641":898,"7642":866,"7643":888,"7644":860,"7645":968,"7646":888,"7647":876,"7648":921,"7649":951,"7650":879,"7651":942,"7652":879,"7653":944,"7654":962,"7655":943,"7656":961,"7657":963,"7658":976,"7659":961,"7660":975,"7661":883,"7662":964,"7663":908,"7664":963,"7665":972,"7666":948,"7667":946,"7668":964,"7669":931,"7670":870,"7671":984,"7672":948,"7673":867,"7674":846,"7675":981,"7676":881,"7677":843,"7678":885,"7679":900,"7680":861,"7681":969,"7682":899,"7683":850,"7684":865,"7685":963,"7686":947,"7687":908,"7688":870,"7689":895,"7690":984,"7691":859,"7692":885,"7693":930,"7694":888,"7695":899,"7696":962,"7697":933,"7698":900,"7699":860,"7700":856,"7701":970,"7702":845,"7703":843,"7704":885,"7705":940,"7706":939,"7707":907,"7708":874,"7709":841,"7710":861,"7711":870,"7712":885,"7713":884,"7714":970,"7715":958,"7716":931,"7717":928,"7718":936,"7719":899,"7720":899,"7721":970,"7722":936,"7723":914,"7724":870,"7725":887,"7726":872,"7727":941,"7728":878,"7729":906,"7730":937,"7731":872,"7732":859,"7733":912,"7734":940,"7735":974,"7736":958,"7737":936,"7738":972,"7739":911,"7740":981,"7741":888,"7742":849,"7743":961,"7744":974,"7745":980,"7746":894,"7747":946,"7748":931,"7749":964,"7750":893,"7751":899,"7752":899,"7753":954,"7754":903,"7755":943,"7756":936,"7757":905,"7758":884,"7759":931,"7760":923,"7761":903,"7762":984,"7763":843,"7764":878,"7765":859,"7766":852,"7767":869,"7768":975,"7769":879,"7770":881,"7771":840,"7772":960,"7773":961,"7774":860,"7775":961,"7776":883,"7777":857,"7778":843,"7779":909,"7780":965,"7781":901,"7782":899,"7783":966,"7784":954,"7785":881,"7786":865,"7787":843,"7788":983,"7789":884,"7790":941,"7791":913,"7792":969,"7793":969,"7794":942,"7795":966,"7796":924,"7797":912,"7798":939,"7799":965,"7800":946,"7801":875,"7802":971,"7803":903,"7804":941,"7805":931,"7806":909,"7807":969,"7808":886,"7809":971,"7810":937,"7811":953,"7812":876,"7813":938,"7814":981,"7815":841,"7816":955,"7817":895,"7818":905,"7819":895,"7820":958,"7821":882,"7822":912,"7823":841,"7824":908,"7825":988,"7826":852,"7827":901,"7828":843,"7829":888,"7830":852,"7831":948,"7832":957,"7833":900,"7834":950,"7835":900,"7836":899,"7837":981,"7838":982,"7839":897,"7840":901,"7841":857,"7842":940,"7843":981,"7844":893,"7845":907,"7846":888,"7847":922,"7848":896,"7849":940,"7850":888,"7851":845,"7852":912,"7853":963,"7854":968,"7855":984,"7856":871,"7857":939,"7858":890,"7859":974,"7860":893,"7861":984,"7862":977,"7863":985,"7864":900,"7865":971,"7866":981,"7867":934,"7868":954,"7869":856,"7870":975,"7871":869,"7872":865,"7873":950,"7874":866,"7875":895,"7876":899,"7877":913,"7878":878,"7879":933,"7880":941,"7881":985,"7882":938,"7883":901,"7884":982,"7885":951,"7886":871,"7887":893,"7888":980,"7889":856,"7890":878,"7891":925,"7892":852,"7893":900,"7894":880,"7895":954,"7896":885,"7897":943,"7898":933,"7899":855,"7900":913,"7901":936,"7902":934,"7903":986,"7904":864,"7905":921,"7906":955,"7907":911,"7908":954,"7909":936,"7910":865,"7911":951,"7912":913,"7913":855,"7914":985,"7915":885,"7916":937,"7917":984,"7918":958,"7919":958,"7920":850,"7921":893,"7922":867,"7923":887,"7924":942,"7925":899,"7926":906,"7927":942,"7928":958,"7929":869,"7930":911,"7931":941,"7932":951,"7933":942,"7934":949,"7935":911,"7936":864,"7937":905,"7938":865,"7939":874,"7940":924,"7941":843,"7942":940,"7943":908,"7944":941,"7945":981,"7946":979,"7947":980,"7948":941,"7949":916,"7950":876,"7951":985,"7952":876,"7953":870,"7954":936,"7955":919,"7956":917,"7957":937,"7958":876,"7959":859,"7960":872,"7961":976,"7962":900,"7963":964,"7964":955,"7965":891,"7966":876,"7967":984,"7968":955,"7969":970,"7970":940,"7971":981,"7972":886,"7973":840,"7974":918,"7975":936,"7976":941,"7977":949,"7978":951,"7979":945,"7980":935,"7981":908,"7982":976,"7983":905,"7984":926,"7985":974,"7986":968,"7987":882,"7988":883,"7989":966,"7990":936,"7991":929,"7992":936,"7993":972,"7994":874,"7995":929,"7996":937,"7997":905,"7998":972,"7999":958,"8000":905,"8001":895,"8002":882,"8003":893,"8004":974,"8005":905,"8006":847,"8007":941,"8008":916,"8009":922,"8010":985,"8011":984,"8012":859,"8013":844,"8014":879,"8015":981,"8016":870,"8017":958,"8018":966,"8019":874,"8020":900,"8021":895,"8022":931,"8023":964,"8024":926,"8025":839,"8026":888,"8027":870,"8028":931,"8029":959,"8030":885,"8031":969,"8032":859,"8033":961,"8034":860,"8035":971,"8036":974,"8037":970,"8038":854,"8039":942,"8040":896,"8041":887,"8042":955,"8043":971,"8044":848,"8045":891,"8046":966,"8047":901,"8048":961,"8049":973,"8050":878,"8051":961,"8052":969,"8053":879,"8054":893,"8055":952,"8056":941,"8057":986,"8058":942,"8059":940,"8060":906,"8061":848,"8062":883,"8063":874,"8064":869,"8065":899,"8066":880,"8067":921,"8068":917,"8069":906,"8070":985,"8071":840,"8072":873,"8073":936,"8074":888,"8075":944,"8076":872,"8077":974,"8078":873,"8079":870,"8080":939,"8081":980,"8082":874,"8083":907,"8084":873,"8085":895,"8086":892,"8087":974,"8088":885,"8089":920,"8090":970,"8091":899,"8092":887,"8093":941,"8094":887,"8095":955,"8096":966,"8097":982,"8098":936,"8099":899,"8100":944,"8101":844,"8102":847,"8103":905,"8104":871,"8105":865,"8106":916,"8107":974,"8108":870,"8109":875,"8110":983,"8111":971,"8112":931,"8113":935,"8114":905,"8115":840,"8116":854,"8117":859,"8118":931,"8119":880,"8120":958,"8121":860,"8122":936,"8123":960,"8124":952,"8125":972,"8126":885,"8127":932,"8128":859,"8129":881,"8130":963,"8131":900,"8132":872,"8133":922,"8134":931,"8135":966,"8136":872,"8137":963,"8138":843,"8139":968,"8140":909,"8141":860,"8142":981,"8143":953,"8144":896,"8145":846,"8146":924,"8147":984,"8148":986,"8149":856,"8150":903,"8151":857,"8152":876,"8153":958,"8154":889,"8155":966,"8156":901,"8157":940,"8158":971,"8159":906,"8160":985,"8161":856,"8162":872,"8163":946,"8164":971,"8165":961,"8166":936,"8167":964,"8168":854,"8169":966,"8170":892,"8171":907,"8172":863,"8173":944,"8174":947,"8175":855,"8176":872,"8177":936,"8178":888,"8179":908,"8180":987,"8181":942,"8182":973,"8183":966,"8184":899,"8185":986,"8186":963,"8187":848,"8188":960,"8189":905,"8190":958,"8191":944,"8192":962,"8193":928,"8194":918,"8195":937,"8196":952,"8197":888,"8198":974,"8199":859,"8200":983,"8201":936,"8202":921,"8203":916,"8204":907,"8205":950,"8206":910,"8207":974,"8208":936,"8209":927,"8210":988,"8211":899,"8212":916,"8213":974,"8214":986,"8215":980,"8216":926,"8217":845,"8218":931,"8219":885,"8220":941,"8221":881,"8222":916,"8223":970,"8224":841,"8225":921,"8226":865,"8227":867,"8228":938,"8229":897,"8230":870,"8231":864,"8232":923,"8233":969,"8234":984,"8235":971,"8236":925,"8237":893,"8238":955,"8239":936,"8240":970,"8241":909,"8242":921,"8243":966,"8244":905,"8245":986,"8246":946,"8247":967,"8248":941,"8249":971,"8250":983,"8251":929,"8252":936,"8253":979,"8254":979,"8255":927,"8256":856,"8257":932,"8258":968,"8259":940,"8260":962,"8261":893,"8262":906,"8263":936,"8264":859,"8265":900,"8266":903,"8267":936,"8268":979,"8269":883,"8270":986,"8271":899,"8272":980,"8273":955,"8274":985,"8275":858,"8276":899,"8277":969,"8278":841,"8279":888,"8280":923,"8281":880,"8282":845,"8283":969,"8284":885,"8285":908,"8286":903,"8287":877,"8288":874,"8289":864,"8290":905,"8291":904,"8292":979,"8293":923,"8294":941,"8295":939,"8296":907,"8297":888,"8298":939,"8299":910,"8300":872,"8301":857,"8302":918,"8303":986,"8304":953,"8305":859,"8306":869,"8307":963,"8308":859,"8309":955,"8310":971,"8311":872,"8312":972,"8313":879,"8314":870,"8315":854,"8316":905,"8317":962,"8318":854,"8319":855,"8320":859,"8321":863,"8322":897,"8323":957,"8324":843,"8325":863,"8326":961,"8327":859,"8328":893,"8329":906,"8330":916,"8331":915,"8332":984,"8333":929,"8334":923,"8335":921,"8336":875,"8337":885,"8338":926,"8339":940,"8340":899,"8341":923,"8342":892,"8343":903,"8344":971,"8345":978,"8346":963,"8347":963,"8348":955,"8349":883,"8350":877,"8351":958,"8352":966,"8353":955,"8354":921,"8355":971,"8356":955,"8357":979,"8358":860,"8359":870,"8360":896,"8361":958,"8362":971,"8363":923,"8364":866,"8365":865,"8366":865,"8367":885,"8368":866,"8369":921,"8370":873,"8371":940,"8372":881,"8373":958,"8374":981,"8375":972,"8376":963,"8377":930,"8378":940,"8379":913,"8380":974,"8381":885,"8382":986,"8383":843,"8384":931,"8385":894,"8386":899,"8387":930,"8388":858,"8389":856,"8390":958,"8391":981,"8392":936,"8393":874,"8394":926,"8395":893,"8396":888,"8397":986,"8398":892,"8399":870,"8400":911,"8401":968,"8402":851,"8403":897,"8404":911,"8405":869,"8406":856,"8407":958,"8408":950,"8409":912,"8410":878,"8411":985,"8412":887,"8413":955,"8414":948,"8415":883,"8416":928,"8417":939,"8418":846,"8419":913,"8420":899,"8421":883,"8422":900,"8423":963,"8424":960,"8425":981,"8426":965,"8427":967,"8428":856,"8429":939,"8430":959,"8431":864,"8432":961,"8433":941,"8434":947,"8435":883,"8436":988,"8437":981,"8438":965,"8439":870,"8440":981,"8441":974,"8442":888,"8443":907,"8444":876,"8445":896,"8446":859,"8447":864,"8448":896,"8449":936,"8450":874,"8451":981,"8452":972,"8453":938,"8454":964,"8455":869,"8456":858,"8457":894,"8458":905,"8459":963,"8460":900,"8461":856,"8462":894,"8463":958,"8464":985,"8465":880,"8466":920,"8467":903,"8468":971,"8469":854,"8470":955,"8471":865,"8472":929,"8473":843,"8474":941,"8475":984,"8476":971,"8477":916,"8478":859,"8479":885,"8480":900,"8481":900,"8482":847,"8483":930,"8484":969,"8485":916,"8486":860,"8487":900,"8488":971,"8489":986,"8490":862,"8491":859,"8492":920,"8493":857,"8494":986,"8495":936,"8496":899,"8497":940,"8498":955,"8499":880,"8500":845,"8501":947,"8502":936,"8503":893,"8504":911,"8505":882,"8506":920,"8507":885,"8508":899,"8509":970,"8510":864,"8511":920,"8512":879,"8513":881,"8514":963,"8515":908,"8516":863,"8517":876,"8518":979,"8519":939,"8520":922,"8521":929,"8522":967,"8523":974,"8524":860,"8525":885,"8526":971,"8527":905,"8528":984,"8529":959,"8530":922,"8531":860,"8532":905,"8533":885,"8534":961,"8535":981,"8536":856,"8537":887,"8538":975,"8539":900,"8540":952,"8541":856,"8542":939,"8543":912,"8544":971,"8545":856,"8546":895,"8547":888,"8548":954,"8549":948,"8550":953,"8551":885,"8552":933,"8553":921,"8554":892,"8555":961,"8556":942,"8557":961,"8558":840,"8559":940,"8560":974,"8561":872,"8562":858,"8563":859,"8564":929,"8565":872,"8566":867,"8567":865,"8568":951,"8569":958,"8570":865,"8571":966,"8572":986,"8573":905,"8574":968,"8575":900,"8576":897,"8577":962,"8578":916,"8579":877,"8580":869,"8581":869,"8582":865,"8583":940,"8584":932,"8585":964,"8586":958,"8587":981,"8588":873,"8589":873,"8590":896,"8591":865,"8592":921,"8593":907,"8594":968,"8595":870,"8596":856,"8597":941,"8598":931,"8599":893,"8600":984,"8601":927,"8602":981,"8603":972,"8604":903,"8605":909,"8606":920,"8607":877,"8608":900,"8609":874,"8610":964,"8611":891,"8612":993,"8613":996,"8614":990,"8615":992,"8616":993,"8617":989,"8618":990,"8619":993,"8620":991,"8621":993,"8622":994,"8623":989,"8624":990,"8625":993,"8626":994,"8627":993,"8628":993,"8629":993,"8630":991,"8631":992,"8632":990,"8633":991,"8634":992,"8635":990,"8636":992,"8637":992,"8638":993,"8639":994,"8640":989,"8641":994,"8642":991,"8643":996,"8644":989,"8645":995,"8646":996,"8647":993,"8648":993,"8649":990,"8650":993,"8651":992,"8652":991,"8653":989,"8654":991,"8655":996,"8656":992,"8657":992,"8658":991,"8659":993,"8660":995,"8661":993,"8662":993,"8663":996,"8664":993,"8665":993,"8666":992,"8667":993,"8668":994,"8669":989,"8670":990,"8671":992,"8672":993,"8673":996,"8674":990,"8675":992,"8676":992,"8677":991,"8678":991,"8679":993,"8680":993,"8681":994,"8682":989,"8683":993,"8684":991,"8685":994,"8686":991,"8687":993,"8688":993,"8689":993,"8690":1015,"8691":1015,"8692":1013,"8693":1008,"8694":1002,"8695":1013,"8696":1011,"8697":1015,"8698":1012,"8699":999,"8700":1000,"8701":1014,"8702":1012,"8703":1011,"8704":1010,"8705":1009,"8706":1008,"8707":1015,"8708":1008,"8709":1010,"8710":1008,"8711":1014,"8712":1015,"8713":1000,"8714":1010,"8715":1008,"8716":1008,"8717":999,"8718":1015,"8719":1009,"8720":1012,"8721":998,"8722":999,"8723":1010,"8724":1000,"8725":999,"8726":1001,"8727":1013,"8728":1010,"8729":1010,"8730":1007,"8731":1005,"8732":1011,"8733":1003,"8734":1008,"8735":1009,"8736":1014,"8737":1008,"8738":1005,"8739":1008,"8740":1010,"8741":1012,"8742":1012,"8743":1009,"8744":1015,"8745":1012,"8746":1013,"8747":999,"8748":1007,"8749":997,"8750":999,"8751":1012,"8752":1015,"8753":1008,"8754":1010,"8755":1006,"8756":1010,"8757":1012,"8758":1008,"8759":1011,"8760":1013,"8761":1012,"8762":1007,"8763":998,"8764":1014,"8765":1012,"8766":1014,"8767":1009,"8768":1013,"8769":1015,"8770":998,"8771":1010,"8772":1009,"8773":998,"8774":1005,"8775":1008,"8776":1013,"8777":999,"8778":997,"8779":1014,"8780":1014,"8781":1005,"8782":998,"8783":1001,"8784":1012,"8785":1004,"8786":1002,"8787":1002,"8788":1014,"8789":1009,"8790":1013,"8791":1008,"8792":1010,"8793":999,"8794":1015,"8795":1001,"8796":1010,"8797":1010,"8798":1002,"8799":1009,"8800":1012,"8801":1005,"8802":1011,"8803":1012,"8804":1011,"8805":1008,"8806":999,"8807":1010,"8808":999,"8809":1014,"8810":1012,"8811":1013,"8812":999,"8813":1014,"8814":1007,"8815":1015,"8816":1000,"8817":1009,"8818":1015,"8819":1010,"8820":1012,"8821":1012,"8822":1006,"8823":1012,"8824":1002,"8825":1013,"8826":1007,"8827":1000,"8828":1008,"8829":1003,"8830":997,"8831":1006,"8832":1007,"8833":1003,"8834":998,"8835":1007,"8836":1012,"8837":1012,"8838":1008,"8839":1011,"8840":1013,"8841":1013,"8842":1022,"8843":1022,"8844":1020,"8845":1023,"8846":1024,"8847":1023,"8848":1023,"8849":1020,"8850":1024,"8851":1023,"8852":1023,"8853":1016,"8854":1023,"8855":1018,"8856":1023,"8857":1023,"8858":1018,"8859":1022,"8860":1024,"8861":1023,"8862":1022,"8863":1019,"8864":1020,"8865":1020,"8866":1023,"8867":1024,"8868":1024,"8869":1023,"8870":1020,"8871":1019,"8872":1021,"8873":1019,"8874":1018,"8875":1020,"8876":1020,"8877":1023,"8878":1022,"8879":1020,"8880":1017,"8881":1023,"8882":1016,"8883":1024,"8884":1023,"8885":1023,"8886":1017,"8887":1024,"8888":1020,"8889":1020,"8890":1023,"8891":1024,"8892":1017,"8893":1020,"8894":1023,"8895":1023,"8896":1020,"8897":1023,"8898":1023,"8899":1022,"8900":1018,"8901":1023,"8902":1024,"8903":1023,"8904":1020,"8905":1023,"8906":1017,"8907":1023,"8908":1023,"8909":1020,"8910":1020,"8911":1020,"8912":1023,"8913":1020,"8914":1026,"8915":1026,"8916":1025,"8917":1027,"8918":1029,"8919":1030,"8920":1031,"8921":1032,"8922":1029,"8923":1026,"8924":1026,"8925":1030,"8926":1032,"8927":1026,"8928":1030,"8929":1027,"8930":1025,"8931":1025,"8932":1029,"8933":1032,"8934":1025,"8935":1026,"8936":1027,"8937":1026,"8938":1031,"8939":1030,"8940":1026,"8941":1029,"8942":1026,"8943":1026,"8944":1029,"8945":1031,"8946":1030,"8947":1029,"8948":1030,"8949":1029,"8950":1025,"8951":1028,"8952":1026,"8953":1026,"8954":1029,"8955":1025,"8956":1030,"8957":1026,"8958":1029,"8959":1025,"8960":1030,"8961":1029,"8962":1026,"8963":1030,"8964":1026,"8965":1030,"8966":1032,"8967":1030,"8968":1026,"8969":1027,"8970":1032,"8971":1030,"8972":1026,"8973":1027,"8974":1029,"8975":1026,"8976":1030,"8977":1025,"8978":1031,"8979":1031,"8980":1025,"8981":1027,"8982":1028,"8983":1026,"8984":1026,"8985":1028,"8986":1026,"8987":1029,"8988":1027,"8989":1029,"8990":1029,"8991":1026,"8992":1034,"8993":1034,"8994":1034,"8995":1034,"8996":1034,"8997":1034,"8998":1034,"8999":1034,"9000":1034,"9001":1034,"9002":1034,"9003":1034,"9004":1034,"9005":1034,"9006":1034,"9007":1034,"9008":1034,"9009":1033,"9010":1033,"9011":1034,"9012":1034,"9013":1034,"9014":1034,"9015":1033,"9016":1034,"9017":1043,"9018":1056,"9019":1045,"9020":1039,"9021":1049,"9022":1046,"9023":1058,"9024":1040,"9025":1038,"9026":1038,"9027":1044,"9028":1049,"9029":1038,"9030":1047,"9031":1049,"9032":1054,"9033":1046,"9034":1049,"9035":1049,"9036":1050,"9037":1048,"9038":1058,"9039":1048,"9040":1044,"9041":1038,"9042":1060,"9043":1046,"9044":1042,"9045":1047,"9046":1058,"9047":1060,"9048":1040,"9049":1060,"9050":1048,"9051":1059,"9052":1058,"9053":1048,"9054":1048,"9055":1042,"9056":1046,"9057":1056,"9058":1044,"9059":1042,"9060":1050,"9061":1041,"9062":1046,"9063":1044,"9064":1039,"9065":1036,"9066":1046,"9067":1060,"9068":1053,"9069":1044,"9070":1048,"9071":1044,"9072":1057,"9073":1038,"9074":1039,"9075":1042,"9076":1038,"9077":1045,"9078":1043,"9079":1051,"9080":1048,"9081":1049,"9082":1046,"9083":1041,"9084":1043,"9085":1041,"9086":1041,"9087":1044,"9088":1035,"9089":1046,"9090":1048,"9091":1060,"9092":1041,"9093":1047,"9094":1041,"9095":1060,"9096":1040,"9097":1049,"9098":1042,"9099":1048,"9100":1060,"9101":1039,"9102":1057,"9103":1049,"9104":1044,"9105":1056,"9106":1060,"9107":1048,"9108":1050,"9109":1047,"9110":1044,"9111":1040,"9112":1038,"9113":1037,"9114":1046,"9115":1047,"9116":1058,"9117":1044,"9118":1046,"9119":1050,"9120":1056,"9121":1058,"9122":1046,"9123":1049,"9124":1048,"9125":1041,"9126":1058,"9127":1060,"9128":1060,"9129":1046,"9130":1047,"9131":1039,"9132":1051,"9133":1046,"9134":1046,"9135":1046,"9136":1058,"9137":1035,"9138":1053,"9139":1048,"9140":1048,"9141":1042,"9142":1044,"9143":1057,"9144":1046,"9145":1043,"9146":1036,"9147":1046,"9148":1042,"9149":1050,"9150":1040,"9151":1041,"9152":1050,"9153":1048,"9154":1054,"9155":1039,"9156":1048,"9157":1060,"9158":1035,"9159":1049,"9160":1058,"9161":1036,"9162":1054,"9163":1044,"9164":1045,"9165":1048,"9166":1048,"9167":1038,"9168":1058,"9169":1060,"9170":1055,"9171":1060,"9172":1046,"9173":1045,"9174":1044,"9175":1052,"9176":1046,"9177":1060,"9178":1046,"9179":1051,"9180":1056,"9181":1059,"9182":1044,"9183":1038,"9184":1036,"9185":1040,"9186":1038,"9187":1058,"9188":1045,"9189":1046,"9190":1051,"9191":1044,"9192":1049,"9193":1056,"9194":1041,"9195":1058,"9196":1058,"9197":1046,"9198":1038,"9199":1058,"9200":1044,"9201":1048,"9202":1055,"9203":1048,"9204":1060,"9205":1049,"9206":1038,"9207":1046,"9208":1050,"9209":1046,"9210":1040,"9211":1060,"9212":1048,"9213":1052,"9214":1047,"9215":1041,"9216":1036,"9217":1038,"9218":1039,"9219":1057,"9220":1049,"9221":1059,"9222":1047,"9223":1044,"9224":1046,"9225":1058,"9226":1042,"9227":1046,"9228":1046,"9229":1039,"9230":1040,"9231":1058,"9232":1046,"9233":1052,"9234":1041,"9235":1056,"9236":1054,"9237":1039,"9238":1051,"9239":1044,"9240":1039,"9241":1060,"9242":1060,"9243":1046,"9244":1041,"9245":1050,"9246":1046,"9247":1039,"9248":1046,"9249":1073,"9250":1063,"9251":1079,"9252":1074,"9253":1064,"9254":1065,"9255":1075,"9256":1074,"9257":1063,"9258":1063,"9259":1063,"9260":1068,"9261":1076,"9262":1074,"9263":1068,"9264":1070,"9265":1079,"9266":1069,"9267":1065,"9268":1074,"9269":1079,"9270":1079,"9271":1068,"9272":1063,"9273":1065,"9274":1079,"9275":1074,"9276":1079,"9277":1065,"9278":1069,"9279":1074,"9280":1079,"9281":1068,"9282":1072,"9283":1063,"9284":1070,"9285":1072,"9286":1074,"9287":1068,"9288":1075,"9289":1066,"9290":1062,"9291":1063,"9292":1064,"9293":1079,"9294":1065,"9295":1074,"9296":1068,"9297":1079,"9298":1068,"9299":1062,"9300":1063,"9301":1079,"9302":1065,"9303":1079,"9304":1062,"9305":1074,"9306":1068,"9307":1077,"9308":1063,"9309":1069,"9310":1068,"9311":1075,"9312":1069,"9313":1063,"9314":1063,"9315":1066,"9316":1066,"9317":1079,"9318":1074,"9319":1079,"9320":1074,"9321":1074,"9322":1076,"9323":1076,"9324":1064,"9325":1074,"9326":1066,"9327":1080,"9328":1075,"9329":1074,"9330":1080,"9331":1061,"9332":1070,"9333":1063,"9334":1066,"9335":1061,"9336":1069,"9337":1079,"9338":1068,"9339":1067,"9340":1063,"9341":1071,"9342":1075,"9343":1066,"9344":1077,"9345":1069,"9346":1063,"9347":1080,"9348":1079,"9349":1065,"9350":1079,"9351":1065,"9352":1074,"9353":1069,"9354":1061,"9355":1062,"9356":1075,"9357":1064,"9358":1077,"9359":1061,"9360":1063,"9361":1073,"9362":1079,"9363":1064,"9364":1080,"9365":1068,"9366":1063,"9367":1079,"9368":1068,"9369":1079,"9370":1075,"9371":1079,"9372":1068,"9373":1071,"9374":1075,"9375":1063,"9376":1079,"9377":1080,"9378":1072,"9379":1068,"9380":1063,"9381":1074,"9382":1075,"9383":1071,"9384":1074,"9385":1063,"9386":1061,"9387":1070,"9388":1073,"9389":1079,"9390":1079,"9391":1063,"9392":1068,"9393":1071,"9394":1078,"9395":1066,"9396":1066,"9397":1063,"9398":1079,"9399":1075,"9400":1065,"9401":1070,"9402":1077,"9403":1069,"9404":1070,"9405":1066,"9406":1073,"9407":1074,"9408":1077,"9409":1070,"9410":1080,"9411":1075,"9412":1068,"9413":1074,"9414":1078,"9415":1078,"9416":1062,"9417":1062,"9418":1079,"9419":1069,"9420":1072,"9421":1079,"9422":1069,"9423":1068,"9424":1075,"9425":1073,"9426":1074,"9427":1077,"9428":1074,"9429":1062,"9430":1065,"9431":1063,"9432":1073,"9433":1072,"9434":1070,"9435":1072,"9436":1063,"9437":1065,"9438":1071,"9439":1063,"9440":1070,"9441":1071,"9442":1074,"9443":1074,"9444":1068,"9445":1116,"9446":1119,"9447":1132,"9448":1096,"9449":1091,"9450":1160,"9451":1133,"9452":1104,"9453":1136,"9454":1108,"9455":1105,"9456":1083,"9457":1147,"9458":1149,"9459":1122,"9460":1150,"9461":1135,"9462":1141,"9463":1091,"9464":1133,"9465":1102,"9466":1140,"9467":1104,"9468":1108,"9469":1129,"9470":1129,"9471":1129,"9472":1133,"9473":1104,"9474":1108,"9475":1157,"9476":1153,"9477":1123,"9478":1103,"9479":1131,"9480":1117,"9481":1115,"9482":1113,"9483":1149,"9484":1118,"9485":1122,"9486":1100,"9487":1121,"9488":1090,"9489":1102,"9490":1094,"9491":1100,"9492":1139,"9493":1097,"9494":1100,"9495":1117,"9496":1132,"9497":1150,"9498":1110,"9499":1098,"9500":1121,"9501":1093,"9502":1159,"9503":1153,"9504":1091,"9505":1087,"9506":1147,"9507":1104,"9508":1113,"9509":1155,"9510":1146,"9511":1095,"9512":1127,"9513":1138,"9514":1120,"9515":1127,"9516":1159,"9517":1129,"9518":1144,"9519":1087,"9520":1147,"9521":1119,"9522":1114,"9523":1083,"9524":1146,"9525":1093,"9526":1087,"9527":1158,"9528":1113,"9529":1133,"9530":1131,"9531":1104,"9532":1106,"9533":1150,"9534":1133,"9535":1108,"9536":1128,"9537":1131,"9538":1088,"9539":1156,"9540":1131,"9541":1136,"9542":1101,"9543":1087,"9544":1086,"9545":1117,"9546":1102,"9547":1150,"9548":1089,"9549":1150,"9550":1088,"9551":1158,"9552":1136,"9553":1114,"9554":1150,"9555":1143,"9556":1160,"9557":1088,"9558":1139,"9559":1128,"9560":1105,"9561":1090,"9562":1087,"9563":1103,"9564":1113,"9565":1148,"9566":1087,"9567":1147,"9568":1089,"9569":1091,"9570":1132,"9571":1127,"9572":1104,"9573":1128,"9574":1144,"9575":1152,"9576":1114,"9577":1091,"9578":1102,"9579":1093,"9580":1154,"9581":1096,"9582":1160,"9583":1113,"9584":1143,"9585":1097,"9586":1128,"9587":1127,"9588":1150,"9589":1135,"9590":1083,"9591":1128,"9592":1126,"9593":1128,"9594":1122,"9595":1140,"9596":1155,"9597":1087,"9598":1086,"9599":1108,"9600":1159,"9601":1128,"9602":1088,"9603":1151,"9604":1160,"9605":1104,"9606":1083,"9607":1142,"9608":1084,"9609":1152,"9610":1132,"9611":1108,"9612":1100,"9613":1129,"9614":1153,"9615":1117,"9616":1093,"9617":1150,"9618":1133,"9619":1155,"9620":1113,"9621":1102,"9622":1143,"9623":1147,"9624":1157,"9625":1105,"9626":1141,"9627":1082,"9628":1141,"9629":1129,"9630":1102,"9631":1144,"9632":1157,"9633":1141,"9634":1135,"9635":1107,"9636":1104,"9637":1108,"9638":1132,"9639":1121,"9640":1118,"9641":1141,"9642":1090,"9643":1151,"9644":1119,"9645":1108,"9646":1093,"9647":1154,"9648":1103,"9649":1118,"9650":1104,"9651":1154,"9652":1083,"9653":1132,"9654":1123,"9655":1119,"9656":1149,"9657":1105,"9658":1108,"9659":1093,"9660":1088,"9661":1089,"9662":1127,"9663":1141,"9664":1083,"9665":1159,"9666":1158,"9667":1111,"9668":1153,"9669":1089,"9670":1133,"9671":1150,"9672":1132,"9673":1156,"9674":1129,"9675":1083,"9676":1083,"9677":1102,"9678":1132,"9679":1115,"9680":1159,"9681":1119,"9682":1141,"9683":1139,"9684":1112,"9685":1081,"9686":1122,"9687":1136,"9688":1104,"9689":1132,"9690":1132,"9691":1127,"9692":1093,"9693":1150,"9694":1103,"9695":1097,"9696":1091,"9697":1100,"9698":1102,"9699":1159,"9700":1088,"9701":1097,"9702":1131,"9703":1104,"9704":1136,"9705":1139,"9706":1114,"9707":1133,"9708":1159,"9709":1112,"9710":1160,"9711":1125,"9712":1149,"9713":1150,"9714":1141,"9715":1131,"9716":1121,"9717":1128,"9718":1097,"9719":1119,"9720":1122,"9721":1103,"9722":1096,"9723":1133,"9724":1121,"9725":1133,"9726":1129,"9727":1150,"9728":1131,"9729":1108,"9730":1150,"9731":1128,"9732":1144,"9733":1121,"9734":1141,"9735":1082,"9736":1093,"9737":1093,"9738":1133,"9739":1137,"9740":1092,"9741":1151,"9742":1093,"9743":1117,"9744":1103,"9745":1135,"9746":1143,"9747":1150,"9748":1150,"9749":1084,"9750":1123,"9751":1087,"9752":1087,"9753":1158,"9754":1161,"9755":1128,"9756":1101,"9757":1152,"9758":1128,"9759":1151,"9760":1118,"9761":1126,"9762":1132,"9763":1088,"9764":1134,"9765":1108,"9766":1150,"9767":1087,"9768":1143,"9769":1159,"9770":1131,"9771":1123,"9772":1141,"9773":1104,"9774":1117,"9775":1084,"9776":1147,"9777":1083,"9778":1101,"9779":1127,"9780":1147,"9781":1102,"9782":1121,"9783":1132,"9784":1129,"9785":1083,"9786":1156,"9787":1150,"9788":1112,"9789":1128,"9790":1136,"9791":1089,"9792":1119,"9793":1134,"9794":1131,"9795":1086,"9796":1127,"9797":1113,"9798":1149,"9799":1145,"9800":1136,"9801":1140,"9802":1141,"9803":1103,"9804":1091,"9805":1085,"9806":1159,"9807":1101,"9808":1149,"9809":1102,"9810":1144,"9811":1129,"9812":1087,"9813":1116,"9814":1092,"9815":1124,"9816":1094,"9817":1121,"9818":1158,"9819":1115,"9820":1086,"9821":1127,"9822":1110,"9823":1093,"9824":1122,"9825":1133,"9826":1131,"9827":1087,"9828":1137,"9829":1123,"9830":1160,"9831":1100,"9832":1096,"9833":1133,"9834":1136,"9835":1124,"9836":1087,"9837":1146,"9838":1087,"9839":1113,"9840":1118,"9841":1105,"9842":1155,"9843":1138,"9844":1111,"9845":1113,"9846":1142,"9847":1117,"9848":1091,"9849":1115,"9850":1087,"9851":1129,"9852":1127,"9853":1138,"9854":1159,"9855":1105,"9856":1158,"9857":1136,"9858":1132,"9859":1083,"9860":1093,"9861":1160,"9862":1093,"9863":1118,"9864":1091,"9865":1132,"9866":1083,"9867":1148,"9868":1132,"9869":1117,"9870":1133,"9871":1158,"9872":1093,"9873":1081,"9874":1121,"9875":1084,"9876":1138,"9877":1117,"9878":1090,"9879":1128,"9880":1100,"9881":1158,"9882":1084,"9883":1142,"9884":1153,"9885":1159,"9886":1090,"9887":1088,"9888":1144,"9889":1115,"9890":1093,"9891":1118,"9892":1127,"9893":1120,"9894":1081,"9895":1149,"9896":1131,"9897":1158,"9898":1091,"9899":1140,"9900":1095,"9901":1105,"9902":1104,"9903":1109,"9904":1139,"9905":1108,"9906":1133,"9907":1115,"9908":1158,"9909":1127,"9910":1128,"9911":1155,"9912":1117,"9913":1081,"9914":1087,"9915":1103,"9916":1112,"9917":1136,"9918":1135,"9919":1134,"9920":1104,"9921":1099,"9922":1096,"9923":1141,"9924":1161,"9925":1093,"9926":1149,"9927":1118,"9928":1084,"9929":1108,"9930":1152,"9931":1141,"9932":1102,"9933":1088,"9934":1158,"9935":1156,"9936":1117,"9937":1096,"9938":1129,"9939":1149,"9940":1133,"9941":1098,"9942":1096,"9943":1128,"9944":1117,"9945":1133,"9946":1117,"9947":1096,"9948":1131,"9949":1128,"9950":1102,"9951":1141,"9952":1154,"9953":1117,"9954":1102,"9955":1141,"9956":1151,"9957":1147,"9958":1082,"9959":1127,"9960":1104,"9961":1150,"9962":1110,"9963":1159,"9964":1133,"9965":1093,"9966":1098,"9967":1154,"9968":1128,"9969":1121,"9970":1104,"9971":1085,"9972":1158,"9973":1115,"9974":1122,"9975":1102,"9976":1122,"9977":1154,"9978":1093,"9979":1090,"9980":1093,"9981":1102,"9982":1113,"9983":1110,"9984":1136,"9985":1133,"9986":1104,"9987":1095,"9988":1131,"9989":1135,"9990":1102,"9991":1124,"9992":1116,"9993":1100,"9994":1146,"9995":1128,"9996":1107,"9997":1133,"9998":1089,"9999":1127,"10000":1101,"10001":1136,"10002":1105,"10003":1159,"10004":1158,"10005":1108,"10006":1103,"10007":1154,"10008":1133,"10009":1121,"10010":1133,"10011":1123,"10012":1132,"10013":1103,"10014":1149,"10015":1102,"10016":1095,"10017":1133,"10018":1083,"10019":1088,"10020":1108,"10021":1115,"10022":1096,"10023":1102,"10024":1102,"10025":1117,"10026":1143,"10027":1117,"10028":1108,"10029":1132,"10030":1132,"10031":1149,"10032":1136,"10033":1118,"10034":1150,"10035":1110,"10036":1129,"10037":1084,"10038":1118,"10039":1093,"10040":1103,"10041":1129,"10042":1140,"10043":1135,"10044":1136,"10045":1112,"10046":1122,"10047":1138,"10048":1131,"10049":1087,"10050":1132,"10051":1127,"10052":1086,"10053":1146,"10054":1136,"10055":1131,"10056":1107,"10057":1150,"10058":1121,"10059":1135,"10060":1122,"10061":1151,"10062":1101,"10063":1085,"10064":1093,"10065":1128,"10066":1140,"10067":1104,"10068":1150,"10069":1119,"10070":1150,"10071":1083,"10072":1102,"10073":1139,"10074":1087,"10075":1124,"10076":1129,"10077":1104,"10078":1131,"10079":1123,"10080":1096,"10081":1121,"10082":1101,"10083":1095,"10084":1151,"10085":1127,"10086":1081,"10087":1151,"10088":1150,"10089":1102,"10090":1090,"10091":1083,"10092":1097,"10093":1144,"10094":1121,"10095":1102,"10096":1127,"10097":1117,"10098":1112,"10099":1146,"10100":1102,"10101":1129,"10102":1125,"10103":1124,"10104":1118,"10105":1084,"10106":1132,"10107":1155,"10108":1101,"10109":1132,"10110":1151,"10111":1087,"10112":1129,"10113":1137,"10114":1158,"10115":1151,"10116":1108,"10117":1117,"10118":1089,"10119":1149,"10120":1103,"10121":1120,"10122":1133,"10123":1126,"10124":1141,"10125":1143,"10126":1122,"10127":1143,"10128":1153,"10129":1104,"10130":1135,"10131":1095,"10132":1131,"10133":1089,"10134":1094,"10135":1161,"10136":1118,"10137":1112,"10138":1140,"10139":1135,"10140":1133,"10141":1112,"10142":1108,"10143":1146,"10144":1158,"10145":1149,"10146":1156,"10147":1117,"10148":1111,"10149":1118,"10150":1112,"10151":1113,"10152":1127,"10153":1118,"10154":1139,"10155":1093,"10156":1117,"10157":1093,"10158":1136,"10159":1112,"10160":1135,"10161":1101,"10162":1146,"10163":1150,"10164":1155,"10165":1135,"10166":1102,"10167":1120,"10168":1104,"10169":1158,"10170":1135,"10171":1119,"10172":1127,"10173":1136,"10174":1083,"10175":1144,"10176":1123,"10177":1150,"10178":1129,"10179":1141,"10180":1144,"10181":1141,"10182":1127,"10183":1083,"10184":1139,"10185":1093,"10186":1128,"10187":1093,"10188":1113,"10189":1135,"10190":1135,"10191":1142,"10192":1089,"10193":1147,"10194":1132,"10195":1121,"10196":1132,"10197":1117,"10198":1126,"10199":1093,"10200":1136,"10201":1154,"10202":1118,"10203":1135,"10204":1154,"10205":1144,"10206":1093,"10207":1158,"10208":1133,"10209":1084,"10210":1121,"10211":1125,"10212":1160,"10213":1103,"10214":1158,"10215":1143,"10216":1102,"10217":1136,"10218":1140,"10219":1133,"10220":1123,"10221":1138,"10222":1131,"10223":1127,"10224":1117,"10225":1135,"10226":1083,"10227":1156,"10228":1086,"10229":1131,"10230":1110,"10231":1141,"10232":1127,"10233":1104,"10234":1126,"10235":1139,"10236":1128,"10237":1123,"10238":1154,"10239":1141,"10240":1097,"10241":1118,"10242":1130,"10243":1102,"10244":1144,"10245":1136,"10246":1153,"10247":1088,"10248":1093,"10249":1084,"10250":1158,"10251":1150,"10252":1102,"10253":1157,"10254":1105,"10255":1155,"10256":1123,"10257":1136,"10258":1129,"10259":1117,"10260":1124,"10261":1107,"10262":1150,"10263":1154,"10264":1147,"10265":1102,"10266":1158,"10267":1086,"10268":1117,"10269":1146,"10270":1096,"10271":1089,"10272":1147,"10273":1141,"10274":1141,"10275":1155,"10276":1161,"10277":1156,"10278":1118,"10279":1156,"10280":1118,"10281":1148,"10282":1150,"10283":1159,"10284":1131,"10285":1153,"10286":1154,"10287":1130,"10288":1135,"10289":1114,"10290":1155,"10291":1091,"10292":1146,"10293":1133,"10294":1150,"10295":1108,"10296":1150,"10297":1132,"10298":1096,"10299":1139,"10300":1089,"10301":1087,"10302":1117,"10303":1104,"10304":1150,"10305":1158,"10306":1083,"10307":1106,"10308":1087,"10309":1158,"10310":1091,"10311":1142,"10312":1141,"10313":1108,"10314":1106,"10315":1142,"10316":1103,"10317":1123,"10318":1092,"10319":1108,"10320":1158,"10321":1131,"10322":1086,"10323":1155,"10324":1153,"10325":1150,"10326":1136,"10327":1147,"10328":1131,"10329":1158,"10330":1083,"10331":1095,"10332":1150,"10333":1103,"10334":1145,"10335":1087,"10336":1128,"10337":1136,"10338":1155,"10339":1131,"10340":1154,"10341":1086,"10342":1147,"10343":1146,"10344":1115,"10345":1127,"10346":1095,"10347":1132,"10348":1115,"10349":1110,"10350":1131,"10351":1133,"10352":1151,"10353":1083,"10354":1117,"10355":1136,"10356":1117,"10357":1087,"10358":1164,"10359":1165,"10360":1166,"10361":1164,"10362":1162,"10363":1163,"10364":1167,"10365":1167,"10366":1167,"10367":1164,"10368":1163,"10369":1164,"10370":1162,"10371":1167,"10372":1167,"10373":1165,"10374":1164,"10375":1164,"10376":1165,"10377":1167,"10378":1165,"10379":1167,"10380":1164,"10381":1167,"10382":1162,"10383":1167,"10384":1166,"10385":1165,"10386":1164,"10387":1163,"10388":1163,"10389":1164,"10390":1167,"10391":1164,"10392":1167,"10393":1167,"10394":1164,"10395":1167,"10396":1164,"10397":1167,"10398":1166,"10399":1164,"10400":1166,"10401":1163,"10402":1162,"10403":1162,"10404":1163,"10405":1167,"10406":1166,"10407":1168,"10408":1167,"10409":1166,"10410":1164,"10411":1165,"10412":1167,"10413":1165,"10414":1164,"10415":1162,"10416":1164,"10417":1163,"10418":1162,"10419":1166,"10420":1167,"10421":1168,"10422":1162,"10423":1167,"10424":1163,"10425":1167,"10426":1165,"10427":1164,"10428":1162,"10429":1163,"10430":1163,"10431":1166,"10432":1166,"10433":1164,"10434":1164,"10435":1167,"10436":1166,"10437":1163,"10438":1167,"10439":1175,"10440":1172,"10441":1173,"10442":1183,"10443":1173,"10444":1170,"10445":1169,"10446":1193,"10447":1172,"10448":1172,"10449":1173,"10450":1176,"10451":1169,"10452":1187,"10453":1197,"10454":1195,"10455":1181,"10456":1185,"10457":1183,"10458":1169,"10459":1196,"10460":1173,"10461":1192,"10462":1169,"10463":1174,"10464":1177,"10465":1193,"10466":1181,"10467":1185,"10468":1176,"10469":1172,"10470":1187,"10471":1178,"10472":1179,"10473":1187,"10474":1195,"10475":1184,"10476":1193,"10477":1176,"10478":1194,"10479":1171,"10480":1173,"10481":1172,"10482":1186,"10483":1198,"10484":1191,"10485":1172,"10486":1180,"10487":1190,"10488":1190,"10489":1197,"10490":1190,"10491":1174,"10492":1171,"10493":1193,"10494":1193,"10495":1175,"10496":1189,"10497":1187,"10498":1195,"10499":1187,"10500":1170,"10501":1185,"10502":1186,"10503":1174,"10504":1173,"10505":1192,"10506":1183,"10507":1190,"10508":1193,"10509":1169,"10510":1171,"10511":1172,"10512":1174,"10513":1169,"10514":1184,"10515":1178,"10516":1185,"10517":1194,"10518":1181,"10519":1193,"10520":1187,"10521":1194,"10522":1169,"10523":1197,"10524":1193,"10525":1181,"10526":1196,"10527":1194,"10528":1190,"10529":1172,"10530":1186,"10531":1178,"10532":1173,"10533":1196,"10534":1184,"10535":1175,"10536":1183,"10537":1181,"10538":1170,"10539":1169,"10540":1183,"10541":1196,"10542":1184,"10543":1193,"10544":1196,"10545":1185,"10546":1185,"10547":1178,"10548":1172,"10549":1197,"10550":1172,"10551":1186,"10552":1194,"10553":1183,"10554":1183,"10555":1178,"10556":1192,"10557":1183,"10558":1173,"10559":1192,"10560":1177,"10561":1178,"10562":1197,"10563":1174,"10564":1193,"10565":1187,"10566":1176,"10567":1185,"10568":1192,"10569":1178,"10570":1172,"10571":1178,"10572":1177,"10573":1192,"10574":1174,"10575":1170,"10576":1179,"10577":1192,"10578":1178,"10579":1176,"10580":1193,"10581":1193,"10582":1194,"10583":1185,"10584":1193,"10585":1183,"10586":1190,"10587":1186,"10588":1173,"10589":1173,"10590":1171,"10591":1191,"10592":1186,"10593":1172,"10594":1190,"10595":1186,"10596":1193,"10597":1173,"10598":1194,"10599":1183,"10600":1173,"10601":1190,"10602":1178,"10603":1178,"10604":1195,"10605":1192,"10606":1183,"10607":1175,"10608":1186,"10609":1187,"10610":1178,"10611":1183,"10612":1182,"10613":1199,"10614":1181,"10615":1172,"10616":1190,"10617":1192,"10618":1181,"10619":1186,"10620":1193,"10621":1183,"10622":1193,"10623":1173,"10624":1196,"10625":1190,"10626":1193,"10627":1184,"10628":1172,"10629":1173,"10630":1196,"10631":1173,"10632":1172,"10633":1173,"10634":1176,"10635":1178,"10636":1176,"10637":1189,"10638":1190,"10639":1172,"10640":1183,"10641":1193,"10642":1178,"10643":1188,"10644":1188,"10645":1179,"10646":1181,"10647":1193,"10648":1172,"10649":1173,"10650":1178,"10651":1173,"10652":1186,"10653":1185,"10654":1195,"10655":1169,"10656":1191,"10657":1186,"10658":1192,"10659":1170,"10660":1178,"10661":1181,"10662":1196,"10663":1178,"10664":1191,"10665":1179,"10666":1196,"10667":1183,"10668":1187,"10669":1183,"10670":1191,"10671":1183,"10672":1176,"10673":1170,"10674":1177,"10675":1169,"10676":1186,"10677":1173,"10678":1188,"10679":1176,"10680":1169,"10681":1184,"10682":1169,"10683":1173,"10684":1180,"10685":1178,"10686":1194,"10687":1193,"10688":1194,"10689":1193,"10690":1192,"10691":1179,"10692":1178,"10693":1175,"10694":1191,"10695":1195,"10696":1174,"10697":1200,"10698":1169,"10699":1183,"10700":1174,"10701":1186,"10702":1183,"10703":1169,"10704":1169,"10705":1169,"10706":1174,"10707":1192,"10708":1174,"10709":1195,"10710":1171,"10711":1179,"10712":1173,"10713":1219,"10714":1250,"10715":1218,"10716":1241,"10717":1336,"10718":1322,"10719":1235,"10720":1231,"10721":1219,"10722":1256,"10723":1347,"10724":1248,"10725":1263,"10726":1217,"10727":1289,"10728":1326,"10729":1328,"10730":1363,"10731":1232,"10732":1295,"10733":1225,"10734":1240,"10735":1371,"10736":1301,"10737":1303,"10738":1287,"10739":1279,"10740":1312,"10741":1285,"10742":1346,"10743":1294,"10744":1378,"10745":1279,"10746":1225,"10747":1260,"10748":1326,"10749":1361,"10750":1337,"10751":1338,"10752":1367,"10753":1226,"10754":1374,"10755":1274,"10756":1203,"10757":1223,"10758":1267,"10759":1345,"10760":1320,"10761":1353,"10762":1278,"10763":1383,"10764":1277,"10765":1238,"10766":1354,"10767":1351,"10768":1261,"10769":1292,"10770":1281,"10771":1227,"10772":1220,"10773":1243,"10774":1237,"10775":1275,"10776":1257,"10777":1279,"10778":1308,"10779":1269,"10780":1256,"10781":1304,"10782":1328,"10783":1340,"10784":1230,"10785":1219,"10786":1286,"10787":1383,"10788":1310,"10789":1261,"10790":1324,"10791":1303,"10792":1364,"10793":1334,"10794":1259,"10795":1222,"10796":1224,"10797":1347,"10798":1312,"10799":1362,"10800":1276,"10801":1323,"10802":1337,"10803":1210,"10804":1367,"10805":1342,"10806":1385,"10807":1261,"10808":1286,"10809":1217,"10810":1311,"10811":1249,"10812":1306,"10813":1309,"10814":1281,"10815":1346,"10816":1280,"10817":1297,"10818":1296,"10819":1314,"10820":1247,"10821":1309,"10822":1217,"10823":1210,"10824":1343,"10825":1310,"10826":1217,"10827":1353,"10828":1234,"10829":1384,"10830":1378,"10831":1259,"10832":1360,"10833":1242,"10834":1239,"10835":1244,"10836":1227,"10837":1277,"10838":1314,"10839":1218,"10840":1331,"10841":1345,"10842":1252,"10843":1291,"10844":1377,"10845":1361,"10846":1296,"10847":1238,"10848":1271,"10849":1346,"10850":1218,"10851":1367,"10852":1319,"10853":1262,"10854":1383,"10855":1248,"10856":1382,"10857":1384,"10858":1232,"10859":1202,"10860":1384,"10861":1227,"10862":1258,"10863":1374,"10864":1297,"10865":1253,"10866":1311,"10867":1294,"10868":1207,"10869":1340,"10870":1225,"10871":1308,"10872":1310,"10873":1206,"10874":1224,"10875":1217,"10876":1217,"10877":1268,"10878":1267,"10879":1365,"10880":1304,"10881":1242,"10882":1259,"10883":1286,"10884":1363,"10885":1314,"10886":1297,"10887":1320,"10888":1290,"10889":1339,"10890":1290,"10891":1359,"10892":1254,"10893":1271,"10894":1226,"10895":1294,"10896":1239,"10897":1327,"10898":1336,"10899":1231,"10900":1284,"10901":1213,"10902":1282,"10903":1286,"10904":1338,"10905":1272,"10906":1350,"10907":1364,"10908":1205,"10909":1318,"10910":1285,"10911":1208,"10912":1287,"10913":1263,"10914":1368,"10915":1256,"10916":1299,"10917":1237,"10918":1300,"10919":1298,"10920":1319,"10921":1382,"10922":1320,"10923":1227,"10924":1266,"10925":1339,"10926":1244,"10927":1272,"10928":1260,"10929":1352,"10930":1291,"10931":1216,"10932":1316,"10933":1350,"10934":1318,"10935":1209,"10936":1268,"10937":1213,"10938":1365,"10939":1331,"10940":1281,"10941":1365,"10942":1254,"10943":1334,"10944":1352,"10945":1279,"10946":1236,"10947":1360,"10948":1256,"10949":1354,"10950":1303,"10951":1322,"10952":1299,"10953":1283,"10954":1325,"10955":1273,"10956":1225,"10957":1239,"10958":1236,"10959":1305,"10960":1255,"10961":1357,"10962":1243,"10963":1212,"10964":1266,"10965":1273,"10966":1268,"10967":1208,"10968":1201,"10969":1232,"10970":1243,"10971":1290,"10972":1353,"10973":1339,"10974":1228,"10975":1321,"10976":1356,"10977":1341,"10978":1214,"10979":1257,"10980":1273,"10981":1292,"10982":1318,"10983":1254,"10984":1334,"10985":1210,"10986":1314,"10987":1320,"10988":1318,"10989":1277,"10990":1354,"10991":1279,"10992":1333,"10993":1307,"10994":1384,"10995":1341,"10996":1238,"10997":1340,"10998":1304,"10999":1370,"11000":1279,"11001":1221,"11002":1354,"11003":1294,"11004":1345,"11005":1247,"11006":1262,"11007":1226,"11008":1375,"11009":1242,"11010":1223,"11011":1371,"11012":1243,"11013":1264,"11014":1319,"11015":1237,"11016":1347,"11017":1343,"11018":1338,"11019":1243,"11020":1378,"11021":1370,"11022":1337,"11023":1301,"11024":1378,"11025":1227,"11026":1235,"11027":1230,"11028":1284,"11029":1320,"11030":1366,"11031":1230,"11032":1353,"11033":1347,"11034":1322,"11035":1236,"11036":1237,"11037":1278,"11038":1285,"11039":1253,"11040":1306,"11041":1245,"11042":1288,"11043":1317,"11044":1221,"11045":1313,"11046":1345,"11047":1353,"11048":1213,"11049":1348,"11050":1352,"11051":1334,"11052":1255,"11053":1276,"11054":1233,"11055":1359,"11056":1242,"11057":1215,"11058":1261,"11059":1218,"11060":1214,"11061":1342,"11062":1284,"11063":1363,"11064":1284,"11065":1225,"11066":1307,"11067":1310,"11068":1246,"11069":1292,"11070":1331,"11071":1342,"11072":1349,"11073":1202,"11074":1231,"11075":1266,"11076":1380,"11077":1261,"11078":1297,"11079":1203,"11080":1284,"11081":1357,"11082":1229,"11083":1236,"11084":1304,"11085":1377,"11086":1290,"11087":1321,"11088":1292,"11089":1278,"11090":1281,"11091":1212,"11092":1327,"11093":1203,"11094":1297,"11095":1379,"11096":1377,"11097":1362,"11098":1217,"11099":1218,"11100":1326,"11101":1316,"11102":1342,"11103":1266,"11104":1207,"11105":1259,"11106":1311,"11107":1338,"11108":1310,"11109":1239,"11110":1238,"11111":1270,"11112":1229,"11113":1269,"11114":1239,"11115":1241,"11116":1288,"11117":1210,"11118":1362,"11119":1365,"11120":1257,"11121":1314,"11122":1260,"11123":1206,"11124":1254,"11125":1379,"11126":1380,"11127":1288,"11128":1271,"11129":1318,"11130":1224,"11131":1268,"11132":1304,"11133":1311,"11134":1316,"11135":1279,"11136":1307,"11137":1329,"11138":1328,"11139":1298,"11140":1212,"11141":1209,"11142":1337,"11143":1309,"11144":1205,"11145":1202,"11146":1343,"11147":1295,"11148":1365,"11149":1372,"11150":1335,"11151":1355,"11152":1221,"11153":1294,"11154":1246,"11155":1333,"11156":1223,"11157":1215,"11158":1377,"11159":1349,"11160":1381,"11161":1380,"11162":1359,"11163":1353,"11164":1275,"11165":1239,"11166":1344,"11167":1349,"11168":1271,"11169":1349,"11170":1265,"11171":1252,"11172":1288,"11173":1372,"11174":1368,"11175":1332,"11176":1342,"11177":1246,"11178":1274,"11179":1331,"11180":1376,"11181":1329,"11182":1311,"11183":1255,"11184":1291,"11185":1342,"11186":1233,"11187":1346,"11188":1259,"11189":1227,"11190":1312,"11191":1336,"11192":1351,"11193":1364,"11194":1315,"11195":1365,"11196":1256,"11197":1238,"11198":1245,"11199":1275,"11200":1228,"11201":1296,"11202":1294,"11203":1375,"11204":1336,"11205":1372,"11206":1328,"11207":1318,"11208":1269,"11209":1361,"11210":1272,"11211":1288,"11212":1285,"11213":1246,"11214":1238,"11215":1244,"11216":1328,"11217":1293,"11218":1331,"11219":1367,"11220":1275,"11221":1315,"11222":1364,"11223":1326,"11224":1336,"11225":1247,"11226":1219,"11227":1244,"11228":1251,"11229":1286,"11230":1221,"11231":1233,"11232":1215,"11233":1287,"11234":1320,"11235":1230,"11236":1350,"11237":1299,"11238":1308,"11239":1221,"11240":1327,"11241":1363,"11242":1369,"11243":1208,"11244":1286,"11245":1302,"11246":1358,"11247":1234,"11248":1373,"11249":1208,"11250":1232,"11251":1336,"11252":1265,"11253":1285,"11254":1349,"11255":1221,"11256":1257,"11257":1359,"11258":1300,"11259":1365,"11260":1229,"11261":1204,"11262":1299,"11263":1323,"11264":1319,"11265":1284,"11266":1377,"11267":1225,"11268":1237,"11269":1220,"11270":1381,"11271":1356,"11272":1328,"11273":1339,"11274":1272,"11275":1275,"11276":1261,"11277":1274,"11278":1307,"11279":1319,"11280":1247,"11281":1329,"11282":1295,"11283":1308,"11284":1332,"11285":1228,"11286":1372,"11287":1337,"11288":1379,"11289":1247,"11290":1209,"11291":1365,"11292":1378,"11293":1385,"11294":1272,"11295":1267,"11296":1308,"11297":1223,"11298":1301,"11299":1377,"11300":1256,"11301":1346,"11302":1385,"11303":1227,"11304":1296,"11305":1366,"11306":1340,"11307":1235,"11308":1223,"11309":1299,"11310":1272,"11311":1253,"11312":1377,"11313":1375,"11314":1252,"11315":1302,"11316":1251,"11317":1340,"11318":1207,"11319":1268,"11320":1274,"11321":1364,"11322":1274,"11323":1248,"11324":1289,"11325":1240,"11326":1224,"11327":1363,"11328":1281,"11329":1263,"11330":1203,"11331":1327,"11332":1217,"11333":1304,"11334":1269,"11335":1252,"11336":1381,"11337":1299,"11338":1282,"11339":1375,"11340":1231,"11341":1330,"11342":1313,"11343":1204,"11344":1207,"11345":1350,"11346":1271,"11347":1350,"11348":1299,"11349":1244,"11350":1347,"11351":1206,"11352":1383,"11353":1211,"11354":1258,"11355":1247,"11356":1313,"11357":1383,"11358":1222,"11359":1321,"11360":1347,"11361":1394,"11362":1391,"11363":1398,"11364":1389,"11365":1389,"11366":1394,"11367":1398,"11368":1386,"11369":1387,"11370":1397,"11371":1398,"11372":1389,"11373":1393,"11374":1399,"11375":1393,"11376":1399,"11377":1389,"11378":1395,"11379":1389,"11380":1397,"11381":1398,"11382":1396,"11383":1388,"11384":1394,"11385":1395,"11386":1394,"11387":1389,"11388":1389,"11389":1397,"11390":1399,"11391":1392,"11392":1390,"11393":1388,"11394":1391,"11395":1394,"11396":1389,"11397":1390,"11398":1389,"11399":1394,"11400":1389,"11401":1388,"11402":1399,"11403":1390,"11404":1398,"11405":1399,"11406":1397,"11407":1389,"11408":1398,"11409":1391,"11410":1397,"11411":1389,"11412":1399,"11413":1387,"11414":1389,"11415":1397,"11416":1387,"11417":1394,"11418":1399,"11419":1399,"11420":1397,"11421":1394,"11422":1398,"11423":1394,"11424":1393,"11425":1391,"11426":1389,"11427":1398,"11428":1396,"11429":1388,"11430":1391,"11431":1394,"11432":1398,"11433":1394,"11434":1387,"11435":1389,"11436":1397,"11437":1393,"11438":1389,"11439":1398,"11440":1398,"11441":1395,"11442":1387,"11443":1394,"11444":1506,"11445":1476,"11446":1487,"11447":1452,"11448":1513,"11449":1443,"11450":1471,"11451":1512,"11452":1471,"11453":1501,"11454":1516,"11455":1504,"11456":1405,"11457":1504,"11458":1404,"11459":1477,"11460":1484,"11461":1418,"11462":1460,"11463":1511,"11464":1462,"11465":1462,"11466":1484,"11467":1424,"11468":1475,"11469":1516,"11470":1471,"11471":1414,"11472":1466,"11473":1488,"11474":1449,"11475":1482,"11476":1499,"11477":1428,"11478":1487,"11479":1476,"11480":1488,"11481":1433,"11482":1444,"11483":1460,"11484":1494,"11485":1414,"11486":1489,"11487":1425,"11488":1469,"11489":1481,"11490":1456,"11491":1414,"11492":1436,"11493":1423,"11494":1462,"11495":1425,"11496":1452,"11497":1434,"11498":1428,"11499":1426,"11500":1457,"11501":1495,"11502":1488,"11503":1416,"11504":1457,"11505":1443,"11506":1502,"11507":1495,"11508":1419,"11509":1440,"11510":1405,"11511":1463,"11512":1443,"11513":1501,"11514":1505,"11515":1468,"11516":1443,"11517":1509,"11518":1442,"11519":1436,"11520":1493,"11521":1463,"11522":1479,"11523":1472,"11524":1482,"11525":1457,"11526":1512,"11527":1433,"11528":1461,"11529":1455,"11530":1465,"11531":1444,"11532":1416,"11533":1462,"11534":1432,"11535":1456,"11536":1497,"11537":1455,"11538":1466,"11539":1420,"11540":1472,"11541":1495,"11542":1488,"11543":1419,"11544":1433,"11545":1484,"11546":1416,"11547":1497,"11548":1413,"11549":1427,"11550":1451,"11551":1433,"11552":1511,"11553":1436,"11554":1500,"11555":1463,"11556":1455,"11557":1436,"11558":1475,"11559":1472,"11560":1488,"11561":1507,"11562":1501,"11563":1443,"11564":1461,"11565":1506,"11566":1505,"11567":1505,"11568":1421,"11569":1509,"11570":1420,"11571":1504,"11572":1452,"11573":1446,"11574":1414,"11575":1451,"11576":1442,"11577":1478,"11578":1484,"11579":1453,"11580":1443,"11581":1444,"11582":1482,"11583":1428,"11584":1470,"11585":1468,"11586":1488,"11587":1512,"11588":1516,"11589":1435,"11590":1466,"11591":1434,"11592":1410,"11593":1473,"11594":1505,"11595":1504,"11596":1456,"11597":1504,"11598":1484,"11599":1463,"11600":1426,"11601":1414,"11602":1423,"11603":1463,"11604":1488,"11605":1411,"11606":1415,"11607":1512,"11608":1460,"11609":1426,"11610":1477,"11611":1511,"11612":1458,"11613":1438,"11614":1425,"11615":1454,"11616":1466,"11617":1458,"11618":1430,"11619":1463,"11620":1471,"11621":1453,"11622":1484,"11623":1504,"11624":1426,"11625":1503,"11626":1405,"11627":1493,"11628":1493,"11629":1414,"11630":1426,"11631":1415,"11632":1486,"11633":1509,"11634":1456,"11635":1443,"11636":1400,"11637":1443,"11638":1450,"11639":1471,"11640":1415,"11641":1515,"11642":1426,"11643":1485,"11644":1472,"11645":1480,"11646":1506,"11647":1466,"11648":1472,"11649":1445,"11650":1511,"11651":1411,"11652":1476,"11653":1403,"11654":1448,"11655":1455,"11656":1440,"11657":1412,"11658":1479,"11659":1466,"11660":1507,"11661":1440,"11662":1454,"11663":1420,"11664":1441,"11665":1446,"11666":1408,"11667":1414,"11668":1448,"11669":1426,"11670":1511,"11671":1506,"11672":1426,"11673":1505,"11674":1444,"11675":1506,"11676":1422,"11677":1459,"11678":1434,"11679":1438,"11680":1400,"11681":1445,"11682":1446,"11683":1461,"11684":1475,"11685":1512,"11686":1415,"11687":1481,"11688":1404,"11689":1484,"11690":1405,"11691":1494,"11692":1480,"11693":1423,"11694":1488,"11695":1491,"11696":1453,"11697":1511,"11698":1408,"11699":1497,"11700":1479,"11701":1454,"11702":1488,"11703":1462,"11704":1412,"11705":1413,"11706":1460,"11707":1401,"11708":1511,"11709":1411,"11710":1476,"11711":1473,"11712":1453,"11713":1463,"11714":1478,"11715":1488,"11716":1503,"11717":1419,"11718":1479,"11719":1462,"11720":1512,"11721":1472,"11722":1410,"11723":1504,"11724":1425,"11725":1420,"11726":1495,"11727":1444,"11728":1420,"11729":1494,"11730":1416,"11731":1511,"11732":1514,"11733":1504,"11734":1420,"11735":1504,"11736":1478,"11737":1503,"11738":1480,"11739":1488,"11740":1436,"11741":1455,"11742":1420,"11743":1471,"11744":1513,"11745":1438,"11746":1504,"11747":1483,"11748":1400,"11749":1466,"11750":1457,"11751":1505,"11752":1484,"11753":1433,"11754":1462,"11755":1488,"11756":1492,"11757":1422,"11758":1404,"11759":1401,"11760":1428,"11761":1480,"11762":1428,"11763":1484,"11764":1457,"11765":1498,"11766":1511,"11767":1420,"11768":1405,"11769":1426,"11770":1414,"11771":1401,"11772":1440,"11773":1451,"11774":1512,"11775":1481,"11776":1472,"11777":1426,"11778":1462,"11779":1458,"11780":1488,"11781":1490,"11782":1434,"11783":1436,"11784":1488,"11785":1416,"11786":1461,"11787":1484,"11788":1462,"11789":1445,"11790":1426,"11791":1440,"11792":1516,"11793":1456,"11794":1460,"11795":1433,"11796":1423,"11797":1505,"11798":1426,"11799":1477,"11800":1434,"11801":1512,"11802":1512,"11803":1455,"11804":1453,"11805":1455,"11806":1443,"11807":1502,"11808":1512,"11809":1515,"11810":1407,"11811":1448,"11812":1501,"11813":1414,"11814":1418,"11815":1451,"11816":1464,"11817":1405,"11818":1411,"11819":1461,"11820":1509,"11821":1464,"11822":1428,"11823":1512,"11824":1411,"11825":1462,"11826":1476,"11827":1501,"11828":1400,"11829":1407,"11830":1460,"11831":1426,"11832":1415,"11833":1503,"11834":1445,"11835":1451,"11836":1466,"11837":1507,"11838":1516,"11839":1488,"11840":1452,"11841":1405,"11842":1466,"11843":1481,"11844":1420,"11845":1472,"11846":1512,"11847":1443,"11848":1507,"11849":1487,"11850":1460,"11851":1481,"11852":1478,"11853":1433,"11854":1503,"11855":1421,"11856":1496,"11857":1473,"11858":1453,"11859":1463,"11860":1478,"11861":1464,"11862":1516,"11863":1463,"11864":1502,"11865":1438,"11866":1491,"11867":1421,"11868":1419,"11869":1455,"11870":1488,"11871":1455,"11872":1414,"11873":1511,"11874":1472,"11875":1408,"11876":1452,"11877":1482,"11878":1444,"11879":1423,"11880":1504,"11881":1400,"11882":1506,"11883":1474,"11884":1514,"11885":1501,"11886":1493,"11887":1514,"11888":1482,"11889":1488,"11890":1460,"11891":1434,"11892":1425,"11893":1462,"11894":1452,"11895":1419,"11896":1427,"11897":1477,"11898":1505,"11899":1456,"11900":1450,"11901":1512,"11902":1417,"11903":1491,"11904":1420,"11905":1413,"11906":1454,"11907":1400,"11908":1481,"11909":1480,"11910":1504,"11911":1453,"11912":1423,"11913":1473,"11914":1420,"11915":1494,"11916":1437,"11917":1454,"11918":1501,"11919":1450,"11920":1453,"11921":1479,"11922":1408,"11923":1506,"11924":1499,"11925":1478,"11926":1504,"11927":1412,"11928":1422,"11929":1466,"11930":1409,"11931":1439,"11932":1476,"11933":1455,"11934":1466,"11935":1488,"11936":1443,"11937":1442,"11938":1481,"11939":1439,"11940":1418,"11941":1452,"11942":1411,"11943":1433,"11944":1405,"11945":1509,"11946":1504,"11947":1442,"11948":1461,"11949":1443,"11950":1426,"11951":1503,"11952":1506,"11953":1479,"11954":1482,"11955":1412,"11956":1431,"11957":1507,"11958":1453,"11959":1511,"11960":1463,"11961":1442,"11962":1434,"11963":1444,"11964":1506,"11965":1463,"11966":1479,"11967":1503,"11968":1428,"11969":1479,"11970":1472,"11971":1512,"11972":1466,"11973":1462,"11974":1488,"11975":1501,"11976":1461,"11977":1450,"11978":1462,"11979":1513,"11980":1489,"11981":1445,"11982":1476,"11983":1455,"11984":1426,"11985":1464,"11986":1465,"11987":1453,"11988":1473,"11989":1412,"11990":1507,"11991":1488,"11992":1447,"11993":1405,"11994":1480,"11995":1433,"11996":1415,"11997":1494,"11998":1420,"11999":1511,"12000":1506,"12001":1436,"12002":1497,"12003":1506,"12004":1496,"12005":1433,"12006":1440,"12007":1419,"12008":1403,"12009":1414,"12010":1434,"12011":1453,"12012":1504,"12013":1512,"12014":1501,"12015":1480,"12016":1494,"12017":1443,"12018":1511,"12019":1476,"12020":1414,"12021":1451,"12022":1466,"12023":1426,"12024":1494,"12025":1491,"12026":1473,"12027":1501,"12028":1510,"12029":1454,"12030":1502,"12031":1512,"12032":1407,"12033":1501,"12034":1405,"12035":1452,"12036":1406,"12037":1443,"12038":1512,"12039":1422,"12040":1418,"12041":1449,"12042":1422,"12043":1478,"12044":1455,"12045":1466,"12046":1451,"12047":1462,"12048":1477,"12049":1423,"12050":1411,"12051":1488,"12052":1504,"12053":1479,"12054":1512,"12055":1464,"12056":1516,"12057":1504,"12058":1472,"12059":1456,"12060":1484,"12061":1486,"12062":1451,"12063":1411,"12064":1452,"12065":1407,"12066":1405,"12067":1489,"12068":1476,"12069":1451,"12070":1451,"12071":1404,"12072":1505,"12073":1421,"12074":1440,"12075":1462,"12076":1505,"12077":1459,"12078":1409,"12079":1479,"12080":1411,"12081":1509,"12082":1442,"12083":1481,"12084":1412,"12085":1422,"12086":1504,"12087":1497,"12088":1501,"12089":1501,"12090":1509,"12091":1484,"12092":1445,"12093":1436,"12094":1452,"12095":1405,"12096":1479,"12097":1511,"12098":1440,"12099":1423,"12100":1419,"12101":1405,"12102":1460,"12103":1419,"12104":1462,"12105":1426,"12106":1479,"12107":1452,"12108":1501,"12109":1466,"12110":1488,"12111":1491,"12112":1436,"12113":1504,"12114":1504,"12115":1472,"12116":1506,"12117":1506,"12118":1473,"12119":1418,"12120":1493,"12121":1488,"12122":1503,"12123":1433,"12124":1477,"12125":1504,"12126":1460,"12127":1512,"12128":1443,"12129":1452,"12130":1419,"12131":1468,"12132":1512,"12133":1418,"12134":1442,"12135":1454,"12136":1504,"12137":1415,"12138":1422,"12139":1509,"12140":1479,"12141":1443,"12142":1471,"12143":1412,"12144":1443,"12145":1460,"12146":1482,"12147":1438,"12148":1401,"12149":1414,"12150":1423,"12151":1494,"12152":1420,"12153":1440,"12154":1461,"12155":1429,"12156":1406,"12157":1483,"12158":1445,"12159":1483,"12160":1472,"12161":1493,"12162":1450,"12163":1453,"12164":1436,"12165":1406,"12166":1486,"12167":1476,"12168":1452,"12169":1496,"12170":1405,"12171":1461,"12172":1501,"12173":1488,"12174":1511,"12175":1413,"12176":1420,"12177":1484,"12178":1476,"12179":1407,"12180":1466,"12181":1436,"12182":1445,"12183":1433,"12184":1419,"12185":1512,"12186":1444,"12187":1475,"12188":1411,"12189":1428,"12190":1483,"12191":1404,"12192":1453,"12193":1479,"12194":1406,"12195":1484,"12196":1511,"12197":1481,"12198":1512,"12199":1420,"12200":1401,"12201":1481,"12202":1511,"12203":1484,"12204":1488,"12205":1405,"12206":1511,"12207":1509,"12208":1412,"12209":1437,"12210":1405,"12211":1426,"12212":1501,"12213":1419,"12214":1440,"12215":1505,"12216":1455,"12217":1480,"12218":1426,"12219":1456,"12220":1506,"12221":1423,"12222":1460,"12223":1511,"12224":1457,"12225":1473,"12226":1453,"12227":1431,"12228":1423,"12229":1450,"12230":1506,"12231":1407,"12232":1475,"12233":1450,"12234":1451,"12235":1455,"12236":1418,"12237":1480,"12238":1476,"12239":1441,"12240":1498,"12241":1456,"12242":1479,"12243":1501,"12244":1489,"12245":1415,"12246":1443,"12247":1471,"12248":1504,"12249":1422,"12250":1451,"12251":1511,"12252":1505,"12253":1443,"12254":1484,"12255":1410,"12256":1504,"12257":1466,"12258":1516,"12259":1457,"12260":1420,"12261":1457,"12262":1494,"12263":1460,"12264":1460,"12265":1408,"12266":1425,"12267":1442,"12268":1488,"12269":1408,"12270":1426,"12271":1504,"12272":1480,"12273":1421,"12274":1488,"12275":1416,"12276":1414,"12277":1411,"12278":1408,"12279":1512,"12280":1443,"12281":1460,"12282":1509,"12283":1411,"12284":1501,"12285":1452,"12286":1479,"12287":1481,"12288":1428,"12289":1420,"12290":1473,"12291":1449,"12292":1460,"12293":1508,"12294":1503,"12295":1460,"12296":1420,"12297":1502,"12298":1467,"12299":1451,"12300":1421,"12301":1406,"12302":1494,"12303":1445,"12304":1446,"12305":1459,"12306":1466,"12307":1501,"12308":1483,"12309":1493,"12310":1484,"12311":1405,"12312":1443,"12313":1460,"12314":1406,"12315":1471,"12316":1419,"12317":1473,"12318":1404,"12319":1453,"12320":1462,"12321":1479,"12322":1454,"12323":1479,"12324":1484,"12325":1500,"12326":1453,"12327":1488,"12328":1492,"12329":1456,"12330":1431,"12331":1488,"12332":1464,"12333":1461,"12334":1428,"12335":1443,"12336":1420,"12337":1465,"12338":1497,"12339":1445,"12340":1403,"12341":1465,"12342":1424,"12343":1512,"12344":1512,"12345":1460,"12346":1428,"12347":1420,"12348":1405,"12349":1486,"12350":1493,"12351":1492,"12352":1505,"12353":1479,"12354":1471,"12355":1458,"12356":1440,"12357":1462,"12358":1443,"12359":1423,"12360":1446,"12361":1437,"12362":1495,"12363":1489,"12364":1476,"12365":1411,"12366":1463,"12367":1488,"12368":1472,"12369":1444,"12370":1453,"12371":1505,"12372":1440,"12373":1426,"12374":1504,"12375":1483,"12376":1444,"12377":1487,"12378":1512,"12379":1511,"12380":1419,"12381":1504,"12382":1421,"12383":1449,"12384":1469,"12385":1412,"12386":1488,"12387":1479,"12388":1444,"12389":1503,"12390":1444,"12391":1406,"12392":1406,"12393":1454,"12394":1443,"12395":1471,"12396":1425,"12397":1426,"12398":1444,"12399":1475,"12400":1404,"12401":1478,"12402":1488,"12403":1482,"12404":1475,"12405":1404,"12406":1467,"12407":1414,"12408":1420,"12409":1512,"12410":1462,"12411":1444,"12412":1427,"12413":1436,"12414":1454,"12415":1504,"12416":1493,"12417":1469,"12418":1444,"12419":1474,"12420":1421,"12421":1419,"12422":1415,"12423":1443,"12424":1404,"12425":1506,"12426":1504,"12427":1433,"12428":1512,"12429":1506,"12430":1477,"12431":1461,"12432":1485,"12433":1408,"12434":1453,"12435":1412,"12436":1510,"12437":1411,"12438":1449,"12439":1460,"12440":1411,"12441":1516,"12442":1400,"12443":1455,"12444":1403,"12445":1428,"12446":1479,"12447":1445,"12448":1495,"12449":1401,"12450":1448,"12451":1440,"12452":1420,"12453":1405,"12454":1513,"12455":1431,"12456":1455,"12457":1450,"12458":1504,"12459":1402,"12460":1458,"12461":1516,"12462":1451,"12463":1406,"12464":1444,"12465":1481,"12466":1433,"12467":1507,"12468":1460,"12469":1491,"12470":1453,"12471":1406,"12472":1443,"12473":1422,"12474":1511,"12475":1472,"12476":1462,"12477":1458,"12478":1488,"12479":1449,"12480":1444,"12481":1455,"12482":1501,"12483":1502,"12484":1478,"12485":1516,"12486":1488,"12487":1443,"12488":1454,"12489":1444,"12490":1404,"12491":1463,"12492":1412,"12493":1494,"12494":1499,"12495":1448,"12496":1516,"12497":1410,"12498":1488,"12499":1446,"12500":1404,"12501":1401,"12502":1504,"12503":1505,"12504":1420,"12505":1415,"12506":1488,"12507":1415,"12508":1481,"12509":1483,"12510":1452,"12511":1405,"12512":1472,"12513":1490,"12514":1447,"12515":1408,"12516":1479,"12517":1420,"12518":1462,"12519":1503,"12520":1472,"12521":1421,"12522":1480,"12523":1479,"12524":1444,"12525":1400,"12526":1479,"12527":1486,"12528":1451,"12529":1457,"12530":1464,"12531":1511,"12532":1426,"12533":1511,"12534":1431,"12535":1484,"12536":1440,"12537":1448,"12538":1443,"12539":1479,"12540":1442,"12541":1455,"12542":1505,"12543":1512,"12544":1441,"12545":1450,"12546":1476,"12547":1450,"12548":1415,"12549":1415,"12550":1497,"12551":1455,"12552":1455,"12553":1509,"12554":1431,"12555":1425,"12556":1519,"12557":1522,"12558":1525,"12559":1544,"12560":1525,"12561":1544,"12562":1523,"12563":1537,"12564":1538,"12565":1536,"12566":1521,"12567":1526,"12568":1521,"12569":1526,"12570":1539,"12571":1522,"12572":1524,"12573":1523,"12574":1540,"12575":1519,"12576":1531,"12577":1523,"12578":1544,"12579":1519,"12580":1526,"12581":1538,"12582":1522,"12583":1522,"12584":1543,"12585":1541,"12586":1520,"12587":1539,"12588":1544,"12589":1524,"12590":1530,"12591":1522,"12592":1524,"12593":1524,"12594":1517,"12595":1538,"12596":1526,"12597":1529,"12598":1524,"12599":1537,"12600":1538,"12601":1529,"12602":1529,"12603":1526,"12604":1522,"12605":1525,"12606":1518,"12607":1539,"12608":1529,"12609":1521,"12610":1519,"12611":1526,"12612":1532,"12613":1519,"12614":1543,"12615":1535,"12616":1517,"12617":1529,"12618":1544,"12619":1523,"12620":1526,"12621":1531,"12622":1524,"12623":1525,"12624":1525,"12625":1519,"12626":1544,"12627":1525,"12628":1521,"12629":1517,"12630":1535,"12631":1541,"12632":1526,"12633":1527,"12634":1523,"12635":1539,"12636":1522,"12637":1523,"12638":1539,"12639":1526,"12640":1519,"12641":1526,"12642":1544,"12643":1539,"12644":1535,"12645":1539,"12646":1530,"12647":1521,"12648":1533,"12649":1526,"12650":1518,"12651":1522,"12652":1519,"12653":1525,"12654":1537,"12655":1526,"12656":1539,"12657":1539,"12658":1526,"12659":1526,"12660":1522,"12661":1529,"12662":1530,"12663":1523,"12664":1519,"12665":1529,"12666":1544,"12667":1519,"12668":1522,"12669":1538,"12670":1528,"12671":1539,"12672":1529,"12673":1537,"12674":1544,"12675":1519,"12676":1526,"12677":1538,"12678":1519,"12679":1542,"12680":1522,"12681":1526,"12682":1526,"12683":1527,"12684":1522,"12685":1544,"12686":1541,"12687":1539,"12688":1526,"12689":1519,"12690":1518,"12691":1528,"12692":1520,"12693":1523,"12694":1539,"12695":1531,"12696":1522,"12697":1539,"12698":1544,"12699":1544,"12700":1522,"12701":1517,"12702":1521,"12703":1538,"12704":1544,"12705":1521,"12706":1531,"12707":1517,"12708":1537,"12709":1541,"12710":1523,"12711":1544,"12712":1519,"12713":1544,"12714":1522,"12715":1544,"12716":1536,"12717":1523,"12718":1525,"12719":1521,"12720":1538,"12721":1524,"12722":1526,"12723":1530,"12724":1539,"12725":1518,"12726":1525,"12727":1529,"12728":1539,"12729":1526,"12730":1539,"12731":1523,"12732":1526,"12733":1522,"12734":1539,"12735":1517,"12736":1523,"12737":1525,"12738":1519,"12739":1537,"12740":1534,"12741":1538,"12742":1517,"12743":1539,"12744":1517,"12745":1538,"12746":1538,"12747":1534,"12748":1526,"12749":1538,"12750":1521,"12751":1531,"12752":1518,"12753":1522,"12754":1519,"12755":1539,"12756":1544,"12757":1538,"12758":1535,"12759":1539,"12760":1540,"12761":1517,"12762":1517,"12763":1538,"12764":1518,"12765":1544,"12766":1527,"12767":1536,"12768":1541,"12769":1538,"12770":1543,"12771":1543,"12772":1544,"12773":1525,"12774":1526,"12775":1519,"12776":1538,"12777":1526,"12778":1521,"12779":1519,"12780":1542,"12781":1544,"12782":1518,"12783":1519,"12784":1522,"12785":1521,"12786":1522,"12787":1526,"12788":1522,"12789":1539,"12790":1518,"12791":1538,"12792":1523,"12793":1526,"12794":1521,"12795":1598,"12796":1572,"12797":1584,"12798":1712,"12799":1679,"12800":1566,"12801":1676,"12802":1592,"12803":1584,"12804":1628,"12805":1585,"12806":1679,"12807":1660,"12808":1656,"12809":1699,"12810":1585,"12811":1682,"12812":1713,"12813":1561,"12814":1682,"12815":1589,"12816":1664,"12817":1625,"12818":1547,"12819":1655,"12820":1560,"12821":1636,"12822":1665,"12823":1685,"12824":1563,"12825":1669,"12826":1680,"12827":1701,"12828":1563,"12829":1692,"12830":1547,"12831":1660,"12832":1716,"12833":1640,"12834":1718,"12835":1596,"12836":1636,"12837":1666,"12838":1682,"12839":1560,"12840":1596,"12841":1665,"12842":1619,"12843":1680,"12844":1567,"12845":1707,"12846":1588,"12847":1665,"12848":1686,"12849":1611,"12850":1547,"12851":1603,"12852":1693,"12853":1596,"12854":1562,"12855":1708,"12856":1563,"12857":1545,"12858":1563,"12859":1624,"12860":1564,"12861":1669,"12862":1677,"12863":1639,"12864":1550,"12865":1615,"12866":1600,"12867":1605,"12868":1637,"12869":1650,"12870":1648,"12871":1679,"12872":1672,"12873":1580,"12874":1567,"12875":1678,"12876":1698,"12877":1640,"12878":1566,"12879":1592,"12880":1587,"12881":1586,"12882":1685,"12883":1682,"12884":1605,"12885":1547,"12886":1553,"12887":1583,"12888":1582,"12889":1620,"12890":1638,"12891":1717,"12892":1633,"12893":1718,"12894":1712,"12895":1673,"12896":1673,"12897":1694,"12898":1638,"12899":1653,"12900":1647,"12901":1581,"12902":1581,"12903":1718,"12904":1660,"12905":1638,"12906":1609,"12907":1584,"12908":1631,"12909":1632,"12910":1710,"12911":1546,"12912":1603,"12913":1609,"12914":1631,"12915":1599,"12916":1564,"12917":1665,"12918":1623,"12919":1673,"12920":1699,"12921":1565,"12922":1644,"12923":1636,"12924":1592,"12925":1554,"12926":1638,"12927":1636,"12928":1682,"12929":1561,"12930":1636,"12931":1564,"12932":1631,"12933":1702,"12934":1605,"12935":1650,"12936":1588,"12937":1638,"12938":1708,"12939":1604,"12940":1695,"12941":1693,"12942":1550,"12943":1646,"12944":1679,"12945":1547,"12946":1545,"12947":1588,"12948":1572,"12949":1685,"12950":1599,"12951":1659,"12952":1561,"12953":1660,"12954":1572,"12955":1695,"12956":1661,"12957":1716,"12958":1628,"12959":1588,"12960":1581,"12961":1564,"12962":1581,"12963":1711,"12964":1620,"12965":1639,"12966":1663,"12967":1657,"12968":1671,"12969":1574,"12970":1683,"12971":1605,"12972":1579,"12973":1696,"12974":1699,"12975":1659,"12976":1673,"12977":1547,"12978":1632,"12979":1615,"12980":1626,"12981":1716,"12982":1668,"12983":1578,"12984":1692,"12985":1545,"12986":1615,"12987":1591,"12988":1600,"12989":1662,"12990":1554,"12991":1684,"12992":1545,"12993":1668,"12994":1659,"12995":1662,"12996":1638,"12997":1718,"12998":1664,"12999":1718,"13000":1691,"13001":1632,"13002":1557,"13003":1577,"13004":1696,"13005":1606,"13006":1553,"13007":1699,"13008":1653,"13009":1670,"13010":1644,"13011":1591,"13012":1596,"13013":1609,"13014":1595,"13015":1669,"13016":1609,"13017":1587,"13018":1563,"13019":1600,"13020":1701,"13021":1679,"13022":1702,"13023":1572,"13024":1699,"13025":1688,"13026":1718,"13027":1594,"13028":1688,"13029":1620,"13030":1639,"13031":1664,"13032":1708,"13033":1716,"13034":1550,"13035":1712,"13036":1579,"13037":1627,"13038":1650,"13039":1577,"13040":1562,"13041":1615,"13042":1650,"13043":1592,"13044":1665,"13045":1665,"13046":1607,"13047":1589,"13048":1618,"13049":1588,"13050":1555,"13051":1623,"13052":1626,"13053":1679,"13054":1660,"13055":1603,"13056":1701,"13057":1588,"13058":1597,"13059":1580,"13060":1563,"13061":1696,"13062":1617,"13063":1665,"13064":1644,"13065":1651,"13066":1714,"13067":1654,"13068":1564,"13069":1595,"13070":1622,"13071":1618,"13072":1626,"13073":1575,"13074":1555,"13075":1712,"13076":1657,"13077":1642,"13078":1718,"13079":1682,"13080":1657,"13081":1620,"13082":1682,"13083":1581,"13084":1664,"13085":1645,"13086":1595,"13087":1676,"13088":1629,"13089":1556,"13090":1603,"13091":1553,"13092":1702,"13093":1717,"13094":1591,"13095":1545,"13096":1561,"13097":1606,"13098":1619,"13099":1708,"13100":1628,"13101":1716,"13102":1647,"13103":1716,"13104":1682,"13105":1558,"13106":1607,"13107":1636,"13108":1567,"13109":1568,"13110":1611,"13111":1659,"13112":1658,"13113":1568,"13114":1664,"13115":1636,"13116":1672,"13117":1561,"13118":1610,"13119":1615,"13120":1718,"13121":1567,"13122":1696,"13123":1718,"13124":1678,"13125":1597,"13126":1636,"13127":1614,"13128":1704,"13129":1706,"13130":1670,"13131":1679,"13132":1549,"13133":1594,"13134":1708,"13135":1574,"13136":1663,"13137":1561,"13138":1708,"13139":1592,"13140":1612,"13141":1716,"13142":1586,"13143":1714,"13144":1609,"13145":1583,"13146":1608,"13147":1648,"13148":1692,"13149":1592,"13150":1655,"13151":1661,"13152":1670,"13153":1650,"13154":1640,"13155":1699,"13156":1704,"13157":1676,"13158":1677,"13159":1623,"13160":1647,"13161":1686,"13162":1702,"13163":1657,"13164":1638,"13165":1632,"13166":1703,"13167":1591,"13168":1717,"13169":1592,"13170":1594,"13171":1636,"13172":1692,"13173":1684,"13174":1564,"13175":1581,"13176":1706,"13177":1716,"13178":1678,"13179":1644,"13180":1665,"13181":1561,"13182":1590,"13183":1689,"13184":1588,"13185":1608,"13186":1709,"13187":1659,"13188":1582,"13189":1715,"13190":1617,"13191":1632,"13192":1626,"13193":1645,"13194":1718,"13195":1637,"13196":1646,"13197":1696,"13198":1670,"13199":1659,"13200":1645,"13201":1653,"13202":1718,"13203":1581,"13204":1588,"13205":1662,"13206":1718,"13207":1595,"13208":1561,"13209":1618,"13210":1642,"13211":1573,"13212":1673,"13213":1550,"13214":1619,"13215":1698,"13216":1562,"13217":1588,"13218":1606,"13219":1562,"13220":1660,"13221":1595,"13222":1659,"13223":1599,"13224":1615,"13225":1634,"13226":1575,"13227":1577,"13228":1642,"13229":1665,"13230":1592,"13231":1708,"13232":1612,"13233":1585,"13234":1561,"13235":1570,"13236":1649,"13237":1581,"13238":1716,"13239":1678,"13240":1581,"13241":1657,"13242":1581,"13243":1629,"13244":1686,"13245":1594,"13246":1637,"13247":1581,"13248":1550,"13249":1611,"13250":1588,"13251":1649,"13252":1552,"13253":1713,"13254":1595,"13255":1615,"13256":1696,"13257":1670,"13258":1660,"13259":1650,"13260":1650,"13261":1575,"13262":1645,"13263":1679,"13264":1678,"13265":1718,"13266":1659,"13267":1617,"13268":1611,"13269":1671,"13270":1590,"13271":1560,"13272":1587,"13273":1642,"13274":1581,"13275":1678,"13276":1694,"13277":1559,"13278":1692,"13279":1665,"13280":1670,"13281":1648,"13282":1644,"13283":1655,"13284":1698,"13285":1622,"13286":1704,"13287":1594,"13288":1631,"13289":1591,"13290":1553,"13291":1633,"13292":1669,"13293":1716,"13294":1654,"13295":1669,"13296":1611,"13297":1557,"13298":1701,"13299":1611,"13300":1682,"13301":1584,"13302":1566,"13303":1665,"13304":1546,"13305":1617,"13306":1632,"13307":1557,"13308":1679,"13309":1713,"13310":1613,"13311":1683,"13312":1604,"13313":1665,"13314":1581,"13315":1682,"13316":1620,"13317":1562,"13318":1566,"13319":1611,"13320":1682,"13321":1550,"13322":1665,"13323":1640,"13324":1615,"13325":1709,"13326":1636,"13327":1615,"13328":1595,"13329":1694,"13330":1637,"13331":1620,"13332":1596,"13333":1654,"13334":1659,"13335":1705,"13336":1688,"13337":1590,"13338":1688,"13339":1636,"13340":1631,"13341":1596,"13342":1633,"13343":1550,"13344":1594,"13345":1581,"13346":1636,"13347":1695,"13348":1644,"13349":1655,"13350":1693,"13351":1588,"13352":1606,"13353":1554,"13354":1590,"13355":1550,"13356":1656,"13357":1614,"13358":1580,"13359":1633,"13360":1619,"13361":1582,"13362":1656,"13363":1556,"13364":1642,"13365":1672,"13366":1718,"13367":1662,"13368":1661,"13369":1633,"13370":1660,"13371":1668,"13372":1718,"13373":1556,"13374":1594,"13375":1669,"13376":1594,"13377":1615,"13378":1611,"13379":1633,"13380":1560,"13381":1585,"13382":1705,"13383":1595,"13384":1716,"13385":1545,"13386":1698,"13387":1645,"13388":1660,"13389":1716,"13390":1660,"13391":1590,"13392":1620,"13393":1708,"13394":1609,"13395":1688,"13396":1717,"13397":1564,"13398":1716,"13399":1685,"13400":1665,"13401":1602,"13402":1623,"13403":1700,"13404":1644,"13405":1585,"13406":1545,"13407":1547,"13408":1633,"13409":1595,"13410":1581,"13411":1670,"13412":1712,"13413":1598,"13414":1636,"13415":1598,"13416":1697,"13417":1551,"13418":1555,"13419":1656,"13420":1662,"13421":1694,"13422":1683,"13423":1569,"13424":1622,"13425":1647,"13426":1606,"13427":1706,"13428":1699,"13429":1604,"13430":1701,"13431":1714,"13432":1712,"13433":1632,"13434":1575,"13435":1621,"13436":1709,"13437":1547,"13438":1569,"13439":1581,"13440":1587,"13441":1635,"13442":1665,"13443":1596,"13444":1566,"13445":1671,"13446":1566,"13447":1653,"13448":1552,"13449":1588,"13450":1710,"13451":1611,"13452":1626,"13453":1553,"13454":1706,"13455":1596,"13456":1669,"13457":1714,"13458":1567,"13459":1718,"13460":1597,"13461":1633,"13462":1668,"13463":1671,"13464":1696,"13465":1606,"13466":1596,"13467":1573,"13468":1716,"13469":1563,"13470":1669,"13471":1596,"13472":1567,"13473":1708,"13474":1567,"13475":1707,"13476":1579,"13477":1642,"13478":1673,"13479":1554,"13480":1567,"13481":1586,"13482":1636,"13483":1553,"13484":1555,"13485":1574,"13486":1550,"13487":1639,"13488":1716,"13489":1656,"13490":1581,"13491":1661,"13492":1653,"13493":1680,"13494":1638,"13495":1636,"13496":1694,"13497":1629,"13498":1611,"13499":1656,"13500":1579,"13501":1648,"13502":1665,"13503":1636,"13504":1662,"13505":1645,"13506":1704,"13507":1683,"13508":1692,"13509":1712,"13510":1636,"13511":1622,"13512":1644,"13513":1592,"13514":1632,"13515":1646,"13516":1550,"13517":1671,"13518":1613,"13519":1622,"13520":1595,"13521":1595,"13522":1657,"13523":1588,"13524":1702,"13525":1653,"13526":1636,"13527":1590,"13528":1689,"13529":1577,"13530":1550,"13531":1712,"13532":1708,"13533":1555,"13534":1709,"13535":1655,"13536":1665,"13537":1642,"13538":1595,"13539":1699,"13540":1593,"13541":1595,"13542":1652,"13543":1571,"13544":1611,"13545":1592,"13546":1672,"13547":1569,"13548":1577,"13549":1606,"13550":1573,"13551":1641,"13552":1705,"13553":1618,"13554":1567,"13555":1609,"13556":1609,"13557":1589,"13558":1715,"13559":1607,"13560":1708,"13561":1660,"13562":1631,"13563":1655,"13564":1706,"13565":1678,"13566":1547,"13567":1597,"13568":1609,"13569":1617,"13570":1612,"13571":1646,"13572":1577,"13573":1587,"13574":1708,"13575":1609,"13576":1622,"13577":1706,"13578":1566,"13579":1677,"13580":1611,"13581":1562,"13582":1642,"13583":1682,"13584":1686,"13585":1550,"13586":1573,"13587":1633,"13588":1638,"13589":1660,"13590":1712,"13591":1716,"13592":1605,"13593":1576,"13594":1662,"13595":1554,"13596":1677,"13597":1556,"13598":1670,"13599":1669,"13600":1615,"13601":1590,"13602":1650,"13603":1606,"13604":1637,"13605":1620,"13606":1624,"13607":1697,"13608":1623,"13609":1688,"13610":1622,"13611":1585,"13612":1560,"13613":1699,"13614":1587,"13615":1647,"13616":1555,"13617":1626,"13618":1626,"13619":1716,"13620":1592,"13621":1611,"13622":1694,"13623":1614,"13624":1589,"13625":1667,"13626":1636,"13627":1611,"13628":1626,"13629":1597,"13630":1603,"13631":1695,"13632":1594,"13633":1638,"13634":1626,"13635":1620,"13636":1612,"13637":1655,"13638":1594,"13639":1710,"13640":1622,"13641":1683,"13642":1595,"13643":1647,"13644":1686,"13645":1694,"13646":1671,"13647":1588,"13648":1551,"13649":1596,"13650":1562,"13651":1665,"13652":1674,"13653":1549,"13654":1547,"13655":1559,"13656":1603,"13657":1643,"13658":1588,"13659":1561,"13660":1590,"13661":1579,"13662":1615,"13663":1581,"13664":1649,"13665":1639,"13666":1682,"13667":1567,"13668":1620,"13669":1655,"13670":1655,"13671":1611,"13672":1636,"13673":1676,"13674":1588,"13675":1550,"13676":1594,"13677":1680,"13678":1573,"13679":1611,"13680":1671,"13681":1619,"13682":1557,"13683":1561,"13684":1553,"13685":1697,"13686":1636,"13687":1546,"13688":1622,"13689":1673,"13690":1663,"13691":1590,"13692":1558,"13693":1555,"13694":1716,"13695":1591,"13696":1649,"13697":1606,"13698":1687,"13699":1547,"13700":1612,"13701":1562,"13702":1638,"13703":1622,"13704":1545,"13705":1596,"13706":1657,"13707":1638,"13708":1699,"13709":1592,"13710":1592,"13711":1618,"13712":1656,"13713":1581,"13714":1636,"13715":1567,"13716":1578,"13717":1599,"13718":1644,"13719":1692,"13720":1655,"13721":1550,"13722":1661,"13723":1647,"13724":1577,"13725":1587,"13726":1679,"13727":1547,"13728":1545,"13729":1566,"13730":1668,"13731":1583,"13732":1583,"13733":1678,"13734":1620,"13735":1650,"13736":1717,"13737":1640,"13738":1718,"13739":1589,"13740":1609,"13741":1642,"13742":1642,"13743":1696,"13744":1581,"13745":1548,"13746":1713,"13747":1645,"13748":1596,"13749":1566,"13750":1617,"13751":1592,"13752":1571,"13753":1678,"13754":1564,"13755":1649,"13756":1680,"13757":1717,"13758":1566,"13759":1588,"13760":1718,"13761":1622,"13762":1633,"13763":1655,"13764":1718,"13765":1588,"13766":1590,"13767":1710,"13768":1611,"13769":1589,"13770":1655,"13771":1646,"13772":1566,"13773":1716,"13774":1636,"13775":1686,"13776":1596,"13777":1694,"13778":1636,"13779":1567,"13780":1655,"13781":1573,"13782":1611,"13783":1635,"13784":1678,"13785":1595,"13786":1607,"13787":1638,"13788":1588,"13789":1579,"13790":1581,"13791":1609,"13792":1567,"13793":1611,"13794":1636,"13795":1588,"13796":1592,"13797":1585,"13798":1546,"13799":1556,"13800":1547,"13801":1606,"13802":1620,"13803":1606,"13804":1581,"13805":1636,"13806":1584,"13807":1636,"13808":1609,"13809":1718,"13810":1679,"13811":1622,"13812":1624,"13813":1574,"13814":1565,"13815":1718,"13816":1670,"13817":1675,"13818":1629,"13819":1677,"13820":1672,"13821":1702,"13822":1596,"13823":1597,"13824":1550,"13825":1548,"13826":1695,"13827":1707,"13828":1611,"13829":1635,"13830":1596,"13831":1682,"13832":1654,"13833":1547,"13834":1567,"13835":1685,"13836":1672,"13837":1654,"13838":1634,"13839":1636,"13840":1699,"13841":1581,"13842":1696,"13843":1590,"13844":1551,"13845":1718,"13846":1708,"13847":1693,"13848":1655,"13849":1636,"13850":1696,"13851":1687,"13852":1700,"13853":1716,"13854":1634,"13855":1649,"13856":1640,"13857":1609,"13858":1567,"13859":1672,"13860":1676,"13861":1553,"13862":1573,"13863":1625,"13864":1595,"13865":1647,"13866":1665,"13867":1567,"13868":1591,"13869":1609,"13870":1634,"13871":1636,"13872":1634,"13873":1629,"13874":1590,"13875":1679,"13876":1603,"13877":1662,"13878":1599,"13879":1550,"13880":1648,"13881":1699,"13882":1562,"13883":1547,"13884":1630,"13885":1550,"13886":1594,"13887":1551,"13888":1657,"13889":1706,"13890":1633,"13891":1662,"13892":1572,"13893":1637,"13894":1554,"13895":1595,"13896":1669,"13897":1657,"13898":1581,"13899":1657,"13900":1660,"13901":1647,"13902":1547,"13903":1714,"13904":1636,"13905":1638,"13906":1591,"13907":1632,"13908":1571,"13909":1702,"13910":1588,"13911":1649,"13912":1696,"13913":1638,"13914":1585,"13915":1696,"13916":1567,"13917":1708,"13918":1577,"13919":1717,"13920":1702,"13921":1639,"13922":1550,"13923":1611,"13924":1550,"13925":1679,"13926":1619,"13927":1662,"13928":1633,"13929":1660,"13930":1683,"13931":1611,"13932":1655,"13933":1629,"13934":1574,"13935":1685,"13936":1665,"13937":1683,"13938":1638,"13939":1555,"13940":1682,"13941":1682,"13942":1682,"13943":1716,"13944":1629,"13945":1604,"13946":1561,"13947":1549,"13948":1545,"13949":1663,"13950":1588,"13951":1664,"13952":1622,"13953":1698,"13954":1662,"13955":1680,"13956":1679,"13957":1596,"13958":1681,"13959":1708,"13960":1657,"13961":1684,"13962":1649,"13963":1665,"13964":1622,"13965":1712,"13966":1591,"13967":1683,"13968":1609,"13969":1696,"13970":1566,"13971":1669,"13972":1660,"13973":1655,"13974":1557,"13975":1620,"13976":1583,"13977":1622,"13978":1657,"13979":1661,"13980":1550,"13981":1710,"13982":1664,"13983":1550,"13984":1688,"13985":1717,"13986":1655,"13987":1616,"13988":1608,"13989":1597,"13990":1671,"13991":1615,"13992":1567,"13993":1573,"13994":1678,"13995":1701,"13996":1672,"13997":1690,"13998":1646,"13999":1653,"14000":1596,"14001":1595,"14002":1555,"14003":1608,"14004":1588,"14005":1633,"14006":1665,"14007":1563,"14008":1561,"14009":1642,"14010":1563,"14011":1676,"14012":1689,"14013":1631,"14014":1561,"14015":1608,"14016":1637,"14017":1649,"14018":1639,"14019":1678,"14020":1550,"14021":1699,"14022":1560,"14023":1613,"14024":1686,"14025":1578,"14026":1701,"14027":1615,"14028":1682,"14029":1680,"14030":1699,"14031":1702,"14032":1668,"14033":1679,"14034":1596,"14035":1587,"14036":1659,"14037":1567,"14038":1699,"14039":1640,"14040":1678,"14041":1671,"14042":1696,"14043":1621,"14044":1609,"14045":1620,"14046":1611,"14047":1574,"14048":1669,"14049":1718,"14050":1682,"14051":1558,"14052":1545,"14053":1636,"14054":1615,"14055":1718,"14056":1609,"14057":1672,"14058":1689,"14059":1689,"14060":1568,"14061":1669,"14062":1678,"14063":1680,"14064":1672,"14065":1716,"14066":1567,"14067":1669,"14068":1696,"14069":1655,"14070":1619,"14071":1596,"14072":1603,"14073":1567,"14074":1617,"14075":1629,"14076":1584,"14077":1581,"14078":1559,"14079":1718,"14080":1634,"14081":1667,"14082":1670,"14083":1565,"14084":1609,"14085":1677,"14086":1620,"14087":1617,"14088":1600,"14089":1591,"14090":1595,"14091":1715,"14092":1699,"14093":1661,"14094":1586,"14095":1701,"14096":1547,"14097":1604,"14098":1670,"14099":1657,"14100":1639,"14101":1632,"14102":1653,"14103":1693,"14104":1681,"14105":1613,"14106":1577,"14107":1718,"14108":1593,"14109":1702,"14110":1693,"14111":1591,"14112":1619,"14113":1692,"14114":1554,"14115":1693,"14116":1633,"14117":1672,"14118":1565,"14119":1550,"14120":1638,"14121":1595,"14122":1678,"14123":1655,"14124":1563,"14125":1653,"14126":1595,"14127":1711,"14128":1596,"14129":1711,"14130":1603,"14131":1699,"14132":1596,"14133":1591,"14134":1656,"14135":1633,"14136":1649,"14137":1550,"14138":1573,"14139":1546,"14140":1615,"14141":1679,"14142":1689,"14143":1567,"14144":1655,"14145":1638,"14146":1633,"14147":1555,"14148":1644,"14149":1631,"14150":1583,"14151":1601,"14152":1644,"14153":1561,"14154":1706,"14155":1560,"14156":1580,"14157":1595,"14158":1695,"14159":1676,"14160":1597,"14161":1550,"14162":1609,"14163":1655,"14164":1550,"14165":1615,"14166":1683,"14167":1561,"14168":1679,"14169":1598,"14170":1646,"14171":1611,"14172":1665,"14173":1619,"14174":1655,"14175":1681,"14176":1550,"14177":1678,"14178":1561,"14179":1617,"14180":1718,"14181":1597,"14182":1550,"14183":1564,"14184":1660,"14185":1557,"14186":1622,"14187":1634,"14188":1615,"14189":1606,"14190":1692,"14191":1572,"14192":1686,"14193":1595,"14194":1665,"14195":1598,"14196":1545,"14197":1564,"14198":1669,"14199":1596,"14200":1609,"14201":1638,"14202":1682,"14203":1661,"14204":1554,"14205":1636,"14206":1622,"14207":1545,"14208":1676,"14209":1645,"14210":1585,"14211":1669,"14212":1606,"14213":1554,"14214":1679,"14215":1567,"14216":1682,"14217":1709,"14218":1626,"14219":1710,"14220":1609,"14221":1609,"14222":1574,"14223":1592,"14224":1718,"14225":1708,"14226":1716,"14227":1678,"14228":1636,"14229":1545,"14230":1591,"14231":1715,"14232":1655,"14233":1644,"14234":1567,"14235":1699,"14236":1689,"14237":1637,"14238":1572,"14239":1554,"14240":1707,"14241":1710,"14242":1584,"14243":1660,"14244":1605,"14245":1596,"14246":1664,"14247":1696,"14248":1657,"14249":1633,"14250":1605,"14251":1716,"14252":1678,"14253":1667,"14254":1609,"14255":1596,"14256":1648,"14257":1592,"14258":1567,"14259":1566,"14260":1709,"14261":1718,"14262":1581,"14263":1646,"14264":1644,"14265":1609,"14266":1655,"14267":1660,"14268":1677,"14269":1669,"14270":1622,"14271":1690,"14272":1679,"14273":1716,"14274":1562,"14275":1555,"14276":1633,"14277":1633,"14278":1595,"14279":1660,"14280":1706,"14281":1697,"14282":1677,"14283":1694,"14284":1669,"14285":1638,"14286":1673,"14287":1655,"14288":1714,"14289":1588,"14290":1573,"14291":1669,"14292":1612,"14293":1604,"14294":1620,"14295":1573,"14296":1712,"14297":1664,"14298":1644,"14299":1597,"14300":1609,"14301":1596,"14302":1664,"14303":1565,"14304":1563,"14305":1572,"14306":1616,"14307":1712,"14308":1580,"14309":1640,"14310":1607,"14311":1608,"14312":1678,"14313":1623,"14314":1600,"14315":1711,"14316":1669,"14317":1611,"14318":1703,"14319":1701,"14320":1718,"14321":1572,"14322":1611,"14323":1682,"14324":1586,"14325":1638,"14326":1683,"14327":1563,"14328":1655,"14329":1611,"14330":1644,"14331":1673,"14332":1718,"14333":1611,"14334":1546,"14335":1655,"14336":1622,"14337":1648,"14338":1701,"14339":1627,"14340":1653,"14341":1592,"14342":1665,"14343":1554,"14344":1581,"14345":1610,"14346":1550,"14347":1696,"14348":1557,"14349":1699,"14350":1716,"14351":1561,"14352":1573,"14353":1621,"14354":1613,"14355":1581,"14356":1603,"14357":1545,"14358":1615,"14359":1716,"14360":1661,"14361":1582,"14362":1563,"14363":1670,"14364":1577,"14365":1653,"14366":1648,"14367":1654,"14368":1548,"14369":1634,"14370":1650,"14371":1657,"14372":1583,"14373":1589,"14374":1549,"14375":1565,"14376":1633,"14377":1715,"14378":1698,"14379":1567,"14380":1701,"14381":1592,"14382":1636,"14383":1607,"14384":1620,"14385":1645,"14386":1633,"14387":1648,"14388":1714,"14389":1598,"14390":1655,"14391":1608,"14392":1577,"14393":1611,"14394":1595,"14395":1547,"14396":1564,"14397":1669,"14398":1638,"14399":1611,"14400":1566,"14401":1638,"14402":1545,"14403":1575,"14404":1670,"14405":1653,"14406":1546,"14407":1595,"14408":1550,"14409":1557,"14410":1673,"14411":1654,"14412":1676,"14413":1637,"14414":1649,"14415":1688,"14416":1661,"14417":1710,"14418":1608,"14419":1559,"14420":1609,"14421":1699,"14422":1682,"14423":1697,"14424":1696,"14425":1588,"14426":1562,"14427":1718,"14428":1646,"14429":1665,"14430":1670,"14431":1634,"14432":1550,"14433":1718,"14434":1615,"14435":1678,"14436":1668,"14437":1545,"14438":1682,"14439":1564,"14440":1682,"14441":1679,"14442":1661,"14443":1566,"14444":1670,"14445":1696,"14446":1657,"14447":1550,"14448":1649,"14449":1665,"14450":1633,"14451":1709,"14452":1690,"14453":1567,"14454":1646,"14455":1709,"14456":1634,"14457":1627,"14458":1737,"14459":1722,"14460":1748,"14461":1733,"14462":1744,"14463":1744,"14464":1767,"14465":1719,"14466":1763,"14467":1770,"14468":1752,"14469":1722,"14470":1756,"14471":1760,"14472":1765,"14473":1734,"14474":1755,"14475":1723,"14476":1747,"14477":1768,"14478":1723,"14479":1750,"14480":1726,"14481":1724,"14482":1773,"14483":1767,"14484":1771,"14485":1739,"14486":1751,"14487":1767,"14488":1737,"14489":1760,"14490":1734,"14491":1726,"14492":1755,"14493":1731,"14494":1726,"14495":1773,"14496":1738,"14497":1754,"14498":1727,"14499":1745,"14500":1732,"14501":1760,"14502":1735,"14503":1757,"14504":1731,"14505":1734,"14506":1754,"14507":1762,"14508":1720,"14509":1723,"14510":1751,"14511":1752,"14512":1745,"14513":1723,"14514":1773,"14515":1750,"14516":1750,"14517":1754,"14518":1772,"14519":1764,"14520":1750,"14521":1770,"14522":1752,"14523":1734,"14524":1741,"14525":1733,"14526":1744,"14527":1746,"14528":1723,"14529":1723,"14530":1752,"14531":1721,"14532":1740,"14533":1747,"14534":1767,"14535":1746,"14536":1744,"14537":1748,"14538":1753,"14539":1724,"14540":1731,"14541":1734,"14542":1723,"14543":1739,"14544":1769,"14545":1748,"14546":1754,"14547":1739,"14548":1745,"14549":1773,"14550":1770,"14551":1731,"14552":1766,"14553":1764,"14554":1748,"14555":1732,"14556":1765,"14557":1767,"14558":1734,"14559":1751,"14560":1726,"14561":1744,"14562":1736,"14563":1748,"14564":1751,"14565":1721,"14566":1740,"14567":1761,"14568":1760,"14569":1751,"14570":1760,"14571":1734,"14572":1751,"14573":1726,"14574":1750,"14575":1764,"14576":1755,"14577":1730,"14578":1750,"14579":1764,"14580":1749,"14581":1743,"14582":1722,"14583":1726,"14584":1765,"14585":1772,"14586":1731,"14587":1754,"14588":1773,"14589":1722,"14590":1771,"14591":1747,"14592":1750,"14593":1720,"14594":1751,"14595":1767,"14596":1731,"14597":1750,"14598":1754,"14599":1722,"14600":1723,"14601":1723,"14602":1726,"14603":1740,"14604":1735,"14605":1723,"14606":1773,"14607":1749,"14608":1734,"14609":1772,"14610":1748,"14611":1744,"14612":1732,"14613":1764,"14614":1751,"14615":1721,"14616":1739,"14617":1744,"14618":1773,"14619":1754,"14620":1773,"14621":1764,"14622":1743,"14623":1754,"14624":1773,"14625":1733,"14626":1774,"14627":1764,"14628":1773,"14629":1755,"14630":1724,"14631":1749,"14632":1744,"14633":1750,"14634":1722,"14635":1738,"14636":1742,"14637":1720,"14638":1751,"14639":1752,"14640":1760,"14641":1751,"14642":1734,"14643":1722,"14644":1773,"14645":1758,"14646":1730,"14647":1743,"14648":1754,"14649":1770,"14650":1751,"14651":1731,"14652":1748,"14653":1729,"14654":1744,"14655":1733,"14656":1743,"14657":1772,"14658":1722,"14659":1754,"14660":1760,"14661":1768,"14662":1745,"14663":1722,"14664":1734,"14665":1736,"14666":1773,"14667":1744,"14668":1756,"14669":1773,"14670":1739,"14671":1724,"14672":1739,"14673":1768,"14674":1764,"14675":1724,"14676":1751,"14677":1735,"14678":1759,"14679":1770,"14680":1752,"14681":1747,"14682":1768,"14683":1743,"14684":1748,"14685":1750,"14686":1770,"14687":1728,"14688":1726,"14689":1729,"14690":1722,"14691":1747,"14692":1760,"14693":1739,"14694":1767,"14695":1745,"14696":1767,"14697":1725,"14698":1736,"14699":1752,"14700":1751,"14701":1721,"14702":1751,"14703":1773,"14704":1733,"14705":1751,"14706":1744,"14707":1720,"14708":1733,"14709":1771,"14710":1721,"14711":1722,"14712":1721,"14713":1735,"14714":1721,"14715":1747,"14716":1720,"14717":1773,"14718":1727,"14719":1748,"14720":1752,"14721":1719,"14722":1721,"14723":1750,"14724":1751,"14725":1731,"14726":1724,"14727":1732,"14728":1773,"14729":1744,"14730":1754,"14731":1723,"14732":1768,"14733":1767,"14734":1748,"14735":1750,"14736":1751,"14737":1757,"14738":1743,"14739":1748,"14740":1749,"14741":1724,"14742":1765,"14743":1768,"14744":1755,"14745":1773,"14746":1744,"14747":1749,"14748":1734,"14749":1748,"14750":1744,"14751":1732,"14752":1732,"14753":1751,"14754":1744,"14755":1767,"14756":1760,"14757":1751,"14758":1723,"14759":1740,"14760":1734,"14761":1735,"14762":1765,"14763":1734,"14764":1750,"14765":1741,"14766":1767,"14767":1729,"14768":1750,"14769":1741,"14770":1737,"14771":1722,"14772":1743,"14773":1731,"14774":1738,"14775":1764,"14776":1738,"14777":1748,"14778":1722,"14779":1745,"14780":1749,"14781":1733,"14782":1755,"14783":1760,"14784":1731,"14785":1737,"14786":1731,"14787":1734,"14788":1767,"14789":1744,"14790":1721,"14791":1769,"14792":1760,"14793":1764,"14794":1752,"14795":1768,"14796":1767,"14797":1772,"14798":1731,"14799":1721,"14800":1739,"14801":1747,"14802":1741,"14803":1760,"14804":1724,"14805":1750,"14806":1750,"14807":1722,"14808":1773,"14809":1736,"14810":1745,"14811":1722,"14812":1719,"14813":1731,"14814":1723,"14815":1765,"14816":1763,"14817":1737,"14818":1724,"14819":1761,"14820":1766,"14821":1751,"14822":1740,"14823":1764,"14824":1743,"14825":1770,"14826":1751,"14827":1721,"14828":1722,"14829":1738,"14830":1756,"14831":1770,"14832":1764,"14833":1763,"14834":1731,"14835":1756,"14836":1722,"14837":1754,"14838":1760,"14839":1734,"14840":1767,"14841":1749,"14842":1744,"14843":1753,"14844":1773,"14845":1728,"14846":1745,"14847":1759,"14848":1731,"14849":1764,"14850":1752,"14851":1744,"14852":1764,"14853":1721,"14854":1720,"14855":1760,"14856":1773,"14857":1723,"14858":1760,"14859":1721,"14860":1755,"14861":1755,"14862":1721,"14863":1739,"14864":1747,"14865":1747,"14866":1773,"14867":1770,"14868":1734,"14869":1724,"14870":1764,"14871":1764,"14872":1772,"14873":1754,"14874":1737,"14875":1773,"14876":1751,"14877":1744,"14878":1751,"14879":1744,"14880":1745,"14881":1738,"14882":1764,"14883":1767,"14884":1731,"14885":1756,"14886":1761,"14887":1755,"14888":1768,"14889":1727,"14890":1770,"14891":1767,"14892":1773,"14893":1723,"14894":1731,"14895":1739,"14896":1721,"14897":1760,"14898":1771,"14899":1764,"14900":1721,"14901":1765,"14902":1739,"14903":1751,"14904":1754,"14905":1732,"14906":1724,"14907":1724,"14908":1747,"14909":1724,"14910":1735,"14911":1764,"14912":1755,"14913":1748,"14914":1735,"14915":1770,"14916":1729,"14917":1745,"14918":1732,"14919":1767,"14920":1760,"14921":1731,"14922":1751,"14923":1770,"14924":1755,"14925":1741,"14926":1760,"14927":1768,"14928":1737,"14929":1720,"14930":1731,"14931":1772,"14932":1732,"14933":1748,"14934":1771,"14935":1741,"14936":1719,"14937":1769,"14938":1726,"14939":1750,"14940":1733,"14941":1734,"14942":1733,"14943":1762,"14944":1733,"14945":1738,"14946":1748,"14947":1770,"14948":1751,"14949":1774,"14950":1733,"14951":1762,"14952":1747,"14953":1763,"14954":1719,"14955":1772,"14956":1748,"14957":1739,"14958":1754,"14959":1748,"14960":1722,"14961":1759,"14962":1754,"14963":1739,"14964":1756,"14965":1767,"14966":1730,"14967":1764,"14968":1734,"14969":1720,"14970":1741,"14971":1752,"14972":1764,"14973":1747,"14974":1721,"14975":1773,"14976":1768,"14977":1734,"14978":1769,"14979":1722,"14980":1771,"14981":1746,"14982":1737,"14983":1728,"14984":1736,"14985":1773,"14986":1758,"14987":1721,"14988":1754,"14989":1721,"14990":1750,"14991":1767,"14992":1726,"14993":1726,"14994":1760,"14995":1731,"14996":1720,"14997":1768,"14998":1772,"14999":1747,"15000":1739,"15001":1750,"15002":1732,"15003":1745,"15004":1744,"15005":1756,"15006":1752,"15007":1758,"15008":1726,"15009":1754,"15010":1747,"15011":1732,"15012":1748,"15013":1764,"15014":1764,"15015":1768,"15016":1744,"15017":1744,"15018":1731,"15019":1751,"15020":1763,"15021":1719,"15022":1764,"15023":1735,"15024":1722,"15025":1737,"15026":1760,"15027":1749,"15028":1769,"15029":1762,"15030":1764,"15031":1749,"15032":1760,"15033":1767,"15034":1724,"15035":1735,"15036":1767,"15037":1737,"15038":1768,"15039":1748,"15040":1747,"15041":1745,"15042":1767,"15043":1724,"15044":1768,"15045":1767,"15046":1756,"15047":1772,"15048":1724,"15049":1723,"15050":1764,"15051":1731,"15052":1721,"15053":1773,"15054":1764,"15055":1748,"15056":1751,"15057":1731,"15058":1719,"15059":1771,"15060":1772,"15061":1770,"15062":1763,"15063":1750,"15064":1722,"15065":1741,"15066":1768,"15067":1768,"15068":1747,"15069":1767,"15070":1731,"15071":1749,"15072":1760,"15073":1719,"15074":1748,"15075":1719,"15076":1760,"15077":1764,"15078":1773,"15079":1722,"15080":1744,"15081":1751,"15082":1751,"15083":1755,"15084":1747,"15085":1748,"15086":1723,"15087":1731,"15088":1737,"15089":1722,"15090":1738,"15091":1768,"15092":1760,"15093":1773,"15094":1734,"15095":1722,"15096":1719,"15097":1757,"15098":1747,"15099":1731,"15100":1719,"15101":1726,"15102":1768,"15103":1731,"15104":1725,"15105":1750,"15106":1760,"15107":1734,"15108":1767,"15109":1747,"15110":1736,"15111":1737,"15112":1731,"15113":1765,"15114":1773,"15115":1721,"15116":1721,"15117":1739,"15118":1748,"15119":1731,"15120":1770,"15121":1764,"15122":1721,"15123":1734,"15124":1723,"15125":1755,"15126":1737,"15127":1764,"15128":1726,"15129":1734,"15130":1764,"15131":1767,"15132":1724,"15133":1754,"15134":1752,"15135":1724,"15136":1750,"15137":1746,"15138":1727,"15139":1773,"15140":1763,"15141":1737,"15142":1732,"15143":1721,"15144":1764,"15145":1773,"15146":1720,"15147":1739,"15148":1751,"15149":1728,"15150":1731},"commfacid":{"0":4070,"1":4070,"2":4069,"3":4070,"4":4070,"5":4070,"6":4070,"7":4069,"8":4069,"9":4069,"10":4070,"11":4069,"12":4070,"13":4069,"14":4069,"15":4069,"16":4070,"17":4070,"18":4070,"19":4069,"20":4069,"21":4069,"22":4070,"23":4070,"24":4070,"25":4070,"26":4070,"27":4069,"28":4070,"29":4069,"30":4070,"31":4070,"32":4070,"33":4070,"34":4069,"35":4069,"36":4069,"37":4070,"38":4070,"39":4070,"40":4070,"41":4070,"42":4070,"43":4069,"44":4069,"45":4069,"46":4070,"47":4070,"48":4069,"49":4069,"50":4070,"51":4070,"52":4070,"53":4069,"54":4070,"55":4069,"56":4070,"57":4070,"58":4069,"59":4070,"60":4070,"61":4070,"62":4069,"63":4069,"64":4070,"65":4069,"66":4070,"67":4069,"68":4069,"69":4069,"70":4069,"71":4070,"72":4069,"73":4070,"74":4069,"75":4069,"76":4069,"77":4069,"78":4070,"79":4069,"80":4069,"81":4070,"82":4069,"83":4069,"84":4070,"85":4070,"86":4070,"87":4069,"88":4069,"89":4069,"90":4070,"91":4070,"92":4069,"93":4070,"94":4070,"95":4069,"96":4069,"97":4069,"98":4070,"99":4070,"100":4070,"101":4069,"102":4069,"103":4070,"104":4070,"105":4069,"106":4070,"107":4069,"108":4069,"109":4069,"110":4070,"111":4070,"112":4070,"113":4069,"114":4070,"115":4070,"116":4069,"117":4069,"118":4070,"119":4069,"120":4069,"121":4069,"122":4069,"123":4070,"124":4070,"125":4069,"126":4069,"127":4069,"128":4069,"129":4069,"130":4070,"131":4070,"132":4069,"133":4070,"134":4069,"135":4070,"136":4069,"137":4070,"138":4070,"139":4069,"140":4069,"141":4070,"142":4070,"143":4069,"144":4069,"145":4070,"146":4069,"147":4069,"148":4070,"149":4069,"150":4070,"151":4069,"152":4070,"153":4069,"154":4070,"155":4070,"156":4069,"157":4069,"158":4069,"159":4070,"160":4070,"161":4070,"162":4070,"163":4070,"164":4069,"165":4069,"166":4069,"167":4069,"168":4070,"169":4069,"170":4070,"171":4070,"172":4069,"173":4070,"174":4069,"175":4069,"176":4070,"177":4069,"178":4070,"179":4069,"180":4070,"181":4070,"182":4069,"183":4069,"184":4070,"185":4070,"186":4069,"187":4070,"188":4070,"189":4070,"190":4069,"191":4069,"192":4070,"193":4070,"194":4069,"195":4069,"196":4069,"197":4070,"198":4069,"199":4070,"200":4070,"201":4070,"202":4070,"203":4070,"204":4069,"205":4070,"206":4070,"207":4070,"208":4069,"209":4069,"210":4069,"211":4069,"212":4069,"213":4069,"214":4069,"215":4069,"216":4069,"217":4070,"218":4070,"219":4069,"220":4070,"221":4069,"222":4069,"223":4070,"224":4069,"225":4069,"226":4069,"227":4070,"228":4069,"229":4069,"230":4069,"231":4069,"232":4069,"233":4070,"234":4070,"235":4070,"236":4070,"237":4070,"238":4070,"239":4070,"240":4069,"241":4070,"242":4069,"243":4070,"244":4070,"245":4069,"246":4069,"247":4070,"248":4069,"249":4070,"250":4069,"251":4069,"252":4070,"253":4070,"254":4070,"255":4069,"256":4070,"257":4070,"258":4070,"259":4069,"260":4069,"261":4069,"262":4070,"263":4070,"264":4069,"265":4069,"266":4069,"267":4070,"268":4070,"269":4070,"270":4069,"271":4069,"272":4070,"273":4070,"274":4069,"275":4070,"276":4069,"277":4070,"278":4070,"279":4070,"280":4070,"281":4070,"282":4069,"283":4069,"284":4069,"285":4070,"286":4070,"287":4070,"288":4069,"289":4069,"290":4070,"291":4069,"292":4070,"293":4069,"294":4069,"295":4070,"296":4070,"297":4070,"298":4070,"299":4070,"300":4070,"301":4069,"302":4070,"303":4069,"304":4070,"305":4069,"306":4069,"307":4070,"308":4070,"309":4070,"310":4070,"311":4069,"312":4069,"313":4069,"314":4069,"315":4070,"316":4070,"317":4070,"318":4070,"319":4070,"320":4070,"321":4069,"322":4069,"323":4069,"324":4070,"325":4070,"326":4070,"327":4069,"328":4069,"329":4069,"330":4069,"331":4070,"332":4070,"333":4070,"334":4070,"335":4070,"336":4070,"337":4070,"338":4070,"339":4069,"340":4069,"341":4070,"342":4069,"343":4069,"344":4069,"345":4070,"346":4070,"347":4070,"348":4069,"349":4070,"350":4069,"351":4070,"352":4070,"353":4069,"354":4070,"355":4070,"356":4069,"357":4069,"358":4069,"359":4069,"360":4070,"361":4070,"362":4070,"363":4069,"364":4069,"365":4070,"366":4069,"367":4070,"368":4069,"369":4070,"370":4070,"371":4070,"372":4070,"373":4070,"374":4070,"375":4070,"376":4070,"377":4069,"378":4070,"379":4069,"380":4070,"381":4070,"382":4069,"383":4070,"384":4070,"385":4069,"386":4069,"387":4070,"388":4069,"389":4069,"390":4070,"391":4069,"392":4070,"393":4069,"394":4070,"395":4069,"396":4070,"397":4070,"398":4070,"399":4069,"400":4070,"401":4070,"402":4070,"403":4069,"404":4069,"405":4069,"406":4070,"407":4069,"408":4070,"409":4070,"410":4069,"411":4070,"412":4070,"413":4069,"414":4069,"415":4070,"416":4069,"417":4069,"418":4070,"419":4069,"420":4069,"421":4069,"422":4069,"423":4070,"424":4070,"425":4069,"426":4070,"427":4069,"428":4069,"429":4070,"430":4070,"431":4070,"432":4070,"433":4069,"434":4070,"435":4069,"436":4070,"437":4070,"438":4070,"439":4070,"440":4069,"441":4070,"442":4070,"443":4069,"444":4070,"445":4069,"446":4069,"447":4070,"448":4069,"449":4070,"450":4070,"451":4070,"452":4069,"453":4070,"454":4070,"455":4069,"456":4070,"457":4070,"458":4069,"459":4070,"460":4069,"461":4069,"462":4069,"463":4070,"464":4069,"465":4070,"466":4070,"467":4069,"468":4070,"469":4070,"470":4069,"471":4069,"472":4070,"473":4070,"474":4069,"475":4070,"476":4069,"477":4070,"478":4069,"479":4069,"480":4070,"481":4069,"482":4069,"483":4070,"484":4070,"485":4069,"486":4070,"487":4070,"488":4070,"489":4070,"490":4069,"491":4070,"492":4070,"493":4070,"494":4070,"495":4070,"496":4069,"497":4070,"498":4070,"499":4070,"500":4069,"501":4070,"502":4069,"503":4070,"504":4069,"505":4069,"506":4070,"507":4070,"508":4069,"509":4070,"510":4070,"511":4070,"512":4070,"513":4070,"514":4069,"515":4069,"516":4069,"517":4070,"518":4069,"519":4070,"520":4069,"521":4069,"522":4069,"523":4069,"524":4070,"525":4070,"526":4069,"527":4069,"528":4070,"529":4070,"530":4069,"531":4070,"532":4070,"533":4070,"534":4070,"535":4069,"536":4070,"537":4070,"538":4069,"539":4070,"540":4069,"541":4070,"542":4069,"543":4070,"544":4069,"545":4069,"546":4069,"547":4069,"548":4070,"549":4069,"550":4070,"551":4070,"552":4069,"553":4070,"554":4069,"555":4069,"556":4069,"557":4070,"558":4070,"559":4069,"560":4070,"561":4069,"562":4070,"563":4069,"564":4069,"565":4069,"566":4070,"567":4069,"568":4069,"569":4069,"570":4069,"571":4070,"572":4069,"573":4069,"574":4070,"575":4069,"576":4069,"577":4069,"578":4070,"579":4070,"580":4069,"581":4070,"582":4070,"583":4070,"584":4070,"585":4070,"586":4069,"587":4070,"588":4070,"589":4069,"590":4069,"591":4070,"592":4070,"593":4069,"594":4069,"595":4070,"596":4069,"597":4069,"598":4070,"599":4069,"600":4070,"601":4069,"602":4070,"603":4069,"604":4070,"605":4069,"606":4070,"607":4069,"608":4069,"609":4070,"610":4070,"611":4070,"612":4069,"613":4069,"614":4069,"615":4070,"616":4069,"617":4070,"618":4069,"619":4070,"620":4069,"621":4069,"622":4070,"623":4069,"624":4069,"625":4069,"626":4069,"627":4070,"628":4070,"629":4069,"630":4070,"631":4070,"632":4069,"633":4070,"634":4069,"635":4070,"636":4070,"637":4070,"638":4070,"639":4070,"640":4069,"641":4069,"642":4069,"643":4069,"644":4070,"645":4069,"646":4069,"647":4070,"648":4069,"649":4069,"650":4070,"651":4069,"652":4070,"653":4069,"654":4069,"655":4069,"656":4069,"657":4069,"658":4070,"659":4070,"660":4070,"661":4069,"662":4069,"663":4069,"664":4070,"665":4069,"666":4070,"667":4069,"668":4069,"669":4070,"670":4069,"671":4070,"672":4070,"673":4069,"674":4069,"675":4070,"676":4070,"677":4070,"678":4070,"679":4070,"680":4069,"681":4070,"682":4070,"683":4070,"684":4070,"685":4069,"686":4069,"687":4070,"688":4069,"689":4069,"690":4070,"691":4070,"692":4069,"693":4070,"694":4070,"695":4070,"696":4070,"697":4070,"698":4069,"699":4069,"700":4070,"701":4069,"702":4070,"703":4069,"704":4069,"705":4070,"706":4070,"707":4070,"708":4069,"709":4069,"710":4070,"711":4070,"712":4070,"713":4069,"714":4069,"715":4069,"716":4070,"717":4069,"718":4070,"719":4069,"720":4070,"721":4069,"722":4069,"723":4069,"724":4070,"725":4070,"726":4070,"727":4070,"728":4069,"729":4069,"730":4070,"731":4070,"732":4069,"733":4070,"734":4070,"735":4070,"736":4070,"737":4069,"738":4069,"739":4070,"740":4070,"741":4070,"742":4070,"743":4069,"744":4070,"745":4070,"746":4070,"747":4070,"748":4069,"749":4069,"750":4069,"751":4069,"752":4069,"753":4069,"754":4069,"755":4069,"756":4070,"757":4070,"758":4069,"759":4069,"760":4069,"761":4070,"762":4069,"763":4069,"764":4070,"765":4070,"766":4069,"767":4070,"768":4070,"769":4069,"770":4070,"771":4069,"772":4070,"773":4070,"774":4070,"775":4070,"776":4069,"777":4069,"778":4069,"779":4069,"780":4070,"781":4070,"782":4070,"783":4069,"784":4069,"785":4069,"786":4069,"787":4069,"788":4069,"789":4070,"790":4069,"791":4070,"792":4069,"793":4069,"794":4069,"795":4069,"796":4070,"797":4070,"798":4070,"799":4070,"800":4070,"801":4070,"802":4070,"803":4070,"804":4070,"805":4070,"806":4069,"807":4069,"808":4069,"809":4070,"810":4070,"811":4070,"812":4070,"813":4069,"814":4070,"815":4069,"816":4069,"817":4070,"818":4070,"819":4070,"820":4069,"821":4069,"822":4070,"823":4070,"824":4070,"825":4069,"826":4070,"827":4069,"828":4070,"829":4070,"830":4069,"831":4070,"832":4070,"833":4069,"834":4069,"835":4070,"836":4069,"837":4070,"838":4069,"839":4069,"840":4069,"841":4070,"842":4070,"843":4070,"844":4069,"845":4069,"846":4070,"847":4069,"848":4070,"849":4070,"850":4070,"851":4069,"852":4070,"853":4069,"854":4070,"855":4069,"856":4069,"857":4069,"858":4069,"859":4070,"860":4069,"861":4070,"862":4070,"863":4069,"864":4069,"865":4069,"866":4070,"867":4069,"868":4069,"869":4069,"870":4069,"871":4070,"872":4069,"873":4069,"874":4069,"875":4070,"876":4070,"877":4069,"878":4069,"879":4069,"880":4069,"881":4070,"882":4069,"883":4070,"884":4070,"885":4069,"886":4070,"887":4070,"888":4070,"889":4070,"890":4070,"891":4069,"892":4069,"893":4069,"894":4069,"895":4070,"896":4069,"897":4070,"898":4070,"899":4069,"900":4069,"901":4069,"902":4070,"903":4069,"904":4069,"905":4069,"906":4070,"907":4069,"908":4069,"909":4070,"910":4070,"911":4069,"912":4069,"913":4070,"914":4070,"915":4069,"916":4069,"917":4070,"918":4069,"919":4070,"920":4070,"921":4069,"922":4069,"923":4070,"924":4069,"925":4070,"926":4070,"927":4069,"928":4070,"929":4069,"930":4070,"931":4070,"932":4069,"933":4069,"934":4070,"935":4069,"936":4070,"937":4070,"938":4069,"939":4069,"940":4070,"941":4070,"942":4070,"943":4069,"944":4069,"945":4070,"946":4069,"947":4070,"948":4070,"949":4070,"950":4069,"951":4069,"952":4070,"953":4069,"954":4069,"955":4070,"956":4070,"957":4069,"958":4070,"959":4070,"960":4069,"961":4069,"962":4070,"963":4070,"964":4070,"965":4069,"966":4070,"967":4069,"968":4070,"969":4069,"970":4069,"971":4069,"972":4070,"973":4070,"974":4070,"975":4069,"976":4069,"977":4070,"978":4069,"979":4070,"980":4070,"981":4069,"982":4070,"983":4070,"984":4069,"985":4070,"986":4070,"987":4070,"988":4069,"989":4070,"990":4070,"991":4069,"992":4070,"993":4069,"994":4069,"995":4069,"996":4070,"997":4070,"998":4069,"999":4069,"1000":4070,"1001":4070,"1002":4070,"1003":4069,"1004":4069,"1005":4070,"1006":4070,"1007":4070,"1008":4069,"1009":4070,"1010":4070,"1011":4069,"1012":4069,"1013":4069,"1014":4070,"1015":4070,"1016":4069,"1017":4069,"1018":4069,"1019":4070,"1020":4069,"1021":4070,"1022":4069,"1023":4069,"1024":4069,"1025":4070,"1026":4070,"1027":4070,"1028":4070,"1029":4070,"1030":4070,"1031":4069,"1032":4070,"1033":4070,"1034":4069,"1035":4070,"1036":4069,"1037":4070,"1038":4070,"1039":4069,"1040":4069,"1041":4070,"1042":4070,"1043":4069,"1044":4070,"1045":4070,"1046":4070,"1047":4069,"1048":4069,"1049":4069,"1050":4069,"1051":4070,"1052":4069,"1053":4069,"1054":4070,"1055":4070,"1056":4069,"1057":4070,"1058":4069,"1059":4069,"1060":4070,"1061":4069,"1062":4070,"1063":4070,"1064":4070,"1065":4070,"1066":4070,"1067":4069,"1068":4069,"1069":4069,"1070":4069,"1071":4069,"1072":4069,"1073":4069,"1074":4069,"1075":4069,"1076":4070,"1077":4070,"1078":4069,"1079":4069,"1080":4070,"1081":4070,"1082":4069,"1083":4070,"1084":4070,"1085":4069,"1086":4069,"1087":4070,"1088":4069,"1089":4069,"1090":4070,"1091":4070,"1092":4070,"1093":4069,"1094":4069,"1095":4070,"1096":4069,"1097":4069,"1098":4069,"1099":4070,"1100":4070,"1101":4070,"1102":4070,"1103":4070,"1104":4070,"1105":4069,"1106":4070,"1107":4070,"1108":4070,"1109":4070,"1110":4069,"1111":4070,"1112":4069,"1113":4070,"1114":4070,"1115":4069,"1116":4070,"1117":4070,"1118":4070,"1119":4070,"1120":4069,"1121":4070,"1122":4070,"1123":4070,"1124":4069,"1125":4070,"1126":4070,"1127":4069,"1128":4070,"1129":4069,"1130":4070,"1131":4070,"1132":4070,"1133":4069,"1134":4070,"1135":4069,"1136":4070,"1137":4070,"1138":4069,"1139":4069,"1140":4070,"1141":4069,"1142":4070,"1143":4069,"1144":4070,"1145":4070,"1146":4070,"1147":4070,"1148":4069,"1149":4070,"1150":4069,"1151":4069,"1152":4070,"1153":4069,"1154":4070,"1155":4069,"1156":4069,"1157":4070,"1158":4069,"1159":4069,"1160":4069,"1161":4070,"1162":4069,"1163":4070,"1164":4070,"1165":4069,"1166":4069,"1167":4070,"1168":4070,"1169":4070,"1170":4070,"1171":4069,"1172":4070,"1173":4070,"1174":4069,"1175":4070,"1176":4069,"1177":4070,"1178":4070,"1179":4070,"1180":4069,"1181":4070,"1182":4069,"1183":4070,"1184":4070,"1185":4069,"1186":4070,"1187":4069,"1188":4070,"1189":4070,"1190":4069,"1191":4069,"1192":4070,"1193":4069,"1194":4070,"1195":4070,"1196":4070,"1197":4070,"1198":4070,"1199":4069,"1200":4069,"1201":4070,"1202":4069,"1203":4070,"1204":4070,"1205":4070,"1206":4070,"1207":4069,"1208":4070,"1209":4070,"1210":4069,"1211":4069,"1212":4069,"1213":4070,"1214":4069,"1215":4069,"1216":4070,"1217":4069,"1218":4070,"1219":4070,"1220":4069,"1221":4069,"1222":4069,"1223":4070,"1224":4070,"1225":4069,"1226":4070,"1227":4070,"1228":4070,"1229":4070,"1230":4069,"1231":4070,"1232":4070,"1233":4069,"1234":4069,"1235":4069,"1236":4069,"1237":4070,"1238":4069,"1239":4069,"1240":4069,"1241":4070,"1242":4069,"1243":4069,"1244":4069,"1245":4069,"1246":4069,"1247":4069,"1248":4069,"1249":4070,"1250":4070,"1251":4070,"1252":4070,"1253":4069,"1254":4070,"1255":4070,"1256":4070,"1257":4069,"1258":4069,"1259":4069,"1260":4070,"1261":4070,"1262":4070,"1263":4069,"1264":4069,"1265":4070,"1266":4069,"1267":4070,"1268":4070,"1269":4070,"1270":4069,"1271":4069,"1272":4070,"1273":4069,"1274":4070,"1275":4069,"1276":4069,"1277":4070,"1278":4070,"1279":4070,"1280":4070,"1281":4069,"1282":4070,"1283":4070,"1284":4069,"1285":4070,"1286":4070,"1287":4070,"1288":4069,"1289":4070,"1290":4069,"1291":4069,"1292":4069,"1293":4069,"1294":4069,"1295":4070,"1296":4069,"1297":4069,"1298":4070,"1299":4070,"1300":4070,"1301":4069,"1302":4069,"1303":4069,"1304":4069,"1305":4070,"1306":4069,"1307":4069,"1308":4069,"1309":4070,"1310":4070,"1311":4069,"1312":4069,"1313":4070,"1314":4069,"1315":4069,"1316":4070,"1317":4070,"1318":4070,"1319":4069,"1320":4069,"1321":4069,"1322":4070,"1323":4070,"1324":4069,"1325":4069,"1326":4070,"1327":4069,"1328":4069,"1329":4069,"1330":4069,"1331":4070,"1332":4069,"1333":4069,"1334":4069,"1335":4069,"1336":4070,"1337":4070,"1338":4070,"1339":4069,"1340":4070,"1341":4069,"1342":4070,"1343":4069,"1344":4069,"1345":4069,"1346":4069,"1347":4070,"1348":4070,"1349":4069,"1350":4069,"1351":4069,"1352":4070,"1353":4070,"1354":4070,"1355":4070,"1356":4069,"1357":4069,"1358":4070,"1359":4070,"1360":4070,"1361":4069,"1362":4070,"1363":4069,"1364":4070,"1365":4070,"1366":4069,"1367":4070,"1368":4070,"1369":4069,"1370":4070,"1371":4069,"1372":4069,"1373":4069,"1374":4070,"1375":4069,"1376":4070,"1377":4070,"1378":4070,"1379":4069,"1380":4070,"1381":4070,"1382":4069,"1383":4069,"1384":4069,"1385":4069,"1386":4069,"1387":4069,"1388":4070,"1389":4069,"1390":4070,"1391":4069,"1392":4070,"1393":4070,"1394":4069,"1395":4070,"1396":4069,"1397":4070,"1398":4070,"1399":4069,"1400":4069,"1401":4069,"1402":4069,"1403":4070,"1404":4070,"1405":4069,"1406":4069,"1407":4069,"1408":4069,"1409":4070,"1410":4069,"1411":4069,"1412":4069,"1413":4069,"1414":4070,"1415":4070,"1416":4069,"1417":4070,"1418":4069,"1419":4069,"1420":4070,"1421":4070,"1422":4069,"1423":4069,"1424":4070,"1425":4069,"1426":4069,"1427":4069,"1428":4070,"1429":4069,"1430":4070,"1431":4069,"1432":4069,"1433":4070,"1434":4069,"1435":4070,"1436":4069,"1437":4070,"1438":4070,"1439":4069,"1440":4069,"1441":4069,"1442":4069,"1443":4070,"1444":4070,"1445":4070,"1446":4070,"1447":4070,"1448":4070,"1449":4070,"1450":4070,"1451":4069,"1452":4070,"1453":4070,"1454":4070,"1455":4069,"1456":4069,"1457":4070,"1458":4069,"1459":4069,"1460":4070,"1461":4070,"1462":4070,"1463":4069,"1464":4070,"1465":4069,"1466":4070,"1467":4069,"1468":4070,"1469":4069,"1470":4070,"1471":4070,"1472":4069,"1473":4069,"1474":4070,"1475":4069,"1476":4069,"1477":4069,"1478":4070,"1479":4070,"1480":4069,"1481":4069,"1482":4069,"1483":4069,"1484":4069,"1485":4070,"1486":4070,"1487":4069,"1488":4070,"1489":4070,"1490":4070,"1491":4069,"1492":4070,"1493":4069,"1494":4070,"1495":4069,"1496":4070,"1497":4070,"1498":4069,"1499":4069,"1500":4070,"1501":4069,"1502":4070,"1503":4070,"1504":4070,"1505":4069,"1506":4070,"1507":4069,"1508":4070,"1509":4069,"1510":4069,"1511":4070,"1512":4070,"1513":4069,"1514":4070,"1515":4069,"1516":4070,"1517":4069,"1518":4069,"1519":4069,"1520":4070,"1521":4070,"1522":4069,"1523":4069,"1524":4070,"1525":4070,"1526":4069,"1527":4070,"1528":4070,"1529":4070,"1530":4070,"1531":4070,"1532":4070,"1533":4069,"1534":4069,"1535":4069,"1536":4070,"1537":4069,"1538":4070,"1539":4070,"1540":4070,"1541":4070,"1542":4070,"1543":4069,"1544":4070,"1545":4070,"1546":4070,"1547":4069,"1548":4070,"1549":4070,"1550":4070,"1551":4070,"1552":4069,"1553":4069,"1554":4069,"1555":4069,"1556":4069,"1557":4069,"1558":4070,"1559":4069,"1560":4069,"1561":4070,"1562":4069,"1563":4070,"1564":4069,"1565":4070,"1566":4069,"1567":4069,"1568":4069,"1569":4070,"1570":4070,"1571":4069,"1572":4070,"1573":4069,"1574":4069,"1575":4070,"1576":4070,"1577":4069,"1578":4070,"1579":4070,"1580":4069,"1581":4069,"1582":4070,"1583":4069,"1584":4070,"1585":4069,"1586":4069,"1587":4069,"1588":4070,"1589":4069,"1590":4070,"1591":4070,"1592":4069,"1593":4070,"1594":4069,"1595":4069,"1596":4069,"1597":4069,"1598":4069,"1599":4069,"1600":4070,"1601":4070,"1602":4069,"1603":4070,"1604":4070,"1605":4070,"1606":4070,"1607":4070,"1608":4069,"1609":4069,"1610":4069,"1611":4069,"1612":4070,"1613":4070,"1614":4069,"1615":4070,"1616":4070,"1617":4069,"1618":4070,"1619":4069,"1620":4069,"1621":4070,"1622":4069,"1623":4070,"1624":4069,"1625":4070,"1626":4069,"1627":4069,"1628":4070,"1629":4069,"1630":4069,"1631":4070,"1632":4070,"1633":4069,"1634":4069,"1635":4070,"1636":4069,"1637":4070,"1638":4070,"1639":4070,"1640":4070,"1641":4069,"1642":4069,"1643":4069,"1644":4070,"1645":4070,"1646":4070,"1647":4069,"1648":4070,"1649":4070,"1650":4070,"1651":4069,"1652":4069,"1653":4070,"1654":4070,"1655":4069,"1656":4069,"1657":4069,"1658":4069,"1659":4070,"1660":4069,"1661":4069,"1662":4069,"1663":4070,"1664":4070,"1665":4070,"1666":4070,"1667":4070,"1668":4069,"1669":4069,"1670":4070,"1671":4069,"1672":4070,"1673":4070,"1674":4069,"1675":4070,"1676":4069,"1677":4070,"1678":4070,"1679":4070,"1680":4070,"1681":4070,"1682":4070,"1683":4069,"1684":4070,"1685":4070,"1686":4069,"1687":4069,"1688":4069,"1689":4070,"1690":4070,"1691":4069,"1692":4069,"1693":4069,"1694":4070,"1695":4070,"1696":4069,"1697":4070,"1698":4070,"1699":4070,"1700":4069,"1701":4070,"1702":4070,"1703":4069,"1704":4070,"1705":4070,"1706":4069,"1707":4069,"1708":4070,"1709":4070,"1710":4069,"1711":4070,"1712":4070,"1713":4069,"1714":4069,"1715":4070,"1716":4069,"1717":4069,"1718":4070,"1719":4069,"1720":4070,"1721":4069,"1722":4070,"1723":4069,"1724":4070,"1725":4070,"1726":4070,"1727":4070,"1728":4069,"1729":4070,"1730":4070,"1731":4069,"1732":4069,"1733":4070,"1734":4070,"1735":4069,"1736":4069,"1737":4070,"1738":4069,"1739":4069,"1740":4070,"1741":4070,"1742":4069,"1743":4070,"1744":4070,"1745":4070,"1746":4069,"1747":4070,"1748":4070,"1749":4069,"1750":4069,"1751":4070,"1752":4070,"1753":4070,"1754":4069,"1755":4070,"1756":4069,"1757":4070,"1758":4069,"1759":4070,"1760":4069,"1761":4069,"1762":4069,"1763":4070,"1764":4069,"1765":4069,"1766":4070,"1767":4069,"1768":4069,"1769":4069,"1770":4070,"1771":4069,"1772":4070,"1773":4070,"1774":4070,"1775":4069,"1776":4069,"1777":4069,"1778":4069,"1779":4070,"1780":4069,"1781":4070,"1782":4069,"1783":4070,"1784":4069,"1785":4070,"1786":4069,"1787":4069,"1788":4070,"1789":4070,"1790":4069,"1791":4069,"1792":4069,"1793":4069,"1794":4070,"1795":4069,"1796":4069,"1797":4069,"1798":4069,"1799":4070,"1800":4069,"1801":4069,"1802":4069,"1803":4069,"1804":4070,"1805":4069,"1806":4069,"1807":4069,"1808":4069,"1809":4069,"1810":4069,"1811":4070,"1812":4070,"1813":4070,"1814":4070,"1815":4069,"1816":4069,"1817":4070,"1818":4069,"1819":4070,"1820":4070,"1821":4069,"1822":4069,"1823":4069,"1824":4069,"1825":4069,"1826":4069,"1827":4069,"1828":4070,"1829":4069,"1830":4070,"1831":4070,"1832":4070,"1833":4070,"1834":4069,"1835":4070,"1836":4070,"1837":4070,"1838":4069,"1839":4070,"1840":4070,"1841":4070,"1842":4069,"1843":4070,"1844":4070,"1845":4070,"1846":4070,"1847":4069,"1848":4069,"1849":4070,"1850":4070,"1851":4070,"1852":4070,"1853":4069,"1854":4069,"1855":4070,"1856":4069,"1857":4070,"1858":4069,"1859":4069,"1860":4069,"1861":4070,"1862":4069,"1863":4070,"1864":4070,"1865":4070,"1866":4069,"1867":4070,"1868":4070,"1869":4070,"1870":4069,"1871":4069,"1872":4069,"1873":4070,"1874":4070,"1875":4069,"1876":4069,"1877":4069,"1878":4070,"1879":4069,"1880":4069,"1881":4069,"1882":4070,"1883":4069,"1884":4070,"1885":4070,"1886":4069,"1887":4070,"1888":4069,"1889":4069,"1890":4069,"1891":4070,"1892":4070,"1893":4070,"1894":4070,"1895":4070,"1896":4069,"1897":4070,"1898":4069,"1899":4069,"1900":4070,"1901":4069,"1902":4070,"1903":4069,"1904":4070,"1905":4070,"1906":4069,"1907":4069,"1908":4069,"1909":4070,"1910":4070,"1911":4070,"1912":4070,"1913":4069,"1914":4070,"1915":4070,"1916":4069,"1917":4070,"1918":4070,"1919":4070,"1920":4069,"1921":4069,"1922":4070,"1923":4069,"1924":4069,"1925":4070,"1926":4069,"1927":4069,"1928":4069,"1929":4069,"1930":4069,"1931":4069,"1932":4070,"1933":4070,"1934":4069,"1935":4070,"1936":4069,"1937":4070,"1938":4069,"1939":4069,"1940":4069,"1941":4069,"1942":4070,"1943":4070,"1944":4069,"1945":4070,"1946":4070,"1947":4070,"1948":4070,"1949":4070,"1950":4069,"1951":4069,"1952":4069,"1953":4069,"1954":4069,"1955":4070,"1956":4069,"1957":4070,"1958":4070,"1959":4070,"1960":4069,"1961":4070,"1962":4069,"1963":4070,"1964":4069,"1965":4069,"1966":4069,"1967":4069,"1968":4069,"1969":4070,"1970":4070,"1971":4070,"1972":4070,"1973":4069,"1974":4069,"1975":4070,"1976":4070,"1977":4069,"1978":4070,"1979":4070,"1980":4070,"1981":4069,"1982":4069,"1983":4070,"1984":4069,"1985":4069,"1986":4070,"1987":4069,"1988":4070,"1989":4070,"1990":4069,"1991":4069,"1992":4070,"1993":4069,"1994":4069,"1995":4069,"1996":4070,"1997":4070,"1998":4069,"1999":4069,"2000":4069,"2001":4070,"2002":4069,"2003":4070,"2004":4069,"2005":4069,"2006":4070,"2007":4069,"2008":4070,"2009":4069,"2010":4070,"2011":4069,"2012":4070,"2013":4070,"2014":4070,"2015":4070,"2016":4069,"2017":4070,"2018":4070,"2019":4070,"2020":4070,"2021":4070,"2022":4070,"2023":4070,"2024":4070,"2025":4070,"2026":4070,"2027":4069,"2028":4070,"2029":4069,"2030":4069,"2031":4069,"2032":4070,"2033":4069,"2034":4069,"2035":4070,"2036":4070,"2037":4070,"2038":4069,"2039":4070,"2040":4069,"2041":4069,"2042":4069,"2043":4069,"2044":4070,"2045":4070,"2046":4070,"2047":4069,"2048":4069,"2049":4070,"2050":4069,"2051":4069,"2052":4069,"2053":4070,"2054":4070,"2055":4069,"2056":4070,"2057":4069,"2058":4069,"2059":4070,"2060":4070,"2061":4070,"2062":4070,"2063":4070,"2064":4069,"2065":4070,"2066":4069,"2067":4069,"2068":4070,"2069":4069,"2070":4070,"2071":4069,"2072":4070,"2073":4070,"2074":4069,"2075":4070,"2076":4070,"2077":4069,"2078":4070,"2079":4070,"2080":4070,"2081":4069,"2082":4070,"2083":4069,"2084":4069,"2085":4069,"2086":4069,"2087":4069,"2088":4069,"2089":4070,"2090":4070,"2091":4069,"2092":4070,"2093":4070,"2094":4069,"2095":4070,"2096":4070,"2097":4069,"2098":4069,"2099":4070,"2100":4070,"2101":4069,"2102":4070,"2103":4069,"2104":4069,"2105":4069,"2106":4069,"2107":4070,"2108":4070,"2109":4069,"2110":4069,"2111":4069,"2112":4069,"2113":4070,"2114":4069,"2115":4070,"2116":4070,"2117":4069,"2118":4070,"2119":4069,"2120":4070,"2121":4070,"2122":4069,"2123":4070,"2124":4069,"2125":4069,"2126":4070,"2127":4069,"2128":4069,"2129":4069,"2130":4070,"2131":4069,"2132":4069,"2133":4069,"2134":4069,"2135":4070,"2136":4070,"2137":4070,"2138":4070,"2139":4069,"2140":4070,"2141":4070,"2142":4070,"2143":4069,"2144":4070,"2145":4070,"2146":4070,"2147":4069,"2148":4070,"2149":4069,"2150":4070,"2151":4070,"2152":4069,"2153":4069,"2154":4069,"2155":4069,"2156":4070,"2157":4070,"2158":4069,"2159":4069,"2160":4069,"2161":4069,"2162":4069,"2163":4070,"2164":4070,"2165":4069,"2166":4069,"2167":4070,"2168":4069,"2169":4069,"2170":4069,"2171":4069,"2172":4069,"2173":4069,"2174":4070,"2175":4070,"2176":4070,"2177":4070,"2178":4070,"2179":4070,"2180":4070,"2181":4069,"2182":4070,"2183":4069,"2184":4070,"2185":4070,"2186":4070,"2187":4070,"2188":4070,"2189":4070,"2190":4070,"2191":4070,"2192":4069,"2193":4069,"2194":4070,"2195":4070,"2196":4070,"2197":4070,"2198":4070,"2199":4070,"2200":4069,"2201":4069,"2202":4069,"2203":4069,"2204":4070,"2205":4069,"2206":4069,"2207":4070,"2208":4070,"2209":4069,"2210":4070,"2211":4069,"2212":4069,"2213":4069,"2214":4069,"2215":4070,"2216":4069,"2217":4069,"2218":4070,"2219":4070,"2220":4069,"2221":4069,"2222":4069,"2223":4069,"2224":4069,"2225":4070,"2226":4069,"2227":4070,"2228":4070,"2229":4069,"2230":4069,"2231":4070,"2232":4069,"2233":4070,"2234":4070,"2235":4070,"2236":4069,"2237":4070,"2238":4070,"2239":4069,"2240":4069,"2241":4070,"2242":4070,"2243":4069,"2244":4070,"2245":4070,"2246":4070,"2247":4070,"2248":4070,"2249":4070,"2250":4070,"2251":4069,"2252":4069,"2253":4069,"2254":4069,"2255":4070,"2256":4070,"2257":4069,"2258":4069,"2259":4070,"2260":4069,"2261":4069,"2262":4069,"2263":4070,"2264":4069,"2265":4069,"2266":4070,"2267":4069,"2268":4070,"2269":4069,"2270":4069,"2271":4070,"2272":4070,"2273":4069,"2274":4070,"2275":4069,"2276":4070,"2277":4070,"2278":4069,"2279":4070,"2280":4069,"2281":4069,"2282":4069,"2283":4070,"2284":4070,"2285":4069,"2286":4070,"2287":4069,"2288":4070,"2289":4070,"2290":4069,"2291":4069,"2292":4070,"2293":4070,"2294":4070,"2295":4069,"2296":4070,"2297":4070,"2298":4069,"2299":4069,"2300":4070,"2301":4069,"2302":4069,"2303":4069,"2304":4069,"2305":4070,"2306":4069,"2307":4070,"2308":4069,"2309":4070,"2310":4069,"2311":4070,"2312":4070,"2313":4069,"2314":4069,"2315":4070,"2316":4069,"2317":4070,"2318":4069,"2319":4069,"2320":4069,"2321":4070,"2322":4070,"2323":4069,"2324":4070,"2325":4069,"2326":4069,"2327":4069,"2328":4069,"2329":4069,"2330":4070,"2331":4070,"2332":4069,"2333":4070,"2334":4070,"2335":4069,"2336":4069,"2337":4070,"2338":4069,"2339":4070,"2340":4069,"2341":4070,"2342":4069,"2343":4070,"2344":4070,"2345":4069,"2346":4069,"2347":4070,"2348":4070,"2349":4070,"2350":4070,"2351":4070,"2352":4070,"2353":4070,"2354":4070,"2355":4069,"2356":4070,"2357":4069,"2358":4069,"2359":4069,"2360":4070,"2361":4070,"2362":4070,"2363":4069,"2364":4069,"2365":4070,"2366":4070,"2367":4070,"2368":4070,"2369":4069,"2370":4070,"2371":4070,"2372":4069,"2373":4069,"2374":4069,"2375":4069,"2376":4070,"2377":4069,"2378":4070,"2379":4070,"2380":4069,"2381":4069,"2382":4069,"2383":4069,"2384":4069,"2385":4070,"2386":4069,"2387":4069,"2388":4070,"2389":4070,"2390":4070,"2391":4070,"2392":4069,"2393":4069,"2394":4069,"2395":4069,"2396":4070,"2397":4069,"2398":4070,"2399":4070,"2400":4070,"2401":4070,"2402":4070,"2403":4070,"2404":4069,"2405":4069,"2406":4070,"2407":4070,"2408":4069,"2409":4069,"2410":4069,"2411":4069,"2412":4070,"2413":4070,"2414":4070,"2415":4069,"2416":4069,"2417":4070,"2418":4069,"2419":4069,"2420":4070,"2421":4070,"2422":4070,"2423":4070,"2424":4069,"2425":4069,"2426":4069,"2427":4070,"2428":4069,"2429":4070,"2430":4069,"2431":4070,"2432":4070,"2433":4069,"2434":4069,"2435":4070,"2436":4070,"2437":4069,"2438":4069,"2439":4069,"2440":4069,"2441":4070,"2442":4070,"2443":4069,"2444":4070,"2445":4069,"2446":4070,"2447":4069,"2448":4069,"2449":4069,"2450":4069,"2451":4070,"2452":4069,"2453":4070,"2454":4069,"2455":4070,"2456":4069,"2457":4070,"2458":4070,"2459":4070,"2460":4070,"2461":4069,"2462":4070,"2463":4070,"2464":4070,"2465":4069,"2466":4070,"2467":4069,"2468":4069,"2469":4070,"2470":4069,"2471":4070,"2472":4070,"2473":4069,"2474":4069,"2475":4070,"2476":4070,"2477":4069,"2478":4070,"2479":4070,"2480":4070,"2481":4069,"2482":4070,"2483":4069,"2484":4069,"2485":4069,"2486":4069,"2487":4070,"2488":4069,"2489":4070,"2490":4070,"2491":4070,"2492":4069,"2493":4070,"2494":4069,"2495":4069,"2496":4070,"2497":4070,"2498":4069,"2499":4070,"2500":4069,"2501":4069,"2502":4069,"2503":4070,"2504":4069,"2505":4070,"2506":4070,"2507":4070,"2508":4070,"2509":4070,"2510":4070,"2511":4069,"2512":4069,"2513":4070,"2514":4069,"2515":4069,"2516":4070,"2517":4069,"2518":4069,"2519":4070,"2520":4070,"2521":4070,"2522":4070,"2523":4069,"2524":4069,"2525":4069,"2526":4069,"2527":4069,"2528":4070,"2529":4069,"2530":4069,"2531":4070,"2532":4070,"2533":4070,"2534":4069,"2535":4069,"2536":4070,"2537":4069,"2538":4069,"2539":4070,"2540":4069,"2541":4070,"2542":4069,"2543":4070,"2544":4070,"2545":4070,"2546":4069,"2547":4070,"2548":4070,"2549":4070,"2550":4069,"2551":4070,"2552":4069,"2553":4069,"2554":4069,"2555":4070,"2556":4069,"2557":4070,"2558":4070,"2559":4070,"2560":4070,"2561":4070,"2562":4070,"2563":4070,"2564":4069,"2565":4069,"2566":4069,"2567":4070,"2568":4069,"2569":4069,"2570":4070,"2571":4069,"2572":4070,"2573":4069,"2574":4069,"2575":4069,"2576":4069,"2577":4070,"2578":4070,"2579":4069,"2580":4070,"2581":4069,"2582":4070,"2583":4070,"2584":4070,"2585":4069,"2586":4069,"2587":4069,"2588":4069,"2589":4070,"2590":4069,"2591":4069,"2592":4069,"2593":4069,"2594":4070,"2595":4069,"2596":4070,"2597":4069,"2598":4069,"2599":4069,"2600":4070,"2601":4070,"2602":4069,"2603":4070,"2604":4070,"2605":4070,"2606":4070,"2607":4070,"2608":4069,"2609":4070,"2610":4069,"2611":4070,"2612":4070,"2613":4070,"2614":4069,"2615":4069,"2616":4069,"2617":4070,"2618":4070,"2619":4069,"2620":4069,"2621":4069,"2622":4069,"2623":4070,"2624":4070,"2625":4070,"2626":4069,"2627":4069,"2628":4070,"2629":4069,"2630":4070,"2631":4069,"2632":4070,"2633":4069,"2634":4069,"2635":4070,"2636":4070,"2637":4070,"2638":4070,"2639":4069,"2640":4070,"2641":4070,"2642":4070,"2643":4070,"2644":4069,"2645":4069,"2646":4069,"2647":4070,"2648":4069,"2649":4070,"2650":4069,"2651":4070,"2652":4070,"2653":4069,"2654":4070,"2655":4070,"2656":4069,"2657":4069,"2658":4069,"2659":4069,"2660":4070,"2661":4069,"2662":4070,"2663":4070,"2664":4070,"2665":4069,"2666":4069,"2667":4069,"2668":4069,"2669":4069,"2670":4069,"2671":4070,"2672":4069,"2673":4070,"2674":4070,"2675":4070,"2676":4069,"2677":4069,"2678":4070,"2679":4069,"2680":4069,"2681":4070,"2682":4069,"2683":4070,"2684":4069,"2685":4070,"2686":4069,"2687":4070,"2688":4070,"2689":4070,"2690":4070,"2691":4069,"2692":4069,"2693":4069,"2694":4070,"2695":4070,"2696":4070,"2697":4069,"2698":4070,"2699":4069,"2700":4069,"2701":4069,"2702":4070,"2703":4069,"2704":4070,"2705":4070,"2706":4069,"2707":4070,"2708":4069,"2709":4069,"2710":4069,"2711":4070,"2712":4070,"2713":4069,"2714":4069,"2715":4069,"2716":4069,"2717":4069,"2718":4070,"2719":4069,"2720":4069,"2721":4070,"2722":4069,"2723":4070,"2724":4069,"2725":4069,"2726":4070,"2727":4069,"2728":4070,"2729":4069,"2730":4070,"2731":4069,"2732":4070,"2733":4069,"2734":4069,"2735":4070,"2736":4070,"2737":4069,"2738":4069,"2739":4070,"2740":4069,"2741":4069,"2742":4070,"2743":4070,"2744":4069,"2745":4070,"2746":4069,"2747":4070,"2748":4069,"2749":4069,"2750":4070,"2751":4069,"2752":4070,"2753":4070,"2754":4070,"2755":4069,"2756":4070,"2757":4070,"2758":4070,"2759":4069,"2760":4069,"2761":4070,"2762":4070,"2763":4070,"2764":4069,"2765":4070,"2766":4070,"2767":4069,"2768":4069,"2769":4070,"2770":4070,"2771":4069,"2772":4069,"2773":4069,"2774":4070,"2775":4069,"2776":4070,"2777":4070,"2778":4070,"2779":4070,"2780":4070,"2781":4069,"2782":4069,"2783":4069,"2784":4069,"2785":4070,"2786":4069,"2787":4069,"2788":4070,"2789":4069,"2790":4070,"2791":4069,"2792":4070,"2793":4070,"2794":4070,"2795":4069,"2796":4070,"2797":4070,"2798":4070,"2799":4069,"2800":4070,"2801":4069,"2802":4069,"2803":4069,"2804":4069,"2805":4070,"2806":4070,"2807":4069,"2808":4069,"2809":4070,"2810":4070,"2811":4070,"2812":4070,"2813":4069,"2814":4069,"2815":4069,"2816":4069,"2817":4069,"2818":4070,"2819":4070,"2820":4069,"2821":4070,"2822":4070,"2823":4070,"2824":4070,"2825":4070,"2826":4070,"2827":4069,"2828":4070,"2829":4069,"2830":4069,"2831":4069,"2832":4070,"2833":4070,"2834":4070,"2835":4070,"2836":4070,"2837":4069,"2838":4070,"2839":4070,"2840":4070,"2841":4069,"2842":4069,"2843":4069,"2844":4069,"2845":4069,"2846":4070,"2847":4069,"2848":4069,"2849":4069,"2850":4070,"2851":4069,"2852":4069,"2853":4069,"2854":4070,"2855":4070,"2856":4069,"2857":4070,"2858":4069,"2859":4070,"2860":4069,"2861":4069,"2862":4069,"2863":4069,"2864":4069,"2865":4069,"2866":4069,"2867":4069,"2868":4070,"2869":4069,"2870":4070,"2871":4069,"2872":4070,"2873":4069,"2874":4069,"2875":4070,"2876":4070,"2877":4069,"2878":4069,"2879":4069,"2880":4070,"2881":4069,"2882":4069,"2883":4069,"2884":4070,"2885":4069,"2886":4069,"2887":4069,"2888":4070,"2889":4069,"2890":4069,"2891":4070,"2892":4070,"2893":4070,"2894":4069,"2895":4070,"2896":4070,"2897":4070,"2898":4069,"2899":4070,"2900":4069,"2901":4069,"2902":4069,"2903":4069,"2904":4069,"2905":4070,"2906":4070,"2907":4069,"2908":4070,"2909":4070,"2910":4070,"2911":4070,"2912":4069,"2913":4070,"2914":4070,"2915":4069,"2916":4069,"2917":4070,"2918":4070,"2919":4069,"2920":4070,"2921":4069,"2922":4070,"2923":4070,"2924":4069,"2925":4070,"2926":4069,"2927":4069,"2928":4069,"2929":4070,"2930":4070,"2931":4070,"2932":4070,"2933":4069,"2934":4070,"2935":4069,"2936":4069,"2937":4069,"2938":4069,"2939":4069,"2940":4070,"2941":4070,"2942":4070,"2943":4069,"2944":4070,"2945":4070,"2946":4069,"2947":4069,"2948":4069,"2949":4069,"2950":4070,"2951":4069,"2952":4069,"2953":4069,"2954":4069,"2955":4070,"2956":4069,"2957":4070,"2958":4069,"2959":4070,"2960":4070,"2961":4070,"2962":4070,"2963":4070,"2964":4070,"2965":4069,"2966":4069,"2967":4070,"2968":4070,"2969":4070,"2970":4069,"2971":4069,"2972":4069,"2973":4069,"2974":4069,"2975":4069,"2976":4069,"2977":4069,"2978":4070,"2979":4070,"2980":4069,"2981":4070,"2982":4069,"2983":4069,"2984":4069,"2985":4069,"2986":4069,"2987":4070,"2988":4069,"2989":4070,"2990":4069,"2991":4070,"2992":4070,"2993":4070,"2994":4070,"2995":4070,"2996":4070,"2997":4069,"2998":4069,"2999":4070,"3000":4070,"3001":4070,"3002":4069,"3003":4069,"3004":4070,"3005":4070,"3006":4070,"3007":4069,"3008":4070,"3009":4070,"3010":4069,"3011":4069,"3012":4069,"3013":4070,"3014":4069,"3015":4070,"3016":4069,"3017":4070,"3018":4070,"3019":4069,"3020":4069,"3021":4069,"3022":4069,"3023":4069,"3024":4069,"3025":4069,"3026":4070,"3027":4069,"3028":4069,"3029":4070,"3030":4069,"3031":4070,"3032":4070,"3033":4070,"3034":4069,"3035":4070,"3036":4069,"3037":4070,"3038":4069,"3039":4070,"3040":4070,"3041":4070,"3042":4069,"3043":4070,"3044":4070,"3045":4070,"3046":4069,"3047":4069,"3048":4070,"3049":4070,"3050":4069,"3051":4070,"3052":4070,"3053":4070,"3054":4070,"3055":4069,"3056":4069,"3057":4070,"3058":4070,"3059":4070,"3060":4070,"3061":4070,"3062":4069,"3063":4070,"3064":4070,"3065":4069,"3066":4070,"3067":4069,"3068":4070,"3069":4069,"3070":4069,"3071":4070,"3072":4069,"3073":4069,"3074":4070,"3075":4069,"3076":4070,"3077":4070,"3078":4069,"3079":4069,"3080":4069,"3081":4070,"3082":4069,"3083":4070,"3084":4069,"3085":4070,"3086":4069,"3087":4070,"3088":4069,"3089":4069,"3090":4069,"3091":4069,"3092":4070,"3093":4069,"3094":4070,"3095":4069,"3096":4070,"3097":4069,"3098":4069,"3099":4069,"3100":4070,"3101":4069,"3102":4070,"3103":4070,"3104":4069,"3105":4069,"3106":4070,"3107":4070,"3108":4070,"3109":4070,"3110":4070,"3111":4069,"3112":4070,"3113":4070,"3114":4070,"3115":4069,"3116":4070,"3117":4070,"3118":4069,"3119":4070,"3120":4070,"3121":4069,"3122":4069,"3123":4070,"3124":4069,"3125":4070,"3126":4069,"3127":4069,"3128":4069,"3129":4070,"3130":4070,"3131":4069,"3132":4069,"3133":4070,"3134":4070,"3135":4069,"3136":4069,"3137":4069,"3138":4069,"3139":4070,"3140":4070,"3141":4070,"3142":4070,"3143":4070,"3144":4070,"3145":4069,"3146":4069,"3147":4069,"3148":4070,"3149":4070,"3150":4070,"3151":4069,"3152":4069,"3153":4070,"3154":4069,"3155":4069,"3156":4069,"3157":4070,"3158":4069,"3159":4070,"3160":4070,"3161":4070,"3162":4070,"3163":4069,"3164":4069,"3165":4069,"3166":4070,"3167":4069,"3168":4069,"3169":4069,"3170":4070,"3171":4069,"3172":4070,"3173":4069,"3174":4070,"3175":4069,"3176":4069,"3177":4069,"3178":4069,"3179":4069,"3180":4069,"3181":4070,"3182":4070,"3183":4069,"3184":4069,"3185":4070,"3186":4069,"3187":4070,"3188":4070,"3189":4070,"3190":4070,"3191":4070,"3192":4070,"3193":4069,"3194":4070,"3195":4069,"3196":4070,"3197":4070,"3198":4070,"3199":4069,"3200":4070,"3201":4069,"3202":4070,"3203":4070,"3204":4070,"3205":4069,"3206":4070,"3207":4070,"3208":4070,"3209":4070,"3210":4070,"3211":4069,"3212":4069,"3213":4069,"3214":4069,"3215":4069,"3216":4069,"3217":4069,"3218":4069,"3219":4070,"3220":4070,"3221":4069,"3222":4069,"3223":4070,"3224":4069,"3225":4069,"3226":4069,"3227":4070,"3228":4069,"3229":4070,"3230":4070,"3231":4069,"3232":4069,"3233":4069,"3234":4069,"3235":4070,"3236":4069,"3237":4069,"3238":4070,"3239":4070,"3240":4070,"3241":4070,"3242":4069,"3243":4069,"3244":4070,"3245":4069,"3246":4069,"3247":4070,"3248":4069,"3249":4070,"3250":4069,"3251":4069,"3252":4070,"3253":4070,"3254":4070,"3255":4069,"3256":4070,"3257":4070,"3258":4069,"3259":4069,"3260":4069,"3261":4070,"3262":4070,"3263":4069,"3264":4069,"3265":4070,"3266":4070,"3267":4070,"3268":4069,"3269":4069,"3270":4069,"3271":4069,"3272":4069,"3273":4070,"3274":4070,"3275":4070,"3276":4069,"3277":4069,"3278":4070,"3279":4069,"3280":4070,"3281":4069,"3282":4069,"3283":4069,"3284":4070,"3285":4069,"3286":4070,"3287":4069,"3288":4069,"3289":4069,"3290":4070,"3291":4069,"3292":4069,"3293":4070,"3294":4070,"3295":4069,"3296":4070,"3297":4069,"3298":4069,"3299":4069,"3300":4069,"3301":4069,"3302":4069,"3303":4070,"3304":4069,"3305":4070,"3306":4069,"3307":4069,"3308":4069,"3309":4070,"3310":4069,"3311":4070,"3312":4070,"3313":4069,"3314":4069,"3315":4069,"3316":4070,"3317":4070,"3318":4070,"3319":4069,"3320":4070,"3321":4070,"3322":4070,"3323":4069,"3324":4069,"3325":4070,"3326":4070,"3327":4070,"3328":4069,"3329":4069,"3330":4070,"3331":4070,"3332":4069,"3333":4069,"3334":4069,"3335":4069,"3336":4070,"3337":4070,"3338":4069,"3339":4069,"3340":4070,"3341":4070,"3342":4069,"3343":4070,"3344":4069,"3345":4069,"3346":4070,"3347":4070,"3348":4069,"3349":4069,"3350":4069,"3351":4070,"3352":4070,"3353":4069,"3354":4069,"3355":4069,"3356":4070,"3357":4070,"3358":4070,"3359":4069,"3360":4070,"3361":4070,"3362":4069,"3363":4069,"3364":4070,"3365":4070,"3366":4070,"3367":4070,"3368":4070,"3369":4070,"3370":4069,"3371":4069,"3372":4070,"3373":4070,"3374":4069,"3375":4069,"3376":4070,"3377":4069,"3378":4069,"3379":4069,"3380":4069,"3381":4070,"3382":4069,"3383":4070,"3384":4070,"3385":4069,"3386":4070,"3387":4069,"3388":4070,"3389":4070,"3390":4070,"3391":4069,"3392":4069,"3393":4069,"3394":4069,"3395":4069,"3396":4070,"3397":4070,"3398":4070,"3399":4070,"3400":4070,"3401":4069,"3402":4069,"3403":4070,"3404":4069,"3405":4069,"3406":4070,"3407":4069,"3408":4070,"3409":4070,"3410":4069,"3411":4069,"3412":4069,"3413":4070,"3414":4070,"3415":4069,"3416":4069,"3417":4070,"3418":4069,"3419":4070,"3420":4069,"3421":4070,"3422":4070,"3423":4070,"3424":4070,"3425":4070,"3426":4070,"3427":4069,"3428":4070,"3429":4070,"3430":4070,"3431":4069,"3432":4070,"3433":4070,"3434":4070,"3435":4070,"3436":4070,"3437":4070,"3438":4069,"3439":4069,"3440":4070,"3441":4070,"3442":4069,"3443":4070,"3444":4069,"3445":4070,"3446":4070,"3447":4069,"3448":4069,"3449":4069,"3450":4070,"3451":4070,"3452":4070,"3453":4069,"3454":4069,"3455":4069,"3456":4070,"3457":4069,"3458":4070,"3459":4069,"3460":4070,"3461":4070,"3462":4069,"3463":4070,"3464":4070,"3465":4069,"3466":4069,"3467":4069,"3468":4070,"3469":4069,"3470":4069,"3471":4070,"3472":4070,"3473":4070,"3474":4070,"3475":4069,"3476":4069,"3477":4069,"3478":4070,"3479":4069,"3480":4069,"3481":4069,"3482":4070,"3483":4070,"3484":4069,"3485":4070,"3486":4070,"3487":4070,"3488":4069,"3489":4069,"3490":4069,"3491":4070,"3492":4070,"3493":4069,"3494":4070,"3495":4070,"3496":4069,"3497":4070,"3498":4069,"3499":4070,"3500":4069,"3501":4069,"3502":4070,"3503":4069,"3504":4070,"3505":4070,"3506":4070,"3507":4070,"3508":4070,"3509":4070,"3510":4069,"3511":4070,"3512":4069,"3513":4069,"3514":4070,"3515":4069,"3516":4069,"3517":4069,"3518":4070,"3519":4070,"3520":4070,"3521":4069,"3522":4070,"3523":4070,"3524":4069,"3525":4069,"3526":4069,"3527":4070,"3528":4070,"3529":4069,"3530":4070,"3531":4070,"3532":4070,"3533":4070,"3534":4069,"3535":4069,"3536":4069,"3537":4069,"3538":4070,"3539":4069,"3540":4069,"3541":4070,"3542":4069,"3543":4070,"3544":4070,"3545":4070,"3546":4070,"3547":4070,"3548":4070,"3549":4069,"3550":4070,"3551":4069,"3552":4070,"3553":4069,"3554":4069,"3555":4069,"3556":4070,"3557":4070,"3558":4070,"3559":4070,"3560":4070,"3561":4069,"3562":4070,"3563":4070,"3564":4069,"3565":4069,"3566":4070,"3567":4069,"3568":4070,"3569":4069,"3570":4069,"3571":4070,"3572":4069,"3573":4070,"3574":4069,"3575":4069,"3576":4070,"3577":4070,"3578":4069,"3579":4069,"3580":4070,"3581":4070,"3582":4069,"3583":4070,"3584":4069,"3585":4069,"3586":4069,"3587":4069,"3588":4070,"3589":4070,"3590":4070,"3591":4069,"3592":4070,"3593":4069,"3594":4070,"3595":4069,"3596":4069,"3597":4069,"3598":4070,"3599":4070,"3600":4069,"3601":4070,"3602":4070,"3603":4070,"3604":4069,"3605":4069,"3606":4070,"3607":4070,"3608":4069,"3609":4069,"3610":4070,"3611":4070,"3612":4070,"3613":4070,"3614":4070,"3615":4070,"3616":4069,"3617":4069,"3618":4069,"3619":4069,"3620":4070,"3621":4069,"3622":4070,"3623":4070,"3624":4069,"3625":4070,"3626":4070,"3627":4070,"3628":4069,"3629":4069,"3630":4069,"3631":4070,"3632":4069,"3633":4069,"3634":4069,"3635":4069,"3636":4069,"3637":4069,"3638":4070,"3639":4069,"3640":4070,"3641":4070,"3642":4069,"3643":4069,"3644":4069,"3645":4069,"3646":4070,"3647":4069,"3648":4070,"3649":4070,"3650":4069,"3651":4070,"3652":4069,"3653":4069,"3654":4069,"3655":4070,"3656":4069,"3657":4069,"3658":4070,"3659":4070,"3660":4070,"3661":4070,"3662":4069,"3663":4070,"3664":4069,"3665":4069,"3666":4069,"3667":4070,"3668":4070,"3669":4069,"3670":4069,"3671":4069,"3672":4070,"3673":4069,"3674":4070,"3675":4070,"3676":4069,"3677":4070,"3678":4070,"3679":4070,"3680":4069,"3681":4069,"3682":4069,"3683":4070,"3684":4070,"3685":4070,"3686":4069,"3687":4070,"3688":4069,"3689":4070,"3690":4069,"3691":4069,"3692":4070,"3693":4069,"3694":4069,"3695":4069,"3696":4069,"3697":4070,"3698":4069,"3699":4070,"3700":4069,"3701":4070,"3702":4069,"3703":4070,"3704":4070,"3705":4070,"3706":4070,"3707":4070,"3708":4070,"3709":4069,"3710":4069,"3711":4069,"3712":4069,"3713":4069,"3714":4069,"3715":4070,"3716":4069,"3717":4069,"3718":4070,"3719":4069,"3720":4070,"3721":4070,"3722":4070,"3723":4069,"3724":4069,"3725":4069,"3726":4070,"3727":4069,"3728":4070,"3729":4069,"3730":4070,"3731":4069,"3732":4070,"3733":4069,"3734":4070,"3735":4069,"3736":4069,"3737":4069,"3738":4070,"3739":4069,"3740":4069,"3741":4069,"3742":4070,"3743":4069,"3744":4070,"3745":4069,"3746":4069,"3747":4069,"3748":4069,"3749":4069,"3750":4070,"3751":4070,"3752":4069,"3753":4069,"3754":4070,"3755":4069,"3756":4070,"3757":4069,"3758":4070,"3759":4070,"3760":4070,"3761":4070,"3762":4069,"3763":4069,"3764":4070,"3765":4070,"3766":4070,"3767":4069,"3768":4069,"3769":4070,"3770":4070,"3771":4069,"3772":4070,"3773":4070,"3774":4070,"3775":4069,"3776":4070,"3777":4069,"3778":4070,"3779":4069,"3780":4069,"3781":4070,"3782":4069,"3783":4069,"3784":4070,"3785":4070,"3786":4069,"3787":4069,"3788":4069,"3789":4070,"3790":4069,"3791":4069,"3792":4070,"3793":4069,"3794":4070,"3795":4069,"3796":4070,"3797":4070,"3798":4069,"3799":4069,"3800":4070,"3801":4070,"3802":4069,"3803":4069,"3804":4070,"3805":4070,"3806":4069,"3807":4069,"3808":4070,"3809":4070,"3810":4070,"3811":4069,"3812":4070,"3813":4070,"3814":4069,"3815":4069,"3816":4069,"3817":4069,"3818":4070,"3819":4069,"3820":4069,"3821":4069,"3822":4070,"3823":4070,"3824":4070,"3825":4070,"3826":4069,"3827":4070,"3828":4070,"3829":4070,"3830":4070,"3831":4070,"3832":4069,"3833":4070,"3834":4069,"3835":4070,"3836":4069,"3837":4069,"3838":4069,"3839":4070,"3840":4070,"3841":4070,"3842":4069,"3843":4070,"3844":4070,"3845":4069,"3846":4070,"3847":4070,"3848":4069,"3849":4070,"3850":4070,"3851":4069,"3852":4069,"3853":4070,"3854":4069,"3855":4069,"3856":4070,"3857":4070,"3858":4069,"3859":4070,"3860":4069,"3861":4069,"3862":4070,"3863":4070,"3864":4069,"3865":4069,"3866":4069,"3867":4069,"3868":4070,"3869":4070,"3870":4069,"3871":4070,"3872":4070,"3873":4069,"3874":4070,"3875":4070,"3876":4069,"3877":4070,"3878":4069,"3879":4070,"3880":4069,"3881":4069,"3882":4070,"3883":4069,"3884":4070,"3885":4070,"3886":4069,"3887":4069,"3888":4069,"3889":4070,"3890":4070,"3891":4070,"3892":4069,"3893":4069,"3894":4070,"3895":4069,"3896":4069,"3897":4070,"3898":4070,"3899":4069,"3900":4069,"3901":4069,"3902":4070,"3903":4070,"3904":4069,"3905":4069,"3906":4069,"3907":4070,"3908":4070,"3909":4070,"3910":4069,"3911":4070,"3912":4069,"3913":4069,"3914":4069,"3915":4069,"3916":4069,"3917":4069,"3918":4069,"3919":4070,"3920":4069,"3921":4070,"3922":4069,"3923":4070,"3924":4070,"3925":4070,"3926":4070,"3927":4070,"3928":4070,"3929":4070,"3930":4070,"3931":4069,"3932":4070,"3933":4069,"3934":4069,"3935":4070,"3936":4069,"3937":4069,"3938":4069,"3939":4069,"3940":4070,"3941":4070,"3942":4069,"3943":4069,"3944":4069,"3945":4070,"3946":4070,"3947":4070,"3948":4069,"3949":4069,"3950":4069,"3951":4069,"3952":4070,"3953":4069,"3954":4070,"3955":4069,"3956":4070,"3957":4069,"3958":4069,"3959":4069,"3960":4069,"3961":4070,"3962":4069,"3963":4069,"3964":4070,"3965":4069,"3966":4069,"3967":4070,"3968":4069,"3969":4070,"3970":4069,"3971":4069,"3972":4070,"3973":4069,"3974":4069,"3975":4069,"3976":4069,"3977":4070,"3978":4070,"3979":4070,"3980":4069,"3981":4070,"3982":4069,"3983":4070,"3984":4069,"3985":4070,"3986":4069,"3987":4070,"3988":4069,"3989":4069,"3990":4070,"3991":4069,"3992":4070,"3993":4070,"3994":4069,"3995":4069,"3996":4069,"3997":4070,"3998":4070,"3999":4070,"4000":4070,"4001":4070,"4002":4069,"4003":4070,"4004":4070,"4005":4069,"4006":4070,"4007":4070,"4008":4070,"4009":4070,"4010":4070,"4011":4069,"4012":4069,"4013":4069,"4014":4070,"4015":4070,"4016":4069,"4017":4069,"4018":4069,"4019":4069,"4020":4070,"4021":4070,"4022":4069,"4023":4069,"4024":4070,"4025":4069,"4026":4070,"4027":4069,"4028":4069,"4029":4069,"4030":4069,"4031":4069,"4032":4069,"4033":4069,"4034":4069,"4035":4070,"4036":4070,"4037":4069,"4038":4070,"4039":4070,"4040":4070,"4041":4070,"4042":4070,"4043":4069,"4044":4069,"4045":4070,"4046":4070,"4047":4070,"4048":4070,"4049":4069,"4050":4070,"4051":4070,"4052":4069,"4053":4070,"4054":4070,"4055":4070,"4056":4069,"4057":4069,"4058":4070,"4059":4070,"4060":4070,"4061":4070,"4062":4070,"4063":4070,"4064":4069,"4065":4070,"4066":4069,"4067":4070,"4068":4069,"4069":4069,"4070":4069,"4071":4070,"4072":4070,"4073":4069,"4074":4069,"4075":4069,"4076":4069,"4077":4070,"4078":4070,"4079":4070,"4080":4069,"4081":4070,"4082":4069,"4083":4070,"4084":4069,"4085":4069,"4086":4069,"4087":4069,"4088":4070,"4089":4069,"4090":4069,"4091":4070,"4092":4070,"4093":4069,"4094":4069,"4095":4070,"4096":4069,"4097":4070,"4098":4069,"4099":4070,"4100":4069,"4101":4069,"4102":4070,"4103":4069,"4104":4069,"4105":4069,"4106":4070,"4107":4069,"4108":4070,"4109":4069,"4110":4070,"4111":4069,"4112":4069,"4113":4069,"4114":4069,"4115":4069,"4116":4070,"4117":4069,"4118":4069,"4119":4069,"4120":4070,"4121":4070,"4122":4069,"4123":4070,"4124":4069,"4125":4069,"4126":4070,"4127":4070,"4128":4069,"4129":4070,"4130":4070,"4131":4069,"4132":4070,"4133":4069,"4134":4070,"4135":4070,"4136":4069,"4137":4069,"4138":4070,"4139":4069,"4140":4070,"4141":4070,"4142":4070,"4143":4069,"4144":4070,"4145":4070,"4146":4069,"4147":4070,"4148":4070,"4149":4070,"4150":4069,"4151":4069,"4152":4070,"4153":4070,"4154":4070,"4155":4069,"4156":4070,"4157":4070,"4158":4070,"4159":4069,"4160":4070,"4161":4069,"4162":4069,"4163":4069,"4164":4069,"4165":4070,"4166":4069,"4167":4070,"4168":4069,"4169":4070,"4170":4069,"4171":4070,"4172":4069,"4173":4069,"4174":4069,"4175":4069,"4176":4070,"4177":4069,"4178":4069,"4179":4070,"4180":4069,"4181":4070,"4182":4070,"4183":4070,"4184":4070,"4185":4069,"4186":4070,"4187":4070,"4188":4069,"4189":4070,"4190":4070,"4191":4070,"4192":4069,"4193":4070,"4194":4070,"4195":4069,"4196":4069,"4197":4069,"4198":4069,"4199":4069,"4200":4069,"4201":4069,"4202":4069,"4203":4069,"4204":4069,"4205":4069,"4206":4069,"4207":4069,"4208":4070,"4209":4070,"4210":4070,"4211":4069,"4212":4070,"4213":4069,"4214":4069,"4215":4070,"4216":4069,"4217":4069,"4218":4069,"4219":4069,"4220":4069,"4221":4069,"4222":4070,"4223":4070,"4224":4070,"4225":4069,"4226":4069,"4227":4069,"4228":4070,"4229":4069,"4230":4070,"4231":4070,"4232":4069,"4233":4069,"4234":4070,"4235":4069,"4236":4070,"4237":4070,"4238":4069,"4239":4070,"4240":4069,"4241":4069,"4242":4070,"4243":4069,"4244":4070,"4245":4069,"4246":4069,"4247":4069,"4248":4070,"4249":4070,"4250":4069,"4251":4069,"4252":4070,"4253":4069,"4254":4070,"4255":4069,"4256":4069,"4257":4069,"4258":4069,"4259":4069,"4260":4069,"4261":4069,"4262":4069,"4263":4069,"4264":4069,"4265":4070,"4266":4070,"4267":4070,"4268":4070,"4269":4070,"4270":4069,"4271":4070,"4272":4070,"4273":4069,"4274":4069,"4275":4070,"4276":4070,"4277":4069,"4278":4070,"4279":4070,"4280":4069,"4281":4069,"4282":4069,"4283":4070,"4284":4070,"4285":4070,"4286":4069,"4287":4070,"4288":4070,"4289":4070,"4290":4070,"4291":4069,"4292":4069,"4293":4069,"4294":4070,"4295":4070,"4296":4070,"4297":4070,"4298":4069,"4299":4070,"4300":4069,"4301":4070,"4302":4070,"4303":4070,"4304":4070,"4305":4069,"4306":4070,"4307":4070,"4308":4069,"4309":4069,"4310":4070,"4311":4069,"4312":4070,"4313":4069,"4314":4069,"4315":4070,"4316":4069,"4317":4069,"4318":4069,"4319":4070,"4320":4069,"4321":4070,"4322":4070,"4323":4069,"4324":4069,"4325":4070,"4326":4070,"4327":4069,"4328":4070,"4329":4069,"4330":4069,"4331":4069,"4332":4069,"4333":4069,"4334":4070,"4335":4070,"4336":4069,"4337":4069,"4338":4069,"4339":4070,"4340":4069,"4341":4070,"4342":4070,"4343":4070,"4344":4069,"4345":4069,"4346":4070,"4347":4070,"4348":4070,"4349":4069,"4350":4069,"4351":4069,"4352":4070,"4353":4069,"4354":4070,"4355":4069,"4356":4070,"4357":4070,"4358":4069,"4359":4069,"4360":4070,"4361":4069,"4362":4069,"4363":4070,"4364":4069,"4365":4069,"4366":4069,"4367":4069,"4368":4069,"4369":4069,"4370":4069,"4371":4070,"4372":4069,"4373":4069,"4374":4070,"4375":4069,"4376":4069,"4377":4069,"4378":4070,"4379":4070,"4380":4069,"4381":4070,"4382":4069,"4383":4069,"4384":4070,"4385":4069,"4386":4069,"4387":4069,"4388":4070,"4389":4069,"4390":4069,"4391":4069,"4392":4069,"4393":4070,"4394":4070,"4395":4070,"4396":4070,"4397":4069,"4398":4070,"4399":4069,"4400":4069,"4401":4070,"4402":4069,"4403":4070,"4404":4069,"4405":4069,"4406":4069,"4407":4070,"4408":4069,"4409":4069,"4410":4069,"4411":4070,"4412":4069,"4413":4070,"4414":4070,"4415":4069,"4416":4070,"4417":4070,"4418":4070,"4419":4070,"4420":4069,"4421":4069,"4422":4070,"4423":4069,"4424":4069,"4425":4070,"4426":4069,"4427":4069,"4428":4069,"4429":4069,"4430":4070,"4431":4070,"4432":4070,"4433":4070,"4434":4070,"4435":4069,"4436":4070,"4437":4069,"4438":4069,"4439":4070,"4440":4070,"4441":4070,"4442":4070,"4443":4070,"4444":4069,"4445":4070,"4446":4069,"4447":4069,"4448":4070,"4449":4069,"4450":4069,"4451":4069,"4452":4070,"4453":4069,"4454":4069,"4455":4070,"4456":4070,"4457":4070,"4458":4069,"4459":4069,"4460":4070,"4461":4069,"4462":4069,"4463":4070,"4464":4070,"4465":4069,"4466":4070,"4467":4069,"4468":4069,"4469":4069,"4470":4069,"4471":4069,"4472":4070,"4473":4070,"4474":4070,"4475":4070,"4476":4070,"4477":4070,"4478":4070,"4479":4069,"4480":4070,"4481":4069,"4482":4069,"4483":4070,"4484":4070,"4485":4069,"4486":4069,"4487":4070,"4488":4070,"4489":4069,"4490":4070,"4491":4070,"4492":4070,"4493":4069,"4494":4069,"4495":4069,"4496":4069,"4497":4069,"4498":4070,"4499":4070,"4500":4069,"4501":4070,"4502":4069,"4503":4070,"4504":4069,"4505":4069,"4506":4069,"4507":4070,"4508":4069,"4509":4070,"4510":4070,"4511":4070,"4512":4070,"4513":4070,"4514":4070,"4515":4070,"4516":4070,"4517":4070,"4518":4069,"4519":4070,"4520":4069,"4521":4070,"4522":4070,"4523":4070,"4524":4070,"4525":4069,"4526":4069,"4527":4069,"4528":4069,"4529":4070,"4530":4069,"4531":4069,"4532":4070,"4533":4070,"4534":4070,"4535":4070,"4536":4070,"4537":4070,"4538":4069,"4539":4069,"4540":4070,"4541":4070,"4542":4070,"4543":4069,"4544":4070,"4545":4069,"4546":4070,"4547":4070,"4548":4070,"4549":4069,"4550":4070,"4551":4070,"4552":4070,"4553":4070,"4554":4070,"4555":4070,"4556":4070,"4557":4070,"4558":4070,"4559":4070,"4560":4069,"4561":4070,"4562":4070,"4563":4069,"4564":4070,"4565":4069,"4566":4070,"4567":4069,"4568":4069,"4569":4070,"4570":4070,"4571":4069,"4572":4069,"4573":4069,"4574":4069,"4575":4070,"4576":4069,"4577":4069,"4578":4069,"4579":4070,"4580":4069,"4581":4069,"4582":4070,"4583":4069,"4584":4070,"4585":4070,"4586":4069,"4587":4070,"4588":4070,"4589":4069,"4590":4070,"4591":4069,"4592":4070,"4593":4069,"4594":4070,"4595":4070,"4596":4069,"4597":4069,"4598":4070,"4599":4070,"4600":4069,"4601":4070,"4602":4070,"4603":4070,"4604":4069,"4605":4069,"4606":4069,"4607":4070,"4608":4069,"4609":4069,"4610":4070,"4611":4070,"4612":4070,"4613":4070,"4614":4069,"4615":4070,"4616":4069,"4617":4070,"4618":4069,"4619":4070,"4620":4070,"4621":4070,"4622":4070,"4623":4070,"4624":4069,"4625":4069,"4626":4069,"4627":4069,"4628":4069,"4629":4069,"4630":4070,"4631":4070,"4632":4069,"4633":4069,"4634":4069,"4635":4070,"4636":4070,"4637":4069,"4638":4069,"4639":4070,"4640":4070,"4641":4069,"4642":4069,"4643":4069,"4644":4069,"4645":4070,"4646":4070,"4647":4070,"4648":4070,"4649":4070,"4650":4070,"4651":4070,"4652":4070,"4653":4070,"4654":4069,"4655":4070,"4656":4069,"4657":4069,"4658":4069,"4659":4070,"4660":4070,"4661":4070,"4662":4069,"4663":4070,"4664":4069,"4665":4069,"4666":4070,"4667":4069,"4668":4070,"4669":4070,"4670":4069,"4671":4070,"4672":4070,"4673":4069,"4674":4070,"4675":4070,"4676":4070,"4677":4070,"4678":4069,"4679":4069,"4680":4069,"4681":4070,"4682":4070,"4683":4069,"4684":4069,"4685":4070,"4686":4070,"4687":4070,"4688":4070,"4689":4069,"4690":4069,"4691":4069,"4692":4070,"4693":4070,"4694":4070,"4695":4069,"4696":4069,"4697":4069,"4698":4069,"4699":4070,"4700":4070,"4701":4069,"4702":4070,"4703":4070,"4704":4070,"4705":4069,"4706":4070,"4707":4070,"4708":4070,"4709":4070,"4710":4069,"4711":4070,"4712":4069,"4713":4070,"4714":4070,"4715":4069,"4716":4070,"4717":4069,"4718":4069,"4719":4070,"4720":4070,"4721":4069,"4722":4069,"4723":4070,"4724":4069,"4725":4069,"4726":4069,"4727":4069,"4728":4069,"4729":4070,"4730":4070,"4731":4070,"4732":4070,"4733":4069,"4734":4069,"4735":4070,"4736":4070,"4737":4069,"4738":4070,"4739":4070,"4740":4070,"4741":4069,"4742":4070,"4743":4069,"4744":4069,"4745":4070,"4746":4070,"4747":4069,"4748":4070,"4749":4070,"4750":4070,"4751":4069,"4752":4070,"4753":4070,"4754":4069,"4755":4070,"4756":4070,"4757":4070,"4758":4069,"4759":4070,"4760":4070,"4761":4070,"4762":4069,"4763":4070,"4764":4069,"4765":4070,"4766":4070,"4767":4069,"4768":4070,"4769":4070,"4770":4069,"4771":4070,"4772":4069,"4773":4069,"4774":4069,"4775":4070,"4776":4070,"4777":4070,"4778":4069,"4779":4069,"4780":4069,"4781":4069,"4782":4069,"4783":4070,"4784":4070,"4785":4069,"4786":4070,"4787":4069,"4788":4069,"4789":4070,"4790":4070,"4791":4069,"4792":4069,"4793":4069,"4794":4070,"4795":4070,"4796":4069,"4797":4070,"4798":4069,"4799":4069,"4800":4069,"4801":4069,"4802":4069,"4803":4069,"4804":4070,"4805":4070,"4806":4070,"4807":4070,"4808":4070,"4809":4069,"4810":4069,"4811":4070,"4812":4069,"4813":4070,"4814":4070,"4815":4069,"4816":4069,"4817":4069,"4818":4070,"4819":4069,"4820":4069,"4821":4070,"4822":4070,"4823":4070,"4824":4070,"4825":4069,"4826":4070,"4827":4069,"4828":4070,"4829":4069,"4830":4070,"4831":4070,"4832":4069,"4833":4069,"4834":4070,"4835":4069,"4836":4070,"4837":4069,"4838":4069,"4839":4070,"4840":4070,"4841":4070,"4842":4069,"4843":4069,"4844":4069,"4845":4070,"4846":4070,"4847":4069,"4848":4069,"4849":4070,"4850":4069,"4851":4069,"4852":4070,"4853":4070,"4854":4070,"4855":4069,"4856":4070,"4857":4069,"4858":4069,"4859":4069,"4860":4070,"4861":4069,"4862":4070,"4863":4070,"4864":4070,"4865":4069,"4866":4070,"4867":4069,"4868":4069,"4869":4070,"4870":4069,"4871":4070,"4872":4070,"4873":4070,"4874":4069,"4875":4069,"4876":4069,"4877":4069,"4878":4069,"4879":4070,"4880":4070,"4881":4070,"4882":4070,"4883":4070,"4884":4070,"4885":4069,"4886":4069,"4887":4070,"4888":4069,"4889":4070,"4890":4070,"4891":4069,"4892":4069,"4893":4070,"4894":4069,"4895":4069,"4896":4070,"4897":4070,"4898":4069,"4899":4070,"4900":4069,"4901":4069,"4902":4070,"4903":4070,"4904":4070,"4905":4069,"4906":4070,"4907":4069,"4908":4070,"4909":4069,"4910":4070,"4911":4069,"4912":4069,"4913":4070,"4914":4070,"4915":4069,"4916":4070,"4917":4070,"4918":4070,"4919":4070,"4920":4069,"4921":4069,"4922":4070,"4923":4070,"4924":4069,"4925":4070,"4926":4070,"4927":4070,"4928":4070,"4929":4070,"4930":4070,"4931":4069,"4932":4070,"4933":4069,"4934":4070,"4935":4069,"4936":4069,"4937":4069,"4938":4070,"4939":4069,"4940":4070,"4941":4069,"4942":4070,"4943":4070,"4944":4069,"4945":4070,"4946":4069,"4947":4070,"4948":4069,"4949":4069,"4950":4069,"4951":4070,"4952":4070,"4953":4069,"4954":4069,"4955":4070,"4956":4069,"4957":4069,"4958":4069,"4959":4069,"4960":4070,"4961":4070,"4962":4070,"4963":4069,"4964":4069,"4965":4069,"4966":4070,"4967":4069,"4968":4070,"4969":4070,"4970":4070,"4971":4070,"4972":4070,"4973":4070,"4974":4070,"4975":4070,"4976":4070,"4977":4070,"4978":4070,"4979":4069,"4980":4069,"4981":4070,"4982":4069,"4983":4069,"4984":4070,"4985":4069,"4986":4069,"4987":4069,"4988":4070,"4989":4069,"4990":4069,"4991":4069,"4992":4069,"4993":4070,"4994":4069,"4995":4070,"4996":4070,"4997":4069,"4998":4069,"4999":4070,"5000":4069,"5001":4070,"5002":4070,"5003":4069,"5004":4070,"5005":4069,"5006":4070,"5007":4070,"5008":4070,"5009":4069,"5010":4070,"5011":4070,"5012":4069,"5013":4070,"5014":4069,"5015":4070,"5016":4070,"5017":4070,"5018":4070,"5019":4069,"5020":4069,"5021":4069,"5022":4070,"5023":4070,"5024":4069,"5025":4069,"5026":4070,"5027":4069,"5028":4070,"5029":4069,"5030":4070,"5031":4069,"5032":4069,"5033":4070,"5034":4069,"5035":4069,"5036":4070,"5037":4069,"5038":4070,"5039":4070,"5040":4069,"5041":4070,"5042":4069,"5043":4070,"5044":4069,"5045":4070,"5046":4069,"5047":4069,"5048":4069,"5049":4069,"5050":4069,"5051":4069,"5052":4070,"5053":4069,"5054":4069,"5055":4069,"5056":4069,"5057":4070,"5058":4069,"5059":4069,"5060":4069,"5061":4069,"5062":4069,"5063":4069,"5064":4069,"5065":4069,"5066":4070,"5067":4070,"5068":4070,"5069":4070,"5070":4070,"5071":4069,"5072":4069,"5073":4069,"5074":4070,"5075":4070,"5076":4070,"5077":4069,"5078":4069,"5079":4070,"5080":4069,"5081":4070,"5082":4070,"5083":4069,"5084":4070,"5085":4069,"5086":4070,"5087":4069,"5088":4070,"5089":4070,"5090":4069,"5091":4069,"5092":4069,"5093":4070,"5094":4069,"5095":4069,"5096":4069,"5097":4069,"5098":4070,"5099":4069,"5100":4070,"5101":4069,"5102":4069,"5103":4070,"5104":4069,"5105":4070,"5106":4069,"5107":4069,"5108":4069,"5109":4070,"5110":4070,"5111":4070,"5112":4069,"5113":4069,"5114":4070,"5115":4069,"5116":4070,"5117":4070,"5118":4069,"5119":4069,"5120":4069,"5121":4070,"5122":4070,"5123":4070,"5124":4070,"5125":4069,"5126":4070,"5127":4070,"5128":4069,"5129":4070,"5130":4069,"5131":4070,"5132":4069,"5133":4070,"5134":4070,"5135":4070,"5136":4070,"5137":4069,"5138":4069,"5139":4069,"5140":4070,"5141":4069,"5142":4069,"5143":4069,"5144":4070,"5145":4070,"5146":4069,"5147":4069,"5148":4070,"5149":4069,"5150":4069,"5151":4070,"5152":4070,"5153":4070,"5154":4070,"5155":4070,"5156":4070,"5157":4069,"5158":4069,"5159":4070,"5160":4070,"5161":4069,"5162":4070,"5163":4069,"5164":4070,"5165":4069,"5166":4070,"5167":4069,"5168":4069,"5169":4070,"5170":4070,"5171":4069,"5172":4069,"5173":4070,"5174":4070,"5175":4069,"5176":4069,"5177":4069,"5178":4070,"5179":4070,"5180":4069,"5181":4070,"5182":4069,"5183":4069,"5184":4070,"5185":4069,"5186":4070,"5187":4069,"5188":4070,"5189":4069,"5190":4069,"5191":4070,"5192":4070,"5193":4069,"5194":4070,"5195":4070,"5196":4069,"5197":4070,"5198":4070,"5199":4069,"5200":4069,"5201":4070,"5202":4069,"5203":4070,"5204":4070,"5205":4070,"5206":4070,"5207":4069,"5208":4070,"5209":4069,"5210":4069,"5211":4069,"5212":4070,"5213":4069,"5214":4069,"5215":4069,"5216":4070,"5217":4070,"5218":4069,"5219":4069,"5220":4070,"5221":4070,"5222":4070,"5223":4069,"5224":4069,"5225":4069,"5226":4069,"5227":4070,"5228":4069,"5229":4070,"5230":4070,"5231":4070,"5232":4069,"5233":4069,"5234":4069,"5235":4070,"5236":4070,"5237":4069,"5238":4069,"5239":4069,"5240":4069,"5241":4069,"5242":4070,"5243":4069,"5244":4070,"5245":4070,"5246":4070,"5247":4069,"5248":4069,"5249":4070,"5250":4070,"5251":4069,"5252":4069,"5253":4070,"5254":4070,"5255":4070,"5256":4069,"5257":4070,"5258":4069,"5259":4069,"5260":4069,"5261":4069,"5262":4070,"5263":4069,"5264":4070,"5265":4069,"5266":4069,"5267":4069,"5268":4070,"5269":4070,"5270":4070,"5271":4070,"5272":4069,"5273":4070,"5274":4069,"5275":4069,"5276":4069,"5277":4070,"5278":4069,"5279":4069,"5280":4070,"5281":4069,"5282":4070,"5283":4070,"5284":4070,"5285":4070,"5286":4069,"5287":4069,"5288":4070,"5289":4070,"5290":4069,"5291":4070,"5292":4069,"5293":4070,"5294":4069,"5295":4069,"5296":4070,"5297":4069,"5298":4070,"5299":4070,"5300":4070,"5301":4069,"5302":4070,"5303":4069,"5304":4069,"5305":4070,"5306":4069,"5307":4070,"5308":4070,"5309":4069,"5310":4070,"5311":4069,"5312":4069,"5313":4070,"5314":4070,"5315":4070,"5316":4070,"5317":4070,"5318":4069,"5319":4069,"5320":4069,"5321":4069,"5322":4069,"5323":4069,"5324":4069,"5325":4070,"5326":4070,"5327":4069,"5328":4069,"5329":4070,"5330":4069,"5331":4070,"5332":4070,"5333":4070,"5334":4069,"5335":4069,"5336":4069,"5337":4070,"5338":4069,"5339":4070,"5340":4070,"5341":4069,"5342":4069,"5343":4069,"5344":4070,"5345":4070,"5346":4070,"5347":4069,"5348":4070,"5349":4070,"5350":4069,"5351":4070,"5352":4070,"5353":4070,"5354":4069,"5355":4070,"5356":4070,"5357":4070,"5358":4069,"5359":4069,"5360":4069,"5361":4069,"5362":4069,"5363":4070,"5364":4070,"5365":4069,"5366":4070,"5367":4069,"5368":4070,"5369":4069,"5370":4070,"5371":4069,"5372":4070,"5373":4069,"5374":4069,"5375":4070,"5376":4069,"5377":4069,"5378":4069,"5379":4069,"5380":4069,"5381":4070,"5382":4070,"5383":4069,"5384":4069,"5385":4069,"5386":4070,"5387":4069,"5388":4069,"5389":4070,"5390":4069,"5391":4070,"5392":4070,"5393":4070,"5394":4069,"5395":4069,"5396":4069,"5397":4070,"5398":4069,"5399":4070,"5400":4069,"5401":4070,"5402":4069,"5403":4069,"5404":4070,"5405":4070,"5406":4070,"5407":4069,"5408":4069,"5409":4069,"5410":4070,"5411":4069,"5412":4069,"5413":4070,"5414":4070,"5415":4070,"5416":4070,"5417":4070,"5418":4070,"5419":4069,"5420":4069,"5421":4070,"5422":4069,"5423":4069,"5424":4070,"5425":4069,"5426":4069,"5427":4069,"5428":4069,"5429":4069,"5430":4069,"5431":4069,"5432":4069,"5433":4069,"5434":4069,"5435":4070,"5436":4070,"5437":4069,"5438":4070,"5439":4069,"5440":4070,"5441":4069,"5442":4069,"5443":4069,"5444":4070,"5445":4070,"5446":4069,"5447":4069,"5448":4070,"5449":4069,"5450":4070,"5451":4069,"5452":4069,"5453":4070,"5454":4070,"5455":4069,"5456":4069,"5457":4070,"5458":4069,"5459":4069,"5460":4070,"5461":4069,"5462":4069,"5463":4069,"5464":4070,"5465":4070,"5466":4069,"5467":4069,"5468":4069,"5469":4069,"5470":4069,"5471":4070,"5472":4069,"5473":4069,"5474":4069,"5475":4069,"5476":4070,"5477":4070,"5478":4069,"5479":4069,"5480":4069,"5481":4069,"5482":4069,"5483":4070,"5484":4070,"5485":4069,"5486":4070,"5487":4070,"5488":4070,"5489":4069,"5490":4069,"5491":4070,"5492":4069,"5493":4070,"5494":4069,"5495":4069,"5496":4070,"5497":4069,"5498":4070,"5499":4069,"5500":4070,"5501":4070,"5502":4069,"5503":4069,"5504":4070,"5505":4069,"5506":4070,"5507":4070,"5508":4070,"5509":4069,"5510":4070,"5511":4070,"5512":4070,"5513":4069,"5514":4070,"5515":4070,"5516":4070,"5517":4070,"5518":4070,"5519":4070,"5520":4070,"5521":4070,"5522":4069,"5523":4069,"5524":4070,"5525":4069,"5526":4069,"5527":4069,"5528":4070,"5529":4069,"5530":4069,"5531":4070,"5532":4069,"5533":4070,"5534":4070,"5535":4069,"5536":4069,"5537":4070,"5538":4069,"5539":4070,"5540":4070,"5541":4069,"5542":4070,"5543":4070,"5544":4069,"5545":4069,"5546":4070,"5547":4070,"5548":4069,"5549":4069,"5550":4069,"5551":4069,"5552":4069,"5553":4070,"5554":4070,"5555":4069,"5556":4069,"5557":4069,"5558":4070,"5559":4070,"5560":4069,"5561":4069,"5562":4070,"5563":4069,"5564":4070,"5565":4069,"5566":4070,"5567":4070,"5568":4070,"5569":4070,"5570":4070,"5571":4070,"5572":4070,"5573":4070,"5574":4070,"5575":4070,"5576":4070,"5577":4070,"5578":4069,"5579":4069,"5580":4069,"5581":4069,"5582":4070,"5583":4069,"5584":4069,"5585":4070,"5586":4069,"5587":4070,"5588":4069,"5589":4069,"5590":4069,"5591":4069,"5592":4070,"5593":4070,"5594":4070,"5595":4070,"5596":4069,"5597":4069,"5598":4070,"5599":4069,"5600":4069,"5601":4070,"5602":4070,"5603":4070,"5604":4069,"5605":4070,"5606":4069,"5607":4070,"5608":4070,"5609":4069,"5610":4069,"5611":4070,"5612":4070,"5613":4069,"5614":4069,"5615":4070,"5616":4069,"5617":4070,"5618":4070,"5619":4070,"5620":4070,"5621":4070,"5622":4069,"5623":4070,"5624":4070,"5625":4069,"5626":4070,"5627":4069,"5628":4070,"5629":4069,"5630":4070,"5631":4069,"5632":4069,"5633":4069,"5634":4070,"5635":4069,"5636":4070,"5637":4069,"5638":4069,"5639":4070,"5640":4070,"5641":4069,"5642":4069,"5643":4070,"5644":4069,"5645":4069,"5646":4069,"5647":4070,"5648":4070,"5649":4069,"5650":4070,"5651":4069,"5652":4070,"5653":4070,"5654":4070,"5655":4070,"5656":4070,"5657":4069,"5658":4070,"5659":4069,"5660":4069,"5661":4069,"5662":4070,"5663":4069,"5664":4069,"5665":4070,"5666":4070,"5667":4069,"5668":4069,"5669":4069,"5670":4069,"5671":4069,"5672":4070,"5673":4069,"5674":4069,"5675":4070,"5676":4069,"5677":4070,"5678":4069,"5679":4069,"5680":4069,"5681":4070,"5682":4070,"5683":4069,"5684":4070,"5685":4070,"5686":4070,"5687":4069,"5688":4070,"5689":4069,"5690":4069,"5691":4069,"5692":4070,"5693":4070,"5694":4070,"5695":4070,"5696":4069,"5697":4069,"5698":4069,"5699":4069,"5700":4070,"5701":4069,"5702":4070,"5703":4070,"5704":4069,"5705":4070,"5706":4069,"5707":4070,"5708":4069,"5709":4070,"5710":4070,"5711":4070,"5712":4070,"5713":4069,"5714":4069,"5715":4069,"5716":4069,"5717":4070,"5718":4069,"5719":4070,"5720":4069,"5721":4070,"5722":4069,"5723":4070,"5724":4069,"5725":4069,"5726":4069,"5727":4070,"5728":4069,"5729":4069,"5730":4070,"5731":4069,"5732":4069,"5733":4069,"5734":4069,"5735":4069,"5736":4069,"5737":4070,"5738":4069,"5739":4069,"5740":4069,"5741":4069,"5742":4070,"5743":4069,"5744":4070,"5745":4070,"5746":4069,"5747":4069,"5748":4070,"5749":4069,"5750":4069,"5751":4069,"5752":4070,"5753":4070,"5754":4070,"5755":4070,"5756":4069,"5757":4069,"5758":4070,"5759":4069,"5760":4069,"5761":4070,"5762":4069,"5763":4070,"5764":4070,"5765":4070,"5766":4069,"5767":4070,"5768":4070,"5769":4069,"5770":4069,"5771":4069,"5772":4070,"5773":4070,"5774":4069,"5775":4069,"5776":4070,"5777":4069,"5778":4070,"5779":4069,"5780":4069,"5781":4070,"5782":4070,"5783":4069,"5784":4069,"5785":4069,"5786":4070,"5787":4069,"5788":4069,"5789":4070,"5790":4069,"5791":4070,"5792":4069,"5793":4069,"5794":4069,"5795":4070,"5796":4069,"5797":4070,"5798":4069,"5799":4070,"5800":4069,"5801":4070,"5802":4070,"5803":4069,"5804":4069,"5805":4070,"5806":4069,"5807":4070,"5808":4070,"5809":4070,"5810":4070,"5811":4070,"5812":4069,"5813":4069,"5814":4070,"5815":4069,"5816":4069,"5817":4069,"5818":4070,"5819":4069,"5820":4070,"5821":4069,"5822":4069,"5823":4069,"5824":4070,"5825":4069,"5826":4070,"5827":4070,"5828":4069,"5829":4070,"5830":4069,"5831":4069,"5832":4069,"5833":4070,"5834":4069,"5835":4069,"5836":4070,"5837":4070,"5838":4070,"5839":4070,"5840":4070,"5841":4069,"5842":4069,"5843":4069,"5844":4070,"5845":4070,"5846":4070,"5847":4069,"5848":4069,"5849":4069,"5850":4070,"5851":4069,"5852":4070,"5853":4070,"5854":4069,"5855":4069,"5856":4070,"5857":4070,"5858":4069,"5859":4069,"5860":4070,"5861":4070,"5862":4070,"5863":4069,"5864":4070,"5865":4070,"5866":4070,"5867":4069,"5868":4069,"5869":4070,"5870":4070,"5871":4069,"5872":4070,"5873":4069,"5874":4070,"5875":4069,"5876":4069,"5877":4069,"5878":4070,"5879":4069,"5880":4070,"5881":4069,"5882":4070,"5883":4069,"5884":4070,"5885":4070,"5886":4069,"5887":4070,"5888":4070,"5889":4070,"5890":4069,"5891":4070,"5892":4069,"5893":4069,"5894":4069,"5895":4069,"5896":4069,"5897":4070,"5898":4070,"5899":4069,"5900":4069,"5901":4070,"5902":4069,"5903":4069,"5904":4070,"5905":4069,"5906":4070,"5907":4070,"5908":4070,"5909":4069,"5910":4069,"5911":4069,"5912":4069,"5913":4070,"5914":4069,"5915":4069,"5916":4070,"5917":4070,"5918":4070,"5919":4070,"5920":4070,"5921":4069,"5922":4069,"5923":4070,"5924":4069,"5925":4069,"5926":4070,"5927":4070,"5928":4070,"5929":4070,"5930":4070,"5931":4070,"5932":4069,"5933":4069,"5934":4070,"5935":4070,"5936":4069,"5937":4070,"5938":4070,"5939":4070,"5940":4070,"5941":4070,"5942":4070,"5943":4070,"5944":4070,"5945":4070,"5946":4069,"5947":4070,"5948":4070,"5949":4070,"5950":4070,"5951":4070,"5952":4069,"5953":4069,"5954":4069,"5955":4070,"5956":4069,"5957":4069,"5958":4069,"5959":4069,"5960":4070,"5961":4070,"5962":4069,"5963":4070,"5964":4070,"5965":4069,"5966":4070,"5967":4070,"5968":4070,"5969":4070,"5970":4069,"5971":4070,"5972":4070,"5973":4069,"5974":4070,"5975":4070,"5976":4069,"5977":4070,"5978":4070,"5979":4070,"5980":4070,"5981":4069,"5982":4070,"5983":4070,"5984":4070,"5985":4069,"5986":4069,"5987":4069,"5988":4070,"5989":4070,"5990":4070,"5991":4070,"5992":4070,"5993":4070,"5994":4070,"5995":4069,"5996":4070,"5997":4070,"5998":4070,"5999":4069,"6000":4069,"6001":4069,"6002":4070,"6003":4069,"6004":4070,"6005":4069,"6006":4069,"6007":4070,"6008":4070,"6009":4069,"6010":4069,"6011":4069,"6012":4070,"6013":4069,"6014":4070,"6015":4070,"6016":4070,"6017":4069,"6018":4070,"6019":4069,"6020":4070,"6021":4070,"6022":4069,"6023":4069,"6024":4069,"6025":4069,"6026":4069,"6027":4069,"6028":4069,"6029":4070,"6030":4070,"6031":4069,"6032":4070,"6033":4070,"6034":4069,"6035":4070,"6036":4069,"6037":4070,"6038":4070,"6039":4069,"6040":4070,"6041":4070,"6042":4069,"6043":4070,"6044":4069,"6045":4070,"6046":4070,"6047":4069,"6048":4070,"6049":4070,"6050":4070,"6051":4069,"6052":4069,"6053":4070,"6054":4069,"6055":4069,"6056":4070,"6057":4069,"6058":4070,"6059":4069,"6060":4070,"6061":4070,"6062":4070,"6063":4070,"6064":4070,"6065":4070,"6066":4069,"6067":4069,"6068":4069,"6069":4070,"6070":4069,"6071":4069,"6072":4070,"6073":4070,"6074":4069,"6075":4070,"6076":4070,"6077":4069,"6078":4070,"6079":4070,"6080":4070,"6081":4070,"6082":4070,"6083":4070,"6084":4070,"6085":4069,"6086":4070,"6087":4070,"6088":4070,"6089":4070,"6090":4069,"6091":4070,"6092":4070,"6093":4070,"6094":4069,"6095":4070,"6096":4069,"6097":4070,"6098":4069,"6099":4070,"6100":4069,"6101":4069,"6102":4070,"6103":4070,"6104":4069,"6105":4070,"6106":4069,"6107":4070,"6108":4069,"6109":4070,"6110":4069,"6111":4069,"6112":4069,"6113":4069,"6114":4069,"6115":4069,"6116":4069,"6117":4070,"6118":4070,"6119":4070,"6120":4069,"6121":4070,"6122":4069,"6123":4069,"6124":4069,"6125":4069,"6126":4069,"6127":4070,"6128":4070,"6129":4070,"6130":4069,"6131":4069,"6132":4069,"6133":4070,"6134":4070,"6135":4070,"6136":4069,"6137":4069,"6138":4069,"6139":4069,"6140":4069,"6141":4069,"6142":4070,"6143":4070,"6144":4070,"6145":4070,"6146":4070,"6147":4070,"6148":4070,"6149":4070,"6150":4069,"6151":4069,"6152":4069,"6153":4069,"6154":4069,"6155":4070,"6156":4069,"6157":4070,"6158":4070,"6159":4070,"6160":4070,"6161":4070,"6162":4069,"6163":4069,"6164":4070,"6165":4069,"6166":4069,"6167":4070,"6168":4069,"6169":4069,"6170":4069,"6171":4069,"6172":4070,"6173":4070,"6174":4069,"6175":4069,"6176":4069,"6177":4069,"6178":4069,"6179":4070,"6180":4070,"6181":4070,"6182":4070,"6183":4069,"6184":4069,"6185":4069,"6186":4069,"6187":4070,"6188":4069,"6189":4070,"6190":4070,"6191":4069,"6192":4069,"6193":4069,"6194":4070,"6195":4070,"6196":4070,"6197":4070,"6198":4070,"6199":4070,"6200":4069,"6201":4069,"6202":4070,"6203":4070,"6204":4070,"6205":4069,"6206":4070,"6207":4070,"6208":4070,"6209":4069,"6210":4070,"6211":4070,"6212":4070,"6213":4069,"6214":4070,"6215":4069,"6216":4070,"6217":4069,"6218":4069,"6219":4070,"6220":4070,"6221":4070,"6222":4069,"6223":4069,"6224":4070,"6225":4070,"6226":4069,"6227":4070,"6228":4070,"6229":4069,"6230":4070,"6231":4070,"6232":4070,"6233":4069,"6234":4069,"6235":4069,"6236":4070,"6237":4069,"6238":4070,"6239":4069,"6240":4070,"6241":4070,"6242":4070,"6243":4070,"6244":4070,"6245":4069,"6246":4070,"6247":4070,"6248":4069,"6249":4069,"6250":4069,"6251":4069,"6252":4070,"6253":4069,"6254":4069,"6255":4070,"6256":4070,"6257":4070,"6258":4070,"6259":4070,"6260":4070,"6261":4069,"6262":4069,"6263":4069,"6264":4069,"6265":4070,"6266":4069,"6267":4070,"6268":4069,"6269":4069,"6270":4070,"6271":4070,"6272":4069,"6273":4069,"6274":4070,"6275":4069,"6276":4069,"6277":4069,"6278":4069,"6279":4069,"6280":4070,"6281":4069,"6282":4070,"6283":4069,"6284":4070,"6285":4069,"6286":4070,"6287":4070,"6288":4070,"6289":4069,"6290":4069,"6291":4070,"6292":4070,"6293":4070,"6294":4070,"6295":4070,"6296":4069,"6297":4069,"6298":4070,"6299":4069,"6300":4070,"6301":4070,"6302":4070,"6303":4070,"6304":4069,"6305":4069,"6306":4070,"6307":4070,"6308":4069,"6309":4070,"6310":4070,"6311":4069,"6312":4070,"6313":4069,"6314":4070,"6315":4069,"6316":4070,"6317":4069,"6318":4070,"6319":4070,"6320":4070,"6321":4070,"6322":4070,"6323":4070,"6324":4070,"6325":4070,"6326":4070,"6327":4070,"6328":4069,"6329":4069,"6330":4070,"6331":4070,"6332":4069,"6333":4069,"6334":4069,"6335":4069,"6336":4069,"6337":4069,"6338":4069,"6339":4069,"6340":4069,"6341":4069,"6342":4069,"6343":4069,"6344":4069,"6345":4070,"6346":4069,"6347":4069,"6348":4070,"6349":4070,"6350":4070,"6351":4069,"6352":4069,"6353":4070,"6354":4070,"6355":4069,"6356":4070,"6357":4070,"6358":4069,"6359":4069,"6360":4069,"6361":4070,"6362":4069,"6363":4070,"6364":4069,"6365":4069,"6366":4069,"6367":4069,"6368":4069,"6369":4069,"6370":4069,"6371":4069,"6372":4069,"6373":4070,"6374":4070,"6375":4069,"6376":4070,"6377":4069,"6378":4070,"6379":4070,"6380":4069,"6381":4069,"6382":4070,"6383":4070,"6384":4070,"6385":4069,"6386":4070,"6387":4070,"6388":4069,"6389":4070,"6390":4069,"6391":4070,"6392":4070,"6393":4069,"6394":4069,"6395":4070,"6396":4069,"6397":4070,"6398":4069,"6399":4070,"6400":4069,"6401":4070,"6402":4070,"6403":4069,"6404":4070,"6405":4070,"6406":4069,"6407":4069,"6408":4070,"6409":4069,"6410":4070,"6411":4069,"6412":4070,"6413":4069,"6414":4069,"6415":4070,"6416":4069,"6417":4069,"6418":4069,"6419":4069,"6420":4070,"6421":4069,"6422":4069,"6423":4069,"6424":4069,"6425":4069,"6426":4069,"6427":4070,"6428":4069,"6429":4069,"6430":4070,"6431":4069,"6432":4070,"6433":4069,"6434":4070,"6435":4069,"6436":4070,"6437":4069,"6438":4069,"6439":4069,"6440":4070,"6441":4070,"6442":4070,"6443":4069,"6444":4070,"6445":4070,"6446":4069,"6447":4069,"6448":4070,"6449":4069,"6450":4069,"6451":4069,"6452":4070,"6453":4069,"6454":4070,"6455":4070,"6456":4069,"6457":4069,"6458":4069,"6459":4070,"6460":4069,"6461":4069,"6462":4069,"6463":4069,"6464":4069,"6465":4070,"6466":4070,"6467":4069,"6468":4069,"6469":4070,"6470":4069,"6471":4070,"6472":4069,"6473":4069,"6474":4069,"6475":4070,"6476":4070,"6477":4070,"6478":4070,"6479":4069,"6480":4069,"6481":4069,"6482":4070,"6483":4070,"6484":4070,"6485":4070,"6486":4070,"6487":4069,"6488":4069,"6489":4069,"6490":4070,"6491":4070,"6492":4069,"6493":4069,"6494":4069,"6495":4070,"6496":4070,"6497":4069,"6498":4069,"6499":4069,"6500":4069,"6501":4070,"6502":4069,"6503":4069,"6504":4069,"6505":4069,"6506":4069,"6507":4069,"6508":4070,"6509":4070,"6510":4070,"6511":4070,"6512":4069,"6513":4069,"6514":4070,"6515":4069,"6516":4069,"6517":4069,"6518":4070,"6519":4070,"6520":4069,"6521":4069,"6522":4070,"6523":4070,"6524":4069,"6525":4069,"6526":4070,"6527":4069,"6528":4069,"6529":4070,"6530":4069,"6531":4069,"6532":4070,"6533":4069,"6534":4070,"6535":4069,"6536":4070,"6537":4069,"6538":4070,"6539":4070,"6540":4069,"6541":4069,"6542":4069,"6543":4070,"6544":4070,"6545":4070,"6546":4070,"6547":4069,"6548":4070,"6549":4070,"6550":4070,"6551":4070,"6552":4069,"6553":4070,"6554":4070,"6555":4069,"6556":4070,"6557":4069,"6558":4070,"6559":4070,"6560":4069,"6561":4069,"6562":4070,"6563":4070,"6564":4070,"6565":4070,"6566":4070,"6567":4069,"6568":4069,"6569":4069,"6570":4069,"6571":4069,"6572":4070,"6573":4070,"6574":4070,"6575":4070,"6576":4069,"6577":4069,"6578":4069,"6579":4069,"6580":4070,"6581":4070,"6582":4070,"6583":4070,"6584":4070,"6585":4069,"6586":4070,"6587":4069,"6588":4069,"6589":4069,"6590":4070,"6591":4069,"6592":4070,"6593":4070,"6594":4070,"6595":4069,"6596":4069,"6597":4070,"6598":4070,"6599":4069,"6600":4069,"6601":4069,"6602":4069,"6603":4070,"6604":4070,"6605":4070,"6606":4069,"6607":4069,"6608":4069,"6609":4069,"6610":4070,"6611":4070,"6612":4069,"6613":4069,"6614":4070,"6615":4069,"6616":4069,"6617":4069,"6618":4069,"6619":4069,"6620":4070,"6621":4070,"6622":4069,"6623":4070,"6624":4070,"6625":4070,"6626":4069,"6627":4069,"6628":4070,"6629":4070,"6630":4070,"6631":4070,"6632":4070,"6633":4070,"6634":4070,"6635":4070,"6636":4069,"6637":4069,"6638":4069,"6639":4070,"6640":4070,"6641":4070,"6642":4070,"6643":4069,"6644":4070,"6645":4069,"6646":4070,"6647":4069,"6648":4070,"6649":4069,"6650":4069,"6651":4069,"6652":4070,"6653":4069,"6654":4070,"6655":4070,"6656":4070,"6657":4069,"6658":4070,"6659":4069,"6660":4070,"6661":4070,"6662":4070,"6663":4069,"6664":4070,"6665":4069,"6666":4069,"6667":4069,"6668":4070,"6669":4070,"6670":4069,"6671":4070,"6672":4069,"6673":4069,"6674":4070,"6675":4070,"6676":4069,"6677":4070,"6678":4070,"6679":4069,"6680":4070,"6681":4070,"6682":4069,"6683":4069,"6684":4070,"6685":4069,"6686":4070,"6687":4069,"6688":4070,"6689":4069,"6690":4070,"6691":4069,"6692":4069,"6693":4069,"6694":4069,"6695":4069,"6696":4070,"6697":4070,"6698":4069,"6699":4070,"6700":4070,"6701":4069,"6702":4070,"6703":4069,"6704":4069,"6705":4069,"6706":4070,"6707":4069,"6708":4070,"6709":4070,"6710":4070,"6711":4070,"6712":4069,"6713":4069,"6714":4069,"6715":4070,"6716":4069,"6717":4069,"6718":4070,"6719":4069,"6720":4069,"6721":4070,"6722":4069,"6723":4069,"6724":4069,"6725":4069,"6726":4069,"6727":4069,"6728":4070,"6729":4069,"6730":4070,"6731":4069,"6732":4069,"6733":4070,"6734":4070,"6735":4070,"6736":4070,"6737":4069,"6738":4070,"6739":4069,"6740":4070,"6741":4070,"6742":4069,"6743":4070,"6744":4070,"6745":4069,"6746":4069,"6747":4069,"6748":4070,"6749":4069,"6750":4069,"6751":4069,"6752":4070,"6753":4069,"6754":4069,"6755":4070,"6756":4069,"6757":4069,"6758":4070,"6759":4069,"6760":4069,"6761":4069,"6762":4070,"6763":4070,"6764":4070,"6765":4069,"6766":4069,"6767":4069,"6768":4070,"6769":4069,"6770":4070,"6771":4070,"6772":4069,"6773":4069,"6774":4070,"6775":4070,"6776":4069,"6777":4069,"6778":4070,"6779":4070,"6780":4069,"6781":4069,"6782":4070,"6783":4069,"6784":4070,"6785":4070,"6786":4069,"6787":4069,"6788":4069,"6789":4069,"6790":4070,"6791":4070,"6792":4070,"6793":4070,"6794":4069,"6795":4070,"6796":4070,"6797":4070,"6798":4069,"6799":4069,"6800":4070,"6801":4070,"6802":4070,"6803":4070,"6804":4070,"6805":4070,"6806":4069,"6807":4069,"6808":4070,"6809":4070,"6810":4070,"6811":4070,"6812":4069,"6813":4070,"6814":4069,"6815":4069,"6816":4069,"6817":4069,"6818":4069,"6819":4069,"6820":4070,"6821":4070,"6822":4069,"6823":4069,"6824":4070,"6825":4069,"6826":4070,"6827":4070,"6828":4070,"6829":4069,"6830":4070,"6831":4070,"6832":4069,"6833":4069,"6834":4069,"6835":4069,"6836":4070,"6837":4070,"6838":4069,"6839":4070,"6840":4070,"6841":4070,"6842":4069,"6843":4070,"6844":4069,"6845":4069,"6846":4070,"6847":4070,"6848":4070,"6849":4069,"6850":4069,"6851":4069,"6852":4070,"6853":4069,"6854":4069,"6855":4070,"6856":4069,"6857":4069,"6858":4070,"6859":4069,"6860":4069,"6861":4070,"6862":4069,"6863":4069,"6864":4069,"6865":4069,"6866":4069,"6867":4070,"6868":4069,"6869":4069,"6870":4070,"6871":4070,"6872":4069,"6873":4070,"6874":4069,"6875":4069,"6876":4070,"6877":4070,"6878":4069,"6879":4070,"6880":4069,"6881":4070,"6882":4069,"6883":4070,"6884":4070,"6885":4069,"6886":4070,"6887":4070,"6888":4070,"6889":4069,"6890":4069,"6891":4070,"6892":4070,"6893":4070,"6894":4069,"6895":4069,"6896":4070,"6897":4070,"6898":4070,"6899":4070,"6900":4070,"6901":4070,"6902":4069,"6903":4070,"6904":4070,"6905":4070,"6906":4070,"6907":4069,"6908":4069,"6909":4070,"6910":4070,"6911":4069,"6912":4070,"6913":4070,"6914":4070,"6915":4069,"6916":4070,"6917":4069,"6918":4069,"6919":4070,"6920":4069,"6921":4069,"6922":4069,"6923":4070,"6924":4069,"6925":4070,"6926":4069,"6927":4070,"6928":4070,"6929":4069,"6930":4069,"6931":4069,"6932":4069,"6933":4069,"6934":4070,"6935":4069,"6936":4069,"6937":4069,"6938":4069,"6939":4070,"6940":4070,"6941":4070,"6942":4070,"6943":4070,"6944":4070,"6945":4070,"6946":4069,"6947":4070,"6948":4069,"6949":4069,"6950":4069,"6951":4070,"6952":4070,"6953":4070,"6954":4070,"6955":4069,"6956":4069,"6957":4070,"6958":4069,"6959":4070,"6960":4069,"6961":4069,"6962":4069,"6963":4070,"6964":4070,"6965":4070,"6966":4069,"6967":4070,"6968":4070,"6969":4070,"6970":4069,"6971":4069,"6972":4069,"6973":4070,"6974":4070,"6975":4069,"6976":4069,"6977":4070,"6978":4070,"6979":4070,"6980":4070,"6981":4070,"6982":4070,"6983":4069,"6984":4069,"6985":4070,"6986":4070,"6987":4069,"6988":4070,"6989":4069,"6990":4069,"6991":4069,"6992":4069,"6993":4070,"6994":4069,"6995":4069,"6996":4069,"6997":4070,"6998":4069,"6999":4069,"7000":4070,"7001":4070,"7002":4069,"7003":4070,"7004":4069,"7005":4070,"7006":4069,"7007":4070,"7008":4069,"7009":4070,"7010":4069,"7011":4070,"7012":4070,"7013":4069,"7014":4070,"7015":4069,"7016":4069,"7017":4069,"7018":4069,"7019":4070,"7020":4070,"7021":4070,"7022":4069,"7023":4069,"7024":4070,"7025":4069,"7026":4070,"7027":4070,"7028":4069,"7029":4070,"7030":4070,"7031":4070,"7032":4069,"7033":4069,"7034":4069,"7035":4069,"7036":4070,"7037":4070,"7038":4069,"7039":4070,"7040":4069,"7041":4070,"7042":4069,"7043":4069,"7044":4070,"7045":4069,"7046":4069,"7047":4070,"7048":4070,"7049":4070,"7050":4070,"7051":4070,"7052":4070,"7053":4069,"7054":4069,"7055":4069,"7056":4069,"7057":4070,"7058":4069,"7059":4069,"7060":4069,"7061":4069,"7062":4070,"7063":4070,"7064":4070,"7065":4069,"7066":4069,"7067":4070,"7068":4069,"7069":4070,"7070":4070,"7071":4070,"7072":4069,"7073":4069,"7074":4070,"7075":4070,"7076":4069,"7077":4069,"7078":4070,"7079":4070,"7080":4069,"7081":4069,"7082":4069,"7083":4069,"7084":4069,"7085":4070,"7086":4070,"7087":4069,"7088":4070,"7089":4069,"7090":4070,"7091":4069,"7092":4069,"7093":4070,"7094":4070,"7095":4069,"7096":4069,"7097":4069,"7098":4069,"7099":4070,"7100":4069,"7101":4070,"7102":4069,"7103":4070,"7104":4069,"7105":4070,"7106":4069,"7107":4070,"7108":4069,"7109":4070,"7110":4070,"7111":4069,"7112":4070,"7113":4070,"7114":4069,"7115":4069,"7116":4069,"7117":4070,"7118":4070,"7119":4070,"7120":4070,"7121":4069,"7122":4070,"7123":4070,"7124":4069,"7125":4069,"7126":4070,"7127":4069,"7128":4070,"7129":4070,"7130":4069,"7131":4070,"7132":4069,"7133":4069,"7134":4069,"7135":4069,"7136":4070,"7137":4070,"7138":4070,"7139":4070,"7140":4070,"7141":4069,"7142":4069,"7143":4069,"7144":4069,"7145":4069,"7146":4069,"7147":4069,"7148":4069,"7149":4070,"7150":4069,"7151":4069,"7152":4070,"7153":4070,"7154":4070,"7155":4069,"7156":4069,"7157":4069,"7158":4069,"7159":4070,"7160":4070,"7161":4070,"7162":4069,"7163":4069,"7164":4069,"7165":4070,"7166":4070,"7167":4070,"7168":4070,"7169":4069,"7170":4069,"7171":4070,"7172":4070,"7173":4070,"7174":4069,"7175":4070,"7176":4069,"7177":4070,"7178":4069,"7179":4070,"7180":4069,"7181":4070,"7182":4069,"7183":4070,"7184":4070,"7185":4070,"7186":4069,"7187":4070,"7188":4070,"7189":4069,"7190":4069,"7191":4069,"7192":4069,"7193":4069,"7194":4070,"7195":4070,"7196":4069,"7197":4069,"7198":4070,"7199":4070,"7200":4069,"7201":4069,"7202":4069,"7203":4070,"7204":4069,"7205":4069,"7206":4070,"7207":4070,"7208":4069,"7209":4069,"7210":4069,"7211":4069,"7212":4070,"7213":4070,"7214":4070,"7215":4070,"7216":4069,"7217":4070,"7218":4070,"7219":4070,"7220":4069,"7221":4069,"7222":4070,"7223":4069,"7224":4070,"7225":4070,"7226":4070,"7227":4070,"7228":4069,"7229":4070,"7230":4069,"7231":4070,"7232":4070,"7233":4069,"7234":4070,"7235":4070,"7236":4069,"7237":4069,"7238":4070,"7239":4069,"7240":4069,"7241":4069,"7242":4069,"7243":4069,"7244":4069,"7245":4069,"7246":4069,"7247":4069,"7248":4069,"7249":4070,"7250":4069,"7251":4070,"7252":4069,"7253":4070,"7254":4069,"7255":4070,"7256":4069,"7257":4069,"7258":4069,"7259":4070,"7260":4070,"7261":4070,"7262":4069,"7263":4070,"7264":4070,"7265":4070,"7266":4070,"7267":4070,"7268":4069,"7269":4069,"7270":4070,"7271":4070,"7272":4070,"7273":4069,"7274":4069,"7275":4070,"7276":4070,"7277":4070,"7278":4070,"7279":4070,"7280":4070,"7281":4070,"7282":4069,"7283":4069,"7284":4070,"7285":4069,"7286":4069,"7287":4069,"7288":4070,"7289":4069,"7290":4070,"7291":4070,"7292":4070,"7293":4070,"7294":4070,"7295":4070,"7296":4070,"7297":4069,"7298":4070,"7299":4069,"7300":4070,"7301":4070,"7302":4070,"7303":4070,"7304":4069,"7305":4069,"7306":4069,"7307":4069,"7308":4070,"7309":4070,"7310":4070,"7311":4070,"7312":4070,"7313":4069,"7314":4070,"7315":4069,"7316":4070,"7317":4069,"7318":4070,"7319":4069,"7320":4069,"7321":4069,"7322":4070,"7323":4069,"7324":4069,"7325":4069,"7326":4070,"7327":4070,"7328":4070,"7329":4070,"7330":4070,"7331":4069,"7332":4069,"7333":4070,"7334":4069,"7335":4069,"7336":4070,"7337":4069,"7338":4070,"7339":4069,"7340":4070,"7341":4070,"7342":4069,"7343":4069,"7344":4070,"7345":4070,"7346":4070,"7347":4070,"7348":4069,"7349":4069,"7350":4069,"7351":4069,"7352":4070,"7353":4069,"7354":4070,"7355":4070,"7356":4070,"7357":4069,"7358":4069,"7359":4069,"7360":4069,"7361":4070,"7362":4069,"7363":4070,"7364":4070,"7365":4069,"7366":4070,"7367":4070,"7368":4069,"7369":4069,"7370":4070,"7371":4069,"7372":4070,"7373":4070,"7374":4069,"7375":4070,"7376":4070,"7377":4069,"7378":4069,"7379":4069,"7380":4070,"7381":4069,"7382":4069,"7383":4070,"7384":4069,"7385":4069,"7386":4070,"7387":4069,"7388":4069,"7389":4070,"7390":4070,"7391":4070,"7392":4069,"7393":4069,"7394":4069,"7395":4069,"7396":4069,"7397":4070,"7398":4070,"7399":4070,"7400":4070,"7401":4069,"7402":4070,"7403":4069,"7404":4070,"7405":4070,"7406":4069,"7407":4070,"7408":4069,"7409":4069,"7410":4069,"7411":4070,"7412":4070,"7413":4070,"7414":4070,"7415":4070,"7416":4070,"7417":4070,"7418":4069,"7419":4069,"7420":4070,"7421":4069,"7422":4069,"7423":4070,"7424":4070,"7425":4070,"7426":4070,"7427":4069,"7428":4070,"7429":4070,"7430":4070,"7431":4070,"7432":4070,"7433":4070,"7434":4070,"7435":4069,"7436":4070,"7437":4070,"7438":4069,"7439":4070,"7440":4070,"7441":4070,"7442":4070,"7443":4070,"7444":4070,"7445":4069,"7446":4070,"7447":4070,"7448":4070,"7449":4070,"7450":4069,"7451":4070,"7452":4069,"7453":4069,"7454":4070,"7455":4070,"7456":4069,"7457":4070,"7458":4070,"7459":4070,"7460":4070,"7461":4069,"7462":4069,"7463":4069,"7464":4070,"7465":4069,"7466":4070,"7467":4069,"7468":4070,"7469":4069,"7470":4069,"7471":4070,"7472":4069,"7473":4070,"7474":4070,"7475":4069,"7476":4070,"7477":4070,"7478":4070,"7479":4069,"7480":4070,"7481":4070,"7482":4070,"7483":4069,"7484":4070,"7485":4069,"7486":4069,"7487":4070,"7488":4069,"7489":4069,"7490":4070,"7491":4069,"7492":4069,"7493":4070,"7494":4070,"7495":4070,"7496":4069,"7497":4069,"7498":4069,"7499":4069,"7500":4070,"7501":4069,"7502":4070,"7503":4069,"7504":4070,"7505":4069,"7506":4069,"7507":4069,"7508":4070,"7509":4070,"7510":4069,"7511":4069,"7512":4069,"7513":4069,"7514":4070,"7515":4070,"7516":4070,"7517":4069,"7518":4069,"7519":4070,"7520":4069,"7521":4069,"7522":4070,"7523":4069,"7524":4070,"7525":4070,"7526":4070,"7527":4070,"7528":4069,"7529":4070,"7530":4069,"7531":4069,"7532":4069,"7533":4070,"7534":4070,"7535":4070,"7536":4069,"7537":4070,"7538":4069,"7539":4069,"7540":4070,"7541":4069,"7542":4069,"7543":4070,"7544":4069,"7545":4069,"7546":4069,"7547":4070,"7548":4070,"7549":4070,"7550":4070,"7551":4069,"7552":4069,"7553":4069,"7554":4070,"7555":4069,"7556":4069,"7557":4070,"7558":4069,"7559":4070,"7560":4070,"7561":4069,"7562":4069,"7563":4069,"7564":4069,"7565":4069,"7566":4070,"7567":4069,"7568":4070,"7569":4069,"7570":4069,"7571":4069,"7572":4069,"7573":4069,"7574":4070,"7575":4069,"7576":4070,"7577":4069,"7578":4070,"7579":4070,"7580":4070,"7581":4069,"7582":4069,"7583":4069,"7584":4069,"7585":4070,"7586":4070,"7587":4070,"7588":4069,"7589":4070,"7590":4070,"7591":4069,"7592":4069,"7593":4070,"7594":4069,"7595":4069,"7596":4069,"7597":4070,"7598":4070,"7599":4070,"7600":4069,"7601":4069,"7602":4070,"7603":4070,"7604":4070,"7605":4070,"7606":4069,"7607":4069,"7608":4070,"7609":4070,"7610":4069,"7611":4069,"7612":4069,"7613":4070,"7614":4070,"7615":4069,"7616":4070,"7617":4069,"7618":4070,"7619":4069,"7620":4069,"7621":4070,"7622":4070,"7623":4069,"7624":4070,"7625":4069,"7626":4069,"7627":4069,"7628":4070,"7629":4069,"7630":4069,"7631":4069,"7632":4069,"7633":4070,"7634":4069,"7635":4069,"7636":4069,"7637":4069,"7638":4069,"7639":4070,"7640":4070,"7641":4069,"7642":4069,"7643":4069,"7644":4070,"7645":4069,"7646":4070,"7647":4069,"7648":4070,"7649":4070,"7650":4070,"7651":4069,"7652":4070,"7653":4070,"7654":4069,"7655":4069,"7656":4069,"7657":4069,"7658":4070,"7659":4070,"7660":4069,"7661":4070,"7662":4069,"7663":4069,"7664":4070,"7665":4070,"7666":4069,"7667":4070,"7668":4069,"7669":4070,"7670":4069,"7671":4070,"7672":4070,"7673":4070,"7674":4069,"7675":4070,"7676":4069,"7677":4069,"7678":4069,"7679":4070,"7680":4069,"7681":4070,"7682":4069,"7683":4069,"7684":4069,"7685":4070,"7686":4069,"7687":4070,"7688":4070,"7689":4070,"7690":4070,"7691":4069,"7692":4069,"7693":4069,"7694":4070,"7695":4070,"7696":4070,"7697":4069,"7698":4070,"7699":4070,"7700":4069,"7701":4070,"7702":4069,"7703":4070,"7704":4069,"7705":4069,"7706":4070,"7707":4070,"7708":4069,"7709":4069,"7710":4070,"7711":4069,"7712":4070,"7713":4070,"7714":4070,"7715":4070,"7716":4070,"7717":4069,"7718":4069,"7719":4070,"7720":4070,"7721":4069,"7722":4069,"7723":4069,"7724":4070,"7725":4069,"7726":4070,"7727":4070,"7728":4070,"7729":4070,"7730":4069,"7731":4069,"7732":4070,"7733":4070,"7734":4070,"7735":4069,"7736":4070,"7737":4069,"7738":4070,"7739":4069,"7740":4070,"7741":4070,"7742":4069,"7743":4069,"7744":4069,"7745":4069,"7746":4070,"7747":4069,"7748":4069,"7749":4070,"7750":4069,"7751":4070,"7752":4069,"7753":4069,"7754":4070,"7755":4069,"7756":4069,"7757":4069,"7758":4070,"7759":4070,"7760":4069,"7761":4069,"7762":4069,"7763":4069,"7764":4069,"7765":4070,"7766":4070,"7767":4070,"7768":4069,"7769":4070,"7770":4069,"7771":4069,"7772":4069,"7773":4069,"7774":4070,"7775":4070,"7776":4070,"7777":4069,"7778":4070,"7779":4070,"7780":4070,"7781":4070,"7782":4070,"7783":4069,"7784":4069,"7785":4069,"7786":4069,"7787":4070,"7788":4070,"7789":4069,"7790":4070,"7791":4070,"7792":4069,"7793":4070,"7794":4070,"7795":4070,"7796":4070,"7797":4069,"7798":4069,"7799":4069,"7800":4069,"7801":4069,"7802":4069,"7803":4069,"7804":4070,"7805":4070,"7806":4070,"7807":4070,"7808":4070,"7809":4069,"7810":4070,"7811":4070,"7812":4070,"7813":4069,"7814":4069,"7815":4070,"7816":4070,"7817":4070,"7818":4070,"7819":4069,"7820":4070,"7821":4069,"7822":4069,"7823":4070,"7824":4069,"7825":4070,"7826":4070,"7827":4070,"7828":4070,"7829":4069,"7830":4069,"7831":4069,"7832":4070,"7833":4070,"7834":4070,"7835":4070,"7836":4069,"7837":4070,"7838":4069,"7839":4070,"7840":4070,"7841":4069,"7842":4070,"7843":4069,"7844":4069,"7845":4069,"7846":4069,"7847":4069,"7848":4070,"7849":4069,"7850":4070,"7851":4070,"7852":4069,"7853":4069,"7854":4070,"7855":4070,"7856":4070,"7857":4069,"7858":4070,"7859":4070,"7860":4069,"7861":4069,"7862":4070,"7863":4069,"7864":4070,"7865":4069,"7866":4069,"7867":4069,"7868":4070,"7869":4070,"7870":4069,"7871":4070,"7872":4070,"7873":4070,"7874":4069,"7875":4070,"7876":4069,"7877":4069,"7878":4069,"7879":4069,"7880":4069,"7881":4070,"7882":4070,"7883":4070,"7884":4069,"7885":4070,"7886":4069,"7887":4070,"7888":4070,"7889":4069,"7890":4070,"7891":4069,"7892":4069,"7893":4070,"7894":4069,"7895":4069,"7896":4070,"7897":4069,"7898":4070,"7899":4070,"7900":4069,"7901":4069,"7902":4070,"7903":4070,"7904":4070,"7905":4070,"7906":4069,"7907":4069,"7908":4070,"7909":4070,"7910":4070,"7911":4070,"7912":4069,"7913":4069,"7914":4070,"7915":4069,"7916":4069,"7917":4070,"7918":4069,"7919":4070,"7920":4069,"7921":4069,"7922":4070,"7923":4070,"7924":4070,"7925":4069,"7926":4070,"7927":4069,"7928":4069,"7929":4069,"7930":4070,"7931":4069,"7932":4070,"7933":4069,"7934":4070,"7935":4069,"7936":4070,"7937":4070,"7938":4070,"7939":4070,"7940":4070,"7941":4069,"7942":4069,"7943":4069,"7944":4069,"7945":4070,"7946":4069,"7947":4070,"7948":4070,"7949":4070,"7950":4070,"7951":4070,"7952":4069,"7953":4070,"7954":4070,"7955":4069,"7956":4070,"7957":4069,"7958":4070,"7959":4070,"7960":4069,"7961":4070,"7962":4070,"7963":4069,"7964":4070,"7965":4069,"7966":4070,"7967":4069,"7968":4069,"7969":4070,"7970":4070,"7971":4070,"7972":4070,"7973":4069,"7974":4070,"7975":4070,"7976":4069,"7977":4069,"7978":4070,"7979":4069,"7980":4070,"7981":4070,"7982":4069,"7983":4070,"7984":4069,"7985":4069,"7986":4069,"7987":4070,"7988":4070,"7989":4070,"7990":4070,"7991":4069,"7992":4070,"7993":4070,"7994":4069,"7995":4069,"7996":4069,"7997":4069,"7998":4070,"7999":4069,"8000":4069,"8001":4069,"8002":4069,"8003":4069,"8004":4070,"8005":4070,"8006":4070,"8007":4069,"8008":4069,"8009":4070,"8010":4070,"8011":4069,"8012":4069,"8013":4069,"8014":4069,"8015":4070,"8016":4070,"8017":4069,"8018":4069,"8019":4070,"8020":4070,"8021":4069,"8022":4069,"8023":4070,"8024":4070,"8025":4070,"8026":4069,"8027":4070,"8028":4070,"8029":4070,"8030":4069,"8031":4069,"8032":4070,"8033":4070,"8034":4070,"8035":4070,"8036":4069,"8037":4070,"8038":4069,"8039":4069,"8040":4069,"8041":4070,"8042":4069,"8043":4070,"8044":4069,"8045":4070,"8046":4070,"8047":4069,"8048":4070,"8049":4069,"8050":4069,"8051":4069,"8052":4069,"8053":4069,"8054":4070,"8055":4070,"8056":4070,"8057":4070,"8058":4069,"8059":4069,"8060":4070,"8061":4070,"8062":4069,"8063":4070,"8064":4070,"8065":4069,"8066":4069,"8067":4070,"8068":4070,"8069":4069,"8070":4069,"8071":4069,"8072":4070,"8073":4069,"8074":4069,"8075":4069,"8076":4070,"8077":4070,"8078":4069,"8079":4069,"8080":4070,"8081":4070,"8082":4069,"8083":4070,"8084":4069,"8085":4070,"8086":4070,"8087":4069,"8088":4070,"8089":4069,"8090":4070,"8091":4069,"8092":4070,"8093":4069,"8094":4070,"8095":4070,"8096":4070,"8097":4069,"8098":4070,"8099":4070,"8100":4069,"8101":4070,"8102":4069,"8103":4070,"8104":4070,"8105":4069,"8106":4070,"8107":4069,"8108":4070,"8109":4069,"8110":4070,"8111":4070,"8112":4069,"8113":4070,"8114":4069,"8115":4069,"8116":4070,"8117":4070,"8118":4070,"8119":4070,"8120":4069,"8121":4070,"8122":4070,"8123":4070,"8124":4069,"8125":4070,"8126":4070,"8127":4069,"8128":4069,"8129":4070,"8130":4070,"8131":4069,"8132":4070,"8133":4069,"8134":4069,"8135":4069,"8136":4070,"8137":4070,"8138":4069,"8139":4070,"8140":4069,"8141":4070,"8142":4070,"8143":4070,"8144":4069,"8145":4070,"8146":4070,"8147":4069,"8148":4070,"8149":4069,"8150":4069,"8151":4070,"8152":4069,"8153":4069,"8154":4070,"8155":4069,"8156":4069,"8157":4069,"8158":4070,"8159":4069,"8160":4070,"8161":4069,"8162":4069,"8163":4069,"8164":4070,"8165":4069,"8166":4069,"8167":4070,"8168":4070,"8169":4069,"8170":4069,"8171":4069,"8172":4070,"8173":4070,"8174":4069,"8175":4069,"8176":4069,"8177":4070,"8178":4070,"8179":4070,"8180":4070,"8181":4070,"8182":4070,"8183":4070,"8184":4070,"8185":4070,"8186":4069,"8187":4069,"8188":4070,"8189":4069,"8190":4070,"8191":4070,"8192":4070,"8193":4069,"8194":4069,"8195":4069,"8196":4070,"8197":4070,"8198":4069,"8199":4069,"8200":4069,"8201":4069,"8202":4069,"8203":4070,"8204":4069,"8205":4070,"8206":4070,"8207":4069,"8208":4070,"8209":4069,"8210":4070,"8211":4069,"8212":4069,"8213":4069,"8214":4069,"8215":4069,"8216":4070,"8217":4070,"8218":4070,"8219":4070,"8220":4069,"8221":4069,"8222":4069,"8223":4069,"8224":4069,"8225":4069,"8226":4069,"8227":4069,"8228":4070,"8229":4069,"8230":4070,"8231":4069,"8232":4069,"8233":4069,"8234":4070,"8235":4070,"8236":4069,"8237":4069,"8238":4069,"8239":4070,"8240":4070,"8241":4070,"8242":4070,"8243":4069,"8244":4069,"8245":4069,"8246":4070,"8247":4070,"8248":4070,"8249":4069,"8250":4070,"8251":4070,"8252":4069,"8253":4070,"8254":4069,"8255":4070,"8256":4070,"8257":4069,"8258":4069,"8259":4070,"8260":4069,"8261":4069,"8262":4070,"8263":4070,"8264":4070,"8265":4069,"8266":4070,"8267":4070,"8268":4070,"8269":4069,"8270":4069,"8271":4070,"8272":4070,"8273":4070,"8274":4070,"8275":4069,"8276":4070,"8277":4069,"8278":4070,"8279":4070,"8280":4069,"8281":4070,"8282":4070,"8283":4070,"8284":4069,"8285":4070,"8286":4070,"8287":4070,"8288":4069,"8289":4070,"8290":4070,"8291":4069,"8292":4070,"8293":4069,"8294":4069,"8295":4070,"8296":4070,"8297":4069,"8298":4069,"8299":4070,"8300":4070,"8301":4069,"8302":4070,"8303":4069,"8304":4070,"8305":4070,"8306":4069,"8307":4069,"8308":4069,"8309":4069,"8310":4069,"8311":4070,"8312":4069,"8313":4069,"8314":4070,"8315":4069,"8316":4070,"8317":4070,"8318":4070,"8319":4069,"8320":4070,"8321":4069,"8322":4070,"8323":4069,"8324":4069,"8325":4070,"8326":4069,"8327":4069,"8328":4069,"8329":4069,"8330":4069,"8331":4070,"8332":4070,"8333":4070,"8334":4069,"8335":4069,"8336":4070,"8337":4069,"8338":4070,"8339":4070,"8340":4070,"8341":4069,"8342":4070,"8343":4070,"8344":4070,"8345":4070,"8346":4070,"8347":4069,"8348":4069,"8349":4069,"8350":4070,"8351":4070,"8352":4070,"8353":4070,"8354":4070,"8355":4069,"8356":4069,"8357":4070,"8358":4069,"8359":4069,"8360":4069,"8361":4070,"8362":4070,"8363":4069,"8364":4070,"8365":4069,"8366":4069,"8367":4070,"8368":4070,"8369":4070,"8370":4070,"8371":4070,"8372":4070,"8373":4069,"8374":4070,"8375":4070,"8376":4069,"8377":4070,"8378":4069,"8379":4069,"8380":4069,"8381":4070,"8382":4069,"8383":4070,"8384":4069,"8385":4069,"8386":4069,"8387":4069,"8388":4069,"8389":4069,"8390":4070,"8391":4069,"8392":4069,"8393":4069,"8394":4069,"8395":4069,"8396":4069,"8397":4070,"8398":4070,"8399":4070,"8400":4070,"8401":4070,"8402":4070,"8403":4070,"8404":4069,"8405":4069,"8406":4069,"8407":4069,"8408":4069,"8409":4070,"8410":4070,"8411":4070,"8412":4069,"8413":4069,"8414":4070,"8415":4069,"8416":4070,"8417":4069,"8418":4070,"8419":4070,"8420":4070,"8421":4069,"8422":4069,"8423":4069,"8424":4069,"8425":4069,"8426":4069,"8427":4069,"8428":4069,"8429":4070,"8430":4070,"8431":4070,"8432":4070,"8433":4070,"8434":4069,"8435":4069,"8436":4069,"8437":4069,"8438":4069,"8439":4070,"8440":4069,"8441":4070,"8442":4069,"8443":4069,"8444":4070,"8445":4069,"8446":4070,"8447":4070,"8448":4069,"8449":4069,"8450":4069,"8451":4069,"8452":4069,"8453":4070,"8454":4069,"8455":4070,"8456":4070,"8457":4069,"8458":4070,"8459":4070,"8460":4069,"8461":4070,"8462":4069,"8463":4070,"8464":4069,"8465":4070,"8466":4070,"8467":4070,"8468":4070,"8469":4070,"8470":4070,"8471":4069,"8472":4069,"8473":4070,"8474":4069,"8475":4069,"8476":4070,"8477":4070,"8478":4070,"8479":4070,"8480":4070,"8481":4069,"8482":4070,"8483":4070,"8484":4069,"8485":4070,"8486":4070,"8487":4070,"8488":4070,"8489":4070,"8490":4069,"8491":4069,"8492":4070,"8493":4069,"8494":4069,"8495":4069,"8496":4069,"8497":4069,"8498":4069,"8499":4070,"8500":4069,"8501":4069,"8502":4070,"8503":4070,"8504":4069,"8505":4070,"8506":4069,"8507":4069,"8508":4070,"8509":4070,"8510":4070,"8511":4069,"8512":4070,"8513":4069,"8514":4069,"8515":4070,"8516":4069,"8517":4070,"8518":4070,"8519":4070,"8520":4069,"8521":4070,"8522":4070,"8523":4070,"8524":4070,"8525":4069,"8526":4070,"8527":4070,"8528":4070,"8529":4070,"8530":4070,"8531":4070,"8532":4070,"8533":4069,"8534":4070,"8535":4069,"8536":4070,"8537":4069,"8538":4069,"8539":4069,"8540":4070,"8541":4069,"8542":4069,"8543":4070,"8544":4069,"8545":4070,"8546":4069,"8547":4069,"8548":4070,"8549":4069,"8550":4070,"8551":4069,"8552":4069,"8553":4070,"8554":4069,"8555":4070,"8556":4069,"8557":4069,"8558":4070,"8559":4070,"8560":4069,"8561":4069,"8562":4069,"8563":4069,"8564":4069,"8565":4070,"8566":4069,"8567":4069,"8568":4069,"8569":4070,"8570":4070,"8571":4070,"8572":4069,"8573":4070,"8574":4070,"8575":4070,"8576":4070,"8577":4069,"8578":4070,"8579":4069,"8580":4069,"8581":4070,"8582":4070,"8583":4070,"8584":4069,"8585":4070,"8586":4069,"8587":4069,"8588":4069,"8589":4069,"8590":4069,"8591":4070,"8592":4070,"8593":4069,"8594":4069,"8595":4070,"8596":4069,"8597":4070,"8598":4069,"8599":4070,"8600":4070,"8601":4069,"8602":4069,"8603":4069,"8604":4069,"8605":4069,"8606":4069,"8607":4069,"8608":4070,"8609":4069,"8610":4070,"8611":4070,"8612":4069,"8613":4070,"8614":4069,"8615":4069,"8616":4069,"8617":4069,"8618":4069,"8619":4070,"8620":4070,"8621":4070,"8622":4070,"8623":4070,"8624":4069,"8625":4070,"8626":4069,"8627":4070,"8628":4070,"8629":4069,"8630":4070,"8631":4070,"8632":4070,"8633":4069,"8634":4070,"8635":4070,"8636":4069,"8637":4070,"8638":4070,"8639":4070,"8640":4070,"8641":4069,"8642":4070,"8643":4069,"8644":4070,"8645":4069,"8646":4069,"8647":4070,"8648":4070,"8649":4069,"8650":4069,"8651":4069,"8652":4070,"8653":4070,"8654":4070,"8655":4069,"8656":4070,"8657":4070,"8658":4069,"8659":4069,"8660":4070,"8661":4070,"8662":4070,"8663":4070,"8664":4070,"8665":4069,"8666":4070,"8667":4069,"8668":4069,"8669":4070,"8670":4069,"8671":4070,"8672":4070,"8673":4070,"8674":4070,"8675":4069,"8676":4070,"8677":4069,"8678":4069,"8679":4069,"8680":4070,"8681":4069,"8682":4070,"8683":4069,"8684":4069,"8685":4070,"8686":4070,"8687":4070,"8688":4070,"8689":4070,"8690":4069,"8691":4070,"8692":4070,"8693":4069,"8694":4070,"8695":4070,"8696":4070,"8697":4069,"8698":4069,"8699":4070,"8700":4070,"8701":4070,"8702":4070,"8703":4069,"8704":4070,"8705":4069,"8706":4069,"8707":4070,"8708":4070,"8709":4069,"8710":4070,"8711":4069,"8712":4070,"8713":4069,"8714":4070,"8715":4070,"8716":4069,"8717":4069,"8718":4070,"8719":4069,"8720":4070,"8721":4070,"8722":4069,"8723":4070,"8724":4069,"8725":4069,"8726":4069,"8727":4070,"8728":4069,"8729":4069,"8730":4070,"8731":4070,"8732":4069,"8733":4070,"8734":4070,"8735":4070,"8736":4070,"8737":4069,"8738":4069,"8739":4070,"8740":4069,"8741":4069,"8742":4070,"8743":4069,"8744":4070,"8745":4069,"8746":4070,"8747":4070,"8748":4069,"8749":4070,"8750":4070,"8751":4070,"8752":4070,"8753":4069,"8754":4070,"8755":4070,"8756":4070,"8757":4069,"8758":4069,"8759":4070,"8760":4069,"8761":4069,"8762":4070,"8763":4070,"8764":4069,"8765":4069,"8766":4069,"8767":4070,"8768":4069,"8769":4070,"8770":4069,"8771":4069,"8772":4069,"8773":4070,"8774":4070,"8775":4069,"8776":4069,"8777":4070,"8778":4070,"8779":4069,"8780":4069,"8781":4069,"8782":4070,"8783":4070,"8784":4070,"8785":4069,"8786":4070,"8787":4069,"8788":4070,"8789":4070,"8790":4070,"8791":4070,"8792":4070,"8793":4070,"8794":4070,"8795":4069,"8796":4069,"8797":4070,"8798":4070,"8799":4069,"8800":4069,"8801":4070,"8802":4070,"8803":4070,"8804":4070,"8805":4069,"8806":4069,"8807":4069,"8808":4070,"8809":4069,"8810":4069,"8811":4069,"8812":4069,"8813":4070,"8814":4069,"8815":4069,"8816":4069,"8817":4069,"8818":4069,"8819":4069,"8820":4070,"8821":4069,"8822":4069,"8823":4070,"8824":4070,"8825":4070,"8826":4069,"8827":4069,"8828":4070,"8829":4070,"8830":4069,"8831":4070,"8832":4069,"8833":4070,"8834":4069,"8835":4070,"8836":4070,"8837":4070,"8838":4070,"8839":4070,"8840":4070,"8841":4070,"8842":4070,"8843":4070,"8844":4069,"8845":4070,"8846":4070,"8847":4069,"8848":4070,"8849":4070,"8850":4070,"8851":4070,"8852":4069,"8853":4069,"8854":4070,"8855":4070,"8856":4070,"8857":4069,"8858":4070,"8859":4070,"8860":4069,"8861":4070,"8862":4070,"8863":4069,"8864":4070,"8865":4069,"8866":4070,"8867":4070,"8868":4069,"8869":4069,"8870":4070,"8871":4069,"8872":4070,"8873":4070,"8874":4069,"8875":4070,"8876":4070,"8877":4069,"8878":4070,"8879":4070,"8880":4069,"8881":4069,"8882":4069,"8883":4070,"8884":4070,"8885":4069,"8886":4069,"8887":4069,"8888":4069,"8889":4069,"8890":4070,"8891":4070,"8892":4069,"8893":4070,"8894":4069,"8895":4069,"8896":4069,"8897":4070,"8898":4070,"8899":4070,"8900":4070,"8901":4069,"8902":4069,"8903":4069,"8904":4069,"8905":4069,"8906":4069,"8907":4070,"8908":4069,"8909":4069,"8910":4070,"8911":4069,"8912":4069,"8913":4070,"8914":4070,"8915":4070,"8916":4069,"8917":4070,"8918":4069,"8919":4070,"8920":4069,"8921":4070,"8922":4069,"8923":4070,"8924":4069,"8925":4069,"8926":4070,"8927":4070,"8928":4070,"8929":4070,"8930":4070,"8931":4070,"8932":4070,"8933":4069,"8934":4069,"8935":4069,"8936":4070,"8937":4070,"8938":4069,"8939":4069,"8940":4070,"8941":4070,"8942":4069,"8943":4069,"8944":4070,"8945":4069,"8946":4070,"8947":4069,"8948":4069,"8949":4070,"8950":4070,"8951":4070,"8952":4069,"8953":4070,"8954":4070,"8955":4070,"8956":4070,"8957":4069,"8958":4069,"8959":4069,"8960":4069,"8961":4069,"8962":4069,"8963":4070,"8964":4069,"8965":4070,"8966":4070,"8967":4069,"8968":4069,"8969":4069,"8970":4069,"8971":4069,"8972":4070,"8973":4070,"8974":4070,"8975":4070,"8976":4069,"8977":4069,"8978":4070,"8979":4069,"8980":4069,"8981":4069,"8982":4069,"8983":4069,"8984":4070,"8985":4070,"8986":4069,"8987":4070,"8988":4070,"8989":4069,"8990":4070,"8991":4069,"8992":4070,"8993":4070,"8994":4070,"8995":4069,"8996":4069,"8997":4070,"8998":4070,"8999":4070,"9000":4069,"9001":4070,"9002":4070,"9003":4069,"9004":4070,"9005":4070,"9006":4069,"9007":4069,"9008":4069,"9009":4070,"9010":4070,"9011":4070,"9012":4069,"9013":4070,"9014":4070,"9015":4070,"9016":4069,"9017":4070,"9018":4070,"9019":4069,"9020":4069,"9021":4069,"9022":4069,"9023":4069,"9024":4069,"9025":4069,"9026":4069,"9027":4070,"9028":4069,"9029":4070,"9030":4069,"9031":4069,"9032":4070,"9033":4070,"9034":4070,"9035":4070,"9036":4069,"9037":4070,"9038":4069,"9039":4069,"9040":4069,"9041":4070,"9042":4070,"9043":4070,"9044":4069,"9045":4069,"9046":4070,"9047":4069,"9048":4069,"9049":4069,"9050":4070,"9051":4069,"9052":4069,"9053":4069,"9054":4069,"9055":4069,"9056":4070,"9057":4070,"9058":4070,"9059":4069,"9060":4069,"9061":4069,"9062":4069,"9063":4069,"9064":4070,"9065":4070,"9066":4069,"9067":4070,"9068":4070,"9069":4070,"9070":4069,"9071":4069,"9072":4069,"9073":4070,"9074":4069,"9075":4069,"9076":4070,"9077":4069,"9078":4069,"9079":4070,"9080":4069,"9081":4069,"9082":4069,"9083":4069,"9084":4070,"9085":4070,"9086":4069,"9087":4069,"9088":4069,"9089":4070,"9090":4070,"9091":4070,"9092":4069,"9093":4070,"9094":4070,"9095":4070,"9096":4070,"9097":4069,"9098":4070,"9099":4069,"9100":4069,"9101":4070,"9102":4070,"9103":4069,"9104":4070,"9105":4070,"9106":4069,"9107":4070,"9108":4070,"9109":4069,"9110":4070,"9111":4070,"9112":4070,"9113":4070,"9114":4069,"9115":4069,"9116":4069,"9117":4069,"9118":4069,"9119":4070,"9120":4070,"9121":4069,"9122":4070,"9123":4069,"9124":4070,"9125":4069,"9126":4069,"9127":4070,"9128":4069,"9129":4070,"9130":4069,"9131":4069,"9132":4070,"9133":4069,"9134":4069,"9135":4070,"9136":4070,"9137":4070,"9138":4070,"9139":4069,"9140":4070,"9141":4069,"9142":4069,"9143":4070,"9144":4070,"9145":4070,"9146":4070,"9147":4069,"9148":4070,"9149":4069,"9150":4070,"9151":4070,"9152":4069,"9153":4070,"9154":4070,"9155":4069,"9156":4069,"9157":4070,"9158":4069,"9159":4070,"9160":4069,"9161":4070,"9162":4070,"9163":4070,"9164":4069,"9165":4070,"9166":4070,"9167":4070,"9168":4070,"9169":4070,"9170":4069,"9171":4070,"9172":4069,"9173":4070,"9174":4070,"9175":4069,"9176":4070,"9177":4070,"9178":4069,"9179":4069,"9180":4069,"9181":4069,"9182":4069,"9183":4069,"9184":4069,"9185":4070,"9186":4069,"9187":4070,"9188":4070,"9189":4070,"9190":4070,"9191":4070,"9192":4069,"9193":4070,"9194":4069,"9195":4069,"9196":4070,"9197":4069,"9198":4070,"9199":4069,"9200":4070,"9201":4069,"9202":4070,"9203":4069,"9204":4069,"9205":4070,"9206":4070,"9207":4070,"9208":4069,"9209":4070,"9210":4070,"9211":4070,"9212":4069,"9213":4070,"9214":4070,"9215":4069,"9216":4070,"9217":4070,"9218":4070,"9219":4069,"9220":4069,"9221":4069,"9222":4070,"9223":4069,"9224":4070,"9225":4070,"9226":4069,"9227":4070,"9228":4069,"9229":4069,"9230":4070,"9231":4070,"9232":4069,"9233":4069,"9234":4069,"9235":4069,"9236":4070,"9237":4069,"9238":4069,"9239":4069,"9240":4070,"9241":4069,"9242":4070,"9243":4070,"9244":4070,"9245":4070,"9246":4069,"9247":4069,"9248":4070,"9249":4070,"9250":4069,"9251":4070,"9252":4069,"9253":4069,"9254":4070,"9255":4069,"9256":4069,"9257":4070,"9258":4070,"9259":4069,"9260":4070,"9261":4069,"9262":4070,"9263":4070,"9264":4070,"9265":4069,"9266":4069,"9267":4070,"9268":4070,"9269":4070,"9270":4070,"9271":4070,"9272":4069,"9273":4069,"9274":4069,"9275":4070,"9276":4069,"9277":4070,"9278":4069,"9279":4069,"9280":4070,"9281":4069,"9282":4069,"9283":4070,"9284":4069,"9285":4070,"9286":4070,"9287":4069,"9288":4069,"9289":4070,"9290":4070,"9291":4069,"9292":4069,"9293":4069,"9294":4070,"9295":4070,"9296":4070,"9297":4070,"9298":4070,"9299":4069,"9300":4070,"9301":4070,"9302":4070,"9303":4070,"9304":4069,"9305":4069,"9306":4069,"9307":4069,"9308":4069,"9309":4069,"9310":4069,"9311":4070,"9312":4070,"9313":4069,"9314":4069,"9315":4070,"9316":4069,"9317":4070,"9318":4069,"9319":4070,"9320":4069,"9321":4070,"9322":4070,"9323":4070,"9324":4070,"9325":4069,"9326":4070,"9327":4069,"9328":4069,"9329":4070,"9330":4070,"9331":4070,"9332":4070,"9333":4070,"9334":4069,"9335":4069,"9336":4070,"9337":4070,"9338":4070,"9339":4069,"9340":4069,"9341":4070,"9342":4070,"9343":4069,"9344":4069,"9345":4070,"9346":4069,"9347":4069,"9348":4070,"9349":4069,"9350":4069,"9351":4070,"9352":4070,"9353":4070,"9354":4070,"9355":4070,"9356":4069,"9357":4070,"9358":4070,"9359":4070,"9360":4070,"9361":4070,"9362":4070,"9363":4069,"9364":4069,"9365":4070,"9366":4069,"9367":4070,"9368":4069,"9369":4070,"9370":4069,"9371":4069,"9372":4069,"9373":4070,"9374":4070,"9375":4069,"9376":4069,"9377":4069,"9378":4069,"9379":4070,"9380":4070,"9381":4069,"9382":4070,"9383":4070,"9384":4070,"9385":4069,"9386":4070,"9387":4070,"9388":4070,"9389":4069,"9390":4070,"9391":4070,"9392":4069,"9393":4070,"9394":4069,"9395":4069,"9396":4070,"9397":4069,"9398":4070,"9399":4069,"9400":4069,"9401":4069,"9402":4070,"9403":4070,"9404":4069,"9405":4070,"9406":4069,"9407":4070,"9408":4069,"9409":4069,"9410":4069,"9411":4070,"9412":4069,"9413":4070,"9414":4070,"9415":4069,"9416":4070,"9417":4069,"9418":4070,"9419":4069,"9420":4070,"9421":4069,"9422":4070,"9423":4069,"9424":4069,"9425":4070,"9426":4070,"9427":4069,"9428":4069,"9429":4070,"9430":4069,"9431":4070,"9432":4070,"9433":4069,"9434":4069,"9435":4069,"9436":4069,"9437":4070,"9438":4069,"9439":4069,"9440":4070,"9441":4070,"9442":4069,"9443":4070,"9444":4069,"9445":4070,"9446":4070,"9447":4070,"9448":4070,"9449":4070,"9450":4070,"9451":4069,"9452":4070,"9453":4070,"9454":4069,"9455":4069,"9456":4070,"9457":4069,"9458":4069,"9459":4069,"9460":4070,"9461":4069,"9462":4069,"9463":4069,"9464":4069,"9465":4069,"9466":4070,"9467":4069,"9468":4069,"9469":4069,"9470":4069,"9471":4070,"9472":4070,"9473":4070,"9474":4069,"9475":4070,"9476":4070,"9477":4070,"9478":4069,"9479":4070,"9480":4069,"9481":4069,"9482":4070,"9483":4069,"9484":4070,"9485":4070,"9486":4070,"9487":4069,"9488":4069,"9489":4069,"9490":4069,"9491":4070,"9492":4069,"9493":4070,"9494":4069,"9495":4069,"9496":4070,"9497":4069,"9498":4069,"9499":4069,"9500":4070,"9501":4070,"9502":4069,"9503":4070,"9504":4069,"9505":4070,"9506":4069,"9507":4070,"9508":4070,"9509":4070,"9510":4070,"9511":4070,"9512":4070,"9513":4070,"9514":4070,"9515":4069,"9516":4070,"9517":4069,"9518":4070,"9519":4070,"9520":4070,"9521":4070,"9522":4069,"9523":4069,"9524":4070,"9525":4070,"9526":4069,"9527":4070,"9528":4069,"9529":4069,"9530":4069,"9531":4070,"9532":4070,"9533":4069,"9534":4070,"9535":4070,"9536":4069,"9537":4070,"9538":4070,"9539":4070,"9540":4070,"9541":4070,"9542":4069,"9543":4069,"9544":4070,"9545":4069,"9546":4070,"9547":4070,"9548":4070,"9549":4070,"9550":4070,"9551":4070,"9552":4070,"9553":4069,"9554":4070,"9555":4070,"9556":4070,"9557":4069,"9558":4070,"9559":4069,"9560":4069,"9561":4069,"9562":4069,"9563":4070,"9564":4070,"9565":4070,"9566":4069,"9567":4070,"9568":4070,"9569":4070,"9570":4069,"9571":4070,"9572":4069,"9573":4070,"9574":4069,"9575":4070,"9576":4069,"9577":4070,"9578":4069,"9579":4070,"9580":4070,"9581":4069,"9582":4070,"9583":4069,"9584":4070,"9585":4069,"9586":4070,"9587":4070,"9588":4069,"9589":4070,"9590":4070,"9591":4070,"9592":4070,"9593":4069,"9594":4070,"9595":4070,"9596":4069,"9597":4069,"9598":4069,"9599":4069,"9600":4070,"9601":4070,"9602":4069,"9603":4070,"9604":4069,"9605":4069,"9606":4069,"9607":4070,"9608":4070,"9609":4070,"9610":4069,"9611":4069,"9612":4069,"9613":4070,"9614":4070,"9615":4069,"9616":4069,"9617":4070,"9618":4070,"9619":4069,"9620":4070,"9621":4069,"9622":4070,"9623":4069,"9624":4070,"9625":4070,"9626":4070,"9627":4070,"9628":4070,"9629":4069,"9630":4069,"9631":4069,"9632":4069,"9633":4070,"9634":4069,"9635":4069,"9636":4069,"9637":4070,"9638":4069,"9639":4070,"9640":4069,"9641":4069,"9642":4069,"9643":4069,"9644":4069,"9645":4069,"9646":4069,"9647":4069,"9648":4069,"9649":4070,"9650":4070,"9651":4070,"9652":4070,"9653":4070,"9654":4070,"9655":4070,"9656":4069,"9657":4069,"9658":4069,"9659":4070,"9660":4069,"9661":4070,"9662":4069,"9663":4069,"9664":4070,"9665":4070,"9666":4069,"9667":4069,"9668":4069,"9669":4070,"9670":4070,"9671":4070,"9672":4070,"9673":4070,"9674":4070,"9675":4069,"9676":4069,"9677":4070,"9678":4070,"9679":4070,"9680":4070,"9681":4069,"9682":4069,"9683":4069,"9684":4070,"9685":4070,"9686":4069,"9687":4069,"9688":4069,"9689":4070,"9690":4070,"9691":4069,"9692":4070,"9693":4069,"9694":4069,"9695":4070,"9696":4069,"9697":4070,"9698":4069,"9699":4069,"9700":4070,"9701":4070,"9702":4070,"9703":4070,"9704":4070,"9705":4069,"9706":4070,"9707":4070,"9708":4069,"9709":4070,"9710":4070,"9711":4069,"9712":4070,"9713":4069,"9714":4070,"9715":4069,"9716":4069,"9717":4069,"9718":4070,"9719":4069,"9720":4070,"9721":4069,"9722":4070,"9723":4069,"9724":4069,"9725":4070,"9726":4070,"9727":4070,"9728":4070,"9729":4070,"9730":4069,"9731":4070,"9732":4069,"9733":4069,"9734":4070,"9735":4069,"9736":4069,"9737":4069,"9738":4069,"9739":4070,"9740":4069,"9741":4069,"9742":4070,"9743":4069,"9744":4070,"9745":4070,"9746":4070,"9747":4070,"9748":4069,"9749":4070,"9750":4069,"9751":4069,"9752":4069,"9753":4070,"9754":4069,"9755":4069,"9756":4069,"9757":4069,"9758":4069,"9759":4070,"9760":4069,"9761":4070,"9762":4069,"9763":4070,"9764":4070,"9765":4070,"9766":4070,"9767":4069,"9768":4069,"9769":4070,"9770":4070,"9771":4070,"9772":4070,"9773":4069,"9774":4069,"9775":4070,"9776":4069,"9777":4070,"9778":4070,"9779":4070,"9780":4070,"9781":4069,"9782":4070,"9783":4069,"9784":4070,"9785":4070,"9786":4070,"9787":4070,"9788":4070,"9789":4070,"9790":4069,"9791":4070,"9792":4070,"9793":4069,"9794":4070,"9795":4069,"9796":4069,"9797":4070,"9798":4069,"9799":4070,"9800":4069,"9801":4070,"9802":4070,"9803":4069,"9804":4070,"9805":4070,"9806":4070,"9807":4069,"9808":4069,"9809":4069,"9810":4070,"9811":4069,"9812":4069,"9813":4070,"9814":4069,"9815":4070,"9816":4069,"9817":4069,"9818":4069,"9819":4070,"9820":4069,"9821":4069,"9822":4069,"9823":4069,"9824":4069,"9825":4070,"9826":4070,"9827":4070,"9828":4069,"9829":4069,"9830":4069,"9831":4069,"9832":4070,"9833":4069,"9834":4069,"9835":4070,"9836":4069,"9837":4070,"9838":4069,"9839":4069,"9840":4069,"9841":4070,"9842":4069,"9843":4070,"9844":4070,"9845":4070,"9846":4069,"9847":4070,"9848":4069,"9849":4069,"9850":4069,"9851":4069,"9852":4069,"9853":4070,"9854":4070,"9855":4070,"9856":4069,"9857":4070,"9858":4069,"9859":4069,"9860":4069,"9861":4070,"9862":4069,"9863":4069,"9864":4070,"9865":4070,"9866":4069,"9867":4070,"9868":4070,"9869":4069,"9870":4069,"9871":4070,"9872":4070,"9873":4070,"9874":4069,"9875":4070,"9876":4070,"9877":4070,"9878":4069,"9879":4069,"9880":4070,"9881":4070,"9882":4070,"9883":4069,"9884":4070,"9885":4070,"9886":4070,"9887":4069,"9888":4069,"9889":4069,"9890":4070,"9891":4069,"9892":4070,"9893":4070,"9894":4069,"9895":4069,"9896":4070,"9897":4069,"9898":4070,"9899":4069,"9900":4069,"9901":4070,"9902":4069,"9903":4069,"9904":4069,"9905":4069,"9906":4070,"9907":4070,"9908":4070,"9909":4069,"9910":4069,"9911":4070,"9912":4069,"9913":4070,"9914":4070,"9915":4070,"9916":4069,"9917":4069,"9918":4069,"9919":4069,"9920":4070,"9921":4069,"9922":4070,"9923":4070,"9924":4070,"9925":4070,"9926":4069,"9927":4070,"9928":4070,"9929":4069,"9930":4070,"9931":4069,"9932":4069,"9933":4070,"9934":4069,"9935":4070,"9936":4069,"9937":4069,"9938":4070,"9939":4069,"9940":4070,"9941":4070,"9942":4069,"9943":4069,"9944":4069,"9945":4069,"9946":4070,"9947":4069,"9948":4069,"9949":4070,"9950":4070,"9951":4069,"9952":4070,"9953":4069,"9954":4070,"9955":4070,"9956":4069,"9957":4069,"9958":4069,"9959":4069,"9960":4070,"9961":4069,"9962":4069,"9963":4069,"9964":4069,"9965":4070,"9966":4070,"9967":4069,"9968":4069,"9969":4070,"9970":4070,"9971":4070,"9972":4070,"9973":4070,"9974":4070,"9975":4070,"9976":4069,"9977":4070,"9978":4070,"9979":4070,"9980":4070,"9981":4070,"9982":4070,"9983":4069,"9984":4069,"9985":4069,"9986":4069,"9987":4070,"9988":4070,"9989":4070,"9990":4069,"9991":4070,"9992":4069,"9993":4070,"9994":4069,"9995":4069,"9996":4069,"9997":4069,"9998":4069,"9999":4069,"10000":4070,"10001":4070,"10002":4070,"10003":4069,"10004":4070,"10005":4069,"10006":4069,"10007":4070,"10008":4070,"10009":4069,"10010":4069,"10011":4069,"10012":4069,"10013":4069,"10014":4069,"10015":4069,"10016":4070,"10017":4069,"10018":4070,"10019":4070,"10020":4069,"10021":4070,"10022":4070,"10023":4069,"10024":4069,"10025":4069,"10026":4069,"10027":4070,"10028":4070,"10029":4070,"10030":4070,"10031":4069,"10032":4070,"10033":4069,"10034":4070,"10035":4070,"10036":4070,"10037":4069,"10038":4069,"10039":4069,"10040":4070,"10041":4069,"10042":4070,"10043":4069,"10044":4070,"10045":4069,"10046":4070,"10047":4070,"10048":4070,"10049":4070,"10050":4069,"10051":4069,"10052":4070,"10053":4070,"10054":4070,"10055":4070,"10056":4069,"10057":4070,"10058":4070,"10059":4070,"10060":4070,"10061":4069,"10062":4069,"10063":4069,"10064":4070,"10065":4070,"10066":4069,"10067":4069,"10068":4070,"10069":4069,"10070":4070,"10071":4070,"10072":4069,"10073":4069,"10074":4070,"10075":4069,"10076":4070,"10077":4069,"10078":4069,"10079":4070,"10080":4069,"10081":4070,"10082":4069,"10083":4069,"10084":4069,"10085":4069,"10086":4069,"10087":4069,"10088":4070,"10089":4070,"10090":4069,"10091":4070,"10092":4069,"10093":4069,"10094":4070,"10095":4070,"10096":4069,"10097":4070,"10098":4069,"10099":4069,"10100":4069,"10101":4070,"10102":4070,"10103":4070,"10104":4070,"10105":4069,"10106":4069,"10107":4070,"10108":4070,"10109":4069,"10110":4070,"10111":4069,"10112":4070,"10113":4070,"10114":4069,"10115":4069,"10116":4070,"10117":4069,"10118":4070,"10119":4070,"10120":4070,"10121":4069,"10122":4069,"10123":4069,"10124":4070,"10125":4070,"10126":4069,"10127":4069,"10128":4069,"10129":4069,"10130":4070,"10131":4070,"10132":4070,"10133":4070,"10134":4070,"10135":4070,"10136":4070,"10137":4069,"10138":4070,"10139":4070,"10140":4070,"10141":4069,"10142":4069,"10143":4070,"10144":4069,"10145":4070,"10146":4069,"10147":4069,"10148":4070,"10149":4070,"10150":4070,"10151":4069,"10152":4069,"10153":4069,"10154":4069,"10155":4070,"10156":4069,"10157":4069,"10158":4069,"10159":4070,"10160":4069,"10161":4070,"10162":4070,"10163":4070,"10164":4070,"10165":4070,"10166":4069,"10167":4069,"10168":4070,"10169":4070,"10170":4069,"10171":4070,"10172":4070,"10173":4070,"10174":4070,"10175":4069,"10176":4070,"10177":4069,"10178":4069,"10179":4069,"10180":4070,"10181":4070,"10182":4070,"10183":4070,"10184":4069,"10185":4070,"10186":4070,"10187":4070,"10188":4070,"10189":4069,"10190":4070,"10191":4069,"10192":4069,"10193":4070,"10194":4069,"10195":4069,"10196":4069,"10197":4070,"10198":4069,"10199":4069,"10200":4070,"10201":4070,"10202":4070,"10203":4070,"10204":4070,"10205":4069,"10206":4070,"10207":4070,"10208":4069,"10209":4069,"10210":4070,"10211":4070,"10212":4070,"10213":4069,"10214":4070,"10215":4070,"10216":4069,"10217":4069,"10218":4070,"10219":4069,"10220":4069,"10221":4070,"10222":4070,"10223":4069,"10224":4069,"10225":4070,"10226":4069,"10227":4070,"10228":4069,"10229":4070,"10230":4070,"10231":4070,"10232":4069,"10233":4070,"10234":4070,"10235":4069,"10236":4070,"10237":4070,"10238":4069,"10239":4070,"10240":4069,"10241":4069,"10242":4069,"10243":4070,"10244":4069,"10245":4070,"10246":4069,"10247":4069,"10248":4070,"10249":4070,"10250":4070,"10251":4070,"10252":4070,"10253":4070,"10254":4070,"10255":4069,"10256":4070,"10257":4070,"10258":4069,"10259":4069,"10260":4069,"10261":4069,"10262":4070,"10263":4070,"10264":4069,"10265":4069,"10266":4069,"10267":4070,"10268":4070,"10269":4069,"10270":4069,"10271":4069,"10272":4069,"10273":4069,"10274":4069,"10275":4069,"10276":4069,"10277":4070,"10278":4069,"10279":4070,"10280":4070,"10281":4069,"10282":4070,"10283":4070,"10284":4069,"10285":4069,"10286":4070,"10287":4070,"10288":4070,"10289":4069,"10290":4070,"10291":4069,"10292":4069,"10293":4069,"10294":4069,"10295":4070,"10296":4069,"10297":4070,"10298":4069,"10299":4070,"10300":4070,"10301":4069,"10302":4070,"10303":4070,"10304":4069,"10305":4069,"10306":4070,"10307":4070,"10308":4069,"10309":4070,"10310":4070,"10311":4070,"10312":4070,"10313":4069,"10314":4069,"10315":4070,"10316":4070,"10317":4069,"10318":4070,"10319":4070,"10320":4069,"10321":4070,"10322":4069,"10323":4069,"10324":4069,"10325":4069,"10326":4070,"10327":4070,"10328":4069,"10329":4069,"10330":4069,"10331":4070,"10332":4069,"10333":4069,"10334":4070,"10335":4069,"10336":4069,"10337":4069,"10338":4069,"10339":4070,"10340":4069,"10341":4070,"10342":4069,"10343":4069,"10344":4069,"10345":4070,"10346":4070,"10347":4070,"10348":4069,"10349":4070,"10350":4070,"10351":4069,"10352":4070,"10353":4070,"10354":4069,"10355":4070,"10356":4069,"10357":4070,"10358":4070,"10359":4069,"10360":4070,"10361":4070,"10362":4069,"10363":4069,"10364":4069,"10365":4070,"10366":4069,"10367":4070,"10368":4070,"10369":4070,"10370":4069,"10371":4070,"10372":4070,"10373":4070,"10374":4069,"10375":4070,"10376":4070,"10377":4070,"10378":4070,"10379":4070,"10380":4069,"10381":4070,"10382":4069,"10383":4069,"10384":4069,"10385":4070,"10386":4070,"10387":4069,"10388":4069,"10389":4069,"10390":4069,"10391":4070,"10392":4070,"10393":4069,"10394":4070,"10395":4070,"10396":4070,"10397":4070,"10398":4070,"10399":4069,"10400":4069,"10401":4070,"10402":4070,"10403":4070,"10404":4069,"10405":4069,"10406":4069,"10407":4069,"10408":4070,"10409":4069,"10410":4069,"10411":4070,"10412":4070,"10413":4069,"10414":4070,"10415":4070,"10416":4070,"10417":4070,"10418":4069,"10419":4069,"10420":4069,"10421":4070,"10422":4070,"10423":4070,"10424":4070,"10425":4069,"10426":4070,"10427":4069,"10428":4070,"10429":4070,"10430":4069,"10431":4070,"10432":4069,"10433":4070,"10434":4070,"10435":4070,"10436":4069,"10437":4070,"10438":4069,"10439":4070,"10440":4070,"10441":4070,"10442":4070,"10443":4070,"10444":4069,"10445":4070,"10446":4069,"10447":4069,"10448":4070,"10449":4070,"10450":4070,"10451":4070,"10452":4069,"10453":4069,"10454":4070,"10455":4070,"10456":4070,"10457":4070,"10458":4069,"10459":4069,"10460":4069,"10461":4069,"10462":4070,"10463":4070,"10464":4069,"10465":4069,"10466":4069,"10467":4070,"10468":4070,"10469":4070,"10470":4070,"10471":4070,"10472":4070,"10473":4069,"10474":4069,"10475":4070,"10476":4069,"10477":4069,"10478":4070,"10479":4070,"10480":4069,"10481":4070,"10482":4070,"10483":4070,"10484":4069,"10485":4069,"10486":4069,"10487":4070,"10488":4069,"10489":4069,"10490":4070,"10491":4070,"10492":4069,"10493":4069,"10494":4069,"10495":4069,"10496":4069,"10497":4070,"10498":4070,"10499":4069,"10500":4070,"10501":4070,"10502":4069,"10503":4069,"10504":4069,"10505":4069,"10506":4070,"10507":4070,"10508":4070,"10509":4069,"10510":4069,"10511":4070,"10512":4070,"10513":4069,"10514":4069,"10515":4070,"10516":4069,"10517":4069,"10518":4069,"10519":4070,"10520":4070,"10521":4070,"10522":4069,"10523":4069,"10524":4069,"10525":4069,"10526":4069,"10527":4069,"10528":4070,"10529":4069,"10530":4070,"10531":4070,"10532":4069,"10533":4070,"10534":4069,"10535":4069,"10536":4070,"10537":4069,"10538":4070,"10539":4069,"10540":4070,"10541":4069,"10542":4069,"10543":4070,"10544":4070,"10545":4069,"10546":4070,"10547":4070,"10548":4069,"10549":4070,"10550":4069,"10551":4069,"10552":4069,"10553":4069,"10554":4070,"10555":4069,"10556":4069,"10557":4069,"10558":4069,"10559":4070,"10560":4069,"10561":4069,"10562":4069,"10563":4070,"10564":4070,"10565":4070,"10566":4069,"10567":4070,"10568":4070,"10569":4069,"10570":4070,"10571":4070,"10572":4070,"10573":4069,"10574":4069,"10575":4070,"10576":4069,"10577":4070,"10578":4070,"10579":4070,"10580":4069,"10581":4070,"10582":4070,"10583":4070,"10584":4070,"10585":4069,"10586":4070,"10587":4070,"10588":4069,"10589":4070,"10590":4069,"10591":4070,"10592":4069,"10593":4070,"10594":4070,"10595":4069,"10596":4070,"10597":4069,"10598":4070,"10599":4069,"10600":4069,"10601":4070,"10602":4070,"10603":4070,"10604":4070,"10605":4069,"10606":4069,"10607":4069,"10608":4069,"10609":4070,"10610":4069,"10611":4069,"10612":4070,"10613":4069,"10614":4069,"10615":4069,"10616":4069,"10617":4069,"10618":4070,"10619":4069,"10620":4069,"10621":4069,"10622":4070,"10623":4070,"10624":4070,"10625":4069,"10626":4069,"10627":4070,"10628":4070,"10629":4069,"10630":4069,"10631":4070,"10632":4069,"10633":4069,"10634":4069,"10635":4069,"10636":4070,"10637":4070,"10638":4070,"10639":4070,"10640":4070,"10641":4069,"10642":4069,"10643":4069,"10644":4070,"10645":4070,"10646":4070,"10647":4069,"10648":4069,"10649":4070,"10650":4070,"10651":4070,"10652":4069,"10653":4070,"10654":4070,"10655":4070,"10656":4069,"10657":4069,"10658":4070,"10659":4070,"10660":4070,"10661":4070,"10662":4070,"10663":4069,"10664":4070,"10665":4069,"10666":4069,"10667":4069,"10668":4069,"10669":4069,"10670":4070,"10671":4069,"10672":4069,"10673":4069,"10674":4070,"10675":4069,"10676":4069,"10677":4069,"10678":4069,"10679":4070,"10680":4070,"10681":4070,"10682":4069,"10683":4070,"10684":4069,"10685":4069,"10686":4069,"10687":4070,"10688":4069,"10689":4069,"10690":4069,"10691":4070,"10692":4069,"10693":4069,"10694":4069,"10695":4069,"10696":4070,"10697":4070,"10698":4070,"10699":4070,"10700":4069,"10701":4070,"10702":4069,"10703":4069,"10704":4070,"10705":4069,"10706":4069,"10707":4070,"10708":4069,"10709":4070,"10710":4069,"10711":4069,"10712":4069,"10713":4069,"10714":4070,"10715":4070,"10716":4069,"10717":4070,"10718":4070,"10719":4070,"10720":4070,"10721":4069,"10722":4070,"10723":4070,"10724":4069,"10725":4070,"10726":4070,"10727":4069,"10728":4070,"10729":4070,"10730":4069,"10731":4069,"10732":4069,"10733":4069,"10734":4069,"10735":4069,"10736":4069,"10737":4070,"10738":4069,"10739":4070,"10740":4070,"10741":4069,"10742":4069,"10743":4069,"10744":4070,"10745":4070,"10746":4070,"10747":4070,"10748":4070,"10749":4069,"10750":4070,"10751":4070,"10752":4070,"10753":4069,"10754":4070,"10755":4069,"10756":4069,"10757":4070,"10758":4070,"10759":4070,"10760":4069,"10761":4070,"10762":4070,"10763":4070,"10764":4070,"10765":4070,"10766":4070,"10767":4069,"10768":4070,"10769":4070,"10770":4069,"10771":4069,"10772":4069,"10773":4070,"10774":4069,"10775":4070,"10776":4069,"10777":4070,"10778":4070,"10779":4069,"10780":4070,"10781":4070,"10782":4070,"10783":4069,"10784":4069,"10785":4069,"10786":4069,"10787":4070,"10788":4070,"10789":4070,"10790":4069,"10791":4070,"10792":4069,"10793":4070,"10794":4070,"10795":4070,"10796":4070,"10797":4069,"10798":4069,"10799":4070,"10800":4069,"10801":4070,"10802":4069,"10803":4070,"10804":4070,"10805":4069,"10806":4069,"10807":4069,"10808":4069,"10809":4069,"10810":4070,"10811":4069,"10812":4069,"10813":4070,"10814":4069,"10815":4070,"10816":4070,"10817":4069,"10818":4069,"10819":4070,"10820":4069,"10821":4069,"10822":4069,"10823":4070,"10824":4070,"10825":4069,"10826":4069,"10827":4070,"10828":4069,"10829":4070,"10830":4069,"10831":4070,"10832":4070,"10833":4069,"10834":4069,"10835":4069,"10836":4070,"10837":4069,"10838":4069,"10839":4069,"10840":4070,"10841":4069,"10842":4069,"10843":4070,"10844":4070,"10845":4070,"10846":4070,"10847":4070,"10848":4069,"10849":4070,"10850":4069,"10851":4069,"10852":4069,"10853":4069,"10854":4069,"10855":4070,"10856":4070,"10857":4069,"10858":4069,"10859":4070,"10860":4069,"10861":4069,"10862":4070,"10863":4070,"10864":4069,"10865":4069,"10866":4070,"10867":4070,"10868":4069,"10869":4070,"10870":4070,"10871":4070,"10872":4069,"10873":4069,"10874":4070,"10875":4070,"10876":4069,"10877":4069,"10878":4069,"10879":4070,"10880":4070,"10881":4069,"10882":4070,"10883":4070,"10884":4069,"10885":4069,"10886":4069,"10887":4069,"10888":4070,"10889":4069,"10890":4070,"10891":4069,"10892":4069,"10893":4070,"10894":4069,"10895":4069,"10896":4070,"10897":4070,"10898":4069,"10899":4070,"10900":4069,"10901":4069,"10902":4069,"10903":4069,"10904":4069,"10905":4069,"10906":4069,"10907":4070,"10908":4069,"10909":4069,"10910":4069,"10911":4070,"10912":4070,"10913":4069,"10914":4070,"10915":4069,"10916":4070,"10917":4069,"10918":4070,"10919":4070,"10920":4070,"10921":4069,"10922":4070,"10923":4070,"10924":4070,"10925":4069,"10926":4069,"10927":4069,"10928":4069,"10929":4070,"10930":4069,"10931":4069,"10932":4069,"10933":4069,"10934":4069,"10935":4069,"10936":4070,"10937":4070,"10938":4069,"10939":4069,"10940":4069,"10941":4069,"10942":4069,"10943":4070,"10944":4069,"10945":4070,"10946":4070,"10947":4069,"10948":4069,"10949":4069,"10950":4069,"10951":4070,"10952":4069,"10953":4069,"10954":4070,"10955":4070,"10956":4069,"10957":4070,"10958":4069,"10959":4069,"10960":4070,"10961":4069,"10962":4069,"10963":4069,"10964":4070,"10965":4069,"10966":4069,"10967":4069,"10968":4069,"10969":4069,"10970":4070,"10971":4070,"10972":4070,"10973":4070,"10974":4069,"10975":4070,"10976":4069,"10977":4070,"10978":4070,"10979":4069,"10980":4070,"10981":4069,"10982":4070,"10983":4069,"10984":4070,"10985":4070,"10986":4069,"10987":4070,"10988":4069,"10989":4069,"10990":4070,"10991":4070,"10992":4069,"10993":4069,"10994":4069,"10995":4069,"10996":4070,"10997":4070,"10998":4070,"10999":4070,"11000":4070,"11001":4070,"11002":4069,"11003":4070,"11004":4069,"11005":4070,"11006":4070,"11007":4069,"11008":4070,"11009":4070,"11010":4069,"11011":4070,"11012":4069,"11013":4070,"11014":4069,"11015":4070,"11016":4069,"11017":4070,"11018":4069,"11019":4069,"11020":4070,"11021":4069,"11022":4069,"11023":4069,"11024":4069,"11025":4069,"11026":4069,"11027":4069,"11028":4070,"11029":4069,"11030":4069,"11031":4069,"11032":4069,"11033":4069,"11034":4069,"11035":4070,"11036":4070,"11037":4070,"11038":4069,"11039":4069,"11040":4069,"11041":4070,"11042":4070,"11043":4070,"11044":4070,"11045":4070,"11046":4069,"11047":4070,"11048":4069,"11049":4069,"11050":4070,"11051":4069,"11052":4070,"11053":4070,"11054":4069,"11055":4070,"11056":4070,"11057":4070,"11058":4070,"11059":4069,"11060":4069,"11061":4070,"11062":4070,"11063":4070,"11064":4070,"11065":4069,"11066":4070,"11067":4069,"11068":4070,"11069":4069,"11070":4069,"11071":4069,"11072":4069,"11073":4069,"11074":4070,"11075":4070,"11076":4069,"11077":4070,"11078":4070,"11079":4070,"11080":4070,"11081":4069,"11082":4069,"11083":4070,"11084":4070,"11085":4069,"11086":4069,"11087":4069,"11088":4069,"11089":4070,"11090":4069,"11091":4069,"11092":4069,"11093":4070,"11094":4069,"11095":4069,"11096":4070,"11097":4069,"11098":4070,"11099":4070,"11100":4070,"11101":4069,"11102":4070,"11103":4070,"11104":4070,"11105":4070,"11106":4070,"11107":4069,"11108":4069,"11109":4070,"11110":4070,"11111":4070,"11112":4070,"11113":4069,"11114":4070,"11115":4070,"11116":4069,"11117":4070,"11118":4070,"11119":4069,"11120":4069,"11121":4069,"11122":4069,"11123":4069,"11124":4070,"11125":4069,"11126":4069,"11127":4069,"11128":4070,"11129":4069,"11130":4069,"11131":4069,"11132":4069,"11133":4069,"11134":4070,"11135":4070,"11136":4069,"11137":4069,"11138":4069,"11139":4070,"11140":4070,"11141":4069,"11142":4069,"11143":4070,"11144":4069,"11145":4069,"11146":4069,"11147":4070,"11148":4070,"11149":4069,"11150":4069,"11151":4070,"11152":4069,"11153":4070,"11154":4070,"11155":4070,"11156":4069,"11157":4070,"11158":4070,"11159":4070,"11160":4070,"11161":4069,"11162":4069,"11163":4070,"11164":4069,"11165":4069,"11166":4070,"11167":4069,"11168":4069,"11169":4070,"11170":4069,"11171":4069,"11172":4070,"11173":4070,"11174":4069,"11175":4070,"11176":4070,"11177":4069,"11178":4070,"11179":4069,"11180":4070,"11181":4069,"11182":4069,"11183":4069,"11184":4070,"11185":4070,"11186":4070,"11187":4069,"11188":4069,"11189":4069,"11190":4070,"11191":4069,"11192":4070,"11193":4069,"11194":4069,"11195":4069,"11196":4070,"11197":4070,"11198":4069,"11199":4070,"11200":4070,"11201":4069,"11202":4070,"11203":4070,"11204":4070,"11205":4070,"11206":4070,"11207":4070,"11208":4070,"11209":4070,"11210":4069,"11211":4069,"11212":4070,"11213":4069,"11214":4070,"11215":4070,"11216":4069,"11217":4069,"11218":4070,"11219":4069,"11220":4069,"11221":4070,"11222":4070,"11223":4069,"11224":4069,"11225":4069,"11226":4069,"11227":4069,"11228":4070,"11229":4070,"11230":4070,"11231":4070,"11232":4070,"11233":4069,"11234":4069,"11235":4070,"11236":4070,"11237":4069,"11238":4069,"11239":4070,"11240":4070,"11241":4070,"11242":4070,"11243":4070,"11244":4069,"11245":4069,"11246":4069,"11247":4070,"11248":4070,"11249":4070,"11250":4070,"11251":4069,"11252":4070,"11253":4070,"11254":4069,"11255":4070,"11256":4070,"11257":4070,"11258":4069,"11259":4070,"11260":4069,"11261":4069,"11262":4069,"11263":4070,"11264":4070,"11265":4070,"11266":4070,"11267":4070,"11268":4069,"11269":4069,"11270":4069,"11271":4070,"11272":4070,"11273":4070,"11274":4070,"11275":4069,"11276":4069,"11277":4069,"11278":4070,"11279":4070,"11280":4070,"11281":4070,"11282":4069,"11283":4070,"11284":4069,"11285":4069,"11286":4069,"11287":4070,"11288":4070,"11289":4070,"11290":4070,"11291":4070,"11292":4070,"11293":4070,"11294":4070,"11295":4070,"11296":4069,"11297":4069,"11298":4070,"11299":4070,"11300":4070,"11301":4070,"11302":4069,"11303":4069,"11304":4070,"11305":4069,"11306":4070,"11307":4069,"11308":4069,"11309":4069,"11310":4070,"11311":4070,"11312":4070,"11313":4069,"11314":4069,"11315":4069,"11316":4070,"11317":4070,"11318":4069,"11319":4070,"11320":4069,"11321":4070,"11322":4070,"11323":4070,"11324":4070,"11325":4069,"11326":4070,"11327":4069,"11328":4070,"11329":4070,"11330":4069,"11331":4070,"11332":4070,"11333":4069,"11334":4069,"11335":4069,"11336":4069,"11337":4070,"11338":4069,"11339":4070,"11340":4069,"11341":4069,"11342":4069,"11343":4069,"11344":4070,"11345":4070,"11346":4070,"11347":4069,"11348":4069,"11349":4069,"11350":4070,"11351":4069,"11352":4069,"11353":4069,"11354":4070,"11355":4069,"11356":4070,"11357":4070,"11358":4069,"11359":4070,"11360":4070,"11361":4070,"11362":4069,"11363":4069,"11364":4069,"11365":4069,"11366":4069,"11367":4070,"11368":4070,"11369":4069,"11370":4069,"11371":4069,"11372":4070,"11373":4070,"11374":4069,"11375":4069,"11376":4070,"11377":4070,"11378":4070,"11379":4070,"11380":4069,"11381":4070,"11382":4070,"11383":4070,"11384":4069,"11385":4069,"11386":4070,"11387":4070,"11388":4070,"11389":4070,"11390":4069,"11391":4070,"11392":4070,"11393":4069,"11394":4069,"11395":4069,"11396":4069,"11397":4070,"11398":4070,"11399":4069,"11400":4069,"11401":4070,"11402":4070,"11403":4070,"11404":4070,"11405":4070,"11406":4069,"11407":4069,"11408":4069,"11409":4070,"11410":4069,"11411":4069,"11412":4069,"11413":4070,"11414":4070,"11415":4070,"11416":4069,"11417":4070,"11418":4069,"11419":4070,"11420":4069,"11421":4069,"11422":4069,"11423":4070,"11424":4069,"11425":4070,"11426":4069,"11427":4069,"11428":4069,"11429":4070,"11430":4069,"11431":4070,"11432":4069,"11433":4069,"11434":4069,"11435":4069,"11436":4070,"11437":4070,"11438":4070,"11439":4070,"11440":4070,"11441":4070,"11442":4070,"11443":4069,"11444":4069,"11445":4070,"11446":4069,"11447":4069,"11448":4070,"11449":4070,"11450":4070,"11451":4069,"11452":4070,"11453":4069,"11454":4069,"11455":4070,"11456":4070,"11457":4070,"11458":4069,"11459":4069,"11460":4070,"11461":4069,"11462":4069,"11463":4070,"11464":4070,"11465":4070,"11466":4070,"11467":4070,"11468":4070,"11469":4070,"11470":4070,"11471":4070,"11472":4069,"11473":4070,"11474":4070,"11475":4070,"11476":4070,"11477":4069,"11478":4069,"11479":4069,"11480":4070,"11481":4069,"11482":4069,"11483":4070,"11484":4069,"11485":4070,"11486":4070,"11487":4069,"11488":4069,"11489":4069,"11490":4069,"11491":4069,"11492":4069,"11493":4070,"11494":4070,"11495":4070,"11496":4070,"11497":4069,"11498":4070,"11499":4070,"11500":4070,"11501":4070,"11502":4069,"11503":4070,"11504":4070,"11505":4069,"11506":4069,"11507":4070,"11508":4069,"11509":4070,"11510":4070,"11511":4070,"11512":4070,"11513":4070,"11514":4070,"11515":4070,"11516":4070,"11517":4070,"11518":4069,"11519":4069,"11520":4070,"11521":4070,"11522":4070,"11523":4069,"11524":4069,"11525":4069,"11526":4070,"11527":4070,"11528":4070,"11529":4069,"11530":4070,"11531":4070,"11532":4069,"11533":4069,"11534":4069,"11535":4070,"11536":4069,"11537":4070,"11538":4070,"11539":4070,"11540":4070,"11541":4070,"11542":4069,"11543":4070,"11544":4069,"11545":4069,"11546":4070,"11547":4069,"11548":4070,"11549":4070,"11550":4069,"11551":4069,"11552":4070,"11553":4070,"11554":4069,"11555":4070,"11556":4070,"11557":4070,"11558":4069,"11559":4070,"11560":4070,"11561":4069,"11562":4069,"11563":4069,"11564":4069,"11565":4069,"11566":4070,"11567":4070,"11568":4070,"11569":4070,"11570":4069,"11571":4069,"11572":4070,"11573":4069,"11574":4070,"11575":4069,"11576":4069,"11577":4070,"11578":4069,"11579":4069,"11580":4069,"11581":4069,"11582":4070,"11583":4069,"11584":4069,"11585":4070,"11586":4069,"11587":4070,"11588":4069,"11589":4069,"11590":4070,"11591":4070,"11592":4069,"11593":4070,"11594":4069,"11595":4069,"11596":4070,"11597":4069,"11598":4069,"11599":4070,"11600":4070,"11601":4070,"11602":4070,"11603":4069,"11604":4070,"11605":4070,"11606":4070,"11607":4069,"11608":4070,"11609":4069,"11610":4069,"11611":4069,"11612":4070,"11613":4070,"11614":4070,"11615":4069,"11616":4070,"11617":4070,"11618":4069,"11619":4069,"11620":4070,"11621":4069,"11622":4069,"11623":4069,"11624":4070,"11625":4070,"11626":4069,"11627":4069,"11628":4069,"11629":4070,"11630":4070,"11631":4070,"11632":4070,"11633":4069,"11634":4069,"11635":4070,"11636":4070,"11637":4070,"11638":4069,"11639":4069,"11640":4069,"11641":4069,"11642":4070,"11643":4069,"11644":4070,"11645":4069,"11646":4069,"11647":4069,"11648":4069,"11649":4070,"11650":4070,"11651":4070,"11652":4070,"11653":4070,"11654":4069,"11655":4069,"11656":4069,"11657":4069,"11658":4070,"11659":4069,"11660":4070,"11661":4070,"11662":4069,"11663":4070,"11664":4069,"11665":4069,"11666":4070,"11667":4069,"11668":4070,"11669":4069,"11670":4069,"11671":4069,"11672":4069,"11673":4070,"11674":4070,"11675":4070,"11676":4070,"11677":4070,"11678":4070,"11679":4069,"11680":4070,"11681":4070,"11682":4069,"11683":4069,"11684":4070,"11685":4069,"11686":4069,"11687":4069,"11688":4069,"11689":4070,"11690":4069,"11691":4070,"11692":4069,"11693":4069,"11694":4069,"11695":4069,"11696":4070,"11697":4070,"11698":4069,"11699":4070,"11700":4070,"11701":4070,"11702":4070,"11703":4069,"11704":4070,"11705":4069,"11706":4069,"11707":4069,"11708":4069,"11709":4069,"11710":4070,"11711":4070,"11712":4070,"11713":4069,"11714":4070,"11715":4070,"11716":4070,"11717":4070,"11718":4070,"11719":4069,"11720":4069,"11721":4070,"11722":4070,"11723":4070,"11724":4069,"11725":4070,"11726":4070,"11727":4069,"11728":4069,"11729":4069,"11730":4069,"11731":4070,"11732":4070,"11733":4069,"11734":4070,"11735":4070,"11736":4069,"11737":4069,"11738":4069,"11739":4069,"11740":4070,"11741":4069,"11742":4069,"11743":4069,"11744":4069,"11745":4069,"11746":4069,"11747":4070,"11748":4069,"11749":4070,"11750":4069,"11751":4069,"11752":4070,"11753":4069,"11754":4069,"11755":4070,"11756":4069,"11757":4070,"11758":4069,"11759":4069,"11760":4070,"11761":4070,"11762":4070,"11763":4070,"11764":4069,"11765":4070,"11766":4070,"11767":4070,"11768":4070,"11769":4070,"11770":4069,"11771":4070,"11772":4070,"11773":4069,"11774":4069,"11775":4070,"11776":4070,"11777":4069,"11778":4070,"11779":4069,"11780":4069,"11781":4069,"11782":4070,"11783":4070,"11784":4069,"11785":4069,"11786":4070,"11787":4069,"11788":4069,"11789":4069,"11790":4070,"11791":4070,"11792":4070,"11793":4070,"11794":4070,"11795":4069,"11796":4069,"11797":4069,"11798":4069,"11799":4070,"11800":4070,"11801":4070,"11802":4069,"11803":4069,"11804":4070,"11805":4069,"11806":4069,"11807":4070,"11808":4069,"11809":4070,"11810":4069,"11811":4069,"11812":4070,"11813":4069,"11814":4069,"11815":4070,"11816":4069,"11817":4070,"11818":4069,"11819":4070,"11820":4070,"11821":4069,"11822":4070,"11823":4070,"11824":4069,"11825":4069,"11826":4070,"11827":4069,"11828":4069,"11829":4070,"11830":4069,"11831":4069,"11832":4070,"11833":4070,"11834":4069,"11835":4069,"11836":4069,"11837":4070,"11838":4069,"11839":4069,"11840":4069,"11841":4070,"11842":4069,"11843":4070,"11844":4070,"11845":4069,"11846":4069,"11847":4069,"11848":4070,"11849":4069,"11850":4070,"11851":4069,"11852":4069,"11853":4070,"11854":4069,"11855":4070,"11856":4070,"11857":4070,"11858":4069,"11859":4070,"11860":4069,"11861":4070,"11862":4070,"11863":4069,"11864":4070,"11865":4070,"11866":4070,"11867":4069,"11868":4070,"11869":4069,"11870":4070,"11871":4070,"11872":4069,"11873":4069,"11874":4069,"11875":4070,"11876":4070,"11877":4070,"11878":4070,"11879":4069,"11880":4070,"11881":4070,"11882":4069,"11883":4069,"11884":4069,"11885":4070,"11886":4069,"11887":4070,"11888":4070,"11889":4070,"11890":4070,"11891":4069,"11892":4069,"11893":4069,"11894":4069,"11895":4069,"11896":4069,"11897":4069,"11898":4070,"11899":4070,"11900":4069,"11901":4069,"11902":4069,"11903":4069,"11904":4069,"11905":4070,"11906":4070,"11907":4070,"11908":4070,"11909":4069,"11910":4070,"11911":4070,"11912":4069,"11913":4069,"11914":4070,"11915":4070,"11916":4069,"11917":4069,"11918":4069,"11919":4069,"11920":4070,"11921":4069,"11922":4070,"11923":4070,"11924":4070,"11925":4070,"11926":4069,"11927":4069,"11928":4070,"11929":4070,"11930":4069,"11931":4070,"11932":4070,"11933":4069,"11934":4070,"11935":4069,"11936":4070,"11937":4070,"11938":4069,"11939":4070,"11940":4069,"11941":4069,"11942":4070,"11943":4070,"11944":4069,"11945":4070,"11946":4070,"11947":4069,"11948":4070,"11949":4069,"11950":4070,"11951":4069,"11952":4070,"11953":4070,"11954":4069,"11955":4070,"11956":4070,"11957":4070,"11958":4070,"11959":4070,"11960":4069,"11961":4070,"11962":4070,"11963":4070,"11964":4069,"11965":4069,"11966":4070,"11967":4069,"11968":4070,"11969":4070,"11970":4070,"11971":4070,"11972":4070,"11973":4070,"11974":4069,"11975":4070,"11976":4069,"11977":4069,"11978":4070,"11979":4070,"11980":4070,"11981":4069,"11982":4070,"11983":4070,"11984":4070,"11985":4069,"11986":4070,"11987":4069,"11988":4069,"11989":4069,"11990":4070,"11991":4070,"11992":4070,"11993":4070,"11994":4069,"11995":4069,"11996":4069,"11997":4069,"11998":4069,"11999":4069,"12000":4069,"12001":4069,"12002":4070,"12003":4069,"12004":4069,"12005":4069,"12006":4070,"12007":4069,"12008":4070,"12009":4069,"12010":4069,"12011":4070,"12012":4070,"12013":4069,"12014":4069,"12015":4070,"12016":4070,"12017":4070,"12018":4069,"12019":4069,"12020":4069,"12021":4070,"12022":4070,"12023":4069,"12024":4069,"12025":4069,"12026":4070,"12027":4070,"12028":4069,"12029":4070,"12030":4069,"12031":4070,"12032":4069,"12033":4070,"12034":4070,"12035":4070,"12036":4069,"12037":4069,"12038":4070,"12039":4070,"12040":4070,"12041":4070,"12042":4069,"12043":4069,"12044":4070,"12045":4069,"12046":4070,"12047":4069,"12048":4069,"12049":4069,"12050":4069,"12051":4069,"12052":4070,"12053":4069,"12054":4069,"12055":4069,"12056":4069,"12057":4069,"12058":4070,"12059":4069,"12060":4069,"12061":4070,"12062":4070,"12063":4069,"12064":4069,"12065":4070,"12066":4069,"12067":4069,"12068":4069,"12069":4070,"12070":4069,"12071":4069,"12072":4069,"12073":4070,"12074":4069,"12075":4069,"12076":4070,"12077":4069,"12078":4069,"12079":4069,"12080":4070,"12081":4070,"12082":4070,"12083":4069,"12084":4070,"12085":4069,"12086":4069,"12087":4069,"12088":4069,"12089":4069,"12090":4069,"12091":4070,"12092":4069,"12093":4070,"12094":4070,"12095":4069,"12096":4070,"12097":4069,"12098":4069,"12099":4069,"12100":4070,"12101":4070,"12102":4069,"12103":4070,"12104":4070,"12105":4070,"12106":4069,"12107":4069,"12108":4070,"12109":4070,"12110":4069,"12111":4070,"12112":4070,"12113":4070,"12114":4070,"12115":4069,"12116":4070,"12117":4070,"12118":4069,"12119":4070,"12120":4070,"12121":4069,"12122":4070,"12123":4069,"12124":4070,"12125":4069,"12126":4069,"12127":4069,"12128":4069,"12129":4070,"12130":4069,"12131":4070,"12132":4070,"12133":4070,"12134":4070,"12135":4070,"12136":4070,"12137":4070,"12138":4069,"12139":4069,"12140":4069,"12141":4069,"12142":4069,"12143":4069,"12144":4070,"12145":4069,"12146":4069,"12147":4069,"12148":4070,"12149":4070,"12150":4069,"12151":4069,"12152":4069,"12153":4069,"12154":4069,"12155":4070,"12156":4069,"12157":4070,"12158":4070,"12159":4069,"12160":4069,"12161":4070,"12162":4070,"12163":4070,"12164":4070,"12165":4069,"12166":4070,"12167":4070,"12168":4070,"12169":4069,"12170":4069,"12171":4069,"12172":4070,"12173":4069,"12174":4069,"12175":4069,"12176":4070,"12177":4069,"12178":4070,"12179":4070,"12180":4069,"12181":4069,"12182":4070,"12183":4070,"12184":4070,"12185":4069,"12186":4069,"12187":4069,"12188":4069,"12189":4069,"12190":4070,"12191":4070,"12192":4070,"12193":4070,"12194":4070,"12195":4069,"12196":4069,"12197":4070,"12198":4069,"12199":4070,"12200":4070,"12201":4069,"12202":4070,"12203":4070,"12204":4070,"12205":4070,"12206":4070,"12207":4070,"12208":4069,"12209":4070,"12210":4070,"12211":4070,"12212":4069,"12213":4070,"12214":4069,"12215":4069,"12216":4069,"12217":4070,"12218":4069,"12219":4069,"12220":4070,"12221":4070,"12222":4070,"12223":4069,"12224":4069,"12225":4069,"12226":4069,"12227":4070,"12228":4069,"12229":4069,"12230":4069,"12231":4070,"12232":4069,"12233":4069,"12234":4069,"12235":4070,"12236":4070,"12237":4069,"12238":4070,"12239":4069,"12240":4070,"12241":4069,"12242":4070,"12243":4069,"12244":4069,"12245":4070,"12246":4069,"12247":4069,"12248":4069,"12249":4069,"12250":4070,"12251":4069,"12252":4070,"12253":4070,"12254":4069,"12255":4069,"12256":4070,"12257":4069,"12258":4070,"12259":4069,"12260":4070,"12261":4069,"12262":4070,"12263":4069,"12264":4069,"12265":4069,"12266":4069,"12267":4069,"12268":4069,"12269":4070,"12270":4069,"12271":4070,"12272":4069,"12273":4070,"12274":4070,"12275":4070,"12276":4070,"12277":4070,"12278":4069,"12279":4069,"12280":4070,"12281":4069,"12282":4070,"12283":4069,"12284":4069,"12285":4070,"12286":4069,"12287":4069,"12288":4069,"12289":4070,"12290":4069,"12291":4069,"12292":4069,"12293":4070,"12294":4070,"12295":4070,"12296":4070,"12297":4070,"12298":4069,"12299":4070,"12300":4070,"12301":4069,"12302":4069,"12303":4069,"12304":4069,"12305":4069,"12306":4070,"12307":4070,"12308":4070,"12309":4070,"12310":4070,"12311":4069,"12312":4070,"12313":4070,"12314":4070,"12315":4070,"12316":4069,"12317":4070,"12318":4069,"12319":4070,"12320":4069,"12321":4070,"12322":4070,"12323":4070,"12324":4069,"12325":4069,"12326":4069,"12327":4069,"12328":4069,"12329":4070,"12330":4070,"12331":4069,"12332":4069,"12333":4069,"12334":4069,"12335":4070,"12336":4070,"12337":4070,"12338":4069,"12339":4070,"12340":4070,"12341":4069,"12342":4069,"12343":4069,"12344":4069,"12345":4069,"12346":4069,"12347":4069,"12348":4069,"12349":4069,"12350":4070,"12351":4069,"12352":4069,"12353":4070,"12354":4070,"12355":4069,"12356":4070,"12357":4069,"12358":4069,"12359":4069,"12360":4069,"12361":4070,"12362":4070,"12363":4069,"12364":4070,"12365":4070,"12366":4069,"12367":4069,"12368":4069,"12369":4070,"12370":4070,"12371":4070,"12372":4070,"12373":4070,"12374":4070,"12375":4070,"12376":4070,"12377":4069,"12378":4070,"12379":4069,"12380":4069,"12381":4070,"12382":4070,"12383":4069,"12384":4070,"12385":4069,"12386":4069,"12387":4070,"12388":4069,"12389":4070,"12390":4070,"12391":4070,"12392":4070,"12393":4069,"12394":4070,"12395":4070,"12396":4069,"12397":4069,"12398":4070,"12399":4069,"12400":4069,"12401":4069,"12402":4070,"12403":4069,"12404":4070,"12405":4069,"12406":4069,"12407":4069,"12408":4070,"12409":4070,"12410":4069,"12411":4070,"12412":4070,"12413":4069,"12414":4069,"12415":4069,"12416":4070,"12417":4070,"12418":4069,"12419":4070,"12420":4070,"12421":4069,"12422":4070,"12423":4070,"12424":4069,"12425":4070,"12426":4069,"12427":4070,"12428":4069,"12429":4070,"12430":4070,"12431":4069,"12432":4069,"12433":4070,"12434":4070,"12435":4070,"12436":4069,"12437":4070,"12438":4070,"12439":4069,"12440":4069,"12441":4069,"12442":4069,"12443":4069,"12444":4069,"12445":4070,"12446":4070,"12447":4070,"12448":4069,"12449":4069,"12450":4069,"12451":4069,"12452":4069,"12453":4070,"12454":4070,"12455":4069,"12456":4070,"12457":4069,"12458":4069,"12459":4069,"12460":4069,"12461":4069,"12462":4069,"12463":4069,"12464":4069,"12465":4070,"12466":4069,"12467":4069,"12468":4070,"12469":4070,"12470":4069,"12471":4070,"12472":4070,"12473":4070,"12474":4069,"12475":4069,"12476":4070,"12477":4070,"12478":4069,"12479":4070,"12480":4069,"12481":4070,"12482":4070,"12483":4070,"12484":4070,"12485":4070,"12486":4069,"12487":4070,"12488":4070,"12489":4070,"12490":4070,"12491":4069,"12492":4069,"12493":4069,"12494":4070,"12495":4070,"12496":4069,"12497":4069,"12498":4070,"12499":4069,"12500":4069,"12501":4070,"12502":4069,"12503":4070,"12504":4070,"12505":4069,"12506":4070,"12507":4069,"12508":4070,"12509":4069,"12510":4069,"12511":4069,"12512":4069,"12513":4069,"12514":4069,"12515":4069,"12516":4069,"12517":4069,"12518":4070,"12519":4069,"12520":4070,"12521":4069,"12522":4069,"12523":4070,"12524":4070,"12525":4070,"12526":4069,"12527":4070,"12528":4070,"12529":4070,"12530":4070,"12531":4070,"12532":4070,"12533":4070,"12534":4069,"12535":4070,"12536":4069,"12537":4070,"12538":4070,"12539":4069,"12540":4069,"12541":4070,"12542":4069,"12543":4069,"12544":4070,"12545":4070,"12546":4070,"12547":4070,"12548":4070,"12549":4069,"12550":4069,"12551":4069,"12552":4069,"12553":4069,"12554":4069,"12555":4070,"12556":4070,"12557":4069,"12558":4070,"12559":4069,"12560":4070,"12561":4069,"12562":4070,"12563":4070,"12564":4070,"12565":4070,"12566":4070,"12567":4070,"12568":4070,"12569":4069,"12570":4070,"12571":4070,"12572":4069,"12573":4069,"12574":4070,"12575":4070,"12576":4069,"12577":4069,"12578":4069,"12579":4070,"12580":4069,"12581":4070,"12582":4069,"12583":4069,"12584":4069,"12585":4070,"12586":4070,"12587":4070,"12588":4069,"12589":4070,"12590":4070,"12591":4069,"12592":4070,"12593":4069,"12594":4070,"12595":4070,"12596":4070,"12597":4069,"12598":4069,"12599":4069,"12600":4069,"12601":4069,"12602":4070,"12603":4070,"12604":4070,"12605":4070,"12606":4070,"12607":4069,"12608":4070,"12609":4070,"12610":4069,"12611":4069,"12612":4069,"12613":4069,"12614":4070,"12615":4070,"12616":4070,"12617":4070,"12618":4069,"12619":4070,"12620":4069,"12621":4069,"12622":4069,"12623":4070,"12624":4070,"12625":4070,"12626":4070,"12627":4069,"12628":4070,"12629":4069,"12630":4070,"12631":4070,"12632":4070,"12633":4070,"12634":4069,"12635":4069,"12636":4070,"12637":4069,"12638":4069,"12639":4070,"12640":4070,"12641":4069,"12642":4069,"12643":4070,"12644":4070,"12645":4070,"12646":4069,"12647":4069,"12648":4070,"12649":4069,"12650":4069,"12651":4069,"12652":4069,"12653":4069,"12654":4070,"12655":4069,"12656":4070,"12657":4069,"12658":4070,"12659":4069,"12660":4069,"12661":4070,"12662":4069,"12663":4069,"12664":4070,"12665":4070,"12666":4070,"12667":4070,"12668":4070,"12669":4069,"12670":4069,"12671":4069,"12672":4070,"12673":4070,"12674":4070,"12675":4069,"12676":4070,"12677":4069,"12678":4069,"12679":4069,"12680":4070,"12681":4069,"12682":4070,"12683":4070,"12684":4070,"12685":4069,"12686":4070,"12687":4070,"12688":4069,"12689":4069,"12690":4069,"12691":4070,"12692":4070,"12693":4070,"12694":4070,"12695":4070,"12696":4069,"12697":4069,"12698":4070,"12699":4070,"12700":4070,"12701":4069,"12702":4070,"12703":4069,"12704":4070,"12705":4070,"12706":4069,"12707":4070,"12708":4070,"12709":4069,"12710":4070,"12711":4070,"12712":4069,"12713":4070,"12714":4069,"12715":4069,"12716":4070,"12717":4069,"12718":4069,"12719":4069,"12720":4069,"12721":4070,"12722":4069,"12723":4069,"12724":4069,"12725":4070,"12726":4069,"12727":4070,"12728":4069,"12729":4070,"12730":4070,"12731":4069,"12732":4070,"12733":4069,"12734":4070,"12735":4069,"12736":4070,"12737":4070,"12738":4069,"12739":4070,"12740":4070,"12741":4069,"12742":4070,"12743":4069,"12744":4070,"12745":4069,"12746":4069,"12747":4069,"12748":4070,"12749":4070,"12750":4070,"12751":4070,"12752":4070,"12753":4069,"12754":4069,"12755":4070,"12756":4069,"12757":4069,"12758":4070,"12759":4069,"12760":4070,"12761":4070,"12762":4070,"12763":4069,"12764":4070,"12765":4070,"12766":4070,"12767":4070,"12768":4070,"12769":4070,"12770":4069,"12771":4070,"12772":4070,"12773":4070,"12774":4069,"12775":4069,"12776":4070,"12777":4069,"12778":4070,"12779":4070,"12780":4069,"12781":4069,"12782":4070,"12783":4070,"12784":4070,"12785":4070,"12786":4070,"12787":4070,"12788":4070,"12789":4070,"12790":4070,"12791":4070,"12792":4070,"12793":4069,"12794":4069,"12795":4069,"12796":4070,"12797":4069,"12798":4070,"12799":4070,"12800":4069,"12801":4070,"12802":4070,"12803":4070,"12804":4069,"12805":4070,"12806":4069,"12807":4069,"12808":4070,"12809":4070,"12810":4069,"12811":4069,"12812":4069,"12813":4069,"12814":4070,"12815":4070,"12816":4069,"12817":4069,"12818":4070,"12819":4069,"12820":4069,"12821":4070,"12822":4070,"12823":4069,"12824":4070,"12825":4069,"12826":4069,"12827":4069,"12828":4070,"12829":4070,"12830":4069,"12831":4069,"12832":4070,"12833":4070,"12834":4070,"12835":4070,"12836":4069,"12837":4070,"12838":4069,"12839":4069,"12840":4070,"12841":4070,"12842":4070,"12843":4069,"12844":4069,"12845":4070,"12846":4070,"12847":4069,"12848":4070,"12849":4070,"12850":4070,"12851":4069,"12852":4070,"12853":4069,"12854":4070,"12855":4070,"12856":4070,"12857":4070,"12858":4070,"12859":4069,"12860":4070,"12861":4069,"12862":4069,"12863":4070,"12864":4069,"12865":4070,"12866":4070,"12867":4069,"12868":4069,"12869":4069,"12870":4069,"12871":4070,"12872":4070,"12873":4069,"12874":4070,"12875":4069,"12876":4069,"12877":4070,"12878":4070,"12879":4070,"12880":4069,"12881":4069,"12882":4070,"12883":4070,"12884":4070,"12885":4069,"12886":4070,"12887":4069,"12888":4070,"12889":4069,"12890":4070,"12891":4070,"12892":4069,"12893":4070,"12894":4070,"12895":4070,"12896":4070,"12897":4069,"12898":4070,"12899":4070,"12900":4069,"12901":4069,"12902":4070,"12903":4070,"12904":4069,"12905":4070,"12906":4069,"12907":4069,"12908":4070,"12909":4069,"12910":4070,"12911":4069,"12912":4069,"12913":4070,"12914":4069,"12915":4069,"12916":4069,"12917":4069,"12918":4069,"12919":4069,"12920":4069,"12921":4070,"12922":4070,"12923":4070,"12924":4070,"12925":4070,"12926":4070,"12927":4069,"12928":4069,"12929":4070,"12930":4069,"12931":4070,"12932":4070,"12933":4070,"12934":4069,"12935":4070,"12936":4070,"12937":4070,"12938":4069,"12939":4069,"12940":4069,"12941":4069,"12942":4070,"12943":4070,"12944":4069,"12945":4070,"12946":4070,"12947":4070,"12948":4069,"12949":4069,"12950":4069,"12951":4069,"12952":4070,"12953":4069,"12954":4070,"12955":4070,"12956":4069,"12957":4069,"12958":4069,"12959":4069,"12960":4069,"12961":4070,"12962":4069,"12963":4070,"12964":4069,"12965":4070,"12966":4069,"12967":4069,"12968":4070,"12969":4069,"12970":4069,"12971":4070,"12972":4070,"12973":4070,"12974":4069,"12975":4070,"12976":4070,"12977":4070,"12978":4069,"12979":4070,"12980":4069,"12981":4070,"12982":4070,"12983":4069,"12984":4069,"12985":4070,"12986":4070,"12987":4070,"12988":4070,"12989":4070,"12990":4070,"12991":4070,"12992":4069,"12993":4070,"12994":4069,"12995":4070,"12996":4070,"12997":4069,"12998":4070,"12999":4070,"13000":4069,"13001":4069,"13002":4070,"13003":4070,"13004":4070,"13005":4069,"13006":4069,"13007":4069,"13008":4070,"13009":4070,"13010":4070,"13011":4070,"13012":4070,"13013":4069,"13014":4070,"13015":4069,"13016":4069,"13017":4069,"13018":4070,"13019":4069,"13020":4070,"13021":4070,"13022":4070,"13023":4070,"13024":4069,"13025":4070,"13026":4069,"13027":4069,"13028":4070,"13029":4069,"13030":4069,"13031":4070,"13032":4069,"13033":4069,"13034":4070,"13035":4070,"13036":4070,"13037":4069,"13038":4070,"13039":4069,"13040":4069,"13041":4069,"13042":4069,"13043":4069,"13044":4069,"13045":4069,"13046":4070,"13047":4070,"13048":4069,"13049":4070,"13050":4069,"13051":4069,"13052":4069,"13053":4069,"13054":4069,"13055":4070,"13056":4070,"13057":4069,"13058":4069,"13059":4070,"13060":4070,"13061":4070,"13062":4069,"13063":4070,"13064":4069,"13065":4069,"13066":4070,"13067":4070,"13068":4070,"13069":4070,"13070":4069,"13071":4069,"13072":4070,"13073":4069,"13074":4070,"13075":4069,"13076":4069,"13077":4069,"13078":4069,"13079":4069,"13080":4070,"13081":4069,"13082":4069,"13083":4070,"13084":4070,"13085":4069,"13086":4069,"13087":4069,"13088":4070,"13089":4070,"13090":4069,"13091":4070,"13092":4069,"13093":4069,"13094":4070,"13095":4069,"13096":4070,"13097":4069,"13098":4069,"13099":4069,"13100":4069,"13101":4070,"13102":4070,"13103":4069,"13104":4069,"13105":4069,"13106":4070,"13107":4070,"13108":4070,"13109":4070,"13110":4069,"13111":4069,"13112":4070,"13113":4070,"13114":4070,"13115":4069,"13116":4070,"13117":4070,"13118":4070,"13119":4070,"13120":4069,"13121":4070,"13122":4069,"13123":4069,"13124":4069,"13125":4069,"13126":4069,"13127":4070,"13128":4070,"13129":4070,"13130":4069,"13131":4070,"13132":4069,"13133":4070,"13134":4070,"13135":4070,"13136":4070,"13137":4070,"13138":4069,"13139":4070,"13140":4070,"13141":4069,"13142":4069,"13143":4069,"13144":4069,"13145":4069,"13146":4070,"13147":4069,"13148":4069,"13149":4069,"13150":4069,"13151":4070,"13152":4069,"13153":4070,"13154":4070,"13155":4070,"13156":4070,"13157":4070,"13158":4070,"13159":4069,"13160":4070,"13161":4070,"13162":4069,"13163":4069,"13164":4069,"13165":4069,"13166":4070,"13167":4069,"13168":4070,"13169":4070,"13170":4070,"13171":4069,"13172":4069,"13173":4069,"13174":4070,"13175":4070,"13176":4069,"13177":4069,"13178":4070,"13179":4070,"13180":4070,"13181":4070,"13182":4070,"13183":4070,"13184":4070,"13185":4070,"13186":4070,"13187":4070,"13188":4070,"13189":4069,"13190":4070,"13191":4069,"13192":4070,"13193":4070,"13194":4069,"13195":4070,"13196":4070,"13197":4069,"13198":4069,"13199":4069,"13200":4069,"13201":4069,"13202":4069,"13203":4069,"13204":4069,"13205":4069,"13206":4070,"13207":4069,"13208":4070,"13209":4069,"13210":4070,"13211":4069,"13212":4070,"13213":4070,"13214":4070,"13215":4069,"13216":4070,"13217":4069,"13218":4069,"13219":4069,"13220":4069,"13221":4070,"13222":4070,"13223":4070,"13224":4069,"13225":4070,"13226":4069,"13227":4070,"13228":4070,"13229":4070,"13230":4070,"13231":4070,"13232":4070,"13233":4069,"13234":4069,"13235":4070,"13236":4070,"13237":4070,"13238":4069,"13239":4070,"13240":4069,"13241":4070,"13242":4070,"13243":4069,"13244":4070,"13245":4069,"13246":4070,"13247":4069,"13248":4069,"13249":4070,"13250":4070,"13251":4069,"13252":4069,"13253":4069,"13254":4070,"13255":4070,"13256":4070,"13257":4069,"13258":4070,"13259":4069,"13260":4069,"13261":4070,"13262":4069,"13263":4070,"13264":4069,"13265":4070,"13266":4070,"13267":4069,"13268":4070,"13269":4069,"13270":4069,"13271":4070,"13272":4069,"13273":4070,"13274":4070,"13275":4069,"13276":4069,"13277":4070,"13278":4069,"13279":4069,"13280":4069,"13281":4069,"13282":4069,"13283":4070,"13284":4069,"13285":4069,"13286":4070,"13287":4070,"13288":4070,"13289":4069,"13290":4070,"13291":4070,"13292":4070,"13293":4069,"13294":4069,"13295":4069,"13296":4069,"13297":4070,"13298":4070,"13299":4069,"13300":4070,"13301":4070,"13302":4069,"13303":4069,"13304":4069,"13305":4070,"13306":4069,"13307":4070,"13308":4070,"13309":4070,"13310":4069,"13311":4069,"13312":4069,"13313":4070,"13314":4070,"13315":4069,"13316":4070,"13317":4069,"13318":4069,"13319":4069,"13320":4069,"13321":4069,"13322":4070,"13323":4070,"13324":4070,"13325":4070,"13326":4069,"13327":4070,"13328":4069,"13329":4069,"13330":4069,"13331":4069,"13332":4070,"13333":4070,"13334":4069,"13335":4069,"13336":4069,"13337":4069,"13338":4070,"13339":4070,"13340":4069,"13341":4069,"13342":4069,"13343":4070,"13344":4070,"13345":4069,"13346":4069,"13347":4069,"13348":4069,"13349":4069,"13350":4070,"13351":4070,"13352":4069,"13353":4069,"13354":4070,"13355":4070,"13356":4070,"13357":4069,"13358":4070,"13359":4070,"13360":4069,"13361":4069,"13362":4069,"13363":4070,"13364":4070,"13365":4069,"13366":4070,"13367":4069,"13368":4070,"13369":4069,"13370":4070,"13371":4070,"13372":4070,"13373":4069,"13374":4070,"13375":4069,"13376":4070,"13377":4069,"13378":4069,"13379":4069,"13380":4070,"13381":4069,"13382":4070,"13383":4070,"13384":4069,"13385":4069,"13386":4069,"13387":4069,"13388":4069,"13389":4070,"13390":4069,"13391":4070,"13392":4069,"13393":4070,"13394":4070,"13395":4069,"13396":4070,"13397":4069,"13398":4070,"13399":4069,"13400":4070,"13401":4069,"13402":4070,"13403":4070,"13404":4069,"13405":4069,"13406":4070,"13407":4069,"13408":4069,"13409":4069,"13410":4069,"13411":4069,"13412":4070,"13413":4070,"13414":4069,"13415":4069,"13416":4070,"13417":4070,"13418":4069,"13419":4070,"13420":4070,"13421":4069,"13422":4070,"13423":4069,"13424":4069,"13425":4069,"13426":4069,"13427":4070,"13428":4069,"13429":4069,"13430":4070,"13431":4069,"13432":4069,"13433":4070,"13434":4070,"13435":4069,"13436":4069,"13437":4069,"13438":4069,"13439":4069,"13440":4070,"13441":4070,"13442":4069,"13443":4069,"13444":4070,"13445":4069,"13446":4070,"13447":4070,"13448":4069,"13449":4069,"13450":4069,"13451":4069,"13452":4070,"13453":4070,"13454":4069,"13455":4069,"13456":4070,"13457":4070,"13458":4070,"13459":4069,"13460":4070,"13461":4069,"13462":4069,"13463":4070,"13464":4070,"13465":4069,"13466":4070,"13467":4070,"13468":4069,"13469":4070,"13470":4070,"13471":4069,"13472":4070,"13473":4070,"13474":4070,"13475":4070,"13476":4070,"13477":4070,"13478":4070,"13479":4070,"13480":4069,"13481":4069,"13482":4070,"13483":4070,"13484":4069,"13485":4070,"13486":4070,"13487":4069,"13488":4070,"13489":4069,"13490":4069,"13491":4069,"13492":4069,"13493":4069,"13494":4069,"13495":4069,"13496":4070,"13497":4070,"13498":4069,"13499":4069,"13500":4070,"13501":4069,"13502":4070,"13503":4069,"13504":4070,"13505":4069,"13506":4069,"13507":4070,"13508":4070,"13509":4070,"13510":4069,"13511":4069,"13512":4070,"13513":4070,"13514":4069,"13515":4070,"13516":4069,"13517":4069,"13518":4070,"13519":4069,"13520":4070,"13521":4069,"13522":4069,"13523":4070,"13524":4070,"13525":4069,"13526":4070,"13527":4069,"13528":4069,"13529":4069,"13530":4070,"13531":4070,"13532":4069,"13533":4069,"13534":4069,"13535":4069,"13536":4070,"13537":4069,"13538":4070,"13539":4069,"13540":4070,"13541":4069,"13542":4070,"13543":4069,"13544":4069,"13545":4069,"13546":4070,"13547":4070,"13548":4069,"13549":4069,"13550":4069,"13551":4070,"13552":4070,"13553":4069,"13554":4070,"13555":4070,"13556":4069,"13557":4070,"13558":4069,"13559":4070,"13560":4069,"13561":4069,"13562":4069,"13563":4070,"13564":4069,"13565":4070,"13566":4069,"13567":4069,"13568":4070,"13569":4069,"13570":4070,"13571":4070,"13572":4070,"13573":4069,"13574":4070,"13575":4069,"13576":4069,"13577":4070,"13578":4069,"13579":4069,"13580":4069,"13581":4069,"13582":4070,"13583":4070,"13584":4069,"13585":4069,"13586":4070,"13587":4069,"13588":4070,"13589":4070,"13590":4069,"13591":4070,"13592":4070,"13593":4070,"13594":4069,"13595":4069,"13596":4070,"13597":4069,"13598":4069,"13599":4069,"13600":4070,"13601":4069,"13602":4069,"13603":4069,"13604":4069,"13605":4069,"13606":4070,"13607":4069,"13608":4069,"13609":4069,"13610":4070,"13611":4069,"13612":4070,"13613":4070,"13614":4069,"13615":4069,"13616":4070,"13617":4069,"13618":4070,"13619":4069,"13620":4069,"13621":4069,"13622":4070,"13623":4070,"13624":4069,"13625":4069,"13626":4070,"13627":4069,"13628":4069,"13629":4069,"13630":4069,"13631":4069,"13632":4070,"13633":4069,"13634":4070,"13635":4069,"13636":4069,"13637":4070,"13638":4070,"13639":4069,"13640":4070,"13641":4070,"13642":4070,"13643":4069,"13644":4069,"13645":4070,"13646":4070,"13647":4070,"13648":4069,"13649":4070,"13650":4070,"13651":4070,"13652":4070,"13653":4069,"13654":4070,"13655":4070,"13656":4070,"13657":4069,"13658":4069,"13659":4069,"13660":4070,"13661":4070,"13662":4069,"13663":4070,"13664":4070,"13665":4069,"13666":4070,"13667":4070,"13668":4069,"13669":4070,"13670":4069,"13671":4069,"13672":4069,"13673":4070,"13674":4070,"13675":4070,"13676":4070,"13677":4069,"13678":4069,"13679":4069,"13680":4070,"13681":4069,"13682":4069,"13683":4069,"13684":4069,"13685":4069,"13686":4069,"13687":4070,"13688":4069,"13689":4069,"13690":4070,"13691":4069,"13692":4070,"13693":4070,"13694":4069,"13695":4070,"13696":4069,"13697":4069,"13698":4070,"13699":4070,"13700":4070,"13701":4069,"13702":4070,"13703":4070,"13704":4069,"13705":4069,"13706":4069,"13707":4070,"13708":4070,"13709":4069,"13710":4069,"13711":4069,"13712":4069,"13713":4070,"13714":4070,"13715":4070,"13716":4070,"13717":4070,"13718":4069,"13719":4070,"13720":4070,"13721":4069,"13722":4069,"13723":4069,"13724":4069,"13725":4069,"13726":4069,"13727":4069,"13728":4069,"13729":4070,"13730":4069,"13731":4069,"13732":4070,"13733":4070,"13734":4070,"13735":4070,"13736":4070,"13737":4070,"13738":4069,"13739":4070,"13740":4069,"13741":4070,"13742":4070,"13743":4070,"13744":4069,"13745":4069,"13746":4069,"13747":4070,"13748":4069,"13749":4070,"13750":4070,"13751":4070,"13752":4070,"13753":4070,"13754":4070,"13755":4069,"13756":4069,"13757":4069,"13758":4069,"13759":4069,"13760":4070,"13761":4069,"13762":4069,"13763":4070,"13764":4069,"13765":4069,"13766":4070,"13767":4070,"13768":4069,"13769":4070,"13770":4069,"13771":4069,"13772":4070,"13773":4070,"13774":4069,"13775":4069,"13776":4070,"13777":4069,"13778":4069,"13779":4070,"13780":4069,"13781":4069,"13782":4070,"13783":4069,"13784":4070,"13785":4069,"13786":4070,"13787":4070,"13788":4070,"13789":4069,"13790":4070,"13791":4069,"13792":4070,"13793":4069,"13794":4069,"13795":4070,"13796":4070,"13797":4070,"13798":4069,"13799":4069,"13800":4070,"13801":4070,"13802":4070,"13803":4069,"13804":4070,"13805":4069,"13806":4070,"13807":4069,"13808":4070,"13809":4069,"13810":4070,"13811":4069,"13812":4070,"13813":4069,"13814":4069,"13815":4069,"13816":4069,"13817":4069,"13818":4069,"13819":4069,"13820":4069,"13821":4070,"13822":4070,"13823":4069,"13824":4070,"13825":4070,"13826":4070,"13827":4070,"13828":4069,"13829":4069,"13830":4070,"13831":4069,"13832":4069,"13833":4070,"13834":4070,"13835":4069,"13836":4069,"13837":4070,"13838":4070,"13839":4069,"13840":4069,"13841":4070,"13842":4070,"13843":4070,"13844":4069,"13845":4070,"13846":4070,"13847":4070,"13848":4070,"13849":4070,"13850":4070,"13851":4070,"13852":4070,"13853":4070,"13854":4069,"13855":4069,"13856":4070,"13857":4069,"13858":4070,"13859":4069,"13860":4070,"13861":4069,"13862":4069,"13863":4070,"13864":4070,"13865":4069,"13866":4069,"13867":4069,"13868":4069,"13869":4070,"13870":4070,"13871":4070,"13872":4070,"13873":4069,"13874":4069,"13875":4069,"13876":4069,"13877":4069,"13878":4069,"13879":4070,"13880":4070,"13881":4069,"13882":4070,"13883":4070,"13884":4069,"13885":4070,"13886":4070,"13887":4069,"13888":4070,"13889":4069,"13890":4070,"13891":4070,"13892":4070,"13893":4069,"13894":4069,"13895":4069,"13896":4070,"13897":4070,"13898":4070,"13899":4069,"13900":4070,"13901":4069,"13902":4070,"13903":4069,"13904":4070,"13905":4070,"13906":4069,"13907":4070,"13908":4070,"13909":4070,"13910":4069,"13911":4070,"13912":4070,"13913":4069,"13914":4070,"13915":4070,"13916":4070,"13917":4069,"13918":4069,"13919":4070,"13920":4069,"13921":4070,"13922":4069,"13923":4069,"13924":4070,"13925":4070,"13926":4070,"13927":4070,"13928":4070,"13929":4069,"13930":4070,"13931":4069,"13932":4070,"13933":4069,"13934":4070,"13935":4069,"13936":4069,"13937":4069,"13938":4070,"13939":4070,"13940":4070,"13941":4069,"13942":4070,"13943":4069,"13944":4070,"13945":4069,"13946":4070,"13947":4069,"13948":4069,"13949":4069,"13950":4070,"13951":4069,"13952":4069,"13953":4070,"13954":4069,"13955":4069,"13956":4069,"13957":4069,"13958":4069,"13959":4070,"13960":4070,"13961":4070,"13962":4070,"13963":4070,"13964":4069,"13965":4070,"13966":4070,"13967":4069,"13968":4070,"13969":4070,"13970":4069,"13971":4070,"13972":4069,"13973":4069,"13974":4069,"13975":4069,"13976":4070,"13977":4069,"13978":4069,"13979":4069,"13980":4070,"13981":4069,"13982":4069,"13983":4070,"13984":4069,"13985":4070,"13986":4070,"13987":4069,"13988":4070,"13989":4070,"13990":4069,"13991":4070,"13992":4069,"13993":4069,"13994":4069,"13995":4070,"13996":4069,"13997":4070,"13998":4069,"13999":4070,"14000":4070,"14001":4069,"14002":4069,"14003":4070,"14004":4070,"14005":4070,"14006":4069,"14007":4069,"14008":4069,"14009":4070,"14010":4070,"14011":4070,"14012":4070,"14013":4070,"14014":4069,"14015":4069,"14016":4069,"14017":4069,"14018":4070,"14019":4070,"14020":4069,"14021":4070,"14022":4070,"14023":4070,"14024":4069,"14025":4069,"14026":4070,"14027":4070,"14028":4069,"14029":4069,"14030":4069,"14031":4070,"14032":4070,"14033":4070,"14034":4070,"14035":4070,"14036":4069,"14037":4070,"14038":4069,"14039":4070,"14040":4070,"14041":4069,"14042":4069,"14043":4070,"14044":4070,"14045":4070,"14046":4069,"14047":4070,"14048":4069,"14049":4069,"14050":4070,"14051":4069,"14052":4069,"14053":4069,"14054":4070,"14055":4070,"14056":4069,"14057":4070,"14058":4070,"14059":4069,"14060":4069,"14061":4070,"14062":4069,"14063":4070,"14064":4070,"14065":4069,"14066":4070,"14067":4070,"14068":4069,"14069":4070,"14070":4070,"14071":4070,"14072":4069,"14073":4070,"14074":4069,"14075":4070,"14076":4070,"14077":4069,"14078":4070,"14079":4070,"14080":4069,"14081":4069,"14082":4069,"14083":4070,"14084":4069,"14085":4070,"14086":4069,"14087":4069,"14088":4070,"14089":4069,"14090":4070,"14091":4069,"14092":4070,"14093":4069,"14094":4070,"14095":4069,"14096":4070,"14097":4069,"14098":4070,"14099":4070,"14100":4070,"14101":4069,"14102":4070,"14103":4070,"14104":4070,"14105":4069,"14106":4069,"14107":4070,"14108":4070,"14109":4069,"14110":4069,"14111":4070,"14112":4070,"14113":4070,"14114":4070,"14115":4069,"14116":4070,"14117":4070,"14118":4069,"14119":4070,"14120":4069,"14121":4069,"14122":4069,"14123":4069,"14124":4069,"14125":4070,"14126":4070,"14127":4070,"14128":4069,"14129":4069,"14130":4070,"14131":4069,"14132":4070,"14133":4070,"14134":4070,"14135":4070,"14136":4070,"14137":4070,"14138":4070,"14139":4069,"14140":4070,"14141":4069,"14142":4070,"14143":4070,"14144":4069,"14145":4070,"14146":4070,"14147":4069,"14148":4069,"14149":4070,"14150":4070,"14151":4070,"14152":4070,"14153":4069,"14154":4070,"14155":4069,"14156":4069,"14157":4069,"14158":4069,"14159":4070,"14160":4070,"14161":4069,"14162":4069,"14163":4070,"14164":4069,"14165":4069,"14166":4069,"14167":4070,"14168":4070,"14169":4069,"14170":4069,"14171":4069,"14172":4070,"14173":4069,"14174":4070,"14175":4070,"14176":4070,"14177":4069,"14178":4070,"14179":4069,"14180":4070,"14181":4069,"14182":4069,"14183":4069,"14184":4069,"14185":4069,"14186":4070,"14187":4069,"14188":4070,"14189":4070,"14190":4070,"14191":4070,"14192":4069,"14193":4069,"14194":4070,"14195":4070,"14196":4070,"14197":4069,"14198":4069,"14199":4070,"14200":4069,"14201":4070,"14202":4070,"14203":4070,"14204":4070,"14205":4070,"14206":4070,"14207":4070,"14208":4069,"14209":4070,"14210":4069,"14211":4069,"14212":4070,"14213":4070,"14214":4069,"14215":4069,"14216":4070,"14217":4069,"14218":4069,"14219":4070,"14220":4070,"14221":4069,"14222":4070,"14223":4069,"14224":4070,"14225":4070,"14226":4069,"14227":4070,"14228":4069,"14229":4070,"14230":4070,"14231":4069,"14232":4069,"14233":4070,"14234":4070,"14235":4070,"14236":4070,"14237":4070,"14238":4069,"14239":4069,"14240":4070,"14241":4070,"14242":4069,"14243":4070,"14244":4069,"14245":4069,"14246":4070,"14247":4069,"14248":4070,"14249":4070,"14250":4070,"14251":4069,"14252":4070,"14253":4069,"14254":4069,"14255":4069,"14256":4069,"14257":4069,"14258":4069,"14259":4070,"14260":4069,"14261":4069,"14262":4070,"14263":4070,"14264":4070,"14265":4070,"14266":4069,"14267":4069,"14268":4070,"14269":4069,"14270":4070,"14271":4070,"14272":4070,"14273":4069,"14274":4069,"14275":4069,"14276":4069,"14277":4070,"14278":4070,"14279":4069,"14280":4069,"14281":4070,"14282":4069,"14283":4070,"14284":4069,"14285":4070,"14286":4070,"14287":4069,"14288":4070,"14289":4070,"14290":4070,"14291":4069,"14292":4070,"14293":4069,"14294":4070,"14295":4069,"14296":4070,"14297":4069,"14298":4069,"14299":4069,"14300":4069,"14301":4069,"14302":4070,"14303":4069,"14304":4070,"14305":4069,"14306":4070,"14307":4070,"14308":4069,"14309":4070,"14310":4070,"14311":4070,"14312":4069,"14313":4069,"14314":4070,"14315":4070,"14316":4070,"14317":4070,"14318":4069,"14319":4070,"14320":4070,"14321":4069,"14322":4069,"14323":4070,"14324":4069,"14325":4069,"14326":4069,"14327":4070,"14328":4070,"14329":4069,"14330":4069,"14331":4070,"14332":4070,"14333":4069,"14334":4070,"14335":4070,"14336":4070,"14337":4069,"14338":4069,"14339":4070,"14340":4069,"14341":4069,"14342":4069,"14343":4070,"14344":4069,"14345":4070,"14346":4070,"14347":4070,"14348":4069,"14349":4070,"14350":4070,"14351":4070,"14352":4069,"14353":4070,"14354":4069,"14355":4070,"14356":4069,"14357":4070,"14358":4070,"14359":4070,"14360":4069,"14361":4070,"14362":4070,"14363":4070,"14364":4069,"14365":4070,"14366":4070,"14367":4070,"14368":4070,"14369":4069,"14370":4070,"14371":4070,"14372":4070,"14373":4069,"14374":4069,"14375":4070,"14376":4069,"14377":4070,"14378":4070,"14379":4070,"14380":4069,"14381":4069,"14382":4069,"14383":4070,"14384":4069,"14385":4070,"14386":4070,"14387":4070,"14388":4069,"14389":4069,"14390":4070,"14391":4069,"14392":4070,"14393":4069,"14394":4070,"14395":4070,"14396":4069,"14397":4069,"14398":4069,"14399":4070,"14400":4069,"14401":4070,"14402":4070,"14403":4070,"14404":4069,"14405":4069,"14406":4069,"14407":4070,"14408":4070,"14409":4069,"14410":4070,"14411":4069,"14412":4070,"14413":4069,"14414":4070,"14415":4069,"14416":4069,"14417":4070,"14418":4069,"14419":4069,"14420":4070,"14421":4069,"14422":4070,"14423":4070,"14424":4070,"14425":4070,"14426":4070,"14427":4070,"14428":4070,"14429":4069,"14430":4069,"14431":4069,"14432":4069,"14433":4070,"14434":4070,"14435":4069,"14436":4070,"14437":4070,"14438":4070,"14439":4069,"14440":4069,"14441":4070,"14442":4069,"14443":4070,"14444":4070,"14445":4069,"14446":4069,"14447":4070,"14448":4070,"14449":4069,"14450":4070,"14451":4070,"14452":4069,"14453":4069,"14454":4070,"14455":4069,"14456":4069,"14457":4070,"14458":4069,"14459":4070,"14460":4070,"14461":4070,"14462":4069,"14463":4069,"14464":4069,"14465":4070,"14466":4069,"14467":4070,"14468":4070,"14469":4069,"14470":4069,"14471":4070,"14472":4069,"14473":4070,"14474":4070,"14475":4070,"14476":4070,"14477":4069,"14478":4070,"14479":4069,"14480":4070,"14481":4070,"14482":4070,"14483":4070,"14484":4070,"14485":4069,"14486":4070,"14487":4069,"14488":4069,"14489":4070,"14490":4070,"14491":4070,"14492":4069,"14493":4069,"14494":4070,"14495":4070,"14496":4069,"14497":4070,"14498":4070,"14499":4069,"14500":4070,"14501":4070,"14502":4070,"14503":4069,"14504":4069,"14505":4070,"14506":4069,"14507":4070,"14508":4069,"14509":4069,"14510":4069,"14511":4070,"14512":4070,"14513":4069,"14514":4070,"14515":4070,"14516":4069,"14517":4069,"14518":4070,"14519":4070,"14520":4070,"14521":4069,"14522":4069,"14523":4069,"14524":4069,"14525":4069,"14526":4069,"14527":4069,"14528":4070,"14529":4069,"14530":4070,"14531":4069,"14532":4069,"14533":4069,"14534":4070,"14535":4069,"14536":4070,"14537":4069,"14538":4069,"14539":4069,"14540":4069,"14541":4070,"14542":4069,"14543":4069,"14544":4069,"14545":4069,"14546":4070,"14547":4070,"14548":4070,"14549":4069,"14550":4069,"14551":4070,"14552":4069,"14553":4070,"14554":4069,"14555":4070,"14556":4069,"14557":4070,"14558":4069,"14559":4069,"14560":4069,"14561":4070,"14562":4069,"14563":4070,"14564":4069,"14565":4069,"14566":4069,"14567":4070,"14568":4069,"14569":4069,"14570":4069,"14571":4069,"14572":4069,"14573":4070,"14574":4069,"14575":4070,"14576":4069,"14577":4070,"14578":4070,"14579":4070,"14580":4069,"14581":4069,"14582":4069,"14583":4069,"14584":4069,"14585":4069,"14586":4069,"14587":4069,"14588":4070,"14589":4070,"14590":4070,"14591":4070,"14592":4070,"14593":4070,"14594":4070,"14595":4069,"14596":4070,"14597":4069,"14598":4070,"14599":4070,"14600":4070,"14601":4069,"14602":4069,"14603":4070,"14604":4070,"14605":4069,"14606":4069,"14607":4069,"14608":4069,"14609":4069,"14610":4069,"14611":4069,"14612":4069,"14613":4069,"14614":4069,"14615":4070,"14616":4070,"14617":4069,"14618":4070,"14619":4070,"14620":4069,"14621":4069,"14622":4069,"14623":4069,"14624":4069,"14625":4070,"14626":4069,"14627":4069,"14628":4070,"14629":4069,"14630":4070,"14631":4069,"14632":4069,"14633":4070,"14634":4069,"14635":4070,"14636":4069,"14637":4069,"14638":4069,"14639":4069,"14640":4070,"14641":4070,"14642":4070,"14643":4069,"14644":4070,"14645":4070,"14646":4070,"14647":4069,"14648":4070,"14649":4070,"14650":4070,"14651":4069,"14652":4069,"14653":4069,"14654":4070,"14655":4069,"14656":4070,"14657":4069,"14658":4070,"14659":4070,"14660":4070,"14661":4069,"14662":4069,"14663":4069,"14664":4069,"14665":4070,"14666":4069,"14667":4070,"14668":4070,"14669":4069,"14670":4069,"14671":4070,"14672":4069,"14673":4069,"14674":4070,"14675":4069,"14676":4070,"14677":4070,"14678":4070,"14679":4069,"14680":4070,"14681":4069,"14682":4070,"14683":4070,"14684":4070,"14685":4070,"14686":4069,"14687":4069,"14688":4070,"14689":4070,"14690":4070,"14691":4070,"14692":4070,"14693":4070,"14694":4069,"14695":4070,"14696":4070,"14697":4070,"14698":4070,"14699":4069,"14700":4070,"14701":4069,"14702":4069,"14703":4069,"14704":4070,"14705":4069,"14706":4069,"14707":4069,"14708":4069,"14709":4070,"14710":4069,"14711":4069,"14712":4069,"14713":4070,"14714":4069,"14715":4070,"14716":4070,"14717":4069,"14718":4070,"14719":4070,"14720":4069,"14721":4070,"14722":4070,"14723":4069,"14724":4069,"14725":4069,"14726":4070,"14727":4069,"14728":4070,"14729":4070,"14730":4069,"14731":4070,"14732":4069,"14733":4069,"14734":4070,"14735":4069,"14736":4069,"14737":4070,"14738":4069,"14739":4070,"14740":4070,"14741":4070,"14742":4069,"14743":4069,"14744":4070,"14745":4070,"14746":4069,"14747":4069,"14748":4070,"14749":4070,"14750":4070,"14751":4070,"14752":4070,"14753":4069,"14754":4070,"14755":4070,"14756":4069,"14757":4070,"14758":4069,"14759":4069,"14760":4070,"14761":4069,"14762":4069,"14763":4069,"14764":4069,"14765":4070,"14766":4070,"14767":4070,"14768":4069,"14769":4070,"14770":4069,"14771":4070,"14772":4069,"14773":4070,"14774":4070,"14775":4070,"14776":4070,"14777":4070,"14778":4069,"14779":4069,"14780":4069,"14781":4070,"14782":4070,"14783":4069,"14784":4070,"14785":4070,"14786":4070,"14787":4069,"14788":4070,"14789":4069,"14790":4069,"14791":4069,"14792":4070,"14793":4069,"14794":4070,"14795":4069,"14796":4070,"14797":4069,"14798":4070,"14799":4070,"14800":4069,"14801":4070,"14802":4069,"14803":4070,"14804":4069,"14805":4070,"14806":4069,"14807":4069,"14808":4069,"14809":4070,"14810":4070,"14811":4069,"14812":4070,"14813":4070,"14814":4070,"14815":4070,"14816":4070,"14817":4069,"14818":4069,"14819":4070,"14820":4069,"14821":4070,"14822":4070,"14823":4070,"14824":4070,"14825":4070,"14826":4070,"14827":4070,"14828":4069,"14829":4069,"14830":4070,"14831":4069,"14832":4070,"14833":4070,"14834":4069,"14835":4070,"14836":4069,"14837":4069,"14838":4069,"14839":4069,"14840":4070,"14841":4070,"14842":4070,"14843":4070,"14844":4069,"14845":4070,"14846":4069,"14847":4070,"14848":4069,"14849":4070,"14850":4070,"14851":4069,"14852":4069,"14853":4070,"14854":4070,"14855":4069,"14856":4070,"14857":4069,"14858":4069,"14859":4069,"14860":4070,"14861":4069,"14862":4069,"14863":4070,"14864":4069,"14865":4070,"14866":4070,"14867":4070,"14868":4070,"14869":4069,"14870":4070,"14871":4070,"14872":4070,"14873":4069,"14874":4069,"14875":4069,"14876":4069,"14877":4070,"14878":4069,"14879":4069,"14880":4069,"14881":4069,"14882":4070,"14883":4070,"14884":4070,"14885":4070,"14886":4069,"14887":4070,"14888":4070,"14889":4070,"14890":4069,"14891":4069,"14892":4069,"14893":4069,"14894":4070,"14895":4069,"14896":4069,"14897":4070,"14898":4069,"14899":4069,"14900":4069,"14901":4070,"14902":4069,"14903":4070,"14904":4070,"14905":4070,"14906":4070,"14907":4070,"14908":4069,"14909":4069,"14910":4070,"14911":4070,"14912":4070,"14913":4070,"14914":4069,"14915":4069,"14916":4069,"14917":4070,"14918":4069,"14919":4069,"14920":4069,"14921":4070,"14922":4070,"14923":4069,"14924":4069,"14925":4069,"14926":4070,"14927":4069,"14928":4070,"14929":4070,"14930":4069,"14931":4069,"14932":4069,"14933":4069,"14934":4069,"14935":4070,"14936":4070,"14937":4069,"14938":4069,"14939":4070,"14940":4070,"14941":4069,"14942":4069,"14943":4069,"14944":4070,"14945":4069,"14946":4069,"14947":4070,"14948":4070,"14949":4069,"14950":4070,"14951":4069,"14952":4069,"14953":4069,"14954":4070,"14955":4070,"14956":4070,"14957":4069,"14958":4069,"14959":4069,"14960":4070,"14961":4070,"14962":4069,"14963":4069,"14964":4070,"14965":4069,"14966":4069,"14967":4069,"14968":4070,"14969":4069,"14970":4070,"14971":4069,"14972":4070,"14973":4069,"14974":4070,"14975":4069,"14976":4069,"14977":4070,"14978":4070,"14979":4070,"14980":4070,"14981":4070,"14982":4069,"14983":4069,"14984":4070,"14985":4069,"14986":4070,"14987":4070,"14988":4070,"14989":4069,"14990":4070,"14991":4069,"14992":4069,"14993":4069,"14994":4069,"14995":4070,"14996":4070,"14997":4070,"14998":4070,"14999":4070,"15000":4069,"15001":4070,"15002":4069,"15003":4069,"15004":4069,"15005":4070,"15006":4070,"15007":4069,"15008":4070,"15009":4069,"15010":4070,"15011":4069,"15012":4070,"15013":4070,"15014":4069,"15015":4070,"15016":4070,"15017":4069,"15018":4070,"15019":4069,"15020":4070,"15021":4069,"15022":4069,"15023":4069,"15024":4070,"15025":4069,"15026":4069,"15027":4070,"15028":4069,"15029":4069,"15030":4069,"15031":4070,"15032":4069,"15033":4070,"15034":4070,"15035":4069,"15036":4070,"15037":4069,"15038":4069,"15039":4070,"15040":4070,"15041":4069,"15042":4069,"15043":4069,"15044":4070,"15045":4070,"15046":4069,"15047":4070,"15048":4070,"15049":4070,"15050":4070,"15051":4069,"15052":4069,"15053":4069,"15054":4070,"15055":4070,"15056":4070,"15057":4070,"15058":4070,"15059":4069,"15060":4070,"15061":4069,"15062":4069,"15063":4070,"15064":4069,"15065":4069,"15066":4070,"15067":4070,"15068":4069,"15069":4070,"15070":4070,"15071":4069,"15072":4069,"15073":4069,"15074":4070,"15075":4070,"15076":4069,"15077":4069,"15078":4069,"15079":4070,"15080":4070,"15081":4070,"15082":4069,"15083":4069,"15084":4070,"15085":4069,"15086":4069,"15087":4069,"15088":4069,"15089":4070,"15090":4070,"15091":4069,"15092":4070,"15093":4069,"15094":4070,"15095":4069,"15096":4070,"15097":4069,"15098":4069,"15099":4070,"15100":4069,"15101":4070,"15102":4069,"15103":4069,"15104":4069,"15105":4070,"15106":4069,"15107":4069,"15108":4070,"15109":4069,"15110":4069,"15111":4069,"15112":4070,"15113":4070,"15114":4070,"15115":4070,"15116":4070,"15117":4069,"15118":4070,"15119":4070,"15120":4069,"15121":4069,"15122":4069,"15123":4070,"15124":4070,"15125":4070,"15126":4070,"15127":4070,"15128":4069,"15129":4069,"15130":4070,"15131":4069,"15132":4070,"15133":4069,"15134":4070,"15135":4070,"15136":4069,"15137":4070,"15138":4070,"15139":4070,"15140":4070,"15141":4070,"15142":4069,"15143":4069,"15144":4069,"15145":4070,"15146":4070,"15147":4070,"15148":4070,"15149":4070,"15150":4069}} \ No newline at end of file diff --git a/household_tv50_2.json b/household_tv50_2.json new file mode 100644 index 0000000000000000000000000000000000000000..5048db2b6dcf4c1f9689365ad9377d02f2a109c7 --- /dev/null +++ b/household_tv50_2.json @@ -0,0 +1 @@ +{"hhid":{"0":1,"1":2,"2":3,"3":4,"4":5,"5":6,"6":7,"7":8,"8":9,"9":10,"10":11,"11":12,"12":13,"13":14,"14":15,"15":16,"16":17,"17":18,"18":19,"19":20,"20":21,"21":22,"22":23,"23":24,"24":25,"25":26,"26":27,"27":28,"28":29,"29":30,"30":31,"31":32,"32":33,"33":34,"34":35,"35":36,"36":37,"37":38,"38":39,"39":40,"40":41,"41":42,"42":43,"43":44,"44":45,"45":46,"46":47,"47":48,"48":49,"49":50,"50":51,"51":52,"52":53,"53":54,"54":55,"55":56,"56":57,"57":58,"58":59,"59":60,"60":61,"61":62,"62":63,"63":64,"64":65,"65":66,"66":67,"67":68,"68":69,"69":70,"70":71,"71":72,"72":73,"73":74,"74":75,"75":76,"76":77,"77":78,"78":79,"79":80,"80":81,"81":82,"82":83,"83":84,"84":85,"85":86,"86":87,"87":88,"88":89,"89":90,"90":91,"91":92,"92":93,"93":94,"94":95,"95":96,"96":97,"97":98,"98":99,"99":100,"100":101,"101":102,"102":103,"103":104,"104":105,"105":106,"106":107,"107":108,"108":109,"109":110,"110":111,"111":112,"112":113,"113":114,"114":115,"115":116,"116":117,"117":118,"118":119,"119":120,"120":121,"121":122,"122":123,"123":124,"124":125,"125":126,"126":127,"127":128,"128":129,"129":130,"130":131,"131":132,"132":133,"133":134,"134":135,"135":136,"136":137,"137":138,"138":139,"139":140,"140":141,"141":142,"142":143,"143":144,"144":145,"145":146,"146":147,"147":148,"148":149,"149":150,"150":151,"151":152,"152":153,"153":154,"154":155,"155":156,"156":157,"157":158,"158":159,"159":160,"160":161,"161":162,"162":163,"163":164,"164":165,"165":166,"166":167,"167":168,"168":169,"169":170,"170":171,"171":172,"172":173,"173":174,"174":175,"175":176,"176":177,"177":178,"178":179,"179":180,"180":181,"181":182,"182":183,"183":184,"184":185,"185":186,"186":187,"187":188,"188":189,"189":190,"190":191,"191":192,"192":193,"193":194,"194":195,"195":196,"196":197,"197":198,"198":199,"199":200,"200":201,"201":202,"202":203,"203":204,"204":205,"205":206,"206":207,"207":208,"208":209,"209":210,"210":211,"211":212,"212":213,"213":214,"214":215,"215":216,"216":217,"217":218,"218":219,"219":220,"220":221,"221":222,"222":223,"223":224,"224":225,"225":226,"226":227,"227":228,"228":229,"229":230,"230":231,"231":232,"232":233,"233":234,"234":235,"235":236,"236":237,"237":238,"238":239,"239":240,"240":241,"241":242,"242":243,"243":244,"244":245,"245":246,"246":247,"247":248,"248":249,"249":250,"250":251,"251":252,"252":253,"253":254,"254":255,"255":256,"256":257,"257":258,"258":259,"259":260,"260":261,"261":262,"262":263,"263":264,"264":265,"265":266,"266":267,"267":268,"268":269,"269":270,"270":271,"271":272,"272":273,"273":274,"274":275,"275":276,"276":277,"277":278,"278":279,"279":280,"280":281,"281":282,"282":283,"283":284,"284":285,"285":286,"286":287,"287":288,"288":289,"289":290,"290":291,"291":292,"292":293,"293":294,"294":295,"295":296,"296":297,"297":298,"298":299,"299":300,"300":301,"301":302,"302":303,"303":304,"304":305,"305":306,"306":307,"307":308,"308":309,"309":310,"310":311,"311":312,"312":313,"313":314,"314":315,"315":316,"316":317,"317":318,"318":319,"319":320,"320":321,"321":322,"322":323,"323":324,"324":325,"325":326,"326":327,"327":328,"328":329,"329":330,"330":331,"331":332,"332":333,"333":334,"334":335,"335":336,"336":337,"337":338,"338":339,"339":340,"340":341,"341":342,"342":343,"343":344,"344":345,"345":346,"346":347,"347":348,"348":349,"349":350,"350":351,"351":352,"352":353,"353":354,"354":355,"355":356,"356":357,"357":358,"358":359,"359":360,"360":361,"361":362,"362":363,"363":364,"364":365,"365":366,"366":367,"367":368,"368":369,"369":370,"370":371,"371":372,"372":373,"373":374,"374":375,"375":376,"376":377,"377":378,"378":379,"379":380,"380":381,"381":382,"382":383,"383":384,"384":385,"385":386,"386":387,"387":388,"388":389,"389":390,"390":391,"391":392,"392":393,"393":394,"394":395,"395":396,"396":397,"397":398,"398":399,"399":400,"400":401,"401":402,"402":403,"403":404,"404":405,"405":406,"406":407,"407":408,"408":409,"409":410,"410":411,"411":412,"412":413,"413":414,"414":415,"415":416,"416":417,"417":418,"418":419,"419":420,"420":421,"421":422,"422":423,"423":424,"424":425,"425":426,"426":427,"427":428,"428":429,"429":430,"430":431,"431":432,"432":433,"433":434,"434":435,"435":436,"436":437,"437":438,"438":439,"439":440,"440":441,"441":442,"442":443,"443":444,"444":445,"445":446,"446":447,"447":448,"448":449,"449":450,"450":451,"451":452,"452":453,"453":454,"454":455,"455":456,"456":457,"457":458,"458":459,"459":460,"460":461,"461":462,"462":463,"463":464,"464":465,"465":466,"466":467,"467":468,"468":469,"469":470,"470":471,"471":472,"472":473,"473":474,"474":475,"475":476,"476":477,"477":478,"478":479,"479":480,"480":481,"481":482,"482":483,"483":484,"484":485,"485":486,"486":487,"487":488,"488":489,"489":490,"490":491,"491":492,"492":493,"493":494,"494":495,"495":496,"496":497,"497":498,"498":499,"499":500,"500":501,"501":502,"502":503,"503":504,"504":505,"505":506,"506":507,"507":508,"508":509,"509":510,"510":511,"511":512,"512":513,"513":514,"514":515,"515":516,"516":517,"517":518,"518":519,"519":520,"520":521,"521":522,"522":523,"523":524,"524":525,"525":526,"526":527,"527":528,"528":529,"529":530,"530":531,"531":532,"532":533,"533":534,"534":535,"535":536,"536":537,"537":538,"538":539,"539":540,"540":541,"541":542,"542":543,"543":544,"544":545,"545":546,"546":547,"547":548,"548":549,"549":550,"550":551,"551":552,"552":553,"553":554,"554":555,"555":556,"556":557,"557":558,"558":559,"559":560,"560":561,"561":562,"562":563,"563":564,"564":565,"565":566,"566":567,"567":568,"568":569,"569":570,"570":571,"571":572,"572":573,"573":574,"574":575,"575":576,"576":577,"577":578,"578":579,"579":580,"580":581,"581":582,"582":583,"583":584,"584":585,"585":586,"586":587,"587":588,"588":589,"589":590,"590":591,"591":592,"592":593,"593":594,"594":595,"595":596,"596":597,"597":598,"598":599,"599":600,"600":601,"601":602,"602":603,"603":604,"604":605,"605":606,"606":607,"607":608,"608":609,"609":610,"610":611,"611":612,"612":613,"613":614,"614":615,"615":616,"616":617,"617":618,"618":619,"619":620,"620":621,"621":622,"622":623,"623":624,"624":625,"625":626,"626":627,"627":628,"628":629,"629":630,"630":631,"631":632,"632":633,"633":634,"634":635,"635":636,"636":637,"637":638,"638":639,"639":640,"640":641,"641":642,"642":643,"643":644,"644":645,"645":646,"646":647,"647":648,"648":649,"649":650,"650":651,"651":652,"652":653,"653":654,"654":655,"655":656,"656":657,"657":658,"658":659,"659":660,"660":661,"661":662,"662":663,"663":664,"664":665,"665":666,"666":667,"667":668,"668":669,"669":670,"670":671,"671":672,"672":673,"673":674,"674":675,"675":676,"676":677,"677":678,"678":679,"679":680,"680":681,"681":682,"682":683,"683":684,"684":685,"685":686,"686":687,"687":688,"688":689,"689":690,"690":691,"691":692,"692":693,"693":694,"694":695,"695":696,"696":697,"697":698,"698":699,"699":700,"700":701,"701":702,"702":703,"703":704,"704":705,"705":706,"706":707,"707":708,"708":709,"709":710,"710":711,"711":712,"712":713,"713":714,"714":715,"715":716,"716":717,"717":718,"718":719,"719":720,"720":721,"721":722,"722":723,"723":724,"724":725,"725":726,"726":727,"727":728,"728":729,"729":730,"730":731,"731":732,"732":733,"733":734,"734":735,"735":736,"736":737,"737":738,"738":739,"739":740,"740":741,"741":742,"742":743,"743":744,"744":745,"745":746,"746":747,"747":748,"748":749,"749":750,"750":751,"751":752,"752":753,"753":754,"754":755,"755":756,"756":757,"757":758,"758":759,"759":760,"760":761,"761":762,"762":763,"763":764,"764":765,"765":766,"766":767,"767":768,"768":769,"769":770,"770":771,"771":772,"772":773,"773":774,"774":775,"775":776,"776":777,"777":778,"778":779,"779":780,"780":781,"781":782,"782":783,"783":784,"784":785,"785":786,"786":787,"787":788,"788":789,"789":790,"790":791,"791":792,"792":793,"793":794,"794":795,"795":796,"796":797,"797":798,"798":799,"799":800,"800":801,"801":802,"802":803,"803":804,"804":805,"805":806,"806":807,"807":808,"808":809,"809":810,"810":811,"811":812,"812":813,"813":814,"814":815,"815":816,"816":817,"817":818,"818":819,"819":820,"820":821,"821":822,"822":823,"823":824,"824":825,"825":826,"826":827,"827":828,"828":829,"829":830,"830":831,"831":832,"832":833,"833":834,"834":835,"835":836,"836":837,"837":838,"838":839,"839":840,"840":841,"841":842,"842":843,"843":844,"844":845,"845":846,"846":847,"847":848,"848":849,"849":850,"850":851,"851":852,"852":853,"853":854,"854":855,"855":856,"856":857,"857":858,"858":859,"859":860,"860":861,"861":862,"862":863,"863":864,"864":865,"865":866,"866":867,"867":868,"868":869,"869":870,"870":871,"871":872,"872":873,"873":874,"874":875,"875":876,"876":877,"877":878,"878":879,"879":880,"880":881,"881":882,"882":883,"883":884,"884":885,"885":886,"886":887,"887":888,"888":889,"889":890,"890":891,"891":892,"892":893,"893":894,"894":895,"895":896,"896":897,"897":898,"898":899,"899":900,"900":901,"901":902,"902":903,"903":904,"904":905,"905":906,"906":907,"907":908,"908":909,"909":910,"910":911,"911":912,"912":913,"913":914,"914":915,"915":916,"916":917,"917":918,"918":919,"919":920,"920":921,"921":922,"922":923,"923":924,"924":925,"925":926,"926":927,"927":928,"928":929,"929":930,"930":931,"931":932,"932":933,"933":934,"934":935,"935":936,"936":937,"937":938,"938":939,"939":940,"940":941,"941":942,"942":943,"943":944,"944":945,"945":946,"946":947,"947":948,"948":949,"949":950,"950":951,"951":952,"952":953,"953":954,"954":955,"955":956,"956":957,"957":958,"958":959,"959":960,"960":961,"961":962,"962":963,"963":964,"964":965,"965":966,"966":967,"967":968,"968":969,"969":970,"970":971,"971":972,"972":973,"973":974,"974":975,"975":976,"976":977,"977":978,"978":979,"979":980,"980":981,"981":982,"982":983,"983":984,"984":985,"985":986,"986":987,"987":988,"988":989,"989":990,"990":991,"991":992,"992":993,"993":994,"994":995,"995":996,"996":997,"997":998,"998":999,"999":1000,"1000":1001,"1001":1002,"1002":1003,"1003":1004,"1004":1005,"1005":1006,"1006":1007,"1007":1008,"1008":1009,"1009":1010,"1010":1011,"1011":1012,"1012":1013,"1013":1014,"1014":1015,"1015":1016,"1016":1017,"1017":1018,"1018":1019,"1019":1020,"1020":1021,"1021":1022,"1022":1023,"1023":1024,"1024":1025,"1025":1026,"1026":1027,"1027":1028,"1028":1029,"1029":1030,"1030":1031,"1031":1032,"1032":1033,"1033":1034,"1034":1035,"1035":1036,"1036":1037,"1037":1038,"1038":1039,"1039":1040,"1040":1041,"1041":1042,"1042":1043,"1043":1044,"1044":1045,"1045":1046,"1046":1047,"1047":1048,"1048":1049,"1049":1050,"1050":1051,"1051":1052,"1052":1053,"1053":1054,"1054":1055,"1055":1056,"1056":1057,"1057":1058,"1058":1059,"1059":1060,"1060":1061,"1061":1062,"1062":1063,"1063":1064,"1064":1065,"1065":1066,"1066":1067,"1067":1068,"1068":1069,"1069":1070,"1070":1071,"1071":1072,"1072":1073,"1073":1074,"1074":1075,"1075":1076,"1076":1077,"1077":1078,"1078":1079,"1079":1080,"1080":1081,"1081":1082,"1082":1083,"1083":1084,"1084":1085,"1085":1086,"1086":1087,"1087":1088,"1088":1089,"1089":1090,"1090":1091,"1091":1092,"1092":1093,"1093":1094,"1094":1095,"1095":1096,"1096":1097,"1097":1098,"1098":1099,"1099":1100,"1100":1101,"1101":1102,"1102":1103,"1103":1104,"1104":1105,"1105":1106,"1106":1107,"1107":1108,"1108":1109,"1109":1110,"1110":1111,"1111":1112,"1112":1113,"1113":1114,"1114":1115,"1115":1116,"1116":1117,"1117":1118,"1118":1119,"1119":1120,"1120":1121,"1121":1122,"1122":1123,"1123":1124,"1124":1125,"1125":1126,"1126":1127,"1127":1128,"1128":1129,"1129":1130,"1130":1131,"1131":1132,"1132":1133,"1133":1134,"1134":1135,"1135":1136,"1136":1137,"1137":1138,"1138":1139,"1139":1140,"1140":1141,"1141":1142,"1142":1143,"1143":1144,"1144":1145,"1145":1146,"1146":1147,"1147":1148,"1148":1149,"1149":1150,"1150":1151,"1151":1152,"1152":1153,"1153":1154,"1154":1155,"1155":1156,"1156":1157,"1157":1158,"1158":1159,"1159":1160,"1160":1161,"1161":1162,"1162":1163,"1163":1164,"1164":1165,"1165":1166,"1166":1167,"1167":1168,"1168":1169,"1169":1170,"1170":1171,"1171":1172,"1172":1173,"1173":1174,"1174":1175,"1175":1176,"1176":1177,"1177":1178,"1178":1179,"1179":1180,"1180":1181,"1181":1182,"1182":1183,"1183":1184,"1184":1185,"1185":1186,"1186":1187,"1187":1188,"1188":1189,"1189":1190,"1190":1191,"1191":1192,"1192":1193,"1193":1194,"1194":1195,"1195":1196,"1196":1197,"1197":1198,"1198":1199,"1199":1200,"1200":1201,"1201":1202,"1202":1203,"1203":1204,"1204":1205,"1205":1206,"1206":1207,"1207":1208,"1208":1209,"1209":1210,"1210":1211,"1211":1212,"1212":1213,"1213":1214,"1214":1215,"1215":1216,"1216":1217,"1217":1218,"1218":1219,"1219":1220,"1220":1221,"1221":1222,"1222":1223,"1223":1224,"1224":1225,"1225":1226,"1226":1227,"1227":1228,"1228":1229,"1229":1230,"1230":1231,"1231":1232,"1232":1233,"1233":1234,"1234":1235,"1235":1236,"1236":1237,"1237":1238,"1238":1239,"1239":1240,"1240":1241,"1241":1242,"1242":1243,"1243":1244,"1244":1245,"1245":1246,"1246":1247,"1247":1248,"1248":1249,"1249":1250,"1250":1251,"1251":1252,"1252":1253,"1253":1254,"1254":1255,"1255":1256,"1256":1257,"1257":1258,"1258":1259,"1259":1260,"1260":1261,"1261":1262,"1262":1263,"1263":1264,"1264":1265,"1265":1266,"1266":1267,"1267":1268,"1268":1269,"1269":1270,"1270":1271,"1271":1272,"1272":1273,"1273":1274,"1274":1275,"1275":1276,"1276":1277,"1277":1278,"1278":1279,"1279":1280,"1280":1281,"1281":1282,"1282":1283,"1283":1284,"1284":1285,"1285":1286,"1286":1287,"1287":1288,"1288":1289,"1289":1290,"1290":1291,"1291":1292,"1292":1293,"1293":1294,"1294":1295,"1295":1296,"1296":1297,"1297":1298,"1298":1299,"1299":1300,"1300":1301,"1301":1302,"1302":1303,"1303":1304,"1304":1305,"1305":1306,"1306":1307,"1307":1308,"1308":1309,"1309":1310,"1310":1311,"1311":1312,"1312":1313,"1313":1314,"1314":1315,"1315":1316,"1316":1317,"1317":1318,"1318":1319,"1319":1320,"1320":1321,"1321":1322,"1322":1323,"1323":1324,"1324":1325,"1325":1326,"1326":1327,"1327":1328,"1328":1329,"1329":1330,"1330":1331,"1331":1332,"1332":1333,"1333":1334,"1334":1335,"1335":1336,"1336":1337,"1337":1338,"1338":1339,"1339":1340,"1340":1341,"1341":1342,"1342":1343,"1343":1344,"1344":1345,"1345":1346,"1346":1347,"1347":1348,"1348":1349,"1349":1350,"1350":1351,"1351":1352,"1352":1353,"1353":1354,"1354":1355,"1355":1356,"1356":1357,"1357":1358,"1358":1359,"1359":1360,"1360":1361,"1361":1362,"1362":1363,"1363":1364,"1364":1365,"1365":1366,"1366":1367,"1367":1368,"1368":1369,"1369":1370,"1370":1371,"1371":1372,"1372":1373,"1373":1374,"1374":1375,"1375":1376,"1376":1377,"1377":1378,"1378":1379,"1379":1380,"1380":1381,"1381":1382,"1382":1383,"1383":1384,"1384":1385,"1385":1386,"1386":1387,"1387":1388,"1388":1389,"1389":1390,"1390":1391,"1391":1392,"1392":1393,"1393":1394,"1394":1395,"1395":1396,"1396":1397,"1397":1398,"1398":1399,"1399":1400,"1400":1401,"1401":1402,"1402":1403,"1403":1404,"1404":1405,"1405":1406,"1406":1407,"1407":1408,"1408":1409,"1409":1410,"1410":1411,"1411":1412,"1412":1413,"1413":1414,"1414":1415,"1415":1416,"1416":1417,"1417":1418,"1418":1419,"1419":1420,"1420":1421,"1421":1422,"1422":1423,"1423":1424,"1424":1425,"1425":1426,"1426":1427,"1427":1428,"1428":1429,"1429":1430,"1430":1431,"1431":1432,"1432":1433,"1433":1434,"1434":1435,"1435":1436,"1436":1437,"1437":1438,"1438":1439,"1439":1440,"1440":1441,"1441":1442,"1442":1443,"1443":1444,"1444":1445,"1445":1446,"1446":1447,"1447":1448,"1448":1449,"1449":1450,"1450":1451,"1451":1452,"1452":1453,"1453":1454,"1454":1455,"1455":1456,"1456":1457,"1457":1458,"1458":1459,"1459":1460,"1460":1461,"1461":1462,"1462":1463,"1463":1464,"1464":1465,"1465":1466,"1466":1467,"1467":1468,"1468":1469,"1469":1470,"1470":1471,"1471":1472,"1472":1473,"1473":1474,"1474":1475,"1475":1476,"1476":1477,"1477":1478,"1478":1479,"1479":1480,"1480":1481,"1481":1482,"1482":1483,"1483":1484,"1484":1485,"1485":1486,"1486":1487,"1487":1488,"1488":1489,"1489":1490,"1490":1491,"1491":1492,"1492":1493,"1493":1494,"1494":1495,"1495":1496,"1496":1497,"1497":1498,"1498":1499,"1499":1500,"1500":1501,"1501":1502,"1502":1503,"1503":1504,"1504":1505,"1505":1506,"1506":1507,"1507":1508,"1508":1509,"1509":1510,"1510":1511,"1511":1512,"1512":1513,"1513":1514,"1514":1515,"1515":1516,"1516":1517,"1517":1518,"1518":1519,"1519":1520,"1520":1521,"1521":1522,"1522":1523,"1523":1524,"1524":1525,"1525":1526,"1526":1527,"1527":1528,"1528":1529,"1529":1530,"1530":1531,"1531":1532,"1532":1533,"1533":1534,"1534":1535,"1535":1536,"1536":1537,"1537":1538,"1538":1539,"1539":1540,"1540":1541,"1541":1542,"1542":1543,"1543":1544,"1544":1545,"1545":1546,"1546":1547,"1547":1548,"1548":1549,"1549":1550,"1550":1551,"1551":1552,"1552":1553,"1553":1554,"1554":1555,"1555":1556,"1556":1557,"1557":1558,"1558":1559,"1559":1560,"1560":1561,"1561":1562,"1562":1563,"1563":1564,"1564":1565,"1565":1566,"1566":1567,"1567":1568,"1568":1569,"1569":1570,"1570":1571,"1571":1572,"1572":1573,"1573":1574,"1574":1575,"1575":1576,"1576":1577,"1577":1578,"1578":1579,"1579":1580,"1580":1581,"1581":1582,"1582":1583,"1583":1584,"1584":1585,"1585":1586,"1586":1587,"1587":1588,"1588":1589,"1589":1590,"1590":1591,"1591":1592,"1592":1593,"1593":1594,"1594":1595,"1595":1596,"1596":1597,"1597":1598,"1598":1599,"1599":1600,"1600":1601,"1601":1602,"1602":1603,"1603":1604,"1604":1605,"1605":1606,"1606":1607,"1607":1608,"1608":1609,"1609":1610,"1610":1611,"1611":1612,"1612":1613,"1613":1614,"1614":1615,"1615":1616,"1616":1617,"1617":1618,"1618":1619,"1619":1620,"1620":1621,"1621":1622,"1622":1623,"1623":1624,"1624":1625,"1625":1626,"1626":1627,"1627":1628,"1628":1629,"1629":1630,"1630":1631,"1631":1632,"1632":1633,"1633":1634,"1634":1635,"1635":1636,"1636":1637,"1637":1638,"1638":1639,"1639":1640,"1640":1641,"1641":1642,"1642":1643,"1643":1644,"1644":1645,"1645":1646,"1646":1647,"1647":1648,"1648":1649,"1649":1650,"1650":1651,"1651":1652,"1652":1653,"1653":1654,"1654":1655,"1655":1656,"1656":1657,"1657":1658,"1658":1659,"1659":1660,"1660":1661,"1661":1662,"1662":1663,"1663":1664,"1664":1665,"1665":1666,"1666":1667,"1667":1668,"1668":1669,"1669":1670,"1670":1671,"1671":1672,"1672":1673,"1673":1674,"1674":1675,"1675":1676,"1676":1677,"1677":1678,"1678":1679,"1679":1680,"1680":1681,"1681":1682,"1682":1683,"1683":1684,"1684":1685,"1685":1686,"1686":1687,"1687":1688,"1688":1689,"1689":1690,"1690":1691,"1691":1692,"1692":1693,"1693":1694,"1694":1695,"1695":1696,"1696":1697,"1697":1698,"1698":1699,"1699":1700,"1700":1701,"1701":1702,"1702":1703,"1703":1704,"1704":1705,"1705":1706,"1706":1707,"1707":1708,"1708":1709,"1709":1710,"1710":1711,"1711":1712,"1712":1713,"1713":1714,"1714":1715,"1715":1716,"1716":1717,"1717":1718,"1718":1719,"1719":1720,"1720":1721,"1721":1722,"1722":1723,"1723":1724,"1724":1725,"1725":1726,"1726":1727,"1727":1728,"1728":1729,"1729":1730,"1730":1731,"1731":1732,"1732":1733,"1733":1734,"1734":1735,"1735":1736,"1736":1737,"1737":1738,"1738":1739,"1739":1740,"1740":1741,"1741":1742,"1742":1743,"1743":1744,"1744":1745,"1745":1746,"1746":1747,"1747":1748,"1748":1749,"1749":1750,"1750":1751,"1751":1752,"1752":1753,"1753":1754,"1754":1755,"1755":1756,"1756":1757,"1757":1758,"1758":1759,"1759":1760,"1760":1761,"1761":1762,"1762":1763,"1763":1764,"1764":1765,"1765":1766,"1766":1767,"1767":1768,"1768":1769,"1769":1770,"1770":1771,"1771":1772,"1772":1773,"1773":1774,"1774":1775,"1775":1776,"1776":1777,"1777":1778,"1778":1779,"1779":1780,"1780":1781,"1781":1782,"1782":1783,"1783":1784,"1784":1785,"1785":1786,"1786":1787,"1787":1788,"1788":1789,"1789":1790,"1790":1791,"1791":1792,"1792":1793,"1793":1794,"1794":1795,"1795":1796,"1796":1797,"1797":1798,"1798":1799,"1799":1800,"1800":1801,"1801":1802,"1802":1803,"1803":1804,"1804":1805,"1805":1806,"1806":1807,"1807":1808,"1808":1809,"1809":1810,"1810":1811,"1811":1812,"1812":1813,"1813":1814,"1814":1815,"1815":1816,"1816":1817,"1817":1818,"1818":1819,"1819":1820,"1820":1821,"1821":1822,"1822":1823,"1823":1824,"1824":1825,"1825":1826,"1826":1827,"1827":1828,"1828":1829,"1829":1830,"1830":1831,"1831":1832,"1832":1833,"1833":1834,"1834":1835,"1835":1836,"1836":1837,"1837":1838,"1838":1839,"1839":1840,"1840":1841,"1841":1842,"1842":1843,"1843":1844,"1844":1845,"1845":1846,"1846":1847,"1847":1848,"1848":1849,"1849":1850,"1850":1851,"1851":1852,"1852":1853,"1853":1854,"1854":1855,"1855":1856,"1856":1857,"1857":1858,"1858":1859,"1859":1860,"1860":1861,"1861":1862,"1862":1863,"1863":1864,"1864":1865,"1865":1866,"1866":1867,"1867":1868,"1868":1869,"1869":1870,"1870":1871,"1871":1872,"1872":1873,"1873":1874,"1874":1875,"1875":1876,"1876":1877,"1877":1878,"1878":1879,"1879":1880,"1880":1881,"1881":1882,"1882":1883,"1883":1884,"1884":1885,"1885":1886,"1886":1887,"1887":1888,"1888":1889,"1889":1890,"1890":1891,"1891":1892,"1892":1893,"1893":1894,"1894":1895,"1895":1896,"1896":1897,"1897":1898,"1898":1899,"1899":1900,"1900":1901,"1901":1902,"1902":1903,"1903":1904,"1904":1905,"1905":1906,"1906":1907,"1907":1908,"1908":1909,"1909":1910,"1910":1911,"1911":1912,"1912":1913,"1913":1914,"1914":1915,"1915":1916,"1916":1917,"1917":1918,"1918":1919,"1919":1920,"1920":1921,"1921":1922,"1922":1923,"1923":1924,"1924":1925,"1925":1926,"1926":1927,"1927":1928,"1928":1929,"1929":1930,"1930":1931,"1931":1932,"1932":1933,"1933":1934,"1934":1935,"1935":1936,"1936":1937,"1937":1938,"1938":1939,"1939":1940,"1940":1941,"1941":1942,"1942":1943,"1943":1944,"1944":1945,"1945":1946,"1946":1947,"1947":1948,"1948":1949,"1949":1950,"1950":1951,"1951":1952,"1952":1953,"1953":1954,"1954":1955,"1955":1956,"1956":1957,"1957":1958,"1958":1959,"1959":1960,"1960":1961,"1961":1962,"1962":1963,"1963":1964,"1964":1965,"1965":1966,"1966":1967,"1967":1968,"1968":1969,"1969":1970,"1970":1971,"1971":1972,"1972":1973,"1973":1974,"1974":1975,"1975":1976,"1976":1977,"1977":1978,"1978":1979,"1979":1980,"1980":1981,"1981":1982,"1982":1983,"1983":1984,"1984":1985,"1985":1986,"1986":1987,"1987":1988,"1988":1989,"1989":1990,"1990":1991,"1991":1992,"1992":1993,"1993":1994,"1994":1995,"1995":1996,"1996":1997,"1997":1998,"1998":1999,"1999":2000,"2000":2001,"2001":2002,"2002":2003,"2003":2004,"2004":2005,"2005":2006,"2006":2007,"2007":2008,"2008":2009,"2009":2010,"2010":2011,"2011":2012,"2012":2013,"2013":2014,"2014":2015,"2015":2016,"2016":2017,"2017":2018,"2018":2019,"2019":2020,"2020":2021,"2021":2022,"2022":2023,"2023":2024,"2024":2025,"2025":2026,"2026":2027,"2027":2028,"2028":2029,"2029":2030,"2030":2031,"2031":2032,"2032":2033,"2033":2034,"2034":2035,"2035":2036,"2036":2037,"2037":2038,"2038":2039,"2039":2040,"2040":2041,"2041":2042,"2042":2043,"2043":2044,"2044":2045,"2045":2046,"2046":2047,"2047":2048,"2048":2049,"2049":2050,"2050":2051,"2051":2052,"2052":2053,"2053":2054,"2054":2055,"2055":2056,"2056":2057,"2057":2058,"2058":2059,"2059":2060,"2060":2061,"2061":2062,"2062":2063,"2063":2064,"2064":2065,"2065":2066,"2066":2067,"2067":2068,"2068":2069,"2069":2070,"2070":2071,"2071":2072,"2072":2073,"2073":2074,"2074":2075,"2075":2076,"2076":2077,"2077":2078,"2078":2079,"2079":2080,"2080":2081,"2081":2082,"2082":2083,"2083":2084,"2084":2085,"2085":2086,"2086":2087,"2087":2088,"2088":2089,"2089":2090,"2090":2091,"2091":2092,"2092":2093,"2093":2094,"2094":2095,"2095":2096,"2096":2097,"2097":2098,"2098":2099,"2099":2100,"2100":2101,"2101":2102,"2102":2103,"2103":2104,"2104":2105,"2105":2106,"2106":2107,"2107":2108,"2108":2109,"2109":2110,"2110":2111,"2111":2112,"2112":2113,"2113":2114,"2114":2115,"2115":2116,"2116":2117,"2117":2118,"2118":2119,"2119":2120,"2120":2121,"2121":2122,"2122":2123,"2123":2124,"2124":2125,"2125":2126,"2126":2127,"2127":2128,"2128":2129,"2129":2130,"2130":2131,"2131":2132,"2132":2133,"2133":2134,"2134":2135,"2135":2136,"2136":2137,"2137":2138,"2138":2139,"2139":2140,"2140":2141,"2141":2142,"2142":2143,"2143":2144,"2144":2145,"2145":2146,"2146":2147,"2147":2148,"2148":2149,"2149":2150,"2150":2151,"2151":2152,"2152":2153,"2153":2154,"2154":2155,"2155":2156,"2156":2157,"2157":2158,"2158":2159,"2159":2160,"2160":2161,"2161":2162,"2162":2163,"2163":2164,"2164":2165,"2165":2166,"2166":2167,"2167":2168,"2168":2169,"2169":2170,"2170":2171,"2171":2172,"2172":2173,"2173":2174,"2174":2175,"2175":2176,"2176":2177,"2177":2178,"2178":2179,"2179":2180,"2180":2181,"2181":2182,"2182":2183,"2183":2184,"2184":2185,"2185":2186,"2186":2187,"2187":2188,"2188":2189,"2189":2190,"2190":2191,"2191":2192,"2192":2193,"2193":2194,"2194":2195,"2195":2196,"2196":2197,"2197":2198,"2198":2199,"2199":2200,"2200":2201,"2201":2202,"2202":2203,"2203":2204,"2204":2205,"2205":2206,"2206":2207,"2207":2208,"2208":2209,"2209":2210,"2210":2211,"2211":2212,"2212":2213,"2213":2214,"2214":2215,"2215":2216,"2216":2217,"2217":2218,"2218":2219,"2219":2220,"2220":2221,"2221":2222,"2222":2223,"2223":2224,"2224":2225,"2225":2226,"2226":2227,"2227":2228,"2228":2229,"2229":2230,"2230":2231,"2231":2232,"2232":2233,"2233":2234,"2234":2235,"2235":2236,"2236":2237,"2237":2238,"2238":2239,"2239":2240,"2240":2241,"2241":2242,"2242":2243,"2243":2244,"2244":2245,"2245":2246,"2246":2247,"2247":2248,"2248":2249,"2249":2250,"2250":2251,"2251":2252,"2252":2253,"2253":2254,"2254":2255,"2255":2256,"2256":2257,"2257":2258,"2258":2259,"2259":2260,"2260":2261,"2261":2262,"2262":2263,"2263":2264,"2264":2265,"2265":2266,"2266":2267,"2267":2268,"2268":2269,"2269":2270,"2270":2271,"2271":2272,"2272":2273,"2273":2274,"2274":2275,"2275":2276,"2276":2277,"2277":2278,"2278":2279,"2279":2280,"2280":2281,"2281":2282,"2282":2283,"2283":2284,"2284":2285,"2285":2286,"2286":2287,"2287":2288,"2288":2289,"2289":2290,"2290":2291,"2291":2292,"2292":2293,"2293":2294,"2294":2295,"2295":2296,"2296":2297,"2297":2298,"2298":2299,"2299":2300,"2300":2301,"2301":2302,"2302":2303,"2303":2304,"2304":2305,"2305":2306,"2306":2307,"2307":2308,"2308":2309,"2309":2310,"2310":2311,"2311":2312,"2312":2313,"2313":2314,"2314":2315,"2315":2316,"2316":2317,"2317":2318,"2318":2319,"2319":2320,"2320":2321,"2321":2322,"2322":2323,"2323":2324,"2324":2325,"2325":2326,"2326":2327,"2327":2328,"2328":2329,"2329":2330,"2330":2331,"2331":2332,"2332":2333,"2333":2334,"2334":2335,"2335":2336,"2336":2337,"2337":2338,"2338":2339,"2339":2340,"2340":2341,"2341":2342,"2342":2343,"2343":2344,"2344":2345,"2345":2346,"2346":2347,"2347":2348,"2348":2349,"2349":2350,"2350":2351,"2351":2352,"2352":2353,"2353":2354,"2354":2355,"2355":2356,"2356":2357,"2357":2358,"2358":2359,"2359":2360,"2360":2361,"2361":2362,"2362":2363,"2363":2364,"2364":2365,"2365":2366,"2366":2367,"2367":2368,"2368":2369,"2369":2370,"2370":2371,"2371":2372,"2372":2373,"2373":2374,"2374":2375,"2375":2376,"2376":2377,"2377":2378,"2378":2379,"2379":2380,"2380":2381,"2381":2382,"2382":2383,"2383":2384,"2384":2385,"2385":2386,"2386":2387,"2387":2388,"2388":2389,"2389":2390,"2390":2391,"2391":2392,"2392":2393,"2393":2394,"2394":2395,"2395":2396,"2396":2397,"2397":2398,"2398":2399,"2399":2400,"2400":2401,"2401":2402,"2402":2403,"2403":2404,"2404":2405,"2405":2406,"2406":2407,"2407":2408,"2408":2409,"2409":2410,"2410":2411,"2411":2412,"2412":2413,"2413":2414,"2414":2415,"2415":2416,"2416":2417,"2417":2418,"2418":2419,"2419":2420,"2420":2421,"2421":2422,"2422":2423,"2423":2424,"2424":2425,"2425":2426,"2426":2427,"2427":2428,"2428":2429,"2429":2430,"2430":2431,"2431":2432,"2432":2433,"2433":2434,"2434":2435,"2435":2436,"2436":2437,"2437":2438,"2438":2439,"2439":2440,"2440":2441,"2441":2442,"2442":2443,"2443":2444,"2444":2445,"2445":2446,"2446":2447,"2447":2448,"2448":2449,"2449":2450,"2450":2451,"2451":2452,"2452":2453,"2453":2454,"2454":2455,"2455":2456,"2456":2457,"2457":2458,"2458":2459,"2459":2460,"2460":2461,"2461":2462,"2462":2463,"2463":2464,"2464":2465,"2465":2466,"2466":2467,"2467":2468,"2468":2469,"2469":2470,"2470":2471,"2471":2472,"2472":2473,"2473":2474,"2474":2475,"2475":2476,"2476":2477,"2477":2478,"2478":2479,"2479":2480,"2480":2481,"2481":2482,"2482":2483,"2483":2484,"2484":2485,"2485":2486,"2486":2487,"2487":2488,"2488":2489,"2489":2490,"2490":2491,"2491":2492,"2492":2493,"2493":2494,"2494":2495,"2495":2496,"2496":2497,"2497":2498,"2498":2499,"2499":2500,"2500":2501,"2501":2502,"2502":2503,"2503":2504,"2504":2505,"2505":2506,"2506":2507,"2507":2508,"2508":2509,"2509":2510,"2510":2511,"2511":2512,"2512":2513,"2513":2514,"2514":2515,"2515":2516,"2516":2517,"2517":2518,"2518":2519,"2519":2520,"2520":2521,"2521":2522,"2522":2523,"2523":2524,"2524":2525,"2525":2526,"2526":2527,"2527":2528,"2528":2529,"2529":2530,"2530":2531,"2531":2532,"2532":2533,"2533":2534,"2534":2535,"2535":2536,"2536":2537,"2537":2538,"2538":2539,"2539":2540,"2540":2541,"2541":2542,"2542":2543,"2543":2544,"2544":2545,"2545":2546,"2546":2547,"2547":2548,"2548":2549,"2549":2550,"2550":2551,"2551":2552,"2552":2553,"2553":2554,"2554":2555,"2555":2556,"2556":2557,"2557":2558,"2558":2559,"2559":2560,"2560":2561,"2561":2562,"2562":2563,"2563":2564,"2564":2565,"2565":2566,"2566":2567,"2567":2568,"2568":2569,"2569":2570,"2570":2571,"2571":2572,"2572":2573,"2573":2574,"2574":2575,"2575":2576,"2576":2577,"2577":2578,"2578":2579,"2579":2580,"2580":2581,"2581":2582,"2582":2583,"2583":2584,"2584":2585,"2585":2586,"2586":2587,"2587":2588,"2588":2589,"2589":2590,"2590":2591,"2591":2592,"2592":2593,"2593":2594,"2594":2595,"2595":2596,"2596":2597,"2597":2598,"2598":2599,"2599":2600,"2600":2601,"2601":2602,"2602":2603,"2603":2604,"2604":2605,"2605":2606,"2606":2607,"2607":2608,"2608":2609,"2609":2610,"2610":2611,"2611":2612,"2612":2613,"2613":2614,"2614":2615,"2615":2616,"2616":2617,"2617":2618,"2618":2619,"2619":2620,"2620":2621,"2621":2622,"2622":2623,"2623":2624,"2624":2625,"2625":2626,"2626":2627,"2627":2628,"2628":2629,"2629":2630,"2630":2631,"2631":2632,"2632":2633,"2633":2634,"2634":2635,"2635":2636,"2636":2637,"2637":2638,"2638":2639,"2639":2640,"2640":2641,"2641":2642,"2642":2643,"2643":2644,"2644":2645,"2645":2646,"2646":2647,"2647":2648,"2648":2649,"2649":2650,"2650":2651,"2651":2652,"2652":2653,"2653":2654,"2654":2655,"2655":2656,"2656":2657,"2657":2658,"2658":2659,"2659":2660,"2660":2661,"2661":2662,"2662":2663,"2663":2664,"2664":2665,"2665":2666,"2666":2667,"2667":2668,"2668":2669,"2669":2670,"2670":2671,"2671":2672,"2672":2673,"2673":2674,"2674":2675,"2675":2676,"2676":2677,"2677":2678,"2678":2679,"2679":2680,"2680":2681,"2681":2682,"2682":2683,"2683":2684,"2684":2685,"2685":2686,"2686":2687,"2687":2688,"2688":2689,"2689":2690,"2690":2691,"2691":2692,"2692":2693,"2693":2694,"2694":2695,"2695":2696,"2696":2697,"2697":2698,"2698":2699,"2699":2700,"2700":2701,"2701":2702,"2702":2703,"2703":2704,"2704":2705,"2705":2706,"2706":2707,"2707":2708,"2708":2709,"2709":2710,"2710":2711,"2711":2712,"2712":2713,"2713":2714,"2714":2715,"2715":2716,"2716":2717,"2717":2718,"2718":2719,"2719":2720,"2720":2721,"2721":2722,"2722":2723,"2723":2724,"2724":2725,"2725":2726,"2726":2727,"2727":2728,"2728":2729,"2729":2730,"2730":2731,"2731":2732,"2732":2733,"2733":2734,"2734":2735,"2735":2736,"2736":2737,"2737":2738,"2738":2739,"2739":2740,"2740":2741,"2741":2742,"2742":2743,"2743":2744,"2744":2745,"2745":2746,"2746":2747,"2747":2748,"2748":2749,"2749":2750,"2750":2751,"2751":2752,"2752":2753,"2753":2754,"2754":2755,"2755":2756,"2756":2757,"2757":2758,"2758":2759,"2759":2760,"2760":2761,"2761":2762,"2762":2763,"2763":2764,"2764":2765,"2765":2766,"2766":2767,"2767":2768,"2768":2769,"2769":2770,"2770":2771,"2771":2772,"2772":2773,"2773":2774,"2774":2775,"2775":2776,"2776":2777,"2777":2778,"2778":2779,"2779":2780,"2780":2781,"2781":2782,"2782":2783,"2783":2784,"2784":2785,"2785":2786,"2786":2787,"2787":2788,"2788":2789,"2789":2790,"2790":2791,"2791":2792,"2792":2793,"2793":2794,"2794":2795,"2795":2796,"2796":2797,"2797":2798,"2798":2799,"2799":2800,"2800":2801,"2801":2802,"2802":2803,"2803":2804,"2804":2805,"2805":2806,"2806":2807,"2807":2808,"2808":2809,"2809":2810,"2810":2811,"2811":2812,"2812":2813,"2813":2814,"2814":2815,"2815":2816,"2816":2817,"2817":2818,"2818":2819,"2819":2820,"2820":2821,"2821":2822,"2822":2823,"2823":2824,"2824":2825,"2825":2826,"2826":2827,"2827":2828,"2828":2829,"2829":2830,"2830":2831,"2831":2832,"2832":2833,"2833":2834,"2834":2835,"2835":2836,"2836":2837,"2837":2838,"2838":2839,"2839":2840,"2840":2841,"2841":2842,"2842":2843,"2843":2844,"2844":2845,"2845":2846,"2846":2847,"2847":2848,"2848":2849,"2849":2850,"2850":2851,"2851":2852,"2852":2853,"2853":2854,"2854":2855,"2855":2856,"2856":2857,"2857":2858,"2858":2859,"2859":2860,"2860":2861,"2861":2862,"2862":2863,"2863":2864,"2864":2865,"2865":2866,"2866":2867,"2867":2868,"2868":2869,"2869":2870,"2870":2871,"2871":2872,"2872":2873,"2873":2874,"2874":2875,"2875":2876,"2876":2877,"2877":2878,"2878":2879,"2879":2880,"2880":2881,"2881":2882,"2882":2883,"2883":2884,"2884":2885,"2885":2886,"2886":2887,"2887":2888,"2888":2889,"2889":2890,"2890":2891,"2891":2892,"2892":2893,"2893":2894,"2894":2895,"2895":2896,"2896":2897,"2897":2898,"2898":2899,"2899":2900,"2900":2901,"2901":2902,"2902":2903,"2903":2904,"2904":2905,"2905":2906,"2906":2907,"2907":2908,"2908":2909,"2909":2910,"2910":2911,"2911":2912,"2912":2913,"2913":2914,"2914":2915,"2915":2916,"2916":2917,"2917":2918,"2918":2919,"2919":2920,"2920":2921,"2921":2922,"2922":2923,"2923":2924,"2924":2925,"2925":2926,"2926":2927,"2927":2928,"2928":2929,"2929":2930,"2930":2931,"2931":2932,"2932":2933,"2933":2934,"2934":2935,"2935":2936,"2936":2937,"2937":2938,"2938":2939,"2939":2940,"2940":2941,"2941":2942,"2942":2943,"2943":2944,"2944":2945,"2945":2946,"2946":2947,"2947":2948,"2948":2949,"2949":2950,"2950":2951,"2951":2952,"2952":2953,"2953":2954,"2954":2955,"2955":2956,"2956":2957,"2957":2958,"2958":2959,"2959":2960,"2960":2961,"2961":2962,"2962":2963,"2963":2964,"2964":2965,"2965":2966,"2966":2967,"2967":2968,"2968":2969,"2969":2970,"2970":2971,"2971":2972,"2972":2973,"2973":2974,"2974":2975,"2975":2976,"2976":2977,"2977":2978,"2978":2979,"2979":2980,"2980":2981,"2981":2982,"2982":2983,"2983":2984,"2984":2985,"2985":2986,"2986":2987,"2987":2988,"2988":2989,"2989":2990,"2990":2991,"2991":2992,"2992":2993,"2993":2994,"2994":2995,"2995":2996,"2996":2997,"2997":2998,"2998":2999,"2999":3000,"3000":3001,"3001":3002,"3002":3003,"3003":3004,"3004":3005,"3005":3006,"3006":3007,"3007":3008,"3008":3009,"3009":3010,"3010":3011,"3011":3012,"3012":3013,"3013":3014,"3014":3015,"3015":3016,"3016":3017,"3017":3018,"3018":3019,"3019":3020,"3020":3021,"3021":3022,"3022":3023,"3023":3024,"3024":3025,"3025":3026,"3026":3027,"3027":3028,"3028":3029,"3029":3030,"3030":3031,"3031":3032,"3032":3033,"3033":3034,"3034":3035,"3035":3036,"3036":3037,"3037":3038,"3038":3039,"3039":3040,"3040":3041,"3041":3042,"3042":3043,"3043":3044,"3044":3045,"3045":3046,"3046":3047,"3047":3048,"3048":3049,"3049":3050,"3050":3051,"3051":3052,"3052":3053,"3053":3054,"3054":3055,"3055":3056,"3056":3057,"3057":3058,"3058":3059,"3059":3060,"3060":3061,"3061":3062,"3062":3063,"3063":3064,"3064":3065,"3065":3066,"3066":3067,"3067":3068,"3068":3069,"3069":3070,"3070":3071,"3071":3072,"3072":3073,"3073":3074,"3074":3075,"3075":3076,"3076":3077,"3077":3078,"3078":3079,"3079":3080,"3080":3081,"3081":3082,"3082":3083,"3083":3084,"3084":3085,"3085":3086,"3086":3087,"3087":3088,"3088":3089,"3089":3090,"3090":3091,"3091":3092,"3092":3093,"3093":3094,"3094":3095,"3095":3096,"3096":3097,"3097":3098,"3098":3099,"3099":3100,"3100":3101,"3101":3102,"3102":3103,"3103":3104,"3104":3105,"3105":3106,"3106":3107,"3107":3108,"3108":3109,"3109":3110,"3110":3111,"3111":3112,"3112":3113,"3113":3114,"3114":3115,"3115":3116,"3116":3117,"3117":3118,"3118":3119,"3119":3120,"3120":3121,"3121":3122,"3122":3123,"3123":3124,"3124":3125,"3125":3126,"3126":3127,"3127":3128,"3128":3129,"3129":3130,"3130":3131,"3131":3132,"3132":3133,"3133":3134,"3134":3135,"3135":3136,"3136":3137,"3137":3138,"3138":3139,"3139":3140,"3140":3141,"3141":3142,"3142":3143,"3143":3144,"3144":3145,"3145":3146,"3146":3147,"3147":3148,"3148":3149,"3149":3150,"3150":3151,"3151":3152,"3152":3153,"3153":3154,"3154":3155,"3155":3156,"3156":3157,"3157":3158,"3158":3159,"3159":3160,"3160":3161,"3161":3162,"3162":3163,"3163":3164,"3164":3165,"3165":3166,"3166":3167,"3167":3168,"3168":3169,"3169":3170,"3170":3171,"3171":3172,"3172":3173,"3173":3174,"3174":3175,"3175":3176,"3176":3177,"3177":3178,"3178":3179,"3179":3180,"3180":3181,"3181":3182,"3182":3183,"3183":3184,"3184":3185,"3185":3186,"3186":3187,"3187":3188,"3188":3189,"3189":3190,"3190":3191,"3191":3192,"3192":3193,"3193":3194,"3194":3195,"3195":3196,"3196":3197,"3197":3198,"3198":3199,"3199":3200,"3200":3201,"3201":3202,"3202":3203,"3203":3204,"3204":3205,"3205":3206,"3206":3207,"3207":3208,"3208":3209,"3209":3210,"3210":3211,"3211":3212,"3212":3213,"3213":3214,"3214":3215,"3215":3216,"3216":3217,"3217":3218,"3218":3219,"3219":3220,"3220":3221,"3221":3222,"3222":3223,"3223":3224,"3224":3225,"3225":3226,"3226":3227,"3227":3228,"3228":3229,"3229":3230,"3230":3231,"3231":3232,"3232":3233,"3233":3234,"3234":3235,"3235":3236,"3236":3237,"3237":3238,"3238":3239,"3239":3240,"3240":3241,"3241":3242,"3242":3243,"3243":3244,"3244":3245,"3245":3246,"3246":3247,"3247":3248,"3248":3249,"3249":3250,"3250":3251,"3251":3252,"3252":3253,"3253":3254,"3254":3255,"3255":3256,"3256":3257,"3257":3258,"3258":3259,"3259":3260,"3260":3261,"3261":3262,"3262":3263,"3263":3264,"3264":3265,"3265":3266,"3266":3267,"3267":3268,"3268":3269,"3269":3270,"3270":3271,"3271":3272,"3272":3273,"3273":3274,"3274":3275,"3275":3276,"3276":3277,"3277":3278,"3278":3279,"3279":3280,"3280":3281,"3281":3282,"3282":3283,"3283":3284,"3284":3285,"3285":3286,"3286":3287,"3287":3288,"3288":3289,"3289":3290,"3290":3291,"3291":3292,"3292":3293,"3293":3294,"3294":3295,"3295":3296,"3296":3297,"3297":3298,"3298":3299,"3299":3300,"3300":3301,"3301":3302,"3302":3303,"3303":3304,"3304":3305,"3305":3306,"3306":3307,"3307":3308,"3308":3309,"3309":3310,"3310":3311,"3311":3312,"3312":3313,"3313":3314,"3314":3315,"3315":3316,"3316":3317,"3317":3318,"3318":3319,"3319":3320,"3320":3321,"3321":3322,"3322":3323,"3323":3324,"3324":3325,"3325":3326,"3326":3327,"3327":3328,"3328":3329,"3329":3330,"3330":3331,"3331":3332,"3332":3333,"3333":3334,"3334":3335,"3335":3336,"3336":3337,"3337":3338,"3338":3339,"3339":3340,"3340":3341,"3341":3342,"3342":3343,"3343":3344,"3344":3345,"3345":3346,"3346":3347,"3347":3348,"3348":3349,"3349":3350,"3350":3351,"3351":3352,"3352":3353,"3353":3354,"3354":3355,"3355":3356,"3356":3357,"3357":3358,"3358":3359,"3359":3360,"3360":3361,"3361":3362,"3362":3363,"3363":3364,"3364":3365,"3365":3366,"3366":3367,"3367":3368,"3368":3369,"3369":3370,"3370":3371,"3371":3372,"3372":3373,"3373":3374,"3374":3375,"3375":3376,"3376":3377,"3377":3378,"3378":3379,"3379":3380,"3380":3381,"3381":3382,"3382":3383,"3383":3384,"3384":3385,"3385":3386,"3386":3387,"3387":3388,"3388":3389,"3389":3390,"3390":3391,"3391":3392,"3392":3393,"3393":3394,"3394":3395,"3395":3396,"3396":3397,"3397":3398,"3398":3399,"3399":3400,"3400":3401,"3401":3402,"3402":3403,"3403":3404,"3404":3405,"3405":3406,"3406":3407,"3407":3408,"3408":3409,"3409":3410,"3410":3411,"3411":3412,"3412":3413,"3413":3414,"3414":3415,"3415":3416,"3416":3417,"3417":3418,"3418":3419,"3419":3420,"3420":3421,"3421":3422,"3422":3423,"3423":3424,"3424":3425,"3425":3426,"3426":3427,"3427":3428,"3428":3429,"3429":3430,"3430":3431,"3431":3432,"3432":3433,"3433":3434,"3434":3435,"3435":3436,"3436":3437,"3437":3438,"3438":3439,"3439":3440,"3440":3441,"3441":3442,"3442":3443,"3443":3444,"3444":3445,"3445":3446,"3446":3447,"3447":3448,"3448":3449,"3449":3450,"3450":3451,"3451":3452,"3452":3453,"3453":3454,"3454":3455,"3455":3456,"3456":3457,"3457":3458,"3458":3459,"3459":3460,"3460":3461,"3461":3462,"3462":3463,"3463":3464,"3464":3465,"3465":3466,"3466":3467,"3467":3468,"3468":3469,"3469":3470,"3470":3471,"3471":3472,"3472":3473,"3473":3474,"3474":3475,"3475":3476,"3476":3477,"3477":3478,"3478":3479,"3479":3480,"3480":3481,"3481":3482,"3482":3483,"3483":3484,"3484":3485,"3485":3486,"3486":3487,"3487":3488,"3488":3489,"3489":3490,"3490":3491,"3491":3492,"3492":3493,"3493":3494,"3494":3495,"3495":3496,"3496":3497,"3497":3498,"3498":3499,"3499":3500,"3500":3501,"3501":3502,"3502":3503,"3503":3504,"3504":3505,"3505":3506,"3506":3507,"3507":3508,"3508":3509,"3509":3510,"3510":3511,"3511":3512,"3512":3513,"3513":3514,"3514":3515,"3515":3516,"3516":3517,"3517":3518,"3518":3519,"3519":3520,"3520":3521,"3521":3522,"3522":3523,"3523":3524,"3524":3525,"3525":3526,"3526":3527,"3527":3528,"3528":3529,"3529":3530,"3530":3531,"3531":3532,"3532":3533,"3533":3534,"3534":3535,"3535":3536,"3536":3537,"3537":3538,"3538":3539,"3539":3540,"3540":3541,"3541":3542,"3542":3543,"3543":3544,"3544":3545,"3545":3546,"3546":3547,"3547":3548,"3548":3549,"3549":3550,"3550":3551,"3551":3552,"3552":3553,"3553":3554,"3554":3555,"3555":3556,"3556":3557,"3557":3558,"3558":3559,"3559":3560,"3560":3561,"3561":3562,"3562":3563,"3563":3564,"3564":3565,"3565":3566,"3566":3567,"3567":3568,"3568":3569,"3569":3570,"3570":3571,"3571":3572,"3572":3573,"3573":3574,"3574":3575,"3575":3576,"3576":3577,"3577":3578,"3578":3579,"3579":3580,"3580":3581,"3581":3582,"3582":3583,"3583":3584,"3584":3585,"3585":3586,"3586":3587,"3587":3588,"3588":3589,"3589":3590,"3590":3591,"3591":3592,"3592":3593,"3593":3594,"3594":3595,"3595":3596,"3596":3597,"3597":3598,"3598":3599,"3599":3600,"3600":3601,"3601":3602,"3602":3603,"3603":3604,"3604":3605,"3605":3606,"3606":3607,"3607":3608,"3608":3609,"3609":3610,"3610":3611,"3611":3612,"3612":3613,"3613":3614,"3614":3615,"3615":3616,"3616":3617,"3617":3618,"3618":3619,"3619":3620,"3620":3621,"3621":3622,"3622":3623,"3623":3624,"3624":3625,"3625":3626,"3626":3627,"3627":3628,"3628":3629,"3629":3630,"3630":3631,"3631":3632,"3632":3633,"3633":3634,"3634":3635,"3635":3636,"3636":3637,"3637":3638,"3638":3639,"3639":3640,"3640":3641,"3641":3642,"3642":3643,"3643":3644,"3644":3645,"3645":3646,"3646":3647,"3647":3648,"3648":3649,"3649":3650,"3650":3651,"3651":3652,"3652":3653,"3653":3654,"3654":3655,"3655":3656,"3656":3657,"3657":3658,"3658":3659,"3659":3660,"3660":3661,"3661":3662,"3662":3663,"3663":3664,"3664":3665,"3665":3666,"3666":3667,"3667":3668,"3668":3669,"3669":3670,"3670":3671,"3671":3672,"3672":3673,"3673":3674,"3674":3675,"3675":3676,"3676":3677,"3677":3678,"3678":3679,"3679":3680,"3680":3681,"3681":3682,"3682":3683,"3683":3684,"3684":3685,"3685":3686,"3686":3687,"3687":3688,"3688":3689,"3689":3690,"3690":3691,"3691":3692,"3692":3693,"3693":3694,"3694":3695,"3695":3696,"3696":3697,"3697":3698,"3698":3699,"3699":3700,"3700":3701,"3701":3702,"3702":3703,"3703":3704,"3704":3705,"3705":3706,"3706":3707,"3707":3708,"3708":3709,"3709":3710,"3710":3711,"3711":3712,"3712":3713,"3713":3714,"3714":3715,"3715":3716,"3716":3717,"3717":3718,"3718":3719,"3719":3720,"3720":3721,"3721":3722,"3722":3723,"3723":3724,"3724":3725,"3725":3726,"3726":3727,"3727":3728,"3728":3729,"3729":3730,"3730":3731,"3731":3732,"3732":3733,"3733":3734,"3734":3735,"3735":3736,"3736":3737,"3737":3738,"3738":3739,"3739":3740,"3740":3741,"3741":3742,"3742":3743,"3743":3744,"3744":3745,"3745":3746,"3746":3747,"3747":3748,"3748":3749,"3749":3750,"3750":3751,"3751":3752,"3752":3753,"3753":3754,"3754":3755,"3755":3756,"3756":3757,"3757":3758,"3758":3759,"3759":3760,"3760":3761,"3761":3762,"3762":3763,"3763":3764,"3764":3765,"3765":3766,"3766":3767,"3767":3768,"3768":3769,"3769":3770,"3770":3771,"3771":3772,"3772":3773,"3773":3774,"3774":3775,"3775":3776,"3776":3777,"3777":3778,"3778":3779,"3779":3780,"3780":3781,"3781":3782,"3782":3783,"3783":3784,"3784":3785,"3785":3786,"3786":3787,"3787":3788,"3788":3789,"3789":3790,"3790":3791,"3791":3792,"3792":3793,"3793":3794,"3794":3795,"3795":3796,"3796":3797,"3797":3798,"3798":3799,"3799":3800,"3800":3801,"3801":3802,"3802":3803,"3803":3804,"3804":3805,"3805":3806,"3806":3807,"3807":3808,"3808":3809,"3809":3810,"3810":3811,"3811":3812,"3812":3813,"3813":3814,"3814":3815,"3815":3816,"3816":3817,"3817":3818,"3818":3819,"3819":3820,"3820":3821,"3821":3822,"3822":3823,"3823":3824,"3824":3825,"3825":3826,"3826":3827,"3827":3828,"3828":3829,"3829":3830,"3830":3831,"3831":3832,"3832":3833,"3833":3834,"3834":3835,"3835":3836,"3836":3837,"3837":3838,"3838":3839,"3839":3840,"3840":3841,"3841":3842,"3842":3843,"3843":3844,"3844":3845,"3845":3846,"3846":3847,"3847":3848,"3848":3849,"3849":3850,"3850":3851,"3851":3852,"3852":3853,"3853":3854,"3854":3855,"3855":3856,"3856":3857,"3857":3858,"3858":3859,"3859":3860,"3860":3861,"3861":3862,"3862":3863,"3863":3864,"3864":3865,"3865":3866,"3866":3867,"3867":3868,"3868":3869,"3869":3870,"3870":3871,"3871":3872,"3872":3873,"3873":3874,"3874":3875,"3875":3876,"3876":3877,"3877":3878,"3878":3879,"3879":3880,"3880":3881,"3881":3882,"3882":3883,"3883":3884,"3884":3885,"3885":3886,"3886":3887,"3887":3888,"3888":3889,"3889":3890,"3890":3891,"3891":3892,"3892":3893,"3893":3894,"3894":3895,"3895":3896,"3896":3897,"3897":3898,"3898":3899,"3899":3900,"3900":3901,"3901":3902,"3902":3903,"3903":3904,"3904":3905,"3905":3906,"3906":3907,"3907":3908,"3908":3909,"3909":3910,"3910":3911,"3911":3912,"3912":3913,"3913":3914,"3914":3915,"3915":3916,"3916":3917,"3917":3918,"3918":3919,"3919":3920,"3920":3921,"3921":3922,"3922":3923,"3923":3924,"3924":3925,"3925":3926,"3926":3927,"3927":3928,"3928":3929,"3929":3930,"3930":3931,"3931":3932,"3932":3933,"3933":3934,"3934":3935,"3935":3936,"3936":3937,"3937":3938,"3938":3939,"3939":3940,"3940":3941,"3941":3942,"3942":3943,"3943":3944,"3944":3945,"3945":3946,"3946":3947,"3947":3948,"3948":3949,"3949":3950,"3950":3951,"3951":3952,"3952":3953,"3953":3954,"3954":3955,"3955":3956,"3956":3957,"3957":3958,"3958":3959,"3959":3960,"3960":3961,"3961":3962,"3962":3963,"3963":3964,"3964":3965,"3965":3966,"3966":3967,"3967":3968,"3968":3969,"3969":3970,"3970":3971,"3971":3972,"3972":3973,"3973":3974,"3974":3975,"3975":3976,"3976":3977,"3977":3978,"3978":3979,"3979":3980,"3980":3981,"3981":3982,"3982":3983,"3983":3984,"3984":3985,"3985":3986,"3986":3987,"3987":3988,"3988":3989,"3989":3990,"3990":3991,"3991":3992,"3992":3993,"3993":3994,"3994":3995,"3995":3996,"3996":3997,"3997":3998,"3998":3999,"3999":4000,"4000":4001,"4001":4002,"4002":4003,"4003":4004,"4004":4005,"4005":4006,"4006":4007,"4007":4008,"4008":4009,"4009":4010,"4010":4011,"4011":4012,"4012":4013,"4013":4014,"4014":4015,"4015":4016,"4016":4017,"4017":4018,"4018":4019,"4019":4020,"4020":4021,"4021":4022,"4022":4023,"4023":4024,"4024":4025,"4025":4026,"4026":4027,"4027":4028,"4028":4029,"4029":4030,"4030":4031,"4031":4032,"4032":4033,"4033":4034,"4034":4035,"4035":4036,"4036":4037,"4037":4038,"4038":4039,"4039":4040,"4040":4041,"4041":4042,"4042":4043,"4043":4044,"4044":4045,"4045":4046,"4046":4047,"4047":4048,"4048":4049,"4049":4050,"4050":4051,"4051":4052,"4052":4053,"4053":4054,"4054":4055,"4055":4056,"4056":4057,"4057":4058,"4058":4059,"4059":4060,"4060":4061,"4061":4062,"4062":4063,"4063":4064,"4064":4065,"4065":4066,"4066":4067,"4067":4068,"4068":4069,"4069":4070,"4070":4071,"4071":4072,"4072":4073,"4073":4074,"4074":4075,"4075":4076,"4076":4077,"4077":4078,"4078":4079,"4079":4080,"4080":4081,"4081":4082,"4082":4083,"4083":4084,"4084":4085,"4085":4086,"4086":4087,"4087":4088,"4088":4089,"4089":4090,"4090":4091,"4091":4092,"4092":4093,"4093":4094,"4094":4095,"4095":4096,"4096":4097,"4097":4098,"4098":4099,"4099":4100,"4100":4101,"4101":4102,"4102":4103,"4103":4104,"4104":4105,"4105":4106,"4106":4107,"4107":4108,"4108":4109,"4109":4110,"4110":4111,"4111":4112,"4112":4113,"4113":4114,"4114":4115,"4115":4116,"4116":4117,"4117":4118,"4118":4119,"4119":4120,"4120":4121,"4121":4122,"4122":4123,"4123":4124,"4124":4125,"4125":4126,"4126":4127,"4127":4128,"4128":4129,"4129":4130,"4130":4131,"4131":4132,"4132":4133,"4133":4134,"4134":4135,"4135":4136,"4136":4137,"4137":4138,"4138":4139,"4139":4140,"4140":4141,"4141":4142,"4142":4143,"4143":4144,"4144":4145,"4145":4146,"4146":4147,"4147":4148,"4148":4149,"4149":4150,"4150":4151,"4151":4152,"4152":4153,"4153":4154,"4154":4155,"4155":4156,"4156":4157,"4157":4158,"4158":4159,"4159":4160,"4160":4161,"4161":4162,"4162":4163,"4163":4164,"4164":4165,"4165":4166,"4166":4167,"4167":4168,"4168":4169,"4169":4170,"4170":4171,"4171":4172,"4172":4173,"4173":4174,"4174":4175,"4175":4176,"4176":4177,"4177":4178,"4178":4179,"4179":4180,"4180":4181,"4181":4182,"4182":4183,"4183":4184,"4184":4185,"4185":4186,"4186":4187,"4187":4188,"4188":4189,"4189":4190,"4190":4191,"4191":4192,"4192":4193,"4193":4194,"4194":4195,"4195":4196,"4196":4197,"4197":4198,"4198":4199,"4199":4200,"4200":4201,"4201":4202,"4202":4203,"4203":4204,"4204":4205,"4205":4206,"4206":4207,"4207":4208,"4208":4209,"4209":4210,"4210":4211,"4211":4212,"4212":4213,"4213":4214,"4214":4215,"4215":4216,"4216":4217,"4217":4218,"4218":4219,"4219":4220,"4220":4221,"4221":4222,"4222":4223,"4223":4224,"4224":4225,"4225":4226,"4226":4227,"4227":4228,"4228":4229,"4229":4230,"4230":4231,"4231":4232,"4232":4233,"4233":4234,"4234":4235,"4235":4236,"4236":4237,"4237":4238,"4238":4239,"4239":4240,"4240":4241,"4241":4242,"4242":4243,"4243":4244,"4244":4245,"4245":4246,"4246":4247,"4247":4248,"4248":4249,"4249":4250,"4250":4251,"4251":4252,"4252":4253,"4253":4254,"4254":4255,"4255":4256,"4256":4257,"4257":4258,"4258":4259,"4259":4260,"4260":4261,"4261":4262,"4262":4263,"4263":4264,"4264":4265,"4265":4266,"4266":4267,"4267":4268,"4268":4269,"4269":4270,"4270":4271,"4271":4272,"4272":4273,"4273":4274,"4274":4275,"4275":4276,"4276":4277,"4277":4278,"4278":4279,"4279":4280,"4280":4281,"4281":4282,"4282":4283,"4283":4284,"4284":4285,"4285":4286,"4286":4287,"4287":4288,"4288":4289,"4289":4290,"4290":4291,"4291":4292,"4292":4293,"4293":4294,"4294":4295,"4295":4296,"4296":4297,"4297":4298,"4298":4299,"4299":4300,"4300":4301,"4301":4302,"4302":4303,"4303":4304,"4304":4305,"4305":4306,"4306":4307,"4307":4308,"4308":4309,"4309":4310,"4310":4311,"4311":4312,"4312":4313,"4313":4314,"4314":4315,"4315":4316,"4316":4317,"4317":4318,"4318":4319,"4319":4320,"4320":4321,"4321":4322,"4322":4323,"4323":4324,"4324":4325,"4325":4326,"4326":4327,"4327":4328,"4328":4329,"4329":4330,"4330":4331,"4331":4332,"4332":4333,"4333":4334,"4334":4335,"4335":4336,"4336":4337,"4337":4338,"4338":4339,"4339":4340,"4340":4341,"4341":4342,"4342":4343,"4343":4344,"4344":4345,"4345":4346,"4346":4347,"4347":4348,"4348":4349,"4349":4350,"4350":4351,"4351":4352,"4352":4353,"4353":4354,"4354":4355,"4355":4356,"4356":4357,"4357":4358,"4358":4359,"4359":4360,"4360":4361,"4361":4362,"4362":4363,"4363":4364,"4364":4365,"4365":4366,"4366":4367,"4367":4368,"4368":4369,"4369":4370,"4370":4371,"4371":4372,"4372":4373,"4373":4374,"4374":4375,"4375":4376,"4376":4377,"4377":4378,"4378":4379,"4379":4380,"4380":4381,"4381":4382,"4382":4383,"4383":4384,"4384":4385,"4385":4386,"4386":4387,"4387":4388,"4388":4389,"4389":4390,"4390":4391,"4391":4392,"4392":4393,"4393":4394,"4394":4395,"4395":4396,"4396":4397,"4397":4398,"4398":4399,"4399":4400,"4400":4401,"4401":4402,"4402":4403,"4403":4404,"4404":4405,"4405":4406,"4406":4407,"4407":4408,"4408":4409,"4409":4410,"4410":4411,"4411":4412,"4412":4413,"4413":4414,"4414":4415,"4415":4416,"4416":4417,"4417":4418,"4418":4419,"4419":4420,"4420":4421,"4421":4422,"4422":4423,"4423":4424,"4424":4425,"4425":4426,"4426":4427,"4427":4428,"4428":4429,"4429":4430,"4430":4431,"4431":4432,"4432":4433,"4433":4434,"4434":4435,"4435":4436,"4436":4437,"4437":4438,"4438":4439,"4439":4440,"4440":4441,"4441":4442,"4442":4443,"4443":4444,"4444":4445,"4445":4446,"4446":4447,"4447":4448,"4448":4449,"4449":4450,"4450":4451,"4451":4452,"4452":4453,"4453":4454,"4454":4455,"4455":4456,"4456":4457,"4457":4458,"4458":4459,"4459":4460,"4460":4461,"4461":4462,"4462":4463,"4463":4464,"4464":4465,"4465":4466,"4466":4467,"4467":4468,"4468":4469,"4469":4470,"4470":4471,"4471":4472,"4472":4473,"4473":4474,"4474":4475,"4475":4476,"4476":4477,"4477":4478,"4478":4479,"4479":4480,"4480":4481,"4481":4482,"4482":4483,"4483":4484,"4484":4485,"4485":4486,"4486":4487,"4487":4488,"4488":4489,"4489":4490,"4490":4491,"4491":4492,"4492":4493,"4493":4494,"4494":4495,"4495":4496,"4496":4497,"4497":4498,"4498":4499,"4499":4500,"4500":4501,"4501":4502,"4502":4503,"4503":4504,"4504":4505,"4505":4506,"4506":4507,"4507":4508,"4508":4509,"4509":4510,"4510":4511,"4511":4512,"4512":4513,"4513":4514,"4514":4515,"4515":4516,"4516":4517,"4517":4518,"4518":4519,"4519":4520,"4520":4521,"4521":4522,"4522":4523,"4523":4524,"4524":4525,"4525":4526,"4526":4527,"4527":4528,"4528":4529,"4529":4530,"4530":4531,"4531":4532,"4532":4533,"4533":4534,"4534":4535,"4535":4536,"4536":4537,"4537":4538,"4538":4539,"4539":4540,"4540":4541,"4541":4542,"4542":4543,"4543":4544,"4544":4545,"4545":4546,"4546":4547,"4547":4548,"4548":4549,"4549":4550,"4550":4551,"4551":4552,"4552":4553,"4553":4554,"4554":4555,"4555":4556,"4556":4557,"4557":4558,"4558":4559,"4559":4560,"4560":4561,"4561":4562,"4562":4563,"4563":4564,"4564":4565,"4565":4566,"4566":4567,"4567":4568,"4568":4569,"4569":4570,"4570":4571,"4571":4572,"4572":4573,"4573":4574,"4574":4575,"4575":4576,"4576":4577,"4577":4578,"4578":4579,"4579":4580,"4580":4581,"4581":4582,"4582":4583,"4583":4584,"4584":4585,"4585":4586,"4586":4587,"4587":4588,"4588":4589,"4589":4590,"4590":4591,"4591":4592,"4592":4593,"4593":4594,"4594":4595,"4595":4596,"4596":4597,"4597":4598,"4598":4599,"4599":4600,"4600":4601,"4601":4602,"4602":4603,"4603":4604,"4604":4605,"4605":4606,"4606":4607,"4607":4608,"4608":4609,"4609":4610,"4610":4611,"4611":4612,"4612":4613,"4613":4614,"4614":4615,"4615":4616,"4616":4617,"4617":4618,"4618":4619,"4619":4620,"4620":4621,"4621":4622,"4622":4623,"4623":4624,"4624":4625,"4625":4626,"4626":4627,"4627":4628,"4628":4629,"4629":4630,"4630":4631,"4631":4632,"4632":4633,"4633":4634,"4634":4635,"4635":4636,"4636":4637,"4637":4638,"4638":4639,"4639":4640,"4640":4641,"4641":4642,"4642":4643,"4643":4644,"4644":4645,"4645":4646,"4646":4647,"4647":4648,"4648":4649,"4649":4650,"4650":4651,"4651":4652,"4652":4653,"4653":4654,"4654":4655,"4655":4656,"4656":4657,"4657":4658,"4658":4659,"4659":4660,"4660":4661,"4661":4662,"4662":4663,"4663":4664,"4664":4665,"4665":4666,"4666":4667,"4667":4668,"4668":4669,"4669":4670,"4670":4671,"4671":4672,"4672":4673,"4673":4674,"4674":4675,"4675":4676,"4676":4677,"4677":4678,"4678":4679,"4679":4680,"4680":4681,"4681":4682,"4682":4683,"4683":4684,"4684":4685,"4685":4686,"4686":4687,"4687":4688,"4688":4689,"4689":4690,"4690":4691,"4691":4692,"4692":4693,"4693":4694,"4694":4695,"4695":4696,"4696":4697,"4697":4698,"4698":4699,"4699":4700,"4700":4701,"4701":4702,"4702":4703,"4703":4704,"4704":4705,"4705":4706,"4706":4707,"4707":4708,"4708":4709,"4709":4710,"4710":4711,"4711":4712,"4712":4713,"4713":4714,"4714":4715,"4715":4716,"4716":4717,"4717":4718,"4718":4719,"4719":4720,"4720":4721,"4721":4722,"4722":4723,"4723":4724,"4724":4725,"4725":4726,"4726":4727,"4727":4728,"4728":4729,"4729":4730,"4730":4731,"4731":4732,"4732":4733,"4733":4734,"4734":4735,"4735":4736,"4736":4737,"4737":4738,"4738":4739,"4739":4740,"4740":4741,"4741":4742,"4742":4743,"4743":4744,"4744":4745,"4745":4746,"4746":4747,"4747":4748,"4748":4749,"4749":4750,"4750":4751,"4751":4752,"4752":4753,"4753":4754,"4754":4755,"4755":4756,"4756":4757,"4757":4758,"4758":4759,"4759":4760,"4760":4761,"4761":4762,"4762":4763,"4763":4764,"4764":4765,"4765":4766,"4766":4767,"4767":4768,"4768":4769,"4769":4770,"4770":4771,"4771":4772,"4772":4773,"4773":4774,"4774":4775,"4775":4776,"4776":4777,"4777":4778,"4778":4779,"4779":4780,"4780":4781,"4781":4782,"4782":4783,"4783":4784,"4784":4785,"4785":4786,"4786":4787,"4787":4788,"4788":4789,"4789":4790,"4790":4791,"4791":4792,"4792":4793,"4793":4794,"4794":4795,"4795":4796,"4796":4797,"4797":4798,"4798":4799,"4799":4800,"4800":4801,"4801":4802,"4802":4803,"4803":4804,"4804":4805,"4805":4806,"4806":4807,"4807":4808,"4808":4809,"4809":4810,"4810":4811,"4811":4812,"4812":4813,"4813":4814,"4814":4815,"4815":4816,"4816":4817,"4817":4818,"4818":4819,"4819":4820,"4820":4821,"4821":4822,"4822":4823,"4823":4824,"4824":4825,"4825":4826,"4826":4827,"4827":4828,"4828":4829,"4829":4830,"4830":4831,"4831":4832,"4832":4833,"4833":4834,"4834":4835,"4835":4836,"4836":4837,"4837":4838,"4838":4839,"4839":4840,"4840":4841,"4841":4842,"4842":4843,"4843":4844,"4844":4845,"4845":4846,"4846":4847,"4847":4848,"4848":4849,"4849":4850,"4850":4851,"4851":4852,"4852":4853,"4853":4854,"4854":4855,"4855":4856,"4856":4857,"4857":4858,"4858":4859,"4859":4860,"4860":4861,"4861":4862,"4862":4863,"4863":4864,"4864":4865,"4865":4866,"4866":4867,"4867":4868,"4868":4869,"4869":4870,"4870":4871,"4871":4872,"4872":4873,"4873":4874,"4874":4875,"4875":4876,"4876":4877,"4877":4878,"4878":4879,"4879":4880,"4880":4881,"4881":4882,"4882":4883,"4883":4884,"4884":4885,"4885":4886,"4886":4887,"4887":4888,"4888":4889,"4889":4890,"4890":4891,"4891":4892,"4892":4893,"4893":4894,"4894":4895,"4895":4896,"4896":4897,"4897":4898,"4898":4899,"4899":4900,"4900":4901,"4901":4902,"4902":4903,"4903":4904,"4904":4905,"4905":4906,"4906":4907,"4907":4908,"4908":4909,"4909":4910,"4910":4911,"4911":4912,"4912":4913,"4913":4914,"4914":4915,"4915":4916,"4916":4917,"4917":4918,"4918":4919,"4919":4920,"4920":4921,"4921":4922,"4922":4923,"4923":4924,"4924":4925,"4925":4926,"4926":4927,"4927":4928,"4928":4929,"4929":4930,"4930":4931,"4931":4932,"4932":4933,"4933":4934,"4934":4935,"4935":4936,"4936":4937,"4937":4938,"4938":4939,"4939":4940,"4940":4941,"4941":4942,"4942":4943,"4943":4944,"4944":4945,"4945":4946,"4946":4947,"4947":4948,"4948":4949,"4949":4950,"4950":4951,"4951":4952,"4952":4953,"4953":4954,"4954":4955,"4955":4956,"4956":4957,"4957":4958,"4958":4959,"4959":4960,"4960":4961,"4961":4962,"4962":4963,"4963":4964,"4964":4965,"4965":4966,"4966":4967,"4967":4968,"4968":4969,"4969":4970,"4970":4971,"4971":4972,"4972":4973,"4973":4974,"4974":4975,"4975":4976,"4976":4977,"4977":4978,"4978":4979,"4979":4980,"4980":4981,"4981":4982,"4982":4983,"4983":4984,"4984":4985,"4985":4986,"4986":4987,"4987":4988,"4988":4989,"4989":4990,"4990":4991,"4991":4992,"4992":4993,"4993":4994,"4994":4995,"4995":4996,"4996":4997,"4997":4998,"4998":4999,"4999":5000,"5000":5001,"5001":5002,"5002":5003,"5003":5004,"5004":5005,"5005":5006,"5006":5007,"5007":5008,"5008":5009,"5009":5010,"5010":5011,"5011":5012,"5012":5013,"5013":5014,"5014":5015,"5015":5016,"5016":5017,"5017":5018,"5018":5019,"5019":5020,"5020":5021,"5021":5022,"5022":5023,"5023":5024,"5024":5025,"5025":5026,"5026":5027,"5027":5028,"5028":5029,"5029":5030,"5030":5031,"5031":5032,"5032":5033,"5033":5034,"5034":5035,"5035":5036,"5036":5037,"5037":5038,"5038":5039,"5039":5040,"5040":5041,"5041":5042,"5042":5043,"5043":5044,"5044":5045,"5045":5046,"5046":5047,"5047":5048,"5048":5049,"5049":5050,"5050":5051,"5051":5052,"5052":5053,"5053":5054,"5054":5055,"5055":5056,"5056":5057,"5057":5058,"5058":5059,"5059":5060,"5060":5061,"5061":5062,"5062":5063,"5063":5064,"5064":5065,"5065":5066,"5066":5067,"5067":5068,"5068":5069,"5069":5070,"5070":5071,"5071":5072,"5072":5073,"5073":5074,"5074":5075,"5075":5076,"5076":5077,"5077":5078,"5078":5079,"5079":5080,"5080":5081,"5081":5082,"5082":5083,"5083":5084,"5084":5085,"5085":5086,"5086":5087,"5087":5088,"5088":5089,"5089":5090,"5090":5091,"5091":5092,"5092":5093,"5093":5094,"5094":5095,"5095":5096,"5096":5097,"5097":5098,"5098":5099,"5099":5100,"5100":5101,"5101":5102,"5102":5103,"5103":5104,"5104":5105,"5105":5106,"5106":5107,"5107":5108,"5108":5109,"5109":5110,"5110":5111,"5111":5112,"5112":5113,"5113":5114,"5114":5115,"5115":5116,"5116":5117,"5117":5118,"5118":5119,"5119":5120,"5120":5121,"5121":5122,"5122":5123,"5123":5124,"5124":5125,"5125":5126,"5126":5127,"5127":5128,"5128":5129,"5129":5130,"5130":5131,"5131":5132,"5132":5133,"5133":5134,"5134":5135,"5135":5136,"5136":5137,"5137":5138,"5138":5139,"5139":5140,"5140":5141,"5141":5142,"5142":5143,"5143":5144,"5144":5145,"5145":5146,"5146":5147,"5147":5148,"5148":5149,"5149":5150,"5150":5151,"5151":5152,"5152":5153,"5153":5154,"5154":5155,"5155":5156,"5156":5157,"5157":5158,"5158":5159,"5159":5160,"5160":5161,"5161":5162,"5162":5163,"5163":5164,"5164":5165,"5165":5166,"5166":5167,"5167":5168,"5168":5169,"5169":5170,"5170":5171,"5171":5172,"5172":5173,"5173":5174,"5174":5175,"5175":5176,"5176":5177,"5177":5178,"5178":5179,"5179":5180,"5180":5181,"5181":5182,"5182":5183,"5183":5184,"5184":5185,"5185":5186,"5186":5187,"5187":5188,"5188":5189,"5189":5190,"5190":5191,"5191":5192,"5192":5193,"5193":5194,"5194":5195,"5195":5196,"5196":5197,"5197":5198,"5198":5199,"5199":5200,"5200":5201,"5201":5202,"5202":5203,"5203":5204,"5204":5205,"5205":5206,"5206":5207,"5207":5208,"5208":5209,"5209":5210,"5210":5211,"5211":5212,"5212":5213,"5213":5214,"5214":5215,"5215":5216,"5216":5217,"5217":5218,"5218":5219,"5219":5220,"5220":5221,"5221":5222,"5222":5223,"5223":5224,"5224":5225,"5225":5226,"5226":5227,"5227":5228,"5228":5229,"5229":5230,"5230":5231,"5231":5232,"5232":5233,"5233":5234,"5234":5235,"5235":5236,"5236":5237,"5237":5238,"5238":5239,"5239":5240,"5240":5241,"5241":5242,"5242":5243,"5243":5244,"5244":5245,"5245":5246,"5246":5247,"5247":5248,"5248":5249,"5249":5250,"5250":5251,"5251":5252,"5252":5253,"5253":5254,"5254":5255,"5255":5256,"5256":5257,"5257":5258,"5258":5259,"5259":5260,"5260":5261,"5261":5262,"5262":5263,"5263":5264,"5264":5265,"5265":5266,"5266":5267,"5267":5268,"5268":5269,"5269":5270,"5270":5271,"5271":5272,"5272":5273,"5273":5274,"5274":5275,"5275":5276,"5276":5277,"5277":5278,"5278":5279,"5279":5280,"5280":5281,"5281":5282,"5282":5283,"5283":5284,"5284":5285,"5285":5286,"5286":5287,"5287":5288,"5288":5289,"5289":5290,"5290":5291,"5291":5292,"5292":5293,"5293":5294,"5294":5295,"5295":5296,"5296":5297,"5297":5298,"5298":5299,"5299":5300,"5300":5301,"5301":5302,"5302":5303,"5303":5304,"5304":5305,"5305":5306,"5306":5307,"5307":5308,"5308":5309,"5309":5310,"5310":5311,"5311":5312,"5312":5313,"5313":5314,"5314":5315,"5315":5316,"5316":5317,"5317":5318,"5318":5319,"5319":5320,"5320":5321,"5321":5322,"5322":5323,"5323":5324,"5324":5325,"5325":5326,"5326":5327,"5327":5328,"5328":5329,"5329":5330,"5330":5331,"5331":5332,"5332":5333,"5333":5334,"5334":5335,"5335":5336,"5336":5337,"5337":5338,"5338":5339,"5339":5340,"5340":5341,"5341":5342,"5342":5343,"5343":5344,"5344":5345,"5345":5346,"5346":5347,"5347":5348,"5348":5349,"5349":5350,"5350":5351,"5351":5352,"5352":5353,"5353":5354,"5354":5355,"5355":5356,"5356":5357,"5357":5358,"5358":5359,"5359":5360,"5360":5361,"5361":5362,"5362":5363,"5363":5364,"5364":5365,"5365":5366,"5366":5367,"5367":5368,"5368":5369,"5369":5370,"5370":5371,"5371":5372,"5372":5373,"5373":5374,"5374":5375,"5375":5376,"5376":5377,"5377":5378,"5378":5379,"5379":5380,"5380":5381,"5381":5382,"5382":5383,"5383":5384,"5384":5385,"5385":5386,"5386":5387,"5387":5388,"5388":5389,"5389":5390,"5390":5391,"5391":5392,"5392":5393,"5393":5394,"5394":5395,"5395":5396,"5396":5397,"5397":5398,"5398":5399,"5399":5400,"5400":5401,"5401":5402,"5402":5403,"5403":5404,"5404":5405,"5405":5406,"5406":5407,"5407":5408,"5408":5409,"5409":5410,"5410":5411,"5411":5412,"5412":5413,"5413":5414,"5414":5415,"5415":5416,"5416":5417,"5417":5418,"5418":5419,"5419":5420,"5420":5421,"5421":5422,"5422":5423,"5423":5424,"5424":5425,"5425":5426,"5426":5427,"5427":5428,"5428":5429,"5429":5430,"5430":5431,"5431":5432,"5432":5433,"5433":5434,"5434":5435,"5435":5436,"5436":5437,"5437":5438,"5438":5439,"5439":5440,"5440":5441,"5441":5442,"5442":5443,"5443":5444,"5444":5445,"5445":5446,"5446":5447,"5447":5448,"5448":5449,"5449":5450,"5450":5451,"5451":5452,"5452":5453,"5453":5454,"5454":5455,"5455":5456,"5456":5457,"5457":5458,"5458":5459,"5459":5460,"5460":5461,"5461":5462,"5462":5463,"5463":5464,"5464":5465,"5465":5466,"5466":5467,"5467":5468,"5468":5469,"5469":5470,"5470":5471,"5471":5472,"5472":5473,"5473":5474,"5474":5475,"5475":5476,"5476":5477,"5477":5478,"5478":5479,"5479":5480,"5480":5481,"5481":5482,"5482":5483,"5483":5484,"5484":5485,"5485":5486,"5486":5487,"5487":5488,"5488":5489,"5489":5490,"5490":5491,"5491":5492,"5492":5493,"5493":5494,"5494":5495,"5495":5496,"5496":5497,"5497":5498,"5498":5499,"5499":5500,"5500":5501,"5501":5502,"5502":5503,"5503":5504,"5504":5505,"5505":5506,"5506":5507,"5507":5508,"5508":5509,"5509":5510,"5510":5511,"5511":5512,"5512":5513,"5513":5514,"5514":5515,"5515":5516,"5516":5517,"5517":5518,"5518":5519,"5519":5520,"5520":5521,"5521":5522,"5522":5523,"5523":5524,"5524":5525,"5525":5526,"5526":5527,"5527":5528,"5528":5529,"5529":5530,"5530":5531,"5531":5532,"5532":5533,"5533":5534,"5534":5535,"5535":5536,"5536":5537,"5537":5538,"5538":5539,"5539":5540,"5540":5541,"5541":5542,"5542":5543,"5543":5544,"5544":5545,"5545":5546,"5546":5547,"5547":5548,"5548":5549,"5549":5550,"5550":5551,"5551":5552,"5552":5553,"5553":5554,"5554":5555,"5555":5556,"5556":5557,"5557":5558,"5558":5559,"5559":5560,"5560":5561,"5561":5562,"5562":5563,"5563":5564,"5564":5565,"5565":5566,"5566":5567,"5567":5568,"5568":5569,"5569":5570,"5570":5571,"5571":5572,"5572":5573,"5573":5574,"5574":5575,"5575":5576,"5576":5577,"5577":5578,"5578":5579,"5579":5580,"5580":5581,"5581":5582,"5582":5583,"5583":5584,"5584":5585,"5585":5586,"5586":5587,"5587":5588,"5588":5589,"5589":5590,"5590":5591,"5591":5592,"5592":5593,"5593":5594,"5594":5595,"5595":5596,"5596":5597,"5597":5598,"5598":5599,"5599":5600,"5600":5601,"5601":5602,"5602":5603,"5603":5604,"5604":5605,"5605":5606,"5606":5607,"5607":5608,"5608":5609,"5609":5610,"5610":5611,"5611":5612,"5612":5613,"5613":5614,"5614":5615,"5615":5616,"5616":5617,"5617":5618,"5618":5619,"5619":5620,"5620":5621,"5621":5622,"5622":5623,"5623":5624,"5624":5625,"5625":5626,"5626":5627,"5627":5628,"5628":5629,"5629":5630,"5630":5631,"5631":5632,"5632":5633,"5633":5634,"5634":5635,"5635":5636,"5636":5637,"5637":5638,"5638":5639,"5639":5640,"5640":5641,"5641":5642,"5642":5643,"5643":5644,"5644":5645,"5645":5646,"5646":5647,"5647":5648,"5648":5649,"5649":5650,"5650":5651,"5651":5652,"5652":5653,"5653":5654,"5654":5655,"5655":5656,"5656":5657,"5657":5658,"5658":5659,"5659":5660,"5660":5661,"5661":5662,"5662":5663,"5663":5664,"5664":5665,"5665":5666,"5666":5667,"5667":5668,"5668":5669,"5669":5670,"5670":5671,"5671":5672,"5672":5673,"5673":5674,"5674":5675,"5675":5676,"5676":5677,"5677":5678,"5678":5679,"5679":5680,"5680":5681,"5681":5682,"5682":5683,"5683":5684,"5684":5685,"5685":5686,"5686":5687,"5687":5688,"5688":5689,"5689":5690,"5690":5691,"5691":5692,"5692":5693,"5693":5694,"5694":5695,"5695":5696,"5696":5697,"5697":5698,"5698":5699,"5699":5700,"5700":5701,"5701":5702,"5702":5703,"5703":5704,"5704":5705,"5705":5706,"5706":5707,"5707":5708,"5708":5709,"5709":5710,"5710":5711,"5711":5712,"5712":5713,"5713":5714,"5714":5715,"5715":5716,"5716":5717,"5717":5718,"5718":5719,"5719":5720,"5720":5721,"5721":5722,"5722":5723,"5723":5724,"5724":5725,"5725":5726,"5726":5727,"5727":5728,"5728":5729,"5729":5730,"5730":5731,"5731":5732,"5732":5733,"5733":5734,"5734":5735,"5735":5736,"5736":5737,"5737":5738,"5738":5739,"5739":5740,"5740":5741,"5741":5742,"5742":5743,"5743":5744,"5744":5745,"5745":5746,"5746":5747,"5747":5748,"5748":5749,"5749":5750,"5750":5751,"5751":5752,"5752":5753,"5753":5754,"5754":5755,"5755":5756,"5756":5757,"5757":5758,"5758":5759,"5759":5760,"5760":5761,"5761":5762,"5762":5763,"5763":5764,"5764":5765,"5765":5766,"5766":5767,"5767":5768,"5768":5769,"5769":5770,"5770":5771,"5771":5772,"5772":5773,"5773":5774,"5774":5775,"5775":5776,"5776":5777,"5777":5778,"5778":5779,"5779":5780,"5780":5781,"5781":5782,"5782":5783,"5783":5784,"5784":5785,"5785":5786,"5786":5787,"5787":5788,"5788":5789,"5789":5790,"5790":5791,"5791":5792,"5792":5793,"5793":5794,"5794":5795,"5795":5796,"5796":5797,"5797":5798,"5798":5799,"5799":5800,"5800":5801,"5801":5802,"5802":5803,"5803":5804,"5804":5805,"5805":5806,"5806":5807,"5807":5808,"5808":5809,"5809":5810,"5810":5811,"5811":5812,"5812":5813,"5813":5814,"5814":5815,"5815":5816,"5816":5817,"5817":5818,"5818":5819,"5819":5820,"5820":5821,"5821":5822,"5822":5823,"5823":5824,"5824":5825,"5825":5826,"5826":5827,"5827":5828,"5828":5829,"5829":5830,"5830":5831,"5831":5832,"5832":5833,"5833":5834,"5834":5835,"5835":5836,"5836":5837,"5837":5838,"5838":5839,"5839":5840,"5840":5841,"5841":5842,"5842":5843,"5843":5844,"5844":5845,"5845":5846,"5846":5847,"5847":5848,"5848":5849,"5849":5850,"5850":5851,"5851":5852,"5852":5853,"5853":5854,"5854":5855,"5855":5856,"5856":5857,"5857":5858,"5858":5859,"5859":5860,"5860":5861,"5861":5862,"5862":5863,"5863":5864,"5864":5865,"5865":5866,"5866":5867,"5867":5868,"5868":5869,"5869":5870,"5870":5871,"5871":5872,"5872":5873,"5873":5874,"5874":5875,"5875":5876,"5876":5877,"5877":5878,"5878":5879,"5879":5880,"5880":5881,"5881":5882,"5882":5883,"5883":5884,"5884":5885,"5885":5886,"5886":5887,"5887":5888,"5888":5889,"5889":5890,"5890":5891,"5891":5892,"5892":5893,"5893":5894,"5894":5895,"5895":5896,"5896":5897,"5897":5898,"5898":5899,"5899":5900,"5900":5901,"5901":5902,"5902":5903,"5903":5904,"5904":5905,"5905":5906,"5906":5907,"5907":5908,"5908":5909,"5909":5910,"5910":5911,"5911":5912,"5912":5913,"5913":5914,"5914":5915,"5915":5916,"5916":5917,"5917":5918,"5918":5919,"5919":5920,"5920":5921,"5921":5922,"5922":5923,"5923":5924,"5924":5925,"5925":5926,"5926":5927,"5927":5928,"5928":5929,"5929":5930,"5930":5931,"5931":5932,"5932":5933,"5933":5934,"5934":5935,"5935":5936,"5936":5937,"5937":5938,"5938":5939,"5939":5940,"5940":5941,"5941":5942,"5942":5943,"5943":5944,"5944":5945,"5945":5946,"5946":5947,"5947":5948,"5948":5949,"5949":5950,"5950":5951,"5951":5952,"5952":5953,"5953":5954,"5954":5955,"5955":5956,"5956":5957,"5957":5958,"5958":5959,"5959":5960,"5960":5961,"5961":5962,"5962":5963,"5963":5964,"5964":5965,"5965":5966,"5966":5967,"5967":5968,"5968":5969,"5969":5970,"5970":5971,"5971":5972,"5972":5973,"5973":5974,"5974":5975,"5975":5976,"5976":5977,"5977":5978,"5978":5979,"5979":5980,"5980":5981,"5981":5982,"5982":5983,"5983":5984,"5984":5985,"5985":5986,"5986":5987,"5987":5988,"5988":5989,"5989":5990,"5990":5991,"5991":5992,"5992":5993,"5993":5994,"5994":5995,"5995":5996,"5996":5997,"5997":5998,"5998":5999,"5999":6000,"6000":6001,"6001":6002,"6002":6003,"6003":6004,"6004":6005,"6005":6006,"6006":6007,"6007":6008,"6008":6009,"6009":6010,"6010":6011,"6011":6012,"6012":6013,"6013":6014,"6014":6015,"6015":6016,"6016":6017,"6017":6018,"6018":6019,"6019":6020,"6020":6021,"6021":6022,"6022":6023,"6023":6024,"6024":6025,"6025":6026,"6026":6027,"6027":6028,"6028":6029,"6029":6030,"6030":6031,"6031":6032,"6032":6033,"6033":6034,"6034":6035,"6035":6036,"6036":6037,"6037":6038,"6038":6039,"6039":6040,"6040":6041,"6041":6042,"6042":6043,"6043":6044,"6044":6045,"6045":6046,"6046":6047,"6047":6048,"6048":6049,"6049":6050,"6050":6051,"6051":6052,"6052":6053,"6053":6054,"6054":6055,"6055":6056,"6056":6057,"6057":6058,"6058":6059,"6059":6060,"6060":6061,"6061":6062,"6062":6063,"6063":6064,"6064":6065,"6065":6066,"6066":6067,"6067":6068,"6068":6069,"6069":6070,"6070":6071,"6071":6072,"6072":6073,"6073":6074,"6074":6075,"6075":6076,"6076":6077,"6077":6078,"6078":6079,"6079":6080,"6080":6081,"6081":6082,"6082":6083,"6083":6084,"6084":6085,"6085":6086,"6086":6087,"6087":6088,"6088":6089,"6089":6090,"6090":6091,"6091":6092,"6092":6093,"6093":6094,"6094":6095,"6095":6096,"6096":6097,"6097":6098,"6098":6099,"6099":6100,"6100":6101,"6101":6102,"6102":6103,"6103":6104,"6104":6105,"6105":6106,"6106":6107,"6107":6108,"6108":6109,"6109":6110,"6110":6111,"6111":6112,"6112":6113,"6113":6114,"6114":6115,"6115":6116,"6116":6117,"6117":6118,"6118":6119,"6119":6120,"6120":6121,"6121":6122,"6122":6123,"6123":6124,"6124":6125,"6125":6126,"6126":6127,"6127":6128,"6128":6129,"6129":6130,"6130":6131,"6131":6132,"6132":6133,"6133":6134,"6134":6135,"6135":6136,"6136":6137,"6137":6138,"6138":6139,"6139":6140,"6140":6141,"6141":6142,"6142":6143,"6143":6144,"6144":6145,"6145":6146,"6146":6147,"6147":6148,"6148":6149,"6149":6150,"6150":6151,"6151":6152,"6152":6153,"6153":6154,"6154":6155,"6155":6156,"6156":6157,"6157":6158,"6158":6159,"6159":6160,"6160":6161,"6161":6162,"6162":6163,"6163":6164,"6164":6165,"6165":6166,"6166":6167,"6167":6168,"6168":6169,"6169":6170,"6170":6171,"6171":6172,"6172":6173,"6173":6174,"6174":6175,"6175":6176,"6176":6177,"6177":6178,"6178":6179,"6179":6180,"6180":6181,"6181":6182,"6182":6183,"6183":6184,"6184":6185,"6185":6186,"6186":6187,"6187":6188,"6188":6189,"6189":6190,"6190":6191,"6191":6192,"6192":6193,"6193":6194,"6194":6195,"6195":6196,"6196":6197,"6197":6198,"6198":6199,"6199":6200,"6200":6201,"6201":6202,"6202":6203,"6203":6204,"6204":6205,"6205":6206,"6206":6207,"6207":6208,"6208":6209,"6209":6210,"6210":6211,"6211":6212,"6212":6213,"6213":6214,"6214":6215,"6215":6216,"6216":6217,"6217":6218,"6218":6219,"6219":6220,"6220":6221,"6221":6222,"6222":6223,"6223":6224,"6224":6225,"6225":6226,"6226":6227,"6227":6228,"6228":6229,"6229":6230,"6230":6231,"6231":6232,"6232":6233,"6233":6234,"6234":6235,"6235":6236,"6236":6237,"6237":6238,"6238":6239,"6239":6240,"6240":6241,"6241":6242,"6242":6243,"6243":6244,"6244":6245,"6245":6246,"6246":6247,"6247":6248,"6248":6249,"6249":6250,"6250":6251,"6251":6252,"6252":6253,"6253":6254,"6254":6255,"6255":6256,"6256":6257,"6257":6258,"6258":6259,"6259":6260,"6260":6261,"6261":6262,"6262":6263,"6263":6264,"6264":6265,"6265":6266,"6266":6267,"6267":6268,"6268":6269,"6269":6270,"6270":6271,"6271":6272,"6272":6273,"6273":6274,"6274":6275,"6275":6276,"6276":6277,"6277":6278,"6278":6279,"6279":6280,"6280":6281,"6281":6282,"6282":6283,"6283":6284,"6284":6285,"6285":6286,"6286":6287,"6287":6288,"6288":6289,"6289":6290,"6290":6291,"6291":6292,"6292":6293,"6293":6294,"6294":6295,"6295":6296,"6296":6297,"6297":6298,"6298":6299,"6299":6300,"6300":6301,"6301":6302,"6302":6303,"6303":6304,"6304":6305,"6305":6306,"6306":6307,"6307":6308,"6308":6309,"6309":6310,"6310":6311,"6311":6312,"6312":6313,"6313":6314,"6314":6315,"6315":6316,"6316":6317,"6317":6318,"6318":6319,"6319":6320,"6320":6321,"6321":6322,"6322":6323,"6323":6324,"6324":6325,"6325":6326,"6326":6327,"6327":6328,"6328":6329,"6329":6330,"6330":6331,"6331":6332,"6332":6333,"6333":6334,"6334":6335,"6335":6336,"6336":6337,"6337":6338,"6338":6339,"6339":6340,"6340":6341,"6341":6342,"6342":6343,"6343":6344,"6344":6345,"6345":6346,"6346":6347,"6347":6348,"6348":6349,"6349":6350,"6350":6351,"6351":6352,"6352":6353,"6353":6354,"6354":6355,"6355":6356,"6356":6357,"6357":6358,"6358":6359,"6359":6360,"6360":6361,"6361":6362,"6362":6363,"6363":6364,"6364":6365,"6365":6366,"6366":6367,"6367":6368,"6368":6369,"6369":6370,"6370":6371,"6371":6372,"6372":6373,"6373":6374,"6374":6375,"6375":6376,"6376":6377,"6377":6378,"6378":6379,"6379":6380,"6380":6381,"6381":6382,"6382":6383,"6383":6384,"6384":6385,"6385":6386,"6386":6387,"6387":6388,"6388":6389,"6389":6390,"6390":6391,"6391":6392,"6392":6393,"6393":6394,"6394":6395,"6395":6396,"6396":6397,"6397":6398,"6398":6399,"6399":6400,"6400":6401,"6401":6402,"6402":6403,"6403":6404,"6404":6405,"6405":6406,"6406":6407,"6407":6408,"6408":6409,"6409":6410,"6410":6411,"6411":6412,"6412":6413,"6413":6414,"6414":6415,"6415":6416,"6416":6417,"6417":6418,"6418":6419,"6419":6420,"6420":6421,"6421":6422,"6422":6423,"6423":6424,"6424":6425,"6425":6426,"6426":6427,"6427":6428,"6428":6429,"6429":6430,"6430":6431,"6431":6432,"6432":6433,"6433":6434,"6434":6435,"6435":6436,"6436":6437,"6437":6438,"6438":6439,"6439":6440,"6440":6441,"6441":6442,"6442":6443,"6443":6444,"6444":6445,"6445":6446,"6446":6447,"6447":6448,"6448":6449,"6449":6450,"6450":6451,"6451":6452,"6452":6453,"6453":6454,"6454":6455,"6455":6456,"6456":6457,"6457":6458,"6458":6459,"6459":6460,"6460":6461,"6461":6462,"6462":6463,"6463":6464,"6464":6465,"6465":6466,"6466":6467,"6467":6468,"6468":6469,"6469":6470,"6470":6471,"6471":6472,"6472":6473,"6473":6474,"6474":6475,"6475":6476,"6476":6477,"6477":6478,"6478":6479,"6479":6480,"6480":6481,"6481":6482,"6482":6483,"6483":6484,"6484":6485,"6485":6486,"6486":6487,"6487":6488,"6488":6489,"6489":6490,"6490":6491,"6491":6492,"6492":6493,"6493":6494,"6494":6495,"6495":6496,"6496":6497,"6497":6498,"6498":6499,"6499":6500,"6500":6501,"6501":6502,"6502":6503,"6503":6504,"6504":6505,"6505":6506,"6506":6507,"6507":6508,"6508":6509,"6509":6510,"6510":6511,"6511":6512,"6512":6513,"6513":6514,"6514":6515,"6515":6516,"6516":6517,"6517":6518,"6518":6519,"6519":6520,"6520":6521,"6521":6522,"6522":6523,"6523":6524,"6524":6525,"6525":6526,"6526":6527,"6527":6528,"6528":6529,"6529":6530,"6530":6531,"6531":6532,"6532":6533,"6533":6534,"6534":6535,"6535":6536,"6536":6537,"6537":6538,"6538":6539,"6539":6540,"6540":6541,"6541":6542,"6542":6543,"6543":6544,"6544":6545,"6545":6546,"6546":6547,"6547":6548,"6548":6549,"6549":6550,"6550":6551,"6551":6552,"6552":6553,"6553":6554,"6554":6555,"6555":6556,"6556":6557,"6557":6558,"6558":6559,"6559":6560,"6560":6561,"6561":6562,"6562":6563,"6563":6564,"6564":6565,"6565":6566,"6566":6567,"6567":6568,"6568":6569,"6569":6570,"6570":6571,"6571":6572,"6572":6573,"6573":6574,"6574":6575,"6575":6576,"6576":6577,"6577":6578,"6578":6579,"6579":6580,"6580":6581,"6581":6582,"6582":6583,"6583":6584,"6584":6585,"6585":6586,"6586":6587,"6587":6588,"6588":6589,"6589":6590,"6590":6591,"6591":6592,"6592":6593,"6593":6594,"6594":6595,"6595":6596,"6596":6597,"6597":6598,"6598":6599,"6599":6600,"6600":6601,"6601":6602,"6602":6603,"6603":6604,"6604":6605,"6605":6606,"6606":6607,"6607":6608,"6608":6609,"6609":6610,"6610":6611,"6611":6612,"6612":6613,"6613":6614,"6614":6615,"6615":6616,"6616":6617,"6617":6618,"6618":6619,"6619":6620,"6620":6621,"6621":6622,"6622":6623,"6623":6624,"6624":6625,"6625":6626,"6626":6627,"6627":6628,"6628":6629,"6629":6630,"6630":6631,"6631":6632,"6632":6633,"6633":6634,"6634":6635,"6635":6636,"6636":6637,"6637":6638,"6638":6639,"6639":6640,"6640":6641,"6641":6642,"6642":6643,"6643":6644,"6644":6645,"6645":6646,"6646":6647,"6647":6648,"6648":6649,"6649":6650,"6650":6651,"6651":6652,"6652":6653,"6653":6654,"6654":6655,"6655":6656,"6656":6657,"6657":6658,"6658":6659,"6659":6660,"6660":6661,"6661":6662,"6662":6663,"6663":6664,"6664":6665,"6665":6666,"6666":6667,"6667":6668,"6668":6669,"6669":6670,"6670":6671,"6671":6672,"6672":6673,"6673":6674,"6674":6675,"6675":6676,"6676":6677,"6677":6678,"6678":6679,"6679":6680,"6680":6681,"6681":6682,"6682":6683,"6683":6684,"6684":6685,"6685":6686,"6686":6687,"6687":6688,"6688":6689,"6689":6690,"6690":6691,"6691":6692,"6692":6693,"6693":6694,"6694":6695,"6695":6696,"6696":6697,"6697":6698,"6698":6699,"6699":6700,"6700":6701,"6701":6702,"6702":6703,"6703":6704,"6704":6705,"6705":6706,"6706":6707,"6707":6708,"6708":6709,"6709":6710,"6710":6711,"6711":6712,"6712":6713,"6713":6714,"6714":6715,"6715":6716,"6716":6717,"6717":6718,"6718":6719,"6719":6720,"6720":6721,"6721":6722,"6722":6723,"6723":6724,"6724":6725,"6725":6726,"6726":6727,"6727":6728,"6728":6729,"6729":6730,"6730":6731,"6731":6732,"6732":6733,"6733":6734,"6734":6735,"6735":6736,"6736":6737,"6737":6738,"6738":6739,"6739":6740,"6740":6741,"6741":6742,"6742":6743,"6743":6744,"6744":6745,"6745":6746,"6746":6747,"6747":6748,"6748":6749,"6749":6750,"6750":6751,"6751":6752,"6752":6753,"6753":6754,"6754":6755,"6755":6756,"6756":6757,"6757":6758,"6758":6759,"6759":6760,"6760":6761,"6761":6762,"6762":6763,"6763":6764,"6764":6765,"6765":6766,"6766":6767,"6767":6768,"6768":6769,"6769":6770,"6770":6771,"6771":6772,"6772":6773,"6773":6774,"6774":6775,"6775":6776,"6776":6777,"6777":6778,"6778":6779,"6779":6780,"6780":6781,"6781":6782,"6782":6783,"6783":6784,"6784":6785,"6785":6786,"6786":6787,"6787":6788,"6788":6789,"6789":6790,"6790":6791,"6791":6792,"6792":6793,"6793":6794,"6794":6795,"6795":6796,"6796":6797,"6797":6798,"6798":6799,"6799":6800,"6800":6801,"6801":6802,"6802":6803,"6803":6804,"6804":6805,"6805":6806,"6806":6807,"6807":6808,"6808":6809,"6809":6810,"6810":6811,"6811":6812,"6812":6813,"6813":6814,"6814":6815,"6815":6816,"6816":6817,"6817":6818,"6818":6819,"6819":6820,"6820":6821,"6821":6822,"6822":6823,"6823":6824,"6824":6825,"6825":6826,"6826":6827,"6827":6828,"6828":6829,"6829":6830,"6830":6831,"6831":6832,"6832":6833,"6833":6834,"6834":6835,"6835":6836,"6836":6837,"6837":6838,"6838":6839,"6839":6840,"6840":6841,"6841":6842,"6842":6843,"6843":6844,"6844":6845,"6845":6846,"6846":6847,"6847":6848,"6848":6849,"6849":6850,"6850":6851,"6851":6852,"6852":6853,"6853":6854,"6854":6855,"6855":6856,"6856":6857,"6857":6858,"6858":6859,"6859":6860,"6860":6861,"6861":6862,"6862":6863,"6863":6864,"6864":6865,"6865":6866,"6866":6867,"6867":6868,"6868":6869,"6869":6870,"6870":6871,"6871":6872,"6872":6873,"6873":6874,"6874":6875,"6875":6876,"6876":6877,"6877":6878,"6878":6879,"6879":6880,"6880":6881,"6881":6882,"6882":6883,"6883":6884,"6884":6885,"6885":6886,"6886":6887,"6887":6888,"6888":6889,"6889":6890,"6890":6891,"6891":6892,"6892":6893,"6893":6894,"6894":6895,"6895":6896,"6896":6897,"6897":6898,"6898":6899,"6899":6900,"6900":6901,"6901":6902,"6902":6903,"6903":6904,"6904":6905,"6905":6906,"6906":6907,"6907":6908,"6908":6909,"6909":6910,"6910":6911,"6911":6912,"6912":6913,"6913":6914,"6914":6915,"6915":6916,"6916":6917,"6917":6918,"6918":6919,"6919":6920,"6920":6921,"6921":6922,"6922":6923,"6923":6924,"6924":6925,"6925":6926,"6926":6927,"6927":6928,"6928":6929,"6929":6930,"6930":6931,"6931":6932,"6932":6933,"6933":6934,"6934":6935,"6935":6936,"6936":6937,"6937":6938,"6938":6939,"6939":6940,"6940":6941,"6941":6942,"6942":6943,"6943":6944,"6944":6945,"6945":6946,"6946":6947,"6947":6948,"6948":6949,"6949":6950,"6950":6951,"6951":6952,"6952":6953,"6953":6954,"6954":6955,"6955":6956,"6956":6957,"6957":6958,"6958":6959,"6959":6960,"6960":6961,"6961":6962,"6962":6963,"6963":6964,"6964":6965,"6965":6966,"6966":6967,"6967":6968,"6968":6969,"6969":6970,"6970":6971,"6971":6972,"6972":6973,"6973":6974,"6974":6975,"6975":6976,"6976":6977,"6977":6978,"6978":6979,"6979":6980,"6980":6981,"6981":6982,"6982":6983,"6983":6984,"6984":6985,"6985":6986,"6986":6987,"6987":6988,"6988":6989,"6989":6990,"6990":6991,"6991":6992,"6992":6993,"6993":6994,"6994":6995,"6995":6996,"6996":6997,"6997":6998,"6998":6999,"6999":7000,"7000":7001,"7001":7002,"7002":7003,"7003":7004,"7004":7005,"7005":7006,"7006":7007,"7007":7008,"7008":7009,"7009":7010,"7010":7011,"7011":7012,"7012":7013,"7013":7014,"7014":7015,"7015":7016,"7016":7017,"7017":7018,"7018":7019,"7019":7020,"7020":7021,"7021":7022,"7022":7023,"7023":7024,"7024":7025,"7025":7026,"7026":7027,"7027":7028,"7028":7029,"7029":7030,"7030":7031,"7031":7032,"7032":7033,"7033":7034,"7034":7035,"7035":7036,"7036":7037,"7037":7038,"7038":7039,"7039":7040,"7040":7041,"7041":7042,"7042":7043,"7043":7044,"7044":7045,"7045":7046,"7046":7047,"7047":7048,"7048":7049,"7049":7050,"7050":7051,"7051":7052,"7052":7053,"7053":7054,"7054":7055,"7055":7056,"7056":7057,"7057":7058,"7058":7059,"7059":7060,"7060":7061,"7061":7062,"7062":7063,"7063":7064,"7064":7065,"7065":7066,"7066":7067,"7067":7068,"7068":7069,"7069":7070,"7070":7071,"7071":7072,"7072":7073,"7073":7074,"7074":7075,"7075":7076,"7076":7077,"7077":7078,"7078":7079,"7079":7080,"7080":7081,"7081":7082,"7082":7083,"7083":7084,"7084":7085,"7085":7086,"7086":7087,"7087":7088,"7088":7089,"7089":7090,"7090":7091,"7091":7092,"7092":7093,"7093":7094,"7094":7095,"7095":7096,"7096":7097,"7097":7098,"7098":7099,"7099":7100,"7100":7101,"7101":7102,"7102":7103,"7103":7104,"7104":7105,"7105":7106,"7106":7107,"7107":7108,"7108":7109,"7109":7110,"7110":7111,"7111":7112,"7112":7113,"7113":7114,"7114":7115,"7115":7116,"7116":7117,"7117":7118,"7118":7119,"7119":7120,"7120":7121,"7121":7122,"7122":7123,"7123":7124,"7124":7125,"7125":7126,"7126":7127,"7127":7128,"7128":7129,"7129":7130,"7130":7131,"7131":7132,"7132":7133,"7133":7134,"7134":7135,"7135":7136,"7136":7137,"7137":7138,"7138":7139,"7139":7140,"7140":7141,"7141":7142,"7142":7143,"7143":7144,"7144":7145,"7145":7146,"7146":7147,"7147":7148,"7148":7149,"7149":7150,"7150":7151,"7151":7152,"7152":7153,"7153":7154,"7154":7155,"7155":7156,"7156":7157,"7157":7158,"7158":7159,"7159":7160,"7160":7161,"7161":7162,"7162":7163,"7163":7164,"7164":7165,"7165":7166,"7166":7167,"7167":7168,"7168":7169,"7169":7170,"7170":7171,"7171":7172,"7172":7173,"7173":7174,"7174":7175,"7175":7176,"7176":7177,"7177":7178,"7178":7179,"7179":7180,"7180":7181,"7181":7182,"7182":7183,"7183":7184,"7184":7185,"7185":7186,"7186":7187,"7187":7188,"7188":7189,"7189":7190,"7190":7191,"7191":7192,"7192":7193,"7193":7194,"7194":7195,"7195":7196,"7196":7197,"7197":7198,"7198":7199,"7199":7200,"7200":7201,"7201":7202,"7202":7203,"7203":7204,"7204":7205,"7205":7206,"7206":7207,"7207":7208,"7208":7209,"7209":7210,"7210":7211,"7211":7212,"7212":7213,"7213":7214,"7214":7215,"7215":7216,"7216":7217,"7217":7218,"7218":7219,"7219":7220,"7220":7221,"7221":7222,"7222":7223,"7223":7224,"7224":7225,"7225":7226,"7226":7227,"7227":7228,"7228":7229,"7229":7230,"7230":7231,"7231":7232,"7232":7233,"7233":7234,"7234":7235,"7235":7236,"7236":7237,"7237":7238,"7238":7239,"7239":7240,"7240":7241,"7241":7242,"7242":7243,"7243":7244,"7244":7245,"7245":7246,"7246":7247,"7247":7248,"7248":7249,"7249":7250,"7250":7251,"7251":7252,"7252":7253,"7253":7254,"7254":7255,"7255":7256,"7256":7257,"7257":7258,"7258":7259,"7259":7260,"7260":7261,"7261":7262,"7262":7263,"7263":7264,"7264":7265,"7265":7266,"7266":7267,"7267":7268,"7268":7269,"7269":7270,"7270":7271,"7271":7272,"7272":7273,"7273":7274,"7274":7275,"7275":7276,"7276":7277,"7277":7278,"7278":7279,"7279":7280,"7280":7281,"7281":7282,"7282":7283,"7283":7284,"7284":7285,"7285":7286,"7286":7287,"7287":7288,"7288":7289,"7289":7290,"7290":7291,"7291":7292,"7292":7293,"7293":7294,"7294":7295,"7295":7296,"7296":7297,"7297":7298,"7298":7299,"7299":7300,"7300":7301,"7301":7302,"7302":7303,"7303":7304,"7304":7305,"7305":7306,"7306":7307,"7307":7308,"7308":7309,"7309":7310,"7310":7311,"7311":7312,"7312":7313,"7313":7314,"7314":7315,"7315":7316,"7316":7317,"7317":7318,"7318":7319,"7319":7320,"7320":7321,"7321":7322,"7322":7323,"7323":7324,"7324":7325,"7325":7326,"7326":7327,"7327":7328,"7328":7329,"7329":7330,"7330":7331,"7331":7332,"7332":7333,"7333":7334,"7334":7335,"7335":7336,"7336":7337,"7337":7338,"7338":7339,"7339":7340,"7340":7341,"7341":7342,"7342":7343,"7343":7344,"7344":7345,"7345":7346,"7346":7347,"7347":7348,"7348":7349,"7349":7350,"7350":7351,"7351":7352,"7352":7353,"7353":7354,"7354":7355,"7355":7356,"7356":7357,"7357":7358,"7358":7359,"7359":7360,"7360":7361,"7361":7362,"7362":7363,"7363":7364,"7364":7365,"7365":7366,"7366":7367,"7367":7368,"7368":7369,"7369":7370,"7370":7371,"7371":7372,"7372":7373,"7373":7374,"7374":7375,"7375":7376,"7376":7377,"7377":7378,"7378":7379,"7379":7380,"7380":7381,"7381":7382,"7382":7383,"7383":7384,"7384":7385,"7385":7386,"7386":7387,"7387":7388,"7388":7389,"7389":7390,"7390":7391,"7391":7392,"7392":7393,"7393":7394,"7394":7395,"7395":7396,"7396":7397,"7397":7398,"7398":7399,"7399":7400,"7400":7401,"7401":7402,"7402":7403,"7403":7404,"7404":7405,"7405":7406,"7406":7407,"7407":7408,"7408":7409,"7409":7410,"7410":7411,"7411":7412,"7412":7413,"7413":7414,"7414":7415,"7415":7416,"7416":7417,"7417":7418,"7418":7419,"7419":7420,"7420":7421,"7421":7422,"7422":7423,"7423":7424,"7424":7425,"7425":7426,"7426":7427,"7427":7428,"7428":7429,"7429":7430,"7430":7431,"7431":7432,"7432":7433,"7433":7434,"7434":7435,"7435":7436,"7436":7437,"7437":7438,"7438":7439,"7439":7440,"7440":7441,"7441":7442,"7442":7443,"7443":7444,"7444":7445,"7445":7446,"7446":7447,"7447":7448,"7448":7449,"7449":7450,"7450":7451,"7451":7452,"7452":7453,"7453":7454,"7454":7455,"7455":7456,"7456":7457,"7457":7458,"7458":7459,"7459":7460,"7460":7461,"7461":7462,"7462":7463,"7463":7464,"7464":7465,"7465":7466,"7466":7467,"7467":7468,"7468":7469,"7469":7470,"7470":7471,"7471":7472,"7472":7473,"7473":7474,"7474":7475,"7475":7476,"7476":7477,"7477":7478,"7478":7479,"7479":7480,"7480":7481,"7481":7482,"7482":7483,"7483":7484,"7484":7485,"7485":7486,"7486":7487,"7487":7488,"7488":7489,"7489":7490,"7490":7491,"7491":7492,"7492":7493,"7493":7494,"7494":7495,"7495":7496,"7496":7497,"7497":7498,"7498":7499,"7499":7500,"7500":7501,"7501":7502,"7502":7503,"7503":7504,"7504":7505,"7505":7506,"7506":7507,"7507":7508,"7508":7509,"7509":7510,"7510":7511,"7511":7512,"7512":7513,"7513":7514,"7514":7515,"7515":7516,"7516":7517,"7517":7518,"7518":7519,"7519":7520,"7520":7521,"7521":7522,"7522":7523,"7523":7524,"7524":7525,"7525":7526,"7526":7527,"7527":7528,"7528":7529,"7529":7530,"7530":7531,"7531":7532,"7532":7533,"7533":7534,"7534":7535,"7535":7536,"7536":7537,"7537":7538,"7538":7539,"7539":7540,"7540":7541,"7541":7542,"7542":7543,"7543":7544,"7544":7545,"7545":7546,"7546":7547,"7547":7548,"7548":7549,"7549":7550,"7550":7551,"7551":7552,"7552":7553,"7553":7554,"7554":7555,"7555":7556,"7556":7557,"7557":7558,"7558":7559,"7559":7560,"7560":7561,"7561":7562,"7562":7563,"7563":7564,"7564":7565,"7565":7566,"7566":7567,"7567":7568,"7568":7569,"7569":7570,"7570":7571,"7571":7572,"7572":7573,"7573":7574,"7574":7575,"7575":7576,"7576":7577,"7577":7578,"7578":7579,"7579":7580,"7580":7581,"7581":7582,"7582":7583,"7583":7584,"7584":7585,"7585":7586,"7586":7587,"7587":7588,"7588":7589,"7589":7590,"7590":7591,"7591":7592,"7592":7593,"7593":7594,"7594":7595,"7595":7596,"7596":7597,"7597":7598,"7598":7599,"7599":7600,"7600":7601,"7601":7602,"7602":7603,"7603":7604,"7604":7605,"7605":7606,"7606":7607,"7607":7608,"7608":7609,"7609":7610,"7610":7611,"7611":7612,"7612":7613,"7613":7614,"7614":7615,"7615":7616,"7616":7617,"7617":7618,"7618":7619,"7619":7620,"7620":7621,"7621":7622,"7622":7623,"7623":7624,"7624":7625,"7625":7626,"7626":7627,"7627":7628,"7628":7629,"7629":7630,"7630":7631,"7631":7632,"7632":7633,"7633":7634,"7634":7635,"7635":7636,"7636":7637,"7637":7638,"7638":7639,"7639":7640,"7640":7641,"7641":7642,"7642":7643,"7643":7644,"7644":7645,"7645":7646,"7646":7647,"7647":7648,"7648":7649,"7649":7650,"7650":7651,"7651":7652,"7652":7653,"7653":7654,"7654":7655,"7655":7656,"7656":7657,"7657":7658,"7658":7659,"7659":7660,"7660":7661,"7661":7662,"7662":7663,"7663":7664,"7664":7665,"7665":7666,"7666":7667,"7667":7668,"7668":7669,"7669":7670,"7670":7671,"7671":7672,"7672":7673,"7673":7674,"7674":7675,"7675":7676,"7676":7677,"7677":7678,"7678":7679,"7679":7680,"7680":7681,"7681":7682,"7682":7683,"7683":7684,"7684":7685,"7685":7686,"7686":7687,"7687":7688,"7688":7689,"7689":7690,"7690":7691,"7691":7692,"7692":7693,"7693":7694,"7694":7695,"7695":7696,"7696":7697,"7697":7698,"7698":7699,"7699":7700,"7700":7701,"7701":7702,"7702":7703,"7703":7704,"7704":7705,"7705":7706,"7706":7707,"7707":7708,"7708":7709,"7709":7710,"7710":7711,"7711":7712,"7712":7713,"7713":7714,"7714":7715,"7715":7716,"7716":7717,"7717":7718,"7718":7719,"7719":7720,"7720":7721,"7721":7722,"7722":7723,"7723":7724,"7724":7725,"7725":7726,"7726":7727,"7727":7728,"7728":7729,"7729":7730,"7730":7731,"7731":7732,"7732":7733,"7733":7734,"7734":7735,"7735":7736,"7736":7737,"7737":7738,"7738":7739,"7739":7740,"7740":7741,"7741":7742,"7742":7743,"7743":7744,"7744":7745,"7745":7746,"7746":7747,"7747":7748,"7748":7749,"7749":7750,"7750":7751,"7751":7752,"7752":7753,"7753":7754,"7754":7755,"7755":7756,"7756":7757,"7757":7758,"7758":7759,"7759":7760,"7760":7761,"7761":7762,"7762":7763,"7763":7764,"7764":7765,"7765":7766,"7766":7767,"7767":7768,"7768":7769,"7769":7770,"7770":7771,"7771":7772,"7772":7773,"7773":7774,"7774":7775,"7775":7776,"7776":7777,"7777":7778,"7778":7779,"7779":7780,"7780":7781,"7781":7782,"7782":7783,"7783":7784,"7784":7785,"7785":7786,"7786":7787,"7787":7788,"7788":7789,"7789":7790,"7790":7791,"7791":7792,"7792":7793,"7793":7794,"7794":7795,"7795":7796,"7796":7797,"7797":7798,"7798":7799,"7799":7800,"7800":7801,"7801":7802,"7802":7803,"7803":7804,"7804":7805,"7805":7806,"7806":7807,"7807":7808,"7808":7809,"7809":7810,"7810":7811,"7811":7812,"7812":7813,"7813":7814,"7814":7815,"7815":7816,"7816":7817,"7817":7818,"7818":7819,"7819":7820,"7820":7821,"7821":7822,"7822":7823,"7823":7824,"7824":7825,"7825":7826,"7826":7827,"7827":7828,"7828":7829,"7829":7830,"7830":7831,"7831":7832,"7832":7833,"7833":7834,"7834":7835,"7835":7836,"7836":7837,"7837":7838,"7838":7839,"7839":7840,"7840":7841,"7841":7842,"7842":7843,"7843":7844,"7844":7845,"7845":7846,"7846":7847,"7847":7848,"7848":7849,"7849":7850,"7850":7851,"7851":7852,"7852":7853,"7853":7854,"7854":7855,"7855":7856,"7856":7857,"7857":7858,"7858":7859,"7859":7860,"7860":7861,"7861":7862,"7862":7863,"7863":7864,"7864":7865,"7865":7866,"7866":7867,"7867":7868,"7868":7869,"7869":7870,"7870":7871,"7871":7872,"7872":7873,"7873":7874,"7874":7875,"7875":7876,"7876":7877,"7877":7878,"7878":7879,"7879":7880,"7880":7881,"7881":7882,"7882":7883,"7883":7884,"7884":7885,"7885":7886,"7886":7887,"7887":7888,"7888":7889,"7889":7890,"7890":7891,"7891":7892,"7892":7893,"7893":7894,"7894":7895,"7895":7896,"7896":7897,"7897":7898,"7898":7899,"7899":7900,"7900":7901,"7901":7902,"7902":7903,"7903":7904,"7904":7905,"7905":7906,"7906":7907,"7907":7908,"7908":7909,"7909":7910,"7910":7911,"7911":7912,"7912":7913,"7913":7914,"7914":7915,"7915":7916,"7916":7917,"7917":7918,"7918":7919,"7919":7920,"7920":7921,"7921":7922,"7922":7923,"7923":7924,"7924":7925,"7925":7926,"7926":7927,"7927":7928,"7928":7929,"7929":7930,"7930":7931,"7931":7932,"7932":7933,"7933":7934,"7934":7935,"7935":7936,"7936":7937,"7937":7938,"7938":7939,"7939":7940,"7940":7941,"7941":7942,"7942":7943,"7943":7944,"7944":7945,"7945":7946,"7946":7947,"7947":7948,"7948":7949,"7949":7950,"7950":7951,"7951":7952,"7952":7953,"7953":7954,"7954":7955,"7955":7956,"7956":7957,"7957":7958,"7958":7959,"7959":7960,"7960":7961,"7961":7962,"7962":7963,"7963":7964,"7964":7965,"7965":7966,"7966":7967,"7967":7968,"7968":7969,"7969":7970,"7970":7971,"7971":7972,"7972":7973,"7973":7974,"7974":7975,"7975":7976,"7976":7977,"7977":7978,"7978":7979,"7979":7980,"7980":7981,"7981":7982,"7982":7983,"7983":7984,"7984":7985,"7985":7986,"7986":7987,"7987":7988,"7988":7989,"7989":7990,"7990":7991,"7991":7992,"7992":7993,"7993":7994,"7994":7995,"7995":7996,"7996":7997,"7997":7998,"7998":7999,"7999":8000,"8000":8001,"8001":8002,"8002":8003,"8003":8004,"8004":8005,"8005":8006,"8006":8007,"8007":8008,"8008":8009,"8009":8010,"8010":8011,"8011":8012,"8012":8013,"8013":8014,"8014":8015,"8015":8016,"8016":8017,"8017":8018,"8018":8019,"8019":8020,"8020":8021,"8021":8022,"8022":8023,"8023":8024,"8024":8025,"8025":8026,"8026":8027,"8027":8028,"8028":8029,"8029":8030,"8030":8031,"8031":8032,"8032":8033,"8033":8034,"8034":8035,"8035":8036,"8036":8037,"8037":8038,"8038":8039,"8039":8040,"8040":8041,"8041":8042,"8042":8043,"8043":8044,"8044":8045,"8045":8046,"8046":8047,"8047":8048,"8048":8049,"8049":8050,"8050":8051,"8051":8052,"8052":8053,"8053":8054,"8054":8055,"8055":8056,"8056":8057,"8057":8058,"8058":8059,"8059":8060,"8060":8061,"8061":8062,"8062":8063,"8063":8064,"8064":8065,"8065":8066,"8066":8067,"8067":8068,"8068":8069,"8069":8070,"8070":8071,"8071":8072,"8072":8073,"8073":8074,"8074":8075,"8075":8076,"8076":8077,"8077":8078,"8078":8079,"8079":8080,"8080":8081,"8081":8082,"8082":8083,"8083":8084,"8084":8085,"8085":8086,"8086":8087,"8087":8088,"8088":8089,"8089":8090,"8090":8091,"8091":8092,"8092":8093,"8093":8094,"8094":8095,"8095":8096,"8096":8097,"8097":8098,"8098":8099,"8099":8100,"8100":8101,"8101":8102,"8102":8103,"8103":8104,"8104":8105,"8105":8106,"8106":8107,"8107":8108,"8108":8109,"8109":8110,"8110":8111,"8111":8112,"8112":8113,"8113":8114,"8114":8115,"8115":8116,"8116":8117,"8117":8118,"8118":8119,"8119":8120,"8120":8121,"8121":8122,"8122":8123,"8123":8124,"8124":8125,"8125":8126,"8126":8127,"8127":8128,"8128":8129,"8129":8130,"8130":8131,"8131":8132,"8132":8133,"8133":8134,"8134":8135,"8135":8136,"8136":8137,"8137":8138,"8138":8139,"8139":8140,"8140":8141,"8141":8142,"8142":8143,"8143":8144,"8144":8145,"8145":8146,"8146":8147,"8147":8148,"8148":8149,"8149":8150,"8150":8151,"8151":8152,"8152":8153,"8153":8154,"8154":8155,"8155":8156,"8156":8157,"8157":8158,"8158":8159,"8159":8160,"8160":8161,"8161":8162,"8162":8163,"8163":8164,"8164":8165,"8165":8166,"8166":8167,"8167":8168,"8168":8169,"8169":8170,"8170":8171,"8171":8172,"8172":8173,"8173":8174,"8174":8175,"8175":8176,"8176":8177,"8177":8178,"8178":8179,"8179":8180,"8180":8181,"8181":8182,"8182":8183,"8183":8184,"8184":8185,"8185":8186,"8186":8187,"8187":8188,"8188":8189,"8189":8190,"8190":8191,"8191":8192,"8192":8193,"8193":8194,"8194":8195,"8195":8196,"8196":8197,"8197":8198,"8198":8199,"8199":8200,"8200":8201,"8201":8202,"8202":8203,"8203":8204,"8204":8205,"8205":8206,"8206":8207,"8207":8208,"8208":8209,"8209":8210,"8210":8211,"8211":8212,"8212":8213,"8213":8214,"8214":8215,"8215":8216,"8216":8217,"8217":8218,"8218":8219,"8219":8220,"8220":8221,"8221":8222,"8222":8223,"8223":8224,"8224":8225,"8225":8226,"8226":8227,"8227":8228,"8228":8229,"8229":8230,"8230":8231,"8231":8232,"8232":8233,"8233":8234,"8234":8235,"8235":8236,"8236":8237,"8237":8238,"8238":8239,"8239":8240,"8240":8241,"8241":8242,"8242":8243,"8243":8244,"8244":8245,"8245":8246,"8246":8247,"8247":8248,"8248":8249,"8249":8250,"8250":8251,"8251":8252,"8252":8253,"8253":8254,"8254":8255,"8255":8256,"8256":8257,"8257":8258,"8258":8259,"8259":8260,"8260":8261,"8261":8262,"8262":8263,"8263":8264,"8264":8265,"8265":8266,"8266":8267,"8267":8268,"8268":8269,"8269":8270,"8270":8271,"8271":8272,"8272":8273,"8273":8274,"8274":8275,"8275":8276,"8276":8277,"8277":8278,"8278":8279,"8279":8280,"8280":8281,"8281":8282,"8282":8283,"8283":8284,"8284":8285,"8285":8286,"8286":8287,"8287":8288,"8288":8289,"8289":8290,"8290":8291,"8291":8292,"8292":8293,"8293":8294,"8294":8295,"8295":8296,"8296":8297,"8297":8298,"8298":8299,"8299":8300,"8300":8301,"8301":8302,"8302":8303,"8303":8304,"8304":8305,"8305":8306,"8306":8307,"8307":8308,"8308":8309,"8309":8310,"8310":8311,"8311":8312,"8312":8313,"8313":8314,"8314":8315,"8315":8316,"8316":8317,"8317":8318,"8318":8319,"8319":8320,"8320":8321,"8321":8322,"8322":8323,"8323":8324,"8324":8325,"8325":8326,"8326":8327,"8327":8328,"8328":8329,"8329":8330,"8330":8331,"8331":8332,"8332":8333,"8333":8334,"8334":8335,"8335":8336,"8336":8337,"8337":8338,"8338":8339,"8339":8340,"8340":8341,"8341":8342,"8342":8343,"8343":8344,"8344":8345,"8345":8346,"8346":8347,"8347":8348,"8348":8349,"8349":8350,"8350":8351,"8351":8352,"8352":8353,"8353":8354,"8354":8355,"8355":8356,"8356":8357,"8357":8358,"8358":8359,"8359":8360,"8360":8361,"8361":8362,"8362":8363,"8363":8364,"8364":8365,"8365":8366,"8366":8367,"8367":8368,"8368":8369,"8369":8370,"8370":8371,"8371":8372,"8372":8373,"8373":8374,"8374":8375,"8375":8376,"8376":8377,"8377":8378,"8378":8379,"8379":8380,"8380":8381,"8381":8382,"8382":8383,"8383":8384,"8384":8385,"8385":8386,"8386":8387,"8387":8388,"8388":8389,"8389":8390,"8390":8391,"8391":8392,"8392":8393,"8393":8394,"8394":8395,"8395":8396,"8396":8397,"8397":8398,"8398":8399,"8399":8400,"8400":8401,"8401":8402,"8402":8403,"8403":8404,"8404":8405,"8405":8406,"8406":8407,"8407":8408,"8408":8409,"8409":8410,"8410":8411,"8411":8412,"8412":8413,"8413":8414,"8414":8415,"8415":8416,"8416":8417,"8417":8418,"8418":8419,"8419":8420,"8420":8421,"8421":8422,"8422":8423,"8423":8424,"8424":8425,"8425":8426,"8426":8427,"8427":8428,"8428":8429,"8429":8430,"8430":8431,"8431":8432,"8432":8433,"8433":8434,"8434":8435,"8435":8436,"8436":8437,"8437":8438,"8438":8439,"8439":8440,"8440":8441,"8441":8442,"8442":8443,"8443":8444,"8444":8445,"8445":8446,"8446":8447,"8447":8448,"8448":8449,"8449":8450,"8450":8451,"8451":8452,"8452":8453,"8453":8454,"8454":8455,"8455":8456,"8456":8457,"8457":8458,"8458":8459,"8459":8460,"8460":8461,"8461":8462,"8462":8463,"8463":8464,"8464":8465,"8465":8466,"8466":8467,"8467":8468,"8468":8469,"8469":8470,"8470":8471,"8471":8472,"8472":8473,"8473":8474,"8474":8475,"8475":8476,"8476":8477,"8477":8478,"8478":8479,"8479":8480,"8480":8481,"8481":8482,"8482":8483,"8483":8484,"8484":8485,"8485":8486,"8486":8487,"8487":8488,"8488":8489,"8489":8490,"8490":8491,"8491":8492,"8492":8493,"8493":8494,"8494":8495,"8495":8496,"8496":8497,"8497":8498,"8498":8499,"8499":8500,"8500":8501,"8501":8502,"8502":8503,"8503":8504,"8504":8505,"8505":8506,"8506":8507,"8507":8508,"8508":8509,"8509":8510,"8510":8511,"8511":8512,"8512":8513,"8513":8514,"8514":8515,"8515":8516,"8516":8517,"8517":8518,"8518":8519,"8519":8520,"8520":8521,"8521":8522,"8522":8523,"8523":8524,"8524":8525,"8525":8526,"8526":8527,"8527":8528,"8528":8529,"8529":8530,"8530":8531,"8531":8532,"8532":8533,"8533":8534,"8534":8535,"8535":8536,"8536":8537,"8537":8538,"8538":8539,"8539":8540,"8540":8541,"8541":8542,"8542":8543,"8543":8544,"8544":8545,"8545":8546,"8546":8547,"8547":8548,"8548":8549,"8549":8550,"8550":8551,"8551":8552,"8552":8553,"8553":8554,"8554":8555,"8555":8556,"8556":8557,"8557":8558,"8558":8559,"8559":8560,"8560":8561,"8561":8562,"8562":8563,"8563":8564,"8564":8565,"8565":8566,"8566":8567,"8567":8568,"8568":8569,"8569":8570,"8570":8571,"8571":8572,"8572":8573,"8573":8574,"8574":8575,"8575":8576,"8576":8577,"8577":8578,"8578":8579,"8579":8580,"8580":8581,"8581":8582,"8582":8583,"8583":8584,"8584":8585,"8585":8586,"8586":8587,"8587":8588,"8588":8589,"8589":8590,"8590":8591,"8591":8592,"8592":8593,"8593":8594,"8594":8595,"8595":8596,"8596":8597,"8597":8598,"8598":8599,"8599":8600,"8600":8601,"8601":8602,"8602":8603,"8603":8604,"8604":8605,"8605":8606,"8606":8607,"8607":8608,"8608":8609,"8609":8610,"8610":8611,"8611":8612,"8612":8613,"8613":8614,"8614":8615,"8615":8616,"8616":8617,"8617":8618,"8618":8619,"8619":8620,"8620":8621,"8621":8622,"8622":8623,"8623":8624,"8624":8625,"8625":8626,"8626":8627,"8627":8628,"8628":8629,"8629":8630,"8630":8631,"8631":8632,"8632":8633,"8633":8634,"8634":8635,"8635":8636,"8636":8637,"8637":8638,"8638":8639,"8639":8640,"8640":8641,"8641":8642,"8642":8643,"8643":8644,"8644":8645,"8645":8646,"8646":8647,"8647":8648,"8648":8649,"8649":8650,"8650":8651,"8651":8652,"8652":8653,"8653":8654,"8654":8655,"8655":8656,"8656":8657,"8657":8658,"8658":8659,"8659":8660,"8660":8661,"8661":8662,"8662":8663,"8663":8664,"8664":8665,"8665":8666,"8666":8667,"8667":8668,"8668":8669,"8669":8670,"8670":8671,"8671":8672,"8672":8673,"8673":8674,"8674":8675,"8675":8676,"8676":8677,"8677":8678,"8678":8679,"8679":8680,"8680":8681,"8681":8682,"8682":8683,"8683":8684,"8684":8685,"8685":8686,"8686":8687,"8687":8688,"8688":8689,"8689":8690,"8690":8691,"8691":8692,"8692":8693,"8693":8694,"8694":8695,"8695":8696,"8696":8697,"8697":8698,"8698":8699,"8699":8700,"8700":8701,"8701":8702,"8702":8703,"8703":8704,"8704":8705,"8705":8706,"8706":8707,"8707":8708,"8708":8709,"8709":8710,"8710":8711,"8711":8712,"8712":8713,"8713":8714,"8714":8715,"8715":8716,"8716":8717,"8717":8718,"8718":8719,"8719":8720,"8720":8721,"8721":8722,"8722":8723,"8723":8724,"8724":8725,"8725":8726,"8726":8727,"8727":8728,"8728":8729,"8729":8730,"8730":8731,"8731":8732,"8732":8733,"8733":8734,"8734":8735,"8735":8736,"8736":8737,"8737":8738,"8738":8739,"8739":8740,"8740":8741,"8741":8742,"8742":8743,"8743":8744,"8744":8745,"8745":8746,"8746":8747,"8747":8748,"8748":8749,"8749":8750,"8750":8751,"8751":8752,"8752":8753,"8753":8754,"8754":8755,"8755":8756,"8756":8757,"8757":8758,"8758":8759,"8759":8760,"8760":8761,"8761":8762,"8762":8763,"8763":8764,"8764":8765,"8765":8766,"8766":8767,"8767":8768,"8768":8769,"8769":8770,"8770":8771,"8771":8772,"8772":8773,"8773":8774,"8774":8775,"8775":8776,"8776":8777,"8777":8778,"8778":8779,"8779":8780,"8780":8781,"8781":8782,"8782":8783,"8783":8784,"8784":8785,"8785":8786,"8786":8787,"8787":8788,"8788":8789,"8789":8790,"8790":8791,"8791":8792,"8792":8793,"8793":8794,"8794":8795,"8795":8796,"8796":8797,"8797":8798,"8798":8799,"8799":8800,"8800":8801,"8801":8802,"8802":8803,"8803":8804,"8804":8805,"8805":8806,"8806":8807,"8807":8808,"8808":8809,"8809":8810,"8810":8811,"8811":8812,"8812":8813,"8813":8814,"8814":8815,"8815":8816,"8816":8817,"8817":8818,"8818":8819,"8819":8820,"8820":8821,"8821":8822,"8822":8823,"8823":8824,"8824":8825,"8825":8826,"8826":8827,"8827":8828,"8828":8829,"8829":8830,"8830":8831,"8831":8832,"8832":8833,"8833":8834,"8834":8835,"8835":8836,"8836":8837,"8837":8838,"8838":8839,"8839":8840,"8840":8841,"8841":8842,"8842":8843,"8843":8844,"8844":8845,"8845":8846,"8846":8847,"8847":8848,"8848":8849,"8849":8850,"8850":8851,"8851":8852,"8852":8853,"8853":8854,"8854":8855,"8855":8856,"8856":8857,"8857":8858,"8858":8859,"8859":8860,"8860":8861,"8861":8862,"8862":8863,"8863":8864,"8864":8865,"8865":8866,"8866":8867,"8867":8868,"8868":8869,"8869":8870,"8870":8871,"8871":8872,"8872":8873,"8873":8874,"8874":8875,"8875":8876,"8876":8877,"8877":8878,"8878":8879,"8879":8880,"8880":8881,"8881":8882,"8882":8883,"8883":8884,"8884":8885,"8885":8886,"8886":8887,"8887":8888,"8888":8889,"8889":8890,"8890":8891,"8891":8892,"8892":8893,"8893":8894,"8894":8895,"8895":8896,"8896":8897,"8897":8898,"8898":8899,"8899":8900,"8900":8901,"8901":8902,"8902":8903,"8903":8904,"8904":8905,"8905":8906,"8906":8907,"8907":8908,"8908":8909,"8909":8910,"8910":8911,"8911":8912,"8912":8913,"8913":8914,"8914":8915,"8915":8916,"8916":8917,"8917":8918,"8918":8919,"8919":8920,"8920":8921,"8921":8922,"8922":8923,"8923":8924,"8924":8925,"8925":8926,"8926":8927,"8927":8928,"8928":8929,"8929":8930,"8930":8931,"8931":8932,"8932":8933,"8933":8934,"8934":8935,"8935":8936,"8936":8937,"8937":8938,"8938":8939,"8939":8940,"8940":8941,"8941":8942,"8942":8943,"8943":8944,"8944":8945,"8945":8946,"8946":8947,"8947":8948,"8948":8949,"8949":8950,"8950":8951,"8951":8952,"8952":8953,"8953":8954,"8954":8955,"8955":8956,"8956":8957,"8957":8958,"8958":8959,"8959":8960,"8960":8961,"8961":8962,"8962":8963,"8963":8964,"8964":8965,"8965":8966,"8966":8967,"8967":8968,"8968":8969,"8969":8970,"8970":8971,"8971":8972,"8972":8973,"8973":8974,"8974":8975,"8975":8976,"8976":8977,"8977":8978,"8978":8979,"8979":8980,"8980":8981,"8981":8982,"8982":8983,"8983":8984,"8984":8985,"8985":8986,"8986":8987,"8987":8988,"8988":8989,"8989":8990,"8990":8991,"8991":8992,"8992":8993,"8993":8994,"8994":8995,"8995":8996,"8996":8997,"8997":8998,"8998":8999,"8999":9000,"9000":9001,"9001":9002,"9002":9003,"9003":9004,"9004":9005,"9005":9006,"9006":9007,"9007":9008,"9008":9009,"9009":9010,"9010":9011,"9011":9012,"9012":9013,"9013":9014,"9014":9015,"9015":9016,"9016":9017,"9017":9018,"9018":9019,"9019":9020,"9020":9021,"9021":9022,"9022":9023,"9023":9024,"9024":9025,"9025":9026,"9026":9027,"9027":9028,"9028":9029,"9029":9030,"9030":9031,"9031":9032,"9032":9033,"9033":9034,"9034":9035,"9035":9036,"9036":9037,"9037":9038,"9038":9039,"9039":9040,"9040":9041,"9041":9042,"9042":9043,"9043":9044,"9044":9045,"9045":9046,"9046":9047,"9047":9048,"9048":9049,"9049":9050,"9050":9051,"9051":9052,"9052":9053,"9053":9054,"9054":9055,"9055":9056,"9056":9057,"9057":9058,"9058":9059,"9059":9060,"9060":9061,"9061":9062,"9062":9063,"9063":9064,"9064":9065,"9065":9066,"9066":9067,"9067":9068,"9068":9069,"9069":9070,"9070":9071,"9071":9072,"9072":9073,"9073":9074,"9074":9075,"9075":9076,"9076":9077,"9077":9078,"9078":9079,"9079":9080,"9080":9081,"9081":9082,"9082":9083,"9083":9084,"9084":9085,"9085":9086,"9086":9087,"9087":9088,"9088":9089,"9089":9090,"9090":9091,"9091":9092,"9092":9093,"9093":9094,"9094":9095,"9095":9096,"9096":9097,"9097":9098,"9098":9099,"9099":9100,"9100":9101,"9101":9102,"9102":9103,"9103":9104,"9104":9105,"9105":9106,"9106":9107,"9107":9108,"9108":9109,"9109":9110,"9110":9111,"9111":9112,"9112":9113,"9113":9114,"9114":9115,"9115":9116,"9116":9117,"9117":9118,"9118":9119,"9119":9120,"9120":9121,"9121":9122,"9122":9123,"9123":9124,"9124":9125,"9125":9126,"9126":9127,"9127":9128,"9128":9129,"9129":9130,"9130":9131,"9131":9132,"9132":9133,"9133":9134,"9134":9135,"9135":9136,"9136":9137,"9137":9138,"9138":9139,"9139":9140,"9140":9141,"9141":9142,"9142":9143,"9143":9144,"9144":9145,"9145":9146,"9146":9147,"9147":9148,"9148":9149,"9149":9150,"9150":9151,"9151":9152,"9152":9153,"9153":9154,"9154":9155,"9155":9156,"9156":9157,"9157":9158,"9158":9159,"9159":9160,"9160":9161,"9161":9162,"9162":9163,"9163":9164,"9164":9165,"9165":9166,"9166":9167,"9167":9168,"9168":9169,"9169":9170,"9170":9171,"9171":9172,"9172":9173,"9173":9174,"9174":9175,"9175":9176,"9176":9177,"9177":9178,"9178":9179,"9179":9180,"9180":9181,"9181":9182,"9182":9183,"9183":9184,"9184":9185,"9185":9186,"9186":9187,"9187":9188,"9188":9189,"9189":9190,"9190":9191,"9191":9192,"9192":9193,"9193":9194,"9194":9195,"9195":9196,"9196":9197,"9197":9198,"9198":9199,"9199":9200,"9200":9201,"9201":9202,"9202":9203,"9203":9204,"9204":9205,"9205":9206,"9206":9207,"9207":9208,"9208":9209,"9209":9210,"9210":9211,"9211":9212,"9212":9213,"9213":9214,"9214":9215,"9215":9216,"9216":9217,"9217":9218,"9218":9219,"9219":9220,"9220":9221,"9221":9222,"9222":9223,"9223":9224,"9224":9225,"9225":9226,"9226":9227,"9227":9228,"9228":9229,"9229":9230,"9230":9231,"9231":9232,"9232":9233,"9233":9234,"9234":9235,"9235":9236,"9236":9237,"9237":9238,"9238":9239,"9239":9240,"9240":9241,"9241":9242,"9242":9243,"9243":9244,"9244":9245,"9245":9246,"9246":9247,"9247":9248,"9248":9249,"9249":9250,"9250":9251,"9251":9252,"9252":9253,"9253":9254,"9254":9255,"9255":9256,"9256":9257,"9257":9258,"9258":9259,"9259":9260,"9260":9261,"9261":9262,"9262":9263,"9263":9264,"9264":9265,"9265":9266,"9266":9267,"9267":9268,"9268":9269,"9269":9270,"9270":9271,"9271":9272,"9272":9273,"9273":9274,"9274":9275,"9275":9276,"9276":9277,"9277":9278,"9278":9279,"9279":9280,"9280":9281,"9281":9282,"9282":9283,"9283":9284,"9284":9285,"9285":9286,"9286":9287,"9287":9288,"9288":9289,"9289":9290,"9290":9291,"9291":9292,"9292":9293,"9293":9294,"9294":9295,"9295":9296,"9296":9297,"9297":9298,"9298":9299,"9299":9300,"9300":9301,"9301":9302,"9302":9303,"9303":9304,"9304":9305,"9305":9306,"9306":9307,"9307":9308,"9308":9309,"9309":9310,"9310":9311,"9311":9312,"9312":9313,"9313":9314,"9314":9315,"9315":9316,"9316":9317,"9317":9318,"9318":9319,"9319":9320,"9320":9321,"9321":9322,"9322":9323,"9323":9324,"9324":9325,"9325":9326,"9326":9327,"9327":9328,"9328":9329,"9329":9330,"9330":9331,"9331":9332,"9332":9333,"9333":9334,"9334":9335,"9335":9336,"9336":9337,"9337":9338,"9338":9339,"9339":9340,"9340":9341,"9341":9342,"9342":9343,"9343":9344,"9344":9345,"9345":9346,"9346":9347,"9347":9348,"9348":9349,"9349":9350,"9350":9351,"9351":9352,"9352":9353,"9353":9354,"9354":9355,"9355":9356,"9356":9357,"9357":9358,"9358":9359,"9359":9360,"9360":9361,"9361":9362,"9362":9363,"9363":9364,"9364":9365,"9365":9366,"9366":9367,"9367":9368,"9368":9369,"9369":9370,"9370":9371,"9371":9372,"9372":9373,"9373":9374,"9374":9375,"9375":9376,"9376":9377,"9377":9378,"9378":9379,"9379":9380,"9380":9381,"9381":9382,"9382":9383,"9383":9384,"9384":9385,"9385":9386,"9386":9387,"9387":9388,"9388":9389,"9389":9390,"9390":9391,"9391":9392,"9392":9393,"9393":9394,"9394":9395,"9395":9396,"9396":9397,"9397":9398,"9398":9399,"9399":9400,"9400":9401,"9401":9402,"9402":9403,"9403":9404,"9404":9405,"9405":9406,"9406":9407,"9407":9408,"9408":9409,"9409":9410,"9410":9411,"9411":9412,"9412":9413,"9413":9414,"9414":9415,"9415":9416,"9416":9417,"9417":9418,"9418":9419,"9419":9420,"9420":9421,"9421":9422,"9422":9423,"9423":9424,"9424":9425,"9425":9426,"9426":9427,"9427":9428,"9428":9429,"9429":9430,"9430":9431,"9431":9432,"9432":9433,"9433":9434,"9434":9435,"9435":9436,"9436":9437,"9437":9438,"9438":9439,"9439":9440,"9440":9441,"9441":9442,"9442":9443,"9443":9444,"9444":9445,"9445":9446,"9446":9447,"9447":9448,"9448":9449,"9449":9450,"9450":9451,"9451":9452,"9452":9453,"9453":9454,"9454":9455,"9455":9456,"9456":9457,"9457":9458,"9458":9459,"9459":9460,"9460":9461,"9461":9462,"9462":9463,"9463":9464,"9464":9465,"9465":9466,"9466":9467,"9467":9468,"9468":9469,"9469":9470,"9470":9471,"9471":9472,"9472":9473,"9473":9474,"9474":9475,"9475":9476,"9476":9477,"9477":9478,"9478":9479,"9479":9480,"9480":9481,"9481":9482,"9482":9483,"9483":9484,"9484":9485,"9485":9486,"9486":9487,"9487":9488,"9488":9489,"9489":9490,"9490":9491,"9491":9492,"9492":9493,"9493":9494,"9494":9495,"9495":9496,"9496":9497,"9497":9498,"9498":9499,"9499":9500,"9500":9501,"9501":9502,"9502":9503,"9503":9504,"9504":9505,"9505":9506,"9506":9507,"9507":9508,"9508":9509,"9509":9510,"9510":9511,"9511":9512,"9512":9513,"9513":9514,"9514":9515,"9515":9516,"9516":9517,"9517":9518,"9518":9519,"9519":9520,"9520":9521,"9521":9522,"9522":9523,"9523":9524,"9524":9525,"9525":9526,"9526":9527,"9527":9528,"9528":9529,"9529":9530,"9530":9531,"9531":9532,"9532":9533,"9533":9534,"9534":9535,"9535":9536,"9536":9537,"9537":9538,"9538":9539,"9539":9540,"9540":9541,"9541":9542,"9542":9543,"9543":9544,"9544":9545,"9545":9546,"9546":9547,"9547":9548,"9548":9549,"9549":9550,"9550":9551,"9551":9552,"9552":9553,"9553":9554,"9554":9555,"9555":9556,"9556":9557,"9557":9558,"9558":9559,"9559":9560,"9560":9561,"9561":9562,"9562":9563,"9563":9564,"9564":9565,"9565":9566,"9566":9567,"9567":9568,"9568":9569,"9569":9570,"9570":9571,"9571":9572,"9572":9573,"9573":9574,"9574":9575,"9575":9576,"9576":9577,"9577":9578,"9578":9579,"9579":9580,"9580":9581,"9581":9582,"9582":9583,"9583":9584,"9584":9585,"9585":9586,"9586":9587,"9587":9588,"9588":9589,"9589":9590,"9590":9591,"9591":9592,"9592":9593,"9593":9594,"9594":9595,"9595":9596,"9596":9597,"9597":9598,"9598":9599,"9599":9600,"9600":9601,"9601":9602,"9602":9603,"9603":9604,"9604":9605,"9605":9606,"9606":9607,"9607":9608,"9608":9609,"9609":9610,"9610":9611,"9611":9612,"9612":9613,"9613":9614,"9614":9615,"9615":9616,"9616":9617,"9617":9618,"9618":9619,"9619":9620,"9620":9621,"9621":9622,"9622":9623,"9623":9624,"9624":9625,"9625":9626,"9626":9627,"9627":9628,"9628":9629,"9629":9630,"9630":9631,"9631":9632,"9632":9633,"9633":9634,"9634":9635,"9635":9636,"9636":9637,"9637":9638,"9638":9639,"9639":9640,"9640":9641,"9641":9642,"9642":9643,"9643":9644,"9644":9645,"9645":9646,"9646":9647,"9647":9648,"9648":9649,"9649":9650,"9650":9651,"9651":9652,"9652":9653,"9653":9654,"9654":9655,"9655":9656,"9656":9657,"9657":9658,"9658":9659,"9659":9660,"9660":9661,"9661":9662,"9662":9663,"9663":9664,"9664":9665,"9665":9666,"9666":9667,"9667":9668,"9668":9669,"9669":9670,"9670":9671,"9671":9672,"9672":9673,"9673":9674,"9674":9675,"9675":9676,"9676":9677,"9677":9678,"9678":9679,"9679":9680,"9680":9681,"9681":9682,"9682":9683,"9683":9684,"9684":9685,"9685":9686,"9686":9687,"9687":9688,"9688":9689,"9689":9690,"9690":9691,"9691":9692,"9692":9693,"9693":9694,"9694":9695,"9695":9696,"9696":9697,"9697":9698,"9698":9699,"9699":9700,"9700":9701,"9701":9702,"9702":9703,"9703":9704,"9704":9705,"9705":9706,"9706":9707,"9707":9708,"9708":9709,"9709":9710,"9710":9711,"9711":9712,"9712":9713,"9713":9714,"9714":9715,"9715":9716,"9716":9717,"9717":9718,"9718":9719,"9719":9720,"9720":9721,"9721":9722,"9722":9723,"9723":9724,"9724":9725,"9725":9726,"9726":9727,"9727":9728,"9728":9729,"9729":9730,"9730":9731,"9731":9732,"9732":9733,"9733":9734,"9734":9735,"9735":9736,"9736":9737,"9737":9738,"9738":9739,"9739":9740,"9740":9741,"9741":9742,"9742":9743,"9743":9744,"9744":9745,"9745":9746,"9746":9747,"9747":9748,"9748":9749,"9749":9750,"9750":9751,"9751":9752,"9752":9753,"9753":9754,"9754":9755,"9755":9756,"9756":9757,"9757":9758,"9758":9759,"9759":9760,"9760":9761,"9761":9762,"9762":9763,"9763":9764,"9764":9765,"9765":9766,"9766":9767,"9767":9768,"9768":9769,"9769":9770,"9770":9771,"9771":9772,"9772":9773,"9773":9774,"9774":9775,"9775":9776,"9776":9777,"9777":9778,"9778":9779,"9779":9780,"9780":9781,"9781":9782,"9782":9783,"9783":9784,"9784":9785,"9785":9786,"9786":9787,"9787":9788,"9788":9789,"9789":9790,"9790":9791,"9791":9792,"9792":9793,"9793":9794,"9794":9795,"9795":9796,"9796":9797,"9797":9798,"9798":9799,"9799":9800,"9800":9801,"9801":9802,"9802":9803,"9803":9804,"9804":9805,"9805":9806,"9806":9807,"9807":9808,"9808":9809,"9809":9810,"9810":9811,"9811":9812,"9812":9813,"9813":9814,"9814":9815,"9815":9816,"9816":9817,"9817":9818,"9818":9819,"9819":9820,"9820":9821,"9821":9822,"9822":9823,"9823":9824,"9824":9825,"9825":9826,"9826":9827,"9827":9828,"9828":9829,"9829":9830,"9830":9831,"9831":9832,"9832":9833,"9833":9834,"9834":9835,"9835":9836,"9836":9837,"9837":9838,"9838":9839,"9839":9840,"9840":9841,"9841":9842,"9842":9843,"9843":9844,"9844":9845,"9845":9846,"9846":9847,"9847":9848,"9848":9849,"9849":9850,"9850":9851,"9851":9852,"9852":9853,"9853":9854,"9854":9855,"9855":9856,"9856":9857,"9857":9858,"9858":9859,"9859":9860,"9860":9861,"9861":9862,"9862":9863,"9863":9864,"9864":9865,"9865":9866,"9866":9867,"9867":9868,"9868":9869,"9869":9870,"9870":9871,"9871":9872,"9872":9873,"9873":9874,"9874":9875,"9875":9876,"9876":9877,"9877":9878,"9878":9879,"9879":9880,"9880":9881,"9881":9882,"9882":9883,"9883":9884,"9884":9885,"9885":9886,"9886":9887,"9887":9888,"9888":9889,"9889":9890,"9890":9891,"9891":9892,"9892":9893,"9893":9894,"9894":9895,"9895":9896,"9896":9897,"9897":9898,"9898":9899,"9899":9900,"9900":9901,"9901":9902,"9902":9903,"9903":9904,"9904":9905,"9905":9906,"9906":9907,"9907":9908,"9908":9909,"9909":9910,"9910":9911,"9911":9912,"9912":9913,"9913":9914,"9914":9915,"9915":9916,"9916":9917,"9917":9918,"9918":9919,"9919":9920,"9920":9921,"9921":9922,"9922":9923,"9923":9924,"9924":9925,"9925":9926,"9926":9927,"9927":9928,"9928":9929,"9929":9930,"9930":9931,"9931":9932,"9932":9933,"9933":9934,"9934":9935,"9935":9936,"9936":9937,"9937":9938,"9938":9939,"9939":9940,"9940":9941,"9941":9942,"9942":9943,"9943":9944,"9944":9945,"9945":9946,"9946":9947,"9947":9948,"9948":9949,"9949":9950,"9950":9951,"9951":9952,"9952":9953,"9953":9954,"9954":9955,"9955":9956,"9956":9957,"9957":9958,"9958":9959,"9959":9960,"9960":9961,"9961":9962,"9962":9963,"9963":9964,"9964":9965,"9965":9966,"9966":9967,"9967":9968,"9968":9969,"9969":9970,"9970":9971,"9971":9972,"9972":9973,"9973":9974,"9974":9975,"9975":9976,"9976":9977,"9977":9978,"9978":9979,"9979":9980,"9980":9981,"9981":9982,"9982":9983,"9983":9984,"9984":9985,"9985":9986,"9986":9987,"9987":9988,"9988":9989,"9989":9990,"9990":9991,"9991":9992,"9992":9993,"9993":9994,"9994":9995,"9995":9996,"9996":9997,"9997":9998,"9998":9999,"9999":10000,"10000":10001,"10001":10002,"10002":10003,"10003":10004,"10004":10005,"10005":10006,"10006":10007,"10007":10008,"10008":10009,"10009":10010,"10010":10011,"10011":10012,"10012":10013,"10013":10014,"10014":10015,"10015":10016,"10016":10017,"10017":10018,"10018":10019,"10019":10020,"10020":10021,"10021":10022,"10022":10023,"10023":10024,"10024":10025,"10025":10026,"10026":10027,"10027":10028,"10028":10029,"10029":10030,"10030":10031,"10031":10032,"10032":10033,"10033":10034,"10034":10035,"10035":10036,"10036":10037,"10037":10038,"10038":10039,"10039":10040,"10040":10041,"10041":10042,"10042":10043,"10043":10044,"10044":10045,"10045":10046,"10046":10047,"10047":10048,"10048":10049,"10049":10050,"10050":10051,"10051":10052,"10052":10053,"10053":10054,"10054":10055,"10055":10056,"10056":10057,"10057":10058,"10058":10059,"10059":10060,"10060":10061,"10061":10062,"10062":10063,"10063":10064,"10064":10065,"10065":10066,"10066":10067,"10067":10068,"10068":10069,"10069":10070,"10070":10071,"10071":10072,"10072":10073,"10073":10074,"10074":10075,"10075":10076,"10076":10077,"10077":10078,"10078":10079,"10079":10080,"10080":10081,"10081":10082,"10082":10083,"10083":10084,"10084":10085,"10085":10086,"10086":10087,"10087":10088,"10088":10089,"10089":10090,"10090":10091,"10091":10092,"10092":10093,"10093":10094,"10094":10095,"10095":10096,"10096":10097,"10097":10098,"10098":10099,"10099":10100,"10100":10101,"10101":10102,"10102":10103,"10103":10104,"10104":10105,"10105":10106,"10106":10107,"10107":10108,"10108":10109,"10109":10110,"10110":10111,"10111":10112,"10112":10113,"10113":10114,"10114":10115,"10115":10116,"10116":10117,"10117":10118,"10118":10119,"10119":10120,"10120":10121,"10121":10122,"10122":10123,"10123":10124,"10124":10125,"10125":10126,"10126":10127,"10127":10128,"10128":10129,"10129":10130,"10130":10131,"10131":10132,"10132":10133,"10133":10134,"10134":10135,"10135":10136,"10136":10137,"10137":10138,"10138":10139,"10139":10140,"10140":10141,"10141":10142,"10142":10143,"10143":10144,"10144":10145,"10145":10146,"10146":10147,"10147":10148,"10148":10149,"10149":10150,"10150":10151,"10151":10152,"10152":10153,"10153":10154,"10154":10155,"10155":10156,"10156":10157,"10157":10158,"10158":10159,"10159":10160,"10160":10161,"10161":10162,"10162":10163,"10163":10164,"10164":10165,"10165":10166,"10166":10167,"10167":10168,"10168":10169,"10169":10170,"10170":10171,"10171":10172,"10172":10173,"10173":10174,"10174":10175,"10175":10176,"10176":10177,"10177":10178,"10178":10179,"10179":10180,"10180":10181,"10181":10182,"10182":10183,"10183":10184,"10184":10185,"10185":10186,"10186":10187,"10187":10188,"10188":10189,"10189":10190,"10190":10191,"10191":10192,"10192":10193,"10193":10194,"10194":10195,"10195":10196,"10196":10197,"10197":10198,"10198":10199,"10199":10200,"10200":10201,"10201":10202,"10202":10203,"10203":10204,"10204":10205,"10205":10206,"10206":10207,"10207":10208,"10208":10209,"10209":10210,"10210":10211,"10211":10212,"10212":10213,"10213":10214,"10214":10215,"10215":10216,"10216":10217,"10217":10218,"10218":10219,"10219":10220,"10220":10221,"10221":10222,"10222":10223,"10223":10224,"10224":10225,"10225":10226,"10226":10227,"10227":10228,"10228":10229,"10229":10230,"10230":10231,"10231":10232,"10232":10233,"10233":10234,"10234":10235,"10235":10236,"10236":10237,"10237":10238,"10238":10239,"10239":10240,"10240":10241,"10241":10242,"10242":10243,"10243":10244,"10244":10245,"10245":10246,"10246":10247,"10247":10248,"10248":10249,"10249":10250,"10250":10251,"10251":10252,"10252":10253,"10253":10254,"10254":10255,"10255":10256,"10256":10257,"10257":10258,"10258":10259,"10259":10260,"10260":10261,"10261":10262,"10262":10263,"10263":10264,"10264":10265,"10265":10266,"10266":10267,"10267":10268,"10268":10269,"10269":10270,"10270":10271,"10271":10272,"10272":10273,"10273":10274,"10274":10275,"10275":10276,"10276":10277,"10277":10278,"10278":10279,"10279":10280,"10280":10281,"10281":10282,"10282":10283,"10283":10284,"10284":10285,"10285":10286,"10286":10287,"10287":10288,"10288":10289,"10289":10290,"10290":10291,"10291":10292,"10292":10293,"10293":10294,"10294":10295,"10295":10296,"10296":10297,"10297":10298,"10298":10299,"10299":10300,"10300":10301,"10301":10302,"10302":10303,"10303":10304,"10304":10305,"10305":10306,"10306":10307,"10307":10308,"10308":10309,"10309":10310,"10310":10311,"10311":10312,"10312":10313,"10313":10314,"10314":10315,"10315":10316,"10316":10317,"10317":10318,"10318":10319,"10319":10320,"10320":10321,"10321":10322,"10322":10323,"10323":10324,"10324":10325,"10325":10326,"10326":10327,"10327":10328,"10328":10329,"10329":10330,"10330":10331,"10331":10332,"10332":10333,"10333":10334,"10334":10335,"10335":10336,"10336":10337,"10337":10338,"10338":10339,"10339":10340,"10340":10341,"10341":10342,"10342":10343,"10343":10344,"10344":10345,"10345":10346,"10346":10347,"10347":10348,"10348":10349,"10349":10350,"10350":10351,"10351":10352,"10352":10353,"10353":10354,"10354":10355,"10355":10356,"10356":10357,"10357":10358,"10358":10359,"10359":10360,"10360":10361,"10361":10362,"10362":10363,"10363":10364,"10364":10365,"10365":10366,"10366":10367,"10367":10368,"10368":10369,"10369":10370,"10370":10371,"10371":10372,"10372":10373,"10373":10374,"10374":10375,"10375":10376,"10376":10377,"10377":10378,"10378":10379,"10379":10380,"10380":10381,"10381":10382,"10382":10383,"10383":10384,"10384":10385,"10385":10386,"10386":10387,"10387":10388,"10388":10389,"10389":10390,"10390":10391,"10391":10392,"10392":10393,"10393":10394,"10394":10395,"10395":10396,"10396":10397,"10397":10398,"10398":10399,"10399":10400,"10400":10401,"10401":10402,"10402":10403,"10403":10404,"10404":10405,"10405":10406,"10406":10407,"10407":10408,"10408":10409,"10409":10410,"10410":10411,"10411":10412,"10412":10413,"10413":10414,"10414":10415,"10415":10416,"10416":10417,"10417":10418,"10418":10419,"10419":10420,"10420":10421,"10421":10422,"10422":10423,"10423":10424,"10424":10425,"10425":10426,"10426":10427,"10427":10428,"10428":10429,"10429":10430,"10430":10431,"10431":10432,"10432":10433,"10433":10434,"10434":10435,"10435":10436,"10436":10437,"10437":10438,"10438":10439,"10439":10440,"10440":10441,"10441":10442,"10442":10443,"10443":10444,"10444":10445,"10445":10446,"10446":10447,"10447":10448,"10448":10449,"10449":10450,"10450":10451,"10451":10452,"10452":10453,"10453":10454,"10454":10455,"10455":10456,"10456":10457,"10457":10458,"10458":10459,"10459":10460,"10460":10461,"10461":10462,"10462":10463,"10463":10464,"10464":10465,"10465":10466,"10466":10467,"10467":10468,"10468":10469,"10469":10470,"10470":10471,"10471":10472,"10472":10473,"10473":10474,"10474":10475,"10475":10476,"10476":10477,"10477":10478,"10478":10479,"10479":10480,"10480":10481,"10481":10482,"10482":10483,"10483":10484,"10484":10485,"10485":10486,"10486":10487,"10487":10488,"10488":10489,"10489":10490,"10490":10491,"10491":10492,"10492":10493,"10493":10494,"10494":10495,"10495":10496,"10496":10497,"10497":10498,"10498":10499,"10499":10500,"10500":10501,"10501":10502,"10502":10503,"10503":10504,"10504":10505,"10505":10506,"10506":10507,"10507":10508,"10508":10509,"10509":10510,"10510":10511,"10511":10512,"10512":10513,"10513":10514,"10514":10515,"10515":10516,"10516":10517,"10517":10518,"10518":10519,"10519":10520,"10520":10521,"10521":10522,"10522":10523,"10523":10524,"10524":10525,"10525":10526,"10526":10527,"10527":10528,"10528":10529,"10529":10530,"10530":10531,"10531":10532,"10532":10533,"10533":10534,"10534":10535,"10535":10536,"10536":10537,"10537":10538,"10538":10539,"10539":10540,"10540":10541,"10541":10542,"10542":10543,"10543":10544,"10544":10545,"10545":10546,"10546":10547,"10547":10548,"10548":10549,"10549":10550,"10550":10551,"10551":10552,"10552":10553,"10553":10554,"10554":10555,"10555":10556,"10556":10557,"10557":10558,"10558":10559,"10559":10560,"10560":10561,"10561":10562,"10562":10563,"10563":10564,"10564":10565,"10565":10566,"10566":10567,"10567":10568,"10568":10569,"10569":10570,"10570":10571,"10571":10572,"10572":10573,"10573":10574,"10574":10575,"10575":10576,"10576":10577,"10577":10578,"10578":10579,"10579":10580,"10580":10581,"10581":10582,"10582":10583,"10583":10584,"10584":10585,"10585":10586,"10586":10587,"10587":10588,"10588":10589,"10589":10590,"10590":10591,"10591":10592,"10592":10593,"10593":10594,"10594":10595,"10595":10596,"10596":10597,"10597":10598,"10598":10599,"10599":10600,"10600":10601,"10601":10602,"10602":10603,"10603":10604,"10604":10605,"10605":10606,"10606":10607,"10607":10608,"10608":10609,"10609":10610,"10610":10611,"10611":10612,"10612":10613,"10613":10614,"10614":10615,"10615":10616,"10616":10617,"10617":10618,"10618":10619,"10619":10620,"10620":10621,"10621":10622,"10622":10623,"10623":10624,"10624":10625,"10625":10626,"10626":10627,"10627":10628,"10628":10629,"10629":10630,"10630":10631,"10631":10632,"10632":10633,"10633":10634,"10634":10635,"10635":10636,"10636":10637,"10637":10638,"10638":10639,"10639":10640,"10640":10641,"10641":10642,"10642":10643,"10643":10644,"10644":10645,"10645":10646,"10646":10647,"10647":10648,"10648":10649,"10649":10650,"10650":10651,"10651":10652,"10652":10653,"10653":10654,"10654":10655,"10655":10656,"10656":10657,"10657":10658,"10658":10659,"10659":10660,"10660":10661,"10661":10662,"10662":10663,"10663":10664,"10664":10665,"10665":10666,"10666":10667,"10667":10668,"10668":10669,"10669":10670,"10670":10671,"10671":10672,"10672":10673,"10673":10674,"10674":10675,"10675":10676,"10676":10677,"10677":10678,"10678":10679,"10679":10680,"10680":10681,"10681":10682,"10682":10683,"10683":10684,"10684":10685,"10685":10686,"10686":10687,"10687":10688,"10688":10689,"10689":10690,"10690":10691,"10691":10692,"10692":10693,"10693":10694,"10694":10695,"10695":10696,"10696":10697,"10697":10698,"10698":10699,"10699":10700,"10700":10701,"10701":10702,"10702":10703,"10703":10704,"10704":10705,"10705":10706,"10706":10707,"10707":10708,"10708":10709,"10709":10710,"10710":10711,"10711":10712,"10712":10713,"10713":10714,"10714":10715,"10715":10716,"10716":10717,"10717":10718,"10718":10719,"10719":10720,"10720":10721,"10721":10722,"10722":10723,"10723":10724,"10724":10725,"10725":10726,"10726":10727,"10727":10728,"10728":10729,"10729":10730,"10730":10731,"10731":10732,"10732":10733,"10733":10734,"10734":10735,"10735":10736,"10736":10737,"10737":10738,"10738":10739,"10739":10740,"10740":10741,"10741":10742,"10742":10743,"10743":10744,"10744":10745,"10745":10746,"10746":10747,"10747":10748,"10748":10749,"10749":10750,"10750":10751,"10751":10752,"10752":10753,"10753":10754,"10754":10755,"10755":10756,"10756":10757,"10757":10758,"10758":10759,"10759":10760,"10760":10761,"10761":10762,"10762":10763,"10763":10764,"10764":10765,"10765":10766,"10766":10767,"10767":10768,"10768":10769,"10769":10770,"10770":10771,"10771":10772,"10772":10773,"10773":10774,"10774":10775,"10775":10776,"10776":10777,"10777":10778,"10778":10779,"10779":10780,"10780":10781,"10781":10782,"10782":10783,"10783":10784,"10784":10785,"10785":10786,"10786":10787,"10787":10788,"10788":10789,"10789":10790,"10790":10791,"10791":10792,"10792":10793,"10793":10794,"10794":10795,"10795":10796,"10796":10797,"10797":10798,"10798":10799,"10799":10800,"10800":10801,"10801":10802,"10802":10803,"10803":10804,"10804":10805,"10805":10806,"10806":10807,"10807":10808,"10808":10809,"10809":10810,"10810":10811,"10811":10812,"10812":10813,"10813":10814,"10814":10815,"10815":10816,"10816":10817,"10817":10818,"10818":10819,"10819":10820,"10820":10821,"10821":10822,"10822":10823,"10823":10824,"10824":10825,"10825":10826,"10826":10827,"10827":10828,"10828":10829,"10829":10830,"10830":10831,"10831":10832,"10832":10833,"10833":10834,"10834":10835,"10835":10836,"10836":10837,"10837":10838,"10838":10839,"10839":10840,"10840":10841,"10841":10842,"10842":10843,"10843":10844,"10844":10845,"10845":10846,"10846":10847,"10847":10848,"10848":10849,"10849":10850,"10850":10851,"10851":10852,"10852":10853,"10853":10854,"10854":10855,"10855":10856,"10856":10857,"10857":10858,"10858":10859,"10859":10860,"10860":10861,"10861":10862,"10862":10863,"10863":10864,"10864":10865,"10865":10866,"10866":10867,"10867":10868,"10868":10869,"10869":10870,"10870":10871,"10871":10872,"10872":10873,"10873":10874,"10874":10875,"10875":10876,"10876":10877,"10877":10878,"10878":10879,"10879":10880,"10880":10881,"10881":10882,"10882":10883,"10883":10884,"10884":10885,"10885":10886,"10886":10887,"10887":10888,"10888":10889,"10889":10890,"10890":10891,"10891":10892,"10892":10893,"10893":10894,"10894":10895,"10895":10896,"10896":10897,"10897":10898,"10898":10899,"10899":10900,"10900":10901,"10901":10902,"10902":10903,"10903":10904,"10904":10905,"10905":10906,"10906":10907,"10907":10908,"10908":10909,"10909":10910,"10910":10911,"10911":10912,"10912":10913,"10913":10914,"10914":10915,"10915":10916,"10916":10917,"10917":10918,"10918":10919,"10919":10920,"10920":10921,"10921":10922,"10922":10923,"10923":10924,"10924":10925,"10925":10926,"10926":10927,"10927":10928,"10928":10929,"10929":10930,"10930":10931,"10931":10932,"10932":10933,"10933":10934,"10934":10935,"10935":10936,"10936":10937,"10937":10938,"10938":10939,"10939":10940,"10940":10941,"10941":10942,"10942":10943,"10943":10944,"10944":10945,"10945":10946,"10946":10947,"10947":10948,"10948":10949,"10949":10950,"10950":10951,"10951":10952,"10952":10953,"10953":10954,"10954":10955,"10955":10956,"10956":10957,"10957":10958,"10958":10959,"10959":10960,"10960":10961,"10961":10962,"10962":10963,"10963":10964,"10964":10965,"10965":10966,"10966":10967,"10967":10968,"10968":10969,"10969":10970,"10970":10971,"10971":10972,"10972":10973,"10973":10974,"10974":10975,"10975":10976,"10976":10977,"10977":10978,"10978":10979,"10979":10980,"10980":10981,"10981":10982,"10982":10983,"10983":10984,"10984":10985,"10985":10986,"10986":10987,"10987":10988,"10988":10989,"10989":10990,"10990":10991,"10991":10992,"10992":10993,"10993":10994,"10994":10995,"10995":10996,"10996":10997,"10997":10998,"10998":10999,"10999":11000,"11000":11001,"11001":11002,"11002":11003,"11003":11004,"11004":11005,"11005":11006,"11006":11007,"11007":11008,"11008":11009,"11009":11010,"11010":11011,"11011":11012,"11012":11013,"11013":11014,"11014":11015,"11015":11016,"11016":11017,"11017":11018,"11018":11019,"11019":11020,"11020":11021,"11021":11022,"11022":11023,"11023":11024,"11024":11025,"11025":11026,"11026":11027,"11027":11028,"11028":11029,"11029":11030,"11030":11031,"11031":11032,"11032":11033,"11033":11034,"11034":11035,"11035":11036,"11036":11037,"11037":11038,"11038":11039,"11039":11040,"11040":11041,"11041":11042,"11042":11043,"11043":11044,"11044":11045,"11045":11046,"11046":11047,"11047":11048,"11048":11049,"11049":11050,"11050":11051,"11051":11052,"11052":11053,"11053":11054,"11054":11055,"11055":11056,"11056":11057,"11057":11058,"11058":11059,"11059":11060,"11060":11061,"11061":11062,"11062":11063,"11063":11064,"11064":11065,"11065":11066,"11066":11067,"11067":11068,"11068":11069,"11069":11070,"11070":11071,"11071":11072,"11072":11073,"11073":11074,"11074":11075,"11075":11076,"11076":11077,"11077":11078,"11078":11079,"11079":11080,"11080":11081,"11081":11082,"11082":11083,"11083":11084,"11084":11085,"11085":11086,"11086":11087,"11087":11088,"11088":11089,"11089":11090,"11090":11091,"11091":11092,"11092":11093,"11093":11094,"11094":11095,"11095":11096,"11096":11097,"11097":11098,"11098":11099,"11099":11100,"11100":11101,"11101":11102,"11102":11103,"11103":11104,"11104":11105,"11105":11106,"11106":11107,"11107":11108,"11108":11109,"11109":11110,"11110":11111,"11111":11112,"11112":11113,"11113":11114,"11114":11115,"11115":11116,"11116":11117,"11117":11118,"11118":11119,"11119":11120,"11120":11121,"11121":11122,"11122":11123,"11123":11124,"11124":11125,"11125":11126,"11126":11127,"11127":11128,"11128":11129,"11129":11130,"11130":11131,"11131":11132,"11132":11133,"11133":11134,"11134":11135,"11135":11136,"11136":11137,"11137":11138,"11138":11139,"11139":11140,"11140":11141,"11141":11142,"11142":11143,"11143":11144,"11144":11145,"11145":11146,"11146":11147,"11147":11148,"11148":11149,"11149":11150,"11150":11151,"11151":11152,"11152":11153,"11153":11154,"11154":11155,"11155":11156,"11156":11157,"11157":11158,"11158":11159,"11159":11160,"11160":11161,"11161":11162,"11162":11163,"11163":11164,"11164":11165,"11165":11166,"11166":11167,"11167":11168,"11168":11169,"11169":11170,"11170":11171,"11171":11172,"11172":11173,"11173":11174,"11174":11175,"11175":11176,"11176":11177,"11177":11178,"11178":11179,"11179":11180,"11180":11181,"11181":11182,"11182":11183,"11183":11184,"11184":11185,"11185":11186,"11186":11187,"11187":11188,"11188":11189,"11189":11190,"11190":11191,"11191":11192,"11192":11193,"11193":11194,"11194":11195,"11195":11196,"11196":11197,"11197":11198,"11198":11199,"11199":11200,"11200":11201,"11201":11202,"11202":11203,"11203":11204,"11204":11205,"11205":11206,"11206":11207,"11207":11208,"11208":11209,"11209":11210,"11210":11211,"11211":11212,"11212":11213,"11213":11214,"11214":11215,"11215":11216,"11216":11217,"11217":11218,"11218":11219,"11219":11220,"11220":11221,"11221":11222,"11222":11223,"11223":11224,"11224":11225,"11225":11226,"11226":11227,"11227":11228,"11228":11229,"11229":11230,"11230":11231,"11231":11232,"11232":11233,"11233":11234,"11234":11235,"11235":11236,"11236":11237,"11237":11238,"11238":11239,"11239":11240,"11240":11241,"11241":11242,"11242":11243,"11243":11244,"11244":11245,"11245":11246,"11246":11247,"11247":11248,"11248":11249,"11249":11250,"11250":11251,"11251":11252,"11252":11253,"11253":11254,"11254":11255,"11255":11256,"11256":11257,"11257":11258,"11258":11259,"11259":11260,"11260":11261,"11261":11262,"11262":11263,"11263":11264,"11264":11265,"11265":11266,"11266":11267,"11267":11268,"11268":11269,"11269":11270,"11270":11271,"11271":11272,"11272":11273,"11273":11274,"11274":11275,"11275":11276,"11276":11277,"11277":11278,"11278":11279,"11279":11280,"11280":11281,"11281":11282,"11282":11283,"11283":11284,"11284":11285,"11285":11286,"11286":11287,"11287":11288,"11288":11289,"11289":11290,"11290":11291,"11291":11292,"11292":11293,"11293":11294,"11294":11295,"11295":11296,"11296":11297,"11297":11298,"11298":11299,"11299":11300,"11300":11301,"11301":11302,"11302":11303,"11303":11304,"11304":11305,"11305":11306,"11306":11307,"11307":11308,"11308":11309,"11309":11310,"11310":11311,"11311":11312,"11312":11313,"11313":11314,"11314":11315,"11315":11316,"11316":11317,"11317":11318,"11318":11319,"11319":11320,"11320":11321,"11321":11322,"11322":11323,"11323":11324,"11324":11325,"11325":11326,"11326":11327,"11327":11328,"11328":11329,"11329":11330,"11330":11331,"11331":11332,"11332":11333,"11333":11334,"11334":11335,"11335":11336,"11336":11337,"11337":11338,"11338":11339,"11339":11340,"11340":11341,"11341":11342,"11342":11343,"11343":11344,"11344":11345,"11345":11346,"11346":11347,"11347":11348,"11348":11349,"11349":11350,"11350":11351,"11351":11352,"11352":11353,"11353":11354,"11354":11355,"11355":11356,"11356":11357,"11357":11358,"11358":11359,"11359":11360,"11360":11361,"11361":11362,"11362":11363,"11363":11364,"11364":11365,"11365":11366,"11366":11367,"11367":11368,"11368":11369,"11369":11370,"11370":11371,"11371":11372,"11372":11373,"11373":11374,"11374":11375,"11375":11376,"11376":11377,"11377":11378,"11378":11379,"11379":11380,"11380":11381,"11381":11382,"11382":11383,"11383":11384,"11384":11385,"11385":11386,"11386":11387,"11387":11388,"11388":11389,"11389":11390,"11390":11391,"11391":11392,"11392":11393,"11393":11394,"11394":11395,"11395":11396,"11396":11397,"11397":11398,"11398":11399,"11399":11400,"11400":11401,"11401":11402,"11402":11403,"11403":11404,"11404":11405,"11405":11406,"11406":11407,"11407":11408,"11408":11409,"11409":11410,"11410":11411,"11411":11412,"11412":11413,"11413":11414,"11414":11415,"11415":11416,"11416":11417,"11417":11418,"11418":11419,"11419":11420,"11420":11421,"11421":11422,"11422":11423,"11423":11424,"11424":11425,"11425":11426,"11426":11427,"11427":11428,"11428":11429,"11429":11430,"11430":11431,"11431":11432,"11432":11433,"11433":11434,"11434":11435,"11435":11436,"11436":11437,"11437":11438,"11438":11439,"11439":11440,"11440":11441,"11441":11442,"11442":11443,"11443":11444,"11444":11445,"11445":11446,"11446":11447,"11447":11448,"11448":11449,"11449":11450,"11450":11451,"11451":11452,"11452":11453,"11453":11454,"11454":11455,"11455":11456,"11456":11457,"11457":11458,"11458":11459,"11459":11460,"11460":11461,"11461":11462,"11462":11463,"11463":11464,"11464":11465,"11465":11466,"11466":11467,"11467":11468,"11468":11469,"11469":11470,"11470":11471,"11471":11472,"11472":11473,"11473":11474,"11474":11475,"11475":11476,"11476":11477,"11477":11478,"11478":11479,"11479":11480,"11480":11481,"11481":11482,"11482":11483,"11483":11484,"11484":11485,"11485":11486,"11486":11487,"11487":11488,"11488":11489,"11489":11490,"11490":11491,"11491":11492,"11492":11493,"11493":11494,"11494":11495,"11495":11496,"11496":11497,"11497":11498,"11498":11499,"11499":11500,"11500":11501,"11501":11502,"11502":11503,"11503":11504,"11504":11505,"11505":11506,"11506":11507,"11507":11508,"11508":11509,"11509":11510,"11510":11511,"11511":11512,"11512":11513,"11513":11514,"11514":11515,"11515":11516,"11516":11517,"11517":11518,"11518":11519,"11519":11520,"11520":11521,"11521":11522,"11522":11523,"11523":11524,"11524":11525,"11525":11526,"11526":11527,"11527":11528,"11528":11529,"11529":11530,"11530":11531,"11531":11532,"11532":11533,"11533":11534,"11534":11535,"11535":11536,"11536":11537,"11537":11538,"11538":11539,"11539":11540,"11540":11541,"11541":11542,"11542":11543,"11543":11544,"11544":11545,"11545":11546,"11546":11547,"11547":11548,"11548":11549,"11549":11550,"11550":11551,"11551":11552,"11552":11553,"11553":11554,"11554":11555,"11555":11556,"11556":11557,"11557":11558,"11558":11559,"11559":11560,"11560":11561,"11561":11562,"11562":11563,"11563":11564,"11564":11565,"11565":11566,"11566":11567,"11567":11568,"11568":11569,"11569":11570,"11570":11571,"11571":11572,"11572":11573,"11573":11574,"11574":11575,"11575":11576,"11576":11577,"11577":11578,"11578":11579,"11579":11580,"11580":11581,"11581":11582,"11582":11583,"11583":11584,"11584":11585,"11585":11586,"11586":11587,"11587":11588,"11588":11589,"11589":11590,"11590":11591,"11591":11592,"11592":11593,"11593":11594,"11594":11595,"11595":11596,"11596":11597,"11597":11598,"11598":11599,"11599":11600,"11600":11601,"11601":11602,"11602":11603,"11603":11604,"11604":11605,"11605":11606,"11606":11607,"11607":11608,"11608":11609,"11609":11610,"11610":11611,"11611":11612,"11612":11613,"11613":11614,"11614":11615,"11615":11616,"11616":11617,"11617":11618,"11618":11619,"11619":11620,"11620":11621,"11621":11622,"11622":11623,"11623":11624,"11624":11625,"11625":11626,"11626":11627,"11627":11628,"11628":11629,"11629":11630,"11630":11631,"11631":11632,"11632":11633,"11633":11634,"11634":11635,"11635":11636,"11636":11637,"11637":11638,"11638":11639,"11639":11640,"11640":11641,"11641":11642,"11642":11643,"11643":11644,"11644":11645,"11645":11646,"11646":11647,"11647":11648,"11648":11649,"11649":11650,"11650":11651,"11651":11652,"11652":11653,"11653":11654,"11654":11655,"11655":11656,"11656":11657,"11657":11658,"11658":11659,"11659":11660,"11660":11661,"11661":11662,"11662":11663,"11663":11664,"11664":11665,"11665":11666,"11666":11667,"11667":11668,"11668":11669,"11669":11670,"11670":11671,"11671":11672,"11672":11673,"11673":11674,"11674":11675,"11675":11676,"11676":11677,"11677":11678,"11678":11679,"11679":11680,"11680":11681,"11681":11682,"11682":11683,"11683":11684,"11684":11685,"11685":11686,"11686":11687,"11687":11688,"11688":11689,"11689":11690,"11690":11691,"11691":11692,"11692":11693,"11693":11694,"11694":11695,"11695":11696,"11696":11697,"11697":11698,"11698":11699,"11699":11700,"11700":11701,"11701":11702,"11702":11703,"11703":11704,"11704":11705,"11705":11706,"11706":11707,"11707":11708,"11708":11709,"11709":11710,"11710":11711,"11711":11712,"11712":11713,"11713":11714,"11714":11715,"11715":11716,"11716":11717,"11717":11718,"11718":11719,"11719":11720,"11720":11721,"11721":11722,"11722":11723,"11723":11724,"11724":11725,"11725":11726,"11726":11727,"11727":11728,"11728":11729,"11729":11730,"11730":11731,"11731":11732,"11732":11733,"11733":11734,"11734":11735,"11735":11736,"11736":11737,"11737":11738,"11738":11739,"11739":11740,"11740":11741,"11741":11742,"11742":11743,"11743":11744,"11744":11745,"11745":11746,"11746":11747,"11747":11748,"11748":11749,"11749":11750,"11750":11751,"11751":11752,"11752":11753,"11753":11754,"11754":11755,"11755":11756,"11756":11757,"11757":11758,"11758":11759,"11759":11760,"11760":11761,"11761":11762,"11762":11763,"11763":11764,"11764":11765,"11765":11766,"11766":11767,"11767":11768,"11768":11769,"11769":11770,"11770":11771,"11771":11772,"11772":11773,"11773":11774,"11774":11775,"11775":11776,"11776":11777,"11777":11778,"11778":11779,"11779":11780,"11780":11781,"11781":11782,"11782":11783,"11783":11784,"11784":11785,"11785":11786,"11786":11787,"11787":11788,"11788":11789,"11789":11790,"11790":11791,"11791":11792,"11792":11793,"11793":11794,"11794":11795,"11795":11796,"11796":11797,"11797":11798,"11798":11799,"11799":11800,"11800":11801,"11801":11802,"11802":11803,"11803":11804,"11804":11805,"11805":11806,"11806":11807,"11807":11808,"11808":11809,"11809":11810,"11810":11811,"11811":11812,"11812":11813,"11813":11814,"11814":11815,"11815":11816,"11816":11817,"11817":11818,"11818":11819,"11819":11820,"11820":11821,"11821":11822,"11822":11823,"11823":11824,"11824":11825,"11825":11826,"11826":11827,"11827":11828,"11828":11829,"11829":11830,"11830":11831,"11831":11832,"11832":11833,"11833":11834,"11834":11835,"11835":11836,"11836":11837,"11837":11838,"11838":11839,"11839":11840,"11840":11841,"11841":11842,"11842":11843,"11843":11844,"11844":11845,"11845":11846,"11846":11847,"11847":11848,"11848":11849,"11849":11850,"11850":11851,"11851":11852,"11852":11853,"11853":11854,"11854":11855,"11855":11856,"11856":11857,"11857":11858,"11858":11859,"11859":11860,"11860":11861,"11861":11862,"11862":11863,"11863":11864,"11864":11865,"11865":11866,"11866":11867,"11867":11868,"11868":11869,"11869":11870,"11870":11871,"11871":11872,"11872":11873,"11873":11874,"11874":11875,"11875":11876,"11876":11877,"11877":11878,"11878":11879,"11879":11880,"11880":11881,"11881":11882,"11882":11883,"11883":11884,"11884":11885,"11885":11886,"11886":11887,"11887":11888,"11888":11889,"11889":11890,"11890":11891,"11891":11892,"11892":11893,"11893":11894,"11894":11895,"11895":11896,"11896":11897,"11897":11898,"11898":11899,"11899":11900,"11900":11901,"11901":11902,"11902":11903,"11903":11904,"11904":11905,"11905":11906,"11906":11907,"11907":11908,"11908":11909,"11909":11910,"11910":11911,"11911":11912,"11912":11913,"11913":11914,"11914":11915,"11915":11916,"11916":11917,"11917":11918,"11918":11919,"11919":11920,"11920":11921,"11921":11922,"11922":11923,"11923":11924,"11924":11925,"11925":11926,"11926":11927,"11927":11928,"11928":11929,"11929":11930,"11930":11931,"11931":11932,"11932":11933,"11933":11934,"11934":11935,"11935":11936,"11936":11937,"11937":11938,"11938":11939,"11939":11940,"11940":11941,"11941":11942,"11942":11943,"11943":11944,"11944":11945,"11945":11946,"11946":11947,"11947":11948,"11948":11949,"11949":11950,"11950":11951,"11951":11952,"11952":11953,"11953":11954,"11954":11955,"11955":11956,"11956":11957,"11957":11958,"11958":11959,"11959":11960,"11960":11961,"11961":11962,"11962":11963,"11963":11964,"11964":11965,"11965":11966,"11966":11967,"11967":11968,"11968":11969,"11969":11970,"11970":11971,"11971":11972,"11972":11973,"11973":11974,"11974":11975,"11975":11976,"11976":11977,"11977":11978,"11978":11979,"11979":11980,"11980":11981,"11981":11982,"11982":11983,"11983":11984,"11984":11985,"11985":11986,"11986":11987,"11987":11988,"11988":11989,"11989":11990,"11990":11991,"11991":11992,"11992":11993,"11993":11994,"11994":11995,"11995":11996,"11996":11997,"11997":11998,"11998":11999,"11999":12000,"12000":12001,"12001":12002,"12002":12003,"12003":12004,"12004":12005,"12005":12006,"12006":12007,"12007":12008,"12008":12009,"12009":12010,"12010":12011,"12011":12012,"12012":12013,"12013":12014,"12014":12015,"12015":12016,"12016":12017,"12017":12018,"12018":12019,"12019":12020,"12020":12021,"12021":12022,"12022":12023,"12023":12024,"12024":12025,"12025":12026,"12026":12027,"12027":12028,"12028":12029,"12029":12030,"12030":12031,"12031":12032,"12032":12033,"12033":12034,"12034":12035,"12035":12036,"12036":12037,"12037":12038,"12038":12039,"12039":12040,"12040":12041,"12041":12042,"12042":12043,"12043":12044,"12044":12045,"12045":12046,"12046":12047,"12047":12048,"12048":12049,"12049":12050,"12050":12051,"12051":12052,"12052":12053,"12053":12054,"12054":12055,"12055":12056,"12056":12057,"12057":12058,"12058":12059,"12059":12060,"12060":12061,"12061":12062,"12062":12063,"12063":12064,"12064":12065,"12065":12066,"12066":12067,"12067":12068,"12068":12069,"12069":12070,"12070":12071,"12071":12072,"12072":12073,"12073":12074,"12074":12075,"12075":12076,"12076":12077,"12077":12078,"12078":12079,"12079":12080,"12080":12081,"12081":12082,"12082":12083,"12083":12084,"12084":12085,"12085":12086,"12086":12087,"12087":12088,"12088":12089,"12089":12090,"12090":12091,"12091":12092,"12092":12093,"12093":12094,"12094":12095,"12095":12096,"12096":12097,"12097":12098,"12098":12099,"12099":12100,"12100":12101,"12101":12102,"12102":12103,"12103":12104,"12104":12105,"12105":12106,"12106":12107,"12107":12108,"12108":12109,"12109":12110,"12110":12111,"12111":12112,"12112":12113,"12113":12114,"12114":12115,"12115":12116,"12116":12117,"12117":12118,"12118":12119,"12119":12120,"12120":12121,"12121":12122,"12122":12123,"12123":12124,"12124":12125,"12125":12126,"12126":12127,"12127":12128,"12128":12129,"12129":12130,"12130":12131,"12131":12132,"12132":12133,"12133":12134,"12134":12135,"12135":12136,"12136":12137,"12137":12138,"12138":12139,"12139":12140,"12140":12141,"12141":12142,"12142":12143,"12143":12144,"12144":12145,"12145":12146,"12146":12147,"12147":12148,"12148":12149,"12149":12150,"12150":12151,"12151":12152,"12152":12153,"12153":12154,"12154":12155,"12155":12156,"12156":12157,"12157":12158,"12158":12159,"12159":12160,"12160":12161,"12161":12162,"12162":12163,"12163":12164,"12164":12165,"12165":12166,"12166":12167,"12167":12168,"12168":12169,"12169":12170,"12170":12171,"12171":12172,"12172":12173,"12173":12174,"12174":12175,"12175":12176,"12176":12177,"12177":12178,"12178":12179,"12179":12180,"12180":12181,"12181":12182,"12182":12183,"12183":12184,"12184":12185,"12185":12186,"12186":12187,"12187":12188,"12188":12189,"12189":12190,"12190":12191,"12191":12192,"12192":12193,"12193":12194,"12194":12195,"12195":12196,"12196":12197,"12197":12198,"12198":12199,"12199":12200,"12200":12201,"12201":12202,"12202":12203,"12203":12204,"12204":12205,"12205":12206,"12206":12207,"12207":12208,"12208":12209,"12209":12210,"12210":12211,"12211":12212,"12212":12213,"12213":12214,"12214":12215,"12215":12216,"12216":12217,"12217":12218,"12218":12219,"12219":12220,"12220":12221,"12221":12222,"12222":12223,"12223":12224,"12224":12225,"12225":12226,"12226":12227,"12227":12228,"12228":12229,"12229":12230,"12230":12231,"12231":12232,"12232":12233,"12233":12234,"12234":12235,"12235":12236,"12236":12237,"12237":12238,"12238":12239,"12239":12240,"12240":12241,"12241":12242,"12242":12243,"12243":12244,"12244":12245,"12245":12246,"12246":12247,"12247":12248,"12248":12249,"12249":12250,"12250":12251,"12251":12252,"12252":12253,"12253":12254,"12254":12255,"12255":12256,"12256":12257,"12257":12258,"12258":12259,"12259":12260,"12260":12261,"12261":12262,"12262":12263,"12263":12264,"12264":12265,"12265":12266,"12266":12267,"12267":12268,"12268":12269,"12269":12270,"12270":12271,"12271":12272,"12272":12273,"12273":12274,"12274":12275,"12275":12276,"12276":12277,"12277":12278,"12278":12279,"12279":12280,"12280":12281,"12281":12282,"12282":12283,"12283":12284,"12284":12285,"12285":12286,"12286":12287,"12287":12288,"12288":12289,"12289":12290,"12290":12291,"12291":12292,"12292":12293,"12293":12294,"12294":12295,"12295":12296,"12296":12297,"12297":12298,"12298":12299,"12299":12300,"12300":12301,"12301":12302,"12302":12303,"12303":12304,"12304":12305,"12305":12306,"12306":12307,"12307":12308,"12308":12309,"12309":12310,"12310":12311,"12311":12312,"12312":12313,"12313":12314,"12314":12315,"12315":12316,"12316":12317,"12317":12318,"12318":12319,"12319":12320,"12320":12321,"12321":12322,"12322":12323,"12323":12324,"12324":12325,"12325":12326,"12326":12327,"12327":12328,"12328":12329,"12329":12330,"12330":12331,"12331":12332,"12332":12333,"12333":12334,"12334":12335,"12335":12336,"12336":12337,"12337":12338,"12338":12339,"12339":12340,"12340":12341,"12341":12342,"12342":12343,"12343":12344,"12344":12345,"12345":12346,"12346":12347,"12347":12348,"12348":12349,"12349":12350,"12350":12351,"12351":12352,"12352":12353,"12353":12354,"12354":12355,"12355":12356,"12356":12357,"12357":12358,"12358":12359,"12359":12360,"12360":12361,"12361":12362,"12362":12363,"12363":12364,"12364":12365,"12365":12366,"12366":12367,"12367":12368,"12368":12369,"12369":12370,"12370":12371,"12371":12372,"12372":12373,"12373":12374,"12374":12375,"12375":12376,"12376":12377,"12377":12378,"12378":12379,"12379":12380,"12380":12381,"12381":12382,"12382":12383,"12383":12384,"12384":12385,"12385":12386,"12386":12387,"12387":12388,"12388":12389,"12389":12390,"12390":12391,"12391":12392,"12392":12393,"12393":12394,"12394":12395,"12395":12396,"12396":12397,"12397":12398,"12398":12399,"12399":12400,"12400":12401,"12401":12402,"12402":12403,"12403":12404,"12404":12405,"12405":12406,"12406":12407,"12407":12408,"12408":12409,"12409":12410,"12410":12411,"12411":12412,"12412":12413,"12413":12414,"12414":12415,"12415":12416,"12416":12417,"12417":12418,"12418":12419,"12419":12420,"12420":12421,"12421":12422,"12422":12423,"12423":12424,"12424":12425,"12425":12426,"12426":12427,"12427":12428,"12428":12429,"12429":12430,"12430":12431,"12431":12432,"12432":12433,"12433":12434,"12434":12435,"12435":12436,"12436":12437,"12437":12438,"12438":12439,"12439":12440,"12440":12441,"12441":12442,"12442":12443,"12443":12444,"12444":12445,"12445":12446,"12446":12447,"12447":12448,"12448":12449,"12449":12450,"12450":12451,"12451":12452,"12452":12453,"12453":12454,"12454":12455,"12455":12456,"12456":12457,"12457":12458,"12458":12459,"12459":12460,"12460":12461,"12461":12462,"12462":12463,"12463":12464,"12464":12465,"12465":12466,"12466":12467,"12467":12468,"12468":12469,"12469":12470,"12470":12471,"12471":12472,"12472":12473,"12473":12474,"12474":12475,"12475":12476,"12476":12477,"12477":12478,"12478":12479,"12479":12480,"12480":12481,"12481":12482,"12482":12483,"12483":12484,"12484":12485,"12485":12486,"12486":12487,"12487":12488,"12488":12489,"12489":12490,"12490":12491,"12491":12492,"12492":12493,"12493":12494,"12494":12495,"12495":12496,"12496":12497,"12497":12498,"12498":12499,"12499":12500,"12500":12501,"12501":12502,"12502":12503,"12503":12504,"12504":12505,"12505":12506,"12506":12507,"12507":12508,"12508":12509,"12509":12510,"12510":12511,"12511":12512,"12512":12513,"12513":12514,"12514":12515,"12515":12516,"12516":12517,"12517":12518,"12518":12519,"12519":12520,"12520":12521,"12521":12522,"12522":12523,"12523":12524,"12524":12525,"12525":12526,"12526":12527,"12527":12528,"12528":12529,"12529":12530,"12530":12531,"12531":12532,"12532":12533,"12533":12534,"12534":12535,"12535":12536,"12536":12537,"12537":12538,"12538":12539,"12539":12540,"12540":12541,"12541":12542,"12542":12543,"12543":12544,"12544":12545,"12545":12546,"12546":12547,"12547":12548,"12548":12549,"12549":12550,"12550":12551,"12551":12552,"12552":12553,"12553":12554,"12554":12555,"12555":12556,"12556":12557,"12557":12558,"12558":12559,"12559":12560,"12560":12561,"12561":12562,"12562":12563,"12563":12564,"12564":12565,"12565":12566,"12566":12567,"12567":12568,"12568":12569,"12569":12570,"12570":12571,"12571":12572,"12572":12573,"12573":12574,"12574":12575,"12575":12576,"12576":12577,"12577":12578,"12578":12579,"12579":12580,"12580":12581,"12581":12582,"12582":12583,"12583":12584,"12584":12585,"12585":12586,"12586":12587,"12587":12588,"12588":12589,"12589":12590,"12590":12591,"12591":12592,"12592":12593,"12593":12594,"12594":12595,"12595":12596,"12596":12597,"12597":12598,"12598":12599,"12599":12600,"12600":12601,"12601":12602,"12602":12603,"12603":12604,"12604":12605,"12605":12606,"12606":12607,"12607":12608,"12608":12609,"12609":12610,"12610":12611,"12611":12612,"12612":12613,"12613":12614,"12614":12615,"12615":12616,"12616":12617,"12617":12618,"12618":12619,"12619":12620,"12620":12621,"12621":12622,"12622":12623,"12623":12624,"12624":12625,"12625":12626,"12626":12627,"12627":12628,"12628":12629,"12629":12630,"12630":12631,"12631":12632,"12632":12633,"12633":12634,"12634":12635,"12635":12636,"12636":12637,"12637":12638,"12638":12639,"12639":12640,"12640":12641,"12641":12642,"12642":12643,"12643":12644,"12644":12645,"12645":12646,"12646":12647,"12647":12648,"12648":12649,"12649":12650,"12650":12651,"12651":12652,"12652":12653,"12653":12654,"12654":12655,"12655":12656,"12656":12657,"12657":12658,"12658":12659,"12659":12660,"12660":12661,"12661":12662,"12662":12663,"12663":12664,"12664":12665,"12665":12666,"12666":12667,"12667":12668,"12668":12669,"12669":12670,"12670":12671,"12671":12672,"12672":12673,"12673":12674,"12674":12675,"12675":12676,"12676":12677,"12677":12678,"12678":12679,"12679":12680,"12680":12681,"12681":12682,"12682":12683,"12683":12684,"12684":12685,"12685":12686,"12686":12687,"12687":12688,"12688":12689,"12689":12690,"12690":12691,"12691":12692,"12692":12693,"12693":12694,"12694":12695,"12695":12696,"12696":12697,"12697":12698,"12698":12699,"12699":12700,"12700":12701,"12701":12702,"12702":12703,"12703":12704,"12704":12705,"12705":12706,"12706":12707,"12707":12708,"12708":12709,"12709":12710,"12710":12711,"12711":12712,"12712":12713,"12713":12714,"12714":12715,"12715":12716,"12716":12717,"12717":12718,"12718":12719,"12719":12720,"12720":12721,"12721":12722,"12722":12723,"12723":12724,"12724":12725,"12725":12726,"12726":12727,"12727":12728,"12728":12729,"12729":12730,"12730":12731,"12731":12732,"12732":12733,"12733":12734,"12734":12735,"12735":12736,"12736":12737,"12737":12738,"12738":12739,"12739":12740,"12740":12741,"12741":12742,"12742":12743,"12743":12744,"12744":12745,"12745":12746,"12746":12747,"12747":12748,"12748":12749,"12749":12750,"12750":12751,"12751":12752,"12752":12753,"12753":12754,"12754":12755,"12755":12756,"12756":12757,"12757":12758,"12758":12759,"12759":12760,"12760":12761,"12761":12762,"12762":12763,"12763":12764,"12764":12765,"12765":12766,"12766":12767,"12767":12768,"12768":12769,"12769":12770,"12770":12771,"12771":12772,"12772":12773,"12773":12774,"12774":12775,"12775":12776,"12776":12777,"12777":12778,"12778":12779,"12779":12780,"12780":12781,"12781":12782,"12782":12783,"12783":12784,"12784":12785,"12785":12786,"12786":12787,"12787":12788,"12788":12789,"12789":12790,"12790":12791,"12791":12792,"12792":12793,"12793":12794,"12794":12795,"12795":12796,"12796":12797,"12797":12798,"12798":12799,"12799":12800,"12800":12801,"12801":12802,"12802":12803,"12803":12804,"12804":12805,"12805":12806,"12806":12807,"12807":12808,"12808":12809,"12809":12810,"12810":12811,"12811":12812,"12812":12813,"12813":12814,"12814":12815,"12815":12816,"12816":12817,"12817":12818,"12818":12819,"12819":12820,"12820":12821,"12821":12822,"12822":12823,"12823":12824,"12824":12825,"12825":12826,"12826":12827,"12827":12828,"12828":12829,"12829":12830,"12830":12831,"12831":12832,"12832":12833,"12833":12834,"12834":12835,"12835":12836,"12836":12837,"12837":12838,"12838":12839,"12839":12840,"12840":12841,"12841":12842,"12842":12843,"12843":12844,"12844":12845,"12845":12846,"12846":12847,"12847":12848,"12848":12849,"12849":12850,"12850":12851,"12851":12852,"12852":12853,"12853":12854,"12854":12855,"12855":12856,"12856":12857,"12857":12858,"12858":12859,"12859":12860,"12860":12861,"12861":12862,"12862":12863,"12863":12864,"12864":12865,"12865":12866,"12866":12867,"12867":12868,"12868":12869,"12869":12870,"12870":12871,"12871":12872,"12872":12873,"12873":12874,"12874":12875,"12875":12876,"12876":12877,"12877":12878,"12878":12879,"12879":12880,"12880":12881,"12881":12882,"12882":12883,"12883":12884,"12884":12885,"12885":12886,"12886":12887,"12887":12888,"12888":12889,"12889":12890,"12890":12891,"12891":12892,"12892":12893,"12893":12894,"12894":12895,"12895":12896,"12896":12897,"12897":12898,"12898":12899,"12899":12900,"12900":12901,"12901":12902,"12902":12903,"12903":12904,"12904":12905,"12905":12906,"12906":12907,"12907":12908,"12908":12909,"12909":12910,"12910":12911,"12911":12912,"12912":12913,"12913":12914,"12914":12915,"12915":12916,"12916":12917,"12917":12918,"12918":12919,"12919":12920,"12920":12921,"12921":12922,"12922":12923,"12923":12924,"12924":12925,"12925":12926,"12926":12927,"12927":12928,"12928":12929,"12929":12930,"12930":12931,"12931":12932,"12932":12933,"12933":12934,"12934":12935,"12935":12936,"12936":12937,"12937":12938,"12938":12939,"12939":12940,"12940":12941,"12941":12942,"12942":12943,"12943":12944,"12944":12945,"12945":12946,"12946":12947,"12947":12948,"12948":12949,"12949":12950,"12950":12951,"12951":12952,"12952":12953,"12953":12954,"12954":12955,"12955":12956,"12956":12957,"12957":12958,"12958":12959,"12959":12960,"12960":12961,"12961":12962,"12962":12963,"12963":12964,"12964":12965,"12965":12966,"12966":12967,"12967":12968,"12968":12969,"12969":12970,"12970":12971,"12971":12972,"12972":12973,"12973":12974,"12974":12975,"12975":12976,"12976":12977,"12977":12978,"12978":12979,"12979":12980,"12980":12981,"12981":12982,"12982":12983,"12983":12984,"12984":12985,"12985":12986,"12986":12987,"12987":12988,"12988":12989,"12989":12990,"12990":12991,"12991":12992,"12992":12993,"12993":12994,"12994":12995,"12995":12996,"12996":12997,"12997":12998,"12998":12999,"12999":13000,"13000":13001,"13001":13002,"13002":13003,"13003":13004,"13004":13005,"13005":13006,"13006":13007,"13007":13008,"13008":13009,"13009":13010,"13010":13011,"13011":13012,"13012":13013,"13013":13014,"13014":13015,"13015":13016,"13016":13017,"13017":13018,"13018":13019,"13019":13020,"13020":13021,"13021":13022,"13022":13023,"13023":13024,"13024":13025,"13025":13026,"13026":13027,"13027":13028,"13028":13029,"13029":13030,"13030":13031,"13031":13032,"13032":13033,"13033":13034,"13034":13035,"13035":13036,"13036":13037,"13037":13038,"13038":13039,"13039":13040,"13040":13041,"13041":13042,"13042":13043,"13043":13044,"13044":13045,"13045":13046,"13046":13047,"13047":13048,"13048":13049,"13049":13050,"13050":13051,"13051":13052,"13052":13053,"13053":13054,"13054":13055,"13055":13056,"13056":13057,"13057":13058,"13058":13059,"13059":13060,"13060":13061,"13061":13062,"13062":13063,"13063":13064,"13064":13065,"13065":13066,"13066":13067,"13067":13068,"13068":13069,"13069":13070,"13070":13071,"13071":13072,"13072":13073,"13073":13074,"13074":13075,"13075":13076,"13076":13077,"13077":13078,"13078":13079,"13079":13080,"13080":13081,"13081":13082,"13082":13083,"13083":13084,"13084":13085,"13085":13086,"13086":13087,"13087":13088,"13088":13089,"13089":13090,"13090":13091,"13091":13092,"13092":13093,"13093":13094,"13094":13095,"13095":13096,"13096":13097,"13097":13098,"13098":13099,"13099":13100,"13100":13101,"13101":13102,"13102":13103,"13103":13104,"13104":13105,"13105":13106,"13106":13107,"13107":13108,"13108":13109,"13109":13110,"13110":13111,"13111":13112,"13112":13113,"13113":13114,"13114":13115,"13115":13116,"13116":13117,"13117":13118,"13118":13119,"13119":13120,"13120":13121,"13121":13122,"13122":13123,"13123":13124,"13124":13125,"13125":13126,"13126":13127,"13127":13128,"13128":13129,"13129":13130,"13130":13131,"13131":13132,"13132":13133,"13133":13134,"13134":13135,"13135":13136,"13136":13137,"13137":13138,"13138":13139,"13139":13140,"13140":13141,"13141":13142,"13142":13143,"13143":13144,"13144":13145,"13145":13146,"13146":13147,"13147":13148,"13148":13149,"13149":13150,"13150":13151,"13151":13152,"13152":13153,"13153":13154,"13154":13155,"13155":13156,"13156":13157,"13157":13158,"13158":13159,"13159":13160,"13160":13161,"13161":13162,"13162":13163,"13163":13164,"13164":13165,"13165":13166,"13166":13167,"13167":13168,"13168":13169,"13169":13170,"13170":13171,"13171":13172,"13172":13173,"13173":13174,"13174":13175,"13175":13176,"13176":13177,"13177":13178,"13178":13179,"13179":13180,"13180":13181,"13181":13182,"13182":13183,"13183":13184,"13184":13185,"13185":13186,"13186":13187,"13187":13188,"13188":13189,"13189":13190,"13190":13191,"13191":13192,"13192":13193,"13193":13194,"13194":13195,"13195":13196,"13196":13197,"13197":13198,"13198":13199,"13199":13200,"13200":13201,"13201":13202,"13202":13203,"13203":13204,"13204":13205,"13205":13206,"13206":13207,"13207":13208,"13208":13209,"13209":13210,"13210":13211,"13211":13212,"13212":13213,"13213":13214,"13214":13215,"13215":13216,"13216":13217,"13217":13218,"13218":13219,"13219":13220,"13220":13221,"13221":13222,"13222":13223,"13223":13224,"13224":13225,"13225":13226,"13226":13227,"13227":13228,"13228":13229,"13229":13230,"13230":13231,"13231":13232,"13232":13233,"13233":13234,"13234":13235,"13235":13236,"13236":13237,"13237":13238,"13238":13239,"13239":13240,"13240":13241,"13241":13242,"13242":13243,"13243":13244,"13244":13245,"13245":13246,"13246":13247,"13247":13248,"13248":13249,"13249":13250,"13250":13251,"13251":13252,"13252":13253,"13253":13254,"13254":13255,"13255":13256,"13256":13257,"13257":13258,"13258":13259,"13259":13260,"13260":13261,"13261":13262,"13262":13263,"13263":13264,"13264":13265,"13265":13266,"13266":13267,"13267":13268,"13268":13269,"13269":13270,"13270":13271,"13271":13272,"13272":13273,"13273":13274,"13274":13275,"13275":13276,"13276":13277,"13277":13278,"13278":13279,"13279":13280,"13280":13281,"13281":13282,"13282":13283,"13283":13284,"13284":13285,"13285":13286,"13286":13287,"13287":13288,"13288":13289,"13289":13290,"13290":13291,"13291":13292,"13292":13293,"13293":13294,"13294":13295,"13295":13296,"13296":13297,"13297":13298,"13298":13299,"13299":13300,"13300":13301,"13301":13302,"13302":13303,"13303":13304,"13304":13305,"13305":13306,"13306":13307,"13307":13308,"13308":13309,"13309":13310,"13310":13311,"13311":13312,"13312":13313,"13313":13314,"13314":13315,"13315":13316,"13316":13317,"13317":13318,"13318":13319,"13319":13320,"13320":13321,"13321":13322,"13322":13323,"13323":13324,"13324":13325,"13325":13326,"13326":13327,"13327":13328,"13328":13329,"13329":13330,"13330":13331,"13331":13332,"13332":13333,"13333":13334,"13334":13335,"13335":13336,"13336":13337,"13337":13338,"13338":13339,"13339":13340,"13340":13341,"13341":13342,"13342":13343,"13343":13344,"13344":13345,"13345":13346,"13346":13347,"13347":13348,"13348":13349,"13349":13350,"13350":13351,"13351":13352,"13352":13353,"13353":13354,"13354":13355,"13355":13356,"13356":13357,"13357":13358,"13358":13359,"13359":13360,"13360":13361,"13361":13362,"13362":13363,"13363":13364,"13364":13365,"13365":13366,"13366":13367,"13367":13368,"13368":13369,"13369":13370,"13370":13371,"13371":13372,"13372":13373,"13373":13374,"13374":13375,"13375":13376,"13376":13377,"13377":13378,"13378":13379,"13379":13380,"13380":13381,"13381":13382,"13382":13383,"13383":13384,"13384":13385,"13385":13386,"13386":13387,"13387":13388,"13388":13389,"13389":13390,"13390":13391,"13391":13392,"13392":13393,"13393":13394,"13394":13395,"13395":13396,"13396":13397,"13397":13398,"13398":13399,"13399":13400,"13400":13401,"13401":13402,"13402":13403,"13403":13404,"13404":13405,"13405":13406,"13406":13407,"13407":13408,"13408":13409,"13409":13410,"13410":13411,"13411":13412,"13412":13413,"13413":13414,"13414":13415,"13415":13416,"13416":13417,"13417":13418,"13418":13419,"13419":13420,"13420":13421,"13421":13422,"13422":13423,"13423":13424,"13424":13425,"13425":13426,"13426":13427,"13427":13428,"13428":13429,"13429":13430,"13430":13431,"13431":13432,"13432":13433,"13433":13434,"13434":13435,"13435":13436,"13436":13437,"13437":13438,"13438":13439,"13439":13440,"13440":13441,"13441":13442,"13442":13443,"13443":13444,"13444":13445,"13445":13446,"13446":13447,"13447":13448,"13448":13449,"13449":13450,"13450":13451,"13451":13452,"13452":13453,"13453":13454,"13454":13455,"13455":13456,"13456":13457,"13457":13458,"13458":13459,"13459":13460,"13460":13461,"13461":13462,"13462":13463,"13463":13464,"13464":13465,"13465":13466,"13466":13467,"13467":13468,"13468":13469,"13469":13470,"13470":13471,"13471":13472,"13472":13473,"13473":13474,"13474":13475,"13475":13476,"13476":13477,"13477":13478,"13478":13479,"13479":13480,"13480":13481,"13481":13482,"13482":13483,"13483":13484,"13484":13485,"13485":13486,"13486":13487,"13487":13488,"13488":13489,"13489":13490,"13490":13491,"13491":13492,"13492":13493,"13493":13494,"13494":13495,"13495":13496,"13496":13497,"13497":13498,"13498":13499,"13499":13500,"13500":13501,"13501":13502,"13502":13503,"13503":13504,"13504":13505,"13505":13506,"13506":13507,"13507":13508,"13508":13509,"13509":13510,"13510":13511,"13511":13512,"13512":13513,"13513":13514,"13514":13515,"13515":13516,"13516":13517,"13517":13518,"13518":13519,"13519":13520,"13520":13521,"13521":13522,"13522":13523,"13523":13524,"13524":13525,"13525":13526,"13526":13527,"13527":13528,"13528":13529,"13529":13530,"13530":13531,"13531":13532,"13532":13533,"13533":13534,"13534":13535,"13535":13536,"13536":13537,"13537":13538,"13538":13539,"13539":13540,"13540":13541,"13541":13542,"13542":13543,"13543":13544,"13544":13545,"13545":13546,"13546":13547,"13547":13548,"13548":13549,"13549":13550,"13550":13551,"13551":13552,"13552":13553,"13553":13554,"13554":13555,"13555":13556,"13556":13557,"13557":13558,"13558":13559,"13559":13560,"13560":13561,"13561":13562,"13562":13563,"13563":13564,"13564":13565,"13565":13566,"13566":13567,"13567":13568,"13568":13569,"13569":13570,"13570":13571,"13571":13572,"13572":13573,"13573":13574,"13574":13575,"13575":13576,"13576":13577,"13577":13578,"13578":13579,"13579":13580,"13580":13581,"13581":13582,"13582":13583,"13583":13584,"13584":13585,"13585":13586,"13586":13587,"13587":13588,"13588":13589,"13589":13590,"13590":13591,"13591":13592,"13592":13593,"13593":13594,"13594":13595,"13595":13596,"13596":13597,"13597":13598,"13598":13599,"13599":13600,"13600":13601,"13601":13602,"13602":13603,"13603":13604,"13604":13605,"13605":13606,"13606":13607,"13607":13608,"13608":13609,"13609":13610,"13610":13611,"13611":13612,"13612":13613,"13613":13614,"13614":13615,"13615":13616,"13616":13617,"13617":13618,"13618":13619,"13619":13620,"13620":13621,"13621":13622,"13622":13623,"13623":13624,"13624":13625,"13625":13626,"13626":13627,"13627":13628,"13628":13629,"13629":13630,"13630":13631,"13631":13632,"13632":13633,"13633":13634,"13634":13635,"13635":13636,"13636":13637,"13637":13638,"13638":13639,"13639":13640,"13640":13641,"13641":13642,"13642":13643,"13643":13644,"13644":13645,"13645":13646,"13646":13647,"13647":13648,"13648":13649,"13649":13650,"13650":13651,"13651":13652,"13652":13653,"13653":13654,"13654":13655,"13655":13656,"13656":13657,"13657":13658,"13658":13659,"13659":13660,"13660":13661,"13661":13662,"13662":13663,"13663":13664,"13664":13665,"13665":13666,"13666":13667,"13667":13668,"13668":13669,"13669":13670,"13670":13671,"13671":13672,"13672":13673,"13673":13674,"13674":13675,"13675":13676,"13676":13677,"13677":13678,"13678":13679,"13679":13680,"13680":13681,"13681":13682,"13682":13683,"13683":13684,"13684":13685,"13685":13686,"13686":13687,"13687":13688,"13688":13689,"13689":13690,"13690":13691,"13691":13692,"13692":13693,"13693":13694,"13694":13695,"13695":13696,"13696":13697,"13697":13698,"13698":13699,"13699":13700,"13700":13701,"13701":13702,"13702":13703,"13703":13704,"13704":13705,"13705":13706,"13706":13707,"13707":13708,"13708":13709,"13709":13710,"13710":13711,"13711":13712,"13712":13713,"13713":13714,"13714":13715,"13715":13716,"13716":13717,"13717":13718,"13718":13719,"13719":13720,"13720":13721,"13721":13722,"13722":13723,"13723":13724,"13724":13725,"13725":13726,"13726":13727,"13727":13728,"13728":13729,"13729":13730,"13730":13731,"13731":13732,"13732":13733,"13733":13734,"13734":13735,"13735":13736,"13736":13737,"13737":13738,"13738":13739,"13739":13740,"13740":13741,"13741":13742,"13742":13743,"13743":13744,"13744":13745,"13745":13746,"13746":13747,"13747":13748,"13748":13749,"13749":13750,"13750":13751,"13751":13752,"13752":13753,"13753":13754,"13754":13755,"13755":13756,"13756":13757,"13757":13758,"13758":13759,"13759":13760,"13760":13761,"13761":13762,"13762":13763,"13763":13764,"13764":13765,"13765":13766,"13766":13767,"13767":13768,"13768":13769,"13769":13770,"13770":13771,"13771":13772,"13772":13773,"13773":13774,"13774":13775,"13775":13776,"13776":13777,"13777":13778,"13778":13779,"13779":13780,"13780":13781,"13781":13782,"13782":13783,"13783":13784,"13784":13785,"13785":13786,"13786":13787,"13787":13788,"13788":13789,"13789":13790,"13790":13791,"13791":13792,"13792":13793,"13793":13794,"13794":13795,"13795":13796,"13796":13797,"13797":13798,"13798":13799,"13799":13800,"13800":13801,"13801":13802,"13802":13803,"13803":13804,"13804":13805,"13805":13806,"13806":13807,"13807":13808,"13808":13809,"13809":13810,"13810":13811,"13811":13812,"13812":13813,"13813":13814,"13814":13815,"13815":13816,"13816":13817,"13817":13818,"13818":13819,"13819":13820,"13820":13821,"13821":13822,"13822":13823,"13823":13824,"13824":13825,"13825":13826,"13826":13827,"13827":13828,"13828":13829,"13829":13830,"13830":13831,"13831":13832,"13832":13833,"13833":13834,"13834":13835,"13835":13836,"13836":13837,"13837":13838,"13838":13839,"13839":13840,"13840":13841,"13841":13842,"13842":13843,"13843":13844,"13844":13845,"13845":13846,"13846":13847,"13847":13848,"13848":13849,"13849":13850,"13850":13851,"13851":13852,"13852":13853,"13853":13854,"13854":13855,"13855":13856,"13856":13857,"13857":13858,"13858":13859,"13859":13860,"13860":13861,"13861":13862,"13862":13863,"13863":13864,"13864":13865,"13865":13866,"13866":13867,"13867":13868,"13868":13869,"13869":13870,"13870":13871,"13871":13872,"13872":13873,"13873":13874,"13874":13875,"13875":13876,"13876":13877,"13877":13878,"13878":13879,"13879":13880,"13880":13881,"13881":13882,"13882":13883,"13883":13884,"13884":13885,"13885":13886,"13886":13887,"13887":13888,"13888":13889,"13889":13890,"13890":13891,"13891":13892,"13892":13893,"13893":13894,"13894":13895,"13895":13896,"13896":13897,"13897":13898,"13898":13899,"13899":13900,"13900":13901,"13901":13902,"13902":13903,"13903":13904,"13904":13905,"13905":13906,"13906":13907,"13907":13908,"13908":13909,"13909":13910,"13910":13911,"13911":13912,"13912":13913,"13913":13914,"13914":13915,"13915":13916,"13916":13917,"13917":13918,"13918":13919,"13919":13920,"13920":13921,"13921":13922,"13922":13923,"13923":13924,"13924":13925,"13925":13926,"13926":13927,"13927":13928,"13928":13929,"13929":13930,"13930":13931,"13931":13932,"13932":13933,"13933":13934,"13934":13935,"13935":13936,"13936":13937,"13937":13938,"13938":13939,"13939":13940,"13940":13941,"13941":13942,"13942":13943,"13943":13944,"13944":13945,"13945":13946,"13946":13947,"13947":13948,"13948":13949,"13949":13950,"13950":13951,"13951":13952,"13952":13953,"13953":13954,"13954":13955,"13955":13956,"13956":13957,"13957":13958,"13958":13959,"13959":13960,"13960":13961,"13961":13962,"13962":13963,"13963":13964,"13964":13965,"13965":13966,"13966":13967,"13967":13968,"13968":13969,"13969":13970,"13970":13971,"13971":13972,"13972":13973,"13973":13974,"13974":13975,"13975":13976,"13976":13977,"13977":13978,"13978":13979,"13979":13980,"13980":13981,"13981":13982,"13982":13983,"13983":13984,"13984":13985,"13985":13986,"13986":13987,"13987":13988,"13988":13989,"13989":13990,"13990":13991,"13991":13992,"13992":13993,"13993":13994,"13994":13995,"13995":13996,"13996":13997,"13997":13998,"13998":13999,"13999":14000,"14000":14001,"14001":14002,"14002":14003,"14003":14004,"14004":14005,"14005":14006,"14006":14007,"14007":14008,"14008":14009,"14009":14010,"14010":14011,"14011":14012,"14012":14013,"14013":14014,"14014":14015,"14015":14016,"14016":14017,"14017":14018,"14018":14019,"14019":14020,"14020":14021,"14021":14022,"14022":14023,"14023":14024,"14024":14025,"14025":14026,"14026":14027,"14027":14028,"14028":14029,"14029":14030,"14030":14031,"14031":14032,"14032":14033,"14033":14034,"14034":14035,"14035":14036,"14036":14037,"14037":14038,"14038":14039,"14039":14040,"14040":14041,"14041":14042,"14042":14043,"14043":14044,"14044":14045,"14045":14046,"14046":14047,"14047":14048,"14048":14049,"14049":14050,"14050":14051,"14051":14052,"14052":14053,"14053":14054,"14054":14055,"14055":14056,"14056":14057,"14057":14058,"14058":14059,"14059":14060,"14060":14061,"14061":14062,"14062":14063,"14063":14064,"14064":14065,"14065":14066,"14066":14067,"14067":14068,"14068":14069,"14069":14070,"14070":14071,"14071":14072,"14072":14073,"14073":14074,"14074":14075,"14075":14076,"14076":14077,"14077":14078,"14078":14079,"14079":14080,"14080":14081,"14081":14082,"14082":14083,"14083":14084,"14084":14085,"14085":14086,"14086":14087,"14087":14088,"14088":14089,"14089":14090,"14090":14091,"14091":14092,"14092":14093,"14093":14094,"14094":14095,"14095":14096,"14096":14097,"14097":14098,"14098":14099,"14099":14100,"14100":14101,"14101":14102,"14102":14103,"14103":14104,"14104":14105,"14105":14106,"14106":14107,"14107":14108,"14108":14109,"14109":14110,"14110":14111,"14111":14112,"14112":14113,"14113":14114,"14114":14115,"14115":14116,"14116":14117,"14117":14118,"14118":14119,"14119":14120,"14120":14121,"14121":14122,"14122":14123,"14123":14124,"14124":14125,"14125":14126,"14126":14127,"14127":14128,"14128":14129,"14129":14130,"14130":14131,"14131":14132,"14132":14133,"14133":14134,"14134":14135,"14135":14136,"14136":14137,"14137":14138,"14138":14139,"14139":14140,"14140":14141,"14141":14142,"14142":14143,"14143":14144,"14144":14145,"14145":14146,"14146":14147,"14147":14148,"14148":14149,"14149":14150,"14150":14151,"14151":14152,"14152":14153,"14153":14154,"14154":14155,"14155":14156,"14156":14157,"14157":14158,"14158":14159,"14159":14160,"14160":14161,"14161":14162,"14162":14163,"14163":14164,"14164":14165,"14165":14166,"14166":14167,"14167":14168,"14168":14169,"14169":14170,"14170":14171,"14171":14172,"14172":14173,"14173":14174,"14174":14175,"14175":14176,"14176":14177,"14177":14178,"14178":14179,"14179":14180,"14180":14181,"14181":14182,"14182":14183,"14183":14184,"14184":14185,"14185":14186,"14186":14187,"14187":14188,"14188":14189,"14189":14190,"14190":14191,"14191":14192,"14192":14193,"14193":14194,"14194":14195,"14195":14196,"14196":14197,"14197":14198,"14198":14199,"14199":14200,"14200":14201,"14201":14202,"14202":14203,"14203":14204,"14204":14205,"14205":14206,"14206":14207,"14207":14208,"14208":14209,"14209":14210,"14210":14211,"14211":14212,"14212":14213,"14213":14214,"14214":14215,"14215":14216,"14216":14217,"14217":14218,"14218":14219,"14219":14220,"14220":14221,"14221":14222,"14222":14223,"14223":14224,"14224":14225,"14225":14226,"14226":14227,"14227":14228,"14228":14229,"14229":14230,"14230":14231,"14231":14232,"14232":14233,"14233":14234,"14234":14235,"14235":14236,"14236":14237,"14237":14238,"14238":14239,"14239":14240,"14240":14241,"14241":14242,"14242":14243,"14243":14244,"14244":14245,"14245":14246,"14246":14247,"14247":14248,"14248":14249,"14249":14250,"14250":14251,"14251":14252,"14252":14253,"14253":14254,"14254":14255,"14255":14256,"14256":14257,"14257":14258,"14258":14259,"14259":14260,"14260":14261,"14261":14262,"14262":14263,"14263":14264,"14264":14265,"14265":14266,"14266":14267,"14267":14268,"14268":14269,"14269":14270,"14270":14271,"14271":14272,"14272":14273,"14273":14274,"14274":14275,"14275":14276,"14276":14277,"14277":14278,"14278":14279,"14279":14280,"14280":14281,"14281":14282,"14282":14283,"14283":14284,"14284":14285,"14285":14286,"14286":14287,"14287":14288,"14288":14289,"14289":14290,"14290":14291,"14291":14292,"14292":14293,"14293":14294,"14294":14295,"14295":14296,"14296":14297,"14297":14298,"14298":14299,"14299":14300,"14300":14301,"14301":14302,"14302":14303,"14303":14304,"14304":14305,"14305":14306,"14306":14307,"14307":14308,"14308":14309,"14309":14310,"14310":14311,"14311":14312,"14312":14313,"14313":14314,"14314":14315,"14315":14316,"14316":14317,"14317":14318,"14318":14319,"14319":14320,"14320":14321,"14321":14322,"14322":14323,"14323":14324,"14324":14325,"14325":14326,"14326":14327,"14327":14328,"14328":14329,"14329":14330,"14330":14331,"14331":14332,"14332":14333,"14333":14334,"14334":14335,"14335":14336,"14336":14337,"14337":14338,"14338":14339,"14339":14340,"14340":14341,"14341":14342,"14342":14343,"14343":14344,"14344":14345,"14345":14346,"14346":14347,"14347":14348,"14348":14349,"14349":14350,"14350":14351,"14351":14352,"14352":14353,"14353":14354,"14354":14355,"14355":14356,"14356":14357,"14357":14358,"14358":14359,"14359":14360,"14360":14361,"14361":14362,"14362":14363,"14363":14364,"14364":14365,"14365":14366,"14366":14367,"14367":14368,"14368":14369,"14369":14370,"14370":14371,"14371":14372,"14372":14373,"14373":14374,"14374":14375,"14375":14376,"14376":14377,"14377":14378,"14378":14379,"14379":14380,"14380":14381,"14381":14382,"14382":14383,"14383":14384,"14384":14385,"14385":14386,"14386":14387,"14387":14388,"14388":14389,"14389":14390,"14390":14391,"14391":14392,"14392":14393,"14393":14394,"14394":14395,"14395":14396,"14396":14397,"14397":14398,"14398":14399,"14399":14400,"14400":14401,"14401":14402,"14402":14403,"14403":14404,"14404":14405,"14405":14406,"14406":14407,"14407":14408,"14408":14409,"14409":14410,"14410":14411,"14411":14412,"14412":14413,"14413":14414,"14414":14415,"14415":14416,"14416":14417,"14417":14418,"14418":14419,"14419":14420,"14420":14421,"14421":14422,"14422":14423,"14423":14424,"14424":14425,"14425":14426,"14426":14427,"14427":14428,"14428":14429,"14429":14430,"14430":14431,"14431":14432,"14432":14433,"14433":14434,"14434":14435,"14435":14436,"14436":14437,"14437":14438,"14438":14439,"14439":14440,"14440":14441,"14441":14442,"14442":14443,"14443":14444,"14444":14445,"14445":14446,"14446":14447,"14447":14448,"14448":14449,"14449":14450,"14450":14451,"14451":14452,"14452":14453,"14453":14454,"14454":14455,"14455":14456,"14456":14457,"14457":14458,"14458":14459,"14459":14460,"14460":14461,"14461":14462,"14462":14463,"14463":14464,"14464":14465,"14465":14466,"14466":14467,"14467":14468,"14468":14469,"14469":14470,"14470":14471,"14471":14472,"14472":14473,"14473":14474,"14474":14475,"14475":14476,"14476":14477,"14477":14478,"14478":14479,"14479":14480,"14480":14481,"14481":14482,"14482":14483,"14483":14484,"14484":14485,"14485":14486,"14486":14487,"14487":14488,"14488":14489,"14489":14490,"14490":14491,"14491":14492,"14492":14493,"14493":14494,"14494":14495,"14495":14496,"14496":14497,"14497":14498,"14498":14499,"14499":14500,"14500":14501,"14501":14502,"14502":14503,"14503":14504,"14504":14505,"14505":14506,"14506":14507,"14507":14508,"14508":14509,"14509":14510,"14510":14511,"14511":14512,"14512":14513,"14513":14514,"14514":14515,"14515":14516,"14516":14517,"14517":14518,"14518":14519,"14519":14520,"14520":14521,"14521":14522,"14522":14523,"14523":14524,"14524":14525,"14525":14526,"14526":14527,"14527":14528,"14528":14529,"14529":14530,"14530":14531,"14531":14532,"14532":14533,"14533":14534,"14534":14535,"14535":14536,"14536":14537,"14537":14538,"14538":14539,"14539":14540,"14540":14541,"14541":14542,"14542":14543,"14543":14544,"14544":14545,"14545":14546,"14546":14547,"14547":14548,"14548":14549,"14549":14550,"14550":14551,"14551":14552,"14552":14553,"14553":14554,"14554":14555,"14555":14556,"14556":14557,"14557":14558,"14558":14559,"14559":14560,"14560":14561,"14561":14562,"14562":14563,"14563":14564,"14564":14565,"14565":14566,"14566":14567,"14567":14568,"14568":14569,"14569":14570,"14570":14571,"14571":14572,"14572":14573,"14573":14574,"14574":14575,"14575":14576,"14576":14577,"14577":14578,"14578":14579,"14579":14580,"14580":14581,"14581":14582,"14582":14583,"14583":14584,"14584":14585,"14585":14586,"14586":14587,"14587":14588,"14588":14589,"14589":14590,"14590":14591,"14591":14592,"14592":14593,"14593":14594,"14594":14595,"14595":14596,"14596":14597,"14597":14598,"14598":14599,"14599":14600,"14600":14601,"14601":14602,"14602":14603,"14603":14604,"14604":14605,"14605":14606,"14606":14607,"14607":14608,"14608":14609,"14609":14610,"14610":14611,"14611":14612,"14612":14613,"14613":14614,"14614":14615,"14615":14616,"14616":14617,"14617":14618,"14618":14619,"14619":14620,"14620":14621,"14621":14622,"14622":14623,"14623":14624,"14624":14625,"14625":14626,"14626":14627,"14627":14628,"14628":14629,"14629":14630,"14630":14631,"14631":14632,"14632":14633,"14633":14634,"14634":14635,"14635":14636,"14636":14637,"14637":14638,"14638":14639,"14639":14640,"14640":14641,"14641":14642,"14642":14643,"14643":14644,"14644":14645,"14645":14646,"14646":14647,"14647":14648,"14648":14649,"14649":14650,"14650":14651,"14651":14652,"14652":14653,"14653":14654,"14654":14655,"14655":14656,"14656":14657,"14657":14658,"14658":14659,"14659":14660,"14660":14661,"14661":14662,"14662":14663,"14663":14664,"14664":14665,"14665":14666,"14666":14667,"14667":14668,"14668":14669,"14669":14670,"14670":14671,"14671":14672,"14672":14673,"14673":14674,"14674":14675,"14675":14676,"14676":14677,"14677":14678,"14678":14679,"14679":14680,"14680":14681,"14681":14682,"14682":14683,"14683":14684,"14684":14685,"14685":14686,"14686":14687,"14687":14688,"14688":14689,"14689":14690,"14690":14691,"14691":14692,"14692":14693,"14693":14694,"14694":14695,"14695":14696,"14696":14697,"14697":14698,"14698":14699,"14699":14700,"14700":14701,"14701":14702,"14702":14703,"14703":14704,"14704":14705,"14705":14706,"14706":14707,"14707":14708,"14708":14709,"14709":14710,"14710":14711,"14711":14712,"14712":14713,"14713":14714,"14714":14715,"14715":14716,"14716":14717,"14717":14718,"14718":14719,"14719":14720,"14720":14721,"14721":14722,"14722":14723,"14723":14724,"14724":14725,"14725":14726,"14726":14727,"14727":14728,"14728":14729,"14729":14730,"14730":14731,"14731":14732,"14732":14733,"14733":14734,"14734":14735,"14735":14736,"14736":14737,"14737":14738,"14738":14739,"14739":14740,"14740":14741,"14741":14742,"14742":14743,"14743":14744,"14744":14745,"14745":14746,"14746":14747,"14747":14748,"14748":14749,"14749":14750,"14750":14751,"14751":14752,"14752":14753,"14753":14754,"14754":14755,"14755":14756,"14756":14757,"14757":14758,"14758":14759,"14759":14760,"14760":14761,"14761":14762,"14762":14763,"14763":14764,"14764":14765,"14765":14766,"14766":14767,"14767":14768,"14768":14769,"14769":14770,"14770":14771,"14771":14772,"14772":14773,"14773":14774,"14774":14775,"14775":14776,"14776":14777,"14777":14778,"14778":14779,"14779":14780,"14780":14781,"14781":14782,"14782":14783,"14783":14784,"14784":14785,"14785":14786,"14786":14787,"14787":14788,"14788":14789,"14789":14790,"14790":14791,"14791":14792,"14792":14793,"14793":14794,"14794":14795,"14795":14796,"14796":14797,"14797":14798,"14798":14799,"14799":14800,"14800":14801,"14801":14802,"14802":14803,"14803":14804,"14804":14805,"14805":14806,"14806":14807,"14807":14808,"14808":14809,"14809":14810,"14810":14811,"14811":14812,"14812":14813,"14813":14814,"14814":14815,"14815":14816,"14816":14817,"14817":14818,"14818":14819,"14819":14820,"14820":14821,"14821":14822,"14822":14823,"14823":14824,"14824":14825,"14825":14826,"14826":14827,"14827":14828,"14828":14829,"14829":14830,"14830":14831,"14831":14832,"14832":14833,"14833":14834,"14834":14835,"14835":14836,"14836":14837,"14837":14838,"14838":14839,"14839":14840,"14840":14841,"14841":14842,"14842":14843,"14843":14844,"14844":14845,"14845":14846,"14846":14847,"14847":14848,"14848":14849,"14849":14850,"14850":14851,"14851":14852,"14852":14853,"14853":14854,"14854":14855,"14855":14856,"14856":14857,"14857":14858,"14858":14859,"14859":14860,"14860":14861,"14861":14862,"14862":14863,"14863":14864,"14864":14865,"14865":14866,"14866":14867,"14867":14868,"14868":14869,"14869":14870,"14870":14871,"14871":14872,"14872":14873,"14873":14874,"14874":14875,"14875":14876,"14876":14877,"14877":14878,"14878":14879,"14879":14880,"14880":14881,"14881":14882,"14882":14883,"14883":14884,"14884":14885,"14885":14886,"14886":14887,"14887":14888,"14888":14889,"14889":14890,"14890":14891,"14891":14892,"14892":14893,"14893":14894,"14894":14895,"14895":14896,"14896":14897,"14897":14898,"14898":14899,"14899":14900,"14900":14901,"14901":14902,"14902":14903,"14903":14904,"14904":14905,"14905":14906,"14906":14907,"14907":14908,"14908":14909,"14909":14910,"14910":14911,"14911":14912,"14912":14913,"14913":14914,"14914":14915,"14915":14916,"14916":14917,"14917":14918,"14918":14919,"14919":14920,"14920":14921,"14921":14922,"14922":14923,"14923":14924,"14924":14925,"14925":14926,"14926":14927,"14927":14928,"14928":14929,"14929":14930,"14930":14931,"14931":14932,"14932":14933,"14933":14934,"14934":14935,"14935":14936,"14936":14937,"14937":14938,"14938":14939,"14939":14940,"14940":14941,"14941":14942,"14942":14943,"14943":14944,"14944":14945,"14945":14946,"14946":14947,"14947":14948,"14948":14949,"14949":14950,"14950":14951,"14951":14952,"14952":14953,"14953":14954,"14954":14955,"14955":14956,"14956":14957,"14957":14958,"14958":14959,"14959":14960,"14960":14961,"14961":14962,"14962":14963,"14963":14964,"14964":14965,"14965":14966,"14966":14967,"14967":14968,"14968":14969,"14969":14970,"14970":14971,"14971":14972,"14972":14973,"14973":14974,"14974":14975,"14975":14976,"14976":14977,"14977":14978,"14978":14979,"14979":14980,"14980":14981,"14981":14982,"14982":14983,"14983":14984,"14984":14985,"14985":14986,"14986":14987,"14987":14988,"14988":14989,"14989":14990,"14990":14991,"14991":14992,"14992":14993,"14993":14994,"14994":14995,"14995":14996,"14996":14997,"14997":14998,"14998":14999,"14999":15000,"15000":15001,"15001":15002,"15002":15003,"15003":15004,"15004":15005,"15005":15006,"15006":15007,"15007":15008,"15008":15009,"15009":15010,"15010":15011,"15011":15012,"15012":15013,"15013":15014,"15014":15015,"15015":15016,"15016":15017,"15017":15018,"15018":15019,"15019":15020,"15020":15021,"15021":15022,"15022":15023,"15023":15024,"15024":15025,"15025":15026,"15026":15027,"15027":15028,"15028":15029,"15029":15030,"15030":15031,"15031":15032,"15032":15033,"15033":15034,"15034":15035,"15035":15036,"15036":15037,"15037":15038,"15038":15039,"15039":15040,"15040":15041,"15041":15042,"15042":15043,"15043":15044,"15044":15045,"15045":15046,"15046":15047,"15047":15048,"15048":15049,"15049":15050,"15050":15051,"15051":15052,"15052":15053,"15053":15054,"15054":15055,"15055":15056,"15056":15057,"15057":15058,"15058":15059,"15059":15060,"15060":15061,"15061":15062,"15062":15063,"15063":15064,"15064":15065,"15065":15066,"15066":15067,"15067":15068,"15068":15069,"15069":15070,"15070":15071,"15071":15072,"15072":15073,"15073":15074,"15074":15075,"15075":15076,"15076":15077,"15077":15078,"15078":15079,"15079":15080,"15080":15081,"15081":15082,"15082":15083,"15083":15084,"15084":15085,"15085":15086,"15086":15087,"15087":15088,"15088":15089,"15089":15090,"15090":15091,"15091":15092,"15092":15093,"15093":15094,"15094":15095,"15095":15096,"15096":15097,"15097":15098,"15098":15099,"15099":15100,"15100":15101,"15101":15102,"15102":15103,"15103":15104,"15104":15105,"15105":15106,"15106":15107,"15107":15108,"15108":15109,"15109":15110,"15110":15111,"15111":15112,"15112":15113,"15113":15114,"15114":15115,"15115":15116,"15116":15117,"15117":15118,"15118":15119,"15119":15120,"15120":15121,"15121":15122,"15122":15123,"15123":15124,"15124":15125,"15125":15126,"15126":15127,"15127":15128,"15128":15129,"15129":15130,"15130":15131,"15131":15132,"15132":15133,"15133":15134,"15134":15135,"15135":15136,"15136":15137,"15137":15138,"15138":15139,"15139":15140,"15140":15141,"15141":15142,"15142":15143,"15143":15144,"15144":15145,"15145":15146,"15146":15147,"15147":15148,"15148":15149,"15149":15150,"15150":15151,"15151":15152,"15152":15153,"15153":15154,"15154":15155,"15155":15156,"15156":15157,"15157":15158,"15158":15159,"15159":15160,"15160":15161,"15161":15162,"15162":15163,"15163":15164,"15164":15165,"15165":15166,"15166":15167,"15167":15168,"15168":15169,"15169":15170,"15170":15171,"15171":15172,"15172":15173,"15173":15174,"15174":15175,"15175":15176,"15176":15177,"15177":15178,"15178":15179,"15179":15180,"15180":15181,"15181":15182,"15182":15183,"15183":15184,"15184":15185,"15185":15186,"15186":15187,"15187":15188,"15188":15189,"15189":15190,"15190":15191,"15191":15192,"15192":15193,"15193":15194,"15194":15195,"15195":15196,"15196":15197,"15197":15198,"15198":15199,"15199":15200,"15200":15201,"15201":15202,"15202":15203,"15203":15204,"15204":15205,"15205":15206,"15206":15207,"15207":15208,"15208":15209,"15209":15210,"15210":15211,"15211":15212,"15212":15213,"15213":15214,"15214":15215,"15215":15216,"15216":15217,"15217":15218,"15218":15219,"15219":15220,"15220":15221,"15221":15222,"15222":15223,"15223":15224,"15224":15225,"15225":15226,"15226":15227,"15227":15228,"15228":15229,"15229":15230,"15230":15231,"15231":15232,"15232":15233,"15233":15234,"15234":15235,"15235":15236,"15236":15237,"15237":15238,"15238":15239,"15239":15240,"15240":15241,"15241":15242,"15242":15243,"15243":15244,"15244":15245,"15245":15246,"15246":15247,"15247":15248,"15248":15249,"15249":15250,"15250":15251,"15251":15252,"15252":15253,"15253":15254,"15254":15255,"15255":15256,"15256":15257,"15257":15258,"15258":15259,"15259":15260,"15260":15261,"15261":15262,"15262":15263,"15263":15264,"15264":15265,"15265":15266,"15266":15267,"15267":15268,"15268":15269,"15269":15270,"15270":15271,"15271":15272,"15272":15273,"15273":15274,"15274":15275,"15275":15276,"15276":15277,"15277":15278,"15278":15279,"15279":15280,"15280":15281,"15281":15282,"15282":15283,"15283":15284,"15284":15285,"15285":15286,"15286":15287,"15287":15288,"15288":15289,"15289":15290,"15290":15291,"15291":15292,"15292":15293,"15293":15294,"15294":15295,"15295":15296,"15296":15297,"15297":15298,"15298":15299,"15299":15300,"15300":15301,"15301":15302,"15302":15303,"15303":15304,"15304":15305,"15305":15306,"15306":15307,"15307":15308,"15308":15309,"15309":15310,"15310":15311,"15311":15312,"15312":15313,"15313":15314,"15314":15315,"15315":15316,"15316":15317,"15317":15318,"15318":15319,"15319":15320,"15320":15321,"15321":15322,"15322":15323,"15323":15324,"15324":15325,"15325":15326,"15326":15327,"15327":15328,"15328":15329,"15329":15330,"15330":15331,"15331":15332,"15332":15333,"15333":15334,"15334":15335,"15335":15336,"15336":15337,"15337":15338,"15338":15339,"15339":15340,"15340":15341,"15341":15342,"15342":15343,"15343":15344,"15344":15345,"15345":15346,"15346":15347,"15347":15348,"15348":15349,"15349":15350,"15350":15351,"15351":15352,"15352":15353,"15353":15354,"15354":15355,"15355":15356,"15356":15357,"15357":15358,"15358":15359,"15359":15360,"15360":15361,"15361":15362,"15362":15363,"15363":15364,"15364":15365,"15365":15366,"15366":15367,"15367":15368,"15368":15369,"15369":15370,"15370":15371,"15371":15372,"15372":15373,"15373":15374,"15374":15375,"15375":15376,"15376":15377,"15377":15378,"15378":15379,"15379":15380,"15380":15381,"15381":15382,"15382":15383,"15383":15384,"15384":15385,"15385":15386,"15386":15387,"15387":15388,"15388":15389,"15389":15390,"15390":15391,"15391":15392,"15392":15393,"15393":15394,"15394":15395,"15395":15396,"15396":15397,"15397":15398,"15398":15399,"15399":15400,"15400":15401,"15401":15402,"15402":15403,"15403":15404,"15404":15405,"15405":15406,"15406":15407,"15407":15408,"15408":15409,"15409":15410,"15410":15411,"15411":15412,"15412":15413,"15413":15414,"15414":15415,"15415":15416,"15416":15417,"15417":15418,"15418":15419,"15419":15420,"15420":15421,"15421":15422,"15422":15423,"15423":15424,"15424":15425,"15425":15426,"15426":15427,"15427":15428,"15428":15429,"15429":15430,"15430":15431,"15431":15432,"15432":15433,"15433":15434,"15434":15435,"15435":15436,"15436":15437,"15437":15438,"15438":15439,"15439":15440,"15440":15441,"15441":15442,"15442":15443,"15443":15444,"15444":15445,"15445":15446,"15446":15447,"15447":15448,"15448":15449,"15449":15450,"15450":15451,"15451":15452,"15452":15453,"15453":15454,"15454":15455,"15455":15456,"15456":15457,"15457":15458,"15458":15459,"15459":15460,"15460":15461,"15461":15462,"15462":15463,"15463":15464,"15464":15465,"15465":15466,"15466":15467,"15467":15468,"15468":15469,"15469":15470,"15470":15471,"15471":15472,"15472":15473,"15473":15474,"15474":15475,"15475":15476,"15476":15477,"15477":15478,"15478":15479,"15479":15480,"15480":15481,"15481":15482,"15482":15483,"15483":15484,"15484":15485,"15485":15486,"15486":15487,"15487":15488,"15488":15489,"15489":15490,"15490":15491,"15491":15492,"15492":15493,"15493":15494,"15494":15495,"15495":15496,"15496":15497,"15497":15498,"15498":15499,"15499":15500,"15500":15501,"15501":15502,"15502":15503,"15503":15504,"15504":15505,"15505":15506,"15506":15507,"15507":15508,"15508":15509,"15509":15510,"15510":15511,"15511":15512,"15512":15513,"15513":15514,"15514":15515,"15515":15516,"15516":15517,"15517":15518,"15518":15519,"15519":15520,"15520":15521,"15521":15522,"15522":15523,"15523":15524,"15524":15525,"15525":15526,"15526":15527,"15527":15528,"15528":15529,"15529":15530,"15530":15531,"15531":15532,"15532":15533,"15533":15534,"15534":15535,"15535":15536,"15536":15537,"15537":15538,"15538":15539,"15539":15540,"15540":15541,"15541":15542,"15542":15543,"15543":15544,"15544":15545,"15545":15546,"15546":15547,"15547":15548,"15548":15549,"15549":15550,"15550":15551,"15551":15552,"15552":15553,"15553":15554,"15554":15555,"15555":15556,"15556":15557,"15557":15558,"15558":15559,"15559":15560,"15560":15561,"15561":15562,"15562":15563,"15563":15564,"15564":15565,"15565":15566,"15566":15567,"15567":15568,"15568":15569,"15569":15570,"15570":15571,"15571":15572,"15572":15573,"15573":15574,"15574":15575,"15575":15576,"15576":15577,"15577":15578,"15578":15579,"15579":15580,"15580":15581,"15581":15582,"15582":15583,"15583":15584,"15584":15585,"15585":15586,"15586":15587,"15587":15588,"15588":15589,"15589":15590,"15590":15591,"15591":15592,"15592":15593,"15593":15594,"15594":15595,"15595":15596,"15596":15597,"15597":15598,"15598":15599,"15599":15600,"15600":15601,"15601":15602,"15602":15603,"15603":15604,"15604":15605,"15605":15606,"15606":15607,"15607":15608,"15608":15609,"15609":15610,"15610":15611,"15611":15612,"15612":15613,"15613":15614,"15614":15615,"15615":15616,"15616":15617,"15617":15618,"15618":15619,"15619":15620,"15620":15621,"15621":15622,"15622":15623,"15623":15624,"15624":15625,"15625":15626,"15626":15627,"15627":15628,"15628":15629,"15629":15630,"15630":15631,"15631":15632,"15632":15633,"15633":15634,"15634":15635,"15635":15636,"15636":15637,"15637":15638,"15638":15639,"15639":15640,"15640":15641,"15641":15642,"15642":15643,"15643":15644,"15644":15645,"15645":15646,"15646":15647,"15647":15648,"15648":15649,"15649":15650,"15650":15651,"15651":15652,"15652":15653,"15653":15654,"15654":15655,"15655":15656,"15656":15657,"15657":15658,"15658":15659,"15659":15660,"15660":15661,"15661":15662,"15662":15663,"15663":15664,"15664":15665,"15665":15666,"15666":15667,"15667":15668,"15668":15669,"15669":15670,"15670":15671,"15671":15672,"15672":15673,"15673":15674,"15674":15675,"15675":15676,"15676":15677,"15677":15678,"15678":15679,"15679":15680,"15680":15681,"15681":15682,"15682":15683,"15683":15684,"15684":15685,"15685":15686,"15686":15687,"15687":15688,"15688":15689,"15689":15690,"15690":15691,"15691":15692,"15692":15693,"15693":15694,"15694":15695,"15695":15696,"15696":15697,"15697":15698,"15698":15699,"15699":15700,"15700":15701,"15701":15702,"15702":15703,"15703":15704,"15704":15705,"15705":15706,"15706":15707,"15707":15708,"15708":15709,"15709":15710,"15710":15711,"15711":15712,"15712":15713,"15713":15714,"15714":15715,"15715":15716,"15716":15717,"15717":15718,"15718":15719,"15719":15720,"15720":15721,"15721":15722,"15722":15723,"15723":15724,"15724":15725,"15725":15726,"15726":15727,"15727":15728,"15728":15729,"15729":15730,"15730":15731,"15731":15732,"15732":15733,"15733":15734,"15734":15735,"15735":15736,"15736":15737,"15737":15738,"15738":15739,"15739":15740,"15740":15741,"15741":15742,"15742":15743,"15743":15744,"15744":15745,"15745":15746,"15746":15747,"15747":15748,"15748":15749,"15749":15750,"15750":15751,"15751":15752,"15752":15753,"15753":15754,"15754":15755,"15755":15756,"15756":15757,"15757":15758,"15758":15759,"15759":15760,"15760":15761,"15761":15762,"15762":15763,"15763":15764,"15764":15765,"15765":15766,"15766":15767,"15767":15768,"15768":15769,"15769":15770,"15770":15771,"15771":15772,"15772":15773,"15773":15774,"15774":15775,"15775":15776,"15776":15777,"15777":15778,"15778":15779,"15779":15780,"15780":15781,"15781":15782,"15782":15783,"15783":15784,"15784":15785,"15785":15786,"15786":15787,"15787":15788,"15788":15789,"15789":15790,"15790":15791,"15791":15792,"15792":15793,"15793":15794,"15794":15795,"15795":15796,"15796":15797,"15797":15798,"15798":15799,"15799":15800,"15800":15801,"15801":15802,"15802":15803,"15803":15804,"15804":15805,"15805":15806,"15806":15807,"15807":15808,"15808":15809,"15809":15810,"15810":15811,"15811":15812,"15812":15813,"15813":15814,"15814":15815,"15815":15816,"15816":15817,"15817":15818,"15818":15819,"15819":15820,"15820":15821,"15821":15822,"15822":15823,"15823":15824,"15824":15825,"15825":15826,"15826":15827,"15827":15828,"15828":15829,"15829":15830,"15830":15831,"15831":15832,"15832":15833,"15833":15834,"15834":15835,"15835":15836,"15836":15837,"15837":15838,"15838":15839,"15839":15840,"15840":15841,"15841":15842,"15842":15843,"15843":15844,"15844":15845,"15845":15846,"15846":15847,"15847":15848,"15848":15849,"15849":15850,"15850":15851,"15851":15852,"15852":15853,"15853":15854,"15854":15855,"15855":15856,"15856":15857,"15857":15858,"15858":15859,"15859":15860,"15860":15861,"15861":15862,"15862":15863,"15863":15864,"15864":15865,"15865":15866,"15866":15867,"15867":15868,"15868":15869,"15869":15870,"15870":15871,"15871":15872,"15872":15873,"15873":15874,"15874":15875,"15875":15876,"15876":15877,"15877":15878,"15878":15879,"15879":15880,"15880":15881,"15881":15882,"15882":15883,"15883":15884,"15884":15885,"15885":15886,"15886":15887,"15887":15888,"15888":15889,"15889":15890,"15890":15891,"15891":15892,"15892":15893,"15893":15894,"15894":15895,"15895":15896,"15896":15897,"15897":15898,"15898":15899,"15899":15900,"15900":15901,"15901":15902,"15902":15903,"15903":15904,"15904":15905,"15905":15906,"15906":15907,"15907":15908,"15908":15909,"15909":15910,"15910":15911,"15911":15912,"15912":15913,"15913":15914,"15914":15915,"15915":15916,"15916":15917,"15917":15918,"15918":15919,"15919":15920,"15920":15921,"15921":15922,"15922":15923,"15923":15924,"15924":15925,"15925":15926,"15926":15927,"15927":15928,"15928":15929,"15929":15930,"15930":15931,"15931":15932,"15932":15933,"15933":15934,"15934":15935,"15935":15936,"15936":15937,"15937":15938,"15938":15939,"15939":15940,"15940":15941,"15941":15942,"15942":15943,"15943":15944,"15944":15945,"15945":15946,"15946":15947,"15947":15948,"15948":15949,"15949":15950,"15950":15951,"15951":15952,"15952":15953,"15953":15954,"15954":15955,"15955":15956,"15956":15957,"15957":15958,"15958":15959,"15959":15960,"15960":15961,"15961":15962,"15962":15963,"15963":15964,"15964":15965,"15965":15966,"15966":15967,"15967":15968,"15968":15969,"15969":15970,"15970":15971,"15971":15972,"15972":15973,"15973":15974,"15974":15975,"15975":15976,"15976":15977,"15977":15978,"15978":15979,"15979":15980,"15980":15981,"15981":15982,"15982":15983,"15983":15984,"15984":15985,"15985":15986,"15986":15987,"15987":15988,"15988":15989,"15989":15990,"15990":15991,"15991":15992,"15992":15993,"15993":15994,"15994":15995,"15995":15996,"15996":15997,"15997":15998,"15998":15999,"15999":16000,"16000":16001,"16001":16002,"16002":16003,"16003":16004,"16004":16005,"16005":16006,"16006":16007,"16007":16008,"16008":16009,"16009":16010,"16010":16011,"16011":16012,"16012":16013,"16013":16014,"16014":16015,"16015":16016,"16016":16017,"16017":16018,"16018":16019,"16019":16020,"16020":16021,"16021":16022,"16022":16023,"16023":16024,"16024":16025,"16025":16026,"16026":16027,"16027":16028,"16028":16029,"16029":16030,"16030":16031,"16031":16032,"16032":16033,"16033":16034,"16034":16035,"16035":16036,"16036":16037,"16037":16038,"16038":16039,"16039":16040,"16040":16041,"16041":16042,"16042":16043,"16043":16044,"16044":16045,"16045":16046,"16046":16047,"16047":16048,"16048":16049,"16049":16050,"16050":16051,"16051":16052,"16052":16053,"16053":16054,"16054":16055,"16055":16056,"16056":16057,"16057":16058,"16058":16059,"16059":16060,"16060":16061,"16061":16062,"16062":16063,"16063":16064,"16064":16065,"16065":16066,"16066":16067,"16067":16068,"16068":16069,"16069":16070,"16070":16071,"16071":16072,"16072":16073,"16073":16074,"16074":16075,"16075":16076,"16076":16077,"16077":16078,"16078":16079,"16079":16080,"16080":16081,"16081":16082,"16082":16083,"16083":16084,"16084":16085,"16085":16086,"16086":16087,"16087":16088,"16088":16089,"16089":16090,"16090":16091,"16091":16092,"16092":16093,"16093":16094,"16094":16095,"16095":16096,"16096":16097,"16097":16098,"16098":16099,"16099":16100,"16100":16101,"16101":16102,"16102":16103,"16103":16104,"16104":16105,"16105":16106,"16106":16107,"16107":16108,"16108":16109,"16109":16110,"16110":16111,"16111":16112,"16112":16113,"16113":16114,"16114":16115,"16115":16116,"16116":16117,"16117":16118,"16118":16119,"16119":16120,"16120":16121,"16121":16122,"16122":16123,"16123":16124,"16124":16125,"16125":16126,"16126":16127,"16127":16128,"16128":16129,"16129":16130,"16130":16131,"16131":16132,"16132":16133,"16133":16134,"16134":16135,"16135":16136,"16136":16137,"16137":16138,"16138":16139,"16139":16140,"16140":16141,"16141":16142,"16142":16143,"16143":16144,"16144":16145,"16145":16146,"16146":16147,"16147":16148,"16148":16149,"16149":16150,"16150":16151,"16151":16152,"16152":16153,"16153":16154,"16154":16155,"16155":16156,"16156":16157,"16157":16158,"16158":16159,"16159":16160,"16160":16161,"16161":16162,"16162":16163,"16163":16164,"16164":16165,"16165":16166,"16166":16167,"16167":16168,"16168":16169,"16169":16170,"16170":16171,"16171":16172,"16172":16173,"16173":16174,"16174":16175,"16175":16176,"16176":16177,"16177":16178,"16178":16179,"16179":16180,"16180":16181,"16181":16182,"16182":16183,"16183":16184,"16184":16185,"16185":16186,"16186":16187,"16187":16188,"16188":16189,"16189":16190,"16190":16191,"16191":16192,"16192":16193,"16193":16194,"16194":16195,"16195":16196,"16196":16197,"16197":16198,"16198":16199,"16199":16200,"16200":16201,"16201":16202,"16202":16203,"16203":16204,"16204":16205,"16205":16206,"16206":16207,"16207":16208,"16208":16209,"16209":16210,"16210":16211,"16211":16212,"16212":16213,"16213":16214,"16214":16215,"16215":16216,"16216":16217,"16217":16218,"16218":16219,"16219":16220,"16220":16221,"16221":16222,"16222":16223,"16223":16224,"16224":16225,"16225":16226,"16226":16227,"16227":16228,"16228":16229,"16229":16230,"16230":16231,"16231":16232,"16232":16233,"16233":16234,"16234":16235,"16235":16236,"16236":16237,"16237":16238,"16238":16239,"16239":16240,"16240":16241,"16241":16242,"16242":16243,"16243":16244,"16244":16245,"16245":16246,"16246":16247,"16247":16248,"16248":16249,"16249":16250,"16250":16251,"16251":16252,"16252":16253,"16253":16254,"16254":16255,"16255":16256,"16256":16257,"16257":16258,"16258":16259,"16259":16260,"16260":16261,"16261":16262,"16262":16263,"16263":16264,"16264":16265,"16265":16266,"16266":16267,"16267":16268,"16268":16269,"16269":16270,"16270":16271,"16271":16272,"16272":16273,"16273":16274,"16274":16275,"16275":16276,"16276":16277,"16277":16278,"16278":16279,"16279":16280,"16280":16281,"16281":16282,"16282":16283,"16283":16284,"16284":16285,"16285":16286,"16286":16287,"16287":16288,"16288":16289,"16289":16290,"16290":16291,"16291":16292,"16292":16293,"16293":16294,"16294":16295,"16295":16296,"16296":16297,"16297":16298,"16298":16299,"16299":16300,"16300":16301,"16301":16302,"16302":16303,"16303":16304,"16304":16305,"16305":16306,"16306":16307,"16307":16308,"16308":16309,"16309":16310,"16310":16311,"16311":16312,"16312":16313,"16313":16314,"16314":16315,"16315":16316,"16316":16317,"16317":16318,"16318":16319,"16319":16320,"16320":16321,"16321":16322,"16322":16323,"16323":16324,"16324":16325,"16325":16326,"16326":16327,"16327":16328,"16328":16329,"16329":16330,"16330":16331,"16331":16332,"16332":16333,"16333":16334,"16334":16335,"16335":16336,"16336":16337,"16337":16338,"16338":16339,"16339":16340,"16340":16341,"16341":16342,"16342":16343,"16343":16344,"16344":16345,"16345":16346,"16346":16347,"16347":16348,"16348":16349,"16349":16350,"16350":16351,"16351":16352,"16352":16353,"16353":16354,"16354":16355,"16355":16356,"16356":16357,"16357":16358,"16358":16359,"16359":16360,"16360":16361,"16361":16362,"16362":16363,"16363":16364,"16364":16365,"16365":16366,"16366":16367,"16367":16368,"16368":16369,"16369":16370,"16370":16371,"16371":16372,"16372":16373,"16373":16374,"16374":16375,"16375":16376,"16376":16377,"16377":16378,"16378":16379,"16379":16380,"16380":16381,"16381":16382,"16382":16383,"16383":16384,"16384":16385,"16385":16386,"16386":16387,"16387":16388,"16388":16389,"16389":16390,"16390":16391,"16391":16392,"16392":16393,"16393":16394,"16394":16395,"16395":16396,"16396":16397,"16397":16398,"16398":16399,"16399":16400,"16400":16401,"16401":16402,"16402":16403,"16403":16404,"16404":16405,"16405":16406,"16406":16407,"16407":16408,"16408":16409,"16409":16410,"16410":16411,"16411":16412,"16412":16413,"16413":16414,"16414":16415,"16415":16416,"16416":16417,"16417":16418,"16418":16419,"16419":16420,"16420":16421,"16421":16422,"16422":16423,"16423":16424,"16424":16425,"16425":16426,"16426":16427,"16427":16428,"16428":16429,"16429":16430,"16430":16431,"16431":16432,"16432":16433,"16433":16434,"16434":16435,"16435":16436,"16436":16437,"16437":16438,"16438":16439,"16439":16440,"16440":16441,"16441":16442,"16442":16443,"16443":16444,"16444":16445,"16445":16446,"16446":16447,"16447":16448,"16448":16449,"16449":16450,"16450":16451,"16451":16452,"16452":16453,"16453":16454,"16454":16455,"16455":16456,"16456":16457,"16457":16458,"16458":16459,"16459":16460,"16460":16461,"16461":16462,"16462":16463,"16463":16464,"16464":16465,"16465":16466,"16466":16467,"16467":16468,"16468":16469,"16469":16470,"16470":16471,"16471":16472,"16472":16473,"16473":16474,"16474":16475,"16475":16476,"16476":16477,"16477":16478,"16478":16479,"16479":16480,"16480":16481,"16481":16482,"16482":16483,"16483":16484,"16484":16485,"16485":16486,"16486":16487,"16487":16488,"16488":16489,"16489":16490,"16490":16491,"16491":16492,"16492":16493,"16493":16494,"16494":16495,"16495":16496,"16496":16497,"16497":16498,"16498":16499,"16499":16500,"16500":16501,"16501":16502,"16502":16503,"16503":16504,"16504":16505,"16505":16506,"16506":16507,"16507":16508,"16508":16509,"16509":16510,"16510":16511,"16511":16512,"16512":16513,"16513":16514,"16514":16515,"16515":16516,"16516":16517,"16517":16518,"16518":16519,"16519":16520,"16520":16521,"16521":16522,"16522":16523,"16523":16524,"16524":16525,"16525":16526,"16526":16527,"16527":16528,"16528":16529,"16529":16530,"16530":16531,"16531":16532,"16532":16533,"16533":16534,"16534":16535,"16535":16536,"16536":16537,"16537":16538,"16538":16539,"16539":16540,"16540":16541,"16541":16542,"16542":16543,"16543":16544,"16544":16545,"16545":16546,"16546":16547,"16547":16548,"16548":16549,"16549":16550,"16550":16551,"16551":16552,"16552":16553,"16553":16554,"16554":16555,"16555":16556,"16556":16557,"16557":16558,"16558":16559,"16559":16560,"16560":16561,"16561":16562,"16562":16563,"16563":16564,"16564":16565,"16565":16566,"16566":16567,"16567":16568,"16568":16569,"16569":16570,"16570":16571,"16571":16572,"16572":16573,"16573":16574,"16574":16575,"16575":16576,"16576":16577,"16577":16578,"16578":16579,"16579":16580,"16580":16581,"16581":16582,"16582":16583,"16583":16584,"16584":16585,"16585":16586,"16586":16587,"16587":16588,"16588":16589,"16589":16590,"16590":16591,"16591":16592,"16592":16593,"16593":16594,"16594":16595,"16595":16596,"16596":16597,"16597":16598,"16598":16599,"16599":16600,"16600":16601,"16601":16602,"16602":16603,"16603":16604,"16604":16605,"16605":16606,"16606":16607,"16607":16608,"16608":16609,"16609":16610,"16610":16611,"16611":16612,"16612":16613,"16613":16614,"16614":16615,"16615":16616,"16616":16617,"16617":16618,"16618":16619,"16619":16620,"16620":16621,"16621":16622,"16622":16623,"16623":16624,"16624":16625,"16625":16626,"16626":16627,"16627":16628,"16628":16629,"16629":16630,"16630":16631,"16631":16632,"16632":16633,"16633":16634,"16634":16635,"16635":16636,"16636":16637,"16637":16638,"16638":16639,"16639":16640,"16640":16641,"16641":16642,"16642":16643,"16643":16644,"16644":16645,"16645":16646,"16646":16647,"16647":16648,"16648":16649,"16649":16650,"16650":16651,"16651":16652,"16652":16653,"16653":16654,"16654":16655,"16655":16656,"16656":16657,"16657":16658,"16658":16659,"16659":16660,"16660":16661,"16661":16662,"16662":16663,"16663":16664,"16664":16665,"16665":16666,"16666":16667,"16667":16668,"16668":16669,"16669":16670,"16670":16671,"16671":16672,"16672":16673,"16673":16674,"16674":16675,"16675":16676,"16676":16677,"16677":16678,"16678":16679,"16679":16680,"16680":16681,"16681":16682,"16682":16683,"16683":16684,"16684":16685,"16685":16686,"16686":16687,"16687":16688,"16688":16689,"16689":16690,"16690":16691,"16691":16692,"16692":16693,"16693":16694,"16694":16695,"16695":16696,"16696":16697,"16697":16698,"16698":16699,"16699":16700,"16700":16701,"16701":16702,"16702":16703,"16703":16704,"16704":16705,"16705":16706,"16706":16707,"16707":16708,"16708":16709,"16709":16710,"16710":16711,"16711":16712,"16712":16713,"16713":16714,"16714":16715,"16715":16716,"16716":16717,"16717":16718,"16718":16719,"16719":16720,"16720":16721,"16721":16722,"16722":16723,"16723":16724,"16724":16725,"16725":16726,"16726":16727,"16727":16728,"16728":16729,"16729":16730,"16730":16731,"16731":16732,"16732":16733,"16733":16734,"16734":16735,"16735":16736,"16736":16737,"16737":16738,"16738":16739,"16739":16740,"16740":16741,"16741":16742,"16742":16743,"16743":16744,"16744":16745,"16745":16746,"16746":16747,"16747":16748,"16748":16749,"16749":16750,"16750":16751,"16751":16752,"16752":16753,"16753":16754,"16754":16755,"16755":16756,"16756":16757,"16757":16758,"16758":16759,"16759":16760,"16760":16761,"16761":16762,"16762":16763,"16763":16764,"16764":16765,"16765":16766,"16766":16767,"16767":16768,"16768":16769,"16769":16770,"16770":16771,"16771":16772,"16772":16773,"16773":16774,"16774":16775,"16775":16776,"16776":16777,"16777":16778,"16778":16779,"16779":16780,"16780":16781,"16781":16782,"16782":16783,"16783":16784,"16784":16785,"16785":16786,"16786":16787,"16787":16788,"16788":16789,"16789":16790,"16790":16791,"16791":16792,"16792":16793,"16793":16794,"16794":16795,"16795":16796,"16796":16797,"16797":16798,"16798":16799,"16799":16800,"16800":16801,"16801":16802,"16802":16803,"16803":16804,"16804":16805,"16805":16806,"16806":16807,"16807":16808,"16808":16809,"16809":16810,"16810":16811,"16811":16812,"16812":16813,"16813":16814,"16814":16815,"16815":16816,"16816":16817,"16817":16818,"16818":16819,"16819":16820,"16820":16821,"16821":16822,"16822":16823,"16823":16824,"16824":16825,"16825":16826,"16826":16827,"16827":16828,"16828":16829,"16829":16830,"16830":16831,"16831":16832,"16832":16833,"16833":16834,"16834":16835,"16835":16836,"16836":16837,"16837":16838,"16838":16839,"16839":16840,"16840":16841,"16841":16842,"16842":16843,"16843":16844,"16844":16845,"16845":16846,"16846":16847,"16847":16848,"16848":16849,"16849":16850,"16850":16851,"16851":16852,"16852":16853,"16853":16854,"16854":16855,"16855":16856,"16856":16857,"16857":16858,"16858":16859,"16859":16860,"16860":16861,"16861":16862,"16862":16863,"16863":16864,"16864":16865,"16865":16866,"16866":16867,"16867":16868,"16868":16869,"16869":16870,"16870":16871,"16871":16872,"16872":16873,"16873":16874,"16874":16875,"16875":16876,"16876":16877,"16877":16878,"16878":16879,"16879":16880,"16880":16881,"16881":16882,"16882":16883,"16883":16884,"16884":16885,"16885":16886,"16886":16887,"16887":16888,"16888":16889,"16889":16890,"16890":16891,"16891":16892,"16892":16893,"16893":16894,"16894":16895,"16895":16896,"16896":16897,"16897":16898,"16898":16899,"16899":16900,"16900":16901,"16901":16902,"16902":16903,"16903":16904,"16904":16905,"16905":16906,"16906":16907,"16907":16908,"16908":16909,"16909":16910,"16910":16911,"16911":16912,"16912":16913,"16913":16914,"16914":16915,"16915":16916,"16916":16917,"16917":16918,"16918":16919,"16919":16920,"16920":16921,"16921":16922,"16922":16923,"16923":16924,"16924":16925,"16925":16926,"16926":16927,"16927":16928,"16928":16929,"16929":16930,"16930":16931,"16931":16932,"16932":16933,"16933":16934,"16934":16935,"16935":16936,"16936":16937,"16937":16938,"16938":16939,"16939":16940,"16940":16941,"16941":16942,"16942":16943,"16943":16944,"16944":16945,"16945":16946,"16946":16947,"16947":16948,"16948":16949,"16949":16950,"16950":16951,"16951":16952,"16952":16953,"16953":16954,"16954":16955,"16955":16956,"16956":16957,"16957":16958,"16958":16959,"16959":16960,"16960":16961,"16961":16962,"16962":16963,"16963":16964,"16964":16965,"16965":16966,"16966":16967,"16967":16968,"16968":16969,"16969":16970,"16970":16971,"16971":16972,"16972":16973,"16973":16974,"16974":16975,"16975":16976,"16976":16977,"16977":16978,"16978":16979,"16979":16980,"16980":16981,"16981":16982,"16982":16983,"16983":16984,"16984":16985,"16985":16986,"16986":16987,"16987":16988,"16988":16989,"16989":16990,"16990":16991,"16991":16992,"16992":16993,"16993":16994,"16994":16995,"16995":16996,"16996":16997,"16997":16998,"16998":16999,"16999":17000,"17000":17001,"17001":17002,"17002":17003,"17003":17004,"17004":17005,"17005":17006,"17006":17007,"17007":17008,"17008":17009,"17009":17010,"17010":17011,"17011":17012,"17012":17013,"17013":17014,"17014":17015,"17015":17016,"17016":17017,"17017":17018,"17018":17019,"17019":17020,"17020":17021,"17021":17022,"17022":17023,"17023":17024,"17024":17025,"17025":17026,"17026":17027,"17027":17028,"17028":17029,"17029":17030,"17030":17031,"17031":17032,"17032":17033,"17033":17034,"17034":17035,"17035":17036,"17036":17037,"17037":17038,"17038":17039,"17039":17040,"17040":17041,"17041":17042,"17042":17043,"17043":17044,"17044":17045,"17045":17046,"17046":17047,"17047":17048,"17048":17049,"17049":17050,"17050":17051,"17051":17052,"17052":17053,"17053":17054,"17054":17055,"17055":17056,"17056":17057,"17057":17058,"17058":17059,"17059":17060,"17060":17061,"17061":17062,"17062":17063,"17063":17064,"17064":17065,"17065":17066,"17066":17067,"17067":17068,"17068":17069,"17069":17070,"17070":17071,"17071":17072,"17072":17073,"17073":17074,"17074":17075,"17075":17076,"17076":17077,"17077":17078,"17078":17079,"17079":17080,"17080":17081,"17081":17082,"17082":17083,"17083":17084,"17084":17085,"17085":17086,"17086":17087,"17087":17088,"17088":17089,"17089":17090,"17090":17091,"17091":17092,"17092":17093,"17093":17094,"17094":17095,"17095":17096,"17096":17097,"17097":17098,"17098":17099,"17099":17100,"17100":17101,"17101":17102,"17102":17103,"17103":17104,"17104":17105,"17105":17106,"17106":17107,"17107":17108,"17108":17109,"17109":17110,"17110":17111,"17111":17112,"17112":17113,"17113":17114,"17114":17115,"17115":17116,"17116":17117,"17117":17118,"17118":17119,"17119":17120,"17120":17121,"17121":17122,"17122":17123,"17123":17124,"17124":17125,"17125":17126,"17126":17127,"17127":17128,"17128":17129,"17129":17130,"17130":17131,"17131":17132,"17132":17133,"17133":17134,"17134":17135,"17135":17136,"17136":17137,"17137":17138,"17138":17139,"17139":17140,"17140":17141,"17141":17142,"17142":17143,"17143":17144,"17144":17145,"17145":17146,"17146":17147,"17147":17148,"17148":17149,"17149":17150,"17150":17151,"17151":17152,"17152":17153,"17153":17154,"17154":17155,"17155":17156,"17156":17157,"17157":17158,"17158":17159,"17159":17160,"17160":17161,"17161":17162,"17162":17163,"17163":17164,"17164":17165,"17165":17166,"17166":17167,"17167":17168,"17168":17169,"17169":17170,"17170":17171,"17171":17172,"17172":17173,"17173":17174,"17174":17175,"17175":17176,"17176":17177,"17177":17178,"17178":17179,"17179":17180,"17180":17181,"17181":17182,"17182":17183,"17183":17184,"17184":17185,"17185":17186,"17186":17187,"17187":17188,"17188":17189,"17189":17190,"17190":17191,"17191":17192,"17192":17193,"17193":17194,"17194":17195,"17195":17196,"17196":17197,"17197":17198,"17198":17199,"17199":17200,"17200":17201,"17201":17202,"17202":17203,"17203":17204,"17204":17205,"17205":17206,"17206":17207,"17207":17208,"17208":17209,"17209":17210,"17210":17211,"17211":17212,"17212":17213,"17213":17214,"17214":17215,"17215":17216,"17216":17217,"17217":17218,"17218":17219,"17219":17220,"17220":17221,"17221":17222,"17222":17223,"17223":17224,"17224":17225,"17225":17226,"17226":17227,"17227":17228,"17228":17229,"17229":17230,"17230":17231,"17231":17232,"17232":17233,"17233":17234,"17234":17235,"17235":17236,"17236":17237,"17237":17238,"17238":17239,"17239":17240,"17240":17241,"17241":17242,"17242":17243,"17243":17244,"17244":17245,"17245":17246,"17246":17247,"17247":17248,"17248":17249,"17249":17250,"17250":17251,"17251":17252,"17252":17253,"17253":17254,"17254":17255,"17255":17256,"17256":17257,"17257":17258,"17258":17259,"17259":17260,"17260":17261,"17261":17262,"17262":17263,"17263":17264,"17264":17265,"17265":17266,"17266":17267,"17267":17268,"17268":17269,"17269":17270,"17270":17271,"17271":17272,"17272":17273,"17273":17274,"17274":17275,"17275":17276,"17276":17277,"17277":17278,"17278":17279,"17279":17280,"17280":17281,"17281":17282,"17282":17283,"17283":17284,"17284":17285,"17285":17286,"17286":17287,"17287":17288,"17288":17289,"17289":17290,"17290":17291,"17291":17292,"17292":17293,"17293":17294,"17294":17295,"17295":17296,"17296":17297,"17297":17298,"17298":17299,"17299":17300,"17300":17301,"17301":17302,"17302":17303,"17303":17304,"17304":17305,"17305":17306,"17306":17307,"17307":17308,"17308":17309,"17309":17310,"17310":17311,"17311":17312,"17312":17313,"17313":17314,"17314":17315,"17315":17316,"17316":17317,"17317":17318,"17318":17319,"17319":17320,"17320":17321,"17321":17322,"17322":17323,"17323":17324,"17324":17325,"17325":17326,"17326":17327,"17327":17328,"17328":17329,"17329":17330,"17330":17331,"17331":17332,"17332":17333,"17333":17334,"17334":17335,"17335":17336,"17336":17337,"17337":17338,"17338":17339,"17339":17340,"17340":17341,"17341":17342,"17342":17343,"17343":17344,"17344":17345,"17345":17346,"17346":17347,"17347":17348,"17348":17349,"17349":17350,"17350":17351,"17351":17352,"17352":17353,"17353":17354,"17354":17355,"17355":17356,"17356":17357,"17357":17358,"17358":17359,"17359":17360,"17360":17361,"17361":17362,"17362":17363,"17363":17364,"17364":17365,"17365":17366,"17366":17367,"17367":17368,"17368":17369,"17369":17370,"17370":17371,"17371":17372,"17372":17373,"17373":17374,"17374":17375,"17375":17376,"17376":17377,"17377":17378,"17378":17379,"17379":17380,"17380":17381,"17381":17382,"17382":17383,"17383":17384,"17384":17385,"17385":17386,"17386":17387,"17387":17388,"17388":17389,"17389":17390,"17390":17391,"17391":17392,"17392":17393,"17393":17394,"17394":17395,"17395":17396,"17396":17397,"17397":17398,"17398":17399,"17399":17400,"17400":17401,"17401":17402,"17402":17403,"17403":17404,"17404":17405,"17405":17406,"17406":17407,"17407":17408,"17408":17409,"17409":17410,"17410":17411,"17411":17412,"17412":17413,"17413":17414,"17414":17415,"17415":17416,"17416":17417,"17417":17418,"17418":17419,"17419":17420,"17420":17421,"17421":17422,"17422":17423,"17423":17424,"17424":17425,"17425":17426,"17426":17427,"17427":17428,"17428":17429,"17429":17430,"17430":17431,"17431":17432,"17432":17433,"17433":17434,"17434":17435,"17435":17436,"17436":17437,"17437":17438,"17438":17439,"17439":17440,"17440":17441,"17441":17442,"17442":17443,"17443":17444,"17444":17445,"17445":17446,"17446":17447,"17447":17448,"17448":17449,"17449":17450,"17450":17451,"17451":17452,"17452":17453,"17453":17454,"17454":17455,"17455":17456,"17456":17457,"17457":17458,"17458":17459,"17459":17460,"17460":17461,"17461":17462,"17462":17463,"17463":17464,"17464":17465,"17465":17466,"17466":17467,"17467":17468,"17468":17469,"17469":17470,"17470":17471,"17471":17472,"17472":17473,"17473":17474,"17474":17475,"17475":17476,"17476":17477,"17477":17478,"17478":17479,"17479":17480,"17480":17481,"17481":17482,"17482":17483,"17483":17484,"17484":17485,"17485":17486,"17486":17487,"17487":17488,"17488":17489,"17489":17490,"17490":17491,"17491":17492,"17492":17493,"17493":17494,"17494":17495,"17495":17496,"17496":17497,"17497":17498,"17498":17499,"17499":17500,"17500":17501,"17501":17502,"17502":17503,"17503":17504,"17504":17505,"17505":17506,"17506":17507,"17507":17508,"17508":17509,"17509":17510,"17510":17511,"17511":17512,"17512":17513,"17513":17514,"17514":17515,"17515":17516,"17516":17517,"17517":17518,"17518":17519,"17519":17520,"17520":17521,"17521":17522,"17522":17523,"17523":17524,"17524":17525,"17525":17526,"17526":17527,"17527":17528,"17528":17529,"17529":17530,"17530":17531,"17531":17532,"17532":17533,"17533":17534,"17534":17535,"17535":17536,"17536":17537,"17537":17538,"17538":17539,"17539":17540,"17540":17541,"17541":17542,"17542":17543,"17543":17544,"17544":17545,"17545":17546,"17546":17547,"17547":17548,"17548":17549,"17549":17550,"17550":17551,"17551":17552,"17552":17553,"17553":17554,"17554":17555,"17555":17556,"17556":17557,"17557":17558,"17558":17559,"17559":17560,"17560":17561,"17561":17562,"17562":17563,"17563":17564,"17564":17565,"17565":17566,"17566":17567,"17567":17568,"17568":17569,"17569":17570,"17570":17571,"17571":17572,"17572":17573,"17573":17574,"17574":17575,"17575":17576,"17576":17577,"17577":17578,"17578":17579,"17579":17580,"17580":17581,"17581":17582,"17582":17583,"17583":17584,"17584":17585,"17585":17586,"17586":17587,"17587":17588,"17588":17589,"17589":17590,"17590":17591,"17591":17592,"17592":17593,"17593":17594,"17594":17595,"17595":17596,"17596":17597,"17597":17598,"17598":17599,"17599":17600,"17600":17601,"17601":17602,"17602":17603,"17603":17604,"17604":17605,"17605":17606,"17606":17607,"17607":17608,"17608":17609,"17609":17610,"17610":17611,"17611":17612,"17612":17613,"17613":17614,"17614":17615,"17615":17616,"17616":17617,"17617":17618,"17618":17619,"17619":17620,"17620":17621,"17621":17622,"17622":17623,"17623":17624,"17624":17625,"17625":17626,"17626":17627,"17627":17628,"17628":17629,"17629":17630,"17630":17631,"17631":17632,"17632":17633,"17633":17634,"17634":17635,"17635":17636,"17636":17637,"17637":17638,"17638":17639,"17639":17640,"17640":17641,"17641":17642,"17642":17643,"17643":17644,"17644":17645,"17645":17646,"17646":17647,"17647":17648,"17648":17649,"17649":17650,"17650":17651,"17651":17652,"17652":17653,"17653":17654,"17654":17655,"17655":17656,"17656":17657,"17657":17658,"17658":17659,"17659":17660,"17660":17661,"17661":17662,"17662":17663,"17663":17664,"17664":17665,"17665":17666,"17666":17667,"17667":17668,"17668":17669,"17669":17670,"17670":17671,"17671":17672,"17672":17673,"17673":17674,"17674":17675,"17675":17676,"17676":17677,"17677":17678,"17678":17679,"17679":17680,"17680":17681,"17681":17682,"17682":17683,"17683":17684,"17684":17685,"17685":17686,"17686":17687,"17687":17688,"17688":17689,"17689":17690,"17690":17691,"17691":17692,"17692":17693,"17693":17694,"17694":17695,"17695":17696,"17696":17697,"17697":17698,"17698":17699,"17699":17700,"17700":17701,"17701":17702,"17702":17703,"17703":17704,"17704":17705,"17705":17706,"17706":17707,"17707":17708,"17708":17709,"17709":17710,"17710":17711,"17711":17712,"17712":17713,"17713":17714,"17714":17715,"17715":17716,"17716":17717,"17717":17718,"17718":17719,"17719":17720,"17720":17721,"17721":17722,"17722":17723,"17723":17724,"17724":17725,"17725":17726,"17726":17727,"17727":17728,"17728":17729,"17729":17730,"17730":17731,"17731":17732,"17732":17733,"17733":17734,"17734":17735,"17735":17736,"17736":17737,"17737":17738,"17738":17739,"17739":17740,"17740":17741,"17741":17742,"17742":17743,"17743":17744,"17744":17745,"17745":17746,"17746":17747,"17747":17748,"17748":17749,"17749":17750,"17750":17751,"17751":17752,"17752":17753,"17753":17754,"17754":17755,"17755":17756,"17756":17757,"17757":17758,"17758":17759,"17759":17760,"17760":17761,"17761":17762,"17762":17763,"17763":17764,"17764":17765,"17765":17766,"17766":17767,"17767":17768,"17768":17769,"17769":17770,"17770":17771,"17771":17772,"17772":17773,"17773":17774,"17774":17775,"17775":17776,"17776":17777,"17777":17778,"17778":17779,"17779":17780,"17780":17781,"17781":17782,"17782":17783,"17783":17784,"17784":17785,"17785":17786,"17786":17787,"17787":17788,"17788":17789,"17789":17790,"17790":17791,"17791":17792,"17792":17793,"17793":17794,"17794":17795,"17795":17796,"17796":17797,"17797":17798,"17798":17799,"17799":17800,"17800":17801,"17801":17802,"17802":17803,"17803":17804,"17804":17805,"17805":17806,"17806":17807,"17807":17808,"17808":17809,"17809":17810,"17810":17811,"17811":17812,"17812":17813,"17813":17814,"17814":17815,"17815":17816,"17816":17817,"17817":17818,"17818":17819,"17819":17820,"17820":17821,"17821":17822,"17822":17823,"17823":17824,"17824":17825,"17825":17826,"17826":17827,"17827":17828,"17828":17829,"17829":17830,"17830":17831,"17831":17832,"17832":17833,"17833":17834,"17834":17835,"17835":17836,"17836":17837,"17837":17838,"17838":17839,"17839":17840,"17840":17841,"17841":17842,"17842":17843,"17843":17844,"17844":17845,"17845":17846,"17846":17847,"17847":17848,"17848":17849,"17849":17850,"17850":17851,"17851":17852,"17852":17853,"17853":17854,"17854":17855,"17855":17856,"17856":17857,"17857":17858,"17858":17859,"17859":17860,"17860":17861,"17861":17862,"17862":17863,"17863":17864,"17864":17865,"17865":17866,"17866":17867,"17867":17868,"17868":17869,"17869":17870,"17870":17871,"17871":17872,"17872":17873,"17873":17874,"17874":17875,"17875":17876,"17876":17877,"17877":17878,"17878":17879,"17879":17880,"17880":17881,"17881":17882,"17882":17883,"17883":17884,"17884":17885,"17885":17886,"17886":17887,"17887":17888,"17888":17889,"17889":17890,"17890":17891,"17891":17892,"17892":17893,"17893":17894,"17894":17895,"17895":17896,"17896":17897,"17897":17898,"17898":17899,"17899":17900,"17900":17901,"17901":17902,"17902":17903,"17903":17904,"17904":17905,"17905":17906,"17906":17907,"17907":17908,"17908":17909,"17909":17910,"17910":17911,"17911":17912,"17912":17913,"17913":17914,"17914":17915,"17915":17916,"17916":17917,"17917":17918,"17918":17919,"17919":17920,"17920":17921,"17921":17922,"17922":17923,"17923":17924,"17924":17925,"17925":17926,"17926":17927,"17927":17928,"17928":17929,"17929":17930,"17930":17931,"17931":17932,"17932":17933,"17933":17934,"17934":17935,"17935":17936,"17936":17937,"17937":17938,"17938":17939,"17939":17940,"17940":17941,"17941":17942,"17942":17943,"17943":17944,"17944":17945,"17945":17946,"17946":17947,"17947":17948,"17948":17949,"17949":17950,"17950":17951,"17951":17952,"17952":17953,"17953":17954,"17954":17955,"17955":17956,"17956":17957,"17957":17958,"17958":17959,"17959":17960,"17960":17961,"17961":17962,"17962":17963,"17963":17964,"17964":17965,"17965":17966,"17966":17967,"17967":17968,"17968":17969,"17969":17970,"17970":17971,"17971":17972,"17972":17973,"17973":17974,"17974":17975,"17975":17976,"17976":17977,"17977":17978,"17978":17979,"17979":17980,"17980":17981,"17981":17982,"17982":17983,"17983":17984,"17984":17985,"17985":17986,"17986":17987,"17987":17988,"17988":17989,"17989":17990,"17990":17991,"17991":17992,"17992":17993,"17993":17994,"17994":17995,"17995":17996,"17996":17997,"17997":17998,"17998":17999,"17999":18000,"18000":18001,"18001":18002,"18002":18003,"18003":18004,"18004":18005,"18005":18006,"18006":18007,"18007":18008,"18008":18009,"18009":18010,"18010":18011,"18011":18012,"18012":18013,"18013":18014,"18014":18015,"18015":18016,"18016":18017,"18017":18018,"18018":18019,"18019":18020,"18020":18021,"18021":18022,"18022":18023,"18023":18024,"18024":18025,"18025":18026,"18026":18027,"18027":18028,"18028":18029,"18029":18030,"18030":18031,"18031":18032,"18032":18033,"18033":18034,"18034":18035,"18035":18036,"18036":18037,"18037":18038,"18038":18039,"18039":18040,"18040":18041,"18041":18042,"18042":18043,"18043":18044,"18044":18045,"18045":18046,"18046":18047,"18047":18048,"18048":18049,"18049":18050,"18050":18051,"18051":18052,"18052":18053,"18053":18054,"18054":18055,"18055":18056,"18056":18057,"18057":18058,"18058":18059,"18059":18060,"18060":18061,"18061":18062,"18062":18063,"18063":18064,"18064":18065,"18065":18066,"18066":18067,"18067":18068,"18068":18069,"18069":18070,"18070":18071,"18071":18072,"18072":18073,"18073":18074,"18074":18075,"18075":18076,"18076":18077,"18077":18078,"18078":18079,"18079":18080,"18080":18081,"18081":18082,"18082":18083,"18083":18084,"18084":18085,"18085":18086,"18086":18087,"18087":18088,"18088":18089,"18089":18090,"18090":18091,"18091":18092,"18092":18093,"18093":18094,"18094":18095,"18095":18096,"18096":18097,"18097":18098,"18098":18099,"18099":18100,"18100":18101,"18101":18102,"18102":18103,"18103":18104,"18104":18105,"18105":18106,"18106":18107,"18107":18108,"18108":18109,"18109":18110,"18110":18111,"18111":18112,"18112":18113,"18113":18114,"18114":18115,"18115":18116,"18116":18117,"18117":18118,"18118":18119,"18119":18120,"18120":18121,"18121":18122,"18122":18123,"18123":18124,"18124":18125,"18125":18126,"18126":18127,"18127":18128,"18128":18129,"18129":18130,"18130":18131,"18131":18132,"18132":18133,"18133":18134,"18134":18135,"18135":18136,"18136":18137,"18137":18138,"18138":18139,"18139":18140,"18140":18141,"18141":18142,"18142":18143,"18143":18144,"18144":18145,"18145":18146,"18146":18147,"18147":18148,"18148":18149,"18149":18150,"18150":18151,"18151":18152,"18152":18153,"18153":18154,"18154":18155,"18155":18156,"18156":18157,"18157":18158,"18158":18159,"18159":18160,"18160":18161,"18161":18162,"18162":18163,"18163":18164,"18164":18165,"18165":18166,"18166":18167,"18167":18168,"18168":18169,"18169":18170,"18170":18171,"18171":18172,"18172":18173,"18173":18174,"18174":18175,"18175":18176,"18176":18177,"18177":18178,"18178":18179,"18179":18180,"18180":18181,"18181":18182,"18182":18183,"18183":18184,"18184":18185,"18185":18186,"18186":18187,"18187":18188,"18188":18189,"18189":18190,"18190":18191,"18191":18192,"18192":18193,"18193":18194,"18194":18195,"18195":18196,"18196":18197,"18197":18198,"18198":18199,"18199":18200,"18200":18201,"18201":18202,"18202":18203,"18203":18204,"18204":18205,"18205":18206,"18206":18207,"18207":18208,"18208":18209,"18209":18210,"18210":18211,"18211":18212,"18212":18213,"18213":18214,"18214":18215,"18215":18216,"18216":18217,"18217":18218,"18218":18219,"18219":18220,"18220":18221,"18221":18222,"18222":18223,"18223":18224,"18224":18225,"18225":18226,"18226":18227,"18227":18228,"18228":18229,"18229":18230,"18230":18231,"18231":18232,"18232":18233,"18233":18234,"18234":18235,"18235":18236,"18236":18237,"18237":18238,"18238":18239,"18239":18240,"18240":18241,"18241":18242,"18242":18243,"18243":18244,"18244":18245,"18245":18246,"18246":18247,"18247":18248,"18248":18249,"18249":18250,"18250":18251,"18251":18252,"18252":18253,"18253":18254,"18254":18255,"18255":18256,"18256":18257,"18257":18258,"18258":18259,"18259":18260,"18260":18261,"18261":18262,"18262":18263,"18263":18264,"18264":18265,"18265":18266,"18266":18267,"18267":18268,"18268":18269,"18269":18270,"18270":18271,"18271":18272,"18272":18273,"18273":18274,"18274":18275,"18275":18276,"18276":18277,"18277":18278,"18278":18279,"18279":18280,"18280":18281,"18281":18282,"18282":18283,"18283":18284,"18284":18285,"18285":18286,"18286":18287,"18287":18288,"18288":18289,"18289":18290,"18290":18291,"18291":18292,"18292":18293,"18293":18294,"18294":18295,"18295":18296,"18296":18297,"18297":18298,"18298":18299,"18299":18300,"18300":18301,"18301":18302,"18302":18303,"18303":18304,"18304":18305,"18305":18306,"18306":18307,"18307":18308,"18308":18309,"18309":18310,"18310":18311,"18311":18312,"18312":18313,"18313":18314,"18314":18315,"18315":18316,"18316":18317,"18317":18318,"18318":18319,"18319":18320,"18320":18321,"18321":18322,"18322":18323,"18323":18324,"18324":18325,"18325":18326,"18326":18327,"18327":18328,"18328":18329,"18329":18330,"18330":18331,"18331":18332,"18332":18333,"18333":18334,"18334":18335,"18335":18336,"18336":18337,"18337":18338,"18338":18339,"18339":18340,"18340":18341,"18341":18342,"18342":18343,"18343":18344,"18344":18345,"18345":18346,"18346":18347,"18347":18348,"18348":18349,"18349":18350,"18350":18351,"18351":18352,"18352":18353,"18353":18354,"18354":18355,"18355":18356,"18356":18357,"18357":18358,"18358":18359,"18359":18360},"nind":{"0":4,"1":5,"2":5,"3":5,"4":4,"5":4,"6":3,"7":4,"8":7,"9":6,"10":5,"11":4,"12":4,"13":1,"14":9,"15":2,"16":4,"17":3,"18":4,"19":4,"20":6,"21":7,"22":4,"23":2,"24":3,"25":4,"26":4,"27":5,"28":4,"29":7,"30":4,"31":4,"32":5,"33":4,"34":1,"35":1,"36":4,"37":4,"38":3,"39":2,"40":5,"41":5,"42":5,"43":4,"44":3,"45":7,"46":3,"47":6,"48":5,"49":5,"50":3,"51":3,"52":3,"53":4,"54":9,"55":4,"56":4,"57":8,"58":6,"59":5,"60":7,"61":2,"62":2,"63":2,"64":3,"65":3,"66":5,"67":3,"68":4,"69":4,"70":4,"71":1,"72":2,"73":3,"74":4,"75":3,"76":3,"77":5,"78":2,"79":5,"80":2,"81":4,"82":8,"83":3,"84":7,"85":5,"86":3,"87":9,"88":4,"89":4,"90":3,"91":7,"92":4,"93":3,"94":5,"95":4,"96":5,"97":7,"98":5,"99":5,"100":4,"101":4,"102":4,"103":4,"104":3,"105":2,"106":7,"107":8,"108":3,"109":4,"110":5,"111":5,"112":5,"113":5,"114":6,"115":9,"116":2,"117":3,"118":8,"119":5,"120":5,"121":5,"122":7,"123":4,"124":2,"125":4,"126":3,"127":5,"128":2,"129":3,"130":5,"131":4,"132":4,"133":2,"134":5,"135":4,"136":7,"137":1,"138":4,"139":3,"140":3,"141":9,"142":1,"143":8,"144":4,"145":2,"146":5,"147":2,"148":2,"149":4,"150":5,"151":5,"152":5,"153":1,"154":5,"155":3,"156":3,"157":4,"158":9,"159":4,"160":7,"161":5,"162":4,"163":4,"164":4,"165":2,"166":3,"167":4,"168":3,"169":3,"170":3,"171":2,"172":7,"173":4,"174":3,"175":3,"176":4,"177":4,"178":7,"179":7,"180":4,"181":3,"182":5,"183":3,"184":3,"185":4,"186":7,"187":5,"188":2,"189":4,"190":3,"191":2,"192":1,"193":4,"194":5,"195":5,"196":1,"197":4,"198":4,"199":3,"200":4,"201":4,"202":5,"203":3,"204":6,"205":4,"206":4,"207":8,"208":3,"209":3,"210":3,"211":2,"212":3,"213":2,"214":1,"215":4,"216":4,"217":4,"218":4,"219":8,"220":4,"221":4,"222":3,"223":4,"224":3,"225":6,"226":4,"227":4,"228":4,"229":1,"230":2,"231":4,"232":4,"233":5,"234":4,"235":2,"236":3,"237":3,"238":3,"239":9,"240":3,"241":7,"242":5,"243":4,"244":3,"245":2,"246":4,"247":4,"248":4,"249":3,"250":2,"251":2,"252":2,"253":4,"254":3,"255":3,"256":4,"257":3,"258":5,"259":2,"260":5,"261":3,"262":3,"263":4,"264":4,"265":2,"266":5,"267":6,"268":1,"269":8,"270":2,"271":7,"272":5,"273":3,"274":7,"275":4,"276":3,"277":4,"278":1,"279":5,"280":4,"281":4,"282":4,"283":4,"284":3,"285":2,"286":7,"287":4,"288":5,"289":2,"290":2,"291":4,"292":3,"293":5,"294":4,"295":4,"296":5,"297":4,"298":9,"299":3,"300":4,"301":5,"302":5,"303":3,"304":5,"305":4,"306":6,"307":3,"308":1,"309":5,"310":6,"311":3,"312":1,"313":5,"314":3,"315":7,"316":5,"317":3,"318":5,"319":1,"320":3,"321":4,"322":4,"323":1,"324":4,"325":5,"326":7,"327":3,"328":4,"329":2,"330":5,"331":3,"332":4,"333":5,"334":4,"335":1,"336":8,"337":6,"338":4,"339":3,"340":5,"341":1,"342":3,"343":6,"344":4,"345":7,"346":4,"347":4,"348":4,"349":3,"350":2,"351":3,"352":5,"353":1,"354":4,"355":4,"356":3,"357":2,"358":8,"359":3,"360":2,"361":4,"362":7,"363":9,"364":3,"365":2,"366":4,"367":3,"368":4,"369":2,"370":9,"371":5,"372":3,"373":3,"374":5,"375":4,"376":2,"377":4,"378":5,"379":4,"380":2,"381":2,"382":3,"383":4,"384":3,"385":3,"386":5,"387":5,"388":4,"389":2,"390":2,"391":3,"392":2,"393":2,"394":6,"395":4,"396":7,"397":4,"398":3,"399":4,"400":5,"401":5,"402":4,"403":3,"404":3,"405":2,"406":3,"407":4,"408":5,"409":2,"410":4,"411":4,"412":4,"413":4,"414":5,"415":4,"416":4,"417":3,"418":2,"419":2,"420":3,"421":6,"422":4,"423":3,"424":3,"425":8,"426":3,"427":2,"428":5,"429":1,"430":4,"431":4,"432":8,"433":8,"434":3,"435":3,"436":2,"437":5,"438":6,"439":3,"440":8,"441":8,"442":1,"443":9,"444":3,"445":7,"446":7,"447":5,"448":1,"449":8,"450":1,"451":9,"452":3,"453":4,"454":3,"455":5,"456":6,"457":3,"458":2,"459":5,"460":4,"461":4,"462":3,"463":5,"464":4,"465":3,"466":4,"467":4,"468":4,"469":1,"470":7,"471":4,"472":4,"473":6,"474":4,"475":1,"476":5,"477":4,"478":5,"479":2,"480":1,"481":4,"482":5,"483":2,"484":5,"485":3,"486":6,"487":4,"488":3,"489":6,"490":5,"491":3,"492":4,"493":3,"494":2,"495":3,"496":4,"497":4,"498":3,"499":4,"500":8,"501":6,"502":3,"503":4,"504":6,"505":3,"506":3,"507":3,"508":4,"509":4,"510":5,"511":4,"512":3,"513":3,"514":3,"515":4,"516":5,"517":4,"518":7,"519":4,"520":2,"521":4,"522":4,"523":4,"524":2,"525":3,"526":6,"527":8,"528":6,"529":4,"530":6,"531":4,"532":7,"533":4,"534":2,"535":3,"536":3,"537":3,"538":4,"539":5,"540":3,"541":2,"542":3,"543":7,"544":4,"545":3,"546":2,"547":3,"548":3,"549":8,"550":4,"551":4,"552":5,"553":3,"554":3,"555":2,"556":2,"557":8,"558":4,"559":3,"560":5,"561":4,"562":3,"563":5,"564":6,"565":4,"566":3,"567":4,"568":8,"569":2,"570":6,"571":1,"572":3,"573":4,"574":4,"575":5,"576":4,"577":4,"578":7,"579":3,"580":4,"581":4,"582":9,"583":3,"584":3,"585":8,"586":4,"587":2,"588":3,"589":3,"590":5,"591":5,"592":3,"593":4,"594":2,"595":4,"596":2,"597":4,"598":3,"599":5,"600":3,"601":4,"602":2,"603":4,"604":4,"605":1,"606":9,"607":3,"608":5,"609":5,"610":4,"611":3,"612":5,"613":2,"614":8,"615":3,"616":3,"617":2,"618":4,"619":3,"620":4,"621":4,"622":6,"623":1,"624":8,"625":2,"626":8,"627":6,"628":4,"629":3,"630":3,"631":4,"632":4,"633":6,"634":8,"635":4,"636":4,"637":2,"638":3,"639":4,"640":7,"641":1,"642":2,"643":5,"644":4,"645":3,"646":6,"647":3,"648":4,"649":5,"650":2,"651":5,"652":7,"653":4,"654":6,"655":4,"656":1,"657":2,"658":1,"659":4,"660":6,"661":4,"662":7,"663":2,"664":5,"665":1,"666":2,"667":5,"668":4,"669":3,"670":3,"671":4,"672":4,"673":3,"674":3,"675":7,"676":4,"677":9,"678":1,"679":2,"680":5,"681":4,"682":4,"683":1,"684":5,"685":4,"686":5,"687":8,"688":3,"689":1,"690":4,"691":4,"692":3,"693":4,"694":4,"695":7,"696":4,"697":3,"698":5,"699":4,"700":3,"701":4,"702":3,"703":2,"704":8,"705":7,"706":3,"707":5,"708":3,"709":6,"710":9,"711":4,"712":1,"713":4,"714":4,"715":2,"716":5,"717":5,"718":4,"719":4,"720":3,"721":3,"722":4,"723":4,"724":5,"725":4,"726":2,"727":4,"728":4,"729":6,"730":4,"731":3,"732":4,"733":4,"734":6,"735":4,"736":3,"737":2,"738":2,"739":4,"740":8,"741":9,"742":1,"743":4,"744":5,"745":4,"746":7,"747":2,"748":7,"749":1,"750":3,"751":3,"752":4,"753":2,"754":6,"755":5,"756":3,"757":6,"758":5,"759":4,"760":7,"761":4,"762":4,"763":3,"764":3,"765":3,"766":6,"767":4,"768":2,"769":8,"770":5,"771":4,"772":2,"773":4,"774":3,"775":3,"776":4,"777":3,"778":4,"779":3,"780":5,"781":4,"782":2,"783":5,"784":1,"785":3,"786":4,"787":6,"788":4,"789":5,"790":3,"791":4,"792":9,"793":5,"794":5,"795":3,"796":4,"797":4,"798":1,"799":1,"800":6,"801":7,"802":5,"803":6,"804":4,"805":6,"806":4,"807":3,"808":2,"809":4,"810":4,"811":4,"812":4,"813":4,"814":4,"815":2,"816":3,"817":3,"818":4,"819":8,"820":4,"821":5,"822":5,"823":5,"824":6,"825":4,"826":4,"827":4,"828":5,"829":4,"830":4,"831":4,"832":3,"833":3,"834":2,"835":4,"836":3,"837":1,"838":5,"839":4,"840":7,"841":1,"842":3,"843":4,"844":1,"845":3,"846":4,"847":4,"848":2,"849":4,"850":2,"851":5,"852":3,"853":3,"854":3,"855":2,"856":7,"857":6,"858":7,"859":1,"860":1,"861":3,"862":2,"863":4,"864":3,"865":4,"866":5,"867":4,"868":2,"869":3,"870":4,"871":5,"872":4,"873":2,"874":4,"875":4,"876":5,"877":3,"878":3,"879":6,"880":4,"881":7,"882":7,"883":3,"884":7,"885":5,"886":3,"887":4,"888":5,"889":5,"890":3,"891":3,"892":3,"893":2,"894":8,"895":1,"896":5,"897":3,"898":5,"899":3,"900":5,"901":4,"902":3,"903":7,"904":4,"905":3,"906":3,"907":5,"908":4,"909":9,"910":1,"911":5,"912":4,"913":4,"914":2,"915":7,"916":3,"917":2,"918":4,"919":5,"920":4,"921":3,"922":6,"923":5,"924":7,"925":2,"926":3,"927":7,"928":4,"929":3,"930":2,"931":4,"932":3,"933":3,"934":6,"935":3,"936":3,"937":4,"938":3,"939":3,"940":4,"941":2,"942":5,"943":4,"944":3,"945":3,"946":7,"947":4,"948":2,"949":4,"950":3,"951":4,"952":3,"953":2,"954":2,"955":4,"956":5,"957":6,"958":4,"959":2,"960":5,"961":2,"962":1,"963":4,"964":4,"965":5,"966":4,"967":5,"968":2,"969":4,"970":3,"971":2,"972":4,"973":2,"974":2,"975":1,"976":4,"977":6,"978":5,"979":2,"980":4,"981":5,"982":4,"983":4,"984":4,"985":6,"986":4,"987":3,"988":1,"989":5,"990":3,"991":4,"992":7,"993":4,"994":1,"995":3,"996":7,"997":8,"998":4,"999":3,"1000":2,"1001":3,"1002":4,"1003":3,"1004":4,"1005":4,"1006":4,"1007":3,"1008":4,"1009":5,"1010":8,"1011":5,"1012":4,"1013":5,"1014":4,"1015":3,"1016":3,"1017":3,"1018":6,"1019":4,"1020":2,"1021":4,"1022":4,"1023":3,"1024":3,"1025":8,"1026":4,"1027":9,"1028":4,"1029":4,"1030":5,"1031":3,"1032":2,"1033":3,"1034":3,"1035":4,"1036":3,"1037":3,"1038":6,"1039":3,"1040":3,"1041":4,"1042":2,"1043":4,"1044":3,"1045":9,"1046":4,"1047":3,"1048":3,"1049":9,"1050":4,"1051":5,"1052":5,"1053":3,"1054":3,"1055":3,"1056":3,"1057":8,"1058":1,"1059":1,"1060":4,"1061":3,"1062":3,"1063":2,"1064":9,"1065":6,"1066":5,"1067":3,"1068":4,"1069":3,"1070":1,"1071":4,"1072":3,"1073":4,"1074":5,"1075":5,"1076":3,"1077":3,"1078":5,"1079":4,"1080":4,"1081":4,"1082":5,"1083":1,"1084":2,"1085":5,"1086":5,"1087":2,"1088":4,"1089":5,"1090":4,"1091":3,"1092":2,"1093":3,"1094":3,"1095":4,"1096":7,"1097":3,"1098":3,"1099":3,"1100":5,"1101":4,"1102":3,"1103":3,"1104":7,"1105":4,"1106":3,"1107":7,"1108":7,"1109":4,"1110":3,"1111":4,"1112":2,"1113":3,"1114":5,"1115":5,"1116":4,"1117":5,"1118":5,"1119":3,"1120":4,"1121":5,"1122":3,"1123":5,"1124":7,"1125":3,"1126":2,"1127":6,"1128":4,"1129":5,"1130":3,"1131":5,"1132":4,"1133":5,"1134":8,"1135":4,"1136":2,"1137":2,"1138":4,"1139":8,"1140":4,"1141":3,"1142":5,"1143":4,"1144":5,"1145":5,"1146":2,"1147":7,"1148":3,"1149":6,"1150":3,"1151":5,"1152":4,"1153":8,"1154":4,"1155":2,"1156":7,"1157":3,"1158":3,"1159":6,"1160":3,"1161":5,"1162":4,"1163":1,"1164":3,"1165":7,"1166":4,"1167":3,"1168":3,"1169":4,"1170":4,"1171":3,"1172":3,"1173":1,"1174":4,"1175":5,"1176":3,"1177":5,"1178":3,"1179":6,"1180":3,"1181":2,"1182":4,"1183":2,"1184":2,"1185":5,"1186":5,"1187":4,"1188":5,"1189":3,"1190":4,"1191":3,"1192":3,"1193":1,"1194":4,"1195":7,"1196":2,"1197":4,"1198":5,"1199":2,"1200":4,"1201":4,"1202":3,"1203":3,"1204":4,"1205":9,"1206":3,"1207":5,"1208":3,"1209":6,"1210":5,"1211":4,"1212":3,"1213":7,"1214":7,"1215":4,"1216":3,"1217":4,"1218":4,"1219":3,"1220":4,"1221":2,"1222":5,"1223":3,"1224":3,"1225":5,"1226":4,"1227":3,"1228":4,"1229":8,"1230":6,"1231":3,"1232":5,"1233":5,"1234":3,"1235":4,"1236":3,"1237":3,"1238":3,"1239":6,"1240":4,"1241":5,"1242":4,"1243":5,"1244":7,"1245":3,"1246":5,"1247":3,"1248":4,"1249":5,"1250":4,"1251":3,"1252":8,"1253":4,"1254":4,"1255":7,"1256":4,"1257":3,"1258":9,"1259":3,"1260":4,"1261":3,"1262":5,"1263":3,"1264":7,"1265":4,"1266":3,"1267":4,"1268":9,"1269":4,"1270":3,"1271":4,"1272":5,"1273":3,"1274":4,"1275":4,"1276":4,"1277":4,"1278":5,"1279":1,"1280":3,"1281":6,"1282":2,"1283":6,"1284":5,"1285":4,"1286":3,"1287":6,"1288":1,"1289":4,"1290":5,"1291":3,"1292":3,"1293":3,"1294":4,"1295":4,"1296":5,"1297":4,"1298":5,"1299":3,"1300":4,"1301":4,"1302":4,"1303":8,"1304":3,"1305":4,"1306":4,"1307":6,"1308":3,"1309":3,"1310":2,"1311":3,"1312":6,"1313":4,"1314":4,"1315":4,"1316":5,"1317":4,"1318":6,"1319":3,"1320":2,"1321":3,"1322":3,"1323":1,"1324":3,"1325":5,"1326":1,"1327":4,"1328":4,"1329":3,"1330":3,"1331":2,"1332":4,"1333":3,"1334":1,"1335":7,"1336":9,"1337":3,"1338":6,"1339":4,"1340":4,"1341":4,"1342":4,"1343":6,"1344":5,"1345":3,"1346":8,"1347":4,"1348":3,"1349":4,"1350":3,"1351":5,"1352":2,"1353":2,"1354":4,"1355":3,"1356":3,"1357":4,"1358":4,"1359":4,"1360":5,"1361":3,"1362":2,"1363":4,"1364":3,"1365":4,"1366":3,"1367":3,"1368":4,"1369":5,"1370":5,"1371":8,"1372":3,"1373":6,"1374":3,"1375":4,"1376":5,"1377":3,"1378":4,"1379":3,"1380":5,"1381":3,"1382":2,"1383":8,"1384":4,"1385":1,"1386":2,"1387":5,"1388":3,"1389":4,"1390":3,"1391":5,"1392":5,"1393":1,"1394":1,"1395":6,"1396":7,"1397":4,"1398":1,"1399":4,"1400":4,"1401":3,"1402":3,"1403":1,"1404":6,"1405":3,"1406":2,"1407":3,"1408":1,"1409":3,"1410":6,"1411":4,"1412":7,"1413":1,"1414":4,"1415":3,"1416":5,"1417":4,"1418":7,"1419":2,"1420":4,"1421":5,"1422":3,"1423":4,"1424":3,"1425":4,"1426":3,"1427":3,"1428":1,"1429":1,"1430":1,"1431":4,"1432":3,"1433":2,"1434":3,"1435":2,"1436":4,"1437":1,"1438":5,"1439":3,"1440":3,"1441":3,"1442":2,"1443":3,"1444":3,"1445":4,"1446":9,"1447":3,"1448":3,"1449":3,"1450":5,"1451":3,"1452":3,"1453":4,"1454":4,"1455":4,"1456":7,"1457":3,"1458":4,"1459":3,"1460":5,"1461":1,"1462":5,"1463":7,"1464":5,"1465":6,"1466":5,"1467":4,"1468":2,"1469":3,"1470":6,"1471":4,"1472":2,"1473":3,"1474":4,"1475":4,"1476":3,"1477":2,"1478":3,"1479":3,"1480":4,"1481":5,"1482":5,"1483":3,"1484":4,"1485":4,"1486":2,"1487":3,"1488":4,"1489":3,"1490":3,"1491":3,"1492":7,"1493":4,"1494":4,"1495":5,"1496":4,"1497":3,"1498":3,"1499":3,"1500":4,"1501":5,"1502":3,"1503":4,"1504":4,"1505":3,"1506":3,"1507":4,"1508":4,"1509":3,"1510":3,"1511":5,"1512":4,"1513":3,"1514":4,"1515":4,"1516":5,"1517":4,"1518":2,"1519":4,"1520":5,"1521":5,"1522":3,"1523":1,"1524":3,"1525":4,"1526":4,"1527":3,"1528":5,"1529":3,"1530":9,"1531":3,"1532":7,"1533":4,"1534":4,"1535":3,"1536":7,"1537":3,"1538":9,"1539":9,"1540":6,"1541":1,"1542":5,"1543":3,"1544":9,"1545":5,"1546":5,"1547":2,"1548":3,"1549":6,"1550":3,"1551":4,"1552":4,"1553":3,"1554":4,"1555":4,"1556":4,"1557":5,"1558":7,"1559":2,"1560":4,"1561":3,"1562":4,"1563":6,"1564":4,"1565":5,"1566":8,"1567":4,"1568":6,"1569":2,"1570":4,"1571":3,"1572":2,"1573":4,"1574":5,"1575":8,"1576":2,"1577":4,"1578":3,"1579":4,"1580":5,"1581":4,"1582":4,"1583":4,"1584":7,"1585":5,"1586":6,"1587":3,"1588":5,"1589":4,"1590":5,"1591":8,"1592":5,"1593":5,"1594":4,"1595":5,"1596":4,"1597":9,"1598":3,"1599":3,"1600":2,"1601":3,"1602":5,"1603":3,"1604":3,"1605":5,"1606":5,"1607":3,"1608":3,"1609":3,"1610":6,"1611":3,"1612":4,"1613":2,"1614":5,"1615":2,"1616":4,"1617":1,"1618":4,"1619":4,"1620":3,"1621":5,"1622":1,"1623":7,"1624":4,"1625":5,"1626":8,"1627":4,"1628":3,"1629":4,"1630":5,"1631":1,"1632":6,"1633":2,"1634":2,"1635":5,"1636":3,"1637":4,"1638":7,"1639":5,"1640":3,"1641":3,"1642":1,"1643":4,"1644":4,"1645":2,"1646":3,"1647":1,"1648":7,"1649":5,"1650":5,"1651":7,"1652":3,"1653":4,"1654":7,"1655":3,"1656":4,"1657":4,"1658":6,"1659":4,"1660":4,"1661":5,"1662":3,"1663":3,"1664":4,"1665":4,"1666":2,"1667":4,"1668":4,"1669":7,"1670":1,"1671":5,"1672":5,"1673":8,"1674":2,"1675":4,"1676":3,"1677":2,"1678":2,"1679":2,"1680":5,"1681":5,"1682":3,"1683":5,"1684":5,"1685":5,"1686":5,"1687":5,"1688":5,"1689":3,"1690":4,"1691":3,"1692":4,"1693":1,"1694":6,"1695":5,"1696":4,"1697":5,"1698":3,"1699":4,"1700":4,"1701":3,"1702":5,"1703":5,"1704":1,"1705":5,"1706":5,"1707":7,"1708":3,"1709":3,"1710":4,"1711":5,"1712":4,"1713":5,"1714":2,"1715":9,"1716":1,"1717":1,"1718":5,"1719":5,"1720":3,"1721":7,"1722":4,"1723":6,"1724":5,"1725":4,"1726":4,"1727":1,"1728":7,"1729":4,"1730":6,"1731":8,"1732":4,"1733":6,"1734":7,"1735":5,"1736":4,"1737":4,"1738":7,"1739":3,"1740":3,"1741":3,"1742":6,"1743":5,"1744":3,"1745":2,"1746":4,"1747":5,"1748":7,"1749":3,"1750":5,"1751":7,"1752":3,"1753":4,"1754":5,"1755":5,"1756":7,"1757":5,"1758":4,"1759":1,"1760":5,"1761":2,"1762":7,"1763":4,"1764":4,"1765":4,"1766":2,"1767":2,"1768":4,"1769":3,"1770":4,"1771":3,"1772":5,"1773":2,"1774":4,"1775":5,"1776":3,"1777":3,"1778":5,"1779":4,"1780":6,"1781":3,"1782":4,"1783":4,"1784":5,"1785":2,"1786":3,"1787":4,"1788":2,"1789":5,"1790":4,"1791":4,"1792":2,"1793":2,"1794":4,"1795":3,"1796":4,"1797":4,"1798":4,"1799":4,"1800":3,"1801":5,"1802":8,"1803":3,"1804":3,"1805":2,"1806":2,"1807":3,"1808":2,"1809":9,"1810":5,"1811":3,"1812":9,"1813":4,"1814":1,"1815":5,"1816":4,"1817":3,"1818":3,"1819":7,"1820":6,"1821":6,"1822":3,"1823":3,"1824":4,"1825":4,"1826":4,"1827":4,"1828":4,"1829":3,"1830":7,"1831":4,"1832":2,"1833":8,"1834":1,"1835":2,"1836":5,"1837":8,"1838":4,"1839":4,"1840":3,"1841":2,"1842":4,"1843":5,"1844":3,"1845":5,"1846":5,"1847":5,"1848":4,"1849":3,"1850":5,"1851":6,"1852":3,"1853":6,"1854":3,"1855":5,"1856":3,"1857":3,"1858":4,"1859":3,"1860":3,"1861":4,"1862":2,"1863":1,"1864":5,"1865":4,"1866":7,"1867":5,"1868":4,"1869":5,"1870":5,"1871":5,"1872":3,"1873":3,"1874":4,"1875":2,"1876":4,"1877":3,"1878":8,"1879":6,"1880":4,"1881":4,"1882":2,"1883":1,"1884":2,"1885":5,"1886":5,"1887":5,"1888":3,"1889":4,"1890":4,"1891":4,"1892":3,"1893":7,"1894":3,"1895":4,"1896":4,"1897":5,"1898":4,"1899":4,"1900":3,"1901":2,"1902":3,"1903":5,"1904":2,"1905":4,"1906":6,"1907":1,"1908":3,"1909":4,"1910":2,"1911":3,"1912":3,"1913":4,"1914":2,"1915":7,"1916":3,"1917":4,"1918":2,"1919":1,"1920":2,"1921":8,"1922":7,"1923":3,"1924":6,"1925":4,"1926":4,"1927":4,"1928":5,"1929":4,"1930":3,"1931":2,"1932":4,"1933":3,"1934":4,"1935":5,"1936":5,"1937":3,"1938":4,"1939":5,"1940":5,"1941":3,"1942":5,"1943":4,"1944":5,"1945":9,"1946":9,"1947":3,"1948":2,"1949":2,"1950":3,"1951":3,"1952":8,"1953":1,"1954":1,"1955":4,"1956":7,"1957":3,"1958":7,"1959":4,"1960":1,"1961":4,"1962":5,"1963":4,"1964":4,"1965":4,"1966":9,"1967":7,"1968":4,"1969":5,"1970":2,"1971":9,"1972":3,"1973":3,"1974":4,"1975":3,"1976":4,"1977":2,"1978":2,"1979":2,"1980":5,"1981":7,"1982":3,"1983":4,"1984":4,"1985":4,"1986":2,"1987":4,"1988":4,"1989":3,"1990":4,"1991":5,"1992":3,"1993":4,"1994":3,"1995":4,"1996":9,"1997":7,"1998":3,"1999":5,"2000":7,"2001":6,"2002":4,"2003":1,"2004":4,"2005":3,"2006":4,"2007":4,"2008":2,"2009":4,"2010":3,"2011":4,"2012":3,"2013":9,"2014":5,"2015":4,"2016":4,"2017":2,"2018":3,"2019":7,"2020":1,"2021":3,"2022":5,"2023":4,"2024":4,"2025":3,"2026":3,"2027":4,"2028":7,"2029":4,"2030":4,"2031":5,"2032":4,"2033":8,"2034":2,"2035":3,"2036":4,"2037":4,"2038":3,"2039":8,"2040":3,"2041":4,"2042":3,"2043":3,"2044":3,"2045":4,"2046":4,"2047":4,"2048":4,"2049":3,"2050":3,"2051":3,"2052":1,"2053":5,"2054":3,"2055":5,"2056":3,"2057":2,"2058":4,"2059":5,"2060":2,"2061":4,"2062":6,"2063":4,"2064":5,"2065":4,"2066":6,"2067":5,"2068":5,"2069":2,"2070":5,"2071":3,"2072":4,"2073":5,"2074":5,"2075":5,"2076":2,"2077":5,"2078":3,"2079":3,"2080":4,"2081":2,"2082":4,"2083":4,"2084":1,"2085":4,"2086":4,"2087":3,"2088":4,"2089":4,"2090":2,"2091":4,"2092":3,"2093":3,"2094":4,"2095":1,"2096":3,"2097":4,"2098":4,"2099":8,"2100":9,"2101":4,"2102":4,"2103":3,"2104":5,"2105":3,"2106":4,"2107":3,"2108":5,"2109":3,"2110":4,"2111":6,"2112":5,"2113":1,"2114":4,"2115":3,"2116":2,"2117":3,"2118":2,"2119":3,"2120":3,"2121":2,"2122":3,"2123":1,"2124":3,"2125":4,"2126":3,"2127":1,"2128":4,"2129":6,"2130":3,"2131":5,"2132":4,"2133":3,"2134":2,"2135":3,"2136":3,"2137":5,"2138":3,"2139":2,"2140":3,"2141":3,"2142":3,"2143":2,"2144":3,"2145":8,"2146":4,"2147":9,"2148":3,"2149":2,"2150":3,"2151":3,"2152":7,"2153":3,"2154":4,"2155":4,"2156":9,"2157":5,"2158":8,"2159":9,"2160":1,"2161":7,"2162":2,"2163":3,"2164":3,"2165":5,"2166":3,"2167":3,"2168":5,"2169":5,"2170":3,"2171":9,"2172":8,"2173":3,"2174":5,"2175":3,"2176":4,"2177":5,"2178":3,"2179":4,"2180":3,"2181":5,"2182":1,"2183":1,"2184":4,"2185":4,"2186":3,"2187":5,"2188":5,"2189":3,"2190":2,"2191":5,"2192":3,"2193":8,"2194":3,"2195":2,"2196":3,"2197":4,"2198":3,"2199":3,"2200":1,"2201":6,"2202":4,"2203":4,"2204":2,"2205":3,"2206":4,"2207":4,"2208":3,"2209":3,"2210":7,"2211":7,"2212":6,"2213":7,"2214":4,"2215":7,"2216":9,"2217":3,"2218":5,"2219":4,"2220":2,"2221":4,"2222":3,"2223":4,"2224":4,"2225":3,"2226":1,"2227":3,"2228":4,"2229":5,"2230":4,"2231":6,"2232":1,"2233":4,"2234":2,"2235":4,"2236":2,"2237":5,"2238":3,"2239":3,"2240":3,"2241":3,"2242":4,"2243":3,"2244":2,"2245":2,"2246":3,"2247":5,"2248":3,"2249":9,"2250":5,"2251":2,"2252":3,"2253":3,"2254":4,"2255":2,"2256":3,"2257":1,"2258":5,"2259":4,"2260":2,"2261":2,"2262":3,"2263":9,"2264":5,"2265":5,"2266":6,"2267":5,"2268":2,"2269":2,"2270":6,"2271":3,"2272":3,"2273":3,"2274":4,"2275":7,"2276":4,"2277":3,"2278":3,"2279":4,"2280":3,"2281":5,"2282":1,"2283":5,"2284":4,"2285":4,"2286":5,"2287":5,"2288":5,"2289":2,"2290":3,"2291":3,"2292":3,"2293":4,"2294":2,"2295":4,"2296":3,"2297":5,"2298":5,"2299":4,"2300":4,"2301":4,"2302":4,"2303":2,"2304":6,"2305":7,"2306":7,"2307":4,"2308":3,"2309":7,"2310":5,"2311":5,"2312":3,"2313":4,"2314":3,"2315":4,"2316":3,"2317":4,"2318":3,"2319":4,"2320":1,"2321":9,"2322":3,"2323":3,"2324":5,"2325":2,"2326":5,"2327":3,"2328":4,"2329":3,"2330":4,"2331":1,"2332":2,"2333":4,"2334":7,"2335":6,"2336":7,"2337":4,"2338":4,"2339":4,"2340":3,"2341":3,"2342":2,"2343":6,"2344":8,"2345":4,"2346":9,"2347":5,"2348":4,"2349":3,"2350":2,"2351":4,"2352":8,"2353":4,"2354":4,"2355":5,"2356":3,"2357":4,"2358":4,"2359":1,"2360":3,"2361":5,"2362":3,"2363":4,"2364":5,"2365":4,"2366":2,"2367":4,"2368":3,"2369":3,"2370":3,"2371":9,"2372":7,"2373":4,"2374":6,"2375":3,"2376":3,"2377":2,"2378":4,"2379":2,"2380":4,"2381":7,"2382":5,"2383":4,"2384":4,"2385":3,"2386":2,"2387":7,"2388":9,"2389":3,"2390":5,"2391":4,"2392":4,"2393":4,"2394":4,"2395":3,"2396":1,"2397":4,"2398":5,"2399":4,"2400":1,"2401":5,"2402":5,"2403":4,"2404":4,"2405":3,"2406":3,"2407":9,"2408":3,"2409":1,"2410":3,"2411":2,"2412":4,"2413":5,"2414":3,"2415":3,"2416":3,"2417":6,"2418":3,"2419":4,"2420":5,"2421":6,"2422":3,"2423":5,"2424":4,"2425":5,"2426":4,"2427":9,"2428":6,"2429":3,"2430":4,"2431":3,"2432":2,"2433":4,"2434":4,"2435":6,"2436":3,"2437":5,"2438":4,"2439":3,"2440":4,"2441":8,"2442":4,"2443":3,"2444":4,"2445":3,"2446":4,"2447":3,"2448":2,"2449":5,"2450":4,"2451":4,"2452":4,"2453":9,"2454":5,"2455":7,"2456":1,"2457":4,"2458":3,"2459":5,"2460":3,"2461":2,"2462":5,"2463":5,"2464":4,"2465":8,"2466":4,"2467":4,"2468":4,"2469":6,"2470":3,"2471":5,"2472":3,"2473":3,"2474":5,"2475":4,"2476":5,"2477":5,"2478":1,"2479":8,"2480":3,"2481":2,"2482":5,"2483":6,"2484":1,"2485":3,"2486":5,"2487":5,"2488":4,"2489":2,"2490":5,"2491":4,"2492":3,"2493":3,"2494":5,"2495":4,"2496":3,"2497":5,"2498":5,"2499":4,"2500":4,"2501":4,"2502":3,"2503":3,"2504":4,"2505":4,"2506":4,"2507":5,"2508":4,"2509":2,"2510":2,"2511":5,"2512":2,"2513":3,"2514":5,"2515":4,"2516":4,"2517":6,"2518":5,"2519":6,"2520":3,"2521":4,"2522":5,"2523":4,"2524":4,"2525":5,"2526":9,"2527":4,"2528":5,"2529":7,"2530":5,"2531":1,"2532":4,"2533":3,"2534":5,"2535":2,"2536":7,"2537":5,"2538":5,"2539":4,"2540":1,"2541":4,"2542":3,"2543":6,"2544":4,"2545":4,"2546":4,"2547":7,"2548":5,"2549":4,"2550":4,"2551":4,"2552":3,"2553":4,"2554":4,"2555":8,"2556":4,"2557":4,"2558":3,"2559":4,"2560":9,"2561":4,"2562":3,"2563":4,"2564":2,"2565":4,"2566":4,"2567":9,"2568":1,"2569":2,"2570":2,"2571":3,"2572":4,"2573":4,"2574":4,"2575":1,"2576":2,"2577":6,"2578":5,"2579":6,"2580":4,"2581":3,"2582":4,"2583":4,"2584":4,"2585":6,"2586":5,"2587":5,"2588":4,"2589":3,"2590":4,"2591":5,"2592":8,"2593":8,"2594":4,"2595":6,"2596":5,"2597":1,"2598":4,"2599":9,"2600":7,"2601":4,"2602":4,"2603":4,"2604":8,"2605":4,"2606":3,"2607":4,"2608":6,"2609":2,"2610":3,"2611":4,"2612":2,"2613":2,"2614":4,"2615":3,"2616":4,"2617":3,"2618":1,"2619":5,"2620":2,"2621":3,"2622":1,"2623":2,"2624":4,"2625":3,"2626":4,"2627":2,"2628":7,"2629":2,"2630":4,"2631":5,"2632":1,"2633":3,"2634":4,"2635":5,"2636":6,"2637":3,"2638":2,"2639":3,"2640":4,"2641":4,"2642":5,"2643":6,"2644":3,"2645":4,"2646":3,"2647":2,"2648":6,"2649":3,"2650":4,"2651":3,"2652":4,"2653":5,"2654":5,"2655":3,"2656":4,"2657":3,"2658":5,"2659":4,"2660":4,"2661":3,"2662":4,"2663":1,"2664":3,"2665":3,"2666":3,"2667":5,"2668":4,"2669":2,"2670":4,"2671":4,"2672":4,"2673":7,"2674":5,"2675":8,"2676":4,"2677":2,"2678":6,"2679":4,"2680":3,"2681":7,"2682":2,"2683":4,"2684":3,"2685":4,"2686":5,"2687":3,"2688":4,"2689":4,"2690":4,"2691":4,"2692":2,"2693":3,"2694":7,"2695":1,"2696":3,"2697":3,"2698":2,"2699":5,"2700":3,"2701":3,"2702":6,"2703":4,"2704":8,"2705":3,"2706":4,"2707":2,"2708":4,"2709":2,"2710":4,"2711":5,"2712":3,"2713":1,"2714":4,"2715":5,"2716":7,"2717":4,"2718":3,"2719":4,"2720":6,"2721":3,"2722":4,"2723":4,"2724":3,"2725":4,"2726":4,"2727":5,"2728":3,"2729":2,"2730":3,"2731":4,"2732":5,"2733":6,"2734":6,"2735":3,"2736":2,"2737":3,"2738":3,"2739":3,"2740":3,"2741":4,"2742":7,"2743":3,"2744":5,"2745":6,"2746":4,"2747":5,"2748":3,"2749":3,"2750":3,"2751":7,"2752":4,"2753":9,"2754":3,"2755":4,"2756":2,"2757":5,"2758":4,"2759":3,"2760":1,"2761":5,"2762":8,"2763":2,"2764":6,"2765":2,"2766":5,"2767":3,"2768":1,"2769":3,"2770":4,"2771":2,"2772":4,"2773":4,"2774":5,"2775":6,"2776":3,"2777":4,"2778":3,"2779":3,"2780":3,"2781":7,"2782":3,"2783":3,"2784":2,"2785":7,"2786":4,"2787":3,"2788":3,"2789":4,"2790":4,"2791":3,"2792":7,"2793":6,"2794":8,"2795":8,"2796":4,"2797":3,"2798":5,"2799":7,"2800":3,"2801":3,"2802":4,"2803":4,"2804":7,"2805":8,"2806":3,"2807":4,"2808":3,"2809":6,"2810":4,"2811":5,"2812":3,"2813":5,"2814":4,"2815":4,"2816":1,"2817":2,"2818":1,"2819":4,"2820":3,"2821":4,"2822":3,"2823":4,"2824":8,"2825":3,"2826":3,"2827":4,"2828":4,"2829":6,"2830":6,"2831":6,"2832":2,"2833":5,"2834":5,"2835":3,"2836":4,"2837":4,"2838":8,"2839":4,"2840":6,"2841":3,"2842":1,"2843":4,"2844":4,"2845":3,"2846":4,"2847":5,"2848":4,"2849":3,"2850":3,"2851":3,"2852":8,"2853":2,"2854":1,"2855":4,"2856":2,"2857":3,"2858":4,"2859":4,"2860":3,"2861":4,"2862":7,"2863":4,"2864":4,"2865":6,"2866":3,"2867":2,"2868":2,"2869":2,"2870":2,"2871":6,"2872":3,"2873":4,"2874":4,"2875":1,"2876":3,"2877":4,"2878":4,"2879":5,"2880":2,"2881":4,"2882":3,"2883":2,"2884":7,"2885":5,"2886":7,"2887":6,"2888":3,"2889":1,"2890":1,"2891":2,"2892":3,"2893":9,"2894":3,"2895":3,"2896":4,"2897":2,"2898":4,"2899":8,"2900":4,"2901":3,"2902":4,"2903":2,"2904":3,"2905":5,"2906":4,"2907":3,"2908":5,"2909":3,"2910":4,"2911":2,"2912":3,"2913":4,"2914":4,"2915":3,"2916":4,"2917":4,"2918":5,"2919":2,"2920":3,"2921":5,"2922":3,"2923":4,"2924":2,"2925":3,"2926":4,"2927":2,"2928":7,"2929":1,"2930":3,"2931":3,"2932":3,"2933":3,"2934":4,"2935":3,"2936":8,"2937":4,"2938":8,"2939":4,"2940":4,"2941":5,"2942":4,"2943":4,"2944":3,"2945":5,"2946":4,"2947":4,"2948":3,"2949":4,"2950":5,"2951":5,"2952":2,"2953":4,"2954":4,"2955":2,"2956":4,"2957":3,"2958":5,"2959":4,"2960":6,"2961":4,"2962":1,"2963":3,"2964":2,"2965":5,"2966":4,"2967":3,"2968":4,"2969":8,"2970":5,"2971":4,"2972":3,"2973":3,"2974":3,"2975":6,"2976":2,"2977":4,"2978":4,"2979":4,"2980":4,"2981":4,"2982":4,"2983":5,"2984":5,"2985":6,"2986":4,"2987":4,"2988":3,"2989":3,"2990":4,"2991":3,"2992":4,"2993":2,"2994":6,"2995":2,"2996":3,"2997":4,"2998":3,"2999":2,"3000":3,"3001":5,"3002":3,"3003":4,"3004":2,"3005":1,"3006":5,"3007":2,"3008":4,"3009":3,"3010":3,"3011":3,"3012":4,"3013":4,"3014":5,"3015":3,"3016":5,"3017":3,"3018":7,"3019":5,"3020":1,"3021":2,"3022":4,"3023":4,"3024":6,"3025":8,"3026":3,"3027":4,"3028":8,"3029":7,"3030":4,"3031":7,"3032":4,"3033":3,"3034":4,"3035":3,"3036":3,"3037":3,"3038":4,"3039":6,"3040":3,"3041":3,"3042":1,"3043":5,"3044":3,"3045":4,"3046":3,"3047":9,"3048":5,"3049":5,"3050":4,"3051":4,"3052":3,"3053":4,"3054":5,"3055":5,"3056":3,"3057":4,"3058":3,"3059":6,"3060":5,"3061":3,"3062":6,"3063":3,"3064":4,"3065":4,"3066":6,"3067":4,"3068":4,"3069":3,"3070":5,"3071":5,"3072":5,"3073":4,"3074":3,"3075":4,"3076":4,"3077":6,"3078":4,"3079":4,"3080":5,"3081":3,"3082":7,"3083":4,"3084":4,"3085":1,"3086":5,"3087":4,"3088":2,"3089":4,"3090":1,"3091":5,"3092":1,"3093":6,"3094":9,"3095":2,"3096":3,"3097":5,"3098":2,"3099":5,"3100":4,"3101":4,"3102":5,"3103":6,"3104":3,"3105":5,"3106":1,"3107":4,"3108":3,"3109":4,"3110":4,"3111":4,"3112":4,"3113":3,"3114":8,"3115":7,"3116":2,"3117":4,"3118":5,"3119":3,"3120":4,"3121":5,"3122":3,"3123":2,"3124":6,"3125":3,"3126":7,"3127":3,"3128":4,"3129":4,"3130":5,"3131":3,"3132":4,"3133":4,"3134":4,"3135":2,"3136":3,"3137":4,"3138":2,"3139":6,"3140":7,"3141":3,"3142":1,"3143":7,"3144":8,"3145":4,"3146":3,"3147":4,"3148":9,"3149":4,"3150":5,"3151":4,"3152":3,"3153":3,"3154":4,"3155":5,"3156":4,"3157":3,"3158":3,"3159":4,"3160":5,"3161":3,"3162":5,"3163":3,"3164":3,"3165":3,"3166":2,"3167":4,"3168":1,"3169":5,"3170":1,"3171":6,"3172":5,"3173":2,"3174":3,"3175":2,"3176":8,"3177":7,"3178":2,"3179":4,"3180":5,"3181":5,"3182":4,"3183":5,"3184":3,"3185":3,"3186":7,"3187":4,"3188":4,"3189":5,"3190":7,"3191":1,"3192":3,"3193":1,"3194":3,"3195":2,"3196":9,"3197":4,"3198":6,"3199":2,"3200":4,"3201":4,"3202":3,"3203":2,"3204":6,"3205":5,"3206":3,"3207":3,"3208":3,"3209":3,"3210":3,"3211":7,"3212":5,"3213":4,"3214":2,"3215":3,"3216":6,"3217":2,"3218":5,"3219":4,"3220":3,"3221":3,"3222":5,"3223":4,"3224":3,"3225":5,"3226":7,"3227":3,"3228":5,"3229":3,"3230":1,"3231":4,"3232":5,"3233":4,"3234":2,"3235":5,"3236":8,"3237":5,"3238":3,"3239":4,"3240":1,"3241":3,"3242":4,"3243":3,"3244":4,"3245":5,"3246":4,"3247":3,"3248":7,"3249":3,"3250":3,"3251":3,"3252":4,"3253":5,"3254":3,"3255":4,"3256":3,"3257":2,"3258":4,"3259":5,"3260":5,"3261":8,"3262":3,"3263":4,"3264":3,"3265":5,"3266":1,"3267":4,"3268":4,"3269":3,"3270":3,"3271":8,"3272":3,"3273":7,"3274":6,"3275":4,"3276":5,"3277":4,"3278":3,"3279":7,"3280":4,"3281":4,"3282":5,"3283":3,"3284":2,"3285":3,"3286":6,"3287":3,"3288":3,"3289":5,"3290":4,"3291":4,"3292":3,"3293":4,"3294":8,"3295":6,"3296":4,"3297":4,"3298":4,"3299":8,"3300":3,"3301":4,"3302":2,"3303":5,"3304":7,"3305":3,"3306":4,"3307":2,"3308":4,"3309":3,"3310":9,"3311":2,"3312":4,"3313":6,"3314":4,"3315":7,"3316":4,"3317":2,"3318":2,"3319":3,"3320":4,"3321":4,"3322":6,"3323":4,"3324":2,"3325":5,"3326":4,"3327":4,"3328":7,"3329":6,"3330":2,"3331":4,"3332":5,"3333":3,"3334":3,"3335":7,"3336":2,"3337":6,"3338":4,"3339":3,"3340":4,"3341":4,"3342":3,"3343":5,"3344":7,"3345":5,"3346":4,"3347":4,"3348":1,"3349":4,"3350":3,"3351":3,"3352":4,"3353":4,"3354":4,"3355":4,"3356":5,"3357":3,"3358":6,"3359":4,"3360":4,"3361":4,"3362":3,"3363":1,"3364":4,"3365":4,"3366":8,"3367":2,"3368":3,"3369":3,"3370":5,"3371":4,"3372":4,"3373":6,"3374":2,"3375":4,"3376":4,"3377":3,"3378":3,"3379":5,"3380":9,"3381":4,"3382":4,"3383":3,"3384":4,"3385":5,"3386":1,"3387":2,"3388":3,"3389":4,"3390":8,"3391":3,"3392":3,"3393":5,"3394":6,"3395":4,"3396":4,"3397":5,"3398":4,"3399":4,"3400":5,"3401":7,"3402":4,"3403":1,"3404":3,"3405":5,"3406":4,"3407":3,"3408":4,"3409":2,"3410":4,"3411":3,"3412":4,"3413":2,"3414":4,"3415":4,"3416":4,"3417":7,"3418":4,"3419":4,"3420":4,"3421":1,"3422":6,"3423":3,"3424":3,"3425":2,"3426":3,"3427":4,"3428":5,"3429":3,"3430":9,"3431":2,"3432":4,"3433":1,"3434":2,"3435":4,"3436":7,"3437":3,"3438":3,"3439":2,"3440":3,"3441":3,"3442":3,"3443":5,"3444":4,"3445":4,"3446":3,"3447":6,"3448":5,"3449":5,"3450":1,"3451":4,"3452":4,"3453":9,"3454":3,"3455":4,"3456":3,"3457":1,"3458":3,"3459":4,"3460":2,"3461":4,"3462":2,"3463":1,"3464":3,"3465":3,"3466":5,"3467":2,"3468":1,"3469":3,"3470":4,"3471":5,"3472":7,"3473":4,"3474":2,"3475":8,"3476":7,"3477":2,"3478":6,"3479":3,"3480":4,"3481":6,"3482":4,"3483":2,"3484":4,"3485":3,"3486":1,"3487":4,"3488":4,"3489":3,"3490":3,"3491":2,"3492":3,"3493":5,"3494":4,"3495":3,"3496":2,"3497":7,"3498":4,"3499":4,"3500":4,"3501":4,"3502":9,"3503":8,"3504":1,"3505":6,"3506":4,"3507":4,"3508":5,"3509":7,"3510":4,"3511":3,"3512":4,"3513":3,"3514":3,"3515":4,"3516":7,"3517":8,"3518":6,"3519":3,"3520":4,"3521":3,"3522":2,"3523":4,"3524":8,"3525":9,"3526":7,"3527":5,"3528":5,"3529":4,"3530":3,"3531":4,"3532":5,"3533":8,"3534":5,"3535":2,"3536":7,"3537":7,"3538":7,"3539":6,"3540":6,"3541":5,"3542":3,"3543":4,"3544":3,"3545":5,"3546":4,"3547":6,"3548":4,"3549":2,"3550":3,"3551":7,"3552":3,"3553":4,"3554":3,"3555":3,"3556":3,"3557":8,"3558":3,"3559":4,"3560":2,"3561":3,"3562":4,"3563":3,"3564":3,"3565":4,"3566":1,"3567":4,"3568":5,"3569":2,"3570":4,"3571":4,"3572":3,"3573":4,"3574":5,"3575":5,"3576":5,"3577":3,"3578":3,"3579":1,"3580":1,"3581":7,"3582":4,"3583":5,"3584":4,"3585":4,"3586":4,"3587":1,"3588":2,"3589":4,"3590":3,"3591":3,"3592":1,"3593":8,"3594":5,"3595":2,"3596":7,"3597":3,"3598":8,"3599":5,"3600":8,"3601":8,"3602":4,"3603":4,"3604":3,"3605":5,"3606":3,"3607":6,"3608":1,"3609":3,"3610":4,"3611":4,"3612":4,"3613":3,"3614":5,"3615":4,"3616":3,"3617":2,"3618":5,"3619":4,"3620":4,"3621":4,"3622":4,"3623":4,"3624":1,"3625":4,"3626":2,"3627":5,"3628":3,"3629":8,"3630":3,"3631":7,"3632":4,"3633":3,"3634":4,"3635":2,"3636":4,"3637":3,"3638":2,"3639":7,"3640":5,"3641":2,"3642":4,"3643":3,"3644":4,"3645":6,"3646":2,"3647":4,"3648":1,"3649":3,"3650":3,"3651":3,"3652":2,"3653":5,"3654":4,"3655":4,"3656":5,"3657":4,"3658":3,"3659":4,"3660":3,"3661":5,"3662":6,"3663":4,"3664":2,"3665":5,"3666":5,"3667":3,"3668":3,"3669":4,"3670":7,"3671":3,"3672":2,"3673":7,"3674":4,"3675":5,"3676":8,"3677":5,"3678":7,"3679":5,"3680":6,"3681":2,"3682":4,"3683":3,"3684":6,"3685":4,"3686":4,"3687":4,"3688":4,"3689":4,"3690":4,"3691":4,"3692":4,"3693":6,"3694":4,"3695":4,"3696":4,"3697":2,"3698":4,"3699":3,"3700":7,"3701":3,"3702":4,"3703":4,"3704":7,"3705":4,"3706":4,"3707":3,"3708":3,"3709":3,"3710":3,"3711":4,"3712":3,"3713":5,"3714":4,"3715":6,"3716":4,"3717":2,"3718":3,"3719":5,"3720":5,"3721":3,"3722":9,"3723":4,"3724":2,"3725":1,"3726":4,"3727":4,"3728":5,"3729":4,"3730":2,"3731":9,"3732":2,"3733":4,"3734":2,"3735":3,"3736":1,"3737":1,"3738":2,"3739":9,"3740":4,"3741":1,"3742":5,"3743":4,"3744":4,"3745":5,"3746":5,"3747":4,"3748":4,"3749":5,"3750":4,"3751":3,"3752":1,"3753":6,"3754":9,"3755":5,"3756":3,"3757":3,"3758":3,"3759":5,"3760":4,"3761":2,"3762":3,"3763":4,"3764":2,"3765":4,"3766":4,"3767":3,"3768":7,"3769":3,"3770":9,"3771":3,"3772":3,"3773":4,"3774":5,"3775":4,"3776":4,"3777":4,"3778":8,"3779":1,"3780":5,"3781":4,"3782":4,"3783":3,"3784":3,"3785":9,"3786":4,"3787":4,"3788":4,"3789":9,"3790":4,"3791":1,"3792":4,"3793":4,"3794":1,"3795":5,"3796":6,"3797":3,"3798":5,"3799":3,"3800":5,"3801":3,"3802":2,"3803":4,"3804":6,"3805":3,"3806":4,"3807":4,"3808":4,"3809":4,"3810":5,"3811":2,"3812":3,"3813":2,"3814":3,"3815":8,"3816":7,"3817":4,"3818":3,"3819":6,"3820":4,"3821":6,"3822":3,"3823":3,"3824":3,"3825":7,"3826":4,"3827":4,"3828":3,"3829":3,"3830":1,"3831":5,"3832":5,"3833":2,"3834":3,"3835":3,"3836":4,"3837":2,"3838":4,"3839":6,"3840":4,"3841":2,"3842":4,"3843":3,"3844":5,"3845":3,"3846":4,"3847":5,"3848":5,"3849":5,"3850":3,"3851":2,"3852":4,"3853":7,"3854":3,"3855":3,"3856":7,"3857":5,"3858":8,"3859":4,"3860":9,"3861":3,"3862":4,"3863":5,"3864":4,"3865":3,"3866":4,"3867":5,"3868":2,"3869":2,"3870":2,"3871":3,"3872":3,"3873":8,"3874":4,"3875":7,"3876":8,"3877":2,"3878":4,"3879":9,"3880":4,"3881":3,"3882":5,"3883":4,"3884":4,"3885":2,"3886":2,"3887":1,"3888":3,"3889":4,"3890":4,"3891":4,"3892":5,"3893":7,"3894":3,"3895":4,"3896":5,"3897":5,"3898":3,"3899":3,"3900":3,"3901":2,"3902":7,"3903":3,"3904":3,"3905":4,"3906":6,"3907":3,"3908":9,"3909":9,"3910":5,"3911":3,"3912":4,"3913":3,"3914":4,"3915":4,"3916":3,"3917":6,"3918":5,"3919":4,"3920":3,"3921":3,"3922":4,"3923":7,"3924":8,"3925":4,"3926":3,"3927":4,"3928":2,"3929":3,"3930":5,"3931":3,"3932":3,"3933":4,"3934":3,"3935":4,"3936":1,"3937":5,"3938":3,"3939":3,"3940":5,"3941":4,"3942":3,"3943":5,"3944":4,"3945":3,"3946":4,"3947":2,"3948":4,"3949":5,"3950":5,"3951":4,"3952":3,"3953":7,"3954":3,"3955":2,"3956":1,"3957":3,"3958":4,"3959":8,"3960":7,"3961":5,"3962":4,"3963":1,"3964":4,"3965":1,"3966":1,"3967":3,"3968":1,"3969":7,"3970":5,"3971":3,"3972":2,"3973":6,"3974":4,"3975":7,"3976":5,"3977":4,"3978":5,"3979":2,"3980":4,"3981":6,"3982":3,"3983":2,"3984":3,"3985":7,"3986":7,"3987":5,"3988":2,"3989":2,"3990":5,"3991":3,"3992":3,"3993":5,"3994":4,"3995":4,"3996":4,"3997":3,"3998":3,"3999":4,"4000":3,"4001":3,"4002":4,"4003":7,"4004":3,"4005":4,"4006":4,"4007":3,"4008":4,"4009":3,"4010":6,"4011":2,"4012":5,"4013":5,"4014":6,"4015":5,"4016":8,"4017":4,"4018":9,"4019":5,"4020":5,"4021":5,"4022":1,"4023":5,"4024":6,"4025":4,"4026":3,"4027":3,"4028":3,"4029":3,"4030":2,"4031":4,"4032":8,"4033":4,"4034":7,"4035":5,"4036":8,"4037":7,"4038":2,"4039":1,"4040":4,"4041":5,"4042":3,"4043":4,"4044":3,"4045":5,"4046":6,"4047":3,"4048":4,"4049":2,"4050":3,"4051":3,"4052":5,"4053":1,"4054":3,"4055":4,"4056":6,"4057":4,"4058":2,"4059":2,"4060":4,"4061":4,"4062":7,"4063":4,"4064":1,"4065":3,"4066":3,"4067":4,"4068":1,"4069":5,"4070":3,"4071":3,"4072":3,"4073":2,"4074":8,"4075":2,"4076":4,"4077":4,"4078":4,"4079":2,"4080":3,"4081":3,"4082":4,"4083":4,"4084":4,"4085":7,"4086":7,"4087":3,"4088":4,"4089":4,"4090":2,"4091":5,"4092":4,"4093":8,"4094":3,"4095":5,"4096":5,"4097":4,"4098":3,"4099":2,"4100":3,"4101":1,"4102":1,"4103":4,"4104":3,"4105":4,"4106":4,"4107":4,"4108":1,"4109":5,"4110":8,"4111":4,"4112":5,"4113":4,"4114":6,"4115":4,"4116":3,"4117":4,"4118":3,"4119":1,"4120":3,"4121":4,"4122":3,"4123":1,"4124":4,"4125":4,"4126":7,"4127":3,"4128":4,"4129":6,"4130":3,"4131":5,"4132":4,"4133":2,"4134":4,"4135":4,"4136":2,"4137":9,"4138":2,"4139":5,"4140":4,"4141":6,"4142":4,"4143":5,"4144":5,"4145":4,"4146":2,"4147":8,"4148":4,"4149":3,"4150":4,"4151":5,"4152":6,"4153":3,"4154":5,"4155":3,"4156":4,"4157":1,"4158":5,"4159":4,"4160":3,"4161":7,"4162":5,"4163":3,"4164":3,"4165":4,"4166":6,"4167":3,"4168":4,"4169":4,"4170":6,"4171":1,"4172":3,"4173":5,"4174":3,"4175":3,"4176":8,"4177":3,"4178":1,"4179":2,"4180":4,"4181":3,"4182":5,"4183":5,"4184":4,"4185":3,"4186":3,"4187":3,"4188":4,"4189":8,"4190":5,"4191":3,"4192":6,"4193":4,"4194":4,"4195":5,"4196":4,"4197":6,"4198":4,"4199":3,"4200":2,"4201":4,"4202":5,"4203":4,"4204":2,"4205":3,"4206":4,"4207":5,"4208":4,"4209":1,"4210":3,"4211":2,"4212":4,"4213":3,"4214":4,"4215":4,"4216":6,"4217":7,"4218":3,"4219":5,"4220":4,"4221":8,"4222":4,"4223":3,"4224":2,"4225":7,"4226":6,"4227":3,"4228":3,"4229":3,"4230":6,"4231":8,"4232":4,"4233":4,"4234":3,"4235":3,"4236":5,"4237":2,"4238":4,"4239":4,"4240":5,"4241":4,"4242":5,"4243":7,"4244":4,"4245":1,"4246":3,"4247":8,"4248":2,"4249":3,"4250":5,"4251":3,"4252":5,"4253":5,"4254":3,"4255":4,"4256":5,"4257":4,"4258":3,"4259":4,"4260":3,"4261":5,"4262":6,"4263":4,"4264":1,"4265":4,"4266":7,"4267":2,"4268":4,"4269":3,"4270":3,"4271":5,"4272":3,"4273":2,"4274":4,"4275":5,"4276":3,"4277":3,"4278":4,"4279":5,"4280":2,"4281":3,"4282":4,"4283":3,"4284":4,"4285":2,"4286":4,"4287":3,"4288":3,"4289":2,"4290":5,"4291":4,"4292":4,"4293":9,"4294":4,"4295":3,"4296":4,"4297":6,"4298":4,"4299":5,"4300":3,"4301":4,"4302":5,"4303":4,"4304":1,"4305":5,"4306":4,"4307":2,"4308":3,"4309":4,"4310":6,"4311":4,"4312":6,"4313":3,"4314":4,"4315":3,"4316":3,"4317":4,"4318":3,"4319":4,"4320":4,"4321":4,"4322":3,"4323":5,"4324":5,"4325":5,"4326":2,"4327":6,"4328":2,"4329":7,"4330":4,"4331":5,"4332":6,"4333":4,"4334":5,"4335":8,"4336":3,"4337":5,"4338":3,"4339":7,"4340":3,"4341":3,"4342":4,"4343":4,"4344":5,"4345":6,"4346":3,"4347":4,"4348":3,"4349":5,"4350":4,"4351":2,"4352":3,"4353":4,"4354":4,"4355":2,"4356":1,"4357":5,"4358":3,"4359":7,"4360":3,"4361":5,"4362":2,"4363":3,"4364":3,"4365":5,"4366":3,"4367":5,"4368":3,"4369":5,"4370":2,"4371":4,"4372":3,"4373":3,"4374":3,"4375":2,"4376":3,"4377":7,"4378":4,"4379":1,"4380":1,"4381":2,"4382":3,"4383":4,"4384":1,"4385":4,"4386":5,"4387":3,"4388":3,"4389":1,"4390":6,"4391":3,"4392":2,"4393":3,"4394":4,"4395":4,"4396":8,"4397":2,"4398":4,"4399":2,"4400":4,"4401":9,"4402":5,"4403":8,"4404":3,"4405":2,"4406":5,"4407":4,"4408":5,"4409":4,"4410":4,"4411":4,"4412":3,"4413":3,"4414":5,"4415":1,"4416":4,"4417":4,"4418":5,"4419":5,"4420":4,"4421":2,"4422":5,"4423":8,"4424":4,"4425":8,"4426":6,"4427":3,"4428":4,"4429":4,"4430":4,"4431":9,"4432":7,"4433":5,"4434":3,"4435":2,"4436":4,"4437":3,"4438":3,"4439":3,"4440":3,"4441":7,"4442":7,"4443":3,"4444":4,"4445":4,"4446":4,"4447":4,"4448":4,"4449":1,"4450":4,"4451":7,"4452":3,"4453":2,"4454":8,"4455":4,"4456":4,"4457":5,"4458":5,"4459":3,"4460":6,"4461":2,"4462":3,"4463":4,"4464":4,"4465":4,"4466":5,"4467":3,"4468":7,"4469":2,"4470":3,"4471":4,"4472":3,"4473":4,"4474":4,"4475":3,"4476":9,"4477":2,"4478":4,"4479":3,"4480":4,"4481":5,"4482":1,"4483":4,"4484":5,"4485":4,"4486":4,"4487":4,"4488":3,"4489":2,"4490":4,"4491":4,"4492":2,"4493":5,"4494":7,"4495":3,"4496":1,"4497":3,"4498":4,"4499":6,"4500":1,"4501":4,"4502":4,"4503":1,"4504":6,"4505":3,"4506":7,"4507":3,"4508":4,"4509":3,"4510":3,"4511":8,"4512":4,"4513":3,"4514":6,"4515":3,"4516":4,"4517":3,"4518":5,"4519":5,"4520":4,"4521":4,"4522":3,"4523":1,"4524":6,"4525":4,"4526":4,"4527":4,"4528":1,"4529":7,"4530":4,"4531":4,"4532":5,"4533":5,"4534":4,"4535":5,"4536":9,"4537":1,"4538":5,"4539":7,"4540":7,"4541":8,"4542":7,"4543":1,"4544":3,"4545":7,"4546":3,"4547":3,"4548":3,"4549":8,"4550":5,"4551":3,"4552":4,"4553":4,"4554":3,"4555":4,"4556":9,"4557":6,"4558":2,"4559":1,"4560":2,"4561":5,"4562":3,"4563":3,"4564":3,"4565":6,"4566":5,"4567":3,"4568":5,"4569":4,"4570":2,"4571":3,"4572":4,"4573":3,"4574":3,"4575":3,"4576":4,"4577":4,"4578":3,"4579":3,"4580":3,"4581":3,"4582":4,"4583":5,"4584":4,"4585":4,"4586":7,"4587":4,"4588":4,"4589":9,"4590":8,"4591":4,"4592":5,"4593":3,"4594":2,"4595":7,"4596":5,"4597":4,"4598":3,"4599":3,"4600":6,"4601":4,"4602":5,"4603":5,"4604":3,"4605":2,"4606":8,"4607":3,"4608":4,"4609":4,"4610":3,"4611":5,"4612":3,"4613":5,"4614":4,"4615":3,"4616":3,"4617":5,"4618":3,"4619":4,"4620":4,"4621":5,"4622":6,"4623":4,"4624":4,"4625":5,"4626":3,"4627":3,"4628":4,"4629":7,"4630":2,"4631":3,"4632":3,"4633":4,"4634":1,"4635":3,"4636":5,"4637":4,"4638":4,"4639":3,"4640":6,"4641":2,"4642":4,"4643":3,"4644":2,"4645":2,"4646":3,"4647":3,"4648":3,"4649":4,"4650":4,"4651":4,"4652":2,"4653":4,"4654":4,"4655":2,"4656":5,"4657":5,"4658":5,"4659":6,"4660":3,"4661":3,"4662":4,"4663":4,"4664":3,"4665":2,"4666":6,"4667":4,"4668":8,"4669":9,"4670":5,"4671":4,"4672":2,"4673":2,"4674":5,"4675":3,"4676":7,"4677":5,"4678":5,"4679":4,"4680":3,"4681":3,"4682":5,"4683":4,"4684":4,"4685":4,"4686":5,"4687":4,"4688":4,"4689":6,"4690":3,"4691":2,"4692":3,"4693":5,"4694":4,"4695":5,"4696":8,"4697":3,"4698":3,"4699":2,"4700":7,"4701":2,"4702":7,"4703":3,"4704":7,"4705":5,"4706":6,"4707":3,"4708":4,"4709":3,"4710":4,"4711":4,"4712":2,"4713":7,"4714":3,"4715":4,"4716":5,"4717":3,"4718":3,"4719":8,"4720":2,"4721":4,"4722":4,"4723":3,"4724":5,"4725":2,"4726":2,"4727":4,"4728":6,"4729":7,"4730":5,"4731":6,"4732":2,"4733":4,"4734":4,"4735":4,"4736":5,"4737":4,"4738":6,"4739":5,"4740":3,"4741":3,"4742":5,"4743":2,"4744":1,"4745":3,"4746":1,"4747":4,"4748":6,"4749":5,"4750":7,"4751":4,"4752":4,"4753":4,"4754":3,"4755":3,"4756":1,"4757":3,"4758":3,"4759":4,"4760":3,"4761":4,"4762":4,"4763":4,"4764":4,"4765":3,"4766":4,"4767":2,"4768":3,"4769":4,"4770":3,"4771":4,"4772":2,"4773":4,"4774":5,"4775":3,"4776":4,"4777":3,"4778":4,"4779":7,"4780":1,"4781":3,"4782":4,"4783":3,"4784":5,"4785":4,"4786":6,"4787":3,"4788":4,"4789":5,"4790":3,"4791":9,"4792":5,"4793":4,"4794":1,"4795":9,"4796":2,"4797":4,"4798":3,"4799":3,"4800":5,"4801":4,"4802":3,"4803":2,"4804":3,"4805":9,"4806":3,"4807":1,"4808":3,"4809":4,"4810":4,"4811":4,"4812":4,"4813":3,"4814":8,"4815":5,"4816":5,"4817":5,"4818":4,"4819":3,"4820":2,"4821":4,"4822":1,"4823":3,"4824":3,"4825":4,"4826":4,"4827":4,"4828":3,"4829":4,"4830":4,"4831":4,"4832":2,"4833":3,"4834":4,"4835":6,"4836":7,"4837":6,"4838":1,"4839":7,"4840":4,"4841":5,"4842":2,"4843":3,"4844":3,"4845":4,"4846":3,"4847":5,"4848":4,"4849":4,"4850":5,"4851":3,"4852":5,"4853":4,"4854":3,"4855":3,"4856":4,"4857":4,"4858":2,"4859":4,"4860":3,"4861":4,"4862":5,"4863":1,"4864":4,"4865":5,"4866":4,"4867":2,"4868":8,"4869":5,"4870":3,"4871":8,"4872":2,"4873":4,"4874":1,"4875":4,"4876":5,"4877":5,"4878":7,"4879":7,"4880":4,"4881":3,"4882":5,"4883":3,"4884":5,"4885":7,"4886":4,"4887":1,"4888":4,"4889":2,"4890":8,"4891":4,"4892":5,"4893":4,"4894":3,"4895":4,"4896":3,"4897":3,"4898":8,"4899":6,"4900":8,"4901":5,"4902":2,"4903":1,"4904":6,"4905":2,"4906":2,"4907":3,"4908":4,"4909":6,"4910":3,"4911":2,"4912":5,"4913":6,"4914":4,"4915":2,"4916":3,"4917":2,"4918":4,"4919":2,"4920":9,"4921":5,"4922":8,"4923":4,"4924":7,"4925":6,"4926":3,"4927":5,"4928":4,"4929":4,"4930":4,"4931":3,"4932":2,"4933":5,"4934":2,"4935":4,"4936":3,"4937":5,"4938":2,"4939":4,"4940":4,"4941":4,"4942":5,"4943":4,"4944":5,"4945":3,"4946":5,"4947":2,"4948":9,"4949":4,"4950":4,"4951":3,"4952":2,"4953":1,"4954":1,"4955":5,"4956":3,"4957":3,"4958":7,"4959":1,"4960":5,"4961":4,"4962":3,"4963":2,"4964":3,"4965":4,"4966":4,"4967":4,"4968":3,"4969":1,"4970":4,"4971":5,"4972":3,"4973":3,"4974":4,"4975":4,"4976":5,"4977":5,"4978":2,"4979":4,"4980":4,"4981":4,"4982":7,"4983":5,"4984":4,"4985":4,"4986":7,"4987":4,"4988":4,"4989":3,"4990":3,"4991":4,"4992":5,"4993":5,"4994":4,"4995":4,"4996":4,"4997":2,"4998":3,"4999":3,"5000":2,"5001":3,"5002":5,"5003":2,"5004":4,"5005":7,"5006":4,"5007":1,"5008":7,"5009":3,"5010":3,"5011":4,"5012":3,"5013":3,"5014":4,"5015":5,"5016":3,"5017":2,"5018":7,"5019":4,"5020":4,"5021":1,"5022":5,"5023":3,"5024":9,"5025":3,"5026":7,"5027":5,"5028":4,"5029":4,"5030":5,"5031":8,"5032":6,"5033":8,"5034":3,"5035":2,"5036":2,"5037":5,"5038":4,"5039":5,"5040":1,"5041":3,"5042":4,"5043":3,"5044":3,"5045":2,"5046":2,"5047":3,"5048":1,"5049":4,"5050":3,"5051":4,"5052":5,"5053":1,"5054":4,"5055":3,"5056":6,"5057":2,"5058":5,"5059":5,"5060":3,"5061":3,"5062":1,"5063":3,"5064":6,"5065":3,"5066":5,"5067":9,"5068":5,"5069":3,"5070":4,"5071":3,"5072":1,"5073":5,"5074":3,"5075":9,"5076":6,"5077":2,"5078":3,"5079":5,"5080":4,"5081":2,"5082":5,"5083":3,"5084":4,"5085":3,"5086":6,"5087":3,"5088":2,"5089":6,"5090":2,"5091":4,"5092":2,"5093":5,"5094":4,"5095":5,"5096":5,"5097":3,"5098":4,"5099":5,"5100":3,"5101":3,"5102":5,"5103":4,"5104":4,"5105":3,"5106":5,"5107":6,"5108":1,"5109":3,"5110":4,"5111":4,"5112":8,"5113":3,"5114":3,"5115":4,"5116":4,"5117":4,"5118":7,"5119":4,"5120":7,"5121":4,"5122":2,"5123":3,"5124":7,"5125":4,"5126":8,"5127":4,"5128":6,"5129":6,"5130":4,"5131":5,"5132":4,"5133":2,"5134":3,"5135":4,"5136":6,"5137":4,"5138":1,"5139":4,"5140":3,"5141":4,"5142":2,"5143":9,"5144":3,"5145":4,"5146":4,"5147":7,"5148":4,"5149":3,"5150":3,"5151":4,"5152":4,"5153":4,"5154":4,"5155":3,"5156":4,"5157":3,"5158":5,"5159":5,"5160":3,"5161":9,"5162":2,"5163":8,"5164":2,"5165":3,"5166":6,"5167":5,"5168":3,"5169":1,"5170":1,"5171":5,"5172":3,"5173":7,"5174":4,"5175":4,"5176":4,"5177":7,"5178":4,"5179":3,"5180":3,"5181":4,"5182":2,"5183":5,"5184":5,"5185":4,"5186":2,"5187":4,"5188":8,"5189":4,"5190":3,"5191":3,"5192":2,"5193":5,"5194":4,"5195":4,"5196":3,"5197":3,"5198":3,"5199":4,"5200":3,"5201":4,"5202":8,"5203":6,"5204":4,"5205":3,"5206":3,"5207":3,"5208":3,"5209":7,"5210":1,"5211":4,"5212":3,"5213":5,"5214":7,"5215":4,"5216":3,"5217":2,"5218":8,"5219":5,"5220":5,"5221":4,"5222":4,"5223":4,"5224":4,"5225":1,"5226":7,"5227":3,"5228":5,"5229":2,"5230":2,"5231":5,"5232":3,"5233":5,"5234":8,"5235":4,"5236":4,"5237":3,"5238":4,"5239":4,"5240":5,"5241":5,"5242":2,"5243":5,"5244":5,"5245":4,"5246":4,"5247":9,"5248":2,"5249":4,"5250":7,"5251":2,"5252":3,"5253":3,"5254":3,"5255":2,"5256":3,"5257":3,"5258":4,"5259":3,"5260":8,"5261":5,"5262":8,"5263":5,"5264":6,"5265":6,"5266":3,"5267":5,"5268":5,"5269":3,"5270":4,"5271":4,"5272":2,"5273":2,"5274":3,"5275":4,"5276":3,"5277":5,"5278":3,"5279":3,"5280":8,"5281":3,"5282":3,"5283":6,"5284":6,"5285":3,"5286":4,"5287":2,"5288":5,"5289":3,"5290":3,"5291":3,"5292":5,"5293":3,"5294":3,"5295":1,"5296":7,"5297":2,"5298":1,"5299":1,"5300":8,"5301":4,"5302":4,"5303":2,"5304":5,"5305":3,"5306":2,"5307":4,"5308":2,"5309":2,"5310":4,"5311":5,"5312":4,"5313":4,"5314":3,"5315":4,"5316":1,"5317":4,"5318":4,"5319":8,"5320":9,"5321":2,"5322":6,"5323":7,"5324":4,"5325":1,"5326":5,"5327":3,"5328":4,"5329":4,"5330":6,"5331":3,"5332":1,"5333":4,"5334":3,"5335":3,"5336":6,"5337":4,"5338":5,"5339":4,"5340":4,"5341":3,"5342":3,"5343":3,"5344":4,"5345":3,"5346":3,"5347":3,"5348":4,"5349":5,"5350":3,"5351":8,"5352":4,"5353":4,"5354":4,"5355":4,"5356":1,"5357":2,"5358":6,"5359":5,"5360":4,"5361":4,"5362":5,"5363":2,"5364":4,"5365":4,"5366":3,"5367":4,"5368":4,"5369":3,"5370":9,"5371":4,"5372":6,"5373":8,"5374":3,"5375":5,"5376":5,"5377":5,"5378":4,"5379":4,"5380":4,"5381":6,"5382":3,"5383":3,"5384":6,"5385":4,"5386":6,"5387":2,"5388":9,"5389":3,"5390":4,"5391":3,"5392":3,"5393":3,"5394":3,"5395":2,"5396":3,"5397":2,"5398":2,"5399":6,"5400":2,"5401":8,"5402":2,"5403":2,"5404":3,"5405":4,"5406":5,"5407":7,"5408":8,"5409":7,"5410":3,"5411":3,"5412":4,"5413":5,"5414":2,"5415":4,"5416":1,"5417":2,"5418":4,"5419":4,"5420":4,"5421":5,"5422":8,"5423":3,"5424":4,"5425":5,"5426":1,"5427":5,"5428":3,"5429":9,"5430":4,"5431":3,"5432":3,"5433":2,"5434":3,"5435":5,"5436":5,"5437":3,"5438":4,"5439":4,"5440":3,"5441":3,"5442":6,"5443":7,"5444":4,"5445":2,"5446":3,"5447":3,"5448":9,"5449":4,"5450":3,"5451":3,"5452":3,"5453":9,"5454":6,"5455":5,"5456":3,"5457":3,"5458":4,"5459":5,"5460":3,"5461":1,"5462":3,"5463":3,"5464":7,"5465":5,"5466":4,"5467":4,"5468":3,"5469":4,"5470":6,"5471":3,"5472":7,"5473":3,"5474":5,"5475":5,"5476":4,"5477":4,"5478":4,"5479":1,"5480":4,"5481":3,"5482":3,"5483":4,"5484":3,"5485":1,"5486":2,"5487":3,"5488":3,"5489":6,"5490":3,"5491":2,"5492":5,"5493":5,"5494":3,"5495":4,"5496":4,"5497":4,"5498":2,"5499":4,"5500":5,"5501":3,"5502":3,"5503":4,"5504":4,"5505":4,"5506":4,"5507":5,"5508":6,"5509":4,"5510":9,"5511":4,"5512":4,"5513":6,"5514":4,"5515":2,"5516":3,"5517":5,"5518":5,"5519":8,"5520":5,"5521":3,"5522":4,"5523":4,"5524":1,"5525":4,"5526":4,"5527":8,"5528":3,"5529":2,"5530":5,"5531":5,"5532":4,"5533":3,"5534":1,"5535":9,"5536":3,"5537":6,"5538":1,"5539":5,"5540":1,"5541":2,"5542":3,"5543":5,"5544":4,"5545":2,"5546":1,"5547":4,"5548":2,"5549":3,"5550":6,"5551":2,"5552":5,"5553":4,"5554":4,"5555":5,"5556":5,"5557":4,"5558":3,"5559":4,"5560":1,"5561":4,"5562":4,"5563":3,"5564":6,"5565":5,"5566":5,"5567":4,"5568":5,"5569":4,"5570":2,"5571":4,"5572":1,"5573":3,"5574":3,"5575":3,"5576":7,"5577":4,"5578":3,"5579":3,"5580":7,"5581":8,"5582":1,"5583":6,"5584":3,"5585":4,"5586":4,"5587":5,"5588":3,"5589":4,"5590":3,"5591":6,"5592":7,"5593":2,"5594":2,"5595":4,"5596":2,"5597":6,"5598":5,"5599":8,"5600":7,"5601":5,"5602":4,"5603":3,"5604":4,"5605":4,"5606":3,"5607":5,"5608":5,"5609":4,"5610":4,"5611":4,"5612":6,"5613":4,"5614":2,"5615":5,"5616":5,"5617":2,"5618":5,"5619":5,"5620":3,"5621":4,"5622":3,"5623":3,"5624":4,"5625":4,"5626":1,"5627":3,"5628":4,"5629":2,"5630":4,"5631":3,"5632":3,"5633":4,"5634":4,"5635":4,"5636":2,"5637":4,"5638":5,"5639":3,"5640":4,"5641":3,"5642":3,"5643":4,"5644":2,"5645":7,"5646":5,"5647":5,"5648":1,"5649":6,"5650":5,"5651":4,"5652":4,"5653":5,"5654":3,"5655":3,"5656":3,"5657":3,"5658":4,"5659":2,"5660":1,"5661":5,"5662":3,"5663":4,"5664":7,"5665":4,"5666":4,"5667":7,"5668":7,"5669":1,"5670":4,"5671":5,"5672":4,"5673":8,"5674":3,"5675":4,"5676":3,"5677":4,"5678":3,"5679":4,"5680":4,"5681":9,"5682":4,"5683":7,"5684":3,"5685":6,"5686":3,"5687":7,"5688":7,"5689":4,"5690":5,"5691":7,"5692":4,"5693":4,"5694":3,"5695":3,"5696":4,"5697":4,"5698":4,"5699":4,"5700":4,"5701":5,"5702":2,"5703":4,"5704":4,"5705":4,"5706":3,"5707":3,"5708":4,"5709":3,"5710":4,"5711":6,"5712":3,"5713":5,"5714":7,"5715":4,"5716":3,"5717":4,"5718":5,"5719":4,"5720":3,"5721":3,"5722":5,"5723":4,"5724":4,"5725":7,"5726":4,"5727":1,"5728":3,"5729":5,"5730":4,"5731":4,"5732":3,"5733":4,"5734":3,"5735":9,"5736":3,"5737":5,"5738":5,"5739":3,"5740":1,"5741":4,"5742":3,"5743":7,"5744":5,"5745":3,"5746":1,"5747":2,"5748":4,"5749":4,"5750":5,"5751":6,"5752":7,"5753":5,"5754":3,"5755":3,"5756":8,"5757":4,"5758":4,"5759":3,"5760":4,"5761":2,"5762":2,"5763":2,"5764":4,"5765":2,"5766":2,"5767":3,"5768":2,"5769":3,"5770":4,"5771":5,"5772":2,"5773":4,"5774":5,"5775":4,"5776":3,"5777":4,"5778":2,"5779":4,"5780":4,"5781":3,"5782":5,"5783":2,"5784":2,"5785":3,"5786":4,"5787":3,"5788":3,"5789":4,"5790":3,"5791":4,"5792":4,"5793":3,"5794":4,"5795":9,"5796":5,"5797":5,"5798":7,"5799":4,"5800":4,"5801":3,"5802":7,"5803":4,"5804":1,"5805":9,"5806":5,"5807":2,"5808":5,"5809":5,"5810":7,"5811":3,"5812":7,"5813":4,"5814":7,"5815":2,"5816":3,"5817":2,"5818":4,"5819":4,"5820":5,"5821":2,"5822":4,"5823":4,"5824":3,"5825":2,"5826":4,"5827":3,"5828":3,"5829":4,"5830":8,"5831":4,"5832":5,"5833":4,"5834":4,"5835":6,"5836":3,"5837":4,"5838":3,"5839":3,"5840":5,"5841":3,"5842":4,"5843":4,"5844":1,"5845":5,"5846":4,"5847":2,"5848":5,"5849":1,"5850":1,"5851":4,"5852":6,"5853":3,"5854":7,"5855":5,"5856":4,"5857":3,"5858":4,"5859":5,"5860":7,"5861":4,"5862":4,"5863":3,"5864":5,"5865":3,"5866":4,"5867":3,"5868":5,"5869":5,"5870":6,"5871":6,"5872":7,"5873":7,"5874":5,"5875":4,"5876":2,"5877":4,"5878":3,"5879":2,"5880":2,"5881":8,"5882":3,"5883":2,"5884":3,"5885":1,"5886":3,"5887":1,"5888":3,"5889":6,"5890":4,"5891":7,"5892":7,"5893":5,"5894":4,"5895":4,"5896":4,"5897":3,"5898":2,"5899":7,"5900":2,"5901":4,"5902":4,"5903":2,"5904":6,"5905":3,"5906":3,"5907":3,"5908":4,"5909":5,"5910":5,"5911":4,"5912":3,"5913":4,"5914":5,"5915":1,"5916":4,"5917":2,"5918":4,"5919":1,"5920":3,"5921":7,"5922":1,"5923":3,"5924":9,"5925":4,"5926":4,"5927":5,"5928":5,"5929":2,"5930":1,"5931":3,"5932":5,"5933":3,"5934":2,"5935":2,"5936":4,"5937":4,"5938":2,"5939":4,"5940":4,"5941":1,"5942":3,"5943":3,"5944":5,"5945":4,"5946":5,"5947":4,"5948":4,"5949":4,"5950":3,"5951":9,"5952":3,"5953":3,"5954":2,"5955":3,"5956":5,"5957":4,"5958":3,"5959":2,"5960":5,"5961":3,"5962":4,"5963":4,"5964":7,"5965":7,"5966":2,"5967":1,"5968":3,"5969":4,"5970":5,"5971":5,"5972":9,"5973":5,"5974":6,"5975":4,"5976":2,"5977":5,"5978":4,"5979":4,"5980":3,"5981":4,"5982":4,"5983":3,"5984":4,"5985":5,"5986":3,"5987":3,"5988":3,"5989":3,"5990":3,"5991":9,"5992":3,"5993":7,"5994":4,"5995":5,"5996":3,"5997":4,"5998":5,"5999":5,"6000":1,"6001":4,"6002":2,"6003":3,"6004":4,"6005":2,"6006":4,"6007":4,"6008":2,"6009":5,"6010":4,"6011":3,"6012":5,"6013":3,"6014":4,"6015":9,"6016":3,"6017":7,"6018":5,"6019":4,"6020":4,"6021":2,"6022":4,"6023":4,"6024":1,"6025":1,"6026":4,"6027":7,"6028":7,"6029":1,"6030":3,"6031":3,"6032":4,"6033":5,"6034":5,"6035":8,"6036":3,"6037":1,"6038":3,"6039":4,"6040":5,"6041":5,"6042":3,"6043":2,"6044":4,"6045":3,"6046":5,"6047":3,"6048":3,"6049":1,"6050":4,"6051":4,"6052":3,"6053":4,"6054":4,"6055":7,"6056":3,"6057":6,"6058":3,"6059":3,"6060":1,"6061":3,"6062":5,"6063":7,"6064":4,"6065":2,"6066":1,"6067":3,"6068":4,"6069":6,"6070":4,"6071":2,"6072":7,"6073":5,"6074":4,"6075":4,"6076":1,"6077":4,"6078":4,"6079":2,"6080":5,"6081":6,"6082":1,"6083":4,"6084":4,"6085":2,"6086":5,"6087":3,"6088":1,"6089":4,"6090":5,"6091":5,"6092":5,"6093":3,"6094":5,"6095":4,"6096":3,"6097":5,"6098":3,"6099":3,"6100":5,"6101":3,"6102":4,"6103":5,"6104":4,"6105":4,"6106":5,"6107":4,"6108":4,"6109":4,"6110":3,"6111":6,"6112":7,"6113":4,"6114":7,"6115":2,"6116":6,"6117":3,"6118":3,"6119":3,"6120":3,"6121":4,"6122":5,"6123":3,"6124":2,"6125":2,"6126":4,"6127":3,"6128":4,"6129":2,"6130":4,"6131":1,"6132":5,"6133":5,"6134":4,"6135":6,"6136":3,"6137":3,"6138":7,"6139":2,"6140":5,"6141":4,"6142":8,"6143":7,"6144":4,"6145":2,"6146":4,"6147":5,"6148":2,"6149":4,"6150":4,"6151":8,"6152":5,"6153":3,"6154":5,"6155":5,"6156":5,"6157":3,"6158":6,"6159":3,"6160":5,"6161":4,"6162":4,"6163":4,"6164":2,"6165":3,"6166":2,"6167":3,"6168":2,"6169":3,"6170":6,"6171":3,"6172":4,"6173":3,"6174":2,"6175":7,"6176":5,"6177":4,"6178":3,"6179":6,"6180":3,"6181":4,"6182":4,"6183":6,"6184":1,"6185":4,"6186":5,"6187":6,"6188":1,"6189":3,"6190":5,"6191":3,"6192":6,"6193":1,"6194":5,"6195":1,"6196":5,"6197":7,"6198":2,"6199":3,"6200":2,"6201":3,"6202":8,"6203":4,"6204":4,"6205":1,"6206":4,"6207":2,"6208":1,"6209":3,"6210":5,"6211":4,"6212":1,"6213":9,"6214":3,"6215":5,"6216":4,"6217":5,"6218":2,"6219":5,"6220":1,"6221":5,"6222":3,"6223":8,"6224":6,"6225":2,"6226":7,"6227":7,"6228":7,"6229":3,"6230":4,"6231":5,"6232":4,"6233":4,"6234":8,"6235":1,"6236":6,"6237":4,"6238":2,"6239":3,"6240":3,"6241":4,"6242":8,"6243":4,"6244":4,"6245":4,"6246":4,"6247":3,"6248":8,"6249":4,"6250":3,"6251":4,"6252":4,"6253":4,"6254":2,"6255":3,"6256":4,"6257":4,"6258":4,"6259":4,"6260":4,"6261":1,"6262":3,"6263":4,"6264":2,"6265":3,"6266":4,"6267":3,"6268":2,"6269":3,"6270":6,"6271":3,"6272":4,"6273":3,"6274":5,"6275":4,"6276":7,"6277":4,"6278":4,"6279":4,"6280":3,"6281":4,"6282":4,"6283":1,"6284":3,"6285":6,"6286":7,"6287":2,"6288":9,"6289":4,"6290":8,"6291":3,"6292":2,"6293":4,"6294":3,"6295":4,"6296":6,"6297":2,"6298":4,"6299":7,"6300":4,"6301":1,"6302":3,"6303":3,"6304":6,"6305":3,"6306":3,"6307":3,"6308":4,"6309":7,"6310":3,"6311":1,"6312":5,"6313":3,"6314":3,"6315":1,"6316":4,"6317":5,"6318":6,"6319":4,"6320":1,"6321":3,"6322":3,"6323":3,"6324":3,"6325":5,"6326":5,"6327":3,"6328":4,"6329":7,"6330":4,"6331":2,"6332":7,"6333":4,"6334":4,"6335":5,"6336":4,"6337":4,"6338":2,"6339":3,"6340":3,"6341":5,"6342":3,"6343":4,"6344":3,"6345":3,"6346":2,"6347":5,"6348":2,"6349":4,"6350":4,"6351":2,"6352":3,"6353":1,"6354":5,"6355":5,"6356":5,"6357":3,"6358":2,"6359":5,"6360":4,"6361":3,"6362":3,"6363":2,"6364":2,"6365":2,"6366":4,"6367":3,"6368":4,"6369":8,"6370":3,"6371":4,"6372":4,"6373":4,"6374":5,"6375":3,"6376":4,"6377":8,"6378":5,"6379":4,"6380":5,"6381":2,"6382":5,"6383":3,"6384":5,"6385":3,"6386":5,"6387":5,"6388":3,"6389":6,"6390":3,"6391":5,"6392":4,"6393":6,"6394":4,"6395":2,"6396":5,"6397":2,"6398":5,"6399":5,"6400":8,"6401":6,"6402":1,"6403":4,"6404":6,"6405":3,"6406":7,"6407":3,"6408":3,"6409":5,"6410":3,"6411":4,"6412":2,"6413":4,"6414":3,"6415":4,"6416":4,"6417":5,"6418":9,"6419":8,"6420":5,"6421":3,"6422":2,"6423":5,"6424":4,"6425":9,"6426":3,"6427":4,"6428":3,"6429":7,"6430":7,"6431":5,"6432":4,"6433":9,"6434":5,"6435":2,"6436":4,"6437":8,"6438":2,"6439":3,"6440":3,"6441":1,"6442":8,"6443":4,"6444":4,"6445":3,"6446":4,"6447":8,"6448":4,"6449":4,"6450":5,"6451":5,"6452":5,"6453":4,"6454":5,"6455":6,"6456":4,"6457":7,"6458":5,"6459":4,"6460":7,"6461":1,"6462":3,"6463":3,"6464":4,"6465":4,"6466":1,"6467":4,"6468":2,"6469":5,"6470":6,"6471":2,"6472":3,"6473":3,"6474":4,"6475":4,"6476":4,"6477":8,"6478":3,"6479":5,"6480":8,"6481":4,"6482":5,"6483":4,"6484":3,"6485":4,"6486":5,"6487":3,"6488":4,"6489":4,"6490":4,"6491":3,"6492":7,"6493":4,"6494":4,"6495":5,"6496":3,"6497":4,"6498":3,"6499":6,"6500":5,"6501":3,"6502":2,"6503":4,"6504":1,"6505":6,"6506":5,"6507":5,"6508":4,"6509":4,"6510":5,"6511":3,"6512":1,"6513":3,"6514":4,"6515":8,"6516":3,"6517":4,"6518":5,"6519":3,"6520":5,"6521":4,"6522":3,"6523":4,"6524":4,"6525":3,"6526":3,"6527":4,"6528":3,"6529":2,"6530":3,"6531":6,"6532":3,"6533":4,"6534":6,"6535":4,"6536":3,"6537":3,"6538":3,"6539":3,"6540":4,"6541":3,"6542":5,"6543":3,"6544":4,"6545":3,"6546":4,"6547":3,"6548":4,"6549":6,"6550":8,"6551":3,"6552":4,"6553":7,"6554":7,"6555":9,"6556":3,"6557":3,"6558":6,"6559":4,"6560":3,"6561":5,"6562":2,"6563":3,"6564":4,"6565":5,"6566":3,"6567":3,"6568":5,"6569":3,"6570":4,"6571":8,"6572":2,"6573":4,"6574":4,"6575":4,"6576":4,"6577":8,"6578":7,"6579":3,"6580":3,"6581":3,"6582":3,"6583":4,"6584":3,"6585":6,"6586":4,"6587":3,"6588":5,"6589":4,"6590":4,"6591":3,"6592":5,"6593":4,"6594":2,"6595":5,"6596":4,"6597":2,"6598":3,"6599":3,"6600":5,"6601":4,"6602":3,"6603":3,"6604":4,"6605":2,"6606":4,"6607":6,"6608":3,"6609":2,"6610":3,"6611":5,"6612":3,"6613":3,"6614":3,"6615":1,"6616":5,"6617":7,"6618":4,"6619":4,"6620":2,"6621":1,"6622":2,"6623":3,"6624":5,"6625":3,"6626":4,"6627":3,"6628":2,"6629":5,"6630":4,"6631":3,"6632":3,"6633":4,"6634":4,"6635":3,"6636":4,"6637":4,"6638":4,"6639":4,"6640":4,"6641":4,"6642":3,"6643":3,"6644":4,"6645":4,"6646":4,"6647":3,"6648":4,"6649":4,"6650":4,"6651":4,"6652":4,"6653":4,"6654":5,"6655":2,"6656":3,"6657":3,"6658":5,"6659":2,"6660":2,"6661":5,"6662":5,"6663":3,"6664":3,"6665":6,"6666":3,"6667":3,"6668":3,"6669":4,"6670":3,"6671":4,"6672":2,"6673":3,"6674":4,"6675":5,"6676":5,"6677":6,"6678":2,"6679":8,"6680":6,"6681":4,"6682":2,"6683":3,"6684":1,"6685":3,"6686":4,"6687":3,"6688":3,"6689":4,"6690":5,"6691":2,"6692":5,"6693":2,"6694":3,"6695":9,"6696":5,"6697":8,"6698":3,"6699":2,"6700":4,"6701":3,"6702":4,"6703":4,"6704":4,"6705":4,"6706":4,"6707":7,"6708":2,"6709":6,"6710":3,"6711":3,"6712":5,"6713":4,"6714":6,"6715":4,"6716":5,"6717":6,"6718":7,"6719":4,"6720":5,"6721":4,"6722":5,"6723":3,"6724":4,"6725":8,"6726":4,"6727":2,"6728":4,"6729":6,"6730":3,"6731":3,"6732":4,"6733":6,"6734":1,"6735":5,"6736":4,"6737":4,"6738":4,"6739":5,"6740":4,"6741":7,"6742":4,"6743":1,"6744":3,"6745":8,"6746":4,"6747":4,"6748":4,"6749":3,"6750":3,"6751":2,"6752":2,"6753":9,"6754":4,"6755":4,"6756":3,"6757":4,"6758":3,"6759":4,"6760":2,"6761":6,"6762":4,"6763":2,"6764":5,"6765":9,"6766":5,"6767":4,"6768":3,"6769":4,"6770":2,"6771":2,"6772":3,"6773":4,"6774":4,"6775":6,"6776":3,"6777":7,"6778":8,"6779":3,"6780":4,"6781":3,"6782":5,"6783":4,"6784":4,"6785":3,"6786":3,"6787":4,"6788":4,"6789":5,"6790":4,"6791":4,"6792":4,"6793":4,"6794":4,"6795":4,"6796":2,"6797":3,"6798":3,"6799":2,"6800":2,"6801":1,"6802":3,"6803":6,"6804":3,"6805":1,"6806":5,"6807":8,"6808":3,"6809":3,"6810":2,"6811":9,"6812":7,"6813":5,"6814":3,"6815":5,"6816":5,"6817":3,"6818":3,"6819":5,"6820":4,"6821":4,"6822":3,"6823":6,"6824":4,"6825":4,"6826":8,"6827":5,"6828":4,"6829":5,"6830":3,"6831":2,"6832":3,"6833":6,"6834":4,"6835":3,"6836":5,"6837":3,"6838":2,"6839":3,"6840":5,"6841":5,"6842":1,"6843":4,"6844":7,"6845":9,"6846":5,"6847":4,"6848":4,"6849":5,"6850":4,"6851":3,"6852":4,"6853":4,"6854":6,"6855":2,"6856":2,"6857":4,"6858":2,"6859":5,"6860":4,"6861":3,"6862":1,"6863":4,"6864":7,"6865":9,"6866":5,"6867":7,"6868":4,"6869":2,"6870":9,"6871":4,"6872":5,"6873":4,"6874":2,"6875":3,"6876":4,"6877":5,"6878":3,"6879":5,"6880":3,"6881":3,"6882":1,"6883":4,"6884":5,"6885":4,"6886":7,"6887":3,"6888":3,"6889":9,"6890":2,"6891":3,"6892":5,"6893":7,"6894":4,"6895":3,"6896":7,"6897":2,"6898":1,"6899":4,"6900":9,"6901":7,"6902":5,"6903":3,"6904":9,"6905":4,"6906":4,"6907":4,"6908":4,"6909":4,"6910":4,"6911":3,"6912":4,"6913":4,"6914":6,"6915":4,"6916":7,"6917":2,"6918":3,"6919":7,"6920":4,"6921":5,"6922":5,"6923":3,"6924":5,"6925":4,"6926":3,"6927":4,"6928":4,"6929":4,"6930":6,"6931":4,"6932":5,"6933":5,"6934":3,"6935":3,"6936":4,"6937":7,"6938":4,"6939":2,"6940":2,"6941":4,"6942":3,"6943":6,"6944":1,"6945":8,"6946":3,"6947":4,"6948":3,"6949":3,"6950":5,"6951":4,"6952":2,"6953":6,"6954":4,"6955":4,"6956":5,"6957":3,"6958":4,"6959":3,"6960":3,"6961":4,"6962":3,"6963":3,"6964":3,"6965":4,"6966":2,"6967":3,"6968":4,"6969":4,"6970":3,"6971":8,"6972":9,"6973":8,"6974":3,"6975":1,"6976":4,"6977":9,"6978":5,"6979":7,"6980":4,"6981":1,"6982":2,"6983":5,"6984":4,"6985":4,"6986":6,"6987":5,"6988":2,"6989":1,"6990":2,"6991":3,"6992":3,"6993":4,"6994":1,"6995":4,"6996":6,"6997":7,"6998":3,"6999":4,"7000":3,"7001":4,"7002":5,"7003":4,"7004":5,"7005":7,"7006":2,"7007":3,"7008":5,"7009":2,"7010":4,"7011":4,"7012":2,"7013":4,"7014":4,"7015":3,"7016":4,"7017":1,"7018":4,"7019":6,"7020":4,"7021":1,"7022":7,"7023":3,"7024":4,"7025":3,"7026":3,"7027":4,"7028":4,"7029":5,"7030":4,"7031":2,"7032":4,"7033":4,"7034":3,"7035":5,"7036":7,"7037":3,"7038":3,"7039":1,"7040":3,"7041":3,"7042":3,"7043":4,"7044":8,"7045":3,"7046":3,"7047":6,"7048":4,"7049":2,"7050":6,"7051":4,"7052":5,"7053":7,"7054":3,"7055":4,"7056":5,"7057":4,"7058":5,"7059":6,"7060":6,"7061":4,"7062":8,"7063":4,"7064":3,"7065":4,"7066":4,"7067":4,"7068":1,"7069":7,"7070":4,"7071":8,"7072":6,"7073":3,"7074":7,"7075":3,"7076":3,"7077":8,"7078":4,"7079":4,"7080":3,"7081":3,"7082":4,"7083":7,"7084":3,"7085":2,"7086":3,"7087":3,"7088":2,"7089":4,"7090":3,"7091":7,"7092":3,"7093":8,"7094":1,"7095":5,"7096":4,"7097":2,"7098":4,"7099":3,"7100":5,"7101":4,"7102":4,"7103":4,"7104":2,"7105":3,"7106":4,"7107":4,"7108":4,"7109":3,"7110":2,"7111":9,"7112":2,"7113":4,"7114":4,"7115":3,"7116":2,"7117":8,"7118":4,"7119":4,"7120":7,"7121":2,"7122":3,"7123":2,"7124":3,"7125":5,"7126":3,"7127":4,"7128":4,"7129":5,"7130":5,"7131":4,"7132":3,"7133":4,"7134":9,"7135":2,"7136":3,"7137":1,"7138":8,"7139":6,"7140":2,"7141":3,"7142":3,"7143":5,"7144":6,"7145":6,"7146":4,"7147":4,"7148":5,"7149":3,"7150":4,"7151":7,"7152":3,"7153":3,"7154":3,"7155":2,"7156":1,"7157":5,"7158":5,"7159":4,"7160":3,"7161":4,"7162":4,"7163":4,"7164":5,"7165":3,"7166":4,"7167":2,"7168":1,"7169":5,"7170":3,"7171":3,"7172":3,"7173":3,"7174":5,"7175":4,"7176":9,"7177":4,"7178":2,"7179":2,"7180":2,"7181":5,"7182":9,"7183":3,"7184":7,"7185":5,"7186":3,"7187":5,"7188":3,"7189":4,"7190":5,"7191":5,"7192":7,"7193":1,"7194":3,"7195":2,"7196":5,"7197":2,"7198":5,"7199":1,"7200":3,"7201":3,"7202":5,"7203":4,"7204":3,"7205":4,"7206":4,"7207":5,"7208":4,"7209":5,"7210":5,"7211":4,"7212":4,"7213":5,"7214":4,"7215":5,"7216":4,"7217":5,"7218":4,"7219":5,"7220":9,"7221":4,"7222":4,"7223":4,"7224":3,"7225":3,"7226":3,"7227":5,"7228":3,"7229":5,"7230":4,"7231":3,"7232":6,"7233":3,"7234":4,"7235":5,"7236":4,"7237":4,"7238":4,"7239":3,"7240":4,"7241":3,"7242":7,"7243":4,"7244":3,"7245":3,"7246":1,"7247":3,"7248":4,"7249":4,"7250":4,"7251":3,"7252":9,"7253":3,"7254":3,"7255":6,"7256":4,"7257":3,"7258":3,"7259":4,"7260":8,"7261":4,"7262":4,"7263":5,"7264":5,"7265":3,"7266":6,"7267":4,"7268":2,"7269":5,"7270":5,"7271":3,"7272":5,"7273":4,"7274":3,"7275":6,"7276":3,"7277":3,"7278":5,"7279":2,"7280":5,"7281":4,"7282":5,"7283":1,"7284":4,"7285":2,"7286":3,"7287":9,"7288":4,"7289":4,"7290":4,"7291":1,"7292":3,"7293":3,"7294":4,"7295":3,"7296":2,"7297":4,"7298":4,"7299":4,"7300":4,"7301":3,"7302":4,"7303":4,"7304":2,"7305":2,"7306":2,"7307":3,"7308":3,"7309":7,"7310":3,"7311":2,"7312":4,"7313":3,"7314":5,"7315":3,"7316":4,"7317":3,"7318":1,"7319":5,"7320":4,"7321":5,"7322":4,"7323":2,"7324":4,"7325":5,"7326":4,"7327":2,"7328":3,"7329":4,"7330":4,"7331":4,"7332":1,"7333":4,"7334":3,"7335":4,"7336":2,"7337":6,"7338":4,"7339":3,"7340":2,"7341":4,"7342":3,"7343":3,"7344":3,"7345":3,"7346":4,"7347":9,"7348":4,"7349":4,"7350":3,"7351":4,"7352":2,"7353":3,"7354":3,"7355":4,"7356":1,"7357":1,"7358":3,"7359":5,"7360":3,"7361":3,"7362":5,"7363":5,"7364":4,"7365":4,"7366":4,"7367":4,"7368":1,"7369":3,"7370":1,"7371":3,"7372":4,"7373":3,"7374":4,"7375":1,"7376":4,"7377":8,"7378":4,"7379":3,"7380":5,"7381":5,"7382":3,"7383":8,"7384":5,"7385":3,"7386":3,"7387":5,"7388":2,"7389":4,"7390":9,"7391":3,"7392":9,"7393":1,"7394":4,"7395":7,"7396":5,"7397":3,"7398":4,"7399":5,"7400":2,"7401":9,"7402":3,"7403":7,"7404":4,"7405":4,"7406":4,"7407":5,"7408":5,"7409":5,"7410":5,"7411":4,"7412":1,"7413":4,"7414":9,"7415":4,"7416":2,"7417":7,"7418":3,"7419":8,"7420":5,"7421":2,"7422":4,"7423":2,"7424":8,"7425":4,"7426":3,"7427":3,"7428":2,"7429":5,"7430":4,"7431":5,"7432":3,"7433":3,"7434":4,"7435":5,"7436":4,"7437":3,"7438":5,"7439":4,"7440":2,"7441":3,"7442":4,"7443":5,"7444":5,"7445":3,"7446":6,"7447":2,"7448":6,"7449":9,"7450":3,"7451":5,"7452":3,"7453":2,"7454":5,"7455":5,"7456":5,"7457":4,"7458":1,"7459":2,"7460":4,"7461":7,"7462":3,"7463":5,"7464":3,"7465":4,"7466":5,"7467":8,"7468":5,"7469":3,"7470":2,"7471":4,"7472":3,"7473":2,"7474":1,"7475":2,"7476":5,"7477":4,"7478":5,"7479":3,"7480":4,"7481":4,"7482":2,"7483":4,"7484":4,"7485":4,"7486":9,"7487":3,"7488":4,"7489":4,"7490":6,"7491":4,"7492":4,"7493":4,"7494":5,"7495":4,"7496":4,"7497":4,"7498":3,"7499":4,"7500":7,"7501":4,"7502":3,"7503":4,"7504":5,"7505":1,"7506":3,"7507":1,"7508":6,"7509":3,"7510":6,"7511":4,"7512":5,"7513":3,"7514":3,"7515":3,"7516":1,"7517":5,"7518":4,"7519":5,"7520":4,"7521":9,"7522":3,"7523":9,"7524":4,"7525":2,"7526":4,"7527":1,"7528":5,"7529":4,"7530":4,"7531":3,"7532":4,"7533":4,"7534":4,"7535":4,"7536":5,"7537":5,"7538":4,"7539":5,"7540":5,"7541":5,"7542":2,"7543":8,"7544":3,"7545":3,"7546":4,"7547":4,"7548":4,"7549":5,"7550":3,"7551":4,"7552":4,"7553":3,"7554":4,"7555":3,"7556":5,"7557":2,"7558":3,"7559":6,"7560":4,"7561":4,"7562":7,"7563":4,"7564":6,"7565":4,"7566":4,"7567":6,"7568":7,"7569":5,"7570":4,"7571":2,"7572":3,"7573":3,"7574":4,"7575":4,"7576":6,"7577":1,"7578":2,"7579":4,"7580":3,"7581":3,"7582":4,"7583":7,"7584":3,"7585":4,"7586":3,"7587":2,"7588":1,"7589":6,"7590":3,"7591":4,"7592":7,"7593":3,"7594":6,"7595":4,"7596":3,"7597":3,"7598":7,"7599":2,"7600":4,"7601":4,"7602":7,"7603":6,"7604":3,"7605":4,"7606":4,"7607":4,"7608":3,"7609":4,"7610":3,"7611":3,"7612":3,"7613":4,"7614":5,"7615":8,"7616":3,"7617":3,"7618":1,"7619":3,"7620":5,"7621":6,"7622":5,"7623":9,"7624":4,"7625":3,"7626":4,"7627":4,"7628":5,"7629":5,"7630":6,"7631":3,"7632":4,"7633":4,"7634":4,"7635":4,"7636":8,"7637":1,"7638":4,"7639":2,"7640":7,"7641":4,"7642":3,"7643":6,"7644":3,"7645":3,"7646":4,"7647":4,"7648":3,"7649":6,"7650":4,"7651":3,"7652":4,"7653":5,"7654":8,"7655":2,"7656":2,"7657":3,"7658":4,"7659":3,"7660":6,"7661":7,"7662":3,"7663":4,"7664":5,"7665":4,"7666":6,"7667":4,"7668":4,"7669":7,"7670":3,"7671":3,"7672":3,"7673":4,"7674":3,"7675":1,"7676":3,"7677":6,"7678":4,"7679":7,"7680":3,"7681":4,"7682":4,"7683":4,"7684":8,"7685":3,"7686":4,"7687":5,"7688":4,"7689":3,"7690":3,"7691":4,"7692":2,"7693":3,"7694":2,"7695":5,"7696":4,"7697":2,"7698":3,"7699":9,"7700":3,"7701":4,"7702":5,"7703":4,"7704":1,"7705":5,"7706":5,"7707":5,"7708":4,"7709":4,"7710":4,"7711":2,"7712":2,"7713":3,"7714":3,"7715":4,"7716":1,"7717":4,"7718":5,"7719":7,"7720":7,"7721":5,"7722":3,"7723":1,"7724":4,"7725":5,"7726":7,"7727":4,"7728":4,"7729":2,"7730":2,"7731":7,"7732":3,"7733":4,"7734":4,"7735":2,"7736":3,"7737":3,"7738":3,"7739":3,"7740":3,"7741":5,"7742":3,"7743":3,"7744":8,"7745":3,"7746":5,"7747":1,"7748":4,"7749":3,"7750":4,"7751":1,"7752":9,"7753":2,"7754":3,"7755":2,"7756":4,"7757":2,"7758":1,"7759":7,"7760":7,"7761":3,"7762":8,"7763":1,"7764":1,"7765":6,"7766":5,"7767":4,"7768":4,"7769":2,"7770":7,"7771":8,"7772":5,"7773":4,"7774":1,"7775":2,"7776":1,"7777":3,"7778":7,"7779":1,"7780":5,"7781":5,"7782":4,"7783":4,"7784":1,"7785":3,"7786":4,"7787":4,"7788":5,"7789":4,"7790":7,"7791":4,"7792":3,"7793":9,"7794":6,"7795":4,"7796":4,"7797":4,"7798":4,"7799":3,"7800":4,"7801":6,"7802":7,"7803":5,"7804":4,"7805":7,"7806":5,"7807":4,"7808":1,"7809":3,"7810":2,"7811":4,"7812":3,"7813":3,"7814":4,"7815":2,"7816":3,"7817":8,"7818":4,"7819":5,"7820":4,"7821":3,"7822":2,"7823":2,"7824":7,"7825":3,"7826":2,"7827":4,"7828":4,"7829":9,"7830":1,"7831":3,"7832":4,"7833":2,"7834":4,"7835":2,"7836":2,"7837":3,"7838":8,"7839":3,"7840":3,"7841":8,"7842":6,"7843":5,"7844":2,"7845":4,"7846":3,"7847":3,"7848":4,"7849":3,"7850":3,"7851":2,"7852":1,"7853":5,"7854":4,"7855":5,"7856":6,"7857":4,"7858":4,"7859":4,"7860":2,"7861":3,"7862":3,"7863":5,"7864":5,"7865":5,"7866":4,"7867":7,"7868":3,"7869":8,"7870":4,"7871":7,"7872":3,"7873":3,"7874":3,"7875":8,"7876":3,"7877":4,"7878":3,"7879":2,"7880":3,"7881":7,"7882":8,"7883":8,"7884":7,"7885":4,"7886":3,"7887":2,"7888":3,"7889":4,"7890":5,"7891":7,"7892":6,"7893":3,"7894":3,"7895":5,"7896":3,"7897":4,"7898":7,"7899":6,"7900":3,"7901":4,"7902":3,"7903":2,"7904":5,"7905":5,"7906":4,"7907":3,"7908":3,"7909":3,"7910":5,"7911":3,"7912":4,"7913":3,"7914":4,"7915":2,"7916":5,"7917":1,"7918":4,"7919":3,"7920":3,"7921":3,"7922":3,"7923":5,"7924":5,"7925":5,"7926":4,"7927":3,"7928":5,"7929":7,"7930":3,"7931":2,"7932":1,"7933":4,"7934":3,"7935":4,"7936":2,"7937":8,"7938":4,"7939":7,"7940":2,"7941":1,"7942":4,"7943":9,"7944":7,"7945":5,"7946":5,"7947":3,"7948":3,"7949":4,"7950":3,"7951":4,"7952":5,"7953":4,"7954":6,"7955":4,"7956":3,"7957":5,"7958":2,"7959":4,"7960":4,"7961":4,"7962":9,"7963":3,"7964":5,"7965":2,"7966":4,"7967":4,"7968":5,"7969":3,"7970":3,"7971":2,"7972":3,"7973":7,"7974":4,"7975":4,"7976":3,"7977":3,"7978":4,"7979":5,"7980":4,"7981":2,"7982":6,"7983":4,"7984":6,"7985":7,"7986":4,"7987":3,"7988":5,"7989":9,"7990":2,"7991":4,"7992":5,"7993":4,"7994":3,"7995":3,"7996":3,"7997":2,"7998":2,"7999":3,"8000":4,"8001":3,"8002":5,"8003":6,"8004":9,"8005":4,"8006":4,"8007":8,"8008":2,"8009":7,"8010":4,"8011":2,"8012":9,"8013":1,"8014":4,"8015":5,"8016":4,"8017":4,"8018":4,"8019":2,"8020":3,"8021":3,"8022":5,"8023":5,"8024":3,"8025":4,"8026":3,"8027":4,"8028":6,"8029":2,"8030":8,"8031":5,"8032":5,"8033":3,"8034":3,"8035":4,"8036":4,"8037":4,"8038":3,"8039":8,"8040":4,"8041":1,"8042":9,"8043":2,"8044":5,"8045":3,"8046":2,"8047":9,"8048":2,"8049":4,"8050":3,"8051":7,"8052":2,"8053":5,"8054":2,"8055":5,"8056":8,"8057":1,"8058":4,"8059":4,"8060":2,"8061":5,"8062":4,"8063":2,"8064":2,"8065":6,"8066":3,"8067":5,"8068":5,"8069":7,"8070":5,"8071":5,"8072":4,"8073":3,"8074":5,"8075":8,"8076":2,"8077":4,"8078":4,"8079":3,"8080":1,"8081":7,"8082":5,"8083":7,"8084":2,"8085":5,"8086":1,"8087":6,"8088":3,"8089":4,"8090":3,"8091":4,"8092":3,"8093":1,"8094":4,"8095":1,"8096":3,"8097":7,"8098":2,"8099":2,"8100":4,"8101":5,"8102":3,"8103":6,"8104":6,"8105":4,"8106":4,"8107":4,"8108":5,"8109":4,"8110":4,"8111":6,"8112":7,"8113":4,"8114":4,"8115":5,"8116":4,"8117":5,"8118":5,"8119":4,"8120":3,"8121":4,"8122":5,"8123":5,"8124":6,"8125":4,"8126":4,"8127":1,"8128":5,"8129":5,"8130":4,"8131":1,"8132":2,"8133":5,"8134":3,"8135":4,"8136":3,"8137":3,"8138":3,"8139":3,"8140":2,"8141":4,"8142":4,"8143":3,"8144":3,"8145":7,"8146":5,"8147":4,"8148":2,"8149":5,"8150":3,"8151":8,"8152":2,"8153":2,"8154":3,"8155":3,"8156":2,"8157":4,"8158":4,"8159":4,"8160":6,"8161":2,"8162":1,"8163":4,"8164":4,"8165":4,"8166":4,"8167":7,"8168":2,"8169":4,"8170":4,"8171":3,"8172":4,"8173":8,"8174":3,"8175":4,"8176":2,"8177":4,"8178":2,"8179":3,"8180":3,"8181":2,"8182":4,"8183":5,"8184":4,"8185":6,"8186":5,"8187":3,"8188":4,"8189":1,"8190":3,"8191":4,"8192":3,"8193":3,"8194":4,"8195":2,"8196":6,"8197":4,"8198":3,"8199":8,"8200":3,"8201":3,"8202":4,"8203":6,"8204":3,"8205":8,"8206":3,"8207":5,"8208":5,"8209":6,"8210":4,"8211":3,"8212":4,"8213":5,"8214":3,"8215":3,"8216":4,"8217":3,"8218":4,"8219":6,"8220":3,"8221":1,"8222":2,"8223":2,"8224":3,"8225":4,"8226":4,"8227":3,"8228":3,"8229":5,"8230":3,"8231":5,"8232":3,"8233":2,"8234":3,"8235":5,"8236":4,"8237":4,"8238":5,"8239":6,"8240":6,"8241":3,"8242":3,"8243":4,"8244":3,"8245":4,"8246":8,"8247":4,"8248":2,"8249":5,"8250":2,"8251":4,"8252":3,"8253":3,"8254":4,"8255":4,"8256":2,"8257":4,"8258":1,"8259":4,"8260":6,"8261":5,"8262":1,"8263":4,"8264":6,"8265":4,"8266":1,"8267":6,"8268":4,"8269":4,"8270":3,"8271":7,"8272":3,"8273":1,"8274":7,"8275":5,"8276":3,"8277":4,"8278":6,"8279":4,"8280":5,"8281":4,"8282":5,"8283":4,"8284":4,"8285":5,"8286":3,"8287":5,"8288":4,"8289":7,"8290":4,"8291":3,"8292":5,"8293":8,"8294":8,"8295":5,"8296":4,"8297":6,"8298":6,"8299":3,"8300":3,"8301":5,"8302":5,"8303":4,"8304":9,"8305":3,"8306":4,"8307":2,"8308":6,"8309":4,"8310":3,"8311":3,"8312":6,"8313":8,"8314":6,"8315":2,"8316":4,"8317":4,"8318":2,"8319":3,"8320":3,"8321":3,"8322":4,"8323":6,"8324":2,"8325":8,"8326":3,"8327":3,"8328":3,"8329":4,"8330":4,"8331":5,"8332":7,"8333":4,"8334":3,"8335":5,"8336":5,"8337":3,"8338":2,"8339":2,"8340":4,"8341":3,"8342":4,"8343":5,"8344":4,"8345":8,"8346":7,"8347":2,"8348":6,"8349":6,"8350":4,"8351":4,"8352":7,"8353":2,"8354":2,"8355":3,"8356":5,"8357":3,"8358":4,"8359":5,"8360":4,"8361":3,"8362":4,"8363":6,"8364":5,"8365":4,"8366":4,"8367":5,"8368":3,"8369":3,"8370":3,"8371":6,"8372":4,"8373":3,"8374":4,"8375":4,"8376":4,"8377":1,"8378":6,"8379":5,"8380":2,"8381":4,"8382":3,"8383":2,"8384":3,"8385":3,"8386":3,"8387":3,"8388":4,"8389":2,"8390":5,"8391":3,"8392":4,"8393":4,"8394":1,"8395":5,"8396":4,"8397":8,"8398":8,"8399":3,"8400":3,"8401":5,"8402":5,"8403":2,"8404":6,"8405":1,"8406":4,"8407":3,"8408":5,"8409":5,"8410":1,"8411":3,"8412":2,"8413":2,"8414":3,"8415":3,"8416":4,"8417":4,"8418":8,"8419":3,"8420":5,"8421":4,"8422":2,"8423":4,"8424":3,"8425":5,"8426":3,"8427":4,"8428":5,"8429":5,"8430":4,"8431":3,"8432":4,"8433":3,"8434":7,"8435":4,"8436":5,"8437":4,"8438":3,"8439":4,"8440":5,"8441":7,"8442":1,"8443":5,"8444":7,"8445":1,"8446":6,"8447":6,"8448":3,"8449":5,"8450":3,"8451":4,"8452":3,"8453":7,"8454":3,"8455":2,"8456":3,"8457":4,"8458":9,"8459":8,"8460":1,"8461":1,"8462":6,"8463":6,"8464":2,"8465":5,"8466":3,"8467":4,"8468":3,"8469":4,"8470":4,"8471":5,"8472":8,"8473":5,"8474":5,"8475":2,"8476":4,"8477":3,"8478":7,"8479":2,"8480":4,"8481":3,"8482":5,"8483":4,"8484":4,"8485":4,"8486":3,"8487":4,"8488":3,"8489":2,"8490":3,"8491":4,"8492":3,"8493":8,"8494":3,"8495":4,"8496":4,"8497":5,"8498":3,"8499":1,"8500":4,"8501":3,"8502":2,"8503":3,"8504":4,"8505":5,"8506":3,"8507":4,"8508":3,"8509":4,"8510":4,"8511":4,"8512":4,"8513":4,"8514":3,"8515":4,"8516":3,"8517":3,"8518":3,"8519":4,"8520":4,"8521":2,"8522":4,"8523":4,"8524":8,"8525":5,"8526":3,"8527":9,"8528":3,"8529":3,"8530":4,"8531":2,"8532":4,"8533":4,"8534":3,"8535":5,"8536":3,"8537":6,"8538":4,"8539":4,"8540":4,"8541":4,"8542":4,"8543":8,"8544":7,"8545":1,"8546":3,"8547":3,"8548":7,"8549":4,"8550":3,"8551":3,"8552":4,"8553":3,"8554":3,"8555":3,"8556":7,"8557":3,"8558":3,"8559":6,"8560":4,"8561":4,"8562":5,"8563":4,"8564":5,"8565":7,"8566":5,"8567":8,"8568":2,"8569":7,"8570":4,"8571":9,"8572":3,"8573":4,"8574":3,"8575":4,"8576":4,"8577":3,"8578":3,"8579":4,"8580":2,"8581":5,"8582":5,"8583":3,"8584":7,"8585":5,"8586":8,"8587":2,"8588":5,"8589":6,"8590":4,"8591":3,"8592":5,"8593":4,"8594":4,"8595":2,"8596":4,"8597":4,"8598":2,"8599":9,"8600":1,"8601":2,"8602":3,"8603":2,"8604":1,"8605":4,"8606":6,"8607":4,"8608":4,"8609":4,"8610":5,"8611":4,"8612":7,"8613":5,"8614":3,"8615":5,"8616":4,"8617":2,"8618":3,"8619":5,"8620":4,"8621":4,"8622":3,"8623":4,"8624":3,"8625":3,"8626":4,"8627":3,"8628":3,"8629":5,"8630":2,"8631":6,"8632":4,"8633":4,"8634":5,"8635":5,"8636":3,"8637":4,"8638":3,"8639":4,"8640":2,"8641":3,"8642":4,"8643":4,"8644":3,"8645":5,"8646":4,"8647":4,"8648":3,"8649":3,"8650":3,"8651":4,"8652":3,"8653":3,"8654":9,"8655":4,"8656":3,"8657":7,"8658":1,"8659":3,"8660":4,"8661":7,"8662":4,"8663":7,"8664":5,"8665":3,"8666":3,"8667":2,"8668":2,"8669":1,"8670":5,"8671":5,"8672":4,"8673":5,"8674":7,"8675":4,"8676":4,"8677":8,"8678":2,"8679":1,"8680":4,"8681":4,"8682":5,"8683":3,"8684":1,"8685":3,"8686":3,"8687":5,"8688":3,"8689":5,"8690":2,"8691":5,"8692":6,"8693":7,"8694":4,"8695":4,"8696":4,"8697":3,"8698":3,"8699":9,"8700":4,"8701":5,"8702":3,"8703":3,"8704":4,"8705":6,"8706":1,"8707":4,"8708":5,"8709":4,"8710":5,"8711":4,"8712":3,"8713":2,"8714":5,"8715":7,"8716":4,"8717":7,"8718":4,"8719":2,"8720":3,"8721":4,"8722":1,"8723":4,"8724":3,"8725":3,"8726":1,"8727":4,"8728":4,"8729":3,"8730":4,"8731":7,"8732":5,"8733":1,"8734":3,"8735":4,"8736":2,"8737":5,"8738":7,"8739":4,"8740":9,"8741":1,"8742":4,"8743":4,"8744":5,"8745":3,"8746":4,"8747":7,"8748":5,"8749":3,"8750":4,"8751":2,"8752":3,"8753":4,"8754":4,"8755":4,"8756":3,"8757":3,"8758":2,"8759":9,"8760":3,"8761":3,"8762":5,"8763":3,"8764":9,"8765":4,"8766":6,"8767":7,"8768":2,"8769":3,"8770":4,"8771":4,"8772":4,"8773":3,"8774":3,"8775":2,"8776":3,"8777":4,"8778":3,"8779":4,"8780":4,"8781":4,"8782":3,"8783":8,"8784":5,"8785":5,"8786":4,"8787":7,"8788":3,"8789":4,"8790":5,"8791":5,"8792":5,"8793":4,"8794":3,"8795":3,"8796":4,"8797":5,"8798":3,"8799":4,"8800":3,"8801":5,"8802":4,"8803":3,"8804":5,"8805":6,"8806":5,"8807":4,"8808":7,"8809":2,"8810":6,"8811":5,"8812":3,"8813":6,"8814":3,"8815":4,"8816":1,"8817":2,"8818":3,"8819":4,"8820":6,"8821":1,"8822":3,"8823":1,"8824":8,"8825":5,"8826":5,"8827":3,"8828":6,"8829":3,"8830":3,"8831":1,"8832":2,"8833":3,"8834":7,"8835":6,"8836":4,"8837":5,"8838":6,"8839":3,"8840":5,"8841":5,"8842":3,"8843":5,"8844":2,"8845":3,"8846":4,"8847":2,"8848":3,"8849":4,"8850":4,"8851":4,"8852":4,"8853":5,"8854":4,"8855":2,"8856":3,"8857":3,"8858":1,"8859":3,"8860":4,"8861":4,"8862":4,"8863":3,"8864":4,"8865":4,"8866":2,"8867":2,"8868":5,"8869":2,"8870":4,"8871":4,"8872":7,"8873":5,"8874":5,"8875":2,"8876":5,"8877":5,"8878":3,"8879":4,"8880":7,"8881":4,"8882":5,"8883":5,"8884":2,"8885":4,"8886":5,"8887":5,"8888":4,"8889":3,"8890":3,"8891":2,"8892":4,"8893":5,"8894":2,"8895":4,"8896":3,"8897":5,"8898":4,"8899":4,"8900":4,"8901":4,"8902":1,"8903":3,"8904":3,"8905":3,"8906":2,"8907":3,"8908":4,"8909":4,"8910":6,"8911":5,"8912":2,"8913":4,"8914":4,"8915":4,"8916":1,"8917":4,"8918":2,"8919":8,"8920":2,"8921":4,"8922":4,"8923":3,"8924":2,"8925":9,"8926":3,"8927":6,"8928":6,"8929":3,"8930":5,"8931":6,"8932":2,"8933":3,"8934":8,"8935":2,"8936":4,"8937":3,"8938":7,"8939":6,"8940":4,"8941":5,"8942":5,"8943":3,"8944":2,"8945":9,"8946":4,"8947":7,"8948":4,"8949":7,"8950":3,"8951":5,"8952":2,"8953":4,"8954":3,"8955":4,"8956":5,"8957":3,"8958":5,"8959":4,"8960":3,"8961":4,"8962":1,"8963":5,"8964":2,"8965":4,"8966":3,"8967":2,"8968":4,"8969":4,"8970":4,"8971":4,"8972":5,"8973":3,"8974":2,"8975":5,"8976":5,"8977":3,"8978":7,"8979":1,"8980":4,"8981":6,"8982":3,"8983":3,"8984":3,"8985":1,"8986":3,"8987":8,"8988":5,"8989":9,"8990":3,"8991":3,"8992":4,"8993":3,"8994":3,"8995":7,"8996":3,"8997":5,"8998":4,"8999":3,"9000":4,"9001":4,"9002":3,"9003":6,"9004":4,"9005":4,"9006":5,"9007":5,"9008":3,"9009":1,"9010":4,"9011":4,"9012":4,"9013":5,"9014":2,"9015":3,"9016":5,"9017":7,"9018":1,"9019":4,"9020":8,"9021":5,"9022":4,"9023":4,"9024":4,"9025":4,"9026":5,"9027":4,"9028":3,"9029":4,"9030":3,"9031":3,"9032":4,"9033":4,"9034":8,"9035":4,"9036":3,"9037":2,"9038":7,"9039":4,"9040":4,"9041":4,"9042":5,"9043":2,"9044":5,"9045":5,"9046":1,"9047":8,"9048":7,"9049":3,"9050":5,"9051":5,"9052":5,"9053":4,"9054":3,"9055":3,"9056":4,"9057":4,"9058":4,"9059":1,"9060":4,"9061":7,"9062":7,"9063":5,"9064":4,"9065":6,"9066":6,"9067":4,"9068":5,"9069":5,"9070":7,"9071":3,"9072":2,"9073":2,"9074":4,"9075":2,"9076":7,"9077":4,"9078":4,"9079":7,"9080":4,"9081":3,"9082":6,"9083":4,"9084":3,"9085":4,"9086":7,"9087":3,"9088":3,"9089":8,"9090":7,"9091":3,"9092":6,"9093":3,"9094":2,"9095":3,"9096":8,"9097":3,"9098":5,"9099":2,"9100":6,"9101":4,"9102":2,"9103":5,"9104":7,"9105":4,"9106":3,"9107":3,"9108":1,"9109":4,"9110":4,"9111":2,"9112":4,"9113":3,"9114":3,"9115":5,"9116":4,"9117":3,"9118":2,"9119":7,"9120":4,"9121":9,"9122":4,"9123":3,"9124":2,"9125":4,"9126":4,"9127":3,"9128":3,"9129":3,"9130":3,"9131":4,"9132":7,"9133":2,"9134":4,"9135":3,"9136":5,"9137":2,"9138":3,"9139":5,"9140":3,"9141":5,"9142":4,"9143":1,"9144":8,"9145":4,"9146":4,"9147":3,"9148":3,"9149":2,"9150":4,"9151":3,"9152":4,"9153":3,"9154":3,"9155":4,"9156":4,"9157":5,"9158":5,"9159":2,"9160":5,"9161":2,"9162":5,"9163":4,"9164":5,"9165":4,"9166":2,"9167":5,"9168":8,"9169":2,"9170":6,"9171":1,"9172":3,"9173":4,"9174":5,"9175":4,"9176":8,"9177":3,"9178":1,"9179":4,"9180":4,"9181":3,"9182":3,"9183":4,"9184":4,"9185":3,"9186":4,"9187":1,"9188":4,"9189":3,"9190":3,"9191":5,"9192":7,"9193":6,"9194":9,"9195":5,"9196":5,"9197":3,"9198":5,"9199":5,"9200":3,"9201":2,"9202":8,"9203":5,"9204":5,"9205":9,"9206":4,"9207":3,"9208":4,"9209":1,"9210":6,"9211":2,"9212":3,"9213":5,"9214":3,"9215":4,"9216":3,"9217":8,"9218":4,"9219":4,"9220":5,"9221":4,"9222":4,"9223":3,"9224":5,"9225":4,"9226":8,"9227":3,"9228":6,"9229":4,"9230":7,"9231":4,"9232":5,"9233":5,"9234":1,"9235":2,"9236":3,"9237":6,"9238":4,"9239":2,"9240":2,"9241":2,"9242":3,"9243":2,"9244":4,"9245":5,"9246":3,"9247":5,"9248":5,"9249":9,"9250":4,"9251":3,"9252":3,"9253":4,"9254":3,"9255":7,"9256":1,"9257":4,"9258":3,"9259":4,"9260":5,"9261":2,"9262":4,"9263":2,"9264":4,"9265":4,"9266":5,"9267":5,"9268":7,"9269":6,"9270":5,"9271":3,"9272":4,"9273":6,"9274":2,"9275":4,"9276":3,"9277":4,"9278":1,"9279":4,"9280":4,"9281":3,"9282":3,"9283":3,"9284":4,"9285":3,"9286":4,"9287":4,"9288":9,"9289":5,"9290":4,"9291":4,"9292":4,"9293":1,"9294":3,"9295":4,"9296":4,"9297":5,"9298":1,"9299":5,"9300":4,"9301":6,"9302":3,"9303":5,"9304":1,"9305":3,"9306":4,"9307":9,"9308":4,"9309":4,"9310":2,"9311":4,"9312":4,"9313":4,"9314":5,"9315":2,"9316":3,"9317":3,"9318":4,"9319":3,"9320":4,"9321":3,"9322":2,"9323":1,"9324":3,"9325":4,"9326":3,"9327":3,"9328":3,"9329":1,"9330":5,"9331":4,"9332":6,"9333":5,"9334":3,"9335":2,"9336":4,"9337":5,"9338":3,"9339":5,"9340":6,"9341":5,"9342":3,"9343":5,"9344":7,"9345":4,"9346":3,"9347":4,"9348":8,"9349":3,"9350":2,"9351":3,"9352":4,"9353":3,"9354":7,"9355":7,"9356":3,"9357":4,"9358":4,"9359":3,"9360":4,"9361":3,"9362":4,"9363":5,"9364":2,"9365":5,"9366":4,"9367":3,"9368":3,"9369":1,"9370":3,"9371":4,"9372":3,"9373":4,"9374":3,"9375":6,"9376":4,"9377":6,"9378":9,"9379":4,"9380":2,"9381":6,"9382":5,"9383":1,"9384":2,"9385":4,"9386":2,"9387":4,"9388":3,"9389":4,"9390":3,"9391":3,"9392":3,"9393":4,"9394":3,"9395":3,"9396":3,"9397":4,"9398":4,"9399":5,"9400":5,"9401":1,"9402":3,"9403":2,"9404":3,"9405":2,"9406":2,"9407":3,"9408":4,"9409":4,"9410":2,"9411":4,"9412":1,"9413":4,"9414":3,"9415":5,"9416":4,"9417":4,"9418":3,"9419":4,"9420":2,"9421":8,"9422":4,"9423":4,"9424":5,"9425":4,"9426":6,"9427":8,"9428":4,"9429":3,"9430":2,"9431":5,"9432":4,"9433":4,"9434":3,"9435":5,"9436":4,"9437":5,"9438":4,"9439":6,"9440":4,"9441":1,"9442":4,"9443":4,"9444":2,"9445":5,"9446":3,"9447":3,"9448":8,"9449":3,"9450":4,"9451":5,"9452":3,"9453":5,"9454":2,"9455":4,"9456":3,"9457":4,"9458":2,"9459":3,"9460":1,"9461":5,"9462":4,"9463":5,"9464":3,"9465":3,"9466":4,"9467":3,"9468":4,"9469":2,"9470":3,"9471":7,"9472":3,"9473":2,"9474":4,"9475":2,"9476":4,"9477":8,"9478":3,"9479":5,"9480":5,"9481":2,"9482":4,"9483":3,"9484":6,"9485":4,"9486":4,"9487":4,"9488":3,"9489":3,"9490":5,"9491":2,"9492":5,"9493":3,"9494":3,"9495":3,"9496":3,"9497":5,"9498":4,"9499":3,"9500":2,"9501":4,"9502":7,"9503":5,"9504":4,"9505":4,"9506":7,"9507":2,"9508":3,"9509":4,"9510":4,"9511":5,"9512":3,"9513":3,"9514":7,"9515":4,"9516":3,"9517":7,"9518":2,"9519":2,"9520":6,"9521":2,"9522":3,"9523":4,"9524":3,"9525":4,"9526":3,"9527":4,"9528":4,"9529":1,"9530":6,"9531":3,"9532":5,"9533":4,"9534":6,"9535":9,"9536":5,"9537":6,"9538":2,"9539":5,"9540":4,"9541":1,"9542":3,"9543":4,"9544":3,"9545":5,"9546":3,"9547":2,"9548":4,"9549":8,"9550":8,"9551":3,"9552":2,"9553":4,"9554":5,"9555":4,"9556":3,"9557":4,"9558":8,"9559":4,"9560":4,"9561":2,"9562":3,"9563":2,"9564":2,"9565":4,"9566":8,"9567":7,"9568":3,"9569":7,"9570":4,"9571":4,"9572":5,"9573":4,"9574":4,"9575":7,"9576":3,"9577":4,"9578":5,"9579":3,"9580":5,"9581":4,"9582":4,"9583":8,"9584":5,"9585":2,"9586":3,"9587":7,"9588":4,"9589":7,"9590":5,"9591":7,"9592":6,"9593":4,"9594":1,"9595":4,"9596":5,"9597":4,"9598":4,"9599":5,"9600":2,"9601":3,"9602":3,"9603":4,"9604":4,"9605":4,"9606":2,"9607":3,"9608":4,"9609":5,"9610":3,"9611":4,"9612":3,"9613":4,"9614":5,"9615":4,"9616":4,"9617":8,"9618":4,"9619":4,"9620":4,"9621":4,"9622":4,"9623":4,"9624":5,"9625":5,"9626":4,"9627":7,"9628":4,"9629":4,"9630":8,"9631":5,"9632":4,"9633":3,"9634":3,"9635":4,"9636":5,"9637":5,"9638":4,"9639":2,"9640":4,"9641":4,"9642":1,"9643":5,"9644":7,"9645":3,"9646":4,"9647":4,"9648":9,"9649":7,"9650":4,"9651":9,"9652":5,"9653":1,"9654":6,"9655":5,"9656":4,"9657":5,"9658":7,"9659":4,"9660":3,"9661":4,"9662":5,"9663":3,"9664":5,"9665":4,"9666":3,"9667":4,"9668":3,"9669":6,"9670":5,"9671":5,"9672":5,"9673":3,"9674":3,"9675":7,"9676":8,"9677":3,"9678":3,"9679":5,"9680":6,"9681":4,"9682":2,"9683":4,"9684":3,"9685":4,"9686":7,"9687":5,"9688":4,"9689":2,"9690":3,"9691":2,"9692":2,"9693":5,"9694":5,"9695":2,"9696":5,"9697":4,"9698":5,"9699":4,"9700":4,"9701":4,"9702":7,"9703":3,"9704":4,"9705":7,"9706":7,"9707":1,"9708":4,"9709":3,"9710":2,"9711":1,"9712":1,"9713":4,"9714":2,"9715":3,"9716":3,"9717":3,"9718":4,"9719":5,"9720":3,"9721":5,"9722":6,"9723":3,"9724":4,"9725":2,"9726":4,"9727":3,"9728":4,"9729":1,"9730":5,"9731":4,"9732":5,"9733":6,"9734":4,"9735":2,"9736":5,"9737":4,"9738":4,"9739":3,"9740":1,"9741":2,"9742":3,"9743":4,"9744":3,"9745":3,"9746":3,"9747":5,"9748":5,"9749":3,"9750":2,"9751":6,"9752":4,"9753":5,"9754":5,"9755":2,"9756":6,"9757":2,"9758":5,"9759":3,"9760":5,"9761":7,"9762":1,"9763":7,"9764":1,"9765":8,"9766":3,"9767":4,"9768":4,"9769":1,"9770":1,"9771":4,"9772":6,"9773":9,"9774":3,"9775":3,"9776":6,"9777":4,"9778":9,"9779":2,"9780":4,"9781":5,"9782":4,"9783":3,"9784":6,"9785":3,"9786":5,"9787":6,"9788":2,"9789":3,"9790":4,"9791":4,"9792":4,"9793":5,"9794":2,"9795":3,"9796":2,"9797":5,"9798":4,"9799":8,"9800":4,"9801":4,"9802":5,"9803":2,"9804":3,"9805":3,"9806":2,"9807":5,"9808":4,"9809":7,"9810":3,"9811":6,"9812":4,"9813":5,"9814":4,"9815":4,"9816":2,"9817":3,"9818":6,"9819":5,"9820":4,"9821":7,"9822":4,"9823":4,"9824":6,"9825":2,"9826":4,"9827":3,"9828":3,"9829":2,"9830":4,"9831":5,"9832":4,"9833":3,"9834":3,"9835":7,"9836":3,"9837":4,"9838":6,"9839":1,"9840":4,"9841":7,"9842":4,"9843":4,"9844":3,"9845":4,"9846":6,"9847":9,"9848":4,"9849":3,"9850":2,"9851":4,"9852":4,"9853":7,"9854":2,"9855":9,"9856":3,"9857":2,"9858":2,"9859":4,"9860":5,"9861":1,"9862":9,"9863":5,"9864":2,"9865":2,"9866":4,"9867":5,"9868":2,"9869":4,"9870":4,"9871":1,"9872":3,"9873":3,"9874":4,"9875":7,"9876":4,"9877":4,"9878":5,"9879":2,"9880":2,"9881":3,"9882":2,"9883":4,"9884":4,"9885":4,"9886":3,"9887":7,"9888":8,"9889":3,"9890":3,"9891":5,"9892":4,"9893":4,"9894":3,"9895":2,"9896":5,"9897":4,"9898":4,"9899":3,"9900":5,"9901":2,"9902":4,"9903":4,"9904":5,"9905":4,"9906":4,"9907":4,"9908":4,"9909":8,"9910":5,"9911":3,"9912":4,"9913":5,"9914":3,"9915":1,"9916":3,"9917":5,"9918":5,"9919":4,"9920":3,"9921":7,"9922":4,"9923":4,"9924":3,"9925":4,"9926":1,"9927":2,"9928":8,"9929":4,"9930":5,"9931":4,"9932":3,"9933":5,"9934":4,"9935":1,"9936":3,"9937":6,"9938":4,"9939":3,"9940":6,"9941":3,"9942":3,"9943":4,"9944":4,"9945":2,"9946":4,"9947":1,"9948":4,"9949":2,"9950":3,"9951":4,"9952":4,"9953":3,"9954":4,"9955":5,"9956":3,"9957":1,"9958":4,"9959":4,"9960":3,"9961":5,"9962":4,"9963":4,"9964":4,"9965":5,"9966":3,"9967":4,"9968":4,"9969":4,"9970":5,"9971":2,"9972":4,"9973":6,"9974":2,"9975":3,"9976":5,"9977":3,"9978":4,"9979":3,"9980":4,"9981":6,"9982":4,"9983":3,"9984":5,"9985":4,"9986":3,"9987":6,"9988":4,"9989":4,"9990":9,"9991":5,"9992":3,"9993":3,"9994":1,"9995":3,"9996":7,"9997":4,"9998":3,"9999":4,"10000":3,"10001":1,"10002":4,"10003":1,"10004":1,"10005":3,"10006":8,"10007":5,"10008":4,"10009":2,"10010":9,"10011":4,"10012":6,"10013":8,"10014":5,"10015":7,"10016":3,"10017":3,"10018":2,"10019":9,"10020":4,"10021":5,"10022":3,"10023":2,"10024":4,"10025":3,"10026":4,"10027":3,"10028":3,"10029":2,"10030":4,"10031":4,"10032":3,"10033":1,"10034":9,"10035":4,"10036":4,"10037":7,"10038":4,"10039":2,"10040":2,"10041":4,"10042":5,"10043":2,"10044":4,"10045":9,"10046":2,"10047":7,"10048":2,"10049":3,"10050":2,"10051":4,"10052":4,"10053":3,"10054":4,"10055":2,"10056":4,"10057":3,"10058":5,"10059":7,"10060":1,"10061":9,"10062":5,"10063":4,"10064":4,"10065":3,"10066":4,"10067":4,"10068":3,"10069":3,"10070":3,"10071":6,"10072":5,"10073":3,"10074":4,"10075":2,"10076":3,"10077":6,"10078":4,"10079":5,"10080":3,"10081":4,"10082":4,"10083":5,"10084":9,"10085":3,"10086":4,"10087":5,"10088":5,"10089":2,"10090":2,"10091":4,"10092":5,"10093":3,"10094":4,"10095":1,"10096":2,"10097":2,"10098":5,"10099":4,"10100":1,"10101":6,"10102":5,"10103":3,"10104":3,"10105":7,"10106":3,"10107":5,"10108":8,"10109":4,"10110":7,"10111":2,"10112":1,"10113":4,"10114":2,"10115":2,"10116":3,"10117":2,"10118":6,"10119":2,"10120":4,"10121":4,"10122":5,"10123":4,"10124":7,"10125":5,"10126":4,"10127":6,"10128":2,"10129":5,"10130":4,"10131":2,"10132":4,"10133":5,"10134":4,"10135":4,"10136":1,"10137":5,"10138":1,"10139":2,"10140":3,"10141":7,"10142":4,"10143":4,"10144":4,"10145":1,"10146":1,"10147":7,"10148":1,"10149":4,"10150":6,"10151":4,"10152":3,"10153":3,"10154":3,"10155":3,"10156":3,"10157":3,"10158":1,"10159":5,"10160":3,"10161":5,"10162":6,"10163":5,"10164":3,"10165":4,"10166":4,"10167":2,"10168":5,"10169":2,"10170":5,"10171":4,"10172":2,"10173":5,"10174":3,"10175":4,"10176":5,"10177":4,"10178":3,"10179":4,"10180":3,"10181":3,"10182":3,"10183":5,"10184":3,"10185":5,"10186":3,"10187":3,"10188":3,"10189":5,"10190":2,"10191":3,"10192":5,"10193":3,"10194":4,"10195":3,"10196":2,"10197":5,"10198":5,"10199":2,"10200":3,"10201":7,"10202":3,"10203":6,"10204":3,"10205":7,"10206":8,"10207":5,"10208":4,"10209":5,"10210":2,"10211":5,"10212":4,"10213":3,"10214":3,"10215":7,"10216":3,"10217":4,"10218":5,"10219":3,"10220":5,"10221":4,"10222":3,"10223":3,"10224":7,"10225":4,"10226":2,"10227":2,"10228":2,"10229":4,"10230":4,"10231":4,"10232":3,"10233":5,"10234":2,"10235":1,"10236":4,"10237":5,"10238":2,"10239":3,"10240":3,"10241":1,"10242":7,"10243":6,"10244":3,"10245":3,"10246":7,"10247":3,"10248":6,"10249":7,"10250":3,"10251":2,"10252":7,"10253":2,"10254":3,"10255":9,"10256":4,"10257":2,"10258":4,"10259":4,"10260":4,"10261":7,"10262":2,"10263":4,"10264":4,"10265":4,"10266":4,"10267":3,"10268":3,"10269":4,"10270":3,"10271":4,"10272":4,"10273":3,"10274":3,"10275":4,"10276":4,"10277":4,"10278":1,"10279":4,"10280":7,"10281":3,"10282":5,"10283":1,"10284":5,"10285":9,"10286":4,"10287":5,"10288":4,"10289":3,"10290":4,"10291":4,"10292":4,"10293":7,"10294":4,"10295":4,"10296":5,"10297":8,"10298":6,"10299":2,"10300":4,"10301":4,"10302":1,"10303":5,"10304":3,"10305":5,"10306":1,"10307":4,"10308":3,"10309":4,"10310":2,"10311":3,"10312":9,"10313":5,"10314":5,"10315":4,"10316":4,"10317":7,"10318":3,"10319":4,"10320":4,"10321":4,"10322":8,"10323":3,"10324":4,"10325":4,"10326":5,"10327":2,"10328":4,"10329":4,"10330":4,"10331":1,"10332":2,"10333":4,"10334":1,"10335":6,"10336":3,"10337":3,"10338":4,"10339":4,"10340":1,"10341":8,"10342":1,"10343":3,"10344":9,"10345":7,"10346":2,"10347":1,"10348":4,"10349":7,"10350":4,"10351":3,"10352":3,"10353":7,"10354":1,"10355":4,"10356":4,"10357":1,"10358":5,"10359":3,"10360":7,"10361":4,"10362":3,"10363":4,"10364":3,"10365":4,"10366":6,"10367":3,"10368":4,"10369":3,"10370":8,"10371":3,"10372":3,"10373":4,"10374":3,"10375":3,"10376":4,"10377":4,"10378":4,"10379":4,"10380":2,"10381":3,"10382":2,"10383":3,"10384":6,"10385":6,"10386":4,"10387":4,"10388":3,"10389":3,"10390":6,"10391":4,"10392":4,"10393":4,"10394":4,"10395":3,"10396":4,"10397":2,"10398":4,"10399":4,"10400":3,"10401":3,"10402":4,"10403":1,"10404":3,"10405":4,"10406":5,"10407":5,"10408":3,"10409":2,"10410":3,"10411":5,"10412":1,"10413":8,"10414":3,"10415":6,"10416":4,"10417":7,"10418":4,"10419":3,"10420":3,"10421":8,"10422":4,"10423":3,"10424":4,"10425":3,"10426":8,"10427":3,"10428":3,"10429":6,"10430":6,"10431":4,"10432":3,"10433":1,"10434":4,"10435":3,"10436":3,"10437":2,"10438":3,"10439":4,"10440":4,"10441":4,"10442":3,"10443":1,"10444":4,"10445":3,"10446":7,"10447":3,"10448":3,"10449":3,"10450":3,"10451":5,"10452":4,"10453":3,"10454":3,"10455":5,"10456":4,"10457":3,"10458":3,"10459":3,"10460":4,"10461":5,"10462":4,"10463":4,"10464":9,"10465":3,"10466":2,"10467":8,"10468":3,"10469":4,"10470":4,"10471":8,"10472":6,"10473":5,"10474":4,"10475":3,"10476":3,"10477":4,"10478":1,"10479":2,"10480":4,"10481":5,"10482":8,"10483":5,"10484":6,"10485":4,"10486":4,"10487":3,"10488":3,"10489":4,"10490":5,"10491":2,"10492":5,"10493":4,"10494":7,"10495":3,"10496":7,"10497":8,"10498":4,"10499":4,"10500":4,"10501":7,"10502":4,"10503":7,"10504":4,"10505":4,"10506":3,"10507":5,"10508":5,"10509":2,"10510":4,"10511":3,"10512":3,"10513":5,"10514":4,"10515":5,"10516":5,"10517":3,"10518":3,"10519":3,"10520":2,"10521":4,"10522":3,"10523":4,"10524":2,"10525":4,"10526":4,"10527":6,"10528":4,"10529":5,"10530":3,"10531":5,"10532":7,"10533":3,"10534":4,"10535":4,"10536":3,"10537":4,"10538":7,"10539":7,"10540":1,"10541":2,"10542":5,"10543":3,"10544":5,"10545":4,"10546":3,"10547":1,"10548":3,"10549":2,"10550":3,"10551":3,"10552":4,"10553":4,"10554":5,"10555":3,"10556":4,"10557":2,"10558":4,"10559":2,"10560":5,"10561":3,"10562":3,"10563":3,"10564":4,"10565":4,"10566":8,"10567":2,"10568":2,"10569":9,"10570":6,"10571":1,"10572":3,"10573":6,"10574":7,"10575":3,"10576":3,"10577":4,"10578":3,"10579":3,"10580":5,"10581":3,"10582":4,"10583":5,"10584":1,"10585":5,"10586":3,"10587":6,"10588":4,"10589":5,"10590":6,"10591":8,"10592":3,"10593":4,"10594":3,"10595":4,"10596":7,"10597":3,"10598":3,"10599":7,"10600":3,"10601":6,"10602":8,"10603":3,"10604":3,"10605":2,"10606":3,"10607":3,"10608":4,"10609":3,"10610":4,"10611":4,"10612":4,"10613":4,"10614":4,"10615":4,"10616":3,"10617":2,"10618":3,"10619":3,"10620":3,"10621":3,"10622":4,"10623":3,"10624":1,"10625":5,"10626":3,"10627":3,"10628":4,"10629":4,"10630":8,"10631":1,"10632":4,"10633":3,"10634":4,"10635":6,"10636":7,"10637":3,"10638":1,"10639":6,"10640":2,"10641":5,"10642":4,"10643":3,"10644":3,"10645":4,"10646":3,"10647":3,"10648":5,"10649":3,"10650":3,"10651":1,"10652":5,"10653":4,"10654":7,"10655":4,"10656":4,"10657":4,"10658":8,"10659":4,"10660":3,"10661":3,"10662":4,"10663":6,"10664":3,"10665":5,"10666":9,"10667":3,"10668":5,"10669":1,"10670":7,"10671":3,"10672":6,"10673":4,"10674":5,"10675":5,"10676":4,"10677":5,"10678":3,"10679":1,"10680":8,"10681":5,"10682":4,"10683":4,"10684":7,"10685":4,"10686":5,"10687":4,"10688":5,"10689":3,"10690":3,"10691":2,"10692":4,"10693":5,"10694":2,"10695":4,"10696":2,"10697":3,"10698":3,"10699":3,"10700":4,"10701":3,"10702":4,"10703":4,"10704":3,"10705":5,"10706":9,"10707":3,"10708":2,"10709":1,"10710":5,"10711":3,"10712":3,"10713":3,"10714":4,"10715":4,"10716":4,"10717":4,"10718":2,"10719":3,"10720":6,"10721":3,"10722":5,"10723":3,"10724":3,"10725":4,"10726":5,"10727":4,"10728":4,"10729":2,"10730":3,"10731":4,"10732":2,"10733":4,"10734":3,"10735":4,"10736":7,"10737":1,"10738":4,"10739":9,"10740":4,"10741":2,"10742":4,"10743":5,"10744":5,"10745":8,"10746":4,"10747":4,"10748":2,"10749":3,"10750":8,"10751":6,"10752":7,"10753":4,"10754":4,"10755":3,"10756":2,"10757":1,"10758":4,"10759":4,"10760":7,"10761":3,"10762":3,"10763":2,"10764":4,"10765":5,"10766":5,"10767":4,"10768":3,"10769":1,"10770":3,"10771":4,"10772":3,"10773":4,"10774":4,"10775":4,"10776":4,"10777":4,"10778":4,"10779":8,"10780":1,"10781":6,"10782":6,"10783":5,"10784":5,"10785":5,"10786":4,"10787":4,"10788":3,"10789":3,"10790":5,"10791":4,"10792":5,"10793":5,"10794":4,"10795":5,"10796":7,"10797":5,"10798":3,"10799":4,"10800":4,"10801":5,"10802":3,"10803":2,"10804":3,"10805":5,"10806":4,"10807":2,"10808":7,"10809":4,"10810":7,"10811":4,"10812":3,"10813":3,"10814":4,"10815":3,"10816":4,"10817":1,"10818":5,"10819":6,"10820":9,"10821":3,"10822":1,"10823":4,"10824":2,"10825":4,"10826":7,"10827":3,"10828":3,"10829":4,"10830":4,"10831":5,"10832":5,"10833":6,"10834":5,"10835":3,"10836":5,"10837":4,"10838":1,"10839":3,"10840":5,"10841":5,"10842":3,"10843":6,"10844":3,"10845":3,"10846":3,"10847":4,"10848":4,"10849":3,"10850":4,"10851":4,"10852":4,"10853":4,"10854":6,"10855":3,"10856":2,"10857":9,"10858":5,"10859":2,"10860":3,"10861":4,"10862":4,"10863":3,"10864":3,"10865":4,"10866":3,"10867":6,"10868":7,"10869":2,"10870":9,"10871":6,"10872":6,"10873":3,"10874":5,"10875":3,"10876":3,"10877":3,"10878":4,"10879":5,"10880":4,"10881":5,"10882":6,"10883":2,"10884":5,"10885":6,"10886":3,"10887":4,"10888":8,"10889":3,"10890":2,"10891":3,"10892":5,"10893":6,"10894":9,"10895":4,"10896":4,"10897":5,"10898":5,"10899":4,"10900":4,"10901":5,"10902":5,"10903":4,"10904":4,"10905":5,"10906":4,"10907":2,"10908":5,"10909":4,"10910":5,"10911":6,"10912":4,"10913":3,"10914":3,"10915":1,"10916":4,"10917":4,"10918":2,"10919":7,"10920":5,"10921":4,"10922":5,"10923":4,"10924":3,"10925":8,"10926":3,"10927":7,"10928":5,"10929":9,"10930":3,"10931":3,"10932":4,"10933":4,"10934":1,"10935":4,"10936":2,"10937":1,"10938":2,"10939":5,"10940":5,"10941":4,"10942":3,"10943":5,"10944":3,"10945":5,"10946":5,"10947":2,"10948":1,"10949":4,"10950":5,"10951":9,"10952":5,"10953":4,"10954":4,"10955":2,"10956":5,"10957":2,"10958":4,"10959":2,"10960":5,"10961":3,"10962":4,"10963":3,"10964":5,"10965":8,"10966":2,"10967":4,"10968":3,"10969":4,"10970":6,"10971":5,"10972":3,"10973":5,"10974":5,"10975":2,"10976":7,"10977":6,"10978":3,"10979":3,"10980":8,"10981":3,"10982":5,"10983":5,"10984":2,"10985":8,"10986":5,"10987":4,"10988":3,"10989":4,"10990":3,"10991":3,"10992":3,"10993":7,"10994":4,"10995":3,"10996":3,"10997":5,"10998":3,"10999":3,"11000":3,"11001":5,"11002":3,"11003":4,"11004":5,"11005":2,"11006":7,"11007":4,"11008":3,"11009":3,"11010":3,"11011":5,"11012":4,"11013":8,"11014":4,"11015":5,"11016":2,"11017":3,"11018":4,"11019":4,"11020":3,"11021":4,"11022":3,"11023":3,"11024":3,"11025":2,"11026":5,"11027":4,"11028":3,"11029":4,"11030":4,"11031":4,"11032":9,"11033":4,"11034":3,"11035":3,"11036":6,"11037":8,"11038":1,"11039":4,"11040":2,"11041":6,"11042":8,"11043":4,"11044":5,"11045":2,"11046":4,"11047":3,"11048":4,"11049":2,"11050":4,"11051":5,"11052":3,"11053":2,"11054":5,"11055":5,"11056":2,"11057":6,"11058":3,"11059":3,"11060":5,"11061":1,"11062":2,"11063":3,"11064":5,"11065":5,"11066":5,"11067":3,"11068":2,"11069":3,"11070":3,"11071":3,"11072":3,"11073":3,"11074":4,"11075":5,"11076":5,"11077":9,"11078":6,"11079":8,"11080":5,"11081":5,"11082":4,"11083":3,"11084":8,"11085":5,"11086":3,"11087":3,"11088":3,"11089":8,"11090":4,"11091":3,"11092":4,"11093":7,"11094":2,"11095":3,"11096":4,"11097":4,"11098":5,"11099":9,"11100":3,"11101":7,"11102":1,"11103":4,"11104":6,"11105":3,"11106":4,"11107":4,"11108":3,"11109":9,"11110":5,"11111":6,"11112":3,"11113":1,"11114":3,"11115":2,"11116":5,"11117":1,"11118":1,"11119":4,"11120":3,"11121":6,"11122":2,"11123":6,"11124":3,"11125":3,"11126":6,"11127":3,"11128":5,"11129":3,"11130":4,"11131":4,"11132":4,"11133":5,"11134":4,"11135":6,"11136":4,"11137":4,"11138":7,"11139":9,"11140":4,"11141":6,"11142":4,"11143":4,"11144":4,"11145":4,"11146":3,"11147":4,"11148":9,"11149":3,"11150":4,"11151":3,"11152":6,"11153":7,"11154":3,"11155":2,"11156":4,"11157":4,"11158":1,"11159":5,"11160":2,"11161":4,"11162":3,"11163":4,"11164":3,"11165":4,"11166":3,"11167":3,"11168":5,"11169":4,"11170":3,"11171":1,"11172":3,"11173":5,"11174":4,"11175":5,"11176":4,"11177":3,"11178":8,"11179":3,"11180":2,"11181":3,"11182":3,"11183":4,"11184":3,"11185":4,"11186":2,"11187":7,"11188":8,"11189":8,"11190":6,"11191":3,"11192":7,"11193":6,"11194":2,"11195":4,"11196":3,"11197":7,"11198":6,"11199":3,"11200":4,"11201":3,"11202":4,"11203":4,"11204":4,"11205":4,"11206":2,"11207":4,"11208":5,"11209":3,"11210":4,"11211":5,"11212":4,"11213":7,"11214":4,"11215":4,"11216":7,"11217":3,"11218":4,"11219":4,"11220":3,"11221":3,"11222":1,"11223":3,"11224":4,"11225":3,"11226":5,"11227":2,"11228":3,"11229":5,"11230":5,"11231":3,"11232":3,"11233":4,"11234":9,"11235":4,"11236":3,"11237":8,"11238":4,"11239":2,"11240":4,"11241":9,"11242":3,"11243":6,"11244":3,"11245":4,"11246":7,"11247":3,"11248":4,"11249":4,"11250":1,"11251":4,"11252":4,"11253":4,"11254":2,"11255":4,"11256":4,"11257":5,"11258":5,"11259":4,"11260":2,"11261":8,"11262":3,"11263":1,"11264":3,"11265":3,"11266":2,"11267":2,"11268":3,"11269":1,"11270":2,"11271":3,"11272":3,"11273":6,"11274":4,"11275":1,"11276":3,"11277":7,"11278":4,"11279":1,"11280":1,"11281":1,"11282":7,"11283":4,"11284":3,"11285":3,"11286":4,"11287":2,"11288":3,"11289":4,"11290":5,"11291":3,"11292":5,"11293":4,"11294":1,"11295":3,"11296":7,"11297":3,"11298":2,"11299":4,"11300":3,"11301":5,"11302":5,"11303":5,"11304":3,"11305":2,"11306":3,"11307":3,"11308":5,"11309":7,"11310":3,"11311":9,"11312":5,"11313":5,"11314":2,"11315":4,"11316":5,"11317":8,"11318":4,"11319":6,"11320":4,"11321":4,"11322":7,"11323":2,"11324":6,"11325":3,"11326":5,"11327":4,"11328":6,"11329":2,"11330":5,"11331":8,"11332":5,"11333":5,"11334":3,"11335":5,"11336":3,"11337":4,"11338":2,"11339":4,"11340":5,"11341":4,"11342":3,"11343":5,"11344":6,"11345":2,"11346":4,"11347":2,"11348":3,"11349":2,"11350":5,"11351":2,"11352":4,"11353":5,"11354":2,"11355":4,"11356":3,"11357":3,"11358":3,"11359":4,"11360":2,"11361":4,"11362":5,"11363":3,"11364":5,"11365":9,"11366":2,"11367":4,"11368":5,"11369":4,"11370":6,"11371":3,"11372":5,"11373":4,"11374":6,"11375":3,"11376":4,"11377":2,"11378":2,"11379":3,"11380":4,"11381":3,"11382":3,"11383":1,"11384":6,"11385":4,"11386":4,"11387":4,"11388":3,"11389":2,"11390":3,"11391":4,"11392":3,"11393":4,"11394":8,"11395":1,"11396":5,"11397":3,"11398":9,"11399":5,"11400":4,"11401":4,"11402":3,"11403":7,"11404":4,"11405":4,"11406":2,"11407":4,"11408":5,"11409":5,"11410":4,"11411":4,"11412":2,"11413":2,"11414":4,"11415":4,"11416":6,"11417":3,"11418":2,"11419":4,"11420":4,"11421":5,"11422":4,"11423":4,"11424":2,"11425":5,"11426":4,"11427":4,"11428":8,"11429":9,"11430":3,"11431":3,"11432":6,"11433":4,"11434":3,"11435":7,"11436":3,"11437":2,"11438":4,"11439":1,"11440":4,"11441":4,"11442":3,"11443":4,"11444":3,"11445":3,"11446":5,"11447":3,"11448":2,"11449":2,"11450":5,"11451":4,"11452":3,"11453":9,"11454":3,"11455":3,"11456":4,"11457":4,"11458":4,"11459":3,"11460":5,"11461":3,"11462":2,"11463":4,"11464":3,"11465":5,"11466":1,"11467":4,"11468":1,"11469":2,"11470":4,"11471":4,"11472":2,"11473":4,"11474":3,"11475":2,"11476":4,"11477":4,"11478":4,"11479":3,"11480":8,"11481":3,"11482":4,"11483":5,"11484":7,"11485":4,"11486":1,"11487":7,"11488":3,"11489":3,"11490":1,"11491":9,"11492":4,"11493":3,"11494":2,"11495":4,"11496":3,"11497":4,"11498":7,"11499":3,"11500":6,"11501":4,"11502":7,"11503":5,"11504":5,"11505":4,"11506":4,"11507":4,"11508":4,"11509":5,"11510":2,"11511":6,"11512":4,"11513":4,"11514":5,"11515":6,"11516":4,"11517":5,"11518":5,"11519":7,"11520":3,"11521":5,"11522":4,"11523":4,"11524":4,"11525":3,"11526":2,"11527":1,"11528":4,"11529":5,"11530":2,"11531":3,"11532":4,"11533":3,"11534":4,"11535":3,"11536":5,"11537":3,"11538":6,"11539":4,"11540":4,"11541":1,"11542":3,"11543":5,"11544":3,"11545":4,"11546":4,"11547":5,"11548":3,"11549":5,"11550":7,"11551":5,"11552":1,"11553":4,"11554":4,"11555":3,"11556":4,"11557":3,"11558":3,"11559":6,"11560":8,"11561":3,"11562":5,"11563":2,"11564":2,"11565":8,"11566":5,"11567":4,"11568":2,"11569":3,"11570":3,"11571":3,"11572":7,"11573":4,"11574":4,"11575":4,"11576":1,"11577":5,"11578":4,"11579":5,"11580":3,"11581":4,"11582":1,"11583":5,"11584":4,"11585":4,"11586":6,"11587":7,"11588":3,"11589":3,"11590":5,"11591":9,"11592":9,"11593":8,"11594":7,"11595":3,"11596":3,"11597":5,"11598":3,"11599":5,"11600":6,"11601":3,"11602":4,"11603":4,"11604":4,"11605":5,"11606":4,"11607":4,"11608":3,"11609":5,"11610":1,"11611":5,"11612":7,"11613":1,"11614":2,"11615":4,"11616":5,"11617":3,"11618":5,"11619":5,"11620":4,"11621":5,"11622":2,"11623":5,"11624":4,"11625":1,"11626":5,"11627":3,"11628":2,"11629":5,"11630":4,"11631":4,"11632":3,"11633":3,"11634":3,"11635":5,"11636":4,"11637":5,"11638":3,"11639":6,"11640":4,"11641":5,"11642":8,"11643":3,"11644":5,"11645":7,"11646":3,"11647":4,"11648":4,"11649":4,"11650":3,"11651":4,"11652":3,"11653":3,"11654":3,"11655":7,"11656":4,"11657":3,"11658":4,"11659":4,"11660":3,"11661":4,"11662":3,"11663":6,"11664":4,"11665":2,"11666":4,"11667":2,"11668":3,"11669":5,"11670":4,"11671":3,"11672":3,"11673":4,"11674":8,"11675":4,"11676":6,"11677":3,"11678":4,"11679":3,"11680":3,"11681":1,"11682":4,"11683":3,"11684":8,"11685":6,"11686":3,"11687":4,"11688":3,"11689":7,"11690":4,"11691":3,"11692":3,"11693":3,"11694":7,"11695":7,"11696":3,"11697":4,"11698":5,"11699":5,"11700":5,"11701":2,"11702":4,"11703":7,"11704":3,"11705":4,"11706":2,"11707":3,"11708":4,"11709":6,"11710":4,"11711":3,"11712":3,"11713":2,"11714":3,"11715":7,"11716":4,"11717":4,"11718":4,"11719":3,"11720":5,"11721":2,"11722":1,"11723":2,"11724":6,"11725":4,"11726":1,"11727":5,"11728":4,"11729":3,"11730":4,"11731":3,"11732":4,"11733":4,"11734":5,"11735":4,"11736":4,"11737":9,"11738":4,"11739":3,"11740":7,"11741":4,"11742":3,"11743":4,"11744":3,"11745":4,"11746":5,"11747":7,"11748":5,"11749":5,"11750":5,"11751":5,"11752":9,"11753":2,"11754":8,"11755":4,"11756":3,"11757":4,"11758":4,"11759":3,"11760":8,"11761":5,"11762":3,"11763":4,"11764":7,"11765":3,"11766":2,"11767":4,"11768":8,"11769":7,"11770":4,"11771":4,"11772":6,"11773":3,"11774":3,"11775":6,"11776":1,"11777":3,"11778":3,"11779":6,"11780":3,"11781":5,"11782":3,"11783":9,"11784":4,"11785":5,"11786":2,"11787":7,"11788":1,"11789":3,"11790":3,"11791":4,"11792":3,"11793":5,"11794":5,"11795":4,"11796":2,"11797":7,"11798":3,"11799":4,"11800":6,"11801":4,"11802":6,"11803":4,"11804":4,"11805":5,"11806":5,"11807":3,"11808":5,"11809":3,"11810":4,"11811":2,"11812":4,"11813":4,"11814":4,"11815":8,"11816":4,"11817":3,"11818":2,"11819":2,"11820":4,"11821":2,"11822":4,"11823":7,"11824":5,"11825":4,"11826":2,"11827":1,"11828":3,"11829":4,"11830":4,"11831":3,"11832":5,"11833":3,"11834":1,"11835":3,"11836":2,"11837":7,"11838":1,"11839":4,"11840":6,"11841":5,"11842":3,"11843":6,"11844":3,"11845":4,"11846":4,"11847":2,"11848":6,"11849":1,"11850":5,"11851":6,"11852":4,"11853":8,"11854":4,"11855":3,"11856":5,"11857":4,"11858":5,"11859":3,"11860":6,"11861":2,"11862":3,"11863":6,"11864":2,"11865":4,"11866":4,"11867":2,"11868":3,"11869":3,"11870":4,"11871":4,"11872":1,"11873":8,"11874":3,"11875":5,"11876":3,"11877":3,"11878":4,"11879":5,"11880":6,"11881":1,"11882":3,"11883":3,"11884":5,"11885":4,"11886":8,"11887":3,"11888":2,"11889":4,"11890":4,"11891":3,"11892":5,"11893":3,"11894":4,"11895":3,"11896":1,"11897":4,"11898":4,"11899":2,"11900":4,"11901":6,"11902":2,"11903":5,"11904":5,"11905":3,"11906":5,"11907":5,"11908":4,"11909":5,"11910":2,"11911":3,"11912":4,"11913":3,"11914":4,"11915":3,"11916":4,"11917":3,"11918":5,"11919":6,"11920":4,"11921":7,"11922":4,"11923":4,"11924":4,"11925":2,"11926":7,"11927":3,"11928":7,"11929":3,"11930":4,"11931":2,"11932":2,"11933":2,"11934":3,"11935":4,"11936":4,"11937":4,"11938":6,"11939":4,"11940":4,"11941":4,"11942":2,"11943":3,"11944":6,"11945":2,"11946":4,"11947":5,"11948":4,"11949":1,"11950":3,"11951":8,"11952":4,"11953":5,"11954":3,"11955":3,"11956":3,"11957":5,"11958":2,"11959":4,"11960":5,"11961":5,"11962":4,"11963":3,"11964":3,"11965":6,"11966":3,"11967":3,"11968":3,"11969":3,"11970":5,"11971":5,"11972":9,"11973":3,"11974":3,"11975":3,"11976":4,"11977":4,"11978":1,"11979":5,"11980":7,"11981":3,"11982":5,"11983":4,"11984":2,"11985":4,"11986":4,"11987":5,"11988":3,"11989":3,"11990":3,"11991":3,"11992":4,"11993":2,"11994":3,"11995":4,"11996":9,"11997":8,"11998":8,"11999":3,"12000":4,"12001":4,"12002":3,"12003":5,"12004":5,"12005":4,"12006":3,"12007":7,"12008":8,"12009":4,"12010":6,"12011":5,"12012":4,"12013":3,"12014":5,"12015":2,"12016":4,"12017":3,"12018":7,"12019":5,"12020":4,"12021":3,"12022":5,"12023":1,"12024":4,"12025":3,"12026":4,"12027":1,"12028":3,"12029":4,"12030":4,"12031":4,"12032":3,"12033":4,"12034":4,"12035":4,"12036":5,"12037":4,"12038":5,"12039":9,"12040":1,"12041":4,"12042":5,"12043":4,"12044":5,"12045":3,"12046":7,"12047":4,"12048":4,"12049":2,"12050":4,"12051":3,"12052":2,"12053":5,"12054":3,"12055":3,"12056":5,"12057":3,"12058":3,"12059":3,"12060":2,"12061":4,"12062":2,"12063":4,"12064":1,"12065":5,"12066":4,"12067":4,"12068":4,"12069":3,"12070":4,"12071":1,"12072":2,"12073":3,"12074":5,"12075":9,"12076":4,"12077":4,"12078":2,"12079":4,"12080":9,"12081":3,"12082":4,"12083":2,"12084":1,"12085":3,"12086":7,"12087":1,"12088":4,"12089":4,"12090":8,"12091":5,"12092":3,"12093":2,"12094":4,"12095":9,"12096":1,"12097":3,"12098":5,"12099":6,"12100":7,"12101":4,"12102":5,"12103":4,"12104":3,"12105":4,"12106":4,"12107":3,"12108":7,"12109":4,"12110":5,"12111":5,"12112":3,"12113":4,"12114":4,"12115":6,"12116":2,"12117":5,"12118":3,"12119":3,"12120":3,"12121":4,"12122":3,"12123":2,"12124":3,"12125":4,"12126":3,"12127":2,"12128":1,"12129":4,"12130":8,"12131":5,"12132":1,"12133":5,"12134":4,"12135":4,"12136":4,"12137":8,"12138":3,"12139":3,"12140":6,"12141":4,"12142":3,"12143":6,"12144":5,"12145":4,"12146":3,"12147":1,"12148":4,"12149":2,"12150":8,"12151":4,"12152":7,"12153":5,"12154":4,"12155":5,"12156":3,"12157":2,"12158":3,"12159":3,"12160":3,"12161":4,"12162":5,"12163":2,"12164":4,"12165":4,"12166":3,"12167":2,"12168":3,"12169":5,"12170":8,"12171":8,"12172":4,"12173":1,"12174":5,"12175":3,"12176":4,"12177":3,"12178":1,"12179":4,"12180":3,"12181":7,"12182":4,"12183":4,"12184":2,"12185":3,"12186":5,"12187":4,"12188":4,"12189":2,"12190":3,"12191":5,"12192":6,"12193":7,"12194":6,"12195":4,"12196":5,"12197":3,"12198":2,"12199":1,"12200":4,"12201":4,"12202":4,"12203":3,"12204":3,"12205":2,"12206":4,"12207":4,"12208":3,"12209":4,"12210":3,"12211":5,"12212":4,"12213":4,"12214":9,"12215":5,"12216":6,"12217":3,"12218":4,"12219":3,"12220":5,"12221":4,"12222":5,"12223":4,"12224":4,"12225":4,"12226":6,"12227":5,"12228":7,"12229":4,"12230":3,"12231":1,"12232":6,"12233":1,"12234":5,"12235":5,"12236":3,"12237":8,"12238":2,"12239":5,"12240":3,"12241":3,"12242":5,"12243":3,"12244":4,"12245":3,"12246":7,"12247":4,"12248":2,"12249":4,"12250":4,"12251":4,"12252":3,"12253":3,"12254":4,"12255":6,"12256":2,"12257":4,"12258":4,"12259":2,"12260":2,"12261":4,"12262":4,"12263":8,"12264":9,"12265":7,"12266":4,"12267":3,"12268":5,"12269":6,"12270":3,"12271":4,"12272":3,"12273":5,"12274":3,"12275":4,"12276":9,"12277":6,"12278":4,"12279":3,"12280":2,"12281":4,"12282":2,"12283":3,"12284":3,"12285":2,"12286":5,"12287":3,"12288":7,"12289":1,"12290":4,"12291":4,"12292":3,"12293":5,"12294":2,"12295":5,"12296":3,"12297":2,"12298":4,"12299":8,"12300":4,"12301":4,"12302":8,"12303":5,"12304":2,"12305":5,"12306":3,"12307":4,"12308":6,"12309":4,"12310":3,"12311":5,"12312":2,"12313":7,"12314":1,"12315":7,"12316":5,"12317":4,"12318":3,"12319":3,"12320":4,"12321":5,"12322":4,"12323":3,"12324":2,"12325":4,"12326":4,"12327":1,"12328":3,"12329":4,"12330":7,"12331":5,"12332":3,"12333":6,"12334":4,"12335":7,"12336":7,"12337":5,"12338":5,"12339":5,"12340":3,"12341":2,"12342":7,"12343":1,"12344":7,"12345":5,"12346":3,"12347":6,"12348":7,"12349":4,"12350":1,"12351":5,"12352":5,"12353":3,"12354":2,"12355":4,"12356":3,"12357":3,"12358":4,"12359":1,"12360":2,"12361":3,"12362":6,"12363":3,"12364":4,"12365":3,"12366":7,"12367":8,"12368":4,"12369":3,"12370":5,"12371":5,"12372":5,"12373":1,"12374":3,"12375":4,"12376":2,"12377":5,"12378":1,"12379":4,"12380":3,"12381":4,"12382":4,"12383":3,"12384":3,"12385":4,"12386":4,"12387":3,"12388":4,"12389":3,"12390":3,"12391":6,"12392":3,"12393":9,"12394":9,"12395":5,"12396":3,"12397":4,"12398":4,"12399":2,"12400":5,"12401":4,"12402":2,"12403":4,"12404":5,"12405":3,"12406":4,"12407":4,"12408":1,"12409":3,"12410":4,"12411":3,"12412":3,"12413":4,"12414":3,"12415":4,"12416":3,"12417":6,"12418":4,"12419":3,"12420":6,"12421":4,"12422":1,"12423":3,"12424":4,"12425":4,"12426":7,"12427":7,"12428":5,"12429":4,"12430":4,"12431":4,"12432":4,"12433":5,"12434":4,"12435":7,"12436":3,"12437":4,"12438":2,"12439":2,"12440":5,"12441":3,"12442":4,"12443":4,"12444":5,"12445":3,"12446":3,"12447":5,"12448":2,"12449":2,"12450":8,"12451":4,"12452":4,"12453":4,"12454":4,"12455":4,"12456":2,"12457":4,"12458":3,"12459":2,"12460":3,"12461":4,"12462":2,"12463":3,"12464":4,"12465":1,"12466":9,"12467":4,"12468":4,"12469":4,"12470":2,"12471":4,"12472":4,"12473":3,"12474":5,"12475":5,"12476":1,"12477":3,"12478":5,"12479":2,"12480":5,"12481":5,"12482":3,"12483":3,"12484":4,"12485":3,"12486":5,"12487":4,"12488":4,"12489":3,"12490":3,"12491":8,"12492":4,"12493":3,"12494":5,"12495":7,"12496":6,"12497":3,"12498":8,"12499":5,"12500":5,"12501":2,"12502":3,"12503":2,"12504":3,"12505":4,"12506":3,"12507":3,"12508":4,"12509":2,"12510":9,"12511":3,"12512":3,"12513":5,"12514":3,"12515":2,"12516":3,"12517":8,"12518":3,"12519":3,"12520":3,"12521":3,"12522":4,"12523":4,"12524":1,"12525":4,"12526":3,"12527":5,"12528":5,"12529":6,"12530":4,"12531":3,"12532":7,"12533":4,"12534":4,"12535":3,"12536":6,"12537":5,"12538":6,"12539":4,"12540":2,"12541":3,"12542":5,"12543":4,"12544":4,"12545":4,"12546":6,"12547":4,"12548":4,"12549":1,"12550":5,"12551":4,"12552":4,"12553":4,"12554":8,"12555":1,"12556":4,"12557":3,"12558":5,"12559":9,"12560":4,"12561":2,"12562":3,"12563":2,"12564":5,"12565":4,"12566":2,"12567":6,"12568":4,"12569":6,"12570":1,"12571":3,"12572":5,"12573":8,"12574":3,"12575":7,"12576":4,"12577":4,"12578":4,"12579":7,"12580":4,"12581":3,"12582":2,"12583":4,"12584":5,"12585":3,"12586":4,"12587":3,"12588":7,"12589":3,"12590":9,"12591":4,"12592":4,"12593":4,"12594":4,"12595":4,"12596":2,"12597":5,"12598":6,"12599":2,"12600":5,"12601":4,"12602":4,"12603":3,"12604":2,"12605":3,"12606":4,"12607":5,"12608":1,"12609":3,"12610":4,"12611":4,"12612":4,"12613":3,"12614":4,"12615":3,"12616":5,"12617":7,"12618":4,"12619":3,"12620":5,"12621":3,"12622":3,"12623":4,"12624":3,"12625":3,"12626":3,"12627":2,"12628":8,"12629":3,"12630":3,"12631":2,"12632":1,"12633":4,"12634":2,"12635":5,"12636":4,"12637":4,"12638":3,"12639":5,"12640":4,"12641":7,"12642":4,"12643":2,"12644":4,"12645":5,"12646":5,"12647":6,"12648":3,"12649":4,"12650":5,"12651":4,"12652":5,"12653":5,"12654":3,"12655":3,"12656":3,"12657":9,"12658":5,"12659":9,"12660":4,"12661":3,"12662":4,"12663":3,"12664":4,"12665":1,"12666":3,"12667":7,"12668":3,"12669":3,"12670":3,"12671":6,"12672":7,"12673":2,"12674":1,"12675":2,"12676":1,"12677":2,"12678":3,"12679":5,"12680":2,"12681":3,"12682":4,"12683":3,"12684":4,"12685":7,"12686":6,"12687":4,"12688":4,"12689":3,"12690":3,"12691":4,"12692":5,"12693":3,"12694":6,"12695":3,"12696":5,"12697":8,"12698":5,"12699":6,"12700":4,"12701":5,"12702":4,"12703":4,"12704":1,"12705":1,"12706":2,"12707":4,"12708":5,"12709":3,"12710":7,"12711":4,"12712":4,"12713":6,"12714":3,"12715":4,"12716":1,"12717":9,"12718":5,"12719":4,"12720":2,"12721":2,"12722":2,"12723":4,"12724":4,"12725":5,"12726":4,"12727":3,"12728":2,"12729":4,"12730":2,"12731":2,"12732":4,"12733":8,"12734":5,"12735":2,"12736":4,"12737":3,"12738":5,"12739":4,"12740":3,"12741":5,"12742":4,"12743":4,"12744":4,"12745":4,"12746":4,"12747":3,"12748":4,"12749":4,"12750":4,"12751":1,"12752":8,"12753":2,"12754":4,"12755":3,"12756":6,"12757":3,"12758":5,"12759":3,"12760":1,"12761":3,"12762":3,"12763":3,"12764":5,"12765":3,"12766":8,"12767":5,"12768":4,"12769":4,"12770":4,"12771":5,"12772":4,"12773":3,"12774":3,"12775":4,"12776":4,"12777":3,"12778":3,"12779":5,"12780":3,"12781":3,"12782":4,"12783":8,"12784":1,"12785":3,"12786":6,"12787":4,"12788":7,"12789":3,"12790":4,"12791":4,"12792":5,"12793":2,"12794":3,"12795":3,"12796":5,"12797":5,"12798":4,"12799":7,"12800":4,"12801":6,"12802":3,"12803":5,"12804":7,"12805":2,"12806":3,"12807":7,"12808":2,"12809":9,"12810":5,"12811":3,"12812":3,"12813":3,"12814":5,"12815":4,"12816":4,"12817":3,"12818":3,"12819":4,"12820":3,"12821":5,"12822":3,"12823":3,"12824":3,"12825":4,"12826":8,"12827":7,"12828":1,"12829":6,"12830":4,"12831":5,"12832":2,"12833":4,"12834":5,"12835":5,"12836":6,"12837":5,"12838":2,"12839":3,"12840":4,"12841":5,"12842":3,"12843":2,"12844":5,"12845":2,"12846":3,"12847":2,"12848":4,"12849":4,"12850":4,"12851":5,"12852":5,"12853":4,"12854":2,"12855":4,"12856":4,"12857":4,"12858":5,"12859":2,"12860":4,"12861":3,"12862":9,"12863":3,"12864":4,"12865":7,"12866":4,"12867":5,"12868":3,"12869":8,"12870":3,"12871":2,"12872":3,"12873":3,"12874":5,"12875":4,"12876":1,"12877":7,"12878":5,"12879":3,"12880":4,"12881":1,"12882":4,"12883":3,"12884":4,"12885":4,"12886":7,"12887":3,"12888":3,"12889":4,"12890":4,"12891":3,"12892":2,"12893":5,"12894":3,"12895":8,"12896":1,"12897":7,"12898":4,"12899":3,"12900":4,"12901":4,"12902":4,"12903":3,"12904":5,"12905":7,"12906":2,"12907":4,"12908":6,"12909":5,"12910":4,"12911":8,"12912":9,"12913":2,"12914":4,"12915":5,"12916":3,"12917":4,"12918":3,"12919":4,"12920":4,"12921":1,"12922":2,"12923":4,"12924":6,"12925":3,"12926":5,"12927":2,"12928":1,"12929":5,"12930":4,"12931":7,"12932":4,"12933":6,"12934":3,"12935":4,"12936":3,"12937":5,"12938":5,"12939":4,"12940":4,"12941":4,"12942":4,"12943":3,"12944":4,"12945":7,"12946":9,"12947":3,"12948":2,"12949":2,"12950":5,"12951":3,"12952":6,"12953":4,"12954":4,"12955":1,"12956":3,"12957":3,"12958":6,"12959":3,"12960":3,"12961":5,"12962":4,"12963":8,"12964":1,"12965":4,"12966":3,"12967":2,"12968":2,"12969":4,"12970":6,"12971":3,"12972":2,"12973":1,"12974":3,"12975":2,"12976":4,"12977":4,"12978":8,"12979":1,"12980":2,"12981":4,"12982":3,"12983":5,"12984":5,"12985":4,"12986":4,"12987":3,"12988":5,"12989":9,"12990":4,"12991":6,"12992":5,"12993":3,"12994":5,"12995":5,"12996":6,"12997":3,"12998":6,"12999":4,"13000":9,"13001":4,"13002":2,"13003":6,"13004":5,"13005":1,"13006":3,"13007":2,"13008":4,"13009":5,"13010":4,"13011":7,"13012":1,"13013":3,"13014":3,"13015":4,"13016":3,"13017":7,"13018":1,"13019":3,"13020":2,"13021":5,"13022":4,"13023":2,"13024":4,"13025":4,"13026":4,"13027":2,"13028":1,"13029":4,"13030":8,"13031":3,"13032":4,"13033":4,"13034":4,"13035":5,"13036":3,"13037":4,"13038":2,"13039":3,"13040":4,"13041":4,"13042":5,"13043":2,"13044":5,"13045":5,"13046":6,"13047":3,"13048":4,"13049":5,"13050":4,"13051":5,"13052":5,"13053":2,"13054":4,"13055":7,"13056":5,"13057":3,"13058":4,"13059":4,"13060":3,"13061":4,"13062":5,"13063":4,"13064":3,"13065":3,"13066":4,"13067":2,"13068":3,"13069":4,"13070":3,"13071":2,"13072":4,"13073":4,"13074":3,"13075":3,"13076":3,"13077":5,"13078":4,"13079":4,"13080":3,"13081":8,"13082":3,"13083":6,"13084":4,"13085":7,"13086":4,"13087":3,"13088":4,"13089":3,"13090":9,"13091":3,"13092":6,"13093":3,"13094":3,"13095":5,"13096":3,"13097":2,"13098":4,"13099":2,"13100":4,"13101":5,"13102":4,"13103":2,"13104":4,"13105":5,"13106":3,"13107":4,"13108":1,"13109":9,"13110":6,"13111":3,"13112":3,"13113":3,"13114":5,"13115":3,"13116":7,"13117":4,"13118":4,"13119":2,"13120":4,"13121":4,"13122":4,"13123":6,"13124":4,"13125":5,"13126":2,"13127":7,"13128":9,"13129":5,"13130":3,"13131":4,"13132":3,"13133":1,"13134":6,"13135":5,"13136":3,"13137":7,"13138":4,"13139":5,"13140":3,"13141":3,"13142":3,"13143":2,"13144":4,"13145":5,"13146":7,"13147":4,"13148":4,"13149":4,"13150":5,"13151":2,"13152":5,"13153":3,"13154":7,"13155":4,"13156":1,"13157":3,"13158":4,"13159":4,"13160":4,"13161":1,"13162":4,"13163":4,"13164":4,"13165":6,"13166":3,"13167":3,"13168":3,"13169":6,"13170":3,"13171":4,"13172":5,"13173":5,"13174":3,"13175":7,"13176":7,"13177":5,"13178":5,"13179":5,"13180":4,"13181":4,"13182":3,"13183":6,"13184":2,"13185":3,"13186":3,"13187":4,"13188":3,"13189":3,"13190":5,"13191":4,"13192":6,"13193":5,"13194":3,"13195":6,"13196":2,"13197":9,"13198":2,"13199":3,"13200":5,"13201":6,"13202":3,"13203":1,"13204":4,"13205":7,"13206":3,"13207":8,"13208":2,"13209":3,"13210":1,"13211":5,"13212":5,"13213":7,"13214":8,"13215":9,"13216":4,"13217":5,"13218":3,"13219":2,"13220":9,"13221":4,"13222":4,"13223":5,"13224":2,"13225":1,"13226":7,"13227":3,"13228":4,"13229":4,"13230":6,"13231":4,"13232":8,"13233":3,"13234":2,"13235":5,"13236":1,"13237":2,"13238":2,"13239":8,"13240":5,"13241":3,"13242":2,"13243":4,"13244":2,"13245":3,"13246":3,"13247":7,"13248":2,"13249":4,"13250":8,"13251":3,"13252":2,"13253":5,"13254":4,"13255":4,"13256":4,"13257":4,"13258":4,"13259":5,"13260":6,"13261":4,"13262":5,"13263":3,"13264":4,"13265":3,"13266":1,"13267":3,"13268":6,"13269":4,"13270":1,"13271":5,"13272":9,"13273":4,"13274":3,"13275":4,"13276":5,"13277":7,"13278":3,"13279":3,"13280":4,"13281":9,"13282":8,"13283":5,"13284":2,"13285":3,"13286":4,"13287":3,"13288":7,"13289":4,"13290":3,"13291":3,"13292":2,"13293":3,"13294":4,"13295":4,"13296":4,"13297":5,"13298":3,"13299":1,"13300":4,"13301":5,"13302":3,"13303":4,"13304":9,"13305":4,"13306":4,"13307":4,"13308":3,"13309":5,"13310":5,"13311":7,"13312":4,"13313":8,"13314":5,"13315":4,"13316":3,"13317":4,"13318":4,"13319":8,"13320":5,"13321":4,"13322":3,"13323":4,"13324":3,"13325":2,"13326":4,"13327":4,"13328":4,"13329":2,"13330":5,"13331":3,"13332":4,"13333":2,"13334":3,"13335":4,"13336":4,"13337":2,"13338":8,"13339":9,"13340":4,"13341":4,"13342":5,"13343":3,"13344":4,"13345":4,"13346":3,"13347":9,"13348":5,"13349":4,"13350":4,"13351":5,"13352":4,"13353":2,"13354":3,"13355":5,"13356":5,"13357":4,"13358":8,"13359":5,"13360":3,"13361":7,"13362":4,"13363":1,"13364":4,"13365":6,"13366":4,"13367":3,"13368":5,"13369":8,"13370":3,"13371":3,"13372":4,"13373":3,"13374":4,"13375":6,"13376":3,"13377":6,"13378":3,"13379":7,"13380":4,"13381":3,"13382":3,"13383":4,"13384":3,"13385":3,"13386":7,"13387":1,"13388":8,"13389":4,"13390":4,"13391":5,"13392":5,"13393":3,"13394":4,"13395":4,"13396":5,"13397":4,"13398":4,"13399":3,"13400":3,"13401":4,"13402":9,"13403":4,"13404":3,"13405":4,"13406":4,"13407":4,"13408":7,"13409":8,"13410":3,"13411":1,"13412":2,"13413":3,"13414":4,"13415":1,"13416":8,"13417":3,"13418":2,"13419":3,"13420":3,"13421":5,"13422":7,"13423":4,"13424":7,"13425":9,"13426":2,"13427":4,"13428":3,"13429":9,"13430":2,"13431":3,"13432":3,"13433":4,"13434":1,"13435":3,"13436":2,"13437":5,"13438":5,"13439":4,"13440":2,"13441":3,"13442":4,"13443":3,"13444":3,"13445":2,"13446":3,"13447":2,"13448":3,"13449":2,"13450":4,"13451":3,"13452":4,"13453":3,"13454":4,"13455":4,"13456":4,"13457":3,"13458":3,"13459":3,"13460":3,"13461":3,"13462":3,"13463":9,"13464":1,"13465":5,"13466":5,"13467":3,"13468":4,"13469":6,"13470":3,"13471":3,"13472":4,"13473":4,"13474":4,"13475":9,"13476":4,"13477":2,"13478":4,"13479":4,"13480":2,"13481":3,"13482":8,"13483":3,"13484":5,"13485":3,"13486":4,"13487":4,"13488":2,"13489":9,"13490":3,"13491":5,"13492":3,"13493":4,"13494":1,"13495":5,"13496":3,"13497":3,"13498":5,"13499":5,"13500":3,"13501":6,"13502":2,"13503":1,"13504":8,"13505":6,"13506":5,"13507":5,"13508":6,"13509":4,"13510":3,"13511":2,"13512":3,"13513":3,"13514":3,"13515":2,"13516":8,"13517":3,"13518":3,"13519":1,"13520":2,"13521":4,"13522":3,"13523":4,"13524":4,"13525":2,"13526":3,"13527":6,"13528":4,"13529":8,"13530":1,"13531":4,"13532":3,"13533":4,"13534":3,"13535":3,"13536":5,"13537":5,"13538":7,"13539":5,"13540":3,"13541":3,"13542":3,"13543":3,"13544":6,"13545":2,"13546":4,"13547":3,"13548":4,"13549":1,"13550":8,"13551":4,"13552":3,"13553":3,"13554":5,"13555":2,"13556":4,"13557":3,"13558":7,"13559":4,"13560":4,"13561":4,"13562":3,"13563":4,"13564":2,"13565":3,"13566":4,"13567":1,"13568":4,"13569":2,"13570":4,"13571":4,"13572":3,"13573":3,"13574":2,"13575":4,"13576":5,"13577":6,"13578":4,"13579":5,"13580":6,"13581":3,"13582":5,"13583":5,"13584":3,"13585":3,"13586":2,"13587":6,"13588":5,"13589":2,"13590":3,"13591":3,"13592":5,"13593":5,"13594":5,"13595":4,"13596":3,"13597":2,"13598":5,"13599":5,"13600":4,"13601":4,"13602":5,"13603":3,"13604":7,"13605":5,"13606":5,"13607":3,"13608":1,"13609":3,"13610":3,"13611":9,"13612":1,"13613":1,"13614":6,"13615":3,"13616":1,"13617":3,"13618":3,"13619":4,"13620":1,"13621":3,"13622":1,"13623":7,"13624":1,"13625":4,"13626":7,"13627":1,"13628":3,"13629":4,"13630":2,"13631":6,"13632":4,"13633":4,"13634":3,"13635":1,"13636":7,"13637":5,"13638":7,"13639":6,"13640":4,"13641":7,"13642":2,"13643":3,"13644":4,"13645":4,"13646":2,"13647":4,"13648":3,"13649":5,"13650":4,"13651":3,"13652":3,"13653":2,"13654":6,"13655":9,"13656":9,"13657":4,"13658":3,"13659":4,"13660":2,"13661":4,"13662":5,"13663":3,"13664":1,"13665":3,"13666":4,"13667":3,"13668":2,"13669":3,"13670":3,"13671":2,"13672":4,"13673":2,"13674":5,"13675":2,"13676":2,"13677":8,"13678":3,"13679":3,"13680":3,"13681":3,"13682":4,"13683":1,"13684":3,"13685":1,"13686":4,"13687":2,"13688":2,"13689":4,"13690":3,"13691":4,"13692":3,"13693":3,"13694":5,"13695":4,"13696":7,"13697":4,"13698":3,"13699":4,"13700":4,"13701":4,"13702":3,"13703":2,"13704":2,"13705":9,"13706":1,"13707":4,"13708":5,"13709":5,"13710":7,"13711":5,"13712":3,"13713":8,"13714":4,"13715":4,"13716":3,"13717":7,"13718":6,"13719":5,"13720":5,"13721":4,"13722":4,"13723":5,"13724":5,"13725":4,"13726":3,"13727":2,"13728":2,"13729":2,"13730":4,"13731":2,"13732":7,"13733":3,"13734":4,"13735":3,"13736":5,"13737":5,"13738":5,"13739":5,"13740":6,"13741":2,"13742":4,"13743":4,"13744":1,"13745":4,"13746":2,"13747":4,"13748":4,"13749":6,"13750":4,"13751":1,"13752":6,"13753":4,"13754":3,"13755":4,"13756":9,"13757":7,"13758":3,"13759":2,"13760":3,"13761":4,"13762":3,"13763":2,"13764":3,"13765":5,"13766":3,"13767":2,"13768":3,"13769":4,"13770":4,"13771":4,"13772":5,"13773":5,"13774":1,"13775":3,"13776":5,"13777":5,"13778":3,"13779":2,"13780":2,"13781":7,"13782":5,"13783":3,"13784":2,"13785":4,"13786":4,"13787":4,"13788":4,"13789":4,"13790":4,"13791":2,"13792":5,"13793":5,"13794":2,"13795":5,"13796":5,"13797":1,"13798":4,"13799":7,"13800":4,"13801":4,"13802":6,"13803":3,"13804":3,"13805":8,"13806":5,"13807":3,"13808":5,"13809":5,"13810":4,"13811":2,"13812":4,"13813":5,"13814":2,"13815":5,"13816":2,"13817":5,"13818":1,"13819":4,"13820":3,"13821":5,"13822":2,"13823":3,"13824":3,"13825":4,"13826":4,"13827":4,"13828":4,"13829":8,"13830":3,"13831":3,"13832":4,"13833":5,"13834":4,"13835":3,"13836":2,"13837":6,"13838":4,"13839":2,"13840":5,"13841":7,"13842":4,"13843":2,"13844":6,"13845":5,"13846":3,"13847":2,"13848":4,"13849":5,"13850":5,"13851":5,"13852":3,"13853":3,"13854":4,"13855":4,"13856":3,"13857":3,"13858":3,"13859":3,"13860":7,"13861":5,"13862":2,"13863":7,"13864":9,"13865":3,"13866":4,"13867":7,"13868":4,"13869":4,"13870":3,"13871":3,"13872":4,"13873":4,"13874":3,"13875":4,"13876":4,"13877":3,"13878":4,"13879":5,"13880":4,"13881":3,"13882":4,"13883":3,"13884":3,"13885":8,"13886":5,"13887":3,"13888":3,"13889":2,"13890":1,"13891":3,"13892":3,"13893":2,"13894":4,"13895":4,"13896":7,"13897":4,"13898":3,"13899":4,"13900":1,"13901":3,"13902":3,"13903":2,"13904":4,"13905":4,"13906":8,"13907":5,"13908":5,"13909":3,"13910":1,"13911":5,"13912":3,"13913":3,"13914":3,"13915":5,"13916":4,"13917":4,"13918":5,"13919":3,"13920":4,"13921":1,"13922":6,"13923":4,"13924":4,"13925":7,"13926":2,"13927":3,"13928":8,"13929":4,"13930":4,"13931":8,"13932":6,"13933":4,"13934":3,"13935":5,"13936":3,"13937":2,"13938":4,"13939":7,"13940":4,"13941":4,"13942":3,"13943":8,"13944":2,"13945":2,"13946":3,"13947":4,"13948":1,"13949":3,"13950":4,"13951":4,"13952":4,"13953":4,"13954":3,"13955":6,"13956":8,"13957":7,"13958":3,"13959":4,"13960":4,"13961":6,"13962":3,"13963":3,"13964":2,"13965":4,"13966":4,"13967":3,"13968":4,"13969":5,"13970":5,"13971":3,"13972":4,"13973":3,"13974":2,"13975":3,"13976":4,"13977":4,"13978":3,"13979":5,"13980":4,"13981":3,"13982":6,"13983":7,"13984":4,"13985":4,"13986":4,"13987":3,"13988":2,"13989":4,"13990":4,"13991":6,"13992":2,"13993":5,"13994":4,"13995":7,"13996":3,"13997":2,"13998":6,"13999":2,"14000":4,"14001":2,"14002":5,"14003":2,"14004":4,"14005":5,"14006":3,"14007":6,"14008":7,"14009":8,"14010":1,"14011":3,"14012":5,"14013":2,"14014":2,"14015":4,"14016":2,"14017":4,"14018":3,"14019":3,"14020":1,"14021":6,"14022":2,"14023":3,"14024":1,"14025":4,"14026":1,"14027":3,"14028":5,"14029":4,"14030":4,"14031":3,"14032":5,"14033":4,"14034":4,"14035":4,"14036":4,"14037":4,"14038":4,"14039":4,"14040":3,"14041":4,"14042":5,"14043":3,"14044":4,"14045":3,"14046":1,"14047":4,"14048":4,"14049":7,"14050":8,"14051":4,"14052":8,"14053":2,"14054":5,"14055":3,"14056":8,"14057":3,"14058":6,"14059":5,"14060":3,"14061":1,"14062":3,"14063":3,"14064":5,"14065":7,"14066":4,"14067":1,"14068":2,"14069":3,"14070":5,"14071":3,"14072":4,"14073":3,"14074":4,"14075":3,"14076":5,"14077":5,"14078":9,"14079":5,"14080":5,"14081":4,"14082":3,"14083":8,"14084":4,"14085":3,"14086":5,"14087":6,"14088":7,"14089":3,"14090":4,"14091":3,"14092":4,"14093":7,"14094":5,"14095":3,"14096":4,"14097":4,"14098":9,"14099":5,"14100":6,"14101":2,"14102":4,"14103":4,"14104":3,"14105":3,"14106":4,"14107":1,"14108":8,"14109":3,"14110":1,"14111":4,"14112":3,"14113":5,"14114":4,"14115":1,"14116":6,"14117":6,"14118":4,"14119":3,"14120":3,"14121":5,"14122":4,"14123":3,"14124":3,"14125":6,"14126":7,"14127":2,"14128":4,"14129":4,"14130":8,"14131":8,"14132":4,"14133":3,"14134":2,"14135":5,"14136":2,"14137":9,"14138":3,"14139":2,"14140":4,"14141":4,"14142":4,"14143":4,"14144":3,"14145":5,"14146":9,"14147":4,"14148":4,"14149":3,"14150":4,"14151":5,"14152":1,"14153":4,"14154":3,"14155":4,"14156":9,"14157":5,"14158":2,"14159":4,"14160":3,"14161":1,"14162":5,"14163":3,"14164":4,"14165":3,"14166":5,"14167":3,"14168":3,"14169":8,"14170":8,"14171":4,"14172":6,"14173":4,"14174":6,"14175":4,"14176":2,"14177":5,"14178":1,"14179":4,"14180":7,"14181":7,"14182":4,"14183":7,"14184":7,"14185":5,"14186":7,"14187":2,"14188":4,"14189":3,"14190":5,"14191":5,"14192":5,"14193":3,"14194":3,"14195":4,"14196":2,"14197":4,"14198":4,"14199":5,"14200":5,"14201":3,"14202":3,"14203":4,"14204":8,"14205":5,"14206":2,"14207":6,"14208":2,"14209":2,"14210":8,"14211":4,"14212":5,"14213":4,"14214":4,"14215":8,"14216":2,"14217":3,"14218":3,"14219":5,"14220":7,"14221":8,"14222":4,"14223":4,"14224":3,"14225":3,"14226":4,"14227":4,"14228":2,"14229":4,"14230":3,"14231":1,"14232":7,"14233":4,"14234":3,"14235":4,"14236":6,"14237":4,"14238":9,"14239":3,"14240":5,"14241":3,"14242":2,"14243":4,"14244":3,"14245":5,"14246":1,"14247":4,"14248":5,"14249":2,"14250":2,"14251":5,"14252":3,"14253":5,"14254":4,"14255":8,"14256":3,"14257":4,"14258":4,"14259":4,"14260":4,"14261":7,"14262":7,"14263":2,"14264":5,"14265":2,"14266":3,"14267":4,"14268":6,"14269":3,"14270":4,"14271":4,"14272":3,"14273":3,"14274":2,"14275":3,"14276":4,"14277":3,"14278":4,"14279":4,"14280":4,"14281":3,"14282":4,"14283":5,"14284":5,"14285":8,"14286":6,"14287":6,"14288":4,"14289":4,"14290":4,"14291":3,"14292":5,"14293":3,"14294":4,"14295":4,"14296":4,"14297":6,"14298":7,"14299":3,"14300":4,"14301":3,"14302":3,"14303":2,"14304":1,"14305":2,"14306":5,"14307":6,"14308":5,"14309":3,"14310":3,"14311":5,"14312":4,"14313":3,"14314":3,"14315":5,"14316":3,"14317":4,"14318":2,"14319":4,"14320":4,"14321":5,"14322":5,"14323":4,"14324":2,"14325":3,"14326":3,"14327":4,"14328":3,"14329":4,"14330":5,"14331":1,"14332":4,"14333":5,"14334":3,"14335":3,"14336":1,"14337":5,"14338":5,"14339":3,"14340":4,"14341":4,"14342":5,"14343":8,"14344":5,"14345":1,"14346":4,"14347":6,"14348":5,"14349":4,"14350":2,"14351":2,"14352":9,"14353":4,"14354":6,"14355":5,"14356":7,"14357":6,"14358":4,"14359":4,"14360":4,"14361":6,"14362":3,"14363":3,"14364":2,"14365":5,"14366":3,"14367":4,"14368":2,"14369":4,"14370":7,"14371":6,"14372":6,"14373":3,"14374":7,"14375":4,"14376":4,"14377":3,"14378":4,"14379":3,"14380":4,"14381":4,"14382":8,"14383":2,"14384":6,"14385":3,"14386":5,"14387":9,"14388":3,"14389":6,"14390":6,"14391":2,"14392":3,"14393":2,"14394":8,"14395":7,"14396":4,"14397":4,"14398":1,"14399":5,"14400":4,"14401":1,"14402":4,"14403":5,"14404":3,"14405":3,"14406":4,"14407":2,"14408":4,"14409":4,"14410":1,"14411":4,"14412":3,"14413":3,"14414":3,"14415":2,"14416":2,"14417":4,"14418":1,"14419":3,"14420":5,"14421":5,"14422":5,"14423":3,"14424":2,"14425":2,"14426":5,"14427":2,"14428":3,"14429":4,"14430":3,"14431":4,"14432":1,"14433":8,"14434":3,"14435":4,"14436":4,"14437":2,"14438":4,"14439":3,"14440":4,"14441":2,"14442":4,"14443":4,"14444":3,"14445":2,"14446":1,"14447":4,"14448":3,"14449":9,"14450":2,"14451":5,"14452":7,"14453":2,"14454":7,"14455":4,"14456":1,"14457":5,"14458":4,"14459":3,"14460":4,"14461":4,"14462":9,"14463":7,"14464":5,"14465":5,"14466":4,"14467":4,"14468":4,"14469":3,"14470":3,"14471":2,"14472":9,"14473":4,"14474":3,"14475":6,"14476":4,"14477":5,"14478":5,"14479":4,"14480":7,"14481":3,"14482":4,"14483":7,"14484":3,"14485":4,"14486":4,"14487":8,"14488":4,"14489":4,"14490":3,"14491":4,"14492":4,"14493":7,"14494":5,"14495":5,"14496":7,"14497":5,"14498":2,"14499":4,"14500":2,"14501":4,"14502":1,"14503":5,"14504":3,"14505":6,"14506":3,"14507":1,"14508":2,"14509":4,"14510":4,"14511":7,"14512":7,"14513":2,"14514":3,"14515":1,"14516":2,"14517":3,"14518":1,"14519":3,"14520":2,"14521":3,"14522":3,"14523":2,"14524":4,"14525":3,"14526":3,"14527":3,"14528":4,"14529":6,"14530":2,"14531":8,"14532":3,"14533":3,"14534":8,"14535":4,"14536":3,"14537":2,"14538":3,"14539":9,"14540":6,"14541":4,"14542":3,"14543":5,"14544":5,"14545":4,"14546":4,"14547":3,"14548":3,"14549":3,"14550":4,"14551":6,"14552":3,"14553":3,"14554":4,"14555":7,"14556":3,"14557":3,"14558":3,"14559":1,"14560":4,"14561":5,"14562":4,"14563":5,"14564":4,"14565":3,"14566":7,"14567":2,"14568":5,"14569":4,"14570":2,"14571":4,"14572":3,"14573":4,"14574":6,"14575":3,"14576":4,"14577":5,"14578":3,"14579":3,"14580":5,"14581":2,"14582":9,"14583":4,"14584":4,"14585":4,"14586":3,"14587":7,"14588":4,"14589":2,"14590":3,"14591":3,"14592":1,"14593":3,"14594":4,"14595":3,"14596":5,"14597":4,"14598":3,"14599":1,"14600":3,"14601":4,"14602":5,"14603":4,"14604":9,"14605":3,"14606":4,"14607":3,"14608":4,"14609":3,"14610":2,"14611":4,"14612":3,"14613":2,"14614":4,"14615":6,"14616":3,"14617":3,"14618":6,"14619":3,"14620":5,"14621":2,"14622":3,"14623":3,"14624":3,"14625":4,"14626":7,"14627":1,"14628":3,"14629":4,"14630":4,"14631":3,"14632":3,"14633":2,"14634":4,"14635":2,"14636":1,"14637":4,"14638":5,"14639":4,"14640":2,"14641":1,"14642":3,"14643":4,"14644":2,"14645":5,"14646":4,"14647":4,"14648":3,"14649":5,"14650":4,"14651":4,"14652":7,"14653":8,"14654":4,"14655":4,"14656":2,"14657":5,"14658":2,"14659":5,"14660":3,"14661":6,"14662":4,"14663":2,"14664":1,"14665":4,"14666":3,"14667":8,"14668":5,"14669":4,"14670":4,"14671":8,"14672":3,"14673":4,"14674":3,"14675":5,"14676":4,"14677":7,"14678":6,"14679":9,"14680":4,"14681":4,"14682":7,"14683":2,"14684":3,"14685":7,"14686":2,"14687":1,"14688":5,"14689":3,"14690":2,"14691":8,"14692":5,"14693":4,"14694":5,"14695":1,"14696":5,"14697":4,"14698":4,"14699":3,"14700":3,"14701":4,"14702":5,"14703":4,"14704":2,"14705":4,"14706":7,"14707":4,"14708":4,"14709":4,"14710":5,"14711":5,"14712":3,"14713":4,"14714":2,"14715":3,"14716":4,"14717":3,"14718":4,"14719":4,"14720":9,"14721":5,"14722":4,"14723":1,"14724":4,"14725":4,"14726":3,"14727":4,"14728":4,"14729":1,"14730":4,"14731":3,"14732":5,"14733":5,"14734":4,"14735":4,"14736":5,"14737":4,"14738":4,"14739":3,"14740":4,"14741":3,"14742":3,"14743":5,"14744":4,"14745":3,"14746":4,"14747":9,"14748":2,"14749":3,"14750":2,"14751":2,"14752":5,"14753":4,"14754":4,"14755":2,"14756":4,"14757":2,"14758":3,"14759":3,"14760":3,"14761":9,"14762":4,"14763":2,"14764":5,"14765":4,"14766":2,"14767":3,"14768":3,"14769":4,"14770":4,"14771":1,"14772":3,"14773":9,"14774":5,"14775":3,"14776":5,"14777":4,"14778":3,"14779":5,"14780":5,"14781":4,"14782":3,"14783":5,"14784":3,"14785":4,"14786":4,"14787":5,"14788":5,"14789":5,"14790":8,"14791":7,"14792":4,"14793":8,"14794":1,"14795":6,"14796":1,"14797":8,"14798":3,"14799":6,"14800":4,"14801":4,"14802":5,"14803":5,"14804":8,"14805":4,"14806":4,"14807":1,"14808":3,"14809":3,"14810":4,"14811":2,"14812":5,"14813":4,"14814":1,"14815":4,"14816":4,"14817":3,"14818":3,"14819":4,"14820":7,"14821":4,"14822":7,"14823":3,"14824":5,"14825":4,"14826":3,"14827":3,"14828":3,"14829":3,"14830":4,"14831":5,"14832":4,"14833":3,"14834":6,"14835":5,"14836":3,"14837":4,"14838":4,"14839":4,"14840":3,"14841":3,"14842":3,"14843":2,"14844":5,"14845":4,"14846":4,"14847":8,"14848":3,"14849":5,"14850":1,"14851":3,"14852":3,"14853":6,"14854":3,"14855":3,"14856":4,"14857":3,"14858":3,"14859":3,"14860":3,"14861":3,"14862":7,"14863":5,"14864":3,"14865":1,"14866":3,"14867":2,"14868":4,"14869":1,"14870":3,"14871":2,"14872":6,"14873":2,"14874":8,"14875":3,"14876":1,"14877":4,"14878":3,"14879":2,"14880":4,"14881":3,"14882":5,"14883":4,"14884":4,"14885":5,"14886":3,"14887":4,"14888":2,"14889":5,"14890":4,"14891":3,"14892":2,"14893":7,"14894":5,"14895":2,"14896":2,"14897":4,"14898":5,"14899":7,"14900":6,"14901":3,"14902":7,"14903":3,"14904":7,"14905":3,"14906":6,"14907":4,"14908":3,"14909":4,"14910":5,"14911":1,"14912":4,"14913":7,"14914":3,"14915":7,"14916":2,"14917":4,"14918":4,"14919":3,"14920":4,"14921":3,"14922":3,"14923":5,"14924":5,"14925":5,"14926":9,"14927":3,"14928":4,"14929":5,"14930":1,"14931":4,"14932":4,"14933":4,"14934":6,"14935":4,"14936":4,"14937":6,"14938":3,"14939":3,"14940":4,"14941":9,"14942":8,"14943":4,"14944":4,"14945":5,"14946":8,"14947":7,"14948":2,"14949":9,"14950":4,"14951":3,"14952":5,"14953":8,"14954":4,"14955":4,"14956":6,"14957":7,"14958":3,"14959":2,"14960":6,"14961":4,"14962":3,"14963":2,"14964":5,"14965":3,"14966":7,"14967":6,"14968":3,"14969":4,"14970":6,"14971":7,"14972":4,"14973":7,"14974":3,"14975":5,"14976":3,"14977":5,"14978":4,"14979":2,"14980":5,"14981":6,"14982":4,"14983":4,"14984":7,"14985":6,"14986":4,"14987":1,"14988":4,"14989":3,"14990":2,"14991":3,"14992":1,"14993":4,"14994":4,"14995":4,"14996":2,"14997":5,"14998":5,"14999":8,"15000":8,"15001":4,"15002":4,"15003":3,"15004":1,"15005":4,"15006":4,"15007":4,"15008":4,"15009":2,"15010":2,"15011":4,"15012":4,"15013":5,"15014":4,"15015":6,"15016":9,"15017":4,"15018":4,"15019":2,"15020":3,"15021":5,"15022":3,"15023":5,"15024":3,"15025":7,"15026":4,"15027":2,"15028":9,"15029":4,"15030":9,"15031":1,"15032":5,"15033":2,"15034":2,"15035":4,"15036":4,"15037":4,"15038":3,"15039":8,"15040":4,"15041":4,"15042":4,"15043":5,"15044":5,"15045":4,"15046":4,"15047":4,"15048":8,"15049":2,"15050":4,"15051":4,"15052":5,"15053":4,"15054":3,"15055":7,"15056":6,"15057":3,"15058":5,"15059":4,"15060":3,"15061":4,"15062":1,"15063":4,"15064":3,"15065":4,"15066":2,"15067":4,"15068":4,"15069":7,"15070":4,"15071":8,"15072":7,"15073":3,"15074":5,"15075":7,"15076":2,"15077":4,"15078":5,"15079":1,"15080":3,"15081":5,"15082":4,"15083":4,"15084":5,"15085":4,"15086":5,"15087":3,"15088":3,"15089":3,"15090":4,"15091":4,"15092":5,"15093":3,"15094":6,"15095":5,"15096":3,"15097":2,"15098":2,"15099":3,"15100":4,"15101":7,"15102":4,"15103":2,"15104":1,"15105":3,"15106":8,"15107":3,"15108":4,"15109":3,"15110":3,"15111":8,"15112":1,"15113":8,"15114":3,"15115":3,"15116":5,"15117":1,"15118":3,"15119":3,"15120":2,"15121":3,"15122":5,"15123":8,"15124":5,"15125":3,"15126":7,"15127":5,"15128":4,"15129":4,"15130":3,"15131":5,"15132":3,"15133":6,"15134":4,"15135":4,"15136":4,"15137":3,"15138":3,"15139":4,"15140":2,"15141":4,"15142":4,"15143":5,"15144":3,"15145":3,"15146":8,"15147":2,"15148":4,"15149":5,"15150":5,"15151":3,"15152":3,"15153":4,"15154":4,"15155":4,"15156":4,"15157":4,"15158":3,"15159":5,"15160":4,"15161":1,"15162":4,"15163":2,"15164":1,"15165":2,"15166":2,"15167":5,"15168":6,"15169":4,"15170":3,"15171":4,"15172":5,"15173":7,"15174":2,"15175":4,"15176":4,"15177":7,"15178":8,"15179":3,"15180":4,"15181":3,"15182":8,"15183":5,"15184":3,"15185":3,"15186":1,"15187":5,"15188":3,"15189":6,"15190":3,"15191":4,"15192":3,"15193":4,"15194":4,"15195":4,"15196":3,"15197":5,"15198":4,"15199":3,"15200":3,"15201":5,"15202":4,"15203":7,"15204":5,"15205":3,"15206":2,"15207":5,"15208":2,"15209":4,"15210":5,"15211":7,"15212":4,"15213":4,"15214":3,"15215":5,"15216":4,"15217":5,"15218":4,"15219":3,"15220":7,"15221":4,"15222":3,"15223":7,"15224":2,"15225":4,"15226":7,"15227":1,"15228":4,"15229":3,"15230":5,"15231":3,"15232":5,"15233":3,"15234":7,"15235":5,"15236":3,"15237":1,"15238":2,"15239":3,"15240":5,"15241":5,"15242":6,"15243":2,"15244":5,"15245":7,"15246":3,"15247":3,"15248":3,"15249":1,"15250":5,"15251":3,"15252":3,"15253":4,"15254":7,"15255":4,"15256":3,"15257":4,"15258":4,"15259":4,"15260":1,"15261":4,"15262":4,"15263":4,"15264":4,"15265":5,"15266":4,"15267":2,"15268":8,"15269":4,"15270":4,"15271":5,"15272":8,"15273":3,"15274":1,"15275":4,"15276":3,"15277":4,"15278":4,"15279":3,"15280":3,"15281":4,"15282":4,"15283":7,"15284":5,"15285":4,"15286":5,"15287":3,"15288":5,"15289":5,"15290":5,"15291":4,"15292":5,"15293":6,"15294":1,"15295":1,"15296":3,"15297":2,"15298":4,"15299":4,"15300":2,"15301":4,"15302":3,"15303":7,"15304":5,"15305":3,"15306":4,"15307":4,"15308":4,"15309":4,"15310":2,"15311":3,"15312":3,"15313":5,"15314":4,"15315":9,"15316":4,"15317":3,"15318":5,"15319":3,"15320":4,"15321":3,"15322":3,"15323":5,"15324":7,"15325":4,"15326":9,"15327":4,"15328":1,"15329":5,"15330":4,"15331":3,"15332":4,"15333":4,"15334":3,"15335":6,"15336":5,"15337":5,"15338":3,"15339":2,"15340":5,"15341":3,"15342":5,"15343":4,"15344":4,"15345":3,"15346":3,"15347":2,"15348":5,"15349":3,"15350":2,"15351":2,"15352":4,"15353":4,"15354":4,"15355":3,"15356":5,"15357":6,"15358":4,"15359":4,"15360":5,"15361":2,"15362":1,"15363":2,"15364":2,"15365":3,"15366":3,"15367":3,"15368":8,"15369":2,"15370":3,"15371":3,"15372":3,"15373":4,"15374":3,"15375":2,"15376":4,"15377":1,"15378":1,"15379":3,"15380":3,"15381":4,"15382":4,"15383":9,"15384":3,"15385":4,"15386":3,"15387":2,"15388":4,"15389":3,"15390":4,"15391":6,"15392":3,"15393":5,"15394":6,"15395":4,"15396":4,"15397":5,"15398":3,"15399":6,"15400":2,"15401":4,"15402":1,"15403":4,"15404":5,"15405":6,"15406":3,"15407":5,"15408":5,"15409":3,"15410":3,"15411":7,"15412":4,"15413":1,"15414":5,"15415":4,"15416":7,"15417":4,"15418":5,"15419":1,"15420":8,"15421":6,"15422":2,"15423":4,"15424":3,"15425":1,"15426":3,"15427":8,"15428":4,"15429":6,"15430":5,"15431":2,"15432":9,"15433":3,"15434":3,"15435":3,"15436":7,"15437":4,"15438":3,"15439":3,"15440":4,"15441":4,"15442":3,"15443":4,"15444":6,"15445":5,"15446":6,"15447":2,"15448":4,"15449":4,"15450":3,"15451":3,"15452":5,"15453":6,"15454":2,"15455":5,"15456":4,"15457":2,"15458":4,"15459":5,"15460":4,"15461":5,"15462":3,"15463":4,"15464":5,"15465":3,"15466":3,"15467":4,"15468":7,"15469":1,"15470":5,"15471":3,"15472":3,"15473":3,"15474":3,"15475":3,"15476":4,"15477":4,"15478":3,"15479":3,"15480":2,"15481":2,"15482":4,"15483":4,"15484":4,"15485":4,"15486":7,"15487":3,"15488":2,"15489":4,"15490":5,"15491":3,"15492":3,"15493":4,"15494":2,"15495":2,"15496":4,"15497":2,"15498":4,"15499":4,"15500":3,"15501":4,"15502":4,"15503":3,"15504":4,"15505":4,"15506":2,"15507":4,"15508":3,"15509":7,"15510":3,"15511":4,"15512":6,"15513":3,"15514":3,"15515":2,"15516":5,"15517":4,"15518":9,"15519":2,"15520":2,"15521":4,"15522":9,"15523":3,"15524":4,"15525":3,"15526":2,"15527":2,"15528":3,"15529":9,"15530":4,"15531":5,"15532":4,"15533":4,"15534":4,"15535":3,"15536":3,"15537":5,"15538":3,"15539":7,"15540":5,"15541":4,"15542":4,"15543":3,"15544":4,"15545":5,"15546":4,"15547":3,"15548":4,"15549":3,"15550":5,"15551":4,"15552":4,"15553":3,"15554":4,"15555":2,"15556":3,"15557":3,"15558":2,"15559":4,"15560":3,"15561":4,"15562":4,"15563":3,"15564":2,"15565":5,"15566":3,"15567":3,"15568":6,"15569":4,"15570":1,"15571":6,"15572":3,"15573":3,"15574":5,"15575":5,"15576":5,"15577":2,"15578":4,"15579":2,"15580":3,"15581":5,"15582":3,"15583":4,"15584":3,"15585":4,"15586":4,"15587":3,"15588":3,"15589":4,"15590":2,"15591":5,"15592":2,"15593":7,"15594":1,"15595":5,"15596":3,"15597":4,"15598":2,"15599":5,"15600":2,"15601":3,"15602":5,"15603":3,"15604":4,"15605":3,"15606":1,"15607":3,"15608":3,"15609":4,"15610":5,"15611":6,"15612":4,"15613":6,"15614":5,"15615":3,"15616":3,"15617":4,"15618":3,"15619":5,"15620":1,"15621":3,"15622":5,"15623":3,"15624":5,"15625":4,"15626":9,"15627":3,"15628":4,"15629":3,"15630":5,"15631":1,"15632":4,"15633":5,"15634":2,"15635":5,"15636":3,"15637":5,"15638":1,"15639":1,"15640":4,"15641":3,"15642":2,"15643":4,"15644":6,"15645":3,"15646":2,"15647":4,"15648":5,"15649":4,"15650":3,"15651":4,"15652":4,"15653":1,"15654":1,"15655":3,"15656":3,"15657":6,"15658":1,"15659":4,"15660":4,"15661":4,"15662":5,"15663":5,"15664":3,"15665":5,"15666":3,"15667":7,"15668":2,"15669":5,"15670":9,"15671":3,"15672":4,"15673":6,"15674":2,"15675":2,"15676":7,"15677":6,"15678":3,"15679":3,"15680":4,"15681":4,"15682":3,"15683":3,"15684":3,"15685":3,"15686":4,"15687":4,"15688":4,"15689":3,"15690":3,"15691":5,"15692":1,"15693":5,"15694":4,"15695":5,"15696":4,"15697":4,"15698":2,"15699":6,"15700":4,"15701":3,"15702":3,"15703":4,"15704":7,"15705":3,"15706":4,"15707":2,"15708":3,"15709":5,"15710":4,"15711":5,"15712":4,"15713":4,"15714":3,"15715":4,"15716":4,"15717":5,"15718":3,"15719":2,"15720":4,"15721":5,"15722":2,"15723":2,"15724":5,"15725":4,"15726":3,"15727":8,"15728":4,"15729":5,"15730":4,"15731":7,"15732":3,"15733":4,"15734":4,"15735":4,"15736":5,"15737":2,"15738":7,"15739":3,"15740":3,"15741":3,"15742":4,"15743":2,"15744":2,"15745":2,"15746":3,"15747":6,"15748":2,"15749":3,"15750":2,"15751":6,"15752":2,"15753":3,"15754":3,"15755":3,"15756":1,"15757":3,"15758":7,"15759":3,"15760":2,"15761":1,"15762":4,"15763":5,"15764":3,"15765":9,"15766":6,"15767":4,"15768":4,"15769":3,"15770":7,"15771":5,"15772":4,"15773":5,"15774":4,"15775":4,"15776":3,"15777":3,"15778":3,"15779":9,"15780":5,"15781":1,"15782":5,"15783":4,"15784":9,"15785":4,"15786":4,"15787":7,"15788":4,"15789":4,"15790":3,"15791":3,"15792":3,"15793":4,"15794":3,"15795":4,"15796":3,"15797":9,"15798":7,"15799":4,"15800":5,"15801":3,"15802":4,"15803":5,"15804":4,"15805":8,"15806":7,"15807":5,"15808":6,"15809":5,"15810":2,"15811":9,"15812":5,"15813":4,"15814":4,"15815":7,"15816":1,"15817":4,"15818":3,"15819":5,"15820":8,"15821":5,"15822":4,"15823":5,"15824":3,"15825":4,"15826":4,"15827":6,"15828":7,"15829":8,"15830":4,"15831":9,"15832":3,"15833":1,"15834":3,"15835":4,"15836":4,"15837":5,"15838":5,"15839":3,"15840":5,"15841":4,"15842":5,"15843":1,"15844":5,"15845":4,"15846":3,"15847":2,"15848":2,"15849":8,"15850":3,"15851":3,"15852":5,"15853":2,"15854":5,"15855":2,"15856":3,"15857":3,"15858":4,"15859":3,"15860":3,"15861":3,"15862":6,"15863":4,"15864":4,"15865":6,"15866":3,"15867":2,"15868":5,"15869":4,"15870":3,"15871":3,"15872":4,"15873":4,"15874":2,"15875":3,"15876":3,"15877":4,"15878":2,"15879":3,"15880":4,"15881":3,"15882":4,"15883":7,"15884":4,"15885":3,"15886":3,"15887":5,"15888":4,"15889":4,"15890":2,"15891":6,"15892":3,"15893":3,"15894":3,"15895":3,"15896":4,"15897":1,"15898":2,"15899":4,"15900":4,"15901":2,"15902":5,"15903":3,"15904":2,"15905":5,"15906":3,"15907":7,"15908":3,"15909":4,"15910":6,"15911":8,"15912":3,"15913":5,"15914":6,"15915":2,"15916":2,"15917":3,"15918":4,"15919":2,"15920":2,"15921":2,"15922":1,"15923":4,"15924":4,"15925":4,"15926":5,"15927":3,"15928":3,"15929":3,"15930":3,"15931":2,"15932":2,"15933":2,"15934":3,"15935":1,"15936":4,"15937":6,"15938":3,"15939":5,"15940":6,"15941":2,"15942":4,"15943":5,"15944":3,"15945":6,"15946":3,"15947":4,"15948":9,"15949":8,"15950":6,"15951":4,"15952":4,"15953":2,"15954":7,"15955":1,"15956":3,"15957":5,"15958":8,"15959":6,"15960":2,"15961":6,"15962":6,"15963":3,"15964":5,"15965":3,"15966":4,"15967":4,"15968":3,"15969":3,"15970":3,"15971":1,"15972":4,"15973":4,"15974":5,"15975":3,"15976":6,"15977":5,"15978":4,"15979":3,"15980":2,"15981":3,"15982":3,"15983":4,"15984":4,"15985":2,"15986":3,"15987":5,"15988":6,"15989":9,"15990":2,"15991":4,"15992":7,"15993":4,"15994":3,"15995":7,"15996":3,"15997":5,"15998":3,"15999":3,"16000":4,"16001":4,"16002":3,"16003":3,"16004":3,"16005":7,"16006":3,"16007":6,"16008":4,"16009":4,"16010":5,"16011":3,"16012":5,"16013":3,"16014":3,"16015":4,"16016":3,"16017":8,"16018":2,"16019":3,"16020":4,"16021":5,"16022":3,"16023":4,"16024":5,"16025":7,"16026":6,"16027":1,"16028":8,"16029":7,"16030":4,"16031":5,"16032":3,"16033":2,"16034":6,"16035":3,"16036":4,"16037":4,"16038":4,"16039":1,"16040":4,"16041":5,"16042":4,"16043":2,"16044":5,"16045":3,"16046":6,"16047":4,"16048":5,"16049":5,"16050":5,"16051":3,"16052":4,"16053":3,"16054":3,"16055":4,"16056":1,"16057":4,"16058":3,"16059":8,"16060":8,"16061":3,"16062":1,"16063":5,"16064":8,"16065":2,"16066":4,"16067":4,"16068":4,"16069":9,"16070":5,"16071":4,"16072":3,"16073":4,"16074":4,"16075":4,"16076":3,"16077":3,"16078":2,"16079":4,"16080":5,"16081":8,"16082":8,"16083":4,"16084":3,"16085":4,"16086":4,"16087":4,"16088":2,"16089":3,"16090":7,"16091":2,"16092":4,"16093":8,"16094":3,"16095":3,"16096":4,"16097":5,"16098":4,"16099":9,"16100":4,"16101":4,"16102":2,"16103":3,"16104":1,"16105":3,"16106":4,"16107":3,"16108":3,"16109":1,"16110":4,"16111":4,"16112":5,"16113":4,"16114":3,"16115":4,"16116":3,"16117":3,"16118":2,"16119":5,"16120":2,"16121":3,"16122":3,"16123":5,"16124":5,"16125":6,"16126":4,"16127":4,"16128":1,"16129":1,"16130":4,"16131":1,"16132":1,"16133":4,"16134":3,"16135":4,"16136":3,"16137":4,"16138":8,"16139":3,"16140":3,"16141":4,"16142":7,"16143":5,"16144":3,"16145":8,"16146":3,"16147":8,"16148":5,"16149":4,"16150":3,"16151":5,"16152":5,"16153":4,"16154":7,"16155":6,"16156":6,"16157":5,"16158":4,"16159":4,"16160":4,"16161":4,"16162":5,"16163":6,"16164":4,"16165":9,"16166":3,"16167":3,"16168":2,"16169":4,"16170":3,"16171":3,"16172":5,"16173":5,"16174":3,"16175":4,"16176":3,"16177":3,"16178":1,"16179":1,"16180":4,"16181":4,"16182":4,"16183":4,"16184":5,"16185":4,"16186":5,"16187":3,"16188":4,"16189":3,"16190":9,"16191":3,"16192":4,"16193":5,"16194":3,"16195":3,"16196":5,"16197":5,"16198":3,"16199":1,"16200":1,"16201":4,"16202":5,"16203":3,"16204":5,"16205":7,"16206":4,"16207":5,"16208":5,"16209":3,"16210":3,"16211":4,"16212":4,"16213":4,"16214":3,"16215":6,"16216":4,"16217":4,"16218":5,"16219":4,"16220":3,"16221":3,"16222":5,"16223":4,"16224":3,"16225":5,"16226":2,"16227":2,"16228":3,"16229":3,"16230":3,"16231":3,"16232":8,"16233":4,"16234":9,"16235":3,"16236":2,"16237":4,"16238":1,"16239":3,"16240":3,"16241":4,"16242":4,"16243":5,"16244":4,"16245":3,"16246":6,"16247":5,"16248":2,"16249":3,"16250":1,"16251":7,"16252":3,"16253":3,"16254":4,"16255":3,"16256":6,"16257":7,"16258":2,"16259":4,"16260":3,"16261":4,"16262":4,"16263":3,"16264":6,"16265":4,"16266":4,"16267":7,"16268":5,"16269":5,"16270":5,"16271":3,"16272":5,"16273":4,"16274":4,"16275":2,"16276":3,"16277":5,"16278":4,"16279":1,"16280":4,"16281":5,"16282":3,"16283":5,"16284":6,"16285":4,"16286":5,"16287":4,"16288":4,"16289":5,"16290":1,"16291":4,"16292":1,"16293":3,"16294":2,"16295":4,"16296":4,"16297":4,"16298":3,"16299":9,"16300":4,"16301":4,"16302":3,"16303":3,"16304":4,"16305":4,"16306":3,"16307":4,"16308":3,"16309":4,"16310":2,"16311":3,"16312":2,"16313":3,"16314":4,"16315":3,"16316":3,"16317":2,"16318":1,"16319":5,"16320":7,"16321":2,"16322":4,"16323":2,"16324":3,"16325":5,"16326":4,"16327":5,"16328":7,"16329":5,"16330":2,"16331":3,"16332":2,"16333":7,"16334":2,"16335":2,"16336":6,"16337":5,"16338":3,"16339":3,"16340":6,"16341":7,"16342":2,"16343":4,"16344":3,"16345":3,"16346":7,"16347":5,"16348":5,"16349":8,"16350":4,"16351":3,"16352":4,"16353":2,"16354":8,"16355":9,"16356":4,"16357":4,"16358":4,"16359":4,"16360":4,"16361":3,"16362":4,"16363":3,"16364":3,"16365":5,"16366":4,"16367":3,"16368":5,"16369":3,"16370":9,"16371":5,"16372":6,"16373":4,"16374":2,"16375":2,"16376":4,"16377":4,"16378":7,"16379":3,"16380":4,"16381":7,"16382":2,"16383":5,"16384":8,"16385":1,"16386":9,"16387":4,"16388":3,"16389":5,"16390":3,"16391":4,"16392":4,"16393":4,"16394":1,"16395":4,"16396":6,"16397":4,"16398":1,"16399":5,"16400":3,"16401":4,"16402":3,"16403":5,"16404":4,"16405":9,"16406":6,"16407":5,"16408":3,"16409":4,"16410":3,"16411":8,"16412":4,"16413":3,"16414":4,"16415":3,"16416":5,"16417":4,"16418":3,"16419":1,"16420":4,"16421":6,"16422":3,"16423":4,"16424":7,"16425":5,"16426":5,"16427":3,"16428":2,"16429":6,"16430":9,"16431":3,"16432":3,"16433":8,"16434":2,"16435":5,"16436":3,"16437":8,"16438":4,"16439":4,"16440":4,"16441":6,"16442":4,"16443":5,"16444":3,"16445":3,"16446":3,"16447":5,"16448":1,"16449":4,"16450":4,"16451":3,"16452":3,"16453":5,"16454":7,"16455":4,"16456":4,"16457":5,"16458":8,"16459":6,"16460":4,"16461":3,"16462":4,"16463":2,"16464":5,"16465":4,"16466":4,"16467":3,"16468":4,"16469":3,"16470":4,"16471":3,"16472":3,"16473":4,"16474":4,"16475":3,"16476":3,"16477":3,"16478":4,"16479":3,"16480":7,"16481":4,"16482":3,"16483":2,"16484":7,"16485":7,"16486":4,"16487":3,"16488":4,"16489":3,"16490":4,"16491":4,"16492":4,"16493":4,"16494":2,"16495":5,"16496":4,"16497":5,"16498":5,"16499":4,"16500":4,"16501":3,"16502":4,"16503":4,"16504":2,"16505":6,"16506":2,"16507":5,"16508":3,"16509":4,"16510":4,"16511":4,"16512":2,"16513":7,"16514":3,"16515":3,"16516":4,"16517":3,"16518":5,"16519":3,"16520":4,"16521":1,"16522":5,"16523":4,"16524":7,"16525":3,"16526":4,"16527":4,"16528":4,"16529":4,"16530":3,"16531":2,"16532":1,"16533":5,"16534":3,"16535":7,"16536":6,"16537":3,"16538":4,"16539":2,"16540":3,"16541":8,"16542":1,"16543":3,"16544":4,"16545":5,"16546":3,"16547":1,"16548":5,"16549":3,"16550":4,"16551":6,"16552":4,"16553":4,"16554":4,"16555":5,"16556":2,"16557":5,"16558":4,"16559":5,"16560":3,"16561":5,"16562":9,"16563":4,"16564":2,"16565":5,"16566":4,"16567":8,"16568":3,"16569":3,"16570":2,"16571":3,"16572":6,"16573":5,"16574":4,"16575":4,"16576":2,"16577":4,"16578":4,"16579":5,"16580":4,"16581":3,"16582":4,"16583":1,"16584":5,"16585":4,"16586":4,"16587":4,"16588":5,"16589":9,"16590":2,"16591":8,"16592":7,"16593":4,"16594":2,"16595":4,"16596":4,"16597":4,"16598":4,"16599":4,"16600":4,"16601":3,"16602":4,"16603":5,"16604":3,"16605":2,"16606":2,"16607":4,"16608":4,"16609":5,"16610":1,"16611":3,"16612":3,"16613":3,"16614":2,"16615":4,"16616":7,"16617":6,"16618":5,"16619":3,"16620":4,"16621":5,"16622":4,"16623":3,"16624":4,"16625":5,"16626":4,"16627":3,"16628":5,"16629":4,"16630":9,"16631":4,"16632":3,"16633":6,"16634":6,"16635":4,"16636":1,"16637":2,"16638":3,"16639":6,"16640":2,"16641":7,"16642":4,"16643":5,"16644":3,"16645":2,"16646":5,"16647":2,"16648":5,"16649":5,"16650":4,"16651":4,"16652":4,"16653":5,"16654":4,"16655":3,"16656":2,"16657":5,"16658":2,"16659":2,"16660":3,"16661":4,"16662":3,"16663":4,"16664":2,"16665":4,"16666":4,"16667":3,"16668":2,"16669":4,"16670":4,"16671":3,"16672":4,"16673":5,"16674":4,"16675":4,"16676":2,"16677":5,"16678":4,"16679":4,"16680":4,"16681":3,"16682":5,"16683":5,"16684":5,"16685":4,"16686":5,"16687":4,"16688":6,"16689":5,"16690":4,"16691":3,"16692":4,"16693":4,"16694":3,"16695":4,"16696":3,"16697":2,"16698":5,"16699":2,"16700":4,"16701":2,"16702":5,"16703":7,"16704":3,"16705":3,"16706":2,"16707":2,"16708":8,"16709":6,"16710":4,"16711":4,"16712":3,"16713":5,"16714":5,"16715":2,"16716":6,"16717":5,"16718":3,"16719":4,"16720":4,"16721":3,"16722":6,"16723":4,"16724":2,"16725":4,"16726":2,"16727":1,"16728":4,"16729":4,"16730":4,"16731":5,"16732":4,"16733":4,"16734":4,"16735":2,"16736":8,"16737":7,"16738":4,"16739":5,"16740":3,"16741":3,"16742":3,"16743":5,"16744":4,"16745":3,"16746":4,"16747":7,"16748":4,"16749":3,"16750":4,"16751":7,"16752":5,"16753":8,"16754":2,"16755":2,"16756":7,"16757":1,"16758":4,"16759":4,"16760":4,"16761":4,"16762":6,"16763":6,"16764":3,"16765":4,"16766":4,"16767":3,"16768":3,"16769":4,"16770":4,"16771":2,"16772":2,"16773":6,"16774":6,"16775":4,"16776":5,"16777":4,"16778":5,"16779":3,"16780":4,"16781":4,"16782":5,"16783":7,"16784":5,"16785":4,"16786":3,"16787":5,"16788":3,"16789":6,"16790":3,"16791":3,"16792":4,"16793":7,"16794":4,"16795":4,"16796":7,"16797":6,"16798":4,"16799":7,"16800":5,"16801":4,"16802":2,"16803":3,"16804":3,"16805":4,"16806":7,"16807":9,"16808":3,"16809":4,"16810":4,"16811":6,"16812":1,"16813":3,"16814":4,"16815":4,"16816":4,"16817":2,"16818":4,"16819":3,"16820":2,"16821":4,"16822":4,"16823":6,"16824":3,"16825":3,"16826":3,"16827":3,"16828":2,"16829":4,"16830":3,"16831":3,"16832":2,"16833":3,"16834":3,"16835":5,"16836":4,"16837":3,"16838":7,"16839":5,"16840":5,"16841":5,"16842":3,"16843":4,"16844":3,"16845":4,"16846":5,"16847":4,"16848":1,"16849":6,"16850":4,"16851":4,"16852":8,"16853":4,"16854":3,"16855":4,"16856":3,"16857":4,"16858":8,"16859":4,"16860":1,"16861":4,"16862":2,"16863":3,"16864":5,"16865":6,"16866":4,"16867":4,"16868":4,"16869":1,"16870":8,"16871":3,"16872":3,"16873":4,"16874":6,"16875":1,"16876":6,"16877":4,"16878":3,"16879":2,"16880":1,"16881":1,"16882":6,"16883":1,"16884":5,"16885":3,"16886":6,"16887":4,"16888":2,"16889":3,"16890":5,"16891":6,"16892":4,"16893":4,"16894":6,"16895":5,"16896":4,"16897":7,"16898":1,"16899":4,"16900":5,"16901":9,"16902":3,"16903":4,"16904":3,"16905":8,"16906":3,"16907":4,"16908":3,"16909":3,"16910":4,"16911":4,"16912":2,"16913":3,"16914":4,"16915":3,"16916":5,"16917":5,"16918":1,"16919":2,"16920":7,"16921":4,"16922":6,"16923":4,"16924":6,"16925":7,"16926":4,"16927":4,"16928":2,"16929":1,"16930":5,"16931":3,"16932":2,"16933":3,"16934":3,"16935":4,"16936":3,"16937":2,"16938":4,"16939":3,"16940":6,"16941":4,"16942":4,"16943":5,"16944":6,"16945":5,"16946":4,"16947":3,"16948":5,"16949":5,"16950":5,"16951":3,"16952":4,"16953":7,"16954":4,"16955":7,"16956":5,"16957":4,"16958":4,"16959":4,"16960":4,"16961":3,"16962":4,"16963":2,"16964":4,"16965":8,"16966":4,"16967":5,"16968":7,"16969":4,"16970":7,"16971":3,"16972":4,"16973":4,"16974":4,"16975":3,"16976":4,"16977":5,"16978":3,"16979":9,"16980":3,"16981":4,"16982":3,"16983":3,"16984":3,"16985":4,"16986":3,"16987":3,"16988":1,"16989":4,"16990":7,"16991":7,"16992":3,"16993":2,"16994":5,"16995":2,"16996":4,"16997":4,"16998":2,"16999":1,"17000":3,"17001":2,"17002":2,"17003":5,"17004":6,"17005":3,"17006":7,"17007":4,"17008":4,"17009":6,"17010":4,"17011":4,"17012":6,"17013":3,"17014":5,"17015":1,"17016":5,"17017":4,"17018":3,"17019":2,"17020":3,"17021":4,"17022":2,"17023":2,"17024":4,"17025":2,"17026":3,"17027":3,"17028":7,"17029":4,"17030":4,"17031":6,"17032":4,"17033":4,"17034":6,"17035":4,"17036":1,"17037":4,"17038":4,"17039":4,"17040":4,"17041":3,"17042":5,"17043":4,"17044":5,"17045":5,"17046":3,"17047":7,"17048":4,"17049":4,"17050":3,"17051":2,"17052":2,"17053":5,"17054":5,"17055":2,"17056":4,"17057":4,"17058":4,"17059":4,"17060":3,"17061":3,"17062":2,"17063":7,"17064":2,"17065":2,"17066":3,"17067":3,"17068":3,"17069":3,"17070":4,"17071":4,"17072":4,"17073":7,"17074":4,"17075":1,"17076":4,"17077":6,"17078":4,"17079":4,"17080":3,"17081":4,"17082":4,"17083":5,"17084":4,"17085":3,"17086":5,"17087":5,"17088":5,"17089":5,"17090":4,"17091":6,"17092":3,"17093":2,"17094":7,"17095":5,"17096":3,"17097":3,"17098":4,"17099":4,"17100":4,"17101":4,"17102":2,"17103":4,"17104":5,"17105":5,"17106":7,"17107":4,"17108":5,"17109":4,"17110":4,"17111":3,"17112":4,"17113":5,"17114":3,"17115":7,"17116":1,"17117":7,"17118":7,"17119":3,"17120":3,"17121":5,"17122":3,"17123":4,"17124":3,"17125":5,"17126":4,"17127":3,"17128":5,"17129":4,"17130":5,"17131":4,"17132":4,"17133":1,"17134":1,"17135":3,"17136":1,"17137":4,"17138":9,"17139":4,"17140":1,"17141":4,"17142":4,"17143":6,"17144":5,"17145":3,"17146":4,"17147":8,"17148":3,"17149":3,"17150":3,"17151":4,"17152":3,"17153":4,"17154":4,"17155":8,"17156":5,"17157":4,"17158":2,"17159":2,"17160":6,"17161":2,"17162":2,"17163":5,"17164":2,"17165":3,"17166":3,"17167":6,"17168":1,"17169":3,"17170":2,"17171":3,"17172":4,"17173":3,"17174":4,"17175":4,"17176":4,"17177":8,"17178":4,"17179":4,"17180":4,"17181":5,"17182":4,"17183":4,"17184":8,"17185":3,"17186":2,"17187":4,"17188":5,"17189":5,"17190":3,"17191":3,"17192":7,"17193":1,"17194":9,"17195":1,"17196":5,"17197":5,"17198":3,"17199":3,"17200":5,"17201":4,"17202":1,"17203":8,"17204":4,"17205":5,"17206":8,"17207":4,"17208":3,"17209":3,"17210":4,"17211":9,"17212":1,"17213":4,"17214":8,"17215":7,"17216":3,"17217":5,"17218":3,"17219":3,"17220":4,"17221":4,"17222":4,"17223":3,"17224":7,"17225":4,"17226":4,"17227":4,"17228":4,"17229":4,"17230":3,"17231":5,"17232":2,"17233":4,"17234":5,"17235":4,"17236":4,"17237":5,"17238":3,"17239":4,"17240":2,"17241":3,"17242":4,"17243":4,"17244":1,"17245":7,"17246":7,"17247":5,"17248":3,"17249":1,"17250":3,"17251":5,"17252":4,"17253":4,"17254":4,"17255":6,"17256":4,"17257":1,"17258":5,"17259":3,"17260":4,"17261":4,"17262":5,"17263":3,"17264":2,"17265":7,"17266":4,"17267":4,"17268":6,"17269":5,"17270":5,"17271":2,"17272":8,"17273":4,"17274":3,"17275":3,"17276":4,"17277":4,"17278":6,"17279":6,"17280":5,"17281":6,"17282":4,"17283":4,"17284":2,"17285":3,"17286":4,"17287":5,"17288":5,"17289":3,"17290":3,"17291":3,"17292":3,"17293":4,"17294":3,"17295":8,"17296":4,"17297":4,"17298":4,"17299":3,"17300":3,"17301":5,"17302":4,"17303":2,"17304":3,"17305":7,"17306":4,"17307":5,"17308":3,"17309":7,"17310":7,"17311":8,"17312":6,"17313":3,"17314":3,"17315":3,"17316":7,"17317":7,"17318":4,"17319":4,"17320":5,"17321":3,"17322":4,"17323":4,"17324":3,"17325":4,"17326":6,"17327":3,"17328":3,"17329":3,"17330":6,"17331":4,"17332":4,"17333":5,"17334":3,"17335":4,"17336":1,"17337":3,"17338":4,"17339":3,"17340":5,"17341":3,"17342":3,"17343":7,"17344":3,"17345":4,"17346":3,"17347":7,"17348":8,"17349":5,"17350":2,"17351":5,"17352":4,"17353":4,"17354":6,"17355":1,"17356":4,"17357":4,"17358":6,"17359":5,"17360":6,"17361":6,"17362":5,"17363":1,"17364":4,"17365":5,"17366":3,"17367":5,"17368":3,"17369":4,"17370":9,"17371":4,"17372":2,"17373":3,"17374":7,"17375":5,"17376":3,"17377":5,"17378":3,"17379":4,"17380":5,"17381":5,"17382":3,"17383":3,"17384":4,"17385":3,"17386":8,"17387":6,"17388":5,"17389":5,"17390":4,"17391":4,"17392":3,"17393":5,"17394":2,"17395":8,"17396":4,"17397":3,"17398":4,"17399":3,"17400":1,"17401":5,"17402":5,"17403":3,"17404":4,"17405":4,"17406":4,"17407":5,"17408":5,"17409":3,"17410":4,"17411":3,"17412":6,"17413":4,"17414":4,"17415":4,"17416":3,"17417":4,"17418":5,"17419":7,"17420":4,"17421":4,"17422":4,"17423":4,"17424":4,"17425":3,"17426":9,"17427":3,"17428":5,"17429":7,"17430":4,"17431":5,"17432":3,"17433":3,"17434":4,"17435":3,"17436":5,"17437":3,"17438":4,"17439":4,"17440":3,"17441":3,"17442":4,"17443":5,"17444":3,"17445":7,"17446":2,"17447":4,"17448":4,"17449":6,"17450":4,"17451":5,"17452":3,"17453":1,"17454":9,"17455":5,"17456":2,"17457":5,"17458":5,"17459":1,"17460":3,"17461":4,"17462":5,"17463":3,"17464":4,"17465":4,"17466":3,"17467":8,"17468":5,"17469":3,"17470":3,"17471":5,"17472":1,"17473":4,"17474":3,"17475":5,"17476":3,"17477":1,"17478":3,"17479":3,"17480":7,"17481":4,"17482":5,"17483":5,"17484":4,"17485":3,"17486":6,"17487":4,"17488":5,"17489":5,"17490":9,"17491":7,"17492":2,"17493":3,"17494":4,"17495":4,"17496":3,"17497":2,"17498":8,"17499":5,"17500":5,"17501":3,"17502":1,"17503":7,"17504":4,"17505":1,"17506":1,"17507":5,"17508":7,"17509":3,"17510":3,"17511":1,"17512":5,"17513":4,"17514":5,"17515":3,"17516":4,"17517":3,"17518":3,"17519":5,"17520":2,"17521":4,"17522":5,"17523":7,"17524":5,"17525":5,"17526":5,"17527":5,"17528":3,"17529":3,"17530":5,"17531":4,"17532":5,"17533":2,"17534":3,"17535":4,"17536":3,"17537":3,"17538":3,"17539":5,"17540":2,"17541":7,"17542":3,"17543":2,"17544":3,"17545":3,"17546":3,"17547":4,"17548":3,"17549":3,"17550":3,"17551":5,"17552":3,"17553":4,"17554":1,"17555":3,"17556":3,"17557":4,"17558":5,"17559":4,"17560":4,"17561":4,"17562":6,"17563":7,"17564":1,"17565":4,"17566":4,"17567":4,"17568":5,"17569":7,"17570":3,"17571":8,"17572":3,"17573":4,"17574":5,"17575":7,"17576":4,"17577":2,"17578":4,"17579":4,"17580":2,"17581":2,"17582":4,"17583":3,"17584":5,"17585":3,"17586":3,"17587":7,"17588":2,"17589":3,"17590":5,"17591":8,"17592":4,"17593":2,"17594":4,"17595":4,"17596":3,"17597":2,"17598":3,"17599":4,"17600":5,"17601":7,"17602":4,"17603":1,"17604":5,"17605":4,"17606":7,"17607":2,"17608":4,"17609":2,"17610":4,"17611":4,"17612":6,"17613":4,"17614":5,"17615":5,"17616":5,"17617":4,"17618":5,"17619":6,"17620":3,"17621":3,"17622":5,"17623":5,"17624":6,"17625":4,"17626":4,"17627":3,"17628":2,"17629":4,"17630":4,"17631":3,"17632":7,"17633":3,"17634":1,"17635":3,"17636":8,"17637":1,"17638":4,"17639":5,"17640":5,"17641":4,"17642":5,"17643":5,"17644":2,"17645":5,"17646":3,"17647":4,"17648":5,"17649":8,"17650":4,"17651":9,"17652":3,"17653":3,"17654":5,"17655":3,"17656":5,"17657":2,"17658":5,"17659":3,"17660":4,"17661":5,"17662":4,"17663":3,"17664":5,"17665":3,"17666":5,"17667":4,"17668":7,"17669":2,"17670":4,"17671":4,"17672":4,"17673":4,"17674":3,"17675":4,"17676":1,"17677":3,"17678":5,"17679":3,"17680":3,"17681":1,"17682":3,"17683":3,"17684":3,"17685":5,"17686":3,"17687":5,"17688":3,"17689":5,"17690":5,"17691":4,"17692":7,"17693":4,"17694":9,"17695":4,"17696":5,"17697":2,"17698":3,"17699":4,"17700":3,"17701":5,"17702":2,"17703":4,"17704":1,"17705":4,"17706":2,"17707":7,"17708":4,"17709":3,"17710":3,"17711":4,"17712":4,"17713":3,"17714":2,"17715":2,"17716":5,"17717":5,"17718":6,"17719":4,"17720":6,"17721":4,"17722":4,"17723":6,"17724":1,"17725":6,"17726":4,"17727":4,"17728":5,"17729":7,"17730":5,"17731":3,"17732":5,"17733":4,"17734":3,"17735":3,"17736":9,"17737":2,"17738":4,"17739":3,"17740":3,"17741":8,"17742":4,"17743":4,"17744":2,"17745":4,"17746":7,"17747":2,"17748":4,"17749":4,"17750":7,"17751":1,"17752":6,"17753":3,"17754":3,"17755":6,"17756":3,"17757":3,"17758":6,"17759":7,"17760":1,"17761":7,"17762":6,"17763":1,"17764":3,"17765":7,"17766":1,"17767":2,"17768":9,"17769":3,"17770":5,"17771":1,"17772":3,"17773":4,"17774":4,"17775":5,"17776":5,"17777":8,"17778":7,"17779":3,"17780":4,"17781":3,"17782":6,"17783":3,"17784":1,"17785":4,"17786":4,"17787":5,"17788":3,"17789":3,"17790":5,"17791":6,"17792":4,"17793":8,"17794":4,"17795":7,"17796":4,"17797":5,"17798":4,"17799":4,"17800":8,"17801":8,"17802":8,"17803":5,"17804":1,"17805":6,"17806":4,"17807":3,"17808":1,"17809":4,"17810":5,"17811":4,"17812":3,"17813":7,"17814":4,"17815":3,"17816":1,"17817":4,"17818":4,"17819":3,"17820":3,"17821":4,"17822":5,"17823":4,"17824":3,"17825":2,"17826":3,"17827":9,"17828":5,"17829":4,"17830":4,"17831":4,"17832":4,"17833":3,"17834":4,"17835":4,"17836":4,"17837":3,"17838":4,"17839":1,"17840":3,"17841":9,"17842":3,"17843":3,"17844":8,"17845":9,"17846":1,"17847":5,"17848":3,"17849":3,"17850":5,"17851":6,"17852":2,"17853":2,"17854":1,"17855":4,"17856":7,"17857":7,"17858":6,"17859":2,"17860":3,"17861":6,"17862":4,"17863":2,"17864":2,"17865":4,"17866":3,"17867":4,"17868":3,"17869":4,"17870":3,"17871":3,"17872":3,"17873":5,"17874":3,"17875":4,"17876":5,"17877":4,"17878":3,"17879":6,"17880":4,"17881":4,"17882":2,"17883":5,"17884":4,"17885":4,"17886":3,"17887":1,"17888":4,"17889":4,"17890":3,"17891":3,"17892":5,"17893":3,"17894":5,"17895":2,"17896":4,"17897":2,"17898":5,"17899":3,"17900":4,"17901":4,"17902":3,"17903":4,"17904":4,"17905":4,"17906":4,"17907":4,"17908":4,"17909":4,"17910":5,"17911":3,"17912":5,"17913":4,"17914":3,"17915":5,"17916":2,"17917":3,"17918":4,"17919":3,"17920":6,"17921":4,"17922":5,"17923":4,"17924":4,"17925":3,"17926":2,"17927":3,"17928":3,"17929":6,"17930":3,"17931":6,"17932":5,"17933":4,"17934":4,"17935":9,"17936":5,"17937":4,"17938":3,"17939":4,"17940":6,"17941":3,"17942":4,"17943":4,"17944":2,"17945":1,"17946":5,"17947":5,"17948":4,"17949":3,"17950":7,"17951":4,"17952":2,"17953":2,"17954":3,"17955":5,"17956":3,"17957":4,"17958":4,"17959":4,"17960":3,"17961":8,"17962":4,"17963":4,"17964":4,"17965":5,"17966":4,"17967":5,"17968":4,"17969":5,"17970":2,"17971":1,"17972":3,"17973":5,"17974":7,"17975":6,"17976":4,"17977":9,"17978":4,"17979":5,"17980":3,"17981":5,"17982":2,"17983":1,"17984":8,"17985":4,"17986":7,"17987":8,"17988":7,"17989":5,"17990":4,"17991":9,"17992":3,"17993":4,"17994":6,"17995":3,"17996":5,"17997":4,"17998":4,"17999":2,"18000":3,"18001":4,"18002":7,"18003":3,"18004":6,"18005":5,"18006":3,"18007":4,"18008":3,"18009":3,"18010":4,"18011":5,"18012":2,"18013":6,"18014":2,"18015":2,"18016":4,"18017":2,"18018":6,"18019":5,"18020":3,"18021":3,"18022":4,"18023":2,"18024":1,"18025":4,"18026":6,"18027":6,"18028":5,"18029":4,"18030":2,"18031":3,"18032":3,"18033":4,"18034":3,"18035":5,"18036":4,"18037":4,"18038":4,"18039":5,"18040":3,"18041":4,"18042":4,"18043":5,"18044":6,"18045":2,"18046":4,"18047":5,"18048":7,"18049":4,"18050":4,"18051":3,"18052":4,"18053":3,"18054":3,"18055":4,"18056":3,"18057":3,"18058":4,"18059":5,"18060":3,"18061":4,"18062":5,"18063":4,"18064":2,"18065":3,"18066":5,"18067":1,"18068":3,"18069":4,"18070":3,"18071":2,"18072":4,"18073":4,"18074":5,"18075":5,"18076":4,"18077":5,"18078":3,"18079":7,"18080":3,"18081":4,"18082":1,"18083":4,"18084":4,"18085":7,"18086":4,"18087":2,"18088":1,"18089":4,"18090":9,"18091":3,"18092":3,"18093":4,"18094":1,"18095":2,"18096":5,"18097":4,"18098":3,"18099":3,"18100":4,"18101":4,"18102":3,"18103":7,"18104":2,"18105":2,"18106":4,"18107":5,"18108":7,"18109":4,"18110":4,"18111":5,"18112":2,"18113":4,"18114":2,"18115":9,"18116":1,"18117":5,"18118":8,"18119":4,"18120":3,"18121":3,"18122":4,"18123":3,"18124":4,"18125":3,"18126":4,"18127":2,"18128":4,"18129":3,"18130":4,"18131":5,"18132":3,"18133":8,"18134":4,"18135":5,"18136":2,"18137":8,"18138":4,"18139":3,"18140":4,"18141":7,"18142":4,"18143":2,"18144":4,"18145":2,"18146":4,"18147":3,"18148":1,"18149":2,"18150":5,"18151":3,"18152":4,"18153":4,"18154":3,"18155":3,"18156":3,"18157":4,"18158":4,"18159":3,"18160":3,"18161":5,"18162":2,"18163":4,"18164":4,"18165":4,"18166":3,"18167":3,"18168":3,"18169":3,"18170":4,"18171":1,"18172":4,"18173":1,"18174":4,"18175":7,"18176":9,"18177":4,"18178":6,"18179":3,"18180":3,"18181":1,"18182":3,"18183":4,"18184":4,"18185":4,"18186":3,"18187":4,"18188":3,"18189":3,"18190":4,"18191":2,"18192":3,"18193":3,"18194":5,"18195":3,"18196":4,"18197":6,"18198":2,"18199":3,"18200":4,"18201":3,"18202":4,"18203":5,"18204":3,"18205":4,"18206":8,"18207":3,"18208":4,"18209":7,"18210":4,"18211":3,"18212":4,"18213":2,"18214":3,"18215":4,"18216":2,"18217":1,"18218":2,"18219":2,"18220":5,"18221":2,"18222":2,"18223":2,"18224":6,"18225":8,"18226":7,"18227":5,"18228":3,"18229":3,"18230":4,"18231":5,"18232":4,"18233":3,"18234":2,"18235":5,"18236":5,"18237":3,"18238":3,"18239":3,"18240":5,"18241":2,"18242":4,"18243":3,"18244":6,"18245":3,"18246":4,"18247":5,"18248":2,"18249":3,"18250":4,"18251":2,"18252":3,"18253":7,"18254":5,"18255":7,"18256":1,"18257":4,"18258":3,"18259":4,"18260":8,"18261":5,"18262":3,"18263":4,"18264":8,"18265":5,"18266":4,"18267":3,"18268":9,"18269":3,"18270":4,"18271":9,"18272":4,"18273":3,"18274":3,"18275":4,"18276":4,"18277":6,"18278":4,"18279":3,"18280":3,"18281":4,"18282":5,"18283":3,"18284":7,"18285":3,"18286":3,"18287":5,"18288":3,"18289":4,"18290":4,"18291":4,"18292":5,"18293":4,"18294":1,"18295":4,"18296":4,"18297":5,"18298":3,"18299":4,"18300":3,"18301":6,"18302":2,"18303":4,"18304":8,"18305":2,"18306":3,"18307":5,"18308":2,"18309":4,"18310":8,"18311":4,"18312":7,"18313":5,"18314":2,"18315":2,"18316":3,"18317":2,"18318":4,"18319":9,"18320":1,"18321":5,"18322":7,"18323":5,"18324":4,"18325":8,"18326":3,"18327":8,"18328":4,"18329":5,"18330":5,"18331":6,"18332":1,"18333":3,"18334":3,"18335":3,"18336":3,"18337":5,"18338":4,"18339":3,"18340":6,"18341":5,"18342":2,"18343":6,"18344":3,"18345":5,"18346":5,"18347":4,"18348":1,"18349":2,"18350":5,"18351":4,"18352":6,"18353":3,"18354":3,"18355":5,"18356":4,"18357":3,"18358":3,"18359":4},"income":{"0":"lowIncomeA","1":"lowIncomeB","2":"lowIncomeB","3":"lowIncomeB","4":"lowIncomeA","5":"lowIncomeA","6":"lowIncomeA","7":"midIncome","8":"lowIncomeB","9":"lowIncomeB","10":"lowIncomeA","11":"lowIncomeA","12":"lowIncomeA","13":"lowIncomeB","14":"lowIncomeB","15":"lowIncomeB","16":"lowIncomeA","17":"midIncome","18":"lowIncomeB","19":"lowIncomeB","20":"lowIncomeB","21":"midIncome","22":"lowIncomeB","23":"lowIncomeA","24":"lowIncomeA","25":"lowIncomeA","26":"midIncome","27":"lowIncomeA","28":"lowIncomeB","29":"lowIncomeB","30":"lowIncomeB","31":"lowIncomeB","32":"lowIncomeB","33":"lowIncomeB","34":"lowIncomeB","35":"lowIncomeB","36":"lowIncomeA","37":"lowIncomeA","38":"lowIncomeA","39":"lowIncomeA","40":"lowIncomeB","41":"lowIncomeA","42":"lowIncomeB","43":"lowIncomeB","44":"lowIncomeA","45":"lowIncomeA","46":"lowIncomeB","47":"lowIncomeB","48":"lowIncomeA","49":"lowIncomeB","50":"lowIncomeB","51":"midIncome","52":"lowIncomeB","53":"lowIncomeA","54":"lowIncomeB","55":"lowIncomeB","56":"lowIncomeB","57":"lowIncomeA","58":"midIncome","59":"lowIncomeA","60":"lowIncomeA","61":"midIncome","62":"lowIncomeA","63":"lowIncomeB","64":"lowIncomeA","65":"lowIncomeA","66":"lowIncomeA","67":"lowIncomeB","68":"lowIncomeB","69":"lowIncomeB","70":"lowIncomeB","71":"lowIncomeA","72":"lowIncomeB","73":"lowIncomeA","74":"lowIncomeA","75":"lowIncomeA","76":"lowIncomeB","77":"lowIncomeB","78":"midIncome","79":"lowIncomeA","80":"lowIncomeA","81":"lowIncomeA","82":"lowIncomeA","83":"midIncome","84":"lowIncomeB","85":"lowIncomeB","86":"lowIncomeB","87":"midIncome","88":"lowIncomeA","89":"lowIncomeB","90":"lowIncomeA","91":"lowIncomeA","92":"lowIncomeB","93":"lowIncomeB","94":"lowIncomeA","95":"lowIncomeA","96":"lowIncomeB","97":"lowIncomeB","98":"lowIncomeA","99":"lowIncomeB","100":"lowIncomeA","101":"lowIncomeB","102":"midIncome","103":"lowIncomeB","104":"lowIncomeB","105":"midIncome","106":"midIncome","107":"lowIncomeA","108":"midIncome","109":"midIncome","110":"lowIncomeA","111":"lowIncomeA","112":"lowIncomeA","113":"lowIncomeB","114":"lowIncomeB","115":"midIncome","116":"lowIncomeA","117":"lowIncomeB","118":"lowIncomeA","119":"lowIncomeA","120":"lowIncomeA","121":"lowIncomeB","122":"lowIncomeA","123":"midIncome","124":"midIncome","125":"lowIncomeA","126":"lowIncomeB","127":"lowIncomeB","128":"lowIncomeB","129":"lowIncomeB","130":"midIncome","131":"midIncome","132":"midIncome","133":"lowIncomeB","134":"lowIncomeB","135":"midIncome","136":"lowIncomeB","137":"lowIncomeA","138":"lowIncomeA","139":"lowIncomeB","140":"lowIncomeB","141":"midIncome","142":"lowIncomeA","143":"lowIncomeA","144":"lowIncomeB","145":"lowIncomeA","146":"lowIncomeA","147":"midIncome","148":"lowIncomeB","149":"midIncome","150":"lowIncomeA","151":"lowIncomeA","152":"lowIncomeA","153":"lowIncomeA","154":"lowIncomeA","155":"lowIncomeA","156":"lowIncomeA","157":"lowIncomeA","158":"lowIncomeA","159":"lowIncomeA","160":"lowIncomeA","161":"lowIncomeB","162":"lowIncomeA","163":"lowIncomeB","164":"lowIncomeA","165":"lowIncomeB","166":"lowIncomeB","167":"midIncome","168":"lowIncomeA","169":"lowIncomeB","170":"lowIncomeA","171":"midIncome","172":"lowIncomeA","173":"lowIncomeB","174":"lowIncomeA","175":"lowIncomeB","176":"lowIncomeB","177":"lowIncomeB","178":"midIncome","179":"lowIncomeA","180":"lowIncomeA","181":"lowIncomeB","182":"lowIncomeA","183":"lowIncomeB","184":"lowIncomeB","185":"lowIncomeA","186":"lowIncomeA","187":"lowIncomeB","188":"lowIncomeA","189":"lowIncomeB","190":"lowIncomeB","191":"lowIncomeA","192":"lowIncomeA","193":"lowIncomeB","194":"lowIncomeB","195":"lowIncomeB","196":"lowIncomeA","197":"lowIncomeB","198":"lowIncomeB","199":"lowIncomeB","200":"lowIncomeB","201":"lowIncomeB","202":"lowIncomeB","203":"lowIncomeA","204":"lowIncomeB","205":"lowIncomeA","206":"lowIncomeB","207":"lowIncomeB","208":"lowIncomeB","209":"midIncome","210":"lowIncomeB","211":"lowIncomeA","212":"lowIncomeA","213":"lowIncomeB","214":"lowIncomeA","215":"lowIncomeA","216":"lowIncomeB","217":"midIncome","218":"lowIncomeB","219":"lowIncomeA","220":"lowIncomeB","221":"lowIncomeB","222":"lowIncomeB","223":"lowIncomeA","224":"lowIncomeA","225":"lowIncomeA","226":"lowIncomeA","227":"lowIncomeA","228":"lowIncomeB","229":"lowIncomeB","230":"lowIncomeA","231":"lowIncomeB","232":"lowIncomeB","233":"lowIncomeA","234":"lowIncomeB","235":"lowIncomeA","236":"lowIncomeB","237":"lowIncomeB","238":"lowIncomeA","239":"midIncome","240":"lowIncomeA","241":"midIncome","242":"midIncome","243":"lowIncomeA","244":"lowIncomeA","245":"lowIncomeB","246":"lowIncomeB","247":"lowIncomeA","248":"lowIncomeB","249":"lowIncomeB","250":"lowIncomeB","251":"lowIncomeB","252":"lowIncomeA","253":"lowIncomeB","254":"lowIncomeB","255":"lowIncomeB","256":"lowIncomeA","257":"lowIncomeA","258":"lowIncomeB","259":"midIncome","260":"lowIncomeB","261":"lowIncomeB","262":"lowIncomeA","263":"midIncome","264":"lowIncomeB","265":"lowIncomeA","266":"lowIncomeB","267":"lowIncomeA","268":"lowIncomeB","269":"lowIncomeB","270":"lowIncomeB","271":"lowIncomeA","272":"lowIncomeB","273":"lowIncomeA","274":"lowIncomeB","275":"lowIncomeA","276":"lowIncomeA","277":"lowIncomeA","278":"lowIncomeB","279":"lowIncomeA","280":"lowIncomeA","281":"lowIncomeA","282":"midIncome","283":"lowIncomeB","284":"lowIncomeB","285":"lowIncomeA","286":"lowIncomeB","287":"lowIncomeB","288":"lowIncomeA","289":"lowIncomeA","290":"lowIncomeB","291":"lowIncomeA","292":"lowIncomeA","293":"lowIncomeB","294":"lowIncomeB","295":"lowIncomeA","296":"midIncome","297":"lowIncomeB","298":"lowIncomeA","299":"lowIncomeB","300":"lowIncomeB","301":"lowIncomeA","302":"lowIncomeB","303":"lowIncomeB","304":"lowIncomeA","305":"lowIncomeB","306":"lowIncomeB","307":"lowIncomeB","308":"lowIncomeA","309":"lowIncomeA","310":"lowIncomeA","311":"lowIncomeB","312":"lowIncomeA","313":"lowIncomeA","314":"lowIncomeA","315":"lowIncomeA","316":"lowIncomeB","317":"lowIncomeA","318":"lowIncomeB","319":"lowIncomeA","320":"lowIncomeA","321":"lowIncomeB","322":"lowIncomeB","323":"lowIncomeB","324":"lowIncomeB","325":"lowIncomeA","326":"lowIncomeA","327":"lowIncomeB","328":"lowIncomeB","329":"lowIncomeA","330":"lowIncomeB","331":"midIncome","332":"lowIncomeA","333":"lowIncomeA","334":"lowIncomeB","335":"lowIncomeA","336":"lowIncomeB","337":"lowIncomeA","338":"lowIncomeA","339":"lowIncomeB","340":"lowIncomeB","341":"lowIncomeA","342":"lowIncomeA","343":"lowIncomeB","344":"lowIncomeA","345":"lowIncomeB","346":"lowIncomeB","347":"lowIncomeA","348":"lowIncomeB","349":"lowIncomeB","350":"lowIncomeB","351":"lowIncomeB","352":"lowIncomeB","353":"lowIncomeA","354":"lowIncomeB","355":"lowIncomeA","356":"lowIncomeA","357":"lowIncomeA","358":"lowIncomeA","359":"lowIncomeA","360":"lowIncomeA","361":"lowIncomeB","362":"lowIncomeB","363":"lowIncomeB","364":"lowIncomeA","365":"lowIncomeA","366":"lowIncomeA","367":"lowIncomeB","368":"lowIncomeA","369":"lowIncomeB","370":"midIncome","371":"lowIncomeB","372":"lowIncomeA","373":"lowIncomeB","374":"midIncome","375":"lowIncomeB","376":"midIncome","377":"lowIncomeA","378":"lowIncomeA","379":"midIncome","380":"lowIncomeA","381":"lowIncomeA","382":"lowIncomeA","383":"lowIncomeB","384":"lowIncomeA","385":"lowIncomeA","386":"lowIncomeA","387":"lowIncomeB","388":"lowIncomeA","389":"lowIncomeB","390":"midIncome","391":"lowIncomeB","392":"lowIncomeA","393":"lowIncomeB","394":"lowIncomeA","395":"lowIncomeA","396":"lowIncomeA","397":"lowIncomeB","398":"lowIncomeB","399":"lowIncomeB","400":"lowIncomeA","401":"lowIncomeB","402":"lowIncomeB","403":"lowIncomeA","404":"lowIncomeB","405":"lowIncomeB","406":"lowIncomeB","407":"lowIncomeB","408":"lowIncomeB","409":"lowIncomeA","410":"lowIncomeB","411":"midIncome","412":"lowIncomeB","413":"lowIncomeA","414":"lowIncomeA","415":"lowIncomeA","416":"lowIncomeB","417":"lowIncomeA","418":"lowIncomeA","419":"lowIncomeB","420":"midIncome","421":"lowIncomeB","422":"lowIncomeA","423":"lowIncomeA","424":"lowIncomeA","425":"lowIncomeB","426":"midIncome","427":"lowIncomeA","428":"lowIncomeB","429":"lowIncomeB","430":"lowIncomeA","431":"lowIncomeB","432":"lowIncomeA","433":"lowIncomeB","434":"lowIncomeB","435":"midIncome","436":"lowIncomeA","437":"lowIncomeA","438":"lowIncomeA","439":"lowIncomeA","440":"lowIncomeB","441":"lowIncomeA","442":"lowIncomeB","443":"lowIncomeB","444":"lowIncomeA","445":"lowIncomeB","446":"lowIncomeA","447":"lowIncomeB","448":"lowIncomeB","449":"lowIncomeA","450":"lowIncomeA","451":"lowIncomeA","452":"lowIncomeA","453":"lowIncomeA","454":"lowIncomeA","455":"lowIncomeA","456":"lowIncomeA","457":"lowIncomeA","458":"lowIncomeA","459":"lowIncomeB","460":"lowIncomeB","461":"lowIncomeA","462":"lowIncomeB","463":"lowIncomeB","464":"lowIncomeB","465":"midIncome","466":"lowIncomeA","467":"lowIncomeB","468":"lowIncomeB","469":"lowIncomeB","470":"lowIncomeB","471":"lowIncomeA","472":"lowIncomeA","473":"lowIncomeA","474":"midIncome","475":"lowIncomeB","476":"lowIncomeB","477":"lowIncomeA","478":"lowIncomeA","479":"midIncome","480":"lowIncomeA","481":"midIncome","482":"midIncome","483":"lowIncomeB","484":"lowIncomeA","485":"lowIncomeA","486":"lowIncomeA","487":"lowIncomeB","488":"lowIncomeA","489":"lowIncomeA","490":"lowIncomeA","491":"lowIncomeB","492":"lowIncomeA","493":"lowIncomeA","494":"lowIncomeB","495":"lowIncomeA","496":"lowIncomeA","497":"lowIncomeB","498":"lowIncomeA","499":"lowIncomeA","500":"lowIncomeA","501":"lowIncomeA","502":"lowIncomeA","503":"lowIncomeA","504":"lowIncomeA","505":"lowIncomeB","506":"lowIncomeA","507":"lowIncomeA","508":"lowIncomeA","509":"lowIncomeA","510":"lowIncomeB","511":"lowIncomeB","512":"lowIncomeB","513":"lowIncomeB","514":"lowIncomeB","515":"lowIncomeA","516":"lowIncomeA","517":"lowIncomeB","518":"lowIncomeA","519":"lowIncomeA","520":"lowIncomeB","521":"lowIncomeB","522":"lowIncomeA","523":"lowIncomeB","524":"lowIncomeA","525":"lowIncomeA","526":"lowIncomeB","527":"lowIncomeA","528":"lowIncomeA","529":"lowIncomeB","530":"lowIncomeA","531":"lowIncomeA","532":"lowIncomeA","533":"lowIncomeB","534":"lowIncomeB","535":"lowIncomeB","536":"lowIncomeB","537":"lowIncomeA","538":"lowIncomeA","539":"lowIncomeB","540":"lowIncomeA","541":"midIncome","542":"lowIncomeA","543":"midIncome","544":"lowIncomeA","545":"lowIncomeA","546":"midIncome","547":"lowIncomeA","548":"lowIncomeB","549":"lowIncomeA","550":"lowIncomeB","551":"lowIncomeA","552":"lowIncomeA","553":"lowIncomeA","554":"lowIncomeA","555":"lowIncomeA","556":"lowIncomeA","557":"lowIncomeA","558":"lowIncomeA","559":"lowIncomeA","560":"lowIncomeA","561":"lowIncomeA","562":"lowIncomeB","563":"lowIncomeA","564":"lowIncomeA","565":"lowIncomeB","566":"lowIncomeB","567":"lowIncomeA","568":"midIncome","569":"lowIncomeA","570":"lowIncomeA","571":"lowIncomeB","572":"lowIncomeA","573":"lowIncomeB","574":"lowIncomeA","575":"lowIncomeB","576":"lowIncomeA","577":"lowIncomeA","578":"lowIncomeB","579":"lowIncomeB","580":"lowIncomeA","581":"midIncome","582":"lowIncomeB","583":"lowIncomeA","584":"lowIncomeA","585":"lowIncomeB","586":"lowIncomeA","587":"lowIncomeA","588":"midIncome","589":"lowIncomeB","590":"lowIncomeB","591":"lowIncomeA","592":"lowIncomeB","593":"lowIncomeA","594":"lowIncomeA","595":"lowIncomeA","596":"midIncome","597":"lowIncomeB","598":"lowIncomeA","599":"lowIncomeB","600":"lowIncomeB","601":"lowIncomeB","602":"lowIncomeB","603":"lowIncomeA","604":"lowIncomeA","605":"lowIncomeA","606":"lowIncomeB","607":"lowIncomeA","608":"lowIncomeB","609":"lowIncomeB","610":"lowIncomeA","611":"lowIncomeA","612":"lowIncomeA","613":"lowIncomeA","614":"lowIncomeB","615":"lowIncomeA","616":"lowIncomeA","617":"lowIncomeB","618":"lowIncomeA","619":"lowIncomeA","620":"lowIncomeB","621":"midIncome","622":"lowIncomeA","623":"lowIncomeA","624":"lowIncomeA","625":"lowIncomeB","626":"lowIncomeB","627":"lowIncomeA","628":"lowIncomeB","629":"lowIncomeA","630":"lowIncomeA","631":"lowIncomeA","632":"lowIncomeB","633":"lowIncomeA","634":"lowIncomeB","635":"lowIncomeA","636":"midIncome","637":"lowIncomeB","638":"lowIncomeB","639":"midIncome","640":"lowIncomeB","641":"lowIncomeB","642":"lowIncomeB","643":"lowIncomeB","644":"lowIncomeB","645":"lowIncomeA","646":"lowIncomeA","647":"lowIncomeB","648":"midIncome","649":"lowIncomeB","650":"lowIncomeA","651":"lowIncomeB","652":"lowIncomeA","653":"midIncome","654":"lowIncomeA","655":"lowIncomeB","656":"lowIncomeA","657":"lowIncomeA","658":"lowIncomeB","659":"lowIncomeB","660":"lowIncomeA","661":"lowIncomeB","662":"lowIncomeA","663":"lowIncomeA","664":"lowIncomeA","665":"lowIncomeA","666":"lowIncomeA","667":"lowIncomeA","668":"lowIncomeB","669":"lowIncomeB","670":"lowIncomeB","671":"lowIncomeA","672":"lowIncomeB","673":"lowIncomeB","674":"lowIncomeA","675":"lowIncomeA","676":"lowIncomeA","677":"lowIncomeB","678":"lowIncomeB","679":"lowIncomeB","680":"lowIncomeB","681":"lowIncomeB","682":"lowIncomeA","683":"lowIncomeA","684":"lowIncomeA","685":"lowIncomeA","686":"lowIncomeA","687":"lowIncomeA","688":"lowIncomeB","689":"lowIncomeB","690":"lowIncomeB","691":"lowIncomeB","692":"lowIncomeB","693":"lowIncomeB","694":"lowIncomeB","695":"lowIncomeA","696":"lowIncomeB","697":"lowIncomeA","698":"lowIncomeB","699":"midIncome","700":"lowIncomeB","701":"lowIncomeA","702":"lowIncomeA","703":"midIncome","704":"lowIncomeB","705":"lowIncomeA","706":"lowIncomeB","707":"lowIncomeA","708":"midIncome","709":"lowIncomeB","710":"lowIncomeB","711":"lowIncomeA","712":"lowIncomeA","713":"lowIncomeA","714":"lowIncomeA","715":"midIncome","716":"lowIncomeB","717":"lowIncomeA","718":"lowIncomeB","719":"lowIncomeA","720":"lowIncomeA","721":"lowIncomeA","722":"midIncome","723":"midIncome","724":"lowIncomeA","725":"lowIncomeA","726":"lowIncomeA","727":"lowIncomeA","728":"midIncome","729":"lowIncomeA","730":"lowIncomeB","731":"lowIncomeB","732":"lowIncomeA","733":"lowIncomeA","734":"lowIncomeA","735":"midIncome","736":"lowIncomeA","737":"lowIncomeB","738":"lowIncomeA","739":"lowIncomeB","740":"lowIncomeA","741":"lowIncomeA","742":"midIncome","743":"lowIncomeB","744":"lowIncomeB","745":"lowIncomeA","746":"lowIncomeA","747":"lowIncomeA","748":"lowIncomeB","749":"midIncome","750":"midIncome","751":"lowIncomeB","752":"lowIncomeB","753":"lowIncomeB","754":"lowIncomeA","755":"lowIncomeA","756":"lowIncomeB","757":"lowIncomeA","758":"lowIncomeA","759":"midIncome","760":"lowIncomeB","761":"lowIncomeA","762":"lowIncomeA","763":"lowIncomeA","764":"lowIncomeB","765":"lowIncomeA","766":"lowIncomeA","767":"lowIncomeA","768":"lowIncomeB","769":"lowIncomeB","770":"lowIncomeB","771":"lowIncomeB","772":"lowIncomeB","773":"lowIncomeA","774":"lowIncomeB","775":"lowIncomeA","776":"lowIncomeB","777":"lowIncomeA","778":"lowIncomeA","779":"lowIncomeB","780":"lowIncomeA","781":"lowIncomeA","782":"lowIncomeA","783":"lowIncomeA","784":"lowIncomeB","785":"lowIncomeB","786":"lowIncomeB","787":"lowIncomeB","788":"lowIncomeA","789":"lowIncomeB","790":"lowIncomeA","791":"lowIncomeA","792":"lowIncomeA","793":"lowIncomeA","794":"lowIncomeA","795":"lowIncomeB","796":"lowIncomeB","797":"lowIncomeB","798":"lowIncomeB","799":"lowIncomeA","800":"lowIncomeA","801":"lowIncomeA","802":"lowIncomeB","803":"lowIncomeA","804":"lowIncomeB","805":"lowIncomeB","806":"lowIncomeB","807":"lowIncomeA","808":"lowIncomeA","809":"lowIncomeB","810":"lowIncomeA","811":"lowIncomeB","812":"lowIncomeA","813":"lowIncomeA","814":"lowIncomeA","815":"lowIncomeB","816":"lowIncomeB","817":"lowIncomeA","818":"lowIncomeB","819":"lowIncomeB","820":"lowIncomeA","821":"lowIncomeA","822":"lowIncomeA","823":"lowIncomeA","824":"midIncome","825":"lowIncomeB","826":"lowIncomeB","827":"lowIncomeB","828":"lowIncomeB","829":"lowIncomeA","830":"lowIncomeB","831":"midIncome","832":"lowIncomeB","833":"lowIncomeA","834":"lowIncomeB","835":"lowIncomeB","836":"lowIncomeA","837":"lowIncomeB","838":"lowIncomeB","839":"lowIncomeA","840":"lowIncomeB","841":"lowIncomeB","842":"lowIncomeA","843":"lowIncomeA","844":"lowIncomeA","845":"midIncome","846":"lowIncomeA","847":"lowIncomeA","848":"lowIncomeA","849":"lowIncomeA","850":"lowIncomeA","851":"lowIncomeA","852":"midIncome","853":"lowIncomeA","854":"lowIncomeB","855":"lowIncomeB","856":"lowIncomeB","857":"lowIncomeB","858":"lowIncomeA","859":"lowIncomeB","860":"midIncome","861":"lowIncomeA","862":"lowIncomeB","863":"midIncome","864":"midIncome","865":"lowIncomeB","866":"midIncome","867":"lowIncomeB","868":"lowIncomeA","869":"lowIncomeA","870":"lowIncomeA","871":"lowIncomeB","872":"lowIncomeA","873":"lowIncomeB","874":"lowIncomeB","875":"lowIncomeA","876":"lowIncomeB","877":"lowIncomeB","878":"lowIncomeB","879":"lowIncomeA","880":"midIncome","881":"lowIncomeB","882":"lowIncomeB","883":"lowIncomeB","884":"midIncome","885":"lowIncomeA","886":"lowIncomeB","887":"lowIncomeB","888":"lowIncomeA","889":"lowIncomeA","890":"lowIncomeA","891":"lowIncomeB","892":"lowIncomeA","893":"lowIncomeA","894":"lowIncomeA","895":"lowIncomeA","896":"lowIncomeA","897":"lowIncomeB","898":"lowIncomeA","899":"lowIncomeA","900":"lowIncomeB","901":"lowIncomeB","902":"lowIncomeB","903":"lowIncomeB","904":"lowIncomeA","905":"lowIncomeA","906":"lowIncomeB","907":"lowIncomeB","908":"lowIncomeA","909":"lowIncomeA","910":"midIncome","911":"lowIncomeA","912":"lowIncomeB","913":"lowIncomeB","914":"midIncome","915":"lowIncomeA","916":"lowIncomeB","917":"midIncome","918":"lowIncomeA","919":"lowIncomeB","920":"lowIncomeA","921":"lowIncomeB","922":"lowIncomeA","923":"lowIncomeB","924":"lowIncomeB","925":"lowIncomeB","926":"lowIncomeB","927":"lowIncomeA","928":"lowIncomeA","929":"lowIncomeB","930":"lowIncomeA","931":"lowIncomeA","932":"lowIncomeB","933":"lowIncomeB","934":"lowIncomeB","935":"lowIncomeA","936":"lowIncomeA","937":"lowIncomeA","938":"lowIncomeB","939":"lowIncomeA","940":"lowIncomeB","941":"lowIncomeA","942":"lowIncomeB","943":"lowIncomeB","944":"lowIncomeB","945":"lowIncomeB","946":"midIncome","947":"lowIncomeB","948":"lowIncomeB","949":"lowIncomeA","950":"lowIncomeA","951":"lowIncomeA","952":"lowIncomeB","953":"lowIncomeB","954":"lowIncomeA","955":"lowIncomeA","956":"lowIncomeA","957":"lowIncomeB","958":"lowIncomeA","959":"lowIncomeB","960":"lowIncomeA","961":"lowIncomeA","962":"lowIncomeA","963":"lowIncomeA","964":"lowIncomeA","965":"lowIncomeB","966":"lowIncomeA","967":"lowIncomeB","968":"midIncome","969":"lowIncomeA","970":"lowIncomeB","971":"lowIncomeA","972":"lowIncomeB","973":"lowIncomeA","974":"lowIncomeB","975":"lowIncomeA","976":"lowIncomeB","977":"lowIncomeB","978":"lowIncomeB","979":"lowIncomeA","980":"lowIncomeA","981":"lowIncomeB","982":"lowIncomeA","983":"lowIncomeA","984":"lowIncomeB","985":"lowIncomeA","986":"lowIncomeB","987":"lowIncomeB","988":"lowIncomeB","989":"lowIncomeB","990":"lowIncomeA","991":"lowIncomeA","992":"lowIncomeB","993":"lowIncomeA","994":"lowIncomeB","995":"lowIncomeA","996":"lowIncomeB","997":"lowIncomeB","998":"lowIncomeA","999":"lowIncomeA","1000":"lowIncomeA","1001":"lowIncomeA","1002":"lowIncomeA","1003":"lowIncomeA","1004":"midIncome","1005":"lowIncomeB","1006":"lowIncomeB","1007":"lowIncomeB","1008":"lowIncomeA","1009":"lowIncomeB","1010":"lowIncomeB","1011":"lowIncomeA","1012":"lowIncomeA","1013":"midIncome","1014":"lowIncomeB","1015":"midIncome","1016":"lowIncomeA","1017":"lowIncomeA","1018":"lowIncomeA","1019":"lowIncomeA","1020":"lowIncomeB","1021":"lowIncomeB","1022":"lowIncomeB","1023":"lowIncomeB","1024":"lowIncomeA","1025":"lowIncomeB","1026":"lowIncomeB","1027":"lowIncomeA","1028":"lowIncomeB","1029":"lowIncomeB","1030":"lowIncomeA","1031":"midIncome","1032":"lowIncomeA","1033":"lowIncomeA","1034":"lowIncomeB","1035":"lowIncomeB","1036":"lowIncomeB","1037":"lowIncomeB","1038":"lowIncomeB","1039":"midIncome","1040":"lowIncomeA","1041":"lowIncomeA","1042":"lowIncomeA","1043":"lowIncomeB","1044":"lowIncomeB","1045":"lowIncomeB","1046":"lowIncomeA","1047":"lowIncomeA","1048":"lowIncomeB","1049":"lowIncomeA","1050":"lowIncomeA","1051":"lowIncomeB","1052":"lowIncomeB","1053":"lowIncomeB","1054":"lowIncomeA","1055":"lowIncomeA","1056":"lowIncomeA","1057":"lowIncomeA","1058":"lowIncomeB","1059":"lowIncomeA","1060":"lowIncomeA","1061":"lowIncomeB","1062":"lowIncomeA","1063":"lowIncomeB","1064":"lowIncomeA","1065":"lowIncomeA","1066":"midIncome","1067":"lowIncomeB","1068":"lowIncomeA","1069":"lowIncomeB","1070":"lowIncomeB","1071":"lowIncomeA","1072":"lowIncomeB","1073":"lowIncomeB","1074":"lowIncomeB","1075":"lowIncomeA","1076":"lowIncomeB","1077":"lowIncomeB","1078":"lowIncomeB","1079":"midIncome","1080":"midIncome","1081":"lowIncomeA","1082":"lowIncomeB","1083":"lowIncomeA","1084":"lowIncomeA","1085":"lowIncomeA","1086":"midIncome","1087":"midIncome","1088":"midIncome","1089":"lowIncomeB","1090":"lowIncomeA","1091":"lowIncomeB","1092":"midIncome","1093":"lowIncomeA","1094":"lowIncomeA","1095":"lowIncomeA","1096":"lowIncomeA","1097":"lowIncomeB","1098":"lowIncomeA","1099":"lowIncomeB","1100":"lowIncomeA","1101":"lowIncomeA","1102":"lowIncomeA","1103":"lowIncomeA","1104":"lowIncomeA","1105":"lowIncomeB","1106":"midIncome","1107":"lowIncomeB","1108":"lowIncomeA","1109":"lowIncomeB","1110":"lowIncomeA","1111":"midIncome","1112":"lowIncomeA","1113":"lowIncomeA","1114":"lowIncomeA","1115":"lowIncomeA","1116":"lowIncomeB","1117":"lowIncomeB","1118":"midIncome","1119":"lowIncomeA","1120":"lowIncomeA","1121":"lowIncomeA","1122":"lowIncomeA","1123":"midIncome","1124":"lowIncomeA","1125":"lowIncomeB","1126":"lowIncomeA","1127":"lowIncomeB","1128":"midIncome","1129":"lowIncomeB","1130":"lowIncomeA","1131":"lowIncomeA","1132":"lowIncomeB","1133":"lowIncomeB","1134":"lowIncomeA","1135":"lowIncomeA","1136":"lowIncomeA","1137":"lowIncomeA","1138":"lowIncomeA","1139":"lowIncomeB","1140":"lowIncomeA","1141":"lowIncomeB","1142":"lowIncomeA","1143":"lowIncomeA","1144":"lowIncomeB","1145":"midIncome","1146":"midIncome","1147":"lowIncomeB","1148":"lowIncomeA","1149":"lowIncomeA","1150":"lowIncomeA","1151":"lowIncomeA","1152":"midIncome","1153":"lowIncomeA","1154":"lowIncomeB","1155":"lowIncomeB","1156":"lowIncomeA","1157":"lowIncomeA","1158":"lowIncomeA","1159":"lowIncomeB","1160":"lowIncomeA","1161":"lowIncomeA","1162":"lowIncomeB","1163":"lowIncomeB","1164":"lowIncomeA","1165":"lowIncomeA","1166":"lowIncomeB","1167":"lowIncomeA","1168":"lowIncomeA","1169":"lowIncomeB","1170":"lowIncomeB","1171":"lowIncomeB","1172":"midIncome","1173":"lowIncomeB","1174":"midIncome","1175":"lowIncomeA","1176":"lowIncomeA","1177":"lowIncomeB","1178":"lowIncomeB","1179":"lowIncomeB","1180":"lowIncomeA","1181":"lowIncomeA","1182":"lowIncomeA","1183":"lowIncomeB","1184":"lowIncomeA","1185":"lowIncomeA","1186":"lowIncomeA","1187":"lowIncomeB","1188":"lowIncomeB","1189":"lowIncomeB","1190":"lowIncomeA","1191":"lowIncomeA","1192":"lowIncomeB","1193":"lowIncomeA","1194":"lowIncomeA","1195":"midIncome","1196":"lowIncomeB","1197":"lowIncomeB","1198":"lowIncomeB","1199":"lowIncomeB","1200":"lowIncomeB","1201":"lowIncomeA","1202":"lowIncomeB","1203":"lowIncomeA","1204":"lowIncomeB","1205":"lowIncomeB","1206":"lowIncomeB","1207":"lowIncomeB","1208":"lowIncomeA","1209":"lowIncomeB","1210":"lowIncomeA","1211":"lowIncomeB","1212":"lowIncomeB","1213":"lowIncomeA","1214":"lowIncomeB","1215":"lowIncomeA","1216":"lowIncomeB","1217":"lowIncomeA","1218":"lowIncomeB","1219":"lowIncomeA","1220":"lowIncomeB","1221":"lowIncomeA","1222":"lowIncomeA","1223":"lowIncomeB","1224":"lowIncomeA","1225":"midIncome","1226":"lowIncomeA","1227":"lowIncomeB","1228":"lowIncomeB","1229":"lowIncomeB","1230":"midIncome","1231":"lowIncomeB","1232":"lowIncomeA","1233":"lowIncomeA","1234":"lowIncomeA","1235":"lowIncomeB","1236":"lowIncomeB","1237":"lowIncomeA","1238":"lowIncomeB","1239":"lowIncomeA","1240":"lowIncomeA","1241":"lowIncomeB","1242":"midIncome","1243":"lowIncomeB","1244":"lowIncomeB","1245":"lowIncomeB","1246":"lowIncomeA","1247":"lowIncomeA","1248":"lowIncomeA","1249":"lowIncomeA","1250":"lowIncomeB","1251":"lowIncomeA","1252":"lowIncomeB","1253":"lowIncomeA","1254":"lowIncomeA","1255":"lowIncomeA","1256":"lowIncomeB","1257":"lowIncomeB","1258":"midIncome","1259":"lowIncomeB","1260":"lowIncomeB","1261":"lowIncomeA","1262":"midIncome","1263":"lowIncomeA","1264":"lowIncomeB","1265":"lowIncomeA","1266":"lowIncomeB","1267":"lowIncomeA","1268":"lowIncomeA","1269":"lowIncomeA","1270":"lowIncomeA","1271":"lowIncomeA","1272":"lowIncomeB","1273":"lowIncomeA","1274":"lowIncomeB","1275":"lowIncomeA","1276":"lowIncomeA","1277":"midIncome","1278":"lowIncomeA","1279":"lowIncomeA","1280":"lowIncomeB","1281":"lowIncomeB","1282":"lowIncomeA","1283":"lowIncomeA","1284":"lowIncomeA","1285":"lowIncomeA","1286":"midIncome","1287":"lowIncomeB","1288":"lowIncomeA","1289":"lowIncomeA","1290":"lowIncomeB","1291":"lowIncomeA","1292":"lowIncomeA","1293":"lowIncomeA","1294":"lowIncomeB","1295":"lowIncomeA","1296":"lowIncomeB","1297":"midIncome","1298":"lowIncomeA","1299":"lowIncomeB","1300":"lowIncomeA","1301":"lowIncomeB","1302":"lowIncomeB","1303":"lowIncomeA","1304":"lowIncomeA","1305":"lowIncomeA","1306":"lowIncomeB","1307":"lowIncomeA","1308":"lowIncomeB","1309":"lowIncomeA","1310":"lowIncomeB","1311":"lowIncomeA","1312":"lowIncomeA","1313":"lowIncomeB","1314":"lowIncomeB","1315":"lowIncomeB","1316":"lowIncomeA","1317":"lowIncomeB","1318":"lowIncomeB","1319":"lowIncomeB","1320":"lowIncomeB","1321":"lowIncomeB","1322":"lowIncomeA","1323":"lowIncomeB","1324":"lowIncomeA","1325":"lowIncomeA","1326":"midIncome","1327":"lowIncomeB","1328":"lowIncomeA","1329":"lowIncomeA","1330":"lowIncomeB","1331":"lowIncomeB","1332":"lowIncomeA","1333":"lowIncomeA","1334":"lowIncomeA","1335":"lowIncomeB","1336":"lowIncomeA","1337":"lowIncomeA","1338":"lowIncomeB","1339":"lowIncomeA","1340":"lowIncomeB","1341":"lowIncomeA","1342":"lowIncomeA","1343":"lowIncomeA","1344":"lowIncomeB","1345":"lowIncomeB","1346":"lowIncomeA","1347":"lowIncomeA","1348":"lowIncomeB","1349":"lowIncomeA","1350":"lowIncomeA","1351":"midIncome","1352":"lowIncomeA","1353":"lowIncomeB","1354":"lowIncomeA","1355":"lowIncomeB","1356":"lowIncomeA","1357":"lowIncomeA","1358":"lowIncomeA","1359":"lowIncomeA","1360":"midIncome","1361":"lowIncomeA","1362":"lowIncomeA","1363":"lowIncomeB","1364":"lowIncomeB","1365":"lowIncomeB","1366":"lowIncomeB","1367":"lowIncomeA","1368":"lowIncomeA","1369":"lowIncomeB","1370":"lowIncomeB","1371":"lowIncomeA","1372":"lowIncomeA","1373":"lowIncomeB","1374":"lowIncomeA","1375":"lowIncomeA","1376":"lowIncomeA","1377":"lowIncomeB","1378":"lowIncomeA","1379":"lowIncomeA","1380":"lowIncomeB","1381":"lowIncomeB","1382":"lowIncomeA","1383":"lowIncomeB","1384":"lowIncomeB","1385":"lowIncomeB","1386":"lowIncomeB","1387":"lowIncomeA","1388":"lowIncomeA","1389":"lowIncomeB","1390":"lowIncomeA","1391":"lowIncomeA","1392":"lowIncomeA","1393":"lowIncomeB","1394":"lowIncomeB","1395":"lowIncomeB","1396":"lowIncomeA","1397":"lowIncomeB","1398":"lowIncomeB","1399":"lowIncomeB","1400":"lowIncomeA","1401":"lowIncomeA","1402":"lowIncomeA","1403":"lowIncomeB","1404":"lowIncomeA","1405":"midIncome","1406":"lowIncomeA","1407":"lowIncomeB","1408":"lowIncomeA","1409":"lowIncomeA","1410":"lowIncomeB","1411":"lowIncomeA","1412":"lowIncomeA","1413":"lowIncomeA","1414":"lowIncomeA","1415":"midIncome","1416":"lowIncomeA","1417":"midIncome","1418":"lowIncomeA","1419":"lowIncomeA","1420":"midIncome","1421":"lowIncomeA","1422":"lowIncomeA","1423":"lowIncomeA","1424":"lowIncomeB","1425":"lowIncomeA","1426":"lowIncomeB","1427":"lowIncomeB","1428":"lowIncomeA","1429":"lowIncomeA","1430":"lowIncomeB","1431":"lowIncomeB","1432":"lowIncomeA","1433":"lowIncomeB","1434":"lowIncomeA","1435":"lowIncomeB","1436":"lowIncomeB","1437":"lowIncomeA","1438":"midIncome","1439":"lowIncomeB","1440":"lowIncomeA","1441":"lowIncomeA","1442":"midIncome","1443":"lowIncomeA","1444":"lowIncomeB","1445":"lowIncomeB","1446":"lowIncomeB","1447":"midIncome","1448":"lowIncomeB","1449":"lowIncomeA","1450":"lowIncomeA","1451":"lowIncomeA","1452":"lowIncomeB","1453":"lowIncomeA","1454":"lowIncomeB","1455":"lowIncomeB","1456":"lowIncomeA","1457":"lowIncomeB","1458":"lowIncomeA","1459":"lowIncomeB","1460":"lowIncomeA","1461":"lowIncomeB","1462":"lowIncomeA","1463":"lowIncomeA","1464":"lowIncomeB","1465":"lowIncomeB","1466":"lowIncomeA","1467":"lowIncomeA","1468":"lowIncomeA","1469":"lowIncomeA","1470":"lowIncomeA","1471":"lowIncomeB","1472":"lowIncomeB","1473":"lowIncomeA","1474":"lowIncomeA","1475":"lowIncomeB","1476":"lowIncomeA","1477":"lowIncomeA","1478":"lowIncomeA","1479":"lowIncomeB","1480":"lowIncomeA","1481":"lowIncomeA","1482":"lowIncomeA","1483":"lowIncomeB","1484":"lowIncomeA","1485":"lowIncomeA","1486":"midIncome","1487":"lowIncomeA","1488":"lowIncomeB","1489":"lowIncomeA","1490":"lowIncomeB","1491":"lowIncomeA","1492":"lowIncomeA","1493":"lowIncomeA","1494":"lowIncomeA","1495":"lowIncomeA","1496":"lowIncomeB","1497":"lowIncomeB","1498":"lowIncomeA","1499":"lowIncomeA","1500":"midIncome","1501":"lowIncomeA","1502":"lowIncomeB","1503":"lowIncomeB","1504":"lowIncomeB","1505":"lowIncomeB","1506":"lowIncomeA","1507":"lowIncomeA","1508":"lowIncomeA","1509":"lowIncomeA","1510":"lowIncomeB","1511":"midIncome","1512":"lowIncomeA","1513":"lowIncomeA","1514":"lowIncomeB","1515":"lowIncomeA","1516":"lowIncomeA","1517":"lowIncomeA","1518":"lowIncomeA","1519":"lowIncomeB","1520":"lowIncomeB","1521":"lowIncomeB","1522":"lowIncomeB","1523":"lowIncomeB","1524":"lowIncomeB","1525":"lowIncomeB","1526":"midIncome","1527":"lowIncomeA","1528":"lowIncomeA","1529":"lowIncomeA","1530":"lowIncomeA","1531":"lowIncomeA","1532":"lowIncomeB","1533":"lowIncomeA","1534":"lowIncomeB","1535":"lowIncomeA","1536":"lowIncomeA","1537":"lowIncomeA","1538":"lowIncomeB","1539":"lowIncomeA","1540":"lowIncomeB","1541":"lowIncomeA","1542":"lowIncomeB","1543":"lowIncomeA","1544":"lowIncomeA","1545":"lowIncomeA","1546":"lowIncomeB","1547":"lowIncomeB","1548":"lowIncomeA","1549":"lowIncomeA","1550":"lowIncomeB","1551":"lowIncomeB","1552":"lowIncomeA","1553":"lowIncomeB","1554":"lowIncomeB","1555":"lowIncomeA","1556":"midIncome","1557":"lowIncomeB","1558":"lowIncomeA","1559":"midIncome","1560":"lowIncomeB","1561":"lowIncomeB","1562":"lowIncomeB","1563":"lowIncomeA","1564":"lowIncomeA","1565":"lowIncomeA","1566":"lowIncomeA","1567":"lowIncomeB","1568":"lowIncomeB","1569":"lowIncomeA","1570":"lowIncomeB","1571":"lowIncomeA","1572":"lowIncomeA","1573":"lowIncomeB","1574":"lowIncomeA","1575":"lowIncomeB","1576":"lowIncomeB","1577":"lowIncomeA","1578":"lowIncomeB","1579":"lowIncomeA","1580":"midIncome","1581":"midIncome","1582":"lowIncomeB","1583":"lowIncomeA","1584":"lowIncomeA","1585":"lowIncomeA","1586":"lowIncomeA","1587":"lowIncomeA","1588":"lowIncomeB","1589":"midIncome","1590":"lowIncomeA","1591":"lowIncomeB","1592":"lowIncomeB","1593":"lowIncomeA","1594":"lowIncomeB","1595":"lowIncomeB","1596":"lowIncomeB","1597":"lowIncomeA","1598":"midIncome","1599":"lowIncomeA","1600":"lowIncomeB","1601":"lowIncomeA","1602":"lowIncomeB","1603":"lowIncomeB","1604":"lowIncomeA","1605":"lowIncomeA","1606":"midIncome","1607":"lowIncomeA","1608":"lowIncomeB","1609":"lowIncomeA","1610":"lowIncomeB","1611":"lowIncomeB","1612":"midIncome","1613":"lowIncomeB","1614":"lowIncomeB","1615":"lowIncomeB","1616":"lowIncomeA","1617":"lowIncomeB","1618":"lowIncomeB","1619":"lowIncomeA","1620":"lowIncomeB","1621":"lowIncomeA","1622":"lowIncomeB","1623":"lowIncomeB","1624":"lowIncomeB","1625":"lowIncomeA","1626":"lowIncomeB","1627":"lowIncomeA","1628":"lowIncomeB","1629":"lowIncomeA","1630":"lowIncomeA","1631":"lowIncomeA","1632":"lowIncomeA","1633":"lowIncomeA","1634":"lowIncomeA","1635":"lowIncomeA","1636":"lowIncomeA","1637":"lowIncomeA","1638":"lowIncomeA","1639":"lowIncomeA","1640":"lowIncomeB","1641":"midIncome","1642":"lowIncomeA","1643":"lowIncomeA","1644":"lowIncomeA","1645":"lowIncomeB","1646":"lowIncomeA","1647":"lowIncomeA","1648":"lowIncomeA","1649":"lowIncomeA","1650":"lowIncomeA","1651":"midIncome","1652":"lowIncomeA","1653":"lowIncomeA","1654":"lowIncomeB","1655":"lowIncomeA","1656":"lowIncomeA","1657":"lowIncomeA","1658":"lowIncomeB","1659":"lowIncomeA","1660":"midIncome","1661":"lowIncomeA","1662":"lowIncomeB","1663":"lowIncomeB","1664":"lowIncomeB","1665":"lowIncomeB","1666":"lowIncomeA","1667":"lowIncomeA","1668":"lowIncomeA","1669":"lowIncomeA","1670":"lowIncomeA","1671":"lowIncomeB","1672":"lowIncomeA","1673":"lowIncomeA","1674":"lowIncomeB","1675":"lowIncomeA","1676":"lowIncomeB","1677":"lowIncomeB","1678":"lowIncomeB","1679":"lowIncomeA","1680":"lowIncomeB","1681":"lowIncomeA","1682":"lowIncomeB","1683":"lowIncomeA","1684":"lowIncomeA","1685":"lowIncomeB","1686":"lowIncomeB","1687":"lowIncomeA","1688":"lowIncomeB","1689":"lowIncomeA","1690":"lowIncomeB","1691":"lowIncomeB","1692":"lowIncomeA","1693":"lowIncomeA","1694":"midIncome","1695":"lowIncomeA","1696":"lowIncomeB","1697":"lowIncomeB","1698":"lowIncomeA","1699":"lowIncomeA","1700":"midIncome","1701":"lowIncomeB","1702":"lowIncomeA","1703":"lowIncomeA","1704":"midIncome","1705":"lowIncomeB","1706":"lowIncomeA","1707":"lowIncomeB","1708":"lowIncomeA","1709":"lowIncomeA","1710":"lowIncomeA","1711":"lowIncomeA","1712":"midIncome","1713":"lowIncomeB","1714":"lowIncomeB","1715":"lowIncomeB","1716":"lowIncomeA","1717":"lowIncomeA","1718":"midIncome","1719":"lowIncomeA","1720":"lowIncomeA","1721":"lowIncomeB","1722":"lowIncomeB","1723":"lowIncomeB","1724":"lowIncomeA","1725":"lowIncomeB","1726":"lowIncomeA","1727":"lowIncomeA","1728":"lowIncomeA","1729":"lowIncomeA","1730":"lowIncomeA","1731":"lowIncomeA","1732":"midIncome","1733":"lowIncomeA","1734":"lowIncomeA","1735":"lowIncomeA","1736":"lowIncomeA","1737":"lowIncomeB","1738":"lowIncomeA","1739":"midIncome","1740":"lowIncomeA","1741":"lowIncomeA","1742":"lowIncomeB","1743":"lowIncomeB","1744":"lowIncomeB","1745":"lowIncomeA","1746":"lowIncomeB","1747":"lowIncomeA","1748":"midIncome","1749":"lowIncomeA","1750":"lowIncomeA","1751":"lowIncomeA","1752":"lowIncomeB","1753":"lowIncomeB","1754":"lowIncomeB","1755":"lowIncomeB","1756":"lowIncomeB","1757":"lowIncomeA","1758":"lowIncomeA","1759":"lowIncomeB","1760":"midIncome","1761":"lowIncomeB","1762":"midIncome","1763":"lowIncomeB","1764":"lowIncomeB","1765":"lowIncomeA","1766":"lowIncomeB","1767":"lowIncomeB","1768":"midIncome","1769":"lowIncomeB","1770":"lowIncomeA","1771":"lowIncomeA","1772":"lowIncomeB","1773":"lowIncomeA","1774":"lowIncomeB","1775":"lowIncomeB","1776":"lowIncomeB","1777":"lowIncomeB","1778":"midIncome","1779":"lowIncomeA","1780":"lowIncomeB","1781":"lowIncomeA","1782":"lowIncomeA","1783":"lowIncomeA","1784":"lowIncomeA","1785":"midIncome","1786":"lowIncomeA","1787":"lowIncomeA","1788":"lowIncomeA","1789":"lowIncomeA","1790":"lowIncomeB","1791":"lowIncomeA","1792":"midIncome","1793":"lowIncomeA","1794":"lowIncomeA","1795":"lowIncomeB","1796":"lowIncomeB","1797":"lowIncomeB","1798":"lowIncomeA","1799":"lowIncomeB","1800":"lowIncomeA","1801":"lowIncomeA","1802":"lowIncomeB","1803":"lowIncomeA","1804":"lowIncomeB","1805":"lowIncomeB","1806":"lowIncomeA","1807":"lowIncomeA","1808":"lowIncomeA","1809":"lowIncomeB","1810":"lowIncomeB","1811":"lowIncomeA","1812":"lowIncomeA","1813":"lowIncomeB","1814":"lowIncomeB","1815":"lowIncomeA","1816":"lowIncomeA","1817":"midIncome","1818":"lowIncomeA","1819":"lowIncomeA","1820":"midIncome","1821":"lowIncomeB","1822":"lowIncomeB","1823":"lowIncomeA","1824":"lowIncomeA","1825":"lowIncomeB","1826":"lowIncomeA","1827":"lowIncomeA","1828":"lowIncomeB","1829":"lowIncomeA","1830":"lowIncomeA","1831":"lowIncomeA","1832":"lowIncomeA","1833":"lowIncomeA","1834":"lowIncomeB","1835":"lowIncomeA","1836":"lowIncomeA","1837":"lowIncomeB","1838":"lowIncomeA","1839":"lowIncomeB","1840":"midIncome","1841":"lowIncomeA","1842":"lowIncomeB","1843":"lowIncomeB","1844":"lowIncomeA","1845":"lowIncomeA","1846":"lowIncomeA","1847":"midIncome","1848":"lowIncomeA","1849":"lowIncomeB","1850":"midIncome","1851":"lowIncomeA","1852":"lowIncomeB","1853":"lowIncomeB","1854":"lowIncomeB","1855":"lowIncomeA","1856":"lowIncomeA","1857":"lowIncomeB","1858":"lowIncomeA","1859":"lowIncomeA","1860":"midIncome","1861":"lowIncomeB","1862":"lowIncomeA","1863":"lowIncomeA","1864":"lowIncomeA","1865":"lowIncomeA","1866":"lowIncomeA","1867":"lowIncomeB","1868":"lowIncomeB","1869":"lowIncomeB","1870":"lowIncomeA","1871":"lowIncomeA","1872":"lowIncomeB","1873":"lowIncomeA","1874":"lowIncomeB","1875":"lowIncomeB","1876":"lowIncomeA","1877":"lowIncomeB","1878":"lowIncomeB","1879":"lowIncomeA","1880":"lowIncomeA","1881":"lowIncomeB","1882":"midIncome","1883":"lowIncomeA","1884":"lowIncomeA","1885":"lowIncomeA","1886":"midIncome","1887":"lowIncomeB","1888":"lowIncomeA","1889":"lowIncomeB","1890":"lowIncomeA","1891":"lowIncomeA","1892":"midIncome","1893":"lowIncomeB","1894":"lowIncomeB","1895":"lowIncomeA","1896":"lowIncomeA","1897":"lowIncomeA","1898":"lowIncomeA","1899":"lowIncomeA","1900":"lowIncomeB","1901":"lowIncomeA","1902":"lowIncomeB","1903":"lowIncomeB","1904":"lowIncomeB","1905":"lowIncomeA","1906":"lowIncomeB","1907":"lowIncomeB","1908":"lowIncomeA","1909":"lowIncomeA","1910":"lowIncomeB","1911":"lowIncomeB","1912":"lowIncomeA","1913":"lowIncomeA","1914":"lowIncomeA","1915":"lowIncomeA","1916":"lowIncomeB","1917":"lowIncomeB","1918":"midIncome","1919":"lowIncomeB","1920":"lowIncomeA","1921":"lowIncomeA","1922":"lowIncomeA","1923":"lowIncomeA","1924":"lowIncomeA","1925":"lowIncomeA","1926":"lowIncomeA","1927":"lowIncomeA","1928":"lowIncomeB","1929":"lowIncomeB","1930":"lowIncomeA","1931":"lowIncomeB","1932":"lowIncomeA","1933":"lowIncomeA","1934":"lowIncomeA","1935":"lowIncomeA","1936":"lowIncomeA","1937":"lowIncomeA","1938":"lowIncomeB","1939":"lowIncomeB","1940":"lowIncomeA","1941":"lowIncomeB","1942":"lowIncomeB","1943":"lowIncomeB","1944":"lowIncomeB","1945":"lowIncomeA","1946":"midIncome","1947":"lowIncomeB","1948":"lowIncomeA","1949":"lowIncomeA","1950":"midIncome","1951":"lowIncomeB","1952":"lowIncomeA","1953":"lowIncomeA","1954":"midIncome","1955":"lowIncomeB","1956":"lowIncomeB","1957":"midIncome","1958":"lowIncomeA","1959":"lowIncomeA","1960":"lowIncomeA","1961":"lowIncomeB","1962":"midIncome","1963":"lowIncomeA","1964":"lowIncomeB","1965":"lowIncomeA","1966":"lowIncomeA","1967":"lowIncomeB","1968":"lowIncomeA","1969":"lowIncomeB","1970":"lowIncomeB","1971":"midIncome","1972":"lowIncomeB","1973":"lowIncomeA","1974":"lowIncomeB","1975":"lowIncomeA","1976":"lowIncomeB","1977":"lowIncomeB","1978":"lowIncomeA","1979":"lowIncomeB","1980":"lowIncomeA","1981":"lowIncomeB","1982":"lowIncomeA","1983":"lowIncomeA","1984":"lowIncomeB","1985":"lowIncomeB","1986":"lowIncomeA","1987":"lowIncomeA","1988":"lowIncomeB","1989":"lowIncomeA","1990":"lowIncomeB","1991":"lowIncomeB","1992":"lowIncomeB","1993":"lowIncomeB","1994":"lowIncomeA","1995":"lowIncomeA","1996":"lowIncomeB","1997":"lowIncomeA","1998":"lowIncomeB","1999":"lowIncomeA","2000":"lowIncomeA","2001":"lowIncomeB","2002":"lowIncomeB","2003":"lowIncomeA","2004":"lowIncomeB","2005":"lowIncomeA","2006":"lowIncomeB","2007":"lowIncomeB","2008":"lowIncomeA","2009":"lowIncomeA","2010":"lowIncomeB","2011":"lowIncomeA","2012":"lowIncomeA","2013":"lowIncomeA","2014":"midIncome","2015":"lowIncomeA","2016":"lowIncomeA","2017":"lowIncomeA","2018":"lowIncomeA","2019":"lowIncomeB","2020":"lowIncomeB","2021":"lowIncomeA","2022":"midIncome","2023":"lowIncomeB","2024":"lowIncomeA","2025":"lowIncomeA","2026":"lowIncomeA","2027":"midIncome","2028":"lowIncomeA","2029":"lowIncomeA","2030":"midIncome","2031":"midIncome","2032":"lowIncomeA","2033":"lowIncomeA","2034":"lowIncomeB","2035":"midIncome","2036":"lowIncomeA","2037":"lowIncomeB","2038":"lowIncomeA","2039":"lowIncomeA","2040":"lowIncomeA","2041":"lowIncomeA","2042":"lowIncomeB","2043":"lowIncomeB","2044":"lowIncomeB","2045":"midIncome","2046":"lowIncomeA","2047":"lowIncomeA","2048":"lowIncomeA","2049":"lowIncomeB","2050":"lowIncomeA","2051":"lowIncomeB","2052":"lowIncomeB","2053":"lowIncomeB","2054":"lowIncomeA","2055":"lowIncomeA","2056":"lowIncomeA","2057":"lowIncomeA","2058":"lowIncomeA","2059":"lowIncomeB","2060":"lowIncomeA","2061":"lowIncomeB","2062":"lowIncomeA","2063":"lowIncomeA","2064":"lowIncomeB","2065":"lowIncomeB","2066":"lowIncomeA","2067":"lowIncomeA","2068":"lowIncomeB","2069":"lowIncomeA","2070":"lowIncomeB","2071":"midIncome","2072":"lowIncomeA","2073":"lowIncomeB","2074":"lowIncomeB","2075":"lowIncomeA","2076":"lowIncomeB","2077":"lowIncomeA","2078":"lowIncomeA","2079":"lowIncomeB","2080":"lowIncomeA","2081":"lowIncomeB","2082":"lowIncomeB","2083":"lowIncomeA","2084":"midIncome","2085":"lowIncomeA","2086":"midIncome","2087":"lowIncomeA","2088":"lowIncomeB","2089":"lowIncomeA","2090":"lowIncomeA","2091":"lowIncomeA","2092":"midIncome","2093":"lowIncomeB","2094":"lowIncomeB","2095":"lowIncomeB","2096":"lowIncomeA","2097":"midIncome","2098":"midIncome","2099":"lowIncomeA","2100":"lowIncomeA","2101":"lowIncomeB","2102":"lowIncomeA","2103":"lowIncomeB","2104":"lowIncomeB","2105":"lowIncomeB","2106":"lowIncomeB","2107":"lowIncomeB","2108":"lowIncomeB","2109":"lowIncomeB","2110":"lowIncomeA","2111":"lowIncomeB","2112":"lowIncomeA","2113":"lowIncomeB","2114":"midIncome","2115":"midIncome","2116":"lowIncomeA","2117":"lowIncomeA","2118":"lowIncomeB","2119":"lowIncomeA","2120":"lowIncomeB","2121":"lowIncomeA","2122":"lowIncomeA","2123":"lowIncomeA","2124":"lowIncomeA","2125":"lowIncomeB","2126":"lowIncomeB","2127":"midIncome","2128":"lowIncomeB","2129":"lowIncomeB","2130":"lowIncomeB","2131":"lowIncomeA","2132":"midIncome","2133":"lowIncomeB","2134":"lowIncomeB","2135":"lowIncomeB","2136":"lowIncomeA","2137":"lowIncomeB","2138":"lowIncomeA","2139":"lowIncomeA","2140":"lowIncomeB","2141":"lowIncomeB","2142":"lowIncomeB","2143":"lowIncomeA","2144":"lowIncomeA","2145":"lowIncomeA","2146":"lowIncomeA","2147":"lowIncomeA","2148":"lowIncomeB","2149":"midIncome","2150":"lowIncomeA","2151":"lowIncomeA","2152":"lowIncomeA","2153":"lowIncomeA","2154":"lowIncomeA","2155":"lowIncomeB","2156":"midIncome","2157":"lowIncomeB","2158":"lowIncomeB","2159":"lowIncomeA","2160":"lowIncomeA","2161":"lowIncomeB","2162":"lowIncomeA","2163":"lowIncomeA","2164":"lowIncomeB","2165":"lowIncomeB","2166":"lowIncomeB","2167":"midIncome","2168":"lowIncomeB","2169":"lowIncomeA","2170":"lowIncomeB","2171":"lowIncomeA","2172":"midIncome","2173":"lowIncomeB","2174":"lowIncomeA","2175":"lowIncomeB","2176":"lowIncomeA","2177":"lowIncomeA","2178":"lowIncomeB","2179":"lowIncomeA","2180":"lowIncomeA","2181":"midIncome","2182":"lowIncomeA","2183":"lowIncomeA","2184":"lowIncomeA","2185":"lowIncomeA","2186":"lowIncomeA","2187":"lowIncomeA","2188":"lowIncomeA","2189":"midIncome","2190":"lowIncomeA","2191":"lowIncomeB","2192":"lowIncomeA","2193":"lowIncomeB","2194":"lowIncomeA","2195":"lowIncomeB","2196":"midIncome","2197":"lowIncomeA","2198":"lowIncomeB","2199":"lowIncomeB","2200":"lowIncomeA","2201":"lowIncomeA","2202":"lowIncomeA","2203":"lowIncomeA","2204":"lowIncomeB","2205":"lowIncomeA","2206":"lowIncomeB","2207":"lowIncomeA","2208":"lowIncomeA","2209":"lowIncomeA","2210":"lowIncomeA","2211":"lowIncomeB","2212":"lowIncomeA","2213":"lowIncomeA","2214":"lowIncomeA","2215":"lowIncomeB","2216":"lowIncomeB","2217":"lowIncomeA","2218":"lowIncomeB","2219":"lowIncomeA","2220":"lowIncomeB","2221":"lowIncomeB","2222":"lowIncomeA","2223":"lowIncomeA","2224":"lowIncomeB","2225":"lowIncomeA","2226":"lowIncomeB","2227":"lowIncomeA","2228":"lowIncomeB","2229":"lowIncomeA","2230":"lowIncomeB","2231":"lowIncomeA","2232":"lowIncomeA","2233":"lowIncomeB","2234":"lowIncomeB","2235":"lowIncomeA","2236":"lowIncomeA","2237":"lowIncomeA","2238":"lowIncomeB","2239":"lowIncomeB","2240":"midIncome","2241":"lowIncomeB","2242":"lowIncomeA","2243":"lowIncomeB","2244":"midIncome","2245":"lowIncomeB","2246":"lowIncomeB","2247":"lowIncomeB","2248":"lowIncomeA","2249":"lowIncomeA","2250":"lowIncomeB","2251":"lowIncomeB","2252":"lowIncomeA","2253":"lowIncomeA","2254":"lowIncomeB","2255":"lowIncomeB","2256":"lowIncomeA","2257":"lowIncomeA","2258":"lowIncomeB","2259":"lowIncomeA","2260":"lowIncomeB","2261":"midIncome","2262":"midIncome","2263":"lowIncomeA","2264":"lowIncomeA","2265":"lowIncomeB","2266":"lowIncomeA","2267":"lowIncomeA","2268":"lowIncomeA","2269":"lowIncomeB","2270":"lowIncomeA","2271":"lowIncomeA","2272":"lowIncomeA","2273":"lowIncomeB","2274":"lowIncomeA","2275":"lowIncomeA","2276":"lowIncomeB","2277":"lowIncomeA","2278":"lowIncomeA","2279":"lowIncomeB","2280":"lowIncomeB","2281":"lowIncomeA","2282":"lowIncomeA","2283":"lowIncomeA","2284":"midIncome","2285":"midIncome","2286":"lowIncomeB","2287":"lowIncomeB","2288":"lowIncomeB","2289":"lowIncomeB","2290":"midIncome","2291":"lowIncomeA","2292":"lowIncomeB","2293":"lowIncomeB","2294":"lowIncomeB","2295":"lowIncomeA","2296":"lowIncomeA","2297":"lowIncomeB","2298":"lowIncomeA","2299":"lowIncomeB","2300":"lowIncomeB","2301":"lowIncomeA","2302":"lowIncomeB","2303":"lowIncomeB","2304":"lowIncomeA","2305":"lowIncomeB","2306":"lowIncomeA","2307":"lowIncomeB","2308":"lowIncomeA","2309":"lowIncomeB","2310":"lowIncomeA","2311":"lowIncomeB","2312":"lowIncomeA","2313":"lowIncomeB","2314":"lowIncomeA","2315":"lowIncomeA","2316":"lowIncomeB","2317":"lowIncomeA","2318":"lowIncomeA","2319":"lowIncomeB","2320":"lowIncomeA","2321":"lowIncomeA","2322":"lowIncomeA","2323":"lowIncomeB","2324":"lowIncomeA","2325":"lowIncomeA","2326":"lowIncomeB","2327":"lowIncomeB","2328":"lowIncomeA","2329":"lowIncomeA","2330":"lowIncomeA","2331":"lowIncomeA","2332":"lowIncomeB","2333":"lowIncomeA","2334":"lowIncomeA","2335":"lowIncomeB","2336":"midIncome","2337":"midIncome","2338":"lowIncomeB","2339":"lowIncomeB","2340":"lowIncomeB","2341":"lowIncomeA","2342":"lowIncomeA","2343":"lowIncomeB","2344":"lowIncomeA","2345":"lowIncomeB","2346":"lowIncomeA","2347":"lowIncomeA","2348":"lowIncomeB","2349":"lowIncomeA","2350":"lowIncomeA","2351":"lowIncomeB","2352":"lowIncomeB","2353":"lowIncomeB","2354":"lowIncomeA","2355":"lowIncomeB","2356":"lowIncomeA","2357":"lowIncomeB","2358":"lowIncomeB","2359":"lowIncomeB","2360":"lowIncomeA","2361":"lowIncomeA","2362":"lowIncomeA","2363":"lowIncomeA","2364":"lowIncomeB","2365":"lowIncomeA","2366":"lowIncomeB","2367":"lowIncomeA","2368":"lowIncomeA","2369":"midIncome","2370":"lowIncomeB","2371":"midIncome","2372":"lowIncomeA","2373":"lowIncomeB","2374":"lowIncomeA","2375":"lowIncomeA","2376":"lowIncomeB","2377":"midIncome","2378":"lowIncomeA","2379":"lowIncomeA","2380":"lowIncomeB","2381":"lowIncomeA","2382":"lowIncomeB","2383":"lowIncomeA","2384":"midIncome","2385":"lowIncomeA","2386":"lowIncomeB","2387":"lowIncomeA","2388":"lowIncomeA","2389":"lowIncomeA","2390":"lowIncomeA","2391":"lowIncomeA","2392":"midIncome","2393":"lowIncomeA","2394":"midIncome","2395":"lowIncomeB","2396":"lowIncomeB","2397":"lowIncomeA","2398":"lowIncomeB","2399":"lowIncomeA","2400":"lowIncomeB","2401":"lowIncomeA","2402":"lowIncomeA","2403":"lowIncomeB","2404":"midIncome","2405":"lowIncomeA","2406":"lowIncomeA","2407":"lowIncomeB","2408":"lowIncomeA","2409":"lowIncomeB","2410":"lowIncomeA","2411":"lowIncomeA","2412":"lowIncomeA","2413":"lowIncomeA","2414":"lowIncomeB","2415":"lowIncomeB","2416":"lowIncomeB","2417":"lowIncomeA","2418":"lowIncomeA","2419":"lowIncomeA","2420":"midIncome","2421":"lowIncomeA","2422":"lowIncomeA","2423":"lowIncomeA","2424":"lowIncomeB","2425":"lowIncomeB","2426":"midIncome","2427":"midIncome","2428":"lowIncomeB","2429":"lowIncomeB","2430":"lowIncomeA","2431":"lowIncomeB","2432":"lowIncomeA","2433":"lowIncomeB","2434":"lowIncomeA","2435":"lowIncomeB","2436":"lowIncomeB","2437":"lowIncomeB","2438":"lowIncomeA","2439":"midIncome","2440":"lowIncomeB","2441":"lowIncomeA","2442":"lowIncomeB","2443":"lowIncomeB","2444":"lowIncomeB","2445":"lowIncomeB","2446":"lowIncomeB","2447":"lowIncomeB","2448":"lowIncomeA","2449":"lowIncomeB","2450":"lowIncomeB","2451":"lowIncomeA","2452":"lowIncomeA","2453":"lowIncomeA","2454":"lowIncomeB","2455":"lowIncomeB","2456":"lowIncomeA","2457":"lowIncomeA","2458":"lowIncomeB","2459":"lowIncomeB","2460":"lowIncomeA","2461":"lowIncomeB","2462":"lowIncomeA","2463":"lowIncomeB","2464":"lowIncomeB","2465":"lowIncomeA","2466":"midIncome","2467":"lowIncomeB","2468":"lowIncomeA","2469":"lowIncomeA","2470":"lowIncomeA","2471":"lowIncomeB","2472":"lowIncomeB","2473":"lowIncomeA","2474":"lowIncomeA","2475":"lowIncomeB","2476":"midIncome","2477":"lowIncomeB","2478":"lowIncomeA","2479":"lowIncomeA","2480":"lowIncomeB","2481":"midIncome","2482":"lowIncomeA","2483":"lowIncomeB","2484":"lowIncomeA","2485":"lowIncomeB","2486":"lowIncomeB","2487":"lowIncomeA","2488":"midIncome","2489":"lowIncomeA","2490":"lowIncomeB","2491":"lowIncomeB","2492":"lowIncomeB","2493":"lowIncomeA","2494":"lowIncomeA","2495":"lowIncomeA","2496":"lowIncomeB","2497":"lowIncomeA","2498":"lowIncomeA","2499":"lowIncomeA","2500":"lowIncomeB","2501":"lowIncomeA","2502":"lowIncomeB","2503":"lowIncomeB","2504":"lowIncomeA","2505":"lowIncomeA","2506":"lowIncomeA","2507":"midIncome","2508":"midIncome","2509":"lowIncomeB","2510":"lowIncomeB","2511":"lowIncomeA","2512":"lowIncomeB","2513":"midIncome","2514":"lowIncomeB","2515":"midIncome","2516":"lowIncomeA","2517":"lowIncomeA","2518":"lowIncomeA","2519":"midIncome","2520":"lowIncomeB","2521":"lowIncomeA","2522":"lowIncomeB","2523":"lowIncomeB","2524":"lowIncomeA","2525":"lowIncomeA","2526":"lowIncomeA","2527":"lowIncomeB","2528":"midIncome","2529":"lowIncomeB","2530":"lowIncomeA","2531":"lowIncomeA","2532":"lowIncomeB","2533":"lowIncomeA","2534":"lowIncomeB","2535":"lowIncomeA","2536":"lowIncomeB","2537":"lowIncomeA","2538":"lowIncomeB","2539":"lowIncomeA","2540":"midIncome","2541":"lowIncomeA","2542":"lowIncomeA","2543":"lowIncomeB","2544":"lowIncomeA","2545":"lowIncomeA","2546":"lowIncomeB","2547":"lowIncomeB","2548":"lowIncomeA","2549":"midIncome","2550":"lowIncomeB","2551":"lowIncomeB","2552":"lowIncomeA","2553":"lowIncomeA","2554":"lowIncomeB","2555":"lowIncomeB","2556":"lowIncomeB","2557":"lowIncomeA","2558":"lowIncomeA","2559":"lowIncomeA","2560":"lowIncomeA","2561":"lowIncomeA","2562":"lowIncomeA","2563":"lowIncomeA","2564":"lowIncomeA","2565":"lowIncomeA","2566":"lowIncomeA","2567":"lowIncomeA","2568":"lowIncomeA","2569":"lowIncomeA","2570":"lowIncomeB","2571":"midIncome","2572":"lowIncomeA","2573":"lowIncomeB","2574":"lowIncomeB","2575":"lowIncomeB","2576":"lowIncomeB","2577":"lowIncomeA","2578":"lowIncomeA","2579":"lowIncomeA","2580":"lowIncomeA","2581":"lowIncomeA","2582":"lowIncomeB","2583":"lowIncomeA","2584":"lowIncomeA","2585":"lowIncomeA","2586":"lowIncomeB","2587":"lowIncomeA","2588":"lowIncomeB","2589":"lowIncomeA","2590":"lowIncomeB","2591":"lowIncomeA","2592":"lowIncomeB","2593":"lowIncomeB","2594":"midIncome","2595":"lowIncomeB","2596":"lowIncomeB","2597":"lowIncomeB","2598":"lowIncomeA","2599":"lowIncomeA","2600":"lowIncomeB","2601":"lowIncomeA","2602":"lowIncomeB","2603":"lowIncomeB","2604":"midIncome","2605":"lowIncomeA","2606":"lowIncomeA","2607":"lowIncomeA","2608":"lowIncomeB","2609":"lowIncomeA","2610":"lowIncomeA","2611":"lowIncomeA","2612":"lowIncomeB","2613":"midIncome","2614":"lowIncomeA","2615":"lowIncomeB","2616":"lowIncomeA","2617":"lowIncomeA","2618":"lowIncomeA","2619":"lowIncomeB","2620":"lowIncomeA","2621":"lowIncomeB","2622":"lowIncomeB","2623":"lowIncomeA","2624":"lowIncomeA","2625":"lowIncomeB","2626":"lowIncomeA","2627":"lowIncomeA","2628":"midIncome","2629":"lowIncomeB","2630":"lowIncomeA","2631":"lowIncomeA","2632":"lowIncomeB","2633":"lowIncomeA","2634":"lowIncomeB","2635":"lowIncomeA","2636":"lowIncomeB","2637":"lowIncomeA","2638":"lowIncomeA","2639":"midIncome","2640":"lowIncomeB","2641":"lowIncomeA","2642":"lowIncomeB","2643":"lowIncomeA","2644":"lowIncomeB","2645":"lowIncomeA","2646":"midIncome","2647":"lowIncomeB","2648":"lowIncomeA","2649":"midIncome","2650":"lowIncomeB","2651":"lowIncomeB","2652":"lowIncomeA","2653":"lowIncomeB","2654":"lowIncomeB","2655":"lowIncomeB","2656":"lowIncomeA","2657":"midIncome","2658":"lowIncomeB","2659":"lowIncomeB","2660":"lowIncomeA","2661":"lowIncomeB","2662":"lowIncomeA","2663":"lowIncomeA","2664":"midIncome","2665":"lowIncomeA","2666":"lowIncomeB","2667":"lowIncomeA","2668":"lowIncomeB","2669":"lowIncomeA","2670":"lowIncomeA","2671":"lowIncomeA","2672":"lowIncomeB","2673":"lowIncomeB","2674":"lowIncomeB","2675":"lowIncomeB","2676":"lowIncomeB","2677":"lowIncomeA","2678":"lowIncomeB","2679":"lowIncomeA","2680":"lowIncomeA","2681":"lowIncomeB","2682":"lowIncomeB","2683":"lowIncomeA","2684":"lowIncomeB","2685":"lowIncomeB","2686":"lowIncomeA","2687":"lowIncomeB","2688":"lowIncomeA","2689":"lowIncomeB","2690":"lowIncomeA","2691":"lowIncomeB","2692":"lowIncomeA","2693":"lowIncomeB","2694":"lowIncomeA","2695":"lowIncomeA","2696":"lowIncomeA","2697":"lowIncomeA","2698":"lowIncomeA","2699":"lowIncomeB","2700":"lowIncomeA","2701":"lowIncomeB","2702":"lowIncomeA","2703":"lowIncomeA","2704":"lowIncomeA","2705":"lowIncomeA","2706":"lowIncomeA","2707":"lowIncomeB","2708":"lowIncomeA","2709":"lowIncomeB","2710":"midIncome","2711":"lowIncomeA","2712":"lowIncomeA","2713":"lowIncomeA","2714":"lowIncomeB","2715":"lowIncomeA","2716":"lowIncomeB","2717":"lowIncomeA","2718":"lowIncomeB","2719":"lowIncomeA","2720":"midIncome","2721":"lowIncomeB","2722":"lowIncomeA","2723":"lowIncomeA","2724":"lowIncomeB","2725":"lowIncomeA","2726":"lowIncomeA","2727":"lowIncomeA","2728":"lowIncomeA","2729":"lowIncomeB","2730":"lowIncomeB","2731":"lowIncomeB","2732":"lowIncomeA","2733":"lowIncomeB","2734":"lowIncomeA","2735":"lowIncomeB","2736":"lowIncomeB","2737":"midIncome","2738":"lowIncomeB","2739":"lowIncomeB","2740":"lowIncomeA","2741":"lowIncomeB","2742":"lowIncomeA","2743":"lowIncomeA","2744":"midIncome","2745":"lowIncomeA","2746":"lowIncomeB","2747":"lowIncomeA","2748":"lowIncomeA","2749":"lowIncomeA","2750":"lowIncomeA","2751":"lowIncomeB","2752":"lowIncomeA","2753":"lowIncomeB","2754":"lowIncomeB","2755":"lowIncomeB","2756":"midIncome","2757":"lowIncomeB","2758":"lowIncomeB","2759":"lowIncomeB","2760":"lowIncomeA","2761":"lowIncomeB","2762":"lowIncomeB","2763":"lowIncomeB","2764":"lowIncomeA","2765":"lowIncomeA","2766":"lowIncomeA","2767":"lowIncomeB","2768":"lowIncomeA","2769":"lowIncomeB","2770":"lowIncomeA","2771":"lowIncomeB","2772":"lowIncomeA","2773":"lowIncomeB","2774":"lowIncomeB","2775":"lowIncomeB","2776":"lowIncomeB","2777":"lowIncomeA","2778":"lowIncomeB","2779":"lowIncomeA","2780":"lowIncomeB","2781":"lowIncomeB","2782":"lowIncomeA","2783":"lowIncomeA","2784":"lowIncomeA","2785":"lowIncomeB","2786":"lowIncomeA","2787":"lowIncomeA","2788":"lowIncomeA","2789":"lowIncomeA","2790":"lowIncomeA","2791":"lowIncomeB","2792":"lowIncomeA","2793":"lowIncomeA","2794":"lowIncomeB","2795":"lowIncomeB","2796":"lowIncomeA","2797":"midIncome","2798":"lowIncomeA","2799":"lowIncomeA","2800":"lowIncomeA","2801":"lowIncomeA","2802":"lowIncomeB","2803":"lowIncomeA","2804":"lowIncomeB","2805":"lowIncomeB","2806":"midIncome","2807":"lowIncomeB","2808":"lowIncomeB","2809":"lowIncomeA","2810":"lowIncomeB","2811":"lowIncomeA","2812":"midIncome","2813":"lowIncomeA","2814":"lowIncomeB","2815":"lowIncomeB","2816":"lowIncomeA","2817":"lowIncomeB","2818":"lowIncomeB","2819":"lowIncomeB","2820":"lowIncomeA","2821":"lowIncomeA","2822":"lowIncomeA","2823":"lowIncomeB","2824":"lowIncomeA","2825":"lowIncomeA","2826":"lowIncomeA","2827":"lowIncomeA","2828":"lowIncomeB","2829":"lowIncomeA","2830":"lowIncomeA","2831":"lowIncomeA","2832":"lowIncomeA","2833":"lowIncomeA","2834":"lowIncomeB","2835":"midIncome","2836":"lowIncomeB","2837":"midIncome","2838":"lowIncomeB","2839":"midIncome","2840":"lowIncomeA","2841":"lowIncomeA","2842":"lowIncomeA","2843":"lowIncomeA","2844":"lowIncomeA","2845":"lowIncomeB","2846":"lowIncomeA","2847":"lowIncomeB","2848":"midIncome","2849":"lowIncomeB","2850":"lowIncomeA","2851":"lowIncomeA","2852":"lowIncomeA","2853":"lowIncomeA","2854":"lowIncomeA","2855":"lowIncomeB","2856":"lowIncomeA","2857":"lowIncomeA","2858":"lowIncomeB","2859":"midIncome","2860":"midIncome","2861":"lowIncomeA","2862":"lowIncomeA","2863":"lowIncomeB","2864":"lowIncomeA","2865":"lowIncomeA","2866":"lowIncomeA","2867":"lowIncomeA","2868":"lowIncomeA","2869":"midIncome","2870":"lowIncomeA","2871":"lowIncomeA","2872":"lowIncomeA","2873":"lowIncomeB","2874":"lowIncomeA","2875":"lowIncomeA","2876":"midIncome","2877":"lowIncomeA","2878":"lowIncomeA","2879":"lowIncomeA","2880":"lowIncomeB","2881":"lowIncomeB","2882":"lowIncomeB","2883":"lowIncomeA","2884":"lowIncomeA","2885":"lowIncomeA","2886":"lowIncomeB","2887":"lowIncomeA","2888":"lowIncomeB","2889":"lowIncomeA","2890":"lowIncomeB","2891":"lowIncomeA","2892":"lowIncomeA","2893":"lowIncomeA","2894":"lowIncomeA","2895":"lowIncomeA","2896":"lowIncomeB","2897":"lowIncomeA","2898":"lowIncomeA","2899":"lowIncomeB","2900":"midIncome","2901":"lowIncomeA","2902":"lowIncomeA","2903":"lowIncomeA","2904":"lowIncomeB","2905":"lowIncomeB","2906":"lowIncomeA","2907":"lowIncomeB","2908":"lowIncomeB","2909":"lowIncomeA","2910":"lowIncomeA","2911":"lowIncomeA","2912":"lowIncomeB","2913":"lowIncomeB","2914":"lowIncomeB","2915":"lowIncomeA","2916":"lowIncomeB","2917":"lowIncomeA","2918":"lowIncomeA","2919":"lowIncomeB","2920":"lowIncomeA","2921":"lowIncomeA","2922":"lowIncomeA","2923":"lowIncomeB","2924":"midIncome","2925":"lowIncomeB","2926":"lowIncomeA","2927":"midIncome","2928":"lowIncomeB","2929":"midIncome","2930":"lowIncomeB","2931":"lowIncomeB","2932":"lowIncomeA","2933":"lowIncomeA","2934":"lowIncomeA","2935":"midIncome","2936":"lowIncomeA","2937":"lowIncomeA","2938":"lowIncomeA","2939":"lowIncomeB","2940":"lowIncomeA","2941":"lowIncomeA","2942":"lowIncomeB","2943":"lowIncomeA","2944":"lowIncomeA","2945":"lowIncomeB","2946":"midIncome","2947":"lowIncomeB","2948":"lowIncomeB","2949":"lowIncomeA","2950":"lowIncomeB","2951":"lowIncomeA","2952":"lowIncomeA","2953":"lowIncomeA","2954":"lowIncomeA","2955":"lowIncomeA","2956":"midIncome","2957":"lowIncomeB","2958":"midIncome","2959":"lowIncomeA","2960":"lowIncomeB","2961":"midIncome","2962":"lowIncomeA","2963":"lowIncomeA","2964":"lowIncomeA","2965":"lowIncomeA","2966":"lowIncomeB","2967":"lowIncomeA","2968":"lowIncomeA","2969":"lowIncomeA","2970":"lowIncomeA","2971":"lowIncomeA","2972":"lowIncomeA","2973":"lowIncomeB","2974":"lowIncomeB","2975":"lowIncomeB","2976":"lowIncomeA","2977":"lowIncomeA","2978":"lowIncomeA","2979":"lowIncomeB","2980":"lowIncomeB","2981":"lowIncomeA","2982":"lowIncomeA","2983":"lowIncomeB","2984":"lowIncomeA","2985":"lowIncomeA","2986":"lowIncomeA","2987":"lowIncomeA","2988":"lowIncomeA","2989":"lowIncomeB","2990":"midIncome","2991":"lowIncomeB","2992":"lowIncomeA","2993":"lowIncomeB","2994":"lowIncomeB","2995":"lowIncomeB","2996":"lowIncomeA","2997":"midIncome","2998":"lowIncomeB","2999":"lowIncomeB","3000":"lowIncomeA","3001":"lowIncomeB","3002":"lowIncomeA","3003":"lowIncomeA","3004":"lowIncomeA","3005":"lowIncomeA","3006":"lowIncomeA","3007":"lowIncomeB","3008":"midIncome","3009":"lowIncomeB","3010":"lowIncomeB","3011":"lowIncomeB","3012":"lowIncomeB","3013":"lowIncomeB","3014":"lowIncomeA","3015":"lowIncomeB","3016":"lowIncomeA","3017":"lowIncomeA","3018":"lowIncomeA","3019":"lowIncomeA","3020":"lowIncomeB","3021":"lowIncomeA","3022":"lowIncomeB","3023":"lowIncomeA","3024":"lowIncomeA","3025":"lowIncomeA","3026":"lowIncomeB","3027":"lowIncomeA","3028":"lowIncomeA","3029":"lowIncomeA","3030":"lowIncomeB","3031":"lowIncomeA","3032":"lowIncomeB","3033":"lowIncomeB","3034":"lowIncomeA","3035":"lowIncomeB","3036":"lowIncomeA","3037":"lowIncomeA","3038":"lowIncomeA","3039":"lowIncomeA","3040":"lowIncomeA","3041":"lowIncomeB","3042":"lowIncomeA","3043":"lowIncomeB","3044":"midIncome","3045":"lowIncomeA","3046":"lowIncomeA","3047":"lowIncomeA","3048":"lowIncomeB","3049":"lowIncomeB","3050":"lowIncomeA","3051":"lowIncomeA","3052":"lowIncomeA","3053":"lowIncomeA","3054":"lowIncomeA","3055":"lowIncomeB","3056":"lowIncomeA","3057":"midIncome","3058":"lowIncomeB","3059":"lowIncomeA","3060":"lowIncomeA","3061":"lowIncomeB","3062":"lowIncomeB","3063":"lowIncomeB","3064":"lowIncomeB","3065":"lowIncomeA","3066":"lowIncomeB","3067":"lowIncomeA","3068":"lowIncomeB","3069":"lowIncomeA","3070":"lowIncomeA","3071":"lowIncomeA","3072":"lowIncomeA","3073":"lowIncomeB","3074":"lowIncomeB","3075":"lowIncomeB","3076":"lowIncomeB","3077":"lowIncomeA","3078":"lowIncomeB","3079":"lowIncomeA","3080":"lowIncomeB","3081":"lowIncomeB","3082":"lowIncomeA","3083":"lowIncomeA","3084":"midIncome","3085":"midIncome","3086":"midIncome","3087":"lowIncomeA","3088":"lowIncomeA","3089":"lowIncomeA","3090":"lowIncomeB","3091":"lowIncomeA","3092":"lowIncomeA","3093":"midIncome","3094":"lowIncomeB","3095":"lowIncomeA","3096":"lowIncomeB","3097":"lowIncomeA","3098":"lowIncomeB","3099":"lowIncomeA","3100":"lowIncomeA","3101":"lowIncomeB","3102":"lowIncomeA","3103":"lowIncomeB","3104":"lowIncomeA","3105":"lowIncomeA","3106":"lowIncomeA","3107":"midIncome","3108":"lowIncomeA","3109":"midIncome","3110":"lowIncomeB","3111":"lowIncomeA","3112":"lowIncomeA","3113":"lowIncomeB","3114":"midIncome","3115":"lowIncomeB","3116":"lowIncomeA","3117":"lowIncomeB","3118":"lowIncomeA","3119":"lowIncomeA","3120":"lowIncomeB","3121":"lowIncomeA","3122":"midIncome","3123":"lowIncomeA","3124":"lowIncomeA","3125":"lowIncomeA","3126":"lowIncomeB","3127":"lowIncomeA","3128":"lowIncomeA","3129":"lowIncomeB","3130":"lowIncomeB","3131":"lowIncomeA","3132":"lowIncomeA","3133":"lowIncomeA","3134":"lowIncomeA","3135":"lowIncomeB","3136":"lowIncomeA","3137":"lowIncomeA","3138":"lowIncomeA","3139":"lowIncomeB","3140":"lowIncomeA","3141":"lowIncomeB","3142":"lowIncomeA","3143":"lowIncomeB","3144":"lowIncomeA","3145":"lowIncomeB","3146":"lowIncomeA","3147":"lowIncomeB","3148":"lowIncomeA","3149":"midIncome","3150":"lowIncomeB","3151":"lowIncomeA","3152":"lowIncomeA","3153":"midIncome","3154":"lowIncomeA","3155":"lowIncomeA","3156":"lowIncomeA","3157":"lowIncomeB","3158":"lowIncomeA","3159":"lowIncomeA","3160":"lowIncomeB","3161":"lowIncomeA","3162":"lowIncomeB","3163":"lowIncomeA","3164":"lowIncomeB","3165":"midIncome","3166":"lowIncomeA","3167":"lowIncomeA","3168":"lowIncomeA","3169":"midIncome","3170":"lowIncomeB","3171":"midIncome","3172":"lowIncomeA","3173":"midIncome","3174":"lowIncomeA","3175":"lowIncomeA","3176":"midIncome","3177":"lowIncomeA","3178":"midIncome","3179":"lowIncomeB","3180":"lowIncomeA","3181":"lowIncomeB","3182":"lowIncomeB","3183":"lowIncomeB","3184":"lowIncomeB","3185":"lowIncomeB","3186":"lowIncomeA","3187":"lowIncomeA","3188":"lowIncomeA","3189":"lowIncomeB","3190":"lowIncomeA","3191":"lowIncomeB","3192":"lowIncomeB","3193":"lowIncomeB","3194":"lowIncomeA","3195":"midIncome","3196":"lowIncomeA","3197":"midIncome","3198":"lowIncomeA","3199":"lowIncomeB","3200":"lowIncomeA","3201":"lowIncomeA","3202":"lowIncomeB","3203":"lowIncomeB","3204":"lowIncomeB","3205":"lowIncomeA","3206":"lowIncomeA","3207":"lowIncomeA","3208":"lowIncomeA","3209":"lowIncomeB","3210":"midIncome","3211":"midIncome","3212":"lowIncomeA","3213":"lowIncomeB","3214":"lowIncomeA","3215":"lowIncomeA","3216":"midIncome","3217":"lowIncomeA","3218":"midIncome","3219":"lowIncomeA","3220":"lowIncomeA","3221":"lowIncomeB","3222":"lowIncomeA","3223":"lowIncomeA","3224":"lowIncomeA","3225":"lowIncomeA","3226":"lowIncomeB","3227":"lowIncomeB","3228":"lowIncomeA","3229":"lowIncomeA","3230":"lowIncomeA","3231":"lowIncomeA","3232":"lowIncomeA","3233":"lowIncomeB","3234":"lowIncomeB","3235":"lowIncomeA","3236":"lowIncomeB","3237":"lowIncomeB","3238":"lowIncomeA","3239":"lowIncomeA","3240":"lowIncomeB","3241":"lowIncomeA","3242":"lowIncomeA","3243":"lowIncomeA","3244":"lowIncomeB","3245":"lowIncomeB","3246":"lowIncomeB","3247":"lowIncomeB","3248":"lowIncomeB","3249":"lowIncomeB","3250":"lowIncomeA","3251":"midIncome","3252":"lowIncomeB","3253":"lowIncomeA","3254":"lowIncomeB","3255":"lowIncomeA","3256":"lowIncomeB","3257":"lowIncomeA","3258":"lowIncomeB","3259":"midIncome","3260":"lowIncomeA","3261":"lowIncomeA","3262":"midIncome","3263":"midIncome","3264":"lowIncomeA","3265":"lowIncomeA","3266":"midIncome","3267":"lowIncomeB","3268":"lowIncomeA","3269":"lowIncomeA","3270":"lowIncomeA","3271":"lowIncomeA","3272":"lowIncomeB","3273":"midIncome","3274":"lowIncomeB","3275":"midIncome","3276":"lowIncomeA","3277":"lowIncomeA","3278":"lowIncomeA","3279":"midIncome","3280":"lowIncomeA","3281":"lowIncomeA","3282":"lowIncomeA","3283":"lowIncomeA","3284":"lowIncomeA","3285":"lowIncomeA","3286":"lowIncomeA","3287":"lowIncomeA","3288":"lowIncomeB","3289":"lowIncomeB","3290":"lowIncomeB","3291":"lowIncomeA","3292":"lowIncomeA","3293":"lowIncomeA","3294":"lowIncomeB","3295":"lowIncomeB","3296":"lowIncomeA","3297":"lowIncomeB","3298":"lowIncomeA","3299":"lowIncomeA","3300":"lowIncomeA","3301":"lowIncomeA","3302":"lowIncomeA","3303":"lowIncomeA","3304":"lowIncomeA","3305":"lowIncomeA","3306":"lowIncomeB","3307":"lowIncomeA","3308":"lowIncomeA","3309":"lowIncomeA","3310":"lowIncomeA","3311":"lowIncomeB","3312":"lowIncomeA","3313":"lowIncomeB","3314":"lowIncomeA","3315":"lowIncomeB","3316":"lowIncomeB","3317":"lowIncomeB","3318":"lowIncomeA","3319":"lowIncomeA","3320":"lowIncomeA","3321":"lowIncomeB","3322":"lowIncomeB","3323":"lowIncomeA","3324":"lowIncomeA","3325":"lowIncomeB","3326":"lowIncomeB","3327":"lowIncomeB","3328":"lowIncomeA","3329":"lowIncomeB","3330":"lowIncomeA","3331":"lowIncomeB","3332":"lowIncomeA","3333":"lowIncomeB","3334":"lowIncomeA","3335":"lowIncomeB","3336":"lowIncomeA","3337":"lowIncomeA","3338":"lowIncomeA","3339":"lowIncomeA","3340":"lowIncomeA","3341":"lowIncomeA","3342":"lowIncomeB","3343":"lowIncomeB","3344":"lowIncomeA","3345":"midIncome","3346":"lowIncomeA","3347":"lowIncomeB","3348":"lowIncomeA","3349":"lowIncomeA","3350":"midIncome","3351":"lowIncomeB","3352":"lowIncomeA","3353":"lowIncomeA","3354":"lowIncomeA","3355":"lowIncomeA","3356":"lowIncomeA","3357":"lowIncomeA","3358":"lowIncomeB","3359":"lowIncomeA","3360":"midIncome","3361":"lowIncomeB","3362":"lowIncomeB","3363":"lowIncomeB","3364":"lowIncomeA","3365":"lowIncomeB","3366":"lowIncomeA","3367":"lowIncomeB","3368":"lowIncomeA","3369":"midIncome","3370":"midIncome","3371":"lowIncomeB","3372":"lowIncomeA","3373":"lowIncomeA","3374":"lowIncomeA","3375":"lowIncomeB","3376":"midIncome","3377":"lowIncomeA","3378":"lowIncomeB","3379":"lowIncomeB","3380":"lowIncomeB","3381":"lowIncomeB","3382":"lowIncomeA","3383":"lowIncomeB","3384":"lowIncomeA","3385":"lowIncomeB","3386":"lowIncomeB","3387":"lowIncomeB","3388":"lowIncomeA","3389":"midIncome","3390":"lowIncomeB","3391":"lowIncomeB","3392":"lowIncomeA","3393":"lowIncomeB","3394":"lowIncomeA","3395":"lowIncomeB","3396":"lowIncomeB","3397":"lowIncomeB","3398":"lowIncomeA","3399":"lowIncomeB","3400":"lowIncomeA","3401":"midIncome","3402":"lowIncomeA","3403":"lowIncomeB","3404":"lowIncomeB","3405":"lowIncomeA","3406":"midIncome","3407":"lowIncomeB","3408":"lowIncomeB","3409":"midIncome","3410":"lowIncomeB","3411":"lowIncomeB","3412":"lowIncomeA","3413":"lowIncomeB","3414":"lowIncomeA","3415":"lowIncomeB","3416":"lowIncomeA","3417":"lowIncomeB","3418":"lowIncomeB","3419":"lowIncomeB","3420":"midIncome","3421":"lowIncomeA","3422":"lowIncomeB","3423":"lowIncomeB","3424":"lowIncomeA","3425":"lowIncomeA","3426":"lowIncomeA","3427":"lowIncomeA","3428":"lowIncomeB","3429":"lowIncomeB","3430":"lowIncomeB","3431":"lowIncomeB","3432":"lowIncomeB","3433":"lowIncomeA","3434":"lowIncomeB","3435":"lowIncomeB","3436":"lowIncomeA","3437":"lowIncomeA","3438":"lowIncomeB","3439":"midIncome","3440":"lowIncomeA","3441":"lowIncomeB","3442":"lowIncomeB","3443":"lowIncomeB","3444":"lowIncomeB","3445":"lowIncomeB","3446":"lowIncomeA","3447":"lowIncomeA","3448":"lowIncomeA","3449":"midIncome","3450":"lowIncomeA","3451":"lowIncomeB","3452":"midIncome","3453":"lowIncomeA","3454":"lowIncomeB","3455":"lowIncomeA","3456":"lowIncomeB","3457":"lowIncomeA","3458":"midIncome","3459":"lowIncomeB","3460":"lowIncomeB","3461":"lowIncomeA","3462":"lowIncomeA","3463":"lowIncomeA","3464":"lowIncomeA","3465":"lowIncomeB","3466":"lowIncomeA","3467":"lowIncomeB","3468":"midIncome","3469":"lowIncomeB","3470":"lowIncomeB","3471":"lowIncomeA","3472":"lowIncomeB","3473":"lowIncomeB","3474":"lowIncomeB","3475":"lowIncomeB","3476":"midIncome","3477":"lowIncomeA","3478":"lowIncomeA","3479":"lowIncomeA","3480":"lowIncomeB","3481":"lowIncomeA","3482":"lowIncomeB","3483":"lowIncomeB","3484":"lowIncomeA","3485":"lowIncomeA","3486":"lowIncomeA","3487":"lowIncomeB","3488":"midIncome","3489":"lowIncomeB","3490":"lowIncomeA","3491":"lowIncomeA","3492":"midIncome","3493":"lowIncomeA","3494":"midIncome","3495":"lowIncomeA","3496":"lowIncomeA","3497":"lowIncomeB","3498":"lowIncomeB","3499":"midIncome","3500":"lowIncomeA","3501":"lowIncomeA","3502":"lowIncomeA","3503":"lowIncomeA","3504":"lowIncomeA","3505":"lowIncomeB","3506":"lowIncomeA","3507":"lowIncomeB","3508":"lowIncomeB","3509":"lowIncomeB","3510":"lowIncomeB","3511":"lowIncomeB","3512":"lowIncomeB","3513":"midIncome","3514":"lowIncomeA","3515":"midIncome","3516":"lowIncomeB","3517":"lowIncomeA","3518":"lowIncomeA","3519":"lowIncomeB","3520":"lowIncomeA","3521":"lowIncomeB","3522":"lowIncomeA","3523":"midIncome","3524":"lowIncomeA","3525":"lowIncomeA","3526":"lowIncomeB","3527":"lowIncomeB","3528":"lowIncomeA","3529":"lowIncomeB","3530":"lowIncomeB","3531":"lowIncomeA","3532":"lowIncomeA","3533":"lowIncomeB","3534":"lowIncomeB","3535":"lowIncomeB","3536":"lowIncomeB","3537":"lowIncomeB","3538":"lowIncomeA","3539":"lowIncomeB","3540":"midIncome","3541":"lowIncomeA","3542":"lowIncomeA","3543":"lowIncomeA","3544":"lowIncomeB","3545":"lowIncomeB","3546":"lowIncomeB","3547":"lowIncomeA","3548":"lowIncomeA","3549":"lowIncomeA","3550":"lowIncomeB","3551":"midIncome","3552":"lowIncomeA","3553":"lowIncomeB","3554":"lowIncomeA","3555":"lowIncomeB","3556":"lowIncomeB","3557":"lowIncomeA","3558":"lowIncomeB","3559":"lowIncomeB","3560":"lowIncomeB","3561":"lowIncomeB","3562":"midIncome","3563":"lowIncomeB","3564":"lowIncomeB","3565":"lowIncomeA","3566":"lowIncomeB","3567":"lowIncomeB","3568":"lowIncomeB","3569":"lowIncomeA","3570":"lowIncomeA","3571":"lowIncomeB","3572":"midIncome","3573":"lowIncomeB","3574":"lowIncomeA","3575":"lowIncomeB","3576":"lowIncomeB","3577":"midIncome","3578":"midIncome","3579":"lowIncomeB","3580":"lowIncomeB","3581":"lowIncomeB","3582":"lowIncomeB","3583":"lowIncomeA","3584":"lowIncomeB","3585":"lowIncomeA","3586":"lowIncomeB","3587":"lowIncomeB","3588":"lowIncomeA","3589":"lowIncomeB","3590":"lowIncomeB","3591":"lowIncomeB","3592":"lowIncomeB","3593":"midIncome","3594":"midIncome","3595":"lowIncomeB","3596":"lowIncomeB","3597":"lowIncomeA","3598":"lowIncomeA","3599":"lowIncomeA","3600":"lowIncomeA","3601":"lowIncomeB","3602":"midIncome","3603":"lowIncomeA","3604":"lowIncomeA","3605":"lowIncomeB","3606":"lowIncomeA","3607":"lowIncomeB","3608":"lowIncomeA","3609":"midIncome","3610":"lowIncomeA","3611":"lowIncomeB","3612":"lowIncomeB","3613":"lowIncomeB","3614":"lowIncomeB","3615":"lowIncomeA","3616":"lowIncomeA","3617":"lowIncomeA","3618":"lowIncomeB","3619":"lowIncomeB","3620":"lowIncomeB","3621":"lowIncomeB","3622":"midIncome","3623":"lowIncomeA","3624":"midIncome","3625":"lowIncomeA","3626":"midIncome","3627":"lowIncomeA","3628":"lowIncomeA","3629":"lowIncomeB","3630":"lowIncomeA","3631":"lowIncomeB","3632":"lowIncomeA","3633":"lowIncomeB","3634":"highIncome","3635":"highIncome","3636":"highIncome","3637":"midIncome","3638":"highIncome","3639":"highIncome","3640":"highIncome","3641":"highIncome","3642":"highIncome","3643":"highIncome","3644":"midIncome","3645":"highIncome","3646":"highIncome","3647":"highIncome","3648":"highIncome","3649":"highIncome","3650":"highIncome","3651":"highIncome","3652":"highIncome","3653":"highIncome","3654":"highIncome","3655":"highIncome","3656":"highIncome","3657":"highIncome","3658":"highIncome","3659":"highIncome","3660":"midIncome","3661":"highIncome","3662":"highIncome","3663":"highIncome","3664":"highIncome","3665":"highIncome","3666":"midIncome","3667":"highIncome","3668":"highIncome","3669":"highIncome","3670":"highIncome","3671":"highIncome","3672":"highIncome","3673":"highIncome","3674":"midIncome","3675":"highIncome","3676":"highIncome","3677":"highIncome","3678":"midIncome","3679":"midIncome","3680":"highIncome","3681":"highIncome","3682":"midIncome","3683":"highIncome","3684":"highIncome","3685":"highIncome","3686":"highIncome","3687":"highIncome","3688":"highIncome","3689":"midIncome","3690":"highIncome","3691":"midIncome","3692":"highIncome","3693":"highIncome","3694":"highIncome","3695":"highIncome","3696":"highIncome","3697":"highIncome","3698":"midIncome","3699":"highIncome","3700":"highIncome","3701":"midIncome","3702":"highIncome","3703":"midIncome","3704":"midIncome","3705":"highIncome","3706":"highIncome","3707":"midIncome","3708":"highIncome","3709":"highIncome","3710":"midIncome","3711":"midIncome","3712":"highIncome","3713":"highIncome","3714":"highIncome","3715":"midIncome","3716":"highIncome","3717":"midIncome","3718":"highIncome","3719":"highIncome","3720":"highIncome","3721":"highIncome","3722":"midIncome","3723":"midIncome","3724":"highIncome","3725":"highIncome","3726":"highIncome","3727":"highIncome","3728":"highIncome","3729":"highIncome","3730":"highIncome","3731":"highIncome","3732":"highIncome","3733":"highIncome","3734":"highIncome","3735":"highIncome","3736":"highIncome","3737":"highIncome","3738":"midIncome","3739":"highIncome","3740":"highIncome","3741":"highIncome","3742":"midIncome","3743":"midIncome","3744":"midIncome","3745":"midIncome","3746":"highIncome","3747":"highIncome","3748":"midIncome","3749":"highIncome","3750":"highIncome","3751":"highIncome","3752":"highIncome","3753":"highIncome","3754":"highIncome","3755":"highIncome","3756":"highIncome","3757":"highIncome","3758":"midIncome","3759":"midIncome","3760":"highIncome","3761":"highIncome","3762":"highIncome","3763":"highIncome","3764":"highIncome","3765":"highIncome","3766":"highIncome","3767":"highIncome","3768":"highIncome","3769":"highIncome","3770":"highIncome","3771":"highIncome","3772":"highIncome","3773":"midIncome","3774":"midIncome","3775":"midIncome","3776":"highIncome","3777":"highIncome","3778":"highIncome","3779":"highIncome","3780":"highIncome","3781":"midIncome","3782":"highIncome","3783":"highIncome","3784":"highIncome","3785":"highIncome","3786":"highIncome","3787":"highIncome","3788":"midIncome","3789":"highIncome","3790":"highIncome","3791":"highIncome","3792":"midIncome","3793":"highIncome","3794":"highIncome","3795":"highIncome","3796":"highIncome","3797":"highIncome","3798":"highIncome","3799":"highIncome","3800":"highIncome","3801":"midIncome","3802":"highIncome","3803":"highIncome","3804":"highIncome","3805":"highIncome","3806":"highIncome","3807":"highIncome","3808":"highIncome","3809":"highIncome","3810":"highIncome","3811":"midIncome","3812":"highIncome","3813":"midIncome","3814":"highIncome","3815":"highIncome","3816":"highIncome","3817":"midIncome","3818":"highIncome","3819":"highIncome","3820":"highIncome","3821":"highIncome","3822":"highIncome","3823":"highIncome","3824":"midIncome","3825":"highIncome","3826":"highIncome","3827":"highIncome","3828":"midIncome","3829":"highIncome","3830":"highIncome","3831":"highIncome","3832":"highIncome","3833":"highIncome","3834":"highIncome","3835":"midIncome","3836":"midIncome","3837":"highIncome","3838":"highIncome","3839":"midIncome","3840":"highIncome","3841":"midIncome","3842":"highIncome","3843":"highIncome","3844":"highIncome","3845":"highIncome","3846":"midIncome","3847":"highIncome","3848":"highIncome","3849":"highIncome","3850":"highIncome","3851":"midIncome","3852":"highIncome","3853":"highIncome","3854":"highIncome","3855":"highIncome","3856":"midIncome","3857":"highIncome","3858":"highIncome","3859":"highIncome","3860":"highIncome","3861":"midIncome","3862":"highIncome","3863":"highIncome","3864":"highIncome","3865":"highIncome","3866":"highIncome","3867":"highIncome","3868":"midIncome","3869":"highIncome","3870":"highIncome","3871":"highIncome","3872":"highIncome","3873":"highIncome","3874":"highIncome","3875":"highIncome","3876":"highIncome","3877":"highIncome","3878":"highIncome","3879":"highIncome","3880":"highIncome","3881":"midIncome","3882":"highIncome","3883":"highIncome","3884":"highIncome","3885":"highIncome","3886":"highIncome","3887":"highIncome","3888":"highIncome","3889":"midIncome","3890":"highIncome","3891":"highIncome","3892":"highIncome","3893":"highIncome","3894":"midIncome","3895":"highIncome","3896":"highIncome","3897":"highIncome","3898":"highIncome","3899":"highIncome","3900":"highIncome","3901":"highIncome","3902":"highIncome","3903":"highIncome","3904":"highIncome","3905":"highIncome","3906":"highIncome","3907":"highIncome","3908":"highIncome","3909":"highIncome","3910":"highIncome","3911":"highIncome","3912":"highIncome","3913":"midIncome","3914":"midIncome","3915":"highIncome","3916":"highIncome","3917":"highIncome","3918":"highIncome","3919":"highIncome","3920":"highIncome","3921":"highIncome","3922":"highIncome","3923":"midIncome","3924":"highIncome","3925":"midIncome","3926":"highIncome","3927":"highIncome","3928":"highIncome","3929":"highIncome","3930":"highIncome","3931":"highIncome","3932":"highIncome","3933":"midIncome","3934":"highIncome","3935":"highIncome","3936":"midIncome","3937":"highIncome","3938":"highIncome","3939":"highIncome","3940":"midIncome","3941":"highIncome","3942":"highIncome","3943":"highIncome","3944":"midIncome","3945":"highIncome","3946":"highIncome","3947":"highIncome","3948":"highIncome","3949":"midIncome","3950":"midIncome","3951":"highIncome","3952":"highIncome","3953":"midIncome","3954":"highIncome","3955":"highIncome","3956":"highIncome","3957":"highIncome","3958":"midIncome","3959":"highIncome","3960":"highIncome","3961":"midIncome","3962":"highIncome","3963":"midIncome","3964":"highIncome","3965":"midIncome","3966":"highIncome","3967":"midIncome","3968":"highIncome","3969":"highIncome","3970":"midIncome","3971":"highIncome","3972":"midIncome","3973":"highIncome","3974":"midIncome","3975":"midIncome","3976":"highIncome","3977":"midIncome","3978":"midIncome","3979":"highIncome","3980":"highIncome","3981":"highIncome","3982":"highIncome","3983":"highIncome","3984":"highIncome","3985":"midIncome","3986":"highIncome","3987":"highIncome","3988":"highIncome","3989":"midIncome","3990":"highIncome","3991":"highIncome","3992":"highIncome","3993":"highIncome","3994":"highIncome","3995":"midIncome","3996":"highIncome","3997":"highIncome","3998":"highIncome","3999":"highIncome","4000":"highIncome","4001":"highIncome","4002":"highIncome","4003":"highIncome","4004":"highIncome","4005":"highIncome","4006":"highIncome","4007":"highIncome","4008":"highIncome","4009":"highIncome","4010":"midIncome","4011":"highIncome","4012":"midIncome","4013":"highIncome","4014":"highIncome","4015":"highIncome","4016":"highIncome","4017":"highIncome","4018":"highIncome","4019":"highIncome","4020":"highIncome","4021":"midIncome","4022":"highIncome","4023":"highIncome","4024":"highIncome","4025":"highIncome","4026":"highIncome","4027":"highIncome","4028":"highIncome","4029":"highIncome","4030":"midIncome","4031":"highIncome","4032":"highIncome","4033":"highIncome","4034":"highIncome","4035":"midIncome","4036":"highIncome","4037":"highIncome","4038":"highIncome","4039":"highIncome","4040":"highIncome","4041":"highIncome","4042":"highIncome","4043":"highIncome","4044":"highIncome","4045":"highIncome","4046":"highIncome","4047":"midIncome","4048":"highIncome","4049":"highIncome","4050":"highIncome","4051":"highIncome","4052":"highIncome","4053":"highIncome","4054":"highIncome","4055":"midIncome","4056":"highIncome","4057":"midIncome","4058":"highIncome","4059":"highIncome","4060":"highIncome","4061":"midIncome","4062":"midIncome","4063":"midIncome","4064":"midIncome","4065":"highIncome","4066":"highIncome","4067":"midIncome","4068":"highIncome","4069":"midIncome","4070":"highIncome","4071":"highIncome","4072":"highIncome","4073":"highIncome","4074":"highIncome","4075":"highIncome","4076":"highIncome","4077":"highIncome","4078":"midIncome","4079":"highIncome","4080":"highIncome","4081":"midIncome","4082":"highIncome","4083":"midIncome","4084":"highIncome","4085":"highIncome","4086":"highIncome","4087":"highIncome","4088":"highIncome","4089":"highIncome","4090":"highIncome","4091":"midIncome","4092":"highIncome","4093":"highIncome","4094":"highIncome","4095":"highIncome","4096":"highIncome","4097":"highIncome","4098":"highIncome","4099":"midIncome","4100":"highIncome","4101":"highIncome","4102":"midIncome","4103":"highIncome","4104":"highIncome","4105":"midIncome","4106":"highIncome","4107":"highIncome","4108":"highIncome","4109":"highIncome","4110":"highIncome","4111":"highIncome","4112":"midIncome","4113":"highIncome","4114":"highIncome","4115":"highIncome","4116":"highIncome","4117":"highIncome","4118":"highIncome","4119":"midIncome","4120":"highIncome","4121":"highIncome","4122":"highIncome","4123":"highIncome","4124":"highIncome","4125":"highIncome","4126":"highIncome","4127":"highIncome","4128":"highIncome","4129":"highIncome","4130":"highIncome","4131":"highIncome","4132":"highIncome","4133":"highIncome","4134":"highIncome","4135":"highIncome","4136":"highIncome","4137":"highIncome","4138":"highIncome","4139":"highIncome","4140":"highIncome","4141":"highIncome","4142":"highIncome","4143":"highIncome","4144":"highIncome","4145":"highIncome","4146":"highIncome","4147":"highIncome","4148":"highIncome","4149":"highIncome","4150":"highIncome","4151":"highIncome","4152":"highIncome","4153":"highIncome","4154":"highIncome","4155":"highIncome","4156":"highIncome","4157":"highIncome","4158":"highIncome","4159":"highIncome","4160":"highIncome","4161":"highIncome","4162":"highIncome","4163":"highIncome","4164":"midIncome","4165":"midIncome","4166":"highIncome","4167":"highIncome","4168":"highIncome","4169":"highIncome","4170":"midIncome","4171":"midIncome","4172":"highIncome","4173":"highIncome","4174":"highIncome","4175":"highIncome","4176":"highIncome","4177":"midIncome","4178":"highIncome","4179":"midIncome","4180":"highIncome","4181":"highIncome","4182":"highIncome","4183":"highIncome","4184":"midIncome","4185":"highIncome","4186":"midIncome","4187":"highIncome","4188":"highIncome","4189":"highIncome","4190":"highIncome","4191":"highIncome","4192":"highIncome","4193":"highIncome","4194":"highIncome","4195":"midIncome","4196":"midIncome","4197":"highIncome","4198":"midIncome","4199":"highIncome","4200":"midIncome","4201":"highIncome","4202":"highIncome","4203":"highIncome","4204":"highIncome","4205":"highIncome","4206":"highIncome","4207":"highIncome","4208":"highIncome","4209":"highIncome","4210":"highIncome","4211":"highIncome","4212":"highIncome","4213":"highIncome","4214":"highIncome","4215":"midIncome","4216":"highIncome","4217":"highIncome","4218":"highIncome","4219":"highIncome","4220":"highIncome","4221":"midIncome","4222":"highIncome","4223":"highIncome","4224":"highIncome","4225":"highIncome","4226":"highIncome","4227":"midIncome","4228":"highIncome","4229":"highIncome","4230":"highIncome","4231":"highIncome","4232":"highIncome","4233":"highIncome","4234":"highIncome","4235":"highIncome","4236":"highIncome","4237":"highIncome","4238":"highIncome","4239":"highIncome","4240":"highIncome","4241":"midIncome","4242":"highIncome","4243":"highIncome","4244":"highIncome","4245":"highIncome","4246":"highIncome","4247":"highIncome","4248":"highIncome","4249":"midIncome","4250":"highIncome","4251":"highIncome","4252":"highIncome","4253":"midIncome","4254":"highIncome","4255":"midIncome","4256":"highIncome","4257":"highIncome","4258":"highIncome","4259":"highIncome","4260":"highIncome","4261":"highIncome","4262":"highIncome","4263":"highIncome","4264":"highIncome","4265":"highIncome","4266":"highIncome","4267":"midIncome","4268":"highIncome","4269":"highIncome","4270":"midIncome","4271":"midIncome","4272":"highIncome","4273":"highIncome","4274":"highIncome","4275":"highIncome","4276":"highIncome","4277":"highIncome","4278":"highIncome","4279":"highIncome","4280":"midIncome","4281":"highIncome","4282":"midIncome","4283":"highIncome","4284":"highIncome","4285":"highIncome","4286":"highIncome","4287":"highIncome","4288":"midIncome","4289":"highIncome","4290":"midIncome","4291":"lowIncomeB","4292":"lowIncomeB","4293":"lowIncomeA","4294":"lowIncomeA","4295":"lowIncomeB","4296":"lowIncomeA","4297":"lowIncomeA","4298":"lowIncomeA","4299":"lowIncomeA","4300":"lowIncomeB","4301":"lowIncomeB","4302":"lowIncomeB","4303":"lowIncomeB","4304":"lowIncomeB","4305":"lowIncomeA","4306":"lowIncomeA","4307":"midIncome","4308":"lowIncomeB","4309":"lowIncomeB","4310":"lowIncomeA","4311":"lowIncomeA","4312":"lowIncomeB","4313":"lowIncomeA","4314":"lowIncomeA","4315":"lowIncomeA","4316":"lowIncomeB","4317":"lowIncomeB","4318":"lowIncomeA","4319":"lowIncomeB","4320":"lowIncomeA","4321":"midIncome","4322":"lowIncomeA","4323":"lowIncomeA","4324":"lowIncomeA","4325":"lowIncomeA","4326":"lowIncomeA","4327":"lowIncomeB","4328":"lowIncomeA","4329":"lowIncomeA","4330":"lowIncomeB","4331":"lowIncomeA","4332":"lowIncomeB","4333":"lowIncomeA","4334":"lowIncomeA","4335":"midIncome","4336":"lowIncomeA","4337":"lowIncomeB","4338":"lowIncomeA","4339":"lowIncomeA","4340":"lowIncomeA","4341":"lowIncomeA","4342":"lowIncomeA","4343":"lowIncomeA","4344":"lowIncomeB","4345":"lowIncomeB","4346":"midIncome","4347":"lowIncomeB","4348":"lowIncomeB","4349":"lowIncomeA","4350":"lowIncomeA","4351":"lowIncomeA","4352":"lowIncomeB","4353":"lowIncomeA","4354":"lowIncomeA","4355":"lowIncomeA","4356":"lowIncomeB","4357":"lowIncomeB","4358":"lowIncomeB","4359":"midIncome","4360":"lowIncomeA","4361":"lowIncomeB","4362":"lowIncomeB","4363":"lowIncomeA","4364":"lowIncomeB","4365":"lowIncomeA","4366":"lowIncomeA","4367":"lowIncomeB","4368":"midIncome","4369":"lowIncomeA","4370":"lowIncomeA","4371":"lowIncomeB","4372":"midIncome","4373":"lowIncomeB","4374":"lowIncomeB","4375":"lowIncomeB","4376":"lowIncomeA","4377":"lowIncomeB","4378":"lowIncomeA","4379":"midIncome","4380":"lowIncomeB","4381":"lowIncomeA","4382":"lowIncomeA","4383":"lowIncomeB","4384":"lowIncomeB","4385":"midIncome","4386":"lowIncomeB","4387":"lowIncomeA","4388":"lowIncomeB","4389":"lowIncomeA","4390":"lowIncomeA","4391":"lowIncomeA","4392":"lowIncomeA","4393":"lowIncomeA","4394":"midIncome","4395":"lowIncomeA","4396":"lowIncomeA","4397":"midIncome","4398":"lowIncomeA","4399":"midIncome","4400":"midIncome","4401":"lowIncomeB","4402":"lowIncomeB","4403":"lowIncomeB","4404":"lowIncomeB","4405":"lowIncomeB","4406":"lowIncomeA","4407":"lowIncomeA","4408":"lowIncomeB","4409":"lowIncomeA","4410":"lowIncomeA","4411":"lowIncomeB","4412":"midIncome","4413":"lowIncomeB","4414":"lowIncomeB","4415":"lowIncomeA","4416":"lowIncomeA","4417":"lowIncomeB","4418":"lowIncomeA","4419":"lowIncomeA","4420":"midIncome","4421":"lowIncomeA","4422":"lowIncomeA","4423":"lowIncomeB","4424":"lowIncomeA","4425":"lowIncomeA","4426":"midIncome","4427":"lowIncomeA","4428":"lowIncomeA","4429":"lowIncomeA","4430":"lowIncomeA","4431":"midIncome","4432":"lowIncomeA","4433":"lowIncomeA","4434":"midIncome","4435":"lowIncomeA","4436":"lowIncomeA","4437":"lowIncomeB","4438":"lowIncomeB","4439":"lowIncomeB","4440":"lowIncomeB","4441":"lowIncomeB","4442":"lowIncomeB","4443":"lowIncomeB","4444":"lowIncomeB","4445":"lowIncomeA","4446":"midIncome","4447":"lowIncomeA","4448":"lowIncomeA","4449":"lowIncomeB","4450":"midIncome","4451":"lowIncomeB","4452":"lowIncomeB","4453":"lowIncomeA","4454":"midIncome","4455":"midIncome","4456":"midIncome","4457":"midIncome","4458":"midIncome","4459":"lowIncomeB","4460":"midIncome","4461":"midIncome","4462":"midIncome","4463":"midIncome","4464":"lowIncomeB","4465":"midIncome","4466":"midIncome","4467":"midIncome","4468":"midIncome","4469":"midIncome","4470":"lowIncomeA","4471":"midIncome","4472":"midIncome","4473":"midIncome","4474":"lowIncomeB","4475":"midIncome","4476":"midIncome","4477":"lowIncomeA","4478":"midIncome","4479":"midIncome","4480":"midIncome","4481":"midIncome","4482":"midIncome","4483":"lowIncomeA","4484":"lowIncomeB","4485":"midIncome","4486":"highIncome","4487":"midIncome","4488":"midIncome","4489":"midIncome","4490":"midIncome","4491":"midIncome","4492":"midIncome","4493":"midIncome","4494":"midIncome","4495":"lowIncomeB","4496":"midIncome","4497":"midIncome","4498":"midIncome","4499":"midIncome","4500":"midIncome","4501":"lowIncomeB","4502":"midIncome","4503":"midIncome","4504":"midIncome","4505":"midIncome","4506":"midIncome","4507":"midIncome","4508":"midIncome","4509":"midIncome","4510":"midIncome","4511":"midIncome","4512":"midIncome","4513":"highIncome","4514":"midIncome","4515":"midIncome","4516":"midIncome","4517":"midIncome","4518":"midIncome","4519":"highIncome","4520":"midIncome","4521":"midIncome","4522":"midIncome","4523":"midIncome","4524":"midIncome","4525":"midIncome","4526":"midIncome","4527":"lowIncomeA","4528":"midIncome","4529":"midIncome","4530":"midIncome","4531":"midIncome","4532":"lowIncomeA","4533":"lowIncomeB","4534":"midIncome","4535":"lowIncomeA","4536":"midIncome","4537":"highIncome","4538":"midIncome","4539":"midIncome","4540":"midIncome","4541":"midIncome","4542":"lowIncomeB","4543":"midIncome","4544":"midIncome","4545":"midIncome","4546":"midIncome","4547":"midIncome","4548":"midIncome","4549":"midIncome","4550":"midIncome","4551":"midIncome","4552":"highIncome","4553":"midIncome","4554":"midIncome","4555":"highIncome","4556":"midIncome","4557":"highIncome","4558":"midIncome","4559":"midIncome","4560":"midIncome","4561":"midIncome","4562":"midIncome","4563":"highIncome","4564":"midIncome","4565":"midIncome","4566":"midIncome","4567":"midIncome","4568":"midIncome","4569":"midIncome","4570":"midIncome","4571":"midIncome","4572":"midIncome","4573":"midIncome","4574":"midIncome","4575":"midIncome","4576":"midIncome","4577":"lowIncomeB","4578":"midIncome","4579":"lowIncomeB","4580":"midIncome","4581":"midIncome","4582":"midIncome","4583":"midIncome","4584":"highIncome","4585":"lowIncomeB","4586":"highIncome","4587":"midIncome","4588":"midIncome","4589":"midIncome","4590":"midIncome","4591":"lowIncomeA","4592":"midIncome","4593":"midIncome","4594":"midIncome","4595":"midIncome","4596":"lowIncomeA","4597":"midIncome","4598":"midIncome","4599":"midIncome","4600":"midIncome","4601":"midIncome","4602":"midIncome","4603":"midIncome","4604":"midIncome","4605":"midIncome","4606":"midIncome","4607":"lowIncomeA","4608":"midIncome","4609":"midIncome","4610":"midIncome","4611":"midIncome","4612":"midIncome","4613":"midIncome","4614":"lowIncomeA","4615":"midIncome","4616":"midIncome","4617":"midIncome","4618":"highIncome","4619":"highIncome","4620":"midIncome","4621":"midIncome","4622":"midIncome","4623":"highIncome","4624":"midIncome","4625":"midIncome","4626":"lowIncomeA","4627":"highIncome","4628":"midIncome","4629":"highIncome","4630":"lowIncomeB","4631":"midIncome","4632":"highIncome","4633":"lowIncomeA","4634":"highIncome","4635":"midIncome","4636":"lowIncomeA","4637":"midIncome","4638":"midIncome","4639":"midIncome","4640":"midIncome","4641":"lowIncomeA","4642":"highIncome","4643":"lowIncomeB","4644":"midIncome","4645":"midIncome","4646":"midIncome","4647":"midIncome","4648":"midIncome","4649":"midIncome","4650":"midIncome","4651":"midIncome","4652":"midIncome","4653":"midIncome","4654":"midIncome","4655":"highIncome","4656":"midIncome","4657":"lowIncomeA","4658":"lowIncomeA","4659":"midIncome","4660":"lowIncomeB","4661":"midIncome","4662":"lowIncomeA","4663":"lowIncomeB","4664":"midIncome","4665":"midIncome","4666":"midIncome","4667":"midIncome","4668":"midIncome","4669":"highIncome","4670":"midIncome","4671":"lowIncomeB","4672":"midIncome","4673":"midIncome","4674":"highIncome","4675":"midIncome","4676":"midIncome","4677":"midIncome","4678":"midIncome","4679":"lowIncomeB","4680":"lowIncomeA","4681":"midIncome","4682":"lowIncomeB","4683":"midIncome","4684":"midIncome","4685":"lowIncomeA","4686":"highIncome","4687":"lowIncomeA","4688":"midIncome","4689":"lowIncomeB","4690":"midIncome","4691":"midIncome","4692":"lowIncomeB","4693":"midIncome","4694":"midIncome","4695":"lowIncomeB","4696":"midIncome","4697":"midIncome","4698":"midIncome","4699":"midIncome","4700":"midIncome","4701":"midIncome","4702":"midIncome","4703":"midIncome","4704":"midIncome","4705":"midIncome","4706":"lowIncomeA","4707":"lowIncomeB","4708":"midIncome","4709":"midIncome","4710":"midIncome","4711":"midIncome","4712":"midIncome","4713":"midIncome","4714":"midIncome","4715":"lowIncomeA","4716":"highIncome","4717":"lowIncomeB","4718":"lowIncomeA","4719":"midIncome","4720":"midIncome","4721":"midIncome","4722":"midIncome","4723":"lowIncomeA","4724":"midIncome","4725":"midIncome","4726":"midIncome","4727":"midIncome","4728":"midIncome","4729":"midIncome","4730":"midIncome","4731":"midIncome","4732":"midIncome","4733":"midIncome","4734":"lowIncomeA","4735":"midIncome","4736":"midIncome","4737":"midIncome","4738":"midIncome","4739":"midIncome","4740":"midIncome","4741":"highIncome","4742":"highIncome","4743":"midIncome","4744":"lowIncomeB","4745":"lowIncomeA","4746":"midIncome","4747":"highIncome","4748":"midIncome","4749":"midIncome","4750":"midIncome","4751":"lowIncomeB","4752":"midIncome","4753":"highIncome","4754":"midIncome","4755":"midIncome","4756":"midIncome","4757":"midIncome","4758":"lowIncomeB","4759":"lowIncomeB","4760":"midIncome","4761":"midIncome","4762":"highIncome","4763":"highIncome","4764":"midIncome","4765":"midIncome","4766":"midIncome","4767":"midIncome","4768":"midIncome","4769":"lowIncomeA","4770":"midIncome","4771":"midIncome","4772":"midIncome","4773":"highIncome","4774":"midIncome","4775":"lowIncomeB","4776":"midIncome","4777":"lowIncomeA","4778":"midIncome","4779":"midIncome","4780":"midIncome","4781":"midIncome","4782":"lowIncomeA","4783":"lowIncomeA","4784":"midIncome","4785":"midIncome","4786":"highIncome","4787":"midIncome","4788":"midIncome","4789":"midIncome","4790":"lowIncomeB","4791":"midIncome","4792":"midIncome","4793":"midIncome","4794":"midIncome","4795":"midIncome","4796":"midIncome","4797":"midIncome","4798":"highIncome","4799":"midIncome","4800":"midIncome","4801":"highIncome","4802":"lowIncomeA","4803":"midIncome","4804":"midIncome","4805":"midIncome","4806":"midIncome","4807":"midIncome","4808":"midIncome","4809":"midIncome","4810":"lowIncomeB","4811":"midIncome","4812":"midIncome","4813":"midIncome","4814":"midIncome","4815":"midIncome","4816":"highIncome","4817":"lowIncomeB","4818":"midIncome","4819":"midIncome","4820":"highIncome","4821":"highIncome","4822":"midIncome","4823":"lowIncomeB","4824":"lowIncomeA","4825":"midIncome","4826":"highIncome","4827":"midIncome","4828":"midIncome","4829":"lowIncomeA","4830":"midIncome","4831":"midIncome","4832":"midIncome","4833":"lowIncomeA","4834":"midIncome","4835":"lowIncomeA","4836":"midIncome","4837":"midIncome","4838":"midIncome","4839":"midIncome","4840":"lowIncomeA","4841":"midIncome","4842":"lowIncomeA","4843":"midIncome","4844":"midIncome","4845":"lowIncomeA","4846":"lowIncomeB","4847":"midIncome","4848":"midIncome","4849":"highIncome","4850":"midIncome","4851":"lowIncomeA","4852":"midIncome","4853":"midIncome","4854":"midIncome","4855":"lowIncomeB","4856":"lowIncomeA","4857":"midIncome","4858":"lowIncomeA","4859":"midIncome","4860":"midIncome","4861":"lowIncomeB","4862":"midIncome","4863":"midIncome","4864":"midIncome","4865":"midIncome","4866":"highIncome","4867":"midIncome","4868":"midIncome","4869":"midIncome","4870":"midIncome","4871":"midIncome","4872":"midIncome","4873":"midIncome","4874":"midIncome","4875":"lowIncomeA","4876":"lowIncomeB","4877":"lowIncomeA","4878":"midIncome","4879":"midIncome","4880":"midIncome","4881":"highIncome","4882":"midIncome","4883":"midIncome","4884":"midIncome","4885":"lowIncomeA","4886":"midIncome","4887":"midIncome","4888":"midIncome","4889":"highIncome","4890":"midIncome","4891":"lowIncomeA","4892":"midIncome","4893":"midIncome","4894":"midIncome","4895":"midIncome","4896":"lowIncomeA","4897":"midIncome","4898":"midIncome","4899":"midIncome","4900":"midIncome","4901":"lowIncomeB","4902":"midIncome","4903":"midIncome","4904":"midIncome","4905":"highIncome","4906":"midIncome","4907":"lowIncomeA","4908":"midIncome","4909":"lowIncomeA","4910":"midIncome","4911":"highIncome","4912":"highIncome","4913":"highIncome","4914":"midIncome","4915":"midIncome","4916":"midIncome","4917":"midIncome","4918":"lowIncomeB","4919":"highIncome","4920":"midIncome","4921":"highIncome","4922":"midIncome","4923":"midIncome","4924":"highIncome","4925":"lowIncomeA","4926":"midIncome","4927":"lowIncomeB","4928":"midIncome","4929":"highIncome","4930":"highIncome","4931":"lowIncomeB","4932":"lowIncomeB","4933":"midIncome","4934":"highIncome","4935":"highIncome","4936":"lowIncomeB","4937":"midIncome","4938":"midIncome","4939":"midIncome","4940":"midIncome","4941":"midIncome","4942":"midIncome","4943":"midIncome","4944":"midIncome","4945":"midIncome","4946":"midIncome","4947":"lowIncomeA","4948":"midIncome","4949":"midIncome","4950":"lowIncomeA","4951":"lowIncomeB","4952":"midIncome","4953":"lowIncomeA","4954":"midIncome","4955":"midIncome","4956":"highIncome","4957":"midIncome","4958":"midIncome","4959":"midIncome","4960":"midIncome","4961":"lowIncomeB","4962":"midIncome","4963":"midIncome","4964":"midIncome","4965":"midIncome","4966":"midIncome","4967":"highIncome","4968":"lowIncomeB","4969":"midIncome","4970":"midIncome","4971":"lowIncomeB","4972":"lowIncomeA","4973":"lowIncomeB","4974":"lowIncomeA","4975":"lowIncomeB","4976":"lowIncomeB","4977":"lowIncomeB","4978":"lowIncomeB","4979":"lowIncomeA","4980":"lowIncomeA","4981":"lowIncomeA","4982":"lowIncomeB","4983":"lowIncomeA","4984":"lowIncomeA","4985":"lowIncomeA","4986":"lowIncomeA","4987":"midIncome","4988":"lowIncomeB","4989":"lowIncomeA","4990":"lowIncomeA","4991":"lowIncomeB","4992":"lowIncomeA","4993":"lowIncomeB","4994":"lowIncomeB","4995":"lowIncomeB","4996":"lowIncomeA","4997":"lowIncomeB","4998":"midIncome","4999":"lowIncomeA","5000":"lowIncomeA","5001":"lowIncomeB","5002":"lowIncomeB","5003":"lowIncomeB","5004":"lowIncomeA","5005":"lowIncomeA","5006":"lowIncomeB","5007":"lowIncomeA","5008":"lowIncomeA","5009":"lowIncomeB","5010":"lowIncomeB","5011":"lowIncomeB","5012":"lowIncomeA","5013":"lowIncomeB","5014":"lowIncomeA","5015":"lowIncomeB","5016":"lowIncomeA","5017":"lowIncomeB","5018":"lowIncomeA","5019":"lowIncomeA","5020":"midIncome","5021":"midIncome","5022":"lowIncomeB","5023":"lowIncomeA","5024":"lowIncomeA","5025":"lowIncomeA","5026":"lowIncomeB","5027":"lowIncomeA","5028":"lowIncomeB","5029":"lowIncomeB","5030":"lowIncomeB","5031":"lowIncomeB","5032":"lowIncomeA","5033":"midIncome","5034":"lowIncomeB","5035":"lowIncomeA","5036":"lowIncomeA","5037":"lowIncomeA","5038":"lowIncomeA","5039":"lowIncomeA","5040":"lowIncomeA","5041":"lowIncomeA","5042":"lowIncomeA","5043":"lowIncomeB","5044":"lowIncomeB","5045":"lowIncomeA","5046":"lowIncomeA","5047":"lowIncomeA","5048":"lowIncomeA","5049":"lowIncomeB","5050":"midIncome","5051":"lowIncomeB","5052":"lowIncomeB","5053":"lowIncomeA","5054":"lowIncomeA","5055":"midIncome","5056":"lowIncomeA","5057":"lowIncomeB","5058":"lowIncomeB","5059":"lowIncomeB","5060":"lowIncomeA","5061":"midIncome","5062":"lowIncomeB","5063":"lowIncomeA","5064":"lowIncomeA","5065":"midIncome","5066":"midIncome","5067":"lowIncomeA","5068":"lowIncomeB","5069":"lowIncomeA","5070":"lowIncomeB","5071":"lowIncomeB","5072":"lowIncomeB","5073":"lowIncomeB","5074":"lowIncomeB","5075":"lowIncomeB","5076":"lowIncomeA","5077":"lowIncomeA","5078":"lowIncomeB","5079":"lowIncomeB","5080":"lowIncomeA","5081":"lowIncomeB","5082":"lowIncomeB","5083":"lowIncomeA","5084":"lowIncomeB","5085":"lowIncomeB","5086":"lowIncomeA","5087":"lowIncomeA","5088":"lowIncomeB","5089":"lowIncomeA","5090":"lowIncomeA","5091":"lowIncomeB","5092":"lowIncomeB","5093":"lowIncomeA","5094":"lowIncomeB","5095":"lowIncomeA","5096":"lowIncomeA","5097":"lowIncomeB","5098":"lowIncomeB","5099":"lowIncomeB","5100":"lowIncomeB","5101":"lowIncomeB","5102":"midIncome","5103":"lowIncomeB","5104":"lowIncomeB","5105":"lowIncomeB","5106":"lowIncomeB","5107":"lowIncomeB","5108":"lowIncomeA","5109":"lowIncomeA","5110":"lowIncomeB","5111":"midIncome","5112":"lowIncomeA","5113":"lowIncomeA","5114":"lowIncomeA","5115":"lowIncomeA","5116":"midIncome","5117":"lowIncomeA","5118":"lowIncomeB","5119":"lowIncomeB","5120":"lowIncomeA","5121":"lowIncomeB","5122":"lowIncomeB","5123":"lowIncomeB","5124":"lowIncomeB","5125":"lowIncomeB","5126":"lowIncomeB","5127":"lowIncomeA","5128":"lowIncomeA","5129":"lowIncomeB","5130":"lowIncomeB","5131":"lowIncomeB","5132":"lowIncomeB","5133":"lowIncomeB","5134":"lowIncomeB","5135":"lowIncomeB","5136":"lowIncomeB","5137":"lowIncomeA","5138":"midIncome","5139":"lowIncomeA","5140":"lowIncomeB","5141":"midIncome","5142":"midIncome","5143":"lowIncomeB","5144":"lowIncomeB","5145":"lowIncomeA","5146":"lowIncomeB","5147":"lowIncomeB","5148":"lowIncomeB","5149":"lowIncomeA","5150":"lowIncomeB","5151":"lowIncomeA","5152":"lowIncomeA","5153":"midIncome","5154":"lowIncomeA","5155":"lowIncomeB","5156":"lowIncomeB","5157":"lowIncomeA","5158":"lowIncomeA","5159":"lowIncomeA","5160":"lowIncomeA","5161":"lowIncomeA","5162":"lowIncomeB","5163":"lowIncomeA","5164":"lowIncomeA","5165":"lowIncomeA","5166":"lowIncomeB","5167":"lowIncomeA","5168":"lowIncomeB","5169":"lowIncomeB","5170":"lowIncomeB","5171":"lowIncomeB","5172":"lowIncomeA","5173":"lowIncomeB","5174":"lowIncomeB","5175":"lowIncomeA","5176":"lowIncomeB","5177":"midIncome","5178":"lowIncomeB","5179":"lowIncomeA","5180":"lowIncomeA","5181":"lowIncomeB","5182":"lowIncomeA","5183":"lowIncomeB","5184":"lowIncomeB","5185":"midIncome","5186":"lowIncomeA","5187":"lowIncomeA","5188":"lowIncomeB","5189":"lowIncomeA","5190":"lowIncomeB","5191":"lowIncomeB","5192":"lowIncomeA","5193":"lowIncomeB","5194":"lowIncomeB","5195":"midIncome","5196":"lowIncomeB","5197":"lowIncomeA","5198":"lowIncomeB","5199":"lowIncomeA","5200":"lowIncomeA","5201":"lowIncomeB","5202":"midIncome","5203":"midIncome","5204":"lowIncomeA","5205":"midIncome","5206":"midIncome","5207":"lowIncomeB","5208":"midIncome","5209":"midIncome","5210":"midIncome","5211":"highIncome","5212":"midIncome","5213":"midIncome","5214":"highIncome","5215":"midIncome","5216":"midIncome","5217":"lowIncomeA","5218":"midIncome","5219":"lowIncomeA","5220":"midIncome","5221":"midIncome","5222":"midIncome","5223":"midIncome","5224":"midIncome","5225":"midIncome","5226":"midIncome","5227":"midIncome","5228":"highIncome","5229":"midIncome","5230":"lowIncomeB","5231":"lowIncomeA","5232":"lowIncomeA","5233":"midIncome","5234":"lowIncomeA","5235":"midIncome","5236":"lowIncomeB","5237":"midIncome","5238":"highIncome","5239":"midIncome","5240":"midIncome","5241":"midIncome","5242":"lowIncomeA","5243":"midIncome","5244":"midIncome","5245":"midIncome","5246":"midIncome","5247":"midIncome","5248":"midIncome","5249":"lowIncomeB","5250":"midIncome","5251":"midIncome","5252":"midIncome","5253":"lowIncomeA","5254":"midIncome","5255":"midIncome","5256":"highIncome","5257":"lowIncomeA","5258":"lowIncomeA","5259":"lowIncomeA","5260":"midIncome","5261":"midIncome","5262":"midIncome","5263":"midIncome","5264":"lowIncomeA","5265":"lowIncomeA","5266":"midIncome","5267":"midIncome","5268":"midIncome","5269":"midIncome","5270":"lowIncomeB","5271":"highIncome","5272":"midIncome","5273":"midIncome","5274":"midIncome","5275":"midIncome","5276":"midIncome","5277":"midIncome","5278":"midIncome","5279":"midIncome","5280":"midIncome","5281":"highIncome","5282":"midIncome","5283":"lowIncomeB","5284":"midIncome","5285":"midIncome","5286":"midIncome","5287":"midIncome","5288":"midIncome","5289":"lowIncomeB","5290":"midIncome","5291":"midIncome","5292":"midIncome","5293":"midIncome","5294":"midIncome","5295":"midIncome","5296":"midIncome","5297":"midIncome","5298":"midIncome","5299":"midIncome","5300":"midIncome","5301":"midIncome","5302":"midIncome","5303":"midIncome","5304":"lowIncomeB","5305":"midIncome","5306":"midIncome","5307":"midIncome","5308":"midIncome","5309":"lowIncomeB","5310":"midIncome","5311":"highIncome","5312":"midIncome","5313":"midIncome","5314":"highIncome","5315":"midIncome","5316":"midIncome","5317":"highIncome","5318":"midIncome","5319":"midIncome","5320":"midIncome","5321":"lowIncomeA","5322":"midIncome","5323":"midIncome","5324":"midIncome","5325":"midIncome","5326":"midIncome","5327":"lowIncomeA","5328":"midIncome","5329":"midIncome","5330":"lowIncomeA","5331":"midIncome","5332":"lowIncomeA","5333":"midIncome","5334":"midIncome","5335":"midIncome","5336":"midIncome","5337":"midIncome","5338":"midIncome","5339":"midIncome","5340":"lowIncomeA","5341":"midIncome","5342":"midIncome","5343":"midIncome","5344":"midIncome","5345":"midIncome","5346":"highIncome","5347":"lowIncomeA","5348":"midIncome","5349":"highIncome","5350":"highIncome","5351":"lowIncomeB","5352":"lowIncomeB","5353":"midIncome","5354":"lowIncomeB","5355":"highIncome","5356":"midIncome","5357":"midIncome","5358":"highIncome","5359":"lowIncomeA","5360":"midIncome","5361":"midIncome","5362":"lowIncomeB","5363":"midIncome","5364":"midIncome","5365":"midIncome","5366":"midIncome","5367":"midIncome","5368":"lowIncomeA","5369":"midIncome","5370":"midIncome","5371":"midIncome","5372":"midIncome","5373":"midIncome","5374":"highIncome","5375":"midIncome","5376":"midIncome","5377":"highIncome","5378":"midIncome","5379":"midIncome","5380":"midIncome","5381":"midIncome","5382":"lowIncomeA","5383":"midIncome","5384":"midIncome","5385":"lowIncomeA","5386":"midIncome","5387":"midIncome","5388":"midIncome","5389":"midIncome","5390":"lowIncomeA","5391":"lowIncomeA","5392":"lowIncomeB","5393":"highIncome","5394":"lowIncomeA","5395":"midIncome","5396":"midIncome","5397":"midIncome","5398":"midIncome","5399":"midIncome","5400":"midIncome","5401":"highIncome","5402":"lowIncomeB","5403":"midIncome","5404":"midIncome","5405":"midIncome","5406":"midIncome","5407":"lowIncomeB","5408":"midIncome","5409":"midIncome","5410":"midIncome","5411":"midIncome","5412":"midIncome","5413":"lowIncomeA","5414":"midIncome","5415":"midIncome","5416":"midIncome","5417":"midIncome","5418":"midIncome","5419":"midIncome","5420":"midIncome","5421":"midIncome","5422":"highIncome","5423":"midIncome","5424":"midIncome","5425":"lowIncomeB","5426":"lowIncomeB","5427":"midIncome","5428":"midIncome","5429":"lowIncomeA","5430":"midIncome","5431":"midIncome","5432":"midIncome","5433":"midIncome","5434":"midIncome","5435":"highIncome","5436":"lowIncomeB","5437":"lowIncomeA","5438":"midIncome","5439":"midIncome","5440":"midIncome","5441":"midIncome","5442":"midIncome","5443":"midIncome","5444":"midIncome","5445":"midIncome","5446":"lowIncomeA","5447":"lowIncomeB","5448":"midIncome","5449":"midIncome","5450":"midIncome","5451":"highIncome","5452":"lowIncomeB","5453":"midIncome","5454":"midIncome","5455":"midIncome","5456":"highIncome","5457":"midIncome","5458":"midIncome","5459":"highIncome","5460":"midIncome","5461":"midIncome","5462":"midIncome","5463":"midIncome","5464":"lowIncomeB","5465":"lowIncomeA","5466":"midIncome","5467":"midIncome","5468":"midIncome","5469":"lowIncomeB","5470":"midIncome","5471":"midIncome","5472":"lowIncomeB","5473":"midIncome","5474":"midIncome","5475":"midIncome","5476":"midIncome","5477":"midIncome","5478":"midIncome","5479":"midIncome","5480":"midIncome","5481":"midIncome","5482":"highIncome","5483":"midIncome","5484":"midIncome","5485":"midIncome","5486":"midIncome","5487":"midIncome","5488":"midIncome","5489":"lowIncomeA","5490":"midIncome","5491":"midIncome","5492":"midIncome","5493":"midIncome","5494":"lowIncomeA","5495":"highIncome","5496":"midIncome","5497":"midIncome","5498":"midIncome","5499":"midIncome","5500":"midIncome","5501":"midIncome","5502":"midIncome","5503":"midIncome","5504":"midIncome","5505":"lowIncomeA","5506":"lowIncomeB","5507":"lowIncomeB","5508":"midIncome","5509":"highIncome","5510":"highIncome","5511":"midIncome","5512":"midIncome","5513":"midIncome","5514":"midIncome","5515":"midIncome","5516":"midIncome","5517":"lowIncomeB","5518":"midIncome","5519":"midIncome","5520":"midIncome","5521":"midIncome","5522":"midIncome","5523":"midIncome","5524":"midIncome","5525":"midIncome","5526":"midIncome","5527":"highIncome","5528":"midIncome","5529":"midIncome","5530":"midIncome","5531":"midIncome","5532":"midIncome","5533":"midIncome","5534":"lowIncomeB","5535":"midIncome","5536":"midIncome","5537":"midIncome","5538":"midIncome","5539":"midIncome","5540":"midIncome","5541":"midIncome","5542":"midIncome","5543":"midIncome","5544":"midIncome","5545":"midIncome","5546":"highIncome","5547":"midIncome","5548":"midIncome","5549":"lowIncomeB","5550":"midIncome","5551":"midIncome","5552":"midIncome","5553":"highIncome","5554":"midIncome","5555":"midIncome","5556":"lowIncomeA","5557":"midIncome","5558":"midIncome","5559":"midIncome","5560":"midIncome","5561":"midIncome","5562":"highIncome","5563":"highIncome","5564":"lowIncomeA","5565":"midIncome","5566":"midIncome","5567":"midIncome","5568":"midIncome","5569":"midIncome","5570":"midIncome","5571":"midIncome","5572":"midIncome","5573":"lowIncomeB","5574":"lowIncomeB","5575":"midIncome","5576":"midIncome","5577":"midIncome","5578":"midIncome","5579":"midIncome","5580":"midIncome","5581":"midIncome","5582":"midIncome","5583":"lowIncomeA","5584":"midIncome","5585":"midIncome","5586":"midIncome","5587":"midIncome","5588":"midIncome","5589":"lowIncomeB","5590":"midIncome","5591":"lowIncomeB","5592":"midIncome","5593":"midIncome","5594":"lowIncomeB","5595":"lowIncomeA","5596":"midIncome","5597":"lowIncomeB","5598":"midIncome","5599":"highIncome","5600":"midIncome","5601":"midIncome","5602":"midIncome","5603":"midIncome","5604":"midIncome","5605":"midIncome","5606":"lowIncomeA","5607":"midIncome","5608":"lowIncomeA","5609":"midIncome","5610":"highIncome","5611":"highIncome","5612":"highIncome","5613":"midIncome","5614":"midIncome","5615":"lowIncomeA","5616":"midIncome","5617":"midIncome","5618":"midIncome","5619":"midIncome","5620":"midIncome","5621":"midIncome","5622":"lowIncomeB","5623":"midIncome","5624":"midIncome","5625":"midIncome","5626":"lowIncomeB","5627":"lowIncomeB","5628":"midIncome","5629":"midIncome","5630":"midIncome","5631":"midIncome","5632":"midIncome","5633":"midIncome","5634":"midIncome","5635":"midIncome","5636":"midIncome","5637":"midIncome","5638":"lowIncomeA","5639":"midIncome","5640":"midIncome","5641":"midIncome","5642":"midIncome","5643":"lowIncomeA","5644":"midIncome","5645":"midIncome","5646":"midIncome","5647":"midIncome","5648":"midIncome","5649":"midIncome","5650":"midIncome","5651":"midIncome","5652":"midIncome","5653":"midIncome","5654":"midIncome","5655":"midIncome","5656":"midIncome","5657":"midIncome","5658":"highIncome","5659":"midIncome","5660":"midIncome","5661":"midIncome","5662":"midIncome","5663":"lowIncomeB","5664":"lowIncomeB","5665":"lowIncomeA","5666":"lowIncomeA","5667":"midIncome","5668":"midIncome","5669":"midIncome","5670":"midIncome","5671":"midIncome","5672":"highIncome","5673":"midIncome","5674":"midIncome","5675":"lowIncomeB","5676":"midIncome","5677":"lowIncomeB","5678":"midIncome","5679":"midIncome","5680":"midIncome","5681":"lowIncomeB","5682":"midIncome","5683":"midIncome","5684":"lowIncomeB","5685":"midIncome","5686":"midIncome","5687":"midIncome","5688":"highIncome","5689":"lowIncomeA","5690":"lowIncomeA","5691":"lowIncomeA","5692":"highIncome","5693":"lowIncomeA","5694":"lowIncomeB","5695":"midIncome","5696":"midIncome","5697":"midIncome","5698":"midIncome","5699":"midIncome","5700":"midIncome","5701":"midIncome","5702":"highIncome","5703":"midIncome","5704":"midIncome","5705":"lowIncomeA","5706":"midIncome","5707":"midIncome","5708":"lowIncomeB","5709":"midIncome","5710":"midIncome","5711":"midIncome","5712":"midIncome","5713":"lowIncomeA","5714":"lowIncomeA","5715":"midIncome","5716":"midIncome","5717":"midIncome","5718":"lowIncomeA","5719":"midIncome","5720":"midIncome","5721":"midIncome","5722":"midIncome","5723":"midIncome","5724":"midIncome","5725":"midIncome","5726":"midIncome","5727":"midIncome","5728":"midIncome","5729":"highIncome","5730":"midIncome","5731":"midIncome","5732":"midIncome","5733":"midIncome","5734":"midIncome","5735":"midIncome","5736":"midIncome","5737":"lowIncomeA","5738":"highIncome","5739":"midIncome","5740":"lowIncomeB","5741":"midIncome","5742":"highIncome","5743":"highIncome","5744":"midIncome","5745":"midIncome","5746":"midIncome","5747":"midIncome","5748":"midIncome","5749":"midIncome","5750":"midIncome","5751":"midIncome","5752":"midIncome","5753":"lowIncomeB","5754":"midIncome","5755":"lowIncomeB","5756":"midIncome","5757":"midIncome","5758":"midIncome","5759":"highIncome","5760":"midIncome","5761":"midIncome","5762":"midIncome","5763":"midIncome","5764":"lowIncomeA","5765":"highIncome","5766":"midIncome","5767":"lowIncomeA","5768":"midIncome","5769":"midIncome","5770":"midIncome","5771":"highIncome","5772":"midIncome","5773":"midIncome","5774":"midIncome","5775":"midIncome","5776":"midIncome","5777":"lowIncomeA","5778":"lowIncomeA","5779":"lowIncomeA","5780":"midIncome","5781":"midIncome","5782":"highIncome","5783":"lowIncomeB","5784":"midIncome","5785":"midIncome","5786":"midIncome","5787":"midIncome","5788":"lowIncomeA","5789":"midIncome","5790":"midIncome","5791":"midIncome","5792":"midIncome","5793":"midIncome","5794":"midIncome","5795":"lowIncomeA","5796":"midIncome","5797":"lowIncomeA","5798":"midIncome","5799":"midIncome","5800":"midIncome","5801":"midIncome","5802":"highIncome","5803":"midIncome","5804":"lowIncomeA","5805":"midIncome","5806":"midIncome","5807":"midIncome","5808":"lowIncomeA","5809":"midIncome","5810":"midIncome","5811":"midIncome","5812":"midIncome","5813":"lowIncomeA","5814":"midIncome","5815":"midIncome","5816":"midIncome","5817":"midIncome","5818":"lowIncomeB","5819":"midIncome","5820":"midIncome","5821":"midIncome","5822":"midIncome","5823":"highIncome","5824":"midIncome","5825":"midIncome","5826":"lowIncomeA","5827":"midIncome","5828":"midIncome","5829":"midIncome","5830":"midIncome","5831":"lowIncomeB","5832":"lowIncomeB","5833":"midIncome","5834":"midIncome","5835":"midIncome","5836":"midIncome","5837":"midIncome","5838":"midIncome","5839":"lowIncomeA","5840":"midIncome","5841":"highIncome","5842":"midIncome","5843":"midIncome","5844":"lowIncomeB","5845":"lowIncomeB","5846":"highIncome","5847":"midIncome","5848":"lowIncomeB","5849":"lowIncomeB","5850":"midIncome","5851":"midIncome","5852":"midIncome","5853":"lowIncomeB","5854":"highIncome","5855":"midIncome","5856":"midIncome","5857":"highIncome","5858":"midIncome","5859":"midIncome","5860":"lowIncomeA","5861":"lowIncomeB","5862":"lowIncomeA","5863":"lowIncomeA","5864":"lowIncomeA","5865":"lowIncomeA","5866":"lowIncomeA","5867":"lowIncomeB","5868":"lowIncomeB","5869":"lowIncomeB","5870":"lowIncomeA","5871":"lowIncomeB","5872":"lowIncomeA","5873":"lowIncomeA","5874":"midIncome","5875":"lowIncomeA","5876":"midIncome","5877":"lowIncomeB","5878":"lowIncomeB","5879":"midIncome","5880":"midIncome","5881":"lowIncomeB","5882":"lowIncomeA","5883":"lowIncomeA","5884":"lowIncomeB","5885":"lowIncomeB","5886":"lowIncomeA","5887":"lowIncomeA","5888":"lowIncomeA","5889":"lowIncomeB","5890":"lowIncomeB","5891":"lowIncomeB","5892":"lowIncomeA","5893":"lowIncomeB","5894":"lowIncomeB","5895":"lowIncomeB","5896":"lowIncomeB","5897":"lowIncomeA","5898":"lowIncomeA","5899":"lowIncomeA","5900":"midIncome","5901":"lowIncomeA","5902":"lowIncomeA","5903":"lowIncomeA","5904":"lowIncomeA","5905":"lowIncomeB","5906":"lowIncomeA","5907":"lowIncomeB","5908":"lowIncomeA","5909":"lowIncomeB","5910":"lowIncomeB","5911":"lowIncomeB","5912":"lowIncomeA","5913":"lowIncomeB","5914":"lowIncomeA","5915":"lowIncomeA","5916":"lowIncomeB","5917":"lowIncomeB","5918":"lowIncomeA","5919":"lowIncomeA","5920":"lowIncomeB","5921":"lowIncomeA","5922":"lowIncomeB","5923":"lowIncomeA","5924":"lowIncomeA","5925":"lowIncomeA","5926":"lowIncomeB","5927":"lowIncomeB","5928":"lowIncomeB","5929":"lowIncomeB","5930":"lowIncomeB","5931":"midIncome","5932":"lowIncomeB","5933":"lowIncomeB","5934":"lowIncomeA","5935":"lowIncomeA","5936":"lowIncomeA","5937":"lowIncomeA","5938":"lowIncomeA","5939":"lowIncomeB","5940":"lowIncomeB","5941":"midIncome","5942":"lowIncomeA","5943":"lowIncomeA","5944":"lowIncomeB","5945":"lowIncomeA","5946":"lowIncomeB","5947":"lowIncomeB","5948":"lowIncomeB","5949":"lowIncomeA","5950":"lowIncomeB","5951":"midIncome","5952":"lowIncomeA","5953":"lowIncomeB","5954":"lowIncomeA","5955":"lowIncomeB","5956":"lowIncomeA","5957":"lowIncomeA","5958":"lowIncomeA","5959":"lowIncomeA","5960":"lowIncomeA","5961":"lowIncomeB","5962":"lowIncomeA","5963":"lowIncomeA","5964":"lowIncomeB","5965":"lowIncomeA","5966":"lowIncomeB","5967":"lowIncomeA","5968":"lowIncomeA","5969":"lowIncomeA","5970":"lowIncomeB","5971":"lowIncomeA","5972":"lowIncomeA","5973":"lowIncomeA","5974":"lowIncomeB","5975":"lowIncomeB","5976":"lowIncomeB","5977":"lowIncomeB","5978":"lowIncomeB","5979":"lowIncomeB","5980":"lowIncomeB","5981":"midIncome","5982":"lowIncomeA","5983":"lowIncomeB","5984":"midIncome","5985":"lowIncomeA","5986":"lowIncomeA","5987":"lowIncomeA","5988":"lowIncomeB","5989":"lowIncomeB","5990":"lowIncomeA","5991":"lowIncomeA","5992":"lowIncomeB","5993":"lowIncomeA","5994":"lowIncomeA","5995":"lowIncomeB","5996":"lowIncomeA","5997":"lowIncomeB","5998":"lowIncomeA","5999":"lowIncomeB","6000":"lowIncomeA","6001":"lowIncomeB","6002":"lowIncomeB","6003":"lowIncomeB","6004":"lowIncomeA","6005":"lowIncomeA","6006":"lowIncomeA","6007":"lowIncomeA","6008":"lowIncomeB","6009":"lowIncomeB","6010":"lowIncomeA","6011":"lowIncomeB","6012":"lowIncomeA","6013":"lowIncomeA","6014":"lowIncomeB","6015":"lowIncomeA","6016":"lowIncomeB","6017":"lowIncomeB","6018":"lowIncomeB","6019":"lowIncomeB","6020":"lowIncomeB","6021":"lowIncomeA","6022":"lowIncomeB","6023":"lowIncomeA","6024":"lowIncomeB","6025":"lowIncomeB","6026":"lowIncomeA","6027":"lowIncomeA","6028":"lowIncomeA","6029":"lowIncomeA","6030":"lowIncomeA","6031":"lowIncomeB","6032":"lowIncomeA","6033":"lowIncomeA","6034":"lowIncomeA","6035":"lowIncomeB","6036":"lowIncomeB","6037":"lowIncomeB","6038":"lowIncomeA","6039":"lowIncomeB","6040":"lowIncomeA","6041":"midIncome","6042":"lowIncomeA","6043":"lowIncomeA","6044":"lowIncomeA","6045":"lowIncomeA","6046":"lowIncomeB","6047":"lowIncomeA","6048":"lowIncomeA","6049":"lowIncomeA","6050":"midIncome","6051":"lowIncomeB","6052":"lowIncomeB","6053":"lowIncomeA","6054":"lowIncomeA","6055":"lowIncomeB","6056":"lowIncomeB","6057":"lowIncomeA","6058":"lowIncomeA","6059":"lowIncomeA","6060":"lowIncomeA","6061":"lowIncomeA","6062":"lowIncomeB","6063":"lowIncomeA","6064":"midIncome","6065":"lowIncomeA","6066":"lowIncomeA","6067":"lowIncomeB","6068":"lowIncomeB","6069":"lowIncomeA","6070":"lowIncomeA","6071":"lowIncomeA","6072":"lowIncomeA","6073":"lowIncomeB","6074":"midIncome","6075":"lowIncomeA","6076":"lowIncomeA","6077":"midIncome","6078":"lowIncomeA","6079":"lowIncomeA","6080":"midIncome","6081":"lowIncomeA","6082":"lowIncomeB","6083":"midIncome","6084":"lowIncomeA","6085":"lowIncomeA","6086":"lowIncomeA","6087":"lowIncomeA","6088":"lowIncomeB","6089":"lowIncomeB","6090":"lowIncomeA","6091":"lowIncomeB","6092":"lowIncomeA","6093":"lowIncomeA","6094":"lowIncomeB","6095":"lowIncomeA","6096":"lowIncomeB","6097":"lowIncomeA","6098":"lowIncomeB","6099":"lowIncomeA","6100":"lowIncomeA","6101":"lowIncomeB","6102":"lowIncomeB","6103":"lowIncomeB","6104":"lowIncomeA","6105":"lowIncomeB","6106":"lowIncomeA","6107":"midIncome","6108":"lowIncomeA","6109":"lowIncomeB","6110":"lowIncomeB","6111":"lowIncomeA","6112":"lowIncomeA","6113":"lowIncomeB","6114":"lowIncomeB","6115":"lowIncomeB","6116":"lowIncomeB","6117":"lowIncomeA","6118":"lowIncomeB","6119":"lowIncomeA","6120":"lowIncomeA","6121":"lowIncomeA","6122":"midIncome","6123":"lowIncomeB","6124":"lowIncomeA","6125":"midIncome","6126":"lowIncomeB","6127":"lowIncomeB","6128":"lowIncomeB","6129":"lowIncomeA","6130":"lowIncomeB","6131":"lowIncomeB","6132":"lowIncomeA","6133":"midIncome","6134":"lowIncomeB","6135":"lowIncomeB","6136":"lowIncomeA","6137":"lowIncomeB","6138":"lowIncomeB","6139":"lowIncomeA","6140":"lowIncomeB","6141":"lowIncomeA","6142":"midIncome","6143":"lowIncomeA","6144":"lowIncomeB","6145":"lowIncomeB","6146":"midIncome","6147":"lowIncomeB","6148":"lowIncomeA","6149":"lowIncomeB","6150":"lowIncomeA","6151":"lowIncomeB","6152":"lowIncomeA","6153":"lowIncomeA","6154":"lowIncomeA","6155":"lowIncomeA","6156":"lowIncomeA","6157":"lowIncomeB","6158":"lowIncomeB","6159":"midIncome","6160":"lowIncomeB","6161":"lowIncomeB","6162":"lowIncomeB","6163":"lowIncomeA","6164":"lowIncomeA","6165":"lowIncomeA","6166":"midIncome","6167":"lowIncomeA","6168":"lowIncomeA","6169":"lowIncomeA","6170":"lowIncomeA","6171":"lowIncomeB","6172":"midIncome","6173":"lowIncomeA","6174":"midIncome","6175":"midIncome","6176":"lowIncomeA","6177":"lowIncomeA","6178":"lowIncomeA","6179":"lowIncomeA","6180":"lowIncomeB","6181":"lowIncomeA","6182":"lowIncomeA","6183":"lowIncomeA","6184":"lowIncomeB","6185":"lowIncomeA","6186":"lowIncomeB","6187":"lowIncomeA","6188":"lowIncomeB","6189":"midIncome","6190":"lowIncomeB","6191":"lowIncomeA","6192":"lowIncomeA","6193":"lowIncomeB","6194":"lowIncomeA","6195":"lowIncomeB","6196":"lowIncomeA","6197":"lowIncomeA","6198":"lowIncomeA","6199":"lowIncomeA","6200":"midIncome","6201":"lowIncomeA","6202":"lowIncomeA","6203":"lowIncomeB","6204":"lowIncomeB","6205":"lowIncomeA","6206":"lowIncomeA","6207":"lowIncomeA","6208":"lowIncomeB","6209":"lowIncomeB","6210":"midIncome","6211":"lowIncomeB","6212":"lowIncomeA","6213":"lowIncomeB","6214":"lowIncomeB","6215":"lowIncomeB","6216":"lowIncomeB","6217":"midIncome","6218":"lowIncomeA","6219":"lowIncomeA","6220":"lowIncomeA","6221":"lowIncomeB","6222":"lowIncomeB","6223":"lowIncomeB","6224":"lowIncomeA","6225":"lowIncomeA","6226":"lowIncomeA","6227":"lowIncomeB","6228":"lowIncomeB","6229":"lowIncomeA","6230":"lowIncomeA","6231":"lowIncomeA","6232":"lowIncomeA","6233":"lowIncomeA","6234":"lowIncomeA","6235":"lowIncomeB","6236":"lowIncomeB","6237":"lowIncomeB","6238":"lowIncomeA","6239":"lowIncomeB","6240":"lowIncomeA","6241":"lowIncomeA","6242":"lowIncomeB","6243":"lowIncomeA","6244":"midIncome","6245":"lowIncomeB","6246":"midIncome","6247":"lowIncomeA","6248":"lowIncomeA","6249":"lowIncomeA","6250":"lowIncomeA","6251":"lowIncomeA","6252":"lowIncomeA","6253":"lowIncomeA","6254":"lowIncomeB","6255":"lowIncomeB","6256":"lowIncomeB","6257":"lowIncomeA","6258":"lowIncomeB","6259":"midIncome","6260":"lowIncomeB","6261":"lowIncomeB","6262":"lowIncomeA","6263":"lowIncomeB","6264":"lowIncomeA","6265":"lowIncomeB","6266":"lowIncomeA","6267":"lowIncomeB","6268":"lowIncomeA","6269":"midIncome","6270":"lowIncomeB","6271":"midIncome","6272":"midIncome","6273":"lowIncomeB","6274":"lowIncomeB","6275":"lowIncomeA","6276":"lowIncomeA","6277":"lowIncomeB","6278":"lowIncomeA","6279":"lowIncomeA","6280":"lowIncomeA","6281":"lowIncomeA","6282":"lowIncomeA","6283":"lowIncomeB","6284":"lowIncomeB","6285":"lowIncomeB","6286":"lowIncomeB","6287":"lowIncomeB","6288":"lowIncomeA","6289":"midIncome","6290":"midIncome","6291":"lowIncomeA","6292":"lowIncomeA","6293":"lowIncomeA","6294":"lowIncomeB","6295":"lowIncomeB","6296":"lowIncomeA","6297":"lowIncomeB","6298":"lowIncomeA","6299":"lowIncomeA","6300":"lowIncomeA","6301":"lowIncomeB","6302":"lowIncomeA","6303":"lowIncomeB","6304":"lowIncomeA","6305":"lowIncomeB","6306":"midIncome","6307":"midIncome","6308":"lowIncomeB","6309":"lowIncomeB","6310":"lowIncomeA","6311":"lowIncomeA","6312":"midIncome","6313":"lowIncomeA","6314":"lowIncomeA","6315":"lowIncomeA","6316":"lowIncomeB","6317":"lowIncomeA","6318":"lowIncomeB","6319":"lowIncomeA","6320":"lowIncomeB","6321":"lowIncomeB","6322":"midIncome","6323":"lowIncomeA","6324":"lowIncomeA","6325":"lowIncomeA","6326":"lowIncomeB","6327":"lowIncomeB","6328":"lowIncomeA","6329":"lowIncomeA","6330":"lowIncomeA","6331":"lowIncomeA","6332":"midIncome","6333":"lowIncomeA","6334":"lowIncomeA","6335":"lowIncomeA","6336":"lowIncomeA","6337":"lowIncomeB","6338":"lowIncomeA","6339":"lowIncomeB","6340":"lowIncomeA","6341":"lowIncomeA","6342":"lowIncomeA","6343":"lowIncomeB","6344":"midIncome","6345":"lowIncomeB","6346":"lowIncomeA","6347":"lowIncomeA","6348":"lowIncomeB","6349":"lowIncomeA","6350":"lowIncomeB","6351":"lowIncomeA","6352":"lowIncomeA","6353":"lowIncomeB","6354":"lowIncomeA","6355":"lowIncomeB","6356":"lowIncomeB","6357":"lowIncomeB","6358":"lowIncomeA","6359":"lowIncomeA","6360":"lowIncomeB","6361":"lowIncomeB","6362":"lowIncomeB","6363":"lowIncomeA","6364":"lowIncomeB","6365":"lowIncomeB","6366":"lowIncomeA","6367":"lowIncomeA","6368":"lowIncomeB","6369":"lowIncomeB","6370":"lowIncomeA","6371":"midIncome","6372":"lowIncomeA","6373":"midIncome","6374":"lowIncomeB","6375":"lowIncomeB","6376":"lowIncomeA","6377":"lowIncomeA","6378":"lowIncomeA","6379":"lowIncomeB","6380":"midIncome","6381":"lowIncomeA","6382":"lowIncomeA","6383":"lowIncomeA","6384":"midIncome","6385":"lowIncomeA","6386":"lowIncomeB","6387":"midIncome","6388":"lowIncomeA","6389":"lowIncomeB","6390":"lowIncomeB","6391":"lowIncomeA","6392":"lowIncomeA","6393":"lowIncomeB","6394":"midIncome","6395":"lowIncomeA","6396":"lowIncomeA","6397":"lowIncomeA","6398":"lowIncomeA","6399":"lowIncomeB","6400":"lowIncomeB","6401":"lowIncomeB","6402":"lowIncomeA","6403":"midIncome","6404":"lowIncomeB","6405":"lowIncomeB","6406":"lowIncomeA","6407":"lowIncomeA","6408":"lowIncomeA","6409":"lowIncomeB","6410":"lowIncomeA","6411":"lowIncomeB","6412":"lowIncomeA","6413":"lowIncomeB","6414":"lowIncomeA","6415":"lowIncomeB","6416":"lowIncomeA","6417":"lowIncomeA","6418":"lowIncomeA","6419":"lowIncomeA","6420":"lowIncomeA","6421":"lowIncomeB","6422":"lowIncomeA","6423":"lowIncomeA","6424":"lowIncomeA","6425":"lowIncomeA","6426":"lowIncomeA","6427":"lowIncomeA","6428":"lowIncomeA","6429":"lowIncomeA","6430":"lowIncomeA","6431":"lowIncomeA","6432":"lowIncomeB","6433":"lowIncomeB","6434":"lowIncomeA","6435":"lowIncomeB","6436":"lowIncomeB","6437":"lowIncomeA","6438":"lowIncomeB","6439":"lowIncomeA","6440":"lowIncomeB","6441":"lowIncomeA","6442":"midIncome","6443":"lowIncomeA","6444":"lowIncomeA","6445":"lowIncomeB","6446":"lowIncomeB","6447":"lowIncomeB","6448":"lowIncomeB","6449":"midIncome","6450":"lowIncomeB","6451":"lowIncomeA","6452":"lowIncomeA","6453":"lowIncomeA","6454":"lowIncomeB","6455":"lowIncomeB","6456":"midIncome","6457":"lowIncomeB","6458":"lowIncomeB","6459":"lowIncomeA","6460":"midIncome","6461":"lowIncomeB","6462":"lowIncomeA","6463":"lowIncomeB","6464":"lowIncomeA","6465":"midIncome","6466":"lowIncomeB","6467":"lowIncomeA","6468":"lowIncomeB","6469":"lowIncomeA","6470":"lowIncomeB","6471":"lowIncomeA","6472":"lowIncomeA","6473":"lowIncomeA","6474":"lowIncomeA","6475":"lowIncomeB","6476":"lowIncomeA","6477":"lowIncomeA","6478":"lowIncomeB","6479":"lowIncomeB","6480":"lowIncomeB","6481":"lowIncomeA","6482":"lowIncomeB","6483":"lowIncomeA","6484":"lowIncomeA","6485":"lowIncomeA","6486":"lowIncomeA","6487":"lowIncomeB","6488":"lowIncomeA","6489":"lowIncomeA","6490":"lowIncomeA","6491":"midIncome","6492":"lowIncomeB","6493":"lowIncomeB","6494":"lowIncomeA","6495":"lowIncomeA","6496":"midIncome","6497":"lowIncomeB","6498":"lowIncomeA","6499":"lowIncomeB","6500":"lowIncomeA","6501":"lowIncomeB","6502":"lowIncomeA","6503":"midIncome","6504":"lowIncomeB","6505":"lowIncomeB","6506":"lowIncomeB","6507":"lowIncomeA","6508":"lowIncomeA","6509":"lowIncomeB","6510":"lowIncomeA","6511":"lowIncomeB","6512":"lowIncomeA","6513":"lowIncomeB","6514":"lowIncomeA","6515":"lowIncomeA","6516":"lowIncomeA","6517":"lowIncomeA","6518":"lowIncomeB","6519":"lowIncomeA","6520":"lowIncomeA","6521":"lowIncomeA","6522":"lowIncomeB","6523":"lowIncomeA","6524":"lowIncomeA","6525":"lowIncomeA","6526":"lowIncomeA","6527":"lowIncomeA","6528":"lowIncomeB","6529":"lowIncomeA","6530":"lowIncomeB","6531":"lowIncomeA","6532":"midIncome","6533":"lowIncomeB","6534":"lowIncomeA","6535":"lowIncomeA","6536":"lowIncomeA","6537":"lowIncomeA","6538":"midIncome","6539":"lowIncomeA","6540":"lowIncomeB","6541":"lowIncomeB","6542":"lowIncomeB","6543":"lowIncomeB","6544":"lowIncomeB","6545":"lowIncomeA","6546":"lowIncomeA","6547":"lowIncomeB","6548":"lowIncomeA","6549":"midIncome","6550":"midIncome","6551":"lowIncomeB","6552":"lowIncomeB","6553":"lowIncomeA","6554":"lowIncomeA","6555":"lowIncomeA","6556":"lowIncomeA","6557":"lowIncomeA","6558":"lowIncomeA","6559":"lowIncomeA","6560":"lowIncomeA","6561":"lowIncomeB","6562":"lowIncomeA","6563":"lowIncomeA","6564":"lowIncomeB","6565":"lowIncomeA","6566":"lowIncomeA","6567":"lowIncomeB","6568":"lowIncomeA","6569":"midIncome","6570":"lowIncomeB","6571":"lowIncomeA","6572":"lowIncomeB","6573":"lowIncomeA","6574":"lowIncomeB","6575":"lowIncomeB","6576":"lowIncomeA","6577":"lowIncomeA","6578":"lowIncomeA","6579":"lowIncomeB","6580":"lowIncomeB","6581":"lowIncomeA","6582":"midIncome","6583":"lowIncomeA","6584":"lowIncomeB","6585":"lowIncomeB","6586":"lowIncomeB","6587":"lowIncomeA","6588":"lowIncomeB","6589":"lowIncomeB","6590":"lowIncomeA","6591":"lowIncomeB","6592":"lowIncomeA","6593":"lowIncomeB","6594":"lowIncomeB","6595":"lowIncomeA","6596":"lowIncomeB","6597":"lowIncomeA","6598":"lowIncomeA","6599":"lowIncomeA","6600":"lowIncomeA","6601":"lowIncomeA","6602":"lowIncomeB","6603":"lowIncomeA","6604":"lowIncomeB","6605":"lowIncomeB","6606":"lowIncomeA","6607":"lowIncomeA","6608":"lowIncomeB","6609":"lowIncomeA","6610":"lowIncomeA","6611":"lowIncomeB","6612":"lowIncomeA","6613":"lowIncomeB","6614":"lowIncomeA","6615":"lowIncomeB","6616":"lowIncomeB","6617":"lowIncomeB","6618":"lowIncomeA","6619":"lowIncomeB","6620":"lowIncomeA","6621":"midIncome","6622":"midIncome","6623":"lowIncomeB","6624":"lowIncomeB","6625":"lowIncomeA","6626":"lowIncomeB","6627":"lowIncomeA","6628":"lowIncomeA","6629":"lowIncomeA","6630":"lowIncomeA","6631":"lowIncomeB","6632":"midIncome","6633":"lowIncomeA","6634":"lowIncomeB","6635":"lowIncomeB","6636":"lowIncomeA","6637":"lowIncomeB","6638":"lowIncomeA","6639":"lowIncomeA","6640":"lowIncomeB","6641":"lowIncomeB","6642":"lowIncomeB","6643":"lowIncomeB","6644":"lowIncomeA","6645":"lowIncomeB","6646":"lowIncomeB","6647":"lowIncomeB","6648":"lowIncomeB","6649":"lowIncomeA","6650":"lowIncomeA","6651":"lowIncomeA","6652":"midIncome","6653":"lowIncomeA","6654":"midIncome","6655":"lowIncomeA","6656":"lowIncomeA","6657":"midIncome","6658":"lowIncomeB","6659":"lowIncomeA","6660":"midIncome","6661":"lowIncomeA","6662":"midIncome","6663":"lowIncomeB","6664":"lowIncomeA","6665":"lowIncomeA","6666":"lowIncomeA","6667":"lowIncomeA","6668":"lowIncomeB","6669":"lowIncomeB","6670":"lowIncomeB","6671":"lowIncomeA","6672":"lowIncomeA","6673":"lowIncomeB","6674":"lowIncomeB","6675":"lowIncomeA","6676":"lowIncomeB","6677":"lowIncomeB","6678":"lowIncomeB","6679":"lowIncomeB","6680":"lowIncomeB","6681":"lowIncomeA","6682":"lowIncomeB","6683":"lowIncomeA","6684":"lowIncomeB","6685":"lowIncomeB","6686":"lowIncomeB","6687":"lowIncomeA","6688":"lowIncomeA","6689":"lowIncomeA","6690":"lowIncomeA","6691":"lowIncomeA","6692":"lowIncomeB","6693":"lowIncomeA","6694":"lowIncomeA","6695":"lowIncomeA","6696":"lowIncomeA","6697":"lowIncomeB","6698":"lowIncomeB","6699":"lowIncomeA","6700":"lowIncomeB","6701":"lowIncomeB","6702":"lowIncomeB","6703":"lowIncomeA","6704":"lowIncomeA","6705":"lowIncomeB","6706":"midIncome","6707":"lowIncomeA","6708":"lowIncomeB","6709":"lowIncomeB","6710":"lowIncomeA","6711":"midIncome","6712":"lowIncomeB","6713":"lowIncomeA","6714":"lowIncomeA","6715":"lowIncomeB","6716":"lowIncomeB","6717":"lowIncomeA","6718":"midIncome","6719":"lowIncomeB","6720":"lowIncomeB","6721":"midIncome","6722":"lowIncomeB","6723":"lowIncomeA","6724":"lowIncomeA","6725":"lowIncomeA","6726":"lowIncomeA","6727":"lowIncomeA","6728":"lowIncomeA","6729":"lowIncomeB","6730":"lowIncomeB","6731":"lowIncomeA","6732":"lowIncomeB","6733":"lowIncomeA","6734":"lowIncomeA","6735":"lowIncomeB","6736":"lowIncomeB","6737":"lowIncomeB","6738":"lowIncomeA","6739":"lowIncomeA","6740":"lowIncomeB","6741":"lowIncomeB","6742":"lowIncomeB","6743":"lowIncomeA","6744":"midIncome","6745":"lowIncomeB","6746":"lowIncomeA","6747":"lowIncomeB","6748":"midIncome","6749":"lowIncomeA","6750":"lowIncomeA","6751":"lowIncomeA","6752":"lowIncomeA","6753":"lowIncomeA","6754":"lowIncomeA","6755":"lowIncomeB","6756":"lowIncomeB","6757":"lowIncomeA","6758":"lowIncomeA","6759":"lowIncomeA","6760":"lowIncomeA","6761":"lowIncomeB","6762":"lowIncomeA","6763":"lowIncomeA","6764":"lowIncomeA","6765":"lowIncomeB","6766":"lowIncomeA","6767":"lowIncomeA","6768":"lowIncomeB","6769":"lowIncomeB","6770":"midIncome","6771":"lowIncomeA","6772":"lowIncomeB","6773":"lowIncomeA","6774":"lowIncomeA","6775":"lowIncomeB","6776":"lowIncomeA","6777":"lowIncomeB","6778":"lowIncomeA","6779":"lowIncomeA","6780":"lowIncomeB","6781":"lowIncomeA","6782":"lowIncomeB","6783":"lowIncomeA","6784":"lowIncomeB","6785":"lowIncomeB","6786":"lowIncomeA","6787":"lowIncomeA","6788":"lowIncomeB","6789":"lowIncomeB","6790":"lowIncomeB","6791":"lowIncomeA","6792":"lowIncomeA","6793":"lowIncomeB","6794":"lowIncomeB","6795":"lowIncomeA","6796":"midIncome","6797":"lowIncomeA","6798":"lowIncomeA","6799":"lowIncomeB","6800":"lowIncomeA","6801":"lowIncomeB","6802":"lowIncomeA","6803":"lowIncomeA","6804":"lowIncomeA","6805":"lowIncomeA","6806":"lowIncomeB","6807":"midIncome","6808":"lowIncomeA","6809":"lowIncomeA","6810":"lowIncomeA","6811":"lowIncomeA","6812":"lowIncomeA","6813":"lowIncomeB","6814":"lowIncomeB","6815":"lowIncomeA","6816":"lowIncomeA","6817":"lowIncomeB","6818":"lowIncomeA","6819":"lowIncomeB","6820":"lowIncomeA","6821":"lowIncomeA","6822":"midIncome","6823":"lowIncomeB","6824":"lowIncomeB","6825":"lowIncomeB","6826":"lowIncomeB","6827":"lowIncomeA","6828":"lowIncomeA","6829":"lowIncomeB","6830":"lowIncomeA","6831":"lowIncomeA","6832":"lowIncomeA","6833":"lowIncomeA","6834":"lowIncomeB","6835":"lowIncomeB","6836":"lowIncomeA","6837":"lowIncomeB","6838":"lowIncomeA","6839":"lowIncomeA","6840":"lowIncomeA","6841":"midIncome","6842":"lowIncomeA","6843":"lowIncomeA","6844":"lowIncomeA","6845":"lowIncomeB","6846":"lowIncomeB","6847":"midIncome","6848":"lowIncomeB","6849":"midIncome","6850":"lowIncomeB","6851":"lowIncomeA","6852":"lowIncomeA","6853":"midIncome","6854":"lowIncomeA","6855":"lowIncomeB","6856":"midIncome","6857":"lowIncomeA","6858":"lowIncomeB","6859":"lowIncomeB","6860":"lowIncomeA","6861":"lowIncomeA","6862":"lowIncomeA","6863":"lowIncomeB","6864":"lowIncomeA","6865":"lowIncomeA","6866":"lowIncomeA","6867":"lowIncomeB","6868":"lowIncomeA","6869":"lowIncomeB","6870":"lowIncomeA","6871":"lowIncomeB","6872":"lowIncomeB","6873":"lowIncomeA","6874":"lowIncomeA","6875":"lowIncomeB","6876":"lowIncomeA","6877":"lowIncomeB","6878":"midIncome","6879":"lowIncomeB","6880":"lowIncomeA","6881":"lowIncomeB","6882":"lowIncomeB","6883":"lowIncomeB","6884":"lowIncomeA","6885":"lowIncomeB","6886":"midIncome","6887":"lowIncomeB","6888":"midIncome","6889":"lowIncomeA","6890":"lowIncomeB","6891":"lowIncomeA","6892":"midIncome","6893":"lowIncomeA","6894":"lowIncomeB","6895":"lowIncomeA","6896":"lowIncomeB","6897":"lowIncomeA","6898":"lowIncomeA","6899":"lowIncomeA","6900":"lowIncomeB","6901":"lowIncomeA","6902":"lowIncomeB","6903":"lowIncomeB","6904":"lowIncomeA","6905":"lowIncomeB","6906":"lowIncomeB","6907":"lowIncomeA","6908":"midIncome","6909":"lowIncomeA","6910":"lowIncomeB","6911":"lowIncomeB","6912":"lowIncomeA","6913":"lowIncomeB","6914":"lowIncomeA","6915":"lowIncomeB","6916":"lowIncomeA","6917":"lowIncomeB","6918":"lowIncomeA","6919":"lowIncomeB","6920":"lowIncomeB","6921":"lowIncomeB","6922":"lowIncomeA","6923":"lowIncomeA","6924":"lowIncomeB","6925":"lowIncomeB","6926":"midIncome","6927":"lowIncomeA","6928":"lowIncomeB","6929":"midIncome","6930":"midIncome","6931":"lowIncomeB","6932":"lowIncomeA","6933":"lowIncomeB","6934":"lowIncomeB","6935":"lowIncomeB","6936":"lowIncomeA","6937":"lowIncomeB","6938":"lowIncomeB","6939":"midIncome","6940":"lowIncomeB","6941":"lowIncomeA","6942":"lowIncomeA","6943":"lowIncomeA","6944":"lowIncomeB","6945":"lowIncomeA","6946":"lowIncomeB","6947":"lowIncomeB","6948":"lowIncomeA","6949":"lowIncomeB","6950":"lowIncomeA","6951":"lowIncomeB","6952":"lowIncomeA","6953":"lowIncomeB","6954":"lowIncomeA","6955":"lowIncomeB","6956":"lowIncomeB","6957":"lowIncomeB","6958":"lowIncomeB","6959":"lowIncomeB","6960":"lowIncomeA","6961":"lowIncomeB","6962":"lowIncomeA","6963":"lowIncomeA","6964":"lowIncomeB","6965":"lowIncomeA","6966":"lowIncomeA","6967":"lowIncomeB","6968":"lowIncomeA","6969":"lowIncomeA","6970":"lowIncomeA","6971":"midIncome","6972":"midIncome","6973":"lowIncomeB","6974":"lowIncomeA","6975":"lowIncomeA","6976":"lowIncomeA","6977":"lowIncomeB","6978":"lowIncomeA","6979":"lowIncomeB","6980":"lowIncomeA","6981":"lowIncomeB","6982":"lowIncomeA","6983":"lowIncomeB","6984":"lowIncomeB","6985":"lowIncomeA","6986":"midIncome","6987":"lowIncomeA","6988":"midIncome","6989":"lowIncomeB","6990":"midIncome","6991":"midIncome","6992":"lowIncomeB","6993":"lowIncomeA","6994":"midIncome","6995":"highIncome","6996":"lowIncomeA","6997":"midIncome","6998":"midIncome","6999":"midIncome","7000":"midIncome","7001":"midIncome","7002":"midIncome","7003":"midIncome","7004":"midIncome","7005":"midIncome","7006":"highIncome","7007":"midIncome","7008":"midIncome","7009":"midIncome","7010":"midIncome","7011":"lowIncomeB","7012":"midIncome","7013":"midIncome","7014":"midIncome","7015":"midIncome","7016":"midIncome","7017":"midIncome","7018":"lowIncomeA","7019":"midIncome","7020":"midIncome","7021":"midIncome","7022":"midIncome","7023":"midIncome","7024":"midIncome","7025":"highIncome","7026":"midIncome","7027":"highIncome","7028":"midIncome","7029":"midIncome","7030":"highIncome","7031":"midIncome","7032":"midIncome","7033":"midIncome","7034":"lowIncomeB","7035":"midIncome","7036":"midIncome","7037":"midIncome","7038":"midIncome","7039":"midIncome","7040":"midIncome","7041":"lowIncomeB","7042":"midIncome","7043":"lowIncomeA","7044":"midIncome","7045":"midIncome","7046":"midIncome","7047":"midIncome","7048":"midIncome","7049":"midIncome","7050":"midIncome","7051":"midIncome","7052":"midIncome","7053":"midIncome","7054":"midIncome","7055":"midIncome","7056":"midIncome","7057":"highIncome","7058":"midIncome","7059":"highIncome","7060":"midIncome","7061":"midIncome","7062":"midIncome","7063":"midIncome","7064":"highIncome","7065":"midIncome","7066":"midIncome","7067":"midIncome","7068":"lowIncomeB","7069":"midIncome","7070":"lowIncomeB","7071":"lowIncomeA","7072":"midIncome","7073":"midIncome","7074":"midIncome","7075":"midIncome","7076":"lowIncomeB","7077":"midIncome","7078":"midIncome","7079":"midIncome","7080":"highIncome","7081":"midIncome","7082":"lowIncomeB","7083":"midIncome","7084":"midIncome","7085":"midIncome","7086":"midIncome","7087":"midIncome","7088":"midIncome","7089":"lowIncomeB","7090":"lowIncomeB","7091":"lowIncomeA","7092":"midIncome","7093":"midIncome","7094":"midIncome","7095":"midIncome","7096":"midIncome","7097":"lowIncomeA","7098":"midIncome","7099":"midIncome","7100":"midIncome","7101":"highIncome","7102":"midIncome","7103":"midIncome","7104":"midIncome","7105":"midIncome","7106":"midIncome","7107":"midIncome","7108":"midIncome","7109":"midIncome","7110":"midIncome","7111":"midIncome","7112":"lowIncomeB","7113":"midIncome","7114":"midIncome","7115":"midIncome","7116":"highIncome","7117":"lowIncomeA","7118":"midIncome","7119":"midIncome","7120":"midIncome","7121":"lowIncomeA","7122":"lowIncomeB","7123":"midIncome","7124":"midIncome","7125":"midIncome","7126":"midIncome","7127":"midIncome","7128":"lowIncomeB","7129":"midIncome","7130":"highIncome","7131":"midIncome","7132":"midIncome","7133":"lowIncomeB","7134":"midIncome","7135":"lowIncomeA","7136":"highIncome","7137":"midIncome","7138":"midIncome","7139":"highIncome","7140":"lowIncomeA","7141":"midIncome","7142":"midIncome","7143":"midIncome","7144":"midIncome","7145":"midIncome","7146":"midIncome","7147":"lowIncomeA","7148":"highIncome","7149":"lowIncomeA","7150":"midIncome","7151":"lowIncomeB","7152":"midIncome","7153":"midIncome","7154":"lowIncomeB","7155":"midIncome","7156":"midIncome","7157":"lowIncomeA","7158":"midIncome","7159":"lowIncomeB","7160":"lowIncomeA","7161":"midIncome","7162":"highIncome","7163":"highIncome","7164":"midIncome","7165":"midIncome","7166":"lowIncomeA","7167":"midIncome","7168":"midIncome","7169":"midIncome","7170":"midIncome","7171":"midIncome","7172":"midIncome","7173":"midIncome","7174":"lowIncomeA","7175":"highIncome","7176":"highIncome","7177":"midIncome","7178":"midIncome","7179":"midIncome","7180":"highIncome","7181":"midIncome","7182":"midIncome","7183":"midIncome","7184":"lowIncomeA","7185":"midIncome","7186":"midIncome","7187":"midIncome","7188":"midIncome","7189":"midIncome","7190":"midIncome","7191":"midIncome","7192":"midIncome","7193":"midIncome","7194":"midIncome","7195":"midIncome","7196":"lowIncomeA","7197":"midIncome","7198":"midIncome","7199":"midIncome","7200":"midIncome","7201":"midIncome","7202":"midIncome","7203":"lowIncomeA","7204":"midIncome","7205":"midIncome","7206":"midIncome","7207":"midIncome","7208":"midIncome","7209":"midIncome","7210":"highIncome","7211":"lowIncomeA","7212":"midIncome","7213":"midIncome","7214":"lowIncomeA","7215":"midIncome","7216":"lowIncomeA","7217":"midIncome","7218":"midIncome","7219":"midIncome","7220":"lowIncomeA","7221":"midIncome","7222":"midIncome","7223":"lowIncomeB","7224":"midIncome","7225":"midIncome","7226":"midIncome","7227":"midIncome","7228":"midIncome","7229":"midIncome","7230":"midIncome","7231":"midIncome","7232":"midIncome","7233":"midIncome","7234":"midIncome","7235":"lowIncomeA","7236":"lowIncomeA","7237":"lowIncomeA","7238":"lowIncomeB","7239":"lowIncomeA","7240":"lowIncomeA","7241":"lowIncomeA","7242":"lowIncomeA","7243":"lowIncomeA","7244":"lowIncomeA","7245":"midIncome","7246":"midIncome","7247":"lowIncomeA","7248":"lowIncomeB","7249":"lowIncomeB","7250":"lowIncomeB","7251":"lowIncomeA","7252":"lowIncomeB","7253":"lowIncomeB","7254":"lowIncomeA","7255":"lowIncomeB","7256":"lowIncomeA","7257":"lowIncomeA","7258":"lowIncomeB","7259":"lowIncomeB","7260":"lowIncomeA","7261":"lowIncomeA","7262":"lowIncomeA","7263":"lowIncomeB","7264":"lowIncomeA","7265":"lowIncomeB","7266":"lowIncomeA","7267":"lowIncomeB","7268":"lowIncomeB","7269":"lowIncomeB","7270":"lowIncomeB","7271":"lowIncomeA","7272":"lowIncomeB","7273":"lowIncomeB","7274":"lowIncomeA","7275":"lowIncomeA","7276":"lowIncomeA","7277":"lowIncomeA","7278":"midIncome","7279":"lowIncomeB","7280":"lowIncomeA","7281":"lowIncomeB","7282":"lowIncomeB","7283":"lowIncomeA","7284":"lowIncomeB","7285":"lowIncomeB","7286":"lowIncomeA","7287":"lowIncomeA","7288":"midIncome","7289":"lowIncomeB","7290":"lowIncomeA","7291":"lowIncomeA","7292":"lowIncomeB","7293":"lowIncomeA","7294":"lowIncomeA","7295":"lowIncomeA","7296":"lowIncomeA","7297":"lowIncomeB","7298":"lowIncomeB","7299":"lowIncomeB","7300":"lowIncomeA","7301":"lowIncomeA","7302":"lowIncomeA","7303":"lowIncomeA","7304":"lowIncomeB","7305":"lowIncomeB","7306":"midIncome","7307":"lowIncomeB","7308":"midIncome","7309":"lowIncomeB","7310":"lowIncomeA","7311":"lowIncomeB","7312":"lowIncomeA","7313":"lowIncomeA","7314":"lowIncomeA","7315":"lowIncomeB","7316":"lowIncomeA","7317":"lowIncomeB","7318":"lowIncomeA","7319":"lowIncomeB","7320":"lowIncomeA","7321":"midIncome","7322":"lowIncomeA","7323":"lowIncomeA","7324":"lowIncomeB","7325":"lowIncomeB","7326":"lowIncomeA","7327":"lowIncomeB","7328":"lowIncomeB","7329":"lowIncomeB","7330":"lowIncomeA","7331":"lowIncomeA","7332":"lowIncomeA","7333":"midIncome","7334":"lowIncomeA","7335":"lowIncomeB","7336":"lowIncomeA","7337":"lowIncomeB","7338":"lowIncomeA","7339":"lowIncomeB","7340":"lowIncomeA","7341":"lowIncomeB","7342":"lowIncomeB","7343":"lowIncomeB","7344":"midIncome","7345":"lowIncomeA","7346":"lowIncomeA","7347":"lowIncomeA","7348":"lowIncomeB","7349":"midIncome","7350":"lowIncomeA","7351":"lowIncomeA","7352":"lowIncomeA","7353":"lowIncomeA","7354":"lowIncomeA","7355":"midIncome","7356":"lowIncomeA","7357":"lowIncomeB","7358":"lowIncomeA","7359":"lowIncomeA","7360":"lowIncomeA","7361":"lowIncomeB","7362":"lowIncomeA","7363":"lowIncomeB","7364":"lowIncomeB","7365":"lowIncomeA","7366":"lowIncomeB","7367":"lowIncomeB","7368":"lowIncomeA","7369":"lowIncomeB","7370":"lowIncomeA","7371":"lowIncomeA","7372":"lowIncomeA","7373":"lowIncomeA","7374":"lowIncomeA","7375":"lowIncomeA","7376":"lowIncomeA","7377":"lowIncomeA","7378":"lowIncomeA","7379":"lowIncomeB","7380":"lowIncomeB","7381":"lowIncomeB","7382":"lowIncomeA","7383":"lowIncomeA","7384":"lowIncomeA","7385":"lowIncomeA","7386":"lowIncomeA","7387":"lowIncomeB","7388":"lowIncomeB","7389":"lowIncomeA","7390":"lowIncomeB","7391":"lowIncomeA","7392":"lowIncomeA","7393":"lowIncomeA","7394":"lowIncomeA","7395":"lowIncomeA","7396":"lowIncomeB","7397":"lowIncomeA","7398":"lowIncomeA","7399":"lowIncomeA","7400":"lowIncomeA","7401":"lowIncomeA","7402":"lowIncomeA","7403":"lowIncomeA","7404":"lowIncomeB","7405":"lowIncomeA","7406":"lowIncomeB","7407":"lowIncomeA","7408":"lowIncomeB","7409":"lowIncomeA","7410":"lowIncomeA","7411":"lowIncomeB","7412":"lowIncomeA","7413":"lowIncomeB","7414":"lowIncomeB","7415":"midIncome","7416":"lowIncomeA","7417":"lowIncomeB","7418":"lowIncomeA","7419":"lowIncomeA","7420":"lowIncomeA","7421":"lowIncomeA","7422":"lowIncomeB","7423":"lowIncomeA","7424":"midIncome","7425":"lowIncomeA","7426":"lowIncomeB","7427":"lowIncomeB","7428":"lowIncomeB","7429":"lowIncomeA","7430":"lowIncomeB","7431":"lowIncomeA","7432":"lowIncomeB","7433":"lowIncomeB","7434":"lowIncomeA","7435":"lowIncomeB","7436":"lowIncomeB","7437":"lowIncomeB","7438":"lowIncomeA","7439":"lowIncomeA","7440":"lowIncomeA","7441":"lowIncomeA","7442":"lowIncomeA","7443":"lowIncomeA","7444":"lowIncomeA","7445":"lowIncomeB","7446":"lowIncomeB","7447":"lowIncomeB","7448":"lowIncomeA","7449":"lowIncomeA","7450":"lowIncomeB","7451":"lowIncomeB","7452":"lowIncomeB","7453":"lowIncomeB","7454":"lowIncomeA","7455":"lowIncomeA","7456":"lowIncomeB","7457":"lowIncomeB","7458":"lowIncomeA","7459":"lowIncomeA","7460":"lowIncomeA","7461":"midIncome","7462":"lowIncomeA","7463":"lowIncomeB","7464":"lowIncomeA","7465":"lowIncomeB","7466":"lowIncomeA","7467":"lowIncomeB","7468":"lowIncomeB","7469":"lowIncomeA","7470":"lowIncomeA","7471":"lowIncomeB","7472":"lowIncomeB","7473":"lowIncomeA","7474":"lowIncomeA","7475":"lowIncomeA","7476":"lowIncomeA","7477":"lowIncomeB","7478":"lowIncomeA","7479":"lowIncomeA","7480":"lowIncomeA","7481":"lowIncomeA","7482":"lowIncomeA","7483":"lowIncomeA","7484":"lowIncomeA","7485":"lowIncomeA","7486":"lowIncomeA","7487":"lowIncomeB","7488":"lowIncomeA","7489":"lowIncomeB","7490":"lowIncomeB","7491":"lowIncomeA","7492":"midIncome","7493":"lowIncomeA","7494":"lowIncomeA","7495":"lowIncomeA","7496":"midIncome","7497":"lowIncomeB","7498":"lowIncomeA","7499":"lowIncomeB","7500":"midIncome","7501":"midIncome","7502":"lowIncomeA","7503":"midIncome","7504":"lowIncomeB","7505":"lowIncomeB","7506":"lowIncomeB","7507":"midIncome","7508":"midIncome","7509":"lowIncomeA","7510":"lowIncomeA","7511":"lowIncomeB","7512":"lowIncomeA","7513":"lowIncomeA","7514":"lowIncomeA","7515":"lowIncomeB","7516":"lowIncomeA","7517":"lowIncomeB","7518":"lowIncomeB","7519":"midIncome","7520":"lowIncomeB","7521":"lowIncomeA","7522":"lowIncomeA","7523":"lowIncomeA","7524":"lowIncomeA","7525":"midIncome","7526":"lowIncomeB","7527":"lowIncomeA","7528":"lowIncomeA","7529":"midIncome","7530":"lowIncomeB","7531":"lowIncomeA","7532":"lowIncomeB","7533":"lowIncomeA","7534":"lowIncomeA","7535":"lowIncomeB","7536":"lowIncomeB","7537":"lowIncomeA","7538":"lowIncomeA","7539":"lowIncomeA","7540":"lowIncomeB","7541":"lowIncomeA","7542":"lowIncomeB","7543":"lowIncomeB","7544":"lowIncomeB","7545":"lowIncomeA","7546":"lowIncomeA","7547":"lowIncomeA","7548":"lowIncomeB","7549":"lowIncomeA","7550":"lowIncomeA","7551":"lowIncomeA","7552":"lowIncomeA","7553":"lowIncomeA","7554":"lowIncomeA","7555":"lowIncomeA","7556":"lowIncomeA","7557":"midIncome","7558":"lowIncomeB","7559":"lowIncomeA","7560":"midIncome","7561":"lowIncomeA","7562":"lowIncomeA","7563":"lowIncomeB","7564":"lowIncomeB","7565":"lowIncomeB","7566":"midIncome","7567":"lowIncomeA","7568":"midIncome","7569":"lowIncomeA","7570":"lowIncomeB","7571":"lowIncomeB","7572":"lowIncomeA","7573":"lowIncomeA","7574":"midIncome","7575":"lowIncomeB","7576":"lowIncomeA","7577":"lowIncomeB","7578":"lowIncomeA","7579":"lowIncomeB","7580":"midIncome","7581":"lowIncomeB","7582":"lowIncomeB","7583":"lowIncomeA","7584":"lowIncomeB","7585":"midIncome","7586":"lowIncomeA","7587":"lowIncomeB","7588":"lowIncomeA","7589":"lowIncomeA","7590":"lowIncomeA","7591":"lowIncomeA","7592":"lowIncomeB","7593":"lowIncomeA","7594":"lowIncomeA","7595":"lowIncomeB","7596":"lowIncomeA","7597":"midIncome","7598":"lowIncomeB","7599":"lowIncomeB","7600":"lowIncomeB","7601":"lowIncomeA","7602":"lowIncomeB","7603":"lowIncomeB","7604":"lowIncomeA","7605":"lowIncomeA","7606":"lowIncomeB","7607":"lowIncomeA","7608":"lowIncomeA","7609":"midIncome","7610":"lowIncomeA","7611":"lowIncomeA","7612":"lowIncomeA","7613":"lowIncomeB","7614":"lowIncomeB","7615":"lowIncomeA","7616":"lowIncomeB","7617":"lowIncomeB","7618":"lowIncomeB","7619":"lowIncomeB","7620":"lowIncomeB","7621":"lowIncomeB","7622":"lowIncomeA","7623":"lowIncomeA","7624":"lowIncomeB","7625":"lowIncomeB","7626":"lowIncomeA","7627":"lowIncomeA","7628":"lowIncomeB","7629":"lowIncomeA","7630":"lowIncomeA","7631":"lowIncomeB","7632":"lowIncomeB","7633":"lowIncomeA","7634":"lowIncomeA","7635":"lowIncomeB","7636":"lowIncomeB","7637":"lowIncomeB","7638":"midIncome","7639":"lowIncomeA","7640":"lowIncomeB","7641":"lowIncomeA","7642":"midIncome","7643":"midIncome","7644":"lowIncomeB","7645":"midIncome","7646":"lowIncomeB","7647":"lowIncomeB","7648":"lowIncomeA","7649":"lowIncomeB","7650":"lowIncomeA","7651":"lowIncomeB","7652":"lowIncomeA","7653":"lowIncomeB","7654":"lowIncomeA","7655":"lowIncomeA","7656":"lowIncomeB","7657":"lowIncomeA","7658":"lowIncomeA","7659":"lowIncomeA","7660":"midIncome","7661":"lowIncomeB","7662":"lowIncomeA","7663":"lowIncomeB","7664":"lowIncomeA","7665":"lowIncomeB","7666":"lowIncomeA","7667":"midIncome","7668":"lowIncomeA","7669":"lowIncomeB","7670":"lowIncomeA","7671":"lowIncomeA","7672":"lowIncomeB","7673":"lowIncomeB","7674":"lowIncomeB","7675":"lowIncomeB","7676":"lowIncomeA","7677":"lowIncomeB","7678":"midIncome","7679":"midIncome","7680":"lowIncomeB","7681":"lowIncomeA","7682":"lowIncomeA","7683":"midIncome","7684":"midIncome","7685":"lowIncomeB","7686":"lowIncomeA","7687":"lowIncomeA","7688":"lowIncomeB","7689":"lowIncomeB","7690":"lowIncomeA","7691":"lowIncomeB","7692":"lowIncomeA","7693":"lowIncomeA","7694":"lowIncomeB","7695":"lowIncomeA","7696":"lowIncomeA","7697":"lowIncomeA","7698":"lowIncomeA","7699":"lowIncomeB","7700":"lowIncomeB","7701":"lowIncomeB","7702":"lowIncomeB","7703":"lowIncomeB","7704":"lowIncomeA","7705":"lowIncomeA","7706":"lowIncomeB","7707":"lowIncomeA","7708":"lowIncomeA","7709":"lowIncomeA","7710":"midIncome","7711":"lowIncomeB","7712":"lowIncomeA","7713":"lowIncomeA","7714":"lowIncomeA","7715":"lowIncomeB","7716":"lowIncomeA","7717":"lowIncomeA","7718":"lowIncomeB","7719":"lowIncomeB","7720":"midIncome","7721":"lowIncomeA","7722":"midIncome","7723":"lowIncomeB","7724":"lowIncomeA","7725":"lowIncomeA","7726":"lowIncomeA","7727":"lowIncomeB","7728":"lowIncomeB","7729":"lowIncomeA","7730":"lowIncomeA","7731":"lowIncomeB","7732":"lowIncomeB","7733":"lowIncomeB","7734":"lowIncomeB","7735":"lowIncomeA","7736":"lowIncomeA","7737":"lowIncomeB","7738":"midIncome","7739":"lowIncomeB","7740":"lowIncomeB","7741":"lowIncomeB","7742":"lowIncomeB","7743":"lowIncomeB","7744":"lowIncomeB","7745":"lowIncomeA","7746":"lowIncomeB","7747":"lowIncomeB","7748":"midIncome","7749":"lowIncomeB","7750":"lowIncomeB","7751":"lowIncomeB","7752":"lowIncomeB","7753":"lowIncomeA","7754":"lowIncomeA","7755":"lowIncomeA","7756":"lowIncomeB","7757":"lowIncomeA","7758":"lowIncomeA","7759":"lowIncomeB","7760":"lowIncomeA","7761":"lowIncomeB","7762":"lowIncomeA","7763":"lowIncomeB","7764":"lowIncomeA","7765":"lowIncomeB","7766":"midIncome","7767":"lowIncomeA","7768":"lowIncomeA","7769":"lowIncomeA","7770":"midIncome","7771":"lowIncomeA","7772":"lowIncomeA","7773":"lowIncomeB","7774":"lowIncomeB","7775":"lowIncomeB","7776":"lowIncomeB","7777":"lowIncomeB","7778":"lowIncomeB","7779":"lowIncomeA","7780":"lowIncomeB","7781":"lowIncomeB","7782":"midIncome","7783":"lowIncomeB","7784":"lowIncomeA","7785":"lowIncomeB","7786":"lowIncomeA","7787":"lowIncomeB","7788":"lowIncomeB","7789":"lowIncomeA","7790":"lowIncomeB","7791":"lowIncomeA","7792":"lowIncomeA","7793":"lowIncomeB","7794":"lowIncomeA","7795":"lowIncomeB","7796":"lowIncomeA","7797":"lowIncomeA","7798":"lowIncomeB","7799":"lowIncomeA","7800":"lowIncomeA","7801":"lowIncomeB","7802":"lowIncomeB","7803":"lowIncomeA","7804":"lowIncomeA","7805":"lowIncomeB","7806":"lowIncomeA","7807":"lowIncomeB","7808":"lowIncomeB","7809":"lowIncomeA","7810":"lowIncomeA","7811":"lowIncomeB","7812":"lowIncomeB","7813":"lowIncomeA","7814":"lowIncomeB","7815":"lowIncomeA","7816":"lowIncomeA","7817":"lowIncomeA","7818":"lowIncomeA","7819":"midIncome","7820":"lowIncomeA","7821":"lowIncomeB","7822":"lowIncomeA","7823":"lowIncomeB","7824":"lowIncomeB","7825":"lowIncomeA","7826":"lowIncomeB","7827":"lowIncomeB","7828":"lowIncomeB","7829":"lowIncomeB","7830":"lowIncomeB","7831":"lowIncomeA","7832":"lowIncomeB","7833":"lowIncomeA","7834":"lowIncomeA","7835":"lowIncomeA","7836":"lowIncomeA","7837":"lowIncomeA","7838":"lowIncomeA","7839":"lowIncomeA","7840":"lowIncomeA","7841":"lowIncomeB","7842":"lowIncomeA","7843":"lowIncomeA","7844":"lowIncomeA","7845":"lowIncomeA","7846":"lowIncomeA","7847":"lowIncomeA","7848":"midIncome","7849":"midIncome","7850":"lowIncomeB","7851":"lowIncomeB","7852":"lowIncomeB","7853":"lowIncomeB","7854":"lowIncomeA","7855":"lowIncomeB","7856":"lowIncomeA","7857":"midIncome","7858":"lowIncomeA","7859":"lowIncomeA","7860":"lowIncomeB","7861":"lowIncomeA","7862":"lowIncomeA","7863":"lowIncomeA","7864":"midIncome","7865":"lowIncomeA","7866":"lowIncomeA","7867":"lowIncomeB","7868":"lowIncomeA","7869":"lowIncomeB","7870":"midIncome","7871":"lowIncomeA","7872":"lowIncomeB","7873":"lowIncomeB","7874":"lowIncomeA","7875":"midIncome","7876":"lowIncomeA","7877":"lowIncomeB","7878":"lowIncomeA","7879":"lowIncomeA","7880":"lowIncomeB","7881":"midIncome","7882":"lowIncomeA","7883":"lowIncomeB","7884":"lowIncomeA","7885":"lowIncomeA","7886":"lowIncomeB","7887":"midIncome","7888":"lowIncomeA","7889":"lowIncomeA","7890":"midIncome","7891":"lowIncomeB","7892":"lowIncomeA","7893":"lowIncomeA","7894":"lowIncomeA","7895":"lowIncomeA","7896":"lowIncomeB","7897":"lowIncomeA","7898":"lowIncomeB","7899":"lowIncomeA","7900":"midIncome","7901":"lowIncomeA","7902":"lowIncomeA","7903":"lowIncomeB","7904":"lowIncomeA","7905":"lowIncomeB","7906":"lowIncomeA","7907":"lowIncomeB","7908":"lowIncomeA","7909":"lowIncomeB","7910":"lowIncomeA","7911":"lowIncomeA","7912":"lowIncomeB","7913":"lowIncomeB","7914":"lowIncomeB","7915":"lowIncomeB","7916":"lowIncomeA","7917":"lowIncomeA","7918":"lowIncomeB","7919":"lowIncomeA","7920":"lowIncomeA","7921":"lowIncomeA","7922":"lowIncomeB","7923":"midIncome","7924":"lowIncomeB","7925":"lowIncomeA","7926":"midIncome","7927":"lowIncomeB","7928":"lowIncomeB","7929":"lowIncomeA","7930":"midIncome","7931":"midIncome","7932":"lowIncomeB","7933":"lowIncomeA","7934":"midIncome","7935":"lowIncomeA","7936":"lowIncomeA","7937":"lowIncomeA","7938":"lowIncomeB","7939":"lowIncomeA","7940":"lowIncomeB","7941":"lowIncomeA","7942":"lowIncomeA","7943":"lowIncomeA","7944":"lowIncomeA","7945":"lowIncomeA","7946":"lowIncomeB","7947":"lowIncomeB","7948":"lowIncomeA","7949":"midIncome","7950":"lowIncomeB","7951":"lowIncomeB","7952":"lowIncomeA","7953":"midIncome","7954":"lowIncomeA","7955":"lowIncomeB","7956":"lowIncomeA","7957":"lowIncomeA","7958":"lowIncomeB","7959":"lowIncomeA","7960":"lowIncomeA","7961":"midIncome","7962":"lowIncomeB","7963":"lowIncomeB","7964":"lowIncomeB","7965":"lowIncomeA","7966":"lowIncomeB","7967":"lowIncomeA","7968":"lowIncomeB","7969":"lowIncomeB","7970":"lowIncomeA","7971":"lowIncomeA","7972":"lowIncomeA","7973":"lowIncomeB","7974":"lowIncomeB","7975":"lowIncomeA","7976":"lowIncomeA","7977":"lowIncomeA","7978":"midIncome","7979":"lowIncomeA","7980":"lowIncomeB","7981":"lowIncomeB","7982":"lowIncomeA","7983":"lowIncomeB","7984":"lowIncomeA","7985":"lowIncomeA","7986":"lowIncomeA","7987":"lowIncomeB","7988":"lowIncomeB","7989":"lowIncomeB","7990":"lowIncomeA","7991":"lowIncomeA","7992":"lowIncomeB","7993":"lowIncomeB","7994":"lowIncomeA","7995":"lowIncomeA","7996":"lowIncomeA","7997":"lowIncomeB","7998":"lowIncomeB","7999":"lowIncomeA","8000":"lowIncomeB","8001":"lowIncomeA","8002":"lowIncomeA","8003":"lowIncomeB","8004":"midIncome","8005":"lowIncomeA","8006":"lowIncomeB","8007":"lowIncomeB","8008":"lowIncomeB","8009":"midIncome","8010":"midIncome","8011":"midIncome","8012":"lowIncomeA","8013":"lowIncomeB","8014":"lowIncomeB","8015":"lowIncomeB","8016":"lowIncomeB","8017":"lowIncomeA","8018":"lowIncomeA","8019":"lowIncomeA","8020":"lowIncomeB","8021":"lowIncomeA","8022":"lowIncomeB","8023":"lowIncomeA","8024":"lowIncomeB","8025":"lowIncomeA","8026":"lowIncomeB","8027":"lowIncomeA","8028":"lowIncomeB","8029":"lowIncomeB","8030":"lowIncomeA","8031":"lowIncomeA","8032":"lowIncomeA","8033":"midIncome","8034":"lowIncomeA","8035":"lowIncomeB","8036":"lowIncomeA","8037":"lowIncomeB","8038":"midIncome","8039":"lowIncomeB","8040":"lowIncomeA","8041":"lowIncomeA","8042":"lowIncomeA","8043":"lowIncomeA","8044":"lowIncomeB","8045":"lowIncomeB","8046":"lowIncomeA","8047":"lowIncomeA","8048":"lowIncomeB","8049":"lowIncomeA","8050":"lowIncomeB","8051":"lowIncomeB","8052":"lowIncomeB","8053":"lowIncomeA","8054":"lowIncomeB","8055":"midIncome","8056":"lowIncomeB","8057":"lowIncomeB","8058":"lowIncomeB","8059":"lowIncomeB","8060":"lowIncomeA","8061":"lowIncomeA","8062":"lowIncomeA","8063":"lowIncomeA","8064":"lowIncomeA","8065":"lowIncomeA","8066":"lowIncomeA","8067":"lowIncomeA","8068":"lowIncomeA","8069":"lowIncomeA","8070":"lowIncomeA","8071":"lowIncomeB","8072":"lowIncomeB","8073":"lowIncomeA","8074":"lowIncomeB","8075":"lowIncomeB","8076":"lowIncomeA","8077":"lowIncomeA","8078":"lowIncomeA","8079":"lowIncomeA","8080":"lowIncomeB","8081":"lowIncomeB","8082":"lowIncomeA","8083":"lowIncomeB","8084":"midIncome","8085":"lowIncomeB","8086":"lowIncomeB","8087":"lowIncomeA","8088":"lowIncomeB","8089":"lowIncomeA","8090":"lowIncomeB","8091":"midIncome","8092":"lowIncomeB","8093":"lowIncomeB","8094":"lowIncomeB","8095":"lowIncomeB","8096":"lowIncomeA","8097":"lowIncomeA","8098":"lowIncomeA","8099":"lowIncomeB","8100":"lowIncomeB","8101":"lowIncomeA","8102":"lowIncomeA","8103":"lowIncomeA","8104":"lowIncomeB","8105":"lowIncomeA","8106":"lowIncomeA","8107":"lowIncomeA","8108":"lowIncomeA","8109":"lowIncomeA","8110":"lowIncomeA","8111":"lowIncomeB","8112":"lowIncomeA","8113":"lowIncomeB","8114":"midIncome","8115":"lowIncomeB","8116":"lowIncomeA","8117":"lowIncomeA","8118":"lowIncomeB","8119":"midIncome","8120":"lowIncomeB","8121":"lowIncomeB","8122":"lowIncomeA","8123":"lowIncomeA","8124":"lowIncomeA","8125":"midIncome","8126":"lowIncomeA","8127":"lowIncomeB","8128":"lowIncomeB","8129":"lowIncomeB","8130":"lowIncomeA","8131":"lowIncomeA","8132":"midIncome","8133":"lowIncomeA","8134":"lowIncomeA","8135":"lowIncomeB","8136":"lowIncomeA","8137":"lowIncomeA","8138":"lowIncomeB","8139":"lowIncomeB","8140":"lowIncomeA","8141":"lowIncomeB","8142":"lowIncomeA","8143":"midIncome","8144":"lowIncomeA","8145":"lowIncomeA","8146":"lowIncomeA","8147":"lowIncomeA","8148":"lowIncomeA","8149":"lowIncomeA","8150":"midIncome","8151":"lowIncomeB","8152":"lowIncomeA","8153":"lowIncomeA","8154":"lowIncomeA","8155":"lowIncomeA","8156":"lowIncomeB","8157":"lowIncomeA","8158":"midIncome","8159":"lowIncomeA","8160":"lowIncomeA","8161":"lowIncomeB","8162":"lowIncomeA","8163":"lowIncomeB","8164":"lowIncomeA","8165":"lowIncomeA","8166":"lowIncomeA","8167":"lowIncomeA","8168":"lowIncomeB","8169":"lowIncomeB","8170":"lowIncomeA","8171":"midIncome","8172":"lowIncomeB","8173":"lowIncomeB","8174":"lowIncomeB","8175":"lowIncomeA","8176":"lowIncomeB","8177":"lowIncomeA","8178":"lowIncomeA","8179":"midIncome","8180":"lowIncomeB","8181":"lowIncomeA","8182":"lowIncomeB","8183":"lowIncomeB","8184":"lowIncomeA","8185":"lowIncomeB","8186":"lowIncomeA","8187":"lowIncomeA","8188":"lowIncomeB","8189":"lowIncomeB","8190":"lowIncomeA","8191":"lowIncomeA","8192":"lowIncomeA","8193":"midIncome","8194":"lowIncomeB","8195":"lowIncomeA","8196":"lowIncomeB","8197":"lowIncomeB","8198":"midIncome","8199":"lowIncomeB","8200":"midIncome","8201":"lowIncomeA","8202":"lowIncomeA","8203":"lowIncomeA","8204":"lowIncomeA","8205":"lowIncomeB","8206":"lowIncomeB","8207":"lowIncomeA","8208":"lowIncomeB","8209":"midIncome","8210":"lowIncomeB","8211":"lowIncomeA","8212":"lowIncomeA","8213":"lowIncomeA","8214":"lowIncomeB","8215":"lowIncomeA","8216":"lowIncomeA","8217":"lowIncomeA","8218":"lowIncomeB","8219":"lowIncomeB","8220":"lowIncomeB","8221":"lowIncomeA","8222":"lowIncomeA","8223":"lowIncomeB","8224":"lowIncomeA","8225":"lowIncomeA","8226":"midIncome","8227":"lowIncomeA","8228":"lowIncomeA","8229":"lowIncomeB","8230":"lowIncomeA","8231":"lowIncomeA","8232":"midIncome","8233":"lowIncomeB","8234":"lowIncomeB","8235":"lowIncomeA","8236":"lowIncomeA","8237":"lowIncomeB","8238":"lowIncomeB","8239":"lowIncomeB","8240":"midIncome","8241":"lowIncomeB","8242":"lowIncomeB","8243":"lowIncomeA","8244":"lowIncomeA","8245":"lowIncomeA","8246":"midIncome","8247":"midIncome","8248":"lowIncomeB","8249":"lowIncomeA","8250":"lowIncomeB","8251":"lowIncomeA","8252":"lowIncomeB","8253":"lowIncomeB","8254":"lowIncomeA","8255":"lowIncomeB","8256":"lowIncomeB","8257":"lowIncomeA","8258":"lowIncomeA","8259":"midIncome","8260":"lowIncomeA","8261":"lowIncomeB","8262":"lowIncomeB","8263":"lowIncomeA","8264":"lowIncomeB","8265":"lowIncomeA","8266":"lowIncomeB","8267":"lowIncomeB","8268":"lowIncomeB","8269":"lowIncomeB","8270":"lowIncomeA","8271":"lowIncomeA","8272":"lowIncomeB","8273":"lowIncomeA","8274":"lowIncomeA","8275":"midIncome","8276":"lowIncomeB","8277":"midIncome","8278":"lowIncomeB","8279":"lowIncomeB","8280":"lowIncomeB","8281":"lowIncomeA","8282":"lowIncomeA","8283":"lowIncomeB","8284":"lowIncomeB","8285":"lowIncomeB","8286":"lowIncomeB","8287":"lowIncomeA","8288":"lowIncomeB","8289":"lowIncomeA","8290":"lowIncomeB","8291":"lowIncomeA","8292":"lowIncomeB","8293":"lowIncomeB","8294":"lowIncomeA","8295":"midIncome","8296":"lowIncomeB","8297":"lowIncomeB","8298":"lowIncomeA","8299":"lowIncomeB","8300":"lowIncomeB","8301":"lowIncomeA","8302":"lowIncomeB","8303":"midIncome","8304":"lowIncomeA","8305":"lowIncomeB","8306":"lowIncomeB","8307":"lowIncomeA","8308":"lowIncomeB","8309":"lowIncomeB","8310":"lowIncomeB","8311":"lowIncomeB","8312":"lowIncomeB","8313":"lowIncomeA","8314":"lowIncomeB","8315":"midIncome","8316":"lowIncomeB","8317":"lowIncomeA","8318":"midIncome","8319":"midIncome","8320":"lowIncomeA","8321":"lowIncomeA","8322":"lowIncomeB","8323":"lowIncomeB","8324":"lowIncomeB","8325":"lowIncomeA","8326":"lowIncomeA","8327":"midIncome","8328":"lowIncomeA","8329":"lowIncomeB","8330":"lowIncomeA","8331":"lowIncomeB","8332":"midIncome","8333":"lowIncomeB","8334":"lowIncomeA","8335":"lowIncomeA","8336":"lowIncomeA","8337":"lowIncomeA","8338":"lowIncomeA","8339":"lowIncomeB","8340":"lowIncomeA","8341":"lowIncomeA","8342":"lowIncomeB","8343":"lowIncomeB","8344":"lowIncomeB","8345":"lowIncomeB","8346":"lowIncomeB","8347":"midIncome","8348":"lowIncomeA","8349":"lowIncomeA","8350":"lowIncomeA","8351":"lowIncomeA","8352":"lowIncomeA","8353":"lowIncomeB","8354":"lowIncomeA","8355":"lowIncomeB","8356":"midIncome","8357":"lowIncomeB","8358":"lowIncomeB","8359":"lowIncomeB","8360":"lowIncomeA","8361":"lowIncomeB","8362":"lowIncomeB","8363":"lowIncomeB","8364":"lowIncomeB","8365":"lowIncomeA","8366":"lowIncomeB","8367":"lowIncomeA","8368":"lowIncomeA","8369":"midIncome","8370":"lowIncomeA","8371":"lowIncomeB","8372":"lowIncomeB","8373":"lowIncomeA","8374":"lowIncomeB","8375":"lowIncomeB","8376":"lowIncomeB","8377":"lowIncomeA","8378":"lowIncomeA","8379":"lowIncomeB","8380":"lowIncomeB","8381":"lowIncomeB","8382":"lowIncomeB","8383":"lowIncomeA","8384":"lowIncomeA","8385":"lowIncomeA","8386":"lowIncomeA","8387":"lowIncomeB","8388":"lowIncomeB","8389":"lowIncomeA","8390":"lowIncomeA","8391":"lowIncomeB","8392":"lowIncomeA","8393":"lowIncomeB","8394":"lowIncomeB","8395":"lowIncomeB","8396":"lowIncomeB","8397":"lowIncomeB","8398":"lowIncomeA","8399":"midIncome","8400":"lowIncomeB","8401":"lowIncomeA","8402":"lowIncomeA","8403":"lowIncomeA","8404":"lowIncomeB","8405":"lowIncomeA","8406":"midIncome","8407":"lowIncomeA","8408":"lowIncomeA","8409":"lowIncomeB","8410":"midIncome","8411":"midIncome","8412":"midIncome","8413":"lowIncomeA","8414":"lowIncomeB","8415":"lowIncomeB","8416":"lowIncomeA","8417":"lowIncomeA","8418":"midIncome","8419":"lowIncomeB","8420":"lowIncomeA","8421":"lowIncomeB","8422":"lowIncomeA","8423":"lowIncomeB","8424":"lowIncomeA","8425":"lowIncomeB","8426":"lowIncomeB","8427":"lowIncomeA","8428":"lowIncomeA","8429":"lowIncomeA","8430":"lowIncomeA","8431":"lowIncomeA","8432":"lowIncomeB","8433":"lowIncomeB","8434":"lowIncomeB","8435":"lowIncomeA","8436":"lowIncomeA","8437":"lowIncomeA","8438":"lowIncomeB","8439":"lowIncomeA","8440":"lowIncomeB","8441":"lowIncomeB","8442":"lowIncomeA","8443":"lowIncomeB","8444":"lowIncomeB","8445":"lowIncomeA","8446":"lowIncomeA","8447":"lowIncomeB","8448":"midIncome","8449":"lowIncomeB","8450":"lowIncomeA","8451":"lowIncomeB","8452":"lowIncomeA","8453":"lowIncomeB","8454":"lowIncomeA","8455":"lowIncomeA","8456":"lowIncomeA","8457":"lowIncomeA","8458":"lowIncomeB","8459":"lowIncomeA","8460":"lowIncomeB","8461":"lowIncomeB","8462":"lowIncomeB","8463":"lowIncomeA","8464":"midIncome","8465":"lowIncomeB","8466":"lowIncomeA","8467":"lowIncomeA","8468":"lowIncomeA","8469":"midIncome","8470":"lowIncomeB","8471":"lowIncomeA","8472":"lowIncomeA","8473":"midIncome","8474":"lowIncomeA","8475":"lowIncomeA","8476":"lowIncomeB","8477":"lowIncomeB","8478":"lowIncomeA","8479":"lowIncomeA","8480":"lowIncomeB","8481":"lowIncomeB","8482":"lowIncomeA","8483":"lowIncomeB","8484":"lowIncomeB","8485":"lowIncomeB","8486":"lowIncomeA","8487":"lowIncomeB","8488":"lowIncomeB","8489":"lowIncomeB","8490":"lowIncomeB","8491":"midIncome","8492":"midIncome","8493":"lowIncomeA","8494":"lowIncomeB","8495":"lowIncomeB","8496":"lowIncomeA","8497":"lowIncomeB","8498":"lowIncomeA","8499":"lowIncomeB","8500":"lowIncomeA","8501":"lowIncomeB","8502":"lowIncomeB","8503":"lowIncomeB","8504":"lowIncomeA","8505":"midIncome","8506":"lowIncomeA","8507":"lowIncomeB","8508":"lowIncomeA","8509":"lowIncomeB","8510":"lowIncomeB","8511":"lowIncomeA","8512":"lowIncomeA","8513":"lowIncomeA","8514":"lowIncomeB","8515":"lowIncomeB","8516":"midIncome","8517":"lowIncomeB","8518":"lowIncomeB","8519":"lowIncomeB","8520":"lowIncomeB","8521":"lowIncomeB","8522":"lowIncomeA","8523":"lowIncomeB","8524":"lowIncomeB","8525":"midIncome","8526":"lowIncomeB","8527":"midIncome","8528":"lowIncomeB","8529":"lowIncomeB","8530":"lowIncomeB","8531":"lowIncomeA","8532":"lowIncomeB","8533":"lowIncomeA","8534":"lowIncomeB","8535":"lowIncomeB","8536":"lowIncomeB","8537":"lowIncomeA","8538":"lowIncomeB","8539":"lowIncomeA","8540":"lowIncomeA","8541":"lowIncomeB","8542":"lowIncomeA","8543":"lowIncomeA","8544":"lowIncomeA","8545":"midIncome","8546":"lowIncomeB","8547":"lowIncomeA","8548":"lowIncomeA","8549":"lowIncomeA","8550":"midIncome","8551":"midIncome","8552":"lowIncomeA","8553":"lowIncomeB","8554":"lowIncomeB","8555":"midIncome","8556":"lowIncomeB","8557":"lowIncomeA","8558":"lowIncomeA","8559":"lowIncomeB","8560":"lowIncomeB","8561":"midIncome","8562":"lowIncomeB","8563":"lowIncomeA","8564":"lowIncomeA","8565":"lowIncomeA","8566":"lowIncomeA","8567":"lowIncomeB","8568":"lowIncomeA","8569":"lowIncomeB","8570":"lowIncomeA","8571":"lowIncomeA","8572":"lowIncomeA","8573":"lowIncomeA","8574":"lowIncomeA","8575":"lowIncomeB","8576":"midIncome","8577":"lowIncomeA","8578":"lowIncomeB","8579":"lowIncomeB","8580":"lowIncomeB","8581":"lowIncomeA","8582":"lowIncomeA","8583":"lowIncomeB","8584":"lowIncomeA","8585":"lowIncomeB","8586":"lowIncomeA","8587":"midIncome","8588":"lowIncomeA","8589":"lowIncomeB","8590":"lowIncomeA","8591":"lowIncomeB","8592":"lowIncomeA","8593":"midIncome","8594":"lowIncomeA","8595":"lowIncomeB","8596":"lowIncomeA","8597":"lowIncomeA","8598":"lowIncomeA","8599":"midIncome","8600":"lowIncomeB","8601":"lowIncomeB","8602":"lowIncomeA","8603":"lowIncomeA","8604":"lowIncomeA","8605":"lowIncomeB","8606":"lowIncomeB","8607":"lowIncomeB","8608":"midIncome","8609":"lowIncomeA","8610":"lowIncomeA","8611":"lowIncomeB","8612":"lowIncomeA","8613":"lowIncomeA","8614":"lowIncomeB","8615":"lowIncomeB","8616":"lowIncomeB","8617":"midIncome","8618":"lowIncomeA","8619":"lowIncomeA","8620":"lowIncomeA","8621":"lowIncomeB","8622":"lowIncomeA","8623":"lowIncomeB","8624":"lowIncomeB","8625":"lowIncomeA","8626":"lowIncomeB","8627":"lowIncomeB","8628":"lowIncomeA","8629":"lowIncomeB","8630":"lowIncomeA","8631":"lowIncomeA","8632":"lowIncomeA","8633":"midIncome","8634":"lowIncomeB","8635":"midIncome","8636":"lowIncomeA","8637":"lowIncomeB","8638":"lowIncomeB","8639":"lowIncomeA","8640":"lowIncomeB","8641":"lowIncomeA","8642":"lowIncomeB","8643":"lowIncomeB","8644":"lowIncomeA","8645":"lowIncomeA","8646":"lowIncomeA","8647":"lowIncomeB","8648":"lowIncomeA","8649":"lowIncomeB","8650":"lowIncomeB","8651":"lowIncomeA","8652":"lowIncomeA","8653":"lowIncomeB","8654":"lowIncomeA","8655":"lowIncomeA","8656":"lowIncomeA","8657":"lowIncomeA","8658":"lowIncomeA","8659":"lowIncomeB","8660":"lowIncomeA","8661":"lowIncomeA","8662":"midIncome","8663":"lowIncomeA","8664":"midIncome","8665":"lowIncomeB","8666":"lowIncomeA","8667":"lowIncomeB","8668":"lowIncomeA","8669":"lowIncomeB","8670":"lowIncomeA","8671":"lowIncomeA","8672":"midIncome","8673":"lowIncomeA","8674":"lowIncomeB","8675":"lowIncomeA","8676":"lowIncomeA","8677":"lowIncomeA","8678":"lowIncomeA","8679":"lowIncomeA","8680":"lowIncomeA","8681":"lowIncomeA","8682":"lowIncomeB","8683":"lowIncomeA","8684":"lowIncomeA","8685":"lowIncomeB","8686":"lowIncomeB","8687":"lowIncomeB","8688":"lowIncomeA","8689":"lowIncomeA","8690":"lowIncomeB","8691":"midIncome","8692":"lowIncomeA","8693":"lowIncomeA","8694":"lowIncomeB","8695":"lowIncomeA","8696":"lowIncomeA","8697":"lowIncomeA","8698":"lowIncomeA","8699":"lowIncomeB","8700":"midIncome","8701":"lowIncomeA","8702":"lowIncomeA","8703":"lowIncomeA","8704":"lowIncomeB","8705":"lowIncomeA","8706":"lowIncomeB","8707":"lowIncomeB","8708":"lowIncomeA","8709":"lowIncomeA","8710":"lowIncomeB","8711":"midIncome","8712":"midIncome","8713":"midIncome","8714":"lowIncomeA","8715":"lowIncomeB","8716":"lowIncomeB","8717":"lowIncomeA","8718":"lowIncomeA","8719":"lowIncomeB","8720":"lowIncomeB","8721":"lowIncomeA","8722":"lowIncomeA","8723":"lowIncomeA","8724":"lowIncomeA","8725":"lowIncomeB","8726":"lowIncomeB","8727":"lowIncomeB","8728":"lowIncomeB","8729":"lowIncomeB","8730":"lowIncomeB","8731":"lowIncomeB","8732":"midIncome","8733":"lowIncomeA","8734":"lowIncomeB","8735":"lowIncomeB","8736":"lowIncomeA","8737":"lowIncomeA","8738":"lowIncomeB","8739":"lowIncomeB","8740":"lowIncomeB","8741":"lowIncomeB","8742":"lowIncomeB","8743":"lowIncomeA","8744":"lowIncomeB","8745":"lowIncomeB","8746":"lowIncomeB","8747":"lowIncomeA","8748":"lowIncomeA","8749":"lowIncomeA","8750":"lowIncomeA","8751":"lowIncomeB","8752":"lowIncomeA","8753":"lowIncomeA","8754":"lowIncomeB","8755":"lowIncomeB","8756":"lowIncomeB","8757":"lowIncomeB","8758":"lowIncomeA","8759":"lowIncomeB","8760":"midIncome","8761":"midIncome","8762":"lowIncomeA","8763":"midIncome","8764":"lowIncomeB","8765":"lowIncomeB","8766":"midIncome","8767":"midIncome","8768":"midIncome","8769":"lowIncomeA","8770":"lowIncomeA","8771":"lowIncomeB","8772":"lowIncomeB","8773":"lowIncomeB","8774":"lowIncomeA","8775":"midIncome","8776":"lowIncomeB","8777":"lowIncomeA","8778":"lowIncomeB","8779":"lowIncomeA","8780":"lowIncomeB","8781":"lowIncomeA","8782":"lowIncomeA","8783":"lowIncomeA","8784":"lowIncomeB","8785":"lowIncomeB","8786":"midIncome","8787":"lowIncomeA","8788":"lowIncomeB","8789":"lowIncomeA","8790":"midIncome","8791":"lowIncomeA","8792":"lowIncomeA","8793":"midIncome","8794":"lowIncomeB","8795":"lowIncomeA","8796":"lowIncomeA","8797":"lowIncomeB","8798":"lowIncomeA","8799":"lowIncomeB","8800":"lowIncomeB","8801":"lowIncomeA","8802":"lowIncomeA","8803":"lowIncomeB","8804":"lowIncomeA","8805":"lowIncomeB","8806":"midIncome","8807":"lowIncomeA","8808":"lowIncomeA","8809":"midIncome","8810":"midIncome","8811":"lowIncomeB","8812":"midIncome","8813":"lowIncomeA","8814":"lowIncomeA","8815":"lowIncomeB","8816":"lowIncomeA","8817":"lowIncomeB","8818":"lowIncomeB","8819":"lowIncomeB","8820":"lowIncomeA","8821":"lowIncomeB","8822":"midIncome","8823":"midIncome","8824":"lowIncomeB","8825":"lowIncomeA","8826":"midIncome","8827":"lowIncomeA","8828":"lowIncomeA","8829":"midIncome","8830":"lowIncomeA","8831":"lowIncomeB","8832":"lowIncomeB","8833":"lowIncomeA","8834":"midIncome","8835":"lowIncomeA","8836":"lowIncomeA","8837":"lowIncomeB","8838":"lowIncomeB","8839":"lowIncomeB","8840":"lowIncomeB","8841":"lowIncomeB","8842":"lowIncomeB","8843":"lowIncomeB","8844":"lowIncomeA","8845":"lowIncomeA","8846":"lowIncomeB","8847":"lowIncomeB","8848":"lowIncomeA","8849":"lowIncomeA","8850":"lowIncomeB","8851":"lowIncomeA","8852":"lowIncomeA","8853":"lowIncomeB","8854":"lowIncomeB","8855":"lowIncomeB","8856":"lowIncomeB","8857":"lowIncomeB","8858":"lowIncomeA","8859":"lowIncomeA","8860":"lowIncomeB","8861":"lowIncomeB","8862":"lowIncomeB","8863":"lowIncomeA","8864":"lowIncomeA","8865":"lowIncomeB","8866":"lowIncomeB","8867":"lowIncomeB","8868":"lowIncomeB","8869":"lowIncomeA","8870":"lowIncomeA","8871":"lowIncomeB","8872":"lowIncomeB","8873":"lowIncomeB","8874":"midIncome","8875":"lowIncomeB","8876":"lowIncomeB","8877":"lowIncomeA","8878":"lowIncomeB","8879":"lowIncomeB","8880":"lowIncomeB","8881":"lowIncomeB","8882":"lowIncomeA","8883":"lowIncomeA","8884":"lowIncomeA","8885":"lowIncomeB","8886":"lowIncomeA","8887":"lowIncomeA","8888":"midIncome","8889":"lowIncomeB","8890":"midIncome","8891":"lowIncomeB","8892":"lowIncomeB","8893":"lowIncomeA","8894":"lowIncomeA","8895":"lowIncomeA","8896":"lowIncomeB","8897":"lowIncomeA","8898":"lowIncomeA","8899":"lowIncomeA","8900":"lowIncomeA","8901":"midIncome","8902":"midIncome","8903":"highIncome","8904":"midIncome","8905":"midIncome","8906":"lowIncomeB","8907":"midIncome","8908":"highIncome","8909":"midIncome","8910":"midIncome","8911":"lowIncomeA","8912":"lowIncomeB","8913":"lowIncomeA","8914":"midIncome","8915":"lowIncomeA","8916":"lowIncomeB","8917":"lowIncomeB","8918":"highIncome","8919":"midIncome","8920":"midIncome","8921":"midIncome","8922":"midIncome","8923":"midIncome","8924":"lowIncomeA","8925":"midIncome","8926":"midIncome","8927":"midIncome","8928":"midIncome","8929":"midIncome","8930":"lowIncomeB","8931":"lowIncomeA","8932":"midIncome","8933":"midIncome","8934":"midIncome","8935":"midIncome","8936":"highIncome","8937":"lowIncomeA","8938":"midIncome","8939":"highIncome","8940":"midIncome","8941":"highIncome","8942":"lowIncomeB","8943":"midIncome","8944":"midIncome","8945":"highIncome","8946":"lowIncomeA","8947":"midIncome","8948":"midIncome","8949":"highIncome","8950":"highIncome","8951":"lowIncomeB","8952":"midIncome","8953":"midIncome","8954":"midIncome","8955":"midIncome","8956":"midIncome","8957":"midIncome","8958":"midIncome","8959":"midIncome","8960":"midIncome","8961":"highIncome","8962":"midIncome","8963":"midIncome","8964":"midIncome","8965":"midIncome","8966":"lowIncomeA","8967":"midIncome","8968":"lowIncomeA","8969":"lowIncomeA","8970":"highIncome","8971":"midIncome","8972":"lowIncomeB","8973":"highIncome","8974":"midIncome","8975":"midIncome","8976":"midIncome","8977":"midIncome","8978":"highIncome","8979":"midIncome","8980":"midIncome","8981":"midIncome","8982":"lowIncomeB","8983":"midIncome","8984":"midIncome","8985":"midIncome","8986":"midIncome","8987":"midIncome","8988":"highIncome","8989":"midIncome","8990":"midIncome","8991":"midIncome","8992":"midIncome","8993":"midIncome","8994":"midIncome","8995":"midIncome","8996":"midIncome","8997":"midIncome","8998":"midIncome","8999":"midIncome","9000":"midIncome","9001":"midIncome","9002":"highIncome","9003":"midIncome","9004":"midIncome","9005":"midIncome","9006":"midIncome","9007":"midIncome","9008":"lowIncomeA","9009":"lowIncomeB","9010":"midIncome","9011":"lowIncomeB","9012":"midIncome","9013":"midIncome","9014":"midIncome","9015":"midIncome","9016":"highIncome","9017":"lowIncomeB","9018":"midIncome","9019":"lowIncomeB","9020":"highIncome","9021":"lowIncomeA","9022":"midIncome","9023":"midIncome","9024":"midIncome","9025":"midIncome","9026":"lowIncomeA","9027":"lowIncomeA","9028":"midIncome","9029":"lowIncomeB","9030":"lowIncomeB","9031":"lowIncomeB","9032":"midIncome","9033":"lowIncomeB","9034":"lowIncomeB","9035":"midIncome","9036":"midIncome","9037":"midIncome","9038":"midIncome","9039":"midIncome","9040":"midIncome","9041":"midIncome","9042":"midIncome","9043":"midIncome","9044":"lowIncomeB","9045":"midIncome","9046":"midIncome","9047":"midIncome","9048":"midIncome","9049":"lowIncomeA","9050":"midIncome","9051":"highIncome","9052":"midIncome","9053":"highIncome","9054":"highIncome","9055":"highIncome","9056":"midIncome","9057":"highIncome","9058":"highIncome","9059":"midIncome","9060":"midIncome","9061":"midIncome","9062":"midIncome","9063":"midIncome","9064":"midIncome","9065":"midIncome","9066":"lowIncomeB","9067":"midIncome","9068":"midIncome","9069":"lowIncomeB","9070":"midIncome","9071":"midIncome","9072":"midIncome","9073":"lowIncomeB","9074":"midIncome","9075":"midIncome","9076":"midIncome","9077":"midIncome","9078":"midIncome","9079":"highIncome","9080":"midIncome","9081":"highIncome","9082":"highIncome","9083":"midIncome","9084":"midIncome","9085":"midIncome","9086":"midIncome","9087":"midIncome","9088":"lowIncomeB","9089":"midIncome","9090":"lowIncomeA","9091":"lowIncomeA","9092":"midIncome","9093":"midIncome","9094":"midIncome","9095":"midIncome","9096":"midIncome","9097":"midIncome","9098":"midIncome","9099":"lowIncomeA","9100":"midIncome","9101":"lowIncomeA","9102":"highIncome","9103":"midIncome","9104":"midIncome","9105":"lowIncomeA","9106":"midIncome","9107":"lowIncomeB","9108":"midIncome","9109":"midIncome","9110":"midIncome","9111":"midIncome","9112":"highIncome","9113":"lowIncomeB","9114":"lowIncomeA","9115":"midIncome","9116":"midIncome","9117":"lowIncomeB","9118":"midIncome","9119":"lowIncomeB","9120":"highIncome","9121":"lowIncomeA","9122":"midIncome","9123":"midIncome","9124":"highIncome","9125":"midIncome","9126":"lowIncomeB","9127":"lowIncomeB","9128":"highIncome","9129":"midIncome","9130":"midIncome","9131":"lowIncomeB","9132":"highIncome","9133":"midIncome","9134":"midIncome","9135":"midIncome","9136":"midIncome","9137":"lowIncomeB","9138":"midIncome","9139":"midIncome","9140":"midIncome","9141":"lowIncomeA","9142":"lowIncomeB","9143":"midIncome","9144":"midIncome","9145":"midIncome","9146":"midIncome","9147":"lowIncomeB","9148":"lowIncomeB","9149":"lowIncomeA","9150":"lowIncomeB","9151":"lowIncomeA","9152":"lowIncomeB","9153":"highIncome","9154":"highIncome","9155":"midIncome","9156":"lowIncomeA","9157":"midIncome","9158":"highIncome","9159":"midIncome","9160":"midIncome","9161":"midIncome","9162":"midIncome","9163":"midIncome","9164":"midIncome","9165":"lowIncomeA","9166":"lowIncomeA","9167":"lowIncomeB","9168":"midIncome","9169":"midIncome","9170":"midIncome","9171":"lowIncomeB","9172":"lowIncomeB","9173":"lowIncomeA","9174":"midIncome","9175":"midIncome","9176":"midIncome","9177":"lowIncomeA","9178":"midIncome","9179":"midIncome","9180":"midIncome","9181":"midIncome","9182":"midIncome","9183":"midIncome","9184":"midIncome","9185":"highIncome","9186":"midIncome","9187":"highIncome","9188":"midIncome","9189":"midIncome","9190":"lowIncomeB","9191":"highIncome","9192":"highIncome","9193":"midIncome","9194":"midIncome","9195":"midIncome","9196":"midIncome","9197":"highIncome","9198":"midIncome","9199":"midIncome","9200":"midIncome","9201":"midIncome","9202":"midIncome","9203":"midIncome","9204":"lowIncomeB","9205":"lowIncomeA","9206":"midIncome","9207":"midIncome","9208":"midIncome","9209":"midIncome","9210":"midIncome","9211":"midIncome","9212":"midIncome","9213":"highIncome","9214":"midIncome","9215":"midIncome","9216":"lowIncomeA","9217":"midIncome","9218":"midIncome","9219":"midIncome","9220":"midIncome","9221":"midIncome","9222":"lowIncomeA","9223":"midIncome","9224":"midIncome","9225":"midIncome","9226":"midIncome","9227":"midIncome","9228":"midIncome","9229":"midIncome","9230":"midIncome","9231":"midIncome","9232":"midIncome","9233":"midIncome","9234":"highIncome","9235":"midIncome","9236":"midIncome","9237":"midIncome","9238":"midIncome","9239":"midIncome","9240":"midIncome","9241":"midIncome","9242":"midIncome","9243":"lowIncomeB","9244":"midIncome","9245":"midIncome","9246":"midIncome","9247":"midIncome","9248":"midIncome","9249":"highIncome","9250":"lowIncomeB","9251":"midIncome","9252":"midIncome","9253":"lowIncomeA","9254":"midIncome","9255":"midIncome","9256":"midIncome","9257":"midIncome","9258":"midIncome","9259":"midIncome","9260":"midIncome","9261":"midIncome","9262":"midIncome","9263":"lowIncomeB","9264":"highIncome","9265":"midIncome","9266":"midIncome","9267":"midIncome","9268":"lowIncomeA","9269":"midIncome","9270":"midIncome","9271":"midIncome","9272":"midIncome","9273":"midIncome","9274":"lowIncomeA","9275":"midIncome","9276":"midIncome","9277":"midIncome","9278":"midIncome","9279":"lowIncomeA","9280":"lowIncomeB","9281":"midIncome","9282":"midIncome","9283":"midIncome","9284":"midIncome","9285":"lowIncomeB","9286":"highIncome","9287":"midIncome","9288":"midIncome","9289":"lowIncomeA","9290":"midIncome","9291":"midIncome","9292":"highIncome","9293":"midIncome","9294":"midIncome","9295":"lowIncomeA","9296":"lowIncomeB","9297":"highIncome","9298":"midIncome","9299":"midIncome","9300":"midIncome","9301":"midIncome","9302":"midIncome","9303":"midIncome","9304":"lowIncomeA","9305":"midIncome","9306":"lowIncomeB","9307":"midIncome","9308":"lowIncomeB","9309":"midIncome","9310":"lowIncomeB","9311":"midIncome","9312":"midIncome","9313":"midIncome","9314":"midIncome","9315":"midIncome","9316":"midIncome","9317":"lowIncomeA","9318":"midIncome","9319":"lowIncomeB","9320":"midIncome","9321":"midIncome","9322":"highIncome","9323":"midIncome","9324":"midIncome","9325":"midIncome","9326":"midIncome","9327":"midIncome","9328":"midIncome","9329":"midIncome","9330":"midIncome","9331":"highIncome","9332":"lowIncomeA","9333":"midIncome","9334":"midIncome","9335":"lowIncomeA","9336":"midIncome","9337":"midIncome","9338":"midIncome","9339":"midIncome","9340":"lowIncomeB","9341":"lowIncomeA","9342":"midIncome","9343":"midIncome","9344":"midIncome","9345":"midIncome","9346":"lowIncomeA","9347":"midIncome","9348":"midIncome","9349":"midIncome","9350":"lowIncomeA","9351":"midIncome","9352":"midIncome","9353":"midIncome","9354":"midIncome","9355":"midIncome","9356":"lowIncomeA","9357":"midIncome","9358":"midIncome","9359":"midIncome","9360":"midIncome","9361":"midIncome","9362":"midIncome","9363":"midIncome","9364":"lowIncomeB","9365":"midIncome","9366":"midIncome","9367":"lowIncomeB","9368":"midIncome","9369":"midIncome","9370":"lowIncomeA","9371":"midIncome","9372":"midIncome","9373":"lowIncomeB","9374":"midIncome","9375":"midIncome","9376":"lowIncomeB","9377":"midIncome","9378":"lowIncomeA","9379":"midIncome","9380":"midIncome","9381":"highIncome","9382":"lowIncomeB","9383":"highIncome","9384":"lowIncomeA","9385":"midIncome","9386":"highIncome","9387":"lowIncomeB","9388":"lowIncomeB","9389":"lowIncomeB","9390":"midIncome","9391":"midIncome","9392":"midIncome","9393":"midIncome","9394":"lowIncomeA","9395":"highIncome","9396":"midIncome","9397":"midIncome","9398":"highIncome","9399":"midIncome","9400":"lowIncomeA","9401":"lowIncomeB","9402":"lowIncomeB","9403":"lowIncomeB","9404":"lowIncomeA","9405":"lowIncomeA","9406":"lowIncomeB","9407":"lowIncomeA","9408":"lowIncomeB","9409":"lowIncomeB","9410":"lowIncomeB","9411":"lowIncomeA","9412":"lowIncomeB","9413":"midIncome","9414":"lowIncomeB","9415":"lowIncomeA","9416":"lowIncomeA","9417":"lowIncomeB","9418":"lowIncomeB","9419":"lowIncomeA","9420":"midIncome","9421":"lowIncomeB","9422":"lowIncomeA","9423":"lowIncomeA","9424":"lowIncomeA","9425":"lowIncomeA","9426":"lowIncomeB","9427":"lowIncomeA","9428":"lowIncomeA","9429":"midIncome","9430":"midIncome","9431":"lowIncomeB","9432":"lowIncomeB","9433":"lowIncomeA","9434":"lowIncomeA","9435":"lowIncomeB","9436":"lowIncomeB","9437":"lowIncomeB","9438":"lowIncomeA","9439":"lowIncomeA","9440":"lowIncomeB","9441":"lowIncomeA","9442":"lowIncomeA","9443":"lowIncomeB","9444":"lowIncomeA","9445":"lowIncomeB","9446":"lowIncomeA","9447":"lowIncomeA","9448":"lowIncomeB","9449":"lowIncomeA","9450":"lowIncomeB","9451":"lowIncomeB","9452":"lowIncomeA","9453":"lowIncomeA","9454":"lowIncomeB","9455":"lowIncomeA","9456":"midIncome","9457":"lowIncomeA","9458":"lowIncomeA","9459":"lowIncomeB","9460":"lowIncomeB","9461":"lowIncomeB","9462":"lowIncomeA","9463":"midIncome","9464":"lowIncomeA","9465":"lowIncomeA","9466":"lowIncomeA","9467":"lowIncomeB","9468":"lowIncomeB","9469":"lowIncomeB","9470":"lowIncomeA","9471":"midIncome","9472":"lowIncomeA","9473":"lowIncomeA","9474":"lowIncomeA","9475":"lowIncomeA","9476":"lowIncomeA","9477":"lowIncomeA","9478":"lowIncomeB","9479":"lowIncomeB","9480":"lowIncomeB","9481":"lowIncomeA","9482":"lowIncomeA","9483":"lowIncomeA","9484":"lowIncomeB","9485":"midIncome","9486":"lowIncomeA","9487":"lowIncomeB","9488":"midIncome","9489":"lowIncomeA","9490":"lowIncomeB","9491":"lowIncomeA","9492":"lowIncomeB","9493":"lowIncomeA","9494":"midIncome","9495":"lowIncomeA","9496":"lowIncomeB","9497":"lowIncomeA","9498":"lowIncomeB","9499":"lowIncomeB","9500":"lowIncomeA","9501":"lowIncomeA","9502":"lowIncomeA","9503":"lowIncomeA","9504":"lowIncomeA","9505":"lowIncomeA","9506":"lowIncomeA","9507":"lowIncomeA","9508":"lowIncomeA","9509":"lowIncomeB","9510":"midIncome","9511":"lowIncomeA","9512":"lowIncomeA","9513":"lowIncomeA","9514":"lowIncomeA","9515":"lowIncomeB","9516":"lowIncomeB","9517":"lowIncomeB","9518":"lowIncomeA","9519":"lowIncomeA","9520":"lowIncomeB","9521":"lowIncomeB","9522":"lowIncomeB","9523":"lowIncomeA","9524":"lowIncomeB","9525":"lowIncomeB","9526":"lowIncomeA","9527":"lowIncomeB","9528":"lowIncomeB","9529":"lowIncomeB","9530":"midIncome","9531":"lowIncomeB","9532":"lowIncomeA","9533":"midIncome","9534":"lowIncomeB","9535":"lowIncomeB","9536":"lowIncomeA","9537":"lowIncomeA","9538":"lowIncomeA","9539":"lowIncomeB","9540":"lowIncomeA","9541":"lowIncomeB","9542":"lowIncomeA","9543":"lowIncomeB","9544":"lowIncomeB","9545":"lowIncomeA","9546":"midIncome","9547":"lowIncomeA","9548":"lowIncomeA","9549":"lowIncomeA","9550":"lowIncomeA","9551":"lowIncomeB","9552":"lowIncomeA","9553":"lowIncomeA","9554":"lowIncomeA","9555":"midIncome","9556":"lowIncomeA","9557":"lowIncomeA","9558":"lowIncomeA","9559":"lowIncomeA","9560":"lowIncomeA","9561":"lowIncomeA","9562":"lowIncomeB","9563":"lowIncomeB","9564":"lowIncomeA","9565":"lowIncomeB","9566":"lowIncomeA","9567":"midIncome","9568":"lowIncomeA","9569":"midIncome","9570":"lowIncomeA","9571":"lowIncomeA","9572":"midIncome","9573":"lowIncomeA","9574":"lowIncomeA","9575":"lowIncomeA","9576":"lowIncomeA","9577":"lowIncomeB","9578":"lowIncomeB","9579":"lowIncomeB","9580":"lowIncomeA","9581":"lowIncomeB","9582":"lowIncomeA","9583":"lowIncomeA","9584":"midIncome","9585":"lowIncomeB","9586":"lowIncomeA","9587":"lowIncomeB","9588":"lowIncomeB","9589":"lowIncomeA","9590":"lowIncomeB","9591":"midIncome","9592":"lowIncomeB","9593":"lowIncomeB","9594":"lowIncomeA","9595":"lowIncomeA","9596":"midIncome","9597":"lowIncomeB","9598":"midIncome","9599":"lowIncomeA","9600":"lowIncomeA","9601":"lowIncomeA","9602":"lowIncomeB","9603":"lowIncomeA","9604":"lowIncomeA","9605":"lowIncomeA","9606":"lowIncomeB","9607":"lowIncomeA","9608":"lowIncomeB","9609":"lowIncomeA","9610":"lowIncomeB","9611":"lowIncomeB","9612":"midIncome","9613":"lowIncomeB","9614":"lowIncomeB","9615":"lowIncomeA","9616":"lowIncomeA","9617":"lowIncomeA","9618":"lowIncomeB","9619":"lowIncomeB","9620":"lowIncomeA","9621":"lowIncomeA","9622":"lowIncomeA","9623":"lowIncomeA","9624":"lowIncomeB","9625":"lowIncomeB","9626":"lowIncomeA","9627":"lowIncomeB","9628":"lowIncomeA","9629":"lowIncomeA","9630":"lowIncomeB","9631":"lowIncomeA","9632":"lowIncomeA","9633":"lowIncomeB","9634":"midIncome","9635":"midIncome","9636":"lowIncomeA","9637":"lowIncomeA","9638":"lowIncomeA","9639":"lowIncomeA","9640":"lowIncomeB","9641":"lowIncomeA","9642":"lowIncomeA","9643":"lowIncomeA","9644":"lowIncomeA","9645":"lowIncomeB","9646":"lowIncomeA","9647":"lowIncomeB","9648":"lowIncomeA","9649":"midIncome","9650":"lowIncomeB","9651":"lowIncomeB","9652":"lowIncomeB","9653":"lowIncomeB","9654":"lowIncomeB","9655":"lowIncomeA","9656":"lowIncomeA","9657":"lowIncomeB","9658":"lowIncomeA","9659":"lowIncomeA","9660":"lowIncomeB","9661":"lowIncomeA","9662":"lowIncomeA","9663":"lowIncomeA","9664":"lowIncomeA","9665":"lowIncomeB","9666":"midIncome","9667":"lowIncomeA","9668":"lowIncomeB","9669":"lowIncomeB","9670":"lowIncomeB","9671":"lowIncomeA","9672":"lowIncomeB","9673":"lowIncomeA","9674":"lowIncomeA","9675":"lowIncomeB","9676":"lowIncomeA","9677":"lowIncomeB","9678":"lowIncomeB","9679":"lowIncomeB","9680":"lowIncomeA","9681":"lowIncomeB","9682":"lowIncomeA","9683":"midIncome","9684":"midIncome","9685":"lowIncomeB","9686":"lowIncomeB","9687":"lowIncomeA","9688":"lowIncomeB","9689":"lowIncomeA","9690":"lowIncomeA","9691":"lowIncomeA","9692":"lowIncomeA","9693":"lowIncomeA","9694":"lowIncomeB","9695":"lowIncomeB","9696":"lowIncomeA","9697":"lowIncomeA","9698":"lowIncomeB","9699":"lowIncomeB","9700":"lowIncomeA","9701":"lowIncomeA","9702":"lowIncomeA","9703":"lowIncomeA","9704":"lowIncomeA","9705":"lowIncomeA","9706":"lowIncomeA","9707":"lowIncomeB","9708":"lowIncomeA","9709":"lowIncomeA","9710":"midIncome","9711":"lowIncomeA","9712":"lowIncomeA","9713":"lowIncomeB","9714":"lowIncomeB","9715":"lowIncomeB","9716":"lowIncomeA","9717":"lowIncomeA","9718":"lowIncomeA","9719":"lowIncomeA","9720":"lowIncomeB","9721":"lowIncomeA","9722":"lowIncomeA","9723":"lowIncomeA","9724":"lowIncomeA","9725":"lowIncomeA","9726":"lowIncomeB","9727":"midIncome","9728":"lowIncomeB","9729":"lowIncomeA","9730":"lowIncomeA","9731":"lowIncomeB","9732":"lowIncomeA","9733":"lowIncomeB","9734":"lowIncomeB","9735":"lowIncomeA","9736":"lowIncomeA","9737":"lowIncomeB","9738":"lowIncomeA","9739":"lowIncomeA","9740":"lowIncomeA","9741":"midIncome","9742":"lowIncomeB","9743":"lowIncomeB","9744":"midIncome","9745":"lowIncomeB","9746":"lowIncomeA","9747":"lowIncomeB","9748":"lowIncomeB","9749":"lowIncomeB","9750":"lowIncomeB","9751":"lowIncomeB","9752":"lowIncomeB","9753":"lowIncomeA","9754":"lowIncomeA","9755":"lowIncomeA","9756":"lowIncomeA","9757":"lowIncomeA","9758":"lowIncomeB","9759":"lowIncomeA","9760":"lowIncomeA","9761":"lowIncomeB","9762":"lowIncomeA","9763":"lowIncomeB","9764":"lowIncomeA","9765":"midIncome","9766":"lowIncomeA","9767":"lowIncomeA","9768":"lowIncomeA","9769":"lowIncomeA","9770":"lowIncomeB","9771":"lowIncomeA","9772":"lowIncomeA","9773":"lowIncomeA","9774":"lowIncomeA","9775":"lowIncomeB","9776":"lowIncomeA","9777":"lowIncomeA","9778":"lowIncomeB","9779":"lowIncomeB","9780":"lowIncomeB","9781":"lowIncomeB","9782":"lowIncomeB","9783":"lowIncomeB","9784":"lowIncomeA","9785":"lowIncomeB","9786":"lowIncomeA","9787":"lowIncomeA","9788":"lowIncomeB","9789":"lowIncomeB","9790":"lowIncomeB","9791":"lowIncomeB","9792":"lowIncomeB","9793":"lowIncomeA","9794":"lowIncomeA","9795":"lowIncomeA","9796":"midIncome","9797":"lowIncomeA","9798":"midIncome","9799":"lowIncomeB","9800":"lowIncomeB","9801":"lowIncomeB","9802":"lowIncomeB","9803":"lowIncomeA","9804":"lowIncomeB","9805":"midIncome","9806":"lowIncomeB","9807":"lowIncomeB","9808":"lowIncomeA","9809":"midIncome","9810":"lowIncomeA","9811":"lowIncomeB","9812":"midIncome","9813":"lowIncomeB","9814":"lowIncomeB","9815":"lowIncomeA","9816":"lowIncomeB","9817":"lowIncomeA","9818":"lowIncomeA","9819":"lowIncomeB","9820":"lowIncomeA","9821":"lowIncomeB","9822":"lowIncomeA","9823":"lowIncomeA","9824":"midIncome","9825":"lowIncomeA","9826":"lowIncomeA","9827":"lowIncomeA","9828":"lowIncomeA","9829":"lowIncomeA","9830":"lowIncomeB","9831":"lowIncomeA","9832":"lowIncomeA","9833":"lowIncomeB","9834":"midIncome","9835":"lowIncomeA","9836":"lowIncomeB","9837":"lowIncomeB","9838":"midIncome","9839":"lowIncomeB","9840":"lowIncomeB","9841":"lowIncomeA","9842":"lowIncomeB","9843":"lowIncomeB","9844":"lowIncomeB","9845":"lowIncomeA","9846":"lowIncomeB","9847":"midIncome","9848":"lowIncomeA","9849":"lowIncomeA","9850":"lowIncomeA","9851":"lowIncomeB","9852":"lowIncomeB","9853":"lowIncomeA","9854":"lowIncomeA","9855":"lowIncomeB","9856":"lowIncomeA","9857":"lowIncomeA","9858":"lowIncomeA","9859":"lowIncomeA","9860":"lowIncomeB","9861":"lowIncomeB","9862":"lowIncomeB","9863":"lowIncomeA","9864":"lowIncomeA","9865":"lowIncomeA","9866":"lowIncomeA","9867":"lowIncomeA","9868":"lowIncomeA","9869":"lowIncomeB","9870":"lowIncomeB","9871":"lowIncomeA","9872":"midIncome","9873":"lowIncomeA","9874":"lowIncomeA","9875":"lowIncomeA","9876":"lowIncomeA","9877":"lowIncomeA","9878":"lowIncomeB","9879":"lowIncomeB","9880":"lowIncomeA","9881":"lowIncomeA","9882":"lowIncomeB","9883":"lowIncomeB","9884":"midIncome","9885":"lowIncomeA","9886":"lowIncomeB","9887":"lowIncomeA","9888":"lowIncomeA","9889":"lowIncomeA","9890":"lowIncomeB","9891":"lowIncomeB","9892":"lowIncomeB","9893":"lowIncomeB","9894":"lowIncomeA","9895":"lowIncomeA","9896":"midIncome","9897":"lowIncomeA","9898":"midIncome","9899":"lowIncomeB","9900":"midIncome","9901":"lowIncomeA","9902":"lowIncomeA","9903":"lowIncomeA","9904":"midIncome","9905":"lowIncomeB","9906":"lowIncomeA","9907":"lowIncomeA","9908":"lowIncomeA","9909":"lowIncomeB","9910":"lowIncomeB","9911":"lowIncomeB","9912":"lowIncomeB","9913":"lowIncomeA","9914":"lowIncomeA","9915":"midIncome","9916":"lowIncomeA","9917":"lowIncomeA","9918":"lowIncomeA","9919":"lowIncomeA","9920":"lowIncomeA","9921":"lowIncomeB","9922":"lowIncomeA","9923":"lowIncomeB","9924":"lowIncomeA","9925":"lowIncomeB","9926":"lowIncomeA","9927":"lowIncomeA","9928":"lowIncomeA","9929":"lowIncomeB","9930":"lowIncomeB","9931":"lowIncomeB","9932":"lowIncomeB","9933":"lowIncomeB","9934":"lowIncomeA","9935":"lowIncomeA","9936":"lowIncomeA","9937":"midIncome","9938":"lowIncomeA","9939":"lowIncomeB","9940":"lowIncomeA","9941":"lowIncomeA","9942":"lowIncomeA","9943":"lowIncomeA","9944":"lowIncomeA","9945":"lowIncomeA","9946":"lowIncomeA","9947":"midIncome","9948":"lowIncomeB","9949":"lowIncomeB","9950":"lowIncomeA","9951":"lowIncomeB","9952":"lowIncomeB","9953":"midIncome","9954":"lowIncomeA","9955":"lowIncomeA","9956":"lowIncomeA","9957":"lowIncomeB","9958":"lowIncomeB","9959":"lowIncomeB","9960":"midIncome","9961":"lowIncomeB","9962":"lowIncomeB","9963":"lowIncomeA","9964":"lowIncomeA","9965":"midIncome","9966":"midIncome","9967":"midIncome","9968":"lowIncomeA","9969":"midIncome","9970":"lowIncomeB","9971":"lowIncomeB","9972":"midIncome","9973":"lowIncomeB","9974":"lowIncomeA","9975":"lowIncomeB","9976":"lowIncomeB","9977":"lowIncomeA","9978":"lowIncomeB","9979":"lowIncomeA","9980":"lowIncomeA","9981":"lowIncomeB","9982":"lowIncomeA","9983":"lowIncomeB","9984":"lowIncomeA","9985":"lowIncomeA","9986":"midIncome","9987":"lowIncomeB","9988":"lowIncomeB","9989":"lowIncomeB","9990":"lowIncomeA","9991":"lowIncomeB","9992":"lowIncomeA","9993":"lowIncomeA","9994":"lowIncomeA","9995":"lowIncomeA","9996":"lowIncomeB","9997":"lowIncomeA","9998":"midIncome","9999":"lowIncomeA","10000":"lowIncomeA","10001":"lowIncomeB","10002":"lowIncomeA","10003":"lowIncomeA","10004":"lowIncomeB","10005":"lowIncomeA","10006":"lowIncomeA","10007":"lowIncomeA","10008":"lowIncomeA","10009":"lowIncomeA","10010":"lowIncomeA","10011":"lowIncomeB","10012":"lowIncomeA","10013":"lowIncomeA","10014":"lowIncomeB","10015":"midIncome","10016":"lowIncomeB","10017":"lowIncomeB","10018":"lowIncomeA","10019":"lowIncomeA","10020":"lowIncomeB","10021":"midIncome","10022":"lowIncomeB","10023":"lowIncomeA","10024":"midIncome","10025":"lowIncomeA","10026":"lowIncomeB","10027":"midIncome","10028":"lowIncomeB","10029":"lowIncomeA","10030":"lowIncomeA","10031":"lowIncomeA","10032":"midIncome","10033":"lowIncomeB","10034":"lowIncomeA","10035":"lowIncomeA","10036":"lowIncomeA","10037":"lowIncomeA","10038":"lowIncomeA","10039":"lowIncomeA","10040":"lowIncomeB","10041":"midIncome","10042":"lowIncomeA","10043":"lowIncomeA","10044":"lowIncomeA","10045":"lowIncomeB","10046":"lowIncomeB","10047":"midIncome","10048":"lowIncomeA","10049":"lowIncomeA","10050":"lowIncomeA","10051":"lowIncomeB","10052":"lowIncomeA","10053":"lowIncomeB","10054":"lowIncomeB","10055":"lowIncomeB","10056":"lowIncomeA","10057":"lowIncomeB","10058":"lowIncomeA","10059":"lowIncomeB","10060":"midIncome","10061":"lowIncomeB","10062":"lowIncomeB","10063":"lowIncomeA","10064":"lowIncomeA","10065":"lowIncomeB","10066":"lowIncomeA","10067":"lowIncomeB","10068":"lowIncomeA","10069":"lowIncomeA","10070":"midIncome","10071":"lowIncomeB","10072":"lowIncomeA","10073":"lowIncomeA","10074":"lowIncomeB","10075":"lowIncomeB","10076":"lowIncomeA","10077":"midIncome","10078":"lowIncomeA","10079":"lowIncomeA","10080":"lowIncomeB","10081":"lowIncomeB","10082":"lowIncomeB","10083":"lowIncomeB","10084":"lowIncomeA","10085":"lowIncomeA","10086":"lowIncomeA","10087":"lowIncomeB","10088":"lowIncomeA","10089":"lowIncomeB","10090":"lowIncomeB","10091":"lowIncomeA","10092":"lowIncomeB","10093":"lowIncomeA","10094":"lowIncomeA","10095":"lowIncomeA","10096":"lowIncomeA","10097":"lowIncomeB","10098":"lowIncomeB","10099":"lowIncomeA","10100":"lowIncomeA","10101":"lowIncomeB","10102":"lowIncomeA","10103":"lowIncomeB","10104":"lowIncomeB","10105":"lowIncomeA","10106":"lowIncomeA","10107":"lowIncomeB","10108":"lowIncomeA","10109":"lowIncomeA","10110":"lowIncomeB","10111":"lowIncomeA","10112":"lowIncomeA","10113":"lowIncomeB","10114":"midIncome","10115":"lowIncomeA","10116":"midIncome","10117":"lowIncomeB","10118":"lowIncomeB","10119":"lowIncomeB","10120":"midIncome","10121":"lowIncomeA","10122":"lowIncomeA","10123":"midIncome","10124":"lowIncomeA","10125":"lowIncomeA","10126":"midIncome","10127":"lowIncomeA","10128":"midIncome","10129":"lowIncomeA","10130":"lowIncomeB","10131":"lowIncomeA","10132":"lowIncomeA","10133":"lowIncomeB","10134":"lowIncomeB","10135":"lowIncomeB","10136":"lowIncomeA","10137":"lowIncomeB","10138":"lowIncomeB","10139":"lowIncomeA","10140":"lowIncomeB","10141":"lowIncomeA","10142":"lowIncomeA","10143":"lowIncomeA","10144":"lowIncomeA","10145":"lowIncomeB","10146":"lowIncomeA","10147":"lowIncomeB","10148":"lowIncomeB","10149":"lowIncomeA","10150":"lowIncomeA","10151":"lowIncomeA","10152":"lowIncomeB","10153":"lowIncomeA","10154":"lowIncomeA","10155":"lowIncomeA","10156":"lowIncomeA","10157":"midIncome","10158":"lowIncomeA","10159":"lowIncomeA","10160":"lowIncomeB","10161":"lowIncomeA","10162":"lowIncomeB","10163":"lowIncomeA","10164":"lowIncomeB","10165":"lowIncomeA","10166":"lowIncomeA","10167":"lowIncomeB","10168":"lowIncomeA","10169":"lowIncomeA","10170":"lowIncomeB","10171":"lowIncomeA","10172":"lowIncomeA","10173":"lowIncomeA","10174":"lowIncomeB","10175":"lowIncomeA","10176":"lowIncomeA","10177":"lowIncomeA","10178":"midIncome","10179":"lowIncomeA","10180":"lowIncomeA","10181":"lowIncomeA","10182":"lowIncomeA","10183":"lowIncomeA","10184":"lowIncomeA","10185":"lowIncomeB","10186":"lowIncomeA","10187":"lowIncomeB","10188":"lowIncomeA","10189":"lowIncomeB","10190":"lowIncomeB","10191":"lowIncomeA","10192":"lowIncomeA","10193":"lowIncomeA","10194":"lowIncomeB","10195":"lowIncomeB","10196":"lowIncomeB","10197":"lowIncomeB","10198":"lowIncomeA","10199":"lowIncomeA","10200":"lowIncomeB","10201":"lowIncomeB","10202":"lowIncomeA","10203":"lowIncomeB","10204":"lowIncomeB","10205":"lowIncomeA","10206":"lowIncomeB","10207":"lowIncomeA","10208":"lowIncomeA","10209":"lowIncomeB","10210":"lowIncomeB","10211":"lowIncomeB","10212":"lowIncomeA","10213":"lowIncomeB","10214":"lowIncomeB","10215":"lowIncomeB","10216":"midIncome","10217":"lowIncomeA","10218":"lowIncomeA","10219":"midIncome","10220":"lowIncomeA","10221":"lowIncomeB","10222":"lowIncomeB","10223":"lowIncomeA","10224":"lowIncomeB","10225":"lowIncomeA","10226":"lowIncomeB","10227":"midIncome","10228":"lowIncomeB","10229":"lowIncomeA","10230":"lowIncomeB","10231":"lowIncomeA","10232":"lowIncomeA","10233":"lowIncomeA","10234":"lowIncomeB","10235":"lowIncomeB","10236":"lowIncomeA","10237":"lowIncomeB","10238":"lowIncomeB","10239":"lowIncomeA","10240":"lowIncomeB","10241":"lowIncomeA","10242":"lowIncomeA","10243":"lowIncomeB","10244":"midIncome","10245":"lowIncomeB","10246":"lowIncomeA","10247":"lowIncomeB","10248":"lowIncomeA","10249":"lowIncomeA","10250":"midIncome","10251":"lowIncomeA","10252":"lowIncomeB","10253":"lowIncomeA","10254":"lowIncomeA","10255":"lowIncomeA","10256":"lowIncomeA","10257":"lowIncomeB","10258":"lowIncomeB","10259":"midIncome","10260":"lowIncomeA","10261":"lowIncomeB","10262":"lowIncomeA","10263":"lowIncomeB","10264":"lowIncomeB","10265":"lowIncomeB","10266":"lowIncomeA","10267":"lowIncomeB","10268":"lowIncomeA","10269":"midIncome","10270":"lowIncomeA","10271":"lowIncomeA","10272":"midIncome","10273":"lowIncomeB","10274":"lowIncomeA","10275":"midIncome","10276":"lowIncomeA","10277":"lowIncomeB","10278":"lowIncomeB","10279":"lowIncomeA","10280":"lowIncomeB","10281":"lowIncomeA","10282":"lowIncomeB","10283":"lowIncomeB","10284":"lowIncomeB","10285":"lowIncomeB","10286":"lowIncomeA","10287":"lowIncomeA","10288":"lowIncomeB","10289":"lowIncomeA","10290":"lowIncomeA","10291":"lowIncomeB","10292":"lowIncomeA","10293":"lowIncomeB","10294":"lowIncomeA","10295":"lowIncomeB","10296":"lowIncomeA","10297":"lowIncomeA","10298":"lowIncomeA","10299":"lowIncomeA","10300":"lowIncomeB","10301":"lowIncomeB","10302":"lowIncomeA","10303":"lowIncomeA","10304":"lowIncomeB","10305":"lowIncomeB","10306":"lowIncomeB","10307":"midIncome","10308":"lowIncomeA","10309":"lowIncomeA","10310":"lowIncomeA","10311":"lowIncomeB","10312":"lowIncomeA","10313":"lowIncomeA","10314":"lowIncomeB","10315":"lowIncomeB","10316":"lowIncomeA","10317":"lowIncomeB","10318":"lowIncomeA","10319":"lowIncomeA","10320":"lowIncomeA","10321":"lowIncomeB","10322":"lowIncomeA","10323":"lowIncomeB","10324":"lowIncomeA","10325":"lowIncomeB","10326":"lowIncomeA","10327":"lowIncomeA","10328":"lowIncomeB","10329":"lowIncomeA","10330":"lowIncomeB","10331":"lowIncomeA","10332":"lowIncomeA","10333":"lowIncomeA","10334":"lowIncomeB","10335":"lowIncomeB","10336":"lowIncomeA","10337":"lowIncomeA","10338":"midIncome","10339":"lowIncomeA","10340":"lowIncomeA","10341":"lowIncomeB","10342":"lowIncomeA","10343":"lowIncomeA","10344":"lowIncomeA","10345":"midIncome","10346":"lowIncomeA","10347":"lowIncomeA","10348":"lowIncomeA","10349":"lowIncomeA","10350":"lowIncomeA","10351":"lowIncomeA","10352":"midIncome","10353":"midIncome","10354":"midIncome","10355":"lowIncomeA","10356":"lowIncomeB","10357":"lowIncomeA","10358":"lowIncomeA","10359":"lowIncomeA","10360":"lowIncomeA","10361":"lowIncomeB","10362":"lowIncomeA","10363":"lowIncomeA","10364":"lowIncomeA","10365":"lowIncomeA","10366":"lowIncomeA","10367":"lowIncomeA","10368":"midIncome","10369":"lowIncomeA","10370":"lowIncomeB","10371":"lowIncomeB","10372":"lowIncomeA","10373":"lowIncomeB","10374":"lowIncomeA","10375":"lowIncomeB","10376":"lowIncomeB","10377":"lowIncomeA","10378":"lowIncomeA","10379":"lowIncomeA","10380":"lowIncomeA","10381":"lowIncomeB","10382":"midIncome","10383":"lowIncomeA","10384":"midIncome","10385":"lowIncomeA","10386":"midIncome","10387":"lowIncomeA","10388":"lowIncomeA","10389":"lowIncomeA","10390":"lowIncomeA","10391":"lowIncomeA","10392":"lowIncomeA","10393":"lowIncomeA","10394":"lowIncomeB","10395":"lowIncomeB","10396":"lowIncomeB","10397":"lowIncomeA","10398":"midIncome","10399":"lowIncomeA","10400":"lowIncomeB","10401":"lowIncomeB","10402":"lowIncomeB","10403":"lowIncomeB","10404":"lowIncomeA","10405":"lowIncomeA","10406":"lowIncomeA","10407":"lowIncomeB","10408":"lowIncomeB","10409":"lowIncomeB","10410":"lowIncomeA","10411":"lowIncomeB","10412":"lowIncomeA","10413":"lowIncomeA","10414":"lowIncomeB","10415":"lowIncomeB","10416":"lowIncomeB","10417":"lowIncomeA","10418":"lowIncomeB","10419":"lowIncomeB","10420":"lowIncomeA","10421":"lowIncomeA","10422":"midIncome","10423":"lowIncomeB","10424":"lowIncomeA","10425":"midIncome","10426":"lowIncomeA","10427":"lowIncomeB","10428":"lowIncomeA","10429":"lowIncomeA","10430":"lowIncomeB","10431":"lowIncomeB","10432":"lowIncomeA","10433":"lowIncomeB","10434":"lowIncomeA","10435":"lowIncomeB","10436":"lowIncomeB","10437":"lowIncomeA","10438":"lowIncomeB","10439":"lowIncomeB","10440":"lowIncomeA","10441":"lowIncomeB","10442":"lowIncomeA","10443":"lowIncomeA","10444":"lowIncomeB","10445":"lowIncomeB","10446":"lowIncomeA","10447":"lowIncomeA","10448":"lowIncomeA","10449":"midIncome","10450":"lowIncomeA","10451":"lowIncomeB","10452":"lowIncomeA","10453":"lowIncomeB","10454":"midIncome","10455":"lowIncomeA","10456":"lowIncomeB","10457":"lowIncomeB","10458":"lowIncomeB","10459":"lowIncomeA","10460":"lowIncomeB","10461":"lowIncomeB","10462":"lowIncomeA","10463":"lowIncomeA","10464":"lowIncomeB","10465":"lowIncomeB","10466":"lowIncomeA","10467":"lowIncomeA","10468":"lowIncomeA","10469":"lowIncomeB","10470":"lowIncomeA","10471":"lowIncomeA","10472":"lowIncomeA","10473":"lowIncomeB","10474":"lowIncomeA","10475":"lowIncomeB","10476":"lowIncomeB","10477":"midIncome","10478":"lowIncomeB","10479":"lowIncomeB","10480":"lowIncomeA","10481":"lowIncomeA","10482":"lowIncomeA","10483":"lowIncomeA","10484":"lowIncomeB","10485":"lowIncomeB","10486":"lowIncomeB","10487":"lowIncomeA","10488":"lowIncomeB","10489":"lowIncomeA","10490":"lowIncomeB","10491":"lowIncomeA","10492":"lowIncomeA","10493":"lowIncomeA","10494":"lowIncomeA","10495":"lowIncomeB","10496":"lowIncomeA","10497":"lowIncomeA","10498":"lowIncomeB","10499":"lowIncomeA","10500":"lowIncomeB","10501":"lowIncomeA","10502":"lowIncomeA","10503":"lowIncomeA","10504":"midIncome","10505":"midIncome","10506":"lowIncomeB","10507":"lowIncomeA","10508":"lowIncomeA","10509":"lowIncomeA","10510":"midIncome","10511":"lowIncomeA","10512":"lowIncomeB","10513":"midIncome","10514":"lowIncomeA","10515":"lowIncomeA","10516":"lowIncomeA","10517":"lowIncomeB","10518":"lowIncomeA","10519":"lowIncomeB","10520":"lowIncomeB","10521":"lowIncomeA","10522":"lowIncomeA","10523":"lowIncomeB","10524":"midIncome","10525":"lowIncomeA","10526":"lowIncomeB","10527":"lowIncomeB","10528":"lowIncomeA","10529":"lowIncomeB","10530":"lowIncomeA","10531":"midIncome","10532":"lowIncomeB","10533":"lowIncomeB","10534":"lowIncomeB","10535":"lowIncomeA","10536":"lowIncomeA","10537":"lowIncomeB","10538":"lowIncomeA","10539":"lowIncomeA","10540":"lowIncomeB","10541":"lowIncomeB","10542":"lowIncomeA","10543":"lowIncomeA","10544":"lowIncomeB","10545":"lowIncomeA","10546":"lowIncomeB","10547":"lowIncomeA","10548":"lowIncomeA","10549":"lowIncomeB","10550":"lowIncomeA","10551":"lowIncomeB","10552":"midIncome","10553":"lowIncomeA","10554":"lowIncomeB","10555":"lowIncomeA","10556":"lowIncomeA","10557":"lowIncomeB","10558":"lowIncomeA","10559":"lowIncomeA","10560":"lowIncomeB","10561":"lowIncomeA","10562":"lowIncomeA","10563":"lowIncomeB","10564":"lowIncomeB","10565":"lowIncomeA","10566":"lowIncomeA","10567":"lowIncomeA","10568":"lowIncomeA","10569":"lowIncomeB","10570":"lowIncomeA","10571":"lowIncomeA","10572":"lowIncomeB","10573":"lowIncomeA","10574":"lowIncomeB","10575":"lowIncomeB","10576":"lowIncomeA","10577":"lowIncomeB","10578":"lowIncomeB","10579":"midIncome","10580":"lowIncomeB","10581":"lowIncomeA","10582":"lowIncomeB","10583":"lowIncomeA","10584":"lowIncomeB","10585":"lowIncomeB","10586":"lowIncomeB","10587":"lowIncomeA","10588":"lowIncomeA","10589":"lowIncomeA","10590":"lowIncomeA","10591":"lowIncomeA","10592":"lowIncomeA","10593":"lowIncomeB","10594":"lowIncomeB","10595":"lowIncomeA","10596":"lowIncomeA","10597":"lowIncomeB","10598":"lowIncomeB","10599":"lowIncomeA","10600":"lowIncomeA","10601":"lowIncomeA","10602":"lowIncomeA","10603":"lowIncomeB","10604":"lowIncomeB","10605":"lowIncomeB","10606":"lowIncomeA","10607":"lowIncomeA","10608":"lowIncomeA","10609":"lowIncomeA","10610":"lowIncomeA","10611":"lowIncomeA","10612":"lowIncomeA","10613":"lowIncomeB","10614":"lowIncomeA","10615":"lowIncomeB","10616":"lowIncomeB","10617":"lowIncomeA","10618":"lowIncomeA","10619":"lowIncomeA","10620":"lowIncomeA","10621":"lowIncomeA","10622":"lowIncomeA","10623":"lowIncomeB","10624":"lowIncomeA","10625":"lowIncomeA","10626":"lowIncomeA","10627":"lowIncomeA","10628":"lowIncomeA","10629":"lowIncomeA","10630":"midIncome","10631":"lowIncomeA","10632":"lowIncomeA","10633":"lowIncomeB","10634":"lowIncomeA","10635":"lowIncomeB","10636":"lowIncomeB","10637":"lowIncomeA","10638":"lowIncomeB","10639":"lowIncomeA","10640":"lowIncomeA","10641":"midIncome","10642":"lowIncomeA","10643":"lowIncomeA","10644":"lowIncomeB","10645":"lowIncomeA","10646":"midIncome","10647":"lowIncomeA","10648":"lowIncomeA","10649":"lowIncomeB","10650":"lowIncomeB","10651":"lowIncomeA","10652":"lowIncomeA","10653":"lowIncomeB","10654":"lowIncomeA","10655":"lowIncomeA","10656":"lowIncomeB","10657":"lowIncomeA","10658":"midIncome","10659":"lowIncomeA","10660":"lowIncomeA","10661":"lowIncomeA","10662":"lowIncomeA","10663":"lowIncomeA","10664":"lowIncomeA","10665":"midIncome","10666":"lowIncomeB","10667":"lowIncomeA","10668":"midIncome","10669":"lowIncomeB","10670":"lowIncomeB","10671":"midIncome","10672":"lowIncomeB","10673":"lowIncomeB","10674":"lowIncomeA","10675":"lowIncomeB","10676":"lowIncomeA","10677":"lowIncomeB","10678":"lowIncomeA","10679":"lowIncomeA","10680":"lowIncomeA","10681":"lowIncomeB","10682":"lowIncomeB","10683":"lowIncomeA","10684":"lowIncomeB","10685":"lowIncomeA","10686":"lowIncomeB","10687":"lowIncomeA","10688":"lowIncomeA","10689":"lowIncomeB","10690":"midIncome","10691":"lowIncomeA","10692":"lowIncomeB","10693":"lowIncomeA","10694":"lowIncomeA","10695":"lowIncomeB","10696":"lowIncomeB","10697":"lowIncomeB","10698":"lowIncomeA","10699":"lowIncomeA","10700":"lowIncomeA","10701":"lowIncomeA","10702":"lowIncomeA","10703":"lowIncomeA","10704":"lowIncomeB","10705":"lowIncomeB","10706":"lowIncomeA","10707":"midIncome","10708":"lowIncomeB","10709":"lowIncomeB","10710":"lowIncomeA","10711":"lowIncomeA","10712":"lowIncomeB","10713":"lowIncomeA","10714":"lowIncomeB","10715":"lowIncomeA","10716":"lowIncomeB","10717":"lowIncomeA","10718":"midIncome","10719":"lowIncomeA","10720":"lowIncomeB","10721":"lowIncomeB","10722":"lowIncomeA","10723":"lowIncomeA","10724":"lowIncomeA","10725":"lowIncomeA","10726":"lowIncomeA","10727":"lowIncomeB","10728":"lowIncomeB","10729":"lowIncomeA","10730":"lowIncomeB","10731":"lowIncomeA","10732":"lowIncomeA","10733":"lowIncomeB","10734":"lowIncomeA","10735":"lowIncomeB","10736":"lowIncomeA","10737":"lowIncomeB","10738":"lowIncomeA","10739":"lowIncomeA","10740":"midIncome","10741":"lowIncomeB","10742":"lowIncomeA","10743":"lowIncomeA","10744":"midIncome","10745":"lowIncomeA","10746":"lowIncomeB","10747":"lowIncomeB","10748":"lowIncomeA","10749":"lowIncomeA","10750":"lowIncomeA","10751":"lowIncomeB","10752":"lowIncomeB","10753":"lowIncomeA","10754":"lowIncomeB","10755":"lowIncomeA","10756":"lowIncomeB","10757":"midIncome","10758":"lowIncomeA","10759":"lowIncomeB","10760":"lowIncomeA","10761":"midIncome","10762":"lowIncomeB","10763":"lowIncomeA","10764":"lowIncomeB","10765":"lowIncomeA","10766":"lowIncomeA","10767":"lowIncomeB","10768":"lowIncomeA","10769":"lowIncomeB","10770":"lowIncomeB","10771":"lowIncomeA","10772":"lowIncomeA","10773":"midIncome","10774":"lowIncomeA","10775":"lowIncomeA","10776":"lowIncomeA","10777":"lowIncomeA","10778":"lowIncomeA","10779":"lowIncomeA","10780":"lowIncomeB","10781":"lowIncomeB","10782":"lowIncomeA","10783":"lowIncomeB","10784":"lowIncomeA","10785":"lowIncomeB","10786":"lowIncomeA","10787":"lowIncomeA","10788":"lowIncomeB","10789":"lowIncomeA","10790":"lowIncomeA","10791":"midIncome","10792":"midIncome","10793":"lowIncomeA","10794":"lowIncomeB","10795":"lowIncomeB","10796":"lowIncomeB","10797":"lowIncomeB","10798":"lowIncomeA","10799":"midIncome","10800":"lowIncomeB","10801":"lowIncomeA","10802":"lowIncomeA","10803":"lowIncomeA","10804":"lowIncomeA","10805":"lowIncomeA","10806":"lowIncomeB","10807":"midIncome","10808":"lowIncomeA","10809":"lowIncomeA","10810":"lowIncomeA","10811":"lowIncomeB","10812":"lowIncomeA","10813":"midIncome","10814":"lowIncomeB","10815":"midIncome","10816":"lowIncomeB","10817":"lowIncomeA","10818":"lowIncomeB","10819":"lowIncomeB","10820":"lowIncomeA","10821":"lowIncomeA","10822":"lowIncomeB","10823":"lowIncomeB","10824":"lowIncomeA","10825":"lowIncomeA","10826":"lowIncomeB","10827":"lowIncomeA","10828":"lowIncomeA","10829":"lowIncomeB","10830":"lowIncomeB","10831":"lowIncomeB","10832":"lowIncomeB","10833":"lowIncomeA","10834":"lowIncomeB","10835":"lowIncomeB","10836":"lowIncomeA","10837":"lowIncomeB","10838":"lowIncomeA","10839":"lowIncomeB","10840":"lowIncomeB","10841":"lowIncomeB","10842":"lowIncomeB","10843":"lowIncomeA","10844":"midIncome","10845":"midIncome","10846":"lowIncomeB","10847":"lowIncomeA","10848":"lowIncomeA","10849":"lowIncomeA","10850":"lowIncomeB","10851":"lowIncomeA","10852":"lowIncomeA","10853":"lowIncomeB","10854":"lowIncomeB","10855":"lowIncomeB","10856":"lowIncomeA","10857":"lowIncomeA","10858":"lowIncomeA","10859":"lowIncomeA","10860":"lowIncomeA","10861":"lowIncomeA","10862":"lowIncomeB","10863":"midIncome","10864":"midIncome","10865":"lowIncomeB","10866":"lowIncomeB","10867":"lowIncomeA","10868":"lowIncomeB","10869":"lowIncomeA","10870":"lowIncomeB","10871":"lowIncomeB","10872":"lowIncomeB","10873":"midIncome","10874":"lowIncomeA","10875":"lowIncomeB","10876":"midIncome","10877":"lowIncomeA","10878":"lowIncomeB","10879":"lowIncomeA","10880":"lowIncomeA","10881":"midIncome","10882":"lowIncomeA","10883":"lowIncomeB","10884":"lowIncomeB","10885":"lowIncomeA","10886":"lowIncomeA","10887":"lowIncomeB","10888":"lowIncomeA","10889":"lowIncomeB","10890":"lowIncomeB","10891":"lowIncomeA","10892":"midIncome","10893":"lowIncomeB","10894":"lowIncomeA","10895":"lowIncomeB","10896":"lowIncomeB","10897":"lowIncomeB","10898":"lowIncomeB","10899":"lowIncomeA","10900":"lowIncomeA","10901":"midIncome","10902":"midIncome","10903":"lowIncomeB","10904":"lowIncomeB","10905":"lowIncomeB","10906":"lowIncomeA","10907":"lowIncomeB","10908":"midIncome","10909":"lowIncomeB","10910":"midIncome","10911":"lowIncomeA","10912":"lowIncomeA","10913":"midIncome","10914":"lowIncomeA","10915":"lowIncomeA","10916":"lowIncomeA","10917":"lowIncomeA","10918":"lowIncomeA","10919":"lowIncomeA","10920":"lowIncomeA","10921":"midIncome","10922":"lowIncomeA","10923":"lowIncomeA","10924":"lowIncomeB","10925":"lowIncomeB","10926":"lowIncomeA","10927":"lowIncomeB","10928":"lowIncomeB","10929":"lowIncomeB","10930":"lowIncomeA","10931":"midIncome","10932":"midIncome","10933":"lowIncomeB","10934":"lowIncomeB","10935":"lowIncomeA","10936":"lowIncomeA","10937":"lowIncomeB","10938":"lowIncomeB","10939":"lowIncomeB","10940":"lowIncomeB","10941":"midIncome","10942":"lowIncomeB","10943":"lowIncomeA","10944":"lowIncomeB","10945":"midIncome","10946":"lowIncomeA","10947":"lowIncomeB","10948":"lowIncomeB","10949":"midIncome","10950":"lowIncomeB","10951":"lowIncomeB","10952":"lowIncomeB","10953":"lowIncomeB","10954":"lowIncomeA","10955":"lowIncomeB","10956":"lowIncomeA","10957":"lowIncomeA","10958":"lowIncomeA","10959":"lowIncomeB","10960":"midIncome","10961":"lowIncomeB","10962":"lowIncomeB","10963":"lowIncomeB","10964":"lowIncomeB","10965":"lowIncomeA","10966":"lowIncomeB","10967":"lowIncomeA","10968":"lowIncomeB","10969":"midIncome","10970":"lowIncomeB","10971":"lowIncomeB","10972":"lowIncomeB","10973":"lowIncomeB","10974":"lowIncomeA","10975":"lowIncomeA","10976":"lowIncomeB","10977":"lowIncomeB","10978":"midIncome","10979":"midIncome","10980":"lowIncomeB","10981":"lowIncomeA","10982":"midIncome","10983":"lowIncomeA","10984":"lowIncomeA","10985":"lowIncomeB","10986":"lowIncomeA","10987":"lowIncomeB","10988":"lowIncomeB","10989":"lowIncomeB","10990":"midIncome","10991":"lowIncomeB","10992":"lowIncomeB","10993":"lowIncomeB","10994":"lowIncomeA","10995":"lowIncomeB","10996":"lowIncomeA","10997":"lowIncomeA","10998":"lowIncomeA","10999":"lowIncomeA","11000":"lowIncomeB","11001":"lowIncomeA","11002":"midIncome","11003":"lowIncomeB","11004":"lowIncomeA","11005":"lowIncomeA","11006":"lowIncomeA","11007":"lowIncomeA","11008":"midIncome","11009":"lowIncomeB","11010":"lowIncomeA","11011":"lowIncomeB","11012":"lowIncomeB","11013":"lowIncomeB","11014":"lowIncomeB","11015":"lowIncomeA","11016":"lowIncomeB","11017":"lowIncomeB","11018":"lowIncomeB","11019":"lowIncomeA","11020":"lowIncomeB","11021":"lowIncomeA","11022":"lowIncomeA","11023":"lowIncomeA","11024":"lowIncomeA","11025":"lowIncomeB","11026":"lowIncomeA","11027":"lowIncomeB","11028":"lowIncomeA","11029":"lowIncomeB","11030":"lowIncomeA","11031":"lowIncomeB","11032":"lowIncomeA","11033":"lowIncomeB","11034":"midIncome","11035":"lowIncomeB","11036":"lowIncomeB","11037":"lowIncomeA","11038":"midIncome","11039":"lowIncomeB","11040":"lowIncomeB","11041":"lowIncomeA","11042":"lowIncomeA","11043":"lowIncomeA","11044":"lowIncomeB","11045":"lowIncomeA","11046":"lowIncomeA","11047":"midIncome","11048":"lowIncomeA","11049":"lowIncomeA","11050":"midIncome","11051":"lowIncomeB","11052":"lowIncomeB","11053":"lowIncomeA","11054":"midIncome","11055":"lowIncomeB","11056":"midIncome","11057":"lowIncomeA","11058":"lowIncomeB","11059":"lowIncomeB","11060":"lowIncomeA","11061":"midIncome","11062":"lowIncomeA","11063":"lowIncomeB","11064":"lowIncomeA","11065":"lowIncomeB","11066":"lowIncomeB","11067":"lowIncomeA","11068":"lowIncomeB","11069":"lowIncomeA","11070":"lowIncomeB","11071":"midIncome","11072":"lowIncomeA","11073":"midIncome","11074":"lowIncomeB","11075":"lowIncomeB","11076":"lowIncomeB","11077":"midIncome","11078":"lowIncomeA","11079":"lowIncomeA","11080":"lowIncomeA","11081":"lowIncomeB","11082":"lowIncomeB","11083":"lowIncomeB","11084":"midIncome","11085":"lowIncomeB","11086":"lowIncomeB","11087":"lowIncomeB","11088":"lowIncomeA","11089":"lowIncomeA","11090":"lowIncomeA","11091":"lowIncomeA","11092":"lowIncomeA","11093":"lowIncomeA","11094":"lowIncomeB","11095":"lowIncomeB","11096":"lowIncomeA","11097":"lowIncomeA","11098":"midIncome","11099":"lowIncomeB","11100":"lowIncomeB","11101":"lowIncomeB","11102":"lowIncomeB","11103":"lowIncomeA","11104":"lowIncomeA","11105":"lowIncomeB","11106":"lowIncomeB","11107":"lowIncomeA","11108":"lowIncomeA","11109":"lowIncomeB","11110":"lowIncomeB","11111":"lowIncomeA","11112":"lowIncomeB","11113":"lowIncomeB","11114":"lowIncomeA","11115":"lowIncomeA","11116":"lowIncomeB","11117":"lowIncomeB","11118":"lowIncomeB","11119":"lowIncomeB","11120":"lowIncomeB","11121":"lowIncomeB","11122":"lowIncomeB","11123":"lowIncomeB","11124":"lowIncomeA","11125":"lowIncomeB","11126":"lowIncomeA","11127":"lowIncomeA","11128":"lowIncomeA","11129":"lowIncomeB","11130":"lowIncomeA","11131":"lowIncomeA","11132":"lowIncomeA","11133":"lowIncomeA","11134":"lowIncomeB","11135":"lowIncomeA","11136":"lowIncomeA","11137":"lowIncomeB","11138":"lowIncomeA","11139":"lowIncomeB","11140":"lowIncomeA","11141":"lowIncomeB","11142":"lowIncomeA","11143":"lowIncomeB","11144":"lowIncomeA","11145":"lowIncomeA","11146":"lowIncomeB","11147":"lowIncomeB","11148":"lowIncomeB","11149":"lowIncomeB","11150":"midIncome","11151":"lowIncomeA","11152":"midIncome","11153":"lowIncomeA","11154":"lowIncomeB","11155":"midIncome","11156":"lowIncomeB","11157":"midIncome","11158":"lowIncomeB","11159":"lowIncomeB","11160":"lowIncomeA","11161":"lowIncomeB","11162":"lowIncomeB","11163":"lowIncomeA","11164":"lowIncomeB","11165":"lowIncomeA","11166":"lowIncomeA","11167":"lowIncomeA","11168":"lowIncomeA","11169":"lowIncomeA","11170":"lowIncomeB","11171":"lowIncomeB","11172":"lowIncomeA","11173":"lowIncomeB","11174":"lowIncomeB","11175":"lowIncomeA","11176":"lowIncomeA","11177":"midIncome","11178":"lowIncomeA","11179":"lowIncomeA","11180":"lowIncomeB","11181":"lowIncomeB","11182":"lowIncomeB","11183":"lowIncomeA","11184":"highIncome","11185":"midIncome","11186":"highIncome","11187":"highIncome","11188":"highIncome","11189":"midIncome","11190":"highIncome","11191":"highIncome","11192":"highIncome","11193":"highIncome","11194":"midIncome","11195":"highIncome","11196":"highIncome","11197":"highIncome","11198":"highIncome","11199":"highIncome","11200":"highIncome","11201":"highIncome","11202":"highIncome","11203":"highIncome","11204":"midIncome","11205":"highIncome","11206":"highIncome","11207":"highIncome","11208":"highIncome","11209":"midIncome","11210":"highIncome","11211":"midIncome","11212":"midIncome","11213":"highIncome","11214":"midIncome","11215":"highIncome","11216":"highIncome","11217":"highIncome","11218":"highIncome","11219":"highIncome","11220":"highIncome","11221":"highIncome","11222":"midIncome","11223":"highIncome","11224":"highIncome","11225":"midIncome","11226":"highIncome","11227":"highIncome","11228":"midIncome","11229":"highIncome","11230":"highIncome","11231":"highIncome","11232":"highIncome","11233":"highIncome","11234":"midIncome","11235":"midIncome","11236":"highIncome","11237":"highIncome","11238":"highIncome","11239":"highIncome","11240":"highIncome","11241":"highIncome","11242":"midIncome","11243":"highIncome","11244":"midIncome","11245":"highIncome","11246":"highIncome","11247":"highIncome","11248":"highIncome","11249":"highIncome","11250":"highIncome","11251":"midIncome","11252":"highIncome","11253":"midIncome","11254":"midIncome","11255":"highIncome","11256":"midIncome","11257":"midIncome","11258":"highIncome","11259":"highIncome","11260":"highIncome","11261":"highIncome","11262":"midIncome","11263":"highIncome","11264":"highIncome","11265":"highIncome","11266":"midIncome","11267":"midIncome","11268":"highIncome","11269":"midIncome","11270":"highIncome","11271":"highIncome","11272":"highIncome","11273":"midIncome","11274":"highIncome","11275":"highIncome","11276":"midIncome","11277":"midIncome","11278":"highIncome","11279":"highIncome","11280":"highIncome","11281":"midIncome","11282":"highIncome","11283":"highIncome","11284":"midIncome","11285":"highIncome","11286":"highIncome","11287":"highIncome","11288":"highIncome","11289":"highIncome","11290":"highIncome","11291":"highIncome","11292":"midIncome","11293":"highIncome","11294":"highIncome","11295":"highIncome","11296":"highIncome","11297":"highIncome","11298":"highIncome","11299":"highIncome","11300":"midIncome","11301":"highIncome","11302":"highIncome","11303":"highIncome","11304":"highIncome","11305":"highIncome","11306":"midIncome","11307":"highIncome","11308":"midIncome","11309":"midIncome","11310":"highIncome","11311":"highIncome","11312":"highIncome","11313":"highIncome","11314":"highIncome","11315":"midIncome","11316":"midIncome","11317":"midIncome","11318":"highIncome","11319":"highIncome","11320":"highIncome","11321":"highIncome","11322":"highIncome","11323":"midIncome","11324":"highIncome","11325":"highIncome","11326":"highIncome","11327":"highIncome","11328":"highIncome","11329":"highIncome","11330":"highIncome","11331":"highIncome","11332":"highIncome","11333":"highIncome","11334":"highIncome","11335":"highIncome","11336":"highIncome","11337":"highIncome","11338":"highIncome","11339":"highIncome","11340":"highIncome","11341":"highIncome","11342":"midIncome","11343":"highIncome","11344":"highIncome","11345":"highIncome","11346":"highIncome","11347":"highIncome","11348":"highIncome","11349":"highIncome","11350":"highIncome","11351":"highIncome","11352":"highIncome","11353":"highIncome","11354":"highIncome","11355":"midIncome","11356":"highIncome","11357":"highIncome","11358":"highIncome","11359":"highIncome","11360":"highIncome","11361":"highIncome","11362":"midIncome","11363":"highIncome","11364":"highIncome","11365":"midIncome","11366":"highIncome","11367":"highIncome","11368":"midIncome","11369":"highIncome","11370":"highIncome","11371":"midIncome","11372":"highIncome","11373":"highIncome","11374":"highIncome","11375":"highIncome","11376":"highIncome","11377":"highIncome","11378":"highIncome","11379":"highIncome","11380":"highIncome","11381":"midIncome","11382":"highIncome","11383":"midIncome","11384":"highIncome","11385":"highIncome","11386":"highIncome","11387":"highIncome","11388":"highIncome","11389":"highIncome","11390":"highIncome","11391":"highIncome","11392":"highIncome","11393":"highIncome","11394":"highIncome","11395":"highIncome","11396":"highIncome","11397":"highIncome","11398":"highIncome","11399":"highIncome","11400":"highIncome","11401":"highIncome","11402":"highIncome","11403":"highIncome","11404":"highIncome","11405":"highIncome","11406":"highIncome","11407":"highIncome","11408":"highIncome","11409":"midIncome","11410":"highIncome","11411":"midIncome","11412":"highIncome","11413":"midIncome","11414":"highIncome","11415":"highIncome","11416":"highIncome","11417":"midIncome","11418":"highIncome","11419":"highIncome","11420":"highIncome","11421":"midIncome","11422":"midIncome","11423":"highIncome","11424":"midIncome","11425":"highIncome","11426":"midIncome","11427":"highIncome","11428":"highIncome","11429":"midIncome","11430":"highIncome","11431":"midIncome","11432":"highIncome","11433":"highIncome","11434":"midIncome","11435":"highIncome","11436":"highIncome","11437":"midIncome","11438":"highIncome","11439":"midIncome","11440":"highIncome","11441":"midIncome","11442":"highIncome","11443":"highIncome","11444":"highIncome","11445":"highIncome","11446":"highIncome","11447":"highIncome","11448":"highIncome","11449":"highIncome","11450":"midIncome","11451":"highIncome","11452":"highIncome","11453":"highIncome","11454":"highIncome","11455":"highIncome","11456":"highIncome","11457":"highIncome","11458":"highIncome","11459":"highIncome","11460":"highIncome","11461":"highIncome","11462":"highIncome","11463":"highIncome","11464":"highIncome","11465":"highIncome","11466":"midIncome","11467":"highIncome","11468":"highIncome","11469":"highIncome","11470":"midIncome","11471":"highIncome","11472":"highIncome","11473":"highIncome","11474":"highIncome","11475":"midIncome","11476":"midIncome","11477":"highIncome","11478":"midIncome","11479":"highIncome","11480":"midIncome","11481":"midIncome","11482":"highIncome","11483":"highIncome","11484":"highIncome","11485":"highIncome","11486":"highIncome","11487":"highIncome","11488":"highIncome","11489":"highIncome","11490":"midIncome","11491":"highIncome","11492":"highIncome","11493":"midIncome","11494":"highIncome","11495":"highIncome","11496":"highIncome","11497":"highIncome","11498":"midIncome","11499":"highIncome","11500":"highIncome","11501":"midIncome","11502":"highIncome","11503":"highIncome","11504":"highIncome","11505":"highIncome","11506":"highIncome","11507":"highIncome","11508":"highIncome","11509":"highIncome","11510":"highIncome","11511":"highIncome","11512":"highIncome","11513":"highIncome","11514":"highIncome","11515":"midIncome","11516":"midIncome","11517":"highIncome","11518":"highIncome","11519":"highIncome","11520":"highIncome","11521":"highIncome","11522":"midIncome","11523":"highIncome","11524":"highIncome","11525":"highIncome","11526":"midIncome","11527":"highIncome","11528":"midIncome","11529":"highIncome","11530":"highIncome","11531":"highIncome","11532":"highIncome","11533":"midIncome","11534":"highIncome","11535":"highIncome","11536":"highIncome","11537":"midIncome","11538":"highIncome","11539":"highIncome","11540":"midIncome","11541":"highIncome","11542":"highIncome","11543":"highIncome","11544":"midIncome","11545":"highIncome","11546":"highIncome","11547":"highIncome","11548":"highIncome","11549":"highIncome","11550":"midIncome","11551":"midIncome","11552":"highIncome","11553":"highIncome","11554":"highIncome","11555":"midIncome","11556":"highIncome","11557":"highIncome","11558":"highIncome","11559":"highIncome","11560":"highIncome","11561":"highIncome","11562":"midIncome","11563":"highIncome","11564":"highIncome","11565":"highIncome","11566":"highIncome","11567":"highIncome","11568":"midIncome","11569":"midIncome","11570":"highIncome","11571":"highIncome","11572":"highIncome","11573":"highIncome","11574":"highIncome","11575":"highIncome","11576":"highIncome","11577":"highIncome","11578":"highIncome","11579":"highIncome","11580":"highIncome","11581":"highIncome","11582":"midIncome","11583":"highIncome","11584":"highIncome","11585":"highIncome","11586":"highIncome","11587":"midIncome","11588":"highIncome","11589":"highIncome","11590":"highIncome","11591":"highIncome","11592":"midIncome","11593":"highIncome","11594":"highIncome","11595":"highIncome","11596":"highIncome","11597":"highIncome","11598":"highIncome","11599":"midIncome","11600":"midIncome","11601":"highIncome","11602":"highIncome","11603":"highIncome","11604":"highIncome","11605":"midIncome","11606":"highIncome","11607":"midIncome","11608":"highIncome","11609":"highIncome","11610":"highIncome","11611":"highIncome","11612":"highIncome","11613":"highIncome","11614":"highIncome","11615":"highIncome","11616":"highIncome","11617":"highIncome","11618":"midIncome","11619":"highIncome","11620":"highIncome","11621":"highIncome","11622":"midIncome","11623":"midIncome","11624":"highIncome","11625":"highIncome","11626":"highIncome","11627":"highIncome","11628":"midIncome","11629":"highIncome","11630":"highIncome","11631":"highIncome","11632":"midIncome","11633":"highIncome","11634":"highIncome","11635":"midIncome","11636":"highIncome","11637":"highIncome","11638":"highIncome","11639":"highIncome","11640":"highIncome","11641":"highIncome","11642":"highIncome","11643":"highIncome","11644":"highIncome","11645":"highIncome","11646":"highIncome","11647":"highIncome","11648":"highIncome","11649":"highIncome","11650":"highIncome","11651":"highIncome","11652":"highIncome","11653":"highIncome","11654":"highIncome","11655":"highIncome","11656":"highIncome","11657":"midIncome","11658":"highIncome","11659":"highIncome","11660":"highIncome","11661":"highIncome","11662":"highIncome","11663":"highIncome","11664":"highIncome","11665":"midIncome","11666":"highIncome","11667":"highIncome","11668":"midIncome","11669":"highIncome","11670":"highIncome","11671":"highIncome","11672":"midIncome","11673":"highIncome","11674":"highIncome","11675":"highIncome","11676":"highIncome","11677":"highIncome","11678":"highIncome","11679":"midIncome","11680":"highIncome","11681":"highIncome","11682":"highIncome","11683":"highIncome","11684":"highIncome","11685":"highIncome","11686":"highIncome","11687":"highIncome","11688":"highIncome","11689":"midIncome","11690":"highIncome","11691":"highIncome","11692":"lowIncomeB","11693":"midIncome","11694":"lowIncomeA","11695":"midIncome","11696":"midIncome","11697":"lowIncomeA","11698":"midIncome","11699":"midIncome","11700":"highIncome","11701":"midIncome","11702":"midIncome","11703":"midIncome","11704":"midIncome","11705":"midIncome","11706":"midIncome","11707":"midIncome","11708":"midIncome","11709":"lowIncomeA","11710":"midIncome","11711":"midIncome","11712":"midIncome","11713":"midIncome","11714":"highIncome","11715":"midIncome","11716":"midIncome","11717":"highIncome","11718":"midIncome","11719":"midIncome","11720":"midIncome","11721":"midIncome","11722":"midIncome","11723":"midIncome","11724":"lowIncomeA","11725":"midIncome","11726":"midIncome","11727":"midIncome","11728":"highIncome","11729":"midIncome","11730":"lowIncomeA","11731":"midIncome","11732":"midIncome","11733":"midIncome","11734":"midIncome","11735":"midIncome","11736":"highIncome","11737":"midIncome","11738":"midIncome","11739":"midIncome","11740":"highIncome","11741":"midIncome","11742":"midIncome","11743":"midIncome","11744":"midIncome","11745":"lowIncomeB","11746":"midIncome","11747":"midIncome","11748":"lowIncomeA","11749":"midIncome","11750":"midIncome","11751":"midIncome","11752":"midIncome","11753":"midIncome","11754":"highIncome","11755":"lowIncomeA","11756":"lowIncomeB","11757":"midIncome","11758":"lowIncomeB","11759":"midIncome","11760":"highIncome","11761":"lowIncomeB","11762":"lowIncomeB","11763":"midIncome","11764":"midIncome","11765":"midIncome","11766":"midIncome","11767":"lowIncomeB","11768":"midIncome","11769":"lowIncomeB","11770":"highIncome","11771":"midIncome","11772":"lowIncomeA","11773":"midIncome","11774":"highIncome","11775":"highIncome","11776":"midIncome","11777":"lowIncomeB","11778":"lowIncomeA","11779":"midIncome","11780":"lowIncomeA","11781":"midIncome","11782":"midIncome","11783":"lowIncomeA","11784":"midIncome","11785":"highIncome","11786":"midIncome","11787":"midIncome","11788":"lowIncomeA","11789":"midIncome","11790":"midIncome","11791":"highIncome","11792":"lowIncomeB","11793":"midIncome","11794":"midIncome","11795":"midIncome","11796":"midIncome","11797":"midIncome","11798":"midIncome","11799":"midIncome","11800":"midIncome","11801":"lowIncomeA","11802":"midIncome","11803":"lowIncomeA","11804":"midIncome","11805":"midIncome","11806":"midIncome","11807":"midIncome","11808":"midIncome","11809":"midIncome","11810":"midIncome","11811":"midIncome","11812":"midIncome","11813":"lowIncomeB","11814":"midIncome","11815":"lowIncomeA","11816":"midIncome","11817":"midIncome","11818":"midIncome","11819":"midIncome","11820":"lowIncomeB","11821":"midIncome","11822":"lowIncomeA","11823":"midIncome","11824":"highIncome","11825":"highIncome","11826":"lowIncomeA","11827":"lowIncomeA","11828":"midIncome","11829":"midIncome","11830":"midIncome","11831":"midIncome","11832":"midIncome","11833":"midIncome","11834":"lowIncomeA","11835":"highIncome","11836":"midIncome","11837":"midIncome","11838":"lowIncomeA","11839":"highIncome","11840":"midIncome","11841":"lowIncomeB","11842":"midIncome","11843":"midIncome","11844":"midIncome","11845":"highIncome","11846":"midIncome","11847":"midIncome","11848":"midIncome","11849":"midIncome","11850":"midIncome","11851":"highIncome","11852":"midIncome","11853":"highIncome","11854":"midIncome","11855":"midIncome","11856":"midIncome","11857":"midIncome","11858":"midIncome","11859":"midIncome","11860":"midIncome","11861":"midIncome","11862":"midIncome","11863":"lowIncomeB","11864":"highIncome","11865":"midIncome","11866":"midIncome","11867":"midIncome","11868":"midIncome","11869":"midIncome","11870":"midIncome","11871":"highIncome","11872":"midIncome","11873":"lowIncomeB","11874":"midIncome","11875":"midIncome","11876":"lowIncomeA","11877":"midIncome","11878":"lowIncomeB","11879":"midIncome","11880":"midIncome","11881":"midIncome","11882":"lowIncomeB","11883":"midIncome","11884":"highIncome","11885":"midIncome","11886":"highIncome","11887":"midIncome","11888":"lowIncomeB","11889":"lowIncomeB","11890":"midIncome","11891":"midIncome","11892":"midIncome","11893":"midIncome","11894":"midIncome","11895":"midIncome","11896":"midIncome","11897":"midIncome","11898":"midIncome","11899":"lowIncomeB","11900":"midIncome","11901":"midIncome","11902":"midIncome","11903":"midIncome","11904":"midIncome","11905":"lowIncomeB","11906":"midIncome","11907":"lowIncomeA","11908":"highIncome","11909":"midIncome","11910":"midIncome","11911":"highIncome","11912":"midIncome","11913":"midIncome","11914":"midIncome","11915":"highIncome","11916":"midIncome","11917":"midIncome","11918":"midIncome","11919":"highIncome","11920":"midIncome","11921":"highIncome","11922":"midIncome","11923":"lowIncomeA","11924":"midIncome","11925":"highIncome","11926":"highIncome","11927":"midIncome","11928":"midIncome","11929":"midIncome","11930":"lowIncomeA","11931":"midIncome","11932":"midIncome","11933":"midIncome","11934":"midIncome","11935":"lowIncomeB","11936":"midIncome","11937":"midIncome","11938":"lowIncomeA","11939":"midIncome","11940":"lowIncomeA","11941":"midIncome","11942":"highIncome","11943":"lowIncomeB","11944":"midIncome","11945":"midIncome","11946":"midIncome","11947":"midIncome","11948":"midIncome","11949":"midIncome","11950":"midIncome","11951":"lowIncomeB","11952":"midIncome","11953":"midIncome","11954":"lowIncomeA","11955":"midIncome","11956":"midIncome","11957":"midIncome","11958":"highIncome","11959":"midIncome","11960":"lowIncomeA","11961":"midIncome","11962":"midIncome","11963":"midIncome","11964":"midIncome","11965":"highIncome","11966":"midIncome","11967":"lowIncomeA","11968":"highIncome","11969":"midIncome","11970":"midIncome","11971":"midIncome","11972":"lowIncomeA","11973":"highIncome","11974":"lowIncomeB","11975":"midIncome","11976":"midIncome","11977":"midIncome","11978":"lowIncomeB","11979":"midIncome","11980":"lowIncomeB","11981":"midIncome","11982":"midIncome","11983":"midIncome","11984":"midIncome","11985":"highIncome","11986":"highIncome","11987":"midIncome","11988":"midIncome","11989":"midIncome","11990":"midIncome","11991":"midIncome","11992":"midIncome","11993":"midIncome","11994":"midIncome","11995":"highIncome","11996":"midIncome","11997":"midIncome","11998":"midIncome","11999":"midIncome","12000":"midIncome","12001":"midIncome","12002":"midIncome","12003":"midIncome","12004":"lowIncomeA","12005":"midIncome","12006":"midIncome","12007":"midIncome","12008":"midIncome","12009":"midIncome","12010":"lowIncomeB","12011":"midIncome","12012":"midIncome","12013":"midIncome","12014":"midIncome","12015":"lowIncomeB","12016":"midIncome","12017":"midIncome","12018":"lowIncomeA","12019":"midIncome","12020":"midIncome","12021":"lowIncomeB","12022":"midIncome","12023":"lowIncomeA","12024":"midIncome","12025":"lowIncomeB","12026":"midIncome","12027":"midIncome","12028":"midIncome","12029":"highIncome","12030":"midIncome","12031":"highIncome","12032":"midIncome","12033":"midIncome","12034":"lowIncomeA","12035":"midIncome","12036":"midIncome","12037":"midIncome","12038":"lowIncomeA","12039":"highIncome","12040":"lowIncomeA","12041":"midIncome","12042":"lowIncomeA","12043":"midIncome","12044":"lowIncomeB","12045":"midIncome","12046":"midIncome","12047":"midIncome","12048":"midIncome","12049":"midIncome","12050":"lowIncomeB","12051":"highIncome","12052":"lowIncomeB","12053":"highIncome","12054":"lowIncomeB","12055":"lowIncomeA","12056":"midIncome","12057":"midIncome","12058":"midIncome","12059":"midIncome","12060":"midIncome","12061":"midIncome","12062":"lowIncomeB","12063":"highIncome","12064":"lowIncomeB","12065":"midIncome","12066":"midIncome","12067":"midIncome","12068":"highIncome","12069":"midIncome","12070":"midIncome","12071":"midIncome","12072":"lowIncomeB","12073":"midIncome","12074":"lowIncomeA","12075":"midIncome","12076":"midIncome","12077":"midIncome","12078":"midIncome","12079":"lowIncomeB","12080":"midIncome","12081":"midIncome","12082":"midIncome","12083":"midIncome","12084":"midIncome","12085":"lowIncomeA","12086":"midIncome","12087":"midIncome","12088":"midIncome","12089":"lowIncomeA","12090":"midIncome","12091":"midIncome","12092":"midIncome","12093":"lowIncomeB","12094":"midIncome","12095":"lowIncomeA","12096":"lowIncomeA","12097":"lowIncomeA","12098":"lowIncomeA","12099":"lowIncomeB","12100":"lowIncomeA","12101":"lowIncomeA","12102":"midIncome","12103":"lowIncomeA","12104":"lowIncomeA","12105":"lowIncomeA","12106":"lowIncomeA","12107":"lowIncomeA","12108":"lowIncomeA","12109":"lowIncomeA","12110":"lowIncomeA","12111":"lowIncomeA","12112":"midIncome","12113":"lowIncomeB","12114":"lowIncomeA","12115":"lowIncomeB","12116":"lowIncomeA","12117":"lowIncomeB","12118":"lowIncomeA","12119":"lowIncomeA","12120":"lowIncomeA","12121":"midIncome","12122":"lowIncomeA","12123":"lowIncomeA","12124":"lowIncomeB","12125":"lowIncomeB","12126":"midIncome","12127":"lowIncomeB","12128":"midIncome","12129":"lowIncomeA","12130":"lowIncomeB","12131":"lowIncomeA","12132":"midIncome","12133":"lowIncomeA","12134":"lowIncomeA","12135":"lowIncomeA","12136":"midIncome","12137":"lowIncomeB","12138":"lowIncomeA","12139":"lowIncomeA","12140":"midIncome","12141":"lowIncomeA","12142":"midIncome","12143":"lowIncomeA","12144":"lowIncomeB","12145":"lowIncomeB","12146":"lowIncomeA","12147":"lowIncomeB","12148":"lowIncomeA","12149":"midIncome","12150":"midIncome","12151":"lowIncomeB","12152":"lowIncomeB","12153":"lowIncomeB","12154":"lowIncomeA","12155":"lowIncomeB","12156":"lowIncomeB","12157":"lowIncomeA","12158":"lowIncomeA","12159":"lowIncomeB","12160":"lowIncomeA","12161":"lowIncomeA","12162":"lowIncomeA","12163":"lowIncomeA","12164":"lowIncomeB","12165":"lowIncomeA","12166":"lowIncomeB","12167":"lowIncomeA","12168":"midIncome","12169":"lowIncomeA","12170":"lowIncomeB","12171":"lowIncomeB","12172":"lowIncomeA","12173":"lowIncomeA","12174":"lowIncomeA","12175":"midIncome","12176":"lowIncomeA","12177":"lowIncomeA","12178":"lowIncomeA","12179":"lowIncomeA","12180":"lowIncomeA","12181":"lowIncomeB","12182":"lowIncomeA","12183":"lowIncomeA","12184":"lowIncomeA","12185":"lowIncomeA","12186":"midIncome","12187":"lowIncomeA","12188":"lowIncomeA","12189":"lowIncomeA","12190":"lowIncomeA","12191":"lowIncomeA","12192":"lowIncomeA","12193":"lowIncomeB","12194":"lowIncomeA","12195":"lowIncomeA","12196":"lowIncomeA","12197":"lowIncomeA","12198":"lowIncomeB","12199":"lowIncomeA","12200":"lowIncomeB","12201":"lowIncomeA","12202":"lowIncomeA","12203":"lowIncomeA","12204":"lowIncomeA","12205":"lowIncomeA","12206":"lowIncomeA","12207":"lowIncomeA","12208":"lowIncomeB","12209":"lowIncomeA","12210":"lowIncomeA","12211":"lowIncomeA","12212":"lowIncomeA","12213":"lowIncomeA","12214":"lowIncomeB","12215":"lowIncomeA","12216":"lowIncomeA","12217":"lowIncomeA","12218":"midIncome","12219":"midIncome","12220":"midIncome","12221":"midIncome","12222":"midIncome","12223":"highIncome","12224":"midIncome","12225":"lowIncomeB","12226":"midIncome","12227":"lowIncomeB","12228":"midIncome","12229":"lowIncomeA","12230":"midIncome","12231":"midIncome","12232":"lowIncomeB","12233":"highIncome","12234":"midIncome","12235":"midIncome","12236":"midIncome","12237":"lowIncomeA","12238":"midIncome","12239":"lowIncomeA","12240":"midIncome","12241":"midIncome","12242":"midIncome","12243":"highIncome","12244":"midIncome","12245":"midIncome","12246":"midIncome","12247":"midIncome","12248":"lowIncomeB","12249":"highIncome","12250":"midIncome","12251":"midIncome","12252":"lowIncomeB","12253":"midIncome","12254":"midIncome","12255":"midIncome","12256":"midIncome","12257":"midIncome","12258":"midIncome","12259":"midIncome","12260":"midIncome","12261":"lowIncomeA","12262":"highIncome","12263":"midIncome","12264":"midIncome","12265":"midIncome","12266":"midIncome","12267":"lowIncomeB","12268":"midIncome","12269":"midIncome","12270":"midIncome","12271":"lowIncomeB","12272":"midIncome","12273":"lowIncomeA","12274":"lowIncomeB","12275":"midIncome","12276":"midIncome","12277":"lowIncomeA","12278":"midIncome","12279":"midIncome","12280":"lowIncomeA","12281":"midIncome","12282":"midIncome","12283":"midIncome","12284":"midIncome","12285":"lowIncomeA","12286":"midIncome","12287":"midIncome","12288":"midIncome","12289":"midIncome","12290":"lowIncomeB","12291":"midIncome","12292":"midIncome","12293":"midIncome","12294":"midIncome","12295":"midIncome","12296":"lowIncomeB","12297":"midIncome","12298":"midIncome","12299":"midIncome","12300":"midIncome","12301":"midIncome","12302":"highIncome","12303":"midIncome","12304":"midIncome","12305":"lowIncomeA","12306":"midIncome","12307":"midIncome","12308":"midIncome","12309":"midIncome","12310":"midIncome","12311":"midIncome","12312":"lowIncomeB","12313":"highIncome","12314":"midIncome","12315":"midIncome","12316":"midIncome","12317":"midIncome","12318":"highIncome","12319":"midIncome","12320":"midIncome","12321":"lowIncomeA","12322":"midIncome","12323":"midIncome","12324":"midIncome","12325":"lowIncomeB","12326":"midIncome","12327":"lowIncomeA","12328":"midIncome","12329":"midIncome","12330":"lowIncomeA","12331":"midIncome","12332":"midIncome","12333":"midIncome","12334":"midIncome","12335":"midIncome","12336":"lowIncomeB","12337":"midIncome","12338":"lowIncomeB","12339":"midIncome","12340":"midIncome","12341":"midIncome","12342":"midIncome","12343":"midIncome","12344":"midIncome","12345":"highIncome","12346":"midIncome","12347":"midIncome","12348":"midIncome","12349":"lowIncomeB","12350":"midIncome","12351":"midIncome","12352":"midIncome","12353":"highIncome","12354":"midIncome","12355":"midIncome","12356":"midIncome","12357":"midIncome","12358":"midIncome","12359":"midIncome","12360":"midIncome","12361":"midIncome","12362":"midIncome","12363":"midIncome","12364":"lowIncomeA","12365":"lowIncomeA","12366":"lowIncomeB","12367":"lowIncomeA","12368":"midIncome","12369":"highIncome","12370":"highIncome","12371":"midIncome","12372":"midIncome","12373":"midIncome","12374":"highIncome","12375":"midIncome","12376":"midIncome","12377":"highIncome","12378":"midIncome","12379":"midIncome","12380":"midIncome","12381":"midIncome","12382":"midIncome","12383":"lowIncomeB","12384":"midIncome","12385":"midIncome","12386":"midIncome","12387":"midIncome","12388":"highIncome","12389":"midIncome","12390":"midIncome","12391":"midIncome","12392":"midIncome","12393":"highIncome","12394":"midIncome","12395":"midIncome","12396":"midIncome","12397":"highIncome","12398":"midIncome","12399":"highIncome","12400":"midIncome","12401":"midIncome","12402":"lowIncomeB","12403":"midIncome","12404":"midIncome","12405":"midIncome","12406":"lowIncomeA","12407":"midIncome","12408":"midIncome","12409":"lowIncomeB","12410":"midIncome","12411":"highIncome","12412":"midIncome","12413":"lowIncomeB","12414":"highIncome","12415":"midIncome","12416":"midIncome","12417":"midIncome","12418":"midIncome","12419":"midIncome","12420":"midIncome","12421":"midIncome","12422":"lowIncomeB","12423":"midIncome","12424":"midIncome","12425":"lowIncomeA","12426":"lowIncomeA","12427":"midIncome","12428":"midIncome","12429":"midIncome","12430":"lowIncomeB","12431":"highIncome","12432":"midIncome","12433":"lowIncomeB","12434":"lowIncomeB","12435":"highIncome","12436":"midIncome","12437":"midIncome","12438":"midIncome","12439":"lowIncomeA","12440":"lowIncomeB","12441":"lowIncomeA","12442":"midIncome","12443":"midIncome","12444":"midIncome","12445":"midIncome","12446":"midIncome","12447":"highIncome","12448":"highIncome","12449":"midIncome","12450":"midIncome","12451":"midIncome","12452":"midIncome","12453":"midIncome","12454":"midIncome","12455":"midIncome","12456":"midIncome","12457":"midIncome","12458":"midIncome","12459":"highIncome","12460":"midIncome","12461":"midIncome","12462":"highIncome","12463":"midIncome","12464":"midIncome","12465":"highIncome","12466":"lowIncomeB","12467":"midIncome","12468":"lowIncomeB","12469":"midIncome","12470":"midIncome","12471":"midIncome","12472":"midIncome","12473":"midIncome","12474":"midIncome","12475":"highIncome","12476":"midIncome","12477":"midIncome","12478":"midIncome","12479":"lowIncomeB","12480":"midIncome","12481":"lowIncomeB","12482":"midIncome","12483":"lowIncomeA","12484":"highIncome","12485":"midIncome","12486":"midIncome","12487":"midIncome","12488":"midIncome","12489":"lowIncomeA","12490":"lowIncomeA","12491":"highIncome","12492":"midIncome","12493":"lowIncomeB","12494":"midIncome","12495":"midIncome","12496":"midIncome","12497":"midIncome","12498":"lowIncomeB","12499":"midIncome","12500":"midIncome","12501":"midIncome","12502":"lowIncomeB","12503":"lowIncomeB","12504":"midIncome","12505":"lowIncomeA","12506":"lowIncomeA","12507":"midIncome","12508":"highIncome","12509":"highIncome","12510":"midIncome","12511":"midIncome","12512":"midIncome","12513":"lowIncomeA","12514":"lowIncomeA","12515":"highIncome","12516":"lowIncomeA","12517":"lowIncomeB","12518":"midIncome","12519":"midIncome","12520":"midIncome","12521":"midIncome","12522":"midIncome","12523":"midIncome","12524":"lowIncomeB","12525":"midIncome","12526":"midIncome","12527":"midIncome","12528":"midIncome","12529":"midIncome","12530":"lowIncomeB","12531":"midIncome","12532":"midIncome","12533":"lowIncomeB","12534":"lowIncomeB","12535":"midIncome","12536":"midIncome","12537":"lowIncomeB","12538":"midIncome","12539":"midIncome","12540":"highIncome","12541":"midIncome","12542":"midIncome","12543":"midIncome","12544":"lowIncomeA","12545":"lowIncomeB","12546":"midIncome","12547":"midIncome","12548":"midIncome","12549":"lowIncomeB","12550":"midIncome","12551":"midIncome","12552":"lowIncomeB","12553":"midIncome","12554":"lowIncomeB","12555":"midIncome","12556":"midIncome","12557":"midIncome","12558":"highIncome","12559":"midIncome","12560":"lowIncomeB","12561":"lowIncomeB","12562":"highIncome","12563":"midIncome","12564":"lowIncomeA","12565":"lowIncomeA","12566":"lowIncomeA","12567":"lowIncomeB","12568":"lowIncomeB","12569":"lowIncomeB","12570":"lowIncomeA","12571":"lowIncomeB","12572":"lowIncomeB","12573":"lowIncomeA","12574":"lowIncomeB","12575":"lowIncomeA","12576":"lowIncomeB","12577":"lowIncomeB","12578":"midIncome","12579":"lowIncomeB","12580":"midIncome","12581":"lowIncomeA","12582":"midIncome","12583":"lowIncomeA","12584":"lowIncomeA","12585":"lowIncomeB","12586":"lowIncomeB","12587":"midIncome","12588":"lowIncomeA","12589":"midIncome","12590":"lowIncomeB","12591":"lowIncomeB","12592":"midIncome","12593":"lowIncomeA","12594":"lowIncomeB","12595":"midIncome","12596":"midIncome","12597":"lowIncomeA","12598":"lowIncomeA","12599":"lowIncomeB","12600":"lowIncomeB","12601":"lowIncomeB","12602":"lowIncomeB","12603":"midIncome","12604":"lowIncomeA","12605":"midIncome","12606":"lowIncomeA","12607":"lowIncomeB","12608":"lowIncomeB","12609":"lowIncomeB","12610":"lowIncomeA","12611":"lowIncomeB","12612":"lowIncomeB","12613":"lowIncomeA","12614":"lowIncomeA","12615":"lowIncomeA","12616":"lowIncomeA","12617":"lowIncomeB","12618":"lowIncomeB","12619":"lowIncomeA","12620":"lowIncomeA","12621":"lowIncomeA","12622":"lowIncomeB","12623":"lowIncomeB","12624":"midIncome","12625":"lowIncomeB","12626":"lowIncomeA","12627":"lowIncomeA","12628":"lowIncomeA","12629":"lowIncomeA","12630":"midIncome","12631":"lowIncomeA","12632":"lowIncomeB","12633":"lowIncomeB","12634":"lowIncomeA","12635":"lowIncomeA","12636":"midIncome","12637":"lowIncomeA","12638":"lowIncomeA","12639":"lowIncomeA","12640":"lowIncomeA","12641":"lowIncomeB","12642":"lowIncomeB","12643":"lowIncomeA","12644":"lowIncomeB","12645":"lowIncomeA","12646":"lowIncomeA","12647":"lowIncomeB","12648":"lowIncomeB","12649":"lowIncomeA","12650":"midIncome","12651":"lowIncomeA","12652":"lowIncomeB","12653":"lowIncomeA","12654":"lowIncomeB","12655":"lowIncomeB","12656":"lowIncomeA","12657":"lowIncomeB","12658":"lowIncomeA","12659":"lowIncomeB","12660":"lowIncomeB","12661":"lowIncomeB","12662":"lowIncomeB","12663":"lowIncomeA","12664":"lowIncomeA","12665":"lowIncomeB","12666":"lowIncomeA","12667":"lowIncomeA","12668":"lowIncomeA","12669":"lowIncomeB","12670":"lowIncomeB","12671":"lowIncomeB","12672":"lowIncomeA","12673":"lowIncomeA","12674":"lowIncomeA","12675":"lowIncomeB","12676":"lowIncomeB","12677":"lowIncomeA","12678":"lowIncomeB","12679":"lowIncomeA","12680":"midIncome","12681":"lowIncomeA","12682":"lowIncomeB","12683":"lowIncomeA","12684":"lowIncomeA","12685":"lowIncomeA","12686":"lowIncomeA","12687":"lowIncomeB","12688":"lowIncomeB","12689":"lowIncomeA","12690":"lowIncomeA","12691":"lowIncomeB","12692":"lowIncomeB","12693":"lowIncomeB","12694":"lowIncomeA","12695":"lowIncomeB","12696":"lowIncomeB","12697":"lowIncomeA","12698":"lowIncomeA","12699":"lowIncomeB","12700":"lowIncomeB","12701":"lowIncomeA","12702":"lowIncomeA","12703":"lowIncomeA","12704":"lowIncomeA","12705":"lowIncomeA","12706":"lowIncomeA","12707":"lowIncomeB","12708":"lowIncomeA","12709":"lowIncomeA","12710":"lowIncomeB","12711":"lowIncomeA","12712":"lowIncomeB","12713":"lowIncomeA","12714":"lowIncomeB","12715":"lowIncomeA","12716":"lowIncomeA","12717":"lowIncomeB","12718":"lowIncomeB","12719":"lowIncomeA","12720":"lowIncomeA","12721":"midIncome","12722":"lowIncomeA","12723":"lowIncomeA","12724":"lowIncomeB","12725":"lowIncomeA","12726":"lowIncomeA","12727":"lowIncomeA","12728":"lowIncomeB","12729":"lowIncomeB","12730":"lowIncomeB","12731":"lowIncomeB","12732":"lowIncomeB","12733":"lowIncomeA","12734":"lowIncomeB","12735":"midIncome","12736":"lowIncomeA","12737":"midIncome","12738":"lowIncomeB","12739":"lowIncomeB","12740":"lowIncomeB","12741":"lowIncomeA","12742":"lowIncomeB","12743":"lowIncomeA","12744":"lowIncomeA","12745":"lowIncomeA","12746":"lowIncomeB","12747":"lowIncomeA","12748":"lowIncomeB","12749":"lowIncomeA","12750":"lowIncomeB","12751":"lowIncomeA","12752":"lowIncomeB","12753":"lowIncomeA","12754":"lowIncomeB","12755":"lowIncomeB","12756":"lowIncomeA","12757":"lowIncomeA","12758":"lowIncomeB","12759":"lowIncomeA","12760":"lowIncomeA","12761":"lowIncomeA","12762":"midIncome","12763":"lowIncomeA","12764":"lowIncomeB","12765":"lowIncomeA","12766":"lowIncomeA","12767":"lowIncomeB","12768":"lowIncomeB","12769":"lowIncomeA","12770":"lowIncomeA","12771":"lowIncomeB","12772":"lowIncomeB","12773":"midIncome","12774":"lowIncomeA","12775":"lowIncomeB","12776":"lowIncomeB","12777":"lowIncomeA","12778":"lowIncomeA","12779":"lowIncomeA","12780":"lowIncomeA","12781":"lowIncomeA","12782":"lowIncomeA","12783":"midIncome","12784":"lowIncomeA","12785":"lowIncomeA","12786":"lowIncomeA","12787":"lowIncomeB","12788":"lowIncomeA","12789":"lowIncomeB","12790":"lowIncomeA","12791":"lowIncomeB","12792":"lowIncomeA","12793":"lowIncomeB","12794":"lowIncomeA","12795":"lowIncomeB","12796":"lowIncomeB","12797":"lowIncomeA","12798":"lowIncomeB","12799":"lowIncomeA","12800":"lowIncomeB","12801":"lowIncomeA","12802":"lowIncomeA","12803":"lowIncomeA","12804":"midIncome","12805":"lowIncomeA","12806":"lowIncomeA","12807":"lowIncomeA","12808":"lowIncomeA","12809":"lowIncomeA","12810":"lowIncomeA","12811":"lowIncomeA","12812":"lowIncomeA","12813":"lowIncomeA","12814":"lowIncomeB","12815":"lowIncomeA","12816":"lowIncomeA","12817":"midIncome","12818":"lowIncomeA","12819":"lowIncomeB","12820":"lowIncomeA","12821":"lowIncomeA","12822":"lowIncomeB","12823":"lowIncomeA","12824":"lowIncomeA","12825":"lowIncomeA","12826":"lowIncomeB","12827":"lowIncomeB","12828":"lowIncomeA","12829":"lowIncomeA","12830":"lowIncomeA","12831":"lowIncomeA","12832":"lowIncomeA","12833":"lowIncomeA","12834":"lowIncomeB","12835":"lowIncomeB","12836":"midIncome","12837":"lowIncomeA","12838":"lowIncomeB","12839":"lowIncomeB","12840":"lowIncomeB","12841":"lowIncomeA","12842":"lowIncomeA","12843":"lowIncomeB","12844":"lowIncomeB","12845":"lowIncomeA","12846":"lowIncomeB","12847":"lowIncomeA","12848":"lowIncomeA","12849":"lowIncomeA","12850":"lowIncomeB","12851":"lowIncomeB","12852":"lowIncomeA","12853":"lowIncomeA","12854":"lowIncomeA","12855":"lowIncomeA","12856":"lowIncomeB","12857":"midIncome","12858":"lowIncomeB","12859":"lowIncomeB","12860":"lowIncomeA","12861":"lowIncomeB","12862":"lowIncomeA","12863":"lowIncomeB","12864":"lowIncomeA","12865":"lowIncomeB","12866":"midIncome","12867":"midIncome","12868":"lowIncomeB","12869":"lowIncomeA","12870":"lowIncomeA","12871":"lowIncomeB","12872":"midIncome","12873":"lowIncomeB","12874":"midIncome","12875":"lowIncomeA","12876":"lowIncomeA","12877":"lowIncomeA","12878":"lowIncomeB","12879":"lowIncomeB","12880":"lowIncomeA","12881":"lowIncomeA","12882":"lowIncomeA","12883":"lowIncomeA","12884":"lowIncomeB","12885":"midIncome","12886":"lowIncomeB","12887":"lowIncomeA","12888":"lowIncomeA","12889":"lowIncomeA","12890":"lowIncomeA","12891":"lowIncomeB","12892":"lowIncomeB","12893":"lowIncomeB","12894":"lowIncomeA","12895":"lowIncomeA","12896":"lowIncomeB","12897":"lowIncomeA","12898":"lowIncomeB","12899":"lowIncomeA","12900":"lowIncomeA","12901":"lowIncomeA","12902":"lowIncomeA","12903":"lowIncomeA","12904":"lowIncomeB","12905":"lowIncomeA","12906":"lowIncomeB","12907":"lowIncomeA","12908":"lowIncomeA","12909":"lowIncomeA","12910":"lowIncomeA","12911":"lowIncomeA","12912":"lowIncomeA","12913":"lowIncomeA","12914":"lowIncomeB","12915":"lowIncomeA","12916":"lowIncomeB","12917":"lowIncomeB","12918":"midIncome","12919":"lowIncomeB","12920":"lowIncomeB","12921":"lowIncomeA","12922":"lowIncomeA","12923":"lowIncomeA","12924":"lowIncomeB","12925":"lowIncomeB","12926":"lowIncomeA","12927":"lowIncomeB","12928":"midIncome","12929":"lowIncomeA","12930":"lowIncomeA","12931":"lowIncomeA","12932":"lowIncomeA","12933":"lowIncomeB","12934":"lowIncomeB","12935":"lowIncomeA","12936":"lowIncomeA","12937":"midIncome","12938":"lowIncomeA","12939":"lowIncomeA","12940":"lowIncomeB","12941":"lowIncomeA","12942":"lowIncomeB","12943":"midIncome","12944":"lowIncomeB","12945":"lowIncomeA","12946":"lowIncomeB","12947":"lowIncomeA","12948":"lowIncomeA","12949":"lowIncomeA","12950":"lowIncomeA","12951":"lowIncomeA","12952":"lowIncomeB","12953":"lowIncomeA","12954":"lowIncomeB","12955":"lowIncomeA","12956":"lowIncomeB","12957":"lowIncomeB","12958":"lowIncomeB","12959":"lowIncomeB","12960":"lowIncomeA","12961":"lowIncomeA","12962":"lowIncomeA","12963":"lowIncomeA","12964":"lowIncomeA","12965":"midIncome","12966":"lowIncomeA","12967":"lowIncomeA","12968":"lowIncomeB","12969":"lowIncomeA","12970":"lowIncomeA","12971":"lowIncomeA","12972":"lowIncomeA","12973":"lowIncomeA","12974":"lowIncomeB","12975":"lowIncomeA","12976":"midIncome","12977":"midIncome","12978":"lowIncomeB","12979":"lowIncomeA","12980":"lowIncomeA","12981":"midIncome","12982":"lowIncomeA","12983":"lowIncomeA","12984":"lowIncomeA","12985":"lowIncomeA","12986":"lowIncomeA","12987":"lowIncomeA","12988":"lowIncomeA","12989":"lowIncomeB","12990":"lowIncomeB","12991":"lowIncomeA","12992":"midIncome","12993":"lowIncomeB","12994":"lowIncomeA","12995":"lowIncomeA","12996":"midIncome","12997":"lowIncomeA","12998":"lowIncomeB","12999":"lowIncomeA","13000":"lowIncomeB","13001":"lowIncomeB","13002":"lowIncomeB","13003":"lowIncomeB","13004":"lowIncomeA","13005":"lowIncomeA","13006":"lowIncomeA","13007":"lowIncomeA","13008":"lowIncomeA","13009":"lowIncomeA","13010":"lowIncomeB","13011":"midIncome","13012":"lowIncomeB","13013":"midIncome","13014":"lowIncomeA","13015":"lowIncomeB","13016":"lowIncomeB","13017":"lowIncomeA","13018":"lowIncomeB","13019":"lowIncomeA","13020":"lowIncomeB","13021":"lowIncomeB","13022":"lowIncomeA","13023":"lowIncomeA","13024":"lowIncomeA","13025":"lowIncomeA","13026":"lowIncomeB","13027":"lowIncomeB","13028":"lowIncomeB","13029":"lowIncomeA","13030":"lowIncomeB","13031":"lowIncomeA","13032":"lowIncomeB","13033":"lowIncomeB","13034":"lowIncomeA","13035":"lowIncomeA","13036":"lowIncomeB","13037":"lowIncomeB","13038":"lowIncomeA","13039":"lowIncomeA","13040":"lowIncomeB","13041":"midIncome","13042":"lowIncomeB","13043":"lowIncomeB","13044":"lowIncomeA","13045":"lowIncomeB","13046":"lowIncomeB","13047":"lowIncomeA","13048":"lowIncomeB","13049":"lowIncomeA","13050":"lowIncomeA","13051":"lowIncomeA","13052":"lowIncomeA","13053":"lowIncomeB","13054":"lowIncomeB","13055":"lowIncomeA","13056":"lowIncomeA","13057":"lowIncomeB","13058":"lowIncomeA","13059":"lowIncomeA","13060":"lowIncomeA","13061":"lowIncomeA","13062":"lowIncomeA","13063":"lowIncomeA","13064":"lowIncomeA","13065":"midIncome","13066":"lowIncomeB","13067":"lowIncomeA","13068":"lowIncomeB","13069":"lowIncomeA","13070":"lowIncomeA","13071":"lowIncomeB","13072":"lowIncomeB","13073":"midIncome","13074":"midIncome","13075":"lowIncomeB","13076":"lowIncomeB","13077":"lowIncomeB","13078":"lowIncomeA","13079":"lowIncomeA","13080":"lowIncomeA","13081":"lowIncomeB","13082":"lowIncomeA","13083":"lowIncomeB","13084":"lowIncomeB","13085":"lowIncomeA","13086":"lowIncomeB","13087":"lowIncomeB","13088":"lowIncomeB","13089":"lowIncomeA","13090":"lowIncomeA","13091":"lowIncomeA","13092":"lowIncomeB","13093":"lowIncomeA","13094":"lowIncomeB","13095":"lowIncomeB","13096":"lowIncomeB","13097":"lowIncomeA","13098":"lowIncomeA","13099":"lowIncomeB","13100":"midIncome","13101":"midIncome","13102":"lowIncomeA","13103":"midIncome","13104":"lowIncomeA","13105":"lowIncomeA","13106":"lowIncomeA","13107":"lowIncomeA","13108":"lowIncomeA","13109":"lowIncomeA","13110":"lowIncomeA","13111":"lowIncomeA","13112":"lowIncomeA","13113":"midIncome","13114":"midIncome","13115":"lowIncomeA","13116":"lowIncomeA","13117":"midIncome","13118":"lowIncomeB","13119":"lowIncomeA","13120":"lowIncomeA","13121":"lowIncomeB","13122":"lowIncomeA","13123":"lowIncomeA","13124":"lowIncomeA","13125":"lowIncomeA","13126":"lowIncomeA","13127":"lowIncomeA","13128":"midIncome","13129":"lowIncomeB","13130":"lowIncomeA","13131":"lowIncomeA","13132":"lowIncomeA","13133":"lowIncomeB","13134":"lowIncomeA","13135":"lowIncomeA","13136":"lowIncomeB","13137":"lowIncomeA","13138":"lowIncomeB","13139":"lowIncomeB","13140":"midIncome","13141":"lowIncomeB","13142":"lowIncomeB","13143":"lowIncomeA","13144":"lowIncomeA","13145":"midIncome","13146":"lowIncomeB","13147":"lowIncomeA","13148":"lowIncomeB","13149":"lowIncomeB","13150":"lowIncomeA","13151":"lowIncomeB","13152":"lowIncomeB","13153":"lowIncomeA","13154":"lowIncomeB","13155":"lowIncomeA","13156":"lowIncomeB","13157":"lowIncomeA","13158":"lowIncomeB","13159":"lowIncomeA","13160":"lowIncomeA","13161":"lowIncomeA","13162":"lowIncomeB","13163":"lowIncomeA","13164":"lowIncomeA","13165":"lowIncomeB","13166":"lowIncomeA","13167":"lowIncomeA","13168":"lowIncomeA","13169":"lowIncomeA","13170":"lowIncomeA","13171":"lowIncomeB","13172":"lowIncomeB","13173":"midIncome","13174":"lowIncomeA","13175":"lowIncomeB","13176":"lowIncomeB","13177":"midIncome","13178":"lowIncomeB","13179":"lowIncomeA","13180":"midIncome","13181":"lowIncomeB","13182":"lowIncomeB","13183":"lowIncomeA","13184":"lowIncomeB","13185":"lowIncomeB","13186":"midIncome","13187":"lowIncomeB","13188":"midIncome","13189":"lowIncomeB","13190":"lowIncomeA","13191":"lowIncomeA","13192":"lowIncomeB","13193":"midIncome","13194":"lowIncomeA","13195":"midIncome","13196":"lowIncomeA","13197":"lowIncomeA","13198":"lowIncomeB","13199":"lowIncomeA","13200":"lowIncomeB","13201":"lowIncomeB","13202":"lowIncomeB","13203":"lowIncomeB","13204":"lowIncomeA","13205":"lowIncomeA","13206":"lowIncomeA","13207":"lowIncomeB","13208":"lowIncomeB","13209":"lowIncomeB","13210":"lowIncomeA","13211":"lowIncomeA","13212":"lowIncomeA","13213":"lowIncomeA","13214":"midIncome","13215":"lowIncomeB","13216":"lowIncomeA","13217":"lowIncomeA","13218":"lowIncomeB","13219":"lowIncomeA","13220":"midIncome","13221":"lowIncomeA","13222":"lowIncomeB","13223":"lowIncomeA","13224":"lowIncomeB","13225":"lowIncomeA","13226":"lowIncomeA","13227":"lowIncomeA","13228":"lowIncomeA","13229":"lowIncomeB","13230":"lowIncomeA","13231":"lowIncomeA","13232":"lowIncomeA","13233":"lowIncomeA","13234":"lowIncomeA","13235":"midIncome","13236":"lowIncomeA","13237":"lowIncomeA","13238":"lowIncomeB","13239":"lowIncomeA","13240":"lowIncomeB","13241":"lowIncomeA","13242":"lowIncomeB","13243":"lowIncomeA","13244":"lowIncomeA","13245":"lowIncomeA","13246":"lowIncomeA","13247":"lowIncomeA","13248":"lowIncomeB","13249":"lowIncomeA","13250":"lowIncomeB","13251":"lowIncomeA","13252":"lowIncomeB","13253":"lowIncomeB","13254":"lowIncomeB","13255":"lowIncomeB","13256":"lowIncomeB","13257":"lowIncomeB","13258":"lowIncomeA","13259":"lowIncomeA","13260":"lowIncomeA","13261":"lowIncomeB","13262":"lowIncomeB","13263":"lowIncomeA","13264":"lowIncomeB","13265":"lowIncomeA","13266":"lowIncomeA","13267":"lowIncomeB","13268":"lowIncomeA","13269":"lowIncomeB","13270":"lowIncomeA","13271":"midIncome","13272":"lowIncomeA","13273":"lowIncomeA","13274":"lowIncomeB","13275":"lowIncomeB","13276":"lowIncomeB","13277":"lowIncomeB","13278":"lowIncomeB","13279":"lowIncomeB","13280":"lowIncomeA","13281":"lowIncomeA","13282":"midIncome","13283":"lowIncomeB","13284":"lowIncomeA","13285":"midIncome","13286":"lowIncomeA","13287":"lowIncomeA","13288":"lowIncomeA","13289":"lowIncomeB","13290":"lowIncomeB","13291":"midIncome","13292":"lowIncomeB","13293":"lowIncomeA","13294":"lowIncomeB","13295":"midIncome","13296":"lowIncomeB","13297":"lowIncomeB","13298":"lowIncomeA","13299":"lowIncomeB","13300":"lowIncomeA","13301":"lowIncomeB","13302":"midIncome","13303":"lowIncomeA","13304":"lowIncomeB","13305":"lowIncomeB","13306":"lowIncomeA","13307":"lowIncomeB","13308":"lowIncomeA","13309":"lowIncomeA","13310":"lowIncomeB","13311":"lowIncomeA","13312":"midIncome","13313":"lowIncomeB","13314":"lowIncomeB","13315":"lowIncomeB","13316":"lowIncomeA","13317":"lowIncomeA","13318":"midIncome","13319":"lowIncomeA","13320":"lowIncomeB","13321":"lowIncomeB","13322":"lowIncomeA","13323":"lowIncomeA","13324":"lowIncomeA","13325":"lowIncomeB","13326":"midIncome","13327":"lowIncomeB","13328":"lowIncomeB","13329":"lowIncomeB","13330":"lowIncomeA","13331":"lowIncomeB","13332":"lowIncomeA","13333":"lowIncomeA","13334":"lowIncomeA","13335":"lowIncomeA","13336":"lowIncomeA","13337":"lowIncomeA","13338":"midIncome","13339":"lowIncomeA","13340":"lowIncomeB","13341":"lowIncomeA","13342":"lowIncomeB","13343":"lowIncomeA","13344":"lowIncomeB","13345":"lowIncomeA","13346":"lowIncomeA","13347":"lowIncomeA","13348":"lowIncomeA","13349":"midIncome","13350":"lowIncomeA","13351":"lowIncomeB","13352":"midIncome","13353":"lowIncomeA","13354":"lowIncomeA","13355":"lowIncomeA","13356":"lowIncomeB","13357":"lowIncomeA","13358":"lowIncomeB","13359":"lowIncomeA","13360":"lowIncomeA","13361":"lowIncomeA","13362":"lowIncomeA","13363":"lowIncomeA","13364":"lowIncomeB","13365":"midIncome","13366":"lowIncomeB","13367":"lowIncomeA","13368":"lowIncomeA","13369":"lowIncomeA","13370":"lowIncomeB","13371":"lowIncomeB","13372":"lowIncomeA","13373":"midIncome","13374":"lowIncomeA","13375":"lowIncomeB","13376":"lowIncomeA","13377":"midIncome","13378":"lowIncomeA","13379":"midIncome","13380":"lowIncomeA","13381":"lowIncomeB","13382":"lowIncomeB","13383":"lowIncomeB","13384":"lowIncomeB","13385":"lowIncomeA","13386":"lowIncomeA","13387":"midIncome","13388":"lowIncomeB","13389":"lowIncomeA","13390":"lowIncomeA","13391":"lowIncomeB","13392":"lowIncomeA","13393":"lowIncomeB","13394":"lowIncomeB","13395":"lowIncomeA","13396":"lowIncomeA","13397":"lowIncomeB","13398":"lowIncomeB","13399":"lowIncomeB","13400":"lowIncomeB","13401":"lowIncomeB","13402":"lowIncomeA","13403":"midIncome","13404":"lowIncomeA","13405":"lowIncomeB","13406":"midIncome","13407":"lowIncomeB","13408":"lowIncomeB","13409":"lowIncomeB","13410":"lowIncomeA","13411":"lowIncomeB","13412":"lowIncomeA","13413":"lowIncomeB","13414":"lowIncomeA","13415":"lowIncomeA","13416":"lowIncomeB","13417":"lowIncomeA","13418":"lowIncomeA","13419":"midIncome","13420":"lowIncomeA","13421":"lowIncomeB","13422":"lowIncomeB","13423":"midIncome","13424":"lowIncomeB","13425":"lowIncomeB","13426":"lowIncomeA","13427":"lowIncomeA","13428":"lowIncomeA","13429":"lowIncomeA","13430":"lowIncomeB","13431":"lowIncomeB","13432":"lowIncomeB","13433":"lowIncomeB","13434":"lowIncomeB","13435":"midIncome","13436":"lowIncomeA","13437":"lowIncomeA","13438":"lowIncomeA","13439":"lowIncomeB","13440":"lowIncomeB","13441":"lowIncomeB","13442":"lowIncomeB","13443":"midIncome","13444":"lowIncomeB","13445":"lowIncomeA","13446":"lowIncomeB","13447":"lowIncomeA","13448":"lowIncomeA","13449":"lowIncomeA","13450":"lowIncomeA","13451":"lowIncomeA","13452":"lowIncomeA","13453":"lowIncomeB","13454":"lowIncomeA","13455":"lowIncomeA","13456":"lowIncomeB","13457":"lowIncomeB","13458":"lowIncomeB","13459":"lowIncomeB","13460":"lowIncomeB","13461":"lowIncomeA","13462":"lowIncomeA","13463":"lowIncomeB","13464":"lowIncomeA","13465":"lowIncomeA","13466":"lowIncomeA","13467":"lowIncomeA","13468":"lowIncomeA","13469":"midIncome","13470":"lowIncomeB","13471":"lowIncomeB","13472":"lowIncomeA","13473":"lowIncomeA","13474":"lowIncomeA","13475":"lowIncomeB","13476":"lowIncomeA","13477":"lowIncomeB","13478":"lowIncomeA","13479":"lowIncomeB","13480":"lowIncomeA","13481":"lowIncomeB","13482":"lowIncomeA","13483":"lowIncomeA","13484":"lowIncomeA","13485":"lowIncomeA","13486":"lowIncomeB","13487":"lowIncomeB","13488":"lowIncomeA","13489":"lowIncomeB","13490":"lowIncomeA","13491":"midIncome","13492":"lowIncomeA","13493":"lowIncomeA","13494":"lowIncomeB","13495":"lowIncomeA","13496":"lowIncomeB","13497":"lowIncomeA","13498":"lowIncomeA","13499":"lowIncomeA","13500":"lowIncomeA","13501":"lowIncomeA","13502":"lowIncomeA","13503":"lowIncomeA","13504":"lowIncomeA","13505":"lowIncomeB","13506":"lowIncomeB","13507":"lowIncomeB","13508":"lowIncomeA","13509":"lowIncomeB","13510":"lowIncomeB","13511":"lowIncomeA","13512":"lowIncomeB","13513":"lowIncomeA","13514":"lowIncomeA","13515":"lowIncomeA","13516":"lowIncomeA","13517":"lowIncomeA","13518":"lowIncomeA","13519":"lowIncomeA","13520":"lowIncomeA","13521":"lowIncomeB","13522":"lowIncomeB","13523":"midIncome","13524":"lowIncomeB","13525":"lowIncomeA","13526":"lowIncomeB","13527":"lowIncomeA","13528":"midIncome","13529":"lowIncomeA","13530":"lowIncomeB","13531":"midIncome","13532":"lowIncomeB","13533":"lowIncomeB","13534":"lowIncomeB","13535":"lowIncomeB","13536":"lowIncomeA","13537":"lowIncomeA","13538":"lowIncomeA","13539":"lowIncomeA","13540":"lowIncomeA","13541":"lowIncomeA","13542":"lowIncomeA","13543":"lowIncomeA","13544":"lowIncomeB","13545":"lowIncomeA","13546":"lowIncomeA","13547":"lowIncomeA","13548":"lowIncomeB","13549":"lowIncomeB","13550":"lowIncomeA","13551":"lowIncomeA","13552":"lowIncomeB","13553":"lowIncomeA","13554":"lowIncomeA","13555":"lowIncomeA","13556":"lowIncomeB","13557":"lowIncomeB","13558":"lowIncomeB","13559":"lowIncomeA","13560":"lowIncomeB","13561":"lowIncomeA","13562":"lowIncomeA","13563":"midIncome","13564":"lowIncomeB","13565":"lowIncomeA","13566":"lowIncomeA","13567":"lowIncomeA","13568":"midIncome","13569":"lowIncomeA","13570":"lowIncomeA","13571":"lowIncomeB","13572":"lowIncomeA","13573":"lowIncomeA","13574":"lowIncomeA","13575":"lowIncomeB","13576":"lowIncomeA","13577":"lowIncomeB","13578":"midIncome","13579":"lowIncomeA","13580":"lowIncomeB","13581":"lowIncomeA","13582":"lowIncomeA","13583":"lowIncomeB","13584":"lowIncomeA","13585":"lowIncomeA","13586":"lowIncomeA","13587":"lowIncomeB","13588":"lowIncomeA","13589":"lowIncomeA","13590":"lowIncomeA","13591":"lowIncomeB","13592":"lowIncomeB","13593":"lowIncomeB","13594":"lowIncomeA","13595":"lowIncomeA","13596":"lowIncomeB","13597":"lowIncomeA","13598":"lowIncomeB","13599":"lowIncomeB","13600":"midIncome","13601":"midIncome","13602":"lowIncomeA","13603":"lowIncomeA","13604":"lowIncomeB","13605":"lowIncomeA","13606":"lowIncomeA","13607":"lowIncomeB","13608":"lowIncomeA","13609":"lowIncomeB","13610":"lowIncomeB","13611":"lowIncomeA","13612":"midIncome","13613":"lowIncomeB","13614":"lowIncomeA","13615":"midIncome","13616":"lowIncomeA","13617":"lowIncomeA","13618":"lowIncomeB","13619":"lowIncomeA","13620":"lowIncomeB","13621":"lowIncomeB","13622":"lowIncomeB","13623":"lowIncomeA","13624":"lowIncomeA","13625":"lowIncomeB","13626":"lowIncomeA","13627":"lowIncomeA","13628":"lowIncomeA","13629":"lowIncomeA","13630":"lowIncomeA","13631":"lowIncomeB","13632":"midIncome","13633":"midIncome","13634":"lowIncomeA","13635":"lowIncomeA","13636":"midIncome","13637":"lowIncomeA","13638":"lowIncomeA","13639":"lowIncomeB","13640":"lowIncomeA","13641":"lowIncomeB","13642":"lowIncomeB","13643":"lowIncomeA","13644":"lowIncomeA","13645":"lowIncomeB","13646":"lowIncomeB","13647":"lowIncomeB","13648":"lowIncomeA","13649":"lowIncomeB","13650":"lowIncomeB","13651":"lowIncomeA","13652":"midIncome","13653":"lowIncomeB","13654":"lowIncomeB","13655":"lowIncomeA","13656":"lowIncomeB","13657":"lowIncomeA","13658":"midIncome","13659":"lowIncomeA","13660":"lowIncomeA","13661":"lowIncomeA","13662":"midIncome","13663":"lowIncomeA","13664":"lowIncomeB","13665":"lowIncomeA","13666":"lowIncomeB","13667":"lowIncomeA","13668":"lowIncomeB","13669":"lowIncomeB","13670":"lowIncomeA","13671":"midIncome","13672":"lowIncomeB","13673":"lowIncomeB","13674":"lowIncomeA","13675":"midIncome","13676":"midIncome","13677":"lowIncomeA","13678":"lowIncomeA","13679":"lowIncomeA","13680":"lowIncomeB","13681":"lowIncomeA","13682":"lowIncomeB","13683":"lowIncomeB","13684":"lowIncomeB","13685":"midIncome","13686":"lowIncomeB","13687":"lowIncomeB","13688":"lowIncomeA","13689":"lowIncomeA","13690":"lowIncomeB","13691":"lowIncomeB","13692":"midIncome","13693":"lowIncomeA","13694":"lowIncomeA","13695":"lowIncomeB","13696":"lowIncomeB","13697":"lowIncomeB","13698":"lowIncomeA","13699":"midIncome","13700":"lowIncomeA","13701":"lowIncomeB","13702":"lowIncomeB","13703":"lowIncomeA","13704":"lowIncomeA","13705":"lowIncomeB","13706":"lowIncomeA","13707":"lowIncomeA","13708":"lowIncomeB","13709":"lowIncomeB","13710":"lowIncomeA","13711":"lowIncomeB","13712":"midIncome","13713":"lowIncomeB","13714":"lowIncomeA","13715":"lowIncomeB","13716":"lowIncomeA","13717":"lowIncomeA","13718":"lowIncomeB","13719":"midIncome","13720":"midIncome","13721":"lowIncomeA","13722":"lowIncomeA","13723":"lowIncomeA","13724":"lowIncomeA","13725":"lowIncomeB","13726":"lowIncomeA","13727":"lowIncomeB","13728":"lowIncomeA","13729":"lowIncomeB","13730":"lowIncomeB","13731":"lowIncomeA","13732":"lowIncomeA","13733":"lowIncomeB","13734":"lowIncomeA","13735":"lowIncomeA","13736":"lowIncomeA","13737":"lowIncomeB","13738":"lowIncomeA","13739":"lowIncomeA","13740":"lowIncomeA","13741":"midIncome","13742":"lowIncomeB","13743":"lowIncomeB","13744":"lowIncomeA","13745":"lowIncomeB","13746":"lowIncomeA","13747":"lowIncomeB","13748":"lowIncomeA","13749":"lowIncomeA","13750":"lowIncomeA","13751":"midIncome","13752":"lowIncomeA","13753":"lowIncomeB","13754":"lowIncomeA","13755":"midIncome","13756":"lowIncomeA","13757":"lowIncomeB","13758":"lowIncomeB","13759":"lowIncomeA","13760":"lowIncomeA","13761":"lowIncomeA","13762":"midIncome","13763":"midIncome","13764":"lowIncomeB","13765":"lowIncomeB","13766":"lowIncomeA","13767":"lowIncomeB","13768":"lowIncomeA","13769":"lowIncomeB","13770":"lowIncomeA","13771":"lowIncomeB","13772":"lowIncomeB","13773":"lowIncomeB","13774":"lowIncomeA","13775":"lowIncomeA","13776":"lowIncomeB","13777":"lowIncomeB","13778":"lowIncomeA","13779":"lowIncomeB","13780":"lowIncomeB","13781":"lowIncomeA","13782":"lowIncomeB","13783":"lowIncomeB","13784":"lowIncomeA","13785":"lowIncomeA","13786":"lowIncomeA","13787":"lowIncomeA","13788":"lowIncomeA","13789":"lowIncomeA","13790":"lowIncomeB","13791":"lowIncomeA","13792":"lowIncomeB","13793":"lowIncomeA","13794":"lowIncomeA","13795":"lowIncomeB","13796":"lowIncomeB","13797":"lowIncomeB","13798":"lowIncomeA","13799":"lowIncomeA","13800":"midIncome","13801":"lowIncomeA","13802":"midIncome","13803":"lowIncomeA","13804":"midIncome","13805":"lowIncomeB","13806":"lowIncomeA","13807":"lowIncomeB","13808":"lowIncomeB","13809":"lowIncomeB","13810":"lowIncomeA","13811":"lowIncomeA","13812":"lowIncomeA","13813":"lowIncomeA","13814":"lowIncomeA","13815":"lowIncomeB","13816":"lowIncomeA","13817":"midIncome","13818":"lowIncomeA","13819":"midIncome","13820":"lowIncomeB","13821":"lowIncomeB","13822":"lowIncomeB","13823":"lowIncomeA","13824":"lowIncomeB","13825":"midIncome","13826":"lowIncomeA","13827":"lowIncomeA","13828":"midIncome","13829":"lowIncomeB","13830":"lowIncomeA","13831":"lowIncomeB","13832":"lowIncomeB","13833":"midIncome","13834":"lowIncomeA","13835":"lowIncomeA","13836":"lowIncomeB","13837":"lowIncomeA","13838":"lowIncomeB","13839":"lowIncomeB","13840":"lowIncomeA","13841":"lowIncomeB","13842":"lowIncomeB","13843":"lowIncomeA","13844":"midIncome","13845":"lowIncomeA","13846":"lowIncomeB","13847":"lowIncomeA","13848":"lowIncomeA","13849":"lowIncomeA","13850":"midIncome","13851":"lowIncomeA","13852":"lowIncomeA","13853":"lowIncomeA","13854":"midIncome","13855":"lowIncomeA","13856":"lowIncomeA","13857":"lowIncomeB","13858":"lowIncomeB","13859":"lowIncomeB","13860":"lowIncomeB","13861":"lowIncomeA","13862":"lowIncomeA","13863":"lowIncomeB","13864":"lowIncomeA","13865":"lowIncomeA","13866":"lowIncomeB","13867":"midIncome","13868":"lowIncomeA","13869":"lowIncomeA","13870":"lowIncomeA","13871":"lowIncomeA","13872":"lowIncomeA","13873":"lowIncomeA","13874":"lowIncomeA","13875":"lowIncomeB","13876":"lowIncomeA","13877":"midIncome","13878":"midIncome","13879":"lowIncomeB","13880":"lowIncomeB","13881":"lowIncomeB","13882":"lowIncomeB","13883":"lowIncomeB","13884":"lowIncomeB","13885":"lowIncomeA","13886":"lowIncomeB","13887":"lowIncomeA","13888":"lowIncomeA","13889":"lowIncomeB","13890":"lowIncomeA","13891":"lowIncomeB","13892":"midIncome","13893":"lowIncomeA","13894":"lowIncomeA","13895":"lowIncomeA","13896":"lowIncomeA","13897":"lowIncomeA","13898":"lowIncomeB","13899":"lowIncomeA","13900":"lowIncomeB","13901":"lowIncomeB","13902":"midIncome","13903":"lowIncomeB","13904":"lowIncomeB","13905":"lowIncomeA","13906":"lowIncomeA","13907":"lowIncomeA","13908":"lowIncomeA","13909":"lowIncomeA","13910":"lowIncomeA","13911":"lowIncomeA","13912":"lowIncomeA","13913":"lowIncomeA","13914":"lowIncomeA","13915":"lowIncomeB","13916":"midIncome","13917":"lowIncomeB","13918":"lowIncomeB","13919":"lowIncomeB","13920":"lowIncomeA","13921":"midIncome","13922":"lowIncomeA","13923":"lowIncomeA","13924":"lowIncomeB","13925":"lowIncomeA","13926":"lowIncomeA","13927":"lowIncomeA","13928":"lowIncomeB","13929":"lowIncomeB","13930":"lowIncomeA","13931":"lowIncomeA","13932":"lowIncomeA","13933":"lowIncomeA","13934":"lowIncomeA","13935":"lowIncomeB","13936":"lowIncomeB","13937":"lowIncomeB","13938":"lowIncomeA","13939":"lowIncomeB","13940":"lowIncomeA","13941":"lowIncomeB","13942":"midIncome","13943":"midIncome","13944":"lowIncomeA","13945":"lowIncomeA","13946":"lowIncomeA","13947":"lowIncomeA","13948":"lowIncomeB","13949":"lowIncomeA","13950":"lowIncomeA","13951":"lowIncomeB","13952":"lowIncomeA","13953":"midIncome","13954":"lowIncomeA","13955":"midIncome","13956":"lowIncomeA","13957":"lowIncomeA","13958":"lowIncomeB","13959":"lowIncomeB","13960":"lowIncomeA","13961":"lowIncomeB","13962":"lowIncomeA","13963":"lowIncomeA","13964":"lowIncomeA","13965":"lowIncomeA","13966":"lowIncomeB","13967":"lowIncomeA","13968":"lowIncomeA","13969":"lowIncomeB","13970":"lowIncomeA","13971":"lowIncomeA","13972":"midIncome","13973":"lowIncomeB","13974":"lowIncomeA","13975":"lowIncomeA","13976":"lowIncomeB","13977":"lowIncomeB","13978":"lowIncomeB","13979":"lowIncomeB","13980":"lowIncomeB","13981":"lowIncomeA","13982":"lowIncomeA","13983":"lowIncomeA","13984":"lowIncomeA","13985":"lowIncomeB","13986":"lowIncomeA","13987":"midIncome","13988":"lowIncomeA","13989":"midIncome","13990":"lowIncomeA","13991":"lowIncomeB","13992":"lowIncomeA","13993":"lowIncomeB","13994":"lowIncomeB","13995":"lowIncomeA","13996":"lowIncomeB","13997":"midIncome","13998":"lowIncomeB","13999":"lowIncomeA","14000":"lowIncomeB","14001":"lowIncomeA","14002":"lowIncomeB","14003":"lowIncomeA","14004":"lowIncomeA","14005":"midIncome","14006":"lowIncomeB","14007":"lowIncomeA","14008":"lowIncomeA","14009":"lowIncomeA","14010":"lowIncomeB","14011":"lowIncomeA","14012":"lowIncomeA","14013":"lowIncomeA","14014":"lowIncomeB","14015":"lowIncomeA","14016":"lowIncomeA","14017":"lowIncomeB","14018":"lowIncomeA","14019":"midIncome","14020":"lowIncomeA","14021":"lowIncomeA","14022":"midIncome","14023":"lowIncomeB","14024":"lowIncomeA","14025":"lowIncomeB","14026":"lowIncomeA","14027":"midIncome","14028":"lowIncomeB","14029":"lowIncomeA","14030":"lowIncomeB","14031":"midIncome","14032":"lowIncomeA","14033":"lowIncomeB","14034":"lowIncomeA","14035":"midIncome","14036":"lowIncomeA","14037":"lowIncomeB","14038":"lowIncomeA","14039":"lowIncomeA","14040":"midIncome","14041":"lowIncomeA","14042":"lowIncomeA","14043":"lowIncomeA","14044":"lowIncomeA","14045":"lowIncomeA","14046":"lowIncomeB","14047":"lowIncomeB","14048":"lowIncomeA","14049":"lowIncomeA","14050":"lowIncomeA","14051":"lowIncomeB","14052":"lowIncomeA","14053":"midIncome","14054":"midIncome","14055":"lowIncomeA","14056":"lowIncomeB","14057":"lowIncomeA","14058":"lowIncomeB","14059":"lowIncomeA","14060":"lowIncomeB","14061":"lowIncomeB","14062":"lowIncomeB","14063":"lowIncomeB","14064":"lowIncomeB","14065":"lowIncomeA","14066":"lowIncomeA","14067":"lowIncomeB","14068":"lowIncomeB","14069":"midIncome","14070":"lowIncomeA","14071":"lowIncomeA","14072":"lowIncomeA","14073":"lowIncomeB","14074":"lowIncomeA","14075":"midIncome","14076":"lowIncomeB","14077":"lowIncomeB","14078":"lowIncomeA","14079":"lowIncomeB","14080":"lowIncomeB","14081":"midIncome","14082":"lowIncomeA","14083":"lowIncomeB","14084":"lowIncomeA","14085":"lowIncomeA","14086":"lowIncomeA","14087":"lowIncomeB","14088":"lowIncomeB","14089":"lowIncomeA","14090":"lowIncomeA","14091":"lowIncomeB","14092":"lowIncomeA","14093":"midIncome","14094":"lowIncomeB","14095":"midIncome","14096":"midIncome","14097":"lowIncomeA","14098":"lowIncomeB","14099":"lowIncomeA","14100":"lowIncomeA","14101":"lowIncomeA","14102":"midIncome","14103":"lowIncomeA","14104":"lowIncomeB","14105":"lowIncomeB","14106":"lowIncomeB","14107":"lowIncomeA","14108":"lowIncomeA","14109":"lowIncomeB","14110":"lowIncomeB","14111":"lowIncomeB","14112":"lowIncomeA","14113":"lowIncomeA","14114":"lowIncomeB","14115":"lowIncomeB","14116":"midIncome","14117":"lowIncomeA","14118":"lowIncomeA","14119":"lowIncomeB","14120":"lowIncomeA","14121":"midIncome","14122":"lowIncomeB","14123":"lowIncomeA","14124":"midIncome","14125":"lowIncomeB","14126":"midIncome","14127":"lowIncomeA","14128":"lowIncomeA","14129":"lowIncomeB","14130":"lowIncomeA","14131":"lowIncomeA","14132":"lowIncomeB","14133":"lowIncomeB","14134":"lowIncomeA","14135":"lowIncomeA","14136":"lowIncomeA","14137":"lowIncomeB","14138":"lowIncomeB","14139":"lowIncomeB","14140":"lowIncomeA","14141":"lowIncomeB","14142":"lowIncomeA","14143":"lowIncomeB","14144":"lowIncomeA","14145":"lowIncomeB","14146":"lowIncomeA","14147":"lowIncomeA","14148":"lowIncomeB","14149":"lowIncomeA","14150":"midIncome","14151":"lowIncomeB","14152":"lowIncomeB","14153":"lowIncomeB","14154":"lowIncomeB","14155":"lowIncomeA","14156":"lowIncomeB","14157":"lowIncomeA","14158":"midIncome","14159":"midIncome","14160":"lowIncomeB","14161":"lowIncomeB","14162":"lowIncomeA","14163":"lowIncomeB","14164":"lowIncomeA","14165":"lowIncomeA","14166":"lowIncomeB","14167":"lowIncomeA","14168":"lowIncomeB","14169":"lowIncomeB","14170":"lowIncomeA","14171":"lowIncomeA","14172":"lowIncomeA","14173":"lowIncomeB","14174":"lowIncomeB","14175":"lowIncomeB","14176":"lowIncomeB","14177":"lowIncomeB","14178":"lowIncomeA","14179":"midIncome","14180":"lowIncomeB","14181":"midIncome","14182":"lowIncomeB","14183":"lowIncomeB","14184":"lowIncomeA","14185":"lowIncomeB","14186":"lowIncomeB","14187":"lowIncomeA","14188":"lowIncomeB","14189":"lowIncomeB","14190":"lowIncomeA","14191":"lowIncomeB","14192":"lowIncomeA","14193":"lowIncomeA","14194":"lowIncomeB","14195":"lowIncomeA","14196":"lowIncomeB","14197":"lowIncomeB","14198":"lowIncomeA","14199":"lowIncomeB","14200":"lowIncomeB","14201":"lowIncomeB","14202":"lowIncomeA","14203":"lowIncomeA","14204":"lowIncomeA","14205":"lowIncomeB","14206":"lowIncomeA","14207":"lowIncomeB","14208":"lowIncomeB","14209":"lowIncomeA","14210":"midIncome","14211":"lowIncomeB","14212":"midIncome","14213":"lowIncomeB","14214":"lowIncomeA","14215":"midIncome","14216":"midIncome","14217":"lowIncomeA","14218":"lowIncomeA","14219":"lowIncomeB","14220":"lowIncomeB","14221":"lowIncomeB","14222":"lowIncomeA","14223":"lowIncomeB","14224":"lowIncomeA","14225":"lowIncomeB","14226":"lowIncomeB","14227":"lowIncomeA","14228":"lowIncomeA","14229":"lowIncomeB","14230":"lowIncomeB","14231":"lowIncomeA","14232":"midIncome","14233":"lowIncomeA","14234":"lowIncomeB","14235":"lowIncomeB","14236":"lowIncomeB","14237":"lowIncomeB","14238":"midIncome","14239":"lowIncomeA","14240":"midIncome","14241":"midIncome","14242":"midIncome","14243":"lowIncomeA","14244":"lowIncomeA","14245":"lowIncomeB","14246":"midIncome","14247":"lowIncomeA","14248":"lowIncomeB","14249":"lowIncomeB","14250":"midIncome","14251":"lowIncomeA","14252":"lowIncomeA","14253":"lowIncomeA","14254":"lowIncomeA","14255":"lowIncomeB","14256":"midIncome","14257":"lowIncomeB","14258":"lowIncomeB","14259":"lowIncomeA","14260":"lowIncomeB","14261":"lowIncomeB","14262":"lowIncomeB","14263":"lowIncomeA","14264":"lowIncomeA","14265":"lowIncomeA","14266":"lowIncomeB","14267":"midIncome","14268":"lowIncomeA","14269":"lowIncomeB","14270":"lowIncomeA","14271":"lowIncomeB","14272":"lowIncomeB","14273":"midIncome","14274":"lowIncomeB","14275":"lowIncomeA","14276":"lowIncomeB","14277":"lowIncomeA","14278":"midIncome","14279":"lowIncomeB","14280":"lowIncomeB","14281":"lowIncomeB","14282":"lowIncomeB","14283":"midIncome","14284":"lowIncomeB","14285":"lowIncomeA","14286":"lowIncomeB","14287":"lowIncomeB","14288":"lowIncomeB","14289":"lowIncomeB","14290":"lowIncomeB","14291":"lowIncomeB","14292":"midIncome","14293":"lowIncomeB","14294":"lowIncomeA","14295":"lowIncomeB","14296":"lowIncomeB","14297":"lowIncomeA","14298":"lowIncomeA","14299":"lowIncomeA","14300":"lowIncomeA","14301":"lowIncomeB","14302":"lowIncomeB","14303":"lowIncomeA","14304":"lowIncomeA","14305":"lowIncomeB","14306":"lowIncomeB","14307":"lowIncomeA","14308":"midIncome","14309":"lowIncomeB","14310":"lowIncomeA","14311":"lowIncomeA","14312":"midIncome","14313":"lowIncomeA","14314":"lowIncomeA","14315":"lowIncomeB","14316":"lowIncomeA","14317":"lowIncomeA","14318":"lowIncomeA","14319":"lowIncomeB","14320":"lowIncomeB","14321":"lowIncomeA","14322":"lowIncomeB","14323":"lowIncomeA","14324":"lowIncomeA","14325":"lowIncomeA","14326":"midIncome","14327":"lowIncomeB","14328":"lowIncomeA","14329":"lowIncomeB","14330":"lowIncomeB","14331":"lowIncomeB","14332":"lowIncomeA","14333":"lowIncomeA","14334":"lowIncomeA","14335":"lowIncomeA","14336":"lowIncomeA","14337":"lowIncomeA","14338":"midIncome","14339":"lowIncomeA","14340":"lowIncomeA","14341":"lowIncomeA","14342":"lowIncomeA","14343":"lowIncomeA","14344":"lowIncomeB","14345":"lowIncomeB","14346":"midIncome","14347":"lowIncomeA","14348":"lowIncomeB","14349":"lowIncomeA","14350":"lowIncomeB","14351":"lowIncomeA","14352":"lowIncomeA","14353":"lowIncomeB","14354":"midIncome","14355":"lowIncomeB","14356":"lowIncomeB","14357":"lowIncomeA","14358":"lowIncomeB","14359":"lowIncomeB","14360":"midIncome","14361":"lowIncomeA","14362":"lowIncomeB","14363":"lowIncomeA","14364":"lowIncomeA","14365":"lowIncomeB","14366":"lowIncomeA","14367":"midIncome","14368":"midIncome","14369":"lowIncomeB","14370":"lowIncomeA","14371":"lowIncomeB","14372":"lowIncomeA","14373":"lowIncomeB","14374":"lowIncomeA","14375":"lowIncomeA","14376":"lowIncomeA","14377":"lowIncomeA","14378":"lowIncomeB","14379":"lowIncomeB","14380":"midIncome","14381":"lowIncomeA","14382":"lowIncomeA","14383":"lowIncomeB","14384":"lowIncomeB","14385":"lowIncomeB","14386":"lowIncomeA","14387":"lowIncomeB","14388":"midIncome","14389":"lowIncomeB","14390":"lowIncomeA","14391":"lowIncomeA","14392":"lowIncomeA","14393":"lowIncomeA","14394":"midIncome","14395":"lowIncomeB","14396":"lowIncomeB","14397":"lowIncomeB","14398":"lowIncomeB","14399":"lowIncomeB","14400":"lowIncomeA","14401":"lowIncomeB","14402":"lowIncomeB","14403":"lowIncomeB","14404":"lowIncomeA","14405":"lowIncomeB","14406":"lowIncomeA","14407":"lowIncomeB","14408":"lowIncomeB","14409":"lowIncomeA","14410":"lowIncomeB","14411":"lowIncomeA","14412":"lowIncomeA","14413":"lowIncomeB","14414":"midIncome","14415":"lowIncomeA","14416":"lowIncomeA","14417":"lowIncomeB","14418":"lowIncomeB","14419":"lowIncomeB","14420":"midIncome","14421":"midIncome","14422":"midIncome","14423":"lowIncomeA","14424":"lowIncomeA","14425":"lowIncomeA","14426":"midIncome","14427":"lowIncomeA","14428":"lowIncomeB","14429":"lowIncomeA","14430":"lowIncomeA","14431":"lowIncomeA","14432":"lowIncomeA","14433":"lowIncomeA","14434":"lowIncomeA","14435":"lowIncomeB","14436":"lowIncomeA","14437":"lowIncomeA","14438":"lowIncomeB","14439":"lowIncomeA","14440":"lowIncomeA","14441":"lowIncomeA","14442":"lowIncomeA","14443":"lowIncomeB","14444":"lowIncomeA","14445":"lowIncomeA","14446":"lowIncomeA","14447":"lowIncomeB","14448":"lowIncomeB","14449":"lowIncomeA","14450":"lowIncomeB","14451":"lowIncomeB","14452":"lowIncomeA","14453":"lowIncomeB","14454":"lowIncomeA","14455":"lowIncomeA","14456":"lowIncomeB","14457":"lowIncomeA","14458":"lowIncomeA","14459":"lowIncomeB","14460":"lowIncomeB","14461":"lowIncomeA","14462":"lowIncomeB","14463":"lowIncomeB","14464":"lowIncomeB","14465":"lowIncomeB","14466":"lowIncomeA","14467":"lowIncomeA","14468":"lowIncomeB","14469":"lowIncomeB","14470":"lowIncomeB","14471":"lowIncomeA","14472":"lowIncomeA","14473":"midIncome","14474":"lowIncomeA","14475":"lowIncomeA","14476":"lowIncomeA","14477":"lowIncomeB","14478":"lowIncomeA","14479":"lowIncomeA","14480":"lowIncomeA","14481":"midIncome","14482":"lowIncomeB","14483":"lowIncomeA","14484":"lowIncomeA","14485":"lowIncomeA","14486":"lowIncomeB","14487":"lowIncomeA","14488":"lowIncomeA","14489":"lowIncomeA","14490":"lowIncomeB","14491":"lowIncomeA","14492":"lowIncomeB","14493":"lowIncomeA","14494":"lowIncomeB","14495":"lowIncomeA","14496":"lowIncomeA","14497":"lowIncomeA","14498":"lowIncomeB","14499":"lowIncomeA","14500":"lowIncomeB","14501":"lowIncomeA","14502":"lowIncomeA","14503":"lowIncomeB","14504":"lowIncomeB","14505":"lowIncomeA","14506":"lowIncomeA","14507":"lowIncomeB","14508":"midIncome","14509":"lowIncomeB","14510":"lowIncomeB","14511":"lowIncomeA","14512":"lowIncomeA","14513":"lowIncomeB","14514":"lowIncomeA","14515":"midIncome","14516":"lowIncomeA","14517":"lowIncomeB","14518":"lowIncomeB","14519":"lowIncomeA","14520":"lowIncomeB","14521":"lowIncomeB","14522":"lowIncomeA","14523":"lowIncomeA","14524":"lowIncomeB","14525":"lowIncomeA","14526":"lowIncomeA","14527":"lowIncomeA","14528":"lowIncomeB","14529":"midIncome","14530":"lowIncomeB","14531":"lowIncomeB","14532":"lowIncomeB","14533":"lowIncomeA","14534":"lowIncomeA","14535":"lowIncomeA","14536":"lowIncomeB","14537":"lowIncomeB","14538":"lowIncomeA","14539":"lowIncomeA","14540":"lowIncomeA","14541":"lowIncomeB","14542":"lowIncomeA","14543":"lowIncomeB","14544":"lowIncomeA","14545":"midIncome","14546":"lowIncomeB","14547":"lowIncomeA","14548":"lowIncomeB","14549":"lowIncomeB","14550":"lowIncomeA","14551":"midIncome","14552":"lowIncomeB","14553":"lowIncomeB","14554":"lowIncomeA","14555":"lowIncomeB","14556":"lowIncomeA","14557":"midIncome","14558":"midIncome","14559":"lowIncomeA","14560":"lowIncomeA","14561":"lowIncomeB","14562":"lowIncomeB","14563":"lowIncomeA","14564":"lowIncomeB","14565":"lowIncomeB","14566":"lowIncomeA","14567":"lowIncomeB","14568":"lowIncomeA","14569":"lowIncomeB","14570":"lowIncomeA","14571":"lowIncomeB","14572":"lowIncomeA","14573":"lowIncomeB","14574":"lowIncomeB","14575":"lowIncomeB","14576":"lowIncomeB","14577":"lowIncomeA","14578":"lowIncomeA","14579":"lowIncomeA","14580":"lowIncomeB","14581":"lowIncomeA","14582":"lowIncomeA","14583":"lowIncomeA","14584":"lowIncomeB","14585":"lowIncomeA","14586":"lowIncomeB","14587":"lowIncomeB","14588":"lowIncomeA","14589":"lowIncomeA","14590":"lowIncomeA","14591":"lowIncomeA","14592":"lowIncomeB","14593":"lowIncomeA","14594":"lowIncomeA","14595":"midIncome","14596":"lowIncomeB","14597":"midIncome","14598":"lowIncomeB","14599":"lowIncomeA","14600":"lowIncomeB","14601":"lowIncomeB","14602":"lowIncomeB","14603":"lowIncomeB","14604":"lowIncomeB","14605":"midIncome","14606":"lowIncomeA","14607":"lowIncomeA","14608":"lowIncomeB","14609":"lowIncomeA","14610":"lowIncomeA","14611":"midIncome","14612":"lowIncomeB","14613":"lowIncomeB","14614":"lowIncomeB","14615":"lowIncomeB","14616":"lowIncomeA","14617":"lowIncomeB","14618":"lowIncomeB","14619":"lowIncomeA","14620":"lowIncomeA","14621":"lowIncomeB","14622":"lowIncomeA","14623":"lowIncomeA","14624":"lowIncomeA","14625":"lowIncomeB","14626":"lowIncomeA","14627":"lowIncomeA","14628":"lowIncomeB","14629":"lowIncomeB","14630":"lowIncomeA","14631":"lowIncomeA","14632":"lowIncomeA","14633":"lowIncomeA","14634":"lowIncomeB","14635":"lowIncomeA","14636":"lowIncomeB","14637":"lowIncomeA","14638":"lowIncomeA","14639":"lowIncomeA","14640":"lowIncomeB","14641":"lowIncomeB","14642":"lowIncomeB","14643":"lowIncomeB","14644":"lowIncomeA","14645":"lowIncomeA","14646":"lowIncomeB","14647":"lowIncomeB","14648":"lowIncomeA","14649":"lowIncomeB","14650":"lowIncomeA","14651":"lowIncomeB","14652":"lowIncomeB","14653":"lowIncomeA","14654":"lowIncomeB","14655":"lowIncomeA","14656":"lowIncomeB","14657":"midIncome","14658":"lowIncomeA","14659":"lowIncomeA","14660":"lowIncomeB","14661":"lowIncomeA","14662":"lowIncomeA","14663":"lowIncomeA","14664":"lowIncomeA","14665":"lowIncomeA","14666":"midIncome","14667":"lowIncomeA","14668":"lowIncomeA","14669":"midIncome","14670":"lowIncomeA","14671":"lowIncomeB","14672":"lowIncomeA","14673":"lowIncomeB","14674":"lowIncomeA","14675":"lowIncomeB","14676":"midIncome","14677":"lowIncomeB","14678":"lowIncomeA","14679":"midIncome","14680":"lowIncomeB","14681":"lowIncomeB","14682":"lowIncomeB","14683":"lowIncomeB","14684":"lowIncomeA","14685":"midIncome","14686":"lowIncomeA","14687":"lowIncomeA","14688":"lowIncomeB","14689":"lowIncomeA","14690":"lowIncomeA","14691":"lowIncomeB","14692":"lowIncomeA","14693":"lowIncomeA","14694":"lowIncomeA","14695":"lowIncomeA","14696":"lowIncomeB","14697":"lowIncomeA","14698":"lowIncomeA","14699":"lowIncomeB","14700":"lowIncomeA","14701":"lowIncomeA","14702":"lowIncomeB","14703":"lowIncomeB","14704":"lowIncomeB","14705":"lowIncomeA","14706":"lowIncomeA","14707":"lowIncomeA","14708":"lowIncomeB","14709":"lowIncomeA","14710":"lowIncomeB","14711":"lowIncomeB","14712":"midIncome","14713":"lowIncomeB","14714":"lowIncomeB","14715":"lowIncomeA","14716":"lowIncomeA","14717":"lowIncomeA","14718":"lowIncomeB","14719":"lowIncomeA","14720":"lowIncomeA","14721":"lowIncomeB","14722":"midIncome","14723":"lowIncomeB","14724":"lowIncomeA","14725":"lowIncomeB","14726":"lowIncomeB","14727":"lowIncomeA","14728":"lowIncomeB","14729":"lowIncomeA","14730":"midIncome","14731":"lowIncomeA","14732":"lowIncomeA","14733":"lowIncomeB","14734":"lowIncomeB","14735":"lowIncomeA","14736":"lowIncomeB","14737":"lowIncomeB","14738":"lowIncomeA","14739":"midIncome","14740":"lowIncomeB","14741":"lowIncomeA","14742":"lowIncomeB","14743":"lowIncomeA","14744":"lowIncomeB","14745":"lowIncomeB","14746":"lowIncomeA","14747":"lowIncomeB","14748":"lowIncomeB","14749":"lowIncomeA","14750":"lowIncomeB","14751":"lowIncomeB","14752":"midIncome","14753":"lowIncomeA","14754":"lowIncomeB","14755":"lowIncomeB","14756":"lowIncomeA","14757":"lowIncomeB","14758":"lowIncomeA","14759":"lowIncomeA","14760":"lowIncomeB","14761":"lowIncomeA","14762":"lowIncomeA","14763":"midIncome","14764":"lowIncomeA","14765":"lowIncomeA","14766":"lowIncomeB","14767":"lowIncomeA","14768":"lowIncomeA","14769":"lowIncomeB","14770":"lowIncomeB","14771":"lowIncomeA","14772":"lowIncomeA","14773":"lowIncomeB","14774":"lowIncomeA","14775":"lowIncomeB","14776":"lowIncomeA","14777":"lowIncomeA","14778":"lowIncomeA","14779":"lowIncomeA","14780":"lowIncomeA","14781":"lowIncomeA","14782":"lowIncomeB","14783":"lowIncomeA","14784":"lowIncomeA","14785":"lowIncomeA","14786":"lowIncomeA","14787":"lowIncomeA","14788":"lowIncomeB","14789":"lowIncomeA","14790":"lowIncomeA","14791":"lowIncomeB","14792":"lowIncomeA","14793":"lowIncomeA","14794":"lowIncomeB","14795":"lowIncomeB","14796":"lowIncomeA","14797":"lowIncomeA","14798":"lowIncomeB","14799":"lowIncomeA","14800":"lowIncomeA","14801":"lowIncomeB","14802":"lowIncomeB","14803":"midIncome","14804":"lowIncomeB","14805":"lowIncomeB","14806":"lowIncomeB","14807":"lowIncomeB","14808":"lowIncomeB","14809":"lowIncomeA","14810":"lowIncomeA","14811":"lowIncomeB","14812":"lowIncomeB","14813":"midIncome","14814":"lowIncomeA","14815":"lowIncomeA","14816":"midIncome","14817":"lowIncomeA","14818":"lowIncomeB","14819":"lowIncomeA","14820":"lowIncomeA","14821":"lowIncomeB","14822":"midIncome","14823":"lowIncomeB","14824":"midIncome","14825":"lowIncomeB","14826":"lowIncomeB","14827":"lowIncomeA","14828":"lowIncomeA","14829":"lowIncomeA","14830":"lowIncomeB","14831":"midIncome","14832":"lowIncomeA","14833":"midIncome","14834":"lowIncomeA","14835":"lowIncomeA","14836":"lowIncomeB","14837":"lowIncomeA","14838":"lowIncomeA","14839":"lowIncomeA","14840":"lowIncomeB","14841":"midIncome","14842":"lowIncomeA","14843":"lowIncomeB","14844":"lowIncomeA","14845":"lowIncomeB","14846":"lowIncomeA","14847":"lowIncomeA","14848":"lowIncomeA","14849":"lowIncomeB","14850":"lowIncomeB","14851":"lowIncomeA","14852":"lowIncomeA","14853":"lowIncomeA","14854":"lowIncomeB","14855":"lowIncomeB","14856":"midIncome","14857":"lowIncomeB","14858":"lowIncomeB","14859":"lowIncomeB","14860":"lowIncomeB","14861":"lowIncomeA","14862":"lowIncomeA","14863":"lowIncomeA","14864":"lowIncomeA","14865":"lowIncomeA","14866":"lowIncomeA","14867":"lowIncomeA","14868":"lowIncomeA","14869":"lowIncomeA","14870":"lowIncomeA","14871":"midIncome","14872":"lowIncomeA","14873":"lowIncomeA","14874":"lowIncomeB","14875":"lowIncomeA","14876":"lowIncomeB","14877":"lowIncomeA","14878":"lowIncomeB","14879":"lowIncomeA","14880":"lowIncomeB","14881":"lowIncomeA","14882":"lowIncomeB","14883":"midIncome","14884":"midIncome","14885":"midIncome","14886":"lowIncomeA","14887":"lowIncomeB","14888":"lowIncomeA","14889":"lowIncomeB","14890":"lowIncomeA","14891":"lowIncomeA","14892":"lowIncomeB","14893":"lowIncomeB","14894":"lowIncomeA","14895":"lowIncomeA","14896":"lowIncomeB","14897":"lowIncomeB","14898":"midIncome","14899":"lowIncomeB","14900":"lowIncomeA","14901":"lowIncomeB","14902":"lowIncomeA","14903":"lowIncomeB","14904":"lowIncomeB","14905":"lowIncomeA","14906":"lowIncomeA","14907":"lowIncomeB","14908":"lowIncomeA","14909":"lowIncomeA","14910":"lowIncomeB","14911":"lowIncomeB","14912":"lowIncomeA","14913":"lowIncomeA","14914":"lowIncomeB","14915":"lowIncomeA","14916":"lowIncomeA","14917":"lowIncomeA","14918":"midIncome","14919":"lowIncomeB","14920":"lowIncomeB","14921":"lowIncomeA","14922":"lowIncomeA","14923":"lowIncomeA","14924":"lowIncomeB","14925":"lowIncomeA","14926":"lowIncomeB","14927":"lowIncomeA","14928":"lowIncomeB","14929":"midIncome","14930":"lowIncomeB","14931":"lowIncomeB","14932":"lowIncomeB","14933":"lowIncomeB","14934":"lowIncomeA","14935":"lowIncomeA","14936":"midIncome","14937":"midIncome","14938":"lowIncomeA","14939":"lowIncomeB","14940":"lowIncomeA","14941":"lowIncomeB","14942":"lowIncomeA","14943":"lowIncomeB","14944":"lowIncomeA","14945":"lowIncomeB","14946":"lowIncomeA","14947":"lowIncomeA","14948":"lowIncomeA","14949":"lowIncomeB","14950":"lowIncomeA","14951":"lowIncomeB","14952":"lowIncomeA","14953":"midIncome","14954":"lowIncomeB","14955":"lowIncomeA","14956":"lowIncomeA","14957":"lowIncomeB","14958":"lowIncomeB","14959":"lowIncomeB","14960":"lowIncomeA","14961":"lowIncomeA","14962":"lowIncomeA","14963":"lowIncomeA","14964":"lowIncomeA","14965":"lowIncomeA","14966":"midIncome","14967":"lowIncomeB","14968":"lowIncomeB","14969":"lowIncomeB","14970":"lowIncomeB","14971":"lowIncomeA","14972":"lowIncomeB","14973":"lowIncomeB","14974":"lowIncomeA","14975":"lowIncomeB","14976":"lowIncomeA","14977":"lowIncomeB","14978":"midIncome","14979":"lowIncomeB","14980":"lowIncomeA","14981":"lowIncomeA","14982":"lowIncomeA","14983":"lowIncomeB","14984":"lowIncomeB","14985":"lowIncomeB","14986":"lowIncomeA","14987":"lowIncomeB","14988":"lowIncomeB","14989":"lowIncomeB","14990":"lowIncomeA","14991":"lowIncomeB","14992":"lowIncomeB","14993":"lowIncomeA","14994":"lowIncomeA","14995":"lowIncomeA","14996":"lowIncomeA","14997":"lowIncomeB","14998":"lowIncomeB","14999":"lowIncomeB","15000":"lowIncomeB","15001":"lowIncomeA","15002":"lowIncomeA","15003":"lowIncomeA","15004":"lowIncomeB","15005":"midIncome","15006":"lowIncomeA","15007":"midIncome","15008":"lowIncomeA","15009":"lowIncomeB","15010":"lowIncomeA","15011":"lowIncomeA","15012":"lowIncomeB","15013":"lowIncomeA","15014":"lowIncomeA","15015":"lowIncomeA","15016":"lowIncomeA","15017":"lowIncomeA","15018":"lowIncomeA","15019":"lowIncomeA","15020":"midIncome","15021":"lowIncomeA","15022":"lowIncomeB","15023":"lowIncomeB","15024":"lowIncomeB","15025":"lowIncomeB","15026":"lowIncomeA","15027":"lowIncomeA","15028":"lowIncomeB","15029":"midIncome","15030":"lowIncomeB","15031":"lowIncomeB","15032":"lowIncomeA","15033":"lowIncomeB","15034":"lowIncomeB","15035":"lowIncomeA","15036":"lowIncomeA","15037":"lowIncomeB","15038":"lowIncomeA","15039":"lowIncomeA","15040":"lowIncomeB","15041":"lowIncomeA","15042":"lowIncomeA","15043":"lowIncomeA","15044":"lowIncomeB","15045":"lowIncomeB","15046":"lowIncomeA","15047":"lowIncomeA","15048":"lowIncomeB","15049":"lowIncomeB","15050":"lowIncomeA","15051":"lowIncomeA","15052":"lowIncomeA","15053":"lowIncomeB","15054":"lowIncomeB","15055":"lowIncomeA","15056":"midIncome","15057":"lowIncomeB","15058":"midIncome","15059":"lowIncomeA","15060":"lowIncomeA","15061":"lowIncomeB","15062":"lowIncomeB","15063":"lowIncomeA","15064":"lowIncomeA","15065":"lowIncomeA","15066":"lowIncomeA","15067":"lowIncomeA","15068":"midIncome","15069":"lowIncomeB","15070":"lowIncomeA","15071":"midIncome","15072":"lowIncomeB","15073":"lowIncomeA","15074":"lowIncomeB","15075":"lowIncomeA","15076":"lowIncomeB","15077":"lowIncomeA","15078":"lowIncomeA","15079":"lowIncomeA","15080":"lowIncomeA","15081":"lowIncomeB","15082":"midIncome","15083":"lowIncomeB","15084":"lowIncomeB","15085":"lowIncomeA","15086":"lowIncomeA","15087":"midIncome","15088":"lowIncomeA","15089":"lowIncomeA","15090":"lowIncomeA","15091":"lowIncomeB","15092":"midIncome","15093":"lowIncomeA","15094":"lowIncomeA","15095":"lowIncomeB","15096":"lowIncomeB","15097":"lowIncomeB","15098":"lowIncomeB","15099":"lowIncomeB","15100":"lowIncomeB","15101":"lowIncomeA","15102":"midIncome","15103":"lowIncomeB","15104":"lowIncomeA","15105":"lowIncomeB","15106":"lowIncomeB","15107":"lowIncomeA","15108":"lowIncomeA","15109":"lowIncomeB","15110":"lowIncomeA","15111":"lowIncomeA","15112":"lowIncomeA","15113":"lowIncomeB","15114":"lowIncomeA","15115":"lowIncomeA","15116":"lowIncomeB","15117":"midIncome","15118":"lowIncomeA","15119":"lowIncomeB","15120":"lowIncomeB","15121":"lowIncomeB","15122":"lowIncomeA","15123":"midIncome","15124":"lowIncomeA","15125":"lowIncomeB","15126":"lowIncomeA","15127":"lowIncomeB","15128":"lowIncomeA","15129":"lowIncomeA","15130":"lowIncomeB","15131":"lowIncomeA","15132":"midIncome","15133":"lowIncomeB","15134":"lowIncomeB","15135":"midIncome","15136":"lowIncomeA","15137":"lowIncomeA","15138":"lowIncomeA","15139":"lowIncomeA","15140":"lowIncomeB","15141":"lowIncomeA","15142":"lowIncomeB","15143":"midIncome","15144":"lowIncomeA","15145":"midIncome","15146":"lowIncomeB","15147":"lowIncomeA","15148":"lowIncomeA","15149":"lowIncomeB","15150":"lowIncomeA","15151":"lowIncomeB","15152":"lowIncomeB","15153":"lowIncomeA","15154":"lowIncomeB","15155":"lowIncomeB","15156":"lowIncomeB","15157":"midIncome","15158":"midIncome","15159":"lowIncomeB","15160":"lowIncomeA","15161":"lowIncomeB","15162":"lowIncomeB","15163":"lowIncomeB","15164":"lowIncomeB","15165":"lowIncomeA","15166":"lowIncomeA","15167":"lowIncomeA","15168":"lowIncomeA","15169":"lowIncomeB","15170":"lowIncomeA","15171":"lowIncomeA","15172":"lowIncomeA","15173":"lowIncomeA","15174":"lowIncomeB","15175":"lowIncomeB","15176":"lowIncomeB","15177":"lowIncomeA","15178":"lowIncomeA","15179":"lowIncomeB","15180":"lowIncomeB","15181":"lowIncomeA","15182":"lowIncomeA","15183":"lowIncomeB","15184":"lowIncomeA","15185":"lowIncomeA","15186":"lowIncomeB","15187":"lowIncomeA","15188":"lowIncomeA","15189":"lowIncomeA","15190":"midIncome","15191":"lowIncomeA","15192":"lowIncomeA","15193":"lowIncomeA","15194":"lowIncomeB","15195":"lowIncomeA","15196":"lowIncomeA","15197":"lowIncomeB","15198":"lowIncomeB","15199":"lowIncomeB","15200":"lowIncomeB","15201":"lowIncomeA","15202":"midIncome","15203":"lowIncomeB","15204":"lowIncomeB","15205":"lowIncomeB","15206":"midIncome","15207":"lowIncomeB","15208":"lowIncomeA","15209":"lowIncomeB","15210":"lowIncomeB","15211":"lowIncomeB","15212":"lowIncomeA","15213":"lowIncomeB","15214":"lowIncomeA","15215":"lowIncomeB","15216":"lowIncomeB","15217":"lowIncomeB","15218":"lowIncomeB","15219":"lowIncomeB","15220":"lowIncomeA","15221":"midIncome","15222":"lowIncomeA","15223":"lowIncomeA","15224":"lowIncomeA","15225":"midIncome","15226":"lowIncomeA","15227":"lowIncomeA","15228":"lowIncomeB","15229":"lowIncomeA","15230":"lowIncomeA","15231":"lowIncomeA","15232":"lowIncomeA","15233":"lowIncomeA","15234":"lowIncomeB","15235":"midIncome","15236":"lowIncomeA","15237":"midIncome","15238":"lowIncomeB","15239":"lowIncomeB","15240":"lowIncomeB","15241":"lowIncomeB","15242":"lowIncomeA","15243":"lowIncomeA","15244":"lowIncomeA","15245":"lowIncomeA","15246":"lowIncomeA","15247":"lowIncomeB","15248":"lowIncomeA","15249":"lowIncomeA","15250":"lowIncomeA","15251":"lowIncomeB","15252":"lowIncomeB","15253":"lowIncomeA","15254":"lowIncomeB","15255":"lowIncomeA","15256":"lowIncomeB","15257":"lowIncomeA","15258":"lowIncomeA","15259":"lowIncomeA","15260":"lowIncomeA","15261":"lowIncomeA","15262":"lowIncomeB","15263":"lowIncomeA","15264":"lowIncomeB","15265":"lowIncomeA","15266":"lowIncomeB","15267":"lowIncomeA","15268":"lowIncomeB","15269":"lowIncomeA","15270":"lowIncomeA","15271":"lowIncomeA","15272":"lowIncomeA","15273":"lowIncomeB","15274":"lowIncomeB","15275":"lowIncomeB","15276":"lowIncomeA","15277":"lowIncomeB","15278":"lowIncomeA","15279":"lowIncomeA","15280":"lowIncomeA","15281":"lowIncomeA","15282":"lowIncomeB","15283":"lowIncomeB","15284":"lowIncomeB","15285":"lowIncomeA","15286":"midIncome","15287":"lowIncomeA","15288":"lowIncomeA","15289":"lowIncomeB","15290":"lowIncomeB","15291":"lowIncomeA","15292":"lowIncomeB","15293":"lowIncomeB","15294":"lowIncomeA","15295":"lowIncomeA","15296":"lowIncomeB","15297":"midIncome","15298":"midIncome","15299":"lowIncomeA","15300":"lowIncomeA","15301":"midIncome","15302":"lowIncomeA","15303":"lowIncomeA","15304":"lowIncomeA","15305":"midIncome","15306":"lowIncomeA","15307":"lowIncomeB","15308":"midIncome","15309":"lowIncomeA","15310":"lowIncomeB","15311":"lowIncomeA","15312":"midIncome","15313":"lowIncomeA","15314":"lowIncomeA","15315":"lowIncomeB","15316":"lowIncomeA","15317":"lowIncomeA","15318":"lowIncomeA","15319":"lowIncomeA","15320":"lowIncomeB","15321":"lowIncomeA","15322":"lowIncomeA","15323":"midIncome","15324":"midIncome","15325":"lowIncomeA","15326":"lowIncomeB","15327":"lowIncomeB","15328":"midIncome","15329":"lowIncomeB","15330":"lowIncomeB","15331":"lowIncomeA","15332":"lowIncomeA","15333":"lowIncomeB","15334":"lowIncomeB","15335":"lowIncomeB","15336":"lowIncomeA","15337":"lowIncomeB","15338":"midIncome","15339":"midIncome","15340":"lowIncomeB","15341":"lowIncomeA","15342":"lowIncomeA","15343":"lowIncomeA","15344":"lowIncomeA","15345":"lowIncomeB","15346":"lowIncomeA","15347":"lowIncomeB","15348":"lowIncomeB","15349":"lowIncomeB","15350":"lowIncomeA","15351":"lowIncomeB","15352":"lowIncomeB","15353":"lowIncomeB","15354":"midIncome","15355":"lowIncomeB","15356":"lowIncomeB","15357":"lowIncomeA","15358":"lowIncomeA","15359":"lowIncomeB","15360":"lowIncomeA","15361":"lowIncomeA","15362":"lowIncomeA","15363":"lowIncomeA","15364":"lowIncomeB","15365":"lowIncomeA","15366":"lowIncomeB","15367":"lowIncomeB","15368":"midIncome","15369":"lowIncomeA","15370":"lowIncomeB","15371":"midIncome","15372":"lowIncomeB","15373":"lowIncomeB","15374":"lowIncomeB","15375":"lowIncomeA","15376":"lowIncomeB","15377":"lowIncomeA","15378":"lowIncomeA","15379":"midIncome","15380":"lowIncomeB","15381":"lowIncomeB","15382":"lowIncomeA","15383":"lowIncomeB","15384":"lowIncomeA","15385":"lowIncomeB","15386":"lowIncomeB","15387":"lowIncomeA","15388":"lowIncomeB","15389":"midIncome","15390":"lowIncomeA","15391":"lowIncomeA","15392":"lowIncomeA","15393":"lowIncomeA","15394":"midIncome","15395":"lowIncomeA","15396":"lowIncomeB","15397":"lowIncomeB","15398":"lowIncomeB","15399":"lowIncomeA","15400":"midIncome","15401":"lowIncomeB","15402":"lowIncomeA","15403":"lowIncomeA","15404":"midIncome","15405":"lowIncomeA","15406":"lowIncomeA","15407":"midIncome","15408":"lowIncomeA","15409":"lowIncomeB","15410":"lowIncomeA","15411":"lowIncomeA","15412":"lowIncomeB","15413":"lowIncomeB","15414":"midIncome","15415":"lowIncomeB","15416":"midIncome","15417":"lowIncomeA","15418":"lowIncomeA","15419":"midIncome","15420":"lowIncomeA","15421":"lowIncomeA","15422":"lowIncomeA","15423":"lowIncomeB","15424":"lowIncomeA","15425":"midIncome","15426":"lowIncomeA","15427":"lowIncomeA","15428":"lowIncomeA","15429":"lowIncomeA","15430":"lowIncomeA","15431":"lowIncomeA","15432":"lowIncomeA","15433":"lowIncomeA","15434":"lowIncomeB","15435":"lowIncomeA","15436":"lowIncomeA","15437":"lowIncomeA","15438":"lowIncomeA","15439":"lowIncomeA","15440":"lowIncomeB","15441":"lowIncomeB","15442":"lowIncomeB","15443":"lowIncomeA","15444":"lowIncomeB","15445":"lowIncomeB","15446":"midIncome","15447":"lowIncomeA","15448":"lowIncomeA","15449":"lowIncomeA","15450":"lowIncomeA","15451":"lowIncomeB","15452":"lowIncomeA","15453":"lowIncomeB","15454":"lowIncomeB","15455":"lowIncomeB","15456":"lowIncomeB","15457":"lowIncomeA","15458":"lowIncomeA","15459":"lowIncomeA","15460":"lowIncomeA","15461":"lowIncomeB","15462":"lowIncomeA","15463":"lowIncomeA","15464":"lowIncomeA","15465":"lowIncomeB","15466":"lowIncomeB","15467":"lowIncomeB","15468":"lowIncomeA","15469":"lowIncomeA","15470":"lowIncomeB","15471":"lowIncomeB","15472":"lowIncomeA","15473":"lowIncomeA","15474":"lowIncomeA","15475":"lowIncomeA","15476":"lowIncomeB","15477":"lowIncomeA","15478":"lowIncomeA","15479":"lowIncomeB","15480":"lowIncomeB","15481":"lowIncomeA","15482":"lowIncomeB","15483":"lowIncomeB","15484":"lowIncomeA","15485":"lowIncomeA","15486":"lowIncomeB","15487":"lowIncomeA","15488":"lowIncomeA","15489":"lowIncomeB","15490":"lowIncomeA","15491":"lowIncomeB","15492":"lowIncomeB","15493":"lowIncomeB","15494":"midIncome","15495":"lowIncomeA","15496":"lowIncomeB","15497":"lowIncomeA","15498":"lowIncomeA","15499":"lowIncomeA","15500":"lowIncomeA","15501":"lowIncomeA","15502":"midIncome","15503":"lowIncomeA","15504":"lowIncomeB","15505":"midIncome","15506":"lowIncomeB","15507":"midIncome","15508":"lowIncomeB","15509":"lowIncomeA","15510":"lowIncomeB","15511":"lowIncomeA","15512":"lowIncomeB","15513":"midIncome","15514":"lowIncomeB","15515":"lowIncomeA","15516":"lowIncomeA","15517":"midIncome","15518":"lowIncomeA","15519":"midIncome","15520":"lowIncomeB","15521":"lowIncomeB","15522":"lowIncomeA","15523":"midIncome","15524":"lowIncomeA","15525":"lowIncomeB","15526":"lowIncomeB","15527":"lowIncomeB","15528":"lowIncomeA","15529":"midIncome","15530":"lowIncomeA","15531":"midIncome","15532":"lowIncomeA","15533":"lowIncomeA","15534":"lowIncomeB","15535":"lowIncomeA","15536":"lowIncomeB","15537":"lowIncomeB","15538":"lowIncomeB","15539":"lowIncomeA","15540":"midIncome","15541":"lowIncomeB","15542":"lowIncomeA","15543":"lowIncomeB","15544":"lowIncomeA","15545":"lowIncomeB","15546":"lowIncomeA","15547":"lowIncomeA","15548":"lowIncomeB","15549":"lowIncomeA","15550":"lowIncomeA","15551":"lowIncomeB","15552":"lowIncomeA","15553":"lowIncomeA","15554":"midIncome","15555":"midIncome","15556":"lowIncomeB","15557":"lowIncomeA","15558":"lowIncomeB","15559":"lowIncomeA","15560":"lowIncomeA","15561":"lowIncomeB","15562":"lowIncomeB","15563":"lowIncomeA","15564":"midIncome","15565":"lowIncomeA","15566":"lowIncomeB","15567":"lowIncomeB","15568":"lowIncomeA","15569":"lowIncomeA","15570":"lowIncomeA","15571":"lowIncomeB","15572":"lowIncomeA","15573":"midIncome","15574":"lowIncomeA","15575":"lowIncomeA","15576":"lowIncomeB","15577":"lowIncomeB","15578":"lowIncomeA","15579":"lowIncomeB","15580":"midIncome","15581":"lowIncomeB","15582":"lowIncomeB","15583":"lowIncomeA","15584":"lowIncomeA","15585":"lowIncomeA","15586":"lowIncomeB","15587":"lowIncomeB","15588":"lowIncomeA","15589":"lowIncomeA","15590":"lowIncomeB","15591":"lowIncomeB","15592":"lowIncomeA","15593":"lowIncomeA","15594":"lowIncomeA","15595":"midIncome","15596":"lowIncomeB","15597":"midIncome","15598":"lowIncomeB","15599":"lowIncomeA","15600":"lowIncomeA","15601":"lowIncomeA","15602":"lowIncomeB","15603":"lowIncomeA","15604":"lowIncomeB","15605":"midIncome","15606":"lowIncomeA","15607":"lowIncomeA","15608":"lowIncomeA","15609":"lowIncomeA","15610":"lowIncomeB","15611":"midIncome","15612":"lowIncomeB","15613":"lowIncomeB","15614":"midIncome","15615":"midIncome","15616":"lowIncomeA","15617":"lowIncomeA","15618":"lowIncomeA","15619":"lowIncomeA","15620":"midIncome","15621":"lowIncomeB","15622":"lowIncomeA","15623":"lowIncomeA","15624":"lowIncomeA","15625":"lowIncomeB","15626":"lowIncomeB","15627":"lowIncomeA","15628":"lowIncomeB","15629":"lowIncomeB","15630":"lowIncomeA","15631":"midIncome","15632":"lowIncomeA","15633":"lowIncomeA","15634":"lowIncomeA","15635":"lowIncomeB","15636":"lowIncomeA","15637":"lowIncomeA","15638":"lowIncomeB","15639":"lowIncomeA","15640":"lowIncomeA","15641":"lowIncomeB","15642":"lowIncomeA","15643":"lowIncomeA","15644":"lowIncomeA","15645":"lowIncomeB","15646":"lowIncomeA","15647":"lowIncomeB","15648":"midIncome","15649":"lowIncomeB","15650":"lowIncomeA","15651":"lowIncomeA","15652":"lowIncomeA","15653":"lowIncomeB","15654":"lowIncomeA","15655":"lowIncomeB","15656":"lowIncomeA","15657":"lowIncomeB","15658":"lowIncomeA","15659":"lowIncomeA","15660":"lowIncomeA","15661":"lowIncomeA","15662":"lowIncomeA","15663":"midIncome","15664":"midIncome","15665":"lowIncomeB","15666":"lowIncomeA","15667":"lowIncomeA","15668":"lowIncomeA","15669":"lowIncomeA","15670":"midIncome","15671":"lowIncomeB","15672":"lowIncomeA","15673":"lowIncomeA","15674":"lowIncomeB","15675":"midIncome","15676":"lowIncomeA","15677":"lowIncomeB","15678":"lowIncomeB","15679":"lowIncomeA","15680":"lowIncomeA","15681":"lowIncomeA","15682":"lowIncomeA","15683":"lowIncomeA","15684":"lowIncomeB","15685":"lowIncomeB","15686":"lowIncomeB","15687":"lowIncomeB","15688":"lowIncomeB","15689":"lowIncomeB","15690":"lowIncomeB","15691":"lowIncomeB","15692":"lowIncomeA","15693":"lowIncomeA","15694":"lowIncomeB","15695":"midIncome","15696":"lowIncomeB","15697":"lowIncomeA","15698":"lowIncomeB","15699":"lowIncomeB","15700":"lowIncomeB","15701":"lowIncomeA","15702":"lowIncomeA","15703":"lowIncomeB","15704":"lowIncomeA","15705":"lowIncomeB","15706":"lowIncomeB","15707":"lowIncomeA","15708":"lowIncomeB","15709":"lowIncomeA","15710":"midIncome","15711":"lowIncomeA","15712":"lowIncomeA","15713":"lowIncomeA","15714":"lowIncomeB","15715":"lowIncomeB","15716":"lowIncomeB","15717":"lowIncomeB","15718":"lowIncomeB","15719":"lowIncomeA","15720":"lowIncomeA","15721":"lowIncomeA","15722":"lowIncomeA","15723":"lowIncomeA","15724":"midIncome","15725":"lowIncomeB","15726":"lowIncomeB","15727":"lowIncomeA","15728":"lowIncomeB","15729":"midIncome","15730":"lowIncomeA","15731":"lowIncomeB","15732":"lowIncomeA","15733":"lowIncomeA","15734":"lowIncomeA","15735":"lowIncomeA","15736":"lowIncomeB","15737":"lowIncomeB","15738":"lowIncomeA","15739":"lowIncomeA","15740":"lowIncomeB","15741":"lowIncomeA","15742":"lowIncomeB","15743":"lowIncomeB","15744":"lowIncomeB","15745":"lowIncomeB","15746":"lowIncomeA","15747":"lowIncomeB","15748":"lowIncomeA","15749":"lowIncomeA","15750":"lowIncomeA","15751":"lowIncomeA","15752":"lowIncomeA","15753":"lowIncomeA","15754":"lowIncomeA","15755":"lowIncomeB","15756":"midIncome","15757":"lowIncomeA","15758":"lowIncomeA","15759":"lowIncomeB","15760":"lowIncomeB","15761":"lowIncomeA","15762":"midIncome","15763":"lowIncomeB","15764":"lowIncomeA","15765":"midIncome","15766":"lowIncomeA","15767":"lowIncomeA","15768":"lowIncomeA","15769":"lowIncomeA","15770":"lowIncomeA","15771":"lowIncomeB","15772":"lowIncomeA","15773":"lowIncomeB","15774":"lowIncomeB","15775":"lowIncomeA","15776":"lowIncomeA","15777":"lowIncomeB","15778":"lowIncomeB","15779":"lowIncomeB","15780":"lowIncomeA","15781":"lowIncomeA","15782":"lowIncomeA","15783":"lowIncomeB","15784":"lowIncomeA","15785":"lowIncomeA","15786":"lowIncomeB","15787":"lowIncomeA","15788":"lowIncomeA","15789":"lowIncomeA","15790":"lowIncomeA","15791":"lowIncomeA","15792":"lowIncomeA","15793":"lowIncomeB","15794":"midIncome","15795":"lowIncomeB","15796":"lowIncomeB","15797":"lowIncomeA","15798":"lowIncomeA","15799":"lowIncomeA","15800":"lowIncomeA","15801":"midIncome","15802":"lowIncomeB","15803":"midIncome","15804":"lowIncomeA","15805":"lowIncomeB","15806":"lowIncomeB","15807":"lowIncomeB","15808":"lowIncomeB","15809":"midIncome","15810":"midIncome","15811":"lowIncomeB","15812":"lowIncomeA","15813":"lowIncomeA","15814":"lowIncomeA","15815":"lowIncomeA","15816":"lowIncomeA","15817":"lowIncomeA","15818":"lowIncomeA","15819":"lowIncomeA","15820":"lowIncomeA","15821":"lowIncomeA","15822":"lowIncomeA","15823":"midIncome","15824":"lowIncomeA","15825":"lowIncomeA","15826":"lowIncomeB","15827":"lowIncomeB","15828":"lowIncomeB","15829":"lowIncomeA","15830":"midIncome","15831":"lowIncomeB","15832":"lowIncomeA","15833":"midIncome","15834":"midIncome","15835":"midIncome","15836":"lowIncomeA","15837":"lowIncomeB","15838":"lowIncomeA","15839":"midIncome","15840":"lowIncomeA","15841":"lowIncomeB","15842":"lowIncomeA","15843":"lowIncomeB","15844":"lowIncomeA","15845":"lowIncomeA","15846":"lowIncomeB","15847":"lowIncomeA","15848":"lowIncomeA","15849":"lowIncomeA","15850":"midIncome","15851":"lowIncomeB","15852":"lowIncomeB","15853":"lowIncomeA","15854":"lowIncomeB","15855":"midIncome","15856":"lowIncomeA","15857":"midIncome","15858":"lowIncomeB","15859":"midIncome","15860":"lowIncomeA","15861":"lowIncomeA","15862":"lowIncomeA","15863":"lowIncomeB","15864":"lowIncomeA","15865":"lowIncomeB","15866":"lowIncomeA","15867":"lowIncomeA","15868":"lowIncomeB","15869":"lowIncomeA","15870":"lowIncomeA","15871":"lowIncomeA","15872":"lowIncomeB","15873":"lowIncomeA","15874":"lowIncomeB","15875":"lowIncomeB","15876":"lowIncomeA","15877":"lowIncomeA","15878":"lowIncomeB","15879":"lowIncomeA","15880":"midIncome","15881":"lowIncomeA","15882":"lowIncomeA","15883":"lowIncomeA","15884":"lowIncomeA","15885":"lowIncomeA","15886":"lowIncomeB","15887":"lowIncomeA","15888":"lowIncomeA","15889":"lowIncomeA","15890":"midIncome","15891":"lowIncomeA","15892":"lowIncomeB","15893":"lowIncomeA","15894":"lowIncomeB","15895":"lowIncomeB","15896":"lowIncomeB","15897":"lowIncomeB","15898":"lowIncomeA","15899":"lowIncomeB","15900":"lowIncomeA","15901":"lowIncomeA","15902":"lowIncomeA","15903":"lowIncomeA","15904":"lowIncomeB","15905":"lowIncomeA","15906":"lowIncomeA","15907":"lowIncomeB","15908":"lowIncomeA","15909":"lowIncomeA","15910":"lowIncomeB","15911":"lowIncomeA","15912":"lowIncomeB","15913":"lowIncomeA","15914":"lowIncomeA","15915":"lowIncomeB","15916":"lowIncomeA","15917":"lowIncomeA","15918":"lowIncomeA","15919":"lowIncomeA","15920":"lowIncomeA","15921":"lowIncomeB","15922":"lowIncomeA","15923":"lowIncomeA","15924":"lowIncomeA","15925":"lowIncomeB","15926":"lowIncomeB","15927":"lowIncomeA","15928":"lowIncomeB","15929":"lowIncomeA","15930":"midIncome","15931":"lowIncomeA","15932":"lowIncomeB","15933":"lowIncomeA","15934":"lowIncomeA","15935":"lowIncomeA","15936":"midIncome","15937":"midIncome","15938":"lowIncomeB","15939":"lowIncomeA","15940":"lowIncomeB","15941":"lowIncomeA","15942":"lowIncomeA","15943":"lowIncomeA","15944":"lowIncomeA","15945":"lowIncomeA","15946":"lowIncomeB","15947":"lowIncomeB","15948":"lowIncomeA","15949":"midIncome","15950":"lowIncomeB","15951":"lowIncomeB","15952":"lowIncomeA","15953":"lowIncomeA","15954":"midIncome","15955":"lowIncomeB","15956":"lowIncomeB","15957":"lowIncomeB","15958":"midIncome","15959":"lowIncomeB","15960":"lowIncomeA","15961":"lowIncomeA","15962":"lowIncomeA","15963":"lowIncomeB","15964":"midIncome","15965":"lowIncomeB","15966":"lowIncomeA","15967":"lowIncomeA","15968":"midIncome","15969":"lowIncomeB","15970":"lowIncomeA","15971":"lowIncomeA","15972":"lowIncomeA","15973":"lowIncomeB","15974":"lowIncomeB","15975":"lowIncomeA","15976":"lowIncomeB","15977":"midIncome","15978":"lowIncomeA","15979":"midIncome","15980":"lowIncomeB","15981":"lowIncomeA","15982":"lowIncomeA","15983":"midIncome","15984":"lowIncomeB","15985":"lowIncomeA","15986":"lowIncomeA","15987":"lowIncomeA","15988":"lowIncomeA","15989":"lowIncomeA","15990":"lowIncomeA","15991":"lowIncomeB","15992":"lowIncomeA","15993":"lowIncomeA","15994":"lowIncomeA","15995":"midIncome","15996":"lowIncomeA","15997":"lowIncomeB","15998":"lowIncomeA","15999":"lowIncomeA","16000":"lowIncomeB","16001":"midIncome","16002":"lowIncomeA","16003":"lowIncomeB","16004":"lowIncomeB","16005":"lowIncomeB","16006":"lowIncomeA","16007":"lowIncomeB","16008":"lowIncomeA","16009":"lowIncomeB","16010":"lowIncomeA","16011":"lowIncomeA","16012":"lowIncomeA","16013":"lowIncomeA","16014":"lowIncomeB","16015":"lowIncomeA","16016":"lowIncomeA","16017":"lowIncomeB","16018":"lowIncomeA","16019":"midIncome","16020":"lowIncomeB","16021":"lowIncomeA","16022":"lowIncomeA","16023":"lowIncomeB","16024":"lowIncomeB","16025":"lowIncomeA","16026":"lowIncomeA","16027":"lowIncomeB","16028":"lowIncomeB","16029":"lowIncomeB","16030":"lowIncomeB","16031":"lowIncomeA","16032":"lowIncomeB","16033":"midIncome","16034":"lowIncomeA","16035":"lowIncomeB","16036":"lowIncomeA","16037":"lowIncomeA","16038":"lowIncomeB","16039":"midIncome","16040":"lowIncomeA","16041":"lowIncomeA","16042":"lowIncomeA","16043":"lowIncomeB","16044":"lowIncomeA","16045":"lowIncomeB","16046":"lowIncomeB","16047":"lowIncomeA","16048":"lowIncomeB","16049":"lowIncomeA","16050":"lowIncomeA","16051":"lowIncomeA","16052":"lowIncomeB","16053":"midIncome","16054":"lowIncomeA","16055":"lowIncomeB","16056":"midIncome","16057":"lowIncomeA","16058":"lowIncomeB","16059":"lowIncomeA","16060":"lowIncomeA","16061":"lowIncomeB","16062":"lowIncomeB","16063":"lowIncomeA","16064":"midIncome","16065":"lowIncomeA","16066":"lowIncomeB","16067":"lowIncomeA","16068":"lowIncomeA","16069":"lowIncomeA","16070":"lowIncomeB","16071":"lowIncomeA","16072":"lowIncomeB","16073":"lowIncomeB","16074":"lowIncomeB","16075":"lowIncomeB","16076":"lowIncomeA","16077":"lowIncomeB","16078":"lowIncomeA","16079":"lowIncomeA","16080":"lowIncomeA","16081":"lowIncomeA","16082":"lowIncomeA","16083":"lowIncomeA","16084":"midIncome","16085":"lowIncomeA","16086":"lowIncomeB","16087":"lowIncomeA","16088":"lowIncomeA","16089":"midIncome","16090":"lowIncomeB","16091":"lowIncomeB","16092":"lowIncomeA","16093":"midIncome","16094":"lowIncomeA","16095":"lowIncomeA","16096":"midIncome","16097":"lowIncomeB","16098":"lowIncomeB","16099":"lowIncomeA","16100":"lowIncomeB","16101":"lowIncomeB","16102":"lowIncomeB","16103":"lowIncomeB","16104":"lowIncomeA","16105":"lowIncomeA","16106":"lowIncomeB","16107":"lowIncomeA","16108":"lowIncomeA","16109":"lowIncomeA","16110":"lowIncomeB","16111":"lowIncomeB","16112":"lowIncomeA","16113":"lowIncomeA","16114":"midIncome","16115":"lowIncomeA","16116":"lowIncomeB","16117":"lowIncomeA","16118":"lowIncomeB","16119":"lowIncomeB","16120":"lowIncomeA","16121":"lowIncomeB","16122":"lowIncomeB","16123":"lowIncomeA","16124":"lowIncomeA","16125":"lowIncomeA","16126":"lowIncomeA","16127":"lowIncomeA","16128":"lowIncomeA","16129":"lowIncomeA","16130":"midIncome","16131":"lowIncomeB","16132":"lowIncomeA","16133":"lowIncomeB","16134":"lowIncomeA","16135":"lowIncomeA","16136":"lowIncomeB","16137":"lowIncomeA","16138":"lowIncomeB","16139":"lowIncomeB","16140":"lowIncomeA","16141":"lowIncomeA","16142":"lowIncomeA","16143":"lowIncomeA","16144":"lowIncomeA","16145":"lowIncomeB","16146":"lowIncomeB","16147":"lowIncomeB","16148":"lowIncomeA","16149":"lowIncomeA","16150":"lowIncomeA","16151":"lowIncomeA","16152":"lowIncomeA","16153":"lowIncomeA","16154":"lowIncomeA","16155":"lowIncomeA","16156":"lowIncomeA","16157":"lowIncomeA","16158":"lowIncomeA","16159":"lowIncomeB","16160":"lowIncomeB","16161":"lowIncomeB","16162":"lowIncomeA","16163":"lowIncomeA","16164":"lowIncomeA","16165":"lowIncomeB","16166":"lowIncomeA","16167":"lowIncomeA","16168":"midIncome","16169":"lowIncomeA","16170":"lowIncomeA","16171":"lowIncomeB","16172":"lowIncomeA","16173":"lowIncomeB","16174":"lowIncomeB","16175":"lowIncomeB","16176":"lowIncomeB","16177":"lowIncomeA","16178":"lowIncomeB","16179":"lowIncomeA","16180":"lowIncomeA","16181":"lowIncomeB","16182":"lowIncomeA","16183":"lowIncomeB","16184":"lowIncomeA","16185":"lowIncomeA","16186":"lowIncomeA","16187":"lowIncomeA","16188":"midIncome","16189":"lowIncomeA","16190":"lowIncomeB","16191":"lowIncomeB","16192":"lowIncomeB","16193":"lowIncomeA","16194":"lowIncomeA","16195":"lowIncomeA","16196":"lowIncomeA","16197":"lowIncomeA","16198":"lowIncomeA","16199":"lowIncomeA","16200":"lowIncomeA","16201":"lowIncomeB","16202":"lowIncomeA","16203":"midIncome","16204":"lowIncomeA","16205":"lowIncomeB","16206":"midIncome","16207":"lowIncomeB","16208":"lowIncomeB","16209":"midIncome","16210":"lowIncomeA","16211":"lowIncomeB","16212":"lowIncomeB","16213":"midIncome","16214":"lowIncomeA","16215":"lowIncomeA","16216":"lowIncomeA","16217":"lowIncomeA","16218":"lowIncomeA","16219":"lowIncomeA","16220":"lowIncomeB","16221":"lowIncomeB","16222":"lowIncomeA","16223":"midIncome","16224":"lowIncomeA","16225":"lowIncomeA","16226":"lowIncomeB","16227":"lowIncomeA","16228":"midIncome","16229":"lowIncomeA","16230":"lowIncomeA","16231":"lowIncomeB","16232":"lowIncomeB","16233":"lowIncomeB","16234":"lowIncomeA","16235":"lowIncomeA","16236":"lowIncomeB","16237":"lowIncomeA","16238":"lowIncomeA","16239":"lowIncomeA","16240":"lowIncomeA","16241":"lowIncomeB","16242":"midIncome","16243":"lowIncomeB","16244":"lowIncomeA","16245":"lowIncomeA","16246":"lowIncomeB","16247":"lowIncomeB","16248":"lowIncomeB","16249":"midIncome","16250":"lowIncomeB","16251":"lowIncomeA","16252":"lowIncomeA","16253":"midIncome","16254":"midIncome","16255":"lowIncomeA","16256":"lowIncomeB","16257":"lowIncomeA","16258":"lowIncomeA","16259":"lowIncomeA","16260":"lowIncomeB","16261":"lowIncomeB","16262":"lowIncomeA","16263":"lowIncomeA","16264":"midIncome","16265":"lowIncomeA","16266":"lowIncomeA","16267":"lowIncomeB","16268":"lowIncomeA","16269":"lowIncomeA","16270":"lowIncomeA","16271":"lowIncomeA","16272":"lowIncomeA","16273":"lowIncomeB","16274":"lowIncomeA","16275":"lowIncomeB","16276":"lowIncomeB","16277":"lowIncomeB","16278":"lowIncomeA","16279":"lowIncomeA","16280":"midIncome","16281":"lowIncomeB","16282":"lowIncomeA","16283":"lowIncomeA","16284":"lowIncomeB","16285":"lowIncomeA","16286":"lowIncomeA","16287":"lowIncomeB","16288":"lowIncomeB","16289":"lowIncomeB","16290":"lowIncomeA","16291":"lowIncomeA","16292":"lowIncomeB","16293":"lowIncomeB","16294":"lowIncomeA","16295":"lowIncomeB","16296":"lowIncomeA","16297":"lowIncomeB","16298":"lowIncomeB","16299":"lowIncomeB","16300":"lowIncomeB","16301":"lowIncomeB","16302":"lowIncomeB","16303":"lowIncomeA","16304":"lowIncomeA","16305":"lowIncomeB","16306":"lowIncomeA","16307":"midIncome","16308":"lowIncomeA","16309":"lowIncomeA","16310":"lowIncomeB","16311":"lowIncomeB","16312":"lowIncomeA","16313":"lowIncomeB","16314":"lowIncomeB","16315":"lowIncomeB","16316":"lowIncomeB","16317":"lowIncomeB","16318":"lowIncomeA","16319":"lowIncomeB","16320":"lowIncomeB","16321":"lowIncomeA","16322":"lowIncomeA","16323":"lowIncomeA","16324":"lowIncomeA","16325":"lowIncomeA","16326":"lowIncomeA","16327":"lowIncomeB","16328":"lowIncomeA","16329":"lowIncomeA","16330":"lowIncomeA","16331":"lowIncomeB","16332":"lowIncomeB","16333":"lowIncomeA","16334":"lowIncomeB","16335":"lowIncomeB","16336":"lowIncomeA","16337":"lowIncomeA","16338":"lowIncomeB","16339":"lowIncomeA","16340":"midIncome","16341":"lowIncomeB","16342":"lowIncomeA","16343":"lowIncomeA","16344":"midIncome","16345":"lowIncomeB","16346":"lowIncomeB","16347":"lowIncomeA","16348":"lowIncomeA","16349":"lowIncomeA","16350":"midIncome","16351":"lowIncomeA","16352":"midIncome","16353":"lowIncomeA","16354":"lowIncomeA","16355":"lowIncomeB","16356":"lowIncomeA","16357":"lowIncomeA","16358":"midIncome","16359":"lowIncomeA","16360":"lowIncomeA","16361":"lowIncomeA","16362":"midIncome","16363":"lowIncomeA","16364":"lowIncomeA","16365":"lowIncomeA","16366":"lowIncomeA","16367":"lowIncomeA","16368":"midIncome","16369":"lowIncomeA","16370":"lowIncomeA","16371":"lowIncomeA","16372":"lowIncomeB","16373":"lowIncomeA","16374":"lowIncomeA","16375":"lowIncomeB","16376":"lowIncomeA","16377":"lowIncomeB","16378":"lowIncomeA","16379":"lowIncomeA","16380":"lowIncomeA","16381":"midIncome","16382":"lowIncomeA","16383":"lowIncomeB","16384":"lowIncomeB","16385":"lowIncomeB","16386":"lowIncomeA","16387":"lowIncomeB","16388":"midIncome","16389":"lowIncomeA","16390":"lowIncomeB","16391":"lowIncomeB","16392":"lowIncomeB","16393":"lowIncomeA","16394":"lowIncomeA","16395":"midIncome","16396":"lowIncomeB","16397":"lowIncomeA","16398":"lowIncomeA","16399":"lowIncomeA","16400":"lowIncomeB","16401":"lowIncomeA","16402":"lowIncomeA","16403":"lowIncomeA","16404":"lowIncomeA","16405":"lowIncomeA","16406":"lowIncomeA","16407":"lowIncomeA","16408":"lowIncomeA","16409":"midIncome","16410":"lowIncomeA","16411":"lowIncomeA","16412":"lowIncomeA","16413":"lowIncomeA","16414":"lowIncomeA","16415":"lowIncomeA","16416":"lowIncomeA","16417":"lowIncomeB","16418":"midIncome","16419":"lowIncomeA","16420":"midIncome","16421":"lowIncomeB","16422":"lowIncomeA","16423":"lowIncomeA","16424":"lowIncomeA","16425":"midIncome","16426":"lowIncomeA","16427":"lowIncomeB","16428":"lowIncomeA","16429":"lowIncomeB","16430":"midIncome","16431":"midIncome","16432":"lowIncomeA","16433":"lowIncomeA","16434":"midIncome","16435":"lowIncomeA","16436":"lowIncomeB","16437":"midIncome","16438":"lowIncomeA","16439":"lowIncomeB","16440":"lowIncomeA","16441":"lowIncomeB","16442":"lowIncomeB","16443":"lowIncomeA","16444":"midIncome","16445":"lowIncomeA","16446":"lowIncomeB","16447":"lowIncomeB","16448":"lowIncomeA","16449":"lowIncomeA","16450":"lowIncomeB","16451":"lowIncomeB","16452":"lowIncomeA","16453":"lowIncomeA","16454":"lowIncomeA","16455":"lowIncomeA","16456":"lowIncomeB","16457":"lowIncomeA","16458":"lowIncomeA","16459":"lowIncomeA","16460":"lowIncomeA","16461":"lowIncomeA","16462":"lowIncomeA","16463":"lowIncomeA","16464":"lowIncomeB","16465":"midIncome","16466":"lowIncomeA","16467":"lowIncomeB","16468":"lowIncomeA","16469":"lowIncomeA","16470":"lowIncomeA","16471":"lowIncomeA","16472":"lowIncomeB","16473":"lowIncomeB","16474":"lowIncomeA","16475":"lowIncomeA","16476":"lowIncomeB","16477":"lowIncomeB","16478":"lowIncomeA","16479":"lowIncomeB","16480":"lowIncomeA","16481":"lowIncomeA","16482":"lowIncomeB","16483":"lowIncomeA","16484":"lowIncomeA","16485":"lowIncomeB","16486":"midIncome","16487":"lowIncomeB","16488":"lowIncomeB","16489":"midIncome","16490":"lowIncomeB","16491":"lowIncomeA","16492":"lowIncomeA","16493":"lowIncomeA","16494":"lowIncomeB","16495":"midIncome","16496":"lowIncomeB","16497":"lowIncomeA","16498":"lowIncomeB","16499":"lowIncomeA","16500":"lowIncomeB","16501":"lowIncomeA","16502":"lowIncomeB","16503":"lowIncomeB","16504":"lowIncomeA","16505":"midIncome","16506":"midIncome","16507":"lowIncomeB","16508":"lowIncomeA","16509":"lowIncomeA","16510":"lowIncomeA","16511":"lowIncomeB","16512":"lowIncomeA","16513":"lowIncomeA","16514":"midIncome","16515":"lowIncomeA","16516":"lowIncomeA","16517":"lowIncomeB","16518":"lowIncomeB","16519":"lowIncomeA","16520":"lowIncomeA","16521":"lowIncomeA","16522":"lowIncomeB","16523":"lowIncomeA","16524":"midIncome","16525":"lowIncomeA","16526":"lowIncomeA","16527":"lowIncomeB","16528":"lowIncomeB","16529":"midIncome","16530":"lowIncomeB","16531":"lowIncomeA","16532":"lowIncomeB","16533":"lowIncomeA","16534":"lowIncomeB","16535":"lowIncomeB","16536":"lowIncomeA","16537":"lowIncomeA","16538":"lowIncomeA","16539":"midIncome","16540":"lowIncomeA","16541":"lowIncomeA","16542":"midIncome","16543":"lowIncomeA","16544":"lowIncomeA","16545":"lowIncomeA","16546":"lowIncomeA","16547":"lowIncomeA","16548":"lowIncomeA","16549":"lowIncomeA","16550":"lowIncomeA","16551":"lowIncomeB","16552":"lowIncomeA","16553":"lowIncomeB","16554":"lowIncomeA","16555":"lowIncomeB","16556":"lowIncomeA","16557":"lowIncomeB","16558":"lowIncomeB","16559":"lowIncomeA","16560":"lowIncomeB","16561":"lowIncomeA","16562":"lowIncomeB","16563":"lowIncomeA","16564":"lowIncomeB","16565":"midIncome","16566":"midIncome","16567":"lowIncomeB","16568":"lowIncomeB","16569":"lowIncomeA","16570":"lowIncomeA","16571":"lowIncomeB","16572":"lowIncomeB","16573":"midIncome","16574":"lowIncomeA","16575":"lowIncomeB","16576":"lowIncomeB","16577":"lowIncomeB","16578":"lowIncomeA","16579":"lowIncomeA","16580":"lowIncomeB","16581":"lowIncomeA","16582":"lowIncomeA","16583":"lowIncomeA","16584":"lowIncomeB","16585":"midIncome","16586":"lowIncomeA","16587":"midIncome","16588":"midIncome","16589":"lowIncomeA","16590":"lowIncomeB","16591":"lowIncomeA","16592":"lowIncomeB","16593":"lowIncomeA","16594":"lowIncomeB","16595":"lowIncomeB","16596":"lowIncomeA","16597":"lowIncomeB","16598":"lowIncomeB","16599":"midIncome","16600":"lowIncomeB","16601":"lowIncomeA","16602":"lowIncomeB","16603":"lowIncomeA","16604":"lowIncomeA","16605":"lowIncomeB","16606":"lowIncomeB","16607":"lowIncomeA","16608":"lowIncomeA","16609":"midIncome","16610":"midIncome","16611":"lowIncomeA","16612":"lowIncomeA","16613":"lowIncomeB","16614":"lowIncomeB","16615":"lowIncomeA","16616":"lowIncomeA","16617":"lowIncomeA","16618":"lowIncomeB","16619":"lowIncomeA","16620":"lowIncomeA","16621":"lowIncomeB","16622":"lowIncomeB","16623":"lowIncomeA","16624":"lowIncomeB","16625":"midIncome","16626":"lowIncomeB","16627":"lowIncomeB","16628":"lowIncomeB","16629":"lowIncomeB","16630":"lowIncomeB","16631":"lowIncomeB","16632":"lowIncomeB","16633":"lowIncomeB","16634":"lowIncomeA","16635":"lowIncomeB","16636":"lowIncomeA","16637":"lowIncomeB","16638":"lowIncomeA","16639":"lowIncomeA","16640":"lowIncomeA","16641":"midIncome","16642":"lowIncomeA","16643":"lowIncomeB","16644":"lowIncomeA","16645":"lowIncomeB","16646":"lowIncomeA","16647":"lowIncomeB","16648":"lowIncomeB","16649":"lowIncomeA","16650":"lowIncomeB","16651":"midIncome","16652":"midIncome","16653":"lowIncomeA","16654":"lowIncomeA","16655":"lowIncomeA","16656":"midIncome","16657":"lowIncomeB","16658":"lowIncomeB","16659":"lowIncomeA","16660":"lowIncomeB","16661":"lowIncomeA","16662":"lowIncomeB","16663":"lowIncomeB","16664":"lowIncomeB","16665":"lowIncomeB","16666":"lowIncomeB","16667":"lowIncomeA","16668":"lowIncomeA","16669":"lowIncomeB","16670":"lowIncomeA","16671":"lowIncomeA","16672":"lowIncomeA","16673":"lowIncomeB","16674":"lowIncomeB","16675":"lowIncomeA","16676":"lowIncomeA","16677":"lowIncomeB","16678":"lowIncomeA","16679":"lowIncomeA","16680":"lowIncomeA","16681":"lowIncomeA","16682":"lowIncomeA","16683":"lowIncomeA","16684":"lowIncomeA","16685":"lowIncomeA","16686":"lowIncomeB","16687":"lowIncomeB","16688":"lowIncomeB","16689":"lowIncomeB","16690":"lowIncomeA","16691":"lowIncomeB","16692":"lowIncomeB","16693":"midIncome","16694":"lowIncomeA","16695":"lowIncomeA","16696":"lowIncomeB","16697":"lowIncomeA","16698":"lowIncomeB","16699":"lowIncomeA","16700":"lowIncomeA","16701":"midIncome","16702":"lowIncomeB","16703":"lowIncomeB","16704":"lowIncomeA","16705":"lowIncomeA","16706":"lowIncomeA","16707":"lowIncomeA","16708":"lowIncomeA","16709":"lowIncomeA","16710":"lowIncomeA","16711":"lowIncomeB","16712":"lowIncomeB","16713":"lowIncomeA","16714":"lowIncomeA","16715":"lowIncomeA","16716":"lowIncomeA","16717":"lowIncomeA","16718":"midIncome","16719":"lowIncomeA","16720":"lowIncomeA","16721":"lowIncomeA","16722":"lowIncomeA","16723":"lowIncomeB","16724":"lowIncomeB","16725":"lowIncomeB","16726":"lowIncomeA","16727":"lowIncomeA","16728":"midIncome","16729":"lowIncomeA","16730":"lowIncomeB","16731":"midIncome","16732":"lowIncomeA","16733":"lowIncomeB","16734":"lowIncomeB","16735":"lowIncomeA","16736":"lowIncomeA","16737":"lowIncomeA","16738":"lowIncomeB","16739":"lowIncomeA","16740":"lowIncomeB","16741":"lowIncomeB","16742":"lowIncomeA","16743":"lowIncomeA","16744":"lowIncomeA","16745":"lowIncomeB","16746":"lowIncomeA","16747":"lowIncomeB","16748":"lowIncomeA","16749":"lowIncomeB","16750":"lowIncomeA","16751":"lowIncomeA","16752":"midIncome","16753":"lowIncomeA","16754":"lowIncomeB","16755":"lowIncomeA","16756":"lowIncomeA","16757":"lowIncomeA","16758":"lowIncomeA","16759":"lowIncomeA","16760":"midIncome","16761":"lowIncomeA","16762":"lowIncomeB","16763":"lowIncomeB","16764":"lowIncomeA","16765":"lowIncomeA","16766":"lowIncomeA","16767":"lowIncomeA","16768":"lowIncomeA","16769":"lowIncomeA","16770":"lowIncomeA","16771":"lowIncomeB","16772":"lowIncomeA","16773":"lowIncomeB","16774":"midIncome","16775":"lowIncomeB","16776":"midIncome","16777":"lowIncomeA","16778":"lowIncomeA","16779":"lowIncomeA","16780":"lowIncomeB","16781":"lowIncomeA","16782":"lowIncomeA","16783":"lowIncomeA","16784":"lowIncomeB","16785":"midIncome","16786":"lowIncomeA","16787":"lowIncomeA","16788":"midIncome","16789":"lowIncomeB","16790":"lowIncomeA","16791":"lowIncomeB","16792":"lowIncomeA","16793":"lowIncomeB","16794":"lowIncomeB","16795":"lowIncomeA","16796":"lowIncomeA","16797":"lowIncomeA","16798":"lowIncomeB","16799":"lowIncomeA","16800":"lowIncomeA","16801":"lowIncomeA","16802":"lowIncomeB","16803":"lowIncomeA","16804":"lowIncomeA","16805":"lowIncomeA","16806":"lowIncomeA","16807":"lowIncomeB","16808":"lowIncomeB","16809":"lowIncomeB","16810":"lowIncomeA","16811":"lowIncomeB","16812":"lowIncomeA","16813":"lowIncomeA","16814":"lowIncomeA","16815":"lowIncomeA","16816":"lowIncomeB","16817":"lowIncomeA","16818":"lowIncomeA","16819":"lowIncomeB","16820":"lowIncomeA","16821":"lowIncomeA","16822":"lowIncomeB","16823":"midIncome","16824":"lowIncomeA","16825":"lowIncomeB","16826":"lowIncomeA","16827":"lowIncomeB","16828":"lowIncomeB","16829":"lowIncomeB","16830":"lowIncomeA","16831":"lowIncomeB","16832":"lowIncomeB","16833":"lowIncomeA","16834":"lowIncomeA","16835":"lowIncomeA","16836":"midIncome","16837":"lowIncomeB","16838":"lowIncomeB","16839":"lowIncomeA","16840":"midIncome","16841":"lowIncomeA","16842":"midIncome","16843":"lowIncomeB","16844":"lowIncomeA","16845":"lowIncomeA","16846":"lowIncomeB","16847":"lowIncomeA","16848":"lowIncomeB","16849":"lowIncomeA","16850":"lowIncomeA","16851":"lowIncomeB","16852":"lowIncomeB","16853":"lowIncomeA","16854":"lowIncomeB","16855":"lowIncomeB","16856":"lowIncomeA","16857":"lowIncomeA","16858":"lowIncomeB","16859":"lowIncomeA","16860":"lowIncomeB","16861":"midIncome","16862":"lowIncomeB","16863":"lowIncomeA","16864":"lowIncomeA","16865":"lowIncomeA","16866":"lowIncomeA","16867":"lowIncomeA","16868":"midIncome","16869":"lowIncomeA","16870":"midIncome","16871":"lowIncomeB","16872":"midIncome","16873":"lowIncomeA","16874":"lowIncomeA","16875":"midIncome","16876":"lowIncomeB","16877":"lowIncomeA","16878":"lowIncomeB","16879":"lowIncomeA","16880":"lowIncomeA","16881":"lowIncomeA","16882":"midIncome","16883":"lowIncomeA","16884":"lowIncomeA","16885":"lowIncomeA","16886":"lowIncomeB","16887":"midIncome","16888":"lowIncomeA","16889":"lowIncomeA","16890":"lowIncomeA","16891":"lowIncomeA","16892":"midIncome","16893":"lowIncomeA","16894":"lowIncomeB","16895":"lowIncomeB","16896":"lowIncomeA","16897":"lowIncomeB","16898":"lowIncomeB","16899":"midIncome","16900":"lowIncomeA","16901":"lowIncomeA","16902":"lowIncomeB","16903":"lowIncomeA","16904":"lowIncomeB","16905":"midIncome","16906":"midIncome","16907":"midIncome","16908":"lowIncomeA","16909":"midIncome","16910":"lowIncomeA","16911":"lowIncomeA","16912":"lowIncomeA","16913":"lowIncomeB","16914":"lowIncomeA","16915":"lowIncomeA","16916":"lowIncomeA","16917":"lowIncomeB","16918":"midIncome","16919":"lowIncomeB","16920":"lowIncomeA","16921":"lowIncomeB","16922":"lowIncomeB","16923":"lowIncomeB","16924":"lowIncomeA","16925":"lowIncomeA","16926":"lowIncomeA","16927":"lowIncomeB","16928":"lowIncomeA","16929":"lowIncomeB","16930":"lowIncomeB","16931":"lowIncomeA","16932":"lowIncomeB","16933":"lowIncomeA","16934":"lowIncomeA","16935":"lowIncomeB","16936":"lowIncomeB","16937":"lowIncomeA","16938":"midIncome","16939":"lowIncomeB","16940":"midIncome","16941":"midIncome","16942":"lowIncomeB","16943":"lowIncomeB","16944":"lowIncomeB","16945":"lowIncomeA","16946":"lowIncomeA","16947":"lowIncomeA","16948":"lowIncomeB","16949":"lowIncomeB","16950":"lowIncomeB","16951":"lowIncomeB","16952":"lowIncomeA","16953":"lowIncomeB","16954":"lowIncomeB","16955":"lowIncomeB","16956":"lowIncomeA","16957":"lowIncomeA","16958":"lowIncomeA","16959":"lowIncomeA","16960":"lowIncomeA","16961":"lowIncomeB","16962":"lowIncomeB","16963":"lowIncomeA","16964":"midIncome","16965":"lowIncomeA","16966":"lowIncomeB","16967":"lowIncomeA","16968":"lowIncomeA","16969":"lowIncomeB","16970":"lowIncomeB","16971":"lowIncomeB","16972":"lowIncomeB","16973":"lowIncomeB","16974":"lowIncomeA","16975":"lowIncomeB","16976":"lowIncomeA","16977":"lowIncomeB","16978":"lowIncomeB","16979":"lowIncomeA","16980":"lowIncomeA","16981":"lowIncomeA","16982":"lowIncomeB","16983":"lowIncomeB","16984":"lowIncomeB","16985":"lowIncomeB","16986":"lowIncomeB","16987":"midIncome","16988":"lowIncomeB","16989":"lowIncomeB","16990":"lowIncomeA","16991":"lowIncomeB","16992":"lowIncomeB","16993":"lowIncomeB","16994":"lowIncomeA","16995":"lowIncomeA","16996":"lowIncomeB","16997":"lowIncomeA","16998":"midIncome","16999":"lowIncomeA","17000":"lowIncomeB","17001":"lowIncomeB","17002":"lowIncomeA","17003":"lowIncomeA","17004":"midIncome","17005":"lowIncomeA","17006":"lowIncomeA","17007":"lowIncomeA","17008":"lowIncomeA","17009":"lowIncomeA","17010":"midIncome","17011":"lowIncomeA","17012":"lowIncomeB","17013":"lowIncomeA","17014":"midIncome","17015":"lowIncomeA","17016":"midIncome","17017":"lowIncomeB","17018":"lowIncomeA","17019":"lowIncomeB","17020":"lowIncomeA","17021":"midIncome","17022":"lowIncomeA","17023":"lowIncomeA","17024":"lowIncomeB","17025":"lowIncomeB","17026":"lowIncomeA","17027":"midIncome","17028":"lowIncomeB","17029":"lowIncomeB","17030":"lowIncomeB","17031":"lowIncomeB","17032":"midIncome","17033":"lowIncomeB","17034":"lowIncomeA","17035":"lowIncomeB","17036":"lowIncomeA","17037":"lowIncomeB","17038":"lowIncomeA","17039":"lowIncomeA","17040":"lowIncomeA","17041":"lowIncomeB","17042":"lowIncomeA","17043":"lowIncomeA","17044":"lowIncomeA","17045":"lowIncomeB","17046":"lowIncomeA","17047":"lowIncomeB","17048":"lowIncomeB","17049":"midIncome","17050":"lowIncomeB","17051":"lowIncomeA","17052":"lowIncomeB","17053":"lowIncomeA","17054":"lowIncomeB","17055":"lowIncomeA","17056":"lowIncomeA","17057":"midIncome","17058":"lowIncomeA","17059":"lowIncomeA","17060":"lowIncomeB","17061":"lowIncomeA","17062":"lowIncomeB","17063":"lowIncomeB","17064":"lowIncomeA","17065":"lowIncomeA","17066":"lowIncomeA","17067":"lowIncomeA","17068":"lowIncomeA","17069":"lowIncomeB","17070":"lowIncomeB","17071":"lowIncomeA","17072":"lowIncomeB","17073":"lowIncomeB","17074":"lowIncomeB","17075":"lowIncomeA","17076":"lowIncomeA","17077":"lowIncomeB","17078":"lowIncomeB","17079":"lowIncomeA","17080":"lowIncomeB","17081":"lowIncomeB","17082":"lowIncomeB","17083":"lowIncomeA","17084":"lowIncomeB","17085":"lowIncomeA","17086":"lowIncomeB","17087":"lowIncomeA","17088":"lowIncomeA","17089":"lowIncomeB","17090":"lowIncomeB","17091":"lowIncomeA","17092":"lowIncomeA","17093":"lowIncomeB","17094":"lowIncomeA","17095":"lowIncomeA","17096":"lowIncomeB","17097":"lowIncomeA","17098":"lowIncomeA","17099":"lowIncomeA","17100":"lowIncomeA","17101":"lowIncomeB","17102":"lowIncomeA","17103":"lowIncomeB","17104":"lowIncomeB","17105":"lowIncomeB","17106":"lowIncomeB","17107":"lowIncomeB","17108":"lowIncomeB","17109":"lowIncomeB","17110":"lowIncomeA","17111":"lowIncomeA","17112":"lowIncomeB","17113":"lowIncomeB","17114":"lowIncomeA","17115":"lowIncomeB","17116":"lowIncomeA","17117":"lowIncomeA","17118":"lowIncomeB","17119":"lowIncomeA","17120":"lowIncomeA","17121":"lowIncomeA","17122":"lowIncomeA","17123":"lowIncomeA","17124":"lowIncomeB","17125":"midIncome","17126":"lowIncomeB","17127":"lowIncomeA","17128":"lowIncomeB","17129":"midIncome","17130":"lowIncomeA","17131":"lowIncomeB","17132":"lowIncomeB","17133":"lowIncomeB","17134":"lowIncomeB","17135":"lowIncomeB","17136":"lowIncomeB","17137":"lowIncomeB","17138":"lowIncomeA","17139":"lowIncomeB","17140":"lowIncomeB","17141":"lowIncomeB","17142":"lowIncomeA","17143":"lowIncomeA","17144":"lowIncomeB","17145":"midIncome","17146":"lowIncomeA","17147":"lowIncomeB","17148":"lowIncomeB","17149":"lowIncomeA","17150":"lowIncomeA","17151":"lowIncomeA","17152":"lowIncomeB","17153":"lowIncomeB","17154":"lowIncomeB","17155":"lowIncomeA","17156":"lowIncomeB","17157":"lowIncomeA","17158":"lowIncomeA","17159":"lowIncomeA","17160":"lowIncomeA","17161":"lowIncomeB","17162":"lowIncomeA","17163":"lowIncomeB","17164":"lowIncomeA","17165":"midIncome","17166":"lowIncomeA","17167":"lowIncomeA","17168":"lowIncomeA","17169":"lowIncomeA","17170":"lowIncomeA","17171":"lowIncomeA","17172":"lowIncomeA","17173":"lowIncomeA","17174":"lowIncomeA","17175":"lowIncomeA","17176":"lowIncomeB","17177":"lowIncomeB","17178":"lowIncomeA","17179":"lowIncomeA","17180":"lowIncomeA","17181":"lowIncomeA","17182":"lowIncomeB","17183":"lowIncomeA","17184":"lowIncomeB","17185":"lowIncomeB","17186":"lowIncomeA","17187":"lowIncomeA","17188":"lowIncomeA","17189":"lowIncomeA","17190":"lowIncomeA","17191":"lowIncomeA","17192":"lowIncomeA","17193":"lowIncomeB","17194":"lowIncomeB","17195":"lowIncomeB","17196":"lowIncomeB","17197":"lowIncomeA","17198":"lowIncomeA","17199":"lowIncomeB","17200":"lowIncomeB","17201":"lowIncomeA","17202":"lowIncomeA","17203":"lowIncomeB","17204":"lowIncomeA","17205":"lowIncomeB","17206":"lowIncomeB","17207":"midIncome","17208":"lowIncomeB","17209":"lowIncomeB","17210":"lowIncomeA","17211":"midIncome","17212":"lowIncomeB","17213":"lowIncomeB","17214":"lowIncomeA","17215":"lowIncomeB","17216":"lowIncomeB","17217":"lowIncomeA","17218":"lowIncomeA","17219":"lowIncomeB","17220":"lowIncomeA","17221":"lowIncomeB","17222":"midIncome","17223":"lowIncomeB","17224":"lowIncomeA","17225":"lowIncomeB","17226":"lowIncomeA","17227":"lowIncomeB","17228":"lowIncomeA","17229":"lowIncomeB","17230":"lowIncomeA","17231":"lowIncomeA","17232":"lowIncomeB","17233":"lowIncomeA","17234":"lowIncomeA","17235":"lowIncomeB","17236":"lowIncomeA","17237":"lowIncomeA","17238":"lowIncomeB","17239":"lowIncomeA","17240":"lowIncomeA","17241":"midIncome","17242":"lowIncomeA","17243":"lowIncomeA","17244":"lowIncomeA","17245":"lowIncomeB","17246":"lowIncomeB","17247":"lowIncomeB","17248":"lowIncomeA","17249":"lowIncomeB","17250":"lowIncomeA","17251":"lowIncomeB","17252":"lowIncomeB","17253":"lowIncomeB","17254":"lowIncomeA","17255":"lowIncomeB","17256":"lowIncomeA","17257":"lowIncomeA","17258":"lowIncomeB","17259":"lowIncomeB","17260":"lowIncomeA","17261":"lowIncomeB","17262":"lowIncomeA","17263":"lowIncomeA","17264":"lowIncomeB","17265":"lowIncomeB","17266":"lowIncomeB","17267":"lowIncomeA","17268":"lowIncomeA","17269":"lowIncomeB","17270":"lowIncomeA","17271":"midIncome","17272":"lowIncomeA","17273":"lowIncomeA","17274":"lowIncomeB","17275":"lowIncomeB","17276":"lowIncomeB","17277":"lowIncomeA","17278":"lowIncomeB","17279":"lowIncomeA","17280":"lowIncomeA","17281":"midIncome","17282":"lowIncomeB","17283":"lowIncomeB","17284":"midIncome","17285":"lowIncomeA","17286":"lowIncomeB","17287":"lowIncomeB","17288":"lowIncomeA","17289":"lowIncomeA","17290":"midIncome","17291":"lowIncomeB","17292":"lowIncomeB","17293":"lowIncomeA","17294":"lowIncomeB","17295":"lowIncomeB","17296":"lowIncomeB","17297":"lowIncomeA","17298":"midIncome","17299":"lowIncomeB","17300":"lowIncomeB","17301":"lowIncomeB","17302":"midIncome","17303":"lowIncomeA","17304":"lowIncomeA","17305":"lowIncomeA","17306":"lowIncomeA","17307":"lowIncomeB","17308":"lowIncomeB","17309":"lowIncomeA","17310":"lowIncomeB","17311":"lowIncomeB","17312":"lowIncomeA","17313":"lowIncomeA","17314":"lowIncomeA","17315":"lowIncomeA","17316":"lowIncomeA","17317":"lowIncomeA","17318":"lowIncomeA","17319":"lowIncomeA","17320":"lowIncomeB","17321":"lowIncomeB","17322":"midIncome","17323":"lowIncomeA","17324":"lowIncomeA","17325":"lowIncomeB","17326":"lowIncomeA","17327":"lowIncomeA","17328":"lowIncomeB","17329":"lowIncomeA","17330":"lowIncomeA","17331":"lowIncomeA","17332":"lowIncomeB","17333":"lowIncomeA","17334":"midIncome","17335":"lowIncomeA","17336":"midIncome","17337":"lowIncomeB","17338":"lowIncomeA","17339":"lowIncomeA","17340":"lowIncomeA","17341":"lowIncomeA","17342":"lowIncomeA","17343":"midIncome","17344":"lowIncomeA","17345":"lowIncomeB","17346":"lowIncomeA","17347":"lowIncomeB","17348":"lowIncomeA","17349":"lowIncomeA","17350":"lowIncomeB","17351":"lowIncomeB","17352":"lowIncomeA","17353":"lowIncomeA","17354":"lowIncomeB","17355":"lowIncomeA","17356":"lowIncomeA","17357":"lowIncomeA","17358":"lowIncomeB","17359":"lowIncomeB","17360":"midIncome","17361":"lowIncomeA","17362":"lowIncomeB","17363":"midIncome","17364":"lowIncomeA","17365":"lowIncomeA","17366":"lowIncomeA","17367":"lowIncomeB","17368":"lowIncomeA","17369":"lowIncomeB","17370":"lowIncomeB","17371":"lowIncomeB","17372":"lowIncomeB","17373":"lowIncomeB","17374":"lowIncomeB","17375":"lowIncomeA","17376":"lowIncomeA","17377":"lowIncomeB","17378":"lowIncomeA","17379":"lowIncomeA","17380":"lowIncomeB","17381":"midIncome","17382":"lowIncomeB","17383":"lowIncomeA","17384":"lowIncomeB","17385":"lowIncomeB","17386":"lowIncomeB","17387":"lowIncomeA","17388":"lowIncomeB","17389":"lowIncomeB","17390":"lowIncomeA","17391":"lowIncomeB","17392":"lowIncomeA","17393":"lowIncomeA","17394":"lowIncomeA","17395":"lowIncomeA","17396":"lowIncomeA","17397":"lowIncomeB","17398":"lowIncomeB","17399":"lowIncomeB","17400":"midIncome","17401":"lowIncomeB","17402":"lowIncomeA","17403":"lowIncomeB","17404":"midIncome","17405":"lowIncomeB","17406":"lowIncomeA","17407":"lowIncomeA","17408":"lowIncomeB","17409":"lowIncomeA","17410":"lowIncomeA","17411":"midIncome","17412":"lowIncomeA","17413":"lowIncomeA","17414":"lowIncomeA","17415":"lowIncomeA","17416":"lowIncomeA","17417":"lowIncomeB","17418":"lowIncomeA","17419":"lowIncomeB","17420":"lowIncomeA","17421":"midIncome","17422":"lowIncomeA","17423":"lowIncomeA","17424":"lowIncomeA","17425":"lowIncomeA","17426":"lowIncomeA","17427":"lowIncomeA","17428":"lowIncomeB","17429":"lowIncomeB","17430":"lowIncomeB","17431":"midIncome","17432":"lowIncomeA","17433":"lowIncomeB","17434":"lowIncomeA","17435":"lowIncomeA","17436":"lowIncomeB","17437":"lowIncomeA","17438":"lowIncomeA","17439":"lowIncomeA","17440":"lowIncomeB","17441":"lowIncomeA","17442":"lowIncomeB","17443":"lowIncomeA","17444":"lowIncomeA","17445":"lowIncomeB","17446":"lowIncomeB","17447":"lowIncomeA","17448":"lowIncomeA","17449":"midIncome","17450":"midIncome","17451":"lowIncomeA","17452":"lowIncomeB","17453":"lowIncomeB","17454":"midIncome","17455":"midIncome","17456":"midIncome","17457":"midIncome","17458":"midIncome","17459":"midIncome","17460":"lowIncomeB","17461":"lowIncomeA","17462":"lowIncomeA","17463":"lowIncomeA","17464":"lowIncomeB","17465":"midIncome","17466":"lowIncomeA","17467":"midIncome","17468":"lowIncomeA","17469":"lowIncomeA","17470":"lowIncomeA","17471":"lowIncomeB","17472":"lowIncomeB","17473":"lowIncomeB","17474":"lowIncomeA","17475":"lowIncomeA","17476":"lowIncomeB","17477":"lowIncomeA","17478":"lowIncomeA","17479":"lowIncomeA","17480":"lowIncomeA","17481":"lowIncomeB","17482":"lowIncomeA","17483":"lowIncomeB","17484":"lowIncomeA","17485":"lowIncomeB","17486":"lowIncomeB","17487":"lowIncomeA","17488":"lowIncomeB","17489":"lowIncomeA","17490":"lowIncomeB","17491":"lowIncomeA","17492":"lowIncomeB","17493":"lowIncomeB","17494":"lowIncomeB","17495":"lowIncomeB","17496":"midIncome","17497":"lowIncomeA","17498":"lowIncomeB","17499":"lowIncomeB","17500":"lowIncomeB","17501":"lowIncomeA","17502":"lowIncomeA","17503":"lowIncomeB","17504":"lowIncomeB","17505":"lowIncomeB","17506":"lowIncomeB","17507":"lowIncomeA","17508":"lowIncomeB","17509":"midIncome","17510":"lowIncomeB","17511":"midIncome","17512":"lowIncomeB","17513":"lowIncomeB","17514":"midIncome","17515":"lowIncomeA","17516":"lowIncomeA","17517":"lowIncomeA","17518":"lowIncomeA","17519":"lowIncomeB","17520":"lowIncomeA","17521":"lowIncomeB","17522":"lowIncomeB","17523":"lowIncomeA","17524":"lowIncomeB","17525":"lowIncomeB","17526":"lowIncomeA","17527":"lowIncomeA","17528":"lowIncomeB","17529":"lowIncomeA","17530":"lowIncomeA","17531":"lowIncomeA","17532":"lowIncomeB","17533":"lowIncomeB","17534":"lowIncomeB","17535":"lowIncomeA","17536":"midIncome","17537":"lowIncomeA","17538":"lowIncomeB","17539":"lowIncomeA","17540":"lowIncomeA","17541":"lowIncomeA","17542":"lowIncomeA","17543":"lowIncomeA","17544":"lowIncomeA","17545":"lowIncomeA","17546":"lowIncomeB","17547":"lowIncomeB","17548":"lowIncomeA","17549":"lowIncomeA","17550":"lowIncomeA","17551":"lowIncomeA","17552":"midIncome","17553":"lowIncomeB","17554":"lowIncomeB","17555":"lowIncomeB","17556":"lowIncomeA","17557":"lowIncomeB","17558":"lowIncomeA","17559":"lowIncomeA","17560":"lowIncomeA","17561":"lowIncomeB","17562":"lowIncomeA","17563":"lowIncomeB","17564":"lowIncomeB","17565":"lowIncomeA","17566":"lowIncomeA","17567":"lowIncomeA","17568":"lowIncomeB","17569":"lowIncomeB","17570":"lowIncomeB","17571":"lowIncomeB","17572":"lowIncomeB","17573":"lowIncomeA","17574":"lowIncomeB","17575":"lowIncomeB","17576":"lowIncomeA","17577":"lowIncomeA","17578":"lowIncomeB","17579":"lowIncomeB","17580":"lowIncomeA","17581":"lowIncomeA","17582":"lowIncomeA","17583":"lowIncomeA","17584":"lowIncomeA","17585":"midIncome","17586":"lowIncomeB","17587":"lowIncomeB","17588":"lowIncomeA","17589":"lowIncomeB","17590":"lowIncomeB","17591":"lowIncomeA","17592":"lowIncomeB","17593":"lowIncomeA","17594":"lowIncomeB","17595":"lowIncomeA","17596":"lowIncomeB","17597":"lowIncomeB","17598":"lowIncomeB","17599":"lowIncomeA","17600":"midIncome","17601":"lowIncomeA","17602":"lowIncomeB","17603":"lowIncomeA","17604":"lowIncomeB","17605":"lowIncomeB","17606":"lowIncomeB","17607":"lowIncomeA","17608":"lowIncomeA","17609":"lowIncomeA","17610":"lowIncomeA","17611":"lowIncomeB","17612":"lowIncomeB","17613":"lowIncomeA","17614":"lowIncomeB","17615":"lowIncomeA","17616":"lowIncomeB","17617":"lowIncomeA","17618":"lowIncomeA","17619":"lowIncomeA","17620":"lowIncomeB","17621":"lowIncomeA","17622":"lowIncomeB","17623":"lowIncomeB","17624":"lowIncomeA","17625":"lowIncomeA","17626":"lowIncomeB","17627":"lowIncomeA","17628":"lowIncomeA","17629":"lowIncomeA","17630":"lowIncomeA","17631":"lowIncomeB","17632":"lowIncomeA","17633":"lowIncomeB","17634":"lowIncomeA","17635":"lowIncomeA","17636":"lowIncomeB","17637":"lowIncomeA","17638":"lowIncomeA","17639":"midIncome","17640":"lowIncomeA","17641":"lowIncomeA","17642":"lowIncomeA","17643":"lowIncomeA","17644":"lowIncomeA","17645":"lowIncomeA","17646":"lowIncomeA","17647":"lowIncomeA","17648":"lowIncomeA","17649":"lowIncomeB","17650":"lowIncomeB","17651":"lowIncomeA","17652":"lowIncomeB","17653":"lowIncomeA","17654":"lowIncomeB","17655":"lowIncomeB","17656":"lowIncomeA","17657":"lowIncomeB","17658":"lowIncomeB","17659":"lowIncomeA","17660":"lowIncomeA","17661":"lowIncomeA","17662":"lowIncomeB","17663":"lowIncomeA","17664":"lowIncomeA","17665":"lowIncomeA","17666":"lowIncomeA","17667":"lowIncomeA","17668":"lowIncomeB","17669":"lowIncomeB","17670":"lowIncomeB","17671":"lowIncomeA","17672":"lowIncomeB","17673":"lowIncomeB","17674":"lowIncomeA","17675":"lowIncomeB","17676":"lowIncomeB","17677":"lowIncomeA","17678":"lowIncomeA","17679":"lowIncomeA","17680":"lowIncomeA","17681":"midIncome","17682":"lowIncomeA","17683":"lowIncomeA","17684":"midIncome","17685":"lowIncomeB","17686":"lowIncomeA","17687":"lowIncomeB","17688":"lowIncomeA","17689":"lowIncomeB","17690":"lowIncomeA","17691":"lowIncomeB","17692":"lowIncomeA","17693":"lowIncomeA","17694":"lowIncomeB","17695":"lowIncomeB","17696":"lowIncomeA","17697":"lowIncomeA","17698":"lowIncomeB","17699":"lowIncomeA","17700":"lowIncomeB","17701":"lowIncomeB","17702":"lowIncomeA","17703":"lowIncomeA","17704":"lowIncomeA","17705":"lowIncomeA","17706":"lowIncomeB","17707":"lowIncomeA","17708":"midIncome","17709":"lowIncomeA","17710":"lowIncomeB","17711":"lowIncomeB","17712":"lowIncomeA","17713":"lowIncomeA","17714":"lowIncomeA","17715":"lowIncomeA","17716":"lowIncomeA","17717":"lowIncomeA","17718":"lowIncomeB","17719":"midIncome","17720":"midIncome","17721":"lowIncomeB","17722":"lowIncomeA","17723":"lowIncomeB","17724":"lowIncomeA","17725":"lowIncomeA","17726":"midIncome","17727":"lowIncomeB","17728":"lowIncomeA","17729":"lowIncomeB","17730":"midIncome","17731":"midIncome","17732":"lowIncomeA","17733":"lowIncomeA","17734":"lowIncomeB","17735":"lowIncomeA","17736":"lowIncomeA","17737":"lowIncomeA","17738":"lowIncomeB","17739":"lowIncomeA","17740":"lowIncomeA","17741":"lowIncomeA","17742":"lowIncomeA","17743":"lowIncomeA","17744":"lowIncomeA","17745":"lowIncomeA","17746":"midIncome","17747":"lowIncomeA","17748":"lowIncomeB","17749":"lowIncomeA","17750":"lowIncomeB","17751":"lowIncomeB","17752":"lowIncomeA","17753":"lowIncomeA","17754":"midIncome","17755":"lowIncomeA","17756":"lowIncomeA","17757":"lowIncomeA","17758":"lowIncomeA","17759":"lowIncomeA","17760":"lowIncomeA","17761":"lowIncomeA","17762":"lowIncomeB","17763":"midIncome","17764":"midIncome","17765":"midIncome","17766":"lowIncomeB","17767":"lowIncomeA","17768":"lowIncomeB","17769":"midIncome","17770":"lowIncomeB","17771":"lowIncomeB","17772":"lowIncomeA","17773":"lowIncomeA","17774":"lowIncomeA","17775":"lowIncomeA","17776":"lowIncomeB","17777":"lowIncomeB","17778":"lowIncomeA","17779":"lowIncomeA","17780":"lowIncomeA","17781":"lowIncomeA","17782":"lowIncomeA","17783":"lowIncomeA","17784":"lowIncomeA","17785":"lowIncomeB","17786":"lowIncomeA","17787":"lowIncomeB","17788":"lowIncomeB","17789":"midIncome","17790":"lowIncomeA","17791":"lowIncomeA","17792":"lowIncomeA","17793":"lowIncomeA","17794":"lowIncomeA","17795":"lowIncomeA","17796":"lowIncomeB","17797":"lowIncomeA","17798":"lowIncomeB","17799":"lowIncomeA","17800":"lowIncomeA","17801":"lowIncomeB","17802":"lowIncomeA","17803":"lowIncomeB","17804":"lowIncomeA","17805":"lowIncomeB","17806":"lowIncomeA","17807":"lowIncomeA","17808":"lowIncomeA","17809":"lowIncomeA","17810":"lowIncomeA","17811":"lowIncomeB","17812":"lowIncomeA","17813":"lowIncomeA","17814":"lowIncomeA","17815":"lowIncomeB","17816":"lowIncomeA","17817":"midIncome","17818":"lowIncomeA","17819":"lowIncomeA","17820":"lowIncomeB","17821":"lowIncomeA","17822":"lowIncomeB","17823":"lowIncomeB","17824":"lowIncomeA","17825":"lowIncomeA","17826":"lowIncomeB","17827":"lowIncomeB","17828":"lowIncomeA","17829":"lowIncomeA","17830":"lowIncomeB","17831":"lowIncomeA","17832":"lowIncomeB","17833":"midIncome","17834":"lowIncomeA","17835":"lowIncomeB","17836":"lowIncomeB","17837":"lowIncomeA","17838":"lowIncomeB","17839":"lowIncomeB","17840":"lowIncomeB","17841":"midIncome","17842":"lowIncomeA","17843":"lowIncomeB","17844":"lowIncomeA","17845":"lowIncomeB","17846":"lowIncomeA","17847":"lowIncomeA","17848":"lowIncomeA","17849":"lowIncomeB","17850":"lowIncomeA","17851":"lowIncomeB","17852":"lowIncomeB","17853":"lowIncomeA","17854":"lowIncomeA","17855":"lowIncomeA","17856":"lowIncomeA","17857":"lowIncomeA","17858":"lowIncomeB","17859":"lowIncomeB","17860":"lowIncomeA","17861":"lowIncomeB","17862":"midIncome","17863":"lowIncomeB","17864":"lowIncomeA","17865":"lowIncomeA","17866":"lowIncomeA","17867":"lowIncomeA","17868":"lowIncomeA","17869":"midIncome","17870":"lowIncomeB","17871":"lowIncomeB","17872":"lowIncomeA","17873":"lowIncomeA","17874":"lowIncomeA","17875":"lowIncomeA","17876":"lowIncomeA","17877":"lowIncomeB","17878":"lowIncomeA","17879":"lowIncomeB","17880":"lowIncomeB","17881":"lowIncomeB","17882":"lowIncomeA","17883":"lowIncomeB","17884":"lowIncomeB","17885":"lowIncomeB","17886":"lowIncomeA","17887":"lowIncomeA","17888":"lowIncomeA","17889":"lowIncomeA","17890":"lowIncomeB","17891":"lowIncomeA","17892":"lowIncomeA","17893":"midIncome","17894":"lowIncomeA","17895":"lowIncomeB","17896":"lowIncomeB","17897":"lowIncomeA","17898":"lowIncomeA","17899":"lowIncomeB","17900":"lowIncomeB","17901":"lowIncomeA","17902":"lowIncomeB","17903":"lowIncomeB","17904":"lowIncomeB","17905":"lowIncomeA","17906":"lowIncomeB","17907":"lowIncomeB","17908":"lowIncomeA","17909":"lowIncomeA","17910":"lowIncomeA","17911":"lowIncomeB","17912":"lowIncomeA","17913":"lowIncomeB","17914":"midIncome","17915":"lowIncomeA","17916":"lowIncomeB","17917":"lowIncomeA","17918":"lowIncomeB","17919":"lowIncomeA","17920":"lowIncomeB","17921":"lowIncomeA","17922":"lowIncomeB","17923":"lowIncomeA","17924":"lowIncomeB","17925":"midIncome","17926":"lowIncomeA","17927":"lowIncomeB","17928":"lowIncomeB","17929":"midIncome","17930":"lowIncomeA","17931":"lowIncomeB","17932":"lowIncomeA","17933":"lowIncomeB","17934":"lowIncomeB","17935":"lowIncomeB","17936":"lowIncomeA","17937":"lowIncomeA","17938":"midIncome","17939":"lowIncomeA","17940":"lowIncomeB","17941":"lowIncomeA","17942":"lowIncomeA","17943":"lowIncomeA","17944":"lowIncomeB","17945":"midIncome","17946":"lowIncomeB","17947":"lowIncomeA","17948":"lowIncomeA","17949":"lowIncomeB","17950":"lowIncomeB","17951":"lowIncomeB","17952":"lowIncomeA","17953":"lowIncomeB","17954":"lowIncomeA","17955":"lowIncomeB","17956":"midIncome","17957":"midIncome","17958":"lowIncomeB","17959":"lowIncomeA","17960":"lowIncomeB","17961":"lowIncomeA","17962":"lowIncomeA","17963":"lowIncomeB","17964":"lowIncomeB","17965":"lowIncomeA","17966":"lowIncomeA","17967":"lowIncomeA","17968":"lowIncomeB","17969":"lowIncomeA","17970":"lowIncomeB","17971":"lowIncomeA","17972":"lowIncomeB","17973":"midIncome","17974":"lowIncomeA","17975":"lowIncomeA","17976":"lowIncomeA","17977":"lowIncomeA","17978":"lowIncomeA","17979":"lowIncomeA","17980":"lowIncomeA","17981":"lowIncomeB","17982":"lowIncomeA","17983":"lowIncomeA","17984":"lowIncomeA","17985":"lowIncomeB","17986":"lowIncomeB","17987":"midIncome","17988":"lowIncomeB","17989":"midIncome","17990":"midIncome","17991":"lowIncomeB","17992":"lowIncomeB","17993":"lowIncomeB","17994":"lowIncomeB","17995":"lowIncomeA","17996":"lowIncomeB","17997":"lowIncomeA","17998":"lowIncomeB","17999":"lowIncomeB","18000":"lowIncomeB","18001":"lowIncomeB","18002":"lowIncomeB","18003":"lowIncomeA","18004":"lowIncomeB","18005":"lowIncomeA","18006":"lowIncomeA","18007":"lowIncomeA","18008":"lowIncomeB","18009":"lowIncomeA","18010":"lowIncomeB","18011":"lowIncomeB","18012":"midIncome","18013":"lowIncomeB","18014":"lowIncomeB","18015":"lowIncomeB","18016":"midIncome","18017":"midIncome","18018":"lowIncomeB","18019":"lowIncomeB","18020":"lowIncomeA","18021":"lowIncomeA","18022":"lowIncomeB","18023":"lowIncomeA","18024":"lowIncomeA","18025":"lowIncomeA","18026":"lowIncomeB","18027":"lowIncomeB","18028":"lowIncomeA","18029":"lowIncomeB","18030":"lowIncomeB","18031":"lowIncomeA","18032":"lowIncomeB","18033":"lowIncomeA","18034":"lowIncomeA","18035":"midIncome","18036":"midIncome","18037":"lowIncomeB","18038":"midIncome","18039":"lowIncomeB","18040":"lowIncomeA","18041":"lowIncomeB","18042":"midIncome","18043":"lowIncomeB","18044":"midIncome","18045":"lowIncomeA","18046":"lowIncomeA","18047":"midIncome","18048":"lowIncomeA","18049":"lowIncomeB","18050":"lowIncomeA","18051":"lowIncomeB","18052":"lowIncomeA","18053":"lowIncomeA","18054":"lowIncomeA","18055":"lowIncomeA","18056":"lowIncomeB","18057":"lowIncomeB","18058":"lowIncomeA","18059":"lowIncomeA","18060":"lowIncomeA","18061":"lowIncomeB","18062":"midIncome","18063":"lowIncomeA","18064":"lowIncomeB","18065":"lowIncomeB","18066":"lowIncomeA","18067":"lowIncomeB","18068":"lowIncomeA","18069":"lowIncomeA","18070":"lowIncomeA","18071":"lowIncomeA","18072":"lowIncomeB","18073":"lowIncomeA","18074":"lowIncomeB","18075":"lowIncomeA","18076":"lowIncomeA","18077":"lowIncomeA","18078":"lowIncomeB","18079":"lowIncomeA","18080":"lowIncomeB","18081":"lowIncomeA","18082":"lowIncomeA","18083":"lowIncomeA","18084":"lowIncomeA","18085":"lowIncomeB","18086":"lowIncomeB","18087":"lowIncomeA","18088":"lowIncomeA","18089":"lowIncomeA","18090":"lowIncomeB","18091":"midIncome","18092":"lowIncomeA","18093":"lowIncomeB","18094":"midIncome","18095":"lowIncomeA","18096":"lowIncomeB","18097":"midIncome","18098":"lowIncomeA","18099":"lowIncomeB","18100":"midIncome","18101":"lowIncomeB","18102":"lowIncomeB","18103":"lowIncomeA","18104":"lowIncomeA","18105":"lowIncomeA","18106":"lowIncomeB","18107":"midIncome","18108":"lowIncomeA","18109":"lowIncomeA","18110":"lowIncomeA","18111":"lowIncomeA","18112":"lowIncomeA","18113":"lowIncomeA","18114":"lowIncomeA","18115":"lowIncomeA","18116":"lowIncomeA","18117":"lowIncomeB","18118":"lowIncomeB","18119":"midIncome","18120":"lowIncomeB","18121":"lowIncomeA","18122":"lowIncomeB","18123":"lowIncomeB","18124":"lowIncomeA","18125":"midIncome","18126":"lowIncomeB","18127":"lowIncomeB","18128":"lowIncomeB","18129":"lowIncomeA","18130":"lowIncomeA","18131":"lowIncomeA","18132":"lowIncomeB","18133":"lowIncomeA","18134":"lowIncomeB","18135":"lowIncomeB","18136":"lowIncomeA","18137":"lowIncomeA","18138":"lowIncomeA","18139":"lowIncomeB","18140":"lowIncomeB","18141":"lowIncomeA","18142":"lowIncomeB","18143":"lowIncomeA","18144":"lowIncomeA","18145":"lowIncomeA","18146":"lowIncomeB","18147":"lowIncomeA","18148":"lowIncomeA","18149":"lowIncomeB","18150":"lowIncomeA","18151":"lowIncomeA","18152":"midIncome","18153":"lowIncomeA","18154":"lowIncomeB","18155":"lowIncomeB","18156":"lowIncomeA","18157":"lowIncomeB","18158":"midIncome","18159":"lowIncomeB","18160":"midIncome","18161":"lowIncomeA","18162":"lowIncomeB","18163":"midIncome","18164":"lowIncomeA","18165":"lowIncomeB","18166":"lowIncomeA","18167":"lowIncomeA","18168":"lowIncomeB","18169":"lowIncomeA","18170":"lowIncomeA","18171":"midIncome","18172":"lowIncomeB","18173":"lowIncomeB","18174":"lowIncomeB","18175":"lowIncomeA","18176":"lowIncomeB","18177":"midIncome","18178":"lowIncomeB","18179":"lowIncomeB","18180":"lowIncomeA","18181":"lowIncomeB","18182":"lowIncomeB","18183":"lowIncomeA","18184":"lowIncomeA","18185":"lowIncomeA","18186":"lowIncomeA","18187":"lowIncomeB","18188":"lowIncomeB","18189":"lowIncomeB","18190":"lowIncomeB","18191":"lowIncomeB","18192":"lowIncomeB","18193":"lowIncomeA","18194":"lowIncomeA","18195":"lowIncomeA","18196":"lowIncomeB","18197":"lowIncomeB","18198":"lowIncomeA","18199":"lowIncomeA","18200":"lowIncomeB","18201":"lowIncomeB","18202":"lowIncomeA","18203":"lowIncomeA","18204":"lowIncomeA","18205":"lowIncomeB","18206":"lowIncomeA","18207":"lowIncomeB","18208":"lowIncomeB","18209":"lowIncomeA","18210":"lowIncomeA","18211":"lowIncomeA","18212":"lowIncomeB","18213":"lowIncomeA","18214":"midIncome","18215":"lowIncomeA","18216":"lowIncomeA","18217":"lowIncomeB","18218":"lowIncomeB","18219":"midIncome","18220":"lowIncomeB","18221":"midIncome","18222":"lowIncomeA","18223":"lowIncomeA","18224":"lowIncomeB","18225":"lowIncomeA","18226":"midIncome","18227":"lowIncomeA","18228":"midIncome","18229":"lowIncomeB","18230":"lowIncomeA","18231":"lowIncomeA","18232":"lowIncomeB","18233":"lowIncomeA","18234":"midIncome","18235":"midIncome","18236":"lowIncomeA","18237":"midIncome","18238":"lowIncomeA","18239":"midIncome","18240":"lowIncomeB","18241":"lowIncomeB","18242":"lowIncomeB","18243":"lowIncomeB","18244":"lowIncomeA","18245":"midIncome","18246":"lowIncomeB","18247":"lowIncomeB","18248":"lowIncomeA","18249":"lowIncomeB","18250":"lowIncomeB","18251":"midIncome","18252":"lowIncomeA","18253":"lowIncomeA","18254":"lowIncomeA","18255":"lowIncomeA","18256":"midIncome","18257":"lowIncomeA","18258":"lowIncomeB","18259":"lowIncomeA","18260":"lowIncomeB","18261":"lowIncomeA","18262":"lowIncomeA","18263":"lowIncomeA","18264":"lowIncomeB","18265":"lowIncomeA","18266":"midIncome","18267":"midIncome","18268":"lowIncomeB","18269":"lowIncomeB","18270":"lowIncomeA","18271":"lowIncomeA","18272":"lowIncomeA","18273":"lowIncomeB","18274":"lowIncomeA","18275":"lowIncomeB","18276":"lowIncomeA","18277":"lowIncomeB","18278":"lowIncomeB","18279":"lowIncomeB","18280":"lowIncomeA","18281":"lowIncomeA","18282":"lowIncomeB","18283":"lowIncomeA","18284":"lowIncomeA","18285":"lowIncomeB","18286":"lowIncomeA","18287":"lowIncomeA","18288":"lowIncomeA","18289":"lowIncomeB","18290":"lowIncomeA","18291":"lowIncomeB","18292":"lowIncomeA","18293":"lowIncomeA","18294":"lowIncomeB","18295":"lowIncomeA","18296":"midIncome","18297":"lowIncomeA","18298":"midIncome","18299":"lowIncomeB","18300":"lowIncomeA","18301":"lowIncomeB","18302":"lowIncomeB","18303":"lowIncomeA","18304":"lowIncomeA","18305":"lowIncomeA","18306":"midIncome","18307":"midIncome","18308":"lowIncomeB","18309":"lowIncomeB","18310":"lowIncomeB","18311":"lowIncomeB","18312":"lowIncomeA","18313":"lowIncomeA","18314":"lowIncomeB","18315":"lowIncomeB","18316":"lowIncomeA","18317":"lowIncomeA","18318":"lowIncomeA","18319":"lowIncomeB","18320":"lowIncomeB","18321":"lowIncomeA","18322":"lowIncomeA","18323":"lowIncomeA","18324":"lowIncomeA","18325":"lowIncomeA","18326":"lowIncomeA","18327":"lowIncomeA","18328":"lowIncomeA","18329":"lowIncomeB","18330":"lowIncomeA","18331":"lowIncomeB","18332":"lowIncomeB","18333":"midIncome","18334":"lowIncomeA","18335":"lowIncomeB","18336":"lowIncomeB","18337":"lowIncomeA","18338":"lowIncomeA","18339":"lowIncomeB","18340":"lowIncomeA","18341":"lowIncomeA","18342":"lowIncomeA","18343":"lowIncomeB","18344":"midIncome","18345":"lowIncomeB","18346":"lowIncomeB","18347":"lowIncomeB","18348":"lowIncomeB","18349":"lowIncomeA","18350":"lowIncomeB","18351":"midIncome","18352":"midIncome","18353":"lowIncomeB","18354":"lowIncomeA","18355":"lowIncomeA","18356":"lowIncomeA","18357":"midIncome","18358":"lowIncomeA","18359":"lowIncomeA"},"bldid":{"0":62,"1":16,"2":103,"3":67,"4":165,"5":25,"6":56,"7":36,"8":33,"9":140,"10":35,"11":41,"12":172,"13":63,"14":70,"15":142,"16":118,"17":133,"18":107,"19":15,"20":151,"21":80,"22":45,"23":102,"24":86,"25":119,"26":6,"27":135,"28":38,"29":117,"30":153,"31":120,"32":2,"33":95,"34":165,"35":38,"36":46,"37":11,"38":172,"39":168,"40":12,"41":54,"42":24,"43":77,"44":11,"45":39,"46":57,"47":142,"48":169,"49":163,"50":165,"51":25,"52":32,"53":7,"54":139,"55":7,"56":12,"57":91,"58":89,"59":51,"60":24,"61":10,"62":8,"63":165,"64":85,"65":64,"66":60,"67":168,"68":79,"69":59,"70":29,"71":56,"72":163,"73":51,"74":31,"75":72,"76":96,"77":85,"78":101,"79":9,"80":80,"81":20,"82":25,"83":25,"84":135,"85":76,"86":11,"87":159,"88":132,"89":138,"90":84,"91":169,"92":67,"93":129,"94":82,"95":72,"96":67,"97":127,"98":120,"99":45,"100":99,"101":59,"102":48,"103":91,"104":11,"105":157,"106":138,"107":137,"108":62,"109":87,"110":123,"111":112,"112":24,"113":99,"114":124,"115":45,"116":152,"117":118,"118":38,"119":53,"120":83,"121":135,"122":47,"123":151,"124":98,"125":162,"126":103,"127":22,"128":82,"129":17,"130":26,"131":82,"132":12,"133":84,"134":95,"135":10,"136":135,"137":139,"138":165,"139":148,"140":170,"141":105,"142":157,"143":121,"144":133,"145":95,"146":172,"147":172,"148":89,"149":172,"150":47,"151":15,"152":165,"153":8,"154":30,"155":11,"156":7,"157":20,"158":63,"159":79,"160":85,"161":51,"162":58,"163":141,"164":140,"165":84,"166":169,"167":132,"168":79,"169":103,"170":72,"171":84,"172":2,"173":82,"174":87,"175":135,"176":165,"177":107,"178":154,"179":52,"180":162,"181":85,"182":29,"183":147,"184":33,"185":93,"186":107,"187":132,"188":41,"189":25,"190":82,"191":78,"192":95,"193":122,"194":52,"195":25,"196":60,"197":74,"198":163,"199":8,"200":62,"201":8,"202":58,"203":45,"204":33,"205":157,"206":80,"207":43,"208":156,"209":112,"210":79,"211":118,"212":47,"213":98,"214":12,"215":93,"216":130,"217":84,"218":80,"219":135,"220":21,"221":98,"222":119,"223":122,"224":168,"225":26,"226":97,"227":32,"228":135,"229":62,"230":102,"231":157,"232":135,"233":11,"234":165,"235":69,"236":8,"237":56,"238":11,"239":102,"240":165,"241":127,"242":86,"243":163,"244":112,"245":173,"246":105,"247":116,"248":156,"249":90,"250":69,"251":25,"252":122,"253":172,"254":59,"255":15,"256":173,"257":148,"258":58,"259":163,"260":72,"261":102,"262":132,"263":116,"264":170,"265":136,"266":22,"267":105,"268":147,"269":137,"270":48,"271":45,"272":64,"273":42,"274":138,"275":94,"276":151,"277":171,"278":11,"279":33,"280":141,"281":8,"282":165,"283":163,"284":37,"285":172,"286":89,"287":69,"288":62,"289":100,"290":170,"291":159,"292":8,"293":77,"294":34,"295":36,"296":75,"297":146,"298":38,"299":42,"300":8,"301":173,"302":122,"303":141,"304":22,"305":38,"306":85,"307":163,"308":132,"309":4,"310":22,"311":81,"312":143,"313":126,"314":93,"315":121,"316":27,"317":141,"318":155,"319":32,"320":41,"321":25,"322":96,"323":31,"324":96,"325":10,"326":83,"327":91,"328":77,"329":79,"330":75,"331":103,"332":140,"333":116,"334":165,"335":116,"336":135,"337":54,"338":32,"339":55,"340":91,"341":170,"342":159,"343":131,"344":36,"345":28,"346":142,"347":20,"348":51,"349":138,"350":84,"351":32,"352":150,"353":122,"354":45,"355":101,"356":135,"357":72,"358":52,"359":146,"360":16,"361":157,"362":41,"363":38,"364":35,"365":5,"366":32,"367":105,"368":170,"369":85,"370":127,"371":150,"372":12,"373":25,"374":33,"375":69,"376":38,"377":72,"378":80,"379":126,"380":4,"381":172,"382":135,"383":98,"384":113,"385":87,"386":44,"387":142,"388":91,"389":161,"390":116,"391":172,"392":124,"393":34,"394":167,"395":25,"396":169,"397":77,"398":164,"399":142,"400":60,"401":156,"402":47,"403":72,"404":1,"405":124,"406":140,"407":135,"408":107,"409":7,"410":143,"411":84,"412":56,"413":72,"414":33,"415":63,"416":47,"417":84,"418":131,"419":74,"420":165,"421":95,"422":17,"423":103,"424":126,"425":127,"426":57,"427":9,"428":11,"429":141,"430":156,"431":88,"432":40,"433":125,"434":78,"435":107,"436":172,"437":127,"438":38,"439":48,"440":135,"441":41,"442":97,"443":69,"444":66,"445":168,"446":149,"447":78,"448":75,"449":7,"450":118,"451":135,"452":141,"453":9,"454":9,"455":160,"456":67,"457":109,"458":72,"459":167,"460":22,"461":52,"462":33,"463":31,"464":146,"465":112,"466":43,"467":129,"468":133,"469":61,"470":170,"471":75,"472":163,"473":77,"474":88,"475":135,"476":113,"477":42,"478":88,"479":74,"480":127,"481":141,"482":142,"483":163,"484":143,"485":87,"486":128,"487":33,"488":12,"489":93,"490":104,"491":109,"492":67,"493":8,"494":128,"495":169,"496":159,"497":143,"498":95,"499":58,"500":170,"501":172,"502":10,"503":42,"504":55,"505":115,"506":139,"507":54,"508":163,"509":7,"510":141,"511":91,"512":93,"513":54,"514":97,"515":173,"516":29,"517":154,"518":37,"519":31,"520":40,"521":80,"522":79,"523":56,"524":115,"525":12,"526":79,"527":107,"528":86,"529":15,"530":112,"531":5,"532":72,"533":81,"534":99,"535":126,"536":100,"537":167,"538":56,"539":98,"540":3,"541":10,"542":42,"543":107,"544":117,"545":8,"546":116,"547":118,"548":132,"549":44,"550":58,"551":157,"552":38,"553":168,"554":135,"555":167,"556":15,"557":85,"558":8,"559":3,"560":32,"561":101,"562":133,"563":51,"564":86,"565":147,"566":153,"567":122,"568":172,"569":105,"570":148,"571":43,"572":17,"573":25,"574":10,"575":42,"576":96,"577":36,"578":148,"579":149,"580":51,"581":15,"582":29,"583":131,"584":38,"585":42,"586":82,"587":137,"588":6,"589":149,"590":37,"591":44,"592":157,"593":22,"594":52,"595":107,"596":96,"597":48,"598":141,"599":138,"600":36,"601":113,"602":72,"603":39,"604":163,"605":74,"606":126,"607":162,"608":90,"609":15,"610":43,"611":107,"612":80,"613":7,"614":126,"615":153,"616":159,"617":116,"618":17,"619":150,"620":87,"621":143,"622":150,"623":135,"624":39,"625":10,"626":167,"627":148,"628":95,"629":51,"630":82,"631":40,"632":165,"633":69,"634":54,"635":82,"636":170,"637":101,"638":42,"639":143,"640":26,"641":130,"642":150,"643":122,"644":104,"645":63,"646":135,"647":60,"648":54,"649":122,"650":161,"651":150,"652":85,"653":167,"654":36,"655":54,"656":42,"657":165,"658":163,"659":107,"660":27,"661":12,"662":80,"663":16,"664":89,"665":95,"666":89,"667":72,"668":100,"669":77,"670":100,"671":42,"672":84,"673":38,"674":42,"675":72,"676":141,"677":15,"678":56,"679":165,"680":8,"681":135,"682":11,"683":45,"684":122,"685":27,"686":118,"687":100,"688":157,"689":112,"690":80,"691":2,"692":7,"693":15,"694":67,"695":122,"696":165,"697":62,"698":101,"699":148,"700":121,"701":11,"702":84,"703":10,"704":20,"705":95,"706":97,"707":157,"708":159,"709":6,"710":12,"711":41,"712":79,"713":107,"714":150,"715":70,"716":48,"717":76,"718":43,"719":157,"720":108,"721":113,"722":51,"723":156,"724":144,"725":10,"726":112,"727":13,"728":49,"729":96,"730":100,"731":43,"732":26,"733":140,"734":5,"735":105,"736":47,"737":150,"738":20,"739":64,"740":44,"741":52,"742":54,"743":84,"744":56,"745":95,"746":31,"747":132,"748":49,"749":16,"750":105,"751":117,"752":69,"753":8,"754":97,"755":77,"756":150,"757":132,"758":120,"759":133,"760":122,"761":106,"762":1,"763":115,"764":122,"765":142,"766":156,"767":29,"768":74,"769":163,"770":121,"771":105,"772":61,"773":95,"774":91,"775":86,"776":52,"777":38,"778":29,"779":63,"780":94,"781":1,"782":117,"783":103,"784":53,"785":155,"786":118,"787":32,"788":71,"789":140,"790":138,"791":156,"792":76,"793":112,"794":147,"795":5,"796":23,"797":11,"798":82,"799":165,"800":80,"801":141,"802":44,"803":72,"804":4,"805":105,"806":20,"807":44,"808":24,"809":89,"810":172,"811":25,"812":151,"813":141,"814":134,"815":77,"816":89,"817":105,"818":125,"819":3,"820":16,"821":23,"822":40,"823":8,"824":44,"825":157,"826":96,"827":42,"828":30,"829":84,"830":40,"831":56,"832":143,"833":56,"834":170,"835":85,"836":16,"837":80,"838":5,"839":19,"840":93,"841":65,"842":68,"843":139,"844":134,"845":11,"846":116,"847":103,"848":31,"849":165,"850":118,"851":85,"852":168,"853":106,"854":25,"855":12,"856":77,"857":91,"858":142,"859":15,"860":77,"861":152,"862":91,"863":135,"864":157,"865":100,"866":79,"867":6,"868":157,"869":45,"870":52,"871":151,"872":52,"873":97,"874":7,"875":87,"876":50,"877":3,"878":75,"879":72,"880":139,"881":54,"882":107,"883":15,"884":168,"885":101,"886":133,"887":122,"888":122,"889":32,"890":173,"891":157,"892":27,"893":156,"894":163,"895":140,"896":124,"897":91,"898":163,"899":120,"900":157,"901":18,"902":112,"903":148,"904":139,"905":122,"906":172,"907":74,"908":165,"909":25,"910":35,"911":8,"912":138,"913":8,"914":128,"915":24,"916":133,"917":116,"918":3,"919":85,"920":172,"921":121,"922":51,"923":42,"924":113,"925":42,"926":23,"927":143,"928":95,"929":84,"930":19,"931":51,"932":91,"933":31,"934":162,"935":5,"936":103,"937":123,"938":103,"939":52,"940":12,"941":80,"942":103,"943":7,"944":157,"945":105,"946":35,"947":111,"948":12,"949":169,"950":169,"951":165,"952":101,"953":11,"954":36,"955":139,"956":82,"957":144,"958":143,"959":56,"960":32,"961":72,"962":82,"963":94,"964":34,"965":112,"966":139,"967":88,"968":130,"969":65,"970":117,"971":84,"972":63,"973":12,"974":67,"975":133,"976":149,"977":167,"978":100,"979":24,"980":42,"981":72,"982":135,"983":47,"984":11,"985":21,"986":5,"987":112,"988":72,"989":97,"990":12,"991":105,"992":6,"993":91,"994":63,"995":135,"996":153,"997":32,"998":170,"999":46,"1000":43,"1001":126,"1002":12,"1003":16,"1004":162,"1005":86,"1006":38,"1007":9,"1008":141,"1009":44,"1010":133,"1011":54,"1012":37,"1013":135,"1014":88,"1015":31,"1016":86,"1017":138,"1018":32,"1019":10,"1020":138,"1021":33,"1022":38,"1023":86,"1024":8,"1025":91,"1026":53,"1027":141,"1028":94,"1029":32,"1030":74,"1031":38,"1032":51,"1033":79,"1034":26,"1035":8,"1036":25,"1037":134,"1038":149,"1039":112,"1040":103,"1041":79,"1042":138,"1043":22,"1044":84,"1045":31,"1046":119,"1047":106,"1048":88,"1049":96,"1050":90,"1051":105,"1052":35,"1053":89,"1054":124,"1055":172,"1056":141,"1057":50,"1058":170,"1059":8,"1060":52,"1061":84,"1062":143,"1063":11,"1064":57,"1065":74,"1066":5,"1067":87,"1068":75,"1069":79,"1070":72,"1071":86,"1072":8,"1073":12,"1074":22,"1075":77,"1076":10,"1077":74,"1078":162,"1079":142,"1080":133,"1081":25,"1082":8,"1083":172,"1084":38,"1085":11,"1086":88,"1087":42,"1088":112,"1089":16,"1090":90,"1091":132,"1092":12,"1093":137,"1094":17,"1095":104,"1096":3,"1097":162,"1098":96,"1099":65,"1100":25,"1101":135,"1102":124,"1103":97,"1104":124,"1105":154,"1106":165,"1107":86,"1108":122,"1109":91,"1110":87,"1111":100,"1112":151,"1113":56,"1114":157,"1115":40,"1116":12,"1117":53,"1118":118,"1119":87,"1120":139,"1121":124,"1122":93,"1123":140,"1124":135,"1125":67,"1126":63,"1127":131,"1128":80,"1129":82,"1130":85,"1131":95,"1132":83,"1133":36,"1134":44,"1135":162,"1136":172,"1137":120,"1138":88,"1139":64,"1140":107,"1141":72,"1142":148,"1143":1,"1144":69,"1145":77,"1146":121,"1147":154,"1148":135,"1149":40,"1150":160,"1151":13,"1152":100,"1153":148,"1154":78,"1155":91,"1156":132,"1157":163,"1158":5,"1159":108,"1160":105,"1161":3,"1162":56,"1163":54,"1164":143,"1165":81,"1166":162,"1167":2,"1168":34,"1169":157,"1170":143,"1171":10,"1172":65,"1173":8,"1174":57,"1175":33,"1176":38,"1177":147,"1178":165,"1179":30,"1180":172,"1181":43,"1182":115,"1183":138,"1184":172,"1185":25,"1186":160,"1187":17,"1188":151,"1189":74,"1190":42,"1191":141,"1192":32,"1193":144,"1194":38,"1195":60,"1196":17,"1197":26,"1198":16,"1199":12,"1200":143,"1201":54,"1202":98,"1203":131,"1204":88,"1205":95,"1206":142,"1207":63,"1208":107,"1209":116,"1210":90,"1211":103,"1212":142,"1213":115,"1214":26,"1215":113,"1216":69,"1217":169,"1218":139,"1219":85,"1220":143,"1221":54,"1222":38,"1223":143,"1224":12,"1225":84,"1226":99,"1227":137,"1228":15,"1229":173,"1230":31,"1231":42,"1232":157,"1233":56,"1234":31,"1235":21,"1236":70,"1237":138,"1238":1,"1239":143,"1240":169,"1241":165,"1242":10,"1243":124,"1244":135,"1245":89,"1246":165,"1247":170,"1248":56,"1249":63,"1250":12,"1251":56,"1252":36,"1253":156,"1254":73,"1255":127,"1256":12,"1257":5,"1258":170,"1259":24,"1260":2,"1261":88,"1262":3,"1263":172,"1264":112,"1265":107,"1266":97,"1267":43,"1268":87,"1269":121,"1270":156,"1271":38,"1272":45,"1273":43,"1274":85,"1275":169,"1276":165,"1277":143,"1278":143,"1279":107,"1280":109,"1281":15,"1282":12,"1283":96,"1284":56,"1285":41,"1286":43,"1287":11,"1288":133,"1289":4,"1290":12,"1291":122,"1292":32,"1293":54,"1294":162,"1295":27,"1296":81,"1297":9,"1298":85,"1299":91,"1300":116,"1301":37,"1302":121,"1303":85,"1304":63,"1305":158,"1306":61,"1307":133,"1308":107,"1309":3,"1310":93,"1311":172,"1312":31,"1313":26,"1314":81,"1315":26,"1316":151,"1317":169,"1318":107,"1319":132,"1320":47,"1321":135,"1322":80,"1323":142,"1324":141,"1325":35,"1326":144,"1327":35,"1328":38,"1329":141,"1330":81,"1331":110,"1332":139,"1333":172,"1334":74,"1335":48,"1336":74,"1337":141,"1338":3,"1339":22,"1340":41,"1341":125,"1342":72,"1343":124,"1344":140,"1345":132,"1346":138,"1347":138,"1348":95,"1349":67,"1350":98,"1351":54,"1352":117,"1353":86,"1354":82,"1355":7,"1356":3,"1357":121,"1358":143,"1359":151,"1360":32,"1361":133,"1362":107,"1363":69,"1364":43,"1365":138,"1366":122,"1367":31,"1368":137,"1369":65,"1370":8,"1371":91,"1372":143,"1373":55,"1374":95,"1375":20,"1376":14,"1377":96,"1378":135,"1379":126,"1380":91,"1381":77,"1382":93,"1383":69,"1384":17,"1385":20,"1386":91,"1387":163,"1388":85,"1389":31,"1390":54,"1391":31,"1392":12,"1393":19,"1394":12,"1395":1,"1396":165,"1397":9,"1398":7,"1399":54,"1400":8,"1401":143,"1402":85,"1403":144,"1404":54,"1405":148,"1406":12,"1407":56,"1408":38,"1409":165,"1410":36,"1411":91,"1412":89,"1413":172,"1414":78,"1415":12,"1416":90,"1417":167,"1418":130,"1419":137,"1420":60,"1421":41,"1422":141,"1423":107,"1424":56,"1425":51,"1426":15,"1427":63,"1428":33,"1429":72,"1430":137,"1431":47,"1432":107,"1433":11,"1434":112,"1435":82,"1436":143,"1437":165,"1438":98,"1439":118,"1440":11,"1441":145,"1442":65,"1443":32,"1444":73,"1445":95,"1446":135,"1447":153,"1448":15,"1449":56,"1450":25,"1451":107,"1452":169,"1453":94,"1454":11,"1455":32,"1456":132,"1457":25,"1458":57,"1459":103,"1460":6,"1461":35,"1462":35,"1463":150,"1464":38,"1465":113,"1466":9,"1467":27,"1468":122,"1469":148,"1470":26,"1471":12,"1472":72,"1473":42,"1474":74,"1475":159,"1476":98,"1477":114,"1478":11,"1479":20,"1480":172,"1481":103,"1482":69,"1483":69,"1484":118,"1485":94,"1486":21,"1487":12,"1488":11,"1489":95,"1490":162,"1491":15,"1492":10,"1493":93,"1494":52,"1495":32,"1496":140,"1497":13,"1498":105,"1499":25,"1500":25,"1501":50,"1502":43,"1503":156,"1504":142,"1505":138,"1506":116,"1507":72,"1508":88,"1509":94,"1510":105,"1511":5,"1512":31,"1513":95,"1514":163,"1515":156,"1516":10,"1517":135,"1518":38,"1519":89,"1520":165,"1521":56,"1522":7,"1523":92,"1524":26,"1525":1,"1526":80,"1527":132,"1528":41,"1529":130,"1530":11,"1531":63,"1532":165,"1533":144,"1534":10,"1535":52,"1536":103,"1537":132,"1538":159,"1539":79,"1540":8,"1541":88,"1542":24,"1543":32,"1544":172,"1545":141,"1546":60,"1547":132,"1548":148,"1549":91,"1550":3,"1551":166,"1552":59,"1553":63,"1554":99,"1555":95,"1556":150,"1557":10,"1558":122,"1559":44,"1560":135,"1561":9,"1562":135,"1563":2,"1564":3,"1565":29,"1566":133,"1567":80,"1568":32,"1569":9,"1570":12,"1571":56,"1572":85,"1573":52,"1574":157,"1575":85,"1576":85,"1577":121,"1578":12,"1579":157,"1580":132,"1581":4,"1582":11,"1583":91,"1584":112,"1585":142,"1586":84,"1587":69,"1588":30,"1589":122,"1590":100,"1591":99,"1592":93,"1593":16,"1594":11,"1595":127,"1596":192,"1597":202,"1598":383,"1599":193,"1600":195,"1601":325,"1602":283,"1603":210,"1604":302,"1605":208,"1606":228,"1607":309,"1608":198,"1609":340,"1610":332,"1611":266,"1612":380,"1613":279,"1614":311,"1615":338,"1616":302,"1617":276,"1618":314,"1619":371,"1620":279,"1621":342,"1622":358,"1623":300,"1624":187,"1625":364,"1626":240,"1627":283,"1628":286,"1629":216,"1630":335,"1631":333,"1632":375,"1633":352,"1634":359,"1635":232,"1636":227,"1637":362,"1638":175,"1639":259,"1640":318,"1641":324,"1642":256,"1643":214,"1644":384,"1645":193,"1646":364,"1647":314,"1648":374,"1649":313,"1650":298,"1651":295,"1652":174,"1653":287,"1654":187,"1655":369,"1656":370,"1657":299,"1658":365,"1659":273,"1660":248,"1661":288,"1662":319,"1663":289,"1664":180,"1665":361,"1666":203,"1667":248,"1668":371,"1669":282,"1670":348,"1671":311,"1672":271,"1673":301,"1674":365,"1675":209,"1676":333,"1677":282,"1678":204,"1679":294,"1680":214,"1681":206,"1682":286,"1683":261,"1684":343,"1685":211,"1686":378,"1687":354,"1688":274,"1689":250,"1690":215,"1691":277,"1692":286,"1693":174,"1694":302,"1695":368,"1696":335,"1697":338,"1698":372,"1699":361,"1700":314,"1701":361,"1702":246,"1703":283,"1704":267,"1705":301,"1706":289,"1707":232,"1708":268,"1709":225,"1710":302,"1711":337,"1712":360,"1713":335,"1714":277,"1715":371,"1716":192,"1717":235,"1718":382,"1719":268,"1720":361,"1721":192,"1722":309,"1723":330,"1724":316,"1725":288,"1726":371,"1727":282,"1728":286,"1729":344,"1730":182,"1731":288,"1732":177,"1733":354,"1734":290,"1735":248,"1736":384,"1737":258,"1738":210,"1739":302,"1740":229,"1741":176,"1742":265,"1743":187,"1744":322,"1745":216,"1746":208,"1747":364,"1748":192,"1749":335,"1750":183,"1751":316,"1752":180,"1753":180,"1754":287,"1755":359,"1756":311,"1757":379,"1758":293,"1759":294,"1760":301,"1761":368,"1762":300,"1763":301,"1764":208,"1765":360,"1766":361,"1767":263,"1768":271,"1769":273,"1770":335,"1771":183,"1772":283,"1773":175,"1774":311,"1775":325,"1776":343,"1777":178,"1778":222,"1779":282,"1780":368,"1781":285,"1782":379,"1783":288,"1784":239,"1785":327,"1786":366,"1787":334,"1788":259,"1789":246,"1790":371,"1791":314,"1792":188,"1793":342,"1794":229,"1795":266,"1796":330,"1797":273,"1798":331,"1799":287,"1800":232,"1801":288,"1802":286,"1803":187,"1804":350,"1805":288,"1806":295,"1807":266,"1808":233,"1809":300,"1810":313,"1811":369,"1812":307,"1813":248,"1814":250,"1815":309,"1816":343,"1817":283,"1818":260,"1819":200,"1820":329,"1821":207,"1822":325,"1823":240,"1824":315,"1825":288,"1826":330,"1827":338,"1828":331,"1829":192,"1830":240,"1831":266,"1832":293,"1833":198,"1834":248,"1835":313,"1836":332,"1837":267,"1838":309,"1839":214,"1840":379,"1841":202,"1842":365,"1843":208,"1844":336,"1845":224,"1846":281,"1847":297,"1848":287,"1849":344,"1850":303,"1851":233,"1852":214,"1853":314,"1854":180,"1855":216,"1856":342,"1857":381,"1858":282,"1859":343,"1860":217,"1861":371,"1862":286,"1863":339,"1864":187,"1865":370,"1866":268,"1867":314,"1868":195,"1869":330,"1870":242,"1871":285,"1872":273,"1873":211,"1874":365,"1875":283,"1876":183,"1877":294,"1878":253,"1879":209,"1880":347,"1881":288,"1882":226,"1883":288,"1884":273,"1885":190,"1886":271,"1887":359,"1888":242,"1889":345,"1890":357,"1891":174,"1892":382,"1893":176,"1894":365,"1895":350,"1896":293,"1897":268,"1898":342,"1899":279,"1900":335,"1901":299,"1902":323,"1903":253,"1904":178,"1905":208,"1906":202,"1907":229,"1908":306,"1909":257,"1910":183,"1911":207,"1912":279,"1913":239,"1914":371,"1915":287,"1916":337,"1917":248,"1918":332,"1919":288,"1920":303,"1921":192,"1922":288,"1923":345,"1924":371,"1925":283,"1926":338,"1927":174,"1928":222,"1929":222,"1930":331,"1931":232,"1932":297,"1933":287,"1934":179,"1935":211,"1936":314,"1937":188,"1938":314,"1939":250,"1940":180,"1941":197,"1942":338,"1943":293,"1944":309,"1945":242,"1946":290,"1947":369,"1948":341,"1949":286,"1950":193,"1951":361,"1952":364,"1953":365,"1954":366,"1955":202,"1956":211,"1957":372,"1958":299,"1959":215,"1960":313,"1961":322,"1962":250,"1963":240,"1964":184,"1965":211,"1966":313,"1967":366,"1968":227,"1969":359,"1970":184,"1971":266,"1972":239,"1973":244,"1974":368,"1975":309,"1976":250,"1977":313,"1978":205,"1979":354,"1980":339,"1981":309,"1982":307,"1983":242,"1984":358,"1985":271,"1986":228,"1987":343,"1988":301,"1989":293,"1990":328,"1991":359,"1992":309,"1993":281,"1994":378,"1995":320,"1996":305,"1997":192,"1998":354,"1999":259,"2000":323,"2001":174,"2002":364,"2003":306,"2004":369,"2005":232,"2006":267,"2007":299,"2008":273,"2009":231,"2010":349,"2011":284,"2012":194,"2013":364,"2014":322,"2015":375,"2016":221,"2017":253,"2018":364,"2019":188,"2020":198,"2021":302,"2022":288,"2023":361,"2024":273,"2025":309,"2026":311,"2027":273,"2028":224,"2029":338,"2030":238,"2031":364,"2032":287,"2033":329,"2034":283,"2035":368,"2036":189,"2037":189,"2038":194,"2039":344,"2040":183,"2041":368,"2042":273,"2043":212,"2044":191,"2045":273,"2046":271,"2047":211,"2048":180,"2049":320,"2050":315,"2051":261,"2052":269,"2053":207,"2054":311,"2055":204,"2056":293,"2057":377,"2058":349,"2059":359,"2060":184,"2061":250,"2062":358,"2063":358,"2064":279,"2065":303,"2066":357,"2067":201,"2068":189,"2069":197,"2070":330,"2071":215,"2072":259,"2073":266,"2074":214,"2075":179,"2076":309,"2077":360,"2078":174,"2079":258,"2080":277,"2081":309,"2082":282,"2083":213,"2084":368,"2085":178,"2086":282,"2087":250,"2088":341,"2089":344,"2090":368,"2091":245,"2092":313,"2093":268,"2094":337,"2095":365,"2096":213,"2097":254,"2098":188,"2099":290,"2100":279,"2101":192,"2102":280,"2103":248,"2104":189,"2105":335,"2106":231,"2107":184,"2108":193,"2109":202,"2110":265,"2111":211,"2112":246,"2113":361,"2114":221,"2115":361,"2116":338,"2117":272,"2118":184,"2119":342,"2120":180,"2121":271,"2122":277,"2123":340,"2124":328,"2125":321,"2126":357,"2127":303,"2128":314,"2129":339,"2130":277,"2131":335,"2132":178,"2133":304,"2134":282,"2135":253,"2136":364,"2137":288,"2138":232,"2139":364,"2140":383,"2141":382,"2142":306,"2143":364,"2144":225,"2145":233,"2146":174,"2147":347,"2148":273,"2149":221,"2150":293,"2151":281,"2152":302,"2153":284,"2154":269,"2155":225,"2156":244,"2157":323,"2158":268,"2159":307,"2160":306,"2161":295,"2162":287,"2163":315,"2164":349,"2165":275,"2166":304,"2167":216,"2168":178,"2169":311,"2170":183,"2171":297,"2172":331,"2173":252,"2174":311,"2175":309,"2176":306,"2177":282,"2178":286,"2179":305,"2180":280,"2181":337,"2182":266,"2183":372,"2184":232,"2185":232,"2186":284,"2187":217,"2188":286,"2189":297,"2190":355,"2191":177,"2192":267,"2193":242,"2194":176,"2195":322,"2196":211,"2197":191,"2198":183,"2199":190,"2200":253,"2201":227,"2202":187,"2203":210,"2204":305,"2205":198,"2206":189,"2207":286,"2208":180,"2209":192,"2210":297,"2211":202,"2212":178,"2213":227,"2214":202,"2215":312,"2216":277,"2217":188,"2218":250,"2219":365,"2220":293,"2221":183,"2222":354,"2223":290,"2224":324,"2225":295,"2226":176,"2227":337,"2228":370,"2229":302,"2230":265,"2231":348,"2232":350,"2233":335,"2234":237,"2235":257,"2236":316,"2237":299,"2238":293,"2239":253,"2240":368,"2241":246,"2242":300,"2243":372,"2244":218,"2245":232,"2246":301,"2247":374,"2248":381,"2249":208,"2250":343,"2251":176,"2252":346,"2253":189,"2254":209,"2255":187,"2256":342,"2257":348,"2258":374,"2259":183,"2260":283,"2261":236,"2262":293,"2263":379,"2264":335,"2265":300,"2266":358,"2267":377,"2268":362,"2269":311,"2270":183,"2271":198,"2272":264,"2273":290,"2274":297,"2275":183,"2276":358,"2277":379,"2278":359,"2279":368,"2280":324,"2281":359,"2282":339,"2283":311,"2284":221,"2285":241,"2286":350,"2287":214,"2288":230,"2289":384,"2290":302,"2291":184,"2292":305,"2293":375,"2294":282,"2295":331,"2296":211,"2297":363,"2298":342,"2299":273,"2300":279,"2301":273,"2302":330,"2303":211,"2304":324,"2305":190,"2306":213,"2307":316,"2308":273,"2309":228,"2310":192,"2311":213,"2312":366,"2313":374,"2314":320,"2315":330,"2316":357,"2317":325,"2318":333,"2319":275,"2320":286,"2321":205,"2322":364,"2323":317,"2324":206,"2325":187,"2326":261,"2327":227,"2328":338,"2329":365,"2330":328,"2331":228,"2332":202,"2333":372,"2334":293,"2335":357,"2336":376,"2337":254,"2338":377,"2339":254,"2340":316,"2341":210,"2342":184,"2343":376,"2344":273,"2345":316,"2346":211,"2347":311,"2348":197,"2349":251,"2350":285,"2351":295,"2352":314,"2353":190,"2354":348,"2355":183,"2356":288,"2357":354,"2358":360,"2359":306,"2360":317,"2361":341,"2362":230,"2363":243,"2364":194,"2365":232,"2366":202,"2367":365,"2368":337,"2369":194,"2370":338,"2371":232,"2372":341,"2373":259,"2374":302,"2375":302,"2376":198,"2377":198,"2378":368,"2379":216,"2380":306,"2381":243,"2382":192,"2383":288,"2384":302,"2385":216,"2386":361,"2387":361,"2388":311,"2389":354,"2390":342,"2391":311,"2392":290,"2393":237,"2394":242,"2395":365,"2396":245,"2397":217,"2398":334,"2399":258,"2400":253,"2401":225,"2402":344,"2403":225,"2404":293,"2405":357,"2406":335,"2407":279,"2408":248,"2409":361,"2410":271,"2411":330,"2412":284,"2413":187,"2414":273,"2415":330,"2416":339,"2417":354,"2418":235,"2419":188,"2420":333,"2421":308,"2422":344,"2423":265,"2424":220,"2425":238,"2426":210,"2427":309,"2428":332,"2429":341,"2430":241,"2431":325,"2432":209,"2433":361,"2434":180,"2435":213,"2436":342,"2437":334,"2438":228,"2439":381,"2440":311,"2441":341,"2442":254,"2443":325,"2444":309,"2445":305,"2446":300,"2447":288,"2448":262,"2449":189,"2450":268,"2451":232,"2452":255,"2453":209,"2454":372,"2455":198,"2456":213,"2457":270,"2458":212,"2459":316,"2460":184,"2461":341,"2462":178,"2463":368,"2464":320,"2465":345,"2466":268,"2467":235,"2468":217,"2469":335,"2470":368,"2471":178,"2472":259,"2473":299,"2474":369,"2475":181,"2476":357,"2477":338,"2478":330,"2479":218,"2480":354,"2481":222,"2482":376,"2483":383,"2484":341,"2485":263,"2486":316,"2487":344,"2488":180,"2489":383,"2490":202,"2491":372,"2492":376,"2493":243,"2494":368,"2495":204,"2496":281,"2497":303,"2498":260,"2499":257,"2500":349,"2501":232,"2502":302,"2503":382,"2504":183,"2505":216,"2506":219,"2507":378,"2508":265,"2509":357,"2510":293,"2511":359,"2512":290,"2513":245,"2514":207,"2515":268,"2516":378,"2517":266,"2518":209,"2519":222,"2520":273,"2521":183,"2522":338,"2523":371,"2524":183,"2525":311,"2526":181,"2527":371,"2528":265,"2529":226,"2530":241,"2531":209,"2532":375,"2533":248,"2534":211,"2535":216,"2536":371,"2537":211,"2538":350,"2539":248,"2540":287,"2541":180,"2542":232,"2543":245,"2544":383,"2545":346,"2546":286,"2547":293,"2548":337,"2549":253,"2550":209,"2551":320,"2552":256,"2553":281,"2554":174,"2555":238,"2556":279,"2557":309,"2558":268,"2559":183,"2560":293,"2561":301,"2562":211,"2563":231,"2564":232,"2565":365,"2566":314,"2567":378,"2568":273,"2569":259,"2570":359,"2571":335,"2572":357,"2573":288,"2574":370,"2575":180,"2576":209,"2577":368,"2578":339,"2579":282,"2580":228,"2581":246,"2582":277,"2583":264,"2584":231,"2585":184,"2586":325,"2587":194,"2588":178,"2589":310,"2590":254,"2591":375,"2592":321,"2593":221,"2594":368,"2595":248,"2596":216,"2597":184,"2598":366,"2599":272,"2600":279,"2601":214,"2602":295,"2603":381,"2604":197,"2605":309,"2606":328,"2607":243,"2608":211,"2609":236,"2610":321,"2611":346,"2612":299,"2613":232,"2614":243,"2615":333,"2616":273,"2617":198,"2618":376,"2619":238,"2620":179,"2621":273,"2622":343,"2623":285,"2624":313,"2625":180,"2626":280,"2627":242,"2628":183,"2629":365,"2630":211,"2631":221,"2632":313,"2633":248,"2634":236,"2635":184,"2636":305,"2637":279,"2638":268,"2639":225,"2640":302,"2641":374,"2642":305,"2643":217,"2644":194,"2645":338,"2646":232,"2647":205,"2648":250,"2649":367,"2650":285,"2651":232,"2652":286,"2653":214,"2654":311,"2655":216,"2656":268,"2657":267,"2658":300,"2659":258,"2660":326,"2661":317,"2662":344,"2663":221,"2664":268,"2665":376,"2666":279,"2667":343,"2668":293,"2669":383,"2670":325,"2671":183,"2672":232,"2673":209,"2674":279,"2675":353,"2676":221,"2677":273,"2678":293,"2679":192,"2680":342,"2681":305,"2682":294,"2683":316,"2684":316,"2685":233,"2686":309,"2687":288,"2688":227,"2689":209,"2690":200,"2691":212,"2692":211,"2693":330,"2694":375,"2695":232,"2696":271,"2697":330,"2698":313,"2699":311,"2700":204,"2701":302,"2702":270,"2703":210,"2704":364,"2705":282,"2706":300,"2707":266,"2708":322,"2709":225,"2710":212,"2711":335,"2712":338,"2713":314,"2714":349,"2715":285,"2716":297,"2717":208,"2718":187,"2719":362,"2720":316,"2721":261,"2722":195,"2723":313,"2724":227,"2725":220,"2726":295,"2727":381,"2728":326,"2729":273,"2730":359,"2731":293,"2732":288,"2733":374,"2734":335,"2735":354,"2736":297,"2737":326,"2738":299,"2739":205,"2740":361,"2741":204,"2742":180,"2743":249,"2744":253,"2745":242,"2746":303,"2747":272,"2748":227,"2749":273,"2750":336,"2751":293,"2752":335,"2753":314,"2754":339,"2755":344,"2756":302,"2757":205,"2758":268,"2759":286,"2760":259,"2761":275,"2762":176,"2763":311,"2764":177,"2765":370,"2766":282,"2767":277,"2768":225,"2769":216,"2770":295,"2771":313,"2772":187,"2773":341,"2774":285,"2775":198,"2776":293,"2777":344,"2778":283,"2779":353,"2780":268,"2781":207,"2782":192,"2783":371,"2784":293,"2785":213,"2786":271,"2787":253,"2788":296,"2789":190,"2790":197,"2791":258,"2792":288,"2793":349,"2794":289,"2795":369,"2796":366,"2797":214,"2798":187,"2799":202,"2800":231,"2801":364,"2802":202,"2803":218,"2804":297,"2805":302,"2806":311,"2807":325,"2808":359,"2809":257,"2810":281,"2811":218,"2812":335,"2813":260,"2814":191,"2815":330,"2816":229,"2817":208,"2818":280,"2819":343,"2820":325,"2821":200,"2822":265,"2823":330,"2824":376,"2825":183,"2826":302,"2827":209,"2828":302,"2829":248,"2830":309,"2831":311,"2832":194,"2833":176,"2834":324,"2835":368,"2836":179,"2837":302,"2838":279,"2839":379,"2840":271,"2841":302,"2842":187,"2843":183,"2844":208,"2845":216,"2846":348,"2847":179,"2848":228,"2849":273,"2850":268,"2851":216,"2852":254,"2853":180,"2854":309,"2855":344,"2856":337,"2857":187,"2858":275,"2859":364,"2860":185,"2861":212,"2862":316,"2863":314,"2864":317,"2865":194,"2866":311,"2867":356,"2868":366,"2869":198,"2870":293,"2871":231,"2872":273,"2873":339,"2874":330,"2875":365,"2876":316,"2877":184,"2878":222,"2879":188,"2880":375,"2881":365,"2882":242,"2883":312,"2884":276,"2885":361,"2886":192,"2887":216,"2888":235,"2889":219,"2890":246,"2891":286,"2892":223,"2893":189,"2894":306,"2895":344,"2896":347,"2897":184,"2898":364,"2899":259,"2900":207,"2901":308,"2902":322,"2903":227,"2904":214,"2905":359,"2906":211,"2907":268,"2908":304,"2909":323,"2910":356,"2911":319,"2912":207,"2913":359,"2914":349,"2915":342,"2916":217,"2917":250,"2918":214,"2919":201,"2920":205,"2921":222,"2922":248,"2923":295,"2924":314,"2925":180,"2926":368,"2927":359,"2928":288,"2929":315,"2930":359,"2931":309,"2932":254,"2933":364,"2934":335,"2935":364,"2936":371,"2937":220,"2938":180,"2939":383,"2940":211,"2941":180,"2942":341,"2943":248,"2944":342,"2945":198,"2946":211,"2947":319,"2948":302,"2949":323,"2950":362,"2951":376,"2952":316,"2953":208,"2954":266,"2955":248,"2956":307,"2957":211,"2958":238,"2959":175,"2960":276,"2961":316,"2962":368,"2963":305,"2964":179,"2965":296,"2966":206,"2967":320,"2968":357,"2969":297,"2970":248,"2971":359,"2972":378,"2973":273,"2974":306,"2975":282,"2976":217,"2977":221,"2978":311,"2979":231,"2980":294,"2981":214,"2982":210,"2983":283,"2984":330,"2985":353,"2986":350,"2987":180,"2988":255,"2989":341,"2990":245,"2991":378,"2992":185,"2993":300,"2994":288,"2995":266,"2996":354,"2997":251,"2998":316,"2999":360,"3000":318,"3001":250,"3002":285,"3003":376,"3004":294,"3005":325,"3006":302,"3007":277,"3008":313,"3009":221,"3010":332,"3011":370,"3012":273,"3013":198,"3014":243,"3015":211,"3016":368,"3017":283,"3018":314,"3019":307,"3020":287,"3021":302,"3022":291,"3023":176,"3024":364,"3025":338,"3026":293,"3027":211,"3028":181,"3029":316,"3030":271,"3031":211,"3032":361,"3033":194,"3034":211,"3035":311,"3036":344,"3037":233,"3038":354,"3039":179,"3040":232,"3041":242,"3042":183,"3043":383,"3044":226,"3045":278,"3046":259,"3047":273,"3048":359,"3049":307,"3050":309,"3051":328,"3052":189,"3053":271,"3054":180,"3055":268,"3056":245,"3057":237,"3058":343,"3059":288,"3060":369,"3061":279,"3062":313,"3063":320,"3064":306,"3065":383,"3066":366,"3067":359,"3068":350,"3069":195,"3070":311,"3071":354,"3072":323,"3073":323,"3074":244,"3075":318,"3076":232,"3077":379,"3078":241,"3079":271,"3080":358,"3081":192,"3082":192,"3083":366,"3084":286,"3085":344,"3086":323,"3087":250,"3088":235,"3089":319,"3090":351,"3091":354,"3092":246,"3093":220,"3094":348,"3095":285,"3096":224,"3097":358,"3098":221,"3099":361,"3100":342,"3101":175,"3102":355,"3103":302,"3104":361,"3105":279,"3106":369,"3107":206,"3108":248,"3109":358,"3110":212,"3111":374,"3112":342,"3113":301,"3114":338,"3115":364,"3116":364,"3117":227,"3118":288,"3119":311,"3120":184,"3121":364,"3122":209,"3123":330,"3124":335,"3125":183,"3126":285,"3127":363,"3128":231,"3129":297,"3130":325,"3131":338,"3132":248,"3133":283,"3134":317,"3135":289,"3136":187,"3137":316,"3138":265,"3139":239,"3140":178,"3141":376,"3142":341,"3143":286,"3144":300,"3145":313,"3146":248,"3147":279,"3148":309,"3149":302,"3150":307,"3151":202,"3152":194,"3153":273,"3154":300,"3155":328,"3156":230,"3157":268,"3158":258,"3159":338,"3160":260,"3161":341,"3162":358,"3163":221,"3164":309,"3165":240,"3166":184,"3167":349,"3168":267,"3169":183,"3170":218,"3171":183,"3172":344,"3173":245,"3174":289,"3175":231,"3176":299,"3177":239,"3178":209,"3179":369,"3180":178,"3181":311,"3182":180,"3183":330,"3184":219,"3185":354,"3186":232,"3187":314,"3188":357,"3189":361,"3190":372,"3191":209,"3192":286,"3193":228,"3194":187,"3195":176,"3196":361,"3197":325,"3198":202,"3199":373,"3200":271,"3201":354,"3202":261,"3203":201,"3204":282,"3205":199,"3206":375,"3207":342,"3208":366,"3209":196,"3210":344,"3211":260,"3212":304,"3213":381,"3214":282,"3215":204,"3216":303,"3217":221,"3218":232,"3219":344,"3220":266,"3221":328,"3222":250,"3223":309,"3224":259,"3225":198,"3226":316,"3227":177,"3228":361,"3229":334,"3230":189,"3231":352,"3232":318,"3233":294,"3234":184,"3235":309,"3236":248,"3237":189,"3238":225,"3239":214,"3240":180,"3241":357,"3242":187,"3243":292,"3244":253,"3245":281,"3246":184,"3247":362,"3248":199,"3249":316,"3250":302,"3251":344,"3252":216,"3253":295,"3254":258,"3255":195,"3256":295,"3257":273,"3258":297,"3259":213,"3260":245,"3261":178,"3262":204,"3263":362,"3264":352,"3265":176,"3266":256,"3267":196,"3268":354,"3269":231,"3270":285,"3271":184,"3272":183,"3273":363,"3274":279,"3275":293,"3276":291,"3277":249,"3278":361,"3279":259,"3280":271,"3281":379,"3282":217,"3283":369,"3284":364,"3285":253,"3286":342,"3287":359,"3288":238,"3289":286,"3290":342,"3291":184,"3292":335,"3293":267,"3294":279,"3295":347,"3296":184,"3297":251,"3298":218,"3299":313,"3300":282,"3301":313,"3302":259,"3303":187,"3304":274,"3305":335,"3306":218,"3307":264,"3308":250,"3309":286,"3310":350,"3311":283,"3312":363,"3313":258,"3314":238,"3315":341,"3316":190,"3317":361,"3318":302,"3319":232,"3320":311,"3321":368,"3322":213,"3323":183,"3324":240,"3325":303,"3326":230,"3327":195,"3328":225,"3329":220,"3330":360,"3331":187,"3332":363,"3333":281,"3334":379,"3335":346,"3336":250,"3337":361,"3338":362,"3339":247,"3340":248,"3341":194,"3342":299,"3343":268,"3344":258,"3345":273,"3346":307,"3347":211,"3348":309,"3349":232,"3350":369,"3351":309,"3352":311,"3353":323,"3354":331,"3355":225,"3356":238,"3357":249,"3358":298,"3359":259,"3360":316,"3361":342,"3362":273,"3363":338,"3364":365,"3365":311,"3366":342,"3367":343,"3368":209,"3369":302,"3370":290,"3371":338,"3372":291,"3373":214,"3374":319,"3375":279,"3376":359,"3377":293,"3378":259,"3379":293,"3380":205,"3381":293,"3382":175,"3383":330,"3384":355,"3385":204,"3386":210,"3387":183,"3388":202,"3389":283,"3390":180,"3391":366,"3392":221,"3393":309,"3394":282,"3395":182,"3396":333,"3397":217,"3398":265,"3399":283,"3400":207,"3401":311,"3402":266,"3403":174,"3404":265,"3405":253,"3406":175,"3407":295,"3408":298,"3409":189,"3410":302,"3411":212,"3412":189,"3413":309,"3414":310,"3415":181,"3416":246,"3417":256,"3418":371,"3419":348,"3420":344,"3421":259,"3422":211,"3423":281,"3424":273,"3425":365,"3426":353,"3427":361,"3428":303,"3429":249,"3430":187,"3431":273,"3432":279,"3433":254,"3434":199,"3435":212,"3436":349,"3437":326,"3438":259,"3439":211,"3440":382,"3441":250,"3442":260,"3443":376,"3444":257,"3445":187,"3446":283,"3447":183,"3448":309,"3449":194,"3450":216,"3451":243,"3452":180,"3453":284,"3454":261,"3455":267,"3456":183,"3457":286,"3458":282,"3459":361,"3460":275,"3461":330,"3462":243,"3463":271,"3464":290,"3465":361,"3466":318,"3467":222,"3468":325,"3469":379,"3470":363,"3471":250,"3472":366,"3473":225,"3474":283,"3475":223,"3476":179,"3477":316,"3478":211,"3479":334,"3480":281,"3481":237,"3482":318,"3483":357,"3484":360,"3485":179,"3486":342,"3487":361,"3488":316,"3489":318,"3490":186,"3491":311,"3492":364,"3493":282,"3494":248,"3495":255,"3496":202,"3497":216,"3498":344,"3499":341,"3500":183,"3501":233,"3502":204,"3503":365,"3504":282,"3505":183,"3506":211,"3507":313,"3508":249,"3509":361,"3510":256,"3511":227,"3512":232,"3513":294,"3514":348,"3515":207,"3516":179,"3517":316,"3518":183,"3519":209,"3520":309,"3521":296,"3522":182,"3523":220,"3524":368,"3525":253,"3526":374,"3527":225,"3528":178,"3529":216,"3530":248,"3531":333,"3532":214,"3533":302,"3534":290,"3535":250,"3536":285,"3537":238,"3538":345,"3539":344,"3540":372,"3541":357,"3542":265,"3543":279,"3544":299,"3545":384,"3546":213,"3547":365,"3548":234,"3549":192,"3550":181,"3551":331,"3552":351,"3553":213,"3554":267,"3555":323,"3556":293,"3557":326,"3558":191,"3559":364,"3560":229,"3561":221,"3562":303,"3563":253,"3564":316,"3565":330,"3566":259,"3567":257,"3568":349,"3569":322,"3570":361,"3571":246,"3572":368,"3573":256,"3574":184,"3575":181,"3576":211,"3577":361,"3578":346,"3579":338,"3580":265,"3581":300,"3582":188,"3583":311,"3584":261,"3585":339,"3586":360,"3587":320,"3588":209,"3589":301,"3590":184,"3591":311,"3592":211,"3593":380,"3594":365,"3595":293,"3596":372,"3597":197,"3598":346,"3599":309,"3600":238,"3601":233,"3602":338,"3603":297,"3604":246,"3605":190,"3606":295,"3607":309,"3608":356,"3609":330,"3610":333,"3611":366,"3612":198,"3613":357,"3614":354,"3615":301,"3616":260,"3617":342,"3618":379,"3619":184,"3620":286,"3621":375,"3622":179,"3623":250,"3624":293,"3625":204,"3626":206,"3627":285,"3628":209,"3629":305,"3630":346,"3631":243,"3632":342,"3633":366,"3634":405,"3635":396,"3636":410,"3637":393,"3638":404,"3639":467,"3640":393,"3641":405,"3642":468,"3643":404,"3644":463,"3645":403,"3646":425,"3647":403,"3648":429,"3649":449,"3650":396,"3651":429,"3652":439,"3653":414,"3654":441,"3655":404,"3656":403,"3657":432,"3658":401,"3659":400,"3660":441,"3661":429,"3662":397,"3663":414,"3664":449,"3665":436,"3666":447,"3667":420,"3668":468,"3669":393,"3670":467,"3671":416,"3672":392,"3673":387,"3674":396,"3675":432,"3676":393,"3677":464,"3678":403,"3679":391,"3680":385,"3681":469,"3682":450,"3683":445,"3684":444,"3685":468,"3686":385,"3687":404,"3688":429,"3689":409,"3690":422,"3691":447,"3692":462,"3693":446,"3694":427,"3695":417,"3696":422,"3697":404,"3698":422,"3699":469,"3700":441,"3701":391,"3702":414,"3703":455,"3704":405,"3705":421,"3706":455,"3707":389,"3708":424,"3709":396,"3710":436,"3711":403,"3712":455,"3713":422,"3714":458,"3715":385,"3716":400,"3717":459,"3718":429,"3719":389,"3720":407,"3721":386,"3722":405,"3723":403,"3724":455,"3725":416,"3726":459,"3727":467,"3728":414,"3729":444,"3730":393,"3731":441,"3732":453,"3733":455,"3734":400,"3735":422,"3736":404,"3737":396,"3738":422,"3739":414,"3740":421,"3741":436,"3742":433,"3743":453,"3744":417,"3745":387,"3746":468,"3747":427,"3748":469,"3749":455,"3750":460,"3751":420,"3752":429,"3753":469,"3754":445,"3755":416,"3756":468,"3757":453,"3758":387,"3759":435,"3760":462,"3761":396,"3762":445,"3763":419,"3764":416,"3765":396,"3766":405,"3767":429,"3768":413,"3769":391,"3770":439,"3771":456,"3772":451,"3773":432,"3774":438,"3775":460,"3776":413,"3777":396,"3778":431,"3779":433,"3780":468,"3781":435,"3782":442,"3783":430,"3784":390,"3785":430,"3786":445,"3787":429,"3788":414,"3789":407,"3790":393,"3791":429,"3792":399,"3793":425,"3794":459,"3795":396,"3796":432,"3797":430,"3798":420,"3799":403,"3800":407,"3801":391,"3802":393,"3803":455,"3804":453,"3805":459,"3806":465,"3807":395,"3808":438,"3809":429,"3810":423,"3811":455,"3812":387,"3813":465,"3814":391,"3815":453,"3816":449,"3817":422,"3818":407,"3819":426,"3820":441,"3821":469,"3822":410,"3823":416,"3824":396,"3825":447,"3826":429,"3827":402,"3828":393,"3829":453,"3830":393,"3831":444,"3832":410,"3833":429,"3834":422,"3835":427,"3836":422,"3837":455,"3838":441,"3839":401,"3840":463,"3841":403,"3842":425,"3843":414,"3844":441,"3845":433,"3846":422,"3847":400,"3848":438,"3849":403,"3850":414,"3851":430,"3852":446,"3853":426,"3854":468,"3855":391,"3856":398,"3857":449,"3858":459,"3859":440,"3860":388,"3861":432,"3862":406,"3863":403,"3864":410,"3865":393,"3866":433,"3867":429,"3868":414,"3869":389,"3870":432,"3871":422,"3872":434,"3873":460,"3874":453,"3875":407,"3876":402,"3877":393,"3878":441,"3879":426,"3880":400,"3881":410,"3882":463,"3883":463,"3884":444,"3885":456,"3886":469,"3887":453,"3888":405,"3889":403,"3890":464,"3891":391,"3892":391,"3893":458,"3894":408,"3895":441,"3896":459,"3897":459,"3898":396,"3899":425,"3900":391,"3901":425,"3902":387,"3903":404,"3904":390,"3905":449,"3906":393,"3907":429,"3908":424,"3909":412,"3910":448,"3911":389,"3912":438,"3913":405,"3914":392,"3915":455,"3916":441,"3917":422,"3918":405,"3919":436,"3920":425,"3921":444,"3922":431,"3923":429,"3924":393,"3925":396,"3926":390,"3927":430,"3928":407,"3929":397,"3930":427,"3931":462,"3932":438,"3933":396,"3934":396,"3935":402,"3936":421,"3937":466,"3938":391,"3939":441,"3940":385,"3941":448,"3942":454,"3943":459,"3944":432,"3945":414,"3946":422,"3947":429,"3948":389,"3949":462,"3950":467,"3951":455,"3952":411,"3953":463,"3954":436,"3955":463,"3956":441,"3957":465,"3958":404,"3959":403,"3960":417,"3961":403,"3962":416,"3963":430,"3964":459,"3965":394,"3966":467,"3967":422,"3968":441,"3969":395,"3970":422,"3971":453,"3972":410,"3973":411,"3974":452,"3975":445,"3976":455,"3977":408,"3978":443,"3979":454,"3980":444,"3981":457,"3982":455,"3983":405,"3984":428,"3985":428,"3986":410,"3987":436,"3988":451,"3989":462,"3990":403,"3991":432,"3992":445,"3993":427,"3994":462,"3995":393,"3996":453,"3997":458,"3998":441,"3999":429,"4000":468,"4001":410,"4002":467,"4003":403,"4004":455,"4005":387,"4006":396,"4007":397,"4008":455,"4009":423,"4010":455,"4011":438,"4012":386,"4013":469,"4014":403,"4015":406,"4016":403,"4017":389,"4018":460,"4019":430,"4020":455,"4021":447,"4022":460,"4023":385,"4024":449,"4025":453,"4026":405,"4027":423,"4028":385,"4029":469,"4030":438,"4031":441,"4032":455,"4033":426,"4034":409,"4035":427,"4036":444,"4037":395,"4038":407,"4039":461,"4040":409,"4041":405,"4042":428,"4043":455,"4044":390,"4045":385,"4046":415,"4047":421,"4048":392,"4049":429,"4050":421,"4051":435,"4052":438,"4053":408,"4054":387,"4055":430,"4056":469,"4057":442,"4058":455,"4059":460,"4060":400,"4061":407,"4062":392,"4063":457,"4064":410,"4065":411,"4066":407,"4067":453,"4068":427,"4069":464,"4070":393,"4071":417,"4072":396,"4073":459,"4074":469,"4075":442,"4076":386,"4077":459,"4078":424,"4079":403,"4080":387,"4081":458,"4082":445,"4083":457,"4084":387,"4085":389,"4086":444,"4087":417,"4088":438,"4089":393,"4090":462,"4091":436,"4092":446,"4093":457,"4094":385,"4095":464,"4096":463,"4097":429,"4098":440,"4099":461,"4100":436,"4101":461,"4102":393,"4103":455,"4104":394,"4105":429,"4106":451,"4107":418,"4108":449,"4109":422,"4110":439,"4111":403,"4112":389,"4113":414,"4114":441,"4115":409,"4116":464,"4117":454,"4118":449,"4119":444,"4120":404,"4121":438,"4122":462,"4123":438,"4124":422,"4125":450,"4126":393,"4127":434,"4128":410,"4129":420,"4130":393,"4131":463,"4132":402,"4133":435,"4134":432,"4135":468,"4136":436,"4137":452,"4138":388,"4139":429,"4140":434,"4141":389,"4142":466,"4143":408,"4144":391,"4145":454,"4146":448,"4147":391,"4148":391,"4149":462,"4150":432,"4151":462,"4152":414,"4153":443,"4154":410,"4155":391,"4156":393,"4157":425,"4158":391,"4159":435,"4160":449,"4161":403,"4162":455,"4163":394,"4164":452,"4165":393,"4166":414,"4167":468,"4168":402,"4169":448,"4170":391,"4171":408,"4172":417,"4173":408,"4174":445,"4175":403,"4176":465,"4177":437,"4178":439,"4179":411,"4180":433,"4181":441,"4182":451,"4183":410,"4184":451,"4185":394,"4186":451,"4187":468,"4188":451,"4189":414,"4190":385,"4191":455,"4192":432,"4193":455,"4194":429,"4195":416,"4196":457,"4197":455,"4198":393,"4199":392,"4200":437,"4201":422,"4202":468,"4203":396,"4204":430,"4205":416,"4206":459,"4207":403,"4208":396,"4209":432,"4210":399,"4211":449,"4212":429,"4213":409,"4214":452,"4215":441,"4216":391,"4217":441,"4218":464,"4219":441,"4220":424,"4221":441,"4222":396,"4223":445,"4224":391,"4225":413,"4226":421,"4227":441,"4228":453,"4229":465,"4230":424,"4231":459,"4232":438,"4233":448,"4234":429,"4235":426,"4236":410,"4237":433,"4238":387,"4239":411,"4240":459,"4241":462,"4242":413,"4243":421,"4244":405,"4245":437,"4246":429,"4247":396,"4248":392,"4249":428,"4250":409,"4251":463,"4252":390,"4253":455,"4254":409,"4255":431,"4256":410,"4257":453,"4258":464,"4259":465,"4260":455,"4261":436,"4262":439,"4263":403,"4264":453,"4265":430,"4266":405,"4267":419,"4268":449,"4269":450,"4270":444,"4271":396,"4272":462,"4273":419,"4274":396,"4275":455,"4276":430,"4277":388,"4278":408,"4279":393,"4280":443,"4281":406,"4282":389,"4283":462,"4284":430,"4285":396,"4286":405,"4287":385,"4288":444,"4289":403,"4290":393,"4291":471,"4292":472,"4293":471,"4294":475,"4295":475,"4296":484,"4297":479,"4298":475,"4299":476,"4300":485,"4301":471,"4302":475,"4303":485,"4304":479,"4305":484,"4306":483,"4307":476,"4308":479,"4309":480,"4310":485,"4311":476,"4312":485,"4313":471,"4314":475,"4315":472,"4316":476,"4317":471,"4318":475,"4319":479,"4320":472,"4321":477,"4322":476,"4323":472,"4324":483,"4325":476,"4326":477,"4327":474,"4328":479,"4329":484,"4330":471,"4331":484,"4332":475,"4333":479,"4334":476,"4335":485,"4336":477,"4337":482,"4338":471,"4339":485,"4340":472,"4341":485,"4342":473,"4343":483,"4344":475,"4345":473,"4346":480,"4347":470,"4348":474,"4349":470,"4350":480,"4351":479,"4352":481,"4353":475,"4354":475,"4355":476,"4356":485,"4357":479,"4358":485,"4359":477,"4360":476,"4361":479,"4362":471,"4363":475,"4364":471,"4365":479,"4366":473,"4367":485,"4368":482,"4369":482,"4370":480,"4371":471,"4372":485,"4373":479,"4374":470,"4375":479,"4376":475,"4377":482,"4378":473,"4379":482,"4380":471,"4381":476,"4382":479,"4383":485,"4384":479,"4385":476,"4386":474,"4387":476,"4388":475,"4389":476,"4390":474,"4391":478,"4392":476,"4393":478,"4394":471,"4395":479,"4396":476,"4397":474,"4398":476,"4399":485,"4400":475,"4401":472,"4402":477,"4403":471,"4404":485,"4405":475,"4406":471,"4407":480,"4408":481,"4409":475,"4410":479,"4411":478,"4412":484,"4413":472,"4414":480,"4415":476,"4416":471,"4417":471,"4418":471,"4419":479,"4420":485,"4421":477,"4422":471,"4423":479,"4424":479,"4425":482,"4426":477,"4427":470,"4428":477,"4429":475,"4430":477,"4431":471,"4432":470,"4433":472,"4434":477,"4435":477,"4436":473,"4437":474,"4438":476,"4439":482,"4440":475,"4441":474,"4442":477,"4443":471,"4444":479,"4445":471,"4446":479,"4447":472,"4448":484,"4449":480,"4450":483,"4451":477,"4452":476,"4453":472,"4454":499,"4455":502,"4456":495,"4457":507,"4458":486,"4459":506,"4460":523,"4461":532,"4462":503,"4463":508,"4464":498,"4465":517,"4466":490,"4467":523,"4468":504,"4469":510,"4470":526,"4471":518,"4472":488,"4473":534,"4474":526,"4475":506,"4476":534,"4477":516,"4478":525,"4479":524,"4480":499,"4481":525,"4482":532,"4483":536,"4484":500,"4485":524,"4486":504,"4487":523,"4488":491,"4489":524,"4490":515,"4491":513,"4492":529,"4493":487,"4494":521,"4495":522,"4496":535,"4497":502,"4498":507,"4499":517,"4500":525,"4501":531,"4502":497,"4503":534,"4504":522,"4505":521,"4506":534,"4507":510,"4508":517,"4509":493,"4510":512,"4511":535,"4512":535,"4513":518,"4514":527,"4515":525,"4516":490,"4517":503,"4518":516,"4519":516,"4520":532,"4521":505,"4522":515,"4523":506,"4524":505,"4525":527,"4526":502,"4527":508,"4528":533,"4529":521,"4530":497,"4531":536,"4532":527,"4533":521,"4534":519,"4535":520,"4536":525,"4537":522,"4538":495,"4539":487,"4540":516,"4541":527,"4542":525,"4543":532,"4544":529,"4545":490,"4546":501,"4547":525,"4548":507,"4549":502,"4550":510,"4551":490,"4552":516,"4553":502,"4554":512,"4555":533,"4556":515,"4557":532,"4558":494,"4559":525,"4560":501,"4561":518,"4562":515,"4563":523,"4564":518,"4565":521,"4566":498,"4567":522,"4568":530,"4569":497,"4570":521,"4571":519,"4572":532,"4573":527,"4574":517,"4575":519,"4576":529,"4577":515,"4578":521,"4579":530,"4580":523,"4581":525,"4582":526,"4583":516,"4584":494,"4585":515,"4586":490,"4587":518,"4588":532,"4589":520,"4590":515,"4591":495,"4592":495,"4593":498,"4594":521,"4595":531,"4596":523,"4597":520,"4598":532,"4599":521,"4600":490,"4601":518,"4602":509,"4603":515,"4604":508,"4605":525,"4606":515,"4607":518,"4608":515,"4609":497,"4610":490,"4611":532,"4612":502,"4613":525,"4614":519,"4615":519,"4616":523,"4617":490,"4618":535,"4619":502,"4620":496,"4621":498,"4622":489,"4623":527,"4624":498,"4625":523,"4626":521,"4627":526,"4628":492,"4629":489,"4630":521,"4631":523,"4632":511,"4633":516,"4634":534,"4635":491,"4636":520,"4637":524,"4638":511,"4639":529,"4640":532,"4641":502,"4642":498,"4643":525,"4644":523,"4645":489,"4646":490,"4647":533,"4648":515,"4649":487,"4650":489,"4651":499,"4652":520,"4653":487,"4654":534,"4655":486,"4656":515,"4657":506,"4658":515,"4659":498,"4660":508,"4661":527,"4662":490,"4663":489,"4664":490,"4665":502,"4666":518,"4667":529,"4668":492,"4669":489,"4670":532,"4671":532,"4672":502,"4673":501,"4674":495,"4675":522,"4676":502,"4677":487,"4678":532,"4679":532,"4680":502,"4681":516,"4682":502,"4683":534,"4684":486,"4685":486,"4686":524,"4687":509,"4688":505,"4689":534,"4690":527,"4691":515,"4692":487,"4693":533,"4694":487,"4695":513,"4696":502,"4697":513,"4698":522,"4699":508,"4700":510,"4701":510,"4702":497,"4703":532,"4704":487,"4705":498,"4706":507,"4707":515,"4708":525,"4709":517,"4710":497,"4711":490,"4712":508,"4713":522,"4714":529,"4715":510,"4716":501,"4717":502,"4718":515,"4719":534,"4720":504,"4721":529,"4722":532,"4723":502,"4724":532,"4725":511,"4726":497,"4727":509,"4728":534,"4729":499,"4730":508,"4731":535,"4732":507,"4733":510,"4734":492,"4735":525,"4736":517,"4737":506,"4738":496,"4739":498,"4740":532,"4741":515,"4742":501,"4743":529,"4744":500,"4745":511,"4746":486,"4747":527,"4748":493,"4749":520,"4750":523,"4751":522,"4752":504,"4753":532,"4754":521,"4755":490,"4756":502,"4757":521,"4758":511,"4759":518,"4760":515,"4761":496,"4762":512,"4763":524,"4764":505,"4765":515,"4766":510,"4767":512,"4768":518,"4769":498,"4770":506,"4771":532,"4772":488,"4773":509,"4774":499,"4775":519,"4776":502,"4777":529,"4778":525,"4779":502,"4780":515,"4781":512,"4782":486,"4783":517,"4784":531,"4785":525,"4786":502,"4787":521,"4788":490,"4789":496,"4790":490,"4791":517,"4792":529,"4793":532,"4794":530,"4795":521,"4796":532,"4797":513,"4798":497,"4799":532,"4800":491,"4801":521,"4802":535,"4803":535,"4804":502,"4805":521,"4806":532,"4807":486,"4808":513,"4809":487,"4810":501,"4811":517,"4812":524,"4813":521,"4814":486,"4815":527,"4816":512,"4817":529,"4818":501,"4819":534,"4820":490,"4821":526,"4822":498,"4823":512,"4824":519,"4825":511,"4826":504,"4827":497,"4828":486,"4829":509,"4830":501,"4831":497,"4832":515,"4833":502,"4834":522,"4835":519,"4836":501,"4837":520,"4838":512,"4839":515,"4840":501,"4841":528,"4842":490,"4843":497,"4844":522,"4845":514,"4846":525,"4847":526,"4848":503,"4849":521,"4850":497,"4851":490,"4852":496,"4853":519,"4854":508,"4855":501,"4856":509,"4857":503,"4858":503,"4859":518,"4860":525,"4861":495,"4862":496,"4863":523,"4864":531,"4865":509,"4866":492,"4867":508,"4868":510,"4869":502,"4870":535,"4871":528,"4872":513,"4873":534,"4874":490,"4875":496,"4876":487,"4877":515,"4878":525,"4879":497,"4880":521,"4881":497,"4882":489,"4883":511,"4884":495,"4885":504,"4886":516,"4887":509,"4888":510,"4889":492,"4890":490,"4891":490,"4892":520,"4893":518,"4894":510,"4895":536,"4896":509,"4897":490,"4898":509,"4899":521,"4900":508,"4901":524,"4902":534,"4903":525,"4904":535,"4905":498,"4906":497,"4907":511,"4908":490,"4909":511,"4910":497,"4911":517,"4912":522,"4913":535,"4914":515,"4915":498,"4916":532,"4917":497,"4918":488,"4919":493,"4920":520,"4921":502,"4922":487,"4923":502,"4924":487,"4925":517,"4926":506,"4927":489,"4928":511,"4929":524,"4930":499,"4931":521,"4932":520,"4933":490,"4934":521,"4935":515,"4936":516,"4937":517,"4938":502,"4939":495,"4940":503,"4941":496,"4942":486,"4943":521,"4944":532,"4945":511,"4946":525,"4947":532,"4948":506,"4949":490,"4950":497,"4951":502,"4952":523,"4953":510,"4954":510,"4955":525,"4956":510,"4957":524,"4958":499,"4959":487,"4960":521,"4961":489,"4962":505,"4963":489,"4964":503,"4965":514,"4966":532,"4967":531,"4968":508,"4969":525,"4970":526,"4971":532,"4972":525,"4973":514,"4974":558,"4975":547,"4976":551,"4977":549,"4978":540,"4979":540,"4980":539,"4981":540,"4982":556,"4983":559,"4984":539,"4985":546,"4986":538,"4987":540,"4988":538,"4989":548,"4990":554,"4991":549,"4992":540,"4993":549,"4994":555,"4995":546,"4996":550,"4997":559,"4998":548,"4999":540,"5000":542,"5001":559,"5002":557,"5003":543,"5004":548,"5005":549,"5006":557,"5007":539,"5008":538,"5009":542,"5010":555,"5011":540,"5012":546,"5013":541,"5014":548,"5015":553,"5016":551,"5017":546,"5018":546,"5019":543,"5020":546,"5021":548,"5022":540,"5023":559,"5024":541,"5025":549,"5026":559,"5027":546,"5028":547,"5029":559,"5030":554,"5031":540,"5032":549,"5033":540,"5034":550,"5035":546,"5036":544,"5037":553,"5038":541,"5039":554,"5040":555,"5041":555,"5042":557,"5043":543,"5044":539,"5045":542,"5046":538,"5047":553,"5048":538,"5049":540,"5050":540,"5051":550,"5052":538,"5053":539,"5054":546,"5055":546,"5056":546,"5057":541,"5058":538,"5059":544,"5060":554,"5061":555,"5062":549,"5063":553,"5064":554,"5065":537,"5066":559,"5067":538,"5068":546,"5069":540,"5070":550,"5071":539,"5072":558,"5073":546,"5074":555,"5075":558,"5076":552,"5077":558,"5078":537,"5079":551,"5080":538,"5081":559,"5082":555,"5083":548,"5084":539,"5085":546,"5086":546,"5087":538,"5088":549,"5089":546,"5090":547,"5091":540,"5092":552,"5093":540,"5094":551,"5095":541,"5096":550,"5097":541,"5098":551,"5099":547,"5100":538,"5101":541,"5102":540,"5103":556,"5104":556,"5105":547,"5106":547,"5107":559,"5108":541,"5109":539,"5110":542,"5111":556,"5112":539,"5113":538,"5114":547,"5115":558,"5116":550,"5117":546,"5118":539,"5119":539,"5120":546,"5121":539,"5122":553,"5123":559,"5124":559,"5125":558,"5126":538,"5127":538,"5128":547,"5129":559,"5130":544,"5131":550,"5132":543,"5133":553,"5134":540,"5135":559,"5136":558,"5137":546,"5138":538,"5139":539,"5140":559,"5141":539,"5142":539,"5143":557,"5144":540,"5145":538,"5146":540,"5147":546,"5148":542,"5149":551,"5150":551,"5151":542,"5152":538,"5153":559,"5154":553,"5155":539,"5156":557,"5157":550,"5158":557,"5159":557,"5160":539,"5161":538,"5162":558,"5163":550,"5164":548,"5165":542,"5166":552,"5167":541,"5168":538,"5169":559,"5170":551,"5171":546,"5172":549,"5173":554,"5174":550,"5175":559,"5176":539,"5177":554,"5178":540,"5179":559,"5180":556,"5181":540,"5182":542,"5183":541,"5184":556,"5185":554,"5186":542,"5187":559,"5188":545,"5189":546,"5190":546,"5191":546,"5192":559,"5193":539,"5194":557,"5195":559,"5196":541,"5197":540,"5198":547,"5199":555,"5200":545,"5201":539,"5202":590,"5203":622,"5204":597,"5205":603,"5206":589,"5207":614,"5208":614,"5209":561,"5210":626,"5211":578,"5212":579,"5213":601,"5214":578,"5215":608,"5216":572,"5217":615,"5218":614,"5219":572,"5220":612,"5221":590,"5222":587,"5223":622,"5224":576,"5225":582,"5226":603,"5227":589,"5228":590,"5229":606,"5230":597,"5231":573,"5232":627,"5233":592,"5234":579,"5235":568,"5236":577,"5237":560,"5238":566,"5239":610,"5240":590,"5241":613,"5242":583,"5243":568,"5244":615,"5245":565,"5246":588,"5247":577,"5248":562,"5249":621,"5250":579,"5251":603,"5252":603,"5253":610,"5254":625,"5255":625,"5256":597,"5257":597,"5258":577,"5259":597,"5260":561,"5261":610,"5262":591,"5263":620,"5264":565,"5265":561,"5266":596,"5267":572,"5268":628,"5269":615,"5270":588,"5271":566,"5272":588,"5273":623,"5274":578,"5275":569,"5276":597,"5277":587,"5278":561,"5279":577,"5280":583,"5281":570,"5282":622,"5283":573,"5284":586,"5285":615,"5286":614,"5287":613,"5288":565,"5289":604,"5290":570,"5291":597,"5292":588,"5293":586,"5294":560,"5295":565,"5296":570,"5297":603,"5298":622,"5299":592,"5300":561,"5301":573,"5302":591,"5303":561,"5304":608,"5305":610,"5306":613,"5307":570,"5308":622,"5309":595,"5310":580,"5311":564,"5312":593,"5313":580,"5314":580,"5315":601,"5316":603,"5317":561,"5318":578,"5319":573,"5320":565,"5321":590,"5322":562,"5323":560,"5324":586,"5325":614,"5326":605,"5327":582,"5328":577,"5329":564,"5330":622,"5331":565,"5332":561,"5333":613,"5334":560,"5335":610,"5336":563,"5337":589,"5338":613,"5339":587,"5340":605,"5341":603,"5342":612,"5343":593,"5344":565,"5345":607,"5346":605,"5347":614,"5348":580,"5349":568,"5350":590,"5351":560,"5352":615,"5353":571,"5354":604,"5355":574,"5356":615,"5357":602,"5358":615,"5359":614,"5360":568,"5361":605,"5362":613,"5363":578,"5364":566,"5365":560,"5366":603,"5367":601,"5368":613,"5369":560,"5370":568,"5371":592,"5372":597,"5373":622,"5374":603,"5375":623,"5376":570,"5377":603,"5378":607,"5379":572,"5380":579,"5381":625,"5382":600,"5383":606,"5384":624,"5385":583,"5386":619,"5387":626,"5388":587,"5389":602,"5390":568,"5391":573,"5392":610,"5393":615,"5394":576,"5395":574,"5396":615,"5397":612,"5398":622,"5399":610,"5400":560,"5401":595,"5402":621,"5403":573,"5404":561,"5405":615,"5406":623,"5407":616,"5408":612,"5409":625,"5410":573,"5411":560,"5412":616,"5413":590,"5414":608,"5415":606,"5416":605,"5417":597,"5418":583,"5419":604,"5420":579,"5421":561,"5422":572,"5423":586,"5424":622,"5425":580,"5426":597,"5427":568,"5428":625,"5429":594,"5430":597,"5431":572,"5432":593,"5433":573,"5434":560,"5435":572,"5436":565,"5437":612,"5438":586,"5439":571,"5440":573,"5441":597,"5442":622,"5443":570,"5444":580,"5445":617,"5446":580,"5447":625,"5448":622,"5449":622,"5450":597,"5451":622,"5452":622,"5453":599,"5454":583,"5455":561,"5456":573,"5457":565,"5458":608,"5459":573,"5460":615,"5461":610,"5462":574,"5463":622,"5464":590,"5465":578,"5466":621,"5467":573,"5468":563,"5469":621,"5470":612,"5471":603,"5472":578,"5473":564,"5474":560,"5475":614,"5476":604,"5477":573,"5478":592,"5479":627,"5480":614,"5481":589,"5482":610,"5483":608,"5484":577,"5485":583,"5486":603,"5487":605,"5488":577,"5489":613,"5490":622,"5491":612,"5492":623,"5493":565,"5494":575,"5495":625,"5496":587,"5497":593,"5498":597,"5499":564,"5500":560,"5501":616,"5502":622,"5503":606,"5504":592,"5505":561,"5506":586,"5507":587,"5508":605,"5509":573,"5510":615,"5511":613,"5512":610,"5513":616,"5514":610,"5515":582,"5516":563,"5517":614,"5518":604,"5519":627,"5520":610,"5521":628,"5522":565,"5523":590,"5524":597,"5525":622,"5526":609,"5527":611,"5528":561,"5529":588,"5530":625,"5531":568,"5532":612,"5533":567,"5534":591,"5535":592,"5536":615,"5537":625,"5538":593,"5539":621,"5540":582,"5541":589,"5542":560,"5543":610,"5544":622,"5545":572,"5546":565,"5547":614,"5548":610,"5549":614,"5550":561,"5551":613,"5552":572,"5553":609,"5554":582,"5555":589,"5556":571,"5557":613,"5558":565,"5559":613,"5560":573,"5561":578,"5562":578,"5563":573,"5564":622,"5565":614,"5566":621,"5567":619,"5568":592,"5569":607,"5570":605,"5571":560,"5572":621,"5573":597,"5574":615,"5575":562,"5576":597,"5577":569,"5578":607,"5579":606,"5580":561,"5581":578,"5582":565,"5583":578,"5584":572,"5585":625,"5586":575,"5587":607,"5588":579,"5589":576,"5590":610,"5591":587,"5592":612,"5593":576,"5594":611,"5595":619,"5596":608,"5597":616,"5598":628,"5599":586,"5600":572,"5601":610,"5602":613,"5603":597,"5604":560,"5605":597,"5606":612,"5607":597,"5608":561,"5609":597,"5610":589,"5611":586,"5612":626,"5613":602,"5614":593,"5615":567,"5616":624,"5617":597,"5618":619,"5619":625,"5620":604,"5621":560,"5622":614,"5623":593,"5624":599,"5625":574,"5626":603,"5627":622,"5628":626,"5629":588,"5630":560,"5631":607,"5632":565,"5633":625,"5634":614,"5635":596,"5636":566,"5637":571,"5638":565,"5639":597,"5640":625,"5641":587,"5642":597,"5643":607,"5644":584,"5645":614,"5646":603,"5647":569,"5648":575,"5649":602,"5650":610,"5651":561,"5652":573,"5653":618,"5654":581,"5655":592,"5656":597,"5657":565,"5658":561,"5659":578,"5660":573,"5661":627,"5662":628,"5663":611,"5664":590,"5665":573,"5666":597,"5667":560,"5668":560,"5669":615,"5670":597,"5671":608,"5672":572,"5673":605,"5674":616,"5675":597,"5676":565,"5677":564,"5678":568,"5679":587,"5680":580,"5681":616,"5682":561,"5683":578,"5684":577,"5685":573,"5686":560,"5687":578,"5688":614,"5689":560,"5690":589,"5691":571,"5692":625,"5693":606,"5694":562,"5695":574,"5696":578,"5697":622,"5698":560,"5699":615,"5700":568,"5701":613,"5702":565,"5703":565,"5704":560,"5705":591,"5706":574,"5707":573,"5708":573,"5709":588,"5710":622,"5711":599,"5712":565,"5713":588,"5714":626,"5715":561,"5716":560,"5717":560,"5718":592,"5719":619,"5720":560,"5721":616,"5722":595,"5723":568,"5724":573,"5725":614,"5726":597,"5727":585,"5728":577,"5729":612,"5730":616,"5731":607,"5732":578,"5733":602,"5734":568,"5735":583,"5736":561,"5737":569,"5738":628,"5739":610,"5740":621,"5741":601,"5742":562,"5743":573,"5744":592,"5745":607,"5746":560,"5747":577,"5748":604,"5749":560,"5750":612,"5751":590,"5752":607,"5753":560,"5754":561,"5755":592,"5756":562,"5757":616,"5758":580,"5759":586,"5760":624,"5761":565,"5762":582,"5763":610,"5764":565,"5765":599,"5766":573,"5767":616,"5768":621,"5769":613,"5770":571,"5771":612,"5772":561,"5773":599,"5774":616,"5775":573,"5776":605,"5777":605,"5778":622,"5779":561,"5780":573,"5781":614,"5782":622,"5783":626,"5784":603,"5785":590,"5786":597,"5787":561,"5788":597,"5789":613,"5790":573,"5791":574,"5792":605,"5793":568,"5794":605,"5795":576,"5796":580,"5797":621,"5798":583,"5799":615,"5800":573,"5801":591,"5802":613,"5803":597,"5804":563,"5805":594,"5806":596,"5807":610,"5808":560,"5809":597,"5810":565,"5811":625,"5812":586,"5813":586,"5814":597,"5815":588,"5816":560,"5817":573,"5818":599,"5819":561,"5820":569,"5821":622,"5822":611,"5823":583,"5824":565,"5825":615,"5826":561,"5827":613,"5828":560,"5829":573,"5830":603,"5831":621,"5832":616,"5833":619,"5834":573,"5835":610,"5836":607,"5837":598,"5838":606,"5839":565,"5840":608,"5841":613,"5842":604,"5843":599,"5844":573,"5845":573,"5846":610,"5847":589,"5848":614,"5849":560,"5850":622,"5851":561,"5852":596,"5853":613,"5854":580,"5855":578,"5856":615,"5857":590,"5858":597,"5859":570,"5860":709,"5861":741,"5862":707,"5863":717,"5864":666,"5865":685,"5866":634,"5867":697,"5868":648,"5869":642,"5870":730,"5871":726,"5872":692,"5873":715,"5874":653,"5875":642,"5876":708,"5877":662,"5878":646,"5879":715,"5880":717,"5881":659,"5882":688,"5883":630,"5884":716,"5885":634,"5886":717,"5887":709,"5888":710,"5889":687,"5890":664,"5891":700,"5892":677,"5893":669,"5894":680,"5895":640,"5896":693,"5897":696,"5898":697,"5899":725,"5900":703,"5901":680,"5902":710,"5903":736,"5904":696,"5905":713,"5906":672,"5907":738,"5908":742,"5909":642,"5910":632,"5911":727,"5912":686,"5913":687,"5914":677,"5915":669,"5916":652,"5917":634,"5918":691,"5919":652,"5920":724,"5921":648,"5922":696,"5923":631,"5924":667,"5925":640,"5926":659,"5927":637,"5928":639,"5929":740,"5930":667,"5931":691,"5932":727,"5933":682,"5934":682,"5935":643,"5936":720,"5937":739,"5938":718,"5939":710,"5940":678,"5941":688,"5942":672,"5943":688,"5944":691,"5945":734,"5946":742,"5947":729,"5948":726,"5949":629,"5950":722,"5951":662,"5952":645,"5953":718,"5954":660,"5955":694,"5956":640,"5957":634,"5958":672,"5959":702,"5960":706,"5961":629,"5962":732,"5963":729,"5964":704,"5965":717,"5966":726,"5967":700,"5968":702,"5969":688,"5970":717,"5971":697,"5972":670,"5973":740,"5974":702,"5975":640,"5976":639,"5977":721,"5978":729,"5979":666,"5980":667,"5981":662,"5982":685,"5983":667,"5984":726,"5985":669,"5986":734,"5987":706,"5988":631,"5989":706,"5990":646,"5991":715,"5992":705,"5993":693,"5994":654,"5995":660,"5996":735,"5997":704,"5998":695,"5999":688,"6000":646,"6001":653,"6002":643,"6003":645,"6004":688,"6005":716,"6006":731,"6007":706,"6008":710,"6009":647,"6010":720,"6011":717,"6012":717,"6013":645,"6014":663,"6015":677,"6016":741,"6017":647,"6018":734,"6019":717,"6020":641,"6021":684,"6022":655,"6023":634,"6024":643,"6025":688,"6026":678,"6027":651,"6028":694,"6029":668,"6030":643,"6031":734,"6032":703,"6033":649,"6034":645,"6035":645,"6036":691,"6037":666,"6038":730,"6039":657,"6040":695,"6041":670,"6042":698,"6043":699,"6044":646,"6045":657,"6046":656,"6047":650,"6048":671,"6049":688,"6050":655,"6051":711,"6052":636,"6053":734,"6054":682,"6055":660,"6056":698,"6057":639,"6058":731,"6059":695,"6060":694,"6061":677,"6062":727,"6063":660,"6064":674,"6065":682,"6066":731,"6067":648,"6068":638,"6069":650,"6070":704,"6071":722,"6072":694,"6073":731,"6074":690,"6075":653,"6076":741,"6077":704,"6078":738,"6079":715,"6080":729,"6081":715,"6082":677,"6083":677,"6084":716,"6085":652,"6086":722,"6087":663,"6088":644,"6089":682,"6090":634,"6091":730,"6092":691,"6093":680,"6094":652,"6095":686,"6096":633,"6097":720,"6098":688,"6099":677,"6100":676,"6101":730,"6102":740,"6103":672,"6104":632,"6105":732,"6106":738,"6107":727,"6108":731,"6109":717,"6110":726,"6111":729,"6112":687,"6113":712,"6114":709,"6115":686,"6116":650,"6117":704,"6118":652,"6119":639,"6120":679,"6121":687,"6122":648,"6123":636,"6124":691,"6125":727,"6126":632,"6127":652,"6128":646,"6129":711,"6130":632,"6131":691,"6132":666,"6133":698,"6134":667,"6135":667,"6136":656,"6137":691,"6138":700,"6139":687,"6140":721,"6141":662,"6142":688,"6143":696,"6144":721,"6145":674,"6146":654,"6147":696,"6148":634,"6149":655,"6150":717,"6151":636,"6152":694,"6153":697,"6154":691,"6155":726,"6156":676,"6157":641,"6158":690,"6159":691,"6160":717,"6161":672,"6162":689,"6163":642,"6164":641,"6165":714,"6166":657,"6167":637,"6168":651,"6169":686,"6170":724,"6171":654,"6172":700,"6173":694,"6174":652,"6175":635,"6176":742,"6177":641,"6178":667,"6179":690,"6180":629,"6181":634,"6182":632,"6183":685,"6184":688,"6185":731,"6186":655,"6187":715,"6188":635,"6189":728,"6190":700,"6191":646,"6192":728,"6193":716,"6194":694,"6195":691,"6196":726,"6197":715,"6198":728,"6199":680,"6200":697,"6201":694,"6202":641,"6203":644,"6204":677,"6205":727,"6206":704,"6207":662,"6208":687,"6209":651,"6210":717,"6211":694,"6212":738,"6213":677,"6214":633,"6215":632,"6216":668,"6217":726,"6218":656,"6219":691,"6220":688,"6221":720,"6222":720,"6223":677,"6224":682,"6225":731,"6226":632,"6227":676,"6228":728,"6229":726,"6230":641,"6231":639,"6232":678,"6233":677,"6234":641,"6235":716,"6236":639,"6237":731,"6238":717,"6239":734,"6240":669,"6241":652,"6242":685,"6243":736,"6244":629,"6245":740,"6246":669,"6247":659,"6248":635,"6249":709,"6250":742,"6251":710,"6252":645,"6253":704,"6254":716,"6255":655,"6256":726,"6257":672,"6258":736,"6259":706,"6260":672,"6261":629,"6262":677,"6263":697,"6264":687,"6265":720,"6266":686,"6267":660,"6268":678,"6269":733,"6270":652,"6271":734,"6272":697,"6273":704,"6274":635,"6275":711,"6276":721,"6277":724,"6278":632,"6279":652,"6280":727,"6281":696,"6282":742,"6283":691,"6284":727,"6285":679,"6286":668,"6287":687,"6288":634,"6289":735,"6290":703,"6291":635,"6292":697,"6293":673,"6294":729,"6295":742,"6296":697,"6297":641,"6298":735,"6299":735,"6300":704,"6301":726,"6302":686,"6303":648,"6304":680,"6305":644,"6306":720,"6307":678,"6308":634,"6309":632,"6310":666,"6311":637,"6312":729,"6313":660,"6314":713,"6315":739,"6316":724,"6317":688,"6318":715,"6319":645,"6320":738,"6321":655,"6322":645,"6323":641,"6324":677,"6325":667,"6326":720,"6327":668,"6328":732,"6329":678,"6330":652,"6331":641,"6332":662,"6333":660,"6334":704,"6335":740,"6336":645,"6337":632,"6338":634,"6339":738,"6340":697,"6341":685,"6342":664,"6343":630,"6344":648,"6345":740,"6346":731,"6347":737,"6348":691,"6349":677,"6350":698,"6351":688,"6352":677,"6353":648,"6354":666,"6355":717,"6356":675,"6357":655,"6358":719,"6359":669,"6360":677,"6361":641,"6362":667,"6363":632,"6364":667,"6365":638,"6366":660,"6367":640,"6368":694,"6369":696,"6370":728,"6371":677,"6372":643,"6373":699,"6374":663,"6375":633,"6376":635,"6377":696,"6378":650,"6379":645,"6380":714,"6381":651,"6382":667,"6383":738,"6384":741,"6385":644,"6386":742,"6387":688,"6388":641,"6389":707,"6390":720,"6391":680,"6392":645,"6393":680,"6394":742,"6395":677,"6396":652,"6397":714,"6398":635,"6399":734,"6400":691,"6401":683,"6402":742,"6403":674,"6404":647,"6405":632,"6406":660,"6407":657,"6408":660,"6409":698,"6410":643,"6411":704,"6412":643,"6413":640,"6414":660,"6415":647,"6416":671,"6417":645,"6418":641,"6419":675,"6420":646,"6421":641,"6422":650,"6423":741,"6424":717,"6425":727,"6426":688,"6427":727,"6428":677,"6429":645,"6430":676,"6431":641,"6432":695,"6433":697,"6434":707,"6435":742,"6436":700,"6437":686,"6438":729,"6439":639,"6440":742,"6441":635,"6442":688,"6443":677,"6444":634,"6445":694,"6446":687,"6447":726,"6448":666,"6449":716,"6450":694,"6451":659,"6452":636,"6453":658,"6454":645,"6455":678,"6456":661,"6457":704,"6458":742,"6459":641,"6460":696,"6461":688,"6462":646,"6463":704,"6464":680,"6465":716,"6466":704,"6467":697,"6468":704,"6469":634,"6470":716,"6471":685,"6472":720,"6473":644,"6474":703,"6475":629,"6476":647,"6477":734,"6478":690,"6479":650,"6480":694,"6481":666,"6482":677,"6483":726,"6484":694,"6485":687,"6486":630,"6487":669,"6488":681,"6489":700,"6490":635,"6491":694,"6492":720,"6493":687,"6494":726,"6495":703,"6496":662,"6497":712,"6498":719,"6499":629,"6500":634,"6501":734,"6502":695,"6503":713,"6504":704,"6505":739,"6506":652,"6507":650,"6508":681,"6509":726,"6510":641,"6511":717,"6512":725,"6513":632,"6514":632,"6515":727,"6516":674,"6517":735,"6518":705,"6519":650,"6520":646,"6521":637,"6522":730,"6523":716,"6524":646,"6525":734,"6526":661,"6527":645,"6528":644,"6529":636,"6530":685,"6531":680,"6532":734,"6533":741,"6534":742,"6535":697,"6536":716,"6537":720,"6538":650,"6539":641,"6540":638,"6541":697,"6542":648,"6543":694,"6544":680,"6545":676,"6546":643,"6547":726,"6548":652,"6549":684,"6550":663,"6551":652,"6552":734,"6553":719,"6554":688,"6555":678,"6556":738,"6557":728,"6558":731,"6559":717,"6560":742,"6561":633,"6562":704,"6563":727,"6564":721,"6565":691,"6566":688,"6567":665,"6568":666,"6569":655,"6570":734,"6571":716,"6572":652,"6573":678,"6574":709,"6575":731,"6576":694,"6577":666,"6578":723,"6579":634,"6580":706,"6581":682,"6582":674,"6583":639,"6584":702,"6585":643,"6586":704,"6587":633,"6588":730,"6589":634,"6590":726,"6591":726,"6592":688,"6593":641,"6594":634,"6595":641,"6596":695,"6597":734,"6598":659,"6599":683,"6600":718,"6601":646,"6602":680,"6603":737,"6604":704,"6605":639,"6606":634,"6607":703,"6608":676,"6609":694,"6610":719,"6611":656,"6612":726,"6613":726,"6614":688,"6615":643,"6616":734,"6617":697,"6618":738,"6619":700,"6620":720,"6621":635,"6622":678,"6623":738,"6624":679,"6625":710,"6626":648,"6627":691,"6628":652,"6629":734,"6630":653,"6631":691,"6632":717,"6633":632,"6634":701,"6635":646,"6636":738,"6637":740,"6638":662,"6639":706,"6640":705,"6641":730,"6642":729,"6643":645,"6644":698,"6645":729,"6646":702,"6647":639,"6648":712,"6649":655,"6650":715,"6651":659,"6652":660,"6653":731,"6654":634,"6655":680,"6656":674,"6657":703,"6658":701,"6659":635,"6660":724,"6661":630,"6662":721,"6663":704,"6664":639,"6665":703,"6666":691,"6667":735,"6668":671,"6669":634,"6670":740,"6671":721,"6672":634,"6673":728,"6674":691,"6675":664,"6676":717,"6677":718,"6678":656,"6679":726,"6680":667,"6681":708,"6682":694,"6683":713,"6684":672,"6685":656,"6686":629,"6687":648,"6688":704,"6689":641,"6690":687,"6691":717,"6692":643,"6693":629,"6694":638,"6695":738,"6696":737,"6697":734,"6698":634,"6699":681,"6700":728,"6701":668,"6702":630,"6703":719,"6704":717,"6705":634,"6706":732,"6707":655,"6708":666,"6709":642,"6710":631,"6711":697,"6712":742,"6713":651,"6714":729,"6715":672,"6716":721,"6717":634,"6718":716,"6719":691,"6720":740,"6721":711,"6722":690,"6723":685,"6724":634,"6725":667,"6726":689,"6727":717,"6728":643,"6729":709,"6730":639,"6731":737,"6732":632,"6733":629,"6734":685,"6735":669,"6736":657,"6737":685,"6738":655,"6739":733,"6740":732,"6741":742,"6742":678,"6743":734,"6744":629,"6745":662,"6746":639,"6747":725,"6748":676,"6749":725,"6750":651,"6751":697,"6752":642,"6753":641,"6754":731,"6755":717,"6756":732,"6757":645,"6758":734,"6759":653,"6760":738,"6761":682,"6762":725,"6763":645,"6764":717,"6765":688,"6766":720,"6767":697,"6768":726,"6769":695,"6770":659,"6771":716,"6772":657,"6773":703,"6774":657,"6775":718,"6776":666,"6777":711,"6778":667,"6779":736,"6780":652,"6781":709,"6782":720,"6783":694,"6784":668,"6785":666,"6786":661,"6787":742,"6788":702,"6789":641,"6790":738,"6791":720,"6792":629,"6793":726,"6794":729,"6795":704,"6796":728,"6797":645,"6798":629,"6799":691,"6800":672,"6801":643,"6802":678,"6803":652,"6804":642,"6805":710,"6806":688,"6807":641,"6808":678,"6809":726,"6810":685,"6811":698,"6812":645,"6813":697,"6814":710,"6815":740,"6816":729,"6817":667,"6818":703,"6819":720,"6820":703,"6821":639,"6822":702,"6823":686,"6824":639,"6825":641,"6826":691,"6827":694,"6828":697,"6829":725,"6830":632,"6831":641,"6832":660,"6833":652,"6834":742,"6835":678,"6836":700,"6837":726,"6838":652,"6839":738,"6840":640,"6841":727,"6842":738,"6843":655,"6844":694,"6845":726,"6846":688,"6847":663,"6848":647,"6849":731,"6850":695,"6851":655,"6852":636,"6853":634,"6854":649,"6855":647,"6856":645,"6857":677,"6858":665,"6859":634,"6860":717,"6861":713,"6862":683,"6863":660,"6864":646,"6865":704,"6866":691,"6867":722,"6868":651,"6869":632,"6870":717,"6871":660,"6872":655,"6873":688,"6874":738,"6875":681,"6876":660,"6877":657,"6878":641,"6879":730,"6880":635,"6881":694,"6882":706,"6883":693,"6884":688,"6885":725,"6886":676,"6887":662,"6888":669,"6889":704,"6890":717,"6891":655,"6892":688,"6893":648,"6894":717,"6895":709,"6896":634,"6897":688,"6898":682,"6899":634,"6900":658,"6901":715,"6902":711,"6903":688,"6904":650,"6905":734,"6906":688,"6907":720,"6908":691,"6909":691,"6910":657,"6911":718,"6912":699,"6913":717,"6914":681,"6915":736,"6916":687,"6917":702,"6918":654,"6919":641,"6920":726,"6921":715,"6922":640,"6923":717,"6924":711,"6925":678,"6926":677,"6927":648,"6928":694,"6929":639,"6930":635,"6931":742,"6932":709,"6933":635,"6934":715,"6935":687,"6936":691,"6937":709,"6938":645,"6939":720,"6940":688,"6941":700,"6942":659,"6943":687,"6944":698,"6945":713,"6946":656,"6947":696,"6948":713,"6949":643,"6950":726,"6951":669,"6952":677,"6953":648,"6954":727,"6955":660,"6956":721,"6957":634,"6958":657,"6959":700,"6960":701,"6961":635,"6962":737,"6963":740,"6964":655,"6965":704,"6966":691,"6967":657,"6968":716,"6969":643,"6970":680,"6971":683,"6972":720,"6973":705,"6974":662,"6975":667,"6976":720,"6977":734,"6978":734,"6979":660,"6980":703,"6981":668,"6982":641,"6983":704,"6984":645,"6985":634,"6986":750,"6987":753,"6988":762,"6989":762,"6990":762,"6991":749,"6992":762,"6993":760,"6994":763,"6995":753,"6996":752,"6997":764,"6998":761,"6999":744,"7000":752,"7001":755,"7002":752,"7003":760,"7004":764,"7005":760,"7006":750,"7007":752,"7008":760,"7009":752,"7010":746,"7011":750,"7012":753,"7013":763,"7014":756,"7015":763,"7016":744,"7017":763,"7018":753,"7019":753,"7020":758,"7021":752,"7022":763,"7023":748,"7024":750,"7025":760,"7026":762,"7027":750,"7028":753,"7029":747,"7030":762,"7031":764,"7032":750,"7033":753,"7034":763,"7035":752,"7036":753,"7037":752,"7038":753,"7039":755,"7040":760,"7041":760,"7042":763,"7043":750,"7044":764,"7045":764,"7046":752,"7047":765,"7048":756,"7049":765,"7050":765,"7051":758,"7052":764,"7053":760,"7054":765,"7055":748,"7056":752,"7057":752,"7058":752,"7059":744,"7060":760,"7061":763,"7062":750,"7063":763,"7064":764,"7065":763,"7066":744,"7067":763,"7068":756,"7069":765,"7070":752,"7071":752,"7072":760,"7073":752,"7074":763,"7075":745,"7076":745,"7077":760,"7078":765,"7079":760,"7080":753,"7081":748,"7082":757,"7083":749,"7084":760,"7085":745,"7086":763,"7087":748,"7088":760,"7089":743,"7090":752,"7091":764,"7092":746,"7093":765,"7094":761,"7095":748,"7096":765,"7097":762,"7098":745,"7099":753,"7100":763,"7101":753,"7102":752,"7103":760,"7104":762,"7105":760,"7106":745,"7107":760,"7108":748,"7109":756,"7110":751,"7111":748,"7112":760,"7113":744,"7114":750,"7115":763,"7116":764,"7117":763,"7118":748,"7119":763,"7120":752,"7121":762,"7122":756,"7123":753,"7124":752,"7125":764,"7126":748,"7127":744,"7128":753,"7129":762,"7130":752,"7131":760,"7132":760,"7133":764,"7134":760,"7135":753,"7136":758,"7137":752,"7138":759,"7139":756,"7140":764,"7141":761,"7142":752,"7143":756,"7144":750,"7145":764,"7146":746,"7147":752,"7148":757,"7149":762,"7150":753,"7151":761,"7152":750,"7153":750,"7154":747,"7155":750,"7156":748,"7157":755,"7158":750,"7159":764,"7160":764,"7161":764,"7162":760,"7163":752,"7164":748,"7165":765,"7166":764,"7167":764,"7168":756,"7169":748,"7170":748,"7171":764,"7172":753,"7173":761,"7174":750,"7175":764,"7176":752,"7177":748,"7178":753,"7179":745,"7180":760,"7181":763,"7182":759,"7183":743,"7184":744,"7185":760,"7186":763,"7187":764,"7188":753,"7189":754,"7190":762,"7191":764,"7192":747,"7193":762,"7194":759,"7195":752,"7196":760,"7197":750,"7198":760,"7199":752,"7200":752,"7201":760,"7202":765,"7203":762,"7204":762,"7205":764,"7206":752,"7207":760,"7208":760,"7209":763,"7210":764,"7211":760,"7212":753,"7213":763,"7214":750,"7215":765,"7216":759,"7217":759,"7218":745,"7219":760,"7220":745,"7221":750,"7222":752,"7223":745,"7224":750,"7225":764,"7226":753,"7227":760,"7228":760,"7229":763,"7230":762,"7231":753,"7232":747,"7233":752,"7234":756,"7235":784,"7236":804,"7237":838,"7238":768,"7239":861,"7240":889,"7241":869,"7242":843,"7243":915,"7244":835,"7245":894,"7246":874,"7247":881,"7248":893,"7249":811,"7250":890,"7251":913,"7252":822,"7253":835,"7254":772,"7255":849,"7256":831,"7257":811,"7258":885,"7259":778,"7260":909,"7261":779,"7262":844,"7263":891,"7264":810,"7265":774,"7266":858,"7267":774,"7268":872,"7269":887,"7270":827,"7271":882,"7272":791,"7273":779,"7274":767,"7275":811,"7276":810,"7277":823,"7278":852,"7279":845,"7280":815,"7281":872,"7282":867,"7283":788,"7284":811,"7285":771,"7286":811,"7287":895,"7288":852,"7289":891,"7290":776,"7291":816,"7292":878,"7293":800,"7294":870,"7295":910,"7296":822,"7297":859,"7298":789,"7299":876,"7300":901,"7301":773,"7302":905,"7303":806,"7304":915,"7305":828,"7306":892,"7307":914,"7308":812,"7309":894,"7310":864,"7311":811,"7312":800,"7313":823,"7314":839,"7315":811,"7316":889,"7317":815,"7318":817,"7319":901,"7320":784,"7321":836,"7322":898,"7323":788,"7324":771,"7325":789,"7326":787,"7327":800,"7328":883,"7329":912,"7330":777,"7331":806,"7332":828,"7333":777,"7334":831,"7335":894,"7336":870,"7337":793,"7338":895,"7339":914,"7340":838,"7341":813,"7342":839,"7343":898,"7344":827,"7345":779,"7346":790,"7347":845,"7348":819,"7349":851,"7350":825,"7351":817,"7352":772,"7353":862,"7354":818,"7355":819,"7356":873,"7357":817,"7358":784,"7359":877,"7360":896,"7361":825,"7362":884,"7363":871,"7364":847,"7365":878,"7366":848,"7367":822,"7368":771,"7369":835,"7370":894,"7371":803,"7372":807,"7373":912,"7374":835,"7375":842,"7376":857,"7377":866,"7378":886,"7379":827,"7380":772,"7381":863,"7382":819,"7383":811,"7384":843,"7385":787,"7386":864,"7387":804,"7388":811,"7389":818,"7390":799,"7391":834,"7392":823,"7393":882,"7394":848,"7395":832,"7396":903,"7397":831,"7398":845,"7399":767,"7400":780,"7401":784,"7402":887,"7403":824,"7404":850,"7405":901,"7406":773,"7407":841,"7408":895,"7409":898,"7410":813,"7411":890,"7412":791,"7413":802,"7414":804,"7415":797,"7416":890,"7417":918,"7418":895,"7419":771,"7420":914,"7421":845,"7422":790,"7423":774,"7424":811,"7425":811,"7426":790,"7427":806,"7428":819,"7429":858,"7430":895,"7431":847,"7432":792,"7433":844,"7434":870,"7435":773,"7436":811,"7437":877,"7438":826,"7439":881,"7440":769,"7441":895,"7442":794,"7443":882,"7444":891,"7445":857,"7446":784,"7447":774,"7448":895,"7449":870,"7450":889,"7451":861,"7452":866,"7453":769,"7454":799,"7455":917,"7456":807,"7457":831,"7458":826,"7459":818,"7460":889,"7461":901,"7462":768,"7463":858,"7464":887,"7465":852,"7466":780,"7467":864,"7468":901,"7469":908,"7470":773,"7471":843,"7472":885,"7473":791,"7474":895,"7475":783,"7476":849,"7477":881,"7478":814,"7479":862,"7480":893,"7481":771,"7482":834,"7483":792,"7484":867,"7485":797,"7486":878,"7487":894,"7488":845,"7489":772,"7490":785,"7491":826,"7492":777,"7493":820,"7494":803,"7495":866,"7496":902,"7497":872,"7498":823,"7499":811,"7500":872,"7501":838,"7502":916,"7503":889,"7504":865,"7505":773,"7506":851,"7507":822,"7508":834,"7509":791,"7510":849,"7511":844,"7512":870,"7513":811,"7514":811,"7515":875,"7516":872,"7517":831,"7518":790,"7519":893,"7520":894,"7521":772,"7522":892,"7523":789,"7524":841,"7525":894,"7526":806,"7527":909,"7528":843,"7529":838,"7530":857,"7531":802,"7532":788,"7533":829,"7534":771,"7535":779,"7536":916,"7537":887,"7538":909,"7539":795,"7540":820,"7541":781,"7542":852,"7543":836,"7544":800,"7545":894,"7546":779,"7547":855,"7548":812,"7549":838,"7550":789,"7551":787,"7552":776,"7553":901,"7554":847,"7555":845,"7556":827,"7557":819,"7558":895,"7559":847,"7560":874,"7561":873,"7562":917,"7563":831,"7564":892,"7565":784,"7566":893,"7567":773,"7568":796,"7569":859,"7570":785,"7571":785,"7572":864,"7573":808,"7574":845,"7575":771,"7576":913,"7577":890,"7578":876,"7579":896,"7580":822,"7581":910,"7582":896,"7583":894,"7584":771,"7585":869,"7586":811,"7587":874,"7588":775,"7589":772,"7590":857,"7591":898,"7592":918,"7593":808,"7594":772,"7595":843,"7596":792,"7597":814,"7598":773,"7599":816,"7600":774,"7601":831,"7602":787,"7603":796,"7604":793,"7605":881,"7606":848,"7607":828,"7608":881,"7609":800,"7610":792,"7611":823,"7612":817,"7613":828,"7614":819,"7615":814,"7616":855,"7617":912,"7618":875,"7619":844,"7620":782,"7621":784,"7622":887,"7623":874,"7624":800,"7625":844,"7626":841,"7627":847,"7628":834,"7629":848,"7630":776,"7631":880,"7632":908,"7633":774,"7634":810,"7635":878,"7636":791,"7637":858,"7638":843,"7639":871,"7640":901,"7641":817,"7642":791,"7643":890,"7644":796,"7645":820,"7646":772,"7647":881,"7648":835,"7649":835,"7650":785,"7651":856,"7652":800,"7653":819,"7654":817,"7655":817,"7656":787,"7657":875,"7658":769,"7659":845,"7660":770,"7661":833,"7662":887,"7663":768,"7664":825,"7665":864,"7666":800,"7667":901,"7668":844,"7669":811,"7670":881,"7671":877,"7672":851,"7673":878,"7674":892,"7675":873,"7676":768,"7677":871,"7678":887,"7679":859,"7680":887,"7681":907,"7682":838,"7683":840,"7684":870,"7685":791,"7686":884,"7687":792,"7688":806,"7689":901,"7690":860,"7691":808,"7692":890,"7693":827,"7694":890,"7695":871,"7696":897,"7697":801,"7698":849,"7699":909,"7700":800,"7701":829,"7702":904,"7703":843,"7704":873,"7705":801,"7706":913,"7707":800,"7708":827,"7709":855,"7710":822,"7711":773,"7712":768,"7713":889,"7714":835,"7715":889,"7716":863,"7717":881,"7718":835,"7719":769,"7720":882,"7721":907,"7722":881,"7723":831,"7724":880,"7725":902,"7726":895,"7727":791,"7728":881,"7729":851,"7730":845,"7731":790,"7732":831,"7733":882,"7734":877,"7735":806,"7736":797,"7737":881,"7738":793,"7739":817,"7740":882,"7741":801,"7742":807,"7743":892,"7744":874,"7745":908,"7746":797,"7747":828,"7748":811,"7749":883,"7750":795,"7751":903,"7752":904,"7753":889,"7754":864,"7755":900,"7756":894,"7757":858,"7758":773,"7759":895,"7760":881,"7761":772,"7762":872,"7763":858,"7764":813,"7765":889,"7766":871,"7767":901,"7768":844,"7769":798,"7770":797,"7771":802,"7772":913,"7773":777,"7774":841,"7775":798,"7776":914,"7777":827,"7778":912,"7779":792,"7780":871,"7781":793,"7782":772,"7783":781,"7784":773,"7785":887,"7786":778,"7787":905,"7788":860,"7789":850,"7790":819,"7791":845,"7792":892,"7793":918,"7794":871,"7795":896,"7796":812,"7797":835,"7798":838,"7799":913,"7800":919,"7801":873,"7802":822,"7803":880,"7804":836,"7805":870,"7806":775,"7807":904,"7808":913,"7809":869,"7810":858,"7811":808,"7812":773,"7813":881,"7814":901,"7815":827,"7816":784,"7817":845,"7818":882,"7819":880,"7820":838,"7821":781,"7822":827,"7823":894,"7824":808,"7825":850,"7826":901,"7827":822,"7828":849,"7829":887,"7830":781,"7831":912,"7832":798,"7833":871,"7834":783,"7835":903,"7836":890,"7837":795,"7838":872,"7839":778,"7840":806,"7841":819,"7842":807,"7843":812,"7844":912,"7845":812,"7846":863,"7847":789,"7848":913,"7849":901,"7850":845,"7851":887,"7852":798,"7853":788,"7854":890,"7855":773,"7856":881,"7857":807,"7858":796,"7859":787,"7860":862,"7861":814,"7862":847,"7863":871,"7864":843,"7865":831,"7866":837,"7867":905,"7868":773,"7869":800,"7870":916,"7871":910,"7872":884,"7873":816,"7874":845,"7875":918,"7876":806,"7877":897,"7878":800,"7879":804,"7880":857,"7881":864,"7882":881,"7883":814,"7884":879,"7885":784,"7886":857,"7887":914,"7888":807,"7889":895,"7890":858,"7891":862,"7892":788,"7893":795,"7894":865,"7895":783,"7896":831,"7897":906,"7898":851,"7899":910,"7900":847,"7901":854,"7902":876,"7903":870,"7904":879,"7905":836,"7906":873,"7907":882,"7908":826,"7909":845,"7910":861,"7911":893,"7912":848,"7913":890,"7914":863,"7915":882,"7916":836,"7917":836,"7918":905,"7919":825,"7920":910,"7921":889,"7922":793,"7923":818,"7924":905,"7925":886,"7926":885,"7927":810,"7928":777,"7929":887,"7930":806,"7931":793,"7932":870,"7933":873,"7934":860,"7935":845,"7936":816,"7937":789,"7938":844,"7939":776,"7940":792,"7941":912,"7942":819,"7943":825,"7944":817,"7945":901,"7946":801,"7947":847,"7948":847,"7949":874,"7950":804,"7951":820,"7952":776,"7953":882,"7954":848,"7955":773,"7956":784,"7957":845,"7958":868,"7959":841,"7960":844,"7961":834,"7962":848,"7963":856,"7964":817,"7965":918,"7966":887,"7967":812,"7968":767,"7969":822,"7970":839,"7971":834,"7972":918,"7973":865,"7974":902,"7975":769,"7976":817,"7977":827,"7978":766,"7979":780,"7980":773,"7981":831,"7982":901,"7983":811,"7984":773,"7985":814,"7986":811,"7987":790,"7988":796,"7989":827,"7990":798,"7991":781,"7992":808,"7993":902,"7994":865,"7995":862,"7996":822,"7997":834,"7998":904,"7999":822,"8000":877,"8001":890,"8002":804,"8003":835,"8004":870,"8005":788,"8006":882,"8007":785,"8008":800,"8009":842,"8010":846,"8011":781,"8012":887,"8013":856,"8014":831,"8015":876,"8016":787,"8017":885,"8018":870,"8019":833,"8020":914,"8021":881,"8022":889,"8023":877,"8024":913,"8025":814,"8026":773,"8027":902,"8028":807,"8029":774,"8030":890,"8031":799,"8032":817,"8033":800,"8034":835,"8035":835,"8036":773,"8037":836,"8038":864,"8039":794,"8040":819,"8041":906,"8042":884,"8043":881,"8044":822,"8045":781,"8046":915,"8047":886,"8048":772,"8049":804,"8050":800,"8051":798,"8052":842,"8053":916,"8054":844,"8055":802,"8056":817,"8057":916,"8058":817,"8059":819,"8060":881,"8061":791,"8062":882,"8063":831,"8064":784,"8065":852,"8066":855,"8067":855,"8068":834,"8069":813,"8070":879,"8071":886,"8072":906,"8073":896,"8074":889,"8075":781,"8076":849,"8077":811,"8078":798,"8079":900,"8080":886,"8081":914,"8082":891,"8083":866,"8084":901,"8085":861,"8086":890,"8087":919,"8088":869,"8089":852,"8090":829,"8091":887,"8092":915,"8093":913,"8094":825,"8095":773,"8096":912,"8097":787,"8098":812,"8099":918,"8100":771,"8101":806,"8102":851,"8103":885,"8104":781,"8105":787,"8106":810,"8107":857,"8108":864,"8109":882,"8110":890,"8111":807,"8112":915,"8113":828,"8114":772,"8115":806,"8116":841,"8117":901,"8118":797,"8119":794,"8120":919,"8121":903,"8122":783,"8123":798,"8124":835,"8125":867,"8126":866,"8127":890,"8128":807,"8129":895,"8130":912,"8131":818,"8132":857,"8133":822,"8134":872,"8135":862,"8136":878,"8137":852,"8138":787,"8139":788,"8140":835,"8141":810,"8142":835,"8143":801,"8144":901,"8145":878,"8146":855,"8147":769,"8148":818,"8149":890,"8150":831,"8151":890,"8152":864,"8153":864,"8154":894,"8155":895,"8156":841,"8157":901,"8158":800,"8159":917,"8160":772,"8161":835,"8162":855,"8163":874,"8164":771,"8165":835,"8166":873,"8167":871,"8168":834,"8169":872,"8170":802,"8171":776,"8172":906,"8173":872,"8174":772,"8175":901,"8176":873,"8177":806,"8178":839,"8179":854,"8180":788,"8181":891,"8182":845,"8183":808,"8184":873,"8185":806,"8186":872,"8187":842,"8188":870,"8189":771,"8190":842,"8191":801,"8192":781,"8193":854,"8194":800,"8195":772,"8196":839,"8197":879,"8198":778,"8199":843,"8200":880,"8201":907,"8202":825,"8203":801,"8204":787,"8205":818,"8206":773,"8207":811,"8208":836,"8209":851,"8210":863,"8211":842,"8212":869,"8213":880,"8214":906,"8215":836,"8216":789,"8217":910,"8218":768,"8219":887,"8220":838,"8221":847,"8222":792,"8223":888,"8224":893,"8225":769,"8226":784,"8227":845,"8228":772,"8229":811,"8230":849,"8231":819,"8232":858,"8233":822,"8234":781,"8235":818,"8236":806,"8237":883,"8238":771,"8239":835,"8240":886,"8241":807,"8242":850,"8243":792,"8244":894,"8245":811,"8246":873,"8247":813,"8248":910,"8249":888,"8250":842,"8251":914,"8252":859,"8253":858,"8254":895,"8255":915,"8256":901,"8257":813,"8258":811,"8259":912,"8260":836,"8261":811,"8262":885,"8263":861,"8264":811,"8265":919,"8266":864,"8267":913,"8268":890,"8269":871,"8270":804,"8271":772,"8272":807,"8273":913,"8274":807,"8275":831,"8276":890,"8277":820,"8278":773,"8279":780,"8280":859,"8281":812,"8282":870,"8283":835,"8284":812,"8285":892,"8286":835,"8287":861,"8288":815,"8289":850,"8290":827,"8291":781,"8292":784,"8293":907,"8294":878,"8295":798,"8296":822,"8297":864,"8298":788,"8299":873,"8300":898,"8301":788,"8302":843,"8303":831,"8304":908,"8305":842,"8306":871,"8307":772,"8308":802,"8309":878,"8310":873,"8311":873,"8312":892,"8313":784,"8314":865,"8315":817,"8316":799,"8317":844,"8318":870,"8319":892,"8320":814,"8321":853,"8322":860,"8323":849,"8324":807,"8325":841,"8326":873,"8327":811,"8328":778,"8329":881,"8330":889,"8331":865,"8332":771,"8333":768,"8334":831,"8335":773,"8336":824,"8337":841,"8338":847,"8339":834,"8340":815,"8341":856,"8342":789,"8343":773,"8344":913,"8345":769,"8346":872,"8347":894,"8348":872,"8349":849,"8350":811,"8351":880,"8352":896,"8353":910,"8354":890,"8355":894,"8356":809,"8357":872,"8358":774,"8359":791,"8360":857,"8361":887,"8362":906,"8363":866,"8364":847,"8365":912,"8366":844,"8367":814,"8368":891,"8369":813,"8370":778,"8371":790,"8372":829,"8373":825,"8374":822,"8375":914,"8376":918,"8377":770,"8378":887,"8379":913,"8380":861,"8381":793,"8382":912,"8383":835,"8384":834,"8385":776,"8386":812,"8387":896,"8388":901,"8389":871,"8390":843,"8391":912,"8392":772,"8393":796,"8394":910,"8395":807,"8396":766,"8397":882,"8398":809,"8399":811,"8400":793,"8401":844,"8402":795,"8403":801,"8404":791,"8405":792,"8406":919,"8407":781,"8408":781,"8409":804,"8410":855,"8411":906,"8412":827,"8413":894,"8414":858,"8415":841,"8416":906,"8417":871,"8418":877,"8419":818,"8420":835,"8421":818,"8422":835,"8423":879,"8424":870,"8425":881,"8426":772,"8427":870,"8428":772,"8429":913,"8430":887,"8431":810,"8432":863,"8433":841,"8434":818,"8435":892,"8436":813,"8437":802,"8438":790,"8439":802,"8440":804,"8441":798,"8442":853,"8443":798,"8444":822,"8445":901,"8446":825,"8447":842,"8448":845,"8449":812,"8450":780,"8451":882,"8452":806,"8453":873,"8454":817,"8455":887,"8456":807,"8457":784,"8458":878,"8459":906,"8460":887,"8461":801,"8462":898,"8463":780,"8464":769,"8465":828,"8466":871,"8467":857,"8468":800,"8469":879,"8470":873,"8471":878,"8472":876,"8473":895,"8474":912,"8475":834,"8476":814,"8477":905,"8478":812,"8479":802,"8480":862,"8481":851,"8482":912,"8483":890,"8484":881,"8485":773,"8486":844,"8487":872,"8488":830,"8489":891,"8490":781,"8491":876,"8492":907,"8493":880,"8494":894,"8495":819,"8496":777,"8497":870,"8498":779,"8499":786,"8500":772,"8501":876,"8502":795,"8503":882,"8504":819,"8505":872,"8506":777,"8507":827,"8508":788,"8509":889,"8510":822,"8511":813,"8512":796,"8513":896,"8514":901,"8515":822,"8516":805,"8517":896,"8518":844,"8519":845,"8520":912,"8521":850,"8522":848,"8523":898,"8524":894,"8525":880,"8526":768,"8527":790,"8528":889,"8529":778,"8530":809,"8531":798,"8532":893,"8533":846,"8534":811,"8535":803,"8536":812,"8537":831,"8538":856,"8539":849,"8540":810,"8541":821,"8542":861,"8543":818,"8544":767,"8545":906,"8546":809,"8547":835,"8548":834,"8549":819,"8550":907,"8551":806,"8552":800,"8553":890,"8554":873,"8555":848,"8556":788,"8557":871,"8558":878,"8559":841,"8560":791,"8561":781,"8562":912,"8563":822,"8564":806,"8565":871,"8566":835,"8567":912,"8568":835,"8569":773,"8570":835,"8571":779,"8572":790,"8573":800,"8574":915,"8575":775,"8576":827,"8577":808,"8578":889,"8579":781,"8580":861,"8581":806,"8582":809,"8583":849,"8584":800,"8585":894,"8586":884,"8587":841,"8588":878,"8589":779,"8590":808,"8591":788,"8592":824,"8593":828,"8594":801,"8595":839,"8596":894,"8597":821,"8598":876,"8599":771,"8600":919,"8601":811,"8602":817,"8603":828,"8604":773,"8605":908,"8606":821,"8607":890,"8608":901,"8609":855,"8610":845,"8611":908,"8612":867,"8613":793,"8614":826,"8615":818,"8616":861,"8617":810,"8618":851,"8619":874,"8620":859,"8621":837,"8622":881,"8623":822,"8624":838,"8625":904,"8626":841,"8627":798,"8628":889,"8629":880,"8630":835,"8631":841,"8632":806,"8633":773,"8634":882,"8635":877,"8636":873,"8637":772,"8638":877,"8639":910,"8640":800,"8641":890,"8642":800,"8643":908,"8644":828,"8645":814,"8646":901,"8647":882,"8648":841,"8649":863,"8650":836,"8651":798,"8652":773,"8653":918,"8654":874,"8655":882,"8656":792,"8657":775,"8658":872,"8659":871,"8660":787,"8661":884,"8662":772,"8663":839,"8664":872,"8665":808,"8666":874,"8667":902,"8668":812,"8669":838,"8670":782,"8671":851,"8672":862,"8673":773,"8674":867,"8675":835,"8676":817,"8677":913,"8678":818,"8679":842,"8680":831,"8681":823,"8682":871,"8683":864,"8684":799,"8685":894,"8686":887,"8687":891,"8688":835,"8689":845,"8690":919,"8691":903,"8692":768,"8693":784,"8694":801,"8695":779,"8696":813,"8697":895,"8698":788,"8699":805,"8700":919,"8701":812,"8702":776,"8703":879,"8704":835,"8705":810,"8706":798,"8707":835,"8708":771,"8709":826,"8710":889,"8711":872,"8712":814,"8713":814,"8714":817,"8715":901,"8716":890,"8717":831,"8718":781,"8719":882,"8720":872,"8721":847,"8722":896,"8723":771,"8724":834,"8725":858,"8726":847,"8727":912,"8728":834,"8729":830,"8730":774,"8731":863,"8732":787,"8733":818,"8734":808,"8735":893,"8736":888,"8737":784,"8738":890,"8739":907,"8740":792,"8741":882,"8742":820,"8743":842,"8744":847,"8745":862,"8746":784,"8747":777,"8748":771,"8749":826,"8750":771,"8751":834,"8752":773,"8753":862,"8754":903,"8755":863,"8756":912,"8757":857,"8758":829,"8759":870,"8760":877,"8761":825,"8762":812,"8763":790,"8764":782,"8765":878,"8766":809,"8767":889,"8768":912,"8769":784,"8770":817,"8771":845,"8772":827,"8773":781,"8774":799,"8775":864,"8776":838,"8777":883,"8778":911,"8779":893,"8780":844,"8781":793,"8782":773,"8783":768,"8784":835,"8785":804,"8786":890,"8787":852,"8788":878,"8789":784,"8790":865,"8791":871,"8792":792,"8793":796,"8794":796,"8795":862,"8796":826,"8797":831,"8798":851,"8799":901,"8800":894,"8801":867,"8802":816,"8803":811,"8804":822,"8805":918,"8806":906,"8807":798,"8808":807,"8809":831,"8810":871,"8811":899,"8812":891,"8813":890,"8814":812,"8815":879,"8816":768,"8817":801,"8818":887,"8819":768,"8820":788,"8821":850,"8822":773,"8823":887,"8824":894,"8825":843,"8826":906,"8827":780,"8828":872,"8829":913,"8830":812,"8831":788,"8832":869,"8833":817,"8834":850,"8835":853,"8836":875,"8837":807,"8838":798,"8839":834,"8840":879,"8841":812,"8842":882,"8843":812,"8844":823,"8845":777,"8846":785,"8847":881,"8848":889,"8849":825,"8850":803,"8851":788,"8852":825,"8853":772,"8854":768,"8855":890,"8856":834,"8857":901,"8858":891,"8859":834,"8860":888,"8861":871,"8862":918,"8863":871,"8864":896,"8865":769,"8866":910,"8867":849,"8868":800,"8869":809,"8870":837,"8871":901,"8872":844,"8873":889,"8874":781,"8875":811,"8876":786,"8877":878,"8878":830,"8879":872,"8880":906,"8881":825,"8882":783,"8883":771,"8884":909,"8885":887,"8886":817,"8887":790,"8888":882,"8889":787,"8890":903,"8891":784,"8892":805,"8893":806,"8894":786,"8895":896,"8896":827,"8897":849,"8898":852,"8899":906,"8900":920,"8901":927,"8902":924,"8903":927,"8904":925,"8905":923,"8906":925,"8907":921,"8908":922,"8909":929,"8910":925,"8911":928,"8912":925,"8913":925,"8914":921,"8915":930,"8916":930,"8917":928,"8918":930,"8919":930,"8920":926,"8921":930,"8922":927,"8923":923,"8924":921,"8925":926,"8926":921,"8927":924,"8928":930,"8929":928,"8930":930,"8931":927,"8932":926,"8933":924,"8934":925,"8935":922,"8936":925,"8937":925,"8938":925,"8939":927,"8940":926,"8941":924,"8942":923,"8943":925,"8944":925,"8945":920,"8946":925,"8947":930,"8948":927,"8949":920,"8950":920,"8951":926,"8952":926,"8953":925,"8954":925,"8955":920,"8956":927,"8957":930,"8958":925,"8959":927,"8960":925,"8961":926,"8962":921,"8963":926,"8964":930,"8965":930,"8966":930,"8967":930,"8968":927,"8969":925,"8970":925,"8971":930,"8972":923,"8973":925,"8974":925,"8975":929,"8976":923,"8977":927,"8978":920,"8979":927,"8980":925,"8981":924,"8982":921,"8983":930,"8984":930,"8985":930,"8986":930,"8987":930,"8988":927,"8989":930,"8990":930,"8991":930,"8992":927,"8993":927,"8994":920,"8995":930,"8996":920,"8997":929,"8998":923,"8999":926,"9000":925,"9001":925,"9002":930,"9003":927,"9004":921,"9005":923,"9006":929,"9007":924,"9008":924,"9009":929,"9010":920,"9011":921,"9012":925,"9013":924,"9014":920,"9015":927,"9016":926,"9017":930,"9018":925,"9019":920,"9020":927,"9021":927,"9022":930,"9023":925,"9024":930,"9025":930,"9026":923,"9027":930,"9028":925,"9029":924,"9030":921,"9031":955,"9032":944,"9033":943,"9034":949,"9035":959,"9036":950,"9037":958,"9038":951,"9039":968,"9040":964,"9041":944,"9042":947,"9043":946,"9044":947,"9045":938,"9046":945,"9047":964,"9048":934,"9049":933,"9050":933,"9051":947,"9052":968,"9053":938,"9054":938,"9055":947,"9056":931,"9057":941,"9058":958,"9059":964,"9060":937,"9061":934,"9062":937,"9063":933,"9064":941,"9065":963,"9066":949,"9067":960,"9068":950,"9069":964,"9070":958,"9071":947,"9072":937,"9073":950,"9074":944,"9075":948,"9076":949,"9077":945,"9078":933,"9079":937,"9080":958,"9081":940,"9082":936,"9083":945,"9084":949,"9085":931,"9086":964,"9087":962,"9088":947,"9089":947,"9090":947,"9091":933,"9092":958,"9093":958,"9094":940,"9095":959,"9096":939,"9097":962,"9098":945,"9099":946,"9100":959,"9101":940,"9102":964,"9103":946,"9104":947,"9105":958,"9106":964,"9107":966,"9108":948,"9109":947,"9110":937,"9111":958,"9112":964,"9113":947,"9114":945,"9115":951,"9116":964,"9117":948,"9118":949,"9119":936,"9120":933,"9121":963,"9122":940,"9123":946,"9124":944,"9125":933,"9126":950,"9127":936,"9128":959,"9129":962,"9130":937,"9131":958,"9132":953,"9133":950,"9134":936,"9135":959,"9136":963,"9137":938,"9138":941,"9139":964,"9140":938,"9141":941,"9142":948,"9143":963,"9144":946,"9145":960,"9146":947,"9147":946,"9148":933,"9149":958,"9150":950,"9151":958,"9152":945,"9153":969,"9154":947,"9155":967,"9156":941,"9157":948,"9158":969,"9159":937,"9160":942,"9161":956,"9162":959,"9163":951,"9164":936,"9165":952,"9166":964,"9167":937,"9168":961,"9169":931,"9170":951,"9171":940,"9172":936,"9173":967,"9174":931,"9175":971,"9176":958,"9177":964,"9178":939,"9179":949,"9180":953,"9181":947,"9182":970,"9183":931,"9184":950,"9185":958,"9186":939,"9187":946,"9188":960,"9189":963,"9190":945,"9191":955,"9192":964,"9193":938,"9194":949,"9195":945,"9196":953,"9197":948,"9198":958,"9199":945,"9200":937,"9201":940,"9202":945,"9203":962,"9204":958,"9205":949,"9206":960,"9207":971,"9208":970,"9209":946,"9210":937,"9211":962,"9212":946,"9213":959,"9214":947,"9215":962,"9216":946,"9217":947,"9218":949,"9219":950,"9220":945,"9221":948,"9222":946,"9223":947,"9224":968,"9225":954,"9226":938,"9227":958,"9228":949,"9229":942,"9230":939,"9231":962,"9232":947,"9233":964,"9234":958,"9235":933,"9236":964,"9237":937,"9238":950,"9239":964,"9240":937,"9241":962,"9242":950,"9243":960,"9244":949,"9245":958,"9246":958,"9247":933,"9248":948,"9249":958,"9250":971,"9251":965,"9252":933,"9253":964,"9254":941,"9255":944,"9256":931,"9257":964,"9258":961,"9259":946,"9260":971,"9261":937,"9262":958,"9263":961,"9264":943,"9265":957,"9266":946,"9267":933,"9268":932,"9269":938,"9270":937,"9271":941,"9272":964,"9273":946,"9274":960,"9275":954,"9276":946,"9277":947,"9278":959,"9279":937,"9280":946,"9281":963,"9282":958,"9283":971,"9284":964,"9285":946,"9286":952,"9287":957,"9288":946,"9289":932,"9290":952,"9291":945,"9292":949,"9293":951,"9294":964,"9295":958,"9296":969,"9297":941,"9298":971,"9299":967,"9300":964,"9301":959,"9302":949,"9303":937,"9304":950,"9305":963,"9306":944,"9307":933,"9308":950,"9309":946,"9310":954,"9311":938,"9312":933,"9313":937,"9314":959,"9315":937,"9316":951,"9317":947,"9318":945,"9319":955,"9320":945,"9321":936,"9322":945,"9323":946,"9324":956,"9325":964,"9326":962,"9327":948,"9328":966,"9329":971,"9330":964,"9331":969,"9332":961,"9333":945,"9334":963,"9335":933,"9336":959,"9337":956,"9338":964,"9339":959,"9340":931,"9341":964,"9342":938,"9343":931,"9344":937,"9345":937,"9346":936,"9347":936,"9348":947,"9349":946,"9350":946,"9351":948,"9352":936,"9353":958,"9354":964,"9355":952,"9356":956,"9357":964,"9358":964,"9359":963,"9360":946,"9361":939,"9362":942,"9363":946,"9364":937,"9365":960,"9366":971,"9367":959,"9368":967,"9369":946,"9370":938,"9371":947,"9372":948,"9373":957,"9374":962,"9375":958,"9376":941,"9377":937,"9378":964,"9379":945,"9380":947,"9381":953,"9382":964,"9383":948,"9384":936,"9385":964,"9386":936,"9387":947,"9388":937,"9389":933,"9390":933,"9391":935,"9392":933,"9393":958,"9394":943,"9395":957,"9396":947,"9397":933,"9398":946,"9399":958,"9400":1100,"9401":1133,"9402":1053,"9403":1147,"9404":973,"9405":1136,"9406":1001,"9407":1011,"9408":1083,"9409":1081,"9410":982,"9411":978,"9412":1067,"9413":1062,"9414":1128,"9415":1000,"9416":1090,"9417":1027,"9418":1105,"9419":985,"9420":1027,"9421":1034,"9422":1050,"9423":1100,"9424":1053,"9425":1097,"9426":1113,"9427":1031,"9428":1067,"9429":1119,"9430":1083,"9431":1065,"9432":1034,"9433":992,"9434":1001,"9435":1106,"9436":995,"9437":1030,"9438":1074,"9439":1083,"9440":1051,"9441":1003,"9442":977,"9443":1083,"9444":1123,"9445":1003,"9446":1124,"9447":1104,"9448":1046,"9449":1027,"9450":986,"9451":1000,"9452":1053,"9453":995,"9454":1031,"9455":1034,"9456":1145,"9457":1003,"9458":1073,"9459":1066,"9460":1086,"9461":1005,"9462":1081,"9463":999,"9464":1139,"9465":999,"9466":1062,"9467":1057,"9468":992,"9469":1119,"9470":1045,"9471":1122,"9472":1019,"9473":1113,"9474":1104,"9475":991,"9476":1042,"9477":1116,"9478":1062,"9479":979,"9480":1043,"9481":1034,"9482":1044,"9483":1119,"9484":976,"9485":1051,"9486":1050,"9487":1070,"9488":1038,"9489":990,"9490":991,"9491":1058,"9492":1133,"9493":1128,"9494":1117,"9495":1010,"9496":1066,"9497":1068,"9498":1114,"9499":1051,"9500":992,"9501":1058,"9502":1060,"9503":1006,"9504":1003,"9505":973,"9506":1099,"9507":1075,"9508":1108,"9509":1151,"9510":1104,"9511":1008,"9512":1057,"9513":1000,"9514":1137,"9515":1005,"9516":979,"9517":1060,"9518":1018,"9519":1100,"9520":1128,"9521":1043,"9522":1018,"9523":1137,"9524":1018,"9525":1101,"9526":1086,"9527":1058,"9528":1046,"9529":1121,"9530":1137,"9531":1069,"9532":1138,"9533":1107,"9534":1016,"9535":1107,"9536":1046,"9537":1091,"9538":1108,"9539":980,"9540":1067,"9541":1105,"9542":1150,"9543":998,"9544":1108,"9545":1131,"9546":1018,"9547":1067,"9548":1065,"9549":1086,"9550":1048,"9551":1105,"9552":1014,"9553":974,"9554":1123,"9555":1066,"9556":1141,"9557":1035,"9558":1034,"9559":1099,"9560":1061,"9561":1008,"9562":1032,"9563":1034,"9564":1145,"9565":983,"9566":1102,"9567":1038,"9568":1012,"9569":1027,"9570":1145,"9571":1124,"9572":1126,"9573":1027,"9574":1145,"9575":994,"9576":988,"9577":1056,"9578":992,"9579":1010,"9580":977,"9581":1027,"9582":1133,"9583":1001,"9584":988,"9585":1027,"9586":1057,"9587":1107,"9588":1027,"9589":1058,"9590":1140,"9591":1014,"9592":1113,"9593":1047,"9594":1058,"9595":1081,"9596":1110,"9597":1115,"9598":1034,"9599":1134,"9600":974,"9601":1089,"9602":1101,"9603":1133,"9604":1078,"9605":1025,"9606":1149,"9607":1004,"9608":1096,"9609":1094,"9610":1104,"9611":1113,"9612":1139,"9613":989,"9614":1018,"9615":1145,"9616":999,"9617":1002,"9618":1110,"9619":1058,"9620":1140,"9621":1045,"9622":1061,"9623":1113,"9624":1124,"9625":1081,"9626":1067,"9627":1099,"9628":1058,"9629":1050,"9630":978,"9631":1132,"9632":1123,"9633":1119,"9634":1125,"9635":1097,"9636":1074,"9637":1103,"9638":1046,"9639":1041,"9640":1111,"9641":1140,"9642":1053,"9643":1031,"9644":1108,"9645":1105,"9646":1082,"9647":1091,"9648":1091,"9649":1046,"9650":1008,"9651":1050,"9652":1054,"9653":1004,"9654":1019,"9655":1047,"9656":1138,"9657":1034,"9658":1140,"9659":1126,"9660":1145,"9661":1010,"9662":999,"9663":1017,"9664":1023,"9665":1110,"9666":1058,"9667":1012,"9668":1143,"9669":1061,"9670":1018,"9671":1100,"9672":1065,"9673":973,"9674":983,"9675":1079,"9676":1024,"9677":1070,"9678":1012,"9679":1073,"9680":1062,"9681":1142,"9682":1060,"9683":1086,"9684":1036,"9685":1107,"9686":975,"9687":1091,"9688":1064,"9689":1137,"9690":991,"9691":984,"9692":1130,"9693":1133,"9694":988,"9695":1020,"9696":1014,"9697":1081,"9698":1053,"9699":1081,"9700":999,"9701":1022,"9702":1111,"9703":1071,"9704":1097,"9705":1083,"9706":978,"9707":1145,"9708":1129,"9709":1133,"9710":1145,"9711":1073,"9712":1082,"9713":1007,"9714":987,"9715":1091,"9716":1073,"9717":1061,"9718":1008,"9719":1138,"9720":1060,"9721":1084,"9722":1056,"9723":1085,"9724":1032,"9725":986,"9726":1108,"9727":1053,"9728":1046,"9729":1060,"9730":1058,"9731":1151,"9732":1003,"9733":1113,"9734":1009,"9735":1062,"9736":1044,"9737":1117,"9738":998,"9739":1150,"9740":1119,"9741":1002,"9742":1046,"9743":999,"9744":975,"9745":1060,"9746":989,"9747":1134,"9748":1039,"9749":1096,"9750":1056,"9751":1069,"9752":1099,"9753":1081,"9754":1145,"9755":1111,"9756":1028,"9757":990,"9758":1121,"9759":1001,"9760":1133,"9761":1026,"9762":1026,"9763":1126,"9764":1093,"9765":1092,"9766":1020,"9767":1090,"9768":1026,"9769":992,"9770":1093,"9771":1070,"9772":1110,"9773":1004,"9774":1097,"9775":1108,"9776":975,"9777":1115,"9778":1101,"9779":1149,"9780":1046,"9781":1032,"9782":1092,"9783":1056,"9784":995,"9785":979,"9786":1072,"9787":1088,"9788":1092,"9789":973,"9790":991,"9791":1086,"9792":1108,"9793":1108,"9794":1080,"9795":1108,"9796":1003,"9797":1107,"9798":1088,"9799":1016,"9800":985,"9801":1121,"9802":1058,"9803":1020,"9804":1081,"9805":1140,"9806":1128,"9807":1077,"9808":1018,"9809":1054,"9810":986,"9811":1073,"9812":1031,"9813":1119,"9814":1124,"9815":991,"9816":1125,"9817":1053,"9818":1072,"9819":993,"9820":1084,"9821":1128,"9822":1110,"9823":1019,"9824":1027,"9825":982,"9826":1113,"9827":1101,"9828":984,"9829":1104,"9830":1046,"9831":995,"9832":1145,"9833":1128,"9834":992,"9835":1123,"9836":1121,"9837":1034,"9838":1007,"9839":1119,"9840":1003,"9841":1020,"9842":1095,"9843":1104,"9844":1065,"9845":1130,"9846":1031,"9847":974,"9848":1003,"9849":1032,"9850":1020,"9851":975,"9852":1067,"9853":1050,"9854":1064,"9855":1142,"9856":1069,"9857":1120,"9858":1124,"9859":1018,"9860":1081,"9861":1053,"9862":980,"9863":1014,"9864":1139,"9865":992,"9866":1107,"9867":1066,"9868":1024,"9869":982,"9870":1130,"9871":1026,"9872":1034,"9873":1061,"9874":1034,"9875":1106,"9876":1000,"9877":1137,"9878":1050,"9879":1137,"9880":980,"9881":1108,"9882":991,"9883":1008,"9884":1063,"9885":1056,"9886":1002,"9887":1060,"9888":1046,"9889":1125,"9890":1081,"9891":1046,"9892":1018,"9893":1045,"9894":1083,"9895":1113,"9896":1133,"9897":1009,"9898":997,"9899":1133,"9900":1085,"9901":984,"9902":1103,"9903":1133,"9904":1073,"9905":1036,"9906":1046,"9907":1145,"9908":1000,"9909":1119,"9910":1079,"9911":1081,"9912":1056,"9913":1108,"9914":1067,"9915":1078,"9916":1027,"9917":990,"9918":1108,"9919":1004,"9920":1137,"9921":973,"9922":1011,"9923":1058,"9924":1017,"9925":1110,"9926":986,"9927":1085,"9928":995,"9929":999,"9930":1107,"9931":1128,"9932":1058,"9933":1108,"9934":1121,"9935":1000,"9936":1086,"9937":1026,"9938":1110,"9939":1036,"9940":1120,"9941":1145,"9942":1121,"9943":1146,"9944":1081,"9945":975,"9946":1001,"9947":993,"9948":1129,"9949":984,"9950":1061,"9951":1073,"9952":1032,"9953":1018,"9954":1073,"9955":1067,"9956":1141,"9957":973,"9958":1137,"9959":1060,"9960":985,"9961":1123,"9962":1011,"9963":1120,"9964":1085,"9965":1145,"9966":1060,"9967":1006,"9968":1150,"9969":1125,"9970":1117,"9971":1112,"9972":1084,"9973":1092,"9974":1042,"9975":999,"9976":1072,"9977":1004,"9978":1116,"9979":1113,"9980":1073,"9981":1046,"9982":1080,"9983":1046,"9984":1093,"9985":1057,"9986":1008,"9987":1056,"9988":1034,"9989":998,"9990":980,"9991":976,"9992":1010,"9993":983,"9994":994,"9995":1001,"9996":989,"9997":982,"9998":1034,"9999":1060,"10000":1061,"10001":992,"10002":1056,"10003":1026,"10004":1002,"10005":995,"10006":989,"10007":1119,"10008":1133,"10009":1150,"10010":1010,"10011":1052,"10012":1071,"10013":1092,"10014":980,"10015":1083,"10016":1018,"10017":1107,"10018":1108,"10019":1056,"10020":1107,"10021":1043,"10022":1141,"10023":1145,"10024":1050,"10025":1034,"10026":995,"10027":1061,"10028":1130,"10029":1015,"10030":984,"10031":1053,"10032":1030,"10033":990,"10034":1050,"10035":1113,"10036":1119,"10037":1002,"10038":1139,"10039":1108,"10040":1044,"10041":1140,"10042":1034,"10043":1077,"10044":975,"10045":1125,"10046":1135,"10047":995,"10048":1062,"10049":995,"10050":992,"10051":1061,"10052":1099,"10053":1150,"10054":1045,"10055":1144,"10056":1083,"10057":1081,"10058":1077,"10059":1104,"10060":999,"10061":1063,"10062":1058,"10063":1110,"10064":1042,"10065":1129,"10066":995,"10067":1067,"10068":1089,"10069":1008,"10070":1114,"10071":979,"10072":984,"10073":1085,"10074":1119,"10075":991,"10076":1046,"10077":1001,"10078":1050,"10079":1113,"10080":1023,"10081":1146,"10082":1101,"10083":1139,"10084":1077,"10085":1072,"10086":1062,"10087":993,"10088":1113,"10089":1119,"10090":1141,"10091":1134,"10092":1067,"10093":1060,"10094":997,"10095":1059,"10096":1116,"10097":1037,"10098":991,"10099":1071,"10100":1113,"10101":1069,"10102":1130,"10103":1141,"10104":1065,"10105":1010,"10106":1088,"10107":1147,"10108":982,"10109":975,"10110":1099,"10111":1025,"10112":1119,"10113":1129,"10114":1145,"10115":1088,"10116":999,"10117":1066,"10118":1059,"10119":1029,"10120":1129,"10121":1056,"10122":1074,"10123":1010,"10124":1083,"10125":1128,"10126":1012,"10127":972,"10128":1043,"10129":1125,"10130":1127,"10131":1092,"10132":1145,"10133":1069,"10134":995,"10135":1061,"10136":1002,"10137":1060,"10138":986,"10139":1083,"10140":1042,"10141":989,"10142":982,"10143":988,"10144":1023,"10145":1034,"10146":1086,"10147":1039,"10148":1034,"10149":1036,"10150":985,"10151":1034,"10152":1032,"10153":1121,"10154":987,"10155":1019,"10156":1151,"10157":1042,"10158":1051,"10159":1020,"10160":1094,"10161":1119,"10162":988,"10163":1119,"10164":976,"10165":979,"10166":1055,"10167":1015,"10168":999,"10169":1032,"10170":1083,"10171":1038,"10172":999,"10173":1096,"10174":1107,"10175":1126,"10176":1058,"10177":1058,"10178":1059,"10179":1125,"10180":984,"10181":1057,"10182":1080,"10183":1123,"10184":991,"10185":973,"10186":1081,"10187":1107,"10188":1034,"10189":1088,"10190":1096,"10191":1051,"10192":1051,"10193":991,"10194":1145,"10195":973,"10196":1077,"10197":1041,"10198":1104,"10199":1074,"10200":1004,"10201":993,"10202":992,"10203":1045,"10204":1097,"10205":1010,"10206":979,"10207":1107,"10208":975,"10209":1073,"10210":1107,"10211":1058,"10212":1044,"10213":974,"10214":1119,"10215":1027,"10216":1110,"10217":1113,"10218":1085,"10219":1107,"10220":1108,"10221":1083,"10222":1067,"10223":1112,"10224":1031,"10225":994,"10226":1079,"10227":1104,"10228":1022,"10229":973,"10230":1130,"10231":1111,"10232":1103,"10233":1111,"10234":1016,"10235":991,"10236":1086,"10237":1129,"10238":983,"10239":1148,"10240":1028,"10241":1111,"10242":1007,"10243":1138,"10244":1006,"10245":1149,"10246":1141,"10247":1114,"10248":1111,"10249":1109,"10250":1060,"10251":992,"10252":999,"10253":1101,"10254":1046,"10255":1057,"10256":1056,"10257":1130,"10258":990,"10259":988,"10260":1053,"10261":1043,"10262":1001,"10263":980,"10264":995,"10265":1141,"10266":981,"10267":1060,"10268":1001,"10269":1133,"10270":1119,"10271":1085,"10272":1112,"10273":999,"10274":1010,"10275":1002,"10276":1147,"10277":1104,"10278":1113,"10279":1084,"10280":1073,"10281":991,"10282":1092,"10283":1064,"10284":1020,"10285":1065,"10286":1107,"10287":1148,"10288":1020,"10289":995,"10290":1018,"10291":1021,"10292":1092,"10293":1010,"10294":1111,"10295":1149,"10296":1030,"10297":1105,"10298":1084,"10299":1107,"10300":1010,"10301":1128,"10302":1044,"10303":1092,"10304":1103,"10305":985,"10306":1010,"10307":1108,"10308":1006,"10309":1136,"10310":1083,"10311":1053,"10312":1094,"10313":1067,"10314":1072,"10315":1046,"10316":992,"10317":1128,"10318":1113,"10319":1051,"10320":975,"10321":1128,"10322":1077,"10323":1052,"10324":1078,"10325":991,"10326":1069,"10327":1020,"10328":1113,"10329":1012,"10330":1092,"10331":1063,"10332":990,"10333":1117,"10334":1025,"10335":1114,"10336":992,"10337":1036,"10338":1028,"10339":1039,"10340":1001,"10341":983,"10342":1094,"10343":984,"10344":1083,"10345":1025,"10346":1060,"10347":1034,"10348":1112,"10349":995,"10350":1138,"10351":1087,"10352":988,"10353":1113,"10354":996,"10355":1051,"10356":1060,"10357":1125,"10358":1096,"10359":1002,"10360":1070,"10361":1110,"10362":1058,"10363":1149,"10364":1112,"10365":993,"10366":1145,"10367":1017,"10368":1017,"10369":1061,"10370":1053,"10371":1050,"10372":1004,"10373":1090,"10374":1102,"10375":1083,"10376":1134,"10377":1081,"10378":1145,"10379":1133,"10380":1033,"10381":1142,"10382":1067,"10383":983,"10384":1012,"10385":1102,"10386":1011,"10387":1032,"10388":975,"10389":994,"10390":1056,"10391":1056,"10392":1107,"10393":1018,"10394":1077,"10395":1018,"10396":1024,"10397":1043,"10398":1032,"10399":1045,"10400":974,"10401":1061,"10402":1093,"10403":1086,"10404":1133,"10405":1138,"10406":1020,"10407":982,"10408":1151,"10409":1060,"10410":1021,"10411":991,"10412":1032,"10413":993,"10414":1053,"10415":1066,"10416":1053,"10417":1112,"10418":1026,"10419":990,"10420":1067,"10421":979,"10422":1046,"10423":1149,"10424":1120,"10425":982,"10426":1112,"10427":1016,"10428":1004,"10429":1111,"10430":1096,"10431":1043,"10432":1056,"10433":1035,"10434":998,"10435":1112,"10436":1119,"10437":1014,"10438":1119,"10439":1083,"10440":1029,"10441":1044,"10442":1074,"10443":1002,"10444":1060,"10445":1066,"10446":1067,"10447":988,"10448":975,"10449":982,"10450":1057,"10451":1128,"10452":1046,"10453":1119,"10454":1117,"10455":1104,"10456":1073,"10457":984,"10458":1128,"10459":995,"10460":1110,"10461":1042,"10462":1058,"10463":1097,"10464":1144,"10465":1138,"10466":1065,"10467":979,"10468":1010,"10469":1128,"10470":977,"10471":1004,"10472":1124,"10473":975,"10474":1027,"10475":1108,"10476":995,"10477":988,"10478":1032,"10479":1063,"10480":992,"10481":980,"10482":1090,"10483":998,"10484":1084,"10485":1062,"10486":1125,"10487":1094,"10488":975,"10489":1074,"10490":1099,"10491":1116,"10492":1056,"10493":1104,"10494":1074,"10495":1018,"10496":1091,"10497":1044,"10498":1087,"10499":1119,"10500":1061,"10501":1135,"10502":988,"10503":1014,"10504":984,"10505":991,"10506":1043,"10507":1031,"10508":1110,"10509":1068,"10510":1141,"10511":1150,"10512":989,"10513":1074,"10514":1022,"10515":1014,"10516":1023,"10517":1050,"10518":995,"10519":1017,"10520":1098,"10521":1123,"10522":1138,"10523":1026,"10524":991,"10525":1008,"10526":1068,"10527":1095,"10528":985,"10529":1038,"10530":1107,"10531":1101,"10532":1002,"10533":1066,"10534":1027,"10535":1018,"10536":1067,"10537":1053,"10538":975,"10539":1150,"10540":1126,"10541":991,"10542":1036,"10543":1123,"10544":1084,"10545":992,"10546":1069,"10547":1067,"10548":1084,"10549":1010,"10550":999,"10551":1046,"10552":1029,"10553":1012,"10554":1113,"10555":973,"10556":991,"10557":1064,"10558":1111,"10559":1032,"10560":1060,"10561":1035,"10562":1135,"10563":1033,"10564":1030,"10565":1053,"10566":1118,"10567":1121,"10568":1103,"10569":1067,"10570":1063,"10571":1031,"10572":1142,"10573":1050,"10574":1108,"10575":1092,"10576":1038,"10577":1082,"10578":1141,"10579":1046,"10580":1032,"10581":1019,"10582":994,"10583":1018,"10584":1131,"10585":1111,"10586":1070,"10587":983,"10588":972,"10589":1051,"10590":1045,"10591":1050,"10592":1145,"10593":1117,"10594":975,"10595":1026,"10596":1061,"10597":995,"10598":1067,"10599":1060,"10600":1005,"10601":1088,"10602":1043,"10603":992,"10604":998,"10605":1060,"10606":1107,"10607":1096,"10608":1010,"10609":1061,"10610":1110,"10611":1003,"10612":1051,"10613":1061,"10614":1022,"10615":1017,"10616":1123,"10617":1065,"10618":1061,"10619":988,"10620":1053,"10621":1025,"10622":1046,"10623":1012,"10624":1069,"10625":1058,"10626":1073,"10627":1010,"10628":1112,"10629":975,"10630":1081,"10631":1061,"10632":995,"10633":1072,"10634":1138,"10635":991,"10636":1007,"10637":1150,"10638":1111,"10639":1073,"10640":1092,"10641":1133,"10642":1019,"10643":1082,"10644":1003,"10645":1067,"10646":1062,"10647":1072,"10648":1121,"10649":983,"10650":1138,"10651":1128,"10652":1108,"10653":1104,"10654":1094,"10655":1108,"10656":1021,"10657":1032,"10658":1010,"10659":1003,"10660":1107,"10661":1094,"10662":1117,"10663":1051,"10664":994,"10665":1123,"10666":1050,"10667":1108,"10668":1094,"10669":988,"10670":1114,"10671":979,"10672":999,"10673":1084,"10674":983,"10675":973,"10676":1065,"10677":997,"10678":1147,"10679":1021,"10680":1067,"10681":978,"10682":981,"10683":1107,"10684":990,"10685":1030,"10686":1073,"10687":978,"10688":1103,"10689":1119,"10690":1117,"10691":1073,"10692":1072,"10693":1137,"10694":1062,"10695":1017,"10696":1022,"10697":1046,"10698":1002,"10699":1108,"10700":989,"10701":1119,"10702":1137,"10703":1116,"10704":1117,"10705":1008,"10706":1151,"10707":1088,"10708":1003,"10709":986,"10710":1008,"10711":978,"10712":1088,"10713":1101,"10714":1033,"10715":1050,"10716":1060,"10717":1083,"10718":1062,"10719":1052,"10720":1061,"10721":1086,"10722":992,"10723":1050,"10724":1050,"10725":1128,"10726":1083,"10727":1092,"10728":1077,"10729":1006,"10730":1006,"10731":1119,"10732":980,"10733":1107,"10734":1059,"10735":978,"10736":1052,"10737":1083,"10738":988,"10739":1083,"10740":1034,"10741":1121,"10742":1107,"10743":1083,"10744":1136,"10745":1010,"10746":1068,"10747":1145,"10748":1067,"10749":1148,"10750":1136,"10751":1032,"10752":1067,"10753":1135,"10754":1009,"10755":1093,"10756":1122,"10757":1118,"10758":1018,"10759":980,"10760":1100,"10761":1066,"10762":1055,"10763":1128,"10764":1128,"10765":1083,"10766":1125,"10767":1133,"10768":1031,"10769":1145,"10770":1040,"10771":1128,"10772":997,"10773":988,"10774":1010,"10775":1096,"10776":1107,"10777":1058,"10778":1032,"10779":1004,"10780":1046,"10781":1039,"10782":1137,"10783":1138,"10784":1150,"10785":1145,"10786":1016,"10787":1081,"10788":1085,"10789":1100,"10790":1113,"10791":1057,"10792":1095,"10793":1073,"10794":1120,"10795":1036,"10796":1050,"10797":1074,"10798":1042,"10799":1117,"10800":1056,"10801":1138,"10802":985,"10803":1018,"10804":1046,"10805":1003,"10806":1067,"10807":1099,"10808":1119,"10809":1128,"10810":1150,"10811":1004,"10812":1018,"10813":1076,"10814":1081,"10815":1022,"10816":1118,"10817":1108,"10818":1038,"10819":1107,"10820":1019,"10821":976,"10822":972,"10823":1050,"10824":991,"10825":1097,"10826":1084,"10827":1120,"10828":996,"10829":995,"10830":1058,"10831":1032,"10832":1113,"10833":1046,"10834":1042,"10835":1081,"10836":1072,"10837":1018,"10838":1083,"10839":1083,"10840":1050,"10841":1080,"10842":1032,"10843":1094,"10844":1107,"10845":1073,"10846":1046,"10847":1003,"10848":1133,"10849":1148,"10850":1031,"10851":1128,"10852":1042,"10853":1002,"10854":1112,"10855":1132,"10856":991,"10857":1056,"10858":1060,"10859":1145,"10860":1128,"10861":1077,"10862":1023,"10863":1111,"10864":980,"10865":1003,"10866":1042,"10867":1137,"10868":1046,"10869":1137,"10870":1092,"10871":1013,"10872":1053,"10873":1027,"10874":1110,"10875":1060,"10876":1058,"10877":1006,"10878":1123,"10879":1042,"10880":1120,"10881":994,"10882":1148,"10883":1135,"10884":1031,"10885":1003,"10886":1028,"10887":1021,"10888":993,"10889":1081,"10890":1021,"10891":1058,"10892":1119,"10893":1042,"10894":1128,"10895":999,"10896":1069,"10897":1000,"10898":1060,"10899":1068,"10900":1051,"10901":1051,"10902":1020,"10903":1014,"10904":1007,"10905":984,"10906":1003,"10907":1046,"10908":1073,"10909":983,"10910":1146,"10911":992,"10912":1056,"10913":1027,"10914":1138,"10915":1106,"10916":1076,"10917":994,"10918":1032,"10919":1107,"10920":999,"10921":1105,"10922":983,"10923":1046,"10924":1128,"10925":991,"10926":1026,"10927":996,"10928":1041,"10929":1031,"10930":1020,"10931":995,"10932":988,"10933":999,"10934":1105,"10935":1130,"10936":1050,"10937":1032,"10938":995,"10939":1001,"10940":995,"10941":1068,"10942":1110,"10943":1059,"10944":1028,"10945":1018,"10946":979,"10947":1050,"10948":1050,"10949":1053,"10950":990,"10951":1120,"10952":1081,"10953":988,"10954":1050,"10955":1110,"10956":1082,"10957":1137,"10958":1130,"10959":1030,"10960":1083,"10961":1056,"10962":1036,"10963":984,"10964":1050,"10965":999,"10966":1034,"10967":1067,"10968":995,"10969":1147,"10970":1086,"10971":1042,"10972":1107,"10973":995,"10974":1058,"10975":1067,"10976":1091,"10977":1151,"10978":1139,"10979":1106,"10980":1050,"10981":998,"10982":1050,"10983":1122,"10984":1025,"10985":1111,"10986":975,"10987":975,"10988":1073,"10989":992,"10990":1137,"10991":1108,"10992":1050,"10993":1050,"10994":1104,"10995":1072,"10996":1119,"10997":1111,"10998":1145,"10999":1108,"11000":1120,"11001":976,"11002":1060,"11003":982,"11004":995,"11005":1024,"11006":1018,"11007":1072,"11008":1138,"11009":1083,"11010":1073,"11011":1099,"11012":1056,"11013":1069,"11014":1098,"11015":1067,"11016":1113,"11017":991,"11018":1001,"11019":1093,"11020":1111,"11021":982,"11022":1119,"11023":1016,"11024":1069,"11025":1123,"11026":1027,"11027":1107,"11028":1046,"11029":995,"11030":1032,"11031":1061,"11032":1065,"11033":1089,"11034":1119,"11035":1046,"11036":986,"11037":994,"11038":1067,"11039":1031,"11040":1093,"11041":1052,"11042":989,"11043":1113,"11044":979,"11045":1095,"11046":1085,"11047":984,"11048":1100,"11049":986,"11050":1126,"11051":1038,"11052":1086,"11053":987,"11054":1117,"11055":999,"11056":988,"11057":1068,"11058":1050,"11059":1117,"11060":1096,"11061":1126,"11062":979,"11063":1108,"11064":993,"11065":1128,"11066":1034,"11067":1010,"11068":1026,"11069":1053,"11070":1032,"11071":1085,"11072":988,"11073":991,"11074":995,"11075":1128,"11076":1054,"11077":1148,"11078":1119,"11079":1050,"11080":1144,"11081":1007,"11082":1042,"11083":992,"11084":1125,"11085":1111,"11086":1074,"11087":1083,"11088":1021,"11089":1010,"11090":989,"11091":1111,"11092":1069,"11093":1067,"11094":1040,"11095":1107,"11096":1108,"11097":1046,"11098":1073,"11099":1056,"11100":1018,"11101":1065,"11102":1025,"11103":1025,"11104":976,"11105":1042,"11106":1016,"11107":992,"11108":1007,"11109":1099,"11110":1032,"11111":1033,"11112":1027,"11113":1066,"11114":1014,"11115":979,"11116":1034,"11117":991,"11118":997,"11119":1074,"11120":1142,"11121":1145,"11122":1138,"11123":1081,"11124":1036,"11125":991,"11126":1081,"11127":1057,"11128":1073,"11129":1032,"11130":1151,"11131":1128,"11132":991,"11133":1057,"11134":1111,"11135":1110,"11136":1129,"11137":1040,"11138":1103,"11139":993,"11140":1108,"11141":1145,"11142":979,"11143":1018,"11144":1103,"11145":1124,"11146":1095,"11147":1022,"11148":1067,"11149":1062,"11150":1149,"11151":1049,"11152":1061,"11153":1134,"11154":1113,"11155":1061,"11156":1081,"11157":1119,"11158":1073,"11159":1027,"11160":1092,"11161":1145,"11162":1058,"11163":1130,"11164":1083,"11165":1018,"11166":1060,"11167":979,"11168":1137,"11169":1067,"11170":1104,"11171":1027,"11172":1070,"11173":1076,"11174":1007,"11175":1112,"11176":1084,"11177":1137,"11178":1125,"11179":1133,"11180":1067,"11181":1095,"11182":1094,"11183":1132,"11184":1205,"11185":1211,"11186":1187,"11187":1203,"11188":1198,"11189":1211,"11190":1190,"11191":1216,"11192":1180,"11193":1229,"11194":1231,"11195":1199,"11196":1226,"11197":1202,"11198":1187,"11199":1224,"11200":1168,"11201":1189,"11202":1174,"11203":1208,"11204":1176,"11205":1152,"11206":1195,"11207":1222,"11208":1203,"11209":1194,"11210":1157,"11211":1211,"11212":1181,"11213":1203,"11214":1158,"11215":1189,"11216":1170,"11217":1222,"11218":1159,"11219":1180,"11220":1157,"11221":1178,"11222":1187,"11223":1218,"11224":1185,"11225":1224,"11226":1208,"11227":1167,"11228":1213,"11229":1168,"11230":1203,"11231":1204,"11232":1159,"11233":1226,"11234":1152,"11235":1154,"11236":1231,"11237":1188,"11238":1195,"11239":1213,"11240":1173,"11241":1202,"11242":1226,"11243":1213,"11244":1192,"11245":1185,"11246":1203,"11247":1223,"11248":1180,"11249":1185,"11250":1173,"11251":1213,"11252":1199,"11253":1153,"11254":1205,"11255":1185,"11256":1213,"11257":1166,"11258":1181,"11259":1212,"11260":1173,"11261":1199,"11262":1163,"11263":1202,"11264":1226,"11265":1180,"11266":1189,"11267":1171,"11268":1189,"11269":1176,"11270":1223,"11271":1197,"11272":1176,"11273":1205,"11274":1210,"11275":1228,"11276":1152,"11277":1168,"11278":1217,"11279":1179,"11280":1226,"11281":1207,"11282":1174,"11283":1210,"11284":1218,"11285":1200,"11286":1157,"11287":1177,"11288":1189,"11289":1174,"11290":1179,"11291":1223,"11292":1187,"11293":1187,"11294":1213,"11295":1226,"11296":1174,"11297":1200,"11298":1226,"11299":1168,"11300":1193,"11301":1179,"11302":1165,"11303":1181,"11304":1172,"11305":1213,"11306":1213,"11307":1211,"11308":1173,"11309":1202,"11310":1173,"11311":1183,"11312":1218,"11313":1163,"11314":1216,"11315":1170,"11316":1218,"11317":1223,"11318":1208,"11319":1163,"11320":1157,"11321":1213,"11322":1202,"11323":1208,"11324":1187,"11325":1213,"11326":1216,"11327":1226,"11328":1216,"11329":1195,"11330":1227,"11331":1158,"11332":1227,"11333":1188,"11334":1175,"11335":1160,"11336":1153,"11337":1183,"11338":1189,"11339":1201,"11340":1203,"11341":1174,"11342":1182,"11343":1188,"11344":1170,"11345":1228,"11346":1176,"11347":1205,"11348":1199,"11349":1186,"11350":1229,"11351":1185,"11352":1157,"11353":1168,"11354":1191,"11355":1158,"11356":1189,"11357":1229,"11358":1170,"11359":1219,"11360":1230,"11361":1228,"11362":1170,"11363":1222,"11364":1163,"11365":1212,"11366":1192,"11367":1180,"11368":1165,"11369":1210,"11370":1169,"11371":1211,"11372":1154,"11373":1226,"11374":1171,"11375":1153,"11376":1226,"11377":1182,"11378":1201,"11379":1157,"11380":1162,"11381":1204,"11382":1170,"11383":1187,"11384":1210,"11385":1169,"11386":1187,"11387":1165,"11388":1154,"11389":1178,"11390":1214,"11391":1204,"11392":1216,"11393":1203,"11394":1168,"11395":1174,"11396":1192,"11397":1155,"11398":1204,"11399":1182,"11400":1154,"11401":1180,"11402":1186,"11403":1203,"11404":1190,"11405":1186,"11406":1226,"11407":1190,"11408":1195,"11409":1173,"11410":1206,"11411":1195,"11412":1160,"11413":1169,"11414":1179,"11415":1203,"11416":1162,"11417":1222,"11418":1217,"11419":1183,"11420":1222,"11421":1213,"11422":1187,"11423":1203,"11424":1189,"11425":1173,"11426":1184,"11427":1154,"11428":1189,"11429":1203,"11430":1182,"11431":1226,"11432":1163,"11433":1189,"11434":1193,"11435":1214,"11436":1181,"11437":1180,"11438":1178,"11439":1216,"11440":1214,"11441":1192,"11442":1170,"11443":1222,"11444":1222,"11445":1208,"11446":1217,"11447":1186,"11448":1182,"11449":1226,"11450":1223,"11451":1193,"11452":1203,"11453":1153,"11454":1226,"11455":1228,"11456":1152,"11457":1179,"11458":1226,"11459":1220,"11460":1156,"11461":1204,"11462":1194,"11463":1180,"11464":1205,"11465":1218,"11466":1206,"11467":1153,"11468":1157,"11469":1192,"11470":1180,"11471":1203,"11472":1214,"11473":1152,"11474":1226,"11475":1192,"11476":1185,"11477":1152,"11478":1180,"11479":1175,"11480":1162,"11481":1226,"11482":1176,"11483":1189,"11484":1214,"11485":1175,"11486":1176,"11487":1226,"11488":1186,"11489":1193,"11490":1173,"11491":1226,"11492":1202,"11493":1186,"11494":1226,"11495":1189,"11496":1229,"11497":1203,"11498":1174,"11499":1158,"11500":1226,"11501":1179,"11502":1199,"11503":1213,"11504":1204,"11505":1177,"11506":1216,"11507":1192,"11508":1224,"11509":1205,"11510":1213,"11511":1185,"11512":1179,"11513":1183,"11514":1214,"11515":1164,"11516":1196,"11517":1189,"11518":1157,"11519":1177,"11520":1205,"11521":1168,"11522":1154,"11523":1189,"11524":1229,"11525":1207,"11526":1211,"11527":1227,"11528":1170,"11529":1229,"11530":1226,"11531":1175,"11532":1226,"11533":1186,"11534":1199,"11535":1226,"11536":1213,"11537":1208,"11538":1222,"11539":1189,"11540":1199,"11541":1186,"11542":1189,"11543":1213,"11544":1167,"11545":1199,"11546":1160,"11547":1169,"11548":1163,"11549":1181,"11550":1176,"11551":1209,"11552":1206,"11553":1202,"11554":1185,"11555":1165,"11556":1222,"11557":1216,"11558":1168,"11559":1203,"11560":1186,"11561":1213,"11562":1163,"11563":1195,"11564":1211,"11565":1180,"11566":1216,"11567":1166,"11568":1208,"11569":1185,"11570":1226,"11571":1226,"11572":1226,"11573":1226,"11574":1183,"11575":1177,"11576":1198,"11577":1180,"11578":1195,"11579":1225,"11580":1179,"11581":1192,"11582":1179,"11583":1166,"11584":1189,"11585":1168,"11586":1213,"11587":1173,"11588":1199,"11589":1183,"11590":1173,"11591":1182,"11592":1169,"11593":1179,"11594":1209,"11595":1226,"11596":1166,"11597":1185,"11598":1213,"11599":1229,"11600":1183,"11601":1195,"11602":1221,"11603":1174,"11604":1189,"11605":1202,"11606":1221,"11607":1193,"11608":1229,"11609":1199,"11610":1172,"11611":1208,"11612":1153,"11613":1171,"11614":1152,"11615":1199,"11616":1160,"11617":1182,"11618":1192,"11619":1202,"11620":1180,"11621":1205,"11622":1211,"11623":1215,"11624":1220,"11625":1211,"11626":1161,"11627":1203,"11628":1170,"11629":1203,"11630":1228,"11631":1226,"11632":1190,"11633":1203,"11634":1182,"11635":1225,"11636":1181,"11637":1229,"11638":1162,"11639":1219,"11640":1215,"11641":1198,"11642":1170,"11643":1176,"11644":1208,"11645":1191,"11646":1219,"11647":1213,"11648":1154,"11649":1167,"11650":1185,"11651":1165,"11652":1199,"11653":1179,"11654":1187,"11655":1176,"11656":1213,"11657":1154,"11658":1180,"11659":1226,"11660":1191,"11661":1154,"11662":1215,"11663":1226,"11664":1192,"11665":1226,"11666":1205,"11667":1207,"11668":1174,"11669":1189,"11670":1193,"11671":1223,"11672":1222,"11673":1228,"11674":1155,"11675":1173,"11676":1186,"11677":1189,"11678":1228,"11679":1196,"11680":1170,"11681":1189,"11682":1163,"11683":1186,"11684":1189,"11685":1213,"11686":1187,"11687":1211,"11688":1223,"11689":1202,"11690":1199,"11691":1206,"11692":1271,"11693":1233,"11694":1241,"11695":1254,"11696":1232,"11697":1255,"11698":1270,"11699":1268,"11700":1233,"11701":1245,"11702":1243,"11703":1243,"11704":1263,"11705":1261,"11706":1267,"11707":1235,"11708":1247,"11709":1256,"11710":1272,"11711":1247,"11712":1232,"11713":1247,"11714":1271,"11715":1264,"11716":1234,"11717":1241,"11718":1258,"11719":1236,"11720":1257,"11721":1270,"11722":1259,"11723":1252,"11724":1257,"11725":1259,"11726":1255,"11727":1268,"11728":1255,"11729":1240,"11730":1258,"11731":1260,"11732":1251,"11733":1253,"11734":1256,"11735":1243,"11736":1240,"11737":1271,"11738":1238,"11739":1251,"11740":1258,"11741":1237,"11742":1261,"11743":1244,"11744":1247,"11745":1261,"11746":1258,"11747":1241,"11748":1243,"11749":1257,"11750":1271,"11751":1255,"11752":1244,"11753":1235,"11754":1244,"11755":1258,"11756":1236,"11757":1255,"11758":1232,"11759":1271,"11760":1261,"11761":1247,"11762":1261,"11763":1260,"11764":1261,"11765":1264,"11766":1244,"11767":1256,"11768":1242,"11769":1261,"11770":1247,"11771":1272,"11772":1271,"11773":1270,"11774":1261,"11775":1254,"11776":1260,"11777":1261,"11778":1256,"11779":1247,"11780":1260,"11781":1234,"11782":1265,"11783":1241,"11784":1263,"11785":1254,"11786":1269,"11787":1245,"11788":1264,"11789":1236,"11790":1265,"11791":1253,"11792":1271,"11793":1233,"11794":1273,"11795":1265,"11796":1271,"11797":1261,"11798":1247,"11799":1261,"11800":1235,"11801":1272,"11802":1233,"11803":1232,"11804":1246,"11805":1249,"11806":1261,"11807":1238,"11808":1249,"11809":1243,"11810":1272,"11811":1272,"11812":1260,"11813":1247,"11814":1240,"11815":1240,"11816":1259,"11817":1258,"11818":1263,"11819":1261,"11820":1241,"11821":1264,"11822":1271,"11823":1235,"11824":1240,"11825":1254,"11826":1263,"11827":1245,"11828":1252,"11829":1242,"11830":1235,"11831":1242,"11832":1271,"11833":1268,"11834":1236,"11835":1236,"11836":1241,"11837":1258,"11838":1271,"11839":1253,"11840":1254,"11841":1270,"11842":1270,"11843":1272,"11844":1261,"11845":1240,"11846":1241,"11847":1238,"11848":1261,"11849":1265,"11850":1255,"11851":1267,"11852":1235,"11853":1242,"11854":1261,"11855":1261,"11856":1235,"11857":1249,"11858":1238,"11859":1255,"11860":1267,"11861":1265,"11862":1271,"11863":1245,"11864":1235,"11865":1257,"11866":1251,"11867":1272,"11868":1243,"11869":1269,"11870":1240,"11871":1267,"11872":1240,"11873":1263,"11874":1253,"11875":1235,"11876":1243,"11877":1232,"11878":1267,"11879":1253,"11880":1238,"11881":1235,"11882":1253,"11883":1251,"11884":1259,"11885":1271,"11886":1248,"11887":1272,"11888":1248,"11889":1257,"11890":1238,"11891":1263,"11892":1261,"11893":1249,"11894":1241,"11895":1255,"11896":1238,"11897":1270,"11898":1261,"11899":1232,"11900":1233,"11901":1265,"11902":1250,"11903":1258,"11904":1245,"11905":1267,"11906":1272,"11907":1271,"11908":1232,"11909":1272,"11910":1247,"11911":1232,"11912":1270,"11913":1249,"11914":1256,"11915":1272,"11916":1273,"11917":1251,"11918":1261,"11919":1260,"11920":1241,"11921":1263,"11922":1243,"11923":1250,"11924":1242,"11925":1270,"11926":1257,"11927":1269,"11928":1269,"11929":1265,"11930":1270,"11931":1235,"11932":1260,"11933":1248,"11934":1243,"11935":1235,"11936":1272,"11937":1251,"11938":1261,"11939":1253,"11940":1254,"11941":1245,"11942":1235,"11943":1261,"11944":1271,"11945":1265,"11946":1271,"11947":1233,"11948":1241,"11949":1257,"11950":1247,"11951":1254,"11952":1253,"11953":1258,"11954":1259,"11955":1240,"11956":1266,"11957":1271,"11958":1241,"11959":1266,"11960":1271,"11961":1271,"11962":1263,"11963":1272,"11964":1240,"11965":1264,"11966":1270,"11967":1238,"11968":1245,"11969":1270,"11970":1260,"11971":1271,"11972":1261,"11973":1261,"11974":1242,"11975":1233,"11976":1234,"11977":1259,"11978":1257,"11979":1272,"11980":1232,"11981":1235,"11982":1238,"11983":1255,"11984":1235,"11985":1268,"11986":1248,"11987":1253,"11988":1261,"11989":1240,"11990":1248,"11991":1235,"11992":1244,"11993":1251,"11994":1233,"11995":1261,"11996":1250,"11997":1255,"11998":1263,"11999":1272,"12000":1245,"12001":1261,"12002":1270,"12003":1235,"12004":1233,"12005":1240,"12006":1265,"12007":1261,"12008":1240,"12009":1240,"12010":1254,"12011":1236,"12012":1242,"12013":1272,"12014":1239,"12015":1238,"12016":1253,"12017":1243,"12018":1266,"12019":1249,"12020":1255,"12021":1259,"12022":1271,"12023":1271,"12024":1236,"12025":1235,"12026":1243,"12027":1251,"12028":1244,"12029":1255,"12030":1249,"12031":1251,"12032":1232,"12033":1260,"12034":1262,"12035":1240,"12036":1261,"12037":1265,"12038":1243,"12039":1271,"12040":1252,"12041":1241,"12042":1271,"12043":1241,"12044":1255,"12045":1233,"12046":1261,"12047":1252,"12048":1240,"12049":1256,"12050":1267,"12051":1241,"12052":1272,"12053":1250,"12054":1238,"12055":1265,"12056":1248,"12057":1250,"12058":1249,"12059":1272,"12060":1242,"12061":1257,"12062":1246,"12063":1258,"12064":1258,"12065":1269,"12066":1237,"12067":1263,"12068":1258,"12069":1247,"12070":1272,"12071":1272,"12072":1242,"12073":1232,"12074":1237,"12075":1271,"12076":1271,"12077":1244,"12078":1236,"12079":1254,"12080":1261,"12081":1235,"12082":1272,"12083":1261,"12084":1254,"12085":1242,"12086":1272,"12087":1258,"12088":1240,"12089":1234,"12090":1252,"12091":1235,"12092":1245,"12093":1292,"12094":1281,"12095":1288,"12096":1278,"12097":1276,"12098":1282,"12099":1281,"12100":1287,"12101":1290,"12102":1288,"12103":1280,"12104":1274,"12105":1294,"12106":1296,"12107":1276,"12108":1297,"12109":1282,"12110":1279,"12111":1278,"12112":1294,"12113":1285,"12114":1291,"12115":1297,"12116":1277,"12117":1281,"12118":1291,"12119":1287,"12120":1277,"12121":1288,"12122":1296,"12123":1298,"12124":1275,"12125":1281,"12126":1298,"12127":1283,"12128":1294,"12129":1281,"12130":1290,"12131":1288,"12132":1283,"12133":1289,"12134":1292,"12135":1289,"12136":1293,"12137":1290,"12138":1290,"12139":1297,"12140":1295,"12141":1283,"12142":1280,"12143":1279,"12144":1293,"12145":1293,"12146":1295,"12147":1277,"12148":1287,"12149":1291,"12150":1290,"12151":1282,"12152":1298,"12153":1294,"12154":1276,"12155":1276,"12156":1294,"12157":1279,"12158":1284,"12159":1293,"12160":1286,"12161":1292,"12162":1286,"12163":1276,"12164":1296,"12165":1292,"12166":1298,"12167":1314,"12168":1303,"12169":1315,"12170":1303,"12171":1302,"12172":1317,"12173":1299,"12174":1307,"12175":1304,"12176":1302,"12177":1302,"12178":1305,"12179":1299,"12180":1311,"12181":1312,"12182":1305,"12183":1300,"12184":1300,"12185":1311,"12186":1310,"12187":1314,"12188":1305,"12189":1306,"12190":1317,"12191":1312,"12192":1309,"12193":1317,"12194":1299,"12195":1304,"12196":1312,"12197":1316,"12198":1305,"12199":1303,"12200":1314,"12201":1313,"12202":1300,"12203":1312,"12204":1304,"12205":1314,"12206":1304,"12207":1308,"12208":1302,"12209":1305,"12210":1304,"12211":1311,"12212":1317,"12213":1301,"12214":1301,"12215":1315,"12216":1310,"12217":1302,"12218":1343,"12219":1329,"12220":1350,"12221":1347,"12222":1325,"12223":1321,"12224":1326,"12225":1329,"12226":1324,"12227":1330,"12228":1335,"12229":1318,"12230":1331,"12231":1322,"12232":1337,"12233":1324,"12234":1325,"12235":1347,"12236":1329,"12237":1329,"12238":1334,"12239":1327,"12240":1344,"12241":1331,"12242":1331,"12243":1325,"12244":1332,"12245":1332,"12246":1333,"12247":1343,"12248":1319,"12249":1343,"12250":1340,"12251":1321,"12252":1344,"12253":1332,"12254":1322,"12255":1321,"12256":1318,"12257":1334,"12258":1322,"12259":1332,"12260":1334,"12261":1346,"12262":1323,"12263":1346,"12264":1322,"12265":1334,"12266":1319,"12267":1344,"12268":1333,"12269":1331,"12270":1321,"12271":1324,"12272":1344,"12273":1319,"12274":1332,"12275":1334,"12276":1336,"12277":1331,"12278":1332,"12279":1346,"12280":1340,"12281":1329,"12282":1334,"12283":1337,"12284":1321,"12285":1343,"12286":1331,"12287":1328,"12288":1344,"12289":1346,"12290":1337,"12291":1344,"12292":1329,"12293":1322,"12294":1323,"12295":1332,"12296":1334,"12297":1327,"12298":1334,"12299":1338,"12300":1324,"12301":1338,"12302":1335,"12303":1333,"12304":1349,"12305":1324,"12306":1334,"12307":1329,"12308":1323,"12309":1333,"12310":1343,"12311":1341,"12312":1345,"12313":1344,"12314":1329,"12315":1327,"12316":1341,"12317":1343,"12318":1322,"12319":1331,"12320":1334,"12321":1342,"12322":1336,"12323":1325,"12324":1343,"12325":1324,"12326":1324,"12327":1334,"12328":1343,"12329":1337,"12330":1329,"12331":1348,"12332":1338,"12333":1329,"12334":1322,"12335":1323,"12336":1332,"12337":1340,"12338":1331,"12339":1323,"12340":1320,"12341":1332,"12342":1324,"12343":1318,"12344":1329,"12345":1332,"12346":1324,"12347":1350,"12348":1319,"12349":1331,"12350":1332,"12351":1343,"12352":1343,"12353":1348,"12354":1341,"12355":1325,"12356":1345,"12357":1324,"12358":1331,"12359":1344,"12360":1319,"12361":1334,"12362":1336,"12363":1343,"12364":1331,"12365":1332,"12366":1322,"12367":1334,"12368":1329,"12369":1337,"12370":1329,"12371":1322,"12372":1348,"12373":1336,"12374":1350,"12375":1329,"12376":1333,"12377":1329,"12378":1324,"12379":1336,"12380":1349,"12381":1344,"12382":1328,"12383":1334,"12384":1345,"12385":1341,"12386":1321,"12387":1326,"12388":1324,"12389":1334,"12390":1346,"12391":1324,"12392":1326,"12393":1344,"12394":1348,"12395":1350,"12396":1324,"12397":1329,"12398":1329,"12399":1349,"12400":1322,"12401":1335,"12402":1324,"12403":1334,"12404":1334,"12405":1329,"12406":1328,"12407":1343,"12408":1322,"12409":1329,"12410":1324,"12411":1344,"12412":1344,"12413":1347,"12414":1343,"12415":1318,"12416":1335,"12417":1334,"12418":1336,"12419":1343,"12420":1346,"12421":1341,"12422":1337,"12423":1349,"12424":1349,"12425":1322,"12426":1326,"12427":1343,"12428":1340,"12429":1334,"12430":1338,"12431":1319,"12432":1331,"12433":1336,"12434":1334,"12435":1338,"12436":1343,"12437":1322,"12438":1346,"12439":1337,"12440":1336,"12441":1338,"12442":1324,"12443":1324,"12444":1318,"12445":1343,"12446":1343,"12447":1339,"12448":1329,"12449":1329,"12450":1340,"12451":1324,"12452":1333,"12453":1328,"12454":1321,"12455":1324,"12456":1346,"12457":1331,"12458":1329,"12459":1341,"12460":1340,"12461":1324,"12462":1324,"12463":1329,"12464":1340,"12465":1346,"12466":1334,"12467":1344,"12468":1322,"12469":1324,"12470":1331,"12471":1346,"12472":1327,"12473":1323,"12474":1323,"12475":1324,"12476":1337,"12477":1344,"12478":1329,"12479":1335,"12480":1324,"12481":1344,"12482":1332,"12483":1337,"12484":1337,"12485":1335,"12486":1322,"12487":1322,"12488":1322,"12489":1321,"12490":1327,"12491":1343,"12492":1341,"12493":1338,"12494":1324,"12495":1343,"12496":1331,"12497":1335,"12498":1346,"12499":1329,"12500":1318,"12501":1344,"12502":1326,"12503":1319,"12504":1319,"12505":1325,"12506":1321,"12507":1347,"12508":1342,"12509":1334,"12510":1341,"12511":1346,"12512":1344,"12513":1325,"12514":1329,"12515":1334,"12516":1329,"12517":1333,"12518":1331,"12519":1334,"12520":1331,"12521":1343,"12522":1324,"12523":1322,"12524":1343,"12525":1333,"12526":1322,"12527":1337,"12528":1324,"12529":1337,"12530":1341,"12531":1333,"12532":1340,"12533":1348,"12534":1321,"12535":1344,"12536":1348,"12537":1334,"12538":1340,"12539":1327,"12540":1340,"12541":1327,"12542":1340,"12543":1322,"12544":1350,"12545":1319,"12546":1324,"12547":1321,"12548":1347,"12549":1338,"12550":1322,"12551":1343,"12552":1346,"12553":1344,"12554":1323,"12555":1343,"12556":1321,"12557":1341,"12558":1327,"12559":1339,"12560":1337,"12561":1319,"12562":1329,"12563":1331,"12564":1368,"12565":1353,"12566":1358,"12567":1354,"12568":1369,"12569":1367,"12570":1367,"12571":1352,"12572":1359,"12573":1353,"12574":1357,"12575":1357,"12576":1354,"12577":1366,"12578":1368,"12579":1364,"12580":1366,"12581":1367,"12582":1364,"12583":1369,"12584":1357,"12585":1359,"12586":1369,"12587":1367,"12588":1354,"12589":1364,"12590":1369,"12591":1360,"12592":1368,"12593":1358,"12594":1353,"12595":1353,"12596":1358,"12597":1354,"12598":1367,"12599":1356,"12600":1368,"12601":1362,"12602":1352,"12603":1352,"12604":1366,"12605":1367,"12606":1356,"12607":1358,"12608":1367,"12609":1369,"12610":1358,"12611":1368,"12612":1360,"12613":1359,"12614":1367,"12615":1354,"12616":1352,"12617":1355,"12618":1369,"12619":1369,"12620":1364,"12621":1352,"12622":1354,"12623":1360,"12624":1354,"12625":1363,"12626":1369,"12627":1353,"12628":1364,"12629":1352,"12630":1367,"12631":1360,"12632":1364,"12633":1360,"12634":1367,"12635":1356,"12636":1365,"12637":1354,"12638":1366,"12639":1370,"12640":1366,"12641":1369,"12642":1368,"12643":1361,"12644":1360,"12645":1368,"12646":1353,"12647":1359,"12648":1364,"12649":1368,"12650":1352,"12651":1360,"12652":1367,"12653":1369,"12654":1366,"12655":1368,"12656":1361,"12657":1362,"12658":1364,"12659":1352,"12660":1369,"12661":1353,"12662":1368,"12663":1354,"12664":1356,"12665":1364,"12666":1365,"12667":1357,"12668":1353,"12669":1367,"12670":1355,"12671":1359,"12672":1369,"12673":1361,"12674":1365,"12675":1370,"12676":1354,"12677":1356,"12678":1358,"12679":1357,"12680":1367,"12681":1354,"12682":1364,"12683":1365,"12684":1357,"12685":1369,"12686":1368,"12687":1356,"12688":1369,"12689":1357,"12690":1361,"12691":1360,"12692":1367,"12693":1353,"12694":1369,"12695":1361,"12696":1368,"12697":1354,"12698":1359,"12699":1368,"12700":1351,"12701":1364,"12702":1358,"12703":1368,"12704":1365,"12705":1355,"12706":1368,"12707":1369,"12708":1369,"12709":1358,"12710":1364,"12711":1356,"12712":1352,"12713":1364,"12714":1367,"12715":1354,"12716":1365,"12717":1361,"12718":1356,"12719":1354,"12720":1364,"12721":1353,"12722":1368,"12723":1354,"12724":1368,"12725":1361,"12726":1360,"12727":1360,"12728":1355,"12729":1366,"12730":1353,"12731":1366,"12732":1357,"12733":1357,"12734":1361,"12735":1353,"12736":1367,"12737":1365,"12738":1355,"12739":1368,"12740":1361,"12741":1368,"12742":1369,"12743":1368,"12744":1354,"12745":1365,"12746":1359,"12747":1354,"12748":1364,"12749":1366,"12750":1361,"12751":1357,"12752":1369,"12753":1354,"12754":1358,"12755":1357,"12756":1364,"12757":1355,"12758":1353,"12759":1354,"12760":1359,"12761":1352,"12762":1354,"12763":1359,"12764":1357,"12765":1368,"12766":1357,"12767":1354,"12768":1368,"12769":1370,"12770":1354,"12771":1360,"12772":1361,"12773":1369,"12774":1365,"12775":1354,"12776":1366,"12777":1360,"12778":1364,"12779":1356,"12780":1353,"12781":1364,"12782":1355,"12783":1368,"12784":1364,"12785":1364,"12786":1369,"12787":1366,"12788":1368,"12789":1364,"12790":1354,"12791":1364,"12792":1356,"12793":1353,"12794":1360,"12795":1354,"12796":1369,"12797":1353,"12798":1361,"12799":1354,"12800":1358,"12801":1359,"12802":1356,"12803":1367,"12804":1361,"12805":1368,"12806":1364,"12807":1361,"12808":1364,"12809":1367,"12810":1369,"12811":1379,"12812":1376,"12813":1383,"12814":1408,"12815":1399,"12816":1380,"12817":1371,"12818":1416,"12819":1400,"12820":1377,"12821":1385,"12822":1371,"12823":1374,"12824":1400,"12825":1416,"12826":1414,"12827":1372,"12828":1379,"12829":1395,"12830":1374,"12831":1388,"12832":1408,"12833":1416,"12834":1388,"12835":1373,"12836":1421,"12837":1388,"12838":1420,"12839":1374,"12840":1399,"12841":1395,"12842":1418,"12843":1382,"12844":1382,"12845":1389,"12846":1391,"12847":1372,"12848":1400,"12849":1421,"12850":1417,"12851":1410,"12852":1395,"12853":1402,"12854":1400,"12855":1392,"12856":1373,"12857":1392,"12858":1386,"12859":1378,"12860":1394,"12861":1388,"12862":1376,"12863":1371,"12864":1378,"12865":1396,"12866":1393,"12867":1415,"12868":1373,"12869":1373,"12870":1407,"12871":1411,"12872":1385,"12873":1398,"12874":1392,"12875":1420,"12876":1410,"12877":1374,"12878":1417,"12879":1386,"12880":1376,"12881":1408,"12882":1379,"12883":1384,"12884":1393,"12885":1416,"12886":1394,"12887":1400,"12888":1397,"12889":1406,"12890":1390,"12891":1406,"12892":1385,"12893":1374,"12894":1377,"12895":1403,"12896":1414,"12897":1377,"12898":1406,"12899":1372,"12900":1406,"12901":1373,"12902":1406,"12903":1381,"12904":1393,"12905":1377,"12906":1405,"12907":1419,"12908":1421,"12909":1395,"12910":1406,"12911":1385,"12912":1418,"12913":1421,"12914":1408,"12915":1418,"12916":1404,"12917":1392,"12918":1401,"12919":1376,"12920":1401,"12921":1393,"12922":1377,"12923":1413,"12924":1371,"12925":1375,"12926":1387,"12927":1381,"12928":1401,"12929":1381,"12930":1416,"12931":1411,"12932":1388,"12933":1376,"12934":1372,"12935":1404,"12936":1398,"12937":1409,"12938":1375,"12939":1393,"12940":1371,"12941":1418,"12942":1389,"12943":1420,"12944":1417,"12945":1414,"12946":1406,"12947":1389,"12948":1411,"12949":1387,"12950":1398,"12951":1399,"12952":1415,"12953":1415,"12954":1398,"12955":1394,"12956":1395,"12957":1403,"12958":1416,"12959":1377,"12960":1399,"12961":1387,"12962":1421,"12963":1378,"12964":1375,"12965":1416,"12966":1412,"12967":1739,"12968":1476,"12969":1673,"12970":1739,"12971":1662,"12972":1706,"12973":1606,"12974":1697,"12975":1648,"12976":1502,"12977":1626,"12978":1537,"12979":1538,"12980":1601,"12981":1479,"12982":1640,"12983":1655,"12984":1747,"12985":1699,"12986":1552,"12987":1798,"12988":1840,"12989":1435,"12990":1655,"12991":1710,"12992":1565,"12993":1625,"12994":1684,"12995":1870,"12996":1465,"12997":1547,"12998":1437,"12999":1461,"13000":1424,"13001":1451,"13002":1858,"13003":1550,"13004":1433,"13005":1507,"13006":1427,"13007":1716,"13008":1662,"13009":1497,"13010":1845,"13011":1786,"13012":1645,"13013":1621,"13014":1751,"13015":1463,"13016":1796,"13017":1804,"13018":1554,"13019":1543,"13020":1784,"13021":1751,"13022":1778,"13023":1500,"13024":1798,"13025":1805,"13026":1769,"13027":1853,"13028":1597,"13029":1752,"13030":1441,"13031":1885,"13032":1739,"13033":1428,"13034":1703,"13035":1691,"13036":1832,"13037":1822,"13038":1649,"13039":1568,"13040":1848,"13041":1508,"13042":1707,"13043":1522,"13044":1559,"13045":1621,"13046":1894,"13047":1548,"13048":1713,"13049":1894,"13050":1752,"13051":1733,"13052":1817,"13053":1649,"13054":1503,"13055":1547,"13056":1830,"13057":1717,"13058":1847,"13059":1750,"13060":1514,"13061":1547,"13062":1546,"13063":1842,"13064":1524,"13065":1429,"13066":1473,"13067":1883,"13068":1820,"13069":1684,"13070":1454,"13071":1545,"13072":1616,"13073":1487,"13074":1692,"13075":1857,"13076":1849,"13077":1739,"13078":1812,"13079":1669,"13080":1436,"13081":1626,"13082":1487,"13083":1673,"13084":1570,"13085":1868,"13086":1662,"13087":1485,"13088":1444,"13089":1798,"13090":1754,"13091":1621,"13092":1848,"13093":1861,"13094":1517,"13095":1470,"13096":1452,"13097":1507,"13098":1492,"13099":1536,"13100":1768,"13101":1529,"13102":1804,"13103":1672,"13104":1548,"13105":1733,"13106":1644,"13107":1751,"13108":1611,"13109":1486,"13110":1622,"13111":1862,"13112":1740,"13113":1596,"13114":1746,"13115":1778,"13116":1562,"13117":1694,"13118":1761,"13119":1875,"13120":1495,"13121":1589,"13122":1818,"13123":1492,"13124":1580,"13125":1442,"13126":1738,"13127":1433,"13128":1497,"13129":1733,"13130":1540,"13131":1614,"13132":1855,"13133":1461,"13134":1668,"13135":1506,"13136":1845,"13137":1442,"13138":1870,"13139":1735,"13140":1547,"13141":1678,"13142":1644,"13143":1848,"13144":1662,"13145":1684,"13146":1883,"13147":1827,"13148":1536,"13149":1715,"13150":1590,"13151":1540,"13152":1733,"13153":1728,"13154":1796,"13155":1523,"13156":1782,"13157":1556,"13158":1487,"13159":1776,"13160":1551,"13161":1454,"13162":1811,"13163":1694,"13164":1881,"13165":1881,"13166":1824,"13167":1648,"13168":1860,"13169":1858,"13170":1486,"13171":1756,"13172":1708,"13173":1494,"13174":1682,"13175":1568,"13176":1547,"13177":1476,"13178":1796,"13179":1613,"13180":1432,"13181":1611,"13182":1704,"13183":1780,"13184":1818,"13185":1648,"13186":1698,"13187":1703,"13188":1452,"13189":1785,"13190":1754,"13191":1696,"13192":1733,"13193":1804,"13194":1783,"13195":1554,"13196":1569,"13197":1578,"13198":1662,"13199":1655,"13200":1597,"13201":1524,"13202":1485,"13203":1751,"13204":1502,"13205":1548,"13206":1492,"13207":1651,"13208":1848,"13209":1461,"13210":1516,"13211":1502,"13212":1478,"13213":1453,"13214":1693,"13215":1842,"13216":1547,"13217":1731,"13218":1548,"13219":1570,"13220":1770,"13221":1885,"13222":1860,"13223":1767,"13224":1652,"13225":1548,"13226":1544,"13227":1736,"13228":1655,"13229":1599,"13230":1471,"13231":1656,"13232":1683,"13233":1473,"13234":1518,"13235":1801,"13236":1619,"13237":1774,"13238":1739,"13239":1640,"13240":1495,"13241":1887,"13242":1753,"13243":1584,"13244":1506,"13245":1698,"13246":1504,"13247":1522,"13248":1482,"13249":1589,"13250":1569,"13251":1575,"13252":1517,"13253":1442,"13254":1729,"13255":1651,"13256":1776,"13257":1873,"13258":1896,"13259":1892,"13260":1823,"13261":1871,"13262":1454,"13263":1743,"13264":1885,"13265":1586,"13266":1555,"13267":1502,"13268":1812,"13269":1494,"13270":1554,"13271":1882,"13272":1648,"13273":1696,"13274":1464,"13275":1865,"13276":1595,"13277":1713,"13278":1691,"13279":1895,"13280":1633,"13281":1800,"13282":1868,"13283":1496,"13284":1454,"13285":1896,"13286":1778,"13287":1749,"13288":1583,"13289":1869,"13290":1522,"13291":1673,"13292":1604,"13293":1803,"13294":1454,"13295":1859,"13296":1496,"13297":1604,"13298":1485,"13299":1847,"13300":1501,"13301":1555,"13302":1747,"13303":1859,"13304":1607,"13305":1683,"13306":1486,"13307":1543,"13308":1816,"13309":1826,"13310":1777,"13311":1608,"13312":1878,"13313":1633,"13314":1801,"13315":1812,"13316":1732,"13317":1432,"13318":1839,"13319":1872,"13320":1583,"13321":1801,"13322":1604,"13323":1711,"13324":1584,"13325":1896,"13326":1848,"13327":1502,"13328":1845,"13329":1550,"13330":1776,"13331":1881,"13332":1424,"13333":1756,"13334":1442,"13335":1773,"13336":1642,"13337":1673,"13338":1522,"13339":1830,"13340":1777,"13341":1873,"13342":1856,"13343":1540,"13344":1729,"13345":1778,"13346":1594,"13347":1520,"13348":1667,"13349":1777,"13350":1506,"13351":1476,"13352":1862,"13353":1490,"13354":1804,"13355":1871,"13356":1754,"13357":1802,"13358":1717,"13359":1454,"13360":1511,"13361":1766,"13362":1656,"13363":1500,"13364":1619,"13365":1728,"13366":1688,"13367":1702,"13368":1896,"13369":1882,"13370":1500,"13371":1517,"13372":1560,"13373":1433,"13374":1564,"13375":1739,"13376":1621,"13377":1769,"13378":1800,"13379":1795,"13380":1696,"13381":1778,"13382":1894,"13383":1884,"13384":1723,"13385":1487,"13386":1816,"13387":1884,"13388":1798,"13389":1798,"13390":1622,"13391":1748,"13392":1767,"13393":1470,"13394":1822,"13395":1660,"13396":1693,"13397":1425,"13398":1477,"13399":1804,"13400":1854,"13401":1596,"13402":1847,"13403":1877,"13404":1747,"13405":1681,"13406":1704,"13407":1462,"13408":1552,"13409":1697,"13410":1508,"13411":1860,"13412":1841,"13413":1705,"13414":1485,"13415":1770,"13416":1614,"13417":1747,"13418":1658,"13419":1877,"13420":1848,"13421":1824,"13422":1676,"13423":1649,"13424":1688,"13425":1878,"13426":1765,"13427":1848,"13428":1804,"13429":1486,"13430":1649,"13431":1827,"13432":1615,"13433":1700,"13434":1436,"13435":1844,"13436":1584,"13437":1527,"13438":1613,"13439":1840,"13440":1717,"13441":1655,"13442":1804,"13443":1830,"13444":1535,"13445":1859,"13446":1704,"13447":1596,"13448":1841,"13449":1552,"13450":1457,"13451":1454,"13452":1662,"13453":1834,"13454":1760,"13455":1637,"13456":1863,"13457":1595,"13458":1684,"13459":1518,"13460":1752,"13461":1588,"13462":1475,"13463":1540,"13464":1445,"13465":1801,"13466":1586,"13467":1734,"13468":1517,"13469":1637,"13470":1877,"13471":1454,"13472":1867,"13473":1659,"13474":1783,"13475":1766,"13476":1752,"13477":1545,"13478":1749,"13479":1546,"13480":1755,"13481":1819,"13482":1599,"13483":1844,"13484":1616,"13485":1439,"13486":1736,"13487":1679,"13488":1561,"13489":1881,"13490":1567,"13491":1802,"13492":1572,"13493":1565,"13494":1522,"13495":1715,"13496":1463,"13497":1802,"13498":1555,"13499":1894,"13500":1572,"13501":1446,"13502":1594,"13503":1696,"13504":1580,"13505":1752,"13506":1716,"13507":1870,"13508":1580,"13509":1456,"13510":1461,"13511":1784,"13512":1833,"13513":1508,"13514":1494,"13515":1859,"13516":1663,"13517":1515,"13518":1465,"13519":1663,"13520":1623,"13521":1848,"13522":1877,"13523":1604,"13524":1595,"13525":1728,"13526":1499,"13527":1606,"13528":1734,"13529":1425,"13530":1528,"13531":1445,"13532":1604,"13533":1560,"13534":1653,"13535":1751,"13536":1822,"13537":1477,"13538":1442,"13539":1732,"13540":1442,"13541":1761,"13542":1840,"13543":1788,"13544":1427,"13545":1751,"13546":1678,"13547":1806,"13548":1484,"13549":1733,"13550":1881,"13551":1504,"13552":1589,"13553":1800,"13554":1684,"13555":1676,"13556":1796,"13557":1621,"13558":1833,"13559":1848,"13560":1551,"13561":1669,"13562":1570,"13563":1447,"13564":1780,"13565":1861,"13566":1817,"13567":1573,"13568":1728,"13569":1798,"13570":1666,"13571":1522,"13572":1446,"13573":1630,"13574":1548,"13575":1666,"13576":1751,"13577":1604,"13578":1649,"13579":1692,"13580":1796,"13581":1657,"13582":1620,"13583":1423,"13584":1898,"13585":1586,"13586":1580,"13587":1699,"13588":1743,"13589":1441,"13590":1644,"13591":1454,"13592":1745,"13593":1773,"13594":1881,"13595":1470,"13596":1487,"13597":1793,"13598":1671,"13599":1894,"13600":1586,"13601":1758,"13602":1559,"13603":1719,"13604":1800,"13605":1884,"13606":1487,"13607":1483,"13608":1816,"13609":1668,"13610":1428,"13611":1516,"13612":1898,"13613":1822,"13614":1753,"13615":1805,"13616":1753,"13617":1862,"13618":1726,"13619":1725,"13620":1790,"13621":1835,"13622":1871,"13623":1830,"13624":1810,"13625":1508,"13626":1751,"13627":1771,"13628":1546,"13629":1702,"13630":1759,"13631":1599,"13632":1797,"13633":1804,"13634":1671,"13635":1691,"13636":1765,"13637":1710,"13638":1584,"13639":1712,"13640":1649,"13641":1845,"13642":1867,"13643":1799,"13644":1765,"13645":1870,"13646":1894,"13647":1735,"13648":1778,"13649":1822,"13650":1790,"13651":1659,"13652":1729,"13653":1798,"13654":1871,"13655":1463,"13656":1896,"13657":1614,"13658":1804,"13659":1547,"13660":1898,"13661":1442,"13662":1503,"13663":1426,"13664":1623,"13665":1855,"13666":1480,"13667":1778,"13668":1704,"13669":1893,"13670":1803,"13671":1492,"13672":1730,"13673":1596,"13674":1820,"13675":1672,"13676":1649,"13677":1463,"13678":1493,"13679":1527,"13680":1852,"13681":1743,"13682":1502,"13683":1541,"13684":1856,"13685":1577,"13686":1800,"13687":1506,"13688":1722,"13689":1813,"13690":1661,"13691":1446,"13692":1611,"13693":1671,"13694":1744,"13695":1622,"13696":1454,"13697":1545,"13698":1662,"13699":1620,"13700":1855,"13701":1473,"13702":1691,"13703":1646,"13704":1584,"13705":1699,"13706":1449,"13707":1584,"13708":1726,"13709":1776,"13710":1424,"13711":1834,"13712":1493,"13713":1517,"13714":1704,"13715":1620,"13716":1673,"13717":1801,"13718":1704,"13719":1846,"13720":1754,"13721":1705,"13722":1494,"13723":1792,"13724":1739,"13725":1703,"13726":1769,"13727":1854,"13728":1552,"13729":1589,"13730":1798,"13731":1584,"13732":1791,"13733":1655,"13734":1827,"13735":1664,"13736":1761,"13737":1548,"13738":1622,"13739":1428,"13740":1739,"13741":1470,"13742":1497,"13743":1589,"13744":1704,"13745":1809,"13746":1750,"13747":1464,"13748":1631,"13749":1458,"13750":1566,"13751":1498,"13752":1444,"13753":1847,"13754":1531,"13755":1708,"13756":1877,"13757":1684,"13758":1782,"13759":1863,"13760":1514,"13761":1673,"13762":1802,"13763":1861,"13764":1559,"13765":1612,"13766":1749,"13767":1560,"13768":1595,"13769":1801,"13770":1871,"13771":1544,"13772":1792,"13773":1481,"13774":1484,"13775":1495,"13776":1776,"13777":1606,"13778":1518,"13779":1892,"13780":1567,"13781":1696,"13782":1822,"13783":1427,"13784":1468,"13785":1559,"13786":1467,"13787":1683,"13788":1802,"13789":1885,"13790":1840,"13791":1572,"13792":1783,"13793":1852,"13794":1778,"13795":1729,"13796":1477,"13797":1540,"13798":1506,"13799":1476,"13800":1740,"13801":1457,"13802":1490,"13803":1578,"13804":1639,"13805":1567,"13806":1708,"13807":1769,"13808":1827,"13809":1463,"13810":1495,"13811":1629,"13812":1527,"13813":1809,"13814":1826,"13815":1880,"13816":1542,"13817":1556,"13818":1895,"13819":1709,"13820":1650,"13821":1891,"13822":1691,"13823":1495,"13824":1747,"13825":1547,"13826":1844,"13827":1725,"13828":1662,"13829":1465,"13830":1453,"13831":1436,"13832":1684,"13833":1819,"13834":1804,"13835":1639,"13836":1831,"13837":1871,"13838":1739,"13839":1724,"13840":1425,"13841":1611,"13842":1761,"13843":1589,"13844":1589,"13845":1520,"13846":1580,"13847":1804,"13848":1502,"13849":1887,"13850":1562,"13851":1473,"13852":1871,"13853":1676,"13854":1610,"13855":1691,"13856":1499,"13857":1517,"13858":1540,"13859":1555,"13860":1478,"13861":1477,"13862":1524,"13863":1614,"13864":1541,"13865":1710,"13866":1686,"13867":1868,"13868":1852,"13869":1547,"13870":1511,"13871":1552,"13872":1747,"13873":1800,"13874":1861,"13875":1564,"13876":1521,"13877":1540,"13878":1450,"13879":1594,"13880":1452,"13881":1733,"13882":1801,"13883":1541,"13884":1746,"13885":1738,"13886":1663,"13887":1860,"13888":1776,"13889":1863,"13890":1669,"13891":1628,"13892":1852,"13893":1644,"13894":1487,"13895":1552,"13896":1630,"13897":1812,"13898":1486,"13899":1568,"13900":1804,"13901":1749,"13902":1804,"13903":1436,"13904":1584,"13905":1869,"13906":1673,"13907":1552,"13908":1444,"13909":1826,"13910":1599,"13911":1519,"13912":1884,"13913":1589,"13914":1729,"13915":1499,"13916":1785,"13917":1736,"13918":1673,"13919":1863,"13920":1891,"13921":1704,"13922":1567,"13923":1517,"13924":1556,"13925":1753,"13926":1604,"13927":1442,"13928":1488,"13929":1806,"13930":1599,"13931":1566,"13932":1691,"13933":1545,"13934":1620,"13935":1800,"13936":1878,"13937":1894,"13938":1840,"13939":1509,"13940":1446,"13941":1635,"13942":1453,"13943":1814,"13944":1554,"13945":1819,"13946":1716,"13947":1441,"13948":1868,"13949":1565,"13950":1594,"13951":1559,"13952":1559,"13953":1877,"13954":1849,"13955":1545,"13956":1623,"13957":1493,"13958":1529,"13959":1656,"13960":1494,"13961":1748,"13962":1815,"13963":1735,"13964":1463,"13965":1863,"13966":1518,"13967":1454,"13968":1507,"13969":1442,"13970":1556,"13971":1500,"13972":1500,"13973":1852,"13974":1429,"13975":1548,"13976":1580,"13977":1790,"13978":1669,"13979":1552,"13980":1501,"13981":1762,"13982":1699,"13983":1760,"13984":1586,"13985":1640,"13986":1587,"13987":1733,"13988":1696,"13989":1520,"13990":1651,"13991":1795,"13992":1597,"13993":1673,"13994":1705,"13995":1743,"13996":1805,"13997":1454,"13998":1684,"13999":1540,"14000":1620,"14001":1536,"14002":1442,"14003":1516,"14004":1476,"14005":1704,"14006":1637,"14007":1443,"14008":1580,"14009":1881,"14010":1848,"14011":1743,"14012":1634,"14013":1696,"14014":1621,"14015":1827,"14016":1769,"14017":1655,"14018":1554,"14019":1848,"14020":1511,"14021":1492,"14022":1792,"14023":1840,"14024":1638,"14025":1777,"14026":1786,"14027":1885,"14028":1556,"14029":1729,"14030":1687,"14031":1550,"14032":1559,"14033":1444,"14034":1770,"14035":1851,"14036":1759,"14037":1593,"14038":1660,"14039":1765,"14040":1660,"14041":1881,"14042":1770,"14043":1442,"14044":1822,"14045":1669,"14046":1567,"14047":1871,"14048":1662,"14049":1619,"14050":1676,"14051":1877,"14052":1823,"14053":1548,"14054":1619,"14055":1599,"14056":1584,"14057":1765,"14058":1498,"14059":1875,"14060":1552,"14061":1506,"14062":1777,"14063":1791,"14064":1698,"14065":1800,"14066":1863,"14067":1877,"14068":1667,"14069":1432,"14070":1457,"14071":1746,"14072":1554,"14073":1684,"14074":1668,"14075":1611,"14076":1792,"14077":1785,"14078":1798,"14079":1546,"14080":1556,"14081":1517,"14082":1666,"14083":1704,"14084":1653,"14085":1681,"14086":1459,"14087":1646,"14088":1461,"14089":1566,"14090":1527,"14091":1747,"14092":1635,"14093":1544,"14094":1504,"14095":1862,"14096":1706,"14097":1623,"14098":1540,"14099":1552,"14100":1437,"14101":1457,"14102":1703,"14103":1710,"14104":1619,"14105":1547,"14106":1510,"14107":1644,"14108":1596,"14109":1739,"14110":1768,"14111":1514,"14112":1777,"14113":1873,"14114":1801,"14115":1590,"14116":1732,"14117":1511,"14118":1747,"14119":1873,"14120":1495,"14121":1870,"14122":1655,"14123":1647,"14124":1644,"14125":1871,"14126":1621,"14127":1847,"14128":1594,"14129":1871,"14130":1798,"14131":1753,"14132":1698,"14133":1546,"14134":1450,"14135":1732,"14136":1811,"14137":1798,"14138":1541,"14139":1830,"14140":1858,"14141":1679,"14142":1769,"14143":1783,"14144":1490,"14145":1800,"14146":1545,"14147":1519,"14148":1480,"14149":1509,"14150":1722,"14151":1550,"14152":1566,"14153":1792,"14154":1679,"14155":1452,"14156":1548,"14157":1767,"14158":1883,"14159":1622,"14160":1488,"14161":1473,"14162":1892,"14163":1770,"14164":1681,"14165":1747,"14166":1885,"14167":1655,"14168":1640,"14169":1453,"14170":1754,"14171":1883,"14172":1442,"14173":1492,"14174":1508,"14175":1866,"14176":1676,"14177":1617,"14178":1540,"14179":1687,"14180":1717,"14181":1611,"14182":1845,"14183":1850,"14184":1446,"14185":1508,"14186":1812,"14187":1496,"14188":1475,"14189":1680,"14190":1651,"14191":1629,"14192":1666,"14193":1489,"14194":1729,"14195":1793,"14196":1461,"14197":1890,"14198":1897,"14199":1874,"14200":1570,"14201":1594,"14202":1431,"14203":1487,"14204":1584,"14205":1463,"14206":1463,"14207":1544,"14208":1882,"14209":1850,"14210":1865,"14211":1703,"14212":1621,"14213":1649,"14214":1442,"14215":1892,"14216":1563,"14217":1463,"14218":1522,"14219":1568,"14220":1821,"14221":1580,"14222":1489,"14223":1556,"14224":1769,"14225":1429,"14226":1432,"14227":1615,"14228":1594,"14229":1596,"14230":1424,"14231":1566,"14232":1631,"14233":1664,"14234":1686,"14235":1782,"14236":1742,"14237":1710,"14238":1463,"14239":1580,"14240":1446,"14241":1615,"14242":1464,"14243":1801,"14244":1721,"14245":1888,"14246":1785,"14247":1769,"14248":1801,"14249":1745,"14250":1779,"14251":1841,"14252":1827,"14253":1547,"14254":1607,"14255":1803,"14256":1640,"14257":1546,"14258":1809,"14259":1545,"14260":1813,"14261":1644,"14262":1614,"14263":1606,"14264":1676,"14265":1534,"14266":1896,"14267":1809,"14268":1541,"14269":1461,"14270":1611,"14271":1477,"14272":1627,"14273":1837,"14274":1619,"14275":1827,"14276":1846,"14277":1753,"14278":1469,"14279":1747,"14280":1803,"14281":1808,"14282":1818,"14283":1602,"14284":1877,"14285":1586,"14286":1663,"14287":1508,"14288":1648,"14289":1755,"14290":1546,"14291":1860,"14292":1606,"14293":1548,"14294":1809,"14295":1722,"14296":1544,"14297":1757,"14298":1583,"14299":1522,"14300":1580,"14301":1619,"14302":1481,"14303":1572,"14304":1885,"14305":1710,"14306":1541,"14307":1827,"14308":1659,"14309":1649,"14310":1482,"14311":1659,"14312":1665,"14313":1732,"14314":1650,"14315":1849,"14316":1576,"14317":1835,"14318":1756,"14319":1461,"14320":1477,"14321":1547,"14322":1723,"14323":1834,"14324":1796,"14325":1802,"14326":1494,"14327":1446,"14328":1662,"14329":1693,"14330":1605,"14331":1771,"14332":1702,"14333":1494,"14334":1436,"14335":1847,"14336":1802,"14337":1750,"14338":1785,"14339":1658,"14340":1644,"14341":1497,"14342":1713,"14343":1554,"14344":1623,"14345":1560,"14346":1878,"14347":1692,"14348":1584,"14349":1466,"14350":1453,"14351":1862,"14352":1830,"14353":1747,"14354":1621,"14355":1696,"14356":1798,"14357":1734,"14358":1769,"14359":1463,"14360":1546,"14361":1448,"14362":1543,"14363":1871,"14364":1751,"14365":1842,"14366":1886,"14367":1596,"14368":1760,"14369":1605,"14370":1848,"14371":1486,"14372":1848,"14373":1800,"14374":1583,"14375":1769,"14376":1575,"14377":1599,"14378":1597,"14379":1846,"14380":1683,"14381":1520,"14382":1506,"14383":1884,"14384":1733,"14385":1449,"14386":1865,"14387":1860,"14388":1494,"14389":1684,"14390":1479,"14391":1776,"14392":1547,"14393":1619,"14394":1754,"14395":1497,"14396":1589,"14397":1470,"14398":1589,"14399":1842,"14400":1796,"14401":1586,"14402":1639,"14403":1548,"14404":1502,"14405":1585,"14406":1476,"14407":1782,"14408":1482,"14409":1470,"14410":1688,"14411":1458,"14412":1799,"14413":1867,"14414":1734,"14415":1809,"14416":1734,"14417":1581,"14418":1874,"14419":1463,"14420":1856,"14421":1699,"14422":1688,"14423":1804,"14424":1884,"14425":1429,"14426":1796,"14427":1723,"14428":1521,"14429":1580,"14430":1547,"14431":1580,"14432":1878,"14433":1604,"14434":1551,"14435":1588,"14436":1877,"14437":1748,"14438":1496,"14439":1550,"14440":1522,"14441":1848,"14442":1787,"14443":1775,"14444":1830,"14445":1800,"14446":1733,"14447":1609,"14448":1616,"14449":1526,"14450":1456,"14451":1527,"14452":1626,"14453":1507,"14454":1800,"14455":1504,"14456":1777,"14457":1454,"14458":1713,"14459":1673,"14460":1599,"14461":1453,"14462":1662,"14463":1524,"14464":1453,"14465":1793,"14466":1500,"14467":1856,"14468":1546,"14469":1426,"14470":1707,"14471":1743,"14472":1739,"14473":1570,"14474":1552,"14475":1427,"14476":1846,"14477":1482,"14478":1782,"14479":1614,"14480":1772,"14481":1684,"14482":1678,"14483":1578,"14484":1488,"14485":1867,"14486":1550,"14487":1777,"14488":1664,"14489":1747,"14490":1676,"14491":1596,"14492":1778,"14493":1460,"14494":1800,"14495":1896,"14496":1766,"14497":1485,"14498":1552,"14499":1599,"14500":1500,"14501":1482,"14502":1661,"14503":1834,"14504":1658,"14505":1554,"14506":1580,"14507":1703,"14508":1646,"14509":1759,"14510":1897,"14511":1651,"14512":1673,"14513":1877,"14514":1596,"14515":1822,"14516":1464,"14517":1888,"14518":1624,"14519":1508,"14520":1495,"14521":1506,"14522":1551,"14523":1582,"14524":1595,"14525":1445,"14526":1751,"14527":1500,"14528":1766,"14529":1463,"14530":1792,"14531":1726,"14532":1620,"14533":1636,"14534":1815,"14535":1854,"14536":1556,"14537":1532,"14538":1669,"14539":1583,"14540":1702,"14541":1514,"14542":1713,"14543":1580,"14544":1821,"14545":1532,"14546":1875,"14547":1609,"14548":1590,"14549":1776,"14550":1555,"14551":1534,"14552":1521,"14553":1453,"14554":1672,"14555":1856,"14556":1468,"14557":1740,"14558":1457,"14559":1808,"14560":1494,"14561":1754,"14562":1735,"14563":1725,"14564":1867,"14565":1503,"14566":1734,"14567":1619,"14568":1442,"14569":1676,"14570":1550,"14571":1873,"14572":1567,"14573":1568,"14574":1453,"14575":1813,"14576":1782,"14577":1467,"14578":1751,"14579":1514,"14580":1471,"14581":1716,"14582":1872,"14583":1688,"14584":1822,"14585":1496,"14586":1566,"14587":1694,"14588":1651,"14589":1599,"14590":1533,"14591":1565,"14592":1441,"14593":1747,"14594":1886,"14595":1765,"14596":1857,"14597":1447,"14598":1752,"14599":1622,"14600":1586,"14601":1679,"14602":1622,"14603":1588,"14604":1621,"14605":1641,"14606":1641,"14607":1473,"14608":1570,"14609":1748,"14610":1457,"14611":1424,"14612":1564,"14613":1646,"14614":1548,"14615":1567,"14616":1878,"14617":1782,"14618":1753,"14619":1702,"14620":1748,"14621":1877,"14622":1540,"14623":1589,"14624":1517,"14625":1457,"14626":1610,"14627":1498,"14628":1596,"14629":1876,"14630":1891,"14631":1798,"14632":1890,"14633":1825,"14634":1874,"14635":1735,"14636":1810,"14637":1776,"14638":1712,"14639":1869,"14640":1838,"14641":1831,"14642":1708,"14643":1432,"14644":1487,"14645":1548,"14646":1693,"14647":1815,"14648":1896,"14649":1593,"14650":1604,"14651":1769,"14652":1884,"14653":1868,"14654":1894,"14655":1759,"14656":1606,"14657":1757,"14658":1735,"14659":1640,"14660":1837,"14661":1567,"14662":1660,"14663":1891,"14664":1461,"14665":1469,"14666":1820,"14667":1882,"14668":1878,"14669":1545,"14670":1633,"14671":1507,"14672":1703,"14673":1809,"14674":1719,"14675":1680,"14676":1862,"14677":1605,"14678":1589,"14679":1889,"14680":1631,"14681":1768,"14682":1551,"14683":1860,"14684":1691,"14685":1711,"14686":1785,"14687":1463,"14688":1859,"14689":1533,"14690":1603,"14691":1466,"14692":1666,"14693":1723,"14694":1804,"14695":1748,"14696":1740,"14697":1769,"14698":1500,"14699":1457,"14700":1751,"14701":1798,"14702":1880,"14703":1776,"14704":1615,"14705":1576,"14706":1662,"14707":1731,"14708":1825,"14709":1723,"14710":1494,"14711":1644,"14712":1619,"14713":1658,"14714":1845,"14715":1722,"14716":1599,"14717":1548,"14718":1653,"14719":1698,"14720":1477,"14721":1684,"14722":1615,"14723":1827,"14724":1778,"14725":1804,"14726":1442,"14727":1492,"14728":1504,"14729":1821,"14730":1471,"14731":1628,"14732":1480,"14733":1805,"14734":1467,"14735":1542,"14736":1621,"14737":1540,"14738":1873,"14739":1747,"14740":1769,"14741":1827,"14742":1649,"14743":1443,"14744":1656,"14745":1713,"14746":1830,"14747":1809,"14748":1596,"14749":1522,"14750":1862,"14751":1744,"14752":1799,"14753":1462,"14754":1688,"14755":1698,"14756":1493,"14757":1570,"14758":1580,"14759":1852,"14760":1660,"14761":1706,"14762":1461,"14763":1586,"14764":1477,"14765":1697,"14766":1525,"14767":1716,"14768":1776,"14769":1802,"14770":1595,"14771":1430,"14772":1890,"14773":1765,"14774":1804,"14775":1854,"14776":1427,"14777":1433,"14778":1435,"14779":1433,"14780":1619,"14781":1518,"14782":1483,"14783":1750,"14784":1881,"14785":1615,"14786":1816,"14787":1780,"14788":1508,"14789":1704,"14790":1475,"14791":1858,"14792":1673,"14793":1580,"14794":1818,"14795":1811,"14796":1588,"14797":1504,"14798":1836,"14799":1896,"14800":1464,"14801":1872,"14802":1455,"14803":1778,"14804":1605,"14805":1541,"14806":1620,"14807":1496,"14808":1579,"14809":1681,"14810":1470,"14811":1694,"14812":1443,"14813":1618,"14814":1658,"14815":1677,"14816":1511,"14817":1458,"14818":1657,"14819":1481,"14820":1435,"14821":1663,"14822":1704,"14823":1604,"14824":1594,"14825":1897,"14826":1541,"14827":1693,"14828":1495,"14829":1662,"14830":1654,"14831":1783,"14832":1522,"14833":1777,"14834":1571,"14835":1798,"14836":1870,"14837":1609,"14838":1559,"14839":1770,"14840":1666,"14841":1783,"14842":1439,"14843":1446,"14844":1666,"14845":1713,"14846":1859,"14847":1555,"14848":1830,"14849":1545,"14850":1738,"14851":1762,"14852":1518,"14853":1653,"14854":1804,"14855":1734,"14856":1707,"14857":1785,"14858":1785,"14859":1802,"14860":1672,"14861":1728,"14862":1734,"14863":1570,"14864":1650,"14865":1504,"14866":1740,"14867":1530,"14868":1520,"14869":1487,"14870":1673,"14871":1827,"14872":1619,"14873":1611,"14874":1651,"14875":1773,"14876":1769,"14877":1477,"14878":1595,"14879":1717,"14880":1586,"14881":1754,"14882":1707,"14883":1552,"14884":1457,"14885":1464,"14886":1545,"14887":1798,"14888":1628,"14889":1559,"14890":1450,"14891":1641,"14892":1739,"14893":1825,"14894":1479,"14895":1834,"14896":1524,"14897":1483,"14898":1716,"14899":1592,"14900":1826,"14901":1806,"14902":1431,"14903":1857,"14904":1800,"14905":1643,"14906":1578,"14907":1454,"14908":1675,"14909":1494,"14910":1864,"14911":1594,"14912":1599,"14913":1848,"14914":1575,"14915":1698,"14916":1840,"14917":1894,"14918":1509,"14919":1532,"14920":1458,"14921":1536,"14922":1862,"14923":1798,"14924":1766,"14925":1841,"14926":1443,"14927":1669,"14928":1640,"14929":1600,"14930":1711,"14931":1647,"14932":1894,"14933":1563,"14934":1659,"14935":1725,"14936":1827,"14937":1651,"14938":1504,"14939":1592,"14940":1813,"14941":1657,"14942":1482,"14943":1871,"14944":1792,"14945":1651,"14946":1589,"14947":1898,"14948":1756,"14949":1704,"14950":1717,"14951":1504,"14952":1646,"14953":1704,"14954":1884,"14955":1541,"14956":1800,"14957":1891,"14958":1768,"14959":1546,"14960":1744,"14961":1816,"14962":1599,"14963":1794,"14964":1632,"14965":1455,"14966":1862,"14967":1485,"14968":1498,"14969":1594,"14970":1541,"14971":1618,"14972":1751,"14973":1452,"14974":1710,"14975":1596,"14976":1750,"14977":1800,"14978":1494,"14979":1473,"14980":1631,"14981":1673,"14982":1703,"14983":1556,"14984":1648,"14985":1882,"14986":1828,"14987":1596,"14988":1673,"14989":1448,"14990":1504,"14991":1690,"14992":1504,"14993":1778,"14994":1622,"14995":1635,"14996":1818,"14997":1715,"14998":1744,"14999":1461,"15000":1666,"15001":1752,"15002":1896,"15003":1673,"15004":1871,"15005":1522,"15006":1704,"15007":1571,"15008":1597,"15009":1773,"15010":1769,"15011":1726,"15012":1527,"15013":1579,"15014":1759,"15015":1662,"15016":1812,"15017":1533,"15018":1582,"15019":1689,"15020":1521,"15021":1508,"15022":1684,"15023":1663,"15024":1805,"15025":1600,"15026":1735,"15027":1713,"15028":1859,"15029":1679,"15030":1718,"15031":1526,"15032":1447,"15033":1874,"15034":1508,"15035":1480,"15036":1749,"15037":1611,"15038":1684,"15039":1734,"15040":1719,"15041":1493,"15042":1522,"15043":1745,"15044":1709,"15045":1476,"15046":1816,"15047":1524,"15048":1800,"15049":1684,"15050":1725,"15051":1877,"15052":1792,"15053":1818,"15054":1736,"15055":1525,"15056":1590,"15057":1708,"15058":1763,"15059":1425,"15060":1898,"15061":1803,"15062":1640,"15063":1857,"15064":1627,"15065":1803,"15066":1533,"15067":1880,"15068":1790,"15069":1779,"15070":1688,"15071":1777,"15072":1507,"15073":1538,"15074":1539,"15075":1871,"15076":1443,"15077":1709,"15078":1837,"15079":1442,"15080":1830,"15081":1734,"15082":1666,"15083":1605,"15084":1508,"15085":1607,"15086":1778,"15087":1482,"15088":1873,"15089":1538,"15090":1575,"15091":1781,"15092":1552,"15093":1691,"15094":1668,"15095":1575,"15096":1716,"15097":1716,"15098":1753,"15099":1812,"15100":1574,"15101":1811,"15102":1696,"15103":1533,"15104":1597,"15105":1579,"15106":1766,"15107":1803,"15108":1438,"15109":1498,"15110":1729,"15111":1798,"15112":1827,"15113":1573,"15114":1555,"15115":1462,"15116":1863,"15117":1549,"15118":1768,"15119":1894,"15120":1805,"15121":1563,"15122":1480,"15123":1508,"15124":1790,"15125":1587,"15126":1687,"15127":1870,"15128":1853,"15129":1838,"15130":1820,"15131":1765,"15132":1619,"15133":1684,"15134":1520,"15135":1502,"15136":1780,"15137":1426,"15138":1770,"15139":1428,"15140":1839,"15141":1621,"15142":1487,"15143":1820,"15144":1857,"15145":1672,"15146":1747,"15147":1848,"15148":1662,"15149":1676,"15150":1526,"15151":1898,"15152":1731,"15153":1662,"15154":1648,"15155":1445,"15156":1673,"15157":1782,"15158":1558,"15159":1846,"15160":1766,"15161":1679,"15162":1825,"15163":1709,"15164":1650,"15165":1883,"15166":1796,"15167":1861,"15168":1615,"15169":1669,"15170":1798,"15171":1862,"15172":1610,"15173":1643,"15174":1894,"15175":1832,"15176":1436,"15177":1751,"15178":1506,"15179":1552,"15180":1441,"15181":1894,"15182":1744,"15183":1545,"15184":1733,"15185":1694,"15186":1691,"15187":1891,"15188":1520,"15189":1753,"15190":1884,"15191":1720,"15192":1812,"15193":1845,"15194":1883,"15195":1561,"15196":1494,"15197":1733,"15198":1786,"15199":1673,"15200":1622,"15201":1507,"15202":1831,"15203":1502,"15204":1619,"15205":1823,"15206":1719,"15207":1490,"15208":1866,"15209":1543,"15210":1823,"15211":1877,"15212":1783,"15213":1666,"15214":1785,"15215":1547,"15216":1659,"15217":1507,"15218":1737,"15219":1609,"15220":1525,"15221":1671,"15222":1507,"15223":1531,"15224":1753,"15225":1675,"15226":1629,"15227":1467,"15228":1552,"15229":1877,"15230":1752,"15231":1892,"15232":1867,"15233":1521,"15234":1647,"15235":1798,"15236":1547,"15237":1548,"15238":1696,"15239":1716,"15240":1580,"15241":1428,"15242":1506,"15243":1775,"15244":1522,"15245":1639,"15246":1771,"15247":1824,"15248":1716,"15249":1443,"15250":1606,"15251":1740,"15252":1441,"15253":1587,"15254":1490,"15255":1519,"15256":1734,"15257":1565,"15258":1804,"15259":1885,"15260":1493,"15261":1880,"15262":1619,"15263":1848,"15264":1559,"15265":1892,"15266":1453,"15267":1612,"15268":1560,"15269":1770,"15270":1459,"15271":1823,"15272":1494,"15273":1659,"15274":1798,"15275":1684,"15276":1532,"15277":1447,"15278":1442,"15279":1555,"15280":1858,"15281":1514,"15282":1726,"15283":1758,"15284":1585,"15285":1664,"15286":1541,"15287":1853,"15288":1617,"15289":1800,"15290":1778,"15291":1521,"15292":1614,"15293":1776,"15294":1601,"15295":1648,"15296":1785,"15297":1812,"15298":1628,"15299":1827,"15300":1458,"15301":1757,"15302":1519,"15303":1687,"15304":1840,"15305":1578,"15306":1701,"15307":1660,"15308":1714,"15309":1540,"15310":1752,"15311":1676,"15312":1441,"15313":1863,"15314":1865,"15315":1752,"15316":1573,"15317":1446,"15318":1716,"15319":1555,"15320":1541,"15321":1696,"15322":1628,"15323":1875,"15324":1646,"15325":1508,"15326":1894,"15327":1621,"15328":1774,"15329":1745,"15330":1545,"15331":1657,"15332":1871,"15333":1520,"15334":1516,"15335":1853,"15336":1710,"15337":1712,"15338":1629,"15339":1639,"15340":1727,"15341":1822,"15342":1606,"15343":1697,"15344":1445,"15345":1837,"15346":1457,"15347":1504,"15348":1857,"15349":1636,"15350":1469,"15351":1666,"15352":1871,"15353":1735,"15354":1883,"15355":1647,"15356":1788,"15357":1518,"15358":1821,"15359":1872,"15360":1575,"15361":1679,"15362":1704,"15363":1684,"15364":1464,"15365":1462,"15366":1673,"15367":1857,"15368":1862,"15369":1830,"15370":1723,"15371":1428,"15372":1548,"15373":1666,"15374":1630,"15375":1659,"15376":1524,"15377":1859,"15378":1562,"15379":1778,"15380":1752,"15381":1831,"15382":1706,"15383":1591,"15384":1506,"15385":1580,"15386":1526,"15387":1885,"15388":1675,"15389":1487,"15390":1733,"15391":1812,"15392":1470,"15393":1503,"15394":1658,"15395":1693,"15396":1615,"15397":1499,"15398":1673,"15399":1705,"15400":1788,"15401":1482,"15402":1543,"15403":1524,"15404":1493,"15405":1852,"15406":1522,"15407":1673,"15408":1855,"15409":1725,"15410":1450,"15411":1832,"15412":1875,"15413":1631,"15414":1657,"15415":1708,"15416":1716,"15417":1851,"15418":1567,"15419":1840,"15420":1539,"15421":1848,"15422":1596,"15423":1819,"15424":1806,"15425":1800,"15426":1495,"15427":1492,"15428":1474,"15429":1553,"15430":1525,"15431":1702,"15432":1508,"15433":1589,"15434":1596,"15435":1874,"15436":1815,"15437":1582,"15438":1855,"15439":1547,"15440":1711,"15441":1639,"15442":1620,"15443":1770,"15444":1541,"15445":1732,"15446":1464,"15447":1658,"15448":1779,"15449":1552,"15450":1805,"15451":1719,"15452":1839,"15453":1681,"15454":1755,"15455":1424,"15456":1507,"15457":1798,"15458":1447,"15459":1704,"15460":1477,"15461":1726,"15462":1517,"15463":1540,"15464":1735,"15465":1487,"15466":1506,"15467":1658,"15468":1509,"15469":1646,"15470":1676,"15471":1782,"15472":1545,"15473":1800,"15474":1858,"15475":1650,"15476":1667,"15477":1717,"15478":1520,"15479":1764,"15480":1884,"15481":1801,"15482":1885,"15483":1436,"15484":1634,"15485":1596,"15486":1863,"15487":1746,"15488":1717,"15489":1767,"15490":1498,"15491":1549,"15492":1821,"15493":1807,"15494":1712,"15495":1635,"15496":1655,"15497":1502,"15498":1710,"15499":1581,"15500":1613,"15501":1668,"15502":1564,"15503":1445,"15504":1751,"15505":1798,"15506":1430,"15507":1735,"15508":1524,"15509":1619,"15510":1488,"15511":1882,"15512":1691,"15513":1820,"15514":1580,"15515":1780,"15516":1823,"15517":1518,"15518":1860,"15519":1600,"15520":1870,"15521":1884,"15522":1538,"15523":1587,"15524":1875,"15525":1524,"15526":1735,"15527":1852,"15528":1811,"15529":1555,"15530":1547,"15531":1502,"15532":1628,"15533":1871,"15534":1888,"15535":1853,"15536":1537,"15537":1457,"15538":1610,"15539":1595,"15540":1604,"15541":1660,"15542":1506,"15543":1662,"15544":1696,"15545":1519,"15546":1425,"15547":1547,"15548":1679,"15549":1453,"15550":1769,"15551":1838,"15552":1769,"15553":1786,"15554":1454,"15555":1522,"15556":1669,"15557":1453,"15558":1713,"15559":1804,"15560":1862,"15561":1477,"15562":1792,"15563":1666,"15564":1496,"15565":1658,"15566":1875,"15567":1522,"15568":1776,"15569":1745,"15570":1541,"15571":1555,"15572":1627,"15573":1617,"15574":1567,"15575":1572,"15576":1614,"15577":1659,"15578":1784,"15579":1719,"15580":1490,"15581":1873,"15582":1519,"15583":1836,"15584":1766,"15585":1523,"15586":1767,"15587":1500,"15588":1676,"15589":1559,"15590":1850,"15591":1522,"15592":1596,"15593":1884,"15594":1644,"15595":1861,"15596":1616,"15597":1658,"15598":1830,"15599":1538,"15600":1867,"15601":1728,"15602":1485,"15603":1802,"15604":1737,"15605":1798,"15606":1769,"15607":1746,"15608":1661,"15609":1857,"15610":1591,"15611":1560,"15612":1651,"15613":1728,"15614":1632,"15615":1589,"15616":1503,"15617":1736,"15618":1871,"15619":1637,"15620":1613,"15621":1797,"15622":1424,"15623":1609,"15624":1492,"15625":1864,"15626":1450,"15627":1769,"15628":1575,"15629":1699,"15630":1872,"15631":1614,"15632":1662,"15633":1610,"15634":1495,"15635":1684,"15636":1563,"15637":1606,"15638":1615,"15639":1588,"15640":1600,"15641":1541,"15642":1603,"15643":1580,"15644":1798,"15645":1675,"15646":1657,"15647":1829,"15648":1514,"15649":1589,"15650":1532,"15651":1508,"15652":1463,"15653":1798,"15654":1511,"15655":1620,"15656":1635,"15657":1482,"15658":1745,"15659":1660,"15660":1740,"15661":1717,"15662":1509,"15663":1801,"15664":1599,"15665":1442,"15666":1885,"15667":1883,"15668":1594,"15669":1551,"15670":1886,"15671":1710,"15672":1556,"15673":1876,"15674":1541,"15675":1583,"15676":1425,"15677":1771,"15678":1466,"15679":1664,"15680":1683,"15681":1804,"15682":1884,"15683":1751,"15684":1670,"15685":1612,"15686":1545,"15687":1801,"15688":1757,"15689":1871,"15690":1843,"15691":1699,"15692":1758,"15693":1584,"15694":1697,"15695":1709,"15696":1424,"15697":1700,"15698":1463,"15699":1825,"15700":1703,"15701":1568,"15702":1785,"15703":1485,"15704":1876,"15705":1546,"15706":1444,"15707":1434,"15708":1584,"15709":1461,"15710":1607,"15711":1769,"15712":1847,"15713":1631,"15714":1877,"15715":1864,"15716":1857,"15717":1773,"15718":1619,"15719":1773,"15720":1621,"15721":1708,"15722":1646,"15723":1795,"15724":1471,"15725":1752,"15726":1778,"15727":1769,"15728":1454,"15729":1798,"15730":1436,"15731":1555,"15732":1555,"15733":1639,"15734":1740,"15735":1892,"15736":1640,"15737":1859,"15738":1548,"15739":1660,"15740":1652,"15741":1584,"15742":1752,"15743":1424,"15744":1800,"15745":1463,"15746":1597,"15747":1521,"15748":1813,"15749":1717,"15750":1637,"15751":1613,"15752":1802,"15753":1649,"15754":1650,"15755":1899,"15756":1684,"15757":1845,"15758":1659,"15759":1777,"15760":1894,"15761":1865,"15762":1549,"15763":1454,"15764":1450,"15765":1676,"15766":1810,"15767":1620,"15768":1827,"15769":1594,"15770":1541,"15771":1612,"15772":1684,"15773":1541,"15774":1811,"15775":1675,"15776":1621,"15777":1752,"15778":1859,"15779":1786,"15780":1688,"15781":1469,"15782":1631,"15783":1889,"15784":1534,"15785":1559,"15786":1769,"15787":1635,"15788":1559,"15789":1470,"15790":1726,"15791":1860,"15792":1777,"15793":1693,"15794":1832,"15795":1793,"15796":1579,"15797":1621,"15798":1495,"15799":1881,"15800":1493,"15801":1499,"15802":1896,"15803":1556,"15804":1722,"15805":1586,"15806":1650,"15807":1778,"15808":1852,"15809":1655,"15810":1801,"15811":1793,"15812":1499,"15813":1492,"15814":1788,"15815":1690,"15816":1662,"15817":1613,"15818":1477,"15819":1444,"15820":1737,"15821":1540,"15822":1560,"15823":1707,"15824":1520,"15825":1649,"15826":1531,"15827":1614,"15828":1463,"15829":1822,"15830":1445,"15831":1442,"15832":1673,"15833":1726,"15834":1506,"15835":1746,"15836":1491,"15837":1857,"15838":1704,"15839":1639,"15840":1729,"15841":1800,"15842":1854,"15843":1596,"15844":1830,"15845":1524,"15846":1694,"15847":1726,"15848":1446,"15849":1585,"15850":1439,"15851":1825,"15852":1704,"15853":1860,"15854":1769,"15855":1527,"15856":1643,"15857":1622,"15858":1623,"15859":1599,"15860":1883,"15861":1660,"15862":1877,"15863":1504,"15864":1453,"15865":1527,"15866":1612,"15867":1647,"15868":1596,"15869":1883,"15870":1776,"15871":1800,"15872":1584,"15873":1553,"15874":1645,"15875":1827,"15876":1454,"15877":1615,"15878":1822,"15879":1878,"15880":1813,"15881":1679,"15882":1690,"15883":1754,"15884":1776,"15885":1655,"15886":1483,"15887":1848,"15888":1827,"15889":1424,"15890":1704,"15891":1852,"15892":1737,"15893":1698,"15894":1615,"15895":1666,"15896":1660,"15897":1752,"15898":1462,"15899":1721,"15900":1651,"15901":1547,"15902":1424,"15903":1519,"15904":1777,"15905":1535,"15906":1766,"15907":1490,"15908":1604,"15909":1672,"15910":1660,"15911":1494,"15912":1892,"15913":1855,"15914":1655,"15915":1494,"15916":1541,"15917":1453,"15918":1675,"15919":1580,"15920":1667,"15921":1860,"15922":1780,"15923":1522,"15924":1698,"15925":1593,"15926":1790,"15927":1655,"15928":1798,"15929":1506,"15930":1508,"15931":1762,"15932":1673,"15933":1685,"15934":1573,"15935":1541,"15936":1667,"15937":1885,"15938":1842,"15939":1651,"15940":1692,"15941":1450,"15942":1732,"15943":1815,"15944":1453,"15945":1686,"15946":1858,"15947":1787,"15948":1522,"15949":1786,"15950":1821,"15951":1798,"15952":1647,"15953":1692,"15954":1660,"15955":1638,"15956":1684,"15957":1613,"15958":1545,"15959":1862,"15960":1855,"15961":1555,"15962":1792,"15963":1582,"15964":1545,"15965":1660,"15966":1658,"15967":1886,"15968":1860,"15969":1425,"15970":1550,"15971":1737,"15972":1644,"15973":1780,"15974":1442,"15975":1762,"15976":1725,"15977":1472,"15978":1532,"15979":1422,"15980":1772,"15981":1545,"15982":1813,"15983":1669,"15984":1679,"15985":1450,"15986":1557,"15987":1630,"15988":1543,"15989":1581,"15990":1486,"15991":1639,"15992":1619,"15993":1716,"15994":1514,"15995":1856,"15996":1521,"15997":1730,"15998":1895,"15999":1495,"16000":1505,"16001":1612,"16002":1424,"16003":1720,"16004":1663,"16005":1738,"16006":1674,"16007":1622,"16008":1606,"16009":1452,"16010":1751,"16011":1623,"16012":1739,"16013":1628,"16014":1461,"16015":1515,"16016":1793,"16017":1434,"16018":1555,"16019":1697,"16020":1687,"16021":1841,"16022":1539,"16023":1552,"16024":1550,"16025":1753,"16026":1520,"16027":1588,"16028":1754,"16029":1870,"16030":1848,"16031":1708,"16032":1556,"16033":1581,"16034":1465,"16035":1802,"16036":1640,"16037":1771,"16038":1594,"16039":1617,"16040":1541,"16041":1551,"16042":1546,"16043":1738,"16044":1633,"16045":1817,"16046":1766,"16047":1596,"16048":1857,"16049":1453,"16050":1704,"16051":1494,"16052":1655,"16053":1871,"16054":1653,"16055":1673,"16056":1585,"16057":1563,"16058":1618,"16059":1466,"16060":1583,"16061":1464,"16062":1752,"16063":1494,"16064":1691,"16065":1465,"16066":1424,"16067":1424,"16068":1821,"16069":1516,"16070":1684,"16071":1429,"16072":1684,"16073":1501,"16074":1704,"16075":1691,"16076":1428,"16077":1747,"16078":1437,"16079":1659,"16080":1538,"16081":1803,"16082":1454,"16083":1612,"16084":1632,"16085":1486,"16086":1679,"16087":1705,"16088":1495,"16089":1552,"16090":1778,"16091":1543,"16092":1572,"16093":1547,"16094":1672,"16095":1672,"16096":1863,"16097":1458,"16098":1790,"16099":1495,"16100":1508,"16101":1804,"16102":1529,"16103":1820,"16104":1829,"16105":1690,"16106":1822,"16107":1495,"16108":1667,"16109":1483,"16110":1555,"16111":1513,"16112":1449,"16113":1500,"16114":1514,"16115":1454,"16116":1782,"16117":1799,"16118":1573,"16119":1717,"16120":1658,"16121":1858,"16122":1813,"16123":1738,"16124":1568,"16125":1449,"16126":1892,"16127":1559,"16128":1894,"16129":1673,"16130":1581,"16131":1894,"16132":1743,"16133":1501,"16134":1433,"16135":1894,"16136":1828,"16137":1547,"16138":1743,"16139":1666,"16140":1458,"16141":1555,"16142":1614,"16143":1757,"16144":1535,"16145":1710,"16146":1583,"16147":1647,"16148":1672,"16149":1640,"16150":1722,"16151":1520,"16152":1522,"16153":1453,"16154":1855,"16155":1672,"16156":1530,"16157":1798,"16158":1540,"16159":1636,"16160":1668,"16161":1871,"16162":1610,"16163":1526,"16164":1806,"16165":1629,"16166":1469,"16167":1877,"16168":1694,"16169":1858,"16170":1567,"16171":1743,"16172":1461,"16173":1609,"16174":1829,"16175":1603,"16176":1837,"16177":1779,"16178":1655,"16179":1812,"16180":1693,"16181":1802,"16182":1502,"16183":1556,"16184":1712,"16185":1792,"16186":1658,"16187":1435,"16188":1793,"16189":1871,"16190":1892,"16191":1832,"16192":1606,"16193":1664,"16194":1739,"16195":1610,"16196":1835,"16197":1788,"16198":1812,"16199":1870,"16200":1432,"16201":1752,"16202":1615,"16203":1613,"16204":1594,"16205":1716,"16206":1831,"16207":1862,"16208":1548,"16209":1801,"16210":1778,"16211":1771,"16212":1432,"16213":1449,"16214":1621,"16215":1540,"16216":1518,"16217":1528,"16218":1875,"16219":1581,"16220":1834,"16221":1628,"16222":1860,"16223":1634,"16224":1896,"16225":1529,"16226":1622,"16227":1596,"16228":1739,"16229":1712,"16230":1629,"16231":1752,"16232":1694,"16233":1589,"16234":1857,"16235":1722,"16236":1679,"16237":1664,"16238":1673,"16239":1529,"16240":1457,"16241":1559,"16242":1519,"16243":1787,"16244":1856,"16245":1881,"16246":1619,"16247":1801,"16248":1502,"16249":1606,"16250":1428,"16251":1872,"16252":1740,"16253":1874,"16254":1652,"16255":1863,"16256":1765,"16257":1558,"16258":1699,"16259":1841,"16260":1871,"16261":1637,"16262":1586,"16263":1748,"16264":1642,"16265":1684,"16266":1527,"16267":1529,"16268":1827,"16269":1802,"16270":1641,"16271":1594,"16272":1619,"16273":1877,"16274":1548,"16275":1691,"16276":1504,"16277":1792,"16278":1424,"16279":1812,"16280":1457,"16281":1468,"16282":1653,"16283":1428,"16284":1855,"16285":1651,"16286":1593,"16287":1522,"16288":1462,"16289":1767,"16290":1746,"16291":1596,"16292":1884,"16293":1509,"16294":1642,"16295":1531,"16296":1802,"16297":1611,"16298":1720,"16299":1752,"16300":1651,"16301":1519,"16302":1761,"16303":1877,"16304":1603,"16305":1615,"16306":1782,"16307":1580,"16308":1752,"16309":1541,"16310":1477,"16311":1550,"16312":1885,"16313":1580,"16314":1699,"16315":1610,"16316":1599,"16317":1820,"16318":1619,"16319":1894,"16320":1560,"16321":1596,"16322":1517,"16323":1510,"16324":1709,"16325":1752,"16326":1769,"16327":1694,"16328":1626,"16329":1837,"16330":1462,"16331":1460,"16332":1690,"16333":1637,"16334":1659,"16335":1885,"16336":1541,"16337":1651,"16338":1690,"16339":1627,"16340":1556,"16341":1813,"16342":1494,"16343":1658,"16344":1663,"16345":1751,"16346":1520,"16347":1842,"16348":1666,"16349":1636,"16350":1575,"16351":1621,"16352":1634,"16353":1487,"16354":1461,"16355":1604,"16356":1486,"16357":1681,"16358":1739,"16359":1484,"16360":1440,"16361":1527,"16362":1589,"16363":1802,"16364":1447,"16365":1494,"16366":1522,"16367":1477,"16368":1636,"16369":1785,"16370":1425,"16371":1631,"16372":1552,"16373":1734,"16374":1827,"16375":1691,"16376":1502,"16377":1532,"16378":1669,"16379":1725,"16380":1853,"16381":1790,"16382":1860,"16383":1461,"16384":1631,"16385":1661,"16386":1429,"16387":1628,"16388":1566,"16389":1871,"16390":1825,"16391":1572,"16392":1622,"16393":1786,"16394":1487,"16395":1695,"16396":1723,"16397":1497,"16398":1453,"16399":1545,"16400":1651,"16401":1681,"16402":1800,"16403":1698,"16404":1840,"16405":1631,"16406":1891,"16407":1439,"16408":1819,"16409":1669,"16410":1676,"16411":1768,"16412":1584,"16413":1583,"16414":1717,"16415":1596,"16416":1626,"16417":1552,"16418":1879,"16419":1798,"16420":1596,"16421":1442,"16422":1735,"16423":1795,"16424":1679,"16425":1453,"16426":1454,"16427":1862,"16428":1852,"16429":1614,"16430":1692,"16431":1621,"16432":1659,"16433":1589,"16434":1606,"16435":1622,"16436":1560,"16437":1785,"16438":1866,"16439":1540,"16440":1897,"16441":1612,"16442":1666,"16443":1596,"16444":1546,"16445":1579,"16446":1689,"16447":1615,"16448":1666,"16449":1430,"16450":1551,"16451":1476,"16452":1622,"16453":1572,"16454":1895,"16455":1747,"16456":1581,"16457":1735,"16458":1672,"16459":1539,"16460":1667,"16461":1540,"16462":1699,"16463":1681,"16464":1743,"16465":1746,"16466":1681,"16467":1716,"16468":1647,"16469":1518,"16470":1461,"16471":1827,"16472":1877,"16473":1426,"16474":1426,"16475":1472,"16476":1892,"16477":1599,"16478":1646,"16479":1604,"16480":1683,"16481":1631,"16482":1565,"16483":1567,"16484":1734,"16485":1476,"16486":1778,"16487":1630,"16488":1619,"16489":1776,"16490":1538,"16491":1524,"16492":1606,"16493":1584,"16494":1770,"16495":1549,"16496":1753,"16497":1876,"16498":1639,"16499":1651,"16500":1692,"16501":1539,"16502":1454,"16503":1529,"16504":1520,"16505":1729,"16506":1896,"16507":1719,"16508":1798,"16509":1714,"16510":1559,"16511":1783,"16512":1883,"16513":1691,"16514":1500,"16515":1728,"16516":1629,"16517":1599,"16518":1621,"16519":1802,"16520":1599,"16521":1440,"16522":1855,"16523":1570,"16524":1688,"16525":1445,"16526":1890,"16527":1875,"16528":1430,"16529":1439,"16530":1506,"16531":1589,"16532":1425,"16533":1689,"16534":1488,"16535":1795,"16536":1826,"16537":1494,"16538":1546,"16539":1696,"16540":1868,"16541":1644,"16542":1517,"16543":1734,"16544":1811,"16545":1572,"16546":1690,"16547":1545,"16548":1623,"16549":1441,"16550":1570,"16551":1628,"16552":1698,"16553":1704,"16554":1797,"16555":1860,"16556":1614,"16557":1462,"16558":1582,"16559":1482,"16560":1804,"16561":1544,"16562":1489,"16563":1639,"16564":1536,"16565":1740,"16566":1801,"16567":1454,"16568":1859,"16569":1667,"16570":1443,"16571":1442,"16572":1495,"16573":1896,"16574":1803,"16575":1546,"16576":1547,"16577":1827,"16578":1751,"16579":1526,"16580":1704,"16581":1462,"16582":1748,"16583":1766,"16584":1639,"16585":1892,"16586":1752,"16587":1424,"16588":1676,"16589":1802,"16590":1579,"16591":1754,"16592":1794,"16593":1665,"16594":1801,"16595":1441,"16596":1856,"16597":1858,"16598":1744,"16599":1586,"16600":1519,"16601":1676,"16602":1516,"16603":1777,"16604":1658,"16605":1878,"16606":1660,"16607":1884,"16608":1660,"16609":1769,"16610":1594,"16611":1637,"16612":1430,"16613":1602,"16614":1517,"16615":1622,"16616":1522,"16617":1684,"16618":1831,"16619":1852,"16620":1799,"16621":1631,"16622":1460,"16623":1651,"16624":1848,"16625":1587,"16626":1885,"16627":1457,"16628":1476,"16629":1519,"16630":1423,"16631":1734,"16632":1613,"16633":1706,"16634":1782,"16635":1609,"16636":1453,"16637":1506,"16638":1467,"16639":1494,"16640":1776,"16641":1853,"16642":1746,"16643":1886,"16644":1539,"16645":1424,"16646":1561,"16647":1800,"16648":1422,"16649":1864,"16650":1427,"16651":1783,"16652":1645,"16653":1570,"16654":1898,"16655":1896,"16656":1846,"16657":1531,"16658":1728,"16659":1805,"16660":1728,"16661":1573,"16662":1477,"16663":1691,"16664":1689,"16665":1584,"16666":1701,"16667":1862,"16668":1749,"16669":1544,"16670":1874,"16671":1545,"16672":1680,"16673":1715,"16674":1658,"16675":1864,"16676":1642,"16677":1639,"16678":1837,"16679":1518,"16680":1689,"16681":1460,"16682":1469,"16683":1865,"16684":1673,"16685":1886,"16686":1768,"16687":1894,"16688":1859,"16689":1892,"16690":1489,"16691":1546,"16692":1710,"16693":1872,"16694":1690,"16695":1883,"16696":1483,"16697":1752,"16698":1840,"16699":1725,"16700":1606,"16701":1800,"16702":1540,"16703":1681,"16704":1716,"16705":1807,"16706":1518,"16707":1450,"16708":1609,"16709":1509,"16710":1498,"16711":1652,"16712":1778,"16713":1822,"16714":1552,"16715":1570,"16716":1715,"16717":1683,"16718":1699,"16719":1620,"16720":1580,"16721":1719,"16722":1752,"16723":1477,"16724":1674,"16725":1550,"16726":1619,"16727":1548,"16728":1630,"16729":1567,"16730":1739,"16731":1461,"16732":1787,"16733":1684,"16734":1631,"16735":1679,"16736":1442,"16737":1541,"16738":1776,"16739":1877,"16740":1490,"16741":1887,"16742":1546,"16743":1751,"16744":1485,"16745":1868,"16746":1651,"16747":1644,"16748":1470,"16749":1606,"16750":1822,"16751":1495,"16752":1884,"16753":1676,"16754":1454,"16755":1827,"16756":1646,"16757":1464,"16758":1494,"16759":1672,"16760":1589,"16761":1741,"16762":1851,"16763":1788,"16764":1477,"16765":1464,"16766":1494,"16767":1428,"16768":1838,"16769":1681,"16770":1488,"16771":1839,"16772":1853,"16773":1648,"16774":1799,"16775":1827,"16776":1623,"16777":1430,"16778":1622,"16779":1604,"16780":1559,"16781":1622,"16782":1845,"16783":1569,"16784":1639,"16785":1587,"16786":1594,"16787":1557,"16788":1522,"16789":1684,"16790":1782,"16791":1505,"16792":1477,"16793":1877,"16794":1458,"16795":1673,"16796":1846,"16797":1597,"16798":1506,"16799":1449,"16800":1583,"16801":1482,"16802":1655,"16803":1691,"16804":1631,"16805":1666,"16806":1657,"16807":1676,"16808":1720,"16809":1666,"16810":1422,"16811":1485,"16812":1675,"16813":1773,"16814":1686,"16815":1696,"16816":1812,"16817":1516,"16818":1607,"16819":1621,"16820":1540,"16821":1686,"16822":1691,"16823":1500,"16824":1539,"16825":1525,"16826":1885,"16827":1570,"16828":1519,"16829":1733,"16830":1691,"16831":1470,"16832":1536,"16833":1605,"16834":1861,"16835":1877,"16836":1586,"16837":1425,"16838":1752,"16839":1805,"16840":1753,"16841":1786,"16842":1619,"16843":1826,"16844":1499,"16845":1620,"16846":1693,"16847":1878,"16848":1450,"16849":1677,"16850":1872,"16851":1453,"16852":1465,"16853":1487,"16854":1628,"16855":1884,"16856":1554,"16857":1862,"16858":1611,"16859":1651,"16860":1540,"16861":1753,"16862":1622,"16863":1433,"16864":1795,"16865":1859,"16866":1777,"16867":1550,"16868":1830,"16869":1630,"16870":1532,"16871":1848,"16872":1816,"16873":1798,"16874":1684,"16875":1838,"16876":1464,"16877":1627,"16878":1754,"16879":1694,"16880":1679,"16881":1606,"16882":1800,"16883":1764,"16884":1631,"16885":1795,"16886":1613,"16887":1832,"16888":1424,"16889":1611,"16890":1752,"16891":1497,"16892":1600,"16893":1547,"16894":1787,"16895":1601,"16896":1522,"16897":1861,"16898":1730,"16899":1457,"16900":1639,"16901":1450,"16902":1555,"16903":1620,"16904":1619,"16905":1769,"16906":1656,"16907":1790,"16908":1570,"16909":1800,"16910":1590,"16911":1586,"16912":1490,"16913":1779,"16914":1483,"16915":1867,"16916":1647,"16917":1586,"16918":1540,"16919":1863,"16920":1860,"16921":1778,"16922":1485,"16923":1704,"16924":1580,"16925":1683,"16926":1604,"16927":1504,"16928":1884,"16929":1512,"16930":1838,"16931":1662,"16932":1783,"16933":1666,"16934":1691,"16935":1495,"16936":1541,"16937":1817,"16938":1733,"16939":1508,"16940":1647,"16941":1583,"16942":1596,"16943":1708,"16944":1537,"16945":1531,"16946":1677,"16947":1639,"16948":1830,"16949":1694,"16950":1750,"16951":1543,"16952":1878,"16953":1804,"16954":1581,"16955":1749,"16956":1752,"16957":1753,"16958":1840,"16959":1854,"16960":1747,"16961":1862,"16962":1427,"16963":1634,"16964":1708,"16965":1801,"16966":1646,"16967":1686,"16968":1586,"16969":1541,"16970":1578,"16971":1771,"16972":1855,"16973":1664,"16974":1717,"16975":1432,"16976":1494,"16977":1476,"16978":1712,"16979":1713,"16980":1845,"16981":1477,"16982":1845,"16983":1486,"16984":1793,"16985":1678,"16986":1463,"16987":1508,"16988":1425,"16989":1650,"16990":1619,"16991":1870,"16992":1769,"16993":1795,"16994":1459,"16995":1594,"16996":1460,"16997":1861,"16998":1870,"16999":1868,"17000":1800,"17001":1717,"17002":1428,"17003":1725,"17004":1668,"17005":1695,"17006":1723,"17007":1545,"17008":1468,"17009":1896,"17010":1782,"17011":1871,"17012":1636,"17013":1744,"17014":1508,"17015":1657,"17016":1460,"17017":1841,"17018":1749,"17019":1875,"17020":1584,"17021":1692,"17022":1739,"17023":1710,"17024":1798,"17025":1840,"17026":1868,"17027":1454,"17028":1627,"17029":1746,"17030":1442,"17031":1637,"17032":1492,"17033":1493,"17034":1635,"17035":1675,"17036":1441,"17037":1477,"17038":1782,"17039":1769,"17040":1739,"17041":1585,"17042":1696,"17043":1485,"17044":1483,"17045":1698,"17046":1779,"17047":1888,"17048":1509,"17049":1445,"17050":1883,"17051":1713,"17052":1570,"17053":1580,"17054":1751,"17055":1547,"17056":1762,"17057":1688,"17058":1877,"17059":1486,"17060":1587,"17061":1580,"17062":1552,"17063":1660,"17064":1575,"17065":1481,"17066":1546,"17067":1549,"17068":1804,"17069":1841,"17070":1536,"17071":1796,"17072":1761,"17073":1622,"17074":1594,"17075":1550,"17076":1710,"17077":1481,"17078":1679,"17079":1467,"17080":1477,"17081":1846,"17082":1552,"17083":1823,"17084":1461,"17085":1705,"17086":1689,"17087":1559,"17088":1830,"17089":1433,"17090":1660,"17091":1620,"17092":1655,"17093":1436,"17094":1639,"17095":1593,"17096":1622,"17097":1460,"17098":1633,"17099":1867,"17100":1871,"17101":1663,"17102":1862,"17103":1735,"17104":1630,"17105":1427,"17106":1779,"17107":1610,"17108":1881,"17109":1575,"17110":1572,"17111":1573,"17112":1684,"17113":1446,"17114":1495,"17115":1604,"17116":1725,"17117":1546,"17118":1877,"17119":1595,"17120":1639,"17121":1882,"17122":1545,"17123":1780,"17124":1500,"17125":1795,"17126":1464,"17127":1801,"17128":1465,"17129":1678,"17130":1649,"17131":1665,"17132":1806,"17133":1565,"17134":1892,"17135":1837,"17136":1771,"17137":1644,"17138":1580,"17139":1516,"17140":1548,"17141":1468,"17142":1514,"17143":1563,"17144":1658,"17145":1772,"17146":1495,"17147":1830,"17148":1555,"17149":1495,"17150":1827,"17151":1457,"17152":1445,"17153":1881,"17154":1877,"17155":1579,"17156":1620,"17157":1798,"17158":1753,"17159":1610,"17160":1667,"17161":1723,"17162":1821,"17163":1584,"17164":1725,"17165":1704,"17166":1752,"17167":1573,"17168":1684,"17169":1862,"17170":1713,"17171":1460,"17172":1885,"17173":1699,"17174":1600,"17175":1590,"17176":1583,"17177":1656,"17178":1825,"17179":1586,"17180":1514,"17181":1744,"17182":1620,"17183":1704,"17184":1651,"17185":1441,"17186":1506,"17187":1848,"17188":1833,"17189":1538,"17190":1717,"17191":1731,"17192":1684,"17193":1546,"17194":1769,"17195":1827,"17196":1535,"17197":1811,"17198":1597,"17199":1733,"17200":1679,"17201":1691,"17202":1863,"17203":1785,"17204":1800,"17205":1576,"17206":1507,"17207":1744,"17208":1442,"17209":1589,"17210":1662,"17211":1596,"17212":1668,"17213":1846,"17214":1871,"17215":1713,"17216":1691,"17217":1830,"17218":1730,"17219":1896,"17220":1804,"17221":1626,"17222":1559,"17223":1881,"17224":1655,"17225":1613,"17226":1589,"17227":1616,"17228":1482,"17229":1454,"17230":1658,"17231":1447,"17232":1478,"17233":1424,"17234":1614,"17235":1743,"17236":1453,"17237":1684,"17238":1735,"17239":1433,"17240":1867,"17241":1809,"17242":1663,"17243":1606,"17244":1508,"17245":1544,"17246":1658,"17247":1894,"17248":1709,"17249":1644,"17250":1872,"17251":1743,"17252":1700,"17253":1845,"17254":1541,"17255":1733,"17256":1804,"17257":1474,"17258":1732,"17259":1501,"17260":1673,"17261":1599,"17262":1785,"17263":1790,"17264":1858,"17265":1580,"17266":1629,"17267":1611,"17268":1801,"17269":1454,"17270":1453,"17271":1744,"17272":1679,"17273":1584,"17274":1548,"17275":1679,"17276":1557,"17277":1634,"17278":1441,"17279":1477,"17280":1895,"17281":1504,"17282":1517,"17283":1820,"17284":1691,"17285":1860,"17286":1895,"17287":1717,"17288":1877,"17289":1427,"17290":1882,"17291":1463,"17292":1691,"17293":1704,"17294":1442,"17295":1688,"17296":1460,"17297":1754,"17298":1568,"17299":1747,"17300":1548,"17301":1748,"17302":1881,"17303":1805,"17304":1753,"17305":1676,"17306":1804,"17307":1701,"17308":1819,"17309":1567,"17310":1884,"17311":1503,"17312":1883,"17313":1519,"17314":1565,"17315":1739,"17316":1570,"17317":1508,"17318":1465,"17319":1676,"17320":1647,"17321":1830,"17322":1815,"17323":1660,"17324":1541,"17325":1495,"17326":1726,"17327":1804,"17328":1788,"17329":1493,"17330":1804,"17331":1782,"17332":1783,"17333":1805,"17334":1872,"17335":1611,"17336":1766,"17337":1563,"17338":1602,"17339":1481,"17340":1694,"17341":1891,"17342":1676,"17343":1570,"17344":1800,"17345":1800,"17346":1817,"17347":1803,"17348":1467,"17349":1659,"17350":1532,"17351":1801,"17352":1717,"17353":1560,"17354":1852,"17355":1501,"17356":1590,"17357":1698,"17358":1861,"17359":1573,"17360":1868,"17361":1467,"17362":1575,"17363":1801,"17364":1549,"17365":1462,"17366":1522,"17367":1660,"17368":1813,"17369":1827,"17370":1637,"17371":1521,"17372":1871,"17373":1773,"17374":1597,"17375":1874,"17376":1750,"17377":1578,"17378":1691,"17379":1453,"17380":1457,"17381":1509,"17382":1654,"17383":1466,"17384":1756,"17385":1469,"17386":1827,"17387":1885,"17388":1580,"17389":1870,"17390":1795,"17391":1657,"17392":1767,"17393":1724,"17394":1735,"17395":1434,"17396":1494,"17397":1540,"17398":1485,"17399":1477,"17400":1659,"17401":1713,"17402":1462,"17403":1538,"17404":1874,"17405":1662,"17406":1607,"17407":1550,"17408":1716,"17409":1737,"17410":1689,"17411":1763,"17412":1548,"17413":1584,"17414":1464,"17415":1751,"17416":1445,"17417":1820,"17418":1768,"17419":1584,"17420":1564,"17421":1892,"17422":1807,"17423":1767,"17424":1719,"17425":1896,"17426":1708,"17427":1444,"17428":1494,"17429":1841,"17430":1882,"17431":1505,"17432":1631,"17433":1875,"17434":1825,"17435":1545,"17436":1529,"17437":1635,"17438":1694,"17439":1761,"17440":1786,"17441":1448,"17442":1684,"17443":1779,"17444":1713,"17445":1631,"17446":1826,"17447":1570,"17448":1699,"17449":1666,"17450":1761,"17451":1648,"17452":1800,"17453":1606,"17454":1798,"17455":1616,"17456":1424,"17457":1504,"17458":1803,"17459":1462,"17460":1597,"17461":1503,"17462":1643,"17463":1619,"17464":1545,"17465":1803,"17466":1536,"17467":1732,"17468":1429,"17469":1476,"17470":1617,"17471":1596,"17472":1598,"17473":1735,"17474":1462,"17475":1791,"17476":1482,"17477":1827,"17478":1785,"17479":1526,"17480":1555,"17481":1648,"17482":1482,"17483":1457,"17484":1789,"17485":1637,"17486":1550,"17487":1739,"17488":1842,"17489":1564,"17490":1786,"17491":1465,"17492":1637,"17493":1511,"17494":1511,"17495":1659,"17496":1660,"17497":1741,"17498":1653,"17499":1823,"17500":1684,"17501":1867,"17502":1599,"17503":1643,"17504":1739,"17505":1460,"17506":1546,"17507":1813,"17508":1710,"17509":1655,"17510":1572,"17511":1442,"17512":1885,"17513":1517,"17514":1801,"17515":1651,"17516":1624,"17517":1527,"17518":1540,"17519":1681,"17520":1540,"17521":1614,"17522":1804,"17523":1594,"17524":1575,"17525":1870,"17526":1586,"17527":1871,"17528":1802,"17529":1477,"17530":1767,"17531":1541,"17532":1552,"17533":1891,"17534":1852,"17535":1854,"17536":1650,"17537":1476,"17538":1765,"17539":1855,"17540":1968,"17541":1905,"17542":1936,"17543":1942,"17544":1972,"17545":1986,"17546":1973,"17547":1956,"17548":1906,"17549":1967,"17550":1961,"17551":1930,"17552":1953,"17553":1970,"17554":1959,"17555":1939,"17556":1988,"17557":1979,"17558":1905,"17559":1906,"17560":1947,"17561":1974,"17562":1970,"17563":1958,"17564":1978,"17565":1904,"17566":1940,"17567":1952,"17568":1970,"17569":1916,"17570":1959,"17571":1930,"17572":1965,"17573":1930,"17574":1923,"17575":1906,"17576":1954,"17577":1918,"17578":1982,"17579":1958,"17580":1907,"17581":1952,"17582":1900,"17583":1961,"17584":1916,"17585":1947,"17586":1971,"17587":1904,"17588":1902,"17589":1965,"17590":1964,"17591":1961,"17592":1968,"17593":1980,"17594":1963,"17595":1925,"17596":1923,"17597":1980,"17598":1963,"17599":1923,"17600":1973,"17601":1952,"17602":1906,"17603":1935,"17604":1973,"17605":1974,"17606":1952,"17607":1952,"17608":1947,"17609":1968,"17610":1922,"17611":1904,"17612":1916,"17613":1929,"17614":1906,"17615":1954,"17616":1928,"17617":1983,"17618":1951,"17619":1952,"17620":1974,"17621":1954,"17622":1959,"17623":1980,"17624":1970,"17625":1923,"17626":1904,"17627":1936,"17628":1932,"17629":1972,"17630":1907,"17631":1990,"17632":1915,"17633":1957,"17634":1971,"17635":1952,"17636":1919,"17637":1930,"17638":1901,"17639":1907,"17640":1953,"17641":1900,"17642":1930,"17643":1919,"17644":1900,"17645":1946,"17646":1959,"17647":1970,"17648":1901,"17649":1925,"17650":1925,"17651":1948,"17652":1937,"17653":1939,"17654":1966,"17655":1932,"17656":1952,"17657":1984,"17658":1984,"17659":1928,"17660":1974,"17661":1974,"17662":1984,"17663":1920,"17664":1954,"17665":1989,"17666":1914,"17667":1984,"17668":1928,"17669":1984,"17670":1911,"17671":1914,"17672":1959,"17673":1903,"17674":1947,"17675":1906,"17676":1990,"17677":1914,"17678":1953,"17679":1984,"17680":1915,"17681":1978,"17682":1906,"17683":1926,"17684":1982,"17685":1941,"17686":1984,"17687":1969,"17688":1901,"17689":1901,"17690":1958,"17691":1978,"17692":1958,"17693":1952,"17694":1961,"17695":1941,"17696":1953,"17697":1989,"17698":1981,"17699":1901,"17700":1920,"17701":1947,"17702":1924,"17703":1989,"17704":1939,"17705":1947,"17706":1906,"17707":1973,"17708":1904,"17709":1913,"17710":1923,"17711":1927,"17712":1986,"17713":1901,"17714":1927,"17715":1924,"17716":1967,"17717":1966,"17718":1909,"17719":1973,"17720":1907,"17721":1973,"17722":1911,"17723":1923,"17724":1984,"17725":1963,"17726":1944,"17727":1982,"17728":1986,"17729":1981,"17730":1959,"17731":1937,"17732":1907,"17733":1931,"17734":1978,"17735":1970,"17736":1911,"17737":1980,"17738":1930,"17739":1915,"17740":1973,"17741":1928,"17742":1913,"17743":1900,"17744":1923,"17745":1925,"17746":1923,"17747":1936,"17748":1947,"17749":1980,"17750":1959,"17751":1952,"17752":1939,"17753":1905,"17754":1963,"17755":1906,"17756":1989,"17757":1918,"17758":1959,"17759":1967,"17760":1902,"17761":1965,"17762":1906,"17763":1930,"17764":1911,"17765":1920,"17766":1968,"17767":1930,"17768":1966,"17769":1950,"17770":1932,"17771":1935,"17772":1986,"17773":1967,"17774":1949,"17775":1927,"17776":1910,"17777":1908,"17778":1945,"17779":1955,"17780":1952,"17781":1952,"17782":1990,"17783":1927,"17784":1971,"17785":1929,"17786":1907,"17787":1900,"17788":1925,"17789":1928,"17790":1916,"17791":1982,"17792":1964,"17793":1932,"17794":1984,"17795":1971,"17796":1959,"17797":1980,"17798":1948,"17799":1979,"17800":1986,"17801":1990,"17802":1905,"17803":1930,"17804":1923,"17805":1952,"17806":1966,"17807":1961,"17808":1962,"17809":1954,"17810":1974,"17811":1959,"17812":1904,"17813":1982,"17814":1965,"17815":1944,"17816":1973,"17817":1939,"17818":1948,"17819":1979,"17820":1990,"17821":1947,"17822":1934,"17823":1918,"17824":1947,"17825":1984,"17826":1955,"17827":1944,"17828":1928,"17829":1909,"17830":1903,"17831":1952,"17832":1925,"17833":1911,"17834":1928,"17835":1974,"17836":1930,"17837":1947,"17838":1965,"17839":1944,"17840":1935,"17841":1989,"17842":1959,"17843":1906,"17844":1939,"17845":1959,"17846":1904,"17847":1987,"17848":1947,"17849":1905,"17850":1939,"17851":1986,"17852":1903,"17853":1928,"17854":1906,"17855":1952,"17856":1989,"17857":1983,"17858":1961,"17859":1945,"17860":1947,"17861":1984,"17862":1971,"17863":1940,"17864":1980,"17865":1969,"17866":1927,"17867":1974,"17868":1950,"17869":1965,"17870":1930,"17871":1978,"17872":1925,"17873":1904,"17874":1971,"17875":1974,"17876":1974,"17877":1941,"17878":1915,"17879":1980,"17880":1963,"17881":1964,"17882":1928,"17883":1915,"17884":1906,"17885":1990,"17886":1983,"17887":1987,"17888":1944,"17889":1934,"17890":1976,"17891":1965,"17892":1930,"17893":1904,"17894":1954,"17895":1957,"17896":1989,"17897":1902,"17898":1948,"17899":1953,"17900":1980,"17901":1960,"17902":1905,"17903":1982,"17904":1975,"17905":1907,"17906":1980,"17907":1939,"17908":1989,"17909":1966,"17910":1936,"17911":1956,"17912":1927,"17913":1940,"17914":1958,"17915":1915,"17916":1961,"17917":1930,"17918":1916,"17919":1938,"17920":1932,"17921":1925,"17922":1959,"17923":1970,"17924":1916,"17925":1937,"17926":1939,"17927":1978,"17928":1923,"17929":1915,"17930":1989,"17931":1920,"17932":1976,"17933":1970,"17934":1965,"17935":1914,"17936":1984,"17937":1959,"17938":1959,"17939":1933,"17940":1984,"17941":1901,"17942":1917,"17943":1906,"17944":1952,"17945":1990,"17946":1906,"17947":1979,"17948":1904,"17949":1980,"17950":1928,"17951":1959,"17952":1932,"17953":1960,"17954":1966,"17955":1955,"17956":1906,"17957":1971,"17958":1978,"17959":1903,"17960":1939,"17961":1966,"17962":1963,"17963":1935,"17964":1915,"17965":1930,"17966":1973,"17967":1906,"17968":1984,"17969":1967,"17970":1983,"17971":1972,"17972":1923,"17973":1940,"17974":1972,"17975":1979,"17976":1984,"17977":1947,"17978":1967,"17979":1934,"17980":1962,"17981":1901,"17982":1906,"17983":1959,"17984":1912,"17985":1952,"17986":1988,"17987":1906,"17988":1990,"17989":1986,"17990":1959,"17991":1976,"17992":1974,"17993":1902,"17994":1959,"17995":1965,"17996":1928,"17997":1930,"17998":1944,"17999":1954,"18000":1952,"18001":1952,"18002":1952,"18003":1977,"18004":1913,"18005":1952,"18006":1913,"18007":1966,"18008":1947,"18009":1913,"18010":1944,"18011":1985,"18012":1902,"18013":1983,"18014":1966,"18015":1974,"18016":1916,"18017":1984,"18018":1933,"18019":1962,"18020":1971,"18021":1909,"18022":1946,"18023":1948,"18024":1905,"18025":1947,"18026":1968,"18027":1928,"18028":1911,"18029":1928,"18030":1928,"18031":1970,"18032":1984,"18033":1947,"18034":1928,"18035":1930,"18036":1982,"18037":1989,"18038":1954,"18039":1901,"18040":1934,"18041":1985,"18042":1984,"18043":1944,"18044":1922,"18045":1906,"18046":1990,"18047":1965,"18048":1946,"18049":1936,"18050":1959,"18051":1946,"18052":1959,"18053":1938,"18054":1970,"18055":1990,"18056":1902,"18057":1927,"18058":1904,"18059":1986,"18060":1959,"18061":1968,"18062":1965,"18063":1924,"18064":1970,"18065":1962,"18066":1928,"18067":1902,"18068":1989,"18069":1938,"18070":1990,"18071":1971,"18072":1915,"18073":1980,"18074":1906,"18075":1970,"18076":1927,"18077":1925,"18078":1970,"18079":1952,"18080":1952,"18081":1985,"18082":1908,"18083":1990,"18084":1922,"18085":1988,"18086":1971,"18087":1963,"18088":1925,"18089":1952,"18090":1966,"18091":1985,"18092":1980,"18093":1941,"18094":1906,"18095":1984,"18096":1984,"18097":1954,"18098":1906,"18099":1952,"18100":1983,"18101":1984,"18102":1925,"18103":1989,"18104":1952,"18105":1959,"18106":1929,"18107":1986,"18108":1932,"18109":1906,"18110":1971,"18111":1903,"18112":1978,"18113":1915,"18114":1967,"18115":1980,"18116":1955,"18117":1932,"18118":1967,"18119":1944,"18120":1972,"18121":1948,"18122":1986,"18123":1930,"18124":1968,"18125":1941,"18126":1932,"18127":1981,"18128":1902,"18129":1918,"18130":1966,"18131":1906,"18132":1961,"18133":1925,"18134":1927,"18135":1960,"18136":1929,"18137":1973,"18138":1988,"18139":1924,"18140":1967,"18141":1980,"18142":1947,"18143":1957,"18144":1928,"18145":1988,"18146":1930,"18147":1930,"18148":1939,"18149":1980,"18150":1983,"18151":1918,"18152":1970,"18153":1955,"18154":1959,"18155":1986,"18156":1984,"18157":1909,"18158":1980,"18159":1901,"18160":1981,"18161":1900,"18162":1919,"18163":1916,"18164":1920,"18165":1904,"18166":1990,"18167":1955,"18168":1952,"18169":1984,"18170":1904,"18171":1923,"18172":1960,"18173":1906,"18174":1910,"18175":1979,"18176":1948,"18177":1958,"18178":1968,"18179":1960,"18180":1904,"18181":1924,"18182":1958,"18183":1974,"18184":1941,"18185":1972,"18186":1909,"18187":1974,"18188":1976,"18189":1976,"18190":1901,"18191":1963,"18192":1915,"18193":1961,"18194":1989,"18195":1925,"18196":1959,"18197":1973,"18198":1965,"18199":1946,"18200":1923,"18201":1984,"18202":1961,"18203":1970,"18204":1959,"18205":1974,"18206":1937,"18207":1963,"18208":1928,"18209":1961,"18210":1970,"18211":1930,"18212":1970,"18213":1913,"18214":1988,"18215":1900,"18216":1970,"18217":1961,"18218":1968,"18219":1938,"18220":1909,"18221":1982,"18222":1959,"18223":1970,"18224":1911,"18225":1923,"18226":1915,"18227":1929,"18228":1936,"18229":1988,"18230":1952,"18231":1928,"18232":1982,"18233":1917,"18234":1951,"18235":1980,"18236":1987,"18237":1970,"18238":1932,"18239":1976,"18240":1962,"18241":1941,"18242":1970,"18243":1931,"18244":1923,"18245":1984,"18246":1956,"18247":1966,"18248":1984,"18249":1916,"18250":1928,"18251":1921,"18252":1906,"18253":1959,"18254":1958,"18255":1941,"18256":1974,"18257":1932,"18258":1939,"18259":1963,"18260":1927,"18261":1973,"18262":1901,"18263":1984,"18264":1934,"18265":1927,"18266":1970,"18267":1952,"18268":1916,"18269":1947,"18270":1930,"18271":1915,"18272":1913,"18273":1971,"18274":1906,"18275":1907,"18276":1972,"18277":1981,"18278":1916,"18279":1947,"18280":1974,"18281":1939,"18282":1971,"18283":1980,"18284":1959,"18285":1984,"18286":1940,"18287":1909,"18288":1907,"18289":1917,"18290":1988,"18291":1968,"18292":1984,"18293":1914,"18294":1928,"18295":1990,"18296":1941,"18297":1970,"18298":1969,"18299":1944,"18300":1930,"18301":1925,"18302":1990,"18303":1970,"18304":1970,"18305":1901,"18306":1959,"18307":1930,"18308":1901,"18309":1930,"18310":1908,"18311":1940,"18312":1936,"18313":1917,"18314":1900,"18315":1954,"18316":1923,"18317":1906,"18318":1968,"18319":1930,"18320":1923,"18321":1972,"18322":1923,"18323":1913,"18324":1925,"18325":1970,"18326":1950,"18327":1927,"18328":1911,"18329":1947,"18330":1947,"18331":1916,"18332":1928,"18333":1907,"18334":1907,"18335":1972,"18336":1959,"18337":1920,"18338":1958,"18339":1990,"18340":1966,"18341":1939,"18342":1944,"18343":1939,"18344":1915,"18345":1901,"18346":1983,"18347":1915,"18348":1920,"18349":1921,"18350":1974,"18351":1943,"18352":1911,"18353":1907,"18354":1974,"18355":1953,"18356":1920,"18357":1930,"18358":1902,"18359":1929},"commfacid":{"0":2690,"1":2689,"2":2689,"3":2688,"4":2689,"5":2690,"6":2690,"7":2690,"8":2689,"9":2689,"10":2688,"11":2690,"12":2689,"13":2690,"14":2688,"15":2689,"16":2690,"17":2688,"18":2689,"19":2690,"20":2688,"21":2689,"22":2689,"23":2689,"24":2690,"25":2688,"26":2690,"27":2688,"28":2688,"29":2688,"30":2689,"31":2689,"32":2689,"33":2689,"34":2690,"35":2688,"36":2690,"37":2689,"38":2689,"39":2689,"40":2689,"41":2689,"42":2690,"43":2689,"44":2688,"45":2689,"46":2688,"47":2688,"48":2689,"49":2689,"50":2688,"51":2690,"52":2688,"53":2688,"54":2690,"55":2690,"56":2689,"57":2688,"58":2688,"59":2689,"60":2689,"61":2690,"62":2688,"63":2689,"64":2689,"65":2690,"66":2688,"67":2688,"68":2690,"69":2689,"70":2689,"71":2690,"72":2689,"73":2689,"74":2688,"75":2690,"76":2688,"77":2690,"78":2689,"79":2688,"80":2690,"81":2689,"82":2689,"83":2689,"84":2690,"85":2689,"86":2689,"87":2689,"88":2689,"89":2689,"90":2689,"91":2688,"92":2689,"93":2689,"94":2690,"95":2690,"96":2688,"97":2689,"98":2690,"99":2690,"100":2690,"101":2688,"102":2689,"103":2690,"104":2690,"105":2688,"106":2689,"107":2689,"108":2689,"109":2689,"110":2689,"111":2689,"112":2690,"113":2689,"114":2690,"115":2690,"116":2688,"117":2689,"118":2688,"119":2689,"120":2689,"121":2688,"122":2689,"123":2689,"124":2688,"125":2688,"126":2689,"127":2690,"128":2688,"129":2689,"130":2689,"131":2689,"132":2689,"133":2690,"134":2688,"135":2689,"136":2689,"137":2689,"138":2690,"139":2689,"140":2690,"141":2689,"142":2689,"143":2689,"144":2688,"145":2689,"146":2688,"147":2689,"148":2689,"149":2688,"150":2689,"151":2689,"152":2688,"153":2690,"154":2690,"155":2689,"156":2689,"157":2689,"158":2690,"159":2689,"160":2689,"161":2688,"162":2688,"163":2688,"164":2689,"165":2689,"166":2689,"167":2690,"168":2690,"169":2689,"170":2690,"171":2690,"172":2689,"173":2688,"174":2689,"175":2689,"176":2690,"177":2688,"178":2689,"179":2688,"180":2688,"181":2690,"182":2689,"183":2689,"184":2688,"185":2688,"186":2689,"187":2690,"188":2688,"189":2689,"190":2688,"191":2688,"192":2690,"193":2690,"194":2689,"195":2689,"196":2688,"197":2690,"198":2689,"199":2689,"200":2689,"201":2689,"202":2689,"203":2690,"204":2689,"205":2688,"206":2688,"207":2688,"208":2689,"209":2689,"210":2688,"211":2690,"212":2688,"213":2689,"214":2690,"215":2688,"216":2688,"217":2689,"218":2689,"219":2690,"220":2688,"221":2688,"222":2689,"223":2689,"224":2689,"225":2689,"226":2689,"227":2690,"228":2689,"229":2689,"230":2689,"231":2689,"232":2688,"233":2689,"234":2689,"235":2690,"236":2689,"237":2689,"238":2689,"239":2690,"240":2689,"241":2689,"242":2688,"243":2690,"244":2690,"245":2689,"246":2689,"247":2689,"248":2690,"249":2688,"250":2689,"251":2689,"252":2689,"253":2689,"254":2690,"255":2689,"256":2690,"257":2688,"258":2689,"259":2690,"260":2690,"261":2690,"262":2689,"263":2689,"264":2689,"265":2690,"266":2689,"267":2689,"268":2688,"269":2689,"270":2689,"271":2689,"272":2689,"273":2689,"274":2690,"275":2689,"276":2689,"277":2688,"278":2689,"279":2689,"280":2689,"281":2689,"282":2689,"283":2689,"284":2689,"285":2689,"286":2688,"287":2689,"288":2689,"289":2689,"290":2688,"291":2690,"292":2689,"293":2689,"294":2690,"295":2689,"296":2689,"297":2689,"298":2689,"299":2688,"300":2690,"301":2688,"302":2689,"303":2688,"304":2689,"305":2690,"306":2690,"307":2688,"308":2689,"309":2690,"310":2689,"311":2689,"312":2689,"313":2689,"314":2689,"315":2689,"316":2690,"317":2689,"318":2689,"319":2689,"320":2688,"321":2688,"322":2688,"323":2688,"324":2690,"325":2689,"326":2688,"327":2689,"328":2689,"329":2688,"330":2689,"331":2689,"332":2689,"333":2690,"334":2688,"335":2690,"336":2689,"337":2689,"338":2689,"339":2689,"340":2689,"341":2689,"342":2689,"343":2689,"344":2690,"345":2689,"346":2689,"347":2690,"348":2690,"349":2689,"350":2689,"351":2689,"352":2689,"353":2688,"354":2690,"355":2688,"356":2689,"357":2689,"358":2690,"359":2689,"360":2688,"361":2689,"362":2690,"363":2688,"364":2689,"365":2690,"366":2689,"367":2689,"368":2689,"369":2689,"370":2689,"371":2688,"372":2689,"373":2689,"374":2688,"375":2689,"376":2690,"377":2690,"378":2689,"379":2689,"380":2689,"381":2690,"382":2688,"383":2690,"384":2690,"385":2690,"386":2690,"387":2689,"388":2689,"389":2690,"390":2688,"391":2688,"392":2688,"393":2690,"394":2689,"395":2690,"396":2690,"397":2690,"398":2689,"399":2689,"400":2689,"401":2690,"402":2689,"403":2688,"404":2688,"405":2689,"406":2690,"407":2689,"408":2690,"409":2688,"410":2689,"411":2690,"412":2688,"413":2689,"414":2689,"415":2689,"416":2688,"417":2688,"418":2689,"419":2688,"420":2688,"421":2689,"422":2690,"423":2690,"424":2689,"425":2689,"426":2689,"427":2690,"428":2689,"429":2689,"430":2688,"431":2690,"432":2689,"433":2690,"434":2689,"435":2689,"436":2690,"437":2688,"438":2688,"439":2688,"440":2689,"441":2689,"442":2688,"443":2689,"444":2689,"445":2690,"446":2689,"447":2689,"448":2688,"449":2690,"450":2690,"451":2689,"452":2689,"453":2690,"454":2689,"455":2688,"456":2689,"457":2689,"458":2689,"459":2689,"460":2690,"461":2690,"462":2689,"463":2690,"464":2689,"465":2689,"466":2689,"467":2689,"468":2689,"469":2688,"470":2689,"471":2689,"472":2689,"473":2689,"474":2689,"475":2690,"476":2689,"477":2690,"478":2688,"479":2689,"480":2689,"481":2689,"482":2690,"483":2689,"484":2689,"485":2689,"486":2689,"487":2689,"488":2688,"489":2689,"490":2689,"491":2690,"492":2689,"493":2690,"494":2689,"495":2690,"496":2689,"497":2690,"498":2690,"499":2689,"500":2688,"501":2689,"502":2689,"503":2689,"504":2689,"505":2688,"506":2690,"507":2688,"508":2689,"509":2689,"510":2688,"511":2688,"512":2690,"513":2689,"514":2688,"515":2689,"516":2689,"517":2689,"518":2689,"519":2689,"520":2689,"521":2689,"522":2688,"523":2689,"524":2689,"525":2689,"526":2689,"527":2689,"528":2689,"529":2688,"530":2689,"531":2689,"532":2688,"533":2690,"534":2690,"535":2690,"536":2690,"537":2688,"538":2690,"539":2689,"540":2689,"541":2689,"542":2690,"543":2689,"544":2690,"545":2689,"546":2688,"547":2688,"548":2689,"549":2689,"550":2688,"551":2689,"552":2690,"553":2688,"554":2689,"555":2689,"556":2690,"557":2689,"558":2688,"559":2689,"560":2689,"561":2690,"562":2690,"563":2690,"564":2689,"565":2689,"566":2688,"567":2689,"568":2689,"569":2689,"570":2689,"571":2688,"572":2689,"573":2690,"574":2690,"575":2689,"576":2689,"577":2688,"578":2689,"579":2690,"580":2688,"581":2689,"582":2688,"583":2689,"584":2689,"585":2689,"586":2689,"587":2689,"588":2690,"589":2688,"590":2689,"591":2690,"592":2688,"593":2689,"594":2689,"595":2689,"596":2690,"597":2690,"598":2689,"599":2690,"600":2689,"601":2689,"602":2689,"603":2690,"604":2688,"605":2689,"606":2688,"607":2689,"608":2688,"609":2689,"610":2689,"611":2689,"612":2688,"613":2689,"614":2689,"615":2689,"616":2689,"617":2689,"618":2689,"619":2688,"620":2689,"621":2690,"622":2688,"623":2689,"624":2689,"625":2688,"626":2689,"627":2689,"628":2689,"629":2690,"630":2689,"631":2690,"632":2690,"633":2689,"634":2690,"635":2689,"636":2689,"637":2688,"638":2690,"639":2689,"640":2690,"641":2688,"642":2689,"643":2688,"644":2690,"645":2690,"646":2688,"647":2689,"648":2688,"649":2689,"650":2689,"651":2688,"652":2688,"653":2690,"654":2690,"655":2689,"656":2688,"657":2688,"658":2688,"659":2688,"660":2689,"661":2690,"662":2690,"663":2688,"664":2689,"665":2690,"666":2690,"667":2690,"668":2690,"669":2689,"670":2689,"671":2690,"672":2690,"673":2690,"674":2689,"675":2690,"676":2689,"677":2690,"678":2689,"679":2689,"680":2690,"681":2688,"682":2689,"683":2690,"684":2689,"685":2688,"686":2689,"687":2689,"688":2689,"689":2688,"690":2689,"691":2690,"692":2689,"693":2688,"694":2689,"695":2690,"696":2690,"697":2689,"698":2689,"699":2689,"700":2690,"701":2689,"702":2689,"703":2688,"704":2689,"705":2689,"706":2689,"707":2690,"708":2689,"709":2690,"710":2689,"711":2690,"712":2689,"713":2690,"714":2688,"715":2690,"716":2689,"717":2688,"718":2688,"719":2689,"720":2688,"721":2689,"722":2690,"723":2689,"724":2689,"725":2689,"726":2688,"727":2689,"728":2690,"729":2688,"730":2690,"731":2689,"732":2689,"733":2688,"734":2690,"735":2689,"736":2689,"737":2689,"738":2690,"739":2690,"740":2689,"741":2688,"742":2688,"743":2688,"744":2689,"745":2690,"746":2688,"747":2689,"748":2689,"749":2689,"750":2689,"751":2688,"752":2688,"753":2689,"754":2688,"755":2688,"756":2690,"757":2690,"758":2689,"759":2688,"760":2689,"761":2690,"762":2689,"763":2689,"764":2690,"765":2690,"766":2690,"767":2689,"768":2689,"769":2689,"770":2690,"771":2689,"772":2688,"773":2689,"774":2690,"775":2689,"776":2689,"777":2689,"778":2688,"779":2688,"780":2690,"781":2689,"782":2689,"783":2688,"784":2689,"785":2688,"786":2689,"787":2689,"788":2688,"789":2689,"790":2689,"791":2689,"792":2689,"793":2689,"794":2689,"795":2688,"796":2690,"797":2689,"798":2690,"799":2689,"800":2688,"801":2690,"802":2688,"803":2688,"804":2690,"805":2690,"806":2689,"807":2689,"808":2690,"809":2689,"810":2689,"811":2689,"812":2688,"813":2690,"814":2688,"815":2689,"816":2689,"817":2689,"818":2688,"819":2688,"820":2690,"821":2688,"822":2689,"823":2689,"824":2690,"825":2688,"826":2688,"827":2690,"828":2689,"829":2689,"830":2689,"831":2689,"832":2688,"833":2690,"834":2690,"835":2688,"836":2689,"837":2688,"838":2688,"839":2688,"840":2690,"841":2689,"842":2690,"843":2689,"844":2690,"845":2690,"846":2689,"847":2689,"848":2689,"849":2688,"850":2689,"851":2689,"852":2689,"853":2689,"854":2690,"855":2689,"856":2689,"857":2689,"858":2690,"859":2689,"860":2690,"861":2689,"862":2690,"863":2690,"864":2688,"865":2689,"866":2689,"867":2689,"868":2688,"869":2690,"870":2690,"871":2689,"872":2688,"873":2689,"874":2688,"875":2688,"876":2689,"877":2689,"878":2688,"879":2688,"880":2688,"881":2690,"882":2689,"883":2688,"884":2689,"885":2689,"886":2689,"887":2690,"888":2688,"889":2689,"890":2688,"891":2690,"892":2689,"893":2688,"894":2689,"895":2688,"896":2689,"897":2690,"898":2689,"899":2689,"900":2689,"901":2690,"902":2690,"903":2688,"904":2689,"905":2690,"906":2689,"907":2689,"908":2690,"909":2689,"910":2689,"911":2689,"912":2689,"913":2689,"914":2689,"915":2689,"916":2689,"917":2690,"918":2690,"919":2690,"920":2689,"921":2689,"922":2690,"923":2689,"924":2690,"925":2688,"926":2689,"927":2688,"928":2690,"929":2690,"930":2689,"931":2689,"932":2690,"933":2689,"934":2690,"935":2690,"936":2689,"937":2690,"938":2690,"939":2689,"940":2690,"941":2690,"942":2688,"943":2688,"944":2688,"945":2688,"946":2689,"947":2690,"948":2689,"949":2688,"950":2690,"951":2689,"952":2689,"953":2690,"954":2688,"955":2689,"956":2689,"957":2690,"958":2688,"959":2690,"960":2689,"961":2689,"962":2689,"963":2688,"964":2688,"965":2690,"966":2689,"967":2690,"968":2689,"969":2690,"970":2689,"971":2688,"972":2688,"973":2690,"974":2690,"975":2690,"976":2688,"977":2689,"978":2688,"979":2690,"980":2689,"981":2688,"982":2689,"983":2690,"984":2690,"985":2688,"986":2688,"987":2688,"988":2688,"989":2688,"990":2689,"991":2689,"992":2689,"993":2689,"994":2688,"995":2690,"996":2690,"997":2690,"998":2690,"999":2688,"1000":2689,"1001":2689,"1002":2688,"1003":2689,"1004":2689,"1005":2689,"1006":2689,"1007":2690,"1008":2689,"1009":2688,"1010":2689,"1011":2690,"1012":2688,"1013":2688,"1014":2689,"1015":2689,"1016":2688,"1017":2690,"1018":2688,"1019":2688,"1020":2690,"1021":2689,"1022":2690,"1023":2689,"1024":2690,"1025":2689,"1026":2689,"1027":2689,"1028":2688,"1029":2689,"1030":2689,"1031":2689,"1032":2689,"1033":2689,"1034":2689,"1035":2689,"1036":2689,"1037":2688,"1038":2689,"1039":2689,"1040":2688,"1041":2688,"1042":2690,"1043":2690,"1044":2690,"1045":2688,"1046":2690,"1047":2689,"1048":2689,"1049":2689,"1050":2689,"1051":2689,"1052":2689,"1053":2688,"1054":2688,"1055":2688,"1056":2688,"1057":2688,"1058":2690,"1059":2689,"1060":2690,"1061":2689,"1062":2689,"1063":2688,"1064":2689,"1065":2690,"1066":2689,"1067":2690,"1068":2690,"1069":2688,"1070":2688,"1071":2689,"1072":2689,"1073":2689,"1074":2689,"1075":2688,"1076":2688,"1077":2689,"1078":2690,"1079":2690,"1080":2688,"1081":2690,"1082":2689,"1083":2689,"1084":2688,"1085":2689,"1086":2689,"1087":2689,"1088":2689,"1089":2690,"1090":2689,"1091":2689,"1092":2689,"1093":2690,"1094":2690,"1095":2689,"1096":2690,"1097":2689,"1098":2689,"1099":2690,"1100":2690,"1101":2689,"1102":2688,"1103":2690,"1104":2688,"1105":2689,"1106":2689,"1107":2689,"1108":2689,"1109":2688,"1110":2690,"1111":2689,"1112":2689,"1113":2688,"1114":2690,"1115":2690,"1116":2688,"1117":2689,"1118":2690,"1119":2690,"1120":2688,"1121":2689,"1122":2690,"1123":2689,"1124":2690,"1125":2689,"1126":2689,"1127":2689,"1128":2689,"1129":2689,"1130":2689,"1131":2688,"1132":2690,"1133":2689,"1134":2690,"1135":2689,"1136":2689,"1137":2690,"1138":2688,"1139":2689,"1140":2688,"1141":2689,"1142":2689,"1143":2688,"1144":2688,"1145":2690,"1146":2690,"1147":2689,"1148":2689,"1149":2689,"1150":2689,"1151":2689,"1152":2689,"1153":2689,"1154":2689,"1155":2688,"1156":2689,"1157":2690,"1158":2689,"1159":2689,"1160":2689,"1161":2689,"1162":2688,"1163":2689,"1164":2689,"1165":2689,"1166":2690,"1167":2688,"1168":2689,"1169":2688,"1170":2689,"1171":2689,"1172":2689,"1173":2689,"1174":2689,"1175":2689,"1176":2689,"1177":2688,"1178":2690,"1179":2689,"1180":2689,"1181":2689,"1182":2688,"1183":2689,"1184":2689,"1185":2688,"1186":2689,"1187":2688,"1188":2689,"1189":2690,"1190":2688,"1191":2688,"1192":2689,"1193":2688,"1194":2689,"1195":2689,"1196":2688,"1197":2689,"1198":2688,"1199":2689,"1200":2689,"1201":2689,"1202":2690,"1203":2689,"1204":2689,"1205":2689,"1206":2689,"1207":2688,"1208":2690,"1209":2688,"1210":2690,"1211":2690,"1212":2689,"1213":2689,"1214":2688,"1215":2690,"1216":2688,"1217":2689,"1218":2688,"1219":2689,"1220":2690,"1221":2690,"1222":2688,"1223":2689,"1224":2689,"1225":2690,"1226":2688,"1227":2690,"1228":2689,"1229":2689,"1230":2690,"1231":2690,"1232":2689,"1233":2689,"1234":2690,"1235":2689,"1236":2690,"1237":2689,"1238":2688,"1239":2689,"1240":2689,"1241":2690,"1242":2689,"1243":2690,"1244":2690,"1245":2688,"1246":2689,"1247":2689,"1248":2689,"1249":2690,"1250":2689,"1251":2690,"1252":2690,"1253":2690,"1254":2689,"1255":2689,"1256":2689,"1257":2689,"1258":2689,"1259":2688,"1260":2688,"1261":2690,"1262":2688,"1263":2688,"1264":2688,"1265":2689,"1266":2689,"1267":2689,"1268":2688,"1269":2689,"1270":2690,"1271":2690,"1272":2688,"1273":2689,"1274":2689,"1275":2689,"1276":2690,"1277":2688,"1278":2690,"1279":2690,"1280":2689,"1281":2689,"1282":2690,"1283":2689,"1284":2689,"1285":2689,"1286":2690,"1287":2688,"1288":2689,"1289":2689,"1290":2689,"1291":2688,"1292":2690,"1293":2689,"1294":2690,"1295":2689,"1296":2689,"1297":2688,"1298":2689,"1299":2688,"1300":2690,"1301":2689,"1302":2689,"1303":2690,"1304":2690,"1305":2689,"1306":2690,"1307":2689,"1308":2689,"1309":2689,"1310":2688,"1311":2689,"1312":2690,"1313":2689,"1314":2690,"1315":2689,"1316":2690,"1317":2689,"1318":2689,"1319":2690,"1320":2689,"1321":2690,"1322":2689,"1323":2689,"1324":2688,"1325":2690,"1326":2689,"1327":2689,"1328":2690,"1329":2689,"1330":2688,"1331":2690,"1332":2688,"1333":2688,"1334":2688,"1335":2688,"1336":2690,"1337":2689,"1338":2689,"1339":2689,"1340":2689,"1341":2689,"1342":2690,"1343":2689,"1344":2689,"1345":2690,"1346":2688,"1347":2688,"1348":2689,"1349":2690,"1350":2689,"1351":2688,"1352":2690,"1353":2689,"1354":2690,"1355":2689,"1356":2689,"1357":2689,"1358":2690,"1359":2690,"1360":2689,"1361":2689,"1362":2689,"1363":2689,"1364":2689,"1365":2688,"1366":2689,"1367":2689,"1368":2690,"1369":2689,"1370":2689,"1371":2689,"1372":2689,"1373":2688,"1374":2689,"1375":2688,"1376":2689,"1377":2688,"1378":2689,"1379":2688,"1380":2689,"1381":2689,"1382":2688,"1383":2688,"1384":2689,"1385":2689,"1386":2690,"1387":2690,"1388":2688,"1389":2688,"1390":2690,"1391":2689,"1392":2688,"1393":2689,"1394":2690,"1395":2688,"1396":2689,"1397":2689,"1398":2688,"1399":2688,"1400":2690,"1401":2689,"1402":2689,"1403":2690,"1404":2689,"1405":2689,"1406":2689,"1407":2688,"1408":2689,"1409":2689,"1410":2688,"1411":2690,"1412":2690,"1413":2690,"1414":2689,"1415":2689,"1416":2688,"1417":2689,"1418":2690,"1419":2690,"1420":2690,"1421":2689,"1422":2689,"1423":2688,"1424":2690,"1425":2689,"1426":2689,"1427":2688,"1428":2688,"1429":2690,"1430":2689,"1431":2688,"1432":2690,"1433":2690,"1434":2689,"1435":2690,"1436":2689,"1437":2688,"1438":2690,"1439":2689,"1440":2690,"1441":2689,"1442":2688,"1443":2689,"1444":2690,"1445":2689,"1446":2689,"1447":2690,"1448":2689,"1449":2688,"1450":2688,"1451":2690,"1452":2689,"1453":2689,"1454":2690,"1455":2689,"1456":2689,"1457":2689,"1458":2690,"1459":2690,"1460":2689,"1461":2688,"1462":2688,"1463":2690,"1464":2689,"1465":2689,"1466":2689,"1467":2689,"1468":2689,"1469":2690,"1470":2690,"1471":2689,"1472":2688,"1473":2689,"1474":2689,"1475":2689,"1476":2690,"1477":2689,"1478":2689,"1479":2688,"1480":2689,"1481":2689,"1482":2689,"1483":2689,"1484":2688,"1485":2689,"1486":2688,"1487":2690,"1488":2689,"1489":2690,"1490":2688,"1491":2690,"1492":2689,"1493":2689,"1494":2690,"1495":2690,"1496":2689,"1497":2689,"1498":2690,"1499":2689,"1500":2690,"1501":2689,"1502":2690,"1503":2690,"1504":2690,"1505":2689,"1506":2688,"1507":2689,"1508":2689,"1509":2689,"1510":2689,"1511":2688,"1512":2688,"1513":2689,"1514":2689,"1515":2689,"1516":2689,"1517":2689,"1518":2689,"1519":2690,"1520":2690,"1521":2689,"1522":2688,"1523":2688,"1524":2690,"1525":2688,"1526":2688,"1527":2689,"1528":2689,"1529":2689,"1530":2689,"1531":2690,"1532":2690,"1533":2690,"1534":2690,"1535":2689,"1536":2689,"1537":2689,"1538":2689,"1539":2689,"1540":2689,"1541":2688,"1542":2690,"1543":2689,"1544":2690,"1545":2690,"1546":2689,"1547":2690,"1548":2689,"1549":2688,"1550":2689,"1551":2690,"1552":2689,"1553":2689,"1554":2690,"1555":2688,"1556":2689,"1557":2689,"1558":2690,"1559":2690,"1560":2689,"1561":2689,"1562":2689,"1563":2689,"1564":2690,"1565":2689,"1566":2690,"1567":2689,"1568":2690,"1569":2689,"1570":2689,"1571":2689,"1572":2688,"1573":2689,"1574":2689,"1575":2690,"1576":2690,"1577":2688,"1578":2690,"1579":2689,"1580":2689,"1581":2690,"1582":2688,"1583":2689,"1584":2689,"1585":2689,"1586":2690,"1587":2689,"1588":2688,"1589":2689,"1590":2688,"1591":2688,"1592":2689,"1593":2688,"1594":2690,"1595":2688,"1596":2689,"1597":2688,"1598":2689,"1599":2688,"1600":2689,"1601":2688,"1602":2690,"1603":2689,"1604":2689,"1605":2689,"1606":2688,"1607":2690,"1608":2690,"1609":2689,"1610":2690,"1611":2688,"1612":2689,"1613":2690,"1614":2689,"1615":2688,"1616":2689,"1617":2689,"1618":2690,"1619":2690,"1620":2689,"1621":2689,"1622":2689,"1623":2690,"1624":2689,"1625":2688,"1626":2689,"1627":2689,"1628":2689,"1629":2689,"1630":2689,"1631":2690,"1632":2689,"1633":2688,"1634":2690,"1635":2690,"1636":2690,"1637":2688,"1638":2690,"1639":2689,"1640":2689,"1641":2689,"1642":2690,"1643":2688,"1644":2688,"1645":2689,"1646":2690,"1647":2689,"1648":2690,"1649":2688,"1650":2688,"1651":2688,"1652":2690,"1653":2689,"1654":2690,"1655":2690,"1656":2688,"1657":2689,"1658":2689,"1659":2689,"1660":2689,"1661":2690,"1662":2689,"1663":2689,"1664":2688,"1665":2690,"1666":2690,"1667":2690,"1668":2688,"1669":2690,"1670":2689,"1671":2689,"1672":2689,"1673":2689,"1674":2690,"1675":2689,"1676":2689,"1677":2689,"1678":2690,"1679":2689,"1680":2689,"1681":2689,"1682":2689,"1683":2690,"1684":2689,"1685":2689,"1686":2690,"1687":2689,"1688":2689,"1689":2690,"1690":2690,"1691":2689,"1692":2689,"1693":2689,"1694":2689,"1695":2689,"1696":2689,"1697":2689,"1698":2688,"1699":2690,"1700":2689,"1701":2689,"1702":2689,"1703":2689,"1704":2690,"1705":2689,"1706":2689,"1707":2690,"1708":2690,"1709":2688,"1710":2689,"1711":2688,"1712":2688,"1713":2689,"1714":2688,"1715":2690,"1716":2689,"1717":2688,"1718":2688,"1719":2690,"1720":2689,"1721":2690,"1722":2690,"1723":2688,"1724":2689,"1725":2689,"1726":2689,"1727":2689,"1728":2688,"1729":2689,"1730":2690,"1731":2689,"1732":2689,"1733":2688,"1734":2690,"1735":2689,"1736":2690,"1737":2689,"1738":2689,"1739":2690,"1740":2690,"1741":2690,"1742":2689,"1743":2689,"1744":2689,"1745":2688,"1746":2688,"1747":2690,"1748":2689,"1749":2689,"1750":2689,"1751":2689,"1752":2688,"1753":2689,"1754":2689,"1755":2689,"1756":2689,"1757":2690,"1758":2688,"1759":2688,"1760":2688,"1761":2690,"1762":2689,"1763":2689,"1764":2689,"1765":2689,"1766":2690,"1767":2689,"1768":2689,"1769":2689,"1770":2688,"1771":2688,"1772":2689,"1773":2690,"1774":2689,"1775":2689,"1776":2688,"1777":2688,"1778":2689,"1779":2688,"1780":2690,"1781":2688,"1782":2689,"1783":2689,"1784":2690,"1785":2688,"1786":2689,"1787":2689,"1788":2689,"1789":2688,"1790":2689,"1791":2689,"1792":2689,"1793":2689,"1794":2689,"1795":2689,"1796":2689,"1797":2689,"1798":2688,"1799":2689,"1800":2689,"1801":2689,"1802":2690,"1803":2689,"1804":2690,"1805":2689,"1806":2689,"1807":2688,"1808":2688,"1809":2689,"1810":2690,"1811":2688,"1812":2689,"1813":2689,"1814":2690,"1815":2690,"1816":2689,"1817":2689,"1818":2690,"1819":2688,"1820":2690,"1821":2689,"1822":2689,"1823":2689,"1824":2689,"1825":2688,"1826":2690,"1827":2689,"1828":2690,"1829":2688,"1830":2688,"1831":2689,"1832":2689,"1833":2689,"1834":2688,"1835":2689,"1836":2690,"1837":2689,"1838":2688,"1839":2690,"1840":2690,"1841":2688,"1842":2689,"1843":2690,"1844":2689,"1845":2689,"1846":2688,"1847":2689,"1848":2690,"1849":2689,"1850":2689,"1851":2688,"1852":2689,"1853":2688,"1854":2688,"1855":2689,"1856":2688,"1857":2690,"1858":2690,"1859":2690,"1860":2689,"1861":2689,"1862":2690,"1863":2690,"1864":2690,"1865":2688,"1866":2688,"1867":2688,"1868":2689,"1869":2688,"1870":2690,"1871":2689,"1872":2689,"1873":2690,"1874":2688,"1875":2689,"1876":2688,"1877":2690,"1878":2689,"1879":2689,"1880":2689,"1881":2689,"1882":2688,"1883":2690,"1884":2690,"1885":2689,"1886":2690,"1887":2688,"1888":2690,"1889":2688,"1890":2689,"1891":2688,"1892":2688,"1893":2689,"1894":2689,"1895":2688,"1896":2689,"1897":2688,"1898":2689,"1899":2690,"1900":2688,"1901":2688,"1902":2689,"1903":2689,"1904":2689,"1905":2689,"1906":2690,"1907":2688,"1908":2689,"1909":2689,"1910":2690,"1911":2689,"1912":2689,"1913":2689,"1914":2689,"1915":2689,"1916":2690,"1917":2689,"1918":2689,"1919":2689,"1920":2689,"1921":2689,"1922":2688,"1923":2690,"1924":2690,"1925":2689,"1926":2689,"1927":2689,"1928":2690,"1929":2690,"1930":2688,"1931":2688,"1932":2689,"1933":2690,"1934":2690,"1935":2689,"1936":2689,"1937":2688,"1938":2688,"1939":2688,"1940":2688,"1941":2690,"1942":2689,"1943":2689,"1944":2690,"1945":2690,"1946":2688,"1947":2690,"1948":2688,"1949":2688,"1950":2689,"1951":2688,"1952":2688,"1953":2689,"1954":2689,"1955":2690,"1956":2690,"1957":2689,"1958":2690,"1959":2689,"1960":2688,"1961":2690,"1962":2689,"1963":2688,"1964":2690,"1965":2690,"1966":2689,"1967":2689,"1968":2689,"1969":2689,"1970":2690,"1971":2690,"1972":2688,"1973":2689,"1974":2690,"1975":2689,"1976":2688,"1977":2688,"1978":2689,"1979":2690,"1980":2690,"1981":2689,"1982":2688,"1983":2690,"1984":2688,"1985":2688,"1986":2690,"1987":2689,"1988":2689,"1989":2689,"1990":2688,"1991":2688,"1992":2689,"1993":2689,"1994":2689,"1995":2688,"1996":2689,"1997":2688,"1998":2689,"1999":2690,"2000":2688,"2001":2688,"2002":2690,"2003":2690,"2004":2689,"2005":2689,"2006":2689,"2007":2688,"2008":2688,"2009":2688,"2010":2688,"2011":2690,"2012":2689,"2013":2689,"2014":2689,"2015":2689,"2016":2688,"2017":2688,"2018":2690,"2019":2688,"2020":2688,"2021":2689,"2022":2690,"2023":2689,"2024":2690,"2025":2688,"2026":2688,"2027":2690,"2028":2689,"2029":2688,"2030":2689,"2031":2688,"2032":2690,"2033":2689,"2034":2690,"2035":2690,"2036":2689,"2037":2690,"2038":2690,"2039":2689,"2040":2689,"2041":2689,"2042":2688,"2043":2689,"2044":2689,"2045":2690,"2046":2689,"2047":2689,"2048":2689,"2049":2689,"2050":2689,"2051":2688,"2052":2688,"2053":2689,"2054":2690,"2055":2690,"2056":2688,"2057":2689,"2058":2688,"2059":2689,"2060":2689,"2061":2688,"2062":2690,"2063":2688,"2064":2689,"2065":2688,"2066":2690,"2067":2690,"2068":2689,"2069":2689,"2070":2689,"2071":2690,"2072":2689,"2073":2690,"2074":2689,"2075":2689,"2076":2688,"2077":2689,"2078":2690,"2079":2689,"2080":2689,"2081":2689,"2082":2688,"2083":2689,"2084":2689,"2085":2689,"2086":2690,"2087":2689,"2088":2688,"2089":2689,"2090":2688,"2091":2689,"2092":2689,"2093":2688,"2094":2690,"2095":2689,"2096":2690,"2097":2690,"2098":2689,"2099":2689,"2100":2690,"2101":2689,"2102":2688,"2103":2689,"2104":2689,"2105":2689,"2106":2690,"2107":2689,"2108":2690,"2109":2688,"2110":2690,"2111":2689,"2112":2689,"2113":2688,"2114":2690,"2115":2689,"2116":2688,"2117":2689,"2118":2689,"2119":2690,"2120":2689,"2121":2689,"2122":2688,"2123":2689,"2124":2689,"2125":2689,"2126":2689,"2127":2689,"2128":2690,"2129":2688,"2130":2689,"2131":2690,"2132":2689,"2133":2689,"2134":2689,"2135":2690,"2136":2690,"2137":2689,"2138":2688,"2139":2688,"2140":2688,"2141":2689,"2142":2690,"2143":2688,"2144":2689,"2145":2689,"2146":2688,"2147":2688,"2148":2689,"2149":2689,"2150":2688,"2151":2689,"2152":2690,"2153":2689,"2154":2690,"2155":2690,"2156":2688,"2157":2689,"2158":2690,"2159":2690,"2160":2689,"2161":2689,"2162":2689,"2163":2690,"2164":2688,"2165":2690,"2166":2689,"2167":2690,"2168":2689,"2169":2689,"2170":2689,"2171":2689,"2172":2689,"2173":2689,"2174":2688,"2175":2688,"2176":2688,"2177":2688,"2178":2688,"2179":2688,"2180":2690,"2181":2688,"2182":2689,"2183":2689,"2184":2688,"2185":2689,"2186":2689,"2187":2690,"2188":2689,"2189":2688,"2190":2689,"2191":2690,"2192":2690,"2193":2689,"2194":2689,"2195":2690,"2196":2688,"2197":2690,"2198":2688,"2199":2690,"2200":2690,"2201":2689,"2202":2689,"2203":2688,"2204":2688,"2205":2690,"2206":2688,"2207":2688,"2208":2689,"2209":2689,"2210":2690,"2211":2689,"2212":2688,"2213":2689,"2214":2689,"2215":2689,"2216":2689,"2217":2688,"2218":2688,"2219":2689,"2220":2688,"2221":2690,"2222":2688,"2223":2689,"2224":2690,"2225":2689,"2226":2690,"2227":2688,"2228":2688,"2229":2689,"2230":2689,"2231":2689,"2232":2689,"2233":2689,"2234":2689,"2235":2689,"2236":2689,"2237":2690,"2238":2689,"2239":2689,"2240":2688,"2241":2689,"2242":2690,"2243":2689,"2244":2689,"2245":2689,"2246":2690,"2247":2689,"2248":2689,"2249":2689,"2250":2690,"2251":2689,"2252":2688,"2253":2690,"2254":2689,"2255":2689,"2256":2689,"2257":2690,"2258":2689,"2259":2689,"2260":2689,"2261":2689,"2262":2688,"2263":2688,"2264":2689,"2265":2688,"2266":2689,"2267":2690,"2268":2688,"2269":2689,"2270":2688,"2271":2689,"2272":2689,"2273":2688,"2274":2690,"2275":2689,"2276":2688,"2277":2689,"2278":2689,"2279":2688,"2280":2690,"2281":2690,"2282":2688,"2283":2689,"2284":2690,"2285":2690,"2286":2689,"2287":2689,"2288":2688,"2289":2688,"2290":2689,"2291":2689,"2292":2689,"2293":2689,"2294":2689,"2295":2690,"2296":2688,"2297":2689,"2298":2690,"2299":2689,"2300":2689,"2301":2689,"2302":2688,"2303":2689,"2304":2688,"2305":2689,"2306":2689,"2307":2688,"2308":2689,"2309":2689,"2310":2688,"2311":2690,"2312":2688,"2313":2689,"2314":2690,"2315":2689,"2316":2690,"2317":2688,"2318":2690,"2319":2689,"2320":2688,"2321":2689,"2322":2690,"2323":2689,"2324":2689,"2325":2690,"2326":2690,"2327":2688,"2328":2689,"2329":2688,"2330":2689,"2331":2689,"2332":2689,"2333":2689,"2334":2689,"2335":2688,"2336":2689,"2337":2689,"2338":2690,"2339":2689,"2340":2689,"2341":2689,"2342":2690,"2343":2690,"2344":2689,"2345":2689,"2346":2689,"2347":2689,"2348":2689,"2349":2688,"2350":2690,"2351":2688,"2352":2690,"2353":2689,"2354":2689,"2355":2690,"2356":2689,"2357":2690,"2358":2689,"2359":2689,"2360":2690,"2361":2688,"2362":2690,"2363":2688,"2364":2689,"2365":2689,"2366":2690,"2367":2688,"2368":2688,"2369":2689,"2370":2689,"2371":2689,"2372":2689,"2373":2688,"2374":2689,"2375":2689,"2376":2690,"2377":2689,"2378":2690,"2379":2690,"2380":2689,"2381":2690,"2382":2688,"2383":2689,"2384":2690,"2385":2689,"2386":2690,"2387":2690,"2388":2689,"2389":2689,"2390":2689,"2391":2689,"2392":2689,"2393":2689,"2394":2689,"2395":2689,"2396":2689,"2397":2688,"2398":2689,"2399":2688,"2400":2689,"2401":2689,"2402":2690,"2403":2689,"2404":2690,"2405":2689,"2406":2689,"2407":2689,"2408":2688,"2409":2689,"2410":2690,"2411":2688,"2412":2689,"2413":2689,"2414":2689,"2415":2690,"2416":2690,"2417":2689,"2418":2689,"2419":2689,"2420":2690,"2421":2689,"2422":2689,"2423":2690,"2424":2689,"2425":2688,"2426":2689,"2427":2689,"2428":2689,"2429":2689,"2430":2689,"2431":2689,"2432":2690,"2433":2690,"2434":2690,"2435":2690,"2436":2690,"2437":2690,"2438":2689,"2439":2690,"2440":2689,"2441":2689,"2442":2690,"2443":2690,"2444":2689,"2445":2689,"2446":2690,"2447":2689,"2448":2688,"2449":2690,"2450":2690,"2451":2689,"2452":2688,"2453":2688,"2454":2688,"2455":2688,"2456":2690,"2457":2690,"2458":2688,"2459":2690,"2460":2688,"2461":2688,"2462":2690,"2463":2689,"2464":2689,"2465":2688,"2466":2688,"2467":2689,"2468":2688,"2469":2690,"2470":2689,"2471":2688,"2472":2690,"2473":2689,"2474":2690,"2475":2689,"2476":2689,"2477":2690,"2478":2688,"2479":2688,"2480":2689,"2481":2689,"2482":2689,"2483":2690,"2484":2689,"2485":2688,"2486":2688,"2487":2688,"2488":2688,"2489":2689,"2490":2689,"2491":2689,"2492":2688,"2493":2688,"2494":2688,"2495":2689,"2496":2689,"2497":2690,"2498":2689,"2499":2690,"2500":2690,"2501":2689,"2502":2688,"2503":2688,"2504":2689,"2505":2689,"2506":2689,"2507":2689,"2508":2690,"2509":2690,"2510":2690,"2511":2688,"2512":2690,"2513":2689,"2514":2690,"2515":2689,"2516":2689,"2517":2689,"2518":2689,"2519":2690,"2520":2688,"2521":2688,"2522":2689,"2523":2689,"2524":2688,"2525":2690,"2526":2690,"2527":2689,"2528":2690,"2529":2689,"2530":2689,"2531":2690,"2532":2688,"2533":2689,"2534":2688,"2535":2690,"2536":2689,"2537":2690,"2538":2689,"2539":2688,"2540":2689,"2541":2689,"2542":2689,"2543":2690,"2544":2688,"2545":2688,"2546":2688,"2547":2688,"2548":2690,"2549":2689,"2550":2689,"2551":2689,"2552":2690,"2553":2689,"2554":2689,"2555":2689,"2556":2688,"2557":2689,"2558":2689,"2559":2689,"2560":2689,"2561":2689,"2562":2689,"2563":2688,"2564":2689,"2565":2689,"2566":2688,"2567":2689,"2568":2690,"2569":2689,"2570":2689,"2571":2689,"2572":2688,"2573":2689,"2574":2688,"2575":2688,"2576":2688,"2577":2688,"2578":2689,"2579":2689,"2580":2689,"2581":2689,"2582":2688,"2583":2690,"2584":2689,"2585":2689,"2586":2689,"2587":2689,"2588":2688,"2589":2690,"2590":2689,"2591":2689,"2592":2690,"2593":2688,"2594":2688,"2595":2689,"2596":2689,"2597":2689,"2598":2689,"2599":2689,"2600":2689,"2601":2688,"2602":2689,"2603":2689,"2604":2689,"2605":2689,"2606":2690,"2607":2690,"2608":2690,"2609":2690,"2610":2689,"2611":2688,"2612":2689,"2613":2688,"2614":2689,"2615":2690,"2616":2690,"2617":2689,"2618":2689,"2619":2689,"2620":2688,"2621":2690,"2622":2688,"2623":2690,"2624":2688,"2625":2690,"2626":2689,"2627":2688,"2628":2689,"2629":2688,"2630":2689,"2631":2688,"2632":2689,"2633":2688,"2634":2689,"2635":2689,"2636":2688,"2637":2688,"2638":2690,"2639":2689,"2640":2688,"2641":2690,"2642":2688,"2643":2690,"2644":2688,"2645":2689,"2646":2689,"2647":2688,"2648":2689,"2649":2688,"2650":2690,"2651":2688,"2652":2689,"2653":2689,"2654":2688,"2655":2690,"2656":2689,"2657":2689,"2658":2688,"2659":2688,"2660":2690,"2661":2690,"2662":2690,"2663":2690,"2664":2688,"2665":2689,"2666":2689,"2667":2690,"2668":2689,"2669":2689,"2670":2690,"2671":2689,"2672":2688,"2673":2690,"2674":2689,"2675":2689,"2676":2688,"2677":2689,"2678":2689,"2679":2690,"2680":2689,"2681":2689,"2682":2690,"2683":2689,"2684":2689,"2685":2689,"2686":2689,"2687":2690,"2688":2689,"2689":2690,"2690":2689,"2691":2689,"2692":2688,"2693":2689,"2694":2689,"2695":2689,"2696":2689,"2697":2690,"2698":2688,"2699":2689,"2700":2688,"2701":2688,"2702":2688,"2703":2690,"2704":2689,"2705":2688,"2706":2689,"2707":2690,"2708":2689,"2709":2688,"2710":2689,"2711":2688,"2712":2689,"2713":2690,"2714":2690,"2715":2689,"2716":2689,"2717":2690,"2718":2689,"2719":2689,"2720":2688,"2721":2690,"2722":2690,"2723":2690,"2724":2689,"2725":2690,"2726":2688,"2727":2689,"2728":2688,"2729":2688,"2730":2689,"2731":2688,"2732":2690,"2733":2689,"2734":2689,"2735":2688,"2736":2689,"2737":2689,"2738":2688,"2739":2689,"2740":2689,"2741":2690,"2742":2689,"2743":2689,"2744":2690,"2745":2689,"2746":2688,"2747":2688,"2748":2690,"2749":2689,"2750":2689,"2751":2688,"2752":2689,"2753":2688,"2754":2689,"2755":2690,"2756":2689,"2757":2689,"2758":2688,"2759":2688,"2760":2689,"2761":2690,"2762":2688,"2763":2690,"2764":2688,"2765":2688,"2766":2690,"2767":2689,"2768":2689,"2769":2689,"2770":2689,"2771":2688,"2772":2689,"2773":2689,"2774":2689,"2775":2690,"2776":2689,"2777":2689,"2778":2688,"2779":2688,"2780":2688,"2781":2688,"2782":2689,"2783":2689,"2784":2690,"2785":2689,"2786":2689,"2787":2689,"2788":2689,"2789":2688,"2790":2689,"2791":2689,"2792":2690,"2793":2690,"2794":2689,"2795":2689,"2796":2689,"2797":2690,"2798":2689,"2799":2688,"2800":2689,"2801":2690,"2802":2690,"2803":2689,"2804":2690,"2805":2689,"2806":2689,"2807":2689,"2808":2688,"2809":2689,"2810":2689,"2811":2689,"2812":2689,"2813":2690,"2814":2689,"2815":2689,"2816":2688,"2817":2689,"2818":2690,"2819":2690,"2820":2688,"2821":2689,"2822":2689,"2823":2689,"2824":2689,"2825":2688,"2826":2688,"2827":2690,"2828":2688,"2829":2689,"2830":2689,"2831":2688,"2832":2688,"2833":2689,"2834":2688,"2835":2690,"2836":2689,"2837":2689,"2838":2688,"2839":2689,"2840":2688,"2841":2690,"2842":2690,"2843":2689,"2844":2689,"2845":2689,"2846":2688,"2847":2689,"2848":2690,"2849":2688,"2850":2689,"2851":2689,"2852":2688,"2853":2690,"2854":2689,"2855":2689,"2856":2688,"2857":2689,"2858":2689,"2859":2689,"2860":2688,"2861":2689,"2862":2689,"2863":2689,"2864":2689,"2865":2688,"2866":2689,"2867":2689,"2868":2690,"2869":2689,"2870":2688,"2871":2689,"2872":2689,"2873":2689,"2874":2689,"2875":2689,"2876":2690,"2877":2689,"2878":2689,"2879":2690,"2880":2688,"2881":2689,"2882":2689,"2883":2689,"2884":2690,"2885":2690,"2886":2690,"2887":2689,"2888":2688,"2889":2688,"2890":2688,"2891":2689,"2892":2689,"2893":2689,"2894":2689,"2895":2689,"2896":2689,"2897":2690,"2898":2688,"2899":2690,"2900":2689,"2901":2690,"2902":2688,"2903":2688,"2904":2689,"2905":2689,"2906":2688,"2907":2689,"2908":2689,"2909":2690,"2910":2690,"2911":2688,"2912":2689,"2913":2689,"2914":2688,"2915":2689,"2916":2689,"2917":2689,"2918":2689,"2919":2689,"2920":2690,"2921":2688,"2922":2689,"2923":2689,"2924":2688,"2925":2689,"2926":2688,"2927":2688,"2928":2688,"2929":2690,"2930":2689,"2931":2689,"2932":2690,"2933":2690,"2934":2689,"2935":2688,"2936":2689,"2937":2690,"2938":2689,"2939":2690,"2940":2688,"2941":2690,"2942":2688,"2943":2688,"2944":2689,"2945":2689,"2946":2689,"2947":2689,"2948":2689,"2949":2688,"2950":2689,"2951":2689,"2952":2688,"2953":2690,"2954":2690,"2955":2689,"2956":2689,"2957":2689,"2958":2690,"2959":2689,"2960":2690,"2961":2689,"2962":2688,"2963":2690,"2964":2690,"2965":2690,"2966":2688,"2967":2690,"2968":2688,"2969":2689,"2970":2689,"2971":2689,"2972":2690,"2973":2689,"2974":2688,"2975":2689,"2976":2689,"2977":2689,"2978":2690,"2979":2690,"2980":2689,"2981":2689,"2982":2689,"2983":2689,"2984":2689,"2985":2688,"2986":2689,"2987":2689,"2988":2690,"2989":2689,"2990":2688,"2991":2689,"2992":2690,"2993":2688,"2994":2689,"2995":2689,"2996":2689,"2997":2689,"2998":2688,"2999":2690,"3000":2689,"3001":2689,"3002":2688,"3003":2690,"3004":2690,"3005":2689,"3006":2689,"3007":2689,"3008":2689,"3009":2689,"3010":2690,"3011":2688,"3012":2689,"3013":2690,"3014":2688,"3015":2688,"3016":2689,"3017":2689,"3018":2689,"3019":2690,"3020":2688,"3021":2689,"3022":2690,"3023":2689,"3024":2690,"3025":2690,"3026":2688,"3027":2689,"3028":2690,"3029":2689,"3030":2690,"3031":2690,"3032":2689,"3033":2690,"3034":2690,"3035":2688,"3036":2688,"3037":2689,"3038":2688,"3039":2690,"3040":2690,"3041":2689,"3042":2689,"3043":2689,"3044":2688,"3045":2688,"3046":2690,"3047":2690,"3048":2689,"3049":2690,"3050":2688,"3051":2688,"3052":2690,"3053":2690,"3054":2689,"3055":2689,"3056":2688,"3057":2690,"3058":2688,"3059":2689,"3060":2689,"3061":2689,"3062":2689,"3063":2689,"3064":2689,"3065":2688,"3066":2688,"3067":2688,"3068":2689,"3069":2690,"3070":2688,"3071":2688,"3072":2690,"3073":2689,"3074":2689,"3075":2689,"3076":2689,"3077":2688,"3078":2689,"3079":2688,"3080":2689,"3081":2690,"3082":2689,"3083":2689,"3084":2690,"3085":2689,"3086":2689,"3087":2690,"3088":2690,"3089":2689,"3090":2688,"3091":2688,"3092":2688,"3093":2689,"3094":2689,"3095":2688,"3096":2689,"3097":2689,"3098":2689,"3099":2689,"3100":2688,"3101":2689,"3102":2688,"3103":2689,"3104":2688,"3105":2690,"3106":2689,"3107":2689,"3108":2690,"3109":2688,"3110":2688,"3111":2689,"3112":2688,"3113":2689,"3114":2688,"3115":2689,"3116":2689,"3117":2688,"3118":2689,"3119":2690,"3120":2688,"3121":2689,"3122":2690,"3123":2689,"3124":2688,"3125":2689,"3126":2690,"3127":2690,"3128":2690,"3129":2689,"3130":2688,"3131":2689,"3132":2690,"3133":2689,"3134":2688,"3135":2689,"3136":2689,"3137":2688,"3138":2689,"3139":2690,"3140":2690,"3141":2688,"3142":2689,"3143":2690,"3144":2690,"3145":2690,"3146":2689,"3147":2688,"3148":2690,"3149":2689,"3150":2689,"3151":2690,"3152":2689,"3153":2688,"3154":2689,"3155":2690,"3156":2689,"3157":2689,"3158":2689,"3159":2690,"3160":2690,"3161":2689,"3162":2689,"3163":2689,"3164":2689,"3165":2690,"3166":2689,"3167":2688,"3168":2688,"3169":2689,"3170":2690,"3171":2689,"3172":2689,"3173":2689,"3174":2689,"3175":2689,"3176":2689,"3177":2688,"3178":2690,"3179":2689,"3180":2688,"3181":2689,"3182":2688,"3183":2690,"3184":2689,"3185":2689,"3186":2689,"3187":2689,"3188":2688,"3189":2689,"3190":2689,"3191":2689,"3192":2689,"3193":2689,"3194":2689,"3195":2688,"3196":2688,"3197":2688,"3198":2689,"3199":2689,"3200":2689,"3201":2688,"3202":2688,"3203":2689,"3204":2689,"3205":2689,"3206":2689,"3207":2690,"3208":2690,"3209":2689,"3210":2690,"3211":2688,"3212":2688,"3213":2688,"3214":2690,"3215":2689,"3216":2688,"3217":2689,"3218":2688,"3219":2690,"3220":2690,"3221":2690,"3222":2690,"3223":2688,"3224":2690,"3225":2689,"3226":2689,"3227":2688,"3228":2688,"3229":2688,"3230":2689,"3231":2689,"3232":2689,"3233":2690,"3234":2689,"3235":2690,"3236":2689,"3237":2689,"3238":2689,"3239":2690,"3240":2689,"3241":2689,"3242":2689,"3243":2688,"3244":2689,"3245":2688,"3246":2689,"3247":2688,"3248":2690,"3249":2688,"3250":2689,"3251":2690,"3252":2689,"3253":2688,"3254":2689,"3255":2689,"3256":2688,"3257":2689,"3258":2689,"3259":2690,"3260":2690,"3261":2689,"3262":2688,"3263":2689,"3264":2690,"3265":2688,"3266":2688,"3267":2690,"3268":2688,"3269":2689,"3270":2689,"3271":2689,"3272":2690,"3273":2689,"3274":2689,"3275":2689,"3276":2688,"3277":2690,"3278":2690,"3279":2688,"3280":2690,"3281":2688,"3282":2689,"3283":2690,"3284":2690,"3285":2689,"3286":2690,"3287":2689,"3288":2689,"3289":2690,"3290":2689,"3291":2689,"3292":2689,"3293":2689,"3294":2689,"3295":2690,"3296":2690,"3297":2688,"3298":2689,"3299":2689,"3300":2688,"3301":2689,"3302":2690,"3303":2689,"3304":2688,"3305":2690,"3306":2690,"3307":2689,"3308":2689,"3309":2688,"3310":2689,"3311":2689,"3312":2688,"3313":2690,"3314":2689,"3315":2689,"3316":2690,"3317":2688,"3318":2689,"3319":2689,"3320":2688,"3321":2689,"3322":2689,"3323":2690,"3324":2689,"3325":2688,"3326":2690,"3327":2689,"3328":2688,"3329":2688,"3330":2689,"3331":2689,"3332":2688,"3333":2688,"3334":2689,"3335":2688,"3336":2690,"3337":2689,"3338":2689,"3339":2689,"3340":2690,"3341":2690,"3342":2690,"3343":2689,"3344":2688,"3345":2689,"3346":2690,"3347":2689,"3348":2690,"3349":2690,"3350":2688,"3351":2688,"3352":2688,"3353":2689,"3354":2689,"3355":2689,"3356":2690,"3357":2689,"3358":2688,"3359":2690,"3360":2689,"3361":2689,"3362":2690,"3363":2688,"3364":2688,"3365":2690,"3366":2688,"3367":2690,"3368":2690,"3369":2690,"3370":2689,"3371":2689,"3372":2689,"3373":2689,"3374":2689,"3375":2689,"3376":2689,"3377":2688,"3378":2689,"3379":2689,"3380":2688,"3381":2690,"3382":2688,"3383":2688,"3384":2689,"3385":2688,"3386":2689,"3387":2688,"3388":2690,"3389":2689,"3390":2689,"3391":2688,"3392":2690,"3393":2689,"3394":2688,"3395":2690,"3396":2690,"3397":2689,"3398":2689,"3399":2688,"3400":2689,"3401":2690,"3402":2689,"3403":2690,"3404":2689,"3405":2689,"3406":2689,"3407":2689,"3408":2690,"3409":2690,"3410":2688,"3411":2689,"3412":2688,"3413":2689,"3414":2689,"3415":2689,"3416":2688,"3417":2689,"3418":2689,"3419":2688,"3420":2689,"3421":2690,"3422":2690,"3423":2689,"3424":2688,"3425":2688,"3426":2689,"3427":2689,"3428":2688,"3429":2690,"3430":2690,"3431":2689,"3432":2690,"3433":2690,"3434":2688,"3435":2690,"3436":2689,"3437":2689,"3438":2689,"3439":2688,"3440":2690,"3441":2689,"3442":2689,"3443":2688,"3444":2689,"3445":2689,"3446":2688,"3447":2689,"3448":2689,"3449":2688,"3450":2690,"3451":2688,"3452":2688,"3453":2689,"3454":2689,"3455":2689,"3456":2689,"3457":2689,"3458":2688,"3459":2689,"3460":2689,"3461":2690,"3462":2689,"3463":2690,"3464":2689,"3465":2688,"3466":2688,"3467":2689,"3468":2688,"3469":2689,"3470":2688,"3471":2689,"3472":2690,"3473":2688,"3474":2688,"3475":2689,"3476":2689,"3477":2690,"3478":2689,"3479":2688,"3480":2689,"3481":2690,"3482":2689,"3483":2690,"3484":2690,"3485":2688,"3486":2690,"3487":2688,"3488":2689,"3489":2690,"3490":2690,"3491":2689,"3492":2688,"3493":2689,"3494":2689,"3495":2690,"3496":2689,"3497":2688,"3498":2689,"3499":2690,"3500":2689,"3501":2689,"3502":2690,"3503":2690,"3504":2688,"3505":2689,"3506":2689,"3507":2689,"3508":2688,"3509":2689,"3510":2690,"3511":2690,"3512":2689,"3513":2688,"3514":2688,"3515":2690,"3516":2688,"3517":2689,"3518":2689,"3519":2689,"3520":2689,"3521":2690,"3522":2688,"3523":2689,"3524":2689,"3525":2689,"3526":2689,"3527":2688,"3528":2689,"3529":2689,"3530":2688,"3531":2690,"3532":2689,"3533":2689,"3534":2689,"3535":2689,"3536":2690,"3537":2688,"3538":2689,"3539":2690,"3540":2689,"3541":2690,"3542":2689,"3543":2690,"3544":2690,"3545":2688,"3546":2689,"3547":2689,"3548":2689,"3549":2688,"3550":2688,"3551":2689,"3552":2689,"3553":2690,"3554":2690,"3555":2689,"3556":2689,"3557":2690,"3558":2689,"3559":2690,"3560":2689,"3561":2688,"3562":2689,"3563":2690,"3564":2689,"3565":2690,"3566":2689,"3567":2688,"3568":2688,"3569":2689,"3570":2689,"3571":2689,"3572":2689,"3573":2688,"3574":2690,"3575":2688,"3576":2689,"3577":2689,"3578":2689,"3579":2689,"3580":2689,"3581":2690,"3582":2690,"3583":2689,"3584":2688,"3585":2688,"3586":2689,"3587":2689,"3588":2690,"3589":2689,"3590":2689,"3591":2689,"3592":2688,"3593":2690,"3594":2690,"3595":2690,"3596":2690,"3597":2690,"3598":2689,"3599":2689,"3600":2689,"3601":2688,"3602":2688,"3603":2688,"3604":2690,"3605":2688,"3606":2689,"3607":2689,"3608":2690,"3609":2689,"3610":2689,"3611":2689,"3612":2689,"3613":2688,"3614":2689,"3615":2688,"3616":2688,"3617":2689,"3618":2690,"3619":2690,"3620":2688,"3621":2689,"3622":2689,"3623":2690,"3624":2689,"3625":2689,"3626":2689,"3627":2690,"3628":2689,"3629":2688,"3630":2689,"3631":2689,"3632":2689,"3633":2690,"3634":2689,"3635":2689,"3636":2690,"3637":2689,"3638":2689,"3639":2690,"3640":2689,"3641":2689,"3642":2690,"3643":2689,"3644":2688,"3645":2688,"3646":2689,"3647":2688,"3648":2689,"3649":2689,"3650":2690,"3651":2689,"3652":2690,"3653":2690,"3654":2688,"3655":2689,"3656":2690,"3657":2689,"3658":2688,"3659":2689,"3660":2690,"3661":2690,"3662":2690,"3663":2689,"3664":2690,"3665":2689,"3666":2688,"3667":2689,"3668":2689,"3669":2690,"3670":2688,"3671":2690,"3672":2689,"3673":2688,"3674":2689,"3675":2688,"3676":2689,"3677":2689,"3678":2689,"3679":2689,"3680":2689,"3681":2689,"3682":2690,"3683":2688,"3684":2690,"3685":2690,"3686":2690,"3687":2690,"3688":2690,"3689":2688,"3690":2688,"3691":2688,"3692":2689,"3693":2690,"3694":2689,"3695":2689,"3696":2690,"3697":2688,"3698":2688,"3699":2689,"3700":2688,"3701":2689,"3702":2688,"3703":2688,"3704":2688,"3705":2689,"3706":2689,"3707":2690,"3708":2689,"3709":2689,"3710":2688,"3711":2689,"3712":2688,"3713":2688,"3714":2690,"3715":2690,"3716":2689,"3717":2689,"3718":2689,"3719":2689,"3720":2689,"3721":2689,"3722":2689,"3723":2689,"3724":2690,"3725":2688,"3726":2689,"3727":2688,"3728":2690,"3729":2690,"3730":2689,"3731":2689,"3732":2688,"3733":2689,"3734":2689,"3735":2690,"3736":2689,"3737":2689,"3738":2689,"3739":2690,"3740":2688,"3741":2688,"3742":2690,"3743":2690,"3744":2690,"3745":2690,"3746":2690,"3747":2688,"3748":2688,"3749":2690,"3750":2688,"3751":2688,"3752":2689,"3753":2689,"3754":2690,"3755":2688,"3756":2688,"3757":2690,"3758":2690,"3759":2690,"3760":2688,"3761":2688,"3762":2689,"3763":2689,"3764":2688,"3765":2690,"3766":2688,"3767":2689,"3768":2690,"3769":2689,"3770":2689,"3771":2688,"3772":2689,"3773":2688,"3774":2688,"3775":2690,"3776":2690,"3777":2688,"3778":2689,"3779":2690,"3780":2690,"3781":2689,"3782":2689,"3783":2689,"3784":2689,"3785":2690,"3786":2688,"3787":2688,"3788":2690,"3789":2689,"3790":2689,"3791":2689,"3792":2689,"3793":2688,"3794":2688,"3795":2689,"3796":2689,"3797":2689,"3798":2688,"3799":2688,"3800":2688,"3801":2689,"3802":2689,"3803":2689,"3804":2690,"3805":2688,"3806":2690,"3807":2688,"3808":2689,"3809":2690,"3810":2688,"3811":2688,"3812":2690,"3813":2688,"3814":2690,"3815":2690,"3816":2689,"3817":2689,"3818":2689,"3819":2689,"3820":2690,"3821":2690,"3822":2689,"3823":2689,"3824":2688,"3825":2689,"3826":2689,"3827":2690,"3828":2689,"3829":2688,"3830":2689,"3831":2688,"3832":2689,"3833":2689,"3834":2689,"3835":2689,"3836":2689,"3837":2689,"3838":2688,"3839":2689,"3840":2689,"3841":2690,"3842":2690,"3843":2689,"3844":2689,"3845":2689,"3846":2690,"3847":2690,"3848":2689,"3849":2690,"3850":2690,"3851":2689,"3852":2690,"3853":2689,"3854":2689,"3855":2689,"3856":2689,"3857":2688,"3858":2689,"3859":2689,"3860":2689,"3861":2689,"3862":2689,"3863":2690,"3864":2689,"3865":2689,"3866":2688,"3867":2688,"3868":2690,"3869":2688,"3870":2689,"3871":2688,"3872":2690,"3873":2688,"3874":2688,"3875":2689,"3876":2689,"3877":2690,"3878":2688,"3879":2689,"3880":2690,"3881":2689,"3882":2690,"3883":2689,"3884":2689,"3885":2688,"3886":2688,"3887":2688,"3888":2689,"3889":2689,"3890":2689,"3891":2688,"3892":2689,"3893":2689,"3894":2690,"3895":2690,"3896":2690,"3897":2688,"3898":2690,"3899":2690,"3900":2689,"3901":2688,"3902":2690,"3903":2688,"3904":2689,"3905":2688,"3906":2689,"3907":2689,"3908":2690,"3909":2689,"3910":2689,"3911":2689,"3912":2689,"3913":2689,"3914":2689,"3915":2689,"3916":2689,"3917":2689,"3918":2689,"3919":2688,"3920":2690,"3921":2689,"3922":2689,"3923":2688,"3924":2688,"3925":2690,"3926":2688,"3927":2690,"3928":2689,"3929":2688,"3930":2689,"3931":2689,"3932":2690,"3933":2689,"3934":2690,"3935":2690,"3936":2690,"3937":2689,"3938":2690,"3939":2688,"3940":2690,"3941":2689,"3942":2688,"3943":2689,"3944":2689,"3945":2690,"3946":2690,"3947":2688,"3948":2688,"3949":2690,"3950":2690,"3951":2689,"3952":2689,"3953":2690,"3954":2690,"3955":2690,"3956":2689,"3957":2689,"3958":2689,"3959":2688,"3960":2690,"3961":2689,"3962":2689,"3963":2690,"3964":2690,"3965":2690,"3966":2689,"3967":2689,"3968":2689,"3969":2688,"3970":2690,"3971":2688,"3972":2689,"3973":2689,"3974":2689,"3975":2689,"3976":2688,"3977":2689,"3978":2689,"3979":2689,"3980":2688,"3981":2688,"3982":2688,"3983":2689,"3984":2688,"3985":2689,"3986":2689,"3987":2689,"3988":2689,"3989":2689,"3990":2688,"3991":2689,"3992":2690,"3993":2689,"3994":2690,"3995":2690,"3996":2688,"3997":2688,"3998":2688,"3999":2689,"4000":2688,"4001":2689,"4002":2689,"4003":2688,"4004":2689,"4005":2689,"4006":2690,"4007":2688,"4008":2690,"4009":2689,"4010":2689,"4011":2688,"4012":2690,"4013":2688,"4014":2689,"4015":2689,"4016":2690,"4017":2688,"4018":2689,"4019":2688,"4020":2688,"4021":2690,"4022":2690,"4023":2689,"4024":2689,"4025":2688,"4026":2689,"4027":2690,"4028":2689,"4029":2689,"4030":2688,"4031":2688,"4032":2688,"4033":2688,"4034":2689,"4035":2689,"4036":2689,"4037":2689,"4038":2688,"4039":2688,"4040":2688,"4041":2690,"4042":2690,"4043":2689,"4044":2689,"4045":2688,"4046":2689,"4047":2688,"4048":2689,"4049":2689,"4050":2689,"4051":2690,"4052":2690,"4053":2689,"4054":2688,"4055":2688,"4056":2690,"4057":2688,"4058":2688,"4059":2690,"4060":2689,"4061":2690,"4062":2689,"4063":2689,"4064":2690,"4065":2688,"4066":2690,"4067":2689,"4068":2690,"4069":2688,"4070":2688,"4071":2690,"4072":2688,"4073":2689,"4074":2689,"4075":2689,"4076":2689,"4077":2689,"4078":2690,"4079":2689,"4080":2689,"4081":2690,"4082":2689,"4083":2688,"4084":2690,"4085":2688,"4086":2689,"4087":2689,"4088":2688,"4089":2689,"4090":2690,"4091":2689,"4092":2689,"4093":2689,"4094":2690,"4095":2690,"4096":2690,"4097":2688,"4098":2688,"4099":2688,"4100":2690,"4101":2690,"4102":2690,"4103":2690,"4104":2690,"4105":2689,"4106":2689,"4107":2690,"4108":2688,"4109":2690,"4110":2689,"4111":2690,"4112":2689,"4113":2688,"4114":2690,"4115":2689,"4116":2690,"4117":2689,"4118":2690,"4119":2690,"4120":2689,"4121":2689,"4122":2689,"4123":2688,"4124":2689,"4125":2690,"4126":2688,"4127":2690,"4128":2689,"4129":2688,"4130":2689,"4131":2689,"4132":2689,"4133":2689,"4134":2688,"4135":2690,"4136":2689,"4137":2689,"4138":2690,"4139":2689,"4140":2688,"4141":2689,"4142":2689,"4143":2690,"4144":2689,"4145":2689,"4146":2689,"4147":2688,"4148":2689,"4149":2689,"4150":2689,"4151":2690,"4152":2690,"4153":2689,"4154":2689,"4155":2689,"4156":2689,"4157":2690,"4158":2689,"4159":2689,"4160":2689,"4161":2689,"4162":2689,"4163":2689,"4164":2689,"4165":2689,"4166":2689,"4167":2689,"4168":2690,"4169":2690,"4170":2688,"4171":2688,"4172":2689,"4173":2689,"4174":2688,"4175":2689,"4176":2689,"4177":2688,"4178":2690,"4179":2690,"4180":2689,"4181":2690,"4182":2690,"4183":2690,"4184":2690,"4185":2688,"4186":2689,"4187":2689,"4188":2688,"4189":2688,"4190":2689,"4191":2689,"4192":2688,"4193":2689,"4194":2688,"4195":2689,"4196":2688,"4197":2690,"4198":2689,"4199":2689,"4200":2690,"4201":2689,"4202":2689,"4203":2689,"4204":2689,"4205":2689,"4206":2690,"4207":2689,"4208":2688,"4209":2690,"4210":2689,"4211":2688,"4212":2688,"4213":2688,"4214":2689,"4215":2689,"4216":2689,"4217":2690,"4218":2688,"4219":2688,"4220":2690,"4221":2689,"4222":2688,"4223":2690,"4224":2690,"4225":2689,"4226":2688,"4227":2688,"4228":2690,"4229":2688,"4230":2689,"4231":2689,"4232":2689,"4233":2688,"4234":2689,"4235":2689,"4236":2690,"4237":2689,"4238":2688,"4239":2690,"4240":2689,"4241":2689,"4242":2689,"4243":2688,"4244":2690,"4245":2690,"4246":2689,"4247":2689,"4248":2689,"4249":2688,"4250":2689,"4251":2689,"4252":2690,"4253":2689,"4254":2689,"4255":2689,"4256":2689,"4257":2690,"4258":2688,"4259":2688,"4260":2688,"4261":2688,"4262":2689,"4263":2689,"4264":2688,"4265":2690,"4266":2689,"4267":2689,"4268":2688,"4269":2688,"4270":2690,"4271":2690,"4272":2689,"4273":2690,"4274":2688,"4275":2689,"4276":2689,"4277":2688,"4278":2689,"4279":2689,"4280":2690,"4281":2689,"4282":2689,"4283":2688,"4284":2688,"4285":2690,"4286":2689,"4287":2688,"4288":2689,"4289":2688,"4290":2689,"4291":2690,"4292":2690,"4293":2690,"4294":2689,"4295":2689,"4296":2689,"4297":2690,"4298":2689,"4299":2690,"4300":2688,"4301":2688,"4302":2688,"4303":2689,"4304":2689,"4305":2689,"4306":2690,"4307":2688,"4308":2689,"4309":2689,"4310":2690,"4311":2688,"4312":2689,"4313":2690,"4314":2689,"4315":2688,"4316":2688,"4317":2689,"4318":2689,"4319":2689,"4320":2690,"4321":2689,"4322":2689,"4323":2689,"4324":2688,"4325":2690,"4326":2688,"4327":2689,"4328":2690,"4329":2688,"4330":2688,"4331":2689,"4332":2690,"4333":2688,"4334":2690,"4335":2688,"4336":2688,"4337":2690,"4338":2688,"4339":2689,"4340":2688,"4341":2688,"4342":2688,"4343":2689,"4344":2688,"4345":2688,"4346":2690,"4347":2689,"4348":2689,"4349":2689,"4350":2690,"4351":2690,"4352":2690,"4353":2688,"4354":2688,"4355":2689,"4356":2689,"4357":2690,"4358":2690,"4359":2690,"4360":2690,"4361":2689,"4362":2689,"4363":2690,"4364":2689,"4365":2690,"4366":2689,"4367":2688,"4368":2689,"4369":2689,"4370":2690,"4371":2689,"4372":2689,"4373":2688,"4374":2690,"4375":2688,"4376":2689,"4377":2690,"4378":2689,"4379":2689,"4380":2688,"4381":2689,"4382":2690,"4383":2690,"4384":2689,"4385":2689,"4386":2688,"4387":2689,"4388":2689,"4389":2689,"4390":2689,"4391":2689,"4392":2690,"4393":2689,"4394":2689,"4395":2690,"4396":2690,"4397":2688,"4398":2688,"4399":2688,"4400":2688,"4401":2689,"4402":2688,"4403":2690,"4404":2689,"4405":2690,"4406":2689,"4407":2688,"4408":2689,"4409":2690,"4410":2688,"4411":2688,"4412":2689,"4413":2690,"4414":2689,"4415":2690,"4416":2689,"4417":2688,"4418":2689,"4419":2688,"4420":2689,"4421":2689,"4422":2688,"4423":2689,"4424":2689,"4425":2689,"4426":2688,"4427":2689,"4428":2690,"4429":2688,"4430":2689,"4431":2689,"4432":2689,"4433":2690,"4434":2689,"4435":2689,"4436":2689,"4437":2690,"4438":2689,"4439":2689,"4440":2690,"4441":2689,"4442":2689,"4443":2688,"4444":2689,"4445":2689,"4446":2690,"4447":2690,"4448":2689,"4449":2689,"4450":2688,"4451":2690,"4452":2690,"4453":2689,"4454":2688,"4455":2689,"4456":2689,"4457":2690,"4458":2689,"4459":2688,"4460":2689,"4461":2690,"4462":2690,"4463":2688,"4464":2690,"4465":2689,"4466":2689,"4467":2689,"4468":2690,"4469":2689,"4470":2689,"4471":2689,"4472":2689,"4473":2689,"4474":2688,"4475":2689,"4476":2689,"4477":2688,"4478":2689,"4479":2690,"4480":2689,"4481":2689,"4482":2688,"4483":2690,"4484":2690,"4485":2689,"4486":2689,"4487":2688,"4488":2690,"4489":2688,"4490":2690,"4491":2690,"4492":2689,"4493":2689,"4494":2690,"4495":2689,"4496":2689,"4497":2689,"4498":2689,"4499":2689,"4500":2689,"4501":2689,"4502":2689,"4503":2688,"4504":2689,"4505":2688,"4506":2689,"4507":2690,"4508":2689,"4509":2689,"4510":2690,"4511":2688,"4512":2690,"4513":2688,"4514":2689,"4515":2689,"4516":2689,"4517":2689,"4518":2689,"4519":2689,"4520":2690,"4521":2689,"4522":2690,"4523":2689,"4524":2689,"4525":2689,"4526":2689,"4527":2688,"4528":2690,"4529":2689,"4530":2689,"4531":2690,"4532":2690,"4533":2689,"4534":2689,"4535":2690,"4536":2690,"4537":2689,"4538":2689,"4539":2688,"4540":2689,"4541":2690,"4542":2689,"4543":2689,"4544":2689,"4545":2690,"4546":2689,"4547":2688,"4548":2688,"4549":2689,"4550":2689,"4551":2689,"4552":2689,"4553":2690,"4554":2688,"4555":2690,"4556":2690,"4557":2689,"4558":2689,"4559":2689,"4560":2689,"4561":2690,"4562":2690,"4563":2689,"4564":2690,"4565":2689,"4566":2689,"4567":2689,"4568":2689,"4569":2689,"4570":2690,"4571":2689,"4572":2690,"4573":2689,"4574":2689,"4575":2690,"4576":2688,"4577":2689,"4578":2689,"4579":2688,"4580":2688,"4581":2690,"4582":2689,"4583":2689,"4584":2688,"4585":2689,"4586":2689,"4587":2689,"4588":2689,"4589":2689,"4590":2690,"4591":2690,"4592":2689,"4593":2690,"4594":2689,"4595":2690,"4596":2690,"4597":2689,"4598":2690,"4599":2689,"4600":2689,"4601":2689,"4602":2689,"4603":2690,"4604":2689,"4605":2689,"4606":2690,"4607":2689,"4608":2688,"4609":2689,"4610":2689,"4611":2688,"4612":2690,"4613":2689,"4614":2688,"4615":2689,"4616":2689,"4617":2690,"4618":2688,"4619":2689,"4620":2689,"4621":2690,"4622":2689,"4623":2689,"4624":2690,"4625":2689,"4626":2688,"4627":2689,"4628":2688,"4629":2689,"4630":2689,"4631":2688,"4632":2688,"4633":2690,"4634":2688,"4635":2690,"4636":2689,"4637":2690,"4638":2689,"4639":2688,"4640":2689,"4641":2688,"4642":2689,"4643":2689,"4644":2689,"4645":2689,"4646":2689,"4647":2688,"4648":2689,"4649":2689,"4650":2689,"4651":2690,"4652":2689,"4653":2690,"4654":2689,"4655":2689,"4656":2689,"4657":2689,"4658":2688,"4659":2688,"4660":2689,"4661":2690,"4662":2688,"4663":2689,"4664":2689,"4665":2689,"4666":2689,"4667":2689,"4668":2690,"4669":2690,"4670":2690,"4671":2688,"4672":2689,"4673":2689,"4674":2690,"4675":2689,"4676":2690,"4677":2688,"4678":2690,"4679":2690,"4680":2689,"4681":2689,"4682":2690,"4683":2689,"4684":2688,"4685":2690,"4686":2689,"4687":2690,"4688":2690,"4689":2689,"4690":2690,"4691":2690,"4692":2690,"4693":2688,"4694":2689,"4695":2689,"4696":2689,"4697":2690,"4698":2688,"4699":2689,"4700":2690,"4701":2690,"4702":2689,"4703":2689,"4704":2689,"4705":2689,"4706":2688,"4707":2690,"4708":2689,"4709":2689,"4710":2690,"4711":2689,"4712":2689,"4713":2690,"4714":2689,"4715":2689,"4716":2690,"4717":2689,"4718":2688,"4719":2688,"4720":2689,"4721":2688,"4722":2689,"4723":2690,"4724":2688,"4725":2689,"4726":2690,"4727":2690,"4728":2690,"4729":2690,"4730":2690,"4731":2689,"4732":2689,"4733":2689,"4734":2690,"4735":2689,"4736":2688,"4737":2690,"4738":2688,"4739":2689,"4740":2689,"4741":2689,"4742":2690,"4743":2689,"4744":2689,"4745":2688,"4746":2689,"4747":2689,"4748":2689,"4749":2689,"4750":2688,"4751":2690,"4752":2689,"4753":2690,"4754":2689,"4755":2688,"4756":2689,"4757":2689,"4758":2689,"4759":2690,"4760":2690,"4761":2689,"4762":2688,"4763":2689,"4764":2689,"4765":2689,"4766":2690,"4767":2689,"4768":2690,"4769":2689,"4770":2688,"4771":2689,"4772":2689,"4773":2688,"4774":2689,"4775":2689,"4776":2688,"4777":2688,"4778":2689,"4779":2688,"4780":2689,"4781":2690,"4782":2688,"4783":2689,"4784":2690,"4785":2689,"4786":2690,"4787":2688,"4788":2689,"4789":2690,"4790":2688,"4791":2689,"4792":2690,"4793":2690,"4794":2689,"4795":2688,"4796":2689,"4797":2689,"4798":2689,"4799":2688,"4800":2690,"4801":2689,"4802":2689,"4803":2688,"4804":2690,"4805":2690,"4806":2689,"4807":2689,"4808":2690,"4809":2690,"4810":2690,"4811":2690,"4812":2690,"4813":2689,"4814":2689,"4815":2689,"4816":2690,"4817":2689,"4818":2689,"4819":2689,"4820":2690,"4821":2689,"4822":2690,"4823":2688,"4824":2690,"4825":2690,"4826":2689,"4827":2689,"4828":2689,"4829":2689,"4830":2688,"4831":2689,"4832":2688,"4833":2690,"4834":2689,"4835":2689,"4836":2689,"4837":2689,"4838":2690,"4839":2688,"4840":2689,"4841":2689,"4842":2688,"4843":2689,"4844":2690,"4845":2689,"4846":2690,"4847":2689,"4848":2688,"4849":2689,"4850":2688,"4851":2688,"4852":2689,"4853":2689,"4854":2689,"4855":2688,"4856":2688,"4857":2690,"4858":2688,"4859":2690,"4860":2689,"4861":2689,"4862":2689,"4863":2689,"4864":2689,"4865":2690,"4866":2690,"4867":2689,"4868":2690,"4869":2690,"4870":2689,"4871":2689,"4872":2689,"4873":2690,"4874":2689,"4875":2690,"4876":2690,"4877":2689,"4878":2690,"4879":2689,"4880":2689,"4881":2689,"4882":2689,"4883":2688,"4884":2689,"4885":2690,"4886":2689,"4887":2690,"4888":2688,"4889":2689,"4890":2689,"4891":2689,"4892":2689,"4893":2690,"4894":2689,"4895":2689,"4896":2689,"4897":2689,"4898":2690,"4899":2688,"4900":2689,"4901":2689,"4902":2688,"4903":2689,"4904":2690,"4905":2689,"4906":2689,"4907":2689,"4908":2689,"4909":2690,"4910":2689,"4911":2689,"4912":2688,"4913":2689,"4914":2689,"4915":2689,"4916":2689,"4917":2689,"4918":2689,"4919":2690,"4920":2689,"4921":2688,"4922":2689,"4923":2689,"4924":2689,"4925":2689,"4926":2688,"4927":2690,"4928":2689,"4929":2689,"4930":2689,"4931":2689,"4932":2688,"4933":2690,"4934":2688,"4935":2689,"4936":2689,"4937":2689,"4938":2688,"4939":2689,"4940":2689,"4941":2689,"4942":2690,"4943":2689,"4944":2690,"4945":2689,"4946":2688,"4947":2690,"4948":2689,"4949":2689,"4950":2689,"4951":2690,"4952":2689,"4953":2688,"4954":2689,"4955":2689,"4956":2690,"4957":2690,"4958":2690,"4959":2689,"4960":2689,"4961":2689,"4962":2690,"4963":2690,"4964":2689,"4965":2688,"4966":2689,"4967":2689,"4968":2690,"4969":2690,"4970":2688,"4971":2689,"4972":2688,"4973":2690,"4974":2689,"4975":2688,"4976":2689,"4977":2689,"4978":2688,"4979":2690,"4980":2688,"4981":2690,"4982":2690,"4983":2689,"4984":2689,"4985":2690,"4986":2689,"4987":2688,"4988":2688,"4989":2689,"4990":2689,"4991":2690,"4992":2688,"4993":2690,"4994":2689,"4995":2689,"4996":2688,"4997":2688,"4998":2688,"4999":2690,"5000":2690,"5001":2689,"5002":2689,"5003":2689,"5004":2690,"5005":2690,"5006":2689,"5007":2689,"5008":2690,"5009":2690,"5010":2688,"5011":2688,"5012":2690,"5013":2689,"5014":2689,"5015":2689,"5016":2689,"5017":2689,"5018":2690,"5019":2689,"5020":2689,"5021":2688,"5022":2689,"5023":2688,"5024":2689,"5025":2690,"5026":2689,"5027":2690,"5028":2688,"5029":2689,"5030":2689,"5031":2689,"5032":2689,"5033":2688,"5034":2688,"5035":2688,"5036":2690,"5037":2689,"5038":2688,"5039":2689,"5040":2689,"5041":2690,"5042":2689,"5043":2688,"5044":2689,"5045":2689,"5046":2690,"5047":2689,"5048":2689,"5049":2690,"5050":2689,"5051":2689,"5052":2690,"5053":2689,"5054":2688,"5055":2689,"5056":2689,"5057":2688,"5058":2690,"5059":2689,"5060":2689,"5061":2688,"5062":2689,"5063":2689,"5064":2690,"5065":2690,"5066":2689,"5067":2689,"5068":2688,"5069":2689,"5070":2689,"5071":2689,"5072":2688,"5073":2690,"5074":2688,"5075":2688,"5076":2689,"5077":2688,"5078":2689,"5079":2689,"5080":2689,"5081":2688,"5082":2690,"5083":2689,"5084":2689,"5085":2690,"5086":2689,"5087":2689,"5088":2689,"5089":2688,"5090":2689,"5091":2688,"5092":2689,"5093":2689,"5094":2689,"5095":2688,"5096":2688,"5097":2690,"5098":2689,"5099":2689,"5100":2688,"5101":2689,"5102":2689,"5103":2689,"5104":2688,"5105":2689,"5106":2690,"5107":2690,"5108":2689,"5109":2688,"5110":2689,"5111":2688,"5112":2690,"5113":2688,"5114":2689,"5115":2689,"5116":2689,"5117":2689,"5118":2689,"5119":2689,"5120":2688,"5121":2689,"5122":2690,"5123":2690,"5124":2688,"5125":2689,"5126":2690,"5127":2689,"5128":2690,"5129":2690,"5130":2690,"5131":2690,"5132":2689,"5133":2689,"5134":2689,"5135":2689,"5136":2688,"5137":2689,"5138":2689,"5139":2688,"5140":2690,"5141":2690,"5142":2689,"5143":2688,"5144":2688,"5145":2690,"5146":2688,"5147":2689,"5148":2689,"5149":2689,"5150":2689,"5151":2689,"5152":2689,"5153":2690,"5154":2688,"5155":2690,"5156":2689,"5157":2688,"5158":2689,"5159":2690,"5160":2690,"5161":2689,"5162":2689,"5163":2690,"5164":2689,"5165":2690,"5166":2689,"5167":2690,"5168":2690,"5169":2690,"5170":2689,"5171":2688,"5172":2689,"5173":2689,"5174":2690,"5175":2688,"5176":2689,"5177":2689,"5178":2690,"5179":2689,"5180":2689,"5181":2689,"5182":2689,"5183":2690,"5184":2690,"5185":2689,"5186":2688,"5187":2689,"5188":2689,"5189":2689,"5190":2688,"5191":2689,"5192":2688,"5193":2688,"5194":2688,"5195":2688,"5196":2689,"5197":2689,"5198":2689,"5199":2688,"5200":2689,"5201":2689,"5202":2688,"5203":2689,"5204":2689,"5205":2690,"5206":2690,"5207":2689,"5208":2689,"5209":2688,"5210":2688,"5211":2689,"5212":2688,"5213":2689,"5214":2689,"5215":2690,"5216":2690,"5217":2689,"5218":2688,"5219":2689,"5220":2689,"5221":2690,"5222":2689,"5223":2690,"5224":2689,"5225":2689,"5226":2689,"5227":2689,"5228":2690,"5229":2688,"5230":2689,"5231":2689,"5232":2688,"5233":2688,"5234":2690,"5235":2688,"5236":2689,"5237":2689,"5238":2690,"5239":2690,"5240":2689,"5241":2688,"5242":2689,"5243":2690,"5244":2688,"5245":2689,"5246":2688,"5247":2690,"5248":2689,"5249":2688,"5250":2689,"5251":2689,"5252":2688,"5253":2688,"5254":2689,"5255":2689,"5256":2690,"5257":2690,"5258":2689,"5259":2689,"5260":2689,"5261":2689,"5262":2688,"5263":2688,"5264":2689,"5265":2690,"5266":2689,"5267":2689,"5268":2690,"5269":2689,"5270":2690,"5271":2689,"5272":2688,"5273":2690,"5274":2688,"5275":2690,"5276":2690,"5277":2689,"5278":2689,"5279":2690,"5280":2689,"5281":2689,"5282":2688,"5283":2689,"5284":2689,"5285":2688,"5286":2689,"5287":2689,"5288":2689,"5289":2690,"5290":2689,"5291":2689,"5292":2689,"5293":2688,"5294":2689,"5295":2688,"5296":2689,"5297":2688,"5298":2690,"5299":2688,"5300":2690,"5301":2688,"5302":2688,"5303":2688,"5304":2689,"5305":2689,"5306":2689,"5307":2689,"5308":2689,"5309":2689,"5310":2690,"5311":2688,"5312":2690,"5313":2690,"5314":2689,"5315":2688,"5316":2690,"5317":2689,"5318":2689,"5319":2689,"5320":2688,"5321":2688,"5322":2690,"5323":2689,"5324":2689,"5325":2689,"5326":2689,"5327":2689,"5328":2690,"5329":2688,"5330":2689,"5331":2690,"5332":2689,"5333":2689,"5334":2689,"5335":2690,"5336":2689,"5337":2690,"5338":2688,"5339":2689,"5340":2690,"5341":2690,"5342":2689,"5343":2690,"5344":2688,"5345":2690,"5346":2688,"5347":2690,"5348":2689,"5349":2689,"5350":2688,"5351":2689,"5352":2689,"5353":2689,"5354":2688,"5355":2688,"5356":2690,"5357":2690,"5358":2689,"5359":2689,"5360":2689,"5361":2689,"5362":2689,"5363":2689,"5364":2689,"5365":2689,"5366":2689,"5367":2689,"5368":2688,"5369":2689,"5370":2689,"5371":2689,"5372":2689,"5373":2689,"5374":2689,"5375":2688,"5376":2690,"5377":2688,"5378":2689,"5379":2690,"5380":2690,"5381":2690,"5382":2689,"5383":2689,"5384":2689,"5385":2690,"5386":2689,"5387":2688,"5388":2689,"5389":2689,"5390":2688,"5391":2689,"5392":2689,"5393":2688,"5394":2689,"5395":2689,"5396":2688,"5397":2690,"5398":2689,"5399":2689,"5400":2689,"5401":2689,"5402":2689,"5403":2689,"5404":2688,"5405":2690,"5406":2689,"5407":2690,"5408":2688,"5409":2688,"5410":2689,"5411":2689,"5412":2689,"5413":2689,"5414":2690,"5415":2690,"5416":2689,"5417":2689,"5418":2690,"5419":2688,"5420":2688,"5421":2688,"5422":2690,"5423":2689,"5424":2690,"5425":2690,"5426":2689,"5427":2689,"5428":2690,"5429":2689,"5430":2690,"5431":2690,"5432":2689,"5433":2689,"5434":2688,"5435":2689,"5436":2689,"5437":2689,"5438":2688,"5439":2689,"5440":2689,"5441":2689,"5442":2689,"5443":2688,"5444":2689,"5445":2690,"5446":2689,"5447":2689,"5448":2689,"5449":2690,"5450":2689,"5451":2689,"5452":2688,"5453":2689,"5454":2689,"5455":2688,"5456":2688,"5457":2690,"5458":2690,"5459":2688,"5460":2690,"5461":2688,"5462":2688,"5463":2689,"5464":2690,"5465":2689,"5466":2689,"5467":2689,"5468":2689,"5469":2689,"5470":2689,"5471":2689,"5472":2690,"5473":2690,"5474":2689,"5475":2690,"5476":2690,"5477":2690,"5478":2689,"5479":2689,"5480":2690,"5481":2689,"5482":2689,"5483":2690,"5484":2690,"5485":2689,"5486":2689,"5487":2689,"5488":2689,"5489":2689,"5490":2690,"5491":2689,"5492":2688,"5493":2689,"5494":2690,"5495":2689,"5496":2688,"5497":2688,"5498":2690,"5499":2688,"5500":2690,"5501":2690,"5502":2688,"5503":2689,"5504":2689,"5505":2689,"5506":2689,"5507":2689,"5508":2689,"5509":2689,"5510":2688,"5511":2689,"5512":2688,"5513":2688,"5514":2689,"5515":2688,"5516":2688,"5517":2689,"5518":2689,"5519":2688,"5520":2688,"5521":2690,"5522":2689,"5523":2689,"5524":2688,"5525":2688,"5526":2690,"5527":2689,"5528":2690,"5529":2690,"5530":2688,"5531":2688,"5532":2688,"5533":2689,"5534":2690,"5535":2688,"5536":2689,"5537":2689,"5538":2689,"5539":2688,"5540":2689,"5541":2689,"5542":2690,"5543":2689,"5544":2688,"5545":2688,"5546":2689,"5547":2690,"5548":2689,"5549":2690,"5550":2690,"5551":2689,"5552":2689,"5553":2689,"5554":2688,"5555":2690,"5556":2690,"5557":2688,"5558":2689,"5559":2690,"5560":2689,"5561":2690,"5562":2690,"5563":2689,"5564":2688,"5565":2690,"5566":2689,"5567":2689,"5568":2690,"5569":2689,"5570":2689,"5571":2688,"5572":2690,"5573":2690,"5574":2689,"5575":2688,"5576":2690,"5577":2690,"5578":2690,"5579":2689,"5580":2689,"5581":2689,"5582":2690,"5583":2690,"5584":2690,"5585":2689,"5586":2690,"5587":2688,"5588":2689,"5589":2690,"5590":2690,"5591":2689,"5592":2689,"5593":2690,"5594":2689,"5595":2689,"5596":2688,"5597":2690,"5598":2688,"5599":2690,"5600":2689,"5601":2688,"5602":2689,"5603":2690,"5604":2690,"5605":2689,"5606":2689,"5607":2690,"5608":2688,"5609":2688,"5610":2689,"5611":2689,"5612":2689,"5613":2688,"5614":2690,"5615":2689,"5616":2689,"5617":2688,"5618":2688,"5619":2690,"5620":2689,"5621":2690,"5622":2690,"5623":2689,"5624":2689,"5625":2688,"5626":2690,"5627":2689,"5628":2688,"5629":2689,"5630":2689,"5631":2688,"5632":2689,"5633":2690,"5634":2688,"5635":2689,"5636":2690,"5637":2690,"5638":2689,"5639":2689,"5640":2688,"5641":2688,"5642":2688,"5643":2689,"5644":2690,"5645":2688,"5646":2690,"5647":2689,"5648":2690,"5649":2690,"5650":2689,"5651":2689,"5652":2688,"5653":2690,"5654":2690,"5655":2689,"5656":2689,"5657":2689,"5658":2689,"5659":2689,"5660":2690,"5661":2690,"5662":2689,"5663":2688,"5664":2689,"5665":2688,"5666":2688,"5667":2689,"5668":2688,"5669":2690,"5670":2689,"5671":2689,"5672":2689,"5673":2688,"5674":2689,"5675":2689,"5676":2689,"5677":2690,"5678":2689,"5679":2689,"5680":2690,"5681":2689,"5682":2690,"5683":2689,"5684":2689,"5685":2689,"5686":2688,"5687":2690,"5688":2690,"5689":2689,"5690":2690,"5691":2689,"5692":2690,"5693":2689,"5694":2688,"5695":2689,"5696":2690,"5697":2688,"5698":2689,"5699":2688,"5700":2689,"5701":2690,"5702":2689,"5703":2689,"5704":2690,"5705":2690,"5706":2688,"5707":2690,"5708":2688,"5709":2688,"5710":2688,"5711":2690,"5712":2689,"5713":2688,"5714":2688,"5715":2689,"5716":2689,"5717":2689,"5718":2690,"5719":2688,"5720":2689,"5721":2688,"5722":2688,"5723":2689,"5724":2689,"5725":2689,"5726":2689,"5727":2690,"5728":2690,"5729":2689,"5730":2689,"5731":2690,"5732":2689,"5733":2690,"5734":2689,"5735":2689,"5736":2689,"5737":2688,"5738":2689,"5739":2689,"5740":2688,"5741":2689,"5742":2690,"5743":2689,"5744":2688,"5745":2689,"5746":2688,"5747":2690,"5748":2690,"5749":2690,"5750":2688,"5751":2689,"5752":2689,"5753":2689,"5754":2689,"5755":2690,"5756":2688,"5757":2688,"5758":2689,"5759":2690,"5760":2690,"5761":2689,"5762":2689,"5763":2689,"5764":2689,"5765":2690,"5766":2689,"5767":2689,"5768":2688,"5769":2689,"5770":2688,"5771":2689,"5772":2689,"5773":2690,"5774":2690,"5775":2690,"5776":2690,"5777":2688,"5778":2689,"5779":2688,"5780":2689,"5781":2689,"5782":2690,"5783":2689,"5784":2690,"5785":2689,"5786":2689,"5787":2690,"5788":2688,"5789":2690,"5790":2690,"5791":2689,"5792":2690,"5793":2688,"5794":2689,"5795":2690,"5796":2690,"5797":2690,"5798":2690,"5799":2689,"5800":2689,"5801":2688,"5802":2689,"5803":2688,"5804":2690,"5805":2689,"5806":2688,"5807":2689,"5808":2689,"5809":2688,"5810":2688,"5811":2688,"5812":2690,"5813":2690,"5814":2690,"5815":2689,"5816":2688,"5817":2689,"5818":2688,"5819":2689,"5820":2690,"5821":2689,"5822":2688,"5823":2689,"5824":2690,"5825":2688,"5826":2689,"5827":2688,"5828":2690,"5829":2690,"5830":2688,"5831":2689,"5832":2689,"5833":2689,"5834":2689,"5835":2689,"5836":2688,"5837":2689,"5838":2689,"5839":2688,"5840":2688,"5841":2690,"5842":2690,"5843":2689,"5844":2689,"5845":2688,"5846":2690,"5847":2688,"5848":2688,"5849":2689,"5850":2690,"5851":2690,"5852":2688,"5853":2689,"5854":2689,"5855":2688,"5856":2689,"5857":2688,"5858":2689,"5859":2689,"5860":2689,"5861":2690,"5862":2689,"5863":2689,"5864":2689,"5865":2689,"5866":2689,"5867":2690,"5868":2688,"5869":2689,"5870":2688,"5871":2688,"5872":2690,"5873":2690,"5874":2689,"5875":2689,"5876":2689,"5877":2690,"5878":2690,"5879":2688,"5880":2688,"5881":2690,"5882":2690,"5883":2689,"5884":2690,"5885":2689,"5886":2688,"5887":2689,"5888":2689,"5889":2690,"5890":2690,"5891":2689,"5892":2689,"5893":2690,"5894":2688,"5895":2688,"5896":2689,"5897":2690,"5898":2690,"5899":2688,"5900":2689,"5901":2688,"5902":2689,"5903":2688,"5904":2690,"5905":2690,"5906":2688,"5907":2688,"5908":2688,"5909":2689,"5910":2688,"5911":2688,"5912":2688,"5913":2688,"5914":2690,"5915":2690,"5916":2690,"5917":2689,"5918":2689,"5919":2689,"5920":2689,"5921":2689,"5922":2690,"5923":2689,"5924":2688,"5925":2689,"5926":2689,"5927":2689,"5928":2688,"5929":2689,"5930":2689,"5931":2688,"5932":2688,"5933":2689,"5934":2689,"5935":2689,"5936":2689,"5937":2690,"5938":2689,"5939":2690,"5940":2688,"5941":2690,"5942":2690,"5943":2690,"5944":2689,"5945":2689,"5946":2688,"5947":2690,"5948":2689,"5949":2690,"5950":2689,"5951":2689,"5952":2688,"5953":2690,"5954":2690,"5955":2688,"5956":2689,"5957":2689,"5958":2689,"5959":2689,"5960":2690,"5961":2688,"5962":2689,"5963":2688,"5964":2689,"5965":2689,"5966":2688,"5967":2689,"5968":2689,"5969":2690,"5970":2690,"5971":2689,"5972":2689,"5973":2689,"5974":2689,"5975":2689,"5976":2688,"5977":2689,"5978":2690,"5979":2690,"5980":2689,"5981":2689,"5982":2690,"5983":2688,"5984":2688,"5985":2690,"5986":2689,"5987":2690,"5988":2688,"5989":2689,"5990":2689,"5991":2689,"5992":2690,"5993":2690,"5994":2689,"5995":2688,"5996":2689,"5997":2688,"5998":2688,"5999":2688,"6000":2690,"6001":2689,"6002":2689,"6003":2689,"6004":2689,"6005":2689,"6006":2689,"6007":2688,"6008":2688,"6009":2689,"6010":2689,"6011":2688,"6012":2688,"6013":2689,"6014":2688,"6015":2689,"6016":2690,"6017":2689,"6018":2689,"6019":2688,"6020":2689,"6021":2689,"6022":2689,"6023":2690,"6024":2689,"6025":2689,"6026":2688,"6027":2689,"6028":2690,"6029":2688,"6030":2689,"6031":2689,"6032":2690,"6033":2690,"6034":2689,"6035":2690,"6036":2688,"6037":2690,"6038":2690,"6039":2688,"6040":2688,"6041":2689,"6042":2689,"6043":2689,"6044":2688,"6045":2690,"6046":2688,"6047":2690,"6048":2689,"6049":2689,"6050":2689,"6051":2690,"6052":2688,"6053":2689,"6054":2689,"6055":2688,"6056":2690,"6057":2689,"6058":2689,"6059":2689,"6060":2688,"6061":2689,"6062":2688,"6063":2689,"6064":2689,"6065":2689,"6066":2688,"6067":2689,"6068":2690,"6069":2689,"6070":2689,"6071":2689,"6072":2689,"6073":2688,"6074":2689,"6075":2689,"6076":2688,"6077":2689,"6078":2688,"6079":2688,"6080":2689,"6081":2690,"6082":2689,"6083":2690,"6084":2688,"6085":2690,"6086":2690,"6087":2689,"6088":2690,"6089":2689,"6090":2688,"6091":2689,"6092":2689,"6093":2688,"6094":2689,"6095":2689,"6096":2690,"6097":2689,"6098":2689,"6099":2690,"6100":2689,"6101":2689,"6102":2688,"6103":2689,"6104":2689,"6105":2690,"6106":2688,"6107":2689,"6108":2689,"6109":2690,"6110":2689,"6111":2689,"6112":2688,"6113":2690,"6114":2690,"6115":2690,"6116":2688,"6117":2690,"6118":2689,"6119":2689,"6120":2688,"6121":2690,"6122":2689,"6123":2690,"6124":2689,"6125":2689,"6126":2690,"6127":2690,"6128":2689,"6129":2688,"6130":2689,"6131":2690,"6132":2688,"6133":2689,"6134":2688,"6135":2689,"6136":2689,"6137":2689,"6138":2688,"6139":2689,"6140":2689,"6141":2688,"6142":2689,"6143":2690,"6144":2688,"6145":2689,"6146":2689,"6147":2689,"6148":2689,"6149":2689,"6150":2689,"6151":2690,"6152":2690,"6153":2690,"6154":2689,"6155":2689,"6156":2689,"6157":2690,"6158":2689,"6159":2689,"6160":2689,"6161":2688,"6162":2690,"6163":2688,"6164":2688,"6165":2690,"6166":2688,"6167":2690,"6168":2689,"6169":2690,"6170":2690,"6171":2688,"6172":2689,"6173":2688,"6174":2689,"6175":2689,"6176":2690,"6177":2689,"6178":2689,"6179":2690,"6180":2690,"6181":2690,"6182":2688,"6183":2689,"6184":2688,"6185":2689,"6186":2690,"6187":2690,"6188":2689,"6189":2689,"6190":2689,"6191":2690,"6192":2689,"6193":2688,"6194":2690,"6195":2688,"6196":2688,"6197":2689,"6198":2690,"6199":2688,"6200":2690,"6201":2689,"6202":2689,"6203":2689,"6204":2689,"6205":2688,"6206":2690,"6207":2688,"6208":2690,"6209":2688,"6210":2688,"6211":2689,"6212":2689,"6213":2689,"6214":2690,"6215":2688,"6216":2689,"6217":2690,"6218":2690,"6219":2688,"6220":2689,"6221":2689,"6222":2688,"6223":2689,"6224":2689,"6225":2690,"6226":2689,"6227":2688,"6228":2689,"6229":2688,"6230":2689,"6231":2689,"6232":2689,"6233":2690,"6234":2689,"6235":2688,"6236":2689,"6237":2689,"6238":2689,"6239":2689,"6240":2690,"6241":2689,"6242":2689,"6243":2689,"6244":2689,"6245":2689,"6246":2689,"6247":2689,"6248":2689,"6249":2688,"6250":2690,"6251":2689,"6252":2690,"6253":2689,"6254":2688,"6255":2688,"6256":2689,"6257":2689,"6258":2689,"6259":2688,"6260":2689,"6261":2688,"6262":2688,"6263":2689,"6264":2688,"6265":2689,"6266":2689,"6267":2688,"6268":2690,"6269":2690,"6270":2688,"6271":2689,"6272":2689,"6273":2689,"6274":2690,"6275":2689,"6276":2689,"6277":2689,"6278":2688,"6279":2689,"6280":2688,"6281":2690,"6282":2689,"6283":2689,"6284":2688,"6285":2690,"6286":2690,"6287":2690,"6288":2688,"6289":2689,"6290":2689,"6291":2689,"6292":2689,"6293":2689,"6294":2689,"6295":2688,"6296":2690,"6297":2690,"6298":2688,"6299":2690,"6300":2689,"6301":2689,"6302":2688,"6303":2689,"6304":2689,"6305":2688,"6306":2690,"6307":2688,"6308":2688,"6309":2688,"6310":2689,"6311":2689,"6312":2689,"6313":2688,"6314":2689,"6315":2688,"6316":2689,"6317":2689,"6318":2689,"6319":2690,"6320":2690,"6321":2689,"6322":2688,"6323":2688,"6324":2690,"6325":2689,"6326":2689,"6327":2689,"6328":2688,"6329":2689,"6330":2689,"6331":2689,"6332":2688,"6333":2688,"6334":2689,"6335":2688,"6336":2688,"6337":2689,"6338":2690,"6339":2689,"6340":2690,"6341":2689,"6342":2689,"6343":2690,"6344":2690,"6345":2690,"6346":2689,"6347":2688,"6348":2689,"6349":2690,"6350":2689,"6351":2689,"6352":2689,"6353":2689,"6354":2690,"6355":2688,"6356":2689,"6357":2690,"6358":2688,"6359":2688,"6360":2690,"6361":2689,"6362":2689,"6363":2690,"6364":2690,"6365":2689,"6366":2689,"6367":2689,"6368":2690,"6369":2689,"6370":2689,"6371":2690,"6372":2690,"6373":2689,"6374":2690,"6375":2689,"6376":2689,"6377":2690,"6378":2689,"6379":2690,"6380":2690,"6381":2688,"6382":2689,"6383":2688,"6384":2689,"6385":2689,"6386":2689,"6387":2689,"6388":2690,"6389":2689,"6390":2690,"6391":2689,"6392":2689,"6393":2688,"6394":2688,"6395":2690,"6396":2690,"6397":2689,"6398":2689,"6399":2688,"6400":2689,"6401":2688,"6402":2689,"6403":2689,"6404":2690,"6405":2689,"6406":2690,"6407":2689,"6408":2689,"6409":2688,"6410":2688,"6411":2689,"6412":2690,"6413":2689,"6414":2689,"6415":2689,"6416":2690,"6417":2688,"6418":2689,"6419":2690,"6420":2688,"6421":2689,"6422":2689,"6423":2690,"6424":2690,"6425":2690,"6426":2690,"6427":2688,"6428":2689,"6429":2688,"6430":2688,"6431":2689,"6432":2689,"6433":2689,"6434":2690,"6435":2689,"6436":2689,"6437":2689,"6438":2688,"6439":2690,"6440":2689,"6441":2690,"6442":2688,"6443":2689,"6444":2690,"6445":2689,"6446":2690,"6447":2690,"6448":2689,"6449":2690,"6450":2689,"6451":2689,"6452":2689,"6453":2689,"6454":2689,"6455":2689,"6456":2689,"6457":2688,"6458":2689,"6459":2688,"6460":2689,"6461":2688,"6462":2688,"6463":2688,"6464":2688,"6465":2688,"6466":2690,"6467":2689,"6468":2689,"6469":2688,"6470":2688,"6471":2688,"6472":2688,"6473":2689,"6474":2690,"6475":2688,"6476":2689,"6477":2689,"6478":2689,"6479":2690,"6480":2690,"6481":2690,"6482":2689,"6483":2690,"6484":2689,"6485":2689,"6486":2689,"6487":2689,"6488":2689,"6489":2689,"6490":2689,"6491":2690,"6492":2688,"6493":2689,"6494":2688,"6495":2690,"6496":2689,"6497":2689,"6498":2690,"6499":2688,"6500":2690,"6501":2689,"6502":2688,"6503":2689,"6504":2690,"6505":2688,"6506":2688,"6507":2690,"6508":2690,"6509":2689,"6510":2689,"6511":2690,"6512":2688,"6513":2689,"6514":2689,"6515":2690,"6516":2688,"6517":2690,"6518":2689,"6519":2690,"6520":2688,"6521":2689,"6522":2688,"6523":2689,"6524":2688,"6525":2688,"6526":2689,"6527":2689,"6528":2689,"6529":2690,"6530":2689,"6531":2690,"6532":2690,"6533":2689,"6534":2689,"6535":2688,"6536":2690,"6537":2690,"6538":2689,"6539":2688,"6540":2688,"6541":2690,"6542":2689,"6543":2690,"6544":2690,"6545":2689,"6546":2688,"6547":2689,"6548":2688,"6549":2690,"6550":2689,"6551":2689,"6552":2690,"6553":2690,"6554":2689,"6555":2688,"6556":2688,"6557":2689,"6558":2689,"6559":2689,"6560":2688,"6561":2689,"6562":2689,"6563":2689,"6564":2689,"6565":2690,"6566":2690,"6567":2689,"6568":2689,"6569":2688,"6570":2688,"6571":2688,"6572":2688,"6573":2689,"6574":2689,"6575":2689,"6576":2689,"6577":2688,"6578":2689,"6579":2689,"6580":2688,"6581":2688,"6582":2690,"6583":2690,"6584":2688,"6585":2690,"6586":2689,"6587":2689,"6588":2688,"6589":2689,"6590":2689,"6591":2688,"6592":2689,"6593":2690,"6594":2689,"6595":2688,"6596":2688,"6597":2689,"6598":2688,"6599":2690,"6600":2690,"6601":2689,"6602":2689,"6603":2689,"6604":2688,"6605":2689,"6606":2688,"6607":2689,"6608":2690,"6609":2689,"6610":2689,"6611":2690,"6612":2689,"6613":2689,"6614":2690,"6615":2690,"6616":2689,"6617":2688,"6618":2689,"6619":2689,"6620":2689,"6621":2688,"6622":2690,"6623":2689,"6624":2690,"6625":2688,"6626":2689,"6627":2689,"6628":2689,"6629":2688,"6630":2689,"6631":2688,"6632":2690,"6633":2688,"6634":2688,"6635":2689,"6636":2690,"6637":2689,"6638":2688,"6639":2689,"6640":2689,"6641":2689,"6642":2688,"6643":2689,"6644":2689,"6645":2689,"6646":2690,"6647":2688,"6648":2688,"6649":2688,"6650":2690,"6651":2690,"6652":2690,"6653":2690,"6654":2689,"6655":2689,"6656":2689,"6657":2688,"6658":2689,"6659":2689,"6660":2689,"6661":2690,"6662":2690,"6663":2689,"6664":2689,"6665":2688,"6666":2688,"6667":2688,"6668":2688,"6669":2689,"6670":2690,"6671":2690,"6672":2689,"6673":2688,"6674":2689,"6675":2689,"6676":2689,"6677":2689,"6678":2689,"6679":2690,"6680":2689,"6681":2688,"6682":2689,"6683":2689,"6684":2688,"6685":2689,"6686":2690,"6687":2688,"6688":2688,"6689":2689,"6690":2688,"6691":2689,"6692":2690,"6693":2689,"6694":2689,"6695":2689,"6696":2690,"6697":2688,"6698":2689,"6699":2690,"6700":2689,"6701":2688,"6702":2689,"6703":2688,"6704":2690,"6705":2690,"6706":2689,"6707":2689,"6708":2689,"6709":2689,"6710":2689,"6711":2689,"6712":2688,"6713":2689,"6714":2688,"6715":2689,"6716":2689,"6717":2688,"6718":2690,"6719":2689,"6720":2688,"6721":2689,"6722":2690,"6723":2688,"6724":2688,"6725":2689,"6726":2688,"6727":2689,"6728":2689,"6729":2689,"6730":2688,"6731":2690,"6732":2689,"6733":2689,"6734":2690,"6735":2689,"6736":2690,"6737":2689,"6738":2688,"6739":2689,"6740":2690,"6741":2689,"6742":2690,"6743":2689,"6744":2690,"6745":2688,"6746":2690,"6747":2689,"6748":2689,"6749":2689,"6750":2688,"6751":2689,"6752":2689,"6753":2689,"6754":2688,"6755":2689,"6756":2689,"6757":2690,"6758":2689,"6759":2690,"6760":2689,"6761":2690,"6762":2689,"6763":2688,"6764":2689,"6765":2688,"6766":2688,"6767":2689,"6768":2690,"6769":2689,"6770":2689,"6771":2688,"6772":2689,"6773":2689,"6774":2690,"6775":2689,"6776":2690,"6777":2688,"6778":2688,"6779":2688,"6780":2689,"6781":2689,"6782":2689,"6783":2688,"6784":2689,"6785":2688,"6786":2689,"6787":2689,"6788":2689,"6789":2689,"6790":2689,"6791":2689,"6792":2688,"6793":2689,"6794":2690,"6795":2688,"6796":2690,"6797":2689,"6798":2690,"6799":2690,"6800":2690,"6801":2689,"6802":2689,"6803":2688,"6804":2689,"6805":2688,"6806":2690,"6807":2690,"6808":2690,"6809":2690,"6810":2688,"6811":2689,"6812":2688,"6813":2689,"6814":2689,"6815":2689,"6816":2688,"6817":2688,"6818":2688,"6819":2689,"6820":2690,"6821":2688,"6822":2689,"6823":2689,"6824":2690,"6825":2689,"6826":2689,"6827":2690,"6828":2688,"6829":2689,"6830":2689,"6831":2689,"6832":2690,"6833":2689,"6834":2689,"6835":2689,"6836":2688,"6837":2688,"6838":2690,"6839":2689,"6840":2690,"6841":2690,"6842":2689,"6843":2690,"6844":2688,"6845":2689,"6846":2689,"6847":2690,"6848":2688,"6849":2688,"6850":2690,"6851":2688,"6852":2688,"6853":2689,"6854":2689,"6855":2689,"6856":2689,"6857":2688,"6858":2690,"6859":2690,"6860":2688,"6861":2689,"6862":2688,"6863":2688,"6864":2690,"6865":2689,"6866":2688,"6867":2689,"6868":2688,"6869":2690,"6870":2690,"6871":2689,"6872":2688,"6873":2688,"6874":2690,"6875":2690,"6876":2688,"6877":2689,"6878":2689,"6879":2689,"6880":2689,"6881":2689,"6882":2689,"6883":2688,"6884":2690,"6885":2688,"6886":2690,"6887":2690,"6888":2688,"6889":2689,"6890":2688,"6891":2689,"6892":2689,"6893":2689,"6894":2689,"6895":2688,"6896":2689,"6897":2690,"6898":2688,"6899":2688,"6900":2690,"6901":2689,"6902":2688,"6903":2688,"6904":2689,"6905":2688,"6906":2690,"6907":2688,"6908":2688,"6909":2689,"6910":2688,"6911":2689,"6912":2689,"6913":2688,"6914":2688,"6915":2688,"6916":2688,"6917":2690,"6918":2688,"6919":2690,"6920":2690,"6921":2689,"6922":2688,"6923":2689,"6924":2690,"6925":2689,"6926":2689,"6927":2689,"6928":2690,"6929":2689,"6930":2690,"6931":2690,"6932":2689,"6933":2688,"6934":2688,"6935":2688,"6936":2688,"6937":2689,"6938":2690,"6939":2689,"6940":2688,"6941":2689,"6942":2689,"6943":2690,"6944":2688,"6945":2689,"6946":2689,"6947":2689,"6948":2689,"6949":2688,"6950":2690,"6951":2689,"6952":2688,"6953":2689,"6954":2689,"6955":2688,"6956":2689,"6957":2689,"6958":2689,"6959":2689,"6960":2688,"6961":2689,"6962":2689,"6963":2689,"6964":2689,"6965":2689,"6966":2689,"6967":2688,"6968":2689,"6969":2688,"6970":2689,"6971":2689,"6972":2690,"6973":2688,"6974":2690,"6975":2689,"6976":2689,"6977":2689,"6978":2689,"6979":2690,"6980":2688,"6981":2689,"6982":2690,"6983":2689,"6984":2688,"6985":2688,"6986":2689,"6987":2690,"6988":2690,"6989":2689,"6990":2688,"6991":2688,"6992":2688,"6993":2689,"6994":2689,"6995":2688,"6996":2689,"6997":2689,"6998":2690,"6999":2688,"7000":2688,"7001":2690,"7002":2690,"7003":2688,"7004":2690,"7005":2689,"7006":2689,"7007":2689,"7008":2689,"7009":2689,"7010":2688,"7011":2688,"7012":2690,"7013":2689,"7014":2689,"7015":2688,"7016":2689,"7017":2690,"7018":2689,"7019":2690,"7020":2689,"7021":2690,"7022":2688,"7023":2688,"7024":2688,"7025":2689,"7026":2688,"7027":2689,"7028":2689,"7029":2688,"7030":2688,"7031":2689,"7032":2689,"7033":2688,"7034":2690,"7035":2690,"7036":2689,"7037":2689,"7038":2688,"7039":2690,"7040":2688,"7041":2689,"7042":2688,"7043":2688,"7044":2690,"7045":2689,"7046":2689,"7047":2690,"7048":2688,"7049":2688,"7050":2688,"7051":2690,"7052":2690,"7053":2689,"7054":2689,"7055":2689,"7056":2689,"7057":2690,"7058":2689,"7059":2689,"7060":2690,"7061":2689,"7062":2688,"7063":2689,"7064":2689,"7065":2689,"7066":2689,"7067":2688,"7068":2690,"7069":2690,"7070":2689,"7071":2689,"7072":2690,"7073":2689,"7074":2689,"7075":2689,"7076":2690,"7077":2689,"7078":2689,"7079":2689,"7080":2688,"7081":2689,"7082":2690,"7083":2688,"7084":2689,"7085":2689,"7086":2689,"7087":2690,"7088":2689,"7089":2689,"7090":2689,"7091":2690,"7092":2689,"7093":2689,"7094":2689,"7095":2690,"7096":2689,"7097":2689,"7098":2689,"7099":2689,"7100":2689,"7101":2689,"7102":2689,"7103":2689,"7104":2689,"7105":2690,"7106":2690,"7107":2689,"7108":2690,"7109":2689,"7110":2689,"7111":2690,"7112":2689,"7113":2689,"7114":2689,"7115":2690,"7116":2690,"7117":2689,"7118":2688,"7119":2688,"7120":2690,"7121":2690,"7122":2688,"7123":2688,"7124":2689,"7125":2688,"7126":2689,"7127":2689,"7128":2688,"7129":2688,"7130":2689,"7131":2689,"7132":2688,"7133":2688,"7134":2688,"7135":2689,"7136":2690,"7137":2689,"7138":2690,"7139":2689,"7140":2689,"7141":2689,"7142":2689,"7143":2689,"7144":2689,"7145":2689,"7146":2690,"7147":2690,"7148":2690,"7149":2690,"7150":2688,"7151":2689,"7152":2689,"7153":2689,"7154":2688,"7155":2689,"7156":2688,"7157":2688,"7158":2688,"7159":2689,"7160":2689,"7161":2689,"7162":2688,"7163":2690,"7164":2688,"7165":2688,"7166":2689,"7167":2689,"7168":2689,"7169":2688,"7170":2689,"7171":2689,"7172":2690,"7173":2688,"7174":2688,"7175":2690,"7176":2689,"7177":2688,"7178":2690,"7179":2689,"7180":2688,"7181":2688,"7182":2689,"7183":2688,"7184":2690,"7185":2689,"7186":2689,"7187":2688,"7188":2689,"7189":2690,"7190":2690,"7191":2690,"7192":2689,"7193":2689,"7194":2689,"7195":2690,"7196":2689,"7197":2689,"7198":2688,"7199":2690,"7200":2688,"7201":2690,"7202":2689,"7203":2689,"7204":2690,"7205":2688,"7206":2689,"7207":2689,"7208":2690,"7209":2688,"7210":2689,"7211":2689,"7212":2688,"7213":2690,"7214":2689,"7215":2688,"7216":2688,"7217":2688,"7218":2688,"7219":2688,"7220":2690,"7221":2689,"7222":2688,"7223":2690,"7224":2689,"7225":2689,"7226":2688,"7227":2690,"7228":2689,"7229":2688,"7230":2689,"7231":2689,"7232":2690,"7233":2689,"7234":2688,"7235":2688,"7236":2689,"7237":2689,"7238":2690,"7239":2690,"7240":2688,"7241":2689,"7242":2689,"7243":2689,"7244":2690,"7245":2688,"7246":2690,"7247":2688,"7248":2689,"7249":2689,"7250":2688,"7251":2689,"7252":2689,"7253":2689,"7254":2689,"7255":2689,"7256":2689,"7257":2689,"7258":2689,"7259":2689,"7260":2690,"7261":2690,"7262":2690,"7263":2690,"7264":2689,"7265":2688,"7266":2689,"7267":2688,"7268":2690,"7269":2689,"7270":2690,"7271":2689,"7272":2689,"7273":2688,"7274":2689,"7275":2688,"7276":2690,"7277":2690,"7278":2689,"7279":2689,"7280":2688,"7281":2690,"7282":2689,"7283":2690,"7284":2688,"7285":2689,"7286":2690,"7287":2690,"7288":2688,"7289":2688,"7290":2690,"7291":2689,"7292":2688,"7293":2689,"7294":2690,"7295":2689,"7296":2690,"7297":2689,"7298":2690,"7299":2688,"7300":2689,"7301":2688,"7302":2689,"7303":2690,"7304":2690,"7305":2688,"7306":2688,"7307":2689,"7308":2689,"7309":2690,"7310":2689,"7311":2690,"7312":2688,"7313":2690,"7314":2689,"7315":2688,"7316":2689,"7317":2688,"7318":2690,"7319":2688,"7320":2689,"7321":2688,"7322":2689,"7323":2688,"7324":2689,"7325":2690,"7326":2690,"7327":2689,"7328":2688,"7329":2688,"7330":2689,"7331":2690,"7332":2689,"7333":2689,"7334":2689,"7335":2689,"7336":2690,"7337":2690,"7338":2688,"7339":2688,"7340":2689,"7341":2689,"7342":2689,"7343":2688,"7344":2688,"7345":2689,"7346":2688,"7347":2689,"7348":2688,"7349":2690,"7350":2690,"7351":2689,"7352":2689,"7353":2688,"7354":2689,"7355":2689,"7356":2688,"7357":2690,"7358":2689,"7359":2689,"7360":2688,"7361":2690,"7362":2688,"7363":2689,"7364":2690,"7365":2689,"7366":2690,"7367":2689,"7368":2689,"7369":2689,"7370":2688,"7371":2689,"7372":2690,"7373":2689,"7374":2689,"7375":2690,"7376":2689,"7377":2690,"7378":2690,"7379":2689,"7380":2688,"7381":2688,"7382":2689,"7383":2689,"7384":2688,"7385":2688,"7386":2689,"7387":2688,"7388":2689,"7389":2690,"7390":2689,"7391":2690,"7392":2690,"7393":2690,"7394":2688,"7395":2690,"7396":2689,"7397":2689,"7398":2688,"7399":2689,"7400":2689,"7401":2689,"7402":2688,"7403":2689,"7404":2689,"7405":2688,"7406":2690,"7407":2690,"7408":2689,"7409":2689,"7410":2688,"7411":2688,"7412":2689,"7413":2690,"7414":2690,"7415":2689,"7416":2689,"7417":2689,"7418":2688,"7419":2690,"7420":2688,"7421":2689,"7422":2689,"7423":2689,"7424":2690,"7425":2689,"7426":2689,"7427":2689,"7428":2688,"7429":2689,"7430":2690,"7431":2690,"7432":2688,"7433":2688,"7434":2689,"7435":2689,"7436":2689,"7437":2689,"7438":2689,"7439":2689,"7440":2689,"7441":2689,"7442":2688,"7443":2689,"7444":2690,"7445":2688,"7446":2688,"7447":2689,"7448":2689,"7449":2689,"7450":2688,"7451":2688,"7452":2690,"7453":2688,"7454":2690,"7455":2689,"7456":2688,"7457":2689,"7458":2689,"7459":2689,"7460":2688,"7461":2690,"7462":2689,"7463":2689,"7464":2690,"7465":2689,"7466":2689,"7467":2689,"7468":2689,"7469":2689,"7470":2689,"7471":2689,"7472":2688,"7473":2688,"7474":2690,"7475":2689,"7476":2690,"7477":2690,"7478":2689,"7479":2688,"7480":2689,"7481":2689,"7482":2690,"7483":2689,"7484":2688,"7485":2689,"7486":2690,"7487":2690,"7488":2689,"7489":2690,"7490":2688,"7491":2690,"7492":2689,"7493":2688,"7494":2690,"7495":2688,"7496":2689,"7497":2689,"7498":2688,"7499":2689,"7500":2688,"7501":2689,"7502":2688,"7503":2689,"7504":2690,"7505":2689,"7506":2689,"7507":2688,"7508":2690,"7509":2689,"7510":2688,"7511":2689,"7512":2688,"7513":2689,"7514":2688,"7515":2688,"7516":2690,"7517":2689,"7518":2689,"7519":2688,"7520":2689,"7521":2688,"7522":2689,"7523":2689,"7524":2690,"7525":2690,"7526":2689,"7527":2690,"7528":2688,"7529":2689,"7530":2689,"7531":2689,"7532":2690,"7533":2689,"7534":2688,"7535":2690,"7536":2689,"7537":2689,"7538":2688,"7539":2690,"7540":2689,"7541":2689,"7542":2689,"7543":2689,"7544":2688,"7545":2689,"7546":2688,"7547":2689,"7548":2690,"7549":2690,"7550":2689,"7551":2690,"7552":2690,"7553":2688,"7554":2689,"7555":2690,"7556":2690,"7557":2688,"7558":2689,"7559":2688,"7560":2689,"7561":2690,"7562":2689,"7563":2689,"7564":2690,"7565":2689,"7566":2689,"7567":2688,"7568":2689,"7569":2689,"7570":2689,"7571":2690,"7572":2690,"7573":2689,"7574":2689,"7575":2688,"7576":2689,"7577":2689,"7578":2689,"7579":2689,"7580":2689,"7581":2689,"7582":2690,"7583":2689,"7584":2690,"7585":2688,"7586":2689,"7587":2690,"7588":2690,"7589":2689,"7590":2690,"7591":2689,"7592":2689,"7593":2689,"7594":2689,"7595":2688,"7596":2689,"7597":2688,"7598":2688,"7599":2688,"7600":2689,"7601":2689,"7602":2690,"7603":2689,"7604":2690,"7605":2688,"7606":2689,"7607":2688,"7608":2689,"7609":2688,"7610":2690,"7611":2690,"7612":2689,"7613":2688,"7614":2688,"7615":2689,"7616":2690,"7617":2690,"7618":2689,"7619":2688,"7620":2689,"7621":2690,"7622":2689,"7623":2689,"7624":2688,"7625":2689,"7626":2689,"7627":2689,"7628":2689,"7629":2689,"7630":2690,"7631":2689,"7632":2690,"7633":2690,"7634":2689,"7635":2689,"7636":2689,"7637":2689,"7638":2689,"7639":2688,"7640":2689,"7641":2689,"7642":2689,"7643":2689,"7644":2689,"7645":2688,"7646":2689,"7647":2689,"7648":2688,"7649":2690,"7650":2689,"7651":2689,"7652":2689,"7653":2690,"7654":2689,"7655":2689,"7656":2690,"7657":2689,"7658":2689,"7659":2689,"7660":2689,"7661":2688,"7662":2688,"7663":2689,"7664":2689,"7665":2689,"7666":2690,"7667":2689,"7668":2689,"7669":2689,"7670":2690,"7671":2690,"7672":2689,"7673":2688,"7674":2688,"7675":2688,"7676":2689,"7677":2689,"7678":2688,"7679":2689,"7680":2690,"7681":2688,"7682":2689,"7683":2690,"7684":2688,"7685":2689,"7686":2690,"7687":2688,"7688":2690,"7689":2688,"7690":2689,"7691":2689,"7692":2689,"7693":2690,"7694":2689,"7695":2689,"7696":2690,"7697":2688,"7698":2689,"7699":2689,"7700":2688,"7701":2690,"7702":2688,"7703":2690,"7704":2688,"7705":2688,"7706":2689,"7707":2689,"7708":2690,"7709":2689,"7710":2690,"7711":2689,"7712":2689,"7713":2689,"7714":2688,"7715":2688,"7716":2689,"7717":2690,"7718":2689,"7719":2688,"7720":2688,"7721":2690,"7722":2688,"7723":2690,"7724":2689,"7725":2689,"7726":2689,"7727":2689,"7728":2690,"7729":2690,"7730":2688,"7731":2688,"7732":2690,"7733":2689,"7734":2689,"7735":2690,"7736":2690,"7737":2690,"7738":2689,"7739":2689,"7740":2690,"7741":2689,"7742":2690,"7743":2690,"7744":2688,"7745":2689,"7746":2689,"7747":2690,"7748":2688,"7749":2688,"7750":2689,"7751":2689,"7752":2689,"7753":2690,"7754":2689,"7755":2689,"7756":2689,"7757":2689,"7758":2690,"7759":2690,"7760":2688,"7761":2689,"7762":2689,"7763":2688,"7764":2689,"7765":2689,"7766":2688,"7767":2689,"7768":2689,"7769":2689,"7770":2689,"7771":2689,"7772":2690,"7773":2690,"7774":2689,"7775":2689,"7776":2689,"7777":2689,"7778":2688,"7779":2688,"7780":2690,"7781":2688,"7782":2690,"7783":2690,"7784":2689,"7785":2689,"7786":2690,"7787":2688,"7788":2688,"7789":2690,"7790":2688,"7791":2690,"7792":2689,"7793":2690,"7794":2689,"7795":2689,"7796":2689,"7797":2690,"7798":2689,"7799":2688,"7800":2689,"7801":2688,"7802":2689,"7803":2688,"7804":2689,"7805":2689,"7806":2690,"7807":2690,"7808":2689,"7809":2689,"7810":2689,"7811":2689,"7812":2690,"7813":2690,"7814":2690,"7815":2689,"7816":2688,"7817":2689,"7818":2689,"7819":2689,"7820":2690,"7821":2689,"7822":2689,"7823":2689,"7824":2689,"7825":2689,"7826":2688,"7827":2689,"7828":2688,"7829":2688,"7830":2688,"7831":2689,"7832":2688,"7833":2689,"7834":2690,"7835":2689,"7836":2690,"7837":2690,"7838":2690,"7839":2689,"7840":2688,"7841":2688,"7842":2689,"7843":2689,"7844":2690,"7845":2690,"7846":2688,"7847":2688,"7848":2690,"7849":2689,"7850":2689,"7851":2688,"7852":2690,"7853":2689,"7854":2689,"7855":2689,"7856":2689,"7857":2689,"7858":2689,"7859":2689,"7860":2689,"7861":2689,"7862":2689,"7863":2688,"7864":2688,"7865":2689,"7866":2689,"7867":2688,"7868":2689,"7869":2688,"7870":2689,"7871":2689,"7872":2688,"7873":2689,"7874":2690,"7875":2689,"7876":2689,"7877":2688,"7878":2689,"7879":2690,"7880":2690,"7881":2689,"7882":2689,"7883":2689,"7884":2688,"7885":2689,"7886":2689,"7887":2690,"7888":2689,"7889":2690,"7890":2690,"7891":2689,"7892":2689,"7893":2689,"7894":2690,"7895":2689,"7896":2688,"7897":2689,"7898":2688,"7899":2689,"7900":2690,"7901":2689,"7902":2689,"7903":2688,"7904":2690,"7905":2690,"7906":2690,"7907":2689,"7908":2688,"7909":2689,"7910":2689,"7911":2690,"7912":2689,"7913":2689,"7914":2690,"7915":2690,"7916":2688,"7917":2689,"7918":2690,"7919":2688,"7920":2689,"7921":2689,"7922":2688,"7923":2690,"7924":2689,"7925":2690,"7926":2689,"7927":2689,"7928":2689,"7929":2690,"7930":2689,"7931":2690,"7932":2690,"7933":2690,"7934":2688,"7935":2689,"7936":2688,"7937":2688,"7938":2690,"7939":2689,"7940":2689,"7941":2688,"7942":2689,"7943":2689,"7944":2689,"7945":2688,"7946":2689,"7947":2689,"7948":2689,"7949":2689,"7950":2690,"7951":2690,"7952":2690,"7953":2690,"7954":2690,"7955":2689,"7956":2690,"7957":2688,"7958":2689,"7959":2689,"7960":2689,"7961":2688,"7962":2688,"7963":2689,"7964":2688,"7965":2689,"7966":2690,"7967":2689,"7968":2689,"7969":2689,"7970":2688,"7971":2688,"7972":2689,"7973":2690,"7974":2689,"7975":2689,"7976":2690,"7977":2690,"7978":2689,"7979":2690,"7980":2690,"7981":2689,"7982":2689,"7983":2689,"7984":2689,"7985":2689,"7986":2689,"7987":2689,"7988":2690,"7989":2689,"7990":2690,"7991":2690,"7992":2688,"7993":2689,"7994":2688,"7995":2689,"7996":2688,"7997":2688,"7998":2690,"7999":2689,"8000":2690,"8001":2689,"8002":2688,"8003":2689,"8004":2690,"8005":2689,"8006":2688,"8007":2688,"8008":2688,"8009":2688,"8010":2688,"8011":2689,"8012":2689,"8013":2689,"8014":2689,"8015":2690,"8016":2688,"8017":2690,"8018":2688,"8019":2689,"8020":2688,"8021":2690,"8022":2689,"8023":2689,"8024":2689,"8025":2689,"8026":2689,"8027":2690,"8028":2689,"8029":2690,"8030":2689,"8031":2689,"8032":2689,"8033":2689,"8034":2689,"8035":2689,"8036":2688,"8037":2689,"8038":2689,"8039":2689,"8040":2688,"8041":2690,"8042":2689,"8043":2689,"8044":2689,"8045":2688,"8046":2689,"8047":2690,"8048":2689,"8049":2690,"8050":2690,"8051":2688,"8052":2689,"8053":2689,"8054":2690,"8055":2690,"8056":2689,"8057":2690,"8058":2689,"8059":2689,"8060":2690,"8061":2688,"8062":2689,"8063":2688,"8064":2689,"8065":2689,"8066":2689,"8067":2689,"8068":2689,"8069":2689,"8070":2690,"8071":2689,"8072":2689,"8073":2688,"8074":2689,"8075":2689,"8076":2688,"8077":2689,"8078":2688,"8079":2688,"8080":2690,"8081":2689,"8082":2689,"8083":2688,"8084":2690,"8085":2690,"8086":2690,"8087":2688,"8088":2688,"8089":2689,"8090":2690,"8091":2688,"8092":2689,"8093":2690,"8094":2689,"8095":2690,"8096":2689,"8097":2689,"8098":2690,"8099":2688,"8100":2689,"8101":2690,"8102":2688,"8103":2690,"8104":2689,"8105":2688,"8106":2689,"8107":2688,"8108":2689,"8109":2689,"8110":2690,"8111":2689,"8112":2688,"8113":2689,"8114":2689,"8115":2689,"8116":2689,"8117":2690,"8118":2689,"8119":2689,"8120":2688,"8121":2689,"8122":2688,"8123":2689,"8124":2688,"8125":2689,"8126":2689,"8127":2689,"8128":2690,"8129":2690,"8130":2689,"8131":2689,"8132":2689,"8133":2690,"8134":2689,"8135":2689,"8136":2688,"8137":2690,"8138":2690,"8139":2689,"8140":2689,"8141":2689,"8142":2689,"8143":2689,"8144":2689,"8145":2690,"8146":2690,"8147":2689,"8148":2688,"8149":2690,"8150":2689,"8151":2688,"8152":2690,"8153":2688,"8154":2690,"8155":2689,"8156":2689,"8157":2689,"8158":2689,"8159":2690,"8160":2689,"8161":2688,"8162":2690,"8163":2690,"8164":2689,"8165":2689,"8166":2689,"8167":2689,"8168":2688,"8169":2689,"8170":2688,"8171":2689,"8172":2690,"8173":2688,"8174":2690,"8175":2689,"8176":2690,"8177":2689,"8178":2690,"8179":2688,"8180":2688,"8181":2688,"8182":2689,"8183":2689,"8184":2689,"8185":2690,"8186":2689,"8187":2688,"8188":2689,"8189":2688,"8190":2690,"8191":2688,"8192":2689,"8193":2688,"8194":2688,"8195":2690,"8196":2689,"8197":2689,"8198":2688,"8199":2690,"8200":2689,"8201":2689,"8202":2689,"8203":2688,"8204":2689,"8205":2689,"8206":2689,"8207":2689,"8208":2689,"8209":2689,"8210":2688,"8211":2688,"8212":2689,"8213":2689,"8214":2689,"8215":2689,"8216":2689,"8217":2688,"8218":2688,"8219":2689,"8220":2688,"8221":2689,"8222":2689,"8223":2688,"8224":2689,"8225":2688,"8226":2689,"8227":2689,"8228":2688,"8229":2689,"8230":2689,"8231":2690,"8232":2689,"8233":2689,"8234":2689,"8235":2690,"8236":2689,"8237":2690,"8238":2688,"8239":2690,"8240":2690,"8241":2689,"8242":2689,"8243":2688,"8244":2689,"8245":2689,"8246":2690,"8247":2689,"8248":2688,"8249":2689,"8250":2688,"8251":2689,"8252":2688,"8253":2689,"8254":2689,"8255":2689,"8256":2688,"8257":2688,"8258":2689,"8259":2688,"8260":2689,"8261":2689,"8262":2689,"8263":2688,"8264":2690,"8265":2690,"8266":2689,"8267":2689,"8268":2690,"8269":2688,"8270":2689,"8271":2690,"8272":2689,"8273":2688,"8274":2688,"8275":2689,"8276":2689,"8277":2688,"8278":2689,"8279":2690,"8280":2689,"8281":2689,"8282":2689,"8283":2689,"8284":2689,"8285":2690,"8286":2688,"8287":2690,"8288":2690,"8289":2690,"8290":2689,"8291":2688,"8292":2689,"8293":2689,"8294":2689,"8295":2689,"8296":2689,"8297":2689,"8298":2690,"8299":2689,"8300":2689,"8301":2690,"8302":2688,"8303":2689,"8304":2689,"8305":2689,"8306":2689,"8307":2689,"8308":2690,"8309":2689,"8310":2689,"8311":2689,"8312":2688,"8313":2688,"8314":2688,"8315":2690,"8316":2689,"8317":2688,"8318":2689,"8319":2688,"8320":2690,"8321":2689,"8322":2690,"8323":2690,"8324":2690,"8325":2689,"8326":2690,"8327":2689,"8328":2689,"8329":2689,"8330":2688,"8331":2689,"8332":2688,"8333":2688,"8334":2689,"8335":2690,"8336":2688,"8337":2689,"8338":2689,"8339":2689,"8340":2688,"8341":2688,"8342":2690,"8343":2689,"8344":2689,"8345":2689,"8346":2690,"8347":2688,"8348":2689,"8349":2689,"8350":2689,"8351":2690,"8352":2689,"8353":2688,"8354":2689,"8355":2690,"8356":2689,"8357":2688,"8358":2690,"8359":2688,"8360":2690,"8361":2688,"8362":2688,"8363":2688,"8364":2690,"8365":2689,"8366":2689,"8367":2689,"8368":2688,"8369":2689,"8370":2689,"8371":2689,"8372":2688,"8373":2690,"8374":2689,"8375":2689,"8376":2689,"8377":2688,"8378":2689,"8379":2688,"8380":2690,"8381":2689,"8382":2689,"8383":2688,"8384":2690,"8385":2688,"8386":2690,"8387":2690,"8388":2689,"8389":2688,"8390":2690,"8391":2688,"8392":2689,"8393":2689,"8394":2688,"8395":2688,"8396":2689,"8397":2689,"8398":2688,"8399":2689,"8400":2690,"8401":2690,"8402":2688,"8403":2689,"8404":2688,"8405":2690,"8406":2689,"8407":2688,"8408":2689,"8409":2689,"8410":2688,"8411":2688,"8412":2689,"8413":2689,"8414":2688,"8415":2689,"8416":2690,"8417":2689,"8418":2688,"8419":2689,"8420":2690,"8421":2689,"8422":2688,"8423":2689,"8424":2688,"8425":2689,"8426":2690,"8427":2689,"8428":2690,"8429":2690,"8430":2690,"8431":2690,"8432":2688,"8433":2690,"8434":2689,"8435":2689,"8436":2689,"8437":2690,"8438":2689,"8439":2689,"8440":2689,"8441":2689,"8442":2690,"8443":2689,"8444":2690,"8445":2690,"8446":2690,"8447":2690,"8448":2690,"8449":2690,"8450":2689,"8451":2690,"8452":2689,"8453":2688,"8454":2689,"8455":2689,"8456":2690,"8457":2689,"8458":2689,"8459":2688,"8460":2689,"8461":2689,"8462":2690,"8463":2690,"8464":2689,"8465":2690,"8466":2690,"8467":2689,"8468":2689,"8469":2689,"8470":2689,"8471":2689,"8472":2689,"8473":2689,"8474":2688,"8475":2689,"8476":2690,"8477":2689,"8478":2689,"8479":2690,"8480":2689,"8481":2689,"8482":2689,"8483":2689,"8484":2689,"8485":2689,"8486":2689,"8487":2689,"8488":2689,"8489":2689,"8490":2690,"8491":2690,"8492":2689,"8493":2690,"8494":2690,"8495":2689,"8496":2690,"8497":2688,"8498":2689,"8499":2688,"8500":2688,"8501":2690,"8502":2689,"8503":2690,"8504":2689,"8505":2690,"8506":2689,"8507":2688,"8508":2689,"8509":2688,"8510":2688,"8511":2690,"8512":2689,"8513":2690,"8514":2688,"8515":2688,"8516":2688,"8517":2688,"8518":2689,"8519":2688,"8520":2688,"8521":2688,"8522":2689,"8523":2689,"8524":2688,"8525":2689,"8526":2688,"8527":2689,"8528":2689,"8529":2690,"8530":2688,"8531":2690,"8532":2689,"8533":2688,"8534":2690,"8535":2688,"8536":2690,"8537":2688,"8538":2688,"8539":2688,"8540":2690,"8541":2689,"8542":2688,"8543":2689,"8544":2690,"8545":2689,"8546":2688,"8547":2689,"8548":2688,"8549":2689,"8550":2689,"8551":2688,"8552":2688,"8553":2689,"8554":2689,"8555":2688,"8556":2689,"8557":2689,"8558":2689,"8559":2689,"8560":2689,"8561":2689,"8562":2689,"8563":2688,"8564":2689,"8565":2688,"8566":2689,"8567":2690,"8568":2690,"8569":2690,"8570":2688,"8571":2689,"8572":2689,"8573":2689,"8574":2688,"8575":2689,"8576":2689,"8577":2689,"8578":2688,"8579":2689,"8580":2690,"8581":2688,"8582":2689,"8583":2688,"8584":2689,"8585":2689,"8586":2689,"8587":2690,"8588":2689,"8589":2688,"8590":2689,"8591":2690,"8592":2690,"8593":2690,"8594":2688,"8595":2689,"8596":2688,"8597":2689,"8598":2689,"8599":2690,"8600":2690,"8601":2690,"8602":2689,"8603":2688,"8604":2688,"8605":2690,"8606":2690,"8607":2689,"8608":2689,"8609":2689,"8610":2689,"8611":2689,"8612":2689,"8613":2689,"8614":2688,"8615":2690,"8616":2690,"8617":2689,"8618":2689,"8619":2689,"8620":2690,"8621":2688,"8622":2689,"8623":2689,"8624":2689,"8625":2690,"8626":2689,"8627":2689,"8628":2690,"8629":2688,"8630":2689,"8631":2688,"8632":2688,"8633":2688,"8634":2689,"8635":2688,"8636":2690,"8637":2689,"8638":2689,"8639":2689,"8640":2688,"8641":2689,"8642":2688,"8643":2689,"8644":2689,"8645":2688,"8646":2689,"8647":2688,"8648":2688,"8649":2689,"8650":2689,"8651":2688,"8652":2688,"8653":2688,"8654":2689,"8655":2690,"8656":2690,"8657":2688,"8658":2689,"8659":2688,"8660":2689,"8661":2689,"8662":2689,"8663":2689,"8664":2688,"8665":2689,"8666":2688,"8667":2688,"8668":2688,"8669":2689,"8670":2690,"8671":2689,"8672":2688,"8673":2690,"8674":2690,"8675":2689,"8676":2688,"8677":2689,"8678":2689,"8679":2689,"8680":2689,"8681":2689,"8682":2690,"8683":2688,"8684":2689,"8685":2688,"8686":2689,"8687":2689,"8688":2689,"8689":2689,"8690":2689,"8691":2689,"8692":2688,"8693":2690,"8694":2690,"8695":2689,"8696":2689,"8697":2689,"8698":2689,"8699":2690,"8700":2690,"8701":2689,"8702":2689,"8703":2688,"8704":2690,"8705":2690,"8706":2689,"8707":2689,"8708":2688,"8709":2688,"8710":2689,"8711":2689,"8712":2689,"8713":2689,"8714":2688,"8715":2689,"8716":2689,"8717":2690,"8718":2688,"8719":2689,"8720":2689,"8721":2688,"8722":2689,"8723":2689,"8724":2689,"8725":2689,"8726":2689,"8727":2689,"8728":2689,"8729":2690,"8730":2688,"8731":2688,"8732":2690,"8733":2690,"8734":2689,"8735":2689,"8736":2690,"8737":2690,"8738":2688,"8739":2690,"8740":2690,"8741":2689,"8742":2690,"8743":2689,"8744":2688,"8745":2688,"8746":2689,"8747":2689,"8748":2689,"8749":2688,"8750":2688,"8751":2689,"8752":2690,"8753":2690,"8754":2690,"8755":2689,"8756":2689,"8757":2690,"8758":2689,"8759":2689,"8760":2690,"8761":2689,"8762":2690,"8763":2690,"8764":2688,"8765":2689,"8766":2690,"8767":2689,"8768":2688,"8769":2688,"8770":2688,"8771":2690,"8772":2688,"8773":2689,"8774":2688,"8775":2689,"8776":2688,"8777":2689,"8778":2689,"8779":2689,"8780":2688,"8781":2688,"8782":2689,"8783":2689,"8784":2688,"8785":2688,"8786":2690,"8787":2690,"8788":2689,"8789":2689,"8790":2688,"8791":2689,"8792":2689,"8793":2690,"8794":2688,"8795":2688,"8796":2688,"8797":2689,"8798":2690,"8799":2689,"8800":2689,"8801":2690,"8802":2689,"8803":2689,"8804":2689,"8805":2688,"8806":2688,"8807":2690,"8808":2689,"8809":2690,"8810":2689,"8811":2689,"8812":2688,"8813":2688,"8814":2690,"8815":2689,"8816":2689,"8817":2689,"8818":2690,"8819":2688,"8820":2689,"8821":2689,"8822":2688,"8823":2689,"8824":2689,"8825":2690,"8826":2688,"8827":2690,"8828":2688,"8829":2688,"8830":2689,"8831":2689,"8832":2690,"8833":2688,"8834":2688,"8835":2688,"8836":2690,"8837":2689,"8838":2690,"8839":2689,"8840":2689,"8841":2689,"8842":2689,"8843":2689,"8844":2689,"8845":2689,"8846":2688,"8847":2689,"8848":2689,"8849":2690,"8850":2688,"8851":2688,"8852":2690,"8853":2688,"8854":2690,"8855":2690,"8856":2689,"8857":2689,"8858":2689,"8859":2689,"8860":2689,"8861":2689,"8862":2688,"8863":2690,"8864":2688,"8865":2689,"8866":2689,"8867":2688,"8868":2689,"8869":2689,"8870":2690,"8871":2689,"8872":2689,"8873":2690,"8874":2689,"8875":2688,"8876":2689,"8877":2689,"8878":2689,"8879":2689,"8880":2690,"8881":2689,"8882":2689,"8883":2689,"8884":2689,"8885":2689,"8886":2688,"8887":2690,"8888":2689,"8889":2690,"8890":2690,"8891":2688,"8892":2688,"8893":2689,"8894":2688,"8895":2688,"8896":2689,"8897":2689,"8898":2689,"8899":2690,"8900":2690,"8901":2689,"8902":2688,"8903":2689,"8904":2689,"8905":2689,"8906":2688,"8907":2690,"8908":2689,"8909":2690,"8910":2689,"8911":2690,"8912":2689,"8913":2689,"8914":2690,"8915":2688,"8916":2688,"8917":2688,"8918":2689,"8919":2689,"8920":2689,"8921":2688,"8922":2689,"8923":2688,"8924":2690,"8925":2688,"8926":2689,"8927":2689,"8928":2689,"8929":2690,"8930":2689,"8931":2690,"8932":2688,"8933":2690,"8934":2689,"8935":2689,"8936":2689,"8937":2690,"8938":2689,"8939":2688,"8940":2689,"8941":2690,"8942":2689,"8943":2689,"8944":2689,"8945":2689,"8946":2689,"8947":2690,"8948":2690,"8949":2690,"8950":2688,"8951":2690,"8952":2688,"8953":2690,"8954":2689,"8955":2690,"8956":2690,"8957":2688,"8958":2690,"8959":2689,"8960":2690,"8961":2690,"8962":2689,"8963":2688,"8964":2689,"8965":2688,"8966":2690,"8967":2690,"8968":2690,"8969":2688,"8970":2689,"8971":2688,"8972":2689,"8973":2689,"8974":2689,"8975":2689,"8976":2689,"8977":2688,"8978":2690,"8979":2689,"8980":2688,"8981":2688,"8982":2690,"8983":2689,"8984":2689,"8985":2688,"8986":2689,"8987":2690,"8988":2689,"8989":2689,"8990":2689,"8991":2688,"8992":2689,"8993":2688,"8994":2689,"8995":2689,"8996":2690,"8997":2689,"8998":2690,"8999":2689,"9000":2689,"9001":2688,"9002":2689,"9003":2689,"9004":2688,"9005":2689,"9006":2688,"9007":2689,"9008":2688,"9009":2689,"9010":2689,"9011":2689,"9012":2689,"9013":2689,"9014":2689,"9015":2689,"9016":2689,"9017":2689,"9018":2688,"9019":2690,"9020":2690,"9021":2690,"9022":2689,"9023":2689,"9024":2690,"9025":2690,"9026":2690,"9027":2690,"9028":2688,"9029":2689,"9030":2690,"9031":2688,"9032":2690,"9033":2689,"9034":2690,"9035":2689,"9036":2690,"9037":2689,"9038":2690,"9039":2689,"9040":2689,"9041":2689,"9042":2689,"9043":2690,"9044":2688,"9045":2688,"9046":2690,"9047":2689,"9048":2688,"9049":2689,"9050":2689,"9051":2689,"9052":2689,"9053":2688,"9054":2689,"9055":2688,"9056":2689,"9057":2689,"9058":2689,"9059":2689,"9060":2689,"9061":2689,"9062":2689,"9063":2690,"9064":2688,"9065":2689,"9066":2689,"9067":2690,"9068":2688,"9069":2689,"9070":2690,"9071":2689,"9072":2688,"9073":2688,"9074":2690,"9075":2690,"9076":2690,"9077":2689,"9078":2690,"9079":2689,"9080":2690,"9081":2689,"9082":2690,"9083":2688,"9084":2689,"9085":2689,"9086":2688,"9087":2689,"9088":2690,"9089":2689,"9090":2689,"9091":2688,"9092":2688,"9093":2689,"9094":2690,"9095":2688,"9096":2690,"9097":2688,"9098":2688,"9099":2689,"9100":2688,"9101":2689,"9102":2690,"9103":2689,"9104":2688,"9105":2690,"9106":2690,"9107":2689,"9108":2688,"9109":2690,"9110":2689,"9111":2689,"9112":2689,"9113":2690,"9114":2689,"9115":2690,"9116":2688,"9117":2689,"9118":2689,"9119":2689,"9120":2689,"9121":2689,"9122":2689,"9123":2689,"9124":2690,"9125":2688,"9126":2688,"9127":2689,"9128":2690,"9129":2688,"9130":2690,"9131":2690,"9132":2688,"9133":2689,"9134":2689,"9135":2690,"9136":2690,"9137":2689,"9138":2688,"9139":2690,"9140":2689,"9141":2689,"9142":2689,"9143":2690,"9144":2688,"9145":2688,"9146":2690,"9147":2689,"9148":2688,"9149":2689,"9150":2690,"9151":2688,"9152":2690,"9153":2689,"9154":2688,"9155":2689,"9156":2689,"9157":2689,"9158":2688,"9159":2689,"9160":2689,"9161":2689,"9162":2688,"9163":2689,"9164":2690,"9165":2689,"9166":2688,"9167":2688,"9168":2689,"9169":2689,"9170":2690,"9171":2690,"9172":2689,"9173":2689,"9174":2689,"9175":2688,"9176":2688,"9177":2689,"9178":2688,"9179":2689,"9180":2688,"9181":2689,"9182":2689,"9183":2688,"9184":2689,"9185":2689,"9186":2690,"9187":2689,"9188":2690,"9189":2688,"9190":2688,"9191":2689,"9192":2689,"9193":2690,"9194":2688,"9195":2688,"9196":2689,"9197":2689,"9198":2688,"9199":2690,"9200":2690,"9201":2689,"9202":2688,"9203":2688,"9204":2689,"9205":2688,"9206":2689,"9207":2689,"9208":2689,"9209":2688,"9210":2688,"9211":2689,"9212":2689,"9213":2689,"9214":2689,"9215":2690,"9216":2689,"9217":2690,"9218":2689,"9219":2690,"9220":2689,"9221":2689,"9222":2689,"9223":2688,"9224":2688,"9225":2689,"9226":2688,"9227":2689,"9228":2690,"9229":2689,"9230":2689,"9231":2689,"9232":2689,"9233":2689,"9234":2688,"9235":2689,"9236":2688,"9237":2689,"9238":2689,"9239":2689,"9240":2688,"9241":2688,"9242":2688,"9243":2688,"9244":2690,"9245":2690,"9246":2689,"9247":2689,"9248":2688,"9249":2689,"9250":2690,"9251":2688,"9252":2690,"9253":2689,"9254":2690,"9255":2688,"9256":2690,"9257":2690,"9258":2689,"9259":2689,"9260":2689,"9261":2689,"9262":2689,"9263":2688,"9264":2689,"9265":2689,"9266":2689,"9267":2689,"9268":2689,"9269":2690,"9270":2690,"9271":2689,"9272":2690,"9273":2690,"9274":2690,"9275":2688,"9276":2688,"9277":2689,"9278":2690,"9279":2689,"9280":2690,"9281":2689,"9282":2690,"9283":2689,"9284":2689,"9285":2688,"9286":2689,"9287":2689,"9288":2690,"9289":2690,"9290":2689,"9291":2689,"9292":2689,"9293":2690,"9294":2690,"9295":2689,"9296":2690,"9297":2690,"9298":2689,"9299":2688,"9300":2689,"9301":2690,"9302":2689,"9303":2689,"9304":2689,"9305":2689,"9306":2688,"9307":2689,"9308":2690,"9309":2690,"9310":2689,"9311":2689,"9312":2689,"9313":2690,"9314":2689,"9315":2688,"9316":2690,"9317":2690,"9318":2688,"9319":2690,"9320":2688,"9321":2689,"9322":2689,"9323":2690,"9324":2690,"9325":2690,"9326":2690,"9327":2688,"9328":2689,"9329":2689,"9330":2689,"9331":2689,"9332":2689,"9333":2689,"9334":2688,"9335":2690,"9336":2688,"9337":2689,"9338":2689,"9339":2689,"9340":2690,"9341":2688,"9342":2689,"9343":2690,"9344":2690,"9345":2689,"9346":2688,"9347":2690,"9348":2689,"9349":2689,"9350":2688,"9351":2690,"9352":2689,"9353":2689,"9354":2690,"9355":2690,"9356":2689,"9357":2690,"9358":2689,"9359":2688,"9360":2689,"9361":2689,"9362":2689,"9363":2689,"9364":2689,"9365":2688,"9366":2690,"9367":2689,"9368":2688,"9369":2690,"9370":2689,"9371":2690,"9372":2689,"9373":2688,"9374":2689,"9375":2690,"9376":2688,"9377":2689,"9378":2690,"9379":2690,"9380":2688,"9381":2689,"9382":2689,"9383":2688,"9384":2688,"9385":2689,"9386":2689,"9387":2690,"9388":2689,"9389":2689,"9390":2689,"9391":2690,"9392":2689,"9393":2688,"9394":2689,"9395":2689,"9396":2689,"9397":2688,"9398":2689,"9399":2690,"9400":2688,"9401":2690,"9402":2689,"9403":2689,"9404":2690,"9405":2688,"9406":2688,"9407":2689,"9408":2690,"9409":2690,"9410":2690,"9411":2689,"9412":2688,"9413":2690,"9414":2689,"9415":2689,"9416":2689,"9417":2689,"9418":2689,"9419":2688,"9420":2689,"9421":2688,"9422":2688,"9423":2688,"9424":2690,"9425":2688,"9426":2690,"9427":2689,"9428":2688,"9429":2689,"9430":2689,"9431":2688,"9432":2690,"9433":2689,"9434":2689,"9435":2690,"9436":2689,"9437":2689,"9438":2688,"9439":2689,"9440":2689,"9441":2690,"9442":2689,"9443":2688,"9444":2690,"9445":2688,"9446":2689,"9447":2688,"9448":2689,"9449":2690,"9450":2688,"9451":2689,"9452":2688,"9453":2688,"9454":2690,"9455":2688,"9456":2689,"9457":2690,"9458":2690,"9459":2690,"9460":2689,"9461":2690,"9462":2688,"9463":2688,"9464":2689,"9465":2690,"9466":2688,"9467":2689,"9468":2690,"9469":2689,"9470":2689,"9471":2689,"9472":2688,"9473":2689,"9474":2689,"9475":2689,"9476":2690,"9477":2689,"9478":2688,"9479":2690,"9480":2688,"9481":2688,"9482":2690,"9483":2689,"9484":2688,"9485":2689,"9486":2689,"9487":2688,"9488":2690,"9489":2690,"9490":2689,"9491":2690,"9492":2688,"9493":2689,"9494":2689,"9495":2689,"9496":2688,"9497":2689,"9498":2689,"9499":2689,"9500":2688,"9501":2689,"9502":2688,"9503":2690,"9504":2689,"9505":2690,"9506":2689,"9507":2689,"9508":2690,"9509":2689,"9510":2689,"9511":2688,"9512":2690,"9513":2690,"9514":2688,"9515":2689,"9516":2688,"9517":2688,"9518":2688,"9519":2688,"9520":2689,"9521":2689,"9522":2688,"9523":2690,"9524":2689,"9525":2689,"9526":2690,"9527":2690,"9528":2688,"9529":2690,"9530":2689,"9531":2689,"9532":2689,"9533":2689,"9534":2688,"9535":2688,"9536":2690,"9537":2689,"9538":2689,"9539":2688,"9540":2688,"9541":2688,"9542":2689,"9543":2690,"9544":2689,"9545":2690,"9546":2689,"9547":2689,"9548":2690,"9549":2690,"9550":2688,"9551":2689,"9552":2689,"9553":2689,"9554":2688,"9555":2690,"9556":2690,"9557":2689,"9558":2689,"9559":2689,"9560":2689,"9561":2690,"9562":2688,"9563":2690,"9564":2689,"9565":2689,"9566":2690,"9567":2688,"9568":2689,"9569":2689,"9570":2689,"9571":2688,"9572":2689,"9573":2689,"9574":2688,"9575":2690,"9576":2688,"9577":2689,"9578":2689,"9579":2690,"9580":2689,"9581":2688,"9582":2690,"9583":2689,"9584":2689,"9585":2689,"9586":2689,"9587":2690,"9588":2689,"9589":2690,"9590":2690,"9591":2689,"9592":2690,"9593":2689,"9594":2688,"9595":2688,"9596":2689,"9597":2690,"9598":2689,"9599":2688,"9600":2689,"9601":2689,"9602":2690,"9603":2688,"9604":2690,"9605":2688,"9606":2689,"9607":2689,"9608":2689,"9609":2690,"9610":2689,"9611":2690,"9612":2690,"9613":2689,"9614":2690,"9615":2690,"9616":2689,"9617":2689,"9618":2688,"9619":2689,"9620":2689,"9621":2689,"9622":2689,"9623":2689,"9624":2689,"9625":2689,"9626":2688,"9627":2688,"9628":2688,"9629":2688,"9630":2689,"9631":2689,"9632":2689,"9633":2689,"9634":2689,"9635":2690,"9636":2689,"9637":2689,"9638":2690,"9639":2689,"9640":2690,"9641":2689,"9642":2689,"9643":2690,"9644":2688,"9645":2689,"9646":2689,"9647":2689,"9648":2688,"9649":2690,"9650":2690,"9651":2689,"9652":2690,"9653":2689,"9654":2689,"9655":2690,"9656":2690,"9657":2689,"9658":2690,"9659":2688,"9660":2688,"9661":2689,"9662":2690,"9663":2690,"9664":2690,"9665":2689,"9666":2689,"9667":2690,"9668":2690,"9669":2689,"9670":2689,"9671":2688,"9672":2689,"9673":2689,"9674":2689,"9675":2689,"9676":2688,"9677":2689,"9678":2688,"9679":2690,"9680":2690,"9681":2689,"9682":2688,"9683":2688,"9684":2689,"9685":2688,"9686":2688,"9687":2688,"9688":2688,"9689":2688,"9690":2689,"9691":2690,"9692":2690,"9693":2688,"9694":2689,"9695":2688,"9696":2689,"9697":2690,"9698":2690,"9699":2690,"9700":2689,"9701":2690,"9702":2690,"9703":2689,"9704":2689,"9705":2689,"9706":2690,"9707":2690,"9708":2689,"9709":2688,"9710":2689,"9711":2689,"9712":2688,"9713":2690,"9714":2689,"9715":2688,"9716":2688,"9717":2689,"9718":2688,"9719":2689,"9720":2688,"9721":2689,"9722":2689,"9723":2689,"9724":2690,"9725":2689,"9726":2689,"9727":2689,"9728":2690,"9729":2688,"9730":2689,"9731":2690,"9732":2689,"9733":2690,"9734":2689,"9735":2688,"9736":2689,"9737":2689,"9738":2689,"9739":2689,"9740":2690,"9741":2689,"9742":2688,"9743":2689,"9744":2690,"9745":2690,"9746":2688,"9747":2690,"9748":2690,"9749":2689,"9750":2688,"9751":2689,"9752":2689,"9753":2689,"9754":2690,"9755":2689,"9756":2688,"9757":2688,"9758":2689,"9759":2688,"9760":2689,"9761":2689,"9762":2689,"9763":2688,"9764":2689,"9765":2689,"9766":2688,"9767":2689,"9768":2690,"9769":2690,"9770":2688,"9771":2688,"9772":2689,"9773":2689,"9774":2690,"9775":2689,"9776":2689,"9777":2689,"9778":2689,"9779":2688,"9780":2689,"9781":2689,"9782":2690,"9783":2689,"9784":2689,"9785":2689,"9786":2688,"9787":2689,"9788":2690,"9789":2690,"9790":2689,"9791":2690,"9792":2688,"9793":2689,"9794":2689,"9795":2688,"9796":2689,"9797":2689,"9798":2689,"9799":2690,"9800":2688,"9801":2689,"9802":2689,"9803":2689,"9804":2690,"9805":2689,"9806":2689,"9807":2689,"9808":2690,"9809":2689,"9810":2689,"9811":2688,"9812":2688,"9813":2689,"9814":2688,"9815":2690,"9816":2688,"9817":2690,"9818":2689,"9819":2689,"9820":2689,"9821":2689,"9822":2689,"9823":2689,"9824":2688,"9825":2689,"9826":2689,"9827":2690,"9828":2690,"9829":2689,"9830":2690,"9831":2689,"9832":2689,"9833":2689,"9834":2689,"9835":2689,"9836":2689,"9837":2689,"9838":2688,"9839":2689,"9840":2688,"9841":2689,"9842":2688,"9843":2689,"9844":2689,"9845":2689,"9846":2689,"9847":2689,"9848":2689,"9849":2688,"9850":2689,"9851":2690,"9852":2688,"9853":2689,"9854":2690,"9855":2689,"9856":2689,"9857":2689,"9858":2689,"9859":2689,"9860":2690,"9861":2688,"9862":2690,"9863":2689,"9864":2689,"9865":2689,"9866":2690,"9867":2688,"9868":2689,"9869":2689,"9870":2689,"9871":2689,"9872":2689,"9873":2689,"9874":2690,"9875":2689,"9876":2690,"9877":2688,"9878":2689,"9879":2690,"9880":2688,"9881":2689,"9882":2689,"9883":2688,"9884":2689,"9885":2690,"9886":2689,"9887":2690,"9888":2689,"9889":2690,"9890":2690,"9891":2689,"9892":2689,"9893":2688,"9894":2690,"9895":2689,"9896":2689,"9897":2688,"9898":2688,"9899":2690,"9900":2688,"9901":2690,"9902":2690,"9903":2690,"9904":2688,"9905":2688,"9906":2688,"9907":2690,"9908":2688,"9909":2689,"9910":2688,"9911":2688,"9912":2689,"9913":2690,"9914":2688,"9915":2688,"9916":2689,"9917":2689,"9918":2688,"9919":2690,"9920":2689,"9921":2689,"9922":2688,"9923":2689,"9924":2689,"9925":2690,"9926":2689,"9927":2690,"9928":2688,"9929":2689,"9930":2688,"9931":2689,"9932":2688,"9933":2689,"9934":2689,"9935":2690,"9936":2689,"9937":2690,"9938":2689,"9939":2688,"9940":2688,"9941":2689,"9942":2688,"9943":2690,"9944":2689,"9945":2689,"9946":2689,"9947":2689,"9948":2689,"9949":2688,"9950":2689,"9951":2690,"9952":2688,"9953":2688,"9954":2689,"9955":2690,"9956":2689,"9957":2690,"9958":2689,"9959":2689,"9960":2689,"9961":2689,"9962":2689,"9963":2689,"9964":2689,"9965":2690,"9966":2688,"9967":2690,"9968":2688,"9969":2690,"9970":2688,"9971":2689,"9972":2689,"9973":2689,"9974":2690,"9975":2690,"9976":2689,"9977":2688,"9978":2688,"9979":2690,"9980":2690,"9981":2689,"9982":2689,"9983":2689,"9984":2688,"9985":2689,"9986":2689,"9987":2689,"9988":2690,"9989":2688,"9990":2688,"9991":2688,"9992":2689,"9993":2689,"9994":2689,"9995":2689,"9996":2688,"9997":2688,"9998":2690,"9999":2690,"10000":2689,"10001":2688,"10002":2690,"10003":2689,"10004":2690,"10005":2689,"10006":2688,"10007":2688,"10008":2689,"10009":2688,"10010":2688,"10011":2689,"10012":2688,"10013":2689,"10014":2688,"10015":2689,"10016":2689,"10017":2690,"10018":2690,"10019":2689,"10020":2689,"10021":2688,"10022":2690,"10023":2688,"10024":2688,"10025":2689,"10026":2690,"10027":2688,"10028":2689,"10029":2689,"10030":2690,"10031":2690,"10032":2690,"10033":2688,"10034":2688,"10035":2689,"10036":2689,"10037":2689,"10038":2689,"10039":2688,"10040":2688,"10041":2690,"10042":2689,"10043":2689,"10044":2689,"10045":2689,"10046":2690,"10047":2689,"10048":2688,"10049":2690,"10050":2689,"10051":2689,"10052":2688,"10053":2689,"10054":2690,"10055":2688,"10056":2690,"10057":2689,"10058":2688,"10059":2690,"10060":2688,"10061":2688,"10062":2689,"10063":2688,"10064":2689,"10065":2689,"10066":2690,"10067":2689,"10068":2689,"10069":2688,"10070":2689,"10071":2689,"10072":2688,"10073":2690,"10074":2690,"10075":2689,"10076":2690,"10077":2688,"10078":2689,"10079":2690,"10080":2689,"10081":2689,"10082":2688,"10083":2689,"10084":2690,"10085":2689,"10086":2689,"10087":2690,"10088":2689,"10089":2688,"10090":2690,"10091":2689,"10092":2689,"10093":2689,"10094":2688,"10095":2689,"10096":2689,"10097":2689,"10098":2689,"10099":2688,"10100":2689,"10101":2689,"10102":2690,"10103":2689,"10104":2688,"10105":2688,"10106":2690,"10107":2689,"10108":2690,"10109":2689,"10110":2690,"10111":2690,"10112":2689,"10113":2688,"10114":2689,"10115":2689,"10116":2690,"10117":2689,"10118":2689,"10119":2688,"10120":2689,"10121":2689,"10122":2689,"10123":2689,"10124":2690,"10125":2688,"10126":2690,"10127":2689,"10128":2688,"10129":2689,"10130":2689,"10131":2689,"10132":2688,"10133":2689,"10134":2688,"10135":2688,"10136":2690,"10137":2688,"10138":2689,"10139":2689,"10140":2689,"10141":2689,"10142":2689,"10143":2689,"10144":2690,"10145":2690,"10146":2689,"10147":2688,"10148":2688,"10149":2689,"10150":2690,"10151":2689,"10152":2689,"10153":2690,"10154":2688,"10155":2690,"10156":2688,"10157":2688,"10158":2689,"10159":2689,"10160":2690,"10161":2689,"10162":2689,"10163":2689,"10164":2689,"10165":2690,"10166":2690,"10167":2690,"10168":2689,"10169":2688,"10170":2689,"10171":2688,"10172":2690,"10173":2689,"10174":2688,"10175":2689,"10176":2689,"10177":2690,"10178":2690,"10179":2690,"10180":2689,"10181":2690,"10182":2689,"10183":2688,"10184":2689,"10185":2689,"10186":2689,"10187":2688,"10188":2690,"10189":2690,"10190":2689,"10191":2690,"10192":2689,"10193":2689,"10194":2690,"10195":2689,"10196":2688,"10197":2689,"10198":2688,"10199":2689,"10200":2689,"10201":2688,"10202":2690,"10203":2689,"10204":2688,"10205":2688,"10206":2690,"10207":2689,"10208":2689,"10209":2689,"10210":2689,"10211":2690,"10212":2689,"10213":2690,"10214":2688,"10215":2689,"10216":2689,"10217":2689,"10218":2689,"10219":2689,"10220":2689,"10221":2688,"10222":2690,"10223":2688,"10224":2688,"10225":2688,"10226":2688,"10227":2689,"10228":2689,"10229":2689,"10230":2688,"10231":2688,"10232":2689,"10233":2690,"10234":2690,"10235":2690,"10236":2689,"10237":2690,"10238":2688,"10239":2688,"10240":2688,"10241":2690,"10242":2689,"10243":2688,"10244":2690,"10245":2690,"10246":2689,"10247":2688,"10248":2688,"10249":2689,"10250":2689,"10251":2689,"10252":2689,"10253":2689,"10254":2688,"10255":2690,"10256":2690,"10257":2689,"10258":2690,"10259":2688,"10260":2689,"10261":2688,"10262":2689,"10263":2689,"10264":2690,"10265":2688,"10266":2689,"10267":2689,"10268":2690,"10269":2689,"10270":2688,"10271":2690,"10272":2689,"10273":2689,"10274":2688,"10275":2689,"10276":2689,"10277":2689,"10278":2688,"10279":2689,"10280":2689,"10281":2689,"10282":2689,"10283":2690,"10284":2690,"10285":2689,"10286":2688,"10287":2688,"10288":2689,"10289":2689,"10290":2689,"10291":2690,"10292":2689,"10293":2689,"10294":2689,"10295":2690,"10296":2689,"10297":2688,"10298":2689,"10299":2690,"10300":2688,"10301":2689,"10302":2690,"10303":2689,"10304":2688,"10305":2689,"10306":2689,"10307":2689,"10308":2690,"10309":2690,"10310":2689,"10311":2689,"10312":2689,"10313":2689,"10314":2690,"10315":2690,"10316":2689,"10317":2688,"10318":2689,"10319":2690,"10320":2690,"10321":2688,"10322":2689,"10323":2689,"10324":2690,"10325":2689,"10326":2690,"10327":2688,"10328":2688,"10329":2688,"10330":2688,"10331":2689,"10332":2688,"10333":2688,"10334":2689,"10335":2689,"10336":2689,"10337":2689,"10338":2689,"10339":2688,"10340":2688,"10341":2690,"10342":2688,"10343":2689,"10344":2689,"10345":2689,"10346":2689,"10347":2688,"10348":2688,"10349":2689,"10350":2690,"10351":2689,"10352":2688,"10353":2690,"10354":2688,"10355":2689,"10356":2688,"10357":2688,"10358":2688,"10359":2689,"10360":2689,"10361":2689,"10362":2689,"10363":2690,"10364":2689,"10365":2689,"10366":2689,"10367":2689,"10368":2690,"10369":2689,"10370":2690,"10371":2689,"10372":2689,"10373":2688,"10374":2689,"10375":2688,"10376":2689,"10377":2689,"10378":2688,"10379":2689,"10380":2689,"10381":2689,"10382":2689,"10383":2688,"10384":2689,"10385":2690,"10386":2689,"10387":2688,"10388":2688,"10389":2689,"10390":2689,"10391":2688,"10392":2689,"10393":2689,"10394":2688,"10395":2688,"10396":2689,"10397":2688,"10398":2689,"10399":2689,"10400":2688,"10401":2688,"10402":2689,"10403":2690,"10404":2689,"10405":2689,"10406":2688,"10407":2689,"10408":2688,"10409":2689,"10410":2689,"10411":2688,"10412":2688,"10413":2688,"10414":2689,"10415":2689,"10416":2688,"10417":2689,"10418":2688,"10419":2689,"10420":2688,"10421":2689,"10422":2690,"10423":2689,"10424":2688,"10425":2689,"10426":2689,"10427":2688,"10428":2688,"10429":2688,"10430":2688,"10431":2688,"10432":2689,"10433":2689,"10434":2690,"10435":2688,"10436":2689,"10437":2689,"10438":2689,"10439":2690,"10440":2690,"10441":2689,"10442":2690,"10443":2690,"10444":2690,"10445":2689,"10446":2688,"10447":2688,"10448":2689,"10449":2689,"10450":2690,"10451":2690,"10452":2688,"10453":2688,"10454":2690,"10455":2688,"10456":2689,"10457":2689,"10458":2689,"10459":2689,"10460":2689,"10461":2689,"10462":2690,"10463":2688,"10464":2689,"10465":2689,"10466":2689,"10467":2688,"10468":2690,"10469":2689,"10470":2689,"10471":2690,"10472":2689,"10473":2689,"10474":2690,"10475":2688,"10476":2688,"10477":2690,"10478":2688,"10479":2690,"10480":2689,"10481":2690,"10482":2689,"10483":2689,"10484":2689,"10485":2689,"10486":2689,"10487":2689,"10488":2690,"10489":2689,"10490":2690,"10491":2690,"10492":2688,"10493":2689,"10494":2690,"10495":2688,"10496":2690,"10497":2689,"10498":2688,"10499":2689,"10500":2689,"10501":2690,"10502":2690,"10503":2688,"10504":2690,"10505":2688,"10506":2688,"10507":2689,"10508":2689,"10509":2688,"10510":2689,"10511":2690,"10512":2689,"10513":2689,"10514":2690,"10515":2689,"10516":2688,"10517":2689,"10518":2689,"10519":2689,"10520":2688,"10521":2688,"10522":2688,"10523":2688,"10524":2689,"10525":2688,"10526":2689,"10527":2689,"10528":2689,"10529":2689,"10530":2689,"10531":2689,"10532":2690,"10533":2689,"10534":2690,"10535":2689,"10536":2688,"10537":2690,"10538":2688,"10539":2690,"10540":2690,"10541":2689,"10542":2689,"10543":2690,"10544":2689,"10545":2688,"10546":2689,"10547":2690,"10548":2690,"10549":2688,"10550":2690,"10551":2689,"10552":2689,"10553":2689,"10554":2689,"10555":2689,"10556":2689,"10557":2689,"10558":2690,"10559":2689,"10560":2689,"10561":2690,"10562":2688,"10563":2688,"10564":2688,"10565":2688,"10566":2688,"10567":2688,"10568":2689,"10569":2690,"10570":2690,"10571":2690,"10572":2688,"10573":2690,"10574":2689,"10575":2689,"10576":2689,"10577":2689,"10578":2688,"10579":2689,"10580":2688,"10581":2689,"10582":2689,"10583":2688,"10584":2688,"10585":2688,"10586":2688,"10587":2689,"10588":2688,"10589":2689,"10590":2688,"10591":2690,"10592":2689,"10593":2689,"10594":2689,"10595":2688,"10596":2688,"10597":2690,"10598":2690,"10599":2689,"10600":2690,"10601":2689,"10602":2688,"10603":2690,"10604":2688,"10605":2690,"10606":2690,"10607":2689,"10608":2688,"10609":2688,"10610":2690,"10611":2688,"10612":2689,"10613":2689,"10614":2688,"10615":2689,"10616":2688,"10617":2689,"10618":2690,"10619":2689,"10620":2689,"10621":2689,"10622":2688,"10623":2689,"10624":2688,"10625":2690,"10626":2690,"10627":2689,"10628":2688,"10629":2689,"10630":2689,"10631":2689,"10632":2689,"10633":2689,"10634":2689,"10635":2688,"10636":2688,"10637":2689,"10638":2690,"10639":2689,"10640":2689,"10641":2689,"10642":2688,"10643":2689,"10644":2689,"10645":2690,"10646":2689,"10647":2688,"10648":2688,"10649":2690,"10650":2689,"10651":2690,"10652":2688,"10653":2689,"10654":2689,"10655":2688,"10656":2690,"10657":2689,"10658":2689,"10659":2689,"10660":2690,"10661":2689,"10662":2689,"10663":2690,"10664":2689,"10665":2688,"10666":2688,"10667":2689,"10668":2688,"10669":2688,"10670":2689,"10671":2690,"10672":2689,"10673":2689,"10674":2690,"10675":2690,"10676":2690,"10677":2689,"10678":2690,"10679":2688,"10680":2689,"10681":2690,"10682":2690,"10683":2690,"10684":2688,"10685":2690,"10686":2688,"10687":2689,"10688":2690,"10689":2689,"10690":2688,"10691":2688,"10692":2688,"10693":2689,"10694":2689,"10695":2689,"10696":2689,"10697":2689,"10698":2690,"10699":2690,"10700":2688,"10701":2688,"10702":2688,"10703":2690,"10704":2689,"10705":2689,"10706":2688,"10707":2688,"10708":2688,"10709":2690,"10710":2689,"10711":2690,"10712":2688,"10713":2688,"10714":2689,"10715":2690,"10716":2688,"10717":2689,"10718":2690,"10719":2688,"10720":2689,"10721":2690,"10722":2689,"10723":2690,"10724":2689,"10725":2688,"10726":2690,"10727":2690,"10728":2688,"10729":2689,"10730":2688,"10731":2689,"10732":2689,"10733":2689,"10734":2689,"10735":2689,"10736":2689,"10737":2688,"10738":2690,"10739":2688,"10740":2689,"10741":2689,"10742":2689,"10743":2689,"10744":2689,"10745":2689,"10746":2689,"10747":2689,"10748":2689,"10749":2688,"10750":2688,"10751":2689,"10752":2690,"10753":2690,"10754":2689,"10755":2689,"10756":2689,"10757":2689,"10758":2689,"10759":2688,"10760":2689,"10761":2690,"10762":2688,"10763":2690,"10764":2689,"10765":2688,"10766":2688,"10767":2690,"10768":2689,"10769":2690,"10770":2689,"10771":2688,"10772":2689,"10773":2689,"10774":2690,"10775":2689,"10776":2690,"10777":2690,"10778":2689,"10779":2689,"10780":2689,"10781":2689,"10782":2690,"10783":2689,"10784":2689,"10785":2689,"10786":2688,"10787":2690,"10788":2690,"10789":2690,"10790":2690,"10791":2689,"10792":2689,"10793":2689,"10794":2689,"10795":2690,"10796":2689,"10797":2689,"10798":2688,"10799":2689,"10800":2690,"10801":2689,"10802":2689,"10803":2690,"10804":2690,"10805":2688,"10806":2688,"10807":2688,"10808":2690,"10809":2690,"10810":2689,"10811":2689,"10812":2689,"10813":2689,"10814":2689,"10815":2690,"10816":2689,"10817":2689,"10818":2689,"10819":2688,"10820":2690,"10821":2689,"10822":2689,"10823":2690,"10824":2688,"10825":2688,"10826":2689,"10827":2688,"10828":2689,"10829":2689,"10830":2689,"10831":2688,"10832":2688,"10833":2689,"10834":2688,"10835":2689,"10836":2690,"10837":2689,"10838":2689,"10839":2690,"10840":2690,"10841":2689,"10842":2690,"10843":2689,"10844":2690,"10845":2689,"10846":2689,"10847":2688,"10848":2690,"10849":2689,"10850":2690,"10851":2688,"10852":2690,"10853":2690,"10854":2690,"10855":2688,"10856":2690,"10857":2689,"10858":2689,"10859":2689,"10860":2689,"10861":2689,"10862":2689,"10863":2688,"10864":2689,"10865":2689,"10866":2688,"10867":2688,"10868":2688,"10869":2689,"10870":2689,"10871":2690,"10872":2689,"10873":2689,"10874":2688,"10875":2688,"10876":2689,"10877":2690,"10878":2690,"10879":2689,"10880":2688,"10881":2688,"10882":2688,"10883":2688,"10884":2689,"10885":2689,"10886":2690,"10887":2690,"10888":2690,"10889":2690,"10890":2690,"10891":2688,"10892":2690,"10893":2689,"10894":2689,"10895":2688,"10896":2688,"10897":2690,"10898":2689,"10899":2688,"10900":2689,"10901":2689,"10902":2688,"10903":2689,"10904":2688,"10905":2689,"10906":2689,"10907":2690,"10908":2690,"10909":2688,"10910":2688,"10911":2689,"10912":2690,"10913":2689,"10914":2688,"10915":2689,"10916":2688,"10917":2688,"10918":2688,"10919":2689,"10920":2689,"10921":2689,"10922":2688,"10923":2690,"10924":2689,"10925":2690,"10926":2690,"10927":2688,"10928":2689,"10929":2690,"10930":2688,"10931":2689,"10932":2689,"10933":2690,"10934":2688,"10935":2688,"10936":2690,"10937":2689,"10938":2690,"10939":2688,"10940":2689,"10941":2689,"10942":2690,"10943":2688,"10944":2690,"10945":2688,"10946":2688,"10947":2690,"10948":2688,"10949":2689,"10950":2689,"10951":2689,"10952":2689,"10953":2690,"10954":2689,"10955":2689,"10956":2689,"10957":2690,"10958":2689,"10959":2689,"10960":2688,"10961":2690,"10962":2690,"10963":2689,"10964":2690,"10965":2690,"10966":2690,"10967":2690,"10968":2690,"10969":2689,"10970":2690,"10971":2690,"10972":2690,"10973":2690,"10974":2689,"10975":2690,"10976":2689,"10977":2690,"10978":2688,"10979":2690,"10980":2689,"10981":2689,"10982":2689,"10983":2689,"10984":2688,"10985":2689,"10986":2690,"10987":2690,"10988":2688,"10989":2689,"10990":2690,"10991":2689,"10992":2688,"10993":2689,"10994":2689,"10995":2689,"10996":2689,"10997":2690,"10998":2689,"10999":2689,"11000":2690,"11001":2689,"11002":2689,"11003":2689,"11004":2689,"11005":2689,"11006":2689,"11007":2690,"11008":2688,"11009":2688,"11010":2688,"11011":2688,"11012":2689,"11013":2689,"11014":2690,"11015":2688,"11016":2689,"11017":2688,"11018":2689,"11019":2688,"11020":2689,"11021":2690,"11022":2689,"11023":2690,"11024":2690,"11025":2690,"11026":2690,"11027":2689,"11028":2690,"11029":2689,"11030":2690,"11031":2690,"11032":2689,"11033":2688,"11034":2688,"11035":2689,"11036":2689,"11037":2689,"11038":2689,"11039":2689,"11040":2689,"11041":2690,"11042":2690,"11043":2689,"11044":2688,"11045":2690,"11046":2690,"11047":2688,"11048":2688,"11049":2689,"11050":2689,"11051":2689,"11052":2690,"11053":2690,"11054":2688,"11055":2688,"11056":2690,"11057":2689,"11058":2690,"11059":2688,"11060":2689,"11061":2690,"11062":2688,"11063":2690,"11064":2688,"11065":2688,"11066":2689,"11067":2690,"11068":2688,"11069":2689,"11070":2690,"11071":2688,"11072":2689,"11073":2689,"11074":2689,"11075":2689,"11076":2688,"11077":2689,"11078":2688,"11079":2688,"11080":2688,"11081":2688,"11082":2690,"11083":2688,"11084":2690,"11085":2689,"11086":2690,"11087":2690,"11088":2690,"11089":2689,"11090":2688,"11091":2688,"11092":2690,"11093":2689,"11094":2689,"11095":2689,"11096":2690,"11097":2689,"11098":2689,"11099":2690,"11100":2689,"11101":2689,"11102":2690,"11103":2690,"11104":2690,"11105":2689,"11106":2690,"11107":2689,"11108":2688,"11109":2690,"11110":2689,"11111":2688,"11112":2689,"11113":2689,"11114":2689,"11115":2689,"11116":2690,"11117":2690,"11118":2690,"11119":2690,"11120":2689,"11121":2689,"11122":2689,"11123":2690,"11124":2689,"11125":2690,"11126":2690,"11127":2690,"11128":2689,"11129":2688,"11130":2688,"11131":2688,"11132":2690,"11133":2689,"11134":2688,"11135":2688,"11136":2688,"11137":2689,"11138":2689,"11139":2688,"11140":2689,"11141":2689,"11142":2688,"11143":2689,"11144":2689,"11145":2688,"11146":2689,"11147":2689,"11148":2689,"11149":2690,"11150":2689,"11151":2689,"11152":2689,"11153":2690,"11154":2689,"11155":2690,"11156":2690,"11157":2690,"11158":2688,"11159":2688,"11160":2689,"11161":2689,"11162":2688,"11163":2688,"11164":2688,"11165":2690,"11166":2689,"11167":2689,"11168":2688,"11169":2689,"11170":2690,"11171":2689,"11172":2689,"11173":2690,"11174":2688,"11175":2688,"11176":2689,"11177":2690,"11178":2689,"11179":2689,"11180":2690,"11181":2689,"11182":2688,"11183":2690,"11184":2689,"11185":2689,"11186":2689,"11187":2689,"11188":2689,"11189":2689,"11190":2689,"11191":2689,"11192":2689,"11193":2689,"11194":2690,"11195":2690,"11196":2689,"11197":2689,"11198":2688,"11199":2688,"11200":2688,"11201":2689,"11202":2690,"11203":2689,"11204":2688,"11205":2689,"11206":2688,"11207":2688,"11208":2689,"11209":2689,"11210":2690,"11211":2689,"11212":2688,"11213":2689,"11214":2689,"11215":2690,"11216":2690,"11217":2689,"11218":2689,"11219":2689,"11220":2689,"11221":2688,"11222":2690,"11223":2689,"11224":2689,"11225":2690,"11226":2689,"11227":2689,"11228":2688,"11229":2689,"11230":2689,"11231":2690,"11232":2689,"11233":2689,"11234":2690,"11235":2690,"11236":2688,"11237":2689,"11238":2689,"11239":2689,"11240":2689,"11241":2688,"11242":2689,"11243":2689,"11244":2690,"11245":2688,"11246":2690,"11247":2688,"11248":2689,"11249":2690,"11250":2688,"11251":2689,"11252":2690,"11253":2690,"11254":2689,"11255":2688,"11256":2689,"11257":2689,"11258":2689,"11259":2689,"11260":2689,"11261":2690,"11262":2688,"11263":2689,"11264":2689,"11265":2689,"11266":2689,"11267":2688,"11268":2688,"11269":2689,"11270":2688,"11271":2690,"11272":2689,"11273":2689,"11274":2689,"11275":2689,"11276":2690,"11277":2689,"11278":2690,"11279":2690,"11280":2690,"11281":2689,"11282":2690,"11283":2690,"11284":2688,"11285":2688,"11286":2690,"11287":2690,"11288":2689,"11289":2689,"11290":2690,"11291":2688,"11292":2689,"11293":2690,"11294":2689,"11295":2688,"11296":2689,"11297":2689,"11298":2688,"11299":2689,"11300":2690,"11301":2689,"11302":2688,"11303":2690,"11304":2688,"11305":2690,"11306":2688,"11307":2689,"11308":2690,"11309":2689,"11310":2690,"11311":2690,"11312":2689,"11313":2688,"11314":2688,"11315":2690,"11316":2690,"11317":2689,"11318":2690,"11319":2688,"11320":2689,"11321":2688,"11322":2689,"11323":2688,"11324":2689,"11325":2689,"11326":2689,"11327":2689,"11328":2688,"11329":2690,"11330":2689,"11331":2688,"11332":2689,"11333":2689,"11334":2689,"11335":2690,"11336":2689,"11337":2688,"11338":2690,"11339":2689,"11340":2688,"11341":2690,"11342":2690,"11343":2689,"11344":2689,"11345":2689,"11346":2688,"11347":2689,"11348":2689,"11349":2689,"11350":2689,"11351":2688,"11352":2688,"11353":2689,"11354":2689,"11355":2690,"11356":2690,"11357":2690,"11358":2688,"11359":2688,"11360":2689,"11361":2690,"11362":2689,"11363":2690,"11364":2689,"11365":2688,"11366":2689,"11367":2689,"11368":2688,"11369":2689,"11370":2689,"11371":2688,"11372":2689,"11373":2688,"11374":2688,"11375":2688,"11376":2690,"11377":2688,"11378":2689,"11379":2690,"11380":2688,"11381":2689,"11382":2689,"11383":2688,"11384":2689,"11385":2689,"11386":2689,"11387":2688,"11388":2689,"11389":2689,"11390":2688,"11391":2689,"11392":2689,"11393":2689,"11394":2689,"11395":2688,"11396":2690,"11397":2689,"11398":2690,"11399":2690,"11400":2689,"11401":2689,"11402":2690,"11403":2689,"11404":2690,"11405":2689,"11406":2688,"11407":2689,"11408":2689,"11409":2688,"11410":2688,"11411":2689,"11412":2690,"11413":2688,"11414":2688,"11415":2688,"11416":2689,"11417":2689,"11418":2690,"11419":2688,"11420":2689,"11421":2690,"11422":2689,"11423":2690,"11424":2689,"11425":2688,"11426":2688,"11427":2689,"11428":2690,"11429":2689,"11430":2689,"11431":2690,"11432":2689,"11433":2689,"11434":2690,"11435":2689,"11436":2689,"11437":2690,"11438":2688,"11439":2690,"11440":2689,"11441":2688,"11442":2688,"11443":2689,"11444":2690,"11445":2689,"11446":2689,"11447":2689,"11448":2688,"11449":2689,"11450":2690,"11451":2690,"11452":2690,"11453":2689,"11454":2688,"11455":2688,"11456":2689,"11457":2690,"11458":2689,"11459":2688,"11460":2689,"11461":2689,"11462":2689,"11463":2690,"11464":2688,"11465":2689,"11466":2689,"11467":2689,"11468":2690,"11469":2689,"11470":2690,"11471":2689,"11472":2688,"11473":2689,"11474":2689,"11475":2688,"11476":2690,"11477":2688,"11478":2690,"11479":2689,"11480":2689,"11481":2690,"11482":2689,"11483":2689,"11484":2690,"11485":2689,"11486":2689,"11487":2688,"11488":2689,"11489":2688,"11490":2689,"11491":2689,"11492":2688,"11493":2690,"11494":2690,"11495":2689,"11496":2689,"11497":2689,"11498":2689,"11499":2690,"11500":2689,"11501":2689,"11502":2690,"11503":2689,"11504":2690,"11505":2689,"11506":2690,"11507":2688,"11508":2688,"11509":2688,"11510":2690,"11511":2689,"11512":2689,"11513":2688,"11514":2688,"11515":2688,"11516":2689,"11517":2688,"11518":2689,"11519":2690,"11520":2690,"11521":2689,"11522":2689,"11523":2689,"11524":2690,"11525":2689,"11526":2689,"11527":2688,"11528":2689,"11529":2689,"11530":2689,"11531":2689,"11532":2689,"11533":2690,"11534":2689,"11535":2690,"11536":2690,"11537":2688,"11538":2689,"11539":2689,"11540":2689,"11541":2688,"11542":2689,"11543":2688,"11544":2690,"11545":2688,"11546":2690,"11547":2690,"11548":2689,"11549":2690,"11550":2689,"11551":2688,"11552":2689,"11553":2689,"11554":2689,"11555":2690,"11556":2689,"11557":2690,"11558":2690,"11559":2690,"11560":2690,"11561":2689,"11562":2689,"11563":2688,"11564":2690,"11565":2689,"11566":2689,"11567":2688,"11568":2689,"11569":2688,"11570":2689,"11571":2690,"11572":2690,"11573":2689,"11574":2688,"11575":2689,"11576":2689,"11577":2688,"11578":2689,"11579":2689,"11580":2690,"11581":2689,"11582":2689,"11583":2688,"11584":2688,"11585":2689,"11586":2688,"11587":2690,"11588":2689,"11589":2690,"11590":2690,"11591":2689,"11592":2690,"11593":2689,"11594":2688,"11595":2690,"11596":2690,"11597":2689,"11598":2688,"11599":2690,"11600":2689,"11601":2689,"11602":2690,"11603":2689,"11604":2689,"11605":2689,"11606":2688,"11607":2689,"11608":2689,"11609":2689,"11610":2689,"11611":2690,"11612":2690,"11613":2688,"11614":2689,"11615":2689,"11616":2689,"11617":2689,"11618":2689,"11619":2690,"11620":2689,"11621":2690,"11622":2689,"11623":2689,"11624":2688,"11625":2690,"11626":2688,"11627":2688,"11628":2688,"11629":2689,"11630":2689,"11631":2689,"11632":2690,"11633":2689,"11634":2689,"11635":2689,"11636":2688,"11637":2689,"11638":2688,"11639":2689,"11640":2688,"11641":2690,"11642":2688,"11643":2689,"11644":2689,"11645":2690,"11646":2688,"11647":2690,"11648":2688,"11649":2689,"11650":2689,"11651":2689,"11652":2689,"11653":2688,"11654":2688,"11655":2689,"11656":2688,"11657":2689,"11658":2690,"11659":2689,"11660":2689,"11661":2689,"11662":2689,"11663":2689,"11664":2690,"11665":2688,"11666":2690,"11667":2690,"11668":2690,"11669":2690,"11670":2690,"11671":2689,"11672":2688,"11673":2690,"11674":2689,"11675":2689,"11676":2689,"11677":2689,"11678":2688,"11679":2690,"11680":2688,"11681":2690,"11682":2690,"11683":2690,"11684":2689,"11685":2688,"11686":2689,"11687":2690,"11688":2688,"11689":2688,"11690":2689,"11691":2688,"11692":2690,"11693":2689,"11694":2689,"11695":2689,"11696":2689,"11697":2689,"11698":2689,"11699":2688,"11700":2689,"11701":2688,"11702":2689,"11703":2688,"11704":2689,"11705":2688,"11706":2689,"11707":2689,"11708":2688,"11709":2690,"11710":2690,"11711":2690,"11712":2689,"11713":2690,"11714":2688,"11715":2689,"11716":2690,"11717":2688,"11718":2689,"11719":2690,"11720":2689,"11721":2689,"11722":2690,"11723":2690,"11724":2689,"11725":2689,"11726":2689,"11727":2689,"11728":2690,"11729":2690,"11730":2690,"11731":2690,"11732":2690,"11733":2688,"11734":2688,"11735":2688,"11736":2689,"11737":2689,"11738":2688,"11739":2689,"11740":2689,"11741":2689,"11742":2689,"11743":2690,"11744":2690,"11745":2688,"11746":2690,"11747":2690,"11748":2689,"11749":2688,"11750":2689,"11751":2690,"11752":2690,"11753":2688,"11754":2689,"11755":2689,"11756":2688,"11757":2689,"11758":2688,"11759":2689,"11760":2690,"11761":2688,"11762":2690,"11763":2689,"11764":2689,"11765":2690,"11766":2688,"11767":2689,"11768":2689,"11769":2688,"11770":2688,"11771":2689,"11772":2688,"11773":2688,"11774":2689,"11775":2690,"11776":2688,"11777":2690,"11778":2689,"11779":2689,"11780":2689,"11781":2689,"11782":2688,"11783":2690,"11784":2689,"11785":2688,"11786":2689,"11787":2690,"11788":2688,"11789":2689,"11790":2688,"11791":2689,"11792":2688,"11793":2688,"11794":2690,"11795":2688,"11796":2689,"11797":2690,"11798":2690,"11799":2689,"11800":2689,"11801":2689,"11802":2688,"11803":2689,"11804":2689,"11805":2689,"11806":2689,"11807":2688,"11808":2689,"11809":2688,"11810":2688,"11811":2690,"11812":2689,"11813":2689,"11814":2689,"11815":2689,"11816":2688,"11817":2690,"11818":2688,"11819":2688,"11820":2688,"11821":2690,"11822":2689,"11823":2689,"11824":2689,"11825":2690,"11826":2689,"11827":2689,"11828":2689,"11829":2688,"11830":2689,"11831":2689,"11832":2689,"11833":2690,"11834":2690,"11835":2689,"11836":2690,"11837":2689,"11838":2689,"11839":2690,"11840":2688,"11841":2690,"11842":2688,"11843":2689,"11844":2689,"11845":2689,"11846":2689,"11847":2690,"11848":2690,"11849":2689,"11850":2688,"11851":2690,"11852":2689,"11853":2689,"11854":2690,"11855":2689,"11856":2689,"11857":2688,"11858":2689,"11859":2690,"11860":2690,"11861":2689,"11862":2690,"11863":2690,"11864":2690,"11865":2689,"11866":2689,"11867":2689,"11868":2690,"11869":2689,"11870":2689,"11871":2689,"11872":2690,"11873":2690,"11874":2690,"11875":2690,"11876":2688,"11877":2690,"11878":2689,"11879":2688,"11880":2689,"11881":2689,"11882":2688,"11883":2690,"11884":2688,"11885":2689,"11886":2689,"11887":2689,"11888":2689,"11889":2689,"11890":2688,"11891":2688,"11892":2689,"11893":2689,"11894":2689,"11895":2689,"11896":2689,"11897":2689,"11898":2689,"11899":2689,"11900":2688,"11901":2690,"11902":2688,"11903":2689,"11904":2688,"11905":2689,"11906":2690,"11907":2689,"11908":2688,"11909":2690,"11910":2690,"11911":2690,"11912":2690,"11913":2688,"11914":2690,"11915":2689,"11916":2689,"11917":2689,"11918":2689,"11919":2689,"11920":2688,"11921":2689,"11922":2690,"11923":2689,"11924":2690,"11925":2689,"11926":2689,"11927":2690,"11928":2688,"11929":2690,"11930":2688,"11931":2690,"11932":2690,"11933":2689,"11934":2689,"11935":2688,"11936":2689,"11937":2689,"11938":2689,"11939":2690,"11940":2689,"11941":2689,"11942":2690,"11943":2688,"11944":2688,"11945":2690,"11946":2689,"11947":2688,"11948":2689,"11949":2689,"11950":2689,"11951":2688,"11952":2688,"11953":2690,"11954":2689,"11955":2690,"11956":2689,"11957":2689,"11958":2689,"11959":2688,"11960":2689,"11961":2689,"11962":2689,"11963":2688,"11964":2689,"11965":2688,"11966":2689,"11967":2688,"11968":2689,"11969":2690,"11970":2689,"11971":2689,"11972":2688,"11973":2690,"11974":2688,"11975":2688,"11976":2689,"11977":2689,"11978":2688,"11979":2690,"11980":2689,"11981":2689,"11982":2690,"11983":2689,"11984":2688,"11985":2690,"11986":2690,"11987":2689,"11988":2689,"11989":2688,"11990":2688,"11991":2690,"11992":2689,"11993":2688,"11994":2690,"11995":2690,"11996":2688,"11997":2690,"11998":2689,"11999":2688,"12000":2688,"12001":2688,"12002":2690,"12003":2688,"12004":2689,"12005":2690,"12006":2689,"12007":2689,"12008":2688,"12009":2690,"12010":2689,"12011":2689,"12012":2689,"12013":2690,"12014":2688,"12015":2688,"12016":2689,"12017":2688,"12018":2689,"12019":2688,"12020":2689,"12021":2688,"12022":2689,"12023":2690,"12024":2689,"12025":2688,"12026":2690,"12027":2689,"12028":2688,"12029":2689,"12030":2689,"12031":2689,"12032":2688,"12033":2690,"12034":2688,"12035":2689,"12036":2690,"12037":2690,"12038":2689,"12039":2688,"12040":2689,"12041":2690,"12042":2689,"12043":2689,"12044":2688,"12045":2688,"12046":2689,"12047":2690,"12048":2689,"12049":2688,"12050":2688,"12051":2690,"12052":2688,"12053":2690,"12054":2689,"12055":2690,"12056":2689,"12057":2690,"12058":2688,"12059":2689,"12060":2689,"12061":2688,"12062":2690,"12063":2688,"12064":2688,"12065":2688,"12066":2688,"12067":2689,"12068":2689,"12069":2689,"12070":2690,"12071":2690,"12072":2689,"12073":2689,"12074":2688,"12075":2689,"12076":2689,"12077":2690,"12078":2689,"12079":2689,"12080":2690,"12081":2689,"12082":2689,"12083":2689,"12084":2688,"12085":2689,"12086":2688,"12087":2689,"12088":2689,"12089":2688,"12090":2689,"12091":2688,"12092":2690,"12093":2688,"12094":2689,"12095":2689,"12096":2689,"12097":2690,"12098":2688,"12099":2688,"12100":2689,"12101":2689,"12102":2689,"12103":2690,"12104":2689,"12105":2689,"12106":2688,"12107":2688,"12108":2690,"12109":2690,"12110":2689,"12111":2689,"12112":2689,"12113":2690,"12114":2689,"12115":2690,"12116":2689,"12117":2689,"12118":2690,"12119":2689,"12120":2689,"12121":2688,"12122":2690,"12123":2688,"12124":2689,"12125":2689,"12126":2689,"12127":2689,"12128":2690,"12129":2690,"12130":2688,"12131":2689,"12132":2689,"12133":2689,"12134":2689,"12135":2689,"12136":2689,"12137":2689,"12138":2689,"12139":2689,"12140":2690,"12141":2690,"12142":2688,"12143":2688,"12144":2689,"12145":2690,"12146":2690,"12147":2689,"12148":2689,"12149":2689,"12150":2689,"12151":2688,"12152":2689,"12153":2689,"12154":2689,"12155":2688,"12156":2689,"12157":2689,"12158":2690,"12159":2690,"12160":2689,"12161":2689,"12162":2688,"12163":2690,"12164":2688,"12165":2689,"12166":2690,"12167":2689,"12168":2689,"12169":2690,"12170":2689,"12171":2688,"12172":2688,"12173":2688,"12174":2689,"12175":2688,"12176":2690,"12177":2689,"12178":2689,"12179":2690,"12180":2689,"12181":2688,"12182":2690,"12183":2689,"12184":2689,"12185":2690,"12186":2689,"12187":2689,"12188":2688,"12189":2689,"12190":2688,"12191":2689,"12192":2689,"12193":2690,"12194":2689,"12195":2690,"12196":2689,"12197":2689,"12198":2690,"12199":2689,"12200":2688,"12201":2688,"12202":2689,"12203":2689,"12204":2689,"12205":2690,"12206":2690,"12207":2690,"12208":2689,"12209":2689,"12210":2690,"12211":2689,"12212":2688,"12213":2688,"12214":2689,"12215":2688,"12216":2690,"12217":2690,"12218":2690,"12219":2688,"12220":2689,"12221":2690,"12222":2688,"12223":2689,"12224":2689,"12225":2688,"12226":2690,"12227":2689,"12228":2688,"12229":2689,"12230":2689,"12231":2690,"12232":2689,"12233":2689,"12234":2690,"12235":2689,"12236":2688,"12237":2689,"12238":2688,"12239":2690,"12240":2689,"12241":2689,"12242":2689,"12243":2689,"12244":2689,"12245":2689,"12246":2688,"12247":2689,"12248":2689,"12249":2689,"12250":2689,"12251":2689,"12252":2688,"12253":2689,"12254":2690,"12255":2688,"12256":2688,"12257":2690,"12258":2688,"12259":2690,"12260":2688,"12261":2688,"12262":2689,"12263":2689,"12264":2688,"12265":2689,"12266":2689,"12267":2690,"12268":2689,"12269":2689,"12270":2690,"12271":2689,"12272":2690,"12273":2689,"12274":2689,"12275":2690,"12276":2689,"12277":2689,"12278":2689,"12279":2688,"12280":2689,"12281":2689,"12282":2689,"12283":2689,"12284":2688,"12285":2690,"12286":2689,"12287":2689,"12288":2689,"12289":2690,"12290":2689,"12291":2690,"12292":2690,"12293":2688,"12294":2690,"12295":2690,"12296":2689,"12297":2688,"12298":2690,"12299":2688,"12300":2689,"12301":2689,"12302":2688,"12303":2689,"12304":2689,"12305":2690,"12306":2689,"12307":2689,"12308":2689,"12309":2688,"12310":2689,"12311":2688,"12312":2689,"12313":2688,"12314":2688,"12315":2689,"12316":2688,"12317":2689,"12318":2688,"12319":2688,"12320":2688,"12321":2689,"12322":2689,"12323":2688,"12324":2690,"12325":2689,"12326":2689,"12327":2688,"12328":2689,"12329":2690,"12330":2688,"12331":2688,"12332":2688,"12333":2689,"12334":2689,"12335":2689,"12336":2689,"12337":2690,"12338":2689,"12339":2690,"12340":2689,"12341":2689,"12342":2689,"12343":2688,"12344":2689,"12345":2689,"12346":2689,"12347":2688,"12348":2689,"12349":2690,"12350":2689,"12351":2688,"12352":2689,"12353":2689,"12354":2689,"12355":2689,"12356":2689,"12357":2689,"12358":2688,"12359":2689,"12360":2689,"12361":2689,"12362":2688,"12363":2688,"12364":2689,"12365":2690,"12366":2688,"12367":2688,"12368":2688,"12369":2689,"12370":2689,"12371":2690,"12372":2690,"12373":2688,"12374":2689,"12375":2689,"12376":2688,"12377":2689,"12378":2688,"12379":2688,"12380":2689,"12381":2690,"12382":2689,"12383":2688,"12384":2688,"12385":2690,"12386":2689,"12387":2689,"12388":2689,"12389":2689,"12390":2689,"12391":2690,"12392":2690,"12393":2689,"12394":2690,"12395":2689,"12396":2689,"12397":2690,"12398":2688,"12399":2689,"12400":2690,"12401":2688,"12402":2690,"12403":2690,"12404":2688,"12405":2689,"12406":2689,"12407":2688,"12408":2689,"12409":2688,"12410":2689,"12411":2688,"12412":2690,"12413":2688,"12414":2688,"12415":2688,"12416":2688,"12417":2690,"12418":2688,"12419":2689,"12420":2689,"12421":2689,"12422":2689,"12423":2689,"12424":2688,"12425":2689,"12426":2689,"12427":2689,"12428":2689,"12429":2689,"12430":2688,"12431":2688,"12432":2688,"12433":2689,"12434":2689,"12435":2690,"12436":2689,"12437":2689,"12438":2689,"12439":2690,"12440":2690,"12441":2689,"12442":2690,"12443":2689,"12444":2690,"12445":2688,"12446":2689,"12447":2689,"12448":2690,"12449":2688,"12450":2689,"12451":2690,"12452":2689,"12453":2689,"12454":2690,"12455":2689,"12456":2688,"12457":2689,"12458":2688,"12459":2689,"12460":2688,"12461":2690,"12462":2689,"12463":2689,"12464":2690,"12465":2688,"12466":2688,"12467":2689,"12468":2689,"12469":2688,"12470":2690,"12471":2690,"12472":2689,"12473":2688,"12474":2690,"12475":2688,"12476":2689,"12477":2690,"12478":2688,"12479":2688,"12480":2689,"12481":2689,"12482":2689,"12483":2690,"12484":2688,"12485":2690,"12486":2689,"12487":2690,"12488":2689,"12489":2688,"12490":2689,"12491":2688,"12492":2689,"12493":2690,"12494":2690,"12495":2690,"12496":2689,"12497":2689,"12498":2690,"12499":2690,"12500":2690,"12501":2690,"12502":2690,"12503":2688,"12504":2689,"12505":2690,"12506":2690,"12507":2689,"12508":2689,"12509":2688,"12510":2688,"12511":2689,"12512":2689,"12513":2689,"12514":2688,"12515":2690,"12516":2690,"12517":2689,"12518":2690,"12519":2689,"12520":2690,"12521":2689,"12522":2689,"12523":2688,"12524":2690,"12525":2689,"12526":2689,"12527":2689,"12528":2689,"12529":2689,"12530":2689,"12531":2689,"12532":2688,"12533":2688,"12534":2689,"12535":2688,"12536":2689,"12537":2689,"12538":2689,"12539":2688,"12540":2690,"12541":2689,"12542":2689,"12543":2688,"12544":2690,"12545":2689,"12546":2690,"12547":2689,"12548":2690,"12549":2689,"12550":2689,"12551":2689,"12552":2688,"12553":2690,"12554":2690,"12555":2689,"12556":2689,"12557":2690,"12558":2690,"12559":2690,"12560":2689,"12561":2689,"12562":2689,"12563":2689,"12564":2688,"12565":2689,"12566":2688,"12567":2690,"12568":2689,"12569":2689,"12570":2689,"12571":2689,"12572":2689,"12573":2688,"12574":2689,"12575":2689,"12576":2690,"12577":2689,"12578":2689,"12579":2690,"12580":2688,"12581":2689,"12582":2689,"12583":2689,"12584":2689,"12585":2689,"12586":2689,"12587":2689,"12588":2690,"12589":2690,"12590":2689,"12591":2690,"12592":2689,"12593":2689,"12594":2689,"12595":2689,"12596":2690,"12597":2688,"12598":2690,"12599":2689,"12600":2690,"12601":2689,"12602":2690,"12603":2689,"12604":2689,"12605":2689,"12606":2689,"12607":2689,"12608":2689,"12609":2689,"12610":2690,"12611":2689,"12612":2690,"12613":2689,"12614":2690,"12615":2689,"12616":2689,"12617":2688,"12618":2689,"12619":2689,"12620":2689,"12621":2690,"12622":2689,"12623":2689,"12624":2689,"12625":2688,"12626":2689,"12627":2688,"12628":2689,"12629":2690,"12630":2688,"12631":2688,"12632":2688,"12633":2690,"12634":2688,"12635":2690,"12636":2689,"12637":2689,"12638":2688,"12639":2690,"12640":2690,"12641":2689,"12642":2689,"12643":2688,"12644":2689,"12645":2688,"12646":2690,"12647":2690,"12648":2689,"12649":2689,"12650":2688,"12651":2689,"12652":2690,"12653":2690,"12654":2690,"12655":2689,"12656":2689,"12657":2688,"12658":2688,"12659":2690,"12660":2690,"12661":2690,"12662":2690,"12663":2690,"12664":2690,"12665":2689,"12666":2689,"12667":2688,"12668":2689,"12669":2690,"12670":2688,"12671":2688,"12672":2689,"12673":2690,"12674":2689,"12675":2689,"12676":2689,"12677":2689,"12678":2688,"12679":2688,"12680":2690,"12681":2689,"12682":2688,"12683":2689,"12684":2689,"12685":2689,"12686":2689,"12687":2689,"12688":2690,"12689":2689,"12690":2688,"12691":2689,"12692":2690,"12693":2689,"12694":2689,"12695":2689,"12696":2688,"12697":2689,"12698":2690,"12699":2688,"12700":2688,"12701":2689,"12702":2688,"12703":2689,"12704":2688,"12705":2690,"12706":2690,"12707":2690,"12708":2689,"12709":2690,"12710":2689,"12711":2688,"12712":2688,"12713":2689,"12714":2689,"12715":2689,"12716":2689,"12717":2689,"12718":2689,"12719":2690,"12720":2690,"12721":2689,"12722":2689,"12723":2688,"12724":2689,"12725":2690,"12726":2690,"12727":2688,"12728":2689,"12729":2690,"12730":2689,"12731":2689,"12732":2688,"12733":2690,"12734":2689,"12735":2690,"12736":2688,"12737":2689,"12738":2688,"12739":2689,"12740":2688,"12741":2688,"12742":2690,"12743":2690,"12744":2689,"12745":2689,"12746":2690,"12747":2690,"12748":2690,"12749":2689,"12750":2690,"12751":2688,"12752":2690,"12753":2689,"12754":2688,"12755":2689,"12756":2689,"12757":2689,"12758":2688,"12759":2689,"12760":2688,"12761":2689,"12762":2690,"12763":2690,"12764":2688,"12765":2690,"12766":2689,"12767":2688,"12768":2690,"12769":2689,"12770":2689,"12771":2689,"12772":2689,"12773":2689,"12774":2689,"12775":2689,"12776":2689,"12777":2689,"12778":2689,"12779":2688,"12780":2689,"12781":2690,"12782":2689,"12783":2690,"12784":2689,"12785":2689,"12786":2688,"12787":2690,"12788":2690,"12789":2688,"12790":2689,"12791":2689,"12792":2690,"12793":2690,"12794":2689,"12795":2688,"12796":2690,"12797":2689,"12798":2689,"12799":2690,"12800":2689,"12801":2689,"12802":2689,"12803":2689,"12804":2688,"12805":2689,"12806":2690,"12807":2689,"12808":2689,"12809":2690,"12810":2688,"12811":2689,"12812":2688,"12813":2688,"12814":2689,"12815":2688,"12816":2689,"12817":2688,"12818":2689,"12819":2689,"12820":2688,"12821":2689,"12822":2689,"12823":2689,"12824":2690,"12825":2689,"12826":2690,"12827":2690,"12828":2688,"12829":2689,"12830":2689,"12831":2690,"12832":2688,"12833":2688,"12834":2690,"12835":2688,"12836":2689,"12837":2689,"12838":2689,"12839":2688,"12840":2689,"12841":2688,"12842":2689,"12843":2689,"12844":2688,"12845":2690,"12846":2688,"12847":2689,"12848":2689,"12849":2690,"12850":2689,"12851":2688,"12852":2689,"12853":2690,"12854":2689,"12855":2688,"12856":2688,"12857":2689,"12858":2689,"12859":2689,"12860":2690,"12861":2690,"12862":2689,"12863":2688,"12864":2689,"12865":2688,"12866":2689,"12867":2690,"12868":2690,"12869":2688,"12870":2689,"12871":2689,"12872":2690,"12873":2689,"12874":2688,"12875":2689,"12876":2690,"12877":2689,"12878":2688,"12879":2689,"12880":2688,"12881":2690,"12882":2690,"12883":2690,"12884":2690,"12885":2689,"12886":2689,"12887":2688,"12888":2688,"12889":2689,"12890":2690,"12891":2689,"12892":2689,"12893":2689,"12894":2689,"12895":2689,"12896":2690,"12897":2690,"12898":2688,"12899":2689,"12900":2689,"12901":2688,"12902":2689,"12903":2690,"12904":2689,"12905":2689,"12906":2690,"12907":2690,"12908":2689,"12909":2689,"12910":2690,"12911":2689,"12912":2690,"12913":2688,"12914":2688,"12915":2689,"12916":2689,"12917":2688,"12918":2688,"12919":2690,"12920":2688,"12921":2689,"12922":2690,"12923":2688,"12924":2689,"12925":2690,"12926":2689,"12927":2689,"12928":2690,"12929":2689,"12930":2688,"12931":2689,"12932":2688,"12933":2688,"12934":2690,"12935":2690,"12936":2689,"12937":2690,"12938":2688,"12939":2688,"12940":2689,"12941":2689,"12942":2690,"12943":2689,"12944":2689,"12945":2689,"12946":2688,"12947":2689,"12948":2690,"12949":2689,"12950":2689,"12951":2688,"12952":2689,"12953":2689,"12954":2689,"12955":2689,"12956":2690,"12957":2688,"12958":2690,"12959":2689,"12960":2689,"12961":2690,"12962":2689,"12963":2690,"12964":2689,"12965":2689,"12966":2688,"12967":2689,"12968":2690,"12969":2688,"12970":2690,"12971":2690,"12972":2688,"12973":2688,"12974":2689,"12975":2690,"12976":2689,"12977":2690,"12978":2689,"12979":2690,"12980":2689,"12981":2689,"12982":2690,"12983":2689,"12984":2690,"12985":2689,"12986":2690,"12987":2690,"12988":2688,"12989":2690,"12990":2689,"12991":2689,"12992":2689,"12993":2689,"12994":2689,"12995":2689,"12996":2689,"12997":2690,"12998":2689,"12999":2689,"13000":2689,"13001":2690,"13002":2689,"13003":2689,"13004":2689,"13005":2690,"13006":2688,"13007":2688,"13008":2690,"13009":2689,"13010":2689,"13011":2689,"13012":2689,"13013":2690,"13014":2690,"13015":2688,"13016":2689,"13017":2688,"13018":2689,"13019":2689,"13020":2688,"13021":2690,"13022":2688,"13023":2689,"13024":2690,"13025":2689,"13026":2689,"13027":2689,"13028":2689,"13029":2689,"13030":2690,"13031":2689,"13032":2690,"13033":2688,"13034":2689,"13035":2689,"13036":2690,"13037":2688,"13038":2689,"13039":2690,"13040":2688,"13041":2689,"13042":2689,"13043":2689,"13044":2688,"13045":2689,"13046":2690,"13047":2690,"13048":2689,"13049":2688,"13050":2689,"13051":2689,"13052":2688,"13053":2689,"13054":2689,"13055":2689,"13056":2690,"13057":2690,"13058":2690,"13059":2689,"13060":2688,"13061":2690,"13062":2688,"13063":2689,"13064":2689,"13065":2688,"13066":2688,"13067":2688,"13068":2689,"13069":2690,"13070":2689,"13071":2688,"13072":2688,"13073":2689,"13074":2689,"13075":2688,"13076":2689,"13077":2690,"13078":2689,"13079":2689,"13080":2689,"13081":2688,"13082":2688,"13083":2689,"13084":2688,"13085":2690,"13086":2689,"13087":2689,"13088":2688,"13089":2688,"13090":2689,"13091":2689,"13092":2688,"13093":2689,"13094":2690,"13095":2688,"13096":2689,"13097":2689,"13098":2688,"13099":2688,"13100":2689,"13101":2689,"13102":2690,"13103":2688,"13104":2690,"13105":2690,"13106":2689,"13107":2688,"13108":2689,"13109":2688,"13110":2689,"13111":2689,"13112":2688,"13113":2689,"13114":2690,"13115":2689,"13116":2689,"13117":2689,"13118":2690,"13119":2689,"13120":2689,"13121":2689,"13122":2689,"13123":2688,"13124":2689,"13125":2688,"13126":2689,"13127":2688,"13128":2690,"13129":2689,"13130":2688,"13131":2690,"13132":2689,"13133":2690,"13134":2689,"13135":2690,"13136":2689,"13137":2688,"13138":2690,"13139":2689,"13140":2689,"13141":2688,"13142":2688,"13143":2689,"13144":2690,"13145":2690,"13146":2689,"13147":2689,"13148":2688,"13149":2690,"13150":2689,"13151":2690,"13152":2688,"13153":2690,"13154":2689,"13155":2690,"13156":2689,"13157":2688,"13158":2689,"13159":2688,"13160":2688,"13161":2688,"13162":2689,"13163":2688,"13164":2688,"13165":2689,"13166":2689,"13167":2689,"13168":2689,"13169":2690,"13170":2689,"13171":2688,"13172":2689,"13173":2690,"13174":2690,"13175":2688,"13176":2689,"13177":2690,"13178":2689,"13179":2689,"13180":2689,"13181":2689,"13182":2688,"13183":2689,"13184":2690,"13185":2690,"13186":2689,"13187":2690,"13188":2688,"13189":2688,"13190":2689,"13191":2689,"13192":2689,"13193":2690,"13194":2688,"13195":2689,"13196":2690,"13197":2688,"13198":2690,"13199":2688,"13200":2689,"13201":2689,"13202":2688,"13203":2689,"13204":2688,"13205":2688,"13206":2690,"13207":2688,"13208":2688,"13209":2688,"13210":2689,"13211":2689,"13212":2690,"13213":2690,"13214":2690,"13215":2689,"13216":2689,"13217":2689,"13218":2688,"13219":2688,"13220":2689,"13221":2689,"13222":2688,"13223":2689,"13224":2690,"13225":2689,"13226":2688,"13227":2690,"13228":2689,"13229":2688,"13230":2690,"13231":2688,"13232":2689,"13233":2689,"13234":2688,"13235":2689,"13236":2689,"13237":2689,"13238":2689,"13239":2690,"13240":2689,"13241":2688,"13242":2689,"13243":2690,"13244":2690,"13245":2688,"13246":2689,"13247":2689,"13248":2689,"13249":2689,"13250":2688,"13251":2689,"13252":2688,"13253":2689,"13254":2689,"13255":2689,"13256":2689,"13257":2690,"13258":2689,"13259":2690,"13260":2689,"13261":2689,"13262":2689,"13263":2690,"13264":2690,"13265":2688,"13266":2689,"13267":2688,"13268":2689,"13269":2689,"13270":2689,"13271":2690,"13272":2689,"13273":2689,"13274":2690,"13275":2688,"13276":2688,"13277":2689,"13278":2689,"13279":2688,"13280":2689,"13281":2688,"13282":2689,"13283":2688,"13284":2689,"13285":2689,"13286":2689,"13287":2689,"13288":2689,"13289":2688,"13290":2689,"13291":2688,"13292":2689,"13293":2688,"13294":2688,"13295":2689,"13296":2689,"13297":2690,"13298":2690,"13299":2689,"13300":2689,"13301":2689,"13302":2688,"13303":2690,"13304":2690,"13305":2690,"13306":2689,"13307":2689,"13308":2689,"13309":2688,"13310":2690,"13311":2690,"13312":2689,"13313":2688,"13314":2689,"13315":2689,"13316":2689,"13317":2688,"13318":2689,"13319":2690,"13320":2689,"13321":2690,"13322":2688,"13323":2690,"13324":2689,"13325":2689,"13326":2688,"13327":2690,"13328":2688,"13329":2689,"13330":2689,"13331":2689,"13332":2689,"13333":2689,"13334":2689,"13335":2689,"13336":2690,"13337":2689,"13338":2689,"13339":2690,"13340":2690,"13341":2689,"13342":2688,"13343":2689,"13344":2689,"13345":2690,"13346":2688,"13347":2689,"13348":2689,"13349":2690,"13350":2689,"13351":2689,"13352":2689,"13353":2689,"13354":2688,"13355":2689,"13356":2688,"13357":2689,"13358":2689,"13359":2689,"13360":2688,"13361":2688,"13362":2688,"13363":2688,"13364":2688,"13365":2690,"13366":2688,"13367":2690,"13368":2690,"13369":2689,"13370":2689,"13371":2688,"13372":2688,"13373":2689,"13374":2689,"13375":2690,"13376":2688,"13377":2690,"13378":2688,"13379":2689,"13380":2688,"13381":2688,"13382":2689,"13383":2689,"13384":2689,"13385":2689,"13386":2688,"13387":2689,"13388":2688,"13389":2690,"13390":2688,"13391":2689,"13392":2689,"13393":2689,"13394":2688,"13395":2688,"13396":2689,"13397":2688,"13398":2688,"13399":2688,"13400":2689,"13401":2688,"13402":2688,"13403":2689,"13404":2689,"13405":2689,"13406":2688,"13407":2688,"13408":2689,"13409":2689,"13410":2688,"13411":2688,"13412":2689,"13413":2688,"13414":2689,"13415":2689,"13416":2689,"13417":2688,"13418":2689,"13419":2689,"13420":2688,"13421":2690,"13422":2689,"13423":2690,"13424":2689,"13425":2689,"13426":2688,"13427":2689,"13428":2690,"13429":2688,"13430":2689,"13431":2690,"13432":2688,"13433":2690,"13434":2689,"13435":2689,"13436":2689,"13437":2688,"13438":2689,"13439":2690,"13440":2690,"13441":2688,"13442":2689,"13443":2690,"13444":2688,"13445":2689,"13446":2690,"13447":2688,"13448":2690,"13449":2689,"13450":2689,"13451":2689,"13452":2689,"13453":2688,"13454":2689,"13455":2689,"13456":2690,"13457":2689,"13458":2689,"13459":2689,"13460":2690,"13461":2690,"13462":2688,"13463":2689,"13464":2689,"13465":2689,"13466":2690,"13467":2689,"13468":2688,"13469":2689,"13470":2689,"13471":2689,"13472":2690,"13473":2688,"13474":2689,"13475":2690,"13476":2690,"13477":2689,"13478":2689,"13479":2688,"13480":2690,"13481":2689,"13482":2688,"13483":2689,"13484":2689,"13485":2689,"13486":2688,"13487":2690,"13488":2689,"13489":2689,"13490":2689,"13491":2688,"13492":2690,"13493":2688,"13494":2688,"13495":2688,"13496":2689,"13497":2690,"13498":2690,"13499":2689,"13500":2689,"13501":2689,"13502":2688,"13503":2689,"13504":2690,"13505":2689,"13506":2688,"13507":2689,"13508":2688,"13509":2690,"13510":2689,"13511":2690,"13512":2690,"13513":2689,"13514":2690,"13515":2688,"13516":2689,"13517":2690,"13518":2690,"13519":2688,"13520":2689,"13521":2690,"13522":2689,"13523":2688,"13524":2688,"13525":2689,"13526":2689,"13527":2690,"13528":2689,"13529":2689,"13530":2689,"13531":2688,"13532":2689,"13533":2688,"13534":2689,"13535":2690,"13536":2689,"13537":2690,"13538":2689,"13539":2688,"13540":2689,"13541":2689,"13542":2689,"13543":2689,"13544":2690,"13545":2688,"13546":2688,"13547":2689,"13548":2689,"13549":2689,"13550":2689,"13551":2688,"13552":2690,"13553":2689,"13554":2690,"13555":2688,"13556":2689,"13557":2688,"13558":2689,"13559":2690,"13560":2689,"13561":2688,"13562":2690,"13563":2690,"13564":2689,"13565":2688,"13566":2689,"13567":2689,"13568":2689,"13569":2688,"13570":2689,"13571":2688,"13572":2689,"13573":2690,"13574":2690,"13575":2690,"13576":2690,"13577":2689,"13578":2688,"13579":2689,"13580":2689,"13581":2688,"13582":2688,"13583":2688,"13584":2688,"13585":2689,"13586":2688,"13587":2689,"13588":2689,"13589":2688,"13590":2688,"13591":2690,"13592":2690,"13593":2689,"13594":2689,"13595":2689,"13596":2689,"13597":2689,"13598":2689,"13599":2689,"13600":2689,"13601":2688,"13602":2690,"13603":2690,"13604":2689,"13605":2688,"13606":2690,"13607":2690,"13608":2689,"13609":2689,"13610":2688,"13611":2690,"13612":2690,"13613":2689,"13614":2690,"13615":2689,"13616":2689,"13617":2690,"13618":2688,"13619":2690,"13620":2688,"13621":2689,"13622":2689,"13623":2689,"13624":2688,"13625":2689,"13626":2688,"13627":2690,"13628":2688,"13629":2689,"13630":2688,"13631":2689,"13632":2689,"13633":2689,"13634":2689,"13635":2689,"13636":2689,"13637":2689,"13638":2690,"13639":2689,"13640":2689,"13641":2688,"13642":2689,"13643":2689,"13644":2689,"13645":2690,"13646":2688,"13647":2689,"13648":2690,"13649":2689,"13650":2690,"13651":2690,"13652":2689,"13653":2688,"13654":2688,"13655":2690,"13656":2689,"13657":2690,"13658":2689,"13659":2690,"13660":2689,"13661":2689,"13662":2688,"13663":2689,"13664":2689,"13665":2688,"13666":2689,"13667":2688,"13668":2690,"13669":2688,"13670":2688,"13671":2689,"13672":2690,"13673":2689,"13674":2690,"13675":2689,"13676":2690,"13677":2690,"13678":2690,"13679":2688,"13680":2690,"13681":2689,"13682":2690,"13683":2690,"13684":2690,"13685":2689,"13686":2690,"13687":2688,"13688":2689,"13689":2688,"13690":2690,"13691":2688,"13692":2689,"13693":2690,"13694":2690,"13695":2689,"13696":2689,"13697":2688,"13698":2689,"13699":2689,"13700":2688,"13701":2689,"13702":2688,"13703":2688,"13704":2689,"13705":2690,"13706":2690,"13707":2688,"13708":2690,"13709":2689,"13710":2689,"13711":2689,"13712":2689,"13713":2689,"13714":2689,"13715":2688,"13716":2688,"13717":2688,"13718":2688,"13719":2689,"13720":2690,"13721":2690,"13722":2689,"13723":2690,"13724":2690,"13725":2689,"13726":2689,"13727":2690,"13728":2688,"13729":2688,"13730":2690,"13731":2688,"13732":2690,"13733":2688,"13734":2689,"13735":2689,"13736":2689,"13737":2688,"13738":2690,"13739":2689,"13740":2688,"13741":2690,"13742":2689,"13743":2689,"13744":2689,"13745":2690,"13746":2690,"13747":2689,"13748":2689,"13749":2689,"13750":2689,"13751":2689,"13752":2688,"13753":2689,"13754":2689,"13755":2688,"13756":2688,"13757":2688,"13758":2688,"13759":2689,"13760":2688,"13761":2689,"13762":2688,"13763":2690,"13764":2689,"13765":2689,"13766":2688,"13767":2688,"13768":2689,"13769":2689,"13770":2688,"13771":2690,"13772":2688,"13773":2688,"13774":2689,"13775":2690,"13776":2689,"13777":2690,"13778":2689,"13779":2688,"13780":2688,"13781":2688,"13782":2689,"13783":2688,"13784":2688,"13785":2688,"13786":2689,"13787":2689,"13788":2690,"13789":2689,"13790":2689,"13791":2688,"13792":2689,"13793":2688,"13794":2690,"13795":2688,"13796":2690,"13797":2689,"13798":2689,"13799":2689,"13800":2689,"13801":2689,"13802":2688,"13803":2689,"13804":2688,"13805":2689,"13806":2689,"13807":2689,"13808":2689,"13809":2690,"13810":2689,"13811":2690,"13812":2690,"13813":2688,"13814":2689,"13815":2689,"13816":2689,"13817":2689,"13818":2689,"13819":2688,"13820":2689,"13821":2690,"13822":2688,"13823":2689,"13824":2689,"13825":2689,"13826":2688,"13827":2689,"13828":2690,"13829":2689,"13830":2688,"13831":2689,"13832":2689,"13833":2690,"13834":2689,"13835":2689,"13836":2688,"13837":2689,"13838":2689,"13839":2688,"13840":2688,"13841":2690,"13842":2690,"13843":2689,"13844":2689,"13845":2690,"13846":2690,"13847":2690,"13848":2689,"13849":2689,"13850":2689,"13851":2689,"13852":2690,"13853":2688,"13854":2689,"13855":2689,"13856":2689,"13857":2688,"13858":2690,"13859":2688,"13860":2690,"13861":2689,"13862":2688,"13863":2689,"13864":2688,"13865":2689,"13866":2688,"13867":2689,"13868":2689,"13869":2689,"13870":2689,"13871":2689,"13872":2689,"13873":2690,"13874":2689,"13875":2690,"13876":2690,"13877":2690,"13878":2689,"13879":2689,"13880":2689,"13881":2690,"13882":2689,"13883":2688,"13884":2688,"13885":2689,"13886":2689,"13887":2688,"13888":2689,"13889":2689,"13890":2689,"13891":2689,"13892":2689,"13893":2690,"13894":2690,"13895":2688,"13896":2688,"13897":2690,"13898":2689,"13899":2688,"13900":2689,"13901":2689,"13902":2690,"13903":2689,"13904":2689,"13905":2688,"13906":2689,"13907":2688,"13908":2690,"13909":2688,"13910":2688,"13911":2688,"13912":2688,"13913":2690,"13914":2689,"13915":2689,"13916":2689,"13917":2690,"13918":2689,"13919":2690,"13920":2688,"13921":2688,"13922":2689,"13923":2689,"13924":2690,"13925":2688,"13926":2689,"13927":2689,"13928":2690,"13929":2688,"13930":2690,"13931":2689,"13932":2690,"13933":2688,"13934":2688,"13935":2688,"13936":2689,"13937":2689,"13938":2688,"13939":2689,"13940":2689,"13941":2690,"13942":2689,"13943":2690,"13944":2690,"13945":2690,"13946":2688,"13947":2690,"13948":2690,"13949":2688,"13950":2690,"13951":2689,"13952":2688,"13953":2690,"13954":2689,"13955":2690,"13956":2689,"13957":2690,"13958":2690,"13959":2689,"13960":2688,"13961":2689,"13962":2689,"13963":2689,"13964":2688,"13965":2689,"13966":2689,"13967":2688,"13968":2689,"13969":2689,"13970":2690,"13971":2689,"13972":2690,"13973":2689,"13974":2688,"13975":2689,"13976":2689,"13977":2688,"13978":2689,"13979":2689,"13980":2690,"13981":2688,"13982":2689,"13983":2689,"13984":2690,"13985":2688,"13986":2689,"13987":2690,"13988":2690,"13989":2689,"13990":2690,"13991":2688,"13992":2690,"13993":2689,"13994":2689,"13995":2689,"13996":2690,"13997":2689,"13998":2689,"13999":2688,"14000":2690,"14001":2690,"14002":2689,"14003":2689,"14004":2689,"14005":2689,"14006":2689,"14007":2689,"14008":2689,"14009":2690,"14010":2689,"14011":2688,"14012":2688,"14013":2689,"14014":2689,"14015":2689,"14016":2689,"14017":2690,"14018":2688,"14019":2689,"14020":2689,"14021":2689,"14022":2689,"14023":2688,"14024":2689,"14025":2689,"14026":2690,"14027":2689,"14028":2688,"14029":2688,"14030":2689,"14031":2689,"14032":2688,"14033":2689,"14034":2688,"14035":2689,"14036":2689,"14037":2688,"14038":2689,"14039":2689,"14040":2690,"14041":2689,"14042":2689,"14043":2690,"14044":2689,"14045":2689,"14046":2690,"14047":2689,"14048":2689,"14049":2688,"14050":2689,"14051":2690,"14052":2690,"14053":2688,"14054":2688,"14055":2688,"14056":2689,"14057":2689,"14058":2690,"14059":2689,"14060":2689,"14061":2689,"14062":2689,"14063":2689,"14064":2690,"14065":2689,"14066":2688,"14067":2688,"14068":2689,"14069":2689,"14070":2690,"14071":2690,"14072":2689,"14073":2688,"14074":2690,"14075":2689,"14076":2688,"14077":2688,"14078":2689,"14079":2689,"14080":2689,"14081":2689,"14082":2689,"14083":2689,"14084":2689,"14085":2689,"14086":2688,"14087":2688,"14088":2689,"14089":2689,"14090":2689,"14091":2689,"14092":2688,"14093":2690,"14094":2690,"14095":2690,"14096":2689,"14097":2688,"14098":2688,"14099":2688,"14100":2689,"14101":2689,"14102":2688,"14103":2689,"14104":2689,"14105":2690,"14106":2688,"14107":2690,"14108":2689,"14109":2689,"14110":2688,"14111":2690,"14112":2688,"14113":2690,"14114":2688,"14115":2688,"14116":2689,"14117":2689,"14118":2689,"14119":2688,"14120":2690,"14121":2689,"14122":2690,"14123":2690,"14124":2689,"14125":2690,"14126":2688,"14127":2689,"14128":2690,"14129":2690,"14130":2688,"14131":2690,"14132":2689,"14133":2688,"14134":2689,"14135":2688,"14136":2690,"14137":2689,"14138":2690,"14139":2688,"14140":2688,"14141":2689,"14142":2689,"14143":2689,"14144":2690,"14145":2688,"14146":2690,"14147":2688,"14148":2689,"14149":2688,"14150":2688,"14151":2690,"14152":2690,"14153":2690,"14154":2689,"14155":2689,"14156":2688,"14157":2690,"14158":2689,"14159":2689,"14160":2689,"14161":2689,"14162":2689,"14163":2690,"14164":2689,"14165":2689,"14166":2688,"14167":2689,"14168":2689,"14169":2689,"14170":2690,"14171":2689,"14172":2689,"14173":2688,"14174":2690,"14175":2689,"14176":2689,"14177":2690,"14178":2688,"14179":2690,"14180":2689,"14181":2690,"14182":2689,"14183":2689,"14184":2689,"14185":2688,"14186":2690,"14187":2690,"14188":2689,"14189":2690,"14190":2689,"14191":2689,"14192":2688,"14193":2689,"14194":2690,"14195":2689,"14196":2690,"14197":2688,"14198":2689,"14199":2690,"14200":2689,"14201":2689,"14202":2689,"14203":2688,"14204":2688,"14205":2689,"14206":2690,"14207":2689,"14208":2688,"14209":2689,"14210":2689,"14211":2689,"14212":2689,"14213":2689,"14214":2689,"14215":2689,"14216":2690,"14217":2689,"14218":2690,"14219":2689,"14220":2689,"14221":2689,"14222":2689,"14223":2690,"14224":2690,"14225":2688,"14226":2689,"14227":2688,"14228":2690,"14229":2688,"14230":2690,"14231":2688,"14232":2689,"14233":2690,"14234":2690,"14235":2688,"14236":2689,"14237":2689,"14238":2689,"14239":2689,"14240":2689,"14241":2688,"14242":2688,"14243":2689,"14244":2689,"14245":2688,"14246":2688,"14247":2688,"14248":2689,"14249":2689,"14250":2690,"14251":2689,"14252":2689,"14253":2689,"14254":2689,"14255":2689,"14256":2690,"14257":2689,"14258":2689,"14259":2690,"14260":2689,"14261":2689,"14262":2689,"14263":2690,"14264":2690,"14265":2690,"14266":2690,"14267":2689,"14268":2690,"14269":2689,"14270":2689,"14271":2689,"14272":2690,"14273":2689,"14274":2689,"14275":2689,"14276":2689,"14277":2690,"14278":2689,"14279":2690,"14280":2689,"14281":2690,"14282":2689,"14283":2690,"14284":2688,"14285":2690,"14286":2689,"14287":2690,"14288":2689,"14289":2688,"14290":2688,"14291":2689,"14292":2689,"14293":2689,"14294":2690,"14295":2690,"14296":2690,"14297":2689,"14298":2690,"14299":2689,"14300":2689,"14301":2688,"14302":2688,"14303":2688,"14304":2688,"14305":2690,"14306":2688,"14307":2690,"14308":2690,"14309":2690,"14310":2689,"14311":2688,"14312":2689,"14313":2689,"14314":2689,"14315":2689,"14316":2688,"14317":2689,"14318":2689,"14319":2689,"14320":2689,"14321":2689,"14322":2689,"14323":2689,"14324":2689,"14325":2688,"14326":2689,"14327":2688,"14328":2689,"14329":2690,"14330":2689,"14331":2690,"14332":2689,"14333":2689,"14334":2688,"14335":2689,"14336":2689,"14337":2689,"14338":2690,"14339":2690,"14340":2689,"14341":2689,"14342":2689,"14343":2689,"14344":2690,"14345":2690,"14346":2688,"14347":2688,"14348":2690,"14349":2690,"14350":2688,"14351":2690,"14352":2688,"14353":2688,"14354":2689,"14355":2689,"14356":2688,"14357":2689,"14358":2690,"14359":2688,"14360":2689,"14361":2689,"14362":2689,"14363":2689,"14364":2689,"14365":2688,"14366":2689,"14367":2689,"14368":2690,"14369":2690,"14370":2690,"14371":2688,"14372":2690,"14373":2688,"14374":2688,"14375":2690,"14376":2689,"14377":2689,"14378":2688,"14379":2689,"14380":2689,"14381":2689,"14382":2689,"14383":2689,"14384":2690,"14385":2689,"14386":2690,"14387":2688,"14388":2688,"14389":2689,"14390":2688,"14391":2690,"14392":2689,"14393":2688,"14394":2689,"14395":2689,"14396":2689,"14397":2690,"14398":2689,"14399":2688,"14400":2688,"14401":2689,"14402":2688,"14403":2688,"14404":2689,"14405":2689,"14406":2688,"14407":2688,"14408":2689,"14409":2689,"14410":2689,"14411":2689,"14412":2688,"14413":2689,"14414":2688,"14415":2689,"14416":2688,"14417":2688,"14418":2690,"14419":2689,"14420":2689,"14421":2688,"14422":2688,"14423":2689,"14424":2688,"14425":2690,"14426":2689,"14427":2690,"14428":2689,"14429":2689,"14430":2688,"14431":2689,"14432":2689,"14433":2688,"14434":2689,"14435":2690,"14436":2688,"14437":2689,"14438":2689,"14439":2688,"14440":2689,"14441":2690,"14442":2689,"14443":2688,"14444":2690,"14445":2689,"14446":2688,"14447":2690,"14448":2688,"14449":2689,"14450":2688,"14451":2689,"14452":2689,"14453":2688,"14454":2688,"14455":2689,"14456":2690,"14457":2690,"14458":2689,"14459":2690,"14460":2689,"14461":2689,"14462":2690,"14463":2689,"14464":2689,"14465":2689,"14466":2689,"14467":2690,"14468":2689,"14469":2688,"14470":2688,"14471":2688,"14472":2689,"14473":2690,"14474":2690,"14475":2690,"14476":2689,"14477":2689,"14478":2690,"14479":2688,"14480":2688,"14481":2689,"14482":2688,"14483":2689,"14484":2688,"14485":2689,"14486":2688,"14487":2689,"14488":2689,"14489":2690,"14490":2690,"14491":2689,"14492":2689,"14493":2689,"14494":2689,"14495":2690,"14496":2689,"14497":2689,"14498":2689,"14499":2689,"14500":2689,"14501":2690,"14502":2689,"14503":2688,"14504":2688,"14505":2689,"14506":2689,"14507":2690,"14508":2690,"14509":2689,"14510":2688,"14511":2688,"14512":2690,"14513":2689,"14514":2688,"14515":2688,"14516":2689,"14517":2688,"14518":2690,"14519":2690,"14520":2690,"14521":2689,"14522":2689,"14523":2689,"14524":2689,"14525":2689,"14526":2689,"14527":2689,"14528":2689,"14529":2689,"14530":2689,"14531":2688,"14532":2688,"14533":2689,"14534":2690,"14535":2689,"14536":2689,"14537":2689,"14538":2690,"14539":2690,"14540":2690,"14541":2689,"14542":2690,"14543":2689,"14544":2689,"14545":2690,"14546":2689,"14547":2688,"14548":2688,"14549":2689,"14550":2689,"14551":2689,"14552":2689,"14553":2688,"14554":2690,"14555":2690,"14556":2688,"14557":2690,"14558":2688,"14559":2690,"14560":2689,"14561":2688,"14562":2689,"14563":2688,"14564":2688,"14565":2689,"14566":2689,"14567":2688,"14568":2689,"14569":2688,"14570":2689,"14571":2688,"14572":2690,"14573":2690,"14574":2688,"14575":2689,"14576":2689,"14577":2690,"14578":2688,"14579":2689,"14580":2689,"14581":2690,"14582":2688,"14583":2690,"14584":2689,"14585":2689,"14586":2689,"14587":2690,"14588":2689,"14589":2690,"14590":2688,"14591":2690,"14592":2688,"14593":2688,"14594":2688,"14595":2689,"14596":2688,"14597":2690,"14598":2690,"14599":2689,"14600":2690,"14601":2688,"14602":2690,"14603":2690,"14604":2689,"14605":2689,"14606":2689,"14607":2689,"14608":2689,"14609":2689,"14610":2688,"14611":2689,"14612":2689,"14613":2688,"14614":2689,"14615":2689,"14616":2690,"14617":2689,"14618":2689,"14619":2689,"14620":2689,"14621":2689,"14622":2690,"14623":2689,"14624":2689,"14625":2688,"14626":2689,"14627":2689,"14628":2689,"14629":2688,"14630":2690,"14631":2690,"14632":2688,"14633":2690,"14634":2689,"14635":2689,"14636":2690,"14637":2690,"14638":2689,"14639":2689,"14640":2689,"14641":2689,"14642":2689,"14643":2688,"14644":2689,"14645":2689,"14646":2689,"14647":2689,"14648":2689,"14649":2689,"14650":2688,"14651":2689,"14652":2689,"14653":2689,"14654":2688,"14655":2689,"14656":2689,"14657":2689,"14658":2689,"14659":2688,"14660":2689,"14661":2689,"14662":2689,"14663":2688,"14664":2689,"14665":2690,"14666":2688,"14667":2689,"14668":2690,"14669":2690,"14670":2689,"14671":2689,"14672":2688,"14673":2688,"14674":2690,"14675":2689,"14676":2689,"14677":2689,"14678":2690,"14679":2688,"14680":2688,"14681":2689,"14682":2690,"14683":2689,"14684":2689,"14685":2688,"14686":2688,"14687":2689,"14688":2690,"14689":2690,"14690":2690,"14691":2688,"14692":2689,"14693":2688,"14694":2689,"14695":2689,"14696":2688,"14697":2689,"14698":2689,"14699":2688,"14700":2689,"14701":2689,"14702":2690,"14703":2689,"14704":2688,"14705":2689,"14706":2690,"14707":2690,"14708":2690,"14709":2689,"14710":2689,"14711":2689,"14712":2690,"14713":2688,"14714":2689,"14715":2688,"14716":2690,"14717":2688,"14718":2688,"14719":2690,"14720":2690,"14721":2688,"14722":2688,"14723":2689,"14724":2689,"14725":2690,"14726":2689,"14727":2690,"14728":2689,"14729":2689,"14730":2688,"14731":2688,"14732":2690,"14733":2688,"14734":2688,"14735":2689,"14736":2688,"14737":2690,"14738":2689,"14739":2689,"14740":2690,"14741":2689,"14742":2688,"14743":2689,"14744":2689,"14745":2688,"14746":2690,"14747":2689,"14748":2689,"14749":2690,"14750":2689,"14751":2689,"14752":2688,"14753":2689,"14754":2690,"14755":2689,"14756":2690,"14757":2690,"14758":2689,"14759":2688,"14760":2689,"14761":2690,"14762":2689,"14763":2689,"14764":2689,"14765":2688,"14766":2688,"14767":2689,"14768":2689,"14769":2689,"14770":2689,"14771":2689,"14772":2689,"14773":2689,"14774":2689,"14775":2689,"14776":2689,"14777":2689,"14778":2689,"14779":2689,"14780":2690,"14781":2688,"14782":2689,"14783":2688,"14784":2688,"14785":2689,"14786":2689,"14787":2690,"14788":2689,"14789":2688,"14790":2688,"14791":2690,"14792":2689,"14793":2690,"14794":2690,"14795":2690,"14796":2690,"14797":2688,"14798":2689,"14799":2689,"14800":2689,"14801":2689,"14802":2688,"14803":2690,"14804":2689,"14805":2689,"14806":2689,"14807":2688,"14808":2689,"14809":2689,"14810":2689,"14811":2690,"14812":2688,"14813":2689,"14814":2689,"14815":2689,"14816":2689,"14817":2690,"14818":2689,"14819":2690,"14820":2690,"14821":2689,"14822":2690,"14823":2689,"14824":2688,"14825":2689,"14826":2690,"14827":2689,"14828":2688,"14829":2689,"14830":2690,"14831":2689,"14832":2689,"14833":2690,"14834":2690,"14835":2689,"14836":2690,"14837":2689,"14838":2688,"14839":2688,"14840":2689,"14841":2690,"14842":2688,"14843":2689,"14844":2690,"14845":2689,"14846":2688,"14847":2689,"14848":2689,"14849":2688,"14850":2690,"14851":2689,"14852":2690,"14853":2690,"14854":2688,"14855":2689,"14856":2690,"14857":2690,"14858":2690,"14859":2690,"14860":2689,"14861":2688,"14862":2690,"14863":2688,"14864":2689,"14865":2689,"14866":2689,"14867":2688,"14868":2688,"14869":2688,"14870":2689,"14871":2689,"14872":2689,"14873":2688,"14874":2689,"14875":2688,"14876":2689,"14877":2689,"14878":2690,"14879":2688,"14880":2688,"14881":2688,"14882":2688,"14883":2689,"14884":2689,"14885":2690,"14886":2689,"14887":2688,"14888":2689,"14889":2688,"14890":2690,"14891":2688,"14892":2690,"14893":2688,"14894":2690,"14895":2689,"14896":2689,"14897":2690,"14898":2688,"14899":2690,"14900":2688,"14901":2688,"14902":2689,"14903":2688,"14904":2688,"14905":2689,"14906":2688,"14907":2688,"14908":2688,"14909":2690,"14910":2690,"14911":2690,"14912":2688,"14913":2689,"14914":2688,"14915":2688,"14916":2688,"14917":2690,"14918":2689,"14919":2688,"14920":2689,"14921":2690,"14922":2690,"14923":2689,"14924":2689,"14925":2688,"14926":2690,"14927":2689,"14928":2689,"14929":2688,"14930":2688,"14931":2689,"14932":2689,"14933":2689,"14934":2690,"14935":2688,"14936":2688,"14937":2690,"14938":2688,"14939":2689,"14940":2688,"14941":2688,"14942":2690,"14943":2689,"14944":2689,"14945":2690,"14946":2689,"14947":2690,"14948":2690,"14949":2688,"14950":2688,"14951":2689,"14952":2688,"14953":2688,"14954":2689,"14955":2690,"14956":2689,"14957":2688,"14958":2689,"14959":2688,"14960":2690,"14961":2689,"14962":2688,"14963":2688,"14964":2689,"14965":2689,"14966":2689,"14967":2689,"14968":2689,"14969":2689,"14970":2689,"14971":2689,"14972":2690,"14973":2688,"14974":2690,"14975":2689,"14976":2689,"14977":2690,"14978":2689,"14979":2688,"14980":2689,"14981":2690,"14982":2689,"14983":2688,"14984":2688,"14985":2690,"14986":2689,"14987":2689,"14988":2689,"14989":2689,"14990":2690,"14991":2689,"14992":2689,"14993":2689,"14994":2689,"14995":2689,"14996":2689,"14997":2690,"14998":2688,"14999":2689,"15000":2690,"15001":2689,"15002":2689,"15003":2689,"15004":2690,"15005":2689,"15006":2690,"15007":2689,"15008":2689,"15009":2690,"15010":2690,"15011":2689,"15012":2689,"15013":2689,"15014":2689,"15015":2689,"15016":2690,"15017":2689,"15018":2689,"15019":2690,"15020":2690,"15021":2689,"15022":2689,"15023":2688,"15024":2688,"15025":2690,"15026":2689,"15027":2689,"15028":2689,"15029":2690,"15030":2689,"15031":2689,"15032":2688,"15033":2689,"15034":2690,"15035":2688,"15036":2690,"15037":2690,"15038":2689,"15039":2690,"15040":2690,"15041":2690,"15042":2690,"15043":2689,"15044":2688,"15045":2689,"15046":2689,"15047":2689,"15048":2690,"15049":2688,"15050":2688,"15051":2689,"15052":2688,"15053":2688,"15054":2688,"15055":2689,"15056":2688,"15057":2689,"15058":2689,"15059":2688,"15060":2690,"15061":2690,"15062":2689,"15063":2688,"15064":2689,"15065":2690,"15066":2690,"15067":2690,"15068":2689,"15069":2689,"15070":2689,"15071":2690,"15072":2689,"15073":2688,"15074":2689,"15075":2690,"15076":2688,"15077":2690,"15078":2689,"15079":2690,"15080":2688,"15081":2689,"15082":2690,"15083":2688,"15084":2690,"15085":2690,"15086":2689,"15087":2689,"15088":2690,"15089":2689,"15090":2689,"15091":2690,"15092":2689,"15093":2688,"15094":2688,"15095":2689,"15096":2689,"15097":2688,"15098":2688,"15099":2689,"15100":2689,"15101":2688,"15102":2689,"15103":2690,"15104":2689,"15105":2689,"15106":2688,"15107":2688,"15108":2689,"15109":2688,"15110":2689,"15111":2688,"15112":2690,"15113":2689,"15114":2688,"15115":2690,"15116":2690,"15117":2689,"15118":2690,"15119":2689,"15120":2689,"15121":2689,"15122":2688,"15123":2689,"15124":2690,"15125":2689,"15126":2688,"15127":2690,"15128":2689,"15129":2689,"15130":2688,"15131":2689,"15132":2690,"15133":2689,"15134":2690,"15135":2689,"15136":2688,"15137":2688,"15138":2689,"15139":2690,"15140":2688,"15141":2688,"15142":2690,"15143":2689,"15144":2688,"15145":2689,"15146":2689,"15147":2689,"15148":2688,"15149":2689,"15150":2689,"15151":2688,"15152":2688,"15153":2688,"15154":2689,"15155":2688,"15156":2689,"15157":2690,"15158":2690,"15159":2689,"15160":2690,"15161":2689,"15162":2690,"15163":2689,"15164":2689,"15165":2690,"15166":2689,"15167":2689,"15168":2689,"15169":2689,"15170":2689,"15171":2689,"15172":2688,"15173":2690,"15174":2690,"15175":2689,"15176":2690,"15177":2688,"15178":2689,"15179":2689,"15180":2689,"15181":2690,"15182":2690,"15183":2690,"15184":2689,"15185":2689,"15186":2690,"15187":2690,"15188":2688,"15189":2689,"15190":2689,"15191":2689,"15192":2688,"15193":2689,"15194":2689,"15195":2690,"15196":2689,"15197":2689,"15198":2690,"15199":2688,"15200":2688,"15201":2689,"15202":2689,"15203":2688,"15204":2689,"15205":2690,"15206":2689,"15207":2689,"15208":2688,"15209":2690,"15210":2690,"15211":2689,"15212":2690,"15213":2689,"15214":2688,"15215":2688,"15216":2689,"15217":2689,"15218":2689,"15219":2689,"15220":2689,"15221":2688,"15222":2689,"15223":2689,"15224":2688,"15225":2690,"15226":2688,"15227":2689,"15228":2689,"15229":2689,"15230":2689,"15231":2689,"15232":2689,"15233":2688,"15234":2689,"15235":2690,"15236":2688,"15237":2688,"15238":2689,"15239":2690,"15240":2689,"15241":2689,"15242":2688,"15243":2689,"15244":2689,"15245":2690,"15246":2689,"15247":2689,"15248":2690,"15249":2688,"15250":2688,"15251":2689,"15252":2690,"15253":2689,"15254":2688,"15255":2688,"15256":2689,"15257":2688,"15258":2688,"15259":2688,"15260":2688,"15261":2689,"15262":2689,"15263":2689,"15264":2690,"15265":2690,"15266":2690,"15267":2688,"15268":2690,"15269":2689,"15270":2690,"15271":2689,"15272":2690,"15273":2690,"15274":2690,"15275":2689,"15276":2690,"15277":2689,"15278":2688,"15279":2690,"15280":2688,"15281":2688,"15282":2688,"15283":2689,"15284":2690,"15285":2688,"15286":2689,"15287":2689,"15288":2689,"15289":2689,"15290":2688,"15291":2688,"15292":2689,"15293":2688,"15294":2689,"15295":2688,"15296":2689,"15297":2689,"15298":2689,"15299":2688,"15300":2689,"15301":2689,"15302":2689,"15303":2688,"15304":2689,"15305":2689,"15306":2689,"15307":2688,"15308":2688,"15309":2688,"15310":2689,"15311":2690,"15312":2689,"15313":2688,"15314":2688,"15315":2689,"15316":2690,"15317":2688,"15318":2688,"15319":2689,"15320":2690,"15321":2689,"15322":2690,"15323":2689,"15324":2688,"15325":2689,"15326":2689,"15327":2690,"15328":2689,"15329":2689,"15330":2689,"15331":2690,"15332":2688,"15333":2690,"15334":2689,"15335":2689,"15336":2688,"15337":2690,"15338":2689,"15339":2690,"15340":2690,"15341":2689,"15342":2690,"15343":2688,"15344":2689,"15345":2689,"15346":2690,"15347":2689,"15348":2690,"15349":2688,"15350":2690,"15351":2689,"15352":2689,"15353":2689,"15354":2690,"15355":2690,"15356":2689,"15357":2690,"15358":2690,"15359":2688,"15360":2689,"15361":2689,"15362":2689,"15363":2689,"15364":2689,"15365":2688,"15366":2690,"15367":2688,"15368":2690,"15369":2688,"15370":2690,"15371":2688,"15372":2689,"15373":2690,"15374":2689,"15375":2689,"15376":2689,"15377":2690,"15378":2688,"15379":2688,"15380":2688,"15381":2689,"15382":2690,"15383":2689,"15384":2689,"15385":2689,"15386":2690,"15387":2689,"15388":2688,"15389":2688,"15390":2689,"15391":2689,"15392":2689,"15393":2689,"15394":2688,"15395":2688,"15396":2689,"15397":2688,"15398":2689,"15399":2688,"15400":2688,"15401":2690,"15402":2689,"15403":2689,"15404":2689,"15405":2690,"15406":2689,"15407":2689,"15408":2689,"15409":2689,"15410":2689,"15411":2690,"15412":2689,"15413":2689,"15414":2689,"15415":2690,"15416":2688,"15417":2689,"15418":2690,"15419":2689,"15420":2689,"15421":2689,"15422":2690,"15423":2689,"15424":2690,"15425":2690,"15426":2689,"15427":2689,"15428":2690,"15429":2688,"15430":2688,"15431":2690,"15432":2688,"15433":2690,"15434":2690,"15435":2688,"15436":2690,"15437":2688,"15438":2689,"15439":2689,"15440":2690,"15441":2688,"15442":2690,"15443":2689,"15444":2690,"15445":2689,"15446":2688,"15447":2690,"15448":2690,"15449":2689,"15450":2690,"15451":2688,"15452":2690,"15453":2689,"15454":2688,"15455":2688,"15456":2690,"15457":2689,"15458":2689,"15459":2688,"15460":2690,"15461":2688,"15462":2688,"15463":2689,"15464":2688,"15465":2689,"15466":2689,"15467":2689,"15468":2690,"15469":2689,"15470":2689,"15471":2689,"15472":2689,"15473":2689,"15474":2689,"15475":2690,"15476":2690,"15477":2688,"15478":2688,"15479":2690,"15480":2689,"15481":2689,"15482":2688,"15483":2690,"15484":2688,"15485":2688,"15486":2688,"15487":2689,"15488":2688,"15489":2689,"15490":2689,"15491":2689,"15492":2689,"15493":2689,"15494":2688,"15495":2689,"15496":2689,"15497":2688,"15498":2689,"15499":2690,"15500":2690,"15501":2688,"15502":2690,"15503":2688,"15504":2688,"15505":2690,"15506":2690,"15507":2689,"15508":2689,"15509":2690,"15510":2689,"15511":2690,"15512":2689,"15513":2688,"15514":2689,"15515":2689,"15516":2690,"15517":2688,"15518":2689,"15519":2689,"15520":2689,"15521":2689,"15522":2689,"15523":2689,"15524":2688,"15525":2689,"15526":2690,"15527":2689,"15528":2688,"15529":2690,"15530":2689,"15531":2688,"15532":2689,"15533":2689,"15534":2689,"15535":2689,"15536":2690,"15537":2689,"15538":2689,"15539":2689,"15540":2689,"15541":2688,"15542":2688,"15543":2689,"15544":2689,"15545":2688,"15546":2688,"15547":2689,"15548":2689,"15549":2688,"15550":2688,"15551":2689,"15552":2688,"15553":2688,"15554":2690,"15555":2690,"15556":2689,"15557":2690,"15558":2689,"15559":2690,"15560":2690,"15561":2689,"15562":2688,"15563":2689,"15564":2690,"15565":2689,"15566":2688,"15567":2689,"15568":2689,"15569":2689,"15570":2689,"15571":2690,"15572":2688,"15573":2689,"15574":2689,"15575":2689,"15576":2689,"15577":2689,"15578":2690,"15579":2690,"15580":2689,"15581":2690,"15582":2688,"15583":2688,"15584":2689,"15585":2688,"15586":2689,"15587":2689,"15588":2689,"15589":2688,"15590":2689,"15591":2688,"15592":2690,"15593":2688,"15594":2690,"15595":2689,"15596":2689,"15597":2688,"15598":2690,"15599":2689,"15600":2688,"15601":2689,"15602":2690,"15603":2689,"15604":2689,"15605":2689,"15606":2689,"15607":2689,"15608":2689,"15609":2688,"15610":2690,"15611":2690,"15612":2689,"15613":2689,"15614":2690,"15615":2689,"15616":2689,"15617":2688,"15618":2689,"15619":2689,"15620":2689,"15621":2690,"15622":2689,"15623":2689,"15624":2688,"15625":2688,"15626":2689,"15627":2688,"15628":2690,"15629":2688,"15630":2688,"15631":2689,"15632":2690,"15633":2689,"15634":2690,"15635":2690,"15636":2689,"15637":2690,"15638":2688,"15639":2688,"15640":2688,"15641":2689,"15642":2689,"15643":2690,"15644":2690,"15645":2688,"15646":2690,"15647":2688,"15648":2689,"15649":2690,"15650":2690,"15651":2689,"15652":2689,"15653":2689,"15654":2690,"15655":2689,"15656":2688,"15657":2688,"15658":2690,"15659":2690,"15660":2690,"15661":2688,"15662":2690,"15663":2689,"15664":2690,"15665":2689,"15666":2689,"15667":2689,"15668":2689,"15669":2690,"15670":2689,"15671":2689,"15672":2690,"15673":2690,"15674":2688,"15675":2688,"15676":2689,"15677":2690,"15678":2689,"15679":2688,"15680":2688,"15681":2689,"15682":2688,"15683":2689,"15684":2690,"15685":2688,"15686":2689,"15687":2690,"15688":2690,"15689":2690,"15690":2689,"15691":2689,"15692":2688,"15693":2690,"15694":2689,"15695":2688,"15696":2688,"15697":2690,"15698":2688,"15699":2689,"15700":2689,"15701":2689,"15702":2689,"15703":2690,"15704":2689,"15705":2688,"15706":2689,"15707":2689,"15708":2689,"15709":2690,"15710":2689,"15711":2689,"15712":2690,"15713":2690,"15714":2689,"15715":2689,"15716":2690,"15717":2689,"15718":2689,"15719":2689,"15720":2690,"15721":2689,"15722":2690,"15723":2689,"15724":2689,"15725":2689,"15726":2690,"15727":2689,"15728":2689,"15729":2689,"15730":2688,"15731":2688,"15732":2689,"15733":2689,"15734":2689,"15735":2689,"15736":2689,"15737":2689,"15738":2689,"15739":2690,"15740":2688,"15741":2689,"15742":2690,"15743":2688,"15744":2688,"15745":2688,"15746":2689,"15747":2689,"15748":2688,"15749":2689,"15750":2689,"15751":2688,"15752":2690,"15753":2689,"15754":2688,"15755":2689,"15756":2688,"15757":2689,"15758":2689,"15759":2688,"15760":2688,"15761":2689,"15762":2690,"15763":2688,"15764":2688,"15765":2690,"15766":2690,"15767":2689,"15768":2688,"15769":2690,"15770":2690,"15771":2690,"15772":2688,"15773":2688,"15774":2689,"15775":2688,"15776":2690,"15777":2689,"15778":2690,"15779":2690,"15780":2690,"15781":2689,"15782":2689,"15783":2688,"15784":2689,"15785":2688,"15786":2688,"15787":2689,"15788":2688,"15789":2689,"15790":2689,"15791":2690,"15792":2689,"15793":2689,"15794":2688,"15795":2689,"15796":2688,"15797":2689,"15798":2688,"15799":2688,"15800":2688,"15801":2689,"15802":2689,"15803":2688,"15804":2689,"15805":2689,"15806":2690,"15807":2690,"15808":2689,"15809":2690,"15810":2689,"15811":2689,"15812":2688,"15813":2689,"15814":2690,"15815":2690,"15816":2689,"15817":2688,"15818":2690,"15819":2689,"15820":2690,"15821":2689,"15822":2689,"15823":2690,"15824":2688,"15825":2689,"15826":2688,"15827":2690,"15828":2689,"15829":2690,"15830":2689,"15831":2689,"15832":2690,"15833":2689,"15834":2688,"15835":2689,"15836":2688,"15837":2689,"15838":2690,"15839":2689,"15840":2688,"15841":2690,"15842":2689,"15843":2690,"15844":2689,"15845":2690,"15846":2690,"15847":2689,"15848":2689,"15849":2689,"15850":2689,"15851":2689,"15852":2689,"15853":2689,"15854":2689,"15855":2688,"15856":2688,"15857":2688,"15858":2688,"15859":2689,"15860":2688,"15861":2689,"15862":2688,"15863":2690,"15864":2688,"15865":2690,"15866":2689,"15867":2689,"15868":2689,"15869":2688,"15870":2689,"15871":2690,"15872":2688,"15873":2688,"15874":2689,"15875":2689,"15876":2689,"15877":2688,"15878":2689,"15879":2688,"15880":2688,"15881":2689,"15882":2690,"15883":2689,"15884":2689,"15885":2689,"15886":2688,"15887":2689,"15888":2689,"15889":2689,"15890":2689,"15891":2689,"15892":2688,"15893":2690,"15894":2690,"15895":2690,"15896":2689,"15897":2688,"15898":2689,"15899":2689,"15900":2689,"15901":2689,"15902":2690,"15903":2688,"15904":2689,"15905":2690,"15906":2688,"15907":2689,"15908":2689,"15909":2689,"15910":2688,"15911":2689,"15912":2688,"15913":2689,"15914":2689,"15915":2690,"15916":2689,"15917":2690,"15918":2689,"15919":2689,"15920":2689,"15921":2689,"15922":2690,"15923":2688,"15924":2690,"15925":2690,"15926":2690,"15927":2690,"15928":2689,"15929":2689,"15930":2688,"15931":2689,"15932":2689,"15933":2689,"15934":2689,"15935":2690,"15936":2688,"15937":2690,"15938":2689,"15939":2689,"15940":2690,"15941":2688,"15942":2688,"15943":2690,"15944":2689,"15945":2688,"15946":2690,"15947":2689,"15948":2689,"15949":2689,"15950":2689,"15951":2688,"15952":2689,"15953":2688,"15954":2690,"15955":2689,"15956":2690,"15957":2690,"15958":2689,"15959":2689,"15960":2689,"15961":2690,"15962":2689,"15963":2688,"15964":2688,"15965":2689,"15966":2688,"15967":2689,"15968":2689,"15969":2689,"15970":2690,"15971":2690,"15972":2690,"15973":2689,"15974":2688,"15975":2690,"15976":2689,"15977":2689,"15978":2690,"15979":2688,"15980":2689,"15981":2688,"15982":2690,"15983":2690,"15984":2689,"15985":2688,"15986":2690,"15987":2688,"15988":2690,"15989":2688,"15990":2689,"15991":2690,"15992":2688,"15993":2690,"15994":2689,"15995":2689,"15996":2689,"15997":2688,"15998":2689,"15999":2688,"16000":2689,"16001":2689,"16002":2688,"16003":2689,"16004":2688,"16005":2689,"16006":2690,"16007":2689,"16008":2688,"16009":2690,"16010":2688,"16011":2688,"16012":2689,"16013":2690,"16014":2688,"16015":2689,"16016":2688,"16017":2690,"16018":2689,"16019":2690,"16020":2689,"16021":2689,"16022":2690,"16023":2690,"16024":2689,"16025":2689,"16026":2689,"16027":2689,"16028":2689,"16029":2688,"16030":2689,"16031":2689,"16032":2688,"16033":2689,"16034":2688,"16035":2689,"16036":2689,"16037":2688,"16038":2689,"16039":2689,"16040":2688,"16041":2689,"16042":2690,"16043":2688,"16044":2689,"16045":2688,"16046":2690,"16047":2690,"16048":2690,"16049":2688,"16050":2688,"16051":2689,"16052":2689,"16053":2688,"16054":2690,"16055":2689,"16056":2689,"16057":2689,"16058":2689,"16059":2689,"16060":2689,"16061":2689,"16062":2690,"16063":2690,"16064":2689,"16065":2689,"16066":2689,"16067":2690,"16068":2688,"16069":2688,"16070":2688,"16071":2688,"16072":2690,"16073":2689,"16074":2689,"16075":2689,"16076":2690,"16077":2690,"16078":2688,"16079":2689,"16080":2689,"16081":2690,"16082":2690,"16083":2690,"16084":2688,"16085":2689,"16086":2690,"16087":2690,"16088":2688,"16089":2690,"16090":2690,"16091":2688,"16092":2688,"16093":2690,"16094":2690,"16095":2689,"16096":2688,"16097":2690,"16098":2689,"16099":2690,"16100":2690,"16101":2690,"16102":2689,"16103":2690,"16104":2689,"16105":2688,"16106":2688,"16107":2688,"16108":2689,"16109":2688,"16110":2690,"16111":2688,"16112":2689,"16113":2689,"16114":2689,"16115":2689,"16116":2688,"16117":2688,"16118":2689,"16119":2689,"16120":2690,"16121":2690,"16122":2689,"16123":2689,"16124":2688,"16125":2689,"16126":2690,"16127":2689,"16128":2690,"16129":2688,"16130":2689,"16131":2689,"16132":2688,"16133":2690,"16134":2688,"16135":2688,"16136":2690,"16137":2690,"16138":2690,"16139":2689,"16140":2689,"16141":2689,"16142":2690,"16143":2688,"16144":2688,"16145":2689,"16146":2689,"16147":2689,"16148":2690,"16149":2688,"16150":2689,"16151":2689,"16152":2689,"16153":2688,"16154":2689,"16155":2688,"16156":2689,"16157":2690,"16158":2690,"16159":2690,"16160":2690,"16161":2690,"16162":2688,"16163":2688,"16164":2689,"16165":2690,"16166":2689,"16167":2690,"16168":2689,"16169":2690,"16170":2689,"16171":2688,"16172":2689,"16173":2689,"16174":2689,"16175":2689,"16176":2689,"16177":2688,"16178":2689,"16179":2689,"16180":2690,"16181":2690,"16182":2689,"16183":2689,"16184":2689,"16185":2690,"16186":2688,"16187":2688,"16188":2690,"16189":2689,"16190":2689,"16191":2688,"16192":2690,"16193":2688,"16194":2689,"16195":2690,"16196":2689,"16197":2689,"16198":2689,"16199":2690,"16200":2689,"16201":2689,"16202":2690,"16203":2690,"16204":2690,"16205":2689,"16206":2688,"16207":2690,"16208":2690,"16209":2690,"16210":2688,"16211":2690,"16212":2689,"16213":2690,"16214":2688,"16215":2689,"16216":2689,"16217":2689,"16218":2688,"16219":2688,"16220":2689,"16221":2688,"16222":2688,"16223":2689,"16224":2688,"16225":2689,"16226":2689,"16227":2688,"16228":2689,"16229":2688,"16230":2688,"16231":2689,"16232":2690,"16233":2688,"16234":2689,"16235":2689,"16236":2688,"16237":2690,"16238":2689,"16239":2689,"16240":2690,"16241":2689,"16242":2690,"16243":2690,"16244":2688,"16245":2689,"16246":2689,"16247":2689,"16248":2689,"16249":2689,"16250":2689,"16251":2690,"16252":2689,"16253":2689,"16254":2689,"16255":2689,"16256":2690,"16257":2689,"16258":2689,"16259":2689,"16260":2689,"16261":2689,"16262":2689,"16263":2689,"16264":2689,"16265":2689,"16266":2690,"16267":2689,"16268":2689,"16269":2689,"16270":2688,"16271":2689,"16272":2688,"16273":2688,"16274":2689,"16275":2690,"16276":2689,"16277":2690,"16278":2689,"16279":2689,"16280":2689,"16281":2689,"16282":2689,"16283":2688,"16284":2688,"16285":2688,"16286":2689,"16287":2689,"16288":2690,"16289":2690,"16290":2690,"16291":2689,"16292":2689,"16293":2689,"16294":2689,"16295":2690,"16296":2689,"16297":2690,"16298":2688,"16299":2688,"16300":2689,"16301":2689,"16302":2689,"16303":2688,"16304":2689,"16305":2690,"16306":2689,"16307":2690,"16308":2689,"16309":2689,"16310":2688,"16311":2690,"16312":2690,"16313":2689,"16314":2688,"16315":2689,"16316":2688,"16317":2689,"16318":2689,"16319":2688,"16320":2689,"16321":2690,"16322":2689,"16323":2689,"16324":2689,"16325":2689,"16326":2688,"16327":2690,"16328":2689,"16329":2689,"16330":2689,"16331":2689,"16332":2690,"16333":2690,"16334":2690,"16335":2689,"16336":2690,"16337":2688,"16338":2689,"16339":2688,"16340":2689,"16341":2689,"16342":2690,"16343":2689,"16344":2689,"16345":2689,"16346":2690,"16347":2689,"16348":2688,"16349":2690,"16350":2689,"16351":2688,"16352":2689,"16353":2689,"16354":2689,"16355":2689,"16356":2689,"16357":2688,"16358":2689,"16359":2688,"16360":2688,"16361":2688,"16362":2690,"16363":2689,"16364":2688,"16365":2689,"16366":2689,"16367":2690,"16368":2688,"16369":2689,"16370":2689,"16371":2688,"16372":2688,"16373":2689,"16374":2688,"16375":2690,"16376":2689,"16377":2689,"16378":2690,"16379":2689,"16380":2689,"16381":2690,"16382":2689,"16383":2689,"16384":2688,"16385":2689,"16386":2689,"16387":2690,"16388":2689,"16389":2689,"16390":2688,"16391":2690,"16392":2688,"16393":2688,"16394":2688,"16395":2689,"16396":2690,"16397":2689,"16398":2689,"16399":2689,"16400":2688,"16401":2688,"16402":2689,"16403":2688,"16404":2690,"16405":2689,"16406":2689,"16407":2689,"16408":2690,"16409":2688,"16410":2689,"16411":2690,"16412":2690,"16413":2690,"16414":2690,"16415":2689,"16416":2689,"16417":2689,"16418":2690,"16419":2689,"16420":2688,"16421":2690,"16422":2688,"16423":2689,"16424":2689,"16425":2688,"16426":2690,"16427":2689,"16428":2690,"16429":2689,"16430":2690,"16431":2689,"16432":2689,"16433":2689,"16434":2689,"16435":2689,"16436":2688,"16437":2689,"16438":2690,"16439":2689,"16440":2689,"16441":2690,"16442":2690,"16443":2689,"16444":2688,"16445":2690,"16446":2690,"16447":2690,"16448":2688,"16449":2689,"16450":2689,"16451":2688,"16452":2690,"16453":2690,"16454":2690,"16455":2689,"16456":2690,"16457":2689,"16458":2689,"16459":2688,"16460":2690,"16461":2689,"16462":2689,"16463":2690,"16464":2688,"16465":2690,"16466":2689,"16467":2688,"16468":2689,"16469":2690,"16470":2689,"16471":2688,"16472":2689,"16473":2689,"16474":2688,"16475":2689,"16476":2689,"16477":2689,"16478":2689,"16479":2690,"16480":2690,"16481":2688,"16482":2689,"16483":2689,"16484":2690,"16485":2688,"16486":2689,"16487":2688,"16488":2689,"16489":2690,"16490":2688,"16491":2689,"16492":2688,"16493":2689,"16494":2689,"16495":2690,"16496":2689,"16497":2690,"16498":2688,"16499":2690,"16500":2688,"16501":2690,"16502":2690,"16503":2690,"16504":2690,"16505":2688,"16506":2688,"16507":2688,"16508":2689,"16509":2689,"16510":2690,"16511":2688,"16512":2688,"16513":2689,"16514":2689,"16515":2689,"16516":2690,"16517":2690,"16518":2688,"16519":2689,"16520":2689,"16521":2689,"16522":2690,"16523":2689,"16524":2689,"16525":2688,"16526":2689,"16527":2689,"16528":2689,"16529":2689,"16530":2689,"16531":2689,"16532":2690,"16533":2689,"16534":2688,"16535":2690,"16536":2688,"16537":2690,"16538":2689,"16539":2689,"16540":2689,"16541":2690,"16542":2690,"16543":2690,"16544":2688,"16545":2688,"16546":2690,"16547":2689,"16548":2689,"16549":2689,"16550":2688,"16551":2689,"16552":2688,"16553":2689,"16554":2689,"16555":2689,"16556":2690,"16557":2689,"16558":2689,"16559":2689,"16560":2688,"16561":2689,"16562":2688,"16563":2690,"16564":2689,"16565":2688,"16566":2689,"16567":2688,"16568":2689,"16569":2689,"16570":2689,"16571":2689,"16572":2689,"16573":2689,"16574":2689,"16575":2688,"16576":2688,"16577":2689,"16578":2689,"16579":2689,"16580":2689,"16581":2689,"16582":2688,"16583":2689,"16584":2689,"16585":2689,"16586":2689,"16587":2690,"16588":2688,"16589":2690,"16590":2690,"16591":2689,"16592":2689,"16593":2689,"16594":2689,"16595":2688,"16596":2688,"16597":2690,"16598":2690,"16599":2688,"16600":2690,"16601":2689,"16602":2688,"16603":2689,"16604":2690,"16605":2689,"16606":2688,"16607":2690,"16608":2689,"16609":2688,"16610":2689,"16611":2688,"16612":2688,"16613":2689,"16614":2689,"16615":2690,"16616":2690,"16617":2689,"16618":2690,"16619":2689,"16620":2688,"16621":2688,"16622":2689,"16623":2689,"16624":2689,"16625":2690,"16626":2690,"16627":2688,"16628":2690,"16629":2689,"16630":2689,"16631":2690,"16632":2688,"16633":2690,"16634":2689,"16635":2689,"16636":2688,"16637":2689,"16638":2690,"16639":2690,"16640":2688,"16641":2689,"16642":2688,"16643":2690,"16644":2688,"16645":2689,"16646":2689,"16647":2690,"16648":2688,"16649":2690,"16650":2689,"16651":2688,"16652":2690,"16653":2688,"16654":2688,"16655":2689,"16656":2689,"16657":2690,"16658":2688,"16659":2688,"16660":2689,"16661":2688,"16662":2689,"16663":2689,"16664":2689,"16665":2688,"16666":2689,"16667":2689,"16668":2689,"16669":2689,"16670":2690,"16671":2690,"16672":2689,"16673":2689,"16674":2689,"16675":2689,"16676":2689,"16677":2690,"16678":2689,"16679":2689,"16680":2688,"16681":2690,"16682":2689,"16683":2689,"16684":2690,"16685":2688,"16686":2689,"16687":2689,"16688":2690,"16689":2689,"16690":2689,"16691":2689,"16692":2690,"16693":2689,"16694":2689,"16695":2688,"16696":2689,"16697":2690,"16698":2690,"16699":2690,"16700":2688,"16701":2688,"16702":2690,"16703":2689,"16704":2689,"16705":2690,"16706":2688,"16707":2689,"16708":2688,"16709":2689,"16710":2689,"16711":2689,"16712":2690,"16713":2689,"16714":2688,"16715":2689,"16716":2689,"16717":2688,"16718":2690,"16719":2690,"16720":2690,"16721":2689,"16722":2688,"16723":2690,"16724":2689,"16725":2689,"16726":2689,"16727":2690,"16728":2689,"16729":2689,"16730":2689,"16731":2689,"16732":2688,"16733":2690,"16734":2688,"16735":2688,"16736":2690,"16737":2689,"16738":2689,"16739":2689,"16740":2690,"16741":2690,"16742":2689,"16743":2688,"16744":2689,"16745":2690,"16746":2689,"16747":2690,"16748":2689,"16749":2689,"16750":2688,"16751":2690,"16752":2689,"16753":2689,"16754":2689,"16755":2689,"16756":2689,"16757":2690,"16758":2688,"16759":2689,"16760":2689,"16761":2689,"16762":2690,"16763":2688,"16764":2689,"16765":2689,"16766":2689,"16767":2690,"16768":2690,"16769":2688,"16770":2690,"16771":2689,"16772":2689,"16773":2690,"16774":2690,"16775":2690,"16776":2689,"16777":2688,"16778":2689,"16779":2689,"16780":2689,"16781":2689,"16782":2689,"16783":2690,"16784":2688,"16785":2689,"16786":2689,"16787":2689,"16788":2688,"16789":2689,"16790":2689,"16791":2689,"16792":2689,"16793":2690,"16794":2688,"16795":2689,"16796":2689,"16797":2689,"16798":2690,"16799":2689,"16800":2690,"16801":2690,"16802":2688,"16803":2689,"16804":2689,"16805":2689,"16806":2689,"16807":2689,"16808":2689,"16809":2689,"16810":2688,"16811":2688,"16812":2690,"16813":2689,"16814":2688,"16815":2688,"16816":2690,"16817":2689,"16818":2689,"16819":2688,"16820":2689,"16821":2689,"16822":2688,"16823":2688,"16824":2690,"16825":2689,"16826":2690,"16827":2690,"16828":2689,"16829":2689,"16830":2689,"16831":2688,"16832":2689,"16833":2688,"16834":2689,"16835":2690,"16836":2689,"16837":2690,"16838":2689,"16839":2688,"16840":2688,"16841":2689,"16842":2689,"16843":2689,"16844":2690,"16845":2689,"16846":2690,"16847":2690,"16848":2688,"16849":2688,"16850":2690,"16851":2688,"16852":2689,"16853":2689,"16854":2690,"16855":2689,"16856":2689,"16857":2690,"16858":2688,"16859":2688,"16860":2689,"16861":2689,"16862":2688,"16863":2688,"16864":2690,"16865":2688,"16866":2689,"16867":2690,"16868":2688,"16869":2688,"16870":2689,"16871":2688,"16872":2688,"16873":2690,"16874":2690,"16875":2689,"16876":2690,"16877":2689,"16878":2689,"16879":2690,"16880":2689,"16881":2690,"16882":2690,"16883":2690,"16884":2689,"16885":2689,"16886":2690,"16887":2689,"16888":2689,"16889":2689,"16890":2689,"16891":2690,"16892":2689,"16893":2689,"16894":2690,"16895":2689,"16896":2690,"16897":2689,"16898":2688,"16899":2688,"16900":2689,"16901":2689,"16902":2689,"16903":2689,"16904":2689,"16905":2690,"16906":2688,"16907":2689,"16908":2689,"16909":2689,"16910":2688,"16911":2689,"16912":2689,"16913":2689,"16914":2690,"16915":2689,"16916":2689,"16917":2690,"16918":2688,"16919":2688,"16920":2688,"16921":2689,"16922":2689,"16923":2688,"16924":2688,"16925":2688,"16926":2688,"16927":2688,"16928":2690,"16929":2689,"16930":2688,"16931":2689,"16932":2688,"16933":2688,"16934":2689,"16935":2689,"16936":2688,"16937":2689,"16938":2689,"16939":2689,"16940":2689,"16941":2688,"16942":2689,"16943":2690,"16944":2689,"16945":2689,"16946":2689,"16947":2689,"16948":2688,"16949":2690,"16950":2690,"16951":2690,"16952":2688,"16953":2689,"16954":2690,"16955":2689,"16956":2690,"16957":2689,"16958":2689,"16959":2688,"16960":2689,"16961":2690,"16962":2688,"16963":2689,"16964":2690,"16965":2690,"16966":2690,"16967":2688,"16968":2688,"16969":2688,"16970":2688,"16971":2689,"16972":2688,"16973":2688,"16974":2690,"16975":2690,"16976":2689,"16977":2689,"16978":2688,"16979":2689,"16980":2690,"16981":2688,"16982":2690,"16983":2689,"16984":2688,"16985":2689,"16986":2690,"16987":2690,"16988":2690,"16989":2690,"16990":2688,"16991":2689,"16992":2690,"16993":2689,"16994":2688,"16995":2689,"16996":2689,"16997":2689,"16998":2689,"16999":2688,"17000":2690,"17001":2689,"17002":2690,"17003":2689,"17004":2689,"17005":2689,"17006":2689,"17007":2690,"17008":2688,"17009":2688,"17010":2688,"17011":2690,"17012":2689,"17013":2689,"17014":2689,"17015":2688,"17016":2690,"17017":2690,"17018":2689,"17019":2690,"17020":2689,"17021":2688,"17022":2690,"17023":2689,"17024":2689,"17025":2689,"17026":2688,"17027":2690,"17028":2689,"17029":2690,"17030":2690,"17031":2688,"17032":2689,"17033":2690,"17034":2688,"17035":2688,"17036":2690,"17037":2688,"17038":2689,"17039":2689,"17040":2689,"17041":2689,"17042":2689,"17043":2690,"17044":2690,"17045":2689,"17046":2689,"17047":2689,"17048":2688,"17049":2690,"17050":2688,"17051":2689,"17052":2689,"17053":2690,"17054":2690,"17055":2688,"17056":2689,"17057":2689,"17058":2688,"17059":2689,"17060":2689,"17061":2689,"17062":2689,"17063":2690,"17064":2690,"17065":2688,"17066":2689,"17067":2688,"17068":2689,"17069":2690,"17070":2690,"17071":2688,"17072":2688,"17073":2689,"17074":2689,"17075":2689,"17076":2689,"17077":2689,"17078":2688,"17079":2690,"17080":2689,"17081":2689,"17082":2689,"17083":2689,"17084":2689,"17085":2689,"17086":2688,"17087":2688,"17088":2690,"17089":2688,"17090":2690,"17091":2688,"17092":2689,"17093":2688,"17094":2689,"17095":2688,"17096":2689,"17097":2689,"17098":2689,"17099":2688,"17100":2689,"17101":2688,"17102":2690,"17103":2689,"17104":2689,"17105":2689,"17106":2690,"17107":2689,"17108":2689,"17109":2689,"17110":2689,"17111":2689,"17112":2690,"17113":2688,"17114":2689,"17115":2689,"17116":2689,"17117":2689,"17118":2689,"17119":2690,"17120":2689,"17121":2690,"17122":2690,"17123":2688,"17124":2689,"17125":2689,"17126":2690,"17127":2690,"17128":2688,"17129":2688,"17130":2690,"17131":2688,"17132":2690,"17133":2688,"17134":2688,"17135":2689,"17136":2689,"17137":2688,"17138":2689,"17139":2689,"17140":2688,"17141":2689,"17142":2690,"17143":2689,"17144":2689,"17145":2689,"17146":2689,"17147":2689,"17148":2689,"17149":2689,"17150":2689,"17151":2689,"17152":2689,"17153":2689,"17154":2689,"17155":2688,"17156":2689,"17157":2688,"17158":2688,"17159":2689,"17160":2689,"17161":2689,"17162":2688,"17163":2690,"17164":2689,"17165":2689,"17166":2690,"17167":2689,"17168":2689,"17169":2689,"17170":2690,"17171":2688,"17172":2688,"17173":2688,"17174":2690,"17175":2689,"17176":2690,"17177":2689,"17178":2689,"17179":2689,"17180":2690,"17181":2690,"17182":2690,"17183":2688,"17184":2689,"17185":2689,"17186":2689,"17187":2689,"17188":2690,"17189":2689,"17190":2690,"17191":2689,"17192":2689,"17193":2690,"17194":2689,"17195":2689,"17196":2688,"17197":2689,"17198":2689,"17199":2690,"17200":2688,"17201":2690,"17202":2688,"17203":2688,"17204":2689,"17205":2689,"17206":2689,"17207":2688,"17208":2689,"17209":2688,"17210":2689,"17211":2689,"17212":2689,"17213":2689,"17214":2690,"17215":2689,"17216":2689,"17217":2688,"17218":2688,"17219":2688,"17220":2690,"17221":2689,"17222":2690,"17223":2689,"17224":2689,"17225":2689,"17226":2690,"17227":2689,"17228":2689,"17229":2688,"17230":2689,"17231":2689,"17232":2689,"17233":2690,"17234":2688,"17235":2690,"17236":2689,"17237":2689,"17238":2689,"17239":2688,"17240":2688,"17241":2689,"17242":2690,"17243":2689,"17244":2689,"17245":2689,"17246":2689,"17247":2688,"17248":2688,"17249":2690,"17250":2688,"17251":2689,"17252":2689,"17253":2689,"17254":2689,"17255":2689,"17256":2690,"17257":2689,"17258":2689,"17259":2689,"17260":2688,"17261":2690,"17262":2690,"17263":2688,"17264":2689,"17265":2690,"17266":2690,"17267":2689,"17268":2689,"17269":2689,"17270":2689,"17271":2690,"17272":2689,"17273":2689,"17274":2688,"17275":2688,"17276":2689,"17277":2690,"17278":2689,"17279":2688,"17280":2688,"17281":2690,"17282":2689,"17283":2689,"17284":2690,"17285":2690,"17286":2689,"17287":2689,"17288":2690,"17289":2689,"17290":2689,"17291":2689,"17292":2689,"17293":2688,"17294":2689,"17295":2688,"17296":2688,"17297":2688,"17298":2690,"17299":2688,"17300":2689,"17301":2690,"17302":2688,"17303":2689,"17304":2690,"17305":2690,"17306":2689,"17307":2689,"17308":2689,"17309":2688,"17310":2688,"17311":2689,"17312":2689,"17313":2690,"17314":2688,"17315":2690,"17316":2688,"17317":2689,"17318":2689,"17319":2689,"17320":2689,"17321":2690,"17322":2690,"17323":2690,"17324":2688,"17325":2688,"17326":2690,"17327":2688,"17328":2688,"17329":2690,"17330":2689,"17331":2690,"17332":2690,"17333":2689,"17334":2689,"17335":2690,"17336":2689,"17337":2689,"17338":2690,"17339":2690,"17340":2689,"17341":2689,"17342":2689,"17343":2690,"17344":2689,"17345":2688,"17346":2689,"17347":2689,"17348":2688,"17349":2689,"17350":2688,"17351":2689,"17352":2690,"17353":2689,"17354":2690,"17355":2689,"17356":2689,"17357":2690,"17358":2688,"17359":2690,"17360":2690,"17361":2690,"17362":2690,"17363":2689,"17364":2689,"17365":2688,"17366":2688,"17367":2689,"17368":2689,"17369":2688,"17370":2690,"17371":2689,"17372":2689,"17373":2689,"17374":2688,"17375":2688,"17376":2689,"17377":2689,"17378":2689,"17379":2690,"17380":2688,"17381":2690,"17382":2689,"17383":2689,"17384":2690,"17385":2689,"17386":2689,"17387":2689,"17388":2688,"17389":2690,"17390":2690,"17391":2690,"17392":2689,"17393":2689,"17394":2688,"17395":2688,"17396":2690,"17397":2688,"17398":2688,"17399":2689,"17400":2689,"17401":2688,"17402":2689,"17403":2689,"17404":2688,"17405":2690,"17406":2689,"17407":2689,"17408":2689,"17409":2690,"17410":2689,"17411":2690,"17412":2689,"17413":2689,"17414":2688,"17415":2689,"17416":2689,"17417":2689,"17418":2688,"17419":2689,"17420":2688,"17421":2688,"17422":2689,"17423":2689,"17424":2689,"17425":2690,"17426":2689,"17427":2688,"17428":2688,"17429":2689,"17430":2690,"17431":2690,"17432":2690,"17433":2689,"17434":2688,"17435":2689,"17436":2689,"17437":2688,"17438":2689,"17439":2688,"17440":2689,"17441":2689,"17442":2688,"17443":2690,"17444":2689,"17445":2689,"17446":2688,"17447":2688,"17448":2688,"17449":2690,"17450":2688,"17451":2690,"17452":2689,"17453":2688,"17454":2689,"17455":2690,"17456":2689,"17457":2689,"17458":2690,"17459":2688,"17460":2690,"17461":2688,"17462":2690,"17463":2690,"17464":2689,"17465":2688,"17466":2689,"17467":2689,"17468":2688,"17469":2689,"17470":2690,"17471":2690,"17472":2689,"17473":2688,"17474":2688,"17475":2690,"17476":2690,"17477":2689,"17478":2688,"17479":2689,"17480":2689,"17481":2689,"17482":2690,"17483":2689,"17484":2689,"17485":2690,"17486":2688,"17487":2690,"17488":2689,"17489":2689,"17490":2689,"17491":2689,"17492":2689,"17493":2690,"17494":2689,"17495":2690,"17496":2688,"17497":2690,"17498":2689,"17499":2689,"17500":2689,"17501":2689,"17502":2689,"17503":2689,"17504":2689,"17505":2689,"17506":2689,"17507":2690,"17508":2689,"17509":2690,"17510":2688,"17511":2689,"17512":2688,"17513":2688,"17514":2688,"17515":2689,"17516":2690,"17517":2688,"17518":2689,"17519":2689,"17520":2690,"17521":2689,"17522":2690,"17523":2689,"17524":2689,"17525":2689,"17526":2689,"17527":2689,"17528":2689,"17529":2689,"17530":2690,"17531":2688,"17532":2689,"17533":2690,"17534":2690,"17535":2689,"17536":2689,"17537":2690,"17538":2688,"17539":2688,"17540":2690,"17541":2689,"17542":2689,"17543":2689,"17544":2688,"17545":2688,"17546":2688,"17547":2688,"17548":2688,"17549":2689,"17550":2688,"17551":2690,"17552":2689,"17553":2690,"17554":2689,"17555":2689,"17556":2690,"17557":2689,"17558":2688,"17559":2689,"17560":2689,"17561":2690,"17562":2689,"17563":2689,"17564":2690,"17565":2688,"17566":2688,"17567":2689,"17568":2690,"17569":2690,"17570":2689,"17571":2689,"17572":2688,"17573":2688,"17574":2688,"17575":2689,"17576":2690,"17577":2688,"17578":2689,"17579":2689,"17580":2689,"17581":2689,"17582":2689,"17583":2689,"17584":2690,"17585":2689,"17586":2688,"17587":2689,"17588":2689,"17589":2689,"17590":2688,"17591":2689,"17592":2689,"17593":2689,"17594":2688,"17595":2689,"17596":2689,"17597":2688,"17598":2689,"17599":2688,"17600":2688,"17601":2689,"17602":2689,"17603":2689,"17604":2689,"17605":2689,"17606":2690,"17607":2688,"17608":2689,"17609":2688,"17610":2689,"17611":2689,"17612":2689,"17613":2690,"17614":2689,"17615":2688,"17616":2689,"17617":2689,"17618":2690,"17619":2688,"17620":2688,"17621":2688,"17622":2689,"17623":2690,"17624":2688,"17625":2690,"17626":2688,"17627":2689,"17628":2690,"17629":2688,"17630":2689,"17631":2689,"17632":2688,"17633":2688,"17634":2689,"17635":2689,"17636":2689,"17637":2689,"17638":2690,"17639":2690,"17640":2689,"17641":2688,"17642":2689,"17643":2689,"17644":2689,"17645":2688,"17646":2690,"17647":2690,"17648":2690,"17649":2690,"17650":2689,"17651":2688,"17652":2689,"17653":2690,"17654":2689,"17655":2689,"17656":2690,"17657":2690,"17658":2688,"17659":2688,"17660":2689,"17661":2689,"17662":2688,"17663":2689,"17664":2690,"17665":2689,"17666":2688,"17667":2688,"17668":2688,"17669":2689,"17670":2689,"17671":2689,"17672":2690,"17673":2688,"17674":2689,"17675":2689,"17676":2690,"17677":2689,"17678":2689,"17679":2690,"17680":2689,"17681":2690,"17682":2690,"17683":2688,"17684":2689,"17685":2688,"17686":2689,"17687":2689,"17688":2689,"17689":2689,"17690":2689,"17691":2688,"17692":2689,"17693":2690,"17694":2689,"17695":2690,"17696":2690,"17697":2689,"17698":2690,"17699":2688,"17700":2689,"17701":2689,"17702":2689,"17703":2690,"17704":2690,"17705":2690,"17706":2690,"17707":2690,"17708":2690,"17709":2688,"17710":2688,"17711":2689,"17712":2689,"17713":2690,"17714":2690,"17715":2690,"17716":2688,"17717":2688,"17718":2689,"17719":2689,"17720":2689,"17721":2688,"17722":2689,"17723":2690,"17724":2689,"17725":2689,"17726":2688,"17727":2689,"17728":2688,"17729":2688,"17730":2690,"17731":2690,"17732":2689,"17733":2690,"17734":2689,"17735":2689,"17736":2690,"17737":2690,"17738":2689,"17739":2690,"17740":2688,"17741":2690,"17742":2689,"17743":2689,"17744":2689,"17745":2690,"17746":2688,"17747":2689,"17748":2690,"17749":2690,"17750":2690,"17751":2688,"17752":2689,"17753":2688,"17754":2688,"17755":2690,"17756":2689,"17757":2690,"17758":2690,"17759":2689,"17760":2689,"17761":2690,"17762":2689,"17763":2688,"17764":2688,"17765":2689,"17766":2690,"17767":2690,"17768":2689,"17769":2688,"17770":2689,"17771":2689,"17772":2690,"17773":2688,"17774":2690,"17775":2690,"17776":2688,"17777":2689,"17778":2689,"17779":2688,"17780":2689,"17781":2690,"17782":2690,"17783":2689,"17784":2689,"17785":2690,"17786":2690,"17787":2688,"17788":2690,"17789":2688,"17790":2690,"17791":2689,"17792":2688,"17793":2690,"17794":2690,"17795":2689,"17796":2689,"17797":2690,"17798":2688,"17799":2688,"17800":2689,"17801":2689,"17802":2689,"17803":2689,"17804":2688,"17805":2689,"17806":2689,"17807":2689,"17808":2688,"17809":2688,"17810":2689,"17811":2690,"17812":2690,"17813":2689,"17814":2689,"17815":2689,"17816":2689,"17817":2689,"17818":2688,"17819":2689,"17820":2688,"17821":2689,"17822":2689,"17823":2688,"17824":2688,"17825":2689,"17826":2689,"17827":2689,"17828":2689,"17829":2689,"17830":2689,"17831":2689,"17832":2689,"17833":2689,"17834":2689,"17835":2690,"17836":2688,"17837":2689,"17838":2689,"17839":2689,"17840":2690,"17841":2688,"17842":2690,"17843":2688,"17844":2690,"17845":2690,"17846":2689,"17847":2689,"17848":2690,"17849":2689,"17850":2688,"17851":2688,"17852":2689,"17853":2688,"17854":2690,"17855":2689,"17856":2688,"17857":2689,"17858":2689,"17859":2689,"17860":2689,"17861":2690,"17862":2689,"17863":2689,"17864":2688,"17865":2690,"17866":2690,"17867":2689,"17868":2689,"17869":2689,"17870":2689,"17871":2690,"17872":2689,"17873":2689,"17874":2689,"17875":2689,"17876":2690,"17877":2689,"17878":2689,"17879":2689,"17880":2688,"17881":2689,"17882":2689,"17883":2688,"17884":2689,"17885":2688,"17886":2688,"17887":2689,"17888":2689,"17889":2689,"17890":2690,"17891":2689,"17892":2688,"17893":2688,"17894":2690,"17895":2689,"17896":2688,"17897":2690,"17898":2688,"17899":2689,"17900":2690,"17901":2690,"17902":2690,"17903":2689,"17904":2688,"17905":2689,"17906":2688,"17907":2688,"17908":2689,"17909":2688,"17910":2689,"17911":2688,"17912":2688,"17913":2689,"17914":2690,"17915":2689,"17916":2690,"17917":2688,"17918":2689,"17919":2688,"17920":2689,"17921":2688,"17922":2690,"17923":2689,"17924":2690,"17925":2689,"17926":2690,"17927":2690,"17928":2689,"17929":2689,"17930":2688,"17931":2690,"17932":2689,"17933":2688,"17934":2690,"17935":2689,"17936":2688,"17937":2689,"17938":2688,"17939":2689,"17940":2690,"17941":2688,"17942":2688,"17943":2689,"17944":2689,"17945":2690,"17946":2689,"17947":2689,"17948":2689,"17949":2689,"17950":2689,"17951":2688,"17952":2690,"17953":2689,"17954":2689,"17955":2689,"17956":2689,"17957":2688,"17958":2689,"17959":2690,"17960":2690,"17961":2688,"17962":2689,"17963":2689,"17964":2690,"17965":2689,"17966":2688,"17967":2688,"17968":2689,"17969":2689,"17970":2689,"17971":2690,"17972":2690,"17973":2689,"17974":2689,"17975":2688,"17976":2689,"17977":2690,"17978":2689,"17979":2688,"17980":2688,"17981":2688,"17982":2689,"17983":2689,"17984":2688,"17985":2689,"17986":2690,"17987":2690,"17988":2689,"17989":2690,"17990":2688,"17991":2690,"17992":2690,"17993":2689,"17994":2690,"17995":2690,"17996":2689,"17997":2689,"17998":2689,"17999":2689,"18000":2689,"18001":2690,"18002":2688,"18003":2690,"18004":2689,"18005":2688,"18006":2690,"18007":2690,"18008":2689,"18009":2690,"18010":2690,"18011":2690,"18012":2688,"18013":2689,"18014":2690,"18015":2690,"18016":2689,"18017":2688,"18018":2690,"18019":2688,"18020":2688,"18021":2690,"18022":2689,"18023":2688,"18024":2688,"18025":2688,"18026":2689,"18027":2690,"18028":2690,"18029":2690,"18030":2689,"18031":2689,"18032":2689,"18033":2689,"18034":2688,"18035":2688,"18036":2689,"18037":2689,"18038":2689,"18039":2689,"18040":2688,"18041":2690,"18042":2689,"18043":2689,"18044":2689,"18045":2690,"18046":2689,"18047":2688,"18048":2689,"18049":2689,"18050":2689,"18051":2689,"18052":2689,"18053":2690,"18054":2689,"18055":2688,"18056":2688,"18057":2688,"18058":2688,"18059":2689,"18060":2689,"18061":2689,"18062":2688,"18063":2690,"18064":2688,"18065":2689,"18066":2689,"18067":2688,"18068":2689,"18069":2688,"18070":2689,"18071":2689,"18072":2690,"18073":2689,"18074":2689,"18075":2690,"18076":2690,"18077":2688,"18078":2689,"18079":2688,"18080":2689,"18081":2690,"18082":2688,"18083":2689,"18084":2690,"18085":2688,"18086":2689,"18087":2689,"18088":2689,"18089":2689,"18090":2689,"18091":2688,"18092":2689,"18093":2689,"18094":2689,"18095":2688,"18096":2689,"18097":2688,"18098":2688,"18099":2689,"18100":2689,"18101":2689,"18102":2689,"18103":2688,"18104":2689,"18105":2689,"18106":2689,"18107":2689,"18108":2689,"18109":2689,"18110":2690,"18111":2689,"18112":2688,"18113":2688,"18114":2690,"18115":2690,"18116":2688,"18117":2688,"18118":2689,"18119":2688,"18120":2690,"18121":2690,"18122":2688,"18123":2689,"18124":2690,"18125":2689,"18126":2689,"18127":2689,"18128":2689,"18129":2690,"18130":2690,"18131":2690,"18132":2689,"18133":2689,"18134":2689,"18135":2688,"18136":2689,"18137":2689,"18138":2690,"18139":2690,"18140":2689,"18141":2689,"18142":2688,"18143":2688,"18144":2689,"18145":2689,"18146":2689,"18147":2690,"18148":2688,"18149":2690,"18150":2688,"18151":2689,"18152":2688,"18153":2690,"18154":2689,"18155":2688,"18156":2690,"18157":2688,"18158":2689,"18159":2689,"18160":2689,"18161":2689,"18162":2689,"18163":2689,"18164":2689,"18165":2688,"18166":2690,"18167":2689,"18168":2688,"18169":2688,"18170":2689,"18171":2688,"18172":2689,"18173":2688,"18174":2688,"18175":2689,"18176":2689,"18177":2690,"18178":2688,"18179":2689,"18180":2690,"18181":2689,"18182":2689,"18183":2689,"18184":2690,"18185":2690,"18186":2689,"18187":2689,"18188":2689,"18189":2689,"18190":2688,"18191":2688,"18192":2689,"18193":2689,"18194":2688,"18195":2689,"18196":2689,"18197":2690,"18198":2688,"18199":2688,"18200":2690,"18201":2689,"18202":2688,"18203":2688,"18204":2689,"18205":2689,"18206":2690,"18207":2688,"18208":2689,"18209":2689,"18210":2690,"18211":2689,"18212":2690,"18213":2688,"18214":2689,"18215":2690,"18216":2690,"18217":2689,"18218":2689,"18219":2689,"18220":2689,"18221":2689,"18222":2689,"18223":2688,"18224":2689,"18225":2690,"18226":2689,"18227":2688,"18228":2689,"18229":2690,"18230":2688,"18231":2690,"18232":2689,"18233":2690,"18234":2690,"18235":2689,"18236":2689,"18237":2688,"18238":2688,"18239":2689,"18240":2689,"18241":2690,"18242":2689,"18243":2689,"18244":2689,"18245":2688,"18246":2688,"18247":2689,"18248":2690,"18249":2689,"18250":2689,"18251":2688,"18252":2689,"18253":2689,"18254":2688,"18255":2688,"18256":2690,"18257":2689,"18258":2690,"18259":2690,"18260":2688,"18261":2688,"18262":2690,"18263":2689,"18264":2688,"18265":2689,"18266":2689,"18267":2689,"18268":2689,"18269":2688,"18270":2690,"18271":2690,"18272":2688,"18273":2689,"18274":2689,"18275":2689,"18276":2688,"18277":2689,"18278":2690,"18279":2688,"18280":2689,"18281":2689,"18282":2690,"18283":2688,"18284":2689,"18285":2688,"18286":2688,"18287":2688,"18288":2690,"18289":2690,"18290":2690,"18291":2689,"18292":2688,"18293":2690,"18294":2690,"18295":2690,"18296":2689,"18297":2689,"18298":2689,"18299":2689,"18300":2688,"18301":2689,"18302":2689,"18303":2688,"18304":2690,"18305":2689,"18306":2689,"18307":2689,"18308":2689,"18309":2690,"18310":2689,"18311":2688,"18312":2688,"18313":2690,"18314":2690,"18315":2688,"18316":2688,"18317":2689,"18318":2689,"18319":2689,"18320":2689,"18321":2688,"18322":2688,"18323":2689,"18324":2689,"18325":2689,"18326":2688,"18327":2689,"18328":2688,"18329":2689,"18330":2690,"18331":2689,"18332":2689,"18333":2690,"18334":2689,"18335":2689,"18336":2689,"18337":2689,"18338":2689,"18339":2689,"18340":2689,"18341":2688,"18342":2690,"18343":2688,"18344":2689,"18345":2690,"18346":2689,"18347":2688,"18348":2689,"18349":2688,"18350":2689,"18351":2688,"18352":2689,"18353":2689,"18354":2690,"18355":2689,"18356":2690,"18357":2688,"18358":2689,"18359":2689}} \ No newline at end of file diff --git a/household_tv50_3.json b/household_tv50_3.json new file mode 100644 index 0000000000000000000000000000000000000000..4aed84aa53742534f6e124c13dc16f4cf566651d --- /dev/null +++ b/household_tv50_3.json @@ -0,0 +1 @@ +{"hhid":{"0":1,"1":2,"2":3,"3":4,"4":5,"5":6,"6":7,"7":8,"8":9,"9":10,"10":11,"11":12,"12":13,"13":14,"14":15,"15":16,"16":17,"17":18,"18":19,"19":20,"20":21,"21":22,"22":23,"23":24,"24":25,"25":26,"26":27,"27":28,"28":29,"29":30,"30":31,"31":32,"32":33,"33":34,"34":35,"35":36,"36":37,"37":38,"38":39,"39":40,"40":41,"41":42,"42":43,"43":44,"44":45,"45":46,"46":47,"47":48,"48":49,"49":50,"50":51,"51":52,"52":53,"53":54,"54":55,"55":56,"56":57,"57":58,"58":59,"59":60,"60":61,"61":62,"62":63,"63":64,"64":65,"65":66,"66":67,"67":68,"68":69,"69":70,"70":71,"71":72,"72":73,"73":74,"74":75,"75":76,"76":77,"77":78,"78":79,"79":80,"80":81,"81":82,"82":83,"83":84,"84":85,"85":86,"86":87,"87":88,"88":89,"89":90,"90":91,"91":92,"92":93,"93":94,"94":95,"95":96,"96":97,"97":98,"98":99,"99":100,"100":101,"101":102,"102":103,"103":104,"104":105,"105":106,"106":107,"107":108,"108":109,"109":110,"110":111,"111":112,"112":113,"113":114,"114":115,"115":116,"116":117,"117":118,"118":119,"119":120,"120":121,"121":122,"122":123,"123":124,"124":125,"125":126,"126":127,"127":128,"128":129,"129":130,"130":131,"131":132,"132":133,"133":134,"134":135,"135":136,"136":137,"137":138,"138":139,"139":140,"140":141,"141":142,"142":143,"143":144,"144":145,"145":146,"146":147,"147":148,"148":149,"149":150,"150":151,"151":152,"152":153,"153":154,"154":155,"155":156,"156":157,"157":158,"158":159,"159":160,"160":161,"161":162,"162":163,"163":164,"164":165,"165":166,"166":167,"167":168,"168":169,"169":170,"170":171,"171":172,"172":173,"173":174,"174":175,"175":176,"176":177,"177":178,"178":179,"179":180,"180":181,"181":182,"182":183,"183":184,"184":185,"185":186,"186":187,"187":188,"188":189,"189":190,"190":191,"191":192,"192":193,"193":194,"194":195,"195":196,"196":197,"197":198,"198":199,"199":200,"200":201,"201":202,"202":203,"203":204,"204":205,"205":206,"206":207,"207":208,"208":209,"209":210,"210":211,"211":212,"212":213,"213":214,"214":215,"215":216,"216":217,"217":218,"218":219,"219":220,"220":221,"221":222,"222":223,"223":224,"224":225,"225":226,"226":227,"227":228,"228":229,"229":230,"230":231,"231":232,"232":233,"233":234,"234":235,"235":236,"236":237,"237":238,"238":239,"239":240,"240":241,"241":242,"242":243,"243":244,"244":245,"245":246,"246":247,"247":248,"248":249,"249":250,"250":251,"251":252,"252":253,"253":254,"254":255,"255":256,"256":257,"257":258,"258":259,"259":260,"260":261,"261":262,"262":263,"263":264,"264":265,"265":266,"266":267,"267":268,"268":269,"269":270,"270":271,"271":272,"272":273,"273":274,"274":275,"275":276,"276":277,"277":278,"278":279,"279":280,"280":281,"281":282,"282":283,"283":284,"284":285,"285":286,"286":287,"287":288,"288":289,"289":290,"290":291,"291":292,"292":293,"293":294,"294":295,"295":296,"296":297,"297":298,"298":299,"299":300,"300":301,"301":302,"302":303,"303":304,"304":305,"305":306,"306":307,"307":308,"308":309,"309":310,"310":311,"311":312,"312":313,"313":314,"314":315,"315":316,"316":317,"317":318,"318":319,"319":320,"320":321,"321":322,"322":323,"323":324,"324":325,"325":326,"326":327,"327":328,"328":329,"329":330,"330":331,"331":332,"332":333,"333":334,"334":335,"335":336,"336":337,"337":338,"338":339,"339":340,"340":341,"341":342,"342":343,"343":344,"344":345,"345":346,"346":347,"347":348,"348":349,"349":350,"350":351,"351":352,"352":353,"353":354,"354":355,"355":356,"356":357,"357":358,"358":359,"359":360,"360":361,"361":362,"362":363,"363":364,"364":365,"365":366,"366":367,"367":368,"368":369,"369":370,"370":371,"371":372,"372":373,"373":374,"374":375,"375":376,"376":377,"377":378,"378":379,"379":380,"380":381,"381":382,"382":383,"383":384,"384":385,"385":386,"386":387,"387":388,"388":389,"389":390,"390":391,"391":392,"392":393,"393":394,"394":395,"395":396,"396":397,"397":398,"398":399,"399":400,"400":401,"401":402,"402":403,"403":404,"404":405,"405":406,"406":407,"407":408,"408":409,"409":410,"410":411,"411":412,"412":413,"413":414,"414":415,"415":416,"416":417,"417":418,"418":419,"419":420,"420":421,"421":422,"422":423,"423":424,"424":425,"425":426,"426":427,"427":428,"428":429,"429":430,"430":431,"431":432,"432":433,"433":434,"434":435,"435":436,"436":437,"437":438,"438":439,"439":440,"440":441,"441":442,"442":443,"443":444,"444":445,"445":446,"446":447,"447":448,"448":449,"449":450,"450":451,"451":452,"452":453,"453":454,"454":455,"455":456,"456":457,"457":458,"458":459,"459":460,"460":461,"461":462,"462":463,"463":464,"464":465,"465":466,"466":467,"467":468,"468":469,"469":470,"470":471,"471":472,"472":473,"473":474,"474":475,"475":476,"476":477,"477":478,"478":479,"479":480,"480":481,"481":482,"482":483,"483":484,"484":485,"485":486,"486":487,"487":488,"488":489,"489":490,"490":491,"491":492,"492":493,"493":494,"494":495,"495":496,"496":497,"497":498,"498":499,"499":500,"500":501,"501":502,"502":503,"503":504,"504":505,"505":506,"506":507,"507":508,"508":509,"509":510,"510":511,"511":512,"512":513,"513":514,"514":515,"515":516,"516":517,"517":518,"518":519,"519":520,"520":521,"521":522,"522":523,"523":524,"524":525,"525":526,"526":527,"527":528,"528":529,"529":530,"530":531,"531":532,"532":533,"533":534,"534":535,"535":536,"536":537,"537":538,"538":539,"539":540,"540":541,"541":542,"542":543,"543":544,"544":545,"545":546,"546":547,"547":548,"548":549,"549":550,"550":551,"551":552,"552":553,"553":554,"554":555,"555":556,"556":557,"557":558,"558":559,"559":560,"560":561,"561":562,"562":563,"563":564,"564":565,"565":566,"566":567,"567":568,"568":569,"569":570,"570":571,"571":572,"572":573,"573":574,"574":575,"575":576,"576":577,"577":578,"578":579,"579":580,"580":581,"581":582,"582":583,"583":584,"584":585,"585":586,"586":587,"587":588,"588":589,"589":590,"590":591,"591":592,"592":593,"593":594,"594":595,"595":596,"596":597,"597":598,"598":599,"599":600,"600":601,"601":602,"602":603,"603":604,"604":605,"605":606,"606":607,"607":608,"608":609,"609":610,"610":611,"611":612,"612":613,"613":614,"614":615,"615":616,"616":617,"617":618,"618":619,"619":620,"620":621,"621":622,"622":623,"623":624,"624":625,"625":626,"626":627,"627":628,"628":629,"629":630,"630":631,"631":632,"632":633,"633":634,"634":635,"635":636,"636":637,"637":638,"638":639,"639":640,"640":641,"641":642,"642":643,"643":644,"644":645,"645":646,"646":647,"647":648,"648":649,"649":650,"650":651,"651":652,"652":653,"653":654,"654":655,"655":656,"656":657,"657":658,"658":659,"659":660,"660":661,"661":662,"662":663,"663":664,"664":665,"665":666,"666":667,"667":668,"668":669,"669":670,"670":671,"671":672,"672":673,"673":674,"674":675,"675":676,"676":677,"677":678,"678":679,"679":680,"680":681,"681":682,"682":683,"683":684,"684":685,"685":686,"686":687,"687":688,"688":689,"689":690,"690":691,"691":692,"692":693,"693":694,"694":695,"695":696,"696":697,"697":698,"698":699,"699":700,"700":701,"701":702,"702":703,"703":704,"704":705,"705":706,"706":707,"707":708,"708":709,"709":710,"710":711,"711":712,"712":713,"713":714,"714":715,"715":716,"716":717,"717":718,"718":719,"719":720,"720":721,"721":722,"722":723,"723":724,"724":725,"725":726,"726":727,"727":728,"728":729,"729":730,"730":731,"731":732,"732":733,"733":734,"734":735,"735":736,"736":737,"737":738,"738":739,"739":740,"740":741,"741":742,"742":743,"743":744,"744":745,"745":746,"746":747,"747":748,"748":749,"749":750,"750":751,"751":752,"752":753,"753":754,"754":755,"755":756,"756":757,"757":758,"758":759,"759":760,"760":761,"761":762,"762":763,"763":764,"764":765,"765":766,"766":767,"767":768,"768":769,"769":770,"770":771,"771":772,"772":773,"773":774,"774":775,"775":776,"776":777,"777":778,"778":779,"779":780,"780":781,"781":782,"782":783,"783":784,"784":785,"785":786,"786":787,"787":788,"788":789,"789":790,"790":791,"791":792,"792":793,"793":794,"794":795,"795":796,"796":797,"797":798,"798":799,"799":800,"800":801,"801":802,"802":803,"803":804,"804":805,"805":806,"806":807,"807":808,"808":809,"809":810,"810":811,"811":812,"812":813,"813":814,"814":815,"815":816,"816":817,"817":818,"818":819,"819":820,"820":821,"821":822,"822":823,"823":824,"824":825,"825":826,"826":827,"827":828,"828":829,"829":830,"830":831,"831":832,"832":833,"833":834,"834":835,"835":836,"836":837,"837":838,"838":839,"839":840,"840":841,"841":842,"842":843,"843":844,"844":845,"845":846,"846":847,"847":848,"848":849,"849":850,"850":851,"851":852,"852":853,"853":854,"854":855,"855":856,"856":857,"857":858,"858":859,"859":860,"860":861,"861":862,"862":863,"863":864,"864":865,"865":866,"866":867,"867":868,"868":869,"869":870,"870":871,"871":872,"872":873,"873":874,"874":875,"875":876,"876":877,"877":878,"878":879,"879":880,"880":881,"881":882,"882":883,"883":884,"884":885,"885":886,"886":887,"887":888,"888":889,"889":890,"890":891,"891":892,"892":893,"893":894,"894":895,"895":896,"896":897,"897":898,"898":899,"899":900,"900":901,"901":902,"902":903,"903":904,"904":905,"905":906,"906":907,"907":908,"908":909,"909":910,"910":911,"911":912,"912":913,"913":914,"914":915,"915":916,"916":917,"917":918,"918":919,"919":920,"920":921,"921":922,"922":923,"923":924,"924":925,"925":926,"926":927,"927":928,"928":929,"929":930,"930":931,"931":932,"932":933,"933":934,"934":935,"935":936,"936":937,"937":938,"938":939,"939":940,"940":941,"941":942,"942":943,"943":944,"944":945,"945":946,"946":947,"947":948,"948":949,"949":950,"950":951,"951":952,"952":953,"953":954,"954":955,"955":956,"956":957,"957":958,"958":959,"959":960,"960":961,"961":962,"962":963,"963":964,"964":965,"965":966,"966":967,"967":968,"968":969,"969":970,"970":971,"971":972,"972":973,"973":974,"974":975,"975":976,"976":977,"977":978,"978":979,"979":980,"980":981,"981":982,"982":983,"983":984,"984":985,"985":986,"986":987,"987":988,"988":989,"989":990,"990":991,"991":992,"992":993,"993":994,"994":995,"995":996,"996":997,"997":998,"998":999,"999":1000,"1000":1001,"1001":1002,"1002":1003,"1003":1004,"1004":1005,"1005":1006,"1006":1007,"1007":1008,"1008":1009,"1009":1010,"1010":1011,"1011":1012,"1012":1013,"1013":1014,"1014":1015,"1015":1016,"1016":1017,"1017":1018,"1018":1019,"1019":1020,"1020":1021,"1021":1022,"1022":1023,"1023":1024,"1024":1025,"1025":1026,"1026":1027,"1027":1028,"1028":1029,"1029":1030,"1030":1031,"1031":1032,"1032":1033,"1033":1034,"1034":1035,"1035":1036,"1036":1037,"1037":1038,"1038":1039,"1039":1040,"1040":1041,"1041":1042,"1042":1043,"1043":1044,"1044":1045,"1045":1046,"1046":1047,"1047":1048,"1048":1049,"1049":1050,"1050":1051,"1051":1052,"1052":1053,"1053":1054,"1054":1055,"1055":1056,"1056":1057,"1057":1058,"1058":1059,"1059":1060,"1060":1061,"1061":1062,"1062":1063,"1063":1064,"1064":1065,"1065":1066,"1066":1067,"1067":1068,"1068":1069,"1069":1070,"1070":1071,"1071":1072,"1072":1073,"1073":1074,"1074":1075,"1075":1076,"1076":1077,"1077":1078,"1078":1079,"1079":1080,"1080":1081,"1081":1082,"1082":1083,"1083":1084,"1084":1085,"1085":1086,"1086":1087,"1087":1088,"1088":1089,"1089":1090,"1090":1091,"1091":1092,"1092":1093,"1093":1094,"1094":1095,"1095":1096,"1096":1097,"1097":1098,"1098":1099,"1099":1100,"1100":1101,"1101":1102,"1102":1103,"1103":1104,"1104":1105,"1105":1106,"1106":1107,"1107":1108,"1108":1109,"1109":1110,"1110":1111,"1111":1112,"1112":1113,"1113":1114,"1114":1115,"1115":1116,"1116":1117,"1117":1118,"1118":1119,"1119":1120,"1120":1121,"1121":1122,"1122":1123,"1123":1124,"1124":1125,"1125":1126,"1126":1127,"1127":1128,"1128":1129,"1129":1130,"1130":1131,"1131":1132,"1132":1133,"1133":1134,"1134":1135,"1135":1136,"1136":1137,"1137":1138,"1138":1139,"1139":1140,"1140":1141,"1141":1142,"1142":1143,"1143":1144,"1144":1145,"1145":1146,"1146":1147,"1147":1148,"1148":1149,"1149":1150,"1150":1151,"1151":1152,"1152":1153,"1153":1154,"1154":1155,"1155":1156,"1156":1157,"1157":1158,"1158":1159,"1159":1160,"1160":1161,"1161":1162,"1162":1163,"1163":1164,"1164":1165,"1165":1166,"1166":1167,"1167":1168,"1168":1169,"1169":1170,"1170":1171,"1171":1172,"1172":1173,"1173":1174,"1174":1175,"1175":1176,"1176":1177,"1177":1178,"1178":1179,"1179":1180,"1180":1181,"1181":1182,"1182":1183,"1183":1184,"1184":1185,"1185":1186,"1186":1187,"1187":1188,"1188":1189,"1189":1190,"1190":1191,"1191":1192,"1192":1193,"1193":1194,"1194":1195,"1195":1196,"1196":1197,"1197":1198,"1198":1199,"1199":1200,"1200":1201,"1201":1202,"1202":1203,"1203":1204,"1204":1205,"1205":1206,"1206":1207,"1207":1208,"1208":1209,"1209":1210,"1210":1211,"1211":1212,"1212":1213,"1213":1214,"1214":1215,"1215":1216,"1216":1217,"1217":1218,"1218":1219,"1219":1220,"1220":1221,"1221":1222,"1222":1223,"1223":1224,"1224":1225,"1225":1226,"1226":1227,"1227":1228,"1228":1229,"1229":1230,"1230":1231,"1231":1232,"1232":1233,"1233":1234,"1234":1235,"1235":1236,"1236":1237,"1237":1238,"1238":1239,"1239":1240,"1240":1241,"1241":1242,"1242":1243,"1243":1244,"1244":1245,"1245":1246,"1246":1247,"1247":1248,"1248":1249,"1249":1250,"1250":1251,"1251":1252,"1252":1253,"1253":1254,"1254":1255,"1255":1256,"1256":1257,"1257":1258,"1258":1259,"1259":1260,"1260":1261,"1261":1262,"1262":1263,"1263":1264,"1264":1265,"1265":1266,"1266":1267,"1267":1268,"1268":1269,"1269":1270,"1270":1271,"1271":1272,"1272":1273,"1273":1274,"1274":1275,"1275":1276,"1276":1277,"1277":1278,"1278":1279,"1279":1280,"1280":1281,"1281":1282,"1282":1283,"1283":1284,"1284":1285,"1285":1286,"1286":1287,"1287":1288,"1288":1289,"1289":1290,"1290":1291,"1291":1292,"1292":1293,"1293":1294,"1294":1295,"1295":1296,"1296":1297,"1297":1298,"1298":1299,"1299":1300,"1300":1301,"1301":1302,"1302":1303,"1303":1304,"1304":1305,"1305":1306,"1306":1307,"1307":1308,"1308":1309,"1309":1310,"1310":1311,"1311":1312,"1312":1313,"1313":1314,"1314":1315,"1315":1316,"1316":1317,"1317":1318,"1318":1319,"1319":1320,"1320":1321,"1321":1322,"1322":1323,"1323":1324,"1324":1325,"1325":1326,"1326":1327,"1327":1328,"1328":1329,"1329":1330,"1330":1331,"1331":1332,"1332":1333,"1333":1334,"1334":1335,"1335":1336,"1336":1337,"1337":1338,"1338":1339,"1339":1340,"1340":1341,"1341":1342,"1342":1343,"1343":1344,"1344":1345,"1345":1346,"1346":1347,"1347":1348,"1348":1349,"1349":1350,"1350":1351,"1351":1352,"1352":1353,"1353":1354,"1354":1355,"1355":1356,"1356":1357,"1357":1358,"1358":1359,"1359":1360,"1360":1361,"1361":1362,"1362":1363,"1363":1364,"1364":1365,"1365":1366,"1366":1367,"1367":1368,"1368":1369,"1369":1370,"1370":1371,"1371":1372,"1372":1373,"1373":1374,"1374":1375,"1375":1376,"1376":1377,"1377":1378,"1378":1379,"1379":1380,"1380":1381,"1381":1382,"1382":1383,"1383":1384,"1384":1385,"1385":1386,"1386":1387,"1387":1388,"1388":1389,"1389":1390,"1390":1391,"1391":1392,"1392":1393,"1393":1394,"1394":1395,"1395":1396,"1396":1397,"1397":1398,"1398":1399,"1399":1400,"1400":1401,"1401":1402,"1402":1403,"1403":1404,"1404":1405,"1405":1406,"1406":1407,"1407":1408,"1408":1409,"1409":1410,"1410":1411,"1411":1412,"1412":1413,"1413":1414,"1414":1415,"1415":1416,"1416":1417,"1417":1418,"1418":1419,"1419":1420,"1420":1421,"1421":1422,"1422":1423,"1423":1424,"1424":1425,"1425":1426,"1426":1427,"1427":1428,"1428":1429,"1429":1430,"1430":1431,"1431":1432,"1432":1433,"1433":1434,"1434":1435,"1435":1436,"1436":1437,"1437":1438,"1438":1439,"1439":1440,"1440":1441,"1441":1442,"1442":1443,"1443":1444,"1444":1445,"1445":1446,"1446":1447,"1447":1448,"1448":1449,"1449":1450,"1450":1451,"1451":1452,"1452":1453,"1453":1454,"1454":1455,"1455":1456,"1456":1457,"1457":1458,"1458":1459,"1459":1460,"1460":1461,"1461":1462,"1462":1463,"1463":1464,"1464":1465,"1465":1466,"1466":1467,"1467":1468,"1468":1469,"1469":1470,"1470":1471,"1471":1472,"1472":1473,"1473":1474,"1474":1475,"1475":1476,"1476":1477,"1477":1478,"1478":1479,"1479":1480,"1480":1481,"1481":1482,"1482":1483,"1483":1484,"1484":1485,"1485":1486,"1486":1487,"1487":1488,"1488":1489,"1489":1490,"1490":1491,"1491":1492,"1492":1493,"1493":1494,"1494":1495,"1495":1496,"1496":1497,"1497":1498,"1498":1499,"1499":1500,"1500":1501,"1501":1502,"1502":1503,"1503":1504,"1504":1505,"1505":1506,"1506":1507,"1507":1508,"1508":1509,"1509":1510,"1510":1511,"1511":1512,"1512":1513,"1513":1514,"1514":1515,"1515":1516,"1516":1517,"1517":1518,"1518":1519,"1519":1520,"1520":1521,"1521":1522,"1522":1523,"1523":1524,"1524":1525,"1525":1526,"1526":1527,"1527":1528,"1528":1529,"1529":1530,"1530":1531,"1531":1532,"1532":1533,"1533":1534,"1534":1535,"1535":1536,"1536":1537,"1537":1538,"1538":1539,"1539":1540,"1540":1541,"1541":1542,"1542":1543,"1543":1544,"1544":1545,"1545":1546,"1546":1547,"1547":1548,"1548":1549,"1549":1550,"1550":1551,"1551":1552,"1552":1553,"1553":1554,"1554":1555,"1555":1556,"1556":1557,"1557":1558,"1558":1559,"1559":1560,"1560":1561,"1561":1562,"1562":1563,"1563":1564,"1564":1565,"1565":1566,"1566":1567,"1567":1568,"1568":1569,"1569":1570,"1570":1571,"1571":1572,"1572":1573,"1573":1574,"1574":1575,"1575":1576,"1576":1577,"1577":1578,"1578":1579,"1579":1580,"1580":1581,"1581":1582,"1582":1583,"1583":1584,"1584":1585,"1585":1586,"1586":1587,"1587":1588,"1588":1589,"1589":1590,"1590":1591,"1591":1592,"1592":1593,"1593":1594,"1594":1595,"1595":1596,"1596":1597,"1597":1598,"1598":1599,"1599":1600,"1600":1601,"1601":1602,"1602":1603,"1603":1604,"1604":1605,"1605":1606,"1606":1607,"1607":1608,"1608":1609,"1609":1610,"1610":1611,"1611":1612,"1612":1613,"1613":1614,"1614":1615,"1615":1616,"1616":1617,"1617":1618,"1618":1619,"1619":1620,"1620":1621,"1621":1622,"1622":1623,"1623":1624,"1624":1625,"1625":1626,"1626":1627,"1627":1628,"1628":1629,"1629":1630,"1630":1631,"1631":1632,"1632":1633,"1633":1634,"1634":1635,"1635":1636,"1636":1637,"1637":1638,"1638":1639,"1639":1640,"1640":1641,"1641":1642,"1642":1643,"1643":1644,"1644":1645,"1645":1646,"1646":1647,"1647":1648,"1648":1649,"1649":1650,"1650":1651,"1651":1652,"1652":1653,"1653":1654,"1654":1655,"1655":1656,"1656":1657,"1657":1658,"1658":1659,"1659":1660,"1660":1661,"1661":1662,"1662":1663,"1663":1664,"1664":1665,"1665":1666,"1666":1667,"1667":1668,"1668":1669,"1669":1670,"1670":1671,"1671":1672,"1672":1673,"1673":1674,"1674":1675,"1675":1676,"1676":1677,"1677":1678,"1678":1679,"1679":1680,"1680":1681,"1681":1682,"1682":1683,"1683":1684,"1684":1685,"1685":1686,"1686":1687,"1687":1688,"1688":1689,"1689":1690,"1690":1691,"1691":1692,"1692":1693,"1693":1694,"1694":1695,"1695":1696,"1696":1697,"1697":1698,"1698":1699,"1699":1700,"1700":1701,"1701":1702,"1702":1703,"1703":1704,"1704":1705,"1705":1706,"1706":1707,"1707":1708,"1708":1709,"1709":1710,"1710":1711,"1711":1712,"1712":1713,"1713":1714,"1714":1715,"1715":1716,"1716":1717,"1717":1718,"1718":1719,"1719":1720,"1720":1721,"1721":1722,"1722":1723,"1723":1724,"1724":1725,"1725":1726,"1726":1727,"1727":1728,"1728":1729,"1729":1730,"1730":1731,"1731":1732,"1732":1733,"1733":1734,"1734":1735,"1735":1736,"1736":1737,"1737":1738,"1738":1739,"1739":1740,"1740":1741,"1741":1742,"1742":1743,"1743":1744,"1744":1745,"1745":1746,"1746":1747,"1747":1748,"1748":1749,"1749":1750,"1750":1751,"1751":1752,"1752":1753,"1753":1754,"1754":1755,"1755":1756,"1756":1757,"1757":1758,"1758":1759,"1759":1760,"1760":1761,"1761":1762,"1762":1763,"1763":1764,"1764":1765,"1765":1766,"1766":1767,"1767":1768,"1768":1769,"1769":1770,"1770":1771,"1771":1772,"1772":1773,"1773":1774,"1774":1775,"1775":1776,"1776":1777,"1777":1778,"1778":1779,"1779":1780,"1780":1781,"1781":1782,"1782":1783,"1783":1784,"1784":1785,"1785":1786,"1786":1787,"1787":1788,"1788":1789,"1789":1790,"1790":1791,"1791":1792,"1792":1793,"1793":1794,"1794":1795,"1795":1796,"1796":1797,"1797":1798,"1798":1799,"1799":1800,"1800":1801,"1801":1802,"1802":1803,"1803":1804,"1804":1805,"1805":1806,"1806":1807,"1807":1808,"1808":1809,"1809":1810,"1810":1811,"1811":1812,"1812":1813,"1813":1814,"1814":1815,"1815":1816,"1816":1817,"1817":1818,"1818":1819,"1819":1820,"1820":1821,"1821":1822,"1822":1823,"1823":1824,"1824":1825,"1825":1826,"1826":1827,"1827":1828,"1828":1829,"1829":1830,"1830":1831,"1831":1832,"1832":1833,"1833":1834,"1834":1835,"1835":1836,"1836":1837,"1837":1838,"1838":1839,"1839":1840,"1840":1841,"1841":1842,"1842":1843,"1843":1844,"1844":1845,"1845":1846,"1846":1847,"1847":1848,"1848":1849,"1849":1850,"1850":1851,"1851":1852,"1852":1853,"1853":1854,"1854":1855,"1855":1856,"1856":1857,"1857":1858,"1858":1859,"1859":1860,"1860":1861,"1861":1862,"1862":1863,"1863":1864,"1864":1865,"1865":1866,"1866":1867,"1867":1868,"1868":1869,"1869":1870,"1870":1871,"1871":1872,"1872":1873,"1873":1874,"1874":1875,"1875":1876,"1876":1877,"1877":1878,"1878":1879,"1879":1880,"1880":1881,"1881":1882,"1882":1883,"1883":1884,"1884":1885,"1885":1886,"1886":1887,"1887":1888,"1888":1889,"1889":1890,"1890":1891,"1891":1892,"1892":1893,"1893":1894,"1894":1895,"1895":1896,"1896":1897,"1897":1898,"1898":1899,"1899":1900,"1900":1901,"1901":1902,"1902":1903,"1903":1904,"1904":1905,"1905":1906,"1906":1907,"1907":1908,"1908":1909,"1909":1910,"1910":1911,"1911":1912,"1912":1913,"1913":1914,"1914":1915,"1915":1916,"1916":1917,"1917":1918,"1918":1919,"1919":1920,"1920":1921,"1921":1922,"1922":1923,"1923":1924,"1924":1925,"1925":1926,"1926":1927,"1927":1928,"1928":1929,"1929":1930,"1930":1931,"1931":1932,"1932":1933,"1933":1934,"1934":1935,"1935":1936,"1936":1937,"1937":1938,"1938":1939,"1939":1940,"1940":1941,"1941":1942,"1942":1943,"1943":1944,"1944":1945,"1945":1946,"1946":1947,"1947":1948,"1948":1949,"1949":1950,"1950":1951,"1951":1952,"1952":1953,"1953":1954,"1954":1955,"1955":1956,"1956":1957,"1957":1958,"1958":1959,"1959":1960,"1960":1961,"1961":1962,"1962":1963,"1963":1964,"1964":1965,"1965":1966,"1966":1967,"1967":1968,"1968":1969,"1969":1970,"1970":1971,"1971":1972,"1972":1973,"1973":1974,"1974":1975,"1975":1976,"1976":1977,"1977":1978,"1978":1979,"1979":1980,"1980":1981,"1981":1982,"1982":1983,"1983":1984,"1984":1985,"1985":1986,"1986":1987,"1987":1988,"1988":1989,"1989":1990,"1990":1991,"1991":1992,"1992":1993,"1993":1994,"1994":1995,"1995":1996,"1996":1997,"1997":1998,"1998":1999,"1999":2000,"2000":2001,"2001":2002,"2002":2003,"2003":2004,"2004":2005,"2005":2006,"2006":2007,"2007":2008,"2008":2009,"2009":2010,"2010":2011,"2011":2012,"2012":2013,"2013":2014,"2014":2015,"2015":2016,"2016":2017,"2017":2018,"2018":2019,"2019":2020,"2020":2021,"2021":2022,"2022":2023,"2023":2024,"2024":2025,"2025":2026,"2026":2027,"2027":2028,"2028":2029,"2029":2030,"2030":2031,"2031":2032,"2032":2033,"2033":2034,"2034":2035,"2035":2036,"2036":2037,"2037":2038,"2038":2039,"2039":2040,"2040":2041,"2041":2042,"2042":2043,"2043":2044,"2044":2045,"2045":2046,"2046":2047,"2047":2048,"2048":2049,"2049":2050,"2050":2051,"2051":2052,"2052":2053,"2053":2054,"2054":2055,"2055":2056,"2056":2057,"2057":2058,"2058":2059,"2059":2060,"2060":2061,"2061":2062,"2062":2063,"2063":2064,"2064":2065,"2065":2066,"2066":2067,"2067":2068,"2068":2069,"2069":2070,"2070":2071,"2071":2072,"2072":2073,"2073":2074,"2074":2075,"2075":2076,"2076":2077,"2077":2078,"2078":2079,"2079":2080,"2080":2081,"2081":2082,"2082":2083,"2083":2084,"2084":2085,"2085":2086,"2086":2087,"2087":2088,"2088":2089,"2089":2090,"2090":2091,"2091":2092,"2092":2093,"2093":2094,"2094":2095,"2095":2096,"2096":2097,"2097":2098,"2098":2099,"2099":2100,"2100":2101,"2101":2102,"2102":2103,"2103":2104,"2104":2105,"2105":2106,"2106":2107,"2107":2108,"2108":2109,"2109":2110,"2110":2111,"2111":2112,"2112":2113,"2113":2114,"2114":2115,"2115":2116,"2116":2117,"2117":2118,"2118":2119,"2119":2120,"2120":2121,"2121":2122,"2122":2123,"2123":2124,"2124":2125,"2125":2126,"2126":2127,"2127":2128,"2128":2129,"2129":2130,"2130":2131,"2131":2132,"2132":2133,"2133":2134,"2134":2135,"2135":2136,"2136":2137,"2137":2138,"2138":2139,"2139":2140,"2140":2141,"2141":2142,"2142":2143,"2143":2144,"2144":2145,"2145":2146,"2146":2147,"2147":2148,"2148":2149,"2149":2150,"2150":2151,"2151":2152,"2152":2153,"2153":2154,"2154":2155,"2155":2156,"2156":2157,"2157":2158,"2158":2159,"2159":2160,"2160":2161,"2161":2162,"2162":2163,"2163":2164,"2164":2165,"2165":2166,"2166":2167,"2167":2168,"2168":2169,"2169":2170,"2170":2171,"2171":2172,"2172":2173,"2173":2174,"2174":2175,"2175":2176,"2176":2177,"2177":2178,"2178":2179,"2179":2180,"2180":2181,"2181":2182,"2182":2183,"2183":2184,"2184":2185,"2185":2186,"2186":2187,"2187":2188,"2188":2189,"2189":2190,"2190":2191,"2191":2192,"2192":2193,"2193":2194,"2194":2195,"2195":2196,"2196":2197,"2197":2198,"2198":2199,"2199":2200,"2200":2201,"2201":2202,"2202":2203,"2203":2204,"2204":2205,"2205":2206,"2206":2207,"2207":2208,"2208":2209,"2209":2210,"2210":2211,"2211":2212,"2212":2213,"2213":2214,"2214":2215,"2215":2216,"2216":2217,"2217":2218,"2218":2219,"2219":2220,"2220":2221,"2221":2222,"2222":2223,"2223":2224,"2224":2225,"2225":2226,"2226":2227,"2227":2228,"2228":2229,"2229":2230,"2230":2231,"2231":2232,"2232":2233,"2233":2234,"2234":2235,"2235":2236,"2236":2237,"2237":2238,"2238":2239,"2239":2240,"2240":2241,"2241":2242,"2242":2243,"2243":2244,"2244":2245,"2245":2246,"2246":2247,"2247":2248,"2248":2249,"2249":2250,"2250":2251,"2251":2252,"2252":2253,"2253":2254,"2254":2255,"2255":2256,"2256":2257,"2257":2258,"2258":2259,"2259":2260,"2260":2261,"2261":2262,"2262":2263,"2263":2264,"2264":2265,"2265":2266,"2266":2267,"2267":2268,"2268":2269,"2269":2270,"2270":2271,"2271":2272,"2272":2273,"2273":2274,"2274":2275,"2275":2276,"2276":2277,"2277":2278,"2278":2279,"2279":2280,"2280":2281,"2281":2282,"2282":2283,"2283":2284,"2284":2285,"2285":2286,"2286":2287,"2287":2288,"2288":2289,"2289":2290,"2290":2291,"2291":2292,"2292":2293,"2293":2294,"2294":2295,"2295":2296,"2296":2297,"2297":2298,"2298":2299,"2299":2300,"2300":2301,"2301":2302,"2302":2303,"2303":2304,"2304":2305,"2305":2306,"2306":2307,"2307":2308,"2308":2309,"2309":2310,"2310":2311,"2311":2312,"2312":2313,"2313":2314,"2314":2315,"2315":2316,"2316":2317,"2317":2318,"2318":2319,"2319":2320,"2320":2321,"2321":2322,"2322":2323,"2323":2324,"2324":2325,"2325":2326,"2326":2327,"2327":2328,"2328":2329,"2329":2330,"2330":2331,"2331":2332,"2332":2333,"2333":2334,"2334":2335,"2335":2336,"2336":2337,"2337":2338,"2338":2339,"2339":2340,"2340":2341,"2341":2342,"2342":2343,"2343":2344,"2344":2345,"2345":2346,"2346":2347,"2347":2348,"2348":2349,"2349":2350,"2350":2351,"2351":2352,"2352":2353,"2353":2354,"2354":2355,"2355":2356,"2356":2357,"2357":2358,"2358":2359,"2359":2360,"2360":2361,"2361":2362,"2362":2363,"2363":2364,"2364":2365,"2365":2366,"2366":2367,"2367":2368,"2368":2369,"2369":2370,"2370":2371,"2371":2372,"2372":2373,"2373":2374,"2374":2375,"2375":2376,"2376":2377,"2377":2378,"2378":2379,"2379":2380,"2380":2381,"2381":2382,"2382":2383,"2383":2384,"2384":2385,"2385":2386,"2386":2387,"2387":2388,"2388":2389,"2389":2390,"2390":2391,"2391":2392,"2392":2393,"2393":2394,"2394":2395,"2395":2396,"2396":2397,"2397":2398,"2398":2399,"2399":2400,"2400":2401,"2401":2402,"2402":2403,"2403":2404,"2404":2405,"2405":2406,"2406":2407,"2407":2408,"2408":2409,"2409":2410,"2410":2411,"2411":2412,"2412":2413,"2413":2414,"2414":2415,"2415":2416,"2416":2417,"2417":2418,"2418":2419,"2419":2420,"2420":2421,"2421":2422,"2422":2423,"2423":2424,"2424":2425,"2425":2426,"2426":2427,"2427":2428,"2428":2429,"2429":2430,"2430":2431,"2431":2432,"2432":2433,"2433":2434,"2434":2435,"2435":2436,"2436":2437,"2437":2438,"2438":2439,"2439":2440,"2440":2441,"2441":2442,"2442":2443,"2443":2444,"2444":2445,"2445":2446,"2446":2447,"2447":2448,"2448":2449,"2449":2450,"2450":2451,"2451":2452,"2452":2453,"2453":2454,"2454":2455,"2455":2456,"2456":2457,"2457":2458,"2458":2459,"2459":2460,"2460":2461,"2461":2462,"2462":2463,"2463":2464,"2464":2465,"2465":2466,"2466":2467,"2467":2468,"2468":2469,"2469":2470,"2470":2471,"2471":2472,"2472":2473,"2473":2474,"2474":2475,"2475":2476,"2476":2477,"2477":2478,"2478":2479,"2479":2480,"2480":2481,"2481":2482,"2482":2483,"2483":2484,"2484":2485,"2485":2486,"2486":2487,"2487":2488,"2488":2489,"2489":2490,"2490":2491,"2491":2492,"2492":2493,"2493":2494,"2494":2495,"2495":2496,"2496":2497,"2497":2498,"2498":2499,"2499":2500,"2500":2501,"2501":2502,"2502":2503,"2503":2504,"2504":2505,"2505":2506,"2506":2507,"2507":2508,"2508":2509,"2509":2510,"2510":2511,"2511":2512,"2512":2513,"2513":2514,"2514":2515,"2515":2516,"2516":2517,"2517":2518,"2518":2519,"2519":2520,"2520":2521,"2521":2522,"2522":2523,"2523":2524,"2524":2525,"2525":2526,"2526":2527,"2527":2528,"2528":2529,"2529":2530,"2530":2531,"2531":2532,"2532":2533,"2533":2534,"2534":2535,"2535":2536,"2536":2537,"2537":2538,"2538":2539,"2539":2540,"2540":2541,"2541":2542,"2542":2543,"2543":2544,"2544":2545,"2545":2546,"2546":2547,"2547":2548,"2548":2549,"2549":2550,"2550":2551,"2551":2552,"2552":2553,"2553":2554,"2554":2555,"2555":2556,"2556":2557,"2557":2558,"2558":2559,"2559":2560,"2560":2561,"2561":2562,"2562":2563,"2563":2564,"2564":2565,"2565":2566,"2566":2567,"2567":2568,"2568":2569,"2569":2570,"2570":2571,"2571":2572,"2572":2573,"2573":2574,"2574":2575,"2575":2576,"2576":2577,"2577":2578,"2578":2579,"2579":2580,"2580":2581,"2581":2582,"2582":2583,"2583":2584,"2584":2585,"2585":2586,"2586":2587,"2587":2588,"2588":2589,"2589":2590,"2590":2591,"2591":2592,"2592":2593,"2593":2594,"2594":2595,"2595":2596,"2596":2597,"2597":2598,"2598":2599,"2599":2600,"2600":2601,"2601":2602,"2602":2603,"2603":2604,"2604":2605,"2605":2606,"2606":2607,"2607":2608,"2608":2609,"2609":2610,"2610":2611,"2611":2612,"2612":2613,"2613":2614,"2614":2615,"2615":2616,"2616":2617,"2617":2618,"2618":2619,"2619":2620,"2620":2621,"2621":2622,"2622":2623,"2623":2624,"2624":2625,"2625":2626,"2626":2627,"2627":2628,"2628":2629,"2629":2630,"2630":2631,"2631":2632,"2632":2633,"2633":2634,"2634":2635,"2635":2636,"2636":2637,"2637":2638,"2638":2639,"2639":2640,"2640":2641,"2641":2642,"2642":2643,"2643":2644,"2644":2645,"2645":2646,"2646":2647,"2647":2648,"2648":2649,"2649":2650,"2650":2651,"2651":2652,"2652":2653,"2653":2654,"2654":2655,"2655":2656,"2656":2657,"2657":2658,"2658":2659,"2659":2660,"2660":2661,"2661":2662,"2662":2663,"2663":2664,"2664":2665,"2665":2666,"2666":2667,"2667":2668,"2668":2669,"2669":2670,"2670":2671,"2671":2672,"2672":2673,"2673":2674,"2674":2675,"2675":2676,"2676":2677,"2677":2678,"2678":2679,"2679":2680,"2680":2681,"2681":2682,"2682":2683,"2683":2684,"2684":2685,"2685":2686,"2686":2687,"2687":2688,"2688":2689,"2689":2690,"2690":2691,"2691":2692,"2692":2693,"2693":2694,"2694":2695,"2695":2696,"2696":2697,"2697":2698,"2698":2699,"2699":2700,"2700":2701,"2701":2702,"2702":2703,"2703":2704,"2704":2705,"2705":2706,"2706":2707,"2707":2708,"2708":2709,"2709":2710,"2710":2711,"2711":2712,"2712":2713,"2713":2714,"2714":2715,"2715":2716,"2716":2717,"2717":2718,"2718":2719,"2719":2720,"2720":2721,"2721":2722,"2722":2723,"2723":2724,"2724":2725,"2725":2726,"2726":2727,"2727":2728,"2728":2729,"2729":2730,"2730":2731,"2731":2732,"2732":2733,"2733":2734,"2734":2735,"2735":2736,"2736":2737,"2737":2738,"2738":2739,"2739":2740,"2740":2741,"2741":2742,"2742":2743,"2743":2744,"2744":2745,"2745":2746,"2746":2747,"2747":2748,"2748":2749,"2749":2750,"2750":2751,"2751":2752,"2752":2753,"2753":2754,"2754":2755,"2755":2756,"2756":2757,"2757":2758,"2758":2759,"2759":2760,"2760":2761,"2761":2762,"2762":2763,"2763":2764,"2764":2765,"2765":2766,"2766":2767,"2767":2768,"2768":2769,"2769":2770,"2770":2771,"2771":2772,"2772":2773,"2773":2774,"2774":2775,"2775":2776,"2776":2777,"2777":2778,"2778":2779,"2779":2780,"2780":2781,"2781":2782,"2782":2783,"2783":2784,"2784":2785,"2785":2786,"2786":2787,"2787":2788,"2788":2789,"2789":2790,"2790":2791,"2791":2792,"2792":2793,"2793":2794,"2794":2795,"2795":2796,"2796":2797,"2797":2798,"2798":2799,"2799":2800,"2800":2801,"2801":2802,"2802":2803,"2803":2804,"2804":2805,"2805":2806,"2806":2807,"2807":2808,"2808":2809,"2809":2810,"2810":2811,"2811":2812,"2812":2813,"2813":2814,"2814":2815,"2815":2816,"2816":2817,"2817":2818,"2818":2819,"2819":2820,"2820":2821,"2821":2822,"2822":2823,"2823":2824,"2824":2825,"2825":2826,"2826":2827,"2827":2828,"2828":2829,"2829":2830,"2830":2831,"2831":2832,"2832":2833,"2833":2834,"2834":2835,"2835":2836,"2836":2837,"2837":2838,"2838":2839,"2839":2840,"2840":2841,"2841":2842,"2842":2843,"2843":2844,"2844":2845,"2845":2846,"2846":2847,"2847":2848,"2848":2849,"2849":2850,"2850":2851,"2851":2852,"2852":2853,"2853":2854,"2854":2855,"2855":2856,"2856":2857,"2857":2858,"2858":2859,"2859":2860,"2860":2861,"2861":2862,"2862":2863,"2863":2864,"2864":2865,"2865":2866,"2866":2867,"2867":2868,"2868":2869,"2869":2870,"2870":2871,"2871":2872,"2872":2873,"2873":2874,"2874":2875,"2875":2876,"2876":2877,"2877":2878,"2878":2879,"2879":2880,"2880":2881,"2881":2882,"2882":2883,"2883":2884,"2884":2885,"2885":2886,"2886":2887,"2887":2888,"2888":2889,"2889":2890,"2890":2891,"2891":2892,"2892":2893,"2893":2894,"2894":2895,"2895":2896,"2896":2897,"2897":2898,"2898":2899,"2899":2900,"2900":2901,"2901":2902,"2902":2903,"2903":2904,"2904":2905,"2905":2906,"2906":2907,"2907":2908,"2908":2909,"2909":2910,"2910":2911,"2911":2912,"2912":2913,"2913":2914,"2914":2915,"2915":2916,"2916":2917,"2917":2918,"2918":2919,"2919":2920,"2920":2921,"2921":2922,"2922":2923,"2923":2924,"2924":2925,"2925":2926,"2926":2927,"2927":2928,"2928":2929,"2929":2930,"2930":2931,"2931":2932,"2932":2933,"2933":2934,"2934":2935,"2935":2936,"2936":2937,"2937":2938,"2938":2939,"2939":2940,"2940":2941,"2941":2942,"2942":2943,"2943":2944,"2944":2945,"2945":2946,"2946":2947,"2947":2948,"2948":2949,"2949":2950,"2950":2951,"2951":2952,"2952":2953,"2953":2954,"2954":2955,"2955":2956,"2956":2957,"2957":2958,"2958":2959,"2959":2960,"2960":2961,"2961":2962,"2962":2963,"2963":2964,"2964":2965,"2965":2966,"2966":2967,"2967":2968,"2968":2969,"2969":2970,"2970":2971,"2971":2972,"2972":2973,"2973":2974,"2974":2975,"2975":2976,"2976":2977,"2977":2978,"2978":2979,"2979":2980,"2980":2981,"2981":2982,"2982":2983,"2983":2984,"2984":2985,"2985":2986,"2986":2987,"2987":2988,"2988":2989,"2989":2990,"2990":2991,"2991":2992,"2992":2993,"2993":2994,"2994":2995,"2995":2996,"2996":2997,"2997":2998,"2998":2999,"2999":3000,"3000":3001,"3001":3002,"3002":3003,"3003":3004,"3004":3005,"3005":3006,"3006":3007,"3007":3008,"3008":3009,"3009":3010,"3010":3011,"3011":3012,"3012":3013,"3013":3014,"3014":3015,"3015":3016,"3016":3017,"3017":3018,"3018":3019,"3019":3020,"3020":3021,"3021":3022,"3022":3023,"3023":3024,"3024":3025,"3025":3026,"3026":3027,"3027":3028,"3028":3029,"3029":3030,"3030":3031,"3031":3032,"3032":3033,"3033":3034,"3034":3035,"3035":3036,"3036":3037,"3037":3038,"3038":3039,"3039":3040,"3040":3041,"3041":3042,"3042":3043,"3043":3044,"3044":3045,"3045":3046,"3046":3047,"3047":3048,"3048":3049,"3049":3050,"3050":3051,"3051":3052,"3052":3053,"3053":3054,"3054":3055,"3055":3056,"3056":3057,"3057":3058,"3058":3059,"3059":3060,"3060":3061,"3061":3062,"3062":3063,"3063":3064,"3064":3065,"3065":3066,"3066":3067,"3067":3068,"3068":3069,"3069":3070,"3070":3071,"3071":3072,"3072":3073,"3073":3074,"3074":3075,"3075":3076,"3076":3077,"3077":3078,"3078":3079,"3079":3080,"3080":3081,"3081":3082,"3082":3083,"3083":3084,"3084":3085,"3085":3086,"3086":3087,"3087":3088,"3088":3089,"3089":3090,"3090":3091,"3091":3092,"3092":3093,"3093":3094,"3094":3095,"3095":3096,"3096":3097,"3097":3098,"3098":3099,"3099":3100,"3100":3101,"3101":3102,"3102":3103,"3103":3104,"3104":3105,"3105":3106,"3106":3107,"3107":3108,"3108":3109,"3109":3110,"3110":3111,"3111":3112,"3112":3113,"3113":3114,"3114":3115,"3115":3116,"3116":3117,"3117":3118,"3118":3119,"3119":3120,"3120":3121,"3121":3122,"3122":3123,"3123":3124,"3124":3125,"3125":3126,"3126":3127,"3127":3128,"3128":3129,"3129":3130,"3130":3131,"3131":3132,"3132":3133,"3133":3134,"3134":3135,"3135":3136,"3136":3137,"3137":3138,"3138":3139,"3139":3140,"3140":3141,"3141":3142,"3142":3143,"3143":3144,"3144":3145,"3145":3146,"3146":3147,"3147":3148,"3148":3149,"3149":3150,"3150":3151,"3151":3152,"3152":3153,"3153":3154,"3154":3155,"3155":3156,"3156":3157,"3157":3158,"3158":3159,"3159":3160,"3160":3161,"3161":3162,"3162":3163,"3163":3164,"3164":3165,"3165":3166,"3166":3167,"3167":3168,"3168":3169,"3169":3170,"3170":3171,"3171":3172,"3172":3173,"3173":3174,"3174":3175,"3175":3176,"3176":3177,"3177":3178,"3178":3179,"3179":3180,"3180":3181,"3181":3182,"3182":3183,"3183":3184,"3184":3185,"3185":3186,"3186":3187,"3187":3188,"3188":3189,"3189":3190,"3190":3191,"3191":3192,"3192":3193,"3193":3194,"3194":3195,"3195":3196,"3196":3197,"3197":3198,"3198":3199,"3199":3200,"3200":3201,"3201":3202,"3202":3203,"3203":3204,"3204":3205,"3205":3206,"3206":3207,"3207":3208,"3208":3209,"3209":3210,"3210":3211,"3211":3212,"3212":3213,"3213":3214,"3214":3215,"3215":3216,"3216":3217,"3217":3218,"3218":3219,"3219":3220,"3220":3221,"3221":3222,"3222":3223,"3223":3224,"3224":3225,"3225":3226,"3226":3227,"3227":3228,"3228":3229,"3229":3230,"3230":3231,"3231":3232,"3232":3233,"3233":3234,"3234":3235,"3235":3236,"3236":3237,"3237":3238,"3238":3239,"3239":3240,"3240":3241,"3241":3242,"3242":3243,"3243":3244,"3244":3245,"3245":3246,"3246":3247,"3247":3248,"3248":3249,"3249":3250,"3250":3251,"3251":3252,"3252":3253,"3253":3254,"3254":3255,"3255":3256,"3256":3257,"3257":3258,"3258":3259,"3259":3260,"3260":3261,"3261":3262,"3262":3263,"3263":3264,"3264":3265,"3265":3266,"3266":3267,"3267":3268,"3268":3269,"3269":3270,"3270":3271,"3271":3272,"3272":3273,"3273":3274,"3274":3275,"3275":3276,"3276":3277,"3277":3278,"3278":3279,"3279":3280,"3280":3281,"3281":3282,"3282":3283,"3283":3284,"3284":3285,"3285":3286,"3286":3287,"3287":3288,"3288":3289,"3289":3290,"3290":3291,"3291":3292,"3292":3293,"3293":3294,"3294":3295,"3295":3296,"3296":3297,"3297":3298,"3298":3299,"3299":3300,"3300":3301,"3301":3302,"3302":3303,"3303":3304,"3304":3305,"3305":3306,"3306":3307,"3307":3308,"3308":3309,"3309":3310,"3310":3311,"3311":3312,"3312":3313,"3313":3314,"3314":3315,"3315":3316,"3316":3317,"3317":3318,"3318":3319,"3319":3320,"3320":3321,"3321":3322,"3322":3323,"3323":3324,"3324":3325,"3325":3326,"3326":3327,"3327":3328,"3328":3329,"3329":3330,"3330":3331,"3331":3332,"3332":3333,"3333":3334,"3334":3335,"3335":3336,"3336":3337,"3337":3338,"3338":3339,"3339":3340,"3340":3341,"3341":3342,"3342":3343,"3343":3344,"3344":3345,"3345":3346,"3346":3347,"3347":3348,"3348":3349,"3349":3350,"3350":3351,"3351":3352,"3352":3353,"3353":3354,"3354":3355,"3355":3356,"3356":3357,"3357":3358,"3358":3359,"3359":3360,"3360":3361,"3361":3362,"3362":3363,"3363":3364,"3364":3365,"3365":3366,"3366":3367,"3367":3368,"3368":3369,"3369":3370,"3370":3371,"3371":3372,"3372":3373,"3373":3374,"3374":3375,"3375":3376,"3376":3377,"3377":3378,"3378":3379,"3379":3380,"3380":3381,"3381":3382,"3382":3383,"3383":3384,"3384":3385,"3385":3386,"3386":3387,"3387":3388,"3388":3389,"3389":3390,"3390":3391,"3391":3392,"3392":3393,"3393":3394,"3394":3395,"3395":3396,"3396":3397,"3397":3398,"3398":3399,"3399":3400,"3400":3401,"3401":3402,"3402":3403,"3403":3404,"3404":3405,"3405":3406,"3406":3407,"3407":3408,"3408":3409,"3409":3410,"3410":3411,"3411":3412,"3412":3413,"3413":3414,"3414":3415,"3415":3416,"3416":3417,"3417":3418,"3418":3419,"3419":3420,"3420":3421,"3421":3422,"3422":3423,"3423":3424,"3424":3425,"3425":3426,"3426":3427,"3427":3428,"3428":3429,"3429":3430,"3430":3431,"3431":3432,"3432":3433,"3433":3434,"3434":3435,"3435":3436,"3436":3437,"3437":3438,"3438":3439,"3439":3440,"3440":3441,"3441":3442,"3442":3443,"3443":3444,"3444":3445,"3445":3446,"3446":3447,"3447":3448,"3448":3449,"3449":3450,"3450":3451,"3451":3452,"3452":3453,"3453":3454,"3454":3455,"3455":3456,"3456":3457,"3457":3458,"3458":3459,"3459":3460,"3460":3461,"3461":3462,"3462":3463,"3463":3464,"3464":3465,"3465":3466,"3466":3467,"3467":3468,"3468":3469,"3469":3470,"3470":3471,"3471":3472,"3472":3473,"3473":3474,"3474":3475,"3475":3476,"3476":3477,"3477":3478,"3478":3479,"3479":3480,"3480":3481,"3481":3482,"3482":3483,"3483":3484,"3484":3485,"3485":3486,"3486":3487,"3487":3488,"3488":3489,"3489":3490,"3490":3491,"3491":3492,"3492":3493,"3493":3494,"3494":3495,"3495":3496,"3496":3497,"3497":3498,"3498":3499,"3499":3500,"3500":3501,"3501":3502,"3502":3503,"3503":3504,"3504":3505,"3505":3506,"3506":3507,"3507":3508,"3508":3509,"3509":3510,"3510":3511,"3511":3512,"3512":3513,"3513":3514,"3514":3515,"3515":3516,"3516":3517,"3517":3518,"3518":3519,"3519":3520,"3520":3521,"3521":3522,"3522":3523,"3523":3524,"3524":3525,"3525":3526,"3526":3527,"3527":3528,"3528":3529,"3529":3530,"3530":3531,"3531":3532,"3532":3533,"3533":3534,"3534":3535,"3535":3536,"3536":3537,"3537":3538,"3538":3539,"3539":3540,"3540":3541,"3541":3542,"3542":3543,"3543":3544,"3544":3545,"3545":3546,"3546":3547,"3547":3548,"3548":3549,"3549":3550,"3550":3551,"3551":3552,"3552":3553,"3553":3554,"3554":3555,"3555":3556,"3556":3557,"3557":3558,"3558":3559,"3559":3560,"3560":3561,"3561":3562,"3562":3563,"3563":3564,"3564":3565,"3565":3566,"3566":3567,"3567":3568,"3568":3569,"3569":3570,"3570":3571,"3571":3572,"3572":3573,"3573":3574,"3574":3575,"3575":3576,"3576":3577,"3577":3578,"3578":3579,"3579":3580,"3580":3581,"3581":3582,"3582":3583,"3583":3584,"3584":3585,"3585":3586,"3586":3587,"3587":3588,"3588":3589,"3589":3590,"3590":3591,"3591":3592,"3592":3593,"3593":3594,"3594":3595,"3595":3596,"3596":3597,"3597":3598,"3598":3599,"3599":3600,"3600":3601,"3601":3602,"3602":3603,"3603":3604,"3604":3605,"3605":3606,"3606":3607,"3607":3608,"3608":3609,"3609":3610,"3610":3611,"3611":3612,"3612":3613,"3613":3614,"3614":3615,"3615":3616,"3616":3617,"3617":3618,"3618":3619,"3619":3620,"3620":3621,"3621":3622,"3622":3623,"3623":3624,"3624":3625,"3625":3626,"3626":3627,"3627":3628,"3628":3629,"3629":3630,"3630":3631,"3631":3632,"3632":3633,"3633":3634,"3634":3635,"3635":3636,"3636":3637,"3637":3638,"3638":3639,"3639":3640,"3640":3641,"3641":3642,"3642":3643,"3643":3644,"3644":3645,"3645":3646,"3646":3647,"3647":3648,"3648":3649,"3649":3650,"3650":3651,"3651":3652,"3652":3653,"3653":3654,"3654":3655,"3655":3656,"3656":3657,"3657":3658,"3658":3659,"3659":3660,"3660":3661,"3661":3662,"3662":3663,"3663":3664,"3664":3665,"3665":3666,"3666":3667,"3667":3668,"3668":3669,"3669":3670,"3670":3671,"3671":3672,"3672":3673,"3673":3674,"3674":3675,"3675":3676,"3676":3677,"3677":3678,"3678":3679,"3679":3680,"3680":3681,"3681":3682,"3682":3683,"3683":3684,"3684":3685,"3685":3686,"3686":3687,"3687":3688,"3688":3689,"3689":3690,"3690":3691,"3691":3692,"3692":3693,"3693":3694,"3694":3695,"3695":3696,"3696":3697,"3697":3698,"3698":3699,"3699":3700,"3700":3701,"3701":3702,"3702":3703,"3703":3704,"3704":3705,"3705":3706,"3706":3707,"3707":3708,"3708":3709,"3709":3710,"3710":3711,"3711":3712,"3712":3713,"3713":3714,"3714":3715,"3715":3716,"3716":3717,"3717":3718,"3718":3719,"3719":3720,"3720":3721,"3721":3722,"3722":3723,"3723":3724,"3724":3725,"3725":3726,"3726":3727,"3727":3728,"3728":3729,"3729":3730,"3730":3731,"3731":3732,"3732":3733,"3733":3734,"3734":3735,"3735":3736,"3736":3737,"3737":3738,"3738":3739,"3739":3740,"3740":3741,"3741":3742,"3742":3743,"3743":3744,"3744":3745,"3745":3746,"3746":3747,"3747":3748,"3748":3749,"3749":3750,"3750":3751,"3751":3752,"3752":3753,"3753":3754,"3754":3755,"3755":3756,"3756":3757,"3757":3758,"3758":3759,"3759":3760,"3760":3761,"3761":3762,"3762":3763,"3763":3764,"3764":3765,"3765":3766,"3766":3767,"3767":3768,"3768":3769,"3769":3770,"3770":3771,"3771":3772,"3772":3773,"3773":3774,"3774":3775,"3775":3776,"3776":3777,"3777":3778,"3778":3779,"3779":3780,"3780":3781,"3781":3782,"3782":3783,"3783":3784,"3784":3785,"3785":3786,"3786":3787,"3787":3788,"3788":3789,"3789":3790,"3790":3791,"3791":3792,"3792":3793,"3793":3794,"3794":3795,"3795":3796,"3796":3797,"3797":3798,"3798":3799,"3799":3800,"3800":3801,"3801":3802,"3802":3803,"3803":3804,"3804":3805,"3805":3806,"3806":3807,"3807":3808,"3808":3809,"3809":3810,"3810":3811,"3811":3812,"3812":3813,"3813":3814,"3814":3815,"3815":3816,"3816":3817,"3817":3818,"3818":3819,"3819":3820,"3820":3821,"3821":3822,"3822":3823,"3823":3824,"3824":3825,"3825":3826,"3826":3827,"3827":3828,"3828":3829,"3829":3830,"3830":3831,"3831":3832,"3832":3833,"3833":3834,"3834":3835,"3835":3836,"3836":3837,"3837":3838,"3838":3839,"3839":3840,"3840":3841,"3841":3842,"3842":3843,"3843":3844,"3844":3845,"3845":3846,"3846":3847,"3847":3848,"3848":3849,"3849":3850,"3850":3851,"3851":3852,"3852":3853,"3853":3854,"3854":3855,"3855":3856,"3856":3857,"3857":3858,"3858":3859,"3859":3860,"3860":3861,"3861":3862,"3862":3863,"3863":3864,"3864":3865,"3865":3866,"3866":3867,"3867":3868,"3868":3869,"3869":3870,"3870":3871,"3871":3872,"3872":3873,"3873":3874,"3874":3875,"3875":3876,"3876":3877,"3877":3878,"3878":3879,"3879":3880,"3880":3881,"3881":3882,"3882":3883,"3883":3884,"3884":3885,"3885":3886,"3886":3887,"3887":3888,"3888":3889,"3889":3890,"3890":3891,"3891":3892,"3892":3893,"3893":3894,"3894":3895,"3895":3896,"3896":3897,"3897":3898,"3898":3899,"3899":3900,"3900":3901,"3901":3902,"3902":3903,"3903":3904,"3904":3905,"3905":3906,"3906":3907,"3907":3908,"3908":3909,"3909":3910,"3910":3911,"3911":3912,"3912":3913,"3913":3914,"3914":3915,"3915":3916,"3916":3917,"3917":3918,"3918":3919,"3919":3920,"3920":3921,"3921":3922,"3922":3923,"3923":3924,"3924":3925,"3925":3926,"3926":3927,"3927":3928,"3928":3929,"3929":3930,"3930":3931,"3931":3932,"3932":3933,"3933":3934,"3934":3935,"3935":3936,"3936":3937,"3937":3938,"3938":3939,"3939":3940,"3940":3941,"3941":3942,"3942":3943,"3943":3944,"3944":3945,"3945":3946,"3946":3947,"3947":3948,"3948":3949,"3949":3950,"3950":3951,"3951":3952,"3952":3953,"3953":3954,"3954":3955,"3955":3956,"3956":3957,"3957":3958,"3958":3959,"3959":3960,"3960":3961,"3961":3962,"3962":3963,"3963":3964,"3964":3965,"3965":3966,"3966":3967,"3967":3968,"3968":3969,"3969":3970,"3970":3971,"3971":3972,"3972":3973,"3973":3974,"3974":3975,"3975":3976,"3976":3977,"3977":3978,"3978":3979,"3979":3980,"3980":3981,"3981":3982,"3982":3983,"3983":3984,"3984":3985,"3985":3986,"3986":3987,"3987":3988,"3988":3989,"3989":3990,"3990":3991,"3991":3992,"3992":3993,"3993":3994,"3994":3995,"3995":3996,"3996":3997,"3997":3998,"3998":3999,"3999":4000,"4000":4001,"4001":4002,"4002":4003,"4003":4004,"4004":4005,"4005":4006,"4006":4007,"4007":4008,"4008":4009,"4009":4010,"4010":4011,"4011":4012,"4012":4013,"4013":4014,"4014":4015,"4015":4016,"4016":4017,"4017":4018,"4018":4019,"4019":4020,"4020":4021,"4021":4022,"4022":4023,"4023":4024,"4024":4025,"4025":4026,"4026":4027,"4027":4028,"4028":4029,"4029":4030,"4030":4031,"4031":4032,"4032":4033,"4033":4034,"4034":4035,"4035":4036,"4036":4037,"4037":4038,"4038":4039,"4039":4040,"4040":4041,"4041":4042,"4042":4043,"4043":4044,"4044":4045,"4045":4046,"4046":4047,"4047":4048,"4048":4049,"4049":4050,"4050":4051,"4051":4052,"4052":4053,"4053":4054,"4054":4055,"4055":4056,"4056":4057,"4057":4058,"4058":4059,"4059":4060,"4060":4061,"4061":4062,"4062":4063,"4063":4064,"4064":4065,"4065":4066,"4066":4067,"4067":4068,"4068":4069,"4069":4070,"4070":4071,"4071":4072,"4072":4073,"4073":4074,"4074":4075,"4075":4076,"4076":4077,"4077":4078,"4078":4079,"4079":4080,"4080":4081,"4081":4082,"4082":4083,"4083":4084,"4084":4085,"4085":4086,"4086":4087,"4087":4088,"4088":4089,"4089":4090,"4090":4091,"4091":4092,"4092":4093,"4093":4094,"4094":4095,"4095":4096,"4096":4097,"4097":4098,"4098":4099,"4099":4100,"4100":4101,"4101":4102,"4102":4103,"4103":4104,"4104":4105,"4105":4106,"4106":4107,"4107":4108,"4108":4109,"4109":4110,"4110":4111,"4111":4112,"4112":4113,"4113":4114,"4114":4115,"4115":4116,"4116":4117,"4117":4118,"4118":4119,"4119":4120,"4120":4121,"4121":4122,"4122":4123,"4123":4124,"4124":4125,"4125":4126,"4126":4127,"4127":4128,"4128":4129,"4129":4130,"4130":4131,"4131":4132,"4132":4133,"4133":4134,"4134":4135,"4135":4136,"4136":4137,"4137":4138,"4138":4139,"4139":4140,"4140":4141,"4141":4142,"4142":4143,"4143":4144,"4144":4145,"4145":4146,"4146":4147,"4147":4148,"4148":4149,"4149":4150,"4150":4151,"4151":4152,"4152":4153,"4153":4154,"4154":4155,"4155":4156,"4156":4157,"4157":4158,"4158":4159,"4159":4160,"4160":4161,"4161":4162,"4162":4163,"4163":4164,"4164":4165,"4165":4166,"4166":4167,"4167":4168,"4168":4169,"4169":4170,"4170":4171,"4171":4172,"4172":4173,"4173":4174,"4174":4175,"4175":4176,"4176":4177,"4177":4178,"4178":4179,"4179":4180,"4180":4181,"4181":4182,"4182":4183,"4183":4184,"4184":4185,"4185":4186,"4186":4187,"4187":4188,"4188":4189,"4189":4190,"4190":4191,"4191":4192,"4192":4193,"4193":4194,"4194":4195,"4195":4196,"4196":4197,"4197":4198,"4198":4199,"4199":4200,"4200":4201,"4201":4202,"4202":4203,"4203":4204,"4204":4205,"4205":4206,"4206":4207,"4207":4208,"4208":4209,"4209":4210,"4210":4211,"4211":4212,"4212":4213,"4213":4214,"4214":4215,"4215":4216,"4216":4217,"4217":4218,"4218":4219,"4219":4220,"4220":4221,"4221":4222,"4222":4223,"4223":4224,"4224":4225,"4225":4226,"4226":4227,"4227":4228,"4228":4229,"4229":4230,"4230":4231,"4231":4232,"4232":4233,"4233":4234,"4234":4235,"4235":4236,"4236":4237,"4237":4238,"4238":4239,"4239":4240,"4240":4241,"4241":4242,"4242":4243,"4243":4244,"4244":4245,"4245":4246,"4246":4247,"4247":4248,"4248":4249,"4249":4250,"4250":4251,"4251":4252,"4252":4253,"4253":4254,"4254":4255,"4255":4256,"4256":4257,"4257":4258,"4258":4259,"4259":4260,"4260":4261,"4261":4262,"4262":4263,"4263":4264,"4264":4265,"4265":4266,"4266":4267,"4267":4268,"4268":4269,"4269":4270,"4270":4271,"4271":4272,"4272":4273,"4273":4274,"4274":4275,"4275":4276,"4276":4277,"4277":4278,"4278":4279,"4279":4280,"4280":4281,"4281":4282,"4282":4283,"4283":4284,"4284":4285,"4285":4286,"4286":4287,"4287":4288,"4288":4289,"4289":4290,"4290":4291,"4291":4292,"4292":4293,"4293":4294,"4294":4295,"4295":4296,"4296":4297,"4297":4298,"4298":4299,"4299":4300,"4300":4301,"4301":4302,"4302":4303,"4303":4304,"4304":4305,"4305":4306,"4306":4307,"4307":4308,"4308":4309,"4309":4310,"4310":4311,"4311":4312,"4312":4313,"4313":4314,"4314":4315,"4315":4316,"4316":4317,"4317":4318,"4318":4319,"4319":4320,"4320":4321,"4321":4322,"4322":4323,"4323":4324,"4324":4325,"4325":4326,"4326":4327,"4327":4328,"4328":4329,"4329":4330,"4330":4331,"4331":4332,"4332":4333,"4333":4334,"4334":4335,"4335":4336,"4336":4337,"4337":4338,"4338":4339,"4339":4340,"4340":4341,"4341":4342,"4342":4343,"4343":4344,"4344":4345,"4345":4346,"4346":4347,"4347":4348,"4348":4349,"4349":4350,"4350":4351,"4351":4352,"4352":4353,"4353":4354,"4354":4355,"4355":4356,"4356":4357,"4357":4358,"4358":4359,"4359":4360,"4360":4361,"4361":4362,"4362":4363,"4363":4364,"4364":4365,"4365":4366,"4366":4367,"4367":4368,"4368":4369,"4369":4370,"4370":4371,"4371":4372,"4372":4373,"4373":4374,"4374":4375,"4375":4376,"4376":4377,"4377":4378,"4378":4379,"4379":4380,"4380":4381,"4381":4382,"4382":4383,"4383":4384,"4384":4385,"4385":4386,"4386":4387,"4387":4388,"4388":4389,"4389":4390,"4390":4391,"4391":4392,"4392":4393,"4393":4394,"4394":4395,"4395":4396,"4396":4397,"4397":4398,"4398":4399,"4399":4400,"4400":4401,"4401":4402,"4402":4403,"4403":4404,"4404":4405,"4405":4406,"4406":4407,"4407":4408,"4408":4409,"4409":4410,"4410":4411,"4411":4412,"4412":4413,"4413":4414,"4414":4415,"4415":4416,"4416":4417,"4417":4418,"4418":4419,"4419":4420,"4420":4421,"4421":4422,"4422":4423,"4423":4424,"4424":4425,"4425":4426,"4426":4427,"4427":4428,"4428":4429,"4429":4430,"4430":4431,"4431":4432,"4432":4433,"4433":4434,"4434":4435,"4435":4436,"4436":4437,"4437":4438,"4438":4439,"4439":4440,"4440":4441,"4441":4442,"4442":4443,"4443":4444,"4444":4445,"4445":4446,"4446":4447,"4447":4448,"4448":4449,"4449":4450,"4450":4451,"4451":4452,"4452":4453,"4453":4454,"4454":4455,"4455":4456,"4456":4457,"4457":4458,"4458":4459,"4459":4460,"4460":4461,"4461":4462,"4462":4463,"4463":4464,"4464":4465,"4465":4466,"4466":4467,"4467":4468,"4468":4469,"4469":4470,"4470":4471,"4471":4472,"4472":4473,"4473":4474,"4474":4475,"4475":4476,"4476":4477,"4477":4478,"4478":4479,"4479":4480,"4480":4481,"4481":4482,"4482":4483,"4483":4484,"4484":4485,"4485":4486,"4486":4487,"4487":4488,"4488":4489,"4489":4490,"4490":4491,"4491":4492,"4492":4493,"4493":4494,"4494":4495,"4495":4496,"4496":4497,"4497":4498,"4498":4499,"4499":4500,"4500":4501,"4501":4502,"4502":4503,"4503":4504,"4504":4505,"4505":4506,"4506":4507,"4507":4508,"4508":4509,"4509":4510,"4510":4511,"4511":4512,"4512":4513,"4513":4514,"4514":4515,"4515":4516,"4516":4517,"4517":4518,"4518":4519,"4519":4520,"4520":4521,"4521":4522,"4522":4523,"4523":4524,"4524":4525,"4525":4526,"4526":4527,"4527":4528,"4528":4529,"4529":4530,"4530":4531,"4531":4532,"4532":4533,"4533":4534,"4534":4535,"4535":4536,"4536":4537,"4537":4538,"4538":4539,"4539":4540,"4540":4541,"4541":4542,"4542":4543,"4543":4544,"4544":4545,"4545":4546,"4546":4547,"4547":4548,"4548":4549,"4549":4550,"4550":4551,"4551":4552,"4552":4553,"4553":4554,"4554":4555,"4555":4556,"4556":4557,"4557":4558,"4558":4559,"4559":4560,"4560":4561,"4561":4562,"4562":4563,"4563":4564,"4564":4565,"4565":4566,"4566":4567,"4567":4568,"4568":4569,"4569":4570,"4570":4571,"4571":4572,"4572":4573,"4573":4574,"4574":4575,"4575":4576,"4576":4577,"4577":4578,"4578":4579,"4579":4580,"4580":4581,"4581":4582,"4582":4583,"4583":4584,"4584":4585,"4585":4586,"4586":4587,"4587":4588,"4588":4589,"4589":4590,"4590":4591,"4591":4592,"4592":4593,"4593":4594,"4594":4595,"4595":4596,"4596":4597,"4597":4598,"4598":4599,"4599":4600,"4600":4601,"4601":4602,"4602":4603,"4603":4604,"4604":4605,"4605":4606,"4606":4607,"4607":4608,"4608":4609,"4609":4610,"4610":4611,"4611":4612,"4612":4613,"4613":4614,"4614":4615,"4615":4616,"4616":4617,"4617":4618,"4618":4619,"4619":4620,"4620":4621,"4621":4622,"4622":4623,"4623":4624,"4624":4625,"4625":4626,"4626":4627,"4627":4628,"4628":4629,"4629":4630,"4630":4631,"4631":4632,"4632":4633,"4633":4634,"4634":4635,"4635":4636,"4636":4637,"4637":4638,"4638":4639,"4639":4640,"4640":4641,"4641":4642,"4642":4643,"4643":4644,"4644":4645,"4645":4646,"4646":4647,"4647":4648,"4648":4649,"4649":4650,"4650":4651,"4651":4652,"4652":4653,"4653":4654,"4654":4655,"4655":4656,"4656":4657,"4657":4658,"4658":4659,"4659":4660,"4660":4661,"4661":4662,"4662":4663,"4663":4664,"4664":4665,"4665":4666,"4666":4667,"4667":4668,"4668":4669,"4669":4670,"4670":4671,"4671":4672,"4672":4673,"4673":4674,"4674":4675,"4675":4676,"4676":4677,"4677":4678,"4678":4679,"4679":4680,"4680":4681,"4681":4682,"4682":4683,"4683":4684,"4684":4685,"4685":4686,"4686":4687,"4687":4688,"4688":4689,"4689":4690,"4690":4691,"4691":4692,"4692":4693,"4693":4694,"4694":4695,"4695":4696,"4696":4697,"4697":4698,"4698":4699,"4699":4700,"4700":4701,"4701":4702,"4702":4703,"4703":4704,"4704":4705,"4705":4706,"4706":4707,"4707":4708,"4708":4709,"4709":4710,"4710":4711,"4711":4712,"4712":4713,"4713":4714,"4714":4715,"4715":4716,"4716":4717,"4717":4718,"4718":4719,"4719":4720,"4720":4721,"4721":4722,"4722":4723,"4723":4724,"4724":4725,"4725":4726,"4726":4727,"4727":4728,"4728":4729,"4729":4730,"4730":4731,"4731":4732,"4732":4733,"4733":4734,"4734":4735,"4735":4736,"4736":4737,"4737":4738,"4738":4739,"4739":4740,"4740":4741,"4741":4742,"4742":4743,"4743":4744,"4744":4745,"4745":4746,"4746":4747,"4747":4748,"4748":4749,"4749":4750,"4750":4751,"4751":4752,"4752":4753,"4753":4754,"4754":4755,"4755":4756,"4756":4757,"4757":4758,"4758":4759,"4759":4760,"4760":4761,"4761":4762,"4762":4763,"4763":4764,"4764":4765,"4765":4766,"4766":4767,"4767":4768,"4768":4769,"4769":4770,"4770":4771,"4771":4772,"4772":4773,"4773":4774,"4774":4775,"4775":4776,"4776":4777,"4777":4778,"4778":4779,"4779":4780,"4780":4781,"4781":4782,"4782":4783,"4783":4784,"4784":4785,"4785":4786,"4786":4787,"4787":4788,"4788":4789,"4789":4790,"4790":4791,"4791":4792,"4792":4793,"4793":4794,"4794":4795,"4795":4796,"4796":4797,"4797":4798,"4798":4799,"4799":4800,"4800":4801,"4801":4802,"4802":4803,"4803":4804,"4804":4805,"4805":4806,"4806":4807,"4807":4808,"4808":4809,"4809":4810,"4810":4811,"4811":4812,"4812":4813,"4813":4814,"4814":4815,"4815":4816,"4816":4817,"4817":4818,"4818":4819,"4819":4820,"4820":4821,"4821":4822,"4822":4823,"4823":4824,"4824":4825,"4825":4826,"4826":4827,"4827":4828,"4828":4829,"4829":4830,"4830":4831,"4831":4832,"4832":4833,"4833":4834,"4834":4835,"4835":4836,"4836":4837,"4837":4838,"4838":4839,"4839":4840,"4840":4841,"4841":4842,"4842":4843,"4843":4844,"4844":4845,"4845":4846,"4846":4847,"4847":4848,"4848":4849,"4849":4850,"4850":4851,"4851":4852,"4852":4853,"4853":4854,"4854":4855,"4855":4856,"4856":4857,"4857":4858,"4858":4859,"4859":4860,"4860":4861,"4861":4862,"4862":4863,"4863":4864,"4864":4865,"4865":4866,"4866":4867,"4867":4868,"4868":4869,"4869":4870,"4870":4871,"4871":4872,"4872":4873,"4873":4874,"4874":4875,"4875":4876,"4876":4877,"4877":4878,"4878":4879,"4879":4880,"4880":4881,"4881":4882,"4882":4883,"4883":4884,"4884":4885,"4885":4886,"4886":4887,"4887":4888,"4888":4889,"4889":4890,"4890":4891,"4891":4892,"4892":4893,"4893":4894,"4894":4895,"4895":4896,"4896":4897,"4897":4898,"4898":4899,"4899":4900,"4900":4901,"4901":4902,"4902":4903,"4903":4904,"4904":4905,"4905":4906,"4906":4907,"4907":4908,"4908":4909,"4909":4910,"4910":4911,"4911":4912,"4912":4913,"4913":4914,"4914":4915,"4915":4916,"4916":4917,"4917":4918,"4918":4919,"4919":4920,"4920":4921,"4921":4922,"4922":4923,"4923":4924,"4924":4925,"4925":4926,"4926":4927,"4927":4928,"4928":4929,"4929":4930,"4930":4931,"4931":4932,"4932":4933,"4933":4934,"4934":4935,"4935":4936,"4936":4937,"4937":4938,"4938":4939,"4939":4940,"4940":4941,"4941":4942,"4942":4943,"4943":4944,"4944":4945,"4945":4946,"4946":4947,"4947":4948,"4948":4949,"4949":4950,"4950":4951,"4951":4952,"4952":4953,"4953":4954,"4954":4955,"4955":4956,"4956":4957,"4957":4958,"4958":4959,"4959":4960,"4960":4961,"4961":4962,"4962":4963,"4963":4964,"4964":4965,"4965":4966,"4966":4967,"4967":4968,"4968":4969,"4969":4970,"4970":4971,"4971":4972,"4972":4973,"4973":4974,"4974":4975,"4975":4976,"4976":4977,"4977":4978,"4978":4979,"4979":4980,"4980":4981,"4981":4982,"4982":4983,"4983":4984,"4984":4985,"4985":4986,"4986":4987,"4987":4988,"4988":4989,"4989":4990,"4990":4991,"4991":4992,"4992":4993,"4993":4994,"4994":4995,"4995":4996,"4996":4997,"4997":4998,"4998":4999,"4999":5000,"5000":5001,"5001":5002,"5002":5003,"5003":5004,"5004":5005,"5005":5006,"5006":5007,"5007":5008,"5008":5009,"5009":5010,"5010":5011,"5011":5012,"5012":5013,"5013":5014,"5014":5015,"5015":5016,"5016":5017,"5017":5018,"5018":5019,"5019":5020,"5020":5021,"5021":5022,"5022":5023,"5023":5024,"5024":5025,"5025":5026,"5026":5027,"5027":5028,"5028":5029,"5029":5030,"5030":5031,"5031":5032,"5032":5033,"5033":5034,"5034":5035,"5035":5036,"5036":5037,"5037":5038,"5038":5039,"5039":5040,"5040":5041,"5041":5042,"5042":5043,"5043":5044,"5044":5045,"5045":5046,"5046":5047,"5047":5048,"5048":5049,"5049":5050,"5050":5051,"5051":5052,"5052":5053,"5053":5054,"5054":5055,"5055":5056,"5056":5057,"5057":5058,"5058":5059,"5059":5060,"5060":5061,"5061":5062,"5062":5063,"5063":5064,"5064":5065,"5065":5066,"5066":5067,"5067":5068,"5068":5069,"5069":5070,"5070":5071,"5071":5072,"5072":5073,"5073":5074,"5074":5075,"5075":5076,"5076":5077,"5077":5078,"5078":5079,"5079":5080,"5080":5081,"5081":5082,"5082":5083,"5083":5084,"5084":5085,"5085":5086,"5086":5087,"5087":5088,"5088":5089,"5089":5090,"5090":5091,"5091":5092,"5092":5093,"5093":5094,"5094":5095,"5095":5096,"5096":5097,"5097":5098,"5098":5099,"5099":5100,"5100":5101,"5101":5102,"5102":5103,"5103":5104,"5104":5105,"5105":5106,"5106":5107,"5107":5108,"5108":5109,"5109":5110,"5110":5111,"5111":5112,"5112":5113,"5113":5114,"5114":5115,"5115":5116,"5116":5117,"5117":5118,"5118":5119,"5119":5120,"5120":5121,"5121":5122,"5122":5123,"5123":5124,"5124":5125,"5125":5126,"5126":5127,"5127":5128,"5128":5129,"5129":5130,"5130":5131,"5131":5132,"5132":5133,"5133":5134,"5134":5135,"5135":5136,"5136":5137,"5137":5138,"5138":5139,"5139":5140,"5140":5141,"5141":5142,"5142":5143,"5143":5144,"5144":5145,"5145":5146,"5146":5147,"5147":5148,"5148":5149,"5149":5150,"5150":5151,"5151":5152,"5152":5153,"5153":5154,"5154":5155,"5155":5156,"5156":5157,"5157":5158,"5158":5159,"5159":5160,"5160":5161,"5161":5162,"5162":5163,"5163":5164,"5164":5165,"5165":5166,"5166":5167,"5167":5168,"5168":5169,"5169":5170,"5170":5171,"5171":5172,"5172":5173,"5173":5174,"5174":5175,"5175":5176,"5176":5177,"5177":5178,"5178":5179,"5179":5180,"5180":5181,"5181":5182,"5182":5183,"5183":5184,"5184":5185,"5185":5186,"5186":5187,"5187":5188,"5188":5189,"5189":5190,"5190":5191,"5191":5192,"5192":5193,"5193":5194,"5194":5195,"5195":5196,"5196":5197,"5197":5198,"5198":5199,"5199":5200,"5200":5201,"5201":5202,"5202":5203,"5203":5204,"5204":5205,"5205":5206,"5206":5207,"5207":5208,"5208":5209,"5209":5210,"5210":5211,"5211":5212,"5212":5213,"5213":5214,"5214":5215,"5215":5216,"5216":5217,"5217":5218,"5218":5219,"5219":5220,"5220":5221,"5221":5222,"5222":5223,"5223":5224,"5224":5225,"5225":5226,"5226":5227,"5227":5228,"5228":5229,"5229":5230,"5230":5231,"5231":5232,"5232":5233,"5233":5234,"5234":5235,"5235":5236,"5236":5237,"5237":5238,"5238":5239,"5239":5240,"5240":5241,"5241":5242,"5242":5243,"5243":5244,"5244":5245,"5245":5246,"5246":5247,"5247":5248,"5248":5249,"5249":5250,"5250":5251,"5251":5252,"5252":5253,"5253":5254,"5254":5255,"5255":5256,"5256":5257,"5257":5258,"5258":5259,"5259":5260,"5260":5261,"5261":5262,"5262":5263,"5263":5264,"5264":5265,"5265":5266,"5266":5267,"5267":5268,"5268":5269,"5269":5270,"5270":5271,"5271":5272,"5272":5273,"5273":5274,"5274":5275,"5275":5276,"5276":5277,"5277":5278,"5278":5279,"5279":5280,"5280":5281,"5281":5282,"5282":5283,"5283":5284,"5284":5285,"5285":5286,"5286":5287,"5287":5288,"5288":5289,"5289":5290,"5290":5291,"5291":5292,"5292":5293,"5293":5294,"5294":5295,"5295":5296,"5296":5297,"5297":5298,"5298":5299,"5299":5300,"5300":5301,"5301":5302,"5302":5303,"5303":5304,"5304":5305,"5305":5306,"5306":5307,"5307":5308,"5308":5309,"5309":5310,"5310":5311,"5311":5312,"5312":5313,"5313":5314,"5314":5315,"5315":5316,"5316":5317,"5317":5318,"5318":5319,"5319":5320,"5320":5321,"5321":5322,"5322":5323,"5323":5324,"5324":5325,"5325":5326,"5326":5327,"5327":5328,"5328":5329,"5329":5330,"5330":5331,"5331":5332,"5332":5333,"5333":5334,"5334":5335,"5335":5336,"5336":5337,"5337":5338,"5338":5339,"5339":5340,"5340":5341,"5341":5342,"5342":5343,"5343":5344,"5344":5345,"5345":5346,"5346":5347,"5347":5348,"5348":5349,"5349":5350,"5350":5351,"5351":5352,"5352":5353,"5353":5354,"5354":5355,"5355":5356,"5356":5357,"5357":5358,"5358":5359,"5359":5360,"5360":5361,"5361":5362,"5362":5363,"5363":5364,"5364":5365,"5365":5366,"5366":5367,"5367":5368,"5368":5369,"5369":5370,"5370":5371,"5371":5372,"5372":5373,"5373":5374,"5374":5375,"5375":5376,"5376":5377,"5377":5378,"5378":5379,"5379":5380,"5380":5381,"5381":5382,"5382":5383,"5383":5384,"5384":5385,"5385":5386,"5386":5387,"5387":5388,"5388":5389,"5389":5390,"5390":5391,"5391":5392,"5392":5393,"5393":5394,"5394":5395,"5395":5396,"5396":5397,"5397":5398,"5398":5399,"5399":5400,"5400":5401,"5401":5402,"5402":5403,"5403":5404,"5404":5405,"5405":5406,"5406":5407,"5407":5408,"5408":5409,"5409":5410,"5410":5411,"5411":5412,"5412":5413,"5413":5414,"5414":5415,"5415":5416,"5416":5417,"5417":5418,"5418":5419,"5419":5420,"5420":5421,"5421":5422,"5422":5423,"5423":5424,"5424":5425,"5425":5426,"5426":5427,"5427":5428,"5428":5429,"5429":5430,"5430":5431,"5431":5432,"5432":5433,"5433":5434,"5434":5435,"5435":5436,"5436":5437,"5437":5438,"5438":5439,"5439":5440,"5440":5441,"5441":5442,"5442":5443,"5443":5444,"5444":5445,"5445":5446,"5446":5447,"5447":5448,"5448":5449,"5449":5450,"5450":5451,"5451":5452,"5452":5453,"5453":5454,"5454":5455,"5455":5456,"5456":5457,"5457":5458,"5458":5459,"5459":5460,"5460":5461,"5461":5462,"5462":5463,"5463":5464,"5464":5465,"5465":5466,"5466":5467,"5467":5468,"5468":5469,"5469":5470,"5470":5471,"5471":5472,"5472":5473,"5473":5474,"5474":5475,"5475":5476,"5476":5477,"5477":5478,"5478":5479,"5479":5480,"5480":5481,"5481":5482,"5482":5483,"5483":5484,"5484":5485,"5485":5486,"5486":5487,"5487":5488,"5488":5489,"5489":5490,"5490":5491,"5491":5492,"5492":5493,"5493":5494,"5494":5495,"5495":5496,"5496":5497,"5497":5498,"5498":5499,"5499":5500,"5500":5501,"5501":5502,"5502":5503,"5503":5504,"5504":5505,"5505":5506,"5506":5507,"5507":5508,"5508":5509,"5509":5510,"5510":5511,"5511":5512,"5512":5513,"5513":5514,"5514":5515,"5515":5516,"5516":5517,"5517":5518,"5518":5519,"5519":5520,"5520":5521,"5521":5522,"5522":5523,"5523":5524,"5524":5525,"5525":5526,"5526":5527,"5527":5528,"5528":5529,"5529":5530,"5530":5531,"5531":5532,"5532":5533,"5533":5534,"5534":5535,"5535":5536,"5536":5537,"5537":5538,"5538":5539,"5539":5540,"5540":5541,"5541":5542,"5542":5543,"5543":5544,"5544":5545,"5545":5546,"5546":5547,"5547":5548,"5548":5549,"5549":5550,"5550":5551,"5551":5552,"5552":5553,"5553":5554,"5554":5555,"5555":5556,"5556":5557,"5557":5558,"5558":5559,"5559":5560,"5560":5561,"5561":5562,"5562":5563,"5563":5564,"5564":5565,"5565":5566,"5566":5567,"5567":5568,"5568":5569,"5569":5570,"5570":5571,"5571":5572,"5572":5573,"5573":5574,"5574":5575,"5575":5576,"5576":5577,"5577":5578,"5578":5579,"5579":5580,"5580":5581,"5581":5582,"5582":5583,"5583":5584,"5584":5585,"5585":5586,"5586":5587,"5587":5588,"5588":5589,"5589":5590,"5590":5591,"5591":5592,"5592":5593,"5593":5594,"5594":5595,"5595":5596,"5596":5597,"5597":5598,"5598":5599,"5599":5600,"5600":5601,"5601":5602,"5602":5603,"5603":5604,"5604":5605,"5605":5606,"5606":5607,"5607":5608,"5608":5609,"5609":5610,"5610":5611,"5611":5612,"5612":5613,"5613":5614,"5614":5615,"5615":5616,"5616":5617,"5617":5618,"5618":5619,"5619":5620,"5620":5621,"5621":5622,"5622":5623,"5623":5624,"5624":5625,"5625":5626,"5626":5627,"5627":5628,"5628":5629,"5629":5630,"5630":5631,"5631":5632,"5632":5633,"5633":5634,"5634":5635,"5635":5636,"5636":5637,"5637":5638,"5638":5639,"5639":5640,"5640":5641,"5641":5642,"5642":5643,"5643":5644,"5644":5645,"5645":5646,"5646":5647,"5647":5648,"5648":5649,"5649":5650,"5650":5651,"5651":5652,"5652":5653,"5653":5654,"5654":5655,"5655":5656,"5656":5657,"5657":5658,"5658":5659,"5659":5660,"5660":5661,"5661":5662,"5662":5663,"5663":5664,"5664":5665,"5665":5666,"5666":5667,"5667":5668,"5668":5669,"5669":5670,"5670":5671,"5671":5672,"5672":5673,"5673":5674,"5674":5675,"5675":5676,"5676":5677,"5677":5678,"5678":5679,"5679":5680,"5680":5681,"5681":5682,"5682":5683,"5683":5684,"5684":5685,"5685":5686,"5686":5687,"5687":5688,"5688":5689,"5689":5690,"5690":5691,"5691":5692,"5692":5693,"5693":5694,"5694":5695,"5695":5696,"5696":5697,"5697":5698,"5698":5699,"5699":5700,"5700":5701,"5701":5702,"5702":5703,"5703":5704,"5704":5705,"5705":5706,"5706":5707,"5707":5708,"5708":5709,"5709":5710,"5710":5711,"5711":5712,"5712":5713,"5713":5714,"5714":5715,"5715":5716,"5716":5717,"5717":5718,"5718":5719,"5719":5720,"5720":5721,"5721":5722,"5722":5723,"5723":5724,"5724":5725,"5725":5726,"5726":5727,"5727":5728,"5728":5729,"5729":5730,"5730":5731,"5731":5732,"5732":5733,"5733":5734,"5734":5735,"5735":5736,"5736":5737,"5737":5738,"5738":5739,"5739":5740,"5740":5741,"5741":5742,"5742":5743,"5743":5744,"5744":5745,"5745":5746,"5746":5747,"5747":5748,"5748":5749,"5749":5750,"5750":5751,"5751":5752,"5752":5753,"5753":5754,"5754":5755,"5755":5756,"5756":5757,"5757":5758,"5758":5759,"5759":5760,"5760":5761,"5761":5762,"5762":5763,"5763":5764,"5764":5765,"5765":5766,"5766":5767,"5767":5768,"5768":5769,"5769":5770,"5770":5771,"5771":5772,"5772":5773,"5773":5774,"5774":5775,"5775":5776,"5776":5777,"5777":5778,"5778":5779,"5779":5780,"5780":5781,"5781":5782,"5782":5783,"5783":5784,"5784":5785,"5785":5786,"5786":5787,"5787":5788,"5788":5789,"5789":5790,"5790":5791,"5791":5792,"5792":5793,"5793":5794,"5794":5795,"5795":5796,"5796":5797,"5797":5798,"5798":5799,"5799":5800,"5800":5801,"5801":5802,"5802":5803,"5803":5804,"5804":5805,"5805":5806,"5806":5807,"5807":5808,"5808":5809,"5809":5810,"5810":5811,"5811":5812,"5812":5813,"5813":5814,"5814":5815,"5815":5816,"5816":5817,"5817":5818,"5818":5819,"5819":5820,"5820":5821,"5821":5822,"5822":5823,"5823":5824,"5824":5825,"5825":5826,"5826":5827,"5827":5828,"5828":5829,"5829":5830,"5830":5831,"5831":5832,"5832":5833,"5833":5834,"5834":5835,"5835":5836,"5836":5837,"5837":5838,"5838":5839,"5839":5840,"5840":5841,"5841":5842,"5842":5843,"5843":5844,"5844":5845,"5845":5846,"5846":5847,"5847":5848,"5848":5849,"5849":5850,"5850":5851,"5851":5852,"5852":5853,"5853":5854,"5854":5855,"5855":5856,"5856":5857,"5857":5858,"5858":5859,"5859":5860,"5860":5861,"5861":5862,"5862":5863,"5863":5864,"5864":5865,"5865":5866,"5866":5867,"5867":5868,"5868":5869,"5869":5870,"5870":5871,"5871":5872,"5872":5873,"5873":5874,"5874":5875,"5875":5876,"5876":5877,"5877":5878,"5878":5879,"5879":5880,"5880":5881,"5881":5882,"5882":5883,"5883":5884,"5884":5885,"5885":5886,"5886":5887,"5887":5888,"5888":5889,"5889":5890,"5890":5891,"5891":5892,"5892":5893,"5893":5894,"5894":5895,"5895":5896,"5896":5897,"5897":5898,"5898":5899,"5899":5900,"5900":5901,"5901":5902,"5902":5903,"5903":5904,"5904":5905,"5905":5906,"5906":5907,"5907":5908,"5908":5909,"5909":5910,"5910":5911,"5911":5912,"5912":5913,"5913":5914,"5914":5915,"5915":5916,"5916":5917,"5917":5918,"5918":5919,"5919":5920,"5920":5921,"5921":5922,"5922":5923,"5923":5924,"5924":5925,"5925":5926,"5926":5927,"5927":5928,"5928":5929,"5929":5930,"5930":5931,"5931":5932,"5932":5933,"5933":5934,"5934":5935,"5935":5936,"5936":5937,"5937":5938,"5938":5939,"5939":5940,"5940":5941,"5941":5942,"5942":5943,"5943":5944,"5944":5945,"5945":5946,"5946":5947,"5947":5948,"5948":5949,"5949":5950,"5950":5951,"5951":5952,"5952":5953,"5953":5954,"5954":5955,"5955":5956,"5956":5957,"5957":5958,"5958":5959,"5959":5960,"5960":5961,"5961":5962,"5962":5963,"5963":5964,"5964":5965,"5965":5966,"5966":5967,"5967":5968,"5968":5969,"5969":5970,"5970":5971,"5971":5972,"5972":5973,"5973":5974,"5974":5975,"5975":5976,"5976":5977,"5977":5978,"5978":5979,"5979":5980,"5980":5981,"5981":5982,"5982":5983,"5983":5984,"5984":5985,"5985":5986,"5986":5987,"5987":5988,"5988":5989,"5989":5990,"5990":5991,"5991":5992,"5992":5993,"5993":5994,"5994":5995,"5995":5996,"5996":5997,"5997":5998,"5998":5999,"5999":6000,"6000":6001,"6001":6002,"6002":6003,"6003":6004,"6004":6005,"6005":6006,"6006":6007,"6007":6008,"6008":6009,"6009":6010,"6010":6011,"6011":6012,"6012":6013,"6013":6014,"6014":6015,"6015":6016,"6016":6017,"6017":6018,"6018":6019,"6019":6020,"6020":6021,"6021":6022,"6022":6023,"6023":6024,"6024":6025,"6025":6026,"6026":6027,"6027":6028,"6028":6029,"6029":6030,"6030":6031,"6031":6032,"6032":6033,"6033":6034,"6034":6035,"6035":6036,"6036":6037,"6037":6038,"6038":6039,"6039":6040,"6040":6041,"6041":6042,"6042":6043,"6043":6044,"6044":6045,"6045":6046,"6046":6047,"6047":6048,"6048":6049,"6049":6050,"6050":6051,"6051":6052,"6052":6053,"6053":6054,"6054":6055,"6055":6056,"6056":6057,"6057":6058,"6058":6059,"6059":6060,"6060":6061,"6061":6062,"6062":6063,"6063":6064,"6064":6065,"6065":6066,"6066":6067,"6067":6068,"6068":6069,"6069":6070,"6070":6071,"6071":6072,"6072":6073,"6073":6074,"6074":6075,"6075":6076,"6076":6077,"6077":6078,"6078":6079,"6079":6080,"6080":6081,"6081":6082,"6082":6083,"6083":6084,"6084":6085,"6085":6086,"6086":6087,"6087":6088,"6088":6089,"6089":6090,"6090":6091,"6091":6092,"6092":6093,"6093":6094,"6094":6095,"6095":6096,"6096":6097,"6097":6098,"6098":6099,"6099":6100,"6100":6101,"6101":6102,"6102":6103,"6103":6104,"6104":6105,"6105":6106,"6106":6107,"6107":6108,"6108":6109,"6109":6110,"6110":6111,"6111":6112,"6112":6113,"6113":6114,"6114":6115,"6115":6116,"6116":6117,"6117":6118,"6118":6119,"6119":6120,"6120":6121,"6121":6122,"6122":6123,"6123":6124,"6124":6125,"6125":6126,"6126":6127,"6127":6128,"6128":6129,"6129":6130,"6130":6131,"6131":6132,"6132":6133,"6133":6134,"6134":6135,"6135":6136,"6136":6137,"6137":6138,"6138":6139,"6139":6140,"6140":6141,"6141":6142,"6142":6143,"6143":6144,"6144":6145,"6145":6146,"6146":6147,"6147":6148,"6148":6149,"6149":6150,"6150":6151,"6151":6152,"6152":6153,"6153":6154,"6154":6155,"6155":6156,"6156":6157,"6157":6158,"6158":6159,"6159":6160,"6160":6161,"6161":6162,"6162":6163,"6163":6164,"6164":6165,"6165":6166,"6166":6167,"6167":6168,"6168":6169,"6169":6170,"6170":6171,"6171":6172,"6172":6173,"6173":6174,"6174":6175,"6175":6176,"6176":6177,"6177":6178,"6178":6179,"6179":6180,"6180":6181,"6181":6182,"6182":6183,"6183":6184,"6184":6185,"6185":6186,"6186":6187,"6187":6188,"6188":6189,"6189":6190,"6190":6191,"6191":6192,"6192":6193,"6193":6194,"6194":6195,"6195":6196,"6196":6197,"6197":6198,"6198":6199,"6199":6200,"6200":6201,"6201":6202,"6202":6203,"6203":6204,"6204":6205,"6205":6206,"6206":6207,"6207":6208,"6208":6209,"6209":6210,"6210":6211,"6211":6212,"6212":6213,"6213":6214,"6214":6215,"6215":6216,"6216":6217,"6217":6218,"6218":6219,"6219":6220,"6220":6221,"6221":6222,"6222":6223,"6223":6224,"6224":6225,"6225":6226,"6226":6227,"6227":6228,"6228":6229,"6229":6230,"6230":6231,"6231":6232,"6232":6233,"6233":6234,"6234":6235,"6235":6236,"6236":6237,"6237":6238,"6238":6239,"6239":6240,"6240":6241,"6241":6242,"6242":6243,"6243":6244,"6244":6245,"6245":6246,"6246":6247,"6247":6248,"6248":6249,"6249":6250,"6250":6251,"6251":6252,"6252":6253,"6253":6254,"6254":6255,"6255":6256,"6256":6257,"6257":6258,"6258":6259,"6259":6260,"6260":6261,"6261":6262,"6262":6263,"6263":6264,"6264":6265,"6265":6266,"6266":6267,"6267":6268,"6268":6269,"6269":6270,"6270":6271,"6271":6272,"6272":6273,"6273":6274,"6274":6275,"6275":6276,"6276":6277,"6277":6278,"6278":6279,"6279":6280,"6280":6281,"6281":6282,"6282":6283,"6283":6284,"6284":6285,"6285":6286,"6286":6287,"6287":6288,"6288":6289,"6289":6290,"6290":6291,"6291":6292,"6292":6293,"6293":6294,"6294":6295,"6295":6296,"6296":6297,"6297":6298,"6298":6299,"6299":6300,"6300":6301,"6301":6302,"6302":6303,"6303":6304,"6304":6305,"6305":6306,"6306":6307,"6307":6308,"6308":6309,"6309":6310,"6310":6311,"6311":6312,"6312":6313,"6313":6314,"6314":6315,"6315":6316,"6316":6317,"6317":6318,"6318":6319,"6319":6320,"6320":6321,"6321":6322,"6322":6323,"6323":6324,"6324":6325,"6325":6326,"6326":6327,"6327":6328,"6328":6329,"6329":6330,"6330":6331,"6331":6332,"6332":6333,"6333":6334,"6334":6335,"6335":6336,"6336":6337,"6337":6338,"6338":6339,"6339":6340,"6340":6341,"6341":6342,"6342":6343,"6343":6344,"6344":6345,"6345":6346,"6346":6347,"6347":6348,"6348":6349,"6349":6350,"6350":6351,"6351":6352,"6352":6353,"6353":6354,"6354":6355,"6355":6356,"6356":6357,"6357":6358,"6358":6359,"6359":6360,"6360":6361,"6361":6362,"6362":6363,"6363":6364,"6364":6365,"6365":6366,"6366":6367,"6367":6368,"6368":6369,"6369":6370,"6370":6371,"6371":6372,"6372":6373,"6373":6374,"6374":6375,"6375":6376,"6376":6377,"6377":6378,"6378":6379,"6379":6380,"6380":6381,"6381":6382,"6382":6383,"6383":6384,"6384":6385,"6385":6386,"6386":6387,"6387":6388,"6388":6389,"6389":6390,"6390":6391,"6391":6392,"6392":6393,"6393":6394,"6394":6395,"6395":6396,"6396":6397,"6397":6398,"6398":6399,"6399":6400,"6400":6401,"6401":6402,"6402":6403,"6403":6404,"6404":6405,"6405":6406,"6406":6407,"6407":6408,"6408":6409,"6409":6410,"6410":6411,"6411":6412,"6412":6413,"6413":6414,"6414":6415,"6415":6416,"6416":6417,"6417":6418,"6418":6419,"6419":6420,"6420":6421,"6421":6422,"6422":6423,"6423":6424,"6424":6425,"6425":6426,"6426":6427,"6427":6428,"6428":6429,"6429":6430,"6430":6431,"6431":6432,"6432":6433,"6433":6434,"6434":6435,"6435":6436,"6436":6437,"6437":6438,"6438":6439,"6439":6440,"6440":6441,"6441":6442,"6442":6443,"6443":6444,"6444":6445,"6445":6446,"6446":6447,"6447":6448,"6448":6449,"6449":6450,"6450":6451,"6451":6452,"6452":6453,"6453":6454,"6454":6455,"6455":6456,"6456":6457,"6457":6458,"6458":6459,"6459":6460,"6460":6461,"6461":6462,"6462":6463,"6463":6464,"6464":6465,"6465":6466,"6466":6467,"6467":6468,"6468":6469,"6469":6470,"6470":6471,"6471":6472,"6472":6473,"6473":6474,"6474":6475,"6475":6476,"6476":6477,"6477":6478,"6478":6479,"6479":6480,"6480":6481,"6481":6482,"6482":6483,"6483":6484,"6484":6485,"6485":6486,"6486":6487,"6487":6488,"6488":6489,"6489":6490,"6490":6491,"6491":6492,"6492":6493,"6493":6494,"6494":6495,"6495":6496,"6496":6497,"6497":6498,"6498":6499,"6499":6500,"6500":6501,"6501":6502,"6502":6503,"6503":6504,"6504":6505,"6505":6506,"6506":6507,"6507":6508,"6508":6509,"6509":6510,"6510":6511,"6511":6512,"6512":6513,"6513":6514,"6514":6515,"6515":6516,"6516":6517,"6517":6518,"6518":6519,"6519":6520,"6520":6521,"6521":6522,"6522":6523,"6523":6524,"6524":6525,"6525":6526,"6526":6527,"6527":6528,"6528":6529,"6529":6530,"6530":6531,"6531":6532,"6532":6533,"6533":6534,"6534":6535,"6535":6536,"6536":6537,"6537":6538,"6538":6539,"6539":6540,"6540":6541,"6541":6542,"6542":6543,"6543":6544,"6544":6545,"6545":6546,"6546":6547,"6547":6548,"6548":6549,"6549":6550,"6550":6551,"6551":6552,"6552":6553,"6553":6554,"6554":6555,"6555":6556,"6556":6557,"6557":6558,"6558":6559,"6559":6560,"6560":6561,"6561":6562,"6562":6563,"6563":6564,"6564":6565,"6565":6566,"6566":6567,"6567":6568,"6568":6569,"6569":6570,"6570":6571,"6571":6572,"6572":6573,"6573":6574,"6574":6575,"6575":6576,"6576":6577,"6577":6578,"6578":6579,"6579":6580,"6580":6581,"6581":6582,"6582":6583,"6583":6584,"6584":6585,"6585":6586,"6586":6587,"6587":6588,"6588":6589,"6589":6590,"6590":6591,"6591":6592,"6592":6593,"6593":6594,"6594":6595,"6595":6596,"6596":6597,"6597":6598,"6598":6599,"6599":6600,"6600":6601,"6601":6602,"6602":6603,"6603":6604,"6604":6605,"6605":6606,"6606":6607,"6607":6608,"6608":6609,"6609":6610,"6610":6611,"6611":6612,"6612":6613,"6613":6614,"6614":6615,"6615":6616,"6616":6617,"6617":6618,"6618":6619,"6619":6620,"6620":6621,"6621":6622,"6622":6623,"6623":6624,"6624":6625,"6625":6626,"6626":6627,"6627":6628,"6628":6629,"6629":6630,"6630":6631,"6631":6632,"6632":6633,"6633":6634,"6634":6635,"6635":6636,"6636":6637,"6637":6638,"6638":6639,"6639":6640,"6640":6641,"6641":6642,"6642":6643,"6643":6644,"6644":6645,"6645":6646,"6646":6647,"6647":6648,"6648":6649,"6649":6650,"6650":6651,"6651":6652,"6652":6653,"6653":6654,"6654":6655,"6655":6656,"6656":6657,"6657":6658,"6658":6659,"6659":6660,"6660":6661,"6661":6662,"6662":6663,"6663":6664,"6664":6665,"6665":6666,"6666":6667,"6667":6668,"6668":6669,"6669":6670,"6670":6671,"6671":6672,"6672":6673,"6673":6674,"6674":6675,"6675":6676,"6676":6677,"6677":6678,"6678":6679,"6679":6680,"6680":6681,"6681":6682,"6682":6683,"6683":6684,"6684":6685,"6685":6686,"6686":6687,"6687":6688,"6688":6689,"6689":6690,"6690":6691,"6691":6692,"6692":6693,"6693":6694,"6694":6695,"6695":6696,"6696":6697,"6697":6698,"6698":6699,"6699":6700,"6700":6701,"6701":6702,"6702":6703,"6703":6704,"6704":6705,"6705":6706,"6706":6707,"6707":6708,"6708":6709,"6709":6710,"6710":6711,"6711":6712,"6712":6713,"6713":6714,"6714":6715,"6715":6716,"6716":6717,"6717":6718,"6718":6719,"6719":6720,"6720":6721,"6721":6722,"6722":6723,"6723":6724,"6724":6725,"6725":6726,"6726":6727,"6727":6728,"6728":6729,"6729":6730,"6730":6731,"6731":6732,"6732":6733,"6733":6734,"6734":6735,"6735":6736,"6736":6737,"6737":6738,"6738":6739,"6739":6740,"6740":6741,"6741":6742,"6742":6743,"6743":6744,"6744":6745,"6745":6746,"6746":6747,"6747":6748,"6748":6749,"6749":6750,"6750":6751,"6751":6752,"6752":6753,"6753":6754,"6754":6755,"6755":6756,"6756":6757,"6757":6758,"6758":6759,"6759":6760,"6760":6761,"6761":6762,"6762":6763,"6763":6764,"6764":6765,"6765":6766,"6766":6767,"6767":6768,"6768":6769,"6769":6770,"6770":6771,"6771":6772,"6772":6773,"6773":6774,"6774":6775,"6775":6776,"6776":6777,"6777":6778,"6778":6779,"6779":6780,"6780":6781,"6781":6782,"6782":6783,"6783":6784,"6784":6785,"6785":6786,"6786":6787,"6787":6788,"6788":6789,"6789":6790,"6790":6791,"6791":6792,"6792":6793,"6793":6794,"6794":6795,"6795":6796,"6796":6797,"6797":6798,"6798":6799,"6799":6800,"6800":6801,"6801":6802,"6802":6803,"6803":6804,"6804":6805,"6805":6806,"6806":6807,"6807":6808,"6808":6809,"6809":6810,"6810":6811,"6811":6812,"6812":6813,"6813":6814,"6814":6815,"6815":6816,"6816":6817,"6817":6818,"6818":6819,"6819":6820,"6820":6821,"6821":6822,"6822":6823,"6823":6824,"6824":6825,"6825":6826,"6826":6827,"6827":6828,"6828":6829,"6829":6830,"6830":6831,"6831":6832,"6832":6833,"6833":6834,"6834":6835,"6835":6836,"6836":6837,"6837":6838,"6838":6839,"6839":6840,"6840":6841,"6841":6842,"6842":6843,"6843":6844,"6844":6845,"6845":6846,"6846":6847,"6847":6848,"6848":6849,"6849":6850,"6850":6851,"6851":6852,"6852":6853,"6853":6854,"6854":6855,"6855":6856,"6856":6857,"6857":6858,"6858":6859,"6859":6860,"6860":6861,"6861":6862,"6862":6863,"6863":6864,"6864":6865,"6865":6866,"6866":6867,"6867":6868,"6868":6869,"6869":6870,"6870":6871,"6871":6872,"6872":6873,"6873":6874,"6874":6875,"6875":6876,"6876":6877,"6877":6878,"6878":6879,"6879":6880,"6880":6881,"6881":6882,"6882":6883,"6883":6884,"6884":6885,"6885":6886,"6886":6887,"6887":6888,"6888":6889,"6889":6890,"6890":6891,"6891":6892,"6892":6893,"6893":6894,"6894":6895,"6895":6896,"6896":6897,"6897":6898,"6898":6899,"6899":6900,"6900":6901,"6901":6902,"6902":6903,"6903":6904,"6904":6905,"6905":6906,"6906":6907,"6907":6908,"6908":6909,"6909":6910,"6910":6911,"6911":6912,"6912":6913,"6913":6914,"6914":6915,"6915":6916,"6916":6917,"6917":6918,"6918":6919,"6919":6920,"6920":6921,"6921":6922,"6922":6923,"6923":6924,"6924":6925,"6925":6926,"6926":6927,"6927":6928,"6928":6929,"6929":6930,"6930":6931,"6931":6932,"6932":6933,"6933":6934,"6934":6935,"6935":6936,"6936":6937,"6937":6938,"6938":6939,"6939":6940,"6940":6941,"6941":6942,"6942":6943,"6943":6944,"6944":6945,"6945":6946,"6946":6947,"6947":6948,"6948":6949,"6949":6950,"6950":6951,"6951":6952,"6952":6953,"6953":6954,"6954":6955,"6955":6956,"6956":6957,"6957":6958,"6958":6959,"6959":6960,"6960":6961,"6961":6962,"6962":6963,"6963":6964,"6964":6965,"6965":6966,"6966":6967,"6967":6968,"6968":6969,"6969":6970,"6970":6971,"6971":6972,"6972":6973,"6973":6974,"6974":6975,"6975":6976,"6976":6977,"6977":6978,"6978":6979,"6979":6980,"6980":6981,"6981":6982,"6982":6983,"6983":6984,"6984":6985,"6985":6986,"6986":6987,"6987":6988,"6988":6989,"6989":6990,"6990":6991,"6991":6992,"6992":6993,"6993":6994,"6994":6995,"6995":6996,"6996":6997,"6997":6998,"6998":6999,"6999":7000,"7000":7001,"7001":7002,"7002":7003,"7003":7004,"7004":7005,"7005":7006,"7006":7007,"7007":7008,"7008":7009,"7009":7010,"7010":7011,"7011":7012,"7012":7013,"7013":7014,"7014":7015,"7015":7016,"7016":7017,"7017":7018,"7018":7019,"7019":7020,"7020":7021,"7021":7022,"7022":7023,"7023":7024,"7024":7025,"7025":7026,"7026":7027,"7027":7028,"7028":7029,"7029":7030,"7030":7031,"7031":7032,"7032":7033,"7033":7034,"7034":7035,"7035":7036,"7036":7037,"7037":7038,"7038":7039,"7039":7040,"7040":7041,"7041":7042,"7042":7043,"7043":7044,"7044":7045,"7045":7046,"7046":7047,"7047":7048,"7048":7049,"7049":7050,"7050":7051,"7051":7052,"7052":7053,"7053":7054,"7054":7055,"7055":7056,"7056":7057,"7057":7058,"7058":7059,"7059":7060,"7060":7061,"7061":7062,"7062":7063,"7063":7064,"7064":7065,"7065":7066,"7066":7067,"7067":7068,"7068":7069,"7069":7070,"7070":7071,"7071":7072,"7072":7073,"7073":7074,"7074":7075,"7075":7076,"7076":7077,"7077":7078,"7078":7079,"7079":7080,"7080":7081,"7081":7082,"7082":7083,"7083":7084,"7084":7085,"7085":7086,"7086":7087,"7087":7088,"7088":7089,"7089":7090,"7090":7091,"7091":7092,"7092":7093,"7093":7094,"7094":7095,"7095":7096,"7096":7097,"7097":7098,"7098":7099,"7099":7100,"7100":7101,"7101":7102,"7102":7103,"7103":7104,"7104":7105,"7105":7106,"7106":7107,"7107":7108,"7108":7109,"7109":7110,"7110":7111,"7111":7112,"7112":7113,"7113":7114,"7114":7115,"7115":7116,"7116":7117,"7117":7118,"7118":7119,"7119":7120,"7120":7121,"7121":7122,"7122":7123,"7123":7124,"7124":7125,"7125":7126,"7126":7127,"7127":7128,"7128":7129,"7129":7130,"7130":7131,"7131":7132,"7132":7133,"7133":7134,"7134":7135,"7135":7136,"7136":7137,"7137":7138,"7138":7139,"7139":7140,"7140":7141,"7141":7142,"7142":7143,"7143":7144,"7144":7145,"7145":7146,"7146":7147,"7147":7148,"7148":7149,"7149":7150,"7150":7151,"7151":7152,"7152":7153,"7153":7154,"7154":7155,"7155":7156,"7156":7157,"7157":7158,"7158":7159,"7159":7160,"7160":7161,"7161":7162,"7162":7163,"7163":7164,"7164":7165,"7165":7166,"7166":7167,"7167":7168,"7168":7169,"7169":7170,"7170":7171,"7171":7172,"7172":7173,"7173":7174,"7174":7175,"7175":7176,"7176":7177,"7177":7178,"7178":7179,"7179":7180,"7180":7181,"7181":7182,"7182":7183,"7183":7184,"7184":7185,"7185":7186,"7186":7187,"7187":7188,"7188":7189,"7189":7190,"7190":7191,"7191":7192,"7192":7193,"7193":7194,"7194":7195,"7195":7196,"7196":7197,"7197":7198,"7198":7199,"7199":7200,"7200":7201,"7201":7202,"7202":7203,"7203":7204,"7204":7205,"7205":7206,"7206":7207,"7207":7208,"7208":7209,"7209":7210,"7210":7211,"7211":7212,"7212":7213,"7213":7214,"7214":7215,"7215":7216,"7216":7217,"7217":7218,"7218":7219,"7219":7220,"7220":7221,"7221":7222,"7222":7223,"7223":7224,"7224":7225,"7225":7226,"7226":7227,"7227":7228,"7228":7229,"7229":7230,"7230":7231,"7231":7232,"7232":7233,"7233":7234,"7234":7235,"7235":7236,"7236":7237,"7237":7238,"7238":7239,"7239":7240,"7240":7241,"7241":7242,"7242":7243,"7243":7244,"7244":7245,"7245":7246,"7246":7247,"7247":7248,"7248":7249,"7249":7250,"7250":7251,"7251":7252,"7252":7253,"7253":7254,"7254":7255,"7255":7256,"7256":7257,"7257":7258,"7258":7259,"7259":7260,"7260":7261,"7261":7262,"7262":7263,"7263":7264,"7264":7265,"7265":7266,"7266":7267,"7267":7268,"7268":7269,"7269":7270,"7270":7271,"7271":7272,"7272":7273,"7273":7274,"7274":7275,"7275":7276,"7276":7277,"7277":7278,"7278":7279,"7279":7280,"7280":7281,"7281":7282,"7282":7283,"7283":7284,"7284":7285,"7285":7286,"7286":7287,"7287":7288,"7288":7289,"7289":7290,"7290":7291,"7291":7292,"7292":7293,"7293":7294,"7294":7295,"7295":7296,"7296":7297,"7297":7298,"7298":7299,"7299":7300,"7300":7301,"7301":7302,"7302":7303,"7303":7304,"7304":7305,"7305":7306,"7306":7307,"7307":7308,"7308":7309,"7309":7310,"7310":7311,"7311":7312,"7312":7313,"7313":7314,"7314":7315,"7315":7316,"7316":7317,"7317":7318,"7318":7319,"7319":7320,"7320":7321,"7321":7322,"7322":7323,"7323":7324,"7324":7325,"7325":7326,"7326":7327,"7327":7328,"7328":7329,"7329":7330,"7330":7331,"7331":7332,"7332":7333,"7333":7334,"7334":7335,"7335":7336,"7336":7337,"7337":7338,"7338":7339,"7339":7340,"7340":7341,"7341":7342,"7342":7343,"7343":7344,"7344":7345,"7345":7346,"7346":7347,"7347":7348,"7348":7349,"7349":7350,"7350":7351,"7351":7352,"7352":7353,"7353":7354,"7354":7355,"7355":7356,"7356":7357,"7357":7358,"7358":7359,"7359":7360,"7360":7361,"7361":7362,"7362":7363,"7363":7364,"7364":7365,"7365":7366,"7366":7367,"7367":7368,"7368":7369,"7369":7370,"7370":7371,"7371":7372,"7372":7373,"7373":7374,"7374":7375,"7375":7376,"7376":7377,"7377":7378,"7378":7379,"7379":7380,"7380":7381,"7381":7382,"7382":7383,"7383":7384,"7384":7385,"7385":7386,"7386":7387,"7387":7388,"7388":7389,"7389":7390,"7390":7391,"7391":7392,"7392":7393,"7393":7394,"7394":7395,"7395":7396,"7396":7397,"7397":7398,"7398":7399,"7399":7400,"7400":7401,"7401":7402,"7402":7403,"7403":7404,"7404":7405,"7405":7406,"7406":7407,"7407":7408,"7408":7409,"7409":7410,"7410":7411,"7411":7412,"7412":7413,"7413":7414,"7414":7415,"7415":7416,"7416":7417,"7417":7418,"7418":7419,"7419":7420,"7420":7421,"7421":7422,"7422":7423,"7423":7424,"7424":7425,"7425":7426,"7426":7427,"7427":7428,"7428":7429,"7429":7430,"7430":7431,"7431":7432,"7432":7433,"7433":7434,"7434":7435,"7435":7436,"7436":7437,"7437":7438,"7438":7439,"7439":7440,"7440":7441,"7441":7442,"7442":7443,"7443":7444,"7444":7445,"7445":7446,"7446":7447,"7447":7448,"7448":7449,"7449":7450,"7450":7451,"7451":7452,"7452":7453,"7453":7454,"7454":7455,"7455":7456,"7456":7457,"7457":7458,"7458":7459,"7459":7460,"7460":7461,"7461":7462,"7462":7463,"7463":7464,"7464":7465,"7465":7466,"7466":7467,"7467":7468,"7468":7469,"7469":7470,"7470":7471,"7471":7472,"7472":7473,"7473":7474,"7474":7475,"7475":7476,"7476":7477,"7477":7478,"7478":7479,"7479":7480,"7480":7481,"7481":7482,"7482":7483,"7483":7484,"7484":7485,"7485":7486,"7486":7487,"7487":7488,"7488":7489,"7489":7490,"7490":7491,"7491":7492,"7492":7493,"7493":7494,"7494":7495,"7495":7496,"7496":7497,"7497":7498,"7498":7499,"7499":7500,"7500":7501,"7501":7502,"7502":7503,"7503":7504,"7504":7505,"7505":7506,"7506":7507,"7507":7508,"7508":7509,"7509":7510,"7510":7511,"7511":7512,"7512":7513,"7513":7514,"7514":7515,"7515":7516,"7516":7517,"7517":7518,"7518":7519,"7519":7520,"7520":7521,"7521":7522,"7522":7523,"7523":7524,"7524":7525,"7525":7526,"7526":7527,"7527":7528,"7528":7529,"7529":7530,"7530":7531,"7531":7532,"7532":7533,"7533":7534,"7534":7535,"7535":7536,"7536":7537,"7537":7538,"7538":7539,"7539":7540,"7540":7541,"7541":7542,"7542":7543,"7543":7544,"7544":7545,"7545":7546,"7546":7547,"7547":7548,"7548":7549,"7549":7550,"7550":7551,"7551":7552,"7552":7553,"7553":7554,"7554":7555,"7555":7556,"7556":7557,"7557":7558,"7558":7559,"7559":7560,"7560":7561,"7561":7562,"7562":7563,"7563":7564,"7564":7565,"7565":7566,"7566":7567,"7567":7568,"7568":7569,"7569":7570,"7570":7571,"7571":7572,"7572":7573,"7573":7574,"7574":7575,"7575":7576,"7576":7577,"7577":7578,"7578":7579,"7579":7580,"7580":7581,"7581":7582,"7582":7583,"7583":7584,"7584":7585,"7585":7586,"7586":7587,"7587":7588,"7588":7589,"7589":7590,"7590":7591,"7591":7592,"7592":7593,"7593":7594,"7594":7595,"7595":7596,"7596":7597,"7597":7598,"7598":7599,"7599":7600,"7600":7601,"7601":7602,"7602":7603,"7603":7604,"7604":7605,"7605":7606,"7606":7607,"7607":7608,"7608":7609,"7609":7610,"7610":7611,"7611":7612,"7612":7613,"7613":7614,"7614":7615,"7615":7616,"7616":7617,"7617":7618,"7618":7619,"7619":7620,"7620":7621,"7621":7622,"7622":7623,"7623":7624,"7624":7625,"7625":7626,"7626":7627,"7627":7628,"7628":7629,"7629":7630,"7630":7631,"7631":7632,"7632":7633,"7633":7634,"7634":7635,"7635":7636,"7636":7637,"7637":7638,"7638":7639,"7639":7640,"7640":7641,"7641":7642,"7642":7643,"7643":7644,"7644":7645,"7645":7646,"7646":7647,"7647":7648,"7648":7649,"7649":7650,"7650":7651,"7651":7652,"7652":7653,"7653":7654,"7654":7655,"7655":7656,"7656":7657,"7657":7658,"7658":7659,"7659":7660,"7660":7661,"7661":7662,"7662":7663,"7663":7664,"7664":7665,"7665":7666,"7666":7667,"7667":7668,"7668":7669,"7669":7670,"7670":7671,"7671":7672,"7672":7673,"7673":7674,"7674":7675,"7675":7676,"7676":7677,"7677":7678,"7678":7679,"7679":7680,"7680":7681,"7681":7682,"7682":7683,"7683":7684,"7684":7685,"7685":7686,"7686":7687,"7687":7688,"7688":7689,"7689":7690,"7690":7691,"7691":7692,"7692":7693,"7693":7694,"7694":7695,"7695":7696,"7696":7697,"7697":7698,"7698":7699,"7699":7700,"7700":7701,"7701":7702,"7702":7703,"7703":7704,"7704":7705,"7705":7706,"7706":7707,"7707":7708,"7708":7709,"7709":7710,"7710":7711,"7711":7712,"7712":7713,"7713":7714,"7714":7715,"7715":7716,"7716":7717,"7717":7718,"7718":7719,"7719":7720,"7720":7721,"7721":7722,"7722":7723,"7723":7724,"7724":7725,"7725":7726,"7726":7727,"7727":7728,"7728":7729,"7729":7730,"7730":7731,"7731":7732,"7732":7733,"7733":7734,"7734":7735,"7735":7736,"7736":7737,"7737":7738,"7738":7739,"7739":7740,"7740":7741,"7741":7742,"7742":7743,"7743":7744,"7744":7745,"7745":7746,"7746":7747,"7747":7748,"7748":7749,"7749":7750,"7750":7751,"7751":7752,"7752":7753,"7753":7754,"7754":7755,"7755":7756,"7756":7757,"7757":7758,"7758":7759,"7759":7760,"7760":7761,"7761":7762,"7762":7763,"7763":7764,"7764":7765,"7765":7766,"7766":7767,"7767":7768,"7768":7769,"7769":7770,"7770":7771,"7771":7772,"7772":7773,"7773":7774,"7774":7775,"7775":7776,"7776":7777,"7777":7778,"7778":7779,"7779":7780,"7780":7781,"7781":7782,"7782":7783,"7783":7784,"7784":7785,"7785":7786,"7786":7787,"7787":7788,"7788":7789,"7789":7790,"7790":7791,"7791":7792,"7792":7793,"7793":7794,"7794":7795,"7795":7796,"7796":7797,"7797":7798,"7798":7799,"7799":7800,"7800":7801,"7801":7802,"7802":7803,"7803":7804,"7804":7805,"7805":7806,"7806":7807,"7807":7808,"7808":7809,"7809":7810,"7810":7811,"7811":7812,"7812":7813,"7813":7814,"7814":7815,"7815":7816,"7816":7817,"7817":7818,"7818":7819,"7819":7820,"7820":7821,"7821":7822,"7822":7823,"7823":7824,"7824":7825,"7825":7826,"7826":7827,"7827":7828,"7828":7829,"7829":7830,"7830":7831,"7831":7832,"7832":7833,"7833":7834,"7834":7835,"7835":7836,"7836":7837,"7837":7838,"7838":7839,"7839":7840,"7840":7841,"7841":7842,"7842":7843,"7843":7844,"7844":7845,"7845":7846,"7846":7847,"7847":7848,"7848":7849,"7849":7850,"7850":7851,"7851":7852,"7852":7853,"7853":7854,"7854":7855,"7855":7856,"7856":7857,"7857":7858,"7858":7859,"7859":7860,"7860":7861,"7861":7862,"7862":7863,"7863":7864,"7864":7865,"7865":7866,"7866":7867,"7867":7868,"7868":7869,"7869":7870,"7870":7871,"7871":7872,"7872":7873,"7873":7874,"7874":7875,"7875":7876,"7876":7877,"7877":7878,"7878":7879,"7879":7880,"7880":7881,"7881":7882,"7882":7883,"7883":7884,"7884":7885,"7885":7886,"7886":7887,"7887":7888,"7888":7889,"7889":7890,"7890":7891,"7891":7892,"7892":7893,"7893":7894,"7894":7895,"7895":7896,"7896":7897,"7897":7898,"7898":7899,"7899":7900,"7900":7901,"7901":7902,"7902":7903,"7903":7904,"7904":7905,"7905":7906,"7906":7907,"7907":7908,"7908":7909,"7909":7910,"7910":7911,"7911":7912,"7912":7913,"7913":7914,"7914":7915,"7915":7916,"7916":7917,"7917":7918,"7918":7919,"7919":7920,"7920":7921,"7921":7922,"7922":7923,"7923":7924,"7924":7925,"7925":7926,"7926":7927,"7927":7928,"7928":7929,"7929":7930,"7930":7931,"7931":7932,"7932":7933,"7933":7934,"7934":7935,"7935":7936,"7936":7937,"7937":7938,"7938":7939,"7939":7940,"7940":7941,"7941":7942,"7942":7943,"7943":7944,"7944":7945,"7945":7946,"7946":7947,"7947":7948,"7948":7949,"7949":7950,"7950":7951,"7951":7952,"7952":7953,"7953":7954,"7954":7955,"7955":7956,"7956":7957,"7957":7958,"7958":7959,"7959":7960,"7960":7961,"7961":7962,"7962":7963,"7963":7964,"7964":7965,"7965":7966,"7966":7967,"7967":7968,"7968":7969,"7969":7970,"7970":7971,"7971":7972,"7972":7973,"7973":7974,"7974":7975,"7975":7976,"7976":7977,"7977":7978,"7978":7979,"7979":7980,"7980":7981,"7981":7982,"7982":7983,"7983":7984,"7984":7985,"7985":7986,"7986":7987,"7987":7988,"7988":7989,"7989":7990,"7990":7991,"7991":7992,"7992":7993,"7993":7994,"7994":7995,"7995":7996,"7996":7997,"7997":7998,"7998":7999,"7999":8000,"8000":8001,"8001":8002,"8002":8003,"8003":8004,"8004":8005,"8005":8006,"8006":8007,"8007":8008,"8008":8009,"8009":8010,"8010":8011,"8011":8012,"8012":8013,"8013":8014,"8014":8015,"8015":8016,"8016":8017,"8017":8018,"8018":8019,"8019":8020,"8020":8021,"8021":8022,"8022":8023,"8023":8024,"8024":8025,"8025":8026,"8026":8027,"8027":8028,"8028":8029,"8029":8030,"8030":8031,"8031":8032,"8032":8033,"8033":8034,"8034":8035,"8035":8036,"8036":8037,"8037":8038,"8038":8039,"8039":8040,"8040":8041,"8041":8042,"8042":8043,"8043":8044,"8044":8045,"8045":8046,"8046":8047,"8047":8048,"8048":8049,"8049":8050,"8050":8051,"8051":8052,"8052":8053,"8053":8054,"8054":8055,"8055":8056,"8056":8057,"8057":8058,"8058":8059,"8059":8060,"8060":8061,"8061":8062,"8062":8063,"8063":8064,"8064":8065,"8065":8066,"8066":8067,"8067":8068,"8068":8069,"8069":8070,"8070":8071,"8071":8072,"8072":8073,"8073":8074,"8074":8075,"8075":8076,"8076":8077,"8077":8078,"8078":8079,"8079":8080,"8080":8081,"8081":8082,"8082":8083,"8083":8084,"8084":8085,"8085":8086,"8086":8087,"8087":8088,"8088":8089,"8089":8090,"8090":8091,"8091":8092,"8092":8093,"8093":8094,"8094":8095,"8095":8096,"8096":8097,"8097":8098,"8098":8099,"8099":8100,"8100":8101,"8101":8102,"8102":8103,"8103":8104,"8104":8105,"8105":8106,"8106":8107,"8107":8108,"8108":8109,"8109":8110,"8110":8111,"8111":8112,"8112":8113,"8113":8114,"8114":8115,"8115":8116,"8116":8117,"8117":8118,"8118":8119,"8119":8120,"8120":8121,"8121":8122,"8122":8123,"8123":8124,"8124":8125,"8125":8126,"8126":8127,"8127":8128,"8128":8129,"8129":8130,"8130":8131,"8131":8132,"8132":8133,"8133":8134,"8134":8135,"8135":8136,"8136":8137,"8137":8138,"8138":8139,"8139":8140,"8140":8141,"8141":8142,"8142":8143,"8143":8144,"8144":8145,"8145":8146,"8146":8147,"8147":8148,"8148":8149,"8149":8150,"8150":8151,"8151":8152,"8152":8153,"8153":8154,"8154":8155,"8155":8156,"8156":8157,"8157":8158,"8158":8159,"8159":8160,"8160":8161,"8161":8162,"8162":8163,"8163":8164,"8164":8165,"8165":8166,"8166":8167,"8167":8168,"8168":8169,"8169":8170,"8170":8171,"8171":8172,"8172":8173,"8173":8174,"8174":8175,"8175":8176,"8176":8177,"8177":8178,"8178":8179,"8179":8180,"8180":8181,"8181":8182,"8182":8183,"8183":8184,"8184":8185,"8185":8186,"8186":8187,"8187":8188,"8188":8189,"8189":8190,"8190":8191,"8191":8192,"8192":8193,"8193":8194,"8194":8195,"8195":8196,"8196":8197,"8197":8198,"8198":8199,"8199":8200,"8200":8201,"8201":8202,"8202":8203,"8203":8204,"8204":8205,"8205":8206,"8206":8207,"8207":8208,"8208":8209,"8209":8210,"8210":8211,"8211":8212,"8212":8213,"8213":8214,"8214":8215,"8215":8216,"8216":8217,"8217":8218,"8218":8219,"8219":8220,"8220":8221,"8221":8222,"8222":8223,"8223":8224,"8224":8225,"8225":8226,"8226":8227,"8227":8228,"8228":8229,"8229":8230,"8230":8231,"8231":8232,"8232":8233,"8233":8234,"8234":8235,"8235":8236,"8236":8237,"8237":8238,"8238":8239,"8239":8240,"8240":8241,"8241":8242,"8242":8243,"8243":8244,"8244":8245,"8245":8246,"8246":8247,"8247":8248,"8248":8249,"8249":8250,"8250":8251,"8251":8252,"8252":8253,"8253":8254,"8254":8255,"8255":8256,"8256":8257,"8257":8258,"8258":8259,"8259":8260,"8260":8261,"8261":8262,"8262":8263,"8263":8264,"8264":8265,"8265":8266,"8266":8267,"8267":8268,"8268":8269,"8269":8270,"8270":8271,"8271":8272,"8272":8273,"8273":8274,"8274":8275,"8275":8276,"8276":8277,"8277":8278,"8278":8279,"8279":8280,"8280":8281,"8281":8282,"8282":8283,"8283":8284,"8284":8285,"8285":8286,"8286":8287,"8287":8288,"8288":8289,"8289":8290,"8290":8291,"8291":8292,"8292":8293,"8293":8294,"8294":8295,"8295":8296,"8296":8297,"8297":8298,"8298":8299,"8299":8300,"8300":8301,"8301":8302,"8302":8303,"8303":8304,"8304":8305,"8305":8306,"8306":8307,"8307":8308,"8308":8309,"8309":8310,"8310":8311,"8311":8312,"8312":8313,"8313":8314,"8314":8315,"8315":8316,"8316":8317,"8317":8318,"8318":8319,"8319":8320,"8320":8321,"8321":8322,"8322":8323,"8323":8324,"8324":8325,"8325":8326,"8326":8327,"8327":8328,"8328":8329,"8329":8330,"8330":8331,"8331":8332,"8332":8333,"8333":8334,"8334":8335,"8335":8336,"8336":8337,"8337":8338,"8338":8339,"8339":8340,"8340":8341,"8341":8342,"8342":8343,"8343":8344,"8344":8345,"8345":8346,"8346":8347,"8347":8348,"8348":8349,"8349":8350,"8350":8351,"8351":8352,"8352":8353,"8353":8354,"8354":8355,"8355":8356,"8356":8357,"8357":8358,"8358":8359,"8359":8360,"8360":8361,"8361":8362,"8362":8363,"8363":8364,"8364":8365,"8365":8366,"8366":8367,"8367":8368,"8368":8369,"8369":8370,"8370":8371,"8371":8372,"8372":8373,"8373":8374,"8374":8375,"8375":8376,"8376":8377,"8377":8378,"8378":8379,"8379":8380,"8380":8381,"8381":8382,"8382":8383,"8383":8384,"8384":8385,"8385":8386,"8386":8387,"8387":8388,"8388":8389,"8389":8390,"8390":8391,"8391":8392,"8392":8393,"8393":8394,"8394":8395,"8395":8396,"8396":8397,"8397":8398,"8398":8399,"8399":8400,"8400":8401,"8401":8402,"8402":8403,"8403":8404,"8404":8405,"8405":8406,"8406":8407,"8407":8408,"8408":8409,"8409":8410,"8410":8411,"8411":8412,"8412":8413,"8413":8414,"8414":8415,"8415":8416,"8416":8417,"8417":8418,"8418":8419,"8419":8420,"8420":8421,"8421":8422,"8422":8423,"8423":8424,"8424":8425,"8425":8426,"8426":8427,"8427":8428,"8428":8429,"8429":8430,"8430":8431,"8431":8432,"8432":8433,"8433":8434,"8434":8435,"8435":8436,"8436":8437,"8437":8438,"8438":8439,"8439":8440,"8440":8441,"8441":8442,"8442":8443,"8443":8444,"8444":8445,"8445":8446,"8446":8447,"8447":8448,"8448":8449,"8449":8450,"8450":8451,"8451":8452,"8452":8453,"8453":8454,"8454":8455,"8455":8456,"8456":8457,"8457":8458,"8458":8459,"8459":8460,"8460":8461,"8461":8462,"8462":8463,"8463":8464,"8464":8465,"8465":8466,"8466":8467,"8467":8468,"8468":8469,"8469":8470,"8470":8471,"8471":8472,"8472":8473,"8473":8474,"8474":8475,"8475":8476,"8476":8477,"8477":8478,"8478":8479,"8479":8480,"8480":8481,"8481":8482,"8482":8483,"8483":8484,"8484":8485,"8485":8486,"8486":8487,"8487":8488,"8488":8489,"8489":8490,"8490":8491,"8491":8492,"8492":8493,"8493":8494,"8494":8495,"8495":8496,"8496":8497,"8497":8498,"8498":8499,"8499":8500,"8500":8501,"8501":8502,"8502":8503,"8503":8504,"8504":8505,"8505":8506,"8506":8507,"8507":8508,"8508":8509,"8509":8510,"8510":8511,"8511":8512,"8512":8513,"8513":8514,"8514":8515,"8515":8516,"8516":8517,"8517":8518,"8518":8519,"8519":8520,"8520":8521,"8521":8522,"8522":8523,"8523":8524,"8524":8525,"8525":8526,"8526":8527,"8527":8528,"8528":8529,"8529":8530,"8530":8531,"8531":8532,"8532":8533,"8533":8534,"8534":8535,"8535":8536,"8536":8537,"8537":8538,"8538":8539,"8539":8540,"8540":8541,"8541":8542,"8542":8543,"8543":8544,"8544":8545,"8545":8546,"8546":8547,"8547":8548,"8548":8549,"8549":8550,"8550":8551,"8551":8552,"8552":8553,"8553":8554,"8554":8555,"8555":8556,"8556":8557,"8557":8558,"8558":8559,"8559":8560,"8560":8561,"8561":8562,"8562":8563,"8563":8564,"8564":8565,"8565":8566,"8566":8567,"8567":8568,"8568":8569,"8569":8570,"8570":8571,"8571":8572,"8572":8573,"8573":8574,"8574":8575,"8575":8576,"8576":8577,"8577":8578,"8578":8579,"8579":8580,"8580":8581,"8581":8582,"8582":8583,"8583":8584,"8584":8585,"8585":8586,"8586":8587,"8587":8588,"8588":8589,"8589":8590,"8590":8591,"8591":8592,"8592":8593,"8593":8594,"8594":8595,"8595":8596,"8596":8597,"8597":8598,"8598":8599,"8599":8600,"8600":8601,"8601":8602,"8602":8603,"8603":8604,"8604":8605,"8605":8606,"8606":8607,"8607":8608,"8608":8609,"8609":8610,"8610":8611,"8611":8612,"8612":8613,"8613":8614,"8614":8615,"8615":8616,"8616":8617,"8617":8618,"8618":8619,"8619":8620,"8620":8621,"8621":8622,"8622":8623,"8623":8624,"8624":8625,"8625":8626,"8626":8627,"8627":8628,"8628":8629,"8629":8630,"8630":8631,"8631":8632,"8632":8633,"8633":8634,"8634":8635,"8635":8636,"8636":8637,"8637":8638,"8638":8639,"8639":8640,"8640":8641,"8641":8642,"8642":8643,"8643":8644,"8644":8645,"8645":8646,"8646":8647,"8647":8648,"8648":8649,"8649":8650,"8650":8651,"8651":8652,"8652":8653,"8653":8654,"8654":8655,"8655":8656,"8656":8657,"8657":8658,"8658":8659,"8659":8660,"8660":8661,"8661":8662,"8662":8663,"8663":8664,"8664":8665,"8665":8666,"8666":8667,"8667":8668,"8668":8669,"8669":8670,"8670":8671,"8671":8672,"8672":8673,"8673":8674,"8674":8675,"8675":8676,"8676":8677,"8677":8678,"8678":8679,"8679":8680,"8680":8681,"8681":8682,"8682":8683,"8683":8684,"8684":8685,"8685":8686,"8686":8687,"8687":8688,"8688":8689,"8689":8690,"8690":8691,"8691":8692,"8692":8693,"8693":8694,"8694":8695,"8695":8696,"8696":8697,"8697":8698,"8698":8699,"8699":8700,"8700":8701,"8701":8702,"8702":8703,"8703":8704,"8704":8705,"8705":8706,"8706":8707,"8707":8708,"8708":8709,"8709":8710,"8710":8711,"8711":8712,"8712":8713,"8713":8714,"8714":8715,"8715":8716,"8716":8717,"8717":8718,"8718":8719,"8719":8720,"8720":8721,"8721":8722,"8722":8723,"8723":8724,"8724":8725,"8725":8726,"8726":8727,"8727":8728,"8728":8729,"8729":8730,"8730":8731,"8731":8732,"8732":8733,"8733":8734,"8734":8735,"8735":8736,"8736":8737,"8737":8738,"8738":8739,"8739":8740,"8740":8741,"8741":8742,"8742":8743,"8743":8744,"8744":8745,"8745":8746,"8746":8747,"8747":8748,"8748":8749,"8749":8750,"8750":8751,"8751":8752,"8752":8753,"8753":8754,"8754":8755,"8755":8756,"8756":8757,"8757":8758,"8758":8759,"8759":8760,"8760":8761,"8761":8762,"8762":8763,"8763":8764,"8764":8765,"8765":8766,"8766":8767,"8767":8768,"8768":8769,"8769":8770,"8770":8771,"8771":8772,"8772":8773,"8773":8774,"8774":8775,"8775":8776,"8776":8777,"8777":8778,"8778":8779,"8779":8780,"8780":8781,"8781":8782,"8782":8783,"8783":8784,"8784":8785,"8785":8786,"8786":8787,"8787":8788,"8788":8789,"8789":8790,"8790":8791,"8791":8792,"8792":8793,"8793":8794,"8794":8795,"8795":8796,"8796":8797,"8797":8798,"8798":8799,"8799":8800,"8800":8801,"8801":8802,"8802":8803,"8803":8804,"8804":8805,"8805":8806,"8806":8807,"8807":8808,"8808":8809,"8809":8810,"8810":8811,"8811":8812,"8812":8813,"8813":8814,"8814":8815,"8815":8816,"8816":8817,"8817":8818,"8818":8819,"8819":8820,"8820":8821,"8821":8822,"8822":8823,"8823":8824,"8824":8825,"8825":8826,"8826":8827,"8827":8828,"8828":8829,"8829":8830,"8830":8831,"8831":8832,"8832":8833,"8833":8834,"8834":8835,"8835":8836,"8836":8837,"8837":8838,"8838":8839,"8839":8840,"8840":8841,"8841":8842,"8842":8843,"8843":8844,"8844":8845,"8845":8846,"8846":8847,"8847":8848,"8848":8849,"8849":8850,"8850":8851,"8851":8852,"8852":8853,"8853":8854,"8854":8855,"8855":8856,"8856":8857,"8857":8858,"8858":8859,"8859":8860,"8860":8861,"8861":8862,"8862":8863,"8863":8864,"8864":8865,"8865":8866,"8866":8867,"8867":8868,"8868":8869,"8869":8870,"8870":8871,"8871":8872,"8872":8873,"8873":8874,"8874":8875,"8875":8876,"8876":8877,"8877":8878,"8878":8879,"8879":8880,"8880":8881,"8881":8882,"8882":8883,"8883":8884,"8884":8885,"8885":8886,"8886":8887,"8887":8888,"8888":8889,"8889":8890,"8890":8891,"8891":8892,"8892":8893,"8893":8894,"8894":8895,"8895":8896,"8896":8897,"8897":8898,"8898":8899,"8899":8900,"8900":8901,"8901":8902,"8902":8903,"8903":8904,"8904":8905,"8905":8906,"8906":8907,"8907":8908,"8908":8909,"8909":8910,"8910":8911,"8911":8912,"8912":8913,"8913":8914,"8914":8915,"8915":8916,"8916":8917,"8917":8918,"8918":8919,"8919":8920,"8920":8921,"8921":8922,"8922":8923,"8923":8924,"8924":8925,"8925":8926,"8926":8927,"8927":8928,"8928":8929,"8929":8930,"8930":8931,"8931":8932,"8932":8933,"8933":8934,"8934":8935,"8935":8936,"8936":8937,"8937":8938,"8938":8939,"8939":8940,"8940":8941,"8941":8942,"8942":8943,"8943":8944,"8944":8945,"8945":8946,"8946":8947,"8947":8948,"8948":8949,"8949":8950,"8950":8951,"8951":8952,"8952":8953,"8953":8954,"8954":8955,"8955":8956,"8956":8957,"8957":8958,"8958":8959,"8959":8960,"8960":8961,"8961":8962,"8962":8963,"8963":8964,"8964":8965,"8965":8966,"8966":8967,"8967":8968,"8968":8969,"8969":8970,"8970":8971,"8971":8972,"8972":8973,"8973":8974,"8974":8975,"8975":8976,"8976":8977,"8977":8978,"8978":8979,"8979":8980,"8980":8981,"8981":8982,"8982":8983,"8983":8984,"8984":8985,"8985":8986,"8986":8987,"8987":8988,"8988":8989,"8989":8990,"8990":8991,"8991":8992,"8992":8993,"8993":8994,"8994":8995,"8995":8996,"8996":8997,"8997":8998,"8998":8999,"8999":9000,"9000":9001,"9001":9002,"9002":9003,"9003":9004,"9004":9005,"9005":9006,"9006":9007,"9007":9008,"9008":9009,"9009":9010,"9010":9011,"9011":9012,"9012":9013,"9013":9014,"9014":9015,"9015":9016,"9016":9017,"9017":9018,"9018":9019,"9019":9020,"9020":9021,"9021":9022,"9022":9023,"9023":9024,"9024":9025,"9025":9026,"9026":9027,"9027":9028,"9028":9029,"9029":9030,"9030":9031,"9031":9032,"9032":9033,"9033":9034,"9034":9035,"9035":9036,"9036":9037,"9037":9038,"9038":9039,"9039":9040,"9040":9041,"9041":9042,"9042":9043,"9043":9044,"9044":9045,"9045":9046,"9046":9047,"9047":9048,"9048":9049,"9049":9050,"9050":9051,"9051":9052,"9052":9053,"9053":9054,"9054":9055,"9055":9056,"9056":9057,"9057":9058,"9058":9059,"9059":9060,"9060":9061,"9061":9062,"9062":9063,"9063":9064,"9064":9065,"9065":9066,"9066":9067,"9067":9068,"9068":9069,"9069":9070,"9070":9071,"9071":9072,"9072":9073,"9073":9074,"9074":9075,"9075":9076,"9076":9077,"9077":9078,"9078":9079,"9079":9080,"9080":9081,"9081":9082,"9082":9083,"9083":9084,"9084":9085,"9085":9086,"9086":9087,"9087":9088,"9088":9089,"9089":9090,"9090":9091,"9091":9092,"9092":9093,"9093":9094,"9094":9095,"9095":9096,"9096":9097,"9097":9098,"9098":9099,"9099":9100,"9100":9101,"9101":9102,"9102":9103,"9103":9104,"9104":9105,"9105":9106,"9106":9107,"9107":9108,"9108":9109,"9109":9110,"9110":9111,"9111":9112,"9112":9113,"9113":9114,"9114":9115,"9115":9116,"9116":9117,"9117":9118,"9118":9119,"9119":9120,"9120":9121,"9121":9122,"9122":9123,"9123":9124,"9124":9125,"9125":9126,"9126":9127,"9127":9128,"9128":9129,"9129":9130,"9130":9131,"9131":9132,"9132":9133,"9133":9134,"9134":9135,"9135":9136,"9136":9137,"9137":9138,"9138":9139,"9139":9140,"9140":9141,"9141":9142,"9142":9143,"9143":9144,"9144":9145,"9145":9146,"9146":9147,"9147":9148,"9148":9149,"9149":9150,"9150":9151,"9151":9152,"9152":9153,"9153":9154,"9154":9155,"9155":9156,"9156":9157,"9157":9158,"9158":9159,"9159":9160,"9160":9161,"9161":9162,"9162":9163,"9163":9164,"9164":9165,"9165":9166,"9166":9167,"9167":9168,"9168":9169,"9169":9170,"9170":9171,"9171":9172,"9172":9173,"9173":9174,"9174":9175,"9175":9176,"9176":9177,"9177":9178,"9178":9179,"9179":9180,"9180":9181,"9181":9182,"9182":9183,"9183":9184,"9184":9185,"9185":9186,"9186":9187,"9187":9188,"9188":9189,"9189":9190,"9190":9191,"9191":9192,"9192":9193,"9193":9194,"9194":9195,"9195":9196,"9196":9197,"9197":9198,"9198":9199,"9199":9200,"9200":9201,"9201":9202,"9202":9203,"9203":9204,"9204":9205,"9205":9206,"9206":9207,"9207":9208,"9208":9209,"9209":9210,"9210":9211,"9211":9212,"9212":9213,"9213":9214,"9214":9215,"9215":9216,"9216":9217,"9217":9218,"9218":9219,"9219":9220,"9220":9221,"9221":9222,"9222":9223,"9223":9224,"9224":9225,"9225":9226,"9226":9227,"9227":9228,"9228":9229,"9229":9230,"9230":9231,"9231":9232,"9232":9233,"9233":9234,"9234":9235,"9235":9236,"9236":9237,"9237":9238,"9238":9239,"9239":9240,"9240":9241,"9241":9242,"9242":9243,"9243":9244,"9244":9245,"9245":9246,"9246":9247,"9247":9248,"9248":9249,"9249":9250,"9250":9251,"9251":9252,"9252":9253,"9253":9254,"9254":9255,"9255":9256,"9256":9257,"9257":9258,"9258":9259,"9259":9260,"9260":9261,"9261":9262,"9262":9263,"9263":9264,"9264":9265,"9265":9266,"9266":9267,"9267":9268,"9268":9269,"9269":9270,"9270":9271,"9271":9272,"9272":9273,"9273":9274,"9274":9275,"9275":9276,"9276":9277,"9277":9278,"9278":9279,"9279":9280,"9280":9281,"9281":9282,"9282":9283,"9283":9284,"9284":9285,"9285":9286,"9286":9287,"9287":9288,"9288":9289,"9289":9290,"9290":9291,"9291":9292,"9292":9293,"9293":9294,"9294":9295,"9295":9296,"9296":9297,"9297":9298,"9298":9299,"9299":9300,"9300":9301,"9301":9302,"9302":9303,"9303":9304,"9304":9305,"9305":9306,"9306":9307,"9307":9308,"9308":9309,"9309":9310,"9310":9311,"9311":9312,"9312":9313,"9313":9314,"9314":9315,"9315":9316,"9316":9317,"9317":9318,"9318":9319,"9319":9320,"9320":9321,"9321":9322,"9322":9323,"9323":9324,"9324":9325,"9325":9326,"9326":9327,"9327":9328,"9328":9329,"9329":9330,"9330":9331,"9331":9332,"9332":9333,"9333":9334,"9334":9335,"9335":9336,"9336":9337,"9337":9338,"9338":9339,"9339":9340,"9340":9341,"9341":9342,"9342":9343,"9343":9344,"9344":9345,"9345":9346,"9346":9347,"9347":9348,"9348":9349,"9349":9350,"9350":9351,"9351":9352,"9352":9353,"9353":9354,"9354":9355,"9355":9356,"9356":9357,"9357":9358,"9358":9359,"9359":9360,"9360":9361,"9361":9362,"9362":9363,"9363":9364,"9364":9365,"9365":9366,"9366":9367,"9367":9368,"9368":9369,"9369":9370,"9370":9371,"9371":9372,"9372":9373,"9373":9374,"9374":9375,"9375":9376,"9376":9377,"9377":9378,"9378":9379,"9379":9380,"9380":9381,"9381":9382,"9382":9383,"9383":9384,"9384":9385,"9385":9386,"9386":9387,"9387":9388,"9388":9389,"9389":9390,"9390":9391,"9391":9392,"9392":9393,"9393":9394,"9394":9395,"9395":9396,"9396":9397,"9397":9398,"9398":9399,"9399":9400,"9400":9401,"9401":9402,"9402":9403,"9403":9404,"9404":9405,"9405":9406,"9406":9407,"9407":9408,"9408":9409,"9409":9410,"9410":9411,"9411":9412,"9412":9413,"9413":9414,"9414":9415,"9415":9416,"9416":9417,"9417":9418,"9418":9419,"9419":9420,"9420":9421,"9421":9422,"9422":9423,"9423":9424,"9424":9425,"9425":9426,"9426":9427,"9427":9428,"9428":9429,"9429":9430,"9430":9431,"9431":9432,"9432":9433,"9433":9434,"9434":9435,"9435":9436,"9436":9437,"9437":9438,"9438":9439,"9439":9440,"9440":9441,"9441":9442,"9442":9443,"9443":9444,"9444":9445,"9445":9446,"9446":9447,"9447":9448,"9448":9449,"9449":9450,"9450":9451,"9451":9452,"9452":9453,"9453":9454,"9454":9455,"9455":9456,"9456":9457,"9457":9458,"9458":9459,"9459":9460,"9460":9461,"9461":9462,"9462":9463,"9463":9464,"9464":9465,"9465":9466,"9466":9467,"9467":9468,"9468":9469,"9469":9470,"9470":9471,"9471":9472,"9472":9473,"9473":9474,"9474":9475,"9475":9476,"9476":9477,"9477":9478,"9478":9479,"9479":9480,"9480":9481,"9481":9482,"9482":9483,"9483":9484,"9484":9485,"9485":9486,"9486":9487,"9487":9488,"9488":9489,"9489":9490,"9490":9491,"9491":9492,"9492":9493,"9493":9494,"9494":9495,"9495":9496,"9496":9497,"9497":9498,"9498":9499,"9499":9500,"9500":9501,"9501":9502,"9502":9503,"9503":9504,"9504":9505,"9505":9506,"9506":9507,"9507":9508,"9508":9509,"9509":9510,"9510":9511,"9511":9512,"9512":9513,"9513":9514,"9514":9515,"9515":9516,"9516":9517,"9517":9518,"9518":9519,"9519":9520,"9520":9521,"9521":9522,"9522":9523,"9523":9524,"9524":9525,"9525":9526,"9526":9527,"9527":9528,"9528":9529,"9529":9530,"9530":9531,"9531":9532,"9532":9533,"9533":9534,"9534":9535,"9535":9536,"9536":9537,"9537":9538,"9538":9539,"9539":9540,"9540":9541,"9541":9542,"9542":9543,"9543":9544,"9544":9545,"9545":9546,"9546":9547,"9547":9548,"9548":9549,"9549":9550,"9550":9551,"9551":9552,"9552":9553,"9553":9554,"9554":9555,"9555":9556,"9556":9557,"9557":9558,"9558":9559,"9559":9560,"9560":9561,"9561":9562,"9562":9563,"9563":9564,"9564":9565,"9565":9566,"9566":9567,"9567":9568,"9568":9569,"9569":9570,"9570":9571,"9571":9572,"9572":9573,"9573":9574,"9574":9575,"9575":9576,"9576":9577,"9577":9578,"9578":9579,"9579":9580,"9580":9581,"9581":9582,"9582":9583,"9583":9584,"9584":9585,"9585":9586,"9586":9587,"9587":9588,"9588":9589,"9589":9590,"9590":9591,"9591":9592,"9592":9593,"9593":9594,"9594":9595,"9595":9596,"9596":9597,"9597":9598,"9598":9599,"9599":9600,"9600":9601,"9601":9602,"9602":9603,"9603":9604,"9604":9605,"9605":9606,"9606":9607,"9607":9608,"9608":9609,"9609":9610,"9610":9611,"9611":9612,"9612":9613,"9613":9614,"9614":9615,"9615":9616,"9616":9617,"9617":9618,"9618":9619,"9619":9620,"9620":9621,"9621":9622,"9622":9623,"9623":9624,"9624":9625,"9625":9626,"9626":9627,"9627":9628,"9628":9629,"9629":9630,"9630":9631,"9631":9632,"9632":9633,"9633":9634,"9634":9635,"9635":9636,"9636":9637,"9637":9638,"9638":9639,"9639":9640,"9640":9641,"9641":9642,"9642":9643,"9643":9644,"9644":9645,"9645":9646,"9646":9647,"9647":9648,"9648":9649,"9649":9650,"9650":9651,"9651":9652,"9652":9653,"9653":9654,"9654":9655,"9655":9656,"9656":9657,"9657":9658,"9658":9659,"9659":9660,"9660":9661,"9661":9662,"9662":9663,"9663":9664,"9664":9665,"9665":9666,"9666":9667,"9667":9668,"9668":9669,"9669":9670,"9670":9671,"9671":9672,"9672":9673,"9673":9674,"9674":9675,"9675":9676,"9676":9677,"9677":9678,"9678":9679,"9679":9680,"9680":9681,"9681":9682,"9682":9683,"9683":9684,"9684":9685,"9685":9686,"9686":9687,"9687":9688,"9688":9689,"9689":9690,"9690":9691,"9691":9692,"9692":9693,"9693":9694,"9694":9695,"9695":9696,"9696":9697,"9697":9698,"9698":9699,"9699":9700,"9700":9701,"9701":9702,"9702":9703,"9703":9704,"9704":9705,"9705":9706,"9706":9707,"9707":9708,"9708":9709,"9709":9710,"9710":9711,"9711":9712,"9712":9713,"9713":9714,"9714":9715,"9715":9716,"9716":9717,"9717":9718,"9718":9719,"9719":9720,"9720":9721,"9721":9722,"9722":9723,"9723":9724,"9724":9725,"9725":9726,"9726":9727,"9727":9728,"9728":9729,"9729":9730,"9730":9731,"9731":9732,"9732":9733,"9733":9734,"9734":9735,"9735":9736,"9736":9737,"9737":9738,"9738":9739,"9739":9740,"9740":9741,"9741":9742,"9742":9743,"9743":9744,"9744":9745,"9745":9746,"9746":9747,"9747":9748,"9748":9749,"9749":9750,"9750":9751,"9751":9752,"9752":9753,"9753":9754,"9754":9755,"9755":9756,"9756":9757,"9757":9758,"9758":9759,"9759":9760,"9760":9761,"9761":9762,"9762":9763,"9763":9764,"9764":9765,"9765":9766,"9766":9767,"9767":9768,"9768":9769,"9769":9770,"9770":9771,"9771":9772,"9772":9773,"9773":9774,"9774":9775,"9775":9776,"9776":9777,"9777":9778,"9778":9779,"9779":9780,"9780":9781,"9781":9782,"9782":9783,"9783":9784,"9784":9785,"9785":9786,"9786":9787,"9787":9788,"9788":9789,"9789":9790,"9790":9791,"9791":9792,"9792":9793,"9793":9794,"9794":9795,"9795":9796,"9796":9797,"9797":9798,"9798":9799,"9799":9800,"9800":9801,"9801":9802,"9802":9803,"9803":9804,"9804":9805,"9805":9806,"9806":9807,"9807":9808,"9808":9809,"9809":9810,"9810":9811,"9811":9812,"9812":9813,"9813":9814,"9814":9815,"9815":9816,"9816":9817,"9817":9818,"9818":9819,"9819":9820,"9820":9821,"9821":9822,"9822":9823,"9823":9824,"9824":9825,"9825":9826,"9826":9827,"9827":9828,"9828":9829,"9829":9830,"9830":9831,"9831":9832,"9832":9833,"9833":9834,"9834":9835,"9835":9836,"9836":9837,"9837":9838,"9838":9839,"9839":9840,"9840":9841,"9841":9842,"9842":9843,"9843":9844,"9844":9845,"9845":9846,"9846":9847,"9847":9848,"9848":9849,"9849":9850,"9850":9851,"9851":9852,"9852":9853,"9853":9854,"9854":9855,"9855":9856,"9856":9857,"9857":9858,"9858":9859,"9859":9860,"9860":9861,"9861":9862,"9862":9863,"9863":9864,"9864":9865,"9865":9866,"9866":9867,"9867":9868,"9868":9869,"9869":9870,"9870":9871,"9871":9872,"9872":9873,"9873":9874,"9874":9875,"9875":9876,"9876":9877,"9877":9878,"9878":9879,"9879":9880,"9880":9881,"9881":9882,"9882":9883,"9883":9884,"9884":9885,"9885":9886,"9886":9887,"9887":9888,"9888":9889,"9889":9890,"9890":9891,"9891":9892,"9892":9893,"9893":9894,"9894":9895,"9895":9896,"9896":9897,"9897":9898,"9898":9899,"9899":9900,"9900":9901,"9901":9902,"9902":9903,"9903":9904,"9904":9905,"9905":9906,"9906":9907,"9907":9908,"9908":9909,"9909":9910,"9910":9911,"9911":9912,"9912":9913,"9913":9914,"9914":9915,"9915":9916,"9916":9917,"9917":9918,"9918":9919,"9919":9920,"9920":9921,"9921":9922,"9922":9923,"9923":9924,"9924":9925,"9925":9926,"9926":9927,"9927":9928,"9928":9929,"9929":9930,"9930":9931,"9931":9932,"9932":9933,"9933":9934,"9934":9935,"9935":9936,"9936":9937,"9937":9938,"9938":9939,"9939":9940,"9940":9941,"9941":9942,"9942":9943,"9943":9944,"9944":9945,"9945":9946,"9946":9947,"9947":9948,"9948":9949,"9949":9950,"9950":9951,"9951":9952,"9952":9953,"9953":9954,"9954":9955,"9955":9956,"9956":9957,"9957":9958,"9958":9959,"9959":9960,"9960":9961,"9961":9962,"9962":9963,"9963":9964,"9964":9965,"9965":9966,"9966":9967,"9967":9968,"9968":9969,"9969":9970,"9970":9971,"9971":9972,"9972":9973,"9973":9974,"9974":9975,"9975":9976,"9976":9977,"9977":9978,"9978":9979,"9979":9980,"9980":9981,"9981":9982,"9982":9983,"9983":9984,"9984":9985,"9985":9986,"9986":9987,"9987":9988,"9988":9989,"9989":9990,"9990":9991,"9991":9992,"9992":9993,"9993":9994,"9994":9995,"9995":9996,"9996":9997,"9997":9998,"9998":9999,"9999":10000,"10000":10001,"10001":10002,"10002":10003,"10003":10004,"10004":10005,"10005":10006,"10006":10007,"10007":10008,"10008":10009,"10009":10010,"10010":10011,"10011":10012,"10012":10013,"10013":10014,"10014":10015,"10015":10016,"10016":10017,"10017":10018,"10018":10019,"10019":10020,"10020":10021,"10021":10022,"10022":10023,"10023":10024,"10024":10025,"10025":10026,"10026":10027,"10027":10028,"10028":10029,"10029":10030,"10030":10031,"10031":10032,"10032":10033,"10033":10034,"10034":10035,"10035":10036,"10036":10037,"10037":10038,"10038":10039,"10039":10040,"10040":10041,"10041":10042,"10042":10043,"10043":10044,"10044":10045,"10045":10046,"10046":10047,"10047":10048,"10048":10049,"10049":10050,"10050":10051,"10051":10052,"10052":10053,"10053":10054,"10054":10055,"10055":10056,"10056":10057,"10057":10058,"10058":10059,"10059":10060,"10060":10061,"10061":10062,"10062":10063,"10063":10064,"10064":10065,"10065":10066,"10066":10067,"10067":10068,"10068":10069,"10069":10070,"10070":10071,"10071":10072,"10072":10073,"10073":10074,"10074":10075,"10075":10076,"10076":10077,"10077":10078,"10078":10079,"10079":10080,"10080":10081,"10081":10082,"10082":10083,"10083":10084,"10084":10085,"10085":10086,"10086":10087,"10087":10088,"10088":10089,"10089":10090,"10090":10091,"10091":10092,"10092":10093,"10093":10094,"10094":10095,"10095":10096,"10096":10097,"10097":10098,"10098":10099,"10099":10100,"10100":10101,"10101":10102,"10102":10103,"10103":10104,"10104":10105,"10105":10106,"10106":10107,"10107":10108,"10108":10109,"10109":10110,"10110":10111,"10111":10112,"10112":10113,"10113":10114,"10114":10115,"10115":10116,"10116":10117,"10117":10118,"10118":10119,"10119":10120,"10120":10121,"10121":10122,"10122":10123,"10123":10124,"10124":10125,"10125":10126,"10126":10127,"10127":10128,"10128":10129,"10129":10130,"10130":10131,"10131":10132,"10132":10133,"10133":10134,"10134":10135,"10135":10136,"10136":10137,"10137":10138,"10138":10139,"10139":10140,"10140":10141,"10141":10142,"10142":10143,"10143":10144,"10144":10145,"10145":10146,"10146":10147,"10147":10148,"10148":10149,"10149":10150,"10150":10151,"10151":10152,"10152":10153,"10153":10154,"10154":10155,"10155":10156,"10156":10157,"10157":10158,"10158":10159,"10159":10160,"10160":10161,"10161":10162,"10162":10163,"10163":10164,"10164":10165,"10165":10166,"10166":10167,"10167":10168,"10168":10169,"10169":10170,"10170":10171,"10171":10172,"10172":10173,"10173":10174,"10174":10175,"10175":10176,"10176":10177,"10177":10178,"10178":10179,"10179":10180,"10180":10181,"10181":10182,"10182":10183,"10183":10184,"10184":10185,"10185":10186,"10186":10187,"10187":10188,"10188":10189,"10189":10190,"10190":10191,"10191":10192,"10192":10193,"10193":10194,"10194":10195,"10195":10196,"10196":10197,"10197":10198,"10198":10199,"10199":10200,"10200":10201,"10201":10202,"10202":10203,"10203":10204,"10204":10205,"10205":10206,"10206":10207,"10207":10208,"10208":10209,"10209":10210,"10210":10211,"10211":10212,"10212":10213,"10213":10214,"10214":10215,"10215":10216,"10216":10217,"10217":10218,"10218":10219,"10219":10220,"10220":10221,"10221":10222,"10222":10223,"10223":10224,"10224":10225,"10225":10226,"10226":10227,"10227":10228,"10228":10229,"10229":10230,"10230":10231,"10231":10232,"10232":10233,"10233":10234,"10234":10235,"10235":10236,"10236":10237,"10237":10238,"10238":10239,"10239":10240,"10240":10241,"10241":10242,"10242":10243,"10243":10244,"10244":10245,"10245":10246,"10246":10247,"10247":10248,"10248":10249,"10249":10250,"10250":10251,"10251":10252,"10252":10253,"10253":10254,"10254":10255,"10255":10256,"10256":10257,"10257":10258,"10258":10259,"10259":10260,"10260":10261,"10261":10262,"10262":10263,"10263":10264,"10264":10265,"10265":10266,"10266":10267,"10267":10268,"10268":10269,"10269":10270,"10270":10271,"10271":10272,"10272":10273,"10273":10274,"10274":10275,"10275":10276,"10276":10277,"10277":10278,"10278":10279,"10279":10280,"10280":10281,"10281":10282,"10282":10283,"10283":10284,"10284":10285,"10285":10286,"10286":10287,"10287":10288,"10288":10289,"10289":10290,"10290":10291,"10291":10292,"10292":10293,"10293":10294,"10294":10295,"10295":10296,"10296":10297,"10297":10298,"10298":10299,"10299":10300,"10300":10301,"10301":10302,"10302":10303,"10303":10304,"10304":10305,"10305":10306,"10306":10307,"10307":10308,"10308":10309,"10309":10310,"10310":10311,"10311":10312,"10312":10313,"10313":10314,"10314":10315,"10315":10316,"10316":10317,"10317":10318,"10318":10319,"10319":10320,"10320":10321,"10321":10322,"10322":10323,"10323":10324,"10324":10325,"10325":10326,"10326":10327,"10327":10328,"10328":10329,"10329":10330,"10330":10331,"10331":10332,"10332":10333,"10333":10334,"10334":10335,"10335":10336,"10336":10337,"10337":10338,"10338":10339,"10339":10340,"10340":10341,"10341":10342,"10342":10343,"10343":10344,"10344":10345,"10345":10346,"10346":10347,"10347":10348,"10348":10349,"10349":10350,"10350":10351,"10351":10352,"10352":10353,"10353":10354,"10354":10355,"10355":10356,"10356":10357,"10357":10358,"10358":10359,"10359":10360,"10360":10361,"10361":10362,"10362":10363,"10363":10364,"10364":10365,"10365":10366,"10366":10367,"10367":10368,"10368":10369,"10369":10370,"10370":10371,"10371":10372,"10372":10373,"10373":10374,"10374":10375,"10375":10376,"10376":10377,"10377":10378,"10378":10379,"10379":10380,"10380":10381,"10381":10382,"10382":10383,"10383":10384,"10384":10385,"10385":10386,"10386":10387,"10387":10388,"10388":10389,"10389":10390,"10390":10391,"10391":10392,"10392":10393,"10393":10394,"10394":10395,"10395":10396,"10396":10397,"10397":10398,"10398":10399,"10399":10400,"10400":10401,"10401":10402,"10402":10403,"10403":10404,"10404":10405,"10405":10406,"10406":10407,"10407":10408,"10408":10409,"10409":10410,"10410":10411,"10411":10412,"10412":10413,"10413":10414,"10414":10415,"10415":10416,"10416":10417,"10417":10418,"10418":10419,"10419":10420,"10420":10421,"10421":10422,"10422":10423,"10423":10424,"10424":10425,"10425":10426,"10426":10427,"10427":10428,"10428":10429,"10429":10430,"10430":10431,"10431":10432,"10432":10433,"10433":10434,"10434":10435,"10435":10436,"10436":10437,"10437":10438,"10438":10439,"10439":10440,"10440":10441,"10441":10442,"10442":10443,"10443":10444,"10444":10445,"10445":10446,"10446":10447,"10447":10448,"10448":10449,"10449":10450,"10450":10451,"10451":10452,"10452":10453,"10453":10454,"10454":10455,"10455":10456,"10456":10457,"10457":10458,"10458":10459,"10459":10460,"10460":10461,"10461":10462,"10462":10463,"10463":10464,"10464":10465,"10465":10466,"10466":10467,"10467":10468,"10468":10469,"10469":10470,"10470":10471,"10471":10472,"10472":10473,"10473":10474,"10474":10475,"10475":10476,"10476":10477,"10477":10478,"10478":10479,"10479":10480,"10480":10481,"10481":10482,"10482":10483,"10483":10484,"10484":10485,"10485":10486,"10486":10487,"10487":10488,"10488":10489,"10489":10490,"10490":10491,"10491":10492,"10492":10493,"10493":10494,"10494":10495,"10495":10496,"10496":10497,"10497":10498,"10498":10499,"10499":10500,"10500":10501,"10501":10502,"10502":10503,"10503":10504,"10504":10505,"10505":10506,"10506":10507,"10507":10508,"10508":10509,"10509":10510,"10510":10511,"10511":10512,"10512":10513,"10513":10514,"10514":10515,"10515":10516,"10516":10517,"10517":10518,"10518":10519,"10519":10520,"10520":10521,"10521":10522,"10522":10523,"10523":10524,"10524":10525,"10525":10526,"10526":10527,"10527":10528,"10528":10529,"10529":10530,"10530":10531,"10531":10532,"10532":10533,"10533":10534,"10534":10535,"10535":10536,"10536":10537,"10537":10538,"10538":10539,"10539":10540,"10540":10541,"10541":10542,"10542":10543,"10543":10544,"10544":10545,"10545":10546,"10546":10547,"10547":10548,"10548":10549,"10549":10550,"10550":10551,"10551":10552,"10552":10553,"10553":10554,"10554":10555,"10555":10556,"10556":10557,"10557":10558,"10558":10559,"10559":10560,"10560":10561,"10561":10562,"10562":10563,"10563":10564,"10564":10565,"10565":10566,"10566":10567,"10567":10568,"10568":10569,"10569":10570,"10570":10571,"10571":10572,"10572":10573,"10573":10574,"10574":10575,"10575":10576,"10576":10577,"10577":10578,"10578":10579,"10579":10580,"10580":10581,"10581":10582,"10582":10583,"10583":10584,"10584":10585,"10585":10586,"10586":10587,"10587":10588,"10588":10589,"10589":10590,"10590":10591,"10591":10592,"10592":10593,"10593":10594,"10594":10595,"10595":10596,"10596":10597,"10597":10598,"10598":10599,"10599":10600,"10600":10601,"10601":10602,"10602":10603,"10603":10604,"10604":10605,"10605":10606,"10606":10607,"10607":10608,"10608":10609,"10609":10610,"10610":10611,"10611":10612,"10612":10613,"10613":10614,"10614":10615,"10615":10616,"10616":10617,"10617":10618,"10618":10619,"10619":10620,"10620":10621,"10621":10622,"10622":10623,"10623":10624,"10624":10625,"10625":10626,"10626":10627,"10627":10628,"10628":10629,"10629":10630,"10630":10631,"10631":10632,"10632":10633,"10633":10634,"10634":10635,"10635":10636,"10636":10637,"10637":10638,"10638":10639,"10639":10640,"10640":10641,"10641":10642,"10642":10643,"10643":10644,"10644":10645,"10645":10646,"10646":10647,"10647":10648,"10648":10649,"10649":10650,"10650":10651,"10651":10652,"10652":10653,"10653":10654,"10654":10655,"10655":10656,"10656":10657,"10657":10658,"10658":10659,"10659":10660,"10660":10661,"10661":10662,"10662":10663,"10663":10664,"10664":10665,"10665":10666,"10666":10667,"10667":10668,"10668":10669,"10669":10670,"10670":10671,"10671":10672,"10672":10673,"10673":10674,"10674":10675,"10675":10676,"10676":10677,"10677":10678,"10678":10679,"10679":10680,"10680":10681,"10681":10682,"10682":10683,"10683":10684,"10684":10685,"10685":10686,"10686":10687,"10687":10688,"10688":10689,"10689":10690,"10690":10691,"10691":10692,"10692":10693,"10693":10694,"10694":10695,"10695":10696,"10696":10697,"10697":10698,"10698":10699,"10699":10700,"10700":10701,"10701":10702,"10702":10703,"10703":10704,"10704":10705,"10705":10706,"10706":10707,"10707":10708,"10708":10709,"10709":10710,"10710":10711,"10711":10712,"10712":10713,"10713":10714,"10714":10715,"10715":10716,"10716":10717,"10717":10718,"10718":10719,"10719":10720,"10720":10721,"10721":10722,"10722":10723,"10723":10724,"10724":10725,"10725":10726,"10726":10727,"10727":10728,"10728":10729,"10729":10730,"10730":10731,"10731":10732,"10732":10733,"10733":10734,"10734":10735,"10735":10736,"10736":10737,"10737":10738,"10738":10739,"10739":10740,"10740":10741,"10741":10742,"10742":10743,"10743":10744,"10744":10745,"10745":10746,"10746":10747,"10747":10748,"10748":10749,"10749":10750,"10750":10751,"10751":10752,"10752":10753,"10753":10754,"10754":10755,"10755":10756,"10756":10757,"10757":10758,"10758":10759,"10759":10760,"10760":10761,"10761":10762,"10762":10763,"10763":10764,"10764":10765,"10765":10766,"10766":10767,"10767":10768,"10768":10769,"10769":10770,"10770":10771,"10771":10772,"10772":10773,"10773":10774,"10774":10775,"10775":10776,"10776":10777,"10777":10778,"10778":10779,"10779":10780,"10780":10781,"10781":10782,"10782":10783,"10783":10784,"10784":10785,"10785":10786,"10786":10787,"10787":10788,"10788":10789,"10789":10790,"10790":10791,"10791":10792,"10792":10793,"10793":10794,"10794":10795,"10795":10796,"10796":10797,"10797":10798,"10798":10799,"10799":10800,"10800":10801,"10801":10802,"10802":10803,"10803":10804,"10804":10805,"10805":10806,"10806":10807,"10807":10808,"10808":10809,"10809":10810,"10810":10811,"10811":10812,"10812":10813,"10813":10814,"10814":10815,"10815":10816,"10816":10817,"10817":10818,"10818":10819,"10819":10820,"10820":10821,"10821":10822,"10822":10823,"10823":10824,"10824":10825,"10825":10826,"10826":10827,"10827":10828,"10828":10829,"10829":10830,"10830":10831,"10831":10832,"10832":10833,"10833":10834,"10834":10835,"10835":10836,"10836":10837,"10837":10838,"10838":10839,"10839":10840,"10840":10841,"10841":10842,"10842":10843,"10843":10844,"10844":10845,"10845":10846,"10846":10847,"10847":10848,"10848":10849,"10849":10850,"10850":10851,"10851":10852,"10852":10853,"10853":10854,"10854":10855,"10855":10856,"10856":10857,"10857":10858,"10858":10859,"10859":10860,"10860":10861,"10861":10862,"10862":10863,"10863":10864,"10864":10865,"10865":10866,"10866":10867,"10867":10868,"10868":10869,"10869":10870,"10870":10871,"10871":10872,"10872":10873,"10873":10874,"10874":10875,"10875":10876,"10876":10877,"10877":10878,"10878":10879,"10879":10880,"10880":10881,"10881":10882,"10882":10883,"10883":10884,"10884":10885,"10885":10886,"10886":10887,"10887":10888,"10888":10889,"10889":10890,"10890":10891,"10891":10892,"10892":10893,"10893":10894,"10894":10895,"10895":10896,"10896":10897,"10897":10898,"10898":10899,"10899":10900,"10900":10901,"10901":10902,"10902":10903,"10903":10904,"10904":10905,"10905":10906,"10906":10907,"10907":10908,"10908":10909,"10909":10910,"10910":10911,"10911":10912,"10912":10913,"10913":10914,"10914":10915,"10915":10916,"10916":10917,"10917":10918,"10918":10919,"10919":10920,"10920":10921,"10921":10922,"10922":10923,"10923":10924,"10924":10925,"10925":10926,"10926":10927,"10927":10928,"10928":10929,"10929":10930,"10930":10931,"10931":10932,"10932":10933,"10933":10934,"10934":10935,"10935":10936,"10936":10937,"10937":10938,"10938":10939,"10939":10940,"10940":10941,"10941":10942,"10942":10943,"10943":10944,"10944":10945,"10945":10946,"10946":10947,"10947":10948,"10948":10949,"10949":10950,"10950":10951,"10951":10952,"10952":10953,"10953":10954,"10954":10955,"10955":10956,"10956":10957,"10957":10958,"10958":10959,"10959":10960,"10960":10961,"10961":10962,"10962":10963,"10963":10964,"10964":10965,"10965":10966,"10966":10967,"10967":10968,"10968":10969,"10969":10970,"10970":10971,"10971":10972,"10972":10973,"10973":10974,"10974":10975,"10975":10976,"10976":10977,"10977":10978,"10978":10979,"10979":10980,"10980":10981,"10981":10982,"10982":10983,"10983":10984,"10984":10985,"10985":10986,"10986":10987,"10987":10988,"10988":10989,"10989":10990,"10990":10991,"10991":10992,"10992":10993,"10993":10994,"10994":10995,"10995":10996,"10996":10997},"nind":{"0":4,"1":3,"2":5,"3":1,"4":2,"5":2,"6":5,"7":3,"8":1,"9":7,"10":3,"11":3,"12":1,"13":5,"14":4,"15":3,"16":3,"17":3,"18":5,"19":3,"20":4,"21":4,"22":4,"23":4,"24":4,"25":4,"26":1,"27":1,"28":3,"29":3,"30":3,"31":4,"32":5,"33":4,"34":4,"35":4,"36":5,"37":6,"38":4,"39":3,"40":3,"41":5,"42":5,"43":7,"44":4,"45":5,"46":4,"47":4,"48":4,"49":6,"50":3,"51":2,"52":4,"53":5,"54":3,"55":3,"56":1,"57":4,"58":7,"59":4,"60":5,"61":3,"62":5,"63":4,"64":9,"65":4,"66":5,"67":4,"68":1,"69":4,"70":1,"71":4,"72":2,"73":4,"74":4,"75":1,"76":5,"77":3,"78":4,"79":7,"80":4,"81":2,"82":3,"83":3,"84":1,"85":1,"86":3,"87":5,"88":4,"89":3,"90":9,"91":4,"92":1,"93":2,"94":3,"95":4,"96":1,"97":4,"98":9,"99":7,"100":5,"101":3,"102":2,"103":4,"104":3,"105":4,"106":4,"107":4,"108":8,"109":4,"110":4,"111":5,"112":3,"113":5,"114":2,"115":3,"116":3,"117":8,"118":3,"119":6,"120":1,"121":9,"122":3,"123":2,"124":4,"125":4,"126":5,"127":3,"128":6,"129":5,"130":4,"131":5,"132":4,"133":3,"134":7,"135":8,"136":4,"137":4,"138":2,"139":3,"140":2,"141":3,"142":3,"143":5,"144":4,"145":3,"146":4,"147":1,"148":4,"149":4,"150":3,"151":5,"152":4,"153":2,"154":4,"155":8,"156":4,"157":1,"158":4,"159":7,"160":6,"161":4,"162":2,"163":3,"164":3,"165":6,"166":2,"167":1,"168":6,"169":2,"170":3,"171":4,"172":2,"173":4,"174":3,"175":8,"176":4,"177":5,"178":3,"179":5,"180":4,"181":3,"182":2,"183":4,"184":2,"185":2,"186":3,"187":3,"188":2,"189":3,"190":7,"191":4,"192":3,"193":4,"194":5,"195":3,"196":4,"197":3,"198":4,"199":3,"200":3,"201":3,"202":6,"203":3,"204":4,"205":8,"206":3,"207":5,"208":2,"209":3,"210":3,"211":4,"212":4,"213":3,"214":9,"215":5,"216":3,"217":9,"218":4,"219":3,"220":5,"221":3,"222":3,"223":4,"224":4,"225":4,"226":6,"227":4,"228":8,"229":4,"230":3,"231":4,"232":4,"233":7,"234":5,"235":5,"236":4,"237":8,"238":2,"239":4,"240":5,"241":3,"242":5,"243":4,"244":5,"245":5,"246":8,"247":5,"248":3,"249":5,"250":6,"251":8,"252":3,"253":2,"254":4,"255":5,"256":1,"257":3,"258":5,"259":4,"260":1,"261":4,"262":5,"263":9,"264":4,"265":3,"266":4,"267":5,"268":4,"269":4,"270":5,"271":3,"272":7,"273":9,"274":5,"275":1,"276":5,"277":5,"278":3,"279":1,"280":4,"281":4,"282":3,"283":8,"284":7,"285":4,"286":3,"287":7,"288":2,"289":5,"290":5,"291":8,"292":1,"293":3,"294":2,"295":3,"296":4,"297":3,"298":3,"299":2,"300":4,"301":4,"302":2,"303":8,"304":5,"305":4,"306":3,"307":3,"308":3,"309":3,"310":1,"311":3,"312":8,"313":3,"314":3,"315":3,"316":3,"317":3,"318":4,"319":4,"320":4,"321":5,"322":1,"323":7,"324":3,"325":3,"326":5,"327":3,"328":4,"329":3,"330":5,"331":4,"332":4,"333":4,"334":4,"335":5,"336":3,"337":4,"338":7,"339":3,"340":4,"341":4,"342":4,"343":4,"344":7,"345":4,"346":4,"347":5,"348":5,"349":2,"350":9,"351":4,"352":4,"353":5,"354":4,"355":4,"356":6,"357":5,"358":4,"359":5,"360":3,"361":3,"362":7,"363":5,"364":4,"365":9,"366":3,"367":4,"368":4,"369":4,"370":4,"371":3,"372":4,"373":3,"374":8,"375":5,"376":6,"377":5,"378":3,"379":4,"380":3,"381":3,"382":3,"383":3,"384":2,"385":3,"386":6,"387":2,"388":4,"389":7,"390":5,"391":3,"392":7,"393":1,"394":1,"395":2,"396":3,"397":1,"398":3,"399":4,"400":2,"401":2,"402":1,"403":3,"404":2,"405":3,"406":5,"407":3,"408":4,"409":2,"410":4,"411":3,"412":4,"413":5,"414":1,"415":4,"416":5,"417":5,"418":3,"419":3,"420":3,"421":3,"422":2,"423":5,"424":4,"425":4,"426":4,"427":2,"428":4,"429":5,"430":5,"431":4,"432":4,"433":3,"434":5,"435":2,"436":1,"437":8,"438":5,"439":5,"440":4,"441":6,"442":2,"443":4,"444":3,"445":3,"446":5,"447":6,"448":5,"449":4,"450":4,"451":1,"452":3,"453":5,"454":5,"455":5,"456":1,"457":4,"458":3,"459":5,"460":4,"461":5,"462":4,"463":2,"464":3,"465":8,"466":4,"467":4,"468":3,"469":4,"470":7,"471":5,"472":9,"473":9,"474":2,"475":6,"476":3,"477":2,"478":4,"479":3,"480":8,"481":3,"482":7,"483":4,"484":8,"485":6,"486":4,"487":4,"488":5,"489":6,"490":4,"491":4,"492":8,"493":3,"494":9,"495":1,"496":4,"497":3,"498":3,"499":5,"500":1,"501":8,"502":6,"503":7,"504":6,"505":8,"506":4,"507":4,"508":2,"509":6,"510":5,"511":5,"512":3,"513":3,"514":6,"515":5,"516":4,"517":7,"518":4,"519":5,"520":3,"521":4,"522":9,"523":1,"524":4,"525":5,"526":6,"527":6,"528":4,"529":5,"530":3,"531":4,"532":5,"533":4,"534":5,"535":1,"536":5,"537":3,"538":2,"539":3,"540":6,"541":7,"542":4,"543":4,"544":5,"545":3,"546":3,"547":2,"548":2,"549":4,"550":5,"551":3,"552":3,"553":5,"554":8,"555":7,"556":2,"557":1,"558":7,"559":4,"560":4,"561":4,"562":4,"563":4,"564":8,"565":3,"566":6,"567":6,"568":3,"569":6,"570":4,"571":5,"572":4,"573":5,"574":7,"575":5,"576":6,"577":2,"578":3,"579":4,"580":6,"581":8,"582":2,"583":6,"584":3,"585":4,"586":3,"587":5,"588":4,"589":8,"590":6,"591":1,"592":4,"593":5,"594":5,"595":5,"596":5,"597":4,"598":3,"599":1,"600":5,"601":3,"602":3,"603":4,"604":1,"605":5,"606":5,"607":3,"608":3,"609":3,"610":3,"611":2,"612":4,"613":4,"614":6,"615":4,"616":8,"617":8,"618":5,"619":5,"620":4,"621":2,"622":9,"623":4,"624":3,"625":5,"626":9,"627":7,"628":4,"629":4,"630":4,"631":5,"632":3,"633":5,"634":1,"635":4,"636":4,"637":4,"638":3,"639":4,"640":4,"641":4,"642":3,"643":2,"644":1,"645":3,"646":1,"647":4,"648":3,"649":5,"650":4,"651":9,"652":5,"653":4,"654":4,"655":4,"656":5,"657":5,"658":3,"659":4,"660":8,"661":4,"662":3,"663":3,"664":1,"665":3,"666":5,"667":4,"668":3,"669":8,"670":5,"671":2,"672":5,"673":3,"674":7,"675":5,"676":5,"677":3,"678":2,"679":4,"680":4,"681":5,"682":3,"683":6,"684":3,"685":8,"686":2,"687":9,"688":4,"689":3,"690":4,"691":1,"692":4,"693":3,"694":1,"695":2,"696":7,"697":4,"698":4,"699":2,"700":4,"701":4,"702":4,"703":3,"704":4,"705":4,"706":3,"707":4,"708":4,"709":8,"710":3,"711":6,"712":2,"713":4,"714":6,"715":3,"716":2,"717":6,"718":4,"719":6,"720":3,"721":8,"722":6,"723":4,"724":4,"725":8,"726":4,"727":3,"728":3,"729":4,"730":3,"731":4,"732":3,"733":7,"734":4,"735":5,"736":3,"737":3,"738":1,"739":1,"740":2,"741":5,"742":3,"743":3,"744":3,"745":4,"746":3,"747":3,"748":3,"749":3,"750":4,"751":4,"752":5,"753":4,"754":5,"755":6,"756":4,"757":3,"758":3,"759":3,"760":4,"761":4,"762":6,"763":4,"764":4,"765":7,"766":2,"767":4,"768":4,"769":5,"770":5,"771":4,"772":5,"773":4,"774":2,"775":3,"776":3,"777":3,"778":5,"779":8,"780":4,"781":4,"782":2,"783":3,"784":4,"785":3,"786":2,"787":4,"788":3,"789":4,"790":2,"791":3,"792":4,"793":7,"794":4,"795":3,"796":5,"797":3,"798":8,"799":5,"800":5,"801":4,"802":3,"803":4,"804":3,"805":4,"806":7,"807":4,"808":1,"809":4,"810":7,"811":3,"812":3,"813":5,"814":4,"815":2,"816":6,"817":3,"818":8,"819":5,"820":5,"821":7,"822":2,"823":2,"824":3,"825":5,"826":2,"827":3,"828":4,"829":4,"830":3,"831":5,"832":3,"833":5,"834":2,"835":7,"836":4,"837":4,"838":2,"839":6,"840":4,"841":4,"842":4,"843":2,"844":2,"845":4,"846":4,"847":6,"848":2,"849":2,"850":4,"851":3,"852":3,"853":5,"854":3,"855":8,"856":6,"857":4,"858":4,"859":5,"860":3,"861":5,"862":4,"863":8,"864":4,"865":3,"866":4,"867":4,"868":3,"869":5,"870":5,"871":3,"872":2,"873":3,"874":4,"875":2,"876":5,"877":4,"878":5,"879":7,"880":3,"881":2,"882":4,"883":5,"884":3,"885":4,"886":5,"887":1,"888":4,"889":2,"890":7,"891":9,"892":7,"893":2,"894":4,"895":3,"896":4,"897":4,"898":3,"899":1,"900":8,"901":5,"902":2,"903":4,"904":2,"905":6,"906":4,"907":3,"908":2,"909":5,"910":1,"911":3,"912":5,"913":3,"914":3,"915":6,"916":4,"917":1,"918":4,"919":3,"920":7,"921":9,"922":5,"923":3,"924":5,"925":4,"926":4,"927":5,"928":5,"929":4,"930":3,"931":3,"932":5,"933":4,"934":2,"935":7,"936":6,"937":2,"938":4,"939":9,"940":1,"941":5,"942":7,"943":4,"944":5,"945":4,"946":4,"947":2,"948":1,"949":6,"950":4,"951":5,"952":4,"953":4,"954":3,"955":3,"956":4,"957":3,"958":4,"959":1,"960":5,"961":4,"962":5,"963":5,"964":5,"965":4,"966":3,"967":4,"968":4,"969":5,"970":4,"971":3,"972":3,"973":4,"974":4,"975":4,"976":7,"977":2,"978":1,"979":2,"980":1,"981":7,"982":7,"983":4,"984":7,"985":8,"986":2,"987":4,"988":8,"989":1,"990":4,"991":3,"992":3,"993":4,"994":4,"995":4,"996":5,"997":3,"998":4,"999":3,"1000":4,"1001":2,"1002":4,"1003":2,"1004":6,"1005":3,"1006":5,"1007":2,"1008":5,"1009":5,"1010":3,"1011":4,"1012":5,"1013":4,"1014":6,"1015":2,"1016":2,"1017":6,"1018":3,"1019":5,"1020":3,"1021":4,"1022":6,"1023":3,"1024":4,"1025":5,"1026":9,"1027":3,"1028":2,"1029":1,"1030":2,"1031":2,"1032":4,"1033":7,"1034":3,"1035":9,"1036":5,"1037":4,"1038":4,"1039":4,"1040":2,"1041":8,"1042":4,"1043":6,"1044":3,"1045":4,"1046":4,"1047":2,"1048":4,"1049":3,"1050":5,"1051":5,"1052":4,"1053":4,"1054":4,"1055":3,"1056":3,"1057":3,"1058":3,"1059":4,"1060":5,"1061":4,"1062":2,"1063":3,"1064":1,"1065":4,"1066":3,"1067":2,"1068":3,"1069":4,"1070":3,"1071":5,"1072":5,"1073":2,"1074":1,"1075":4,"1076":4,"1077":5,"1078":5,"1079":5,"1080":4,"1081":4,"1082":5,"1083":4,"1084":3,"1085":3,"1086":4,"1087":3,"1088":4,"1089":7,"1090":2,"1091":3,"1092":2,"1093":4,"1094":5,"1095":2,"1096":5,"1097":4,"1098":3,"1099":3,"1100":8,"1101":3,"1102":3,"1103":6,"1104":5,"1105":7,"1106":4,"1107":7,"1108":1,"1109":2,"1110":4,"1111":5,"1112":4,"1113":5,"1114":2,"1115":4,"1116":4,"1117":6,"1118":5,"1119":4,"1120":4,"1121":4,"1122":4,"1123":3,"1124":4,"1125":4,"1126":3,"1127":3,"1128":4,"1129":4,"1130":2,"1131":3,"1132":3,"1133":4,"1134":5,"1135":3,"1136":3,"1137":4,"1138":5,"1139":6,"1140":4,"1141":3,"1142":7,"1143":2,"1144":4,"1145":6,"1146":4,"1147":4,"1148":1,"1149":3,"1150":4,"1151":9,"1152":1,"1153":2,"1154":4,"1155":8,"1156":4,"1157":8,"1158":5,"1159":4,"1160":5,"1161":3,"1162":6,"1163":3,"1164":5,"1165":4,"1166":3,"1167":2,"1168":4,"1169":3,"1170":4,"1171":4,"1172":1,"1173":7,"1174":1,"1175":2,"1176":4,"1177":7,"1178":3,"1179":4,"1180":3,"1181":5,"1182":2,"1183":3,"1184":4,"1185":6,"1186":3,"1187":3,"1188":4,"1189":9,"1190":4,"1191":5,"1192":5,"1193":4,"1194":3,"1195":4,"1196":2,"1197":3,"1198":4,"1199":3,"1200":5,"1201":4,"1202":9,"1203":3,"1204":8,"1205":5,"1206":2,"1207":4,"1208":1,"1209":4,"1210":4,"1211":9,"1212":4,"1213":9,"1214":3,"1215":5,"1216":7,"1217":5,"1218":4,"1219":8,"1220":4,"1221":6,"1222":3,"1223":3,"1224":3,"1225":4,"1226":2,"1227":5,"1228":3,"1229":3,"1230":3,"1231":4,"1232":5,"1233":2,"1234":4,"1235":3,"1236":3,"1237":8,"1238":4,"1239":5,"1240":4,"1241":3,"1242":1,"1243":7,"1244":3,"1245":5,"1246":7,"1247":2,"1248":5,"1249":3,"1250":4,"1251":5,"1252":4,"1253":2,"1254":5,"1255":4,"1256":1,"1257":3,"1258":6,"1259":1,"1260":3,"1261":5,"1262":4,"1263":5,"1264":4,"1265":2,"1266":4,"1267":8,"1268":3,"1269":8,"1270":3,"1271":5,"1272":3,"1273":3,"1274":6,"1275":3,"1276":4,"1277":3,"1278":1,"1279":2,"1280":4,"1281":7,"1282":3,"1283":1,"1284":2,"1285":9,"1286":8,"1287":4,"1288":3,"1289":4,"1290":3,"1291":4,"1292":3,"1293":7,"1294":3,"1295":3,"1296":3,"1297":4,"1298":8,"1299":8,"1300":4,"1301":7,"1302":2,"1303":3,"1304":1,"1305":2,"1306":2,"1307":2,"1308":5,"1309":3,"1310":3,"1311":4,"1312":5,"1313":4,"1314":4,"1315":4,"1316":4,"1317":4,"1318":3,"1319":4,"1320":4,"1321":4,"1322":4,"1323":4,"1324":2,"1325":3,"1326":5,"1327":4,"1328":8,"1329":3,"1330":3,"1331":7,"1332":3,"1333":4,"1334":9,"1335":5,"1336":2,"1337":5,"1338":2,"1339":4,"1340":8,"1341":2,"1342":4,"1343":6,"1344":4,"1345":7,"1346":3,"1347":3,"1348":9,"1349":7,"1350":4,"1351":4,"1352":6,"1353":2,"1354":3,"1355":5,"1356":3,"1357":2,"1358":5,"1359":7,"1360":5,"1361":3,"1362":4,"1363":3,"1364":3,"1365":7,"1366":3,"1367":1,"1368":3,"1369":3,"1370":4,"1371":3,"1372":4,"1373":3,"1374":1,"1375":3,"1376":5,"1377":3,"1378":3,"1379":2,"1380":5,"1381":1,"1382":5,"1383":3,"1384":4,"1385":3,"1386":5,"1387":4,"1388":3,"1389":4,"1390":4,"1391":4,"1392":7,"1393":3,"1394":3,"1395":5,"1396":5,"1397":4,"1398":4,"1399":7,"1400":3,"1401":3,"1402":2,"1403":4,"1404":3,"1405":7,"1406":2,"1407":1,"1408":5,"1409":3,"1410":3,"1411":2,"1412":4,"1413":5,"1414":4,"1415":5,"1416":2,"1417":5,"1418":5,"1419":4,"1420":4,"1421":3,"1422":4,"1423":5,"1424":4,"1425":3,"1426":3,"1427":5,"1428":4,"1429":4,"1430":3,"1431":5,"1432":5,"1433":7,"1434":3,"1435":4,"1436":3,"1437":2,"1438":2,"1439":3,"1440":3,"1441":5,"1442":7,"1443":3,"1444":4,"1445":4,"1446":6,"1447":6,"1448":9,"1449":5,"1450":3,"1451":5,"1452":4,"1453":3,"1454":4,"1455":4,"1456":1,"1457":3,"1458":1,"1459":5,"1460":4,"1461":3,"1462":3,"1463":4,"1464":3,"1465":2,"1466":7,"1467":2,"1468":3,"1469":5,"1470":4,"1471":2,"1472":7,"1473":1,"1474":6,"1475":4,"1476":5,"1477":4,"1478":1,"1479":7,"1480":5,"1481":4,"1482":2,"1483":2,"1484":2,"1485":5,"1486":6,"1487":1,"1488":2,"1489":4,"1490":2,"1491":6,"1492":3,"1493":3,"1494":5,"1495":3,"1496":1,"1497":2,"1498":3,"1499":5,"1500":6,"1501":4,"1502":4,"1503":2,"1504":4,"1505":2,"1506":3,"1507":3,"1508":4,"1509":5,"1510":5,"1511":3,"1512":6,"1513":4,"1514":3,"1515":3,"1516":4,"1517":2,"1518":4,"1519":4,"1520":4,"1521":3,"1522":4,"1523":3,"1524":6,"1525":3,"1526":5,"1527":4,"1528":4,"1529":5,"1530":4,"1531":3,"1532":4,"1533":4,"1534":5,"1535":3,"1536":7,"1537":2,"1538":2,"1539":4,"1540":4,"1541":8,"1542":2,"1543":6,"1544":2,"1545":2,"1546":3,"1547":3,"1548":4,"1549":3,"1550":6,"1551":2,"1552":1,"1553":4,"1554":4,"1555":3,"1556":4,"1557":6,"1558":4,"1559":3,"1560":5,"1561":4,"1562":3,"1563":4,"1564":4,"1565":4,"1566":3,"1567":4,"1568":2,"1569":4,"1570":5,"1571":3,"1572":4,"1573":4,"1574":2,"1575":5,"1576":2,"1577":7,"1578":2,"1579":4,"1580":2,"1581":4,"1582":3,"1583":4,"1584":2,"1585":3,"1586":4,"1587":3,"1588":3,"1589":1,"1590":3,"1591":3,"1592":3,"1593":3,"1594":5,"1595":2,"1596":4,"1597":5,"1598":6,"1599":7,"1600":3,"1601":4,"1602":3,"1603":3,"1604":8,"1605":9,"1606":8,"1607":7,"1608":5,"1609":3,"1610":4,"1611":1,"1612":4,"1613":2,"1614":2,"1615":3,"1616":4,"1617":3,"1618":3,"1619":4,"1620":4,"1621":5,"1622":4,"1623":3,"1624":9,"1625":4,"1626":3,"1627":2,"1628":6,"1629":4,"1630":3,"1631":3,"1632":3,"1633":9,"1634":5,"1635":4,"1636":2,"1637":2,"1638":2,"1639":4,"1640":1,"1641":4,"1642":3,"1643":1,"1644":4,"1645":3,"1646":3,"1647":3,"1648":1,"1649":3,"1650":8,"1651":3,"1652":3,"1653":9,"1654":8,"1655":3,"1656":1,"1657":7,"1658":4,"1659":8,"1660":4,"1661":2,"1662":3,"1663":4,"1664":5,"1665":5,"1666":3,"1667":3,"1668":5,"1669":3,"1670":7,"1671":5,"1672":4,"1673":4,"1674":3,"1675":4,"1676":2,"1677":6,"1678":4,"1679":3,"1680":4,"1681":2,"1682":4,"1683":8,"1684":3,"1685":2,"1686":3,"1687":5,"1688":2,"1689":4,"1690":5,"1691":1,"1692":7,"1693":4,"1694":1,"1695":3,"1696":3,"1697":3,"1698":3,"1699":4,"1700":4,"1701":5,"1702":4,"1703":4,"1704":2,"1705":3,"1706":4,"1707":3,"1708":4,"1709":1,"1710":4,"1711":5,"1712":3,"1713":3,"1714":2,"1715":7,"1716":5,"1717":5,"1718":4,"1719":4,"1720":4,"1721":4,"1722":8,"1723":4,"1724":2,"1725":3,"1726":3,"1727":5,"1728":5,"1729":4,"1730":4,"1731":7,"1732":5,"1733":3,"1734":4,"1735":5,"1736":6,"1737":1,"1738":3,"1739":3,"1740":7,"1741":8,"1742":3,"1743":3,"1744":7,"1745":3,"1746":3,"1747":5,"1748":5,"1749":1,"1750":1,"1751":7,"1752":4,"1753":4,"1754":5,"1755":2,"1756":5,"1757":2,"1758":4,"1759":3,"1760":3,"1761":4,"1762":5,"1763":3,"1764":3,"1765":3,"1766":2,"1767":4,"1768":6,"1769":3,"1770":4,"1771":4,"1772":1,"1773":3,"1774":3,"1775":5,"1776":4,"1777":4,"1778":8,"1779":5,"1780":1,"1781":5,"1782":4,"1783":2,"1784":6,"1785":2,"1786":5,"1787":8,"1788":3,"1789":1,"1790":3,"1791":2,"1792":2,"1793":3,"1794":6,"1795":3,"1796":4,"1797":2,"1798":3,"1799":4,"1800":4,"1801":3,"1802":3,"1803":4,"1804":3,"1805":5,"1806":2,"1807":3,"1808":4,"1809":6,"1810":3,"1811":4,"1812":3,"1813":8,"1814":4,"1815":2,"1816":3,"1817":5,"1818":3,"1819":3,"1820":4,"1821":4,"1822":4,"1823":5,"1824":4,"1825":4,"1826":1,"1827":3,"1828":3,"1829":3,"1830":4,"1831":3,"1832":3,"1833":7,"1834":5,"1835":6,"1836":7,"1837":2,"1838":4,"1839":2,"1840":1,"1841":3,"1842":3,"1843":4,"1844":4,"1845":2,"1846":2,"1847":4,"1848":2,"1849":2,"1850":4,"1851":4,"1852":2,"1853":3,"1854":3,"1855":3,"1856":5,"1857":5,"1858":4,"1859":2,"1860":6,"1861":4,"1862":3,"1863":3,"1864":4,"1865":4,"1866":3,"1867":5,"1868":4,"1869":4,"1870":5,"1871":1,"1872":2,"1873":5,"1874":4,"1875":4,"1876":9,"1877":5,"1878":4,"1879":3,"1880":4,"1881":5,"1882":4,"1883":3,"1884":3,"1885":7,"1886":3,"1887":2,"1888":4,"1889":3,"1890":1,"1891":6,"1892":4,"1893":2,"1894":4,"1895":3,"1896":4,"1897":3,"1898":8,"1899":2,"1900":4,"1901":2,"1902":2,"1903":6,"1904":6,"1905":5,"1906":5,"1907":1,"1908":4,"1909":3,"1910":3,"1911":1,"1912":3,"1913":5,"1914":9,"1915":3,"1916":3,"1917":3,"1918":4,"1919":8,"1920":4,"1921":6,"1922":3,"1923":4,"1924":3,"1925":3,"1926":4,"1927":4,"1928":4,"1929":6,"1930":5,"1931":5,"1932":3,"1933":1,"1934":3,"1935":9,"1936":2,"1937":4,"1938":2,"1939":4,"1940":3,"1941":2,"1942":7,"1943":4,"1944":3,"1945":3,"1946":3,"1947":9,"1948":4,"1949":4,"1950":5,"1951":3,"1952":4,"1953":3,"1954":4,"1955":7,"1956":4,"1957":3,"1958":7,"1959":4,"1960":3,"1961":4,"1962":3,"1963":5,"1964":2,"1965":3,"1966":1,"1967":3,"1968":4,"1969":5,"1970":3,"1971":6,"1972":4,"1973":3,"1974":2,"1975":3,"1976":8,"1977":3,"1978":2,"1979":5,"1980":6,"1981":5,"1982":3,"1983":2,"1984":3,"1985":4,"1986":4,"1987":2,"1988":3,"1989":5,"1990":3,"1991":3,"1992":5,"1993":9,"1994":1,"1995":3,"1996":3,"1997":3,"1998":4,"1999":1,"2000":4,"2001":4,"2002":1,"2003":3,"2004":2,"2005":9,"2006":7,"2007":4,"2008":7,"2009":3,"2010":3,"2011":5,"2012":4,"2013":4,"2014":2,"2015":3,"2016":3,"2017":3,"2018":5,"2019":2,"2020":4,"2021":8,"2022":2,"2023":3,"2024":2,"2025":9,"2026":2,"2027":4,"2028":5,"2029":2,"2030":5,"2031":7,"2032":3,"2033":6,"2034":6,"2035":3,"2036":2,"2037":9,"2038":3,"2039":5,"2040":6,"2041":4,"2042":5,"2043":1,"2044":4,"2045":4,"2046":4,"2047":4,"2048":3,"2049":2,"2050":4,"2051":4,"2052":7,"2053":4,"2054":7,"2055":7,"2056":2,"2057":4,"2058":3,"2059":7,"2060":3,"2061":4,"2062":5,"2063":8,"2064":3,"2065":5,"2066":5,"2067":4,"2068":6,"2069":4,"2070":4,"2071":4,"2072":1,"2073":3,"2074":3,"2075":5,"2076":4,"2077":4,"2078":8,"2079":8,"2080":5,"2081":1,"2082":4,"2083":3,"2084":4,"2085":3,"2086":4,"2087":4,"2088":2,"2089":3,"2090":3,"2091":3,"2092":9,"2093":3,"2094":5,"2095":3,"2096":4,"2097":5,"2098":3,"2099":3,"2100":3,"2101":5,"2102":3,"2103":9,"2104":4,"2105":4,"2106":4,"2107":3,"2108":4,"2109":4,"2110":4,"2111":1,"2112":7,"2113":2,"2114":8,"2115":4,"2116":4,"2117":4,"2118":9,"2119":4,"2120":4,"2121":4,"2122":5,"2123":4,"2124":8,"2125":5,"2126":2,"2127":2,"2128":4,"2129":4,"2130":3,"2131":4,"2132":5,"2133":3,"2134":6,"2135":6,"2136":3,"2137":4,"2138":9,"2139":4,"2140":3,"2141":3,"2142":2,"2143":7,"2144":4,"2145":2,"2146":5,"2147":2,"2148":3,"2149":3,"2150":3,"2151":5,"2152":4,"2153":2,"2154":4,"2155":3,"2156":4,"2157":5,"2158":3,"2159":6,"2160":2,"2161":2,"2162":3,"2163":7,"2164":5,"2165":4,"2166":5,"2167":4,"2168":4,"2169":2,"2170":6,"2171":2,"2172":3,"2173":2,"2174":2,"2175":8,"2176":5,"2177":4,"2178":3,"2179":5,"2180":4,"2181":4,"2182":2,"2183":7,"2184":4,"2185":5,"2186":3,"2187":5,"2188":4,"2189":4,"2190":2,"2191":2,"2192":4,"2193":9,"2194":5,"2195":4,"2196":6,"2197":5,"2198":4,"2199":7,"2200":4,"2201":7,"2202":4,"2203":3,"2204":4,"2205":4,"2206":5,"2207":3,"2208":4,"2209":4,"2210":3,"2211":5,"2212":4,"2213":1,"2214":5,"2215":4,"2216":3,"2217":3,"2218":4,"2219":1,"2220":4,"2221":4,"2222":1,"2223":5,"2224":3,"2225":7,"2226":5,"2227":5,"2228":3,"2229":4,"2230":4,"2231":4,"2232":5,"2233":4,"2234":4,"2235":3,"2236":5,"2237":4,"2238":7,"2239":2,"2240":4,"2241":2,"2242":3,"2243":4,"2244":4,"2245":6,"2246":3,"2247":3,"2248":3,"2249":3,"2250":8,"2251":2,"2252":5,"2253":4,"2254":5,"2255":3,"2256":2,"2257":3,"2258":2,"2259":4,"2260":3,"2261":7,"2262":1,"2263":4,"2264":4,"2265":4,"2266":5,"2267":6,"2268":6,"2269":9,"2270":3,"2271":3,"2272":3,"2273":4,"2274":3,"2275":3,"2276":5,"2277":4,"2278":3,"2279":3,"2280":3,"2281":1,"2282":3,"2283":4,"2284":4,"2285":5,"2286":3,"2287":5,"2288":3,"2289":3,"2290":4,"2291":3,"2292":2,"2293":2,"2294":7,"2295":4,"2296":5,"2297":6,"2298":5,"2299":4,"2300":5,"2301":3,"2302":4,"2303":4,"2304":9,"2305":4,"2306":4,"2307":2,"2308":5,"2309":7,"2310":6,"2311":3,"2312":5,"2313":1,"2314":5,"2315":4,"2316":5,"2317":4,"2318":1,"2319":4,"2320":3,"2321":2,"2322":4,"2323":5,"2324":5,"2325":3,"2326":3,"2327":7,"2328":3,"2329":5,"2330":6,"2331":3,"2332":3,"2333":4,"2334":5,"2335":3,"2336":8,"2337":4,"2338":2,"2339":3,"2340":4,"2341":1,"2342":3,"2343":4,"2344":2,"2345":5,"2346":3,"2347":1,"2348":5,"2349":4,"2350":3,"2351":4,"2352":5,"2353":4,"2354":6,"2355":5,"2356":4,"2357":4,"2358":5,"2359":6,"2360":4,"2361":2,"2362":7,"2363":4,"2364":3,"2365":3,"2366":5,"2367":4,"2368":3,"2369":4,"2370":4,"2371":3,"2372":5,"2373":2,"2374":3,"2375":6,"2376":5,"2377":4,"2378":3,"2379":6,"2380":4,"2381":5,"2382":5,"2383":3,"2384":3,"2385":2,"2386":5,"2387":4,"2388":1,"2389":3,"2390":4,"2391":5,"2392":2,"2393":6,"2394":8,"2395":5,"2396":5,"2397":6,"2398":3,"2399":3,"2400":7,"2401":3,"2402":2,"2403":5,"2404":3,"2405":6,"2406":5,"2407":3,"2408":3,"2409":4,"2410":6,"2411":4,"2412":3,"2413":4,"2414":3,"2415":5,"2416":1,"2417":5,"2418":6,"2419":4,"2420":2,"2421":3,"2422":4,"2423":7,"2424":4,"2425":6,"2426":3,"2427":1,"2428":3,"2429":4,"2430":4,"2431":2,"2432":7,"2433":5,"2434":3,"2435":3,"2436":4,"2437":3,"2438":6,"2439":5,"2440":4,"2441":9,"2442":3,"2443":2,"2444":7,"2445":6,"2446":1,"2447":2,"2448":4,"2449":2,"2450":4,"2451":5,"2452":4,"2453":3,"2454":3,"2455":5,"2456":1,"2457":8,"2458":4,"2459":4,"2460":2,"2461":4,"2462":5,"2463":4,"2464":3,"2465":7,"2466":2,"2467":5,"2468":4,"2469":4,"2470":4,"2471":6,"2472":6,"2473":7,"2474":2,"2475":3,"2476":3,"2477":5,"2478":3,"2479":4,"2480":4,"2481":5,"2482":5,"2483":3,"2484":2,"2485":3,"2486":3,"2487":3,"2488":8,"2489":6,"2490":4,"2491":7,"2492":4,"2493":2,"2494":1,"2495":5,"2496":1,"2497":2,"2498":5,"2499":3,"2500":4,"2501":4,"2502":4,"2503":7,"2504":4,"2505":4,"2506":4,"2507":1,"2508":6,"2509":2,"2510":5,"2511":5,"2512":3,"2513":7,"2514":3,"2515":4,"2516":4,"2517":4,"2518":4,"2519":3,"2520":3,"2521":2,"2522":4,"2523":4,"2524":3,"2525":3,"2526":2,"2527":5,"2528":4,"2529":5,"2530":5,"2531":4,"2532":2,"2533":4,"2534":8,"2535":2,"2536":3,"2537":7,"2538":7,"2539":1,"2540":2,"2541":5,"2542":3,"2543":2,"2544":4,"2545":4,"2546":5,"2547":3,"2548":3,"2549":5,"2550":5,"2551":5,"2552":4,"2553":7,"2554":3,"2555":4,"2556":5,"2557":3,"2558":4,"2559":4,"2560":8,"2561":2,"2562":5,"2563":1,"2564":5,"2565":6,"2566":4,"2567":3,"2568":5,"2569":4,"2570":4,"2571":4,"2572":4,"2573":5,"2574":9,"2575":4,"2576":4,"2577":4,"2578":4,"2579":4,"2580":3,"2581":4,"2582":1,"2583":4,"2584":5,"2585":9,"2586":3,"2587":5,"2588":3,"2589":5,"2590":7,"2591":6,"2592":4,"2593":4,"2594":4,"2595":5,"2596":3,"2597":4,"2598":3,"2599":4,"2600":4,"2601":4,"2602":3,"2603":4,"2604":3,"2605":3,"2606":4,"2607":3,"2608":3,"2609":3,"2610":3,"2611":5,"2612":2,"2613":4,"2614":4,"2615":3,"2616":4,"2617":7,"2618":1,"2619":4,"2620":3,"2621":4,"2622":4,"2623":6,"2624":5,"2625":4,"2626":5,"2627":3,"2628":3,"2629":5,"2630":4,"2631":3,"2632":3,"2633":5,"2634":4,"2635":3,"2636":4,"2637":4,"2638":4,"2639":3,"2640":3,"2641":6,"2642":3,"2643":5,"2644":4,"2645":6,"2646":4,"2647":7,"2648":4,"2649":3,"2650":9,"2651":2,"2652":4,"2653":4,"2654":4,"2655":3,"2656":3,"2657":3,"2658":4,"2659":8,"2660":9,"2661":7,"2662":4,"2663":4,"2664":3,"2665":7,"2666":8,"2667":3,"2668":4,"2669":4,"2670":4,"2671":5,"2672":4,"2673":3,"2674":1,"2675":3,"2676":4,"2677":7,"2678":4,"2679":6,"2680":3,"2681":3,"2682":4,"2683":4,"2684":5,"2685":5,"2686":3,"2687":5,"2688":4,"2689":3,"2690":4,"2691":4,"2692":1,"2693":1,"2694":3,"2695":4,"2696":1,"2697":5,"2698":4,"2699":2,"2700":5,"2701":4,"2702":3,"2703":3,"2704":1,"2705":3,"2706":9,"2707":5,"2708":3,"2709":5,"2710":4,"2711":5,"2712":4,"2713":3,"2714":2,"2715":1,"2716":5,"2717":5,"2718":5,"2719":4,"2720":3,"2721":5,"2722":6,"2723":4,"2724":4,"2725":4,"2726":4,"2727":3,"2728":3,"2729":1,"2730":3,"2731":2,"2732":6,"2733":4,"2734":3,"2735":2,"2736":3,"2737":8,"2738":4,"2739":4,"2740":4,"2741":9,"2742":5,"2743":3,"2744":3,"2745":4,"2746":7,"2747":1,"2748":4,"2749":1,"2750":3,"2751":7,"2752":2,"2753":5,"2754":4,"2755":3,"2756":3,"2757":4,"2758":7,"2759":6,"2760":4,"2761":4,"2762":3,"2763":3,"2764":4,"2765":7,"2766":1,"2767":5,"2768":5,"2769":4,"2770":7,"2771":3,"2772":3,"2773":4,"2774":4,"2775":1,"2776":2,"2777":5,"2778":4,"2779":4,"2780":7,"2781":3,"2782":4,"2783":3,"2784":1,"2785":4,"2786":4,"2787":3,"2788":5,"2789":2,"2790":4,"2791":5,"2792":4,"2793":6,"2794":5,"2795":4,"2796":3,"2797":2,"2798":5,"2799":7,"2800":4,"2801":6,"2802":4,"2803":5,"2804":3,"2805":3,"2806":2,"2807":3,"2808":4,"2809":4,"2810":4,"2811":3,"2812":5,"2813":3,"2814":3,"2815":4,"2816":3,"2817":4,"2818":9,"2819":5,"2820":4,"2821":2,"2822":3,"2823":4,"2824":4,"2825":3,"2826":2,"2827":4,"2828":3,"2829":2,"2830":3,"2831":3,"2832":3,"2833":3,"2834":4,"2835":4,"2836":3,"2837":4,"2838":4,"2839":1,"2840":7,"2841":4,"2842":8,"2843":2,"2844":3,"2845":4,"2846":7,"2847":7,"2848":4,"2849":3,"2850":4,"2851":3,"2852":3,"2853":2,"2854":7,"2855":6,"2856":2,"2857":1,"2858":5,"2859":3,"2860":9,"2861":5,"2862":4,"2863":4,"2864":2,"2865":4,"2866":4,"2867":6,"2868":4,"2869":2,"2870":4,"2871":4,"2872":2,"2873":4,"2874":4,"2875":9,"2876":3,"2877":4,"2878":5,"2879":5,"2880":7,"2881":2,"2882":4,"2883":3,"2884":5,"2885":4,"2886":4,"2887":3,"2888":3,"2889":7,"2890":1,"2891":7,"2892":3,"2893":4,"2894":5,"2895":3,"2896":4,"2897":7,"2898":3,"2899":5,"2900":6,"2901":3,"2902":8,"2903":3,"2904":7,"2905":4,"2906":4,"2907":2,"2908":3,"2909":4,"2910":4,"2911":6,"2912":4,"2913":4,"2914":3,"2915":3,"2916":5,"2917":7,"2918":2,"2919":4,"2920":3,"2921":3,"2922":4,"2923":4,"2924":4,"2925":3,"2926":3,"2927":2,"2928":3,"2929":4,"2930":3,"2931":7,"2932":4,"2933":7,"2934":4,"2935":3,"2936":3,"2937":3,"2938":7,"2939":5,"2940":2,"2941":8,"2942":5,"2943":1,"2944":5,"2945":2,"2946":6,"2947":7,"2948":6,"2949":5,"2950":4,"2951":1,"2952":3,"2953":4,"2954":4,"2955":3,"2956":5,"2957":7,"2958":4,"2959":3,"2960":5,"2961":4,"2962":3,"2963":5,"2964":3,"2965":3,"2966":4,"2967":6,"2968":2,"2969":4,"2970":3,"2971":5,"2972":2,"2973":3,"2974":4,"2975":9,"2976":4,"2977":4,"2978":7,"2979":2,"2980":4,"2981":4,"2982":3,"2983":2,"2984":5,"2985":5,"2986":2,"2987":5,"2988":5,"2989":7,"2990":3,"2991":4,"2992":4,"2993":3,"2994":3,"2995":2,"2996":6,"2997":4,"2998":4,"2999":4,"3000":2,"3001":4,"3002":2,"3003":2,"3004":4,"3005":4,"3006":8,"3007":6,"3008":5,"3009":3,"3010":3,"3011":3,"3012":3,"3013":3,"3014":4,"3015":4,"3016":6,"3017":5,"3018":3,"3019":4,"3020":2,"3021":4,"3022":4,"3023":7,"3024":3,"3025":4,"3026":4,"3027":7,"3028":5,"3029":8,"3030":4,"3031":4,"3032":3,"3033":4,"3034":4,"3035":6,"3036":2,"3037":7,"3038":2,"3039":2,"3040":4,"3041":3,"3042":4,"3043":4,"3044":5,"3045":4,"3046":9,"3047":2,"3048":4,"3049":3,"3050":6,"3051":3,"3052":6,"3053":4,"3054":4,"3055":2,"3056":5,"3057":4,"3058":5,"3059":5,"3060":7,"3061":3,"3062":3,"3063":6,"3064":1,"3065":8,"3066":3,"3067":4,"3068":5,"3069":1,"3070":4,"3071":4,"3072":5,"3073":8,"3074":5,"3075":4,"3076":4,"3077":5,"3078":3,"3079":4,"3080":4,"3081":3,"3082":4,"3083":4,"3084":4,"3085":5,"3086":4,"3087":4,"3088":2,"3089":3,"3090":3,"3091":3,"3092":3,"3093":6,"3094":1,"3095":2,"3096":3,"3097":3,"3098":4,"3099":1,"3100":1,"3101":6,"3102":5,"3103":5,"3104":7,"3105":4,"3106":2,"3107":3,"3108":4,"3109":3,"3110":4,"3111":4,"3112":3,"3113":8,"3114":3,"3115":6,"3116":3,"3117":7,"3118":3,"3119":3,"3120":3,"3121":2,"3122":2,"3123":3,"3124":2,"3125":3,"3126":4,"3127":3,"3128":4,"3129":6,"3130":4,"3131":3,"3132":3,"3133":3,"3134":5,"3135":1,"3136":2,"3137":3,"3138":7,"3139":4,"3140":4,"3141":7,"3142":4,"3143":8,"3144":3,"3145":4,"3146":4,"3147":3,"3148":5,"3149":4,"3150":4,"3151":4,"3152":5,"3153":8,"3154":4,"3155":4,"3156":3,"3157":3,"3158":4,"3159":4,"3160":5,"3161":5,"3162":5,"3163":3,"3164":3,"3165":4,"3166":3,"3167":5,"3168":3,"3169":3,"3170":3,"3171":4,"3172":5,"3173":5,"3174":4,"3175":3,"3176":7,"3177":4,"3178":4,"3179":9,"3180":6,"3181":6,"3182":6,"3183":3,"3184":6,"3185":2,"3186":5,"3187":2,"3188":4,"3189":5,"3190":5,"3191":4,"3192":5,"3193":5,"3194":5,"3195":5,"3196":4,"3197":5,"3198":6,"3199":7,"3200":4,"3201":3,"3202":4,"3203":4,"3204":4,"3205":3,"3206":4,"3207":1,"3208":4,"3209":3,"3210":5,"3211":4,"3212":4,"3213":4,"3214":1,"3215":5,"3216":3,"3217":8,"3218":6,"3219":4,"3220":5,"3221":6,"3222":4,"3223":4,"3224":3,"3225":3,"3226":1,"3227":3,"3228":2,"3229":4,"3230":1,"3231":4,"3232":4,"3233":3,"3234":2,"3235":3,"3236":3,"3237":3,"3238":5,"3239":6,"3240":3,"3241":5,"3242":4,"3243":4,"3244":4,"3245":3,"3246":2,"3247":4,"3248":5,"3249":5,"3250":2,"3251":6,"3252":3,"3253":6,"3254":5,"3255":2,"3256":4,"3257":6,"3258":3,"3259":7,"3260":4,"3261":5,"3262":3,"3263":4,"3264":3,"3265":4,"3266":3,"3267":4,"3268":1,"3269":2,"3270":4,"3271":4,"3272":4,"3273":4,"3274":7,"3275":5,"3276":4,"3277":9,"3278":5,"3279":9,"3280":3,"3281":7,"3282":6,"3283":2,"3284":3,"3285":4,"3286":2,"3287":5,"3288":4,"3289":4,"3290":5,"3291":3,"3292":4,"3293":1,"3294":3,"3295":4,"3296":4,"3297":3,"3298":3,"3299":7,"3300":3,"3301":5,"3302":4,"3303":5,"3304":3,"3305":5,"3306":3,"3307":9,"3308":4,"3309":5,"3310":4,"3311":4,"3312":3,"3313":2,"3314":5,"3315":3,"3316":4,"3317":5,"3318":5,"3319":4,"3320":4,"3321":2,"3322":4,"3323":9,"3324":3,"3325":4,"3326":2,"3327":3,"3328":4,"3329":4,"3330":3,"3331":5,"3332":4,"3333":4,"3334":2,"3335":3,"3336":1,"3337":3,"3338":5,"3339":4,"3340":3,"3341":5,"3342":5,"3343":1,"3344":2,"3345":4,"3346":5,"3347":4,"3348":3,"3349":6,"3350":4,"3351":4,"3352":6,"3353":5,"3354":4,"3355":3,"3356":2,"3357":4,"3358":4,"3359":4,"3360":6,"3361":4,"3362":4,"3363":8,"3364":4,"3365":3,"3366":7,"3367":4,"3368":5,"3369":4,"3370":7,"3371":3,"3372":4,"3373":4,"3374":8,"3375":4,"3376":4,"3377":3,"3378":4,"3379":4,"3380":5,"3381":5,"3382":5,"3383":3,"3384":4,"3385":4,"3386":6,"3387":3,"3388":2,"3389":3,"3390":4,"3391":3,"3392":6,"3393":7,"3394":5,"3395":3,"3396":4,"3397":6,"3398":2,"3399":4,"3400":3,"3401":3,"3402":4,"3403":4,"3404":3,"3405":2,"3406":4,"3407":3,"3408":4,"3409":4,"3410":3,"3411":4,"3412":3,"3413":8,"3414":4,"3415":3,"3416":4,"3417":1,"3418":3,"3419":3,"3420":7,"3421":1,"3422":6,"3423":4,"3424":5,"3425":4,"3426":4,"3427":3,"3428":5,"3429":4,"3430":4,"3431":5,"3432":5,"3433":3,"3434":9,"3435":3,"3436":3,"3437":4,"3438":4,"3439":7,"3440":9,"3441":5,"3442":5,"3443":3,"3444":4,"3445":3,"3446":4,"3447":6,"3448":8,"3449":2,"3450":4,"3451":7,"3452":7,"3453":2,"3454":7,"3455":4,"3456":4,"3457":6,"3458":4,"3459":6,"3460":3,"3461":4,"3462":2,"3463":5,"3464":4,"3465":3,"3466":2,"3467":5,"3468":4,"3469":4,"3470":3,"3471":4,"3472":2,"3473":4,"3474":2,"3475":4,"3476":6,"3477":5,"3478":5,"3479":3,"3480":1,"3481":3,"3482":6,"3483":3,"3484":5,"3485":4,"3486":4,"3487":2,"3488":4,"3489":8,"3490":4,"3491":4,"3492":4,"3493":3,"3494":3,"3495":3,"3496":2,"3497":5,"3498":4,"3499":3,"3500":7,"3501":2,"3502":4,"3503":4,"3504":4,"3505":4,"3506":3,"3507":5,"3508":7,"3509":5,"3510":6,"3511":2,"3512":5,"3513":4,"3514":3,"3515":6,"3516":4,"3517":5,"3518":3,"3519":4,"3520":4,"3521":4,"3522":5,"3523":3,"3524":4,"3525":1,"3526":1,"3527":5,"3528":3,"3529":1,"3530":1,"3531":7,"3532":5,"3533":5,"3534":3,"3535":8,"3536":3,"3537":3,"3538":4,"3539":5,"3540":4,"3541":8,"3542":5,"3543":3,"3544":5,"3545":2,"3546":4,"3547":2,"3548":3,"3549":5,"3550":4,"3551":3,"3552":2,"3553":3,"3554":4,"3555":3,"3556":3,"3557":2,"3558":4,"3559":3,"3560":4,"3561":3,"3562":4,"3563":2,"3564":2,"3565":2,"3566":7,"3567":4,"3568":4,"3569":3,"3570":5,"3571":3,"3572":4,"3573":3,"3574":4,"3575":4,"3576":5,"3577":4,"3578":7,"3579":3,"3580":7,"3581":3,"3582":4,"3583":4,"3584":3,"3585":4,"3586":3,"3587":2,"3588":5,"3589":4,"3590":4,"3591":1,"3592":2,"3593":4,"3594":3,"3595":8,"3596":4,"3597":5,"3598":3,"3599":4,"3600":4,"3601":5,"3602":2,"3603":4,"3604":5,"3605":5,"3606":3,"3607":4,"3608":5,"3609":4,"3610":3,"3611":6,"3612":4,"3613":9,"3614":5,"3615":4,"3616":3,"3617":9,"3618":4,"3619":7,"3620":4,"3621":5,"3622":3,"3623":1,"3624":2,"3625":6,"3626":2,"3627":4,"3628":4,"3629":3,"3630":6,"3631":8,"3632":5,"3633":6,"3634":6,"3635":4,"3636":4,"3637":4,"3638":4,"3639":8,"3640":5,"3641":2,"3642":5,"3643":4,"3644":7,"3645":9,"3646":5,"3647":2,"3648":3,"3649":2,"3650":2,"3651":4,"3652":3,"3653":3,"3654":5,"3655":2,"3656":1,"3657":4,"3658":3,"3659":2,"3660":5,"3661":5,"3662":4,"3663":8,"3664":3,"3665":4,"3666":5,"3667":5,"3668":2,"3669":4,"3670":2,"3671":4,"3672":3,"3673":4,"3674":7,"3675":3,"3676":3,"3677":5,"3678":9,"3679":8,"3680":4,"3681":4,"3682":4,"3683":4,"3684":5,"3685":4,"3686":3,"3687":6,"3688":7,"3689":3,"3690":6,"3691":5,"3692":4,"3693":4,"3694":4,"3695":1,"3696":3,"3697":6,"3698":4,"3699":1,"3700":3,"3701":5,"3702":5,"3703":4,"3704":1,"3705":9,"3706":3,"3707":4,"3708":4,"3709":6,"3710":4,"3711":3,"3712":5,"3713":7,"3714":3,"3715":2,"3716":3,"3717":8,"3718":4,"3719":3,"3720":5,"3721":2,"3722":4,"3723":4,"3724":2,"3725":1,"3726":5,"3727":3,"3728":4,"3729":4,"3730":3,"3731":8,"3732":4,"3733":3,"3734":4,"3735":2,"3736":4,"3737":3,"3738":5,"3739":3,"3740":4,"3741":3,"3742":5,"3743":1,"3744":3,"3745":5,"3746":6,"3747":4,"3748":3,"3749":4,"3750":5,"3751":6,"3752":3,"3753":5,"3754":6,"3755":4,"3756":5,"3757":3,"3758":4,"3759":7,"3760":4,"3761":4,"3762":4,"3763":3,"3764":5,"3765":3,"3766":2,"3767":4,"3768":8,"3769":5,"3770":3,"3771":9,"3772":4,"3773":3,"3774":2,"3775":3,"3776":3,"3777":4,"3778":3,"3779":2,"3780":5,"3781":3,"3782":6,"3783":2,"3784":5,"3785":3,"3786":4,"3787":2,"3788":3,"3789":4,"3790":3,"3791":4,"3792":4,"3793":4,"3794":1,"3795":3,"3796":6,"3797":3,"3798":3,"3799":6,"3800":4,"3801":2,"3802":5,"3803":6,"3804":4,"3805":8,"3806":4,"3807":4,"3808":3,"3809":4,"3810":4,"3811":6,"3812":4,"3813":5,"3814":4,"3815":4,"3816":4,"3817":5,"3818":4,"3819":4,"3820":8,"3821":3,"3822":2,"3823":3,"3824":3,"3825":4,"3826":1,"3827":3,"3828":5,"3829":5,"3830":2,"3831":4,"3832":8,"3833":7,"3834":3,"3835":4,"3836":4,"3837":4,"3838":3,"3839":3,"3840":4,"3841":4,"3842":4,"3843":5,"3844":2,"3845":6,"3846":3,"3847":4,"3848":3,"3849":3,"3850":4,"3851":4,"3852":2,"3853":3,"3854":8,"3855":5,"3856":4,"3857":3,"3858":2,"3859":5,"3860":3,"3861":5,"3862":3,"3863":4,"3864":4,"3865":5,"3866":5,"3867":4,"3868":4,"3869":5,"3870":5,"3871":6,"3872":5,"3873":4,"3874":1,"3875":4,"3876":2,"3877":3,"3878":4,"3879":6,"3880":3,"3881":5,"3882":1,"3883":3,"3884":8,"3885":7,"3886":3,"3887":3,"3888":3,"3889":5,"3890":2,"3891":3,"3892":3,"3893":4,"3894":2,"3895":5,"3896":8,"3897":1,"3898":3,"3899":4,"3900":5,"3901":4,"3902":3,"3903":1,"3904":4,"3905":7,"3906":4,"3907":4,"3908":4,"3909":3,"3910":1,"3911":3,"3912":2,"3913":7,"3914":5,"3915":4,"3916":4,"3917":2,"3918":5,"3919":4,"3920":4,"3921":9,"3922":3,"3923":2,"3924":2,"3925":5,"3926":3,"3927":3,"3928":4,"3929":3,"3930":5,"3931":4,"3932":4,"3933":2,"3934":4,"3935":7,"3936":2,"3937":1,"3938":3,"3939":9,"3940":2,"3941":4,"3942":4,"3943":3,"3944":4,"3945":5,"3946":8,"3947":3,"3948":3,"3949":5,"3950":5,"3951":4,"3952":5,"3953":7,"3954":3,"3955":4,"3956":4,"3957":3,"3958":2,"3959":7,"3960":4,"3961":5,"3962":5,"3963":3,"3964":5,"3965":4,"3966":5,"3967":4,"3968":7,"3969":3,"3970":2,"3971":5,"3972":4,"3973":7,"3974":3,"3975":5,"3976":6,"3977":3,"3978":4,"3979":5,"3980":4,"3981":3,"3982":5,"3983":4,"3984":5,"3985":8,"3986":8,"3987":3,"3988":5,"3989":3,"3990":3,"3991":3,"3992":3,"3993":5,"3994":5,"3995":3,"3996":3,"3997":5,"3998":8,"3999":4,"4000":4,"4001":4,"4002":3,"4003":4,"4004":3,"4005":7,"4006":3,"4007":3,"4008":4,"4009":3,"4010":3,"4011":4,"4012":3,"4013":3,"4014":4,"4015":4,"4016":4,"4017":4,"4018":3,"4019":5,"4020":3,"4021":6,"4022":6,"4023":4,"4024":3,"4025":6,"4026":3,"4027":2,"4028":6,"4029":3,"4030":4,"4031":9,"4032":4,"4033":4,"4034":1,"4035":1,"4036":7,"4037":2,"4038":3,"4039":4,"4040":2,"4041":7,"4042":6,"4043":3,"4044":6,"4045":9,"4046":4,"4047":4,"4048":3,"4049":4,"4050":3,"4051":4,"4052":4,"4053":4,"4054":7,"4055":4,"4056":1,"4057":1,"4058":5,"4059":2,"4060":2,"4061":3,"4062":1,"4063":4,"4064":7,"4065":2,"4066":4,"4067":5,"4068":4,"4069":5,"4070":6,"4071":1,"4072":4,"4073":3,"4074":2,"4075":3,"4076":2,"4077":4,"4078":2,"4079":5,"4080":4,"4081":5,"4082":7,"4083":4,"4084":5,"4085":5,"4086":2,"4087":8,"4088":3,"4089":2,"4090":4,"4091":3,"4092":4,"4093":4,"4094":3,"4095":6,"4096":3,"4097":4,"4098":1,"4099":4,"4100":7,"4101":3,"4102":4,"4103":5,"4104":2,"4105":8,"4106":2,"4107":3,"4108":5,"4109":5,"4110":3,"4111":3,"4112":1,"4113":4,"4114":3,"4115":4,"4116":3,"4117":4,"4118":7,"4119":5,"4120":3,"4121":4,"4122":3,"4123":4,"4124":7,"4125":4,"4126":2,"4127":3,"4128":3,"4129":3,"4130":2,"4131":5,"4132":2,"4133":4,"4134":4,"4135":5,"4136":5,"4137":6,"4138":1,"4139":4,"4140":3,"4141":4,"4142":1,"4143":6,"4144":4,"4145":4,"4146":4,"4147":4,"4148":2,"4149":5,"4150":8,"4151":1,"4152":1,"4153":3,"4154":3,"4155":5,"4156":4,"4157":2,"4158":3,"4159":3,"4160":1,"4161":2,"4162":7,"4163":3,"4164":4,"4165":4,"4166":1,"4167":5,"4168":3,"4169":8,"4170":5,"4171":6,"4172":5,"4173":5,"4174":4,"4175":4,"4176":5,"4177":5,"4178":3,"4179":4,"4180":3,"4181":4,"4182":4,"4183":5,"4184":1,"4185":8,"4186":5,"4187":4,"4188":7,"4189":5,"4190":5,"4191":4,"4192":4,"4193":2,"4194":7,"4195":2,"4196":1,"4197":4,"4198":3,"4199":9,"4200":4,"4201":5,"4202":6,"4203":5,"4204":3,"4205":6,"4206":5,"4207":3,"4208":4,"4209":9,"4210":7,"4211":2,"4212":7,"4213":2,"4214":5,"4215":4,"4216":3,"4217":3,"4218":3,"4219":9,"4220":4,"4221":3,"4222":3,"4223":7,"4224":8,"4225":6,"4226":4,"4227":5,"4228":5,"4229":4,"4230":4,"4231":3,"4232":4,"4233":2,"4234":3,"4235":4,"4236":4,"4237":3,"4238":5,"4239":5,"4240":3,"4241":3,"4242":3,"4243":4,"4244":4,"4245":3,"4246":2,"4247":9,"4248":3,"4249":3,"4250":4,"4251":2,"4252":4,"4253":1,"4254":2,"4255":4,"4256":4,"4257":3,"4258":4,"4259":4,"4260":3,"4261":4,"4262":4,"4263":2,"4264":3,"4265":7,"4266":4,"4267":7,"4268":3,"4269":3,"4270":4,"4271":4,"4272":3,"4273":1,"4274":4,"4275":8,"4276":5,"4277":3,"4278":4,"4279":7,"4280":3,"4281":3,"4282":4,"4283":3,"4284":3,"4285":2,"4286":4,"4287":5,"4288":3,"4289":4,"4290":2,"4291":2,"4292":4,"4293":3,"4294":3,"4295":2,"4296":3,"4297":8,"4298":2,"4299":4,"4300":3,"4301":4,"4302":9,"4303":2,"4304":3,"4305":5,"4306":3,"4307":3,"4308":4,"4309":7,"4310":7,"4311":3,"4312":4,"4313":3,"4314":3,"4315":3,"4316":4,"4317":4,"4318":6,"4319":2,"4320":4,"4321":3,"4322":4,"4323":5,"4324":4,"4325":4,"4326":4,"4327":4,"4328":4,"4329":8,"4330":6,"4331":4,"4332":5,"4333":4,"4334":5,"4335":3,"4336":3,"4337":2,"4338":6,"4339":3,"4340":3,"4341":5,"4342":4,"4343":2,"4344":4,"4345":4,"4346":3,"4347":6,"4348":2,"4349":7,"4350":3,"4351":5,"4352":4,"4353":5,"4354":7,"4355":1,"4356":4,"4357":7,"4358":4,"4359":4,"4360":3,"4361":8,"4362":3,"4363":4,"4364":4,"4365":4,"4366":4,"4367":3,"4368":4,"4369":3,"4370":4,"4371":9,"4372":3,"4373":7,"4374":2,"4375":4,"4376":7,"4377":6,"4378":4,"4379":3,"4380":5,"4381":4,"4382":4,"4383":3,"4384":4,"4385":7,"4386":5,"4387":6,"4388":4,"4389":2,"4390":4,"4391":3,"4392":3,"4393":5,"4394":4,"4395":9,"4396":5,"4397":3,"4398":3,"4399":9,"4400":3,"4401":5,"4402":2,"4403":8,"4404":5,"4405":2,"4406":4,"4407":8,"4408":4,"4409":3,"4410":3,"4411":3,"4412":5,"4413":3,"4414":3,"4415":5,"4416":2,"4417":1,"4418":7,"4419":5,"4420":4,"4421":7,"4422":3,"4423":5,"4424":7,"4425":4,"4426":5,"4427":4,"4428":4,"4429":4,"4430":4,"4431":9,"4432":4,"4433":2,"4434":7,"4435":4,"4436":5,"4437":2,"4438":3,"4439":5,"4440":3,"4441":5,"4442":4,"4443":4,"4444":7,"4445":3,"4446":4,"4447":4,"4448":3,"4449":4,"4450":3,"4451":3,"4452":3,"4453":2,"4454":6,"4455":4,"4456":3,"4457":4,"4458":2,"4459":4,"4460":4,"4461":7,"4462":6,"4463":5,"4464":6,"4465":4,"4466":5,"4467":3,"4468":4,"4469":4,"4470":5,"4471":3,"4472":4,"4473":3,"4474":4,"4475":4,"4476":4,"4477":2,"4478":9,"4479":3,"4480":4,"4481":4,"4482":4,"4483":3,"4484":2,"4485":3,"4486":4,"4487":7,"4488":3,"4489":4,"4490":4,"4491":4,"4492":4,"4493":6,"4494":5,"4495":4,"4496":4,"4497":3,"4498":3,"4499":2,"4500":6,"4501":3,"4502":7,"4503":3,"4504":1,"4505":2,"4506":5,"4507":5,"4508":4,"4509":6,"4510":4,"4511":5,"4512":2,"4513":3,"4514":7,"4515":4,"4516":3,"4517":3,"4518":2,"4519":2,"4520":5,"4521":4,"4522":3,"4523":5,"4524":8,"4525":3,"4526":4,"4527":3,"4528":5,"4529":4,"4530":1,"4531":1,"4532":7,"4533":3,"4534":3,"4535":3,"4536":9,"4537":4,"4538":4,"4539":3,"4540":3,"4541":4,"4542":3,"4543":4,"4544":2,"4545":3,"4546":5,"4547":5,"4548":3,"4549":4,"4550":8,"4551":2,"4552":1,"4553":3,"4554":1,"4555":4,"4556":4,"4557":5,"4558":4,"4559":5,"4560":7,"4561":4,"4562":5,"4563":8,"4564":6,"4565":2,"4566":4,"4567":6,"4568":2,"4569":3,"4570":4,"4571":4,"4572":3,"4573":5,"4574":4,"4575":2,"4576":4,"4577":5,"4578":4,"4579":2,"4580":4,"4581":4,"4582":5,"4583":7,"4584":3,"4585":4,"4586":3,"4587":4,"4588":1,"4589":3,"4590":4,"4591":4,"4592":5,"4593":8,"4594":4,"4595":3,"4596":4,"4597":2,"4598":8,"4599":6,"4600":4,"4601":4,"4602":6,"4603":2,"4604":3,"4605":7,"4606":9,"4607":5,"4608":4,"4609":7,"4610":1,"4611":4,"4612":3,"4613":3,"4614":4,"4615":6,"4616":5,"4617":1,"4618":2,"4619":1,"4620":4,"4621":6,"4622":8,"4623":3,"4624":7,"4625":9,"4626":4,"4627":3,"4628":2,"4629":9,"4630":5,"4631":8,"4632":5,"4633":6,"4634":5,"4635":6,"4636":8,"4637":3,"4638":3,"4639":6,"4640":3,"4641":4,"4642":1,"4643":1,"4644":2,"4645":1,"4646":3,"4647":4,"4648":3,"4649":3,"4650":5,"4651":2,"4652":1,"4653":1,"4654":3,"4655":5,"4656":5,"4657":5,"4658":4,"4659":5,"4660":3,"4661":6,"4662":6,"4663":7,"4664":2,"4665":2,"4666":7,"4667":3,"4668":5,"4669":4,"4670":5,"4671":4,"4672":4,"4673":5,"4674":5,"4675":4,"4676":5,"4677":4,"4678":5,"4679":4,"4680":2,"4681":4,"4682":4,"4683":4,"4684":5,"4685":3,"4686":3,"4687":4,"4688":5,"4689":4,"4690":4,"4691":5,"4692":3,"4693":5,"4694":2,"4695":5,"4696":5,"4697":3,"4698":3,"4699":3,"4700":2,"4701":1,"4702":1,"4703":4,"4704":1,"4705":7,"4706":4,"4707":4,"4708":4,"4709":4,"4710":3,"4711":1,"4712":2,"4713":8,"4714":5,"4715":1,"4716":3,"4717":1,"4718":6,"4719":3,"4720":2,"4721":8,"4722":2,"4723":1,"4724":4,"4725":1,"4726":3,"4727":4,"4728":3,"4729":3,"4730":4,"4731":2,"4732":2,"4733":3,"4734":4,"4735":5,"4736":4,"4737":7,"4738":2,"4739":1,"4740":2,"4741":4,"4742":5,"4743":2,"4744":2,"4745":7,"4746":4,"4747":2,"4748":2,"4749":3,"4750":7,"4751":4,"4752":5,"4753":8,"4754":1,"4755":3,"4756":3,"4757":4,"4758":5,"4759":4,"4760":5,"4761":2,"4762":8,"4763":4,"4764":2,"4765":4,"4766":5,"4767":1,"4768":1,"4769":7,"4770":7,"4771":2,"4772":4,"4773":5,"4774":3,"4775":3,"4776":2,"4777":3,"4778":1,"4779":6,"4780":3,"4781":3,"4782":5,"4783":2,"4784":2,"4785":6,"4786":4,"4787":3,"4788":6,"4789":4,"4790":4,"4791":4,"4792":4,"4793":4,"4794":4,"4795":6,"4796":8,"4797":4,"4798":5,"4799":7,"4800":3,"4801":3,"4802":4,"4803":3,"4804":5,"4805":4,"4806":3,"4807":3,"4808":5,"4809":5,"4810":6,"4811":4,"4812":3,"4813":5,"4814":6,"4815":4,"4816":3,"4817":5,"4818":6,"4819":5,"4820":4,"4821":5,"4822":3,"4823":4,"4824":5,"4825":1,"4826":4,"4827":1,"4828":3,"4829":3,"4830":3,"4831":4,"4832":3,"4833":4,"4834":7,"4835":6,"4836":2,"4837":4,"4838":1,"4839":2,"4840":7,"4841":3,"4842":4,"4843":3,"4844":3,"4845":3,"4846":5,"4847":3,"4848":4,"4849":3,"4850":4,"4851":1,"4852":4,"4853":4,"4854":2,"4855":4,"4856":7,"4857":6,"4858":5,"4859":4,"4860":2,"4861":2,"4862":2,"4863":8,"4864":3,"4865":5,"4866":3,"4867":8,"4868":4,"4869":3,"4870":3,"4871":5,"4872":7,"4873":4,"4874":5,"4875":7,"4876":1,"4877":5,"4878":3,"4879":4,"4880":3,"4881":4,"4882":3,"4883":3,"4884":4,"4885":3,"4886":9,"4887":6,"4888":5,"4889":3,"4890":9,"4891":3,"4892":3,"4893":5,"4894":4,"4895":4,"4896":3,"4897":3,"4898":5,"4899":4,"4900":1,"4901":6,"4902":2,"4903":4,"4904":5,"4905":3,"4906":3,"4907":5,"4908":3,"4909":7,"4910":3,"4911":9,"4912":3,"4913":4,"4914":4,"4915":3,"4916":4,"4917":3,"4918":4,"4919":2,"4920":4,"4921":4,"4922":4,"4923":4,"4924":5,"4925":5,"4926":4,"4927":5,"4928":5,"4929":5,"4930":5,"4931":8,"4932":6,"4933":4,"4934":7,"4935":4,"4936":4,"4937":5,"4938":8,"4939":3,"4940":6,"4941":5,"4942":5,"4943":3,"4944":6,"4945":2,"4946":3,"4947":4,"4948":3,"4949":7,"4950":4,"4951":6,"4952":4,"4953":3,"4954":3,"4955":4,"4956":9,"4957":5,"4958":1,"4959":3,"4960":4,"4961":4,"4962":3,"4963":3,"4964":4,"4965":7,"4966":5,"4967":1,"4968":4,"4969":4,"4970":4,"4971":4,"4972":4,"4973":9,"4974":1,"4975":1,"4976":3,"4977":7,"4978":1,"4979":4,"4980":5,"4981":4,"4982":4,"4983":9,"4984":4,"4985":3,"4986":3,"4987":5,"4988":3,"4989":4,"4990":4,"4991":3,"4992":8,"4993":4,"4994":2,"4995":5,"4996":4,"4997":3,"4998":1,"4999":7,"5000":6,"5001":1,"5002":4,"5003":4,"5004":2,"5005":4,"5006":3,"5007":4,"5008":4,"5009":6,"5010":2,"5011":5,"5012":3,"5013":4,"5014":2,"5015":3,"5016":5,"5017":1,"5018":4,"5019":7,"5020":5,"5021":4,"5022":4,"5023":4,"5024":6,"5025":4,"5026":4,"5027":4,"5028":3,"5029":5,"5030":3,"5031":5,"5032":4,"5033":5,"5034":4,"5035":5,"5036":3,"5037":3,"5038":4,"5039":7,"5040":3,"5041":4,"5042":4,"5043":1,"5044":4,"5045":3,"5046":3,"5047":3,"5048":6,"5049":2,"5050":4,"5051":3,"5052":2,"5053":3,"5054":3,"5055":2,"5056":4,"5057":4,"5058":4,"5059":5,"5060":2,"5061":3,"5062":4,"5063":3,"5064":3,"5065":3,"5066":3,"5067":4,"5068":4,"5069":3,"5070":4,"5071":5,"5072":5,"5073":3,"5074":3,"5075":6,"5076":1,"5077":5,"5078":4,"5079":3,"5080":4,"5081":6,"5082":3,"5083":4,"5084":3,"5085":3,"5086":3,"5087":2,"5088":3,"5089":3,"5090":2,"5091":9,"5092":8,"5093":3,"5094":5,"5095":5,"5096":4,"5097":8,"5098":2,"5099":5,"5100":4,"5101":1,"5102":3,"5103":6,"5104":6,"5105":4,"5106":4,"5107":5,"5108":3,"5109":2,"5110":1,"5111":3,"5112":5,"5113":8,"5114":2,"5115":4,"5116":7,"5117":2,"5118":4,"5119":3,"5120":4,"5121":7,"5122":4,"5123":4,"5124":4,"5125":5,"5126":3,"5127":2,"5128":3,"5129":3,"5130":3,"5131":3,"5132":5,"5133":1,"5134":5,"5135":1,"5136":4,"5137":3,"5138":5,"5139":3,"5140":3,"5141":4,"5142":4,"5143":8,"5144":4,"5145":3,"5146":4,"5147":3,"5148":2,"5149":4,"5150":3,"5151":4,"5152":2,"5153":3,"5154":5,"5155":3,"5156":3,"5157":4,"5158":3,"5159":8,"5160":2,"5161":2,"5162":3,"5163":3,"5164":3,"5165":4,"5166":1,"5167":2,"5168":3,"5169":4,"5170":1,"5171":5,"5172":3,"5173":3,"5174":3,"5175":8,"5176":4,"5177":5,"5178":9,"5179":5,"5180":3,"5181":2,"5182":5,"5183":5,"5184":7,"5185":4,"5186":5,"5187":7,"5188":4,"5189":3,"5190":2,"5191":3,"5192":4,"5193":3,"5194":4,"5195":6,"5196":6,"5197":8,"5198":4,"5199":3,"5200":3,"5201":5,"5202":4,"5203":5,"5204":3,"5205":3,"5206":4,"5207":2,"5208":4,"5209":4,"5210":4,"5211":2,"5212":4,"5213":2,"5214":3,"5215":3,"5216":4,"5217":1,"5218":4,"5219":5,"5220":6,"5221":4,"5222":4,"5223":7,"5224":3,"5225":5,"5226":4,"5227":6,"5228":4,"5229":5,"5230":3,"5231":7,"5232":3,"5233":3,"5234":6,"5235":5,"5236":3,"5237":3,"5238":3,"5239":3,"5240":4,"5241":3,"5242":4,"5243":5,"5244":4,"5245":3,"5246":3,"5247":4,"5248":2,"5249":3,"5250":2,"5251":3,"5252":3,"5253":4,"5254":4,"5255":4,"5256":2,"5257":3,"5258":4,"5259":3,"5260":4,"5261":9,"5262":3,"5263":3,"5264":4,"5265":3,"5266":3,"5267":7,"5268":6,"5269":4,"5270":5,"5271":7,"5272":3,"5273":2,"5274":4,"5275":5,"5276":3,"5277":4,"5278":4,"5279":5,"5280":4,"5281":3,"5282":1,"5283":5,"5284":5,"5285":5,"5286":6,"5287":6,"5288":4,"5289":4,"5290":5,"5291":7,"5292":5,"5293":6,"5294":8,"5295":3,"5296":3,"5297":2,"5298":3,"5299":4,"5300":5,"5301":3,"5302":1,"5303":3,"5304":3,"5305":3,"5306":3,"5307":4,"5308":4,"5309":3,"5310":3,"5311":5,"5312":1,"5313":3,"5314":3,"5315":4,"5316":3,"5317":3,"5318":4,"5319":2,"5320":4,"5321":5,"5322":4,"5323":5,"5324":5,"5325":5,"5326":3,"5327":1,"5328":1,"5329":9,"5330":1,"5331":2,"5332":2,"5333":5,"5334":3,"5335":4,"5336":2,"5337":4,"5338":3,"5339":8,"5340":3,"5341":3,"5342":6,"5343":8,"5344":4,"5345":2,"5346":3,"5347":4,"5348":8,"5349":4,"5350":4,"5351":3,"5352":7,"5353":7,"5354":6,"5355":2,"5356":2,"5357":4,"5358":2,"5359":3,"5360":3,"5361":2,"5362":3,"5363":1,"5364":4,"5365":3,"5366":3,"5367":1,"5368":4,"5369":2,"5370":3,"5371":1,"5372":4,"5373":3,"5374":3,"5375":5,"5376":2,"5377":2,"5378":3,"5379":4,"5380":7,"5381":5,"5382":5,"5383":4,"5384":2,"5385":7,"5386":3,"5387":9,"5388":5,"5389":7,"5390":4,"5391":4,"5392":5,"5393":4,"5394":4,"5395":6,"5396":3,"5397":4,"5398":3,"5399":3,"5400":2,"5401":7,"5402":2,"5403":6,"5404":4,"5405":5,"5406":3,"5407":3,"5408":4,"5409":4,"5410":4,"5411":9,"5412":8,"5413":6,"5414":2,"5415":3,"5416":3,"5417":3,"5418":3,"5419":3,"5420":4,"5421":4,"5422":5,"5423":5,"5424":4,"5425":3,"5426":2,"5427":9,"5428":6,"5429":3,"5430":4,"5431":7,"5432":1,"5433":2,"5434":1,"5435":3,"5436":5,"5437":4,"5438":5,"5439":4,"5440":6,"5441":5,"5442":5,"5443":3,"5444":4,"5445":4,"5446":3,"5447":4,"5448":4,"5449":2,"5450":5,"5451":4,"5452":8,"5453":4,"5454":5,"5455":3,"5456":7,"5457":1,"5458":3,"5459":8,"5460":4,"5461":3,"5462":7,"5463":7,"5464":5,"5465":2,"5466":4,"5467":4,"5468":4,"5469":5,"5470":3,"5471":6,"5472":4,"5473":6,"5474":2,"5475":1,"5476":3,"5477":2,"5478":8,"5479":5,"5480":4,"5481":5,"5482":4,"5483":4,"5484":3,"5485":4,"5486":7,"5487":4,"5488":4,"5489":4,"5490":3,"5491":4,"5492":3,"5493":5,"5494":5,"5495":8,"5496":5,"5497":3,"5498":4,"5499":3,"5500":3,"5501":4,"5502":4,"5503":4,"5504":5,"5505":6,"5506":7,"5507":3,"5508":4,"5509":5,"5510":4,"5511":5,"5512":7,"5513":5,"5514":4,"5515":4,"5516":6,"5517":8,"5518":8,"5519":4,"5520":2,"5521":4,"5522":4,"5523":3,"5524":4,"5525":2,"5526":4,"5527":7,"5528":5,"5529":4,"5530":7,"5531":3,"5532":7,"5533":4,"5534":5,"5535":2,"5536":8,"5537":4,"5538":1,"5539":1,"5540":4,"5541":3,"5542":3,"5543":3,"5544":1,"5545":6,"5546":4,"5547":2,"5548":4,"5549":2,"5550":5,"5551":4,"5552":4,"5553":2,"5554":3,"5555":2,"5556":4,"5557":2,"5558":6,"5559":8,"5560":4,"5561":9,"5562":3,"5563":4,"5564":1,"5565":2,"5566":2,"5567":3,"5568":3,"5569":5,"5570":3,"5571":1,"5572":5,"5573":3,"5574":5,"5575":3,"5576":6,"5577":4,"5578":4,"5579":3,"5580":4,"5581":5,"5582":3,"5583":2,"5584":7,"5585":3,"5586":4,"5587":3,"5588":2,"5589":7,"5590":2,"5591":5,"5592":4,"5593":5,"5594":4,"5595":4,"5596":6,"5597":3,"5598":7,"5599":7,"5600":5,"5601":2,"5602":8,"5603":7,"5604":7,"5605":4,"5606":3,"5607":4,"5608":4,"5609":4,"5610":7,"5611":4,"5612":4,"5613":4,"5614":4,"5615":4,"5616":3,"5617":5,"5618":1,"5619":3,"5620":3,"5621":6,"5622":4,"5623":1,"5624":4,"5625":5,"5626":4,"5627":3,"5628":4,"5629":4,"5630":5,"5631":5,"5632":4,"5633":4,"5634":5,"5635":3,"5636":5,"5637":4,"5638":7,"5639":2,"5640":3,"5641":5,"5642":9,"5643":3,"5644":7,"5645":5,"5646":4,"5647":3,"5648":2,"5649":3,"5650":3,"5651":4,"5652":4,"5653":5,"5654":3,"5655":1,"5656":3,"5657":4,"5658":1,"5659":3,"5660":3,"5661":4,"5662":4,"5663":3,"5664":3,"5665":4,"5666":4,"5667":5,"5668":4,"5669":3,"5670":4,"5671":4,"5672":4,"5673":3,"5674":5,"5675":2,"5676":3,"5677":9,"5678":2,"5679":5,"5680":9,"5681":3,"5682":7,"5683":3,"5684":6,"5685":3,"5686":4,"5687":4,"5688":7,"5689":8,"5690":3,"5691":4,"5692":4,"5693":4,"5694":3,"5695":4,"5696":1,"5697":4,"5698":3,"5699":3,"5700":3,"5701":4,"5702":5,"5703":3,"5704":1,"5705":5,"5706":2,"5707":1,"5708":3,"5709":5,"5710":4,"5711":5,"5712":4,"5713":9,"5714":3,"5715":2,"5716":7,"5717":3,"5718":1,"5719":2,"5720":1,"5721":4,"5722":4,"5723":4,"5724":8,"5725":4,"5726":4,"5727":9,"5728":1,"5729":7,"5730":3,"5731":3,"5732":5,"5733":7,"5734":4,"5735":2,"5736":3,"5737":4,"5738":3,"5739":3,"5740":4,"5741":3,"5742":5,"5743":3,"5744":4,"5745":5,"5746":4,"5747":4,"5748":4,"5749":3,"5750":2,"5751":4,"5752":4,"5753":3,"5754":3,"5755":3,"5756":3,"5757":3,"5758":2,"5759":3,"5760":2,"5761":3,"5762":7,"5763":4,"5764":7,"5765":5,"5766":2,"5767":4,"5768":4,"5769":4,"5770":3,"5771":3,"5772":4,"5773":3,"5774":3,"5775":5,"5776":2,"5777":3,"5778":4,"5779":3,"5780":7,"5781":1,"5782":8,"5783":4,"5784":3,"5785":6,"5786":2,"5787":9,"5788":3,"5789":4,"5790":2,"5791":8,"5792":2,"5793":1,"5794":4,"5795":5,"5796":4,"5797":4,"5798":2,"5799":2,"5800":3,"5801":4,"5802":4,"5803":4,"5804":4,"5805":1,"5806":4,"5807":1,"5808":9,"5809":2,"5810":4,"5811":6,"5812":9,"5813":4,"5814":3,"5815":6,"5816":2,"5817":2,"5818":4,"5819":4,"5820":3,"5821":4,"5822":4,"5823":1,"5824":4,"5825":1,"5826":7,"5827":3,"5828":4,"5829":3,"5830":7,"5831":3,"5832":7,"5833":6,"5834":6,"5835":6,"5836":4,"5837":2,"5838":3,"5839":4,"5840":4,"5841":4,"5842":4,"5843":9,"5844":1,"5845":5,"5846":3,"5847":7,"5848":4,"5849":7,"5850":5,"5851":3,"5852":2,"5853":4,"5854":1,"5855":5,"5856":4,"5857":4,"5858":4,"5859":4,"5860":4,"5861":5,"5862":6,"5863":3,"5864":7,"5865":2,"5866":5,"5867":1,"5868":4,"5869":3,"5870":5,"5871":5,"5872":3,"5873":3,"5874":5,"5875":1,"5876":4,"5877":2,"5878":5,"5879":4,"5880":5,"5881":5,"5882":6,"5883":6,"5884":2,"5885":5,"5886":3,"5887":4,"5888":1,"5889":3,"5890":5,"5891":4,"5892":3,"5893":5,"5894":4,"5895":5,"5896":5,"5897":7,"5898":3,"5899":4,"5900":2,"5901":4,"5902":4,"5903":5,"5904":3,"5905":6,"5906":3,"5907":5,"5908":5,"5909":3,"5910":4,"5911":2,"5912":6,"5913":3,"5914":4,"5915":3,"5916":5,"5917":7,"5918":4,"5919":3,"5920":4,"5921":4,"5922":3,"5923":3,"5924":3,"5925":3,"5926":4,"5927":5,"5928":5,"5929":5,"5930":5,"5931":2,"5932":4,"5933":5,"5934":4,"5935":2,"5936":3,"5937":2,"5938":4,"5939":4,"5940":4,"5941":2,"5942":3,"5943":6,"5944":9,"5945":3,"5946":4,"5947":3,"5948":4,"5949":3,"5950":2,"5951":2,"5952":4,"5953":2,"5954":1,"5955":4,"5956":2,"5957":4,"5958":3,"5959":7,"5960":4,"5961":2,"5962":6,"5963":4,"5964":4,"5965":3,"5966":5,"5967":4,"5968":2,"5969":8,"5970":4,"5971":4,"5972":6,"5973":3,"5974":2,"5975":4,"5976":5,"5977":5,"5978":4,"5979":6,"5980":5,"5981":4,"5982":3,"5983":8,"5984":4,"5985":3,"5986":3,"5987":9,"5988":2,"5989":4,"5990":2,"5991":4,"5992":4,"5993":3,"5994":5,"5995":8,"5996":4,"5997":4,"5998":4,"5999":4,"6000":4,"6001":2,"6002":4,"6003":4,"6004":5,"6005":3,"6006":5,"6007":4,"6008":3,"6009":6,"6010":5,"6011":1,"6012":5,"6013":6,"6014":3,"6015":2,"6016":4,"6017":5,"6018":3,"6019":1,"6020":7,"6021":3,"6022":5,"6023":3,"6024":5,"6025":3,"6026":6,"6027":3,"6028":2,"6029":3,"6030":4,"6031":3,"6032":2,"6033":3,"6034":4,"6035":2,"6036":4,"6037":2,"6038":4,"6039":4,"6040":6,"6041":1,"6042":3,"6043":3,"6044":3,"6045":4,"6046":5,"6047":4,"6048":4,"6049":6,"6050":3,"6051":3,"6052":4,"6053":5,"6054":5,"6055":2,"6056":3,"6057":3,"6058":4,"6059":4,"6060":4,"6061":4,"6062":3,"6063":4,"6064":4,"6065":5,"6066":5,"6067":2,"6068":3,"6069":2,"6070":3,"6071":3,"6072":3,"6073":3,"6074":4,"6075":4,"6076":8,"6077":4,"6078":5,"6079":4,"6080":3,"6081":3,"6082":6,"6083":5,"6084":3,"6085":3,"6086":9,"6087":3,"6088":4,"6089":5,"6090":5,"6091":1,"6092":3,"6093":4,"6094":1,"6095":1,"6096":3,"6097":3,"6098":2,"6099":5,"6100":4,"6101":7,"6102":4,"6103":1,"6104":5,"6105":3,"6106":3,"6107":5,"6108":5,"6109":5,"6110":1,"6111":5,"6112":7,"6113":5,"6114":3,"6115":5,"6116":8,"6117":4,"6118":5,"6119":4,"6120":4,"6121":4,"6122":4,"6123":2,"6124":3,"6125":6,"6126":3,"6127":5,"6128":3,"6129":4,"6130":4,"6131":5,"6132":5,"6133":5,"6134":3,"6135":5,"6136":2,"6137":5,"6138":3,"6139":3,"6140":3,"6141":9,"6142":8,"6143":2,"6144":6,"6145":4,"6146":4,"6147":4,"6148":4,"6149":8,"6150":3,"6151":3,"6152":3,"6153":2,"6154":3,"6155":4,"6156":1,"6157":1,"6158":3,"6159":6,"6160":4,"6161":4,"6162":4,"6163":5,"6164":4,"6165":2,"6166":5,"6167":3,"6168":7,"6169":5,"6170":4,"6171":1,"6172":1,"6173":4,"6174":4,"6175":7,"6176":3,"6177":4,"6178":2,"6179":1,"6180":2,"6181":4,"6182":3,"6183":5,"6184":2,"6185":5,"6186":3,"6187":4,"6188":7,"6189":3,"6190":1,"6191":5,"6192":3,"6193":2,"6194":7,"6195":3,"6196":5,"6197":3,"6198":5,"6199":2,"6200":4,"6201":6,"6202":4,"6203":5,"6204":3,"6205":4,"6206":3,"6207":2,"6208":3,"6209":5,"6210":3,"6211":5,"6212":6,"6213":3,"6214":4,"6215":2,"6216":2,"6217":6,"6218":7,"6219":4,"6220":4,"6221":4,"6222":3,"6223":7,"6224":7,"6225":5,"6226":8,"6227":3,"6228":4,"6229":4,"6230":4,"6231":4,"6232":6,"6233":3,"6234":4,"6235":5,"6236":4,"6237":5,"6238":4,"6239":4,"6240":1,"6241":3,"6242":3,"6243":5,"6244":5,"6245":4,"6246":3,"6247":4,"6248":4,"6249":3,"6250":3,"6251":5,"6252":5,"6253":5,"6254":8,"6255":3,"6256":2,"6257":1,"6258":4,"6259":4,"6260":4,"6261":3,"6262":8,"6263":3,"6264":3,"6265":3,"6266":4,"6267":3,"6268":4,"6269":4,"6270":3,"6271":4,"6272":6,"6273":3,"6274":2,"6275":2,"6276":4,"6277":1,"6278":4,"6279":3,"6280":4,"6281":3,"6282":5,"6283":5,"6284":5,"6285":1,"6286":7,"6287":3,"6288":4,"6289":5,"6290":3,"6291":4,"6292":4,"6293":4,"6294":5,"6295":9,"6296":5,"6297":2,"6298":3,"6299":5,"6300":4,"6301":4,"6302":5,"6303":4,"6304":5,"6305":3,"6306":4,"6307":3,"6308":6,"6309":3,"6310":3,"6311":6,"6312":1,"6313":4,"6314":2,"6315":2,"6316":5,"6317":4,"6318":4,"6319":9,"6320":4,"6321":3,"6322":5,"6323":3,"6324":6,"6325":4,"6326":3,"6327":4,"6328":9,"6329":4,"6330":2,"6331":4,"6332":1,"6333":3,"6334":2,"6335":5,"6336":3,"6337":4,"6338":5,"6339":4,"6340":2,"6341":5,"6342":2,"6343":2,"6344":4,"6345":3,"6346":5,"6347":4,"6348":1,"6349":4,"6350":8,"6351":4,"6352":4,"6353":8,"6354":4,"6355":3,"6356":3,"6357":3,"6358":6,"6359":2,"6360":4,"6361":3,"6362":4,"6363":3,"6364":5,"6365":3,"6366":3,"6367":5,"6368":5,"6369":3,"6370":2,"6371":4,"6372":9,"6373":3,"6374":3,"6375":5,"6376":7,"6377":3,"6378":3,"6379":4,"6380":4,"6381":7,"6382":3,"6383":9,"6384":6,"6385":1,"6386":1,"6387":3,"6388":3,"6389":5,"6390":2,"6391":3,"6392":3,"6393":3,"6394":3,"6395":2,"6396":4,"6397":4,"6398":5,"6399":4,"6400":8,"6401":3,"6402":5,"6403":4,"6404":6,"6405":4,"6406":3,"6407":3,"6408":4,"6409":3,"6410":8,"6411":4,"6412":9,"6413":3,"6414":6,"6415":2,"6416":8,"6417":3,"6418":3,"6419":3,"6420":5,"6421":1,"6422":4,"6423":2,"6424":3,"6425":5,"6426":5,"6427":4,"6428":4,"6429":1,"6430":4,"6431":2,"6432":2,"6433":5,"6434":4,"6435":2,"6436":7,"6437":4,"6438":5,"6439":4,"6440":4,"6441":4,"6442":4,"6443":9,"6444":3,"6445":2,"6446":2,"6447":3,"6448":5,"6449":7,"6450":2,"6451":3,"6452":2,"6453":3,"6454":2,"6455":2,"6456":4,"6457":3,"6458":3,"6459":5,"6460":4,"6461":3,"6462":3,"6463":1,"6464":4,"6465":3,"6466":2,"6467":2,"6468":7,"6469":3,"6470":4,"6471":7,"6472":3,"6473":2,"6474":4,"6475":2,"6476":5,"6477":3,"6478":3,"6479":8,"6480":3,"6481":4,"6482":8,"6483":3,"6484":5,"6485":3,"6486":5,"6487":4,"6488":3,"6489":2,"6490":6,"6491":4,"6492":4,"6493":4,"6494":5,"6495":4,"6496":2,"6497":1,"6498":4,"6499":5,"6500":2,"6501":6,"6502":3,"6503":4,"6504":4,"6505":4,"6506":3,"6507":3,"6508":4,"6509":4,"6510":6,"6511":3,"6512":3,"6513":9,"6514":6,"6515":1,"6516":4,"6517":5,"6518":7,"6519":4,"6520":4,"6521":3,"6522":3,"6523":4,"6524":4,"6525":5,"6526":4,"6527":3,"6528":3,"6529":4,"6530":2,"6531":5,"6532":4,"6533":3,"6534":3,"6535":4,"6536":3,"6537":3,"6538":3,"6539":3,"6540":4,"6541":4,"6542":3,"6543":5,"6544":4,"6545":3,"6546":7,"6547":5,"6548":3,"6549":2,"6550":4,"6551":3,"6552":5,"6553":4,"6554":5,"6555":4,"6556":4,"6557":4,"6558":9,"6559":3,"6560":3,"6561":5,"6562":6,"6563":7,"6564":4,"6565":4,"6566":8,"6567":5,"6568":4,"6569":5,"6570":4,"6571":3,"6572":7,"6573":1,"6574":4,"6575":9,"6576":1,"6577":4,"6578":5,"6579":2,"6580":4,"6581":6,"6582":9,"6583":5,"6584":4,"6585":5,"6586":4,"6587":5,"6588":2,"6589":4,"6590":4,"6591":6,"6592":4,"6593":3,"6594":4,"6595":3,"6596":4,"6597":3,"6598":3,"6599":9,"6600":4,"6601":3,"6602":2,"6603":5,"6604":3,"6605":5,"6606":3,"6607":9,"6608":4,"6609":1,"6610":2,"6611":3,"6612":6,"6613":3,"6614":1,"6615":7,"6616":3,"6617":3,"6618":4,"6619":2,"6620":2,"6621":7,"6622":3,"6623":3,"6624":7,"6625":3,"6626":2,"6627":3,"6628":4,"6629":4,"6630":6,"6631":4,"6632":8,"6633":5,"6634":2,"6635":5,"6636":3,"6637":7,"6638":3,"6639":4,"6640":4,"6641":5,"6642":4,"6643":5,"6644":4,"6645":5,"6646":5,"6647":4,"6648":4,"6649":5,"6650":4,"6651":3,"6652":5,"6653":2,"6654":4,"6655":5,"6656":6,"6657":4,"6658":3,"6659":2,"6660":3,"6661":5,"6662":7,"6663":4,"6664":3,"6665":3,"6666":3,"6667":2,"6668":8,"6669":2,"6670":7,"6671":6,"6672":5,"6673":2,"6674":6,"6675":4,"6676":2,"6677":7,"6678":3,"6679":6,"6680":5,"6681":5,"6682":2,"6683":3,"6684":4,"6685":4,"6686":2,"6687":5,"6688":3,"6689":9,"6690":4,"6691":6,"6692":2,"6693":4,"6694":3,"6695":8,"6696":3,"6697":1,"6698":2,"6699":4,"6700":3,"6701":4,"6702":4,"6703":1,"6704":4,"6705":3,"6706":3,"6707":5,"6708":3,"6709":4,"6710":3,"6711":8,"6712":4,"6713":3,"6714":2,"6715":4,"6716":6,"6717":4,"6718":7,"6719":5,"6720":3,"6721":3,"6722":6,"6723":2,"6724":3,"6725":4,"6726":3,"6727":2,"6728":7,"6729":1,"6730":3,"6731":3,"6732":5,"6733":2,"6734":3,"6735":3,"6736":1,"6737":4,"6738":4,"6739":4,"6740":4,"6741":3,"6742":4,"6743":1,"6744":8,"6745":6,"6746":1,"6747":3,"6748":4,"6749":3,"6750":3,"6751":4,"6752":3,"6753":5,"6754":9,"6755":3,"6756":3,"6757":3,"6758":2,"6759":4,"6760":4,"6761":1,"6762":5,"6763":6,"6764":4,"6765":2,"6766":4,"6767":3,"6768":3,"6769":5,"6770":5,"6771":4,"6772":4,"6773":5,"6774":7,"6775":5,"6776":9,"6777":4,"6778":3,"6779":3,"6780":5,"6781":7,"6782":3,"6783":4,"6784":4,"6785":4,"6786":4,"6787":3,"6788":4,"6789":4,"6790":4,"6791":5,"6792":3,"6793":5,"6794":4,"6795":3,"6796":8,"6797":4,"6798":5,"6799":8,"6800":3,"6801":4,"6802":2,"6803":4,"6804":5,"6805":4,"6806":4,"6807":4,"6808":4,"6809":3,"6810":4,"6811":3,"6812":4,"6813":8,"6814":4,"6815":3,"6816":7,"6817":3,"6818":4,"6819":5,"6820":4,"6821":4,"6822":4,"6823":3,"6824":4,"6825":4,"6826":6,"6827":7,"6828":3,"6829":4,"6830":4,"6831":4,"6832":7,"6833":1,"6834":4,"6835":4,"6836":5,"6837":4,"6838":4,"6839":3,"6840":3,"6841":3,"6842":3,"6843":4,"6844":3,"6845":4,"6846":4,"6847":1,"6848":9,"6849":4,"6850":3,"6851":7,"6852":4,"6853":6,"6854":4,"6855":2,"6856":4,"6857":5,"6858":5,"6859":4,"6860":3,"6861":2,"6862":3,"6863":4,"6864":4,"6865":5,"6866":4,"6867":6,"6868":2,"6869":4,"6870":4,"6871":5,"6872":1,"6873":7,"6874":3,"6875":4,"6876":6,"6877":2,"6878":6,"6879":2,"6880":4,"6881":5,"6882":4,"6883":7,"6884":5,"6885":7,"6886":5,"6887":3,"6888":2,"6889":5,"6890":4,"6891":3,"6892":5,"6893":4,"6894":4,"6895":4,"6896":6,"6897":3,"6898":5,"6899":4,"6900":4,"6901":5,"6902":3,"6903":3,"6904":4,"6905":4,"6906":7,"6907":4,"6908":2,"6909":4,"6910":4,"6911":4,"6912":4,"6913":5,"6914":4,"6915":3,"6916":4,"6917":2,"6918":5,"6919":4,"6920":4,"6921":4,"6922":4,"6923":4,"6924":3,"6925":5,"6926":3,"6927":5,"6928":1,"6929":5,"6930":4,"6931":2,"6932":3,"6933":4,"6934":5,"6935":4,"6936":4,"6937":7,"6938":3,"6939":5,"6940":3,"6941":4,"6942":7,"6943":4,"6944":4,"6945":2,"6946":8,"6947":3,"6948":4,"6949":4,"6950":6,"6951":4,"6952":3,"6953":7,"6954":3,"6955":4,"6956":7,"6957":4,"6958":3,"6959":5,"6960":3,"6961":4,"6962":4,"6963":4,"6964":5,"6965":5,"6966":5,"6967":3,"6968":4,"6969":4,"6970":4,"6971":5,"6972":5,"6973":4,"6974":3,"6975":4,"6976":3,"6977":4,"6978":4,"6979":4,"6980":4,"6981":9,"6982":3,"6983":3,"6984":5,"6985":4,"6986":3,"6987":4,"6988":3,"6989":4,"6990":3,"6991":3,"6992":3,"6993":3,"6994":3,"6995":5,"6996":3,"6997":3,"6998":4,"6999":2,"7000":2,"7001":5,"7002":5,"7003":3,"7004":1,"7005":5,"7006":2,"7007":3,"7008":3,"7009":4,"7010":5,"7011":4,"7012":2,"7013":7,"7014":1,"7015":8,"7016":8,"7017":6,"7018":5,"7019":5,"7020":3,"7021":8,"7022":4,"7023":4,"7024":5,"7025":3,"7026":4,"7027":5,"7028":4,"7029":5,"7030":3,"7031":4,"7032":2,"7033":3,"7034":9,"7035":9,"7036":3,"7037":6,"7038":5,"7039":8,"7040":5,"7041":4,"7042":4,"7043":2,"7044":3,"7045":1,"7046":9,"7047":5,"7048":5,"7049":4,"7050":4,"7051":3,"7052":4,"7053":3,"7054":4,"7055":4,"7056":4,"7057":7,"7058":4,"7059":4,"7060":7,"7061":5,"7062":3,"7063":2,"7064":7,"7065":5,"7066":4,"7067":6,"7068":4,"7069":3,"7070":3,"7071":6,"7072":3,"7073":4,"7074":4,"7075":3,"7076":4,"7077":2,"7078":5,"7079":5,"7080":4,"7081":7,"7082":4,"7083":4,"7084":4,"7085":3,"7086":3,"7087":3,"7088":8,"7089":1,"7090":4,"7091":3,"7092":5,"7093":3,"7094":7,"7095":5,"7096":3,"7097":2,"7098":3,"7099":4,"7100":4,"7101":4,"7102":6,"7103":4,"7104":2,"7105":2,"7106":4,"7107":4,"7108":4,"7109":4,"7110":3,"7111":4,"7112":1,"7113":1,"7114":2,"7115":1,"7116":3,"7117":3,"7118":4,"7119":7,"7120":6,"7121":4,"7122":3,"7123":3,"7124":4,"7125":3,"7126":4,"7127":4,"7128":4,"7129":5,"7130":3,"7131":3,"7132":4,"7133":6,"7134":6,"7135":4,"7136":1,"7137":6,"7138":4,"7139":3,"7140":3,"7141":2,"7142":5,"7143":8,"7144":3,"7145":5,"7146":5,"7147":3,"7148":3,"7149":6,"7150":5,"7151":1,"7152":3,"7153":6,"7154":6,"7155":9,"7156":2,"7157":3,"7158":4,"7159":4,"7160":4,"7161":2,"7162":4,"7163":2,"7164":3,"7165":3,"7166":3,"7167":3,"7168":8,"7169":3,"7170":5,"7171":5,"7172":3,"7173":1,"7174":4,"7175":6,"7176":5,"7177":3,"7178":4,"7179":5,"7180":5,"7181":1,"7182":5,"7183":4,"7184":4,"7185":3,"7186":2,"7187":4,"7188":4,"7189":4,"7190":3,"7191":3,"7192":2,"7193":4,"7194":4,"7195":3,"7196":5,"7197":4,"7198":6,"7199":2,"7200":3,"7201":6,"7202":4,"7203":3,"7204":2,"7205":3,"7206":3,"7207":3,"7208":1,"7209":4,"7210":7,"7211":8,"7212":1,"7213":4,"7214":4,"7215":6,"7216":6,"7217":3,"7218":5,"7219":3,"7220":5,"7221":3,"7222":4,"7223":4,"7224":2,"7225":5,"7226":2,"7227":5,"7228":2,"7229":2,"7230":3,"7231":7,"7232":1,"7233":4,"7234":5,"7235":3,"7236":3,"7237":7,"7238":3,"7239":4,"7240":2,"7241":3,"7242":3,"7243":3,"7244":4,"7245":3,"7246":3,"7247":1,"7248":5,"7249":4,"7250":5,"7251":5,"7252":4,"7253":7,"7254":5,"7255":3,"7256":5,"7257":5,"7258":4,"7259":5,"7260":7,"7261":1,"7262":2,"7263":4,"7264":4,"7265":3,"7266":4,"7267":4,"7268":1,"7269":4,"7270":3,"7271":5,"7272":2,"7273":4,"7274":3,"7275":4,"7276":9,"7277":4,"7278":4,"7279":4,"7280":3,"7281":1,"7282":2,"7283":5,"7284":3,"7285":4,"7286":4,"7287":5,"7288":4,"7289":8,"7290":3,"7291":5,"7292":5,"7293":5,"7294":8,"7295":5,"7296":4,"7297":3,"7298":4,"7299":9,"7300":7,"7301":3,"7302":5,"7303":8,"7304":4,"7305":3,"7306":2,"7307":7,"7308":5,"7309":6,"7310":4,"7311":2,"7312":1,"7313":5,"7314":1,"7315":7,"7316":3,"7317":8,"7318":4,"7319":3,"7320":4,"7321":5,"7322":5,"7323":4,"7324":3,"7325":4,"7326":6,"7327":2,"7328":3,"7329":5,"7330":4,"7331":5,"7332":9,"7333":1,"7334":5,"7335":2,"7336":5,"7337":3,"7338":3,"7339":4,"7340":5,"7341":4,"7342":4,"7343":4,"7344":3,"7345":6,"7346":3,"7347":8,"7348":2,"7349":5,"7350":4,"7351":4,"7352":2,"7353":5,"7354":3,"7355":5,"7356":2,"7357":8,"7358":7,"7359":7,"7360":3,"7361":4,"7362":4,"7363":3,"7364":3,"7365":4,"7366":4,"7367":4,"7368":2,"7369":8,"7370":2,"7371":4,"7372":5,"7373":3,"7374":1,"7375":4,"7376":5,"7377":5,"7378":3,"7379":2,"7380":3,"7381":3,"7382":4,"7383":2,"7384":3,"7385":1,"7386":3,"7387":3,"7388":3,"7389":1,"7390":2,"7391":2,"7392":4,"7393":4,"7394":4,"7395":7,"7396":6,"7397":1,"7398":5,"7399":3,"7400":1,"7401":6,"7402":4,"7403":5,"7404":4,"7405":1,"7406":4,"7407":4,"7408":4,"7409":3,"7410":3,"7411":1,"7412":2,"7413":4,"7414":5,"7415":2,"7416":4,"7417":5,"7418":4,"7419":3,"7420":1,"7421":4,"7422":3,"7423":7,"7424":4,"7425":5,"7426":9,"7427":4,"7428":3,"7429":3,"7430":4,"7431":9,"7432":2,"7433":3,"7434":6,"7435":2,"7436":1,"7437":5,"7438":4,"7439":4,"7440":3,"7441":4,"7442":1,"7443":4,"7444":4,"7445":3,"7446":5,"7447":9,"7448":5,"7449":4,"7450":6,"7451":3,"7452":2,"7453":3,"7454":4,"7455":4,"7456":3,"7457":5,"7458":9,"7459":1,"7460":4,"7461":4,"7462":4,"7463":4,"7464":4,"7465":3,"7466":2,"7467":3,"7468":4,"7469":8,"7470":2,"7471":3,"7472":4,"7473":3,"7474":8,"7475":5,"7476":4,"7477":2,"7478":2,"7479":4,"7480":7,"7481":4,"7482":5,"7483":4,"7484":4,"7485":4,"7486":2,"7487":8,"7488":3,"7489":2,"7490":6,"7491":5,"7492":5,"7493":7,"7494":3,"7495":4,"7496":9,"7497":8,"7498":5,"7499":4,"7500":3,"7501":4,"7502":3,"7503":4,"7504":8,"7505":5,"7506":6,"7507":4,"7508":1,"7509":5,"7510":5,"7511":3,"7512":5,"7513":3,"7514":4,"7515":4,"7516":2,"7517":3,"7518":3,"7519":7,"7520":4,"7521":5,"7522":4,"7523":5,"7524":2,"7525":6,"7526":1,"7527":2,"7528":3,"7529":3,"7530":3,"7531":4,"7532":5,"7533":2,"7534":4,"7535":5,"7536":4,"7537":5,"7538":3,"7539":2,"7540":3,"7541":6,"7542":3,"7543":2,"7544":5,"7545":7,"7546":4,"7547":2,"7548":7,"7549":5,"7550":3,"7551":3,"7552":4,"7553":1,"7554":3,"7555":2,"7556":7,"7557":3,"7558":5,"7559":1,"7560":4,"7561":1,"7562":3,"7563":4,"7564":5,"7565":3,"7566":3,"7567":4,"7568":4,"7569":3,"7570":3,"7571":3,"7572":4,"7573":4,"7574":5,"7575":4,"7576":3,"7577":9,"7578":5,"7579":3,"7580":8,"7581":2,"7582":3,"7583":2,"7584":6,"7585":4,"7586":6,"7587":3,"7588":2,"7589":1,"7590":5,"7591":9,"7592":5,"7593":5,"7594":4,"7595":3,"7596":3,"7597":6,"7598":3,"7599":3,"7600":6,"7601":7,"7602":8,"7603":5,"7604":3,"7605":4,"7606":1,"7607":4,"7608":2,"7609":4,"7610":3,"7611":3,"7612":8,"7613":4,"7614":3,"7615":3,"7616":3,"7617":4,"7618":3,"7619":3,"7620":2,"7621":3,"7622":9,"7623":1,"7624":8,"7625":7,"7626":2,"7627":2,"7628":4,"7629":4,"7630":7,"7631":4,"7632":4,"7633":4,"7634":7,"7635":4,"7636":3,"7637":5,"7638":4,"7639":3,"7640":3,"7641":3,"7642":4,"7643":5,"7644":3,"7645":4,"7646":3,"7647":7,"7648":5,"7649":2,"7650":3,"7651":2,"7652":2,"7653":5,"7654":3,"7655":1,"7656":2,"7657":4,"7658":6,"7659":3,"7660":5,"7661":3,"7662":4,"7663":3,"7664":7,"7665":1,"7666":3,"7667":2,"7668":6,"7669":4,"7670":2,"7671":5,"7672":9,"7673":3,"7674":5,"7675":2,"7676":2,"7677":2,"7678":4,"7679":4,"7680":5,"7681":4,"7682":2,"7683":5,"7684":5,"7685":4,"7686":1,"7687":8,"7688":4,"7689":2,"7690":6,"7691":4,"7692":4,"7693":7,"7694":3,"7695":4,"7696":5,"7697":3,"7698":5,"7699":6,"7700":2,"7701":5,"7702":1,"7703":1,"7704":3,"7705":2,"7706":7,"7707":3,"7708":3,"7709":3,"7710":3,"7711":3,"7712":4,"7713":3,"7714":3,"7715":8,"7716":3,"7717":4,"7718":4,"7719":4,"7720":6,"7721":5,"7722":3,"7723":8,"7724":7,"7725":4,"7726":4,"7727":2,"7728":3,"7729":4,"7730":4,"7731":4,"7732":3,"7733":3,"7734":4,"7735":5,"7736":3,"7737":3,"7738":3,"7739":7,"7740":5,"7741":5,"7742":6,"7743":6,"7744":4,"7745":1,"7746":3,"7747":3,"7748":4,"7749":4,"7750":5,"7751":2,"7752":3,"7753":4,"7754":5,"7755":4,"7756":3,"7757":3,"7758":2,"7759":4,"7760":4,"7761":6,"7762":5,"7763":5,"7764":5,"7765":5,"7766":4,"7767":4,"7768":5,"7769":3,"7770":5,"7771":7,"7772":3,"7773":3,"7774":3,"7775":5,"7776":4,"7777":3,"7778":7,"7779":1,"7780":1,"7781":4,"7782":2,"7783":4,"7784":4,"7785":4,"7786":4,"7787":4,"7788":3,"7789":4,"7790":3,"7791":2,"7792":3,"7793":3,"7794":3,"7795":4,"7796":2,"7797":4,"7798":2,"7799":3,"7800":4,"7801":4,"7802":6,"7803":5,"7804":2,"7805":6,"7806":4,"7807":3,"7808":5,"7809":4,"7810":3,"7811":7,"7812":4,"7813":3,"7814":8,"7815":7,"7816":2,"7817":3,"7818":5,"7819":1,"7820":3,"7821":3,"7822":4,"7823":6,"7824":3,"7825":3,"7826":1,"7827":2,"7828":3,"7829":4,"7830":3,"7831":5,"7832":4,"7833":4,"7834":3,"7835":3,"7836":3,"7837":3,"7838":3,"7839":1,"7840":4,"7841":4,"7842":4,"7843":2,"7844":2,"7845":4,"7846":5,"7847":4,"7848":2,"7849":4,"7850":5,"7851":3,"7852":6,"7853":6,"7854":4,"7855":6,"7856":8,"7857":5,"7858":1,"7859":3,"7860":5,"7861":8,"7862":4,"7863":4,"7864":3,"7865":4,"7866":3,"7867":3,"7868":4,"7869":9,"7870":4,"7871":7,"7872":5,"7873":6,"7874":9,"7875":7,"7876":4,"7877":2,"7878":4,"7879":4,"7880":4,"7881":5,"7882":4,"7883":4,"7884":4,"7885":4,"7886":4,"7887":4,"7888":4,"7889":3,"7890":4,"7891":1,"7892":5,"7893":4,"7894":9,"7895":3,"7896":4,"7897":7,"7898":5,"7899":3,"7900":4,"7901":3,"7902":5,"7903":1,"7904":3,"7905":3,"7906":3,"7907":5,"7908":5,"7909":3,"7910":3,"7911":4,"7912":3,"7913":4,"7914":4,"7915":4,"7916":4,"7917":1,"7918":2,"7919":8,"7920":7,"7921":3,"7922":5,"7923":9,"7924":3,"7925":5,"7926":3,"7927":5,"7928":3,"7929":4,"7930":8,"7931":3,"7932":4,"7933":4,"7934":4,"7935":4,"7936":4,"7937":2,"7938":7,"7939":3,"7940":4,"7941":3,"7942":4,"7943":5,"7944":3,"7945":4,"7946":1,"7947":4,"7948":2,"7949":4,"7950":4,"7951":4,"7952":3,"7953":3,"7954":1,"7955":5,"7956":2,"7957":5,"7958":8,"7959":5,"7960":6,"7961":9,"7962":5,"7963":5,"7964":2,"7965":5,"7966":5,"7967":5,"7968":5,"7969":2,"7970":3,"7971":4,"7972":4,"7973":7,"7974":4,"7975":4,"7976":3,"7977":3,"7978":4,"7979":3,"7980":5,"7981":1,"7982":3,"7983":7,"7984":3,"7985":8,"7986":2,"7987":3,"7988":6,"7989":5,"7990":2,"7991":3,"7992":4,"7993":4,"7994":6,"7995":4,"7996":3,"7997":2,"7998":4,"7999":4,"8000":2,"8001":5,"8002":6,"8003":3,"8004":4,"8005":1,"8006":5,"8007":6,"8008":3,"8009":2,"8010":2,"8011":6,"8012":3,"8013":4,"8014":3,"8015":5,"8016":4,"8017":3,"8018":8,"8019":7,"8020":2,"8021":7,"8022":2,"8023":2,"8024":3,"8025":3,"8026":1,"8027":5,"8028":1,"8029":5,"8030":8,"8031":8,"8032":3,"8033":4,"8034":4,"8035":4,"8036":4,"8037":7,"8038":3,"8039":3,"8040":4,"8041":7,"8042":1,"8043":3,"8044":7,"8045":3,"8046":1,"8047":3,"8048":4,"8049":4,"8050":6,"8051":2,"8052":9,"8053":5,"8054":4,"8055":4,"8056":4,"8057":4,"8058":3,"8059":4,"8060":2,"8061":5,"8062":3,"8063":3,"8064":4,"8065":4,"8066":2,"8067":4,"8068":3,"8069":5,"8070":4,"8071":4,"8072":3,"8073":7,"8074":1,"8075":5,"8076":3,"8077":3,"8078":4,"8079":1,"8080":4,"8081":4,"8082":2,"8083":6,"8084":3,"8085":6,"8086":3,"8087":3,"8088":1,"8089":3,"8090":5,"8091":8,"8092":4,"8093":4,"8094":5,"8095":4,"8096":4,"8097":3,"8098":4,"8099":3,"8100":3,"8101":2,"8102":4,"8103":4,"8104":3,"8105":3,"8106":5,"8107":7,"8108":2,"8109":2,"8110":5,"8111":7,"8112":4,"8113":3,"8114":3,"8115":3,"8116":4,"8117":4,"8118":3,"8119":5,"8120":4,"8121":5,"8122":3,"8123":5,"8124":2,"8125":2,"8126":3,"8127":4,"8128":5,"8129":4,"8130":4,"8131":4,"8132":5,"8133":4,"8134":6,"8135":4,"8136":3,"8137":1,"8138":3,"8139":3,"8140":7,"8141":5,"8142":7,"8143":5,"8144":4,"8145":4,"8146":9,"8147":8,"8148":3,"8149":5,"8150":2,"8151":7,"8152":3,"8153":2,"8154":3,"8155":7,"8156":3,"8157":5,"8158":6,"8159":3,"8160":8,"8161":2,"8162":3,"8163":4,"8164":4,"8165":1,"8166":5,"8167":3,"8168":2,"8169":2,"8170":8,"8171":5,"8172":7,"8173":4,"8174":4,"8175":6,"8176":3,"8177":3,"8178":4,"8179":6,"8180":5,"8181":6,"8182":2,"8183":1,"8184":1,"8185":3,"8186":5,"8187":5,"8188":5,"8189":4,"8190":3,"8191":5,"8192":5,"8193":3,"8194":6,"8195":3,"8196":3,"8197":2,"8198":5,"8199":9,"8200":4,"8201":3,"8202":2,"8203":4,"8204":4,"8205":4,"8206":4,"8207":5,"8208":3,"8209":9,"8210":3,"8211":4,"8212":4,"8213":3,"8214":4,"8215":2,"8216":3,"8217":4,"8218":4,"8219":6,"8220":2,"8221":4,"8222":3,"8223":4,"8224":5,"8225":4,"8226":5,"8227":8,"8228":6,"8229":3,"8230":5,"8231":5,"8232":4,"8233":3,"8234":2,"8235":4,"8236":3,"8237":2,"8238":2,"8239":4,"8240":4,"8241":4,"8242":4,"8243":4,"8244":4,"8245":5,"8246":3,"8247":4,"8248":8,"8249":4,"8250":5,"8251":8,"8252":4,"8253":6,"8254":5,"8255":4,"8256":2,"8257":4,"8258":4,"8259":5,"8260":4,"8261":3,"8262":3,"8263":3,"8264":3,"8265":4,"8266":4,"8267":4,"8268":1,"8269":5,"8270":4,"8271":3,"8272":3,"8273":5,"8274":7,"8275":7,"8276":4,"8277":5,"8278":3,"8279":3,"8280":3,"8281":9,"8282":4,"8283":3,"8284":6,"8285":5,"8286":5,"8287":1,"8288":3,"8289":3,"8290":2,"8291":4,"8292":3,"8293":8,"8294":3,"8295":4,"8296":4,"8297":3,"8298":4,"8299":3,"8300":5,"8301":3,"8302":4,"8303":2,"8304":4,"8305":5,"8306":4,"8307":3,"8308":4,"8309":4,"8310":4,"8311":7,"8312":7,"8313":3,"8314":5,"8315":5,"8316":4,"8317":5,"8318":2,"8319":4,"8320":4,"8321":2,"8322":1,"8323":4,"8324":8,"8325":5,"8326":4,"8327":3,"8328":3,"8329":4,"8330":5,"8331":6,"8332":3,"8333":3,"8334":3,"8335":7,"8336":4,"8337":4,"8338":3,"8339":7,"8340":3,"8341":7,"8342":3,"8343":4,"8344":4,"8345":1,"8346":3,"8347":3,"8348":7,"8349":5,"8350":3,"8351":4,"8352":1,"8353":3,"8354":4,"8355":5,"8356":7,"8357":3,"8358":4,"8359":3,"8360":3,"8361":3,"8362":4,"8363":3,"8364":8,"8365":2,"8366":5,"8367":1,"8368":3,"8369":3,"8370":4,"8371":3,"8372":8,"8373":2,"8374":4,"8375":7,"8376":9,"8377":4,"8378":3,"8379":3,"8380":3,"8381":4,"8382":8,"8383":4,"8384":4,"8385":6,"8386":4,"8387":4,"8388":4,"8389":3,"8390":5,"8391":4,"8392":3,"8393":5,"8394":3,"8395":6,"8396":4,"8397":4,"8398":3,"8399":4,"8400":5,"8401":4,"8402":4,"8403":4,"8404":4,"8405":2,"8406":1,"8407":3,"8408":3,"8409":4,"8410":5,"8411":4,"8412":2,"8413":3,"8414":3,"8415":3,"8416":4,"8417":4,"8418":3,"8419":4,"8420":3,"8421":4,"8422":3,"8423":2,"8424":4,"8425":4,"8426":1,"8427":1,"8428":5,"8429":4,"8430":3,"8431":3,"8432":4,"8433":3,"8434":4,"8435":2,"8436":5,"8437":3,"8438":7,"8439":4,"8440":4,"8441":5,"8442":5,"8443":4,"8444":6,"8445":4,"8446":3,"8447":6,"8448":1,"8449":2,"8450":2,"8451":4,"8452":7,"8453":6,"8454":5,"8455":5,"8456":4,"8457":2,"8458":5,"8459":5,"8460":3,"8461":3,"8462":2,"8463":4,"8464":7,"8465":6,"8466":4,"8467":3,"8468":2,"8469":2,"8470":1,"8471":4,"8472":3,"8473":4,"8474":5,"8475":4,"8476":4,"8477":6,"8478":4,"8479":4,"8480":1,"8481":3,"8482":3,"8483":4,"8484":6,"8485":6,"8486":8,"8487":7,"8488":8,"8489":4,"8490":4,"8491":5,"8492":4,"8493":5,"8494":3,"8495":9,"8496":4,"8497":5,"8498":6,"8499":9,"8500":5,"8501":3,"8502":4,"8503":4,"8504":3,"8505":7,"8506":2,"8507":1,"8508":4,"8509":9,"8510":5,"8511":3,"8512":5,"8513":4,"8514":3,"8515":5,"8516":4,"8517":5,"8518":2,"8519":5,"8520":2,"8521":5,"8522":3,"8523":2,"8524":4,"8525":2,"8526":1,"8527":3,"8528":2,"8529":1,"8530":3,"8531":2,"8532":7,"8533":2,"8534":3,"8535":1,"8536":4,"8537":4,"8538":4,"8539":7,"8540":5,"8541":3,"8542":6,"8543":2,"8544":2,"8545":1,"8546":2,"8547":3,"8548":4,"8549":2,"8550":5,"8551":8,"8552":5,"8553":9,"8554":6,"8555":6,"8556":3,"8557":4,"8558":3,"8559":5,"8560":2,"8561":2,"8562":4,"8563":3,"8564":6,"8565":4,"8566":2,"8567":5,"8568":4,"8569":3,"8570":5,"8571":9,"8572":5,"8573":4,"8574":2,"8575":2,"8576":3,"8577":4,"8578":3,"8579":5,"8580":5,"8581":4,"8582":3,"8583":5,"8584":4,"8585":3,"8586":3,"8587":5,"8588":5,"8589":3,"8590":8,"8591":6,"8592":7,"8593":5,"8594":8,"8595":3,"8596":2,"8597":5,"8598":3,"8599":3,"8600":4,"8601":7,"8602":3,"8603":4,"8604":3,"8605":4,"8606":1,"8607":1,"8608":4,"8609":4,"8610":3,"8611":3,"8612":4,"8613":3,"8614":3,"8615":3,"8616":2,"8617":1,"8618":4,"8619":2,"8620":1,"8621":1,"8622":4,"8623":7,"8624":3,"8625":4,"8626":3,"8627":5,"8628":5,"8629":2,"8630":3,"8631":3,"8632":5,"8633":3,"8634":5,"8635":4,"8636":5,"8637":3,"8638":3,"8639":4,"8640":3,"8641":4,"8642":4,"8643":6,"8644":3,"8645":4,"8646":5,"8647":3,"8648":2,"8649":3,"8650":2,"8651":3,"8652":4,"8653":6,"8654":5,"8655":1,"8656":3,"8657":7,"8658":5,"8659":3,"8660":4,"8661":1,"8662":2,"8663":3,"8664":8,"8665":3,"8666":3,"8667":3,"8668":4,"8669":4,"8670":4,"8671":4,"8672":1,"8673":7,"8674":1,"8675":5,"8676":2,"8677":4,"8678":6,"8679":2,"8680":4,"8681":3,"8682":4,"8683":4,"8684":4,"8685":6,"8686":3,"8687":3,"8688":3,"8689":5,"8690":2,"8691":9,"8692":4,"8693":4,"8694":1,"8695":5,"8696":4,"8697":2,"8698":2,"8699":5,"8700":3,"8701":3,"8702":3,"8703":3,"8704":5,"8705":2,"8706":7,"8707":2,"8708":5,"8709":4,"8710":1,"8711":4,"8712":3,"8713":5,"8714":4,"8715":1,"8716":3,"8717":4,"8718":7,"8719":5,"8720":2,"8721":5,"8722":5,"8723":4,"8724":4,"8725":3,"8726":1,"8727":4,"8728":4,"8729":4,"8730":8,"8731":4,"8732":4,"8733":6,"8734":5,"8735":4,"8736":4,"8737":1,"8738":4,"8739":3,"8740":3,"8741":5,"8742":9,"8743":4,"8744":4,"8745":4,"8746":4,"8747":5,"8748":6,"8749":3,"8750":4,"8751":3,"8752":6,"8753":3,"8754":8,"8755":2,"8756":4,"8757":5,"8758":3,"8759":2,"8760":2,"8761":4,"8762":3,"8763":8,"8764":5,"8765":4,"8766":4,"8767":2,"8768":4,"8769":6,"8770":4,"8771":3,"8772":6,"8773":3,"8774":3,"8775":5,"8776":3,"8777":3,"8778":3,"8779":3,"8780":4,"8781":3,"8782":5,"8783":5,"8784":6,"8785":2,"8786":6,"8787":3,"8788":5,"8789":4,"8790":7,"8791":3,"8792":3,"8793":5,"8794":5,"8795":4,"8796":4,"8797":3,"8798":2,"8799":4,"8800":5,"8801":5,"8802":7,"8803":7,"8804":4,"8805":4,"8806":4,"8807":3,"8808":4,"8809":3,"8810":4,"8811":5,"8812":5,"8813":4,"8814":4,"8815":4,"8816":2,"8817":7,"8818":5,"8819":9,"8820":9,"8821":6,"8822":4,"8823":4,"8824":8,"8825":4,"8826":4,"8827":7,"8828":4,"8829":4,"8830":4,"8831":3,"8832":6,"8833":3,"8834":4,"8835":4,"8836":4,"8837":3,"8838":5,"8839":5,"8840":4,"8841":4,"8842":4,"8843":1,"8844":3,"8845":4,"8846":4,"8847":8,"8848":5,"8849":7,"8850":3,"8851":5,"8852":9,"8853":7,"8854":4,"8855":3,"8856":4,"8857":8,"8858":5,"8859":4,"8860":4,"8861":2,"8862":2,"8863":6,"8864":3,"8865":2,"8866":7,"8867":3,"8868":7,"8869":9,"8870":4,"8871":7,"8872":5,"8873":3,"8874":4,"8875":4,"8876":4,"8877":2,"8878":3,"8879":4,"8880":2,"8881":3,"8882":4,"8883":7,"8884":8,"8885":4,"8886":2,"8887":4,"8888":4,"8889":1,"8890":4,"8891":4,"8892":4,"8893":5,"8894":3,"8895":5,"8896":6,"8897":3,"8898":6,"8899":3,"8900":3,"8901":3,"8902":3,"8903":3,"8904":3,"8905":2,"8906":3,"8907":2,"8908":3,"8909":2,"8910":3,"8911":5,"8912":2,"8913":5,"8914":4,"8915":4,"8916":6,"8917":4,"8918":1,"8919":5,"8920":2,"8921":5,"8922":4,"8923":5,"8924":5,"8925":3,"8926":3,"8927":3,"8928":5,"8929":3,"8930":4,"8931":4,"8932":3,"8933":9,"8934":4,"8935":4,"8936":2,"8937":3,"8938":8,"8939":1,"8940":4,"8941":5,"8942":4,"8943":2,"8944":2,"8945":3,"8946":9,"8947":5,"8948":2,"8949":3,"8950":4,"8951":7,"8952":3,"8953":4,"8954":3,"8955":3,"8956":4,"8957":4,"8958":3,"8959":3,"8960":3,"8961":8,"8962":4,"8963":5,"8964":4,"8965":4,"8966":5,"8967":4,"8968":8,"8969":4,"8970":4,"8971":4,"8972":7,"8973":4,"8974":5,"8975":1,"8976":4,"8977":3,"8978":4,"8979":5,"8980":8,"8981":2,"8982":7,"8983":1,"8984":2,"8985":4,"8986":4,"8987":4,"8988":4,"8989":4,"8990":8,"8991":3,"8992":3,"8993":5,"8994":2,"8995":4,"8996":6,"8997":8,"8998":5,"8999":3,"9000":2,"9001":3,"9002":8,"9003":6,"9004":3,"9005":1,"9006":6,"9007":3,"9008":5,"9009":2,"9010":4,"9011":6,"9012":4,"9013":4,"9014":3,"9015":4,"9016":4,"9017":4,"9018":4,"9019":4,"9020":3,"9021":1,"9022":3,"9023":2,"9024":3,"9025":4,"9026":3,"9027":4,"9028":4,"9029":2,"9030":4,"9031":3,"9032":9,"9033":5,"9034":8,"9035":5,"9036":5,"9037":6,"9038":3,"9039":6,"9040":3,"9041":7,"9042":5,"9043":4,"9044":4,"9045":4,"9046":3,"9047":2,"9048":4,"9049":7,"9050":3,"9051":2,"9052":4,"9053":7,"9054":2,"9055":3,"9056":8,"9057":3,"9058":4,"9059":3,"9060":2,"9061":5,"9062":4,"9063":5,"9064":5,"9065":4,"9066":5,"9067":2,"9068":8,"9069":3,"9070":1,"9071":5,"9072":4,"9073":3,"9074":3,"9075":5,"9076":5,"9077":3,"9078":8,"9079":4,"9080":4,"9081":4,"9082":3,"9083":6,"9084":3,"9085":6,"9086":2,"9087":4,"9088":4,"9089":2,"9090":4,"9091":1,"9092":2,"9093":3,"9094":3,"9095":3,"9096":2,"9097":3,"9098":4,"9099":4,"9100":4,"9101":2,"9102":3,"9103":3,"9104":6,"9105":3,"9106":5,"9107":2,"9108":4,"9109":8,"9110":7,"9111":5,"9112":4,"9113":3,"9114":3,"9115":1,"9116":2,"9117":3,"9118":5,"9119":1,"9120":4,"9121":4,"9122":2,"9123":9,"9124":5,"9125":6,"9126":4,"9127":3,"9128":3,"9129":4,"9130":4,"9131":4,"9132":3,"9133":5,"9134":4,"9135":3,"9136":4,"9137":5,"9138":7,"9139":6,"9140":6,"9141":1,"9142":9,"9143":3,"9144":2,"9145":3,"9146":4,"9147":3,"9148":7,"9149":8,"9150":5,"9151":7,"9152":4,"9153":5,"9154":4,"9155":3,"9156":4,"9157":6,"9158":3,"9159":3,"9160":5,"9161":7,"9162":2,"9163":3,"9164":6,"9165":4,"9166":5,"9167":4,"9168":3,"9169":4,"9170":4,"9171":1,"9172":4,"9173":9,"9174":4,"9175":5,"9176":5,"9177":4,"9178":4,"9179":6,"9180":4,"9181":2,"9182":2,"9183":2,"9184":5,"9185":3,"9186":4,"9187":3,"9188":5,"9189":3,"9190":3,"9191":2,"9192":3,"9193":1,"9194":1,"9195":4,"9196":1,"9197":4,"9198":4,"9199":3,"9200":4,"9201":4,"9202":1,"9203":4,"9204":8,"9205":5,"9206":4,"9207":4,"9208":2,"9209":1,"9210":7,"9211":5,"9212":6,"9213":4,"9214":1,"9215":3,"9216":5,"9217":4,"9218":5,"9219":5,"9220":4,"9221":2,"9222":4,"9223":5,"9224":5,"9225":5,"9226":3,"9227":3,"9228":7,"9229":3,"9230":3,"9231":7,"9232":2,"9233":1,"9234":4,"9235":3,"9236":5,"9237":4,"9238":2,"9239":9,"9240":6,"9241":3,"9242":2,"9243":4,"9244":5,"9245":4,"9246":4,"9247":2,"9248":5,"9249":4,"9250":2,"9251":5,"9252":3,"9253":5,"9254":3,"9255":7,"9256":5,"9257":3,"9258":3,"9259":4,"9260":5,"9261":3,"9262":4,"9263":5,"9264":4,"9265":1,"9266":4,"9267":4,"9268":5,"9269":4,"9270":4,"9271":4,"9272":2,"9273":2,"9274":5,"9275":3,"9276":2,"9277":3,"9278":2,"9279":4,"9280":1,"9281":4,"9282":3,"9283":2,"9284":4,"9285":3,"9286":3,"9287":5,"9288":5,"9289":9,"9290":3,"9291":4,"9292":9,"9293":2,"9294":3,"9295":3,"9296":3,"9297":4,"9298":9,"9299":3,"9300":5,"9301":4,"9302":2,"9303":4,"9304":6,"9305":3,"9306":4,"9307":6,"9308":7,"9309":3,"9310":4,"9311":5,"9312":6,"9313":5,"9314":7,"9315":6,"9316":3,"9317":4,"9318":5,"9319":3,"9320":5,"9321":4,"9322":3,"9323":3,"9324":6,"9325":3,"9326":7,"9327":2,"9328":1,"9329":7,"9330":5,"9331":1,"9332":7,"9333":3,"9334":3,"9335":3,"9336":7,"9337":4,"9338":7,"9339":4,"9340":4,"9341":2,"9342":5,"9343":6,"9344":3,"9345":4,"9346":4,"9347":3,"9348":4,"9349":2,"9350":4,"9351":4,"9352":2,"9353":2,"9354":4,"9355":3,"9356":5,"9357":3,"9358":5,"9359":5,"9360":5,"9361":3,"9362":4,"9363":4,"9364":3,"9365":3,"9366":3,"9367":4,"9368":5,"9369":5,"9370":4,"9371":4,"9372":3,"9373":3,"9374":3,"9375":3,"9376":3,"9377":4,"9378":3,"9379":3,"9380":4,"9381":2,"9382":4,"9383":2,"9384":3,"9385":3,"9386":4,"9387":3,"9388":4,"9389":4,"9390":5,"9391":4,"9392":4,"9393":6,"9394":3,"9395":4,"9396":3,"9397":4,"9398":9,"9399":2,"9400":3,"9401":4,"9402":3,"9403":4,"9404":3,"9405":1,"9406":3,"9407":2,"9408":4,"9409":4,"9410":2,"9411":4,"9412":5,"9413":4,"9414":8,"9415":2,"9416":4,"9417":3,"9418":4,"9419":3,"9420":3,"9421":3,"9422":3,"9423":3,"9424":4,"9425":4,"9426":7,"9427":5,"9428":4,"9429":4,"9430":3,"9431":3,"9432":3,"9433":2,"9434":2,"9435":5,"9436":3,"9437":3,"9438":1,"9439":4,"9440":5,"9441":4,"9442":3,"9443":4,"9444":4,"9445":3,"9446":3,"9447":1,"9448":4,"9449":2,"9450":6,"9451":4,"9452":4,"9453":4,"9454":4,"9455":7,"9456":1,"9457":4,"9458":5,"9459":3,"9460":7,"9461":3,"9462":4,"9463":5,"9464":5,"9465":5,"9466":2,"9467":4,"9468":7,"9469":4,"9470":3,"9471":4,"9472":3,"9473":9,"9474":7,"9475":7,"9476":5,"9477":2,"9478":5,"9479":5,"9480":3,"9481":3,"9482":4,"9483":2,"9484":3,"9485":3,"9486":3,"9487":3,"9488":4,"9489":4,"9490":4,"9491":2,"9492":3,"9493":1,"9494":1,"9495":4,"9496":7,"9497":4,"9498":1,"9499":8,"9500":3,"9501":7,"9502":4,"9503":5,"9504":5,"9505":4,"9506":3,"9507":4,"9508":5,"9509":4,"9510":5,"9511":4,"9512":4,"9513":6,"9514":3,"9515":5,"9516":3,"9517":5,"9518":4,"9519":5,"9520":8,"9521":5,"9522":3,"9523":2,"9524":8,"9525":3,"9526":9,"9527":4,"9528":3,"9529":6,"9530":5,"9531":4,"9532":5,"9533":4,"9534":2,"9535":4,"9536":3,"9537":5,"9538":4,"9539":4,"9540":4,"9541":4,"9542":5,"9543":3,"9544":4,"9545":3,"9546":7,"9547":6,"9548":4,"9549":5,"9550":3,"9551":4,"9552":2,"9553":4,"9554":3,"9555":5,"9556":6,"9557":4,"9558":5,"9559":4,"9560":2,"9561":5,"9562":2,"9563":3,"9564":3,"9565":8,"9566":3,"9567":1,"9568":6,"9569":4,"9570":4,"9571":5,"9572":4,"9573":3,"9574":3,"9575":1,"9576":4,"9577":3,"9578":7,"9579":4,"9580":5,"9581":3,"9582":4,"9583":8,"9584":3,"9585":3,"9586":4,"9587":9,"9588":3,"9589":6,"9590":2,"9591":6,"9592":5,"9593":4,"9594":1,"9595":2,"9596":6,"9597":1,"9598":8,"9599":4,"9600":7,"9601":5,"9602":4,"9603":5,"9604":3,"9605":1,"9606":4,"9607":2,"9608":3,"9609":8,"9610":4,"9611":4,"9612":3,"9613":4,"9614":3,"9615":7,"9616":1,"9617":1,"9618":3,"9619":4,"9620":3,"9621":4,"9622":9,"9623":3,"9624":4,"9625":2,"9626":8,"9627":4,"9628":6,"9629":4,"9630":6,"9631":3,"9632":5,"9633":5,"9634":3,"9635":4,"9636":5,"9637":3,"9638":3,"9639":4,"9640":6,"9641":3,"9642":1,"9643":4,"9644":5,"9645":2,"9646":2,"9647":7,"9648":2,"9649":4,"9650":5,"9651":5,"9652":4,"9653":3,"9654":4,"9655":4,"9656":5,"9657":5,"9658":3,"9659":3,"9660":4,"9661":1,"9662":2,"9663":3,"9664":3,"9665":6,"9666":2,"9667":3,"9668":5,"9669":1,"9670":5,"9671":4,"9672":8,"9673":4,"9674":3,"9675":5,"9676":4,"9677":4,"9678":4,"9679":3,"9680":5,"9681":4,"9682":3,"9683":3,"9684":2,"9685":7,"9686":4,"9687":6,"9688":4,"9689":4,"9690":3,"9691":4,"9692":2,"9693":4,"9694":7,"9695":5,"9696":9,"9697":2,"9698":3,"9699":4,"9700":3,"9701":2,"9702":7,"9703":7,"9704":5,"9705":4,"9706":4,"9707":3,"9708":3,"9709":3,"9710":3,"9711":4,"9712":6,"9713":3,"9714":2,"9715":4,"9716":3,"9717":1,"9718":4,"9719":3,"9720":3,"9721":7,"9722":3,"9723":4,"9724":4,"9725":9,"9726":5,"9727":4,"9728":3,"9729":3,"9730":4,"9731":3,"9732":1,"9733":5,"9734":2,"9735":2,"9736":4,"9737":3,"9738":4,"9739":5,"9740":3,"9741":3,"9742":3,"9743":2,"9744":3,"9745":5,"9746":4,"9747":7,"9748":3,"9749":4,"9750":5,"9751":6,"9752":4,"9753":3,"9754":4,"9755":3,"9756":3,"9757":2,"9758":2,"9759":2,"9760":6,"9761":4,"9762":5,"9763":4,"9764":1,"9765":2,"9766":3,"9767":4,"9768":1,"9769":4,"9770":4,"9771":3,"9772":3,"9773":2,"9774":3,"9775":6,"9776":3,"9777":3,"9778":4,"9779":4,"9780":3,"9781":5,"9782":7,"9783":3,"9784":5,"9785":1,"9786":2,"9787":5,"9788":3,"9789":5,"9790":4,"9791":4,"9792":7,"9793":4,"9794":8,"9795":8,"9796":8,"9797":5,"9798":4,"9799":6,"9800":3,"9801":3,"9802":4,"9803":2,"9804":7,"9805":3,"9806":4,"9807":7,"9808":5,"9809":4,"9810":2,"9811":8,"9812":6,"9813":1,"9814":6,"9815":2,"9816":4,"9817":4,"9818":4,"9819":3,"9820":4,"9821":3,"9822":3,"9823":3,"9824":3,"9825":3,"9826":2,"9827":3,"9828":5,"9829":4,"9830":5,"9831":1,"9832":5,"9833":7,"9834":4,"9835":5,"9836":7,"9837":3,"9838":4,"9839":9,"9840":3,"9841":3,"9842":3,"9843":2,"9844":4,"9845":4,"9846":3,"9847":8,"9848":6,"9849":3,"9850":3,"9851":3,"9852":7,"9853":4,"9854":3,"9855":3,"9856":4,"9857":5,"9858":5,"9859":4,"9860":4,"9861":7,"9862":5,"9863":5,"9864":1,"9865":7,"9866":4,"9867":3,"9868":8,"9869":3,"9870":7,"9871":3,"9872":3,"9873":8,"9874":4,"9875":3,"9876":2,"9877":4,"9878":4,"9879":2,"9880":5,"9881":4,"9882":4,"9883":4,"9884":2,"9885":7,"9886":3,"9887":3,"9888":5,"9889":3,"9890":3,"9891":4,"9892":3,"9893":3,"9894":4,"9895":5,"9896":4,"9897":3,"9898":4,"9899":4,"9900":2,"9901":4,"9902":3,"9903":5,"9904":3,"9905":4,"9906":8,"9907":4,"9908":8,"9909":3,"9910":9,"9911":4,"9912":2,"9913":3,"9914":2,"9915":3,"9916":4,"9917":4,"9918":7,"9919":3,"9920":4,"9921":4,"9922":5,"9923":5,"9924":4,"9925":4,"9926":1,"9927":5,"9928":3,"9929":5,"9930":4,"9931":9,"9932":4,"9933":1,"9934":5,"9935":2,"9936":4,"9937":8,"9938":5,"9939":6,"9940":4,"9941":1,"9942":3,"9943":4,"9944":4,"9945":4,"9946":4,"9947":9,"9948":3,"9949":4,"9950":4,"9951":5,"9952":2,"9953":4,"9954":4,"9955":5,"9956":4,"9957":1,"9958":5,"9959":2,"9960":1,"9961":3,"9962":6,"9963":4,"9964":1,"9965":6,"9966":4,"9967":4,"9968":5,"9969":1,"9970":6,"9971":4,"9972":2,"9973":8,"9974":4,"9975":4,"9976":2,"9977":4,"9978":2,"9979":4,"9980":3,"9981":3,"9982":3,"9983":8,"9984":1,"9985":2,"9986":4,"9987":2,"9988":5,"9989":5,"9990":3,"9991":5,"9992":7,"9993":4,"9994":3,"9995":7,"9996":3,"9997":3,"9998":3,"9999":8,"10000":4,"10001":4,"10002":4,"10003":2,"10004":3,"10005":3,"10006":5,"10007":3,"10008":5,"10009":3,"10010":7,"10011":4,"10012":6,"10013":4,"10014":4,"10015":4,"10016":6,"10017":5,"10018":3,"10019":5,"10020":3,"10021":5,"10022":5,"10023":2,"10024":3,"10025":4,"10026":6,"10027":4,"10028":5,"10029":5,"10030":3,"10031":4,"10032":7,"10033":4,"10034":1,"10035":4,"10036":4,"10037":5,"10038":6,"10039":4,"10040":4,"10041":5,"10042":4,"10043":1,"10044":3,"10045":1,"10046":5,"10047":4,"10048":3,"10049":1,"10050":4,"10051":1,"10052":5,"10053":4,"10054":7,"10055":2,"10056":6,"10057":3,"10058":2,"10059":4,"10060":6,"10061":3,"10062":4,"10063":2,"10064":4,"10065":3,"10066":5,"10067":5,"10068":4,"10069":5,"10070":5,"10071":9,"10072":4,"10073":3,"10074":6,"10075":4,"10076":9,"10077":5,"10078":3,"10079":4,"10080":4,"10081":3,"10082":3,"10083":3,"10084":5,"10085":4,"10086":4,"10087":2,"10088":5,"10089":4,"10090":1,"10091":4,"10092":1,"10093":6,"10094":3,"10095":4,"10096":2,"10097":3,"10098":4,"10099":4,"10100":4,"10101":5,"10102":4,"10103":3,"10104":3,"10105":3,"10106":3,"10107":6,"10108":1,"10109":3,"10110":5,"10111":2,"10112":9,"10113":7,"10114":3,"10115":4,"10116":3,"10117":6,"10118":9,"10119":4,"10120":5,"10121":4,"10122":2,"10123":2,"10124":3,"10125":7,"10126":1,"10127":4,"10128":4,"10129":2,"10130":5,"10131":3,"10132":3,"10133":4,"10134":4,"10135":3,"10136":5,"10137":5,"10138":2,"10139":3,"10140":5,"10141":5,"10142":4,"10143":4,"10144":2,"10145":3,"10146":2,"10147":8,"10148":4,"10149":2,"10150":2,"10151":4,"10152":8,"10153":4,"10154":3,"10155":5,"10156":3,"10157":2,"10158":3,"10159":5,"10160":8,"10161":3,"10162":3,"10163":4,"10164":4,"10165":5,"10166":1,"10167":3,"10168":4,"10169":8,"10170":5,"10171":3,"10172":7,"10173":7,"10174":4,"10175":2,"10176":4,"10177":2,"10178":4,"10179":6,"10180":2,"10181":3,"10182":3,"10183":4,"10184":4,"10185":4,"10186":1,"10187":5,"10188":5,"10189":4,"10190":4,"10191":1,"10192":5,"10193":3,"10194":3,"10195":4,"10196":2,"10197":4,"10198":4,"10199":4,"10200":5,"10201":3,"10202":3,"10203":7,"10204":4,"10205":5,"10206":5,"10207":2,"10208":4,"10209":5,"10210":4,"10211":5,"10212":4,"10213":4,"10214":9,"10215":4,"10216":4,"10217":4,"10218":6,"10219":7,"10220":4,"10221":4,"10222":2,"10223":3,"10224":9,"10225":3,"10226":2,"10227":3,"10228":3,"10229":3,"10230":2,"10231":2,"10232":4,"10233":4,"10234":4,"10235":6,"10236":4,"10237":3,"10238":2,"10239":4,"10240":4,"10241":3,"10242":8,"10243":6,"10244":5,"10245":4,"10246":4,"10247":3,"10248":5,"10249":2,"10250":6,"10251":4,"10252":8,"10253":5,"10254":5,"10255":5,"10256":3,"10257":5,"10258":3,"10259":4,"10260":3,"10261":4,"10262":9,"10263":4,"10264":3,"10265":5,"10266":4,"10267":7,"10268":3,"10269":4,"10270":3,"10271":4,"10272":3,"10273":3,"10274":6,"10275":5,"10276":4,"10277":3,"10278":3,"10279":5,"10280":4,"10281":5,"10282":4,"10283":6,"10284":7,"10285":3,"10286":2,"10287":5,"10288":3,"10289":4,"10290":3,"10291":3,"10292":3,"10293":5,"10294":1,"10295":4,"10296":5,"10297":7,"10298":3,"10299":3,"10300":6,"10301":4,"10302":4,"10303":5,"10304":3,"10305":4,"10306":1,"10307":1,"10308":6,"10309":2,"10310":5,"10311":3,"10312":2,"10313":4,"10314":4,"10315":5,"10316":4,"10317":9,"10318":3,"10319":2,"10320":5,"10321":4,"10322":4,"10323":7,"10324":3,"10325":6,"10326":4,"10327":4,"10328":2,"10329":3,"10330":5,"10331":5,"10332":4,"10333":4,"10334":3,"10335":7,"10336":4,"10337":5,"10338":3,"10339":5,"10340":5,"10341":8,"10342":7,"10343":6,"10344":4,"10345":3,"10346":7,"10347":3,"10348":1,"10349":3,"10350":7,"10351":3,"10352":1,"10353":2,"10354":3,"10355":4,"10356":6,"10357":4,"10358":5,"10359":4,"10360":3,"10361":3,"10362":2,"10363":3,"10364":4,"10365":2,"10366":5,"10367":3,"10368":4,"10369":5,"10370":3,"10371":5,"10372":8,"10373":5,"10374":2,"10375":4,"10376":3,"10377":5,"10378":3,"10379":3,"10380":5,"10381":3,"10382":3,"10383":4,"10384":4,"10385":4,"10386":5,"10387":4,"10388":2,"10389":3,"10390":4,"10391":1,"10392":7,"10393":4,"10394":3,"10395":4,"10396":4,"10397":4,"10398":3,"10399":2,"10400":1,"10401":3,"10402":5,"10403":4,"10404":7,"10405":5,"10406":7,"10407":5,"10408":4,"10409":1,"10410":3,"10411":3,"10412":7,"10413":4,"10414":4,"10415":8,"10416":3,"10417":4,"10418":3,"10419":4,"10420":1,"10421":4,"10422":3,"10423":4,"10424":3,"10425":1,"10426":2,"10427":2,"10428":3,"10429":3,"10430":3,"10431":4,"10432":3,"10433":5,"10434":9,"10435":7,"10436":1,"10437":4,"10438":4,"10439":1,"10440":4,"10441":3,"10442":2,"10443":6,"10444":6,"10445":4,"10446":2,"10447":4,"10448":8,"10449":3,"10450":4,"10451":5,"10452":6,"10453":9,"10454":3,"10455":3,"10456":4,"10457":2,"10458":4,"10459":3,"10460":9,"10461":6,"10462":2,"10463":5,"10464":5,"10465":5,"10466":6,"10467":4,"10468":4,"10469":4,"10470":4,"10471":6,"10472":5,"10473":4,"10474":2,"10475":8,"10476":3,"10477":4,"10478":3,"10479":4,"10480":5,"10481":3,"10482":4,"10483":4,"10484":5,"10485":3,"10486":4,"10487":3,"10488":2,"10489":2,"10490":3,"10491":4,"10492":5,"10493":4,"10494":4,"10495":3,"10496":2,"10497":5,"10498":2,"10499":7,"10500":5,"10501":4,"10502":5,"10503":4,"10504":5,"10505":5,"10506":4,"10507":3,"10508":5,"10509":3,"10510":3,"10511":4,"10512":5,"10513":5,"10514":2,"10515":3,"10516":3,"10517":9,"10518":3,"10519":7,"10520":3,"10521":5,"10522":4,"10523":4,"10524":3,"10525":4,"10526":5,"10527":3,"10528":2,"10529":5,"10530":2,"10531":5,"10532":3,"10533":4,"10534":5,"10535":9,"10536":1,"10537":1,"10538":4,"10539":3,"10540":6,"10541":3,"10542":7,"10543":3,"10544":5,"10545":7,"10546":6,"10547":2,"10548":2,"10549":4,"10550":4,"10551":4,"10552":4,"10553":3,"10554":1,"10555":3,"10556":5,"10557":5,"10558":2,"10559":3,"10560":6,"10561":4,"10562":3,"10563":3,"10564":4,"10565":1,"10566":4,"10567":8,"10568":4,"10569":4,"10570":5,"10571":2,"10572":5,"10573":5,"10574":4,"10575":4,"10576":5,"10577":2,"10578":1,"10579":4,"10580":4,"10581":5,"10582":5,"10583":8,"10584":3,"10585":3,"10586":5,"10587":5,"10588":1,"10589":3,"10590":2,"10591":1,"10592":3,"10593":4,"10594":4,"10595":2,"10596":1,"10597":3,"10598":6,"10599":4,"10600":4,"10601":5,"10602":4,"10603":4,"10604":4,"10605":5,"10606":6,"10607":4,"10608":3,"10609":9,"10610":1,"10611":3,"10612":8,"10613":4,"10614":2,"10615":4,"10616":4,"10617":8,"10618":3,"10619":2,"10620":3,"10621":4,"10622":3,"10623":8,"10624":2,"10625":3,"10626":6,"10627":5,"10628":9,"10629":3,"10630":5,"10631":4,"10632":3,"10633":5,"10634":4,"10635":4,"10636":5,"10637":1,"10638":9,"10639":3,"10640":4,"10641":2,"10642":2,"10643":4,"10644":3,"10645":7,"10646":3,"10647":3,"10648":4,"10649":4,"10650":4,"10651":7,"10652":4,"10653":3,"10654":5,"10655":7,"10656":8,"10657":4,"10658":4,"10659":5,"10660":4,"10661":7,"10662":3,"10663":4,"10664":4,"10665":8,"10666":6,"10667":4,"10668":7,"10669":3,"10670":4,"10671":4,"10672":5,"10673":1,"10674":2,"10675":3,"10676":3,"10677":3,"10678":4,"10679":4,"10680":3,"10681":7,"10682":3,"10683":5,"10684":4,"10685":4,"10686":9,"10687":4,"10688":8,"10689":7,"10690":4,"10691":4,"10692":7,"10693":4,"10694":2,"10695":3,"10696":7,"10697":1,"10698":4,"10699":5,"10700":4,"10701":4,"10702":8,"10703":1,"10704":3,"10705":9,"10706":6,"10707":5,"10708":5,"10709":3,"10710":4,"10711":5,"10712":2,"10713":5,"10714":4,"10715":3,"10716":4,"10717":5,"10718":3,"10719":3,"10720":3,"10721":2,"10722":3,"10723":3,"10724":3,"10725":3,"10726":3,"10727":4,"10728":5,"10729":2,"10730":4,"10731":3,"10732":4,"10733":7,"10734":3,"10735":1,"10736":4,"10737":3,"10738":8,"10739":4,"10740":3,"10741":4,"10742":3,"10743":3,"10744":3,"10745":6,"10746":6,"10747":7,"10748":1,"10749":7,"10750":4,"10751":3,"10752":4,"10753":3,"10754":4,"10755":4,"10756":1,"10757":4,"10758":2,"10759":3,"10760":4,"10761":3,"10762":9,"10763":3,"10764":3,"10765":1,"10766":2,"10767":3,"10768":2,"10769":3,"10770":2,"10771":3,"10772":4,"10773":3,"10774":8,"10775":2,"10776":4,"10777":3,"10778":4,"10779":4,"10780":2,"10781":4,"10782":4,"10783":3,"10784":2,"10785":4,"10786":5,"10787":5,"10788":2,"10789":7,"10790":1,"10791":5,"10792":2,"10793":6,"10794":4,"10795":3,"10796":3,"10797":4,"10798":1,"10799":5,"10800":4,"10801":2,"10802":1,"10803":5,"10804":4,"10805":4,"10806":4,"10807":2,"10808":4,"10809":3,"10810":3,"10811":3,"10812":2,"10813":5,"10814":6,"10815":6,"10816":2,"10817":4,"10818":4,"10819":2,"10820":6,"10821":4,"10822":5,"10823":3,"10824":3,"10825":7,"10826":4,"10827":6,"10828":6,"10829":1,"10830":4,"10831":4,"10832":4,"10833":4,"10834":3,"10835":3,"10836":7,"10837":2,"10838":3,"10839":4,"10840":4,"10841":4,"10842":2,"10843":5,"10844":2,"10845":4,"10846":7,"10847":3,"10848":4,"10849":3,"10850":4,"10851":4,"10852":3,"10853":2,"10854":3,"10855":3,"10856":3,"10857":4,"10858":1,"10859":3,"10860":3,"10861":4,"10862":3,"10863":1,"10864":7,"10865":2,"10866":5,"10867":3,"10868":2,"10869":9,"10870":4,"10871":3,"10872":5,"10873":6,"10874":4,"10875":8,"10876":4,"10877":5,"10878":3,"10879":5,"10880":4,"10881":4,"10882":4,"10883":7,"10884":3,"10885":4,"10886":5,"10887":6,"10888":3,"10889":3,"10890":8,"10891":4,"10892":6,"10893":5,"10894":4,"10895":8,"10896":5,"10897":5,"10898":4,"10899":4,"10900":3,"10901":3,"10902":4,"10903":4,"10904":7,"10905":5,"10906":4,"10907":5,"10908":3,"10909":3,"10910":1,"10911":3,"10912":2,"10913":3,"10914":4,"10915":4,"10916":5,"10917":6,"10918":5,"10919":3,"10920":5,"10921":4,"10922":5,"10923":2,"10924":3,"10925":4,"10926":4,"10927":3,"10928":4,"10929":5,"10930":4,"10931":4,"10932":3,"10933":4,"10934":5,"10935":3,"10936":6,"10937":4,"10938":4,"10939":3,"10940":4,"10941":4,"10942":3,"10943":5,"10944":5,"10945":6,"10946":4,"10947":4,"10948":2,"10949":3,"10950":5,"10951":3,"10952":3,"10953":5,"10954":3,"10955":2,"10956":4,"10957":4,"10958":3,"10959":4,"10960":5,"10961":3,"10962":3,"10963":8,"10964":3,"10965":4,"10966":4,"10967":6,"10968":4,"10969":5,"10970":5,"10971":2,"10972":3,"10973":1,"10974":5,"10975":4,"10976":5,"10977":4,"10978":4,"10979":2,"10980":3,"10981":2,"10982":7,"10983":6,"10984":2,"10985":7,"10986":9,"10987":4,"10988":4,"10989":5,"10990":2,"10991":3,"10992":3,"10993":4,"10994":6,"10995":5,"10996":3},"income":{"0":"midIncome","1":"lowIncomeA","2":"midIncome","3":"midIncome","4":"midIncome","5":"midIncome","6":"midIncome","7":"midIncome","8":"midIncome","9":"midIncome","10":"midIncome","11":"midIncome","12":"highIncome","13":"midIncome","14":"midIncome","15":"midIncome","16":"midIncome","17":"midIncome","18":"midIncome","19":"highIncome","20":"midIncome","21":"midIncome","22":"lowIncomeA","23":"lowIncomeB","24":"midIncome","25":"midIncome","26":"midIncome","27":"midIncome","28":"midIncome","29":"lowIncomeA","30":"lowIncomeA","31":"midIncome","32":"midIncome","33":"midIncome","34":"midIncome","35":"midIncome","36":"lowIncomeB","37":"midIncome","38":"midIncome","39":"midIncome","40":"midIncome","41":"highIncome","42":"midIncome","43":"highIncome","44":"highIncome","45":"lowIncomeB","46":"midIncome","47":"midIncome","48":"lowIncomeB","49":"midIncome","50":"midIncome","51":"midIncome","52":"midIncome","53":"midIncome","54":"lowIncomeB","55":"midIncome","56":"midIncome","57":"midIncome","58":"midIncome","59":"midIncome","60":"midIncome","61":"lowIncomeB","62":"highIncome","63":"midIncome","64":"midIncome","65":"lowIncomeB","66":"midIncome","67":"midIncome","68":"midIncome","69":"lowIncomeB","70":"lowIncomeB","71":"highIncome","72":"lowIncomeB","73":"midIncome","74":"lowIncomeA","75":"lowIncomeA","76":"midIncome","77":"midIncome","78":"highIncome","79":"midIncome","80":"highIncome","81":"lowIncomeA","82":"midIncome","83":"midIncome","84":"midIncome","85":"lowIncomeA","86":"midIncome","87":"midIncome","88":"lowIncomeB","89":"highIncome","90":"midIncome","91":"midIncome","92":"midIncome","93":"midIncome","94":"midIncome","95":"midIncome","96":"midIncome","97":"midIncome","98":"midIncome","99":"highIncome","100":"midIncome","101":"midIncome","102":"lowIncomeA","103":"lowIncomeB","104":"lowIncomeB","105":"midIncome","106":"midIncome","107":"midIncome","108":"midIncome","109":"midIncome","110":"midIncome","111":"midIncome","112":"lowIncomeB","113":"midIncome","114":"midIncome","115":"midIncome","116":"midIncome","117":"lowIncomeA","118":"midIncome","119":"midIncome","120":"midIncome","121":"midIncome","122":"midIncome","123":"midIncome","124":"midIncome","125":"highIncome","126":"midIncome","127":"midIncome","128":"midIncome","129":"midIncome","130":"lowIncomeB","131":"midIncome","132":"midIncome","133":"midIncome","134":"midIncome","135":"highIncome","136":"midIncome","137":"midIncome","138":"midIncome","139":"midIncome","140":"highIncome","141":"midIncome","142":"midIncome","143":"highIncome","144":"midIncome","145":"midIncome","146":"midIncome","147":"midIncome","148":"midIncome","149":"lowIncomeB","150":"lowIncomeA","151":"midIncome","152":"midIncome","153":"midIncome","154":"midIncome","155":"midIncome","156":"midIncome","157":"lowIncomeB","158":"midIncome","159":"highIncome","160":"midIncome","161":"midIncome","162":"midIncome","163":"lowIncomeA","164":"midIncome","165":"midIncome","166":"highIncome","167":"highIncome","168":"lowIncomeB","169":"lowIncomeB","170":"highIncome","171":"midIncome","172":"midIncome","173":"midIncome","174":"midIncome","175":"midIncome","176":"midIncome","177":"lowIncomeB","178":"midIncome","179":"midIncome","180":"midIncome","181":"lowIncomeA","182":"midIncome","183":"midIncome","184":"midIncome","185":"midIncome","186":"midIncome","187":"midIncome","188":"midIncome","189":"midIncome","190":"midIncome","191":"lowIncomeA","192":"midIncome","193":"midIncome","194":"midIncome","195":"lowIncomeA","196":"lowIncomeB","197":"midIncome","198":"midIncome","199":"lowIncomeB","200":"midIncome","201":"midIncome","202":"midIncome","203":"highIncome","204":"midIncome","205":"lowIncomeA","206":"midIncome","207":"midIncome","208":"midIncome","209":"lowIncomeB","210":"midIncome","211":"lowIncomeB","212":"midIncome","213":"midIncome","214":"midIncome","215":"midIncome","216":"midIncome","217":"lowIncomeA","218":"midIncome","219":"highIncome","220":"highIncome","221":"midIncome","222":"midIncome","223":"midIncome","224":"lowIncomeA","225":"lowIncomeA","226":"lowIncomeA","227":"midIncome","228":"midIncome","229":"midIncome","230":"midIncome","231":"highIncome","232":"midIncome","233":"highIncome","234":"lowIncomeB","235":"midIncome","236":"midIncome","237":"midIncome","238":"midIncome","239":"midIncome","240":"lowIncomeA","241":"midIncome","242":"midIncome","243":"midIncome","244":"midIncome","245":"midIncome","246":"midIncome","247":"highIncome","248":"lowIncomeA","249":"lowIncomeA","250":"lowIncomeA","251":"midIncome","252":"midIncome","253":"midIncome","254":"midIncome","255":"midIncome","256":"midIncome","257":"midIncome","258":"midIncome","259":"midIncome","260":"highIncome","261":"midIncome","262":"midIncome","263":"midIncome","264":"midIncome","265":"midIncome","266":"midIncome","267":"midIncome","268":"midIncome","269":"highIncome","270":"midIncome","271":"midIncome","272":"lowIncomeB","273":"midIncome","274":"lowIncomeB","275":"midIncome","276":"midIncome","277":"midIncome","278":"midIncome","279":"lowIncomeB","280":"midIncome","281":"midIncome","282":"lowIncomeB","283":"midIncome","284":"midIncome","285":"midIncome","286":"lowIncomeB","287":"lowIncomeB","288":"midIncome","289":"midIncome","290":"highIncome","291":"lowIncomeB","292":"midIncome","293":"midIncome","294":"lowIncomeB","295":"midIncome","296":"midIncome","297":"midIncome","298":"midIncome","299":"midIncome","300":"midIncome","301":"lowIncomeA","302":"midIncome","303":"midIncome","304":"midIncome","305":"lowIncomeB","306":"lowIncomeB","307":"midIncome","308":"midIncome","309":"midIncome","310":"midIncome","311":"midIncome","312":"highIncome","313":"midIncome","314":"lowIncomeB","315":"midIncome","316":"midIncome","317":"midIncome","318":"midIncome","319":"midIncome","320":"highIncome","321":"midIncome","322":"lowIncomeA","323":"midIncome","324":"midIncome","325":"midIncome","326":"midIncome","327":"midIncome","328":"lowIncomeA","329":"midIncome","330":"midIncome","331":"highIncome","332":"midIncome","333":"midIncome","334":"lowIncomeB","335":"midIncome","336":"highIncome","337":"midIncome","338":"midIncome","339":"midIncome","340":"midIncome","341":"midIncome","342":"midIncome","343":"highIncome","344":"midIncome","345":"midIncome","346":"midIncome","347":"highIncome","348":"midIncome","349":"lowIncomeA","350":"lowIncomeB","351":"midIncome","352":"midIncome","353":"midIncome","354":"midIncome","355":"midIncome","356":"midIncome","357":"midIncome","358":"highIncome","359":"midIncome","360":"midIncome","361":"midIncome","362":"midIncome","363":"highIncome","364":"midIncome","365":"midIncome","366":"midIncome","367":"midIncome","368":"lowIncomeA","369":"midIncome","370":"midIncome","371":"highIncome","372":"midIncome","373":"highIncome","374":"midIncome","375":"midIncome","376":"lowIncomeA","377":"midIncome","378":"midIncome","379":"lowIncomeB","380":"midIncome","381":"midIncome","382":"midIncome","383":"midIncome","384":"lowIncomeA","385":"midIncome","386":"lowIncomeA","387":"midIncome","388":"midIncome","389":"lowIncomeA","390":"lowIncomeA","391":"midIncome","392":"midIncome","393":"midIncome","394":"midIncome","395":"midIncome","396":"lowIncomeA","397":"midIncome","398":"lowIncomeA","399":"lowIncomeA","400":"midIncome","401":"midIncome","402":"lowIncomeA","403":"midIncome","404":"midIncome","405":"lowIncomeA","406":"midIncome","407":"midIncome","408":"midIncome","409":"midIncome","410":"midIncome","411":"midIncome","412":"midIncome","413":"midIncome","414":"highIncome","415":"midIncome","416":"midIncome","417":"midIncome","418":"midIncome","419":"lowIncomeA","420":"highIncome","421":"midIncome","422":"midIncome","423":"midIncome","424":"midIncome","425":"midIncome","426":"midIncome","427":"lowIncomeA","428":"midIncome","429":"midIncome","430":"midIncome","431":"lowIncomeA","432":"midIncome","433":"highIncome","434":"midIncome","435":"highIncome","436":"lowIncomeB","437":"lowIncomeB","438":"midIncome","439":"lowIncomeB","440":"lowIncomeA","441":"midIncome","442":"lowIncomeB","443":"midIncome","444":"midIncome","445":"midIncome","446":"midIncome","447":"midIncome","448":"midIncome","449":"midIncome","450":"midIncome","451":"midIncome","452":"highIncome","453":"midIncome","454":"midIncome","455":"midIncome","456":"midIncome","457":"lowIncomeA","458":"midIncome","459":"highIncome","460":"midIncome","461":"midIncome","462":"lowIncomeB","463":"midIncome","464":"midIncome","465":"midIncome","466":"highIncome","467":"midIncome","468":"midIncome","469":"lowIncomeB","470":"midIncome","471":"midIncome","472":"lowIncomeA","473":"midIncome","474":"lowIncomeA","475":"midIncome","476":"lowIncomeB","477":"midIncome","478":"lowIncomeB","479":"midIncome","480":"midIncome","481":"midIncome","482":"midIncome","483":"midIncome","484":"midIncome","485":"midIncome","486":"midIncome","487":"highIncome","488":"midIncome","489":"midIncome","490":"midIncome","491":"midIncome","492":"highIncome","493":"midIncome","494":"midIncome","495":"lowIncomeA","496":"midIncome","497":"midIncome","498":"midIncome","499":"midIncome","500":"lowIncomeA","501":"midIncome","502":"highIncome","503":"midIncome","504":"midIncome","505":"midIncome","506":"midIncome","507":"midIncome","508":"midIncome","509":"midIncome","510":"highIncome","511":"highIncome","512":"midIncome","513":"lowIncomeB","514":"highIncome","515":"lowIncomeA","516":"highIncome","517":"lowIncomeB","518":"midIncome","519":"lowIncomeA","520":"lowIncomeA","521":"midIncome","522":"lowIncomeB","523":"midIncome","524":"midIncome","525":"lowIncomeA","526":"midIncome","527":"lowIncomeA","528":"lowIncomeB","529":"lowIncomeB","530":"midIncome","531":"lowIncomeA","532":"midIncome","533":"midIncome","534":"midIncome","535":"lowIncomeB","536":"highIncome","537":"lowIncomeA","538":"midIncome","539":"midIncome","540":"midIncome","541":"midIncome","542":"midIncome","543":"highIncome","544":"lowIncomeB","545":"midIncome","546":"midIncome","547":"lowIncomeB","548":"midIncome","549":"midIncome","550":"highIncome","551":"lowIncomeA","552":"midIncome","553":"midIncome","554":"midIncome","555":"midIncome","556":"midIncome","557":"midIncome","558":"midIncome","559":"midIncome","560":"midIncome","561":"highIncome","562":"midIncome","563":"highIncome","564":"midIncome","565":"midIncome","566":"highIncome","567":"midIncome","568":"lowIncomeA","569":"midIncome","570":"midIncome","571":"lowIncomeA","572":"lowIncomeB","573":"midIncome","574":"lowIncomeB","575":"midIncome","576":"midIncome","577":"lowIncomeA","578":"highIncome","579":"midIncome","580":"highIncome","581":"lowIncomeB","582":"midIncome","583":"midIncome","584":"midIncome","585":"midIncome","586":"midIncome","587":"highIncome","588":"lowIncomeB","589":"midIncome","590":"midIncome","591":"midIncome","592":"midIncome","593":"midIncome","594":"midIncome","595":"midIncome","596":"midIncome","597":"lowIncomeA","598":"midIncome","599":"midIncome","600":"midIncome","601":"midIncome","602":"midIncome","603":"midIncome","604":"midIncome","605":"midIncome","606":"midIncome","607":"midIncome","608":"midIncome","609":"lowIncomeA","610":"midIncome","611":"highIncome","612":"midIncome","613":"midIncome","614":"midIncome","615":"midIncome","616":"midIncome","617":"midIncome","618":"midIncome","619":"midIncome","620":"midIncome","621":"midIncome","622":"lowIncomeB","623":"midIncome","624":"midIncome","625":"midIncome","626":"midIncome","627":"lowIncomeA","628":"midIncome","629":"midIncome","630":"midIncome","631":"lowIncomeB","632":"midIncome","633":"midIncome","634":"midIncome","635":"lowIncomeA","636":"midIncome","637":"midIncome","638":"lowIncomeB","639":"midIncome","640":"lowIncomeA","641":"midIncome","642":"lowIncomeA","643":"midIncome","644":"midIncome","645":"midIncome","646":"midIncome","647":"highIncome","648":"midIncome","649":"midIncome","650":"midIncome","651":"lowIncomeA","652":"midIncome","653":"midIncome","654":"midIncome","655":"lowIncomeB","656":"midIncome","657":"lowIncomeA","658":"midIncome","659":"midIncome","660":"midIncome","661":"lowIncomeA","662":"midIncome","663":"lowIncomeA","664":"midIncome","665":"highIncome","666":"highIncome","667":"highIncome","668":"midIncome","669":"midIncome","670":"midIncome","671":"midIncome","672":"midIncome","673":"midIncome","674":"midIncome","675":"lowIncomeA","676":"midIncome","677":"midIncome","678":"midIncome","679":"lowIncomeA","680":"lowIncomeA","681":"midIncome","682":"midIncome","683":"midIncome","684":"lowIncomeB","685":"midIncome","686":"midIncome","687":"lowIncomeB","688":"lowIncomeB","689":"midIncome","690":"lowIncomeB","691":"midIncome","692":"midIncome","693":"midIncome","694":"midIncome","695":"lowIncomeB","696":"midIncome","697":"midIncome","698":"lowIncomeA","699":"highIncome","700":"midIncome","701":"midIncome","702":"midIncome","703":"lowIncomeB","704":"midIncome","705":"lowIncomeA","706":"lowIncomeA","707":"lowIncomeA","708":"highIncome","709":"highIncome","710":"midIncome","711":"midIncome","712":"lowIncomeA","713":"lowIncomeB","714":"midIncome","715":"midIncome","716":"highIncome","717":"midIncome","718":"midIncome","719":"midIncome","720":"midIncome","721":"midIncome","722":"midIncome","723":"lowIncomeA","724":"midIncome","725":"midIncome","726":"highIncome","727":"highIncome","728":"midIncome","729":"lowIncomeA","730":"midIncome","731":"midIncome","732":"midIncome","733":"midIncome","734":"midIncome","735":"midIncome","736":"midIncome","737":"lowIncomeA","738":"midIncome","739":"midIncome","740":"highIncome","741":"midIncome","742":"midIncome","743":"lowIncomeB","744":"lowIncomeA","745":"midIncome","746":"midIncome","747":"midIncome","748":"midIncome","749":"midIncome","750":"midIncome","751":"lowIncomeB","752":"midIncome","753":"midIncome","754":"lowIncomeB","755":"highIncome","756":"midIncome","757":"midIncome","758":"midIncome","759":"midIncome","760":"lowIncomeB","761":"midIncome","762":"midIncome","763":"midIncome","764":"highIncome","765":"lowIncomeB","766":"midIncome","767":"midIncome","768":"midIncome","769":"midIncome","770":"midIncome","771":"midIncome","772":"midIncome","773":"highIncome","774":"midIncome","775":"midIncome","776":"midIncome","777":"midIncome","778":"lowIncomeB","779":"midIncome","780":"lowIncomeB","781":"lowIncomeB","782":"lowIncomeA","783":"midIncome","784":"midIncome","785":"midIncome","786":"midIncome","787":"midIncome","788":"midIncome","789":"midIncome","790":"midIncome","791":"lowIncomeB","792":"midIncome","793":"midIncome","794":"highIncome","795":"highIncome","796":"midIncome","797":"midIncome","798":"highIncome","799":"midIncome","800":"lowIncomeA","801":"lowIncomeA","802":"midIncome","803":"midIncome","804":"midIncome","805":"midIncome","806":"lowIncomeA","807":"midIncome","808":"midIncome","809":"midIncome","810":"midIncome","811":"midIncome","812":"lowIncomeA","813":"highIncome","814":"midIncome","815":"lowIncomeB","816":"midIncome","817":"midIncome","818":"lowIncomeA","819":"midIncome","820":"midIncome","821":"highIncome","822":"midIncome","823":"highIncome","824":"highIncome","825":"midIncome","826":"highIncome","827":"highIncome","828":"midIncome","829":"midIncome","830":"lowIncomeA","831":"midIncome","832":"midIncome","833":"midIncome","834":"midIncome","835":"midIncome","836":"midIncome","837":"lowIncomeB","838":"lowIncomeA","839":"highIncome","840":"midIncome","841":"midIncome","842":"midIncome","843":"midIncome","844":"midIncome","845":"lowIncomeB","846":"midIncome","847":"midIncome","848":"midIncome","849":"lowIncomeB","850":"midIncome","851":"midIncome","852":"midIncome","853":"midIncome","854":"highIncome","855":"midIncome","856":"highIncome","857":"midIncome","858":"lowIncomeA","859":"lowIncomeB","860":"midIncome","861":"midIncome","862":"midIncome","863":"midIncome","864":"midIncome","865":"lowIncomeA","866":"midIncome","867":"midIncome","868":"lowIncomeA","869":"lowIncomeB","870":"midIncome","871":"midIncome","872":"highIncome","873":"midIncome","874":"highIncome","875":"midIncome","876":"midIncome","877":"midIncome","878":"midIncome","879":"highIncome","880":"midIncome","881":"midIncome","882":"lowIncomeA","883":"highIncome","884":"midIncome","885":"midIncome","886":"lowIncomeB","887":"midIncome","888":"midIncome","889":"lowIncomeB","890":"lowIncomeA","891":"midIncome","892":"midIncome","893":"midIncome","894":"midIncome","895":"midIncome","896":"lowIncomeB","897":"highIncome","898":"midIncome","899":"lowIncomeA","900":"midIncome","901":"midIncome","902":"lowIncomeA","903":"midIncome","904":"highIncome","905":"midIncome","906":"midIncome","907":"midIncome","908":"highIncome","909":"lowIncomeA","910":"midIncome","911":"lowIncomeB","912":"midIncome","913":"lowIncomeB","914":"highIncome","915":"midIncome","916":"midIncome","917":"lowIncomeB","918":"midIncome","919":"midIncome","920":"midIncome","921":"midIncome","922":"highIncome","923":"midIncome","924":"midIncome","925":"midIncome","926":"midIncome","927":"midIncome","928":"midIncome","929":"midIncome","930":"midIncome","931":"lowIncomeB","932":"midIncome","933":"midIncome","934":"midIncome","935":"lowIncomeB","936":"midIncome","937":"midIncome","938":"lowIncomeB","939":"lowIncomeB","940":"lowIncomeA","941":"midIncome","942":"midIncome","943":"midIncome","944":"midIncome","945":"highIncome","946":"highIncome","947":"lowIncomeB","948":"midIncome","949":"midIncome","950":"midIncome","951":"midIncome","952":"lowIncomeB","953":"midIncome","954":"lowIncomeB","955":"midIncome","956":"highIncome","957":"midIncome","958":"midIncome","959":"highIncome","960":"lowIncomeB","961":"midIncome","962":"midIncome","963":"midIncome","964":"highIncome","965":"midIncome","966":"midIncome","967":"midIncome","968":"midIncome","969":"midIncome","970":"midIncome","971":"midIncome","972":"midIncome","973":"midIncome","974":"lowIncomeA","975":"midIncome","976":"midIncome","977":"highIncome","978":"midIncome","979":"lowIncomeA","980":"midIncome","981":"lowIncomeB","982":"midIncome","983":"midIncome","984":"midIncome","985":"midIncome","986":"lowIncomeB","987":"midIncome","988":"midIncome","989":"lowIncomeA","990":"lowIncomeB","991":"midIncome","992":"midIncome","993":"midIncome","994":"highIncome","995":"lowIncomeB","996":"midIncome","997":"midIncome","998":"lowIncomeA","999":"highIncome","1000":"midIncome","1001":"midIncome","1002":"lowIncomeA","1003":"midIncome","1004":"midIncome","1005":"midIncome","1006":"highIncome","1007":"midIncome","1008":"lowIncomeB","1009":"midIncome","1010":"midIncome","1011":"midIncome","1012":"midIncome","1013":"midIncome","1014":"midIncome","1015":"midIncome","1016":"highIncome","1017":"midIncome","1018":"midIncome","1019":"lowIncomeB","1020":"midIncome","1021":"midIncome","1022":"highIncome","1023":"midIncome","1024":"midIncome","1025":"lowIncomeA","1026":"highIncome","1027":"lowIncomeB","1028":"lowIncomeA","1029":"lowIncomeB","1030":"midIncome","1031":"lowIncomeB","1032":"highIncome","1033":"midIncome","1034":"midIncome","1035":"midIncome","1036":"lowIncomeA","1037":"lowIncomeA","1038":"midIncome","1039":"midIncome","1040":"midIncome","1041":"midIncome","1042":"highIncome","1043":"lowIncomeA","1044":"highIncome","1045":"midIncome","1046":"midIncome","1047":"midIncome","1048":"midIncome","1049":"midIncome","1050":"midIncome","1051":"midIncome","1052":"lowIncomeB","1053":"midIncome","1054":"midIncome","1055":"highIncome","1056":"midIncome","1057":"midIncome","1058":"midIncome","1059":"midIncome","1060":"midIncome","1061":"lowIncomeB","1062":"lowIncomeA","1063":"lowIncomeB","1064":"midIncome","1065":"midIncome","1066":"lowIncomeA","1067":"midIncome","1068":"midIncome","1069":"midIncome","1070":"midIncome","1071":"lowIncomeA","1072":"midIncome","1073":"lowIncomeB","1074":"midIncome","1075":"lowIncomeA","1076":"midIncome","1077":"midIncome","1078":"lowIncomeB","1079":"midIncome","1080":"midIncome","1081":"lowIncomeA","1082":"midIncome","1083":"lowIncomeB","1084":"lowIncomeB","1085":"lowIncomeA","1086":"lowIncomeA","1087":"midIncome","1088":"highIncome","1089":"lowIncomeA","1090":"midIncome","1091":"midIncome","1092":"lowIncomeA","1093":"midIncome","1094":"midIncome","1095":"midIncome","1096":"lowIncomeA","1097":"lowIncomeB","1098":"midIncome","1099":"lowIncomeA","1100":"lowIncomeB","1101":"midIncome","1102":"midIncome","1103":"midIncome","1104":"midIncome","1105":"midIncome","1106":"midIncome","1107":"midIncome","1108":"midIncome","1109":"midIncome","1110":"midIncome","1111":"midIncome","1112":"lowIncomeB","1113":"midIncome","1114":"midIncome","1115":"highIncome","1116":"midIncome","1117":"midIncome","1118":"midIncome","1119":"midIncome","1120":"midIncome","1121":"midIncome","1122":"lowIncomeB","1123":"midIncome","1124":"midIncome","1125":"midIncome","1126":"midIncome","1127":"midIncome","1128":"midIncome","1129":"lowIncomeB","1130":"midIncome","1131":"midIncome","1132":"midIncome","1133":"midIncome","1134":"lowIncomeA","1135":"midIncome","1136":"highIncome","1137":"midIncome","1138":"midIncome","1139":"midIncome","1140":"highIncome","1141":"lowIncomeB","1142":"lowIncomeB","1143":"midIncome","1144":"midIncome","1145":"midIncome","1146":"midIncome","1147":"midIncome","1148":"midIncome","1149":"midIncome","1150":"highIncome","1151":"lowIncomeA","1152":"lowIncomeB","1153":"midIncome","1154":"lowIncomeA","1155":"lowIncomeA","1156":"midIncome","1157":"midIncome","1158":"midIncome","1159":"midIncome","1160":"lowIncomeB","1161":"lowIncomeB","1162":"midIncome","1163":"lowIncomeA","1164":"highIncome","1165":"highIncome","1166":"lowIncomeA","1167":"midIncome","1168":"midIncome","1169":"midIncome","1170":"lowIncomeB","1171":"lowIncomeB","1172":"lowIncomeB","1173":"midIncome","1174":"midIncome","1175":"midIncome","1176":"midIncome","1177":"highIncome","1178":"midIncome","1179":"midIncome","1180":"highIncome","1181":"midIncome","1182":"highIncome","1183":"midIncome","1184":"midIncome","1185":"midIncome","1186":"midIncome","1187":"highIncome","1188":"lowIncomeA","1189":"lowIncomeA","1190":"midIncome","1191":"midIncome","1192":"lowIncomeA","1193":"lowIncomeA","1194":"midIncome","1195":"midIncome","1196":"midIncome","1197":"highIncome","1198":"lowIncomeB","1199":"highIncome","1200":"midIncome","1201":"highIncome","1202":"midIncome","1203":"midIncome","1204":"midIncome","1205":"lowIncomeA","1206":"highIncome","1207":"midIncome","1208":"midIncome","1209":"midIncome","1210":"midIncome","1211":"midIncome","1212":"midIncome","1213":"midIncome","1214":"midIncome","1215":"lowIncomeB","1216":"midIncome","1217":"highIncome","1218":"midIncome","1219":"midIncome","1220":"lowIncomeB","1221":"highIncome","1222":"midIncome","1223":"lowIncomeA","1224":"lowIncomeB","1225":"midIncome","1226":"midIncome","1227":"lowIncomeB","1228":"midIncome","1229":"lowIncomeB","1230":"midIncome","1231":"midIncome","1232":"highIncome","1233":"lowIncomeA","1234":"midIncome","1235":"midIncome","1236":"midIncome","1237":"midIncome","1238":"midIncome","1239":"midIncome","1240":"midIncome","1241":"midIncome","1242":"midIncome","1243":"midIncome","1244":"midIncome","1245":"midIncome","1246":"midIncome","1247":"lowIncomeB","1248":"midIncome","1249":"midIncome","1250":"highIncome","1251":"midIncome","1252":"midIncome","1253":"midIncome","1254":"midIncome","1255":"lowIncomeB","1256":"midIncome","1257":"lowIncomeA","1258":"midIncome","1259":"highIncome","1260":"midIncome","1261":"midIncome","1262":"midIncome","1263":"midIncome","1264":"midIncome","1265":"midIncome","1266":"lowIncomeA","1267":"highIncome","1268":"midIncome","1269":"midIncome","1270":"midIncome","1271":"lowIncomeA","1272":"midIncome","1273":"lowIncomeA","1274":"midIncome","1275":"lowIncomeA","1276":"midIncome","1277":"midIncome","1278":"midIncome","1279":"midIncome","1280":"lowIncomeA","1281":"midIncome","1282":"midIncome","1283":"lowIncomeA","1284":"midIncome","1285":"midIncome","1286":"midIncome","1287":"midIncome","1288":"highIncome","1289":"midIncome","1290":"highIncome","1291":"midIncome","1292":"midIncome","1293":"midIncome","1294":"midIncome","1295":"midIncome","1296":"lowIncomeB","1297":"midIncome","1298":"midIncome","1299":"lowIncomeA","1300":"midIncome","1301":"midIncome","1302":"midIncome","1303":"lowIncomeA","1304":"highIncome","1305":"lowIncomeB","1306":"highIncome","1307":"midIncome","1308":"midIncome","1309":"midIncome","1310":"midIncome","1311":"lowIncomeA","1312":"midIncome","1313":"midIncome","1314":"midIncome","1315":"highIncome","1316":"midIncome","1317":"midIncome","1318":"lowIncomeA","1319":"midIncome","1320":"midIncome","1321":"lowIncomeA","1322":"midIncome","1323":"midIncome","1324":"lowIncomeA","1325":"midIncome","1326":"midIncome","1327":"midIncome","1328":"midIncome","1329":"midIncome","1330":"highIncome","1331":"midIncome","1332":"midIncome","1333":"midIncome","1334":"lowIncomeA","1335":"highIncome","1336":"midIncome","1337":"midIncome","1338":"midIncome","1339":"midIncome","1340":"midIncome","1341":"highIncome","1342":"midIncome","1343":"midIncome","1344":"highIncome","1345":"lowIncomeB","1346":"midIncome","1347":"midIncome","1348":"midIncome","1349":"lowIncomeA","1350":"midIncome","1351":"midIncome","1352":"midIncome","1353":"midIncome","1354":"midIncome","1355":"midIncome","1356":"midIncome","1357":"midIncome","1358":"midIncome","1359":"midIncome","1360":"midIncome","1361":"midIncome","1362":"midIncome","1363":"midIncome","1364":"midIncome","1365":"midIncome","1366":"midIncome","1367":"midIncome","1368":"midIncome","1369":"lowIncomeA","1370":"midIncome","1371":"lowIncomeA","1372":"lowIncomeA","1373":"highIncome","1374":"midIncome","1375":"lowIncomeB","1376":"midIncome","1377":"midIncome","1378":"lowIncomeB","1379":"midIncome","1380":"midIncome","1381":"midIncome","1382":"midIncome","1383":"midIncome","1384":"midIncome","1385":"midIncome","1386":"midIncome","1387":"midIncome","1388":"midIncome","1389":"midIncome","1390":"midIncome","1391":"highIncome","1392":"highIncome","1393":"midIncome","1394":"midIncome","1395":"midIncome","1396":"midIncome","1397":"midIncome","1398":"midIncome","1399":"highIncome","1400":"lowIncomeB","1401":"midIncome","1402":"midIncome","1403":"midIncome","1404":"midIncome","1405":"midIncome","1406":"midIncome","1407":"midIncome","1408":"midIncome","1409":"midIncome","1410":"midIncome","1411":"lowIncomeA","1412":"lowIncomeA","1413":"midIncome","1414":"midIncome","1415":"midIncome","1416":"midIncome","1417":"lowIncomeB","1418":"midIncome","1419":"midIncome","1420":"midIncome","1421":"midIncome","1422":"midIncome","1423":"midIncome","1424":"midIncome","1425":"midIncome","1426":"lowIncomeA","1427":"midIncome","1428":"highIncome","1429":"lowIncomeA","1430":"midIncome","1431":"midIncome","1432":"lowIncomeA","1433":"midIncome","1434":"midIncome","1435":"midIncome","1436":"lowIncomeB","1437":"midIncome","1438":"lowIncomeA","1439":"highIncome","1440":"midIncome","1441":"lowIncomeB","1442":"midIncome","1443":"highIncome","1444":"midIncome","1445":"lowIncomeA","1446":"lowIncomeA","1447":"midIncome","1448":"midIncome","1449":"midIncome","1450":"highIncome","1451":"midIncome","1452":"midIncome","1453":"midIncome","1454":"lowIncomeB","1455":"lowIncomeB","1456":"midIncome","1457":"lowIncomeB","1458":"lowIncomeA","1459":"lowIncomeB","1460":"midIncome","1461":"lowIncomeA","1462":"midIncome","1463":"highIncome","1464":"midIncome","1465":"midIncome","1466":"midIncome","1467":"midIncome","1468":"midIncome","1469":"midIncome","1470":"midIncome","1471":"midIncome","1472":"midIncome","1473":"lowIncomeA","1474":"lowIncomeB","1475":"highIncome","1476":"midIncome","1477":"midIncome","1478":"midIncome","1479":"midIncome","1480":"highIncome","1481":"midIncome","1482":"midIncome","1483":"midIncome","1484":"midIncome","1485":"midIncome","1486":"midIncome","1487":"midIncome","1488":"midIncome","1489":"midIncome","1490":"midIncome","1491":"midIncome","1492":"midIncome","1493":"midIncome","1494":"midIncome","1495":"midIncome","1496":"highIncome","1497":"midIncome","1498":"midIncome","1499":"highIncome","1500":"midIncome","1501":"midIncome","1502":"midIncome","1503":"midIncome","1504":"lowIncomeB","1505":"midIncome","1506":"midIncome","1507":"lowIncomeB","1508":"highIncome","1509":"lowIncomeA","1510":"midIncome","1511":"midIncome","1512":"midIncome","1513":"midIncome","1514":"lowIncomeB","1515":"midIncome","1516":"midIncome","1517":"midIncome","1518":"midIncome","1519":"midIncome","1520":"midIncome","1521":"midIncome","1522":"midIncome","1523":"midIncome","1524":"midIncome","1525":"midIncome","1526":"midIncome","1527":"midIncome","1528":"midIncome","1529":"midIncome","1530":"highIncome","1531":"midIncome","1532":"midIncome","1533":"highIncome","1534":"midIncome","1535":"midIncome","1536":"highIncome","1537":"midIncome","1538":"midIncome","1539":"midIncome","1540":"highIncome","1541":"midIncome","1542":"lowIncomeA","1543":"midIncome","1544":"lowIncomeB","1545":"highIncome","1546":"midIncome","1547":"midIncome","1548":"midIncome","1549":"midIncome","1550":"midIncome","1551":"midIncome","1552":"highIncome","1553":"midIncome","1554":"lowIncomeB","1555":"midIncome","1556":"midIncome","1557":"midIncome","1558":"midIncome","1559":"midIncome","1560":"midIncome","1561":"midIncome","1562":"highIncome","1563":"highIncome","1564":"midIncome","1565":"lowIncomeB","1566":"midIncome","1567":"midIncome","1568":"highIncome","1569":"midIncome","1570":"midIncome","1571":"midIncome","1572":"midIncome","1573":"highIncome","1574":"midIncome","1575":"midIncome","1576":"highIncome","1577":"midIncome","1578":"highIncome","1579":"midIncome","1580":"highIncome","1581":"midIncome","1582":"midIncome","1583":"midIncome","1584":"midIncome","1585":"highIncome","1586":"midIncome","1587":"lowIncomeB","1588":"midIncome","1589":"midIncome","1590":"midIncome","1591":"midIncome","1592":"midIncome","1593":"midIncome","1594":"midIncome","1595":"lowIncomeA","1596":"midIncome","1597":"midIncome","1598":"lowIncomeA","1599":"midIncome","1600":"midIncome","1601":"midIncome","1602":"midIncome","1603":"midIncome","1604":"highIncome","1605":"midIncome","1606":"midIncome","1607":"midIncome","1608":"midIncome","1609":"midIncome","1610":"midIncome","1611":"lowIncomeA","1612":"midIncome","1613":"midIncome","1614":"highIncome","1615":"lowIncomeA","1616":"lowIncomeB","1617":"highIncome","1618":"midIncome","1619":"midIncome","1620":"midIncome","1621":"highIncome","1622":"midIncome","1623":"lowIncomeA","1624":"midIncome","1625":"midIncome","1626":"lowIncomeB","1627":"midIncome","1628":"highIncome","1629":"midIncome","1630":"midIncome","1631":"lowIncomeB","1632":"lowIncomeA","1633":"lowIncomeB","1634":"midIncome","1635":"lowIncomeB","1636":"midIncome","1637":"midIncome","1638":"midIncome","1639":"lowIncomeA","1640":"midIncome","1641":"midIncome","1642":"midIncome","1643":"midIncome","1644":"midIncome","1645":"midIncome","1646":"midIncome","1647":"highIncome","1648":"midIncome","1649":"midIncome","1650":"lowIncomeA","1651":"highIncome","1652":"midIncome","1653":"midIncome","1654":"midIncome","1655":"lowIncomeA","1656":"midIncome","1657":"highIncome","1658":"lowIncomeB","1659":"midIncome","1660":"midIncome","1661":"midIncome","1662":"midIncome","1663":"midIncome","1664":"midIncome","1665":"lowIncomeA","1666":"lowIncomeB","1667":"midIncome","1668":"midIncome","1669":"midIncome","1670":"midIncome","1671":"midIncome","1672":"midIncome","1673":"midIncome","1674":"lowIncomeB","1675":"midIncome","1676":"highIncome","1677":"midIncome","1678":"midIncome","1679":"lowIncomeB","1680":"midIncome","1681":"midIncome","1682":"midIncome","1683":"midIncome","1684":"midIncome","1685":"midIncome","1686":"midIncome","1687":"midIncome","1688":"highIncome","1689":"midIncome","1690":"midIncome","1691":"midIncome","1692":"midIncome","1693":"lowIncomeB","1694":"midIncome","1695":"highIncome","1696":"midIncome","1697":"midIncome","1698":"midIncome","1699":"lowIncomeB","1700":"midIncome","1701":"lowIncomeB","1702":"lowIncomeA","1703":"midIncome","1704":"midIncome","1705":"highIncome","1706":"midIncome","1707":"midIncome","1708":"midIncome","1709":"midIncome","1710":"midIncome","1711":"midIncome","1712":"midIncome","1713":"lowIncomeA","1714":"midIncome","1715":"midIncome","1716":"midIncome","1717":"lowIncomeB","1718":"highIncome","1719":"highIncome","1720":"midIncome","1721":"midIncome","1722":"lowIncomeB","1723":"lowIncomeB","1724":"midIncome","1725":"midIncome","1726":"midIncome","1727":"midIncome","1728":"midIncome","1729":"midIncome","1730":"lowIncomeB","1731":"midIncome","1732":"midIncome","1733":"midIncome","1734":"midIncome","1735":"midIncome","1736":"midIncome","1737":"midIncome","1738":"midIncome","1739":"midIncome","1740":"midIncome","1741":"midIncome","1742":"midIncome","1743":"midIncome","1744":"lowIncomeB","1745":"midIncome","1746":"midIncome","1747":"midIncome","1748":"midIncome","1749":"midIncome","1750":"midIncome","1751":"lowIncomeA","1752":"midIncome","1753":"midIncome","1754":"midIncome","1755":"lowIncomeA","1756":"midIncome","1757":"midIncome","1758":"midIncome","1759":"highIncome","1760":"midIncome","1761":"midIncome","1762":"midIncome","1763":"midIncome","1764":"midIncome","1765":"lowIncomeB","1766":"midIncome","1767":"midIncome","1768":"midIncome","1769":"lowIncomeB","1770":"midIncome","1771":"midIncome","1772":"midIncome","1773":"lowIncomeB","1774":"lowIncomeB","1775":"highIncome","1776":"lowIncomeA","1777":"midIncome","1778":"lowIncomeB","1779":"lowIncomeB","1780":"midIncome","1781":"midIncome","1782":"midIncome","1783":"midIncome","1784":"midIncome","1785":"midIncome","1786":"lowIncomeB","1787":"midIncome","1788":"midIncome","1789":"midIncome","1790":"midIncome","1791":"lowIncomeB","1792":"midIncome","1793":"highIncome","1794":"lowIncomeB","1795":"midIncome","1796":"midIncome","1797":"midIncome","1798":"midIncome","1799":"midIncome","1800":"midIncome","1801":"midIncome","1802":"midIncome","1803":"midIncome","1804":"midIncome","1805":"midIncome","1806":"midIncome","1807":"highIncome","1808":"midIncome","1809":"midIncome","1810":"midIncome","1811":"midIncome","1812":"midIncome","1813":"midIncome","1814":"midIncome","1815":"lowIncomeB","1816":"midIncome","1817":"midIncome","1818":"midIncome","1819":"midIncome","1820":"midIncome","1821":"midIncome","1822":"midIncome","1823":"midIncome","1824":"midIncome","1825":"lowIncomeB","1826":"midIncome","1827":"lowIncomeB","1828":"lowIncomeB","1829":"lowIncomeB","1830":"highIncome","1831":"lowIncomeB","1832":"midIncome","1833":"highIncome","1834":"midIncome","1835":"lowIncomeB","1836":"lowIncomeB","1837":"lowIncomeA","1838":"midIncome","1839":"midIncome","1840":"lowIncomeB","1841":"highIncome","1842":"midIncome","1843":"midIncome","1844":"midIncome","1845":"midIncome","1846":"midIncome","1847":"midIncome","1848":"midIncome","1849":"midIncome","1850":"midIncome","1851":"midIncome","1852":"lowIncomeB","1853":"lowIncomeA","1854":"lowIncomeB","1855":"lowIncomeA","1856":"lowIncomeA","1857":"midIncome","1858":"midIncome","1859":"midIncome","1860":"highIncome","1861":"highIncome","1862":"midIncome","1863":"midIncome","1864":"midIncome","1865":"midIncome","1866":"midIncome","1867":"midIncome","1868":"midIncome","1869":"midIncome","1870":"midIncome","1871":"midIncome","1872":"midIncome","1873":"midIncome","1874":"highIncome","1875":"midIncome","1876":"midIncome","1877":"midIncome","1878":"midIncome","1879":"midIncome","1880":"lowIncomeA","1881":"midIncome","1882":"midIncome","1883":"midIncome","1884":"midIncome","1885":"lowIncomeA","1886":"midIncome","1887":"lowIncomeA","1888":"lowIncomeA","1889":"lowIncomeA","1890":"midIncome","1891":"midIncome","1892":"lowIncomeA","1893":"midIncome","1894":"lowIncomeB","1895":"midIncome","1896":"midIncome","1897":"midIncome","1898":"midIncome","1899":"midIncome","1900":"lowIncomeA","1901":"midIncome","1902":"midIncome","1903":"lowIncomeA","1904":"midIncome","1905":"lowIncomeA","1906":"midIncome","1907":"midIncome","1908":"midIncome","1909":"midIncome","1910":"midIncome","1911":"lowIncomeB","1912":"lowIncomeB","1913":"midIncome","1914":"highIncome","1915":"midIncome","1916":"midIncome","1917":"midIncome","1918":"midIncome","1919":"midIncome","1920":"lowIncomeA","1921":"midIncome","1922":"midIncome","1923":"midIncome","1924":"midIncome","1925":"midIncome","1926":"midIncome","1927":"lowIncomeA","1928":"lowIncomeA","1929":"midIncome","1930":"highIncome","1931":"midIncome","1932":"lowIncomeA","1933":"midIncome","1934":"midIncome","1935":"midIncome","1936":"midIncome","1937":"midIncome","1938":"midIncome","1939":"midIncome","1940":"midIncome","1941":"midIncome","1942":"midIncome","1943":"midIncome","1944":"highIncome","1945":"highIncome","1946":"midIncome","1947":"lowIncomeA","1948":"midIncome","1949":"midIncome","1950":"midIncome","1951":"midIncome","1952":"midIncome","1953":"midIncome","1954":"midIncome","1955":"lowIncomeA","1956":"highIncome","1957":"lowIncomeB","1958":"highIncome","1959":"highIncome","1960":"midIncome","1961":"midIncome","1962":"midIncome","1963":"midIncome","1964":"midIncome","1965":"midIncome","1966":"lowIncomeB","1967":"midIncome","1968":"midIncome","1969":"midIncome","1970":"lowIncomeA","1971":"midIncome","1972":"lowIncomeB","1973":"midIncome","1974":"midIncome","1975":"midIncome","1976":"midIncome","1977":"midIncome","1978":"lowIncomeB","1979":"midIncome","1980":"midIncome","1981":"midIncome","1982":"highIncome","1983":"midIncome","1984":"midIncome","1985":"lowIncomeA","1986":"lowIncomeB","1987":"midIncome","1988":"lowIncomeB","1989":"midIncome","1990":"midIncome","1991":"midIncome","1992":"midIncome","1993":"midIncome","1994":"midIncome","1995":"midIncome","1996":"midIncome","1997":"midIncome","1998":"lowIncomeA","1999":"midIncome","2000":"midIncome","2001":"midIncome","2002":"midIncome","2003":"midIncome","2004":"midIncome","2005":"midIncome","2006":"midIncome","2007":"midIncome","2008":"lowIncomeA","2009":"lowIncomeA","2010":"lowIncomeB","2011":"midIncome","2012":"lowIncomeA","2013":"midIncome","2014":"midIncome","2015":"highIncome","2016":"midIncome","2017":"midIncome","2018":"midIncome","2019":"lowIncomeB","2020":"lowIncomeA","2021":"highIncome","2022":"midIncome","2023":"lowIncomeA","2024":"highIncome","2025":"midIncome","2026":"midIncome","2027":"midIncome","2028":"midIncome","2029":"midIncome","2030":"midIncome","2031":"midIncome","2032":"midIncome","2033":"midIncome","2034":"midIncome","2035":"midIncome","2036":"midIncome","2037":"midIncome","2038":"midIncome","2039":"midIncome","2040":"midIncome","2041":"midIncome","2042":"midIncome","2043":"midIncome","2044":"midIncome","2045":"midIncome","2046":"midIncome","2047":"highIncome","2048":"midIncome","2049":"midIncome","2050":"lowIncomeB","2051":"midIncome","2052":"midIncome","2053":"midIncome","2054":"midIncome","2055":"midIncome","2056":"midIncome","2057":"midIncome","2058":"midIncome","2059":"midIncome","2060":"lowIncomeA","2061":"midIncome","2062":"highIncome","2063":"highIncome","2064":"midIncome","2065":"lowIncomeB","2066":"midIncome","2067":"midIncome","2068":"midIncome","2069":"midIncome","2070":"midIncome","2071":"midIncome","2072":"lowIncomeB","2073":"midIncome","2074":"midIncome","2075":"midIncome","2076":"midIncome","2077":"midIncome","2078":"midIncome","2079":"midIncome","2080":"lowIncomeA","2081":"lowIncomeB","2082":"lowIncomeB","2083":"midIncome","2084":"midIncome","2085":"lowIncomeB","2086":"midIncome","2087":"lowIncomeB","2088":"midIncome","2089":"midIncome","2090":"midIncome","2091":"midIncome","2092":"midIncome","2093":"highIncome","2094":"midIncome","2095":"highIncome","2096":"midIncome","2097":"midIncome","2098":"highIncome","2099":"lowIncomeA","2100":"lowIncomeB","2101":"midIncome","2102":"lowIncomeB","2103":"midIncome","2104":"highIncome","2105":"lowIncomeA","2106":"midIncome","2107":"midIncome","2108":"midIncome","2109":"midIncome","2110":"midIncome","2111":"midIncome","2112":"midIncome","2113":"highIncome","2114":"midIncome","2115":"midIncome","2116":"midIncome","2117":"midIncome","2118":"midIncome","2119":"lowIncomeB","2120":"lowIncomeB","2121":"midIncome","2122":"midIncome","2123":"midIncome","2124":"lowIncomeB","2125":"midIncome","2126":"highIncome","2127":"midIncome","2128":"lowIncomeB","2129":"lowIncomeB","2130":"highIncome","2131":"midIncome","2132":"highIncome","2133":"lowIncomeB","2134":"midIncome","2135":"midIncome","2136":"midIncome","2137":"midIncome","2138":"midIncome","2139":"midIncome","2140":"midIncome","2141":"midIncome","2142":"midIncome","2143":"midIncome","2144":"highIncome","2145":"midIncome","2146":"midIncome","2147":"midIncome","2148":"midIncome","2149":"midIncome","2150":"midIncome","2151":"lowIncomeB","2152":"midIncome","2153":"lowIncomeB","2154":"lowIncomeB","2155":"highIncome","2156":"midIncome","2157":"midIncome","2158":"midIncome","2159":"midIncome","2160":"midIncome","2161":"midIncome","2162":"midIncome","2163":"highIncome","2164":"lowIncomeB","2165":"midIncome","2166":"lowIncomeB","2167":"midIncome","2168":"lowIncomeA","2169":"midIncome","2170":"midIncome","2171":"midIncome","2172":"midIncome","2173":"midIncome","2174":"lowIncomeB","2175":"lowIncomeB","2176":"lowIncomeA","2177":"midIncome","2178":"midIncome","2179":"lowIncomeA","2180":"highIncome","2181":"midIncome","2182":"midIncome","2183":"midIncome","2184":"lowIncomeA","2185":"midIncome","2186":"highIncome","2187":"lowIncomeA","2188":"highIncome","2189":"midIncome","2190":"midIncome","2191":"midIncome","2192":"midIncome","2193":"midIncome","2194":"lowIncomeB","2195":"midIncome","2196":"midIncome","2197":"midIncome","2198":"lowIncomeA","2199":"midIncome","2200":"midIncome","2201":"midIncome","2202":"lowIncomeB","2203":"midIncome","2204":"lowIncomeA","2205":"highIncome","2206":"midIncome","2207":"midIncome","2208":"midIncome","2209":"lowIncomeB","2210":"midIncome","2211":"lowIncomeA","2212":"highIncome","2213":"midIncome","2214":"midIncome","2215":"midIncome","2216":"midIncome","2217":"midIncome","2218":"midIncome","2219":"lowIncomeA","2220":"highIncome","2221":"midIncome","2222":"highIncome","2223":"midIncome","2224":"midIncome","2225":"midIncome","2226":"midIncome","2227":"midIncome","2228":"midIncome","2229":"lowIncomeB","2230":"lowIncomeA","2231":"midIncome","2232":"midIncome","2233":"midIncome","2234":"midIncome","2235":"midIncome","2236":"midIncome","2237":"midIncome","2238":"midIncome","2239":"midIncome","2240":"midIncome","2241":"midIncome","2242":"lowIncomeB","2243":"highIncome","2244":"midIncome","2245":"midIncome","2246":"midIncome","2247":"midIncome","2248":"midIncome","2249":"midIncome","2250":"midIncome","2251":"midIncome","2252":"midIncome","2253":"midIncome","2254":"midIncome","2255":"midIncome","2256":"midIncome","2257":"midIncome","2258":"midIncome","2259":"midIncome","2260":"midIncome","2261":"midIncome","2262":"midIncome","2263":"midIncome","2264":"midIncome","2265":"midIncome","2266":"lowIncomeB","2267":"midIncome","2268":"midIncome","2269":"midIncome","2270":"midIncome","2271":"midIncome","2272":"lowIncomeB","2273":"midIncome","2274":"midIncome","2275":"lowIncomeA","2276":"midIncome","2277":"lowIncomeA","2278":"lowIncomeB","2279":"midIncome","2280":"highIncome","2281":"highIncome","2282":"midIncome","2283":"midIncome","2284":"midIncome","2285":"midIncome","2286":"lowIncomeA","2287":"highIncome","2288":"highIncome","2289":"lowIncomeB","2290":"midIncome","2291":"lowIncomeB","2292":"midIncome","2293":"midIncome","2294":"midIncome","2295":"lowIncomeA","2296":"midIncome","2297":"lowIncomeA","2298":"highIncome","2299":"lowIncomeA","2300":"lowIncomeB","2301":"midIncome","2302":"lowIncomeB","2303":"midIncome","2304":"lowIncomeA","2305":"midIncome","2306":"midIncome","2307":"midIncome","2308":"highIncome","2309":"midIncome","2310":"midIncome","2311":"midIncome","2312":"midIncome","2313":"midIncome","2314":"midIncome","2315":"midIncome","2316":"lowIncomeB","2317":"lowIncomeB","2318":"midIncome","2319":"highIncome","2320":"midIncome","2321":"midIncome","2322":"midIncome","2323":"lowIncomeB","2324":"highIncome","2325":"midIncome","2326":"midIncome","2327":"highIncome","2328":"lowIncomeA","2329":"lowIncomeA","2330":"midIncome","2331":"midIncome","2332":"midIncome","2333":"midIncome","2334":"midIncome","2335":"midIncome","2336":"midIncome","2337":"midIncome","2338":"highIncome","2339":"midIncome","2340":"lowIncomeB","2341":"midIncome","2342":"lowIncomeA","2343":"midIncome","2344":"midIncome","2345":"lowIncomeA","2346":"midIncome","2347":"midIncome","2348":"lowIncomeA","2349":"midIncome","2350":"lowIncomeB","2351":"midIncome","2352":"highIncome","2353":"midIncome","2354":"midIncome","2355":"midIncome","2356":"midIncome","2357":"midIncome","2358":"midIncome","2359":"lowIncomeA","2360":"midIncome","2361":"midIncome","2362":"midIncome","2363":"midIncome","2364":"highIncome","2365":"highIncome","2366":"midIncome","2367":"midIncome","2368":"midIncome","2369":"highIncome","2370":"lowIncomeB","2371":"midIncome","2372":"midIncome","2373":"midIncome","2374":"lowIncomeB","2375":"lowIncomeA","2376":"midIncome","2377":"lowIncomeB","2378":"midIncome","2379":"lowIncomeA","2380":"midIncome","2381":"midIncome","2382":"lowIncomeB","2383":"midIncome","2384":"midIncome","2385":"midIncome","2386":"lowIncomeA","2387":"lowIncomeB","2388":"midIncome","2389":"lowIncomeA","2390":"lowIncomeA","2391":"midIncome","2392":"lowIncomeB","2393":"midIncome","2394":"midIncome","2395":"highIncome","2396":"midIncome","2397":"midIncome","2398":"midIncome","2399":"midIncome","2400":"midIncome","2401":"lowIncomeB","2402":"highIncome","2403":"lowIncomeA","2404":"highIncome","2405":"midIncome","2406":"midIncome","2407":"midIncome","2408":"midIncome","2409":"lowIncomeA","2410":"midIncome","2411":"midIncome","2412":"lowIncomeA","2413":"lowIncomeA","2414":"midIncome","2415":"midIncome","2416":"highIncome","2417":"midIncome","2418":"midIncome","2419":"midIncome","2420":"midIncome","2421":"midIncome","2422":"midIncome","2423":"lowIncomeB","2424":"midIncome","2425":"midIncome","2426":"midIncome","2427":"highIncome","2428":"midIncome","2429":"highIncome","2430":"midIncome","2431":"midIncome","2432":"midIncome","2433":"midIncome","2434":"lowIncomeA","2435":"midIncome","2436":"midIncome","2437":"lowIncomeA","2438":"midIncome","2439":"midIncome","2440":"midIncome","2441":"lowIncomeB","2442":"lowIncomeA","2443":"midIncome","2444":"lowIncomeB","2445":"midIncome","2446":"midIncome","2447":"midIncome","2448":"midIncome","2449":"midIncome","2450":"midIncome","2451":"midIncome","2452":"midIncome","2453":"midIncome","2454":"midIncome","2455":"midIncome","2456":"lowIncomeB","2457":"midIncome","2458":"midIncome","2459":"midIncome","2460":"highIncome","2461":"midIncome","2462":"midIncome","2463":"midIncome","2464":"midIncome","2465":"midIncome","2466":"lowIncomeB","2467":"lowIncomeB","2468":"lowIncomeA","2469":"midIncome","2470":"midIncome","2471":"midIncome","2472":"lowIncomeB","2473":"midIncome","2474":"midIncome","2475":"highIncome","2476":"lowIncomeA","2477":"midIncome","2478":"midIncome","2479":"midIncome","2480":"midIncome","2481":"midIncome","2482":"lowIncomeB","2483":"midIncome","2484":"midIncome","2485":"midIncome","2486":"lowIncomeB","2487":"midIncome","2488":"highIncome","2489":"midIncome","2490":"lowIncomeB","2491":"midIncome","2492":"midIncome","2493":"lowIncomeA","2494":"midIncome","2495":"midIncome","2496":"midIncome","2497":"midIncome","2498":"lowIncomeB","2499":"midIncome","2500":"midIncome","2501":"midIncome","2502":"midIncome","2503":"midIncome","2504":"lowIncomeB","2505":"lowIncomeA","2506":"midIncome","2507":"midIncome","2508":"midIncome","2509":"midIncome","2510":"midIncome","2511":"midIncome","2512":"midIncome","2513":"midIncome","2514":"midIncome","2515":"lowIncomeB","2516":"midIncome","2517":"highIncome","2518":"midIncome","2519":"midIncome","2520":"midIncome","2521":"lowIncomeB","2522":"lowIncomeA","2523":"lowIncomeA","2524":"midIncome","2525":"lowIncomeA","2526":"midIncome","2527":"midIncome","2528":"midIncome","2529":"midIncome","2530":"highIncome","2531":"midIncome","2532":"midIncome","2533":"midIncome","2534":"midIncome","2535":"midIncome","2536":"midIncome","2537":"midIncome","2538":"midIncome","2539":"midIncome","2540":"lowIncomeB","2541":"midIncome","2542":"midIncome","2543":"lowIncomeB","2544":"midIncome","2545":"lowIncomeA","2546":"lowIncomeA","2547":"midIncome","2548":"midIncome","2549":"midIncome","2550":"midIncome","2551":"midIncome","2552":"highIncome","2553":"highIncome","2554":"highIncome","2555":"midIncome","2556":"lowIncomeA","2557":"lowIncomeB","2558":"midIncome","2559":"midIncome","2560":"midIncome","2561":"highIncome","2562":"midIncome","2563":"highIncome","2564":"highIncome","2565":"midIncome","2566":"midIncome","2567":"midIncome","2568":"lowIncomeA","2569":"midIncome","2570":"highIncome","2571":"midIncome","2572":"midIncome","2573":"midIncome","2574":"lowIncomeB","2575":"midIncome","2576":"midIncome","2577":"midIncome","2578":"highIncome","2579":"midIncome","2580":"midIncome","2581":"midIncome","2582":"highIncome","2583":"midIncome","2584":"midIncome","2585":"midIncome","2586":"midIncome","2587":"midIncome","2588":"midIncome","2589":"midIncome","2590":"lowIncomeB","2591":"lowIncomeA","2592":"highIncome","2593":"midIncome","2594":"midIncome","2595":"midIncome","2596":"midIncome","2597":"midIncome","2598":"midIncome","2599":"lowIncomeB","2600":"midIncome","2601":"midIncome","2602":"lowIncomeA","2603":"lowIncomeA","2604":"midIncome","2605":"lowIncomeA","2606":"midIncome","2607":"lowIncomeA","2608":"midIncome","2609":"midIncome","2610":"midIncome","2611":"midIncome","2612":"midIncome","2613":"midIncome","2614":"midIncome","2615":"midIncome","2616":"midIncome","2617":"midIncome","2618":"midIncome","2619":"midIncome","2620":"midIncome","2621":"midIncome","2622":"midIncome","2623":"lowIncomeA","2624":"lowIncomeA","2625":"midIncome","2626":"midIncome","2627":"midIncome","2628":"lowIncomeA","2629":"midIncome","2630":"lowIncomeB","2631":"midIncome","2632":"lowIncomeA","2633":"midIncome","2634":"lowIncomeB","2635":"midIncome","2636":"midIncome","2637":"highIncome","2638":"midIncome","2639":"midIncome","2640":"midIncome","2641":"midIncome","2642":"lowIncomeB","2643":"midIncome","2644":"midIncome","2645":"midIncome","2646":"midIncome","2647":"midIncome","2648":"midIncome","2649":"lowIncomeB","2650":"midIncome","2651":"midIncome","2652":"midIncome","2653":"midIncome","2654":"midIncome","2655":"lowIncomeB","2656":"midIncome","2657":"lowIncomeB","2658":"lowIncomeB","2659":"lowIncomeA","2660":"midIncome","2661":"midIncome","2662":"midIncome","2663":"midIncome","2664":"midIncome","2665":"midIncome","2666":"midIncome","2667":"lowIncomeA","2668":"midIncome","2669":"lowIncomeB","2670":"midIncome","2671":"midIncome","2672":"midIncome","2673":"midIncome","2674":"midIncome","2675":"midIncome","2676":"midIncome","2677":"midIncome","2678":"midIncome","2679":"highIncome","2680":"midIncome","2681":"lowIncomeB","2682":"midIncome","2683":"lowIncomeA","2684":"lowIncomeA","2685":"lowIncomeA","2686":"midIncome","2687":"midIncome","2688":"midIncome","2689":"midIncome","2690":"midIncome","2691":"midIncome","2692":"lowIncomeB","2693":"midIncome","2694":"midIncome","2695":"midIncome","2696":"midIncome","2697":"highIncome","2698":"midIncome","2699":"midIncome","2700":"midIncome","2701":"midIncome","2702":"midIncome","2703":"lowIncomeA","2704":"midIncome","2705":"lowIncomeB","2706":"lowIncomeA","2707":"lowIncomeA","2708":"midIncome","2709":"lowIncomeA","2710":"midIncome","2711":"midIncome","2712":"highIncome","2713":"highIncome","2714":"midIncome","2715":"lowIncomeB","2716":"midIncome","2717":"midIncome","2718":"lowIncomeB","2719":"highIncome","2720":"midIncome","2721":"highIncome","2722":"lowIncomeB","2723":"midIncome","2724":"lowIncomeB","2725":"midIncome","2726":"midIncome","2727":"lowIncomeB","2728":"midIncome","2729":"highIncome","2730":"midIncome","2731":"midIncome","2732":"midIncome","2733":"midIncome","2734":"midIncome","2735":"midIncome","2736":"highIncome","2737":"midIncome","2738":"midIncome","2739":"midIncome","2740":"midIncome","2741":"lowIncomeA","2742":"midIncome","2743":"lowIncomeA","2744":"lowIncomeB","2745":"lowIncomeA","2746":"lowIncomeB","2747":"midIncome","2748":"midIncome","2749":"midIncome","2750":"lowIncomeB","2751":"lowIncomeA","2752":"lowIncomeA","2753":"lowIncomeA","2754":"midIncome","2755":"midIncome","2756":"lowIncomeB","2757":"midIncome","2758":"midIncome","2759":"lowIncomeA","2760":"midIncome","2761":"lowIncomeA","2762":"midIncome","2763":"lowIncomeA","2764":"midIncome","2765":"lowIncomeB","2766":"midIncome","2767":"lowIncomeA","2768":"midIncome","2769":"midIncome","2770":"lowIncomeB","2771":"midIncome","2772":"midIncome","2773":"lowIncomeA","2774":"midIncome","2775":"midIncome","2776":"midIncome","2777":"midIncome","2778":"midIncome","2779":"lowIncomeA","2780":"midIncome","2781":"midIncome","2782":"midIncome","2783":"midIncome","2784":"midIncome","2785":"midIncome","2786":"midIncome","2787":"midIncome","2788":"midIncome","2789":"midIncome","2790":"lowIncomeB","2791":"midIncome","2792":"midIncome","2793":"midIncome","2794":"lowIncomeA","2795":"lowIncomeA","2796":"highIncome","2797":"midIncome","2798":"midIncome","2799":"midIncome","2800":"midIncome","2801":"midIncome","2802":"highIncome","2803":"lowIncomeB","2804":"midIncome","2805":"midIncome","2806":"lowIncomeA","2807":"midIncome","2808":"midIncome","2809":"midIncome","2810":"lowIncomeA","2811":"lowIncomeB","2812":"midIncome","2813":"highIncome","2814":"highIncome","2815":"highIncome","2816":"midIncome","2817":"midIncome","2818":"midIncome","2819":"midIncome","2820":"midIncome","2821":"midIncome","2822":"lowIncomeB","2823":"midIncome","2824":"midIncome","2825":"lowIncomeB","2826":"lowIncomeA","2827":"lowIncomeB","2828":"midIncome","2829":"midIncome","2830":"midIncome","2831":"midIncome","2832":"midIncome","2833":"midIncome","2834":"highIncome","2835":"midIncome","2836":"highIncome","2837":"midIncome","2838":"midIncome","2839":"midIncome","2840":"highIncome","2841":"lowIncomeA","2842":"midIncome","2843":"midIncome","2844":"midIncome","2845":"lowIncomeB","2846":"midIncome","2847":"midIncome","2848":"lowIncomeA","2849":"midIncome","2850":"midIncome","2851":"midIncome","2852":"midIncome","2853":"midIncome","2854":"highIncome","2855":"midIncome","2856":"midIncome","2857":"midIncome","2858":"lowIncomeA","2859":"midIncome","2860":"midIncome","2861":"midIncome","2862":"midIncome","2863":"midIncome","2864":"highIncome","2865":"midIncome","2866":"midIncome","2867":"midIncome","2868":"midIncome","2869":"midIncome","2870":"midIncome","2871":"midIncome","2872":"midIncome","2873":"midIncome","2874":"midIncome","2875":"midIncome","2876":"lowIncomeA","2877":"midIncome","2878":"highIncome","2879":"midIncome","2880":"midIncome","2881":"midIncome","2882":"highIncome","2883":"highIncome","2884":"midIncome","2885":"midIncome","2886":"midIncome","2887":"midIncome","2888":"midIncome","2889":"midIncome","2890":"midIncome","2891":"lowIncomeB","2892":"midIncome","2893":"midIncome","2894":"midIncome","2895":"lowIncomeB","2896":"highIncome","2897":"midIncome","2898":"highIncome","2899":"midIncome","2900":"lowIncomeA","2901":"midIncome","2902":"midIncome","2903":"midIncome","2904":"midIncome","2905":"lowIncomeB","2906":"lowIncomeB","2907":"midIncome","2908":"midIncome","2909":"lowIncomeB","2910":"midIncome","2911":"midIncome","2912":"midIncome","2913":"lowIncomeA","2914":"highIncome","2915":"highIncome","2916":"midIncome","2917":"lowIncomeA","2918":"lowIncomeA","2919":"midIncome","2920":"lowIncomeA","2921":"lowIncomeA","2922":"midIncome","2923":"midIncome","2924":"lowIncomeA","2925":"midIncome","2926":"highIncome","2927":"midIncome","2928":"midIncome","2929":"midIncome","2930":"midIncome","2931":"lowIncomeA","2932":"midIncome","2933":"midIncome","2934":"midIncome","2935":"lowIncomeB","2936":"midIncome","2937":"lowIncomeA","2938":"midIncome","2939":"midIncome","2940":"lowIncomeB","2941":"midIncome","2942":"midIncome","2943":"lowIncomeA","2944":"lowIncomeA","2945":"midIncome","2946":"lowIncomeA","2947":"midIncome","2948":"midIncome","2949":"midIncome","2950":"midIncome","2951":"midIncome","2952":"lowIncomeA","2953":"midIncome","2954":"lowIncomeA","2955":"midIncome","2956":"midIncome","2957":"midIncome","2958":"lowIncomeA","2959":"midIncome","2960":"midIncome","2961":"midIncome","2962":"lowIncomeA","2963":"highIncome","2964":"midIncome","2965":"midIncome","2966":"lowIncomeA","2967":"lowIncomeA","2968":"midIncome","2969":"lowIncomeA","2970":"highIncome","2971":"midIncome","2972":"highIncome","2973":"midIncome","2974":"lowIncomeB","2975":"midIncome","2976":"lowIncomeA","2977":"midIncome","2978":"midIncome","2979":"lowIncomeB","2980":"highIncome","2981":"midIncome","2982":"midIncome","2983":"midIncome","2984":"highIncome","2985":"midIncome","2986":"lowIncomeA","2987":"midIncome","2988":"midIncome","2989":"midIncome","2990":"midIncome","2991":"midIncome","2992":"lowIncomeA","2993":"midIncome","2994":"lowIncomeB","2995":"highIncome","2996":"midIncome","2997":"midIncome","2998":"midIncome","2999":"midIncome","3000":"midIncome","3001":"midIncome","3002":"midIncome","3003":"midIncome","3004":"highIncome","3005":"highIncome","3006":"midIncome","3007":"midIncome","3008":"midIncome","3009":"lowIncomeA","3010":"midIncome","3011":"highIncome","3012":"midIncome","3013":"midIncome","3014":"lowIncomeB","3015":"highIncome","3016":"midIncome","3017":"lowIncomeA","3018":"highIncome","3019":"midIncome","3020":"midIncome","3021":"midIncome","3022":"midIncome","3023":"midIncome","3024":"midIncome","3025":"midIncome","3026":"midIncome","3027":"midIncome","3028":"lowIncomeB","3029":"midIncome","3030":"midIncome","3031":"midIncome","3032":"midIncome","3033":"midIncome","3034":"midIncome","3035":"midIncome","3036":"midIncome","3037":"highIncome","3038":"midIncome","3039":"midIncome","3040":"midIncome","3041":"midIncome","3042":"midIncome","3043":"midIncome","3044":"highIncome","3045":"highIncome","3046":"midIncome","3047":"midIncome","3048":"highIncome","3049":"midIncome","3050":"midIncome","3051":"midIncome","3052":"midIncome","3053":"midIncome","3054":"midIncome","3055":"midIncome","3056":"midIncome","3057":"midIncome","3058":"highIncome","3059":"lowIncomeB","3060":"midIncome","3061":"midIncome","3062":"midIncome","3063":"midIncome","3064":"midIncome","3065":"midIncome","3066":"midIncome","3067":"lowIncomeB","3068":"lowIncomeA","3069":"midIncome","3070":"midIncome","3071":"lowIncomeA","3072":"midIncome","3073":"midIncome","3074":"highIncome","3075":"midIncome","3076":"midIncome","3077":"midIncome","3078":"midIncome","3079":"midIncome","3080":"highIncome","3081":"midIncome","3082":"midIncome","3083":"midIncome","3084":"lowIncomeA","3085":"midIncome","3086":"midIncome","3087":"highIncome","3088":"midIncome","3089":"highIncome","3090":"midIncome","3091":"midIncome","3092":"midIncome","3093":"midIncome","3094":"midIncome","3095":"midIncome","3096":"lowIncomeB","3097":"midIncome","3098":"midIncome","3099":"lowIncomeB","3100":"midIncome","3101":"midIncome","3102":"midIncome","3103":"midIncome","3104":"midIncome","3105":"highIncome","3106":"midIncome","3107":"midIncome","3108":"midIncome","3109":"highIncome","3110":"lowIncomeA","3111":"lowIncomeB","3112":"midIncome","3113":"lowIncomeA","3114":"lowIncomeA","3115":"midIncome","3116":"midIncome","3117":"lowIncomeA","3118":"midIncome","3119":"midIncome","3120":"midIncome","3121":"lowIncomeB","3122":"midIncome","3123":"midIncome","3124":"midIncome","3125":"lowIncomeA","3126":"highIncome","3127":"midIncome","3128":"midIncome","3129":"midIncome","3130":"midIncome","3131":"lowIncomeA","3132":"lowIncomeA","3133":"midIncome","3134":"midIncome","3135":"lowIncomeB","3136":"lowIncomeA","3137":"midIncome","3138":"midIncome","3139":"highIncome","3140":"midIncome","3141":"midIncome","3142":"midIncome","3143":"midIncome","3144":"midIncome","3145":"midIncome","3146":"midIncome","3147":"midIncome","3148":"lowIncomeB","3149":"midIncome","3150":"midIncome","3151":"midIncome","3152":"midIncome","3153":"midIncome","3154":"midIncome","3155":"midIncome","3156":"lowIncomeB","3157":"midIncome","3158":"midIncome","3159":"lowIncomeA","3160":"lowIncomeB","3161":"midIncome","3162":"midIncome","3163":"lowIncomeB","3164":"highIncome","3165":"midIncome","3166":"lowIncomeA","3167":"midIncome","3168":"midIncome","3169":"midIncome","3170":"midIncome","3171":"midIncome","3172":"highIncome","3173":"midIncome","3174":"midIncome","3175":"highIncome","3176":"midIncome","3177":"midIncome","3178":"midIncome","3179":"highIncome","3180":"midIncome","3181":"lowIncomeA","3182":"highIncome","3183":"midIncome","3184":"highIncome","3185":"midIncome","3186":"midIncome","3187":"midIncome","3188":"midIncome","3189":"highIncome","3190":"highIncome","3191":"lowIncomeB","3192":"midIncome","3193":"lowIncomeB","3194":"lowIncomeB","3195":"midIncome","3196":"midIncome","3197":"midIncome","3198":"midIncome","3199":"lowIncomeB","3200":"midIncome","3201":"midIncome","3202":"highIncome","3203":"highIncome","3204":"midIncome","3205":"midIncome","3206":"midIncome","3207":"midIncome","3208":"midIncome","3209":"lowIncomeB","3210":"lowIncomeB","3211":"midIncome","3212":"midIncome","3213":"highIncome","3214":"midIncome","3215":"midIncome","3216":"midIncome","3217":"midIncome","3218":"midIncome","3219":"midIncome","3220":"midIncome","3221":"midIncome","3222":"midIncome","3223":"midIncome","3224":"midIncome","3225":"midIncome","3226":"lowIncomeB","3227":"midIncome","3228":"midIncome","3229":"midIncome","3230":"lowIncomeB","3231":"midIncome","3232":"midIncome","3233":"midIncome","3234":"lowIncomeB","3235":"midIncome","3236":"midIncome","3237":"midIncome","3238":"lowIncomeB","3239":"lowIncomeB","3240":"midIncome","3241":"midIncome","3242":"midIncome","3243":"midIncome","3244":"lowIncomeB","3245":"lowIncomeA","3246":"midIncome","3247":"midIncome","3248":"lowIncomeA","3249":"midIncome","3250":"midIncome","3251":"midIncome","3252":"midIncome","3253":"lowIncomeA","3254":"midIncome","3255":"midIncome","3256":"midIncome","3257":"midIncome","3258":"lowIncomeB","3259":"midIncome","3260":"midIncome","3261":"midIncome","3262":"midIncome","3263":"midIncome","3264":"lowIncomeA","3265":"midIncome","3266":"midIncome","3267":"midIncome","3268":"midIncome","3269":"lowIncomeB","3270":"midIncome","3271":"midIncome","3272":"midIncome","3273":"midIncome","3274":"midIncome","3275":"midIncome","3276":"midIncome","3277":"midIncome","3278":"lowIncomeB","3279":"midIncome","3280":"highIncome","3281":"midIncome","3282":"midIncome","3283":"lowIncomeB","3284":"midIncome","3285":"midIncome","3286":"highIncome","3287":"midIncome","3288":"midIncome","3289":"midIncome","3290":"highIncome","3291":"midIncome","3292":"midIncome","3293":"lowIncomeB","3294":"midIncome","3295":"midIncome","3296":"midIncome","3297":"midIncome","3298":"midIncome","3299":"lowIncomeA","3300":"lowIncomeA","3301":"lowIncomeA","3302":"midIncome","3303":"lowIncomeA","3304":"lowIncomeB","3305":"lowIncomeA","3306":"lowIncomeB","3307":"lowIncomeB","3308":"lowIncomeA","3309":"lowIncomeA","3310":"lowIncomeA","3311":"lowIncomeA","3312":"lowIncomeA","3313":"lowIncomeA","3314":"lowIncomeA","3315":"lowIncomeA","3316":"lowIncomeB","3317":"lowIncomeB","3318":"lowIncomeA","3319":"lowIncomeA","3320":"lowIncomeA","3321":"lowIncomeA","3322":"lowIncomeA","3323":"lowIncomeA","3324":"lowIncomeA","3325":"lowIncomeB","3326":"lowIncomeB","3327":"lowIncomeA","3328":"lowIncomeA","3329":"lowIncomeA","3330":"lowIncomeB","3331":"lowIncomeB","3332":"lowIncomeA","3333":"lowIncomeA","3334":"lowIncomeB","3335":"lowIncomeB","3336":"lowIncomeA","3337":"lowIncomeA","3338":"lowIncomeB","3339":"lowIncomeB","3340":"lowIncomeB","3341":"lowIncomeA","3342":"midIncome","3343":"lowIncomeA","3344":"lowIncomeB","3345":"midIncome","3346":"lowIncomeA","3347":"lowIncomeA","3348":"lowIncomeB","3349":"lowIncomeA","3350":"lowIncomeA","3351":"lowIncomeA","3352":"lowIncomeA","3353":"lowIncomeB","3354":"lowIncomeB","3355":"lowIncomeA","3356":"lowIncomeB","3357":"midIncome","3358":"lowIncomeB","3359":"midIncome","3360":"lowIncomeA","3361":"lowIncomeB","3362":"lowIncomeB","3363":"lowIncomeB","3364":"midIncome","3365":"midIncome","3366":"lowIncomeA","3367":"lowIncomeA","3368":"lowIncomeB","3369":"lowIncomeB","3370":"lowIncomeA","3371":"lowIncomeA","3372":"midIncome","3373":"lowIncomeA","3374":"lowIncomeB","3375":"lowIncomeA","3376":"lowIncomeB","3377":"lowIncomeA","3378":"lowIncomeB","3379":"lowIncomeA","3380":"lowIncomeA","3381":"lowIncomeB","3382":"lowIncomeB","3383":"lowIncomeA","3384":"lowIncomeB","3385":"lowIncomeA","3386":"lowIncomeA","3387":"lowIncomeB","3388":"lowIncomeA","3389":"lowIncomeB","3390":"midIncome","3391":"lowIncomeA","3392":"lowIncomeA","3393":"lowIncomeA","3394":"lowIncomeB","3395":"lowIncomeB","3396":"lowIncomeB","3397":"lowIncomeB","3398":"lowIncomeA","3399":"lowIncomeB","3400":"midIncome","3401":"lowIncomeA","3402":"lowIncomeA","3403":"lowIncomeB","3404":"lowIncomeA","3405":"lowIncomeA","3406":"lowIncomeA","3407":"midIncome","3408":"midIncome","3409":"lowIncomeB","3410":"lowIncomeB","3411":"lowIncomeA","3412":"lowIncomeB","3413":"lowIncomeB","3414":"lowIncomeB","3415":"lowIncomeB","3416":"lowIncomeA","3417":"lowIncomeA","3418":"lowIncomeB","3419":"lowIncomeA","3420":"lowIncomeB","3421":"midIncome","3422":"lowIncomeA","3423":"lowIncomeA","3424":"lowIncomeB","3425":"lowIncomeA","3426":"lowIncomeA","3427":"midIncome","3428":"lowIncomeB","3429":"lowIncomeB","3430":"midIncome","3431":"lowIncomeB","3432":"lowIncomeA","3433":"lowIncomeA","3434":"lowIncomeA","3435":"lowIncomeB","3436":"lowIncomeA","3437":"lowIncomeA","3438":"lowIncomeB","3439":"lowIncomeA","3440":"lowIncomeA","3441":"lowIncomeA","3442":"lowIncomeB","3443":"lowIncomeA","3444":"midIncome","3445":"lowIncomeA","3446":"lowIncomeA","3447":"lowIncomeB","3448":"lowIncomeA","3449":"lowIncomeA","3450":"lowIncomeA","3451":"lowIncomeB","3452":"lowIncomeB","3453":"lowIncomeA","3454":"midIncome","3455":"lowIncomeA","3456":"midIncome","3457":"lowIncomeA","3458":"lowIncomeA","3459":"midIncome","3460":"lowIncomeA","3461":"lowIncomeB","3462":"lowIncomeB","3463":"lowIncomeB","3464":"lowIncomeA","3465":"lowIncomeA","3466":"lowIncomeB","3467":"lowIncomeB","3468":"lowIncomeA","3469":"lowIncomeB","3470":"lowIncomeB","3471":"lowIncomeB","3472":"lowIncomeA","3473":"lowIncomeA","3474":"midIncome","3475":"lowIncomeB","3476":"lowIncomeA","3477":"lowIncomeA","3478":"lowIncomeB","3479":"lowIncomeB","3480":"lowIncomeB","3481":"lowIncomeB","3482":"lowIncomeB","3483":"lowIncomeB","3484":"lowIncomeB","3485":"lowIncomeA","3486":"lowIncomeB","3487":"lowIncomeA","3488":"lowIncomeA","3489":"lowIncomeA","3490":"midIncome","3491":"lowIncomeA","3492":"lowIncomeB","3493":"lowIncomeA","3494":"lowIncomeB","3495":"lowIncomeA","3496":"midIncome","3497":"midIncome","3498":"lowIncomeA","3499":"lowIncomeA","3500":"lowIncomeA","3501":"lowIncomeA","3502":"lowIncomeA","3503":"lowIncomeA","3504":"lowIncomeA","3505":"lowIncomeA","3506":"lowIncomeB","3507":"lowIncomeB","3508":"lowIncomeB","3509":"lowIncomeB","3510":"lowIncomeA","3511":"lowIncomeA","3512":"lowIncomeA","3513":"lowIncomeB","3514":"lowIncomeB","3515":"midIncome","3516":"lowIncomeA","3517":"lowIncomeA","3518":"lowIncomeA","3519":"lowIncomeB","3520":"midIncome","3521":"lowIncomeB","3522":"lowIncomeB","3523":"lowIncomeB","3524":"lowIncomeB","3525":"lowIncomeB","3526":"lowIncomeA","3527":"lowIncomeA","3528":"lowIncomeB","3529":"lowIncomeB","3530":"lowIncomeB","3531":"lowIncomeA","3532":"lowIncomeA","3533":"lowIncomeB","3534":"lowIncomeA","3535":"lowIncomeA","3536":"lowIncomeA","3537":"midIncome","3538":"lowIncomeA","3539":"midIncome","3540":"lowIncomeB","3541":"midIncome","3542":"lowIncomeB","3543":"lowIncomeB","3544":"midIncome","3545":"lowIncomeA","3546":"lowIncomeA","3547":"lowIncomeB","3548":"lowIncomeA","3549":"lowIncomeB","3550":"lowIncomeA","3551":"lowIncomeB","3552":"lowIncomeB","3553":"lowIncomeA","3554":"lowIncomeB","3555":"lowIncomeB","3556":"lowIncomeA","3557":"lowIncomeB","3558":"lowIncomeB","3559":"lowIncomeA","3560":"lowIncomeA","3561":"lowIncomeA","3562":"lowIncomeB","3563":"lowIncomeA","3564":"lowIncomeA","3565":"lowIncomeB","3566":"midIncome","3567":"lowIncomeA","3568":"midIncome","3569":"lowIncomeA","3570":"lowIncomeA","3571":"lowIncomeB","3572":"lowIncomeA","3573":"lowIncomeB","3574":"lowIncomeB","3575":"lowIncomeA","3576":"lowIncomeB","3577":"lowIncomeB","3578":"lowIncomeA","3579":"lowIncomeA","3580":"lowIncomeB","3581":"lowIncomeA","3582":"midIncome","3583":"midIncome","3584":"lowIncomeA","3585":"lowIncomeB","3586":"lowIncomeB","3587":"lowIncomeA","3588":"lowIncomeA","3589":"lowIncomeA","3590":"lowIncomeB","3591":"lowIncomeB","3592":"lowIncomeA","3593":"lowIncomeA","3594":"lowIncomeA","3595":"lowIncomeB","3596":"lowIncomeB","3597":"lowIncomeA","3598":"lowIncomeA","3599":"lowIncomeA","3600":"lowIncomeA","3601":"midIncome","3602":"lowIncomeA","3603":"lowIncomeA","3604":"lowIncomeA","3605":"lowIncomeA","3606":"lowIncomeB","3607":"lowIncomeA","3608":"lowIncomeB","3609":"lowIncomeA","3610":"lowIncomeA","3611":"lowIncomeB","3612":"lowIncomeA","3613":"lowIncomeB","3614":"midIncome","3615":"lowIncomeA","3616":"lowIncomeA","3617":"lowIncomeB","3618":"lowIncomeA","3619":"lowIncomeB","3620":"lowIncomeA","3621":"lowIncomeB","3622":"lowIncomeB","3623":"lowIncomeA","3624":"lowIncomeA","3625":"midIncome","3626":"lowIncomeB","3627":"lowIncomeB","3628":"midIncome","3629":"lowIncomeA","3630":"lowIncomeB","3631":"lowIncomeA","3632":"lowIncomeA","3633":"lowIncomeB","3634":"lowIncomeA","3635":"lowIncomeA","3636":"lowIncomeA","3637":"lowIncomeB","3638":"lowIncomeB","3639":"midIncome","3640":"lowIncomeA","3641":"lowIncomeA","3642":"lowIncomeA","3643":"lowIncomeA","3644":"lowIncomeA","3645":"lowIncomeB","3646":"lowIncomeB","3647":"lowIncomeA","3648":"lowIncomeA","3649":"lowIncomeA","3650":"lowIncomeA","3651":"lowIncomeA","3652":"lowIncomeA","3653":"lowIncomeA","3654":"lowIncomeB","3655":"lowIncomeB","3656":"lowIncomeA","3657":"lowIncomeA","3658":"lowIncomeA","3659":"lowIncomeA","3660":"lowIncomeB","3661":"lowIncomeA","3662":"lowIncomeA","3663":"lowIncomeB","3664":"midIncome","3665":"lowIncomeA","3666":"lowIncomeB","3667":"lowIncomeA","3668":"lowIncomeA","3669":"lowIncomeA","3670":"lowIncomeA","3671":"lowIncomeB","3672":"lowIncomeB","3673":"lowIncomeA","3674":"lowIncomeA","3675":"lowIncomeA","3676":"lowIncomeA","3677":"lowIncomeA","3678":"lowIncomeA","3679":"lowIncomeB","3680":"lowIncomeB","3681":"lowIncomeA","3682":"lowIncomeB","3683":"lowIncomeA","3684":"lowIncomeB","3685":"lowIncomeA","3686":"lowIncomeB","3687":"lowIncomeA","3688":"lowIncomeA","3689":"lowIncomeA","3690":"lowIncomeA","3691":"lowIncomeB","3692":"lowIncomeB","3693":"midIncome","3694":"midIncome","3695":"lowIncomeB","3696":"lowIncomeB","3697":"lowIncomeB","3698":"lowIncomeA","3699":"lowIncomeB","3700":"lowIncomeB","3701":"lowIncomeB","3702":"lowIncomeA","3703":"lowIncomeB","3704":"lowIncomeA","3705":"lowIncomeA","3706":"lowIncomeB","3707":"midIncome","3708":"lowIncomeA","3709":"lowIncomeB","3710":"midIncome","3711":"lowIncomeB","3712":"lowIncomeB","3713":"lowIncomeA","3714":"lowIncomeB","3715":"midIncome","3716":"lowIncomeB","3717":"lowIncomeA","3718":"lowIncomeB","3719":"lowIncomeA","3720":"lowIncomeB","3721":"lowIncomeA","3722":"lowIncomeB","3723":"lowIncomeA","3724":"lowIncomeB","3725":"lowIncomeB","3726":"lowIncomeB","3727":"lowIncomeA","3728":"lowIncomeA","3729":"lowIncomeA","3730":"lowIncomeA","3731":"lowIncomeB","3732":"midIncome","3733":"lowIncomeB","3734":"lowIncomeA","3735":"lowIncomeB","3736":"lowIncomeB","3737":"lowIncomeB","3738":"lowIncomeA","3739":"lowIncomeB","3740":"lowIncomeB","3741":"lowIncomeA","3742":"lowIncomeA","3743":"lowIncomeA","3744":"lowIncomeB","3745":"lowIncomeA","3746":"lowIncomeA","3747":"lowIncomeB","3748":"midIncome","3749":"lowIncomeA","3750":"lowIncomeB","3751":"lowIncomeB","3752":"lowIncomeB","3753":"lowIncomeA","3754":"lowIncomeA","3755":"lowIncomeA","3756":"lowIncomeA","3757":"lowIncomeA","3758":"lowIncomeB","3759":"midIncome","3760":"lowIncomeA","3761":"lowIncomeA","3762":"midIncome","3763":"lowIncomeA","3764":"midIncome","3765":"lowIncomeA","3766":"lowIncomeA","3767":"lowIncomeA","3768":"lowIncomeB","3769":"lowIncomeA","3770":"lowIncomeA","3771":"lowIncomeB","3772":"lowIncomeA","3773":"lowIncomeA","3774":"lowIncomeB","3775":"lowIncomeB","3776":"lowIncomeB","3777":"midIncome","3778":"lowIncomeB","3779":"lowIncomeA","3780":"lowIncomeA","3781":"lowIncomeB","3782":"lowIncomeA","3783":"lowIncomeA","3784":"lowIncomeA","3785":"lowIncomeA","3786":"lowIncomeB","3787":"lowIncomeB","3788":"lowIncomeA","3789":"lowIncomeA","3790":"lowIncomeA","3791":"lowIncomeB","3792":"lowIncomeA","3793":"lowIncomeB","3794":"lowIncomeA","3795":"lowIncomeA","3796":"lowIncomeB","3797":"lowIncomeB","3798":"lowIncomeB","3799":"lowIncomeB","3800":"lowIncomeA","3801":"lowIncomeA","3802":"midIncome","3803":"midIncome","3804":"lowIncomeB","3805":"lowIncomeA","3806":"lowIncomeA","3807":"lowIncomeB","3808":"lowIncomeB","3809":"lowIncomeA","3810":"midIncome","3811":"lowIncomeA","3812":"lowIncomeB","3813":"midIncome","3814":"lowIncomeA","3815":"lowIncomeA","3816":"lowIncomeB","3817":"lowIncomeA","3818":"lowIncomeB","3819":"lowIncomeB","3820":"lowIncomeB","3821":"lowIncomeA","3822":"lowIncomeA","3823":"lowIncomeA","3824":"lowIncomeB","3825":"lowIncomeB","3826":"lowIncomeA","3827":"lowIncomeA","3828":"lowIncomeA","3829":"lowIncomeB","3830":"lowIncomeB","3831":"midIncome","3832":"lowIncomeA","3833":"lowIncomeB","3834":"lowIncomeA","3835":"lowIncomeA","3836":"lowIncomeA","3837":"lowIncomeB","3838":"lowIncomeB","3839":"lowIncomeB","3840":"midIncome","3841":"lowIncomeA","3842":"midIncome","3843":"lowIncomeB","3844":"lowIncomeA","3845":"lowIncomeA","3846":"lowIncomeA","3847":"lowIncomeA","3848":"lowIncomeB","3849":"lowIncomeB","3850":"lowIncomeB","3851":"lowIncomeA","3852":"lowIncomeA","3853":"lowIncomeB","3854":"midIncome","3855":"lowIncomeB","3856":"lowIncomeB","3857":"lowIncomeB","3858":"lowIncomeA","3859":"lowIncomeA","3860":"lowIncomeB","3861":"lowIncomeA","3862":"midIncome","3863":"lowIncomeB","3864":"midIncome","3865":"lowIncomeB","3866":"lowIncomeA","3867":"lowIncomeA","3868":"lowIncomeB","3869":"midIncome","3870":"lowIncomeA","3871":"lowIncomeA","3872":"midIncome","3873":"lowIncomeA","3874":"lowIncomeA","3875":"lowIncomeA","3876":"lowIncomeB","3877":"lowIncomeA","3878":"lowIncomeB","3879":"lowIncomeA","3880":"lowIncomeA","3881":"lowIncomeA","3882":"lowIncomeB","3883":"lowIncomeB","3884":"lowIncomeB","3885":"lowIncomeB","3886":"midIncome","3887":"lowIncomeB","3888":"lowIncomeA","3889":"lowIncomeB","3890":"lowIncomeB","3891":"lowIncomeA","3892":"lowIncomeB","3893":"lowIncomeA","3894":"lowIncomeB","3895":"lowIncomeA","3896":"lowIncomeA","3897":"lowIncomeB","3898":"lowIncomeA","3899":"lowIncomeB","3900":"lowIncomeA","3901":"lowIncomeB","3902":"lowIncomeA","3903":"lowIncomeA","3904":"lowIncomeA","3905":"lowIncomeA","3906":"lowIncomeB","3907":"lowIncomeB","3908":"midIncome","3909":"midIncome","3910":"lowIncomeB","3911":"lowIncomeB","3912":"lowIncomeA","3913":"lowIncomeA","3914":"midIncome","3915":"lowIncomeB","3916":"lowIncomeB","3917":"lowIncomeA","3918":"lowIncomeA","3919":"lowIncomeA","3920":"lowIncomeA","3921":"lowIncomeB","3922":"midIncome","3923":"lowIncomeB","3924":"lowIncomeB","3925":"lowIncomeB","3926":"lowIncomeA","3927":"midIncome","3928":"midIncome","3929":"lowIncomeA","3930":"lowIncomeA","3931":"lowIncomeA","3932":"lowIncomeB","3933":"lowIncomeA","3934":"lowIncomeB","3935":"lowIncomeA","3936":"lowIncomeA","3937":"lowIncomeA","3938":"lowIncomeA","3939":"lowIncomeB","3940":"lowIncomeA","3941":"lowIncomeA","3942":"lowIncomeB","3943":"lowIncomeB","3944":"lowIncomeA","3945":"lowIncomeA","3946":"lowIncomeA","3947":"lowIncomeB","3948":"lowIncomeB","3949":"lowIncomeB","3950":"lowIncomeA","3951":"lowIncomeA","3952":"lowIncomeB","3953":"lowIncomeB","3954":"lowIncomeA","3955":"midIncome","3956":"lowIncomeB","3957":"lowIncomeA","3958":"lowIncomeA","3959":"lowIncomeB","3960":"lowIncomeA","3961":"lowIncomeA","3962":"lowIncomeB","3963":"lowIncomeA","3964":"lowIncomeA","3965":"lowIncomeA","3966":"lowIncomeB","3967":"lowIncomeA","3968":"lowIncomeA","3969":"midIncome","3970":"midIncome","3971":"midIncome","3972":"lowIncomeA","3973":"lowIncomeB","3974":"lowIncomeB","3975":"midIncome","3976":"lowIncomeB","3977":"lowIncomeB","3978":"lowIncomeB","3979":"lowIncomeB","3980":"lowIncomeB","3981":"lowIncomeA","3982":"lowIncomeA","3983":"lowIncomeB","3984":"lowIncomeB","3985":"lowIncomeA","3986":"lowIncomeA","3987":"lowIncomeA","3988":"lowIncomeB","3989":"lowIncomeA","3990":"lowIncomeB","3991":"lowIncomeB","3992":"lowIncomeB","3993":"lowIncomeA","3994":"lowIncomeA","3995":"midIncome","3996":"lowIncomeB","3997":"lowIncomeA","3998":"lowIncomeB","3999":"lowIncomeA","4000":"lowIncomeB","4001":"lowIncomeA","4002":"lowIncomeA","4003":"lowIncomeA","4004":"lowIncomeA","4005":"lowIncomeA","4006":"lowIncomeB","4007":"lowIncomeA","4008":"lowIncomeA","4009":"midIncome","4010":"lowIncomeB","4011":"midIncome","4012":"lowIncomeB","4013":"lowIncomeA","4014":"lowIncomeA","4015":"lowIncomeB","4016":"lowIncomeA","4017":"lowIncomeB","4018":"lowIncomeB","4019":"lowIncomeA","4020":"lowIncomeA","4021":"lowIncomeB","4022":"lowIncomeB","4023":"lowIncomeA","4024":"lowIncomeA","4025":"lowIncomeA","4026":"lowIncomeB","4027":"lowIncomeA","4028":"lowIncomeB","4029":"midIncome","4030":"lowIncomeB","4031":"lowIncomeA","4032":"lowIncomeB","4033":"midIncome","4034":"lowIncomeA","4035":"lowIncomeA","4036":"lowIncomeB","4037":"lowIncomeB","4038":"midIncome","4039":"lowIncomeA","4040":"lowIncomeA","4041":"lowIncomeA","4042":"lowIncomeA","4043":"lowIncomeA","4044":"midIncome","4045":"lowIncomeA","4046":"lowIncomeA","4047":"lowIncomeA","4048":"lowIncomeB","4049":"lowIncomeA","4050":"lowIncomeB","4051":"lowIncomeA","4052":"lowIncomeA","4053":"lowIncomeA","4054":"lowIncomeA","4055":"lowIncomeA","4056":"lowIncomeA","4057":"lowIncomeA","4058":"lowIncomeA","4059":"lowIncomeB","4060":"lowIncomeA","4061":"lowIncomeB","4062":"midIncome","4063":"lowIncomeA","4064":"lowIncomeA","4065":"lowIncomeA","4066":"lowIncomeB","4067":"lowIncomeA","4068":"midIncome","4069":"lowIncomeA","4070":"lowIncomeB","4071":"lowIncomeB","4072":"lowIncomeA","4073":"lowIncomeB","4074":"lowIncomeB","4075":"lowIncomeB","4076":"midIncome","4077":"lowIncomeB","4078":"lowIncomeA","4079":"lowIncomeA","4080":"lowIncomeB","4081":"lowIncomeB","4082":"lowIncomeA","4083":"lowIncomeB","4084":"midIncome","4085":"lowIncomeB","4086":"lowIncomeA","4087":"lowIncomeB","4088":"lowIncomeA","4089":"midIncome","4090":"lowIncomeA","4091":"lowIncomeA","4092":"lowIncomeB","4093":"lowIncomeA","4094":"lowIncomeB","4095":"lowIncomeB","4096":"lowIncomeA","4097":"lowIncomeA","4098":"lowIncomeB","4099":"lowIncomeA","4100":"lowIncomeA","4101":"lowIncomeA","4102":"lowIncomeB","4103":"lowIncomeA","4104":"lowIncomeB","4105":"lowIncomeA","4106":"midIncome","4107":"lowIncomeA","4108":"lowIncomeA","4109":"midIncome","4110":"lowIncomeA","4111":"lowIncomeB","4112":"lowIncomeA","4113":"lowIncomeB","4114":"lowIncomeB","4115":"lowIncomeB","4116":"lowIncomeB","4117":"lowIncomeA","4118":"lowIncomeA","4119":"lowIncomeB","4120":"lowIncomeA","4121":"lowIncomeB","4122":"lowIncomeA","4123":"lowIncomeA","4124":"lowIncomeA","4125":"lowIncomeA","4126":"lowIncomeA","4127":"lowIncomeA","4128":"lowIncomeB","4129":"lowIncomeB","4130":"midIncome","4131":"lowIncomeA","4132":"midIncome","4133":"lowIncomeA","4134":"midIncome","4135":"lowIncomeB","4136":"lowIncomeB","4137":"midIncome","4138":"lowIncomeB","4139":"lowIncomeA","4140":"lowIncomeB","4141":"lowIncomeA","4142":"lowIncomeA","4143":"lowIncomeB","4144":"midIncome","4145":"lowIncomeB","4146":"lowIncomeB","4147":"lowIncomeB","4148":"lowIncomeB","4149":"lowIncomeA","4150":"lowIncomeA","4151":"lowIncomeA","4152":"lowIncomeA","4153":"lowIncomeA","4154":"lowIncomeA","4155":"lowIncomeB","4156":"lowIncomeA","4157":"lowIncomeB","4158":"lowIncomeA","4159":"lowIncomeB","4160":"lowIncomeB","4161":"lowIncomeA","4162":"lowIncomeA","4163":"lowIncomeB","4164":"lowIncomeB","4165":"lowIncomeA","4166":"lowIncomeB","4167":"lowIncomeA","4168":"midIncome","4169":"lowIncomeB","4170":"lowIncomeA","4171":"lowIncomeA","4172":"lowIncomeA","4173":"lowIncomeB","4174":"lowIncomeB","4175":"lowIncomeB","4176":"lowIncomeB","4177":"lowIncomeA","4178":"midIncome","4179":"lowIncomeB","4180":"lowIncomeA","4181":"midIncome","4182":"lowIncomeB","4183":"lowIncomeA","4184":"lowIncomeA","4185":"lowIncomeA","4186":"lowIncomeB","4187":"lowIncomeB","4188":"lowIncomeA","4189":"lowIncomeA","4190":"lowIncomeB","4191":"lowIncomeB","4192":"midIncome","4193":"lowIncomeA","4194":"lowIncomeB","4195":"lowIncomeB","4196":"midIncome","4197":"lowIncomeB","4198":"lowIncomeA","4199":"lowIncomeB","4200":"lowIncomeA","4201":"lowIncomeA","4202":"lowIncomeB","4203":"lowIncomeA","4204":"lowIncomeB","4205":"lowIncomeB","4206":"lowIncomeB","4207":"lowIncomeA","4208":"lowIncomeB","4209":"lowIncomeA","4210":"lowIncomeB","4211":"lowIncomeB","4212":"lowIncomeB","4213":"lowIncomeA","4214":"lowIncomeA","4215":"lowIncomeB","4216":"lowIncomeA","4217":"lowIncomeA","4218":"lowIncomeB","4219":"lowIncomeA","4220":"lowIncomeB","4221":"lowIncomeB","4222":"lowIncomeA","4223":"lowIncomeA","4224":"lowIncomeB","4225":"lowIncomeA","4226":"lowIncomeA","4227":"lowIncomeA","4228":"lowIncomeA","4229":"lowIncomeA","4230":"lowIncomeB","4231":"lowIncomeB","4232":"lowIncomeB","4233":"lowIncomeA","4234":"lowIncomeB","4235":"lowIncomeB","4236":"lowIncomeB","4237":"lowIncomeB","4238":"lowIncomeA","4239":"lowIncomeB","4240":"lowIncomeB","4241":"lowIncomeA","4242":"lowIncomeB","4243":"lowIncomeB","4244":"midIncome","4245":"lowIncomeA","4246":"lowIncomeA","4247":"lowIncomeA","4248":"lowIncomeB","4249":"lowIncomeA","4250":"lowIncomeA","4251":"lowIncomeA","4252":"lowIncomeB","4253":"lowIncomeA","4254":"lowIncomeB","4255":"lowIncomeB","4256":"lowIncomeB","4257":"lowIncomeA","4258":"lowIncomeB","4259":"lowIncomeA","4260":"midIncome","4261":"lowIncomeA","4262":"lowIncomeB","4263":"lowIncomeA","4264":"lowIncomeA","4265":"lowIncomeA","4266":"lowIncomeB","4267":"lowIncomeA","4268":"midIncome","4269":"lowIncomeA","4270":"lowIncomeA","4271":"lowIncomeA","4272":"lowIncomeA","4273":"lowIncomeA","4274":"lowIncomeA","4275":"lowIncomeB","4276":"lowIncomeA","4277":"lowIncomeB","4278":"lowIncomeB","4279":"lowIncomeA","4280":"lowIncomeA","4281":"lowIncomeA","4282":"lowIncomeB","4283":"lowIncomeA","4284":"lowIncomeA","4285":"lowIncomeA","4286":"lowIncomeA","4287":"lowIncomeB","4288":"lowIncomeB","4289":"lowIncomeA","4290":"lowIncomeA","4291":"lowIncomeB","4292":"lowIncomeA","4293":"lowIncomeB","4294":"lowIncomeA","4295":"lowIncomeA","4296":"lowIncomeB","4297":"lowIncomeB","4298":"lowIncomeB","4299":"midIncome","4300":"lowIncomeB","4301":"lowIncomeB","4302":"lowIncomeA","4303":"lowIncomeB","4304":"lowIncomeA","4305":"lowIncomeB","4306":"lowIncomeA","4307":"lowIncomeB","4308":"lowIncomeA","4309":"lowIncomeA","4310":"lowIncomeA","4311":"midIncome","4312":"lowIncomeA","4313":"lowIncomeA","4314":"lowIncomeA","4315":"lowIncomeB","4316":"lowIncomeB","4317":"lowIncomeB","4318":"lowIncomeA","4319":"midIncome","4320":"lowIncomeA","4321":"lowIncomeA","4322":"lowIncomeB","4323":"lowIncomeA","4324":"lowIncomeA","4325":"lowIncomeA","4326":"lowIncomeA","4327":"lowIncomeA","4328":"lowIncomeA","4329":"lowIncomeA","4330":"lowIncomeA","4331":"lowIncomeA","4332":"lowIncomeA","4333":"lowIncomeB","4334":"lowIncomeA","4335":"lowIncomeA","4336":"lowIncomeB","4337":"midIncome","4338":"lowIncomeB","4339":"lowIncomeB","4340":"lowIncomeB","4341":"lowIncomeB","4342":"lowIncomeA","4343":"lowIncomeB","4344":"lowIncomeB","4345":"lowIncomeB","4346":"lowIncomeB","4347":"lowIncomeA","4348":"lowIncomeB","4349":"lowIncomeA","4350":"lowIncomeB","4351":"lowIncomeA","4352":"lowIncomeA","4353":"lowIncomeB","4354":"lowIncomeA","4355":"lowIncomeB","4356":"lowIncomeA","4357":"lowIncomeA","4358":"lowIncomeA","4359":"lowIncomeB","4360":"lowIncomeA","4361":"lowIncomeB","4362":"midIncome","4363":"midIncome","4364":"lowIncomeB","4365":"lowIncomeA","4366":"lowIncomeB","4367":"lowIncomeA","4368":"lowIncomeB","4369":"lowIncomeB","4370":"lowIncomeA","4371":"lowIncomeA","4372":"lowIncomeB","4373":"midIncome","4374":"lowIncomeB","4375":"midIncome","4376":"lowIncomeB","4377":"lowIncomeB","4378":"lowIncomeB","4379":"lowIncomeB","4380":"lowIncomeB","4381":"lowIncomeA","4382":"midIncome","4383":"lowIncomeA","4384":"lowIncomeB","4385":"lowIncomeA","4386":"lowIncomeA","4387":"lowIncomeB","4388":"lowIncomeA","4389":"midIncome","4390":"lowIncomeA","4391":"lowIncomeA","4392":"lowIncomeB","4393":"lowIncomeB","4394":"midIncome","4395":"lowIncomeA","4396":"lowIncomeA","4397":"lowIncomeA","4398":"lowIncomeB","4399":"lowIncomeA","4400":"lowIncomeA","4401":"lowIncomeA","4402":"lowIncomeA","4403":"lowIncomeB","4404":"lowIncomeA","4405":"lowIncomeB","4406":"lowIncomeA","4407":"lowIncomeB","4408":"lowIncomeA","4409":"lowIncomeA","4410":"lowIncomeB","4411":"midIncome","4412":"lowIncomeB","4413":"lowIncomeA","4414":"lowIncomeA","4415":"lowIncomeA","4416":"lowIncomeA","4417":"lowIncomeA","4418":"lowIncomeB","4419":"midIncome","4420":"lowIncomeA","4421":"lowIncomeA","4422":"lowIncomeB","4423":"midIncome","4424":"lowIncomeB","4425":"lowIncomeA","4426":"lowIncomeA","4427":"lowIncomeA","4428":"lowIncomeA","4429":"lowIncomeA","4430":"lowIncomeA","4431":"midIncome","4432":"midIncome","4433":"lowIncomeB","4434":"lowIncomeB","4435":"lowIncomeB","4436":"lowIncomeA","4437":"lowIncomeA","4438":"lowIncomeB","4439":"lowIncomeB","4440":"lowIncomeB","4441":"lowIncomeB","4442":"lowIncomeA","4443":"midIncome","4444":"lowIncomeB","4445":"lowIncomeA","4446":"lowIncomeB","4447":"midIncome","4448":"lowIncomeB","4449":"lowIncomeA","4450":"lowIncomeA","4451":"lowIncomeA","4452":"lowIncomeB","4453":"midIncome","4454":"lowIncomeA","4455":"lowIncomeA","4456":"lowIncomeA","4457":"lowIncomeB","4458":"lowIncomeB","4459":"lowIncomeA","4460":"lowIncomeA","4461":"lowIncomeB","4462":"lowIncomeB","4463":"lowIncomeB","4464":"lowIncomeA","4465":"lowIncomeA","4466":"lowIncomeA","4467":"midIncome","4468":"lowIncomeB","4469":"lowIncomeA","4470":"lowIncomeB","4471":"lowIncomeB","4472":"lowIncomeB","4473":"lowIncomeB","4474":"lowIncomeA","4475":"lowIncomeB","4476":"lowIncomeB","4477":"lowIncomeB","4478":"lowIncomeA","4479":"lowIncomeB","4480":"lowIncomeA","4481":"lowIncomeA","4482":"lowIncomeA","4483":"lowIncomeB","4484":"lowIncomeB","4485":"lowIncomeB","4486":"lowIncomeA","4487":"lowIncomeB","4488":"lowIncomeA","4489":"lowIncomeA","4490":"lowIncomeB","4491":"lowIncomeA","4492":"lowIncomeA","4493":"lowIncomeA","4494":"lowIncomeB","4495":"lowIncomeB","4496":"lowIncomeA","4497":"lowIncomeA","4498":"lowIncomeA","4499":"lowIncomeA","4500":"midIncome","4501":"lowIncomeB","4502":"lowIncomeA","4503":"lowIncomeA","4504":"lowIncomeA","4505":"lowIncomeA","4506":"lowIncomeB","4507":"lowIncomeA","4508":"lowIncomeB","4509":"lowIncomeB","4510":"lowIncomeA","4511":"lowIncomeA","4512":"lowIncomeB","4513":"lowIncomeA","4514":"lowIncomeB","4515":"lowIncomeB","4516":"lowIncomeA","4517":"lowIncomeB","4518":"midIncome","4519":"lowIncomeB","4520":"lowIncomeA","4521":"midIncome","4522":"lowIncomeA","4523":"lowIncomeA","4524":"lowIncomeB","4525":"lowIncomeA","4526":"lowIncomeA","4527":"lowIncomeA","4528":"lowIncomeA","4529":"lowIncomeB","4530":"midIncome","4531":"lowIncomeA","4532":"lowIncomeA","4533":"lowIncomeA","4534":"lowIncomeA","4535":"midIncome","4536":"lowIncomeA","4537":"lowIncomeA","4538":"lowIncomeA","4539":"lowIncomeA","4540":"lowIncomeB","4541":"lowIncomeA","4542":"lowIncomeB","4543":"lowIncomeA","4544":"lowIncomeB","4545":"lowIncomeA","4546":"lowIncomeB","4547":"midIncome","4548":"lowIncomeB","4549":"lowIncomeA","4550":"lowIncomeB","4551":"lowIncomeA","4552":"lowIncomeA","4553":"lowIncomeA","4554":"lowIncomeA","4555":"lowIncomeA","4556":"lowIncomeA","4557":"lowIncomeA","4558":"lowIncomeB","4559":"lowIncomeB","4560":"lowIncomeB","4561":"lowIncomeB","4562":"lowIncomeB","4563":"midIncome","4564":"lowIncomeA","4565":"lowIncomeA","4566":"lowIncomeB","4567":"lowIncomeB","4568":"lowIncomeA","4569":"lowIncomeB","4570":"lowIncomeB","4571":"lowIncomeA","4572":"lowIncomeA","4573":"lowIncomeA","4574":"lowIncomeA","4575":"lowIncomeB","4576":"lowIncomeB","4577":"lowIncomeA","4578":"lowIncomeA","4579":"lowIncomeB","4580":"lowIncomeA","4581":"lowIncomeB","4582":"lowIncomeB","4583":"midIncome","4584":"lowIncomeB","4585":"lowIncomeB","4586":"lowIncomeB","4587":"lowIncomeB","4588":"lowIncomeA","4589":"lowIncomeB","4590":"lowIncomeA","4591":"lowIncomeB","4592":"lowIncomeB","4593":"lowIncomeA","4594":"lowIncomeA","4595":"lowIncomeA","4596":"lowIncomeB","4597":"midIncome","4598":"lowIncomeB","4599":"lowIncomeA","4600":"lowIncomeB","4601":"lowIncomeB","4602":"midIncome","4603":"lowIncomeB","4604":"lowIncomeB","4605":"lowIncomeB","4606":"lowIncomeA","4607":"lowIncomeA","4608":"lowIncomeB","4609":"lowIncomeB","4610":"lowIncomeA","4611":"lowIncomeA","4612":"lowIncomeA","4613":"lowIncomeA","4614":"midIncome","4615":"midIncome","4616":"lowIncomeB","4617":"lowIncomeA","4618":"lowIncomeA","4619":"lowIncomeB","4620":"midIncome","4621":"lowIncomeA","4622":"lowIncomeA","4623":"lowIncomeA","4624":"midIncome","4625":"lowIncomeA","4626":"lowIncomeB","4627":"lowIncomeA","4628":"lowIncomeA","4629":"lowIncomeB","4630":"midIncome","4631":"lowIncomeB","4632":"lowIncomeA","4633":"lowIncomeB","4634":"lowIncomeA","4635":"lowIncomeB","4636":"lowIncomeA","4637":"lowIncomeA","4638":"lowIncomeA","4639":"lowIncomeB","4640":"lowIncomeB","4641":"midIncome","4642":"lowIncomeA","4643":"lowIncomeB","4644":"lowIncomeB","4645":"lowIncomeA","4646":"lowIncomeB","4647":"lowIncomeA","4648":"lowIncomeB","4649":"midIncome","4650":"lowIncomeB","4651":"lowIncomeB","4652":"lowIncomeA","4653":"lowIncomeA","4654":"lowIncomeA","4655":"lowIncomeB","4656":"lowIncomeB","4657":"lowIncomeA","4658":"lowIncomeB","4659":"lowIncomeA","4660":"lowIncomeA","4661":"lowIncomeB","4662":"lowIncomeA","4663":"lowIncomeB","4664":"lowIncomeA","4665":"midIncome","4666":"lowIncomeB","4667":"lowIncomeA","4668":"lowIncomeA","4669":"lowIncomeA","4670":"lowIncomeA","4671":"lowIncomeB","4672":"lowIncomeA","4673":"lowIncomeB","4674":"lowIncomeA","4675":"lowIncomeB","4676":"lowIncomeA","4677":"lowIncomeA","4678":"lowIncomeA","4679":"midIncome","4680":"lowIncomeB","4681":"lowIncomeB","4682":"lowIncomeB","4683":"lowIncomeA","4684":"lowIncomeA","4685":"lowIncomeB","4686":"lowIncomeA","4687":"lowIncomeA","4688":"lowIncomeB","4689":"lowIncomeA","4690":"midIncome","4691":"lowIncomeB","4692":"lowIncomeA","4693":"lowIncomeA","4694":"midIncome","4695":"lowIncomeB","4696":"lowIncomeB","4697":"midIncome","4698":"midIncome","4699":"midIncome","4700":"lowIncomeA","4701":"lowIncomeB","4702":"midIncome","4703":"lowIncomeA","4704":"lowIncomeB","4705":"lowIncomeB","4706":"lowIncomeB","4707":"lowIncomeB","4708":"lowIncomeA","4709":"lowIncomeA","4710":"lowIncomeB","4711":"lowIncomeA","4712":"lowIncomeB","4713":"lowIncomeB","4714":"lowIncomeB","4715":"lowIncomeB","4716":"lowIncomeA","4717":"lowIncomeB","4718":"lowIncomeB","4719":"lowIncomeA","4720":"lowIncomeB","4721":"lowIncomeA","4722":"lowIncomeB","4723":"midIncome","4724":"lowIncomeA","4725":"lowIncomeA","4726":"midIncome","4727":"lowIncomeB","4728":"lowIncomeA","4729":"lowIncomeA","4730":"lowIncomeA","4731":"lowIncomeA","4732":"lowIncomeA","4733":"midIncome","4734":"lowIncomeB","4735":"lowIncomeA","4736":"lowIncomeB","4737":"lowIncomeB","4738":"lowIncomeA","4739":"lowIncomeA","4740":"lowIncomeB","4741":"midIncome","4742":"lowIncomeA","4743":"lowIncomeB","4744":"lowIncomeB","4745":"lowIncomeB","4746":"lowIncomeB","4747":"lowIncomeB","4748":"lowIncomeB","4749":"lowIncomeB","4750":"lowIncomeA","4751":"lowIncomeA","4752":"lowIncomeB","4753":"lowIncomeA","4754":"lowIncomeB","4755":"lowIncomeB","4756":"lowIncomeB","4757":"midIncome","4758":"lowIncomeA","4759":"lowIncomeB","4760":"lowIncomeB","4761":"lowIncomeA","4762":"lowIncomeB","4763":"lowIncomeB","4764":"lowIncomeA","4765":"lowIncomeB","4766":"lowIncomeA","4767":"lowIncomeB","4768":"lowIncomeA","4769":"lowIncomeB","4770":"lowIncomeB","4771":"midIncome","4772":"lowIncomeB","4773":"lowIncomeA","4774":"lowIncomeB","4775":"lowIncomeB","4776":"lowIncomeA","4777":"lowIncomeA","4778":"lowIncomeB","4779":"lowIncomeA","4780":"lowIncomeA","4781":"lowIncomeA","4782":"lowIncomeA","4783":"lowIncomeB","4784":"lowIncomeA","4785":"lowIncomeA","4786":"lowIncomeB","4787":"lowIncomeB","4788":"lowIncomeA","4789":"lowIncomeB","4790":"lowIncomeB","4791":"lowIncomeB","4792":"lowIncomeA","4793":"lowIncomeB","4794":"lowIncomeB","4795":"midIncome","4796":"lowIncomeB","4797":"lowIncomeA","4798":"lowIncomeB","4799":"lowIncomeA","4800":"lowIncomeB","4801":"lowIncomeA","4802":"lowIncomeB","4803":"lowIncomeA","4804":"lowIncomeB","4805":"lowIncomeA","4806":"midIncome","4807":"lowIncomeB","4808":"lowIncomeA","4809":"lowIncomeA","4810":"lowIncomeB","4811":"lowIncomeA","4812":"lowIncomeB","4813":"midIncome","4814":"lowIncomeA","4815":"lowIncomeA","4816":"lowIncomeA","4817":"lowIncomeA","4818":"lowIncomeB","4819":"lowIncomeA","4820":"lowIncomeB","4821":"midIncome","4822":"midIncome","4823":"lowIncomeA","4824":"lowIncomeB","4825":"lowIncomeA","4826":"lowIncomeA","4827":"lowIncomeB","4828":"lowIncomeA","4829":"lowIncomeB","4830":"lowIncomeA","4831":"lowIncomeA","4832":"lowIncomeA","4833":"lowIncomeA","4834":"lowIncomeB","4835":"lowIncomeB","4836":"lowIncomeB","4837":"lowIncomeA","4838":"lowIncomeB","4839":"lowIncomeA","4840":"lowIncomeB","4841":"midIncome","4842":"lowIncomeB","4843":"lowIncomeA","4844":"lowIncomeB","4845":"lowIncomeA","4846":"lowIncomeA","4847":"lowIncomeA","4848":"lowIncomeB","4849":"lowIncomeA","4850":"lowIncomeA","4851":"lowIncomeB","4852":"lowIncomeA","4853":"midIncome","4854":"lowIncomeA","4855":"lowIncomeB","4856":"midIncome","4857":"lowIncomeA","4858":"lowIncomeB","4859":"midIncome","4860":"lowIncomeB","4861":"lowIncomeB","4862":"lowIncomeB","4863":"lowIncomeA","4864":"lowIncomeB","4865":"lowIncomeB","4866":"lowIncomeA","4867":"lowIncomeA","4868":"lowIncomeA","4869":"lowIncomeB","4870":"lowIncomeB","4871":"lowIncomeA","4872":"lowIncomeA","4873":"lowIncomeB","4874":"lowIncomeA","4875":"lowIncomeA","4876":"lowIncomeB","4877":"lowIncomeB","4878":"midIncome","4879":"lowIncomeB","4880":"lowIncomeB","4881":"lowIncomeA","4882":"lowIncomeA","4883":"lowIncomeA","4884":"lowIncomeA","4885":"lowIncomeB","4886":"lowIncomeB","4887":"lowIncomeA","4888":"lowIncomeA","4889":"lowIncomeA","4890":"lowIncomeA","4891":"lowIncomeA","4892":"lowIncomeA","4893":"lowIncomeA","4894":"lowIncomeA","4895":"lowIncomeB","4896":"lowIncomeA","4897":"lowIncomeB","4898":"lowIncomeB","4899":"lowIncomeB","4900":"lowIncomeB","4901":"lowIncomeA","4902":"midIncome","4903":"lowIncomeB","4904":"lowIncomeB","4905":"lowIncomeB","4906":"lowIncomeA","4907":"lowIncomeB","4908":"lowIncomeA","4909":"lowIncomeA","4910":"lowIncomeA","4911":"lowIncomeA","4912":"lowIncomeA","4913":"lowIncomeA","4914":"lowIncomeA","4915":"lowIncomeA","4916":"lowIncomeA","4917":"lowIncomeB","4918":"lowIncomeA","4919":"lowIncomeB","4920":"lowIncomeA","4921":"lowIncomeA","4922":"lowIncomeA","4923":"lowIncomeA","4924":"lowIncomeB","4925":"lowIncomeB","4926":"lowIncomeA","4927":"lowIncomeB","4928":"lowIncomeB","4929":"lowIncomeA","4930":"lowIncomeA","4931":"lowIncomeA","4932":"lowIncomeA","4933":"lowIncomeB","4934":"midIncome","4935":"lowIncomeA","4936":"lowIncomeB","4937":"lowIncomeA","4938":"lowIncomeB","4939":"lowIncomeB","4940":"midIncome","4941":"lowIncomeB","4942":"lowIncomeA","4943":"midIncome","4944":"lowIncomeB","4945":"lowIncomeA","4946":"lowIncomeA","4947":"lowIncomeA","4948":"lowIncomeA","4949":"lowIncomeA","4950":"lowIncomeA","4951":"lowIncomeB","4952":"midIncome","4953":"lowIncomeB","4954":"lowIncomeB","4955":"lowIncomeB","4956":"lowIncomeB","4957":"lowIncomeB","4958":"lowIncomeB","4959":"lowIncomeA","4960":"lowIncomeA","4961":"lowIncomeB","4962":"lowIncomeA","4963":"lowIncomeA","4964":"lowIncomeA","4965":"lowIncomeA","4966":"lowIncomeA","4967":"lowIncomeA","4968":"lowIncomeA","4969":"lowIncomeA","4970":"lowIncomeB","4971":"lowIncomeB","4972":"lowIncomeA","4973":"lowIncomeA","4974":"lowIncomeB","4975":"lowIncomeA","4976":"lowIncomeA","4977":"lowIncomeA","4978":"lowIncomeA","4979":"lowIncomeB","4980":"lowIncomeA","4981":"lowIncomeA","4982":"lowIncomeB","4983":"lowIncomeB","4984":"lowIncomeA","4985":"lowIncomeB","4986":"lowIncomeB","4987":"lowIncomeA","4988":"lowIncomeB","4989":"lowIncomeA","4990":"lowIncomeB","4991":"lowIncomeB","4992":"lowIncomeA","4993":"lowIncomeA","4994":"lowIncomeB","4995":"midIncome","4996":"lowIncomeA","4997":"lowIncomeA","4998":"lowIncomeB","4999":"midIncome","5000":"lowIncomeB","5001":"lowIncomeB","5002":"lowIncomeB","5003":"lowIncomeA","5004":"lowIncomeB","5005":"lowIncomeB","5006":"lowIncomeB","5007":"midIncome","5008":"lowIncomeA","5009":"lowIncomeA","5010":"lowIncomeA","5011":"lowIncomeA","5012":"lowIncomeB","5013":"lowIncomeA","5014":"lowIncomeA","5015":"lowIncomeA","5016":"lowIncomeA","5017":"lowIncomeA","5018":"lowIncomeA","5019":"lowIncomeA","5020":"lowIncomeB","5021":"lowIncomeB","5022":"lowIncomeA","5023":"lowIncomeB","5024":"lowIncomeA","5025":"lowIncomeA","5026":"lowIncomeB","5027":"midIncome","5028":"lowIncomeA","5029":"lowIncomeB","5030":"lowIncomeA","5031":"lowIncomeB","5032":"lowIncomeA","5033":"lowIncomeB","5034":"lowIncomeA","5035":"lowIncomeA","5036":"lowIncomeA","5037":"lowIncomeA","5038":"midIncome","5039":"lowIncomeA","5040":"lowIncomeA","5041":"lowIncomeA","5042":"lowIncomeA","5043":"lowIncomeA","5044":"lowIncomeB","5045":"lowIncomeB","5046":"lowIncomeB","5047":"lowIncomeB","5048":"lowIncomeB","5049":"lowIncomeA","5050":"lowIncomeB","5051":"lowIncomeA","5052":"lowIncomeA","5053":"lowIncomeA","5054":"lowIncomeA","5055":"midIncome","5056":"lowIncomeB","5057":"midIncome","5058":"lowIncomeA","5059":"lowIncomeA","5060":"lowIncomeA","5061":"lowIncomeA","5062":"lowIncomeB","5063":"lowIncomeA","5064":"lowIncomeA","5065":"lowIncomeB","5066":"lowIncomeA","5067":"midIncome","5068":"lowIncomeB","5069":"lowIncomeA","5070":"lowIncomeA","5071":"lowIncomeB","5072":"lowIncomeB","5073":"lowIncomeA","5074":"lowIncomeB","5075":"lowIncomeA","5076":"lowIncomeA","5077":"lowIncomeB","5078":"lowIncomeB","5079":"midIncome","5080":"lowIncomeB","5081":"lowIncomeA","5082":"lowIncomeB","5083":"lowIncomeA","5084":"lowIncomeB","5085":"lowIncomeA","5086":"lowIncomeB","5087":"lowIncomeA","5088":"midIncome","5089":"lowIncomeA","5090":"lowIncomeA","5091":"lowIncomeB","5092":"lowIncomeB","5093":"lowIncomeB","5094":"lowIncomeA","5095":"lowIncomeB","5096":"lowIncomeA","5097":"midIncome","5098":"lowIncomeA","5099":"lowIncomeB","5100":"midIncome","5101":"lowIncomeA","5102":"lowIncomeA","5103":"lowIncomeA","5104":"lowIncomeB","5105":"lowIncomeA","5106":"lowIncomeA","5107":"lowIncomeB","5108":"lowIncomeA","5109":"lowIncomeA","5110":"lowIncomeB","5111":"lowIncomeA","5112":"lowIncomeA","5113":"lowIncomeB","5114":"lowIncomeA","5115":"lowIncomeA","5116":"lowIncomeB","5117":"midIncome","5118":"lowIncomeB","5119":"lowIncomeB","5120":"lowIncomeB","5121":"lowIncomeA","5122":"lowIncomeA","5123":"lowIncomeA","5124":"lowIncomeA","5125":"lowIncomeA","5126":"lowIncomeA","5127":"lowIncomeA","5128":"lowIncomeB","5129":"midIncome","5130":"lowIncomeB","5131":"lowIncomeA","5132":"lowIncomeB","5133":"lowIncomeB","5134":"lowIncomeB","5135":"midIncome","5136":"lowIncomeB","5137":"lowIncomeB","5138":"lowIncomeA","5139":"lowIncomeB","5140":"lowIncomeB","5141":"lowIncomeB","5142":"lowIncomeB","5143":"lowIncomeB","5144":"lowIncomeB","5145":"lowIncomeB","5146":"lowIncomeB","5147":"midIncome","5148":"lowIncomeB","5149":"lowIncomeA","5150":"lowIncomeB","5151":"lowIncomeB","5152":"lowIncomeA","5153":"midIncome","5154":"lowIncomeA","5155":"midIncome","5156":"lowIncomeB","5157":"lowIncomeB","5158":"lowIncomeA","5159":"lowIncomeB","5160":"lowIncomeA","5161":"lowIncomeA","5162":"lowIncomeA","5163":"lowIncomeA","5164":"lowIncomeB","5165":"lowIncomeA","5166":"midIncome","5167":"lowIncomeB","5168":"lowIncomeB","5169":"lowIncomeA","5170":"midIncome","5171":"lowIncomeA","5172":"lowIncomeB","5173":"lowIncomeA","5174":"lowIncomeB","5175":"lowIncomeB","5176":"lowIncomeA","5177":"lowIncomeA","5178":"lowIncomeB","5179":"lowIncomeA","5180":"lowIncomeA","5181":"lowIncomeB","5182":"lowIncomeA","5183":"lowIncomeA","5184":"lowIncomeB","5185":"lowIncomeA","5186":"lowIncomeA","5187":"lowIncomeA","5188":"midIncome","5189":"lowIncomeA","5190":"lowIncomeB","5191":"lowIncomeA","5192":"lowIncomeA","5193":"lowIncomeB","5194":"lowIncomeA","5195":"lowIncomeA","5196":"lowIncomeA","5197":"lowIncomeA","5198":"lowIncomeA","5199":"lowIncomeB","5200":"lowIncomeA","5201":"lowIncomeA","5202":"lowIncomeA","5203":"lowIncomeB","5204":"lowIncomeB","5205":"lowIncomeB","5206":"lowIncomeA","5207":"lowIncomeA","5208":"midIncome","5209":"lowIncomeA","5210":"lowIncomeA","5211":"lowIncomeB","5212":"lowIncomeA","5213":"lowIncomeA","5214":"lowIncomeB","5215":"lowIncomeB","5216":"lowIncomeA","5217":"lowIncomeA","5218":"midIncome","5219":"lowIncomeB","5220":"lowIncomeA","5221":"lowIncomeA","5222":"midIncome","5223":"lowIncomeA","5224":"lowIncomeB","5225":"lowIncomeB","5226":"lowIncomeB","5227":"lowIncomeA","5228":"lowIncomeB","5229":"lowIncomeA","5230":"lowIncomeA","5231":"lowIncomeA","5232":"lowIncomeA","5233":"lowIncomeB","5234":"lowIncomeB","5235":"lowIncomeB","5236":"lowIncomeB","5237":"lowIncomeA","5238":"lowIncomeA","5239":"lowIncomeB","5240":"lowIncomeB","5241":"lowIncomeA","5242":"midIncome","5243":"lowIncomeA","5244":"lowIncomeA","5245":"lowIncomeB","5246":"lowIncomeB","5247":"lowIncomeB","5248":"lowIncomeB","5249":"lowIncomeA","5250":"midIncome","5251":"lowIncomeA","5252":"lowIncomeB","5253":"lowIncomeA","5254":"lowIncomeB","5255":"lowIncomeB","5256":"lowIncomeA","5257":"lowIncomeA","5258":"lowIncomeA","5259":"lowIncomeA","5260":"lowIncomeA","5261":"lowIncomeA","5262":"midIncome","5263":"lowIncomeA","5264":"lowIncomeB","5265":"lowIncomeA","5266":"lowIncomeA","5267":"lowIncomeB","5268":"lowIncomeA","5269":"lowIncomeA","5270":"lowIncomeB","5271":"lowIncomeB","5272":"lowIncomeB","5273":"lowIncomeA","5274":"lowIncomeA","5275":"lowIncomeB","5276":"lowIncomeB","5277":"lowIncomeB","5278":"lowIncomeA","5279":"lowIncomeA","5280":"lowIncomeB","5281":"lowIncomeA","5282":"lowIncomeA","5283":"lowIncomeB","5284":"lowIncomeB","5285":"lowIncomeB","5286":"lowIncomeB","5287":"lowIncomeA","5288":"lowIncomeA","5289":"lowIncomeA","5290":"lowIncomeB","5291":"lowIncomeB","5292":"lowIncomeA","5293":"midIncome","5294":"lowIncomeA","5295":"lowIncomeA","5296":"lowIncomeA","5297":"lowIncomeB","5298":"lowIncomeA","5299":"midIncome","5300":"lowIncomeB","5301":"lowIncomeB","5302":"lowIncomeA","5303":"lowIncomeA","5304":"midIncome","5305":"lowIncomeA","5306":"lowIncomeB","5307":"lowIncomeA","5308":"lowIncomeA","5309":"lowIncomeB","5310":"lowIncomeB","5311":"lowIncomeA","5312":"midIncome","5313":"lowIncomeB","5314":"lowIncomeB","5315":"lowIncomeA","5316":"lowIncomeA","5317":"lowIncomeA","5318":"lowIncomeB","5319":"lowIncomeB","5320":"lowIncomeB","5321":"midIncome","5322":"lowIncomeA","5323":"lowIncomeA","5324":"lowIncomeA","5325":"lowIncomeA","5326":"lowIncomeA","5327":"lowIncomeA","5328":"lowIncomeA","5329":"lowIncomeB","5330":"lowIncomeA","5331":"lowIncomeA","5332":"lowIncomeB","5333":"midIncome","5334":"lowIncomeA","5335":"lowIncomeA","5336":"lowIncomeB","5337":"lowIncomeA","5338":"lowIncomeA","5339":"lowIncomeB","5340":"lowIncomeB","5341":"lowIncomeB","5342":"lowIncomeA","5343":"lowIncomeB","5344":"lowIncomeB","5345":"lowIncomeB","5346":"midIncome","5347":"midIncome","5348":"lowIncomeB","5349":"lowIncomeA","5350":"midIncome","5351":"lowIncomeA","5352":"lowIncomeA","5353":"lowIncomeA","5354":"lowIncomeB","5355":"lowIncomeA","5356":"lowIncomeB","5357":"lowIncomeB","5358":"lowIncomeB","5359":"lowIncomeB","5360":"lowIncomeA","5361":"lowIncomeA","5362":"lowIncomeB","5363":"lowIncomeA","5364":"lowIncomeB","5365":"lowIncomeB","5366":"midIncome","5367":"lowIncomeB","5368":"lowIncomeB","5369":"lowIncomeA","5370":"lowIncomeA","5371":"midIncome","5372":"lowIncomeA","5373":"lowIncomeA","5374":"lowIncomeA","5375":"lowIncomeA","5376":"lowIncomeA","5377":"lowIncomeA","5378":"lowIncomeA","5379":"lowIncomeA","5380":"lowIncomeB","5381":"lowIncomeB","5382":"lowIncomeA","5383":"midIncome","5384":"lowIncomeA","5385":"midIncome","5386":"midIncome","5387":"lowIncomeA","5388":"lowIncomeB","5389":"lowIncomeB","5390":"lowIncomeA","5391":"lowIncomeA","5392":"lowIncomeB","5393":"lowIncomeB","5394":"lowIncomeA","5395":"lowIncomeB","5396":"lowIncomeB","5397":"lowIncomeB","5398":"lowIncomeB","5399":"midIncome","5400":"lowIncomeB","5401":"lowIncomeA","5402":"lowIncomeA","5403":"lowIncomeA","5404":"lowIncomeA","5405":"lowIncomeA","5406":"lowIncomeA","5407":"lowIncomeA","5408":"lowIncomeB","5409":"lowIncomeB","5410":"lowIncomeA","5411":"lowIncomeA","5412":"lowIncomeA","5413":"lowIncomeA","5414":"lowIncomeB","5415":"lowIncomeA","5416":"lowIncomeB","5417":"lowIncomeA","5418":"lowIncomeB","5419":"lowIncomeA","5420":"lowIncomeA","5421":"lowIncomeA","5422":"lowIncomeB","5423":"lowIncomeA","5424":"lowIncomeB","5425":"lowIncomeA","5426":"lowIncomeA","5427":"lowIncomeA","5428":"lowIncomeA","5429":"lowIncomeB","5430":"lowIncomeB","5431":"lowIncomeA","5432":"lowIncomeB","5433":"lowIncomeB","5434":"lowIncomeA","5435":"lowIncomeB","5436":"lowIncomeB","5437":"lowIncomeA","5438":"lowIncomeA","5439":"midIncome","5440":"lowIncomeA","5441":"lowIncomeA","5442":"lowIncomeA","5443":"lowIncomeB","5444":"midIncome","5445":"lowIncomeB","5446":"lowIncomeA","5447":"lowIncomeB","5448":"lowIncomeB","5449":"lowIncomeB","5450":"lowIncomeB","5451":"lowIncomeB","5452":"midIncome","5453":"lowIncomeA","5454":"lowIncomeB","5455":"lowIncomeA","5456":"lowIncomeB","5457":"lowIncomeB","5458":"lowIncomeB","5459":"lowIncomeB","5460":"lowIncomeB","5461":"lowIncomeB","5462":"lowIncomeA","5463":"lowIncomeB","5464":"lowIncomeA","5465":"lowIncomeB","5466":"lowIncomeA","5467":"lowIncomeB","5468":"lowIncomeA","5469":"lowIncomeA","5470":"lowIncomeA","5471":"lowIncomeA","5472":"lowIncomeB","5473":"lowIncomeA","5474":"lowIncomeB","5475":"lowIncomeB","5476":"lowIncomeB","5477":"lowIncomeB","5478":"lowIncomeA","5479":"lowIncomeB","5480":"lowIncomeB","5481":"lowIncomeA","5482":"lowIncomeA","5483":"lowIncomeB","5484":"midIncome","5485":"lowIncomeB","5486":"lowIncomeB","5487":"midIncome","5488":"lowIncomeB","5489":"lowIncomeB","5490":"lowIncomeA","5491":"lowIncomeA","5492":"lowIncomeA","5493":"midIncome","5494":"lowIncomeB","5495":"lowIncomeA","5496":"lowIncomeB","5497":"lowIncomeB","5498":"midIncome","5499":"lowIncomeA","5500":"lowIncomeB","5501":"lowIncomeB","5502":"lowIncomeA","5503":"midIncome","5504":"lowIncomeA","5505":"lowIncomeA","5506":"lowIncomeA","5507":"lowIncomeA","5508":"lowIncomeA","5509":"lowIncomeB","5510":"lowIncomeA","5511":"lowIncomeB","5512":"lowIncomeB","5513":"lowIncomeA","5514":"lowIncomeA","5515":"lowIncomeA","5516":"lowIncomeB","5517":"lowIncomeA","5518":"midIncome","5519":"lowIncomeB","5520":"lowIncomeA","5521":"lowIncomeB","5522":"lowIncomeA","5523":"lowIncomeB","5524":"lowIncomeA","5525":"lowIncomeA","5526":"lowIncomeA","5527":"lowIncomeA","5528":"lowIncomeB","5529":"lowIncomeA","5530":"lowIncomeA","5531":"lowIncomeB","5532":"lowIncomeA","5533":"lowIncomeB","5534":"lowIncomeB","5535":"lowIncomeB","5536":"lowIncomeB","5537":"lowIncomeB","5538":"lowIncomeB","5539":"lowIncomeB","5540":"lowIncomeA","5541":"lowIncomeB","5542":"lowIncomeA","5543":"lowIncomeA","5544":"midIncome","5545":"lowIncomeB","5546":"lowIncomeA","5547":"midIncome","5548":"lowIncomeA","5549":"midIncome","5550":"lowIncomeB","5551":"lowIncomeB","5552":"lowIncomeA","5553":"lowIncomeA","5554":"lowIncomeA","5555":"lowIncomeB","5556":"midIncome","5557":"lowIncomeA","5558":"lowIncomeB","5559":"lowIncomeA","5560":"midIncome","5561":"lowIncomeA","5562":"lowIncomeA","5563":"lowIncomeA","5564":"lowIncomeB","5565":"lowIncomeB","5566":"lowIncomeB","5567":"lowIncomeA","5568":"lowIncomeA","5569":"lowIncomeA","5570":"lowIncomeB","5571":"midIncome","5572":"midIncome","5573":"lowIncomeB","5574":"lowIncomeB","5575":"lowIncomeB","5576":"midIncome","5577":"lowIncomeB","5578":"lowIncomeB","5579":"lowIncomeA","5580":"lowIncomeB","5581":"lowIncomeA","5582":"midIncome","5583":"lowIncomeA","5584":"lowIncomeA","5585":"lowIncomeA","5586":"midIncome","5587":"lowIncomeA","5588":"lowIncomeB","5589":"lowIncomeA","5590":"lowIncomeB","5591":"lowIncomeB","5592":"lowIncomeA","5593":"lowIncomeB","5594":"lowIncomeA","5595":"lowIncomeA","5596":"lowIncomeA","5597":"lowIncomeA","5598":"lowIncomeA","5599":"lowIncomeB","5600":"lowIncomeB","5601":"lowIncomeB","5602":"lowIncomeA","5603":"lowIncomeA","5604":"lowIncomeA","5605":"lowIncomeA","5606":"lowIncomeA","5607":"lowIncomeA","5608":"lowIncomeB","5609":"lowIncomeA","5610":"midIncome","5611":"lowIncomeB","5612":"lowIncomeB","5613":"lowIncomeA","5614":"lowIncomeB","5615":"lowIncomeB","5616":"lowIncomeA","5617":"lowIncomeB","5618":"lowIncomeB","5619":"lowIncomeA","5620":"lowIncomeA","5621":"lowIncomeA","5622":"lowIncomeB","5623":"lowIncomeA","5624":"lowIncomeB","5625":"lowIncomeA","5626":"lowIncomeB","5627":"midIncome","5628":"lowIncomeA","5629":"lowIncomeB","5630":"midIncome","5631":"lowIncomeB","5632":"lowIncomeB","5633":"lowIncomeB","5634":"lowIncomeB","5635":"lowIncomeB","5636":"lowIncomeA","5637":"lowIncomeB","5638":"lowIncomeB","5639":"lowIncomeA","5640":"lowIncomeB","5641":"lowIncomeB","5642":"midIncome","5643":"midIncome","5644":"lowIncomeA","5645":"lowIncomeA","5646":"lowIncomeA","5647":"lowIncomeA","5648":"lowIncomeA","5649":"lowIncomeA","5650":"lowIncomeA","5651":"lowIncomeB","5652":"lowIncomeB","5653":"lowIncomeA","5654":"lowIncomeA","5655":"lowIncomeA","5656":"lowIncomeA","5657":"lowIncomeB","5658":"lowIncomeA","5659":"lowIncomeA","5660":"lowIncomeA","5661":"lowIncomeA","5662":"lowIncomeB","5663":"lowIncomeA","5664":"lowIncomeB","5665":"lowIncomeA","5666":"lowIncomeB","5667":"lowIncomeA","5668":"lowIncomeA","5669":"lowIncomeB","5670":"lowIncomeA","5671":"lowIncomeA","5672":"lowIncomeA","5673":"lowIncomeA","5674":"midIncome","5675":"lowIncomeA","5676":"lowIncomeB","5677":"lowIncomeB","5678":"lowIncomeA","5679":"lowIncomeB","5680":"lowIncomeB","5681":"lowIncomeA","5682":"lowIncomeB","5683":"lowIncomeB","5684":"lowIncomeA","5685":"lowIncomeB","5686":"lowIncomeA","5687":"lowIncomeB","5688":"midIncome","5689":"lowIncomeB","5690":"midIncome","5691":"lowIncomeA","5692":"midIncome","5693":"lowIncomeA","5694":"lowIncomeB","5695":"lowIncomeA","5696":"lowIncomeA","5697":"lowIncomeA","5698":"lowIncomeB","5699":"lowIncomeB","5700":"lowIncomeA","5701":"lowIncomeB","5702":"lowIncomeA","5703":"lowIncomeB","5704":"lowIncomeB","5705":"lowIncomeB","5706":"lowIncomeA","5707":"lowIncomeA","5708":"midIncome","5709":"lowIncomeB","5710":"lowIncomeB","5711":"lowIncomeB","5712":"lowIncomeA","5713":"lowIncomeB","5714":"midIncome","5715":"lowIncomeA","5716":"lowIncomeB","5717":"lowIncomeB","5718":"midIncome","5719":"lowIncomeB","5720":"lowIncomeA","5721":"lowIncomeB","5722":"lowIncomeB","5723":"lowIncomeB","5724":"lowIncomeA","5725":"midIncome","5726":"lowIncomeB","5727":"midIncome","5728":"lowIncomeA","5729":"lowIncomeA","5730":"lowIncomeA","5731":"lowIncomeA","5732":"lowIncomeA","5733":"lowIncomeA","5734":"lowIncomeA","5735":"lowIncomeA","5736":"lowIncomeA","5737":"lowIncomeA","5738":"lowIncomeB","5739":"lowIncomeA","5740":"lowIncomeA","5741":"lowIncomeB","5742":"lowIncomeA","5743":"lowIncomeB","5744":"lowIncomeA","5745":"lowIncomeA","5746":"lowIncomeB","5747":"lowIncomeA","5748":"lowIncomeA","5749":"lowIncomeB","5750":"lowIncomeA","5751":"lowIncomeA","5752":"lowIncomeA","5753":"lowIncomeB","5754":"lowIncomeA","5755":"lowIncomeA","5756":"lowIncomeB","5757":"lowIncomeB","5758":"lowIncomeB","5759":"lowIncomeA","5760":"lowIncomeB","5761":"lowIncomeA","5762":"midIncome","5763":"lowIncomeB","5764":"lowIncomeA","5765":"lowIncomeA","5766":"lowIncomeA","5767":"lowIncomeA","5768":"lowIncomeA","5769":"lowIncomeA","5770":"lowIncomeB","5771":"lowIncomeA","5772":"lowIncomeB","5773":"lowIncomeA","5774":"lowIncomeB","5775":"midIncome","5776":"lowIncomeB","5777":"lowIncomeA","5778":"lowIncomeB","5779":"lowIncomeB","5780":"lowIncomeB","5781":"lowIncomeA","5782":"lowIncomeB","5783":"lowIncomeA","5784":"lowIncomeB","5785":"lowIncomeB","5786":"lowIncomeA","5787":"lowIncomeA","5788":"lowIncomeA","5789":"lowIncomeA","5790":"lowIncomeB","5791":"lowIncomeA","5792":"lowIncomeA","5793":"lowIncomeA","5794":"lowIncomeA","5795":"lowIncomeB","5796":"lowIncomeA","5797":"lowIncomeB","5798":"lowIncomeB","5799":"lowIncomeA","5800":"lowIncomeA","5801":"lowIncomeA","5802":"lowIncomeB","5803":"lowIncomeB","5804":"lowIncomeA","5805":"lowIncomeB","5806":"lowIncomeB","5807":"lowIncomeA","5808":"lowIncomeB","5809":"lowIncomeA","5810":"lowIncomeB","5811":"lowIncomeA","5812":"lowIncomeB","5813":"lowIncomeA","5814":"lowIncomeA","5815":"lowIncomeB","5816":"lowIncomeA","5817":"lowIncomeA","5818":"lowIncomeA","5819":"lowIncomeB","5820":"lowIncomeA","5821":"lowIncomeA","5822":"lowIncomeB","5823":"lowIncomeA","5824":"lowIncomeB","5825":"lowIncomeA","5826":"lowIncomeB","5827":"lowIncomeB","5828":"lowIncomeA","5829":"lowIncomeB","5830":"lowIncomeB","5831":"lowIncomeA","5832":"lowIncomeA","5833":"lowIncomeB","5834":"midIncome","5835":"lowIncomeB","5836":"lowIncomeA","5837":"lowIncomeA","5838":"lowIncomeB","5839":"lowIncomeA","5840":"lowIncomeB","5841":"lowIncomeA","5842":"lowIncomeA","5843":"lowIncomeB","5844":"lowIncomeB","5845":"lowIncomeB","5846":"lowIncomeB","5847":"lowIncomeA","5848":"lowIncomeB","5849":"lowIncomeA","5850":"lowIncomeA","5851":"lowIncomeA","5852":"midIncome","5853":"lowIncomeB","5854":"lowIncomeB","5855":"midIncome","5856":"lowIncomeA","5857":"lowIncomeA","5858":"lowIncomeA","5859":"lowIncomeA","5860":"lowIncomeA","5861":"lowIncomeA","5862":"midIncome","5863":"lowIncomeA","5864":"lowIncomeB","5865":"lowIncomeA","5866":"lowIncomeB","5867":"lowIncomeA","5868":"lowIncomeB","5869":"lowIncomeA","5870":"lowIncomeB","5871":"lowIncomeA","5872":"lowIncomeB","5873":"lowIncomeA","5874":"lowIncomeA","5875":"lowIncomeA","5876":"lowIncomeB","5877":"lowIncomeA","5878":"lowIncomeB","5879":"lowIncomeB","5880":"lowIncomeB","5881":"lowIncomeA","5882":"lowIncomeA","5883":"lowIncomeA","5884":"lowIncomeB","5885":"lowIncomeB","5886":"lowIncomeB","5887":"lowIncomeB","5888":"midIncome","5889":"lowIncomeA","5890":"lowIncomeB","5891":"lowIncomeA","5892":"lowIncomeA","5893":"lowIncomeB","5894":"lowIncomeA","5895":"lowIncomeB","5896":"lowIncomeB","5897":"lowIncomeB","5898":"lowIncomeA","5899":"lowIncomeB","5900":"lowIncomeA","5901":"lowIncomeA","5902":"lowIncomeA","5903":"lowIncomeB","5904":"lowIncomeA","5905":"lowIncomeA","5906":"lowIncomeB","5907":"lowIncomeA","5908":"lowIncomeA","5909":"lowIncomeA","5910":"lowIncomeB","5911":"lowIncomeB","5912":"lowIncomeA","5913":"lowIncomeA","5914":"lowIncomeA","5915":"lowIncomeA","5916":"lowIncomeA","5917":"lowIncomeA","5918":"lowIncomeB","5919":"lowIncomeA","5920":"midIncome","5921":"lowIncomeA","5922":"lowIncomeA","5923":"lowIncomeB","5924":"lowIncomeA","5925":"midIncome","5926":"lowIncomeB","5927":"lowIncomeA","5928":"lowIncomeA","5929":"lowIncomeA","5930":"lowIncomeB","5931":"lowIncomeB","5932":"lowIncomeB","5933":"lowIncomeB","5934":"lowIncomeB","5935":"lowIncomeB","5936":"lowIncomeA","5937":"lowIncomeA","5938":"midIncome","5939":"lowIncomeA","5940":"lowIncomeA","5941":"lowIncomeB","5942":"lowIncomeA","5943":"lowIncomeB","5944":"lowIncomeA","5945":"lowIncomeB","5946":"lowIncomeA","5947":"lowIncomeB","5948":"lowIncomeB","5949":"lowIncomeA","5950":"lowIncomeA","5951":"lowIncomeA","5952":"lowIncomeA","5953":"lowIncomeB","5954":"lowIncomeB","5955":"midIncome","5956":"lowIncomeA","5957":"lowIncomeA","5958":"lowIncomeA","5959":"lowIncomeA","5960":"lowIncomeA","5961":"lowIncomeB","5962":"lowIncomeB","5963":"lowIncomeB","5964":"lowIncomeA","5965":"lowIncomeA","5966":"lowIncomeA","5967":"lowIncomeA","5968":"lowIncomeA","5969":"lowIncomeA","5970":"midIncome","5971":"lowIncomeA","5972":"lowIncomeA","5973":"lowIncomeA","5974":"lowIncomeA","5975":"lowIncomeA","5976":"lowIncomeB","5977":"lowIncomeA","5978":"lowIncomeB","5979":"lowIncomeB","5980":"lowIncomeB","5981":"lowIncomeA","5982":"lowIncomeB","5983":"lowIncomeA","5984":"lowIncomeA","5985":"lowIncomeA","5986":"lowIncomeB","5987":"lowIncomeA","5988":"lowIncomeA","5989":"lowIncomeA","5990":"lowIncomeB","5991":"lowIncomeB","5992":"lowIncomeB","5993":"lowIncomeB","5994":"lowIncomeA","5995":"lowIncomeB","5996":"lowIncomeA","5997":"lowIncomeA","5998":"lowIncomeB","5999":"lowIncomeA","6000":"lowIncomeA","6001":"lowIncomeA","6002":"lowIncomeB","6003":"lowIncomeA","6004":"lowIncomeB","6005":"lowIncomeB","6006":"lowIncomeA","6007":"lowIncomeA","6008":"lowIncomeB","6009":"lowIncomeB","6010":"lowIncomeA","6011":"lowIncomeA","6012":"lowIncomeA","6013":"midIncome","6014":"lowIncomeB","6015":"lowIncomeA","6016":"lowIncomeA","6017":"lowIncomeA","6018":"lowIncomeB","6019":"lowIncomeB","6020":"lowIncomeA","6021":"lowIncomeA","6022":"lowIncomeA","6023":"lowIncomeA","6024":"lowIncomeA","6025":"lowIncomeA","6026":"lowIncomeA","6027":"lowIncomeA","6028":"lowIncomeA","6029":"midIncome","6030":"lowIncomeB","6031":"lowIncomeA","6032":"midIncome","6033":"lowIncomeA","6034":"lowIncomeA","6035":"lowIncomeA","6036":"lowIncomeB","6037":"lowIncomeA","6038":"lowIncomeB","6039":"midIncome","6040":"lowIncomeA","6041":"lowIncomeA","6042":"lowIncomeB","6043":"lowIncomeB","6044":"lowIncomeA","6045":"lowIncomeB","6046":"lowIncomeB","6047":"lowIncomeB","6048":"lowIncomeB","6049":"lowIncomeB","6050":"lowIncomeB","6051":"lowIncomeB","6052":"lowIncomeB","6053":"lowIncomeA","6054":"midIncome","6055":"lowIncomeB","6056":"lowIncomeA","6057":"lowIncomeB","6058":"lowIncomeA","6059":"midIncome","6060":"lowIncomeA","6061":"lowIncomeA","6062":"lowIncomeB","6063":"lowIncomeA","6064":"lowIncomeB","6065":"lowIncomeA","6066":"lowIncomeB","6067":"lowIncomeB","6068":"lowIncomeA","6069":"lowIncomeA","6070":"lowIncomeA","6071":"lowIncomeB","6072":"lowIncomeA","6073":"lowIncomeB","6074":"lowIncomeB","6075":"lowIncomeB","6076":"lowIncomeB","6077":"lowIncomeB","6078":"lowIncomeA","6079":"lowIncomeB","6080":"lowIncomeA","6081":"lowIncomeA","6082":"lowIncomeB","6083":"lowIncomeB","6084":"lowIncomeA","6085":"lowIncomeA","6086":"lowIncomeB","6087":"lowIncomeA","6088":"lowIncomeA","6089":"lowIncomeA","6090":"lowIncomeA","6091":"midIncome","6092":"midIncome","6093":"midIncome","6094":"lowIncomeA","6095":"lowIncomeA","6096":"lowIncomeB","6097":"lowIncomeA","6098":"lowIncomeA","6099":"lowIncomeA","6100":"lowIncomeB","6101":"lowIncomeA","6102":"lowIncomeB","6103":"lowIncomeA","6104":"lowIncomeB","6105":"lowIncomeB","6106":"lowIncomeB","6107":"lowIncomeB","6108":"lowIncomeB","6109":"midIncome","6110":"lowIncomeB","6111":"lowIncomeA","6112":"lowIncomeB","6113":"lowIncomeA","6114":"lowIncomeA","6115":"lowIncomeB","6116":"lowIncomeB","6117":"lowIncomeB","6118":"lowIncomeB","6119":"lowIncomeA","6120":"lowIncomeB","6121":"lowIncomeB","6122":"lowIncomeB","6123":"lowIncomeB","6124":"lowIncomeA","6125":"lowIncomeB","6126":"lowIncomeA","6127":"lowIncomeA","6128":"lowIncomeB","6129":"lowIncomeA","6130":"lowIncomeA","6131":"lowIncomeB","6132":"lowIncomeA","6133":"lowIncomeA","6134":"lowIncomeA","6135":"lowIncomeB","6136":"lowIncomeB","6137":"lowIncomeB","6138":"lowIncomeA","6139":"lowIncomeB","6140":"lowIncomeB","6141":"lowIncomeA","6142":"lowIncomeA","6143":"midIncome","6144":"lowIncomeA","6145":"lowIncomeB","6146":"lowIncomeA","6147":"lowIncomeB","6148":"lowIncomeA","6149":"lowIncomeB","6150":"lowIncomeA","6151":"lowIncomeA","6152":"lowIncomeA","6153":"lowIncomeA","6154":"lowIncomeB","6155":"lowIncomeB","6156":"lowIncomeB","6157":"lowIncomeB","6158":"lowIncomeA","6159":"lowIncomeB","6160":"lowIncomeA","6161":"lowIncomeA","6162":"lowIncomeB","6163":"lowIncomeA","6164":"lowIncomeB","6165":"lowIncomeB","6166":"lowIncomeA","6167":"midIncome","6168":"lowIncomeA","6169":"lowIncomeA","6170":"lowIncomeA","6171":"lowIncomeA","6172":"lowIncomeA","6173":"lowIncomeA","6174":"lowIncomeA","6175":"lowIncomeB","6176":"lowIncomeB","6177":"midIncome","6178":"lowIncomeA","6179":"lowIncomeB","6180":"lowIncomeB","6181":"lowIncomeB","6182":"lowIncomeA","6183":"lowIncomeA","6184":"lowIncomeA","6185":"lowIncomeA","6186":"lowIncomeB","6187":"midIncome","6188":"lowIncomeB","6189":"midIncome","6190":"lowIncomeA","6191":"lowIncomeB","6192":"lowIncomeB","6193":"lowIncomeA","6194":"lowIncomeB","6195":"lowIncomeA","6196":"lowIncomeB","6197":"midIncome","6198":"midIncome","6199":"lowIncomeA","6200":"lowIncomeA","6201":"lowIncomeA","6202":"lowIncomeA","6203":"lowIncomeA","6204":"lowIncomeA","6205":"lowIncomeA","6206":"lowIncomeB","6207":"lowIncomeA","6208":"lowIncomeA","6209":"lowIncomeA","6210":"lowIncomeA","6211":"midIncome","6212":"lowIncomeA","6213":"lowIncomeB","6214":"lowIncomeA","6215":"lowIncomeA","6216":"lowIncomeB","6217":"lowIncomeB","6218":"lowIncomeA","6219":"midIncome","6220":"lowIncomeB","6221":"lowIncomeA","6222":"lowIncomeA","6223":"lowIncomeA","6224":"lowIncomeA","6225":"lowIncomeB","6226":"lowIncomeA","6227":"lowIncomeB","6228":"lowIncomeB","6229":"midIncome","6230":"lowIncomeB","6231":"lowIncomeB","6232":"midIncome","6233":"lowIncomeA","6234":"lowIncomeA","6235":"midIncome","6236":"lowIncomeA","6237":"lowIncomeB","6238":"lowIncomeA","6239":"midIncome","6240":"lowIncomeB","6241":"lowIncomeA","6242":"lowIncomeA","6243":"lowIncomeA","6244":"lowIncomeA","6245":"lowIncomeB","6246":"lowIncomeA","6247":"lowIncomeA","6248":"lowIncomeB","6249":"lowIncomeB","6250":"midIncome","6251":"lowIncomeA","6252":"lowIncomeA","6253":"lowIncomeB","6254":"lowIncomeA","6255":"lowIncomeB","6256":"lowIncomeA","6257":"lowIncomeA","6258":"lowIncomeB","6259":"lowIncomeB","6260":"lowIncomeB","6261":"lowIncomeB","6262":"lowIncomeB","6263":"lowIncomeB","6264":"lowIncomeA","6265":"midIncome","6266":"lowIncomeA","6267":"lowIncomeA","6268":"lowIncomeB","6269":"lowIncomeA","6270":"lowIncomeB","6271":"lowIncomeA","6272":"lowIncomeA","6273":"lowIncomeA","6274":"lowIncomeB","6275":"lowIncomeB","6276":"lowIncomeB","6277":"lowIncomeA","6278":"midIncome","6279":"lowIncomeA","6280":"lowIncomeA","6281":"lowIncomeB","6282":"midIncome","6283":"lowIncomeB","6284":"lowIncomeA","6285":"lowIncomeA","6286":"midIncome","6287":"lowIncomeB","6288":"lowIncomeA","6289":"midIncome","6290":"lowIncomeB","6291":"lowIncomeB","6292":"lowIncomeA","6293":"lowIncomeA","6294":"lowIncomeB","6295":"lowIncomeB","6296":"lowIncomeA","6297":"lowIncomeB","6298":"lowIncomeA","6299":"lowIncomeB","6300":"lowIncomeA","6301":"lowIncomeA","6302":"lowIncomeA","6303":"lowIncomeB","6304":"lowIncomeA","6305":"lowIncomeA","6306":"midIncome","6307":"lowIncomeA","6308":"lowIncomeA","6309":"lowIncomeA","6310":"lowIncomeA","6311":"midIncome","6312":"lowIncomeA","6313":"lowIncomeB","6314":"midIncome","6315":"lowIncomeB","6316":"midIncome","6317":"lowIncomeA","6318":"lowIncomeA","6319":"lowIncomeB","6320":"midIncome","6321":"midIncome","6322":"lowIncomeA","6323":"lowIncomeB","6324":"lowIncomeB","6325":"lowIncomeA","6326":"lowIncomeB","6327":"lowIncomeA","6328":"lowIncomeB","6329":"lowIncomeB","6330":"midIncome","6331":"lowIncomeA","6332":"lowIncomeA","6333":"lowIncomeB","6334":"lowIncomeB","6335":"midIncome","6336":"lowIncomeA","6337":"lowIncomeB","6338":"lowIncomeA","6339":"lowIncomeB","6340":"lowIncomeB","6341":"lowIncomeB","6342":"lowIncomeB","6343":"lowIncomeA","6344":"lowIncomeA","6345":"lowIncomeA","6346":"lowIncomeA","6347":"lowIncomeA","6348":"lowIncomeA","6349":"lowIncomeA","6350":"lowIncomeA","6351":"lowIncomeA","6352":"midIncome","6353":"lowIncomeB","6354":"lowIncomeB","6355":"lowIncomeB","6356":"lowIncomeB","6357":"lowIncomeB","6358":"lowIncomeB","6359":"midIncome","6360":"lowIncomeA","6361":"lowIncomeB","6362":"lowIncomeA","6363":"lowIncomeA","6364":"lowIncomeA","6365":"lowIncomeB","6366":"lowIncomeA","6367":"lowIncomeA","6368":"midIncome","6369":"lowIncomeA","6370":"lowIncomeB","6371":"midIncome","6372":"lowIncomeB","6373":"midIncome","6374":"lowIncomeB","6375":"lowIncomeA","6376":"lowIncomeB","6377":"lowIncomeA","6378":"midIncome","6379":"lowIncomeA","6380":"lowIncomeB","6381":"midIncome","6382":"lowIncomeB","6383":"midIncome","6384":"lowIncomeB","6385":"lowIncomeA","6386":"lowIncomeA","6387":"midIncome","6388":"lowIncomeB","6389":"lowIncomeA","6390":"lowIncomeA","6391":"lowIncomeB","6392":"lowIncomeB","6393":"lowIncomeA","6394":"lowIncomeB","6395":"lowIncomeB","6396":"lowIncomeA","6397":"lowIncomeB","6398":"lowIncomeA","6399":"lowIncomeB","6400":"lowIncomeA","6401":"lowIncomeA","6402":"lowIncomeA","6403":"lowIncomeA","6404":"lowIncomeA","6405":"lowIncomeA","6406":"lowIncomeB","6407":"lowIncomeA","6408":"lowIncomeA","6409":"lowIncomeA","6410":"lowIncomeA","6411":"lowIncomeA","6412":"lowIncomeA","6413":"lowIncomeA","6414":"lowIncomeB","6415":"lowIncomeA","6416":"lowIncomeB","6417":"lowIncomeB","6418":"lowIncomeA","6419":"midIncome","6420":"lowIncomeA","6421":"lowIncomeA","6422":"lowIncomeA","6423":"lowIncomeA","6424":"lowIncomeB","6425":"lowIncomeB","6426":"midIncome","6427":"lowIncomeA","6428":"lowIncomeB","6429":"lowIncomeB","6430":"lowIncomeA","6431":"lowIncomeA","6432":"lowIncomeB","6433":"lowIncomeB","6434":"lowIncomeA","6435":"lowIncomeB","6436":"lowIncomeB","6437":"lowIncomeA","6438":"lowIncomeA","6439":"midIncome","6440":"lowIncomeB","6441":"lowIncomeB","6442":"lowIncomeA","6443":"lowIncomeA","6444":"lowIncomeA","6445":"lowIncomeA","6446":"lowIncomeB","6447":"lowIncomeB","6448":"lowIncomeA","6449":"lowIncomeB","6450":"lowIncomeA","6451":"lowIncomeA","6452":"lowIncomeB","6453":"lowIncomeA","6454":"lowIncomeB","6455":"lowIncomeA","6456":"lowIncomeA","6457":"midIncome","6458":"lowIncomeB","6459":"lowIncomeA","6460":"lowIncomeB","6461":"lowIncomeA","6462":"lowIncomeA","6463":"lowIncomeB","6464":"lowIncomeA","6465":"lowIncomeB","6466":"lowIncomeB","6467":"lowIncomeA","6468":"lowIncomeB","6469":"lowIncomeA","6470":"lowIncomeB","6471":"midIncome","6472":"lowIncomeA","6473":"lowIncomeA","6474":"lowIncomeA","6475":"lowIncomeA","6476":"lowIncomeA","6477":"lowIncomeA","6478":"lowIncomeB","6479":"lowIncomeB","6480":"lowIncomeB","6481":"lowIncomeB","6482":"lowIncomeA","6483":"lowIncomeA","6484":"midIncome","6485":"lowIncomeB","6486":"lowIncomeB","6487":"lowIncomeB","6488":"lowIncomeA","6489":"lowIncomeA","6490":"lowIncomeA","6491":"lowIncomeA","6492":"lowIncomeB","6493":"lowIncomeA","6494":"lowIncomeA","6495":"lowIncomeA","6496":"lowIncomeA","6497":"lowIncomeB","6498":"lowIncomeB","6499":"lowIncomeB","6500":"lowIncomeA","6501":"lowIncomeA","6502":"lowIncomeB","6503":"lowIncomeB","6504":"lowIncomeB","6505":"lowIncomeA","6506":"lowIncomeA","6507":"midIncome","6508":"midIncome","6509":"lowIncomeA","6510":"lowIncomeB","6511":"lowIncomeB","6512":"lowIncomeA","6513":"lowIncomeB","6514":"lowIncomeA","6515":"lowIncomeB","6516":"lowIncomeA","6517":"lowIncomeB","6518":"lowIncomeB","6519":"lowIncomeB","6520":"lowIncomeA","6521":"lowIncomeB","6522":"lowIncomeA","6523":"lowIncomeB","6524":"lowIncomeB","6525":"lowIncomeA","6526":"midIncome","6527":"lowIncomeA","6528":"lowIncomeB","6529":"lowIncomeA","6530":"lowIncomeA","6531":"lowIncomeA","6532":"lowIncomeA","6533":"lowIncomeA","6534":"lowIncomeA","6535":"midIncome","6536":"lowIncomeA","6537":"lowIncomeB","6538":"lowIncomeA","6539":"lowIncomeA","6540":"lowIncomeB","6541":"midIncome","6542":"lowIncomeA","6543":"lowIncomeA","6544":"lowIncomeA","6545":"lowIncomeA","6546":"lowIncomeA","6547":"lowIncomeB","6548":"lowIncomeB","6549":"lowIncomeA","6550":"lowIncomeA","6551":"lowIncomeA","6552":"lowIncomeB","6553":"lowIncomeA","6554":"lowIncomeB","6555":"lowIncomeB","6556":"lowIncomeA","6557":"lowIncomeB","6558":"lowIncomeA","6559":"lowIncomeB","6560":"lowIncomeA","6561":"lowIncomeB","6562":"lowIncomeA","6563":"lowIncomeA","6564":"lowIncomeB","6565":"lowIncomeA","6566":"lowIncomeA","6567":"lowIncomeB","6568":"lowIncomeA","6569":"lowIncomeB","6570":"lowIncomeA","6571":"lowIncomeA","6572":"lowIncomeA","6573":"lowIncomeB","6574":"lowIncomeB","6575":"lowIncomeA","6576":"lowIncomeA","6577":"lowIncomeA","6578":"lowIncomeA","6579":"midIncome","6580":"lowIncomeA","6581":"midIncome","6582":"lowIncomeA","6583":"lowIncomeA","6584":"lowIncomeA","6585":"lowIncomeB","6586":"lowIncomeB","6587":"lowIncomeA","6588":"highIncome","6589":"highIncome","6590":"highIncome","6591":"midIncome","6592":"highIncome","6593":"highIncome","6594":"midIncome","6595":"highIncome","6596":"highIncome","6597":"midIncome","6598":"highIncome","6599":"highIncome","6600":"midIncome","6601":"midIncome","6602":"midIncome","6603":"highIncome","6604":"highIncome","6605":"highIncome","6606":"highIncome","6607":"highIncome","6608":"midIncome","6609":"highIncome","6610":"highIncome","6611":"highIncome","6612":"highIncome","6613":"highIncome","6614":"highIncome","6615":"highIncome","6616":"highIncome","6617":"highIncome","6618":"midIncome","6619":"highIncome","6620":"highIncome","6621":"highIncome","6622":"highIncome","6623":"highIncome","6624":"highIncome","6625":"highIncome","6626":"highIncome","6627":"highIncome","6628":"highIncome","6629":"highIncome","6630":"highIncome","6631":"highIncome","6632":"highIncome","6633":"midIncome","6634":"midIncome","6635":"highIncome","6636":"highIncome","6637":"midIncome","6638":"highIncome","6639":"highIncome","6640":"midIncome","6641":"highIncome","6642":"highIncome","6643":"highIncome","6644":"highIncome","6645":"highIncome","6646":"highIncome","6647":"highIncome","6648":"midIncome","6649":"highIncome","6650":"highIncome","6651":"highIncome","6652":"highIncome","6653":"highIncome","6654":"highIncome","6655":"highIncome","6656":"highIncome","6657":"highIncome","6658":"highIncome","6659":"highIncome","6660":"midIncome","6661":"highIncome","6662":"highIncome","6663":"highIncome","6664":"highIncome","6665":"midIncome","6666":"highIncome","6667":"highIncome","6668":"midIncome","6669":"highIncome","6670":"midIncome","6671":"highIncome","6672":"highIncome","6673":"highIncome","6674":"highIncome","6675":"midIncome","6676":"highIncome","6677":"highIncome","6678":"midIncome","6679":"highIncome","6680":"highIncome","6681":"highIncome","6682":"highIncome","6683":"highIncome","6684":"highIncome","6685":"midIncome","6686":"midIncome","6687":"highIncome","6688":"highIncome","6689":"midIncome","6690":"highIncome","6691":"highIncome","6692":"highIncome","6693":"highIncome","6694":"highIncome","6695":"highIncome","6696":"midIncome","6697":"midIncome","6698":"highIncome","6699":"highIncome","6700":"highIncome","6701":"highIncome","6702":"highIncome","6703":"highIncome","6704":"midIncome","6705":"highIncome","6706":"midIncome","6707":"highIncome","6708":"highIncome","6709":"midIncome","6710":"midIncome","6711":"midIncome","6712":"highIncome","6713":"highIncome","6714":"midIncome","6715":"highIncome","6716":"highIncome","6717":"highIncome","6718":"highIncome","6719":"highIncome","6720":"highIncome","6721":"highIncome","6722":"highIncome","6723":"highIncome","6724":"highIncome","6725":"highIncome","6726":"highIncome","6727":"highIncome","6728":"highIncome","6729":"highIncome","6730":"highIncome","6731":"highIncome","6732":"midIncome","6733":"highIncome","6734":"highIncome","6735":"highIncome","6736":"highIncome","6737":"highIncome","6738":"highIncome","6739":"highIncome","6740":"midIncome","6741":"highIncome","6742":"highIncome","6743":"highIncome","6744":"highIncome","6745":"highIncome","6746":"highIncome","6747":"midIncome","6748":"highIncome","6749":"highIncome","6750":"midIncome","6751":"highIncome","6752":"highIncome","6753":"highIncome","6754":"midIncome","6755":"highIncome","6756":"highIncome","6757":"highIncome","6758":"midIncome","6759":"highIncome","6760":"highIncome","6761":"midIncome","6762":"highIncome","6763":"highIncome","6764":"highIncome","6765":"highIncome","6766":"highIncome","6767":"highIncome","6768":"highIncome","6769":"highIncome","6770":"highIncome","6771":"highIncome","6772":"highIncome","6773":"highIncome","6774":"highIncome","6775":"highIncome","6776":"highIncome","6777":"highIncome","6778":"highIncome","6779":"highIncome","6780":"highIncome","6781":"highIncome","6782":"highIncome","6783":"highIncome","6784":"highIncome","6785":"midIncome","6786":"midIncome","6787":"highIncome","6788":"highIncome","6789":"highIncome","6790":"highIncome","6791":"midIncome","6792":"highIncome","6793":"highIncome","6794":"highIncome","6795":"highIncome","6796":"highIncome","6797":"highIncome","6798":"highIncome","6799":"highIncome","6800":"highIncome","6801":"highIncome","6802":"highIncome","6803":"highIncome","6804":"highIncome","6805":"highIncome","6806":"highIncome","6807":"highIncome","6808":"highIncome","6809":"highIncome","6810":"highIncome","6811":"highIncome","6812":"highIncome","6813":"highIncome","6814":"midIncome","6815":"highIncome","6816":"highIncome","6817":"midIncome","6818":"highIncome","6819":"highIncome","6820":"midIncome","6821":"highIncome","6822":"highIncome","6823":"highIncome","6824":"midIncome","6825":"highIncome","6826":"highIncome","6827":"midIncome","6828":"highIncome","6829":"highIncome","6830":"highIncome","6831":"highIncome","6832":"highIncome","6833":"midIncome","6834":"highIncome","6835":"highIncome","6836":"highIncome","6837":"midIncome","6838":"highIncome","6839":"highIncome","6840":"midIncome","6841":"highIncome","6842":"highIncome","6843":"highIncome","6844":"highIncome","6845":"highIncome","6846":"midIncome","6847":"highIncome","6848":"highIncome","6849":"highIncome","6850":"highIncome","6851":"midIncome","6852":"highIncome","6853":"highIncome","6854":"highIncome","6855":"highIncome","6856":"highIncome","6857":"highIncome","6858":"midIncome","6859":"highIncome","6860":"highIncome","6861":"highIncome","6862":"highIncome","6863":"highIncome","6864":"highIncome","6865":"highIncome","6866":"midIncome","6867":"midIncome","6868":"highIncome","6869":"highIncome","6870":"highIncome","6871":"midIncome","6872":"highIncome","6873":"highIncome","6874":"midIncome","6875":"highIncome","6876":"highIncome","6877":"highIncome","6878":"midIncome","6879":"highIncome","6880":"midIncome","6881":"highIncome","6882":"highIncome","6883":"midIncome","6884":"highIncome","6885":"highIncome","6886":"highIncome","6887":"highIncome","6888":"highIncome","6889":"highIncome","6890":"highIncome","6891":"midIncome","6892":"midIncome","6893":"highIncome","6894":"highIncome","6895":"highIncome","6896":"midIncome","6897":"highIncome","6898":"midIncome","6899":"midIncome","6900":"highIncome","6901":"midIncome","6902":"midIncome","6903":"highIncome","6904":"highIncome","6905":"highIncome","6906":"midIncome","6907":"highIncome","6908":"highIncome","6909":"midIncome","6910":"highIncome","6911":"midIncome","6912":"highIncome","6913":"highIncome","6914":"highIncome","6915":"highIncome","6916":"highIncome","6917":"highIncome","6918":"highIncome","6919":"highIncome","6920":"highIncome","6921":"highIncome","6922":"highIncome","6923":"highIncome","6924":"highIncome","6925":"highIncome","6926":"highIncome","6927":"highIncome","6928":"highIncome","6929":"highIncome","6930":"highIncome","6931":"highIncome","6932":"highIncome","6933":"highIncome","6934":"midIncome","6935":"highIncome","6936":"highIncome","6937":"midIncome","6938":"midIncome","6939":"highIncome","6940":"midIncome","6941":"highIncome","6942":"highIncome","6943":"highIncome","6944":"highIncome","6945":"highIncome","6946":"highIncome","6947":"highIncome","6948":"midIncome","6949":"highIncome","6950":"highIncome","6951":"highIncome","6952":"highIncome","6953":"highIncome","6954":"highIncome","6955":"highIncome","6956":"midIncome","6957":"highIncome","6958":"highIncome","6959":"highIncome","6960":"midIncome","6961":"highIncome","6962":"midIncome","6963":"highIncome","6964":"highIncome","6965":"highIncome","6966":"highIncome","6967":"midIncome","6968":"highIncome","6969":"highIncome","6970":"midIncome","6971":"highIncome","6972":"highIncome","6973":"highIncome","6974":"highIncome","6975":"highIncome","6976":"highIncome","6977":"highIncome","6978":"highIncome","6979":"highIncome","6980":"highIncome","6981":"highIncome","6982":"highIncome","6983":"highIncome","6984":"highIncome","6985":"highIncome","6986":"highIncome","6987":"highIncome","6988":"highIncome","6989":"highIncome","6990":"highIncome","6991":"highIncome","6992":"highIncome","6993":"highIncome","6994":"midIncome","6995":"highIncome","6996":"highIncome","6997":"highIncome","6998":"highIncome","6999":"midIncome","7000":"highIncome","7001":"highIncome","7002":"highIncome","7003":"highIncome","7004":"midIncome","7005":"highIncome","7006":"highIncome","7007":"highIncome","7008":"midIncome","7009":"highIncome","7010":"highIncome","7011":"highIncome","7012":"highIncome","7013":"highIncome","7014":"midIncome","7015":"highIncome","7016":"midIncome","7017":"highIncome","7018":"highIncome","7019":"midIncome","7020":"highIncome","7021":"highIncome","7022":"highIncome","7023":"highIncome","7024":"highIncome","7025":"highIncome","7026":"highIncome","7027":"highIncome","7028":"highIncome","7029":"highIncome","7030":"highIncome","7031":"midIncome","7032":"highIncome","7033":"highIncome","7034":"highIncome","7035":"highIncome","7036":"highIncome","7037":"highIncome","7038":"highIncome","7039":"midIncome","7040":"midIncome","7041":"highIncome","7042":"highIncome","7043":"midIncome","7044":"highIncome","7045":"highIncome","7046":"highIncome","7047":"midIncome","7048":"highIncome","7049":"highIncome","7050":"highIncome","7051":"highIncome","7052":"highIncome","7053":"midIncome","7054":"highIncome","7055":"midIncome","7056":"highIncome","7057":"midIncome","7058":"highIncome","7059":"highIncome","7060":"highIncome","7061":"highIncome","7062":"midIncome","7063":"highIncome","7064":"highIncome","7065":"highIncome","7066":"highIncome","7067":"highIncome","7068":"highIncome","7069":"highIncome","7070":"highIncome","7071":"highIncome","7072":"highIncome","7073":"highIncome","7074":"highIncome","7075":"midIncome","7076":"highIncome","7077":"highIncome","7078":"highIncome","7079":"midIncome","7080":"midIncome","7081":"highIncome","7082":"highIncome","7083":"highIncome","7084":"midIncome","7085":"highIncome","7086":"highIncome","7087":"midIncome","7088":"highIncome","7089":"highIncome","7090":"highIncome","7091":"highIncome","7092":"highIncome","7093":"highIncome","7094":"highIncome","7095":"highIncome","7096":"highIncome","7097":"midIncome","7098":"highIncome","7099":"highIncome","7100":"highIncome","7101":"highIncome","7102":"highIncome","7103":"highIncome","7104":"highIncome","7105":"highIncome","7106":"highIncome","7107":"highIncome","7108":"highIncome","7109":"highIncome","7110":"highIncome","7111":"highIncome","7112":"highIncome","7113":"midIncome","7114":"midIncome","7115":"highIncome","7116":"midIncome","7117":"highIncome","7118":"highIncome","7119":"midIncome","7120":"highIncome","7121":"highIncome","7122":"highIncome","7123":"highIncome","7124":"midIncome","7125":"highIncome","7126":"highIncome","7127":"highIncome","7128":"highIncome","7129":"highIncome","7130":"midIncome","7131":"highIncome","7132":"highIncome","7133":"highIncome","7134":"highIncome","7135":"highIncome","7136":"highIncome","7137":"highIncome","7138":"highIncome","7139":"highIncome","7140":"midIncome","7141":"highIncome","7142":"midIncome","7143":"midIncome","7144":"highIncome","7145":"highIncome","7146":"highIncome","7147":"highIncome","7148":"highIncome","7149":"highIncome","7150":"highIncome","7151":"highIncome","7152":"highIncome","7153":"highIncome","7154":"highIncome","7155":"highIncome","7156":"highIncome","7157":"midIncome","7158":"highIncome","7159":"highIncome","7160":"highIncome","7161":"midIncome","7162":"highIncome","7163":"midIncome","7164":"highIncome","7165":"midIncome","7166":"midIncome","7167":"midIncome","7168":"midIncome","7169":"highIncome","7170":"highIncome","7171":"highIncome","7172":"midIncome","7173":"highIncome","7174":"highIncome","7175":"highIncome","7176":"highIncome","7177":"midIncome","7178":"highIncome","7179":"highIncome","7180":"highIncome","7181":"highIncome","7182":"highIncome","7183":"highIncome","7184":"highIncome","7185":"midIncome","7186":"highIncome","7187":"highIncome","7188":"highIncome","7189":"midIncome","7190":"midIncome","7191":"midIncome","7192":"highIncome","7193":"highIncome","7194":"highIncome","7195":"highIncome","7196":"highIncome","7197":"highIncome","7198":"midIncome","7199":"midIncome","7200":"highIncome","7201":"highIncome","7202":"midIncome","7203":"highIncome","7204":"highIncome","7205":"highIncome","7206":"midIncome","7207":"highIncome","7208":"highIncome","7209":"highIncome","7210":"highIncome","7211":"highIncome","7212":"highIncome","7213":"highIncome","7214":"highIncome","7215":"midIncome","7216":"highIncome","7217":"highIncome","7218":"highIncome","7219":"highIncome","7220":"highIncome","7221":"highIncome","7222":"highIncome","7223":"highIncome","7224":"highIncome","7225":"highIncome","7226":"highIncome","7227":"highIncome","7228":"highIncome","7229":"highIncome","7230":"midIncome","7231":"midIncome","7232":"highIncome","7233":"highIncome","7234":"highIncome","7235":"highIncome","7236":"highIncome","7237":"midIncome","7238":"highIncome","7239":"highIncome","7240":"highIncome","7241":"highIncome","7242":"highIncome","7243":"highIncome","7244":"highIncome","7245":"highIncome","7246":"midIncome","7247":"highIncome","7248":"highIncome","7249":"highIncome","7250":"highIncome","7251":"highIncome","7252":"highIncome","7253":"highIncome","7254":"highIncome","7255":"highIncome","7256":"midIncome","7257":"midIncome","7258":"highIncome","7259":"highIncome","7260":"highIncome","7261":"highIncome","7262":"highIncome","7263":"highIncome","7264":"highIncome","7265":"highIncome","7266":"highIncome","7267":"highIncome","7268":"highIncome","7269":"highIncome","7270":"midIncome","7271":"midIncome","7272":"midIncome","7273":"highIncome","7274":"highIncome","7275":"midIncome","7276":"midIncome","7277":"midIncome","7278":"highIncome","7279":"highIncome","7280":"midIncome","7281":"highIncome","7282":"highIncome","7283":"highIncome","7284":"midIncome","7285":"highIncome","7286":"highIncome","7287":"midIncome","7288":"midIncome","7289":"highIncome","7290":"highIncome","7291":"highIncome","7292":"highIncome","7293":"highIncome","7294":"midIncome","7295":"midIncome","7296":"highIncome","7297":"highIncome","7298":"midIncome","7299":"highIncome","7300":"highIncome","7301":"highIncome","7302":"highIncome","7303":"highIncome","7304":"midIncome","7305":"highIncome","7306":"highIncome","7307":"highIncome","7308":"highIncome","7309":"highIncome","7310":"midIncome","7311":"highIncome","7312":"highIncome","7313":"highIncome","7314":"highIncome","7315":"highIncome","7316":"midIncome","7317":"highIncome","7318":"highIncome","7319":"midIncome","7320":"midIncome","7321":"highIncome","7322":"highIncome","7323":"highIncome","7324":"highIncome","7325":"highIncome","7326":"highIncome","7327":"highIncome","7328":"highIncome","7329":"highIncome","7330":"highIncome","7331":"highIncome","7332":"highIncome","7333":"highIncome","7334":"highIncome","7335":"highIncome","7336":"highIncome","7337":"highIncome","7338":"highIncome","7339":"midIncome","7340":"highIncome","7341":"midIncome","7342":"midIncome","7343":"highIncome","7344":"highIncome","7345":"highIncome","7346":"midIncome","7347":"highIncome","7348":"highIncome","7349":"highIncome","7350":"highIncome","7351":"midIncome","7352":"midIncome","7353":"midIncome","7354":"midIncome","7355":"highIncome","7356":"highIncome","7357":"highIncome","7358":"highIncome","7359":"highIncome","7360":"highIncome","7361":"highIncome","7362":"highIncome","7363":"highIncome","7364":"highIncome","7365":"highIncome","7366":"midIncome","7367":"highIncome","7368":"highIncome","7369":"midIncome","7370":"highIncome","7371":"midIncome","7372":"highIncome","7373":"highIncome","7374":"highIncome","7375":"highIncome","7376":"midIncome","7377":"highIncome","7378":"highIncome","7379":"highIncome","7380":"highIncome","7381":"highIncome","7382":"highIncome","7383":"highIncome","7384":"midIncome","7385":"highIncome","7386":"highIncome","7387":"highIncome","7388":"highIncome","7389":"highIncome","7390":"highIncome","7391":"midIncome","7392":"midIncome","7393":"midIncome","7394":"highIncome","7395":"highIncome","7396":"highIncome","7397":"highIncome","7398":"highIncome","7399":"highIncome","7400":"highIncome","7401":"highIncome","7402":"highIncome","7403":"highIncome","7404":"highIncome","7405":"highIncome","7406":"midIncome","7407":"midIncome","7408":"highIncome","7409":"highIncome","7410":"midIncome","7411":"highIncome","7412":"highIncome","7413":"highIncome","7414":"midIncome","7415":"midIncome","7416":"highIncome","7417":"highIncome","7418":"highIncome","7419":"highIncome","7420":"highIncome","7421":"midIncome","7422":"highIncome","7423":"midIncome","7424":"highIncome","7425":"highIncome","7426":"highIncome","7427":"highIncome","7428":"highIncome","7429":"highIncome","7430":"highIncome","7431":"highIncome","7432":"highIncome","7433":"midIncome","7434":"highIncome","7435":"highIncome","7436":"midIncome","7437":"highIncome","7438":"midIncome","7439":"highIncome","7440":"highIncome","7441":"highIncome","7442":"highIncome","7443":"midIncome","7444":"midIncome","7445":"highIncome","7446":"highIncome","7447":"highIncome","7448":"highIncome","7449":"midIncome","7450":"highIncome","7451":"highIncome","7452":"highIncome","7453":"highIncome","7454":"highIncome","7455":"midIncome","7456":"midIncome","7457":"highIncome","7458":"midIncome","7459":"highIncome","7460":"highIncome","7461":"midIncome","7462":"midIncome","7463":"midIncome","7464":"highIncome","7465":"highIncome","7466":"highIncome","7467":"highIncome","7468":"highIncome","7469":"highIncome","7470":"highIncome","7471":"highIncome","7472":"highIncome","7473":"highIncome","7474":"highIncome","7475":"highIncome","7476":"highIncome","7477":"highIncome","7478":"highIncome","7479":"highIncome","7480":"highIncome","7481":"highIncome","7482":"highIncome","7483":"highIncome","7484":"highIncome","7485":"highIncome","7486":"highIncome","7487":"highIncome","7488":"highIncome","7489":"highIncome","7490":"highIncome","7491":"highIncome","7492":"highIncome","7493":"highIncome","7494":"highIncome","7495":"highIncome","7496":"midIncome","7497":"highIncome","7498":"highIncome","7499":"highIncome","7500":"highIncome","7501":"highIncome","7502":"highIncome","7503":"highIncome","7504":"highIncome","7505":"highIncome","7506":"highIncome","7507":"highIncome","7508":"highIncome","7509":"highIncome","7510":"highIncome","7511":"highIncome","7512":"highIncome","7513":"highIncome","7514":"highIncome","7515":"highIncome","7516":"highIncome","7517":"midIncome","7518":"highIncome","7519":"highIncome","7520":"highIncome","7521":"highIncome","7522":"highIncome","7523":"highIncome","7524":"highIncome","7525":"highIncome","7526":"midIncome","7527":"highIncome","7528":"highIncome","7529":"highIncome","7530":"highIncome","7531":"highIncome","7532":"highIncome","7533":"highIncome","7534":"highIncome","7535":"highIncome","7536":"midIncome","7537":"highIncome","7538":"highIncome","7539":"highIncome","7540":"highIncome","7541":"highIncome","7542":"midIncome","7543":"highIncome","7544":"highIncome","7545":"highIncome","7546":"highIncome","7547":"highIncome","7548":"highIncome","7549":"highIncome","7550":"highIncome","7551":"highIncome","7552":"midIncome","7553":"highIncome","7554":"highIncome","7555":"highIncome","7556":"highIncome","7557":"highIncome","7558":"highIncome","7559":"midIncome","7560":"highIncome","7561":"highIncome","7562":"midIncome","7563":"highIncome","7564":"midIncome","7565":"highIncome","7566":"highIncome","7567":"highIncome","7568":"highIncome","7569":"midIncome","7570":"highIncome","7571":"highIncome","7572":"highIncome","7573":"highIncome","7574":"highIncome","7575":"highIncome","7576":"midIncome","7577":"highIncome","7578":"highIncome","7579":"highIncome","7580":"highIncome","7581":"highIncome","7582":"midIncome","7583":"highIncome","7584":"midIncome","7585":"highIncome","7586":"highIncome","7587":"midIncome","7588":"highIncome","7589":"highIncome","7590":"highIncome","7591":"highIncome","7592":"highIncome","7593":"highIncome","7594":"highIncome","7595":"highIncome","7596":"highIncome","7597":"highIncome","7598":"highIncome","7599":"highIncome","7600":"midIncome","7601":"midIncome","7602":"highIncome","7603":"highIncome","7604":"highIncome","7605":"highIncome","7606":"highIncome","7607":"midIncome","7608":"highIncome","7609":"highIncome","7610":"highIncome","7611":"highIncome","7612":"highIncome","7613":"highIncome","7614":"highIncome","7615":"highIncome","7616":"highIncome","7617":"highIncome","7618":"highIncome","7619":"midIncome","7620":"highIncome","7621":"midIncome","7622":"highIncome","7623":"highIncome","7624":"highIncome","7625":"highIncome","7626":"highIncome","7627":"highIncome","7628":"midIncome","7629":"highIncome","7630":"highIncome","7631":"highIncome","7632":"highIncome","7633":"highIncome","7634":"midIncome","7635":"highIncome","7636":"midIncome","7637":"highIncome","7638":"highIncome","7639":"highIncome","7640":"midIncome","7641":"highIncome","7642":"midIncome","7643":"highIncome","7644":"highIncome","7645":"midIncome","7646":"highIncome","7647":"highIncome","7648":"midIncome","7649":"highIncome","7650":"highIncome","7651":"midIncome","7652":"highIncome","7653":"highIncome","7654":"highIncome","7655":"highIncome","7656":"highIncome","7657":"highIncome","7658":"highIncome","7659":"highIncome","7660":"highIncome","7661":"highIncome","7662":"highIncome","7663":"highIncome","7664":"highIncome","7665":"highIncome","7666":"highIncome","7667":"midIncome","7668":"highIncome","7669":"highIncome","7670":"highIncome","7671":"highIncome","7672":"highIncome","7673":"highIncome","7674":"highIncome","7675":"highIncome","7676":"midIncome","7677":"highIncome","7678":"highIncome","7679":"highIncome","7680":"highIncome","7681":"midIncome","7682":"highIncome","7683":"highIncome","7684":"highIncome","7685":"highIncome","7686":"highIncome","7687":"highIncome","7688":"highIncome","7689":"highIncome","7690":"highIncome","7691":"highIncome","7692":"midIncome","7693":"highIncome","7694":"highIncome","7695":"highIncome","7696":"highIncome","7697":"midIncome","7698":"midIncome","7699":"highIncome","7700":"highIncome","7701":"midIncome","7702":"highIncome","7703":"highIncome","7704":"highIncome","7705":"midIncome","7706":"midIncome","7707":"highIncome","7708":"midIncome","7709":"midIncome","7710":"highIncome","7711":"highIncome","7712":"highIncome","7713":"midIncome","7714":"highIncome","7715":"highIncome","7716":"midIncome","7717":"highIncome","7718":"midIncome","7719":"midIncome","7720":"highIncome","7721":"highIncome","7722":"highIncome","7723":"highIncome","7724":"highIncome","7725":"highIncome","7726":"midIncome","7727":"midIncome","7728":"midIncome","7729":"highIncome","7730":"highIncome","7731":"midIncome","7732":"highIncome","7733":"highIncome","7734":"highIncome","7735":"highIncome","7736":"midIncome","7737":"midIncome","7738":"highIncome","7739":"highIncome","7740":"midIncome","7741":"highIncome","7742":"highIncome","7743":"midIncome","7744":"highIncome","7745":"highIncome","7746":"midIncome","7747":"highIncome","7748":"highIncome","7749":"midIncome","7750":"midIncome","7751":"highIncome","7752":"highIncome","7753":"midIncome","7754":"highIncome","7755":"midIncome","7756":"highIncome","7757":"highIncome","7758":"highIncome","7759":"highIncome","7760":"highIncome","7761":"highIncome","7762":"highIncome","7763":"highIncome","7764":"midIncome","7765":"midIncome","7766":"highIncome","7767":"highIncome","7768":"highIncome","7769":"highIncome","7770":"highIncome","7771":"highIncome","7772":"highIncome","7773":"highIncome","7774":"highIncome","7775":"midIncome","7776":"highIncome","7777":"highIncome","7778":"highIncome","7779":"highIncome","7780":"highIncome","7781":"midIncome","7782":"highIncome","7783":"highIncome","7784":"midIncome","7785":"highIncome","7786":"midIncome","7787":"highIncome","7788":"highIncome","7789":"midIncome","7790":"highIncome","7791":"highIncome","7792":"highIncome","7793":"highIncome","7794":"highIncome","7795":"highIncome","7796":"highIncome","7797":"midIncome","7798":"midIncome","7799":"highIncome","7800":"midIncome","7801":"highIncome","7802":"highIncome","7803":"highIncome","7804":"midIncome","7805":"highIncome","7806":"highIncome","7807":"highIncome","7808":"highIncome","7809":"highIncome","7810":"midIncome","7811":"highIncome","7812":"highIncome","7813":"highIncome","7814":"midIncome","7815":"midIncome","7816":"highIncome","7817":"midIncome","7818":"highIncome","7819":"highIncome","7820":"highIncome","7821":"highIncome","7822":"highIncome","7823":"highIncome","7824":"highIncome","7825":"highIncome","7826":"highIncome","7827":"highIncome","7828":"highIncome","7829":"highIncome","7830":"highIncome","7831":"highIncome","7832":"highIncome","7833":"highIncome","7834":"highIncome","7835":"highIncome","7836":"highIncome","7837":"highIncome","7838":"midIncome","7839":"highIncome","7840":"highIncome","7841":"highIncome","7842":"highIncome","7843":"highIncome","7844":"highIncome","7845":"midIncome","7846":"midIncome","7847":"highIncome","7848":"highIncome","7849":"midIncome","7850":"highIncome","7851":"highIncome","7852":"highIncome","7853":"highIncome","7854":"highIncome","7855":"highIncome","7856":"highIncome","7857":"highIncome","7858":"highIncome","7859":"midIncome","7860":"highIncome","7861":"highIncome","7862":"highIncome","7863":"highIncome","7864":"highIncome","7865":"midIncome","7866":"highIncome","7867":"highIncome","7868":"highIncome","7869":"highIncome","7870":"highIncome","7871":"highIncome","7872":"highIncome","7873":"highIncome","7874":"highIncome","7875":"highIncome","7876":"midIncome","7877":"highIncome","7878":"highIncome","7879":"highIncome","7880":"highIncome","7881":"highIncome","7882":"highIncome","7883":"highIncome","7884":"highIncome","7885":"highIncome","7886":"midIncome","7887":"highIncome","7888":"highIncome","7889":"highIncome","7890":"highIncome","7891":"highIncome","7892":"highIncome","7893":"highIncome","7894":"midIncome","7895":"highIncome","7896":"highIncome","7897":"highIncome","7898":"midIncome","7899":"highIncome","7900":"highIncome","7901":"midIncome","7902":"highIncome","7903":"highIncome","7904":"highIncome","7905":"highIncome","7906":"highIncome","7907":"highIncome","7908":"midIncome","7909":"highIncome","7910":"highIncome","7911":"highIncome","7912":"midIncome","7913":"highIncome","7914":"highIncome","7915":"highIncome","7916":"highIncome","7917":"highIncome","7918":"highIncome","7919":"highIncome","7920":"highIncome","7921":"midIncome","7922":"highIncome","7923":"highIncome","7924":"highIncome","7925":"midIncome","7926":"highIncome","7927":"highIncome","7928":"highIncome","7929":"midIncome","7930":"highIncome","7931":"highIncome","7932":"highIncome","7933":"highIncome","7934":"highIncome","7935":"highIncome","7936":"highIncome","7937":"highIncome","7938":"midIncome","7939":"highIncome","7940":"midIncome","7941":"highIncome","7942":"highIncome","7943":"highIncome","7944":"highIncome","7945":"midIncome","7946":"highIncome","7947":"midIncome","7948":"highIncome","7949":"highIncome","7950":"highIncome","7951":"highIncome","7952":"highIncome","7953":"highIncome","7954":"highIncome","7955":"highIncome","7956":"highIncome","7957":"midIncome","7958":"highIncome","7959":"highIncome","7960":"highIncome","7961":"highIncome","7962":"highIncome","7963":"highIncome","7964":"highIncome","7965":"highIncome","7966":"highIncome","7967":"highIncome","7968":"highIncome","7969":"highIncome","7970":"highIncome","7971":"highIncome","7972":"highIncome","7973":"highIncome","7974":"highIncome","7975":"highIncome","7976":"midIncome","7977":"midIncome","7978":"midIncome","7979":"highIncome","7980":"midIncome","7981":"highIncome","7982":"highIncome","7983":"highIncome","7984":"highIncome","7985":"highIncome","7986":"highIncome","7987":"highIncome","7988":"highIncome","7989":"highIncome","7990":"midIncome","7991":"midIncome","7992":"highIncome","7993":"highIncome","7994":"highIncome","7995":"highIncome","7996":"highIncome","7997":"highIncome","7998":"highIncome","7999":"highIncome","8000":"highIncome","8001":"highIncome","8002":"midIncome","8003":"highIncome","8004":"highIncome","8005":"highIncome","8006":"highIncome","8007":"midIncome","8008":"highIncome","8009":"highIncome","8010":"highIncome","8011":"highIncome","8012":"highIncome","8013":"highIncome","8014":"highIncome","8015":"highIncome","8016":"highIncome","8017":"highIncome","8018":"highIncome","8019":"highIncome","8020":"midIncome","8021":"highIncome","8022":"highIncome","8023":"highIncome","8024":"highIncome","8025":"lowIncomeA","8026":"lowIncomeA","8027":"midIncome","8028":"lowIncomeA","8029":"lowIncomeA","8030":"lowIncomeA","8031":"lowIncomeA","8032":"lowIncomeB","8033":"lowIncomeB","8034":"lowIncomeB","8035":"lowIncomeB","8036":"midIncome","8037":"lowIncomeA","8038":"lowIncomeB","8039":"lowIncomeB","8040":"lowIncomeA","8041":"lowIncomeB","8042":"lowIncomeA","8043":"lowIncomeA","8044":"lowIncomeA","8045":"lowIncomeA","8046":"lowIncomeB","8047":"lowIncomeB","8048":"lowIncomeB","8049":"lowIncomeB","8050":"lowIncomeB","8051":"lowIncomeA","8052":"lowIncomeA","8053":"lowIncomeA","8054":"lowIncomeA","8055":"lowIncomeB","8056":"lowIncomeA","8057":"lowIncomeA","8058":"lowIncomeB","8059":"lowIncomeA","8060":"lowIncomeA","8061":"lowIncomeA","8062":"lowIncomeB","8063":"lowIncomeB","8064":"lowIncomeB","8065":"lowIncomeA","8066":"lowIncomeA","8067":"lowIncomeA","8068":"lowIncomeA","8069":"lowIncomeA","8070":"midIncome","8071":"lowIncomeA","8072":"lowIncomeB","8073":"lowIncomeA","8074":"lowIncomeB","8075":"lowIncomeA","8076":"lowIncomeA","8077":"lowIncomeA","8078":"lowIncomeB","8079":"lowIncomeA","8080":"lowIncomeB","8081":"lowIncomeA","8082":"lowIncomeA","8083":"lowIncomeB","8084":"lowIncomeB","8085":"lowIncomeA","8086":"lowIncomeB","8087":"lowIncomeB","8088":"midIncome","8089":"lowIncomeB","8090":"lowIncomeA","8091":"lowIncomeB","8092":"lowIncomeB","8093":"lowIncomeB","8094":"midIncome","8095":"lowIncomeB","8096":"lowIncomeA","8097":"lowIncomeB","8098":"lowIncomeB","8099":"lowIncomeA","8100":"lowIncomeA","8101":"lowIncomeA","8102":"lowIncomeB","8103":"lowIncomeA","8104":"lowIncomeA","8105":"lowIncomeA","8106":"lowIncomeB","8107":"lowIncomeB","8108":"lowIncomeA","8109":"midIncome","8110":"lowIncomeB","8111":"lowIncomeB","8112":"lowIncomeA","8113":"midIncome","8114":"lowIncomeA","8115":"midIncome","8116":"lowIncomeA","8117":"lowIncomeB","8118":"lowIncomeA","8119":"lowIncomeA","8120":"lowIncomeA","8121":"lowIncomeA","8122":"lowIncomeA","8123":"midIncome","8124":"lowIncomeB","8125":"lowIncomeB","8126":"lowIncomeA","8127":"lowIncomeA","8128":"lowIncomeA","8129":"lowIncomeA","8130":"lowIncomeB","8131":"lowIncomeA","8132":"lowIncomeA","8133":"lowIncomeB","8134":"midIncome","8135":"lowIncomeA","8136":"midIncome","8137":"lowIncomeB","8138":"lowIncomeA","8139":"lowIncomeB","8140":"lowIncomeA","8141":"lowIncomeA","8142":"lowIncomeB","8143":"lowIncomeB","8144":"lowIncomeB","8145":"lowIncomeA","8146":"lowIncomeA","8147":"lowIncomeA","8148":"lowIncomeA","8149":"midIncome","8150":"midIncome","8151":"lowIncomeB","8152":"lowIncomeA","8153":"lowIncomeA","8154":"midIncome","8155":"lowIncomeB","8156":"midIncome","8157":"lowIncomeB","8158":"lowIncomeB","8159":"lowIncomeA","8160":"lowIncomeA","8161":"midIncome","8162":"lowIncomeB","8163":"lowIncomeB","8164":"lowIncomeB","8165":"lowIncomeA","8166":"lowIncomeB","8167":"lowIncomeA","8168":"lowIncomeB","8169":"lowIncomeA","8170":"lowIncomeB","8171":"lowIncomeB","8172":"lowIncomeB","8173":"lowIncomeA","8174":"lowIncomeB","8175":"lowIncomeA","8176":"lowIncomeA","8177":"lowIncomeA","8178":"lowIncomeA","8179":"midIncome","8180":"lowIncomeA","8181":"lowIncomeA","8182":"lowIncomeB","8183":"lowIncomeA","8184":"lowIncomeB","8185":"lowIncomeB","8186":"lowIncomeA","8187":"lowIncomeA","8188":"lowIncomeB","8189":"lowIncomeB","8190":"lowIncomeA","8191":"midIncome","8192":"lowIncomeA","8193":"midIncome","8194":"lowIncomeB","8195":"lowIncomeA","8196":"lowIncomeA","8197":"lowIncomeB","8198":"lowIncomeB","8199":"lowIncomeA","8200":"lowIncomeA","8201":"lowIncomeB","8202":"lowIncomeA","8203":"lowIncomeA","8204":"lowIncomeB","8205":"lowIncomeB","8206":"lowIncomeA","8207":"lowIncomeA","8208":"lowIncomeB","8209":"lowIncomeA","8210":"lowIncomeA","8211":"lowIncomeB","8212":"lowIncomeA","8213":"lowIncomeA","8214":"lowIncomeB","8215":"lowIncomeB","8216":"lowIncomeB","8217":"midIncome","8218":"lowIncomeB","8219":"midIncome","8220":"lowIncomeB","8221":"lowIncomeB","8222":"lowIncomeB","8223":"lowIncomeB","8224":"lowIncomeB","8225":"lowIncomeA","8226":"lowIncomeA","8227":"lowIncomeB","8228":"lowIncomeB","8229":"lowIncomeA","8230":"lowIncomeA","8231":"lowIncomeA","8232":"lowIncomeB","8233":"lowIncomeB","8234":"lowIncomeA","8235":"lowIncomeB","8236":"lowIncomeA","8237":"lowIncomeA","8238":"lowIncomeB","8239":"lowIncomeA","8240":"lowIncomeA","8241":"lowIncomeA","8242":"lowIncomeA","8243":"lowIncomeA","8244":"midIncome","8245":"midIncome","8246":"midIncome","8247":"midIncome","8248":"midIncome","8249":"lowIncomeB","8250":"midIncome","8251":"lowIncomeB","8252":"midIncome","8253":"midIncome","8254":"highIncome","8255":"midIncome","8256":"lowIncomeA","8257":"midIncome","8258":"midIncome","8259":"highIncome","8260":"midIncome","8261":"lowIncomeB","8262":"midIncome","8263":"midIncome","8264":"midIncome","8265":"lowIncomeB","8266":"lowIncomeB","8267":"midIncome","8268":"midIncome","8269":"lowIncomeA","8270":"highIncome","8271":"lowIncomeB","8272":"lowIncomeA","8273":"midIncome","8274":"midIncome","8275":"midIncome","8276":"midIncome","8277":"lowIncomeA","8278":"midIncome","8279":"midIncome","8280":"midIncome","8281":"midIncome","8282":"midIncome","8283":"midIncome","8284":"midIncome","8285":"highIncome","8286":"midIncome","8287":"midIncome","8288":"midIncome","8289":"midIncome","8290":"highIncome","8291":"midIncome","8292":"midIncome","8293":"midIncome","8294":"midIncome","8295":"midIncome","8296":"highIncome","8297":"midIncome","8298":"midIncome","8299":"midIncome","8300":"midIncome","8301":"midIncome","8302":"midIncome","8303":"midIncome","8304":"midIncome","8305":"midIncome","8306":"midIncome","8307":"midIncome","8308":"lowIncomeB","8309":"midIncome","8310":"midIncome","8311":"midIncome","8312":"lowIncomeA","8313":"midIncome","8314":"midIncome","8315":"midIncome","8316":"lowIncomeA","8317":"highIncome","8318":"lowIncomeA","8319":"midIncome","8320":"midIncome","8321":"midIncome","8322":"lowIncomeB","8323":"midIncome","8324":"midIncome","8325":"midIncome","8326":"midIncome","8327":"midIncome","8328":"midIncome","8329":"midIncome","8330":"midIncome","8331":"midIncome","8332":"midIncome","8333":"midIncome","8334":"lowIncomeA","8335":"lowIncomeA","8336":"lowIncomeA","8337":"midIncome","8338":"midIncome","8339":"lowIncomeA","8340":"lowIncomeA","8341":"midIncome","8342":"highIncome","8343":"midIncome","8344":"highIncome","8345":"highIncome","8346":"midIncome","8347":"midIncome","8348":"midIncome","8349":"lowIncomeB","8350":"midIncome","8351":"lowIncomeA","8352":"midIncome","8353":"midIncome","8354":"midIncome","8355":"midIncome","8356":"lowIncomeB","8357":"highIncome","8358":"midIncome","8359":"midIncome","8360":"lowIncomeB","8361":"highIncome","8362":"midIncome","8363":"midIncome","8364":"lowIncomeB","8365":"midIncome","8366":"midIncome","8367":"midIncome","8368":"midIncome","8369":"midIncome","8370":"midIncome","8371":"midIncome","8372":"midIncome","8373":"lowIncomeA","8374":"midIncome","8375":"highIncome","8376":"lowIncomeB","8377":"lowIncomeB","8378":"midIncome","8379":"lowIncomeB","8380":"highIncome","8381":"lowIncomeB","8382":"highIncome","8383":"lowIncomeA","8384":"midIncome","8385":"lowIncomeB","8386":"midIncome","8387":"midIncome","8388":"midIncome","8389":"midIncome","8390":"midIncome","8391":"midIncome","8392":"highIncome","8393":"midIncome","8394":"midIncome","8395":"midIncome","8396":"midIncome","8397":"midIncome","8398":"lowIncomeA","8399":"midIncome","8400":"lowIncomeA","8401":"midIncome","8402":"midIncome","8403":"midIncome","8404":"midIncome","8405":"midIncome","8406":"midIncome","8407":"midIncome","8408":"midIncome","8409":"midIncome","8410":"lowIncomeB","8411":"midIncome","8412":"midIncome","8413":"midIncome","8414":"midIncome","8415":"lowIncomeA","8416":"midIncome","8417":"midIncome","8418":"midIncome","8419":"midIncome","8420":"midIncome","8421":"midIncome","8422":"midIncome","8423":"highIncome","8424":"midIncome","8425":"midIncome","8426":"midIncome","8427":"midIncome","8428":"highIncome","8429":"midIncome","8430":"midIncome","8431":"midIncome","8432":"lowIncomeB","8433":"midIncome","8434":"midIncome","8435":"midIncome","8436":"lowIncomeA","8437":"midIncome","8438":"midIncome","8439":"midIncome","8440":"midIncome","8441":"midIncome","8442":"highIncome","8443":"lowIncomeA","8444":"midIncome","8445":"midIncome","8446":"midIncome","8447":"midIncome","8448":"lowIncomeA","8449":"midIncome","8450":"lowIncomeA","8451":"midIncome","8452":"midIncome","8453":"lowIncomeA","8454":"midIncome","8455":"midIncome","8456":"midIncome","8457":"midIncome","8458":"midIncome","8459":"midIncome","8460":"lowIncomeB","8461":"midIncome","8462":"midIncome","8463":"midIncome","8464":"highIncome","8465":"midIncome","8466":"midIncome","8467":"midIncome","8468":"midIncome","8469":"highIncome","8470":"midIncome","8471":"midIncome","8472":"lowIncomeB","8473":"lowIncomeA","8474":"lowIncomeB","8475":"midIncome","8476":"highIncome","8477":"midIncome","8478":"midIncome","8479":"midIncome","8480":"midIncome","8481":"midIncome","8482":"midIncome","8483":"highIncome","8484":"lowIncomeA","8485":"highIncome","8486":"midIncome","8487":"midIncome","8488":"midIncome","8489":"midIncome","8490":"midIncome","8491":"lowIncomeA","8492":"midIncome","8493":"midIncome","8494":"midIncome","8495":"midIncome","8496":"lowIncomeA","8497":"midIncome","8498":"lowIncomeB","8499":"midIncome","8500":"highIncome","8501":"midIncome","8502":"midIncome","8503":"midIncome","8504":"lowIncomeA","8505":"midIncome","8506":"lowIncomeA","8507":"midIncome","8508":"midIncome","8509":"midIncome","8510":"highIncome","8511":"lowIncomeA","8512":"midIncome","8513":"midIncome","8514":"highIncome","8515":"midIncome","8516":"lowIncomeA","8517":"midIncome","8518":"midIncome","8519":"midIncome","8520":"midIncome","8521":"midIncome","8522":"midIncome","8523":"midIncome","8524":"midIncome","8525":"midIncome","8526":"midIncome","8527":"midIncome","8528":"midIncome","8529":"midIncome","8530":"lowIncomeA","8531":"midIncome","8532":"midIncome","8533":"midIncome","8534":"midIncome","8535":"midIncome","8536":"midIncome","8537":"midIncome","8538":"midIncome","8539":"midIncome","8540":"midIncome","8541":"midIncome","8542":"lowIncomeA","8543":"lowIncomeB","8544":"midIncome","8545":"lowIncomeB","8546":"lowIncomeB","8547":"midIncome","8548":"midIncome","8549":"midIncome","8550":"lowIncomeB","8551":"midIncome","8552":"midIncome","8553":"midIncome","8554":"highIncome","8555":"lowIncomeA","8556":"midIncome","8557":"midIncome","8558":"midIncome","8559":"midIncome","8560":"midIncome","8561":"highIncome","8562":"midIncome","8563":"midIncome","8564":"highIncome","8565":"midIncome","8566":"midIncome","8567":"midIncome","8568":"midIncome","8569":"midIncome","8570":"lowIncomeB","8571":"midIncome","8572":"midIncome","8573":"lowIncomeA","8574":"lowIncomeA","8575":"midIncome","8576":"midIncome","8577":"midIncome","8578":"midIncome","8579":"midIncome","8580":"midIncome","8581":"midIncome","8582":"midIncome","8583":"midIncome","8584":"midIncome","8585":"midIncome","8586":"midIncome","8587":"midIncome","8588":"midIncome","8589":"midIncome","8590":"midIncome","8591":"highIncome","8592":"lowIncomeB","8593":"midIncome","8594":"midIncome","8595":"lowIncomeB","8596":"midIncome","8597":"midIncome","8598":"lowIncomeB","8599":"lowIncomeB","8600":"midIncome","8601":"midIncome","8602":"lowIncomeB","8603":"midIncome","8604":"midIncome","8605":"midIncome","8606":"highIncome","8607":"midIncome","8608":"midIncome","8609":"midIncome","8610":"highIncome","8611":"midIncome","8612":"lowIncomeA","8613":"midIncome","8614":"midIncome","8615":"midIncome","8616":"highIncome","8617":"highIncome","8618":"midIncome","8619":"midIncome","8620":"midIncome","8621":"midIncome","8622":"midIncome","8623":"midIncome","8624":"lowIncomeB","8625":"midIncome","8626":"midIncome","8627":"lowIncomeB","8628":"midIncome","8629":"midIncome","8630":"midIncome","8631":"midIncome","8632":"midIncome","8633":"midIncome","8634":"midIncome","8635":"highIncome","8636":"midIncome","8637":"midIncome","8638":"midIncome","8639":"highIncome","8640":"midIncome","8641":"midIncome","8642":"midIncome","8643":"midIncome","8644":"highIncome","8645":"midIncome","8646":"midIncome","8647":"lowIncomeB","8648":"midIncome","8649":"midIncome","8650":"midIncome","8651":"midIncome","8652":"midIncome","8653":"midIncome","8654":"lowIncomeA","8655":"midIncome","8656":"midIncome","8657":"highIncome","8658":"highIncome","8659":"highIncome","8660":"midIncome","8661":"midIncome","8662":"highIncome","8663":"lowIncomeB","8664":"midIncome","8665":"highIncome","8666":"midIncome","8667":"lowIncomeA","8668":"lowIncomeB","8669":"lowIncomeA","8670":"midIncome","8671":"midIncome","8672":"midIncome","8673":"lowIncomeB","8674":"lowIncomeA","8675":"highIncome","8676":"midIncome","8677":"midIncome","8678":"midIncome","8679":"lowIncomeA","8680":"midIncome","8681":"lowIncomeA","8682":"midIncome","8683":"lowIncomeB","8684":"midIncome","8685":"midIncome","8686":"midIncome","8687":"midIncome","8688":"highIncome","8689":"highIncome","8690":"midIncome","8691":"midIncome","8692":"midIncome","8693":"midIncome","8694":"midIncome","8695":"midIncome","8696":"lowIncomeA","8697":"midIncome","8698":"midIncome","8699":"midIncome","8700":"highIncome","8701":"midIncome","8702":"midIncome","8703":"midIncome","8704":"midIncome","8705":"lowIncomeA","8706":"midIncome","8707":"lowIncomeA","8708":"midIncome","8709":"midIncome","8710":"midIncome","8711":"midIncome","8712":"midIncome","8713":"lowIncomeA","8714":"midIncome","8715":"midIncome","8716":"midIncome","8717":"midIncome","8718":"midIncome","8719":"midIncome","8720":"lowIncomeB","8721":"lowIncomeA","8722":"lowIncomeB","8723":"highIncome","8724":"midIncome","8725":"midIncome","8726":"midIncome","8727":"highIncome","8728":"midIncome","8729":"midIncome","8730":"midIncome","8731":"midIncome","8732":"midIncome","8733":"midIncome","8734":"lowIncomeB","8735":"lowIncomeB","8736":"midIncome","8737":"midIncome","8738":"midIncome","8739":"lowIncomeA","8740":"midIncome","8741":"midIncome","8742":"midIncome","8743":"midIncome","8744":"highIncome","8745":"highIncome","8746":"midIncome","8747":"midIncome","8748":"midIncome","8749":"midIncome","8750":"midIncome","8751":"midIncome","8752":"midIncome","8753":"midIncome","8754":"midIncome","8755":"midIncome","8756":"lowIncomeA","8757":"midIncome","8758":"lowIncomeA","8759":"midIncome","8760":"midIncome","8761":"midIncome","8762":"midIncome","8763":"highIncome","8764":"lowIncomeB","8765":"midIncome","8766":"midIncome","8767":"midIncome","8768":"midIncome","8769":"midIncome","8770":"lowIncomeB","8771":"midIncome","8772":"midIncome","8773":"lowIncomeB","8774":"midIncome","8775":"midIncome","8776":"midIncome","8777":"highIncome","8778":"midIncome","8779":"midIncome","8780":"lowIncomeB","8781":"midIncome","8782":"lowIncomeA","8783":"lowIncomeB","8784":"midIncome","8785":"midIncome","8786":"midIncome","8787":"midIncome","8788":"midIncome","8789":"lowIncomeB","8790":"midIncome","8791":"midIncome","8792":"midIncome","8793":"lowIncomeB","8794":"midIncome","8795":"midIncome","8796":"midIncome","8797":"midIncome","8798":"midIncome","8799":"midIncome","8800":"lowIncomeA","8801":"midIncome","8802":"midIncome","8803":"midIncome","8804":"lowIncomeB","8805":"midIncome","8806":"highIncome","8807":"midIncome","8808":"lowIncomeB","8809":"lowIncomeB","8810":"highIncome","8811":"midIncome","8812":"midIncome","8813":"midIncome","8814":"midIncome","8815":"midIncome","8816":"midIncome","8817":"midIncome","8818":"midIncome","8819":"midIncome","8820":"lowIncomeB","8821":"lowIncomeA","8822":"midIncome","8823":"midIncome","8824":"lowIncomeB","8825":"lowIncomeB","8826":"lowIncomeB","8827":"midIncome","8828":"midIncome","8829":"midIncome","8830":"midIncome","8831":"lowIncomeB","8832":"midIncome","8833":"lowIncomeA","8834":"highIncome","8835":"midIncome","8836":"midIncome","8837":"midIncome","8838":"midIncome","8839":"highIncome","8840":"midIncome","8841":"midIncome","8842":"lowIncomeA","8843":"midIncome","8844":"lowIncomeB","8845":"midIncome","8846":"midIncome","8847":"midIncome","8848":"midIncome","8849":"midIncome","8850":"highIncome","8851":"lowIncomeA","8852":"midIncome","8853":"highIncome","8854":"highIncome","8855":"midIncome","8856":"midIncome","8857":"midIncome","8858":"lowIncomeB","8859":"midIncome","8860":"lowIncomeA","8861":"lowIncomeA","8862":"highIncome","8863":"midIncome","8864":"midIncome","8865":"midIncome","8866":"midIncome","8867":"highIncome","8868":"lowIncomeA","8869":"midIncome","8870":"midIncome","8871":"midIncome","8872":"midIncome","8873":"highIncome","8874":"highIncome","8875":"midIncome","8876":"midIncome","8877":"midIncome","8878":"lowIncomeA","8879":"midIncome","8880":"lowIncomeA","8881":"midIncome","8882":"highIncome","8883":"lowIncomeB","8884":"lowIncomeA","8885":"midIncome","8886":"midIncome","8887":"midIncome","8888":"lowIncomeA","8889":"midIncome","8890":"lowIncomeB","8891":"midIncome","8892":"midIncome","8893":"midIncome","8894":"midIncome","8895":"midIncome","8896":"midIncome","8897":"midIncome","8898":"highIncome","8899":"midIncome","8900":"midIncome","8901":"midIncome","8902":"midIncome","8903":"midIncome","8904":"midIncome","8905":"midIncome","8906":"midIncome","8907":"midIncome","8908":"midIncome","8909":"midIncome","8910":"midIncome","8911":"lowIncomeB","8912":"midIncome","8913":"midIncome","8914":"highIncome","8915":"midIncome","8916":"midIncome","8917":"midIncome","8918":"midIncome","8919":"midIncome","8920":"midIncome","8921":"lowIncomeB","8922":"lowIncomeA","8923":"midIncome","8924":"lowIncomeB","8925":"midIncome","8926":"midIncome","8927":"midIncome","8928":"midIncome","8929":"midIncome","8930":"highIncome","8931":"midIncome","8932":"highIncome","8933":"lowIncomeB","8934":"midIncome","8935":"midIncome","8936":"midIncome","8937":"midIncome","8938":"midIncome","8939":"lowIncomeA","8940":"lowIncomeB","8941":"midIncome","8942":"midIncome","8943":"midIncome","8944":"midIncome","8945":"lowIncomeB","8946":"highIncome","8947":"highIncome","8948":"highIncome","8949":"highIncome","8950":"highIncome","8951":"midIncome","8952":"highIncome","8953":"highIncome","8954":"highIncome","8955":"highIncome","8956":"highIncome","8957":"midIncome","8958":"highIncome","8959":"highIncome","8960":"midIncome","8961":"highIncome","8962":"highIncome","8963":"highIncome","8964":"highIncome","8965":"highIncome","8966":"highIncome","8967":"highIncome","8968":"highIncome","8969":"highIncome","8970":"highIncome","8971":"highIncome","8972":"highIncome","8973":"midIncome","8974":"highIncome","8975":"highIncome","8976":"highIncome","8977":"highIncome","8978":"highIncome","8979":"highIncome","8980":"highIncome","8981":"highIncome","8982":"highIncome","8983":"highIncome","8984":"highIncome","8985":"highIncome","8986":"highIncome","8987":"highIncome","8988":"highIncome","8989":"highIncome","8990":"highIncome","8991":"highIncome","8992":"highIncome","8993":"highIncome","8994":"highIncome","8995":"highIncome","8996":"highIncome","8997":"highIncome","8998":"highIncome","8999":"highIncome","9000":"highIncome","9001":"highIncome","9002":"highIncome","9003":"highIncome","9004":"midIncome","9005":"highIncome","9006":"highIncome","9007":"highIncome","9008":"highIncome","9009":"highIncome","9010":"midIncome","9011":"highIncome","9012":"highIncome","9013":"highIncome","9014":"midIncome","9015":"highIncome","9016":"highIncome","9017":"highIncome","9018":"midIncome","9019":"highIncome","9020":"highIncome","9021":"highIncome","9022":"highIncome","9023":"midIncome","9024":"midIncome","9025":"highIncome","9026":"midIncome","9027":"highIncome","9028":"highIncome","9029":"highIncome","9030":"highIncome","9031":"highIncome","9032":"highIncome","9033":"highIncome","9034":"highIncome","9035":"midIncome","9036":"midIncome","9037":"midIncome","9038":"midIncome","9039":"highIncome","9040":"highIncome","9041":"midIncome","9042":"highIncome","9043":"highIncome","9044":"highIncome","9045":"midIncome","9046":"midIncome","9047":"highIncome","9048":"highIncome","9049":"midIncome","9050":"highIncome","9051":"highIncome","9052":"highIncome","9053":"highIncome","9054":"highIncome","9055":"highIncome","9056":"highIncome","9057":"highIncome","9058":"highIncome","9059":"midIncome","9060":"highIncome","9061":"highIncome","9062":"highIncome","9063":"highIncome","9064":"midIncome","9065":"highIncome","9066":"highIncome","9067":"highIncome","9068":"highIncome","9069":"highIncome","9070":"midIncome","9071":"highIncome","9072":"highIncome","9073":"highIncome","9074":"midIncome","9075":"highIncome","9076":"highIncome","9077":"highIncome","9078":"highIncome","9079":"highIncome","9080":"highIncome","9081":"highIncome","9082":"highIncome","9083":"highIncome","9084":"midIncome","9085":"midIncome","9086":"highIncome","9087":"highIncome","9088":"highIncome","9089":"highIncome","9090":"highIncome","9091":"highIncome","9092":"highIncome","9093":"highIncome","9094":"highIncome","9095":"highIncome","9096":"midIncome","9097":"highIncome","9098":"highIncome","9099":"highIncome","9100":"midIncome","9101":"highIncome","9102":"highIncome","9103":"highIncome","9104":"highIncome","9105":"highIncome","9106":"midIncome","9107":"highIncome","9108":"midIncome","9109":"highIncome","9110":"highIncome","9111":"midIncome","9112":"midIncome","9113":"highIncome","9114":"highIncome","9115":"midIncome","9116":"highIncome","9117":"highIncome","9118":"highIncome","9119":"highIncome","9120":"highIncome","9121":"highIncome","9122":"highIncome","9123":"highIncome","9124":"highIncome","9125":"highIncome","9126":"highIncome","9127":"highIncome","9128":"highIncome","9129":"highIncome","9130":"highIncome","9131":"highIncome","9132":"highIncome","9133":"highIncome","9134":"highIncome","9135":"highIncome","9136":"highIncome","9137":"highIncome","9138":"highIncome","9139":"highIncome","9140":"highIncome","9141":"highIncome","9142":"highIncome","9143":"highIncome","9144":"highIncome","9145":"highIncome","9146":"midIncome","9147":"highIncome","9148":"highIncome","9149":"highIncome","9150":"midIncome","9151":"highIncome","9152":"highIncome","9153":"midIncome","9154":"highIncome","9155":"highIncome","9156":"highIncome","9157":"highIncome","9158":"midIncome","9159":"highIncome","9160":"highIncome","9161":"highIncome","9162":"highIncome","9163":"midIncome","9164":"highIncome","9165":"highIncome","9166":"highIncome","9167":"highIncome","9168":"midIncome","9169":"highIncome","9170":"midIncome","9171":"midIncome","9172":"midIncome","9173":"midIncome","9174":"midIncome","9175":"midIncome","9176":"highIncome","9177":"highIncome","9178":"highIncome","9179":"highIncome","9180":"highIncome","9181":"highIncome","9182":"highIncome","9183":"midIncome","9184":"highIncome","9185":"highIncome","9186":"highIncome","9187":"highIncome","9188":"highIncome","9189":"midIncome","9190":"highIncome","9191":"highIncome","9192":"highIncome","9193":"highIncome","9194":"highIncome","9195":"highIncome","9196":"highIncome","9197":"midIncome","9198":"highIncome","9199":"midIncome","9200":"midIncome","9201":"highIncome","9202":"highIncome","9203":"highIncome","9204":"midIncome","9205":"highIncome","9206":"highIncome","9207":"highIncome","9208":"highIncome","9209":"midIncome","9210":"highIncome","9211":"highIncome","9212":"midIncome","9213":"highIncome","9214":"highIncome","9215":"highIncome","9216":"highIncome","9217":"highIncome","9218":"highIncome","9219":"highIncome","9220":"midIncome","9221":"highIncome","9222":"highIncome","9223":"highIncome","9224":"midIncome","9225":"highIncome","9226":"highIncome","9227":"highIncome","9228":"highIncome","9229":"highIncome","9230":"highIncome","9231":"highIncome","9232":"highIncome","9233":"highIncome","9234":"highIncome","9235":"midIncome","9236":"highIncome","9237":"highIncome","9238":"highIncome","9239":"highIncome","9240":"midIncome","9241":"highIncome","9242":"highIncome","9243":"highIncome","9244":"midIncome","9245":"highIncome","9246":"highIncome","9247":"midIncome","9248":"highIncome","9249":"highIncome","9250":"midIncome","9251":"highIncome","9252":"highIncome","9253":"highIncome","9254":"midIncome","9255":"highIncome","9256":"highIncome","9257":"highIncome","9258":"highIncome","9259":"highIncome","9260":"highIncome","9261":"highIncome","9262":"highIncome","9263":"highIncome","9264":"highIncome","9265":"highIncome","9266":"midIncome","9267":"highIncome","9268":"highIncome","9269":"midIncome","9270":"highIncome","9271":"midIncome","9272":"midIncome","9273":"highIncome","9274":"highIncome","9275":"highIncome","9276":"midIncome","9277":"midIncome","9278":"highIncome","9279":"highIncome","9280":"highIncome","9281":"highIncome","9282":"highIncome","9283":"highIncome","9284":"highIncome","9285":"highIncome","9286":"highIncome","9287":"highIncome","9288":"highIncome","9289":"highIncome","9290":"highIncome","9291":"highIncome","9292":"highIncome","9293":"midIncome","9294":"highIncome","9295":"midIncome","9296":"highIncome","9297":"highIncome","9298":"highIncome","9299":"midIncome","9300":"midIncome","9301":"highIncome","9302":"highIncome","9303":"highIncome","9304":"highIncome","9305":"highIncome","9306":"highIncome","9307":"highIncome","9308":"highIncome","9309":"highIncome","9310":"highIncome","9311":"highIncome","9312":"highIncome","9313":"midIncome","9314":"highIncome","9315":"highIncome","9316":"highIncome","9317":"highIncome","9318":"highIncome","9319":"highIncome","9320":"highIncome","9321":"highIncome","9322":"highIncome","9323":"highIncome","9324":"highIncome","9325":"midIncome","9326":"highIncome","9327":"highIncome","9328":"highIncome","9329":"midIncome","9330":"highIncome","9331":"midIncome","9332":"highIncome","9333":"highIncome","9334":"highIncome","9335":"highIncome","9336":"highIncome","9337":"highIncome","9338":"highIncome","9339":"highIncome","9340":"highIncome","9341":"highIncome","9342":"midIncome","9343":"highIncome","9344":"highIncome","9345":"highIncome","9346":"highIncome","9347":"midIncome","9348":"highIncome","9349":"highIncome","9350":"highIncome","9351":"highIncome","9352":"highIncome","9353":"highIncome","9354":"highIncome","9355":"highIncome","9356":"midIncome","9357":"midIncome","9358":"highIncome","9359":"highIncome","9360":"highIncome","9361":"midIncome","9362":"highIncome","9363":"midIncome","9364":"highIncome","9365":"highIncome","9366":"midIncome","9367":"highIncome","9368":"highIncome","9369":"midIncome","9370":"highIncome","9371":"highIncome","9372":"highIncome","9373":"highIncome","9374":"midIncome","9375":"highIncome","9376":"highIncome","9377":"highIncome","9378":"highIncome","9379":"midIncome","9380":"highIncome","9381":"highIncome","9382":"highIncome","9383":"highIncome","9384":"highIncome","9385":"midIncome","9386":"highIncome","9387":"highIncome","9388":"midIncome","9389":"highIncome","9390":"midIncome","9391":"highIncome","9392":"highIncome","9393":"highIncome","9394":"highIncome","9395":"highIncome","9396":"highIncome","9397":"highIncome","9398":"highIncome","9399":"midIncome","9400":"midIncome","9401":"highIncome","9402":"highIncome","9403":"highIncome","9404":"highIncome","9405":"highIncome","9406":"highIncome","9407":"highIncome","9408":"highIncome","9409":"highIncome","9410":"midIncome","9411":"highIncome","9412":"highIncome","9413":"highIncome","9414":"highIncome","9415":"highIncome","9416":"highIncome","9417":"highIncome","9418":"midIncome","9419":"highIncome","9420":"highIncome","9421":"highIncome","9422":"highIncome","9423":"highIncome","9424":"highIncome","9425":"midIncome","9426":"highIncome","9427":"highIncome","9428":"midIncome","9429":"highIncome","9430":"highIncome","9431":"midIncome","9432":"highIncome","9433":"highIncome","9434":"midIncome","9435":"midIncome","9436":"highIncome","9437":"highIncome","9438":"highIncome","9439":"highIncome","9440":"highIncome","9441":"highIncome","9442":"midIncome","9443":"highIncome","9444":"highIncome","9445":"highIncome","9446":"highIncome","9447":"highIncome","9448":"highIncome","9449":"highIncome","9450":"highIncome","9451":"highIncome","9452":"highIncome","9453":"highIncome","9454":"highIncome","9455":"highIncome","9456":"midIncome","9457":"highIncome","9458":"highIncome","9459":"highIncome","9460":"highIncome","9461":"highIncome","9462":"highIncome","9463":"highIncome","9464":"midIncome","9465":"highIncome","9466":"highIncome","9467":"highIncome","9468":"midIncome","9469":"midIncome","9470":"highIncome","9471":"highIncome","9472":"highIncome","9473":"highIncome","9474":"highIncome","9475":"midIncome","9476":"highIncome","9477":"highIncome","9478":"midIncome","9479":"highIncome","9480":"midIncome","9481":"highIncome","9482":"highIncome","9483":"midIncome","9484":"highIncome","9485":"highIncome","9486":"highIncome","9487":"midIncome","9488":"highIncome","9489":"highIncome","9490":"highIncome","9491":"midIncome","9492":"midIncome","9493":"highIncome","9494":"highIncome","9495":"highIncome","9496":"highIncome","9497":"highIncome","9498":"highIncome","9499":"highIncome","9500":"midIncome","9501":"highIncome","9502":"midIncome","9503":"highIncome","9504":"highIncome","9505":"highIncome","9506":"midIncome","9507":"midIncome","9508":"highIncome","9509":"midIncome","9510":"highIncome","9511":"highIncome","9512":"midIncome","9513":"midIncome","9514":"highIncome","9515":"highIncome","9516":"highIncome","9517":"highIncome","9518":"highIncome","9519":"highIncome","9520":"midIncome","9521":"highIncome","9522":"highIncome","9523":"highIncome","9524":"highIncome","9525":"highIncome","9526":"highIncome","9527":"midIncome","9528":"highIncome","9529":"midIncome","9530":"highIncome","9531":"midIncome","9532":"highIncome","9533":"highIncome","9534":"highIncome","9535":"highIncome","9536":"highIncome","9537":"highIncome","9538":"highIncome","9539":"highIncome","9540":"highIncome","9541":"highIncome","9542":"highIncome","9543":"midIncome","9544":"highIncome","9545":"highIncome","9546":"highIncome","9547":"highIncome","9548":"highIncome","9549":"midIncome","9550":"highIncome","9551":"midIncome","9552":"midIncome","9553":"highIncome","9554":"highIncome","9555":"highIncome","9556":"highIncome","9557":"highIncome","9558":"highIncome","9559":"highIncome","9560":"highIncome","9561":"highIncome","9562":"highIncome","9563":"midIncome","9564":"highIncome","9565":"highIncome","9566":"highIncome","9567":"highIncome","9568":"midIncome","9569":"highIncome","9570":"highIncome","9571":"midIncome","9572":"highIncome","9573":"midIncome","9574":"highIncome","9575":"highIncome","9576":"highIncome","9577":"highIncome","9578":"highIncome","9579":"midIncome","9580":"highIncome","9581":"highIncome","9582":"highIncome","9583":"midIncome","9584":"highIncome","9585":"highIncome","9586":"highIncome","9587":"highIncome","9588":"midIncome","9589":"midIncome","9590":"midIncome","9591":"midIncome","9592":"highIncome","9593":"highIncome","9594":"highIncome","9595":"midIncome","9596":"highIncome","9597":"highIncome","9598":"highIncome","9599":"highIncome","9600":"midIncome","9601":"highIncome","9602":"midIncome","9603":"highIncome","9604":"midIncome","9605":"highIncome","9606":"highIncome","9607":"highIncome","9608":"highIncome","9609":"midIncome","9610":"highIncome","9611":"highIncome","9612":"highIncome","9613":"highIncome","9614":"highIncome","9615":"highIncome","9616":"highIncome","9617":"highIncome","9618":"highIncome","9619":"highIncome","9620":"midIncome","9621":"highIncome","9622":"highIncome","9623":"highIncome","9624":"highIncome","9625":"highIncome","9626":"highIncome","9627":"midIncome","9628":"highIncome","9629":"highIncome","9630":"highIncome","9631":"highIncome","9632":"midIncome","9633":"highIncome","9634":"highIncome","9635":"highIncome","9636":"highIncome","9637":"highIncome","9638":"midIncome","9639":"midIncome","9640":"highIncome","9641":"highIncome","9642":"highIncome","9643":"midIncome","9644":"highIncome","9645":"highIncome","9646":"highIncome","9647":"highIncome","9648":"highIncome","9649":"highIncome","9650":"highIncome","9651":"highIncome","9652":"highIncome","9653":"highIncome","9654":"highIncome","9655":"highIncome","9656":"highIncome","9657":"highIncome","9658":"highIncome","9659":"lowIncomeB","9660":"lowIncomeB","9661":"lowIncomeA","9662":"lowIncomeB","9663":"lowIncomeA","9664":"midIncome","9665":"lowIncomeB","9666":"lowIncomeA","9667":"lowIncomeA","9668":"lowIncomeB","9669":"lowIncomeA","9670":"lowIncomeA","9671":"lowIncomeA","9672":"midIncome","9673":"lowIncomeA","9674":"lowIncomeA","9675":"lowIncomeB","9676":"lowIncomeA","9677":"lowIncomeB","9678":"lowIncomeA","9679":"lowIncomeA","9680":"lowIncomeB","9681":"lowIncomeB","9682":"lowIncomeB","9683":"lowIncomeB","9684":"lowIncomeA","9685":"midIncome","9686":"lowIncomeB","9687":"lowIncomeA","9688":"lowIncomeA","9689":"midIncome","9690":"lowIncomeA","9691":"lowIncomeA","9692":"lowIncomeB","9693":"lowIncomeA","9694":"lowIncomeA","9695":"lowIncomeB","9696":"lowIncomeB","9697":"lowIncomeB","9698":"lowIncomeB","9699":"lowIncomeA","9700":"lowIncomeB","9701":"lowIncomeA","9702":"lowIncomeA","9703":"lowIncomeA","9704":"midIncome","9705":"lowIncomeA","9706":"lowIncomeB","9707":"lowIncomeA","9708":"lowIncomeA","9709":"midIncome","9710":"lowIncomeB","9711":"lowIncomeB","9712":"lowIncomeB","9713":"lowIncomeA","9714":"lowIncomeB","9715":"lowIncomeB","9716":"lowIncomeB","9717":"midIncome","9718":"lowIncomeA","9719":"lowIncomeA","9720":"lowIncomeA","9721":"lowIncomeB","9722":"lowIncomeA","9723":"lowIncomeB","9724":"lowIncomeA","9725":"midIncome","9726":"lowIncomeA","9727":"lowIncomeB","9728":"lowIncomeB","9729":"lowIncomeB","9730":"midIncome","9731":"lowIncomeA","9732":"lowIncomeA","9733":"lowIncomeB","9734":"lowIncomeA","9735":"midIncome","9736":"lowIncomeB","9737":"lowIncomeB","9738":"lowIncomeB","9739":"lowIncomeB","9740":"midIncome","9741":"lowIncomeB","9742":"lowIncomeB","9743":"lowIncomeA","9744":"lowIncomeA","9745":"lowIncomeB","9746":"lowIncomeB","9747":"lowIncomeA","9748":"lowIncomeB","9749":"lowIncomeA","9750":"lowIncomeB","9751":"lowIncomeA","9752":"lowIncomeB","9753":"midIncome","9754":"lowIncomeB","9755":"lowIncomeB","9756":"lowIncomeB","9757":"lowIncomeA","9758":"lowIncomeA","9759":"lowIncomeA","9760":"midIncome","9761":"lowIncomeA","9762":"midIncome","9763":"lowIncomeA","9764":"lowIncomeB","9765":"lowIncomeB","9766":"lowIncomeA","9767":"lowIncomeB","9768":"lowIncomeB","9769":"lowIncomeA","9770":"lowIncomeB","9771":"lowIncomeB","9772":"lowIncomeB","9773":"lowIncomeA","9774":"lowIncomeA","9775":"lowIncomeA","9776":"lowIncomeB","9777":"lowIncomeB","9778":"lowIncomeA","9779":"lowIncomeA","9780":"lowIncomeA","9781":"lowIncomeB","9782":"lowIncomeB","9783":"lowIncomeB","9784":"lowIncomeA","9785":"lowIncomeA","9786":"midIncome","9787":"lowIncomeB","9788":"midIncome","9789":"lowIncomeA","9790":"lowIncomeB","9791":"lowIncomeB","9792":"lowIncomeA","9793":"lowIncomeA","9794":"lowIncomeA","9795":"lowIncomeB","9796":"lowIncomeA","9797":"lowIncomeA","9798":"lowIncomeA","9799":"midIncome","9800":"lowIncomeA","9801":"lowIncomeB","9802":"midIncome","9803":"lowIncomeB","9804":"lowIncomeA","9805":"lowIncomeB","9806":"lowIncomeB","9807":"lowIncomeB","9808":"midIncome","9809":"lowIncomeA","9810":"lowIncomeA","9811":"lowIncomeA","9812":"midIncome","9813":"lowIncomeB","9814":"lowIncomeA","9815":"midIncome","9816":"lowIncomeB","9817":"lowIncomeB","9818":"lowIncomeA","9819":"lowIncomeA","9820":"lowIncomeB","9821":"lowIncomeB","9822":"lowIncomeB","9823":"lowIncomeB","9824":"lowIncomeB","9825":"lowIncomeA","9826":"lowIncomeA","9827":"lowIncomeB","9828":"lowIncomeB","9829":"lowIncomeB","9830":"lowIncomeB","9831":"lowIncomeA","9832":"lowIncomeB","9833":"lowIncomeB","9834":"midIncome","9835":"lowIncomeA","9836":"lowIncomeB","9837":"lowIncomeA","9838":"lowIncomeA","9839":"lowIncomeB","9840":"lowIncomeB","9841":"lowIncomeB","9842":"lowIncomeA","9843":"lowIncomeA","9844":"lowIncomeB","9845":"lowIncomeA","9846":"lowIncomeB","9847":"lowIncomeA","9848":"lowIncomeB","9849":"lowIncomeB","9850":"lowIncomeA","9851":"midIncome","9852":"lowIncomeA","9853":"lowIncomeA","9854":"midIncome","9855":"lowIncomeA","9856":"lowIncomeB","9857":"lowIncomeA","9858":"lowIncomeA","9859":"midIncome","9860":"lowIncomeB","9861":"lowIncomeB","9862":"lowIncomeA","9863":"lowIncomeB","9864":"lowIncomeA","9865":"midIncome","9866":"lowIncomeB","9867":"lowIncomeA","9868":"midIncome","9869":"lowIncomeB","9870":"lowIncomeA","9871":"lowIncomeA","9872":"lowIncomeB","9873":"midIncome","9874":"lowIncomeA","9875":"midIncome","9876":"lowIncomeA","9877":"lowIncomeB","9878":"lowIncomeA","9879":"lowIncomeA","9880":"midIncome","9881":"midIncome","9882":"lowIncomeA","9883":"lowIncomeA","9884":"lowIncomeB","9885":"lowIncomeB","9886":"lowIncomeB","9887":"lowIncomeA","9888":"midIncome","9889":"lowIncomeA","9890":"midIncome","9891":"lowIncomeB","9892":"lowIncomeA","9893":"lowIncomeA","9894":"lowIncomeA","9895":"lowIncomeB","9896":"lowIncomeB","9897":"midIncome","9898":"midIncome","9899":"lowIncomeA","9900":"lowIncomeB","9901":"lowIncomeA","9902":"lowIncomeB","9903":"midIncome","9904":"lowIncomeB","9905":"lowIncomeB","9906":"midIncome","9907":"lowIncomeA","9908":"lowIncomeA","9909":"lowIncomeA","9910":"lowIncomeA","9911":"lowIncomeA","9912":"lowIncomeA","9913":"lowIncomeA","9914":"lowIncomeA","9915":"midIncome","9916":"lowIncomeB","9917":"lowIncomeA","9918":"lowIncomeB","9919":"lowIncomeB","9920":"lowIncomeA","9921":"lowIncomeA","9922":"lowIncomeB","9923":"lowIncomeA","9924":"lowIncomeA","9925":"lowIncomeB","9926":"lowIncomeA","9927":"midIncome","9928":"lowIncomeB","9929":"lowIncomeB","9930":"lowIncomeB","9931":"lowIncomeA","9932":"lowIncomeA","9933":"midIncome","9934":"lowIncomeB","9935":"lowIncomeB","9936":"midIncome","9937":"lowIncomeA","9938":"lowIncomeB","9939":"lowIncomeA","9940":"lowIncomeB","9941":"lowIncomeA","9942":"lowIncomeB","9943":"lowIncomeA","9944":"lowIncomeB","9945":"lowIncomeA","9946":"lowIncomeB","9947":"lowIncomeB","9948":"lowIncomeB","9949":"midIncome","9950":"lowIncomeA","9951":"lowIncomeB","9952":"lowIncomeB","9953":"lowIncomeB","9954":"midIncome","9955":"lowIncomeA","9956":"lowIncomeB","9957":"lowIncomeB","9958":"midIncome","9959":"lowIncomeA","9960":"midIncome","9961":"lowIncomeA","9962":"lowIncomeA","9963":"midIncome","9964":"lowIncomeA","9965":"lowIncomeA","9966":"midIncome","9967":"lowIncomeA","9968":"lowIncomeB","9969":"lowIncomeB","9970":"lowIncomeA","9971":"lowIncomeA","9972":"lowIncomeA","9973":"lowIncomeB","9974":"lowIncomeA","9975":"midIncome","9976":"lowIncomeB","9977":"midIncome","9978":"lowIncomeA","9979":"lowIncomeB","9980":"lowIncomeA","9981":"lowIncomeA","9982":"midIncome","9983":"midIncome","9984":"midIncome","9985":"lowIncomeB","9986":"lowIncomeB","9987":"midIncome","9988":"lowIncomeB","9989":"lowIncomeB","9990":"midIncome","9991":"lowIncomeA","9992":"lowIncomeA","9993":"lowIncomeB","9994":"lowIncomeA","9995":"lowIncomeA","9996":"lowIncomeB","9997":"lowIncomeA","9998":"lowIncomeA","9999":"lowIncomeA","10000":"lowIncomeA","10001":"lowIncomeB","10002":"lowIncomeB","10003":"lowIncomeA","10004":"lowIncomeB","10005":"lowIncomeB","10006":"lowIncomeB","10007":"lowIncomeB","10008":"lowIncomeA","10009":"lowIncomeB","10010":"lowIncomeB","10011":"midIncome","10012":"lowIncomeA","10013":"lowIncomeB","10014":"lowIncomeA","10015":"lowIncomeA","10016":"lowIncomeB","10017":"lowIncomeA","10018":"lowIncomeB","10019":"lowIncomeA","10020":"lowIncomeA","10021":"lowIncomeA","10022":"lowIncomeB","10023":"lowIncomeA","10024":"lowIncomeA","10025":"lowIncomeA","10026":"lowIncomeA","10027":"lowIncomeA","10028":"lowIncomeA","10029":"midIncome","10030":"lowIncomeA","10031":"lowIncomeA","10032":"lowIncomeB","10033":"lowIncomeB","10034":"lowIncomeB","10035":"lowIncomeA","10036":"lowIncomeA","10037":"lowIncomeB","10038":"lowIncomeA","10039":"midIncome","10040":"lowIncomeB","10041":"lowIncomeA","10042":"lowIncomeA","10043":"lowIncomeA","10044":"midIncome","10045":"lowIncomeA","10046":"lowIncomeB","10047":"lowIncomeA","10048":"lowIncomeB","10049":"lowIncomeA","10050":"lowIncomeA","10051":"lowIncomeB","10052":"lowIncomeA","10053":"lowIncomeA","10054":"midIncome","10055":"lowIncomeA","10056":"lowIncomeB","10057":"midIncome","10058":"lowIncomeB","10059":"midIncome","10060":"lowIncomeA","10061":"lowIncomeB","10062":"lowIncomeA","10063":"lowIncomeB","10064":"lowIncomeB","10065":"lowIncomeA","10066":"lowIncomeA","10067":"lowIncomeB","10068":"lowIncomeB","10069":"lowIncomeA","10070":"lowIncomeA","10071":"midIncome","10072":"lowIncomeA","10073":"lowIncomeA","10074":"lowIncomeB","10075":"lowIncomeA","10076":"lowIncomeB","10077":"lowIncomeB","10078":"lowIncomeA","10079":"lowIncomeB","10080":"lowIncomeA","10081":"lowIncomeB","10082":"lowIncomeA","10083":"lowIncomeA","10084":"lowIncomeA","10085":"lowIncomeB","10086":"lowIncomeA","10087":"lowIncomeB","10088":"lowIncomeA","10089":"lowIncomeA","10090":"lowIncomeA","10091":"midIncome","10092":"lowIncomeA","10093":"lowIncomeA","10094":"lowIncomeA","10095":"lowIncomeB","10096":"lowIncomeA","10097":"lowIncomeA","10098":"midIncome","10099":"lowIncomeA","10100":"lowIncomeB","10101":"lowIncomeB","10102":"midIncome","10103":"lowIncomeA","10104":"lowIncomeB","10105":"lowIncomeB","10106":"lowIncomeA","10107":"lowIncomeA","10108":"lowIncomeB","10109":"lowIncomeA","10110":"lowIncomeA","10111":"lowIncomeA","10112":"lowIncomeA","10113":"lowIncomeB","10114":"lowIncomeB","10115":"midIncome","10116":"lowIncomeB","10117":"lowIncomeB","10118":"lowIncomeA","10119":"midIncome","10120":"lowIncomeB","10121":"lowIncomeA","10122":"lowIncomeB","10123":"lowIncomeB","10124":"midIncome","10125":"lowIncomeA","10126":"midIncome","10127":"lowIncomeB","10128":"lowIncomeA","10129":"lowIncomeA","10130":"lowIncomeA","10131":"lowIncomeA","10132":"lowIncomeB","10133":"lowIncomeB","10134":"midIncome","10135":"lowIncomeA","10136":"lowIncomeB","10137":"lowIncomeA","10138":"lowIncomeA","10139":"lowIncomeB","10140":"lowIncomeA","10141":"midIncome","10142":"lowIncomeA","10143":"lowIncomeA","10144":"lowIncomeB","10145":"lowIncomeA","10146":"lowIncomeA","10147":"lowIncomeA","10148":"midIncome","10149":"lowIncomeA","10150":"lowIncomeB","10151":"lowIncomeA","10152":"lowIncomeB","10153":"lowIncomeB","10154":"lowIncomeB","10155":"lowIncomeA","10156":"lowIncomeA","10157":"lowIncomeB","10158":"lowIncomeA","10159":"lowIncomeB","10160":"lowIncomeB","10161":"lowIncomeB","10162":"lowIncomeA","10163":"lowIncomeB","10164":"lowIncomeA","10165":"lowIncomeA","10166":"lowIncomeA","10167":"lowIncomeA","10168":"lowIncomeA","10169":"lowIncomeB","10170":"lowIncomeB","10171":"lowIncomeB","10172":"lowIncomeA","10173":"lowIncomeA","10174":"lowIncomeB","10175":"lowIncomeB","10176":"lowIncomeB","10177":"lowIncomeB","10178":"lowIncomeA","10179":"lowIncomeB","10180":"lowIncomeA","10181":"lowIncomeA","10182":"lowIncomeA","10183":"lowIncomeA","10184":"lowIncomeB","10185":"lowIncomeA","10186":"lowIncomeA","10187":"lowIncomeA","10188":"lowIncomeB","10189":"lowIncomeA","10190":"lowIncomeA","10191":"lowIncomeB","10192":"midIncome","10193":"lowIncomeA","10194":"lowIncomeB","10195":"lowIncomeB","10196":"lowIncomeA","10197":"lowIncomeB","10198":"lowIncomeA","10199":"lowIncomeA","10200":"midIncome","10201":"lowIncomeB","10202":"midIncome","10203":"lowIncomeB","10204":"lowIncomeB","10205":"lowIncomeB","10206":"lowIncomeA","10207":"lowIncomeA","10208":"lowIncomeA","10209":"lowIncomeA","10210":"lowIncomeA","10211":"lowIncomeB","10212":"lowIncomeA","10213":"lowIncomeA","10214":"lowIncomeA","10215":"lowIncomeB","10216":"lowIncomeB","10217":"lowIncomeA","10218":"lowIncomeA","10219":"lowIncomeB","10220":"lowIncomeB","10221":"lowIncomeB","10222":"lowIncomeA","10223":"lowIncomeA","10224":"lowIncomeB","10225":"lowIncomeB","10226":"lowIncomeA","10227":"lowIncomeB","10228":"lowIncomeB","10229":"lowIncomeA","10230":"lowIncomeA","10231":"lowIncomeA","10232":"lowIncomeA","10233":"lowIncomeA","10234":"lowIncomeA","10235":"lowIncomeA","10236":"lowIncomeB","10237":"lowIncomeA","10238":"lowIncomeA","10239":"lowIncomeA","10240":"lowIncomeB","10241":"lowIncomeA","10242":"lowIncomeA","10243":"lowIncomeB","10244":"lowIncomeB","10245":"lowIncomeB","10246":"midIncome","10247":"lowIncomeA","10248":"lowIncomeB","10249":"lowIncomeA","10250":"lowIncomeA","10251":"lowIncomeA","10252":"lowIncomeA","10253":"lowIncomeB","10254":"lowIncomeA","10255":"lowIncomeB","10256":"lowIncomeB","10257":"lowIncomeB","10258":"lowIncomeB","10259":"lowIncomeA","10260":"lowIncomeA","10261":"lowIncomeB","10262":"lowIncomeB","10263":"lowIncomeB","10264":"lowIncomeA","10265":"lowIncomeB","10266":"lowIncomeA","10267":"lowIncomeA","10268":"lowIncomeA","10269":"lowIncomeA","10270":"lowIncomeB","10271":"midIncome","10272":"lowIncomeB","10273":"midIncome","10274":"lowIncomeA","10275":"lowIncomeB","10276":"lowIncomeB","10277":"lowIncomeA","10278":"lowIncomeA","10279":"lowIncomeB","10280":"lowIncomeA","10281":"lowIncomeA","10282":"lowIncomeA","10283":"lowIncomeA","10284":"midIncome","10285":"midIncome","10286":"lowIncomeA","10287":"lowIncomeA","10288":"lowIncomeA","10289":"lowIncomeA","10290":"lowIncomeA","10291":"lowIncomeA","10292":"midIncome","10293":"lowIncomeA","10294":"lowIncomeB","10295":"lowIncomeA","10296":"lowIncomeB","10297":"lowIncomeB","10298":"lowIncomeA","10299":"lowIncomeB","10300":"lowIncomeA","10301":"lowIncomeB","10302":"lowIncomeB","10303":"lowIncomeA","10304":"lowIncomeB","10305":"lowIncomeA","10306":"lowIncomeA","10307":"lowIncomeA","10308":"lowIncomeA","10309":"lowIncomeB","10310":"lowIncomeB","10311":"lowIncomeB","10312":"midIncome","10313":"lowIncomeA","10314":"lowIncomeA","10315":"lowIncomeB","10316":"lowIncomeA","10317":"lowIncomeA","10318":"lowIncomeA","10319":"lowIncomeB","10320":"lowIncomeA","10321":"lowIncomeA","10322":"lowIncomeB","10323":"lowIncomeA","10324":"midIncome","10325":"lowIncomeA","10326":"lowIncomeB","10327":"lowIncomeB","10328":"lowIncomeA","10329":"midIncome","10330":"lowIncomeB","10331":"lowIncomeA","10332":"lowIncomeB","10333":"lowIncomeA","10334":"lowIncomeA","10335":"lowIncomeA","10336":"lowIncomeB","10337":"lowIncomeB","10338":"lowIncomeB","10339":"lowIncomeA","10340":"lowIncomeA","10341":"midIncome","10342":"lowIncomeA","10343":"lowIncomeB","10344":"lowIncomeA","10345":"lowIncomeA","10346":"lowIncomeA","10347":"lowIncomeA","10348":"lowIncomeA","10349":"lowIncomeA","10350":"midIncome","10351":"lowIncomeB","10352":"lowIncomeB","10353":"lowIncomeA","10354":"lowIncomeA","10355":"lowIncomeB","10356":"lowIncomeA","10357":"lowIncomeB","10358":"midIncome","10359":"lowIncomeB","10360":"lowIncomeA","10361":"lowIncomeB","10362":"lowIncomeA","10363":"midIncome","10364":"lowIncomeA","10365":"lowIncomeA","10366":"lowIncomeA","10367":"lowIncomeB","10368":"lowIncomeA","10369":"lowIncomeA","10370":"lowIncomeA","10371":"lowIncomeA","10372":"lowIncomeA","10373":"lowIncomeA","10374":"lowIncomeB","10375":"lowIncomeA","10376":"lowIncomeB","10377":"lowIncomeA","10378":"lowIncomeB","10379":"lowIncomeA","10380":"lowIncomeA","10381":"lowIncomeB","10382":"lowIncomeA","10383":"lowIncomeB","10384":"lowIncomeA","10385":"lowIncomeB","10386":"lowIncomeA","10387":"lowIncomeB","10388":"lowIncomeA","10389":"lowIncomeA","10390":"midIncome","10391":"lowIncomeA","10392":"lowIncomeB","10393":"lowIncomeA","10394":"lowIncomeA","10395":"lowIncomeA","10396":"lowIncomeB","10397":"lowIncomeB","10398":"lowIncomeB","10399":"lowIncomeA","10400":"midIncome","10401":"lowIncomeB","10402":"lowIncomeB","10403":"lowIncomeA","10404":"lowIncomeB","10405":"lowIncomeA","10406":"lowIncomeA","10407":"lowIncomeA","10408":"lowIncomeA","10409":"lowIncomeB","10410":"lowIncomeA","10411":"lowIncomeB","10412":"lowIncomeB","10413":"lowIncomeA","10414":"lowIncomeA","10415":"lowIncomeA","10416":"lowIncomeA","10417":"lowIncomeA","10418":"lowIncomeA","10419":"midIncome","10420":"lowIncomeA","10421":"lowIncomeA","10422":"lowIncomeA","10423":"midIncome","10424":"lowIncomeA","10425":"lowIncomeA","10426":"lowIncomeA","10427":"lowIncomeB","10428":"lowIncomeA","10429":"lowIncomeB","10430":"lowIncomeA","10431":"lowIncomeA","10432":"lowIncomeB","10433":"lowIncomeA","10434":"lowIncomeB","10435":"lowIncomeA","10436":"lowIncomeA","10437":"lowIncomeA","10438":"lowIncomeA","10439":"lowIncomeB","10440":"lowIncomeA","10441":"lowIncomeA","10442":"lowIncomeA","10443":"lowIncomeA","10444":"lowIncomeB","10445":"lowIncomeA","10446":"lowIncomeB","10447":"lowIncomeB","10448":"lowIncomeB","10449":"lowIncomeA","10450":"midIncome","10451":"lowIncomeB","10452":"midIncome","10453":"lowIncomeB","10454":"lowIncomeA","10455":"lowIncomeB","10456":"lowIncomeB","10457":"lowIncomeA","10458":"lowIncomeA","10459":"lowIncomeA","10460":"lowIncomeB","10461":"lowIncomeB","10462":"midIncome","10463":"lowIncomeA","10464":"lowIncomeA","10465":"lowIncomeA","10466":"midIncome","10467":"lowIncomeB","10468":"lowIncomeA","10469":"midIncome","10470":"lowIncomeA","10471":"lowIncomeB","10472":"lowIncomeA","10473":"lowIncomeA","10474":"lowIncomeA","10475":"lowIncomeA","10476":"lowIncomeA","10477":"lowIncomeA","10478":"lowIncomeA","10479":"lowIncomeA","10480":"lowIncomeA","10481":"lowIncomeA","10482":"lowIncomeB","10483":"lowIncomeA","10484":"midIncome","10485":"lowIncomeA","10486":"lowIncomeA","10487":"lowIncomeA","10488":"lowIncomeA","10489":"midIncome","10490":"lowIncomeB","10491":"midIncome","10492":"lowIncomeA","10493":"lowIncomeA","10494":"lowIncomeA","10495":"lowIncomeA","10496":"lowIncomeA","10497":"lowIncomeB","10498":"midIncome","10499":"midIncome","10500":"midIncome","10501":"midIncome","10502":"highIncome","10503":"midIncome","10504":"midIncome","10505":"midIncome","10506":"midIncome","10507":"midIncome","10508":"midIncome","10509":"midIncome","10510":"midIncome","10511":"midIncome","10512":"highIncome","10513":"midIncome","10514":"midIncome","10515":"midIncome","10516":"highIncome","10517":"lowIncomeB","10518":"midIncome","10519":"lowIncomeA","10520":"midIncome","10521":"midIncome","10522":"midIncome","10523":"midIncome","10524":"highIncome","10525":"highIncome","10526":"lowIncomeB","10527":"midIncome","10528":"highIncome","10529":"midIncome","10530":"midIncome","10531":"highIncome","10532":"midIncome","10533":"midIncome","10534":"midIncome","10535":"midIncome","10536":"midIncome","10537":"midIncome","10538":"midIncome","10539":"midIncome","10540":"midIncome","10541":"highIncome","10542":"highIncome","10543":"midIncome","10544":"midIncome","10545":"midIncome","10546":"midIncome","10547":"lowIncomeA","10548":"highIncome","10549":"lowIncomeB","10550":"midIncome","10551":"midIncome","10552":"midIncome","10553":"lowIncomeB","10554":"midIncome","10555":"lowIncomeB","10556":"highIncome","10557":"midIncome","10558":"midIncome","10559":"lowIncomeA","10560":"lowIncomeA","10561":"midIncome","10562":"midIncome","10563":"highIncome","10564":"midIncome","10565":"midIncome","10566":"midIncome","10567":"highIncome","10568":"highIncome","10569":"lowIncomeB","10570":"lowIncomeA","10571":"midIncome","10572":"lowIncomeA","10573":"midIncome","10574":"midIncome","10575":"midIncome","10576":"highIncome","10577":"midIncome","10578":"midIncome","10579":"midIncome","10580":"midIncome","10581":"midIncome","10582":"midIncome","10583":"highIncome","10584":"midIncome","10585":"midIncome","10586":"midIncome","10587":"midIncome","10588":"lowIncomeA","10589":"lowIncomeB","10590":"highIncome","10591":"midIncome","10592":"midIncome","10593":"lowIncomeA","10594":"midIncome","10595":"midIncome","10596":"lowIncomeB","10597":"highIncome","10598":"midIncome","10599":"lowIncomeB","10600":"lowIncomeA","10601":"midIncome","10602":"midIncome","10603":"highIncome","10604":"midIncome","10605":"midIncome","10606":"midIncome","10607":"lowIncomeA","10608":"midIncome","10609":"lowIncomeB","10610":"midIncome","10611":"highIncome","10612":"midIncome","10613":"midIncome","10614":"midIncome","10615":"midIncome","10616":"lowIncomeA","10617":"midIncome","10618":"midIncome","10619":"highIncome","10620":"midIncome","10621":"midIncome","10622":"midIncome","10623":"midIncome","10624":"midIncome","10625":"midIncome","10626":"midIncome","10627":"lowIncomeB","10628":"midIncome","10629":"midIncome","10630":"midIncome","10631":"midIncome","10632":"midIncome","10633":"midIncome","10634":"midIncome","10635":"midIncome","10636":"lowIncomeA","10637":"lowIncomeB","10638":"midIncome","10639":"midIncome","10640":"highIncome","10641":"midIncome","10642":"lowIncomeA","10643":"midIncome","10644":"midIncome","10645":"midIncome","10646":"midIncome","10647":"lowIncomeA","10648":"lowIncomeA","10649":"highIncome","10650":"midIncome","10651":"highIncome","10652":"midIncome","10653":"midIncome","10654":"midIncome","10655":"midIncome","10656":"midIncome","10657":"midIncome","10658":"midIncome","10659":"midIncome","10660":"midIncome","10661":"midIncome","10662":"highIncome","10663":"lowIncomeA","10664":"midIncome","10665":"highIncome","10666":"midIncome","10667":"midIncome","10668":"midIncome","10669":"lowIncomeA","10670":"highIncome","10671":"lowIncomeA","10672":"midIncome","10673":"midIncome","10674":"midIncome","10675":"midIncome","10676":"midIncome","10677":"midIncome","10678":"midIncome","10679":"midIncome","10680":"midIncome","10681":"lowIncomeA","10682":"lowIncomeB","10683":"midIncome","10684":"midIncome","10685":"midIncome","10686":"midIncome","10687":"midIncome","10688":"midIncome","10689":"midIncome","10690":"midIncome","10691":"midIncome","10692":"midIncome","10693":"lowIncomeB","10694":"midIncome","10695":"midIncome","10696":"highIncome","10697":"midIncome","10698":"midIncome","10699":"midIncome","10700":"midIncome","10701":"midIncome","10702":"midIncome","10703":"midIncome","10704":"midIncome","10705":"midIncome","10706":"lowIncomeB","10707":"midIncome","10708":"highIncome","10709":"midIncome","10710":"lowIncomeB","10711":"midIncome","10712":"midIncome","10713":"lowIncomeA","10714":"lowIncomeB","10715":"midIncome","10716":"midIncome","10717":"lowIncomeB","10718":"midIncome","10719":"midIncome","10720":"midIncome","10721":"midIncome","10722":"lowIncomeA","10723":"highIncome","10724":"midIncome","10725":"midIncome","10726":"midIncome","10727":"midIncome","10728":"lowIncomeA","10729":"midIncome","10730":"midIncome","10731":"midIncome","10732":"midIncome","10733":"midIncome","10734":"midIncome","10735":"highIncome","10736":"midIncome","10737":"midIncome","10738":"midIncome","10739":"midIncome","10740":"midIncome","10741":"midIncome","10742":"midIncome","10743":"midIncome","10744":"midIncome","10745":"midIncome","10746":"midIncome","10747":"highIncome","10748":"midIncome","10749":"midIncome","10750":"midIncome","10751":"midIncome","10752":"lowIncomeA","10753":"midIncome","10754":"midIncome","10755":"midIncome","10756":"midIncome","10757":"midIncome","10758":"midIncome","10759":"lowIncomeA","10760":"midIncome","10761":"midIncome","10762":"midIncome","10763":"midIncome","10764":"midIncome","10765":"midIncome","10766":"lowIncomeB","10767":"midIncome","10768":"midIncome","10769":"midIncome","10770":"midIncome","10771":"midIncome","10772":"midIncome","10773":"midIncome","10774":"lowIncomeB","10775":"highIncome","10776":"midIncome","10777":"midIncome","10778":"lowIncomeB","10779":"midIncome","10780":"midIncome","10781":"midIncome","10782":"midIncome","10783":"lowIncomeA","10784":"highIncome","10785":"midIncome","10786":"midIncome","10787":"highIncome","10788":"midIncome","10789":"midIncome","10790":"midIncome","10791":"highIncome","10792":"midIncome","10793":"midIncome","10794":"midIncome","10795":"lowIncomeB","10796":"midIncome","10797":"lowIncomeA","10798":"midIncome","10799":"midIncome","10800":"highIncome","10801":"midIncome","10802":"highIncome","10803":"lowIncomeA","10804":"midIncome","10805":"midIncome","10806":"midIncome","10807":"midIncome","10808":"midIncome","10809":"midIncome","10810":"midIncome","10811":"midIncome","10812":"midIncome","10813":"midIncome","10814":"midIncome","10815":"midIncome","10816":"midIncome","10817":"midIncome","10818":"lowIncomeB","10819":"midIncome","10820":"lowIncomeB","10821":"midIncome","10822":"midIncome","10823":"lowIncomeA","10824":"midIncome","10825":"midIncome","10826":"midIncome","10827":"midIncome","10828":"midIncome","10829":"midIncome","10830":"lowIncomeA","10831":"lowIncomeB","10832":"lowIncomeB","10833":"midIncome","10834":"midIncome","10835":"lowIncomeA","10836":"midIncome","10837":"lowIncomeA","10838":"midIncome","10839":"midIncome","10840":"midIncome","10841":"highIncome","10842":"midIncome","10843":"midIncome","10844":"lowIncomeA","10845":"midIncome","10846":"lowIncomeA","10847":"midIncome","10848":"midIncome","10849":"midIncome","10850":"midIncome","10851":"midIncome","10852":"midIncome","10853":"midIncome","10854":"midIncome","10855":"midIncome","10856":"lowIncomeB","10857":"midIncome","10858":"highIncome","10859":"lowIncomeA","10860":"highIncome","10861":"lowIncomeB","10862":"midIncome","10863":"highIncome","10864":"lowIncomeA","10865":"midIncome","10866":"midIncome","10867":"midIncome","10868":"midIncome","10869":"midIncome","10870":"midIncome","10871":"midIncome","10872":"lowIncomeA","10873":"midIncome","10874":"midIncome","10875":"lowIncomeB","10876":"lowIncomeB","10877":"midIncome","10878":"lowIncomeB","10879":"midIncome","10880":"midIncome","10881":"lowIncomeA","10882":"midIncome","10883":"midIncome","10884":"midIncome","10885":"midIncome","10886":"midIncome","10887":"midIncome","10888":"midIncome","10889":"midIncome","10890":"midIncome","10891":"midIncome","10892":"midIncome","10893":"midIncome","10894":"midIncome","10895":"lowIncomeA","10896":"midIncome","10897":"midIncome","10898":"midIncome","10899":"midIncome","10900":"lowIncomeB","10901":"lowIncomeB","10902":"midIncome","10903":"midIncome","10904":"highIncome","10905":"lowIncomeA","10906":"midIncome","10907":"midIncome","10908":"midIncome","10909":"midIncome","10910":"lowIncomeB","10911":"midIncome","10912":"midIncome","10913":"highIncome","10914":"highIncome","10915":"midIncome","10916":"midIncome","10917":"midIncome","10918":"midIncome","10919":"highIncome","10920":"midIncome","10921":"midIncome","10922":"lowIncomeA","10923":"midIncome","10924":"midIncome","10925":"midIncome","10926":"midIncome","10927":"lowIncomeA","10928":"midIncome","10929":"lowIncomeB","10930":"midIncome","10931":"midIncome","10932":"lowIncomeB","10933":"midIncome","10934":"midIncome","10935":"midIncome","10936":"midIncome","10937":"midIncome","10938":"lowIncomeB","10939":"midIncome","10940":"lowIncomeA","10941":"lowIncomeB","10942":"lowIncomeA","10943":"midIncome","10944":"midIncome","10945":"midIncome","10946":"midIncome","10947":"midIncome","10948":"midIncome","10949":"midIncome","10950":"midIncome","10951":"midIncome","10952":"highIncome","10953":"lowIncomeB","10954":"midIncome","10955":"midIncome","10956":"midIncome","10957":"highIncome","10958":"midIncome","10959":"midIncome","10960":"midIncome","10961":"lowIncomeA","10962":"midIncome","10963":"midIncome","10964":"highIncome","10965":"midIncome","10966":"midIncome","10967":"lowIncomeA","10968":"midIncome","10969":"midIncome","10970":"midIncome","10971":"lowIncomeB","10972":"midIncome","10973":"midIncome","10974":"midIncome","10975":"lowIncomeB","10976":"midIncome","10977":"midIncome","10978":"midIncome","10979":"midIncome","10980":"midIncome","10981":"midIncome","10982":"midIncome","10983":"lowIncomeA","10984":"highIncome","10985":"lowIncomeA","10986":"midIncome","10987":"midIncome","10988":"midIncome","10989":"midIncome","10990":"highIncome","10991":"midIncome","10992":"midIncome","10993":"highIncome","10994":"highIncome","10995":"midIncome","10996":"lowIncomeA"},"bldid":{"0":285,"1":169,"2":129,"3":56,"4":7,"5":14,"6":329,"7":221,"8":366,"9":134,"10":191,"11":69,"12":300,"13":251,"14":57,"15":377,"16":59,"17":33,"18":125,"19":159,"20":122,"21":276,"22":142,"23":285,"24":356,"25":249,"26":61,"27":172,"28":317,"29":367,"30":25,"31":333,"32":138,"33":109,"34":257,"35":65,"36":4,"37":201,"38":246,"39":369,"40":116,"41":191,"42":10,"43":236,"44":72,"45":110,"46":299,"47":16,"48":323,"49":290,"50":380,"51":311,"52":71,"53":52,"54":71,"55":368,"56":191,"57":335,"58":77,"59":164,"60":137,"61":358,"62":49,"63":148,"64":155,"65":272,"66":205,"67":99,"68":294,"69":145,"70":90,"71":328,"72":83,"73":287,"74":307,"75":311,"76":94,"77":286,"78":328,"79":171,"80":358,"81":178,"82":163,"83":221,"84":44,"85":36,"86":321,"87":210,"88":359,"89":88,"90":320,"91":148,"92":46,"93":238,"94":356,"95":7,"96":188,"97":58,"98":162,"99":138,"100":83,"101":375,"102":173,"103":38,"104":135,"105":321,"106":353,"107":167,"108":88,"109":213,"110":140,"111":82,"112":77,"113":262,"114":140,"115":299,"116":145,"117":86,"118":117,"119":343,"120":117,"121":4,"122":37,"123":179,"124":221,"125":198,"126":280,"127":239,"128":51,"129":333,"130":163,"131":256,"132":286,"133":280,"134":261,"135":186,"136":152,"137":19,"138":82,"139":159,"140":150,"141":46,"142":152,"143":270,"144":127,"145":309,"146":57,"147":272,"148":7,"149":4,"150":275,"151":82,"152":29,"153":293,"154":160,"155":195,"156":280,"157":205,"158":34,"159":385,"160":57,"161":129,"162":356,"163":349,"164":241,"165":110,"166":221,"167":336,"168":268,"169":153,"170":296,"171":261,"172":22,"173":133,"174":233,"175":157,"176":211,"177":117,"178":129,"179":368,"180":27,"181":125,"182":238,"183":361,"184":267,"185":109,"186":81,"187":327,"188":313,"189":112,"190":48,"191":92,"192":362,"193":192,"194":46,"195":82,"196":314,"197":320,"198":242,"199":22,"200":221,"201":344,"202":2,"203":256,"204":187,"205":150,"206":270,"207":16,"208":91,"209":113,"210":233,"211":347,"212":357,"213":163,"214":291,"215":10,"216":148,"217":42,"218":148,"219":257,"220":88,"221":167,"222":387,"223":265,"224":321,"225":141,"226":81,"227":370,"228":236,"229":263,"230":370,"231":81,"232":135,"233":148,"234":29,"235":285,"236":217,"237":311,"238":116,"239":316,"240":10,"241":112,"242":87,"243":343,"244":140,"245":57,"246":175,"247":242,"248":150,"249":200,"250":272,"251":96,"252":272,"253":287,"254":285,"255":160,"256":95,"257":171,"258":213,"259":268,"260":306,"261":273,"262":253,"263":326,"264":311,"265":10,"266":159,"267":370,"268":360,"269":145,"270":99,"271":71,"272":46,"273":119,"274":98,"275":49,"276":108,"277":4,"278":272,"279":230,"280":301,"281":55,"282":220,"283":328,"284":283,"285":175,"286":337,"287":159,"288":10,"289":155,"290":382,"291":44,"292":272,"293":129,"294":343,"295":80,"296":18,"297":385,"298":10,"299":54,"300":63,"301":274,"302":326,"303":377,"304":150,"305":158,"306":267,"307":168,"308":171,"309":286,"310":138,"311":257,"312":105,"313":8,"314":148,"315":318,"316":351,"317":99,"318":63,"319":282,"320":243,"321":155,"322":314,"323":219,"324":384,"325":348,"326":243,"327":96,"328":377,"329":70,"330":68,"331":113,"332":299,"333":184,"334":143,"335":54,"336":155,"337":148,"338":198,"339":355,"340":29,"341":160,"342":188,"343":299,"344":238,"345":285,"346":136,"347":364,"348":55,"349":286,"350":215,"351":71,"352":283,"353":241,"354":253,"355":274,"356":88,"357":4,"358":10,"359":147,"360":200,"361":270,"362":143,"363":382,"364":218,"365":136,"366":296,"367":365,"368":354,"369":113,"370":281,"371":377,"372":367,"373":230,"374":385,"375":138,"376":57,"377":253,"378":125,"379":302,"380":103,"381":82,"382":125,"383":94,"384":241,"385":127,"386":214,"387":367,"388":175,"389":224,"390":325,"391":314,"392":69,"393":368,"394":184,"395":360,"396":150,"397":2,"398":88,"399":10,"400":280,"401":160,"402":89,"403":240,"404":191,"405":371,"406":155,"407":351,"408":160,"409":10,"410":58,"411":26,"412":229,"413":313,"414":111,"415":348,"416":193,"417":289,"418":320,"419":81,"420":155,"421":245,"422":234,"423":284,"424":336,"425":295,"426":328,"427":22,"428":77,"429":186,"430":152,"431":71,"432":148,"433":328,"434":261,"435":168,"436":336,"437":150,"438":22,"439":278,"440":200,"441":275,"442":336,"443":284,"444":191,"445":385,"446":220,"447":285,"448":179,"449":253,"450":175,"451":284,"452":125,"453":182,"454":21,"455":23,"456":87,"457":257,"458":286,"459":140,"460":321,"461":131,"462":141,"463":189,"464":218,"465":270,"466":358,"467":105,"468":353,"469":293,"470":175,"471":329,"472":5,"473":219,"474":287,"475":229,"476":241,"477":249,"478":5,"479":176,"480":362,"481":83,"482":38,"483":213,"484":109,"485":60,"486":104,"487":256,"488":171,"489":368,"490":272,"491":212,"492":171,"493":148,"494":44,"495":163,"496":385,"497":129,"498":174,"499":284,"500":226,"501":57,"502":125,"503":292,"504":375,"505":268,"506":304,"507":270,"508":184,"509":190,"510":278,"511":160,"512":331,"513":360,"514":162,"515":52,"516":318,"517":175,"518":320,"519":66,"520":59,"521":233,"522":138,"523":270,"524":60,"525":243,"526":84,"527":121,"528":331,"529":303,"530":285,"531":34,"532":283,"533":159,"534":125,"535":343,"536":175,"537":317,"538":272,"539":163,"540":141,"541":380,"542":97,"543":19,"544":46,"545":239,"546":81,"547":209,"548":135,"549":11,"550":314,"551":18,"552":22,"553":40,"554":221,"555":119,"556":241,"557":253,"558":358,"559":49,"560":317,"561":88,"562":18,"563":227,"564":336,"565":385,"566":337,"567":386,"568":143,"569":387,"570":321,"571":298,"572":179,"573":153,"574":63,"575":91,"576":303,"577":278,"578":184,"579":59,"580":376,"581":317,"582":233,"583":159,"584":270,"585":291,"586":25,"587":141,"588":88,"589":156,"590":153,"591":39,"592":281,"593":231,"594":343,"595":88,"596":253,"597":22,"598":136,"599":150,"600":233,"601":293,"602":109,"603":272,"604":168,"605":53,"606":180,"607":278,"608":359,"609":117,"610":186,"611":143,"612":185,"613":56,"614":54,"615":375,"616":367,"617":26,"618":142,"619":150,"620":299,"621":57,"622":5,"623":152,"624":38,"625":287,"626":31,"627":95,"628":101,"629":321,"630":369,"631":43,"632":314,"633":314,"634":241,"635":136,"636":264,"637":291,"638":105,"639":102,"640":347,"641":323,"642":186,"643":104,"644":320,"645":328,"646":102,"647":4,"648":31,"649":23,"650":5,"651":4,"652":33,"653":89,"654":297,"655":301,"656":135,"657":36,"658":38,"659":387,"660":163,"661":356,"662":247,"663":214,"664":89,"665":239,"666":5,"667":160,"668":109,"669":334,"670":61,"671":113,"672":263,"673":198,"674":163,"675":163,"676":163,"677":1,"678":134,"679":135,"680":254,"681":328,"682":138,"683":336,"684":143,"685":351,"686":343,"687":181,"688":26,"689":153,"690":318,"691":142,"692":334,"693":201,"694":351,"695":314,"696":117,"697":82,"698":178,"699":344,"700":336,"701":323,"702":49,"703":81,"704":7,"705":274,"706":79,"707":253,"708":171,"709":289,"710":135,"711":23,"712":219,"713":267,"714":371,"715":257,"716":240,"717":296,"718":345,"719":382,"720":97,"721":254,"722":184,"723":258,"724":222,"725":106,"726":145,"727":176,"728":356,"729":298,"730":208,"731":293,"732":4,"733":269,"734":332,"735":282,"736":122,"737":143,"738":125,"739":188,"740":191,"741":292,"742":101,"743":91,"744":287,"745":336,"746":364,"747":368,"748":312,"749":325,"750":98,"751":11,"752":344,"753":237,"754":55,"755":145,"756":380,"757":272,"758":233,"759":163,"760":116,"761":208,"762":299,"763":275,"764":272,"765":56,"766":142,"767":152,"768":150,"769":175,"770":320,"771":336,"772":33,"773":37,"774":155,"775":261,"776":323,"777":261,"778":131,"779":88,"780":310,"781":108,"782":120,"783":384,"784":88,"785":218,"786":42,"787":37,"788":95,"789":15,"790":344,"791":171,"792":226,"793":249,"794":257,"795":275,"796":33,"797":193,"798":287,"799":356,"800":80,"801":82,"802":83,"803":261,"804":275,"805":312,"806":103,"807":64,"808":59,"809":46,"810":368,"811":37,"812":135,"813":12,"814":168,"815":88,"816":151,"817":24,"818":198,"819":150,"820":16,"821":160,"822":134,"823":254,"824":346,"825":285,"826":320,"827":27,"828":143,"829":102,"830":135,"831":346,"832":367,"833":213,"834":136,"835":369,"836":182,"837":283,"838":141,"839":382,"840":233,"841":221,"842":164,"843":311,"844":89,"845":368,"846":42,"847":369,"848":371,"849":155,"850":168,"851":383,"852":187,"853":137,"854":73,"855":155,"856":298,"857":253,"858":46,"859":58,"860":372,"861":77,"862":205,"863":197,"864":162,"865":281,"866":89,"867":343,"868":195,"869":57,"870":125,"871":38,"872":199,"873":27,"874":331,"875":186,"876":37,"877":257,"878":311,"879":189,"880":37,"881":257,"882":377,"883":293,"884":308,"885":341,"886":5,"887":321,"888":348,"889":90,"890":187,"891":358,"892":35,"893":55,"894":251,"895":129,"896":138,"897":280,"898":315,"899":321,"900":285,"901":213,"902":16,"903":296,"904":49,"905":365,"906":160,"907":355,"908":221,"909":302,"910":166,"911":135,"912":340,"913":71,"914":163,"915":127,"916":77,"917":125,"918":353,"919":8,"920":72,"921":200,"922":311,"923":129,"924":360,"925":184,"926":89,"927":299,"928":3,"929":251,"930":4,"931":171,"932":292,"933":206,"934":36,"935":356,"936":138,"937":148,"938":325,"939":180,"940":160,"941":376,"942":18,"943":71,"944":356,"945":311,"946":114,"947":107,"948":109,"949":135,"950":229,"951":374,"952":211,"953":112,"954":346,"955":349,"956":368,"957":368,"958":198,"959":353,"960":16,"961":241,"962":27,"963":103,"964":193,"965":88,"966":125,"967":112,"968":351,"969":36,"970":71,"971":245,"972":382,"973":36,"974":62,"975":96,"976":63,"977":205,"978":280,"979":19,"980":160,"981":7,"982":383,"983":203,"984":251,"985":52,"986":129,"987":143,"988":353,"989":94,"990":182,"991":62,"992":320,"993":241,"994":158,"995":264,"996":385,"997":202,"998":36,"999":40,"1000":97,"1001":127,"1002":71,"1003":346,"1004":126,"1005":52,"1006":299,"1007":236,"1008":148,"1009":177,"1010":148,"1011":159,"1012":75,"1013":257,"1014":71,"1015":358,"1016":61,"1017":274,"1018":216,"1019":282,"1020":88,"1021":77,"1022":84,"1023":52,"1024":104,"1025":163,"1026":287,"1027":108,"1028":158,"1029":293,"1030":360,"1031":200,"1032":320,"1033":19,"1034":213,"1035":299,"1036":44,"1037":223,"1038":188,"1039":287,"1040":59,"1041":375,"1042":116,"1043":46,"1044":200,"1045":179,"1046":299,"1047":320,"1048":320,"1049":71,"1050":52,"1051":277,"1052":138,"1053":209,"1054":44,"1055":117,"1056":272,"1057":131,"1058":265,"1059":293,"1060":296,"1061":71,"1062":216,"1063":262,"1064":52,"1065":10,"1066":306,"1067":207,"1068":208,"1069":46,"1070":301,"1071":116,"1072":359,"1073":87,"1074":217,"1075":141,"1076":314,"1077":58,"1078":1,"1079":16,"1080":116,"1081":52,"1082":344,"1083":160,"1084":220,"1085":168,"1086":116,"1087":200,"1088":321,"1089":285,"1090":7,"1091":69,"1092":195,"1093":143,"1094":142,"1095":241,"1096":351,"1097":228,"1098":259,"1099":10,"1100":335,"1101":152,"1102":46,"1103":83,"1104":107,"1105":285,"1106":86,"1107":172,"1108":175,"1109":156,"1110":367,"1111":347,"1112":92,"1113":371,"1114":197,"1115":90,"1116":141,"1117":222,"1118":243,"1119":117,"1120":212,"1121":295,"1122":96,"1123":310,"1124":204,"1125":175,"1126":353,"1127":258,"1128":200,"1129":329,"1130":138,"1131":385,"1132":175,"1133":173,"1134":152,"1135":82,"1136":336,"1137":285,"1138":313,"1139":385,"1140":102,"1141":92,"1142":82,"1143":334,"1144":160,"1145":109,"1146":221,"1147":21,"1148":135,"1149":334,"1150":227,"1151":377,"1152":370,"1153":188,"1154":118,"1155":65,"1156":238,"1157":92,"1158":229,"1159":152,"1160":195,"1161":20,"1162":195,"1163":191,"1164":144,"1165":375,"1166":125,"1167":341,"1168":130,"1169":166,"1170":49,"1171":267,"1172":27,"1173":351,"1174":331,"1175":321,"1176":198,"1177":16,"1178":360,"1179":163,"1180":237,"1181":86,"1182":278,"1183":368,"1184":104,"1185":71,"1186":240,"1187":380,"1188":311,"1189":83,"1190":57,"1191":336,"1192":321,"1193":271,"1194":129,"1195":345,"1196":59,"1197":359,"1198":257,"1199":364,"1200":132,"1201":16,"1202":228,"1203":129,"1204":104,"1205":115,"1206":130,"1207":218,"1208":195,"1209":148,"1210":336,"1211":104,"1212":93,"1213":221,"1214":270,"1215":140,"1216":302,"1217":296,"1218":148,"1219":345,"1220":370,"1221":348,"1222":188,"1223":367,"1224":96,"1225":49,"1226":111,"1227":196,"1228":52,"1229":234,"1230":30,"1231":22,"1232":77,"1233":141,"1234":250,"1235":387,"1236":213,"1237":270,"1238":293,"1239":292,"1240":95,"1241":175,"1242":261,"1243":173,"1244":88,"1245":163,"1246":158,"1247":91,"1248":59,"1249":289,"1250":336,"1251":196,"1252":27,"1253":317,"1254":17,"1255":197,"1256":351,"1257":80,"1258":198,"1259":270,"1260":336,"1261":194,"1262":46,"1263":82,"1264":264,"1265":342,"1266":243,"1267":359,"1268":52,"1269":242,"1270":61,"1271":257,"1272":353,"1273":77,"1274":225,"1275":52,"1276":167,"1277":321,"1278":79,"1279":275,"1280":242,"1281":117,"1282":46,"1283":82,"1284":217,"1285":143,"1286":91,"1287":334,"1288":326,"1289":251,"1290":302,"1291":256,"1292":356,"1293":3,"1294":152,"1295":221,"1296":218,"1297":52,"1298":292,"1299":99,"1300":299,"1301":135,"1302":162,"1303":9,"1304":351,"1305":138,"1306":336,"1307":311,"1308":112,"1309":25,"1310":229,"1311":97,"1312":243,"1313":59,"1314":343,"1315":197,"1316":27,"1317":124,"1318":59,"1319":283,"1320":138,"1321":385,"1322":343,"1323":143,"1324":14,"1325":247,"1326":368,"1327":368,"1328":386,"1329":262,"1330":187,"1331":172,"1332":251,"1333":240,"1334":77,"1335":343,"1336":11,"1337":211,"1338":135,"1339":112,"1340":178,"1341":22,"1342":175,"1343":155,"1344":229,"1345":358,"1346":299,"1347":205,"1348":348,"1349":107,"1350":285,"1351":160,"1352":287,"1353":102,"1354":235,"1355":27,"1356":71,"1357":334,"1358":52,"1359":77,"1360":264,"1361":116,"1362":110,"1363":328,"1364":358,"1365":158,"1366":370,"1367":379,"1368":55,"1369":267,"1370":54,"1371":303,"1372":88,"1373":265,"1374":163,"1375":321,"1376":326,"1377":88,"1378":49,"1379":77,"1380":166,"1381":160,"1382":359,"1383":320,"1384":117,"1385":156,"1386":242,"1387":16,"1388":174,"1389":112,"1390":284,"1391":330,"1392":116,"1393":59,"1394":323,"1395":284,"1396":131,"1397":320,"1398":30,"1399":216,"1400":47,"1401":22,"1402":119,"1403":299,"1404":22,"1405":93,"1406":171,"1407":74,"1408":46,"1409":247,"1410":209,"1411":382,"1412":150,"1413":6,"1414":136,"1415":292,"1416":360,"1417":160,"1418":362,"1419":251,"1420":233,"1421":368,"1422":158,"1423":160,"1424":65,"1425":117,"1426":284,"1427":38,"1428":257,"1429":45,"1430":205,"1431":167,"1432":244,"1433":200,"1434":241,"1435":82,"1436":299,"1437":252,"1438":274,"1439":228,"1440":37,"1441":138,"1442":290,"1443":164,"1444":191,"1445":131,"1446":42,"1447":135,"1448":30,"1449":71,"1450":77,"1451":213,"1452":245,"1453":285,"1454":1,"1455":197,"1456":82,"1457":70,"1458":221,"1459":239,"1460":270,"1461":346,"1462":333,"1463":89,"1464":135,"1465":117,"1466":271,"1467":125,"1468":141,"1469":41,"1470":270,"1471":204,"1472":385,"1473":226,"1474":116,"1475":293,"1476":185,"1477":171,"1478":147,"1479":200,"1480":309,"1481":46,"1482":287,"1483":175,"1484":356,"1485":317,"1486":253,"1487":383,"1488":207,"1489":71,"1490":255,"1491":129,"1492":210,"1493":31,"1494":183,"1495":141,"1496":79,"1497":5,"1498":359,"1499":189,"1500":311,"1501":356,"1502":188,"1503":276,"1504":285,"1505":216,"1506":18,"1507":257,"1508":78,"1509":148,"1510":221,"1511":226,"1512":326,"1513":178,"1514":51,"1515":270,"1516":5,"1517":71,"1518":59,"1519":278,"1520":171,"1521":29,"1522":320,"1523":176,"1524":314,"1525":330,"1526":160,"1527":271,"1528":368,"1529":142,"1530":155,"1531":150,"1532":195,"1533":253,"1534":379,"1535":22,"1536":283,"1537":16,"1538":14,"1539":4,"1540":349,"1541":67,"1542":16,"1543":358,"1544":123,"1545":257,"1546":317,"1547":181,"1548":88,"1549":213,"1550":72,"1551":339,"1552":270,"1553":280,"1554":193,"1555":111,"1556":37,"1557":73,"1558":320,"1559":158,"1560":311,"1561":145,"1562":155,"1563":77,"1564":65,"1565":169,"1566":135,"1567":242,"1568":321,"1569":37,"1570":150,"1571":283,"1572":289,"1573":15,"1574":195,"1575":216,"1576":321,"1577":314,"1578":291,"1579":285,"1580":274,"1581":14,"1582":312,"1583":319,"1584":272,"1585":208,"1586":203,"1587":324,"1588":77,"1589":76,"1590":201,"1591":299,"1592":283,"1593":158,"1594":337,"1595":225,"1596":93,"1597":37,"1598":56,"1599":148,"1600":89,"1601":46,"1602":219,"1603":270,"1604":307,"1605":82,"1606":348,"1607":292,"1608":84,"1609":63,"1610":99,"1611":134,"1612":158,"1613":216,"1614":326,"1615":175,"1616":138,"1617":340,"1618":238,"1619":18,"1620":200,"1621":203,"1622":96,"1623":57,"1624":89,"1625":185,"1626":215,"1627":7,"1628":107,"1629":385,"1630":163,"1631":152,"1632":213,"1633":88,"1634":181,"1635":148,"1636":95,"1637":196,"1638":95,"1639":202,"1640":283,"1641":261,"1642":323,"1643":301,"1644":191,"1645":242,"1646":82,"1647":234,"1648":369,"1649":155,"1650":7,"1651":151,"1652":155,"1653":270,"1654":22,"1655":168,"1656":88,"1657":377,"1658":9,"1659":320,"1660":145,"1661":76,"1662":144,"1663":184,"1664":278,"1665":311,"1666":42,"1667":232,"1668":266,"1669":89,"1670":251,"1671":285,"1672":242,"1673":217,"1674":250,"1675":257,"1676":89,"1677":84,"1678":347,"1679":52,"1680":168,"1681":217,"1682":367,"1683":249,"1684":233,"1685":141,"1686":243,"1687":52,"1688":14,"1689":253,"1690":383,"1691":148,"1692":314,"1693":224,"1694":241,"1695":329,"1696":280,"1697":150,"1698":138,"1699":95,"1700":287,"1701":52,"1702":336,"1703":360,"1704":10,"1705":341,"1706":152,"1707":147,"1708":352,"1709":368,"1710":174,"1711":136,"1712":166,"1713":328,"1714":174,"1715":46,"1716":200,"1717":28,"1718":109,"1719":157,"1720":46,"1721":320,"1722":19,"1723":296,"1724":18,"1725":231,"1726":358,"1727":289,"1728":229,"1729":280,"1730":21,"1731":304,"1732":51,"1733":382,"1734":8,"1735":44,"1736":163,"1737":40,"1738":302,"1739":303,"1740":334,"1741":358,"1742":195,"1743":213,"1744":119,"1745":206,"1746":28,"1747":323,"1748":186,"1749":19,"1750":275,"1751":196,"1752":219,"1753":287,"1754":179,"1755":150,"1756":311,"1757":344,"1758":88,"1759":245,"1760":356,"1761":299,"1762":204,"1763":46,"1764":186,"1765":123,"1766":46,"1767":301,"1768":176,"1769":149,"1770":159,"1771":298,"1772":268,"1773":293,"1774":317,"1775":204,"1776":320,"1777":7,"1778":367,"1779":301,"1780":119,"1781":268,"1782":340,"1783":340,"1784":96,"1785":97,"1786":57,"1787":249,"1788":114,"1789":135,"1790":200,"1791":62,"1792":142,"1793":11,"1794":239,"1795":228,"1796":380,"1797":359,"1798":42,"1799":116,"1800":162,"1801":33,"1802":325,"1803":167,"1804":345,"1805":10,"1806":387,"1807":26,"1808":125,"1809":195,"1810":72,"1811":55,"1812":218,"1813":285,"1814":328,"1815":127,"1816":18,"1817":269,"1818":343,"1819":227,"1820":163,"1821":138,"1822":164,"1823":88,"1824":57,"1825":121,"1826":155,"1827":63,"1828":18,"1829":115,"1830":270,"1831":195,"1832":18,"1833":245,"1834":287,"1835":241,"1836":36,"1837":131,"1838":283,"1839":79,"1840":160,"1841":16,"1842":19,"1843":336,"1844":119,"1845":245,"1846":134,"1847":119,"1848":271,"1849":115,"1850":107,"1851":348,"1852":270,"1853":125,"1854":91,"1855":29,"1856":250,"1857":44,"1858":339,"1859":71,"1860":364,"1861":65,"1862":272,"1863":36,"1864":300,"1865":253,"1866":186,"1867":325,"1868":239,"1869":350,"1870":125,"1871":160,"1872":153,"1873":200,"1874":293,"1875":243,"1876":211,"1877":18,"1878":151,"1879":130,"1880":71,"1881":136,"1882":333,"1883":117,"1884":31,"1885":242,"1886":371,"1887":175,"1888":300,"1889":119,"1890":138,"1891":227,"1892":195,"1893":317,"1894":191,"1895":320,"1896":358,"1897":382,"1898":16,"1899":7,"1900":368,"1901":52,"1902":37,"1903":156,"1904":375,"1905":342,"1906":79,"1907":119,"1908":96,"1909":59,"1910":200,"1911":96,"1912":365,"1913":110,"1914":143,"1915":163,"1916":384,"1917":355,"1918":261,"1919":125,"1920":328,"1921":160,"1922":368,"1923":86,"1924":233,"1925":282,"1926":317,"1927":280,"1928":92,"1929":245,"1930":25,"1931":374,"1932":274,"1933":168,"1934":139,"1935":59,"1936":241,"1937":106,"1938":150,"1939":195,"1940":233,"1941":127,"1942":242,"1943":27,"1944":104,"1945":368,"1946":199,"1947":348,"1948":248,"1949":348,"1950":326,"1951":148,"1952":245,"1953":16,"1954":83,"1955":279,"1956":348,"1957":161,"1958":233,"1959":287,"1960":152,"1961":258,"1962":299,"1963":10,"1964":119,"1965":256,"1966":36,"1967":53,"1968":191,"1969":228,"1970":136,"1971":311,"1972":154,"1973":160,"1974":225,"1975":376,"1976":212,"1977":213,"1978":177,"1979":233,"1980":323,"1981":63,"1982":125,"1983":159,"1984":360,"1985":170,"1986":285,"1987":71,"1988":201,"1989":71,"1990":113,"1991":95,"1992":302,"1993":299,"1994":334,"1995":308,"1996":374,"1997":283,"1998":16,"1999":230,"2000":136,"2001":150,"2002":202,"2003":97,"2004":150,"2005":163,"2006":320,"2007":351,"2008":191,"2009":112,"2010":182,"2011":137,"2012":84,"2013":205,"2014":39,"2015":84,"2016":88,"2017":37,"2018":289,"2019":153,"2020":285,"2021":1,"2022":137,"2023":267,"2024":317,"2025":52,"2026":18,"2027":110,"2028":112,"2029":258,"2030":138,"2031":302,"2032":136,"2033":359,"2034":196,"2035":158,"2036":18,"2037":95,"2038":304,"2039":5,"2040":221,"2041":253,"2042":107,"2043":37,"2044":136,"2045":299,"2046":359,"2047":59,"2048":128,"2049":83,"2050":377,"2051":229,"2052":145,"2053":358,"2054":341,"2055":330,"2056":129,"2057":251,"2058":384,"2059":171,"2060":46,"2061":96,"2062":82,"2063":91,"2064":184,"2065":323,"2066":234,"2067":314,"2068":261,"2069":259,"2070":167,"2071":216,"2072":46,"2073":221,"2074":311,"2075":28,"2076":317,"2077":175,"2078":139,"2079":358,"2080":370,"2081":63,"2082":307,"2083":387,"2084":383,"2085":198,"2086":135,"2087":76,"2088":114,"2089":211,"2090":56,"2091":56,"2092":83,"2093":174,"2094":358,"2095":314,"2096":336,"2097":46,"2098":386,"2099":28,"2100":46,"2101":16,"2102":93,"2103":343,"2104":148,"2105":69,"2106":328,"2107":145,"2108":221,"2109":318,"2110":299,"2111":69,"2112":356,"2113":73,"2114":12,"2115":163,"2116":380,"2117":317,"2118":242,"2119":317,"2120":160,"2121":349,"2122":32,"2123":230,"2124":67,"2125":158,"2126":19,"2127":83,"2128":158,"2129":191,"2130":148,"2131":140,"2132":292,"2133":312,"2134":302,"2135":46,"2136":313,"2137":342,"2138":27,"2139":153,"2140":356,"2141":262,"2142":200,"2143":164,"2144":111,"2145":6,"2146":182,"2147":336,"2148":84,"2149":284,"2150":381,"2151":135,"2152":274,"2153":293,"2154":54,"2155":87,"2156":379,"2157":200,"2158":142,"2159":125,"2160":285,"2161":323,"2162":10,"2163":152,"2164":302,"2165":102,"2166":364,"2167":261,"2168":191,"2169":10,"2170":247,"2171":129,"2172":356,"2173":83,"2174":262,"2175":320,"2176":253,"2177":197,"2178":136,"2179":147,"2180":82,"2181":385,"2182":285,"2183":336,"2184":227,"2185":213,"2186":283,"2187":267,"2188":143,"2189":37,"2190":351,"2191":274,"2192":257,"2193":10,"2194":284,"2195":91,"2196":125,"2197":127,"2198":3,"2199":312,"2200":359,"2201":272,"2202":253,"2203":159,"2204":71,"2205":52,"2206":351,"2207":33,"2208":274,"2209":70,"2210":200,"2211":284,"2212":238,"2213":155,"2214":80,"2215":375,"2216":356,"2217":217,"2218":173,"2219":168,"2220":4,"2221":177,"2222":64,"2223":86,"2224":81,"2225":385,"2226":224,"2227":299,"2228":77,"2229":98,"2230":209,"2231":10,"2232":125,"2233":191,"2234":120,"2235":320,"2236":272,"2237":57,"2238":343,"2239":387,"2240":273,"2241":208,"2242":158,"2243":351,"2244":352,"2245":283,"2246":111,"2247":285,"2248":95,"2249":376,"2250":85,"2251":106,"2252":166,"2253":276,"2254":152,"2255":68,"2256":274,"2257":348,"2258":336,"2259":160,"2260":217,"2261":82,"2262":344,"2263":368,"2264":84,"2265":150,"2266":283,"2267":64,"2268":108,"2269":38,"2270":71,"2271":163,"2272":5,"2273":56,"2274":186,"2275":301,"2276":53,"2277":242,"2278":29,"2279":380,"2280":82,"2281":200,"2282":16,"2283":283,"2284":336,"2285":267,"2286":260,"2287":253,"2288":98,"2289":64,"2290":299,"2291":116,"2292":92,"2293":284,"2294":253,"2295":141,"2296":144,"2297":221,"2298":29,"2299":238,"2300":325,"2301":326,"2302":379,"2303":143,"2304":79,"2305":197,"2306":52,"2307":18,"2308":287,"2309":17,"2310":384,"2311":36,"2312":384,"2313":5,"2314":10,"2315":66,"2316":364,"2317":136,"2318":148,"2319":128,"2320":40,"2321":61,"2322":113,"2323":138,"2324":60,"2325":88,"2326":71,"2327":271,"2328":285,"2329":203,"2330":195,"2331":289,"2332":301,"2333":283,"2334":100,"2335":182,"2336":207,"2337":238,"2338":378,"2339":43,"2340":333,"2341":230,"2342":140,"2343":295,"2344":351,"2345":95,"2346":369,"2347":320,"2348":182,"2349":100,"2350":29,"2351":325,"2352":65,"2353":137,"2354":284,"2355":174,"2356":358,"2357":120,"2358":243,"2359":69,"2360":257,"2361":332,"2362":317,"2363":46,"2364":80,"2365":126,"2366":148,"2367":195,"2368":321,"2369":150,"2370":73,"2371":359,"2372":203,"2373":296,"2374":341,"2375":285,"2376":249,"2377":55,"2378":92,"2379":8,"2380":82,"2381":60,"2382":106,"2383":4,"2384":290,"2385":119,"2386":336,"2387":174,"2388":262,"2389":29,"2390":16,"2391":18,"2392":77,"2393":148,"2394":214,"2395":203,"2396":82,"2397":148,"2398":82,"2399":177,"2400":298,"2401":305,"2402":150,"2403":382,"2404":283,"2405":359,"2406":349,"2407":77,"2408":196,"2409":161,"2410":208,"2411":4,"2412":77,"2413":221,"2414":87,"2415":5,"2416":336,"2417":195,"2418":380,"2419":349,"2420":125,"2421":4,"2422":142,"2423":239,"2424":385,"2425":229,"2426":251,"2427":125,"2428":299,"2429":270,"2430":119,"2431":299,"2432":285,"2433":382,"2434":287,"2435":19,"2436":200,"2437":7,"2438":344,"2439":313,"2440":270,"2441":229,"2442":152,"2443":371,"2444":77,"2445":117,"2446":155,"2447":215,"2448":94,"2449":47,"2450":80,"2451":145,"2452":160,"2453":145,"2454":56,"2455":238,"2456":299,"2457":323,"2458":160,"2459":150,"2460":107,"2461":136,"2462":34,"2463":221,"2464":168,"2465":98,"2466":187,"2467":270,"2468":4,"2469":171,"2470":136,"2471":57,"2472":138,"2473":387,"2474":132,"2475":137,"2476":297,"2477":317,"2478":286,"2479":18,"2480":160,"2481":88,"2482":295,"2483":230,"2484":368,"2485":152,"2486":209,"2487":239,"2488":254,"2489":356,"2490":116,"2491":325,"2492":335,"2493":188,"2494":81,"2495":18,"2496":129,"2497":142,"2498":270,"2499":172,"2500":345,"2501":222,"2502":22,"2503":243,"2504":174,"2505":283,"2506":285,"2507":301,"2508":360,"2509":358,"2510":67,"2511":336,"2512":125,"2513":10,"2514":13,"2515":375,"2516":274,"2517":19,"2518":117,"2519":241,"2520":294,"2521":153,"2522":360,"2523":145,"2524":77,"2525":317,"2526":296,"2527":343,"2528":285,"2529":360,"2530":200,"2531":99,"2532":385,"2533":137,"2534":321,"2535":202,"2536":326,"2537":47,"2538":59,"2539":13,"2540":135,"2541":15,"2542":82,"2543":321,"2544":116,"2545":137,"2546":325,"2547":102,"2548":168,"2549":139,"2550":107,"2551":1,"2552":68,"2553":26,"2554":284,"2555":10,"2556":91,"2557":343,"2558":166,"2559":71,"2560":328,"2561":143,"2562":104,"2563":274,"2564":285,"2565":117,"2566":321,"2567":141,"2568":324,"2569":167,"2570":175,"2571":84,"2572":21,"2573":158,"2574":75,"2575":88,"2576":153,"2577":385,"2578":363,"2579":278,"2580":250,"2581":261,"2582":353,"2583":38,"2584":159,"2585":193,"2586":129,"2587":198,"2588":341,"2589":324,"2590":125,"2591":208,"2592":373,"2593":274,"2594":276,"2595":200,"2596":163,"2597":230,"2598":117,"2599":233,"2600":141,"2601":41,"2602":320,"2603":195,"2604":335,"2605":152,"2606":141,"2607":107,"2608":216,"2609":88,"2610":16,"2611":287,"2612":89,"2613":266,"2614":289,"2615":46,"2616":245,"2617":203,"2618":204,"2619":350,"2620":240,"2621":293,"2622":127,"2623":303,"2624":238,"2625":367,"2626":125,"2627":42,"2628":82,"2629":47,"2630":191,"2631":257,"2632":160,"2633":80,"2634":285,"2635":200,"2636":135,"2637":359,"2638":55,"2639":37,"2640":268,"2641":25,"2642":348,"2643":168,"2644":4,"2645":336,"2646":367,"2647":195,"2648":36,"2649":89,"2650":317,"2651":116,"2652":4,"2653":213,"2654":335,"2655":322,"2656":326,"2657":287,"2658":209,"2659":218,"2660":138,"2661":321,"2662":141,"2663":230,"2664":358,"2665":284,"2666":71,"2667":284,"2668":348,"2669":296,"2670":16,"2671":71,"2672":33,"2673":46,"2674":266,"2675":230,"2676":70,"2677":274,"2678":197,"2679":46,"2680":155,"2681":251,"2682":88,"2683":235,"2684":14,"2685":377,"2686":274,"2687":314,"2688":148,"2689":82,"2690":20,"2691":364,"2692":76,"2693":369,"2694":251,"2695":118,"2696":200,"2697":292,"2698":148,"2699":253,"2700":385,"2701":5,"2702":375,"2703":79,"2704":102,"2705":21,"2706":49,"2707":227,"2708":162,"2709":155,"2710":272,"2711":48,"2712":375,"2713":73,"2714":385,"2715":274,"2716":150,"2717":5,"2718":18,"2719":356,"2720":160,"2721":324,"2722":326,"2723":195,"2724":16,"2725":136,"2726":281,"2727":103,"2728":385,"2729":18,"2730":148,"2731":189,"2732":268,"2733":116,"2734":7,"2735":86,"2736":36,"2737":205,"2738":368,"2739":344,"2740":5,"2741":285,"2742":147,"2743":143,"2744":50,"2745":91,"2746":293,"2747":352,"2748":142,"2749":27,"2750":172,"2751":207,"2752":257,"2753":152,"2754":293,"2755":155,"2756":343,"2757":96,"2758":323,"2759":106,"2760":159,"2761":274,"2762":156,"2763":150,"2764":200,"2765":119,"2766":153,"2767":257,"2768":82,"2769":383,"2770":317,"2771":191,"2772":299,"2773":272,"2774":270,"2775":382,"2776":225,"2777":283,"2778":293,"2779":229,"2780":52,"2781":140,"2782":46,"2783":155,"2784":321,"2785":19,"2786":251,"2787":343,"2788":213,"2789":308,"2790":5,"2791":286,"2792":65,"2793":245,"2794":285,"2795":129,"2796":4,"2797":299,"2798":261,"2799":318,"2800":91,"2801":377,"2802":80,"2803":77,"2804":383,"2805":329,"2806":200,"2807":221,"2808":141,"2809":70,"2810":201,"2811":253,"2812":186,"2813":92,"2814":179,"2815":86,"2816":340,"2817":72,"2818":119,"2819":332,"2820":125,"2821":299,"2822":368,"2823":46,"2824":18,"2825":166,"2826":243,"2827":7,"2828":234,"2829":142,"2830":96,"2831":5,"2832":46,"2833":377,"2834":102,"2835":140,"2836":76,"2837":209,"2838":150,"2839":125,"2840":302,"2841":10,"2842":236,"2843":148,"2844":163,"2845":129,"2846":180,"2847":117,"2848":340,"2849":142,"2850":374,"2851":82,"2852":132,"2853":160,"2854":116,"2855":221,"2856":329,"2857":196,"2858":357,"2859":287,"2860":135,"2861":16,"2862":317,"2863":77,"2864":155,"2865":148,"2866":16,"2867":213,"2868":186,"2869":48,"2870":200,"2871":274,"2872":274,"2873":22,"2874":4,"2875":37,"2876":41,"2877":179,"2878":331,"2879":37,"2880":143,"2881":368,"2882":19,"2883":200,"2884":159,"2885":19,"2886":349,"2887":137,"2888":381,"2889":382,"2890":49,"2891":270,"2892":129,"2893":46,"2894":359,"2895":290,"2896":183,"2897":235,"2898":18,"2899":347,"2900":297,"2901":54,"2902":5,"2903":255,"2904":261,"2905":44,"2906":18,"2907":227,"2908":309,"2909":336,"2910":385,"2911":321,"2912":267,"2913":329,"2914":235,"2915":253,"2916":83,"2917":52,"2918":329,"2919":102,"2920":176,"2921":137,"2922":228,"2923":145,"2924":13,"2925":249,"2926":22,"2927":226,"2928":239,"2929":218,"2930":97,"2931":311,"2932":227,"2933":284,"2934":125,"2935":118,"2936":302,"2937":116,"2938":351,"2939":241,"2940":293,"2941":253,"2942":218,"2943":71,"2944":239,"2945":116,"2946":109,"2947":200,"2948":57,"2949":279,"2950":183,"2951":368,"2952":124,"2953":358,"2954":152,"2955":195,"2956":102,"2957":195,"2958":160,"2959":171,"2960":186,"2961":301,"2962":175,"2963":175,"2964":241,"2965":2,"2966":195,"2967":358,"2968":85,"2969":343,"2970":227,"2971":168,"2972":35,"2973":331,"2974":271,"2975":175,"2976":46,"2977":317,"2978":278,"2979":340,"2980":238,"2981":323,"2982":182,"2983":165,"2984":38,"2985":331,"2986":125,"2987":200,"2988":318,"2989":195,"2990":152,"2991":283,"2992":368,"2993":323,"2994":18,"2995":111,"2996":354,"2997":327,"2998":221,"2999":380,"3000":354,"3001":376,"3002":311,"3003":97,"3004":385,"3005":275,"3006":287,"3007":182,"3008":264,"3009":149,"3010":221,"3011":19,"3012":37,"3013":157,"3014":329,"3015":189,"3016":317,"3017":82,"3018":257,"3019":258,"3020":146,"3021":7,"3022":189,"3023":357,"3024":238,"3025":151,"3026":30,"3027":63,"3028":291,"3029":385,"3030":375,"3031":375,"3032":336,"3033":4,"3034":163,"3035":16,"3036":318,"3037":360,"3038":200,"3039":168,"3040":143,"3041":247,"3042":328,"3043":287,"3044":214,"3045":4,"3046":200,"3047":175,"3048":152,"3049":320,"3050":200,"3051":221,"3052":46,"3053":274,"3054":159,"3055":33,"3056":302,"3057":272,"3058":184,"3059":186,"3060":207,"3061":197,"3062":77,"3063":119,"3064":163,"3065":104,"3066":200,"3067":37,"3068":375,"3069":14,"3070":41,"3071":183,"3072":243,"3073":175,"3074":135,"3075":313,"3076":11,"3077":58,"3078":152,"3079":4,"3080":301,"3081":60,"3082":272,"3083":40,"3084":118,"3085":374,"3086":46,"3087":150,"3088":384,"3089":44,"3090":287,"3091":117,"3092":46,"3093":270,"3094":341,"3095":16,"3096":344,"3097":318,"3098":143,"3099":317,"3100":331,"3101":323,"3102":200,"3103":251,"3104":19,"3105":239,"3106":291,"3107":91,"3108":224,"3109":138,"3110":5,"3111":291,"3112":291,"3113":91,"3114":199,"3115":186,"3116":126,"3117":127,"3118":52,"3119":251,"3120":291,"3121":380,"3122":66,"3123":305,"3124":357,"3125":384,"3126":291,"3127":284,"3128":334,"3129":13,"3130":358,"3131":144,"3132":205,"3133":321,"3134":52,"3135":135,"3136":338,"3137":66,"3138":127,"3139":378,"3140":313,"3141":129,"3142":336,"3143":358,"3144":22,"3145":29,"3146":145,"3147":117,"3148":71,"3149":324,"3150":145,"3151":4,"3152":314,"3153":146,"3154":77,"3155":156,"3156":95,"3157":110,"3158":40,"3159":274,"3160":107,"3161":323,"3162":29,"3163":375,"3164":371,"3165":142,"3166":153,"3167":268,"3168":273,"3169":257,"3170":320,"3171":129,"3172":145,"3173":191,"3174":303,"3175":304,"3176":33,"3177":307,"3178":42,"3179":384,"3180":200,"3181":356,"3182":232,"3183":293,"3184":79,"3185":288,"3186":148,"3187":317,"3188":284,"3189":221,"3190":39,"3191":7,"3192":379,"3193":253,"3194":323,"3195":144,"3196":279,"3197":299,"3198":227,"3199":139,"3200":321,"3201":77,"3202":25,"3203":68,"3204":216,"3205":327,"3206":329,"3207":383,"3208":140,"3209":18,"3210":173,"3211":38,"3212":285,"3213":227,"3214":148,"3215":176,"3216":241,"3217":153,"3218":336,"3219":82,"3220":253,"3221":89,"3222":18,"3223":317,"3224":343,"3225":96,"3226":160,"3227":46,"3228":200,"3229":356,"3230":336,"3231":321,"3232":263,"3233":101,"3234":175,"3235":296,"3236":366,"3237":117,"3238":329,"3239":63,"3240":289,"3241":68,"3242":35,"3243":19,"3244":111,"3245":353,"3246":127,"3247":353,"3248":140,"3249":95,"3250":163,"3251":251,"3252":287,"3253":382,"3254":129,"3255":193,"3256":49,"3257":262,"3258":229,"3259":301,"3260":85,"3261":184,"3262":369,"3263":106,"3264":160,"3265":4,"3266":260,"3267":92,"3268":239,"3269":82,"3270":383,"3271":314,"3272":233,"3273":311,"3274":211,"3275":285,"3276":125,"3277":129,"3278":356,"3279":104,"3280":348,"3281":291,"3282":358,"3283":160,"3284":108,"3285":138,"3286":295,"3287":368,"3288":125,"3289":23,"3290":229,"3291":22,"3292":328,"3293":18,"3294":145,"3295":256,"3296":287,"3297":165,"3298":580,"3299":764,"3300":709,"3301":587,"3302":675,"3303":404,"3304":679,"3305":620,"3306":753,"3307":523,"3308":627,"3309":585,"3310":735,"3311":603,"3312":401,"3313":621,"3314":415,"3315":468,"3316":743,"3317":630,"3318":702,"3319":559,"3320":765,"3321":528,"3322":747,"3323":458,"3324":745,"3325":702,"3326":648,"3327":627,"3328":665,"3329":635,"3330":682,"3331":738,"3332":737,"3333":451,"3334":761,"3335":716,"3336":616,"3337":621,"3338":415,"3339":478,"3340":468,"3341":603,"3342":474,"3343":421,"3344":719,"3345":767,"3346":724,"3347":643,"3348":666,"3349":538,"3350":424,"3351":678,"3352":478,"3353":595,"3354":431,"3355":594,"3356":618,"3357":438,"3358":540,"3359":492,"3360":641,"3361":621,"3362":584,"3363":564,"3364":405,"3365":445,"3366":527,"3367":511,"3368":490,"3369":496,"3370":652,"3371":525,"3372":403,"3373":564,"3374":710,"3375":608,"3376":559,"3377":643,"3378":523,"3379":557,"3380":406,"3381":553,"3382":401,"3383":658,"3384":666,"3385":548,"3386":641,"3387":691,"3388":479,"3389":469,"3390":391,"3391":545,"3392":657,"3393":579,"3394":520,"3395":522,"3396":588,"3397":687,"3398":669,"3399":476,"3400":468,"3401":548,"3402":696,"3403":666,"3404":522,"3405":649,"3406":571,"3407":536,"3408":677,"3409":760,"3410":491,"3411":709,"3412":499,"3413":558,"3414":460,"3415":760,"3416":592,"3417":689,"3418":650,"3419":622,"3420":698,"3421":482,"3422":480,"3423":657,"3424":709,"3425":556,"3426":705,"3427":692,"3428":473,"3429":389,"3430":598,"3431":492,"3432":697,"3433":543,"3434":709,"3435":744,"3436":459,"3437":710,"3438":638,"3439":524,"3440":641,"3441":545,"3442":651,"3443":515,"3444":572,"3445":716,"3446":768,"3447":650,"3448":693,"3449":744,"3450":497,"3451":479,"3452":754,"3453":433,"3454":550,"3455":748,"3456":423,"3457":435,"3458":546,"3459":581,"3460":478,"3461":414,"3462":622,"3463":765,"3464":720,"3465":611,"3466":709,"3467":509,"3468":400,"3469":407,"3470":667,"3471":408,"3472":405,"3473":701,"3474":567,"3475":554,"3476":435,"3477":607,"3478":665,"3479":648,"3480":606,"3481":445,"3482":563,"3483":726,"3484":407,"3485":623,"3486":576,"3487":416,"3488":711,"3489":563,"3490":546,"3491":420,"3492":497,"3493":595,"3494":730,"3495":754,"3496":675,"3497":631,"3498":702,"3499":511,"3500":566,"3501":477,"3502":688,"3503":604,"3504":525,"3505":468,"3506":561,"3507":650,"3508":646,"3509":627,"3510":414,"3511":573,"3512":574,"3513":435,"3514":597,"3515":418,"3516":681,"3517":702,"3518":719,"3519":500,"3520":514,"3521":658,"3522":480,"3523":458,"3524":664,"3525":562,"3526":651,"3527":490,"3528":711,"3529":709,"3530":597,"3531":564,"3532":541,"3533":746,"3534":406,"3535":627,"3536":583,"3537":461,"3538":521,"3539":540,"3540":399,"3541":560,"3542":572,"3543":406,"3544":476,"3545":424,"3546":393,"3547":482,"3548":654,"3549":489,"3550":584,"3551":485,"3552":505,"3553":450,"3554":752,"3555":575,"3556":657,"3557":545,"3558":545,"3559":425,"3560":669,"3561":509,"3562":616,"3563":508,"3564":425,"3565":719,"3566":499,"3567":426,"3568":650,"3569":393,"3570":415,"3571":465,"3572":465,"3573":449,"3574":564,"3575":420,"3576":702,"3577":473,"3578":756,"3579":555,"3580":411,"3581":396,"3582":491,"3583":652,"3584":743,"3585":482,"3586":646,"3587":606,"3588":619,"3589":490,"3590":589,"3591":627,"3592":515,"3593":675,"3594":702,"3595":532,"3596":579,"3597":557,"3598":638,"3599":722,"3600":676,"3601":395,"3602":579,"3603":603,"3604":583,"3605":576,"3606":629,"3607":641,"3608":736,"3609":746,"3610":520,"3611":467,"3612":713,"3613":542,"3614":654,"3615":538,"3616":541,"3617":650,"3618":768,"3619":394,"3620":438,"3621":483,"3622":457,"3623":469,"3624":651,"3625":391,"3626":500,"3627":477,"3628":735,"3629":638,"3630":469,"3631":614,"3632":768,"3633":426,"3634":768,"3635":574,"3636":391,"3637":648,"3638":572,"3639":600,"3640":685,"3641":531,"3642":563,"3643":635,"3644":654,"3645":453,"3646":595,"3647":406,"3648":729,"3649":625,"3650":648,"3651":404,"3652":538,"3653":658,"3654":755,"3655":435,"3656":667,"3657":641,"3658":633,"3659":465,"3660":441,"3661":404,"3662":548,"3663":665,"3664":557,"3665":462,"3666":660,"3667":540,"3668":557,"3669":641,"3670":590,"3671":445,"3672":619,"3673":401,"3674":614,"3675":657,"3676":583,"3677":453,"3678":555,"3679":665,"3680":618,"3681":702,"3682":629,"3683":732,"3684":760,"3685":757,"3686":567,"3687":757,"3688":573,"3689":666,"3690":435,"3691":679,"3692":709,"3693":746,"3694":714,"3695":642,"3696":479,"3697":516,"3698":687,"3699":445,"3700":682,"3701":710,"3702":651,"3703":708,"3704":677,"3705":639,"3706":654,"3707":698,"3708":434,"3709":584,"3710":525,"3711":669,"3712":757,"3713":473,"3714":424,"3715":436,"3716":715,"3717":563,"3718":522,"3719":391,"3720":401,"3721":458,"3722":618,"3723":516,"3724":682,"3725":405,"3726":562,"3727":576,"3728":504,"3729":401,"3730":646,"3731":482,"3732":764,"3733":560,"3734":567,"3735":532,"3736":760,"3737":555,"3738":739,"3739":476,"3740":511,"3741":577,"3742":756,"3743":687,"3744":577,"3745":590,"3746":739,"3747":549,"3748":425,"3749":536,"3750":661,"3751":669,"3752":621,"3753":554,"3754":595,"3755":536,"3756":672,"3757":659,"3758":568,"3759":735,"3760":764,"3761":531,"3762":459,"3763":542,"3764":730,"3765":445,"3766":645,"3767":572,"3768":621,"3769":675,"3770":468,"3771":657,"3772":709,"3773":545,"3774":513,"3775":661,"3776":769,"3777":666,"3778":725,"3779":459,"3780":585,"3781":730,"3782":726,"3783":446,"3784":669,"3785":764,"3786":433,"3787":460,"3788":605,"3789":609,"3790":675,"3791":621,"3792":509,"3793":719,"3794":391,"3795":405,"3796":485,"3797":757,"3798":424,"3799":589,"3800":497,"3801":715,"3802":716,"3803":642,"3804":665,"3805":576,"3806":619,"3807":621,"3808":435,"3809":756,"3810":552,"3811":474,"3812":539,"3813":579,"3814":748,"3815":423,"3816":657,"3817":492,"3818":687,"3819":743,"3820":554,"3821":700,"3822":754,"3823":760,"3824":632,"3825":589,"3826":675,"3827":407,"3828":665,"3829":696,"3830":660,"3831":434,"3832":678,"3833":572,"3834":450,"3835":550,"3836":388,"3837":444,"3838":765,"3839":475,"3840":686,"3841":515,"3842":600,"3843":619,"3844":583,"3845":433,"3846":401,"3847":478,"3848":621,"3849":425,"3850":393,"3851":727,"3852":444,"3853":408,"3854":621,"3855":764,"3856":407,"3857":445,"3858":647,"3859":766,"3860":399,"3861":621,"3862":636,"3863":423,"3864":678,"3865":660,"3866":727,"3867":696,"3868":665,"3869":584,"3870":579,"3871":618,"3872":466,"3873":720,"3874":669,"3875":591,"3876":603,"3877":768,"3878":571,"3879":664,"3880":576,"3881":757,"3882":665,"3883":666,"3884":610,"3885":434,"3886":721,"3887":501,"3888":473,"3889":640,"3890":503,"3891":465,"3892":397,"3893":435,"3894":511,"3895":655,"3896":655,"3897":572,"3898":391,"3899":447,"3900":713,"3901":439,"3902":708,"3903":474,"3904":648,"3905":543,"3906":758,"3907":755,"3908":664,"3909":667,"3910":702,"3911":435,"3912":678,"3913":582,"3914":555,"3915":579,"3916":681,"3917":754,"3918":748,"3919":395,"3920":572,"3921":764,"3922":746,"3923":641,"3924":720,"3925":632,"3926":523,"3927":439,"3928":401,"3929":618,"3930":520,"3931":677,"3932":578,"3933":678,"3934":397,"3935":548,"3936":742,"3937":435,"3938":616,"3939":744,"3940":575,"3941":657,"3942":474,"3943":537,"3944":660,"3945":561,"3946":695,"3947":545,"3948":666,"3949":490,"3950":489,"3951":724,"3952":746,"3953":636,"3954":669,"3955":488,"3956":643,"3957":707,"3958":469,"3959":635,"3960":768,"3961":554,"3962":605,"3963":665,"3964":470,"3965":500,"3966":420,"3967":695,"3968":521,"3969":522,"3970":629,"3971":465,"3972":740,"3973":716,"3974":653,"3975":445,"3976":474,"3977":589,"3978":534,"3979":743,"3980":527,"3981":711,"3982":396,"3983":647,"3984":545,"3985":407,"3986":473,"3987":730,"3988":665,"3989":590,"3990":446,"3991":528,"3992":605,"3993":670,"3994":530,"3995":428,"3996":458,"3997":523,"3998":538,"3999":451,"4000":468,"4001":615,"4002":506,"4003":549,"4004":538,"4005":406,"4006":708,"4007":474,"4008":669,"4009":650,"4010":745,"4011":459,"4012":651,"4013":678,"4014":515,"4015":424,"4016":467,"4017":687,"4018":685,"4019":692,"4020":727,"4021":468,"4022":752,"4023":716,"4024":769,"4025":666,"4026":760,"4027":709,"4028":561,"4029":465,"4030":720,"4031":405,"4032":433,"4033":769,"4034":719,"4035":542,"4036":764,"4037":539,"4038":547,"4039":740,"4040":462,"4041":522,"4042":435,"4043":720,"4044":664,"4045":674,"4046":759,"4047":766,"4048":590,"4049":650,"4050":495,"4051":407,"4052":436,"4053":641,"4054":675,"4055":424,"4056":445,"4057":542,"4058":683,"4059":419,"4060":459,"4061":511,"4062":457,"4063":554,"4064":400,"4065":525,"4066":539,"4067":453,"4068":645,"4069":391,"4070":584,"4071":498,"4072":500,"4073":590,"4074":465,"4075":398,"4076":696,"4077":760,"4078":544,"4079":415,"4080":495,"4081":497,"4082":713,"4083":677,"4084":595,"4085":704,"4086":665,"4087":420,"4088":547,"4089":650,"4090":764,"4091":486,"4092":414,"4093":572,"4094":766,"4095":474,"4096":468,"4097":768,"4098":708,"4099":674,"4100":495,"4101":636,"4102":476,"4103":459,"4104":483,"4105":621,"4106":523,"4107":525,"4108":468,"4109":433,"4110":465,"4111":516,"4112":727,"4113":675,"4114":551,"4115":723,"4116":584,"4117":744,"4118":602,"4119":621,"4120":585,"4121":499,"4122":716,"4123":512,"4124":641,"4125":423,"4126":738,"4127":709,"4128":660,"4129":721,"4130":465,"4131":597,"4132":527,"4133":666,"4134":459,"4135":482,"4136":580,"4137":605,"4138":683,"4139":720,"4140":579,"4141":456,"4142":423,"4143":434,"4144":565,"4145":722,"4146":743,"4147":651,"4148":490,"4149":398,"4150":606,"4151":407,"4152":394,"4153":722,"4154":636,"4155":605,"4156":407,"4157":539,"4158":627,"4159":454,"4160":576,"4161":516,"4162":644,"4163":583,"4164":473,"4165":575,"4166":616,"4167":523,"4168":396,"4169":755,"4170":526,"4171":500,"4172":488,"4173":636,"4174":580,"4175":476,"4176":746,"4177":609,"4178":405,"4179":594,"4180":437,"4181":616,"4182":530,"4183":712,"4184":665,"4185":428,"4186":716,"4187":768,"4188":520,"4189":494,"4190":754,"4191":616,"4192":605,"4193":396,"4194":643,"4195":627,"4196":408,"4197":669,"4198":618,"4199":561,"4200":554,"4201":639,"4202":528,"4203":480,"4204":389,"4205":524,"4206":525,"4207":698,"4208":682,"4209":505,"4210":702,"4211":520,"4212":483,"4213":513,"4214":561,"4215":603,"4216":742,"4217":634,"4218":579,"4219":431,"4220":666,"4221":653,"4222":521,"4223":581,"4224":767,"4225":395,"4226":510,"4227":591,"4228":616,"4229":735,"4230":657,"4231":675,"4232":425,"4233":472,"4234":738,"4235":392,"4236":652,"4237":654,"4238":760,"4239":490,"4240":407,"4241":478,"4242":759,"4243":755,"4244":498,"4245":584,"4246":751,"4247":657,"4248":396,"4249":427,"4250":491,"4251":747,"4252":712,"4253":578,"4254":434,"4255":764,"4256":525,"4257":491,"4258":577,"4259":666,"4260":570,"4261":702,"4262":415,"4263":585,"4264":414,"4265":457,"4266":757,"4267":563,"4268":730,"4269":545,"4270":553,"4271":603,"4272":405,"4273":401,"4274":425,"4275":679,"4276":760,"4277":764,"4278":717,"4279":641,"4280":521,"4281":425,"4282":554,"4283":606,"4284":709,"4285":523,"4286":434,"4287":660,"4288":702,"4289":406,"4290":592,"4291":748,"4292":478,"4293":576,"4294":696,"4295":602,"4296":675,"4297":701,"4298":553,"4299":712,"4300":460,"4301":399,"4302":436,"4303":492,"4304":662,"4305":769,"4306":691,"4307":605,"4308":410,"4309":551,"4310":769,"4311":698,"4312":602,"4313":618,"4314":506,"4315":459,"4316":479,"4317":603,"4318":636,"4319":431,"4320":395,"4321":572,"4322":499,"4323":604,"4324":674,"4325":769,"4326":716,"4327":478,"4328":407,"4329":695,"4330":685,"4331":522,"4332":757,"4333":740,"4334":646,"4335":489,"4336":668,"4337":473,"4338":528,"4339":758,"4340":744,"4341":554,"4342":478,"4343":482,"4344":601,"4345":644,"4346":699,"4347":528,"4348":636,"4349":433,"4350":751,"4351":410,"4352":605,"4353":546,"4354":621,"4355":482,"4356":732,"4357":665,"4358":544,"4359":593,"4360":712,"4361":654,"4362":400,"4363":757,"4364":479,"4365":512,"4366":469,"4367":562,"4368":536,"4369":436,"4370":584,"4371":628,"4372":531,"4373":501,"4374":711,"4375":720,"4376":742,"4377":589,"4378":526,"4379":756,"4380":746,"4381":400,"4382":539,"4383":518,"4384":655,"4385":711,"4386":735,"4387":641,"4388":466,"4389":401,"4390":504,"4391":564,"4392":670,"4393":713,"4394":515,"4395":648,"4396":722,"4397":550,"4398":596,"4399":425,"4400":452,"4401":404,"4402":478,"4403":746,"4404":687,"4405":617,"4406":523,"4407":573,"4408":616,"4409":526,"4410":712,"4411":423,"4412":503,"4413":522,"4414":490,"4415":473,"4416":621,"4417":423,"4418":467,"4419":398,"4420":650,"4421":399,"4422":445,"4423":439,"4424":504,"4425":751,"4426":400,"4427":769,"4428":742,"4429":752,"4430":388,"4431":685,"4432":536,"4433":388,"4434":435,"4435":398,"4436":593,"4437":663,"4438":665,"4439":531,"4440":675,"4441":564,"4442":538,"4443":666,"4444":516,"4445":562,"4446":710,"4447":571,"4448":726,"4449":608,"4450":503,"4451":458,"4452":473,"4453":746,"4454":549,"4455":405,"4456":589,"4457":636,"4458":494,"4459":665,"4460":576,"4461":420,"4462":522,"4463":469,"4464":618,"4465":552,"4466":554,"4467":576,"4468":708,"4469":548,"4470":431,"4471":606,"4472":451,"4473":589,"4474":473,"4475":523,"4476":699,"4477":564,"4478":606,"4479":400,"4480":730,"4481":527,"4482":743,"4483":724,"4484":433,"4485":748,"4486":556,"4487":478,"4488":651,"4489":676,"4490":748,"4491":405,"4492":721,"4493":735,"4494":591,"4495":494,"4496":681,"4497":476,"4498":666,"4499":735,"4500":391,"4501":595,"4502":476,"4503":633,"4504":572,"4505":407,"4506":719,"4507":667,"4508":431,"4509":488,"4510":573,"4511":729,"4512":445,"4513":411,"4514":547,"4515":579,"4516":506,"4517":698,"4518":518,"4519":394,"4520":537,"4521":409,"4522":621,"4523":495,"4524":506,"4525":510,"4526":410,"4527":470,"4528":502,"4529":663,"4530":520,"4531":392,"4532":710,"4533":738,"4534":756,"4535":738,"4536":738,"4537":636,"4538":434,"4539":482,"4540":445,"4541":405,"4542":528,"4543":390,"4544":653,"4545":669,"4546":512,"4547":413,"4548":505,"4549":471,"4550":666,"4551":473,"4552":435,"4553":575,"4554":758,"4555":594,"4556":665,"4557":760,"4558":423,"4559":648,"4560":463,"4561":708,"4562":605,"4563":388,"4564":388,"4565":756,"4566":768,"4567":645,"4568":719,"4569":665,"4570":395,"4571":530,"4572":397,"4573":556,"4574":648,"4575":525,"4576":418,"4577":721,"4578":760,"4579":558,"4580":656,"4581":599,"4582":764,"4583":764,"4584":657,"4585":596,"4586":605,"4587":539,"4588":760,"4589":554,"4590":728,"4591":589,"4592":415,"4593":640,"4594":407,"4595":421,"4596":405,"4597":629,"4598":692,"4599":491,"4600":716,"4601":669,"4602":579,"4603":428,"4604":392,"4605":537,"4606":581,"4607":447,"4608":451,"4609":753,"4610":633,"4611":665,"4612":719,"4613":666,"4614":468,"4615":697,"4616":768,"4617":714,"4618":504,"4619":651,"4620":606,"4621":438,"4622":517,"4623":479,"4624":645,"4625":453,"4626":451,"4627":604,"4628":459,"4629":561,"4630":415,"4631":714,"4632":486,"4633":436,"4634":747,"4635":740,"4636":451,"4637":593,"4638":478,"4639":658,"4640":683,"4641":487,"4642":588,"4643":676,"4644":669,"4645":416,"4646":595,"4647":660,"4648":654,"4649":685,"4650":468,"4651":675,"4652":648,"4653":520,"4654":539,"4655":761,"4656":524,"4657":429,"4658":400,"4659":414,"4660":603,"4661":619,"4662":658,"4663":713,"4664":764,"4665":474,"4666":636,"4667":683,"4668":709,"4669":755,"4670":521,"4671":528,"4672":633,"4673":491,"4674":441,"4675":590,"4676":690,"4677":511,"4678":739,"4679":545,"4680":616,"4681":719,"4682":504,"4683":591,"4684":603,"4685":548,"4686":569,"4687":564,"4688":671,"4689":586,"4690":484,"4691":724,"4692":767,"4693":485,"4694":755,"4695":735,"4696":424,"4697":512,"4698":483,"4699":696,"4700":607,"4701":755,"4702":589,"4703":539,"4704":714,"4705":584,"4706":414,"4707":766,"4708":491,"4709":433,"4710":460,"4711":603,"4712":737,"4713":645,"4714":685,"4715":604,"4716":603,"4717":603,"4718":415,"4719":753,"4720":722,"4721":604,"4722":665,"4723":524,"4724":720,"4725":648,"4726":716,"4727":451,"4728":616,"4729":428,"4730":704,"4731":762,"4732":505,"4733":482,"4734":395,"4735":768,"4736":497,"4737":663,"4738":695,"4739":675,"4740":685,"4741":695,"4742":527,"4743":445,"4744":709,"4745":558,"4746":724,"4747":677,"4748":415,"4749":523,"4750":612,"4751":528,"4752":733,"4753":474,"4754":709,"4755":721,"4756":428,"4757":494,"4758":651,"4759":461,"4760":689,"4761":645,"4762":601,"4763":618,"4764":546,"4765":648,"4766":545,"4767":495,"4768":739,"4769":678,"4770":478,"4771":765,"4772":546,"4773":645,"4774":478,"4775":523,"4776":390,"4777":579,"4778":572,"4779":648,"4780":522,"4781":408,"4782":488,"4783":633,"4784":709,"4785":710,"4786":669,"4787":406,"4788":649,"4789":509,"4790":533,"4791":605,"4792":589,"4793":641,"4794":657,"4795":650,"4796":579,"4797":452,"4798":513,"4799":677,"4800":621,"4801":709,"4802":542,"4803":501,"4804":675,"4805":476,"4806":722,"4807":417,"4808":521,"4809":530,"4810":675,"4811":417,"4812":405,"4813":601,"4814":591,"4815":615,"4816":561,"4817":603,"4818":422,"4819":396,"4820":407,"4821":760,"4822":548,"4823":528,"4824":619,"4825":502,"4826":428,"4827":619,"4828":506,"4829":592,"4830":433,"4831":393,"4832":636,"4833":675,"4834":544,"4835":616,"4836":491,"4837":669,"4838":460,"4839":491,"4840":421,"4841":495,"4842":541,"4843":562,"4844":543,"4845":408,"4846":738,"4847":699,"4848":714,"4849":540,"4850":616,"4851":663,"4852":395,"4853":478,"4854":644,"4855":708,"4856":648,"4857":547,"4858":708,"4859":558,"4860":490,"4861":655,"4862":523,"4863":698,"4864":544,"4865":407,"4866":465,"4867":530,"4868":648,"4869":416,"4870":459,"4871":645,"4872":738,"4873":627,"4874":420,"4875":655,"4876":436,"4877":636,"4878":533,"4879":494,"4880":608,"4881":473,"4882":480,"4883":683,"4884":407,"4885":696,"4886":524,"4887":743,"4888":739,"4889":601,"4890":547,"4891":501,"4892":462,"4893":572,"4894":545,"4895":455,"4896":511,"4897":718,"4898":494,"4899":502,"4900":648,"4901":647,"4902":407,"4903":725,"4904":579,"4905":594,"4906":537,"4907":665,"4908":455,"4909":459,"4910":433,"4911":753,"4912":534,"4913":544,"4914":405,"4915":615,"4916":618,"4917":436,"4918":420,"4919":421,"4920":708,"4921":636,"4922":544,"4923":749,"4924":494,"4925":681,"4926":463,"4927":398,"4928":738,"4929":415,"4930":505,"4931":695,"4932":713,"4933":719,"4934":677,"4935":475,"4936":492,"4937":632,"4938":473,"4939":402,"4940":738,"4941":420,"4942":648,"4943":408,"4944":431,"4945":446,"4946":532,"4947":673,"4948":484,"4949":642,"4950":495,"4951":680,"4952":768,"4953":658,"4954":710,"4955":769,"4956":710,"4957":395,"4958":434,"4959":528,"4960":523,"4961":768,"4962":692,"4963":766,"4964":574,"4965":721,"4966":667,"4967":463,"4968":665,"4969":744,"4970":524,"4971":713,"4972":467,"4973":497,"4974":527,"4975":624,"4976":502,"4977":705,"4978":423,"4979":666,"4980":677,"4981":585,"4982":708,"4983":478,"4984":473,"4985":424,"4986":694,"4987":592,"4988":701,"4989":757,"4990":743,"4991":401,"4992":754,"4993":572,"4994":490,"4995":616,"4996":495,"4997":601,"4998":641,"4999":520,"5000":459,"5001":540,"5002":431,"5003":669,"5004":666,"5005":564,"5006":611,"5007":726,"5008":702,"5009":415,"5010":406,"5011":675,"5012":538,"5013":689,"5014":482,"5015":477,"5016":769,"5017":744,"5018":616,"5019":494,"5020":407,"5021":517,"5022":455,"5023":702,"5024":494,"5025":393,"5026":539,"5027":524,"5028":656,"5029":514,"5030":473,"5031":636,"5032":644,"5033":568,"5034":433,"5035":468,"5036":522,"5037":524,"5038":592,"5039":724,"5040":724,"5041":459,"5042":459,"5043":582,"5044":478,"5045":402,"5046":613,"5047":638,"5048":571,"5049":528,"5050":490,"5051":563,"5052":618,"5053":511,"5054":420,"5055":738,"5056":620,"5057":759,"5058":554,"5059":460,"5060":427,"5061":636,"5062":495,"5063":388,"5064":710,"5065":450,"5066":394,"5067":650,"5068":528,"5069":573,"5070":669,"5071":430,"5072":719,"5073":406,"5074":510,"5075":564,"5076":463,"5077":407,"5078":677,"5079":629,"5080":577,"5081":446,"5082":667,"5083":591,"5084":405,"5085":692,"5086":587,"5087":415,"5088":605,"5089":618,"5090":629,"5091":414,"5092":455,"5093":575,"5094":756,"5095":500,"5096":495,"5097":452,"5098":764,"5099":571,"5100":651,"5101":648,"5102":748,"5103":722,"5104":414,"5105":420,"5106":678,"5107":410,"5108":724,"5109":474,"5110":579,"5111":709,"5112":388,"5113":452,"5114":653,"5115":500,"5116":709,"5117":388,"5118":606,"5119":749,"5120":683,"5121":554,"5122":590,"5123":521,"5124":424,"5125":723,"5126":639,"5127":491,"5128":401,"5129":579,"5130":710,"5131":400,"5132":584,"5133":759,"5134":675,"5135":757,"5136":445,"5137":719,"5138":764,"5139":555,"5140":426,"5141":651,"5142":528,"5143":541,"5144":755,"5145":405,"5146":665,"5147":667,"5148":537,"5149":630,"5150":627,"5151":461,"5152":483,"5153":757,"5154":536,"5155":509,"5156":501,"5157":621,"5158":603,"5159":665,"5160":579,"5161":469,"5162":768,"5163":396,"5164":597,"5165":742,"5166":761,"5167":720,"5168":709,"5169":514,"5170":749,"5171":630,"5172":540,"5173":678,"5174":758,"5175":514,"5176":441,"5177":769,"5178":742,"5179":680,"5180":403,"5181":719,"5182":408,"5183":440,"5184":629,"5185":468,"5186":501,"5187":482,"5188":452,"5189":601,"5190":521,"5191":636,"5192":748,"5193":759,"5194":586,"5195":729,"5196":504,"5197":520,"5198":710,"5199":431,"5200":418,"5201":708,"5202":475,"5203":660,"5204":603,"5205":554,"5206":572,"5207":700,"5208":433,"5209":655,"5210":604,"5211":648,"5212":752,"5213":611,"5214":502,"5215":590,"5216":757,"5217":436,"5218":395,"5219":407,"5220":474,"5221":646,"5222":604,"5223":589,"5224":559,"5225":445,"5226":606,"5227":648,"5228":510,"5229":514,"5230":756,"5231":761,"5232":677,"5233":451,"5234":606,"5235":564,"5236":657,"5237":646,"5238":727,"5239":755,"5240":661,"5241":621,"5242":758,"5243":397,"5244":402,"5245":489,"5246":734,"5247":739,"5248":472,"5249":461,"5250":716,"5251":587,"5252":699,"5253":499,"5254":666,"5255":390,"5256":495,"5257":579,"5258":732,"5259":407,"5260":681,"5261":665,"5262":400,"5263":459,"5264":493,"5265":578,"5266":705,"5267":585,"5268":588,"5269":685,"5270":618,"5271":492,"5272":405,"5273":713,"5274":765,"5275":764,"5276":665,"5277":488,"5278":645,"5279":541,"5280":564,"5281":708,"5282":678,"5283":753,"5284":517,"5285":652,"5286":728,"5287":454,"5288":621,"5289":546,"5290":523,"5291":459,"5292":591,"5293":710,"5294":669,"5295":491,"5296":755,"5297":580,"5298":463,"5299":522,"5300":414,"5301":476,"5302":539,"5303":415,"5304":605,"5305":486,"5306":719,"5307":561,"5308":765,"5309":576,"5310":461,"5311":674,"5312":648,"5313":721,"5314":483,"5315":605,"5316":522,"5317":524,"5318":523,"5319":657,"5320":669,"5321":478,"5322":669,"5323":665,"5324":509,"5325":648,"5326":526,"5327":760,"5328":664,"5329":584,"5330":456,"5331":702,"5332":564,"5333":627,"5334":486,"5335":689,"5336":627,"5337":701,"5338":612,"5339":431,"5340":753,"5341":579,"5342":472,"5343":467,"5344":756,"5345":603,"5346":682,"5347":449,"5348":546,"5349":629,"5350":753,"5351":429,"5352":461,"5353":756,"5354":411,"5355":567,"5356":460,"5357":756,"5358":657,"5359":408,"5360":524,"5361":648,"5362":482,"5363":695,"5364":648,"5365":502,"5366":765,"5367":585,"5368":507,"5369":490,"5370":641,"5371":554,"5372":666,"5373":433,"5374":545,"5375":415,"5376":712,"5377":610,"5378":398,"5379":666,"5380":475,"5381":637,"5382":414,"5383":618,"5384":649,"5385":411,"5386":760,"5387":607,"5388":423,"5389":539,"5390":573,"5391":390,"5392":516,"5393":494,"5394":612,"5395":763,"5396":675,"5397":769,"5398":540,"5399":519,"5400":674,"5401":669,"5402":626,"5403":753,"5404":687,"5405":599,"5406":666,"5407":576,"5408":454,"5409":695,"5410":476,"5411":760,"5412":641,"5413":561,"5414":612,"5415":545,"5416":414,"5417":455,"5418":638,"5419":490,"5420":765,"5421":459,"5422":486,"5423":670,"5424":401,"5425":416,"5426":730,"5427":415,"5428":725,"5429":519,"5430":563,"5431":545,"5432":733,"5433":525,"5434":703,"5435":636,"5436":702,"5437":746,"5438":519,"5439":709,"5440":423,"5441":499,"5442":648,"5443":431,"5444":485,"5445":459,"5446":463,"5447":603,"5448":477,"5449":405,"5450":434,"5451":768,"5452":442,"5453":747,"5454":526,"5455":768,"5456":657,"5457":579,"5458":696,"5459":606,"5460":765,"5461":432,"5462":682,"5463":708,"5464":463,"5465":749,"5466":579,"5467":600,"5468":527,"5469":434,"5470":649,"5471":523,"5472":483,"5473":499,"5474":438,"5475":599,"5476":465,"5477":768,"5478":477,"5479":430,"5480":713,"5481":730,"5482":398,"5483":758,"5484":603,"5485":430,"5486":488,"5487":395,"5488":609,"5489":645,"5490":393,"5491":505,"5492":609,"5493":609,"5494":675,"5495":567,"5496":747,"5497":491,"5498":745,"5499":482,"5500":578,"5501":636,"5502":557,"5503":618,"5504":477,"5505":410,"5506":459,"5507":621,"5508":572,"5509":722,"5510":699,"5511":642,"5512":652,"5513":473,"5514":745,"5515":757,"5516":451,"5517":719,"5518":660,"5519":629,"5520":605,"5521":720,"5522":624,"5523":655,"5524":744,"5525":618,"5526":766,"5527":709,"5528":397,"5529":423,"5530":417,"5531":451,"5532":482,"5533":576,"5534":654,"5535":747,"5536":739,"5537":580,"5538":405,"5539":545,"5540":719,"5541":586,"5542":684,"5543":730,"5544":735,"5545":475,"5546":401,"5547":767,"5548":768,"5549":564,"5550":638,"5551":651,"5552":710,"5553":735,"5554":620,"5555":551,"5556":501,"5557":468,"5558":424,"5559":435,"5560":641,"5561":565,"5562":406,"5563":529,"5564":455,"5565":463,"5566":601,"5567":554,"5568":760,"5569":481,"5570":644,"5571":647,"5572":705,"5573":677,"5574":640,"5575":516,"5576":400,"5577":528,"5578":524,"5579":544,"5580":616,"5581":582,"5582":618,"5583":573,"5584":697,"5585":494,"5586":714,"5587":676,"5588":645,"5589":760,"5590":665,"5591":445,"5592":589,"5593":579,"5594":530,"5595":428,"5596":424,"5597":627,"5598":537,"5599":558,"5600":542,"5601":586,"5602":694,"5603":665,"5604":442,"5605":588,"5606":590,"5607":631,"5608":765,"5609":455,"5610":720,"5611":478,"5612":585,"5613":646,"5614":449,"5615":646,"5616":748,"5617":461,"5618":458,"5619":696,"5620":536,"5621":407,"5622":434,"5623":542,"5624":665,"5625":627,"5626":473,"5627":431,"5628":568,"5629":708,"5630":576,"5631":585,"5632":525,"5633":461,"5634":629,"5635":447,"5636":711,"5637":674,"5638":637,"5639":721,"5640":494,"5641":482,"5642":388,"5643":565,"5644":767,"5645":643,"5646":665,"5647":760,"5648":669,"5649":716,"5650":619,"5651":601,"5652":464,"5653":520,"5654":431,"5655":589,"5656":616,"5657":499,"5658":476,"5659":458,"5660":605,"5661":662,"5662":482,"5663":545,"5664":713,"5665":605,"5666":719,"5667":675,"5668":488,"5669":433,"5670":578,"5671":627,"5672":446,"5673":602,"5674":639,"5675":554,"5676":596,"5677":528,"5678":602,"5679":649,"5680":679,"5681":641,"5682":473,"5683":750,"5684":531,"5685":531,"5686":459,"5687":427,"5688":581,"5689":423,"5690":571,"5691":645,"5692":686,"5693":479,"5694":407,"5695":641,"5696":482,"5697":643,"5698":602,"5699":584,"5700":719,"5701":543,"5702":618,"5703":720,"5704":554,"5705":646,"5706":482,"5707":571,"5708":539,"5709":648,"5710":471,"5711":603,"5712":674,"5713":478,"5714":545,"5715":433,"5716":521,"5717":675,"5718":425,"5719":466,"5720":657,"5721":711,"5722":665,"5723":512,"5724":716,"5725":557,"5726":768,"5727":558,"5728":750,"5729":527,"5730":430,"5731":513,"5732":423,"5733":746,"5734":535,"5735":573,"5736":681,"5737":744,"5738":428,"5739":479,"5740":436,"5741":505,"5742":675,"5743":433,"5744":446,"5745":576,"5746":452,"5747":561,"5748":459,"5749":471,"5750":401,"5751":424,"5752":433,"5753":505,"5754":574,"5755":645,"5756":482,"5757":429,"5758":647,"5759":705,"5760":509,"5761":653,"5762":651,"5763":585,"5764":650,"5765":688,"5766":523,"5767":589,"5768":756,"5769":407,"5770":465,"5771":557,"5772":720,"5773":438,"5774":597,"5775":537,"5776":655,"5777":405,"5778":521,"5779":663,"5780":667,"5781":514,"5782":414,"5783":460,"5784":578,"5785":538,"5786":675,"5787":400,"5788":741,"5789":406,"5790":716,"5791":482,"5792":628,"5793":654,"5794":664,"5795":673,"5796":763,"5797":687,"5798":505,"5799":603,"5800":575,"5801":709,"5802":603,"5803":495,"5804":564,"5805":605,"5806":431,"5807":421,"5808":455,"5809":414,"5810":764,"5811":670,"5812":582,"5813":499,"5814":523,"5815":576,"5816":523,"5817":463,"5818":459,"5819":735,"5820":422,"5821":560,"5822":719,"5823":768,"5824":511,"5825":408,"5826":763,"5827":652,"5828":390,"5829":435,"5830":666,"5831":603,"5832":761,"5833":454,"5834":764,"5835":448,"5836":466,"5837":594,"5838":641,"5839":692,"5840":757,"5841":482,"5842":748,"5843":621,"5844":616,"5845":431,"5846":579,"5847":433,"5848":482,"5849":730,"5850":460,"5851":511,"5852":675,"5853":395,"5854":709,"5855":737,"5856":507,"5857":721,"5858":518,"5859":405,"5860":699,"5861":753,"5862":767,"5863":408,"5864":677,"5865":564,"5866":473,"5867":748,"5868":639,"5869":529,"5870":660,"5871":709,"5872":476,"5873":736,"5874":449,"5875":666,"5876":706,"5877":520,"5878":516,"5879":662,"5880":433,"5881":668,"5882":760,"5883":594,"5884":539,"5885":528,"5886":504,"5887":710,"5888":552,"5889":522,"5890":669,"5891":416,"5892":675,"5893":400,"5894":473,"5895":581,"5896":476,"5897":651,"5898":639,"5899":423,"5900":721,"5901":551,"5902":655,"5903":575,"5904":677,"5905":618,"5906":618,"5907":650,"5908":724,"5909":436,"5910":605,"5911":478,"5912":423,"5913":618,"5914":473,"5915":735,"5916":485,"5917":468,"5918":631,"5919":459,"5920":460,"5921":603,"5922":402,"5923":761,"5924":609,"5925":668,"5926":405,"5927":474,"5928":687,"5929":490,"5930":419,"5931":768,"5932":635,"5933":730,"5934":726,"5935":501,"5936":441,"5937":750,"5938":530,"5939":502,"5940":405,"5941":727,"5942":485,"5943":523,"5944":722,"5945":720,"5946":414,"5947":423,"5948":542,"5949":678,"5950":716,"5951":708,"5952":734,"5953":629,"5954":433,"5955":661,"5956":755,"5957":531,"5958":572,"5959":405,"5960":486,"5961":766,"5962":750,"5963":644,"5964":609,"5965":425,"5966":653,"5967":665,"5968":746,"5969":511,"5970":717,"5971":751,"5972":478,"5973":469,"5974":739,"5975":584,"5976":485,"5977":701,"5978":407,"5979":682,"5980":710,"5981":733,"5982":680,"5983":730,"5984":475,"5985":473,"5986":709,"5987":475,"5988":701,"5989":408,"5990":735,"5991":548,"5992":581,"5993":473,"5994":512,"5995":396,"5996":405,"5997":737,"5998":535,"5999":490,"6000":738,"6001":621,"6002":724,"6003":462,"6004":563,"6005":648,"6006":666,"6007":765,"6008":651,"6009":520,"6010":579,"6011":677,"6012":695,"6013":509,"6014":736,"6015":660,"6016":743,"6017":451,"6018":541,"6019":415,"6020":716,"6021":658,"6022":509,"6023":652,"6024":680,"6025":465,"6026":716,"6027":751,"6028":545,"6029":648,"6030":676,"6031":730,"6032":500,"6033":413,"6034":688,"6035":496,"6036":517,"6037":612,"6038":641,"6039":626,"6040":583,"6041":627,"6042":524,"6043":473,"6044":485,"6045":760,"6046":460,"6047":720,"6048":589,"6049":665,"6050":567,"6051":599,"6052":638,"6053":708,"6054":751,"6055":603,"6056":636,"6057":675,"6058":423,"6059":636,"6060":397,"6061":475,"6062":763,"6063":746,"6064":575,"6065":561,"6066":659,"6067":560,"6068":715,"6069":642,"6070":701,"6071":698,"6072":608,"6073":657,"6074":687,"6075":506,"6076":638,"6077":541,"6078":578,"6079":577,"6080":768,"6081":738,"6082":675,"6083":724,"6084":739,"6085":636,"6086":458,"6087":474,"6088":758,"6089":573,"6090":478,"6091":609,"6092":441,"6093":554,"6094":431,"6095":444,"6096":666,"6097":526,"6098":525,"6099":473,"6100":579,"6101":511,"6102":422,"6103":675,"6104":531,"6105":720,"6106":721,"6107":690,"6108":738,"6109":428,"6110":562,"6111":408,"6112":454,"6113":431,"6114":465,"6115":740,"6116":495,"6117":612,"6118":431,"6119":594,"6120":490,"6121":554,"6122":445,"6123":401,"6124":682,"6125":524,"6126":605,"6127":754,"6128":666,"6129":561,"6130":544,"6131":573,"6132":456,"6133":474,"6134":592,"6135":616,"6136":468,"6137":473,"6138":589,"6139":573,"6140":526,"6141":760,"6142":433,"6143":603,"6144":748,"6145":478,"6146":741,"6147":490,"6148":442,"6149":548,"6150":711,"6151":752,"6152":491,"6153":423,"6154":702,"6155":517,"6156":738,"6157":692,"6158":460,"6159":405,"6160":555,"6161":583,"6162":761,"6163":391,"6164":741,"6165":739,"6166":714,"6167":618,"6168":682,"6169":646,"6170":647,"6171":399,"6172":478,"6173":754,"6174":424,"6175":677,"6176":730,"6177":585,"6178":540,"6179":639,"6180":401,"6181":401,"6182":414,"6183":551,"6184":428,"6185":480,"6186":756,"6187":495,"6188":424,"6189":648,"6190":580,"6191":601,"6192":573,"6193":616,"6194":542,"6195":680,"6196":467,"6197":564,"6198":473,"6199":692,"6200":454,"6201":636,"6202":451,"6203":461,"6204":731,"6205":530,"6206":606,"6207":664,"6208":636,"6209":421,"6210":572,"6211":402,"6212":528,"6213":538,"6214":392,"6215":451,"6216":727,"6217":492,"6218":538,"6219":596,"6220":601,"6221":517,"6222":702,"6223":402,"6224":669,"6225":621,"6226":431,"6227":755,"6228":666,"6229":701,"6230":428,"6231":656,"6232":455,"6233":554,"6234":681,"6235":585,"6236":558,"6237":580,"6238":730,"6239":693,"6240":605,"6241":667,"6242":572,"6243":474,"6244":701,"6245":765,"6246":554,"6247":645,"6248":584,"6249":621,"6250":642,"6251":726,"6252":502,"6253":735,"6254":704,"6255":698,"6256":554,"6257":758,"6258":429,"6259":439,"6260":540,"6261":568,"6262":421,"6263":618,"6264":459,"6265":626,"6266":612,"6267":541,"6268":644,"6269":562,"6270":719,"6271":764,"6272":738,"6273":572,"6274":684,"6275":614,"6276":616,"6277":582,"6278":757,"6279":616,"6280":416,"6281":436,"6282":407,"6283":720,"6284":584,"6285":742,"6286":439,"6287":663,"6288":468,"6289":748,"6290":400,"6291":675,"6292":406,"6293":641,"6294":700,"6295":679,"6296":564,"6297":753,"6298":662,"6299":540,"6300":765,"6301":598,"6302":742,"6303":433,"6304":486,"6305":683,"6306":507,"6307":649,"6308":762,"6309":601,"6310":687,"6311":564,"6312":458,"6313":606,"6314":405,"6315":554,"6316":660,"6317":558,"6318":459,"6319":454,"6320":521,"6321":648,"6322":399,"6323":407,"6324":494,"6325":666,"6326":429,"6327":407,"6328":766,"6329":564,"6330":545,"6331":727,"6332":398,"6333":716,"6334":677,"6335":666,"6336":488,"6337":577,"6338":636,"6339":633,"6340":416,"6341":758,"6342":415,"6343":744,"6344":757,"6345":764,"6346":482,"6347":424,"6348":495,"6349":513,"6350":641,"6351":470,"6352":482,"6353":473,"6354":576,"6355":548,"6356":720,"6357":621,"6358":495,"6359":586,"6360":686,"6361":700,"6362":683,"6363":764,"6364":723,"6365":762,"6366":491,"6367":715,"6368":476,"6369":528,"6370":756,"6371":756,"6372":420,"6373":453,"6374":433,"6375":389,"6376":767,"6377":758,"6378":522,"6379":433,"6380":495,"6381":404,"6382":502,"6383":646,"6384":742,"6385":730,"6386":521,"6387":391,"6388":585,"6389":621,"6390":585,"6391":612,"6392":621,"6393":481,"6394":517,"6395":756,"6396":709,"6397":675,"6398":445,"6399":621,"6400":669,"6401":573,"6402":479,"6403":474,"6404":441,"6405":648,"6406":564,"6407":463,"6408":617,"6409":682,"6410":411,"6411":720,"6412":743,"6413":699,"6414":721,"6415":757,"6416":541,"6417":668,"6418":499,"6419":647,"6420":554,"6421":473,"6422":431,"6423":628,"6424":761,"6425":735,"6426":710,"6427":739,"6428":738,"6429":664,"6430":648,"6431":402,"6432":494,"6433":411,"6434":402,"6435":540,"6436":720,"6437":705,"6438":415,"6439":441,"6440":761,"6441":541,"6442":612,"6443":709,"6444":702,"6445":478,"6446":581,"6447":405,"6448":475,"6449":497,"6450":489,"6451":700,"6452":465,"6453":436,"6454":438,"6455":605,"6456":532,"6457":566,"6458":747,"6459":633,"6460":452,"6461":715,"6462":400,"6463":490,"6464":543,"6465":491,"6466":388,"6467":539,"6468":647,"6469":554,"6470":495,"6471":735,"6472":586,"6473":511,"6474":738,"6475":583,"6476":592,"6477":401,"6478":435,"6479":768,"6480":424,"6481":633,"6482":412,"6483":689,"6484":546,"6485":604,"6486":716,"6487":415,"6488":719,"6489":679,"6490":719,"6491":564,"6492":720,"6493":446,"6494":410,"6495":669,"6496":476,"6497":525,"6498":468,"6499":576,"6500":746,"6501":459,"6502":679,"6503":709,"6504":433,"6505":567,"6506":494,"6507":695,"6508":730,"6509":657,"6510":503,"6511":440,"6512":564,"6513":468,"6514":554,"6515":636,"6516":696,"6517":655,"6518":671,"6519":552,"6520":528,"6521":662,"6522":702,"6523":459,"6524":560,"6525":474,"6526":531,"6527":645,"6528":666,"6529":467,"6530":641,"6531":494,"6532":494,"6533":433,"6534":649,"6535":730,"6536":465,"6537":758,"6538":499,"6539":499,"6540":425,"6541":415,"6542":758,"6543":472,"6544":599,"6545":708,"6546":558,"6547":682,"6548":740,"6549":724,"6550":633,"6551":753,"6552":473,"6553":445,"6554":595,"6555":438,"6556":752,"6557":603,"6558":688,"6559":511,"6560":478,"6561":744,"6562":465,"6563":487,"6564":511,"6565":711,"6566":743,"6567":560,"6568":465,"6569":744,"6570":608,"6571":557,"6572":709,"6573":580,"6574":491,"6575":588,"6576":735,"6577":603,"6578":414,"6579":589,"6580":656,"6581":474,"6582":400,"6583":406,"6584":472,"6585":492,"6586":716,"6587":458,"6588":863,"6589":778,"6590":865,"6591":822,"6592":826,"6593":903,"6594":859,"6595":905,"6596":818,"6597":803,"6598":789,"6599":815,"6600":894,"6601":868,"6602":855,"6603":825,"6604":812,"6605":783,"6606":878,"6607":900,"6608":779,"6609":914,"6610":783,"6611":844,"6612":796,"6613":808,"6614":874,"6615":848,"6616":853,"6617":779,"6618":809,"6619":803,"6620":881,"6621":770,"6622":855,"6623":871,"6624":908,"6625":793,"6626":794,"6627":843,"6628":912,"6629":915,"6630":772,"6631":803,"6632":915,"6633":786,"6634":790,"6635":881,"6636":878,"6637":850,"6638":818,"6639":915,"6640":877,"6641":812,"6642":867,"6643":772,"6644":809,"6645":845,"6646":802,"6647":832,"6648":825,"6649":839,"6650":825,"6651":850,"6652":906,"6653":886,"6654":870,"6655":812,"6656":826,"6657":869,"6658":910,"6659":817,"6660":784,"6661":783,"6662":820,"6663":859,"6664":909,"6665":813,"6666":877,"6667":818,"6668":804,"6669":878,"6670":873,"6671":817,"6672":824,"6673":799,"6674":905,"6675":905,"6676":877,"6677":899,"6678":854,"6679":820,"6680":895,"6681":883,"6682":823,"6683":910,"6684":773,"6685":857,"6686":772,"6687":900,"6688":789,"6689":803,"6690":779,"6691":829,"6692":913,"6693":903,"6694":791,"6695":784,"6696":878,"6697":874,"6698":857,"6699":840,"6700":856,"6701":839,"6702":827,"6703":888,"6704":773,"6705":778,"6706":818,"6707":786,"6708":800,"6709":822,"6710":891,"6711":786,"6712":812,"6713":779,"6714":802,"6715":778,"6716":812,"6717":817,"6718":896,"6719":783,"6720":873,"6721":802,"6722":917,"6723":917,"6724":857,"6725":856,"6726":859,"6727":909,"6728":877,"6729":880,"6730":899,"6731":815,"6732":824,"6733":819,"6734":902,"6735":792,"6736":905,"6737":865,"6738":782,"6739":902,"6740":845,"6741":911,"6742":820,"6743":898,"6744":786,"6745":918,"6746":784,"6747":807,"6748":821,"6749":843,"6750":830,"6751":883,"6752":888,"6753":883,"6754":899,"6755":785,"6756":907,"6757":797,"6758":865,"6759":842,"6760":874,"6761":917,"6762":787,"6763":862,"6764":803,"6765":898,"6766":908,"6767":771,"6768":842,"6769":799,"6770":907,"6771":818,"6772":826,"6773":779,"6774":815,"6775":815,"6776":841,"6777":866,"6778":808,"6779":812,"6780":809,"6781":825,"6782":809,"6783":812,"6784":843,"6785":868,"6786":893,"6787":836,"6788":779,"6789":802,"6790":851,"6791":865,"6792":842,"6793":892,"6794":772,"6795":911,"6796":866,"6797":823,"6798":909,"6799":915,"6800":815,"6801":866,"6802":786,"6803":854,"6804":894,"6805":885,"6806":800,"6807":796,"6808":807,"6809":814,"6810":855,"6811":857,"6812":850,"6813":771,"6814":802,"6815":787,"6816":812,"6817":797,"6818":891,"6819":894,"6820":850,"6821":887,"6822":852,"6823":889,"6824":909,"6825":825,"6826":851,"6827":792,"6828":883,"6829":877,"6830":800,"6831":869,"6832":907,"6833":792,"6834":912,"6835":835,"6836":854,"6837":839,"6838":873,"6839":904,"6840":885,"6841":791,"6842":904,"6843":842,"6844":830,"6845":825,"6846":822,"6847":854,"6848":792,"6849":862,"6850":868,"6851":894,"6852":803,"6853":812,"6854":860,"6855":865,"6856":883,"6857":786,"6858":825,"6859":809,"6860":812,"6861":850,"6862":862,"6863":803,"6864":782,"6865":915,"6866":781,"6867":803,"6868":845,"6869":840,"6870":872,"6871":910,"6872":785,"6873":898,"6874":839,"6875":817,"6876":771,"6877":771,"6878":807,"6879":904,"6880":791,"6881":817,"6882":824,"6883":779,"6884":875,"6885":865,"6886":815,"6887":779,"6888":805,"6889":784,"6890":894,"6891":905,"6892":840,"6893":850,"6894":809,"6895":898,"6896":882,"6897":797,"6898":850,"6899":901,"6900":878,"6901":821,"6902":782,"6903":910,"6904":797,"6905":783,"6906":866,"6907":792,"6908":853,"6909":826,"6910":892,"6911":839,"6912":860,"6913":871,"6914":839,"6915":862,"6916":914,"6917":825,"6918":909,"6919":877,"6920":877,"6921":843,"6922":857,"6923":833,"6924":803,"6925":850,"6926":784,"6927":792,"6928":789,"6929":831,"6930":811,"6931":797,"6932":806,"6933":857,"6934":846,"6935":878,"6936":792,"6937":894,"6938":912,"6939":897,"6940":850,"6941":830,"6942":828,"6943":781,"6944":832,"6945":864,"6946":879,"6947":781,"6948":797,"6949":819,"6950":918,"6951":784,"6952":888,"6953":846,"6954":836,"6955":843,"6956":915,"6957":856,"6958":882,"6959":901,"6960":818,"6961":813,"6962":909,"6963":887,"6964":906,"6965":784,"6966":848,"6967":851,"6968":773,"6969":886,"6970":850,"6971":797,"6972":812,"6973":860,"6974":843,"6975":913,"6976":809,"6977":802,"6978":877,"6979":825,"6980":905,"6981":843,"6982":812,"6983":912,"6984":906,"6985":812,"6986":836,"6987":803,"6988":915,"6989":878,"6990":883,"6991":898,"6992":861,"6993":887,"6994":815,"6995":847,"6996":775,"6997":818,"6998":792,"6999":825,"7000":795,"7001":826,"7002":810,"7003":829,"7004":793,"7005":839,"7006":918,"7007":803,"7008":819,"7009":840,"7010":874,"7011":802,"7012":770,"7013":792,"7014":825,"7015":908,"7016":829,"7017":791,"7018":792,"7019":790,"7020":870,"7021":787,"7022":785,"7023":781,"7024":809,"7025":891,"7026":846,"7027":910,"7028":838,"7029":843,"7030":882,"7031":899,"7032":825,"7033":825,"7034":780,"7035":792,"7036":817,"7037":838,"7038":900,"7039":891,"7040":772,"7041":849,"7042":917,"7043":831,"7044":860,"7045":860,"7046":843,"7047":800,"7048":909,"7049":783,"7050":867,"7051":901,"7052":803,"7053":802,"7054":820,"7055":779,"7056":909,"7057":794,"7058":796,"7059":812,"7060":781,"7061":883,"7062":843,"7063":781,"7064":898,"7065":792,"7066":918,"7067":770,"7068":837,"7069":785,"7070":846,"7071":857,"7072":825,"7073":888,"7074":789,"7075":823,"7076":871,"7077":812,"7078":839,"7079":781,"7080":773,"7081":803,"7082":803,"7083":794,"7084":853,"7085":843,"7086":862,"7087":874,"7088":819,"7089":800,"7090":833,"7091":905,"7092":829,"7093":902,"7094":894,"7095":803,"7096":886,"7097":882,"7098":891,"7099":841,"7100":838,"7101":885,"7102":784,"7103":895,"7104":859,"7105":825,"7106":865,"7107":816,"7108":866,"7109":812,"7110":843,"7111":887,"7112":786,"7113":868,"7114":796,"7115":771,"7116":905,"7117":897,"7118":905,"7119":915,"7120":795,"7121":838,"7122":873,"7123":876,"7124":850,"7125":780,"7126":779,"7127":887,"7128":874,"7129":774,"7130":885,"7131":795,"7132":771,"7133":825,"7134":871,"7135":792,"7136":868,"7137":815,"7138":878,"7139":831,"7140":773,"7141":913,"7142":847,"7143":883,"7144":823,"7145":817,"7146":810,"7147":833,"7148":770,"7149":802,"7150":803,"7151":779,"7152":904,"7153":812,"7154":875,"7155":850,"7156":794,"7157":792,"7158":874,"7159":874,"7160":814,"7161":802,"7162":807,"7163":788,"7164":827,"7165":836,"7166":815,"7167":914,"7168":845,"7169":802,"7170":911,"7171":811,"7172":796,"7173":843,"7174":787,"7175":909,"7176":874,"7177":784,"7178":797,"7179":843,"7180":902,"7181":796,"7182":848,"7183":823,"7184":912,"7185":803,"7186":784,"7187":914,"7188":917,"7189":860,"7190":833,"7191":845,"7192":843,"7193":846,"7194":784,"7195":843,"7196":796,"7197":850,"7198":812,"7199":813,"7200":910,"7201":890,"7202":882,"7203":832,"7204":820,"7205":876,"7206":803,"7207":885,"7208":870,"7209":916,"7210":823,"7211":850,"7212":886,"7213":829,"7214":898,"7215":808,"7216":874,"7217":867,"7218":798,"7219":843,"7220":850,"7221":911,"7222":846,"7223":778,"7224":851,"7225":809,"7226":843,"7227":888,"7228":902,"7229":845,"7230":783,"7231":817,"7232":792,"7233":792,"7234":789,"7235":891,"7236":832,"7237":901,"7238":803,"7239":853,"7240":843,"7241":905,"7242":777,"7243":891,"7244":779,"7245":802,"7246":774,"7247":823,"7248":894,"7249":798,"7250":872,"7251":874,"7252":861,"7253":831,"7254":858,"7255":885,"7256":878,"7257":781,"7258":792,"7259":783,"7260":834,"7261":862,"7262":815,"7263":781,"7264":853,"7265":812,"7266":818,"7267":860,"7268":907,"7269":895,"7270":878,"7271":779,"7272":827,"7273":868,"7274":816,"7275":900,"7276":819,"7277":838,"7278":826,"7279":850,"7280":792,"7281":800,"7282":834,"7283":807,"7284":894,"7285":877,"7286":819,"7287":801,"7288":874,"7289":913,"7290":884,"7291":811,"7292":866,"7293":885,"7294":796,"7295":779,"7296":825,"7297":815,"7298":802,"7299":857,"7300":874,"7301":803,"7302":781,"7303":898,"7304":846,"7305":901,"7306":792,"7307":813,"7308":827,"7309":781,"7310":770,"7311":812,"7312":843,"7313":770,"7314":853,"7315":792,"7316":847,"7317":792,"7318":822,"7319":802,"7320":840,"7321":851,"7322":902,"7323":873,"7324":861,"7325":902,"7326":845,"7327":785,"7328":788,"7329":895,"7330":850,"7331":781,"7332":787,"7333":861,"7334":800,"7335":861,"7336":915,"7337":771,"7338":909,"7339":877,"7340":832,"7341":850,"7342":822,"7343":783,"7344":874,"7345":910,"7346":850,"7347":823,"7348":883,"7349":915,"7350":873,"7351":783,"7352":838,"7353":850,"7354":881,"7355":803,"7356":813,"7357":826,"7358":841,"7359":804,"7360":867,"7361":887,"7362":812,"7363":779,"7364":815,"7365":913,"7366":806,"7367":771,"7368":835,"7369":880,"7370":883,"7371":822,"7372":800,"7373":903,"7374":850,"7375":801,"7376":910,"7377":866,"7378":803,"7379":772,"7380":917,"7381":894,"7382":810,"7383":818,"7384":893,"7385":809,"7386":843,"7387":779,"7388":807,"7389":821,"7390":850,"7391":806,"7392":838,"7393":779,"7394":888,"7395":909,"7396":815,"7397":879,"7398":814,"7399":867,"7400":914,"7401":907,"7402":832,"7403":773,"7404":795,"7405":822,"7406":850,"7407":798,"7408":895,"7409":891,"7410":829,"7411":880,"7412":902,"7413":785,"7414":898,"7415":803,"7416":792,"7417":901,"7418":794,"7419":843,"7420":834,"7421":826,"7422":850,"7423":827,"7424":905,"7425":825,"7426":805,"7427":858,"7428":898,"7429":827,"7430":915,"7431":818,"7432":823,"7433":811,"7434":812,"7435":783,"7436":871,"7437":891,"7438":809,"7439":913,"7440":792,"7441":805,"7442":784,"7443":786,"7444":874,"7445":812,"7446":843,"7447":812,"7448":913,"7449":872,"7450":803,"7451":779,"7452":875,"7453":843,"7454":914,"7455":783,"7456":795,"7457":912,"7458":785,"7459":779,"7460":812,"7461":896,"7462":825,"7463":809,"7464":802,"7465":825,"7466":853,"7467":866,"7468":847,"7469":894,"7470":826,"7471":819,"7472":843,"7473":801,"7474":890,"7475":905,"7476":906,"7477":898,"7478":789,"7479":886,"7480":913,"7481":789,"7482":848,"7483":825,"7484":869,"7485":781,"7486":858,"7487":775,"7488":789,"7489":912,"7490":812,"7491":871,"7492":827,"7493":826,"7494":803,"7495":907,"7496":812,"7497":897,"7498":843,"7499":898,"7500":792,"7501":786,"7502":812,"7503":795,"7504":843,"7505":901,"7506":917,"7507":883,"7508":795,"7509":850,"7510":882,"7511":848,"7512":883,"7513":771,"7514":836,"7515":854,"7516":872,"7517":863,"7518":812,"7519":787,"7520":792,"7521":854,"7522":902,"7523":882,"7524":914,"7525":772,"7526":795,"7527":795,"7528":915,"7529":843,"7530":797,"7531":823,"7532":825,"7533":771,"7534":915,"7535":887,"7536":878,"7537":771,"7538":825,"7539":835,"7540":859,"7541":866,"7542":818,"7543":891,"7544":792,"7545":827,"7546":843,"7547":845,"7548":806,"7549":894,"7550":802,"7551":780,"7552":779,"7553":824,"7554":880,"7555":794,"7556":845,"7557":802,"7558":902,"7559":771,"7560":791,"7561":812,"7562":825,"7563":804,"7564":825,"7565":779,"7566":789,"7567":818,"7568":783,"7569":865,"7570":791,"7571":862,"7572":795,"7573":909,"7574":868,"7575":850,"7576":905,"7577":888,"7578":833,"7579":872,"7580":840,"7581":901,"7582":910,"7583":771,"7584":857,"7585":809,"7586":843,"7587":850,"7588":850,"7589":843,"7590":871,"7591":890,"7592":850,"7593":817,"7594":779,"7595":852,"7596":879,"7597":796,"7598":773,"7599":813,"7600":809,"7601":773,"7602":829,"7603":809,"7604":899,"7605":910,"7606":773,"7607":854,"7608":787,"7609":829,"7610":915,"7611":882,"7612":848,"7613":840,"7614":894,"7615":779,"7616":825,"7617":823,"7618":893,"7619":874,"7620":797,"7621":786,"7622":805,"7623":865,"7624":874,"7625":877,"7626":832,"7627":795,"7628":792,"7629":799,"7630":915,"7631":913,"7632":843,"7633":810,"7634":893,"7635":848,"7636":803,"7637":795,"7638":858,"7639":871,"7640":780,"7641":895,"7642":850,"7643":894,"7644":912,"7645":846,"7646":838,"7647":803,"7648":803,"7649":797,"7650":874,"7651":826,"7652":918,"7653":910,"7654":797,"7655":892,"7656":875,"7657":811,"7658":890,"7659":792,"7660":791,"7661":909,"7662":914,"7663":833,"7664":829,"7665":882,"7666":804,"7667":873,"7668":779,"7669":850,"7670":776,"7671":837,"7672":902,"7673":859,"7674":843,"7675":873,"7676":883,"7677":784,"7678":874,"7679":864,"7680":812,"7681":891,"7682":773,"7683":781,"7684":824,"7685":832,"7686":832,"7687":905,"7688":868,"7689":809,"7690":854,"7691":792,"7692":812,"7693":784,"7694":777,"7695":883,"7696":843,"7697":825,"7698":883,"7699":825,"7700":850,"7701":909,"7702":857,"7703":850,"7704":825,"7705":900,"7706":919,"7707":876,"7708":882,"7709":863,"7710":832,"7711":850,"7712":846,"7713":809,"7714":821,"7715":909,"7716":871,"7717":819,"7718":772,"7719":843,"7720":783,"7721":851,"7722":911,"7723":781,"7724":803,"7725":915,"7726":776,"7727":899,"7728":874,"7729":807,"7730":789,"7731":812,"7732":803,"7733":794,"7734":833,"7735":854,"7736":898,"7737":799,"7738":914,"7739":803,"7740":858,"7741":852,"7742":807,"7743":905,"7744":812,"7745":845,"7746":812,"7747":796,"7748":796,"7749":803,"7750":840,"7751":866,"7752":877,"7753":862,"7754":780,"7755":811,"7756":815,"7757":779,"7758":792,"7759":812,"7760":802,"7761":912,"7762":934,"7763":944,"7764":927,"7765":941,"7766":939,"7767":928,"7768":952,"7769":931,"7770":928,"7771":937,"7772":931,"7773":940,"7774":946,"7775":940,"7776":949,"7777":950,"7778":951,"7779":922,"7780":935,"7781":929,"7782":920,"7783":929,"7784":929,"7785":944,"7786":944,"7787":923,"7788":949,"7789":942,"7790":926,"7791":952,"7792":935,"7793":924,"7794":942,"7795":941,"7796":936,"7797":952,"7798":941,"7799":943,"7800":952,"7801":933,"7802":941,"7803":940,"7804":930,"7805":928,"7806":940,"7807":928,"7808":941,"7809":927,"7810":947,"7811":929,"7812":924,"7813":924,"7814":922,"7815":928,"7816":921,"7817":941,"7818":927,"7819":929,"7820":943,"7821":932,"7822":940,"7823":944,"7824":939,"7825":924,"7826":944,"7827":944,"7828":940,"7829":949,"7830":924,"7831":923,"7832":947,"7833":944,"7834":952,"7835":922,"7836":946,"7837":926,"7838":922,"7839":931,"7840":932,"7841":944,"7842":947,"7843":924,"7844":951,"7845":936,"7846":921,"7847":936,"7848":929,"7849":944,"7850":929,"7851":949,"7852":930,"7853":928,"7854":929,"7855":948,"7856":932,"7857":930,"7858":937,"7859":923,"7860":926,"7861":922,"7862":929,"7863":944,"7864":921,"7865":935,"7866":931,"7867":936,"7868":928,"7869":943,"7870":924,"7871":951,"7872":935,"7873":936,"7874":949,"7875":951,"7876":940,"7877":936,"7878":941,"7879":922,"7880":923,"7881":928,"7882":943,"7883":928,"7884":928,"7885":936,"7886":938,"7887":929,"7888":926,"7889":937,"7890":922,"7891":945,"7892":922,"7893":929,"7894":948,"7895":926,"7896":944,"7897":949,"7898":931,"7899":931,"7900":930,"7901":944,"7902":936,"7903":921,"7904":943,"7905":931,"7906":941,"7907":942,"7908":928,"7909":931,"7910":922,"7911":922,"7912":928,"7913":941,"7914":931,"7915":928,"7916":924,"7917":952,"7918":928,"7919":951,"7920":928,"7921":926,"7922":930,"7923":947,"7924":952,"7925":928,"7926":933,"7927":951,"7928":941,"7929":929,"7930":929,"7931":926,"7932":935,"7933":952,"7934":952,"7935":939,"7936":929,"7937":948,"7938":941,"7939":931,"7940":949,"7941":924,"7942":931,"7943":935,"7944":946,"7945":925,"7946":926,"7947":931,"7948":929,"7949":929,"7950":952,"7951":930,"7952":937,"7953":922,"7954":952,"7955":935,"7956":929,"7957":929,"7958":931,"7959":931,"7960":940,"7961":942,"7962":928,"7963":944,"7964":940,"7965":952,"7966":922,"7967":935,"7968":922,"7969":942,"7970":944,"7971":947,"7972":921,"7973":940,"7974":931,"7975":922,"7976":931,"7977":951,"7978":940,"7979":927,"7980":923,"7981":953,"7982":924,"7983":924,"7984":925,"7985":942,"7986":935,"7987":935,"7988":928,"7989":937,"7990":924,"7991":938,"7992":934,"7993":931,"7994":935,"7995":922,"7996":944,"7997":931,"7998":931,"7999":944,"8000":931,"8001":930,"8002":923,"8003":921,"8004":941,"8005":952,"8006":943,"8007":927,"8008":922,"8009":929,"8010":931,"8011":923,"8012":931,"8013":950,"8014":922,"8015":941,"8016":949,"8017":929,"8018":937,"8019":940,"8020":949,"8021":929,"8022":933,"8023":943,"8024":934,"8025":966,"8026":961,"8027":959,"8028":962,"8029":967,"8030":966,"8031":968,"8032":954,"8033":960,"8034":956,"8035":964,"8036":957,"8037":972,"8038":960,"8039":963,"8040":969,"8041":959,"8042":971,"8043":966,"8044":963,"8045":972,"8046":954,"8047":959,"8048":961,"8049":960,"8050":966,"8051":958,"8052":966,"8053":956,"8054":969,"8055":960,"8056":961,"8057":966,"8058":954,"8059":959,"8060":959,"8061":960,"8062":959,"8063":965,"8064":966,"8065":960,"8066":960,"8067":971,"8068":962,"8069":967,"8070":967,"8071":955,"8072":954,"8073":963,"8074":960,"8075":954,"8076":954,"8077":962,"8078":972,"8079":960,"8080":960,"8081":960,"8082":959,"8083":959,"8084":959,"8085":958,"8086":961,"8087":956,"8088":967,"8089":954,"8090":958,"8091":960,"8092":957,"8093":954,"8094":960,"8095":969,"8096":966,"8097":959,"8098":960,"8099":967,"8100":961,"8101":958,"8102":959,"8103":955,"8104":967,"8105":960,"8106":961,"8107":967,"8108":958,"8109":968,"8110":963,"8111":968,"8112":954,"8113":968,"8114":954,"8115":961,"8116":972,"8117":961,"8118":954,"8119":959,"8120":972,"8121":959,"8122":958,"8123":969,"8124":966,"8125":969,"8126":963,"8127":954,"8128":965,"8129":960,"8130":954,"8131":962,"8132":960,"8133":961,"8134":961,"8135":962,"8136":972,"8137":954,"8138":959,"8139":954,"8140":960,"8141":958,"8142":971,"8143":972,"8144":956,"8145":960,"8146":968,"8147":970,"8148":962,"8149":954,"8150":966,"8151":955,"8152":963,"8153":960,"8154":956,"8155":959,"8156":961,"8157":959,"8158":958,"8159":968,"8160":962,"8161":955,"8162":960,"8163":971,"8164":970,"8165":972,"8166":959,"8167":959,"8168":965,"8169":954,"8170":961,"8171":963,"8172":961,"8173":961,"8174":972,"8175":968,"8176":961,"8177":954,"8178":961,"8179":961,"8180":966,"8181":962,"8182":959,"8183":958,"8184":961,"8185":966,"8186":964,"8187":959,"8188":963,"8189":954,"8190":965,"8191":971,"8192":961,"8193":958,"8194":965,"8195":963,"8196":965,"8197":972,"8198":960,"8199":959,"8200":959,"8201":954,"8202":966,"8203":970,"8204":960,"8205":966,"8206":966,"8207":958,"8208":954,"8209":961,"8210":965,"8211":967,"8212":962,"8213":961,"8214":954,"8215":958,"8216":961,"8217":961,"8218":963,"8219":959,"8220":954,"8221":961,"8222":970,"8223":960,"8224":954,"8225":959,"8226":959,"8227":960,"8228":962,"8229":954,"8230":961,"8231":958,"8232":960,"8233":972,"8234":966,"8235":960,"8236":966,"8237":968,"8238":960,"8239":956,"8240":955,"8241":960,"8242":961,"8243":958,"8244":1000,"8245":979,"8246":988,"8247":988,"8248":978,"8249":991,"8250":987,"8251":996,"8252":979,"8253":995,"8254":978,"8255":1002,"8256":988,"8257":978,"8258":1001,"8259":983,"8260":1003,"8261":1002,"8262":996,"8263":1003,"8264":994,"8265":981,"8266":1001,"8267":1001,"8268":980,"8269":988,"8270":982,"8271":988,"8272":984,"8273":1001,"8274":1002,"8275":981,"8276":981,"8277":994,"8278":995,"8279":992,"8280":1000,"8281":978,"8282":997,"8283":978,"8284":994,"8285":978,"8286":981,"8287":998,"8288":988,"8289":984,"8290":988,"8291":992,"8292":976,"8293":978,"8294":984,"8295":980,"8296":997,"8297":988,"8298":979,"8299":993,"8300":978,"8301":973,"8302":987,"8303":988,"8304":1000,"8305":981,"8306":987,"8307":999,"8308":989,"8309":1003,"8310":988,"8311":978,"8312":983,"8313":1003,"8314":994,"8315":990,"8316":979,"8317":1004,"8318":979,"8319":994,"8320":991,"8321":988,"8322":978,"8323":983,"8324":988,"8325":993,"8326":1001,"8327":1002,"8328":1000,"8329":1001,"8330":979,"8331":1003,"8332":988,"8333":990,"8334":979,"8335":988,"8336":989,"8337":973,"8338":979,"8339":994,"8340":987,"8341":995,"8342":980,"8343":979,"8344":993,"8345":998,"8346":978,"8347":995,"8348":1003,"8349":978,"8350":974,"8351":979,"8352":981,"8353":1003,"8354":988,"8355":993,"8356":980,"8357":977,"8358":998,"8359":987,"8360":984,"8361":973,"8362":994,"8363":999,"8364":994,"8365":990,"8366":997,"8367":981,"8368":987,"8369":981,"8370":981,"8371":997,"8372":991,"8373":979,"8374":995,"8375":990,"8376":991,"8377":1003,"8378":1002,"8379":991,"8380":993,"8381":988,"8382":985,"8383":976,"8384":990,"8385":991,"8386":1003,"8387":978,"8388":987,"8389":991,"8390":1001,"8391":1003,"8392":989,"8393":1001,"8394":991,"8395":995,"8396":990,"8397":994,"8398":999,"8399":989,"8400":984,"8401":979,"8402":1003,"8403":995,"8404":973,"8405":994,"8406":995,"8407":987,"8408":988,"8409":991,"8410":979,"8411":988,"8412":988,"8413":987,"8414":990,"8415":978,"8416":997,"8417":987,"8418":987,"8419":999,"8420":1000,"8421":992,"8422":1002,"8423":988,"8424":1002,"8425":978,"8426":980,"8427":973,"8428":993,"8429":992,"8430":1003,"8431":987,"8432":1003,"8433":992,"8434":993,"8435":1003,"8436":979,"8437":988,"8438":984,"8439":1002,"8440":990,"8441":978,"8442":989,"8443":1003,"8444":987,"8445":990,"8446":979,"8447":1003,"8448":1000,"8449":990,"8450":984,"8451":990,"8452":993,"8453":982,"8454":999,"8455":985,"8456":993,"8457":978,"8458":1003,"8459":990,"8460":1002,"8461":990,"8462":1002,"8463":984,"8464":988,"8465":978,"8466":1003,"8467":979,"8468":977,"8469":1001,"8470":993,"8471":1003,"8472":999,"8473":979,"8474":978,"8475":995,"8476":978,"8477":989,"8478":981,"8479":991,"8480":991,"8481":990,"8482":991,"8483":987,"8484":979,"8485":988,"8486":999,"8487":983,"8488":986,"8489":987,"8490":975,"8491":977,"8492":991,"8493":991,"8494":973,"8495":1003,"8496":982,"8497":1003,"8498":997,"8499":1000,"8500":994,"8501":997,"8502":988,"8503":988,"8504":992,"8505":997,"8506":1003,"8507":1003,"8508":987,"8509":973,"8510":988,"8511":998,"8512":988,"8513":996,"8514":991,"8515":992,"8516":999,"8517":992,"8518":1001,"8519":973,"8520":979,"8521":1003,"8522":1003,"8523":981,"8524":978,"8525":997,"8526":978,"8527":998,"8528":984,"8529":988,"8530":1002,"8531":987,"8532":994,"8533":991,"8534":990,"8535":993,"8536":992,"8537":1000,"8538":987,"8539":973,"8540":977,"8541":981,"8542":1003,"8543":999,"8544":1000,"8545":1003,"8546":984,"8547":990,"8548":994,"8549":1003,"8550":1003,"8551":979,"8552":987,"8553":989,"8554":973,"8555":991,"8556":989,"8557":978,"8558":978,"8559":989,"8560":973,"8561":992,"8562":992,"8563":973,"8564":993,"8565":978,"8566":995,"8567":973,"8568":981,"8569":994,"8570":984,"8571":1000,"8572":988,"8573":981,"8574":990,"8575":976,"8576":974,"8577":981,"8578":990,"8579":1000,"8580":989,"8581":979,"8582":993,"8583":979,"8584":1004,"8585":989,"8586":997,"8587":1023,"8588":1023,"8589":1032,"8590":1012,"8591":1006,"8592":1032,"8593":1005,"8594":1018,"8595":1018,"8596":1032,"8597":1031,"8598":1020,"8599":1031,"8600":1022,"8601":1013,"8602":1020,"8603":1021,"8604":1020,"8605":1033,"8606":1018,"8607":1012,"8608":1026,"8609":1017,"8610":1005,"8611":1024,"8612":1023,"8613":1032,"8614":1027,"8615":1018,"8616":1007,"8617":1024,"8618":1023,"8619":1034,"8620":1017,"8621":1034,"8622":1009,"8623":1020,"8624":1010,"8625":1023,"8626":1008,"8627":1029,"8628":1017,"8629":1005,"8630":1024,"8631":1016,"8632":1022,"8633":1033,"8634":1009,"8635":1033,"8636":1018,"8637":1029,"8638":1020,"8639":1022,"8640":1018,"8641":1030,"8642":1008,"8643":1024,"8644":1018,"8645":1014,"8646":1012,"8647":1016,"8648":1023,"8649":1006,"8650":1023,"8651":1016,"8652":1018,"8653":1016,"8654":1031,"8655":1034,"8656":1013,"8657":1023,"8658":1023,"8659":1020,"8660":1032,"8661":1032,"8662":1016,"8663":1033,"8664":1023,"8665":1008,"8666":1034,"8667":1012,"8668":1010,"8669":1032,"8670":1025,"8671":1023,"8672":1012,"8673":1015,"8674":1012,"8675":1027,"8676":1034,"8677":1026,"8678":1006,"8679":1023,"8680":1031,"8681":1027,"8682":1027,"8683":1017,"8684":1021,"8685":1031,"8686":1008,"8687":1023,"8688":1017,"8689":1016,"8690":1032,"8691":1009,"8692":1022,"8693":1033,"8694":1005,"8695":1020,"8696":1014,"8697":1031,"8698":1020,"8699":1031,"8700":1017,"8701":1032,"8702":1023,"8703":1020,"8704":1028,"8705":1020,"8706":1022,"8707":1031,"8708":1014,"8709":1032,"8710":1021,"8711":1031,"8712":1021,"8713":1024,"8714":1018,"8715":1027,"8716":1027,"8717":1020,"8718":1007,"8719":1027,"8720":1009,"8721":1008,"8722":1027,"8723":1026,"8724":1008,"8725":1029,"8726":1022,"8727":1016,"8728":1025,"8729":1026,"8730":1010,"8731":1026,"8732":1009,"8733":1018,"8734":1010,"8735":1005,"8736":1022,"8737":1012,"8738":1027,"8739":1031,"8740":1006,"8741":1034,"8742":1020,"8743":1031,"8744":1018,"8745":1033,"8746":1022,"8747":1023,"8748":1021,"8749":1034,"8750":1022,"8751":1020,"8752":1032,"8753":1032,"8754":1023,"8755":1008,"8756":1016,"8757":1019,"8758":1034,"8759":1030,"8760":1031,"8761":1022,"8762":1010,"8763":1016,"8764":1026,"8765":1033,"8766":1034,"8767":1034,"8768":1022,"8769":1030,"8770":1020,"8771":1034,"8772":1026,"8773":1015,"8774":1022,"8775":1005,"8776":1011,"8777":1028,"8778":1017,"8779":1032,"8780":1026,"8781":1013,"8782":1016,"8783":1009,"8784":1029,"8785":1021,"8786":1011,"8787":1015,"8788":1013,"8789":1018,"8790":1025,"8791":1023,"8792":1031,"8793":1008,"8794":1034,"8795":1015,"8796":1022,"8797":1031,"8798":1014,"8799":1016,"8800":1013,"8801":1018,"8802":1021,"8803":1012,"8804":1026,"8805":1025,"8806":1016,"8807":1018,"8808":1027,"8809":1016,"8810":1014,"8811":1021,"8812":1024,"8813":1022,"8814":1013,"8815":1018,"8816":1027,"8817":1008,"8818":1023,"8819":1029,"8820":1032,"8821":1010,"8822":1008,"8823":1016,"8824":1012,"8825":1034,"8826":1028,"8827":1022,"8828":1017,"8829":1023,"8830":1018,"8831":1023,"8832":1016,"8833":1022,"8834":1023,"8835":1034,"8836":1016,"8837":1022,"8838":1010,"8839":1020,"8840":1027,"8841":1007,"8842":1022,"8843":1032,"8844":1017,"8845":1005,"8846":1027,"8847":1027,"8848":1026,"8849":1016,"8850":1014,"8851":1018,"8852":1008,"8853":1026,"8854":1017,"8855":1015,"8856":1006,"8857":1022,"8858":1020,"8859":1016,"8860":1021,"8861":1014,"8862":1016,"8863":1025,"8864":1029,"8865":1031,"8866":1015,"8867":1020,"8868":1032,"8869":1023,"8870":1023,"8871":1032,"8872":1032,"8873":1015,"8874":1011,"8875":1022,"8876":1020,"8877":1014,"8878":1020,"8879":1016,"8880":1010,"8881":1029,"8882":1022,"8883":1025,"8884":1013,"8885":1014,"8886":1023,"8887":1032,"8888":1018,"8889":1009,"8890":1027,"8891":1027,"8892":1021,"8893":1026,"8894":1018,"8895":1023,"8896":1025,"8897":1034,"8898":1023,"8899":1034,"8900":1032,"8901":1013,"8902":1025,"8903":1014,"8904":1018,"8905":1016,"8906":1016,"8907":1028,"8908":1029,"8909":1015,"8910":1020,"8911":1022,"8912":1015,"8913":1028,"8914":1033,"8915":1009,"8916":1021,"8917":1015,"8918":1029,"8919":1021,"8920":1018,"8921":1009,"8922":1026,"8923":1014,"8924":1009,"8925":1033,"8926":1023,"8927":1013,"8928":1025,"8929":1022,"8930":1014,"8931":1032,"8932":1023,"8933":1032,"8934":1031,"8935":1023,"8936":1023,"8937":1009,"8938":1010,"8939":1027,"8940":1012,"8941":1020,"8942":1023,"8943":1023,"8944":1017,"8945":1005,"8946":1091,"8947":1106,"8948":1084,"8949":1103,"8950":1111,"8951":1117,"8952":1070,"8953":1064,"8954":1093,"8955":1060,"8956":1065,"8957":1073,"8958":1067,"8959":1092,"8960":1112,"8961":1036,"8962":1060,"8963":1059,"8964":1036,"8965":1117,"8966":1117,"8967":1039,"8968":1043,"8969":1036,"8970":1048,"8971":1080,"8972":1081,"8973":1075,"8974":1064,"8975":1046,"8976":1039,"8977":1086,"8978":1084,"8979":1052,"8980":1090,"8981":1081,"8982":1090,"8983":1100,"8984":1080,"8985":1054,"8986":1081,"8987":1109,"8988":1061,"8989":1081,"8990":1098,"8991":1097,"8992":1048,"8993":1107,"8994":1035,"8995":1092,"8996":1036,"8997":1082,"8998":1081,"8999":1103,"9000":1042,"9001":1079,"9002":1111,"9003":1080,"9004":1064,"9005":1085,"9006":1096,"9007":1084,"9008":1063,"9009":1044,"9010":1077,"9011":1091,"9012":1083,"9013":1076,"9014":1117,"9015":1036,"9016":1047,"9017":1064,"9018":1081,"9019":1046,"9020":1047,"9021":1045,"9022":1109,"9023":1084,"9024":1062,"9025":1046,"9026":1064,"9027":1036,"9028":1104,"9029":1116,"9030":1086,"9031":1044,"9032":1084,"9033":1039,"9034":1047,"9035":1040,"9036":1091,"9037":1068,"9038":1048,"9039":1096,"9040":1035,"9041":1102,"9042":1115,"9043":1036,"9044":1067,"9045":1056,"9046":1098,"9047":1080,"9048":1069,"9049":1114,"9050":1095,"9051":1039,"9052":1042,"9053":1063,"9054":1100,"9055":1081,"9056":1098,"9057":1043,"9058":1109,"9059":1105,"9060":1101,"9061":1047,"9062":1097,"9063":1046,"9064":1068,"9065":1059,"9066":1035,"9067":1068,"9068":1109,"9069":1091,"9070":1052,"9071":1061,"9072":1059,"9073":1049,"9074":1077,"9075":1039,"9076":1092,"9077":1090,"9078":1064,"9079":1070,"9080":1114,"9081":1038,"9082":1110,"9083":1066,"9084":1049,"9085":1061,"9086":1061,"9087":1100,"9088":1077,"9089":1047,"9090":1076,"9091":1051,"9092":1114,"9093":1038,"9094":1080,"9095":1090,"9096":1035,"9097":1059,"9098":1039,"9099":1077,"9100":1099,"9101":1037,"9102":1065,"9103":1095,"9104":1059,"9105":1089,"9106":1087,"9107":1106,"9108":1103,"9109":1108,"9110":1092,"9111":1081,"9112":1044,"9113":1036,"9114":1077,"9115":1086,"9116":1107,"9117":1074,"9118":1111,"9119":1037,"9120":1043,"9121":1071,"9122":1109,"9123":1047,"9124":1100,"9125":1080,"9126":1059,"9127":1054,"9128":1043,"9129":1044,"9130":1035,"9131":1070,"9132":1070,"9133":1063,"9134":1105,"9135":1036,"9136":1047,"9137":1083,"9138":1058,"9139":1100,"9140":1114,"9141":1039,"9142":1104,"9143":1116,"9144":1107,"9145":1047,"9146":1054,"9147":1036,"9148":1064,"9149":1089,"9150":1085,"9151":1064,"9152":1043,"9153":1044,"9154":1064,"9155":1107,"9156":1055,"9157":1081,"9158":1081,"9159":1093,"9160":1111,"9161":1039,"9162":1117,"9163":1089,"9164":1083,"9165":1084,"9166":1070,"9167":1057,"9168":1051,"9169":1115,"9170":1052,"9171":1051,"9172":1084,"9173":1038,"9174":1035,"9175":1090,"9176":1061,"9177":1091,"9178":1050,"9179":1092,"9180":1081,"9181":1061,"9182":1081,"9183":1072,"9184":1082,"9185":1108,"9186":1103,"9187":1081,"9188":1109,"9189":1116,"9190":1111,"9191":1046,"9192":1073,"9193":1114,"9194":1059,"9195":1106,"9196":1067,"9197":1088,"9198":1117,"9199":1035,"9200":1081,"9201":1074,"9202":1037,"9203":1096,"9204":1035,"9205":1045,"9206":1081,"9207":1082,"9208":1110,"9209":1107,"9210":1083,"9211":1077,"9212":1097,"9213":1047,"9214":1092,"9215":1048,"9216":1069,"9217":1073,"9218":1060,"9219":1064,"9220":1084,"9221":1093,"9222":1107,"9223":1060,"9224":1089,"9225":1044,"9226":1101,"9227":1100,"9228":1076,"9229":1096,"9230":1100,"9231":1064,"9232":1106,"9233":1084,"9234":1048,"9235":1083,"9236":1090,"9237":1081,"9238":1068,"9239":1060,"9240":1035,"9241":1066,"9242":1065,"9243":1109,"9244":1035,"9245":1063,"9246":1059,"9247":1061,"9248":1046,"9249":1036,"9250":1081,"9251":1070,"9252":1035,"9253":1082,"9254":1072,"9255":1038,"9256":1059,"9257":1089,"9258":1064,"9259":1067,"9260":1110,"9261":1061,"9262":1099,"9263":1081,"9264":1110,"9265":1058,"9266":1047,"9267":1098,"9268":1086,"9269":1108,"9270":1097,"9271":1095,"9272":1048,"9273":1071,"9274":1064,"9275":1107,"9276":1039,"9277":1108,"9278":1084,"9279":1047,"9280":1052,"9281":1067,"9282":1074,"9283":1051,"9284":1052,"9285":1079,"9286":1091,"9287":1093,"9288":1036,"9289":1099,"9290":1103,"9291":1036,"9292":1092,"9293":1074,"9294":1086,"9295":1047,"9296":1083,"9297":1081,"9298":1111,"9299":1092,"9300":1117,"9301":1084,"9302":1051,"9303":1097,"9304":1111,"9305":1111,"9306":1059,"9307":1036,"9308":1045,"9309":1054,"9310":1083,"9311":1039,"9312":1114,"9313":1067,"9314":1035,"9315":1117,"9316":1117,"9317":1112,"9318":1081,"9319":1048,"9320":1059,"9321":1070,"9322":1061,"9323":1050,"9324":1097,"9325":1061,"9326":1059,"9327":1070,"9328":1081,"9329":1109,"9330":1047,"9331":1061,"9332":1036,"9333":1086,"9334":1037,"9335":1115,"9336":1080,"9337":1043,"9338":1084,"9339":1112,"9340":1050,"9341":1037,"9342":1063,"9343":1104,"9344":1114,"9345":1047,"9346":1113,"9347":1092,"9348":1090,"9349":1092,"9350":1092,"9351":1082,"9352":1098,"9353":1083,"9354":1035,"9355":1037,"9356":1053,"9357":1036,"9358":1070,"9359":1047,"9360":1094,"9361":1066,"9362":1107,"9363":1070,"9364":1103,"9365":1058,"9366":1059,"9367":1035,"9368":1081,"9369":1110,"9370":1113,"9371":1078,"9372":1062,"9373":1070,"9374":1047,"9375":1100,"9376":1064,"9377":1073,"9378":1039,"9379":1064,"9380":1064,"9381":1063,"9382":1078,"9383":1099,"9384":1058,"9385":1066,"9386":1100,"9387":1068,"9388":1038,"9389":1104,"9390":1035,"9391":1088,"9392":1039,"9393":1108,"9394":1057,"9395":1093,"9396":1103,"9397":1071,"9398":1051,"9399":1048,"9400":1036,"9401":1098,"9402":1100,"9403":1093,"9404":1104,"9405":1111,"9406":1091,"9407":1047,"9408":1109,"9409":1114,"9410":1052,"9411":1107,"9412":1071,"9413":1090,"9414":1039,"9415":1045,"9416":1095,"9417":1059,"9418":1061,"9419":1109,"9420":1064,"9421":1046,"9422":1046,"9423":1049,"9424":1070,"9425":1086,"9426":1114,"9427":1108,"9428":1073,"9429":1092,"9430":1045,"9431":1069,"9432":1046,"9433":1077,"9434":1084,"9435":1107,"9436":1087,"9437":1076,"9438":1057,"9439":1081,"9440":1077,"9441":1081,"9442":1091,"9443":1107,"9444":1060,"9445":1074,"9446":1058,"9447":1081,"9448":1036,"9449":1037,"9450":1097,"9451":1074,"9452":1040,"9453":1035,"9454":1077,"9455":1064,"9456":1076,"9457":1110,"9458":1082,"9459":1084,"9460":1105,"9461":1052,"9462":1035,"9463":1047,"9464":1067,"9465":1044,"9466":1052,"9467":1059,"9468":1067,"9469":1044,"9470":1088,"9471":1081,"9472":1038,"9473":1047,"9474":1068,"9475":1068,"9476":1098,"9477":1044,"9478":1058,"9479":1110,"9480":1071,"9481":1103,"9482":1038,"9483":1048,"9484":1097,"9485":1073,"9486":1042,"9487":1059,"9488":1052,"9489":1081,"9490":1053,"9491":1097,"9492":1076,"9493":1059,"9494":1070,"9495":1108,"9496":1035,"9497":1117,"9498":1114,"9499":1042,"9500":1059,"9501":1074,"9502":1055,"9503":1111,"9504":1082,"9505":1053,"9506":1096,"9507":1047,"9508":1054,"9509":1091,"9510":1117,"9511":1098,"9512":1095,"9513":1049,"9514":1056,"9515":1113,"9516":1060,"9517":1046,"9518":1103,"9519":1109,"9520":1055,"9521":1036,"9522":1059,"9523":1109,"9524":1044,"9525":1114,"9526":1035,"9527":1078,"9528":1110,"9529":1064,"9530":1080,"9531":1035,"9532":1075,"9533":1070,"9534":1074,"9535":1044,"9536":1051,"9537":1047,"9538":1036,"9539":1104,"9540":1107,"9541":1070,"9542":1095,"9543":1081,"9544":1084,"9545":1111,"9546":1047,"9547":1109,"9548":1063,"9549":1117,"9550":1109,"9551":1111,"9552":1039,"9553":1059,"9554":1036,"9555":1092,"9556":1081,"9557":1096,"9558":1044,"9559":1103,"9560":1081,"9561":1059,"9562":1070,"9563":1067,"9564":1102,"9565":1117,"9566":1100,"9567":1100,"9568":1074,"9569":1093,"9570":1044,"9571":1081,"9572":1036,"9573":1056,"9574":1040,"9575":1067,"9576":1047,"9577":1064,"9578":1073,"9579":1095,"9580":1064,"9581":1073,"9582":1047,"9583":1057,"9584":1090,"9585":1110,"9586":1039,"9587":1052,"9588":1108,"9589":1100,"9590":1103,"9591":1059,"9592":1061,"9593":1037,"9594":1060,"9595":1084,"9596":1095,"9597":1052,"9598":1036,"9599":1047,"9600":1105,"9601":1109,"9602":1041,"9603":1109,"9604":1084,"9605":1090,"9606":1078,"9607":1121,"9608":1122,"9609":1122,"9610":1122,"9611":1120,"9612":1119,"9613":1120,"9614":1120,"9615":1126,"9616":1121,"9617":1121,"9618":1122,"9619":1122,"9620":1126,"9621":1120,"9622":1121,"9623":1119,"9624":1122,"9625":1120,"9626":1120,"9627":1122,"9628":1121,"9629":1121,"9630":1122,"9631":1120,"9632":1124,"9633":1118,"9634":1123,"9635":1123,"9636":1126,"9637":1120,"9638":1120,"9639":1126,"9640":1127,"9641":1126,"9642":1125,"9643":1121,"9644":1119,"9645":1126,"9646":1126,"9647":1124,"9648":1123,"9649":1121,"9650":1126,"9651":1122,"9652":1127,"9653":1126,"9654":1122,"9655":1126,"9656":1120,"9657":1126,"9658":1118,"9659":1129,"9660":1131,"9661":1130,"9662":1129,"9663":1129,"9664":1130,"9665":1128,"9666":1130,"9667":1128,"9668":1129,"9669":1130,"9670":1131,"9671":1130,"9672":1131,"9673":1130,"9674":1131,"9675":1129,"9676":1131,"9677":1128,"9678":1131,"9679":1130,"9680":1128,"9681":1131,"9682":1131,"9683":1128,"9684":1131,"9685":1128,"9686":1130,"9687":1129,"9688":1128,"9689":1130,"9690":1130,"9691":1128,"9692":1128,"9693":1128,"9694":1128,"9695":1128,"9696":1128,"9697":1138,"9698":1178,"9699":1152,"9700":1186,"9701":1184,"9702":1177,"9703":1192,"9704":1193,"9705":1186,"9706":1139,"9707":1148,"9708":1150,"9709":1184,"9710":1168,"9711":1170,"9712":1134,"9713":1182,"9714":1170,"9715":1144,"9716":1147,"9717":1183,"9718":1136,"9719":1172,"9720":1186,"9721":1149,"9722":1175,"9723":1156,"9724":1183,"9725":1171,"9726":1160,"9727":1153,"9728":1167,"9729":1156,"9730":1189,"9731":1190,"9732":1178,"9733":1149,"9734":1155,"9735":1186,"9736":1155,"9737":1155,"9738":1172,"9739":1171,"9740":1173,"9741":1187,"9742":1140,"9743":1186,"9744":1133,"9745":1153,"9746":1156,"9747":1156,"9748":1189,"9749":1167,"9750":1196,"9751":1186,"9752":1173,"9753":1186,"9754":1191,"9755":1151,"9756":1187,"9757":1133,"9758":1170,"9759":1142,"9760":1192,"9761":1135,"9762":1144,"9763":1183,"9764":1153,"9765":1153,"9766":1147,"9767":1146,"9768":1163,"9769":1174,"9770":1141,"9771":1170,"9772":1158,"9773":1186,"9774":1136,"9775":1139,"9776":1152,"9777":1192,"9778":1179,"9779":1163,"9780":1167,"9781":1184,"9782":1167,"9783":1180,"9784":1186,"9785":1153,"9786":1133,"9787":1192,"9788":1153,"9789":1163,"9790":1175,"9791":1153,"9792":1161,"9793":1167,"9794":1189,"9795":1139,"9796":1153,"9797":1156,"9798":1156,"9799":1156,"9800":1168,"9801":1170,"9802":1140,"9803":1177,"9804":1155,"9805":1153,"9806":1172,"9807":1195,"9808":1186,"9809":1158,"9810":1190,"9811":1184,"9812":1170,"9813":1171,"9814":1172,"9815":1147,"9816":1157,"9817":1133,"9818":1170,"9819":1153,"9820":1187,"9821":1138,"9822":1191,"9823":1156,"9824":1194,"9825":1165,"9826":1134,"9827":1189,"9828":1141,"9829":1190,"9830":1156,"9831":1140,"9832":1190,"9833":1139,"9834":1153,"9835":1189,"9836":1186,"9837":1174,"9838":1172,"9839":1191,"9840":1170,"9841":1136,"9842":1182,"9843":1156,"9844":1194,"9845":1156,"9846":1156,"9847":1168,"9848":1156,"9849":1137,"9850":1144,"9851":1181,"9852":1137,"9853":1161,"9854":1188,"9855":1171,"9856":1153,"9857":1158,"9858":1167,"9859":1153,"9860":1166,"9861":1186,"9862":1194,"9863":1177,"9864":1153,"9865":1153,"9866":1155,"9867":1169,"9868":1153,"9869":1153,"9870":1177,"9871":1146,"9872":1153,"9873":1195,"9874":1154,"9875":1143,"9876":1189,"9877":1173,"9878":1172,"9879":1190,"9880":1168,"9881":1141,"9882":1146,"9883":1184,"9884":1152,"9885":1150,"9886":1188,"9887":1188,"9888":1134,"9889":1170,"9890":1155,"9891":1153,"9892":1172,"9893":1185,"9894":1154,"9895":1163,"9896":1177,"9897":1159,"9898":1160,"9899":1134,"9900":1156,"9901":1186,"9902":1169,"9903":1194,"9904":1151,"9905":1188,"9906":1156,"9907":1137,"9908":1153,"9909":1186,"9910":1141,"9911":1168,"9912":1186,"9913":1156,"9914":1142,"9915":1171,"9916":1153,"9917":1168,"9918":1194,"9919":1192,"9920":1165,"9921":1136,"9922":1136,"9923":1186,"9924":1184,"9925":1168,"9926":1172,"9927":1184,"9928":1168,"9929":1179,"9930":1155,"9931":1169,"9932":1188,"9933":1142,"9934":1133,"9935":1153,"9936":1136,"9937":1186,"9938":1134,"9939":1172,"9940":1194,"9941":1190,"9942":1156,"9943":1169,"9944":1185,"9945":1166,"9946":1139,"9947":1142,"9948":1156,"9949":1175,"9950":1189,"9951":1189,"9952":1190,"9953":1165,"9954":1196,"9955":1136,"9956":1143,"9957":1178,"9958":1147,"9959":1174,"9960":1170,"9961":1143,"9962":1146,"9963":1185,"9964":1177,"9965":1190,"9966":1171,"9967":1184,"9968":1169,"9969":1191,"9970":1149,"9971":1186,"9972":1149,"9973":1185,"9974":1135,"9975":1134,"9976":1156,"9977":1175,"9978":1191,"9979":1150,"9980":1133,"9981":1134,"9982":1136,"9983":1183,"9984":1192,"9985":1172,"9986":1190,"9987":1135,"9988":1189,"9989":1171,"9990":1149,"9991":1176,"9992":1196,"9993":1132,"9994":1196,"9995":1137,"9996":1193,"9997":1150,"9998":1140,"9999":1185,"10000":1172,"10001":1156,"10002":1174,"10003":1189,"10004":1184,"10005":1194,"10006":1175,"10007":1194,"10008":1168,"10009":1155,"10010":1145,"10011":1171,"10012":1153,"10013":1178,"10014":1189,"10015":1170,"10016":1189,"10017":1135,"10018":1184,"10019":1177,"10020":1153,"10021":1153,"10022":1149,"10023":1189,"10024":1194,"10025":1182,"10026":1139,"10027":1185,"10028":1156,"10029":1152,"10030":1170,"10031":1148,"10032":1172,"10033":1141,"10034":1181,"10035":1169,"10036":1141,"10037":1151,"10038":1132,"10039":1142,"10040":1182,"10041":1190,"10042":1177,"10043":1190,"10044":1152,"10045":1141,"10046":1163,"10047":1191,"10048":1135,"10049":1161,"10050":1136,"10051":1191,"10052":1175,"10053":1156,"10054":1158,"10055":1168,"10056":1152,"10057":1150,"10058":1140,"10059":1153,"10060":1144,"10061":1171,"10062":1172,"10063":1161,"10064":1187,"10065":1177,"10066":1156,"10067":1156,"10068":1177,"10069":1194,"10070":1157,"10071":1148,"10072":1174,"10073":1169,"10074":1185,"10075":1134,"10076":1135,"10077":1156,"10078":1132,"10079":1154,"10080":1179,"10081":1180,"10082":1151,"10083":1170,"10084":1194,"10085":1184,"10086":1157,"10087":1182,"10088":1189,"10089":1154,"10090":1184,"10091":1185,"10092":1186,"10093":1194,"10094":1143,"10095":1152,"10096":1169,"10097":1171,"10098":1169,"10099":1156,"10100":1140,"10101":1156,"10102":1183,"10103":1172,"10104":1158,"10105":1190,"10106":1194,"10107":1156,"10108":1183,"10109":1140,"10110":1152,"10111":1187,"10112":1192,"10113":1189,"10114":1187,"10115":1180,"10116":1153,"10117":1133,"10118":1156,"10119":1189,"10120":1168,"10121":1155,"10122":1136,"10123":1138,"10124":1136,"10125":1182,"10126":1190,"10127":1175,"10128":1139,"10129":1137,"10130":1141,"10131":1190,"10132":1184,"10133":1172,"10134":1153,"10135":1186,"10136":1170,"10137":1177,"10138":1134,"10139":1190,"10140":1164,"10141":1136,"10142":1181,"10143":1137,"10144":1162,"10145":1154,"10146":1182,"10147":1184,"10148":1169,"10149":1155,"10150":1165,"10151":1156,"10152":1189,"10153":1150,"10154":1182,"10155":1170,"10156":1176,"10157":1191,"10158":1189,"10159":1155,"10160":1156,"10161":1184,"10162":1148,"10163":1192,"10164":1182,"10165":1184,"10166":1194,"10167":1187,"10168":1174,"10169":1170,"10170":1160,"10171":1194,"10172":1189,"10173":1152,"10174":1149,"10175":1183,"10176":1178,"10177":1178,"10178":1136,"10179":1169,"10180":1139,"10181":1168,"10182":1157,"10183":1181,"10184":1133,"10185":1195,"10186":1149,"10187":1151,"10188":1142,"10189":1186,"10190":1164,"10191":1133,"10192":1150,"10193":1189,"10194":1140,"10195":1153,"10196":1157,"10197":1188,"10198":1165,"10199":1192,"10200":1141,"10201":1167,"10202":1153,"10203":1153,"10204":1168,"10205":1139,"10206":1176,"10207":1171,"10208":1194,"10209":1192,"10210":1160,"10211":1134,"10212":1187,"10213":1168,"10214":1172,"10215":1187,"10216":1168,"10217":1171,"10218":1142,"10219":1186,"10220":1153,"10221":1189,"10222":1136,"10223":1135,"10224":1149,"10225":1173,"10226":1178,"10227":1172,"10228":1184,"10229":1189,"10230":1140,"10231":1172,"10232":1138,"10233":1187,"10234":1136,"10235":1153,"10236":1175,"10237":1133,"10238":1195,"10239":1139,"10240":1177,"10241":1133,"10242":1194,"10243":1161,"10244":1168,"10245":1194,"10246":1184,"10247":1172,"10248":1144,"10249":1190,"10250":1177,"10251":1177,"10252":1190,"10253":1152,"10254":1194,"10255":1192,"10256":1170,"10257":1148,"10258":1147,"10259":1142,"10260":1168,"10261":1187,"10262":1140,"10263":1195,"10264":1166,"10265":1139,"10266":1185,"10267":1156,"10268":1187,"10269":1135,"10270":1155,"10271":1184,"10272":1161,"10273":1170,"10274":1191,"10275":1136,"10276":1140,"10277":1177,"10278":1168,"10279":1168,"10280":1153,"10281":1186,"10282":1140,"10283":1150,"10284":1172,"10285":1153,"10286":1136,"10287":1143,"10288":1168,"10289":1185,"10290":1151,"10291":1185,"10292":1188,"10293":1182,"10294":1184,"10295":1150,"10296":1185,"10297":1170,"10298":1149,"10299":1141,"10300":1140,"10301":1177,"10302":1137,"10303":1194,"10304":1170,"10305":1177,"10306":1194,"10307":1168,"10308":1185,"10309":1186,"10310":1184,"10311":1197,"10312":1236,"10313":1205,"10314":1244,"10315":1243,"10316":1216,"10317":1201,"10318":1222,"10319":1220,"10320":1223,"10321":1241,"10322":1213,"10323":1230,"10324":1247,"10325":1214,"10326":1210,"10327":1220,"10328":1210,"10329":1226,"10330":1213,"10331":1234,"10332":1199,"10333":1230,"10334":1245,"10335":1199,"10336":1213,"10337":1220,"10338":1240,"10339":1222,"10340":1247,"10341":1234,"10342":1243,"10343":1235,"10344":1217,"10345":1231,"10346":1227,"10347":1246,"10348":1211,"10349":1205,"10350":1211,"10351":1211,"10352":1216,"10353":1233,"10354":1235,"10355":1238,"10356":1233,"10357":1221,"10358":1206,"10359":1238,"10360":1203,"10361":1235,"10362":1215,"10363":1217,"10364":1240,"10365":1232,"10366":1246,"10367":1224,"10368":1204,"10369":1214,"10370":1213,"10371":1207,"10372":1241,"10373":1220,"10374":1237,"10375":1227,"10376":1210,"10377":1239,"10378":1216,"10379":1247,"10380":1234,"10381":1237,"10382":1246,"10383":1199,"10384":1231,"10385":1197,"10386":1213,"10387":1231,"10388":1218,"10389":1246,"10390":1222,"10391":1243,"10392":1225,"10393":1210,"10394":1208,"10395":1230,"10396":1228,"10397":1226,"10398":1205,"10399":1201,"10400":1245,"10401":1240,"10402":1242,"10403":1215,"10404":1200,"10405":1199,"10406":1202,"10407":1217,"10408":1248,"10409":1215,"10410":1199,"10411":1222,"10412":1224,"10413":1247,"10414":1221,"10415":1207,"10416":1227,"10417":1201,"10418":1231,"10419":1219,"10420":1222,"10421":1220,"10422":1225,"10423":1200,"10424":1212,"10425":1210,"10426":1234,"10427":1212,"10428":1241,"10429":1227,"10430":1238,"10431":1225,"10432":1240,"10433":1213,"10434":1200,"10435":1225,"10436":1197,"10437":1222,"10438":1209,"10439":1245,"10440":1246,"10441":1207,"10442":1235,"10443":1199,"10444":1235,"10445":1238,"10446":1232,"10447":1201,"10448":1233,"10449":1210,"10450":1242,"10451":1220,"10452":1225,"10453":1199,"10454":1240,"10455":1232,"10456":1204,"10457":1241,"10458":1230,"10459":1224,"10460":1229,"10461":1227,"10462":1206,"10463":1227,"10464":1204,"10465":1240,"10466":1198,"10467":1227,"10468":1225,"10469":1197,"10470":1210,"10471":1241,"10472":1234,"10473":1239,"10474":1225,"10475":1221,"10476":1222,"10477":1243,"10478":1211,"10479":1240,"10480":1226,"10481":1245,"10482":1202,"10483":1207,"10484":1229,"10485":1212,"10486":1228,"10487":1245,"10488":1224,"10489":1200,"10490":1232,"10491":1247,"10492":1236,"10493":1246,"10494":1228,"10495":1221,"10496":1213,"10497":1216,"10498":1268,"10499":1280,"10500":1282,"10501":1267,"10502":1283,"10503":1286,"10504":1293,"10505":1257,"10506":1297,"10507":1289,"10508":1253,"10509":1278,"10510":1250,"10511":1267,"10512":1272,"10513":1271,"10514":1256,"10515":1289,"10516":1281,"10517":1266,"10518":1297,"10519":1291,"10520":1289,"10521":1253,"10522":1267,"10523":1291,"10524":1296,"10525":1270,"10526":1267,"10527":1250,"10528":1278,"10529":1286,"10530":1281,"10531":1286,"10532":1290,"10533":1285,"10534":1286,"10535":1256,"10536":1253,"10537":1255,"10538":1253,"10539":1283,"10540":1272,"10541":1267,"10542":1280,"10543":1252,"10544":1268,"10545":1253,"10546":1282,"10547":1254,"10548":1250,"10549":1250,"10550":1296,"10551":1281,"10552":1249,"10553":1284,"10554":1286,"10555":1256,"10556":1256,"10557":1280,"10558":1251,"10559":1290,"10560":1272,"10561":1261,"10562":1270,"10563":1268,"10564":1257,"10565":1256,"10566":1277,"10567":1283,"10568":1295,"10569":1256,"10570":1286,"10571":1264,"10572":1261,"10573":1267,"10574":1268,"10575":1288,"10576":1267,"10577":1282,"10578":1253,"10579":1293,"10580":1276,"10581":1279,"10582":1279,"10583":1287,"10584":1268,"10585":1267,"10586":1294,"10587":1282,"10588":1279,"10589":1257,"10590":1252,"10591":1285,"10592":1273,"10593":1282,"10594":1255,"10595":1270,"10596":1256,"10597":1272,"10598":1295,"10599":1272,"10600":1267,"10601":1290,"10602":1273,"10603":1297,"10604":1297,"10605":1283,"10606":1288,"10607":1280,"10608":1278,"10609":1262,"10610":1271,"10611":1288,"10612":1297,"10613":1286,"10614":1289,"10615":1272,"10616":1250,"10617":1255,"10618":1267,"10619":1287,"10620":1294,"10621":1289,"10622":1268,"10623":1287,"10624":1278,"10625":1272,"10626":1291,"10627":1273,"10628":1283,"10629":1271,"10630":1275,"10631":1271,"10632":1282,"10633":1280,"10634":1286,"10635":1258,"10636":1251,"10637":1280,"10638":1255,"10639":1280,"10640":1291,"10641":1295,"10642":1249,"10643":1261,"10644":1267,"10645":1295,"10646":1257,"10647":1290,"10648":1284,"10649":1257,"10650":1297,"10651":1257,"10652":1250,"10653":1272,"10654":1264,"10655":1257,"10656":1257,"10657":1266,"10658":1292,"10659":1255,"10660":1268,"10661":1252,"10662":1289,"10663":1255,"10664":1289,"10665":1257,"10666":1267,"10667":1277,"10668":1271,"10669":1268,"10670":1262,"10671":1277,"10672":1270,"10673":1293,"10674":1290,"10675":1276,"10676":1268,"10677":1250,"10678":1278,"10679":1287,"10680":1268,"10681":1270,"10682":1286,"10683":1285,"10684":1273,"10685":1296,"10686":1265,"10687":1276,"10688":1283,"10689":1257,"10690":1294,"10691":1267,"10692":1261,"10693":1273,"10694":1269,"10695":1257,"10696":1286,"10697":1257,"10698":1286,"10699":1255,"10700":1263,"10701":1290,"10702":1271,"10703":1283,"10704":1271,"10705":1272,"10706":1282,"10707":1267,"10708":1282,"10709":1281,"10710":1250,"10711":1287,"10712":1274,"10713":1286,"10714":1256,"10715":1286,"10716":1272,"10717":1279,"10718":1267,"10719":1259,"10720":1267,"10721":1283,"10722":1286,"10723":1286,"10724":1267,"10725":1280,"10726":1286,"10727":1275,"10728":1282,"10729":1288,"10730":1290,"10731":1257,"10732":1256,"10733":1287,"10734":1259,"10735":1278,"10736":1282,"10737":1267,"10738":1257,"10739":1289,"10740":1251,"10741":1253,"10742":1267,"10743":1292,"10744":1261,"10745":1271,"10746":1276,"10747":1262,"10748":1255,"10749":1283,"10750":1250,"10751":1297,"10752":1271,"10753":1288,"10754":1294,"10755":1290,"10756":1264,"10757":1262,"10758":1289,"10759":1286,"10760":1291,"10761":1272,"10762":1261,"10763":1255,"10764":1286,"10765":1262,"10766":1297,"10767":1280,"10768":1286,"10769":1291,"10770":1256,"10771":1255,"10772":1285,"10773":1257,"10774":1282,"10775":1265,"10776":1285,"10777":1283,"10778":1272,"10779":1295,"10780":1256,"10781":1286,"10782":1283,"10783":1278,"10784":1271,"10785":1297,"10786":1267,"10787":1250,"10788":1267,"10789":1255,"10790":1266,"10791":1277,"10792":1273,"10793":1280,"10794":1277,"10795":1286,"10796":1250,"10797":1283,"10798":1270,"10799":1275,"10800":1288,"10801":1255,"10802":1267,"10803":1253,"10804":1279,"10805":1291,"10806":1286,"10807":1282,"10808":1295,"10809":1272,"10810":1288,"10811":1282,"10812":1294,"10813":1286,"10814":1277,"10815":1277,"10816":1291,"10817":1272,"10818":1271,"10819":1295,"10820":1269,"10821":1268,"10822":1280,"10823":1292,"10824":1271,"10825":1267,"10826":1253,"10827":1271,"10828":1270,"10829":1271,"10830":1277,"10831":1269,"10832":1273,"10833":1297,"10834":1285,"10835":1271,"10836":1297,"10837":1268,"10838":1267,"10839":1255,"10840":1259,"10841":1273,"10842":1272,"10843":1270,"10844":1280,"10845":1273,"10846":1268,"10847":1286,"10848":1255,"10849":1282,"10850":1255,"10851":1286,"10852":1267,"10853":1257,"10854":1262,"10855":1250,"10856":1274,"10857":1282,"10858":1274,"10859":1264,"10860":1288,"10861":1269,"10862":1261,"10863":1251,"10864":1280,"10865":1267,"10866":1253,"10867":1286,"10868":1274,"10869":1257,"10870":1257,"10871":1276,"10872":1261,"10873":1255,"10874":1288,"10875":1255,"10876":1254,"10877":1250,"10878":1286,"10879":1255,"10880":1288,"10881":1265,"10882":1281,"10883":1270,"10884":1277,"10885":1284,"10886":1267,"10887":1280,"10888":1260,"10889":1257,"10890":1290,"10891":1297,"10892":1273,"10893":1263,"10894":1255,"10895":1256,"10896":1277,"10897":1277,"10898":1278,"10899":1280,"10900":1254,"10901":1281,"10902":1283,"10903":1252,"10904":1267,"10905":1269,"10906":1250,"10907":1295,"10908":1266,"10909":1267,"10910":1257,"10911":1271,"10912":1269,"10913":1284,"10914":1286,"10915":1288,"10916":1283,"10917":1283,"10918":1295,"10919":1257,"10920":1270,"10921":1283,"10922":1275,"10923":1290,"10924":1276,"10925":1286,"10926":1290,"10927":1274,"10928":1271,"10929":1256,"10930":1283,"10931":1286,"10932":1267,"10933":1282,"10934":1289,"10935":1280,"10936":1290,"10937":1257,"10938":1290,"10939":1267,"10940":1275,"10941":1288,"10942":1295,"10943":1285,"10944":1273,"10945":1261,"10946":1290,"10947":1286,"10948":1267,"10949":1286,"10950":1288,"10951":1269,"10952":1250,"10953":1286,"10954":1287,"10955":1280,"10956":1259,"10957":1272,"10958":1258,"10959":1255,"10960":1267,"10961":1283,"10962":1270,"10963":1272,"10964":1273,"10965":1292,"10966":1288,"10967":1250,"10968":1276,"10969":1259,"10970":1260,"10971":1277,"10972":1281,"10973":1267,"10974":1280,"10975":1280,"10976":1290,"10977":1250,"10978":1257,"10979":1260,"10980":1254,"10981":1267,"10982":1273,"10983":1268,"10984":1253,"10985":1280,"10986":1290,"10987":1257,"10988":1273,"10989":1280,"10990":1276,"10991":1272,"10992":1276,"10993":1267,"10994":1288,"10995":1288,"10996":1273},"commfacid":{"0":1591,"1":1591,"2":1590,"3":1590,"4":1590,"5":1591,"6":1591,"7":1591,"8":1591,"9":1590,"10":1590,"11":1591,"12":1590,"13":1590,"14":1591,"15":1590,"16":1591,"17":1591,"18":1590,"19":1591,"20":1591,"21":1590,"22":1590,"23":1591,"24":1591,"25":1590,"26":1591,"27":1590,"28":1590,"29":1590,"30":1591,"31":1590,"32":1590,"33":1590,"34":1591,"35":1591,"36":1590,"37":1590,"38":1590,"39":1591,"40":1591,"41":1590,"42":1590,"43":1591,"44":1590,"45":1590,"46":1590,"47":1590,"48":1591,"49":1590,"50":1591,"51":1590,"52":1591,"53":1590,"54":1591,"55":1590,"56":1590,"57":1591,"58":1591,"59":1591,"60":1590,"61":1590,"62":1591,"63":1590,"64":1590,"65":1591,"66":1591,"67":1591,"68":1591,"69":1591,"70":1590,"71":1591,"72":1590,"73":1591,"74":1590,"75":1591,"76":1590,"77":1590,"78":1591,"79":1590,"80":1591,"81":1591,"82":1591,"83":1591,"84":1590,"85":1591,"86":1591,"87":1591,"88":1590,"89":1590,"90":1590,"91":1590,"92":1590,"93":1590,"94":1590,"95":1591,"96":1590,"97":1591,"98":1590,"99":1591,"100":1591,"101":1591,"102":1590,"103":1590,"104":1590,"105":1590,"106":1591,"107":1591,"108":1590,"109":1590,"110":1591,"111":1590,"112":1591,"113":1591,"114":1590,"115":1590,"116":1591,"117":1590,"118":1591,"119":1591,"120":1591,"121":1590,"122":1590,"123":1590,"124":1591,"125":1590,"126":1591,"127":1591,"128":1591,"129":1590,"130":1590,"131":1591,"132":1590,"133":1591,"134":1591,"135":1591,"136":1590,"137":1591,"138":1590,"139":1591,"140":1591,"141":1591,"142":1591,"143":1591,"144":1591,"145":1590,"146":1590,"147":1591,"148":1590,"149":1591,"150":1591,"151":1591,"152":1591,"153":1591,"154":1590,"155":1591,"156":1590,"157":1590,"158":1590,"159":1591,"160":1590,"161":1590,"162":1590,"163":1591,"164":1590,"165":1591,"166":1591,"167":1591,"168":1590,"169":1590,"170":1591,"171":1591,"172":1590,"173":1590,"174":1590,"175":1590,"176":1591,"177":1590,"178":1591,"179":1591,"180":1591,"181":1590,"182":1591,"183":1590,"184":1591,"185":1590,"186":1591,"187":1591,"188":1591,"189":1590,"190":1591,"191":1590,"192":1590,"193":1590,"194":1591,"195":1590,"196":1590,"197":1590,"198":1590,"199":1590,"200":1591,"201":1591,"202":1590,"203":1591,"204":1590,"205":1590,"206":1590,"207":1590,"208":1590,"209":1590,"210":1590,"211":1590,"212":1591,"213":1590,"214":1590,"215":1590,"216":1590,"217":1591,"218":1590,"219":1590,"220":1591,"221":1590,"222":1591,"223":1591,"224":1590,"225":1591,"226":1590,"227":1591,"228":1591,"229":1590,"230":1590,"231":1591,"232":1590,"233":1591,"234":1591,"235":1590,"236":1590,"237":1591,"238":1590,"239":1590,"240":1591,"241":1590,"242":1590,"243":1590,"244":1591,"245":1590,"246":1591,"247":1591,"248":1591,"249":1591,"250":1591,"251":1591,"252":1591,"253":1590,"254":1591,"255":1590,"256":1590,"257":1590,"258":1590,"259":1591,"260":1591,"261":1591,"262":1591,"263":1590,"264":1590,"265":1591,"266":1591,"267":1590,"268":1591,"269":1591,"270":1590,"271":1591,"272":1591,"273":1590,"274":1591,"275":1590,"276":1590,"277":1591,"278":1590,"279":1591,"280":1590,"281":1591,"282":1590,"283":1591,"284":1591,"285":1590,"286":1591,"287":1590,"288":1591,"289":1591,"290":1591,"291":1590,"292":1590,"293":1590,"294":1591,"295":1591,"296":1590,"297":1590,"298":1591,"299":1590,"300":1590,"301":1590,"302":1591,"303":1591,"304":1591,"305":1590,"306":1591,"307":1590,"308":1590,"309":1591,"310":1591,"311":1591,"312":1591,"313":1590,"314":1590,"315":1591,"316":1591,"317":1591,"318":1590,"319":1591,"320":1591,"321":1591,"322":1590,"323":1591,"324":1590,"325":1590,"326":1591,"327":1591,"328":1591,"329":1590,"330":1591,"331":1590,"332":1591,"333":1591,"334":1591,"335":1590,"336":1591,"337":1590,"338":1591,"339":1590,"340":1590,"341":1590,"342":1590,"343":1590,"344":1591,"345":1590,"346":1591,"347":1591,"348":1590,"349":1591,"350":1590,"351":1591,"352":1591,"353":1590,"354":1591,"355":1591,"356":1590,"357":1591,"358":1591,"359":1591,"360":1590,"361":1590,"362":1590,"363":1591,"364":1590,"365":1590,"366":1591,"367":1591,"368":1591,"369":1591,"370":1591,"371":1590,"372":1590,"373":1591,"374":1591,"375":1590,"376":1591,"377":1591,"378":1590,"379":1591,"380":1591,"381":1590,"382":1590,"383":1591,"384":1591,"385":1590,"386":1590,"387":1590,"388":1591,"389":1591,"390":1591,"391":1591,"392":1591,"393":1590,"394":1591,"395":1591,"396":1591,"397":1590,"398":1590,"399":1590,"400":1591,"401":1590,"402":1590,"403":1590,"404":1591,"405":1590,"406":1591,"407":1590,"408":1590,"409":1591,"410":1590,"411":1590,"412":1590,"413":1590,"414":1591,"415":1591,"416":1590,"417":1591,"418":1590,"419":1590,"420":1590,"421":1590,"422":1591,"423":1591,"424":1591,"425":1590,"426":1591,"427":1591,"428":1590,"429":1590,"430":1590,"431":1591,"432":1591,"433":1590,"434":1591,"435":1591,"436":1591,"437":1590,"438":1591,"439":1591,"440":1590,"441":1590,"442":1590,"443":1591,"444":1590,"445":1590,"446":1591,"447":1591,"448":1590,"449":1591,"450":1590,"451":1590,"452":1590,"453":1591,"454":1591,"455":1591,"456":1590,"457":1590,"458":1590,"459":1591,"460":1591,"461":1591,"462":1591,"463":1591,"464":1591,"465":1591,"466":1591,"467":1591,"468":1590,"469":1590,"470":1590,"471":1591,"472":1590,"473":1590,"474":1590,"475":1590,"476":1590,"477":1591,"478":1590,"479":1591,"480":1590,"481":1590,"482":1591,"483":1591,"484":1590,"485":1590,"486":1590,"487":1591,"488":1591,"489":1590,"490":1590,"491":1590,"492":1590,"493":1591,"494":1590,"495":1591,"496":1590,"497":1590,"498":1590,"499":1590,"500":1590,"501":1590,"502":1590,"503":1590,"504":1590,"505":1590,"506":1591,"507":1590,"508":1590,"509":1591,"510":1590,"511":1591,"512":1590,"513":1590,"514":1591,"515":1591,"516":1591,"517":1590,"518":1591,"519":1591,"520":1590,"521":1591,"522":1591,"523":1590,"524":1591,"525":1591,"526":1591,"527":1591,"528":1591,"529":1590,"530":1591,"531":1591,"532":1590,"533":1591,"534":1590,"535":1591,"536":1590,"537":1590,"538":1590,"539":1590,"540":1591,"541":1591,"542":1590,"543":1590,"544":1591,"545":1591,"546":1591,"547":1590,"548":1591,"549":1591,"550":1591,"551":1591,"552":1590,"553":1590,"554":1590,"555":1591,"556":1591,"557":1591,"558":1590,"559":1591,"560":1590,"561":1591,"562":1591,"563":1590,"564":1590,"565":1591,"566":1590,"567":1590,"568":1590,"569":1591,"570":1591,"571":1590,"572":1591,"573":1591,"574":1591,"575":1591,"576":1591,"577":1591,"578":1590,"579":1591,"580":1591,"581":1590,"582":1590,"583":1590,"584":1590,"585":1591,"586":1591,"587":1591,"588":1591,"589":1591,"590":1591,"591":1590,"592":1591,"593":1591,"594":1591,"595":1591,"596":1591,"597":1591,"598":1590,"599":1591,"600":1590,"601":1591,"602":1590,"603":1591,"604":1590,"605":1590,"606":1590,"607":1591,"608":1590,"609":1591,"610":1590,"611":1591,"612":1591,"613":1591,"614":1590,"615":1590,"616":1590,"617":1591,"618":1591,"619":1591,"620":1590,"621":1590,"622":1591,"623":1591,"624":1590,"625":1590,"626":1591,"627":1591,"628":1590,"629":1590,"630":1591,"631":1590,"632":1590,"633":1591,"634":1590,"635":1591,"636":1591,"637":1591,"638":1591,"639":1591,"640":1591,"641":1590,"642":1591,"643":1590,"644":1590,"645":1591,"646":1590,"647":1591,"648":1590,"649":1590,"650":1590,"651":1591,"652":1591,"653":1591,"654":1590,"655":1591,"656":1590,"657":1590,"658":1590,"659":1590,"660":1591,"661":1591,"662":1591,"663":1590,"664":1591,"665":1590,"666":1591,"667":1590,"668":1591,"669":1591,"670":1591,"671":1591,"672":1591,"673":1590,"674":1591,"675":1590,"676":1591,"677":1591,"678":1590,"679":1591,"680":1591,"681":1591,"682":1590,"683":1591,"684":1591,"685":1591,"686":1591,"687":1591,"688":1591,"689":1591,"690":1591,"691":1590,"692":1591,"693":1591,"694":1591,"695":1590,"696":1590,"697":1590,"698":1591,"699":1590,"700":1591,"701":1590,"702":1590,"703":1590,"704":1591,"705":1590,"706":1590,"707":1590,"708":1591,"709":1590,"710":1590,"711":1590,"712":1591,"713":1591,"714":1590,"715":1591,"716":1590,"717":1590,"718":1591,"719":1591,"720":1591,"721":1590,"722":1591,"723":1591,"724":1590,"725":1591,"726":1591,"727":1590,"728":1590,"729":1590,"730":1590,"731":1590,"732":1591,"733":1591,"734":1590,"735":1591,"736":1590,"737":1590,"738":1591,"739":1590,"740":1591,"741":1590,"742":1590,"743":1591,"744":1591,"745":1591,"746":1590,"747":1590,"748":1590,"749":1590,"750":1591,"751":1590,"752":1591,"753":1591,"754":1590,"755":1590,"756":1590,"757":1591,"758":1590,"759":1591,"760":1590,"761":1591,"762":1591,"763":1590,"764":1591,"765":1591,"766":1590,"767":1591,"768":1590,"769":1590,"770":1590,"771":1590,"772":1591,"773":1590,"774":1591,"775":1590,"776":1591,"777":1590,"778":1591,"779":1590,"780":1590,"781":1590,"782":1590,"783":1591,"784":1590,"785":1591,"786":1590,"787":1591,"788":1590,"789":1590,"790":1591,"791":1590,"792":1590,"793":1591,"794":1591,"795":1591,"796":1591,"797":1591,"798":1591,"799":1591,"800":1590,"801":1590,"802":1591,"803":1591,"804":1590,"805":1590,"806":1591,"807":1591,"808":1591,"809":1591,"810":1590,"811":1590,"812":1591,"813":1591,"814":1591,"815":1591,"816":1591,"817":1591,"818":1590,"819":1590,"820":1591,"821":1591,"822":1591,"823":1591,"824":1590,"825":1591,"826":1590,"827":1591,"828":1590,"829":1590,"830":1591,"831":1591,"832":1591,"833":1591,"834":1590,"835":1591,"836":1591,"837":1591,"838":1590,"839":1590,"840":1590,"841":1590,"842":1591,"843":1590,"844":1590,"845":1591,"846":1591,"847":1590,"848":1591,"849":1590,"850":1591,"851":1591,"852":1591,"853":1591,"854":1590,"855":1591,"856":1590,"857":1590,"858":1590,"859":1591,"860":1590,"861":1590,"862":1590,"863":1590,"864":1590,"865":1591,"866":1590,"867":1590,"868":1591,"869":1591,"870":1590,"871":1591,"872":1591,"873":1590,"874":1590,"875":1591,"876":1590,"877":1590,"878":1591,"879":1590,"880":1591,"881":1591,"882":1590,"883":1590,"884":1590,"885":1591,"886":1591,"887":1590,"888":1591,"889":1591,"890":1591,"891":1590,"892":1590,"893":1591,"894":1590,"895":1590,"896":1590,"897":1591,"898":1590,"899":1591,"900":1591,"901":1590,"902":1591,"903":1590,"904":1591,"905":1590,"906":1590,"907":1590,"908":1590,"909":1590,"910":1590,"911":1591,"912":1591,"913":1590,"914":1590,"915":1590,"916":1590,"917":1591,"918":1591,"919":1591,"920":1591,"921":1590,"922":1591,"923":1591,"924":1591,"925":1590,"926":1590,"927":1590,"928":1591,"929":1590,"930":1590,"931":1590,"932":1591,"933":1591,"934":1591,"935":1590,"936":1591,"937":1591,"938":1590,"939":1591,"940":1590,"941":1590,"942":1590,"943":1590,"944":1590,"945":1591,"946":1590,"947":1590,"948":1591,"949":1590,"950":1591,"951":1590,"952":1591,"953":1591,"954":1590,"955":1591,"956":1591,"957":1590,"958":1590,"959":1590,"960":1590,"961":1590,"962":1591,"963":1591,"964":1591,"965":1591,"966":1590,"967":1590,"968":1591,"969":1591,"970":1591,"971":1591,"972":1591,"973":1591,"974":1590,"975":1590,"976":1590,"977":1590,"978":1591,"979":1591,"980":1591,"981":1591,"982":1590,"983":1590,"984":1590,"985":1590,"986":1591,"987":1591,"988":1591,"989":1591,"990":1591,"991":1590,"992":1591,"993":1590,"994":1590,"995":1590,"996":1591,"997":1590,"998":1591,"999":1590,"1000":1591,"1001":1590,"1002":1590,"1003":1590,"1004":1590,"1005":1591,"1006":1591,"1007":1591,"1008":1590,"1009":1591,"1010":1590,"1011":1590,"1012":1591,"1013":1590,"1014":1591,"1015":1590,"1016":1591,"1017":1591,"1018":1590,"1019":1591,"1020":1591,"1021":1590,"1022":1590,"1023":1590,"1024":1590,"1025":1590,"1026":1591,"1027":1590,"1028":1591,"1029":1590,"1030":1591,"1031":1590,"1032":1591,"1033":1591,"1034":1590,"1035":1590,"1036":1591,"1037":1591,"1038":1591,"1039":1590,"1040":1591,"1041":1591,"1042":1591,"1043":1591,"1044":1590,"1045":1591,"1046":1590,"1047":1590,"1048":1591,"1049":1590,"1050":1591,"1051":1591,"1052":1590,"1053":1591,"1054":1590,"1055":1591,"1056":1591,"1057":1590,"1058":1591,"1059":1590,"1060":1590,"1061":1590,"1062":1591,"1063":1591,"1064":1591,"1065":1591,"1066":1591,"1067":1590,"1068":1591,"1069":1590,"1070":1591,"1071":1590,"1072":1591,"1073":1590,"1074":1590,"1075":1591,"1076":1590,"1077":1591,"1078":1591,"1079":1591,"1080":1591,"1081":1591,"1082":1590,"1083":1591,"1084":1590,"1085":1590,"1086":1590,"1087":1591,"1088":1590,"1089":1590,"1090":1590,"1091":1590,"1092":1590,"1093":1590,"1094":1591,"1095":1591,"1096":1590,"1097":1590,"1098":1591,"1099":1590,"1100":1591,"1101":1590,"1102":1590,"1103":1591,"1104":1591,"1105":1591,"1106":1591,"1107":1591,"1108":1591,"1109":1590,"1110":1590,"1111":1590,"1112":1591,"1113":1590,"1114":1591,"1115":1591,"1116":1591,"1117":1590,"1118":1590,"1119":1590,"1120":1591,"1121":1591,"1122":1590,"1123":1590,"1124":1590,"1125":1591,"1126":1590,"1127":1591,"1128":1590,"1129":1590,"1130":1591,"1131":1591,"1132":1591,"1133":1591,"1134":1590,"1135":1591,"1136":1591,"1137":1591,"1138":1591,"1139":1591,"1140":1590,"1141":1590,"1142":1591,"1143":1590,"1144":1591,"1145":1591,"1146":1590,"1147":1591,"1148":1591,"1149":1591,"1150":1590,"1151":1590,"1152":1591,"1153":1591,"1154":1591,"1155":1590,"1156":1590,"1157":1590,"1158":1591,"1159":1590,"1160":1591,"1161":1590,"1162":1591,"1163":1590,"1164":1590,"1165":1590,"1166":1590,"1167":1590,"1168":1590,"1169":1590,"1170":1590,"1171":1591,"1172":1590,"1173":1591,"1174":1591,"1175":1591,"1176":1590,"1177":1591,"1178":1590,"1179":1591,"1180":1591,"1181":1590,"1182":1590,"1183":1590,"1184":1590,"1185":1591,"1186":1590,"1187":1590,"1188":1590,"1189":1591,"1190":1590,"1191":1591,"1192":1591,"1193":1591,"1194":1591,"1195":1591,"1196":1590,"1197":1591,"1198":1591,"1199":1590,"1200":1590,"1201":1590,"1202":1591,"1203":1590,"1204":1591,"1205":1590,"1206":1590,"1207":1591,"1208":1591,"1209":1590,"1210":1590,"1211":1591,"1212":1591,"1213":1591,"1214":1591,"1215":1591,"1216":1590,"1217":1591,"1218":1591,"1219":1591,"1220":1591,"1221":1590,"1222":1591,"1223":1591,"1224":1591,"1225":1590,"1226":1591,"1227":1591,"1228":1591,"1229":1590,"1230":1590,"1231":1590,"1232":1591,"1233":1590,"1234":1591,"1235":1590,"1236":1590,"1237":1591,"1238":1590,"1239":1591,"1240":1591,"1241":1591,"1242":1591,"1243":1590,"1244":1590,"1245":1590,"1246":1590,"1247":1591,"1248":1591,"1249":1590,"1250":1590,"1251":1591,"1252":1591,"1253":1590,"1254":1590,"1255":1590,"1256":1591,"1257":1590,"1258":1591,"1259":1591,"1260":1590,"1261":1590,"1262":1590,"1263":1591,"1264":1590,"1265":1590,"1266":1591,"1267":1591,"1268":1591,"1269":1590,"1270":1591,"1271":1590,"1272":1590,"1273":1590,"1274":1591,"1275":1590,"1276":1590,"1277":1590,"1278":1591,"1279":1590,"1280":1591,"1281":1591,"1282":1590,"1283":1591,"1284":1591,"1285":1591,"1286":1591,"1287":1591,"1288":1591,"1289":1591,"1290":1591,"1291":1591,"1292":1590,"1293":1590,"1294":1591,"1295":1591,"1296":1591,"1297":1590,"1298":1591,"1299":1590,"1300":1590,"1301":1590,"1302":1590,"1303":1590,"1304":1591,"1305":1590,"1306":1591,"1307":1591,"1308":1591,"1309":1590,"1310":1590,"1311":1591,"1312":1591,"1313":1590,"1314":1590,"1315":1590,"1316":1590,"1317":1590,"1318":1591,"1319":1591,"1320":1591,"1321":1590,"1322":1591,"1323":1591,"1324":1590,"1325":1590,"1326":1590,"1327":1590,"1328":1591,"1329":1590,"1330":1590,"1331":1591,"1332":1591,"1333":1590,"1334":1590,"1335":1590,"1336":1590,"1337":1590,"1338":1591,"1339":1591,"1340":1590,"1341":1590,"1342":1590,"1343":1591,"1344":1590,"1345":1591,"1346":1591,"1347":1591,"1348":1590,"1349":1591,"1350":1590,"1351":1590,"1352":1591,"1353":1590,"1354":1591,"1355":1590,"1356":1590,"1357":1590,"1358":1591,"1359":1590,"1360":1590,"1361":1590,"1362":1591,"1363":1590,"1364":1590,"1365":1591,"1366":1591,"1367":1591,"1368":1590,"1369":1591,"1370":1591,"1371":1590,"1372":1591,"1373":1590,"1374":1590,"1375":1590,"1376":1590,"1377":1590,"1378":1591,"1379":1590,"1380":1591,"1381":1591,"1382":1590,"1383":1591,"1384":1591,"1385":1591,"1386":1591,"1387":1590,"1388":1590,"1389":1591,"1390":1591,"1391":1591,"1392":1591,"1393":1590,"1394":1591,"1395":1591,"1396":1591,"1397":1590,"1398":1591,"1399":1590,"1400":1590,"1401":1590,"1402":1591,"1403":1590,"1404":1590,"1405":1590,"1406":1590,"1407":1590,"1408":1591,"1409":1591,"1410":1590,"1411":1590,"1412":1590,"1413":1591,"1414":1591,"1415":1591,"1416":1591,"1417":1590,"1418":1590,"1419":1590,"1420":1590,"1421":1590,"1422":1590,"1423":1591,"1424":1591,"1425":1591,"1426":1590,"1427":1591,"1428":1590,"1429":1591,"1430":1590,"1431":1591,"1432":1590,"1433":1590,"1434":1590,"1435":1591,"1436":1590,"1437":1591,"1438":1591,"1439":1590,"1440":1590,"1441":1591,"1442":1591,"1443":1591,"1444":1590,"1445":1591,"1446":1590,"1447":1591,"1448":1590,"1449":1591,"1450":1590,"1451":1590,"1452":1591,"1453":1590,"1454":1590,"1455":1591,"1456":1591,"1457":1590,"1458":1591,"1459":1590,"1460":1591,"1461":1590,"1462":1590,"1463":1591,"1464":1590,"1465":1590,"1466":1591,"1467":1590,"1468":1591,"1469":1590,"1470":1590,"1471":1591,"1472":1591,"1473":1590,"1474":1591,"1475":1591,"1476":1590,"1477":1591,"1478":1590,"1479":1591,"1480":1591,"1481":1590,"1482":1590,"1483":1591,"1484":1591,"1485":1590,"1486":1590,"1487":1591,"1488":1590,"1489":1590,"1490":1591,"1491":1590,"1492":1590,"1493":1590,"1494":1590,"1495":1590,"1496":1591,"1497":1591,"1498":1590,"1499":1590,"1500":1590,"1501":1590,"1502":1591,"1503":1590,"1504":1591,"1505":1590,"1506":1591,"1507":1590,"1508":1591,"1509":1591,"1510":1591,"1511":1591,"1512":1590,"1513":1591,"1514":1591,"1515":1591,"1516":1591,"1517":1590,"1518":1590,"1519":1591,"1520":1590,"1521":1591,"1522":1591,"1523":1590,"1524":1591,"1525":1590,"1526":1590,"1527":1591,"1528":1591,"1529":1591,"1530":1591,"1531":1590,"1532":1591,"1533":1590,"1534":1591,"1535":1591,"1536":1591,"1537":1590,"1538":1590,"1539":1590,"1540":1590,"1541":1591,"1542":1591,"1543":1591,"1544":1590,"1545":1590,"1546":1591,"1547":1590,"1548":1591,"1549":1591,"1550":1591,"1551":1591,"1552":1590,"1553":1591,"1554":1591,"1555":1590,"1556":1591,"1557":1590,"1558":1591,"1559":1590,"1560":1590,"1561":1590,"1562":1591,"1563":1591,"1564":1590,"1565":1591,"1566":1591,"1567":1591,"1568":1590,"1569":1590,"1570":1591,"1571":1590,"1572":1591,"1573":1591,"1574":1591,"1575":1590,"1576":1590,"1577":1590,"1578":1591,"1579":1591,"1580":1590,"1581":1590,"1582":1590,"1583":1591,"1584":1591,"1585":1591,"1586":1590,"1587":1590,"1588":1591,"1589":1591,"1590":1591,"1591":1590,"1592":1591,"1593":1591,"1594":1591,"1595":1590,"1596":1591,"1597":1591,"1598":1591,"1599":1590,"1600":1591,"1601":1590,"1602":1590,"1603":1590,"1604":1591,"1605":1591,"1606":1590,"1607":1590,"1608":1591,"1609":1591,"1610":1590,"1611":1590,"1612":1591,"1613":1591,"1614":1591,"1615":1590,"1616":1591,"1617":1590,"1618":1590,"1619":1591,"1620":1590,"1621":1591,"1622":1590,"1623":1591,"1624":1591,"1625":1590,"1626":1590,"1627":1591,"1628":1591,"1629":1590,"1630":1591,"1631":1591,"1632":1590,"1633":1590,"1634":1590,"1635":1591,"1636":1590,"1637":1591,"1638":1590,"1639":1591,"1640":1590,"1641":1591,"1642":1590,"1643":1591,"1644":1590,"1645":1590,"1646":1590,"1647":1590,"1648":1591,"1649":1590,"1650":1591,"1651":1590,"1652":1590,"1653":1590,"1654":1590,"1655":1591,"1656":1590,"1657":1591,"1658":1590,"1659":1591,"1660":1591,"1661":1590,"1662":1591,"1663":1591,"1664":1591,"1665":1590,"1666":1590,"1667":1591,"1668":1590,"1669":1590,"1670":1590,"1671":1590,"1672":1591,"1673":1591,"1674":1590,"1675":1591,"1676":1591,"1677":1591,"1678":1590,"1679":1590,"1680":1590,"1681":1591,"1682":1591,"1683":1590,"1684":1590,"1685":1591,"1686":1590,"1687":1591,"1688":1591,"1689":1591,"1690":1590,"1691":1590,"1692":1590,"1693":1591,"1694":1590,"1695":1591,"1696":1591,"1697":1590,"1698":1590,"1699":1590,"1700":1590,"1701":1591,"1702":1590,"1703":1590,"1704":1590,"1705":1591,"1706":1591,"1707":1590,"1708":1591,"1709":1591,"1710":1590,"1711":1590,"1712":1590,"1713":1590,"1714":1591,"1715":1591,"1716":1591,"1717":1591,"1718":1590,"1719":1591,"1720":1590,"1721":1591,"1722":1591,"1723":1590,"1724":1590,"1725":1590,"1726":1591,"1727":1591,"1728":1591,"1729":1590,"1730":1590,"1731":1590,"1732":1590,"1733":1590,"1734":1591,"1735":1590,"1736":1590,"1737":1590,"1738":1591,"1739":1591,"1740":1590,"1741":1591,"1742":1590,"1743":1591,"1744":1590,"1745":1590,"1746":1590,"1747":1590,"1748":1590,"1749":1591,"1750":1591,"1751":1590,"1752":1591,"1753":1591,"1754":1591,"1755":1591,"1756":1590,"1757":1590,"1758":1590,"1759":1591,"1760":1590,"1761":1591,"1762":1591,"1763":1590,"1764":1591,"1765":1591,"1766":1591,"1767":1591,"1768":1591,"1769":1590,"1770":1591,"1771":1590,"1772":1590,"1773":1590,"1774":1590,"1775":1591,"1776":1590,"1777":1590,"1778":1590,"1779":1591,"1780":1591,"1781":1590,"1782":1590,"1783":1591,"1784":1590,"1785":1590,"1786":1590,"1787":1590,"1788":1590,"1789":1590,"1790":1591,"1791":1591,"1792":1590,"1793":1591,"1794":1591,"1795":1590,"1796":1591,"1797":1590,"1798":1591,"1799":1590,"1800":1591,"1801":1590,"1802":1591,"1803":1591,"1804":1591,"1805":1591,"1806":1591,"1807":1590,"1808":1591,"1809":1590,"1810":1591,"1811":1590,"1812":1590,"1813":1590,"1814":1590,"1815":1590,"1816":1590,"1817":1590,"1818":1590,"1819":1591,"1820":1590,"1821":1591,"1822":1590,"1823":1591,"1824":1591,"1825":1591,"1826":1591,"1827":1591,"1828":1590,"1829":1591,"1830":1590,"1831":1590,"1832":1591,"1833":1590,"1834":1591,"1835":1590,"1836":1591,"1837":1591,"1838":1591,"1839":1591,"1840":1591,"1841":1590,"1842":1590,"1843":1591,"1844":1591,"1845":1591,"1846":1591,"1847":1591,"1848":1590,"1849":1590,"1850":1590,"1851":1590,"1852":1590,"1853":1591,"1854":1591,"1855":1590,"1856":1591,"1857":1591,"1858":1590,"1859":1591,"1860":1591,"1861":1590,"1862":1591,"1863":1590,"1864":1590,"1865":1590,"1866":1591,"1867":1590,"1868":1590,"1869":1591,"1870":1590,"1871":1590,"1872":1590,"1873":1591,"1874":1591,"1875":1591,"1876":1591,"1877":1590,"1878":1591,"1879":1590,"1880":1591,"1881":1590,"1882":1591,"1883":1590,"1884":1591,"1885":1590,"1886":1591,"1887":1591,"1888":1591,"1889":1591,"1890":1591,"1891":1590,"1892":1591,"1893":1590,"1894":1590,"1895":1590,"1896":1590,"1897":1591,"1898":1591,"1899":1590,"1900":1590,"1901":1590,"1902":1591,"1903":1590,"1904":1591,"1905":1590,"1906":1590,"1907":1591,"1908":1590,"1909":1590,"1910":1590,"1911":1591,"1912":1590,"1913":1591,"1914":1590,"1915":1591,"1916":1591,"1917":1590,"1918":1590,"1919":1590,"1920":1590,"1921":1591,"1922":1591,"1923":1591,"1924":1590,"1925":1590,"1926":1590,"1927":1590,"1928":1590,"1929":1590,"1930":1590,"1931":1590,"1932":1591,"1933":1590,"1934":1590,"1935":1590,"1936":1590,"1937":1591,"1938":1591,"1939":1591,"1940":1590,"1941":1591,"1942":1591,"1943":1590,"1944":1591,"1945":1590,"1946":1591,"1947":1591,"1948":1590,"1949":1591,"1950":1590,"1951":1590,"1952":1591,"1953":1590,"1954":1591,"1955":1590,"1956":1590,"1957":1590,"1958":1591,"1959":1590,"1960":1590,"1961":1591,"1962":1591,"1963":1591,"1964":1590,"1965":1590,"1966":1590,"1967":1591,"1968":1591,"1969":1590,"1970":1591,"1971":1590,"1972":1590,"1973":1591,"1974":1590,"1975":1591,"1976":1591,"1977":1591,"1978":1591,"1979":1590,"1980":1590,"1981":1590,"1982":1590,"1983":1590,"1984":1591,"1985":1590,"1986":1591,"1987":1591,"1988":1591,"1989":1590,"1990":1590,"1991":1591,"1992":1591,"1993":1591,"1994":1591,"1995":1591,"1996":1591,"1997":1590,"1998":1591,"1999":1590,"2000":1591,"2001":1591,"2002":1591,"2003":1590,"2004":1591,"2005":1590,"2006":1590,"2007":1590,"2008":1590,"2009":1591,"2010":1591,"2011":1591,"2012":1590,"2013":1590,"2014":1590,"2015":1590,"2016":1590,"2017":1591,"2018":1591,"2019":1590,"2020":1591,"2021":1591,"2022":1591,"2023":1591,"2024":1591,"2025":1590,"2026":1590,"2027":1590,"2028":1591,"2029":1591,"2030":1591,"2031":1591,"2032":1590,"2033":1590,"2034":1590,"2035":1591,"2036":1590,"2037":1591,"2038":1591,"2039":1590,"2040":1591,"2041":1590,"2042":1590,"2043":1591,"2044":1591,"2045":1591,"2046":1591,"2047":1591,"2048":1591,"2049":1590,"2050":1591,"2051":1590,"2052":1590,"2053":1591,"2054":1591,"2055":1591,"2056":1591,"2057":1590,"2058":1590,"2059":1590,"2060":1590,"2061":1590,"2062":1590,"2063":1590,"2064":1590,"2065":1591,"2066":1590,"2067":1591,"2068":1591,"2069":1591,"2070":1591,"2071":1590,"2072":1590,"2073":1591,"2074":1591,"2075":1590,"2076":1591,"2077":1590,"2078":1591,"2079":1591,"2080":1591,"2081":1591,"2082":1590,"2083":1590,"2084":1591,"2085":1591,"2086":1590,"2087":1590,"2088":1590,"2089":1590,"2090":1591,"2091":1590,"2092":1591,"2093":1591,"2094":1590,"2095":1591,"2096":1590,"2097":1591,"2098":1590,"2099":1590,"2100":1590,"2101":1591,"2102":1590,"2103":1591,"2104":1591,"2105":1590,"2106":1591,"2107":1591,"2108":1591,"2109":1590,"2110":1590,"2111":1590,"2112":1590,"2113":1591,"2114":1590,"2115":1590,"2116":1590,"2117":1591,"2118":1590,"2119":1591,"2120":1590,"2121":1590,"2122":1590,"2123":1591,"2124":1591,"2125":1590,"2126":1590,"2127":1591,"2128":1590,"2129":1590,"2130":1590,"2131":1590,"2132":1590,"2133":1590,"2134":1590,"2135":1591,"2136":1591,"2137":1590,"2138":1591,"2139":1591,"2140":1590,"2141":1591,"2142":1591,"2143":1590,"2144":1590,"2145":1590,"2146":1590,"2147":1591,"2148":1591,"2149":1591,"2150":1590,"2151":1591,"2152":1591,"2153":1590,"2154":1591,"2155":1590,"2156":1591,"2157":1590,"2158":1591,"2159":1591,"2160":1591,"2161":1590,"2162":1590,"2163":1590,"2164":1590,"2165":1590,"2166":1590,"2167":1591,"2168":1591,"2169":1590,"2170":1590,"2171":1590,"2172":1591,"2173":1590,"2174":1591,"2175":1590,"2176":1591,"2177":1591,"2178":1591,"2179":1590,"2180":1591,"2181":1590,"2182":1590,"2183":1591,"2184":1591,"2185":1591,"2186":1590,"2187":1590,"2188":1591,"2189":1591,"2190":1591,"2191":1590,"2192":1591,"2193":1590,"2194":1590,"2195":1591,"2196":1591,"2197":1590,"2198":1590,"2199":1590,"2200":1591,"2201":1591,"2202":1591,"2203":1591,"2204":1591,"2205":1591,"2206":1591,"2207":1590,"2208":1591,"2209":1591,"2210":1590,"2211":1591,"2212":1591,"2213":1590,"2214":1591,"2215":1590,"2216":1590,"2217":1591,"2218":1590,"2219":1591,"2220":1591,"2221":1591,"2222":1591,"2223":1590,"2224":1590,"2225":1591,"2226":1591,"2227":1591,"2228":1591,"2229":1591,"2230":1591,"2231":1591,"2232":1591,"2233":1591,"2234":1591,"2235":1590,"2236":1590,"2237":1591,"2238":1590,"2239":1591,"2240":1590,"2241":1590,"2242":1590,"2243":1590,"2244":1591,"2245":1591,"2246":1590,"2247":1591,"2248":1590,"2249":1591,"2250":1590,"2251":1590,"2252":1591,"2253":1590,"2254":1590,"2255":1591,"2256":1590,"2257":1591,"2258":1591,"2259":1591,"2260":1591,"2261":1591,"2262":1590,"2263":1590,"2264":1590,"2265":1591,"2266":1590,"2267":1590,"2268":1590,"2269":1590,"2270":1590,"2271":1590,"2272":1590,"2273":1590,"2274":1590,"2275":1590,"2276":1591,"2277":1590,"2278":1591,"2279":1591,"2280":1591,"2281":1590,"2282":1591,"2283":1591,"2284":1591,"2285":1590,"2286":1591,"2287":1591,"2288":1590,"2289":1591,"2290":1591,"2291":1591,"2292":1591,"2293":1590,"2294":1591,"2295":1590,"2296":1590,"2297":1590,"2298":1591,"2299":1591,"2300":1590,"2301":1590,"2302":1590,"2303":1590,"2304":1591,"2305":1590,"2306":1591,"2307":1590,"2308":1590,"2309":1590,"2310":1591,"2311":1590,"2312":1590,"2313":1591,"2314":1591,"2315":1590,"2316":1591,"2317":1591,"2318":1591,"2319":1591,"2320":1591,"2321":1590,"2322":1591,"2323":1590,"2324":1590,"2325":1591,"2326":1591,"2327":1590,"2328":1590,"2329":1590,"2330":1590,"2331":1590,"2332":1591,"2333":1590,"2334":1591,"2335":1590,"2336":1590,"2337":1590,"2338":1591,"2339":1591,"2340":1590,"2341":1591,"2342":1591,"2343":1591,"2344":1591,"2345":1590,"2346":1591,"2347":1591,"2348":1590,"2349":1590,"2350":1591,"2351":1590,"2352":1590,"2353":1590,"2354":1590,"2355":1590,"2356":1590,"2357":1590,"2358":1590,"2359":1591,"2360":1590,"2361":1590,"2362":1590,"2363":1591,"2364":1591,"2365":1590,"2366":1590,"2367":1590,"2368":1590,"2369":1591,"2370":1590,"2371":1591,"2372":1591,"2373":1591,"2374":1591,"2375":1591,"2376":1590,"2377":1591,"2378":1591,"2379":1590,"2380":1591,"2381":1590,"2382":1590,"2383":1591,"2384":1590,"2385":1591,"2386":1590,"2387":1590,"2388":1590,"2389":1590,"2390":1590,"2391":1591,"2392":1591,"2393":1590,"2394":1591,"2395":1590,"2396":1590,"2397":1590,"2398":1591,"2399":1591,"2400":1590,"2401":1590,"2402":1591,"2403":1590,"2404":1590,"2405":1590,"2406":1591,"2407":1591,"2408":1590,"2409":1590,"2410":1591,"2411":1590,"2412":1590,"2413":1590,"2414":1591,"2415":1590,"2416":1591,"2417":1591,"2418":1590,"2419":1591,"2420":1590,"2421":1591,"2422":1590,"2423":1590,"2424":1591,"2425":1591,"2426":1590,"2427":1590,"2428":1590,"2429":1591,"2430":1591,"2431":1590,"2432":1590,"2433":1590,"2434":1591,"2435":1591,"2436":1591,"2437":1591,"2438":1591,"2439":1590,"2440":1590,"2441":1591,"2442":1591,"2443":1591,"2444":1590,"2445":1591,"2446":1590,"2447":1590,"2448":1590,"2449":1590,"2450":1591,"2451":1591,"2452":1591,"2453":1590,"2454":1591,"2455":1591,"2456":1590,"2457":1591,"2458":1591,"2459":1590,"2460":1590,"2461":1590,"2462":1591,"2463":1590,"2464":1590,"2465":1590,"2466":1590,"2467":1590,"2468":1590,"2469":1591,"2470":1591,"2471":1591,"2472":1590,"2473":1591,"2474":1591,"2475":1590,"2476":1590,"2477":1590,"2478":1591,"2479":1591,"2480":1590,"2481":1590,"2482":1591,"2483":1591,"2484":1590,"2485":1591,"2486":1590,"2487":1590,"2488":1590,"2489":1590,"2490":1591,"2491":1591,"2492":1591,"2493":1591,"2494":1591,"2495":1591,"2496":1591,"2497":1591,"2498":1591,"2499":1591,"2500":1590,"2501":1590,"2502":1591,"2503":1590,"2504":1590,"2505":1590,"2506":1591,"2507":1591,"2508":1591,"2509":1591,"2510":1590,"2511":1590,"2512":1590,"2513":1590,"2514":1591,"2515":1591,"2516":1590,"2517":1591,"2518":1590,"2519":1591,"2520":1591,"2521":1590,"2522":1591,"2523":1590,"2524":1590,"2525":1591,"2526":1591,"2527":1590,"2528":1591,"2529":1590,"2530":1590,"2531":1591,"2532":1591,"2533":1590,"2534":1590,"2535":1591,"2536":1590,"2537":1590,"2538":1590,"2539":1590,"2540":1591,"2541":1590,"2542":1590,"2543":1590,"2544":1591,"2545":1590,"2546":1590,"2547":1591,"2548":1590,"2549":1590,"2550":1590,"2551":1590,"2552":1590,"2553":1590,"2554":1590,"2555":1590,"2556":1591,"2557":1590,"2558":1591,"2559":1590,"2560":1591,"2561":1591,"2562":1590,"2563":1590,"2564":1590,"2565":1590,"2566":1590,"2567":1590,"2568":1590,"2569":1591,"2570":1591,"2571":1590,"2572":1590,"2573":1591,"2574":1591,"2575":1590,"2576":1590,"2577":1590,"2578":1590,"2579":1591,"2580":1590,"2581":1590,"2582":1591,"2583":1590,"2584":1591,"2585":1591,"2586":1590,"2587":1590,"2588":1590,"2589":1591,"2590":1590,"2591":1591,"2592":1590,"2593":1591,"2594":1590,"2595":1590,"2596":1591,"2597":1591,"2598":1590,"2599":1590,"2600":1590,"2601":1591,"2602":1590,"2603":1591,"2604":1591,"2605":1591,"2606":1591,"2607":1591,"2608":1590,"2609":1591,"2610":1591,"2611":1591,"2612":1591,"2613":1591,"2614":1590,"2615":1590,"2616":1590,"2617":1591,"2618":1591,"2619":1590,"2620":1590,"2621":1591,"2622":1591,"2623":1590,"2624":1591,"2625":1590,"2626":1591,"2627":1591,"2628":1590,"2629":1591,"2630":1591,"2631":1590,"2632":1591,"2633":1590,"2634":1590,"2635":1590,"2636":1590,"2637":1590,"2638":1591,"2639":1590,"2640":1590,"2641":1591,"2642":1591,"2643":1590,"2644":1590,"2645":1591,"2646":1590,"2647":1590,"2648":1590,"2649":1591,"2650":1590,"2651":1591,"2652":1591,"2653":1591,"2654":1591,"2655":1590,"2656":1591,"2657":1591,"2658":1591,"2659":1591,"2660":1590,"2661":1590,"2662":1590,"2663":1590,"2664":1590,"2665":1591,"2666":1591,"2667":1590,"2668":1590,"2669":1591,"2670":1590,"2671":1591,"2672":1590,"2673":1590,"2674":1590,"2675":1590,"2676":1590,"2677":1591,"2678":1591,"2679":1591,"2680":1591,"2681":1591,"2682":1591,"2683":1590,"2684":1590,"2685":1590,"2686":1591,"2687":1590,"2688":1591,"2689":1590,"2690":1590,"2691":1590,"2692":1590,"2693":1591,"2694":1590,"2695":1590,"2696":1591,"2697":1590,"2698":1590,"2699":1591,"2700":1590,"2701":1590,"2702":1591,"2703":1591,"2704":1591,"2705":1590,"2706":1590,"2707":1591,"2708":1591,"2709":1590,"2710":1590,"2711":1590,"2712":1591,"2713":1591,"2714":1590,"2715":1591,"2716":1590,"2717":1590,"2718":1590,"2719":1590,"2720":1591,"2721":1591,"2722":1591,"2723":1591,"2724":1591,"2725":1591,"2726":1590,"2727":1590,"2728":1591,"2729":1590,"2730":1591,"2731":1590,"2732":1591,"2733":1590,"2734":1590,"2735":1591,"2736":1590,"2737":1591,"2738":1590,"2739":1590,"2740":1590,"2741":1590,"2742":1590,"2743":1590,"2744":1590,"2745":1591,"2746":1591,"2747":1591,"2748":1590,"2749":1591,"2750":1591,"2751":1591,"2752":1591,"2753":1591,"2754":1590,"2755":1591,"2756":1591,"2757":1590,"2758":1590,"2759":1590,"2760":1591,"2761":1590,"2762":1591,"2763":1590,"2764":1591,"2765":1591,"2766":1591,"2767":1590,"2768":1591,"2769":1590,"2770":1591,"2771":1590,"2772":1590,"2773":1591,"2774":1590,"2775":1591,"2776":1591,"2777":1590,"2778":1591,"2779":1590,"2780":1591,"2781":1590,"2782":1590,"2783":1591,"2784":1590,"2785":1590,"2786":1590,"2787":1591,"2788":1590,"2789":1590,"2790":1591,"2791":1590,"2792":1590,"2793":1591,"2794":1590,"2795":1590,"2796":1591,"2797":1590,"2798":1590,"2799":1591,"2800":1590,"2801":1590,"2802":1591,"2803":1591,"2804":1591,"2805":1591,"2806":1591,"2807":1590,"2808":1591,"2809":1591,"2810":1591,"2811":1590,"2812":1590,"2813":1590,"2814":1591,"2815":1590,"2816":1590,"2817":1590,"2818":1590,"2819":1591,"2820":1591,"2821":1591,"2822":1590,"2823":1591,"2824":1590,"2825":1590,"2826":1591,"2827":1590,"2828":1590,"2829":1590,"2830":1591,"2831":1590,"2832":1591,"2833":1591,"2834":1591,"2835":1590,"2836":1590,"2837":1590,"2838":1590,"2839":1590,"2840":1591,"2841":1590,"2842":1590,"2843":1590,"2844":1590,"2845":1590,"2846":1590,"2847":1590,"2848":1590,"2849":1590,"2850":1590,"2851":1591,"2852":1590,"2853":1590,"2854":1590,"2855":1590,"2856":1591,"2857":1591,"2858":1590,"2859":1590,"2860":1591,"2861":1591,"2862":1590,"2863":1591,"2864":1591,"2865":1591,"2866":1591,"2867":1590,"2868":1591,"2869":1590,"2870":1591,"2871":1590,"2872":1590,"2873":1590,"2874":1590,"2875":1591,"2876":1590,"2877":1590,"2878":1590,"2879":1590,"2880":1590,"2881":1591,"2882":1590,"2883":1591,"2884":1590,"2885":1590,"2886":1590,"2887":1590,"2888":1591,"2889":1591,"2890":1590,"2891":1590,"2892":1591,"2893":1591,"2894":1591,"2895":1591,"2896":1590,"2897":1591,"2898":1591,"2899":1590,"2900":1590,"2901":1590,"2902":1590,"2903":1590,"2904":1591,"2905":1590,"2906":1591,"2907":1590,"2908":1590,"2909":1590,"2910":1591,"2911":1590,"2912":1591,"2913":1590,"2914":1591,"2915":1590,"2916":1591,"2917":1591,"2918":1591,"2919":1591,"2920":1591,"2921":1590,"2922":1591,"2923":1590,"2924":1590,"2925":1591,"2926":1591,"2927":1591,"2928":1590,"2929":1591,"2930":1590,"2931":1591,"2932":1591,"2933":1590,"2934":1591,"2935":1591,"2936":1591,"2937":1591,"2938":1591,"2939":1590,"2940":1591,"2941":1590,"2942":1590,"2943":1591,"2944":1591,"2945":1591,"2946":1590,"2947":1591,"2948":1590,"2949":1591,"2950":1590,"2951":1590,"2952":1591,"2953":1591,"2954":1591,"2955":1591,"2956":1591,"2957":1591,"2958":1590,"2959":1590,"2960":1591,"2961":1591,"2962":1591,"2963":1591,"2964":1590,"2965":1590,"2966":1591,"2967":1591,"2968":1591,"2969":1591,"2970":1590,"2971":1590,"2972":1591,"2973":1591,"2974":1591,"2975":1590,"2976":1590,"2977":1590,"2978":1591,"2979":1590,"2980":1590,"2981":1591,"2982":1590,"2983":1591,"2984":1591,"2985":1591,"2986":1591,"2987":1590,"2988":1590,"2989":1591,"2990":1591,"2991":1590,"2992":1591,"2993":1591,"2994":1590,"2995":1590,"2996":1590,"2997":1591,"2998":1591,"2999":1590,"3000":1590,"3001":1591,"3002":1590,"3003":1591,"3004":1590,"3005":1591,"3006":1590,"3007":1590,"3008":1591,"3009":1591,"3010":1591,"3011":1590,"3012":1591,"3013":1591,"3014":1590,"3015":1591,"3016":1590,"3017":1591,"3018":1590,"3019":1591,"3020":1591,"3021":1591,"3022":1590,"3023":1590,"3024":1591,"3025":1591,"3026":1590,"3027":1591,"3028":1591,"3029":1590,"3030":1590,"3031":1591,"3032":1590,"3033":1590,"3034":1590,"3035":1590,"3036":1591,"3037":1591,"3038":1591,"3039":1591,"3040":1590,"3041":1590,"3042":1591,"3043":1591,"3044":1591,"3045":1590,"3046":1591,"3047":1591,"3048":1591,"3049":1591,"3050":1590,"3051":1591,"3052":1591,"3053":1590,"3054":1590,"3055":1591,"3056":1591,"3057":1591,"3058":1591,"3059":1590,"3060":1591,"3061":1591,"3062":1590,"3063":1590,"3064":1590,"3065":1590,"3066":1590,"3067":1591,"3068":1591,"3069":1590,"3070":1590,"3071":1590,"3072":1590,"3073":1590,"3074":1591,"3075":1590,"3076":1590,"3077":1591,"3078":1590,"3079":1590,"3080":1590,"3081":1591,"3082":1591,"3083":1590,"3084":1590,"3085":1591,"3086":1591,"3087":1590,"3088":1591,"3089":1590,"3090":1590,"3091":1591,"3092":1591,"3093":1591,"3094":1590,"3095":1590,"3096":1590,"3097":1591,"3098":1590,"3099":1590,"3100":1591,"3101":1591,"3102":1591,"3103":1590,"3104":1590,"3105":1591,"3106":1591,"3107":1591,"3108":1590,"3109":1591,"3110":1591,"3111":1591,"3112":1590,"3113":1591,"3114":1591,"3115":1591,"3116":1591,"3117":1591,"3118":1591,"3119":1591,"3120":1591,"3121":1590,"3122":1590,"3123":1590,"3124":1590,"3125":1590,"3126":1590,"3127":1590,"3128":1590,"3129":1591,"3130":1590,"3131":1591,"3132":1591,"3133":1591,"3134":1590,"3135":1590,"3136":1591,"3137":1590,"3138":1590,"3139":1591,"3140":1590,"3141":1591,"3142":1591,"3143":1591,"3144":1590,"3145":1591,"3146":1591,"3147":1591,"3148":1591,"3149":1590,"3150":1590,"3151":1590,"3152":1590,"3153":1591,"3154":1590,"3155":1591,"3156":1591,"3157":1590,"3158":1590,"3159":1591,"3160":1591,"3161":1590,"3162":1590,"3163":1591,"3164":1590,"3165":1591,"3166":1590,"3167":1590,"3168":1591,"3169":1591,"3170":1590,"3171":1591,"3172":1591,"3173":1591,"3174":1590,"3175":1590,"3176":1590,"3177":1590,"3178":1591,"3179":1590,"3180":1590,"3181":1590,"3182":1591,"3183":1590,"3184":1590,"3185":1591,"3186":1590,"3187":1590,"3188":1590,"3189":1591,"3190":1591,"3191":1590,"3192":1590,"3193":1591,"3194":1590,"3195":1590,"3196":1590,"3197":1590,"3198":1590,"3199":1590,"3200":1590,"3201":1590,"3202":1591,"3203":1590,"3204":1591,"3205":1590,"3206":1591,"3207":1591,"3208":1590,"3209":1590,"3210":1591,"3211":1591,"3212":1590,"3213":1591,"3214":1591,"3215":1591,"3216":1590,"3217":1590,"3218":1590,"3219":1591,"3220":1591,"3221":1590,"3222":1591,"3223":1591,"3224":1591,"3225":1591,"3226":1591,"3227":1591,"3228":1590,"3229":1591,"3230":1590,"3231":1591,"3232":1590,"3233":1591,"3234":1590,"3235":1590,"3236":1591,"3237":1591,"3238":1590,"3239":1591,"3240":1591,"3241":1590,"3242":1590,"3243":1590,"3244":1591,"3245":1591,"3246":1590,"3247":1591,"3248":1591,"3249":1590,"3250":1591,"3251":1590,"3252":1590,"3253":1590,"3254":1591,"3255":1591,"3256":1590,"3257":1590,"3258":1590,"3259":1591,"3260":1591,"3261":1591,"3262":1591,"3263":1591,"3264":1591,"3265":1590,"3266":1590,"3267":1591,"3268":1590,"3269":1590,"3270":1591,"3271":1591,"3272":1591,"3273":1590,"3274":1591,"3275":1591,"3276":1591,"3277":1590,"3278":1591,"3279":1591,"3280":1591,"3281":1590,"3282":1591,"3283":1591,"3284":1591,"3285":1590,"3286":1591,"3287":1591,"3288":1591,"3289":1591,"3290":1591,"3291":1590,"3292":1590,"3293":1590,"3294":1591,"3295":1590,"3296":1591,"3297":1590,"3298":1591,"3299":1591,"3300":1591,"3301":1591,"3302":1591,"3303":1591,"3304":1590,"3305":1590,"3306":1591,"3307":1591,"3308":1591,"3309":1591,"3310":1590,"3311":1591,"3312":1590,"3313":1591,"3314":1590,"3315":1591,"3316":1591,"3317":1591,"3318":1591,"3319":1590,"3320":1590,"3321":1590,"3322":1591,"3323":1591,"3324":1590,"3325":1590,"3326":1590,"3327":1590,"3328":1591,"3329":1590,"3330":1591,"3331":1590,"3332":1591,"3333":1590,"3334":1591,"3335":1591,"3336":1590,"3337":1590,"3338":1591,"3339":1591,"3340":1590,"3341":1591,"3342":1590,"3343":1591,"3344":1590,"3345":1590,"3346":1591,"3347":1591,"3348":1590,"3349":1590,"3350":1590,"3351":1591,"3352":1591,"3353":1590,"3354":1590,"3355":1591,"3356":1590,"3357":1590,"3358":1591,"3359":1591,"3360":1591,"3361":1591,"3362":1590,"3363":1590,"3364":1591,"3365":1590,"3366":1591,"3367":1591,"3368":1590,"3369":1591,"3370":1591,"3371":1591,"3372":1590,"3373":1590,"3374":1591,"3375":1591,"3376":1590,"3377":1591,"3378":1591,"3379":1590,"3380":1591,"3381":1590,"3382":1590,"3383":1591,"3384":1591,"3385":1591,"3386":1590,"3387":1590,"3388":1590,"3389":1590,"3390":1590,"3391":1591,"3392":1590,"3393":1590,"3394":1591,"3395":1590,"3396":1590,"3397":1591,"3398":1591,"3399":1591,"3400":1591,"3401":1590,"3402":1590,"3403":1590,"3404":1590,"3405":1590,"3406":1590,"3407":1591,"3408":1591,"3409":1590,"3410":1590,"3411":1590,"3412":1590,"3413":1590,"3414":1590,"3415":1590,"3416":1591,"3417":1590,"3418":1590,"3419":1591,"3420":1591,"3421":1590,"3422":1590,"3423":1591,"3424":1590,"3425":1590,"3426":1591,"3427":1590,"3428":1591,"3429":1590,"3430":1590,"3431":1590,"3432":1591,"3433":1591,"3434":1590,"3435":1590,"3436":1590,"3437":1591,"3438":1591,"3439":1591,"3440":1591,"3441":1591,"3442":1590,"3443":1591,"3444":1590,"3445":1590,"3446":1591,"3447":1591,"3448":1590,"3449":1590,"3450":1591,"3451":1591,"3452":1591,"3453":1590,"3454":1590,"3455":1591,"3456":1591,"3457":1591,"3458":1590,"3459":1590,"3460":1591,"3461":1590,"3462":1591,"3463":1590,"3464":1590,"3465":1590,"3466":1591,"3467":1591,"3468":1591,"3469":1590,"3470":1590,"3471":1590,"3472":1591,"3473":1591,"3474":1591,"3475":1591,"3476":1590,"3477":1590,"3478":1591,"3479":1591,"3480":1591,"3481":1591,"3482":1590,"3483":1590,"3484":1591,"3485":1591,"3486":1590,"3487":1591,"3488":1591,"3489":1590,"3490":1591,"3491":1590,"3492":1590,"3493":1591,"3494":1591,"3495":1590,"3496":1590,"3497":1591,"3498":1591,"3499":1591,"3500":1591,"3501":1590,"3502":1590,"3503":1591,"3504":1590,"3505":1591,"3506":1591,"3507":1590,"3508":1591,"3509":1591,"3510":1590,"3511":1590,"3512":1591,"3513":1591,"3514":1590,"3515":1590,"3516":1590,"3517":1590,"3518":1590,"3519":1590,"3520":1591,"3521":1590,"3522":1591,"3523":1591,"3524":1590,"3525":1591,"3526":1591,"3527":1590,"3528":1590,"3529":1591,"3530":1590,"3531":1590,"3532":1591,"3533":1591,"3534":1591,"3535":1591,"3536":1590,"3537":1591,"3538":1591,"3539":1591,"3540":1590,"3541":1591,"3542":1591,"3543":1591,"3544":1591,"3545":1591,"3546":1590,"3547":1590,"3548":1591,"3549":1590,"3550":1591,"3551":1591,"3552":1591,"3553":1591,"3554":1590,"3555":1591,"3556":1590,"3557":1590,"3558":1591,"3559":1591,"3560":1591,"3561":1590,"3562":1590,"3563":1590,"3564":1590,"3565":1591,"3566":1591,"3567":1590,"3568":1591,"3569":1591,"3570":1590,"3571":1591,"3572":1591,"3573":1590,"3574":1590,"3575":1591,"3576":1590,"3577":1591,"3578":1590,"3579":1590,"3580":1591,"3581":1590,"3582":1591,"3583":1590,"3584":1591,"3585":1591,"3586":1590,"3587":1590,"3588":1590,"3589":1591,"3590":1591,"3591":1590,"3592":1591,"3593":1591,"3594":1590,"3595":1591,"3596":1591,"3597":1590,"3598":1590,"3599":1590,"3600":1591,"3601":1591,"3602":1591,"3603":1591,"3604":1591,"3605":1591,"3606":1590,"3607":1591,"3608":1591,"3609":1591,"3610":1590,"3611":1591,"3612":1591,"3613":1590,"3614":1590,"3615":1591,"3616":1591,"3617":1591,"3618":1590,"3619":1591,"3620":1591,"3621":1591,"3622":1590,"3623":1590,"3624":1591,"3625":1591,"3626":1590,"3627":1590,"3628":1591,"3629":1590,"3630":1590,"3631":1591,"3632":1590,"3633":1591,"3634":1590,"3635":1590,"3636":1590,"3637":1590,"3638":1591,"3639":1590,"3640":1591,"3641":1590,"3642":1591,"3643":1591,"3644":1590,"3645":1591,"3646":1590,"3647":1591,"3648":1590,"3649":1590,"3650":1591,"3651":1591,"3652":1590,"3653":1590,"3654":1590,"3655":1590,"3656":1590,"3657":1591,"3658":1590,"3659":1591,"3660":1590,"3661":1591,"3662":1590,"3663":1591,"3664":1591,"3665":1590,"3666":1591,"3667":1591,"3668":1590,"3669":1591,"3670":1591,"3671":1591,"3672":1591,"3673":1590,"3674":1591,"3675":1591,"3676":1591,"3677":1590,"3678":1590,"3679":1590,"3680":1591,"3681":1590,"3682":1590,"3683":1591,"3684":1590,"3685":1590,"3686":1591,"3687":1591,"3688":1590,"3689":1590,"3690":1590,"3691":1591,"3692":1590,"3693":1591,"3694":1591,"3695":1590,"3696":1591,"3697":1591,"3698":1591,"3699":1590,"3700":1591,"3701":1591,"3702":1590,"3703":1590,"3704":1591,"3705":1590,"3706":1591,"3707":1590,"3708":1591,"3709":1590,"3710":1590,"3711":1590,"3712":1590,"3713":1590,"3714":1590,"3715":1591,"3716":1591,"3717":1591,"3718":1590,"3719":1591,"3720":1590,"3721":1590,"3722":1590,"3723":1590,"3724":1590,"3725":1590,"3726":1591,"3727":1590,"3728":1590,"3729":1590,"3730":1591,"3731":1591,"3732":1590,"3733":1591,"3734":1591,"3735":1590,"3736":1590,"3737":1591,"3738":1590,"3739":1591,"3740":1591,"3741":1590,"3742":1590,"3743":1591,"3744":1591,"3745":1591,"3746":1590,"3747":1591,"3748":1590,"3749":1591,"3750":1591,"3751":1591,"3752":1590,"3753":1590,"3754":1591,"3755":1590,"3756":1591,"3757":1590,"3758":1591,"3759":1590,"3760":1591,"3761":1591,"3762":1590,"3763":1590,"3764":1590,"3765":1590,"3766":1591,"3767":1591,"3768":1591,"3769":1590,"3770":1590,"3771":1590,"3772":1590,"3773":1591,"3774":1590,"3775":1590,"3776":1591,"3777":1591,"3778":1591,"3779":1590,"3780":1590,"3781":1591,"3782":1590,"3783":1590,"3784":1591,"3785":1591,"3786":1590,"3787":1591,"3788":1590,"3789":1591,"3790":1591,"3791":1590,"3792":1590,"3793":1591,"3794":1591,"3795":1590,"3796":1591,"3797":1591,"3798":1590,"3799":1591,"3800":1591,"3801":1590,"3802":1591,"3803":1590,"3804":1590,"3805":1591,"3806":1591,"3807":1591,"3808":1590,"3809":1590,"3810":1591,"3811":1591,"3812":1591,"3813":1591,"3814":1590,"3815":1590,"3816":1590,"3817":1591,"3818":1590,"3819":1590,"3820":1590,"3821":1590,"3822":1590,"3823":1591,"3824":1591,"3825":1590,"3826":1590,"3827":1591,"3828":1591,"3829":1591,"3830":1590,"3831":1590,"3832":1590,"3833":1591,"3834":1591,"3835":1591,"3836":1591,"3837":1590,"3838":1591,"3839":1590,"3840":1591,"3841":1590,"3842":1590,"3843":1591,"3844":1591,"3845":1591,"3846":1590,"3847":1591,"3848":1591,"3849":1591,"3850":1591,"3851":1591,"3852":1591,"3853":1590,"3854":1591,"3855":1590,"3856":1591,"3857":1590,"3858":1591,"3859":1590,"3860":1590,"3861":1590,"3862":1591,"3863":1590,"3864":1591,"3865":1591,"3866":1590,"3867":1590,"3868":1591,"3869":1591,"3870":1590,"3871":1591,"3872":1591,"3873":1590,"3874":1591,"3875":1590,"3876":1590,"3877":1590,"3878":1591,"3879":1590,"3880":1590,"3881":1590,"3882":1591,"3883":1590,"3884":1591,"3885":1591,"3886":1590,"3887":1591,"3888":1591,"3889":1590,"3890":1591,"3891":1590,"3892":1590,"3893":1591,"3894":1591,"3895":1591,"3896":1590,"3897":1591,"3898":1591,"3899":1590,"3900":1590,"3901":1590,"3902":1591,"3903":1591,"3904":1591,"3905":1591,"3906":1591,"3907":1591,"3908":1591,"3909":1590,"3910":1591,"3911":1591,"3912":1590,"3913":1591,"3914":1590,"3915":1591,"3916":1590,"3917":1591,"3918":1591,"3919":1590,"3920":1591,"3921":1590,"3922":1590,"3923":1591,"3924":1591,"3925":1591,"3926":1591,"3927":1591,"3928":1590,"3929":1590,"3930":1591,"3931":1591,"3932":1590,"3933":1591,"3934":1590,"3935":1591,"3936":1591,"3937":1590,"3938":1590,"3939":1590,"3940":1590,"3941":1590,"3942":1591,"3943":1591,"3944":1591,"3945":1591,"3946":1590,"3947":1590,"3948":1590,"3949":1591,"3950":1591,"3951":1590,"3952":1590,"3953":1591,"3954":1590,"3955":1590,"3956":1591,"3957":1590,"3958":1590,"3959":1591,"3960":1591,"3961":1590,"3962":1590,"3963":1591,"3964":1591,"3965":1590,"3966":1591,"3967":1591,"3968":1590,"3969":1591,"3970":1591,"3971":1590,"3972":1591,"3973":1591,"3974":1591,"3975":1591,"3976":1591,"3977":1591,"3978":1591,"3979":1591,"3980":1590,"3981":1591,"3982":1590,"3983":1590,"3984":1590,"3985":1590,"3986":1591,"3987":1591,"3988":1590,"3989":1590,"3990":1591,"3991":1591,"3992":1590,"3993":1591,"3994":1591,"3995":1590,"3996":1590,"3997":1591,"3998":1591,"3999":1590,"4000":1590,"4001":1591,"4002":1590,"4003":1590,"4004":1591,"4005":1590,"4006":1591,"4007":1591,"4008":1591,"4009":1590,"4010":1590,"4011":1591,"4012":1591,"4013":1590,"4014":1591,"4015":1591,"4016":1590,"4017":1590,"4018":1591,"4019":1591,"4020":1591,"4021":1590,"4022":1591,"4023":1590,"4024":1591,"4025":1590,"4026":1590,"4027":1591,"4028":1590,"4029":1591,"4030":1591,"4031":1591,"4032":1590,"4033":1590,"4034":1591,"4035":1590,"4036":1591,"4037":1590,"4038":1591,"4039":1591,"4040":1591,"4041":1591,"4042":1591,"4043":1591,"4044":1591,"4045":1590,"4046":1591,"4047":1590,"4048":1591,"4049":1590,"4050":1591,"4051":1590,"4052":1590,"4053":1591,"4054":1590,"4055":1591,"4056":1590,"4057":1591,"4058":1590,"4059":1590,"4060":1590,"4061":1591,"4062":1590,"4063":1591,"4064":1590,"4065":1590,"4066":1590,"4067":1591,"4068":1590,"4069":1591,"4070":1590,"4071":1591,"4072":1590,"4073":1590,"4074":1590,"4075":1590,"4076":1590,"4077":1590,"4078":1591,"4079":1590,"4080":1591,"4081":1590,"4082":1590,"4083":1591,"4084":1591,"4085":1590,"4086":1590,"4087":1590,"4088":1590,"4089":1591,"4090":1590,"4091":1591,"4092":1590,"4093":1591,"4094":1590,"4095":1591,"4096":1591,"4097":1590,"4098":1591,"4099":1590,"4100":1590,"4101":1591,"4102":1591,"4103":1590,"4104":1591,"4105":1590,"4106":1590,"4107":1590,"4108":1590,"4109":1591,"4110":1590,"4111":1591,"4112":1590,"4113":1590,"4114":1591,"4115":1590,"4116":1590,"4117":1590,"4118":1590,"4119":1591,"4120":1590,"4121":1590,"4122":1591,"4123":1591,"4124":1591,"4125":1590,"4126":1590,"4127":1591,"4128":1591,"4129":1590,"4130":1590,"4131":1590,"4132":1591,"4133":1590,"4134":1591,"4135":1591,"4136":1591,"4137":1591,"4138":1590,"4139":1591,"4140":1591,"4141":1591,"4142":1591,"4143":1590,"4144":1591,"4145":1590,"4146":1590,"4147":1591,"4148":1590,"4149":1590,"4150":1591,"4151":1591,"4152":1591,"4153":1590,"4154":1591,"4155":1591,"4156":1591,"4157":1590,"4158":1590,"4159":1590,"4160":1591,"4161":1590,"4162":1590,"4163":1590,"4164":1591,"4165":1591,"4166":1590,"4167":1590,"4168":1591,"4169":1591,"4170":1591,"4171":1591,"4172":1591,"4173":1590,"4174":1591,"4175":1591,"4176":1590,"4177":1591,"4178":1590,"4179":1591,"4180":1591,"4181":1590,"4182":1591,"4183":1590,"4184":1590,"4185":1590,"4186":1590,"4187":1590,"4188":1590,"4189":1591,"4190":1590,"4191":1590,"4192":1590,"4193":1591,"4194":1591,"4195":1590,"4196":1590,"4197":1590,"4198":1590,"4199":1591,"4200":1591,"4201":1590,"4202":1590,"4203":1590,"4204":1591,"4205":1591,"4206":1591,"4207":1590,"4208":1591,"4209":1590,"4210":1590,"4211":1590,"4212":1590,"4213":1590,"4214":1591,"4215":1591,"4216":1590,"4217":1590,"4218":1591,"4219":1590,"4220":1590,"4221":1590,"4222":1591,"4223":1590,"4224":1591,"4225":1590,"4226":1591,"4227":1590,"4228":1591,"4229":1591,"4230":1591,"4231":1591,"4232":1590,"4233":1590,"4234":1590,"4235":1590,"4236":1590,"4237":1590,"4238":1590,"4239":1591,"4240":1590,"4241":1590,"4242":1591,"4243":1590,"4244":1590,"4245":1590,"4246":1590,"4247":1590,"4248":1591,"4249":1591,"4250":1590,"4251":1591,"4252":1591,"4253":1591,"4254":1590,"4255":1590,"4256":1591,"4257":1590,"4258":1591,"4259":1591,"4260":1591,"4261":1590,"4262":1591,"4263":1590,"4264":1590,"4265":1591,"4266":1590,"4267":1590,"4268":1590,"4269":1590,"4270":1591,"4271":1590,"4272":1591,"4273":1590,"4274":1590,"4275":1590,"4276":1591,"4277":1591,"4278":1590,"4279":1591,"4280":1590,"4281":1591,"4282":1591,"4283":1591,"4284":1591,"4285":1590,"4286":1591,"4287":1590,"4288":1590,"4289":1591,"4290":1590,"4291":1591,"4292":1591,"4293":1590,"4294":1591,"4295":1591,"4296":1590,"4297":1591,"4298":1591,"4299":1590,"4300":1591,"4301":1590,"4302":1591,"4303":1590,"4304":1590,"4305":1590,"4306":1591,"4307":1590,"4308":1590,"4309":1590,"4310":1590,"4311":1590,"4312":1591,"4313":1591,"4314":1590,"4315":1591,"4316":1591,"4317":1590,"4318":1591,"4319":1590,"4320":1591,"4321":1590,"4322":1590,"4323":1590,"4324":1590,"4325":1591,"4326":1590,"4327":1591,"4328":1590,"4329":1590,"4330":1590,"4331":1591,"4332":1590,"4333":1591,"4334":1590,"4335":1591,"4336":1590,"4337":1590,"4338":1591,"4339":1591,"4340":1591,"4341":1591,"4342":1591,"4343":1591,"4344":1591,"4345":1591,"4346":1591,"4347":1591,"4348":1590,"4349":1590,"4350":1591,"4351":1591,"4352":1590,"4353":1590,"4354":1590,"4355":1591,"4356":1591,"4357":1590,"4358":1591,"4359":1590,"4360":1591,"4361":1591,"4362":1591,"4363":1591,"4364":1590,"4365":1591,"4366":1591,"4367":1590,"4368":1591,"4369":1590,"4370":1591,"4371":1591,"4372":1590,"4373":1590,"4374":1591,"4375":1591,"4376":1590,"4377":1591,"4378":1590,"4379":1591,"4380":1591,"4381":1591,"4382":1591,"4383":1590,"4384":1590,"4385":1591,"4386":1591,"4387":1591,"4388":1590,"4389":1590,"4390":1590,"4391":1591,"4392":1591,"4393":1590,"4394":1591,"4395":1590,"4396":1590,"4397":1591,"4398":1590,"4399":1591,"4400":1590,"4401":1590,"4402":1590,"4403":1590,"4404":1590,"4405":1590,"4406":1591,"4407":1591,"4408":1591,"4409":1590,"4410":1590,"4411":1591,"4412":1591,"4413":1590,"4414":1590,"4415":1590,"4416":1590,"4417":1590,"4418":1591,"4419":1591,"4420":1590,"4421":1591,"4422":1590,"4423":1590,"4424":1591,"4425":1591,"4426":1590,"4427":1591,"4428":1590,"4429":1591,"4430":1591,"4431":1590,"4432":1591,"4433":1591,"4434":1590,"4435":1591,"4436":1591,"4437":1591,"4438":1590,"4439":1591,"4440":1590,"4441":1590,"4442":1590,"4443":1590,"4444":1590,"4445":1591,"4446":1590,"4447":1590,"4448":1591,"4449":1590,"4450":1590,"4451":1590,"4452":1590,"4453":1591,"4454":1590,"4455":1590,"4456":1591,"4457":1591,"4458":1591,"4459":1590,"4460":1590,"4461":1590,"4462":1591,"4463":1590,"4464":1591,"4465":1590,"4466":1590,"4467":1591,"4468":1590,"4469":1591,"4470":1590,"4471":1590,"4472":1591,"4473":1590,"4474":1590,"4475":1591,"4476":1590,"4477":1591,"4478":1591,"4479":1591,"4480":1590,"4481":1591,"4482":1590,"4483":1590,"4484":1590,"4485":1591,"4486":1590,"4487":1590,"4488":1591,"4489":1591,"4490":1591,"4491":1591,"4492":1590,"4493":1590,"4494":1590,"4495":1590,"4496":1590,"4497":1591,"4498":1590,"4499":1591,"4500":1591,"4501":1591,"4502":1590,"4503":1591,"4504":1590,"4505":1590,"4506":1591,"4507":1590,"4508":1590,"4509":1590,"4510":1590,"4511":1591,"4512":1590,"4513":1590,"4514":1591,"4515":1590,"4516":1590,"4517":1590,"4518":1590,"4519":1590,"4520":1590,"4521":1591,"4522":1591,"4523":1590,"4524":1591,"4525":1591,"4526":1591,"4527":1590,"4528":1590,"4529":1591,"4530":1591,"4531":1591,"4532":1590,"4533":1591,"4534":1591,"4535":1591,"4536":1591,"4537":1591,"4538":1591,"4539":1591,"4540":1590,"4541":1590,"4542":1590,"4543":1590,"4544":1590,"4545":1591,"4546":1591,"4547":1590,"4548":1591,"4549":1591,"4550":1591,"4551":1591,"4552":1591,"4553":1590,"4554":1591,"4555":1591,"4556":1590,"4557":1590,"4558":1591,"4559":1590,"4560":1590,"4561":1591,"4562":1591,"4563":1590,"4564":1590,"4565":1591,"4566":1590,"4567":1591,"4568":1591,"4569":1591,"4570":1591,"4571":1591,"4572":1591,"4573":1591,"4574":1591,"4575":1591,"4576":1591,"4577":1591,"4578":1590,"4579":1591,"4580":1591,"4581":1591,"4582":1590,"4583":1590,"4584":1590,"4585":1590,"4586":1591,"4587":1591,"4588":1590,"4589":1591,"4590":1590,"4591":1590,"4592":1590,"4593":1591,"4594":1590,"4595":1591,"4596":1591,"4597":1590,"4598":1591,"4599":1590,"4600":1590,"4601":1591,"4602":1590,"4603":1590,"4604":1590,"4605":1591,"4606":1590,"4607":1591,"4608":1591,"4609":1591,"4610":1591,"4611":1591,"4612":1590,"4613":1590,"4614":1590,"4615":1590,"4616":1591,"4617":1590,"4618":1590,"4619":1590,"4620":1590,"4621":1591,"4622":1590,"4623":1591,"4624":1591,"4625":1590,"4626":1591,"4627":1590,"4628":1590,"4629":1590,"4630":1590,"4631":1590,"4632":1590,"4633":1591,"4634":1590,"4635":1590,"4636":1590,"4637":1591,"4638":1591,"4639":1590,"4640":1591,"4641":1591,"4642":1590,"4643":1590,"4644":1590,"4645":1591,"4646":1591,"4647":1591,"4648":1590,"4649":1590,"4650":1591,"4651":1590,"4652":1590,"4653":1590,"4654":1591,"4655":1590,"4656":1590,"4657":1591,"4658":1591,"4659":1590,"4660":1591,"4661":1590,"4662":1591,"4663":1591,"4664":1590,"4665":1590,"4666":1591,"4667":1590,"4668":1590,"4669":1590,"4670":1590,"4671":1590,"4672":1591,"4673":1591,"4674":1591,"4675":1591,"4676":1590,"4677":1590,"4678":1591,"4679":1590,"4680":1591,"4681":1591,"4682":1590,"4683":1590,"4684":1590,"4685":1591,"4686":1590,"4687":1590,"4688":1591,"4689":1590,"4690":1590,"4691":1590,"4692":1590,"4693":1591,"4694":1590,"4695":1590,"4696":1590,"4697":1590,"4698":1590,"4699":1591,"4700":1591,"4701":1590,"4702":1591,"4703":1591,"4704":1591,"4705":1590,"4706":1591,"4707":1590,"4708":1590,"4709":1590,"4710":1591,"4711":1591,"4712":1591,"4713":1590,"4714":1590,"4715":1591,"4716":1590,"4717":1590,"4718":1590,"4719":1590,"4720":1590,"4721":1590,"4722":1591,"4723":1591,"4724":1590,"4725":1590,"4726":1590,"4727":1591,"4728":1590,"4729":1591,"4730":1591,"4731":1591,"4732":1590,"4733":1590,"4734":1591,"4735":1591,"4736":1590,"4737":1591,"4738":1590,"4739":1591,"4740":1591,"4741":1590,"4742":1591,"4743":1591,"4744":1590,"4745":1591,"4746":1591,"4747":1591,"4748":1591,"4749":1591,"4750":1591,"4751":1590,"4752":1591,"4753":1591,"4754":1590,"4755":1590,"4756":1591,"4757":1590,"4758":1591,"4759":1591,"4760":1591,"4761":1591,"4762":1591,"4763":1590,"4764":1591,"4765":1590,"4766":1590,"4767":1591,"4768":1590,"4769":1590,"4770":1590,"4771":1590,"4772":1591,"4773":1591,"4774":1591,"4775":1591,"4776":1590,"4777":1591,"4778":1591,"4779":1591,"4780":1590,"4781":1591,"4782":1590,"4783":1591,"4784":1591,"4785":1591,"4786":1590,"4787":1590,"4788":1590,"4789":1590,"4790":1591,"4791":1590,"4792":1590,"4793":1590,"4794":1591,"4795":1591,"4796":1590,"4797":1591,"4798":1591,"4799":1590,"4800":1591,"4801":1590,"4802":1591,"4803":1590,"4804":1591,"4805":1591,"4806":1590,"4807":1591,"4808":1590,"4809":1591,"4810":1590,"4811":1591,"4812":1591,"4813":1590,"4814":1590,"4815":1590,"4816":1590,"4817":1590,"4818":1591,"4819":1590,"4820":1590,"4821":1591,"4822":1591,"4823":1590,"4824":1590,"4825":1591,"4826":1591,"4827":1591,"4828":1590,"4829":1590,"4830":1591,"4831":1591,"4832":1591,"4833":1591,"4834":1590,"4835":1590,"4836":1590,"4837":1591,"4838":1590,"4839":1591,"4840":1590,"4841":1590,"4842":1591,"4843":1591,"4844":1590,"4845":1590,"4846":1591,"4847":1591,"4848":1590,"4849":1591,"4850":1590,"4851":1591,"4852":1590,"4853":1590,"4854":1590,"4855":1591,"4856":1591,"4857":1591,"4858":1591,"4859":1590,"4860":1591,"4861":1591,"4862":1590,"4863":1590,"4864":1590,"4865":1590,"4866":1591,"4867":1590,"4868":1590,"4869":1591,"4870":1591,"4871":1590,"4872":1590,"4873":1590,"4874":1590,"4875":1591,"4876":1591,"4877":1591,"4878":1590,"4879":1590,"4880":1591,"4881":1590,"4882":1590,"4883":1591,"4884":1591,"4885":1590,"4886":1591,"4887":1591,"4888":1590,"4889":1590,"4890":1590,"4891":1591,"4892":1590,"4893":1590,"4894":1591,"4895":1590,"4896":1591,"4897":1591,"4898":1591,"4899":1591,"4900":1591,"4901":1590,"4902":1590,"4903":1591,"4904":1591,"4905":1590,"4906":1590,"4907":1591,"4908":1590,"4909":1591,"4910":1591,"4911":1590,"4912":1590,"4913":1590,"4914":1591,"4915":1590,"4916":1590,"4917":1591,"4918":1591,"4919":1591,"4920":1590,"4921":1590,"4922":1591,"4923":1591,"4924":1591,"4925":1590,"4926":1591,"4927":1591,"4928":1590,"4929":1591,"4930":1591,"4931":1591,"4932":1590,"4933":1591,"4934":1590,"4935":1591,"4936":1591,"4937":1590,"4938":1590,"4939":1590,"4940":1590,"4941":1591,"4942":1590,"4943":1591,"4944":1590,"4945":1591,"4946":1591,"4947":1590,"4948":1590,"4949":1591,"4950":1591,"4951":1591,"4952":1590,"4953":1590,"4954":1590,"4955":1590,"4956":1590,"4957":1591,"4958":1591,"4959":1591,"4960":1590,"4961":1590,"4962":1591,"4963":1591,"4964":1591,"4965":1590,"4966":1590,"4967":1591,"4968":1590,"4969":1591,"4970":1591,"4971":1590,"4972":1590,"4973":1591,"4974":1591,"4975":1591,"4976":1591,"4977":1590,"4978":1590,"4979":1591,"4980":1591,"4981":1591,"4982":1591,"4983":1590,"4984":1591,"4985":1591,"4986":1590,"4987":1590,"4988":1590,"4989":1590,"4990":1591,"4991":1591,"4992":1590,"4993":1590,"4994":1590,"4995":1590,"4996":1590,"4997":1590,"4998":1591,"4999":1591,"5000":1590,"5001":1591,"5002":1590,"5003":1590,"5004":1591,"5005":1590,"5006":1591,"5007":1591,"5008":1591,"5009":1591,"5010":1591,"5011":1590,"5012":1591,"5013":1591,"5014":1591,"5015":1590,"5016":1590,"5017":1591,"5018":1591,"5019":1590,"5020":1590,"5021":1590,"5022":1590,"5023":1590,"5024":1590,"5025":1591,"5026":1590,"5027":1590,"5028":1590,"5029":1591,"5030":1590,"5031":1590,"5032":1591,"5033":1591,"5034":1591,"5035":1590,"5036":1591,"5037":1591,"5038":1590,"5039":1591,"5040":1591,"5041":1591,"5042":1590,"5043":1590,"5044":1591,"5045":1590,"5046":1591,"5047":1590,"5048":1591,"5049":1590,"5050":1590,"5051":1591,"5052":1591,"5053":1590,"5054":1591,"5055":1590,"5056":1591,"5057":1590,"5058":1590,"5059":1591,"5060":1591,"5061":1591,"5062":1590,"5063":1590,"5064":1590,"5065":1590,"5066":1591,"5067":1590,"5068":1591,"5069":1591,"5070":1591,"5071":1590,"5072":1590,"5073":1590,"5074":1591,"5075":1591,"5076":1590,"5077":1590,"5078":1591,"5079":1591,"5080":1590,"5081":1591,"5082":1591,"5083":1590,"5084":1590,"5085":1590,"5086":1591,"5087":1591,"5088":1590,"5089":1591,"5090":1591,"5091":1591,"5092":1591,"5093":1590,"5094":1591,"5095":1590,"5096":1591,"5097":1590,"5098":1590,"5099":1590,"5100":1591,"5101":1591,"5102":1591,"5103":1591,"5104":1590,"5105":1591,"5106":1590,"5107":1590,"5108":1591,"5109":1590,"5110":1591,"5111":1591,"5112":1591,"5113":1590,"5114":1591,"5115":1590,"5116":1590,"5117":1591,"5118":1591,"5119":1591,"5120":1591,"5121":1591,"5122":1591,"5123":1590,"5124":1590,"5125":1591,"5126":1590,"5127":1591,"5128":1590,"5129":1591,"5130":1590,"5131":1591,"5132":1590,"5133":1591,"5134":1590,"5135":1590,"5136":1590,"5137":1590,"5138":1590,"5139":1590,"5140":1591,"5141":1590,"5142":1590,"5143":1590,"5144":1590,"5145":1591,"5146":1590,"5147":1590,"5148":1591,"5149":1590,"5150":1590,"5151":1591,"5152":1591,"5153":1590,"5154":1591,"5155":1590,"5156":1591,"5157":1590,"5158":1590,"5159":1590,"5160":1591,"5161":1591,"5162":1590,"5163":1590,"5164":1591,"5165":1591,"5166":1591,"5167":1590,"5168":1591,"5169":1591,"5170":1590,"5171":1590,"5172":1591,"5173":1590,"5174":1591,"5175":1590,"5176":1590,"5177":1591,"5178":1590,"5179":1590,"5180":1590,"5181":1591,"5182":1591,"5183":1591,"5184":1591,"5185":1590,"5186":1591,"5187":1590,"5188":1591,"5189":1590,"5190":1590,"5191":1591,"5192":1590,"5193":1590,"5194":1590,"5195":1591,"5196":1590,"5197":1590,"5198":1590,"5199":1591,"5200":1591,"5201":1591,"5202":1591,"5203":1590,"5204":1590,"5205":1590,"5206":1591,"5207":1591,"5208":1590,"5209":1591,"5210":1590,"5211":1591,"5212":1590,"5213":1590,"5214":1591,"5215":1590,"5216":1591,"5217":1590,"5218":1590,"5219":1591,"5220":1591,"5221":1590,"5222":1591,"5223":1591,"5224":1590,"5225":1591,"5226":1591,"5227":1591,"5228":1590,"5229":1591,"5230":1591,"5231":1590,"5232":1591,"5233":1591,"5234":1591,"5235":1591,"5236":1591,"5237":1591,"5238":1591,"5239":1590,"5240":1590,"5241":1590,"5242":1590,"5243":1590,"5244":1591,"5245":1591,"5246":1591,"5247":1590,"5248":1591,"5249":1590,"5250":1590,"5251":1590,"5252":1590,"5253":1590,"5254":1590,"5255":1590,"5256":1590,"5257":1590,"5258":1590,"5259":1591,"5260":1591,"5261":1591,"5262":1591,"5263":1591,"5264":1591,"5265":1591,"5266":1591,"5267":1590,"5268":1591,"5269":1591,"5270":1590,"5271":1591,"5272":1590,"5273":1591,"5274":1591,"5275":1590,"5276":1590,"5277":1591,"5278":1590,"5279":1591,"5280":1590,"5281":1590,"5282":1591,"5283":1591,"5284":1590,"5285":1591,"5286":1590,"5287":1591,"5288":1590,"5289":1591,"5290":1590,"5291":1590,"5292":1591,"5293":1590,"5294":1591,"5295":1590,"5296":1590,"5297":1591,"5298":1590,"5299":1591,"5300":1590,"5301":1590,"5302":1591,"5303":1590,"5304":1591,"5305":1591,"5306":1591,"5307":1591,"5308":1590,"5309":1590,"5310":1591,"5311":1591,"5312":1591,"5313":1591,"5314":1590,"5315":1591,"5316":1591,"5317":1590,"5318":1591,"5319":1591,"5320":1590,"5321":1590,"5322":1590,"5323":1591,"5324":1591,"5325":1591,"5326":1590,"5327":1591,"5328":1591,"5329":1590,"5330":1590,"5331":1591,"5332":1591,"5333":1591,"5334":1591,"5335":1590,"5336":1590,"5337":1591,"5338":1591,"5339":1590,"5340":1591,"5341":1590,"5342":1591,"5343":1590,"5344":1591,"5345":1590,"5346":1591,"5347":1590,"5348":1591,"5349":1591,"5350":1591,"5351":1590,"5352":1591,"5353":1591,"5354":1591,"5355":1591,"5356":1590,"5357":1591,"5358":1590,"5359":1591,"5360":1590,"5361":1591,"5362":1590,"5363":1590,"5364":1591,"5365":1590,"5366":1591,"5367":1591,"5368":1590,"5369":1590,"5370":1590,"5371":1591,"5372":1590,"5373":1590,"5374":1590,"5375":1590,"5376":1590,"5377":1590,"5378":1591,"5379":1590,"5380":1590,"5381":1591,"5382":1591,"5383":1591,"5384":1590,"5385":1590,"5386":1591,"5387":1590,"5388":1591,"5389":1590,"5390":1590,"5391":1591,"5392":1590,"5393":1591,"5394":1590,"5395":1591,"5396":1591,"5397":1591,"5398":1591,"5399":1591,"5400":1591,"5401":1590,"5402":1590,"5403":1590,"5404":1591,"5405":1591,"5406":1590,"5407":1590,"5408":1590,"5409":1590,"5410":1590,"5411":1591,"5412":1590,"5413":1590,"5414":1591,"5415":1591,"5416":1591,"5417":1591,"5418":1591,"5419":1590,"5420":1591,"5421":1591,"5422":1590,"5423":1590,"5424":1591,"5425":1591,"5426":1591,"5427":1590,"5428":1590,"5429":1591,"5430":1590,"5431":1591,"5432":1590,"5433":1591,"5434":1591,"5435":1591,"5436":1590,"5437":1591,"5438":1590,"5439":1590,"5440":1591,"5441":1591,"5442":1591,"5443":1590,"5444":1591,"5445":1591,"5446":1591,"5447":1590,"5448":1590,"5449":1591,"5450":1591,"5451":1590,"5452":1591,"5453":1591,"5454":1591,"5455":1590,"5456":1591,"5457":1590,"5458":1590,"5459":1590,"5460":1591,"5461":1591,"5462":1591,"5463":1590,"5464":1590,"5465":1590,"5466":1590,"5467":1591,"5468":1590,"5469":1590,"5470":1590,"5471":1590,"5472":1591,"5473":1591,"5474":1590,"5475":1590,"5476":1590,"5477":1590,"5478":1591,"5479":1590,"5480":1591,"5481":1590,"5482":1590,"5483":1590,"5484":1590,"5485":1590,"5486":1591,"5487":1590,"5488":1590,"5489":1591,"5490":1591,"5491":1591,"5492":1590,"5493":1591,"5494":1590,"5495":1590,"5496":1590,"5497":1590,"5498":1590,"5499":1591,"5500":1591,"5501":1591,"5502":1591,"5503":1591,"5504":1590,"5505":1591,"5506":1590,"5507":1591,"5508":1590,"5509":1591,"5510":1591,"5511":1591,"5512":1590,"5513":1591,"5514":1590,"5515":1591,"5516":1591,"5517":1590,"5518":1591,"5519":1590,"5520":1591,"5521":1591,"5522":1591,"5523":1591,"5524":1590,"5525":1590,"5526":1591,"5527":1591,"5528":1590,"5529":1591,"5530":1590,"5531":1591,"5532":1591,"5533":1590,"5534":1591,"5535":1590,"5536":1590,"5537":1591,"5538":1591,"5539":1590,"5540":1590,"5541":1591,"5542":1590,"5543":1591,"5544":1591,"5545":1590,"5546":1590,"5547":1590,"5548":1591,"5549":1590,"5550":1591,"5551":1591,"5552":1590,"5553":1590,"5554":1591,"5555":1590,"5556":1590,"5557":1590,"5558":1591,"5559":1590,"5560":1591,"5561":1591,"5562":1591,"5563":1590,"5564":1591,"5565":1590,"5566":1590,"5567":1590,"5568":1590,"5569":1590,"5570":1590,"5571":1591,"5572":1591,"5573":1590,"5574":1590,"5575":1590,"5576":1590,"5577":1591,"5578":1591,"5579":1590,"5580":1590,"5581":1591,"5582":1591,"5583":1591,"5584":1590,"5585":1590,"5586":1590,"5587":1591,"5588":1591,"5589":1590,"5590":1590,"5591":1591,"5592":1590,"5593":1590,"5594":1591,"5595":1591,"5596":1591,"5597":1591,"5598":1591,"5599":1590,"5600":1591,"5601":1590,"5602":1591,"5603":1591,"5604":1591,"5605":1590,"5606":1590,"5607":1591,"5608":1590,"5609":1591,"5610":1590,"5611":1590,"5612":1590,"5613":1590,"5614":1590,"5615":1591,"5616":1591,"5617":1591,"5618":1590,"5619":1591,"5620":1591,"5621":1591,"5622":1590,"5623":1591,"5624":1591,"5625":1591,"5626":1591,"5627":1591,"5628":1590,"5629":1591,"5630":1590,"5631":1590,"5632":1591,"5633":1590,"5634":1591,"5635":1590,"5636":1590,"5637":1590,"5638":1590,"5639":1590,"5640":1590,"5641":1591,"5642":1591,"5643":1590,"5644":1590,"5645":1591,"5646":1591,"5647":1591,"5648":1591,"5649":1591,"5650":1590,"5651":1591,"5652":1591,"5653":1591,"5654":1591,"5655":1590,"5656":1591,"5657":1590,"5658":1591,"5659":1591,"5660":1590,"5661":1590,"5662":1590,"5663":1591,"5664":1590,"5665":1591,"5666":1591,"5667":1591,"5668":1590,"5669":1591,"5670":1591,"5671":1590,"5672":1590,"5673":1591,"5674":1591,"5675":1591,"5676":1590,"5677":1591,"5678":1591,"5679":1591,"5680":1591,"5681":1591,"5682":1590,"5683":1591,"5684":1590,"5685":1591,"5686":1590,"5687":1590,"5688":1590,"5689":1590,"5690":1590,"5691":1591,"5692":1590,"5693":1590,"5694":1591,"5695":1591,"5696":1590,"5697":1591,"5698":1590,"5699":1590,"5700":1590,"5701":1590,"5702":1590,"5703":1590,"5704":1590,"5705":1591,"5706":1591,"5707":1591,"5708":1591,"5709":1591,"5710":1590,"5711":1590,"5712":1591,"5713":1591,"5714":1591,"5715":1591,"5716":1590,"5717":1590,"5718":1590,"5719":1591,"5720":1590,"5721":1591,"5722":1590,"5723":1591,"5724":1590,"5725":1591,"5726":1591,"5727":1590,"5728":1591,"5729":1590,"5730":1590,"5731":1591,"5732":1591,"5733":1591,"5734":1590,"5735":1590,"5736":1590,"5737":1590,"5738":1590,"5739":1591,"5740":1590,"5741":1591,"5742":1591,"5743":1590,"5744":1591,"5745":1590,"5746":1590,"5747":1591,"5748":1591,"5749":1590,"5750":1591,"5751":1591,"5752":1591,"5753":1591,"5754":1590,"5755":1590,"5756":1591,"5757":1591,"5758":1591,"5759":1590,"5760":1591,"5761":1590,"5762":1590,"5763":1590,"5764":1591,"5765":1590,"5766":1590,"5767":1591,"5768":1590,"5769":1590,"5770":1591,"5771":1590,"5772":1591,"5773":1590,"5774":1591,"5775":1591,"5776":1590,"5777":1591,"5778":1591,"5779":1590,"5780":1591,"5781":1590,"5782":1591,"5783":1591,"5784":1590,"5785":1590,"5786":1591,"5787":1591,"5788":1591,"5789":1590,"5790":1590,"5791":1591,"5792":1591,"5793":1590,"5794":1590,"5795":1590,"5796":1590,"5797":1591,"5798":1591,"5799":1590,"5800":1591,"5801":1590,"5802":1591,"5803":1591,"5804":1591,"5805":1591,"5806":1590,"5807":1590,"5808":1591,"5809":1591,"5810":1591,"5811":1591,"5812":1590,"5813":1591,"5814":1590,"5815":1591,"5816":1591,"5817":1590,"5818":1590,"5819":1590,"5820":1590,"5821":1590,"5822":1590,"5823":1591,"5824":1591,"5825":1590,"5826":1590,"5827":1591,"5828":1591,"5829":1591,"5830":1590,"5831":1591,"5832":1591,"5833":1590,"5834":1591,"5835":1590,"5836":1590,"5837":1591,"5838":1590,"5839":1591,"5840":1590,"5841":1591,"5842":1591,"5843":1591,"5844":1591,"5845":1591,"5846":1591,"5847":1591,"5848":1591,"5849":1590,"5850":1591,"5851":1591,"5852":1590,"5853":1590,"5854":1590,"5855":1591,"5856":1591,"5857":1590,"5858":1591,"5859":1591,"5860":1590,"5861":1590,"5862":1590,"5863":1590,"5864":1591,"5865":1591,"5866":1591,"5867":1591,"5868":1591,"5869":1591,"5870":1590,"5871":1591,"5872":1590,"5873":1590,"5874":1591,"5875":1591,"5876":1591,"5877":1591,"5878":1590,"5879":1590,"5880":1591,"5881":1590,"5882":1590,"5883":1591,"5884":1591,"5885":1590,"5886":1591,"5887":1590,"5888":1591,"5889":1591,"5890":1590,"5891":1590,"5892":1590,"5893":1591,"5894":1590,"5895":1590,"5896":1590,"5897":1590,"5898":1591,"5899":1591,"5900":1590,"5901":1590,"5902":1590,"5903":1590,"5904":1591,"5905":1591,"5906":1590,"5907":1590,"5908":1591,"5909":1590,"5910":1590,"5911":1590,"5912":1590,"5913":1591,"5914":1591,"5915":1591,"5916":1591,"5917":1590,"5918":1591,"5919":1590,"5920":1591,"5921":1591,"5922":1590,"5923":1591,"5924":1591,"5925":1591,"5926":1590,"5927":1591,"5928":1591,"5929":1590,"5930":1590,"5931":1590,"5932":1591,"5933":1590,"5934":1591,"5935":1591,"5936":1591,"5937":1591,"5938":1590,"5939":1591,"5940":1591,"5941":1590,"5942":1590,"5943":1591,"5944":1591,"5945":1591,"5946":1590,"5947":1590,"5948":1590,"5949":1591,"5950":1590,"5951":1590,"5952":1590,"5953":1590,"5954":1590,"5955":1590,"5956":1591,"5957":1590,"5958":1591,"5959":1590,"5960":1590,"5961":1591,"5962":1591,"5963":1590,"5964":1591,"5965":1590,"5966":1590,"5967":1590,"5968":1590,"5969":1590,"5970":1590,"5971":1590,"5972":1591,"5973":1591,"5974":1590,"5975":1590,"5976":1591,"5977":1590,"5978":1590,"5979":1591,"5980":1590,"5981":1591,"5982":1590,"5983":1591,"5984":1590,"5985":1590,"5986":1590,"5987":1590,"5988":1590,"5989":1590,"5990":1591,"5991":1591,"5992":1590,"5993":1591,"5994":1591,"5995":1590,"5996":1591,"5997":1590,"5998":1591,"5999":1591,"6000":1591,"6001":1591,"6002":1590,"6003":1590,"6004":1590,"6005":1591,"6006":1591,"6007":1591,"6008":1591,"6009":1591,"6010":1591,"6011":1591,"6012":1591,"6013":1590,"6014":1590,"6015":1590,"6016":1590,"6017":1590,"6018":1590,"6019":1590,"6020":1591,"6021":1591,"6022":1591,"6023":1590,"6024":1590,"6025":1590,"6026":1591,"6027":1590,"6028":1590,"6029":1590,"6030":1591,"6031":1590,"6032":1591,"6033":1591,"6034":1591,"6035":1590,"6036":1591,"6037":1591,"6038":1590,"6039":1591,"6040":1590,"6041":1591,"6042":1591,"6043":1590,"6044":1591,"6045":1591,"6046":1591,"6047":1590,"6048":1591,"6049":1591,"6050":1590,"6051":1590,"6052":1591,"6053":1591,"6054":1590,"6055":1590,"6056":1590,"6057":1590,"6058":1590,"6059":1590,"6060":1590,"6061":1591,"6062":1590,"6063":1591,"6064":1591,"6065":1590,"6066":1590,"6067":1591,"6068":1591,"6069":1590,"6070":1591,"6071":1591,"6072":1590,"6073":1591,"6074":1591,"6075":1591,"6076":1590,"6077":1590,"6078":1590,"6079":1590,"6080":1590,"6081":1590,"6082":1591,"6083":1590,"6084":1591,"6085":1591,"6086":1590,"6087":1590,"6088":1590,"6089":1590,"6090":1591,"6091":1591,"6092":1590,"6093":1591,"6094":1590,"6095":1591,"6096":1590,"6097":1590,"6098":1590,"6099":1591,"6100":1591,"6101":1590,"6102":1590,"6103":1590,"6104":1590,"6105":1590,"6106":1590,"6107":1590,"6108":1590,"6109":1591,"6110":1591,"6111":1591,"6112":1591,"6113":1590,"6114":1591,"6115":1591,"6116":1591,"6117":1591,"6118":1590,"6119":1590,"6120":1591,"6121":1591,"6122":1591,"6123":1590,"6124":1591,"6125":1590,"6126":1590,"6127":1591,"6128":1591,"6129":1591,"6130":1591,"6131":1590,"6132":1591,"6133":1590,"6134":1590,"6135":1591,"6136":1590,"6137":1590,"6138":1590,"6139":1591,"6140":1590,"6141":1590,"6142":1591,"6143":1590,"6144":1590,"6145":1590,"6146":1591,"6147":1590,"6148":1590,"6149":1590,"6150":1591,"6151":1590,"6152":1591,"6153":1590,"6154":1591,"6155":1591,"6156":1590,"6157":1590,"6158":1590,"6159":1590,"6160":1591,"6161":1590,"6162":1591,"6163":1591,"6164":1590,"6165":1591,"6166":1591,"6167":1590,"6168":1591,"6169":1591,"6170":1590,"6171":1591,"6172":1590,"6173":1591,"6174":1590,"6175":1591,"6176":1590,"6177":1591,"6178":1590,"6179":1590,"6180":1590,"6181":1590,"6182":1591,"6183":1591,"6184":1591,"6185":1590,"6186":1590,"6187":1591,"6188":1590,"6189":1591,"6190":1591,"6191":1591,"6192":1590,"6193":1591,"6194":1590,"6195":1591,"6196":1591,"6197":1590,"6198":1590,"6199":1590,"6200":1591,"6201":1590,"6202":1591,"6203":1591,"6204":1591,"6205":1591,"6206":1591,"6207":1591,"6208":1591,"6209":1590,"6210":1590,"6211":1590,"6212":1591,"6213":1590,"6214":1591,"6215":1591,"6216":1590,"6217":1590,"6218":1591,"6219":1591,"6220":1590,"6221":1591,"6222":1590,"6223":1590,"6224":1591,"6225":1590,"6226":1591,"6227":1591,"6228":1591,"6229":1591,"6230":1591,"6231":1590,"6232":1590,"6233":1591,"6234":1590,"6235":1590,"6236":1591,"6237":1590,"6238":1590,"6239":1591,"6240":1590,"6241":1590,"6242":1591,"6243":1591,"6244":1590,"6245":1591,"6246":1590,"6247":1591,"6248":1590,"6249":1590,"6250":1590,"6251":1590,"6252":1590,"6253":1591,"6254":1590,"6255":1590,"6256":1591,"6257":1591,"6258":1591,"6259":1590,"6260":1591,"6261":1591,"6262":1591,"6263":1590,"6264":1590,"6265":1590,"6266":1590,"6267":1590,"6268":1590,"6269":1590,"6270":1591,"6271":1591,"6272":1591,"6273":1590,"6274":1591,"6275":1591,"6276":1591,"6277":1590,"6278":1590,"6279":1591,"6280":1591,"6281":1590,"6282":1590,"6283":1590,"6284":1590,"6285":1591,"6286":1590,"6287":1590,"6288":1590,"6289":1591,"6290":1590,"6291":1591,"6292":1591,"6293":1591,"6294":1591,"6295":1591,"6296":1591,"6297":1591,"6298":1591,"6299":1591,"6300":1590,"6301":1591,"6302":1591,"6303":1590,"6304":1590,"6305":1591,"6306":1591,"6307":1590,"6308":1590,"6309":1591,"6310":1591,"6311":1591,"6312":1590,"6313":1590,"6314":1590,"6315":1590,"6316":1590,"6317":1591,"6318":1590,"6319":1590,"6320":1590,"6321":1590,"6322":1590,"6323":1590,"6324":1590,"6325":1590,"6326":1591,"6327":1590,"6328":1591,"6329":1590,"6330":1590,"6331":1591,"6332":1591,"6333":1590,"6334":1590,"6335":1590,"6336":1590,"6337":1591,"6338":1591,"6339":1590,"6340":1590,"6341":1590,"6342":1590,"6343":1591,"6344":1590,"6345":1590,"6346":1591,"6347":1591,"6348":1591,"6349":1591,"6350":1591,"6351":1590,"6352":1591,"6353":1591,"6354":1591,"6355":1590,"6356":1590,"6357":1590,"6358":1590,"6359":1590,"6360":1590,"6361":1590,"6362":1590,"6363":1591,"6364":1590,"6365":1590,"6366":1590,"6367":1591,"6368":1590,"6369":1591,"6370":1591,"6371":1591,"6372":1590,"6373":1590,"6374":1591,"6375":1591,"6376":1591,"6377":1590,"6378":1591,"6379":1591,"6380":1591,"6381":1590,"6382":1591,"6383":1590,"6384":1591,"6385":1591,"6386":1590,"6387":1591,"6388":1590,"6389":1590,"6390":1590,"6391":1591,"6392":1590,"6393":1590,"6394":1590,"6395":1591,"6396":1591,"6397":1590,"6398":1591,"6399":1591,"6400":1591,"6401":1590,"6402":1591,"6403":1590,"6404":1591,"6405":1590,"6406":1591,"6407":1591,"6408":1591,"6409":1591,"6410":1591,"6411":1591,"6412":1590,"6413":1591,"6414":1590,"6415":1590,"6416":1591,"6417":1590,"6418":1591,"6419":1590,"6420":1591,"6421":1590,"6422":1590,"6423":1590,"6424":1590,"6425":1590,"6426":1591,"6427":1591,"6428":1590,"6429":1591,"6430":1590,"6431":1591,"6432":1590,"6433":1590,"6434":1590,"6435":1591,"6436":1590,"6437":1591,"6438":1590,"6439":1590,"6440":1591,"6441":1590,"6442":1590,"6443":1591,"6444":1590,"6445":1590,"6446":1591,"6447":1590,"6448":1591,"6449":1590,"6450":1591,"6451":1591,"6452":1590,"6453":1590,"6454":1591,"6455":1591,"6456":1591,"6457":1590,"6458":1591,"6459":1591,"6460":1591,"6461":1590,"6462":1590,"6463":1590,"6464":1590,"6465":1591,"6466":1591,"6467":1590,"6468":1590,"6469":1591,"6470":1590,"6471":1591,"6472":1590,"6473":1591,"6474":1591,"6475":1591,"6476":1590,"6477":1590,"6478":1590,"6479":1590,"6480":1590,"6481":1591,"6482":1590,"6483":1591,"6484":1591,"6485":1591,"6486":1590,"6487":1591,"6488":1590,"6489":1590,"6490":1591,"6491":1591,"6492":1590,"6493":1590,"6494":1591,"6495":1591,"6496":1591,"6497":1590,"6498":1590,"6499":1590,"6500":1591,"6501":1591,"6502":1590,"6503":1591,"6504":1591,"6505":1591,"6506":1590,"6507":1590,"6508":1591,"6509":1591,"6510":1590,"6511":1590,"6512":1590,"6513":1591,"6514":1591,"6515":1590,"6516":1591,"6517":1591,"6518":1591,"6519":1591,"6520":1590,"6521":1590,"6522":1590,"6523":1591,"6524":1591,"6525":1591,"6526":1590,"6527":1591,"6528":1591,"6529":1590,"6530":1591,"6531":1591,"6532":1591,"6533":1591,"6534":1591,"6535":1590,"6536":1591,"6537":1590,"6538":1590,"6539":1590,"6540":1590,"6541":1591,"6542":1591,"6543":1591,"6544":1591,"6545":1590,"6546":1590,"6547":1591,"6548":1591,"6549":1590,"6550":1590,"6551":1590,"6552":1591,"6553":1591,"6554":1591,"6555":1590,"6556":1590,"6557":1590,"6558":1590,"6559":1591,"6560":1590,"6561":1590,"6562":1591,"6563":1591,"6564":1591,"6565":1591,"6566":1591,"6567":1590,"6568":1591,"6569":1591,"6570":1591,"6571":1591,"6572":1590,"6573":1591,"6574":1591,"6575":1591,"6576":1590,"6577":1591,"6578":1591,"6579":1591,"6580":1590,"6581":1590,"6582":1591,"6583":1591,"6584":1591,"6585":1591,"6586":1591,"6587":1590,"6588":1591,"6589":1590,"6590":1590,"6591":1590,"6592":1590,"6593":1590,"6594":1590,"6595":1590,"6596":1590,"6597":1590,"6598":1590,"6599":1591,"6600":1591,"6601":1591,"6602":1591,"6603":1591,"6604":1590,"6605":1591,"6606":1590,"6607":1591,"6608":1591,"6609":1591,"6610":1590,"6611":1590,"6612":1591,"6613":1591,"6614":1590,"6615":1591,"6616":1590,"6617":1590,"6618":1591,"6619":1590,"6620":1590,"6621":1590,"6622":1591,"6623":1590,"6624":1591,"6625":1591,"6626":1590,"6627":1590,"6628":1590,"6629":1591,"6630":1590,"6631":1590,"6632":1591,"6633":1591,"6634":1590,"6635":1591,"6636":1590,"6637":1590,"6638":1591,"6639":1590,"6640":1590,"6641":1590,"6642":1590,"6643":1590,"6644":1591,"6645":1591,"6646":1591,"6647":1590,"6648":1591,"6649":1590,"6650":1591,"6651":1590,"6652":1591,"6653":1591,"6654":1591,"6655":1590,"6656":1591,"6657":1590,"6658":1591,"6659":1591,"6660":1591,"6661":1590,"6662":1590,"6663":1591,"6664":1590,"6665":1591,"6666":1590,"6667":1591,"6668":1590,"6669":1591,"6670":1591,"6671":1591,"6672":1591,"6673":1591,"6674":1590,"6675":1591,"6676":1590,"6677":1591,"6678":1591,"6679":1591,"6680":1591,"6681":1590,"6682":1591,"6683":1591,"6684":1591,"6685":1590,"6686":1591,"6687":1590,"6688":1590,"6689":1590,"6690":1591,"6691":1590,"6692":1591,"6693":1591,"6694":1591,"6695":1591,"6696":1591,"6697":1591,"6698":1590,"6699":1591,"6700":1590,"6701":1590,"6702":1590,"6703":1590,"6704":1591,"6705":1591,"6706":1591,"6707":1591,"6708":1591,"6709":1590,"6710":1590,"6711":1591,"6712":1591,"6713":1591,"6714":1591,"6715":1591,"6716":1590,"6717":1591,"6718":1591,"6719":1590,"6720":1591,"6721":1591,"6722":1591,"6723":1590,"6724":1591,"6725":1591,"6726":1590,"6727":1590,"6728":1590,"6729":1591,"6730":1590,"6731":1591,"6732":1591,"6733":1591,"6734":1590,"6735":1591,"6736":1591,"6737":1591,"6738":1590,"6739":1591,"6740":1590,"6741":1591,"6742":1590,"6743":1590,"6744":1591,"6745":1590,"6746":1590,"6747":1591,"6748":1591,"6749":1590,"6750":1591,"6751":1591,"6752":1590,"6753":1590,"6754":1590,"6755":1591,"6756":1591,"6757":1591,"6758":1591,"6759":1590,"6760":1590,"6761":1590,"6762":1590,"6763":1590,"6764":1591,"6765":1591,"6766":1591,"6767":1591,"6768":1591,"6769":1590,"6770":1591,"6771":1591,"6772":1590,"6773":1590,"6774":1590,"6775":1590,"6776":1591,"6777":1591,"6778":1590,"6779":1590,"6780":1590,"6781":1590,"6782":1590,"6783":1590,"6784":1591,"6785":1591,"6786":1591,"6787":1590,"6788":1590,"6789":1590,"6790":1590,"6791":1590,"6792":1591,"6793":1591,"6794":1591,"6795":1591,"6796":1590,"6797":1591,"6798":1590,"6799":1591,"6800":1590,"6801":1591,"6802":1590,"6803":1591,"6804":1591,"6805":1591,"6806":1591,"6807":1591,"6808":1590,"6809":1590,"6810":1591,"6811":1591,"6812":1590,"6813":1591,"6814":1591,"6815":1591,"6816":1590,"6817":1590,"6818":1590,"6819":1590,"6820":1591,"6821":1591,"6822":1590,"6823":1590,"6824":1591,"6825":1591,"6826":1590,"6827":1590,"6828":1590,"6829":1590,"6830":1590,"6831":1591,"6832":1590,"6833":1590,"6834":1590,"6835":1590,"6836":1591,"6837":1591,"6838":1590,"6839":1590,"6840":1591,"6841":1590,"6842":1590,"6843":1591,"6844":1591,"6845":1590,"6846":1591,"6847":1590,"6848":1590,"6849":1591,"6850":1590,"6851":1591,"6852":1591,"6853":1591,"6854":1591,"6855":1590,"6856":1590,"6857":1590,"6858":1590,"6859":1591,"6860":1590,"6861":1590,"6862":1590,"6863":1591,"6864":1590,"6865":1591,"6866":1591,"6867":1591,"6868":1591,"6869":1590,"6870":1590,"6871":1591,"6872":1590,"6873":1590,"6874":1590,"6875":1590,"6876":1590,"6877":1591,"6878":1590,"6879":1591,"6880":1591,"6881":1590,"6882":1590,"6883":1590,"6884":1591,"6885":1590,"6886":1590,"6887":1591,"6888":1590,"6889":1590,"6890":1591,"6891":1591,"6892":1591,"6893":1590,"6894":1590,"6895":1590,"6896":1590,"6897":1591,"6898":1591,"6899":1590,"6900":1590,"6901":1590,"6902":1590,"6903":1591,"6904":1590,"6905":1590,"6906":1591,"6907":1591,"6908":1591,"6909":1590,"6910":1590,"6911":1591,"6912":1590,"6913":1591,"6914":1591,"6915":1590,"6916":1591,"6917":1590,"6918":1591,"6919":1591,"6920":1590,"6921":1591,"6922":1591,"6923":1590,"6924":1591,"6925":1590,"6926":1590,"6927":1591,"6928":1591,"6929":1590,"6930":1590,"6931":1591,"6932":1591,"6933":1591,"6934":1590,"6935":1591,"6936":1590,"6937":1590,"6938":1591,"6939":1590,"6940":1591,"6941":1591,"6942":1590,"6943":1591,"6944":1591,"6945":1590,"6946":1591,"6947":1591,"6948":1590,"6949":1591,"6950":1590,"6951":1590,"6952":1591,"6953":1590,"6954":1590,"6955":1590,"6956":1590,"6957":1590,"6958":1591,"6959":1591,"6960":1591,"6961":1591,"6962":1590,"6963":1590,"6964":1590,"6965":1590,"6966":1591,"6967":1590,"6968":1590,"6969":1591,"6970":1590,"6971":1591,"6972":1591,"6973":1590,"6974":1591,"6975":1590,"6976":1591,"6977":1591,"6978":1590,"6979":1591,"6980":1590,"6981":1590,"6982":1591,"6983":1591,"6984":1590,"6985":1591,"6986":1591,"6987":1590,"6988":1590,"6989":1591,"6990":1590,"6991":1591,"6992":1591,"6993":1591,"6994":1590,"6995":1591,"6996":1590,"6997":1591,"6998":1590,"6999":1591,"7000":1591,"7001":1590,"7002":1591,"7003":1590,"7004":1591,"7005":1591,"7006":1590,"7007":1591,"7008":1591,"7009":1591,"7010":1590,"7011":1591,"7012":1591,"7013":1591,"7014":1591,"7015":1590,"7016":1590,"7017":1590,"7018":1591,"7019":1590,"7020":1591,"7021":1590,"7022":1591,"7023":1590,"7024":1591,"7025":1590,"7026":1591,"7027":1590,"7028":1590,"7029":1591,"7030":1591,"7031":1590,"7032":1591,"7033":1590,"7034":1590,"7035":1590,"7036":1590,"7037":1591,"7038":1590,"7039":1590,"7040":1590,"7041":1591,"7042":1591,"7043":1590,"7044":1591,"7045":1591,"7046":1591,"7047":1591,"7048":1591,"7049":1590,"7050":1590,"7051":1590,"7052":1590,"7053":1591,"7054":1590,"7055":1591,"7056":1590,"7057":1591,"7058":1591,"7059":1590,"7060":1591,"7061":1591,"7062":1590,"7063":1590,"7064":1591,"7065":1591,"7066":1591,"7067":1590,"7068":1591,"7069":1590,"7070":1590,"7071":1590,"7072":1590,"7073":1591,"7074":1591,"7075":1591,"7076":1591,"7077":1591,"7078":1590,"7079":1591,"7080":1591,"7081":1590,"7082":1590,"7083":1591,"7084":1591,"7085":1591,"7086":1591,"7087":1590,"7088":1591,"7089":1591,"7090":1590,"7091":1590,"7092":1590,"7093":1591,"7094":1590,"7095":1591,"7096":1591,"7097":1590,"7098":1591,"7099":1591,"7100":1591,"7101":1590,"7102":1591,"7103":1590,"7104":1590,"7105":1591,"7106":1591,"7107":1591,"7108":1591,"7109":1591,"7110":1591,"7111":1590,"7112":1590,"7113":1591,"7114":1590,"7115":1590,"7116":1591,"7117":1591,"7118":1591,"7119":1591,"7120":1590,"7121":1590,"7122":1590,"7123":1591,"7124":1591,"7125":1590,"7126":1591,"7127":1591,"7128":1591,"7129":1590,"7130":1591,"7131":1590,"7132":1591,"7133":1591,"7134":1590,"7135":1591,"7136":1591,"7137":1590,"7138":1591,"7139":1590,"7140":1590,"7141":1590,"7142":1591,"7143":1590,"7144":1591,"7145":1590,"7146":1590,"7147":1590,"7148":1591,"7149":1590,"7150":1590,"7151":1591,"7152":1591,"7153":1590,"7154":1590,"7155":1590,"7156":1591,"7157":1591,"7158":1591,"7159":1590,"7160":1591,"7161":1591,"7162":1591,"7163":1591,"7164":1590,"7165":1590,"7166":1590,"7167":1591,"7168":1591,"7169":1591,"7170":1591,"7171":1590,"7172":1591,"7173":1591,"7174":1591,"7175":1591,"7176":1590,"7177":1591,"7178":1591,"7179":1590,"7180":1591,"7181":1591,"7182":1590,"7183":1590,"7184":1590,"7185":1591,"7186":1590,"7187":1590,"7188":1591,"7189":1590,"7190":1591,"7191":1590,"7192":1591,"7193":1591,"7194":1590,"7195":1591,"7196":1590,"7197":1591,"7198":1590,"7199":1590,"7200":1591,"7201":1590,"7202":1591,"7203":1591,"7204":1591,"7205":1590,"7206":1590,"7207":1591,"7208":1591,"7209":1590,"7210":1591,"7211":1591,"7212":1590,"7213":1590,"7214":1591,"7215":1591,"7216":1590,"7217":1591,"7218":1591,"7219":1590,"7220":1590,"7221":1590,"7222":1590,"7223":1590,"7224":1591,"7225":1591,"7226":1591,"7227":1590,"7228":1590,"7229":1590,"7230":1590,"7231":1591,"7232":1590,"7233":1590,"7234":1590,"7235":1591,"7236":1591,"7237":1590,"7238":1590,"7239":1590,"7240":1591,"7241":1591,"7242":1590,"7243":1590,"7244":1591,"7245":1590,"7246":1591,"7247":1590,"7248":1591,"7249":1590,"7250":1590,"7251":1590,"7252":1590,"7253":1590,"7254":1591,"7255":1590,"7256":1591,"7257":1590,"7258":1591,"7259":1591,"7260":1590,"7261":1591,"7262":1590,"7263":1591,"7264":1591,"7265":1591,"7266":1591,"7267":1591,"7268":1590,"7269":1591,"7270":1590,"7271":1590,"7272":1591,"7273":1591,"7274":1590,"7275":1591,"7276":1590,"7277":1591,"7278":1590,"7279":1590,"7280":1591,"7281":1591,"7282":1591,"7283":1590,"7284":1591,"7285":1590,"7286":1590,"7287":1591,"7288":1591,"7289":1590,"7290":1590,"7291":1590,"7292":1591,"7293":1590,"7294":1591,"7295":1590,"7296":1590,"7297":1590,"7298":1590,"7299":1590,"7300":1590,"7301":1590,"7302":1590,"7303":1590,"7304":1590,"7305":1590,"7306":1590,"7307":1590,"7308":1591,"7309":1591,"7310":1590,"7311":1590,"7312":1591,"7313":1590,"7314":1590,"7315":1591,"7316":1591,"7317":1591,"7318":1591,"7319":1590,"7320":1590,"7321":1590,"7322":1590,"7323":1591,"7324":1590,"7325":1591,"7326":1590,"7327":1591,"7328":1591,"7329":1591,"7330":1591,"7331":1591,"7332":1590,"7333":1590,"7334":1590,"7335":1591,"7336":1591,"7337":1591,"7338":1590,"7339":1591,"7340":1590,"7341":1591,"7342":1590,"7343":1590,"7344":1591,"7345":1591,"7346":1591,"7347":1591,"7348":1590,"7349":1590,"7350":1590,"7351":1590,"7352":1590,"7353":1590,"7354":1591,"7355":1590,"7356":1590,"7357":1590,"7358":1591,"7359":1590,"7360":1590,"7361":1590,"7362":1591,"7363":1590,"7364":1591,"7365":1590,"7366":1590,"7367":1590,"7368":1591,"7369":1590,"7370":1590,"7371":1590,"7372":1591,"7373":1591,"7374":1590,"7375":1591,"7376":1590,"7377":1591,"7378":1591,"7379":1591,"7380":1590,"7381":1590,"7382":1591,"7383":1591,"7384":1591,"7385":1590,"7386":1591,"7387":1590,"7388":1590,"7389":1591,"7390":1590,"7391":1590,"7392":1590,"7393":1591,"7394":1590,"7395":1591,"7396":1590,"7397":1590,"7398":1590,"7399":1590,"7400":1590,"7401":1590,"7402":1590,"7403":1590,"7404":1590,"7405":1590,"7406":1590,"7407":1590,"7408":1591,"7409":1590,"7410":1590,"7411":1590,"7412":1591,"7413":1590,"7414":1590,"7415":1591,"7416":1590,"7417":1591,"7418":1591,"7419":1591,"7420":1591,"7421":1590,"7422":1591,"7423":1590,"7424":1590,"7425":1591,"7426":1591,"7427":1591,"7428":1591,"7429":1591,"7430":1590,"7431":1591,"7432":1591,"7433":1591,"7434":1590,"7435":1591,"7436":1591,"7437":1590,"7438":1590,"7439":1590,"7440":1591,"7441":1590,"7442":1590,"7443":1590,"7444":1591,"7445":1590,"7446":1591,"7447":1591,"7448":1590,"7449":1590,"7450":1590,"7451":1591,"7452":1590,"7453":1590,"7454":1591,"7455":1590,"7456":1590,"7457":1590,"7458":1590,"7459":1591,"7460":1591,"7461":1590,"7462":1590,"7463":1590,"7464":1591,"7465":1591,"7466":1590,"7467":1590,"7468":1591,"7469":1590,"7470":1591,"7471":1590,"7472":1590,"7473":1590,"7474":1591,"7475":1591,"7476":1590,"7477":1590,"7478":1590,"7479":1590,"7480":1590,"7481":1590,"7482":1591,"7483":1591,"7484":1591,"7485":1590,"7486":1590,"7487":1591,"7488":1591,"7489":1590,"7490":1591,"7491":1591,"7492":1591,"7493":1590,"7494":1591,"7495":1590,"7496":1590,"7497":1591,"7498":1591,"7499":1590,"7500":1590,"7501":1590,"7502":1590,"7503":1590,"7504":1591,"7505":1591,"7506":1591,"7507":1591,"7508":1590,"7509":1591,"7510":1590,"7511":1590,"7512":1590,"7513":1590,"7514":1590,"7515":1590,"7516":1590,"7517":1591,"7518":1591,"7519":1591,"7520":1591,"7521":1591,"7522":1590,"7523":1591,"7524":1590,"7525":1590,"7526":1591,"7527":1590,"7528":1591,"7529":1590,"7530":1590,"7531":1590,"7532":1591,"7533":1590,"7534":1591,"7535":1590,"7536":1590,"7537":1591,"7538":1590,"7539":1590,"7540":1591,"7541":1590,"7542":1591,"7543":1591,"7544":1591,"7545":1590,"7546":1591,"7547":1591,"7548":1591,"7549":1590,"7550":1591,"7551":1591,"7552":1590,"7553":1591,"7554":1591,"7555":1590,"7556":1591,"7557":1590,"7558":1591,"7559":1591,"7560":1590,"7561":1590,"7562":1590,"7563":1591,"7564":1590,"7565":1591,"7566":1591,"7567":1591,"7568":1591,"7569":1590,"7570":1591,"7571":1591,"7572":1591,"7573":1591,"7574":1591,"7575":1590,"7576":1590,"7577":1591,"7578":1591,"7579":1591,"7580":1591,"7581":1591,"7582":1591,"7583":1590,"7584":1590,"7585":1590,"7586":1590,"7587":1590,"7588":1591,"7589":1591,"7590":1590,"7591":1590,"7592":1590,"7593":1591,"7594":1590,"7595":1591,"7596":1590,"7597":1590,"7598":1590,"7599":1590,"7600":1591,"7601":1591,"7602":1590,"7603":1590,"7604":1591,"7605":1591,"7606":1590,"7607":1590,"7608":1591,"7609":1590,"7610":1591,"7611":1591,"7612":1591,"7613":1590,"7614":1590,"7615":1590,"7616":1591,"7617":1590,"7618":1590,"7619":1590,"7620":1591,"7621":1591,"7622":1590,"7623":1590,"7624":1590,"7625":1591,"7626":1590,"7627":1591,"7628":1590,"7629":1591,"7630":1591,"7631":1591,"7632":1590,"7633":1590,"7634":1590,"7635":1591,"7636":1591,"7637":1590,"7638":1591,"7639":1590,"7640":1590,"7641":1590,"7642":1591,"7643":1591,"7644":1590,"7645":1590,"7646":1590,"7647":1591,"7648":1590,"7649":1590,"7650":1591,"7651":1590,"7652":1590,"7653":1590,"7654":1591,"7655":1590,"7656":1591,"7657":1591,"7658":1591,"7659":1591,"7660":1591,"7661":1591,"7662":1591,"7663":1590,"7664":1591,"7665":1590,"7666":1591,"7667":1590,"7668":1590,"7669":1591,"7670":1590,"7671":1590,"7672":1590,"7673":1591,"7674":1590,"7675":1590,"7676":1590,"7677":1590,"7678":1590,"7679":1591,"7680":1590,"7681":1590,"7682":1591,"7683":1590,"7684":1590,"7685":1591,"7686":1590,"7687":1590,"7688":1591,"7689":1590,"7690":1590,"7691":1590,"7692":1590,"7693":1591,"7694":1591,"7695":1591,"7696":1590,"7697":1591,"7698":1591,"7699":1590,"7700":1591,"7701":1591,"7702":1590,"7703":1590,"7704":1590,"7705":1590,"7706":1591,"7707":1591,"7708":1590,"7709":1590,"7710":1591,"7711":1590,"7712":1590,"7713":1591,"7714":1591,"7715":1590,"7716":1591,"7717":1590,"7718":1591,"7719":1590,"7720":1591,"7721":1591,"7722":1590,"7723":1590,"7724":1591,"7725":1590,"7726":1591,"7727":1591,"7728":1590,"7729":1590,"7730":1590,"7731":1590,"7732":1590,"7733":1590,"7734":1591,"7735":1590,"7736":1590,"7737":1590,"7738":1590,"7739":1591,"7740":1591,"7741":1591,"7742":1590,"7743":1590,"7744":1590,"7745":1590,"7746":1591,"7747":1591,"7748":1590,"7749":1591,"7750":1590,"7751":1591,"7752":1590,"7753":1591,"7754":1591,"7755":1590,"7756":1591,"7757":1590,"7758":1591,"7759":1590,"7760":1590,"7761":1591,"7762":1590,"7763":1591,"7764":1591,"7765":1590,"7766":1591,"7767":1591,"7768":1590,"7769":1590,"7770":1591,"7771":1591,"7772":1591,"7773":1591,"7774":1591,"7775":1590,"7776":1591,"7777":1591,"7778":1591,"7779":1590,"7780":1591,"7781":1591,"7782":1591,"7783":1590,"7784":1591,"7785":1591,"7786":1591,"7787":1590,"7788":1590,"7789":1590,"7790":1591,"7791":1591,"7792":1591,"7793":1591,"7794":1591,"7795":1591,"7796":1590,"7797":1590,"7798":1590,"7799":1591,"7800":1590,"7801":1590,"7802":1590,"7803":1590,"7804":1591,"7805":1591,"7806":1590,"7807":1590,"7808":1591,"7809":1591,"7810":1590,"7811":1590,"7812":1590,"7813":1591,"7814":1590,"7815":1590,"7816":1591,"7817":1591,"7818":1590,"7819":1591,"7820":1591,"7821":1590,"7822":1591,"7823":1590,"7824":1591,"7825":1590,"7826":1590,"7827":1591,"7828":1590,"7829":1590,"7830":1591,"7831":1591,"7832":1590,"7833":1591,"7834":1591,"7835":1590,"7836":1590,"7837":1590,"7838":1590,"7839":1591,"7840":1590,"7841":1590,"7842":1590,"7843":1591,"7844":1591,"7845":1590,"7846":1591,"7847":1590,"7848":1590,"7849":1590,"7850":1591,"7851":1590,"7852":1591,"7853":1591,"7854":1590,"7855":1591,"7856":1591,"7857":1590,"7858":1590,"7859":1591,"7860":1590,"7861":1591,"7862":1591,"7863":1591,"7864":1591,"7865":1591,"7866":1590,"7867":1591,"7868":1590,"7869":1591,"7870":1591,"7871":1591,"7872":1591,"7873":1591,"7874":1590,"7875":1590,"7876":1591,"7877":1590,"7878":1590,"7879":1590,"7880":1591,"7881":1591,"7882":1591,"7883":1590,"7884":1591,"7885":1590,"7886":1591,"7887":1591,"7888":1590,"7889":1590,"7890":1591,"7891":1590,"7892":1591,"7893":1591,"7894":1590,"7895":1590,"7896":1591,"7897":1590,"7898":1591,"7899":1591,"7900":1590,"7901":1591,"7902":1591,"7903":1590,"7904":1591,"7905":1590,"7906":1591,"7907":1590,"7908":1591,"7909":1590,"7910":1591,"7911":1590,"7912":1591,"7913":1590,"7914":1590,"7915":1590,"7916":1591,"7917":1590,"7918":1590,"7919":1590,"7920":1590,"7921":1591,"7922":1591,"7923":1590,"7924":1591,"7925":1590,"7926":1591,"7927":1590,"7928":1590,"7929":1590,"7930":1591,"7931":1590,"7932":1590,"7933":1591,"7934":1591,"7935":1591,"7936":1590,"7937":1591,"7938":1590,"7939":1590,"7940":1590,"7941":1590,"7942":1591,"7943":1591,"7944":1591,"7945":1590,"7946":1590,"7947":1590,"7948":1590,"7949":1591,"7950":1591,"7951":1591,"7952":1591,"7953":1590,"7954":1591,"7955":1590,"7956":1591,"7957":1591,"7958":1590,"7959":1590,"7960":1590,"7961":1591,"7962":1590,"7963":1590,"7964":1590,"7965":1591,"7966":1590,"7967":1590,"7968":1590,"7969":1590,"7970":1590,"7971":1591,"7972":1590,"7973":1591,"7974":1591,"7975":1591,"7976":1591,"7977":1590,"7978":1590,"7979":1590,"7980":1591,"7981":1590,"7982":1590,"7983":1590,"7984":1591,"7985":1590,"7986":1590,"7987":1591,"7988":1591,"7989":1591,"7990":1590,"7991":1591,"7992":1590,"7993":1591,"7994":1591,"7995":1590,"7996":1591,"7997":1590,"7998":1591,"7999":1590,"8000":1590,"8001":1590,"8002":1591,"8003":1591,"8004":1590,"8005":1590,"8006":1590,"8007":1590,"8008":1591,"8009":1590,"8010":1591,"8011":1590,"8012":1591,"8013":1591,"8014":1590,"8015":1591,"8016":1591,"8017":1591,"8018":1591,"8019":1591,"8020":1590,"8021":1590,"8022":1591,"8023":1591,"8024":1591,"8025":1590,"8026":1591,"8027":1591,"8028":1590,"8029":1591,"8030":1590,"8031":1591,"8032":1590,"8033":1590,"8034":1591,"8035":1591,"8036":1591,"8037":1590,"8038":1591,"8039":1590,"8040":1591,"8041":1591,"8042":1590,"8043":1591,"8044":1590,"8045":1590,"8046":1591,"8047":1590,"8048":1590,"8049":1591,"8050":1590,"8051":1591,"8052":1591,"8053":1591,"8054":1591,"8055":1590,"8056":1590,"8057":1591,"8058":1590,"8059":1591,"8060":1591,"8061":1591,"8062":1591,"8063":1591,"8064":1590,"8065":1590,"8066":1590,"8067":1590,"8068":1591,"8069":1590,"8070":1590,"8071":1590,"8072":1591,"8073":1590,"8074":1590,"8075":1590,"8076":1591,"8077":1590,"8078":1591,"8079":1591,"8080":1591,"8081":1590,"8082":1591,"8083":1591,"8084":1590,"8085":1591,"8086":1590,"8087":1590,"8088":1591,"8089":1591,"8090":1590,"8091":1590,"8092":1591,"8093":1591,"8094":1591,"8095":1590,"8096":1590,"8097":1590,"8098":1590,"8099":1590,"8100":1590,"8101":1591,"8102":1591,"8103":1591,"8104":1591,"8105":1590,"8106":1591,"8107":1590,"8108":1591,"8109":1591,"8110":1590,"8111":1590,"8112":1590,"8113":1591,"8114":1591,"8115":1591,"8116":1590,"8117":1590,"8118":1590,"8119":1591,"8120":1590,"8121":1591,"8122":1590,"8123":1590,"8124":1590,"8125":1590,"8126":1591,"8127":1591,"8128":1590,"8129":1591,"8130":1590,"8131":1591,"8132":1590,"8133":1591,"8134":1590,"8135":1591,"8136":1590,"8137":1591,"8138":1590,"8139":1591,"8140":1590,"8141":1590,"8142":1591,"8143":1590,"8144":1591,"8145":1590,"8146":1591,"8147":1591,"8148":1590,"8149":1591,"8150":1591,"8151":1590,"8152":1590,"8153":1591,"8154":1590,"8155":1590,"8156":1591,"8157":1591,"8158":1590,"8159":1591,"8160":1591,"8161":1591,"8162":1590,"8163":1590,"8164":1591,"8165":1590,"8166":1590,"8167":1591,"8168":1591,"8169":1590,"8170":1590,"8171":1591,"8172":1590,"8173":1590,"8174":1591,"8175":1590,"8176":1590,"8177":1590,"8178":1590,"8179":1590,"8180":1590,"8181":1590,"8182":1591,"8183":1590,"8184":1591,"8185":1591,"8186":1591,"8187":1591,"8188":1590,"8189":1591,"8190":1591,"8191":1591,"8192":1591,"8193":1590,"8194":1591,"8195":1591,"8196":1591,"8197":1591,"8198":1591,"8199":1591,"8200":1590,"8201":1591,"8202":1590,"8203":1591,"8204":1590,"8205":1591,"8206":1591,"8207":1590,"8208":1591,"8209":1591,"8210":1591,"8211":1590,"8212":1590,"8213":1591,"8214":1591,"8215":1590,"8216":1591,"8217":1591,"8218":1590,"8219":1590,"8220":1591,"8221":1590,"8222":1591,"8223":1590,"8224":1591,"8225":1590,"8226":1591,"8227":1591,"8228":1590,"8229":1590,"8230":1590,"8231":1590,"8232":1591,"8233":1591,"8234":1590,"8235":1591,"8236":1591,"8237":1590,"8238":1591,"8239":1591,"8240":1590,"8241":1590,"8242":1591,"8243":1590,"8244":1591,"8245":1591,"8246":1590,"8247":1590,"8248":1590,"8249":1590,"8250":1590,"8251":1590,"8252":1590,"8253":1591,"8254":1591,"8255":1590,"8256":1591,"8257":1591,"8258":1590,"8259":1591,"8260":1590,"8261":1591,"8262":1590,"8263":1590,"8264":1590,"8265":1591,"8266":1591,"8267":1591,"8268":1591,"8269":1590,"8270":1590,"8271":1591,"8272":1590,"8273":1590,"8274":1591,"8275":1590,"8276":1591,"8277":1590,"8278":1590,"8279":1590,"8280":1590,"8281":1591,"8282":1590,"8283":1590,"8284":1590,"8285":1591,"8286":1590,"8287":1591,"8288":1591,"8289":1590,"8290":1590,"8291":1591,"8292":1590,"8293":1591,"8294":1591,"8295":1590,"8296":1590,"8297":1591,"8298":1590,"8299":1590,"8300":1590,"8301":1590,"8302":1590,"8303":1590,"8304":1590,"8305":1590,"8306":1591,"8307":1591,"8308":1591,"8309":1590,"8310":1591,"8311":1591,"8312":1591,"8313":1591,"8314":1590,"8315":1591,"8316":1590,"8317":1590,"8318":1590,"8319":1591,"8320":1590,"8321":1591,"8322":1591,"8323":1590,"8324":1590,"8325":1590,"8326":1591,"8327":1591,"8328":1590,"8329":1591,"8330":1590,"8331":1591,"8332":1591,"8333":1590,"8334":1590,"8335":1591,"8336":1591,"8337":1590,"8338":1591,"8339":1590,"8340":1590,"8341":1590,"8342":1590,"8343":1590,"8344":1591,"8345":1591,"8346":1591,"8347":1591,"8348":1590,"8349":1591,"8350":1590,"8351":1590,"8352":1591,"8353":1591,"8354":1590,"8355":1591,"8356":1591,"8357":1590,"8358":1591,"8359":1591,"8360":1590,"8361":1591,"8362":1591,"8363":1590,"8364":1591,"8365":1590,"8366":1590,"8367":1590,"8368":1591,"8369":1591,"8370":1591,"8371":1591,"8372":1590,"8373":1591,"8374":1591,"8375":1590,"8376":1590,"8377":1591,"8378":1590,"8379":1591,"8380":1591,"8381":1590,"8382":1590,"8383":1590,"8384":1590,"8385":1591,"8386":1591,"8387":1591,"8388":1590,"8389":1590,"8390":1590,"8391":1590,"8392":1590,"8393":1591,"8394":1590,"8395":1591,"8396":1591,"8397":1590,"8398":1590,"8399":1591,"8400":1590,"8401":1591,"8402":1591,"8403":1591,"8404":1591,"8405":1590,"8406":1591,"8407":1590,"8408":1591,"8409":1590,"8410":1591,"8411":1590,"8412":1591,"8413":1590,"8414":1591,"8415":1590,"8416":1590,"8417":1590,"8418":1591,"8419":1591,"8420":1591,"8421":1591,"8422":1591,"8423":1590,"8424":1590,"8425":1591,"8426":1590,"8427":1591,"8428":1590,"8429":1590,"8430":1590,"8431":1591,"8432":1591,"8433":1591,"8434":1591,"8435":1591,"8436":1591,"8437":1591,"8438":1591,"8439":1591,"8440":1591,"8441":1590,"8442":1591,"8443":1591,"8444":1591,"8445":1591,"8446":1590,"8447":1591,"8448":1590,"8449":1590,"8450":1591,"8451":1590,"8452":1591,"8453":1591,"8454":1591,"8455":1591,"8456":1591,"8457":1591,"8458":1591,"8459":1590,"8460":1590,"8461":1591,"8462":1590,"8463":1591,"8464":1591,"8465":1591,"8466":1591,"8467":1591,"8468":1590,"8469":1590,"8470":1591,"8471":1591,"8472":1591,"8473":1591,"8474":1590,"8475":1590,"8476":1591,"8477":1591,"8478":1590,"8479":1591,"8480":1591,"8481":1591,"8482":1591,"8483":1591,"8484":1590,"8485":1590,"8486":1591,"8487":1590,"8488":1590,"8489":1590,"8490":1590,"8491":1591,"8492":1590,"8493":1591,"8494":1590,"8495":1591,"8496":1590,"8497":1590,"8498":1590,"8499":1590,"8500":1590,"8501":1590,"8502":1590,"8503":1591,"8504":1590,"8505":1590,"8506":1590,"8507":1590,"8508":1590,"8509":1590,"8510":1591,"8511":1590,"8512":1591,"8513":1590,"8514":1590,"8515":1591,"8516":1591,"8517":1591,"8518":1591,"8519":1591,"8520":1591,"8521":1590,"8522":1591,"8523":1591,"8524":1590,"8525":1590,"8526":1591,"8527":1591,"8528":1591,"8529":1590,"8530":1590,"8531":1591,"8532":1590,"8533":1591,"8534":1590,"8535":1590,"8536":1591,"8537":1591,"8538":1591,"8539":1590,"8540":1590,"8541":1590,"8542":1590,"8543":1591,"8544":1590,"8545":1590,"8546":1590,"8547":1590,"8548":1590,"8549":1590,"8550":1591,"8551":1591,"8552":1590,"8553":1591,"8554":1591,"8555":1591,"8556":1591,"8557":1591,"8558":1591,"8559":1591,"8560":1590,"8561":1591,"8562":1590,"8563":1590,"8564":1591,"8565":1591,"8566":1591,"8567":1591,"8568":1590,"8569":1591,"8570":1590,"8571":1590,"8572":1590,"8573":1591,"8574":1590,"8575":1590,"8576":1590,"8577":1590,"8578":1591,"8579":1590,"8580":1591,"8581":1591,"8582":1590,"8583":1590,"8584":1591,"8585":1591,"8586":1590,"8587":1591,"8588":1591,"8589":1591,"8590":1591,"8591":1591,"8592":1590,"8593":1591,"8594":1590,"8595":1590,"8596":1590,"8597":1590,"8598":1591,"8599":1590,"8600":1590,"8601":1591,"8602":1590,"8603":1591,"8604":1590,"8605":1591,"8606":1590,"8607":1590,"8608":1590,"8609":1590,"8610":1590,"8611":1591,"8612":1591,"8613":1590,"8614":1590,"8615":1590,"8616":1591,"8617":1591,"8618":1591,"8619":1591,"8620":1590,"8621":1591,"8622":1590,"8623":1591,"8624":1591,"8625":1590,"8626":1591,"8627":1591,"8628":1591,"8629":1590,"8630":1591,"8631":1591,"8632":1590,"8633":1590,"8634":1591,"8635":1590,"8636":1591,"8637":1590,"8638":1590,"8639":1590,"8640":1590,"8641":1591,"8642":1590,"8643":1591,"8644":1590,"8645":1590,"8646":1590,"8647":1591,"8648":1591,"8649":1590,"8650":1590,"8651":1591,"8652":1590,"8653":1591,"8654":1590,"8655":1590,"8656":1590,"8657":1590,"8658":1591,"8659":1590,"8660":1590,"8661":1590,"8662":1591,"8663":1591,"8664":1591,"8665":1590,"8666":1591,"8667":1591,"8668":1590,"8669":1591,"8670":1590,"8671":1590,"8672":1591,"8673":1590,"8674":1591,"8675":1591,"8676":1590,"8677":1590,"8678":1591,"8679":1590,"8680":1590,"8681":1590,"8682":1590,"8683":1590,"8684":1590,"8685":1590,"8686":1590,"8687":1591,"8688":1590,"8689":1590,"8690":1591,"8691":1590,"8692":1591,"8693":1591,"8694":1591,"8695":1590,"8696":1591,"8697":1591,"8698":1590,"8699":1590,"8700":1591,"8701":1591,"8702":1591,"8703":1590,"8704":1591,"8705":1591,"8706":1591,"8707":1591,"8708":1590,"8709":1591,"8710":1590,"8711":1591,"8712":1590,"8713":1590,"8714":1591,"8715":1590,"8716":1590,"8717":1591,"8718":1590,"8719":1590,"8720":1590,"8721":1590,"8722":1590,"8723":1590,"8724":1590,"8725":1591,"8726":1590,"8727":1590,"8728":1590,"8729":1590,"8730":1591,"8731":1590,"8732":1591,"8733":1591,"8734":1591,"8735":1591,"8736":1591,"8737":1590,"8738":1591,"8739":1591,"8740":1590,"8741":1590,"8742":1590,"8743":1590,"8744":1591,"8745":1591,"8746":1590,"8747":1590,"8748":1590,"8749":1590,"8750":1590,"8751":1591,"8752":1591,"8753":1590,"8754":1590,"8755":1590,"8756":1591,"8757":1590,"8758":1591,"8759":1591,"8760":1590,"8761":1590,"8762":1590,"8763":1591,"8764":1590,"8765":1590,"8766":1590,"8767":1591,"8768":1590,"8769":1590,"8770":1591,"8771":1591,"8772":1591,"8773":1591,"8774":1590,"8775":1591,"8776":1591,"8777":1591,"8778":1590,"8779":1591,"8780":1590,"8781":1590,"8782":1591,"8783":1590,"8784":1591,"8785":1591,"8786":1591,"8787":1590,"8788":1590,"8789":1590,"8790":1590,"8791":1591,"8792":1590,"8793":1591,"8794":1591,"8795":1590,"8796":1590,"8797":1590,"8798":1590,"8799":1591,"8800":1591,"8801":1590,"8802":1591,"8803":1591,"8804":1590,"8805":1591,"8806":1591,"8807":1590,"8808":1590,"8809":1591,"8810":1591,"8811":1590,"8812":1591,"8813":1591,"8814":1590,"8815":1590,"8816":1590,"8817":1591,"8818":1590,"8819":1590,"8820":1591,"8821":1590,"8822":1591,"8823":1591,"8824":1591,"8825":1590,"8826":1591,"8827":1591,"8828":1591,"8829":1591,"8830":1591,"8831":1590,"8832":1590,"8833":1591,"8834":1591,"8835":1591,"8836":1590,"8837":1590,"8838":1591,"8839":1591,"8840":1591,"8841":1590,"8842":1590,"8843":1590,"8844":1591,"8845":1591,"8846":1590,"8847":1590,"8848":1591,"8849":1590,"8850":1590,"8851":1591,"8852":1590,"8853":1590,"8854":1590,"8855":1591,"8856":1590,"8857":1591,"8858":1591,"8859":1591,"8860":1591,"8861":1591,"8862":1591,"8863":1590,"8864":1591,"8865":1591,"8866":1590,"8867":1591,"8868":1591,"8869":1590,"8870":1590,"8871":1591,"8872":1590,"8873":1591,"8874":1591,"8875":1591,"8876":1591,"8877":1591,"8878":1590,"8879":1590,"8880":1591,"8881":1590,"8882":1591,"8883":1591,"8884":1590,"8885":1590,"8886":1590,"8887":1590,"8888":1590,"8889":1590,"8890":1591,"8891":1590,"8892":1590,"8893":1590,"8894":1590,"8895":1590,"8896":1590,"8897":1591,"8898":1590,"8899":1591,"8900":1591,"8901":1590,"8902":1590,"8903":1590,"8904":1590,"8905":1591,"8906":1590,"8907":1590,"8908":1591,"8909":1591,"8910":1590,"8911":1590,"8912":1590,"8913":1591,"8914":1590,"8915":1591,"8916":1591,"8917":1591,"8918":1591,"8919":1591,"8920":1590,"8921":1591,"8922":1590,"8923":1590,"8924":1590,"8925":1590,"8926":1590,"8927":1590,"8928":1590,"8929":1590,"8930":1590,"8931":1590,"8932":1591,"8933":1590,"8934":1591,"8935":1591,"8936":1590,"8937":1591,"8938":1591,"8939":1590,"8940":1591,"8941":1591,"8942":1591,"8943":1590,"8944":1590,"8945":1591,"8946":1590,"8947":1591,"8948":1591,"8949":1590,"8950":1591,"8951":1591,"8952":1590,"8953":1591,"8954":1590,"8955":1591,"8956":1590,"8957":1590,"8958":1590,"8959":1591,"8960":1591,"8961":1590,"8962":1590,"8963":1591,"8964":1590,"8965":1591,"8966":1590,"8967":1590,"8968":1590,"8969":1590,"8970":1590,"8971":1591,"8972":1590,"8973":1591,"8974":1591,"8975":1591,"8976":1590,"8977":1591,"8978":1590,"8979":1591,"8980":1591,"8981":1590,"8982":1590,"8983":1590,"8984":1590,"8985":1590,"8986":1590,"8987":1590,"8988":1590,"8989":1591,"8990":1591,"8991":1591,"8992":1590,"8993":1591,"8994":1591,"8995":1591,"8996":1590,"8997":1590,"8998":1591,"8999":1590,"9000":1590,"9001":1591,"9002":1590,"9003":1590,"9004":1590,"9005":1591,"9006":1591,"9007":1590,"9008":1591,"9009":1591,"9010":1591,"9011":1590,"9012":1591,"9013":1590,"9014":1591,"9015":1591,"9016":1591,"9017":1590,"9018":1590,"9019":1591,"9020":1590,"9021":1591,"9022":1591,"9023":1590,"9024":1590,"9025":1590,"9026":1590,"9027":1590,"9028":1590,"9029":1591,"9030":1591,"9031":1591,"9032":1591,"9033":1590,"9034":1590,"9035":1591,"9036":1590,"9037":1590,"9038":1590,"9039":1590,"9040":1591,"9041":1591,"9042":1590,"9043":1591,"9044":1590,"9045":1590,"9046":1590,"9047":1590,"9048":1590,"9049":1590,"9050":1591,"9051":1590,"9052":1591,"9053":1590,"9054":1591,"9055":1591,"9056":1590,"9057":1591,"9058":1590,"9059":1591,"9060":1591,"9061":1591,"9062":1591,"9063":1590,"9064":1590,"9065":1591,"9066":1590,"9067":1591,"9068":1591,"9069":1591,"9070":1591,"9071":1591,"9072":1591,"9073":1590,"9074":1590,"9075":1590,"9076":1591,"9077":1590,"9078":1591,"9079":1590,"9080":1590,"9081":1590,"9082":1590,"9083":1590,"9084":1590,"9085":1591,"9086":1591,"9087":1591,"9088":1590,"9089":1591,"9090":1591,"9091":1590,"9092":1590,"9093":1590,"9094":1590,"9095":1590,"9096":1591,"9097":1590,"9098":1590,"9099":1591,"9100":1591,"9101":1590,"9102":1591,"9103":1591,"9104":1591,"9105":1590,"9106":1590,"9107":1591,"9108":1590,"9109":1590,"9110":1591,"9111":1591,"9112":1591,"9113":1590,"9114":1590,"9115":1591,"9116":1591,"9117":1591,"9118":1591,"9119":1591,"9120":1590,"9121":1591,"9122":1591,"9123":1591,"9124":1591,"9125":1590,"9126":1591,"9127":1591,"9128":1590,"9129":1590,"9130":1591,"9131":1590,"9132":1591,"9133":1590,"9134":1590,"9135":1591,"9136":1590,"9137":1591,"9138":1591,"9139":1590,"9140":1591,"9141":1591,"9142":1591,"9143":1590,"9144":1590,"9145":1590,"9146":1590,"9147":1591,"9148":1590,"9149":1591,"9150":1591,"9151":1590,"9152":1590,"9153":1590,"9154":1590,"9155":1590,"9156":1590,"9157":1590,"9158":1591,"9159":1590,"9160":1591,"9161":1591,"9162":1590,"9163":1590,"9164":1590,"9165":1591,"9166":1591,"9167":1590,"9168":1591,"9169":1591,"9170":1591,"9171":1591,"9172":1591,"9173":1591,"9174":1590,"9175":1590,"9176":1590,"9177":1591,"9178":1590,"9179":1590,"9180":1591,"9181":1590,"9182":1591,"9183":1591,"9184":1590,"9185":1590,"9186":1590,"9187":1591,"9188":1591,"9189":1591,"9190":1590,"9191":1590,"9192":1590,"9193":1590,"9194":1591,"9195":1590,"9196":1590,"9197":1591,"9198":1590,"9199":1591,"9200":1591,"9201":1590,"9202":1591,"9203":1590,"9204":1590,"9205":1590,"9206":1590,"9207":1590,"9208":1591,"9209":1591,"9210":1590,"9211":1590,"9212":1591,"9213":1590,"9214":1591,"9215":1591,"9216":1590,"9217":1590,"9218":1591,"9219":1591,"9220":1590,"9221":1591,"9222":1590,"9223":1591,"9224":1591,"9225":1590,"9226":1590,"9227":1590,"9228":1591,"9229":1591,"9230":1590,"9231":1590,"9232":1590,"9233":1591,"9234":1591,"9235":1590,"9236":1591,"9237":1590,"9238":1590,"9239":1590,"9240":1590,"9241":1590,"9242":1590,"9243":1590,"9244":1590,"9245":1590,"9246":1591,"9247":1591,"9248":1591,"9249":1590,"9250":1591,"9251":1590,"9252":1590,"9253":1590,"9254":1591,"9255":1590,"9256":1590,"9257":1591,"9258":1591,"9259":1590,"9260":1591,"9261":1591,"9262":1591,"9263":1590,"9264":1590,"9265":1590,"9266":1591,"9267":1591,"9268":1590,"9269":1590,"9270":1591,"9271":1590,"9272":1591,"9273":1590,"9274":1591,"9275":1591,"9276":1591,"9277":1591,"9278":1591,"9279":1591,"9280":1591,"9281":1591,"9282":1590,"9283":1590,"9284":1591,"9285":1591,"9286":1591,"9287":1591,"9288":1591,"9289":1590,"9290":1590,"9291":1590,"9292":1591,"9293":1591,"9294":1591,"9295":1591,"9296":1591,"9297":1591,"9298":1590,"9299":1591,"9300":1590,"9301":1591,"9302":1591,"9303":1590,"9304":1591,"9305":1591,"9306":1590,"9307":1591,"9308":1591,"9309":1591,"9310":1591,"9311":1591,"9312":1590,"9313":1591,"9314":1591,"9315":1591,"9316":1591,"9317":1590,"9318":1590,"9319":1590,"9320":1590,"9321":1591,"9322":1591,"9323":1590,"9324":1590,"9325":1591,"9326":1590,"9327":1591,"9328":1590,"9329":1590,"9330":1590,"9331":1590,"9332":1591,"9333":1590,"9334":1591,"9335":1590,"9336":1591,"9337":1591,"9338":1590,"9339":1591,"9340":1591,"9341":1591,"9342":1591,"9343":1591,"9344":1591,"9345":1590,"9346":1591,"9347":1591,"9348":1590,"9349":1591,"9350":1591,"9351":1591,"9352":1590,"9353":1590,"9354":1591,"9355":1591,"9356":1591,"9357":1590,"9358":1591,"9359":1590,"9360":1591,"9361":1590,"9362":1590,"9363":1591,"9364":1591,"9365":1590,"9366":1590,"9367":1590,"9368":1590,"9369":1590,"9370":1591,"9371":1591,"9372":1590,"9373":1591,"9374":1591,"9375":1591,"9376":1591,"9377":1591,"9378":1591,"9379":1590,"9380":1591,"9381":1591,"9382":1590,"9383":1590,"9384":1591,"9385":1591,"9386":1590,"9387":1590,"9388":1591,"9389":1591,"9390":1590,"9391":1591,"9392":1590,"9393":1590,"9394":1591,"9395":1591,"9396":1590,"9397":1590,"9398":1590,"9399":1591,"9400":1590,"9401":1591,"9402":1590,"9403":1591,"9404":1590,"9405":1591,"9406":1590,"9407":1590,"9408":1590,"9409":1591,"9410":1591,"9411":1591,"9412":1590,"9413":1590,"9414":1590,"9415":1590,"9416":1590,"9417":1590,"9418":1590,"9419":1590,"9420":1590,"9421":1591,"9422":1590,"9423":1590,"9424":1591,"9425":1591,"9426":1590,"9427":1591,"9428":1590,"9429":1590,"9430":1590,"9431":1591,"9432":1591,"9433":1590,"9434":1591,"9435":1591,"9436":1591,"9437":1591,"9438":1590,"9439":1590,"9440":1590,"9441":1590,"9442":1591,"9443":1591,"9444":1591,"9445":1591,"9446":1591,"9447":1590,"9448":1590,"9449":1591,"9450":1590,"9451":1591,"9452":1591,"9453":1591,"9454":1590,"9455":1590,"9456":1590,"9457":1590,"9458":1590,"9459":1591,"9460":1591,"9461":1590,"9462":1591,"9463":1591,"9464":1591,"9465":1591,"9466":1590,"9467":1591,"9468":1591,"9469":1590,"9470":1591,"9471":1590,"9472":1591,"9473":1590,"9474":1591,"9475":1591,"9476":1591,"9477":1590,"9478":1590,"9479":1591,"9480":1590,"9481":1590,"9482":1590,"9483":1591,"9484":1591,"9485":1591,"9486":1591,"9487":1590,"9488":1590,"9489":1590,"9490":1590,"9491":1591,"9492":1591,"9493":1590,"9494":1590,"9495":1590,"9496":1590,"9497":1591,"9498":1591,"9499":1591,"9500":1591,"9501":1591,"9502":1591,"9503":1590,"9504":1591,"9505":1590,"9506":1591,"9507":1591,"9508":1591,"9509":1591,"9510":1590,"9511":1591,"9512":1591,"9513":1591,"9514":1591,"9515":1591,"9516":1590,"9517":1590,"9518":1590,"9519":1590,"9520":1591,"9521":1590,"9522":1591,"9523":1590,"9524":1590,"9525":1590,"9526":1591,"9527":1591,"9528":1590,"9529":1591,"9530":1591,"9531":1590,"9532":1591,"9533":1591,"9534":1590,"9535":1591,"9536":1591,"9537":1590,"9538":1591,"9539":1590,"9540":1590,"9541":1590,"9542":1590,"9543":1591,"9544":1590,"9545":1591,"9546":1590,"9547":1591,"9548":1591,"9549":1591,"9550":1591,"9551":1590,"9552":1590,"9553":1590,"9554":1590,"9555":1590,"9556":1590,"9557":1591,"9558":1590,"9559":1590,"9560":1591,"9561":1590,"9562":1590,"9563":1591,"9564":1591,"9565":1591,"9566":1591,"9567":1590,"9568":1591,"9569":1591,"9570":1591,"9571":1591,"9572":1591,"9573":1591,"9574":1590,"9575":1590,"9576":1591,"9577":1591,"9578":1591,"9579":1591,"9580":1591,"9581":1590,"9582":1590,"9583":1591,"9584":1590,"9585":1590,"9586":1590,"9587":1591,"9588":1591,"9589":1591,"9590":1590,"9591":1591,"9592":1590,"9593":1590,"9594":1590,"9595":1590,"9596":1590,"9597":1590,"9598":1590,"9599":1591,"9600":1590,"9601":1591,"9602":1590,"9603":1590,"9604":1590,"9605":1591,"9606":1591,"9607":1591,"9608":1590,"9609":1591,"9610":1590,"9611":1591,"9612":1591,"9613":1591,"9614":1590,"9615":1590,"9616":1591,"9617":1590,"9618":1590,"9619":1590,"9620":1591,"9621":1590,"9622":1590,"9623":1590,"9624":1591,"9625":1591,"9626":1590,"9627":1591,"9628":1591,"9629":1591,"9630":1591,"9631":1591,"9632":1590,"9633":1591,"9634":1590,"9635":1591,"9636":1590,"9637":1591,"9638":1591,"9639":1591,"9640":1590,"9641":1591,"9642":1590,"9643":1591,"9644":1590,"9645":1590,"9646":1591,"9647":1591,"9648":1591,"9649":1590,"9650":1590,"9651":1590,"9652":1591,"9653":1590,"9654":1591,"9655":1590,"9656":1590,"9657":1591,"9658":1590,"9659":1590,"9660":1590,"9661":1590,"9662":1590,"9663":1591,"9664":1591,"9665":1591,"9666":1590,"9667":1590,"9668":1591,"9669":1590,"9670":1591,"9671":1591,"9672":1591,"9673":1591,"9674":1590,"9675":1590,"9676":1591,"9677":1591,"9678":1591,"9679":1590,"9680":1590,"9681":1591,"9682":1591,"9683":1590,"9684":1591,"9685":1590,"9686":1590,"9687":1590,"9688":1591,"9689":1591,"9690":1591,"9691":1591,"9692":1590,"9693":1590,"9694":1590,"9695":1590,"9696":1590,"9697":1590,"9698":1590,"9699":1590,"9700":1591,"9701":1591,"9702":1590,"9703":1590,"9704":1591,"9705":1591,"9706":1591,"9707":1591,"9708":1591,"9709":1591,"9710":1590,"9711":1590,"9712":1591,"9713":1591,"9714":1590,"9715":1591,"9716":1590,"9717":1590,"9718":1590,"9719":1590,"9720":1591,"9721":1591,"9722":1590,"9723":1591,"9724":1591,"9725":1591,"9726":1590,"9727":1591,"9728":1590,"9729":1590,"9730":1591,"9731":1591,"9732":1591,"9733":1590,"9734":1591,"9735":1591,"9736":1590,"9737":1590,"9738":1590,"9739":1590,"9740":1590,"9741":1590,"9742":1591,"9743":1591,"9744":1590,"9745":1591,"9746":1591,"9747":1590,"9748":1590,"9749":1591,"9750":1590,"9751":1591,"9752":1590,"9753":1590,"9754":1590,"9755":1590,"9756":1590,"9757":1591,"9758":1591,"9759":1591,"9760":1591,"9761":1590,"9762":1591,"9763":1591,"9764":1590,"9765":1591,"9766":1591,"9767":1590,"9768":1591,"9769":1590,"9770":1590,"9771":1590,"9772":1591,"9773":1591,"9774":1590,"9775":1590,"9776":1591,"9777":1590,"9778":1591,"9779":1590,"9780":1591,"9781":1590,"9782":1590,"9783":1591,"9784":1590,"9785":1591,"9786":1590,"9787":1590,"9788":1591,"9789":1590,"9790":1590,"9791":1591,"9792":1591,"9793":1591,"9794":1591,"9795":1591,"9796":1591,"9797":1590,"9798":1590,"9799":1590,"9800":1591,"9801":1591,"9802":1590,"9803":1591,"9804":1591,"9805":1591,"9806":1590,"9807":1590,"9808":1590,"9809":1590,"9810":1590,"9811":1590,"9812":1590,"9813":1590,"9814":1590,"9815":1590,"9816":1591,"9817":1590,"9818":1590,"9819":1591,"9820":1590,"9821":1591,"9822":1591,"9823":1591,"9824":1590,"9825":1590,"9826":1591,"9827":1591,"9828":1591,"9829":1591,"9830":1591,"9831":1590,"9832":1591,"9833":1590,"9834":1590,"9835":1590,"9836":1591,"9837":1590,"9838":1591,"9839":1590,"9840":1590,"9841":1591,"9842":1590,"9843":1590,"9844":1591,"9845":1591,"9846":1591,"9847":1591,"9848":1590,"9849":1591,"9850":1591,"9851":1590,"9852":1590,"9853":1590,"9854":1591,"9855":1590,"9856":1590,"9857":1590,"9858":1590,"9859":1590,"9860":1591,"9861":1591,"9862":1591,"9863":1591,"9864":1590,"9865":1590,"9866":1590,"9867":1591,"9868":1590,"9869":1590,"9870":1591,"9871":1591,"9872":1591,"9873":1590,"9874":1590,"9875":1590,"9876":1590,"9877":1591,"9878":1591,"9879":1590,"9880":1590,"9881":1590,"9882":1591,"9883":1591,"9884":1590,"9885":1591,"9886":1590,"9887":1591,"9888":1591,"9889":1591,"9890":1590,"9891":1591,"9892":1591,"9893":1590,"9894":1590,"9895":1590,"9896":1590,"9897":1590,"9898":1590,"9899":1590,"9900":1591,"9901":1590,"9902":1590,"9903":1591,"9904":1590,"9905":1590,"9906":1590,"9907":1590,"9908":1590,"9909":1590,"9910":1591,"9911":1590,"9912":1590,"9913":1591,"9914":1591,"9915":1590,"9916":1590,"9917":1591,"9918":1591,"9919":1590,"9920":1591,"9921":1591,"9922":1591,"9923":1591,"9924":1590,"9925":1590,"9926":1591,"9927":1591,"9928":1591,"9929":1590,"9930":1591,"9931":1591,"9932":1591,"9933":1591,"9934":1591,"9935":1591,"9936":1591,"9937":1590,"9938":1590,"9939":1590,"9940":1591,"9941":1591,"9942":1591,"9943":1590,"9944":1590,"9945":1591,"9946":1590,"9947":1590,"9948":1591,"9949":1591,"9950":1590,"9951":1591,"9952":1591,"9953":1590,"9954":1591,"9955":1590,"9956":1591,"9957":1591,"9958":1591,"9959":1590,"9960":1590,"9961":1590,"9962":1590,"9963":1591,"9964":1591,"9965":1590,"9966":1590,"9967":1590,"9968":1590,"9969":1591,"9970":1590,"9971":1590,"9972":1590,"9973":1591,"9974":1591,"9975":1591,"9976":1590,"9977":1590,"9978":1591,"9979":1591,"9980":1590,"9981":1591,"9982":1591,"9983":1590,"9984":1591,"9985":1590,"9986":1591,"9987":1590,"9988":1590,"9989":1591,"9990":1590,"9991":1590,"9992":1590,"9993":1591,"9994":1591,"9995":1591,"9996":1590,"9997":1591,"9998":1591,"9999":1590,"10000":1591,"10001":1590,"10002":1591,"10003":1591,"10004":1590,"10005":1591,"10006":1590,"10007":1590,"10008":1590,"10009":1591,"10010":1590,"10011":1590,"10012":1591,"10013":1590,"10014":1590,"10015":1591,"10016":1591,"10017":1591,"10018":1591,"10019":1591,"10020":1590,"10021":1591,"10022":1590,"10023":1591,"10024":1591,"10025":1590,"10026":1591,"10027":1590,"10028":1591,"10029":1590,"10030":1590,"10031":1591,"10032":1591,"10033":1591,"10034":1591,"10035":1591,"10036":1591,"10037":1590,"10038":1590,"10039":1591,"10040":1591,"10041":1591,"10042":1591,"10043":1591,"10044":1590,"10045":1590,"10046":1590,"10047":1591,"10048":1591,"10049":1591,"10050":1591,"10051":1591,"10052":1591,"10053":1591,"10054":1590,"10055":1591,"10056":1590,"10057":1591,"10058":1591,"10059":1590,"10060":1591,"10061":1590,"10062":1591,"10063":1590,"10064":1590,"10065":1591,"10066":1591,"10067":1591,"10068":1591,"10069":1590,"10070":1591,"10071":1591,"10072":1591,"10073":1591,"10074":1590,"10075":1591,"10076":1591,"10077":1590,"10078":1591,"10079":1590,"10080":1590,"10081":1590,"10082":1590,"10083":1590,"10084":1590,"10085":1590,"10086":1590,"10087":1591,"10088":1591,"10089":1591,"10090":1591,"10091":1590,"10092":1590,"10093":1591,"10094":1590,"10095":1590,"10096":1591,"10097":1591,"10098":1591,"10099":1590,"10100":1590,"10101":1591,"10102":1590,"10103":1590,"10104":1590,"10105":1591,"10106":1590,"10107":1591,"10108":1591,"10109":1590,"10110":1591,"10111":1591,"10112":1591,"10113":1591,"10114":1591,"10115":1591,"10116":1591,"10117":1591,"10118":1591,"10119":1591,"10120":1591,"10121":1591,"10122":1591,"10123":1590,"10124":1590,"10125":1590,"10126":1590,"10127":1590,"10128":1590,"10129":1590,"10130":1590,"10131":1591,"10132":1591,"10133":1590,"10134":1591,"10135":1591,"10136":1591,"10137":1591,"10138":1591,"10139":1591,"10140":1591,"10141":1590,"10142":1591,"10143":1590,"10144":1590,"10145":1590,"10146":1591,"10147":1590,"10148":1590,"10149":1590,"10150":1590,"10151":1590,"10152":1591,"10153":1591,"10154":1591,"10155":1591,"10156":1591,"10157":1591,"10158":1591,"10159":1591,"10160":1591,"10161":1591,"10162":1591,"10163":1590,"10164":1590,"10165":1590,"10166":1591,"10167":1590,"10168":1590,"10169":1591,"10170":1590,"10171":1591,"10172":1590,"10173":1591,"10174":1590,"10175":1590,"10176":1591,"10177":1591,"10178":1591,"10179":1590,"10180":1591,"10181":1590,"10182":1590,"10183":1590,"10184":1590,"10185":1591,"10186":1590,"10187":1591,"10188":1591,"10189":1590,"10190":1590,"10191":1591,"10192":1591,"10193":1590,"10194":1590,"10195":1590,"10196":1591,"10197":1590,"10198":1591,"10199":1591,"10200":1590,"10201":1591,"10202":1590,"10203":1591,"10204":1590,"10205":1591,"10206":1591,"10207":1591,"10208":1590,"10209":1591,"10210":1590,"10211":1591,"10212":1591,"10213":1590,"10214":1591,"10215":1591,"10216":1591,"10217":1591,"10218":1591,"10219":1591,"10220":1591,"10221":1590,"10222":1591,"10223":1591,"10224":1590,"10225":1591,"10226":1590,"10227":1590,"10228":1590,"10229":1590,"10230":1590,"10231":1590,"10232":1591,"10233":1591,"10234":1590,"10235":1591,"10236":1591,"10237":1590,"10238":1590,"10239":1591,"10240":1590,"10241":1591,"10242":1590,"10243":1590,"10244":1590,"10245":1590,"10246":1590,"10247":1590,"10248":1591,"10249":1591,"10250":1590,"10251":1590,"10252":1590,"10253":1590,"10254":1590,"10255":1590,"10256":1591,"10257":1590,"10258":1590,"10259":1591,"10260":1590,"10261":1591,"10262":1591,"10263":1590,"10264":1590,"10265":1590,"10266":1590,"10267":1591,"10268":1591,"10269":1590,"10270":1591,"10271":1590,"10272":1591,"10273":1590,"10274":1590,"10275":1591,"10276":1591,"10277":1590,"10278":1590,"10279":1591,"10280":1591,"10281":1591,"10282":1591,"10283":1591,"10284":1590,"10285":1590,"10286":1590,"10287":1590,"10288":1590,"10289":1590,"10290":1590,"10291":1590,"10292":1591,"10293":1590,"10294":1591,"10295":1590,"10296":1591,"10297":1591,"10298":1590,"10299":1591,"10300":1590,"10301":1591,"10302":1591,"10303":1590,"10304":1591,"10305":1590,"10306":1590,"10307":1591,"10308":1590,"10309":1590,"10310":1590,"10311":1590,"10312":1590,"10313":1590,"10314":1590,"10315":1591,"10316":1591,"10317":1590,"10318":1590,"10319":1590,"10320":1591,"10321":1590,"10322":1591,"10323":1590,"10324":1591,"10325":1590,"10326":1591,"10327":1591,"10328":1591,"10329":1590,"10330":1591,"10331":1591,"10332":1590,"10333":1591,"10334":1590,"10335":1590,"10336":1591,"10337":1591,"10338":1591,"10339":1590,"10340":1590,"10341":1590,"10342":1590,"10343":1591,"10344":1590,"10345":1590,"10346":1591,"10347":1591,"10348":1591,"10349":1591,"10350":1591,"10351":1591,"10352":1591,"10353":1591,"10354":1590,"10355":1591,"10356":1591,"10357":1591,"10358":1590,"10359":1590,"10360":1591,"10361":1591,"10362":1590,"10363":1591,"10364":1590,"10365":1591,"10366":1590,"10367":1590,"10368":1590,"10369":1591,"10370":1590,"10371":1590,"10372":1591,"10373":1590,"10374":1591,"10375":1591,"10376":1591,"10377":1590,"10378":1591,"10379":1590,"10380":1590,"10381":1590,"10382":1591,"10383":1590,"10384":1590,"10385":1591,"10386":1590,"10387":1590,"10388":1590,"10389":1590,"10390":1590,"10391":1590,"10392":1591,"10393":1590,"10394":1590,"10395":1591,"10396":1591,"10397":1591,"10398":1590,"10399":1591,"10400":1591,"10401":1591,"10402":1591,"10403":1591,"10404":1590,"10405":1591,"10406":1590,"10407":1591,"10408":1590,"10409":1591,"10410":1590,"10411":1590,"10412":1590,"10413":1590,"10414":1591,"10415":1591,"10416":1590,"10417":1590,"10418":1590,"10419":1590,"10420":1591,"10421":1590,"10422":1591,"10423":1590,"10424":1591,"10425":1590,"10426":1591,"10427":1590,"10428":1591,"10429":1591,"10430":1591,"10431":1591,"10432":1591,"10433":1591,"10434":1591,"10435":1590,"10436":1591,"10437":1590,"10438":1591,"10439":1590,"10440":1590,"10441":1591,"10442":1591,"10443":1591,"10444":1590,"10445":1591,"10446":1591,"10447":1591,"10448":1591,"10449":1590,"10450":1590,"10451":1590,"10452":1591,"10453":1591,"10454":1590,"10455":1591,"10456":1591,"10457":1591,"10458":1590,"10459":1591,"10460":1590,"10461":1591,"10462":1591,"10463":1591,"10464":1591,"10465":1590,"10466":1591,"10467":1591,"10468":1590,"10469":1591,"10470":1591,"10471":1591,"10472":1590,"10473":1590,"10474":1590,"10475":1590,"10476":1590,"10477":1591,"10478":1590,"10479":1591,"10480":1591,"10481":1590,"10482":1591,"10483":1591,"10484":1590,"10485":1591,"10486":1590,"10487":1590,"10488":1591,"10489":1591,"10490":1590,"10491":1591,"10492":1590,"10493":1591,"10494":1590,"10495":1591,"10496":1590,"10497":1590,"10498":1591,"10499":1590,"10500":1591,"10501":1590,"10502":1591,"10503":1590,"10504":1590,"10505":1591,"10506":1590,"10507":1591,"10508":1590,"10509":1591,"10510":1590,"10511":1591,"10512":1591,"10513":1590,"10514":1590,"10515":1590,"10516":1590,"10517":1591,"10518":1590,"10519":1590,"10520":1590,"10521":1590,"10522":1590,"10523":1591,"10524":1591,"10525":1590,"10526":1590,"10527":1591,"10528":1590,"10529":1591,"10530":1590,"10531":1591,"10532":1590,"10533":1591,"10534":1590,"10535":1590,"10536":1591,"10537":1590,"10538":1591,"10539":1590,"10540":1590,"10541":1591,"10542":1591,"10543":1591,"10544":1591,"10545":1591,"10546":1591,"10547":1591,"10548":1591,"10549":1591,"10550":1590,"10551":1591,"10552":1591,"10553":1590,"10554":1591,"10555":1591,"10556":1590,"10557":1590,"10558":1590,"10559":1590,"10560":1591,"10561":1590,"10562":1591,"10563":1590,"10564":1590,"10565":1591,"10566":1590,"10567":1591,"10568":1590,"10569":1590,"10570":1591,"10571":1590,"10572":1590,"10573":1590,"10574":1591,"10575":1591,"10576":1590,"10577":1590,"10578":1590,"10579":1590,"10580":1590,"10581":1590,"10582":1590,"10583":1590,"10584":1591,"10585":1591,"10586":1590,"10587":1591,"10588":1590,"10589":1590,"10590":1591,"10591":1591,"10592":1591,"10593":1591,"10594":1591,"10595":1591,"10596":1591,"10597":1591,"10598":1591,"10599":1590,"10600":1590,"10601":1591,"10602":1591,"10603":1590,"10604":1590,"10605":1591,"10606":1590,"10607":1590,"10608":1591,"10609":1590,"10610":1590,"10611":1590,"10612":1590,"10613":1591,"10614":1590,"10615":1591,"10616":1590,"10617":1591,"10618":1590,"10619":1591,"10620":1591,"10621":1591,"10622":1591,"10623":1591,"10624":1590,"10625":1591,"10626":1590,"10627":1591,"10628":1590,"10629":1590,"10630":1590,"10631":1591,"10632":1591,"10633":1591,"10634":1591,"10635":1590,"10636":1590,"10637":1591,"10638":1591,"10639":1590,"10640":1590,"10641":1591,"10642":1591,"10643":1591,"10644":1590,"10645":1590,"10646":1590,"10647":1590,"10648":1590,"10649":1590,"10650":1591,"10651":1590,"10652":1591,"10653":1590,"10654":1590,"10655":1591,"10656":1590,"10657":1591,"10658":1591,"10659":1591,"10660":1590,"10661":1590,"10662":1590,"10663":1590,"10664":1590,"10665":1591,"10666":1590,"10667":1591,"10668":1590,"10669":1590,"10670":1591,"10671":1590,"10672":1591,"10673":1591,"10674":1590,"10675":1590,"10676":1591,"10677":1590,"10678":1591,"10679":1590,"10680":1590,"10681":1591,"10682":1590,"10683":1590,"10684":1591,"10685":1591,"10686":1591,"10687":1590,"10688":1591,"10689":1591,"10690":1590,"10691":1590,"10692":1590,"10693":1590,"10694":1591,"10695":1591,"10696":1590,"10697":1590,"10698":1590,"10699":1591,"10700":1591,"10701":1590,"10702":1591,"10703":1591,"10704":1590,"10705":1591,"10706":1590,"10707":1590,"10708":1590,"10709":1590,"10710":1591,"10711":1590,"10712":1591,"10713":1591,"10714":1591,"10715":1591,"10716":1590,"10717":1591,"10718":1591,"10719":1591,"10720":1591,"10721":1590,"10722":1591,"10723":1590,"10724":1591,"10725":1590,"10726":1590,"10727":1591,"10728":1590,"10729":1591,"10730":1590,"10731":1590,"10732":1590,"10733":1590,"10734":1590,"10735":1590,"10736":1590,"10737":1590,"10738":1590,"10739":1591,"10740":1590,"10741":1591,"10742":1591,"10743":1591,"10744":1590,"10745":1591,"10746":1591,"10747":1590,"10748":1591,"10749":1590,"10750":1591,"10751":1590,"10752":1591,"10753":1590,"10754":1590,"10755":1591,"10756":1590,"10757":1591,"10758":1591,"10759":1591,"10760":1591,"10761":1591,"10762":1591,"10763":1590,"10764":1591,"10765":1590,"10766":1590,"10767":1590,"10768":1590,"10769":1590,"10770":1590,"10771":1591,"10772":1591,"10773":1591,"10774":1591,"10775":1590,"10776":1590,"10777":1591,"10778":1590,"10779":1591,"10780":1591,"10781":1590,"10782":1590,"10783":1591,"10784":1590,"10785":1590,"10786":1591,"10787":1591,"10788":1591,"10789":1590,"10790":1591,"10791":1591,"10792":1591,"10793":1591,"10794":1591,"10795":1590,"10796":1590,"10797":1590,"10798":1590,"10799":1590,"10800":1591,"10801":1591,"10802":1590,"10803":1590,"10804":1591,"10805":1591,"10806":1591,"10807":1590,"10808":1591,"10809":1590,"10810":1590,"10811":1590,"10812":1590,"10813":1590,"10814":1590,"10815":1590,"10816":1591,"10817":1590,"10818":1590,"10819":1591,"10820":1591,"10821":1590,"10822":1590,"10823":1590,"10824":1590,"10825":1590,"10826":1591,"10827":1591,"10828":1590,"10829":1591,"10830":1590,"10831":1591,"10832":1591,"10833":1591,"10834":1591,"10835":1590,"10836":1591,"10837":1591,"10838":1591,"10839":1590,"10840":1590,"10841":1591,"10842":1590,"10843":1590,"10844":1590,"10845":1591,"10846":1590,"10847":1590,"10848":1590,"10849":1590,"10850":1591,"10851":1591,"10852":1591,"10853":1590,"10854":1591,"10855":1590,"10856":1591,"10857":1590,"10858":1591,"10859":1590,"10860":1591,"10861":1591,"10862":1590,"10863":1590,"10864":1591,"10865":1590,"10866":1590,"10867":1591,"10868":1590,"10869":1590,"10870":1591,"10871":1590,"10872":1590,"10873":1591,"10874":1591,"10875":1590,"10876":1591,"10877":1590,"10878":1590,"10879":1590,"10880":1591,"10881":1591,"10882":1591,"10883":1591,"10884":1590,"10885":1591,"10886":1591,"10887":1591,"10888":1591,"10889":1591,"10890":1591,"10891":1590,"10892":1591,"10893":1591,"10894":1591,"10895":1590,"10896":1591,"10897":1591,"10898":1590,"10899":1590,"10900":1590,"10901":1591,"10902":1590,"10903":1591,"10904":1590,"10905":1591,"10906":1590,"10907":1591,"10908":1590,"10909":1591,"10910":1591,"10911":1591,"10912":1591,"10913":1590,"10914":1590,"10915":1590,"10916":1591,"10917":1591,"10918":1590,"10919":1591,"10920":1590,"10921":1590,"10922":1590,"10923":1591,"10924":1590,"10925":1590,"10926":1590,"10927":1590,"10928":1591,"10929":1591,"10930":1591,"10931":1590,"10932":1591,"10933":1590,"10934":1591,"10935":1591,"10936":1590,"10937":1591,"10938":1591,"10939":1591,"10940":1590,"10941":1590,"10942":1591,"10943":1590,"10944":1590,"10945":1590,"10946":1590,"10947":1591,"10948":1591,"10949":1591,"10950":1590,"10951":1590,"10952":1591,"10953":1591,"10954":1591,"10955":1590,"10956":1591,"10957":1591,"10958":1590,"10959":1591,"10960":1590,"10961":1590,"10962":1591,"10963":1590,"10964":1591,"10965":1590,"10966":1591,"10967":1591,"10968":1590,"10969":1591,"10970":1591,"10971":1590,"10972":1590,"10973":1590,"10974":1591,"10975":1590,"10976":1591,"10977":1590,"10978":1591,"10979":1590,"10980":1591,"10981":1591,"10982":1590,"10983":1590,"10984":1591,"10985":1591,"10986":1590,"10987":1591,"10988":1591,"10989":1591,"10990":1590,"10991":1591,"10992":1591,"10993":1590,"10994":1590,"10995":1590,"10996":1591}} \ No newline at end of file diff --git a/individual_tv50_1.json b/individual_tv50_1.json new file mode 100644 index 0000000000000000000000000000000000000000..7d7112641af9c1649937c1d9cb43a187e373f0fa --- /dev/null +++ b/individual_tv50_1.json @@ -0,0 +1 @@ +{"hhid":{"0":9366,"1":14523,"2":765,"3":5217,"4":11336,"5":9441,"6":6943,"7":5514,"8":9172,"9":6113,"10":5838,"11":453,"12":7454,"13":11898,"14":3521,"15":5205,"16":6025,"17":15040,"18":9082,"19":5831,"20":6531,"21":10514,"22":6353,"23":3899,"24":1111,"25":11642,"26":14600,"27":13085,"28":8978,"29":11302,"30":968,"31":14328,"32":695,"33":5513,"34":13652,"35":4141,"36":14978,"37":14384,"38":7855,"39":1565,"40":3837,"41":7018,"42":9327,"43":13448,"44":4783,"45":5740,"46":11270,"47":14276,"48":5268,"49":11133,"50":8747,"51":12777,"52":3685,"53":8920,"54":2799,"55":9205,"56":12741,"57":14217,"58":98,"59":916,"60":4763,"61":7664,"62":6278,"63":1808,"64":12405,"65":6523,"66":10491,"67":11114,"68":14948,"69":7717,"70":7347,"71":11647,"72":3803,"73":2459,"74":10378,"75":544,"76":3209,"77":6536,"78":5787,"79":5573,"80":11616,"81":11311,"82":3659,"83":7328,"84":4872,"85":4349,"86":4202,"87":2417,"88":12771,"89":13442,"90":12680,"91":9660,"92":5651,"93":2086,"94":2961,"95":4463,"96":4471,"97":878,"98":2717,"99":10840,"100":6791,"101":2582,"102":14557,"103":11208,"104":13614,"105":1214,"106":11377,"107":6519,"108":8792,"109":5867,"110":2204,"111":6752,"112":14695,"113":3672,"114":8594,"115":1194,"116":9094,"117":7049,"118":12072,"119":5229,"120":4896,"121":13524,"122":9231,"123":8433,"124":14385,"125":12825,"126":6745,"127":11041,"128":3819,"129":7853,"130":14488,"131":122,"132":10145,"133":9552,"134":14819,"135":10717,"136":13512,"137":450,"138":3695,"139":13457,"140":10020,"141":9772,"142":9536,"143":13891,"144":2983,"145":6669,"146":13400,"147":8412,"148":9905,"149":2771,"150":8168,"151":926,"152":3689,"153":10615,"154":14155,"155":1496,"156":6920,"157":4076,"158":4152,"159":706,"160":11472,"161":11159,"162":4412,"163":3088,"164":887,"165":13095,"166":9758,"167":9848,"168":4978,"169":1360,"170":11573,"171":6778,"172":3744,"173":7140,"174":13632,"175":4895,"176":4078,"177":3200,"178":12423,"179":14135,"180":14765,"181":12626,"182":14287,"183":6648,"184":3176,"185":6785,"186":8675,"187":6695,"188":7570,"189":7923,"190":1376,"191":7383,"192":11871,"193":10903,"194":14458,"195":14529,"196":5857,"197":9632,"198":2211,"199":1674,"200":6361,"201":1810,"202":8493,"203":11527,"204":7415,"205":14544,"206":13646,"207":10572,"208":957,"209":6656,"210":6046,"211":14673,"212":12637,"213":1119,"214":6390,"215":6588,"216":8188,"217":9651,"218":11142,"219":13097,"220":2245,"221":2724,"222":10226,"223":1502,"224":10328,"225":279,"226":303,"227":7989,"228":6010,"229":11584,"230":4866,"231":1464,"232":13443,"233":9295,"234":2444,"235":5115,"236":8076,"237":68,"238":13861,"239":8851,"240":4424,"241":9063,"242":1916,"243":9508,"244":1947,"245":9231,"246":9010,"247":9591,"248":951,"249":2145,"250":1237,"251":11942,"252":8748,"253":7371,"254":12607,"255":2379,"256":4683,"257":3527,"258":7807,"259":1378,"260":1231,"261":13439,"262":9706,"263":14009,"264":11035,"265":4066,"266":7866,"267":6705,"268":15026,"269":11421,"270":1845,"271":12046,"272":11383,"273":1077,"274":2659,"275":3532,"276":6767,"277":3466,"278":42,"279":1280,"280":7421,"281":13878,"282":8238,"283":12170,"284":12335,"285":3126,"286":9382,"287":11270,"288":8554,"289":256,"290":1651,"291":6327,"292":9663,"293":8038,"294":625,"295":13003,"296":8698,"297":14468,"298":2660,"299":10278,"300":7227,"301":14286,"302":7481,"303":6604,"304":14687,"305":3894,"306":15140,"307":10410,"308":7406,"309":529,"310":6606,"311":12884,"312":5856,"313":5580,"314":480,"315":12343,"316":4633,"317":12893,"318":14907,"319":13510,"320":7989,"321":914,"322":11237,"323":3528,"324":6044,"325":5555,"326":9838,"327":5818,"328":4591,"329":909,"330":12527,"331":7640,"332":1304,"333":324,"334":3981,"335":3106,"336":5211,"337":5195,"338":8356,"339":14287,"340":7208,"341":4682,"342":11941,"343":12755,"344":3376,"345":14399,"346":10044,"347":6177,"348":12686,"349":14213,"350":14752,"351":6975,"352":6515,"353":12368,"354":13718,"355":1704,"356":2113,"357":6296,"358":9181,"359":15046,"360":12062,"361":2057,"362":14683,"363":11765,"364":9293,"365":4308,"366":2511,"367":3653,"368":707,"369":4628,"370":13611,"371":2058,"372":11267,"373":11168,"374":13732,"375":4134,"376":2885,"377":14946,"378":4102,"379":11390,"380":1713,"381":6236,"382":659,"383":14061,"384":3539,"385":13304,"386":15091,"387":9018,"388":11494,"389":4429,"390":13243,"391":9335,"392":6133,"393":5282,"394":5644,"395":7585,"396":15135,"397":14128,"398":859,"399":6710,"400":12058,"401":3567,"402":9873,"403":13280,"404":14091,"405":30,"406":739,"407":6537,"408":11537,"409":10594,"410":8487,"411":13600,"412":1431,"413":3955,"414":14965,"415":12486,"416":13553,"417":5832,"418":10638,"419":11705,"420":1770,"421":4363,"422":1555,"423":2517,"424":6248,"425":6014,"426":8022,"427":6594,"428":14786,"429":1474,"430":8887,"431":1547,"432":11176,"433":3187,"434":6561,"435":13881,"436":13521,"437":9769,"438":11764,"439":1664,"440":9818,"441":8425,"442":12055,"443":9761,"444":8086,"445":14677,"446":690,"447":5755,"448":5056,"449":7529,"450":3728,"451":5339,"452":1806,"453":2341,"454":2125,"455":7413,"456":2107,"457":10314,"458":12550,"459":7266,"460":8274,"461":8173,"462":12261,"463":7301,"464":7197,"465":11741,"466":1687,"467":6854,"468":14002,"469":8776,"470":665,"471":8825,"472":6383,"473":7576,"474":3560,"475":3049,"476":3966,"477":7249,"478":10591,"479":8010,"480":13326,"481":12363,"482":2750,"483":8254,"484":3796,"485":2312,"486":12400,"487":9532,"488":9014,"489":8287,"490":2151,"491":10853,"492":13507,"493":5493,"494":12628,"495":6787,"496":11111,"497":2417,"498":616,"499":991,"500":9545,"501":1650,"502":8995,"503":5476,"504":9267,"505":14664,"506":8428,"507":12171,"508":7831,"509":4055,"510":8684,"511":955,"512":1996,"513":2658,"514":3177,"515":2675,"516":13355,"517":944,"518":1413,"519":5777,"520":7262,"521":5636,"522":5065,"523":5250,"524":12427,"525":794,"526":3257,"527":10459,"528":11556,"529":4436,"530":5040,"531":5014,"532":6257,"533":14449,"534":508,"535":8562,"536":12935,"537":8290,"538":1384,"539":12940,"540":2426,"541":10008,"542":6050,"543":7883,"544":1378,"545":5099,"546":10740,"547":3534,"548":12487,"549":8694,"550":7293,"551":12580,"552":11714,"553":9753,"554":3259,"555":11323,"556":4907,"557":11943,"558":8867,"559":3278,"560":11252,"561":6923,"562":12660,"563":1072,"564":13608,"565":8457,"566":2368,"567":9726,"568":2461,"569":4274,"570":5589,"571":14206,"572":8858,"573":11077,"574":65,"575":12613,"576":8629,"577":10412,"578":7751,"579":15133,"580":7911,"581":822,"582":13295,"583":5372,"584":578,"585":12017,"586":5401,"587":6800,"588":6851,"589":5890,"590":1473,"591":4749,"592":7343,"593":12565,"594":3932,"595":6250,"596":6325,"597":11892,"598":5933,"599":974,"600":8561,"601":8498,"602":8063,"603":11370,"604":8124,"605":12413,"606":5163,"607":10889,"608":5521,"609":4264,"610":3579,"611":13586,"612":9955,"613":4112,"614":866,"615":12957,"616":9792,"617":12149,"618":2909,"619":10302,"620":11338,"621":9986,"622":10248,"623":10113,"624":7505,"625":9557,"626":851,"627":13768,"628":3982,"629":1824,"630":4021,"631":2069,"632":9100,"633":7961,"634":1736,"635":13770,"636":11551,"637":9000,"638":9913,"639":13927,"640":7931,"641":14588,"642":8099,"643":13259,"644":5692,"645":10322,"646":14233,"647":8315,"648":12393,"649":9096,"650":11384,"651":9014,"652":4619,"653":7822,"654":12800,"655":7465,"656":570,"657":10266,"658":3189,"659":5746,"660":1880,"661":2720,"662":13546,"663":13404,"664":13777,"665":2361,"666":14839,"667":8746,"668":2801,"669":1340,"670":14403,"671":4367,"672":10554,"673":11272,"674":181,"675":1515,"676":2980,"677":1078,"678":736,"679":1911,"680":3504,"681":4790,"682":4939,"683":5053,"684":13087,"685":1464,"686":10534,"687":2909,"688":10450,"689":7343,"690":9114,"691":7993,"692":12721,"693":13097,"694":11621,"695":12387,"696":1575,"697":13004,"698":8079,"699":11117,"700":13286,"701":11155,"702":14615,"703":14086,"704":13402,"705":3485,"706":14256,"707":13586,"708":12133,"709":6262,"710":14433,"711":11752,"712":11922,"713":1046,"714":13359,"715":7033,"716":3005,"717":14883,"718":4068,"719":11645,"720":1787,"721":5827,"722":5980,"723":9139,"724":10717,"725":12350,"726":14010,"727":9402,"728":782,"729":9050,"730":867,"731":2072,"732":2265,"733":7050,"734":7780,"735":13229,"736":8742,"737":11006,"738":9247,"739":183,"740":10556,"741":3856,"742":13688,"743":672,"744":145,"745":3694,"746":6198,"747":1419,"748":11816,"749":7172,"750":2148,"751":14621,"752":8933,"753":226,"754":106,"755":448,"756":3960,"757":849,"758":8152,"759":14758,"760":11597,"761":6106,"762":8978,"763":2258,"764":8089,"765":7796,"766":4548,"767":10459,"768":2149,"769":7135,"770":7880,"771":14002,"772":528,"773":1554,"774":13659,"775":7401,"776":776,"777":6764,"778":4068,"779":5459,"780":6670,"781":12585,"782":13328,"783":7218,"784":9942,"785":9819,"786":3740,"787":7148,"788":5828,"789":5342,"790":12272,"791":5271,"792":7312,"793":5223,"794":13745,"795":3201,"796":9786,"797":10604,"798":7582,"799":6568,"800":947,"801":5622,"802":14812,"803":4936,"804":4569,"805":8472,"806":12717,"807":9788,"808":1501,"809":13850,"810":3279,"811":15078,"812":4682,"813":13371,"814":14328,"815":1850,"816":9483,"817":5327,"818":11072,"819":9580,"820":11998,"821":11666,"822":10948,"823":2047,"824":14457,"825":5075,"826":10597,"827":6556,"828":3927,"829":8065,"830":14777,"831":10963,"832":5399,"833":10437,"834":12416,"835":9346,"836":882,"837":509,"838":8556,"839":5892,"840":9916,"841":4185,"842":7401,"843":4305,"844":5024,"845":12471,"846":3041,"847":1461,"848":13675,"849":5498,"850":4477,"851":7006,"852":3972,"853":12466,"854":5030,"855":14246,"856":14489,"857":4889,"858":8497,"859":7773,"860":13631,"861":4505,"862":13700,"863":288,"864":11927,"865":10751,"866":11427,"867":1678,"868":2062,"869":12415,"870":14983,"871":11523,"872":7565,"873":10295,"874":7540,"875":3951,"876":3623,"877":10949,"878":2382,"879":5326,"880":4355,"881":3955,"882":12258,"883":1618,"884":9069,"885":14017,"886":3472,"887":3656,"888":5834,"889":15080,"890":8282,"891":8199,"892":10773,"893":11591,"894":13775,"895":2168,"896":12366,"897":4115,"898":7459,"899":4989,"900":3851,"901":8277,"902":15026,"903":5215,"904":8785,"905":14329,"906":8879,"907":13859,"908":6678,"909":5635,"910":4425,"911":2258,"912":7963,"913":8286,"914":13959,"915":12041,"916":11060,"917":4466,"918":381,"919":11789,"920":2500,"921":4295,"922":8101,"923":4926,"924":13435,"925":4263,"926":4288,"927":8999,"928":12673,"929":9626,"930":13240,"931":2124,"932":7005,"933":11196,"934":15063,"935":10127,"936":12296,"937":4249,"938":3741,"939":1425,"940":13003,"941":2792,"942":3182,"943":11686,"944":14985,"945":8320,"946":8906,"947":7702,"948":10027,"949":12461,"950":14425,"951":5365,"952":1214,"953":9337,"954":7226,"955":895,"956":9499,"957":12280,"958":11483,"959":3980,"960":9274,"961":10592,"962":13025,"963":15118,"964":13412,"965":10450,"966":7249,"967":14305,"968":10556,"969":3279,"970":14871,"971":8499,"972":14021,"973":9280,"974":4498,"975":391,"976":14819,"977":1109,"978":2279,"979":1099,"980":9736,"981":7405,"982":12607,"983":8502,"984":4980,"985":2910,"986":9739,"987":12353,"988":7532,"989":11756,"990":4088,"991":4555,"992":6092,"993":5207,"994":63,"995":3937,"996":13013,"997":15127,"998":10179,"999":3067,"1000":7895,"1001":12849,"1002":8782,"1003":7484,"1004":4851,"1005":10971,"1006":2464,"1007":7397,"1008":13902,"1009":4865,"1010":11059,"1011":11100,"1012":15042,"1013":3199,"1014":9413,"1015":13811,"1016":2612,"1017":1727,"1018":7809,"1019":9618,"1020":6346,"1021":3012,"1022":8348,"1023":11310,"1024":9817,"1025":5631,"1026":2324,"1027":2613,"1028":15149,"1029":2979,"1030":1634,"1031":5706,"1032":7290,"1033":8467,"1034":956,"1035":6606,"1036":12588,"1037":6237,"1038":174,"1039":14804,"1040":8116,"1041":11945,"1042":2809,"1043":2613,"1044":10147,"1045":10847,"1046":11085,"1047":6608,"1048":15109,"1049":8338,"1050":2529,"1051":1957,"1052":2295,"1053":11646,"1054":12019,"1055":9390,"1056":15120,"1057":11217,"1058":9979,"1059":12325,"1060":1597,"1061":5977,"1062":14956,"1063":8861,"1064":5406,"1065":3431,"1066":6445,"1067":13687,"1068":3698,"1069":10884,"1070":593,"1071":721,"1072":5927,"1073":14890,"1074":447,"1075":3102,"1076":3281,"1077":5527,"1078":7572,"1079":8258,"1080":461,"1081":5534,"1082":1092,"1083":3021,"1084":6035,"1085":5100,"1086":11489,"1087":9519,"1088":6875,"1089":11450,"1090":9510,"1091":9155,"1092":2955,"1093":851,"1094":10698,"1095":2492,"1096":5141,"1097":5499,"1098":6186,"1099":9556,"1100":9390,"1101":12645,"1102":11312,"1103":3873,"1104":6722,"1105":14649,"1106":6057,"1107":8150,"1108":252,"1109":8344,"1110":12639,"1111":5558,"1112":12013,"1113":13053,"1114":8751,"1115":14778,"1116":5735,"1117":1762,"1118":8782,"1119":13668,"1120":1988,"1121":10238,"1122":2893,"1123":15132,"1124":12505,"1125":10540,"1126":5286,"1127":9560,"1128":3547,"1129":10897,"1130":5359,"1131":7608,"1132":10908,"1133":14327,"1134":11518,"1135":1530,"1136":4694,"1137":5201,"1138":13910,"1139":6983,"1140":13990,"1141":7496,"1142":7653,"1143":10253,"1144":11780,"1145":8361,"1146":6635,"1147":9053,"1148":11065,"1149":5744,"1150":14892,"1151":7389,"1152":6110,"1153":530,"1154":1485,"1155":7788,"1156":2229,"1157":12377,"1158":11094,"1159":2224,"1160":10131,"1161":14302,"1162":11707,"1163":12283,"1164":10144,"1165":206,"1166":7531,"1167":11044,"1168":1073,"1169":2688,"1170":11168,"1171":6123,"1172":8823,"1173":12077,"1174":3421,"1175":10927,"1176":9459,"1177":10635,"1178":4627,"1179":4713,"1180":2329,"1181":11080,"1182":13897,"1183":9726,"1184":5206,"1185":2926,"1186":14906,"1187":10862,"1188":13193,"1189":11729,"1190":9601,"1191":3456,"1192":1690,"1193":3950,"1194":2024,"1195":8201,"1196":5038,"1197":7009,"1198":13682,"1199":12476,"1200":2591,"1201":8837,"1202":11033,"1203":2474,"1204":13291,"1205":10963,"1206":6212,"1207":13278,"1208":2836,"1209":9312,"1210":10886,"1211":14428,"1212":12184,"1213":9735,"1214":9918,"1215":6028,"1216":12325,"1217":545,"1218":8980,"1219":5823,"1220":8658,"1221":10822,"1222":14581,"1223":1033,"1224":6619,"1225":798,"1226":10064,"1227":12322,"1228":5383,"1229":2837,"1230":6150,"1231":7357,"1232":14002,"1233":10666,"1234":15101,"1235":1447,"1236":11121,"1237":3861,"1238":9270,"1239":2964,"1240":3374,"1241":2775,"1242":8202,"1243":7817,"1244":4427,"1245":11612,"1246":10048,"1247":11800,"1248":11022,"1249":3592,"1250":4929,"1251":6944,"1252":14754,"1253":6987,"1254":4203,"1255":13828,"1256":14246,"1257":5791,"1258":12826,"1259":1114,"1260":10733,"1261":14573,"1262":3229,"1263":1424,"1264":2009,"1265":1266,"1266":7784,"1267":1707,"1268":1978,"1269":9139,"1270":4062,"1271":2648,"1272":1810,"1273":10989,"1274":10060,"1275":14718,"1276":6282,"1277":3326,"1278":10738,"1279":1140,"1280":4537,"1281":3430,"1282":14604,"1283":455,"1284":2581,"1285":6515,"1286":14876,"1287":475,"1288":14299,"1289":10415,"1290":6490,"1291":244,"1292":3527,"1293":9666,"1294":7465,"1295":9322,"1296":2149,"1297":11098,"1298":8813,"1299":10263,"1300":12883,"1301":7012,"1302":11033,"1303":10689,"1304":7248,"1305":6347,"1306":3797,"1307":5509,"1308":12643,"1309":11093,"1310":11904,"1311":9748,"1312":7290,"1313":3030,"1314":11779,"1315":14859,"1316":3145,"1317":12309,"1318":1790,"1319":13895,"1320":1606,"1321":8285,"1322":12987,"1323":1239,"1324":1106,"1325":1493,"1326":7362,"1327":9507,"1328":3908,"1329":6139,"1330":11956,"1331":14935,"1332":9643,"1333":8976,"1334":6244,"1335":2873,"1336":12734,"1337":890,"1338":5062,"1339":8814,"1340":5254,"1341":14850,"1342":8514,"1343":13993,"1344":280,"1345":10656,"1346":10027,"1347":6020,"1348":8511,"1349":11269,"1350":3132,"1351":5316,"1352":3345,"1353":7172,"1354":1879,"1355":14802,"1356":7085,"1357":5840,"1358":11532,"1359":13229,"1360":2514,"1361":7199,"1362":10227,"1363":2388,"1364":5502,"1365":13309,"1366":13723,"1367":2988,"1368":14459,"1369":11911,"1370":12220,"1371":11329,"1372":4915,"1373":12096,"1374":1119,"1375":6227,"1376":12126,"1377":3694,"1378":2197,"1379":2435,"1380":9602,"1381":26,"1382":8747,"1383":5222,"1384":13476,"1385":7940,"1386":12408,"1387":935,"1388":9315,"1389":8245,"1390":11024,"1391":14519,"1392":6859,"1393":5677,"1394":4832,"1395":3466,"1396":13836,"1397":8579,"1398":8105,"1399":4401,"1400":597,"1401":1112,"1402":6986,"1403":5062,"1404":9365,"1405":9789,"1406":4144,"1407":7536,"1408":382,"1409":5443,"1410":7115,"1411":9854,"1412":7894,"1413":12711,"1414":3003,"1415":1385,"1416":6710,"1417":4859,"1418":592,"1419":4751,"1420":2160,"1421":9991,"1422":4497,"1423":2571,"1424":2363,"1425":14506,"1426":10635,"1427":4839,"1428":14705,"1429":4740,"1430":5502,"1431":6007,"1432":5103,"1433":13780,"1434":6613,"1435":840,"1436":925,"1437":10928,"1438":13985,"1439":10785,"1440":534,"1441":1093,"1442":14552,"1443":11720,"1444":14631,"1445":11645,"1446":11247,"1447":5488,"1448":13833,"1449":13761,"1450":11449,"1451":2448,"1452":8380,"1453":2887,"1454":3874,"1455":7344,"1456":9226,"1457":12623,"1458":11112,"1459":4809,"1460":7218,"1461":10182,"1462":4608,"1463":1011,"1464":8498,"1465":12219,"1466":6377,"1467":13371,"1468":12944,"1469":9007,"1470":4814,"1471":434,"1472":436,"1473":7707,"1474":9591,"1475":2108,"1476":5002,"1477":8218,"1478":895,"1479":10843,"1480":4132,"1481":5247,"1482":102,"1483":13765,"1484":2292,"1485":2923,"1486":7476,"1487":12117,"1488":13718,"1489":3006,"1490":5697,"1491":14118,"1492":8063,"1493":12776,"1494":13976,"1495":4398,"1496":15065,"1497":3628,"1498":1499,"1499":13743,"1500":6994,"1501":4251,"1502":6220,"1503":12851,"1504":4332,"1505":2579,"1506":8409,"1507":10453,"1508":6894,"1509":6879,"1510":1220,"1511":11725,"1512":7394,"1513":8573,"1514":14621,"1515":15067,"1516":14664,"1517":11957,"1518":5704,"1519":6294,"1520":7355,"1521":10614,"1522":989,"1523":9828,"1524":11988,"1525":2295,"1526":11083,"1527":4073,"1528":1154,"1529":8665,"1530":3450,"1531":845,"1532":10992,"1533":3415,"1534":1680,"1535":5721,"1536":14537,"1537":7974,"1538":14171,"1539":1447,"1540":4898,"1541":8517,"1542":11439,"1543":12545,"1544":8468,"1545":3821,"1546":2374,"1547":13301,"1548":2000,"1549":2159,"1550":13770,"1551":7447,"1552":5024,"1553":14864,"1554":10493,"1555":7277,"1556":10507,"1557":15001,"1558":9521,"1559":15123,"1560":11381,"1561":281,"1562":7142,"1563":6252,"1564":9344,"1565":1719,"1566":4176,"1567":5467,"1568":1011,"1569":12435,"1570":14057,"1571":14040,"1572":8692,"1573":2158,"1574":9435,"1575":7621,"1576":8452,"1577":12278,"1578":1828,"1579":4813,"1580":2194,"1581":8458,"1582":14767,"1583":3141,"1584":7074,"1585":4164,"1586":13213,"1587":1871,"1588":10693,"1589":10759,"1590":2987,"1591":9810,"1592":11175,"1593":14035,"1594":10951,"1595":8045,"1596":2851,"1597":9275,"1598":4014,"1599":6206,"1600":11129,"1601":2648,"1602":7591,"1603":14007,"1604":10400,"1605":2210,"1606":4513,"1607":7501,"1608":2110,"1609":126,"1610":13478,"1611":6871,"1612":7239,"1613":4208,"1614":12711,"1615":3269,"1616":9346,"1617":6495,"1618":353,"1619":2399,"1620":14226,"1621":13875,"1622":13811,"1623":9950,"1624":4106,"1625":14761,"1626":5475,"1627":8924,"1628":1527,"1629":9927,"1630":4617,"1631":2375,"1632":12954,"1633":9097,"1634":620,"1635":10061,"1636":974,"1637":7408,"1638":11538,"1639":13580,"1640":13000,"1641":1759,"1642":7766,"1643":10225,"1644":907,"1645":14063,"1646":4621,"1647":12134,"1648":3226,"1649":11763,"1650":5586,"1651":13630,"1652":8555,"1653":3188,"1654":820,"1655":6186,"1656":2447,"1657":6212,"1658":5574,"1659":10288,"1660":12436,"1661":4381,"1662":12580,"1663":11973,"1664":10463,"1665":8816,"1666":9001,"1667":456,"1668":9789,"1669":1470,"1670":3220,"1671":3962,"1672":2556,"1673":5934,"1674":10471,"1675":10966,"1676":12720,"1677":8856,"1678":2763,"1679":11586,"1680":13136,"1681":10384,"1682":12204,"1683":5395,"1684":3951,"1685":4095,"1686":650,"1687":2515,"1688":1933,"1689":5153,"1690":14886,"1691":4701,"1692":13032,"1693":11693,"1694":7663,"1695":9045,"1696":3857,"1697":14647,"1698":13743,"1699":5397,"1700":3162,"1701":13087,"1702":8481,"1703":12169,"1704":869,"1705":11354,"1706":4835,"1707":11112,"1708":1482,"1709":5159,"1710":11046,"1711":12344,"1712":32,"1713":13400,"1714":2810,"1715":10260,"1716":14028,"1717":1815,"1718":11106,"1719":7681,"1720":1045,"1721":5836,"1722":14462,"1723":7893,"1724":14935,"1725":7305,"1726":51,"1727":9861,"1728":310,"1729":1687,"1730":10049,"1731":7121,"1732":8834,"1733":10183,"1734":302,"1735":15049,"1736":7817,"1737":1242,"1738":12061,"1739":12488,"1740":11084,"1741":3272,"1742":5106,"1743":14422,"1744":5559,"1745":9123,"1746":6067,"1747":2973,"1748":8009,"1749":10072,"1750":5716,"1751":889,"1752":3811,"1753":2623,"1754":14979,"1755":4189,"1756":6048,"1757":3459,"1758":12637,"1759":2238,"1760":13852,"1761":774,"1762":12805,"1763":9238,"1764":2827,"1765":14057,"1766":11075,"1767":5999,"1768":9298,"1769":6888,"1770":3637,"1771":1573,"1772":12454,"1773":12813,"1774":8598,"1775":13797,"1776":1486,"1777":10484,"1778":11759,"1779":13414,"1780":5409,"1781":6484,"1782":5034,"1783":12545,"1784":7045,"1785":4190,"1786":3274,"1787":7633,"1788":11847,"1789":6614,"1790":9394,"1791":3098,"1792":75,"1793":4996,"1794":14569,"1795":8496,"1796":11677,"1797":10015,"1798":15150,"1799":13535,"1800":303,"1801":6161,"1802":9457,"1803":7746,"1804":6506,"1805":12079,"1806":6652,"1807":10154,"1808":3741,"1809":2942,"1810":11753,"1811":444,"1812":6063,"1813":9633,"1814":6821,"1815":11393,"1816":5419,"1817":6640,"1818":1476,"1819":2897,"1820":11724,"1821":10913,"1822":11315,"1823":9745,"1824":5872,"1825":9457,"1826":931,"1827":13618,"1828":9269,"1829":7584,"1830":8453,"1831":4747,"1832":894,"1833":1035,"1834":12157,"1835":12653,"1836":6572,"1837":7381,"1838":5574,"1839":2322,"1840":1966,"1841":1241,"1842":13865,"1843":10236,"1844":15149,"1845":13342,"1846":3248,"1847":3125,"1848":11572,"1849":10780,"1850":985,"1851":6172,"1852":2151,"1853":7665,"1854":5862,"1855":9958,"1856":10841,"1857":12889,"1858":7150,"1859":3430,"1860":7259,"1861":4771,"1862":2255,"1863":6032,"1864":12851,"1865":4922,"1866":12855,"1867":9806,"1868":9777,"1869":3763,"1870":8009,"1871":3056,"1872":8813,"1873":7655,"1874":7283,"1875":11899,"1876":11622,"1877":343,"1878":13113,"1879":10856,"1880":12804,"1881":3335,"1882":8814,"1883":4399,"1884":28,"1885":10080,"1886":9680,"1887":9989,"1888":13370,"1889":5607,"1890":775,"1891":2233,"1892":11262,"1893":3335,"1894":15022,"1895":12118,"1896":8634,"1897":9273,"1898":2144,"1899":2676,"1900":2947,"1901":13819,"1902":8086,"1903":12660,"1904":6258,"1905":2634,"1906":14023,"1907":3195,"1908":6638,"1909":5486,"1910":3959,"1911":8391,"1912":2644,"1913":3545,"1914":12205,"1915":6478,"1916":3708,"1917":12166,"1918":11853,"1919":12731,"1920":14390,"1921":11225,"1922":3783,"1923":7452,"1924":9418,"1925":10235,"1926":1971,"1927":12785,"1928":14652,"1929":11079,"1930":663,"1931":13,"1932":2421,"1933":11922,"1934":857,"1935":6115,"1936":7636,"1937":4514,"1938":13445,"1939":10976,"1940":13509,"1941":746,"1942":9175,"1943":11377,"1944":9841,"1945":7848,"1946":7815,"1947":11927,"1948":3654,"1949":3225,"1950":1118,"1951":4693,"1952":13549,"1953":2577,"1954":13652,"1955":295,"1956":6122,"1957":493,"1958":4305,"1959":3865,"1960":10100,"1961":14364,"1962":13973,"1963":10882,"1964":1839,"1965":593,"1966":6689,"1967":14282,"1968":2231,"1969":8966,"1970":6779,"1971":2162,"1972":14235,"1973":8486,"1974":9797,"1975":4553,"1976":7722,"1977":1423,"1978":1013,"1979":11017,"1980":7876,"1981":11819,"1982":3339,"1983":5658,"1984":8115,"1985":9185,"1986":14630,"1987":13786,"1988":8482,"1989":4573,"1990":13111,"1991":4188,"1992":4090,"1993":1836,"1994":10027,"1995":6150,"1996":5508,"1997":2814,"1998":6104,"1999":13637,"2000":2424,"2001":9647,"2002":8527,"2003":4123,"2004":5600,"2005":2467,"2006":1384,"2007":1240,"2008":4821,"2009":735,"2010":10506,"2011":4456,"2012":12414,"2013":5690,"2014":10097,"2015":2357,"2016":12491,"2017":4502,"2018":1988,"2019":14389,"2020":4678,"2021":8749,"2022":2676,"2023":2186,"2024":1886,"2025":8967,"2026":6179,"2027":1426,"2028":11033,"2029":13658,"2030":11239,"2031":7870,"2032":2175,"2033":12474,"2034":5327,"2035":5839,"2036":563,"2037":10099,"2038":14058,"2039":5579,"2040":4597,"2041":3729,"2042":12314,"2043":9787,"2044":4655,"2045":11860,"2046":8671,"2047":7703,"2048":8252,"2049":11573,"2050":10474,"2051":9741,"2052":6910,"2053":3064,"2054":4767,"2055":10841,"2056":7577,"2057":830,"2058":4675,"2059":7854,"2060":747,"2061":4841,"2062":3948,"2063":10394,"2064":6017,"2065":10765,"2066":155,"2067":2487,"2068":4495,"2069":4141,"2070":14638,"2071":8552,"2072":253,"2073":7414,"2074":5821,"2075":8123,"2076":1427,"2077":2138,"2078":10568,"2079":7264,"2080":2903,"2081":10313,"2082":10135,"2083":2234,"2084":8780,"2085":3664,"2086":11171,"2087":13360,"2088":4847,"2089":7217,"2090":159,"2091":11856,"2092":9963,"2093":10493,"2094":1517,"2095":5039,"2096":3934,"2097":13500,"2098":14988,"2099":2916,"2100":7962,"2101":6714,"2102":4140,"2103":10134,"2104":5311,"2105":8824,"2106":2165,"2107":5918,"2108":3393,"2109":2293,"2110":2066,"2111":3456,"2112":7587,"2113":4756,"2114":1974,"2115":14058,"2116":11784,"2117":11699,"2118":8754,"2119":12728,"2120":14478,"2121":10159,"2122":13862,"2123":7030,"2124":4516,"2125":357,"2126":1507,"2127":9564,"2128":11822,"2129":934,"2130":14565,"2131":1246,"2132":11931,"2133":11254,"2134":11034,"2135":7932,"2136":1261,"2137":12585,"2138":12819,"2139":13451,"2140":2965,"2141":1110,"2142":9481,"2143":9377,"2144":13393,"2145":11269,"2146":4647,"2147":11433,"2148":9353,"2149":10340,"2150":791,"2151":225,"2152":9049,"2153":14293,"2154":5871,"2155":7931,"2156":12915,"2157":6579,"2158":11504,"2159":10618,"2160":11442,"2161":5968,"2162":8984,"2163":9573,"2164":11748,"2165":481,"2166":1767,"2167":9260,"2168":5762,"2169":7468,"2170":14935,"2171":6358,"2172":8872,"2173":5282,"2174":13388,"2175":12660,"2176":1175,"2177":7029,"2178":5079,"2179":7175,"2180":967,"2181":14105,"2182":11494,"2183":8557,"2184":7816,"2185":3086,"2186":605,"2187":209,"2188":7925,"2189":8157,"2190":1052,"2191":3110,"2192":7322,"2193":11460,"2194":9597,"2195":9277,"2196":2706,"2197":3145,"2198":3908,"2199":3436,"2200":13926,"2201":8093,"2202":1600,"2203":11625,"2204":3412,"2205":6065,"2206":5497,"2207":1674,"2208":1480,"2209":2640,"2210":12731,"2211":12182,"2212":7326,"2213":7532,"2214":11516,"2215":2275,"2216":2546,"2217":13204,"2218":7267,"2219":8215,"2220":647,"2221":11057,"2222":1382,"2223":9745,"2224":7466,"2225":14871,"2226":3343,"2227":10454,"2228":6086,"2229":9502,"2230":10616,"2231":14733,"2232":7899,"2233":10037,"2234":3624,"2235":11032,"2236":7107,"2237":1693,"2238":1878,"2239":704,"2240":3788,"2241":5684,"2242":714,"2243":2025,"2244":1685,"2245":14007,"2246":12576,"2247":9377,"2248":7879,"2249":5467,"2250":998,"2251":4751,"2252":9480,"2253":3638,"2254":7971,"2255":9531,"2256":10387,"2257":13527,"2258":14329,"2259":11230,"2260":2116,"2261":4233,"2262":13884,"2263":4629,"2264":14733,"2265":7997,"2266":8370,"2267":14432,"2268":10602,"2269":3235,"2270":12185,"2271":656,"2272":1331,"2273":5434,"2274":9737,"2275":13493,"2276":13248,"2277":346,"2278":2928,"2279":4805,"2280":11099,"2281":11530,"2282":12760,"2283":5083,"2284":2713,"2285":14626,"2286":3145,"2287":10403,"2288":9327,"2289":8848,"2290":4252,"2291":7089,"2292":1193,"2293":914,"2294":8672,"2295":5173,"2296":10202,"2297":6324,"2298":5942,"2299":9489,"2300":4840,"2301":2675,"2302":4551,"2303":4183,"2304":9127,"2305":14287,"2306":13363,"2307":14967,"2308":3565,"2309":13118,"2310":4172,"2311":3972,"2312":2671,"2313":14633,"2314":13708,"2315":12327,"2316":5382,"2317":3991,"2318":14395,"2319":11807,"2320":623,"2321":6933,"2322":9692,"2323":11994,"2324":1345,"2325":5251,"2326":2115,"2327":1766,"2328":1960,"2329":385,"2330":10229,"2331":7444,"2332":1039,"2333":11678,"2334":914,"2335":12028,"2336":14672,"2337":10222,"2338":11362,"2339":2702,"2340":11582,"2341":9580,"2342":6819,"2343":13772,"2344":9021,"2345":4105,"2346":10203,"2347":5360,"2348":1024,"2349":12883,"2350":3050,"2351":459,"2352":5022,"2353":11756,"2354":705,"2355":793,"2356":1610,"2357":2701,"2358":4413,"2359":14047,"2360":4840,"2361":13131,"2362":7646,"2363":2482,"2364":697,"2365":3927,"2366":11851,"2367":12772,"2368":14295,"2369":12338,"2370":7662,"2371":7196,"2372":1285,"2373":1424,"2374":10219,"2375":3949,"2376":10445,"2377":13261,"2378":8615,"2379":2781,"2380":6785,"2381":6968,"2382":11560,"2383":9406,"2384":2218,"2385":5515,"2386":14804,"2387":1233,"2388":9444,"2389":6522,"2390":1895,"2391":8160,"2392":9829,"2393":12748,"2394":2122,"2395":5860,"2396":11529,"2397":1427,"2398":2990,"2399":14309,"2400":8216,"2401":7158,"2402":10114,"2403":8536,"2404":4533,"2405":12007,"2406":1849,"2407":398,"2408":4311,"2409":8084,"2410":13242,"2411":14842,"2412":1363,"2413":6941,"2414":9256,"2415":4282,"2416":4714,"2417":5873,"2418":5414,"2419":9495,"2420":3491,"2421":12666,"2422":7,"2423":4845,"2424":10392,"2425":9549,"2426":7541,"2427":5927,"2428":10043,"2429":4189,"2430":8811,"2431":8578,"2432":10146,"2433":4537,"2434":14114,"2435":3341,"2436":1511,"2437":173,"2438":6097,"2439":6135,"2440":9419,"2441":8941,"2442":9849,"2443":709,"2444":14819,"2445":1785,"2446":1116,"2447":6417,"2448":2133,"2449":10150,"2450":12277,"2451":11335,"2452":9243,"2453":4267,"2454":7449,"2455":10924,"2456":6596,"2457":2190,"2458":11970,"2459":1682,"2460":8928,"2461":5014,"2462":2507,"2463":14579,"2464":4905,"2465":14659,"2466":6009,"2467":4866,"2468":5541,"2469":13465,"2470":11273,"2471":14039,"2472":7645,"2473":1859,"2474":3312,"2475":3796,"2476":5879,"2477":7419,"2478":10650,"2479":123,"2480":12994,"2481":7265,"2482":856,"2483":13825,"2484":10063,"2485":3108,"2486":2189,"2487":8968,"2488":12354,"2489":8360,"2490":5443,"2491":11698,"2492":3552,"2493":5588,"2494":10593,"2495":4239,"2496":11226,"2497":14006,"2498":10546,"2499":9431,"2500":4950,"2501":1707,"2502":6029,"2503":3113,"2504":5342,"2505":1882,"2506":11464,"2507":3670,"2508":6338,"2509":13288,"2510":11318,"2511":4643,"2512":1671,"2513":12769,"2514":7780,"2515":10694,"2516":3378,"2517":5861,"2518":7424,"2519":11128,"2520":11711,"2521":12965,"2522":5463,"2523":266,"2524":3653,"2525":9482,"2526":1052,"2527":13653,"2528":4622,"2529":10533,"2530":6483,"2531":13212,"2532":8386,"2533":10196,"2534":13334,"2535":14083,"2536":7972,"2537":3758,"2538":6160,"2539":1257,"2540":6199,"2541":8601,"2542":8457,"2543":7340,"2544":5792,"2545":10761,"2546":5880,"2547":14631,"2548":6555,"2549":13365,"2550":3497,"2551":7781,"2552":8010,"2553":4346,"2554":11201,"2555":9809,"2556":11656,"2557":5585,"2558":5786,"2559":3338,"2560":8056,"2561":5118,"2562":4107,"2563":9444,"2564":7852,"2565":13753,"2566":10193,"2567":9570,"2568":7944,"2569":2684,"2570":1297,"2571":5708,"2572":6361,"2573":14746,"2574":13182,"2575":3865,"2576":35,"2577":7830,"2578":4779,"2579":12464,"2580":9766,"2581":14629,"2582":14829,"2583":13506,"2584":1092,"2585":6920,"2586":6645,"2587":10406,"2588":7826,"2589":928,"2590":13626,"2591":1448,"2592":2988,"2593":3624,"2594":6000,"2595":10558,"2596":6607,"2597":9362,"2598":10582,"2599":4978,"2600":7174,"2601":15056,"2602":5313,"2603":2976,"2604":7640,"2605":4727,"2606":1243,"2607":4055,"2608":2926,"2609":10245,"2610":10728,"2611":4999,"2612":8739,"2613":7548,"2614":9066,"2615":9168,"2616":12557,"2617":8784,"2618":10305,"2619":9765,"2620":12471,"2621":3535,"2622":1518,"2623":5081,"2624":608,"2625":1285,"2626":4692,"2627":12523,"2628":15144,"2629":12414,"2630":10487,"2631":10605,"2632":3732,"2633":5340,"2634":7122,"2635":2359,"2636":1795,"2637":14153,"2638":5751,"2639":5164,"2640":2516,"2641":14168,"2642":9772,"2643":13808,"2644":4404,"2645":13660,"2646":10142,"2647":6483,"2648":5127,"2649":2350,"2650":5798,"2651":3482,"2652":13798,"2653":14478,"2654":6167,"2655":2203,"2656":13411,"2657":8692,"2658":14874,"2659":8419,"2660":5091,"2661":11202,"2662":14347,"2663":4651,"2664":377,"2665":3857,"2666":3397,"2667":10622,"2668":13454,"2669":12823,"2670":3321,"2671":6978,"2672":4302,"2673":13016,"2674":8697,"2675":6708,"2676":2465,"2677":6241,"2678":9536,"2679":10476,"2680":10225,"2681":14409,"2682":5086,"2683":13581,"2684":7802,"2685":10,"2686":12185,"2687":10263,"2688":2530,"2689":13449,"2690":8783,"2691":9865,"2692":14354,"2693":12951,"2694":9847,"2695":12190,"2696":9817,"2697":6534,"2698":5111,"2699":10754,"2700":2747,"2701":11701,"2702":13459,"2703":2990,"2704":5235,"2705":3540,"2706":7677,"2707":1070,"2708":10437,"2709":12977,"2710":12371,"2711":10060,"2712":7926,"2713":13484,"2714":5559,"2715":14098,"2716":11068,"2717":3812,"2718":2877,"2719":285,"2720":13965,"2721":3377,"2722":9093,"2723":2026,"2724":3139,"2725":13354,"2726":10214,"2727":9320,"2728":3845,"2729":8769,"2730":6026,"2731":789,"2732":6439,"2733":14960,"2734":10807,"2735":2770,"2736":1073,"2737":12886,"2738":6358,"2739":6148,"2740":8528,"2741":11636,"2742":6062,"2743":1717,"2744":4172,"2745":11995,"2746":1137,"2747":4010,"2748":9813,"2749":12441,"2750":2729,"2751":3265,"2752":10335,"2753":12232,"2754":8636,"2755":894,"2756":13275,"2757":6517,"2758":8180,"2759":5149,"2760":10054,"2761":8480,"2762":150,"2763":3055,"2764":4640,"2765":1856,"2766":10190,"2767":3180,"2768":2997,"2769":12510,"2770":5135,"2771":3661,"2772":3983,"2773":7685,"2774":3150,"2775":2526,"2776":13718,"2777":3465,"2778":3817,"2779":7981,"2780":9746,"2781":5779,"2782":12084,"2783":1070,"2784":1768,"2785":607,"2786":14848,"2787":10152,"2788":3327,"2789":11801,"2790":10070,"2791":5685,"2792":3520,"2793":1812,"2794":879,"2795":13616,"2796":1706,"2797":10251,"2798":3375,"2799":14910,"2800":6401,"2801":2462,"2802":8000,"2803":5146,"2804":5385,"2805":12255,"2806":7081,"2807":3669,"2808":11368,"2809":2222,"2810":14067,"2811":4086,"2812":4746,"2813":12554,"2814":5749,"2815":3265,"2816":1987,"2817":10414,"2818":2566,"2819":12190,"2820":4780,"2821":634,"2822":5762,"2823":11395,"2824":5858,"2825":12984,"2826":10015,"2827":2938,"2828":8652,"2829":6895,"2830":7560,"2831":3960,"2832":4151,"2833":14695,"2834":4572,"2835":7928,"2836":2151,"2837":10932,"2838":9815,"2839":4517,"2840":5996,"2841":11132,"2842":11111,"2843":10610,"2844":8870,"2845":13148,"2846":4663,"2847":13692,"2848":9692,"2849":12535,"2850":5932,"2851":3465,"2852":12974,"2853":13803,"2854":3469,"2855":10209,"2856":1098,"2857":12715,"2858":8401,"2859":10120,"2860":443,"2861":5295,"2862":2967,"2863":2930,"2864":14180,"2865":10540,"2866":5494,"2867":11003,"2868":3338,"2869":5367,"2870":3310,"2871":14467,"2872":11475,"2873":2400,"2874":7868,"2875":4484,"2876":751,"2877":11970,"2878":6099,"2879":12579,"2880":9468,"2881":9883,"2882":14226,"2883":14798,"2884":6359,"2885":14468,"2886":6020,"2887":7444,"2888":10297,"2889":11091,"2890":4232,"2891":10297,"2892":7508,"2893":6596,"2894":216,"2895":14868,"2896":14540,"2897":2204,"2898":14153,"2899":4446,"2900":2786,"2901":6738,"2902":12793,"2903":5350,"2904":6747,"2905":4128,"2906":13890,"2907":11631,"2908":1084,"2909":14737,"2910":8335,"2911":5044,"2912":8164,"2913":9474,"2914":13255,"2915":15131,"2916":13112,"2917":2894,"2918":13047,"2919":8290,"2920":3608,"2921":8746,"2922":14765,"2923":13080,"2924":12240,"2925":1044,"2926":8567,"2927":2568,"2928":11000,"2929":6616,"2930":12996,"2931":10668,"2932":4436,"2933":13081,"2934":3608,"2935":9028,"2936":10107,"2937":13594,"2938":10843,"2939":2219,"2940":6197,"2941":268,"2942":14729,"2943":2794,"2944":762,"2945":7075,"2946":1430,"2947":1927,"2948":6499,"2949":4157,"2950":6613,"2951":6509,"2952":3398,"2953":2923,"2954":3324,"2955":140,"2956":636,"2957":10084,"2958":6805,"2959":330,"2960":13833,"2961":11692,"2962":5990,"2963":1333,"2964":12807,"2965":2617,"2966":8040,"2967":2910,"2968":2443,"2969":9701,"2970":13252,"2971":13200,"2972":7192,"2973":56,"2974":8488,"2975":12047,"2976":6488,"2977":14883,"2978":5992,"2979":12919,"2980":1939,"2981":5776,"2982":13649,"2983":11075,"2984":463,"2985":425,"2986":14580,"2987":10867,"2988":13138,"2989":1147,"2990":2265,"2991":12613,"2992":5913,"2993":673,"2994":11017,"2995":5017,"2996":7917,"2997":13863,"2998":7277,"2999":894,"3000":9414,"3001":13522,"3002":13736,"3003":10052,"3004":8767,"3005":2159,"3006":2393,"3007":2979,"3008":11425,"3009":1264,"3010":1436,"3011":9742,"3012":6730,"3013":12864,"3014":8166,"3015":1647,"3016":3695,"3017":14637,"3018":543,"3019":4107,"3020":10930,"3021":14675,"3022":1223,"3023":4671,"3024":431,"3025":13771,"3026":5951,"3027":11589,"3028":3265,"3029":147,"3030":11805,"3031":14954,"3032":7328,"3033":12230,"3034":9397,"3035":13470,"3036":11529,"3037":13447,"3038":11508,"3039":4592,"3040":14220,"3041":9526,"3042":4646,"3043":2643,"3044":9463,"3045":10349,"3046":4415,"3047":9558,"3048":1078,"3049":5249,"3050":10352,"3051":4640,"3052":1468,"3053":7865,"3054":9657,"3055":12690,"3056":8689,"3057":2462,"3058":2082,"3059":12138,"3060":4820,"3061":11568,"3062":6217,"3063":12575,"3064":3272,"3065":9020,"3066":13627,"3067":5462,"3068":13217,"3069":9283,"3070":7717,"3071":7750,"3072":13526,"3073":5953,"3074":2178,"3075":11345,"3076":7836,"3077":7651,"3078":3878,"3079":1956,"3080":12737,"3081":10032,"3082":14143,"3083":6897,"3084":5058,"3085":5369,"3086":3690,"3087":13200,"3088":8626,"3089":3107,"3090":7046,"3091":398,"3092":8027,"3093":8064,"3094":8440,"3095":9847,"3096":6961,"3097":12982,"3098":38,"3099":12672,"3100":9735,"3101":2760,"3102":2546,"3103":505,"3104":11690,"3105":6209,"3106":1224,"3107":588,"3108":12547,"3109":5990,"3110":6906,"3111":307,"3112":12356,"3113":6991,"3114":3156,"3115":12019,"3116":6047,"3117":4396,"3118":7083,"3119":8693,"3120":4307,"3121":13096,"3122":4109,"3123":10547,"3124":3745,"3125":12121,"3126":10908,"3127":11391,"3128":7509,"3129":9772,"3130":1160,"3131":14457,"3132":10522,"3133":4123,"3134":11028,"3135":1080,"3136":6216,"3137":12094,"3138":13540,"3139":6172,"3140":14731,"3141":3665,"3142":4761,"3143":4146,"3144":11380,"3145":13803,"3146":7864,"3147":2197,"3148":10526,"3149":2491,"3150":2923,"3151":2725,"3152":936,"3153":4651,"3154":7636,"3155":13379,"3156":1917,"3157":502,"3158":8022,"3159":5899,"3160":5626,"3161":6456,"3162":13822,"3163":9676,"3164":2205,"3165":13554,"3166":11611,"3167":10416,"3168":8209,"3169":10741,"3170":9419,"3171":3521,"3172":150,"3173":13688,"3174":4788,"3175":9032,"3176":5659,"3177":5293,"3178":10701,"3179":11469,"3180":9696,"3181":3721,"3182":6475,"3183":2094,"3184":5857,"3185":1145,"3186":11334,"3187":2144,"3188":13704,"3189":206,"3190":5577,"3191":13107,"3192":4866,"3193":1380,"3194":6542,"3195":11948,"3196":14205,"3197":4458,"3198":489,"3199":12290,"3200":4372,"3201":2772,"3202":3081,"3203":5341,"3204":14933,"3205":11199,"3206":9802,"3207":8518,"3208":982,"3209":1766,"3210":6770,"3211":4119,"3212":1762,"3213":10793,"3214":4402,"3215":1930,"3216":6658,"3217":12124,"3218":2009,"3219":12282,"3220":11936,"3221":2135,"3222":7245,"3223":11899,"3224":167,"3225":1645,"3226":9386,"3227":5047,"3228":14653,"3229":8981,"3230":11224,"3231":3780,"3232":254,"3233":12437,"3234":113,"3235":15020,"3236":134,"3237":5918,"3238":10195,"3239":7697,"3240":3226,"3241":10360,"3242":49,"3243":13715,"3244":12701,"3245":6715,"3246":8660,"3247":6268,"3248":14918,"3249":10653,"3250":4281,"3251":11007,"3252":5401,"3253":395,"3254":3296,"3255":9056,"3256":2035,"3257":2759,"3258":12185,"3259":14812,"3260":11786,"3261":3310,"3262":13195,"3263":603,"3264":13403,"3265":7762,"3266":14312,"3267":14780,"3268":13649,"3269":14759,"3270":5273,"3271":5183,"3272":5411,"3273":9854,"3274":1615,"3275":2332,"3276":10891,"3277":6535,"3278":9526,"3279":9568,"3280":13371,"3281":2846,"3282":6006,"3283":9951,"3284":12235,"3285":9175,"3286":14085,"3287":8238,"3288":195,"3289":216,"3290":14604,"3291":14515,"3292":121,"3293":7996,"3294":1620,"3295":3486,"3296":2206,"3297":14708,"3298":5009,"3299":14101,"3300":8108,"3301":2678,"3302":8934,"3303":4264,"3304":1600,"3305":9926,"3306":12066,"3307":1796,"3308":6929,"3309":10126,"3310":5001,"3311":7430,"3312":6861,"3313":783,"3314":3274,"3315":8632,"3316":10505,"3317":14916,"3318":6764,"3319":8339,"3320":14481,"3321":1978,"3322":1118,"3323":10095,"3324":14222,"3325":7950,"3326":11923,"3327":13929,"3328":3022,"3329":363,"3330":14055,"3331":4966,"3332":2890,"3333":6938,"3334":3854,"3335":14859,"3336":2521,"3337":2382,"3338":9236,"3339":9,"3340":2715,"3341":1395,"3342":8401,"3343":1460,"3344":8448,"3345":15055,"3346":7572,"3347":1700,"3348":14076,"3349":14275,"3350":9113,"3351":5238,"3352":8979,"3353":7426,"3354":9611,"3355":8404,"3356":1388,"3357":9688,"3358":14404,"3359":7053,"3360":10665,"3361":8241,"3362":9037,"3363":10517,"3364":3997,"3365":6059,"3366":895,"3367":4040,"3368":3102,"3369":12695,"3370":7280,"3371":2027,"3372":10520,"3373":13431,"3374":1821,"3375":3010,"3376":4944,"3377":13565,"3378":511,"3379":4582,"3380":10125,"3381":9717,"3382":11152,"3383":12254,"3384":2524,"3385":11804,"3386":9533,"3387":9213,"3388":2296,"3389":11311,"3390":5515,"3391":7154,"3392":5738,"3393":5771,"3394":10050,"3395":1558,"3396":6148,"3397":1380,"3398":12749,"3399":13036,"3400":6286,"3401":5932,"3402":12746,"3403":4801,"3404":6117,"3405":1390,"3406":1407,"3407":3030,"3408":2688,"3409":14255,"3410":4441,"3411":8941,"3412":8461,"3413":5023,"3414":6549,"3415":3940,"3416":900,"3417":10123,"3418":8780,"3419":3560,"3420":11808,"3421":8907,"3422":9085,"3423":5320,"3424":14448,"3425":2948,"3426":10718,"3427":968,"3428":859,"3429":11964,"3430":12006,"3431":14763,"3432":4202,"3433":7509,"3434":11598,"3435":1715,"3436":9670,"3437":5897,"3438":13539,"3439":14577,"3440":10835,"3441":11538,"3442":5100,"3443":10312,"3444":7333,"3445":8397,"3446":13007,"3447":14448,"3448":4631,"3449":9325,"3450":1204,"3451":330,"3452":9707,"3453":7732,"3454":10691,"3455":1428,"3456":3070,"3457":6529,"3458":10592,"3459":3751,"3460":6560,"3461":770,"3462":10911,"3463":13638,"3464":7482,"3465":5250,"3466":8577,"3467":14379,"3468":2741,"3469":1349,"3470":5471,"3471":8953,"3472":8022,"3473":6786,"3474":14928,"3475":3379,"3476":7005,"3477":3737,"3478":3526,"3479":11300,"3480":4200,"3481":14491,"3482":3005,"3483":5333,"3484":7240,"3485":8346,"3486":6176,"3487":9328,"3488":12526,"3489":13188,"3490":8168,"3491":14140,"3492":12094,"3493":5415,"3494":4627,"3495":12059,"3496":7397,"3497":8735,"3498":9006,"3499":7586,"3500":8127,"3501":5808,"3502":8592,"3503":7573,"3504":4899,"3505":12491,"3506":13249,"3507":737,"3508":8992,"3509":10272,"3510":14835,"3511":10543,"3512":6193,"3513":10098,"3514":14886,"3515":4035,"3516":5371,"3517":2483,"3518":2512,"3519":4321,"3520":11303,"3521":2718,"3522":9755,"3523":11297,"3524":13437,"3525":13844,"3526":8598,"3527":7513,"3528":8105,"3529":1829,"3530":7806,"3531":13662,"3532":1306,"3533":8892,"3534":13444,"3535":10053,"3536":12385,"3537":8201,"3538":3697,"3539":9238,"3540":7250,"3541":11121,"3542":11590,"3543":9131,"3544":13567,"3545":7083,"3546":1321,"3547":4643,"3548":142,"3549":8631,"3550":6353,"3551":10469,"3552":7750,"3553":13225,"3554":3492,"3555":3569,"3556":6244,"3557":7502,"3558":1983,"3559":13540,"3560":6674,"3561":5633,"3562":11978,"3563":13617,"3564":14026,"3565":9472,"3566":1594,"3567":3783,"3568":646,"3569":5826,"3570":7457,"3571":4977,"3572":2211,"3573":425,"3574":7882,"3575":4872,"3576":9660,"3577":5177,"3578":8972,"3579":12707,"3580":1081,"3581":1813,"3582":14661,"3583":5516,"3584":11804,"3585":9548,"3586":14387,"3587":7745,"3588":9095,"3589":7988,"3590":5990,"3591":13229,"3592":5591,"3593":14889,"3594":4400,"3595":4493,"3596":13599,"3597":7800,"3598":4478,"3599":10249,"3600":13359,"3601":8815,"3602":1172,"3603":14437,"3604":8684,"3605":512,"3606":9861,"3607":3900,"3608":3581,"3609":13430,"3610":14400,"3611":5089,"3612":10894,"3613":7495,"3614":13388,"3615":10456,"3616":4017,"3617":10057,"3618":4550,"3619":10747,"3620":4797,"3621":3156,"3622":12288,"3623":9295,"3624":1969,"3625":2094,"3626":10408,"3627":5664,"3628":12388,"3629":4072,"3630":2739,"3631":4300,"3632":14222,"3633":2601,"3634":10505,"3635":10756,"3636":11823,"3637":14063,"3638":4698,"3639":11721,"3640":11172,"3641":2151,"3642":10146,"3643":1132,"3644":11336,"3645":3670,"3646":1878,"3647":7814,"3648":6874,"3649":8987,"3650":14860,"3651":10184,"3652":5833,"3653":6887,"3654":5591,"3655":11456,"3656":3920,"3657":11917,"3658":12863,"3659":6778,"3660":4577,"3661":4227,"3662":5112,"3663":9244,"3664":13910,"3665":7349,"3666":14090,"3667":14124,"3668":10398,"3669":4116,"3670":11430,"3671":11091,"3672":11663,"3673":7062,"3674":8911,"3675":409,"3676":9012,"3677":3055,"3678":13816,"3679":11987,"3680":765,"3681":15122,"3682":15038,"3683":5985,"3684":5671,"3685":13974,"3686":15086,"3687":8992,"3688":3134,"3689":12184,"3690":4174,"3691":5952,"3692":11643,"3693":8588,"3694":6194,"3695":6640,"3696":9834,"3697":3226,"3698":7367,"3699":12088,"3700":2613,"3701":2976,"3702":6956,"3703":13975,"3704":2560,"3705":9166,"3706":3775,"3707":14156,"3708":14451,"3709":2316,"3710":2493,"3711":636,"3712":10843,"3713":7792,"3714":2418,"3715":7582,"3716":9946,"3717":2834,"3718":2983,"3719":15105,"3720":12054,"3721":13257,"3722":10701,"3723":6413,"3724":12420,"3725":6589,"3726":2460,"3727":5154,"3728":14754,"3729":1534,"3730":9206,"3731":1590,"3732":5164,"3733":1453,"3734":8693,"3735":9581,"3736":3539,"3737":10007,"3738":5097,"3739":4551,"3740":2173,"3741":5708,"3742":4564,"3743":3049,"3744":8453,"3745":14377,"3746":14638,"3747":2784,"3748":2571,"3749":12027,"3750":13164,"3751":14114,"3752":3851,"3753":10357,"3754":6461,"3755":14888,"3756":12141,"3757":14324,"3758":10471,"3759":10331,"3760":3194,"3761":14907,"3762":6981,"3763":12682,"3764":909,"3765":14392,"3766":11953,"3767":1921,"3768":1725,"3769":1884,"3770":8194,"3771":12366,"3772":13531,"3773":1033,"3774":12719,"3775":12045,"3776":4493,"3777":14793,"3778":7917,"3779":1691,"3780":6800,"3781":1707,"3782":8831,"3783":14702,"3784":3899,"3785":4986,"3786":7388,"3787":11853,"3788":2691,"3789":12238,"3790":3976,"3791":6639,"3792":712,"3793":5918,"3794":13456,"3795":10722,"3796":6155,"3797":4359,"3798":5922,"3799":5137,"3800":9800,"3801":10620,"3802":4005,"3803":6288,"3804":5409,"3805":9580,"3806":5067,"3807":10602,"3808":5690,"3809":6564,"3810":10940,"3811":4369,"3812":11940,"3813":5060,"3814":4873,"3815":2786,"3816":11095,"3817":3736,"3818":7668,"3819":4856,"3820":2845,"3821":1660,"3822":7529,"3823":4921,"3824":9581,"3825":12763,"3826":879,"3827":8807,"3828":10876,"3829":7048,"3830":11205,"3831":13752,"3832":5569,"3833":4491,"3834":10692,"3835":237,"3836":14249,"3837":13354,"3838":5212,"3839":4783,"3840":2362,"3841":10468,"3842":4484,"3843":10062,"3844":9041,"3845":9703,"3846":2798,"3847":10520,"3848":731,"3849":4742,"3850":1883,"3851":9289,"3852":5546,"3853":11260,"3854":5750,"3855":12196,"3856":2441,"3857":10238,"3858":8340,"3859":2706,"3860":14618,"3861":12333,"3862":5717,"3863":10673,"3864":745,"3865":10485,"3866":9514,"3867":589,"3868":7125,"3869":9285,"3870":13645,"3871":1567,"3872":7261,"3873":4071,"3874":14165,"3875":2149,"3876":12275,"3877":3261,"3878":2915,"3879":1734,"3880":5669,"3881":1023,"3882":2812,"3883":2182,"3884":9927,"3885":6155,"3886":9379,"3887":9304,"3888":8383,"3889":7450,"3890":5342,"3891":10128,"3892":13679,"3893":5377,"3894":14322,"3895":10531,"3896":1354,"3897":5655,"3898":12432,"3899":7692,"3900":11647,"3901":10747,"3902":5953,"3903":9728,"3904":13379,"3905":7156,"3906":1437,"3907":7077,"3908":2203,"3909":13318,"3910":8136,"3911":14969,"3912":14162,"3913":14501,"3914":13430,"3915":6214,"3916":4294,"3917":715,"3918":5973,"3919":1515,"3920":4352,"3921":1212,"3922":5437,"3923":14380,"3924":13245,"3925":5003,"3926":11888,"3927":10667,"3928":5799,"3929":4184,"3930":4052,"3931":3164,"3932":292,"3933":2686,"3934":12385,"3935":11062,"3936":8529,"3937":4631,"3938":11762,"3939":1501,"3940":7257,"3941":14847,"3942":14771,"3943":8821,"3944":9481,"3945":3860,"3946":2093,"3947":6978,"3948":8847,"3949":12779,"3950":4657,"3951":3649,"3952":8611,"3953":6860,"3954":13016,"3955":10118,"3956":5059,"3957":14839,"3958":9923,"3959":2873,"3960":7370,"3961":4344,"3962":5659,"3963":3004,"3964":583,"3965":615,"3966":14147,"3967":3337,"3968":7940,"3969":3413,"3970":2341,"3971":7266,"3972":9063,"3973":5488,"3974":14530,"3975":6350,"3976":3171,"3977":10418,"3978":3145,"3979":2529,"3980":3380,"3981":7868,"3982":10872,"3983":7608,"3984":1612,"3985":5408,"3986":6639,"3987":6367,"3988":3711,"3989":12387,"3990":10548,"3991":2260,"3992":14460,"3993":5355,"3994":4739,"3995":6265,"3996":885,"3997":5786,"3998":13926,"3999":4856,"4000":6531,"4001":2408,"4002":4119,"4003":9780,"4004":14524,"4005":3396,"4006":1405,"4007":4140,"4008":14120,"4009":4241,"4010":5105,"4011":11478,"4012":10234,"4013":8353,"4014":12756,"4015":14921,"4016":7478,"4017":5921,"4018":8756,"4019":7124,"4020":8239,"4021":8623,"4022":10124,"4023":11803,"4024":11919,"4025":15098,"4026":2895,"4027":13362,"4028":2438,"4029":5596,"4030":3316,"4031":5495,"4032":4498,"4033":4159,"4034":13358,"4035":9049,"4036":188,"4037":14869,"4038":6041,"4039":8793,"4040":3929,"4041":1111,"4042":14416,"4043":4229,"4044":10218,"4045":9167,"4046":13424,"4047":2714,"4048":7091,"4049":3286,"4050":10111,"4051":4090,"4052":12316,"4053":12312,"4054":8181,"4055":13229,"4056":8800,"4057":7284,"4058":8534,"4059":8599,"4060":2626,"4061":11279,"4062":5695,"4063":5508,"4064":13357,"4065":15117,"4066":8971,"4067":8898,"4068":14969,"4069":4374,"4070":8,"4071":12925,"4072":2497,"4073":7515,"4074":7291,"4075":6188,"4076":12096,"4077":2264,"4078":4700,"4079":4019,"4080":12215,"4081":14272,"4082":8225,"4083":11305,"4084":4085,"4085":5932,"4086":14245,"4087":6151,"4088":10175,"4089":2849,"4090":4477,"4091":2313,"4092":2064,"4093":3344,"4094":4046,"4095":10603,"4096":14354,"4097":9742,"4098":7588,"4099":11110,"4100":12712,"4101":4140,"4102":3071,"4103":14123,"4104":814,"4105":9821,"4106":13257,"4107":9677,"4108":2502,"4109":5387,"4110":3708,"4111":8713,"4112":8088,"4113":9788,"4114":8398,"4115":11831,"4116":13453,"4117":12741,"4118":3661,"4119":14526,"4120":6690,"4121":14066,"4122":9705,"4123":9005,"4124":3095,"4125":14009,"4126":3645,"4127":13554,"4128":7309,"4129":6767,"4130":2736,"4131":8081,"4132":8021,"4133":7122,"4134":13278,"4135":7747,"4136":14855,"4137":7363,"4138":6895,"4139":12028,"4140":9669,"4141":5146,"4142":15021,"4143":1678,"4144":5932,"4145":10335,"4146":12874,"4147":4233,"4148":9115,"4149":3931,"4150":7902,"4151":4558,"4152":12032,"4153":2689,"4154":7724,"4155":11178,"4156":3835,"4157":3399,"4158":1715,"4159":574,"4160":6797,"4161":5669,"4162":10385,"4163":3758,"4164":10514,"4165":1862,"4166":13589,"4167":10287,"4168":12483,"4169":9640,"4170":11086,"4171":7934,"4172":13081,"4173":4803,"4174":1167,"4175":10843,"4176":14898,"4177":1792,"4178":1698,"4179":1702,"4180":9269,"4181":502,"4182":10727,"4183":1998,"4184":7104,"4185":8892,"4186":2787,"4187":7533,"4188":7633,"4189":7371,"4190":8377,"4191":3178,"4192":10653,"4193":15067,"4194":9842,"4195":2700,"4196":10756,"4197":7464,"4198":1187,"4199":3931,"4200":6427,"4201":4389,"4202":2110,"4203":14107,"4204":4767,"4205":5700,"4206":1791,"4207":3213,"4208":7664,"4209":2901,"4210":15034,"4211":14805,"4212":10216,"4213":7095,"4214":2059,"4215":5672,"4216":7090,"4217":5176,"4218":3382,"4219":13443,"4220":8436,"4221":2617,"4222":14479,"4223":6537,"4224":9229,"4225":7274,"4226":8806,"4227":1376,"4228":6777,"4229":8296,"4230":730,"4231":5301,"4232":10004,"4233":7240,"4234":3303,"4235":1196,"4236":7016,"4237":8806,"4238":5984,"4239":13876,"4240":1166,"4241":8232,"4242":7785,"4243":7346,"4244":4312,"4245":11227,"4246":13677,"4247":1293,"4248":14367,"4249":14211,"4250":2978,"4251":3094,"4252":8001,"4253":13965,"4254":13795,"4255":9411,"4256":5312,"4257":7049,"4258":12061,"4259":10578,"4260":2147,"4261":290,"4262":11676,"4263":14868,"4264":10695,"4265":6898,"4266":3768,"4267":10856,"4268":15095,"4269":9402,"4270":8322,"4271":10187,"4272":9443,"4273":3682,"4274":1612,"4275":13005,"4276":8888,"4277":13436,"4278":10999,"4279":4081,"4280":7476,"4281":1018,"4282":4815,"4283":3166,"4284":5193,"4285":13888,"4286":12781,"4287":126,"4288":4466,"4289":13554,"4290":15085,"4291":9025,"4292":3958,"4293":13255,"4294":8807,"4295":1596,"4296":4026,"4297":5530,"4298":9162,"4299":13211,"4300":6823,"4301":9524,"4302":12529,"4303":13078,"4304":8182,"4305":13996,"4306":13773,"4307":12823,"4308":13727,"4309":1851,"4310":9064,"4311":7946,"4312":3466,"4313":13704,"4314":2151,"4315":14672,"4316":3966,"4317":3533,"4318":5044,"4319":10075,"4320":5899,"4321":4007,"4322":1976,"4323":14844,"4324":12722,"4325":4366,"4326":14421,"4327":5247,"4328":9551,"4329":14483,"4330":7691,"4331":5603,"4332":1086,"4333":51,"4334":5962,"4335":8154,"4336":11479,"4337":14749,"4338":12117,"4339":10248,"4340":792,"4341":10379,"4342":7614,"4343":13805,"4344":7257,"4345":2309,"4346":10834,"4347":12251,"4348":14604,"4349":2369,"4350":8279,"4351":9740,"4352":1611,"4353":13998,"4354":63,"4355":6291,"4356":3974,"4357":8837,"4358":12454,"4359":13254,"4360":5846,"4361":997,"4362":5331,"4363":303,"4364":5339,"4365":1903,"4366":2291,"4367":9960,"4368":262,"4369":2219,"4370":2642,"4371":899,"4372":172,"4373":2024,"4374":6002,"4375":14461,"4376":9322,"4377":10206,"4378":9270,"4379":10282,"4380":6449,"4381":5718,"4382":11358,"4383":1333,"4384":725,"4385":7909,"4386":4793,"4387":8274,"4388":14079,"4389":1951,"4390":14210,"4391":3028,"4392":8856,"4393":7421,"4394":3071,"4395":11217,"4396":8333,"4397":4442,"4398":10863,"4399":14054,"4400":11114,"4401":14455,"4402":8418,"4403":13997,"4404":12618,"4405":7992,"4406":2317,"4407":4604,"4408":13214,"4409":3399,"4410":1267,"4411":13952,"4412":8540,"4413":12554,"4414":8176,"4415":10330,"4416":10107,"4417":4136,"4418":12117,"4419":8055,"4420":3497,"4421":12891,"4422":6168,"4423":14412,"4424":3715,"4425":12927,"4426":1947,"4427":12124,"4428":14531,"4429":1510,"4430":4534,"4431":13819,"4432":1785,"4433":8565,"4434":7388,"4435":10112,"4436":10546,"4437":11627,"4438":6706,"4439":6980,"4440":10345,"4441":14994,"4442":2456,"4443":14225,"4444":11599,"4445":7634,"4446":11829,"4447":957,"4448":10224,"4449":12495,"4450":6845,"4451":10673,"4452":7017,"4453":5193,"4454":14236,"4455":13933,"4456":6851,"4457":5391,"4458":3819,"4459":12038,"4460":190,"4461":2226,"4462":3892,"4463":434,"4464":4102,"4465":12365,"4466":10953,"4467":5486,"4468":12420,"4469":11902,"4470":4279,"4471":2870,"4472":54,"4473":1153,"4474":6839,"4475":9785,"4476":5856,"4477":4167,"4478":11141,"4479":14525,"4480":11518,"4481":2151,"4482":8604,"4483":7189,"4484":1311,"4485":7528,"4486":2262,"4487":12382,"4488":14599,"4489":7790,"4490":12112,"4491":1518,"4492":2190,"4493":11565,"4494":3133,"4495":5799,"4496":14283,"4497":9972,"4498":1550,"4499":3814,"4500":9526,"4501":10098,"4502":11751,"4503":539,"4504":9861,"4505":10551,"4506":12429,"4507":10350,"4508":4309,"4509":14916,"4510":13903,"4511":9679,"4512":13361,"4513":6251,"4514":12886,"4515":12204,"4516":328,"4517":7100,"4518":440,"4519":14804,"4520":4028,"4521":6299,"4522":6875,"4523":13867,"4524":1190,"4525":10801,"4526":2420,"4527":15109,"4528":14152,"4529":9346,"4530":2577,"4531":1069,"4532":587,"4533":322,"4534":7853,"4535":14558,"4536":2077,"4537":8779,"4538":3706,"4539":5542,"4540":15133,"4541":15038,"4542":1157,"4543":13093,"4544":1781,"4545":9673,"4546":10187,"4547":4892,"4548":7461,"4549":2481,"4550":1603,"4551":5367,"4552":11661,"4553":8055,"4554":7358,"4555":5717,"4556":1704,"4557":10564,"4558":6052,"4559":271,"4560":2270,"4561":8197,"4562":9326,"4563":3155,"4564":11178,"4565":13418,"4566":3343,"4567":11491,"4568":15025,"4569":3387,"4570":4101,"4571":2772,"4572":421,"4573":765,"4574":3356,"4575":3656,"4576":3868,"4577":8630,"4578":3239,"4579":3094,"4580":7800,"4581":10401,"4582":1517,"4583":11613,"4584":12516,"4585":6171,"4586":1077,"4587":607,"4588":13549,"4589":12690,"4590":9810,"4591":11011,"4592":7758,"4593":2584,"4594":3049,"4595":3936,"4596":10613,"4597":8641,"4598":6516,"4599":5448,"4600":10678,"4601":8564,"4602":8267,"4603":7416,"4604":10412,"4605":2784,"4606":3684,"4607":12126,"4608":7444,"4609":12349,"4610":1850,"4611":9804,"4612":5990,"4613":4289,"4614":5272,"4615":396,"4616":4060,"4617":5293,"4618":3828,"4619":12384,"4620":924,"4621":4711,"4622":5820,"4623":2562,"4624":13215,"4625":9364,"4626":5916,"4627":10805,"4628":1389,"4629":10977,"4630":3741,"4631":13003,"4632":14691,"4633":12148,"4634":15003,"4635":10096,"4636":11290,"4637":1280,"4638":4192,"4639":2144,"4640":6366,"4641":6236,"4642":13750,"4643":12206,"4644":12337,"4645":10614,"4646":7972,"4647":14873,"4648":9805,"4649":3390,"4650":934,"4651":183,"4652":7224,"4653":6069,"4654":2897,"4655":11243,"4656":3143,"4657":2010,"4658":14832,"4659":3479,"4660":2491,"4661":4405,"4662":12130,"4663":11919,"4664":8073,"4665":4158,"4666":14510,"4667":14513,"4668":6969,"4669":14052,"4670":11944,"4671":14832,"4672":10974,"4673":893,"4674":14671,"4675":14859,"4676":6144,"4677":8868,"4678":2803,"4679":10036,"4680":9373,"4681":2516,"4682":1330,"4683":6614,"4684":2515,"4685":14484,"4686":209,"4687":6980,"4688":7919,"4689":9548,"4690":14456,"4691":4973,"4692":77,"4693":4106,"4694":2934,"4695":2384,"4696":1417,"4697":9336,"4698":4486,"4699":9177,"4700":911,"4701":8445,"4702":12321,"4703":6451,"4704":13602,"4705":11491,"4706":8610,"4707":14314,"4708":302,"4709":11816,"4710":3739,"4711":7419,"4712":6573,"4713":454,"4714":2740,"4715":9764,"4716":5195,"4717":14198,"4718":10602,"4719":6590,"4720":15024,"4721":14310,"4722":8700,"4723":9391,"4724":2841,"4725":2199,"4726":6424,"4727":860,"4728":11437,"4729":11481,"4730":3955,"4731":14821,"4732":14736,"4733":13603,"4734":7210,"4735":12340,"4736":7240,"4737":5847,"4738":2336,"4739":5591,"4740":6324,"4741":6200,"4742":10204,"4743":7951,"4744":13561,"4745":10088,"4746":4722,"4747":5062,"4748":7925,"4749":5063,"4750":3672,"4751":9546,"4752":1734,"4753":13623,"4754":12936,"4755":8173,"4756":9662,"4757":3158,"4758":6230,"4759":12990,"4760":6628,"4761":7814,"4762":6366,"4763":6513,"4764":7184,"4765":11487,"4766":945,"4767":3453,"4768":6634,"4769":13385,"4770":13106,"4771":2531,"4772":13306,"4773":7671,"4774":3337,"4775":4382,"4776":12985,"4777":13048,"4778":3716,"4779":11218,"4780":3913,"4781":7036,"4782":8220,"4783":8133,"4784":3098,"4785":14876,"4786":10994,"4787":980,"4788":13572,"4789":8877,"4790":7088,"4791":8060,"4792":9181,"4793":7121,"4794":2457,"4795":14171,"4796":1572,"4797":5157,"4798":11212,"4799":12803,"4800":27,"4801":13216,"4802":5646,"4803":14742,"4804":11645,"4805":14434,"4806":10817,"4807":13944,"4808":6486,"4809":14875,"4810":8216,"4811":11882,"4812":10695,"4813":5762,"4814":13133,"4815":14331,"4816":13997,"4817":6715,"4818":8601,"4819":11299,"4820":5323,"4821":13100,"4822":6250,"4823":9378,"4824":11236,"4825":10775,"4826":8966,"4827":15113,"4828":13006,"4829":13445,"4830":3876,"4831":10685,"4832":8611,"4833":13634,"4834":7770,"4835":10545,"4836":8347,"4837":5837,"4838":5849,"4839":14738,"4840":9511,"4841":3590,"4842":8943,"4843":2006,"4844":13967,"4845":2053,"4846":3761,"4847":8921,"4848":8226,"4849":11761,"4850":7096,"4851":9626,"4852":3836,"4853":11035,"4854":5866,"4855":2381,"4856":1825,"4857":12728,"4858":2076,"4859":13504,"4860":1652,"4861":5629,"4862":7110,"4863":7821,"4864":13706,"4865":6218,"4866":462,"4867":9468,"4868":5718,"4869":5758,"4870":9623,"4871":7494,"4872":14178,"4873":2250,"4874":10000,"4875":3212,"4876":3481,"4877":6900,"4878":9302,"4879":13801,"4880":11976,"4881":1762,"4882":8204,"4883":11129,"4884":4483,"4885":3978,"4886":3044,"4887":4546,"4888":3797,"4889":5904,"4890":9309,"4891":9322,"4892":7137,"4893":8191,"4894":9800,"4895":8079,"4896":9938,"4897":7242,"4898":91,"4899":2723,"4900":14659,"4901":12095,"4902":5776,"4903":8113,"4904":12464,"4905":7894,"4906":5560,"4907":4538,"4908":11218,"4909":9737,"4910":1499,"4911":8063,"4912":840,"4913":6602,"4914":1217,"4915":9184,"4916":14360,"4917":1467,"4918":8660,"4919":14583,"4920":5350,"4921":11418,"4922":5077,"4923":3994,"4924":14850,"4925":10718,"4926":12538,"4927":8224,"4928":9308,"4929":5743,"4930":13215,"4931":949,"4932":9177,"4933":14001,"4934":261,"4935":10808,"4936":8143,"4937":7692,"4938":12150,"4939":14773,"4940":5711,"4941":7184,"4942":6937,"4943":2620,"4944":10150,"4945":2037,"4946":6505,"4947":9286,"4948":11847,"4949":13816,"4950":2875,"4951":12929,"4952":9488,"4953":2024,"4954":8437,"4955":1370,"4956":14911,"4957":7427,"4958":2800,"4959":9947,"4960":14301,"4961":8212,"4962":9019,"4963":10019,"4964":314,"4965":410,"4966":883,"4967":13128,"4968":13102,"4969":86,"4970":13698,"4971":5706,"4972":2874,"4973":13758,"4974":12792,"4975":7798,"4976":12824,"4977":13758,"4978":4210,"4979":6919,"4980":13057,"4981":10190,"4982":10145,"4983":7754,"4984":928,"4985":501,"4986":4270,"4987":10452,"4988":12572,"4989":175,"4990":2216,"4991":12110,"4992":11410,"4993":3550,"4994":5149,"4995":10020,"4996":5580,"4997":10609,"4998":14765,"4999":1920,"5000":13116,"5001":10151,"5002":2894,"5003":11297,"5004":863,"5005":14728,"5006":14831,"5007":12762,"5008":7823,"5009":8270,"5010":8200,"5011":7693,"5012":4792,"5013":3019,"5014":369,"5015":12483,"5016":7232,"5017":8009,"5018":9755,"5019":5187,"5020":6974,"5021":9144,"5022":9504,"5023":12431,"5024":3865,"5025":9401,"5026":6251,"5027":2854,"5028":14137,"5029":9669,"5030":2230,"5031":377,"5032":4296,"5033":3102,"5034":7718,"5035":719,"5036":7454,"5037":13147,"5038":2315,"5039":6807,"5040":844,"5041":14312,"5042":9991,"5043":14124,"5044":4416,"5045":15040,"5046":11613,"5047":14090,"5048":10296,"5049":6504,"5050":6255,"5051":12379,"5052":4097,"5053":7597,"5054":7171,"5055":4474,"5056":14775,"5057":5370,"5058":7859,"5059":5518,"5060":13316,"5061":14393,"5062":10006,"5063":2620,"5064":10302,"5065":968,"5066":353,"5067":12314,"5068":6567,"5069":13066,"5070":2681,"5071":11609,"5072":13838,"5073":4031,"5074":6481,"5075":12554,"5076":14463,"5077":12638,"5078":9649,"5079":3177,"5080":13232,"5081":10782,"5082":5751,"5083":8280,"5084":9094,"5085":4295,"5086":10120,"5087":6355,"5088":5205,"5089":9046,"5090":2985,"5091":84,"5092":2996,"5093":14194,"5094":7319,"5095":14521,"5096":11129,"5097":5231,"5098":13405,"5099":10446,"5100":4422,"5101":6951,"5102":8181,"5103":4410,"5104":2195,"5105":10344,"5106":5401,"5107":261,"5108":8422,"5109":351,"5110":11813,"5111":1741,"5112":12616,"5113":10312,"5114":5469,"5115":9919,"5116":13487,"5117":535,"5118":12232,"5119":12589,"5120":13177,"5121":14652,"5122":1223,"5123":8763,"5124":7419,"5125":524,"5126":11344,"5127":7492,"5128":1502,"5129":10803,"5130":6779,"5131":12718,"5132":14649,"5133":1409,"5134":11111,"5135":5757,"5136":5997,"5137":12600,"5138":4926,"5139":13986,"5140":12163,"5141":4637,"5142":3931,"5143":6012,"5144":14216,"5145":15111,"5146":12065,"5147":9523,"5148":135,"5149":8433,"5150":4997,"5151":6587,"5152":15114,"5153":10447,"5154":1149,"5155":5986,"5156":10074,"5157":3417,"5158":1595,"5159":12672,"5160":9311,"5161":422,"5162":1492,"5163":9792,"5164":12405,"5165":4902,"5166":13641,"5167":3613,"5168":8683,"5169":11461,"5170":14337,"5171":8994,"5172":10303,"5173":6269,"5174":3203,"5175":6113,"5176":9666,"5177":11049,"5178":12955,"5179":1867,"5180":6561,"5181":14796,"5182":320,"5183":2254,"5184":5426,"5185":14224,"5186":10976,"5187":5798,"5188":6894,"5189":6469,"5190":11503,"5191":8511,"5192":5116,"5193":5507,"5194":2760,"5195":7912,"5196":6355,"5197":3942,"5198":3818,"5199":13090,"5200":7507,"5201":7762,"5202":6284,"5203":9385,"5204":10551,"5205":11528,"5206":12867,"5207":2649,"5208":8918,"5209":1521,"5210":8676,"5211":15071,"5212":6356,"5213":72,"5214":3372,"5215":10317,"5216":1611,"5217":9616,"5218":3993,"5219":6336,"5220":13970,"5221":13778,"5222":10298,"5223":8951,"5224":12106,"5225":14184,"5226":3511,"5227":6150,"5228":7331,"5229":6718,"5230":6209,"5231":7300,"5232":1099,"5233":13170,"5234":12376,"5235":10577,"5236":2720,"5237":7323,"5238":14881,"5239":6170,"5240":14305,"5241":4868,"5242":1816,"5243":462,"5244":11997,"5245":10840,"5246":1761,"5247":10425,"5248":537,"5249":2122,"5250":6181,"5251":14653,"5252":7873,"5253":7630,"5254":10589,"5255":15052,"5256":5636,"5257":1909,"5258":11483,"5259":11563,"5260":7458,"5261":113,"5262":11586,"5263":13693,"5264":13382,"5265":1703,"5266":2283,"5267":11445,"5268":2915,"5269":1890,"5270":6845,"5271":3878,"5272":886,"5273":12408,"5274":6083,"5275":10914,"5276":10219,"5277":1809,"5278":4662,"5279":10992,"5280":12327,"5281":15072,"5282":10851,"5283":363,"5284":13315,"5285":4747,"5286":3891,"5287":7884,"5288":9767,"5289":1071,"5290":11203,"5291":1274,"5292":1147,"5293":2476,"5294":3669,"5295":4207,"5296":4923,"5297":1356,"5298":6426,"5299":2071,"5300":11139,"5301":849,"5302":5966,"5303":6395,"5304":11154,"5305":10102,"5306":5046,"5307":2752,"5308":2462,"5309":7611,"5310":1486,"5311":6706,"5312":1613,"5313":998,"5314":2723,"5315":11863,"5316":14957,"5317":12203,"5318":3081,"5319":14629,"5320":11809,"5321":7685,"5322":10992,"5323":7662,"5324":14633,"5325":9882,"5326":6286,"5327":11646,"5328":6738,"5329":13149,"5330":13651,"5331":4524,"5332":5135,"5333":10764,"5334":1591,"5335":3049,"5336":2684,"5337":10304,"5338":11415,"5339":4938,"5340":10013,"5341":4186,"5342":1058,"5343":11735,"5344":4519,"5345":11214,"5346":12697,"5347":7780,"5348":2959,"5349":5421,"5350":10661,"5351":1295,"5352":3139,"5353":12668,"5354":9897,"5355":9353,"5356":7462,"5357":6413,"5358":2463,"5359":10229,"5360":13988,"5361":2947,"5362":1686,"5363":7350,"5364":2540,"5365":10222,"5366":11944,"5367":7791,"5368":4531,"5369":13440,"5370":2268,"5371":9097,"5372":8809,"5373":11086,"5374":11132,"5375":4535,"5376":9310,"5377":1774,"5378":4076,"5379":11595,"5380":8176,"5381":6374,"5382":14244,"5383":11049,"5384":7725,"5385":1615,"5386":12450,"5387":101,"5388":7497,"5389":14131,"5390":329,"5391":11140,"5392":1421,"5393":1280,"5394":15131,"5395":1148,"5396":8034,"5397":4566,"5398":2274,"5399":14628,"5400":850,"5401":2904,"5402":11987,"5403":9547,"5404":6082,"5405":11685,"5406":10966,"5407":15035,"5408":7237,"5409":11855,"5410":3374,"5411":4892,"5412":8172,"5413":9126,"5414":12639,"5415":6890,"5416":9061,"5417":3746,"5418":1753,"5419":2459,"5420":12107,"5421":7762,"5422":4003,"5423":9460,"5424":1749,"5425":6395,"5426":4680,"5427":4052,"5428":13044,"5429":5068,"5430":8026,"5431":9684,"5432":1267,"5433":9653,"5434":10684,"5435":15071,"5436":8070,"5437":4772,"5438":10095,"5439":2339,"5440":12810,"5441":11741,"5442":13515,"5443":653,"5444":6537,"5445":11448,"5446":8318,"5447":8264,"5448":745,"5449":11396,"5450":11142,"5451":12405,"5452":9225,"5453":6643,"5454":10199,"5455":2874,"5456":12753,"5457":10914,"5458":305,"5459":4358,"5460":11693,"5461":3075,"5462":8730,"5463":7730,"5464":2949,"5465":3300,"5466":7578,"5467":2404,"5468":11875,"5469":3146,"5470":2414,"5471":7398,"5472":13082,"5473":14095,"5474":14067,"5475":6903,"5476":6932,"5477":6405,"5478":13092,"5479":10220,"5480":5498,"5481":1044,"5482":4781,"5483":3922,"5484":1357,"5485":1207,"5486":13629,"5487":13347,"5488":14910,"5489":6424,"5490":3754,"5491":1177,"5492":7841,"5493":9965,"5494":3627,"5495":11463,"5496":5510,"5497":8329,"5498":8820,"5499":14567,"5500":11480,"5501":5193,"5502":14686,"5503":6090,"5504":8512,"5505":10841,"5506":11199,"5507":60,"5508":8612,"5509":13454,"5510":9301,"5511":7350,"5512":4628,"5513":147,"5514":4273,"5515":6612,"5516":14607,"5517":11324,"5518":6109,"5519":8373,"5520":5591,"5521":6580,"5522":6102,"5523":7201,"5524":5929,"5525":1489,"5526":7623,"5527":7892,"5528":13471,"5529":4520,"5530":112,"5531":9171,"5532":3618,"5533":7165,"5534":7367,"5535":12558,"5536":12141,"5537":12336,"5538":9950,"5539":5766,"5540":7374,"5541":7927,"5542":11697,"5543":13638,"5544":2912,"5545":8467,"5546":4941,"5547":6560,"5548":5336,"5549":7313,"5550":10367,"5551":3006,"5552":4275,"5553":1228,"5554":7761,"5555":9083,"5556":3579,"5557":6223,"5558":14812,"5559":2096,"5560":4738,"5561":7031,"5562":2395,"5563":5915,"5564":10302,"5565":10264,"5566":1386,"5567":13729,"5568":3798,"5569":9834,"5570":4212,"5571":11993,"5572":146,"5573":2858,"5574":8800,"5575":10437,"5576":8087,"5577":13982,"5578":7098,"5579":4852,"5580":7055,"5581":5546,"5582":10706,"5583":12930,"5584":1147,"5585":12156,"5586":10521,"5587":2446,"5588":10580,"5589":13391,"5590":12613,"5591":7110,"5592":12457,"5593":1472,"5594":293,"5595":12419,"5596":13521,"5597":3350,"5598":3989,"5599":8861,"5600":13105,"5601":4946,"5602":10114,"5603":7955,"5604":12344,"5605":8242,"5606":3195,"5607":14547,"5608":10727,"5609":15138,"5610":13634,"5611":112,"5612":10547,"5613":4176,"5614":11967,"5615":11095,"5616":6351,"5617":8469,"5618":8485,"5619":9616,"5620":5465,"5621":12887,"5622":10706,"5623":5792,"5624":11569,"5625":13849,"5626":3584,"5627":4032,"5628":14802,"5629":7250,"5630":10914,"5631":9482,"5632":1618,"5633":4677,"5634":1978,"5635":103,"5636":7615,"5637":9927,"5638":4811,"5639":2388,"5640":7198,"5641":1131,"5642":13669,"5643":7957,"5644":9901,"5645":10005,"5646":15044,"5647":13250,"5648":3630,"5649":6269,"5650":12317,"5651":8119,"5652":8717,"5653":1314,"5654":2290,"5655":13114,"5656":21,"5657":9815,"5658":3892,"5659":15,"5660":5876,"5661":14814,"5662":14061,"5663":8355,"5664":4186,"5665":7385,"5666":5002,"5667":4311,"5668":2653,"5669":11402,"5670":14024,"5671":12931,"5672":4832,"5673":6346,"5674":12430,"5675":8496,"5676":7303,"5677":3090,"5678":5872,"5679":5296,"5680":13325,"5681":13250,"5682":12506,"5683":7422,"5684":3408,"5685":8160,"5686":10626,"5687":15012,"5688":10520,"5689":7149,"5690":5826,"5691":335,"5692":4674,"5693":15141,"5694":10706,"5695":10908,"5696":15033,"5697":8082,"5698":9672,"5699":9778,"5700":14523,"5701":6364,"5702":10876,"5703":14230,"5704":3632,"5705":12616,"5706":9427,"5707":5717,"5708":4883,"5709":12100,"5710":13594,"5711":4155,"5712":10236,"5713":13178,"5714":940,"5715":7281,"5716":12612,"5717":13953,"5718":1594,"5719":4590,"5720":12128,"5721":10017,"5722":158,"5723":2511,"5724":12247,"5725":5489,"5726":8020,"5727":12277,"5728":7339,"5729":8922,"5730":12950,"5731":2320,"5732":14585,"5733":10440,"5734":5043,"5735":9745,"5736":6251,"5737":10802,"5738":11188,"5739":1540,"5740":12087,"5741":1451,"5742":3672,"5743":6004,"5744":12931,"5745":11136,"5746":13048,"5747":3095,"5748":14148,"5749":14382,"5750":61,"5751":10371,"5752":6349,"5753":6,"5754":9497,"5755":9538,"5756":694,"5757":9343,"5758":1756,"5759":6519,"5760":3271,"5761":13681,"5762":8201,"5763":8698,"5764":12896,"5765":13645,"5766":340,"5767":7847,"5768":4867,"5769":354,"5770":9892,"5771":11148,"5772":3761,"5773":12144,"5774":3885,"5775":8785,"5776":9583,"5777":12317,"5778":724,"5779":7463,"5780":9613,"5781":14550,"5782":9784,"5783":2817,"5784":13106,"5785":170,"5786":7694,"5787":13173,"5788":4498,"5789":2228,"5790":4483,"5791":4916,"5792":6168,"5793":3551,"5794":10312,"5795":6015,"5796":3716,"5797":8420,"5798":9146,"5799":4223,"5800":13895,"5801":14482,"5802":12055,"5803":6875,"5804":2041,"5805":425,"5806":11735,"5807":3748,"5808":10462,"5809":3899,"5810":12778,"5811":14055,"5812":13585,"5813":12889,"5814":4500,"5815":3539,"5816":340,"5817":13456,"5818":10465,"5819":10562,"5820":2887,"5821":8049,"5822":4254,"5823":9378,"5824":8593,"5825":2104,"5826":10812,"5827":8668,"5828":3051,"5829":5661,"5830":13689,"5831":7870,"5832":3438,"5833":12920,"5834":12370,"5835":8425,"5836":6657,"5837":8833,"5838":355,"5839":6703,"5840":13031,"5841":9771,"5842":14265,"5843":6870,"5844":6499,"5845":9669,"5846":11126,"5847":4240,"5848":5090,"5849":7845,"5850":8370,"5851":9807,"5852":4254,"5853":11690,"5854":8941,"5855":13413,"5856":3507,"5857":7510,"5858":2225,"5859":14655,"5860":492,"5861":11233,"5862":4200,"5863":2705,"5864":11449,"5865":8784,"5866":13609,"5867":13268,"5868":10878,"5869":4780,"5870":11859,"5871":5482,"5872":2936,"5873":6210,"5874":693,"5875":3167,"5876":3759,"5877":10316,"5878":10355,"5879":10351,"5880":534,"5881":1619,"5882":13442,"5883":13515,"5884":5126,"5885":9293,"5886":7777,"5887":3854,"5888":2434,"5889":4702,"5890":15124,"5891":5999,"5892":776,"5893":13601,"5894":43,"5895":9234,"5896":8934,"5897":13182,"5898":9926,"5899":12151,"5900":9742,"5901":11912,"5902":2763,"5903":3764,"5904":10322,"5905":2676,"5906":7754,"5907":9885,"5908":3071,"5909":1921,"5910":6149,"5911":3386,"5912":333,"5913":4013,"5914":14024,"5915":10443,"5916":2511,"5917":1164,"5918":13475,"5919":6965,"5920":3612,"5921":14378,"5922":8923,"5923":2594,"5924":2667,"5925":7736,"5926":246,"5927":6466,"5928":14160,"5929":14663,"5930":10489,"5931":12840,"5932":640,"5933":10814,"5934":11511,"5935":272,"5936":7184,"5937":8851,"5938":11401,"5939":4707,"5940":859,"5941":4673,"5942":6031,"5943":12916,"5944":3807,"5945":403,"5946":4069,"5947":4199,"5948":5757,"5949":4766,"5950":14053,"5951":12364,"5952":6956,"5953":34,"5954":486,"5955":5498,"5956":14515,"5957":12972,"5958":3885,"5959":983,"5960":12416,"5961":14760,"5962":9561,"5963":7269,"5964":12916,"5965":12218,"5966":10303,"5967":11686,"5968":5932,"5969":11107,"5970":676,"5971":1603,"5972":903,"5973":5550,"5974":13954,"5975":7345,"5976":1376,"5977":13068,"5978":12179,"5979":7380,"5980":14803,"5981":9968,"5982":473,"5983":12586,"5984":5315,"5985":10330,"5986":11080,"5987":14990,"5988":13103,"5989":6827,"5990":9968,"5991":8120,"5992":671,"5993":6258,"5994":13494,"5995":12318,"5996":13842,"5997":10327,"5998":1615,"5999":3106,"6000":1404,"6001":7426,"6002":12210,"6003":13401,"6004":12885,"6005":6527,"6006":13286,"6007":112,"6008":7144,"6009":7767,"6010":8755,"6011":12030,"6012":7159,"6013":520,"6014":5169,"6015":6875,"6016":8884,"6017":3823,"6018":1142,"6019":12878,"6020":4444,"6021":12553,"6022":6085,"6023":13062,"6024":9008,"6025":4809,"6026":2942,"6027":7483,"6028":13718,"6029":648,"6030":9671,"6031":1892,"6032":2810,"6033":6321,"6034":8009,"6035":9390,"6036":4524,"6037":9866,"6038":10986,"6039":8382,"6040":8645,"6041":2099,"6042":4713,"6043":7934,"6044":10839,"6045":2712,"6046":8070,"6047":6176,"6048":6160,"6049":6578,"6050":4908,"6051":3927,"6052":14570,"6053":14072,"6054":14628,"6055":11538,"6056":12488,"6057":4744,"6058":8924,"6059":7291,"6060":3924,"6061":14618,"6062":3594,"6063":11925,"6064":14414,"6065":143,"6066":4656,"6067":5329,"6068":3236,"6069":10463,"6070":3729,"6071":8890,"6072":3809,"6073":5585,"6074":15014,"6075":12458,"6076":14718,"6077":1282,"6078":8913,"6079":11435,"6080":6659,"6081":9441,"6082":487,"6083":11990,"6084":15146,"6085":3864,"6086":13602,"6087":10857,"6088":5662,"6089":328,"6090":5932,"6091":52,"6092":2242,"6093":2953,"6094":13287,"6095":8697,"6096":13336,"6097":13003,"6098":5289,"6099":6612,"6100":7732,"6101":12381,"6102":8386,"6103":12001,"6104":5864,"6105":14831,"6106":413,"6107":6634,"6108":13459,"6109":4301,"6110":11674,"6111":3641,"6112":9896,"6113":8322,"6114":14199,"6115":8333,"6116":10160,"6117":5809,"6118":10688,"6119":1415,"6120":7992,"6121":13548,"6122":11575,"6123":1024,"6124":10244,"6125":956,"6126":11333,"6127":13412,"6128":10945,"6129":10939,"6130":9016,"6131":15134,"6132":8196,"6133":97,"6134":7476,"6135":4958,"6136":8804,"6137":12048,"6138":8187,"6139":4040,"6140":717,"6141":1501,"6142":14679,"6143":1591,"6144":14479,"6145":5773,"6146":13933,"6147":1133,"6148":13270,"6149":5122,"6150":3373,"6151":12833,"6152":8510,"6153":11622,"6154":2072,"6155":12656,"6156":4091,"6157":6302,"6158":6899,"6159":3111,"6160":4124,"6161":13019,"6162":1332,"6163":8185,"6164":7704,"6165":5780,"6166":8787,"6167":868,"6168":6972,"6169":30,"6170":2832,"6171":837,"6172":4285,"6173":9683,"6174":7212,"6175":12717,"6176":13870,"6177":11854,"6178":4679,"6179":10184,"6180":11160,"6181":3505,"6182":4602,"6183":8299,"6184":8582,"6185":10762,"6186":2936,"6187":8850,"6188":10071,"6189":3459,"6190":10639,"6191":8080,"6192":11415,"6193":1681,"6194":5784,"6195":5415,"6196":4058,"6197":9832,"6198":14240,"6199":5777,"6200":9320,"6201":14320,"6202":11220,"6203":2922,"6204":12594,"6205":6563,"6206":15037,"6207":10093,"6208":5156,"6209":14758,"6210":12010,"6211":11476,"6212":5967,"6213":9660,"6214":1317,"6215":4690,"6216":14825,"6217":3313,"6218":107,"6219":15114,"6220":2993,"6221":6467,"6222":2383,"6223":1669,"6224":386,"6225":1079,"6226":7526,"6227":12945,"6228":10203,"6229":688,"6230":10868,"6231":6536,"6232":8234,"6233":2616,"6234":10556,"6235":5610,"6236":5604,"6237":10349,"6238":10869,"6239":11127,"6240":9896,"6241":7926,"6242":9840,"6243":8959,"6244":13553,"6245":8546,"6246":94,"6247":357,"6248":14194,"6249":10632,"6250":7725,"6251":2028,"6252":3512,"6253":6359,"6254":13280,"6255":7381,"6256":2068,"6257":7654,"6258":1979,"6259":7310,"6260":6724,"6261":687,"6262":4632,"6263":7147,"6264":1702,"6265":9086,"6266":363,"6267":8018,"6268":5161,"6269":2753,"6270":7652,"6271":11729,"6272":11758,"6273":3415,"6274":15035,"6275":7869,"6276":11693,"6277":5927,"6278":4578,"6279":15058,"6280":6014,"6281":4205,"6282":8925,"6283":14748,"6284":476,"6285":6462,"6286":14375,"6287":13274,"6288":14299,"6289":7603,"6290":11834,"6291":12088,"6292":14312,"6293":8699,"6294":7227,"6295":9613,"6296":14280,"6297":2090,"6298":8509,"6299":14218,"6300":18,"6301":12813,"6302":11958,"6303":991,"6304":1029,"6305":9995,"6306":1806,"6307":8947,"6308":4492,"6309":7909,"6310":5804,"6311":10285,"6312":10319,"6313":2156,"6314":9564,"6315":6189,"6316":14153,"6317":2108,"6318":8511,"6319":1367,"6320":8435,"6321":11397,"6322":14252,"6323":14194,"6324":12987,"6325":7289,"6326":5235,"6327":6310,"6328":6532,"6329":8222,"6330":13098,"6331":13384,"6332":236,"6333":14966,"6334":6245,"6335":9231,"6336":1034,"6337":6574,"6338":13786,"6339":11473,"6340":13962,"6341":3382,"6342":1929,"6343":11136,"6344":809,"6345":12377,"6346":2367,"6347":9512,"6348":8116,"6349":12320,"6350":10011,"6351":14516,"6352":14892,"6353":13978,"6354":4344,"6355":11677,"6356":5454,"6357":3718,"6358":1440,"6359":14417,"6360":8879,"6361":10526,"6362":5787,"6363":10250,"6364":5948,"6365":10296,"6366":5780,"6367":7857,"6368":4063,"6369":5127,"6370":9659,"6371":11571,"6372":5825,"6373":10355,"6374":12917,"6375":2443,"6376":4881,"6377":11934,"6378":12794,"6379":9770,"6380":9197,"6381":8721,"6382":12507,"6383":2564,"6384":5006,"6385":5150,"6386":9342,"6387":842,"6388":501,"6389":2599,"6390":10597,"6391":10584,"6392":620,"6393":7670,"6394":8997,"6395":9829,"6396":517,"6397":10784,"6398":11849,"6399":5639,"6400":6434,"6401":14196,"6402":8740,"6403":13957,"6404":11673,"6405":6965,"6406":15102,"6407":4915,"6408":10039,"6409":6838,"6410":9713,"6411":12442,"6412":8258,"6413":14050,"6414":2878,"6415":5792,"6416":5326,"6417":10449,"6418":15102,"6419":12911,"6420":12430,"6421":13881,"6422":2519,"6423":9953,"6424":9132,"6425":13212,"6426":4844,"6427":11580,"6428":1478,"6429":3949,"6430":13225,"6431":4898,"6432":4403,"6433":10366,"6434":12694,"6435":6076,"6436":9879,"6437":7160,"6438":13191,"6439":13115,"6440":2173,"6441":12918,"6442":14383,"6443":4360,"6444":10380,"6445":12440,"6446":1282,"6447":3967,"6448":14664,"6449":5561,"6450":9188,"6451":306,"6452":3841,"6453":14876,"6454":5615,"6455":11733,"6456":10792,"6457":12467,"6458":4925,"6459":65,"6460":3875,"6461":1741,"6462":6610,"6463":2059,"6464":3971,"6465":10088,"6466":505,"6467":7209,"6468":33,"6469":11856,"6470":9076,"6471":12960,"6472":6711,"6473":1699,"6474":12016,"6475":11074,"6476":14020,"6477":1128,"6478":12714,"6479":8147,"6480":4400,"6481":5475,"6482":1545,"6483":3143,"6484":11820,"6485":6572,"6486":261,"6487":3555,"6488":1840,"6489":2353,"6490":9543,"6491":5045,"6492":12478,"6493":7662,"6494":9512,"6495":507,"6496":1276,"6497":5745,"6498":6944,"6499":3531,"6500":5777,"6501":3047,"6502":9205,"6503":7329,"6504":8294,"6505":4370,"6506":6418,"6507":4385,"6508":14821,"6509":3791,"6510":8330,"6511":2162,"6512":11498,"6513":3326,"6514":11004,"6515":3052,"6516":14555,"6517":7598,"6518":13368,"6519":2666,"6520":9340,"6521":6343,"6522":10090,"6523":4338,"6524":11960,"6525":1358,"6526":10971,"6527":2015,"6528":2090,"6529":10601,"6530":15055,"6531":6161,"6532":8501,"6533":12425,"6534":12272,"6535":386,"6536":5247,"6537":10953,"6538":10443,"6539":11840,"6540":219,"6541":3628,"6542":5573,"6543":979,"6544":13256,"6545":4873,"6546":178,"6547":12313,"6548":10976,"6549":11841,"6550":6647,"6551":10213,"6552":5746,"6553":3491,"6554":7579,"6555":14200,"6556":6928,"6557":10517,"6558":12482,"6559":10056,"6560":5444,"6561":7839,"6562":6092,"6563":3906,"6564":2587,"6565":9692,"6566":8343,"6567":2039,"6568":7813,"6569":9533,"6570":2401,"6571":9338,"6572":9076,"6573":8982,"6574":10664,"6575":13658,"6576":8036,"6577":14167,"6578":8683,"6579":9215,"6580":12293,"6581":9122,"6582":3745,"6583":14925,"6584":6992,"6585":10264,"6586":10044,"6587":5641,"6588":5258,"6589":7491,"6590":5217,"6591":14134,"6592":6662,"6593":6362,"6594":11887,"6595":5319,"6596":7804,"6597":6377,"6598":470,"6599":4748,"6600":5745,"6601":4913,"6602":11796,"6603":5384,"6604":8984,"6605":6195,"6606":1010,"6607":6032,"6608":310,"6609":283,"6610":14427,"6611":13654,"6612":14397,"6613":938,"6614":9541,"6615":8231,"6616":11021,"6617":5580,"6618":12025,"6619":11341,"6620":13535,"6621":8783,"6622":3417,"6623":4738,"6624":7426,"6625":73,"6626":6418,"6627":12341,"6628":5640,"6629":6909,"6630":178,"6631":3096,"6632":1158,"6633":2001,"6634":10397,"6635":57,"6636":8802,"6637":6590,"6638":1150,"6639":8145,"6640":10064,"6641":9956,"6642":2323,"6643":3403,"6644":12105,"6645":10475,"6646":3479,"6647":7595,"6648":4580,"6649":14124,"6650":12742,"6651":5729,"6652":820,"6653":6070,"6654":1780,"6655":7797,"6656":1302,"6657":13054,"6658":6679,"6659":296,"6660":12370,"6661":5962,"6662":4781,"6663":1275,"6664":10352,"6665":4932,"6666":7556,"6667":10342,"6668":2580,"6669":7264,"6670":9190,"6671":8947,"6672":6305,"6673":9055,"6674":9563,"6675":1302,"6676":1122,"6677":5410,"6678":1726,"6679":8845,"6680":239,"6681":11897,"6682":5775,"6683":4561,"6684":9124,"6685":9816,"6686":10757,"6687":4737,"6688":4361,"6689":7676,"6690":92,"6691":5506,"6692":7961,"6693":11379,"6694":8577,"6695":13899,"6696":5875,"6697":7095,"6698":5234,"6699":6908,"6700":10920,"6701":9969,"6702":13036,"6703":12386,"6704":15054,"6705":2569,"6706":2271,"6707":13121,"6708":2774,"6709":5760,"6710":312,"6711":6436,"6712":6818,"6713":2073,"6714":1799,"6715":3,"6716":10497,"6717":8446,"6718":14945,"6719":5302,"6720":9571,"6721":10826,"6722":10967,"6723":296,"6724":13005,"6725":6182,"6726":5894,"6727":1763,"6728":6738,"6729":7500,"6730":11141,"6731":3993,"6732":178,"6733":4100,"6734":14392,"6735":7004,"6736":12120,"6737":11839,"6738":14636,"6739":1625,"6740":7733,"6741":8301,"6742":13185,"6743":14751,"6744":2179,"6745":2993,"6746":8223,"6747":1365,"6748":1703,"6749":7109,"6750":10937,"6751":7489,"6752":12476,"6753":5890,"6754":573,"6755":12120,"6756":13358,"6757":9852,"6758":13540,"6759":3979,"6760":8988,"6761":9236,"6762":8306,"6763":4630,"6764":4006,"6765":4300,"6766":7849,"6767":5432,"6768":14457,"6769":13316,"6770":12332,"6771":3804,"6772":11886,"6773":14092,"6774":14747,"6775":7625,"6776":1715,"6777":12864,"6778":4157,"6779":1268,"6780":547,"6781":7067,"6782":1254,"6783":11871,"6784":4508,"6785":15130,"6786":1362,"6787":6319,"6788":149,"6789":14767,"6790":14492,"6791":5250,"6792":12487,"6793":6053,"6794":3661,"6795":2373,"6796":11459,"6797":10558,"6798":3335,"6799":10124,"6800":2509,"6801":7063,"6802":9056,"6803":10793,"6804":14652,"6805":12306,"6806":12288,"6807":2726,"6808":276,"6809":9582,"6810":3930,"6811":5934,"6812":12763,"6813":9303,"6814":2292,"6815":14215,"6816":6514,"6817":7056,"6818":5740,"6819":11627,"6820":13339,"6821":14265,"6822":947,"6823":10171,"6824":7663,"6825":12728,"6826":4494,"6827":1187,"6828":15108,"6829":1731,"6830":4841,"6831":2660,"6832":6278,"6833":9863,"6834":7064,"6835":10594,"6836":856,"6837":6958,"6838":2738,"6839":11113,"6840":2180,"6841":5415,"6842":2171,"6843":7795,"6844":11640,"6845":1336,"6846":3498,"6847":10694,"6848":9143,"6849":14565,"6850":14621,"6851":11020,"6852":12019,"6853":10568,"6854":7703,"6855":9417,"6856":14672,"6857":13144,"6858":6854,"6859":13463,"6860":7166,"6861":12246,"6862":371,"6863":9680,"6864":14473,"6865":11705,"6866":12749,"6867":11332,"6868":3371,"6869":9155,"6870":3352,"6871":12927,"6872":6761,"6873":14327,"6874":11995,"6875":3431,"6876":7047,"6877":11697,"6878":10617,"6879":5613,"6880":2998,"6881":8663,"6882":5098,"6883":4240,"6884":14643,"6885":13700,"6886":6381,"6887":9727,"6888":13371,"6889":8642,"6890":9844,"6891":11675,"6892":665,"6893":12486,"6894":50,"6895":2536,"6896":1166,"6897":11827,"6898":1318,"6899":10194,"6900":8739,"6901":8281,"6902":13781,"6903":11680,"6904":4757,"6905":12033,"6906":5514,"6907":6293,"6908":11556,"6909":14672,"6910":8251,"6911":4563,"6912":5789,"6913":6435,"6914":2247,"6915":987,"6916":7319,"6917":952,"6918":14369,"6919":14483,"6920":3079,"6921":5100,"6922":15004,"6923":13628,"6924":2197,"6925":9983,"6926":11074,"6927":10437,"6928":8996,"6929":2686,"6930":12400,"6931":892,"6932":7400,"6933":7520,"6934":9943,"6935":7754,"6936":9144,"6937":9753,"6938":4039,"6939":4092,"6940":8701,"6941":10338,"6942":10935,"6943":7848,"6944":12500,"6945":10766,"6946":716,"6947":6023,"6948":4436,"6949":5904,"6950":13082,"6951":10850,"6952":3508,"6953":5878,"6954":1898,"6955":7137,"6956":6859,"6957":906,"6958":14908,"6959":544,"6960":3985,"6961":8661,"6962":13779,"6963":10029,"6964":2776,"6965":254,"6966":14708,"6967":965,"6968":12647,"6969":6462,"6970":14675,"6971":8213,"6972":14065,"6973":9358,"6974":9116,"6975":2972,"6976":14488,"6977":10191,"6978":237,"6979":12682,"6980":2594,"6981":14536,"6982":4154,"6983":9432,"6984":6566,"6985":10191,"6986":9633,"6987":12757,"6988":13229,"6989":11682,"6990":4869,"6991":6034,"6992":2019,"6993":7406,"6994":3565,"6995":2526,"6996":11170,"6997":11614,"6998":9083,"6999":3829,"7000":7627,"7001":2580,"7002":14315,"7003":8965,"7004":10344,"7005":10712,"7006":1907,"7007":14246,"7008":7458,"7009":6287,"7010":3843,"7011":388,"7012":13193,"7013":8247,"7014":9751,"7015":10670,"7016":443,"7017":378,"7018":6469,"7019":12298,"7020":12724,"7021":1759,"7022":13973,"7023":1842,"7024":12960,"7025":8993,"7026":14165,"7027":11029,"7028":11757,"7029":3046,"7030":8348,"7031":3780,"7032":7922,"7033":956,"7034":10511,"7035":12606,"7036":5818,"7037":11763,"7038":5885,"7039":8046,"7040":4316,"7041":3870,"7042":8051,"7043":11872,"7044":13917,"7045":6150,"7046":11644,"7047":4589,"7048":740,"7049":14620,"7050":14467,"7051":2646,"7052":15103,"7053":4813,"7054":114,"7055":13218,"7056":9551,"7057":11866,"7058":7973,"7059":6,"7060":9087,"7061":10436,"7062":4520,"7063":11923,"7064":14920,"7065":1622,"7066":8605,"7067":14578,"7068":14582,"7069":5625,"7070":6,"7071":908,"7072":4989,"7073":12587,"7074":4532,"7075":926,"7076":2801,"7077":1949,"7078":3786,"7079":13192,"7080":6938,"7081":13376,"7082":1944,"7083":1938,"7084":11908,"7085":2908,"7086":1780,"7087":15073,"7088":6468,"7089":1733,"7090":13006,"7091":13804,"7092":677,"7093":12214,"7094":8297,"7095":2956,"7096":7618,"7097":6685,"7098":5775,"7099":909,"7100":2361,"7101":8714,"7102":2353,"7103":8071,"7104":7418,"7105":10812,"7106":8796,"7107":12013,"7108":11781,"7109":10589,"7110":3918,"7111":13701,"7112":10316,"7113":2089,"7114":1804,"7115":14657,"7116":6498,"7117":2425,"7118":3333,"7119":6061,"7120":4204,"7121":10259,"7122":7011,"7123":12834,"7124":12064,"7125":14699,"7126":10800,"7127":346,"7128":3411,"7129":11700,"7130":1187,"7131":3407,"7132":7371,"7133":6576,"7134":4310,"7135":13887,"7136":13967,"7137":6595,"7138":11100,"7139":317,"7140":3174,"7141":10554,"7142":9340,"7143":6891,"7144":13734,"7145":2938,"7146":1712,"7147":2215,"7148":14854,"7149":7689,"7150":5994,"7151":132,"7152":11352,"7153":393,"7154":12716,"7155":1658,"7156":13310,"7157":12429,"7158":13926,"7159":8948,"7160":890,"7161":5135,"7162":7530,"7163":12143,"7164":10068,"7165":11999,"7166":93,"7167":7387,"7168":3492,"7169":7160,"7170":7456,"7171":6510,"7172":9768,"7173":12776,"7174":2452,"7175":13619,"7176":9989,"7177":7478,"7178":1748,"7179":1146,"7180":12144,"7181":3448,"7182":864,"7183":7980,"7184":13753,"7185":1650,"7186":642,"7187":2674,"7188":6082,"7189":1808,"7190":11318,"7191":1525,"7192":15092,"7193":3535,"7194":12069,"7195":4666,"7196":8315,"7197":9091,"7198":14288,"7199":14241,"7200":5404,"7201":13346,"7202":12175,"7203":2318,"7204":3076,"7205":13476,"7206":11877,"7207":2013,"7208":12605,"7209":9231,"7210":208,"7211":7029,"7212":6421,"7213":3436,"7214":14479,"7215":3235,"7216":9993,"7217":2216,"7218":7116,"7219":7428,"7220":3050,"7221":14909,"7222":617,"7223":7242,"7224":14450,"7225":10006,"7226":1406,"7227":1081,"7228":15111,"7229":9520,"7230":13566,"7231":9967,"7232":5243,"7233":13188,"7234":14506,"7235":12477,"7236":1313,"7237":5711,"7238":9003,"7239":9705,"7240":11865,"7241":14093,"7242":755,"7243":7085,"7244":11318,"7245":1255,"7246":7520,"7247":1208,"7248":9605,"7249":2213,"7250":6843,"7251":959,"7252":11902,"7253":14180,"7254":622,"7255":8694,"7256":9355,"7257":2412,"7258":7290,"7259":1510,"7260":13183,"7261":12737,"7262":9311,"7263":3115,"7264":2478,"7265":7263,"7266":11037,"7267":9537,"7268":3178,"7269":14535,"7270":14146,"7271":3091,"7272":9228,"7273":10173,"7274":11455,"7275":5330,"7276":3526,"7277":7645,"7278":3892,"7279":687,"7280":1359,"7281":3996,"7282":6680,"7283":6710,"7284":8837,"7285":960,"7286":13930,"7287":8117,"7288":1953,"7289":6808,"7290":25,"7291":5441,"7292":4838,"7293":13781,"7294":2828,"7295":5762,"7296":12495,"7297":14684,"7298":11352,"7299":142,"7300":7462,"7301":10429,"7302":13295,"7303":12703,"7304":5382,"7305":9100,"7306":6186,"7307":9572,"7308":3839,"7309":1425,"7310":2880,"7311":1340,"7312":13587,"7313":1354,"7314":816,"7315":8886,"7316":3778,"7317":11367,"7318":860,"7319":11918,"7320":13626,"7321":8893,"7322":6711,"7323":12513,"7324":10124,"7325":12504,"7326":10447,"7327":8503,"7328":7775,"7329":9425,"7330":3230,"7331":2445,"7332":12553,"7333":8570,"7334":11339,"7335":2835,"7336":6578,"7337":19,"7338":5845,"7339":3655,"7340":10337,"7341":11381,"7342":14541,"7343":9806,"7344":4922,"7345":9746,"7346":9962,"7347":12164,"7348":3259,"7349":3482,"7350":8256,"7351":10140,"7352":8660,"7353":9935,"7354":7639,"7355":10749,"7356":5260,"7357":999,"7358":12199,"7359":13727,"7360":12600,"7361":3427,"7362":11476,"7363":7830,"7364":2472,"7365":577,"7366":4196,"7367":11330,"7368":5753,"7369":1687,"7370":13349,"7371":12562,"7372":14975,"7373":558,"7374":13477,"7375":6812,"7376":752,"7377":9033,"7378":14685,"7379":11560,"7380":10435,"7381":3465,"7382":14370,"7383":11850,"7384":14465,"7385":5550,"7386":11822,"7387":6927,"7388":7490,"7389":6828,"7390":9266,"7391":6572,"7392":811,"7393":10567,"7394":5069,"7395":10864,"7396":9268,"7397":10871,"7398":4048,"7399":12018,"7400":13493,"7401":12022,"7402":590,"7403":11638,"7404":7866,"7405":13533,"7406":11057,"7407":200,"7408":917,"7409":8647,"7410":13440,"7411":2995,"7412":3811,"7413":2134,"7414":2174,"7415":8402,"7416":6038,"7417":12844,"7418":10728,"7419":5810,"7420":4945,"7421":7979,"7422":3952,"7423":6011,"7424":6140,"7425":6755,"7426":2343,"7427":12342,"7428":10694,"7429":4780,"7430":7770,"7431":7317,"7432":2704,"7433":9825,"7434":11932,"7435":3639,"7436":6055,"7437":2084,"7438":12481,"7439":4414,"7440":7802,"7441":9357,"7442":1523,"7443":3795,"7444":7043,"7445":788,"7446":4899,"7447":10601,"7448":5948,"7449":13008,"7450":52,"7451":14962,"7452":8097,"7453":4756,"7454":10311,"7455":7627,"7456":14682,"7457":4195,"7458":3268,"7459":12928,"7460":96,"7461":15135,"7462":116,"7463":12936,"7464":10096,"7465":11480,"7466":14138,"7467":2792,"7468":13469,"7469":9051,"7470":128,"7471":6629,"7472":14860,"7473":8743,"7474":9033,"7475":10011,"7476":501,"7477":12107,"7478":1836,"7479":14549,"7480":4754,"7481":5075,"7482":1383,"7483":13136,"7484":4350,"7485":5544,"7486":13123,"7487":3436,"7488":6089,"7489":4470,"7490":1394,"7491":14545,"7492":13713,"7493":5038,"7494":3306,"7495":2320,"7496":4741,"7497":6174,"7498":695,"7499":11501,"7500":12255,"7501":487,"7502":15034,"7503":2756,"7504":7852,"7505":11918,"7506":7327,"7507":4300,"7508":5971,"7509":12888,"7510":13474,"7511":14584,"7512":7394,"7513":3968,"7514":11553,"7515":176,"7516":11280,"7517":9560,"7518":13341,"7519":10761,"7520":3695,"7521":12989,"7522":12457,"7523":14866,"7524":27,"7525":8918,"7526":7021,"7527":7155,"7528":8628,"7529":2416,"7530":12180,"7531":4768,"7532":7338,"7533":1499,"7534":11204,"7535":8927,"7536":6213,"7537":8686,"7538":11385,"7539":6211,"7540":15038,"7541":2479,"7542":3099,"7543":7920,"7544":1502,"7545":6741,"7546":11789,"7547":4193,"7548":6869,"7549":13950,"7550":8777,"7551":3877,"7552":6717,"7553":3798,"7554":4617,"7555":8294,"7556":1624,"7557":12517,"7558":2448,"7559":3522,"7560":14476,"7561":8346,"7562":1621,"7563":11748,"7564":8493,"7565":235,"7566":5642,"7567":119,"7568":4194,"7569":10483,"7570":4531,"7571":7780,"7572":11048,"7573":3015,"7574":913,"7575":13491,"7576":11788,"7577":14335,"7578":3257,"7579":506,"7580":6945,"7581":9344,"7582":4575,"7583":14022,"7584":12244,"7585":12408,"7586":2182,"7587":9085,"7588":4359,"7589":6573,"7590":10606,"7591":13134,"7592":13630,"7593":14409,"7594":772,"7595":14090,"7596":13650,"7597":10466,"7598":1377,"7599":11731,"7600":11211,"7601":8574,"7602":4791,"7603":4681,"7604":10821,"7605":819,"7606":1079,"7607":2303,"7608":6214,"7609":5090,"7610":14364,"7611":9313,"7612":5158,"7613":15035,"7614":5194,"7615":10299,"7616":11872,"7617":5939,"7618":352,"7619":10292,"7620":4661,"7621":2276,"7622":12280,"7623":1544,"7624":9540,"7625":8557,"7626":1068,"7627":1293,"7628":1166,"7629":5948,"7630":11521,"7631":8074,"7632":12518,"7633":10043,"7634":3231,"7635":18,"7636":2787,"7637":13765,"7638":11603,"7639":9135,"7640":11334,"7641":14289,"7642":8544,"7643":11574,"7644":2653,"7645":1288,"7646":9837,"7647":11226,"7648":330,"7649":8319,"7650":13872,"7651":4855,"7652":14388,"7653":5133,"7654":9146,"7655":8883,"7656":2529,"7657":3357,"7658":6289,"7659":6475,"7660":1758,"7661":1702,"7662":10809,"7663":10599,"7664":3997,"7665":12625,"7666":13540,"7667":4826,"7668":11103,"7669":11949,"7670":4979,"7671":8370,"7672":12924,"7673":7176,"7674":12990,"7675":356,"7676":8743,"7677":14575,"7678":2439,"7679":5226,"7680":6024,"7681":2450,"7682":15073,"7683":4646,"7684":2080,"7685":2847,"7686":4661,"7687":10328,"7688":10258,"7689":1216,"7690":478,"7691":9825,"7692":11695,"7693":7806,"7694":12869,"7695":10944,"7696":13626,"7697":7048,"7698":839,"7699":10950,"7700":9423,"7701":1990,"7702":7723,"7703":1411,"7704":12126,"7705":7110,"7706":2274,"7707":11164,"7708":3513,"7709":7993,"7710":1109,"7711":12771,"7712":6020,"7713":13545,"7714":9500,"7715":9906,"7716":14837,"7717":11296,"7718":7502,"7719":1043,"7720":1509,"7721":13951,"7722":6060,"7723":8899,"7724":14998,"7725":11748,"7726":10890,"7727":13384,"7728":5477,"7729":14811,"7730":13318,"7731":506,"7732":10595,"7733":12809,"7734":10323,"7735":7736,"7736":1854,"7737":8676,"7738":9157,"7739":7960,"7740":10095,"7741":10774,"7742":5859,"7743":1686,"7744":872,"7745":10062,"7746":14194,"7747":9364,"7748":4387,"7749":7391,"7750":2688,"7751":7640,"7752":14589,"7753":11700,"7754":13160,"7755":4034,"7756":878,"7757":3925,"7758":11982,"7759":6016,"7760":6759,"7761":8387,"7762":7477,"7763":1439,"7764":9827,"7765":2788,"7766":1552,"7767":2652,"7768":1317,"7769":8088,"7770":11380,"7771":8164,"7772":3111,"7773":10134,"7774":13724,"7775":12322,"7776":1324,"7777":10226,"7778":3368,"7779":1474,"7780":3626,"7781":11507,"7782":10876,"7783":12502,"7784":43,"7785":5521,"7786":670,"7787":5209,"7788":11910,"7789":15103,"7790":6153,"7791":5176,"7792":3575,"7793":12518,"7794":13267,"7795":8158,"7796":10934,"7797":5638,"7798":12995,"7799":11169,"7800":6758,"7801":4330,"7802":2456,"7803":2823,"7804":8695,"7805":11014,"7806":14501,"7807":1668,"7808":8086,"7809":8336,"7810":5855,"7811":5526,"7812":13137,"7813":3654,"7814":14947,"7815":11970,"7816":7707,"7817":5363,"7818":5007,"7819":3891,"7820":5886,"7821":9638,"7822":12785,"7823":13678,"7824":14868,"7825":7604,"7826":236,"7827":767,"7828":187,"7829":11235,"7830":5228,"7831":9678,"7832":10025,"7833":2941,"7834":1834,"7835":8802,"7836":10359,"7837":10647,"7838":10293,"7839":6335,"7840":2867,"7841":14755,"7842":14450,"7843":11973,"7844":3431,"7845":8958,"7846":13768,"7847":3565,"7848":340,"7849":1326,"7850":7705,"7851":3088,"7852":573,"7853":8598,"7854":7275,"7855":15003,"7856":4514,"7857":10999,"7858":3983,"7859":12556,"7860":12717,"7861":7164,"7862":5992,"7863":5598,"7864":7925,"7865":11232,"7866":2396,"7867":12641,"7868":6868,"7869":10416,"7870":5814,"7871":14115,"7872":4577,"7873":13011,"7874":9165,"7875":6609,"7876":11938,"7877":13935,"7878":4842,"7879":3337,"7880":7276,"7881":9241,"7882":1070,"7883":11179,"7884":5312,"7885":15071,"7886":13856,"7887":7189,"7888":1506,"7889":9414,"7890":12306,"7891":3036,"7892":226,"7893":6087,"7894":3869,"7895":12512,"7896":13755,"7897":6500,"7898":9591,"7899":105,"7900":7638,"7901":4734,"7902":8586,"7903":14554,"7904":14517,"7905":6475,"7906":13110,"7907":6260,"7908":6661,"7909":730,"7910":1166,"7911":560,"7912":11929,"7913":3891,"7914":11121,"7915":13978,"7916":873,"7917":1706,"7918":11920,"7919":9976,"7920":9425,"7921":327,"7922":10037,"7923":3901,"7924":12649,"7925":13681,"7926":6669,"7927":12498,"7928":14762,"7929":10366,"7930":187,"7931":12795,"7932":4563,"7933":14203,"7934":4800,"7935":2049,"7936":10675,"7937":7711,"7938":11516,"7939":2096,"7940":2629,"7941":11400,"7942":5952,"7943":6011,"7944":13983,"7945":6522,"7946":13327,"7947":10061,"7948":14472,"7949":10432,"7950":11011,"7951":4258,"7952":13730,"7953":2284,"7954":6484,"7955":6753,"7956":14750,"7957":10776,"7958":1187,"7959":14365,"7960":7940,"7961":8874,"7962":12103,"7963":7767,"7964":859,"7965":8258,"7966":5923,"7967":9710,"7968":11104,"7969":10673,"7970":3146,"7971":13963,"7972":7479,"7973":12355,"7974":14612,"7975":12572,"7976":15062,"7977":10254,"7978":14102,"7979":8596,"7980":7260,"7981":6574,"7982":10206,"7983":9011,"7984":8960,"7985":3723,"7986":13184,"7987":2178,"7988":4111,"7989":13238,"7990":248,"7991":7318,"7992":12412,"7993":8865,"7994":4340,"7995":9160,"7996":1720,"7997":12436,"7998":10080,"7999":9271,"8000":10472,"8001":11218,"8002":9635,"8003":10225,"8004":4244,"8005":14654,"8006":14769,"8007":10222,"8008":6496,"8009":4255,"8010":13,"8011":4786,"8012":4599,"8013":2553,"8014":8375,"8015":13403,"8016":6077,"8017":1371,"8018":1952,"8019":12177,"8020":2712,"8021":5501,"8022":9848,"8023":771,"8024":7155,"8025":8667,"8026":11744,"8027":11845,"8028":14283,"8029":3242,"8030":13576,"8031":7735,"8032":8302,"8033":13347,"8034":1188,"8035":5175,"8036":11983,"8037":3253,"8038":1927,"8039":5606,"8040":1270,"8041":4009,"8042":9458,"8043":9194,"8044":12482,"8045":6227,"8046":8258,"8047":12122,"8048":13915,"8049":2194,"8050":1784,"8051":334,"8052":8522,"8053":5422,"8054":7056,"8055":4740,"8056":12745,"8057":12039,"8058":9012,"8059":3108,"8060":11414,"8061":2893,"8062":8516,"8063":4397,"8064":10058,"8065":2700,"8066":6426,"8067":2138,"8068":8328,"8069":5386,"8070":5461,"8071":3186,"8072":8732,"8073":10018,"8074":14084,"8075":5880,"8076":8276,"8077":4475,"8078":4209,"8079":5908,"8080":3277,"8081":8006,"8082":11058,"8083":9875,"8084":621,"8085":5549,"8086":3297,"8087":6707,"8088":6181,"8089":8710,"8090":4118,"8091":4441,"8092":13391,"8093":14195,"8094":7859,"8095":1740,"8096":3982,"8097":556,"8098":12231,"8099":2547,"8100":5553,"8101":771,"8102":6396,"8103":15046,"8104":7178,"8105":6678,"8106":8809,"8107":11200,"8108":12289,"8109":12449,"8110":8104,"8111":4070,"8112":12788,"8113":6716,"8114":251,"8115":8697,"8116":15018,"8117":11875,"8118":13660,"8119":7046,"8120":2306,"8121":9418,"8122":14384,"8123":13252,"8124":8126,"8125":7353,"8126":11837,"8127":15025,"8128":7013,"8129":2181,"8130":6627,"8131":5727,"8132":8937,"8133":14133,"8134":7635,"8135":7929,"8136":2079,"8137":5730,"8138":805,"8139":11251,"8140":3642,"8141":1422,"8142":5420,"8143":6655,"8144":12031,"8145":12300,"8146":13750,"8147":9443,"8148":6521,"8149":3087,"8150":3322,"8151":242,"8152":4061,"8153":6258,"8154":254,"8155":14008,"8156":8616,"8157":12278,"8158":6061,"8159":2017,"8160":10481,"8161":4779,"8162":11712,"8163":9573,"8164":10691,"8165":2364,"8166":1195,"8167":10808,"8168":10446,"8169":14508,"8170":8859,"8171":13790,"8172":9272,"8173":281,"8174":1139,"8175":10608,"8176":13017,"8177":4289,"8178":12547,"8179":2034,"8180":1207,"8181":6941,"8182":3396,"8183":9839,"8184":7087,"8185":11222,"8186":2712,"8187":3057,"8188":8486,"8189":1059,"8190":7026,"8191":14247,"8192":13650,"8193":10484,"8194":8740,"8195":10051,"8196":11112,"8197":10112,"8198":7356,"8199":4525,"8200":14062,"8201":8332,"8202":4008,"8203":798,"8204":10487,"8205":2590,"8206":4879,"8207":14727,"8208":699,"8209":531,"8210":11007,"8211":2695,"8212":11909,"8213":5214,"8214":1206,"8215":5693,"8216":10455,"8217":10508,"8218":8228,"8219":8881,"8220":249,"8221":14207,"8222":9430,"8223":10678,"8224":6254,"8225":14995,"8226":8248,"8227":8469,"8228":14735,"8229":10425,"8230":6827,"8231":7975,"8232":14632,"8233":3093,"8234":143,"8235":9653,"8236":14714,"8237":9264,"8238":4037,"8239":8397,"8240":14891,"8241":11765,"8242":295,"8243":4674,"8244":4135,"8245":7999,"8246":6120,"8247":5041,"8248":1873,"8249":1330,"8250":12081,"8251":3150,"8252":7901,"8253":14139,"8254":7630,"8255":11036,"8256":11577,"8257":8718,"8258":8166,"8259":1478,"8260":9931,"8261":4750,"8262":128,"8263":12721,"8264":115,"8265":13059,"8266":11055,"8267":2534,"8268":11111,"8269":1706,"8270":3857,"8271":7936,"8272":10507,"8273":11419,"8274":9731,"8275":8872,"8276":6372,"8277":9690,"8278":10990,"8279":10189,"8280":2394,"8281":9204,"8282":9611,"8283":15068,"8284":8466,"8285":10769,"8286":13300,"8287":10446,"8288":6142,"8289":7142,"8290":639,"8291":1497,"8292":12967,"8293":12227,"8294":4297,"8295":4186,"8296":12968,"8297":3600,"8298":14437,"8299":8898,"8300":9583,"8301":14702,"8302":12892,"8303":11764,"8304":5613,"8305":2057,"8306":8282,"8307":2756,"8308":13600,"8309":2957,"8310":13611,"8311":95,"8312":7832,"8313":8898,"8314":2917,"8315":14458,"8316":1649,"8317":9777,"8318":10837,"8319":7862,"8320":3700,"8321":12516,"8322":11792,"8323":12695,"8324":5563,"8325":5137,"8326":3990,"8327":13977,"8328":12064,"8329":3993,"8330":6448,"8331":572,"8332":3662,"8333":14257,"8334":9561,"8335":10681,"8336":13900,"8337":7220,"8338":5864,"8339":616,"8340":1969,"8341":6434,"8342":13597,"8343":1880,"8344":2990,"8345":8083,"8346":8321,"8347":1688,"8348":5482,"8349":9254,"8350":13175,"8351":3042,"8352":6481,"8353":2729,"8354":5314,"8355":10004,"8356":4805,"8357":13372,"8358":3325,"8359":4816,"8360":9206,"8361":5166,"8362":14785,"8363":7255,"8364":14016,"8365":8390,"8366":5224,"8367":10181,"8368":13146,"8369":5692,"8370":13177,"8371":5658,"8372":5339,"8373":8787,"8374":13985,"8375":10224,"8376":6974,"8377":3650,"8378":13015,"8379":7067,"8380":4503,"8381":5202,"8382":7670,"8383":7607,"8384":4531,"8385":7631,"8386":3661,"8387":15047,"8388":2754,"8389":2756,"8390":12474,"8391":13989,"8392":11368,"8393":7155,"8394":13800,"8395":9363,"8396":12441,"8397":14395,"8398":3742,"8399":9561,"8400":10636,"8401":1598,"8402":1810,"8403":10109,"8404":12755,"8405":3270,"8406":394,"8407":11799,"8408":8817,"8409":4781,"8410":2804,"8411":14860,"8412":14406,"8413":1005,"8414":2478,"8415":3528,"8416":4130,"8417":7275,"8418":14605,"8419":464,"8420":9162,"8421":1432,"8422":9511,"8423":9939,"8424":12792,"8425":4124,"8426":7869,"8427":6832,"8428":13056,"8429":14201,"8430":13199,"8431":12036,"8432":729,"8433":507,"8434":4326,"8435":11741,"8436":7681,"8437":8418,"8438":2796,"8439":14356,"8440":7774,"8441":3978,"8442":7398,"8443":8717,"8444":11357,"8445":4906,"8446":5404,"8447":3123,"8448":12804,"8449":8913,"8450":11564,"8451":4266,"8452":5763,"8453":2544,"8454":6600,"8455":9316,"8456":4027,"8457":11409,"8458":13563,"8459":3117,"8460":3674,"8461":10422,"8462":10983,"8463":2472,"8464":11657,"8465":10420,"8466":3440,"8467":710,"8468":9926,"8469":372,"8470":4177,"8471":2918,"8472":11684,"8473":11999,"8474":7603,"8475":5017,"8476":9646,"8477":4307,"8478":4491,"8479":11941,"8480":3315,"8481":9070,"8482":9794,"8483":10607,"8484":14528,"8485":5625,"8486":14985,"8487":5043,"8488":8906,"8489":802,"8490":7736,"8491":11210,"8492":4387,"8493":6167,"8494":4618,"8495":6275,"8496":2152,"8497":5083,"8498":14961,"8499":3943,"8500":10335,"8501":9175,"8502":3141,"8503":9421,"8504":4710,"8505":10263,"8506":13030,"8507":5203,"8508":2358,"8509":7340,"8510":13038,"8511":496,"8512":13200,"8513":4741,"8514":4101,"8515":3471,"8516":2422,"8517":9154,"8518":7231,"8519":1309,"8520":291,"8521":5896,"8522":12354,"8523":9687,"8524":7446,"8525":7681,"8526":8034,"8527":11167,"8528":376,"8529":5553,"8530":12802,"8531":10885,"8532":6365,"8533":11733,"8534":13737,"8535":3232,"8536":4220,"8537":2816,"8538":4593,"8539":411,"8540":4722,"8541":1564,"8542":2827,"8543":2318,"8544":10452,"8545":14212,"8546":5109,"8547":1662,"8548":673,"8549":1349,"8550":3359,"8551":13053,"8552":7112,"8553":3862,"8554":6820,"8555":6491,"8556":4248,"8557":842,"8558":9124,"8559":9158,"8560":5460,"8561":6408,"8562":14568,"8563":1003,"8564":7261,"8565":14799,"8566":9526,"8567":12953,"8568":12790,"8569":7257,"8570":3629,"8571":9368,"8572":9161,"8573":15002,"8574":4087,"8575":7303,"8576":14471,"8577":3552,"8578":6672,"8579":583,"8580":5646,"8581":1696,"8582":12973,"8583":3687,"8584":9547,"8585":2248,"8586":13415,"8587":5770,"8588":14851,"8589":12584,"8590":799,"8591":2510,"8592":13059,"8593":10715,"8594":112,"8595":10396,"8596":13579,"8597":1725,"8598":1058,"8599":11306,"8600":5753,"8601":5205,"8602":14099,"8603":8522,"8604":12168,"8605":7440,"8606":9829,"8607":3052,"8608":11648,"8609":3546,"8610":7090,"8611":11408,"8612":2524,"8613":11677,"8614":13200,"8615":8805,"8616":13711,"8617":7851,"8618":2350,"8619":3964,"8620":983,"8621":3117,"8622":12029,"8623":13284,"8624":9501,"8625":5585,"8626":5858,"8627":14344,"8628":9874,"8629":4884,"8630":12434,"8631":13089,"8632":6869,"8633":1593,"8634":6170,"8635":5732,"8636":11203,"8637":14652,"8638":1085,"8639":11894,"8640":9005,"8641":10340,"8642":3901,"8643":8291,"8644":650,"8645":5306,"8646":1905,"8647":10820,"8648":12660,"8649":7548,"8650":5271,"8651":11291,"8652":4727,"8653":10797,"8654":14586,"8655":14386,"8656":8796,"8657":6731,"8658":4975,"8659":7353,"8660":12014,"8661":12905,"8662":11087,"8663":14391,"8664":2720,"8665":9693,"8666":12578,"8667":1924,"8668":7594,"8669":7556,"8670":9626,"8671":5837,"8672":6688,"8673":14719,"8674":13188,"8675":1319,"8676":7983,"8677":13544,"8678":7269,"8679":6048,"8680":8128,"8681":6260,"8682":13889,"8683":4036,"8684":14863,"8685":13626,"8686":10748,"8687":3484,"8688":11167,"8689":14015,"8690":15069,"8691":3387,"8692":5211,"8693":11770,"8694":6669,"8695":10039,"8696":14993,"8697":10910,"8698":12552,"8699":7316,"8700":12548,"8701":2196,"8702":292,"8703":8695,"8704":299,"8705":3867,"8706":628,"8707":7114,"8708":5512,"8709":10600,"8710":2776,"8711":12761,"8712":13635,"8713":567,"8714":3933,"8715":7003,"8716":10438,"8717":1256,"8718":8139,"8719":855,"8720":10559,"8721":3240,"8722":5187,"8723":13071,"8724":10047,"8725":8902,"8726":4784,"8727":12978,"8728":7200,"8729":6650,"8730":2931,"8731":2302,"8732":10926,"8733":3577,"8734":4330,"8735":5145,"8736":2652,"8737":2506,"8738":8024,"8739":3165,"8740":10877,"8741":13786,"8742":14543,"8743":7858,"8744":9396,"8745":3911,"8746":14320,"8747":8335,"8748":11084,"8749":13652,"8750":5350,"8751":14287,"8752":10163,"8753":14365,"8754":4197,"8755":11751,"8756":12257,"8757":6949,"8758":5344,"8759":7354,"8760":13041,"8761":4445,"8762":12105,"8763":5833,"8764":1497,"8765":5313,"8766":968,"8767":14294,"8768":12027,"8769":3508,"8770":1092,"8771":11541,"8772":7446,"8773":9475,"8774":12715,"8775":3383,"8776":5386,"8777":908,"8778":7988,"8779":10979,"8780":7846,"8781":3350,"8782":7816,"8783":7528,"8784":2750,"8785":6818,"8786":2937,"8787":8088,"8788":883,"8789":5496,"8790":5512,"8791":1701,"8792":1354,"8793":7539,"8794":5762,"8795":11988,"8796":5887,"8797":11190,"8798":10550,"8799":2965,"8800":9825,"8801":13127,"8802":6087,"8803":14040,"8804":8551,"8805":13765,"8806":11890,"8807":10325,"8808":11762,"8809":5,"8810":7173,"8811":10275,"8812":3074,"8813":14689,"8814":1102,"8815":8496,"8816":1801,"8817":2636,"8818":1611,"8819":5803,"8820":10879,"8821":10393,"8822":8484,"8823":7114,"8824":2817,"8825":14382,"8826":14020,"8827":1884,"8828":2646,"8829":3869,"8830":5795,"8831":10020,"8832":9305,"8833":4583,"8834":1913,"8835":1420,"8836":5332,"8837":10982,"8838":10399,"8839":5223,"8840":10509,"8841":12738,"8842":3965,"8843":7310,"8844":14047,"8845":7248,"8846":14888,"8847":11251,"8848":11421,"8849":6597,"8850":4125,"8851":14720,"8852":8899,"8853":1042,"8854":9401,"8855":735,"8856":2753,"8857":786,"8858":12941,"8859":8548,"8860":6093,"8861":9029,"8862":4789,"8863":2604,"8864":2618,"8865":12126,"8866":9471,"8867":14277,"8868":6182,"8869":8401,"8870":269,"8871":8719,"8872":13447,"8873":1460,"8874":1523,"8875":4885,"8876":12271,"8877":7533,"8878":946,"8879":14943,"8880":13237,"8881":4835,"8882":1589,"8883":8092,"8884":13464,"8885":8969,"8886":4919,"8887":12037,"8888":11610,"8889":4895,"8890":5528,"8891":4120,"8892":6467,"8893":2684,"8894":1935,"8895":12651,"8896":2500,"8897":4400,"8898":4899,"8899":13602,"8900":8397,"8901":6183,"8902":5632,"8903":11007,"8904":8764,"8905":13504,"8906":3261,"8907":1907,"8908":12010,"8909":5449,"8910":3860,"8911":5947,"8912":4998,"8913":1648,"8914":4027,"8915":13135,"8916":10988,"8917":7531,"8918":9311,"8919":14591,"8920":13128,"8921":12563,"8922":6425,"8923":14075,"8924":6090,"8925":2788,"8926":13486,"8927":12426,"8928":10898,"8929":48,"8930":8988,"8931":9237,"8932":3632,"8933":253,"8934":4406,"8935":12470,"8936":7502,"8937":14188,"8938":12519,"8939":10999,"8940":6814,"8941":5175,"8942":2643,"8943":12218,"8944":5020,"8945":8422,"8946":7632,"8947":10424,"8948":3986,"8949":12641,"8950":14581,"8951":3918,"8952":6356,"8953":12549,"8954":930,"8955":14790,"8956":1041,"8957":11345,"8958":7878,"8959":8678,"8960":13350,"8961":14833,"8962":12274,"8963":8083,"8964":11102,"8965":4180,"8966":4258,"8967":15094,"8968":11097,"8969":10329,"8970":5006,"8971":13581,"8972":6525,"8973":1137,"8974":7923,"8975":10128,"8976":4297,"8977":8348,"8978":7062,"8979":8060,"8980":9287,"8981":2956,"8982":8955,"8983":341,"8984":374,"8985":8819,"8986":1979,"8987":14383,"8988":1667,"8989":2609,"8990":4773,"8991":6822,"8992":11737,"8993":5715,"8994":189,"8995":2870,"8996":7483,"8997":9366,"8998":13929,"8999":12576,"9000":12459,"9001":7543,"9002":2002,"9003":15098,"9004":5762,"9005":9671,"9006":5121,"9007":3835,"9008":9143,"9009":4649,"9010":97,"9011":3778,"9012":3313,"9013":4402,"9014":1086,"9015":234,"9016":12087,"9017":409,"9018":2834,"9019":13654,"9020":6871,"9021":4071,"9022":12396,"9023":4738,"9024":5767,"9025":11674,"9026":13085,"9027":11164,"9028":5843,"9029":8239,"9030":15140,"9031":5814,"9032":5663,"9033":13837,"9034":11849,"9035":2601,"9036":3271,"9037":12849,"9038":10160,"9039":10146,"9040":3219,"9041":11395,"9042":6593,"9043":13939,"9044":4107,"9045":1798,"9046":5646,"9047":1699,"9048":1661,"9049":14138,"9050":14979,"9051":8082,"9052":9315,"9053":12592,"9054":4909,"9055":6877,"9056":8236,"9057":13453,"9058":7965,"9059":407,"9060":11906,"9061":15016,"9062":11257,"9063":1961,"9064":3845,"9065":5360,"9066":11025,"9067":14214,"9068":757,"9069":9049,"9070":2007,"9071":9400,"9072":14970,"9073":5783,"9074":8955,"9075":2946,"9076":13749,"9077":8227,"9078":8474,"9079":10748,"9080":7546,"9081":6108,"9082":4996,"9083":4567,"9084":10099,"9085":12780,"9086":4715,"9087":6149,"9088":9983,"9089":10621,"9090":10052,"9091":13437,"9092":1634,"9093":14607,"9094":7105,"9095":2849,"9096":2281,"9097":11558,"9098":9074,"9099":4269,"9100":5156,"9101":8656,"9102":183,"9103":423,"9104":1638,"9105":3157,"9106":1232,"9107":2416,"9108":7819,"9109":9579,"9110":10226,"9111":6035,"9112":3613,"9113":6548,"9114":7485,"9115":5820,"9116":13647,"9117":2435,"9118":9259,"9119":6750,"9120":12417,"9121":835,"9122":7055,"9123":10781,"9124":531,"9125":5535,"9126":5061,"9127":13480,"9128":7592,"9129":8897,"9130":14077,"9131":4640,"9132":9397,"9133":6722,"9134":4742,"9135":2618,"9136":14828,"9137":14053,"9138":1650,"9139":12122,"9140":14868,"9141":11113,"9142":14556,"9143":10869,"9144":12915,"9145":160,"9146":13320,"9147":11938,"9148":3003,"9149":4394,"9150":1355,"9151":4592,"9152":4700,"9153":2210,"9154":5125,"9155":12569,"9156":8450,"9157":8871,"9158":6540,"9159":12100,"9160":9056,"9161":13975,"9162":12878,"9163":11866,"9164":15106,"9165":7946,"9166":11941,"9167":4795,"9168":14716,"9169":12100,"9170":2833,"9171":5089,"9172":4717,"9173":12153,"9174":4732,"9175":3023,"9176":10817,"9177":8887,"9178":8604,"9179":343,"9180":5939,"9181":1421,"9182":12406,"9183":10291,"9184":7470,"9185":1504,"9186":10798,"9187":2299,"9188":6308,"9189":7545,"9190":7638,"9191":6676,"9192":7339,"9193":6951,"9194":2330,"9195":8643,"9196":13515,"9197":5979,"9198":7778,"9199":9980,"9200":11711,"9201":14887,"9202":10448,"9203":7809,"9204":2958,"9205":6691,"9206":10455,"9207":1481,"9208":5830,"9209":677,"9210":7806,"9211":11013,"9212":1211,"9213":9634,"9214":14443,"9215":5856,"9216":4304,"9217":14308,"9218":4206,"9219":1599,"9220":8927,"9221":11062,"9222":13372,"9223":3400,"9224":5035,"9225":5467,"9226":1864,"9227":2163,"9228":6594,"9229":10690,"9230":3250,"9231":8962,"9232":13631,"9233":14325,"9234":2024,"9235":1069,"9236":5988,"9237":5503,"9238":7490,"9239":6299,"9240":1441,"9241":1985,"9242":9078,"9243":4099,"9244":7930,"9245":10149,"9246":1520,"9247":10809,"9248":11810,"9249":7616,"9250":2200,"9251":6072,"9252":4722,"9253":8784,"9254":9177,"9255":1993,"9256":5478,"9257":8052,"9258":5347,"9259":5493,"9260":7874,"9261":563,"9262":1069,"9263":6069,"9264":14197,"9265":12285,"9266":14361,"9267":3182,"9268":1781,"9269":12256,"9270":2769,"9271":1726,"9272":13151,"9273":7657,"9274":1165,"9275":5344,"9276":517,"9277":9075,"9278":11193,"9279":3577,"9280":4610,"9281":5769,"9282":3005,"9283":12572,"9284":6510,"9285":10481,"9286":326,"9287":5167,"9288":4233,"9289":14801,"9290":10050,"9291":9448,"9292":6369,"9293":10323,"9294":4227,"9295":9851,"9296":4097,"9297":6672,"9298":3891,"9299":10415,"9300":4176,"9301":11953,"9302":13609,"9303":3274,"9304":8149,"9305":546,"9306":5196,"9307":13893,"9308":1232,"9309":1998,"9310":8909,"9311":6717,"9312":13627,"9313":11167,"9314":2913,"9315":2369,"9316":11022,"9317":11865,"9318":12774,"9319":2236,"9320":6828,"9321":7690,"9322":12886,"9323":14374,"9324":8640,"9325":113,"9326":258,"9327":3452,"9328":2201,"9329":8210,"9330":12917,"9331":13835,"9332":6904,"9333":8846,"9334":14100,"9335":2208,"9336":9350,"9337":4554,"9338":14111,"9339":10623,"9340":3723,"9341":10610,"9342":10728,"9343":13965,"9344":14559,"9345":12801,"9346":8381,"9347":8841,"9348":11884,"9349":10355,"9350":5004,"9351":15000,"9352":5991,"9353":11998,"9354":4942,"9355":6418,"9356":14741,"9357":9626,"9358":13359,"9359":14640,"9360":14096,"9361":10028,"9362":1882,"9363":14836,"9364":9662,"9365":12358,"9366":608,"9367":8935,"9368":12101,"9369":4434,"9370":12010,"9371":503,"9372":14984,"9373":668,"9374":10633,"9375":13872,"9376":3176,"9377":285,"9378":7199,"9379":5713,"9380":7156,"9381":2779,"9382":14388,"9383":3663,"9384":4576,"9385":7800,"9386":12552,"9387":14261,"9388":2457,"9389":6566,"9390":3138,"9391":6276,"9392":5176,"9393":13064,"9394":716,"9395":7814,"9396":6838,"9397":911,"9398":8841,"9399":10275,"9400":14828,"9401":10231,"9402":7520,"9403":10207,"9404":10940,"9405":1443,"9406":8719,"9407":14470,"9408":3652,"9409":4697,"9410":14172,"9411":13691,"9412":10733,"9413":7787,"9414":8828,"9415":3832,"9416":3222,"9417":11990,"9418":4762,"9419":7612,"9420":3815,"9421":15111,"9422":11769,"9423":10432,"9424":1194,"9425":4622,"9426":8460,"9427":12054,"9428":9898,"9429":13867,"9430":15037,"9431":10711,"9432":4485,"9433":5986,"9434":11766,"9435":3859,"9436":6937,"9437":5995,"9438":8571,"9439":655,"9440":9548,"9441":2956,"9442":9301,"9443":5400,"9444":7903,"9445":11541,"9446":14686,"9447":3596,"9448":7994,"9449":6398,"9450":904,"9451":969,"9452":920,"9453":827,"9454":10738,"9455":1650,"9456":1637,"9457":11256,"9458":10646,"9459":9081,"9460":7463,"9461":14059,"9462":1082,"9463":12788,"9464":1103,"9465":8788,"9466":13112,"9467":1766,"9468":12596,"9469":7892,"9470":2950,"9471":1467,"9472":5770,"9473":14925,"9474":1840,"9475":9359,"9476":15065,"9477":13127,"9478":13703,"9479":8746,"9480":2845,"9481":13041,"9482":3941,"9483":2656,"9484":14917,"9485":6555,"9486":65,"9487":6091,"9488":14612,"9489":14027,"9490":13546,"9491":3069,"9492":3195,"9493":14689,"9494":13943,"9495":7104,"9496":12825,"9497":12568,"9498":14213,"9499":11884,"9500":14069,"9501":6711,"9502":11165,"9503":4894,"9504":12967,"9505":14963,"9506":7519,"9507":11715,"9508":8263,"9509":11636,"9510":14345,"9511":10962,"9512":13286,"9513":1446,"9514":12439,"9515":4640,"9516":12130,"9517":4877,"9518":2421,"9519":10512,"9520":11588,"9521":4240,"9522":3774,"9523":13709,"9524":4632,"9525":6023,"9526":11020,"9527":9694,"9528":3897,"9529":9656,"9530":12262,"9531":1924,"9532":5830,"9533":12579,"9534":7212,"9535":2748,"9536":11651,"9537":6298,"9538":4578,"9539":8713,"9540":13560,"9541":5690,"9542":14861,"9543":2846,"9544":2302,"9545":9433,"9546":6873,"9547":13615,"9548":9687,"9549":4825,"9550":10638,"9551":7098,"9552":5649,"9553":8471,"9554":208,"9555":7543,"9556":4000,"9557":14281,"9558":11713,"9559":2852,"9560":14196,"9561":655,"9562":8219,"9563":5860,"9564":4155,"9565":7619,"9566":13782,"9567":12709,"9568":2900,"9569":5530,"9570":14170,"9571":3134,"9572":1052,"9573":12212,"9574":11048,"9575":1161,"9576":5968,"9577":1885,"9578":12302,"9579":12947,"9580":33,"9581":3944,"9582":2034,"9583":8702,"9584":11127,"9585":3613,"9586":9482,"9587":14953,"9588":10630,"9589":10646,"9590":2370,"9591":12929,"9592":1385,"9593":11803,"9594":120,"9595":851,"9596":1231,"9597":14091,"9598":13070,"9599":11973,"9600":9960,"9601":12230,"9602":9793,"9603":2144,"9604":3270,"9605":1930,"9606":188,"9607":12899,"9608":10565,"9609":1942,"9610":2664,"9611":5096,"9612":8942,"9613":13340,"9614":10814,"9615":3421,"9616":9288,"9617":5171,"9618":4075,"9619":15065,"9620":10207,"9621":12875,"9622":10394,"9623":1558,"9624":5975,"9625":10481,"9626":4163,"9627":2916,"9628":10730,"9629":7549,"9630":914,"9631":7959,"9632":7002,"9633":13987,"9634":6272,"9635":1603,"9636":12349,"9637":11780,"9638":13185,"9639":13285,"9640":12478,"9641":5470,"9642":4317,"9643":6161,"9644":5040,"9645":6929,"9646":5051,"9647":8206,"9648":9129,"9649":9368,"9650":355,"9651":470,"9652":2912,"9653":11308,"9654":9165,"9655":2899,"9656":10017,"9657":8747,"9658":7164,"9659":2232,"9660":993,"9661":12076,"9662":7656,"9663":10220,"9664":12864,"9665":2642,"9666":1838,"9667":10184,"9668":8168,"9669":6398,"9670":13075,"9671":3653,"9672":7154,"9673":7305,"9674":6730,"9675":8517,"9676":6855,"9677":8197,"9678":7328,"9679":496,"9680":1922,"9681":5015,"9682":3053,"9683":12094,"9684":12359,"9685":8768,"9686":5805,"9687":3432,"9688":5434,"9689":7463,"9690":9557,"9691":3251,"9692":8443,"9693":6047,"9694":12291,"9695":13970,"9696":12790,"9697":14714,"9698":12936,"9699":202,"9700":12464,"9701":9186,"9702":4182,"9703":14429,"9704":10173,"9705":8271,"9706":10647,"9707":1573,"9708":1187,"9709":6751,"9710":4895,"9711":6747,"9712":15096,"9713":10660,"9714":10070,"9715":14738,"9716":7896,"9717":275,"9718":10027,"9719":1781,"9720":10173,"9721":14414,"9722":10661,"9723":13033,"9724":560,"9725":4232,"9726":5794,"9727":5376,"9728":14945,"9729":12746,"9730":162,"9731":2664,"9732":5032,"9733":11648,"9734":7647,"9735":6986,"9736":11281,"9737":11777,"9738":3092,"9739":14895,"9740":5843,"9741":920,"9742":367,"9743":13435,"9744":10729,"9745":15097,"9746":12740,"9747":2291,"9748":2075,"9749":3971,"9750":7567,"9751":3043,"9752":14006,"9753":1196,"9754":6127,"9755":10446,"9756":10171,"9757":8994,"9758":8937,"9759":11818,"9760":14994,"9761":6492,"9762":12023,"9763":10885,"9764":8713,"9765":8174,"9766":4314,"9767":5419,"9768":12913,"9769":3668,"9770":4522,"9771":9916,"9772":7979,"9773":6415,"9774":1527,"9775":14450,"9776":1932,"9777":6550,"9778":10022,"9779":13509,"9780":13649,"9781":358,"9782":11494,"9783":10974,"9784":5747,"9785":4180,"9786":12681,"9787":13047,"9788":13794,"9789":3599,"9790":7834,"9791":9976,"9792":10990,"9793":5362,"9794":484,"9795":3137,"9796":14342,"9797":327,"9798":3875,"9799":9566,"9800":6745,"9801":13511,"9802":13489,"9803":1399,"9804":4499,"9805":7962,"9806":13002,"9807":2931,"9808":14746,"9809":5279,"9810":10959,"9811":14156,"9812":641,"9813":5209,"9814":4687,"9815":6053,"9816":2735,"9817":3439,"9818":7571,"9819":1826,"9820":14761,"9821":3812,"9822":7737,"9823":15042,"9824":1747,"9825":1308,"9826":865,"9827":5221,"9828":4374,"9829":1246,"9830":9066,"9831":9884,"9832":5742,"9833":649,"9834":9415,"9835":4833,"9836":13741,"9837":11830,"9838":10982,"9839":8525,"9840":12863,"9841":14868,"9842":1105,"9843":12352,"9844":7524,"9845":7372,"9846":11534,"9847":10618,"9848":6940,"9849":6795,"9850":15083,"9851":15043,"9852":6578,"9853":206,"9854":10431,"9855":8926,"9856":4089,"9857":3455,"9858":6735,"9859":5596,"9860":10608,"9861":3470,"9862":512,"9863":9297,"9864":7814,"9865":2099,"9866":2833,"9867":14681,"9868":617,"9869":11627,"9870":1321,"9871":10237,"9872":1956,"9873":8883,"9874":2774,"9875":12655,"9876":7103,"9877":4413,"9878":5553,"9879":12854,"9880":2904,"9881":13844,"9882":712,"9883":9579,"9884":12562,"9885":1904,"9886":3688,"9887":10513,"9888":14863,"9889":9521,"9890":10914,"9891":13345,"9892":3885,"9893":7418,"9894":3755,"9895":4361,"9896":12057,"9897":7321,"9898":3588,"9899":7374,"9900":4681,"9901":5233,"9902":717,"9903":6134,"9904":1800,"9905":8479,"9906":12443,"9907":4258,"9908":14793,"9909":11835,"9910":11170,"9911":2727,"9912":182,"9913":13201,"9914":1910,"9915":8839,"9916":5060,"9917":3194,"9918":13980,"9919":12857,"9920":13339,"9921":12317,"9922":5541,"9923":6621,"9924":6531,"9925":5170,"9926":12265,"9927":10372,"9928":4699,"9929":7382,"9930":10339,"9931":9579,"9932":839,"9933":8579,"9934":13309,"9935":4216,"9936":14614,"9937":1848,"9938":14545,"9939":11607,"9940":8039,"9941":8417,"9942":14320,"9943":2567,"9944":14041,"9945":10449,"9946":6216,"9947":12083,"9948":293,"9949":6554,"9950":942,"9951":1408,"9952":8649,"9953":3160,"9954":14960,"9955":7687,"9956":14711,"9957":2141,"9958":4038,"9959":2296,"9960":13110,"9961":1357,"9962":7894,"9963":11941,"9964":2112,"9965":7149,"9966":9459,"9967":4486,"9968":8890,"9969":15075,"9970":6748,"9971":5368,"9972":7590,"9973":1072,"9974":13788,"9975":10195,"9976":8070,"9977":11030,"9978":13809,"9979":11083,"9980":7088,"9981":12234,"9982":9610,"9983":6572,"9984":221,"9985":343,"9986":10140,"9987":10771,"9988":6577,"9989":4235,"9990":11844,"9991":5907,"9992":5726,"9993":5595,"9994":7595,"9995":6627,"9996":10122,"9997":8383,"9998":10309,"9999":14451,"10000":1348,"10001":815,"10002":4428,"10003":1930,"10004":12781,"10005":8467,"10006":11569,"10007":9607,"10008":15087,"10009":5752,"10010":13981,"10011":4469,"10012":3905,"10013":6035,"10014":86,"10015":8640,"10016":13522,"10017":1317,"10018":9429,"10019":1813,"10020":7354,"10021":13383,"10022":10202,"10023":4188,"10024":3384,"10025":584,"10026":7379,"10027":2101,"10028":2292,"10029":14550,"10030":2610,"10031":13514,"10032":8567,"10033":11268,"10034":125,"10035":13537,"10036":8567,"10037":2103,"10038":10300,"10039":11958,"10040":5988,"10041":14471,"10042":14069,"10043":6998,"10044":997,"10045":9635,"10046":8476,"10047":2754,"10048":2403,"10049":13674,"10050":77,"10051":4180,"10052":3502,"10053":14732,"10054":7916,"10055":14127,"10056":4246,"10057":11741,"10058":5885,"10059":2509,"10060":1856,"10061":2947,"10062":14560,"10063":3073,"10064":6587,"10065":8376,"10066":10343,"10067":12560,"10068":605,"10069":8267,"10070":8992,"10071":6445,"10072":11335,"10073":3344,"10074":9889,"10075":3933,"10076":2090,"10077":831,"10078":2197,"10079":12515,"10080":10687,"10081":14685,"10082":7771,"10083":595,"10084":11183,"10085":6346,"10086":1245,"10087":422,"10088":1014,"10089":1262,"10090":4197,"10091":7872,"10092":4912,"10093":389,"10094":3925,"10095":12313,"10096":9374,"10097":229,"10098":5678,"10099":3063,"10100":1231,"10101":12795,"10102":14584,"10103":3170,"10104":14387,"10105":11680,"10106":406,"10107":6714,"10108":6606,"10109":4203,"10110":4966,"10111":3664,"10112":7179,"10113":5232,"10114":7993,"10115":8885,"10116":10893,"10117":14374,"10118":8715,"10119":6644,"10120":11194,"10121":7592,"10122":3366,"10123":2260,"10124":9709,"10125":6433,"10126":8266,"10127":772,"10128":11336,"10129":7042,"10130":5851,"10131":2865,"10132":14309,"10133":5023,"10134":7188,"10135":6139,"10136":4864,"10137":9252,"10138":13229,"10139":6412,"10140":14942,"10141":7857,"10142":2307,"10143":5338,"10144":11374,"10145":9399,"10146":7990,"10147":6095,"10148":2429,"10149":10122,"10150":6378,"10151":13912,"10152":12731,"10153":9280,"10154":6105,"10155":13473,"10156":8076,"10157":2344,"10158":161,"10159":7076,"10160":10462,"10161":4189,"10162":12386,"10163":2065,"10164":2888,"10165":10055,"10166":12622,"10167":2696,"10168":10026,"10169":6103,"10170":9760,"10171":16,"10172":9423,"10173":4659,"10174":1651,"10175":7580,"10176":2346,"10177":9367,"10178":3224,"10179":5239,"10180":13510,"10181":7682,"10182":6500,"10183":9151,"10184":9996,"10185":15051,"10186":11291,"10187":13244,"10188":1510,"10189":14341,"10190":7274,"10191":12975,"10192":2009,"10193":4125,"10194":13126,"10195":5644,"10196":3897,"10197":12117,"10198":7877,"10199":9734,"10200":12960,"10201":1273,"10202":4117,"10203":138,"10204":11496,"10205":2192,"10206":9841,"10207":8631,"10208":3007,"10209":5789,"10210":4246,"10211":13818,"10212":14727,"10213":4181,"10214":7597,"10215":4943,"10216":6936,"10217":10833,"10218":10783,"10219":4747,"10220":8415,"10221":3174,"10222":1676,"10223":11129,"10224":1371,"10225":12503,"10226":885,"10227":2770,"10228":6979,"10229":3666,"10230":11793,"10231":1195,"10232":5587,"10233":11505,"10234":3512,"10235":11142,"10236":15057,"10237":6070,"10238":2949,"10239":14745,"10240":12102,"10241":7402,"10242":7469,"10243":10994,"10244":948,"10245":13091,"10246":7025,"10247":1381,"10248":12847,"10249":3561,"10250":10027,"10251":5613,"10252":5192,"10253":13444,"10254":1784,"10255":10730,"10256":9436,"10257":2512,"10258":14369,"10259":11082,"10260":2818,"10261":13265,"10262":1246,"10263":11564,"10264":10053,"10265":12574,"10266":13657,"10267":9698,"10268":117,"10269":14687,"10270":14925,"10271":9000,"10272":6913,"10273":10020,"10274":11626,"10275":1549,"10276":8635,"10277":9994,"10278":11379,"10279":14384,"10280":1194,"10281":13950,"10282":1618,"10283":4013,"10284":13320,"10285":12008,"10286":2676,"10287":6636,"10288":3605,"10289":13780,"10290":1188,"10291":6043,"10292":11951,"10293":745,"10294":6962,"10295":2853,"10296":1403,"10297":7497,"10298":8511,"10299":6896,"10300":8904,"10301":11467,"10302":446,"10303":12417,"10304":1827,"10305":11806,"10306":6679,"10307":6930,"10308":1836,"10309":10848,"10310":1869,"10311":7873,"10312":8311,"10313":8040,"10314":11376,"10315":10799,"10316":3675,"10317":14631,"10318":12717,"10319":10464,"10320":7811,"10321":7226,"10322":13383,"10323":11182,"10324":13978,"10325":11148,"10326":13159,"10327":10918,"10328":7548,"10329":12309,"10330":1785,"10331":8857,"10332":3066,"10333":12698,"10334":801,"10335":13000,"10336":6885,"10337":9616,"10338":11660,"10339":7251,"10340":6129,"10341":1725,"10342":10684,"10343":2272,"10344":11317,"10345":9337,"10346":1879,"10347":5885,"10348":1389,"10349":8301,"10350":358,"10351":11963,"10352":12990,"10353":4221,"10354":2380,"10355":13409,"10356":8296,"10357":14182,"10358":6222,"10359":6580,"10360":4556,"10361":6340,"10362":1665,"10363":12847,"10364":1308,"10365":11927,"10366":1667,"10367":14092,"10368":10656,"10369":7935,"10370":5095,"10371":12493,"10372":12126,"10373":14715,"10374":12118,"10375":7452,"10376":8665,"10377":9663,"10378":4717,"10379":9998,"10380":6856,"10381":3577,"10382":10106,"10383":7922,"10384":11285,"10385":10917,"10386":6047,"10387":11963,"10388":7023,"10389":7753,"10390":11685,"10391":10791,"10392":14392,"10393":14431,"10394":791,"10395":1104,"10396":12005,"10397":10238,"10398":12933,"10399":14827,"10400":4618,"10401":6418,"10402":13746,"10403":5337,"10404":12183,"10405":9212,"10406":1257,"10407":3764,"10408":6991,"10409":11259,"10410":6840,"10411":5230,"10412":1529,"10413":4108,"10414":3972,"10415":10652,"10416":567,"10417":11643,"10418":158,"10419":2184,"10420":5600,"10421":36,"10422":10216,"10423":2037,"10424":3879,"10425":2126,"10426":11314,"10427":5528,"10428":15100,"10429":7789,"10430":5704,"10431":1084,"10432":47,"10433":2008,"10434":3357,"10435":13801,"10436":10744,"10437":9907,"10438":8085,"10439":4857,"10440":12454,"10441":2934,"10442":12538,"10443":9128,"10444":13688,"10445":13220,"10446":2033,"10447":2601,"10448":8650,"10449":6739,"10450":14990,"10451":6435,"10452":3001,"10453":3970,"10454":6418,"10455":7995,"10456":2234,"10457":8659,"10458":12225,"10459":6969,"10460":718,"10461":6984,"10462":6747,"10463":7173,"10464":8429,"10465":8124,"10466":2714,"10467":1731,"10468":1583,"10469":11196,"10470":13780,"10471":9000,"10472":9476,"10473":9446,"10474":13638,"10475":5314,"10476":13123,"10477":9131,"10478":11118,"10479":12980,"10480":8493,"10481":8912,"10482":841,"10483":3357,"10484":711,"10485":1438,"10486":14258,"10487":12294,"10488":9048,"10489":3206,"10490":10548,"10491":14022,"10492":9246,"10493":10782,"10494":1279,"10495":6373,"10496":13880,"10497":7034,"10498":3160,"10499":171,"10500":8611,"10501":11397,"10502":3318,"10503":14729,"10504":2101,"10505":4927,"10506":7215,"10507":8207,"10508":7109,"10509":1533,"10510":8287,"10511":3778,"10512":1301,"10513":6569,"10514":10808,"10515":7733,"10516":6632,"10517":7989,"10518":14071,"10519":13912,"10520":13361,"10521":13200,"10522":2024,"10523":7166,"10524":4242,"10525":3932,"10526":6071,"10527":4507,"10528":11526,"10529":9413,"10530":3607,"10531":9231,"10532":3693,"10533":7229,"10534":852,"10535":13553,"10536":2951,"10537":9418,"10538":787,"10539":5729,"10540":15060,"10541":8327,"10542":4659,"10543":8827,"10544":9391,"10545":10057,"10546":1182,"10547":8636,"10548":9340,"10549":4052,"10550":5577,"10551":3405,"10552":4796,"10553":1845,"10554":8873,"10555":13853,"10556":5557,"10557":3208,"10558":13716,"10559":8192,"10560":12398,"10561":13094,"10562":3068,"10563":3388,"10564":2947,"10565":13550,"10566":8846,"10567":343,"10568":9211,"10569":4777,"10570":11892,"10571":4847,"10572":3573,"10573":3259,"10574":1372,"10575":13562,"10576":3813,"10577":3056,"10578":11522,"10579":4035,"10580":4984,"10581":2868,"10582":6518,"10583":11733,"10584":12993,"10585":14659,"10586":15116,"10587":653,"10588":3197,"10589":8405,"10590":7517,"10591":8529,"10592":12152,"10593":10891,"10594":11169,"10595":9037,"10596":3585,"10597":11535,"10598":2008,"10599":2792,"10600":12299,"10601":8958,"10602":6651,"10603":1540,"10604":2761,"10605":1304,"10606":7954,"10607":7812,"10608":14234,"10609":1776,"10610":11688,"10611":11866,"10612":1021,"10613":128,"10614":7621,"10615":10095,"10616":7641,"10617":6613,"10618":2071,"10619":9498,"10620":11478,"10621":6111,"10622":12332,"10623":7280,"10624":3759,"10625":9588,"10626":13154,"10627":1869,"10628":11788,"10629":13964,"10630":7532,"10631":5495,"10632":5027,"10633":4463,"10634":2068,"10635":12524,"10636":12642,"10637":12987,"10638":2927,"10639":7460,"10640":6792,"10641":4554,"10642":11385,"10643":2528,"10644":2049,"10645":9663,"10646":15028,"10647":11041,"10648":11328,"10649":129,"10650":934,"10651":8627,"10652":899,"10653":6430,"10654":9564,"10655":13434,"10656":6083,"10657":3669,"10658":2844,"10659":542,"10660":9919,"10661":14679,"10662":4290,"10663":6602,"10664":9522,"10665":11403,"10666":1072,"10667":7878,"10668":7321,"10669":9789,"10670":9203,"10671":12849,"10672":1436,"10673":6246,"10674":1973,"10675":8552,"10676":8141,"10677":293,"10678":12070,"10679":8205,"10680":13743,"10681":6243,"10682":7147,"10683":7660,"10684":7557,"10685":7856,"10686":13925,"10687":9806,"10688":10098,"10689":8544,"10690":9628,"10691":3844,"10692":4184,"10693":5152,"10694":8490,"10695":59,"10696":3282,"10697":4539,"10698":7147,"10699":5011,"10700":6731,"10701":14112,"10702":3492,"10703":6348,"10704":9061,"10705":771,"10706":3008,"10707":12736,"10708":14725,"10709":6097,"10710":13070,"10711":9833,"10712":4514,"10713":8771,"10714":4375,"10715":7419,"10716":8719,"10717":4991,"10718":168,"10719":2456,"10720":11790,"10721":310,"10722":1351,"10723":6047,"10724":8624,"10725":9372,"10726":1161,"10727":1499,"10728":8821,"10729":9647,"10730":1127,"10731":9044,"10732":3488,"10733":1201,"10734":6815,"10735":12721,"10736":8904,"10737":11258,"10738":13421,"10739":3743,"10740":7740,"10741":1883,"10742":10816,"10743":32,"10744":1640,"10745":7661,"10746":3606,"10747":9761,"10748":11019,"10749":3745,"10750":3650,"10751":14558,"10752":4121,"10753":1289,"10754":7412,"10755":13306,"10756":1212,"10757":13788,"10758":840,"10759":11446,"10760":3436,"10761":1561,"10762":9876,"10763":5413,"10764":9768,"10765":13613,"10766":10805,"10767":12657,"10768":213,"10769":6428,"10770":13234,"10771":2135,"10772":14024,"10773":11116,"10774":797,"10775":12389,"10776":2036,"10777":6313,"10778":10155,"10779":3576,"10780":4036,"10781":10444,"10782":5357,"10783":3773,"10784":7694,"10785":10097,"10786":4817,"10787":10339,"10788":4750,"10789":218,"10790":4857,"10791":15136,"10792":8971,"10793":1476,"10794":8943,"10795":14802,"10796":2705,"10797":7098,"10798":1654,"10799":5414,"10800":6605,"10801":9967,"10802":12706,"10803":9076,"10804":12028,"10805":2577,"10806":14394,"10807":2106,"10808":5164,"10809":12497,"10810":11145,"10811":11174,"10812":2060,"10813":2926,"10814":3392,"10815":5842,"10816":5322,"10817":9795,"10818":13357,"10819":4048,"10820":156,"10821":14864,"10822":8731,"10823":12178,"10824":4387,"10825":13670,"10826":7901,"10827":5570,"10828":1036,"10829":2274,"10830":4015,"10831":13440,"10832":3776,"10833":1790,"10834":1897,"10835":5034,"10836":2692,"10837":6942,"10838":13594,"10839":13438,"10840":6965,"10841":9077,"10842":1900,"10843":3308,"10844":204,"10845":7190,"10846":5989,"10847":14742,"10848":7394,"10849":933,"10850":13455,"10851":5781,"10852":4405,"10853":8184,"10854":867,"10855":4097,"10856":3404,"10857":11662,"10858":7776,"10859":13101,"10860":522,"10861":4544,"10862":7430,"10863":168,"10864":420,"10865":14551,"10866":7939,"10867":5376,"10868":7755,"10869":851,"10870":3772,"10871":5340,"10872":2132,"10873":6315,"10874":13956,"10875":7253,"10876":10768,"10877":5059,"10878":4759,"10879":962,"10880":12439,"10881":2468,"10882":6862,"10883":13321,"10884":10189,"10885":3251,"10886":14253,"10887":13763,"10888":14903,"10889":11982,"10890":2563,"10891":7294,"10892":5488,"10893":12780,"10894":9613,"10895":14709,"10896":6170,"10897":12970,"10898":2025,"10899":5174,"10900":15099,"10901":14074,"10902":12985,"10903":7707,"10904":593,"10905":12045,"10906":9996,"10907":8280,"10908":8723,"10909":14358,"10910":6838,"10911":116,"10912":3414,"10913":7872,"10914":14796,"10915":13935,"10916":2708,"10917":247,"10918":5033,"10919":1862,"10920":6122,"10921":310,"10922":6923,"10923":9753,"10924":11723,"10925":13660,"10926":4889,"10927":12434,"10928":12232,"10929":182,"10930":7153,"10931":4337,"10932":10173,"10933":4068,"10934":2610,"10935":6055,"10936":8969,"10937":4423,"10938":3298,"10939":9726,"10940":13904,"10941":14592,"10942":5491,"10943":3152,"10944":3368,"10945":1431,"10946":12072,"10947":550,"10948":2058,"10949":7486,"10950":757,"10951":14342,"10952":3624,"10953":496,"10954":6930,"10955":9564,"10956":13327,"10957":5403,"10958":13240,"10959":13435,"10960":13041,"10961":6975,"10962":3401,"10963":136,"10964":8131,"10965":6768,"10966":14685,"10967":290,"10968":9342,"10969":3621,"10970":13132,"10971":8827,"10972":5919,"10973":8867,"10974":10179,"10975":14160,"10976":982,"10977":13269,"10978":10954,"10979":9616,"10980":2989,"10981":10858,"10982":3271,"10983":2485,"10984":3900,"10985":5163,"10986":14160,"10987":13669,"10988":14183,"10989":10981,"10990":5138,"10991":12429,"10992":5360,"10993":2518,"10994":5995,"10995":3111,"10996":656,"10997":6185,"10998":11328,"10999":11421,"11000":11008,"11001":11386,"11002":13559,"11003":914,"11004":12664,"11005":13456,"11006":5487,"11007":333,"11008":11886,"11009":13635,"11010":2449,"11011":7420,"11012":7227,"11013":3527,"11014":7709,"11015":8562,"11016":439,"11017":6120,"11018":1604,"11019":2100,"11020":14172,"11021":9568,"11022":9612,"11023":3462,"11024":5835,"11025":11434,"11026":1534,"11027":5072,"11028":1588,"11029":10133,"11030":13882,"11031":6721,"11032":6489,"11033":6440,"11034":13518,"11035":11641,"11036":2917,"11037":4993,"11038":9379,"11039":2315,"11040":12557,"11041":14140,"11042":6670,"11043":9620,"11044":7149,"11045":10298,"11046":12177,"11047":4149,"11048":9298,"11049":2835,"11050":4816,"11051":8702,"11052":4764,"11053":4518,"11054":13931,"11055":14437,"11056":6425,"11057":12512,"11058":126,"11059":9032,"11060":4512,"11061":3763,"11062":8203,"11063":9328,"11064":4040,"11065":7897,"11066":14602,"11067":13528,"11068":3259,"11069":5520,"11070":12938,"11071":12216,"11072":2718,"11073":12932,"11074":9187,"11075":55,"11076":1360,"11077":9465,"11078":9572,"11079":13517,"11080":3326,"11081":4028,"11082":9659,"11083":4020,"11084":11221,"11085":13198,"11086":2862,"11087":3421,"11088":711,"11089":10831,"11090":1552,"11091":3174,"11092":14849,"11093":10195,"11094":4358,"11095":4652,"11096":416,"11097":7648,"11098":2199,"11099":5519,"11100":6998,"11101":13331,"11102":3075,"11103":3832,"11104":9174,"11105":3602,"11106":7694,"11107":527,"11108":11480,"11109":1867,"11110":8414,"11111":5517,"11112":535,"11113":12105,"11114":7404,"11115":5177,"11116":7092,"11117":7202,"11118":10250,"11119":758,"11120":2670,"11121":15138,"11122":5574,"11123":12609,"11124":3288,"11125":2585,"11126":90,"11127":11910,"11128":5811,"11129":7770,"11130":2845,"11131":11358,"11132":12927,"11133":11881,"11134":857,"11135":10844,"11136":8064,"11137":4004,"11138":3032,"11139":2375,"11140":11247,"11141":9575,"11142":12894,"11143":12287,"11144":6699,"11145":6610,"11146":7882,"11147":3434,"11148":7135,"11149":11185,"11150":13582,"11151":5877,"11152":10919,"11153":6436,"11154":1301,"11155":5805,"11156":14694,"11157":8734,"11158":13330,"11159":1094,"11160":1766,"11161":5159,"11162":2515,"11163":12505,"11164":5180,"11165":11127,"11166":14275,"11167":3553,"11168":5176,"11169":15101,"11170":11950,"11171":13180,"11172":8433,"11173":1630,"11174":4820,"11175":11293,"11176":6423,"11177":13366,"11178":1412,"11179":11795,"11180":5467,"11181":7547,"11182":1173,"11183":9038,"11184":4074,"11185":10400,"11186":5565,"11187":862,"11188":1420,"11189":2883,"11190":11625,"11191":12702,"11192":11264,"11193":1815,"11194":13059,"11195":2559,"11196":2378,"11197":5339,"11198":8060,"11199":11154,"11200":4664,"11201":14350,"11202":10567,"11203":2171,"11204":9908,"11205":9795,"11206":9254,"11207":8381,"11208":14770,"11209":6382,"11210":5442,"11211":2957,"11212":7111,"11213":7969,"11214":14526,"11215":1243,"11216":13922,"11217":1212,"11218":12924,"11219":1883,"11220":3207,"11221":7175,"11222":6687,"11223":14907,"11224":7880,"11225":9006,"11226":8409,"11227":14700,"11228":8689,"11229":6213,"11230":14977,"11231":10745,"11232":9123,"11233":6736,"11234":4074,"11235":10876,"11236":12334,"11237":7361,"11238":1940,"11239":4929,"11240":10092,"11241":11269,"11242":12671,"11243":4955,"11244":11180,"11245":4250,"11246":306,"11247":13878,"11248":3894,"11249":2323,"11250":3754,"11251":11018,"11252":160,"11253":12513,"11254":10235,"11255":10815,"11256":5954,"11257":1192,"11258":12271,"11259":9964,"11260":13964,"11261":5028,"11262":11959,"11263":3259,"11264":7661,"11265":9818,"11266":694,"11267":10081,"11268":8352,"11269":2516,"11270":2965,"11271":4918,"11272":506,"11273":834,"11274":14255,"11275":2253,"11276":9101,"11277":12497,"11278":11483,"11279":554,"11280":14274,"11281":3232,"11282":3101,"11283":6008,"11284":14235,"11285":9291,"11286":4381,"11287":14198,"11288":7006,"11289":6909,"11290":2865,"11291":2307,"11292":12728,"11293":7086,"11294":13026,"11295":8834,"11296":5086,"11297":1773,"11298":2336,"11299":7736,"11300":6893,"11301":4935,"11302":1931,"11303":9085,"11304":3680,"11305":7481,"11306":13805,"11307":9369,"11308":12653,"11309":6669,"11310":10437,"11311":7733,"11312":12566,"11313":4834,"11314":14504,"11315":8017,"11316":9544,"11317":5244,"11318":71,"11319":14255,"11320":6064,"11321":13758,"11322":12212,"11323":9265,"11324":284,"11325":5263,"11326":10439,"11327":3253,"11328":7978,"11329":2194,"11330":5260,"11331":15000,"11332":8396,"11333":5428,"11334":6177,"11335":11725,"11336":5602,"11337":3344,"11338":2971,"11339":2829,"11340":11962,"11341":6908,"11342":6905,"11343":11731,"11344":13862,"11345":13591,"11346":8398,"11347":1512,"11348":8525,"11349":12752,"11350":12532,"11351":8381,"11352":1108,"11353":8698,"11354":8259,"11355":12239,"11356":12211,"11357":14842,"11358":6747,"11359":10882,"11360":2875,"11361":643,"11362":11817,"11363":2390,"11364":3988,"11365":9551,"11366":14926,"11367":3874,"11368":3214,"11369":2264,"11370":14574,"11371":887,"11372":10806,"11373":4908,"11374":3042,"11375":12925,"11376":5581,"11377":6292,"11378":14068,"11379":8811,"11380":7726,"11381":14986,"11382":15142,"11383":10147,"11384":2285,"11385":1135,"11386":2292,"11387":8386,"11388":15035,"11389":14720,"11390":4776,"11391":14417,"11392":3054,"11393":8554,"11394":10313,"11395":12538,"11396":5842,"11397":766,"11398":14602,"11399":14788,"11400":7550,"11401":10432,"11402":7407,"11403":2293,"11404":15139,"11405":4062,"11406":4682,"11407":10479,"11408":9088,"11409":7830,"11410":14617,"11411":11765,"11412":3418,"11413":5421,"11414":4077,"11415":1754,"11416":3104,"11417":1786,"11418":12120,"11419":6333,"11420":1064,"11421":9460,"11422":5084,"11423":13347,"11424":10721,"11425":9265,"11426":14387,"11427":12919,"11428":1760,"11429":5889,"11430":14373,"11431":10489,"11432":8439,"11433":9450,"11434":14349,"11435":2287,"11436":14547,"11437":1714,"11438":7703,"11439":8906,"11440":7057,"11441":3790,"11442":7845,"11443":9059,"11444":78,"11445":7871,"11446":7510,"11447":14884,"11448":8440,"11449":13371,"11450":7446,"11451":826,"11452":240,"11453":200,"11454":5573,"11455":2878,"11456":4679,"11457":7442,"11458":5244,"11459":10553,"11460":11545,"11461":6764,"11462":6472,"11463":57,"11464":4274,"11465":927,"11466":5366,"11467":4008,"11468":1495,"11469":8674,"11470":1346,"11471":13320,"11472":2825,"11473":2107,"11474":1496,"11475":5832,"11476":10836,"11477":6323,"11478":11002,"11479":3247,"11480":7453,"11481":3851,"11482":1939,"11483":9019,"11484":2934,"11485":789,"11486":4357,"11487":5586,"11488":922,"11489":5983,"11490":12376,"11491":8195,"11492":11693,"11493":11621,"11494":5062,"11495":7699,"11496":8204,"11497":8187,"11498":12342,"11499":12557,"11500":488,"11501":9695,"11502":6468,"11503":13099,"11504":111,"11505":5839,"11506":13818,"11507":12537,"11508":6470,"11509":1050,"11510":339,"11511":7480,"11512":2320,"11513":4635,"11514":8615,"11515":9280,"11516":10363,"11517":3177,"11518":1695,"11519":2935,"11520":3309,"11521":5367,"11522":13425,"11523":1312,"11524":4783,"11525":11648,"11526":14585,"11527":12652,"11528":3993,"11529":2774,"11530":5867,"11531":9704,"11532":12024,"11533":11231,"11534":7501,"11535":4383,"11536":8823,"11537":5143,"11538":1623,"11539":961,"11540":13596,"11541":8521,"11542":11685,"11543":1299,"11544":6171,"11545":5465,"11546":1446,"11547":11000,"11548":13804,"11549":4374,"11550":2785,"11551":11034,"11552":13850,"11553":12708,"11554":9193,"11555":13344,"11556":3946,"11557":2940,"11558":6859,"11559":3861,"11560":5691,"11561":6498,"11562":9351,"11563":5499,"11564":11999,"11565":13486,"11566":3501,"11567":2212,"11568":11442,"11569":1711,"11570":13282,"11571":3368,"11572":9588,"11573":10364,"11574":12216,"11575":3616,"11576":6498,"11577":14724,"11578":8682,"11579":1331,"11580":12750,"11581":14743,"11582":2440,"11583":6161,"11584":1490,"11585":3032,"11586":12719,"11587":15088,"11588":13998,"11589":506,"11590":7452,"11591":1580,"11592":2503,"11593":11249,"11594":1148,"11595":10431,"11596":12090,"11597":6821,"11598":7178,"11599":4405,"11600":13548,"11601":808,"11602":6204,"11603":14355,"11604":2982,"11605":8834,"11606":10838,"11607":8087,"11608":11033,"11609":3944,"11610":8317,"11611":1265,"11612":8373,"11613":10795,"11614":13690,"11615":14676,"11616":3476,"11617":6713,"11618":7493,"11619":7981,"11620":8768,"11621":6190,"11622":12848,"11623":11102,"11624":3905,"11625":9649,"11626":3311,"11627":13922,"11628":1420,"11629":10676,"11630":3230,"11631":8467,"11632":2039,"11633":4058,"11634":313,"11635":10340,"11636":1272,"11637":8209,"11638":5357,"11639":9144,"11640":3550,"11641":559,"11642":9075,"11643":10706,"11644":8610,"11645":11101,"11646":10603,"11647":12731,"11648":7595,"11649":7751,"11650":11037,"11651":7948,"11652":9410,"11653":9314,"11654":13440,"11655":11289,"11656":7348,"11657":11683,"11658":2551,"11659":4215,"11660":10531,"11661":5592,"11662":1040,"11663":6296,"11664":4756,"11665":11975,"11666":6924,"11667":12328,"11668":2571,"11669":14623,"11670":7849,"11671":8434,"11672":2254,"11673":1274,"11674":11389,"11675":9861,"11676":14099,"11677":12980,"11678":7833,"11679":12853,"11680":14789,"11681":4228,"11682":12464,"11683":4338,"11684":1011,"11685":9233,"11686":527,"11687":12836,"11688":2450,"11689":8815,"11690":14224,"11691":14306,"11692":5086,"11693":9606,"11694":2452,"11695":15085,"11696":6932,"11697":3128,"11698":10514,"11699":6535,"11700":10729,"11701":2018,"11702":12670,"11703":3197,"11704":5079,"11705":6982,"11706":2338,"11707":114,"11708":10613,"11709":9787,"11710":3381,"11711":906,"11712":9251,"11713":9831,"11714":13244,"11715":12002,"11716":2036,"11717":5982,"11718":9086,"11719":4245,"11720":6263,"11721":12477,"11722":7,"11723":6395,"11724":5520,"11725":14472,"11726":12913,"11727":14824,"11728":5208,"11729":8059,"11730":4927,"11731":10010,"11732":12650,"11733":14815,"11734":12639,"11735":7412,"11736":6145,"11737":14712,"11738":11494,"11739":12506,"11740":15077,"11741":3536,"11742":4781,"11743":12132,"11744":9925,"11745":5055,"11746":967,"11747":13220,"11748":1718,"11749":10972,"11750":6969,"11751":9034,"11752":9946,"11753":10298,"11754":1867,"11755":6204,"11756":14762,"11757":900,"11758":5372,"11759":3001,"11760":12191,"11761":10210,"11762":14406,"11763":437,"11764":14197,"11765":13841,"11766":4021,"11767":14953,"11768":10036,"11769":5730,"11770":1325,"11771":6273,"11772":582,"11773":8066,"11774":7746,"11775":10162,"11776":5792,"11777":3405,"11778":492,"11779":3385,"11780":388,"11781":7336,"11782":12301,"11783":2931,"11784":9025,"11785":8187,"11786":9518,"11787":14219,"11788":8022,"11789":12981,"11790":12965,"11791":13660,"11792":9673,"11793":13327,"11794":14232,"11795":9047,"11796":6315,"11797":12192,"11798":314,"11799":11858,"11800":1668,"11801":9959,"11802":12218,"11803":5393,"11804":12376,"11805":12783,"11806":12158,"11807":6020,"11808":364,"11809":4685,"11810":482,"11811":5634,"11812":10677,"11813":3643,"11814":747,"11815":6504,"11816":1265,"11817":2519,"11818":14235,"11819":5780,"11820":11348,"11821":10770,"11822":12610,"11823":7988,"11824":14052,"11825":12595,"11826":9530,"11827":10803,"11828":12180,"11829":13762,"11830":4104,"11831":1520,"11832":6720,"11833":12845,"11834":4927,"11835":2827,"11836":6244,"11837":4910,"11838":1601,"11839":10888,"11840":9992,"11841":8592,"11842":7102,"11843":12978,"11844":11799,"11845":4832,"11846":1273,"11847":1796,"11848":12691,"11849":7804,"11850":1739,"11851":13467,"11852":12595,"11853":7761,"11854":14918,"11855":1975,"11856":4461,"11857":4845,"11858":8022,"11859":7992,"11860":9018,"11861":11053,"11862":8265,"11863":7311,"11864":11467,"11865":10901,"11866":7775,"11867":544,"11868":8208,"11869":6967,"11870":13735,"11871":11161,"11872":10997,"11873":13046,"11874":7749,"11875":15064,"11876":7629,"11877":5703,"11878":2579,"11879":5789,"11880":11607,"11881":4546,"11882":13559,"11883":2250,"11884":8919,"11885":9590,"11886":4512,"11887":11861,"11888":2044,"11889":3934,"11890":5622,"11891":627,"11892":6716,"11893":1363,"11894":10965,"11895":11544,"11896":11371,"11897":7770,"11898":12817,"11899":11368,"11900":360,"11901":5129,"11902":7035,"11903":453,"11904":5416,"11905":2862,"11906":4527,"11907":14795,"11908":9689,"11909":13814,"11910":1031,"11911":8464,"11912":8237,"11913":13686,"11914":8719,"11915":864,"11916":4524,"11917":9219,"11918":13982,"11919":11941,"11920":7597,"11921":14193,"11922":10142,"11923":6825,"11924":6638,"11925":4931,"11926":5664,"11927":11309,"11928":8832,"11929":7697,"11930":10322,"11931":1637,"11932":4054,"11933":11637,"11934":11711,"11935":14175,"11936":2641,"11937":9088,"11938":3043,"11939":3661,"11940":8276,"11941":11193,"11942":9416,"11943":11333,"11944":7441,"11945":9942,"11946":5141,"11947":5657,"11948":13103,"11949":10111,"11950":7862,"11951":10290,"11952":11107,"11953":3658,"11954":2663,"11955":9878,"11956":3678,"11957":814,"11958":9713,"11959":8960,"11960":11851,"11961":10771,"11962":11329,"11963":3286,"11964":8095,"11965":4855,"11966":14487,"11967":7115,"11968":2535,"11969":9382,"11970":11318,"11971":5082,"11972":10225,"11973":11460,"11974":10521,"11975":4536,"11976":12476,"11977":7999,"11978":12741,"11979":11451,"11980":10693,"11981":10346,"11982":14268,"11983":10510,"11984":14097,"11985":4996,"11986":5189,"11987":14028,"11988":6804,"11989":9961,"11990":11201,"11991":4629,"11992":6109,"11993":10386,"11994":2750,"11995":11836,"11996":9470,"11997":1838,"11998":10665,"11999":10637,"12000":6668,"12001":9777,"12002":2594,"12003":7106,"12004":3631,"12005":3468,"12006":10805,"12007":12801,"12008":5615,"12009":7371,"12010":13877,"12011":8265,"12012":4841,"12013":5728,"12014":12150,"12015":14003,"12016":10094,"12017":8592,"12018":14029,"12019":11736,"12020":11157,"12021":5595,"12022":14232,"12023":5531,"12024":5633,"12025":13211,"12026":14438,"12027":5718,"12028":15061,"12029":4642,"12030":13390,"12031":3444,"12032":11568,"12033":3247,"12034":8012,"12035":9464,"12036":13613,"12037":11932,"12038":13066,"12039":8136,"12040":4843,"12041":6129,"12042":3147,"12043":11217,"12044":652,"12045":9534,"12046":9777,"12047":3077,"12048":589,"12049":14606,"12050":14345,"12051":11492,"12052":3195,"12053":8852,"12054":1394,"12055":12817,"12056":5485,"12057":13537,"12058":5166,"12059":12145,"12060":13439,"12061":3384,"12062":10007,"12063":11483,"12064":9701,"12065":7940,"12066":11143,"12067":11025,"12068":8604,"12069":12959,"12070":11101,"12071":3620,"12072":11394,"12073":9501,"12074":5616,"12075":14991,"12076":7500,"12077":11606,"12078":13975,"12079":2864,"12080":6850,"12081":7879,"12082":5072,"12083":13045,"12084":13380,"12085":7693,"12086":6475,"12087":12754,"12088":8914,"12089":5297,"12090":8576,"12091":5490,"12092":1063,"12093":2554,"12094":1097,"12095":12441,"12096":13985,"12097":11051,"12098":5827,"12099":13812,"12100":14467,"12101":4910,"12102":13771,"12103":3447,"12104":8622,"12105":3141,"12106":2056,"12107":6555,"12108":6534,"12109":10547,"12110":9427,"12111":8264,"12112":1218,"12113":10572,"12114":11905,"12115":9263,"12116":2022,"12117":11938,"12118":9931,"12119":14454,"12120":8741,"12121":6741,"12122":12317,"12123":13297,"12124":1072,"12125":14067,"12126":6864,"12127":8335,"12128":12680,"12129":9764,"12130":6860,"12131":7808,"12132":4480,"12133":13363,"12134":3802,"12135":7295,"12136":4676,"12137":2970,"12138":3944,"12139":6004,"12140":13576,"12141":9032,"12142":3371,"12143":12156,"12144":1875,"12145":13366,"12146":10339,"12147":13117,"12148":3190,"12149":5623,"12150":4142,"12151":13885,"12152":1973,"12153":14742,"12154":15048,"12155":9101,"12156":13720,"12157":13774,"12158":12122,"12159":6867,"12160":9130,"12161":11327,"12162":8901,"12163":15005,"12164":14795,"12165":12775,"12166":14047,"12167":14324,"12168":11462,"12169":15013,"12170":5802,"12171":12449,"12172":13817,"12173":2480,"12174":12623,"12175":8642,"12176":9654,"12177":11019,"12178":6948,"12179":477,"12180":5405,"12181":296,"12182":13763,"12183":12539,"12184":8753,"12185":10613,"12186":4095,"12187":12898,"12188":4311,"12189":1949,"12190":6126,"12191":6637,"12192":5096,"12193":8999,"12194":6107,"12195":1856,"12196":4930,"12197":14692,"12198":900,"12199":6796,"12200":4961,"12201":10867,"12202":993,"12203":2274,"12204":3989,"12205":10704,"12206":6361,"12207":14986,"12208":9852,"12209":8328,"12210":14816,"12211":2592,"12212":6952,"12213":3473,"12214":12099,"12215":1525,"12216":8929,"12217":8588,"12218":1508,"12219":1074,"12220":12265,"12221":13565,"12222":511,"12223":5635,"12224":9206,"12225":10839,"12226":947,"12227":8377,"12228":7814,"12229":5642,"12230":2786,"12231":12476,"12232":2770,"12233":11229,"12234":8393,"12235":803,"12236":11157,"12237":12591,"12238":5508,"12239":4889,"12240":4010,"12241":13703,"12242":7628,"12243":1837,"12244":2508,"12245":6255,"12246":8987,"12247":14320,"12248":13643,"12249":9218,"12250":8561,"12251":2616,"12252":2408,"12253":11029,"12254":10662,"12255":7843,"12256":5626,"12257":9970,"12258":3310,"12259":599,"12260":4875,"12261":4312,"12262":1914,"12263":1790,"12264":12225,"12265":3112,"12266":12401,"12267":8548,"12268":14003,"12269":8,"12270":878,"12271":3106,"12272":10844,"12273":6413,"12274":1693,"12275":12928,"12276":7054,"12277":3211,"12278":6432,"12279":3496,"12280":10462,"12281":14121,"12282":7361,"12283":11713,"12284":9750,"12285":3303,"12286":5610,"12287":6347,"12288":11330,"12289":13018,"12290":9943,"12291":7739,"12292":13869,"12293":5355,"12294":7075,"12295":10970,"12296":3728,"12297":5854,"12298":9255,"12299":9549,"12300":8419,"12301":7834,"12302":11037,"12303":9569,"12304":4042,"12305":3568,"12306":4810,"12307":13938,"12308":11875,"12309":9102,"12310":9973,"12311":13204,"12312":12447,"12313":3570,"12314":692,"12315":12352,"12316":11417,"12317":8531,"12318":2272,"12319":14244,"12320":7169,"12321":13926,"12322":5420,"12323":10588,"12324":2745,"12325":13984,"12326":13437,"12327":12439,"12328":2983,"12329":10940,"12330":12318,"12331":13227,"12332":7461,"12333":3574,"12334":10774,"12335":9105,"12336":5643,"12337":8983,"12338":10094,"12339":12349,"12340":14638,"12341":8202,"12342":5288,"12343":8135,"12344":3585,"12345":1710,"12346":12701,"12347":13826,"12348":5594,"12349":2186,"12350":9501,"12351":14479,"12352":7991,"12353":9768,"12354":7717,"12355":5696,"12356":5731,"12357":9807,"12358":6973,"12359":1344,"12360":168,"12361":4864,"12362":2071,"12363":13255,"12364":12935,"12365":11747,"12366":9384,"12367":12501,"12368":9233,"12369":12087,"12370":6147,"12371":10586,"12372":4637,"12373":7678,"12374":2941,"12375":10077,"12376":13937,"12377":6240,"12378":5169,"12379":8979,"12380":11574,"12381":5905,"12382":6025,"12383":11940,"12384":4595,"12385":14654,"12386":8696,"12387":4077,"12388":1255,"12389":12837,"12390":7577,"12391":10406,"12392":3285,"12393":6535,"12394":359,"12395":6517,"12396":8455,"12397":11420,"12398":4457,"12399":13727,"12400":4793,"12401":1424,"12402":3148,"12403":11995,"12404":13328,"12405":13021,"12406":618,"12407":660,"12408":4224,"12409":10263,"12410":8795,"12411":689,"12412":3806,"12413":10830,"12414":14841,"12415":14493,"12416":3327,"12417":12200,"12418":4641,"12419":10525,"12420":4955,"12421":2389,"12422":1487,"12423":11240,"12424":7354,"12425":8497,"12426":5986,"12427":6748,"12428":311,"12429":6766,"12430":3382,"12431":10595,"12432":11563,"12433":3499,"12434":3974,"12435":6470,"12436":15051,"12437":9093,"12438":5134,"12439":10889,"12440":2214,"12441":694,"12442":104,"12443":10974,"12444":12797,"12445":4113,"12446":3198,"12447":1241,"12448":13962,"12449":3684,"12450":6882,"12451":2877,"12452":5020,"12453":11463,"12454":8953,"12455":14320,"12456":10915,"12457":5844,"12458":73,"12459":13089,"12460":12596,"12461":6744,"12462":4817,"12463":173,"12464":6305,"12465":5725,"12466":3185,"12467":1158,"12468":1098,"12469":10888,"12470":14384,"12471":9846,"12472":5238,"12473":14609,"12474":13446,"12475":7613,"12476":2500,"12477":1297,"12478":4863,"12479":12299,"12480":3122,"12481":5418,"12482":14239,"12483":9389,"12484":484,"12485":8305,"12486":3456,"12487":10405,"12488":4349,"12489":9201,"12490":3149,"12491":1859,"12492":9022,"12493":10224,"12494":5245,"12495":4331,"12496":14397,"12497":8728,"12498":5351,"12499":8241,"12500":8183,"12501":10234,"12502":6184,"12503":10899,"12504":11393,"12505":13795,"12506":3681,"12507":455,"12508":10310,"12509":6797,"12510":1285,"12511":9719,"12512":1511,"12513":7412,"12514":3973,"12515":6946,"12516":2244,"12517":662,"12518":13159,"12519":13179,"12520":14907,"12521":9055,"12522":3015,"12523":1737,"12524":5850,"12525":10534,"12526":13457,"12527":13178,"12528":1583,"12529":8338,"12530":7804,"12531":2344,"12532":12433,"12533":7222,"12534":1322,"12535":7148,"12536":6717,"12537":2169,"12538":9215,"12539":7329,"12540":9130,"12541":7542,"12542":3998,"12543":9116,"12544":3394,"12545":4764,"12546":13615,"12547":3778,"12548":12000,"12549":11197,"12550":1331,"12551":7125,"12552":9350,"12553":7323,"12554":10899,"12555":4317,"12556":6391,"12557":2623,"12558":11156,"12559":6414,"12560":662,"12561":12047,"12562":10338,"12563":14234,"12564":5616,"12565":12622,"12566":8500,"12567":3821,"12568":66,"12569":11599,"12570":11049,"12571":11846,"12572":4697,"12573":8020,"12574":1689,"12575":1759,"12576":4285,"12577":9018,"12578":5748,"12579":9027,"12580":9239,"12581":13433,"12582":11832,"12583":13901,"12584":15053,"12585":11997,"12586":8211,"12587":6660,"12588":6036,"12589":6553,"12590":12953,"12591":7087,"12592":4465,"12593":7285,"12594":9095,"12595":15105,"12596":2278,"12597":9998,"12598":1763,"12599":119,"12600":6378,"12601":9634,"12602":13042,"12603":6285,"12604":6379,"12605":13223,"12606":13722,"12607":70,"12608":11932,"12609":11292,"12610":518,"12611":12841,"12612":11175,"12613":4180,"12614":6673,"12615":7704,"12616":12643,"12617":8142,"12618":3922,"12619":4703,"12620":6221,"12621":12217,"12622":14631,"12623":6853,"12624":1408,"12625":10631,"12626":806,"12627":12127,"12628":5925,"12629":12682,"12630":13405,"12631":12001,"12632":10228,"12633":6170,"12634":14757,"12635":9440,"12636":497,"12637":13080,"12638":5092,"12639":5670,"12640":3352,"12641":13217,"12642":9309,"12643":1822,"12644":922,"12645":3751,"12646":6166,"12647":10119,"12648":15110,"12649":4009,"12650":14922,"12651":5229,"12652":6776,"12653":6102,"12654":5135,"12655":3425,"12656":12356,"12657":1678,"12658":572,"12659":12290,"12660":14809,"12661":3271,"12662":7509,"12663":4955,"12664":13535,"12665":962,"12666":8326,"12667":405,"12668":520,"12669":4590,"12670":3126,"12671":15148,"12672":10060,"12673":14760,"12674":13270,"12675":4248,"12676":5546,"12677":3034,"12678":1624,"12679":8836,"12680":2643,"12681":9588,"12682":15134,"12683":10870,"12684":434,"12685":14185,"12686":6878,"12687":2307,"12688":9314,"12689":5466,"12690":14182,"12691":3377,"12692":9899,"12693":7104,"12694":1863,"12695":13651,"12696":3296,"12697":5933,"12698":3471,"12699":2430,"12700":11216,"12701":4903,"12702":1019,"12703":3624,"12704":145,"12705":3217,"12706":14565,"12707":2974,"12708":11264,"12709":11339,"12710":11755,"12711":7873,"12712":5072,"12713":12200,"12714":9174,"12715":2342,"12716":9080,"12717":1951,"12718":6776,"12719":8292,"12720":14710,"12721":13989,"12722":1226,"12723":6036,"12724":10643,"12725":7555,"12726":4641,"12727":13455,"12728":5032,"12729":2880,"12730":13633,"12731":10502,"12732":12824,"12733":1449,"12734":4302,"12735":3936,"12736":706,"12737":7627,"12738":6951,"12739":5570,"12740":11112,"12741":13587,"12742":1408,"12743":15096,"12744":2033,"12745":14586,"12746":1683,"12747":2292,"12748":8267,"12749":2369,"12750":10216,"12751":1685,"12752":3487,"12753":8628,"12754":9195,"12755":273,"12756":4290,"12757":1036,"12758":11159,"12759":8129,"12760":4345,"12761":6454,"12762":14856,"12763":11901,"12764":13729,"12765":1179,"12766":12658,"12767":13081,"12768":5644,"12769":4131,"12770":8349,"12771":4394,"12772":5286,"12773":12947,"12774":11536,"12775":3485,"12776":4853,"12777":12799,"12778":12023,"12779":1278,"12780":15012,"12781":7932,"12782":4007,"12783":1662,"12784":4588,"12785":1891,"12786":7399,"12787":3196,"12788":2631,"12789":10931,"12790":6964,"12791":2548,"12792":1365,"12793":3377,"12794":8355,"12795":13266,"12796":10660,"12797":14372,"12798":6523,"12799":3693,"12800":13615,"12801":7504,"12802":4474,"12803":10755,"12804":7840,"12805":13477,"12806":6456,"12807":4564,"12808":13874,"12809":13192,"12810":6525,"12811":728,"12812":15058,"12813":5356,"12814":7013,"12815":10408,"12816":10041,"12817":2765,"12818":9478,"12819":2417,"12820":10547,"12821":10064,"12822":11933,"12823":11878,"12824":9394,"12825":7768,"12826":5002,"12827":7573,"12828":10650,"12829":9719,"12830":3925,"12831":3786,"12832":12591,"12833":10542,"12834":1843,"12835":11234,"12836":9171,"12837":2970,"12838":8533,"12839":3916,"12840":3860,"12841":4824,"12842":13910,"12843":14991,"12844":7818,"12845":9073,"12846":2922,"12847":654,"12848":4973,"12849":8201,"12850":3129,"12851":11357,"12852":6943,"12853":7756,"12854":9099,"12855":2283,"12856":14914,"12857":11135,"12858":14174,"12859":2836,"12860":13208,"12861":13396,"12862":14438,"12863":3520,"12864":6737,"12865":2694,"12866":5114,"12867":4040,"12868":8609,"12869":11018,"12870":11209,"12871":8407,"12872":9714,"12873":2652,"12874":12958,"12875":13494,"12876":3529,"12877":12012,"12878":1627,"12879":11553,"12880":10869,"12881":10180,"12882":8220,"12883":11795,"12884":11739,"12885":1298,"12886":14476,"12887":14266,"12888":8510,"12889":7835,"12890":4770,"12891":14502,"12892":13236,"12893":17,"12894":5664,"12895":10899,"12896":12928,"12897":3368,"12898":14616,"12899":13161,"12900":9463,"12901":5563,"12902":5131,"12903":4458,"12904":10500,"12905":6279,"12906":264,"12907":2296,"12908":13992,"12909":14056,"12910":9917,"12911":11607,"12912":220,"12913":7585,"12914":6057,"12915":3841,"12916":4313,"12917":12254,"12918":8828,"12919":11090,"12920":6372,"12921":8167,"12922":12947,"12923":11259,"12924":13082,"12925":2905,"12926":3387,"12927":7357,"12928":8900,"12929":8591,"12930":3828,"12931":14157,"12932":15101,"12933":11206,"12934":5121,"12935":12667,"12936":4724,"12937":13493,"12938":14446,"12939":5372,"12940":14101,"12941":15086,"12942":10012,"12943":1203,"12944":3227,"12945":15022,"12946":10318,"12947":14614,"12948":5415,"12949":9492,"12950":1012,"12951":14782,"12952":3925,"12953":3085,"12954":3328,"12955":8886,"12956":8602,"12957":9673,"12958":11210,"12959":10108,"12960":1077,"12961":11054,"12962":2100,"12963":9067,"12964":4021,"12965":7438,"12966":6479,"12967":8634,"12968":3964,"12969":483,"12970":7072,"12971":7099,"12972":3127,"12973":95,"12974":12460,"12975":2848,"12976":12957,"12977":14790,"12978":2178,"12979":8151,"12980":4916,"12981":11451,"12982":10810,"12983":4305,"12984":1795,"12985":10772,"12986":1539,"12987":11289,"12988":6702,"12989":14181,"12990":9918,"12991":35,"12992":271,"12993":13903,"12994":8849,"12995":10304,"12996":11191,"12997":5892,"12998":1173,"12999":11060,"13000":1392,"13001":2743,"13002":13689,"13003":13691,"13004":4258,"13005":12379,"13006":13401,"13007":10212,"13008":4833,"13009":11208,"13010":2663,"13011":10579,"13012":8149,"13013":9573,"13014":10460,"13015":14769,"13016":2052,"13017":9762,"13018":7964,"13019":2914,"13020":971,"13021":10868,"13022":6364,"13023":1000,"13024":2930,"13025":13973,"13026":2265,"13027":2746,"13028":6313,"13029":12801,"13030":13762,"13031":2586,"13032":10280,"13033":14282,"13034":4066,"13035":1658,"13036":11253,"13037":11414,"13038":1777,"13039":3031,"13040":7835,"13041":7077,"13042":757,"13043":7847,"13044":3389,"13045":5413,"13046":14173,"13047":10482,"13048":9375,"13049":9300,"13050":1965,"13051":11337,"13052":6861,"13053":1828,"13054":13931,"13055":5474,"13056":1948,"13057":12999,"13058":12631,"13059":1571,"13060":12654,"13061":11384,"13062":4694,"13063":7579,"13064":936,"13065":5523,"13066":6044,"13067":11782,"13068":2331,"13069":13449,"13070":11853,"13071":3821,"13072":8990,"13073":9664,"13074":4734,"13075":5932,"13076":3701,"13077":14299,"13078":9400,"13079":13517,"13080":4792,"13081":12870,"13082":6519,"13083":6335,"13084":3315,"13085":10397,"13086":4353,"13087":10163,"13088":4179,"13089":4348,"13090":12665,"13091":2766,"13092":1317,"13093":15049,"13094":3514,"13095":411,"13096":9319,"13097":1621,"13098":7624,"13099":15020,"13100":5914,"13101":12505,"13102":15144,"13103":6957,"13104":3703,"13105":138,"13106":5519,"13107":2661,"13108":14120,"13109":11919,"13110":11124,"13111":2143,"13112":9242,"13113":5970,"13114":8791,"13115":6742,"13116":2423,"13117":13431,"13118":8937,"13119":9752,"13120":12295,"13121":1159,"13122":10173,"13123":6721,"13124":14827,"13125":7685,"13126":5307,"13127":1237,"13128":10454,"13129":6765,"13130":9852,"13131":3730,"13132":3273,"13133":12748,"13134":36,"13135":6635,"13136":3412,"13137":6070,"13138":4111,"13139":1485,"13140":11540,"13141":975,"13142":8068,"13143":12887,"13144":8066,"13145":14005,"13146":15010,"13147":10996,"13148":5922,"13149":6237,"13150":1543,"13151":2716,"13152":5054,"13153":11806,"13154":6007,"13155":634,"13156":5358,"13157":12565,"13158":14168,"13159":1381,"13160":579,"13161":2747,"13162":8449,"13163":13282,"13164":4180,"13165":4001,"13166":5419,"13167":9986,"13168":3768,"13169":5704,"13170":6524,"13171":10300,"13172":14792,"13173":4843,"13174":9112,"13175":1592,"13176":207,"13177":705,"13178":3264,"13179":2830,"13180":14473,"13181":8165,"13182":3690,"13183":1051,"13184":12327,"13185":6407,"13186":11483,"13187":3868,"13188":6942,"13189":2170,"13190":10591,"13191":12032,"13192":4479,"13193":7108,"13194":586,"13195":13948,"13196":8171,"13197":669,"13198":11180,"13199":14631,"13200":13830,"13201":8026,"13202":12524,"13203":9301,"13204":4673,"13205":53,"13206":4116,"13207":14685,"13208":7221,"13209":9150,"13210":14291,"13211":4001,"13212":12619,"13213":14739,"13214":4870,"13215":6157,"13216":11177,"13217":11559,"13218":9682,"13219":2661,"13220":1662,"13221":11894,"13222":9136,"13223":14915,"13224":1732,"13225":3258,"13226":9834,"13227":7758,"13228":2963,"13229":11598,"13230":5092,"13231":6663,"13232":12194,"13233":7078,"13234":14535,"13235":13708,"13236":11243,"13237":5846,"13238":12825,"13239":2132,"13240":10929,"13241":7494,"13242":8594,"13243":3181,"13244":4341,"13245":1752,"13246":13322,"13247":197,"13248":13518,"13249":14744,"13250":9824,"13251":8053,"13252":11480,"13253":4744,"13254":4945,"13255":7519,"13256":3236,"13257":11755,"13258":6218,"13259":10534,"13260":1248,"13261":5503,"13262":6399,"13263":13875,"13264":10735,"13265":1435,"13266":3023,"13267":12334,"13268":4667,"13269":1965,"13270":13289,"13271":4914,"13272":7803,"13273":14977,"13274":8950,"13275":10575,"13276":13949,"13277":5734,"13278":14706,"13279":9095,"13280":13083,"13281":1988,"13282":4390,"13283":7902,"13284":6349,"13285":5903,"13286":11576,"13287":7250,"13288":4078,"13289":664,"13290":2450,"13291":1055,"13292":7824,"13293":10914,"13294":8386,"13295":5098,"13296":14453,"13297":8933,"13298":14054,"13299":3268,"13300":5117,"13301":954,"13302":13181,"13303":7162,"13304":2259,"13305":3650,"13306":2328,"13307":9568,"13308":13283,"13309":10469,"13310":2322,"13311":3867,"13312":13038,"13313":8660,"13314":7372,"13315":2910,"13316":9112,"13317":12803,"13318":4701,"13319":14051,"13320":1265,"13321":4034,"13322":15115,"13323":1830,"13324":6497,"13325":12663,"13326":6156,"13327":3654,"13328":7002,"13329":6763,"13330":10799,"13331":12611,"13332":2017,"13333":4500,"13334":1290,"13335":14478,"13336":11704,"13337":1535,"13338":4768,"13339":14106,"13340":603,"13341":11507,"13342":13805,"13343":8415,"13344":964,"13345":4950,"13346":5629,"13347":7482,"13348":13135,"13349":5072,"13350":12191,"13351":10102,"13352":14088,"13353":5033,"13354":12367,"13355":10533,"13356":9192,"13357":7010,"13358":7180,"13359":5473,"13360":13154,"13361":3938,"13362":11186,"13363":10574,"13364":7808,"13365":13938,"13366":4045,"13367":6484,"13368":5571,"13369":5722,"13370":7261,"13371":8978,"13372":5692,"13373":12993,"13374":14796,"13375":11328,"13376":4792,"13377":699,"13378":11686,"13379":6748,"13380":1444,"13381":10801,"13382":10735,"13383":15146,"13384":2257,"13385":14789,"13386":10577,"13387":11893,"13388":11003,"13389":13220,"13390":7376,"13391":3004,"13392":1007,"13393":12652,"13394":12201,"13395":8779,"13396":479,"13397":1658,"13398":12577,"13399":463,"13400":11782,"13401":5039,"13402":2373,"13403":5340,"13404":7567,"13405":8175,"13406":10368,"13407":7204,"13408":10115,"13409":4816,"13410":4804,"13411":12829,"13412":9279,"13413":14122,"13414":7846,"13415":5951,"13416":6238,"13417":14197,"13418":15143,"13419":3901,"13420":4576,"13421":8905,"13422":5924,"13423":14743,"13424":14534,"13425":3612,"13426":860,"13427":1594,"13428":7609,"13429":14470,"13430":5283,"13431":10110,"13432":3129,"13433":11669,"13434":4523,"13435":11635,"13436":3888,"13437":8228,"13438":7253,"13439":7577,"13440":9071,"13441":6123,"13442":14658,"13443":12477,"13444":5611,"13445":7398,"13446":5823,"13447":288,"13448":9890,"13449":1864,"13450":13146,"13451":3323,"13452":6238,"13453":5062,"13454":7733,"13455":10414,"13456":576,"13457":5091,"13458":8384,"13459":498,"13460":11612,"13461":3829,"13462":15033,"13463":9881,"13464":10477,"13465":12100,"13466":4443,"13467":830,"13468":7672,"13469":7462,"13470":12262,"13471":12069,"13472":583,"13473":3648,"13474":13511,"13475":5997,"13476":12599,"13477":3869,"13478":3830,"13479":3368,"13480":14882,"13481":3857,"13482":5961,"13483":1001,"13484":13318,"13485":10355,"13486":1303,"13487":9147,"13488":11343,"13489":3542,"13490":6632,"13491":4780,"13492":13131,"13493":5189,"13494":7802,"13495":14013,"13496":7566,"13497":3668,"13498":9710,"13499":5287,"13500":14034,"13501":13023,"13502":12831,"13503":7580,"13504":6716,"13505":371,"13506":13836,"13507":11907,"13508":10813,"13509":4118,"13510":8503,"13511":2705,"13512":5902,"13513":11832,"13514":12267,"13515":2751,"13516":12069,"13517":11273,"13518":8606,"13519":12198,"13520":11744,"13521":10125,"13522":5010,"13523":5010,"13524":1580,"13525":11241,"13526":3088,"13527":5359,"13528":6673,"13529":13383,"13530":15067,"13531":14152,"13532":11534,"13533":8702,"13534":12916,"13535":3898,"13536":1950,"13537":4655,"13538":14873,"13539":14571,"13540":9049,"13541":1380,"13542":8126,"13543":5557,"13544":8626,"13545":10677,"13546":6138,"13547":11373,"13548":11282,"13549":13590,"13550":9451,"13551":6356,"13552":5333,"13553":2854,"13554":14113,"13555":4893,"13556":2609,"13557":6279,"13558":8007,"13559":8227,"13560":5208,"13561":14785,"13562":11664,"13563":14358,"13564":14653,"13565":12752,"13566":10213,"13567":7204,"13568":13045,"13569":1011,"13570":951,"13571":6904,"13572":3139,"13573":3686,"13574":10113,"13575":11050,"13576":408,"13577":12934,"13578":3824,"13579":8314,"13580":5344,"13581":7846,"13582":10410,"13583":14715,"13584":415,"13585":13177,"13586":12002,"13587":11017,"13588":3623,"13589":8461,"13590":14956,"13591":492,"13592":10059,"13593":14713,"13594":3879,"13595":1061,"13596":11264,"13597":2403,"13598":12185,"13599":9297,"13600":13627,"13601":4866,"13602":3219,"13603":3332,"13604":5949,"13605":7934,"13606":6917,"13607":8991,"13608":3363,"13609":1893,"13610":9933,"13611":13175,"13612":12892,"13613":6257,"13614":2433,"13615":337,"13616":12839,"13617":11550,"13618":12410,"13619":14425,"13620":1680,"13621":6391,"13622":13815,"13623":7586,"13624":7939,"13625":1781,"13626":8150,"13627":12446,"13628":14214,"13629":10321,"13630":7325,"13631":13612,"13632":3723,"13633":7993,"13634":9858,"13635":8967,"13636":9110,"13637":12524,"13638":10167,"13639":11624,"13640":4914,"13641":3380,"13642":1928,"13643":14795,"13644":9715,"13645":323,"13646":14660,"13647":11446,"13648":3557,"13649":4818,"13650":10157,"13651":14072,"13652":7043,"13653":4024,"13654":7516,"13655":1018,"13656":8891,"13657":335,"13658":9883,"13659":7395,"13660":2587,"13661":13436,"13662":7192,"13663":8689,"13664":670,"13665":12307,"13666":5777,"13667":8853,"13668":9398,"13669":8050,"13670":5883,"13671":6872,"13672":15090,"13673":14902,"13674":13498,"13675":6437,"13676":11861,"13677":10118,"13678":12030,"13679":599,"13680":5764,"13681":5883,"13682":312,"13683":15057,"13684":7350,"13685":9839,"13686":10188,"13687":7987,"13688":3806,"13689":14505,"13690":12895,"13691":14105,"13692":2363,"13693":11721,"13694":8756,"13695":701,"13696":2206,"13697":13317,"13698":14224,"13699":13076,"13700":10065,"13701":10665,"13702":10566,"13703":2217,"13704":9968,"13705":805,"13706":11127,"13707":917,"13708":8504,"13709":6858,"13710":3419,"13711":7032,"13712":7364,"13713":400,"13714":3996,"13715":14707,"13716":6255,"13717":5851,"13718":34,"13719":14454,"13720":2226,"13721":11123,"13722":14107,"13723":8924,"13724":12514,"13725":2719,"13726":399,"13727":13058,"13728":8004,"13729":4121,"13730":4278,"13731":15072,"13732":3383,"13733":2768,"13734":3820,"13735":1148,"13736":8888,"13737":5606,"13738":749,"13739":5465,"13740":5179,"13741":5602,"13742":4477,"13743":13035,"13744":5620,"13745":10811,"13746":12567,"13747":8247,"13748":14795,"13749":5182,"13750":13424,"13751":8826,"13752":7961,"13753":11721,"13754":13989,"13755":1177,"13756":1638,"13757":3436,"13758":527,"13759":6928,"13760":14354,"13761":10340,"13762":6002,"13763":9617,"13764":1982,"13765":4384,"13766":3681,"13767":5089,"13768":1202,"13769":5235,"13770":94,"13771":4133,"13772":3553,"13773":4127,"13774":10771,"13775":13150,"13776":3604,"13777":11471,"13778":5479,"13779":6147,"13780":5064,"13781":10630,"13782":2654,"13783":9501,"13784":9786,"13785":2319,"13786":11156,"13787":11774,"13788":8603,"13789":3002,"13790":13290,"13791":2031,"13792":6701,"13793":8298,"13794":12428,"13795":3398,"13796":6490,"13797":9951,"13798":5832,"13799":5942,"13800":11326,"13801":10292,"13802":9032,"13803":3477,"13804":53,"13805":7792,"13806":9203,"13807":9126,"13808":14646,"13809":14821,"13810":5481,"13811":5041,"13812":8769,"13813":80,"13814":12807,"13815":5363,"13816":11562,"13817":13504,"13818":3138,"13819":9387,"13820":13391,"13821":3458,"13822":2978,"13823":1853,"13824":5389,"13825":6613,"13826":3536,"13827":9023,"13828":12596,"13829":12259,"13830":14980,"13831":1232,"13832":2687,"13833":955,"13834":4273,"13835":5419,"13836":8394,"13837":212,"13838":6449,"13839":8785,"13840":2763,"13841":3124,"13842":4613,"13843":1051,"13844":12182,"13845":7493,"13846":4822,"13847":1763,"13848":709,"13849":6536,"13850":5398,"13851":9523,"13852":4540,"13853":1608,"13854":3042,"13855":7430,"13856":6301,"13857":12706,"13858":719,"13859":9423,"13860":12015,"13861":9920,"13862":13323,"13863":5789,"13864":7028,"13865":10116,"13866":2021,"13867":1536,"13868":8615,"13869":14423,"13870":362,"13871":2304,"13872":11306,"13873":9294,"13874":3073,"13875":6476,"13876":6044,"13877":5258,"13878":13152,"13879":12568,"13880":14130,"13881":8686,"13882":6568,"13883":11016,"13884":8353,"13885":3461,"13886":10424,"13887":11591,"13888":651,"13889":10340,"13890":4969,"13891":14388,"13892":14330,"13893":7128,"13894":1756,"13895":8632,"13896":6404,"13897":4506,"13898":4699,"13899":11962,"13900":7084,"13901":6380,"13902":3642,"13903":3190,"13904":7022,"13905":2376,"13906":8891,"13907":2262,"13908":1339,"13909":7925,"13910":4342,"13911":12174,"13912":9559,"13913":8507,"13914":4179,"13915":8999,"13916":10391,"13917":13021,"13918":6921,"13919":5722,"13920":14644,"13921":2020,"13922":2138,"13923":8161,"13924":14044,"13925":12914,"13926":2151,"13927":5335,"13928":3368,"13929":4172,"13930":3538,"13931":7482,"13932":13245,"13933":10711,"13934":9900,"13935":13055,"13936":15000,"13937":10393,"13938":9423,"13939":14749,"13940":7038,"13941":13270,"13942":9101,"13943":13662,"13944":13663,"13945":15029,"13946":8685,"13947":7521,"13948":4747,"13949":10387,"13950":6241,"13951":9991,"13952":8885,"13953":9142,"13954":11140,"13955":4147,"13956":12594,"13957":7408,"13958":2014,"13959":14039,"13960":7658,"13961":9267,"13962":5782,"13963":11873,"13964":6458,"13965":3888,"13966":3420,"13967":11764,"13968":6592,"13969":8924,"13970":12593,"13971":12769,"13972":14707,"13973":7082,"13974":10072,"13975":1290,"13976":11143,"13977":3676,"13978":1161,"13979":8580,"13980":3262,"13981":2042,"13982":6253,"13983":4108,"13984":5304,"13985":11029,"13986":8412,"13987":520,"13988":12794,"13989":5455,"13990":3647,"13991":1034,"13992":9597,"13993":3984,"13994":6726,"13995":427,"13996":11616,"13997":999,"13998":4450,"13999":5687,"14000":13044,"14001":6942,"14002":10988,"14003":4921,"14004":3840,"14005":14667,"14006":13990,"14007":3297,"14008":8980,"14009":6993,"14010":14720,"14011":2603,"14012":6029,"14013":3355,"14014":381,"14015":8573,"14016":8399,"14017":3423,"14018":825,"14019":11622,"14020":11178,"14021":136,"14022":11665,"14023":9486,"14024":1104,"14025":8398,"14026":11967,"14027":3078,"14028":3125,"14029":9135,"14030":11289,"14031":881,"14032":12661,"14033":5079,"14034":11650,"14035":13815,"14036":5117,"14037":13279,"14038":6225,"14039":368,"14040":14184,"14041":5844,"14042":6511,"14043":10296,"14044":14049,"14045":3245,"14046":692,"14047":8358,"14048":4213,"14049":3242,"14050":13182,"14051":8329,"14052":4397,"14053":9812,"14054":2732,"14055":7811,"14056":14529,"14057":14901,"14058":1682,"14059":793,"14060":3650,"14061":4767,"14062":6019,"14063":7801,"14064":395,"14065":2482,"14066":1821,"14067":3394,"14068":1118,"14069":7285,"14070":1537,"14071":10640,"14072":3690,"14073":10567,"14074":11487,"14075":10846,"14076":6229,"14077":1452,"14078":13374,"14079":13132,"14080":5521,"14081":13499,"14082":3586,"14083":8078,"14084":7570,"14085":2981,"14086":4990,"14087":11911,"14088":1489,"14089":9511,"14090":6566,"14091":13559,"14092":8933,"14093":1448,"14094":243,"14095":7020,"14096":11592,"14097":3898,"14098":13933,"14099":14501,"14100":10595,"14101":1800,"14102":12874,"14103":8025,"14104":13465,"14105":5003,"14106":1678,"14107":7696,"14108":2140,"14109":12959,"14110":13252,"14111":5785,"14112":4771,"14113":5340,"14114":6821,"14115":11163,"14116":4035,"14117":4475,"14118":14731,"14119":8055,"14120":5765,"14121":10123,"14122":12694,"14123":5147,"14124":6545,"14125":3422,"14126":9665,"14127":1894,"14128":1802,"14129":15035,"14130":7589,"14131":6927,"14132":13385,"14133":13230,"14134":8351,"14135":15019,"14136":344,"14137":13966,"14138":7677,"14139":11311,"14140":242,"14141":3912,"14142":2966,"14143":4712,"14144":8097,"14145":7903,"14146":13284,"14147":6662,"14148":320,"14149":786,"14150":6409,"14151":10328,"14152":11996,"14153":10634,"14154":10589,"14155":8991,"14156":6807,"14157":1495,"14158":13311,"14159":6203,"14160":13932,"14161":13527,"14162":11940,"14163":9841,"14164":4728,"14165":12061,"14166":13718,"14167":12616,"14168":13210,"14169":12216,"14170":6596,"14171":1199,"14172":5782,"14173":5029,"14174":3394,"14175":4696,"14176":5478,"14177":13276,"14178":5290,"14179":3321,"14180":4741,"14181":14036,"14182":13707,"14183":8652,"14184":5242,"14185":3747,"14186":5029,"14187":549,"14188":7346,"14189":231,"14190":5335,"14191":11737,"14192":557,"14193":8724,"14194":11753,"14195":9037,"14196":7472,"14197":6633,"14198":12763,"14199":1682,"14200":13419,"14201":1986,"14202":9049,"14203":2185,"14204":7382,"14205":3754,"14206":11940,"14207":1371,"14208":10987,"14209":14122,"14210":2315,"14211":9431,"14212":7609,"14213":5134,"14214":11260,"14215":11703,"14216":986,"14217":4226,"14218":12753,"14219":3727,"14220":10034,"14221":9194,"14222":5131,"14223":4587,"14224":11532,"14225":3703,"14226":3456,"14227":12369,"14228":12982,"14229":14606,"14230":5190,"14231":3103,"14232":1050,"14233":7202,"14234":4582,"14235":4060,"14236":7279,"14237":6704,"14238":12897,"14239":338,"14240":9258,"14241":6066,"14242":10025,"14243":9041,"14244":13731,"14245":15066,"14246":7915,"14247":830,"14248":14496,"14249":5204,"14250":4910,"14251":11484,"14252":8618,"14253":159,"14254":13364,"14255":6977,"14256":7170,"14257":7366,"14258":6420,"14259":9311,"14260":548,"14261":11659,"14262":11119,"14263":3716,"14264":11186,"14265":5451,"14266":9463,"14267":6527,"14268":9838,"14269":3041,"14270":5399,"14271":6346,"14272":13817,"14273":5418,"14274":5718,"14275":8211,"14276":10698,"14277":174,"14278":12918,"14279":1545,"14280":1062,"14281":4676,"14282":7810,"14283":1689,"14284":14305,"14285":3793,"14286":15113,"14287":14770,"14288":9699,"14289":10769,"14290":541,"14291":6247,"14292":8073,"14293":5405,"14294":12503,"14295":11188,"14296":5047,"14297":8218,"14298":3344,"14299":1514,"14300":6617,"14301":14882,"14302":10355,"14303":4778,"14304":12235,"14305":8690,"14306":1189,"14307":11650,"14308":7357,"14309":6503,"14310":10968,"14311":11845,"14312":13296,"14313":9700,"14314":10500,"14315":1584,"14316":516,"14317":9218,"14318":7569,"14319":4618,"14320":203,"14321":3730,"14322":8526,"14323":14157,"14324":9602,"14325":2488,"14326":1441,"14327":9951,"14328":7416,"14329":7507,"14330":8622,"14331":672,"14332":31,"14333":3920,"14334":14697,"14335":5228,"14336":5128,"14337":14302,"14338":3635,"14339":5204,"14340":4031,"14341":4399,"14342":10776,"14343":10687,"14344":12153,"14345":3427,"14346":14050,"14347":3046,"14348":8737,"14349":12358,"14350":273,"14351":55,"14352":3302,"14353":11412,"14354":6506,"14355":11593,"14356":14581,"14357":6627,"14358":7702,"14359":9365,"14360":3510,"14361":6663,"14362":6167,"14363":2713,"14364":14990,"14365":15036,"14366":8109,"14367":7104,"14368":2080,"14369":1764,"14370":11619,"14371":8967,"14372":30,"14373":9608,"14374":6997,"14375":10590,"14376":6906,"14377":3901,"14378":5152,"14379":2875,"14380":3424,"14381":1372,"14382":10074,"14383":1654,"14384":10553,"14385":9335,"14386":1646,"14387":6743,"14388":786,"14389":14141,"14390":5079,"14391":8310,"14392":8890,"14393":5100,"14394":4490,"14395":589,"14396":12939,"14397":3434,"14398":153,"14399":10621,"14400":8170,"14401":7466,"14402":53,"14403":2643,"14404":15045,"14405":6532,"14406":13071,"14407":665,"14408":6579,"14409":14409,"14410":3317,"14411":11353,"14412":7519,"14413":14047,"14414":13067,"14415":14843,"14416":8622,"14417":9820,"14418":1357,"14419":5276,"14420":926,"14421":12756,"14422":12044,"14423":14214,"14424":8922,"14425":9752,"14426":5475,"14427":1114,"14428":14931,"14429":8502,"14430":9346,"14431":690,"14432":2558,"14433":8580,"14434":14871,"14435":6134,"14436":7542,"14437":2385,"14438":10258,"14439":8633,"14440":11326,"14441":6588,"14442":12576,"14443":2764,"14444":4587,"14445":2839,"14446":9905,"14447":875,"14448":14773,"14449":2154,"14450":4886,"14451":8100,"14452":10723,"14453":9203,"14454":7076,"14455":10223,"14456":6342,"14457":2502,"14458":9552,"14459":15079,"14460":2429,"14461":2293,"14462":5332,"14463":13768,"14464":12280,"14465":7009,"14466":12597,"14467":8143,"14468":8516,"14469":3453,"14470":13193,"14471":7658,"14472":1006,"14473":15148,"14474":177,"14475":7257,"14476":3496,"14477":2435,"14478":11515,"14479":11809,"14480":8380,"14481":13845,"14482":14598,"14483":12314,"14484":14230,"14485":2653,"14486":8580,"14487":3842,"14488":9151,"14489":7251,"14490":14137,"14491":11427,"14492":6251,"14493":14253,"14494":5843,"14495":8432,"14496":5781,"14497":24,"14498":7451,"14499":14823,"14500":11839,"14501":1015,"14502":7731,"14503":3515,"14504":4853,"14505":11349,"14506":14133,"14507":705,"14508":6288,"14509":4004,"14510":233,"14511":9879,"14512":13685,"14513":12246,"14514":1548,"14515":3793,"14516":8135,"14517":1086,"14518":6423,"14519":11098,"14520":3531,"14521":7182,"14522":8187,"14523":11345,"14524":971,"14525":2647,"14526":10902,"14527":2063,"14528":12268,"14529":4680,"14530":1898,"14531":2957,"14532":7269,"14533":1588,"14534":8773,"14535":7634,"14536":7245,"14537":1873,"14538":3830,"14539":1971,"14540":14063,"14541":9223,"14542":12305,"14543":9344,"14544":4847,"14545":10935,"14546":14638,"14547":14816,"14548":8712,"14549":12053,"14550":8027,"14551":6271,"14552":11317,"14553":11674,"14554":7007,"14555":8716,"14556":11425,"14557":7208,"14558":7127,"14559":2618,"14560":10295,"14561":2289,"14562":12497,"14563":6812,"14564":5148,"14565":8979,"14566":12658,"14567":11450,"14568":10612,"14569":12549,"14570":13825,"14571":8004,"14572":4804,"14573":10000,"14574":3928,"14575":4263,"14576":7468,"14577":5081,"14578":6569,"14579":1978,"14580":13942,"14581":8321,"14582":6240,"14583":14309,"14584":4750,"14585":6405,"14586":4451,"14587":12157,"14588":5391,"14589":13742,"14590":12131,"14591":4716,"14592":12432,"14593":1074,"14594":11743,"14595":7942,"14596":9340,"14597":5384,"14598":13622,"14599":9179,"14600":87,"14601":7890,"14602":7620,"14603":12619,"14604":2511,"14605":13878,"14606":10152,"14607":6502,"14608":8810,"14609":4783,"14610":5725,"14611":2645,"14612":1463,"14613":1011,"14614":1153,"14615":6722,"14616":10399,"14617":13194,"14618":5673,"14619":5019,"14620":2747,"14621":11119,"14622":14673,"14623":5047,"14624":319,"14625":4800,"14626":5002,"14627":727,"14628":11383,"14629":403,"14630":5105,"14631":8747,"14632":13942,"14633":11019,"14634":8705,"14635":9656,"14636":6880,"14637":1490,"14638":3726,"14639":14321,"14640":6549,"14641":591,"14642":7595,"14643":13220,"14644":5919,"14645":5439,"14646":10187,"14647":7163,"14648":7,"14649":12150,"14650":12533,"14651":13977,"14652":10308,"14653":3319,"14654":11675,"14655":4438,"14656":6247,"14657":8807,"14658":4471,"14659":13331,"14660":10077,"14661":9559,"14662":11011,"14663":277,"14664":7781,"14665":8562,"14666":4270,"14667":10104,"14668":8321,"14669":7321,"14670":14341,"14671":5250,"14672":11109,"14673":14391,"14674":5883,"14675":2386,"14676":13689,"14677":824,"14678":6754,"14679":264,"14680":13974,"14681":13698,"14682":11370,"14683":5894,"14684":2706,"14685":3917,"14686":2842,"14687":13464,"14688":2341,"14689":304,"14690":15122,"14691":11354,"14692":8549,"14693":1308,"14694":11008,"14695":7457,"14696":8016,"14697":13585,"14698":12167,"14699":5375,"14700":3812,"14701":6585,"14702":779,"14703":14728,"14704":10997,"14705":5321,"14706":1757,"14707":8320,"14708":19,"14709":10834,"14710":3604,"14711":13965,"14712":161,"14713":7955,"14714":8812,"14715":8612,"14716":359,"14717":5322,"14718":3362,"14719":1303,"14720":14740,"14721":5822,"14722":13216,"14723":6164,"14724":11101,"14725":8352,"14726":3986,"14727":14673,"14728":600,"14729":11688,"14730":3550,"14731":13692,"14732":3805,"14733":11534,"14734":13064,"14735":766,"14736":9236,"14737":9190,"14738":10861,"14739":11289,"14740":5165,"14741":7290,"14742":10937,"14743":4697,"14744":5156,"14745":10890,"14746":11465,"14747":13061,"14748":3524,"14749":8347,"14750":10380,"14751":10461,"14752":15091,"14753":2520,"14754":2368,"14755":8586,"14756":5443,"14757":8220,"14758":1253,"14759":9706,"14760":1036,"14761":9992,"14762":11795,"14763":901,"14764":10570,"14765":3383,"14766":9720,"14767":8191,"14768":3262,"14769":6964,"14770":4328,"14771":7046,"14772":10415,"14773":1752,"14774":956,"14775":8970,"14776":10554,"14777":1251,"14778":4342,"14779":7789,"14780":4943,"14781":8969,"14782":13608,"14783":3346,"14784":5834,"14785":8242,"14786":4325,"14787":1416,"14788":3009,"14789":2421,"14790":7860,"14791":5066,"14792":13882,"14793":8956,"14794":6487,"14795":12266,"14796":11853,"14797":3433,"14798":6622,"14799":8271,"14800":8492,"14801":13274,"14802":6012,"14803":1374,"14804":10243,"14805":13658,"14806":15032,"14807":12707,"14808":13138,"14809":12785,"14810":11908,"14811":5899,"14812":13339,"14813":4621,"14814":6027,"14815":9276,"14816":6274,"14817":5170,"14818":3663,"14819":8889,"14820":14291,"14821":7344,"14822":5225,"14823":2465,"14824":11701,"14825":13900,"14826":9242,"14827":7229,"14828":7652,"14829":549,"14830":3818,"14831":12682,"14832":11957,"14833":8977,"14834":8650,"14835":3802,"14836":12901,"14837":278,"14838":8270,"14839":2829,"14840":7966,"14841":3674,"14842":12669,"14843":9813,"14844":6560,"14845":3958,"14846":4316,"14847":3526,"14848":4309,"14849":5773,"14850":10401,"14851":10186,"14852":13618,"14853":8618,"14854":10843,"14855":7731,"14856":7908,"14857":13605,"14858":10531,"14859":3512,"14860":8498,"14861":13205,"14862":6119,"14863":4155,"14864":5578,"14865":15047,"14866":3840,"14867":5403,"14868":3193,"14869":1445,"14870":367,"14871":11093,"14872":8168,"14873":1637,"14874":10372,"14875":2569,"14876":6342,"14877":3177,"14878":10031,"14879":6247,"14880":12022,"14881":1823,"14882":14272,"14883":10457,"14884":1846,"14885":12968,"14886":10966,"14887":15112,"14888":4881,"14889":14850,"14890":4825,"14891":14571,"14892":7275,"14893":13657,"14894":999,"14895":1668,"14896":1856,"14897":5850,"14898":9713,"14899":1988,"14900":6801,"14901":10114,"14902":245,"14903":3220,"14904":11474,"14905":7817,"14906":2661,"14907":13201,"14908":3458,"14909":14022,"14910":5620,"14911":5493,"14912":14857,"14913":14354,"14914":1407,"14915":3094,"14916":1773,"14917":10420,"14918":3197,"14919":11739,"14920":5622,"14921":10733,"14922":14449,"14923":2662,"14924":10176,"14925":3358,"14926":775,"14927":380,"14928":9297,"14929":3393,"14930":5411,"14931":6322,"14932":14416,"14933":13910,"14934":1337,"14935":3326,"14936":13495,"14937":3259,"14938":10528,"14939":3493,"14940":14959,"14941":9274,"14942":13916,"14943":2855,"14944":3581,"14945":2241,"14946":4962,"14947":7396,"14948":6991,"14949":13236,"14950":14918,"14951":14064,"14952":13928,"14953":5190,"14954":10975,"14955":1168,"14956":11452,"14957":11231,"14958":10635,"14959":14835,"14960":12091,"14961":10262,"14962":5336,"14963":6984,"14964":5782,"14965":3118,"14966":3760,"14967":9534,"14968":12427,"14969":5893,"14970":2808,"14971":5229,"14972":11126,"14973":5097,"14974":7300,"14975":252,"14976":3878,"14977":12448,"14978":4075,"14979":8943,"14980":5880,"14981":5566,"14982":4431,"14983":14878,"14984":11408,"14985":3208,"14986":11206,"14987":5428,"14988":2798,"14989":11807,"14990":4220,"14991":1348,"14992":8865,"14993":7465,"14994":12121,"14995":14529,"14996":12533,"14997":4021,"14998":11264,"14999":3802,"15000":13678,"15001":9927,"15002":11145,"15003":4230,"15004":5958,"15005":11260,"15006":9135,"15007":13630,"15008":11823,"15009":8546,"15010":486,"15011":11036,"15012":1489,"15013":7621,"15014":5795,"15015":10240,"15016":7832,"15017":10654,"15018":2921,"15019":7053,"15020":2601,"15021":13447,"15022":5611,"15023":2173,"15024":14456,"15025":7004,"15026":8973,"15027":919,"15028":121,"15029":1455,"15030":2170,"15031":11847,"15032":9323,"15033":4748,"15034":10174,"15035":5846,"15036":2353,"15037":1428,"15038":2636,"15039":558,"15040":6189,"15041":10962,"15042":7914,"15043":3328,"15044":9833,"15045":4840,"15046":344,"15047":4193,"15048":3223,"15049":3736,"15050":4474,"15051":6566,"15052":4437,"15053":14525,"15054":10314,"15055":12727,"15056":8447,"15057":7331,"15058":7182,"15059":8001,"15060":1469,"15061":10016,"15062":2632,"15063":9594,"15064":7333,"15065":325,"15066":7415,"15067":2599,"15068":1879,"15069":11752,"15070":12050,"15071":6710,"15072":8600,"15073":13208,"15074":6741,"15075":12537,"15076":9306,"15077":750,"15078":5185,"15079":1116,"15080":1895,"15081":8127,"15082":7879,"15083":4520,"15084":3711,"15085":5699,"15086":4141,"15087":11336,"15088":8533,"15089":9588,"15090":6295,"15091":13849,"15092":7152,"15093":6662,"15094":6068,"15095":10644,"15096":13247,"15097":7909,"15098":11376,"15099":7711,"15100":5598,"15101":4467,"15102":12164,"15103":1397,"15104":10072,"15105":2323,"15106":2028,"15107":14382,"15108":12425,"15109":14914,"15110":12523,"15111":7209,"15112":3957,"15113":8992,"15114":9957,"15115":12654,"15116":1857,"15117":338,"15118":7253,"15119":10319,"15120":2465,"15121":1043,"15122":8073,"15123":14740,"15124":438,"15125":11814,"15126":2961,"15127":9966,"15128":12995,"15129":12693,"15130":755,"15131":5929,"15132":8093,"15133":1649,"15134":10197,"15135":11159,"15136":2638,"15137":15075,"15138":3043,"15139":6847,"15140":203,"15141":7477,"15142":10448,"15143":2984,"15144":10755,"15145":13762,"15146":10579,"15147":5911,"15148":6944,"15149":2123,"15150":2014,"15151":3399,"15152":4165,"15153":13905,"15154":10474,"15155":7246,"15156":7919,"15157":6876,"15158":1217,"15159":1333,"15160":14983,"15161":13584,"15162":3812,"15163":1424,"15164":14202,"15165":5385,"15166":13782,"15167":3620,"15168":15091,"15169":2045,"15170":13541,"15171":3154,"15172":9087,"15173":167,"15174":3982,"15175":12185,"15176":2581,"15177":637,"15178":5180,"15179":1628,"15180":13615,"15181":8155,"15182":3486,"15183":5983,"15184":6371,"15185":9804,"15186":2739,"15187":4564,"15188":6627,"15189":9313,"15190":104,"15191":6726,"15192":1832,"15193":14273,"15194":7258,"15195":8528,"15196":4356,"15197":2274,"15198":13458,"15199":12607,"15200":1598,"15201":2232,"15202":8579,"15203":6933,"15204":11524,"15205":6385,"15206":14659,"15207":9880,"15208":11363,"15209":7636,"15210":12802,"15211":8861,"15212":6062,"15213":102,"15214":10353,"15215":11443,"15216":6333,"15217":14209,"15218":1551,"15219":2308,"15220":8583,"15221":1841,"15222":7660,"15223":11300,"15224":2828,"15225":2969,"15226":807,"15227":4066,"15228":6501,"15229":14949,"15230":2512,"15231":8867,"15232":9493,"15233":1855,"15234":5544,"15235":5239,"15236":564,"15237":11066,"15238":6193,"15239":1073,"15240":332,"15241":13312,"15242":8745,"15243":3906,"15244":8364,"15245":5439,"15246":2207,"15247":13098,"15248":13417,"15249":15008,"15250":13176,"15251":2567,"15252":11438,"15253":11843,"15254":2456,"15255":6401,"15256":14517,"15257":7105,"15258":6780,"15259":13926,"15260":13116,"15261":13873,"15262":1974,"15263":11023,"15264":7422,"15265":3342,"15266":13872,"15267":2052,"15268":4364,"15269":3562,"15270":11766,"15271":7547,"15272":6767,"15273":9614,"15274":9848,"15275":2227,"15276":7249,"15277":13401,"15278":5595,"15279":13936,"15280":5127,"15281":333,"15282":7227,"15283":2031,"15284":7021,"15285":7683,"15286":5259,"15287":6298,"15288":2748,"15289":2277,"15290":143,"15291":9405,"15292":6313,"15293":2069,"15294":2308,"15295":14027,"15296":9627,"15297":7559,"15298":2431,"15299":8835,"15300":11278,"15301":14441,"15302":953,"15303":11996,"15304":6535,"15305":11090,"15306":12109,"15307":10325,"15308":2855,"15309":3899,"15310":1963,"15311":14448,"15312":3287,"15313":5007,"15314":3284,"15315":13912,"15316":13919,"15317":11254,"15318":9161,"15319":8392,"15320":8515,"15321":1521,"15322":6687,"15323":13675,"15324":13181,"15325":6774,"15326":13570,"15327":6741,"15328":7569,"15329":12824,"15330":14609,"15331":11110,"15332":11265,"15333":12342,"15334":12469,"15335":14700,"15336":1369,"15337":14406,"15338":13435,"15339":6267,"15340":11322,"15341":5377,"15342":7253,"15343":4002,"15344":13098,"15345":13755,"15346":5980,"15347":14016,"15348":9386,"15349":10821,"15350":9967,"15351":12560,"15352":6663,"15353":4248,"15354":12659,"15355":5870,"15356":13423,"15357":12565,"15358":14184,"15359":1921,"15360":6289,"15361":879,"15362":4051,"15363":14285,"15364":10138,"15365":10625,"15366":6997,"15367":2191,"15368":6933,"15369":3290,"15370":6674,"15371":7598,"15372":10868,"15373":11584,"15374":6344,"15375":607,"15376":9500,"15377":12647,"15378":9051,"15379":2195,"15380":14429,"15381":7821,"15382":13517,"15383":840,"15384":11776,"15385":10549,"15386":1924,"15387":73,"15388":339,"15389":2941,"15390":10801,"15391":723,"15392":8728,"15393":14415,"15394":2033,"15395":5042,"15396":14469,"15397":8581,"15398":15112,"15399":8835,"15400":3345,"15401":8539,"15402":13406,"15403":7562,"15404":1278,"15405":2196,"15406":2573,"15407":9914,"15408":9618,"15409":4940,"15410":2265,"15411":6796,"15412":3500,"15413":11096,"15414":4720,"15415":10368,"15416":13012,"15417":2677,"15418":6177,"15419":15038,"15420":10012,"15421":6378,"15422":12340,"15423":11122,"15424":14619,"15425":4128,"15426":6451,"15427":13444,"15428":11524,"15429":8489,"15430":11737,"15431":12796,"15432":6528,"15433":11735,"15434":2767,"15435":8734,"15436":10517,"15437":9917,"15438":5172,"15439":4971,"15440":13058,"15441":11959,"15442":12635,"15443":6336,"15444":6107,"15445":14509,"15446":8057,"15447":8035,"15448":13775,"15449":5887,"15450":6968,"15451":10890,"15452":10345,"15453":1705,"15454":4697,"15455":9072,"15456":6347,"15457":14620,"15458":8476,"15459":14528,"15460":5583,"15461":444,"15462":915,"15463":5836,"15464":10289,"15465":1230,"15466":953,"15467":9018,"15468":1993,"15469":4473,"15470":2623,"15471":5907,"15472":5207,"15473":1409,"15474":7634,"15475":8239,"15476":1904,"15477":2511,"15478":8124,"15479":11773,"15480":8836,"15481":11593,"15482":9840,"15483":10640,"15484":6272,"15485":9666,"15486":9377,"15487":9277,"15488":4873,"15489":11539,"15490":8289,"15491":5474,"15492":10075,"15493":4232,"15494":5955,"15495":12178,"15496":13842,"15497":5269,"15498":13947,"15499":2924,"15500":2041,"15501":201,"15502":1208,"15503":2407,"15504":9046,"15505":13624,"15506":8017,"15507":2254,"15508":1323,"15509":5482,"15510":607,"15511":6113,"15512":12844,"15513":1466,"15514":6320,"15515":270,"15516":7693,"15517":1633,"15518":8251,"15519":15106,"15520":10742,"15521":14826,"15522":7907,"15523":14347,"15524":2132,"15525":6155,"15526":12475,"15527":12648,"15528":13576,"15529":6836,"15530":6372,"15531":1418,"15532":3325,"15533":5849,"15534":7029,"15535":9909,"15536":12346,"15537":10994,"15538":4498,"15539":7806,"15540":1934,"15541":3598,"15542":474,"15543":5337,"15544":7581,"15545":13542,"15546":1885,"15547":152,"15548":8268,"15549":12765,"15550":4377,"15551":4950,"15552":5429,"15553":1311,"15554":6757,"15555":3785,"15556":11556,"15557":9243,"15558":9955,"15559":14000,"15560":6719,"15561":14095,"15562":9437,"15563":27,"15564":4427,"15565":8182,"15566":9742,"15567":6048,"15568":7295,"15569":9896,"15570":4010,"15571":14350,"15572":4395,"15573":5799,"15574":3042,"15575":7724,"15576":12968,"15577":1963,"15578":10811,"15579":11722,"15580":2093,"15581":9146,"15582":10602,"15583":579,"15584":5244,"15585":7159,"15586":8522,"15587":7713,"15588":14465,"15589":585,"15590":2253,"15591":12993,"15592":11728,"15593":3141,"15594":9485,"15595":39,"15596":9829,"15597":4149,"15598":11233,"15599":3844,"15600":14176,"15601":11877,"15602":13016,"15603":10158,"15604":11321,"15605":1392,"15606":4988,"15607":7059,"15608":10737,"15609":12524,"15610":6053,"15611":14453,"15612":7790,"15613":7090,"15614":5694,"15615":1545,"15616":7772,"15617":2546,"15618":9236,"15619":10389,"15620":1727,"15621":9007,"15622":4707,"15623":15006,"15624":256,"15625":13533,"15626":7127,"15627":5631,"15628":2628,"15629":9511,"15630":13722,"15631":13042,"15632":14902,"15633":1467,"15634":2953,"15635":2154,"15636":369,"15637":13951,"15638":14153,"15639":13364,"15640":9999,"15641":13839,"15642":5518,"15643":10790,"15644":7116,"15645":4585,"15646":8047,"15647":3489,"15648":7508,"15649":2855,"15650":9067,"15651":12468,"15652":12165,"15653":763,"15654":13992,"15655":14878,"15656":7903,"15657":2451,"15658":9814,"15659":58,"15660":361,"15661":3493,"15662":376,"15663":3882,"15664":3852,"15665":2113,"15666":3067,"15667":13822,"15668":1385,"15669":12767,"15670":297,"15671":10563,"15672":4237,"15673":3381,"15674":9600,"15675":13091,"15676":13321,"15677":428,"15678":7076,"15679":9680,"15680":14960,"15681":13902,"15682":10781,"15683":12097,"15684":3422,"15685":3269,"15686":4867,"15687":10789,"15688":12088,"15689":14230,"15690":480,"15691":14337,"15692":5229,"15693":6325,"15694":4802,"15695":9304,"15696":418,"15697":7331,"15698":6208,"15699":5082,"15700":12709,"15701":10430,"15702":10292,"15703":261,"15704":14541,"15705":10566,"15706":1819,"15707":7832,"15708":7739,"15709":530,"15710":14478,"15711":13318,"15712":5990,"15713":6357,"15714":14398,"15715":1101,"15716":6167,"15717":9221,"15718":4879,"15719":3232,"15720":1090,"15721":13687,"15722":9880,"15723":4438,"15724":6818,"15725":11558,"15726":510,"15727":797,"15728":13175,"15729":11613,"15730":11764,"15731":10681,"15732":7249,"15733":14072,"15734":5603,"15735":14373,"15736":4324,"15737":4901,"15738":13859,"15739":10912,"15740":12264,"15741":14290,"15742":13061,"15743":5526,"15744":8341,"15745":8853,"15746":5489,"15747":8353,"15748":6692,"15749":6226,"15750":10158,"15751":9236,"15752":8282,"15753":13371,"15754":12853,"15755":15127,"15756":6294,"15757":10186,"15758":7977,"15759":10857,"15760":13169,"15761":11863,"15762":11521,"15763":13851,"15764":5264,"15765":15126,"15766":4032,"15767":5380,"15768":7263,"15769":2301,"15770":11895,"15771":13435,"15772":12314,"15773":3807,"15774":4345,"15775":5438,"15776":2935,"15777":15027,"15778":12976,"15779":7536,"15780":13494,"15781":7722,"15782":7021,"15783":4612,"15784":5748,"15785":12645,"15786":11209,"15787":8250,"15788":7922,"15789":13448,"15790":1937,"15791":10813,"15792":11311,"15793":3832,"15794":7529,"15795":13228,"15796":2951,"15797":9994,"15798":14029,"15799":9235,"15800":14591,"15801":5084,"15802":1994,"15803":3534,"15804":7796,"15805":11500,"15806":3605,"15807":4947,"15808":3118,"15809":11131,"15810":5486,"15811":9714,"15812":12115,"15813":9085,"15814":12574,"15815":1314,"15816":9893,"15817":3240,"15818":12810,"15819":3511,"15820":381,"15821":4287,"15822":11027,"15823":4564,"15824":11662,"15825":7761,"15826":9984,"15827":25,"15828":7225,"15829":2771,"15830":9191,"15831":8045,"15832":1348,"15833":1569,"15834":8048,"15835":7592,"15836":5468,"15837":5323,"15838":9450,"15839":9191,"15840":14160,"15841":12212,"15842":2932,"15843":13340,"15844":8268,"15845":2711,"15846":12844,"15847":13232,"15848":13917,"15849":13218,"15850":11781,"15851":8976,"15852":13898,"15853":4260,"15854":12267,"15855":15059,"15856":5645,"15857":914,"15858":11008,"15859":8206,"15860":2733,"15861":8579,"15862":13006,"15863":13144,"15864":7544,"15865":362,"15866":14899,"15867":5367,"15868":8828,"15869":1627,"15870":11824,"15871":11074,"15872":14411,"15873":9748,"15874":398,"15875":1499,"15876":5280,"15877":1303,"15878":292,"15879":13835,"15880":6584,"15881":11994,"15882":481,"15883":3931,"15884":7737,"15885":9948,"15886":13755,"15887":11304,"15888":13684,"15889":64,"15890":14719,"15891":8813,"15892":14717,"15893":9912,"15894":6154,"15895":10863,"15896":14651,"15897":6203,"15898":5154,"15899":3140,"15900":3017,"15901":3444,"15902":9901,"15903":10266,"15904":9503,"15905":12698,"15906":6643,"15907":9348,"15908":6242,"15909":9524,"15910":6961,"15911":11168,"15912":10982,"15913":8175,"15914":5945,"15915":2153,"15916":10795,"15917":6826,"15918":11050,"15919":13132,"15920":12698,"15921":10299,"15922":14828,"15923":14571,"15924":12620,"15925":10886,"15926":4875,"15927":8353,"15928":15106,"15929":12918,"15930":13993,"15931":6054,"15932":13324,"15933":3913,"15934":9658,"15935":1744,"15936":3639,"15937":9175,"15938":14192,"15939":676,"15940":10750,"15941":4379,"15942":5716,"15943":10745,"15944":935,"15945":182,"15946":9900,"15947":11798,"15948":12658,"15949":6966,"15950":12393,"15951":14288,"15952":8268,"15953":13208,"15954":702,"15955":4213,"15956":6415,"15957":8305,"15958":503,"15959":5998,"15960":3959,"15961":13507,"15962":2839,"15963":11631,"15964":11643,"15965":12412,"15966":10529,"15967":8478,"15968":2142,"15969":9756,"15970":5141,"15971":12670,"15972":5014,"15973":11,"15974":8970,"15975":3272,"15976":639,"15977":9584,"15978":2343,"15979":12863,"15980":7215,"15981":9653,"15982":6392,"15983":11104,"15984":13378,"15985":346,"15986":5906,"15987":3795,"15988":12622,"15989":10039,"15990":2487,"15991":10452,"15992":6550,"15993":9912,"15994":9140,"15995":11706,"15996":5706,"15997":690,"15998":10299,"15999":1261,"16000":4571,"16001":10266,"16002":921,"16003":2551,"16004":2525,"16005":8352,"16006":11388,"16007":8998,"16008":7876,"16009":10700,"16010":570,"16011":11670,"16012":6621,"16013":13727,"16014":8385,"16015":11926,"16016":11382,"16017":6815,"16018":10275,"16019":598,"16020":6151,"16021":4407,"16022":6557,"16023":4438,"16024":1557,"16025":14491,"16026":7230,"16027":3702,"16028":8052,"16029":9267,"16030":8119,"16031":10923,"16032":2285,"16033":9706,"16034":2691,"16035":5418,"16036":3905,"16037":6594,"16038":466,"16039":11382,"16040":253,"16041":10657,"16042":3110,"16043":12470,"16044":8652,"16045":7363,"16046":4167,"16047":940,"16048":6437,"16049":15056,"16050":3749,"16051":11147,"16052":6695,"16053":1794,"16054":4301,"16055":7004,"16056":13628,"16057":5019,"16058":5796,"16059":7826,"16060":12956,"16061":14120,"16062":3725,"16063":12299,"16064":10573,"16065":1087,"16066":4426,"16067":2927,"16068":5870,"16069":8244,"16070":6154,"16071":6644,"16072":1047,"16073":2656,"16074":1824,"16075":6040,"16076":11074,"16077":4567,"16078":14954,"16079":9151,"16080":1518,"16081":5909,"16082":10092,"16083":13047,"16084":8897,"16085":146,"16086":3916,"16087":7084,"16088":6978,"16089":6242,"16090":4036,"16091":6547,"16092":13144,"16093":11282,"16094":8847,"16095":10263,"16096":14109,"16097":12319,"16098":6577,"16099":9839,"16100":8105,"16101":529,"16102":12995,"16103":10687,"16104":5774,"16105":7433,"16106":10565,"16107":3583,"16108":3474,"16109":14366,"16110":10747,"16111":4947,"16112":10391,"16113":11099,"16114":1346,"16115":12168,"16116":12698,"16117":12411,"16118":10686,"16119":951,"16120":2840,"16121":643,"16122":12679,"16123":11381,"16124":10702,"16125":10750,"16126":13647,"16127":15036,"16128":242,"16129":1200,"16130":13805,"16131":11414,"16132":14098,"16133":726,"16134":4633,"16135":1380,"16136":13570,"16137":6308,"16138":1101,"16139":2390,"16140":1297,"16141":11963,"16142":1394,"16143":13865,"16144":12521,"16145":7186,"16146":148,"16147":3085,"16148":1120,"16149":14786,"16150":14096,"16151":4109,"16152":13391,"16153":6967,"16154":7969,"16155":11657,"16156":4935,"16157":5979,"16158":8961,"16159":1735,"16160":8152,"16161":65,"16162":14699,"16163":5484,"16164":13057,"16165":14150,"16166":12285,"16167":12449,"16168":1414,"16169":2240,"16170":7449,"16171":8809,"16172":10251,"16173":6583,"16174":14914,"16175":6032,"16176":12732,"16177":1452,"16178":9363,"16179":9536,"16180":5152,"16181":2357,"16182":1541,"16183":2088,"16184":14596,"16185":14245,"16186":1232,"16187":781,"16188":1157,"16189":379,"16190":11460,"16191":3573,"16192":1574,"16193":7648,"16194":3965,"16195":2349,"16196":3136,"16197":14840,"16198":38,"16199":11287,"16200":7036,"16201":2052,"16202":6175,"16203":12703,"16204":12291,"16205":9130,"16206":2136,"16207":8581,"16208":84,"16209":12875,"16210":11168,"16211":14862,"16212":1391,"16213":8492,"16214":8538,"16215":992,"16216":6150,"16217":10273,"16218":4109,"16219":5953,"16220":11659,"16221":2263,"16222":8888,"16223":9415,"16224":831,"16225":198,"16226":5003,"16227":8547,"16228":5730,"16229":12383,"16230":9617,"16231":9852,"16232":4409,"16233":14026,"16234":244,"16235":9196,"16236":14883,"16237":11821,"16238":14493,"16239":7424,"16240":7648,"16241":14776,"16242":10369,"16243":875,"16244":2299,"16245":12052,"16246":11743,"16247":8253,"16248":13847,"16249":4513,"16250":1371,"16251":3999,"16252":12049,"16253":748,"16254":3235,"16255":10932,"16256":14010,"16257":4888,"16258":1955,"16259":1876,"16260":13680,"16261":10549,"16262":9223,"16263":12454,"16264":7912,"16265":7632,"16266":12807,"16267":11347,"16268":9925,"16269":12656,"16270":6508,"16271":10843,"16272":11034,"16273":3612,"16274":8297,"16275":28,"16276":8932,"16277":7710,"16278":7320,"16279":5300,"16280":13171,"16281":13635,"16282":10481,"16283":4919,"16284":195,"16285":3838,"16286":10425,"16287":7682,"16288":7645,"16289":14902,"16290":8437,"16291":7220,"16292":5812,"16293":12080,"16294":2816,"16295":10894,"16296":9836,"16297":10504,"16298":1149,"16299":2479,"16300":185,"16301":12570,"16302":6653,"16303":11823,"16304":2257,"16305":14755,"16306":3134,"16307":11485,"16308":14961,"16309":6470,"16310":9270,"16311":11511,"16312":6339,"16313":4772,"16314":7558,"16315":1407,"16316":6530,"16317":12753,"16318":14881,"16319":7975,"16320":12410,"16321":10891,"16322":9412,"16323":2313,"16324":12940,"16325":12672,"16326":8258,"16327":6822,"16328":1353,"16329":1713,"16330":2312,"16331":5859,"16332":11666,"16333":5185,"16334":7554,"16335":8395,"16336":10365,"16337":10569,"16338":5343,"16339":3235,"16340":6689,"16341":798,"16342":3046,"16343":6104,"16344":9733,"16345":3017,"16346":1425,"16347":10629,"16348":14663,"16349":289,"16350":11567,"16351":10128,"16352":2990,"16353":10454,"16354":11662,"16355":14781,"16356":13691,"16357":14786,"16358":10137,"16359":5084,"16360":3031,"16361":11499,"16362":12291,"16363":12654,"16364":11945,"16365":7801,"16366":12795,"16367":2534,"16368":6684,"16369":2729,"16370":1346,"16371":3286,"16372":14061,"16373":14899,"16374":11777,"16375":9944,"16376":1302,"16377":14149,"16378":5435,"16379":1045,"16380":8992,"16381":4170,"16382":1775,"16383":4868,"16384":315,"16385":12572,"16386":6076,"16387":8811,"16388":12784,"16389":8373,"16390":4284,"16391":1781,"16392":4864,"16393":3319,"16394":3650,"16395":2423,"16396":14577,"16397":13375,"16398":3503,"16399":3280,"16400":174,"16401":4671,"16402":1618,"16403":14367,"16404":6665,"16405":8986,"16406":1587,"16407":84,"16408":5391,"16409":806,"16410":3083,"16411":10706,"16412":14220,"16413":12559,"16414":7950,"16415":11718,"16416":1942,"16417":3347,"16418":8386,"16419":4186,"16420":11032,"16421":7922,"16422":3899,"16423":10068,"16424":8863,"16425":4101,"16426":6091,"16427":1090,"16428":3791,"16429":11902,"16430":1107,"16431":2511,"16432":5495,"16433":13935,"16434":8531,"16435":8914,"16436":13277,"16437":14446,"16438":14176,"16439":763,"16440":4629,"16441":4273,"16442":3596,"16443":4064,"16444":6571,"16445":9086,"16446":11353,"16447":14496,"16448":9783,"16449":3486,"16450":60,"16451":9489,"16452":12864,"16453":7937,"16454":1091,"16455":9699,"16456":474,"16457":793,"16458":8202,"16459":5705,"16460":11405,"16461":8636,"16462":4258,"16463":2851,"16464":8430,"16465":953,"16466":12322,"16467":13388,"16468":6956,"16469":10657,"16470":9748,"16471":14704,"16472":2369,"16473":8217,"16474":2704,"16475":10010,"16476":320,"16477":13878,"16478":9469,"16479":2707,"16480":10963,"16481":4376,"16482":2954,"16483":4511,"16484":9529,"16485":13863,"16486":4506,"16487":1746,"16488":13745,"16489":6361,"16490":5137,"16491":14911,"16492":7104,"16493":3818,"16494":12720,"16495":4990,"16496":15074,"16497":1665,"16498":13505,"16499":9880,"16500":7674,"16501":2474,"16502":6933,"16503":10597,"16504":13570,"16505":1620,"16506":4306,"16507":8862,"16508":5035,"16509":1665,"16510":5848,"16511":12883,"16512":2318,"16513":5260,"16514":4831,"16515":5738,"16516":6758,"16517":4255,"16518":12232,"16519":14054,"16520":11180,"16521":11825,"16522":12629,"16523":9493,"16524":11716,"16525":4481,"16526":8141,"16527":10426,"16528":9248,"16529":14255,"16530":14371,"16531":4022,"16532":2131,"16533":14821,"16534":7278,"16535":14278,"16536":257,"16537":8079,"16538":8617,"16539":11963,"16540":13197,"16541":546,"16542":5058,"16543":5986,"16544":9543,"16545":2204,"16546":405,"16547":1441,"16548":3695,"16549":5841,"16550":7887,"16551":7329,"16552":8788,"16553":9015,"16554":2655,"16555":14234,"16556":1403,"16557":10075,"16558":14676,"16559":9268,"16560":558,"16561":7232,"16562":11649,"16563":6653,"16564":10009,"16565":11082,"16566":319,"16567":10968,"16568":3619,"16569":9199,"16570":14547,"16571":11475,"16572":3898,"16573":13747,"16574":9604,"16575":12949,"16576":163,"16577":10955,"16578":9221,"16579":7936,"16580":4062,"16581":5478,"16582":948,"16583":7987,"16584":7138,"16585":7574,"16586":13389,"16587":10329,"16588":13738,"16589":9561,"16590":10423,"16591":13694,"16592":13493,"16593":1490,"16594":7233,"16595":9902,"16596":13075,"16597":6461,"16598":7221,"16599":14129,"16600":13077,"16601":7642,"16602":8634,"16603":14687,"16604":5623,"16605":14872,"16606":3650,"16607":8079,"16608":14257,"16609":4180,"16610":2272,"16611":4586,"16612":12488,"16613":6535,"16614":11916,"16615":15126,"16616":10800,"16617":15148,"16618":9065,"16619":13130,"16620":13634,"16621":13251,"16622":3449,"16623":10752,"16624":14671,"16625":3783,"16626":3793,"16627":1582,"16628":6737,"16629":10815,"16630":9903,"16631":2263,"16632":3121,"16633":14461,"16634":252,"16635":11301,"16636":12396,"16637":5423,"16638":7915,"16639":8239,"16640":11783,"16641":13667,"16642":418,"16643":9212,"16644":512,"16645":4328,"16646":2053,"16647":14885,"16648":7443,"16649":5221,"16650":12401,"16651":2869,"16652":2477,"16653":14249,"16654":9826,"16655":12655,"16656":1013,"16657":12719,"16658":9224,"16659":5738,"16660":6666,"16661":7622,"16662":23,"16663":6344,"16664":12938,"16665":3931,"16666":4433,"16667":14933,"16668":1004,"16669":14837,"16670":7353,"16671":13495,"16672":10401,"16673":6977,"16674":11204,"16675":12161,"16676":7616,"16677":13145,"16678":1660,"16679":4610,"16680":11767,"16681":7953,"16682":2095,"16683":7039,"16684":519,"16685":13251,"16686":7007,"16687":10054,"16688":956,"16689":3844,"16690":12888,"16691":15086,"16692":5625,"16693":10934,"16694":13048,"16695":736,"16696":703,"16697":4599,"16698":4213,"16699":9163,"16700":11532,"16701":10761,"16702":3215,"16703":6330,"16704":13142,"16705":4256,"16706":9052,"16707":10497,"16708":11193,"16709":13252,"16710":13068,"16711":11146,"16712":2260,"16713":1326,"16714":10789,"16715":11052,"16716":9248,"16717":13597,"16718":2073,"16719":14973,"16720":1843,"16721":2849,"16722":11837,"16723":14423,"16724":13206,"16725":9089,"16726":5548,"16727":4580,"16728":4153,"16729":8547,"16730":1107,"16731":3207,"16732":6552,"16733":3982,"16734":13677,"16735":5381,"16736":2083,"16737":12894,"16738":12086,"16739":10582,"16740":11417,"16741":1129,"16742":11781,"16743":9497,"16744":11686,"16745":12967,"16746":6950,"16747":8489,"16748":10385,"16749":12640,"16750":3219,"16751":5592,"16752":4348,"16753":14993,"16754":10336,"16755":12928,"16756":7013,"16757":14767,"16758":1158,"16759":12394,"16760":7757,"16761":11237,"16762":1837,"16763":1615,"16764":13540,"16765":3598,"16766":10844,"16767":15120,"16768":8010,"16769":12499,"16770":11793,"16771":14399,"16772":3956,"16773":9577,"16774":9217,"16775":13311,"16776":2077,"16777":11142,"16778":8085,"16779":10278,"16780":3096,"16781":12700,"16782":10000,"16783":6495,"16784":10390,"16785":12143,"16786":8167,"16787":5005,"16788":4665,"16789":6081,"16790":13551,"16791":9198,"16792":13262,"16793":14299,"16794":887,"16795":7103,"16796":9999,"16797":10954,"16798":7174,"16799":15122,"16800":14940,"16801":12817,"16802":11342,"16803":2063,"16804":13091,"16805":10215,"16806":3894,"16807":10341,"16808":11726,"16809":10969,"16810":2478,"16811":11287,"16812":1486,"16813":1105,"16814":102,"16815":7367,"16816":2856,"16817":9928,"16818":9295,"16819":13069,"16820":196,"16821":7366,"16822":1835,"16823":7106,"16824":6535,"16825":8960,"16826":5972,"16827":10255,"16828":9121,"16829":4000,"16830":13689,"16831":5373,"16832":12839,"16833":47,"16834":10495,"16835":3177,"16836":12238,"16837":6262,"16838":3639,"16839":4284,"16840":1718,"16841":517,"16842":13468,"16843":8729,"16844":11826,"16845":534,"16846":13366,"16847":14959,"16848":14179,"16849":9299,"16850":7120,"16851":4097,"16852":13827,"16853":12594,"16854":12734,"16855":10126,"16856":1156,"16857":2903,"16858":14631,"16859":10122,"16860":10568,"16861":10796,"16862":9460,"16863":11113,"16864":2780,"16865":8876,"16866":6688,"16867":2385,"16868":5239,"16869":4954,"16870":14085,"16871":13105,"16872":2973,"16873":3409,"16874":1853,"16875":5492,"16876":3454,"16877":8332,"16878":8658,"16879":9305,"16880":2409,"16881":12104,"16882":5440,"16883":8692,"16884":14700,"16885":6588,"16886":13711,"16887":15084,"16888":4700,"16889":5210,"16890":11073,"16891":296,"16892":14414,"16893":10442,"16894":3669,"16895":9733,"16896":12864,"16897":4156,"16898":12317,"16899":14434,"16900":11559,"16901":8967,"16902":8724,"16903":7590,"16904":14580,"16905":2329,"16906":8313,"16907":949,"16908":6822,"16909":6763,"16910":4116,"16911":6792,"16912":11122,"16913":12183,"16914":7974,"16915":7164,"16916":10745,"16917":8661,"16918":3107,"16919":3817,"16920":3278,"16921":7477,"16922":6628,"16923":8658,"16924":9180,"16925":13052,"16926":9329,"16927":6621,"16928":4929,"16929":14637,"16930":8993,"16931":11287,"16932":9577,"16933":5507,"16934":6428,"16935":5249,"16936":5068,"16937":430,"16938":2916,"16939":4455,"16940":2601,"16941":8585,"16942":13314,"16943":7789,"16944":10215,"16945":3724,"16946":12064,"16947":15016,"16948":5146,"16949":10477,"16950":10965,"16951":4565,"16952":4050,"16953":10463,"16954":5761,"16955":9899,"16956":5486,"16957":13074,"16958":3724,"16959":9951,"16960":3540,"16961":14943,"16962":12095,"16963":5615,"16964":3131,"16965":6694,"16966":8508,"16967":2560,"16968":10475,"16969":5731,"16970":12522,"16971":10986,"16972":14115,"16973":9448,"16974":10444,"16975":13464,"16976":2680,"16977":14198,"16978":8290,"16979":7055,"16980":8040,"16981":4899,"16982":4801,"16983":7380,"16984":2510,"16985":2389,"16986":1191,"16987":5941,"16988":10465,"16989":6394,"16990":13030,"16991":1176,"16992":5315,"16993":9442,"16994":8597,"16995":7220,"16996":8146,"16997":1526,"16998":4952,"16999":4315,"17000":3497,"17001":2576,"17002":5648,"17003":9417,"17004":12699,"17005":15061,"17006":674,"17007":3287,"17008":4396,"17009":2014,"17010":3416,"17011":7274,"17012":5817,"17013":11420,"17014":10984,"17015":9434,"17016":9243,"17017":6381,"17018":2810,"17019":345,"17020":42,"17021":2721,"17022":7654,"17023":2046,"17024":1345,"17025":2878,"17026":5627,"17027":10169,"17028":10252,"17029":1648,"17030":647,"17031":2506,"17032":9404,"17033":11287,"17034":8575,"17035":4600,"17036":5017,"17037":3824,"17038":14889,"17039":7247,"17040":11567,"17041":3703,"17042":6534,"17043":4973,"17044":2069,"17045":7677,"17046":10350,"17047":12060,"17048":2131,"17049":9151,"17050":9681,"17051":9553,"17052":4346,"17053":5817,"17054":4529,"17055":8598,"17056":9756,"17057":6931,"17058":14743,"17059":1317,"17060":8569,"17061":5353,"17062":6619,"17063":1757,"17064":1690,"17065":7018,"17066":8861,"17067":7749,"17068":8538,"17069":5532,"17070":3877,"17071":11123,"17072":9707,"17073":7334,"17074":10998,"17075":3159,"17076":8960,"17077":15064,"17078":9750,"17079":2341,"17080":12737,"17081":3990,"17082":756,"17083":10512,"17084":2648,"17085":2191,"17086":9698,"17087":11759,"17088":13285,"17089":2898,"17090":4161,"17091":6519,"17092":8425,"17093":9219,"17094":11927,"17095":13518,"17096":5671,"17097":14503,"17098":7815,"17099":897,"17100":13151,"17101":12557,"17102":680,"17103":8094,"17104":6507,"17105":2561,"17106":9953,"17107":2318,"17108":13434,"17109":3165,"17110":5246,"17111":7979,"17112":226,"17113":14013,"17114":5754,"17115":13588,"17116":12102,"17117":10693,"17118":13699,"17119":5985,"17120":14610,"17121":10283,"17122":10089,"17123":952,"17124":390,"17125":11409,"17126":7378,"17127":2206,"17128":8781,"17129":2392,"17130":2130,"17131":4974,"17132":1289,"17133":13808,"17134":3403,"17135":4624,"17136":9388,"17137":10317,"17138":3732,"17139":9445,"17140":6920,"17141":7213,"17142":115,"17143":4256,"17144":1296,"17145":7202,"17146":8913,"17147":13568,"17148":2112,"17149":13321,"17150":12772,"17151":2292,"17152":6516,"17153":13711,"17154":6687,"17155":10981,"17156":4505,"17157":15151,"17158":12579,"17159":4422,"17160":1592,"17161":2597,"17162":7429,"17163":9307,"17164":1686,"17165":7678,"17166":3419,"17167":1597,"17168":15062,"17169":275,"17170":707,"17171":8856,"17172":8563,"17173":9655,"17174":9312,"17175":14223,"17176":1749,"17177":1151,"17178":503,"17179":888,"17180":10482,"17181":12067,"17182":3000,"17183":14145,"17184":4837,"17185":1063,"17186":4600,"17187":14406,"17188":3516,"17189":3831,"17190":10652,"17191":9367,"17192":12054,"17193":4018,"17194":9613,"17195":9585,"17196":2609,"17197":5709,"17198":14901,"17199":8364,"17200":14394,"17201":4735,"17202":1813,"17203":5633,"17204":13847,"17205":11314,"17206":10262,"17207":100,"17208":7892,"17209":127,"17210":5609,"17211":6573,"17212":12633,"17213":7369,"17214":13683,"17215":850,"17216":12325,"17217":12670,"17218":4371,"17219":5631,"17220":14609,"17221":2427,"17222":230,"17223":14209,"17224":12650,"17225":2116,"17226":7518,"17227":2199,"17228":14248,"17229":1131,"17230":9790,"17231":193,"17232":9759,"17233":9889,"17234":2033,"17235":6285,"17236":294,"17237":641,"17238":7610,"17239":4319,"17240":12311,"17241":5565,"17242":2630,"17243":8933,"17244":6769,"17245":11292,"17246":4241,"17247":9612,"17248":1151,"17249":7392,"17250":10518,"17251":14408,"17252":6507,"17253":7045,"17254":832,"17255":5294,"17256":13914,"17257":2578,"17258":7185,"17259":656,"17260":14071,"17261":186,"17262":13738,"17263":12378,"17264":7438,"17265":10874,"17266":14989,"17267":14127,"17268":5469,"17269":14879,"17270":9432,"17271":5503,"17272":6525,"17273":6035,"17274":13210,"17275":14032,"17276":9428,"17277":13201,"17278":13282,"17279":5761,"17280":5683,"17281":12709,"17282":2583,"17283":1740,"17284":671,"17285":4510,"17286":1500,"17287":8718,"17288":7848,"17289":12645,"17290":6463,"17291":7456,"17292":14008,"17293":14178,"17294":315,"17295":2499,"17296":12527,"17297":6268,"17298":9084,"17299":14555,"17300":5728,"17301":9594,"17302":5022,"17303":9584,"17304":5565,"17305":1205,"17306":10036,"17307":6821,"17308":12211,"17309":14454,"17310":7634,"17311":12125,"17312":11943,"17313":9429,"17314":6676,"17315":12406,"17316":3743,"17317":11045,"17318":663,"17319":10215,"17320":5438,"17321":7793,"17322":12433,"17323":9898,"17324":13015,"17325":3922,"17326":5921,"17327":10239,"17328":11798,"17329":8850,"17330":5396,"17331":4082,"17332":12375,"17333":14389,"17334":2152,"17335":7507,"17336":13995,"17337":12305,"17338":2994,"17339":11574,"17340":2018,"17341":14919,"17342":10394,"17343":1041,"17344":12101,"17345":6912,"17346":14691,"17347":879,"17348":11488,"17349":12691,"17350":2245,"17351":14360,"17352":10138,"17353":4638,"17354":14842,"17355":2075,"17356":13590,"17357":10050,"17358":690,"17359":11893,"17360":10322,"17361":9738,"17362":14460,"17363":1055,"17364":6686,"17365":5580,"17366":7291,"17367":12996,"17368":10710,"17369":1658,"17370":12319,"17371":12314,"17372":2853,"17373":15039,"17374":9367,"17375":3747,"17376":1953,"17377":12071,"17378":2153,"17379":9496,"17380":4684,"17381":6557,"17382":1129,"17383":8746,"17384":11522,"17385":5674,"17386":14405,"17387":9787,"17388":4579,"17389":1665,"17390":6313,"17391":755,"17392":2219,"17393":13279,"17394":5595,"17395":12486,"17396":7637,"17397":10041,"17398":2060,"17399":13851,"17400":8215,"17401":8261,"17402":9380,"17403":975,"17404":1839,"17405":11455,"17406":14148,"17407":12321,"17408":10187,"17409":3377,"17410":10125,"17411":2212,"17412":13982,"17413":545,"17414":13835,"17415":394,"17416":8794,"17417":13862,"17418":3554,"17419":7352,"17420":7240,"17421":9562,"17422":14903,"17423":13487,"17424":5382,"17425":53,"17426":4146,"17427":12091,"17428":5905,"17429":9679,"17430":8845,"17431":15000,"17432":6258,"17433":12953,"17434":14624,"17435":10809,"17436":2470,"17437":7670,"17438":8618,"17439":3163,"17440":14241,"17441":1382,"17442":9775,"17443":10724,"17444":10743,"17445":6033,"17446":9909,"17447":12667,"17448":5484,"17449":11129,"17450":14293,"17451":10772,"17452":13862,"17453":10184,"17454":6997,"17455":5649,"17456":9545,"17457":4438,"17458":12948,"17459":10557,"17460":8475,"17461":13703,"17462":11687,"17463":12372,"17464":7571,"17465":11460,"17466":3752,"17467":11536,"17468":2391,"17469":4258,"17470":3598,"17471":2086,"17472":14122,"17473":14586,"17474":3863,"17475":7169,"17476":2608,"17477":11599,"17478":8359,"17479":2501,"17480":12597,"17481":5994,"17482":395,"17483":9628,"17484":11965,"17485":4549,"17486":9144,"17487":2604,"17488":11108,"17489":5372,"17490":8714,"17491":10676,"17492":11165,"17493":10988,"17494":10072,"17495":9500,"17496":2656,"17497":7926,"17498":11578,"17499":6948,"17500":8803,"17501":14851,"17502":6115,"17503":9743,"17504":14808,"17505":13320,"17506":10613,"17507":3786,"17508":2610,"17509":3617,"17510":2605,"17511":2870,"17512":14460,"17513":7764,"17514":13827,"17515":11875,"17516":4813,"17517":6930,"17518":7037,"17519":205,"17520":4109,"17521":9400,"17522":10161,"17523":3121,"17524":12463,"17525":9160,"17526":4316,"17527":9793,"17528":5142,"17529":6165,"17530":8116,"17531":1091,"17532":6963,"17533":2106,"17534":1402,"17535":11412,"17536":2127,"17537":3393,"17538":7171,"17539":4069,"17540":14587,"17541":5979,"17542":1249,"17543":6424,"17544":1634,"17545":13239,"17546":14822,"17547":10935,"17548":5733,"17549":11587,"17550":2471,"17551":12019,"17552":14874,"17553":3739,"17554":12896,"17555":11280,"17556":6738,"17557":1644,"17558":9534,"17559":2427,"17560":2135,"17561":6018,"17562":962,"17563":4288,"17564":357,"17565":8224,"17566":9353,"17567":13168,"17568":10244,"17569":449,"17570":12326,"17571":2155,"17572":1305,"17573":8390,"17574":13572,"17575":1045,"17576":9079,"17577":3201,"17578":8982,"17579":13676,"17580":3778,"17581":7287,"17582":9156,"17583":7804,"17584":4148,"17585":5184,"17586":8687,"17587":1985,"17588":5240,"17589":1546,"17590":13421,"17591":13887,"17592":12908,"17593":1733,"17594":14188,"17595":2149,"17596":9003,"17597":14576,"17598":8008,"17599":12768,"17600":10257,"17601":3311,"17602":2844,"17603":420,"17604":13497,"17605":10822,"17606":12955,"17607":5610,"17608":15145,"17609":11990,"17610":11411,"17611":3390,"17612":1626,"17613":1603,"17614":13233,"17615":13958,"17616":9261,"17617":14399,"17618":13013,"17619":11452,"17620":11853,"17621":544,"17622":1902,"17623":1179,"17624":13752,"17625":6580,"17626":454,"17627":10109,"17628":5833,"17629":953,"17630":10197,"17631":8824,"17632":3472,"17633":1734,"17634":4546,"17635":12425,"17636":751,"17637":9792,"17638":13740,"17639":7976,"17640":6890,"17641":14666,"17642":10051,"17643":2487,"17644":3375,"17645":10260,"17646":2570,"17647":9205,"17648":2855,"17649":7264,"17650":6265,"17651":10737,"17652":5565,"17653":2929,"17654":5427,"17655":2912,"17656":3469,"17657":12571,"17658":7238,"17659":6705,"17660":7486,"17661":2395,"17662":14527,"17663":1807,"17664":5931,"17665":785,"17666":11745,"17667":3786,"17668":7700,"17669":6093,"17670":10176,"17671":6867,"17672":7235,"17673":10710,"17674":10022,"17675":14695,"17676":11703,"17677":12155,"17678":2432,"17679":6063,"17680":9352,"17681":12338,"17682":13794,"17683":8864,"17684":12774,"17685":4375,"17686":7929,"17687":7532,"17688":14636,"17689":538,"17690":6137,"17691":9214,"17692":7673,"17693":1910,"17694":14875,"17695":14797,"17696":2220,"17697":348,"17698":12230,"17699":12203,"17700":11103,"17701":4397,"17702":10902,"17703":12989,"17704":6825,"17705":7549,"17706":9699,"17707":6535,"17708":1104,"17709":4757,"17710":9581,"17711":7124,"17712":12857,"17713":8012,"17714":13818,"17715":13191,"17716":984,"17717":3042,"17718":7710,"17719":6142,"17720":11791,"17721":2082,"17722":3281,"17723":797,"17724":1829,"17725":11340,"17726":2796,"17727":15102,"17728":9798,"17729":6591,"17730":3595,"17731":7459,"17732":1087,"17733":2452,"17734":7740,"17735":3335,"17736":5445,"17737":1442,"17738":6027,"17739":9713,"17740":13721,"17741":918,"17742":13196,"17743":7108,"17744":5439,"17745":1405,"17746":4881,"17747":12565,"17748":12618,"17749":12072,"17750":10514,"17751":2859,"17752":14117,"17753":4247,"17754":9117,"17755":12727,"17756":4058,"17757":13498,"17758":10966,"17759":827,"17760":11887,"17761":4743,"17762":4373,"17763":1015,"17764":8035,"17765":6628,"17766":4964,"17767":14080,"17768":6174,"17769":3877,"17770":13059,"17771":3782,"17772":9202,"17773":9800,"17774":13156,"17775":13696,"17776":9280,"17777":765,"17778":5483,"17779":11808,"17780":6452,"17781":4789,"17782":3094,"17783":5991,"17784":14329,"17785":3010,"17786":4055,"17787":12853,"17788":7223,"17789":7794,"17790":429,"17791":120,"17792":3630,"17793":13757,"17794":7925,"17795":7354,"17796":12010,"17797":14949,"17798":4173,"17799":10264,"17800":1070,"17801":12919,"17802":12555,"17803":9373,"17804":3468,"17805":12962,"17806":9062,"17807":4755,"17808":5490,"17809":11560,"17810":12428,"17811":9423,"17812":5679,"17813":8946,"17814":14014,"17815":13145,"17816":3495,"17817":14721,"17818":206,"17819":867,"17820":4076,"17821":7951,"17822":4669,"17823":7803,"17824":14245,"17825":9057,"17826":5202,"17827":4725,"17828":6583,"17829":11853,"17830":3865,"17831":7968,"17832":14749,"17833":14561,"17834":4774,"17835":11933,"17836":4542,"17837":6519,"17838":6562,"17839":3866,"17840":434,"17841":4731,"17842":5794,"17843":14675,"17844":14225,"17845":13552,"17846":13881,"17847":9364,"17848":9486,"17849":5242,"17850":14501,"17851":10276,"17852":1122,"17853":435,"17854":7213,"17855":890,"17856":13346,"17857":63,"17858":3743,"17859":10367,"17860":3596,"17861":11677,"17862":10614,"17863":11503,"17864":9526,"17865":1788,"17866":3121,"17867":1222,"17868":11742,"17869":12600,"17870":7735,"17871":12538,"17872":11020,"17873":14347,"17874":917,"17875":13621,"17876":2226,"17877":1828,"17878":600,"17879":4636,"17880":12210,"17881":8372,"17882":13423,"17883":13119,"17884":14916,"17885":7049,"17886":12145,"17887":2570,"17888":12841,"17889":14187,"17890":6452,"17891":8182,"17892":13401,"17893":3169,"17894":11302,"17895":7861,"17896":8433,"17897":10167,"17898":5238,"17899":57,"17900":13901,"17901":2884,"17902":12268,"17903":10640,"17904":1659,"17905":6655,"17906":10725,"17907":8759,"17908":13867,"17909":11092,"17910":14407,"17911":14210,"17912":5706,"17913":10452,"17914":10006,"17915":11514,"17916":12925,"17917":5408,"17918":13298,"17919":5904,"17920":8214,"17921":1776,"17922":12228,"17923":4529,"17924":2738,"17925":1281,"17926":1656,"17927":6090,"17928":1861,"17929":6693,"17930":8171,"17931":5778,"17932":11893,"17933":2858,"17934":9635,"17935":2561,"17936":7966,"17937":9561,"17938":2895,"17939":3026,"17940":2515,"17941":271,"17942":4896,"17943":509,"17944":5407,"17945":12412,"17946":115,"17947":2201,"17948":1214,"17949":10055,"17950":8842,"17951":12928,"17952":2589,"17953":10279,"17954":2073,"17955":9218,"17956":9624,"17957":13860,"17958":4986,"17959":3091,"17960":4504,"17961":8239,"17962":83,"17963":5956,"17964":3303,"17965":2671,"17966":13148,"17967":2761,"17968":12074,"17969":14085,"17970":10776,"17971":13909,"17972":8466,"17973":5976,"17974":13687,"17975":8021,"17976":13409,"17977":3931,"17978":9726,"17979":13378,"17980":14648,"17981":14482,"17982":4083,"17983":7097,"17984":6553,"17985":12920,"17986":2659,"17987":12180,"17988":3905,"17989":5763,"17990":2754,"17991":9433,"17992":6688,"17993":11040,"17994":686,"17995":3476,"17996":3659,"17997":6049,"17998":6038,"17999":7599,"18000":11031,"18001":10947,"18002":3028,"18003":10862,"18004":12894,"18005":13121,"18006":13805,"18007":420,"18008":794,"18009":7820,"18010":1791,"18011":14844,"18012":13938,"18013":9752,"18014":12160,"18015":7895,"18016":1365,"18017":5690,"18018":4561,"18019":13595,"18020":6638,"18021":1140,"18022":8113,"18023":3616,"18024":5915,"18025":7189,"18026":7446,"18027":6438,"18028":3575,"18029":12412,"18030":7984,"18031":14677,"18032":3099,"18033":8094,"18034":1153,"18035":1832,"18036":2557,"18037":2220,"18038":10666,"18039":11980,"18040":11784,"18041":6565,"18042":14079,"18043":11075,"18044":9924,"18045":8500,"18046":10178,"18047":1050,"18048":13183,"18049":4448,"18050":4971,"18051":9488,"18052":9462,"18053":14991,"18054":5650,"18055":12946,"18056":769,"18057":10747,"18058":4461,"18059":2803,"18060":676,"18061":9911,"18062":4770,"18063":5054,"18064":3672,"18065":3658,"18066":8047,"18067":4874,"18068":2294,"18069":7800,"18070":10361,"18071":9576,"18072":12483,"18073":2164,"18074":5212,"18075":489,"18076":6580,"18077":14136,"18078":4789,"18079":14006,"18080":4085,"18081":619,"18082":9656,"18083":1035,"18084":14748,"18085":14596,"18086":9626,"18087":1236,"18088":9984,"18089":9958,"18090":2499,"18091":7102,"18092":3503,"18093":2340,"18094":168,"18095":13478,"18096":9366,"18097":3437,"18098":8627,"18099":8792,"18100":684,"18101":10733,"18102":14024,"18103":7164,"18104":14513,"18105":13561,"18106":5385,"18107":14048,"18108":4945,"18109":10272,"18110":4302,"18111":14595,"18112":13843,"18113":1145,"18114":10077,"18115":7415,"18116":6298,"18117":9855,"18118":559,"18119":2233,"18120":14270,"18121":4705,"18122":9864,"18123":7757,"18124":7593,"18125":14113,"18126":7196,"18127":6150,"18128":13137,"18129":12887,"18130":10487,"18131":14311,"18132":13566,"18133":10169,"18134":14916,"18135":13675,"18136":11377,"18137":10667,"18138":11413,"18139":5927,"18140":320,"18141":4804,"18142":7129,"18143":2650,"18144":3266,"18145":5620,"18146":11159,"18147":3321,"18148":3388,"18149":14959,"18150":4376,"18151":2398,"18152":5147,"18153":12202,"18154":759,"18155":6202,"18156":14842,"18157":9870,"18158":7633,"18159":1146,"18160":8625,"18161":7191,"18162":8110,"18163":3185,"18164":13182,"18165":14449,"18166":14265,"18167":5762,"18168":7856,"18169":5198,"18170":286,"18171":11249,"18172":12820,"18173":13214,"18174":8364,"18175":7358,"18176":7997,"18177":8899,"18178":4402,"18179":9700,"18180":11525,"18181":4904,"18182":4375,"18183":2645,"18184":264,"18185":12540,"18186":6709,"18187":14273,"18188":9498,"18189":3797,"18190":3308,"18191":12031,"18192":5573,"18193":14912,"18194":1457,"18195":11029,"18196":14563,"18197":3943,"18198":10898,"18199":2563,"18200":5980,"18201":11847,"18202":11,"18203":2953,"18204":3641,"18205":14645,"18206":7697,"18207":4154,"18208":8409,"18209":12532,"18210":11629,"18211":8130,"18212":8686,"18213":2689,"18214":13792,"18215":2198,"18216":8262,"18217":14605,"18218":13152,"18219":10089,"18220":10535,"18221":8593,"18222":4540,"18223":8572,"18224":6792,"18225":8444,"18226":2943,"18227":11491,"18228":6378,"18229":638,"18230":8957,"18231":535,"18232":240,"18233":7157,"18234":9647,"18235":13697,"18236":10421,"18237":6271,"18238":11969,"18239":11916,"18240":1312,"18241":5349,"18242":12864,"18243":11711,"18244":6955,"18245":11679,"18246":6057,"18247":12383,"18248":14608,"18249":2319,"18250":3501,"18251":11562,"18252":4040,"18253":10895,"18254":9724,"18255":9916,"18256":8692,"18257":14013,"18258":153,"18259":12404,"18260":1502,"18261":1298,"18262":2332,"18263":19,"18264":3238,"18265":2477,"18266":14559,"18267":12900,"18268":3121,"18269":14268,"18270":6648,"18271":4733,"18272":7454,"18273":8581,"18274":10567,"18275":3115,"18276":13935,"18277":2709,"18278":11736,"18279":1713,"18280":5424,"18281":5846,"18282":3203,"18283":6279,"18284":3082,"18285":4682,"18286":1900,"18287":12375,"18288":3100,"18289":8325,"18290":893,"18291":2943,"18292":6361,"18293":8334,"18294":4045,"18295":2321,"18296":10647,"18297":2802,"18298":12323,"18299":645,"18300":10058,"18301":11281,"18302":6687,"18303":8586,"18304":1539,"18305":1591,"18306":3356,"18307":13988,"18308":10190,"18309":7967,"18310":12176,"18311":10873,"18312":6331,"18313":12282,"18314":5192,"18315":10325,"18316":4527,"18317":11904,"18318":9532,"18319":11320,"18320":5095,"18321":2307,"18322":6123,"18323":14034,"18324":13948,"18325":14768,"18326":8627,"18327":10310,"18328":9065,"18329":5558,"18330":4385,"18331":14239,"18332":3819,"18333":689,"18334":14356,"18335":9490,"18336":1856,"18337":1425,"18338":2831,"18339":2825,"18340":8026,"18341":13267,"18342":1667,"18343":14350,"18344":2329,"18345":12109,"18346":12819,"18347":12892,"18348":14336,"18349":8997,"18350":3496,"18351":8499,"18352":2498,"18353":4041,"18354":2432,"18355":6754,"18356":1302,"18357":13941,"18358":12280,"18359":75,"18360":1403,"18361":5922,"18362":4868,"18363":2495,"18364":9466,"18365":14715,"18366":6611,"18367":4596,"18368":13513,"18369":2334,"18370":836,"18371":3179,"18372":2506,"18373":2776,"18374":9525,"18375":1260,"18376":8854,"18377":4724,"18378":3494,"18379":192,"18380":2955,"18381":776,"18382":2982,"18383":79,"18384":14233,"18385":7824,"18386":1223,"18387":1120,"18388":4335,"18389":12927,"18390":5838,"18391":3069,"18392":9517,"18393":7561,"18394":7052,"18395":2753,"18396":14927,"18397":11639,"18398":5465,"18399":13114,"18400":1322,"18401":13416,"18402":9158,"18403":4325,"18404":558,"18405":9687,"18406":2758,"18407":6170,"18408":6944,"18409":1825,"18410":2738,"18411":7726,"18412":3960,"18413":4267,"18414":13739,"18415":7782,"18416":2879,"18417":11207,"18418":9447,"18419":6507,"18420":877,"18421":5768,"18422":7505,"18423":10781,"18424":14480,"18425":11960,"18426":12164,"18427":10562,"18428":6678,"18429":3102,"18430":10626,"18431":12787,"18432":14057,"18433":13807,"18434":4322,"18435":2969,"18436":9436,"18437":447,"18438":8298,"18439":6690,"18440":4993,"18441":15148,"18442":13138,"18443":3893,"18444":8866,"18445":10983,"18446":9966,"18447":10015,"18448":5745,"18449":12157,"18450":1915,"18451":1439,"18452":5450,"18453":13274,"18454":15079,"18455":8411,"18456":10673,"18457":14770,"18458":10562,"18459":11586,"18460":11968,"18461":9979,"18462":3898,"18463":13671,"18464":11690,"18465":11308,"18466":7180,"18467":7568,"18468":7785,"18469":9470,"18470":3336,"18471":7684,"18472":4004,"18473":12216,"18474":1668,"18475":6011,"18476":3828,"18477":6447,"18478":2616,"18479":7480,"18480":3719,"18481":3495,"18482":8123,"18483":11661,"18484":6691,"18485":10285,"18486":7910,"18487":10222,"18488":9641,"18489":8848,"18490":3857,"18491":3064,"18492":11442,"18493":10850,"18494":2783,"18495":6358,"18496":4726,"18497":10546,"18498":1303,"18499":2646,"18500":14696,"18501":10184,"18502":12214,"18503":10731,"18504":1451,"18505":3836,"18506":9374,"18507":7139,"18508":13345,"18509":3888,"18510":201,"18511":10347,"18512":3024,"18513":4243,"18514":14097,"18515":12657,"18516":13185,"18517":4985,"18518":7879,"18519":5108,"18520":6857,"18521":9017,"18522":11936,"18523":10483,"18524":11112,"18525":1600,"18526":6918,"18527":4781,"18528":13527,"18529":4493,"18530":13368,"18531":6166,"18532":10588,"18533":2345,"18534":12624,"18535":6726,"18536":2430,"18537":953,"18538":7575,"18539":15124,"18540":7119,"18541":8328,"18542":11785,"18543":2968,"18544":3973,"18545":11693,"18546":10591,"18547":6375,"18548":972,"18549":12043,"18550":8997,"18551":1026,"18552":14061,"18553":13431,"18554":1398,"18555":7156,"18556":11700,"18557":8267,"18558":15022,"18559":433,"18560":4530,"18561":8772,"18562":13787,"18563":102,"18564":4347,"18565":14020,"18566":10091,"18567":4547,"18568":6051,"18569":3528,"18570":4177,"18571":5854,"18572":152,"18573":8575,"18574":998,"18575":3899,"18576":10166,"18577":4040,"18578":2196,"18579":3530,"18580":2290,"18581":14531,"18582":11740,"18583":2338,"18584":12961,"18585":1947,"18586":10122,"18587":2476,"18588":9938,"18589":11214,"18590":9207,"18591":13727,"18592":6104,"18593":2752,"18594":2024,"18595":428,"18596":3953,"18597":13645,"18598":13016,"18599":12772,"18600":8658,"18601":7013,"18602":11541,"18603":10888,"18604":8448,"18605":7377,"18606":10156,"18607":1713,"18608":4314,"18609":9688,"18610":11422,"18611":4182,"18612":2792,"18613":4901,"18614":8065,"18615":4473,"18616":1323,"18617":8560,"18618":1319,"18619":7293,"18620":10853,"18621":10791,"18622":9846,"18623":10556,"18624":6208,"18625":4543,"18626":11245,"18627":5105,"18628":14298,"18629":1586,"18630":12956,"18631":3958,"18632":4447,"18633":1225,"18634":1177,"18635":6065,"18636":12467,"18637":6982,"18638":13432,"18639":13658,"18640":366,"18641":12328,"18642":6482,"18643":2907,"18644":12569,"18645":4427,"18646":1161,"18647":1034,"18648":12383,"18649":6155,"18650":4378,"18651":9326,"18652":4029,"18653":1156,"18654":7515,"18655":13774,"18656":10704,"18657":13114,"18658":3341,"18659":5009,"18660":4698,"18661":1246,"18662":6671,"18663":8798,"18664":14252,"18665":8171,"18666":9051,"18667":13842,"18668":7535,"18669":5509,"18670":14055,"18671":8114,"18672":2607,"18673":4260,"18674":2832,"18675":8617,"18676":7767,"18677":14128,"18678":8241,"18679":14553,"18680":8591,"18681":6830,"18682":2876,"18683":11393,"18684":1152,"18685":13350,"18686":1704,"18687":1207,"18688":13820,"18689":1879,"18690":1824,"18691":14408,"18692":5095,"18693":5892,"18694":12363,"18695":13489,"18696":7833,"18697":13763,"18698":7867,"18699":9166,"18700":4354,"18701":7798,"18702":3127,"18703":13854,"18704":9453,"18705":6599,"18706":602,"18707":4979,"18708":264,"18709":1294,"18710":14679,"18711":9727,"18712":8668,"18713":6633,"18714":3549,"18715":14499,"18716":4496,"18717":12402,"18718":5710,"18719":1506,"18720":7698,"18721":5206,"18722":3575,"18723":5657,"18724":4651,"18725":1645,"18726":1979,"18727":9610,"18728":4896,"18729":1641,"18730":2393,"18731":12420,"18732":831,"18733":5896,"18734":15130,"18735":3679,"18736":7752,"18737":4994,"18738":3529,"18739":12608,"18740":10116,"18741":14814,"18742":4306,"18743":8692,"18744":13070,"18745":2998,"18746":14449,"18747":1625,"18748":10651,"18749":10409,"18750":3076,"18751":6016,"18752":13459,"18753":5116,"18754":8385,"18755":14722,"18756":10370,"18757":508,"18758":3954,"18759":1712,"18760":2162,"18761":9634,"18762":10105,"18763":2930,"18764":7874,"18765":4444,"18766":9661,"18767":8645,"18768":2922,"18769":13329,"18770":12041,"18771":13163,"18772":4588,"18773":291,"18774":11033,"18775":3126,"18776":9745,"18777":7039,"18778":9747,"18779":9775,"18780":6460,"18781":2001,"18782":13810,"18783":6622,"18784":4150,"18785":14082,"18786":8242,"18787":12838,"18788":13215,"18789":324,"18790":2852,"18791":13478,"18792":4694,"18793":10257,"18794":4279,"18795":2595,"18796":11397,"18797":2622,"18798":13097,"18799":12393,"18800":5227,"18801":3891,"18802":7134,"18803":1526,"18804":883,"18805":11792,"18806":7696,"18807":14459,"18808":8956,"18809":2148,"18810":6707,"18811":665,"18812":9354,"18813":7382,"18814":3390,"18815":10143,"18816":5507,"18817":8612,"18818":13558,"18819":1307,"18820":1670,"18821":10295,"18822":9575,"18823":804,"18824":582,"18825":8692,"18826":9947,"18827":10682,"18828":11883,"18829":3499,"18830":10673,"18831":9594,"18832":9401,"18833":1631,"18834":11942,"18835":13543,"18836":3760,"18837":49,"18838":2683,"18839":2759,"18840":7027,"18841":9575,"18842":1729,"18843":7246,"18844":14067,"18845":14833,"18846":7296,"18847":9447,"18848":5435,"18849":6161,"18850":14898,"18851":2701,"18852":13657,"18853":13767,"18854":1417,"18855":6708,"18856":11383,"18857":9893,"18858":5973,"18859":11061,"18860":8430,"18861":8709,"18862":4641,"18863":4600,"18864":1386,"18865":14704,"18866":255,"18867":15001,"18868":8394,"18869":15140,"18870":5752,"18871":7280,"18872":6402,"18873":3709,"18874":5358,"18875":12115,"18876":7483,"18877":3563,"18878":4605,"18879":11107,"18880":5960,"18881":11418,"18882":2473,"18883":4230,"18884":15020,"18885":7733,"18886":3066,"18887":13490,"18888":2963,"18889":4190,"18890":535,"18891":3363,"18892":9261,"18893":5599,"18894":3282,"18895":11816,"18896":9026,"18897":8498,"18898":1975,"18899":2540,"18900":9555,"18901":14655,"18902":6679,"18903":10943,"18904":11593,"18905":10130,"18906":14899,"18907":4802,"18908":129,"18909":1442,"18910":104,"18911":12877,"18912":12381,"18913":1578,"18914":12944,"18915":6312,"18916":758,"18917":6894,"18918":14123,"18919":10506,"18920":5936,"18921":12437,"18922":1675,"18923":13082,"18924":3332,"18925":9326,"18926":14052,"18927":13069,"18928":12446,"18929":4912,"18930":12322,"18931":6997,"18932":1196,"18933":4268,"18934":11629,"18935":12960,"18936":7146,"18937":5591,"18938":14466,"18939":13757,"18940":5868,"18941":10501,"18942":7454,"18943":13520,"18944":10496,"18945":1196,"18946":6656,"18947":3547,"18948":3797,"18949":8862,"18950":8210,"18951":8025,"18952":6627,"18953":1568,"18954":14594,"18955":9890,"18956":441,"18957":9241,"18958":9439,"18959":13954,"18960":229,"18961":10811,"18962":11347,"18963":10913,"18964":13904,"18965":12390,"18966":11292,"18967":7089,"18968":2183,"18969":4761,"18970":13119,"18971":8270,"18972":6797,"18973":11762,"18974":1820,"18975":2299,"18976":14174,"18977":13524,"18978":1434,"18979":6889,"18980":5660,"18981":5284,"18982":13425,"18983":7559,"18984":14659,"18985":10069,"18986":7110,"18987":11248,"18988":9823,"18989":14750,"18990":4311,"18991":2751,"18992":1588,"18993":5569,"18994":1728,"18995":12534,"18996":11855,"18997":11761,"18998":4435,"18999":3735,"19000":2920,"19001":10147,"19002":11866,"19003":6226,"19004":6084,"19005":11225,"19006":13575,"19007":431,"19008":5485,"19009":13271,"19010":3647,"19011":4434,"19012":12906,"19013":1872,"19014":10540,"19015":3,"19016":8789,"19017":8073,"19018":10662,"19019":13312,"19020":12598,"19021":12860,"19022":13809,"19023":4876,"19024":371,"19025":7023,"19026":11454,"19027":13751,"19028":7299,"19029":12152,"19030":12362,"19031":538,"19032":10060,"19033":3713,"19034":952,"19035":8756,"19036":5123,"19037":461,"19038":10375,"19039":94,"19040":268,"19041":9132,"19042":1311,"19043":9771,"19044":3505,"19045":6402,"19046":546,"19047":11213,"19048":4611,"19049":1584,"19050":2802,"19051":7040,"19052":9710,"19053":3050,"19054":14730,"19055":8923,"19056":10764,"19057":3306,"19058":5698,"19059":11838,"19060":12422,"19061":7443,"19062":1378,"19063":9304,"19064":8346,"19065":6371,"19066":7942,"19067":7391,"19068":4883,"19069":11375,"19070":7284,"19071":11391,"19072":7238,"19073":432,"19074":4838,"19075":1309,"19076":14119,"19077":13928,"19078":2974,"19079":4619,"19080":8537,"19081":9639,"19082":10269,"19083":9220,"19084":6823,"19085":13361,"19086":14567,"19087":301,"19088":2455,"19089":14522,"19090":1997,"19091":6172,"19092":8350,"19093":6964,"19094":4756,"19095":7233,"19096":7293,"19097":2556,"19098":9330,"19099":4658,"19100":7142,"19101":11818,"19102":4051,"19103":3604,"19104":1780,"19105":2048,"19106":8388,"19107":3331,"19108":9835,"19109":471,"19110":6512,"19111":5821,"19112":2518,"19113":778,"19114":10240,"19115":4423,"19116":1693,"19117":9229,"19118":2111,"19119":7513,"19120":5223,"19121":2725,"19122":1246,"19123":4915,"19124":13527,"19125":4127,"19126":8100,"19127":5519,"19128":8335,"19129":11856,"19130":13231,"19131":4458,"19132":2574,"19133":9445,"19134":10723,"19135":2300,"19136":13664,"19137":14494,"19138":10487,"19139":14012,"19140":6632,"19141":10514,"19142":1092,"19143":1538,"19144":9989,"19145":8891,"19146":783,"19147":10804,"19148":3870,"19149":5108,"19150":7113,"19151":11636,"19152":14164,"19153":10420,"19154":5665,"19155":3216,"19156":1178,"19157":7868,"19158":10960,"19159":5147,"19160":6819,"19161":4261,"19162":2913,"19163":2919,"19164":2973,"19165":4395,"19166":6550,"19167":14867,"19168":6912,"19169":11068,"19170":6094,"19171":13764,"19172":9285,"19173":9394,"19174":4864,"19175":13547,"19176":13839,"19177":7860,"19178":8170,"19179":8626,"19180":11896,"19181":6740,"19182":9937,"19183":14436,"19184":4480,"19185":119,"19186":11208,"19187":1757,"19188":8073,"19189":8653,"19190":7838,"19191":4919,"19192":13653,"19193":6051,"19194":5941,"19195":11237,"19196":1718,"19197":561,"19198":13411,"19199":5557,"19200":7062,"19201":13061,"19202":7949,"19203":2892,"19204":12495,"19205":6604,"19206":12095,"19207":1444,"19208":12551,"19209":5176,"19210":1455,"19211":6388,"19212":2576,"19213":10725,"19214":7844,"19215":5349,"19216":1463,"19217":12214,"19218":14384,"19219":1654,"19220":6358,"19221":2397,"19222":11315,"19223":3023,"19224":13650,"19225":6749,"19226":8811,"19227":4644,"19228":750,"19229":5304,"19230":12337,"19231":5018,"19232":4616,"19233":4959,"19234":5456,"19235":4809,"19236":12157,"19237":13275,"19238":14008,"19239":4699,"19240":6961,"19241":3682,"19242":6213,"19243":14058,"19244":2961,"19245":10647,"19246":4175,"19247":4638,"19248":10256,"19249":14886,"19250":7908,"19251":5985,"19252":2636,"19253":10561,"19254":1463,"19255":2999,"19256":2931,"19257":7467,"19258":4126,"19259":10614,"19260":3611,"19261":9758,"19262":2592,"19263":8420,"19264":4282,"19265":11739,"19266":5723,"19267":10182,"19268":7503,"19269":13450,"19270":1856,"19271":659,"19272":13291,"19273":1126,"19274":9244,"19275":14572,"19276":10257,"19277":8091,"19278":9538,"19279":13456,"19280":10083,"19281":13082,"19282":12635,"19283":14265,"19284":4355,"19285":950,"19286":1959,"19287":7022,"19288":3928,"19289":10364,"19290":11408,"19291":5999,"19292":10837,"19293":269,"19294":14518,"19295":11643,"19296":1602,"19297":8667,"19298":1086,"19299":13972,"19300":10272,"19301":604,"19302":8594,"19303":12133,"19304":12309,"19305":12331,"19306":9185,"19307":9316,"19308":6836,"19309":7854,"19310":5903,"19311":12314,"19312":1926,"19313":14961,"19314":9999,"19315":13038,"19316":3996,"19317":10921,"19318":8619,"19319":10770,"19320":706,"19321":3120,"19322":12737,"19323":10183,"19324":10424,"19325":7138,"19326":13432,"19327":6488,"19328":9008,"19329":8247,"19330":2094,"19331":7681,"19332":7738,"19333":6738,"19334":2172,"19335":4247,"19336":1111,"19337":397,"19338":12911,"19339":1381,"19340":5165,"19341":11213,"19342":12425,"19343":12713,"19344":13744,"19345":2338,"19346":9112,"19347":11831,"19348":2708,"19349":13773,"19350":7460,"19351":12452,"19352":14538,"19353":1425,"19354":2801,"19355":13582,"19356":5866,"19357":8917,"19358":1183,"19359":4380,"19360":2817,"19361":8327,"19362":12975,"19363":14927,"19364":4211,"19365":3816,"19366":3750,"19367":4442,"19368":5456,"19369":6908,"19370":7855,"19371":2479,"19372":2392,"19373":103,"19374":13392,"19375":8522,"19376":7019,"19377":4031,"19378":6050,"19379":2888,"19380":3300,"19381":11749,"19382":11804,"19383":4648,"19384":7074,"19385":10466,"19386":13355,"19387":11204,"19388":5370,"19389":14201,"19390":2249,"19391":9871,"19392":4558,"19393":13444,"19394":11397,"19395":1695,"19396":15018,"19397":14779,"19398":13504,"19399":12147,"19400":15150,"19401":8977,"19402":14477,"19403":8190,"19404":14951,"19405":2906,"19406":6195,"19407":6717,"19408":5322,"19409":8919,"19410":1310,"19411":1829,"19412":2368,"19413":9279,"19414":13824,"19415":5802,"19416":981,"19417":10626,"19418":12365,"19419":9257,"19420":10507,"19421":8700,"19422":11468,"19423":7812,"19424":5522,"19425":9533,"19426":596,"19427":4589,"19428":1443,"19429":11770,"19430":4015,"19431":5703,"19432":1251,"19433":2230,"19434":14152,"19435":8441,"19436":9659,"19437":2814,"19438":4725,"19439":5098,"19440":1594,"19441":14142,"19442":993,"19443":2016,"19444":14592,"19445":9864,"19446":7755,"19447":11480,"19448":14913,"19449":1048,"19450":3302,"19451":5259,"19452":1206,"19453":3864,"19454":1085,"19455":1871,"19456":929,"19457":11647,"19458":219,"19459":633,"19460":10372,"19461":5949,"19462":2169,"19463":7794,"19464":14048,"19465":11988,"19466":9921,"19467":1599,"19468":8559,"19469":4696,"19470":9011,"19471":4343,"19472":4176,"19473":8011,"19474":11016,"19475":3397,"19476":12668,"19477":9414,"19478":10642,"19479":57,"19480":5352,"19481":6446,"19482":2313,"19483":10576,"19484":5808,"19485":643,"19486":10940,"19487":11359,"19488":1526,"19489":3978,"19490":11350,"19491":7583,"19492":5193,"19493":3274,"19494":1154,"19495":801,"19496":5642,"19497":2,"19498":11509,"19499":12672,"19500":6061,"19501":2439,"19502":9923,"19503":3322,"19504":4672,"19505":11066,"19506":1918,"19507":5714,"19508":205,"19509":11558,"19510":13955,"19511":13280,"19512":2823,"19513":14342,"19514":2329,"19515":6202,"19516":5055,"19517":5710,"19518":7720,"19519":1194,"19520":11023,"19521":8524,"19522":7963,"19523":4788,"19524":2069,"19525":8009,"19526":11076,"19527":8711,"19528":9736,"19529":4710,"19530":4924,"19531":11520,"19532":2711,"19533":9393,"19534":8068,"19535":13294,"19536":3840,"19537":13166,"19538":589,"19539":11668,"19540":6079,"19541":1217,"19542":1539,"19543":8716,"19544":4883,"19545":1378,"19546":195,"19547":9524,"19548":2229,"19549":9658,"19550":13336,"19551":7222,"19552":9546,"19553":6483,"19554":2510,"19555":5033,"19556":5185,"19557":2999,"19558":4688,"19559":6537,"19560":1841,"19561":3506,"19562":13342,"19563":9175,"19564":11336,"19565":10600,"19566":1077,"19567":2025,"19568":5806,"19569":4092,"19570":14279,"19571":1220,"19572":14474,"19573":5371,"19574":376,"19575":8091,"19576":15116,"19577":254,"19578":11180,"19579":13920,"19580":4963,"19581":2146,"19582":136,"19583":9269,"19584":6265,"19585":10353,"19586":1167,"19587":12913,"19588":3964,"19589":11298,"19590":8288,"19591":14541,"19592":15133,"19593":9237,"19594":3123,"19595":9603,"19596":9235,"19597":3986,"19598":4410,"19599":5830,"19600":2398,"19601":5923,"19602":3105,"19603":4207,"19604":11302,"19605":7632,"19606":9671,"19607":4310,"19608":9862,"19609":14142,"19610":4715,"19611":14234,"19612":842,"19613":2688,"19614":2088,"19615":10707,"19616":7648,"19617":5468,"19618":5913,"19619":10594,"19620":10006,"19621":8894,"19622":411,"19623":2072,"19624":8651,"19625":10315,"19626":8246,"19627":7134,"19628":13132,"19629":9631,"19630":7599,"19631":8060,"19632":2922,"19633":9919,"19634":8732,"19635":7479,"19636":9626,"19637":9215,"19638":5306,"19639":5492,"19640":12469,"19641":13208,"19642":8902,"19643":12028,"19644":741,"19645":1184,"19646":3157,"19647":11043,"19648":6731,"19649":6383,"19650":9491,"19651":11528,"19652":7920,"19653":10424,"19654":6813,"19655":9434,"19656":9891,"19657":9371,"19658":9512,"19659":5606,"19660":5345,"19661":10084,"19662":11313,"19663":12456,"19664":10403,"19665":1260,"19666":10998,"19667":9168,"19668":1988,"19669":10763,"19670":12385,"19671":15018,"19672":910,"19673":6434,"19674":4310,"19675":7834,"19676":5385,"19677":11992,"19678":2330,"19679":1687,"19680":7843,"19681":14468,"19682":10836,"19683":11141,"19684":14916,"19685":12769,"19686":11392,"19687":104,"19688":4181,"19689":584,"19690":3236,"19691":11148,"19692":8723,"19693":5599,"19694":7319,"19695":7929,"19696":11845,"19697":6937,"19698":7963,"19699":9603,"19700":8439,"19701":7247,"19702":10502,"19703":803,"19704":8932,"19705":4260,"19706":1143,"19707":2017,"19708":2743,"19709":11632,"19710":2768,"19711":14610,"19712":8714,"19713":10558,"19714":9708,"19715":186,"19716":10745,"19717":12367,"19718":13470,"19719":5878,"19720":5669,"19721":9543,"19722":14895,"19723":2638,"19724":3473,"19725":7571,"19726":13356,"19727":7419,"19728":922,"19729":14431,"19730":11326,"19731":4836,"19732":14367,"19733":3987,"19734":7962,"19735":3002,"19736":10710,"19737":10257,"19738":11588,"19739":9024,"19740":959,"19741":10751,"19742":241,"19743":399,"19744":11610,"19745":13889,"19746":10530,"19747":6154,"19748":7395,"19749":11868,"19750":2757,"19751":9184,"19752":4405,"19753":10221,"19754":14217,"19755":7890,"19756":9711,"19757":7842,"19758":8928,"19759":12004,"19760":2923,"19761":3653,"19762":12226,"19763":11557,"19764":7383,"19765":7195,"19766":817,"19767":10175,"19768":10588,"19769":9639,"19770":5409,"19771":2957,"19772":887,"19773":14403,"19774":14641,"19775":12482,"19776":6032,"19777":4328,"19778":14106,"19779":9522,"19780":6027,"19781":2649,"19782":547,"19783":10682,"19784":5127,"19785":13227,"19786":2507,"19787":8833,"19788":8874,"19789":5992,"19790":11562,"19791":13503,"19792":9848,"19793":15135,"19794":3610,"19795":12136,"19796":498,"19797":6177,"19798":10973,"19799":11582,"19800":13731,"19801":7243,"19802":10281,"19803":5450,"19804":1238,"19805":7638,"19806":4076,"19807":14292,"19808":6957,"19809":10733,"19810":5993,"19811":3474,"19812":11329,"19813":12052,"19814":8624,"19815":5361,"19816":7360,"19817":2233,"19818":6019,"19819":2229,"19820":5350,"19821":8187,"19822":9599,"19823":12668,"19824":4704,"19825":4827,"19826":9492,"19827":9275,"19828":14770,"19829":7093,"19830":14230,"19831":13244,"19832":7662,"19833":8993,"19834":4421,"19835":4055,"19836":4640,"19837":3398,"19838":8275,"19839":12700,"19840":10577,"19841":10144,"19842":13615,"19843":12208,"19844":7909,"19845":14412,"19846":3478,"19847":6364,"19848":1903,"19849":7263,"19850":14493,"19851":12585,"19852":4850,"19853":13070,"19854":9329,"19855":9390,"19856":8737,"19857":13463,"19858":289,"19859":13766,"19860":1428,"19861":7704,"19862":13214,"19863":10346,"19864":11224,"19865":10082,"19866":1818,"19867":5828,"19868":4494,"19869":795,"19870":4254,"19871":3886,"19872":15052,"19873":10795,"19874":6455,"19875":14006,"19876":6337,"19877":128,"19878":9759,"19879":8298,"19880":12181,"19881":4501,"19882":9640,"19883":5670,"19884":9330,"19885":11742,"19886":3211,"19887":8831,"19888":10428,"19889":1511,"19890":13632,"19891":11067,"19892":11829,"19893":14933,"19894":15018,"19895":5130,"19896":8245,"19897":14206,"19898":8074,"19899":9475,"19900":4882,"19901":2061,"19902":3990,"19903":5725,"19904":13371,"19905":4592,"19906":6063,"19907":7359,"19908":14512,"19909":12074,"19910":119,"19911":10004,"19912":510,"19913":12742,"19914":1550,"19915":3925,"19916":4986,"19917":9951,"19918":10055,"19919":10601,"19920":11872,"19921":630,"19922":1769,"19923":5363,"19924":3687,"19925":4974,"19926":12137,"19927":7342,"19928":10357,"19929":2722,"19930":8791,"19931":12570,"19932":2388,"19933":8810,"19934":11414,"19935":11622,"19936":12629,"19937":4023,"19938":223,"19939":8058,"19940":5891,"19941":11094,"19942":11725,"19943":12184,"19944":7840,"19945":8109,"19946":1347,"19947":10934,"19948":10322,"19949":255,"19950":380,"19951":5440,"19952":4303,"19953":2487,"19954":8664,"19955":4425,"19956":14238,"19957":5138,"19958":711,"19959":2455,"19960":7221,"19961":3193,"19962":10131,"19963":102,"19964":14104,"19965":9342,"19966":10906,"19967":11893,"19968":6494,"19969":12701,"19970":9779,"19971":6750,"19972":10609,"19973":1804,"19974":10935,"19975":5726,"19976":8894,"19977":187,"19978":6124,"19979":7480,"19980":1021,"19981":2249,"19982":12153,"19983":7605,"19984":14017,"19985":5019,"19986":1393,"19987":5048,"19988":8274,"19989":2108,"19990":13004,"19991":4415,"19992":10031,"19993":5745,"19994":4504,"19995":342,"19996":11561,"19997":8691,"19998":8661,"19999":1053,"20000":9669,"20001":3735,"20002":13011,"20003":6546,"20004":436,"20005":11809,"20006":14669,"20007":2462,"20008":7897,"20009":11209,"20010":12822,"20011":50,"20012":779,"20013":13330,"20014":4438,"20015":8226,"20016":9491,"20017":3757,"20018":709,"20019":12641,"20020":15139,"20021":3334,"20022":8642,"20023":6298,"20024":13738,"20025":9622,"20026":8653,"20027":2428,"20028":14578,"20029":2270,"20030":12717,"20031":13378,"20032":6732,"20033":14458,"20034":4657,"20035":14832,"20036":13389,"20037":7852,"20038":9239,"20039":14868,"20040":8485,"20041":55,"20042":8650,"20043":14534,"20044":10923,"20045":3559,"20046":4124,"20047":4600,"20048":8555,"20049":14988,"20050":1816,"20051":14051,"20052":13032,"20053":4562,"20054":1466,"20055":14532,"20056":13104,"20057":9809,"20058":4643,"20059":8730,"20060":5079,"20061":1367,"20062":10783,"20063":6571,"20064":72,"20065":11115,"20066":14908,"20067":167,"20068":4224,"20069":5424,"20070":4831,"20071":11559,"20072":8388,"20073":6550,"20074":9279,"20075":9359,"20076":2436,"20077":6943,"20078":1941,"20079":6393,"20080":5724,"20081":5898,"20082":12565,"20083":5276,"20084":2358,"20085":13316,"20086":11446,"20087":10,"20088":526,"20089":6477,"20090":9520,"20091":14624,"20092":6603,"20093":6111,"20094":7145,"20095":12106,"20096":4907,"20097":7369,"20098":3796,"20099":6788,"20100":12413,"20101":7659,"20102":13925,"20103":13588,"20104":4156,"20105":8328,"20106":3548,"20107":14198,"20108":10503,"20109":201,"20110":9201,"20111":7517,"20112":6993,"20113":13930,"20114":15091,"20115":8203,"20116":10918,"20117":2476,"20118":13496,"20119":8497,"20120":8881,"20121":1459,"20122":738,"20123":14051,"20124":3049,"20125":2003,"20126":14625,"20127":563,"20128":14668,"20129":7375,"20130":6165,"20131":11837,"20132":1460,"20133":3300,"20134":14361,"20135":14991,"20136":6930,"20137":6296,"20138":6094,"20139":8394,"20140":4625,"20141":3696,"20142":4610,"20143":3800,"20144":12507,"20145":9571,"20146":7824,"20147":3925,"20148":2162,"20149":2418,"20150":14499,"20151":325,"20152":14414,"20153":9704,"20154":2306,"20155":14819,"20156":6517,"20157":9852,"20158":12162,"20159":2172,"20160":4933,"20161":3094,"20162":2668,"20163":15065,"20164":2026,"20165":8650,"20166":4008,"20167":10734,"20168":1946,"20169":8353,"20170":7449,"20171":1632,"20172":9108,"20173":10647,"20174":7196,"20175":12327,"20176":322,"20177":3100,"20178":13663,"20179":9762,"20180":13871,"20181":3346,"20182":8791,"20183":6514,"20184":11567,"20185":14865,"20186":9152,"20187":3452,"20188":10133,"20189":7993,"20190":10032,"20191":5973,"20192":4823,"20193":12311,"20194":7216,"20195":12357,"20196":2513,"20197":932,"20198":2922,"20199":14808,"20200":13620,"20201":2716,"20202":14757,"20203":1227,"20204":6363,"20205":6036,"20206":11784,"20207":5390,"20208":3173,"20209":8104,"20210":9911,"20211":7207,"20212":11327,"20213":10190,"20214":1334,"20215":1068,"20216":13019,"20217":9624,"20218":2023,"20219":171,"20220":14162,"20221":13289,"20222":3047,"20223":8608,"20224":6600,"20225":2443,"20226":11022,"20227":9817,"20228":7971,"20229":13746,"20230":8080,"20231":11043,"20232":14521,"20233":5166,"20234":1720,"20235":14904,"20236":862,"20237":9171,"20238":10616,"20239":9088,"20240":13541,"20241":1805,"20242":6637,"20243":2870,"20244":3927,"20245":5177,"20246":8043,"20247":13140,"20248":1084,"20249":10457,"20250":6959,"20251":6562,"20252":13435,"20253":3122,"20254":14797,"20255":2185,"20256":10287,"20257":6156,"20258":9472,"20259":6998,"20260":4785,"20261":1653,"20262":8056,"20263":5393,"20264":5999,"20265":1545,"20266":6085,"20267":9677,"20268":11283,"20269":3988,"20270":13855,"20271":3305,"20272":8956,"20273":9613,"20274":1375,"20275":10331,"20276":14702,"20277":1573,"20278":4569,"20279":4691,"20280":2581,"20281":12301,"20282":1425,"20283":8658,"20284":540,"20285":1183,"20286":14718,"20287":2435,"20288":2684,"20289":10312,"20290":4566,"20291":10452,"20292":13602,"20293":867,"20294":8707,"20295":3461,"20296":13335,"20297":13795,"20298":11072,"20299":6675,"20300":14924,"20301":1810,"20302":3016,"20303":4970,"20304":11638,"20305":7012,"20306":10789,"20307":5797,"20308":1113,"20309":6576,"20310":10478,"20311":6197,"20312":10494,"20313":1141,"20314":1218,"20315":14280,"20316":3584,"20317":12895,"20318":6682,"20319":1399,"20320":3514,"20321":13465,"20322":12759,"20323":661,"20324":2957,"20325":11,"20326":1191,"20327":6543,"20328":12,"20329":13841,"20330":4749,"20331":13536,"20332":2634,"20333":9128,"20334":12745,"20335":10033,"20336":6242,"20337":13569,"20338":10006,"20339":12009,"20340":892,"20341":4841,"20342":6660,"20343":7689,"20344":14080,"20345":4456,"20346":12835,"20347":15062,"20348":8770,"20349":7638,"20350":9852,"20351":7026,"20352":2824,"20353":2465,"20354":446,"20355":10582,"20356":5832,"20357":5000,"20358":5267,"20359":5737,"20360":9858,"20361":8913,"20362":4892,"20363":79,"20364":12447,"20365":5269,"20366":3003,"20367":5417,"20368":3821,"20369":10501,"20370":4981,"20371":4488,"20372":15034,"20373":12096,"20374":10679,"20375":882,"20376":3811,"20377":6042,"20378":345,"20379":2911,"20380":1695,"20381":9946,"20382":82,"20383":188,"20384":4057,"20385":7508,"20386":14714,"20387":5687,"20388":14111,"20389":11040,"20390":13716,"20391":14558,"20392":2533,"20393":9894,"20394":15119,"20395":1884,"20396":3376,"20397":12224,"20398":14659,"20399":10373,"20400":14712,"20401":10562,"20402":14757,"20403":13173,"20404":14508,"20405":2459,"20406":14360,"20407":12550,"20408":1529,"20409":6197,"20410":14499,"20411":6618,"20412":7554,"20413":10043,"20414":2594,"20415":6317,"20416":7677,"20417":1002,"20418":8038,"20419":855,"20420":14715,"20421":5807,"20422":11797,"20423":6693,"20424":14535,"20425":3262,"20426":10413,"20427":3345,"20428":11396,"20429":13764,"20430":72,"20431":6444,"20432":11498,"20433":9794,"20434":15109,"20435":15088,"20436":8738,"20437":13924,"20438":8171,"20439":7124,"20440":1234,"20441":10290,"20442":1056,"20443":9072,"20444":14372,"20445":13556,"20446":636,"20447":2171,"20448":11006,"20449":13171,"20450":11402,"20451":2422,"20452":3231,"20453":12005,"20454":12580,"20455":1231,"20456":13940,"20457":10690,"20458":308,"20459":3586,"20460":7912,"20461":9360,"20462":7080,"20463":2850,"20464":6389,"20465":12762,"20466":117,"20467":9817,"20468":6834,"20469":12380,"20470":8677,"20471":13826,"20472":5095,"20473":9664,"20474":2573,"20475":13514,"20476":2737,"20477":9322,"20478":4870,"20479":13788,"20480":12719,"20481":1291,"20482":4830,"20483":8043,"20484":5582,"20485":11804,"20486":7777,"20487":2525,"20488":8845,"20489":7109,"20490":3502,"20491":12496,"20492":10668,"20493":2663,"20494":3676,"20495":524,"20496":2227,"20497":5437,"20498":8388,"20499":2671,"20500":6762,"20501":9644,"20502":7856,"20503":3693,"20504":9031,"20505":6243,"20506":14430,"20507":7141,"20508":3609,"20509":11552,"20510":17,"20511":12021,"20512":13992,"20513":6846,"20514":3053,"20515":996,"20516":365,"20517":2873,"20518":10723,"20519":4964,"20520":14824,"20521":12669,"20522":3551,"20523":13909,"20524":9880,"20525":7563,"20526":8627,"20527":6499,"20528":4706,"20529":6441,"20530":9578,"20531":7373,"20532":1555,"20533":7758,"20534":8861,"20535":10745,"20536":308,"20537":6849,"20538":11618,"20539":6311,"20540":4395,"20541":4917,"20542":12337,"20543":8495,"20544":6697,"20545":9350,"20546":10269,"20547":13574,"20548":11900,"20549":10713,"20550":5611,"20551":1812,"20552":8170,"20553":7645,"20554":6888,"20555":8891,"20556":8116,"20557":4673,"20558":1197,"20559":2929,"20560":10191,"20561":944,"20562":2206,"20563":14498,"20564":11160,"20565":13620,"20566":13445,"20567":7357,"20568":9371,"20569":7513,"20570":7062,"20571":11520,"20572":10206,"20573":1647,"20574":577,"20575":14124,"20576":571,"20577":5155,"20578":12892,"20579":10011,"20580":13022,"20581":14504,"20582":7598,"20583":4431,"20584":3666,"20585":3708,"20586":2998,"20587":6925,"20588":1900,"20589":3334,"20590":10492,"20591":776,"20592":701,"20593":761,"20594":12787,"20595":3883,"20596":8897,"20597":8501,"20598":3742,"20599":3684,"20600":12359,"20601":13486,"20602":5116,"20603":12730,"20604":14570,"20605":2329,"20606":4290,"20607":5061,"20608":1054,"20609":10065,"20610":13425,"20611":6005,"20612":6126,"20613":14447,"20614":13771,"20615":9619,"20616":4249,"20617":5825,"20618":1973,"20619":6612,"20620":7708,"20621":1941,"20622":12575,"20623":904,"20624":7836,"20625":8620,"20626":14161,"20627":12996,"20628":10162,"20629":13957,"20630":10995,"20631":960,"20632":10075,"20633":1474,"20634":3237,"20635":5763,"20636":3541,"20637":5729,"20638":11219,"20639":12935,"20640":6439,"20641":9111,"20642":6320,"20643":1820,"20644":10619,"20645":6475,"20646":7655,"20647":13771,"20648":12275,"20649":1512,"20650":9719,"20651":13816,"20652":15032,"20653":14706,"20654":10599,"20655":2863,"20656":2110,"20657":10823,"20658":2050,"20659":2824,"20660":4956,"20661":2492,"20662":8105,"20663":441,"20664":7931,"20665":10393,"20666":12498,"20667":8500,"20668":14750,"20669":418,"20670":8336,"20671":13254,"20672":951,"20673":5984,"20674":3570,"20675":3925,"20676":4571,"20677":5930,"20678":8507,"20679":13471,"20680":5876,"20681":1817,"20682":2011,"20683":13736,"20684":11176,"20685":9952,"20686":3905,"20687":9712,"20688":8876,"20689":11583,"20690":11788,"20691":11994,"20692":349,"20693":4679,"20694":9840,"20695":8493,"20696":4240,"20697":8634,"20698":10421,"20699":1413,"20700":926,"20701":4410,"20702":12068,"20703":13438,"20704":13698,"20705":10668,"20706":2406,"20707":6441,"20708":2528,"20709":6801,"20710":7299,"20711":9709,"20712":12685,"20713":10845,"20714":14245,"20715":7112,"20716":8315,"20717":2111,"20718":1350,"20719":6101,"20720":7177,"20721":7164,"20722":13959,"20723":2397,"20724":8796,"20725":5785,"20726":9154,"20727":11247,"20728":806,"20729":1469,"20730":7781,"20731":797,"20732":12995,"20733":7080,"20734":12080,"20735":3904,"20736":1641,"20737":1699,"20738":14379,"20739":9667,"20740":13980,"20741":14442,"20742":9606,"20743":4446,"20744":1365,"20745":10251,"20746":3758,"20747":12686,"20748":4214,"20749":12039,"20750":1716,"20751":8841,"20752":10979,"20753":1687,"20754":2555,"20755":6296,"20756":10203,"20757":1437,"20758":2933,"20759":5294,"20760":5274,"20761":369,"20762":7619,"20763":3175,"20764":1071,"20765":7110,"20766":3543,"20767":13218,"20768":3873,"20769":11526,"20770":3681,"20771":11797,"20772":5103,"20773":1760,"20774":13417,"20775":5406,"20776":6122,"20777":10360,"20778":4572,"20779":2839,"20780":4376,"20781":2099,"20782":1978,"20783":2453,"20784":80,"20785":9027,"20786":13391,"20787":5869,"20788":7121,"20789":12754,"20790":5789,"20791":9339,"20792":11708,"20793":1676,"20794":3104,"20795":3841,"20796":10848,"20797":5521,"20798":11242,"20799":2653,"20800":472,"20801":2473,"20802":14245,"20803":13128,"20804":5266,"20805":13503,"20806":10454,"20807":11257,"20808":13770,"20809":14150,"20810":4884,"20811":13815,"20812":838,"20813":15133,"20814":14942,"20815":8414,"20816":8346,"20817":1191,"20818":5190,"20819":9208,"20820":3996,"20821":12813,"20822":1765,"20823":3721,"20824":14482,"20825":10177,"20826":11272,"20827":3655,"20828":11533,"20829":8690,"20830":4480,"20831":472,"20832":4977,"20833":2730,"20834":9461,"20835":12136,"20836":12364,"20837":1452,"20838":3345,"20839":13425,"20840":2601,"20841":14550,"20842":14759,"20843":1924,"20844":1676,"20845":13330,"20846":9305,"20847":7669,"20848":15090,"20849":14173,"20850":14988,"20851":8421,"20852":2208,"20853":9996,"20854":3559,"20855":10846,"20856":3705,"20857":10434,"20858":3889,"20859":3991,"20860":8981,"20861":15151,"20862":13351,"20863":475,"20864":12659,"20865":7768,"20866":3549,"20867":7201,"20868":4293,"20869":11086,"20870":11366,"20871":4896,"20872":9808,"20873":9806,"20874":872,"20875":6584,"20876":3049,"20877":13259,"20878":4255,"20879":14248,"20880":337,"20881":1180,"20882":3895,"20883":3825,"20884":8032,"20885":6070,"20886":9974,"20887":2392,"20888":13547,"20889":6635,"20890":6664,"20891":14542,"20892":9315,"20893":7203,"20894":164,"20895":9081,"20896":10698,"20897":14095,"20898":14357,"20899":12423,"20900":7062,"20901":9635,"20902":457,"20903":14538,"20904":14787,"20905":13923,"20906":15059,"20907":11063,"20908":2203,"20909":5197,"20910":278,"20911":855,"20912":5987,"20913":12793,"20914":996,"20915":10600,"20916":5596,"20917":8772,"20918":11181,"20919":12518,"20920":939,"20921":8656,"20922":13669,"20923":6603,"20924":6759,"20925":10324,"20926":14827,"20927":7933,"20928":5460,"20929":6935,"20930":13671,"20931":47,"20932":10854,"20933":1088,"20934":11052,"20935":9393,"20936":6231,"20937":4879,"20938":14181,"20939":3944,"20940":9126,"20941":7596,"20942":13176,"20943":14503,"20944":8159,"20945":12830,"20946":13797,"20947":3468,"20948":4955,"20949":11329,"20950":6825,"20951":8620,"20952":4516,"20953":5918,"20954":7237,"20955":12239,"20956":269,"20957":5178,"20958":7946,"20959":14011,"20960":14748,"20961":10127,"20962":352,"20963":3254,"20964":5988,"20965":3993,"20966":5058,"20967":10963,"20968":9014,"20969":14360,"20970":10200,"20971":13728,"20972":5926,"20973":12884,"20974":9574,"20975":14730,"20976":2201,"20977":8819,"20978":3013,"20979":3953,"20980":2044,"20981":1598,"20982":3792,"20983":9343,"20984":5562,"20985":3847,"20986":11742,"20987":481,"20988":3245,"20989":4872,"20990":2925,"20991":2114,"20992":13840,"20993":6314,"20994":1507,"20995":659,"20996":7200,"20997":2635,"20998":13753,"20999":8752,"21000":10403,"21001":6089,"21002":3239,"21003":11882,"21004":14862,"21005":6370,"21006":9185,"21007":5033,"21008":2571,"21009":2169,"21010":1840,"21011":9037,"21012":4740,"21013":4027,"21014":7269,"21015":8917,"21016":6123,"21017":838,"21018":11920,"21019":2371,"21020":127,"21021":7326,"21022":11255,"21023":1447,"21024":1044,"21025":13300,"21026":2526,"21027":4900,"21028":6183,"21029":14516,"21030":5600,"21031":3073,"21032":6049,"21033":10356,"21034":5238,"21035":12157,"21036":5030,"21037":12543,"21038":14510,"21039":5184,"21040":42,"21041":10806,"21042":12739,"21043":11960,"21044":3732,"21045":5003,"21046":6569,"21047":2789,"21048":12921,"21049":246,"21050":5749,"21051":11489,"21052":10362,"21053":8720,"21054":10431,"21055":4053,"21056":2100,"21057":4889,"21058":8178,"21059":8891,"21060":1428,"21061":11504,"21062":9551,"21063":12490,"21064":6316,"21065":5683,"21066":7895,"21067":985,"21068":13200,"21069":5135,"21070":2385,"21071":3007,"21072":1679,"21073":1846,"21074":5483,"21075":8799,"21076":4422,"21077":13856,"21078":14539,"21079":817,"21080":14019,"21081":9103,"21082":9336,"21083":8285,"21084":10933,"21085":2187,"21086":14482,"21087":9230,"21088":9229,"21089":7272,"21090":14241,"21091":14944,"21092":1735,"21093":7314,"21094":9308,"21095":6964,"21096":6617,"21097":2816,"21098":9492,"21099":4673,"21100":1265,"21101":14720,"21102":3971,"21103":5026,"21104":1005,"21105":9796,"21106":2735,"21107":12212,"21108":47,"21109":14895,"21110":8261,"21111":8086,"21112":14572,"21113":3669,"21114":13229,"21115":2267,"21116":3132,"21117":11295,"21118":7585,"21119":10990,"21120":982,"21121":2779,"21122":10711,"21123":12995,"21124":9012,"21125":2739,"21126":9394,"21127":5074,"21128":15128,"21129":3096,"21130":11401,"21131":8397,"21132":12766,"21133":3471,"21134":11612,"21135":14976,"21136":10906,"21137":11670,"21138":297,"21139":4133,"21140":1868,"21141":11236,"21142":11626,"21143":7290,"21144":946,"21145":10532,"21146":9926,"21147":3058,"21148":8917,"21149":7841,"21150":12443,"21151":246,"21152":1629,"21153":496,"21154":10567,"21155":607,"21156":502,"21157":3845,"21158":12925,"21159":166,"21160":8461,"21161":1706,"21162":11771,"21163":855,"21164":12916,"21165":7606,"21166":3620,"21167":13058,"21168":14368,"21169":12065,"21170":9509,"21171":1370,"21172":5524,"21173":12616,"21174":1767,"21175":12725,"21176":14181,"21177":12725,"21178":3950,"21179":3652,"21180":10241,"21181":772,"21182":10042,"21183":11535,"21184":3351,"21185":3196,"21186":4428,"21187":11497,"21188":8476,"21189":12108,"21190":5082,"21191":10719,"21192":9405,"21193":4052,"21194":13991,"21195":8138,"21196":12148,"21197":7877,"21198":1667,"21199":6275,"21200":12983,"21201":650,"21202":4731,"21203":1655,"21204":14138,"21205":14311,"21206":12760,"21207":5144,"21208":13645,"21209":1913,"21210":4209,"21211":12852,"21212":11432,"21213":7655,"21214":7960,"21215":5699,"21216":9684,"21217":11745,"21218":9589,"21219":8238,"21220":4933,"21221":504,"21222":13333,"21223":14369,"21224":111,"21225":9887,"21226":14099,"21227":2123,"21228":832,"21229":8145,"21230":4019,"21231":10724,"21232":2891,"21233":2426,"21234":11839,"21235":8255,"21236":8871,"21237":6882,"21238":2491,"21239":12590,"21240":14528,"21241":1431,"21242":2509,"21243":3857,"21244":838,"21245":7498,"21246":10874,"21247":13016,"21248":1632,"21249":11796,"21250":1347,"21251":3060,"21252":14103,"21253":1522,"21254":429,"21255":8466,"21256":2491,"21257":7028,"21258":533,"21259":13962,"21260":4526,"21261":1130,"21262":4470,"21263":11498,"21264":7411,"21265":5057,"21266":2992,"21267":3480,"21268":15121,"21269":92,"21270":1488,"21271":14227,"21272":478,"21273":14378,"21274":7005,"21275":14956,"21276":14142,"21277":9404,"21278":12263,"21279":3431,"21280":124,"21281":14165,"21282":1278,"21283":10365,"21284":14846,"21285":14463,"21286":1966,"21287":262,"21288":11346,"21289":3569,"21290":5624,"21291":8664,"21292":10343,"21293":6458,"21294":9037,"21295":12827,"21296":14351,"21297":8966,"21298":11147,"21299":7834,"21300":14940,"21301":4475,"21302":2847,"21303":345,"21304":9272,"21305":6450,"21306":8347,"21307":510,"21308":348,"21309":13458,"21310":8102,"21311":14969,"21312":3183,"21313":2961,"21314":10755,"21315":8604,"21316":14031,"21317":3866,"21318":13955,"21319":4959,"21320":14853,"21321":14236,"21322":14985,"21323":1719,"21324":3334,"21325":2868,"21326":3485,"21327":462,"21328":336,"21329":8746,"21330":4444,"21331":8583,"21332":5051,"21333":7991,"21334":267,"21335":3474,"21336":6588,"21337":13292,"21338":13325,"21339":3421,"21340":9333,"21341":2117,"21342":7524,"21343":3387,"21344":14682,"21345":4008,"21346":5987,"21347":906,"21348":2535,"21349":3834,"21350":8691,"21351":2108,"21352":13087,"21353":5801,"21354":15132,"21355":11722,"21356":716,"21357":7014,"21358":2894,"21359":11928,"21360":8015,"21361":13875,"21362":11838,"21363":12359,"21364":11557,"21365":9002,"21366":11498,"21367":7010,"21368":1849,"21369":15070,"21370":8572,"21371":13223,"21372":3868,"21373":2227,"21374":13185,"21375":888,"21376":11851,"21377":8301,"21378":2995,"21379":11745,"21380":2191,"21381":1359,"21382":12456,"21383":1093,"21384":8230,"21385":1544,"21386":3348,"21387":1508,"21388":9703,"21389":5466,"21390":4070,"21391":14796,"21392":2471,"21393":995,"21394":10148,"21395":10057,"21396":14022,"21397":15145,"21398":5794,"21399":11038,"21400":9283,"21401":4972,"21402":13667,"21403":13295,"21404":2835,"21405":12219,"21406":6819,"21407":6129,"21408":14447,"21409":3900,"21410":14336,"21411":5598,"21412":10424,"21413":12368,"21414":1202,"21415":11176,"21416":11838,"21417":371,"21418":12252,"21419":11928,"21420":3950,"21421":7644,"21422":6033,"21423":2308,"21424":12748,"21425":1563,"21426":6602,"21427":15082,"21428":3280,"21429":13760,"21430":13383,"21431":6878,"21432":8294,"21433":287,"21434":13536,"21435":389,"21436":3865,"21437":6657,"21438":1020,"21439":7006,"21440":477,"21441":6205,"21442":8918,"21443":11459,"21444":5564,"21445":9330,"21446":2419,"21447":2205,"21448":4008,"21449":3456,"21450":4203,"21451":10136,"21452":6959,"21453":3776,"21454":4656,"21455":3770,"21456":6700,"21457":4612,"21458":7998,"21459":9791,"21460":416,"21461":14943,"21462":1760,"21463":8322,"21464":11724,"21465":1595,"21466":10083,"21467":14867,"21468":7152,"21469":12759,"21470":2190,"21471":13579,"21472":11870,"21473":7939,"21474":343,"21475":7315,"21476":10091,"21477":5566,"21478":1909,"21479":5390,"21480":13698,"21481":10567,"21482":14410,"21483":11302,"21484":7239,"21485":9592,"21486":7355,"21487":9660,"21488":6148,"21489":14884,"21490":1530,"21491":6644,"21492":9681,"21493":747,"21494":11159,"21495":108,"21496":1504,"21497":7835,"21498":1829,"21499":6878,"21500":12437,"21501":2091,"21502":1170,"21503":5199,"21504":9009,"21505":7390,"21506":14937,"21507":5623,"21508":8742,"21509":3825,"21510":9949,"21511":11974,"21512":5142,"21513":13720,"21514":3018,"21515":5666,"21516":245,"21517":6911,"21518":3113,"21519":2283,"21520":7897,"21521":1327,"21522":8213,"21523":3514,"21524":9467,"21525":7709,"21526":8447,"21527":7117,"21528":9490,"21529":3339,"21530":11738,"21531":5640,"21532":277,"21533":586,"21534":444,"21535":7555,"21536":4565,"21537":4116,"21538":12544,"21539":4807,"21540":10624,"21541":6438,"21542":13745,"21543":10309,"21544":4869,"21545":7636,"21546":3663,"21547":4039,"21548":11760,"21549":3582,"21550":11481,"21551":12968,"21552":10737,"21553":13547,"21554":14026,"21555":7100,"21556":6994,"21557":6068,"21558":11094,"21559":10635,"21560":1365,"21561":13145,"21562":617,"21563":13810,"21564":3693,"21565":80,"21566":9585,"21567":12391,"21568":12167,"21569":14464,"21570":7621,"21571":6463,"21572":12414,"21573":8833,"21574":5270,"21575":10007,"21576":4058,"21577":5911,"21578":8711,"21579":278,"21580":14048,"21581":6626,"21582":5523,"21583":7774,"21584":14691,"21585":15137,"21586":7713,"21587":2842,"21588":9410,"21589":335,"21590":13837,"21591":13958,"21592":7304,"21593":13631,"21594":13012,"21595":7693,"21596":6734,"21597":9062,"21598":9508,"21599":4645,"21600":6727,"21601":11462,"21602":13599,"21603":3598,"21604":10266,"21605":9503,"21606":6068,"21607":223,"21608":6397,"21609":14369,"21610":8458,"21611":4939,"21612":14332,"21613":534,"21614":3956,"21615":10918,"21616":14682,"21617":6905,"21618":2531,"21619":3742,"21620":7964,"21621":11986,"21622":7603,"21623":11277,"21624":966,"21625":10024,"21626":3331,"21627":6383,"21628":8362,"21629":10433,"21630":8268,"21631":14858,"21632":589,"21633":11668,"21634":2751,"21635":6491,"21636":6390,"21637":7523,"21638":6168,"21639":3115,"21640":5417,"21641":5069,"21642":4461,"21643":10170,"21644":1567,"21645":6106,"21646":12441,"21647":4481,"21648":10229,"21649":14236,"21650":14308,"21651":6953,"21652":6384,"21653":8432,"21654":14428,"21655":632,"21656":9226,"21657":790,"21658":14258,"21659":2959,"21660":13078,"21661":9361,"21662":2794,"21663":13056,"21664":14845,"21665":9856,"21666":13472,"21667":5194,"21668":3160,"21669":6078,"21670":10149,"21671":5539,"21672":6210,"21673":9573,"21674":4624,"21675":6542,"21676":5199,"21677":9025,"21678":12770,"21679":12281,"21680":1587,"21681":13681,"21682":14850,"21683":14920,"21684":11081,"21685":8469,"21686":5505,"21687":7560,"21688":7694,"21689":1797,"21690":12042,"21691":1302,"21692":3363,"21693":14784,"21694":14822,"21695":12444,"21696":9047,"21697":9430,"21698":5780,"21699":14191,"21700":4901,"21701":10969,"21702":8525,"21703":13098,"21704":3643,"21705":14844,"21706":14630,"21707":11655,"21708":10618,"21709":4181,"21710":6860,"21711":9339,"21712":2447,"21713":1585,"21714":6753,"21715":983,"21716":3156,"21717":7435,"21718":5261,"21719":9338,"21720":1098,"21721":12972,"21722":1000,"21723":7614,"21724":5307,"21725":12829,"21726":5195,"21727":2352,"21728":8247,"21729":4214,"21730":1557,"21731":4638,"21732":13940,"21733":3031,"21734":2858,"21735":14890,"21736":9533,"21737":4620,"21738":9688,"21739":1853,"21740":8087,"21741":11111,"21742":11989,"21743":14348,"21744":5528,"21745":3385,"21746":13628,"21747":11117,"21748":14109,"21749":14540,"21750":573,"21751":1574,"21752":2802,"21753":1092,"21754":10648,"21755":13034,"21756":699,"21757":5976,"21758":2252,"21759":10170,"21760":1177,"21761":1589,"21762":8858,"21763":11039,"21764":5183,"21765":1300,"21766":6073,"21767":11618,"21768":561,"21769":7865,"21770":10351,"21771":7052,"21772":7540,"21773":2129,"21774":43,"21775":7553,"21776":9020,"21777":6843,"21778":14329,"21779":1057,"21780":1079,"21781":8589,"21782":14527,"21783":1330,"21784":7147,"21785":11976,"21786":7979,"21787":5325,"21788":868,"21789":9953,"21790":12057,"21791":9123,"21792":10990,"21793":12882,"21794":12222,"21795":2291,"21796":688,"21797":10315,"21798":562,"21799":2990,"21800":3699,"21801":1236,"21802":8844,"21803":4723,"21804":3445,"21805":13038,"21806":14537,"21807":9331,"21808":12012,"21809":14954,"21810":749,"21811":2691,"21812":7864,"21813":8900,"21814":2933,"21815":7059,"21816":12770,"21817":11910,"21818":12664,"21819":409,"21820":7819,"21821":10957,"21822":14108,"21823":15116,"21824":3908,"21825":2018,"21826":13057,"21827":10832,"21828":12590,"21829":9163,"21830":10860,"21831":6661,"21832":11920,"21833":3252,"21834":11295,"21835":15101,"21836":7749,"21837":6132,"21838":9040,"21839":9223,"21840":13404,"21841":13687,"21842":8594,"21843":14150,"21844":4999,"21845":1646,"21846":9812,"21847":12951,"21848":13741,"21849":7287,"21850":8475,"21851":375,"21852":9837,"21853":5908,"21854":2252,"21855":5690,"21856":8702,"21857":11257,"21858":3243,"21859":4606,"21860":5390,"21861":9513,"21862":9088,"21863":12775,"21864":3391,"21865":10845,"21866":3426,"21867":4108,"21868":6331,"21869":2501,"21870":4790,"21871":13583,"21872":12363,"21873":5089,"21874":4467,"21875":735,"21876":11178,"21877":10563,"21878":15131,"21879":6624,"21880":13500,"21881":4903,"21882":756,"21883":2381,"21884":11779,"21885":3448,"21886":9376,"21887":2796,"21888":2658,"21889":4964,"21890":11634,"21891":2953,"21892":4633,"21893":6156,"21894":11975,"21895":13128,"21896":3377,"21897":10592,"21898":5571,"21899":4297,"21900":8156,"21901":793,"21902":15008,"21903":2987,"21904":5188,"21905":8740,"21906":2406,"21907":5994,"21908":14774,"21909":12268,"21910":9207,"21911":20,"21912":14860,"21913":9617,"21914":13291,"21915":9997,"21916":5763,"21917":1534,"21918":8863,"21919":4159,"21920":12933,"21921":12156,"21922":5966,"21923":4250,"21924":7382,"21925":3122,"21926":13773,"21927":11239,"21928":6771,"21929":13720,"21930":2478,"21931":12581,"21932":8294,"21933":11920,"21934":3243,"21935":155,"21936":1532,"21937":8923,"21938":8955,"21939":1827,"21940":3635,"21941":14168,"21942":7360,"21943":7161,"21944":1892,"21945":4692,"21946":4759,"21947":655,"21948":6141,"21949":12400,"21950":4957,"21951":11464,"21952":10374,"21953":646,"21954":13358,"21955":10193,"21956":12354,"21957":2083,"21958":14540,"21959":3578,"21960":14925,"21961":10790,"21962":6718,"21963":672,"21964":4399,"21965":2498,"21966":8898,"21967":14946,"21968":14259,"21969":12367,"21970":11626,"21971":4015,"21972":4825,"21973":180,"21974":3899,"21975":4164,"21976":2949,"21977":4412,"21978":7196,"21979":2008,"21980":11289,"21981":3403,"21982":4611,"21983":6650,"21984":12323,"21985":5066,"21986":4751,"21987":263,"21988":5421,"21989":2717,"21990":6410,"21991":14917,"21992":11825,"21993":10210,"21994":15130,"21995":6947,"21996":1991,"21997":9586,"21998":9531,"21999":6054,"22000":11398,"22001":4837,"22002":801,"22003":10953,"22004":10188,"22005":11333,"22006":10975,"22007":9717,"22008":8096,"22009":5358,"22010":6204,"22011":4204,"22012":2919,"22013":9641,"22014":9693,"22015":8378,"22016":7971,"22017":7751,"22018":6493,"22019":2805,"22020":7374,"22021":729,"22022":2560,"22023":11952,"22024":15097,"22025":12555,"22026":10462,"22027":7187,"22028":2025,"22029":9204,"22030":11514,"22031":3155,"22032":15071,"22033":2981,"22034":5372,"22035":2389,"22036":14105,"22037":2345,"22038":3635,"22039":10682,"22040":2148,"22041":11701,"22042":4067,"22043":13970,"22044":700,"22045":3599,"22046":11497,"22047":5959,"22048":11237,"22049":10439,"22050":7077,"22051":1759,"22052":5484,"22053":2104,"22054":14324,"22055":14832,"22056":9137,"22057":12335,"22058":6008,"22059":1107,"22060":10392,"22061":13770,"22062":946,"22063":1368,"22064":2413,"22065":876,"22066":5232,"22067":4104,"22068":13771,"22069":8389,"22070":14324,"22071":11714,"22072":740,"22073":2476,"22074":6792,"22075":10214,"22076":11641,"22077":7105,"22078":5122,"22079":14460,"22080":10311,"22081":1717,"22082":9642,"22083":2213,"22084":1094,"22085":3015,"22086":3436,"22087":14481,"22088":9034,"22089":8794,"22090":10331,"22091":2007,"22092":4747,"22093":13624,"22094":529,"22095":1398,"22096":8196,"22097":1894,"22098":10797,"22099":2120,"22100":11438,"22101":7918,"22102":12337,"22103":8207,"22104":10684,"22105":1305,"22106":6411,"22107":6466,"22108":6359,"22109":9265,"22110":633,"22111":10683,"22112":4758,"22113":8080,"22114":4164,"22115":9910,"22116":1252,"22117":200,"22118":5541,"22119":9452,"22120":12654,"22121":6672,"22122":10973,"22123":11793,"22124":2855,"22125":3194,"22126":2263,"22127":13150,"22128":13499,"22129":14206,"22130":1303,"22131":9210,"22132":10930,"22133":13118,"22134":12681,"22135":3088,"22136":12489,"22137":10645,"22138":4379,"22139":12313,"22140":10916,"22141":11682,"22142":13763,"22143":515,"22144":12504,"22145":8097,"22146":3634,"22147":7475,"22148":2115,"22149":3793,"22150":4940,"22151":10502,"22152":13900,"22153":11283,"22154":5411,"22155":14392,"22156":4979,"22157":3425,"22158":13193,"22159":14370,"22160":1892,"22161":6352,"22162":7949,"22163":1993,"22164":10828,"22165":10010,"22166":1170,"22167":2046,"22168":1509,"22169":7092,"22170":13727,"22171":2544,"22172":13059,"22173":4974,"22174":6761,"22175":13593,"22176":8360,"22177":7209,"22178":8320,"22179":2340,"22180":6771,"22181":6041,"22182":3026,"22183":2829,"22184":1427,"22185":14039,"22186":7491,"22187":5780,"22188":7853,"22189":10784,"22190":11237,"22191":751,"22192":11957,"22193":8691,"22194":13081,"22195":378,"22196":12496,"22197":2740,"22198":4456,"22199":11954,"22200":9326,"22201":9502,"22202":11927,"22203":11821,"22204":8989,"22205":10985,"22206":10855,"22207":11322,"22208":13436,"22209":12803,"22210":6180,"22211":11534,"22212":10621,"22213":4305,"22214":8003,"22215":3918,"22216":6677,"22217":11620,"22218":4323,"22219":9769,"22220":7674,"22221":7402,"22222":11293,"22223":13187,"22224":13051,"22225":3702,"22226":3459,"22227":8687,"22228":7169,"22229":3887,"22230":908,"22231":5122,"22232":10378,"22233":14054,"22234":8009,"22235":3022,"22236":423,"22237":5287,"22238":7559,"22239":12961,"22240":7240,"22241":10786,"22242":9135,"22243":3093,"22244":11519,"22245":5792,"22246":5407,"22247":7577,"22248":13344,"22249":8881,"22250":11620,"22251":9268,"22252":2855,"22253":199,"22254":11912,"22255":4932,"22256":8264,"22257":3651,"22258":8753,"22259":12036,"22260":2720,"22261":11490,"22262":13145,"22263":1299,"22264":1233,"22265":14342,"22266":12494,"22267":4105,"22268":9314,"22269":11568,"22270":6292,"22271":2392,"22272":10874,"22273":2590,"22274":1149,"22275":5747,"22276":5200,"22277":11966,"22278":5898,"22279":6484,"22280":13113,"22281":3577,"22282":295,"22283":6077,"22284":12193,"22285":14387,"22286":4316,"22287":14764,"22288":4880,"22289":5324,"22290":3264,"22291":3337,"22292":6929,"22293":10014,"22294":1113,"22295":8348,"22296":13450,"22297":11790,"22298":12906,"22299":5511,"22300":9,"22301":11746,"22302":14782,"22303":14044,"22304":5092,"22305":3738,"22306":12332,"22307":9096,"22308":14614,"22309":11286,"22310":13918,"22311":3679,"22312":5572,"22313":12086,"22314":12817,"22315":58,"22316":12859,"22317":3499,"22318":10732,"22319":12944,"22320":4996,"22321":94,"22322":8132,"22323":10374,"22324":8397,"22325":6296,"22326":2213,"22327":7597,"22328":3666,"22329":11774,"22330":2474,"22331":129,"22332":1490,"22333":334,"22334":2112,"22335":7223,"22336":1523,"22337":5901,"22338":4421,"22339":11077,"22340":7666,"22341":4628,"22342":1155,"22343":11645,"22344":13792,"22345":8490,"22346":14215,"22347":7502,"22348":2217,"22349":4449,"22350":8877,"22351":965,"22352":5224,"22353":4462,"22354":14621,"22355":4459,"22356":14432,"22357":1400,"22358":10182,"22359":11691,"22360":3874,"22361":14394,"22362":4336,"22363":13717,"22364":13218,"22365":8243,"22366":5651,"22367":3970,"22368":10171,"22369":13466,"22370":4115,"22371":10025,"22372":3853,"22373":6987,"22374":4746,"22375":6203,"22376":5533,"22377":3094,"22378":12490,"22379":98,"22380":9159,"22381":4382,"22382":12307,"22383":2163,"22384":12977,"22385":11038,"22386":1857,"22387":7188,"22388":179,"22389":10765,"22390":10534,"22391":7913,"22392":3278,"22393":9220,"22394":6920,"22395":89,"22396":10122,"22397":12256,"22398":46,"22399":2810,"22400":3140,"22401":3945,"22402":7469,"22403":1499,"22404":9709,"22405":6356,"22406":6974,"22407":10162,"22408":14041,"22409":12470,"22410":10917,"22411":4900,"22412":10675,"22413":12205,"22414":3914,"22415":12139,"22416":7781,"22417":9263,"22418":1582,"22419":47,"22420":14485,"22421":10583,"22422":12566,"22423":6603,"22424":8540,"22425":12894,"22426":3975,"22427":2611,"22428":13574,"22429":3161,"22430":8857,"22431":13097,"22432":3376,"22433":3162,"22434":9074,"22435":572,"22436":9221,"22437":2221,"22438":5155,"22439":1163,"22440":5946,"22441":1917,"22442":12792,"22443":8221,"22444":6895,"22445":1191,"22446":12356,"22447":3737,"22448":12828,"22449":4081,"22450":1644,"22451":10987,"22452":7803,"22453":14377,"22454":12008,"22455":3772,"22456":8430,"22457":551,"22458":7317,"22459":3178,"22460":12136,"22461":11387,"22462":322,"22463":10289,"22464":476,"22465":9727,"22466":4379,"22467":6429,"22468":3754,"22469":2574,"22470":14435,"22471":6852,"22472":11229,"22473":13134,"22474":14337,"22475":13577,"22476":11686,"22477":810,"22478":9734,"22479":2040,"22480":14402,"22481":8761,"22482":12102,"22483":10846,"22484":3014,"22485":5086,"22486":7327,"22487":11654,"22488":2506,"22489":372,"22490":14200,"22491":5177,"22492":6538,"22493":2131,"22494":8874,"22495":10537,"22496":9341,"22497":6837,"22498":2405,"22499":598,"22500":11477,"22501":10952,"22502":1467,"22503":10676,"22504":1219,"22505":11790,"22506":12346,"22507":9323,"22508":2621,"22509":3908,"22510":12547,"22511":2696,"22512":5924,"22513":11627,"22514":3452,"22515":3370,"22516":14077,"22517":10048,"22518":10608,"22519":5862,"22520":11888,"22521":13784,"22522":5004,"22523":12896,"22524":9312,"22525":1293,"22526":2286,"22527":9302,"22528":4635,"22529":11478,"22530":10005,"22531":4148,"22532":133,"22533":11852,"22534":2477,"22535":12619,"22536":1422,"22537":2821,"22538":8500,"22539":9763,"22540":4766,"22541":10004,"22542":9765,"22543":10335,"22544":9758,"22545":15055,"22546":13906,"22547":8121,"22548":14220,"22549":7606,"22550":14151,"22551":2096,"22552":4049,"22553":9344,"22554":13954,"22555":6680,"22556":4451,"22557":11630,"22558":11956,"22559":12513,"22560":4464,"22561":9282,"22562":2168,"22563":6882,"22564":13855,"22565":14881,"22566":4953,"22567":5196,"22568":5690,"22569":2890,"22570":5853,"22571":6569,"22572":4695,"22573":4429,"22574":8532,"22575":2571,"22576":12488,"22577":4968,"22578":4999,"22579":8467,"22580":8260,"22581":11444,"22582":5975,"22583":8792,"22584":9773,"22585":11871,"22586":1363,"22587":9836,"22588":7904,"22589":9621,"22590":3684,"22591":5303,"22592":1152,"22593":14455,"22594":13104,"22595":11689,"22596":4541,"22597":11624,"22598":1828,"22599":3313,"22600":5362,"22601":12410,"22602":1559,"22603":13189,"22604":952,"22605":1995,"22606":8339,"22607":11633,"22608":12090,"22609":14535,"22610":10627,"22611":2584,"22612":4786,"22613":9992,"22614":8728,"22615":1230,"22616":9849,"22617":8820,"22618":15040,"22619":3240,"22620":10941,"22621":3382,"22622":7940,"22623":4346,"22624":7719,"22625":6181,"22626":6031,"22627":15007,"22628":10781,"22629":4268,"22630":10042,"22631":3915,"22632":13212,"22633":2139,"22634":14080,"22635":1608,"22636":12151,"22637":12850,"22638":11303,"22639":624,"22640":9347,"22641":6712,"22642":9831,"22643":12111,"22644":9168,"22645":983,"22646":589,"22647":6113,"22648":15100,"22649":901,"22650":12793,"22651":5102,"22652":4549,"22653":13591,"22654":6343,"22655":1124,"22656":9595,"22657":9881,"22658":10910,"22659":11396,"22660":8466,"22661":2440,"22662":1981,"22663":7161,"22664":11797,"22665":10070,"22666":2869,"22667":11161,"22668":8704,"22669":11811,"22670":4897,"22671":1712,"22672":3276,"22673":7409,"22674":257,"22675":14764,"22676":13730,"22677":11728,"22678":7488,"22679":11446,"22680":4745,"22681":12216,"22682":12780,"22683":3566,"22684":6647,"22685":7937,"22686":4018,"22687":10116,"22688":272,"22689":9975,"22690":7335,"22691":13100,"22692":9038,"22693":5427,"22694":14566,"22695":12440,"22696":3557,"22697":9918,"22698":215,"22699":14817,"22700":9978,"22701":11891,"22702":13564,"22703":1676,"22704":14671,"22705":5285,"22706":2092,"22707":977,"22708":7188,"22709":7865,"22710":12951,"22711":230,"22712":6948,"22713":13585,"22714":3613,"22715":4773,"22716":13412,"22717":3485,"22718":380,"22719":7781,"22720":351,"22721":2507,"22722":2591,"22723":2712,"22724":5326,"22725":10198,"22726":13922,"22727":13953,"22728":10898,"22729":12280,"22730":8042,"22731":8492,"22732":11100,"22733":2827,"22734":837,"22735":14084,"22736":9983,"22737":5148,"22738":5145,"22739":2513,"22740":13538,"22741":11419,"22742":9132,"22743":514,"22744":11992,"22745":206,"22746":589,"22747":6525,"22748":10236,"22749":1767,"22750":5224,"22751":10485,"22752":5824,"22753":13271,"22754":5316,"22755":3782,"22756":9147,"22757":2485,"22758":8333,"22759":6411,"22760":3160,"22761":2023,"22762":5521,"22763":10647,"22764":9902,"22765":5317,"22766":1780,"22767":6605,"22768":13115,"22769":1923,"22770":6923,"22771":12632,"22772":274,"22773":13866,"22774":4989,"22775":5567,"22776":11612,"22777":10458,"22778":14454,"22779":13771,"22780":13029,"22781":3507,"22782":12699,"22783":6172,"22784":12102,"22785":11239,"22786":7041,"22787":11867,"22788":87,"22789":7830,"22790":5094,"22791":1139,"22792":11017,"22793":5406,"22794":5142,"22795":14840,"22796":14269,"22797":7786,"22798":9115,"22799":485,"22800":1550,"22801":3467,"22802":6006,"22803":4439,"22804":8231,"22805":7057,"22806":702,"22807":9843,"22808":7645,"22809":12928,"22810":2446,"22811":12530,"22812":11300,"22813":7368,"22814":902,"22815":8634,"22816":10191,"22817":2051,"22818":14023,"22819":7101,"22820":4880,"22821":4700,"22822":8990,"22823":8057,"22824":12214,"22825":1391,"22826":11122,"22827":466,"22828":2276,"22829":10768,"22830":3311,"22831":1086,"22832":12445,"22833":5420,"22834":5458,"22835":13714,"22836":9426,"22837":1745,"22838":4780,"22839":7990,"22840":4688,"22841":3586,"22842":14791,"22843":11117,"22844":14270,"22845":7078,"22846":6942,"22847":5261,"22848":11919,"22849":5314,"22850":4478,"22851":970,"22852":8057,"22853":5969,"22854":7905,"22855":14027,"22856":10208,"22857":2559,"22858":12060,"22859":14139,"22860":268,"22861":2391,"22862":12348,"22863":10432,"22864":7496,"22865":601,"22866":10636,"22867":2957,"22868":5064,"22869":11614,"22870":12437,"22871":14455,"22872":14123,"22873":1265,"22874":11112,"22875":10869,"22876":2648,"22877":10768,"22878":13848,"22879":9521,"22880":11054,"22881":9762,"22882":7816,"22883":2766,"22884":2319,"22885":6771,"22886":12559,"22887":1190,"22888":8682,"22889":5245,"22890":14308,"22891":9141,"22892":1541,"22893":5972,"22894":8853,"22895":2600,"22896":1739,"22897":14691,"22898":6457,"22899":3958,"22900":13127,"22901":7989,"22902":10967,"22903":9386,"22904":6548,"22905":10811,"22906":1479,"22907":4003,"22908":6669,"22909":11231,"22910":2627,"22911":8961,"22912":1339,"22913":5439,"22914":2159,"22915":9607,"22916":13605,"22917":8512,"22918":13867,"22919":14363,"22920":11083,"22921":10014,"22922":10131,"22923":4558,"22924":4769,"22925":5301,"22926":4178,"22927":11801,"22928":557,"22929":11439,"22930":14205,"22931":262,"22932":12445,"22933":8917,"22934":3101,"22935":10745,"22936":9938,"22937":1886,"22938":13442,"22939":5920,"22940":10492,"22941":13551,"22942":12603,"22943":12448,"22944":5185,"22945":9061,"22946":9977,"22947":8219,"22948":7468,"22949":14351,"22950":9227,"22951":3497,"22952":9196,"22953":1139,"22954":7343,"22955":13337,"22956":4555,"22957":2370,"22958":9955,"22959":14674,"22960":10065,"22961":3710,"22962":7174,"22963":534,"22964":12228,"22965":3098,"22966":9136,"22967":15122,"22968":6227,"22969":2381,"22970":10451,"22971":8284,"22972":228,"22973":3612,"22974":11107,"22975":1179,"22976":13782,"22977":2695,"22978":9550,"22979":8574,"22980":2126,"22981":8910,"22982":1515,"22983":6713,"22984":15021,"22985":7745,"22986":13166,"22987":4048,"22988":13774,"22989":6755,"22990":7769,"22991":11096,"22992":4058,"22993":14122,"22994":6000,"22995":9176,"22996":3532,"22997":4058,"22998":10989,"22999":2871,"23000":14490,"23001":62,"23002":916,"23003":2187,"23004":13977,"23005":15140,"23006":3423,"23007":6237,"23008":6697,"23009":12843,"23010":4014,"23011":834,"23012":11219,"23013":2040,"23014":8843,"23015":6504,"23016":3790,"23017":639,"23018":13714,"23019":205,"23020":3083,"23021":10344,"23022":9770,"23023":571,"23024":10559,"23025":12130,"23026":6922,"23027":7447,"23028":267,"23029":653,"23030":12134,"23031":6667,"23032":2428,"23033":2040,"23034":11467,"23035":14480,"23036":10064,"23037":3295,"23038":4538,"23039":1336,"23040":9811,"23041":7542,"23042":10644,"23043":8828,"23044":4736,"23045":12546,"23046":4660,"23047":4381,"23048":11064,"23049":6139,"23050":13069,"23051":1615,"23052":291,"23053":8116,"23054":9867,"23055":370,"23056":1576,"23057":11139,"23058":13387,"23059":5912,"23060":7935,"23061":725,"23062":9564,"23063":10327,"23064":6078,"23065":12820,"23066":9178,"23067":2793,"23068":11757,"23069":4607,"23070":14343,"23071":13656,"23072":7465,"23073":13988,"23074":5186,"23075":8687,"23076":2773,"23077":8491,"23078":14770,"23079":12049,"23080":10781,"23081":5757,"23082":11009,"23083":8392,"23084":10544,"23085":3046,"23086":7805,"23087":7146,"23088":6643,"23089":9694,"23090":9799,"23091":14911,"23092":14502,"23093":3417,"23094":13502,"23095":4885,"23096":14567,"23097":11736,"23098":14610,"23099":8463,"23100":4854,"23101":9185,"23102":10010,"23103":7371,"23104":10379,"23105":4842,"23106":12064,"23107":11215,"23108":7564,"23109":13571,"23110":2031,"23111":4289,"23112":9295,"23113":9679,"23114":6041,"23115":6119,"23116":3132,"23117":9212,"23118":8914,"23119":7995,"23120":1146,"23121":13972,"23122":11225,"23123":1824,"23124":14054,"23125":661,"23126":9843,"23127":1371,"23128":12052,"23129":3216,"23130":749,"23131":8186,"23132":8899,"23133":3232,"23134":3651,"23135":1667,"23136":15093,"23137":8232,"23138":1386,"23139":3765,"23140":14661,"23141":13502,"23142":5950,"23143":4140,"23144":3691,"23145":3287,"23146":2951,"23147":8629,"23148":1239,"23149":4207,"23150":13209,"23151":2110,"23152":13582,"23153":1928,"23154":8498,"23155":7468,"23156":7193,"23157":810,"23158":575,"23159":11608,"23160":9213,"23161":5378,"23162":14958,"23163":5067,"23164":1826,"23165":6786,"23166":7372,"23167":6459,"23168":8719,"23169":12441,"23170":9081,"23171":2481,"23172":13745,"23173":2498,"23174":10204,"23175":325,"23176":14655,"23177":9439,"23178":13989,"23179":9839,"23180":9875,"23181":4455,"23182":1639,"23183":15075,"23184":1961,"23185":10311,"23186":3508,"23187":11383,"23188":1979,"23189":14604,"23190":5741,"23191":1224,"23192":4377,"23193":1274,"23194":8057,"23195":7862,"23196":1462,"23197":12422,"23198":5995,"23199":12931,"23200":10831,"23201":3327,"23202":9867,"23203":1867,"23204":14213,"23205":1417,"23206":431,"23207":12987,"23208":5272,"23209":14811,"23210":1210,"23211":10689,"23212":10863,"23213":9658,"23214":14919,"23215":14447,"23216":10881,"23217":9097,"23218":9102,"23219":4117,"23220":7507,"23221":7510,"23222":12252,"23223":9708,"23224":10916,"23225":4583,"23226":10931,"23227":5906,"23228":11880,"23229":212,"23230":10565,"23231":9780,"23232":1785,"23233":9823,"23234":387,"23235":6406,"23236":10210,"23237":7484,"23238":13712,"23239":5959,"23240":564,"23241":512,"23242":5669,"23243":10030,"23244":5380,"23245":9512,"23246":5893,"23247":6139,"23248":5986,"23249":6158,"23250":8311,"23251":5366,"23252":4414,"23253":12990,"23254":10455,"23255":5902,"23256":14491,"23257":865,"23258":11273,"23259":6229,"23260":5387,"23261":841,"23262":8528,"23263":7551,"23264":12751,"23265":4694,"23266":9110,"23267":9246,"23268":2868,"23269":11246,"23270":217,"23271":5643,"23272":12967,"23273":9703,"23274":4904,"23275":384,"23276":11378,"23277":13440,"23278":185,"23279":8481,"23280":9706,"23281":4164,"23282":1152,"23283":10712,"23284":10622,"23285":11971,"23286":6739,"23287":6279,"23288":10248,"23289":7964,"23290":987,"23291":11813,"23292":14034,"23293":5437,"23294":14138,"23295":3782,"23296":13128,"23297":264,"23298":499,"23299":13623,"23300":14201,"23301":8109,"23302":7278,"23303":6848,"23304":9779,"23305":13946,"23306":8314,"23307":14677,"23308":7313,"23309":3818,"23310":11668,"23311":14722,"23312":12113,"23313":3558,"23314":1539,"23315":6719,"23316":2069,"23317":13540,"23318":14271,"23319":12427,"23320":6932,"23321":13116,"23322":7497,"23323":3939,"23324":11151,"23325":7289,"23326":8325,"23327":10080,"23328":11842,"23329":5194,"23330":3189,"23331":7866,"23332":179,"23333":10525,"23334":12885,"23335":8217,"23336":14232,"23337":5994,"23338":6527,"23339":6701,"23340":14464,"23341":10513,"23342":6222,"23343":9969,"23344":1631,"23345":843,"23346":11036,"23347":10803,"23348":3952,"23349":4190,"23350":1205,"23351":2676,"23352":6172,"23353":1557,"23354":5574,"23355":6421,"23356":10353,"23357":2833,"23358":4118,"23359":8524,"23360":13195,"23361":7906,"23362":8871,"23363":1365,"23364":13272,"23365":11045,"23366":9703,"23367":7692,"23368":824,"23369":11802,"23370":3134,"23371":9368,"23372":7770,"23373":6430,"23374":11348,"23375":10904,"23376":12647,"23377":4799,"23378":5243,"23379":9692,"23380":14496,"23381":9385,"23382":5875,"23383":10716,"23384":1659,"23385":12651,"23386":8479,"23387":5657,"23388":682,"23389":3895,"23390":1903,"23391":7623,"23392":4639,"23393":5275,"23394":10416,"23395":3308,"23396":10385,"23397":2672,"23398":2282,"23399":13883,"23400":4161,"23401":8178,"23402":4447,"23403":814,"23404":9996,"23405":8739,"23406":11566,"23407":10392,"23408":3278,"23409":14597,"23410":5930,"23411":4674,"23412":6926,"23413":9281,"23414":3270,"23415":4184,"23416":9429,"23417":4213,"23418":3266,"23419":10714,"23420":6630,"23421":7829,"23422":556,"23423":14505,"23424":1043,"23425":13600,"23426":8730,"23427":4863,"23428":3348,"23429":14358,"23430":3742,"23431":14544,"23432":13619,"23433":8832,"23434":5571,"23435":14987,"23436":14063,"23437":3266,"23438":14778,"23439":5658,"23440":714,"23441":472,"23442":6918,"23443":1343,"23444":6595,"23445":8156,"23446":3278,"23447":8710,"23448":6151,"23449":11794,"23450":3246,"23451":4456,"23452":2888,"23453":10766,"23454":14789,"23455":9840,"23456":15093,"23457":11701,"23458":3479,"23459":6385,"23460":9618,"23461":10464,"23462":6296,"23463":11694,"23464":6322,"23465":12765,"23466":8216,"23467":12280,"23468":13454,"23469":14517,"23470":2570,"23471":182,"23472":2399,"23473":790,"23474":3357,"23475":22,"23476":67,"23477":14361,"23478":13021,"23479":6152,"23480":321,"23481":2998,"23482":13334,"23483":7973,"23484":1677,"23485":6406,"23486":14520,"23487":14910,"23488":3362,"23489":3295,"23490":10652,"23491":13974,"23492":13718,"23493":4079,"23494":12801,"23495":12365,"23496":6067,"23497":10758,"23498":3523,"23499":8314,"23500":11829,"23501":819,"23502":6011,"23503":2826,"23504":12575,"23505":4080,"23506":9225,"23507":5284,"23508":9856,"23509":2405,"23510":15013,"23511":2162,"23512":14812,"23513":6220,"23514":4836,"23515":8372,"23516":10977,"23517":3690,"23518":13014,"23519":10192,"23520":8638,"23521":6678,"23522":2389,"23523":13409,"23524":3333,"23525":553,"23526":658,"23527":14973,"23528":6981,"23529":11086,"23530":12009,"23531":7960,"23532":14921,"23533":14707,"23534":165,"23535":12725,"23536":12947,"23537":15087,"23538":5681,"23539":9890,"23540":5629,"23541":11719,"23542":12091,"23543":2915,"23544":13985,"23545":6415,"23546":6448,"23547":13919,"23548":14854,"23549":11797,"23550":11656,"23551":11137,"23552":12816,"23553":9257,"23554":9853,"23555":14047,"23556":3824,"23557":7576,"23558":1640,"23559":14286,"23560":2299,"23561":6521,"23562":1527,"23563":7902,"23564":1440,"23565":6762,"23566":14749,"23567":9887,"23568":1210,"23569":8676,"23570":7977,"23571":6980,"23572":14972,"23573":7330,"23574":4365,"23575":8265,"23576":10154,"23577":10764,"23578":14050,"23579":155,"23580":10543,"23581":11373,"23582":15063,"23583":10212,"23584":14023,"23585":4500,"23586":12490,"23587":13066,"23588":10252,"23589":4502,"23590":12947,"23591":8230,"23592":1585,"23593":10336,"23594":3587,"23595":1250,"23596":15054,"23597":7099,"23598":1245,"23599":7383,"23600":8647,"23601":5102,"23602":9064,"23603":5088,"23604":8089,"23605":6553,"23606":789,"23607":14214,"23608":9936,"23609":5208,"23610":4326,"23611":13563,"23612":6615,"23613":14070,"23614":14992,"23615":5767,"23616":12197,"23617":8644,"23618":14429,"23619":9090,"23620":8128,"23621":13772,"23622":12306,"23623":1302,"23624":3768,"23625":923,"23626":6535,"23627":4421,"23628":9077,"23629":9939,"23630":9897,"23631":1476,"23632":9326,"23633":4488,"23634":10343,"23635":7655,"23636":1199,"23637":13293,"23638":3906,"23639":9722,"23640":12179,"23641":7139,"23642":1168,"23643":2669,"23644":14523,"23645":4647,"23646":8936,"23647":1949,"23648":11128,"23649":372,"23650":6154,"23651":8913,"23652":4782,"23653":8814,"23654":9036,"23655":1013,"23656":4526,"23657":2183,"23658":7645,"23659":9863,"23660":14237,"23661":7983,"23662":760,"23663":256,"23664":8165,"23665":47,"23666":5247,"23667":12896,"23668":1550,"23669":13139,"23670":12107,"23671":13740,"23672":62,"23673":12652,"23674":318,"23675":12029,"23676":748,"23677":6390,"23678":3212,"23679":12896,"23680":13104,"23681":6231,"23682":12568,"23683":2843,"23684":8056,"23685":10859,"23686":8358,"23687":5051,"23688":3277,"23689":12086,"23690":4531,"23691":14474,"23692":5808,"23693":8096,"23694":8055,"23695":15140,"23696":4250,"23697":14729,"23698":290,"23699":12727,"23700":10955,"23701":8038,"23702":2769,"23703":14061,"23704":10670,"23705":11203,"23706":8487,"23707":8831,"23708":14764,"23709":7545,"23710":7410,"23711":14345,"23712":11392,"23713":13930,"23714":8821,"23715":1296,"23716":4455,"23717":11044,"23718":13332,"23719":2955,"23720":5232,"23721":5072,"23722":4249,"23723":2797,"23724":1281,"23725":11770,"23726":5813,"23727":1949,"23728":13723,"23729":1677,"23730":1938,"23731":8769,"23732":4962,"23733":6093,"23734":9381,"23735":15081,"23736":10775,"23737":14940,"23738":337,"23739":2155,"23740":8470,"23741":12537,"23742":12854,"23743":12129,"23744":7322,"23745":4286,"23746":14949,"23747":2864,"23748":6724,"23749":10318,"23750":5051,"23751":3915,"23752":1070,"23753":1560,"23754":11962,"23755":5382,"23756":10811,"23757":846,"23758":11961,"23759":7009,"23760":8599,"23761":2027,"23762":2514,"23763":4233,"23764":3077,"23765":8964,"23766":6965,"23767":3418,"23768":10671,"23769":5626,"23770":6408,"23771":11774,"23772":9465,"23773":1103,"23774":13759,"23775":9811,"23776":6112,"23777":14225,"23778":2360,"23779":13309,"23780":7954,"23781":6781,"23782":12130,"23783":12245,"23784":4138,"23785":2390,"23786":1668,"23787":2918,"23788":203,"23789":5573,"23790":3433,"23791":4379,"23792":9729,"23793":2834,"23794":534,"23795":2236,"23796":5366,"23797":3943,"23798":13855,"23799":1369,"23800":197,"23801":2373,"23802":14237,"23803":5034,"23804":237,"23805":5977,"23806":3190,"23807":11276,"23808":267,"23809":10328,"23810":14478,"23811":1516,"23812":4895,"23813":4593,"23814":5712,"23815":12910,"23816":10247,"23817":6442,"23818":13640,"23819":4711,"23820":4255,"23821":9631,"23822":12453,"23823":10423,"23824":12646,"23825":14969,"23826":5772,"23827":6793,"23828":8474,"23829":4734,"23830":3890,"23831":8590,"23832":5506,"23833":7141,"23834":10928,"23835":1896,"23836":11172,"23837":5767,"23838":14047,"23839":4148,"23840":10731,"23841":281,"23842":13579,"23843":5981,"23844":1486,"23845":6815,"23846":12352,"23847":14678,"23848":13116,"23849":1175,"23850":3013,"23851":12262,"23852":461,"23853":13043,"23854":13888,"23855":14043,"23856":9981,"23857":710,"23858":1596,"23859":1223,"23860":6578,"23861":2201,"23862":10002,"23863":2163,"23864":1812,"23865":10384,"23866":4675,"23867":5357,"23868":970,"23869":6626,"23870":9401,"23871":15069,"23872":1101,"23873":10539,"23874":6463,"23875":5999,"23876":1956,"23877":803,"23878":3923,"23879":147,"23880":2282,"23881":2593,"23882":10537,"23883":10648,"23884":706,"23885":12856,"23886":13092,"23887":12533,"23888":11751,"23889":12570,"23890":196,"23891":2400,"23892":4588,"23893":415,"23894":14658,"23895":2657,"23896":13352,"23897":7177,"23898":11542,"23899":1700,"23900":10817,"23901":2233,"23902":13693,"23903":1863,"23904":9725,"23905":6181,"23906":7959,"23907":2856,"23908":10038,"23909":1632,"23910":3101,"23911":91,"23912":3124,"23913":9195,"23914":1752,"23915":3358,"23916":4389,"23917":3504,"23918":1174,"23919":62,"23920":7436,"23921":13739,"23922":7171,"23923":13016,"23924":13190,"23925":1597,"23926":11526,"23927":6918,"23928":12396,"23929":681,"23930":1614,"23931":218,"23932":7335,"23933":3981,"23934":11280,"23935":13969,"23936":6497,"23937":7850,"23938":3205,"23939":4386,"23940":5716,"23941":3076,"23942":5396,"23943":9583,"23944":4745,"23945":4770,"23946":3044,"23947":3280,"23948":1312,"23949":10606,"23950":4610,"23951":10526,"23952":11426,"23953":10133,"23954":13506,"23955":5830,"23956":10149,"23957":724,"23958":5740,"23959":90,"23960":13615,"23961":11189,"23962":914,"23963":2546,"23964":5589,"23965":392,"23966":6112,"23967":13013,"23968":10715,"23969":8411,"23970":14151,"23971":5554,"23972":14519,"23973":511,"23974":12999,"23975":10984,"23976":14643,"23977":8794,"23978":6307,"23979":8011,"23980":2602,"23981":7189,"23982":10174,"23983":1285,"23984":714,"23985":9050,"23986":1820,"23987":7506,"23988":931,"23989":7213,"23990":5406,"23991":6162,"23992":13829,"23993":13792,"23994":8412,"23995":3618,"23996":8461,"23997":3963,"23998":11890,"23999":3171,"24000":12999,"24001":2268,"24002":1705,"24003":6706,"24004":8623,"24005":9345,"24006":13305,"24007":12936,"24008":8435,"24009":10512,"24010":6607,"24011":14066,"24012":2377,"24013":4265,"24014":6919,"24015":321,"24016":13160,"24017":5255,"24018":7034,"24019":6775,"24020":7385,"24021":7457,"24022":1434,"24023":11087,"24024":8168,"24025":14285,"24026":11167,"24027":11288,"24028":810,"24029":1057,"24030":3499,"24031":2721,"24032":4450,"24033":9574,"24034":8022,"24035":10662,"24036":13355,"24037":4282,"24038":7660,"24039":7219,"24040":2117,"24041":11752,"24042":7056,"24043":6207,"24044":14016,"24045":13879,"24046":7108,"24047":11507,"24048":4801,"24049":9326,"24050":9662,"24051":4953,"24052":9644,"24053":5552,"24054":9947,"24055":13101,"24056":13758,"24057":12896,"24058":3751,"24059":5637,"24060":13453,"24061":5871,"24062":6623,"24063":12339,"24064":11102,"24065":14159,"24066":7884,"24067":10424,"24068":10349,"24069":9131,"24070":9176,"24071":4341,"24072":10613,"24073":5615,"24074":10601,"24075":12193,"24076":13767,"24077":6089,"24078":10130,"24079":3124,"24080":8039,"24081":2180,"24082":431,"24083":4121,"24084":13160,"24085":6748,"24086":10697,"24087":7531,"24088":4330,"24089":6709,"24090":8251,"24091":44,"24092":7351,"24093":14825,"24094":12971,"24095":1237,"24096":1984,"24097":5058,"24098":1993,"24099":997,"24100":7493,"24101":3407,"24102":13735,"24103":4312,"24104":11943,"24105":4604,"24106":1358,"24107":3403,"24108":6078,"24109":4487,"24110":7418,"24111":13766,"24112":3172,"24113":14871,"24114":5331,"24115":13809,"24116":8326,"24117":7376,"24118":4727,"24119":8196,"24120":7786,"24121":6861,"24122":7146,"24123":13403,"24124":9075,"24125":3873,"24126":5361,"24127":7501,"24128":893,"24129":2278,"24130":3756,"24131":6459,"24132":7010,"24133":15034,"24134":6981,"24135":10953,"24136":13694,"24137":9985,"24138":6131,"24139":3146,"24140":3743,"24141":9113,"24142":7642,"24143":11972,"24144":10263,"24145":6176,"24146":12609,"24147":1823,"24148":11332,"24149":8411,"24150":14860,"24151":9196,"24152":10114,"24153":8484,"24154":6248,"24155":7921,"24156":442,"24157":11216,"24158":7301,"24159":4894,"24160":151,"24161":10392,"24162":3977,"24163":11014,"24164":2256,"24165":5637,"24166":12000,"24167":11747,"24168":485,"24169":7927,"24170":1396,"24171":14632,"24172":13378,"24173":14485,"24174":6379,"24175":7212,"24176":6115,"24177":5963,"24178":2488,"24179":3442,"24180":10256,"24181":11146,"24182":10100,"24183":10093,"24184":13129,"24185":6192,"24186":11148,"24187":4121,"24188":6728,"24189":179,"24190":9100,"24191":1453,"24192":1838,"24193":7801,"24194":5007,"24195":12987,"24196":8336,"24197":1997,"24198":3182,"24199":392,"24200":4801,"24201":1138,"24202":14840,"24203":10978,"24204":7707,"24205":8241,"24206":5643,"24207":10763,"24208":14794,"24209":10424,"24210":13917,"24211":14043,"24212":13748,"24213":3876,"24214":7111,"24215":14333,"24216":3222,"24217":6419,"24218":13278,"24219":4460,"24220":6744,"24221":1200,"24222":7138,"24223":6791,"24224":14077,"24225":6254,"24226":6112,"24227":6112,"24228":12019,"24229":6125,"24230":14049,"24231":11520,"24232":564,"24233":11038,"24234":13968,"24235":9597,"24236":8613,"24237":11440,"24238":14372,"24239":9397,"24240":4661,"24241":3215,"24242":5948,"24243":2900,"24244":3701,"24245":11254,"24246":1843,"24247":10217,"24248":14825,"24249":10838,"24250":8309,"24251":3231,"24252":7494,"24253":1561,"24254":5583,"24255":5916,"24256":10709,"24257":12617,"24258":4681,"24259":9573,"24260":13894,"24261":12397,"24262":943,"24263":939,"24264":4866,"24265":13131,"24266":9465,"24267":9178,"24268":6765,"24269":4419,"24270":4912,"24271":3298,"24272":14201,"24273":1387,"24274":13125,"24275":994,"24276":6532,"24277":9053,"24278":7563,"24279":5993,"24280":3705,"24281":1025,"24282":6198,"24283":12781,"24284":8884,"24285":860,"24286":2300,"24287":2572,"24288":10992,"24289":4174,"24290":3013,"24291":8195,"24292":9112,"24293":5571,"24294":14620,"24295":9250,"24296":13542,"24297":9152,"24298":9038,"24299":14542,"24300":9622,"24301":11978,"24302":5191,"24303":9123,"24304":2531,"24305":181,"24306":8368,"24307":13164,"24308":12708,"24309":6524,"24310":14045,"24311":13090,"24312":11274,"24313":14280,"24314":9224,"24315":12338,"24316":6450,"24317":4365,"24318":3259,"24319":7778,"24320":14393,"24321":2257,"24322":13867,"24323":10997,"24324":583,"24325":5066,"24326":8404,"24327":13200,"24328":1742,"24329":3155,"24330":785,"24331":5795,"24332":3971,"24333":14641,"24334":1558,"24335":1599,"24336":1836,"24337":4912,"24338":6886,"24339":6943,"24340":6462,"24341":11279,"24342":5779,"24343":12240,"24344":1722,"24345":9882,"24346":13540,"24347":14009,"24348":14126,"24349":12269,"24350":11341,"24351":3362,"24352":4350,"24353":5180,"24354":6575,"24355":595,"24356":12998,"24357":13957,"24358":2975,"24359":14187,"24360":14121,"24361":10524,"24362":1075,"24363":10953,"24364":11624,"24365":7942,"24366":7886,"24367":1881,"24368":1758,"24369":2819,"24370":11317,"24371":1926,"24372":14175,"24373":14187,"24374":13279,"24375":14950,"24376":233,"24377":22,"24378":6720,"24379":8157,"24380":957,"24381":3961,"24382":5312,"24383":6705,"24384":13691,"24385":2515,"24386":14932,"24387":699,"24388":5890,"24389":2422,"24390":8274,"24391":7414,"24392":6968,"24393":13894,"24394":1955,"24395":10820,"24396":2377,"24397":12227,"24398":13718,"24399":5077,"24400":1885,"24401":12706,"24402":9849,"24403":6766,"24404":9821,"24405":7900,"24406":12825,"24407":10328,"24408":228,"24409":1195,"24410":12832,"24411":7757,"24412":2566,"24413":13815,"24414":12126,"24415":2340,"24416":9824,"24417":1010,"24418":8986,"24419":3887,"24420":2726,"24421":5652,"24422":448,"24423":6281,"24424":2415,"24425":6461,"24426":2759,"24427":14934,"24428":5627,"24429":6667,"24430":4446,"24431":15074,"24432":1565,"24433":6104,"24434":6107,"24435":1027,"24436":11346,"24437":13766,"24438":2369,"24439":11555,"24440":8018,"24441":6700,"24442":12833,"24443":5435,"24444":5068,"24445":6050,"24446":10406,"24447":6709,"24448":1809,"24449":10316,"24450":6679,"24451":59,"24452":12015,"24453":11779,"24454":6776,"24455":685,"24456":6428,"24457":7797,"24458":3376,"24459":13387,"24460":7114,"24461":8903,"24462":8314,"24463":3592,"24464":5974,"24465":5307,"24466":10422,"24467":10906,"24468":3030,"24469":1248,"24470":2256,"24471":13052,"24472":3103,"24473":11896,"24474":1012,"24475":3252,"24476":8021,"24477":4852,"24478":14431,"24479":13593,"24480":7795,"24481":9411,"24482":4328,"24483":12371,"24484":10163,"24485":12771,"24486":12411,"24487":97,"24488":13983,"24489":4620,"24490":11922,"24491":7582,"24492":6294,"24493":12467,"24494":12840,"24495":4384,"24496":14402,"24497":6573,"24498":9599,"24499":12009,"24500":7375,"24501":9266,"24502":14638,"24503":7828,"24504":11488,"24505":14506,"24506":1450,"24507":8235,"24508":13317,"24509":1719,"24510":8854,"24511":4525,"24512":248,"24513":7036,"24514":3194,"24515":5682,"24516":4515,"24517":2998,"24518":1460,"24519":10844,"24520":2611,"24521":14898,"24522":14948,"24523":552,"24524":6151,"24525":2953,"24526":10956,"24527":130,"24528":7197,"24529":11058,"24530":13463,"24531":4187,"24532":13844,"24533":3920,"24534":8437,"24535":5335,"24536":1489,"24537":14900,"24538":11704,"24539":4268,"24540":8653,"24541":8595,"24542":14034,"24543":13829,"24544":8490,"24545":8427,"24546":12559,"24547":8862,"24548":4016,"24549":4798,"24550":1606,"24551":2066,"24552":3772,"24553":2996,"24554":280,"24555":10185,"24556":4226,"24557":7885,"24558":3150,"24559":2617,"24560":6274,"24561":6739,"24562":1242,"24563":6352,"24564":13037,"24565":12703,"24566":4101,"24567":505,"24568":12401,"24569":7328,"24570":12004,"24571":453,"24572":7139,"24573":12377,"24574":7980,"24575":14659,"24576":6191,"24577":6058,"24578":12796,"24579":10390,"24580":14664,"24581":5847,"24582":4662,"24583":7724,"24584":2374,"24585":8499,"24586":3872,"24587":11293,"24588":3470,"24589":10940,"24590":14015,"24591":9798,"24592":13165,"24593":231,"24594":14732,"24595":2016,"24596":14487,"24597":12862,"24598":10768,"24599":11347,"24600":10041,"24601":9951,"24602":10617,"24603":14451,"24604":5983,"24605":7285,"24606":9336,"24607":3746,"24608":4615,"24609":3971,"24610":11828,"24611":6479,"24612":4466,"24613":8606,"24614":14808,"24615":6967,"24616":9473,"24617":8800,"24618":11742,"24619":6431,"24620":2490,"24621":8112,"24622":2756,"24623":5791,"24624":10061,"24625":13172,"24626":14007,"24627":1332,"24628":9866,"24629":6602,"24630":2710,"24631":11828,"24632":14041,"24633":4165,"24634":13234,"24635":3587,"24636":8062,"24637":14996,"24638":9299,"24639":8221,"24640":1457,"24641":76,"24642":2742,"24643":14449,"24644":13036,"24645":1446,"24646":4287,"24647":292,"24648":1748,"24649":11049,"24650":6391,"24651":384,"24652":7380,"24653":4142,"24654":2479,"24655":5131,"24656":12163,"24657":684,"24658":6497,"24659":1709,"24660":8222,"24661":12755,"24662":4404,"24663":2850,"24664":7201,"24665":2567,"24666":4253,"24667":8780,"24668":11334,"24669":14718,"24670":1508,"24671":4656,"24672":14439,"24673":11774,"24674":7955,"24675":13442,"24676":14535,"24677":2756,"24678":6566,"24679":5229,"24680":5932,"24681":4025,"24682":6813,"24683":14215,"24684":4711,"24685":14157,"24686":1354,"24687":10999,"24688":884,"24689":4828,"24690":7693,"24691":7144,"24692":10569,"24693":8622,"24694":14327,"24695":1761,"24696":5923,"24697":14555,"24698":5835,"24699":4944,"24700":10125,"24701":5323,"24702":1347,"24703":4231,"24704":4677,"24705":6549,"24706":5807,"24707":2406,"24708":9663,"24709":14794,"24710":13500,"24711":7139,"24712":14588,"24713":740,"24714":1719,"24715":709,"24716":3264,"24717":5779,"24718":10527,"24719":3870,"24720":11539,"24721":12500,"24722":4634,"24723":4082,"24724":2044,"24725":5732,"24726":11396,"24727":13527,"24728":14976,"24729":13427,"24730":9214,"24731":7145,"24732":3417,"24733":8096,"24734":13959,"24735":10166,"24736":10947,"24737":10471,"24738":10240,"24739":4834,"24740":7729,"24741":3956,"24742":8249,"24743":3246,"24744":1868,"24745":4941,"24746":14662,"24747":9480,"24748":10097,"24749":12511,"24750":8775,"24751":2191,"24752":3589,"24753":2372,"24754":1983,"24755":6600,"24756":1705,"24757":13453,"24758":1294,"24759":6408,"24760":2736,"24761":14958,"24762":13623,"24763":6113,"24764":8127,"24765":13886,"24766":11688,"24767":13380,"24768":3094,"24769":8405,"24770":4996,"24771":9946,"24772":2690,"24773":10353,"24774":3580,"24775":6060,"24776":4667,"24777":7630,"24778":4558,"24779":6970,"24780":3953,"24781":11040,"24782":1934,"24783":3620,"24784":3089,"24785":12831,"24786":6298,"24787":2112,"24788":2751,"24789":2959,"24790":12743,"24791":1783,"24792":10483,"24793":5180,"24794":4783,"24795":14212,"24796":7407,"24797":4001,"24798":3347,"24799":8510,"24800":12114,"24801":5941,"24802":6092,"24803":12452,"24804":13623,"24805":11342,"24806":1506,"24807":8107,"24808":1349,"24809":4181,"24810":14894,"24811":8933,"24812":5660,"24813":6174,"24814":14059,"24815":8001,"24816":9464,"24817":7603,"24818":5912,"24819":13899,"24820":1305,"24821":4488,"24822":15003,"24823":2727,"24824":2830,"24825":14854,"24826":7632,"24827":5718,"24828":1836,"24829":9952,"24830":11170,"24831":12590,"24832":2969,"24833":12493,"24834":8111,"24835":10446,"24836":11234,"24837":10736,"24838":12374,"24839":13806,"24840":8100,"24841":10483,"24842":4979,"24843":382,"24844":13305,"24845":6403,"24846":8135,"24847":3006,"24848":8670,"24849":2651,"24850":4135,"24851":10760,"24852":12005,"24853":3904,"24854":4091,"24855":6957,"24856":8613,"24857":9134,"24858":7103,"24859":10787,"24860":5458,"24861":14334,"24862":913,"24863":7532,"24864":6710,"24865":10075,"24866":10896,"24867":13736,"24868":11073,"24869":12591,"24870":1893,"24871":6013,"24872":4987,"24873":3887,"24874":11130,"24875":9788,"24876":13847,"24877":7635,"24878":823,"24879":7540,"24880":13179,"24881":6314,"24882":2302,"24883":10571,"24884":15087,"24885":14396,"24886":5893,"24887":1535,"24888":979,"24889":3266,"24890":13772,"24891":6039,"24892":5555,"24893":13000,"24894":584,"24895":10340,"24896":4909,"24897":11547,"24898":362,"24899":11848,"24900":2406,"24901":9266,"24902":11317,"24903":15051,"24904":6577,"24905":866,"24906":6356,"24907":8873,"24908":7905,"24909":2822,"24910":2066,"24911":2284,"24912":4055,"24913":10126,"24914":11673,"24915":3263,"24916":5379,"24917":12118,"24918":189,"24919":2963,"24920":9556,"24921":4968,"24922":11846,"24923":5229,"24924":10396,"24925":3254,"24926":4489,"24927":4986,"24928":11899,"24929":14038,"24930":6124,"24931":13992,"24932":9194,"24933":14546,"24934":1445,"24935":13830,"24936":7207,"24937":8460,"24938":962,"24939":1645,"24940":11693,"24941":12981,"24942":8093,"24943":1415,"24944":2630,"24945":6252,"24946":7796,"24947":1172,"24948":14778,"24949":3714,"24950":13646,"24951":1314,"24952":10301,"24953":3793,"24954":5545,"24955":6045,"24956":14372,"24957":5165,"24958":5357,"24959":8444,"24960":15128,"24961":4479,"24962":8589,"24963":14797,"24964":15073,"24965":7129,"24966":11723,"24967":3062,"24968":13782,"24969":10201,"24970":8800,"24971":2970,"24972":14946,"24973":8805,"24974":1704,"24975":3720,"24976":11098,"24977":5632,"24978":9249,"24979":7692,"24980":1116,"24981":15025,"24982":1404,"24983":10309,"24984":316,"24985":11060,"24986":13279,"24987":13823,"24988":10378,"24989":8213,"24990":196,"24991":14844,"24992":4754,"24993":2298,"24994":446,"24995":4571,"24996":14332,"24997":5224,"24998":5457,"24999":984,"25000":5730,"25001":2392,"25002":12840,"25003":2871,"25004":10788,"25005":13072,"25006":8548,"25007":6949,"25008":3775,"25009":5457,"25010":6870,"25011":5290,"25012":8502,"25013":11164,"25014":9505,"25015":9501,"25016":13717,"25017":3085,"25018":3592,"25019":12611,"25020":10216,"25021":12807,"25022":952,"25023":9730,"25024":5967,"25025":10236,"25026":4137,"25027":2069,"25028":2650,"25029":3274,"25030":1349,"25031":11915,"25032":1646,"25033":2242,"25034":5844,"25035":678,"25036":9474,"25037":13739,"25038":1369,"25039":12499,"25040":9139,"25041":6952,"25042":1885,"25043":13310,"25044":12514,"25045":2259,"25046":9374,"25047":11579,"25048":6620,"25049":5559,"25050":2780,"25051":9931,"25052":11311,"25053":12069,"25054":2030,"25055":7731,"25056":11304,"25057":4437,"25058":10255,"25059":6838,"25060":14078,"25061":8041,"25062":14279,"25063":13955,"25064":11081,"25065":3301,"25066":8652,"25067":14679,"25068":3385,"25069":3027,"25070":7131,"25071":5444,"25072":12185,"25073":10927,"25074":870,"25075":10325,"25076":6803,"25077":14048,"25078":6787,"25079":3620,"25080":8570,"25081":14183,"25082":10672,"25083":512,"25084":14040,"25085":4212,"25086":5318,"25087":7250,"25088":4529,"25089":7721,"25090":5813,"25091":4430,"25092":2325,"25093":11531,"25094":1861,"25095":10207,"25096":2442,"25097":974,"25098":13164,"25099":6542,"25100":13844,"25101":2458,"25102":7018,"25103":13353,"25104":433,"25105":500,"25106":8712,"25107":9620,"25108":10004,"25109":5907,"25110":2484,"25111":6789,"25112":8909,"25113":13806,"25114":11715,"25115":8822,"25116":13398,"25117":2105,"25118":10273,"25119":6046,"25120":10547,"25121":11852,"25122":4391,"25123":12879,"25124":5071,"25125":9138,"25126":4452,"25127":6478,"25128":5373,"25129":10437,"25130":11376,"25131":5449,"25132":13170,"25133":3319,"25134":12237,"25135":7924,"25136":13224,"25137":9405,"25138":12983,"25139":14182,"25140":13824,"25141":7440,"25142":9637,"25143":10915,"25144":12491,"25145":7717,"25146":5068,"25147":3502,"25148":367,"25149":2760,"25150":11690,"25151":5625,"25152":12235,"25153":1490,"25154":6412,"25155":14032,"25156":13941,"25157":6819,"25158":1109,"25159":6519,"25160":3880,"25161":11365,"25162":10816,"25163":12151,"25164":6670,"25165":991,"25166":6389,"25167":3011,"25168":4230,"25169":1009,"25170":5829,"25171":8374,"25172":10895,"25173":3316,"25174":7546,"25175":12415,"25176":9927,"25177":13751,"25178":4052,"25179":14962,"25180":12946,"25181":1555,"25182":7477,"25183":8820,"25184":10534,"25185":2934,"25186":1597,"25187":11155,"25188":4639,"25189":11946,"25190":14848,"25191":14068,"25192":10531,"25193":3086,"25194":14885,"25195":5313,"25196":2108,"25197":9476,"25198":3683,"25199":8747,"25200":902,"25201":12175,"25202":11653,"25203":3506,"25204":4590,"25205":5066,"25206":9860,"25207":12244,"25208":12246,"25209":5209,"25210":4957,"25211":5644,"25212":7582,"25213":10980,"25214":7999,"25215":10421,"25216":12231,"25217":5361,"25218":2412,"25219":11866,"25220":12973,"25221":6235,"25222":8648,"25223":9889,"25224":10414,"25225":8444,"25226":8713,"25227":9170,"25228":9933,"25229":2786,"25230":4629,"25231":13516,"25232":1265,"25233":12767,"25234":7076,"25235":10983,"25236":13170,"25237":8003,"25238":4248,"25239":10018,"25240":9714,"25241":8019,"25242":5738,"25243":12732,"25244":5720,"25245":7436,"25246":12125,"25247":4685,"25248":7914,"25249":8176,"25250":5356,"25251":8926,"25252":7506,"25253":4555,"25254":7044,"25255":5357,"25256":9491,"25257":737,"25258":8028,"25259":4517,"25260":12789,"25261":10521,"25262":7504,"25263":4329,"25264":10086,"25265":12287,"25266":11288,"25267":11283,"25268":2529,"25269":13978,"25270":5513,"25271":2692,"25272":9185,"25273":14414,"25274":4958,"25275":13001,"25276":2901,"25277":12250,"25278":259,"25279":13106,"25280":12194,"25281":5628,"25282":14374,"25283":6236,"25284":915,"25285":3344,"25286":11494,"25287":457,"25288":8345,"25289":9780,"25290":9700,"25291":11669,"25292":5541,"25293":6701,"25294":11248,"25295":8734,"25296":12191,"25297":11161,"25298":8146,"25299":9447,"25300":11842,"25301":10335,"25302":5192,"25303":9549,"25304":7286,"25305":922,"25306":2385,"25307":6440,"25308":12645,"25309":4502,"25310":9493,"25311":171,"25312":8233,"25313":3704,"25314":4201,"25315":2948,"25316":5568,"25317":8389,"25318":3357,"25319":10137,"25320":13025,"25321":13480,"25322":5370,"25323":12922,"25324":15131,"25325":6113,"25326":6001,"25327":10522,"25328":13013,"25329":9334,"25330":14754,"25331":5055,"25332":9302,"25333":94,"25334":7087,"25335":11555,"25336":996,"25337":346,"25338":2942,"25339":8057,"25340":1817,"25341":11558,"25342":113,"25343":3312,"25344":5638,"25345":6039,"25346":11582,"25347":5197,"25348":8145,"25349":140,"25350":4779,"25351":5424,"25352":4480,"25353":11985,"25354":11637,"25355":12366,"25356":8573,"25357":15078,"25358":4392,"25359":6674,"25360":8763,"25361":9785,"25362":5241,"25363":5376,"25364":7814,"25365":12893,"25366":5189,"25367":10164,"25368":11023,"25369":11970,"25370":10537,"25371":4483,"25372":7037,"25373":6135,"25374":9776,"25375":2491,"25376":6262,"25377":1496,"25378":7105,"25379":14650,"25380":5097,"25381":2813,"25382":1287,"25383":12552,"25384":84,"25385":1015,"25386":7632,"25387":6756,"25388":6891,"25389":2594,"25390":2827,"25391":11222,"25392":12088,"25393":14955,"25394":6597,"25395":11094,"25396":12481,"25397":4275,"25398":2259,"25399":7299,"25400":4557,"25401":3261,"25402":4878,"25403":1036,"25404":7889,"25405":9410,"25406":5092,"25407":9877,"25408":12512,"25409":9500,"25410":4036,"25411":14886,"25412":79,"25413":846,"25414":13056,"25415":12664,"25416":12651,"25417":6195,"25418":9282,"25419":14669,"25420":11740,"25421":2224,"25422":2862,"25423":10001,"25424":12055,"25425":1446,"25426":13771,"25427":9280,"25428":8802,"25429":8225,"25430":8335,"25431":4826,"25432":8598,"25433":12291,"25434":5228,"25435":13236,"25436":7517,"25437":2334,"25438":1407,"25439":5412,"25440":14617,"25441":9071,"25442":5606,"25443":6480,"25444":6409,"25445":8970,"25446":192,"25447":6870,"25448":2850,"25449":3347,"25450":694,"25451":9461,"25452":1901,"25453":6521,"25454":1665,"25455":8684,"25456":1564,"25457":3596,"25458":4522,"25459":6519,"25460":5266,"25461":1942,"25462":583,"25463":12174,"25464":5880,"25465":437,"25466":3461,"25467":14426,"25468":14763,"25469":5617,"25470":12006,"25471":8705,"25472":11115,"25473":5495,"25474":2309,"25475":12205,"25476":8061,"25477":5480,"25478":673,"25479":13904,"25480":10016,"25481":365,"25482":7189,"25483":3492,"25484":107,"25485":12437,"25486":14978,"25487":2654,"25488":9875,"25489":11474,"25490":3481,"25491":345,"25492":4188,"25493":10160,"25494":9529,"25495":3747,"25496":9211,"25497":12090,"25498":5205,"25499":13420,"25500":8747,"25501":8443,"25502":84,"25503":9759,"25504":4480,"25505":2242,"25506":812,"25507":5994,"25508":10449,"25509":13648,"25510":11244,"25511":5021,"25512":5557,"25513":1683,"25514":11351,"25515":4985,"25516":591,"25517":12707,"25518":13452,"25519":13990,"25520":14222,"25521":9138,"25522":5455,"25523":462,"25524":12425,"25525":3644,"25526":1701,"25527":6958,"25528":10869,"25529":13862,"25530":10000,"25531":3904,"25532":13433,"25533":2517,"25534":1356,"25535":3624,"25536":4812,"25537":12635,"25538":9951,"25539":13232,"25540":2254,"25541":13578,"25542":10649,"25543":1915,"25544":2332,"25545":3050,"25546":8437,"25547":2440,"25548":10519,"25549":5029,"25550":8755,"25551":5843,"25552":8276,"25553":4062,"25554":7110,"25555":3065,"25556":510,"25557":12132,"25558":13422,"25559":6980,"25560":569,"25561":2240,"25562":3038,"25563":10588,"25564":14769,"25565":6378,"25566":2205,"25567":13310,"25568":12928,"25569":5087,"25570":2697,"25571":2578,"25572":13848,"25573":11489,"25574":3605,"25575":3640,"25576":13679,"25577":9165,"25578":2118,"25579":2659,"25580":7767,"25581":14552,"25582":12355,"25583":8100,"25584":11365,"25585":961,"25586":12616,"25587":5624,"25588":12050,"25589":11429,"25590":5452,"25591":1877,"25592":4255,"25593":8595,"25594":8812,"25595":1027,"25596":14695,"25597":12196,"25598":13008,"25599":8485,"25600":9327,"25601":14703,"25602":12905,"25603":13992,"25604":10196,"25605":5505,"25606":7178,"25607":7903,"25608":10885,"25609":12245,"25610":5085,"25611":2491,"25612":3094,"25613":13652,"25614":13023,"25615":4514,"25616":13101,"25617":96,"25618":8158,"25619":3701,"25620":8002,"25621":5546,"25622":4690,"25623":13159,"25624":9776,"25625":13294,"25626":3692,"25627":11023,"25628":5913,"25629":8536,"25630":6557,"25631":12008,"25632":2419,"25633":6900,"25634":13444,"25635":667,"25636":2629,"25637":6074,"25638":10564,"25639":5090,"25640":1566,"25641":15053,"25642":5992,"25643":4321,"25644":2206,"25645":1841,"25646":11844,"25647":7246,"25648":11938,"25649":8643,"25650":9175,"25651":10927,"25652":11269,"25653":6893,"25654":1571,"25655":5920,"25656":5313,"25657":14137,"25658":14515,"25659":12002,"25660":13192,"25661":12221,"25662":7284,"25663":8148,"25664":4580,"25665":8969,"25666":1386,"25667":12387,"25668":3817,"25669":46,"25670":7212,"25671":12090,"25672":156,"25673":13596,"25674":7071,"25675":1103,"25676":5341,"25677":14337,"25678":7752,"25679":870,"25680":12700,"25681":10235,"25682":5170,"25683":2682,"25684":8022,"25685":665,"25686":14341,"25687":6660,"25688":3213,"25689":1917,"25690":3926,"25691":843,"25692":8288,"25693":1129,"25694":4871,"25695":11079,"25696":12527,"25697":566,"25698":13508,"25699":13898,"25700":7381,"25701":9943,"25702":7134,"25703":12312,"25704":3630,"25705":6057,"25706":14209,"25707":7615,"25708":1687,"25709":14739,"25710":8097,"25711":1659,"25712":1047,"25713":12512,"25714":6669,"25715":11025,"25716":11875,"25717":9695,"25718":6125,"25719":12536,"25720":12811,"25721":6836,"25722":14853,"25723":492,"25724":2541,"25725":7594,"25726":15034,"25727":2928,"25728":7102,"25729":7265,"25730":551,"25731":5996,"25732":6889,"25733":7592,"25734":5336,"25735":9030,"25736":14763,"25737":10158,"25738":13250,"25739":1874,"25740":10276,"25741":2468,"25742":14031,"25743":10489,"25744":7145,"25745":5978,"25746":5328,"25747":12814,"25748":6291,"25749":7697,"25750":9964,"25751":1254,"25752":5320,"25753":12366,"25754":13079,"25755":8916,"25756":2592,"25757":3061,"25758":13144,"25759":4430,"25760":5506,"25761":2441,"25762":5672,"25763":11256,"25764":4582,"25765":2881,"25766":1877,"25767":2844,"25768":1839,"25769":12299,"25770":12155,"25771":1922,"25772":8492,"25773":14287,"25774":8382,"25775":13795,"25776":8330,"25777":11587,"25778":10609,"25779":13237,"25780":9479,"25781":13505,"25782":1118,"25783":13939,"25784":299,"25785":11863,"25786":7784,"25787":14418,"25788":6654,"25789":6380,"25790":3116,"25791":11901,"25792":282,"25793":6401,"25794":9885,"25795":4097,"25796":9489,"25797":9541,"25798":11668,"25799":12908,"25800":13993,"25801":7336,"25802":9222,"25803":1480,"25804":6671,"25805":10039,"25806":8390,"25807":15057,"25808":2150,"25809":273,"25810":6036,"25811":12270,"25812":7734,"25813":3491,"25814":449,"25815":9631,"25816":14398,"25817":12484,"25818":1711,"25819":2111,"25820":2849,"25821":12064,"25822":11378,"25823":4115,"25824":441,"25825":3490,"25826":14863,"25827":7182,"25828":9839,"25829":5027,"25830":8085,"25831":11666,"25832":2439,"25833":14285,"25834":12473,"25835":7273,"25836":4985,"25837":174,"25838":4567,"25839":5023,"25840":14300,"25841":2505,"25842":14580,"25843":568,"25844":212,"25845":3272,"25846":3979,"25847":2527,"25848":13048,"25849":10755,"25850":14787,"25851":13259,"25852":2857,"25853":1115,"25854":13514,"25855":6023,"25856":4073,"25857":2563,"25858":13296,"25859":4539,"25860":3845,"25861":14462,"25862":13354,"25863":4172,"25864":3560,"25865":1778,"25866":3570,"25867":7198,"25868":13782,"25869":1451,"25870":8383,"25871":5256,"25872":3801,"25873":4379,"25874":12995,"25875":14433,"25876":2387,"25877":12194,"25878":10196,"25879":309,"25880":3219,"25881":2812,"25882":9667,"25883":11279,"25884":5306,"25885":14840,"25886":2920,"25887":6384,"25888":6581,"25889":2926,"25890":6003,"25891":1751,"25892":458,"25893":4216,"25894":5169,"25895":3619,"25896":4060,"25897":12768,"25898":9962,"25899":14484,"25900":769,"25901":3829,"25902":7334,"25903":5724,"25904":578,"25905":8378,"25906":1430,"25907":4818,"25908":7956,"25909":1429,"25910":10025,"25911":4148,"25912":14390,"25913":14339,"25914":9359,"25915":9109,"25916":10390,"25917":3093,"25918":9307,"25919":639,"25920":13821,"25921":1136,"25922":881,"25923":2763,"25924":14251,"25925":12440,"25926":4397,"25927":6505,"25928":52,"25929":2321,"25930":3162,"25931":11508,"25932":9362,"25933":14261,"25934":9313,"25935":14612,"25936":6690,"25937":14504,"25938":5610,"25939":12367,"25940":9080,"25941":1939,"25942":93,"25943":11357,"25944":205,"25945":14569,"25946":13640,"25947":3480,"25948":4796,"25949":5550,"25950":8157,"25951":11581,"25952":8198,"25953":5784,"25954":8760,"25955":9928,"25956":14315,"25957":14727,"25958":4999,"25959":11588,"25960":3991,"25961":2733,"25962":12437,"25963":9800,"25964":9122,"25965":8002,"25966":13797,"25967":6611,"25968":4802,"25969":5711,"25970":1254,"25971":14919,"25972":12477,"25973":37,"25974":5009,"25975":8320,"25976":5793,"25977":13268,"25978":13705,"25979":5453,"25980":6963,"25981":8405,"25982":4478,"25983":13125,"25984":1339,"25985":3144,"25986":12021,"25987":11522,"25988":10460,"25989":7265,"25990":488,"25991":6989,"25992":538,"25993":12891,"25994":5297,"25995":6136,"25996":13947,"25997":9752,"25998":9383,"25999":8975,"26000":3169,"26001":3488,"26002":10881,"26003":11375,"26004":845,"26005":6205,"26006":9097,"26007":9111,"26008":7138,"26009":14272,"26010":3024,"26011":14168,"26012":12471,"26013":46,"26014":11505,"26015":13261,"26016":13187,"26017":291,"26018":4928,"26019":8217,"26020":3539,"26021":7168,"26022":12483,"26023":8793,"26024":13530,"26025":5576,"26026":9282,"26027":14433,"26028":6625,"26029":7334,"26030":5009,"26031":496,"26032":6296,"26033":2625,"26034":9708,"26035":3872,"26036":541,"26037":1880,"26038":8593,"26039":13483,"26040":255,"26041":14668,"26042":5220,"26043":3847,"26044":6419,"26045":544,"26046":9964,"26047":7330,"26048":130,"26049":10594,"26050":14506,"26051":10983,"26052":2268,"26053":10179,"26054":10397,"26055":340,"26056":11820,"26057":4925,"26058":11799,"26059":3135,"26060":11946,"26061":9319,"26062":9234,"26063":9048,"26064":9628,"26065":5930,"26066":11496,"26067":1335,"26068":6537,"26069":11523,"26070":10025,"26071":6635,"26072":1898,"26073":1192,"26074":13051,"26075":13141,"26076":9906,"26077":11888,"26078":14069,"26079":11149,"26080":5346,"26081":12012,"26082":12356,"26083":2398,"26084":696,"26085":12949,"26086":7838,"26087":13825,"26088":12154,"26089":1115,"26090":4533,"26091":5434,"26092":12199,"26093":9521,"26094":3123,"26095":8200,"26096":12767,"26097":14595,"26098":5502,"26099":7167,"26100":3426,"26101":14278,"26102":12940,"26103":7307,"26104":6496,"26105":6232,"26106":10580,"26107":12378,"26108":10205,"26109":284,"26110":9015,"26111":6158,"26112":9561,"26113":8087,"26114":9569,"26115":7766,"26116":5922,"26117":3104,"26118":554,"26119":15024,"26120":891,"26121":13266,"26122":6477,"26123":9858,"26124":6572,"26125":7965,"26126":10940,"26127":4764,"26128":11212,"26129":4576,"26130":12971,"26131":10446,"26132":13804,"26133":11446,"26134":5241,"26135":8257,"26136":14094,"26137":9903,"26138":11102,"26139":14708,"26140":6958,"26141":5255,"26142":12468,"26143":3587,"26144":6052,"26145":5336,"26146":7733,"26147":5058,"26148":12279,"26149":14551,"26150":10632,"26151":10017,"26152":4139,"26153":4166,"26154":1940,"26155":1148,"26156":13284,"26157":2962,"26158":13479,"26159":684,"26160":15059,"26161":1217,"26162":10974,"26163":9926,"26164":7058,"26165":13248,"26166":12703,"26167":473,"26168":9307,"26169":8122,"26170":3607,"26171":10361,"26172":7792,"26173":7697,"26174":4135,"26175":10606,"26176":6730,"26177":561,"26178":373,"26179":6443,"26180":14815,"26181":6798,"26182":5273,"26183":1723,"26184":14119,"26185":6388,"26186":14747,"26187":11651,"26188":14071,"26189":3692,"26190":9744,"26191":2326,"26192":11579,"26193":11760,"26194":12573,"26195":11845,"26196":8840,"26197":5289,"26198":3247,"26199":10131,"26200":5817,"26201":11537,"26202":1560,"26203":12616,"26204":3263,"26205":10174,"26206":13036,"26207":9565,"26208":4573,"26209":10048,"26210":14283,"26211":6771,"26212":9637,"26213":11731,"26214":5341,"26215":9852,"26216":81,"26217":13234,"26218":14030,"26219":3289,"26220":13063,"26221":12368,"26222":8132,"26223":10575,"26224":7618,"26225":3978,"26226":1868,"26227":13505,"26228":1647,"26229":1451,"26230":2755,"26231":10435,"26232":7368,"26233":3109,"26234":78,"26235":14050,"26236":11974,"26237":12164,"26238":9940,"26239":11307,"26240":8005,"26241":3382,"26242":2341,"26243":12481,"26244":739,"26245":4324,"26246":4547,"26247":4548,"26248":10084,"26249":1872,"26250":2967,"26251":9801,"26252":889,"26253":2451,"26254":1849,"26255":4175,"26256":2803,"26257":5402,"26258":7379,"26259":15059,"26260":7165,"26261":10426,"26262":4889,"26263":12928,"26264":11658,"26265":2059,"26266":7830,"26267":5454,"26268":2802,"26269":12961,"26270":10676,"26271":14040,"26272":2611,"26273":14074,"26274":12817,"26275":9120,"26276":12876,"26277":9618,"26278":12013,"26279":8270,"26280":1193,"26281":10434,"26282":4475,"26283":3359,"26284":3923,"26285":14895,"26286":2239,"26287":746,"26288":2011,"26289":11391,"26290":6579,"26291":5172,"26292":14512,"26293":12844,"26294":8135,"26295":7069,"26296":4513,"26297":4525,"26298":14733,"26299":15067,"26300":10545,"26301":6163,"26302":6867,"26303":4059,"26304":14503,"26305":11359,"26306":9751,"26307":11848,"26308":7346,"26309":10214,"26310":3388,"26311":1519,"26312":5978,"26313":3275,"26314":9175,"26315":13732,"26316":10585,"26317":193,"26318":2040,"26319":13829,"26320":13802,"26321":10218,"26322":5435,"26323":6255,"26324":14222,"26325":5431,"26326":6043,"26327":12039,"26328":9124,"26329":5568,"26330":8135,"26331":7910,"26332":1929,"26333":3644,"26334":11511,"26335":1173,"26336":9661,"26337":5404,"26338":5083,"26339":5985,"26340":7399,"26341":2237,"26342":15107,"26343":13178,"26344":4911,"26345":4986,"26346":10009,"26347":3996,"26348":9602,"26349":10352,"26350":10070,"26351":2830,"26352":1249,"26353":1641,"26354":6026,"26355":3976,"26356":9112,"26357":6347,"26358":3630,"26359":6426,"26360":6360,"26361":10071,"26362":4228,"26363":8414,"26364":15058,"26365":9134,"26366":2713,"26367":4859,"26368":7908,"26369":734,"26370":6833,"26371":12487,"26372":5758,"26373":14073,"26374":7585,"26375":8808,"26376":5609,"26377":14607,"26378":9566,"26379":12685,"26380":13731,"26381":2380,"26382":10735,"26383":10555,"26384":3735,"26385":14736,"26386":3569,"26387":8561,"26388":5467,"26389":12667,"26390":2788,"26391":7975,"26392":3221,"26393":1390,"26394":11097,"26395":3733,"26396":12194,"26397":11618,"26398":2168,"26399":7874,"26400":11426,"26401":1035,"26402":14011,"26403":13154,"26404":336,"26405":10455,"26406":5702,"26407":15095,"26408":7590,"26409":11352,"26410":240,"26411":2221,"26412":14467,"26413":1341,"26414":12563,"26415":11739,"26416":13711,"26417":2768,"26418":1132,"26419":8031,"26420":12600,"26421":5548,"26422":10183,"26423":11840,"26424":8038,"26425":3645,"26426":8620,"26427":14594,"26428":6417,"26429":14325,"26430":4364,"26431":1431,"26432":2504,"26433":1244,"26434":4455,"26435":7342,"26436":1641,"26437":4871,"26438":7771,"26439":4406,"26440":1977,"26441":10280,"26442":7910,"26443":12572,"26444":7985,"26445":6231,"26446":13174,"26447":3625,"26448":1285,"26449":8890,"26450":9334,"26451":5572,"26452":1122,"26453":10980,"26454":12056,"26455":13370,"26456":3959,"26457":13098,"26458":12448,"26459":8405,"26460":536,"26461":10268,"26462":7762,"26463":13568,"26464":7702,"26465":15122,"26466":6839,"26467":9393,"26468":6499,"26469":1187,"26470":330,"26471":11438,"26472":1538,"26473":4661,"26474":2851,"26475":3602,"26476":2360,"26477":2725,"26478":100,"26479":1454,"26480":2520,"26481":8190,"26482":13858,"26483":6458,"26484":483,"26485":9169,"26486":10293,"26487":5081,"26488":4534,"26489":2234,"26490":14309,"26491":6538,"26492":12745,"26493":218,"26494":12129,"26495":3062,"26496":4175,"26497":11959,"26498":2986,"26499":1833,"26500":11191,"26501":10559,"26502":15030,"26503":12300,"26504":4883,"26505":7574,"26506":11264,"26507":7277,"26508":9364,"26509":9421,"26510":9480,"26511":2537,"26512":14971,"26513":2951,"26514":2680,"26515":8795,"26516":10239,"26517":1452,"26518":999,"26519":13822,"26520":14569,"26521":2526,"26522":11285,"26523":2728,"26524":1222,"26525":5387,"26526":917,"26527":8842,"26528":69,"26529":2,"26530":8684,"26531":3,"26532":5975,"26533":5085,"26534":8516,"26535":4148,"26536":3502,"26537":8163,"26538":9654,"26539":13180,"26540":8628,"26541":8610,"26542":13184,"26543":8004,"26544":8539,"26545":13862,"26546":2942,"26547":12458,"26548":5245,"26549":11140,"26550":8473,"26551":9638,"26552":4277,"26553":5173,"26554":3256,"26555":2453,"26556":3790,"26557":13670,"26558":7234,"26559":7288,"26560":4212,"26561":2480,"26562":11182,"26563":4025,"26564":1304,"26565":7903,"26566":9316,"26567":10482,"26568":6991,"26569":12090,"26570":2218,"26571":12094,"26572":4184,"26573":6911,"26574":12238,"26575":2948,"26576":11077,"26577":4328,"26578":7272,"26579":475,"26580":3161,"26581":10289,"26582":12271,"26583":14571,"26584":3796,"26585":10129,"26586":10386,"26587":14585,"26588":3467,"26589":7888,"26590":8611,"26591":213,"26592":1002,"26593":12539,"26594":1752,"26595":8210,"26596":4191,"26597":14363,"26598":7524,"26599":10237,"26600":12778,"26601":10572,"26602":10764,"26603":435,"26604":14225,"26605":14174,"26606":7374,"26607":9376,"26608":14430,"26609":9503,"26610":13178,"26611":11907,"26612":11199,"26613":4920,"26614":3278,"26615":747,"26616":5295,"26617":5389,"26618":6333,"26619":1484,"26620":13955,"26621":8199,"26622":141,"26623":1971,"26624":5100,"26625":5456,"26626":10995,"26627":9174,"26628":13221,"26629":4932,"26630":10906,"26631":9954,"26632":2841,"26633":3902,"26634":11905,"26635":5490,"26636":5746,"26637":8983,"26638":14524,"26639":12167,"26640":3334,"26641":4185,"26642":11441,"26643":9596,"26644":14627,"26645":13058,"26646":9440,"26647":6924,"26648":5167,"26649":3084,"26650":1179,"26651":10782,"26652":14378,"26653":12245,"26654":4392,"26655":9723,"26656":744,"26657":5755,"26658":10919,"26659":5706,"26660":7009,"26661":5252,"26662":14606,"26663":5032,"26664":14209,"26665":2633,"26666":12352,"26667":6163,"26668":13157,"26669":11101,"26670":12327,"26671":5313,"26672":8192,"26673":2347,"26674":14654,"26675":13406,"26676":3169,"26677":1151,"26678":7037,"26679":2325,"26680":9050,"26681":14299,"26682":6285,"26683":3515,"26684":4516,"26685":14402,"26686":8479,"26687":14590,"26688":2837,"26689":5025,"26690":7582,"26691":7145,"26692":5080,"26693":12488,"26694":5368,"26695":14392,"26696":7011,"26697":7990,"26698":2990,"26699":7587,"26700":443,"26701":5696,"26702":3256,"26703":11258,"26704":561,"26705":5762,"26706":2924,"26707":12675,"26708":2332,"26709":12734,"26710":3614,"26711":1832,"26712":5011,"26713":3029,"26714":6520,"26715":2122,"26716":1025,"26717":250,"26718":5910,"26719":1184,"26720":14313,"26721":3901,"26722":12785,"26723":10340,"26724":4373,"26725":2390,"26726":4644,"26727":671,"26728":1906,"26729":1554,"26730":10148,"26731":2305,"26732":10713,"26733":6489,"26734":92,"26735":10357,"26736":90,"26737":7319,"26738":5030,"26739":12986,"26740":99,"26741":776,"26742":8129,"26743":12150,"26744":829,"26745":4735,"26746":9185,"26747":12360,"26748":3663,"26749":3462,"26750":4084,"26751":9771,"26752":424,"26753":2102,"26754":3258,"26755":2897,"26756":6577,"26757":3516,"26758":7203,"26759":1750,"26760":7099,"26761":3621,"26762":11275,"26763":6808,"26764":4795,"26765":844,"26766":5400,"26767":12621,"26768":6001,"26769":3148,"26770":8031,"26771":4799,"26772":5271,"26773":4286,"26774":6886,"26775":4107,"26776":3367,"26777":8348,"26778":6899,"26779":12664,"26780":11147,"26781":11766,"26782":4910,"26783":15114,"26784":4356,"26785":3037,"26786":5429,"26787":2662,"26788":14577,"26789":273,"26790":1120,"26791":3915,"26792":11677,"26793":5178,"26794":11876,"26795":7678,"26796":6579,"26797":9201,"26798":11970,"26799":8570,"26800":13737,"26801":9791,"26802":12573,"26803":10687,"26804":10483,"26805":1237,"26806":13198,"26807":5871,"26808":2178,"26809":2840,"26810":5428,"26811":12330,"26812":2006,"26813":7533,"26814":2072,"26815":5882,"26816":5630,"26817":9819,"26818":10703,"26819":2350,"26820":1297,"26821":11875,"26822":7666,"26823":13909,"26824":6369,"26825":5946,"26826":5219,"26827":7863,"26828":13548,"26829":12642,"26830":1142,"26831":14240,"26832":11078,"26833":4394,"26834":10153,"26835":11048,"26836":3583,"26837":11159,"26838":11952,"26839":3662,"26840":14158,"26841":322,"26842":1259,"26843":11723,"26844":8865,"26845":9232,"26846":7651,"26847":9433,"26848":4949,"26849":5628,"26850":2972,"26851":10513,"26852":1234,"26853":14223,"26854":14003,"26855":8843,"26856":7777,"26857":3118,"26858":323,"26859":1282,"26860":11797,"26861":11830,"26862":1575,"26863":9420,"26864":14511,"26865":1886,"26866":6290,"26867":9293,"26868":9336,"26869":898,"26870":4997,"26871":5643,"26872":3965,"26873":14541,"26874":6892,"26875":1678,"26876":5957,"26877":584,"26878":14557,"26879":7973,"26880":3185,"26881":8925,"26882":1714,"26883":636,"26884":12939,"26885":14128,"26886":12238,"26887":6959,"26888":12375,"26889":8196,"26890":7747,"26891":13051,"26892":4878,"26893":3601,"26894":4050,"26895":6903,"26896":13482,"26897":587,"26898":720,"26899":558,"26900":8048,"26901":10518,"26902":1722,"26903":515,"26904":11234,"26905":11503,"26906":1784,"26907":12274,"26908":8271,"26909":7995,"26910":859,"26911":13420,"26912":8071,"26913":3627,"26914":10880,"26915":5127,"26916":5990,"26917":13147,"26918":2014,"26919":11466,"26920":13398,"26921":12317,"26922":10884,"26923":5513,"26924":2980,"26925":12905,"26926":2379,"26927":10905,"26928":4752,"26929":10422,"26930":6540,"26931":13695,"26932":1213,"26933":9252,"26934":4549,"26935":256,"26936":13347,"26937":7723,"26938":6133,"26939":2762,"26940":13428,"26941":5722,"26942":12624,"26943":5941,"26944":14982,"26945":6346,"26946":11521,"26947":12698,"26948":3445,"26949":11642,"26950":14482,"26951":5402,"26952":13939,"26953":8537,"26954":14601,"26955":3589,"26956":2222,"26957":2374,"26958":9343,"26959":648,"26960":11237,"26961":10087,"26962":7831,"26963":12011,"26964":5713,"26965":197,"26966":12021,"26967":10799,"26968":3155,"26969":13474,"26970":11874,"26971":4983,"26972":1878,"26973":14604,"26974":14365,"26975":13893,"26976":1894,"26977":9937,"26978":10593,"26979":14412,"26980":1513,"26981":1913,"26982":6605,"26983":6616,"26984":10,"26985":12005,"26986":4757,"26987":8986,"26988":14447,"26989":12716,"26990":11782,"26991":13747,"26992":14093,"26993":13659,"26994":14887,"26995":2029,"26996":10735,"26997":5687,"26998":4733,"26999":8941,"27000":14734,"27001":1128,"27002":6239,"27003":4109,"27004":1190,"27005":12876,"27006":13908,"27007":14691,"27008":12826,"27009":9106,"27010":3286,"27011":11673,"27012":7258,"27013":6530,"27014":14324,"27015":11697,"27016":10708,"27017":14792,"27018":2019,"27019":2329,"27020":7073,"27021":10435,"27022":14848,"27023":2288,"27024":10901,"27025":10329,"27026":2670,"27027":4659,"27028":4508,"27029":7218,"27030":931,"27031":9381,"27032":11611,"27033":6567,"27034":15012,"27035":8140,"27036":12827,"27037":8118,"27038":11762,"27039":6439,"27040":8787,"27041":3916,"27042":2164,"27043":10800,"27044":12305,"27045":12583,"27046":7719,"27047":3599,"27048":1910,"27049":8304,"27050":7514,"27051":13777,"27052":12156,"27053":14664,"27054":14086,"27055":369,"27056":5309,"27057":10142,"27058":12311,"27059":14068,"27060":5541,"27061":12461,"27062":2601,"27063":3568,"27064":734,"27065":13995,"27066":14318,"27067":2578,"27068":2625,"27069":4324,"27070":13232,"27071":14673,"27072":12545,"27073":12604,"27074":1345,"27075":11248,"27076":6877,"27077":5019,"27078":997,"27079":10344,"27080":6333,"27081":5138,"27082":7328,"27083":8155,"27084":11815,"27085":14625,"27086":3886,"27087":2036,"27088":8585,"27089":6301,"27090":10911,"27091":11488,"27092":13469,"27093":8608,"27094":13597,"27095":3555,"27096":11012,"27097":9244,"27098":13217,"27099":2120,"27100":9853,"27101":9006,"27102":4308,"27103":9123,"27104":12779,"27105":13457,"27106":4874,"27107":6468,"27108":13220,"27109":5974,"27110":8423,"27111":6540,"27112":9640,"27113":10478,"27114":1598,"27115":8408,"27116":10037,"27117":11719,"27118":13031,"27119":12534,"27120":5514,"27121":4644,"27122":5982,"27123":14839,"27124":9094,"27125":8241,"27126":3457,"27127":3783,"27128":4235,"27129":5314,"27130":132,"27131":8899,"27132":2177,"27133":1862,"27134":14259,"27135":13831,"27136":13625,"27137":2081,"27138":11966,"27139":11424,"27140":13199,"27141":3013,"27142":5346,"27143":14074,"27144":10412,"27145":13795,"27146":7321,"27147":14981,"27148":5804,"27149":13823,"27150":10983,"27151":5478,"27152":5375,"27153":1591,"27154":9844,"27155":14106,"27156":11592,"27157":12634,"27158":2322,"27159":5107,"27160":2817,"27161":13484,"27162":3245,"27163":14901,"27164":6237,"27165":14062,"27166":11902,"27167":12019,"27168":12774,"27169":3406,"27170":13988,"27171":13997,"27172":2176,"27173":10293,"27174":2001,"27175":13658,"27176":5276,"27177":7522,"27178":14787,"27179":3065,"27180":9877,"27181":10923,"27182":2062,"27183":12085,"27184":9385,"27185":13150,"27186":13787,"27187":9715,"27188":402,"27189":5884,"27190":8117,"27191":8784,"27192":14687,"27193":4163,"27194":1328,"27195":9617,"27196":1984,"27197":13998,"27198":8215,"27199":6656,"27200":5784,"27201":9672,"27202":14961,"27203":12397,"27204":4342,"27205":3189,"27206":13902,"27207":13499,"27208":6926,"27209":14675,"27210":6437,"27211":4364,"27212":11307,"27213":14306,"27214":7801,"27215":8176,"27216":7129,"27217":6280,"27218":11968,"27219":5502,"27220":7185,"27221":13972,"27222":12342,"27223":4827,"27224":14986,"27225":7081,"27226":9641,"27227":1432,"27228":8284,"27229":14794,"27230":5594,"27231":4561,"27232":1897,"27233":585,"27234":14671,"27235":1,"27236":591,"27237":566,"27238":13339,"27239":3451,"27240":7813,"27241":6349,"27242":15028,"27243":2443,"27244":5300,"27245":3868,"27246":1008,"27247":9888,"27248":7137,"27249":1819,"27250":14347,"27251":3093,"27252":14009,"27253":1126,"27254":5079,"27255":6609,"27256":14843,"27257":2313,"27258":14894,"27259":2091,"27260":13787,"27261":8924,"27262":2125,"27263":14206,"27264":5807,"27265":799,"27266":2928,"27267":8689,"27268":1465,"27269":2449,"27270":3196,"27271":14936,"27272":10693,"27273":14788,"27274":11758,"27275":14952,"27276":5654,"27277":10545,"27278":12393,"27279":4478,"27280":9217,"27281":7056,"27282":14645,"27283":4451,"27284":5807,"27285":12483,"27286":14611,"27287":6183,"27288":8753,"27289":5634,"27290":15047,"27291":616,"27292":1187,"27293":48,"27294":9008,"27295":7368,"27296":11578,"27297":1493,"27298":10719,"27299":9566,"27300":2784,"27301":4235,"27302":4528,"27303":3672,"27304":3633,"27305":12563,"27306":11134,"27307":244,"27308":9123,"27309":9623,"27310":8714,"27311":14984,"27312":14738,"27313":8976,"27314":1815,"27315":1041,"27316":15024,"27317":11221,"27318":14279,"27319":6436,"27320":13467,"27321":6891,"27322":2605,"27323":4484,"27324":5612,"27325":5569,"27326":2649,"27327":12055,"27328":14840,"27329":10519,"27330":899,"27331":4486,"27332":15090,"27333":6047,"27334":2411,"27335":1877,"27336":11356,"27337":14558,"27338":4693,"27339":6999,"27340":13685,"27341":1602,"27342":4368,"27343":12723,"27344":2888,"27345":12906,"27346":13216,"27347":555,"27348":8253,"27349":5236,"27350":8441,"27351":5555,"27352":9950,"27353":4303,"27354":11470,"27355":7252,"27356":11454,"27357":11611,"27358":12219,"27359":12268,"27360":4553,"27361":8443,"27362":3481,"27363":7119,"27364":14406,"27365":4275,"27366":10753,"27367":14316,"27368":11247,"27369":8388,"27370":6582,"27371":10246,"27372":13460,"27373":9355,"27374":10779,"27375":6968,"27376":6407,"27377":12598,"27378":2879,"27379":6718,"27380":10865,"27381":7218,"27382":7332,"27383":13240,"27384":6264,"27385":5102,"27386":5517,"27387":3571,"27388":9214,"27389":8199,"27390":2367,"27391":6092,"27392":8368,"27393":12285,"27394":8046,"27395":5425,"27396":7615,"27397":5297,"27398":5095,"27399":277,"27400":4717,"27401":10756,"27402":6277,"27403":10342,"27404":8473,"27405":6688,"27406":6741,"27407":5049,"27408":9214,"27409":7105,"27410":7190,"27411":7229,"27412":11015,"27413":12677,"27414":9854,"27415":975,"27416":12645,"27417":14800,"27418":5052,"27419":7293,"27420":14609,"27421":8483,"27422":5687,"27423":6403,"27424":11475,"27425":3353,"27426":9403,"27427":1538,"27428":11004,"27429":3349,"27430":6489,"27431":3054,"27432":9149,"27433":4334,"27434":5292,"27435":7932,"27436":3020,"27437":3565,"27438":3389,"27439":8761,"27440":11816,"27441":2532,"27442":4138,"27443":1915,"27444":156,"27445":1266,"27446":3379,"27447":6682,"27448":3059,"27449":9864,"27450":9958,"27451":29,"27452":2063,"27453":989,"27454":7186,"27455":14660,"27456":319,"27457":2012,"27458":3283,"27459":1262,"27460":705,"27461":8194,"27462":8799,"27463":6912,"27464":2398,"27465":6319,"27466":4702,"27467":6885,"27468":6492,"27469":13446,"27470":441,"27471":1279,"27472":3852,"27473":10582,"27474":9845,"27475":8344,"27476":4149,"27477":4502,"27478":11580,"27479":7206,"27480":14894,"27481":10949,"27482":406,"27483":11793,"27484":13298,"27485":566,"27486":14551,"27487":10155,"27488":5142,"27489":11681,"27490":9084,"27491":2279,"27492":3928,"27493":8884,"27494":6965,"27495":8799,"27496":11410,"27497":3686,"27498":3170,"27499":1400,"27500":1750,"27501":797,"27502":8252,"27503":12932,"27504":5849,"27505":8751,"27506":429,"27507":10777,"27508":8433,"27509":8419,"27510":6222,"27511":11126,"27512":1790,"27513":7669,"27514":11399,"27515":9850,"27516":13699,"27517":14324,"27518":4785,"27519":4888,"27520":2847,"27521":2410,"27522":7429,"27523":1802,"27524":10249,"27525":847,"27526":84,"27527":14709,"27528":9749,"27529":5156,"27530":3940,"27531":4790,"27532":3264,"27533":9731,"27534":9880,"27535":7304,"27536":8870,"27537":8000,"27538":3129,"27539":9944,"27540":9023,"27541":4973,"27542":12789,"27543":9626,"27544":6837,"27545":13978,"27546":9991,"27547":4117,"27548":9571,"27549":11634,"27550":10741,"27551":1041,"27552":2269,"27553":14001,"27554":4365,"27555":13838,"27556":3831,"27557":14052,"27558":8102,"27559":8565,"27560":15072,"27561":1509,"27562":1194,"27563":12787,"27564":11543,"27565":9214,"27566":14302,"27567":10632,"27568":9032,"27569":12584,"27570":15126,"27571":10659,"27572":14418,"27573":14524,"27574":7374,"27575":12649,"27576":11903,"27577":12266,"27578":8103,"27579":1456,"27580":8178,"27581":10767,"27582":2260,"27583":11445,"27584":8097,"27585":13279,"27586":10003,"27587":13750,"27588":6874,"27589":6953,"27590":776,"27591":13191,"27592":4814,"27593":8681,"27594":7756,"27595":5586,"27596":7452,"27597":12032,"27598":13059,"27599":189,"27600":3937,"27601":3462,"27602":1154,"27603":7391,"27604":11182,"27605":4567,"27606":10400,"27607":3393,"27608":14872,"27609":9471,"27610":12536,"27611":11986,"27612":5936,"27613":1668,"27614":10756,"27615":4413,"27616":1738,"27617":5324,"27618":13602,"27619":836,"27620":13408,"27621":10305,"27622":11743,"27623":10868,"27624":14191,"27625":5460,"27626":1998,"27627":8530,"27628":12009,"27629":14241,"27630":11461,"27631":6170,"27632":10681,"27633":12950,"27634":2001,"27635":7845,"27636":12654,"27637":7688,"27638":6690,"27639":4098,"27640":6444,"27641":10388,"27642":11515,"27643":3625,"27644":8707,"27645":6457,"27646":14184,"27647":6339,"27648":10114,"27649":1216,"27650":13901,"27651":7242,"27652":14547,"27653":7378,"27654":15055,"27655":11627,"27656":10458,"27657":2324,"27658":14499,"27659":3257,"27660":5540,"27661":3507,"27662":8591,"27663":10332,"27664":15104,"27665":12116,"27666":1759,"27667":14975,"27668":2927,"27669":7725,"27670":5791,"27671":2430,"27672":14874,"27673":4416,"27674":13073,"27675":8281,"27676":29,"27677":2817,"27678":13759,"27679":2901,"27680":13923,"27681":8315,"27682":12420,"27683":5535,"27684":11652,"27685":12762,"27686":3775,"27687":12224,"27688":336,"27689":10756,"27690":4649,"27691":5062,"27692":1986,"27693":11548,"27694":13262,"27695":6341,"27696":12580,"27697":7029,"27698":5622,"27699":1167,"27700":999,"27701":5454,"27702":11559,"27703":3375,"27704":1623,"27705":7377,"27706":3703,"27707":6285,"27708":4477,"27709":13162,"27710":13296,"27711":12709,"27712":7288,"27713":11540,"27714":7486,"27715":11867,"27716":4850,"27717":2358,"27718":11317,"27719":7472,"27720":1258,"27721":13775,"27722":672,"27723":14921,"27724":8340,"27725":12956,"27726":998,"27727":7307,"27728":12312,"27729":9029,"27730":4085,"27731":4862,"27732":3864,"27733":8150,"27734":11723,"27735":704,"27736":14395,"27737":6554,"27738":2598,"27739":10550,"27740":9192,"27741":7390,"27742":13858,"27743":14862,"27744":13305,"27745":13064,"27746":8320,"27747":5441,"27748":14076,"27749":12858,"27750":4712,"27751":12692,"27752":3044,"27753":9305,"27754":3088,"27755":4226,"27756":11973,"27757":12260,"27758":5468,"27759":14087,"27760":12161,"27761":2485,"27762":11924,"27763":3407,"27764":11779,"27765":11959,"27766":13060,"27767":13206,"27768":13360,"27769":5450,"27770":8678,"27771":7261,"27772":4072,"27773":5947,"27774":1936,"27775":4388,"27776":136,"27777":14405,"27778":9838,"27779":6685,"27780":13624,"27781":6643,"27782":8591,"27783":4645,"27784":685,"27785":7899,"27786":6149,"27787":3353,"27788":12240,"27789":13065,"27790":11893,"27791":12644,"27792":1408,"27793":14405,"27794":14468,"27795":11126,"27796":2669,"27797":9580,"27798":9739,"27799":11732,"27800":6043,"27801":13248,"27802":7429,"27803":13997,"27804":3683,"27805":10023,"27806":6943,"27807":13892,"27808":14762,"27809":1963,"27810":10523,"27811":11108,"27812":6071,"27813":3745,"27814":1181,"27815":2984,"27816":3926,"27817":10843,"27818":5528,"27819":4042,"27820":1122,"27821":7732,"27822":2080,"27823":12857,"27824":3824,"27825":2822,"27826":14407,"27827":742,"27828":12856,"27829":10780,"27830":4500,"27831":11084,"27832":12136,"27833":690,"27834":5772,"27835":1552,"27836":141,"27837":6773,"27838":4371,"27839":1029,"27840":7752,"27841":14481,"27842":9290,"27843":2572,"27844":2453,"27845":7998,"27846":2609,"27847":6649,"27848":8089,"27849":13489,"27850":3346,"27851":2011,"27852":14324,"27853":10042,"27854":5559,"27855":11180,"27856":10333,"27857":5680,"27858":3911,"27859":8171,"27860":2647,"27861":12958,"27862":10879,"27863":553,"27864":7912,"27865":1831,"27866":9186,"27867":12192,"27868":14944,"27869":4279,"27870":4666,"27871":11536,"27872":12027,"27873":2175,"27874":1147,"27875":8486,"27876":11455,"27877":12952,"27878":7790,"27879":3774,"27880":6076,"27881":10855,"27882":5188,"27883":1827,"27884":1114,"27885":14694,"27886":7689,"27887":10847,"27888":10436,"27889":14078,"27890":1138,"27891":17,"27892":11132,"27893":8934,"27894":11099,"27895":9066,"27896":11372,"27897":67,"27898":13833,"27899":4840,"27900":2289,"27901":6926,"27902":9746,"27903":7632,"27904":8492,"27905":7847,"27906":9901,"27907":8005,"27908":12084,"27909":10828,"27910":7634,"27911":14850,"27912":1913,"27913":4829,"27914":7443,"27915":6203,"27916":8568,"27917":9593,"27918":1105,"27919":5240,"27920":13133,"27921":12123,"27922":8946,"27923":1602,"27924":166,"27925":13971,"27926":8303,"27927":4583,"27928":9280,"27929":5249,"27930":9191,"27931":4732,"27932":6412,"27933":1556,"27934":11776,"27935":14393,"27936":3525,"27937":6437,"27938":1346,"27939":12703,"27940":12477,"27941":13263,"27942":5406,"27943":13733,"27944":9569,"27945":13707,"27946":9233,"27947":7377,"27948":14955,"27949":6778,"27950":5992,"27951":6627,"27952":5347,"27953":14129,"27954":1998,"27955":4730,"27956":6121,"27957":443,"27958":7838,"27959":3438,"27960":14897,"27961":8775,"27962":560,"27963":11542,"27964":1803,"27965":6111,"27966":13737,"27967":237,"27968":11446,"27969":9978,"27970":741,"27971":366,"27972":10876,"27973":9239,"27974":10294,"27975":9934,"27976":14578,"27977":10452,"27978":4314,"27979":1536,"27980":12542,"27981":4431,"27982":14579,"27983":9331,"27984":1723,"27985":7178,"27986":807,"27987":5144,"27988":998,"27989":3260,"27990":3119,"27991":11730,"27992":12687,"27993":12225,"27994":12669,"27995":13750,"27996":1898,"27997":875,"27998":13235,"27999":11446,"28000":5598,"28001":14333,"28002":10548,"28003":214,"28004":9368,"28005":2132,"28006":7858,"28007":15009,"28008":13227,"28009":12446,"28010":4529,"28011":2241,"28012":1172,"28013":6073,"28014":10459,"28015":9982,"28016":3162,"28017":622,"28018":11309,"28019":13949,"28020":576,"28021":1614,"28022":10779,"28023":7998,"28024":10118,"28025":2387,"28026":11615,"28027":4676,"28028":2837,"28029":4480,"28030":7793,"28031":1883,"28032":12235,"28033":9550,"28034":1485,"28035":1791,"28036":14125,"28037":428,"28038":8457,"28039":4908,"28040":7131,"28041":267,"28042":1583,"28043":1916,"28044":9854,"28045":9999,"28046":1992,"28047":13618,"28048":12034,"28049":14984,"28050":8246,"28051":12157,"28052":12868,"28053":10012,"28054":10449,"28055":2335,"28056":8911,"28057":8832,"28058":14509,"28059":12785,"28060":3975,"28061":9259,"28062":4540,"28063":7882,"28064":10541,"28065":8657,"28066":8736,"28067":7450,"28068":1636,"28069":6941,"28070":14807,"28071":3011,"28072":12507,"28073":13593,"28074":5871,"28075":9367,"28076":2788,"28077":3211,"28078":7269,"28079":11103,"28080":5652,"28081":12765,"28082":14548,"28083":2202,"28084":10839,"28085":3468,"28086":2356,"28087":7774,"28088":6270,"28089":9592,"28090":6199,"28091":14728,"28092":9023,"28093":4424,"28094":12036,"28095":10038,"28096":483,"28097":10924,"28098":6705,"28099":11319,"28100":7000,"28101":1665,"28102":12570,"28103":13871,"28104":877,"28105":3,"28106":6898,"28107":11609,"28108":8705,"28109":812,"28110":2714,"28111":13513,"28112":7891,"28113":8075,"28114":7132,"28115":9255,"28116":13839,"28117":12477,"28118":2081,"28119":6097,"28120":6853,"28121":12948,"28122":8849,"28123":2990,"28124":5412,"28125":5078,"28126":6104,"28127":422,"28128":15131,"28129":9624,"28130":14695,"28131":3977,"28132":2674,"28133":5389,"28134":13260,"28135":2437,"28136":10786,"28137":878,"28138":1160,"28139":6442,"28140":11014,"28141":4432,"28142":2240,"28143":10761,"28144":2055,"28145":13993,"28146":11956,"28147":3360,"28148":8605,"28149":8390,"28150":7575,"28151":14197,"28152":5480,"28153":8178,"28154":11833,"28155":14122,"28156":3365,"28157":10664,"28158":7496,"28159":14298,"28160":12694,"28161":6347,"28162":13843,"28163":13714,"28164":5618,"28165":14259,"28166":938,"28167":3585,"28168":11990,"28169":1345,"28170":9388,"28171":9824,"28172":1360,"28173":6832,"28174":13676,"28175":14215,"28176":11258,"28177":10499,"28178":6917,"28179":5861,"28180":3559,"28181":5749,"28182":12817,"28183":13740,"28184":4216,"28185":9116,"28186":1482,"28187":11182,"28188":12775,"28189":13239,"28190":9701,"28191":2218,"28192":7525,"28193":5805,"28194":3588,"28195":3264,"28196":2681,"28197":15030,"28198":10034,"28199":4850,"28200":7912,"28201":5089,"28202":15142,"28203":11476,"28204":14640,"28205":3164,"28206":6735,"28207":8982,"28208":6510,"28209":11221,"28210":8766,"28211":11492,"28212":7557,"28213":823,"28214":13762,"28215":14304,"28216":6370,"28217":10620,"28218":1262,"28219":8262,"28220":2504,"28221":3717,"28222":1872,"28223":1137,"28224":15085,"28225":7471,"28226":5079,"28227":14439,"28228":7950,"28229":1030,"28230":1414,"28231":9533,"28232":5030,"28233":8744,"28234":7273,"28235":14802,"28236":9287,"28237":6949,"28238":4425,"28239":14545,"28240":7076,"28241":14234,"28242":10360,"28243":441,"28244":8596,"28245":210,"28246":9118,"28247":13502,"28248":5794,"28249":12078,"28250":38,"28251":15013,"28252":477,"28253":10721,"28254":14163,"28255":2708,"28256":14381,"28257":11933,"28258":8503,"28259":14221,"28260":6275,"28261":10711,"28262":10320,"28263":13103,"28264":11469,"28265":2412,"28266":8443,"28267":4633,"28268":12903,"28269":6598,"28270":1170,"28271":13202,"28272":8976,"28273":3636,"28274":14408,"28275":6123,"28276":10529,"28277":10217,"28278":10075,"28279":3264,"28280":6192,"28281":7137,"28282":9366,"28283":10337,"28284":11008,"28285":5814,"28286":13303,"28287":3381,"28288":9758,"28289":531,"28290":12977,"28291":6135,"28292":8893,"28293":8119,"28294":2140,"28295":11364,"28296":1035,"28297":4054,"28298":13491,"28299":9642,"28300":14694,"28301":4742,"28302":7532,"28303":358,"28304":1155,"28305":7624,"28306":8478,"28307":10178,"28308":8365,"28309":1466,"28310":667,"28311":12018,"28312":4427,"28313":10892,"28314":13828,"28315":1670,"28316":14986,"28317":6552,"28318":4173,"28319":3680,"28320":2958,"28321":7012,"28322":5582,"28323":2332,"28324":9548,"28325":14500,"28326":6289,"28327":8191,"28328":4473,"28329":5625,"28330":10634,"28331":2319,"28332":13628,"28333":9638,"28334":4628,"28335":5086,"28336":5818,"28337":10327,"28338":1811,"28339":13069,"28340":14582,"28341":2495,"28342":7786,"28343":1862,"28344":4789,"28345":8538,"28346":8320,"28347":7180,"28348":3919,"28349":8555,"28350":12824,"28351":12082,"28352":8061,"28353":3492,"28354":14694,"28355":11884,"28356":4479,"28357":9253,"28358":9781,"28359":13779,"28360":6442,"28361":8428,"28362":13401,"28363":10184,"28364":7665,"28365":6813,"28366":3576,"28367":1323,"28368":13126,"28369":3715,"28370":14204,"28371":9707,"28372":12487,"28373":10715,"28374":3199,"28375":13352,"28376":2700,"28377":7332,"28378":13281,"28379":12632,"28380":2254,"28381":6631,"28382":4531,"28383":5664,"28384":9691,"28385":6397,"28386":10990,"28387":9211,"28388":5607,"28389":14911,"28390":9735,"28391":3212,"28392":5715,"28393":3801,"28394":8388,"28395":5858,"28396":11024,"28397":8227,"28398":11762,"28399":9574,"28400":11779,"28401":5036,"28402":11207,"28403":1641,"28404":7470,"28405":12510,"28406":4987,"28407":14301,"28408":12531,"28409":7329,"28410":14450,"28411":11979,"28412":12395,"28413":9539,"28414":756,"28415":10398,"28416":13515,"28417":9957,"28418":3665,"28419":13168,"28420":3590,"28421":11378,"28422":10607,"28423":12563,"28424":10298,"28425":10398,"28426":9202,"28427":8142,"28428":4854,"28429":14572,"28430":3003,"28431":14141,"28432":5390,"28433":11218,"28434":3204,"28435":10589,"28436":9679,"28437":1970,"28438":12849,"28439":5299,"28440":10648,"28441":2223,"28442":7831,"28443":244,"28444":5333,"28445":3133,"28446":1912,"28447":5386,"28448":9433,"28449":14153,"28450":12877,"28451":3437,"28452":14961,"28453":3830,"28454":12683,"28455":14213,"28456":329,"28457":2683,"28458":1268,"28459":6635,"28460":11281,"28461":1548,"28462":10762,"28463":4589,"28464":7152,"28465":2834,"28466":3723,"28467":14800,"28468":14638,"28469":9617,"28470":2272,"28471":14326,"28472":4182,"28473":8364,"28474":10232,"28475":4729,"28476":12877,"28477":7875,"28478":13704,"28479":4210,"28480":10231,"28481":904,"28482":4053,"28483":13986,"28484":4733,"28485":10829,"28486":4842,"28487":8197,"28488":8665,"28489":14664,"28490":9010,"28491":11441,"28492":11428,"28493":6304,"28494":8019,"28495":9649,"28496":14978,"28497":14121,"28498":10634,"28499":7568,"28500":10630,"28501":5955,"28502":10658,"28503":7313,"28504":11222,"28505":11571,"28506":10521,"28507":5061,"28508":4223,"28509":25,"28510":3820,"28511":9676,"28512":1119,"28513":8662,"28514":3888,"28515":522,"28516":5258,"28517":7008,"28518":512,"28519":12979,"28520":1720,"28521":12004,"28522":7923,"28523":5228,"28524":14523,"28525":3770,"28526":1393,"28527":459,"28528":12879,"28529":6325,"28530":2491,"28531":3866,"28532":7179,"28533":9485,"28534":13251,"28535":9866,"28536":15122,"28537":4618,"28538":4827,"28539":2859,"28540":15087,"28541":14193,"28542":11689,"28543":442,"28544":12097,"28545":4344,"28546":14514,"28547":9157,"28548":11108,"28549":10717,"28550":1757,"28551":1901,"28552":6021,"28553":2003,"28554":2344,"28555":9081,"28556":1843,"28557":6387,"28558":12211,"28559":11815,"28560":12249,"28561":1341,"28562":13160,"28563":260,"28564":8082,"28565":9519,"28566":8574,"28567":12273,"28568":7314,"28569":14226,"28570":2131,"28571":7429,"28572":10312,"28573":3668,"28574":3645,"28575":737,"28576":4659,"28577":13075,"28578":7404,"28579":7256,"28580":13839,"28581":8071,"28582":12451,"28583":11192,"28584":11140,"28585":6545,"28586":4418,"28587":11364,"28588":11493,"28589":877,"28590":2839,"28591":2488,"28592":1758,"28593":12940,"28594":4995,"28595":1527,"28596":5470,"28597":1217,"28598":7143,"28599":6761,"28600":7843,"28601":6408,"28602":10412,"28603":3241,"28604":2718,"28605":12047,"28606":1014,"28607":4472,"28608":1678,"28609":11405,"28610":266,"28611":11022,"28612":498,"28613":7933,"28614":2756,"28615":11925,"28616":1046,"28617":5212,"28618":1958,"28619":10400,"28620":5898,"28621":1370,"28622":5939,"28623":6244,"28624":8660,"28625":3882,"28626":8817,"28627":5151,"28628":4664,"28629":921,"28630":11238,"28631":13192,"28632":7916,"28633":7691,"28634":4005,"28635":13635,"28636":10831,"28637":9808,"28638":12422,"28639":5965,"28640":11839,"28641":12487,"28642":12148,"28643":11460,"28644":2496,"28645":5490,"28646":10394,"28647":8945,"28648":13314,"28649":14282,"28650":8510,"28651":13519,"28652":6696,"28653":3157,"28654":14274,"28655":3054,"28656":2415,"28657":9030,"28658":11089,"28659":10267,"28660":11069,"28661":951,"28662":1268,"28663":7127,"28664":8560,"28665":5711,"28666":2864,"28667":11284,"28668":6341,"28669":10826,"28670":14996,"28671":590,"28672":6933,"28673":13275,"28674":7951,"28675":10675,"28676":7172,"28677":8115,"28678":11161,"28679":8120,"28680":10246,"28681":14140,"28682":2807,"28683":12034,"28684":2707,"28685":5732,"28686":12103,"28687":2304,"28688":5329,"28689":4857,"28690":9582,"28691":9894,"28692":8979,"28693":13871,"28694":3120,"28695":9496,"28696":3369,"28697":3171,"28698":10679,"28699":101,"28700":8722,"28701":12212,"28702":11500,"28703":11410,"28704":4405,"28705":13590,"28706":5686,"28707":1438,"28708":1665,"28709":9430,"28710":11715,"28711":11579,"28712":11358,"28713":11890,"28714":12738,"28715":1605,"28716":6939,"28717":4300,"28718":1228,"28719":3545,"28720":1388,"28721":15035,"28722":6175,"28723":4236,"28724":33,"28725":593,"28726":6391,"28727":7233,"28728":1250,"28729":2610,"28730":5531,"28731":4739,"28732":10404,"28733":6398,"28734":12869,"28735":11281,"28736":13905,"28737":4095,"28738":512,"28739":14402,"28740":9148,"28741":1366,"28742":4736,"28743":5611,"28744":617,"28745":3268,"28746":9061,"28747":2995,"28748":76,"28749":10852,"28750":13989,"28751":3305,"28752":2309,"28753":10849,"28754":997,"28755":6396,"28756":6470,"28757":14321,"28758":13483,"28759":2981,"28760":519,"28761":2070,"28762":11570,"28763":12400,"28764":11748,"28765":2248,"28766":7919,"28767":7749,"28768":4319,"28769":10479,"28770":4913,"28771":2473,"28772":9621,"28773":9417,"28774":7176,"28775":2638,"28776":7654,"28777":10500,"28778":5681,"28779":12840,"28780":3446,"28781":6702,"28782":10271,"28783":6056,"28784":1819,"28785":161,"28786":14444,"28787":1087,"28788":3662,"28789":8802,"28790":6596,"28791":11666,"28792":13050,"28793":6546,"28794":6399,"28795":550,"28796":5836,"28797":1777,"28798":14566,"28799":8657,"28800":11881,"28801":4,"28802":11621,"28803":5966,"28804":14448,"28805":3231,"28806":2275,"28807":5747,"28808":13436,"28809":12197,"28810":1657,"28811":4442,"28812":4148,"28813":9980,"28814":7057,"28815":4002,"28816":2506,"28817":11301,"28818":9578,"28819":10686,"28820":9626,"28821":2889,"28822":13745,"28823":12758,"28824":14278,"28825":7713,"28826":12983,"28827":6895,"28828":9256,"28829":13012,"28830":7796,"28831":797,"28832":14168,"28833":6724,"28834":5714,"28835":11226,"28836":4,"28837":12432,"28838":11825,"28839":9041,"28840":13040,"28841":6075,"28842":6764,"28843":3843,"28844":12849,"28845":1250,"28846":11444,"28847":8053,"28848":5645,"28849":9864,"28850":14770,"28851":10636,"28852":8223,"28853":3092,"28854":11377,"28855":13362,"28856":6170,"28857":11469,"28858":6713,"28859":5294,"28860":1563,"28861":234,"28862":11333,"28863":12420,"28864":7544,"28865":11800,"28866":13841,"28867":13672,"28868":657,"28869":11784,"28870":6714,"28871":11813,"28872":14139,"28873":14144,"28874":2005,"28875":7494,"28876":11866,"28877":7054,"28878":10,"28879":8076,"28880":11053,"28881":10908,"28882":8351,"28883":3381,"28884":14332,"28885":10086,"28886":13178,"28887":12020,"28888":8618,"28889":667,"28890":14721,"28891":10853,"28892":7536,"28893":6234,"28894":1236,"28895":2176,"28896":10510,"28897":11283,"28898":791,"28899":1290,"28900":8061,"28901":14767,"28902":12573,"28903":6134,"28904":14818,"28905":11389,"28906":10728,"28907":2546,"28908":3533,"28909":7050,"28910":1084,"28911":7818,"28912":3345,"28913":8252,"28914":15127,"28915":3420,"28916":13511,"28917":6057,"28918":12154,"28919":9268,"28920":4635,"28921":4160,"28922":2978,"28923":879,"28924":1703,"28925":1551,"28926":2986,"28927":6380,"28928":507,"28929":6104,"28930":11802,"28931":14587,"28932":6563,"28933":13536,"28934":101,"28935":6777,"28936":900,"28937":11127,"28938":5666,"28939":4114,"28940":9599,"28941":3683,"28942":1400,"28943":9551,"28944":4960,"28945":11583,"28946":5641,"28947":868,"28948":6133,"28949":5943,"28950":8702,"28951":3858,"28952":14825,"28953":13994,"28954":14675,"28955":4544,"28956":11235,"28957":7897,"28958":10067,"28959":9937,"28960":12341,"28961":14693,"28962":15108,"28963":10157,"28964":7544,"28965":4508,"28966":2822,"28967":2653,"28968":7324,"28969":11590,"28970":10831,"28971":7183,"28972":14925,"28973":5753,"28974":10701,"28975":6928,"28976":3976,"28977":6508,"28978":14475,"28979":6867,"28980":8651,"28981":6379,"28982":9797,"28983":11407,"28984":10731,"28985":3540,"28986":7065,"28987":2015,"28988":11672,"28989":10227,"28990":4897,"28991":5686,"28992":5040,"28993":9587,"28994":518,"28995":4776,"28996":103,"28997":14740,"28998":621,"28999":4770,"29000":11233,"29001":40,"29002":13504,"29003":14502,"29004":2824,"29005":7934,"29006":11179,"29007":4357,"29008":13444,"29009":5725,"29010":8874,"29011":726,"29012":857,"29013":14870,"29014":12866,"29015":5534,"29016":3810,"29017":9581,"29018":3685,"29019":7475,"29020":14869,"29021":10975,"29022":3952,"29023":12322,"29024":10387,"29025":9178,"29026":9705,"29027":10517,"29028":11795,"29029":13192,"29030":3205,"29031":11579,"29032":4464,"29033":1567,"29034":2424,"29035":7275,"29036":12742,"29037":12724,"29038":5164,"29039":1167,"29040":6033,"29041":2753,"29042":13171,"29043":13306,"29044":10373,"29045":11214,"29046":1892,"29047":12872,"29048":8880,"29049":2895,"29050":5406,"29051":8102,"29052":15041,"29053":13724,"29054":8482,"29055":6153,"29056":13990,"29057":9338,"29058":8726,"29059":12752,"29060":3756,"29061":1971,"29062":13890,"29063":13081,"29064":10152,"29065":10872,"29066":1969,"29067":12939,"29068":10948,"29069":6379,"29070":10046,"29071":6361,"29072":9912,"29073":13924,"29074":10446,"29075":12644,"29076":2365,"29077":3032,"29078":11191,"29079":5532,"29080":7775,"29081":4155,"29082":4598,"29083":5379,"29084":1850,"29085":1471,"29086":6921,"29087":4164,"29088":1771,"29089":5626,"29090":565,"29091":6635,"29092":5849,"29093":15026,"29094":3902,"29095":13406,"29096":1599,"29097":9405,"29098":14605,"29099":3939,"29100":11729,"29101":9016,"29102":804,"29103":5201,"29104":14859,"29105":2525,"29106":4398,"29107":1905,"29108":8123,"29109":10086,"29110":9600,"29111":9333,"29112":13151,"29113":7643,"29114":13864,"29115":3126,"29116":7200,"29117":686,"29118":14685,"29119":6480,"29120":11292,"29121":2934,"29122":10463,"29123":9985,"29124":6802,"29125":5724,"29126":12469,"29127":5668,"29128":15047,"29129":13521,"29130":10228,"29131":520,"29132":3779,"29133":5094,"29134":8780,"29135":7021,"29136":13246,"29137":14096,"29138":13652,"29139":13709,"29140":9294,"29141":13729,"29142":10898,"29143":7712,"29144":1305,"29145":8599,"29146":4276,"29147":14128,"29148":7973,"29149":15108,"29150":10881,"29151":11668,"29152":11165,"29153":13332,"29154":6521,"29155":342,"29156":12335,"29157":2173,"29158":6687,"29159":13942,"29160":3335,"29161":11499,"29162":8216,"29163":2410,"29164":903,"29165":1771,"29166":12609,"29167":10892,"29168":13564,"29169":12293,"29170":5700,"29171":4522,"29172":14207,"29173":569,"29174":13264,"29175":10650,"29176":12526,"29177":12365,"29178":589,"29179":11284,"29180":1394,"29181":7041,"29182":526,"29183":8143,"29184":2599,"29185":6849,"29186":7687,"29187":13741,"29188":4044,"29189":4410,"29190":8528,"29191":350,"29192":3482,"29193":7423,"29194":9281,"29195":13751,"29196":1162,"29197":13563,"29198":4115,"29199":12606,"29200":11153,"29201":2037,"29202":7615,"29203":2672,"29204":8057,"29205":2458,"29206":10480,"29207":8433,"29208":9544,"29209":1963,"29210":10272,"29211":7719,"29212":10478,"29213":2131,"29214":12071,"29215":2425,"29216":11623,"29217":7387,"29218":4343,"29219":7026,"29220":10306,"29221":7536,"29222":565,"29223":8023,"29224":6055,"29225":15109,"29226":1886,"29227":2345,"29228":4246,"29229":14745,"29230":10508,"29231":5113,"29232":8626,"29233":12371,"29234":4975,"29235":10788,"29236":5566,"29237":12188,"29238":5503,"29239":11589,"29240":947,"29241":11205,"29242":11048,"29243":4763,"29244":6810,"29245":4435,"29246":3493,"29247":2349,"29248":9191,"29249":6181,"29250":3898,"29251":11211,"29252":15094,"29253":2213,"29254":847,"29255":12840,"29256":12580,"29257":2987,"29258":8169,"29259":12004,"29260":6300,"29261":11086,"29262":8398,"29263":935,"29264":14196,"29265":5623,"29266":3083,"29267":3296,"29268":818,"29269":3441,"29270":3579,"29271":1556,"29272":15135,"29273":12535,"29274":6576,"29275":8744,"29276":11043,"29277":2486,"29278":6372,"29279":7929,"29280":3564,"29281":7487,"29282":6537,"29283":12918,"29284":14319,"29285":10099,"29286":3461,"29287":1059,"29288":5056,"29289":11816,"29290":2391,"29291":10525,"29292":8251,"29293":13532,"29294":4911,"29295":5244,"29296":820,"29297":10868,"29298":3834,"29299":5852,"29300":5558,"29301":11647,"29302":11019,"29303":5908,"29304":14080,"29305":14220,"29306":5477,"29307":12956,"29308":14382,"29309":7804,"29310":818,"29311":3959,"29312":12179,"29313":1646,"29314":11491,"29315":5348,"29316":8487,"29317":14200,"29318":5961,"29319":4228,"29320":8798,"29321":11676,"29322":1107,"29323":13907,"29324":9455,"29325":5315,"29326":10504,"29327":1204,"29328":10434,"29329":8268,"29330":11651,"29331":10557,"29332":12156,"29333":7504,"29334":13945,"29335":5053,"29336":4905,"29337":7374,"29338":6092,"29339":14165,"29340":1764,"29341":5243,"29342":10767,"29343":14389,"29344":7376,"29345":12441,"29346":12025,"29347":7301,"29348":5579,"29349":6161,"29350":4792,"29351":10124,"29352":9517,"29353":15025,"29354":11410,"29355":5100,"29356":5505,"29357":9167,"29358":2030,"29359":14822,"29360":3785,"29361":4393,"29362":6470,"29363":11503,"29364":9287,"29365":9014,"29366":13461,"29367":1963,"29368":10827,"29369":14262,"29370":13370,"29371":4263,"29372":1934,"29373":13813,"29374":5879,"29375":12458,"29376":404,"29377":618,"29378":2168,"29379":10374,"29380":10538,"29381":14221,"29382":670,"29383":9953,"29384":6270,"29385":11725,"29386":544,"29387":13671,"29388":552,"29389":9231,"29390":7829,"29391":4336,"29392":12628,"29393":2491,"29394":2519,"29395":3045,"29396":3170,"29397":2781,"29398":13129,"29399":569,"29400":11244,"29401":3210,"29402":3668,"29403":2064,"29404":4266,"29405":1524,"29406":11250,"29407":5301,"29408":8505,"29409":3727,"29410":8319,"29411":11150,"29412":5366,"29413":2963,"29414":13633,"29415":9004,"29416":11192,"29417":6105,"29418":755,"29419":9592,"29420":7565,"29421":6906,"29422":5824,"29423":8023,"29424":3093,"29425":11120,"29426":1060,"29427":7389,"29428":8686,"29429":5116,"29430":3804,"29431":10060,"29432":15129,"29433":6165,"29434":14349,"29435":9207,"29436":7395,"29437":10326,"29438":1982,"29439":5860,"29440":11033,"29441":13579,"29442":9121,"29443":13166,"29444":10477,"29445":6523,"29446":7577,"29447":1630,"29448":3546,"29449":10253,"29450":9029,"29451":9684,"29452":7174,"29453":6323,"29454":3,"29455":11908,"29456":3660,"29457":5181,"29458":5374,"29459":7830,"29460":2719,"29461":2746,"29462":10571,"29463":12345,"29464":14418,"29465":10273,"29466":2761,"29467":12159,"29468":6227,"29469":10350,"29470":14852,"29471":8771,"29472":13806,"29473":4820,"29474":14357,"29475":13810,"29476":2927,"29477":13245,"29478":2192,"29479":8654,"29480":14095,"29481":2487,"29482":7749,"29483":9366,"29484":2690,"29485":9030,"29486":5712,"29487":2339,"29488":14464,"29489":4848,"29490":3008,"29491":6362,"29492":717,"29493":312,"29494":1334,"29495":13228,"29496":3522,"29497":14965,"29498":3191,"29499":6306,"29500":4381,"29501":14724,"29502":10289,"29503":11717,"29504":8027,"29505":5572,"29506":4626,"29507":6984,"29508":6659,"29509":13077,"29510":9002,"29511":3884,"29512":7094,"29513":7739,"29514":13222,"29515":10514,"29516":10906,"29517":9997,"29518":6479,"29519":14612,"29520":13392,"29521":13233,"29522":9261,"29523":11886,"29524":3877,"29525":4000,"29526":6836,"29527":10496,"29528":5530,"29529":12138,"29530":2745,"29531":9466,"29532":4069,"29533":15025,"29534":13767,"29535":5988,"29536":5987,"29537":6616,"29538":3112,"29539":6409,"29540":1914,"29541":13506,"29542":4006,"29543":4486,"29544":13312,"29545":640,"29546":2618,"29547":11683,"29548":3984,"29549":9792,"29550":3860,"29551":4536,"29552":7738,"29553":14866,"29554":5292,"29555":7271,"29556":11196,"29557":9563,"29558":8554,"29559":3858,"29560":3427,"29561":8541,"29562":7738,"29563":8839,"29564":2994,"29565":10566,"29566":9389,"29567":4241,"29568":10372,"29569":10050,"29570":10452,"29571":7054,"29572":4917,"29573":1750,"29574":10114,"29575":2212,"29576":6476,"29577":11215,"29578":11251,"29579":11071,"29580":3338,"29581":13121,"29582":5922,"29583":1980,"29584":9180,"29585":11821,"29586":7435,"29587":15000,"29588":4305,"29589":3762,"29590":419,"29591":2386,"29592":2834,"29593":2935,"29594":5518,"29595":11383,"29596":4555,"29597":5166,"29598":9208,"29599":12567,"29600":9385,"29601":4238,"29602":14368,"29603":13598,"29604":5937,"29605":9717,"29606":11392,"29607":13225,"29608":14439,"29609":2077,"29610":8623,"29611":10704,"29612":3555,"29613":3820,"29614":3392,"29615":1296,"29616":5925,"29617":10539,"29618":2878,"29619":3149,"29620":7918,"29621":3265,"29622":9457,"29623":13025,"29624":13413,"29625":2232,"29626":13886,"29627":4660,"29628":10360,"29629":2137,"29630":345,"29631":14951,"29632":15145,"29633":8182,"29634":12493,"29635":9400,"29636":6316,"29637":11558,"29638":12866,"29639":8933,"29640":3372,"29641":12262,"29642":4976,"29643":981,"29644":3403,"29645":10008,"29646":732,"29647":807,"29648":11525,"29649":1695,"29650":488,"29651":9793,"29652":11218,"29653":192,"29654":12442,"29655":6653,"29656":12438,"29657":13800,"29658":1210,"29659":14145,"29660":10079,"29661":12047,"29662":1428,"29663":786,"29664":4621,"29665":12076,"29666":1969,"29667":4803,"29668":1918,"29669":12590,"29670":13565,"29671":13859,"29672":2014,"29673":4738,"29674":6022,"29675":13538,"29676":13264,"29677":14246,"29678":2893,"29679":4115,"29680":7477,"29681":2832,"29682":2558,"29683":1218,"29684":6494,"29685":5172,"29686":9787,"29687":2450,"29688":9800,"29689":10816,"29690":127,"29691":528,"29692":3755,"29693":13203,"29694":12701,"29695":2072,"29696":4783,"29697":11888,"29698":5007,"29699":14513,"29700":7609,"29701":12234,"29702":197,"29703":1242,"29704":13394,"29705":1147,"29706":3718,"29707":1066,"29708":8078,"29709":7812,"29710":12366,"29711":13918,"29712":10630,"29713":13672,"29714":478,"29715":176,"29716":3491,"29717":13799,"29718":4341,"29719":9799,"29720":11430,"29721":14018,"29722":5796,"29723":1403,"29724":13374,"29725":3674,"29726":4244,"29727":9035,"29728":5451,"29729":6429,"29730":6765,"29731":2189,"29732":10054,"29733":5759,"29734":1402,"29735":3658,"29736":10725,"29737":2809,"29738":1960,"29739":12699,"29740":9465,"29741":8446,"29742":12135,"29743":2212,"29744":11177,"29745":708,"29746":6188,"29747":4358,"29748":12154,"29749":5794,"29750":8936,"29751":4806,"29752":1831,"29753":5913,"29754":14303,"29755":8722,"29756":8921,"29757":165,"29758":4067,"29759":12624,"29760":11887,"29761":12727,"29762":13050,"29763":13559,"29764":4898,"29765":5421,"29766":10957,"29767":8469,"29768":459,"29769":2990,"29770":12569,"29771":13592,"29772":3663,"29773":12586,"29774":12109,"29775":4647,"29776":13699,"29777":14210,"29778":13910,"29779":15094,"29780":12122,"29781":2038,"29782":4686,"29783":9178,"29784":4371,"29785":7622,"29786":5901,"29787":2335,"29788":2355,"29789":13654,"29790":6814,"29791":2687,"29792":6651,"29793":8251,"29794":804,"29795":5087,"29796":11367,"29797":7780,"29798":3772,"29799":3310,"29800":12342,"29801":11070,"29802":5938,"29803":2118,"29804":14915,"29805":14060,"29806":13535,"29807":14338,"29808":11905,"29809":12652,"29810":6573,"29811":13926,"29812":12366,"29813":13777,"29814":14528,"29815":9155,"29816":11286,"29817":8682,"29818":13358,"29819":5800,"29820":13887,"29821":1829,"29822":10245,"29823":11997,"29824":1942,"29825":10049,"29826":4132,"29827":15096,"29828":13341,"29829":3517,"29830":8131,"29831":13560,"29832":12156,"29833":10105,"29834":1968,"29835":4339,"29836":9631,"29837":1332,"29838":12597,"29839":1453,"29840":6169,"29841":711,"29842":7704,"29843":7271,"29844":3988,"29845":6322,"29846":4528,"29847":3810,"29848":6776,"29849":14783,"29850":12717,"29851":12088,"29852":13933,"29853":3660,"29854":4422,"29855":8792,"29856":1745,"29857":3339,"29858":10365,"29859":1591,"29860":2290,"29861":14296,"29862":6971,"29863":6273,"29864":5397,"29865":5100,"29866":5970,"29867":14769,"29868":6234,"29869":3150,"29870":7925,"29871":9769,"29872":9078,"29873":4280,"29874":3114,"29875":2668,"29876":13651,"29877":3147,"29878":10889,"29879":5188,"29880":4827,"29881":10630,"29882":8776,"29883":7719,"29884":13907,"29885":6933,"29886":2503,"29887":6880,"29888":14316,"29889":67,"29890":3473,"29891":3959,"29892":3174,"29893":7941,"29894":1058,"29895":4960,"29896":6806,"29897":8772,"29898":2728,"29899":11736,"29900":9152,"29901":5908,"29902":15134,"29903":13331,"29904":8611,"29905":1992,"29906":5328,"29907":7879,"29908":3237,"29909":7747,"29910":4727,"29911":5188,"29912":6793,"29913":3693,"29914":14756,"29915":9453,"29916":2192,"29917":5391,"29918":385,"29919":10233,"29920":10901,"29921":5246,"29922":12963,"29923":6115,"29924":1526,"29925":14909,"29926":9250,"29927":2719,"29928":2771,"29929":6942,"29930":3930,"29931":14511,"29932":8465,"29933":5009,"29934":4408,"29935":6288,"29936":7534,"29937":12872,"29938":8180,"29939":3424,"29940":580,"29941":12076,"29942":4378,"29943":2222,"29944":3563,"29945":5675,"29946":4493,"29947":8776,"29948":12618,"29949":13415,"29950":10429,"29951":10675,"29952":2609,"29953":8984,"29954":6910,"29955":3914,"29956":14515,"29957":19,"29958":1829,"29959":14249,"29960":12599,"29961":10459,"29962":5748,"29963":7658,"29964":10711,"29965":13502,"29966":8337,"29967":1708,"29968":5680,"29969":5866,"29970":13302,"29971":14565,"29972":1818,"29973":9580,"29974":9871,"29975":8382,"29976":3304,"29977":1562,"29978":14178,"29979":523,"29980":5908,"29981":13803,"29982":13284,"29983":1577,"29984":2476,"29985":8290,"29986":1866,"29987":1742,"29988":5050,"29989":14993,"29990":10789,"29991":12575,"29992":13380,"29993":12858,"29994":2538,"29995":301,"29996":3940,"29997":340,"29998":13103,"29999":3307,"30000":4442,"30001":6575,"30002":3700,"30003":639,"30004":2272,"30005":14053,"30006":9076,"30007":3336,"30008":2821,"30009":5584,"30010":5565,"30011":10888,"30012":9573,"30013":9274,"30014":10838,"30015":1110,"30016":8412,"30017":825,"30018":14858,"30019":6858,"30020":5943,"30021":2960,"30022":2515,"30023":5238,"30024":12408,"30025":8787,"30026":7575,"30027":14871,"30028":390,"30029":7194,"30030":2177,"30031":1004,"30032":2512,"30033":6921,"30034":2292,"30035":14745,"30036":5627,"30037":15101,"30038":2236,"30039":6763,"30040":3315,"30041":11306,"30042":13876,"30043":7667,"30044":10587,"30045":5244,"30046":14650,"30047":12595,"30048":4947,"30049":14660,"30050":1829,"30051":1662,"30052":1005,"30053":289,"30054":7773,"30055":4375,"30056":5324,"30057":11145,"30058":8471,"30059":6429,"30060":14396,"30061":1822,"30062":1271,"30063":8416,"30064":4283,"30065":825,"30066":6342,"30067":9908,"30068":12276,"30069":4936,"30070":4846,"30071":11815,"30072":8714,"30073":6273,"30074":12937,"30075":1133,"30076":5014,"30077":5094,"30078":4965,"30079":9106,"30080":6540,"30081":9125,"30082":10700,"30083":1189,"30084":3555,"30085":2618,"30086":3521,"30087":7509,"30088":11846,"30089":1336,"30090":11298,"30091":3373,"30092":7054,"30093":14671,"30094":1129,"30095":11943,"30096":1009,"30097":7858,"30098":2342,"30099":13871,"30100":3778,"30101":14491,"30102":6669,"30103":14451,"30104":4836,"30105":11241,"30106":3617,"30107":6760,"30108":8640,"30109":5392,"30110":10907,"30111":4881,"30112":11220,"30113":13625,"30114":12712,"30115":11376,"30116":9828,"30117":1260,"30118":14517,"30119":3137,"30120":13089,"30121":5058,"30122":7386,"30123":2129,"30124":5126,"30125":12402,"30126":12839,"30127":529,"30128":12053,"30129":2114,"30130":446,"30131":2225,"30132":3003,"30133":7005,"30134":14054,"30135":10262,"30136":3871,"30137":11567,"30138":7586,"30139":8856,"30140":10778,"30141":10345,"30142":8440,"30143":6311,"30144":514,"30145":1696,"30146":882,"30147":13794,"30148":10653,"30149":4349,"30150":10314,"30151":9767,"30152":6301,"30153":7860,"30154":839,"30155":10589,"30156":6518,"30157":1836,"30158":9062,"30159":9666,"30160":7804,"30161":1909,"30162":6046,"30163":13647,"30164":4023,"30165":455,"30166":3045,"30167":12248,"30168":13821,"30169":1217,"30170":8200,"30171":1889,"30172":4926,"30173":10346,"30174":6638,"30175":6459,"30176":1439,"30177":861,"30178":6162,"30179":6522,"30180":8794,"30181":1339,"30182":9888,"30183":9014,"30184":11668,"30185":11400,"30186":13068,"30187":9790,"30188":12718,"30189":871,"30190":3723,"30191":5027,"30192":106,"30193":7227,"30194":13633,"30195":8240,"30196":9696,"30197":5566,"30198":5841,"30199":11980,"30200":5253,"30201":13145,"30202":11665,"30203":4219,"30204":5517,"30205":5281,"30206":6924,"30207":5043,"30208":7841,"30209":10588,"30210":365,"30211":4523,"30212":1031,"30213":51,"30214":11285,"30215":11030,"30216":7648,"30217":1902,"30218":2850,"30219":3601,"30220":8507,"30221":14267,"30222":12553,"30223":9922,"30224":909,"30225":7196,"30226":11017,"30227":7625,"30228":10731,"30229":952,"30230":1123,"30231":600,"30232":11046,"30233":4251,"30234":6421,"30235":5778,"30236":10824,"30237":10624,"30238":3165,"30239":7901,"30240":14028,"30241":5358,"30242":13544,"30243":2793,"30244":10799,"30245":1112,"30246":12028,"30247":8729,"30248":7061,"30249":14869,"30250":7371,"30251":409,"30252":2321,"30253":1512,"30254":11655,"30255":4587,"30256":5549,"30257":13567,"30258":7687,"30259":232,"30260":9037,"30261":6514,"30262":11742,"30263":462,"30264":3527,"30265":1848,"30266":5222,"30267":859,"30268":2413,"30269":13589,"30270":3571,"30271":9016,"30272":14516,"30273":1245,"30274":1380,"30275":10611,"30276":8901,"30277":14892,"30278":14289,"30279":13181,"30280":13109,"30281":10435,"30282":6603,"30283":12724,"30284":12040,"30285":9647,"30286":729,"30287":8600,"30288":14082,"30289":8152,"30290":6674,"30291":13709,"30292":5828,"30293":14570,"30294":11509,"30295":13025,"30296":10760,"30297":3227,"30298":10499,"30299":6246,"30300":3258,"30301":12093,"30302":14312,"30303":6193,"30304":14537,"30305":1563,"30306":1743,"30307":4164,"30308":7722,"30309":937,"30310":3667,"30311":10436,"30312":8720,"30313":8265,"30314":13689,"30315":12246,"30316":1012,"30317":3167,"30318":5433,"30319":5629,"30320":746,"30321":11254,"30322":2803,"30323":10004,"30324":356,"30325":10692,"30326":1526,"30327":14566,"30328":8576,"30329":14186,"30330":13479,"30331":4630,"30332":6382,"30333":13304,"30334":3500,"30335":5801,"30336":12228,"30337":7312,"30338":11463,"30339":6184,"30340":14800,"30341":13024,"30342":4292,"30343":11041,"30344":6833,"30345":6773,"30346":3437,"30347":6488,"30348":944,"30349":3841,"30350":2622,"30351":7186,"30352":12456,"30353":12146,"30354":3402,"30355":3643,"30356":11615,"30357":7940,"30358":9336,"30359":2459,"30360":3341,"30361":6470,"30362":3568,"30363":7404,"30364":5321,"30365":1492,"30366":14074,"30367":7169,"30368":12293,"30369":4912,"30370":3993,"30371":13678,"30372":3522,"30373":10403,"30374":10549,"30375":1879,"30376":10873,"30377":12991,"30378":11531,"30379":3332,"30380":5703,"30381":105,"30382":5203,"30383":303,"30384":839,"30385":1048,"30386":4624,"30387":2180,"30388":2181,"30389":392,"30390":1555,"30391":9170,"30392":7749,"30393":14075,"30394":1395,"30395":11586,"30396":2853,"30397":1598,"30398":4242,"30399":14190,"30400":8439,"30401":5445,"30402":11539,"30403":9202,"30404":11210,"30405":14192,"30406":9062,"30407":9544,"30408":2310,"30409":1399,"30410":5744,"30411":14887,"30412":13705,"30413":6181,"30414":504,"30415":8310,"30416":4480,"30417":3869,"30418":11361,"30419":12172,"30420":5966,"30421":5745,"30422":10327,"30423":12140,"30424":7035,"30425":7933,"30426":12093,"30427":10132,"30428":14733,"30429":12308,"30430":10118,"30431":7253,"30432":10535,"30433":6808,"30434":14676,"30435":8712,"30436":3646,"30437":6705,"30438":2500,"30439":725,"30440":8549,"30441":10560,"30442":1936,"30443":7279,"30444":11948,"30445":9511,"30446":5545,"30447":10617,"30448":8878,"30449":5451,"30450":7347,"30451":13720,"30452":10160,"30453":11230,"30454":4761,"30455":12209,"30456":3857,"30457":8952,"30458":1434,"30459":12226,"30460":13848,"30461":5958,"30462":11618,"30463":8007,"30464":12366,"30465":2948,"30466":3593,"30467":4394,"30468":5070,"30469":11054,"30470":6894,"30471":8766,"30472":2398,"30473":4743,"30474":2555,"30475":7683,"30476":1410,"30477":13819,"30478":1144,"30479":6731,"30480":6148,"30481":13639,"30482":7131,"30483":5410,"30484":9249,"30485":8096,"30486":2571,"30487":4735,"30488":5032,"30489":1165,"30490":7049,"30491":5314,"30492":6714,"30493":12036,"30494":12820,"30495":8283,"30496":828,"30497":8765,"30498":9030,"30499":9801,"30500":4179,"30501":3774,"30502":5986,"30503":1524,"30504":9675,"30505":2857,"30506":5456,"30507":4213,"30508":5939,"30509":3022,"30510":10455,"30511":9956,"30512":4172,"30513":4346,"30514":1907,"30515":453,"30516":12029,"30517":8957,"30518":11950,"30519":9945,"30520":14253,"30521":5199,"30522":9566,"30523":9170,"30524":2345,"30525":10466,"30526":11358,"30527":963,"30528":11061,"30529":14014,"30530":1615,"30531":5685,"30532":2525,"30533":7175,"30534":764,"30535":3153,"30536":9677,"30537":9554,"30538":13015,"30539":8008,"30540":3341,"30541":4329,"30542":8273,"30543":8947,"30544":6252,"30545":9052,"30546":8519,"30547":11936,"30548":11498,"30549":2906,"30550":3352,"30551":7739,"30552":14997,"30553":5562,"30554":11897,"30555":10864,"30556":9555,"30557":1720,"30558":12675,"30559":6077,"30560":12301,"30561":6883,"30562":14529,"30563":4782,"30564":396,"30565":2461,"30566":7948,"30567":11840,"30568":8046,"30569":8271,"30570":12568,"30571":7216,"30572":2537,"30573":4134,"30574":9937,"30575":5773,"30576":1782,"30577":15138,"30578":5458,"30579":14336,"30580":5924,"30581":151,"30582":9602,"30583":6431,"30584":4012,"30585":14977,"30586":3103,"30587":12031,"30588":9264,"30589":10706,"30590":7325,"30591":13425,"30592":5145,"30593":9955,"30594":9927,"30595":10964,"30596":5337,"30597":3319,"30598":2752,"30599":12504,"30600":14633,"30601":7206,"30602":3562,"30603":1017,"30604":2987,"30605":11092,"30606":2245,"30607":9657,"30608":8762,"30609":13982,"30610":6110,"30611":10134,"30612":3008,"30613":1912,"30614":8733,"30615":7218,"30616":10542,"30617":5716,"30618":1437,"30619":12492,"30620":2,"30621":9633,"30622":14709,"30623":12826,"30624":271,"30625":13173,"30626":6102,"30627":5515,"30628":8015,"30629":5184,"30630":14332,"30631":10362,"30632":10511,"30633":2302,"30634":27,"30635":7674,"30636":3764,"30637":13872,"30638":8535,"30639":4939,"30640":3846,"30641":3696,"30642":9451,"30643":10099,"30644":1538,"30645":14993,"30646":8182,"30647":9093,"30648":364,"30649":7121,"30650":6316,"30651":10694,"30652":9944,"30653":2795,"30654":243,"30655":7996,"30656":5496,"30657":5279,"30658":8591,"30659":1913,"30660":3912,"30661":354,"30662":11898,"30663":8228,"30664":13167,"30665":2037,"30666":10108,"30667":13148,"30668":6528,"30669":7829,"30670":2861,"30671":11720,"30672":9818,"30673":764,"30674":10068,"30675":3411,"30676":10646,"30677":9460,"30678":1180,"30679":3367,"30680":5911,"30681":6503,"30682":2834,"30683":10374,"30684":14228,"30685":3080,"30686":1738,"30687":3367,"30688":10662,"30689":3915,"30690":8956,"30691":3448,"30692":4076,"30693":2608,"30694":8437,"30695":13231,"30696":6465,"30697":8519,"30698":8406,"30699":6906,"30700":7446,"30701":3040,"30702":2703,"30703":15117,"30704":3165,"30705":4503,"30706":11354,"30707":12379,"30708":6648,"30709":7823,"30710":5773,"30711":12217,"30712":8189,"30713":9115,"30714":2163,"30715":12818,"30716":11708,"30717":13404,"30718":12841,"30719":7204,"30720":699,"30721":11395,"30722":417,"30723":12304,"30724":6889,"30725":3020,"30726":13970,"30727":14297,"30728":15015,"30729":11751,"30730":563,"30731":8110,"30732":11891,"30733":13179,"30734":12348,"30735":13258,"30736":11340,"30737":7810,"30738":10395,"30739":1256,"30740":864,"30741":15020,"30742":5910,"30743":4938,"30744":13675,"30745":10904,"30746":14327,"30747":6601,"30748":7388,"30749":9487,"30750":5567,"30751":5698,"30752":4866,"30753":12443,"30754":14814,"30755":4483,"30756":3100,"30757":5903,"30758":4970,"30759":13572,"30760":3475,"30761":572,"30762":9003,"30763":15127,"30764":10348,"30765":2452,"30766":12074,"30767":3267,"30768":10561,"30769":11706,"30770":6956,"30771":4531,"30772":1680,"30773":9220,"30774":10613,"30775":1456,"30776":1824,"30777":13274,"30778":6593,"30779":9732,"30780":3334,"30781":8247,"30782":8231,"30783":14837,"30784":14863,"30785":10853,"30786":13375,"30787":5035,"30788":532,"30789":3846,"30790":10166,"30791":9680,"30792":14613,"30793":13694,"30794":4102,"30795":15107,"30796":12973,"30797":7892,"30798":10566,"30799":13347,"30800":14182,"30801":4549,"30802":2364,"30803":10112,"30804":8077,"30805":15014,"30806":3099,"30807":9391,"30808":3707,"30809":2103,"30810":8508,"30811":8404,"30812":7248,"30813":4106,"30814":1134,"30815":2380,"30816":3331,"30817":2224,"30818":774,"30819":2027,"30820":14586,"30821":3739,"30822":6672,"30823":9155,"30824":14051,"30825":1806,"30826":2447,"30827":9111,"30828":11997,"30829":8795,"30830":3161,"30831":3063,"30832":5250,"30833":7676,"30834":1433,"30835":9966,"30836":5951,"30837":8512,"30838":8090,"30839":486,"30840":14070,"30841":12584,"30842":13747,"30843":12834,"30844":8533,"30845":12750,"30846":10806,"30847":1370,"30848":7551,"30849":992,"30850":11839,"30851":8278,"30852":12091,"30853":6681,"30854":1629,"30855":4021,"30856":9806,"30857":13220,"30858":721,"30859":14759,"30860":12552,"30861":2411,"30862":2764,"30863":6249,"30864":570,"30865":14525,"30866":7439,"30867":7580,"30868":4231,"30869":11465,"30870":8066,"30871":7626,"30872":6922,"30873":11663,"30874":9064,"30875":4762,"30876":13849,"30877":2254,"30878":5297,"30879":904,"30880":15089,"30881":2709,"30882":8777,"30883":5991,"30884":5363,"30885":7491,"30886":5877,"30887":7726,"30888":906,"30889":5402,"30890":6850,"30891":997,"30892":12884,"30893":11134,"30894":2140,"30895":3964,"30896":13140,"30897":14250,"30898":13898,"30899":9485,"30900":10005,"30901":4506,"30902":5983,"30903":6187,"30904":2609,"30905":13589,"30906":1358,"30907":14330,"30908":12059,"30909":3280,"30910":741,"30911":6904,"30912":10957,"30913":12092,"30914":335,"30915":312,"30916":4508,"30917":1385,"30918":15116,"30919":1246,"30920":13274,"30921":1515,"30922":6881,"30923":14389,"30924":8218,"30925":8388,"30926":11366,"30927":2689,"30928":2432,"30929":6100,"30930":11523,"30931":8688,"30932":9599,"30933":10381,"30934":14247,"30935":1863,"30936":350,"30937":3172,"30938":6106,"30939":12160,"30940":10243,"30941":14647,"30942":14257,"30943":6990,"30944":11123,"30945":7945,"30946":3394,"30947":10859,"30948":14261,"30949":10661,"30950":1215,"30951":10218,"30952":1027,"30953":1543,"30954":2202,"30955":7591,"30956":9782,"30957":7347,"30958":818,"30959":12284,"30960":4918,"30961":14034,"30962":341,"30963":8880,"30964":11514,"30965":14331,"30966":11632,"30967":10975,"30968":10811,"30969":6520,"30970":14614,"30971":2162,"30972":4643,"30973":6792,"30974":4497,"30975":4520,"30976":2089,"30977":14310,"30978":6737,"30979":14125,"30980":7316,"30981":11162,"30982":5923,"30983":11482,"30984":3598,"30985":7721,"30986":9011,"30987":11653,"30988":5415,"30989":1366,"30990":8592,"30991":8140,"30992":8253,"30993":3473,"30994":2106,"30995":14979,"30996":12840,"30997":5755,"30998":15077,"30999":4942,"31000":10617,"31001":1993,"31002":2872,"31003":14958,"31004":5887,"31005":909,"31006":10137,"31007":1769,"31008":1128,"31009":11785,"31010":12541,"31011":3701,"31012":1541,"31013":11139,"31014":4483,"31015":9979,"31016":9533,"31017":3837,"31018":10058,"31019":2118,"31020":705,"31021":227,"31022":8885,"31023":1405,"31024":37,"31025":5274,"31026":7717,"31027":365,"31028":222,"31029":422,"31030":3142,"31031":4362,"31032":3722,"31033":9599,"31034":12817,"31035":7574,"31036":2681,"31037":13545,"31038":10942,"31039":11271,"31040":9816,"31041":12553,"31042":610,"31043":13640,"31044":3217,"31045":12806,"31046":12150,"31047":7505,"31048":4887,"31049":10542,"31050":453,"31051":1962,"31052":1132,"31053":9422,"31054":11689,"31055":14296,"31056":858,"31057":3985,"31058":4808,"31059":379,"31060":4275,"31061":14769,"31062":2659,"31063":14431,"31064":14450,"31065":13057,"31066":14011,"31067":7810,"31068":3921,"31069":9999,"31070":14866,"31071":674,"31072":9362,"31073":2087,"31074":2372,"31075":6147,"31076":12451,"31077":15122,"31078":1335,"31079":11936,"31080":7218,"31081":7509,"31082":2120,"31083":4856,"31084":12917,"31085":7966,"31086":5638,"31087":11713,"31088":8544,"31089":11611,"31090":1175,"31091":6096,"31092":12343,"31093":10184,"31094":10427,"31095":8672,"31096":13280,"31097":8794,"31098":14794,"31099":1866,"31100":458,"31101":3726,"31102":11553,"31103":13643,"31104":12951,"31105":4416,"31106":11885,"31107":14258,"31108":11063,"31109":5511,"31110":2158,"31111":12624,"31112":10517,"31113":1898,"31114":9459,"31115":5253,"31116":11495,"31117":2574,"31118":14915,"31119":10606,"31120":11620,"31121":3150,"31122":7834,"31123":13871,"31124":7329,"31125":518,"31126":10124,"31127":1196,"31128":3906,"31129":11722,"31130":10858,"31131":5327,"31132":3387,"31133":1581,"31134":8954,"31135":14348,"31136":11304,"31137":8441,"31138":9163,"31139":11392,"31140":8219,"31141":3646,"31142":4827,"31143":3113,"31144":9767,"31145":8585,"31146":11006,"31147":56,"31148":11512,"31149":4078,"31150":10017,"31151":10385,"31152":2004,"31153":4751,"31154":713,"31155":760,"31156":2521,"31157":14651,"31158":1409,"31159":12427,"31160":9548,"31161":7855,"31162":1324,"31163":1329,"31164":5246,"31165":13014,"31166":2523,"31167":4142,"31168":12830,"31169":7271,"31170":5474,"31171":9946,"31172":14510,"31173":12230,"31174":10334,"31175":7242,"31176":5351,"31177":4730,"31178":10135,"31179":9736,"31180":10417,"31181":4527,"31182":4265,"31183":3404,"31184":6015,"31185":9186,"31186":4320,"31187":4516,"31188":10239,"31189":4662,"31190":1203,"31191":6764,"31192":14450,"31193":2775,"31194":2346,"31195":2196,"31196":2086,"31197":11592,"31198":7859,"31199":9857,"31200":6420,"31201":7164,"31202":5553,"31203":163,"31204":11840,"31205":8622,"31206":12922,"31207":9456,"31208":2048,"31209":11803,"31210":9861,"31211":8142,"31212":5156,"31213":1421,"31214":4349,"31215":8680,"31216":6376,"31217":13599,"31218":7123,"31219":13801,"31220":13688,"31221":13199,"31222":11517,"31223":13819,"31224":7860,"31225":5799,"31226":5102,"31227":7377,"31228":6670,"31229":9887,"31230":927,"31231":14379,"31232":3439,"31233":1496,"31234":13940,"31235":13798,"31236":13746,"31237":8772,"31238":646,"31239":7411,"31240":8820,"31241":5176,"31242":3734,"31243":4935,"31244":13142,"31245":6952,"31246":15111,"31247":598,"31248":3608,"31249":7245,"31250":13533,"31251":9569,"31252":8757,"31253":9198,"31254":10933,"31255":13418,"31256":2398,"31257":1641,"31258":7535,"31259":14814,"31260":14262,"31261":13462,"31262":9446,"31263":12356,"31264":675,"31265":9212,"31266":13595,"31267":11663,"31268":14786,"31269":9055,"31270":2793,"31271":2122,"31272":5858,"31273":8134,"31274":2067,"31275":6928,"31276":7158,"31277":11386,"31278":5537,"31279":14119,"31280":1673,"31281":8757,"31282":2378,"31283":7307,"31284":4045,"31285":12763,"31286":8860,"31287":10696,"31288":1011,"31289":12601,"31290":8776,"31291":8565,"31292":5268,"31293":5574,"31294":4087,"31295":6234,"31296":10136,"31297":6375,"31298":1020,"31299":11551,"31300":9160,"31301":11624,"31302":4452,"31303":9494,"31304":8803,"31305":496,"31306":13468,"31307":1782,"31308":5712,"31309":13261,"31310":8374,"31311":9037,"31312":3312,"31313":9554,"31314":1385,"31315":7079,"31316":13563,"31317":7169,"31318":6923,"31319":13175,"31320":2657,"31321":5276,"31322":5700,"31323":1737,"31324":1116,"31325":3645,"31326":10838,"31327":3777,"31328":8289,"31329":11835,"31330":7522,"31331":3803,"31332":13328,"31333":10236,"31334":214,"31335":14202,"31336":11698,"31337":5197,"31338":2127,"31339":11433,"31340":11270,"31341":11483,"31342":10122,"31343":14925,"31344":11825,"31345":2710,"31346":8633,"31347":9140,"31348":5770,"31349":7208,"31350":14196,"31351":3674,"31352":9306,"31353":14111,"31354":1587,"31355":12369,"31356":10963,"31357":5343,"31358":11466,"31359":10343,"31360":6515,"31361":1471,"31362":3264,"31363":11007,"31364":7442,"31365":14209,"31366":12126,"31367":7267,"31368":13110,"31369":12749,"31370":2700,"31371":12774,"31372":9072,"31373":4279,"31374":11043,"31375":15015,"31376":13287,"31377":13819,"31378":4146,"31379":3648,"31380":1716,"31381":14788,"31382":4842,"31383":4307,"31384":3487,"31385":13628,"31386":10679,"31387":3121,"31388":9826,"31389":11733,"31390":4393,"31391":3816,"31392":2520,"31393":11186,"31394":13229,"31395":6769,"31396":5074,"31397":12858,"31398":11762,"31399":13376,"31400":802,"31401":8143,"31402":8729,"31403":3715,"31404":5519,"31405":12233,"31406":3525,"31407":12942,"31408":675,"31409":7328,"31410":6071,"31411":1472,"31412":3520,"31413":5314,"31414":10925,"31415":4104,"31416":10983,"31417":8733,"31418":9643,"31419":8448,"31420":3644,"31421":1596,"31422":5469,"31423":13139,"31424":5902,"31425":12139,"31426":2380,"31427":8237,"31428":13321,"31429":9001,"31430":6735,"31431":11160,"31432":12478,"31433":8886,"31434":6634,"31435":887,"31436":4620,"31437":14667,"31438":5330,"31439":9058,"31440":994,"31441":12146,"31442":5942,"31443":14320,"31444":693,"31445":633,"31446":14648,"31447":11744,"31448":7481,"31449":14885,"31450":334,"31451":14327,"31452":8584,"31453":12159,"31454":11825,"31455":9460,"31456":9872,"31457":6984,"31458":8439,"31459":4540,"31460":8236,"31461":9763,"31462":10064,"31463":4411,"31464":10321,"31465":11360,"31466":2114,"31467":6028,"31468":5745,"31469":14972,"31470":3940,"31471":11264,"31472":11593,"31473":3663,"31474":4595,"31475":4294,"31476":5568,"31477":2503,"31478":2819,"31479":1518,"31480":6130,"31481":6196,"31482":9581,"31483":13871,"31484":12154,"31485":9107,"31486":5158,"31487":3210,"31488":2776,"31489":5723,"31490":8336,"31491":9369,"31492":6392,"31493":7273,"31494":8075,"31495":1725,"31496":9853,"31497":1286,"31498":13200,"31499":13014,"31500":11037,"31501":513,"31502":12475,"31503":9297,"31504":11431,"31505":2481,"31506":2200,"31507":7189,"31508":14284,"31509":6381,"31510":1463,"31511":2135,"31512":2949,"31513":7349,"31514":4760,"31515":1789,"31516":14548,"31517":14064,"31518":14062,"31519":3768,"31520":8637,"31521":3527,"31522":12702,"31523":7126,"31524":2786,"31525":5158,"31526":14488,"31527":6509,"31528":7261,"31529":6472,"31530":587,"31531":4363,"31532":2629,"31533":11735,"31534":2304,"31535":3665,"31536":5013,"31537":1641,"31538":13656,"31539":8005,"31540":9780,"31541":2910,"31542":5686,"31543":13074,"31544":177,"31545":10512,"31546":1126,"31547":6204,"31548":13663,"31549":11230,"31550":11939,"31551":3225,"31552":6201,"31553":10122,"31554":5942,"31555":6031,"31556":5696,"31557":5375,"31558":14849,"31559":8065,"31560":7827,"31561":4125,"31562":4175,"31563":5304,"31564":3516,"31565":1667,"31566":8425,"31567":11516,"31568":4353,"31569":12766,"31570":7304,"31571":1392,"31572":12487,"31573":6073,"31574":13531,"31575":2890,"31576":4221,"31577":4983,"31578":9462,"31579":5235,"31580":7526,"31581":7343,"31582":1080,"31583":12871,"31584":3647,"31585":5660,"31586":6488,"31587":10301,"31588":12423,"31589":995,"31590":13862,"31591":11481,"31592":1300,"31593":13383,"31594":5001,"31595":15010,"31596":5756,"31597":11277,"31598":1459,"31599":12681,"31600":3425,"31601":5918,"31602":6209,"31603":11109,"31604":2945,"31605":1728,"31606":12511,"31607":876,"31608":3947,"31609":10327,"31610":12829,"31611":2128,"31612":12830,"31613":4187,"31614":1834,"31615":10848,"31616":3267,"31617":1875,"31618":733,"31619":8470,"31620":3080,"31621":14438,"31622":13213,"31623":11778,"31624":4233,"31625":392,"31626":6976,"31627":8268,"31628":1238,"31629":12281,"31630":7588,"31631":5132,"31632":11276,"31633":389,"31634":5773,"31635":15107,"31636":14975,"31637":5657,"31638":2526,"31639":14809,"31640":4437,"31641":8308,"31642":13294,"31643":7053,"31644":5313,"31645":11641,"31646":13090,"31647":5384,"31648":14813,"31649":2663,"31650":6013,"31651":3482,"31652":11043,"31653":10544,"31654":7066,"31655":8777,"31656":12018,"31657":10978,"31658":10678,"31659":6748,"31660":13151,"31661":7315,"31662":9989,"31663":7030,"31664":11656,"31665":2298,"31666":5980,"31667":6180,"31668":12185,"31669":8906,"31670":917,"31671":4967,"31672":14824,"31673":8663,"31674":1046,"31675":7610,"31676":12715,"31677":9269,"31678":1806,"31679":3261,"31680":11531,"31681":13712,"31682":11508,"31683":1125,"31684":7093,"31685":1185,"31686":13855,"31687":12959,"31688":13074,"31689":8679,"31690":8271,"31691":7141,"31692":1041,"31693":12829,"31694":225,"31695":11225,"31696":5736,"31697":10235,"31698":12455,"31699":6111,"31700":11707,"31701":11566,"31702":4279,"31703":4076,"31704":5265,"31705":5198,"31706":13894,"31707":1636,"31708":11889,"31709":9402,"31710":1931,"31711":11,"31712":13756,"31713":1515,"31714":735,"31715":2989,"31716":5632,"31717":10519,"31718":6536,"31719":10720,"31720":4334,"31721":3847,"31722":7588,"31723":8373,"31724":9858,"31725":6297,"31726":11808,"31727":5473,"31728":1285,"31729":6868,"31730":7482,"31731":4911,"31732":14138,"31733":8164,"31734":14152,"31735":7606,"31736":13369,"31737":11201,"31738":10904,"31739":4192,"31740":2406,"31741":8454,"31742":8787,"31743":7795,"31744":13484,"31745":2362,"31746":12932,"31747":12618,"31748":1973,"31749":8637,"31750":5955,"31751":4904,"31752":12189,"31753":5809,"31754":11189,"31755":6118,"31756":12966,"31757":15143,"31758":14048,"31759":4401,"31760":4506,"31761":13106,"31762":11947,"31763":5616,"31764":14074,"31765":262,"31766":4745,"31767":1050,"31768":12127,"31769":14085,"31770":3587,"31771":1603,"31772":1635,"31773":4180,"31774":9928,"31775":12917,"31776":5733,"31777":9646,"31778":14499,"31779":2102,"31780":11447,"31781":5160,"31782":3550,"31783":2993,"31784":13961,"31785":10876,"31786":1001,"31787":12834,"31788":319,"31789":6883,"31790":5463,"31791":10532,"31792":11099,"31793":14432,"31794":13310,"31795":3907,"31796":4863,"31797":1490,"31798":6703,"31799":9064,"31800":200,"31801":13834,"31802":1015,"31803":1327,"31804":3341,"31805":1516,"31806":2038,"31807":11659,"31808":14724,"31809":7977,"31810":1454,"31811":7778,"31812":11036,"31813":14700,"31814":9133,"31815":4713,"31816":14342,"31817":6345,"31818":1578,"31819":7944,"31820":6616,"31821":2817,"31822":422,"31823":3410,"31824":12470,"31825":3130,"31826":3251,"31827":14799,"31828":3810,"31829":13967,"31830":3922,"31831":1121,"31832":2300,"31833":13314,"31834":1121,"31835":313,"31836":10713,"31837":2221,"31838":7283,"31839":12450,"31840":9549,"31841":10495,"31842":10677,"31843":4686,"31844":8545,"31845":8567,"31846":14018,"31847":6565,"31848":15011,"31849":12446,"31850":4738,"31851":988,"31852":13097,"31853":5128,"31854":1632,"31855":11233,"31856":464,"31857":12583,"31858":9721,"31859":8781,"31860":12297,"31861":9998,"31862":770,"31863":13819,"31864":538,"31865":59,"31866":2653,"31867":11898,"31868":12155,"31869":14352,"31870":9909,"31871":5651,"31872":221,"31873":1945,"31874":5201,"31875":6574,"31876":4899,"31877":11487,"31878":2602,"31879":9523,"31880":11976,"31881":709,"31882":10848,"31883":15115,"31884":6219,"31885":10839,"31886":4225,"31887":2563,"31888":10245,"31889":3705,"31890":10836,"31891":10590,"31892":8062,"31893":5227,"31894":10733,"31895":9882,"31896":3392,"31897":4920,"31898":5561,"31899":3565,"31900":4376,"31901":4600,"31902":9080,"31903":47,"31904":272,"31905":3288,"31906":9065,"31907":6775,"31908":11408,"31909":9582,"31910":10115,"31911":12162,"31912":5117,"31913":7989,"31914":3039,"31915":12772,"31916":13839,"31917":11175,"31918":3690,"31919":14641,"31920":1617,"31921":1191,"31922":9148,"31923":3554,"31924":2218,"31925":13123,"31926":13441,"31927":10649,"31928":2991,"31929":2449,"31930":3437,"31931":3519,"31932":14747,"31933":912,"31934":11160,"31935":568,"31936":12227,"31937":12502,"31938":14693,"31939":9181,"31940":8541,"31941":5551,"31942":10692,"31943":5934,"31944":2764,"31945":14854,"31946":4651,"31947":1306,"31948":4056,"31949":1793,"31950":5609,"31951":14355,"31952":11768,"31953":2800,"31954":8622,"31955":3693,"31956":5915,"31957":2213,"31958":10628,"31959":8187,"31960":3940,"31961":836,"31962":13000,"31963":8626,"31964":13001,"31965":3617,"31966":9915,"31967":14053,"31968":249,"31969":6698,"31970":2966,"31971":13218,"31972":1133,"31973":2216,"31974":2838,"31975":7373,"31976":14710,"31977":7012,"31978":3085,"31979":7938,"31980":7383,"31981":12596,"31982":1366,"31983":5409,"31984":8019,"31985":2591,"31986":14410,"31987":14838,"31988":11094,"31989":13873,"31990":5757,"31991":11589,"31992":3797,"31993":7632,"31994":14238,"31995":7993,"31996":2078,"31997":1649,"31998":9013,"31999":2892,"32000":12792,"32001":12139,"32002":1350,"32003":13389,"32004":10101,"32005":9454,"32006":8972,"32007":4511,"32008":6619,"32009":11507,"32010":14712,"32011":5972,"32012":431,"32013":11704,"32014":13153,"32015":14871,"32016":5613,"32017":2873,"32018":6580,"32019":11357,"32020":10855,"32021":3984,"32022":5832,"32023":8619,"32024":14235,"32025":11136,"32026":12959,"32027":8088,"32028":6998,"32029":11138,"32030":5486,"32031":5082,"32032":12891,"32033":4813,"32034":12473,"32035":8683,"32036":8831,"32037":9364,"32038":11432,"32039":3132,"32040":9851,"32041":9693,"32042":1739,"32043":2581,"32044":7487,"32045":3207,"32046":3359,"32047":10121,"32048":4818,"32049":9828,"32050":8116,"32051":1352,"32052":12811,"32053":3571,"32054":189,"32055":11312,"32056":2899,"32057":5855,"32058":12807,"32059":3811,"32060":8643,"32061":2655,"32062":12334,"32063":12933,"32064":3075,"32065":2903,"32066":7918,"32067":4046,"32068":6822,"32069":12067,"32070":15024,"32071":7318,"32072":3309,"32073":1835,"32074":9286,"32075":12235,"32076":11673,"32077":13244,"32078":10670,"32079":614,"32080":8873,"32081":9198,"32082":12105,"32083":13534,"32084":1121,"32085":6860,"32086":8802,"32087":10991,"32088":13407,"32089":11749,"32090":6366,"32091":632,"32092":14010,"32093":8067,"32094":7919,"32095":14168,"32096":10302,"32097":4274,"32098":13394,"32099":13805,"32100":11101,"32101":14208,"32102":11902,"32103":14166,"32104":13909,"32105":3082,"32106":841,"32107":10852,"32108":13870,"32109":14368,"32110":6892,"32111":4799,"32112":14119,"32113":12303,"32114":11511,"32115":8479,"32116":4238,"32117":4428,"32118":9840,"32119":13839,"32120":5073,"32121":13380,"32122":1886,"32123":1292,"32124":12253,"32125":12297,"32126":13191,"32127":9156,"32128":5748,"32129":6502,"32130":7745,"32131":2936,"32132":2909,"32133":46,"32134":12155,"32135":14826,"32136":1088,"32137":1552,"32138":8133,"32139":9292,"32140":11520,"32141":13734,"32142":4383,"32143":9316,"32144":14119,"32145":6124,"32146":2585,"32147":11557,"32148":14674,"32149":3726,"32150":1777,"32151":10584,"32152":9100,"32153":6996,"32154":9949,"32155":6214,"32156":12500,"32157":6604,"32158":14589,"32159":897,"32160":5364,"32161":9264,"32162":71,"32163":14735,"32164":4269,"32165":9970,"32166":3344,"32167":5350,"32168":12557,"32169":4476,"32170":3830,"32171":9263,"32172":4549,"32173":11335,"32174":1154,"32175":10908,"32176":15076,"32177":4546,"32178":14754,"32179":6685,"32180":4673,"32181":14203,"32182":12082,"32183":1220,"32184":9525,"32185":9869,"32186":2455,"32187":2685,"32188":1853,"32189":9620,"32190":3700,"32191":13316,"32192":10210,"32193":12615,"32194":6037,"32195":9163,"32196":1712,"32197":2770,"32198":13078,"32199":1549,"32200":6618,"32201":14483,"32202":1052,"32203":3023,"32204":1919,"32205":2046,"32206":5295,"32207":9879,"32208":1458,"32209":9134,"32210":11377,"32211":1297,"32212":4786,"32213":11848,"32214":7219,"32215":10500,"32216":13119,"32217":5423,"32218":11469,"32219":412,"32220":11094,"32221":5643,"32222":11410,"32223":11865,"32224":13021,"32225":2791,"32226":14946,"32227":11750,"32228":5455,"32229":12909,"32230":6943,"32231":981,"32232":2098,"32233":1592,"32234":286,"32235":11503,"32236":8061,"32237":15145,"32238":14920,"32239":235,"32240":2298,"32241":4401,"32242":35,"32243":14210,"32244":597,"32245":13674,"32246":14037,"32247":11166,"32248":14128,"32249":3583,"32250":2068,"32251":5969,"32252":3937,"32253":9702,"32254":8058,"32255":2591,"32256":6337,"32257":15102,"32258":12456,"32259":936,"32260":9562,"32261":966,"32262":635,"32263":10064,"32264":9564,"32265":10379,"32266":5692,"32267":13330,"32268":12576,"32269":12346,"32270":1289,"32271":10878,"32272":261,"32273":7106,"32274":8313,"32275":6237,"32276":2378,"32277":13967,"32278":2384,"32279":5704,"32280":11843,"32281":7179,"32282":1385,"32283":13345,"32284":8820,"32285":11727,"32286":9585,"32287":5589,"32288":5959,"32289":10819,"32290":12822,"32291":5067,"32292":4725,"32293":10250,"32294":5246,"32295":14389,"32296":1574,"32297":13591,"32298":8366,"32299":7475,"32300":5066,"32301":10075,"32302":1158,"32303":7154,"32304":621,"32305":14148,"32306":13342,"32307":8355,"32308":1402,"32309":5659,"32310":7757,"32311":1140,"32312":6796,"32313":7625,"32314":783,"32315":7960,"32316":12000,"32317":13617,"32318":11834,"32319":5400,"32320":7321,"32321":4581,"32322":13035,"32323":11981,"32324":14760,"32325":12182,"32326":4358,"32327":9369,"32328":1345,"32329":9389,"32330":289,"32331":5017,"32332":5665,"32333":2090,"32334":14979,"32335":12706,"32336":14861,"32337":11408,"32338":13714,"32339":10706,"32340":295,"32341":14456,"32342":6623,"32343":5736,"32344":12156,"32345":2167,"32346":4928,"32347":7548,"32348":8519,"32349":1823,"32350":12319,"32351":1390,"32352":2154,"32353":4482,"32354":8457,"32355":13145,"32356":698,"32357":8493,"32358":11818,"32359":2946,"32360":5326,"32361":6883,"32362":12373,"32363":9206,"32364":7429,"32365":1075,"32366":2120,"32367":418,"32368":11719,"32369":10716,"32370":3404,"32371":1104,"32372":11774,"32373":6132,"32374":10348,"32375":6736,"32376":5045,"32377":14292,"32378":1220,"32379":7717,"32380":5914,"32381":9809,"32382":3397,"32383":7650,"32384":5192,"32385":8697,"32386":9748,"32387":9359,"32388":11163,"32389":3856,"32390":1131,"32391":8504,"32392":2135,"32393":2132,"32394":173,"32395":10313,"32396":5293,"32397":1635,"32398":576,"32399":8520,"32400":4487,"32401":1215,"32402":8292,"32403":2684,"32404":8725,"32405":5547,"32406":746,"32407":8191,"32408":13289,"32409":13900,"32410":4449,"32411":4762,"32412":8300,"32413":14857,"32414":442,"32415":10086,"32416":1025,"32417":7323,"32418":10218,"32419":3188,"32420":14718,"32421":1714,"32422":11266,"32423":3184,"32424":2978,"32425":251,"32426":1183,"32427":5895,"32428":14187,"32429":7263,"32430":5186,"32431":3891,"32432":13546,"32433":7088,"32434":8807,"32435":3180,"32436":2612,"32437":10969,"32438":4099,"32439":2690,"32440":12343,"32441":5057,"32442":5378,"32443":2401,"32444":8642,"32445":8936,"32446":14443,"32447":14850,"32448":11026,"32449":3754,"32450":6500,"32451":816,"32452":9673,"32453":1460,"32454":3255,"32455":3833,"32456":2254,"32457":8162,"32458":1255,"32459":13107,"32460":1677,"32461":3422,"32462":12413,"32463":14748,"32464":14176,"32465":6859,"32466":2946,"32467":10115,"32468":7191,"32469":10174,"32470":2864,"32471":6579,"32472":2615,"32473":12215,"32474":4973,"32475":9338,"32476":12053,"32477":5481,"32478":6243,"32479":1092,"32480":4473,"32481":4455,"32482":5865,"32483":10219,"32484":1469,"32485":6322,"32486":10419,"32487":5054,"32488":1964,"32489":9965,"32490":9665,"32491":2485,"32492":3386,"32493":8423,"32494":6435,"32495":6812,"32496":13206,"32497":13793,"32498":8484,"32499":815,"32500":14337,"32501":13552,"32502":2096,"32503":10876,"32504":4134,"32505":1149,"32506":11592,"32507":8623,"32508":1812,"32509":6376,"32510":7916,"32511":2108,"32512":13914,"32513":14962,"32514":3406,"32515":14565,"32516":2592,"32517":12701,"32518":11448,"32519":8515,"32520":13994,"32521":3443,"32522":9758,"32523":1554,"32524":3457,"32525":10393,"32526":13695,"32527":5792,"32528":4460,"32529":13761,"32530":13785,"32531":7455,"32532":1622,"32533":1281,"32534":12436,"32535":15028,"32536":10508,"32537":5794,"32538":10241,"32539":14568,"32540":13822,"32541":5636,"32542":4526,"32543":3517,"32544":10112,"32545":8106,"32546":11689,"32547":9970,"32548":10917,"32549":980,"32550":4581,"32551":1322,"32552":10680,"32553":6316,"32554":11640,"32555":9846,"32556":15145,"32557":9895,"32558":8565,"32559":2349,"32560":807,"32561":2444,"32562":8628,"32563":4052,"32564":5349,"32565":1374,"32566":9341,"32567":10500,"32568":5630,"32569":7991,"32570":11102,"32571":11538,"32572":8489,"32573":5134,"32574":1404,"32575":290,"32576":3903,"32577":14065,"32578":2218,"32579":12243,"32580":7363,"32581":3817,"32582":12251,"32583":14587,"32584":3266,"32585":13545,"32586":1915,"32587":9098,"32588":7228,"32589":1766,"32590":1013,"32591":7360,"32592":12077,"32593":8126,"32594":6701,"32595":11735,"32596":2061,"32597":8115,"32598":11195,"32599":8498,"32600":13297,"32601":5352,"32602":12729,"32603":8731,"32604":2821,"32605":2586,"32606":442,"32607":2741,"32608":5423,"32609":4882,"32610":10156,"32611":14864,"32612":4221,"32613":1007,"32614":12340,"32615":4368,"32616":9521,"32617":14946,"32618":11536,"32619":1818,"32620":6928,"32621":9837,"32622":1114,"32623":1374,"32624":11082,"32625":3122,"32626":8235,"32627":447,"32628":10827,"32629":11317,"32630":665,"32631":3598,"32632":13870,"32633":2603,"32634":528,"32635":12442,"32636":1852,"32637":10168,"32638":4739,"32639":12609,"32640":7566,"32641":1399,"32642":5587,"32643":13422,"32644":14230,"32645":48,"32646":7719,"32647":1497,"32648":5186,"32649":10525,"32650":503,"32651":4093,"32652":6098,"32653":4452,"32654":6540,"32655":8442,"32656":12283,"32657":13919,"32658":852,"32659":14164,"32660":1143,"32661":111,"32662":746,"32663":9015,"32664":5110,"32665":11408,"32666":14067,"32667":10499,"32668":15102,"32669":3835,"32670":7089,"32671":11287,"32672":12585,"32673":1878,"32674":6405,"32675":5303,"32676":10186,"32677":12342,"32678":2978,"32679":2705,"32680":2252,"32681":11744,"32682":338,"32683":9446,"32684":944,"32685":3133,"32686":8721,"32687":13686,"32688":932,"32689":5200,"32690":8723,"32691":9636,"32692":10338,"32693":957,"32694":9732,"32695":4941,"32696":12341,"32697":6317,"32698":13626,"32699":7536,"32700":2995,"32701":272,"32702":7337,"32703":11715,"32704":8719,"32705":5260,"32706":7661,"32707":8808,"32708":5079,"32709":513,"32710":5602,"32711":5536,"32712":14557,"32713":5596,"32714":10493,"32715":14030,"32716":2632,"32717":5099,"32718":8064,"32719":4278,"32720":5106,"32721":13703,"32722":11602,"32723":2460,"32724":14494,"32725":4261,"32726":6700,"32727":8006,"32728":14110,"32729":14806,"32730":9722,"32731":12119,"32732":10775,"32733":835,"32734":12881,"32735":11893,"32736":8238,"32737":13220,"32738":7616,"32739":15022,"32740":8007,"32741":6725,"32742":9874,"32743":12924,"32744":9683,"32745":14415,"32746":13574,"32747":1847,"32748":1039,"32749":1835,"32750":9817,"32751":5227,"32752":13112,"32753":9278,"32754":11633,"32755":4125,"32756":10349,"32757":13157,"32758":7509,"32759":3529,"32760":6897,"32761":5722,"32762":7864,"32763":10181,"32764":5688,"32765":5226,"32766":5061,"32767":13272,"32768":412,"32769":10628,"32770":9217,"32771":3615,"32772":2873,"32773":3791,"32774":14932,"32775":5009,"32776":2954,"32777":4469,"32778":6149,"32779":10576,"32780":13308,"32781":11366,"32782":4397,"32783":10863,"32784":15019,"32785":13272,"32786":5904,"32787":11004,"32788":2466,"32789":14757,"32790":5458,"32791":7815,"32792":4055,"32793":2228,"32794":14573,"32795":1123,"32796":596,"32797":984,"32798":2637,"32799":6559,"32800":9736,"32801":5814,"32802":1302,"32803":11445,"32804":5849,"32805":4682,"32806":575,"32807":3011,"32808":12670,"32809":1783,"32810":4750,"32811":468,"32812":12491,"32813":7497,"32814":6119,"32815":5584,"32816":14118,"32817":1753,"32818":5766,"32819":5855,"32820":12254,"32821":12311,"32822":9065,"32823":10362,"32824":9122,"32825":13867,"32826":7191,"32827":7196,"32828":12172,"32829":11207,"32830":2664,"32831":6190,"32832":11857,"32833":14857,"32834":8513,"32835":228,"32836":9758,"32837":5446,"32838":8323,"32839":6927,"32840":8547,"32841":5174,"32842":14978,"32843":1446,"32844":5082,"32845":8186,"32846":43,"32847":3251,"32848":10555,"32849":2741,"32850":1465,"32851":2205,"32852":7196,"32853":14018,"32854":1864,"32855":11252,"32856":12288,"32857":8426,"32858":8219,"32859":9934,"32860":7854,"32861":8922,"32862":5509,"32863":12654,"32864":5238,"32865":3013,"32866":8545,"32867":7757,"32868":2957,"32869":7393,"32870":7402,"32871":5671,"32872":5411,"32873":35,"32874":2592,"32875":6549,"32876":13749,"32877":11528,"32878":3666,"32879":14408,"32880":10812,"32881":2543,"32882":7247,"32883":5080,"32884":11132,"32885":7037,"32886":12589,"32887":14971,"32888":14837,"32889":13033,"32890":6464,"32891":4060,"32892":7808,"32893":6320,"32894":5764,"32895":11650,"32896":7443,"32897":8875,"32898":11371,"32899":2115,"32900":145,"32901":10744,"32902":13480,"32903":4976,"32904":14466,"32905":14060,"32906":5457,"32907":4544,"32908":6877,"32909":5702,"32910":1166,"32911":9881,"32912":8968,"32913":10814,"32914":7120,"32915":5896,"32916":12196,"32917":5205,"32918":6833,"32919":5380,"32920":9174,"32921":351,"32922":6109,"32923":7166,"32924":11185,"32925":12908,"32926":5813,"32927":6121,"32928":307,"32929":5247,"32930":14495,"32931":8579,"32932":12113,"32933":13711,"32934":5071,"32935":1613,"32936":12595,"32937":14533,"32938":3036,"32939":11488,"32940":7564,"32941":7402,"32942":12460,"32943":679,"32944":5618,"32945":14285,"32946":8425,"32947":304,"32948":5467,"32949":13924,"32950":5674,"32951":12528,"32952":1082,"32953":8521,"32954":13162,"32955":5291,"32956":6749,"32957":6741,"32958":11537,"32959":12678,"32960":9732,"32961":4590,"32962":10731,"32963":5773,"32964":2092,"32965":9421,"32966":317,"32967":2115,"32968":868,"32969":1295,"32970":14125,"32971":6460,"32972":2642,"32973":9562,"32974":6572,"32975":3794,"32976":10069,"32977":5331,"32978":7746,"32979":1716,"32980":9709,"32981":4332,"32982":7904,"32983":3694,"32984":3820,"32985":11591,"32986":3325,"32987":8630,"32988":11770,"32989":1764,"32990":6041,"32991":14332,"32992":13811,"32993":9523,"32994":4358,"32995":7837,"32996":14242,"32997":1931,"32998":8936,"32999":2130,"33000":8930,"33001":13096,"33002":6410,"33003":13053,"33004":10766,"33005":3477,"33006":11189,"33007":14116,"33008":7014,"33009":2628,"33010":8353,"33011":11542,"33012":12529,"33013":13229,"33014":14957,"33015":5565,"33016":4792,"33017":9840,"33018":9416,"33019":3188,"33020":9460,"33021":4651,"33022":8794,"33023":12330,"33024":631,"33025":5888,"33026":8531,"33027":6508,"33028":382,"33029":6190,"33030":2914,"33031":12671,"33032":12731,"33033":14647,"33034":9909,"33035":11329,"33036":12333,"33037":14978,"33038":3610,"33039":6396,"33040":5445,"33041":10639,"33042":12198,"33043":3112,"33044":2056,"33045":911,"33046":10213,"33047":10440,"33048":10720,"33049":5334,"33050":8398,"33051":12735,"33052":10890,"33053":11125,"33054":13352,"33055":13655,"33056":1072,"33057":3684,"33058":5147,"33059":1590,"33060":5177,"33061":10645,"33062":14804,"33063":10479,"33064":10905,"33065":5306,"33066":12779,"33067":11422,"33068":3809,"33069":12468,"33070":5106,"33071":14423,"33072":6051,"33073":7874,"33074":5107,"33075":1124,"33076":10593,"33077":14811,"33078":9941,"33079":3961,"33080":3601,"33081":3175,"33082":5403,"33083":2271,"33084":6056,"33085":1621,"33086":13891,"33087":9351,"33088":7353,"33089":9729,"33090":12603,"33091":5700,"33092":11544,"33093":13285,"33094":736,"33095":3701,"33096":1706,"33097":10675,"33098":3073,"33099":13999,"33100":8950,"33101":11056,"33102":1760,"33103":1440,"33104":12276,"33105":2643,"33106":7688,"33107":1278,"33108":14582,"33109":11608,"33110":10955,"33111":4751,"33112":1808,"33113":7516,"33114":13448,"33115":5560,"33116":3481,"33117":2095,"33118":13341,"33119":7824,"33120":14423,"33121":5958,"33122":13135,"33123":1022,"33124":5677,"33125":13882,"33126":7624,"33127":9081,"33128":4819,"33129":2320,"33130":9441,"33131":7195,"33132":525,"33133":2862,"33134":2733,"33135":8869,"33136":2486,"33137":6029,"33138":13365,"33139":6051,"33140":3966,"33141":75,"33142":6900,"33143":5957,"33144":8099,"33145":2886,"33146":6958,"33147":9226,"33148":8938,"33149":11173,"33150":12195,"33151":6481,"33152":7819,"33153":3122,"33154":3330,"33155":10833,"33156":7015,"33157":5898,"33158":2699,"33159":13557,"33160":8028,"33161":14144,"33162":8018,"33163":8699,"33164":7050,"33165":3999,"33166":4464,"33167":11860,"33168":13500,"33169":5489,"33170":9398,"33171":2707,"33172":12327,"33173":6923,"33174":10647,"33175":3631,"33176":11406,"33177":14564,"33178":12377,"33179":4549,"33180":10045,"33181":7560,"33182":12101,"33183":12412,"33184":853,"33185":1681,"33186":509,"33187":7864,"33188":634,"33189":5396,"33190":280,"33191":12226,"33192":11485,"33193":7503,"33194":11001,"33195":761,"33196":10004,"33197":2924,"33198":11648,"33199":7207,"33200":5373,"33201":14125,"33202":14021,"33203":7921,"33204":2409,"33205":8666,"33206":7958,"33207":14744,"33208":6798,"33209":3739,"33210":5656,"33211":13297,"33212":6451,"33213":6590,"33214":1830,"33215":14857,"33216":14783,"33217":8160,"33218":5,"33219":7759,"33220":13125,"33221":4916,"33222":2796,"33223":14774,"33224":8582,"33225":10786,"33226":4186,"33227":4381,"33228":4341,"33229":6243,"33230":2184,"33231":7426,"33232":1887,"33233":4133,"33234":1374,"33235":12389,"33236":10639,"33237":3469,"33238":14681,"33239":13480,"33240":1889,"33241":8048,"33242":6577,"33243":8120,"33244":5799,"33245":3886,"33246":7218,"33247":2054,"33248":11734,"33249":137,"33250":4046,"33251":4044,"33252":6396,"33253":2619,"33254":1484,"33255":5329,"33256":3777,"33257":8190,"33258":9980,"33259":8441,"33260":12144,"33261":4366,"33262":3252,"33263":13317,"33264":5107,"33265":4178,"33266":4946,"33267":3931,"33268":6365,"33269":13912,"33270":15124,"33271":11483,"33272":3612,"33273":12016,"33274":10229,"33275":7431,"33276":9853,"33277":13158,"33278":1895,"33279":8665,"33280":10399,"33281":3391,"33282":1480,"33283":4494,"33284":13251,"33285":1963,"33286":2191,"33287":7821,"33288":3076,"33289":14047,"33290":4315,"33291":1844,"33292":13448,"33293":4032,"33294":4802,"33295":6575,"33296":14432,"33297":1687,"33298":12043,"33299":3249,"33300":10557,"33301":13271,"33302":9484,"33303":4756,"33304":12688,"33305":14583,"33306":8129,"33307":10054,"33308":13125,"33309":10310,"33310":2816,"33311":5433,"33312":14886,"33313":11779,"33314":1935,"33315":2957,"33316":8354,"33317":4337,"33318":138,"33319":12073,"33320":14808,"33321":13790,"33322":4355,"33323":10089,"33324":1954,"33325":2142,"33326":7216,"33327":8835,"33328":12735,"33329":12066,"33330":7094,"33331":10682,"33332":3723,"33333":10392,"33334":7996,"33335":6732,"33336":8289,"33337":9675,"33338":2467,"33339":770,"33340":4260,"33341":9910,"33342":5002,"33343":916,"33344":3168,"33345":1156,"33346":11483,"33347":4067,"33348":10643,"33349":12924,"33350":8915,"33351":2109,"33352":4983,"33353":6671,"33354":2026,"33355":3222,"33356":3680,"33357":12820,"33358":2908,"33359":14203,"33360":13774,"33361":12770,"33362":6492,"33363":5350,"33364":13158,"33365":4137,"33366":4324,"33367":2502,"33368":12862,"33369":14401,"33370":14596,"33371":245,"33372":4211,"33373":2083,"33374":4401,"33375":6831,"33376":8136,"33377":612,"33378":12274,"33379":609,"33380":11527,"33381":13039,"33382":13232,"33383":9369,"33384":5924,"33385":9208,"33386":6528,"33387":2853,"33388":6013,"33389":15103,"33390":9960,"33391":3929,"33392":3700,"33393":4151,"33394":3880,"33395":12129,"33396":7068,"33397":13262,"33398":9251,"33399":9880,"33400":6786,"33401":2144,"33402":8133,"33403":1881,"33404":10311,"33405":1917,"33406":11042,"33407":3250,"33408":14508,"33409":2261,"33410":2659,"33411":11706,"33412":1737,"33413":9915,"33414":12526,"33415":10873,"33416":13453,"33417":12992,"33418":12407,"33419":6414,"33420":13377,"33421":1195,"33422":2509,"33423":2738,"33424":4360,"33425":6296,"33426":10148,"33427":7707,"33428":3456,"33429":378,"33430":15081,"33431":10580,"33432":14407,"33433":10282,"33434":3203,"33435":11028,"33436":7033,"33437":1579,"33438":9969,"33439":4340,"33440":2994,"33441":2612,"33442":7630,"33443":8128,"33444":114,"33445":7936,"33446":3548,"33447":2216,"33448":1058,"33449":769,"33450":13095,"33451":13946,"33452":1427,"33453":5584,"33454":6290,"33455":10188,"33456":12140,"33457":12318,"33458":12265,"33459":1602,"33460":1961,"33461":2044,"33462":7434,"33463":8175,"33464":1282,"33465":10270,"33466":5574,"33467":3985,"33468":4109,"33469":1515,"33470":13127,"33471":14245,"33472":981,"33473":14520,"33474":1032,"33475":2784,"33476":4287,"33477":1807,"33478":353,"33479":8238,"33480":3690,"33481":10112,"33482":11198,"33483":3045,"33484":201,"33485":3823,"33486":2756,"33487":5305,"33488":6809,"33489":548,"33490":14480,"33491":12714,"33492":1860,"33493":4475,"33494":9715,"33495":8036,"33496":12781,"33497":44,"33498":3052,"33499":14892,"33500":13747,"33501":7148,"33502":2634,"33503":8030,"33504":13598,"33505":8221,"33506":4291,"33507":363,"33508":11015,"33509":10179,"33510":13319,"33511":8494,"33512":7512,"33513":8506,"33514":2087,"33515":11044,"33516":12653,"33517":104,"33518":13680,"33519":11228,"33520":12413,"33521":5336,"33522":7215,"33523":5997,"33524":454,"33525":6621,"33526":5483,"33527":1029,"33528":3237,"33529":12037,"33530":6836,"33531":4974,"33532":7092,"33533":4638,"33534":10772,"33535":14008,"33536":10406,"33537":12921,"33538":6416,"33539":3767,"33540":12517,"33541":9241,"33542":10685,"33543":6727,"33544":14772,"33545":13968,"33546":1509,"33547":8744,"33548":13090,"33549":6863,"33550":9058,"33551":12386,"33552":3686,"33553":4096,"33554":3608,"33555":4550,"33556":10074,"33557":13304,"33558":7294,"33559":10251,"33560":8746,"33561":15132,"33562":7966,"33563":2979,"33564":11926,"33565":13891,"33566":4520,"33567":3731,"33568":12815,"33569":12371,"33570":9949,"33571":12027,"33572":9521,"33573":2648,"33574":5115,"33575":12583,"33576":2281,"33577":7208,"33578":14665,"33579":3436,"33580":2201,"33581":5318,"33582":2847,"33583":9336,"33584":7604,"33585":10535,"33586":9311,"33587":1379,"33588":4644,"33589":5671,"33590":11271,"33591":3801,"33592":1068,"33593":1369,"33594":11141,"33595":7684,"33596":676,"33597":12963,"33598":14129,"33599":6010,"33600":11150,"33601":12844,"33602":10080,"33603":2535,"33604":8037,"33605":14927,"33606":2089,"33607":2987,"33608":8492,"33609":9742,"33610":7616,"33611":9907,"33612":3862,"33613":14148,"33614":10873,"33615":13028,"33616":8706,"33617":9577,"33618":836,"33619":8849,"33620":11749,"33621":582,"33622":12221,"33623":4672,"33624":8835,"33625":14168,"33626":1957,"33627":2615,"33628":15138,"33629":8163,"33630":3714,"33631":2565,"33632":7394,"33633":13287,"33634":8135,"33635":3368,"33636":12092,"33637":13623,"33638":7647,"33639":10483,"33640":3986,"33641":6712,"33642":7385,"33643":9657,"33644":9317,"33645":9445,"33646":8531,"33647":14412,"33648":5104,"33649":14724,"33650":5447,"33651":14781,"33652":10987,"33653":9003,"33654":1171,"33655":9031,"33656":8109,"33657":1930,"33658":194,"33659":8710,"33660":12052,"33661":13002,"33662":14454,"33663":5130,"33664":14806,"33665":9255,"33666":374,"33667":5638,"33668":14776,"33669":3229,"33670":13752,"33671":12951,"33672":5527,"33673":7233,"33674":7004,"33675":12274,"33676":11794,"33677":13649,"33678":7135,"33679":12636,"33680":3174,"33681":12305,"33682":9961,"33683":5280,"33684":9499,"33685":4552,"33686":12540,"33687":3784,"33688":12638,"33689":13244,"33690":13585,"33691":3429,"33692":3185,"33693":9237,"33694":13032,"33695":12346,"33696":11324,"33697":2691,"33698":11592,"33699":8593,"33700":6167,"33701":3306,"33702":11368,"33703":13491,"33704":12028,"33705":13586,"33706":10924,"33707":12738,"33708":10633,"33709":15002,"33710":2597,"33711":6337,"33712":9425,"33713":3135,"33714":9483,"33715":4326,"33716":8420,"33717":6970,"33718":10892,"33719":13161,"33720":3332,"33721":772,"33722":495,"33723":10328,"33724":10641,"33725":1380,"33726":14781,"33727":4641,"33728":13088,"33729":1846,"33730":3480,"33731":3951,"33732":1095,"33733":440,"33734":4397,"33735":2547,"33736":1429,"33737":6264,"33738":6368,"33739":4650,"33740":10544,"33741":14516,"33742":6866,"33743":9815,"33744":12489,"33745":3869,"33746":13694,"33747":9150,"33748":14366,"33749":7893,"33750":10849,"33751":12583,"33752":389,"33753":14873,"33754":9990,"33755":7414,"33756":6395,"33757":15140,"33758":12186,"33759":7141,"33760":14213,"33761":14222,"33762":4833,"33763":6873,"33764":10497,"33765":4962,"33766":3381,"33767":8401,"33768":14113,"33769":1522,"33770":8279,"33771":974,"33772":9686,"33773":6909,"33774":822,"33775":3413,"33776":12278,"33777":3735,"33778":1646,"33779":13367,"33780":3077,"33781":944,"33782":9454,"33783":6873,"33784":5314,"33785":7437,"33786":3282,"33787":1183,"33788":33,"33789":2014,"33790":14798,"33791":5430,"33792":11801,"33793":4092,"33794":4909,"33795":11710,"33796":8890,"33797":10807,"33798":2509,"33799":4206,"33800":11954,"33801":2356,"33802":113,"33803":14023,"33804":8990,"33805":9801,"33806":7891,"33807":11742,"33808":1219,"33809":6581,"33810":8921,"33811":2414,"33812":6130,"33813":7993,"33814":2519,"33815":13207,"33816":9330,"33817":3500,"33818":8286,"33819":13554,"33820":10141,"33821":7918,"33822":6303,"33823":7340,"33824":6806,"33825":12273,"33826":1630,"33827":6753,"33828":11767,"33829":10168,"33830":15046,"33831":13148,"33832":4648,"33833":1387,"33834":82,"33835":3320,"33836":4864,"33837":29,"33838":7917,"33839":6145,"33840":14536,"33841":9306,"33842":4159,"33843":1028,"33844":7969,"33845":9264,"33846":9561,"33847":743,"33848":12743,"33849":9774,"33850":10702,"33851":6460,"33852":7530,"33853":892,"33854":11741,"33855":12186,"33856":3661,"33857":1368,"33858":9436,"33859":9576,"33860":13015,"33861":14398,"33862":4968,"33863":13904,"33864":3142,"33865":6952,"33866":7113,"33867":14453,"33868":2963,"33869":6157,"33870":6799,"33871":14924,"33872":6387,"33873":443,"33874":13739,"33875":6007,"33876":12027,"33877":3769,"33878":7439,"33879":4229,"33880":11997,"33881":13553,"33882":13171,"33883":4829,"33884":13760,"33885":13245,"33886":9682,"33887":5448,"33888":6051,"33889":9409,"33890":788,"33891":3752,"33892":1873,"33893":4401,"33894":1885,"33895":6709,"33896":10854,"33897":10797,"33898":2823,"33899":13772,"33900":7535,"33901":14051,"33902":11141,"33903":4664,"33904":7906,"33905":2165,"33906":6768,"33907":7378,"33908":8934,"33909":13863,"33910":3926,"33911":12524,"33912":11672,"33913":7939,"33914":11553,"33915":9442,"33916":12454,"33917":11365,"33918":12496,"33919":6938,"33920":3811,"33921":13147,"33922":5510,"33923":2696,"33924":5152,"33925":7312,"33926":13909,"33927":2102,"33928":4378,"33929":10951,"33930":12335,"33931":2484,"33932":7687,"33933":13951,"33934":11025,"33935":6163,"33936":14670,"33937":6375,"33938":6087,"33939":2889,"33940":8428,"33941":13504,"33942":2232,"33943":4960,"33944":10484,"33945":12386,"33946":300,"33947":6325,"33948":11152,"33949":14038,"33950":10764,"33951":972,"33952":1727,"33953":15144,"33954":10439,"33955":12849,"33956":10675,"33957":3249,"33958":9549,"33959":5984,"33960":9779,"33961":10779,"33962":4279,"33963":12184,"33964":2867,"33965":12186,"33966":13690,"33967":12016,"33968":13387,"33969":13244,"33970":13741,"33971":9249,"33972":4269,"33973":13895,"33974":5873,"33975":2137,"33976":8019,"33977":5006,"33978":3338,"33979":6065,"33980":7304,"33981":6789,"33982":4759,"33983":12570,"33984":6822,"33985":4090,"33986":7227,"33987":6214,"33988":12849,"33989":4426,"33990":4866,"33991":1338,"33992":12081,"33993":6144,"33994":14273,"33995":10668,"33996":7771,"33997":13737,"33998":8116,"33999":277,"34000":4762,"34001":942,"34002":662,"34003":3896,"34004":4218,"34005":6335,"34006":8899,"34007":139,"34008":5244,"34009":14042,"34010":12399,"34011":14405,"34012":4605,"34013":13410,"34014":7887,"34015":12290,"34016":11081,"34017":6985,"34018":11985,"34019":7270,"34020":14728,"34021":7078,"34022":1760,"34023":998,"34024":9795,"34025":13152,"34026":7067,"34027":8730,"34028":6568,"34029":5143,"34030":11650,"34031":1780,"34032":4056,"34033":6117,"34034":8433,"34035":3104,"34036":2156,"34037":3106,"34038":25,"34039":3419,"34040":13799,"34041":4203,"34042":1837,"34043":13233,"34044":12797,"34045":10910,"34046":3615,"34047":9850,"34048":9117,"34049":3114,"34050":4185,"34051":12410,"34052":9962,"34053":7548,"34054":6854,"34055":12629,"34056":14745,"34057":9473,"34058":5076,"34059":1798,"34060":13710,"34061":4430,"34062":7407,"34063":1574,"34064":1653,"34065":5654,"34066":7871,"34067":12398,"34068":8426,"34069":14967,"34070":11841,"34071":10157,"34072":12673,"34073":5003,"34074":4351,"34075":11310,"34076":7839,"34077":3833,"34078":12587,"34079":4920,"34080":1153,"34081":12219,"34082":4352,"34083":1834,"34084":606,"34085":12630,"34086":3390,"34087":7278,"34088":9189,"34089":8021,"34090":9843,"34091":10871,"34092":13283,"34093":9504,"34094":9211,"34095":11961,"34096":13532,"34097":14766,"34098":14792,"34099":1453,"34100":14610,"34101":4631,"34102":5372,"34103":9021,"34104":11797,"34105":258,"34106":7667,"34107":12578,"34108":3848,"34109":6834,"34110":170,"34111":2073,"34112":4438,"34113":6585,"34114":11427,"34115":3295,"34116":8539,"34117":14344,"34118":5831,"34119":9493,"34120":7657,"34121":10716,"34122":8449,"34123":8857,"34124":10210,"34125":1818,"34126":3902,"34127":3914,"34128":14676,"34129":5613,"34130":13082,"34131":6016,"34132":11925,"34133":4267,"34134":14974,"34135":9412,"34136":13645,"34137":5768,"34138":11779,"34139":6348,"34140":959,"34141":7253,"34142":3136,"34143":8495,"34144":10050,"34145":5343,"34146":10669,"34147":8693,"34148":14064,"34149":9149,"34150":8714,"34151":12244,"34152":14043,"34153":14829,"34154":3304,"34155":5202,"34156":10778,"34157":6269,"34158":8259,"34159":2324,"34160":3517,"34161":3080,"34162":14908,"34163":8893,"34164":14575,"34165":14656,"34166":14990,"34167":4211,"34168":10843,"34169":12857,"34170":14160,"34171":11309,"34172":715,"34173":14106,"34174":1272,"34175":2419,"34176":8903,"34177":8041,"34178":428,"34179":8550,"34180":9903,"34181":10153,"34182":5216,"34183":4499,"34184":9876,"34185":11859,"34186":414,"34187":11130,"34188":12921,"34189":8993,"34190":7438,"34191":7617,"34192":2647,"34193":2137,"34194":7826,"34195":550,"34196":578,"34197":11564,"34198":7494,"34199":8237,"34200":2527,"34201":6277,"34202":3950,"34203":4878,"34204":13485,"34205":14005,"34206":1346,"34207":8190,"34208":14022,"34209":9052,"34210":10783,"34211":3143,"34212":5307,"34213":886,"34214":11107,"34215":7328,"34216":2539,"34217":1526,"34218":13772,"34219":14803,"34220":10398,"34221":3661,"34222":5095,"34223":3615,"34224":876,"34225":11483,"34226":4625,"34227":6698,"34228":151,"34229":13266,"34230":1568,"34231":2698,"34232":6562,"34233":14401,"34234":4930,"34235":13829,"34236":8786,"34237":282,"34238":720,"34239":7517,"34240":1797,"34241":6530,"34242":13953,"34243":10700,"34244":5813,"34245":4942,"34246":11793,"34247":10781,"34248":7394,"34249":11044,"34250":7876,"34251":6398,"34252":14450,"34253":10107,"34254":732,"34255":6446,"34256":5318,"34257":13063,"34258":14280,"34259":4739,"34260":2625,"34261":5846,"34262":11649,"34263":12635,"34264":1780,"34265":12560,"34266":8749,"34267":12049,"34268":2365,"34269":8711,"34270":1909,"34271":1393,"34272":14264,"34273":13994,"34274":12040,"34275":3960,"34276":1065,"34277":12304,"34278":3194,"34279":6167,"34280":7818,"34281":8176,"34282":10642,"34283":13392,"34284":3867,"34285":2064,"34286":7391,"34287":102,"34288":11755,"34289":10762,"34290":11692,"34291":10644,"34292":5909,"34293":1141,"34294":6154,"34295":3232,"34296":2547,"34297":8978,"34298":11864,"34299":10375,"34300":2074,"34301":750,"34302":4409,"34303":3879,"34304":13537,"34305":13231,"34306":8217,"34307":1567,"34308":10812,"34309":7547,"34310":6259,"34311":10573,"34312":1857,"34313":6242,"34314":7943,"34315":529,"34316":3399,"34317":12312,"34318":11401,"34319":7752,"34320":1124,"34321":3178,"34322":4583,"34323":10277,"34324":13037,"34325":7324,"34326":8576,"34327":8835,"34328":10947,"34329":4595,"34330":3357,"34331":9594,"34332":8956,"34333":9184,"34334":9365,"34335":6929,"34336":507,"34337":13796,"34338":502,"34339":6665,"34340":9156,"34341":8123,"34342":7161,"34343":12103,"34344":3998,"34345":12695,"34346":11224,"34347":7753,"34348":2703,"34349":1132,"34350":8588,"34351":3854,"34352":2420,"34353":14564,"34354":6711,"34355":6817,"34356":8009,"34357":5797,"34358":6547,"34359":6831,"34360":858,"34361":5214,"34362":13090,"34363":14726,"34364":11889,"34365":14195,"34366":5851,"34367":15071,"34368":12781,"34369":8335,"34370":2404,"34371":8943,"34372":11936,"34373":8994,"34374":14936,"34375":4081,"34376":11421,"34377":10630,"34378":1166,"34379":10277,"34380":8278,"34381":10577,"34382":14376,"34383":4809,"34384":3984,"34385":8733,"34386":9071,"34387":7139,"34388":15048,"34389":173,"34390":3355,"34391":4086,"34392":5340,"34393":11754,"34394":9025,"34395":6205,"34396":11702,"34397":13453,"34398":9429,"34399":1275,"34400":169,"34401":13897,"34402":8564,"34403":8250,"34404":9028,"34405":7825,"34406":14554,"34407":6177,"34408":11470,"34409":3776,"34410":13097,"34411":10833,"34412":11039,"34413":10217,"34414":10553,"34415":11996,"34416":691,"34417":2762,"34418":6142,"34419":8004,"34420":3390,"34421":988,"34422":14700,"34423":5282,"34424":3123,"34425":1170,"34426":9930,"34427":1804,"34428":8358,"34429":5772,"34430":8981,"34431":7663,"34432":10600,"34433":14147,"34434":2601,"34435":122,"34436":10675,"34437":14817,"34438":12988,"34439":2422,"34440":434,"34441":1553,"34442":13640,"34443":5042,"34444":3493,"34445":14553,"34446":14334,"34447":8703,"34448":414,"34449":7317,"34450":9959,"34451":367,"34452":10224,"34453":12230,"34454":14549,"34455":8033,"34456":8164,"34457":8336,"34458":6501,"34459":11678,"34460":11241,"34461":12739,"34462":2923,"34463":7132,"34464":4664,"34465":8054,"34466":4432,"34467":3148,"34468":7455,"34469":11642,"34470":5081,"34471":2936,"34472":9098,"34473":1284,"34474":2427,"34475":5883,"34476":8324,"34477":9945,"34478":8561,"34479":11325,"34480":6315,"34481":10026,"34482":9592,"34483":13252,"34484":3711,"34485":1726,"34486":13123,"34487":9754,"34488":719,"34489":4898,"34490":3538,"34491":9988,"34492":7479,"34493":14219,"34494":12836,"34495":14484,"34496":10364,"34497":1679,"34498":7024,"34499":7542,"34500":10725,"34501":3137,"34502":13665,"34503":12112,"34504":14760,"34505":4264,"34506":12466,"34507":11311,"34508":1096,"34509":12515,"34510":13276,"34511":8036,"34512":10775,"34513":14579,"34514":3168,"34515":10986,"34516":6747,"34517":1935,"34518":3503,"34519":6273,"34520":5088,"34521":14665,"34522":14593,"34523":7309,"34524":1852,"34525":9934,"34526":200,"34527":10246,"34528":1355,"34529":15059,"34530":13724,"34531":713,"34532":5500,"34533":5579,"34534":8130,"34535":10689,"34536":14775,"34537":4935,"34538":9026,"34539":6833,"34540":7510,"34541":8037,"34542":12254,"34543":14007,"34544":2610,"34545":14871,"34546":7680,"34547":8546,"34548":6927,"34549":11356,"34550":9652,"34551":8411,"34552":13261,"34553":14945,"34554":9942,"34555":4508,"34556":8852,"34557":4361,"34558":6346,"34559":9346,"34560":8490,"34561":8395,"34562":159,"34563":4875,"34564":3165,"34565":721,"34566":1783,"34567":270,"34568":4997,"34569":9286,"34570":12861,"34571":444,"34572":7483,"34573":9606,"34574":5990,"34575":2088,"34576":13211,"34577":10434,"34578":5144,"34579":8421,"34580":13534,"34581":10498,"34582":12833,"34583":4010,"34584":13892,"34585":1776,"34586":11759,"34587":3703,"34588":4293,"34589":14155,"34590":7341,"34591":2271,"34592":12567,"34593":14492,"34594":10309,"34595":4488,"34596":5713,"34597":12984,"34598":3842,"34599":14636,"34600":4168,"34601":4439,"34602":6131,"34603":6312,"34604":1323,"34605":12391,"34606":6578,"34607":5262,"34608":4488,"34609":14846,"34610":2073,"34611":3117,"34612":1715,"34613":7132,"34614":11772,"34615":1953,"34616":8683,"34617":5425,"34618":2721,"34619":9027,"34620":6253,"34621":3667,"34622":6933,"34623":7338,"34624":11957,"34625":1768,"34626":8660,"34627":1436,"34628":5154,"34629":324,"34630":6638,"34631":432,"34632":4152,"34633":15122,"34634":14165,"34635":355,"34636":4055,"34637":3398,"34638":6929,"34639":4298,"34640":9561,"34641":6948,"34642":9897,"34643":6851,"34644":13301,"34645":1714,"34646":10889,"34647":14726,"34648":1778,"34649":12094,"34650":5603,"34651":4442,"34652":11351,"34653":9009,"34654":3305,"34655":13028,"34656":6702,"34657":683,"34658":12584,"34659":81,"34660":4809,"34661":7761,"34662":14529,"34663":13245,"34664":10323,"34665":9960,"34666":12562,"34667":6128,"34668":7412,"34669":6117,"34670":12785,"34671":8751,"34672":10992,"34673":14243,"34674":14176,"34675":524,"34676":6343,"34677":14643,"34678":6783,"34679":11532,"34680":13047,"34681":3223,"34682":11535,"34683":7857,"34684":4828,"34685":12704,"34686":2539,"34687":3332,"34688":348,"34689":6294,"34690":5705,"34691":2733,"34692":70,"34693":14396,"34694":2508,"34695":5965,"34696":14969,"34697":14804,"34698":2,"34699":2888,"34700":4588,"34701":753,"34702":5904,"34703":2302,"34704":1604,"34705":15085,"34706":363,"34707":11757,"34708":14902,"34709":9678,"34710":8101,"34711":6658,"34712":11037,"34713":1708,"34714":5431,"34715":510,"34716":14990,"34717":13119,"34718":8255,"34719":5175,"34720":9784,"34721":8542,"34722":12568,"34723":8169,"34724":13347,"34725":13014,"34726":6608,"34727":1197,"34728":2161,"34729":3955,"34730":1334,"34731":11752,"34732":14763,"34733":8380,"34734":7083,"34735":14594,"34736":14628,"34737":10565,"34738":12380,"34739":4522,"34740":3639,"34741":14818,"34742":9451,"34743":6351,"34744":13584,"34745":1168,"34746":8425,"34747":12762,"34748":10045,"34749":2999,"34750":8286,"34751":10669,"34752":7247,"34753":1861,"34754":13485,"34755":3340,"34756":8340,"34757":11780,"34758":9155,"34759":7765,"34760":9917,"34761":14734,"34762":8058,"34763":3762,"34764":4162,"34765":13987,"34766":3498,"34767":3972,"34768":13708,"34769":6197,"34770":10434,"34771":8418,"34772":7586,"34773":11166,"34774":3135,"34775":10160,"34776":12010,"34777":9813,"34778":6026,"34779":13175,"34780":6745,"34781":5126,"34782":5310,"34783":2485,"34784":9436,"34785":3757,"34786":11404,"34787":5605,"34788":8927,"34789":2415,"34790":5421,"34791":9064,"34792":364,"34793":879,"34794":4587,"34795":7675,"34796":14205,"34797":12226,"34798":3434,"34799":7533,"34800":6302,"34801":2426,"34802":15006,"34803":10550,"34804":6189,"34805":3083,"34806":9884,"34807":688,"34808":4600,"34809":11451,"34810":7691,"34811":8363,"34812":2920,"34813":14450,"34814":2366,"34815":2094,"34816":5128,"34817":2270,"34818":8488,"34819":5461,"34820":4020,"34821":14397,"34822":447,"34823":6930,"34824":11003,"34825":13012,"34826":157,"34827":3450,"34828":6595,"34829":7449,"34830":10440,"34831":8204,"34832":1737,"34833":10715,"34834":15040,"34835":6716,"34836":9190,"34837":12223,"34838":5661,"34839":4497,"34840":2589,"34841":12566,"34842":13322,"34843":6554,"34844":9477,"34845":14584,"34846":7273,"34847":11519,"34848":1309,"34849":10171,"34850":4805,"34851":8484,"34852":14347,"34853":3158,"34854":3766,"34855":12194,"34856":10103,"34857":12130,"34858":2590,"34859":4135,"34860":5995,"34861":13250,"34862":8545,"34863":6666,"34864":6190,"34865":5969,"34866":10178,"34867":11964,"34868":3546,"34869":5495,"34870":9232,"34871":6705,"34872":1530,"34873":5946,"34874":12840,"34875":11331,"34876":14772,"34877":3829,"34878":7277,"34879":6323,"34880":10631,"34881":3840,"34882":11787,"34883":12461,"34884":796,"34885":475,"34886":9899,"34887":4906,"34888":402,"34889":14320,"34890":8014,"34891":3913,"34892":1254,"34893":3808,"34894":10200,"34895":3687,"34896":2074,"34897":493,"34898":1152,"34899":912,"34900":12968,"34901":10791,"34902":11660,"34903":1422,"34904":5874,"34905":10935,"34906":14724,"34907":10586,"34908":4357,"34909":21,"34910":4538,"34911":1267,"34912":3708,"34913":10570,"34914":41,"34915":5427,"34916":1028,"34917":13273,"34918":8615,"34919":14702,"34920":4674,"34921":7929,"34922":3329,"34923":9092,"34924":10765,"34925":13851,"34926":2318,"34927":6677,"34928":6478,"34929":10480,"34930":203,"34931":10172,"34932":149,"34933":8906,"34934":6321,"34935":7116,"34936":7728,"34937":14471,"34938":12375,"34939":14543,"34940":3308,"34941":4286,"34942":11274,"34943":10847,"34944":13301,"34945":14375,"34946":3032,"34947":14303,"34948":5459,"34949":11874,"34950":11347,"34951":275,"34952":3841,"34953":10405,"34954":5911,"34955":13205,"34956":13451,"34957":2554,"34958":2591,"34959":13339,"34960":2906,"34961":8986,"34962":11225,"34963":14994,"34964":8817,"34965":12190,"34966":8147,"34967":9504,"34968":4013,"34969":13776,"34970":1102,"34971":1445,"34972":69,"34973":12101,"34974":6078,"34975":13289,"34976":11140,"34977":4565,"34978":1196,"34979":9025,"34980":10227,"34981":4043,"34982":7603,"34983":7512,"34984":3018,"34985":4313,"34986":3183,"34987":4627,"34988":9921,"34989":445,"34990":2329,"34991":13207,"34992":10608,"34993":10604,"34994":4127,"34995":1574,"34996":14649,"34997":6825,"34998":3352,"34999":12481,"35000":9496,"35001":11355,"35002":5691,"35003":12190,"35004":11787,"35005":837,"35006":7594,"35007":7777,"35008":12090,"35009":13511,"35010":7608,"35011":1671,"35012":5917,"35013":2932,"35014":357,"35015":2488,"35016":5525,"35017":12700,"35018":12838,"35019":13961,"35020":9803,"35021":9646,"35022":4844,"35023":14362,"35024":6307,"35025":3021,"35026":11335,"35027":12922,"35028":9366,"35029":11258,"35030":9474,"35031":4945,"35032":14466,"35033":1181,"35034":10778,"35035":9522,"35036":7003,"35037":4975,"35038":8464,"35039":3131,"35040":4263,"35041":6860,"35042":12084,"35043":7058,"35044":8281,"35045":15050,"35046":12008,"35047":10243,"35048":1890,"35049":8010,"35050":7304,"35051":1685,"35052":1443,"35053":3029,"35054":7935,"35055":14315,"35056":10939,"35057":9970,"35058":14519,"35059":12465,"35060":5551,"35061":15135,"35062":13540,"35063":1224,"35064":6666,"35065":12725,"35066":8584,"35067":4014,"35068":11137,"35069":12015,"35070":12157,"35071":8973,"35072":666,"35073":2698,"35074":3508,"35075":4249,"35076":14653,"35077":3243,"35078":2251,"35079":9694,"35080":2831,"35081":5364,"35082":3113,"35083":119,"35084":5117,"35085":2685,"35086":3062,"35087":6768,"35088":8576,"35089":9587,"35090":12320,"35091":4992,"35092":4926,"35093":9941,"35094":8273,"35095":8622,"35096":2815,"35097":14924,"35098":9713,"35099":6559,"35100":10554,"35101":12082,"35102":7621,"35103":7082,"35104":14016,"35105":7897,"35106":193,"35107":1843,"35108":3928,"35109":9299,"35110":9231,"35111":1800,"35112":4811,"35113":9296,"35114":14937,"35115":5085,"35116":4996,"35117":1095,"35118":10454,"35119":8811,"35120":420,"35121":4171,"35122":4712,"35123":3172,"35124":6150,"35125":12201,"35126":102,"35127":3084,"35128":1855,"35129":8506,"35130":9169,"35131":9845,"35132":1154,"35133":10783,"35134":5852,"35135":2240,"35136":2550,"35137":4244,"35138":3083,"35139":246,"35140":11764,"35141":7238,"35142":14262,"35143":2901,"35144":9723,"35145":7377,"35146":7358,"35147":8944,"35148":602,"35149":12770,"35150":4573,"35151":9988,"35152":5256,"35153":14050,"35154":12022,"35155":105,"35156":1384,"35157":14661,"35158":12079,"35159":4653,"35160":2918,"35161":14218,"35162":7808,"35163":15043,"35164":7988,"35165":2043,"35166":6234,"35167":13658,"35168":12968,"35169":2524,"35170":5874,"35171":13921,"35172":11088,"35173":11419,"35174":8121,"35175":11005,"35176":2171,"35177":10532,"35178":8860,"35179":6808,"35180":14891,"35181":1301,"35182":10898,"35183":12035,"35184":41,"35185":6009,"35186":11721,"35187":6689,"35188":1976,"35189":8689,"35190":407,"35191":7351,"35192":13251,"35193":9708,"35194":4158,"35195":11195,"35196":8244,"35197":10151,"35198":3969,"35199":7629,"35200":11407,"35201":14791,"35202":7216,"35203":527,"35204":11492,"35205":8232,"35206":6555,"35207":1494,"35208":9833,"35209":8782,"35210":7571,"35211":13143,"35212":7550,"35213":13124,"35214":2552,"35215":3693,"35216":1844,"35217":5754,"35218":12422,"35219":1284,"35220":7567,"35221":7762,"35222":8338,"35223":13266,"35224":568,"35225":13929,"35226":10846,"35227":5508,"35228":8692,"35229":12219,"35230":1681,"35231":12757,"35232":4586,"35233":752,"35234":3825,"35235":10551,"35236":11326,"35237":2598,"35238":1107,"35239":11495,"35240":482,"35241":649,"35242":10013,"35243":10163,"35244":7832,"35245":4720,"35246":8860,"35247":13023,"35248":3410,"35249":7694,"35250":2018,"35251":5180,"35252":10934,"35253":8342,"35254":11727,"35255":10795,"35256":3207,"35257":4594,"35258":3793,"35259":5454,"35260":5308,"35261":15059,"35262":3663,"35263":995,"35264":14722,"35265":482,"35266":370,"35267":14528,"35268":9946,"35269":10757,"35270":11332,"35271":12455,"35272":6708,"35273":14872,"35274":9123,"35275":4228,"35276":14546,"35277":11968,"35278":10210,"35279":4327,"35280":14537,"35281":728,"35282":5873,"35283":14087,"35284":8411,"35285":592,"35286":8226,"35287":11549,"35288":3051,"35289":6749,"35290":1681,"35291":1904,"35292":4212,"35293":3294,"35294":1598,"35295":14671,"35296":9747,"35297":3950,"35298":14416,"35299":3853,"35300":2507,"35301":3589,"35302":14436,"35303":9324,"35304":6840,"35305":12667,"35306":984,"35307":2432,"35308":7453,"35309":14829,"35310":2859,"35311":10926,"35312":13099,"35313":10090,"35314":6646,"35315":1082,"35316":3126,"35317":8697,"35318":7355,"35319":15129,"35320":3114,"35321":5951,"35322":2774,"35323":9,"35324":14944,"35325":3089,"35326":9822,"35327":2442,"35328":13995,"35329":9242,"35330":4796,"35331":10895,"35332":11723,"35333":1230,"35334":9553,"35335":8320,"35336":8705,"35337":4671,"35338":10276,"35339":385,"35340":4405,"35341":1642,"35342":6847,"35343":11912,"35344":4786,"35345":8790,"35346":13319,"35347":3516,"35348":570,"35349":11816,"35350":3712,"35351":5143,"35352":5439,"35353":4234,"35354":10296,"35355":11551,"35356":4914,"35357":4088,"35358":3551,"35359":804,"35360":5872,"35361":10501,"35362":10121,"35363":8581,"35364":2811,"35365":8026,"35366":8256,"35367":9361,"35368":11515,"35369":14544,"35370":1633,"35371":8466,"35372":11603,"35373":2050,"35374":8098,"35375":2380,"35376":8435,"35377":465,"35378":4357,"35379":7450,"35380":7227,"35381":12300,"35382":2102,"35383":5596,"35384":13591,"35385":12333,"35386":12553,"35387":4683,"35388":8891,"35389":7068,"35390":11312,"35391":13881,"35392":10694,"35393":7909,"35394":3565,"35395":1097,"35396":7893,"35397":6239,"35398":1592,"35399":13645,"35400":5031,"35401":666,"35402":8217,"35403":9276,"35404":2744,"35405":74,"35406":14430,"35407":10556,"35408":1136,"35409":1962,"35410":7827,"35411":11046,"35412":8738,"35413":14239,"35414":6270,"35415":7371,"35416":14095,"35417":14268,"35418":3760,"35419":2298,"35420":5690,"35421":14376,"35422":5761,"35423":12248,"35424":5564,"35425":15013,"35426":12567,"35427":4482,"35428":127,"35429":1153,"35430":6414,"35431":12235,"35432":14867,"35433":8722,"35434":5914,"35435":288,"35436":2460,"35437":2597,"35438":6427,"35439":10100,"35440":4080,"35441":13794,"35442":11127,"35443":1181,"35444":14617,"35445":13722,"35446":8167,"35447":8033,"35448":10796,"35449":6817,"35450":8391,"35451":5485,"35452":5661,"35453":11253,"35454":809,"35455":2798,"35456":8787,"35457":12540,"35458":6735,"35459":8766,"35460":9950,"35461":9776,"35462":11687,"35463":5758,"35464":10878,"35465":865,"35466":3245,"35467":12842,"35468":14076,"35469":13687,"35470":1427,"35471":13185,"35472":12387,"35473":11479,"35474":7558,"35475":1495,"35476":1952,"35477":6459,"35478":10266,"35479":4134,"35480":4306,"35481":3949,"35482":1077,"35483":3100,"35484":10209,"35485":2196,"35486":12220,"35487":9615,"35488":13571,"35489":5334,"35490":3971,"35491":11784,"35492":3081,"35493":2371,"35494":12985,"35495":5150,"35496":6960,"35497":10536,"35498":11664,"35499":2431,"35500":8680,"35501":15074,"35502":1856,"35503":10722,"35504":10587,"35505":5057,"35506":12189,"35507":13626,"35508":1640,"35509":5552,"35510":5880,"35511":678,"35512":4741,"35513":13823,"35514":13804,"35515":14705,"35516":9087,"35517":7194,"35518":12504,"35519":744,"35520":2914,"35521":2045,"35522":11879,"35523":10268,"35524":1547,"35525":8286,"35526":8839,"35527":5108,"35528":7115,"35529":11040,"35530":10397,"35531":9283,"35532":1108,"35533":11351,"35534":661,"35535":80,"35536":6972,"35537":6822,"35538":10120,"35539":8383,"35540":5770,"35541":9492,"35542":12140,"35543":9643,"35544":6107,"35545":8342,"35546":5841,"35547":4387,"35548":4720,"35549":12242,"35550":11278,"35551":2647,"35552":6415,"35553":7848,"35554":10799,"35555":6307,"35556":2968,"35557":5850,"35558":13405,"35559":2627,"35560":10949,"35561":1774,"35562":7220,"35563":5618,"35564":3832,"35565":7248,"35566":4819,"35567":5935,"35568":6692,"35569":49,"35570":777,"35571":6783,"35572":6058,"35573":10378,"35574":7029,"35575":6115,"35576":2552,"35577":10528,"35578":6308,"35579":1357,"35580":11282,"35581":4491,"35582":1983,"35583":6368,"35584":13198,"35585":15007,"35586":4644,"35587":9157,"35588":4387,"35589":14197,"35590":12909,"35591":5091,"35592":9101,"35593":2839,"35594":11763,"35595":14483,"35596":10725,"35597":4600,"35598":3228,"35599":4351,"35600":2647,"35601":7117,"35602":1584,"35603":11185,"35604":3430,"35605":6376,"35606":1875,"35607":14772,"35608":9070,"35609":5778,"35610":9882,"35611":896,"35612":2410,"35613":10901,"35614":8174,"35615":7052,"35616":13135,"35617":7721,"35618":14734,"35619":4958,"35620":9878,"35621":4028,"35622":166,"35623":10376,"35624":6974,"35625":2986,"35626":6949,"35627":10861,"35628":2832,"35629":2831,"35630":9849,"35631":1851,"35632":4787,"35633":8647,"35634":1477,"35635":3800,"35636":11677,"35637":1434,"35638":4122,"35639":9229,"35640":12029,"35641":774,"35642":7016,"35643":15067,"35644":7803,"35645":4547,"35646":12118,"35647":2809,"35648":9219,"35649":4321,"35650":10621,"35651":2472,"35652":14718,"35653":4934,"35654":993,"35655":10275,"35656":6558,"35657":1908,"35658":8400,"35659":13009,"35660":7692,"35661":10500,"35662":2870,"35663":8714,"35664":8704,"35665":6123,"35666":7600,"35667":4780,"35668":3146,"35669":12393,"35670":186,"35671":6927,"35672":4732,"35673":6341,"35674":7171,"35675":165,"35676":10662,"35677":1019,"35678":9426,"35679":6592,"35680":4925,"35681":7875,"35682":9178,"35683":3678,"35684":4567,"35685":5758,"35686":10264,"35687":3983,"35688":13959,"35689":11291,"35690":1317,"35691":14760,"35692":341,"35693":11712,"35694":1609,"35695":178,"35696":588,"35697":3714,"35698":6694,"35699":8426,"35700":7537,"35701":11683,"35702":3557,"35703":13897,"35704":54,"35705":5156,"35706":2677,"35707":12105,"35708":8098,"35709":1481,"35710":13525,"35711":8902,"35712":9048,"35713":14102,"35714":1864,"35715":14368,"35716":11494,"35717":5839,"35718":4522,"35719":11705,"35720":7544,"35721":5778,"35722":9041,"35723":5759,"35724":15080,"35725":2267,"35726":11242,"35727":12028,"35728":4441,"35729":246,"35730":13400,"35731":14553,"35732":8646,"35733":15098,"35734":9397,"35735":8269,"35736":5667,"35737":8865,"35738":664,"35739":11161,"35740":14591,"35741":6062,"35742":6524,"35743":10020,"35744":7422,"35745":12164,"35746":6934,"35747":7844,"35748":11546,"35749":4873,"35750":5834,"35751":4040,"35752":10898,"35753":12723,"35754":1529,"35755":282,"35756":691,"35757":12043,"35758":2623,"35759":11256,"35760":8039,"35761":1520,"35762":7968,"35763":3323,"35764":15069,"35765":6127,"35766":4060,"35767":5593,"35768":10677,"35769":9629,"35770":6268,"35771":11881,"35772":12819,"35773":1979,"35774":3816,"35775":3497,"35776":719,"35777":7461,"35778":3393,"35779":8785,"35780":11459,"35781":2978,"35782":5285,"35783":9281,"35784":6728,"35785":13976,"35786":11566,"35787":4483,"35788":10757,"35789":12438,"35790":10730,"35791":11458,"35792":185,"35793":6618,"35794":916,"35795":12217,"35796":1270,"35797":8876,"35798":12653,"35799":14020,"35800":4498,"35801":4168,"35802":6089,"35803":13053,"35804":1314,"35805":2005,"35806":6381,"35807":2524,"35808":4098,"35809":14212,"35810":12469,"35811":9286,"35812":10228,"35813":5812,"35814":6668,"35815":12431,"35816":7118,"35817":7199,"35818":5959,"35819":9741,"35820":14303,"35821":5225,"35822":7453,"35823":2334,"35824":1175,"35825":7855,"35826":11349,"35827":3404,"35828":1210,"35829":10649,"35830":8103,"35831":11895,"35832":1358,"35833":14797,"35834":11151,"35835":5565,"35836":5420,"35837":6456,"35838":3654,"35839":4024,"35840":10566,"35841":15131,"35842":4071,"35843":10265,"35844":2507,"35845":11167,"35846":10960,"35847":12451,"35848":2407,"35849":3664,"35850":14334,"35851":6561,"35852":3025,"35853":4931,"35854":13396,"35855":13339,"35856":577,"35857":5929,"35858":12817,"35859":3350,"35860":13618,"35861":5606,"35862":13785,"35863":13324,"35864":4020,"35865":6756,"35866":14968,"35867":12578,"35868":1573,"35869":147,"35870":5066,"35871":14971,"35872":14031,"35873":705,"35874":841,"35875":5065,"35876":5215,"35877":3471,"35878":44,"35879":686,"35880":2971,"35881":4870,"35882":6142,"35883":8229,"35884":4268,"35885":7082,"35886":5634,"35887":11346,"35888":7094,"35889":9475,"35890":842,"35891":6222,"35892":5370,"35893":12258,"35894":7782,"35895":7714,"35896":4951,"35897":14941,"35898":7019,"35899":1542,"35900":5056,"35901":5404,"35902":4670,"35903":5372,"35904":12845,"35905":14731,"35906":13022,"35907":12380,"35908":13489,"35909":13627,"35910":14214,"35911":1038,"35912":10906,"35913":14437,"35914":14004,"35915":9324,"35916":14322,"35917":11368,"35918":9948,"35919":8438,"35920":8331,"35921":14691,"35922":1779,"35923":14904,"35924":11119,"35925":6168,"35926":2445,"35927":12540,"35928":8710,"35929":14319,"35930":8598,"35931":9989,"35932":799,"35933":9438,"35934":12177,"35935":657,"35936":14882,"35937":8842,"35938":12828,"35939":13402,"35940":7483,"35941":8072,"35942":6442,"35943":870,"35944":11610,"35945":6761,"35946":6849,"35947":6110,"35948":11695,"35949":4668,"35950":13927,"35951":11472,"35952":9537,"35953":13361,"35954":8763,"35955":11457,"35956":14885,"35957":11047,"35958":9777,"35959":14906,"35960":1473,"35961":8064,"35962":9946,"35963":11709,"35964":12891,"35965":3291,"35966":9576,"35967":9137,"35968":6623,"35969":1898,"35970":9,"35971":497,"35972":5022,"35973":8724,"35974":5346,"35975":75,"35976":11522,"35977":13537,"35978":1025,"35979":7343,"35980":10518,"35981":11340,"35982":85,"35983":13225,"35984":4963,"35985":6416,"35986":810,"35987":5047,"35988":4554,"35989":5997,"35990":6837,"35991":7445,"35992":8984,"35993":4614,"35994":685,"35995":9382,"35996":774,"35997":6485,"35998":12362,"35999":15064,"36000":6017,"36001":11768,"36002":4255,"36003":524,"36004":2054,"36005":5696,"36006":2698,"36007":1215,"36008":3808,"36009":15045,"36010":2072,"36011":4429,"36012":2594,"36013":328,"36014":4813,"36015":5059,"36016":9209,"36017":15047,"36018":11007,"36019":7871,"36020":674,"36021":3334,"36022":10202,"36023":14973,"36024":6814,"36025":9799,"36026":12869,"36027":12056,"36028":14648,"36029":11581,"36030":14922,"36031":11452,"36032":13813,"36033":521,"36034":2720,"36035":14809,"36036":9218,"36037":13155,"36038":1850,"36039":1308,"36040":9267,"36041":11979,"36042":9140,"36043":3012,"36044":10310,"36045":14391,"36046":8040,"36047":12891,"36048":13181,"36049":1300,"36050":5876,"36051":11786,"36052":12932,"36053":778,"36054":4957,"36055":3028,"36056":10051,"36057":5916,"36058":457,"36059":5308,"36060":1968,"36061":894,"36062":6134,"36063":5357,"36064":8787,"36065":5101,"36066":5100,"36067":13481,"36068":45,"36069":6758,"36070":6906,"36071":8666,"36072":9608,"36073":9932,"36074":12351,"36075":4347,"36076":2650,"36077":7968,"36078":11242,"36079":13181,"36080":9331,"36081":7914,"36082":10363,"36083":13544,"36084":8267,"36085":8744,"36086":1993,"36087":5218,"36088":10749,"36089":9899,"36090":3035,"36091":2743,"36092":7509,"36093":13039,"36094":2461,"36095":9846,"36096":8172,"36097":3637,"36098":14753,"36099":5976,"36100":7048,"36101":9872,"36102":6687,"36103":6786,"36104":3284,"36105":5570,"36106":12286,"36107":6663,"36108":1516,"36109":6962,"36110":10438,"36111":13971,"36112":6594,"36113":4777,"36114":11402,"36115":11776,"36116":1361,"36117":8351,"36118":6357,"36119":12898,"36120":12141,"36121":4678,"36122":14427,"36123":11355,"36124":12525,"36125":4288,"36126":3892,"36127":4310,"36128":4456,"36129":9216,"36130":6234,"36131":7284,"36132":6072,"36133":2169,"36134":4177,"36135":2141,"36136":7244,"36137":5346,"36138":14677,"36139":879,"36140":3190,"36141":5953,"36142":3005,"36143":10573,"36144":6982,"36145":12347,"36146":13008,"36147":4308,"36148":5794,"36149":14332,"36150":4239,"36151":11090,"36152":6528,"36153":13785,"36154":11408,"36155":6190,"36156":9613,"36157":14867,"36158":2076,"36159":11686,"36160":12315,"36161":10899,"36162":8550,"36163":5090,"36164":7851,"36165":1135,"36166":5018,"36167":14832,"36168":3348,"36169":7667,"36170":14737,"36171":2225,"36172":5101,"36173":8744,"36174":2276,"36175":4444,"36176":962,"36177":11188,"36178":12635,"36179":833,"36180":6081,"36181":10743,"36182":12000,"36183":9257,"36184":12395,"36185":4641,"36186":10867,"36187":9029,"36188":10191,"36189":1807,"36190":12985,"36191":210,"36192":729,"36193":3756,"36194":12716,"36195":4874,"36196":4387,"36197":758,"36198":11400,"36199":13594,"36200":9038,"36201":3716,"36202":3071,"36203":408,"36204":13560,"36205":4212,"36206":10515,"36207":7721,"36208":13343,"36209":2752,"36210":8912,"36211":4605,"36212":10525,"36213":3589,"36214":1638,"36215":4362,"36216":9296,"36217":4220,"36218":7242,"36219":12181,"36220":2984,"36221":11697,"36222":2992,"36223":8389,"36224":13706,"36225":6734,"36226":2709,"36227":1506,"36228":8877,"36229":13538,"36230":555,"36231":6048,"36232":3992,"36233":2870,"36234":11148,"36235":3469,"36236":11677,"36237":14942,"36238":3687,"36239":4929,"36240":2110,"36241":13913,"36242":9869,"36243":328,"36244":12317,"36245":13750,"36246":1207,"36247":14068,"36248":9709,"36249":13674,"36250":11647,"36251":1909,"36252":5864,"36253":4106,"36254":10910,"36255":12294,"36256":2489,"36257":4693,"36258":217,"36259":2025,"36260":8997,"36261":8840,"36262":12284,"36263":13305,"36264":5608,"36265":14281,"36266":7447,"36267":10796,"36268":6022,"36269":4681,"36270":12816,"36271":8182,"36272":9142,"36273":7262,"36274":4507,"36275":2737,"36276":176,"36277":4696,"36278":8641,"36279":1504,"36280":8216,"36281":9970,"36282":3147,"36283":6093,"36284":5011,"36285":7736,"36286":377,"36287":2970,"36288":11148,"36289":12589,"36290":12425,"36291":8550,"36292":49,"36293":14673,"36294":10672,"36295":7934,"36296":7254,"36297":5889,"36298":3528,"36299":11602,"36300":14051,"36301":140,"36302":1656,"36303":9795,"36304":12949,"36305":8476,"36306":13738,"36307":5663,"36308":10562,"36309":13694,"36310":11353,"36311":9871,"36312":4781,"36313":12669,"36314":1211,"36315":10578,"36316":15026,"36317":3956,"36318":12832,"36319":9763,"36320":2145,"36321":10307,"36322":8372,"36323":2251,"36324":13110,"36325":1086,"36326":14795,"36327":1614,"36328":10676,"36329":2737,"36330":7631,"36331":8900,"36332":3649,"36333":14398,"36334":15045,"36335":12760,"36336":6511,"36337":3780,"36338":5968,"36339":503,"36340":11205,"36341":1486,"36342":12232,"36343":5018,"36344":4193,"36345":15130,"36346":14118,"36347":8052,"36348":9263,"36349":404,"36350":4693,"36351":9781,"36352":8677,"36353":9287,"36354":4162,"36355":6567,"36356":4272,"36357":299,"36358":1699,"36359":239,"36360":6466,"36361":1457,"36362":6095,"36363":6905,"36364":9221,"36365":782,"36366":4459,"36367":321,"36368":15126,"36369":7652,"36370":3930,"36371":8791,"36372":8979,"36373":5367,"36374":12740,"36375":12600,"36376":762,"36377":6640,"36378":9426,"36379":1090,"36380":11229,"36381":6034,"36382":15071,"36383":10657,"36384":14237,"36385":14391,"36386":10315,"36387":15071,"36388":12063,"36389":8069,"36390":10332,"36391":2634,"36392":6593,"36393":599,"36394":9067,"36395":10954,"36396":11612,"36397":2119,"36398":11737,"36399":6681,"36400":5614,"36401":6990,"36402":13286,"36403":8505,"36404":9947,"36405":11002,"36406":5061,"36407":10235,"36408":12064,"36409":7651,"36410":7842,"36411":2357,"36412":5994,"36413":8905,"36414":11149,"36415":12627,"36416":7151,"36417":12905,"36418":462,"36419":5569,"36420":5071,"36421":1126,"36422":41,"36423":13912,"36424":7738,"36425":11190,"36426":14349,"36427":1264,"36428":5234,"36429":2082,"36430":11122,"36431":12233,"36432":8524,"36433":8998,"36434":3823,"36435":2354,"36436":11814,"36437":3795,"36438":4988,"36439":12987,"36440":13535,"36441":3885,"36442":11402,"36443":12740,"36444":3908,"36445":13744,"36446":11312,"36447":2304,"36448":142,"36449":9070,"36450":10044,"36451":4978,"36452":1133,"36453":6902,"36454":12912,"36455":7409,"36456":7014,"36457":14114,"36458":2735,"36459":7286,"36460":170,"36461":4897,"36462":9910,"36463":3683,"36464":14449,"36465":2973,"36466":8260,"36467":10204,"36468":12527,"36469":4965,"36470":7367,"36471":3928,"36472":4492,"36473":3584,"36474":14338,"36475":3246,"36476":1519,"36477":8620,"36478":5378,"36479":8689,"36480":11842,"36481":1795,"36482":11027,"36483":10083,"36484":7749,"36485":6478,"36486":1626,"36487":12668,"36488":886,"36489":3584,"36490":4019,"36491":15024,"36492":10535,"36493":7977,"36494":9174,"36495":1982,"36496":6541,"36497":6475,"36498":8944,"36499":3609,"36500":7736,"36501":1949,"36502":12694,"36503":13171,"36504":8737,"36505":5751,"36506":15129,"36507":663,"36508":4340,"36509":3948,"36510":11416,"36511":4880,"36512":3901,"36513":12617,"36514":12831,"36515":683,"36516":14289,"36517":4155,"36518":13457,"36519":7533,"36520":2128,"36521":10938,"36522":1351,"36523":3013,"36524":10853,"36525":11881,"36526":10672,"36527":9714,"36528":4504,"36529":5562,"36530":11945,"36531":4496,"36532":4194,"36533":3483,"36534":8245,"36535":10826,"36536":12499,"36537":13621,"36538":177,"36539":12092,"36540":555,"36541":4705,"36542":7515,"36543":12954,"36544":14826,"36545":13215,"36546":3259,"36547":7782,"36548":4597,"36549":7261,"36550":2672,"36551":14951,"36552":11526,"36553":5262,"36554":3369,"36555":12296,"36556":11075,"36557":13547,"36558":8804,"36559":5971,"36560":6044,"36561":7021,"36562":11360,"36563":3292,"36564":563,"36565":10096,"36566":11818,"36567":5516,"36568":14853,"36569":14390,"36570":12046,"36571":5988,"36572":10201,"36573":3004,"36574":5453,"36575":14532,"36576":13502,"36577":8429,"36578":14995,"36579":5032,"36580":14410,"36581":14475,"36582":12401,"36583":2289,"36584":7293,"36585":2447,"36586":9349,"36587":7136,"36588":8461,"36589":7353,"36590":11735,"36591":9557,"36592":14695,"36593":5031,"36594":8990,"36595":4562,"36596":14479,"36597":12017,"36598":14526,"36599":10824,"36600":13853,"36601":594,"36602":5920,"36603":13073,"36604":9541,"36605":7954,"36606":5362,"36607":1400,"36608":4323,"36609":1040,"36610":2349,"36611":12146,"36612":11009,"36613":5748,"36614":10804,"36615":10576,"36616":3304,"36617":12980,"36618":7251,"36619":3603,"36620":12747,"36621":802,"36622":8781,"36623":1151,"36624":2606,"36625":5555,"36626":9482,"36627":6393,"36628":14760,"36629":12820,"36630":1162,"36631":9114,"36632":7677,"36633":6758,"36634":5886,"36635":5638,"36636":7877,"36637":3852,"36638":14242,"36639":2404,"36640":7605,"36641":9236,"36642":8234,"36643":6480,"36644":677,"36645":1147,"36646":13683,"36647":8751,"36648":7581,"36649":4505,"36650":11849,"36651":13896,"36652":8152,"36653":3940,"36654":993,"36655":14329,"36656":8906,"36657":10151,"36658":2619,"36659":357,"36660":12264,"36661":10250,"36662":13073,"36663":822,"36664":10609,"36665":5527,"36666":5174,"36667":12046,"36668":790,"36669":14015,"36670":14169,"36671":2747,"36672":973,"36673":12907,"36674":15001,"36675":3715,"36676":6637,"36677":2658,"36678":2686,"36679":10296,"36680":2106,"36681":9937,"36682":10090,"36683":14133,"36684":7657,"36685":2042,"36686":14220,"36687":5739,"36688":7893,"36689":6409,"36690":10572,"36691":703,"36692":10199,"36693":13114,"36694":6053,"36695":12064,"36696":12956,"36697":4436,"36698":7803,"36699":11804,"36700":3239,"36701":14024,"36702":6844,"36703":77,"36704":11142,"36705":13192,"36706":1605,"36707":11647,"36708":13332,"36709":12212,"36710":5594,"36711":2104,"36712":9000,"36713":2977,"36714":13133,"36715":1866,"36716":2318,"36717":2031,"36718":4537,"36719":6458,"36720":5219,"36721":14260,"36722":5586,"36723":11882,"36724":9773,"36725":13903,"36726":6461,"36727":5349,"36728":8270,"36729":3749,"36730":11088,"36731":1142,"36732":2246,"36733":11078,"36734":4298,"36735":6531,"36736":6393,"36737":12371,"36738":6779,"36739":4234,"36740":154,"36741":9794,"36742":496,"36743":13349,"36744":6347,"36745":13407,"36746":3738,"36747":3275,"36748":4407,"36749":1333,"36750":5042,"36751":7527,"36752":2181,"36753":4594,"36754":14793,"36755":1797,"36756":4416,"36757":10787,"36758":15038,"36759":5906,"36760":2833,"36761":5875,"36762":11753,"36763":14794,"36764":3250,"36765":8303,"36766":8766,"36767":159,"36768":13706,"36769":7554,"36770":5812,"36771":1022,"36772":2508,"36773":10775,"36774":7183,"36775":7195,"36776":990,"36777":3772,"36778":2590,"36779":2653,"36780":2644,"36781":14644,"36782":9513,"36783":11320,"36784":6011,"36785":7152,"36786":13964,"36787":6558,"36788":14371,"36789":4160,"36790":11771,"36791":13003,"36792":10237,"36793":5929,"36794":5022,"36795":11664,"36796":568,"36797":9740,"36798":13644,"36799":10011,"36800":10589,"36801":9614,"36802":7609,"36803":9843,"36804":4524,"36805":13850,"36806":9636,"36807":12123,"36808":13233,"36809":7617,"36810":14552,"36811":8375,"36812":9040,"36813":8277,"36814":6110,"36815":12627,"36816":8458,"36817":10456,"36818":15101,"36819":9022,"36820":809,"36821":4250,"36822":5499,"36823":162,"36824":9981,"36825":1630,"36826":14588,"36827":4055,"36828":2600,"36829":2166,"36830":4799,"36831":5551,"36832":8943,"36833":13962,"36834":2222,"36835":10724,"36836":5894,"36837":2703,"36838":7781,"36839":443,"36840":5609,"36841":8899,"36842":6201,"36843":14394,"36844":750,"36845":5754,"36846":14233,"36847":7780,"36848":14364,"36849":13024,"36850":7583,"36851":700,"36852":10347,"36853":1565,"36854":4987,"36855":4934,"36856":7773,"36857":8855,"36858":4929,"36859":3975,"36860":12421,"36861":2706,"36862":6841,"36863":10554,"36864":11345,"36865":5571,"36866":3121,"36867":84,"36868":12598,"36869":11774,"36870":4887,"36871":3664,"36872":10318,"36873":8799,"36874":9323,"36875":7974,"36876":13052,"36877":539,"36878":8737,"36879":10818,"36880":9968,"36881":10543,"36882":638,"36883":9459,"36884":14678,"36885":3456,"36886":517,"36887":8109,"36888":9998,"36889":6875,"36890":14890,"36891":4192,"36892":8508,"36893":6147,"36894":4386,"36895":6667,"36896":14553,"36897":4236,"36898":13242,"36899":10476,"36900":1202,"36901":600,"36902":13266,"36903":1989,"36904":2698,"36905":8435,"36906":2762,"36907":8984,"36908":2022,"36909":1795,"36910":14559,"36911":11346,"36912":3729,"36913":9586,"36914":1380,"36915":7574,"36916":14259,"36917":1597,"36918":12621,"36919":953,"36920":4711,"36921":13562,"36922":10175,"36923":4182,"36924":6039,"36925":8335,"36926":6693,"36927":14308,"36928":14052,"36929":8360,"36930":4208,"36931":7841,"36932":2638,"36933":2020,"36934":7019,"36935":11781,"36936":426,"36937":1373,"36938":14151,"36939":8522,"36940":4223,"36941":10884,"36942":14198,"36943":473,"36944":6367,"36945":4734,"36946":14296,"36947":3182,"36948":9130,"36949":29,"36950":4116,"36951":3180,"36952":8983,"36953":11942,"36954":1863,"36955":14666,"36956":11443,"36957":2979,"36958":12720,"36959":195,"36960":11175,"36961":13700,"36962":11284,"36963":8480,"36964":10785,"36965":8461,"36966":15023,"36967":11727,"36968":8253,"36969":1802,"36970":4414,"36971":14265,"36972":2200,"36973":1677,"36974":2614,"36975":3744,"36976":5887,"36977":5793,"36978":10214,"36979":2941,"36980":1885,"36981":3929,"36982":4839,"36983":10172,"36984":12768,"36985":9527,"36986":11315,"36987":6512,"36988":9896,"36989":8057,"36990":8731,"36991":11147,"36992":2667,"36993":12992,"36994":993,"36995":2787,"36996":11758,"36997":8714,"36998":2966,"36999":3575,"37000":8268,"37001":6530,"37002":5015,"37003":2134,"37004":4802,"37005":8472,"37006":3133,"37007":5106,"37008":9902,"37009":14313,"37010":7261,"37011":7542,"37012":8920,"37013":6822,"37014":1706,"37015":217,"37016":14833,"37017":13825,"37018":7616,"37019":2911,"37020":1842,"37021":9039,"37022":1345,"37023":6237,"37024":12799,"37025":11739,"37026":8243,"37027":2794,"37028":9466,"37029":4589,"37030":5974,"37031":13315,"37032":6227,"37033":13258,"37034":7651,"37035":800,"37036":11920,"37037":4562,"37038":5242,"37039":5665,"37040":4149,"37041":4060,"37042":4062,"37043":7156,"37044":14420,"37045":6905,"37046":246,"37047":9797,"37048":578,"37049":1076,"37050":2933,"37051":780,"37052":799,"37053":1296,"37054":5397,"37055":7363,"37056":13058,"37057":6937,"37058":1597,"37059":12158,"37060":11776,"37061":7366,"37062":9742,"37063":11064,"37064":1816,"37065":9039,"37066":6017,"37067":6471,"37068":13849,"37069":14404,"37070":8577,"37071":2349,"37072":7172,"37073":3981,"37074":12206,"37075":13447,"37076":3603,"37077":9318,"37078":8328,"37079":1523,"37080":8227,"37081":420,"37082":7041,"37083":833,"37084":4327,"37085":14187,"37086":14152,"37087":12674,"37088":2632,"37089":9922,"37090":12678,"37091":14534,"37092":570,"37093":8515,"37094":19,"37095":2297,"37096":4502,"37097":13067,"37098":9531,"37099":4576,"37100":4276,"37101":3322,"37102":14179,"37103":5956,"37104":5026,"37105":2943,"37106":12388,"37107":8978,"37108":11533,"37109":6496,"37110":1801,"37111":12340,"37112":3977,"37113":6608,"37114":6413,"37115":8865,"37116":4096,"37117":11627,"37118":9332,"37119":6547,"37120":1748,"37121":14778,"37122":6334,"37123":3417,"37124":397,"37125":1145,"37126":5803,"37127":4760,"37128":12774,"37129":8762,"37130":902,"37131":1181,"37132":12634,"37133":5265,"37134":15026,"37135":11414,"37136":14856,"37137":8939,"37138":4791,"37139":15076,"37140":9136,"37141":1076,"37142":5171,"37143":2158,"37144":1315,"37145":12522,"37146":1812,"37147":8424,"37148":9378,"37149":12894,"37150":9144,"37151":7969,"37152":10930,"37153":9991,"37154":292,"37155":4115,"37156":707,"37157":14441,"37158":3789,"37159":8600,"37160":5897,"37161":6987,"37162":11374,"37163":5049,"37164":14912,"37165":12533,"37166":8514,"37167":13081,"37168":6917,"37169":2511,"37170":2457,"37171":9796,"37172":2240,"37173":5332,"37174":3358,"37175":11648,"37176":5927,"37177":4871,"37178":10400,"37179":14073,"37180":11307,"37181":3111,"37182":14547,"37183":10498,"37184":7394,"37185":14193,"37186":7872,"37187":6833,"37188":1676,"37189":9850,"37190":13405,"37191":8942,"37192":3863,"37193":4845,"37194":1120,"37195":3195,"37196":12602,"37197":13816,"37198":5962,"37199":5525,"37200":14219,"37201":305,"37202":8146,"37203":3075,"37204":490,"37205":11502,"37206":6161,"37207":8481,"37208":13681,"37209":10428,"37210":4573,"37211":14465,"37212":11665,"37213":8821,"37214":9424,"37215":11306,"37216":6017,"37217":908,"37218":6431,"37219":1371,"37220":3166,"37221":4487,"37222":11070,"37223":1036,"37224":13325,"37225":7821,"37226":8053,"37227":5526,"37228":2861,"37229":5664,"37230":11174,"37231":3384,"37232":596,"37233":12159,"37234":9303,"37235":661,"37236":14177,"37237":11936,"37238":2930,"37239":11623,"37240":7503,"37241":9402,"37242":4583,"37243":9092,"37244":11533,"37245":13420,"37246":7781,"37247":8112,"37248":469,"37249":11336,"37250":11424,"37251":5079,"37252":12832,"37253":9036,"37254":9797,"37255":7343,"37256":11873,"37257":9928,"37258":5499,"37259":8808,"37260":8783,"37261":659,"37262":1704,"37263":3581,"37264":11784,"37265":5462,"37266":3815,"37267":9023,"37268":9447,"37269":7297,"37270":13605,"37271":1966,"37272":3186,"37273":15059,"37274":5512,"37275":2038,"37276":3622,"37277":5270,"37278":568,"37279":14587,"37280":13037,"37281":5642,"37282":14642,"37283":8957,"37284":6945,"37285":3135,"37286":11644,"37287":9378,"37288":6301,"37289":2870,"37290":14793,"37291":10534,"37292":13652,"37293":13342,"37294":12860,"37295":572,"37296":5782,"37297":14130,"37298":7604,"37299":6182,"37300":7989,"37301":2403,"37302":7489,"37303":640,"37304":4592,"37305":15125,"37306":3060,"37307":9331,"37308":14850,"37309":330,"37310":9058,"37311":13788,"37312":5536,"37313":4763,"37314":3692,"37315":5371,"37316":11470,"37317":10814,"37318":561,"37319":7165,"37320":8392,"37321":4743,"37322":831,"37323":1152,"37324":10497,"37325":11937,"37326":11686,"37327":4845,"37328":7086,"37329":10223,"37330":3719,"37331":8258,"37332":403,"37333":2493,"37334":11433,"37335":8439,"37336":6920,"37337":9868,"37338":9233,"37339":1668,"37340":3601,"37341":7511,"37342":10558,"37343":456,"37344":10409,"37345":1257,"37346":2747,"37347":9516,"37348":1171,"37349":7893,"37350":14244,"37351":11496,"37352":12351,"37353":11580,"37354":2863,"37355":2018,"37356":14794,"37357":7471,"37358":2664,"37359":9836,"37360":2788,"37361":2766,"37362":262,"37363":14420,"37364":5325,"37365":10929,"37366":4719,"37367":9946,"37368":6768,"37369":10666,"37370":9377,"37371":13513,"37372":7532,"37373":2471,"37374":1954,"37375":11103,"37376":2974,"37377":8924,"37378":2152,"37379":12142,"37380":8330,"37381":11931,"37382":9220,"37383":4039,"37384":6679,"37385":12692,"37386":10942,"37387":11863,"37388":9592,"37389":7131,"37390":760,"37391":1417,"37392":4960,"37393":6199,"37394":3151,"37395":10159,"37396":8381,"37397":8518,"37398":2810,"37399":9581,"37400":560,"37401":12038,"37402":6182,"37403":4398,"37404":1375,"37405":9826,"37406":13734,"37407":4315,"37408":11137,"37409":13391,"37410":10940,"37411":11666,"37412":14627,"37413":5412,"37414":5399,"37415":12009,"37416":11894,"37417":261,"37418":11624,"37419":9904,"37420":897,"37421":466,"37422":8539,"37423":12275,"37424":4041,"37425":301,"37426":4740,"37427":9,"37428":8225,"37429":12924,"37430":7750,"37431":4789,"37432":14820,"37433":4787,"37434":11460,"37435":2922,"37436":14061,"37437":2639,"37438":10939,"37439":7950,"37440":1621,"37441":13847,"37442":4181,"37443":5025,"37444":406,"37445":14251,"37446":8285,"37447":241,"37448":13009,"37449":4324,"37450":11804,"37451":3008,"37452":11838,"37453":4225,"37454":8818,"37455":11218,"37456":4373,"37457":4434,"37458":13196,"37459":1604,"37460":14561,"37461":1340,"37462":8261,"37463":14037,"37464":7081,"37465":2658,"37466":3355,"37467":10515,"37468":914,"37469":4546,"37470":7924,"37471":3799,"37472":11826,"37473":11178,"37474":15003,"37475":3682,"37476":7525,"37477":10057,"37478":13827,"37479":3418,"37480":12615,"37481":13055,"37482":14543,"37483":112,"37484":3602,"37485":6434,"37486":7690,"37487":13088,"37488":1783,"37489":8838,"37490":7048,"37491":8779,"37492":698,"37493":887,"37494":3914,"37495":14484,"37496":8465,"37497":12116,"37498":7456,"37499":11873,"37500":3621,"37501":8641,"37502":1763,"37503":557,"37504":7432,"37505":1791,"37506":4704,"37507":6330,"37508":11678,"37509":14254,"37510":1512,"37511":6857,"37512":371,"37513":4441,"37514":910,"37515":4406,"37516":11282,"37517":298,"37518":2615,"37519":14472,"37520":8926,"37521":2968,"37522":4076,"37523":12379,"37524":6426,"37525":14020,"37526":9532,"37527":5675,"37528":7223,"37529":10933,"37530":1424,"37531":12687,"37532":6816,"37533":9003,"37534":2165,"37535":1203,"37536":8128,"37537":1593,"37538":11315,"37539":6059,"37540":1804,"37541":976,"37542":9077,"37543":1906,"37544":8100,"37545":9145,"37546":11621,"37547":11997,"37548":6583,"37549":14977,"37550":9111,"37551":14088,"37552":642,"37553":7956,"37554":3819,"37555":5818,"37556":4575,"37557":6687,"37558":2286,"37559":5304,"37560":5469,"37561":6045,"37562":1457,"37563":6152,"37564":6339,"37565":6403,"37566":10842,"37567":5289,"37568":13979,"37569":10104,"37570":4199,"37571":3455,"37572":13330,"37573":9574,"37574":14661,"37575":11824,"37576":8954,"37577":9990,"37578":9747,"37579":5066,"37580":12390,"37581":50,"37582":1070,"37583":14490,"37584":6792,"37585":9154,"37586":8253,"37587":1267,"37588":3445,"37589":4995,"37590":13881,"37591":5673,"37592":1634,"37593":3722,"37594":1593,"37595":213,"37596":9200,"37597":8919,"37598":1033,"37599":7936,"37600":6839,"37601":4440,"37602":5315,"37603":8624,"37604":13513,"37605":6342,"37606":6988,"37607":12719,"37608":6127,"37609":6152,"37610":6136,"37611":2417,"37612":2946,"37613":12655,"37614":5028,"37615":6040,"37616":2459,"37617":14907,"37618":1269,"37619":7731,"37620":12484,"37621":1221,"37622":12468,"37623":2692,"37624":14577,"37625":5576,"37626":9371,"37627":9277,"37628":9883,"37629":13914,"37630":1575,"37631":7197,"37632":11067,"37633":7605,"37634":8611,"37635":14759,"37636":11783,"37637":5755,"37638":12187,"37639":3454,"37640":11374,"37641":9410,"37642":1102,"37643":428,"37644":5649,"37645":10167,"37646":120,"37647":6257,"37648":14847,"37649":10915,"37650":3744,"37651":12987,"37652":13250,"37653":3334,"37654":8527,"37655":4277,"37656":13560,"37657":6814,"37658":1048,"37659":4424,"37660":12145,"37661":7150,"37662":6209,"37663":1245,"37664":1317,"37665":3646,"37666":1427,"37667":5215,"37668":4259,"37669":5123,"37670":11543,"37671":3598,"37672":7832,"37673":11552,"37674":13412,"37675":3838,"37676":4972,"37677":11251,"37678":109,"37679":9163,"37680":9544,"37681":6332,"37682":6479,"37683":13481,"37684":7289,"37685":11908,"37686":6132,"37687":10107,"37688":3600,"37689":5600,"37690":9542,"37691":9862,"37692":1611,"37693":7523,"37694":11921,"37695":8619,"37696":11646,"37697":8386,"37698":2004,"37699":10255,"37700":746,"37701":10213,"37702":10727,"37703":11858,"37704":9216,"37705":7175,"37706":8448,"37707":3225,"37708":4004,"37709":8608,"37710":6876,"37711":13238,"37712":5723,"37713":2812,"37714":13027,"37715":4619,"37716":11376,"37717":6712,"37718":5550,"37719":14980,"37720":2734,"37721":3020,"37722":4164,"37723":5629,"37724":9018,"37725":1161,"37726":5659,"37727":2474,"37728":781,"37729":8887,"37730":10575,"37731":7234,"37732":4558,"37733":3005,"37734":11474,"37735":5783,"37736":6147,"37737":2176,"37738":8011,"37739":4780,"37740":257,"37741":9596,"37742":4534,"37743":835,"37744":4971,"37745":9379,"37746":2904,"37747":7155,"37748":13596,"37749":8768,"37750":6923,"37751":6784,"37752":12716,"37753":14016,"37754":1354,"37755":13415,"37756":1179,"37757":1155,"37758":4779,"37759":11811,"37760":14589,"37761":9898,"37762":2452,"37763":5117,"37764":1112,"37765":2352,"37766":2637,"37767":14142,"37768":4882,"37769":14487,"37770":3732,"37771":4084,"37772":12399,"37773":8150,"37774":10617,"37775":14381,"37776":10905,"37777":10289,"37778":4628,"37779":5982,"37780":4683,"37781":9243,"37782":2203,"37783":3245,"37784":12613,"37785":4464,"37786":12003,"37787":9179,"37788":1594,"37789":7049,"37790":9563,"37791":7351,"37792":9641,"37793":8613,"37794":11650,"37795":12728,"37796":1248,"37797":12169,"37798":11917,"37799":7820,"37800":14522,"37801":5521,"37802":202,"37803":5783,"37804":4721,"37805":1599,"37806":6588,"37807":6625,"37808":2376,"37809":6283,"37810":12502,"37811":6120,"37812":2321,"37813":8434,"37814":12014,"37815":10561,"37816":11428,"37817":5883,"37818":13379,"37819":13117,"37820":7763,"37821":5917,"37822":788,"37823":1119,"37824":8889,"37825":4899,"37826":13447,"37827":3239,"37828":12081,"37829":11331,"37830":5812,"37831":10825,"37832":6657,"37833":7671,"37834":7379,"37835":10745,"37836":3801,"37837":2258,"37838":374,"37839":6185,"37840":7967,"37841":8373,"37842":7170,"37843":13158,"37844":5040,"37845":2573,"37846":5601,"37847":12770,"37848":4277,"37849":11233,"37850":14467,"37851":13672,"37852":11067,"37853":1424,"37854":9581,"37855":10983,"37856":259,"37857":13471,"37858":7538,"37859":8093,"37860":3148,"37861":9949,"37862":7981,"37863":3497,"37864":14533,"37865":3423,"37866":13035,"37867":11198,"37868":10294,"37869":4591,"37870":5425,"37871":7803,"37872":2116,"37873":12610,"37874":12261,"37875":14687,"37876":8367,"37877":7284,"37878":7164,"37879":3188,"37880":13164,"37881":2910,"37882":10390,"37883":12548,"37884":3980,"37885":6790,"37886":7249,"37887":4073,"37888":9946,"37889":4733,"37890":8324,"37891":10972,"37892":5062,"37893":4008,"37894":4366,"37895":9590,"37896":10942,"37897":11955,"37898":4474,"37899":15015,"37900":4011,"37901":12328,"37902":11815,"37903":505,"37904":8210,"37905":2953,"37906":6638,"37907":3792,"37908":11699,"37909":7310,"37910":12842,"37911":1633,"37912":5590,"37913":3678,"37914":2215,"37915":10041,"37916":6521,"37917":14375,"37918":5243,"37919":10139,"37920":10928,"37921":13870,"37922":538,"37923":15128,"37924":3043,"37925":817,"37926":14114,"37927":2696,"37928":781,"37929":3180,"37930":4256,"37931":1707,"37932":12195,"37933":2571,"37934":6219,"37935":7235,"37936":4581,"37937":2303,"37938":4284,"37939":6540,"37940":6223,"37941":12343,"37942":1465,"37943":6033,"37944":6143,"37945":6155,"37946":5396,"37947":9810,"37948":6412,"37949":6164,"37950":9095,"37951":12236,"37952":4512,"37953":463,"37954":10065,"37955":7270,"37956":11811,"37957":5975,"37958":9549,"37959":9813,"37960":3532,"37961":7188,"37962":4975,"37963":10169,"37964":1508,"37965":5937,"37966":4137,"37967":6656,"37968":14739,"37969":8307,"37970":9690,"37971":10806,"37972":10395,"37973":959,"37974":2670,"37975":6403,"37976":5869,"37977":7117,"37978":2111,"37979":3752,"37980":4988,"37981":11135,"37982":12845,"37983":4849,"37984":4904,"37985":1485,"37986":4768,"37987":7071,"37988":12773,"37989":9760,"37990":8023,"37991":442,"37992":13724,"37993":2050,"37994":5682,"37995":12286,"37996":12320,"37997":11667,"37998":2155,"37999":4540,"38000":12912,"38001":11094,"38002":1950,"38003":3770,"38004":10688,"38005":815,"38006":14168,"38007":14395,"38008":10058,"38009":9429,"38010":1263,"38011":10108,"38012":13299,"38013":2318,"38014":5345,"38015":8840,"38016":10088,"38017":8059,"38018":1990,"38019":5813,"38020":10303,"38021":8727,"38022":11656,"38023":11534,"38024":14415,"38025":7918,"38026":13723,"38027":12515,"38028":9486,"38029":3775,"38030":4934,"38031":7550,"38032":13711,"38033":14466,"38034":14042,"38035":5561,"38036":2505,"38037":5783,"38038":873,"38039":14272,"38040":2550,"38041":5045,"38042":13359,"38043":11005,"38044":5763,"38045":13004,"38046":14226,"38047":14918,"38048":8770,"38049":10282,"38050":12661,"38051":2035,"38052":8632,"38053":10465,"38054":3361,"38055":5915,"38056":13940,"38057":3691,"38058":12215,"38059":2826,"38060":4910,"38061":9363,"38062":10449,"38063":3219,"38064":12785,"38065":9707,"38066":14373,"38067":9834,"38068":4463,"38069":15036,"38070":1569,"38071":2326,"38072":14437,"38073":6854,"38074":6428,"38075":10145,"38076":8422,"38077":9632,"38078":14926,"38079":14911,"38080":3454,"38081":7295,"38082":7653,"38083":3047,"38084":4393,"38085":13264,"38086":536,"38087":5625,"38088":6928,"38089":1177,"38090":3279,"38091":6352,"38092":440,"38093":10080,"38094":10321,"38095":3664,"38096":191,"38097":1404,"38098":13090,"38099":11105,"38100":6156,"38101":4992,"38102":6678,"38103":4459,"38104":8726,"38105":8672,"38106":12206,"38107":3049,"38108":9977,"38109":518,"38110":5753,"38111":5314,"38112":1550,"38113":11850,"38114":14157,"38115":7392,"38116":10086,"38117":13675,"38118":13000,"38119":8090,"38120":14676,"38121":9372,"38122":7913,"38123":12618,"38124":7368,"38125":2471,"38126":6889,"38127":223,"38128":6772,"38129":7187,"38130":8673,"38131":3677,"38132":13567,"38133":600,"38134":952,"38135":4115,"38136":10248,"38137":7551,"38138":12525,"38139":1011,"38140":12257,"38141":3705,"38142":13508,"38143":13553,"38144":659,"38145":6757,"38146":13218,"38147":9799,"38148":8908,"38149":7101,"38150":6757,"38151":6768,"38152":9180,"38153":3445,"38154":6405,"38155":7006,"38156":13569,"38157":12866,"38158":894,"38159":8965,"38160":158,"38161":14946,"38162":4497,"38163":14723,"38164":11412,"38165":8574,"38166":7494,"38167":1031,"38168":5592,"38169":13285,"38170":5559,"38171":13311,"38172":236,"38173":10209,"38174":939,"38175":10149,"38176":10160,"38177":14341,"38178":1891,"38179":8191,"38180":9178,"38181":10270,"38182":8528,"38183":9217,"38184":3894,"38185":378,"38186":6518,"38187":2326,"38188":5072,"38189":9286,"38190":2972,"38191":1640,"38192":4687,"38193":9514,"38194":458,"38195":2210,"38196":1387,"38197":14159,"38198":3366,"38199":4656,"38200":45,"38201":6093,"38202":7923,"38203":4553,"38204":4523,"38205":4335,"38206":4084,"38207":15089,"38208":5138,"38209":3472,"38210":4479,"38211":8946,"38212":3315,"38213":596,"38214":9271,"38215":4769,"38216":11969,"38217":4543,"38218":8254,"38219":2330,"38220":1361,"38221":5504,"38222":6452,"38223":11694,"38224":10454,"38225":6008,"38226":3612,"38227":8861,"38228":9151,"38229":6136,"38230":12384,"38231":13564,"38232":3335,"38233":5695,"38234":4740,"38235":3959,"38236":3256,"38237":13495,"38238":2841,"38239":9322,"38240":5505,"38241":5771,"38242":1432,"38243":6620,"38244":10026,"38245":13246,"38246":10261,"38247":804,"38248":7740,"38249":6569,"38250":9146,"38251":8969,"38252":15059,"38253":2346,"38254":12690,"38255":6151,"38256":9327,"38257":7321,"38258":3051,"38259":2218,"38260":8065,"38261":11394,"38262":13359,"38263":6066,"38264":6440,"38265":1291,"38266":13755,"38267":6380,"38268":8212,"38269":2423,"38270":8193,"38271":10742,"38272":14193,"38273":13436,"38274":9214,"38275":1026,"38276":14338,"38277":13225,"38278":7158,"38279":3955,"38280":4292,"38281":9479,"38282":4079,"38283":9955,"38284":8931,"38285":9624,"38286":10184,"38287":6550,"38288":6454,"38289":14366,"38290":9716,"38291":3063,"38292":12783,"38293":5866,"38294":13613,"38295":12012,"38296":3403,"38297":7241,"38298":7335,"38299":7972,"38300":5950,"38301":8599,"38302":12981,"38303":11109,"38304":8859,"38305":1745,"38306":4156,"38307":1416,"38308":11991,"38309":13060,"38310":1977,"38311":8049,"38312":12595,"38313":5840,"38314":2791,"38315":4410,"38316":12054,"38317":4495,"38318":154,"38319":8743,"38320":11389,"38321":4302,"38322":11268,"38323":13541,"38324":6221,"38325":3096,"38326":8352,"38327":1238,"38328":12384,"38329":9683,"38330":7670,"38331":4849,"38332":12684,"38333":12662,"38334":1072,"38335":14589,"38336":5219,"38337":9434,"38338":4060,"38339":13267,"38340":2568,"38341":10422,"38342":5368,"38343":8816,"38344":11334,"38345":4233,"38346":4287,"38347":2037,"38348":1783,"38349":5248,"38350":3316,"38351":3192,"38352":12583,"38353":8187,"38354":1048,"38355":14143,"38356":11248,"38357":10117,"38358":8085,"38359":11279,"38360":6789,"38361":11275,"38362":7852,"38363":2343,"38364":14187,"38365":10841,"38366":9133,"38367":7740,"38368":1945,"38369":5937,"38370":12058,"38371":93,"38372":1370,"38373":8653,"38374":4408,"38375":6635,"38376":5759,"38377":8114,"38378":6466,"38379":134,"38380":9062,"38381":4754,"38382":14258,"38383":8526,"38384":620,"38385":11249,"38386":6449,"38387":4576,"38388":9743,"38389":12072,"38390":6145,"38391":11145,"38392":7182,"38393":6884,"38394":10789,"38395":6260,"38396":1088,"38397":11206,"38398":9834,"38399":3808,"38400":8532,"38401":10343,"38402":5449,"38403":9621,"38404":5752,"38405":10641,"38406":5934,"38407":12911,"38408":3800,"38409":12754,"38410":10396,"38411":12885,"38412":9438,"38413":11337,"38414":14712,"38415":15069,"38416":8211,"38417":13844,"38418":11786,"38419":5131,"38420":11197,"38421":7086,"38422":1375,"38423":6127,"38424":6129,"38425":14820,"38426":12664,"38427":204,"38428":4015,"38429":1506,"38430":2523,"38431":8367,"38432":14045,"38433":3187,"38434":980,"38435":9010,"38436":309,"38437":22,"38438":1614,"38439":7878,"38440":13968,"38441":7276,"38442":15097,"38443":700,"38444":10110,"38445":12216,"38446":1448,"38447":9262,"38448":4673,"38449":7804,"38450":4775,"38451":960,"38452":6370,"38453":4489,"38454":3671,"38455":10509,"38456":11080,"38457":10301,"38458":905,"38459":3108,"38460":2193,"38461":4005,"38462":7657,"38463":8994,"38464":8589,"38465":10422,"38466":3127,"38467":6012,"38468":6621,"38469":6166,"38470":1580,"38471":1583,"38472":14444,"38473":14232,"38474":7774,"38475":7043,"38476":374,"38477":14053,"38478":1657,"38479":3732,"38480":158,"38481":4507,"38482":8300,"38483":3537,"38484":820,"38485":6012,"38486":14438,"38487":1798,"38488":12152,"38489":2210,"38490":7425,"38491":6730,"38492":229,"38493":3347,"38494":6610,"38495":1925,"38496":12575,"38497":5163,"38498":14943,"38499":5129,"38500":14807,"38501":5448,"38502":1535,"38503":7410,"38504":5187,"38505":9812,"38506":4601,"38507":4994,"38508":6794,"38509":3510,"38510":4797,"38511":4727,"38512":14992,"38513":11009,"38514":4981,"38515":5573,"38516":4408,"38517":4986,"38518":6785,"38519":10122,"38520":11933,"38521":2341,"38522":10887,"38523":2015,"38524":13399,"38525":11410,"38526":9722,"38527":4391,"38528":10040,"38529":13070,"38530":1888,"38531":2481,"38532":3595,"38533":11010,"38534":1125,"38535":3267,"38536":9575,"38537":11388,"38538":480,"38539":12026,"38540":4100,"38541":10366,"38542":14337,"38543":4441,"38544":6243,"38545":639,"38546":12588,"38547":5806,"38548":12051,"38549":1377,"38550":13439,"38551":13063,"38552":11448,"38553":15127,"38554":1905,"38555":14275,"38556":5179,"38557":7254,"38558":11326,"38559":4324,"38560":6760,"38561":395,"38562":11871,"38563":5320,"38564":1107,"38565":14659,"38566":9469,"38567":2883,"38568":4315,"38569":11142,"38570":14645,"38571":3788,"38572":13837,"38573":7567,"38574":2507,"38575":8080,"38576":8519,"38577":2779,"38578":15131,"38579":6116,"38580":4650,"38581":7813,"38582":11134,"38583":4933,"38584":10207,"38585":14447,"38586":7485,"38587":2872,"38588":6478,"38589":5124,"38590":11689,"38591":4167,"38592":12489,"38593":34,"38594":6551,"38595":2433,"38596":1312,"38597":14619,"38598":1033,"38599":5333,"38600":5519,"38601":3826,"38602":9524,"38603":9108,"38604":11899,"38605":1296,"38606":14336,"38607":14145,"38608":4325,"38609":2467,"38610":13427,"38611":8883,"38612":4524,"38613":11829,"38614":7579,"38615":385,"38616":2443,"38617":9989,"38618":11798,"38619":11272,"38620":9416,"38621":4815,"38622":1994,"38623":5003,"38624":14896,"38625":7559,"38626":13743,"38627":13429,"38628":9498,"38629":2571,"38630":1580,"38631":12101,"38632":14428,"38633":9746,"38634":688,"38635":4005,"38636":12389,"38637":5463,"38638":6736,"38639":13283,"38640":6007,"38641":8131,"38642":4631,"38643":7870,"38644":5017,"38645":5342,"38646":3292,"38647":8062,"38648":10673,"38649":13778,"38650":4084,"38651":2082,"38652":1783,"38653":3263,"38654":13186,"38655":3846,"38656":13750,"38657":7073,"38658":5571,"38659":60,"38660":10265,"38661":10421,"38662":11686,"38663":1064,"38664":14996,"38665":7436,"38666":3982,"38667":8732,"38668":13161,"38669":1022,"38670":7707,"38671":10081,"38672":13148,"38673":34,"38674":749,"38675":10650,"38676":12324,"38677":966,"38678":9800,"38679":12638,"38680":5679,"38681":3023,"38682":7332,"38683":4261,"38684":7709,"38685":4517,"38686":4938,"38687":11022,"38688":7683,"38689":7284,"38690":3134,"38691":5491,"38692":8438,"38693":13915,"38694":10484,"38695":9503,"38696":4466,"38697":8158,"38698":7691,"38699":7989,"38700":11862,"38701":2527,"38702":11591,"38703":12369,"38704":4583,"38705":2595,"38706":12726,"38707":11027,"38708":11658,"38709":7779,"38710":872,"38711":6051,"38712":14021,"38713":4598,"38714":13440,"38715":3559,"38716":11590,"38717":89,"38718":2280,"38719":13748,"38720":5467,"38721":9873,"38722":11228,"38723":12240,"38724":1572,"38725":6762,"38726":7752,"38727":7818,"38728":4617,"38729":253,"38730":5547,"38731":1544,"38732":4949,"38733":3361,"38734":2564,"38735":451,"38736":4796,"38737":6803,"38738":14193,"38739":1801,"38740":1409,"38741":13280,"38742":10803,"38743":3010,"38744":7333,"38745":9060,"38746":1004,"38747":10157,"38748":2633,"38749":3033,"38750":6291,"38751":6032,"38752":6041,"38753":5700,"38754":2029,"38755":9694,"38756":12425,"38757":6726,"38758":3361,"38759":1674,"38760":2386,"38761":14822,"38762":10158,"38763":7347,"38764":483,"38765":13723,"38766":13022,"38767":2150,"38768":13943,"38769":2672,"38770":7961,"38771":11692,"38772":10997,"38773":11451,"38774":5714,"38775":4703,"38776":11081,"38777":10042,"38778":3659,"38779":7799,"38780":7081,"38781":1866,"38782":14225,"38783":15075,"38784":14216,"38785":3644,"38786":3460,"38787":9467,"38788":11537,"38789":13252,"38790":4309,"38791":772,"38792":159,"38793":1201,"38794":14387,"38795":7758,"38796":4124,"38797":1222,"38798":8722,"38799":3369,"38800":8528,"38801":4630,"38802":15121,"38803":8606,"38804":73,"38805":2466,"38806":7103,"38807":10211,"38808":1224,"38809":12505,"38810":9086,"38811":15002,"38812":4867,"38813":1397,"38814":6111,"38815":945,"38816":5416,"38817":12020,"38818":9475,"38819":5500,"38820":14444,"38821":3834,"38822":7949,"38823":4027,"38824":13718,"38825":7195,"38826":5306,"38827":1239,"38828":9007,"38829":9990,"38830":4936,"38831":8623,"38832":6832,"38833":3365,"38834":2777,"38835":13584,"38836":12027,"38837":7686,"38838":9879,"38839":14766,"38840":4164,"38841":1546,"38842":2654,"38843":2616,"38844":13716,"38845":14947,"38846":6065,"38847":4218,"38848":9682,"38849":7903,"38850":5789,"38851":13697,"38852":3359,"38853":12278,"38854":5758,"38855":11148,"38856":13235,"38857":10461,"38858":2331,"38859":3261,"38860":15125,"38861":10739,"38862":5888,"38863":10802,"38864":7873,"38865":12935,"38866":9469,"38867":14368,"38868":3589,"38869":9004,"38870":13773,"38871":14917,"38872":4881,"38873":4000,"38874":11627,"38875":5653,"38876":5325,"38877":1473,"38878":3330,"38879":11628,"38880":7252,"38881":8479,"38882":10820,"38883":4133,"38884":4979,"38885":13728,"38886":11636,"38887":14881,"38888":5227,"38889":14187,"38890":9195,"38891":4604,"38892":7260,"38893":9003,"38894":9384,"38895":6751,"38896":9342,"38897":5244,"38898":473,"38899":7603,"38900":3633,"38901":5031,"38902":453,"38903":35,"38904":3567,"38905":14427,"38906":3836,"38907":5399,"38908":11050,"38909":12141,"38910":13245,"38911":8044,"38912":11336,"38913":4420,"38914":8850,"38915":4918,"38916":1708,"38917":6302,"38918":11372,"38919":13677,"38920":13211,"38921":14277,"38922":3805,"38923":8838,"38924":9748,"38925":5343,"38926":1452,"38927":13436,"38928":8407,"38929":13252,"38930":7210,"38931":8926,"38932":541,"38933":2390,"38934":9427,"38935":13713,"38936":11969,"38937":14122,"38938":216,"38939":14432,"38940":3188,"38941":6223,"38942":12043,"38943":14213,"38944":3141,"38945":11890,"38946":2114,"38947":6508,"38948":10464,"38949":11014,"38950":13039,"38951":7118,"38952":9247,"38953":783,"38954":1728,"38955":5943,"38956":994,"38957":11461,"38958":1330,"38959":11952,"38960":3009,"38961":10189,"38962":14726,"38963":10697,"38964":8778,"38965":8910,"38966":12160,"38967":8140,"38968":12487,"38969":5642,"38970":11135,"38971":7889,"38972":8902,"38973":953,"38974":6190,"38975":5253,"38976":6282,"38977":8229,"38978":11569,"38979":12145,"38980":2828,"38981":4611,"38982":9981,"38983":10114,"38984":7972,"38985":8559,"38986":258,"38987":8304,"38988":13379,"38989":12418,"38990":2415,"38991":11330,"38992":8303,"38993":5870,"38994":8353,"38995":2845,"38996":1106,"38997":11190,"38998":331,"38999":8068,"39000":13324,"39001":124,"39002":11869,"39003":14543,"39004":9002,"39005":115,"39006":7552,"39007":4504,"39008":2517,"39009":9324,"39010":13294,"39011":9716,"39012":5147,"39013":13041,"39014":10813,"39015":6978,"39016":3528,"39017":3669,"39018":4863,"39019":9547,"39020":3401,"39021":3189,"39022":6934,"39023":383,"39024":712,"39025":1974,"39026":4885,"39027":970,"39028":5008,"39029":8308,"39030":6022,"39031":2668,"39032":11934,"39033":732,"39034":629,"39035":6570,"39036":6798,"39037":8621,"39038":7435,"39039":3763,"39040":6528,"39041":2450,"39042":5506,"39043":11861,"39044":8969,"39045":4412,"39046":12228,"39047":4570,"39048":1090,"39049":5186,"39050":14766,"39051":8429,"39052":5502,"39053":13769,"39054":10067,"39055":6181,"39056":10745,"39057":11161,"39058":7621,"39059":12963,"39060":12782,"39061":7473,"39062":8892,"39063":12857,"39064":810,"39065":14341,"39066":4404,"39067":14590,"39068":9742,"39069":13418,"39070":306,"39071":5209,"39072":5143,"39073":2962,"39074":2635,"39075":12566,"39076":3725,"39077":839,"39078":5101,"39079":7027,"39080":1384,"39081":618,"39082":357,"39083":10396,"39084":899,"39085":7892,"39086":3219,"39087":913,"39088":14029,"39089":8836,"39090":11387,"39091":1996,"39092":11077,"39093":14248,"39094":3849,"39095":11639,"39096":11237,"39097":12183,"39098":6140,"39099":5554,"39100":3068,"39101":5339,"39102":8959,"39103":8475,"39104":13944,"39105":4497,"39106":7661,"39107":5844,"39108":11358,"39109":1097,"39110":1192,"39111":11601,"39112":10067,"39113":8234,"39114":10537,"39115":13639,"39116":10998,"39117":12098,"39118":5556,"39119":1923,"39120":12331,"39121":7664,"39122":3212,"39123":8729,"39124":14235,"39125":10850,"39126":4196,"39127":8334,"39128":1912,"39129":3327,"39130":14158,"39131":5935,"39132":2799,"39133":12827,"39134":8018,"39135":4159,"39136":9281,"39137":7199,"39138":14776,"39139":11118,"39140":14459,"39141":6472,"39142":321,"39143":12972,"39144":10116,"39145":6232,"39146":1294,"39147":6948,"39148":12372,"39149":14120,"39150":641,"39151":7994,"39152":1766,"39153":2921,"39154":9264,"39155":10734,"39156":11585,"39157":14308,"39158":14564,"39159":53,"39160":2582,"39161":12247,"39162":1052,"39163":9394,"39164":11781,"39165":10354,"39166":4124,"39167":9388,"39168":6433,"39169":1130,"39170":10255,"39171":12337,"39172":11197,"39173":4623,"39174":677,"39175":1289,"39176":6233,"39177":5948,"39178":8816,"39179":7982,"39180":1213,"39181":9686,"39182":6237,"39183":1966,"39184":10621,"39185":7888,"39186":471,"39187":9965,"39188":11581,"39189":2043,"39190":6783,"39191":9245,"39192":13021,"39193":12983,"39194":7543,"39195":1590,"39196":152,"39197":1665,"39198":7076,"39199":13251,"39200":6299,"39201":13125,"39202":11899,"39203":9507,"39204":2791,"39205":13828,"39206":14277,"39207":1066,"39208":12327,"39209":2959,"39210":4367,"39211":4544,"39212":1970,"39213":298,"39214":9265,"39215":10142,"39216":7244,"39217":2083,"39218":9650,"39219":3026,"39220":13528,"39221":199,"39222":11802,"39223":11689,"39224":9889,"39225":872,"39226":6122,"39227":14990,"39228":13763,"39229":5354,"39230":4168,"39231":1698,"39232":11436,"39233":725,"39234":11583,"39235":719,"39236":12868,"39237":1393,"39238":2549,"39239":12981,"39240":4887,"39241":2978,"39242":9651,"39243":3653,"39244":10846,"39245":2627,"39246":11736,"39247":3757,"39248":750,"39249":15036,"39250":5479,"39251":130,"39252":1984,"39253":13877,"39254":11872,"39255":11591,"39256":14595,"39257":4820,"39258":10047,"39259":10121,"39260":9277,"39261":12066,"39262":5519,"39263":14601,"39264":10685,"39265":14544,"39266":1051,"39267":2079,"39268":7170,"39269":13732,"39270":13668,"39271":14292,"39272":14056,"39273":3024,"39274":9745,"39275":9973,"39276":8437,"39277":3244,"39278":10082,"39279":982,"39280":5965,"39281":905,"39282":7387,"39283":5517,"39284":14136,"39285":6330,"39286":1160,"39287":15063,"39288":10589,"39289":6223,"39290":577,"39291":3549,"39292":2994,"39293":4305,"39294":15060,"39295":11019,"39296":12452,"39297":2251,"39298":763,"39299":9458,"39300":7359,"39301":14038,"39302":10659,"39303":12952,"39304":960,"39305":468,"39306":6210,"39307":4064,"39308":9716,"39309":4284,"39310":6680,"39311":9460,"39312":5819,"39313":2850,"39314":15063,"39315":4581,"39316":1356,"39317":217,"39318":13690,"39319":2583,"39320":6060,"39321":3285,"39322":4427,"39323":12935,"39324":6894,"39325":9049,"39326":5354,"39327":7451,"39328":12495,"39329":5767,"39330":978,"39331":8186,"39332":13186,"39333":6499,"39334":11210,"39335":4226,"39336":2242,"39337":903,"39338":4550,"39339":12404,"39340":377,"39341":14562,"39342":827,"39343":12472,"39344":2226,"39345":85,"39346":11215,"39347":10365,"39348":7941,"39349":6294,"39350":3491,"39351":11802,"39352":11465,"39353":1596,"39354":13524,"39355":4105,"39356":12556,"39357":13969,"39358":8375,"39359":7364,"39360":12231,"39361":3232,"39362":4560,"39363":5299,"39364":10907,"39365":9986,"39366":1386,"39367":4766,"39368":7077,"39369":8201,"39370":9590,"39371":14286,"39372":2758,"39373":8198,"39374":7150,"39375":6010,"39376":12884,"39377":15017,"39378":10739,"39379":11774,"39380":1925,"39381":11727,"39382":563,"39383":4335,"39384":7322,"39385":7229,"39386":12234,"39387":12146,"39388":7612,"39389":12782,"39390":7369,"39391":9853,"39392":597,"39393":10490,"39394":10173,"39395":358,"39396":14185,"39397":7528,"39398":7573,"39399":2128,"39400":6618,"39401":4791,"39402":15136,"39403":12579,"39404":3381,"39405":7720,"39406":11498,"39407":11530,"39408":15094,"39409":6916,"39410":9594,"39411":3380,"39412":1534,"39413":920,"39414":13500,"39415":482,"39416":9061,"39417":14403,"39418":6864,"39419":11551,"39420":6107,"39421":12764,"39422":6058,"39423":2784,"39424":3733,"39425":9509,"39426":7176,"39427":814,"39428":14791,"39429":2153,"39430":7043,"39431":1781,"39432":3052,"39433":2806,"39434":329,"39435":12822,"39436":2844,"39437":11578,"39438":3996,"39439":8017,"39440":7957,"39441":4041,"39442":1186,"39443":3225,"39444":6289,"39445":10061,"39446":8976,"39447":6031,"39448":2970,"39449":14287,"39450":12952,"39451":11503,"39452":10033,"39453":5464,"39454":6215,"39455":11586,"39456":6366,"39457":11002,"39458":4789,"39459":8682,"39460":11168,"39461":79,"39462":11055,"39463":6427,"39464":10618,"39465":1928,"39466":2650,"39467":9198,"39468":693,"39469":10642,"39470":73,"39471":8908,"39472":6791,"39473":5203,"39474":5750,"39475":3308,"39476":12985,"39477":8893,"39478":6595,"39479":4983,"39480":6446,"39481":8801,"39482":2217,"39483":10910,"39484":3089,"39485":14538,"39486":14189,"39487":6032,"39488":6283,"39489":3288,"39490":3600,"39491":3907,"39492":14644,"39493":14504,"39494":1348,"39495":3492,"39496":5277,"39497":8455,"39498":1514,"39499":13049,"39500":12040,"39501":7942,"39502":2968,"39503":9158,"39504":10232,"39505":11570,"39506":13424,"39507":8225,"39508":1518,"39509":8743,"39510":6513,"39511":3078,"39512":2181,"39513":9468,"39514":11634,"39515":10256,"39516":8788,"39517":13537,"39518":14375,"39519":6668,"39520":868,"39521":10528,"39522":13580,"39523":9147,"39524":4262,"39525":8456,"39526":8744,"39527":10391,"39528":1843,"39529":6538,"39530":3957,"39531":8651,"39532":11209,"39533":10961,"39534":6513,"39535":7210,"39536":1918,"39537":4148,"39538":9545,"39539":5134,"39540":9960,"39541":11605,"39542":11292,"39543":1793,"39544":12129,"39545":4420,"39546":5909,"39547":9172,"39548":892,"39549":7014,"39550":6876,"39551":1577,"39552":573,"39553":703,"39554":14388,"39555":5120,"39556":1431,"39557":13704,"39558":14627,"39559":7938,"39560":13244,"39561":13201,"39562":8697,"39563":7760,"39564":14933,"39565":8522,"39566":256,"39567":6673,"39568":1528,"39569":3414,"39570":14526,"39571":11786,"39572":12061,"39573":4986,"39574":12022,"39575":2663,"39576":14698,"39577":8963,"39578":12604,"39579":10714,"39580":9183,"39581":14065,"39582":9291,"39583":8887,"39584":6774,"39585":10947,"39586":2742,"39587":14343,"39588":581,"39589":3453,"39590":7924,"39591":503,"39592":11851,"39593":10573,"39594":7827,"39595":12495,"39596":2530,"39597":3975,"39598":3244,"39599":5157,"39600":12392,"39601":6043,"39602":512,"39603":2694,"39604":4327,"39605":10646,"39606":4026,"39607":7903,"39608":8281,"39609":13280,"39610":13028,"39611":8690,"39612":3755,"39613":14969,"39614":5536,"39615":8263,"39616":9792,"39617":6107,"39618":8137,"39619":4092,"39620":2914,"39621":3601,"39622":7959,"39623":7544,"39624":12546,"39625":10302,"39626":12332,"39627":1970,"39628":6068,"39629":5543,"39630":11846,"39631":7294,"39632":5473,"39633":11355,"39634":7702,"39635":14094,"39636":1898,"39637":1958,"39638":5873,"39639":14189,"39640":6793,"39641":13167,"39642":13647,"39643":11170,"39644":1984,"39645":1340,"39646":11949,"39647":7433,"39648":10846,"39649":14489,"39650":14295,"39651":7654,"39652":3738,"39653":318,"39654":979,"39655":9837,"39656":1909,"39657":2085,"39658":2012,"39659":2291,"39660":14793,"39661":3672,"39662":3022,"39663":11455,"39664":8890,"39665":2905,"39666":8080,"39667":4549,"39668":8774,"39669":3131,"39670":9448,"39671":5793,"39672":6670,"39673":1710,"39674":7453,"39675":11861,"39676":3997,"39677":723,"39678":15117,"39679":2367,"39680":1982,"39681":1706,"39682":13319,"39683":12496,"39684":8383,"39685":3771,"39686":2082,"39687":14782,"39688":7511,"39689":11647,"39690":9920,"39691":2019,"39692":1369,"39693":623,"39694":828,"39695":3883,"39696":5823,"39697":7913,"39698":130,"39699":11822,"39700":10876,"39701":11930,"39702":11240,"39703":7716,"39704":501,"39705":9533,"39706":148,"39707":2075,"39708":9449,"39709":13097,"39710":14202,"39711":13395,"39712":9469,"39713":14835,"39714":7685,"39715":2107,"39716":3354,"39717":2902,"39718":10776,"39719":3569,"39720":14370,"39721":12549,"39722":11478,"39723":14527,"39724":14612,"39725":9949,"39726":10662,"39727":3102,"39728":13585,"39729":2321,"39730":12417,"39731":2128,"39732":10047,"39733":8277,"39734":2012,"39735":14803,"39736":3500,"39737":4170,"39738":1235,"39739":1343,"39740":10083,"39741":7225,"39742":747,"39743":11847,"39744":1338,"39745":5511,"39746":14396,"39747":7326,"39748":1,"39749":6527,"39750":10335,"39751":1427,"39752":7831,"39753":12623,"39754":6856,"39755":11876,"39756":10035,"39757":12502,"39758":3044,"39759":10672,"39760":13652,"39761":5321,"39762":1304,"39763":5719,"39764":2176,"39765":8102,"39766":5329,"39767":3849,"39768":4273,"39769":11391,"39770":1972,"39771":15026,"39772":13221,"39773":10027,"39774":8113,"39775":9484,"39776":9687,"39777":199,"39778":12442,"39779":5305,"39780":3132,"39781":1653,"39782":14841,"39783":2827,"39784":11120,"39785":4508,"39786":9611,"39787":6772,"39788":14389,"39789":13355,"39790":9922,"39791":2347,"39792":9069,"39793":10515,"39794":8165,"39795":10796,"39796":1352,"39797":2736,"39798":14081,"39799":2723,"39800":11578,"39801":375,"39802":6276,"39803":11671,"39804":9988,"39805":5258,"39806":11205,"39807":9691,"39808":15023,"39809":10558,"39810":13910,"39811":13273,"39812":9444,"39813":9972,"39814":8406,"39815":11435,"39816":5799,"39817":1301,"39818":2066,"39819":1001,"39820":14100,"39821":14494,"39822":4439,"39823":8913,"39824":7110,"39825":7474,"39826":8413,"39827":1775,"39828":5044,"39829":6333,"39830":13619,"39831":1222,"39832":6982,"39833":14244,"39834":6914,"39835":14968,"39836":8820,"39837":6462,"39838":12205,"39839":5471,"39840":11742,"39841":796,"39842":8012,"39843":7111,"39844":14136,"39845":13363,"39846":12468,"39847":7030,"39848":14117,"39849":11831,"39850":6743,"39851":3773,"39852":603,"39853":11528,"39854":3438,"39855":11538,"39856":12595,"39857":6778,"39858":8810,"39859":8899,"39860":1848,"39861":1622,"39862":7813,"39863":3691,"39864":3497,"39865":7872,"39866":2704,"39867":5745,"39868":8459,"39869":10808,"39870":11876,"39871":14730,"39872":13979,"39873":5642,"39874":3718,"39875":5768,"39876":12297,"39877":7156,"39878":9765,"39879":1102,"39880":4426,"39881":2892,"39882":12798,"39883":4742,"39884":4121,"39885":6929,"39886":14592,"39887":6394,"39888":1890,"39889":1154,"39890":15065,"39891":13729,"39892":10040,"39893":10903,"39894":2972,"39895":12482,"39896":5811,"39897":11283,"39898":3670,"39899":9621,"39900":8412,"39901":8345,"39902":152,"39903":11909,"39904":3744,"39905":8628,"39906":5076,"39907":4751,"39908":1040,"39909":11796,"39910":13306,"39911":13503,"39912":642,"39913":7706,"39914":10037,"39915":11671,"39916":6842,"39917":13642,"39918":10291,"39919":67,"39920":10942,"39921":13045,"39922":6981,"39923":15050,"39924":9766,"39925":9947,"39926":8154,"39927":13634,"39928":8780,"39929":5875,"39930":4119,"39931":9423,"39932":12581,"39933":4354,"39934":11048,"39935":2921,"39936":14975,"39937":704,"39938":13447,"39939":14285,"39940":6455,"39941":5103,"39942":15094,"39943":4139,"39944":5556,"39945":4776,"39946":11775,"39947":2807,"39948":844,"39949":7167,"39950":2774,"39951":13154,"39952":2460,"39953":11472,"39954":2501,"39955":10744,"39956":12116,"39957":8171,"39958":3685,"39959":12785,"39960":6954,"39961":1348,"39962":14470,"39963":4474,"39964":7311,"39965":11918,"39966":781,"39967":5132,"39968":14600,"39969":4448,"39970":2932,"39971":7006,"39972":4642,"39973":11619,"39974":4599,"39975":71,"39976":13739,"39977":2831,"39978":315,"39979":6011,"39980":12284,"39981":7877,"39982":4048,"39983":12932,"39984":12087,"39985":3318,"39986":12400,"39987":12959,"39988":4985,"39989":4459,"39990":1398,"39991":6681,"39992":7435,"39993":12902,"39994":7464,"39995":6939,"39996":11047,"39997":5529,"39998":3893,"39999":11016,"40000":4586,"40001":4342,"40002":2983,"40003":13469,"40004":3034,"40005":160,"40006":6859,"40007":6647,"40008":5292,"40009":12439,"40010":11861,"40011":14173,"40012":544,"40013":15034,"40014":11309,"40015":2181,"40016":6611,"40017":2166,"40018":13265,"40019":1584,"40020":13892,"40021":9746,"40022":3689,"40023":1597,"40024":9834,"40025":12926,"40026":3022,"40027":4196,"40028":14623,"40029":8031,"40030":11902,"40031":8750,"40032":7238,"40033":4945,"40034":7027,"40035":2535,"40036":7466,"40037":10401,"40038":13796,"40039":12019,"40040":164,"40041":1556,"40042":8353,"40043":6986,"40044":14194,"40045":3766,"40046":5210,"40047":13451,"40048":8269,"40049":3446,"40050":1410,"40051":11932,"40052":13079,"40053":7392,"40054":413,"40055":233,"40056":2609,"40057":11968,"40058":6103,"40059":5328,"40060":902,"40061":5626,"40062":5965,"40063":10242,"40064":9425,"40065":5970,"40066":6598,"40067":4711,"40068":8203,"40069":13925,"40070":6289,"40071":2880,"40072":11939,"40073":12366,"40074":6341,"40075":10267,"40076":4384,"40077":9236,"40078":13872,"40079":4556,"40080":11491,"40081":6835,"40082":6760,"40083":166,"40084":1108,"40085":13225,"40086":906,"40087":4472,"40088":10760,"40089":15042,"40090":11127,"40091":718,"40092":2371,"40093":10574,"40094":4362,"40095":11242,"40096":5512,"40097":6572,"40098":4700,"40099":6620,"40100":2496,"40101":14540,"40102":8633,"40103":1506,"40104":14968,"40105":10290,"40106":4265,"40107":2106,"40108":3763,"40109":14124,"40110":2755,"40111":4699,"40112":838,"40113":11826,"40114":4206,"40115":14719,"40116":11452,"40117":11292,"40118":14981,"40119":1163,"40120":2402,"40121":5440,"40122":12867,"40123":14070,"40124":8464,"40125":9552,"40126":8912,"40127":14283,"40128":1488,"40129":12028,"40130":6201,"40131":12145,"40132":3779,"40133":9013,"40134":4141,"40135":11488,"40136":1065,"40137":4579,"40138":6175,"40139":1466,"40140":2950,"40141":4029,"40142":910,"40143":8413,"40144":13657,"40145":946,"40146":9435,"40147":3409,"40148":11851,"40149":1423,"40150":11914,"40151":12022,"40152":12802,"40153":8940,"40154":3853,"40155":12929,"40156":14220,"40157":14777,"40158":1342,"40159":11597,"40160":11711,"40161":1690,"40162":7032,"40163":7434,"40164":13749,"40165":8224,"40166":13196,"40167":14398,"40168":8861,"40169":4429,"40170":14635,"40171":13740,"40172":13165,"40173":12283,"40174":4733,"40175":14941,"40176":7740,"40177":10884,"40178":1547,"40179":12269,"40180":5777,"40181":985,"40182":2771,"40183":9168,"40184":150,"40185":10806,"40186":1615,"40187":4203,"40188":13554,"40189":9424,"40190":5018,"40191":5938,"40192":11526,"40193":3988,"40194":10582,"40195":4943,"40196":13282,"40197":14724,"40198":6381,"40199":5356,"40200":13136,"40201":9198,"40202":9477,"40203":2085,"40204":1664,"40205":13823,"40206":8304,"40207":7730,"40208":3751,"40209":384,"40210":6368,"40211":287,"40212":6974,"40213":13949,"40214":2968,"40215":7028,"40216":13064,"40217":8194,"40218":10410,"40219":11001,"40220":487,"40221":10254,"40222":4948,"40223":3863,"40224":8517,"40225":176,"40226":10857,"40227":5918,"40228":7839,"40229":10545,"40230":14539,"40231":1965,"40232":3224,"40233":78,"40234":10674,"40235":13253,"40236":1683,"40237":8034,"40238":1856,"40239":7356,"40240":5925,"40241":11503,"40242":1664,"40243":12723,"40244":254,"40245":1645,"40246":10638,"40247":13627,"40248":2279,"40249":10780,"40250":2441,"40251":2197,"40252":14080,"40253":12367,"40254":1159,"40255":11166,"40256":7832,"40257":3235,"40258":6098,"40259":10915,"40260":11474,"40261":9673,"40262":12887,"40263":4362,"40264":13125,"40265":2710,"40266":3376,"40267":10672,"40268":2327,"40269":8633,"40270":10160,"40271":13039,"40272":11161,"40273":15134,"40274":12990,"40275":11118,"40276":7461,"40277":5354,"40278":13316,"40279":9255,"40280":1952,"40281":9259,"40282":8955,"40283":1626,"40284":12871,"40285":2417,"40286":10250,"40287":6246,"40288":11345,"40289":13242,"40290":1857,"40291":11598,"40292":11914,"40293":3026,"40294":7724,"40295":7241,"40296":9107,"40297":1030,"40298":8925,"40299":6051,"40300":5612,"40301":5150,"40302":6470,"40303":6945,"40304":6624,"40305":4115,"40306":1089,"40307":11849,"40308":9921,"40309":14494,"40310":8462,"40311":2375,"40312":4918,"40313":4634,"40314":1281,"40315":12079,"40316":278,"40317":495,"40318":11435,"40319":10824,"40320":7330,"40321":2692,"40322":4986,"40323":4798,"40324":15043,"40325":10180,"40326":10061,"40327":434,"40328":5491,"40329":9909,"40330":6962,"40331":9587,"40332":1515,"40333":8873,"40334":540,"40335":8855,"40336":7711,"40337":13013,"40338":3698,"40339":14844,"40340":12348,"40341":14342,"40342":3567,"40343":6187,"40344":12887,"40345":6812,"40346":6222,"40347":11733,"40348":5107,"40349":1854,"40350":9190,"40351":7561,"40352":793,"40353":3092,"40354":10943,"40355":4420,"40356":9816,"40357":10624,"40358":8444,"40359":8744,"40360":13093,"40361":14814,"40362":14538,"40363":11140,"40364":2659,"40365":3980,"40366":13784,"40367":10741,"40368":8372,"40369":11349,"40370":1027,"40371":1739,"40372":13851,"40373":4919,"40374":2394,"40375":1675,"40376":11938,"40377":11579,"40378":2247,"40379":7677,"40380":6723,"40381":462,"40382":2005,"40383":15056,"40384":3393,"40385":7366,"40386":1642,"40387":13748,"40388":6309,"40389":14880,"40390":7752,"40391":8947,"40392":2448,"40393":8309,"40394":5270,"40395":1341,"40396":2564,"40397":14445,"40398":12170,"40399":7120,"40400":6879,"40401":5569,"40402":9955,"40403":10616,"40404":197,"40405":11436,"40406":8317,"40407":6137,"40408":14107,"40409":1932,"40410":12509,"40411":14810,"40412":10283,"40413":10429,"40414":4958,"40415":10300,"40416":3518,"40417":4046,"40418":8460,"40419":13002,"40420":14218,"40421":7926,"40422":14565,"40423":3166,"40424":7517,"40425":13476,"40426":10086,"40427":9746,"40428":7998,"40429":4021,"40430":7034,"40431":7044,"40432":4103,"40433":5564,"40434":8415,"40435":1274,"40436":3243,"40437":3285,"40438":10337,"40439":7720,"40440":4305,"40441":9735,"40442":8690,"40443":1271,"40444":10271,"40445":2753,"40446":6147,"40447":13070,"40448":12027,"40449":14825,"40450":7758,"40451":257,"40452":6628,"40453":14088,"40454":11280,"40455":661,"40456":2879,"40457":3205,"40458":7283,"40459":1986,"40460":11747,"40461":14365,"40462":12384,"40463":6163,"40464":9348,"40465":4634,"40466":10275,"40467":9058,"40468":497,"40469":2940,"40470":7601,"40471":559,"40472":3487,"40473":1616,"40474":8512,"40475":10454,"40476":6264,"40477":94,"40478":2327,"40479":13290,"40480":5697,"40481":4702,"40482":6412,"40483":13608,"40484":375,"40485":12648,"40486":3665,"40487":4347,"40488":10270,"40489":10198,"40490":2009,"40491":4012,"40492":4814,"40493":11295,"40494":4056,"40495":632,"40496":8929,"40497":12205,"40498":13912,"40499":1880,"40500":12786,"40501":8693,"40502":2850,"40503":4815,"40504":5700,"40505":14094,"40506":961,"40507":14361,"40508":6537,"40509":12251,"40510":7290,"40511":7563,"40512":9025,"40513":6595,"40514":11440,"40515":1647,"40516":7618,"40517":2662,"40518":11369,"40519":4672,"40520":1980,"40521":3140,"40522":14203,"40523":8663,"40524":11024,"40525":13643,"40526":10475,"40527":12334,"40528":12947,"40529":12321,"40530":2036,"40531":4483,"40532":11381,"40533":11425,"40534":9247,"40535":13612,"40536":7779,"40537":8279,"40538":2692,"40539":6478,"40540":8659,"40541":784,"40542":4632,"40543":802,"40544":3166,"40545":3611,"40546":6598,"40547":11348,"40548":8412,"40549":3044,"40550":1821,"40551":2249,"40552":3525,"40553":6192,"40554":7296,"40555":6819,"40556":7381,"40557":11273,"40558":35,"40559":162,"40560":3133,"40561":10958,"40562":10231,"40563":3148,"40564":9618,"40565":7201,"40566":9042,"40567":12236,"40568":6493,"40569":4222,"40570":12846,"40571":10798,"40572":65,"40573":5596,"40574":14931,"40575":8266,"40576":9549,"40577":12739,"40578":9611,"40579":10667,"40580":10189,"40581":5580,"40582":10711,"40583":537,"40584":12065,"40585":11030,"40586":4971,"40587":6638,"40588":7033,"40589":6620,"40590":7584,"40591":1078,"40592":10134,"40593":11026,"40594":3546,"40595":7516,"40596":2346,"40597":9084,"40598":758,"40599":3027,"40600":1578,"40601":2697,"40602":7699,"40603":3411,"40604":10086,"40605":842,"40606":12865,"40607":14402,"40608":7182,"40609":11858,"40610":9165,"40611":14653,"40612":9749,"40613":14782,"40614":2811,"40615":6185,"40616":13905,"40617":1462,"40618":10121,"40619":7526,"40620":11560,"40621":12904,"40622":12735,"40623":1559,"40624":14682,"40625":4125,"40626":10684,"40627":2287,"40628":11308,"40629":7032,"40630":11321,"40631":3888,"40632":6705,"40633":13275,"40634":12347,"40635":7934,"40636":4769,"40637":10365,"40638":208,"40639":9289,"40640":14535,"40641":3666,"40642":4073,"40643":11167,"40644":9417,"40645":412,"40646":1979,"40647":1963,"40648":14212,"40649":8014,"40650":14166,"40651":11967,"40652":1526,"40653":12998,"40654":11486,"40655":13041,"40656":14182,"40657":6649,"40658":9790,"40659":8676,"40660":10378,"40661":9936,"40662":2376,"40663":1064,"40664":10732,"40665":11911,"40666":8913,"40667":1181,"40668":5296,"40669":14799,"40670":11513,"40671":5403,"40672":5724,"40673":12066,"40674":12277,"40675":5745,"40676":12194,"40677":14958,"40678":3260,"40679":11447,"40680":2913,"40681":8326,"40682":744,"40683":4859,"40684":12138,"40685":5348,"40686":10538,"40687":2323,"40688":10546,"40689":391,"40690":10287,"40691":10333,"40692":13024,"40693":11933,"40694":5628,"40695":12049,"40696":2405,"40697":13670,"40698":11853,"40699":6934,"40700":10208,"40701":954,"40702":6544,"40703":3473,"40704":1773,"40705":4564,"40706":17,"40707":869,"40708":263,"40709":6875,"40710":7913,"40711":7442,"40712":10105,"40713":5960,"40714":7394,"40715":13670,"40716":4874,"40717":5227,"40718":1826,"40719":14474,"40720":8420,"40721":10896,"40722":11087,"40723":9651,"40724":177,"40725":14236,"40726":632,"40727":2969,"40728":13778,"40729":9231,"40730":2512,"40731":9622,"40732":10515,"40733":13113,"40734":9354,"40735":11754,"40736":10897,"40737":1964,"40738":12447,"40739":8051,"40740":3238,"40741":10429,"40742":3859,"40743":9477,"40744":5897,"40745":9318,"40746":4838,"40747":11781,"40748":6902,"40749":3365,"40750":12980,"40751":2639,"40752":5994,"40753":11156,"40754":10187,"40755":11874,"40756":1273,"40757":3374,"40758":13189,"40759":4946,"40760":13054,"40761":8187,"40762":7665,"40763":14310,"40764":12575,"40765":3011,"40766":7906,"40767":14428,"40768":13041,"40769":3401,"40770":3055,"40771":12088,"40772":7515,"40773":3664,"40774":2376,"40775":7950,"40776":10086,"40777":6642,"40778":10467,"40779":5221,"40780":11291,"40781":9311,"40782":2720,"40783":2073,"40784":8992,"40785":4900,"40786":13710,"40787":13051,"40788":6734,"40789":2942,"40790":8551,"40791":11956,"40792":400,"40793":7283,"40794":1950,"40795":2061,"40796":6558,"40797":13676,"40798":648,"40799":2579,"40800":2011,"40801":4934,"40802":710,"40803":12509,"40804":7663,"40805":6739,"40806":14556,"40807":9945,"40808":4092,"40809":2344,"40810":8949,"40811":2053,"40812":2968,"40813":14404,"40814":10165,"40815":4083,"40816":14594,"40817":1315,"40818":11078,"40819":7607,"40820":1412,"40821":4322,"40822":13095,"40823":1131,"40824":8386,"40825":3891,"40826":6004,"40827":13558,"40828":3037,"40829":4464,"40830":3219,"40831":4010,"40832":9880,"40833":3471,"40834":10252,"40835":5215,"40836":14760,"40837":2676,"40838":4551,"40839":6613,"40840":5897,"40841":13111,"40842":1109,"40843":9413,"40844":3268,"40845":9434,"40846":2709,"40847":8365,"40848":12545,"40849":10143,"40850":6159,"40851":12458,"40852":4240,"40853":10633,"40854":5126,"40855":13280,"40856":9497,"40857":14252,"40858":5907,"40859":9863,"40860":6572,"40861":397,"40862":13590,"40863":13414,"40864":14478,"40865":3435,"40866":14952,"40867":9988,"40868":9930,"40869":300,"40870":3154,"40871":3198,"40872":14615,"40873":2929,"40874":5350,"40875":15112,"40876":8169,"40877":8811,"40878":10013,"40879":7646,"40880":887,"40881":4492,"40882":5094,"40883":5296,"40884":7742,"40885":816,"40886":7042,"40887":5612,"40888":14787,"40889":294,"40890":7160,"40891":1070,"40892":7111,"40893":5736,"40894":10546,"40895":5203,"40896":11942,"40897":14236,"40898":6716,"40899":6605,"40900":13704,"40901":10859,"40902":9837,"40903":9739,"40904":12808,"40905":7395,"40906":7897,"40907":11822,"40908":9289,"40909":13798,"40910":1717,"40911":13865,"40912":13264,"40913":5366,"40914":10469,"40915":9944,"40916":258,"40917":6680,"40918":3142,"40919":6277,"40920":7818,"40921":3570,"40922":3338,"40923":11150,"40924":7489,"40925":12188,"40926":12516,"40927":14162,"40928":3180,"40929":7301,"40930":380,"40931":8545,"40932":5938,"40933":10069,"40934":9785,"40935":7336,"40936":10770,"40937":9179,"40938":8520,"40939":8256,"40940":5546,"40941":9610,"40942":14973,"40943":12988,"40944":1600,"40945":5480,"40946":9399,"40947":14279,"40948":437,"40949":6681,"40950":7600,"40951":339,"40952":9792,"40953":1928,"40954":3262,"40955":9710,"40956":13865,"40957":14892,"40958":907,"40959":1755,"40960":8207,"40961":10362,"40962":10367,"40963":250,"40964":10037,"40965":7941,"40966":3944,"40967":6556,"40968":8970,"40969":684,"40970":3069,"40971":14638,"40972":1754,"40973":10454,"40974":2566,"40975":11695,"40976":5016,"40977":1874,"40978":11605,"40979":8362,"40980":5874,"40981":11382,"40982":7884,"40983":53,"40984":12851,"40985":11868,"40986":9809,"40987":5479,"40988":2697,"40989":1626,"40990":11856,"40991":5770,"40992":4966,"40993":11308,"40994":7735,"40995":11149,"40996":6736,"40997":4542,"40998":5924,"40999":13712,"41000":6896,"41001":13551,"41002":10422,"41003":14856,"41004":1826,"41005":3867,"41006":9764,"41007":14990,"41008":9163,"41009":12769,"41010":3261,"41011":7058,"41012":14334,"41013":13927,"41014":2251,"41015":13146,"41016":193,"41017":3729,"41018":11134,"41019":4147,"41020":3461,"41021":13207,"41022":8043,"41023":14433,"41024":2498,"41025":3044,"41026":5763,"41027":1461,"41028":12282,"41029":1739,"41030":430,"41031":5931,"41032":3311,"41033":2662,"41034":11559,"41035":9129,"41036":882,"41037":11718,"41038":10818,"41039":11633,"41040":2421,"41041":5525,"41042":11968,"41043":3254,"41044":10863,"41045":6368,"41046":6660,"41047":14939,"41048":1117,"41049":14008,"41050":6931,"41051":6215,"41052":7068,"41053":12011,"41054":8976,"41055":2123,"41056":13266,"41057":4836,"41058":1980,"41059":4037,"41060":8485,"41061":14030,"41062":10800,"41063":2765,"41064":9575,"41065":1192,"41066":10655,"41067":1414,"41068":943,"41069":4493,"41070":3763,"41071":13210,"41072":12730,"41073":8616,"41074":1239,"41075":4165,"41076":1799,"41077":10885,"41078":10707,"41079":14943,"41080":730,"41081":3449,"41082":1106,"41083":14278,"41084":1370,"41085":2070,"41086":13005,"41087":5588,"41088":7340,"41089":10546,"41090":12733,"41091":1138,"41092":8158,"41093":12501,"41094":11568,"41095":10028,"41096":5900,"41097":14263,"41098":3153,"41099":10532,"41100":6114,"41101":12247,"41102":13842,"41103":13348,"41104":12089,"41105":4965,"41106":350,"41107":14758,"41108":6162,"41109":2806,"41110":9281,"41111":8632,"41112":10604,"41113":12178,"41114":13013,"41115":6746,"41116":8011,"41117":6570,"41118":1679,"41119":5142,"41120":3384,"41121":11436,"41122":8160,"41123":11136,"41124":3672,"41125":1361,"41126":3905,"41127":7825,"41128":3953,"41129":8908,"41130":5797,"41131":8589,"41132":11324,"41133":9614,"41134":11981,"41135":3048,"41136":14313,"41137":2114,"41138":6750,"41139":269,"41140":6800,"41141":13748,"41142":14455,"41143":11977,"41144":6493,"41145":13194,"41146":7649,"41147":1732,"41148":9929,"41149":5625,"41150":14777,"41151":12215,"41152":778,"41153":8502,"41154":3813,"41155":11147,"41156":10303,"41157":4199,"41158":14068,"41159":1566,"41160":7540,"41161":4925,"41162":4794,"41163":12763,"41164":7264,"41165":209,"41166":13976,"41167":14677,"41168":15034,"41169":10110,"41170":9403,"41171":10172,"41172":2240,"41173":3300,"41174":127,"41175":7216,"41176":9347,"41177":3494,"41178":13715,"41179":14364,"41180":13965,"41181":9156,"41182":7254,"41183":2460,"41184":1021,"41185":7035,"41186":14260,"41187":7517,"41188":2114,"41189":10119,"41190":3823,"41191":1261,"41192":11311,"41193":4052,"41194":71,"41195":1419,"41196":6317,"41197":8127,"41198":14695,"41199":4934,"41200":13361,"41201":5026,"41202":11305,"41203":7129,"41204":5574,"41205":8122,"41206":14461,"41207":4145,"41208":13091,"41209":9045,"41210":6659,"41211":9302,"41212":13171,"41213":11225,"41214":8660,"41215":3910,"41216":8039,"41217":11339,"41218":265,"41219":1787,"41220":6911,"41221":13212,"41222":11345,"41223":7628,"41224":6551,"41225":11743,"41226":102,"41227":1733,"41228":13429,"41229":12147,"41230":8244,"41231":3849,"41232":5522,"41233":3446,"41234":12523,"41235":1577,"41236":5025,"41237":14407,"41238":11801,"41239":3733,"41240":6422,"41241":4168,"41242":14561,"41243":13236,"41244":13235,"41245":13614,"41246":9845,"41247":7494,"41248":9669,"41249":3280,"41250":2996,"41251":14143,"41252":15007,"41253":5238,"41254":8475,"41255":163,"41256":9059,"41257":11809,"41258":668,"41259":10910,"41260":14838,"41261":7184,"41262":10185,"41263":1244,"41264":13484,"41265":14794,"41266":9019,"41267":7941,"41268":4942,"41269":3465,"41270":12618,"41271":2685,"41272":2548,"41273":7637,"41274":6001,"41275":10269,"41276":6893,"41277":3506,"41278":14804,"41279":12930,"41280":8093,"41281":7885,"41282":658,"41283":5537,"41284":9391,"41285":9961,"41286":3348,"41287":10380,"41288":8591,"41289":10779,"41290":3213,"41291":4019,"41292":7850,"41293":2372,"41294":7162,"41295":11158,"41296":10316,"41297":10370,"41298":6705,"41299":9036,"41300":14091,"41301":3619,"41302":4910,"41303":11605,"41304":2907,"41305":15035,"41306":10764,"41307":5794,"41308":11364,"41309":10223,"41310":2287,"41311":8835,"41312":7341,"41313":722,"41314":5282,"41315":7763,"41316":3133,"41317":7860,"41318":6072,"41319":6895,"41320":11345,"41321":7672,"41322":11188,"41323":6318,"41324":9202,"41325":8723,"41326":7758,"41327":2022,"41328":5712,"41329":10998,"41330":9107,"41331":9581,"41332":13254,"41333":4858,"41334":12943,"41335":12723,"41336":1572,"41337":204,"41338":9510,"41339":6586,"41340":7686,"41341":2329,"41342":13661,"41343":13941,"41344":10529,"41345":9373,"41346":334,"41347":9974,"41348":9961,"41349":2298,"41350":863,"41351":10890,"41352":4890,"41353":11460,"41354":6836,"41355":9925,"41356":464,"41357":10445,"41358":6466,"41359":7853,"41360":7564,"41361":13067,"41362":644,"41363":11353,"41364":8623,"41365":8869,"41366":493,"41367":1778,"41368":14709,"41369":6516,"41370":5390,"41371":14699,"41372":8614,"41373":11097,"41374":5334,"41375":349,"41376":11259,"41377":6102,"41378":7146,"41379":5672,"41380":12690,"41381":9368,"41382":12892,"41383":14535,"41384":9009,"41385":14241,"41386":11465,"41387":7758,"41388":13823,"41389":6689,"41390":8684,"41391":4990,"41392":564,"41393":663,"41394":7734,"41395":5099,"41396":5554,"41397":5332,"41398":2429,"41399":8218,"41400":11218,"41401":530,"41402":10790,"41403":12111,"41404":14626,"41405":13390,"41406":7311,"41407":3798,"41408":9997,"41409":11839,"41410":2351,"41411":1064,"41412":8574,"41413":299,"41414":9583,"41415":12300,"41416":6976,"41417":4353,"41418":13754,"41419":4476,"41420":6279,"41421":13029,"41422":6912,"41423":2746,"41424":6603,"41425":14873,"41426":12419,"41427":10893,"41428":7441,"41429":9564,"41430":13793,"41431":8147,"41432":2084,"41433":12498,"41434":12104,"41435":3450,"41436":6272,"41437":4944,"41438":10422,"41439":8755,"41440":7467,"41441":4607,"41442":2065,"41443":4718,"41444":12403,"41445":2414,"41446":9264,"41447":13642,"41448":10383,"41449":13893,"41450":9332,"41451":1989,"41452":1457,"41453":9982,"41454":4522,"41455":1598,"41456":4937,"41457":2479,"41458":11569,"41459":260,"41460":11683,"41461":3955,"41462":15141,"41463":13705,"41464":12190,"41465":13610,"41466":8393,"41467":12025,"41468":4163,"41469":7264,"41470":9783,"41471":3915,"41472":13972,"41473":3494,"41474":3088,"41475":607,"41476":12057,"41477":8724,"41478":11748,"41479":7934,"41480":7255,"41481":887,"41482":14560,"41483":5641,"41484":4900,"41485":7619,"41486":9720,"41487":14075,"41488":4738,"41489":14500,"41490":720,"41491":14776,"41492":452,"41493":3353,"41494":8273,"41495":3589,"41496":9115,"41497":8384,"41498":14926,"41499":9154,"41500":1245,"41501":5578,"41502":13763,"41503":4538,"41504":5612,"41505":4506,"41506":9538,"41507":441,"41508":13185,"41509":5216,"41510":3717,"41511":11172,"41512":12759,"41513":499,"41514":5598,"41515":10960,"41516":1373,"41517":11542,"41518":2510,"41519":10853,"41520":10926,"41521":11857,"41522":14801,"41523":1584,"41524":1643,"41525":13773,"41526":4716,"41527":14268,"41528":10650,"41529":14699,"41530":9476,"41531":1363,"41532":6708,"41533":4896,"41534":2608,"41535":10947,"41536":11362,"41537":1676,"41538":5298,"41539":8525,"41540":6574,"41541":13774,"41542":14949,"41543":1545,"41544":10045,"41545":10831,"41546":7128,"41547":11491,"41548":5244,"41549":94,"41550":365,"41551":12077,"41552":14967,"41553":7281,"41554":590,"41555":10447,"41556":11438,"41557":2584,"41558":7431,"41559":486,"41560":14114,"41561":1743,"41562":6886,"41563":12003,"41564":6120,"41565":7945,"41566":8661,"41567":5997,"41568":895,"41569":11401,"41570":6854,"41571":14423,"41572":7095,"41573":349,"41574":14918,"41575":1241,"41576":14511,"41577":13632,"41578":12689,"41579":6105,"41580":9645,"41581":3511,"41582":9552,"41583":7605,"41584":2497,"41585":14101,"41586":14991,"41587":9582,"41588":1309,"41589":12637,"41590":13496,"41591":8423,"41592":10583,"41593":13884,"41594":11841,"41595":7041,"41596":14273,"41597":11977,"41598":5461,"41599":4472,"41600":8776,"41601":1944,"41602":7125,"41603":13205,"41604":1408,"41605":5070,"41606":2496,"41607":4963,"41608":7601,"41609":8185,"41610":11652,"41611":8282,"41612":180,"41613":9204,"41614":3054,"41615":10267,"41616":7317,"41617":3732,"41618":983,"41619":2616,"41620":10460,"41621":3035,"41622":7162,"41623":10593,"41624":10989,"41625":14639,"41626":8006,"41627":12966,"41628":2061,"41629":11906,"41630":9208,"41631":14287,"41632":12854,"41633":4848,"41634":3213,"41635":9688,"41636":266,"41637":12085,"41638":1409,"41639":4325,"41640":11780,"41641":12389,"41642":523,"41643":4094,"41644":1776,"41645":607,"41646":8370,"41647":9078,"41648":9655,"41649":9122,"41650":8992,"41651":6857,"41652":8718,"41653":9746,"41654":8804,"41655":6980,"41656":4876,"41657":5715,"41658":11912,"41659":580,"41660":10301,"41661":4374,"41662":10056,"41663":3533,"41664":7335,"41665":12619,"41666":10696,"41667":9820,"41668":11327,"41669":142,"41670":13715,"41671":5131,"41672":7789,"41673":4540,"41674":12898,"41675":2023,"41676":14947,"41677":14730,"41678":4361,"41679":1727,"41680":7466,"41681":8826,"41682":5495,"41683":631,"41684":30,"41685":9909,"41686":4201,"41687":1637,"41688":14211,"41689":12425,"41690":2394,"41691":11239,"41692":8207,"41693":14625,"41694":4749,"41695":6003,"41696":4610,"41697":8115,"41698":10877,"41699":7061,"41700":3828,"41701":5340,"41702":6024,"41703":12574,"41704":12559,"41705":4331,"41706":14598,"41707":1016,"41708":7425,"41709":7570,"41710":1523,"41711":6978,"41712":5856,"41713":6428,"41714":7858,"41715":3324,"41716":5727,"41717":14459,"41718":4142,"41719":14592,"41720":11982,"41721":7005,"41722":14313,"41723":917,"41724":14986,"41725":766,"41726":14453,"41727":8437,"41728":6457,"41729":13160,"41730":14672,"41731":9128,"41732":11341,"41733":8821,"41734":13300,"41735":696,"41736":8738,"41737":7466,"41738":6621,"41739":8820,"41740":12204,"41741":2281,"41742":223,"41743":10714,"41744":1650,"41745":9670,"41746":10577,"41747":9119,"41748":1138,"41749":4599,"41750":1213,"41751":10206,"41752":10827,"41753":9840,"41754":5810,"41755":3677,"41756":7316,"41757":10221,"41758":2727,"41759":11694,"41760":7521,"41761":3233,"41762":2854,"41763":4572,"41764":10785,"41765":7535,"41766":305,"41767":5413,"41768":10267,"41769":8411,"41770":1489,"41771":9834,"41772":7233,"41773":15051,"41774":11441,"41775":2363,"41776":1151,"41777":10930,"41778":9025,"41779":11812,"41780":6767,"41781":100,"41782":10170,"41783":7154,"41784":8714,"41785":1404,"41786":3671,"41787":6139,"41788":10352,"41789":6363,"41790":2592,"41791":563,"41792":7353,"41793":4655,"41794":11578,"41795":10458,"41796":2291,"41797":9270,"41798":10997,"41799":514,"41800":1576,"41801":6981,"41802":4829,"41803":13621,"41804":5634,"41805":4756,"41806":13174,"41807":10377,"41808":12301,"41809":12007,"41810":14313,"41811":9872,"41812":7546,"41813":13844,"41814":2557,"41815":5200,"41816":879,"41817":9053,"41818":1340,"41819":3209,"41820":14385,"41821":1892,"41822":925,"41823":12776,"41824":9415,"41825":6807,"41826":12953,"41827":7963,"41828":14922,"41829":6250,"41830":12124,"41831":10779,"41832":2830,"41833":5466,"41834":4910,"41835":11046,"41836":14005,"41837":14448,"41838":6818,"41839":1270,"41840":4948,"41841":8949,"41842":9363,"41843":6975,"41844":3397,"41845":10222,"41846":6153,"41847":12545,"41848":1689,"41849":4501,"41850":15094,"41851":3895,"41852":1435,"41853":6447,"41854":9418,"41855":10442,"41856":1831,"41857":1943,"41858":12620,"41859":14816,"41860":12736,"41861":276,"41862":5959,"41863":4103,"41864":3703,"41865":10249,"41866":3919,"41867":5498,"41868":9338,"41869":6607,"41870":3501,"41871":2470,"41872":1157,"41873":14217,"41874":5603,"41875":11002,"41876":13443,"41877":9007,"41878":1837,"41879":9488,"41880":8365,"41881":14926,"41882":3784,"41883":10138,"41884":14138,"41885":2097,"41886":8300,"41887":5587,"41888":4169,"41889":13423,"41890":958,"41891":13696,"41892":5686,"41893":12444,"41894":4011,"41895":6187,"41896":5267,"41897":8522,"41898":2319,"41899":11365,"41900":6581,"41901":12840,"41902":1992,"41903":12371,"41904":5716,"41905":8330,"41906":14496,"41907":2731,"41908":12521,"41909":1524,"41910":2322,"41911":1366,"41912":5204,"41913":8017,"41914":11618,"41915":10034,"41916":6924,"41917":509,"41918":10118,"41919":692,"41920":7771,"41921":6315,"41922":7529,"41923":2589,"41924":2531,"41925":2271,"41926":9171,"41927":9243,"41928":11748,"41929":11986,"41930":7240,"41931":14756,"41932":13588,"41933":9605,"41934":12666,"41935":2312,"41936":3975,"41937":11065,"41938":3651,"41939":8764,"41940":548,"41941":12781,"41942":3712,"41943":12640,"41944":8563,"41945":14208,"41946":1456,"41947":13256,"41948":12573,"41949":12510,"41950":6085,"41951":10413,"41952":13421,"41953":10640,"41954":2085,"41955":10306,"41956":2966,"41957":5185,"41958":7303,"41959":2923,"41960":9868,"41961":8203,"41962":14577,"41963":1879,"41964":3339,"41965":9832,"41966":13328,"41967":6361,"41968":10153,"41969":11359,"41970":5853,"41971":3145,"41972":11124,"41973":5161,"41974":5318,"41975":4366,"41976":3694,"41977":1433,"41978":6973,"41979":10505,"41980":8065,"41981":9239,"41982":8012,"41983":13203,"41984":3172,"41985":6606,"41986":12520,"41987":3871,"41988":10396,"41989":4851,"41990":3593,"41991":12920,"41992":8025,"41993":9142,"41994":13259,"41995":5018,"41996":11046,"41997":2805,"41998":4085,"41999":1694,"42000":12556,"42001":13522,"42002":760,"42003":11695,"42004":9368,"42005":13333,"42006":8471,"42007":8767,"42008":11724,"42009":15017,"42010":1040,"42011":3367,"42012":7756,"42013":12016,"42014":7023,"42015":10909,"42016":962,"42017":4450,"42018":1692,"42019":11470,"42020":11846,"42021":13462,"42022":9238,"42023":10817,"42024":15118,"42025":7935,"42026":11906,"42027":3417,"42028":5008,"42029":12011,"42030":3024,"42031":13179,"42032":1930,"42033":4847,"42034":12674,"42035":3570,"42036":6434,"42037":410,"42038":10808,"42039":14841,"42040":11485,"42041":598,"42042":2034,"42043":7698,"42044":11397,"42045":13645,"42046":3931,"42047":5068,"42048":10015,"42049":14454,"42050":3999,"42051":386,"42052":9189,"42053":13873,"42054":13695,"42055":5928,"42056":4182,"42057":8523,"42058":6664,"42059":12604,"42060":5282,"42061":27,"42062":9221,"42063":6967,"42064":2985,"42065":8768,"42066":1171,"42067":8512,"42068":8673,"42069":3003,"42070":2822,"42071":3392,"42072":8975,"42073":3850,"42074":7853,"42075":3261,"42076":14434,"42077":6461,"42078":14067,"42079":6792,"42080":5042,"42081":11454,"42082":2879,"42083":516,"42084":13576,"42085":9702,"42086":8712,"42087":1814,"42088":13452,"42089":3729,"42090":14702,"42091":15096,"42092":15078,"42093":12538,"42094":5969,"42095":695,"42096":7609,"42097":7680,"42098":3663,"42099":8869,"42100":249,"42101":12231,"42102":12097,"42103":1887,"42104":1754,"42105":6863,"42106":6445,"42107":14121,"42108":1569,"42109":6791,"42110":10631,"42111":7485,"42112":1065,"42113":15029,"42114":10226,"42115":3438,"42116":11180,"42117":4359,"42118":14163,"42119":5154,"42120":15113,"42121":1811,"42122":8400,"42123":7228,"42124":13512,"42125":13076,"42126":1328,"42127":12774,"42128":13974,"42129":5746,"42130":8764,"42131":13954,"42132":12360,"42133":7772,"42134":6350,"42135":5854,"42136":1517,"42137":13497,"42138":2976,"42139":12302,"42140":526,"42141":12454,"42142":4084,"42143":13776,"42144":12712,"42145":6245,"42146":14830,"42147":11594,"42148":10375,"42149":2234,"42150":647,"42151":11171,"42152":3976,"42153":8671,"42154":8241,"42155":1037,"42156":3301,"42157":9609,"42158":1040,"42159":6288,"42160":6595,"42161":13238,"42162":4778,"42163":7348,"42164":6382,"42165":7194,"42166":9770,"42167":13952,"42168":5601,"42169":7393,"42170":8022,"42171":6120,"42172":3565,"42173":8703,"42174":4442,"42175":14563,"42176":13539,"42177":11982,"42178":8924,"42179":12656,"42180":9890,"42181":1274,"42182":7335,"42183":13924,"42184":7253,"42185":6501,"42186":14916,"42187":3924,"42188":7062,"42189":14289,"42190":4332,"42191":11703,"42192":7498,"42193":12756,"42194":12637,"42195":5179,"42196":1469,"42197":2351,"42198":15055,"42199":1419,"42200":12408,"42201":629,"42202":816,"42203":10668,"42204":13260,"42205":5040,"42206":11699,"42207":6713,"42208":6321,"42209":2117,"42210":10993,"42211":9442,"42212":4953,"42213":2338,"42214":6892,"42215":1711,"42216":14399,"42217":5945,"42218":4900,"42219":426,"42220":4101,"42221":1400,"42222":13394,"42223":1009,"42224":14732,"42225":6660,"42226":7790,"42227":10384,"42228":8841,"42229":5969,"42230":10416,"42231":7755,"42232":5602,"42233":4094,"42234":9318,"42235":1758,"42236":4188,"42237":6954,"42238":6295,"42239":8696,"42240":260,"42241":7376,"42242":8251,"42243":12559,"42244":7318,"42245":7259,"42246":6239,"42247":1117,"42248":326,"42249":7405,"42250":8134,"42251":7040,"42252":1082,"42253":8449,"42254":4087,"42255":3636,"42256":11305,"42257":13530,"42258":9032,"42259":2054,"42260":4771,"42261":3019,"42262":2750,"42263":7168,"42264":104,"42265":1017,"42266":5392,"42267":13407,"42268":2750,"42269":14301,"42270":13643,"42271":3865,"42272":6693,"42273":3728,"42274":10212,"42275":652,"42276":2173,"42277":14138,"42278":1432,"42279":14657,"42280":8,"42281":754,"42282":5274,"42283":9034,"42284":15081,"42285":4416,"42286":8882,"42287":3649,"42288":2927,"42289":2473,"42290":6542,"42291":9221,"42292":14473,"42293":970,"42294":5584,"42295":12780,"42296":451,"42297":10671,"42298":1933,"42299":5617,"42300":10424,"42301":3714,"42302":13838,"42303":2029,"42304":1781,"42305":12468,"42306":8353,"42307":2907,"42308":9265,"42309":11353,"42310":460,"42311":11741,"42312":2976,"42313":4877,"42314":4085,"42315":14335,"42316":8456,"42317":12934,"42318":13428,"42319":3314,"42320":6311,"42321":14953,"42322":4678,"42323":907,"42324":8597,"42325":8427,"42326":7025,"42327":6717,"42328":14481,"42329":7323,"42330":8013,"42331":8430,"42332":4245,"42333":14718,"42334":7033,"42335":7802,"42336":1407,"42337":2271,"42338":12094,"42339":5356,"42340":698,"42341":4303,"42342":9476,"42343":10053,"42344":5877,"42345":3578,"42346":14147,"42347":4923,"42348":11200,"42349":6660,"42350":464,"42351":8598,"42352":10791,"42353":12519,"42354":14375,"42355":493,"42356":1944,"42357":495,"42358":8339,"42359":13636,"42360":12108,"42361":2504,"42362":8548,"42363":12657,"42364":7867,"42365":14165,"42366":13966,"42367":2405,"42368":10251,"42369":6728,"42370":10314,"42371":2914,"42372":3737,"42373":9685,"42374":9108,"42375":3818,"42376":3408,"42377":14348,"42378":9733,"42379":9666,"42380":13070,"42381":10030,"42382":13721,"42383":9311,"42384":1575,"42385":10020,"42386":10321,"42387":7463,"42388":9117,"42389":11265,"42390":848,"42391":1030,"42392":8416,"42393":11627,"42394":5484,"42395":12631,"42396":8821,"42397":13691,"42398":4802,"42399":9003,"42400":13010,"42401":5304,"42402":12459,"42403":3234,"42404":3359,"42405":4999,"42406":13434,"42407":14032,"42408":7944,"42409":13184,"42410":10926,"42411":4154,"42412":1186,"42413":8822,"42414":10286,"42415":11261,"42416":8258,"42417":14424,"42418":9885,"42419":11700,"42420":5739,"42421":10986,"42422":8688,"42423":3691,"42424":1425,"42425":1841,"42426":9597,"42427":13313,"42428":933,"42429":11965,"42430":1659,"42431":5024,"42432":611,"42433":2792,"42434":3795,"42435":11768,"42436":6196,"42437":12080,"42438":6788,"42439":15056,"42440":10829,"42441":12449,"42442":1795,"42443":14949,"42444":9417,"42445":8844,"42446":3415,"42447":1766,"42448":1647,"42449":11095,"42450":5812,"42451":7718,"42452":3940,"42453":13093,"42454":2103,"42455":5721,"42456":9941,"42457":3669,"42458":14964,"42459":779,"42460":5623,"42461":1212,"42462":549,"42463":1867,"42464":2355,"42465":9312,"42466":7486,"42467":8467,"42468":4724,"42469":7320,"42470":4633,"42471":410,"42472":13159,"42473":8961,"42474":2979,"42475":13543,"42476":1179,"42477":543,"42478":4351,"42479":11634,"42480":2948,"42481":6669,"42482":1184,"42483":13648,"42484":6339,"42485":11853,"42486":382,"42487":8928,"42488":2297,"42489":5635,"42490":1713,"42491":12936,"42492":13507,"42493":2694,"42494":9359,"42495":11265,"42496":7717,"42497":11275,"42498":741,"42499":5,"42500":6486,"42501":12223,"42502":14284,"42503":378,"42504":9091,"42505":422,"42506":5290,"42507":14104,"42508":9072,"42509":11734,"42510":3928,"42511":12505,"42512":10420,"42513":5707,"42514":6338,"42515":6564,"42516":10788,"42517":11183,"42518":15075,"42519":6643,"42520":13725,"42521":922,"42522":11269,"42523":8442,"42524":12285,"42525":6361,"42526":6579,"42527":12968,"42528":1760,"42529":11045,"42530":9239,"42531":2120,"42532":8597,"42533":14533,"42534":9884,"42535":9038,"42536":4294,"42537":6345,"42538":4994,"42539":14251,"42540":14304,"42541":5577,"42542":12797,"42543":6942,"42544":13773,"42545":13206,"42546":9999,"42547":7526,"42548":6921,"42549":13377,"42550":1933,"42551":11756,"42552":1684,"42553":9318,"42554":12219,"42555":4767,"42556":5931,"42557":6751,"42558":11422,"42559":12960,"42560":946,"42561":13098,"42562":2978,"42563":11718,"42564":15010,"42565":10445,"42566":11706,"42567":11150,"42568":6229,"42569":6791,"42570":13755,"42571":9379,"42572":10683,"42573":2197,"42574":4838,"42575":14421,"42576":10554,"42577":6241,"42578":5674,"42579":3571,"42580":4341,"42581":5214,"42582":10820,"42583":8787,"42584":12984,"42585":11639,"42586":4080,"42587":4506,"42588":614,"42589":6146,"42590":8151,"42591":13149,"42592":14629,"42593":9095,"42594":2748,"42595":5977,"42596":12150,"42597":5955,"42598":1131,"42599":10702,"42600":563,"42601":11912,"42602":3107,"42603":12954,"42604":4730,"42605":9278,"42606":14376,"42607":5587,"42608":9817,"42609":9170,"42610":10406,"42611":9130,"42612":11845,"42613":1933,"42614":5981,"42615":3625,"42616":4558,"42617":7808,"42618":11857,"42619":3779,"42620":5008,"42621":5526,"42622":15118,"42623":11919,"42624":11625,"42625":3777,"42626":13328,"42627":8194,"42628":7961,"42629":10215,"42630":4891,"42631":3967,"42632":5214,"42633":9771,"42634":14930,"42635":11527,"42636":6491,"42637":3059,"42638":3928,"42639":524,"42640":14186,"42641":600,"42642":12088,"42643":8230,"42644":1852,"42645":11222,"42646":2340,"42647":35,"42648":7335,"42649":1741,"42650":3813,"42651":2163,"42652":12550,"42653":7563,"42654":3704,"42655":6858,"42656":9707,"42657":1559,"42658":13122,"42659":2494,"42660":1093,"42661":11832,"42662":776,"42663":2124,"42664":12267,"42665":13553,"42666":10365,"42667":1991,"42668":5742,"42669":4177,"42670":11323,"42671":12355,"42672":10977,"42673":1525,"42674":2427,"42675":3611,"42676":6547,"42677":4890,"42678":4381,"42679":9216,"42680":11404,"42681":6929,"42682":9138,"42683":11037,"42684":11430,"42685":13731,"42686":14177,"42687":11386,"42688":906,"42689":12101,"42690":13226,"42691":1482,"42692":8545,"42693":946,"42694":8431,"42695":10468,"42696":132,"42697":6878,"42698":9969,"42699":8509,"42700":11328,"42701":7745,"42702":12914,"42703":14091,"42704":8096,"42705":6800,"42706":10460,"42707":698,"42708":5162,"42709":3181,"42710":9618,"42711":2570,"42712":817,"42713":5319,"42714":3947,"42715":7509,"42716":12749,"42717":4900,"42718":2413,"42719":2644,"42720":14293,"42721":8706,"42722":14795,"42723":6861,"42724":4701,"42725":2558,"42726":2062,"42727":4242,"42728":15048,"42729":13258,"42730":14821,"42731":12564,"42732":1843,"42733":2145,"42734":14591,"42735":14666,"42736":1520,"42737":11981,"42738":5868,"42739":7640,"42740":13532,"42741":3341,"42742":9436,"42743":6847,"42744":7845,"42745":7107,"42746":1685,"42747":13948,"42748":1709,"42749":2333,"42750":6699,"42751":718,"42752":7306,"42753":7656,"42754":11384,"42755":12890,"42756":12750,"42757":5161,"42758":3963,"42759":12022,"42760":11142,"42761":12101,"42762":6225,"42763":8058,"42764":6782,"42765":3414,"42766":3317,"42767":7765,"42768":6790,"42769":10440,"42770":6403,"42771":8560,"42772":8660,"42773":10354,"42774":11921,"42775":10291,"42776":12202,"42777":13428,"42778":9323,"42779":9496,"42780":1082,"42781":13248,"42782":6604,"42783":5240,"42784":9692,"42785":716,"42786":8036,"42787":3228,"42788":2492,"42789":1804,"42790":14888,"42791":9656,"42792":1886,"42793":11119,"42794":13264,"42795":6586,"42796":10656,"42797":12038,"42798":2411,"42799":13644,"42800":6494,"42801":582,"42802":8367,"42803":9092,"42804":4999,"42805":7666,"42806":667,"42807":9066,"42808":5544,"42809":3865,"42810":15019,"42811":12407,"42812":2207,"42813":11883,"42814":4103,"42815":13641,"42816":11158,"42817":3260,"42818":704,"42819":14669,"42820":12494,"42821":5834,"42822":12192,"42823":14269,"42824":10077,"42825":10466,"42826":10785,"42827":6592,"42828":6239,"42829":2960,"42830":1866,"42831":13652,"42832":5968,"42833":10972,"42834":8466,"42835":956,"42836":4285,"42837":11806,"42838":5267,"42839":3148,"42840":2467,"42841":1791,"42842":1039,"42843":9236,"42844":2770,"42845":9511,"42846":1552,"42847":1497,"42848":4716,"42849":13669,"42850":6566,"42851":4383,"42852":10470,"42853":7285,"42854":9515,"42855":14567,"42856":11689,"42857":4689,"42858":156,"42859":1170,"42860":1463,"42861":8591,"42862":725,"42863":13115,"42864":3314,"42865":571,"42866":2052,"42867":14156,"42868":14845,"42869":7769,"42870":8056,"42871":8975,"42872":13107,"42873":10185,"42874":11074,"42875":3489,"42876":9981,"42877":358,"42878":6641,"42879":14947,"42880":2661,"42881":7510,"42882":10674,"42883":2807,"42884":2211,"42885":6329,"42886":7501,"42887":13009,"42888":1016,"42889":2631,"42890":2932,"42891":11156,"42892":2726,"42893":6802,"42894":1808,"42895":11134,"42896":9468,"42897":2521,"42898":1317,"42899":5459,"42900":955,"42901":8815,"42902":1980,"42903":14552,"42904":12696,"42905":1081,"42906":12315,"42907":4807,"42908":14328,"42909":11084,"42910":1245,"42911":10267,"42912":11407,"42913":4047,"42914":9417,"42915":3956,"42916":5751,"42917":6697,"42918":303,"42919":11408,"42920":2749,"42921":14979,"42922":2704,"42923":611,"42924":10219,"42925":13836,"42926":10452,"42927":4332,"42928":8269,"42929":7763,"42930":5220,"42931":10488,"42932":3146,"42933":14156,"42934":3512,"42935":5647,"42936":8450,"42937":4807,"42938":1545,"42939":7849,"42940":14128,"42941":6209,"42942":14255,"42943":12243,"42944":1784,"42945":5408,"42946":10450,"42947":9899,"42948":12973,"42949":4194,"42950":4765,"42951":1953,"42952":7032,"42953":4908,"42954":6569,"42955":7993,"42956":3785,"42957":9516,"42958":71,"42959":5664,"42960":1377,"42961":1179,"42962":5801,"42963":2397,"42964":9304,"42965":9289,"42966":7658,"42967":13383,"42968":7622,"42969":2800,"42970":10756,"42971":14528,"42972":7136,"42973":15027,"42974":14158,"42975":14662,"42976":1667,"42977":13070,"42978":4666,"42979":3997,"42980":468,"42981":9037,"42982":1612,"42983":6978,"42984":84,"42985":11799,"42986":6003,"42987":3083,"42988":1607,"42989":13792,"42990":2861,"42991":1898,"42992":5229,"42993":5439,"42994":11883,"42995":14549,"42996":12156,"42997":10227,"42998":6966,"42999":6856,"43000":10355,"43001":6156,"43002":6388,"43003":708,"43004":10459,"43005":9226,"43006":1694,"43007":5499,"43008":14300,"43009":10998,"43010":12419,"43011":13679,"43012":1885,"43013":11499,"43014":1676,"43015":4940,"43016":13734,"43017":5235,"43018":13163,"43019":12453,"43020":4093,"43021":1198,"43022":14178,"43023":6110,"43024":5587,"43025":4125,"43026":10838,"43027":7954,"43028":7863,"43029":3714,"43030":1930,"43031":5429,"43032":12403,"43033":8228,"43034":7587,"43035":8636,"43036":4717,"43037":10786,"43038":6214,"43039":8870,"43040":13960,"43041":7792,"43042":8968,"43043":5756,"43044":12162,"43045":3504,"43046":5171,"43047":5429,"43048":8588,"43049":14571,"43050":3126,"43051":7145,"43052":1573,"43053":10569,"43054":6207,"43055":7341,"43056":7492,"43057":1483,"43058":9497,"43059":9698,"43060":7026,"43061":14647,"43062":11204,"43063":7297,"43064":6055,"43065":3460,"43066":11405,"43067":8077,"43068":10250,"43069":12418,"43070":3244,"43071":9619,"43072":4447,"43073":13108,"43074":4584,"43075":2246,"43076":3000,"43077":2680,"43078":14163,"43079":5293,"43080":204,"43081":13961,"43082":15120,"43083":175,"43084":5211,"43085":6915,"43086":11309,"43087":13592,"43088":9438,"43089":3286,"43090":4830,"43091":2018,"43092":9022,"43093":7996,"43094":11835,"43095":10970,"43096":2806,"43097":8007,"43098":12880,"43099":5090,"43100":12553,"43101":11978,"43102":1010,"43103":10286,"43104":3717,"43105":3117,"43106":4035,"43107":13021,"43108":6682,"43109":11559,"43110":5709,"43111":590,"43112":9171,"43113":11966,"43114":5728,"43115":9480,"43116":1800,"43117":483,"43118":10206,"43119":1975,"43120":8563,"43121":2191,"43122":2383,"43123":1629,"43124":4346,"43125":11664,"43126":11985,"43127":5381,"43128":9327,"43129":7526,"43130":1848,"43131":12603,"43132":5295,"43133":11529,"43134":3872,"43135":12015,"43136":10528,"43137":5104,"43138":5036,"43139":2674,"43140":8494,"43141":618,"43142":269,"43143":5483,"43144":2852,"43145":9967,"43146":11962,"43147":8576,"43148":8052,"43149":7800,"43150":4424,"43151":7130,"43152":6559,"43153":2750,"43154":1973,"43155":1543,"43156":12844,"43157":5096,"43158":5198,"43159":14338,"43160":14612,"43161":4444,"43162":2952,"43163":2082,"43164":12056,"43165":2998,"43166":8183,"43167":7882,"43168":9200,"43169":7934,"43170":10638,"43171":7916,"43172":12328,"43173":7109,"43174":9768,"43175":12532,"43176":3395,"43177":9604,"43178":13696,"43179":12327,"43180":14632,"43181":7605,"43182":10546,"43183":14684,"43184":1730,"43185":12319,"43186":11681,"43187":14847,"43188":13784,"43189":4059,"43190":11361,"43191":14787,"43192":9343,"43193":1690,"43194":508,"43195":8645,"43196":12328,"43197":10263,"43198":12947,"43199":104,"43200":1423,"43201":14208,"43202":290,"43203":5852,"43204":10516,"43205":4013,"43206":6763,"43207":11018,"43208":12603,"43209":7419,"43210":14335,"43211":11056,"43212":10472,"43213":2633,"43214":6800,"43215":14363,"43216":13767,"43217":3545,"43218":8299,"43219":4145,"43220":68,"43221":4005,"43222":6776,"43223":919,"43224":13665,"43225":10997,"43226":14565,"43227":7726,"43228":8541,"43229":12434,"43230":8559,"43231":14126,"43232":10202,"43233":27,"43234":11384,"43235":11133,"43236":10571,"43237":5697,"43238":12623,"43239":3501,"43240":12133,"43241":9042,"43242":11777,"43243":5547,"43244":1399,"43245":7835,"43246":13049,"43247":3903,"43248":2351,"43249":6164,"43250":6446,"43251":4883,"43252":15073,"43253":996,"43254":1059,"43255":1427,"43256":3144,"43257":13084,"43258":1684,"43259":5032,"43260":7140,"43261":704,"43262":8693,"43263":8968,"43264":9221,"43265":11416,"43266":9245,"43267":8837,"43268":14833,"43269":2036,"43270":2363,"43271":5497,"43272":13977,"43273":2191,"43274":3463,"43275":12935,"43276":13607,"43277":6635,"43278":13846,"43279":13418,"43280":11746,"43281":3415,"43282":2580,"43283":14538,"43284":11819,"43285":10958,"43286":13773,"43287":1847,"43288":4328,"43289":43,"43290":2077,"43291":8816,"43292":9084,"43293":5368,"43294":229,"43295":12508,"43296":11701,"43297":13466,"43298":11777,"43299":12161,"43300":11939,"43301":7082,"43302":10727,"43303":5961,"43304":13153,"43305":5703,"43306":753,"43307":9070,"43308":5971,"43309":5581,"43310":4419,"43311":11785,"43312":2556,"43313":1044,"43314":2071,"43315":1065,"43316":3207,"43317":2578,"43318":15093,"43319":9082,"43320":9551,"43321":8953,"43322":5039,"43323":7780,"43324":10067,"43325":4502,"43326":6648,"43327":1624,"43328":13854,"43329":6652,"43330":14440,"43331":1925,"43332":3475,"43333":1650,"43334":3617,"43335":179,"43336":14101,"43337":6165,"43338":9954,"43339":6418,"43340":3702,"43341":13787,"43342":4853,"43343":8114,"43344":15016,"43345":2142,"43346":14799,"43347":1786,"43348":2700,"43349":12719,"43350":3876,"43351":5504,"43352":13210,"43353":4675,"43354":9074,"43355":9054,"43356":10430,"43357":13701,"43358":8729,"43359":287,"43360":5986,"43361":4672,"43362":11204,"43363":8777,"43364":14241,"43365":14868,"43366":10826,"43367":2912,"43368":4201,"43369":14456,"43370":11775,"43371":12309,"43372":6001,"43373":581,"43374":1762,"43375":9025,"43376":9507,"43377":2181,"43378":2081,"43379":4220,"43380":6290,"43381":13997,"43382":10273,"43383":10898,"43384":12171,"43385":7770,"43386":1330,"43387":3881,"43388":6222,"43389":11773,"43390":11948,"43391":860,"43392":10851,"43393":10842,"43394":3257,"43395":14921,"43396":3752,"43397":7063,"43398":14660,"43399":5617,"43400":3822,"43401":12946,"43402":7566,"43403":9273,"43404":2245,"43405":1362,"43406":530,"43407":6809,"43408":12783,"43409":5591,"43410":1335,"43411":6008,"43412":5865,"43413":14185,"43414":4701,"43415":11761,"43416":9437,"43417":8674,"43418":4521,"43419":3475,"43420":10117,"43421":4905,"43422":7185,"43423":2835,"43424":5123,"43425":481,"43426":12822,"43427":13338,"43428":4848,"43429":1010,"43430":12625,"43431":7967,"43432":6740,"43433":4844,"43434":11291,"43435":740,"43436":4034,"43437":14190,"43438":5257,"43439":14801,"43440":13075,"43441":7791,"43442":11888,"43443":2020,"43444":6069,"43445":14352,"43446":2626,"43447":12037,"43448":2793,"43449":3016,"43450":1130,"43451":6867,"43452":9682,"43453":9159,"43454":5557,"43455":6203,"43456":14429,"43457":14684,"43458":7952,"43459":11583,"43460":9790,"43461":4063,"43462":14664,"43463":8393,"43464":9927,"43465":8843,"43466":11409,"43467":4155,"43468":2696,"43469":10963,"43470":323,"43471":9183,"43472":9092,"43473":12408,"43474":14125,"43475":12927,"43476":13713,"43477":13864,"43478":2433,"43479":8951,"43480":5453,"43481":5588,"43482":4806,"43483":743,"43484":14181,"43485":2545,"43486":2906,"43487":12401,"43488":9478,"43489":11647,"43490":11612,"43491":9325,"43492":13464,"43493":6579,"43494":2518,"43495":8195,"43496":14141,"43497":8056,"43498":742,"43499":9079,"43500":8180,"43501":1598,"43502":2357,"43503":11919,"43504":9341,"43505":14576,"43506":5190,"43507":2519,"43508":14054,"43509":2173,"43510":5303,"43511":7465,"43512":5120,"43513":926,"43514":13950,"43515":7422,"43516":13692,"43517":7102,"43518":391,"43519":4550,"43520":3501,"43521":2066,"43522":9128,"43523":11247,"43524":7770,"43525":14346,"43526":13122,"43527":81,"43528":13977,"43529":3537,"43530":9548,"43531":12482,"43532":7583,"43533":9737,"43534":5763,"43535":2489,"43536":814,"43537":11640,"43538":13789,"43539":9140,"43540":7340,"43541":10315,"43542":1398,"43543":7359,"43544":2105,"43545":2332,"43546":946,"43547":3653,"43548":10076,"43549":2077,"43550":4322,"43551":10016,"43552":3711,"43553":11516,"43554":894,"43555":13536,"43556":8873,"43557":8747,"43558":9865,"43559":9834,"43560":13409,"43561":10156,"43562":7613,"43563":14764,"43564":12688,"43565":13459,"43566":7352,"43567":11284,"43568":8826,"43569":5724,"43570":9416,"43571":9487,"43572":4826,"43573":11377,"43574":3068,"43575":2537,"43576":1671,"43577":9386,"43578":5771,"43579":856,"43580":7845,"43581":5827,"43582":9755,"43583":12814,"43584":5107,"43585":11649,"43586":14169,"43587":7346,"43588":11664,"43589":4612,"43590":14863,"43591":8451,"43592":5631,"43593":7509,"43594":10080,"43595":5906,"43596":6898,"43597":5463,"43598":9164,"43599":1406,"43600":8398,"43601":1910,"43602":7673,"43603":1373,"43604":1191,"43605":7639,"43606":962,"43607":15007,"43608":565,"43609":3554,"43610":14333,"43611":8541,"43612":14257,"43613":5263,"43614":5504,"43615":2057,"43616":3278,"43617":2406,"43618":12103,"43619":11376,"43620":5593,"43621":7428,"43622":3506,"43623":6244,"43624":12374,"43625":14744,"43626":9994,"43627":14965,"43628":9879,"43629":5319,"43630":10568,"43631":9321,"43632":7056,"43633":13155,"43634":1755,"43635":13444,"43636":12108,"43637":14599,"43638":11314,"43639":12419,"43640":3803,"43641":3888,"43642":10366,"43643":6099,"43644":542,"43645":10279,"43646":12695,"43647":2897,"43648":10781,"43649":2711,"43650":1474,"43651":77,"43652":12639,"43653":8528,"43654":6295,"43655":3222,"43656":12290,"43657":6080,"43658":14481,"43659":653,"43660":12475,"43661":133,"43662":9271,"43663":15086,"43664":11301,"43665":9644,"43666":12385,"43667":2775,"43668":3723,"43669":4125,"43670":7595,"43671":4243,"43672":2371,"43673":442,"43674":6321,"43675":1377,"43676":10659,"43677":11712,"43678":4837,"43679":2445,"43680":13666,"43681":924,"43682":13035,"43683":11544,"43684":10072,"43685":6820,"43686":5641,"43687":8417,"43688":14823,"43689":13854,"43690":5432,"43691":11603,"43692":8732,"43693":4837,"43694":1692,"43695":11766,"43696":2433,"43697":12509,"43698":2037,"43699":4351,"43700":9980,"43701":9491,"43702":13454,"43703":1690,"43704":4372,"43705":9563,"43706":5358,"43707":13984,"43708":4638,"43709":7501,"43710":13386,"43711":12324,"43712":2461,"43713":5257,"43714":5921,"43715":14650,"43716":12067,"43717":696,"43718":9513,"43719":12472,"43720":5373,"43721":896,"43722":10006,"43723":13756,"43724":1373,"43725":14582,"43726":11297,"43727":6595,"43728":12572,"43729":12578,"43730":7332,"43731":5486,"43732":14997,"43733":9619,"43734":11567,"43735":12129,"43736":10908,"43737":1809,"43738":13580,"43739":6286,"43740":12963,"43741":2698,"43742":15099,"43743":11831,"43744":13055,"43745":4415,"43746":4969,"43747":13860,"43748":642,"43749":8647,"43750":8044,"43751":12582,"43752":4281,"43753":4430,"43754":14657,"43755":2139,"43756":4512,"43757":3361,"43758":6080,"43759":5472,"43760":11200,"43761":3383,"43762":8942,"43763":4369,"43764":8041,"43765":13714,"43766":6147,"43767":12183,"43768":11918,"43769":11058,"43770":13479,"43771":8892,"43772":7572,"43773":6908,"43774":3829,"43775":5838,"43776":2878,"43777":14515,"43778":4061,"43779":8821,"43780":91,"43781":9973,"43782":5657,"43783":9786,"43784":14329,"43785":9590,"43786":5575,"43787":5285,"43788":13230,"43789":10842,"43790":6611,"43791":7425,"43792":6787,"43793":7552,"43794":1950,"43795":3323,"43796":10805,"43797":5563,"43798":14648,"43799":6463,"43800":3473,"43801":6646,"43802":971,"43803":7363,"43804":5866,"43805":9258,"43806":3162,"43807":992,"43808":6389,"43809":9971,"43810":3537,"43811":7128,"43812":15036,"43813":2322,"43814":7952,"43815":12289,"43816":8523,"43817":8849,"43818":821,"43819":4138,"43820":2660,"43821":14199,"43822":5824,"43823":2340,"43824":6218,"43825":543,"43826":8672,"43827":6218,"43828":10741,"43829":8356,"43830":4121,"43831":10367,"43832":454,"43833":247,"43834":2166,"43835":6208,"43836":4559,"43837":6306,"43838":13581,"43839":10569,"43840":371,"43841":12103,"43842":2509,"43843":14163,"43844":11116,"43845":5072,"43846":13595,"43847":3002,"43848":13162,"43849":7438,"43850":10113,"43851":17,"43852":664,"43853":7908,"43854":12579,"43855":6905,"43856":88,"43857":164,"43858":8357,"43859":7607,"43860":14632,"43861":638,"43862":2370,"43863":7378,"43864":4260,"43865":108,"43866":8644,"43867":11010,"43868":6051,"43869":10849,"43870":13025,"43871":7126,"43872":13275,"43873":479,"43874":13233,"43875":14550,"43876":8823,"43877":10148,"43878":961,"43879":14725,"43880":14465,"43881":13413,"43882":12189,"43883":9041,"43884":9970,"43885":5628,"43886":8537,"43887":12588,"43888":3483,"43889":13283,"43890":5529,"43891":5806,"43892":6226,"43893":10846,"43894":15141,"43895":12022,"43896":2162,"43897":1327,"43898":7035,"43899":8729,"43900":11797,"43901":9516,"43902":13672,"43903":12422,"43904":943,"43905":11778,"43906":10204,"43907":12926,"43908":9471,"43909":2174,"43910":6304,"43911":13288,"43912":6215,"43913":6671,"43914":5027,"43915":11992,"43916":703,"43917":10641,"43918":566,"43919":6125,"43920":10687,"43921":9337,"43922":12115,"43923":5784,"43924":7673,"43925":2485,"43926":131,"43927":7458,"43928":9123,"43929":7505,"43930":10403,"43931":6184,"43932":9452,"43933":7742,"43934":13666,"43935":12964,"43936":9239,"43937":14238,"43938":10103,"43939":449,"43940":1175,"43941":432,"43942":11369,"43943":13485,"43944":13826,"43945":13557,"43946":9989,"43947":10821,"43948":2287,"43949":14902,"43950":1555,"43951":12241,"43952":13044,"43953":5951,"43954":6736,"43955":12897,"43956":1312,"43957":13870,"43958":13997,"43959":12438,"43960":1904,"43961":14584,"43962":4496,"43963":8882,"43964":3240,"43965":3248,"43966":2496,"43967":4995,"43968":12538,"43969":7469,"43970":253,"43971":7369,"43972":6421,"43973":2241,"43974":6319,"43975":1580,"43976":13529,"43977":11955,"43978":2304,"43979":1517,"43980":12765,"43981":8819,"43982":307,"43983":14851,"43984":6108,"43985":3770,"43986":6706,"43987":1767,"43988":13390,"43989":584,"43990":8957,"43991":14908,"43992":7612,"43993":6694,"43994":13267,"43995":8638,"43996":14283,"43997":8549,"43998":6667,"43999":13093,"44000":8771,"44001":6634,"44002":2476,"44003":3157,"44004":9478,"44005":9505,"44006":2315,"44007":335,"44008":9801,"44009":6829,"44010":14938,"44011":448,"44012":9122,"44013":3734,"44014":9406,"44015":1059,"44016":12230,"44017":14442,"44018":7146,"44019":9896,"44020":4099,"44021":2790,"44022":6117,"44023":12997,"44024":11728,"44025":11579,"44026":5996,"44027":10057,"44028":7732,"44029":2448,"44030":124,"44031":12208,"44032":8395,"44033":13035,"44034":11223,"44035":13649,"44036":8092,"44037":13993,"44038":14592,"44039":8253,"44040":13452,"44041":5705,"44042":11665,"44043":11034,"44044":10378,"44045":15091,"44046":14294,"44047":12847,"44048":10077,"44049":2189,"44050":6530,"44051":9236,"44052":10071,"44053":9664,"44054":7524,"44055":1614,"44056":13048,"44057":13660,"44058":2876,"44059":3565,"44060":394,"44061":12038,"44062":6786,"44063":3513,"44064":4012,"44065":3296,"44066":1832,"44067":6290,"44068":184,"44069":1669,"44070":12826,"44071":1799,"44072":1314,"44073":8537,"44074":1147,"44075":5593,"44076":8330,"44077":11311,"44078":2730,"44079":4476,"44080":5154,"44081":96,"44082":3706,"44083":2859,"44084":1343,"44085":11981,"44086":11041,"44087":1929,"44088":11215,"44089":6052,"44090":4139,"44091":12658,"44092":11314,"44093":9504,"44094":9592,"44095":3721,"44096":5269,"44097":175,"44098":4428,"44099":14299,"44100":6122,"44101":13450,"44102":4937,"44103":11358,"44104":5160,"44105":12999,"44106":2304,"44107":4511,"44108":13263,"44109":11983,"44110":7151,"44111":11371,"44112":9845,"44113":9973,"44114":10794,"44115":3289,"44116":8180,"44117":3107,"44118":7416,"44119":1618,"44120":11600,"44121":3967,"44122":8968,"44123":7718,"44124":5077,"44125":8246,"44126":4533,"44127":14487,"44128":10948,"44129":9902,"44130":6567,"44131":7094,"44132":6660,"44133":2096,"44134":1972,"44135":5263,"44136":13338,"44137":4202,"44138":1063,"44139":9542,"44140":5705,"44141":11900,"44142":9401,"44143":13389,"44144":3138,"44145":5407,"44146":12263,"44147":15094,"44148":12166,"44149":6447,"44150":8998,"44151":12037,"44152":11727,"44153":13363,"44154":13373,"44155":7264,"44156":6107,"44157":12634,"44158":2988,"44159":7855,"44160":7652,"44161":302,"44162":11946,"44163":6835,"44164":9285,"44165":4264,"44166":1036,"44167":8117,"44168":2698,"44169":12168,"44170":2263,"44171":7193,"44172":7356,"44173":6816,"44174":5714,"44175":12245,"44176":13528,"44177":5343,"44178":12877,"44179":6807,"44180":13382,"44181":8149,"44182":13318,"44183":14560,"44184":6286,"44185":773,"44186":13857,"44187":5863,"44188":944,"44189":8940,"44190":4274,"44191":7327,"44192":3241,"44193":2173,"44194":8171,"44195":12364,"44196":5761,"44197":12190,"44198":6716,"44199":13111,"44200":12374,"44201":2898,"44202":7306,"44203":5737,"44204":10389,"44205":5394,"44206":6417,"44207":9913,"44208":4762,"44209":3180,"44210":3435,"44211":14477,"44212":3026,"44213":12326,"44214":8841,"44215":5147,"44216":9209,"44217":10293,"44218":9905,"44219":10188,"44220":12222,"44221":10032,"44222":7296,"44223":1562,"44224":7406,"44225":7403,"44226":1351,"44227":11499,"44228":10458,"44229":2355,"44230":11644,"44231":12869,"44232":11912,"44233":1698,"44234":10429,"44235":1173,"44236":11276,"44237":13761,"44238":4759,"44239":7712,"44240":6201,"44241":14330,"44242":12930,"44243":14449,"44244":4219,"44245":13257,"44246":14888,"44247":9761,"44248":4852,"44249":13533,"44250":12186,"44251":12418,"44252":13470,"44253":10748,"44254":9257,"44255":4870,"44256":14695,"44257":8283,"44258":6371,"44259":4043,"44260":14597,"44261":12388,"44262":8838,"44263":7222,"44264":13269,"44265":8634,"44266":13740,"44267":11886,"44268":7066,"44269":13530,"44270":14988,"44271":4129,"44272":5225,"44273":7324,"44274":11886,"44275":442,"44276":13133,"44277":13455,"44278":3255,"44279":3349,"44280":4328,"44281":4894,"44282":3930,"44283":14591,"44284":760,"44285":3845,"44286":2522,"44287":1255,"44288":13796,"44289":6630,"44290":459,"44291":3364,"44292":8964,"44293":12262,"44294":13181,"44295":739,"44296":6108,"44297":309,"44298":9630,"44299":12656,"44300":10893,"44301":177,"44302":2237,"44303":11364,"44304":2102,"44305":714,"44306":5642,"44307":1030,"44308":10534,"44309":409,"44310":6358,"44311":14296,"44312":8166,"44313":4371,"44314":11435,"44315":3850,"44316":13934,"44317":13725,"44318":12685,"44319":5189,"44320":7601,"44321":8866,"44322":5077,"44323":5315,"44324":13742,"44325":1211,"44326":11166,"44327":12130,"44328":2299,"44329":13083,"44330":13715,"44331":7983,"44332":9952,"44333":15059,"44334":5116,"44335":3897,"44336":15011,"44337":10976,"44338":9077,"44339":11703,"44340":2936,"44341":9878,"44342":5678,"44343":6205,"44344":1115,"44345":3152,"44346":675,"44347":6125,"44348":10136,"44349":13290,"44350":2337,"44351":2095,"44352":14903,"44353":2704,"44354":13130,"44355":4569,"44356":5977,"44357":7409,"44358":6821,"44359":1943,"44360":14114,"44361":754,"44362":10457,"44363":8943,"44364":3994,"44365":10899,"44366":12362,"44367":12364,"44368":1241,"44369":12752,"44370":1361,"44371":803,"44372":7416,"44373":13716,"44374":12218,"44375":10945,"44376":12929,"44377":1221,"44378":11930,"44379":366,"44380":13832,"44381":13417,"44382":8604,"44383":14981,"44384":1152,"44385":1567,"44386":4518,"44387":3656,"44388":12198,"44389":3905,"44390":12162,"44391":2868,"44392":7866,"44393":12316,"44394":4189,"44395":6916,"44396":760,"44397":6678,"44398":13588,"44399":12782,"44400":7380,"44401":1628,"44402":13654,"44403":7262,"44404":4610,"44405":1870,"44406":11894,"44407":8587,"44408":1127,"44409":8023,"44410":1383,"44411":2645,"44412":13927,"44413":2311,"44414":2497,"44415":7922,"44416":11404,"44417":6733,"44418":11453,"44419":7403,"44420":6304,"44421":7475,"44422":2297,"44423":12536,"44424":7439,"44425":10006,"44426":1817,"44427":11559,"44428":10325,"44429":7922,"44430":11448,"44431":11462,"44432":14650,"44433":11372,"44434":2295,"44435":5682,"44436":10969,"44437":12509,"44438":10911,"44439":933,"44440":5636,"44441":9933,"44442":11720,"44443":11875,"44444":1536,"44445":1473,"44446":4372,"44447":8733,"44448":4834,"44449":8474,"44450":8612,"44451":9246,"44452":10199,"44453":8773,"44454":9595,"44455":4040,"44456":9302,"44457":6125,"44458":11247,"44459":11424,"44460":6583,"44461":4090,"44462":7850,"44463":13079,"44464":179,"44465":12829,"44466":3764,"44467":8693,"44468":461,"44469":11745,"44470":6983,"44471":10799,"44472":7575,"44473":9311,"44474":14686,"44475":12774,"44476":10691,"44477":3072,"44478":12391,"44479":13428,"44480":8459,"44481":1489,"44482":2175,"44483":851,"44484":11224,"44485":6707,"44486":10502,"44487":10466,"44488":10991,"44489":14380,"44490":969,"44491":4843,"44492":10050,"44493":897,"44494":9373,"44495":12906,"44496":11283,"44497":6695,"44498":989,"44499":714,"44500":4934,"44501":8853,"44502":7162,"44503":9300,"44504":13444,"44505":4684,"44506":6748,"44507":11406,"44508":12859,"44509":67,"44510":10225,"44511":12227,"44512":12726,"44513":4995,"44514":14132,"44515":13533,"44516":9302,"44517":1579,"44518":3751,"44519":9593,"44520":11149,"44521":8325,"44522":5586,"44523":12475,"44524":6567,"44525":2723,"44526":4468,"44527":10520,"44528":10630,"44529":4665,"44530":6392,"44531":7156,"44532":186,"44533":6312,"44534":754,"44535":1401,"44536":6485,"44537":11231,"44538":2574,"44539":11794,"44540":6253,"44541":5851,"44542":6245,"44543":12767,"44544":10342,"44545":7268,"44546":4194,"44547":14676,"44548":7043,"44549":13297,"44550":13791,"44551":4943,"44552":2598,"44553":2273,"44554":7386,"44555":387,"44556":2339,"44557":15026,"44558":1752,"44559":4588,"44560":965,"44561":4289,"44562":1469,"44563":7737,"44564":13476,"44565":14435,"44566":2556,"44567":4347,"44568":220,"44569":10356,"44570":7545,"44571":2404,"44572":13699,"44573":13641,"44574":2066,"44575":4738,"44576":11682,"44577":4970,"44578":12396,"44579":13359,"44580":8360,"44581":2197,"44582":6395,"44583":5330,"44584":236,"44585":15118,"44586":8649,"44587":2404,"44588":11287,"44589":14144,"44590":11826,"44591":4688,"44592":2456,"44593":2596,"44594":12129,"44595":9042,"44596":5655,"44597":10819,"44598":9327,"44599":13761,"44600":12446,"44601":6886,"44602":11061,"44603":9412,"44604":9225,"44605":9310,"44606":10959,"44607":2368,"44608":5839,"44609":9739,"44610":7939,"44611":3051,"44612":12167,"44613":7730,"44614":12944,"44615":9799,"44616":11494,"44617":9562,"44618":178,"44619":9670,"44620":10173,"44621":12472,"44622":4887,"44623":5353,"44624":490,"44625":7627,"44626":9937,"44627":12891,"44628":1424,"44629":2861,"44630":713,"44631":5620,"44632":13080,"44633":8054,"44634":3702,"44635":14745,"44636":10153,"44637":3297,"44638":14984,"44639":9622,"44640":11366,"44641":6052,"44642":13782,"44643":15042,"44644":5093,"44645":1310,"44646":9374,"44647":8391,"44648":12003,"44649":8007,"44650":9969,"44651":3789,"44652":13871,"44653":5939,"44654":10330,"44655":11938,"44656":6526,"44657":1289,"44658":3082,"44659":647,"44660":336,"44661":8294,"44662":3693,"44663":4626,"44664":12083,"44665":13016,"44666":11775,"44667":1580,"44668":2732,"44669":12686,"44670":2102,"44671":10194,"44672":8381,"44673":6369,"44674":7762,"44675":5559,"44676":7633,"44677":13575,"44678":1522,"44679":4234,"44680":7817,"44681":6129,"44682":14535,"44683":10687,"44684":6106,"44685":13109,"44686":4592,"44687":2471,"44688":11764,"44689":12651,"44690":5157,"44691":5514,"44692":6999,"44693":14697,"44694":11760,"44695":5358,"44696":12191,"44697":4060,"44698":10976,"44699":12615,"44700":2782,"44701":5531,"44702":14987,"44703":12477,"44704":4216,"44705":955,"44706":7974,"44707":10864,"44708":3594,"44709":8904,"44710":8313,"44711":6272,"44712":4948,"44713":5912,"44714":7435,"44715":7582,"44716":4433,"44717":7810,"44718":4230,"44719":10130,"44720":11750,"44721":3005,"44722":11466,"44723":4308,"44724":13482,"44725":10874,"44726":1603,"44727":9932,"44728":14005,"44729":962,"44730":1091,"44731":635,"44732":2244,"44733":14987,"44734":1977,"44735":699,"44736":5783,"44737":6487,"44738":14079,"44739":2675,"44740":7728,"44741":4606,"44742":2231,"44743":92,"44744":12087,"44745":11183,"44746":12563,"44747":294,"44748":13701,"44749":12211,"44750":699,"44751":13612,"44752":5346,"44753":5394,"44754":7431,"44755":2125,"44756":12409,"44757":9436,"44758":1972,"44759":8920,"44760":837,"44761":12850,"44762":2788,"44763":8686,"44764":5922,"44765":12679,"44766":4718,"44767":8577,"44768":6259,"44769":14500,"44770":3076,"44771":511,"44772":6263,"44773":5095,"44774":8681,"44775":6761,"44776":5195,"44777":10205,"44778":598,"44779":6178,"44780":191,"44781":12584,"44782":4822,"44783":8543,"44784":9985,"44785":2205,"44786":4561,"44787":10671,"44788":4476,"44789":9553,"44790":11720,"44791":10147,"44792":4614,"44793":6293,"44794":4706,"44795":17,"44796":8030,"44797":885,"44798":512,"44799":7191,"44800":13177,"44801":7990,"44802":4952,"44803":4532,"44804":2502,"44805":8582,"44806":9757,"44807":6434,"44808":8851,"44809":7063,"44810":6698,"44811":859,"44812":15088,"44813":2960,"44814":4623,"44815":10872,"44816":3422,"44817":10769,"44818":10446,"44819":13829,"44820":715,"44821":9764,"44822":1352,"44823":11104,"44824":1171,"44825":2687,"44826":14055,"44827":727,"44828":2237,"44829":8603,"44830":14453,"44831":6780,"44832":4959,"44833":5923,"44834":902,"44835":4252,"44836":14335,"44837":4752,"44838":6180,"44839":6913,"44840":11583,"44841":13879,"44842":15115,"44843":12864,"44844":10939,"44845":12174,"44846":4052,"44847":8106,"44848":13788,"44849":7613,"44850":4585,"44851":8058,"44852":11784,"44853":9366,"44854":821,"44855":5923,"44856":6872,"44857":4324,"44858":10077,"44859":13236,"44860":12780,"44861":8554,"44862":14873,"44863":4340,"44864":6548,"44865":14486,"44866":5223,"44867":7185,"44868":855,"44869":6567,"44870":13960,"44871":6983,"44872":431,"44873":2844,"44874":3816,"44875":2276,"44876":9106,"44877":6013,"44878":7620,"44879":5468,"44880":2762,"44881":14000,"44882":8552,"44883":6478,"44884":3597,"44885":4049,"44886":7288,"44887":5241,"44888":7446,"44889":5728,"44890":5719,"44891":8860,"44892":1189,"44893":4347,"44894":8639,"44895":11871,"44896":12761,"44897":7543,"44898":9124,"44899":7208,"44900":6829,"44901":5232,"44902":2135,"44903":2365,"44904":9529,"44905":10623,"44906":11066,"44907":9804,"44908":1580,"44909":6652,"44910":152,"44911":2168,"44912":2596,"44913":15052,"44914":7948,"44915":9383,"44916":5352,"44917":733,"44918":9055,"44919":175,"44920":6842,"44921":11434,"44922":14955,"44923":1979,"44924":14523,"44925":6135,"44926":14268,"44927":9765,"44928":12268,"44929":13743,"44930":4115,"44931":2937,"44932":5038,"44933":14873,"44934":13735,"44935":11873,"44936":1673,"44937":12284,"44938":6989,"44939":10383,"44940":6471,"44941":139,"44942":2424,"44943":14679,"44944":14270,"44945":8671,"44946":3524,"44947":3308,"44948":5449,"44949":7600,"44950":9137,"44951":4247,"44952":11830,"44953":9063,"44954":14532,"44955":8986,"44956":6499,"44957":7442,"44958":8726,"44959":1155,"44960":9548,"44961":14541,"44962":11810,"44963":7689,"44964":9254,"44965":4112,"44966":9208,"44967":11261,"44968":11797,"44969":14747,"44970":14889,"44971":13308,"44972":12446,"44973":5010,"44974":5113,"44975":7340,"44976":10695,"44977":6503,"44978":3999,"44979":3573,"44980":8210,"44981":13392,"44982":1276,"44983":7557,"44984":2804,"44985":2387,"44986":10277,"44987":9061,"44988":731,"44989":6547,"44990":6525,"44991":5514,"44992":9447,"44993":8982,"44994":7476,"44995":13135,"44996":2781,"44997":6170,"44998":11252,"44999":1022,"45000":3193,"45001":12239,"45002":8937,"45003":3799,"45004":6473,"45005":12945,"45006":10987,"45007":9112,"45008":10178,"45009":5803,"45010":14012,"45011":14718,"45012":2193,"45013":11344,"45014":8874,"45015":2341,"45016":5640,"45017":11350,"45018":9094,"45019":10506,"45020":12571,"45021":3683,"45022":7026,"45023":13673,"45024":3318,"45025":140,"45026":4183,"45027":14811,"45028":974,"45029":1334,"45030":1288,"45031":7752,"45032":8654,"45033":12358,"45034":14497,"45035":12204,"45036":13769,"45037":1665,"45038":6909,"45039":377,"45040":14235,"45041":9526,"45042":9359,"45043":5037,"45044":1909,"45045":5573,"45046":6451,"45047":13647,"45048":1275,"45049":11324,"45050":4004,"45051":3119,"45052":14600,"45053":4911,"45054":10259,"45055":13462,"45056":3781,"45057":10138,"45058":4285,"45059":1652,"45060":13408,"45061":9465,"45062":11965,"45063":4488,"45064":2872,"45065":14558,"45066":3787,"45067":11183,"45068":515,"45069":1049,"45070":14209,"45071":5435,"45072":14912,"45073":8584,"45074":12195,"45075":541,"45076":1429,"45077":5444,"45078":11023,"45079":6910,"45080":2541,"45081":3608,"45082":3230,"45083":11294,"45084":9601,"45085":7705,"45086":125,"45087":10944,"45088":117,"45089":8153,"45090":2212,"45091":12943,"45092":4437,"45093":7027,"45094":3465,"45095":6657,"45096":3121,"45097":3217,"45098":8670,"45099":13413,"45100":911,"45101":11993,"45102":1783,"45103":3355,"45104":5738,"45105":14190,"45106":15060,"45107":5788,"45108":12614,"45109":10175,"45110":10534,"45111":1491,"45112":5255,"45113":3861,"45114":5248,"45115":5615,"45116":13473,"45117":14706,"45118":1408,"45119":5060,"45120":1812,"45121":11295,"45122":5598,"45123":825,"45124":5496,"45125":13658,"45126":14676,"45127":7119,"45128":13148,"45129":4803,"45130":1307,"45131":12806,"45132":9447,"45133":10368,"45134":4109,"45135":1226,"45136":474,"45137":5264,"45138":9812,"45139":11313,"45140":866,"45141":8522,"45142":11131,"45143":2437,"45144":2191,"45145":7639,"45146":2248,"45147":13350,"45148":5716,"45149":6289,"45150":7933,"45151":7036,"45152":8026,"45153":5262,"45154":3553,"45155":8983,"45156":12955,"45157":12888,"45158":8910,"45159":792,"45160":13084,"45161":9170,"45162":14680,"45163":14457,"45164":8028,"45165":11187,"45166":673,"45167":3216,"45168":12213,"45169":3865,"45170":9483,"45171":7223,"45172":1701,"45173":12680,"45174":4473,"45175":9153,"45176":2772,"45177":9888,"45178":4773,"45179":12822,"45180":11264,"45181":13162,"45182":1815,"45183":3305,"45184":14942,"45185":1874,"45186":3029,"45187":7499,"45188":7672,"45189":9575,"45190":9764,"45191":13536,"45192":2810,"45193":12791,"45194":13594,"45195":3540,"45196":8443,"45197":4891,"45198":11733,"45199":6940,"45200":9076,"45201":38,"45202":10506,"45203":817,"45204":3326,"45205":635,"45206":10669,"45207":3018,"45208":6691,"45209":9399,"45210":13060,"45211":6394,"45212":5160,"45213":2102,"45214":10202,"45215":13373,"45216":520,"45217":5571,"45218":10015,"45219":11737,"45220":8154,"45221":14751,"45222":2940,"45223":9281,"45224":11186,"45225":13737,"45226":1700,"45227":4586,"45228":1530,"45229":13658,"45230":14623,"45231":12429,"45232":4745,"45233":775,"45234":12846,"45235":834,"45236":6293,"45237":12698,"45238":12813,"45239":13089,"45240":5200,"45241":6791,"45242":1424,"45243":5880,"45244":279,"45245":10500,"45246":13992,"45247":12810,"45248":9612,"45249":13470,"45250":14160,"45251":14401,"45252":7475,"45253":12512,"45254":11972,"45255":3995,"45256":4575,"45257":14759,"45258":4147,"45259":14341,"45260":8758,"45261":14741,"45262":11551,"45263":10330,"45264":5749,"45265":127,"45266":5364,"45267":14896,"45268":12518,"45269":20,"45270":5786,"45271":13990,"45272":14732,"45273":6500,"45274":1864,"45275":11572,"45276":14513,"45277":2526,"45278":5401,"45279":8453,"45280":4568,"45281":13960,"45282":7359,"45283":2755,"45284":12787,"45285":2018,"45286":5665,"45287":11383,"45288":7502,"45289":3484,"45290":459,"45291":10418,"45292":26,"45293":12631,"45294":12809,"45295":14524,"45296":1927,"45297":381,"45298":11244,"45299":7979,"45300":515,"45301":15104,"45302":11773,"45303":6046,"45304":6241,"45305":12085,"45306":13492,"45307":8558,"45308":14487,"45309":5080,"45310":9647,"45311":1992,"45312":12800,"45313":12761,"45314":1391,"45315":12352,"45316":10923,"45317":4847,"45318":7851,"45319":10620,"45320":11323,"45321":2250,"45322":15033,"45323":11428,"45324":10353,"45325":7958,"45326":3085,"45327":8079,"45328":3378,"45329":8083,"45330":11787,"45331":8000,"45332":10527,"45333":12643,"45334":8378,"45335":12743,"45336":8931,"45337":5611,"45338":5256,"45339":4881,"45340":1138,"45341":2936,"45342":3406,"45343":7321,"45344":4490,"45345":5689,"45346":29,"45347":10197,"45348":8134,"45349":4904,"45350":5825,"45351":4954,"45352":8205,"45353":6577,"45354":11147,"45355":1330,"45356":9,"45357":3060,"45358":5040,"45359":1112,"45360":8963,"45361":7150,"45362":4968,"45363":11776,"45364":12435,"45365":5090,"45366":1191,"45367":1344,"45368":1769,"45369":7413,"45370":10395,"45371":13912,"45372":2494,"45373":9395,"45374":2655,"45375":4401,"45376":9729,"45377":6800,"45378":3833,"45379":1347,"45380":9820,"45381":14637,"45382":1172,"45383":6490,"45384":4357,"45385":14223,"45386":32,"45387":13145,"45388":31,"45389":1882,"45390":12602,"45391":12411,"45392":2386,"45393":11864,"45394":3757,"45395":2700,"45396":8678,"45397":3587,"45398":7792,"45399":3878,"45400":5485,"45401":7118,"45402":2024,"45403":14105,"45404":2432,"45405":9047,"45406":10573,"45407":1474,"45408":11819,"45409":13705,"45410":190,"45411":10613,"45412":14834,"45413":7547,"45414":12729,"45415":3474,"45416":14277,"45417":10416,"45418":234,"45419":12903,"45420":7530,"45421":2218,"45422":8947,"45423":1252,"45424":1474,"45425":8444,"45426":14747,"45427":1602,"45428":3567,"45429":9431,"45430":9247,"45431":7537,"45432":13308,"45433":1143,"45434":1779,"45435":9998,"45436":5453,"45437":5469,"45438":10721,"45439":3432,"45440":12184,"45441":4607,"45442":1772,"45443":4296,"45444":10468,"45445":14276,"45446":10919,"45447":12256,"45448":12002,"45449":6270,"45450":12000,"45451":1751,"45452":9645,"45453":3144,"45454":5089,"45455":5207,"45456":13108,"45457":6569,"45458":4097,"45459":2282,"45460":1467,"45461":14964,"45462":4388,"45463":10893,"45464":7072,"45465":11073,"45466":4860,"45467":11580,"45468":3432,"45469":4258,"45470":827,"45471":13653,"45472":14359,"45473":7432,"45474":2614,"45475":11684,"45476":8937,"45477":7768,"45478":5237,"45479":7139,"45480":12387,"45481":11629,"45482":13059,"45483":14455,"45484":5623,"45485":10003,"45486":12762,"45487":9387,"45488":9201,"45489":8111,"45490":10509,"45491":13338,"45492":12848,"45493":9322,"45494":9740,"45495":3518,"45496":12482,"45497":4218,"45498":8679,"45499":9695,"45500":613,"45501":14073,"45502":5416,"45503":331,"45504":13745,"45505":10419,"45506":2715,"45507":10546,"45508":11200,"45509":2750,"45510":2055,"45511":7186,"45512":4479,"45513":6999,"45514":1865,"45515":11741,"45516":4008,"45517":14899,"45518":3115,"45519":4646,"45520":5153,"45521":10743,"45522":1375,"45523":548,"45524":14701,"45525":2289,"45526":1560,"45527":13311,"45528":5955,"45529":5340,"45530":6359,"45531":13800,"45532":7480,"45533":5342,"45534":15029,"45535":10799,"45536":6635,"45537":13426,"45538":48,"45539":10978,"45540":3020,"45541":8611,"45542":13404,"45543":1016,"45544":6020,"45545":4779,"45546":4250,"45547":11019,"45548":11265,"45549":3233,"45550":1896,"45551":5546,"45552":1279,"45553":9472,"45554":13370,"45555":6337,"45556":8712,"45557":7349,"45558":14860,"45559":306,"45560":923,"45561":14322,"45562":126,"45563":5583,"45564":10880,"45565":3591,"45566":40,"45567":10311,"45568":7095,"45569":10276,"45570":6919,"45571":12213,"45572":11398,"45573":15139,"45574":9077,"45575":11517,"45576":8879,"45577":13434,"45578":5927,"45579":9835,"45580":1434,"45581":7242,"45582":533,"45583":6718,"45584":13494,"45585":11685,"45586":5922,"45587":7130,"45588":5346,"45589":10739,"45590":3931,"45591":10274,"45592":3236,"45593":10699,"45594":4433,"45595":10855,"45596":5654,"45597":4869,"45598":1792,"45599":3269,"45600":9771,"45601":7274,"45602":11167,"45603":7699,"45604":5271,"45605":6630,"45606":9830,"45607":1542,"45608":11606,"45609":10520,"45610":10781,"45611":11250,"45612":10910,"45613":14482,"45614":10522,"45615":8069,"45616":7570,"45617":2186,"45618":2582,"45619":12409,"45620":6559,"45621":10577,"45622":11353,"45623":12102,"45624":141,"45625":440,"45626":12743,"45627":1457,"45628":5873,"45629":13488,"45630":10735,"45631":14085,"45632":7362,"45633":9868,"45634":3866,"45635":14058,"45636":7720,"45637":4980,"45638":1909,"45639":14116,"45640":4331,"45641":6844,"45642":3403,"45643":8085,"45644":8513,"45645":12282,"45646":13154,"45647":9317,"45648":1176,"45649":9723,"45650":11097,"45651":12284,"45652":6194,"45653":5604,"45654":11478,"45655":1430,"45656":5851,"45657":1321,"45658":8826,"45659":1168,"45660":12845,"45661":13542,"45662":1321,"45663":7499,"45664":11659,"45665":1817,"45666":3586,"45667":2668,"45668":11341,"45669":3446,"45670":168,"45671":14524,"45672":9417,"45673":848,"45674":3726,"45675":12567,"45676":2443,"45677":8509,"45678":13988,"45679":263,"45680":14772,"45681":6732,"45682":14450,"45683":10291,"45684":8156,"45685":1661,"45686":11280,"45687":2321,"45688":14796,"45689":8544,"45690":13339,"45691":13316,"45692":11464,"45693":2964,"45694":363,"45695":9320,"45696":13823,"45697":875,"45698":6720,"45699":1890,"45700":9525,"45701":14233,"45702":156,"45703":8229,"45704":1531,"45705":10303,"45706":7892,"45707":10133,"45708":14234,"45709":8525,"45710":1506,"45711":10165,"45712":14197,"45713":4511,"45714":4916,"45715":6965,"45716":14300,"45717":2658,"45718":543,"45719":6754,"45720":633,"45721":9076,"45722":13272,"45723":3696,"45724":307,"45725":7526,"45726":10563,"45727":6927,"45728":5994,"45729":13149,"45730":9415,"45731":10170,"45732":2067,"45733":12362,"45734":9029,"45735":7496,"45736":11245,"45737":2267,"45738":10690,"45739":13092,"45740":14318,"45741":13555,"45742":13334,"45743":5860,"45744":12978,"45745":12323,"45746":14911,"45747":11261,"45748":4951,"45749":2859,"45750":13770,"45751":7396,"45752":7549,"45753":12181,"45754":10165,"45755":9315,"45756":5551,"45757":11147,"45758":7581,"45759":1812,"45760":7220,"45761":11954,"45762":15095,"45763":11461,"45764":10288,"45765":11089,"45766":3389,"45767":2734,"45768":3688,"45769":3167,"45770":9518,"45771":2023,"45772":4696,"45773":3530,"45774":6309,"45775":3197,"45776":2623,"45777":8376,"45778":3725,"45779":14190,"45780":213,"45781":6205,"45782":2277,"45783":2467,"45784":12084,"45785":12551,"45786":1589,"45787":6200,"45788":7883,"45789":134,"45790":6596,"45791":14016,"45792":11734,"45793":11590,"45794":9615,"45795":7371,"45796":5236,"45797":12222,"45798":13688,"45799":3442,"45800":7331,"45801":6882,"45802":7970,"45803":15143,"45804":11065,"45805":8233,"45806":6649,"45807":3620,"45808":5680,"45809":5942,"45810":3898,"45811":3173,"45812":1302,"45813":13452,"45814":2202,"45815":9733,"45816":1961,"45817":6386,"45818":3817,"45819":6679,"45820":8584,"45821":1019,"45822":6439,"45823":14412,"45824":8631,"45825":10062,"45826":9975,"45827":1012,"45828":9220,"45829":10300,"45830":13530,"45831":14317,"45832":1247,"45833":719,"45834":11852,"45835":12208,"45836":11774,"45837":1956,"45838":5698,"45839":5645,"45840":9281,"45841":4357,"45842":3806,"45843":432,"45844":6943,"45845":10043,"45846":8422,"45847":1492,"45848":8601,"45849":2780,"45850":3842,"45851":11902,"45852":14778,"45853":14744,"45854":3426,"45855":3437,"45856":13719,"45857":2900,"45858":9872,"45859":5569,"45860":8725,"45861":647,"45862":13685,"45863":13582,"45864":1415,"45865":13901,"45866":87,"45867":4811,"45868":6699,"45869":12197,"45870":11369,"45871":12332,"45872":747,"45873":13479,"45874":7168,"45875":12664,"45876":13529,"45877":4442,"45878":10928,"45879":12133,"45880":6175,"45881":9322,"45882":8691,"45883":291,"45884":13282,"45885":2990,"45886":6719,"45887":13859,"45888":12823,"45889":3624,"45890":11438,"45891":6756,"45892":4541,"45893":9735,"45894":2446,"45895":6524,"45896":41,"45897":14192,"45898":5895,"45899":13524,"45900":5966,"45901":6295,"45902":8468,"45903":661,"45904":14452,"45905":13934,"45906":13800,"45907":14171,"45908":5766,"45909":14474,"45910":3738,"45911":13599,"45912":5597,"45913":11084,"45914":857,"45915":120,"45916":4574,"45917":14803,"45918":9806,"45919":3636,"45920":11279,"45921":7237,"45922":9805,"45923":13029,"45924":4227,"45925":118,"45926":14084,"45927":5279,"45928":7565,"45929":8056,"45930":3249,"45931":7241,"45932":2472,"45933":207,"45934":14424,"45935":13225,"45936":3307,"45937":5879,"45938":11602,"45939":3159,"45940":10109,"45941":5639,"45942":7580,"45943":8525,"45944":3297,"45945":2103,"45946":9989,"45947":6118,"45948":11157,"45949":12710,"45950":2132,"45951":5733,"45952":12208,"45953":11871,"45954":6257,"45955":4731,"45956":10359,"45957":5432,"45958":336,"45959":5078,"45960":13011,"45961":6528,"45962":7462,"45963":12403,"45964":13252,"45965":2896,"45966":608,"45967":1025,"45968":7325,"45969":8054,"45970":853,"45971":14597,"45972":12185,"45973":12135,"45974":10940,"45975":8070,"45976":3184,"45977":3912,"45978":469,"45979":8738,"45980":15036,"45981":8411,"45982":13648,"45983":3114,"45984":5765,"45985":3522,"45986":551,"45987":12692,"45988":4336,"45989":15076,"45990":3841,"45991":256,"45992":10729,"45993":12364,"45994":12865,"45995":14847,"45996":5754,"45997":1416,"45998":13661,"45999":6865,"46000":2874,"46001":3012,"46002":10792,"46003":4104,"46004":4647,"46005":7448,"46006":5868,"46007":8923,"46008":12982,"46009":12903,"46010":12255,"46011":2034,"46012":3685,"46013":1164,"46014":14834,"46015":812,"46016":5104,"46017":2704,"46018":5564,"46019":12746,"46020":587,"46021":3504,"46022":11288,"46023":5573,"46024":5150,"46025":7762,"46026":14666,"46027":1626,"46028":621,"46029":12198,"46030":13046,"46031":4129,"46032":10244,"46033":14740,"46034":2025,"46035":10386,"46036":1583,"46037":13271,"46038":2366,"46039":160,"46040":2412,"46041":2160,"46042":6205,"46043":11825,"46044":2988,"46045":5236,"46046":4281,"46047":11140,"46048":9576,"46049":10854,"46050":9394,"46051":13982,"46052":13252,"46053":8506,"46054":2822,"46055":488,"46056":2782,"46057":8357,"46058":14453,"46059":6314,"46060":7736,"46061":4020,"46062":13189,"46063":7805,"46064":8126,"46065":12751,"46066":10775,"46067":5523,"46068":6706,"46069":8360,"46070":3585,"46071":8646,"46072":2565,"46073":10990,"46074":3587,"46075":4136,"46076":5234,"46077":2789,"46078":14970,"46079":7944,"46080":9832,"46081":5483,"46082":5677,"46083":4569,"46084":11790,"46085":2922,"46086":7565,"46087":14905,"46088":11753,"46089":1993,"46090":10289,"46091":13730,"46092":8370,"46093":13996,"46094":592,"46095":7596,"46096":4717,"46097":9216,"46098":9179,"46099":5973,"46100":5285,"46101":13798,"46102":7465,"46103":14967,"46104":7238,"46105":5984,"46106":14071,"46107":539,"46108":4505,"46109":7673,"46110":8276,"46111":10896,"46112":127,"46113":12688,"46114":15121,"46115":12744,"46116":11053,"46117":2247,"46118":11319,"46119":3789,"46120":11316,"46121":6554,"46122":7527,"46123":4551,"46124":13551,"46125":9865,"46126":8637,"46127":3687,"46128":13629,"46129":2232,"46130":8062,"46131":8651,"46132":12366,"46133":14212,"46134":8876,"46135":12690,"46136":36,"46137":10586,"46138":4000,"46139":2515,"46140":3025,"46141":5230,"46142":896,"46143":2463,"46144":9277,"46145":2985,"46146":1971,"46147":9924,"46148":13534,"46149":4457,"46150":221,"46151":14257,"46152":409,"46153":5218,"46154":5606,"46155":190,"46156":12039,"46157":10271,"46158":296,"46159":11516,"46160":10802,"46161":4834,"46162":6216,"46163":5406,"46164":8934,"46165":10450,"46166":5866,"46167":300,"46168":13713,"46169":5611,"46170":12465,"46171":10378,"46172":2454,"46173":3144,"46174":12720,"46175":3442,"46176":3127,"46177":494,"46178":3091,"46179":1057,"46180":844,"46181":11748,"46182":4386,"46183":3516,"46184":10141,"46185":5756,"46186":7668,"46187":9509,"46188":10365,"46189":8920,"46190":9878,"46191":6122,"46192":15078,"46193":9141,"46194":1614,"46195":6493,"46196":3289,"46197":12116,"46198":9118,"46199":4842,"46200":5607,"46201":8680,"46202":13553,"46203":11370,"46204":14568,"46205":3292,"46206":6503,"46207":1534,"46208":14458,"46209":12659,"46210":6206,"46211":11983,"46212":12951,"46213":7727,"46214":1084,"46215":14400,"46216":6836,"46217":467,"46218":8921,"46219":2935,"46220":13020,"46221":2127,"46222":657,"46223":2857,"46224":6216,"46225":4869,"46226":1370,"46227":14906,"46228":12066,"46229":6106,"46230":5344,"46231":10965,"46232":743,"46233":3349,"46234":9284,"46235":10410,"46236":14918,"46237":1946,"46238":9399,"46239":5294,"46240":5944,"46241":10235,"46242":8572,"46243":3727,"46244":76,"46245":8412,"46246":11746,"46247":3716,"46248":8829,"46249":5745,"46250":5886,"46251":12406,"46252":8701,"46253":12129,"46254":11339,"46255":4186,"46256":12500,"46257":5317,"46258":7906,"46259":11488,"46260":7186,"46261":13578,"46262":8578,"46263":7060,"46264":10037,"46265":14435,"46266":14067,"46267":1355,"46268":4810,"46269":6683,"46270":5872,"46271":7911,"46272":12846,"46273":9933,"46274":2775,"46275":6332,"46276":9797,"46277":5655,"46278":12537,"46279":9821,"46280":9692,"46281":10468,"46282":5186,"46283":7286,"46284":153,"46285":3074,"46286":5248,"46287":10246,"46288":1096,"46289":7641,"46290":9412,"46291":14273,"46292":5210,"46293":2032,"46294":12676,"46295":5179,"46296":4226,"46297":12464,"46298":12186,"46299":12862,"46300":6880,"46301":4572,"46302":14229,"46303":10172,"46304":2258,"46305":6572,"46306":12628,"46307":10119,"46308":12215,"46309":8094,"46310":9080,"46311":4499,"46312":5434,"46313":10510,"46314":13656,"46315":1878,"46316":11315,"46317":13087,"46318":5477,"46319":4280,"46320":5371,"46321":9361,"46322":2605,"46323":2600,"46324":3580,"46325":11980,"46326":12249,"46327":2359,"46328":14773,"46329":12351,"46330":12521,"46331":6990,"46332":8159,"46333":12398,"46334":10016,"46335":2988,"46336":14138,"46337":8279,"46338":13190,"46339":14346,"46340":12911,"46341":13889,"46342":11469,"46343":2209,"46344":4112,"46345":6144,"46346":13305,"46347":6265,"46348":2718,"46349":1162,"46350":1738,"46351":15121,"46352":10692,"46353":2514,"46354":2317,"46355":10282,"46356":520,"46357":9209,"46358":10175,"46359":8931,"46360":67,"46361":11792,"46362":14022,"46363":13405,"46364":4331,"46365":2144,"46366":4287,"46367":9030,"46368":4455,"46369":976,"46370":11165,"46371":4055,"46372":9667,"46373":13955,"46374":2689,"46375":3369,"46376":1499,"46377":586,"46378":2121,"46379":492,"46380":4899,"46381":2019,"46382":12710,"46383":8319,"46384":8644,"46385":4401,"46386":4970,"46387":11539,"46388":8777,"46389":7350,"46390":3139,"46391":2683,"46392":2060,"46393":8048,"46394":2636,"46395":388,"46396":2878,"46397":14387,"46398":6281,"46399":1217,"46400":10562,"46401":804,"46402":11804,"46403":260,"46404":10506,"46405":7521,"46406":2202,"46407":5622,"46408":1316,"46409":11284,"46410":14874,"46411":7428,"46412":14897,"46413":11250,"46414":8625,"46415":13687,"46416":11600,"46417":8356,"46418":14067,"46419":3470,"46420":7907,"46421":12161,"46422":6814,"46423":12783,"46424":12071,"46425":9935,"46426":2544,"46427":14987,"46428":2360,"46429":14372,"46430":9158,"46431":902,"46432":940,"46433":4280,"46434":1615,"46435":7477,"46436":7089,"46437":10499,"46438":576,"46439":5011,"46440":5207,"46441":1824,"46442":8742,"46443":7677,"46444":11523,"46445":251,"46446":494,"46447":11371,"46448":8834,"46449":7016,"46450":4641,"46451":10283,"46452":4067,"46453":5824,"46454":12394,"46455":7860,"46456":13447,"46457":644,"46458":14691,"46459":10348,"46460":3116,"46461":843,"46462":3274,"46463":6015,"46464":8005,"46465":5180,"46466":7792,"46467":10962,"46468":5916,"46469":11486,"46470":13639,"46471":12629,"46472":4764,"46473":12578,"46474":11987,"46475":15057,"46476":9781,"46477":12482,"46478":994,"46479":4927,"46480":3568,"46481":11917,"46482":6395,"46483":8805,"46484":11940,"46485":4419,"46486":1743,"46487":5439,"46488":54,"46489":1759,"46490":7203,"46491":611,"46492":7893,"46493":1608,"46494":9628,"46495":5122,"46496":2811,"46497":13759,"46498":12473,"46499":14877,"46500":14684,"46501":172,"46502":13785,"46503":5219,"46504":5408,"46505":7446,"46506":6726,"46507":3274,"46508":6936,"46509":3274,"46510":10959,"46511":14878,"46512":11062,"46513":5035,"46514":13808,"46515":11728,"46516":4317,"46517":12330,"46518":7499,"46519":14393,"46520":10700,"46521":7750,"46522":7498,"46523":11592,"46524":10270,"46525":8171,"46526":14332,"46527":13921,"46528":11940,"46529":6200,"46530":2256,"46531":6224,"46532":12895,"46533":3311,"46534":3429,"46535":932,"46536":11196,"46537":4866,"46538":6992,"46539":10863,"46540":2351,"46541":13702,"46542":1480,"46543":13244,"46544":10033,"46545":11412,"46546":5195,"46547":615,"46548":12262,"46549":1901,"46550":1966,"46551":7364,"46552":6539,"46553":12480,"46554":9276,"46555":9604,"46556":12961,"46557":3216,"46558":1011,"46559":10086,"46560":14969,"46561":9777,"46562":5452,"46563":4214,"46564":6256,"46565":2436,"46566":565,"46567":11834,"46568":31,"46569":3155,"46570":5367,"46571":10705,"46572":9105,"46573":2838,"46574":8906,"46575":9103,"46576":12763,"46577":5684,"46578":9909,"46579":7964,"46580":12114,"46581":6691,"46582":2650,"46583":15151,"46584":3553,"46585":13740,"46586":10186,"46587":11400,"46588":3553,"46589":142,"46590":8013,"46591":14674,"46592":11406,"46593":3117,"46594":13350,"46595":2705,"46596":1800,"46597":10852,"46598":12545,"46599":2520,"46600":11984,"46601":404,"46602":4944,"46603":14429,"46604":11555,"46605":1989,"46606":15015,"46607":6187,"46608":7784,"46609":1080,"46610":9567,"46611":11046,"46612":10475,"46613":3181,"46614":3541,"46615":10905,"46616":1519,"46617":6003,"46618":6661,"46619":1323,"46620":13315,"46621":8945,"46622":14923,"46623":14350,"46624":2212,"46625":8752,"46626":2362,"46627":9335,"46628":5023,"46629":7950,"46630":10917,"46631":12451,"46632":6992,"46633":6364,"46634":7219,"46635":6183,"46636":4158,"46637":6664,"46638":14185,"46639":5909,"46640":1096,"46641":9118,"46642":8514,"46643":4444,"46644":1700,"46645":8859,"46646":12563,"46647":6453,"46648":13215,"46649":10703,"46650":316,"46651":12160,"46652":2412,"46653":1257,"46654":7881,"46655":1528,"46656":13988,"46657":2048,"46658":363,"46659":1937,"46660":6710,"46661":1889,"46662":8201,"46663":13898,"46664":6034,"46665":4425,"46666":14693,"46667":5791,"46668":12057,"46669":2772,"46670":9814,"46671":3480,"46672":8822,"46673":10802,"46674":6947,"46675":717,"46676":3087,"46677":13686,"46678":387,"46679":5945,"46680":6551,"46681":11283,"46682":3581,"46683":9385,"46684":6860,"46685":7154,"46686":12895,"46687":7239,"46688":8591,"46689":994,"46690":12488,"46691":5483,"46692":9629,"46693":9374,"46694":9143,"46695":7334,"46696":657,"46697":7725,"46698":14814,"46699":10160,"46700":11293,"46701":8246,"46702":6715,"46703":5477,"46704":14206,"46705":5303,"46706":4124,"46707":2246,"46708":10998,"46709":5321,"46710":11005,"46711":7734,"46712":11197,"46713":11553,"46714":14557,"46715":11631,"46716":8985,"46717":4354,"46718":5367,"46719":7764,"46720":5829,"46721":6945,"46722":4205,"46723":10186,"46724":1216,"46725":1539,"46726":7751,"46727":7618,"46728":6198,"46729":9899,"46730":4843,"46731":48,"46732":8301,"46733":11330,"46734":6729,"46735":13347,"46736":10050,"46737":2987,"46738":4173,"46739":6305,"46740":7716,"46741":12311,"46742":1870,"46743":10014,"46744":13953,"46745":2041,"46746":11572,"46747":12726,"46748":7002,"46749":5462,"46750":12356,"46751":6692,"46752":9364,"46753":3234,"46754":3818,"46755":8938,"46756":6,"46757":10958,"46758":12934,"46759":1702,"46760":4951,"46761":8001,"46762":9432,"46763":7803,"46764":8947,"46765":8050,"46766":1426,"46767":12808,"46768":13578,"46769":8172,"46770":9651,"46771":13376,"46772":5790,"46773":14608,"46774":14592,"46775":11895,"46776":8971,"46777":10176,"46778":2509,"46779":13086,"46780":11616,"46781":2362,"46782":3556,"46783":6686,"46784":10047,"46785":13051,"46786":509,"46787":13879,"46788":6543,"46789":8862,"46790":11337,"46791":13640,"46792":13906,"46793":5770,"46794":5248,"46795":13723,"46796":2278,"46797":4154,"46798":13847,"46799":3303,"46800":3983,"46801":2909,"46802":1140,"46803":1606,"46804":13055,"46805":13514,"46806":1468,"46807":14892,"46808":14097,"46809":1683,"46810":5391,"46811":13235,"46812":9892,"46813":14928,"46814":10429,"46815":5223,"46816":9372,"46817":13460,"46818":9557,"46819":9021,"46820":13429,"46821":3578,"46822":14755,"46823":6278,"46824":4038,"46825":10126,"46826":4237,"46827":3682,"46828":14197,"46829":4889,"46830":8452,"46831":10442,"46832":4478,"46833":994,"46834":12990,"46835":7349,"46836":1243,"46837":9035,"46838":2970,"46839":7986,"46840":7143,"46841":9375,"46842":14949,"46843":5837,"46844":10838,"46845":9446,"46846":11178,"46847":4336,"46848":13180,"46849":10945,"46850":2992,"46851":9311,"46852":2096,"46853":5602,"46854":1740,"46855":10629,"46856":5884,"46857":9954,"46858":14004,"46859":9945,"46860":3155,"46861":1409,"46862":6973,"46863":1863,"46864":4557,"46865":2521,"46866":1014,"46867":596,"46868":1642,"46869":5466,"46870":6742,"46871":775,"46872":8554,"46873":2784,"46874":6222,"46875":12759,"46876":10411,"46877":9633,"46878":13517,"46879":12295,"46880":8024,"46881":12270,"46882":5441,"46883":3233,"46884":4504,"46885":12757,"46886":9623,"46887":8886,"46888":8084,"46889":9935,"46890":5752,"46891":2493,"46892":8754,"46893":14314,"46894":12532,"46895":5900,"46896":2016,"46897":2900,"46898":12832,"46899":2035,"46900":123,"46901":1955,"46902":390,"46903":4341,"46904":8049,"46905":5701,"46906":11602,"46907":8648,"46908":10908,"46909":3921,"46910":6826,"46911":13333,"46912":1110,"46913":4578,"46914":3877,"46915":13911,"46916":13923,"46917":10315,"46918":7601,"46919":7058,"46920":13835,"46921":2741,"46922":12422,"46923":7192,"46924":2507,"46925":12461,"46926":13454,"46927":13202,"46928":7149,"46929":7410,"46930":14153,"46931":13030,"46932":12551,"46933":1925,"46934":14268,"46935":5155,"46936":1724,"46937":5968,"46938":1768,"46939":1336,"46940":10106,"46941":2099,"46942":7748,"46943":12451,"46944":9044,"46945":3559,"46946":6922,"46947":14024,"46948":1162,"46949":14887,"46950":10782,"46951":4449,"46952":22,"46953":11233,"46954":6819,"46955":15123,"46956":1796,"46957":5390,"46958":13307,"46959":5225,"46960":4330,"46961":5190,"46962":7997,"46963":734,"46964":7078,"46965":3744,"46966":12331,"46967":14779,"46968":10077,"46969":13050,"46970":2084,"46971":1438,"46972":134,"46973":11930,"46974":4742,"46975":8827,"46976":3066,"46977":12678,"46978":6989,"46979":13754,"46980":5555,"46981":4941,"46982":10416,"46983":8271,"46984":11959,"46985":3245,"46986":13558,"46987":14257,"46988":919,"46989":14229,"46990":4593,"46991":4020,"46992":1679,"46993":7875,"46994":3209,"46995":13212,"46996":4913,"46997":6989,"46998":1442,"46999":10907,"47000":7074,"47001":3595,"47002":7048,"47003":10111,"47004":14684,"47005":11712,"47006":6282,"47007":9970,"47008":11478,"47009":648,"47010":13307,"47011":5362,"47012":8317,"47013":11121,"47014":11634,"47015":7268,"47016":4987,"47017":9743,"47018":13991,"47019":12679,"47020":14924,"47021":200,"47022":11552,"47023":4453,"47024":6650,"47025":11044,"47026":11217,"47027":6865,"47028":3848,"47029":5272,"47030":13623,"47031":1462,"47032":121,"47033":5345,"47034":10172,"47035":6991,"47036":8229,"47037":9342,"47038":7582,"47039":12508,"47040":4886,"47041":3430,"47042":3470,"47043":4712,"47044":3236,"47045":5702,"47046":11493,"47047":14109,"47048":10929,"47049":5616,"47050":11188,"47051":10169,"47052":8185,"47053":8750,"47054":11855,"47055":14632,"47056":8799,"47057":5391,"47058":12069,"47059":6036,"47060":4991,"47061":600,"47062":2601,"47063":11111,"47064":289,"47065":114,"47066":9201,"47067":12460,"47068":10996,"47069":1922,"47070":5137,"47071":14080,"47072":2202,"47073":13300,"47074":4170,"47075":1949,"47076":6712,"47077":12934,"47078":13199,"47079":10312,"47080":5974,"47081":12110,"47082":5758,"47083":5875,"47084":11287,"47085":12093,"47086":13806,"47087":14104,"47088":14266,"47089":10803,"47090":3748,"47091":3878,"47092":14436,"47093":6743,"47094":6127,"47095":12908,"47096":788,"47097":2305,"47098":13676,"47099":5690,"47100":14656,"47101":9862,"47102":5095,"47103":5381,"47104":3047,"47105":12897,"47106":13317,"47107":12661,"47108":8209,"47109":11696,"47110":2117,"47111":249,"47112":637,"47113":10677,"47114":3967,"47115":5115,"47116":6916,"47117":12356,"47118":11820,"47119":10593,"47120":10153,"47121":5598,"47122":8926,"47123":506,"47124":1299,"47125":7603,"47126":1735,"47127":10441,"47128":4756,"47129":12091,"47130":202,"47131":7881,"47132":13327,"47133":13102,"47134":13842,"47135":11870,"47136":7881,"47137":12244,"47138":12805,"47139":3646,"47140":8287,"47141":11291,"47142":10352,"47143":10141,"47144":14601,"47145":8803,"47146":2562,"47147":242,"47148":2064,"47149":13481,"47150":5881,"47151":5810,"47152":10325,"47153":11401,"47154":9999,"47155":6132,"47156":14035,"47157":13818,"47158":10982,"47159":1156,"47160":9683,"47161":2679,"47162":13090,"47163":15,"47164":11575,"47165":9560,"47166":12988,"47167":13039,"47168":14325,"47169":5499,"47170":2379,"47171":3271,"47172":12808,"47173":12717,"47174":4821,"47175":6480,"47176":4360,"47177":10911,"47178":13605,"47179":9110,"47180":7769,"47181":3890,"47182":11492,"47183":5135,"47184":4509,"47185":10821,"47186":3411,"47187":1506,"47188":3866,"47189":5434,"47190":4074,"47191":10898,"47192":6002,"47193":4445,"47194":2162,"47195":12635,"47196":3894,"47197":9394,"47198":11401,"47199":5003,"47200":2162,"47201":4852,"47202":2483,"47203":8951,"47204":11531,"47205":12378,"47206":3488,"47207":14989,"47208":8694,"47209":13128,"47210":9560,"47211":11644,"47212":10486,"47213":9753,"47214":8689,"47215":6397,"47216":4953,"47217":10891,"47218":7766,"47219":8975,"47220":9598,"47221":4696,"47222":6782,"47223":8650,"47224":11842,"47225":10503,"47226":10704,"47227":1794,"47228":11555,"47229":13127,"47230":9880,"47231":5831,"47232":11808,"47233":11343,"47234":2339,"47235":13247,"47236":12273,"47237":9004,"47238":7011,"47239":11836,"47240":11806,"47241":5406,"47242":6743,"47243":529,"47244":12420,"47245":10477,"47246":8882,"47247":8636,"47248":6274,"47249":5431,"47250":10993,"47251":4572,"47252":13339,"47253":1339,"47254":12361,"47255":3389,"47256":6466,"47257":11219,"47258":12962,"47259":7044,"47260":1087,"47261":3999,"47262":2784,"47263":8743,"47264":13464,"47265":5713,"47266":7243,"47267":6281,"47268":7753,"47269":2821,"47270":482,"47271":13823,"47272":12386,"47273":3690,"47274":11830,"47275":1769,"47276":8416,"47277":3576,"47278":13265,"47279":12969,"47280":2351,"47281":1894,"47282":2349,"47283":11420,"47284":14526,"47285":7813,"47286":9576,"47287":11083,"47288":14265,"47289":4255,"47290":7260,"47291":7420,"47292":4255,"47293":12849,"47294":1932,"47295":3437,"47296":6077,"47297":11342,"47298":9287,"47299":811,"47300":6887,"47301":11604,"47302":13604,"47303":6956,"47304":3414,"47305":10635,"47306":4490,"47307":2423,"47308":13012,"47309":5827,"47310":9238,"47311":8080,"47312":11515,"47313":2218,"47314":7891,"47315":11654,"47316":13668,"47317":5097,"47318":13993,"47319":9527,"47320":14114,"47321":3441,"47322":11585,"47323":3713,"47324":618,"47325":1100,"47326":11895,"47327":14251,"47328":4696,"47329":7302,"47330":14495,"47331":5253,"47332":160,"47333":941,"47334":4995,"47335":6326,"47336":12509,"47337":14947,"47338":9832,"47339":4706,"47340":2556,"47341":9494,"47342":4843,"47343":59,"47344":6747,"47345":1329,"47346":7620,"47347":10622,"47348":3856,"47349":8157,"47350":4182,"47351":4473,"47352":14152,"47353":11137,"47354":24,"47355":12909,"47356":14964,"47357":13604,"47358":7847,"47359":12009,"47360":14191,"47361":10561,"47362":2027,"47363":13443,"47364":4818,"47365":3302,"47366":4570,"47367":10155,"47368":4563,"47369":14013,"47370":12241,"47371":12873,"47372":222,"47373":6489,"47374":2332,"47375":6622,"47376":14102,"47377":7407,"47378":11420,"47379":8501,"47380":13523,"47381":5217,"47382":14835,"47383":14960,"47384":14052,"47385":2347,"47386":8848,"47387":581,"47388":6246,"47389":14955,"47390":12730,"47391":9442,"47392":5664,"47393":57,"47394":13569,"47395":4735,"47396":9351,"47397":6193,"47398":13126,"47399":1048,"47400":4237,"47401":7657,"47402":14934,"47403":458,"47404":6802,"47405":13735,"47406":6869,"47407":6033,"47408":14970,"47409":1495,"47410":11686,"47411":3970,"47412":7788,"47413":10926,"47414":1413,"47415":12810,"47416":12750,"47417":4032,"47418":4474,"47419":13595,"47420":10069,"47421":11216,"47422":1775,"47423":9348,"47424":13624,"47425":14307,"47426":7975,"47427":5418,"47428":13776,"47429":10373,"47430":8029,"47431":5024,"47432":9420,"47433":4823,"47434":3714,"47435":3868,"47436":7929,"47437":4452,"47438":895,"47439":10422,"47440":10686,"47441":2886,"47442":11653,"47443":12983,"47444":6429,"47445":4574,"47446":8093,"47447":11249,"47448":9731,"47449":1048,"47450":7461,"47451":9455,"47452":3862,"47453":13979,"47454":4901,"47455":10861,"47456":2791,"47457":14884,"47458":11721,"47459":7738,"47460":10189,"47461":8173,"47462":10826,"47463":5773,"47464":10746,"47465":7550,"47466":6446,"47467":7834,"47468":9245,"47469":11001,"47470":407,"47471":2993,"47472":6256,"47473":2968,"47474":5676,"47475":10470,"47476":4026,"47477":2141,"47478":6203,"47479":2234,"47480":15052,"47481":7295,"47482":12822,"47483":4572,"47484":6355,"47485":7183,"47486":2485,"47487":2804,"47488":1237,"47489":10188,"47490":14435,"47491":219,"47492":1752,"47493":14283,"47494":4875,"47495":14575,"47496":2188,"47497":6341,"47498":291,"47499":11609,"47500":13910,"47501":370,"47502":1811,"47503":6382,"47504":6516,"47505":2536,"47506":14294,"47507":10352,"47508":4255,"47509":6295,"47510":12400,"47511":2969,"47512":4299,"47513":4931,"47514":3166,"47515":13510,"47516":12435,"47517":14590,"47518":4576,"47519":9605,"47520":9535,"47521":5735,"47522":7338,"47523":4795,"47524":8688,"47525":11532,"47526":3938,"47527":10956,"47528":5111,"47529":10507,"47530":1516,"47531":6936,"47532":6139,"47533":2303,"47534":15024,"47535":5777,"47536":9049,"47537":11786,"47538":961,"47539":163,"47540":8601,"47541":8438,"47542":4481,"47543":9516,"47544":2245,"47545":6971,"47546":400,"47547":4638,"47548":4239,"47549":675,"47550":7572,"47551":1952,"47552":9062,"47553":9128,"47554":4774,"47555":1803,"47556":5518,"47557":15006,"47558":8823,"47559":5896,"47560":13834,"47561":5820,"47562":12218,"47563":158,"47564":10619,"47565":14438,"47566":8991,"47567":14237,"47568":7129,"47569":911,"47570":5154,"47571":4872,"47572":8442,"47573":14837,"47574":4051,"47575":10088,"47576":14826,"47577":8569,"47578":3971,"47579":3062,"47580":601,"47581":14850,"47582":13011,"47583":4348,"47584":2267,"47585":5615,"47586":14030,"47587":1056,"47588":10110,"47589":10401,"47590":11876,"47591":3337,"47592":2280,"47593":5434,"47594":2739,"47595":5343,"47596":7339,"47597":27,"47598":6556,"47599":14352,"47600":4135,"47601":12112,"47602":11120,"47603":6019,"47604":5996,"47605":2495,"47606":14687,"47607":6323,"47608":12692,"47609":3698,"47610":8543,"47611":5283,"47612":13936,"47613":1314,"47614":7021,"47615":8244,"47616":9479,"47617":8667,"47618":11327,"47619":10166,"47620":2927,"47621":4069,"47622":11194,"47623":131,"47624":5303,"47625":6995,"47626":13728,"47627":10402,"47628":8749,"47629":4677,"47630":5469,"47631":1791,"47632":14339,"47633":14578,"47634":5415,"47635":2661,"47636":14547,"47637":8496,"47638":8792,"47639":1223,"47640":2244,"47641":7174,"47642":4755,"47643":7237,"47644":3109,"47645":4665,"47646":5696,"47647":10152,"47648":6335,"47649":5689,"47650":6735,"47651":5277,"47652":843,"47653":6966,"47654":9911,"47655":5825,"47656":13096,"47657":592,"47658":3621,"47659":6563,"47660":4897,"47661":10755,"47662":10709,"47663":7557,"47664":1962,"47665":11862,"47666":8409,"47667":8972,"47668":9107,"47669":11714,"47670":5195,"47671":12680,"47672":4720,"47673":2628,"47674":5772,"47675":9488,"47676":12582,"47677":9510,"47678":4751,"47679":8138,"47680":8137,"47681":12664,"47682":82,"47683":1097,"47684":8402,"47685":10387,"47686":1843,"47687":4275,"47688":3596,"47689":13515,"47690":14929,"47691":12073,"47692":1075,"47693":4174,"47694":8037,"47695":1773,"47696":3732,"47697":5799,"47698":11663,"47699":12126,"47700":10064,"47701":2911,"47702":7298,"47703":5240,"47704":5682,"47705":4609,"47706":6820,"47707":11667,"47708":4648,"47709":2155,"47710":359,"47711":1713,"47712":283,"47713":110,"47714":8282,"47715":7026,"47716":6955,"47717":5113,"47718":14434,"47719":8958,"47720":11731,"47721":7838,"47722":3456,"47723":14453,"47724":14759,"47725":6182,"47726":5555,"47727":1326,"47728":2497,"47729":13546,"47730":12519,"47731":9325,"47732":5479,"47733":14139,"47734":6467,"47735":10552,"47736":9170,"47737":9046,"47738":5518,"47739":11168,"47740":2740,"47741":2160,"47742":5948,"47743":10711,"47744":10912,"47745":13468,"47746":10762,"47747":7200,"47748":9052,"47749":5154,"47750":7503,"47751":12310,"47752":13170,"47753":3767,"47754":12861,"47755":15071,"47756":8918,"47757":6192,"47758":674,"47759":8082,"47760":6804,"47761":5720,"47762":6325,"47763":7547,"47764":12367,"47765":1990,"47766":11430,"47767":13243,"47768":5398,"47769":2479,"47770":9214,"47771":2472,"47772":6321,"47773":11089,"47774":8124,"47775":13348,"47776":3032,"47777":9942,"47778":142,"47779":4225,"47780":2515,"47781":492,"47782":5959,"47783":8292,"47784":4822,"47785":5001,"47786":780,"47787":12901,"47788":11275,"47789":8107,"47790":6557,"47791":7201,"47792":7806,"47793":7684,"47794":252,"47795":14674,"47796":6920,"47797":6377,"47798":7755,"47799":3488,"47800":11407,"47801":10814,"47802":12546,"47803":12323,"47804":9847,"47805":6861,"47806":12313,"47807":14411,"47808":12560,"47809":12238,"47810":4122,"47811":11433,"47812":7668,"47813":1498,"47814":9456,"47815":13237,"47816":8622,"47817":7406,"47818":7275,"47819":9489,"47820":271,"47821":52,"47822":1071,"47823":10841,"47824":7361,"47825":3625,"47826":173,"47827":3433,"47828":11247,"47829":9901,"47830":7892,"47831":14560,"47832":8184,"47833":11647,"47834":3786,"47835":10153,"47836":10006,"47837":13247,"47838":4600,"47839":5372,"47840":1767,"47841":697,"47842":11764,"47843":10793,"47844":6494,"47845":13965,"47846":2790,"47847":9869,"47848":11931,"47849":9117,"47850":6494,"47851":11253,"47852":9673,"47853":3519,"47854":8465,"47855":674,"47856":1427,"47857":10473,"47858":3435,"47859":14842,"47860":995,"47861":2085,"47862":13773,"47863":6992,"47864":8649,"47865":13104,"47866":2630,"47867":11929,"47868":14136,"47869":12176,"47870":5494,"47871":11491,"47872":13867,"47873":7300,"47874":5175,"47875":2198,"47876":11213,"47877":9031,"47878":6505,"47879":7920,"47880":9907,"47881":3121,"47882":8610,"47883":7184,"47884":1056,"47885":8629,"47886":2678,"47887":8843,"47888":12762,"47889":13322,"47890":2025,"47891":13942,"47892":4408,"47893":7341,"47894":10922,"47895":1959,"47896":10358,"47897":10059,"47898":12742,"47899":9757,"47900":13539,"47901":12942,"47902":10046,"47903":1339,"47904":13451,"47905":3472,"47906":6964,"47907":14380,"47908":4219,"47909":10315,"47910":2914,"47911":3450,"47912":1624,"47913":14598,"47914":1480,"47915":12744,"47916":11327,"47917":1614,"47918":1351,"47919":6850,"47920":1851,"47921":4970,"47922":4954,"47923":14594,"47924":3734,"47925":7591,"47926":14692,"47927":13190,"47928":10379,"47929":9148,"47930":12414,"47931":10693,"47932":6908,"47933":753,"47934":14303,"47935":14085,"47936":2996,"47937":5166,"47938":14494,"47939":3476,"47940":6279,"47941":14675,"47942":10019,"47943":4317,"47944":3304,"47945":6370,"47946":4689,"47947":1537,"47948":8022,"47949":14105,"47950":7459,"47951":13930,"47952":295,"47953":904,"47954":10469,"47955":3604,"47956":9810,"47957":9855,"47958":9857,"47959":8369,"47960":3349,"47961":1533,"47962":7682,"47963":1056,"47964":9068,"47965":3291,"47966":6920,"47967":10491,"47968":9408,"47969":11710,"47970":14906,"47971":9415,"47972":9374,"47973":4993,"47974":1321,"47975":1536,"47976":10618,"47977":3731,"47978":5714,"47979":3498,"47980":9301,"47981":515,"47982":12130,"47983":2557,"47984":7694,"47985":14426,"47986":9374,"47987":2796,"47988":12306,"47989":3544,"47990":13504,"47991":490,"47992":9119,"47993":9757,"47994":5302,"47995":8080,"47996":3108,"47997":4848,"47998":5059,"47999":11856,"48000":2508,"48001":9514,"48002":2302,"48003":11048,"48004":6519,"48005":8991,"48006":3003,"48007":6074,"48008":14708,"48009":12995,"48010":2043,"48011":14501,"48012":4664,"48013":6826,"48014":13083,"48015":6705,"48016":8878,"48017":4286,"48018":13488,"48019":4673,"48020":1694,"48021":14562,"48022":13998,"48023":13672,"48024":14777,"48025":521,"48026":12599,"48027":1464,"48028":2854,"48029":9052,"48030":13129,"48031":1705,"48032":11138,"48033":2646,"48034":9525,"48035":12971,"48036":15050,"48037":13761,"48038":14038,"48039":7807,"48040":3711,"48041":13396,"48042":1483,"48043":5948,"48044":3583,"48045":3413,"48046":6762,"48047":797,"48048":3516,"48049":4485,"48050":2242,"48051":7732,"48052":12753,"48053":11840,"48054":12369,"48055":11656,"48056":5415,"48057":12827,"48058":6835,"48059":9186,"48060":10936,"48061":13838,"48062":6326,"48063":14468,"48064":7386,"48065":11431,"48066":6850,"48067":7110,"48068":9141,"48069":11513,"48070":13641,"48071":8891,"48072":3699,"48073":11176,"48074":3679,"48075":7472,"48076":5668,"48077":8242,"48078":1718,"48079":6281,"48080":9681,"48081":1816,"48082":7844,"48083":13496,"48084":10666,"48085":3589,"48086":8659,"48087":4685,"48088":1698,"48089":8033,"48090":14499,"48091":1617,"48092":4097,"48093":10163,"48094":12357,"48095":5104,"48096":7994,"48097":14355,"48098":5295,"48099":5747,"48100":8860,"48101":4719,"48102":12316,"48103":14468,"48104":4049,"48105":7997,"48106":10990,"48107":6727,"48108":9494,"48109":14438,"48110":10120,"48111":3846,"48112":11800,"48113":8053,"48114":3937,"48115":13667,"48116":15136,"48117":14154,"48118":1499,"48119":7952,"48120":4524,"48121":14239,"48122":11013,"48123":1418,"48124":13672,"48125":2734,"48126":12801,"48127":13256,"48128":6990,"48129":14770,"48130":3572,"48131":610,"48132":4708,"48133":3138,"48134":8720,"48135":2642,"48136":11734,"48137":9504,"48138":8780,"48139":7148,"48140":3969,"48141":9208,"48142":2937,"48143":2588,"48144":6816,"48145":7584,"48146":8016,"48147":693,"48148":4716,"48149":2372,"48150":2329,"48151":11836,"48152":13531,"48153":5800,"48154":4812,"48155":6198,"48156":12851,"48157":8945,"48158":3202,"48159":4164,"48160":10071,"48161":2944,"48162":3271,"48163":4050,"48164":13607,"48165":7816,"48166":13246,"48167":9870,"48168":3452,"48169":7522,"48170":2810,"48171":7982,"48172":9620,"48173":8964,"48174":13720,"48175":832,"48176":1362,"48177":51,"48178":7691,"48179":5683,"48180":7966,"48181":4407,"48182":2167,"48183":13980,"48184":3249,"48185":5149,"48186":608,"48187":8121,"48188":7725,"48189":2318,"48190":639,"48191":7031,"48192":2192,"48193":13739,"48194":12590,"48195":5658,"48196":6300,"48197":4719,"48198":15091,"48199":546,"48200":723,"48201":14410,"48202":6573,"48203":2185,"48204":5466,"48205":10892,"48206":11365,"48207":10429,"48208":11470,"48209":4235,"48210":9387,"48211":3462,"48212":9065,"48213":15139,"48214":2709,"48215":13852,"48216":2146,"48217":4469,"48218":2607,"48219":7017,"48220":14455,"48221":106,"48222":13751,"48223":11925,"48224":6036,"48225":5847,"48226":12603,"48227":10079,"48228":12894,"48229":9443,"48230":4352,"48231":522,"48232":3261,"48233":4517,"48234":9124,"48235":4774,"48236":8164,"48237":28,"48238":2035,"48239":12762,"48240":929,"48241":1052,"48242":12643,"48243":10950,"48244":8418,"48245":5785,"48246":3829,"48247":7676,"48248":10576,"48249":13180,"48250":11123,"48251":5681,"48252":6460,"48253":11437,"48254":12165,"48255":436,"48256":12608,"48257":9627,"48258":11182,"48259":11913,"48260":7149,"48261":11698,"48262":12979,"48263":10119,"48264":9996,"48265":3837,"48266":3483,"48267":1981,"48268":1691,"48269":618,"48270":4817,"48271":3926,"48272":14672,"48273":7063,"48274":2757,"48275":1402,"48276":13082,"48277":10154,"48278":1912,"48279":13951,"48280":2651,"48281":2154,"48282":15096,"48283":6631,"48284":12100,"48285":14472,"48286":6394,"48287":10515,"48288":3937,"48289":13143,"48290":4250,"48291":3433,"48292":9418,"48293":4475,"48294":6702,"48295":2014,"48296":6368,"48297":11688,"48298":5891,"48299":8151,"48300":12836,"48301":9382,"48302":7393,"48303":4381,"48304":3820,"48305":10948,"48306":6866,"48307":16,"48308":4977,"48309":1125,"48310":11142,"48311":14292,"48312":7427,"48313":114,"48314":933,"48315":7754,"48316":12353,"48317":14738,"48318":9696,"48319":6318,"48320":2507,"48321":14170,"48322":2290,"48323":8845,"48324":10455,"48325":14622,"48326":14753,"48327":321,"48328":4299,"48329":3544,"48330":3613,"48331":14932,"48332":1521,"48333":11232,"48334":14806,"48335":12381,"48336":5921,"48337":6320,"48338":10743,"48339":1188,"48340":9450,"48341":12243,"48342":527,"48343":13039,"48344":8694,"48345":14261,"48346":8765,"48347":316,"48348":9864,"48349":12582,"48350":3768,"48351":9910,"48352":915,"48353":4378,"48354":8275,"48355":4088,"48356":9122,"48357":3654,"48358":2560,"48359":7214,"48360":3429,"48361":5078,"48362":3339,"48363":13911,"48364":4523,"48365":856,"48366":4919,"48367":13564,"48368":12608,"48369":13889,"48370":12284,"48371":2925,"48372":2790,"48373":11973,"48374":3002,"48375":13861,"48376":2321,"48377":12370,"48378":5973,"48379":10144,"48380":6520,"48381":13360,"48382":4111,"48383":782,"48384":992,"48385":4403,"48386":12388,"48387":2037,"48388":3454,"48389":4837,"48390":4794,"48391":1252,"48392":12873,"48393":3510,"48394":2797,"48395":11403,"48396":11630,"48397":6180,"48398":7481,"48399":13671,"48400":1737,"48401":6493,"48402":526,"48403":6266,"48404":1864,"48405":6632,"48406":141,"48407":13742,"48408":3126,"48409":5367,"48410":6895,"48411":544,"48412":2231,"48413":5205,"48414":2448,"48415":4454,"48416":11495,"48417":14626,"48418":12962,"48419":9893,"48420":385,"48421":14362,"48422":10305,"48423":630,"48424":13381,"48425":13315,"48426":10491,"48427":7691,"48428":6984,"48429":7832,"48430":2766,"48431":107,"48432":5265,"48433":4481,"48434":4076,"48435":180,"48436":452,"48437":2590,"48438":9423,"48439":994,"48440":14781,"48441":12802,"48442":7609,"48443":11806,"48444":12320,"48445":10266,"48446":11267,"48447":7508,"48448":9283,"48449":4443,"48450":2195,"48451":12044,"48452":2340,"48453":824,"48454":13502,"48455":7780,"48456":8057,"48457":6737,"48458":12045,"48459":13260,"48460":4781,"48461":4704,"48462":9020,"48463":3917,"48464":6075,"48465":6014,"48466":1309,"48467":5278,"48468":11222,"48469":9297,"48470":8221,"48471":13004,"48472":14199,"48473":3153,"48474":14725,"48475":1769,"48476":5281,"48477":8867,"48478":12050,"48479":2630,"48480":12057,"48481":11524,"48482":5563,"48483":3049,"48484":5675,"48485":10624,"48486":6633,"48487":4059,"48488":7701,"48489":10402,"48490":3480,"48491":12175,"48492":225,"48493":10509,"48494":9016,"48495":13689,"48496":1013,"48497":7845,"48498":13877,"48499":4047,"48500":1436,"48501":9018,"48502":13100,"48503":3055,"48504":4127,"48505":10383,"48506":12440,"48507":6641,"48508":2367,"48509":8655,"48510":10396,"48511":11698,"48512":3631,"48513":4650,"48514":1166,"48515":1990,"48516":9764,"48517":7608,"48518":3999,"48519":2420,"48520":5492,"48521":439,"48522":3919,"48523":1807,"48524":5920,"48525":10352,"48526":6505,"48527":2106,"48528":11307,"48529":11240,"48530":3044,"48531":14069,"48532":4392,"48533":13622,"48534":8119,"48535":772,"48536":8255,"48537":8792,"48538":4044,"48539":14073,"48540":10369,"48541":5330,"48542":607,"48543":3787,"48544":5405,"48545":2609,"48546":13105,"48547":2010,"48548":8754,"48549":14551,"48550":3828,"48551":5046,"48552":4059,"48553":2898,"48554":12493,"48555":495,"48556":9495,"48557":11532,"48558":6519,"48559":14896,"48560":5285,"48561":230,"48562":5709,"48563":12935,"48564":12269,"48565":13131,"48566":4409,"48567":15003,"48568":3656,"48569":9624,"48570":9157,"48571":4020,"48572":6030,"48573":9601,"48574":8433,"48575":14321,"48576":11757,"48577":1642,"48578":2319,"48579":4838,"48580":13642,"48581":12303,"48582":11437,"48583":6482,"48584":9098,"48585":12908,"48586":7518,"48587":1978,"48588":11025,"48589":2575,"48590":5862,"48591":15103,"48592":11205,"48593":1664,"48594":8556,"48595":11017,"48596":8403,"48597":14285,"48598":8417,"48599":11127,"48600":9877,"48601":8848,"48602":14794,"48603":1078,"48604":10915,"48605":11032,"48606":2428,"48607":11905,"48608":7406,"48609":14869,"48610":9102,"48611":5583,"48612":5375,"48613":9347,"48614":12662,"48615":6543,"48616":14324,"48617":9523,"48618":2140,"48619":6937,"48620":3337,"48621":1688,"48622":9860,"48623":12187,"48624":8006,"48625":1178,"48626":10461,"48627":5562,"48628":3300,"48629":4445,"48630":4631,"48631":8070,"48632":678,"48633":13793,"48634":5940,"48635":14243,"48636":7055,"48637":14790,"48638":7809,"48639":3484,"48640":5860,"48641":13143,"48642":13454,"48643":14991,"48644":1211,"48645":2451,"48646":13636,"48647":8385,"48648":5966,"48649":428,"48650":11575,"48651":11039,"48652":14367,"48653":5379,"48654":3843,"48655":7331,"48656":14771,"48657":12259,"48658":11746,"48659":508,"48660":3606,"48661":13394,"48662":7068,"48663":227,"48664":5664,"48665":14630,"48666":14037,"48667":532,"48668":4508,"48669":9737,"48670":7226,"48671":2326,"48672":10212,"48673":7783,"48674":14268,"48675":2196,"48676":10081,"48677":13664,"48678":11977,"48679":8029,"48680":8179,"48681":12760,"48682":4500,"48683":14397,"48684":7506,"48685":2663,"48686":3188,"48687":2383,"48688":11722,"48689":14195,"48690":1469,"48691":3089,"48692":4577,"48693":9603,"48694":14647,"48695":9565,"48696":6596,"48697":4893,"48698":3240,"48699":7333,"48700":7186,"48701":4006,"48702":8106,"48703":13423,"48704":10623,"48705":56,"48706":2397,"48707":14634,"48708":7044,"48709":3588,"48710":1996,"48711":2192,"48712":8726,"48713":10160,"48714":5364,"48715":3677,"48716":8627,"48717":4778,"48718":14066,"48719":13717,"48720":15080,"48721":9668,"48722":1477,"48723":662,"48724":9630,"48725":9609,"48726":12192,"48727":3053,"48728":3848,"48729":14131,"48730":975,"48731":1836,"48732":5654,"48733":7909,"48734":1618,"48735":10082,"48736":7389,"48737":5177,"48738":6704,"48739":13587,"48740":13620,"48741":594,"48742":11861,"48743":11218,"48744":7825,"48745":12757,"48746":1437,"48747":14449,"48748":12758,"48749":1629,"48750":1496,"48751":14316,"48752":12865,"48753":2512,"48754":12582,"48755":4257,"48756":3809,"48757":5834,"48758":14164,"48759":11503,"48760":2777,"48761":4680,"48762":13380,"48763":7724,"48764":8519,"48765":8630,"48766":6696,"48767":973,"48768":3818,"48769":9095,"48770":8640,"48771":10043,"48772":150,"48773":14157,"48774":14648,"48775":14437,"48776":9234,"48777":6636,"48778":13624,"48779":5851,"48780":12956,"48781":14431,"48782":10738,"48783":2406,"48784":10892,"48785":13554,"48786":6645,"48787":8804,"48788":6955,"48789":3187,"48790":8906,"48791":5596,"48792":12965,"48793":7838,"48794":12876,"48795":2813,"48796":9898,"48797":11591,"48798":14766,"48799":11764,"48800":8892,"48801":12896,"48802":10298,"48803":4109,"48804":9694,"48805":445,"48806":12072,"48807":13754,"48808":937,"48809":9982,"48810":5031,"48811":5119,"48812":13596,"48813":8436,"48814":5673,"48815":3624,"48816":5351,"48817":14379,"48818":3541,"48819":9657,"48820":2534,"48821":12621,"48822":911,"48823":341,"48824":4111,"48825":7318,"48826":34,"48827":7962,"48828":1784,"48829":323,"48830":11681,"48831":4879,"48832":11404,"48833":5885,"48834":14183,"48835":2037,"48836":764,"48837":5732,"48838":15097,"48839":8532,"48840":12345,"48841":1794,"48842":14250,"48843":2222,"48844":11680,"48845":6212,"48846":13259,"48847":4701,"48848":12598,"48849":5696,"48850":7656,"48851":4542,"48852":1678,"48853":7046,"48854":14778,"48855":5150,"48856":15009,"48857":9987,"48858":12075,"48859":12437,"48860":9716,"48861":6248,"48862":2094,"48863":5059,"48864":7649,"48865":14061,"48866":11958,"48867":8410,"48868":8968,"48869":5626,"48870":10866,"48871":5136,"48872":11962,"48873":7896,"48874":9069,"48875":14046,"48876":4174,"48877":11211,"48878":14307,"48879":4444,"48880":4644,"48881":6164,"48882":9187,"48883":13533,"48884":3983,"48885":8882,"48886":10563,"48887":4402,"48888":12292,"48889":4517,"48890":14053,"48891":14151,"48892":2248,"48893":6613,"48894":12683,"48895":6888,"48896":7205,"48897":1184,"48898":7303,"48899":4937,"48900":5766,"48901":6309,"48902":14640,"48903":1788,"48904":357,"48905":10045,"48906":10453,"48907":6433,"48908":14114,"48909":2801,"48910":8078,"48911":4048,"48912":7927,"48913":5712,"48914":14556,"48915":2568,"48916":4777,"48917":9003,"48918":11657,"48919":432,"48920":9054,"48921":6091,"48922":9026,"48923":12675,"48924":13526,"48925":6788,"48926":8422,"48927":12401,"48928":14317,"48929":7244,"48930":11539,"48931":9720,"48932":11545,"48933":11313,"48934":5233,"48935":6494,"48936":4697,"48937":6134,"48938":12807,"48939":11361,"48940":4118,"48941":6120,"48942":8023,"48943":8261,"48944":11676,"48945":3706,"48946":4533,"48947":7180,"48948":9739,"48949":9545,"48950":8660,"48951":5354,"48952":7102,"48953":1805,"48954":8008,"48955":4659,"48956":4946,"48957":7008,"48958":3027,"48959":6596,"48960":2156,"48961":7255,"48962":8822,"48963":1036,"48964":11642,"48965":1325,"48966":3805,"48967":3910,"48968":359,"48969":14119,"48970":4768,"48971":7967,"48972":10991,"48973":166,"48974":9725,"48975":12441,"48976":2319,"48977":3183,"48978":10886,"48979":6597,"48980":5273,"48981":9698,"48982":11168,"48983":10844,"48984":12641,"48985":12032,"48986":6174,"48987":3843,"48988":499,"48989":9139,"48990":3954,"48991":583,"48992":1511,"48993":6734,"48994":2333,"48995":130,"48996":3753,"48997":1298,"48998":3643,"48999":13904,"49000":5859,"49001":7069,"49002":5032,"49003":13271,"49004":1277,"49005":13799,"49006":9824,"49007":15036,"49008":3628,"49009":14888,"49010":12844,"49011":5842,"49012":11040,"49013":2079,"49014":7416,"49015":6808,"49016":8896,"49017":11993,"49018":7356,"49019":4931,"49020":13866,"49021":8385,"49022":10867,"49023":2726,"49024":2953,"49025":8637,"49026":1634,"49027":8105,"49028":10931,"49029":7956,"49030":14536,"49031":14873,"49032":14752,"49033":5242,"49034":6503,"49035":2937,"49036":8969,"49037":11742,"49038":7866,"49039":3723,"49040":9073,"49041":3408,"49042":6185,"49043":3904,"49044":9958,"49045":14548,"49046":1689,"49047":1614,"49048":8735,"49049":12818,"49050":5499,"49051":1769,"49052":2743,"49053":5576,"49054":12652,"49055":12922,"49056":3982,"49057":5771,"49058":751,"49059":1229,"49060":11247,"49061":11232,"49062":10337,"49063":8472,"49064":12098,"49065":2342,"49066":13069,"49067":6402,"49068":673,"49069":5888,"49070":9925,"49071":14708,"49072":4426,"49073":6291,"49074":13106,"49075":7897,"49076":1753,"49077":13745,"49078":14754,"49079":8189,"49080":2716,"49081":5451,"49082":4487,"49083":13308,"49084":5148,"49085":8302,"49086":784,"49087":1845,"49088":9271,"49089":8933,"49090":3206,"49091":4872,"49092":7709,"49093":5944,"49094":14527,"49095":4603,"49096":8709,"49097":2193,"49098":13636,"49099":8009,"49100":10267,"49101":7978,"49102":14932,"49103":11236,"49104":5064,"49105":7467,"49106":165,"49107":5039,"49108":11532,"49109":4575,"49110":13997,"49111":11643,"49112":3525,"49113":3542,"49114":8092,"49115":4077,"49116":4695,"49117":8157,"49118":5785,"49119":7625,"49120":7070,"49121":6194,"49122":13150,"49123":5441,"49124":7123,"49125":4809,"49126":11521,"49127":8805,"49128":14310,"49129":5435,"49130":2478,"49131":4999,"49132":3811,"49133":9506,"49134":6003,"49135":1954,"49136":4511,"49137":14564,"49138":7606,"49139":141,"49140":4091,"49141":11895,"49142":11520,"49143":14403,"49144":4113,"49145":13998,"49146":11124,"49147":10038,"49148":6785,"49149":6762,"49150":296,"49151":4688,"49152":10294,"49153":13628,"49154":4793,"49155":345,"49156":10168,"49157":12329,"49158":389,"49159":360,"49160":6221,"49161":2995,"49162":9114,"49163":2550,"49164":4855,"49165":4758,"49166":320,"49167":3883,"49168":6593,"49169":4062,"49170":5336,"49171":8979,"49172":11666,"49173":3077,"49174":9843,"49175":14168,"49176":7406,"49177":8512,"49178":3184,"49179":8413,"49180":13999,"49181":6225,"49182":8222,"49183":71,"49184":10842,"49185":13408,"49186":4624,"49187":14524,"49188":5683,"49189":13582,"49190":3025,"49191":4317,"49192":5423,"49193":7355,"49194":514,"49195":13863,"49196":10309,"49197":2266,"49198":2595,"49199":699,"49200":7326,"49201":4300,"49202":5684,"49203":12835,"49204":9880,"49205":8594,"49206":5644,"49207":5545,"49208":4963,"49209":7150,"49210":6234,"49211":4515,"49212":13213,"49213":8134,"49214":8178,"49215":9917,"49216":9221,"49217":640,"49218":2798,"49219":4671,"49220":1067,"49221":3884,"49222":14288,"49223":1172,"49224":6575,"49225":4532,"49226":6201,"49227":10480,"49228":2511,"49229":7247,"49230":11053,"49231":8411,"49232":1794,"49233":12247,"49234":4882,"49235":818,"49236":6207,"49237":142,"49238":1403,"49239":3082,"49240":6842,"49241":6804,"49242":14104,"49243":12690,"49244":131,"49245":11953,"49246":12680,"49247":5122,"49248":12113,"49249":9926,"49250":15138,"49251":13687,"49252":1421,"49253":4910,"49254":11194,"49255":444,"49256":9972,"49257":11888,"49258":2277,"49259":14813,"49260":10226,"49261":10591,"49262":6472,"49263":7819,"49264":8510,"49265":3226,"49266":3798,"49267":9854,"49268":14546,"49269":14948,"49270":6409,"49271":14650,"49272":9511,"49273":4455,"49274":2642,"49275":3572,"49276":6847,"49277":4065,"49278":7215,"49279":10383,"49280":5354,"49281":10783,"49282":9923,"49283":4337,"49284":11774,"49285":8598,"49286":12151,"49287":8835,"49288":12001,"49289":4311,"49290":289,"49291":15049,"49292":7644,"49293":13019,"49294":874,"49295":4617,"49296":6297,"49297":5180,"49298":12118,"49299":10902,"49300":13319,"49301":13689,"49302":10988,"49303":12819,"49304":6905,"49305":1103,"49306":5840,"49307":8674,"49308":4009,"49309":10330,"49310":4988,"49311":7928,"49312":9155,"49313":12996,"49314":11501,"49315":5560,"49316":12124,"49317":13314,"49318":2322,"49319":13473,"49320":1787,"49321":4594,"49322":296,"49323":3544,"49324":1021,"49325":3086,"49326":13911,"49327":6174,"49328":4925,"49329":9139,"49330":7725,"49331":9213,"49332":11786,"49333":14196,"49334":5009,"49335":9412,"49336":9058,"49337":370,"49338":12691,"49339":1824,"49340":3979,"49341":1908,"49342":5140,"49343":772,"49344":14685,"49345":3662,"49346":9876,"49347":482,"49348":5931,"49349":13543,"49350":7897,"49351":236,"49352":3842,"49353":11259,"49354":1914,"49355":9079,"49356":10614,"49357":7620,"49358":648,"49359":10088,"49360":1506,"49361":6397,"49362":3625,"49363":13681,"49364":10088,"49365":14015,"49366":11056,"49367":11520,"49368":12989,"49369":5247,"49370":3840,"49371":10244,"49372":4921,"49373":14402,"49374":1208,"49375":7920,"49376":4595,"49377":12900,"49378":8972,"49379":14659,"49380":12017,"49381":13971,"49382":2173,"49383":4698,"49384":99,"49385":7365,"49386":4385,"49387":14838,"49388":4561,"49389":2710,"49390":4837,"49391":4001,"49392":2719,"49393":4608,"49394":10736,"49395":6042,"49396":9240,"49397":4930,"49398":2016,"49399":12441,"49400":1722,"49401":890,"49402":2815,"49403":13967,"49404":1983,"49405":14276,"49406":5678,"49407":5346,"49408":9542,"49409":3509,"49410":10198,"49411":9728,"49412":10865,"49413":4766,"49414":15081,"49415":2198,"49416":7173,"49417":5988,"49418":8681,"49419":1666,"49420":14844,"49421":8067,"49422":5874,"49423":8853,"49424":11281,"49425":9127,"49426":547,"49427":5352,"49428":4802,"49429":6642,"49430":15074,"49431":6974,"49432":2280,"49433":15079,"49434":89,"49435":10698,"49436":4594,"49437":8417,"49438":460,"49439":8202,"49440":2280,"49441":744,"49442":2392,"49443":2978,"49444":1688,"49445":8133,"49446":14523,"49447":13626,"49448":1387,"49449":10139,"49450":12993,"49451":1754,"49452":10201,"49453":7915,"49454":10222,"49455":11799,"49456":9290,"49457":15022,"49458":8687,"49459":10733,"49460":7189,"49461":12701,"49462":12655,"49463":12813,"49464":4096,"49465":8552,"49466":757,"49467":675,"49468":10079,"49469":2840,"49470":8384,"49471":4018,"49472":347,"49473":8246,"49474":10330,"49475":242,"49476":8951,"49477":8461,"49478":3443,"49479":7528,"49480":6139,"49481":7570,"49482":9789,"49483":196,"49484":51,"49485":4931,"49486":5443,"49487":8443,"49488":4628,"49489":13926,"49490":8067,"49491":884,"49492":1663,"49493":14461,"49494":13399,"49495":7139,"49496":9862,"49497":10438,"49498":4241,"49499":13649,"49500":14995,"49501":4418,"49502":13510,"49503":5541,"49504":6768,"49505":9835,"49506":13269,"49507":1884,"49508":11321,"49509":4260,"49510":14982,"49511":3910,"49512":11707,"49513":12839,"49514":3118,"49515":10987,"49516":13504,"49517":13680,"49518":14700,"49519":1023,"49520":9160,"49521":3154,"49522":5542,"49523":1869,"49524":100,"49525":6107,"49526":1113,"49527":11969,"49528":61,"49529":3850,"49530":12448,"49531":6610,"49532":14831,"49533":5949,"49534":8277,"49535":522,"49536":2400,"49537":8298,"49538":1100,"49539":215,"49540":14956,"49541":9349,"49542":995,"49543":14050,"49544":6223,"49545":12624,"49546":13789,"49547":8433,"49548":3506,"49549":8204,"49550":664,"49551":7486,"49552":11384,"49553":14448,"49554":13187,"49555":6365,"49556":8792,"49557":11894,"49558":358,"49559":6047,"49560":6998,"49561":3366,"49562":5332,"49563":3935,"49564":8172,"49565":10348,"49566":4769,"49567":12944,"49568":11313,"49569":944,"49570":4119,"49571":13212,"49572":13435,"49573":526,"49574":9798,"49575":14536,"49576":7822,"49577":4440,"49578":8102,"49579":8937,"49580":7331,"49581":13546,"49582":13694,"49583":8386,"49584":5597,"49585":1295,"49586":3148,"49587":8344,"49588":6182,"49589":3246,"49590":1218,"49591":14751,"49592":5130,"49593":2943,"49594":11543,"49595":8316,"49596":11051,"49597":4982,"49598":14241,"49599":8940,"49600":300,"49601":3186,"49602":14444,"49603":12835,"49604":1279,"49605":466,"49606":14132,"49607":140,"49608":13861,"49609":10299,"49610":2268,"49611":13334,"49612":1722,"49613":4646,"49614":9533,"49615":10806,"49616":1196,"49617":14718,"49618":2964,"49619":7295,"49620":5197,"49621":6579,"49622":9246,"49623":185,"49624":9188,"49625":14603,"49626":2722,"49627":1842,"49628":14378,"49629":6643,"49630":2817,"49631":13984,"49632":3102,"49633":10877,"49634":13991,"49635":7238,"49636":8897,"49637":6263,"49638":3801,"49639":11583,"49640":13945,"49641":5313,"49642":10464,"49643":10936,"49644":2376,"49645":12083,"49646":725,"49647":12467,"49648":5983,"49649":6571,"49650":8527,"49651":5966,"49652":6706,"49653":12855,"49654":6822,"49655":13414,"49656":10397,"49657":8095,"49658":3444,"49659":6877,"49660":6816,"49661":5332,"49662":5620,"49663":12667,"49664":12468,"49665":5112,"49666":20,"49667":10136,"49668":12495,"49669":15035,"49670":6464,"49671":11353,"49672":9841,"49673":6950,"49674":6742,"49675":2327,"49676":8905,"49677":12159,"49678":10456,"49679":9576,"49680":4645,"49681":2800,"49682":2412,"49683":9152,"49684":13623,"49685":8059,"49686":8880,"49687":5651,"49688":13797,"49689":5522,"49690":7224,"49691":4847,"49692":1369,"49693":11725,"49694":5330,"49695":5606,"49696":8897,"49697":12216,"49698":6299,"49699":12471,"49700":2203,"49701":14174,"49702":6258,"49703":12529,"49704":9638,"49705":3982,"49706":8416,"49707":3637,"49708":1770,"49709":1928,"49710":13938,"49711":5366,"49712":8330,"49713":13577,"49714":8546,"49715":10727,"49716":536,"49717":14999,"49718":8043,"49719":13326,"49720":365,"49721":520,"49722":9247,"49723":2428,"49724":6169,"49725":14257,"49726":3888,"49727":7106,"49728":6008,"49729":570,"49730":11766,"49731":4444,"49732":11167,"49733":9842,"49734":6022,"49735":11154,"49736":10899,"49737":8796,"49738":12851,"49739":2096,"49740":8452,"49741":5475,"49742":9497,"49743":5038,"49744":3275,"49745":14536,"49746":14998,"49747":8922,"49748":7893,"49749":9774,"49750":8095,"49751":7336,"49752":7008,"49753":2133,"49754":11292,"49755":8894,"49756":7382,"49757":4103,"49758":12098,"49759":6188,"49760":4260,"49761":8368,"49762":4327,"49763":4849,"49764":7852,"49765":10616,"49766":11768,"49767":7074,"49768":11316,"49769":6832,"49770":4810,"49771":8464,"49772":36,"49773":6934,"49774":3841,"49775":65,"49776":12503,"49777":14619,"49778":2074,"49779":8486,"49780":11311,"49781":12763,"49782":8615,"49783":14613,"49784":1930,"49785":11537,"49786":6888,"49787":13025,"49788":3408,"49789":8106,"49790":10333,"49791":2275,"49792":8241,"49793":8778,"49794":14905,"49795":12428,"49796":9574,"49797":3196,"49798":10971,"49799":4012,"49800":14798,"49801":6887,"49802":10175,"49803":1902,"49804":1451,"49805":13973,"49806":7894,"49807":11001,"49808":14498,"49809":6659,"49810":9999,"49811":6200,"49812":5697,"49813":4297,"49814":14700,"49815":126,"49816":5323,"49817":15047,"49818":6651,"49819":1265,"49820":575,"49821":11455,"49822":12654,"49823":7780,"49824":1504,"49825":12137,"49826":5127,"49827":3756,"49828":14461,"49829":5863,"49830":116,"49831":8504,"49832":14890,"49833":11487,"49834":7593,"49835":12985,"49836":8396,"49837":14078,"49838":9859,"49839":2224,"49840":14264,"49841":1827,"49842":6740,"49843":13018,"49844":13819,"49845":14202,"49846":263,"49847":9116,"49848":6506,"49849":1503,"49850":5378,"49851":5491,"49852":4155,"49853":2735,"49854":2844,"49855":10940,"49856":11140,"49857":2961,"49858":9767,"49859":12887,"49860":5319,"49861":6487,"49862":2395,"49863":1882,"49864":13938,"49865":8594,"49866":14022,"49867":15096,"49868":380,"49869":10265,"49870":4082,"49871":14448,"49872":5496,"49873":2034,"49874":13604,"49875":12339,"49876":11485,"49877":10268,"49878":11450,"49879":2816,"49880":12404,"49881":14382,"49882":14452,"49883":1893,"49884":7385,"49885":6568,"49886":11866,"49887":683,"49888":12561,"49889":13994,"49890":8813,"49891":1263,"49892":12886,"49893":408,"49894":2884,"49895":1130,"49896":7725,"49897":11204,"49898":5279,"49899":10344,"49900":12007,"49901":285,"49902":13039,"49903":9556,"49904":2604,"49905":13219,"49906":363,"49907":1940,"49908":9666,"49909":3898,"49910":8646,"49911":11869,"49912":11193,"49913":9831,"49914":12539,"49915":9576,"49916":14901,"49917":110,"49918":10322,"49919":11355,"49920":3019,"49921":6478,"49922":9057,"49923":9608,"49924":14761,"49925":10155,"49926":4612,"49927":11488,"49928":6122,"49929":12468,"49930":14758,"49931":3189,"49932":1508,"49933":11210,"49934":3675,"49935":12022,"49936":8311,"49937":9869,"49938":8032,"49939":11160,"49940":1744,"49941":828,"49942":10522,"49943":13243,"49944":12362,"49945":1410,"49946":3138,"49947":13848,"49948":11262,"49949":12003,"49950":2263,"49951":5182,"49952":7335,"49953":13495,"49954":7838,"49955":7773,"49956":3773,"49957":6249,"49958":3168,"49959":3908,"49960":6220,"49961":6217,"49962":7528,"49963":12889,"49964":2374,"49965":12296,"49966":10962,"49967":14094,"49968":15124,"49969":3175,"49970":3880,"49971":850,"49972":3373,"49973":5723,"49974":8408,"49975":9024,"49976":10105,"49977":500,"49978":14971,"49979":5928,"49980":12396,"49981":6006,"49982":2264,"49983":7045,"49984":7292,"49985":7001,"49986":2844,"49987":8228,"49988":8717,"49989":13707,"49990":13741,"49991":12852,"49992":400,"49993":12145,"49994":11511,"49995":1007,"49996":9860,"49997":8324,"49998":3071,"49999":1854,"50000":3442,"50001":559,"50002":14658,"50003":344,"50004":893,"50005":3866,"50006":8805,"50007":3307,"50008":9895,"50009":11499,"50010":14663,"50011":14990,"50012":980,"50013":5471,"50014":12177,"50015":11579,"50016":1888,"50017":3748,"50018":10426,"50019":3275,"50020":4333,"50021":6884,"50022":1637,"50023":14665,"50024":10724,"50025":11641,"50026":5219,"50027":7900,"50028":4803,"50029":375,"50030":3438,"50031":6656,"50032":4959,"50033":2918,"50034":8174,"50035":9129,"50036":2002,"50037":15009,"50038":11996,"50039":3178,"50040":5506,"50041":8895,"50042":2303,"50043":10322,"50044":11337,"50045":3811,"50046":11098,"50047":9801,"50048":13497,"50049":808,"50050":14127,"50051":1117,"50052":4120,"50053":12655,"50054":8235,"50055":2309,"50056":14272,"50057":4564,"50058":12253,"50059":2649,"50060":5005,"50061":8421,"50062":6305,"50063":10476,"50064":9092,"50065":1999,"50066":270,"50067":6523,"50068":5297,"50069":14615,"50070":8182,"50071":1810,"50072":11600,"50073":1271,"50074":12109,"50075":11705,"50076":3325,"50077":1218,"50078":3071,"50079":11095,"50080":9018,"50081":12309,"50082":1063,"50083":8115,"50084":12389,"50085":11537,"50086":732,"50087":9285,"50088":13149,"50089":615,"50090":5914,"50091":13258,"50092":12736,"50093":13124,"50094":11681,"50095":11037,"50096":14436,"50097":1139,"50098":2322,"50099":1546,"50100":4905,"50101":1648,"50102":7549,"50103":9938,"50104":2812,"50105":1802,"50106":12726,"50107":13100,"50108":11929,"50109":12487,"50110":12548,"50111":9766,"50112":12518,"50113":14474,"50114":12288,"50115":7496,"50116":13053,"50117":4536,"50118":4504,"50119":5374,"50120":12607,"50121":966,"50122":14688,"50123":12862,"50124":11055,"50125":11851,"50126":14844,"50127":6795,"50128":1549,"50129":4635,"50130":3909,"50131":4877,"50132":14132,"50133":2451,"50134":12194,"50135":11411,"50136":4454,"50137":540,"50138":9005,"50139":681,"50140":9098,"50141":13003,"50142":13242,"50143":8086,"50144":2137,"50145":11189,"50146":9700,"50147":2858,"50148":7141,"50149":6080,"50150":3450,"50151":1759,"50152":1952,"50153":4370,"50154":7695,"50155":2729,"50156":7432,"50157":14903,"50158":11913,"50159":14789,"50160":917,"50161":13759,"50162":8225,"50163":152,"50164":10367,"50165":1112,"50166":5692,"50167":8670,"50168":1822,"50169":6856,"50170":7710,"50171":11671,"50172":7401,"50173":13846,"50174":14940,"50175":5912,"50176":10092,"50177":7758,"50178":11639,"50179":3388,"50180":1881,"50181":12235,"50182":5281,"50183":10970,"50184":9700,"50185":4086,"50186":11502,"50187":4682,"50188":1815,"50189":9676,"50190":929,"50191":14486,"50192":11109,"50193":10586,"50194":4229,"50195":3568,"50196":9333,"50197":2321,"50198":6632,"50199":12197,"50200":12463,"50201":7915,"50202":2658,"50203":13590,"50204":14172,"50205":12378,"50206":13328,"50207":4605,"50208":5481,"50209":13531,"50210":10945,"50211":11944,"50212":423,"50213":10663,"50214":4350,"50215":8262,"50216":10813,"50217":6534,"50218":910,"50219":2794,"50220":17,"50221":12498,"50222":11615,"50223":11194,"50224":2360,"50225":11146,"50226":1617,"50227":14956,"50228":13473,"50229":7714,"50230":2964,"50231":1309,"50232":5811,"50233":8161,"50234":11069,"50235":5591,"50236":4906,"50237":939,"50238":14329,"50239":5979,"50240":9194,"50241":14245,"50242":496,"50243":9609,"50244":2889,"50245":7272,"50246":13673,"50247":9118,"50248":6455,"50249":13768,"50250":10541,"50251":13702,"50252":3287,"50253":2311,"50254":6728,"50255":7458,"50256":8775,"50257":9620,"50258":3866,"50259":8444,"50260":11173,"50261":7994,"50262":1997,"50263":2197,"50264":12044,"50265":7207,"50266":8970,"50267":3322,"50268":7194,"50269":13287,"50270":3344,"50271":9971,"50272":7950,"50273":3325,"50274":7006,"50275":7730,"50276":10763,"50277":13915,"50278":306,"50279":2408,"50280":9477,"50281":8828,"50282":7339,"50283":2889,"50284":8233,"50285":2037,"50286":2562,"50287":8973,"50288":8564,"50289":10949,"50290":8603,"50291":1072,"50292":14056,"50293":8319,"50294":1782,"50295":8841,"50296":12414,"50297":8282,"50298":9172,"50299":694,"50300":9413,"50301":15082,"50302":13416,"50303":4600,"50304":1479,"50305":593,"50306":1976,"50307":10937,"50308":5333,"50309":5700,"50310":1126,"50311":679,"50312":12970,"50313":1792,"50314":10718,"50315":1760,"50316":1816,"50317":11559,"50318":11882,"50319":2141,"50320":2862,"50321":8760,"50322":3158,"50323":2076,"50324":11856,"50325":4066,"50326":14243,"50327":158,"50328":4260,"50329":9655,"50330":3273,"50331":1449,"50332":13603,"50333":7130,"50334":14298,"50335":11776,"50336":14127,"50337":9906,"50338":14043,"50339":1568,"50340":4091,"50341":2214,"50342":14319,"50343":12248,"50344":8877,"50345":12941,"50346":10210,"50347":6687,"50348":785,"50349":4450,"50350":4382,"50351":201,"50352":3420,"50353":2611,"50354":4502,"50355":10655,"50356":3882,"50357":5341,"50358":5628,"50359":14849,"50360":5494,"50361":6801,"50362":13100,"50363":11885,"50364":4923,"50365":10716,"50366":8783,"50367":773,"50368":11777,"50369":3177,"50370":175,"50371":8656,"50372":13740,"50373":2164,"50374":12871,"50375":7565,"50376":9648,"50377":8900,"50378":8726,"50379":6038,"50380":11668,"50381":3889,"50382":8798,"50383":4709,"50384":4938,"50385":7752,"50386":3886,"50387":11434,"50388":3579,"50389":10657,"50390":8470,"50391":2958,"50392":13550,"50393":7985,"50394":11246,"50395":6601,"50396":1677,"50397":1733,"50398":14929,"50399":8646,"50400":12864,"50401":14125,"50402":15138,"50403":5273,"50404":759,"50405":14681,"50406":3361,"50407":4554,"50408":11943,"50409":8494,"50410":14215,"50411":4152,"50412":3667,"50413":11376,"50414":2666,"50415":13776,"50416":13570,"50417":1740,"50418":8711,"50419":9948,"50420":11853,"50421":4976,"50422":1500,"50423":7224,"50424":8509,"50425":6941,"50426":1066,"50427":11234,"50428":14769,"50429":3424,"50430":6048,"50431":9816,"50432":12846,"50433":12003,"50434":299,"50435":11947,"50436":14189,"50437":12581,"50438":1414,"50439":4123,"50440":14393,"50441":8184,"50442":7559,"50443":13648,"50444":9806,"50445":411,"50446":33,"50447":10461,"50448":6177,"50449":14531,"50450":4411,"50451":13273,"50452":8129,"50453":11242,"50454":13686,"50455":5182,"50456":13306,"50457":4854,"50458":13732,"50459":8360,"50460":3022,"50461":11383,"50462":11762,"50463":4531,"50464":11531,"50465":12042,"50466":1563,"50467":6891,"50468":7988,"50469":8167,"50470":785,"50471":2680,"50472":13115,"50473":14912,"50474":8656,"50475":2292,"50476":5937,"50477":10410,"50478":11033,"50479":4338,"50480":9533,"50481":541,"50482":6871,"50483":6085,"50484":6028,"50485":11346,"50486":2797,"50487":7069,"50488":1721,"50489":5518,"50490":10300,"50491":9600,"50492":145,"50493":4034,"50494":12851,"50495":14365,"50496":11177,"50497":10787,"50498":1179,"50499":8223,"50500":5861,"50501":3108,"50502":194,"50503":9882,"50504":12062,"50505":2093,"50506":14609,"50507":904,"50508":4660,"50509":2294,"50510":9905,"50511":4090,"50512":5545,"50513":2469,"50514":12500,"50515":9613,"50516":3884,"50517":6893,"50518":1300,"50519":7759,"50520":2631,"50521":9544,"50522":13709,"50523":971,"50524":2642,"50525":10203,"50526":8226,"50527":3071,"50528":11698,"50529":1959,"50530":1654,"50531":1498,"50532":8717,"50533":8543,"50534":6759,"50535":12612,"50536":8467,"50537":11680,"50538":1825,"50539":9707,"50540":676,"50541":13447,"50542":5703,"50543":8220,"50544":9077,"50545":9617,"50546":1270,"50547":3527,"50548":1126,"50549":2319,"50550":11709,"50551":9776,"50552":5924,"50553":8859,"50554":1570,"50555":14448,"50556":6174,"50557":7142,"50558":9266,"50559":2142,"50560":3358,"50561":13253,"50562":7567,"50563":3745,"50564":11291,"50565":4645,"50566":10019,"50567":6050,"50568":10823,"50569":13580,"50570":429,"50571":12289,"50572":12042,"50573":9658,"50574":4718,"50575":13334,"50576":4245,"50577":12430,"50578":7947,"50579":2655,"50580":10442,"50581":610,"50582":8338,"50583":12015,"50584":11248,"50585":14909,"50586":9929,"50587":5229,"50588":712,"50589":518,"50590":5536,"50591":1218,"50592":6597,"50593":7060,"50594":4806,"50595":10706,"50596":3200,"50597":5742,"50598":13638,"50599":14061,"50600":144,"50601":3963,"50602":13114,"50603":8513,"50604":12311,"50605":1159,"50606":4396,"50607":10428,"50608":8774,"50609":766,"50610":9387,"50611":11916,"50612":11734,"50613":4723,"50614":12519,"50615":6005,"50616":14868,"50617":1472,"50618":11108,"50619":7513,"50620":9705,"50621":3600,"50622":2904,"50623":14870,"50624":2521,"50625":5540,"50626":10930,"50627":9106,"50628":10495,"50629":10168,"50630":10371,"50631":1501,"50632":3394,"50633":5615,"50634":14556,"50635":1299,"50636":2069,"50637":2086,"50638":8930,"50639":7064,"50640":10278,"50641":13900,"50642":13629,"50643":13784,"50644":8794,"50645":11986,"50646":14843,"50647":5993,"50648":5865,"50649":7421,"50650":14738,"50651":13988,"50652":13730,"50653":12175,"50654":8615,"50655":4706,"50656":9709,"50657":6200,"50658":15017,"50659":14059,"50660":484,"50661":12084,"50662":4912,"50663":4876,"50664":7010,"50665":2982,"50666":11351,"50667":8816,"50668":11554,"50669":5327,"50670":887,"50671":13397,"50672":13156,"50673":297,"50674":8473,"50675":4556,"50676":14525,"50677":1726,"50678":6259,"50679":11409,"50680":2014,"50681":14031,"50682":2719,"50683":9490,"50684":12205,"50685":4200,"50686":9961,"50687":13615,"50688":3654,"50689":12580,"50690":6207,"50691":2222,"50692":10440,"50693":9069,"50694":10619,"50695":5541,"50696":1047,"50697":14968,"50698":8278,"50699":11245,"50700":9254,"50701":8001,"50702":6410,"50703":8079,"50704":13541,"50705":4054,"50706":1525,"50707":14142,"50708":10617,"50709":12658,"50710":4619,"50711":4475,"50712":1584,"50713":9905,"50714":14756,"50715":2166,"50716":822,"50717":4504,"50718":10612,"50719":5918,"50720":11323,"50721":2096,"50722":12090,"50723":12356,"50724":2363,"50725":3290,"50726":10612,"50727":427,"50728":4509,"50729":11071,"50730":1062,"50731":9351,"50732":9815,"50733":444,"50734":2201,"50735":6901,"50736":1877,"50737":7880,"50738":11583,"50739":8955,"50740":12904,"50741":4742,"50742":10505,"50743":4291,"50744":6598,"50745":7984,"50746":11317,"50747":13090,"50748":12256,"50749":12973,"50750":1719,"50751":7445,"50752":3623,"50753":5383,"50754":3449,"50755":13627,"50756":14760,"50757":4888,"50758":6409,"50759":1873,"50760":2820,"50761":1316,"50762":669,"50763":8023,"50764":8220,"50765":5798,"50766":5710,"50767":5026,"50768":3666,"50769":3149,"50770":4240,"50771":1728,"50772":12394,"50773":5893,"50774":6309,"50775":9726,"50776":13981,"50777":8582,"50778":6615,"50779":13991,"50780":612,"50781":13963,"50782":11043,"50783":3883,"50784":5291,"50785":5071,"50786":1283,"50787":6595,"50788":4132,"50789":9010,"50790":4158,"50791":13226,"50792":14509,"50793":9564,"50794":12748,"50795":9669,"50796":1768,"50797":9302,"50798":13484,"50799":9736,"50800":8789,"50801":9929,"50802":1974,"50803":1553,"50804":9464,"50805":727,"50806":8414,"50807":3182,"50808":4089,"50809":13225,"50810":7830,"50811":3663,"50812":10293,"50813":9740,"50814":13144,"50815":8410,"50816":6644,"50817":14658,"50818":1514,"50819":6280,"50820":3240,"50821":5773,"50822":9194,"50823":967,"50824":5933,"50825":2324,"50826":12362,"50827":7602,"50828":4169,"50829":3208,"50830":10552,"50831":2972,"50832":3478,"50833":6914,"50834":998,"50835":4100,"50836":14367,"50837":6900,"50838":8185,"50839":2614,"50840":1681,"50841":12041,"50842":1410,"50843":12035,"50844":7435,"50845":7790,"50846":9690,"50847":8134,"50848":13446,"50849":8489,"50850":6547,"50851":1594,"50852":10749,"50853":10127,"50854":8303,"50855":2269,"50856":6032,"50857":11688,"50858":1324,"50859":4658,"50860":734,"50861":6833,"50862":2471,"50863":10213,"50864":13685,"50865":1963,"50866":14563,"50867":11017,"50868":9459,"50869":1042,"50870":12158,"50871":6494,"50872":3608,"50873":3753,"50874":6993,"50875":1038,"50876":767,"50877":14531,"50878":9228,"50879":9673,"50880":3051,"50881":435,"50882":8600,"50883":8072,"50884":1415,"50885":7631,"50886":11813,"50887":13552,"50888":6937,"50889":9903,"50890":1695,"50891":12080,"50892":3480,"50893":6693,"50894":7040,"50895":14115,"50896":524,"50897":2666,"50898":9133,"50899":851,"50900":9927,"50901":6922,"50902":12697,"50903":4432,"50904":6893,"50905":6190,"50906":5779,"50907":5190,"50908":439,"50909":1668,"50910":5100,"50911":11521,"50912":10892,"50913":11785,"50914":11924,"50915":10933,"50916":4748,"50917":13740,"50918":1399,"50919":4253,"50920":8532,"50921":2270,"50922":336,"50923":11232,"50924":6418,"50925":9453,"50926":8901,"50927":3606,"50928":4644,"50929":5628,"50930":4257,"50931":10769,"50932":11760,"50933":1051,"50934":9762,"50935":3440,"50936":9178,"50937":1368,"50938":4414,"50939":6462,"50940":6935,"50941":14421,"50942":5575,"50943":5617,"50944":2818,"50945":646,"50946":2657,"50947":11151,"50948":14214,"50949":11961,"50950":5942,"50951":9250,"50952":7288,"50953":4387,"50954":10479,"50955":11497,"50956":2217,"50957":13640,"50958":4562,"50959":10234,"50960":12429,"50961":5279,"50962":6869,"50963":3491,"50964":14727,"50965":8297,"50966":8618,"50967":11297,"50968":12593,"50969":9256,"50970":9349,"50971":6716,"50972":637,"50973":1656,"50974":467,"50975":15145,"50976":5620,"50977":7211,"50978":355,"50979":9672,"50980":2041,"50981":5091,"50982":2318,"50983":5989,"50984":14661,"50985":1657,"50986":8506,"50987":13219,"50988":6313,"50989":13958,"50990":10736,"50991":11594,"50992":12463,"50993":1497,"50994":1325,"50995":166,"50996":5025,"50997":8361,"50998":13838,"50999":9190,"51000":11870,"51001":11967,"51002":421,"51003":3993,"51004":13110,"51005":839,"51006":6650,"51007":13846,"51008":3282,"51009":900,"51010":13989,"51011":12200,"51012":12233,"51013":8654,"51014":13870,"51015":11846,"51016":13187,"51017":2317,"51018":14148,"51019":14846,"51020":10678,"51021":7451,"51022":9967,"51023":3047,"51024":7204,"51025":12196,"51026":4648,"51027":12414,"51028":6802,"51029":2667,"51030":12870,"51031":12272,"51032":2317,"51033":833,"51034":1456,"51035":13831,"51036":14142,"51037":487,"51038":7173,"51039":10517,"51040":3635,"51041":2414,"51042":2087,"51043":11654,"51044":12016,"51045":8807,"51046":12400,"51047":4954,"51048":9860,"51049":14518,"51050":8838,"51051":4057,"51052":12075,"51053":14301,"51054":4939,"51055":7235,"51056":3853,"51057":2597,"51058":9826,"51059":4795,"51060":5484,"51061":13465,"51062":6036,"51063":13374,"51064":8538,"51065":3744,"51066":9729,"51067":2042,"51068":13885,"51069":11496,"51070":14425,"51071":7798,"51072":9589,"51073":3714,"51074":11400,"51075":4417,"51076":10181,"51077":14700,"51078":11079,"51079":492,"51080":6927,"51081":9562,"51082":13391,"51083":8453,"51084":13809,"51085":2007,"51086":12099,"51087":1777,"51088":7551,"51089":9948,"51090":9178,"51091":5288,"51092":12525,"51093":2901,"51094":1927,"51095":5849,"51096":14470,"51097":12251,"51098":12730,"51099":12569,"51100":6984,"51101":9878,"51102":5875,"51103":441,"51104":5398,"51105":12733,"51106":1592,"51107":3642,"51108":14933,"51109":12486,"51110":13940,"51111":14936,"51112":9271,"51113":12607,"51114":4527,"51115":2274,"51116":6243,"51117":1627,"51118":6931,"51119":5407,"51120":4202,"51121":11153,"51122":5474,"51123":4270,"51124":10228,"51125":402,"51126":12068,"51127":7754,"51128":6915,"51129":9535,"51130":5282,"51131":4235,"51132":8206,"51133":12094,"51134":1670,"51135":7612,"51136":1666,"51137":491,"51138":10981,"51139":4888,"51140":12111,"51141":3021,"51142":3124,"51143":663,"51144":94,"51145":6195,"51146":1651,"51147":6810,"51148":14141,"51149":6389,"51150":6846,"51151":13221,"51152":3569,"51153":8316,"51154":7604,"51155":14770,"51156":8601,"51157":10517,"51158":8030,"51159":12336,"51160":9334,"51161":10332,"51162":9559,"51163":9419,"51164":11535,"51165":8985,"51166":894,"51167":13996,"51168":13562,"51169":13808,"51170":8755,"51171":4979,"51172":1048,"51173":298,"51174":4609,"51175":10407,"51176":9725,"51177":2767,"51178":853,"51179":13744,"51180":4970,"51181":12677,"51182":3666,"51183":9462,"51184":12804,"51185":5252,"51186":1247,"51187":7206,"51188":7193,"51189":12834,"51190":3267,"51191":7320,"51192":13769,"51193":11561,"51194":1459,"51195":68,"51196":1126,"51197":12812,"51198":6605,"51199":9901,"51200":6976,"51201":2458,"51202":12489,"51203":3674,"51204":5614,"51205":12085,"51206":10450,"51207":12964,"51208":11916,"51209":14369,"51210":14157,"51211":8858,"51212":6946,"51213":2870,"51214":4801,"51215":9028,"51216":8666,"51217":7842,"51218":14758,"51219":4505,"51220":2756,"51221":3945,"51222":4831,"51223":8635,"51224":5391,"51225":12377,"51226":13290,"51227":327,"51228":352,"51229":1350,"51230":8912,"51231":10567,"51232":9318,"51233":5343,"51234":12411,"51235":7961,"51236":4474,"51237":4118,"51238":6858,"51239":10353,"51240":1231,"51241":14408,"51242":9746,"51243":10473,"51244":3857,"51245":1545,"51246":12662,"51247":6483,"51248":10039,"51249":10347,"51250":1342,"51251":13561,"51252":14137,"51253":8233,"51254":3229,"51255":15051,"51256":2050,"51257":5365,"51258":8125,"51259":3281,"51260":9867,"51261":7050,"51262":13387,"51263":13036,"51264":12235,"51265":7231,"51266":8675,"51267":7235,"51268":12082,"51269":4668,"51270":3429,"51271":1033,"51272":7842,"51273":179,"51274":14990,"51275":5293,"51276":11717,"51277":7955,"51278":14522,"51279":7849,"51280":9611,"51281":9013,"51282":2581,"51283":5897,"51284":5760,"51285":11500,"51286":4739,"51287":12971,"51288":7469,"51289":13864,"51290":14066,"51291":8454,"51292":5891,"51293":3097,"51294":11471,"51295":1531,"51296":9961,"51297":9413,"51298":14274,"51299":12965,"51300":2362,"51301":2658,"51302":12761,"51303":13260,"51304":7956,"51305":6845,"51306":13451,"51307":2656,"51308":14617,"51309":13790,"51310":3934,"51311":2477,"51312":14005,"51313":6658,"51314":4231,"51315":3128,"51316":5861,"51317":13521,"51318":4257,"51319":13245,"51320":3983,"51321":5671,"51322":11527,"51323":7928,"51324":9156,"51325":15147,"51326":10882,"51327":11406,"51328":1453,"51329":12454,"51330":5600,"51331":1440,"51332":14780,"51333":13403,"51334":7028,"51335":13196,"51336":14473,"51337":4989,"51338":8155,"51339":10220,"51340":6930,"51341":15141,"51342":13117,"51343":345,"51344":9641,"51345":9635,"51346":1078,"51347":10001,"51348":11910,"51349":13410,"51350":5647,"51351":564,"51352":13970,"51353":1442,"51354":10806,"51355":730,"51356":7443,"51357":2522,"51358":9085,"51359":5156,"51360":12530,"51361":1896,"51362":12127,"51363":1295,"51364":4782,"51365":1338,"51366":3804,"51367":13366,"51368":4293,"51369":8111,"51370":974,"51371":13101,"51372":5094,"51373":12518,"51374":8575,"51375":510,"51376":13174,"51377":12021,"51378":11449,"51379":4982,"51380":12674,"51381":8066,"51382":9889,"51383":6612,"51384":5023,"51385":3043,"51386":6005,"51387":5760,"51388":7659,"51389":6564,"51390":5588,"51391":1487,"51392":3118,"51393":3230,"51394":4050,"51395":7221,"51396":401,"51397":9224,"51398":14734,"51399":61,"51400":14778,"51401":9875,"51402":2406,"51403":11090,"51404":7880,"51405":7778,"51406":1199,"51407":9990,"51408":12499,"51409":1076,"51410":4251,"51411":5320,"51412":10650,"51413":7922,"51414":6155,"51415":6318,"51416":2564,"51417":6389,"51418":2941,"51419":7397,"51420":168,"51421":6471,"51422":59,"51423":1729,"51424":5881,"51425":5522,"51426":12232,"51427":11585,"51428":13809,"51429":1418,"51430":1092,"51431":1731,"51432":12998,"51433":3203,"51434":7632,"51435":7465,"51436":3710,"51437":10135,"51438":7921,"51439":10891,"51440":11729,"51441":1705,"51442":10161,"51443":4373,"51444":7644,"51445":9968,"51446":8691,"51447":10307,"51448":2150,"51449":5096,"51450":7341,"51451":11303,"51452":6083,"51453":5570,"51454":8004,"51455":2514,"51456":14746,"51457":4991,"51458":12414,"51459":2572,"51460":8895,"51461":7312,"51462":6647,"51463":2441,"51464":8547,"51465":9883,"51466":4601,"51467":1716,"51468":12054,"51469":4481,"51470":8708,"51471":13357,"51472":10133,"51473":467,"51474":2472,"51475":7164,"51476":3633,"51477":5793,"51478":254,"51479":5604,"51480":10879,"51481":14123,"51482":14096,"51483":10729,"51484":3302,"51485":13266,"51486":6047,"51487":12918,"51488":13989,"51489":6757,"51490":1706,"51491":10581,"51492":1937,"51493":3824,"51494":7878,"51495":12535,"51496":6466,"51497":1098,"51498":4851,"51499":3478,"51500":4322,"51501":10637,"51502":12446,"51503":7802,"51504":10881,"51505":1470,"51506":11502,"51507":10824,"51508":8502,"51509":13977,"51510":308,"51511":4584,"51512":12284,"51513":6454,"51514":12779,"51515":3314,"51516":8851,"51517":13761,"51518":2552,"51519":2765,"51520":5983,"51521":4655,"51522":5721,"51523":12195,"51524":7081,"51525":10241,"51526":3563,"51527":14663,"51528":8017,"51529":125,"51530":1024,"51531":2053,"51532":11625,"51533":7218,"51534":14743,"51535":1576,"51536":226,"51537":4215,"51538":1698,"51539":10930,"51540":11591,"51541":13341,"51542":13487,"51543":8477,"51544":2210,"51545":1136,"51546":14735,"51547":14091,"51548":1363,"51549":10602,"51550":9356,"51551":9348,"51552":7360,"51553":8760,"51554":7335,"51555":15074,"51556":7355,"51557":1417,"51558":417,"51559":3309,"51560":9992,"51561":4681,"51562":11092,"51563":13662,"51564":14576,"51565":11141,"51566":7703,"51567":6232,"51568":6428,"51569":14647,"51570":6146,"51571":8130,"51572":3309,"51573":2439,"51574":2873,"51575":3345,"51576":2778,"51577":6425,"51578":9354,"51579":8147,"51580":8527,"51581":4421,"51582":6202,"51583":7594,"51584":1609,"51585":14705,"51586":15034,"51587":5443,"51588":2553,"51589":4156,"51590":4021,"51591":14815,"51592":6365,"51593":1066,"51594":7807,"51595":7339,"51596":2030,"51597":9541,"51598":13582,"51599":13486,"51600":12040,"51601":3124,"51602":9181,"51603":2823,"51604":13859,"51605":4109,"51606":13841,"51607":9308,"51608":3323,"51609":3997,"51610":12310,"51611":1265,"51612":3840,"51613":13952,"51614":6742,"51615":13640,"51616":13346,"51617":12286,"51618":7723,"51619":5946,"51620":1505,"51621":7117,"51622":8757,"51623":3717,"51624":9648,"51625":244,"51626":13424,"51627":14785,"51628":1287,"51629":50,"51630":14539,"51631":2662,"51632":11203,"51633":5667,"51634":9004,"51635":15051,"51636":9685,"51637":4003,"51638":9538,"51639":4099,"51640":316,"51641":14044,"51642":13378,"51643":2164,"51644":6480,"51645":6557,"51646":2460,"51647":6279,"51648":3589,"51649":11938,"51650":2300,"51651":3962,"51652":6902,"51653":9136,"51654":12561,"51655":10130,"51656":968,"51657":14885,"51658":974,"51659":3138,"51660":7909,"51661":9758,"51662":7343,"51663":10695,"51664":8229,"51665":14285,"51666":14681,"51667":13070,"51668":3126,"51669":9389,"51670":13999,"51671":950,"51672":6998,"51673":6178,"51674":8498,"51675":167,"51676":13837,"51677":13779,"51678":5210,"51679":14814,"51680":14293,"51681":12616,"51682":2658,"51683":12575,"51684":5757,"51685":5758,"51686":5928,"51687":11263,"51688":14983,"51689":13508,"51690":2542,"51691":9758,"51692":5848,"51693":9455,"51694":7032,"51695":7414,"51696":4492,"51697":9867,"51698":181,"51699":8518,"51700":7845,"51701":7671,"51702":8621,"51703":2920,"51704":7805,"51705":6444,"51706":1612,"51707":6800,"51708":9102,"51709":10817,"51710":7084,"51711":459,"51712":10515,"51713":5278,"51714":3098,"51715":13018,"51716":1697,"51717":8564,"51718":13474,"51719":12661,"51720":4277,"51721":234,"51722":4181,"51723":6385,"51724":10004,"51725":1814,"51726":9521,"51727":10042,"51728":10864,"51729":732,"51730":11196,"51731":13433,"51732":11581,"51733":3386,"51734":7717,"51735":11137,"51736":7969,"51737":14530,"51738":13067,"51739":8617,"51740":13737,"51741":14904,"51742":12836,"51743":2662,"51744":8137,"51745":12257,"51746":3240,"51747":8915,"51748":6785,"51749":8742,"51750":1855,"51751":8556,"51752":4887,"51753":1783,"51754":3594,"51755":10470,"51756":14785,"51757":6430,"51758":5019,"51759":11630,"51760":13587,"51761":9199,"51762":7051,"51763":6712,"51764":4366,"51765":12674,"51766":5840,"51767":2004,"51768":3366,"51769":9958,"51770":12702,"51771":3180,"51772":11856,"51773":12088,"51774":2583,"51775":3055,"51776":14280,"51777":7821,"51778":7353,"51779":4031,"51780":1254,"51781":10789,"51782":14814,"51783":6066,"51784":12472,"51785":105,"51786":9975,"51787":7762,"51788":3787,"51789":13773,"51790":10794,"51791":5810,"51792":3866,"51793":12167,"51794":8954,"51795":6664,"51796":13892,"51797":7821,"51798":2944,"51799":2245,"51800":1431,"51801":2939,"51802":8139,"51803":9018,"51804":8419,"51805":4035,"51806":8807,"51807":13901,"51808":13617,"51809":4935,"51810":3919,"51811":7869,"51812":2121,"51813":9978,"51814":13571,"51815":8789,"51816":631,"51817":3269,"51818":5425,"51819":15151,"51820":5080,"51821":11083,"51822":8217,"51823":10168,"51824":1813,"51825":4454,"51826":1334,"51827":11648,"51828":13410,"51829":10978,"51830":11810,"51831":7082,"51832":10668,"51833":6995,"51834":4499,"51835":2214,"51836":7859,"51837":10636,"51838":9506,"51839":10539,"51840":15014,"51841":2806,"51842":12501,"51843":259,"51844":11541,"51845":10554,"51846":3161,"51847":12563,"51848":8659,"51849":9488,"51850":9963,"51851":7249,"51852":7917,"51853":12699,"51854":11206,"51855":2210,"51856":12043,"51857":14979,"51858":543,"51859":6426,"51860":1244,"51861":9496,"51862":14260,"51863":9219,"51864":2455,"51865":3419,"51866":14779,"51867":2464,"51868":13282,"51869":13446,"51870":12465,"51871":2203,"51872":15001,"51873":9052,"51874":14374,"51875":5909,"51876":6144,"51877":7857,"51878":14562,"51879":1279,"51880":93,"51881":11554,"51882":6917,"51883":14690,"51884":14743,"51885":14132,"51886":6733,"51887":8773,"51888":11325,"51889":5309,"51890":9292,"51891":8209,"51892":10316,"51893":4304,"51894":9819,"51895":557,"51896":1487,"51897":11546,"51898":10572,"51899":12059,"51900":638,"51901":5642,"51902":5380,"51903":7471,"51904":2794,"51905":6290,"51906":4562,"51907":10235,"51908":11142,"51909":2382,"51910":9625,"51911":10254,"51912":4724,"51913":4266,"51914":4438,"51915":3061,"51916":12236,"51917":5565,"51918":9313,"51919":8188,"51920":5402,"51921":1675,"51922":11936,"51923":1383,"51924":10785,"51925":3938,"51926":13360,"51927":4911,"51928":2292,"51929":11055,"51930":8523,"51931":5360,"51932":12517,"51933":14529,"51934":11594,"51935":12608,"51936":1226,"51937":11126,"51938":5336,"51939":10879,"51940":5844,"51941":13168,"51942":13657,"51943":10813,"51944":5009,"51945":14675,"51946":9091,"51947":7695,"51948":8751,"51949":657,"51950":253,"51951":14138,"51952":1636,"51953":10625,"51954":3583,"51955":10984,"51956":10073,"51957":7352,"51958":3168,"51959":15077,"51960":14504,"51961":2045,"51962":14341,"51963":5633,"51964":6844,"51965":8065,"51966":13796,"51967":5190,"51968":9358,"51969":5449,"51970":11524,"51971":11557,"51972":10224,"51973":8515,"51974":7784,"51975":14251,"51976":3032,"51977":13796,"51978":600,"51979":8414,"51980":5081,"51981":14478,"51982":14822,"51983":5842,"51984":3860,"51985":2860,"51986":7069,"51987":4354,"51988":3002,"51989":12359,"51990":4395,"51991":9673,"51992":1556,"51993":8937,"51994":5490,"51995":3094,"51996":12044,"51997":10417,"51998":4755,"51999":2608,"52000":2585,"52001":11909,"52002":13763,"52003":6803,"52004":11797,"52005":10987,"52006":12677,"52007":10994,"52008":1376,"52009":6455,"52010":1046,"52011":6547,"52012":4975,"52013":6327,"52014":1287,"52015":7514,"52016":10565,"52017":11128,"52018":2165,"52019":5660,"52020":1652,"52021":3900,"52022":9628,"52023":8283,"52024":14143,"52025":9718,"52026":1421,"52027":4702,"52028":5348,"52029":9241,"52030":839,"52031":7282,"52032":5270,"52033":10763,"52034":845,"52035":13727,"52036":11295,"52037":4663,"52038":3968,"52039":14343,"52040":6307,"52041":6957,"52042":7950,"52043":9091,"52044":4462,"52045":6328,"52046":4805,"52047":4884,"52048":3710,"52049":1604,"52050":10187,"52051":8857,"52052":6535,"52053":4917,"52054":9407,"52055":5739,"52056":8212,"52057":5021,"52058":6374,"52059":11256,"52060":4039,"52061":10262,"52062":6988,"52063":5952,"52064":5073,"52065":10954,"52066":11939,"52067":3909,"52068":10100,"52069":14358,"52070":15003,"52071":2925,"52072":8425,"52073":15151,"52074":5795,"52075":9565,"52076":14294,"52077":8773,"52078":2436,"52079":5717,"52080":10929,"52081":557,"52082":5773,"52083":1383,"52084":3378,"52085":13577,"52086":8388,"52087":208,"52088":11093,"52089":4784,"52090":15119,"52091":12147,"52092":4572,"52093":11615,"52094":8342,"52095":12465,"52096":2938,"52097":5033,"52098":10757,"52099":11068,"52100":12479,"52101":4187,"52102":14818,"52103":6328,"52104":1405,"52105":12595,"52106":10691,"52107":1443,"52108":9248,"52109":11621,"52110":11662,"52111":15024,"52112":14387,"52113":7393,"52114":13826,"52115":12788,"52116":8260,"52117":1756,"52118":7022,"52119":13056,"52120":4897,"52121":5683,"52122":3357,"52123":10328,"52124":8141,"52125":3684,"52126":13661,"52127":6872,"52128":14408,"52129":1832,"52130":1574,"52131":1574,"52132":14153,"52133":276,"52134":5516,"52135":6640,"52136":3555,"52137":13314,"52138":192,"52139":6120,"52140":10011,"52141":11633,"52142":5353,"52143":11835,"52144":12882,"52145":11144,"52146":3968,"52147":13049,"52148":1891,"52149":13630,"52150":10793,"52151":10663,"52152":4985,"52153":4363,"52154":1337,"52155":6669,"52156":14118,"52157":5971,"52158":11370,"52159":86,"52160":7782,"52161":10625,"52162":9030,"52163":15,"52164":523,"52165":5655,"52166":863,"52167":6796,"52168":12027,"52169":14162,"52170":4475,"52171":12482,"52172":1289,"52173":12666,"52174":11677,"52175":1459,"52176":13453,"52177":8031,"52178":13223,"52179":6133,"52180":14620,"52181":12192,"52182":11759,"52183":13560,"52184":7382,"52185":10626,"52186":738,"52187":12270,"52188":1026,"52189":5015,"52190":15044,"52191":1450,"52192":2773,"52193":11873,"52194":8590,"52195":7805,"52196":13126,"52197":3260,"52198":11027,"52199":14917,"52200":4396,"52201":14479,"52202":8797,"52203":54,"52204":8303,"52205":4435,"52206":13977,"52207":6729,"52208":83,"52209":1940,"52210":14674,"52211":11098,"52212":6124,"52213":7815,"52214":11040,"52215":3192,"52216":8321,"52217":3011,"52218":8431,"52219":3326,"52220":1958,"52221":9016,"52222":13479,"52223":10468,"52224":9701,"52225":6332,"52226":8842,"52227":2479,"52228":9659,"52229":2738,"52230":5179,"52231":982,"52232":1965,"52233":789,"52234":11493,"52235":4745,"52236":9966,"52237":13767,"52238":6002,"52239":10268,"52240":1627,"52241":3754,"52242":4081,"52243":6037,"52244":358,"52245":12401,"52246":15058,"52247":7135,"52248":14542,"52249":1610,"52250":6655,"52251":8555,"52252":7797,"52253":14838,"52254":289,"52255":4465,"52256":7520,"52257":10946,"52258":5590,"52259":4753,"52260":11746,"52261":10386,"52262":8392,"52263":14783,"52264":5683,"52265":433,"52266":1461,"52267":4742,"52268":10645,"52269":13040,"52270":4577,"52271":3253,"52272":11595,"52273":3308,"52274":4012,"52275":1799,"52276":2168,"52277":4689,"52278":9102,"52279":1839,"52280":2150,"52281":4032,"52282":10868,"52283":6312,"52284":13157,"52285":10575,"52286":1069,"52287":1392,"52288":11247,"52289":14685,"52290":14319,"52291":4625,"52292":299,"52293":1214,"52294":1625,"52295":9794,"52296":5515,"52297":12444,"52298":1727,"52299":14312,"52300":3142,"52301":3028,"52302":9840,"52303":11806,"52304":6805,"52305":6444,"52306":6170,"52307":168,"52308":2372,"52309":5390,"52310":9563,"52311":6853,"52312":2244,"52313":8277,"52314":4708,"52315":3133,"52316":13806,"52317":9694,"52318":7409,"52319":12652,"52320":4843,"52321":13250,"52322":9610,"52323":11035,"52324":4573,"52325":4379,"52326":8835,"52327":6250,"52328":6583,"52329":2172,"52330":11460,"52331":7651,"52332":9249,"52333":8524,"52334":3577,"52335":4068,"52336":7026,"52337":7794,"52338":12859,"52339":5727,"52340":10289,"52341":1519,"52342":7622,"52343":7159,"52344":10751,"52345":8451,"52346":8713,"52347":3671,"52348":870,"52349":4961,"52350":12684,"52351":8321,"52352":8478,"52353":7330,"52354":14909,"52355":14098,"52356":4324,"52357":562,"52358":11719,"52359":2057,"52360":5041,"52361":6099,"52362":10284,"52363":7504,"52364":8772,"52365":7727,"52366":1091,"52367":8695,"52368":7079,"52369":77,"52370":4603,"52371":2771,"52372":13231,"52373":14430,"52374":14140,"52375":14472,"52376":4524,"52377":5356,"52378":7617,"52379":475,"52380":10091,"52381":7831,"52382":9690,"52383":6383,"52384":8141,"52385":8652,"52386":2296,"52387":5161,"52388":11698,"52389":6320,"52390":9126,"52391":2526,"52392":8938,"52393":9370,"52394":11095,"52395":7552,"52396":13793,"52397":10324,"52398":11468,"52399":4829,"52400":2545,"52401":4002,"52402":12136,"52403":4858,"52404":142,"52405":7231,"52406":6569,"52407":11566,"52408":3245,"52409":9901,"52410":13928,"52411":8439,"52412":7236,"52413":15090,"52414":10538,"52415":12891,"52416":4053,"52417":733,"52418":3060,"52419":7512,"52420":12446,"52421":2465,"52422":2896,"52423":8275,"52424":759,"52425":2936,"52426":6495,"52427":1192,"52428":8329,"52429":14853,"52430":9487,"52431":4848,"52432":3924,"52433":7384,"52434":2227,"52435":8682,"52436":4695,"52437":4840,"52438":863,"52439":74,"52440":5039,"52441":2217,"52442":9434,"52443":4664,"52444":13826,"52445":4477,"52446":6893,"52447":10658,"52448":10711,"52449":13441,"52450":2788,"52451":14997,"52452":8120,"52453":5136,"52454":13466,"52455":12612,"52456":4271,"52457":4926,"52458":5866,"52459":9190,"52460":7920,"52461":8911,"52462":9926,"52463":1975,"52464":4062,"52465":7636,"52466":14508,"52467":8272,"52468":11040,"52469":5996,"52470":9162,"52471":2606,"52472":13281,"52473":10716,"52474":5558,"52475":2280,"52476":530,"52477":14531,"52478":11284,"52479":4508,"52480":8905,"52481":3774,"52482":3056,"52483":6534,"52484":11286,"52485":11498,"52486":11470,"52487":1951,"52488":650,"52489":7000,"52490":2735,"52491":10226,"52492":5672,"52493":14249,"52494":12019,"52495":7541,"52496":14132,"52497":3252,"52498":14984,"52499":1696,"52500":1786,"52501":263,"52502":6095,"52503":14623,"52504":2686,"52505":6864,"52506":12904,"52507":11974,"52508":7228,"52509":5118,"52510":14769,"52511":9792,"52512":3709,"52513":14550,"52514":6714,"52515":5592,"52516":9162,"52517":8366,"52518":10227,"52519":6492,"52520":12558,"52521":11637,"52522":4903,"52523":8989,"52524":8394,"52525":13363,"52526":12210,"52527":3887,"52528":7306,"52529":10564,"52530":2644,"52531":10931,"52532":9686,"52533":7738,"52534":4607,"52535":4426,"52536":10123,"52537":13777,"52538":849,"52539":5394,"52540":3769,"52541":6056,"52542":9538,"52543":464,"52544":235,"52545":6202,"52546":1769,"52547":8163,"52548":9744,"52549":6011,"52550":3956,"52551":10511,"52552":3415,"52553":8471,"52554":12463,"52555":6805,"52556":12416,"52557":11350,"52558":3181,"52559":14741,"52560":14049,"52561":4253,"52562":1856,"52563":4983,"52564":4026,"52565":7659,"52566":6617,"52567":6871,"52568":10029,"52569":8619,"52570":13186,"52571":3463,"52572":4738,"52573":10164,"52574":4078,"52575":5466,"52576":6699,"52577":1543,"52578":10892,"52579":7955,"52580":11861,"52581":5394,"52582":4187,"52583":5012,"52584":1475,"52585":6979,"52586":10389,"52587":14326,"52588":9811,"52589":9724,"52590":14369,"52591":12259,"52592":14339,"52593":5360,"52594":12485,"52595":15116,"52596":13212,"52597":4665,"52598":2919,"52599":4199,"52600":3497,"52601":13002,"52602":8443,"52603":5570,"52604":4129,"52605":3439,"52606":8836,"52607":6130,"52608":4637,"52609":5271,"52610":3777,"52611":6469,"52612":12315,"52613":13179,"52614":10095,"52615":8141,"52616":13263,"52617":3657,"52618":5130,"52619":1265,"52620":8488,"52621":6831,"52622":2966,"52623":12555,"52624":4161,"52625":11600,"52626":3760,"52627":9507,"52628":11667,"52629":5159,"52630":12455,"52631":14312,"52632":10525,"52633":10693,"52634":2198,"52635":11721,"52636":12514,"52637":12076,"52638":7163,"52639":5366,"52640":11922,"52641":5156,"52642":14949,"52643":14042,"52644":1712,"52645":7335,"52646":1144,"52647":12222,"52648":9372,"52649":13740,"52650":792,"52651":2106,"52652":3156,"52653":4136,"52654":988,"52655":4221,"52656":7557,"52657":14669,"52658":2598,"52659":14706,"52660":10913,"52661":14151,"52662":8365,"52663":4,"52664":6551,"52665":12276,"52666":14207,"52667":6954,"52668":2039,"52669":606,"52670":2398,"52671":6547,"52672":1871,"52673":1917,"52674":12778,"52675":3391,"52676":4712,"52677":12289,"52678":12035,"52679":2471,"52680":13444,"52681":727,"52682":4155,"52683":7070,"52684":12723,"52685":2968,"52686":4878,"52687":10135,"52688":6871,"52689":3488,"52690":5418,"52691":10599,"52692":9196,"52693":1273,"52694":4541,"52695":12879,"52696":1922,"52697":10062,"52698":8942,"52699":11228,"52700":4489,"52701":9730,"52702":9287,"52703":7745,"52704":6270,"52705":4160,"52706":14846,"52707":13241,"52708":9629,"52709":3108,"52710":9413,"52711":635,"52712":2856,"52713":287,"52714":5488,"52715":7996,"52716":2252,"52717":1112,"52718":13454,"52719":10573,"52720":8093,"52721":11018,"52722":1866,"52723":14509,"52724":4336,"52725":3086,"52726":731,"52727":9285,"52728":3990,"52729":1032,"52730":3090,"52731":4667,"52732":11561,"52733":13667,"52734":12580,"52735":8026,"52736":4621,"52737":5849,"52738":6227,"52739":11460,"52740":14627,"52741":1589,"52742":1102,"52743":2072,"52744":12536,"52745":1438,"52746":11010,"52747":7004,"52748":6929,"52749":4434,"52750":14999,"52751":14409,"52752":13708,"52753":13728,"52754":9157,"52755":3538,"52756":7151,"52757":11929,"52758":7487,"52759":9352,"52760":9930,"52761":10295,"52762":11900,"52763":1946,"52764":6176,"52765":13591,"52766":3353,"52767":12106,"52768":10422,"52769":7225,"52770":8056,"52771":14695,"52772":14269,"52773":9852,"52774":9277,"52775":11075,"52776":14153,"52777":394,"52778":7020,"52779":3473,"52780":2461,"52781":10182,"52782":3863,"52783":13161,"52784":11850,"52785":1318,"52786":14033,"52787":12790,"52788":503,"52789":2109,"52790":7558,"52791":5246,"52792":11650,"52793":6728,"52794":13111,"52795":330,"52796":9434,"52797":8408,"52798":10859,"52799":14036,"52800":2919,"52801":13155,"52802":11337,"52803":2838,"52804":1433,"52805":10114,"52806":10300,"52807":10841,"52808":1496,"52809":5546,"52810":7182,"52811":12644,"52812":6297,"52813":6683,"52814":13897,"52815":5541,"52816":9456,"52817":10529,"52818":10774,"52819":12657,"52820":2513,"52821":2451,"52822":12584,"52823":10669,"52824":9056,"52825":2916,"52826":9203,"52827":14135,"52828":1085,"52829":6978,"52830":12592,"52831":10050,"52832":854,"52833":10901,"52834":7245,"52835":3117,"52836":1997,"52837":912,"52838":11697,"52839":4250,"52840":14692,"52841":8903,"52842":12877,"52843":1106,"52844":1775,"52845":6712,"52846":13652,"52847":5103,"52848":6651,"52849":9,"52850":13925,"52851":2109,"52852":12353,"52853":14235,"52854":13463,"52855":4893,"52856":7994,"52857":6261,"52858":4030,"52859":6425,"52860":806,"52861":6862,"52862":8919,"52863":13077,"52864":3641,"52865":6411,"52866":18,"52867":7281,"52868":1929,"52869":1389,"52870":6234,"52871":8980,"52872":2989,"52873":11040,"52874":3637,"52875":13811,"52876":8489,"52877":2445,"52878":7951,"52879":13032,"52880":1209,"52881":9542,"52882":7470,"52883":16,"52884":12948,"52885":3288,"52886":5194,"52887":13916,"52888":3307,"52889":13714,"52890":8858,"52891":8153,"52892":11639,"52893":1821,"52894":12241,"52895":3772,"52896":5475,"52897":14167,"52898":10529,"52899":11046,"52900":4024,"52901":11716,"52902":13830,"52903":8745,"52904":8335,"52905":13196,"52906":13609,"52907":3928,"52908":6387,"52909":3125,"52910":11525,"52911":2871,"52912":4593,"52913":6346,"52914":9846,"52915":4221,"52916":4549,"52917":1133,"52918":10477,"52919":1167,"52920":786,"52921":1670,"52922":12355,"52923":4401,"52924":13668,"52925":4304,"52926":8483,"52927":12084,"52928":14671,"52929":5815,"52930":7631,"52931":14050,"52932":4935,"52933":3039,"52934":11765,"52935":8780,"52936":8574,"52937":6517,"52938":5467,"52939":7462,"52940":2338,"52941":14926,"52942":8370,"52943":3007,"52944":7473,"52945":2855,"52946":1870,"52947":3989,"52948":4491,"52949":12883,"52950":7058,"52951":7441,"52952":5637,"52953":10552,"52954":14087,"52955":9325,"52956":12426,"52957":800,"52958":12877,"52959":85,"52960":9104,"52961":989,"52962":14603,"52963":9392,"52964":1493,"52965":2851,"52966":742,"52967":3198,"52968":12459,"52969":11438,"52970":8575,"52971":6794,"52972":3822,"52973":1871,"52974":12493,"52975":12498,"52976":3567,"52977":10177,"52978":8376,"52979":12520,"52980":9584,"52981":3016,"52982":7522,"52983":13430,"52984":2203,"52985":8082,"52986":7642,"52987":8498,"52988":3674,"52989":7328,"52990":10488,"52991":8378,"52992":351,"52993":8743,"52994":14085,"52995":4202,"52996":4084,"52997":13769,"52998":6747,"52999":11670,"53000":1822,"53001":11111,"53002":12894,"53003":4568,"53004":14959,"53005":12181,"53006":5293,"53007":13095,"53008":9642,"53009":7481,"53010":12352,"53011":12423,"53012":5239,"53013":6592,"53014":6228,"53015":9859,"53016":1365,"53017":4775,"53018":4986,"53019":13606,"53020":8302,"53021":5816,"53022":12132,"53023":11566,"53024":707,"53025":11839,"53026":7988,"53027":5291,"53028":13269,"53029":11443,"53030":12538,"53031":10780,"53032":13960,"53033":3799,"53034":11893,"53035":6353,"53036":1905,"53037":12308,"53038":10444,"53039":2023,"53040":14449,"53041":12110,"53042":12086,"53043":1193,"53044":5112,"53045":10846,"53046":14296,"53047":5438,"53048":6040,"53049":3315,"53050":9535,"53051":12646,"53052":3881,"53053":8325,"53054":5611,"53055":13137,"53056":8177,"53057":6476,"53058":935,"53059":7801,"53060":12169,"53061":2539,"53062":6628,"53063":5367,"53064":467,"53065":13396,"53066":12524,"53067":14088,"53068":4638,"53069":14810,"53070":4382,"53071":8672,"53072":687,"53073":7715,"53074":5133,"53075":11589,"53076":7098,"53077":2885,"53078":1993,"53079":13682,"53080":5397,"53081":3609,"53082":4668,"53083":438,"53084":3383,"53085":5418,"53086":3844,"53087":3981,"53088":3880,"53089":5220,"53090":10896,"53091":158,"53092":3627,"53093":15026,"53094":2882,"53095":6751,"53096":11727,"53097":2124,"53098":141,"53099":2262,"53100":7548,"53101":11729,"53102":3558,"53103":10026,"53104":10419,"53105":7518,"53106":2751,"53107":2402,"53108":1337,"53109":3846,"53110":13644,"53111":6741,"53112":3891,"53113":7096,"53114":1649,"53115":7,"53116":2392,"53117":8597,"53118":5635,"53119":1037,"53120":10926,"53121":11648,"53122":8024,"53123":4270,"53124":8786,"53125":9221,"53126":1,"53127":6118,"53128":1343,"53129":6991,"53130":3503,"53131":7930,"53132":1205,"53133":1769,"53134":136,"53135":3113,"53136":6298,"53137":6988,"53138":1518,"53139":4690,"53140":8410,"53141":1398,"53142":2614,"53143":6558,"53144":744,"53145":11616,"53146":10667,"53147":12495,"53148":3654,"53149":10434,"53150":1285,"53151":9298,"53152":6173,"53153":11344,"53154":2193,"53155":13128,"53156":8969,"53157":3858,"53158":7972,"53159":4034,"53160":14114,"53161":7397,"53162":1213,"53163":11187,"53164":3713,"53165":11988,"53166":14221,"53167":1052,"53168":818,"53169":12360,"53170":6732,"53171":1162,"53172":3534,"53173":12877,"53174":3179,"53175":5813,"53176":808,"53177":4320,"53178":11990,"53179":5489,"53180":14807,"53181":5027,"53182":9290,"53183":13615,"53184":11878,"53185":2795,"53186":2764,"53187":739,"53188":8709,"53189":7,"53190":3748,"53191":743,"53192":11515,"53193":8830,"53194":13615,"53195":10596,"53196":8182,"53197":12281,"53198":2708,"53199":7037,"53200":3578,"53201":11811,"53202":3605,"53203":9900,"53204":9153,"53205":947,"53206":13651,"53207":10128,"53208":11270,"53209":5238,"53210":3038,"53211":695,"53212":3316,"53213":14563,"53214":14717,"53215":1002,"53216":2430,"53217":8265,"53218":11336,"53219":9095,"53220":4877,"53221":3822,"53222":2364,"53223":5879,"53224":11937,"53225":265,"53226":10022,"53227":156,"53228":8029,"53229":12983,"53230":6748,"53231":2028,"53232":1639,"53233":1485,"53234":7201,"53235":9818,"53236":14404,"53237":11049,"53238":6908,"53239":9280,"53240":7375,"53241":2122,"53242":6943,"53243":2519,"53244":11056,"53245":7766,"53246":13587,"53247":2134,"53248":9685,"53249":5761,"53250":9172,"53251":12279,"53252":3618,"53253":11443,"53254":7717,"53255":10328,"53256":1987,"53257":9984,"53258":12867,"53259":14365,"53260":13385,"53261":9861,"53262":9017,"53263":10663,"53264":14836,"53265":13934,"53266":9937,"53267":1264,"53268":13058,"53269":3566,"53270":3549,"53271":9663,"53272":11477,"53273":4432,"53274":11376,"53275":1644,"53276":11900,"53277":7722,"53278":1251,"53279":9115,"53280":4895,"53281":5300,"53282":5489,"53283":12368,"53284":1073,"53285":4667,"53286":14771,"53287":3259,"53288":7163,"53289":2857,"53290":1322,"53291":2453,"53292":1257,"53293":14116,"53294":6338,"53295":13265,"53296":462,"53297":13367,"53298":786,"53299":13216,"53300":9273,"53301":12558,"53302":2161,"53303":8765,"53304":9698,"53305":1107,"53306":6563,"53307":10130,"53308":9279,"53309":5305,"53310":209,"53311":11730,"53312":6286,"53313":4749,"53314":9577,"53315":5510,"53316":11118,"53317":3774,"53318":13771,"53319":3982,"53320":5299,"53321":6122,"53322":4086,"53323":10920,"53324":8613,"53325":5956,"53326":5311,"53327":13967,"53328":13045,"53329":14351,"53330":13527,"53331":567,"53332":8798,"53333":8048,"53334":1092,"53335":9561,"53336":2203,"53337":12909,"53338":14972,"53339":7305,"53340":4399,"53341":7898,"53342":349,"53343":11073,"53344":10754,"53345":11784,"53346":6999,"53347":6588,"53348":8740,"53349":3801,"53350":1519,"53351":67,"53352":12062,"53353":8147,"53354":9284,"53355":10430,"53356":2730,"53357":13120,"53358":14750,"53359":12335,"53360":7957,"53361":4812,"53362":5751,"53363":13628,"53364":11461,"53365":10982,"53366":12168,"53367":761,"53368":7828,"53369":5129,"53370":11599,"53371":12938,"53372":10426,"53373":6637,"53374":3134,"53375":567,"53376":13543,"53377":1691,"53378":767,"53379":2840,"53380":5815,"53381":13422,"53382":8909,"53383":12832,"53384":4567,"53385":389,"53386":370,"53387":12384,"53388":13512,"53389":4669,"53390":9529,"53391":5195,"53392":6502,"53393":7911,"53394":4358,"53395":6150,"53396":3061,"53397":3729,"53398":4064,"53399":9328,"53400":8753,"53401":770,"53402":483,"53403":6665,"53404":2825,"53405":6047,"53406":10925,"53407":11784,"53408":9526,"53409":7756,"53410":4584,"53411":5548,"53412":7141,"53413":4679,"53414":14569,"53415":11554,"53416":16,"53417":7977,"53418":13427,"53419":3694,"53420":6656,"53421":9049,"53422":3547,"53423":381,"53424":9258,"53425":7931,"53426":1331,"53427":1268,"53428":8615,"53429":74,"53430":4917,"53431":12541,"53432":11945,"53433":5231,"53434":9244,"53435":743,"53436":1065,"53437":3625,"53438":10753,"53439":8974,"53440":6895,"53441":3888,"53442":14715,"53443":6991,"53444":12838,"53445":6334,"53446":7679,"53447":7198,"53448":12488,"53449":8051,"53450":550,"53451":10297,"53452":4307,"53453":10702,"53454":1555,"53455":784,"53456":9222,"53457":235,"53458":13523,"53459":11292,"53460":10925,"53461":240,"53462":5316,"53463":3659,"53464":12777,"53465":1049,"53466":14344,"53467":4011,"53468":2538,"53469":5527,"53470":3891,"53471":1169,"53472":7765,"53473":8166,"53474":14649,"53475":8195,"53476":1791,"53477":12715,"53478":6715,"53479":2754,"53480":10566,"53481":9955,"53482":5514,"53483":5400,"53484":4431,"53485":8538,"53486":6020,"53487":5667,"53488":5843,"53489":13956,"53490":11587,"53491":14545,"53492":14332,"53493":13801,"53494":1503,"53495":3416,"53496":4280,"53497":14793,"53498":2253,"53499":502,"53500":13166,"53501":2590,"53502":12009,"53503":10205,"53504":5076,"53505":5755,"53506":14864,"53507":13817,"53508":6654,"53509":4122,"53510":7702,"53511":7628,"53512":873,"53513":5645,"53514":8764,"53515":5460,"53516":28,"53517":2576,"53518":37,"53519":6065,"53520":3679,"53521":7311,"53522":4129,"53523":3145,"53524":7937,"53525":14702,"53526":5664,"53527":7144,"53528":11609,"53529":271,"53530":12004,"53531":937,"53532":5371,"53533":4348,"53534":5618,"53535":8723,"53536":14891,"53537":9837,"53538":6122,"53539":4401,"53540":9037,"53541":2390,"53542":8388,"53543":1176,"53544":1906,"53545":10796,"53546":1936,"53547":10423,"53548":1857,"53549":9369,"53550":1028,"53551":2417,"53552":14564,"53553":2047,"53554":12733,"53555":5601,"53556":8498,"53557":2666,"53558":13318,"53559":11505,"53560":9782,"53561":14499,"53562":7529,"53563":9593,"53564":4945,"53565":6235,"53566":14813,"53567":9229,"53568":11024,"53569":5561,"53570":9814,"53571":760,"53572":6577,"53573":2222,"53574":2403,"53575":718,"53576":955,"53577":6280,"53578":2523,"53579":10204,"53580":13268,"53581":8741,"53582":8248,"53583":50,"53584":11703,"53585":2235,"53586":3749,"53587":6255,"53588":351,"53589":2673,"53590":583,"53591":14938,"53592":1563,"53593":3945,"53594":8312,"53595":11906,"53596":10413,"53597":14126,"53598":15137,"53599":2810,"53600":6219,"53601":7468,"53602":3264,"53603":3760,"53604":4964,"53605":3666,"53606":3542,"53607":3269,"53608":13098,"53609":10592,"53610":7982,"53611":10382,"53612":4676,"53613":4440,"53614":14873,"53615":6924,"53616":1037,"53617":1103,"53618":723,"53619":513,"53620":3609,"53621":6748,"53622":11095,"53623":9548,"53624":2987,"53625":11585,"53626":11434,"53627":3793,"53628":1247,"53629":5302,"53630":12766,"53631":1454,"53632":7772,"53633":1562,"53634":5533,"53635":12707,"53636":6060,"53637":5161,"53638":10297,"53639":8090,"53640":15013,"53641":1364,"53642":5662,"53643":3211,"53644":11413,"53645":7390,"53646":6063,"53647":6466,"53648":14984,"53649":5292,"53650":12618,"53651":1547,"53652":8191,"53653":1206,"53654":6743,"53655":7034,"53656":5037,"53657":3729,"53658":13525,"53659":4275,"53660":2424,"53661":8029,"53662":13230,"53663":7892,"53664":12964,"53665":7373,"53666":9123,"53667":4387,"53668":12120,"53669":1126,"53670":14504,"53671":2621,"53672":4888,"53673":11438,"53674":13986,"53675":1951,"53676":6167,"53677":2844,"53678":1505,"53679":5296,"53680":9334,"53681":14384,"53682":8764,"53683":7741,"53684":1582,"53685":8911,"53686":11057,"53687":7848,"53688":11668,"53689":3526,"53690":7001,"53691":13575,"53692":4148,"53693":3077,"53694":154,"53695":1597,"53696":1805,"53697":11915,"53698":3688,"53699":12256,"53700":13699,"53701":235,"53702":5593,"53703":3878,"53704":12915,"53705":10272,"53706":3460,"53707":8442,"53708":4065,"53709":9506,"53710":5859,"53711":10078,"53712":12651,"53713":1753,"53714":15051,"53715":1342,"53716":579,"53717":6497,"53718":14094,"53719":2735,"53720":6061,"53721":3055,"53722":1248,"53723":1608,"53724":11323,"53725":4419,"53726":6783,"53727":8395,"53728":2032,"53729":10292,"53730":5424,"53731":5740,"53732":6035,"53733":1179,"53734":6085,"53735":6088,"53736":7261,"53737":3173,"53738":11704,"53739":1004,"53740":10714,"53741":13788,"53742":7730,"53743":6330,"53744":9570,"53745":6871,"53746":14478,"53747":9154,"53748":5346,"53749":9648,"53750":6877,"53751":4760,"53752":9039,"53753":7311,"53754":8883,"53755":14388,"53756":4474,"53757":15087,"53758":14067,"53759":11195,"53760":13866,"53761":14436,"53762":12594,"53763":7555,"53764":14583,"53765":6541,"53766":14001,"53767":3128,"53768":6753,"53769":9294,"53770":3508,"53771":539,"53772":12672,"53773":14223,"53774":8746,"53775":7272,"53776":483,"53777":10296,"53778":6067,"53779":3054,"53780":14413,"53781":8376,"53782":10037,"53783":9420,"53784":13947,"53785":12188,"53786":5212,"53787":10954,"53788":12213,"53789":13136,"53790":14527,"53791":6697,"53792":14538,"53793":8264,"53794":14997,"53795":11403,"53796":14672,"53797":10657,"53798":545,"53799":10023,"53800":12331,"53801":9282,"53802":11834,"53803":3694,"53804":2163,"53805":8649,"53806":14784,"53807":11492,"53808":13309,"53809":5919,"53810":5990,"53811":5781,"53812":13628,"53813":11957,"53814":10128,"53815":236,"53816":2367,"53817":2205,"53818":12799,"53819":1955,"53820":8144,"53821":10582,"53822":12543,"53823":8050,"53824":8113,"53825":7721,"53826":46,"53827":925,"53828":10692,"53829":14534,"53830":6109,"53831":10802,"53832":11921,"53833":6056,"53834":13755,"53835":7685,"53836":10207,"53837":14863,"53838":10080,"53839":7724,"53840":8879,"53841":7181,"53842":3444,"53843":3853,"53844":742,"53845":8768,"53846":727,"53847":5875,"53848":11642,"53849":6408,"53850":8537,"53851":12719,"53852":6079,"53853":9906,"53854":9535,"53855":8680,"53856":4216,"53857":2028,"53858":2189,"53859":12563,"53860":7627,"53861":5813,"53862":9937,"53863":11063,"53864":10363,"53865":13383,"53866":4868,"53867":9546,"53868":4290,"53869":10513,"53870":4664,"53871":11381,"53872":14636,"53873":3030,"53874":748,"53875":2951,"53876":10344,"53877":10720,"53878":3132,"53879":12676,"53880":14063,"53881":9453,"53882":8425,"53883":13405,"53884":12642,"53885":1551,"53886":3017,"53887":2322,"53888":14664,"53889":10237,"53890":8352,"53891":7127,"53892":8701,"53893":11813,"53894":9288,"53895":9312,"53896":11381,"53897":2349,"53898":14290,"53899":12598,"53900":13790,"53901":2058,"53902":3158,"53903":10054,"53904":8753,"53905":1963,"53906":12071,"53907":13790,"53908":6946,"53909":13664,"53910":784,"53911":3731,"53912":2592,"53913":7105,"53914":9131,"53915":7983,"53916":8255,"53917":12408,"53918":13645,"53919":13520,"53920":7967,"53921":4821,"53922":2557,"53923":8607,"53924":2107,"53925":13321,"53926":1361,"53927":5368,"53928":829,"53929":2452,"53930":1383,"53931":3455,"53932":9745,"53933":9163,"53934":4848,"53935":7937,"53936":1106,"53937":15021,"53938":1102,"53939":3706,"53940":10024,"53941":1687,"53942":13030,"53943":8158,"53944":11823,"53945":14804,"53946":11322,"53947":3839,"53948":2498,"53949":3092,"53950":14274,"53951":5538,"53952":2775,"53953":2200,"53954":2727,"53955":1227,"53956":6060,"53957":1619,"53958":1507,"53959":14057,"53960":1959,"53961":9467,"53962":8752,"53963":12731,"53964":8142,"53965":3733,"53966":7416,"53967":9321,"53968":9718,"53969":11473,"53970":7416,"53971":1338,"53972":611,"53973":12225,"53974":6761,"53975":8812,"53976":12930,"53977":12212,"53978":15095,"53979":2706,"53980":4002,"53981":4631,"53982":6873,"53983":949,"53984":3095,"53985":6392,"53986":11991,"53987":12497,"53988":9969,"53989":11085,"53990":13279,"53991":8999,"53992":1770,"53993":4053,"53994":390,"53995":12262,"53996":5105,"53997":4496,"53998":6367,"53999":4130,"54000":2431,"54001":13694,"54002":6389,"54003":9960,"54004":992,"54005":10436,"54006":7150,"54007":7857,"54008":10747,"54009":2693,"54010":8268,"54011":7830,"54012":13680,"54013":6887,"54014":4787,"54015":3117,"54016":1253,"54017":8861,"54018":811,"54019":2523,"54020":4499,"54021":11103,"54022":4229,"54023":1852,"54024":9426,"54025":3043,"54026":12719,"54027":10355,"54028":11628,"54029":15062,"54030":9840,"54031":11496,"54032":7833,"54033":1862,"54034":12491,"54035":3735,"54036":12684,"54037":10643,"54038":7669,"54039":2454,"54040":7888,"54041":14002,"54042":5900,"54043":5556,"54044":14792,"54045":12923,"54046":6788,"54047":4225,"54048":13358,"54049":575,"54050":5055,"54051":12473,"54052":13117,"54053":924,"54054":542,"54055":5181,"54056":9520,"54057":12322,"54058":14721,"54059":13021,"54060":14341,"54061":13103,"54062":10238,"54063":8602,"54064":2130,"54065":862,"54066":7065,"54067":14613,"54068":6676,"54069":8388,"54070":6947,"54071":14161,"54072":7768,"54073":10759,"54074":1371,"54075":6529,"54076":4193,"54077":585,"54078":2968,"54079":14850,"54080":7961,"54081":6862,"54082":12596,"54083":1705,"54084":12258,"54085":12885,"54086":1562,"54087":5343,"54088":12336,"54089":14935,"54090":4262,"54091":6455,"54092":8065,"54093":11006,"54094":4363,"54095":6421,"54096":1710,"54097":8854,"54098":10104,"54099":13382,"54100":6770,"54101":14457,"54102":8075,"54103":3983,"54104":14646,"54105":156,"54106":4915,"54107":9555,"54108":7887,"54109":6879,"54110":14131,"54111":7649,"54112":4576,"54113":7334,"54114":10441,"54115":9069,"54116":1631,"54117":13049,"54118":413,"54119":6901,"54120":9831,"54121":14152,"54122":10241,"54123":3875,"54124":6944,"54125":10194,"54126":10200,"54127":12393,"54128":9204,"54129":12751,"54130":9455,"54131":12962,"54132":4690,"54133":8553,"54134":13359,"54135":1573,"54136":3636,"54137":9543,"54138":11244,"54139":2256,"54140":12856,"54141":7638,"54142":13913,"54143":14171,"54144":6541,"54145":1092,"54146":10525,"54147":1207,"54148":10715,"54149":1226,"54150":13762,"54151":5074,"54152":13539,"54153":11394,"54154":2805,"54155":4902,"54156":7693,"54157":571,"54158":9881,"54159":2459,"54160":3216,"54161":11859,"54162":11127,"54163":7865,"54164":2388,"54165":9707,"54166":11930,"54167":1316,"54168":8230,"54169":13432,"54170":12147,"54171":3194,"54172":4639,"54173":4638,"54174":11723,"54175":7465,"54176":3372,"54177":14453,"54178":14497,"54179":10590,"54180":6615,"54181":9103,"54182":12026,"54183":11437,"54184":3106,"54185":13779,"54186":12156,"54187":8770,"54188":14091,"54189":7435,"54190":13530,"54191":10798,"54192":12547,"54193":6089,"54194":8501,"54195":3594,"54196":7748,"54197":2159,"54198":9888,"54199":166,"54200":7660,"54201":10613,"54202":485,"54203":7950,"54204":12614,"54205":491,"54206":248,"54207":5718,"54208":13688,"54209":1409,"54210":3875,"54211":9700,"54212":1678,"54213":14663,"54214":3924,"54215":196,"54216":4087,"54217":4545,"54218":10523,"54219":9877,"54220":3006,"54221":12401,"54222":5754,"54223":14877,"54224":7912,"54225":11274,"54226":13460,"54227":10788,"54228":7520,"54229":11039,"54230":13303,"54231":9813,"54232":2151,"54233":14076,"54234":11432,"54235":1064,"54236":9187,"54237":7725,"54238":5810,"54239":12286,"54240":13806,"54241":1475,"54242":3457,"54243":8457,"54244":5777,"54245":12572,"54246":11680,"54247":6011,"54248":8553,"54249":6319,"54250":8675,"54251":9668,"54252":10090,"54253":8468,"54254":7460,"54255":13932,"54256":11081,"54257":12690,"54258":12088,"54259":4216,"54260":8197,"54261":9870,"54262":12281,"54263":15016,"54264":9011,"54265":7490,"54266":13781,"54267":13597,"54268":502,"54269":9674,"54270":13996,"54271":3507,"54272":13053,"54273":3183,"54274":10416,"54275":10450,"54276":13169,"54277":11543,"54278":4470,"54279":7339,"54280":5999,"54281":3883,"54282":8536,"54283":9607,"54284":9016,"54285":1447,"54286":13937,"54287":6114,"54288":9580,"54289":4371,"54290":6020,"54291":7372,"54292":3425,"54293":12089,"54294":927,"54295":880,"54296":13432,"54297":8439,"54298":7706,"54299":6885,"54300":8972,"54301":3999,"54302":12453,"54303":4753,"54304":2306,"54305":12658,"54306":13053,"54307":10842,"54308":5918,"54309":5037,"54310":5537,"54311":8187,"54312":72,"54313":12485,"54314":4110,"54315":2056,"54316":286,"54317":12951,"54318":10814,"54319":6840,"54320":11652,"54321":11261,"54322":285,"54323":2049,"54324":14325,"54325":12891,"54326":2892,"54327":3148,"54328":9875,"54329":1192,"54330":3417,"54331":7487,"54332":2121,"54333":2460,"54334":10996,"54335":10861,"54336":502,"54337":12455,"54338":7211,"54339":1713,"54340":9539,"54341":9329,"54342":5702,"54343":5268,"54344":6545,"54345":2643,"54346":12131,"54347":4033,"54348":10042,"54349":3725,"54350":238,"54351":14148,"54352":6756,"54353":3086,"54354":2398,"54355":10451,"54356":6933,"54357":9704,"54358":1669,"54359":2682,"54360":10685,"54361":4129,"54362":3168,"54363":9464,"54364":7131,"54365":4761,"54366":11371,"54367":8352,"54368":6850,"54369":14906,"54370":11923,"54371":11354,"54372":1878,"54373":366,"54374":780,"54375":1805,"54376":1971,"54377":6809,"54378":7860,"54379":8264,"54380":5357,"54381":1957,"54382":14149,"54383":11672,"54384":7920,"54385":7786,"54386":19,"54387":14742,"54388":7744,"54389":11221,"54390":7972,"54391":14457,"54392":11013,"54393":14860,"54394":519,"54395":7420,"54396":5986,"54397":9636,"54398":9922,"54399":14061,"54400":8276,"54401":2157,"54402":7909,"54403":6799,"54404":7408,"54405":10734,"54406":9814,"54407":4137,"54408":2553,"54409":10103,"54410":11771,"54411":2995,"54412":9401,"54413":14846,"54414":11411,"54415":9406,"54416":9312,"54417":13408,"54418":9863,"54419":8042,"54420":4269,"54421":14362,"54422":8606,"54423":11625,"54424":6747,"54425":1061,"54426":7384,"54427":14689,"54428":3929,"54429":12264,"54430":7268,"54431":13669,"54432":752,"54433":10578,"54434":6111,"54435":8044,"54436":4094,"54437":12314,"54438":14724,"54439":5377,"54440":3441,"54441":12067,"54442":6513,"54443":12782,"54444":14199,"54445":5777,"54446":11529,"54447":9961,"54448":8467,"54449":13033,"54450":9491,"54451":8170,"54452":2484,"54453":8965,"54454":582,"54455":5688,"54456":6668,"54457":2728,"54458":10307,"54459":9844,"54460":15045,"54461":1545,"54462":10625,"54463":1647,"54464":7231,"54465":1844,"54466":3009,"54467":14076,"54468":9043,"54469":748,"54470":6701,"54471":10066,"54472":12942,"54473":3875,"54474":9604,"54475":5252,"54476":13981,"54477":10441,"54478":3585,"54479":11793,"54480":11195,"54481":9275,"54482":480,"54483":10564,"54484":10009,"54485":11147,"54486":11546,"54487":12105,"54488":929,"54489":5061,"54490":3353,"54491":2206,"54492":10187,"54493":3306,"54494":8067,"54495":12175,"54496":3053,"54497":8067,"54498":2409,"54499":10633,"54500":4150,"54501":6463,"54502":10246,"54503":12271,"54504":1776,"54505":9915,"54506":11408,"54507":6303,"54508":11623,"54509":13088,"54510":7887,"54511":3735,"54512":5731,"54513":7861,"54514":13584,"54515":6075,"54516":10258,"54517":13087,"54518":13033,"54519":4595,"54520":14844,"54521":12523,"54522":11070,"54523":9473,"54524":13977,"54525":13204,"54526":3615,"54527":6827,"54528":1398,"54529":2934,"54530":11366,"54531":1721,"54532":11170,"54533":11592,"54534":5772,"54535":14148,"54536":9484,"54537":9310,"54538":11851,"54539":1593,"54540":8813,"54541":2348,"54542":3265,"54543":4583,"54544":5515,"54545":11582,"54546":6801,"54547":4744,"54548":8367,"54549":4314,"54550":14207,"54551":14974,"54552":12075,"54553":956,"54554":7680,"54555":6467,"54556":4540,"54557":2304,"54558":4913,"54559":8682,"54560":4977,"54561":3922,"54562":545,"54563":805,"54564":3038,"54565":10034,"54566":2466,"54567":7303,"54568":12958,"54569":10386,"54570":14662,"54571":10297,"54572":6764,"54573":9972,"54574":4079,"54575":9717,"54576":8602,"54577":7425,"54578":8599,"54579":5125,"54580":9342,"54581":2214,"54582":11724,"54583":1155,"54584":7131,"54585":9401,"54586":217,"54587":4962,"54588":9378,"54589":7567,"54590":9513,"54591":6857,"54592":796,"54593":13672,"54594":11071,"54595":3709,"54596":4750,"54597":10498,"54598":3045,"54599":10175,"54600":2805,"54601":3956,"54602":6828,"54603":5942,"54604":2756,"54605":12397,"54606":8514,"54607":13468,"54608":13551,"54609":6807,"54610":5108,"54611":4537,"54612":6979,"54613":10573,"54614":8674,"54615":10406,"54616":11462,"54617":1454,"54618":2977,"54619":2297,"54620":10856,"54621":15033,"54622":9772,"54623":6386,"54624":14044,"54625":7871,"54626":15093,"54627":3598,"54628":3998,"54629":14169,"54630":5110,"54631":14779,"54632":7548,"54633":7834,"54634":13933,"54635":12912,"54636":13337,"54637":4107,"54638":934,"54639":10627,"54640":7072,"54641":5979,"54642":7553,"54643":5190,"54644":4252,"54645":4209,"54646":4568,"54647":10985,"54648":6410,"54649":2409,"54650":4207,"54651":3368,"54652":6824,"54653":784,"54654":12828,"54655":8387,"54656":5314,"54657":2628,"54658":8254,"54659":7382,"54660":3155,"54661":8993,"54662":10526,"54663":10471,"54664":7290,"54665":4013,"54666":10789,"54667":6441,"54668":4053,"54669":13573,"54670":6748,"54671":8160,"54672":10446,"54673":342,"54674":12578,"54675":13219,"54676":11500,"54677":13998,"54678":13113,"54679":14644,"54680":6679,"54681":9751,"54682":5596,"54683":8309,"54684":11016,"54685":6819,"54686":6126,"54687":7983,"54688":1881,"54689":12821,"54690":8974,"54691":1895,"54692":11044,"54693":10768,"54694":613,"54695":3247,"54696":7001,"54697":6082,"54698":3946,"54699":2061,"54700":6242,"54701":6436,"54702":4172,"54703":12932,"54704":4543,"54705":2619,"54706":10872,"54707":9727,"54708":10376,"54709":5668,"54710":9846,"54711":5762,"54712":10122,"54713":3920,"54714":4381,"54715":9707,"54716":725,"54717":14340,"54718":9374,"54719":12244,"54720":4693,"54721":9992,"54722":7952,"54723":10003,"54724":12731,"54725":12710,"54726":2235,"54727":3348,"54728":5159,"54729":1609,"54730":4227,"54731":10583,"54732":8338,"54733":7167,"54734":7814,"54735":7688,"54736":4139,"54737":12723,"54738":69,"54739":13296,"54740":10443,"54741":1287,"54742":4293,"54743":9182,"54744":8516,"54745":4752,"54746":5568,"54747":13877,"54748":11687,"54749":9257,"54750":3153,"54751":10317,"54752":10063,"54753":4047,"54754":3000,"54755":10731,"54756":3475,"54757":4383,"54758":2000,"54759":14027,"54760":8786,"54761":8492,"54762":12649,"54763":9195,"54764":13707,"54765":15099,"54766":2986,"54767":5564,"54768":2120,"54769":13194,"54770":11529,"54771":8652,"54772":1045,"54773":4172,"54774":9290,"54775":14726,"54776":5094,"54777":8673,"54778":4940,"54779":13185,"54780":11415,"54781":1001,"54782":3220,"54783":9205,"54784":13568,"54785":4881,"54786":6891,"54787":5623,"54788":4076,"54789":2971,"54790":7885,"54791":608,"54792":9238,"54793":7925,"54794":13230,"54795":8293,"54796":1548,"54797":12508,"54798":14939,"54799":13461,"54800":4674,"54801":13255,"54802":8741,"54803":13983,"54804":4961,"54805":2410,"54806":9347,"54807":4020,"54808":13028,"54809":14136,"54810":8440,"54811":5847,"54812":5739,"54813":9626,"54814":364,"54815":1038,"54816":1878,"54817":1810,"54818":7421,"54819":6589,"54820":2164,"54821":9281,"54822":11012,"54823":1167,"54824":8652,"54825":4771,"54826":11187,"54827":768,"54828":12837,"54829":12307,"54830":5927,"54831":9086,"54832":1762,"54833":11717,"54834":1038,"54835":227,"54836":5365,"54837":112,"54838":5245,"54839":12048,"54840":12039,"54841":13586,"54842":15143,"54843":13533,"54844":13674,"54845":9431,"54846":7186,"54847":8412,"54848":7256,"54849":1741,"54850":553,"54851":8483,"54852":14018,"54853":8819,"54854":9424,"54855":14865,"54856":9371,"54857":13338,"54858":6202,"54859":14333,"54860":13397,"54861":12202,"54862":9166,"54863":1099,"54864":3289,"54865":7230,"54866":11080,"54867":10607,"54868":14992,"54869":14624,"54870":9572,"54871":4520,"54872":4000,"54873":806,"54874":4846,"54875":6416,"54876":13403,"54877":9777,"54878":1102,"54879":12080,"54880":11227,"54881":1418,"54882":13118,"54883":10005,"54884":2401,"54885":6061,"54886":10184,"54887":10576,"54888":6675,"54889":5190,"54890":3387,"54891":4131,"54892":3913,"54893":14242,"54894":10312,"54895":5392,"54896":9201,"54897":1759,"54898":8116,"54899":12140,"54900":6765,"54901":14422,"54902":9182,"54903":7395,"54904":3946,"54905":9008,"54906":2073,"54907":1625,"54908":5306,"54909":4945,"54910":4992,"54911":8336,"54912":10528,"54913":11381,"54914":11082,"54915":7659,"54916":11998,"54917":2212,"54918":2685,"54919":9524,"54920":15134,"54921":13407,"54922":11948,"54923":14112,"54924":9822,"54925":3348,"54926":12601,"54927":54,"54928":5428,"54929":8236,"54930":6128,"54931":6275,"54932":6226,"54933":6838,"54934":617,"54935":9692,"54936":2471,"54937":14371,"54938":3218,"54939":12808,"54940":12026,"54941":830,"54942":655,"54943":5841,"54944":15035,"54945":15069,"54946":355,"54947":5835,"54948":12926,"54949":12665,"54950":8798,"54951":5153,"54952":7878,"54953":5881,"54954":12340,"54955":8305,"54956":8591,"54957":4188,"54958":3281,"54959":10488,"54960":10536,"54961":6284,"54962":8557,"54963":2682,"54964":11086,"54965":12989,"54966":15019,"54967":8003,"54968":8278,"54969":12192,"54970":4379,"54971":291,"54972":9320,"54973":11677,"54974":14451,"54975":6191,"54976":3751,"54977":6246,"54978":9286,"54979":4981,"54980":6704,"54981":11883,"54982":14846,"54983":6104,"54984":7817,"54985":9116,"54986":8553,"54987":2336,"54988":895,"54989":1087,"54990":1002,"54991":6508,"54992":4884,"54993":10352,"54994":14395,"54995":6894,"54996":8214,"54997":10426,"54998":4865,"54999":6279,"55000":6025,"55001":11393,"55002":14893,"55003":7989,"55004":5355,"55005":12011,"55006":13284,"55007":7095,"55008":10760,"55009":4495,"55010":8309,"55011":12826,"55012":6138,"55013":4308,"55014":623,"55015":11320,"55016":2663,"55017":1948,"55018":10327,"55019":4719,"55020":10253,"55021":5507,"55022":12231,"55023":5630,"55024":1062,"55025":13303,"55026":9358,"55027":8379,"55028":8621,"55029":12110,"55030":9886,"55031":13807,"55032":5808,"55033":8607,"55034":14265,"55035":7647,"55036":8617,"55037":7093,"55038":4515,"55039":8536,"55040":11760,"55041":10703,"55042":5744,"55043":6814,"55044":7677,"55045":5129,"55046":3612,"55047":87,"55048":628,"55049":6255,"55050":7763,"55051":14085,"55052":7624,"55053":2012,"55054":4823,"55055":15100,"55056":9073,"55057":11429,"55058":8770,"55059":9272,"55060":9108,"55061":14033,"55062":10365,"55063":679,"55064":9459,"55065":2056,"55066":14441,"55067":7052,"55068":5157,"55069":11115,"55070":14874,"55071":11570,"55072":15037,"55073":9528,"55074":6624,"55075":9408,"55076":9296,"55077":9704,"55078":228,"55079":7006,"55080":948,"55081":8516,"55082":6730,"55083":8099,"55084":9675,"55085":1298,"55086":10104,"55087":13742,"55088":8250,"55089":12816,"55090":4807,"55091":2554,"55092":12616,"55093":11523,"55094":9454,"55095":14318,"55096":11814,"55097":14100,"55098":13362,"55099":3009,"55100":12234,"55101":11466,"55102":5981,"55103":8013,"55104":7689,"55105":9122,"55106":3455,"55107":7591,"55108":902,"55109":9697,"55110":10145,"55111":13074,"55112":11465,"55113":15078,"55114":4928,"55115":10518,"55116":3795,"55117":5776,"55118":7329,"55119":3792,"55120":5400,"55121":5153,"55122":7885,"55123":4537,"55124":3488,"55125":5707,"55126":5005,"55127":108,"55128":11379,"55129":9471,"55130":9599,"55131":13068,"55132":11130,"55133":3658,"55134":13768,"55135":13076,"55136":2667,"55137":13354,"55138":6222,"55139":4087,"55140":10361,"55141":6293,"55142":9791,"55143":6763,"55144":3335,"55145":8290,"55146":10857,"55147":4670,"55148":10019,"55149":6507,"55150":14843,"55151":11762,"55152":6884,"55153":11571,"55154":705,"55155":7906,"55156":14734,"55157":6618,"55158":1934,"55159":10177,"55160":2417,"55161":2002,"55162":4277,"55163":4945,"55164":4225,"55165":13755,"55166":5326,"55167":7786,"55168":133,"55169":10687,"55170":11877,"55171":4974,"55172":5136,"55173":526,"55174":13040,"55175":5901,"55176":14297,"55177":13744,"55178":8239,"55179":4418,"55180":7287,"55181":359,"55182":14231,"55183":8477,"55184":13324,"55185":6633,"55186":13525,"55187":8682,"55188":13363,"55189":8482,"55190":1483,"55191":10205,"55192":14434,"55193":10712,"55194":1936,"55195":14907,"55196":13760,"55197":13084,"55198":12371,"55199":2981,"55200":2771,"55201":12509,"55202":14097,"55203":8551,"55204":8255,"55205":3784,"55206":11340,"55207":3883,"55208":9229,"55209":8642,"55210":5937,"55211":7132,"55212":283,"55213":2577,"55214":15100,"55215":10354,"55216":3673,"55217":172,"55218":6495,"55219":9774,"55220":11372,"55221":9207,"55222":3380,"55223":3524,"55224":14606,"55225":470,"55226":13706,"55227":562,"55228":7881,"55229":11343,"55230":14100,"55231":3928,"55232":1602,"55233":9947,"55234":12369,"55235":14878,"55236":5624,"55237":9795,"55238":10605,"55239":445,"55240":7561,"55241":7781,"55242":5970,"55243":3901,"55244":3292,"55245":11505,"55246":603,"55247":786,"55248":8754,"55249":3410,"55250":10561,"55251":521,"55252":1972,"55253":15002,"55254":13653,"55255":3730,"55256":5634,"55257":3001,"55258":11283,"55259":1672,"55260":7440,"55261":2180,"55262":6800,"55263":11398,"55264":3610,"55265":2525,"55266":10862,"55267":9355,"55268":11545,"55269":2561,"55270":4426,"55271":14834,"55272":1078,"55273":5237,"55274":14052,"55275":14419,"55276":2459,"55277":3690,"55278":2696,"55279":10114,"55280":2486,"55281":6005,"55282":396,"55283":8058,"55284":8023,"55285":4271,"55286":6135,"55287":5111,"55288":8446,"55289":9910,"55290":9409,"55291":4684,"55292":12762,"55293":7654,"55294":9618,"55295":53,"55296":9459,"55297":2426,"55298":13995,"55299":8903,"55300":11254,"55301":14779,"55302":12302,"55303":11128,"55304":1225,"55305":11223,"55306":12645,"55307":11253,"55308":7124,"55309":7400,"55310":4611,"55311":6121,"55312":2958,"55313":3267,"55314":7304,"55315":11317,"55316":12127,"55317":14575,"55318":14585,"55319":1473,"55320":2682,"55321":378,"55322":3003,"55323":13330,"55324":637,"55325":3715,"55326":5700,"55327":9013,"55328":2236,"55329":14969,"55330":8768,"55331":3160,"55332":3619,"55333":8214,"55334":11987,"55335":3772,"55336":1297,"55337":7133,"55338":5554,"55339":6298,"55340":15123,"55341":2882,"55342":6890,"55343":11824,"55344":8745,"55345":10381,"55346":2749,"55347":11387,"55348":1833,"55349":10842,"55350":6626,"55351":7888,"55352":11046,"55353":3038,"55354":457,"55355":13021,"55356":2772,"55357":14792,"55358":236,"55359":11596,"55360":3620,"55361":4183,"55362":11417,"55363":230,"55364":6681,"55365":239,"55366":1254,"55367":10657,"55368":11817,"55369":9696,"55370":9926,"55371":3278,"55372":11573,"55373":11504,"55374":1370,"55375":11387,"55376":4272,"55377":2475,"55378":5707,"55379":11400,"55380":11220,"55381":4889,"55382":10329,"55383":8297,"55384":8641,"55385":13814,"55386":12592,"55387":13809,"55388":6410,"55389":1838,"55390":5578,"55391":61,"55392":7672,"55393":9303,"55394":8327,"55395":14607,"55396":7539,"55397":11718,"55398":14768,"55399":2893,"55400":2706,"55401":14822,"55402":2778,"55403":13148,"55404":14343,"55405":671,"55406":8156,"55407":9491,"55408":3283,"55409":14898,"55410":14474,"55411":5213,"55412":13941,"55413":8564,"55414":8175,"55415":11341,"55416":8239,"55417":11582,"55418":8428,"55419":7119,"55420":7531,"55421":8915,"55422":1444,"55423":2011,"55424":4859,"55425":3840,"55426":2412,"55427":13630,"55428":1824,"55429":10608,"55430":14754,"55431":4832,"55432":4319,"55433":4213,"55434":3728,"55435":6041,"55436":4001,"55437":10205,"55438":14602,"55439":2448,"55440":1613,"55441":9530,"55442":5120,"55443":3405,"55444":10345,"55445":4865,"55446":3453,"55447":13093,"55448":10664,"55449":9663,"55450":2091,"55451":2772,"55452":7025,"55453":2325,"55454":11112,"55455":3088,"55456":7929,"55457":10730,"55458":9264,"55459":10223,"55460":2394,"55461":625,"55462":12886,"55463":11925,"55464":1576,"55465":8808,"55466":12420,"55467":8079,"55468":4817,"55469":6978,"55470":9329,"55471":8232,"55472":4582,"55473":8098,"55474":4628,"55475":6586,"55476":487,"55477":4447,"55478":4950,"55479":10404,"55480":1738,"55481":3129,"55482":10424,"55483":11266,"55484":3228,"55485":24,"55486":12923,"55487":8400,"55488":7061,"55489":17,"55490":11551,"55491":8572,"55492":9210,"55493":3527,"55494":14707,"55495":15052,"55496":3810,"55497":10604,"55498":7637,"55499":9916,"55500":12611,"55501":13926,"55502":13748,"55503":11452,"55504":2348,"55505":2715,"55506":13497,"55507":10161,"55508":14995,"55509":12787,"55510":4597,"55511":634,"55512":4855,"55513":15066,"55514":3241,"55515":13477,"55516":8453,"55517":4291,"55518":897,"55519":1917,"55520":11377,"55521":8379,"55522":9449,"55523":5714,"55524":8040,"55525":12341,"55526":13627,"55527":5884,"55528":6104,"55529":6654,"55530":97,"55531":6704,"55532":4709,"55533":14426,"55534":15061,"55535":4621,"55536":6903,"55537":3852,"55538":10127,"55539":10655,"55540":8621,"55541":8509,"55542":2736,"55543":11964,"55544":7975,"55545":11316,"55546":5848,"55547":2082,"55548":4165,"55549":11286,"55550":4188,"55551":10290,"55552":10634,"55553":6935,"55554":10860,"55555":8824,"55556":13046,"55557":11834,"55558":3467,"55559":6995,"55560":14176,"55561":7411,"55562":5289,"55563":5132,"55564":6836,"55565":9793,"55566":13616,"55567":435,"55568":3337,"55569":8408,"55570":7307,"55571":15057,"55572":7425,"55573":10615,"55574":4196,"55575":3997,"55576":13416,"55577":12373,"55578":14108,"55579":13666,"55580":9448,"55581":9531,"55582":1813,"55583":8450,"55584":6796,"55585":6042,"55586":5733,"55587":14891,"55588":4415,"55589":9580,"55590":12433,"55591":9724,"55592":12477,"55593":8242,"55594":6199,"55595":13386,"55596":13398,"55597":6127,"55598":6084,"55599":9794,"55600":13553,"55601":11202,"55602":7541,"55603":4268,"55604":5601,"55605":14592,"55606":14907,"55607":3616,"55608":8044,"55609":8422,"55610":6782,"55611":8790,"55612":10199,"55613":12775,"55614":396,"55615":4038,"55616":6216,"55617":1959,"55618":17,"55619":5058,"55620":5977,"55621":5418,"55622":11611,"55623":8199,"55624":15099,"55625":7228,"55626":3893,"55627":9313,"55628":6098,"55629":5456,"55630":1136,"55631":931,"55632":641,"55633":663,"55634":14265,"55635":2603,"55636":138,"55637":8074,"55638":11756,"55639":4217,"55640":12547,"55641":1214,"55642":7449,"55643":437,"55644":6181,"55645":2870,"55646":2106,"55647":5864,"55648":1748,"55649":853,"55650":11184,"55651":5764,"55652":6715,"55653":6287,"55654":9733,"55655":3507,"55656":7096,"55657":9612,"55658":3197,"55659":3166,"55660":13668,"55661":11513,"55662":11710,"55663":6924,"55664":1697,"55665":9851,"55666":4097,"55667":61,"55668":4793,"55669":534,"55670":11497,"55671":12491,"55672":6907,"55673":14008,"55674":12229,"55675":5398,"55676":1163,"55677":8367,"55678":8841,"55679":3196,"55680":5573,"55681":12963,"55682":2728,"55683":5589,"55684":3324,"55685":12232,"55686":7141,"55687":4181,"55688":9959,"55689":9427,"55690":3846,"55691":11424,"55692":8069,"55693":8795,"55694":10883,"55695":5536,"55696":4406,"55697":6617,"55698":9932,"55699":1431,"55700":6636,"55701":15147,"55702":9730,"55703":12917,"55704":7183,"55705":800,"55706":2376,"55707":2605,"55708":1733,"55709":2947,"55710":4747,"55711":9526,"55712":12462,"55713":9113,"55714":4273,"55715":1289,"55716":11669,"55717":526,"55718":14149,"55719":1258,"55720":3099,"55721":5552,"55722":11833,"55723":13906,"55724":2716,"55725":3286,"55726":2114,"55727":9668,"55728":942,"55729":1366,"55730":119,"55731":8954,"55732":2898,"55733":4652,"55734":3405,"55735":13488,"55736":6037,"55737":4710,"55738":14739,"55739":3513,"55740":4283,"55741":3377,"55742":15096,"55743":8887,"55744":2578,"55745":7238,"55746":9790,"55747":14736,"55748":7451,"55749":5284,"55750":1258,"55751":12806,"55752":5050,"55753":11940,"55754":7812,"55755":7798,"55756":3577,"55757":7473,"55758":14767,"55759":13449,"55760":451,"55761":13416,"55762":10786,"55763":3712,"55764":10552,"55765":3695,"55766":14976,"55767":4914,"55768":6467,"55769":4963,"55770":11235,"55771":4796,"55772":9489,"55773":13454,"55774":8895,"55775":3974,"55776":6297,"55777":7723,"55778":14940,"55779":5344,"55780":2843,"55781":5880,"55782":6267,"55783":11510,"55784":10863,"55785":8061,"55786":6108,"55787":5148,"55788":7934,"55789":5588,"55790":5714,"55791":14825,"55792":13937,"55793":1495,"55794":7383,"55795":7159,"55796":11966,"55797":4558,"55798":12786,"55799":12486,"55800":7435,"55801":9143,"55802":10419,"55803":516,"55804":3473,"55805":13441,"55806":745,"55807":11457,"55808":1433,"55809":9303,"55810":3738,"55811":13184,"55812":9177,"55813":4181,"55814":10590,"55815":12408,"55816":12538,"55817":10644,"55818":14374,"55819":13234,"55820":11422,"55821":6475,"55822":4154,"55823":10244,"55824":2509,"55825":1795,"55826":9964,"55827":14263,"55828":1102,"55829":13770,"55830":7686,"55831":3118,"55832":10620,"55833":13666,"55834":87,"55835":3807,"55836":9198,"55837":3967,"55838":14566,"55839":13188,"55840":2509,"55841":9459,"55842":4784,"55843":2804,"55844":9408,"55845":55,"55846":12843,"55847":14856,"55848":14595,"55849":2999,"55850":1320,"55851":1687,"55852":3005,"55853":4658,"55854":14323,"55855":7980,"55856":10370,"55857":3077,"55858":11260,"55859":9825,"55860":7870,"55861":12388,"55862":14179,"55863":119,"55864":4465,"55865":7599,"55866":13102,"55867":9291,"55868":10225,"55869":11382,"55870":5741,"55871":9346,"55872":8581,"55873":6924,"55874":13051,"55875":13491,"55876":10072,"55877":12663,"55878":12293,"55879":2787,"55880":9044,"55881":5410,"55882":1335,"55883":5728,"55884":11012,"55885":4893,"55886":3871,"55887":13036,"55888":2355,"55889":10485,"55890":14338,"55891":1859,"55892":363,"55893":3791,"55894":1902,"55895":8311,"55896":10334,"55897":13755,"55898":14412,"55899":2613,"55900":14376,"55901":13024,"55902":7953,"55903":3651,"55904":4608,"55905":14204,"55906":14875,"55907":5344,"55908":3248,"55909":2622,"55910":7316,"55911":5405,"55912":12178,"55913":4748,"55914":6551,"55915":14792,"55916":11967,"55917":773,"55918":11350,"55919":6138,"55920":10796,"55921":2659,"55922":13711,"55923":13028,"55924":8620,"55925":4072,"55926":2100,"55927":8227,"55928":7126,"55929":6764,"55930":361,"55931":4665,"55932":12974,"55933":2291,"55934":12718,"55935":4737,"55936":3856,"55937":1110,"55938":2859,"55939":1694,"55940":1089,"55941":6091,"55942":12589,"55943":13063,"55944":10725,"55945":5749,"55946":10357,"55947":1893,"55948":11044,"55949":162,"55950":12326,"55951":10438,"55952":10344,"55953":8739,"55954":13833,"55955":11715,"55956":9891,"55957":8072,"55958":11554,"55959":2270,"55960":2045,"55961":12297,"55962":1528,"55963":11614,"55964":8489,"55965":1489,"55966":13784,"55967":12375,"55968":13922,"55969":12802,"55970":12751,"55971":2366,"55972":534,"55973":12943,"55974":10386,"55975":11477,"55976":11269,"55977":3031,"55978":12629,"55979":3906,"55980":2405,"55981":1557,"55982":2727,"55983":10146,"55984":6741,"55985":2028,"55986":12777,"55987":7430,"55988":2540,"55989":13788,"55990":10802,"55991":4489,"55992":11212,"55993":11772,"55994":10434,"55995":8777,"55996":9811,"55997":7649,"55998":4707,"55999":14648,"56000":2267,"56001":7928,"56002":1307,"56003":5739,"56004":14700,"56005":7669,"56006":11690,"56007":1089,"56008":6110,"56009":14657,"56010":4005,"56011":4058,"56012":1270,"56013":14205,"56014":6504,"56015":5954,"56016":7006,"56017":14125,"56018":7892,"56019":2826,"56020":13072,"56021":8456,"56022":10467,"56023":5514,"56024":7847,"56025":4817,"56026":11675,"56027":2828,"56028":6437,"56029":10567,"56030":8043,"56031":7996,"56032":12971,"56033":13,"56034":4998,"56035":6529,"56036":6876,"56037":2548,"56038":4753,"56039":742,"56040":12626,"56041":2539,"56042":14751,"56043":12593,"56044":12687,"56045":852,"56046":14582,"56047":6428,"56048":8638,"56049":5999,"56050":6801,"56051":12868,"56052":10428,"56053":15012,"56054":213,"56055":4515,"56056":7321,"56057":11459,"56058":12543,"56059":11577,"56060":13241,"56061":5309,"56062":3696,"56063":10142,"56064":13607,"56065":5630,"56066":8532,"56067":12671,"56068":12201,"56069":5130,"56070":5555,"56071":2114,"56072":14533,"56073":10269,"56074":13030,"56075":7157,"56076":4858,"56077":4259,"56078":2285,"56079":10582,"56080":2988,"56081":5635,"56082":8431,"56083":6461,"56084":4610,"56085":14727,"56086":14496,"56087":1236,"56088":10354,"56089":11517,"56090":12667,"56091":2798,"56092":12225,"56093":299,"56094":15055,"56095":13779,"56096":3794,"56097":1966,"56098":1189,"56099":6671,"56100":1584,"56101":5357,"56102":5574,"56103":6176,"56104":2995,"56105":6224,"56106":8672,"56107":10875,"56108":11287,"56109":14,"56110":9008,"56111":10581,"56112":7170,"56113":5786,"56114":2,"56115":9559,"56116":3719,"56117":3727,"56118":13393,"56119":8110,"56120":5790,"56121":8115,"56122":9656,"56123":11004,"56124":11844,"56125":9114,"56126":3682,"56127":3487,"56128":5742,"56129":9519,"56130":9198,"56131":3965,"56132":1085,"56133":12450,"56134":5200,"56135":8912,"56136":11721,"56137":8841,"56138":14360,"56139":4195,"56140":12692,"56141":2874,"56142":3738,"56143":7713,"56144":8619,"56145":10140,"56146":11233,"56147":5139,"56148":4518,"56149":8911,"56150":13005,"56151":7600,"56152":11591,"56153":4843,"56154":5872,"56155":7059,"56156":9903,"56157":14103,"56158":3584,"56159":2314,"56160":10174,"56161":12593,"56162":2873,"56163":1605,"56164":8988,"56165":2404,"56166":10987,"56167":9662,"56168":10557,"56169":14484,"56170":7861,"56171":7420,"56172":12903,"56173":11903,"56174":10419,"56175":4499,"56176":10039,"56177":8351,"56178":7255,"56179":1417,"56180":3264,"56181":12587,"56182":7151,"56183":10249,"56184":4483,"56185":8247,"56186":11277,"56187":10374,"56188":8520,"56189":15034,"56190":8198,"56191":4342,"56192":7435,"56193":14110,"56194":10927,"56195":1072,"56196":7602,"56197":911,"56198":6740,"56199":5955,"56200":1978,"56201":4072,"56202":14836,"56203":10819,"56204":13523,"56205":9985,"56206":8192,"56207":2271,"56208":4133,"56209":3154,"56210":4539,"56211":13730,"56212":4016,"56213":1221,"56214":6302,"56215":1618,"56216":10637,"56217":1219,"56218":14371,"56219":5775,"56220":2692,"56221":12454,"56222":5012,"56223":774,"56224":5669,"56225":11906,"56226":12338,"56227":1980,"56228":6439,"56229":7734,"56230":622,"56231":13485,"56232":10359,"56233":12549,"56234":10106,"56235":14998,"56236":9710,"56237":855,"56238":11744,"56239":5979,"56240":13523,"56241":8422,"56242":12721,"56243":6645,"56244":3153,"56245":65,"56246":2052,"56247":11398,"56248":13794,"56249":10191,"56250":7552,"56251":10714,"56252":13385,"56253":1060,"56254":8077,"56255":636,"56256":12904,"56257":4887,"56258":12950,"56259":7020,"56260":9112,"56261":5989,"56262":11787,"56263":9000,"56264":5589,"56265":12298,"56266":5703,"56267":2440,"56268":12785,"56269":10473,"56270":8159,"56271":14341,"56272":13704,"56273":12336,"56274":6457,"56275":11906,"56276":11690,"56277":10031,"56278":3763,"56279":13532,"56280":1949,"56281":6178,"56282":6417,"56283":14697,"56284":11303,"56285":9321,"56286":4625,"56287":3088,"56288":3109,"56289":5191,"56290":2835,"56291":5093,"56292":14417,"56293":4777,"56294":8442,"56295":10388,"56296":13112,"56297":13643,"56298":194,"56299":6689,"56300":9963,"56301":4665,"56302":3974,"56303":6652,"56304":12169,"56305":6924,"56306":13883,"56307":5472,"56308":4335,"56309":3827,"56310":7568,"56311":8384,"56312":2095,"56313":12874,"56314":11583,"56315":11775,"56316":1337,"56317":10907,"56318":10722,"56319":3010,"56320":14457,"56321":8292,"56322":5740,"56323":2789,"56324":5784,"56325":9827,"56326":1413,"56327":243,"56328":10731,"56329":6260,"56330":10175,"56331":4292,"56332":13085,"56333":1942,"56334":12771,"56335":11559,"56336":13656,"56337":914,"56338":6227,"56339":12639,"56340":7659,"56341":808,"56342":6845,"56343":7068,"56344":2746,"56345":11546,"56346":9368,"56347":2607,"56348":6933,"56349":9734,"56350":6443,"56351":5757,"56352":5144,"56353":3907,"56354":957,"56355":14512,"56356":10579,"56357":6486,"56358":5891,"56359":2225,"56360":12719,"56361":7134,"56362":2819,"56363":13125,"56364":8071,"56365":1696,"56366":2348,"56367":697,"56368":13097,"56369":1968,"56370":15037,"56371":12440,"56372":10310,"56373":12613,"56374":252,"56375":995,"56376":8349,"56377":9323,"56378":9549,"56379":309,"56380":3985,"56381":4008,"56382":14954,"56383":9656,"56384":166,"56385":15105,"56386":15049,"56387":10849,"56388":6811,"56389":6136,"56390":10041,"56391":11716,"56392":7424,"56393":9579,"56394":839,"56395":13482,"56396":13146,"56397":14401,"56398":8263,"56399":6189,"56400":14387,"56401":1938,"56402":13155,"56403":6182,"56404":3138,"56405":8048,"56406":4865,"56407":3139,"56408":2986,"56409":2726,"56410":4455,"56411":6838,"56412":7966,"56413":14544,"56414":253,"56415":14451,"56416":7472,"56417":7182,"56418":14093,"56419":5877,"56420":4588,"56421":7789,"56422":1139,"56423":2358,"56424":10185,"56425":7070,"56426":12586,"56427":9361,"56428":13573,"56429":1543,"56430":12878,"56431":10722,"56432":9579,"56433":14400,"56434":9730,"56435":4812,"56436":8253,"56437":165,"56438":12351,"56439":3117,"56440":10628,"56441":3807,"56442":2187,"56443":11613,"56444":10008,"56445":7174,"56446":13857,"56447":2013,"56448":6221,"56449":1137,"56450":3084,"56451":14066,"56452":1943,"56453":4839,"56454":8095,"56455":1509,"56456":498,"56457":7442,"56458":13695,"56459":11279,"56460":280,"56461":734,"56462":9126,"56463":3828,"56464":2537,"56465":8567,"56466":7551,"56467":1902,"56468":13364,"56469":2098,"56470":11240,"56471":624,"56472":2455,"56473":4591,"56474":7516,"56475":9967,"56476":13035,"56477":14322,"56478":8642,"56479":12564,"56480":11789,"56481":9975,"56482":13902,"56483":6853,"56484":3567,"56485":6087,"56486":10829,"56487":13783,"56488":3564,"56489":483,"56490":421,"56491":14344,"56492":10308,"56493":13537,"56494":293,"56495":1292,"56496":10758,"56497":11024,"56498":154,"56499":7089,"56500":3199,"56501":13440,"56502":8307,"56503":1707,"56504":8521,"56505":8536,"56506":1753,"56507":11240,"56508":15066,"56509":14166,"56510":2494,"56511":12050,"56512":12099,"56513":9421,"56514":4091,"56515":438,"56516":3308,"56517":9298,"56518":10580,"56519":14108,"56520":8377,"56521":12613,"56522":8926,"56523":12588,"56524":6918,"56525":6498,"56526":2520,"56527":10745,"56528":8380,"56529":14992,"56530":11687,"56531":7344,"56532":9998,"56533":8812,"56534":13928,"56535":1619,"56536":13134,"56537":240,"56538":243,"56539":9245,"56540":15110,"56541":762,"56542":12850,"56543":10956,"56544":9186,"56545":13435,"56546":10323,"56547":8427,"56548":8470,"56549":3217,"56550":5244,"56551":10149,"56552":6074,"56553":6579,"56554":7811,"56555":5255,"56556":5202,"56557":39,"56558":6025,"56559":14634,"56560":3225,"56561":7484,"56562":6813,"56563":8323,"56564":11043,"56565":6916,"56566":13736,"56567":9899,"56568":11471,"56569":975,"56570":5698,"56571":10888,"56572":7707,"56573":13868,"56574":13868,"56575":1711,"56576":13292,"56577":4267,"56578":13492,"56579":11097,"56580":13989,"56581":8386,"56582":7483,"56583":10364,"56584":6462,"56585":14120,"56586":11911,"56587":10000,"56588":434,"56589":11949,"56590":6930,"56591":1022,"56592":8847,"56593":9348,"56594":8062,"56595":11770,"56596":1709,"56597":15031,"56598":4491,"56599":2054,"56600":4424,"56601":4225,"56602":14707,"56603":8859,"56604":2565,"56605":4811,"56606":8336,"56607":10931,"56608":800,"56609":7077,"56610":8302,"56611":7224,"56612":3746,"56613":10503,"56614":13920,"56615":10767,"56616":14665,"56617":13599,"56618":6631,"56619":6666,"56620":1307,"56621":7548,"56622":6440,"56623":1941,"56624":2331,"56625":9675,"56626":11277,"56627":11676,"56628":3298,"56629":1023,"56630":5565,"56631":12296,"56632":35,"56633":9436,"56634":9963,"56635":12675,"56636":14143,"56637":1976,"56638":9150,"56639":11645,"56640":3971,"56641":2721,"56642":7959,"56643":9032,"56644":7889,"56645":2665,"56646":7234,"56647":8286,"56648":14821,"56649":10478,"56650":10159,"56651":2948,"56652":3228,"56653":8310,"56654":15017,"56655":8053,"56656":10668,"56657":5584,"56658":2206,"56659":10587,"56660":49,"56661":7076,"56662":7697,"56663":14192,"56664":13503,"56665":14346,"56666":14894,"56667":1786,"56668":10469,"56669":6094,"56670":5412,"56671":7227,"56672":13386,"56673":7331,"56674":4003,"56675":1208,"56676":3241,"56677":6116,"56678":7972,"56679":6865,"56680":4445,"56681":6137,"56682":2247,"56683":225,"56684":14500,"56685":1435,"56686":10377,"56687":14023,"56688":7168,"56689":12394,"56690":9145,"56691":13053,"56692":4355,"56693":6784,"56694":10825,"56695":11130,"56696":13991,"56697":1429,"56698":347,"56699":5059,"56700":4087,"56701":7322,"56702":476,"56703":6795,"56704":12572,"56705":3229,"56706":12941,"56707":7856,"56708":8126,"56709":3477,"56710":7579,"56711":3333,"56712":9299,"56713":6509,"56714":8040,"56715":9189,"56716":1144,"56717":5771,"56718":1390,"56719":314,"56720":13831,"56721":5464,"56722":4370,"56723":8639,"56724":9769,"56725":9712,"56726":10894,"56727":11834,"56728":6464,"56729":2179,"56730":10321,"56731":9322,"56732":10237,"56733":8630,"56734":590,"56735":9800,"56736":12416,"56737":9319,"56738":14112,"56739":11275,"56740":1397,"56741":3599,"56742":2101,"56743":2818,"56744":5470,"56745":1106,"56746":2995,"56747":8850,"56748":6174,"56749":6228,"56750":14818,"56751":1168,"56752":3074,"56753":4775,"56754":3166,"56755":13398,"56756":6772,"56757":11546,"56758":1050,"56759":7566,"56760":7903,"56761":425,"56762":14089,"56763":14474,"56764":11898,"56765":13043,"56766":8295,"56767":12621,"56768":5168,"56769":12523,"56770":12568,"56771":13684,"56772":10048,"56773":7872,"56774":4712,"56775":14203,"56776":1037,"56777":7076,"56778":35,"56779":11335,"56780":1779,"56781":9345,"56782":1930,"56783":7507,"56784":1648,"56785":10109,"56786":10058,"56787":13806,"56788":5438,"56789":10932,"56790":11506,"56791":14056,"56792":14701,"56793":6995,"56794":5642,"56795":1832,"56796":2612,"56797":2092,"56798":11233,"56799":3492,"56800":8697,"56801":10938,"56802":37,"56803":1203,"56804":12459,"56805":7409,"56806":1125,"56807":757,"56808":1771,"56809":11327,"56810":524,"56811":177,"56812":5632,"56813":10395,"56814":14302,"56815":9473,"56816":2364,"56817":10193,"56818":6843,"56819":9967,"56820":1371,"56821":6209,"56822":10609,"56823":11400,"56824":14965,"56825":15080,"56826":13346,"56827":7626,"56828":5961,"56829":4324,"56830":11153,"56831":11689,"56832":4215,"56833":2078,"56834":3633,"56835":5483,"56836":11877,"56837":884,"56838":620,"56839":1740,"56840":6334,"56841":4563,"56842":10770,"56843":13907,"56844":10864,"56845":3270,"56846":4782,"56847":3609,"56848":4874,"56849":8585,"56850":7753,"56851":564,"56852":12678,"56853":7710,"56854":11833,"56855":1646,"56856":8462,"56857":9258,"56858":3193,"56859":9858,"56860":13906,"56861":8740,"56862":11974,"56863":10375,"56864":407,"56865":2504,"56866":13620,"56867":9286,"56868":11070,"56869":14167,"56870":14834,"56871":8962,"56872":3063,"56873":8305,"56874":9317,"56875":934,"56876":3224,"56877":5499,"56878":10021,"56879":10276,"56880":737,"56881":13279,"56882":10754,"56883":10056,"56884":12038,"56885":36,"56886":11650,"56887":3070,"56888":3789,"56889":63,"56890":2921,"56891":6044,"56892":896,"56893":2021,"56894":6347,"56895":11267,"56896":14648,"56897":10630,"56898":4570,"56899":8467,"56900":9846,"56901":3549,"56902":10980,"56903":14903,"56904":9390,"56905":14173,"56906":7259,"56907":14323,"56908":5037,"56909":8624,"56910":4041,"56911":11620,"56912":12344,"56913":8716,"56914":8625,"56915":8992,"56916":3543,"56917":4120,"56918":6983,"56919":14463,"56920":5151,"56921":7942,"56922":15076,"56923":14037,"56924":533,"56925":12334,"56926":12166,"56927":12014,"56928":8138,"56929":4985,"56930":3134,"56931":3226,"56932":1249,"56933":14529,"56934":8298,"56935":1984,"56936":3881,"56937":7143,"56938":8220,"56939":1653,"56940":14767,"56941":11268,"56942":11052,"56943":14044,"56944":12900,"56945":111,"56946":7996,"56947":13076,"56948":12250,"56949":13501,"56950":14339,"56951":10268,"56952":10188,"56953":2082,"56954":12537,"56955":13983,"56956":9394,"56957":7975,"56958":4502,"56959":13934,"56960":15003,"56961":12639,"56962":4073,"56963":797,"56964":7351,"56965":11820,"56966":1639,"56967":10325,"56968":10814,"56969":6275,"56970":5870,"56971":13974,"56972":937,"56973":8536,"56974":3496,"56975":5563,"56976":1992,"56977":11902,"56978":12947,"56979":6770,"56980":12563,"56981":14686,"56982":1439,"56983":9255,"56984":1027,"56985":341,"56986":1056,"56987":4861,"56988":329,"56989":3889,"56990":4857,"56991":10323,"56992":11874,"56993":5768,"56994":10165,"56995":3903,"56996":2652,"56997":1405,"56998":8597,"56999":12357,"57000":7089,"57001":1202,"57002":13680,"57003":826,"57004":8090,"57005":5726,"57006":2678,"57007":11842,"57008":2002,"57009":12850,"57010":12620,"57011":158,"57012":2042,"57013":6678,"57014":10454,"57015":9529,"57016":2056,"57017":10378,"57018":983,"57019":8058,"57020":68,"57021":4789,"57022":1850,"57023":5990,"57024":10513,"57025":7546,"57026":13478,"57027":9550,"57028":4337,"57029":13003,"57030":8903,"57031":14098,"57032":8705,"57033":11816,"57034":6876,"57035":7545,"57036":564,"57037":8239,"57038":1526,"57039":7807,"57040":8110,"57041":11782,"57042":9077,"57043":8566,"57044":12432,"57045":11610,"57046":13090,"57047":7293,"57048":11033,"57049":14330,"57050":10717,"57051":10218,"57052":13058,"57053":3247,"57054":1770,"57055":1083,"57056":555,"57057":4284,"57058":2050,"57059":11576,"57060":9758,"57061":5510,"57062":10777,"57063":3825,"57064":7983,"57065":12781,"57066":2087,"57067":14126,"57068":10661,"57069":4405,"57070":14618,"57071":6835,"57072":11443,"57073":10490,"57074":3210,"57075":7057,"57076":14822,"57077":1,"57078":3862,"57079":11171,"57080":675,"57081":1172,"57082":12019,"57083":2027,"57084":3954,"57085":14365,"57086":6169,"57087":3463,"57088":6855,"57089":13839,"57090":1700,"57091":368,"57092":11117,"57093":6619,"57094":13273,"57095":1642,"57096":11087,"57097":11885,"57098":12347,"57099":12572,"57100":14417,"57101":10581,"57102":3192,"57103":10326,"57104":14376,"57105":9232,"57106":3704,"57107":688,"57108":10450,"57109":12020,"57110":2463,"57111":6896,"57112":3240,"57113":6915,"57114":2866,"57115":804,"57116":793,"57117":466,"57118":12456,"57119":478,"57120":9384,"57121":11035,"57122":1055,"57123":12360,"57124":11693,"57125":994,"57126":12057,"57127":3364,"57128":13969,"57129":9332,"57130":3299,"57131":2228,"57132":6230,"57133":3653,"57134":12145,"57135":1558,"57136":42,"57137":11740,"57138":3639,"57139":10630,"57140":12166,"57141":10868,"57142":3245,"57143":2401,"57144":12329,"57145":944,"57146":5913,"57147":5867,"57148":10293,"57149":1932,"57150":14955,"57151":7297,"57152":6755,"57153":1779,"57154":7455,"57155":5622,"57156":4000,"57157":7529,"57158":3443,"57159":6177,"57160":1444,"57161":6370,"57162":1280,"57163":4411,"57164":7326,"57165":5880,"57166":12173,"57167":12174,"57168":10764,"57169":12837,"57170":9783,"57171":3351,"57172":7995,"57173":2859,"57174":2882,"57175":11658,"57176":232,"57177":7567,"57178":14111,"57179":15110,"57180":10024,"57181":2249,"57182":9277,"57183":13045,"57184":4182,"57185":3107,"57186":1228,"57187":6728,"57188":12894,"57189":9112,"57190":8154,"57191":2827,"57192":5964,"57193":7993,"57194":8259,"57195":6817,"57196":12462,"57197":11155,"57198":116,"57199":7694,"57200":2661,"57201":14830,"57202":14778,"57203":7884,"57204":12764,"57205":4700,"57206":13575,"57207":2827,"57208":10825,"57209":1652,"57210":9581,"57211":2963,"57212":11737,"57213":3875,"57214":4179,"57215":1735,"57216":6885,"57217":7514,"57218":7486,"57219":7786,"57220":7340,"57221":11353,"57222":1588,"57223":8747,"57224":9214,"57225":4265,"57226":1098,"57227":10796,"57228":1359,"57229":12748,"57230":14358,"57231":12002,"57232":1037,"57233":12655,"57234":11592,"57235":371,"57236":8732,"57237":2492,"57238":9029,"57239":214,"57240":11308,"57241":13864,"57242":14120,"57243":6799,"57244":11901,"57245":12628,"57246":14615,"57247":9653,"57248":14944,"57249":12865,"57250":1653,"57251":1859,"57252":8965,"57253":15008,"57254":2361,"57255":4490,"57256":3400,"57257":11584,"57258":2911,"57259":11690,"57260":4197,"57261":2839,"57262":9149,"57263":7416,"57264":9530,"57265":13007,"57266":8325,"57267":15137,"57268":10408,"57269":4750,"57270":14563,"57271":2929,"57272":11547,"57273":1054,"57274":14454,"57275":13288,"57276":3441,"57277":6723,"57278":439,"57279":7623,"57280":7886,"57281":1916,"57282":2118,"57283":14687,"57284":4397,"57285":2130,"57286":4356,"57287":12339,"57288":1106,"57289":6343,"57290":6986,"57291":3608,"57292":2199,"57293":4293,"57294":7781,"57295":13072,"57296":14664,"57297":13757,"57298":7071,"57299":299,"57300":4496,"57301":10634,"57302":8878,"57303":2294,"57304":11924,"57305":1951,"57306":6421,"57307":10063,"57308":5234,"57309":7587,"57310":13123,"57311":4002,"57312":7652,"57313":12125,"57314":763,"57315":6970,"57316":3468,"57317":1462,"57318":14774,"57319":6587,"57320":898,"57321":4138,"57322":3953,"57323":13371,"57324":11232,"57325":14661,"57326":5904,"57327":457,"57328":14186,"57329":12460,"57330":4512,"57331":10377,"57332":9550,"57333":3382,"57334":3943,"57335":12758,"57336":6556,"57337":6585,"57338":1420,"57339":11983,"57340":3930,"57341":12111,"57342":2596,"57343":8734,"57344":14780,"57345":7675,"57346":8974,"57347":1618,"57348":2454,"57349":14590,"57350":15005,"57351":7964,"57352":4063,"57353":11164,"57354":6670,"57355":527,"57356":13916,"57357":13499,"57358":7278,"57359":6893,"57360":12208,"57361":9176,"57362":1923,"57363":2291,"57364":10806,"57365":2015,"57366":14033,"57367":12568,"57368":11006,"57369":3177,"57370":12581,"57371":20,"57372":3845,"57373":10319,"57374":13219,"57375":12071,"57376":5566,"57377":10090,"57378":8077,"57379":9305,"57380":11169,"57381":12077,"57382":12969,"57383":3817,"57384":14593,"57385":9033,"57386":11031,"57387":6096,"57388":12462,"57389":1165,"57390":12071,"57391":13259,"57392":13686,"57393":7230,"57394":2621,"57395":7424,"57396":3857,"57397":5283,"57398":2706,"57399":2933,"57400":5692,"57401":9575,"57402":12376,"57403":5897,"57404":7630,"57405":4137,"57406":6982,"57407":437,"57408":8107,"57409":12365,"57410":11740,"57411":12329,"57412":6271,"57413":14243,"57414":12774,"57415":3465,"57416":9173,"57417":2886,"57418":10157,"57419":579,"57420":6920,"57421":2078,"57422":10589,"57423":2895,"57424":11501,"57425":6232,"57426":542,"57427":2863,"57428":12485,"57429":13195,"57430":7740,"57431":6462,"57432":12732,"57433":325,"57434":5385,"57435":9073,"57436":8337,"57437":1720,"57438":3301,"57439":4745,"57440":3408,"57441":1752,"57442":13453,"57443":8442,"57444":7401,"57445":3002,"57446":7095,"57447":485,"57448":8057,"57449":1583,"57450":14825,"57451":7494,"57452":2795,"57453":3845,"57454":13130,"57455":10296,"57456":7997,"57457":3957,"57458":1662,"57459":14580,"57460":4644,"57461":13770,"57462":12598,"57463":413,"57464":10675,"57465":7728,"57466":3234,"57467":12554,"57468":9130,"57469":8308,"57470":3524,"57471":4183,"57472":2080,"57473":10307,"57474":6547,"57475":9556,"57476":1481,"57477":9461,"57478":8032,"57479":9994,"57480":4750,"57481":9042,"57482":12227,"57483":9587,"57484":12602,"57485":3171,"57486":5778,"57487":13768,"57488":13147,"57489":13018,"57490":2191,"57491":7242,"57492":11298,"57493":2948,"57494":9506,"57495":7927,"57496":10601,"57497":11707,"57498":415,"57499":6892,"57500":4278,"57501":2867,"57502":9099,"57503":15137,"57504":639,"57505":1718,"57506":5090,"57507":11211,"57508":4092,"57509":7707,"57510":9002,"57511":4219,"57512":1839,"57513":13576,"57514":10464,"57515":6079,"57516":12637,"57517":434,"57518":7983,"57519":106,"57520":5795,"57521":6505,"57522":13903,"57523":2395,"57524":8084,"57525":3356,"57526":3025,"57527":10997,"57528":477,"57529":1780,"57530":3803,"57531":11727,"57532":6791,"57533":3525,"57534":4872,"57535":2142,"57536":3295,"57537":13769,"57538":7987,"57539":9432,"57540":925,"57541":10777,"57542":9049,"57543":14599,"57544":3283,"57545":12492,"57546":12092,"57547":6300,"57548":5646,"57549":1778,"57550":5013,"57551":10529,"57552":13436,"57553":10266,"57554":6499,"57555":9859,"57556":1055,"57557":13298,"57558":3814,"57559":5114,"57560":10174,"57561":9227,"57562":14110,"57563":12302,"57564":7530,"57565":3430,"57566":7829,"57567":10651,"57568":10174,"57569":12598,"57570":11367,"57571":3339,"57572":6132,"57573":6388,"57574":3635,"57575":3293,"57576":6054,"57577":9784,"57578":12418,"57579":11387,"57580":8180,"57581":5102,"57582":7070,"57583":2436,"57584":750,"57585":3860,"57586":12582,"57587":9383,"57588":823,"57589":6106,"57590":1858,"57591":3143,"57592":12784,"57593":294,"57594":3270,"57595":11708,"57596":13079,"57597":7652,"57598":428,"57599":5648,"57600":482,"57601":13613,"57602":11197,"57603":2028,"57604":11410,"57605":11120,"57606":803,"57607":13749,"57608":6245,"57609":795,"57610":1870,"57611":10243,"57612":7019,"57613":8941,"57614":12431,"57615":7451,"57616":5113,"57617":8522,"57618":2036,"57619":2814,"57620":7475,"57621":11904,"57622":12974,"57623":6139,"57624":4832,"57625":14222,"57626":6580,"57627":2429,"57628":1964,"57629":2551,"57630":2132,"57631":1786,"57632":6454,"57633":7417,"57634":571,"57635":9984,"57636":9251,"57637":233,"57638":14655,"57639":6910,"57640":7000,"57641":2736,"57642":1505,"57643":6351,"57644":12876,"57645":4087,"57646":3169,"57647":10680,"57648":828,"57649":9588,"57650":9173,"57651":5158,"57652":14320,"57653":13416,"57654":10177,"57655":9053,"57656":6543,"57657":10104,"57658":5305,"57659":7394,"57660":3350,"57661":7083,"57662":13559,"57663":5188,"57664":14777,"57665":10232,"57666":1861,"57667":14859,"57668":12160,"57669":11750,"57670":1623,"57671":4751,"57672":5464,"57673":3190,"57674":3396,"57675":10433,"57676":14729,"57677":4980,"57678":9378,"57679":12990,"57680":2600,"57681":6533,"57682":2717,"57683":7428,"57684":7063,"57685":9061,"57686":11202,"57687":3132,"57688":10846,"57689":5878,"57690":4377,"57691":2508,"57692":10874,"57693":4452,"57694":7434,"57695":4596,"57696":250,"57697":67,"57698":13351,"57699":5181,"57700":12150,"57701":2236,"57702":14890,"57703":13018,"57704":11165,"57705":5845,"57706":12008,"57707":2098,"57708":6710,"57709":7707,"57710":12100,"57711":5956,"57712":9167,"57713":2470,"57714":13987,"57715":7151,"57716":981,"57717":9947,"57718":7273,"57719":1493,"57720":5624,"57721":14496,"57722":12165,"57723":1370,"57724":14248,"57725":7149,"57726":4976,"57727":12202,"57728":5971,"57729":10568,"57730":7538,"57731":13598,"57732":9692,"57733":1111,"57734":8026,"57735":9182,"57736":11214,"57737":2214,"57738":4572,"57739":11494,"57740":11243,"57741":5075,"57742":11895,"57743":5174,"57744":6920,"57745":8485,"57746":10618,"57747":6945,"57748":14882,"57749":4717,"57750":6881,"57751":7825,"57752":12837,"57753":12395,"57754":2167,"57755":9253,"57756":3105,"57757":10187,"57758":4598,"57759":15011,"57760":14683,"57761":8060,"57762":3595,"57763":733,"57764":4544,"57765":9786,"57766":4522,"57767":3192,"57768":11995,"57769":9601,"57770":9449,"57771":7159,"57772":13920,"57773":4496,"57774":3680,"57775":1212,"57776":14333,"57777":1998,"57778":7743,"57779":6947,"57780":12358,"57781":5440,"57782":14570,"57783":1181,"57784":9956,"57785":3064,"57786":11709,"57787":10616,"57788":11188,"57789":4162,"57790":257,"57791":10575,"57792":283,"57793":3660,"57794":9515,"57795":7145,"57796":2113,"57797":4040,"57798":9126,"57799":10157,"57800":13189,"57801":14080,"57802":14351,"57803":3065,"57804":6712,"57805":2980,"57806":2865,"57807":7340,"57808":2505,"57809":7261,"57810":3336,"57811":13157,"57812":6248,"57813":1024,"57814":3114,"57815":3776,"57816":8806,"57817":2515,"57818":8874,"57819":1475,"57820":7257,"57821":6127,"57822":14934,"57823":11939,"57824":86,"57825":9130,"57826":7417,"57827":2624,"57828":10976,"57829":11490,"57830":8082,"57831":14177,"57832":1477,"57833":10051,"57834":14165,"57835":1824,"57836":11091,"57837":2038,"57838":6219,"57839":351,"57840":7073,"57841":8916,"57842":7333,"57843":1395,"57844":6384,"57845":14974,"57846":1987,"57847":5509,"57848":13749,"57849":8164,"57850":14437,"57851":8567,"57852":5042,"57853":6633,"57854":873,"57855":5170,"57856":6746,"57857":12956,"57858":9519,"57859":1561,"57860":13170,"57861":13378,"57862":5093,"57863":8101,"57864":5499,"57865":1954,"57866":12438,"57867":8439,"57868":1086,"57869":1010,"57870":1173,"57871":7468,"57872":2948,"57873":9346,"57874":10725,"57875":10648,"57876":4743,"57877":11571,"57878":10240,"57879":14128,"57880":62,"57881":8920,"57882":3134,"57883":11317,"57884":10760,"57885":9117,"57886":6351,"57887":7744,"57888":1169,"57889":8347,"57890":211,"57891":7852,"57892":2347,"57893":14605,"57894":416,"57895":15054,"57896":13030,"57897":9892,"57898":6542,"57899":14306,"57900":3649,"57901":6254,"57902":126,"57903":11206,"57904":12639,"57905":3847,"57906":3456,"57907":4711,"57908":11817,"57909":6418,"57910":8412,"57911":1025,"57912":10111,"57913":1251,"57914":8586,"57915":14810,"57916":14616,"57917":3991,"57918":10306,"57919":3576,"57920":14770,"57921":11741,"57922":6438,"57923":3375,"57924":1003,"57925":7097,"57926":12043,"57927":8265,"57928":12592,"57929":14817,"57930":8468,"57931":15014,"57932":11584,"57933":5066,"57934":2239,"57935":12915,"57936":2571,"57937":3370,"57938":3582,"57939":13238,"57940":11698,"57941":10742,"57942":13319,"57943":10271,"57944":14433,"57945":8932,"57946":7095,"57947":1003,"57948":4997,"57949":7743,"57950":7575,"57951":8968,"57952":9341,"57953":2098,"57954":5387,"57955":4735,"57956":5979,"57957":11798,"57958":783,"57959":13886,"57960":2117,"57961":12748,"57962":12705,"57963":14399,"57964":629,"57965":4163,"57966":7464,"57967":1839,"57968":6523,"57969":3237,"57970":7493,"57971":12630,"57972":11556,"57973":14530,"57974":297,"57975":6710,"57976":4306,"57977":14644,"57978":7837,"57979":11411,"57980":369,"57981":336,"57982":9769,"57983":10474,"57984":14809,"57985":4514,"57986":12053,"57987":9627,"57988":2877,"57989":2097,"57990":8715,"57991":8727,"57992":13181,"57993":12781,"57994":11563,"57995":932,"57996":63,"57997":9854,"57998":118,"57999":6689,"58000":11343,"58001":8284,"58002":45,"58003":2914,"58004":5034,"58005":11335,"58006":3503,"58007":10234,"58008":672,"58009":9920,"58010":8383,"58011":2484,"58012":8872,"58013":8146,"58014":5023,"58015":4987,"58016":2164,"58017":12581,"58018":9683,"58019":7957,"58020":10128,"58021":12427,"58022":12101,"58023":13681,"58024":8191,"58025":10498,"58026":12465,"58027":1908,"58028":10857,"58029":835,"58030":12380,"58031":9074,"58032":1052,"58033":7685,"58034":8122,"58035":9382,"58036":1584,"58037":113,"58038":10659,"58039":8508,"58040":12591,"58041":9235,"58042":13078,"58043":6167,"58044":3789,"58045":7982,"58046":6228,"58047":2590,"58048":4847,"58049":8769,"58050":1124,"58051":10129,"58052":3923,"58053":9013,"58054":4386,"58055":9327,"58056":13891,"58057":2541,"58058":13629,"58059":10209,"58060":12999,"58061":1865,"58062":5229,"58063":14474,"58064":6903,"58065":9494,"58066":3946,"58067":14500,"58068":14313,"58069":8414,"58070":9416,"58071":5152,"58072":4521,"58073":121,"58074":8280,"58075":3237,"58076":7964,"58077":5540,"58078":3918,"58079":13241,"58080":5802,"58081":14804,"58082":2184,"58083":2420,"58084":9405,"58085":13147,"58086":9632,"58087":12592,"58088":12282,"58089":8958,"58090":10456,"58091":2407,"58092":2508,"58093":10798,"58094":7610,"58095":1642,"58096":5653,"58097":9233,"58098":2698,"58099":2918,"58100":8959,"58101":8731,"58102":8727,"58103":12310,"58104":9014,"58105":9638,"58106":11715,"58107":10941,"58108":11572,"58109":7718,"58110":10297,"58111":4224,"58112":1424,"58113":7407,"58114":8343,"58115":11225,"58116":4145,"58117":8809,"58118":12937,"58119":3238,"58120":3748,"58121":9766,"58122":544,"58123":11660,"58124":11051,"58125":13519,"58126":4037,"58127":14025,"58128":6773,"58129":14053,"58130":14928,"58131":448,"58132":8136,"58133":11231,"58134":5268,"58135":10954,"58136":7564,"58137":9089,"58138":548,"58139":11516,"58140":862,"58141":281,"58142":14788,"58143":3521,"58144":4569,"58145":10111,"58146":6217,"58147":14792,"58148":14315,"58149":8951,"58150":13936,"58151":6943,"58152":2727,"58153":2532,"58154":14422,"58155":9959,"58156":2560,"58157":2354,"58158":1373,"58159":13849,"58160":5422,"58161":3978,"58162":12650,"58163":10913,"58164":13679,"58165":6710,"58166":12516,"58167":7511,"58168":2316,"58169":2965,"58170":10880,"58171":247,"58172":7942,"58173":1355,"58174":9078,"58175":6672,"58176":2382,"58177":2478,"58178":13568,"58179":8707,"58180":5804,"58181":13610,"58182":6866,"58183":12932,"58184":3803,"58185":12095,"58186":626,"58187":4579,"58188":3883,"58189":3702,"58190":8212,"58191":2343,"58192":799,"58193":5812,"58194":924,"58195":7937,"58196":5964,"58197":14294,"58198":8703,"58199":10965,"58200":12781,"58201":12526,"58202":10164,"58203":10217,"58204":14083,"58205":7441,"58206":572,"58207":6256,"58208":4833,"58209":10944,"58210":3014,"58211":13839,"58212":1484,"58213":207,"58214":6870,"58215":11958,"58216":13628,"58217":12612,"58218":3713,"58219":1423,"58220":9074,"58221":10445,"58222":2231,"58223":9360,"58224":13228,"58225":4381,"58226":6908,"58227":4977,"58228":5789,"58229":63,"58230":14266,"58231":8742,"58232":10333,"58233":8018,"58234":7302,"58235":5521,"58236":4998,"58237":3320,"58238":6106,"58239":4843,"58240":1646,"58241":8701,"58242":6728,"58243":7633,"58244":1842,"58245":8545,"58246":6238,"58247":12887,"58248":13399,"58249":3125,"58250":4241,"58251":13377,"58252":4473,"58253":4087,"58254":9859,"58255":3523,"58256":2374,"58257":3348,"58258":4151,"58259":7347,"58260":3987,"58261":14175,"58262":3879,"58263":7643,"58264":13259,"58265":8544,"58266":14524,"58267":2539,"58268":13480,"58269":6016,"58270":7752,"58271":2885,"58272":2207,"58273":14923,"58274":13426,"58275":3714,"58276":1185,"58277":1373,"58278":11415,"58279":1440,"58280":3799,"58281":14418,"58282":282,"58283":12770,"58284":1555,"58285":819,"58286":7746,"58287":13317,"58288":14862,"58289":13057,"58290":10094,"58291":14616,"58292":6072,"58293":7343,"58294":11846,"58295":8248,"58296":14646,"58297":1507,"58298":11849,"58299":10488,"58300":6213,"58301":1071,"58302":5205,"58303":13923,"58304":9725,"58305":12452,"58306":14631,"58307":11369,"58308":11896,"58309":14179,"58310":7330,"58311":15074,"58312":6833,"58313":12990,"58314":5672,"58315":5357,"58316":12923,"58317":10375,"58318":12836,"58319":11047,"58320":12598,"58321":10912,"58322":11404,"58323":6899,"58324":1697,"58325":643,"58326":8390,"58327":1721,"58328":9751,"58329":6148,"58330":9551,"58331":14688,"58332":8966,"58333":8493,"58334":1053,"58335":5781,"58336":8856,"58337":6595,"58338":8253,"58339":11114,"58340":7067,"58341":7456,"58342":3625,"58343":14608,"58344":14688,"58345":12640,"58346":1615,"58347":14949,"58348":3855,"58349":11602,"58350":871,"58351":3443,"58352":11781,"58353":14117,"58354":4230,"58355":6430,"58356":1411,"58357":12102,"58358":4610,"58359":8483,"58360":6907,"58361":13005,"58362":4231,"58363":12840,"58364":9546,"58365":4451,"58366":6891,"58367":1063,"58368":12861,"58369":14155,"58370":5689,"58371":8122,"58372":12957,"58373":3302,"58374":4417,"58375":13411,"58376":5346,"58377":4757,"58378":5094,"58379":4789,"58380":8847,"58381":14495,"58382":13204,"58383":12009,"58384":3693,"58385":7648,"58386":6350,"58387":11217,"58388":4641,"58389":4523,"58390":889,"58391":5049,"58392":12406,"58393":8115,"58394":5237,"58395":8238,"58396":993,"58397":6214,"58398":13671,"58399":8359,"58400":9807,"58401":11638,"58402":8168,"58403":8780,"58404":9476,"58405":2075,"58406":3751,"58407":13721,"58408":5645,"58409":3590,"58410":7701,"58411":2668,"58412":1107,"58413":7737,"58414":13439,"58415":10759,"58416":6128,"58417":10797,"58418":10814,"58419":10660,"58420":7815,"58421":2147,"58422":6794,"58423":11149,"58424":1960,"58425":3475,"58426":11893,"58427":12172,"58428":8615,"58429":6638,"58430":2998,"58431":9309,"58432":10042,"58433":14936,"58434":2530,"58435":8624,"58436":8227,"58437":1908,"58438":12887,"58439":5743,"58440":10418,"58441":7248,"58442":7089,"58443":15025,"58444":8119,"58445":15122,"58446":2225,"58447":55,"58448":7859,"58449":7791,"58450":5558,"58451":3915,"58452":11660,"58453":838,"58454":788,"58455":7097,"58456":10584,"58457":10171,"58458":8147,"58459":1874,"58460":5009,"58461":6442,"58462":13456,"58463":13174,"58464":13950,"58465":12577,"58466":6587,"58467":5538,"58468":14870,"58469":6347,"58470":13682,"58471":1816,"58472":12352,"58473":644,"58474":2934,"58475":13744,"58476":7884,"58477":11378,"58478":8474,"58479":12786,"58480":13519,"58481":302,"58482":13750,"58483":12403,"58484":8295,"58485":14839,"58486":4751,"58487":2780,"58488":8924,"58489":7502,"58490":14218,"58491":3284,"58492":2178,"58493":9915,"58494":2740,"58495":3855,"58496":2326,"58497":4800,"58498":2377,"58499":4926,"58500":1197,"58501":6524,"58502":11617,"58503":2537,"58504":1113,"58505":682,"58506":9274,"58507":1498,"58508":756,"58509":4299,"58510":11058,"58511":3220,"58512":8132,"58513":2983,"58514":10671,"58515":14295,"58516":3970,"58517":5136,"58518":3618,"58519":12463,"58520":14799,"58521":5803,"58522":13575,"58523":859,"58524":1879,"58525":10196,"58526":4419,"58527":906,"58528":13362,"58529":583,"58530":854,"58531":5481,"58532":10164,"58533":15064,"58534":13217,"58535":4464,"58536":2943,"58537":13947,"58538":4777,"58539":11159,"58540":14110,"58541":6955,"58542":11347,"58543":11345,"58544":10063,"58545":9518,"58546":13857,"58547":13384,"58548":11097,"58549":117,"58550":4999,"58551":13339,"58552":13326,"58553":2995,"58554":4988,"58555":6586,"58556":9028,"58557":7183,"58558":4253,"58559":13626,"58560":7381,"58561":14507,"58562":13910,"58563":7167,"58564":12138,"58565":14948,"58566":13559,"58567":8704,"58568":372,"58569":78,"58570":14046,"58571":12185,"58572":520,"58573":13279,"58574":4912,"58575":4177,"58576":2437,"58577":9362,"58578":4000,"58579":11312,"58580":12284,"58581":10895,"58582":5254,"58583":11634,"58584":7670,"58585":13360,"58586":6836,"58587":5913,"58588":13762,"58589":6567,"58590":6153,"58591":7419,"58592":3558,"58593":1480,"58594":3119,"58595":9471,"58596":6682,"58597":564,"58598":2636,"58599":3643,"58600":2703,"58601":7450,"58602":8930,"58603":4286,"58604":978,"58605":12587,"58606":8571,"58607":3921,"58608":8890,"58609":3366,"58610":9884,"58611":6863,"58612":696,"58613":2783,"58614":6017,"58615":1830,"58616":5144,"58617":12725,"58618":5359,"58619":2852,"58620":8015,"58621":1899,"58622":14019,"58623":12814,"58624":6849,"58625":10647,"58626":5125,"58627":4554,"58628":2975,"58629":13277,"58630":10794,"58631":7122,"58632":6073,"58633":2416,"58634":12073,"58635":14018,"58636":10190,"58637":9281,"58638":2592,"58639":1783,"58640":9926,"58641":7223,"58642":2654,"58643":1959,"58644":10871,"58645":5498,"58646":3176,"58647":7112,"58648":7948,"58649":4386,"58650":7348,"58651":4705,"58652":14423,"58653":10731,"58654":8193,"58655":3036,"58656":14967,"58657":573,"58658":3660,"58659":4318,"58660":9911,"58661":12602,"58662":771,"58663":2941,"58664":4864,"58665":3462,"58666":6448,"58667":13178,"58668":10721,"58669":9994,"58670":14270,"58671":5004,"58672":4005,"58673":11913,"58674":14882,"58675":8096,"58676":10020,"58677":5198,"58678":4389,"58679":14463,"58680":7854,"58681":4102,"58682":1340,"58683":15008,"58684":10575,"58685":6369,"58686":14454,"58687":368,"58688":12833,"58689":8912,"58690":13717,"58691":8615,"58692":12066,"58693":11927,"58694":3065,"58695":8885,"58696":6636,"58697":10213,"58698":10830,"58699":8494,"58700":13902,"58701":3897,"58702":14715,"58703":8359,"58704":8487,"58705":2396,"58706":12477,"58707":13545,"58708":13375,"58709":5050,"58710":11034,"58711":2356,"58712":96,"58713":4197,"58714":8883,"58715":15137,"58716":7822,"58717":3130,"58718":11392,"58719":12172,"58720":10363,"58721":2845,"58722":6641,"58723":6918,"58724":11517,"58725":2065,"58726":5313,"58727":7544,"58728":8438,"58729":4078,"58730":10164,"58731":4907,"58732":4637,"58733":9879,"58734":2287,"58735":9016,"58736":11346,"58737":11345,"58738":9066,"58739":8023,"58740":13422,"58741":9439,"58742":326,"58743":14331,"58744":12158,"58745":6974,"58746":14736,"58747":8947,"58748":7319,"58749":1328,"58750":10690,"58751":14278,"58752":906,"58753":4646,"58754":11597,"58755":12182,"58756":2800,"58757":1514,"58758":2596,"58759":6249,"58760":10032,"58761":5288,"58762":3041,"58763":2764,"58764":10445,"58765":3951,"58766":14767,"58767":10579,"58768":3209,"58769":10371,"58770":8227,"58771":8247,"58772":3905,"58773":13573,"58774":102,"58775":12109,"58776":4628,"58777":6351,"58778":2285,"58779":10426,"58780":970,"58781":11370,"58782":12966,"58783":8231,"58784":13805,"58785":8295,"58786":8639,"58787":5474,"58788":2477,"58789":2802,"58790":8848,"58791":6253,"58792":10925,"58793":10361,"58794":6083,"58795":12028,"58796":10900,"58797":8082,"58798":8899,"58799":5044,"58800":6787,"58801":10078,"58802":5148,"58803":14495,"58804":14010,"58805":5500,"58806":11283,"58807":8696,"58808":4670,"58809":14402,"58810":11547,"58811":3963,"58812":3949,"58813":8752,"58814":6223,"58815":3072,"58816":4390,"58817":11010,"58818":3228,"58819":118,"58820":9287,"58821":2263,"58822":1971,"58823":9210,"58824":3515,"58825":6271,"58826":5760,"58827":2458,"58828":3628,"58829":9449,"58830":14042,"58831":8556,"58832":10075,"58833":2588,"58834":9125,"58835":12377,"58836":8344,"58837":2036,"58838":9554,"58839":11349,"58840":6282,"58841":5490,"58842":5418,"58843":13883,"58844":11839,"58845":4868,"58846":7513,"58847":6367,"58848":10259,"58849":5815,"58850":3657,"58851":3637,"58852":11772,"58853":12294,"58854":10450,"58855":10085,"58856":11429,"58857":6445,"58858":8912,"58859":14243,"58860":14688,"58861":14268,"58862":7850,"58863":8860,"58864":14899,"58865":12718,"58866":866,"58867":4797,"58868":10327,"58869":13750,"58870":11389,"58871":9551,"58872":11396,"58873":70,"58874":8672,"58875":8575,"58876":7410,"58877":2526,"58878":8368,"58879":7614,"58880":14673,"58881":10909,"58882":8536,"58883":3648,"58884":2785,"58885":6455,"58886":11888,"58887":13884,"58888":7128,"58889":3826,"58890":6432,"58891":2295,"58892":5125,"58893":19,"58894":5427,"58895":2659,"58896":13821,"58897":767,"58898":12556,"58899":2742,"58900":3129,"58901":4350,"58902":2551,"58903":10168,"58904":2833,"58905":3517,"58906":13810,"58907":627,"58908":7230,"58909":9976,"58910":13748,"58911":8242,"58912":9436,"58913":11213,"58914":9879,"58915":6796,"58916":4875,"58917":13784,"58918":5252,"58919":15110,"58920":11714,"58921":6874,"58922":8432,"58923":14808,"58924":6509,"58925":10182,"58926":14010,"58927":8683,"58928":14271,"58929":2709,"58930":3856,"58931":10880,"58932":4692,"58933":11403,"58934":4247,"58935":5387,"58936":8260,"58937":13055,"58938":3227,"58939":8703,"58940":5906,"58941":12770,"58942":8891,"58943":6549,"58944":3000,"58945":3789,"58946":6189,"58947":14211,"58948":2471,"58949":10889,"58950":9734,"58951":9788,"58952":13709,"58953":1029,"58954":10710,"58955":9360,"58956":14731,"58957":10874,"58958":13181,"58959":2325,"58960":8383,"58961":8164,"58962":10280,"58963":3679,"58964":4598,"58965":399,"58966":5057,"58967":5151,"58968":5542,"58969":8967,"58970":10815,"58971":2673,"58972":8048,"58973":177,"58974":10749,"58975":13053,"58976":4018,"58977":3841,"58978":8896,"58979":2082,"58980":8817,"58981":7804,"58982":4501,"58983":5266,"58984":5884,"58985":5359,"58986":15032,"58987":12713,"58988":1314,"58989":6615,"58990":6074,"58991":1252,"58992":4971,"58993":426,"58994":14630,"58995":7972,"58996":2399,"58997":452,"58998":9469,"58999":630,"59000":8044,"59001":13765,"59002":13391,"59003":9180,"59004":1684,"59005":11595,"59006":11771,"59007":11324,"59008":12860,"59009":9357,"59010":13944,"59011":11691,"59012":7418,"59013":12568,"59014":6698,"59015":7501,"59016":4495,"59017":13860,"59018":5232,"59019":8002,"59020":1937,"59021":14928,"59022":14858,"59023":4262,"59024":7733,"59025":4136,"59026":9349,"59027":3496,"59028":14558,"59029":5497,"59030":7618,"59031":7016,"59032":7282,"59033":5266,"59034":4100,"59035":13227,"59036":11573,"59037":14792,"59038":14384,"59039":6819,"59040":8276,"59041":9503,"59042":7379,"59043":9639,"59044":2921,"59045":5299,"59046":12592,"59047":549,"59048":2760,"59049":460,"59050":8786,"59051":1922,"59052":1054,"59053":1356,"59054":2998,"59055":9374,"59056":10373,"59057":6181,"59058":11376,"59059":12714,"59060":1385,"59061":9376,"59062":13840,"59063":4556,"59064":10476,"59065":4992,"59066":10564,"59067":3696,"59068":3552,"59069":10812,"59070":9114,"59071":6482,"59072":855,"59073":8195,"59074":12793,"59075":11980,"59076":3530,"59077":6845,"59078":10135,"59079":12126,"59080":3794,"59081":13691,"59082":9089,"59083":315,"59084":10806,"59085":8181,"59086":11896,"59087":5069,"59088":13939,"59089":13931,"59090":97,"59091":1054,"59092":11715,"59093":1543,"59094":1661,"59095":10952,"59096":6775,"59097":13349,"59098":4162,"59099":1471,"59100":8053,"59101":4256,"59102":9383,"59103":11422,"59104":11381,"59105":12048,"59106":446,"59107":11365,"59108":11981,"59109":2954,"59110":10156,"59111":5017,"59112":2452,"59113":12470,"59114":14142,"59115":10214,"59116":8605,"59117":13572,"59118":12393,"59119":8317,"59120":4392,"59121":9239,"59122":11113,"59123":3997,"59124":4455,"59125":5749,"59126":4726,"59127":2605,"59128":11327,"59129":4063,"59130":6768,"59131":10289,"59132":2215,"59133":10519,"59134":1890,"59135":14086,"59136":9198,"59137":14170,"59138":2240,"59139":14265,"59140":15046,"59141":7866,"59142":6232,"59143":9052,"59144":13128,"59145":3932,"59146":1961,"59147":3464,"59148":6050,"59149":8493,"59150":3900,"59151":345,"59152":11106,"59153":5461,"59154":1706,"59155":5464,"59156":6979,"59157":2876,"59158":14111,"59159":7840,"59160":2602,"59161":7317,"59162":4297,"59163":1646,"59164":7652,"59165":10799,"59166":2734,"59167":1531,"59168":2576,"59169":8513,"59170":11486,"59171":11148,"59172":4665,"59173":10260,"59174":6190,"59175":9733,"59176":5141,"59177":10578,"59178":13961,"59179":4772,"59180":6890,"59181":6969,"59182":11977,"59183":10546,"59184":11065,"59185":8855,"59186":7989,"59187":8466,"59188":7467,"59189":4549,"59190":31,"59191":691,"59192":4120,"59193":8777,"59194":1628,"59195":2055,"59196":11868,"59197":3144,"59198":10533,"59199":10919,"59200":11935,"59201":9783,"59202":12912,"59203":3512,"59204":3277,"59205":11833,"59206":3860,"59207":14552,"59208":6217,"59209":3648,"59210":3108,"59211":12450,"59212":8938,"59213":1177,"59214":9422,"59215":9965,"59216":4037,"59217":1411,"59218":6133,"59219":1518,"59220":10362,"59221":9954,"59222":14940,"59223":13987,"59224":1426,"59225":6394,"59226":12510,"59227":3667,"59228":13340,"59229":7966,"59230":7839,"59231":1967,"59232":13343,"59233":8455,"59234":7249,"59235":3147,"59236":10332,"59237":11725,"59238":3860,"59239":8093,"59240":410,"59241":1093,"59242":9264,"59243":3996,"59244":8628,"59245":12327,"59246":7324,"59247":15128,"59248":11190,"59249":2286,"59250":1604,"59251":2939,"59252":5734,"59253":4558,"59254":2971,"59255":8104,"59256":3666,"59257":7164,"59258":6023,"59259":9976,"59260":8761,"59261":9920,"59262":8035,"59263":10670,"59264":13468,"59265":14514,"59266":9022,"59267":3336,"59268":12026,"59269":4858,"59270":930,"59271":1920,"59272":12555,"59273":10145,"59274":8256,"59275":1405,"59276":4800,"59277":4849,"59278":10703,"59279":13280,"59280":6255,"59281":8829,"59282":13163,"59283":3156,"59284":13281,"59285":12129,"59286":2795,"59287":781,"59288":11171,"59289":6457,"59290":4709,"59291":12458,"59292":224,"59293":11319,"59294":11596,"59295":11322,"59296":15104,"59297":1206,"59298":2659,"59299":10639,"59300":8639,"59301":4296,"59302":4768,"59303":3978,"59304":5142,"59305":5414,"59306":8359,"59307":4872,"59308":6908,"59309":705,"59310":13750,"59311":10188,"59312":12017,"59313":8329,"59314":5076,"59315":14473,"59316":8932,"59317":6397,"59318":1552,"59319":13883,"59320":12641,"59321":10475,"59322":1730,"59323":14103,"59324":13077,"59325":11114,"59326":7665,"59327":10399,"59328":7523,"59329":4098,"59330":10091,"59331":6769,"59332":12013,"59333":6849,"59334":4903,"59335":9228,"59336":10657,"59337":13691,"59338":5413,"59339":11194,"59340":12712,"59341":4606,"59342":10352,"59343":9861,"59344":7404,"59345":13485,"59346":11805,"59347":7127,"59348":5796,"59349":8394,"59350":6990,"59351":14315,"59352":2025,"59353":14229,"59354":1359,"59355":10886,"59356":11414,"59357":8293,"59358":6301,"59359":5135,"59360":754,"59361":1072,"59362":13766,"59363":6554,"59364":7574,"59365":11227,"59366":7397,"59367":11756,"59368":13303,"59369":5087,"59370":6786,"59371":6387,"59372":7672,"59373":3331,"59374":1386,"59375":2003,"59376":6682,"59377":9796,"59378":1674,"59379":8026,"59380":13899,"59381":2570,"59382":10226,"59383":9215,"59384":13610,"59385":10270,"59386":2881,"59387":4837,"59388":5041,"59389":13060,"59390":1757,"59391":855,"59392":11951,"59393":2220,"59394":11537,"59395":13542,"59396":10158,"59397":8371,"59398":8971,"59399":14240,"59400":7444,"59401":6783,"59402":3220,"59403":4007,"59404":4819,"59405":7483,"59406":8762,"59407":8290,"59408":1236,"59409":5053,"59410":12931,"59411":597,"59412":14324,"59413":10180,"59414":11019,"59415":15030,"59416":4067,"59417":11274,"59418":7043,"59419":1598,"59420":11417,"59421":11723,"59422":13927,"59423":468,"59424":4153,"59425":9342,"59426":1917,"59427":5327,"59428":3938,"59429":14792,"59430":7171,"59431":11302,"59432":1115,"59433":8959,"59434":3384,"59435":11578,"59436":12827,"59437":14712,"59438":12402,"59439":12372,"59440":15063,"59441":4026,"59442":13856,"59443":12207,"59444":12249,"59445":13137,"59446":7008,"59447":5901,"59448":4250,"59449":7279,"59450":13893,"59451":13375,"59452":969,"59453":8161,"59454":9242,"59455":11278,"59456":12715,"59457":7484,"59458":11076,"59459":8534,"59460":9763,"59461":10332,"59462":14860,"59463":3004,"59464":3437,"59465":15027,"59466":11438,"59467":8459,"59468":7801,"59469":12686,"59470":1028,"59471":313,"59472":8711,"59473":13496,"59474":8978,"59475":8830,"59476":772,"59477":488,"59478":1054,"59479":8459,"59480":2977,"59481":9906,"59482":10006,"59483":8750,"59484":2634,"59485":7557,"59486":2771,"59487":5520,"59488":2745,"59489":409,"59490":14614,"59491":8047,"59492":422,"59493":2645,"59494":6893,"59495":9798,"59496":8223,"59497":9781,"59498":8345,"59499":12789,"59500":13697,"59501":11229,"59502":10360,"59503":12155,"59504":8079,"59505":115,"59506":2691,"59507":5895,"59508":6560,"59509":3987,"59510":191,"59511":3102,"59512":6784,"59513":13171,"59514":13684,"59515":7074,"59516":13938,"59517":14157,"59518":12252,"59519":13949,"59520":7515,"59521":11884,"59522":7567,"59523":7840,"59524":12901,"59525":4079,"59526":11908,"59527":1774,"59528":1531,"59529":10620,"59530":4654,"59531":9554,"59532":9308,"59533":7521,"59534":2000,"59535":8421,"59536":1816,"59537":5269,"59538":6552,"59539":3102,"59540":8589,"59541":13595,"59542":6819,"59543":2279,"59544":1579,"59545":9438,"59546":2699,"59547":1532,"59548":590,"59549":8342,"59550":14377,"59551":6771,"59552":8319,"59553":8996,"59554":4861,"59555":3227,"59556":5072,"59557":8531,"59558":6400,"59559":8404,"59560":8839,"59561":10207,"59562":6823,"59563":4366,"59564":6686,"59565":14479,"59566":7500,"59567":19,"59568":2852,"59569":6269,"59570":1658,"59571":1276,"59572":1801,"59573":2977,"59574":12269,"59575":13704,"59576":3751,"59577":6114,"59578":867,"59579":5540,"59580":13140,"59581":7828,"59582":9289,"59583":2158,"59584":5060,"59585":9805,"59586":11548,"59587":918,"59588":9119,"59589":13671,"59590":10230,"59591":6813,"59592":6389,"59593":5486,"59594":436,"59595":12911,"59596":6168,"59597":14001,"59598":10936,"59599":11674,"59600":5282,"59601":551,"59602":6244,"59603":3316,"59604":1618,"59605":9040,"59606":12414,"59607":12199,"59608":7712,"59609":4662,"59610":12263,"59611":12647,"59612":6616,"59613":10472,"59614":14858,"59615":6594,"59616":13359,"59617":8582,"59618":13499,"59619":8332,"59620":3431,"59621":562,"59622":4799,"59623":11001,"59624":5195,"59625":12673,"59626":5253,"59627":4850,"59628":8801,"59629":2677,"59630":6906,"59631":4528,"59632":14925,"59633":1707,"59634":10779,"59635":5889,"59636":4479,"59637":4825,"59638":12089,"59639":2774,"59640":3377,"59641":13502,"59642":9637,"59643":9136,"59644":9218,"59645":798,"59646":13299,"59647":4155,"59648":12656,"59649":10875,"59650":7896,"59651":7017,"59652":9792,"59653":618,"59654":5758,"59655":4528,"59656":8993,"59657":9187,"59658":11714,"59659":13034,"59660":12749,"59661":2376,"59662":10431,"59663":6214,"59664":2914,"59665":11418,"59666":5074,"59667":2822,"59668":14498,"59669":11749,"59670":8238,"59671":7539,"59672":11531,"59673":14155,"59674":13549,"59675":9452,"59676":4306,"59677":5621,"59678":13385,"59679":1945,"59680":3686,"59681":6405,"59682":5289,"59683":11592,"59684":11518,"59685":3148,"59686":1668,"59687":14149,"59688":8780,"59689":14211,"59690":612,"59691":3035,"59692":6167,"59693":8206,"59694":5662,"59695":8926,"59696":3759,"59697":13736,"59698":14125,"59699":7836,"59700":8642,"59701":6014,"59702":3730,"59703":7802,"59704":5960,"59705":1135,"59706":73,"59707":2312,"59708":12502,"59709":9170,"59710":6630,"59711":14271,"59712":8669,"59713":11709,"59714":13055,"59715":8475,"59716":11413,"59717":5650,"59718":8172,"59719":6441,"59720":1854,"59721":11362,"59722":5069,"59723":11125,"59724":10178,"59725":6882,"59726":10040,"59727":11314,"59728":13415,"59729":2180,"59730":12424,"59731":13282,"59732":8810,"59733":3611,"59734":3678,"59735":1488,"59736":6301,"59737":5103,"59738":12431,"59739":2078,"59740":987,"59741":14491,"59742":9662,"59743":14642,"59744":7551,"59745":14090,"59746":12923,"59747":5379,"59748":6614,"59749":13438,"59750":14343,"59751":6589,"59752":2319,"59753":5372,"59754":13431,"59755":379,"59756":2580,"59757":2266,"59758":6147,"59759":5411,"59760":629,"59761":10873,"59762":12424,"59763":8428,"59764":6923,"59765":3059,"59766":13826,"59767":4038,"59768":11038,"59769":3105,"59770":9962,"59771":3279,"59772":9967,"59773":3672,"59774":3541,"59775":7359,"59776":10014,"59777":9439,"59778":10281,"59779":7648,"59780":8746,"59781":1878,"59782":7983,"59783":12146,"59784":9893,"59785":8523,"59786":13989,"59787":12724,"59788":12720,"59789":5972,"59790":8076,"59791":465,"59792":6354,"59793":11521,"59794":4994,"59795":14531,"59796":11923,"59797":9605,"59798":7060,"59799":10451,"59800":11582,"59801":4095,"59802":13626,"59803":8924,"59804":15003,"59805":10584,"59806":9804,"59807":9504,"59808":13965,"59809":1684,"59810":156,"59811":13243,"59812":7721,"59813":10854,"59814":12733,"59815":13303,"59816":7201,"59817":7112,"59818":13852,"59819":1185,"59820":8479,"59821":5447,"59822":11291,"59823":1964,"59824":11850,"59825":747,"59826":13980,"59827":8940,"59828":510,"59829":4089,"59830":2123,"59831":2776,"59832":3464,"59833":12531,"59834":7069,"59835":4323,"59836":1246,"59837":740,"59838":679,"59839":6474,"59840":13058,"59841":4632,"59842":1208,"59843":12839,"59844":13039,"59845":7343,"59846":646,"59847":5647,"59848":2926,"59849":1069,"59850":15105,"59851":8265,"59852":2831,"59853":2893,"59854":14332,"59855":7749,"59856":11085,"59857":1005,"59858":10369,"59859":14956,"59860":9868,"59861":3199,"59862":9696,"59863":4312,"59864":10213,"59865":6552,"59866":3750,"59867":8495,"59868":4907,"59869":11931,"59870":417,"59871":7687,"59872":10210,"59873":2869,"59874":3574,"59875":5533,"59876":348,"59877":9686,"59878":11148,"59879":11393,"59880":875,"59881":6581,"59882":13288,"59883":4847,"59884":2908,"59885":4508,"59886":3151,"59887":11817,"59888":2831,"59889":9334,"59890":7090,"59891":7189,"59892":6105,"59893":5254,"59894":4301,"59895":14759,"59896":2856,"59897":14713,"59898":5176,"59899":12265,"59900":10694,"59901":10621,"59902":6508,"59903":2243,"59904":9827,"59905":1700,"59906":11026,"59907":8132,"59908":1380,"59909":6775,"59910":13427,"59911":1067,"59912":5090,"59913":11883,"59914":8389,"59915":12128,"59916":3510,"59917":2759,"59918":5436,"59919":3509,"59920":2725,"59921":5260,"59922":11832,"59923":5828,"59924":1736,"59925":11661,"59926":12974,"59927":849,"59928":5787,"59929":3875,"59930":10656,"59931":10096,"59932":7400,"59933":8047,"59934":14733,"59935":4956,"59936":6959,"59937":725,"59938":4866,"59939":9708,"59940":7200,"59941":10758,"59942":2887,"59943":570,"59944":1227,"59945":8084,"59946":14566,"59947":14383,"59948":1052,"59949":3635,"59950":10353,"59951":8220,"59952":14085,"59953":949,"59954":13004,"59955":8447,"59956":5904,"59957":3417,"59958":10303,"59959":2640,"59960":3834,"59961":5868,"59962":4409,"59963":4244,"59964":13984,"59965":7876,"59966":3001,"59967":14728,"59968":1542,"59969":3351,"59970":5297,"59971":7996,"59972":11934,"59973":8017,"59974":3703,"59975":13250,"59976":603,"59977":2751,"59978":14878,"59979":10482,"59980":7187,"59981":4057,"59982":13692,"59983":9498,"59984":9540,"59985":6439,"59986":2157,"59987":14258,"59988":13726,"59989":7218,"59990":2223,"59991":9531,"59992":13142,"59993":3278,"59994":11658,"59995":3032,"59996":4427,"59997":12831,"59998":4870,"59999":5681,"60000":3284,"60001":14358,"60002":7287,"60003":4082,"60004":796,"60005":12613,"60006":8598,"60007":5552,"60008":4166,"60009":4826,"60010":5506,"60011":1338,"60012":2720,"60013":9484,"60014":11443,"60015":4357,"60016":1282,"60017":7308,"60018":5371,"60019":13569,"60020":13182,"60021":934,"60022":5632,"60023":11907,"60024":10426,"60025":2606,"60026":3346,"60027":9105,"60028":11334,"60029":1744,"60030":6863,"60031":4979,"60032":9939,"60033":14920,"60034":5358,"60035":10996,"60036":10989,"60037":11691,"60038":4754,"60039":12429,"60040":12601,"60041":11793,"60042":13871,"60043":7537,"60044":6044,"60045":2275,"60046":8120,"60047":5528,"60048":11204,"60049":12033,"60050":11975,"60051":6770,"60052":7907,"60053":5936,"60054":19,"60055":9069,"60056":1508,"60057":12587,"60058":748,"60059":12873,"60060":3200,"60061":6838,"60062":2555,"60063":11909,"60064":10499,"60065":7458,"60066":14826,"60067":6814,"60068":7339,"60069":13472,"60070":5571,"60071":8662,"60072":1216,"60073":7054,"60074":14302,"60075":3750,"60076":12676,"60077":790,"60078":8977,"60079":2322,"60080":5919,"60081":5099,"60082":11185,"60083":12530,"60084":10891,"60085":14653,"60086":12407,"60087":14101,"60088":7627,"60089":8464,"60090":12575,"60091":1259,"60092":13121,"60093":6546,"60094":4661,"60095":1094,"60096":6074,"60097":10474,"60098":12509,"60099":3567,"60100":7964,"60101":13342,"60102":2519,"60103":3491,"60104":13101,"60105":607,"60106":6622,"60107":4274,"60108":13186,"60109":11337,"60110":8056,"60111":14229,"60112":10258,"60113":9173,"60114":3484,"60115":8821,"60116":9375,"60117":7716,"60118":4520,"60119":2144,"60120":6674,"60121":10920,"60122":2962,"60123":5670,"60124":14177,"60125":2120,"60126":7525,"60127":6658,"60128":15060,"60129":10943,"60130":6528,"60131":756,"60132":5432,"60133":1761,"60134":12107,"60135":10771,"60136":3534,"60137":5946,"60138":4183,"60139":6390,"60140":14345,"60141":10144,"60142":8574,"60143":9469,"60144":11895,"60145":246,"60146":3719,"60147":6942,"60148":14685,"60149":962,"60150":3762,"60151":3423,"60152":10485,"60153":8328,"60154":12560,"60155":11342,"60156":2925,"60157":10042,"60158":14194,"60159":3769,"60160":4945,"60161":13012,"60162":5967,"60163":7302,"60164":6963,"60165":1769,"60166":4493,"60167":6111,"60168":12548,"60169":9800,"60170":14288,"60171":10593,"60172":11556,"60173":527,"60174":10758,"60175":13799,"60176":13042,"60177":5619,"60178":14499,"60179":9316,"60180":6449,"60181":3397,"60182":6331,"60183":10085,"60184":4657,"60185":10881,"60186":10919,"60187":12652,"60188":10388,"60189":194,"60190":2452,"60191":848,"60192":4189,"60193":12015,"60194":8185,"60195":289,"60196":8137,"60197":14769,"60198":14313,"60199":3562,"60200":7365,"60201":14008,"60202":3291,"60203":1250,"60204":3463,"60205":11591,"60206":4198,"60207":6957,"60208":11537,"60209":8096,"60210":11712,"60211":6348,"60212":4063,"60213":14445,"60214":7921,"60215":12826,"60216":105,"60217":8963,"60218":9749,"60219":9264,"60220":7883,"60221":7176,"60222":7204,"60223":14554,"60224":4363,"60225":14424,"60226":2007,"60227":6962,"60228":11269,"60229":2103,"60230":2441,"60231":615,"60232":5388,"60233":12732,"60234":13743,"60235":13677,"60236":10589,"60237":6642,"60238":450,"60239":7474,"60240":1954,"60241":3410,"60242":9944,"60243":7639,"60244":3164,"60245":7519,"60246":3987,"60247":1835,"60248":5695,"60249":4232,"60250":7401,"60251":1979,"60252":4507,"60253":10887,"60254":12225,"60255":12874,"60256":12830,"60257":12799,"60258":11733,"60259":11009,"60260":5750,"60261":11292,"60262":13026,"60263":7478,"60264":7076,"60265":5006,"60266":2622,"60267":11367,"60268":657,"60269":3370,"60270":3933,"60271":14218,"60272":4166,"60273":1816,"60274":3175,"60275":3983,"60276":13389,"60277":14913,"60278":5350,"60279":4760,"60280":4143,"60281":11800,"60282":2105,"60283":10575,"60284":9024,"60285":4209,"60286":7851,"60287":1482,"60288":9110,"60289":13331,"60290":11519,"60291":8619,"60292":8168,"60293":6099,"60294":7337,"60295":5716,"60296":10772,"60297":11155,"60298":8016,"60299":12792,"60300":2479,"60301":9556,"60302":838,"60303":9571,"60304":272,"60305":3732,"60306":9339,"60307":4586,"60308":9958,"60309":11262,"60310":8155,"60311":2324,"60312":8201,"60313":1020,"60314":7863,"60315":4657,"60316":7714,"60317":5922,"60318":14329,"60319":13047,"60320":13225,"60321":11650,"60322":9764,"60323":10003,"60324":14009,"60325":8525,"60326":2678,"60327":4244,"60328":9355,"60329":8113,"60330":7119,"60331":802,"60332":7106,"60333":3774,"60334":4387,"60335":7166,"60336":3326,"60337":10936,"60338":14468,"60339":7738,"60340":11423,"60341":11781,"60342":9373,"60343":314,"60344":13462,"60345":7698,"60346":1435,"60347":14634,"60348":7052,"60349":12796,"60350":2985,"60351":12803,"60352":9417,"60353":6203,"60354":12502,"60355":6200,"60356":15142,"60357":7721,"60358":15027,"60359":14204,"60360":5076,"60361":8340,"60362":1079,"60363":13001,"60364":8198,"60365":4289,"60366":14241,"60367":2049,"60368":14167,"60369":5017,"60370":3724,"60371":3827,"60372":6663,"60373":8327,"60374":3676,"60375":12409,"60376":12746,"60377":13373,"60378":2519,"60379":7809,"60380":12849,"60381":2072,"60382":940,"60383":10240,"60384":9047,"60385":1349,"60386":12409,"60387":12055,"60388":6880,"60389":3125,"60390":4482,"60391":8726,"60392":3466,"60393":4216,"60394":9368,"60395":14129,"60396":13687,"60397":14264,"60398":124,"60399":2294,"60400":4188,"60401":10555,"60402":2208,"60403":8492,"60404":2883,"60405":1610,"60406":8064,"60407":11632,"60408":2586,"60409":13332,"60410":6539,"60411":4383,"60412":13837,"60413":3428,"60414":3986,"60415":3657,"60416":13141,"60417":3751,"60418":5962,"60419":8060,"60420":2526,"60421":4148,"60422":13483,"60423":12197,"60424":13420,"60425":13645,"60426":10726,"60427":5383,"60428":4737,"60429":3360,"60430":8525,"60431":9953,"60432":11787,"60433":11356,"60434":7024,"60435":7821,"60436":13541,"60437":4934,"60438":9340,"60439":13296,"60440":2269,"60441":4509,"60442":11207,"60443":331,"60444":614,"60445":5749,"60446":8859,"60447":6183,"60448":5323,"60449":362,"60450":7411,"60451":1367,"60452":916,"60453":8477,"60454":7728,"60455":1016,"60456":14795,"60457":13519,"60458":6282,"60459":6636,"60460":10792,"60461":11067,"60462":9331,"60463":12625,"60464":13583,"60465":451,"60466":417,"60467":13944,"60468":8989,"60469":13969,"60470":13173,"60471":2989,"60472":2899,"60473":4964,"60474":13203,"60475":199,"60476":7761,"60477":553,"60478":7618,"60479":6094,"60480":3423,"60481":5211,"60482":13994,"60483":13340,"60484":4705,"60485":9645,"60486":9958,"60487":9679,"60488":1376,"60489":152,"60490":2406,"60491":7597,"60492":11754,"60493":6698,"60494":714,"60495":13688,"60496":14445,"60497":94,"60498":11574,"60499":12226,"60500":4704,"60501":8042,"60502":14165,"60503":8394,"60504":11633,"60505":5287,"60506":6114,"60507":3565,"60508":12610,"60509":3608,"60510":9253,"60511":2907,"60512":7177,"60513":12594,"60514":6521,"60515":7714,"60516":11722,"60517":5857,"60518":13562,"60519":2587,"60520":6528,"60521":6138,"60522":13202,"60523":14731,"60524":2283,"60525":11898,"60526":10479,"60527":2146,"60528":3401,"60529":14994,"60530":11375,"60531":14479,"60532":8551,"60533":14544,"60534":11066,"60535":7601,"60536":13917,"60537":564,"60538":1302,"60539":8854,"60540":5512,"60541":14653,"60542":14946,"60543":9296,"60544":5060,"60545":4159,"60546":4756,"60547":10597,"60548":5875,"60549":9768,"60550":11785,"60551":1617,"60552":4684,"60553":5131,"60554":10786,"60555":11426,"60556":1426,"60557":12501,"60558":6472,"60559":11048,"60560":1913,"60561":4108,"60562":9544,"60563":5121,"60564":14123,"60565":2147,"60566":5472,"60567":8015,"60568":5133,"60569":2339,"60570":795,"60571":8594,"60572":7783,"60573":13993,"60574":2003,"60575":10946,"60576":8835,"60577":8717,"60578":4481,"60579":5310,"60580":12727,"60581":7914,"60582":4131,"60583":12010,"60584":1631,"60585":1930,"60586":4567,"60587":4368,"60588":12520,"60589":1463,"60590":13472,"60591":14523,"60592":7596,"60593":3479,"60594":9301,"60595":3613,"60596":14271,"60597":8947,"60598":11971,"60599":3902,"60600":10577,"60601":1838,"60602":4803,"60603":3952,"60604":2772,"60605":5119,"60606":65,"60607":813,"60608":10598,"60609":1544,"60610":6679,"60611":6901,"60612":13644,"60613":3622,"60614":11088,"60615":3737,"60616":11976,"60617":5856,"60618":4070,"60619":13867,"60620":539,"60621":13240,"60622":4423,"60623":10515,"60624":9277,"60625":13868,"60626":3689,"60627":7188,"60628":10615,"60629":10946,"60630":12326,"60631":14639,"60632":1607,"60633":9673,"60634":567,"60635":5715,"60636":1490,"60637":12638,"60638":1372,"60639":5288,"60640":8423,"60641":7015,"60642":5950,"60643":9947,"60644":13377,"60645":5165,"60646":7828,"60647":7007,"60648":1771,"60649":13083,"60650":13839,"60651":1290,"60652":14669,"60653":10326,"60654":13947,"60655":12946,"60656":12466,"60657":14423,"60658":4103,"60659":12431,"60660":11949,"60661":7911,"60662":3479,"60663":9134,"60664":9393,"60665":5913,"60666":6212,"60667":8672,"60668":10198,"60669":7152,"60670":7875,"60671":6282,"60672":306,"60673":13226,"60674":10958,"60675":9991,"60676":1518,"60677":2735,"60678":13806,"60679":5304,"60680":2196,"60681":7803,"60682":12115,"60683":2639,"60684":8879,"60685":50,"60686":10314,"60687":1127,"60688":7098,"60689":2452,"60690":8528,"60691":901,"60692":9362,"60693":13674,"60694":10682,"60695":5412,"60696":2448,"60697":5678,"60698":1774,"60699":13086,"60700":12209,"60701":3642,"60702":1986,"60703":1535,"60704":11758,"60705":10441,"60706":5935,"60707":7581,"60708":11424,"60709":13733,"60710":2384,"60711":12606,"60712":6477,"60713":12808,"60714":5759,"60715":13450,"60716":13458,"60717":1238,"60718":6263,"60719":970,"60720":9209,"60721":885,"60722":4627,"60723":14683,"60724":10502,"60725":6456,"60726":4848,"60727":1842,"60728":3241,"60729":3518,"60730":11173,"60731":2813,"60732":9096,"60733":12236,"60734":1650,"60735":1394,"60736":2831,"60737":10195,"60738":14523,"60739":12356,"60740":1977,"60741":691,"60742":13356,"60743":11505,"60744":5540,"60745":106,"60746":10916,"60747":9694,"60748":3606,"60749":1489,"60750":6439,"60751":12358,"60752":5991,"60753":14338,"60754":8545,"60755":3204,"60756":6790,"60757":9349,"60758":1292,"60759":6762,"60760":9967,"60761":8848,"60762":9720,"60763":6576,"60764":822,"60765":10856,"60766":6353,"60767":14991,"60768":601,"60769":2666,"60770":793,"60771":6486,"60772":9133,"60773":6656,"60774":11477,"60775":5384,"60776":3119,"60777":11570,"60778":12543,"60779":6762,"60780":2328,"60781":3591,"60782":254,"60783":2556,"60784":14846,"60785":14353,"60786":3492,"60787":13009,"60788":4238,"60789":9891,"60790":4486,"60791":6799,"60792":2266,"60793":4489,"60794":13026,"60795":13834,"60796":1114,"60797":10693,"60798":4158,"60799":625,"60800":6101,"60801":1416,"60802":689,"60803":3492,"60804":5970,"60805":781,"60806":2476,"60807":1492,"60808":3339,"60809":5770,"60810":10823,"60811":8947,"60812":9978,"60813":13004,"60814":9518,"60815":7866,"60816":13417,"60817":6565,"60818":2873,"60819":7965,"60820":12010,"60821":5562,"60822":2896,"60823":4708,"60824":5219,"60825":13946,"60826":1048,"60827":3761,"60828":9762,"60829":12295,"60830":9418,"60831":4272,"60832":14523,"60833":14793,"60834":1382,"60835":10926,"60836":5851,"60837":3326,"60838":15121,"60839":10338,"60840":9656,"60841":13016,"60842":4483,"60843":13326,"60844":13638,"60845":944,"60846":11125,"60847":1445,"60848":11385,"60849":1239,"60850":404,"60851":6130,"60852":8308,"60853":12662,"60854":8306,"60855":1250,"60856":10213,"60857":11198,"60858":5414,"60859":15082,"60860":3210,"60861":7283,"60862":5922,"60863":10651,"60864":1297,"60865":12639,"60866":4934,"60867":808,"60868":5537,"60869":4078,"60870":13113,"60871":4603,"60872":4522,"60873":5264,"60874":4254,"60875":9858,"60876":5866,"60877":4509,"60878":1801,"60879":2699,"60880":1386,"60881":6484,"60882":12894,"60883":5393,"60884":8668,"60885":2834,"60886":6292,"60887":14755,"60888":5475,"60889":10823,"60890":1449,"60891":2448,"60892":1530,"60893":11246,"60894":3156,"60895":15089,"60896":13020,"60897":3241,"60898":6673,"60899":4156,"60900":4244,"60901":10287,"60902":13620,"60903":692},"individ":{"0":1,"1":2,"2":3,"3":4,"4":5,"5":6,"6":7,"7":8,"8":9,"9":10,"10":11,"11":12,"12":13,"13":14,"14":15,"15":16,"16":17,"17":18,"18":19,"19":20,"20":21,"21":22,"22":23,"23":24,"24":25,"25":26,"26":27,"27":28,"28":29,"29":30,"30":31,"31":32,"32":33,"33":34,"34":35,"35":36,"36":37,"37":38,"38":39,"39":40,"40":41,"41":42,"42":43,"43":44,"44":45,"45":46,"46":47,"47":48,"48":49,"49":50,"50":51,"51":52,"52":53,"53":54,"54":55,"55":56,"56":57,"57":58,"58":59,"59":60,"60":61,"61":62,"62":63,"63":64,"64":65,"65":66,"66":67,"67":68,"68":69,"69":70,"70":71,"71":72,"72":73,"73":74,"74":75,"75":76,"76":77,"77":78,"78":79,"79":80,"80":81,"81":82,"82":83,"83":84,"84":85,"85":86,"86":87,"87":88,"88":89,"89":90,"90":91,"91":92,"92":93,"93":94,"94":95,"95":96,"96":97,"97":98,"98":99,"99":100,"100":101,"101":102,"102":103,"103":104,"104":105,"105":106,"106":107,"107":108,"108":109,"109":110,"110":111,"111":112,"112":113,"113":114,"114":115,"115":116,"116":117,"117":118,"118":119,"119":120,"120":121,"121":122,"122":123,"123":124,"124":125,"125":126,"126":127,"127":128,"128":129,"129":130,"130":131,"131":132,"132":133,"133":134,"134":135,"135":136,"136":137,"137":138,"138":139,"139":140,"140":141,"141":142,"142":143,"143":144,"144":145,"145":146,"146":147,"147":148,"148":149,"149":150,"150":151,"151":152,"152":153,"153":154,"154":155,"155":156,"156":157,"157":158,"158":159,"159":160,"160":161,"161":162,"162":163,"163":164,"164":165,"165":166,"166":167,"167":168,"168":169,"169":170,"170":171,"171":172,"172":173,"173":174,"174":175,"175":176,"176":177,"177":178,"178":179,"179":180,"180":181,"181":182,"182":183,"183":184,"184":185,"185":186,"186":187,"187":188,"188":189,"189":190,"190":191,"191":192,"192":193,"193":194,"194":195,"195":196,"196":197,"197":198,"198":199,"199":200,"200":201,"201":202,"202":203,"203":204,"204":205,"205":206,"206":207,"207":208,"208":209,"209":210,"210":211,"211":212,"212":213,"213":214,"214":215,"215":216,"216":217,"217":218,"218":219,"219":220,"220":221,"221":222,"222":223,"223":224,"224":225,"225":226,"226":227,"227":228,"228":229,"229":230,"230":231,"231":232,"232":233,"233":234,"234":235,"235":236,"236":237,"237":238,"238":239,"239":240,"240":241,"241":242,"242":243,"243":244,"244":245,"245":246,"246":247,"247":248,"248":249,"249":250,"250":251,"251":252,"252":253,"253":254,"254":255,"255":256,"256":257,"257":258,"258":259,"259":260,"260":261,"261":262,"262":263,"263":264,"264":265,"265":266,"266":267,"267":268,"268":269,"269":270,"270":271,"271":272,"272":273,"273":274,"274":275,"275":276,"276":277,"277":278,"278":279,"279":280,"280":281,"281":282,"282":283,"283":284,"284":285,"285":286,"286":287,"287":288,"288":289,"289":290,"290":291,"291":292,"292":293,"293":294,"294":295,"295":296,"296":297,"297":298,"298":299,"299":300,"300":301,"301":302,"302":303,"303":304,"304":305,"305":306,"306":307,"307":308,"308":309,"309":310,"310":311,"311":312,"312":313,"313":314,"314":315,"315":316,"316":317,"317":318,"318":319,"319":320,"320":321,"321":322,"322":323,"323":324,"324":325,"325":326,"326":327,"327":328,"328":329,"329":330,"330":331,"331":332,"332":333,"333":334,"334":335,"335":336,"336":337,"337":338,"338":339,"339":340,"340":341,"341":342,"342":343,"343":344,"344":345,"345":346,"346":347,"347":348,"348":349,"349":350,"350":351,"351":352,"352":353,"353":354,"354":355,"355":356,"356":357,"357":358,"358":359,"359":360,"360":361,"361":362,"362":363,"363":364,"364":365,"365":366,"366":367,"367":368,"368":369,"369":370,"370":371,"371":372,"372":373,"373":374,"374":375,"375":376,"376":377,"377":378,"378":379,"379":380,"380":381,"381":382,"382":383,"383":384,"384":385,"385":386,"386":387,"387":388,"388":389,"389":390,"390":391,"391":392,"392":393,"393":394,"394":395,"395":396,"396":397,"397":398,"398":399,"399":400,"400":401,"401":402,"402":403,"403":404,"404":405,"405":406,"406":407,"407":408,"408":409,"409":410,"410":411,"411":412,"412":413,"413":414,"414":415,"415":416,"416":417,"417":418,"418":419,"419":420,"420":421,"421":422,"422":423,"423":424,"424":425,"425":426,"426":427,"427":428,"428":429,"429":430,"430":431,"431":432,"432":433,"433":434,"434":435,"435":436,"436":437,"437":438,"438":439,"439":440,"440":441,"441":442,"442":443,"443":444,"444":445,"445":446,"446":447,"447":448,"448":449,"449":450,"450":451,"451":452,"452":453,"453":454,"454":455,"455":456,"456":457,"457":458,"458":459,"459":460,"460":461,"461":462,"462":463,"463":464,"464":465,"465":466,"466":467,"467":468,"468":469,"469":470,"470":471,"471":472,"472":473,"473":474,"474":475,"475":476,"476":477,"477":478,"478":479,"479":480,"480":481,"481":482,"482":483,"483":484,"484":485,"485":486,"486":487,"487":488,"488":489,"489":490,"490":491,"491":492,"492":493,"493":494,"494":495,"495":496,"496":497,"497":498,"498":499,"499":500,"500":501,"501":502,"502":503,"503":504,"504":505,"505":506,"506":507,"507":508,"508":509,"509":510,"510":511,"511":512,"512":513,"513":514,"514":515,"515":516,"516":517,"517":518,"518":519,"519":520,"520":521,"521":522,"522":523,"523":524,"524":525,"525":526,"526":527,"527":528,"528":529,"529":530,"530":531,"531":532,"532":533,"533":534,"534":535,"535":536,"536":537,"537":538,"538":539,"539":540,"540":541,"541":542,"542":543,"543":544,"544":545,"545":546,"546":547,"547":548,"548":549,"549":550,"550":551,"551":552,"552":553,"553":554,"554":555,"555":556,"556":557,"557":558,"558":559,"559":560,"560":561,"561":562,"562":563,"563":564,"564":565,"565":566,"566":567,"567":568,"568":569,"569":570,"570":571,"571":572,"572":573,"573":574,"574":575,"575":576,"576":577,"577":578,"578":579,"579":580,"580":581,"581":582,"582":583,"583":584,"584":585,"585":586,"586":587,"587":588,"588":589,"589":590,"590":591,"591":592,"592":593,"593":594,"594":595,"595":596,"596":597,"597":598,"598":599,"599":600,"600":601,"601":602,"602":603,"603":604,"604":605,"605":606,"606":607,"607":608,"608":609,"609":610,"610":611,"611":612,"612":613,"613":614,"614":615,"615":616,"616":617,"617":618,"618":619,"619":620,"620":621,"621":622,"622":623,"623":624,"624":625,"625":626,"626":627,"627":628,"628":629,"629":630,"630":631,"631":632,"632":633,"633":634,"634":635,"635":636,"636":637,"637":638,"638":639,"639":640,"640":641,"641":642,"642":643,"643":644,"644":645,"645":646,"646":647,"647":648,"648":649,"649":650,"650":651,"651":652,"652":653,"653":654,"654":655,"655":656,"656":657,"657":658,"658":659,"659":660,"660":661,"661":662,"662":663,"663":664,"664":665,"665":666,"666":667,"667":668,"668":669,"669":670,"670":671,"671":672,"672":673,"673":674,"674":675,"675":676,"676":677,"677":678,"678":679,"679":680,"680":681,"681":682,"682":683,"683":684,"684":685,"685":686,"686":687,"687":688,"688":689,"689":690,"690":691,"691":692,"692":693,"693":694,"694":695,"695":696,"696":697,"697":698,"698":699,"699":700,"700":701,"701":702,"702":703,"703":704,"704":705,"705":706,"706":707,"707":708,"708":709,"709":710,"710":711,"711":712,"712":713,"713":714,"714":715,"715":716,"716":717,"717":718,"718":719,"719":720,"720":721,"721":722,"722":723,"723":724,"724":725,"725":726,"726":727,"727":728,"728":729,"729":730,"730":731,"731":732,"732":733,"733":734,"734":735,"735":736,"736":737,"737":738,"738":739,"739":740,"740":741,"741":742,"742":743,"743":744,"744":745,"745":746,"746":747,"747":748,"748":749,"749":750,"750":751,"751":752,"752":753,"753":754,"754":755,"755":756,"756":757,"757":758,"758":759,"759":760,"760":761,"761":762,"762":763,"763":764,"764":765,"765":766,"766":767,"767":768,"768":769,"769":770,"770":771,"771":772,"772":773,"773":774,"774":775,"775":776,"776":777,"777":778,"778":779,"779":780,"780":781,"781":782,"782":783,"783":784,"784":785,"785":786,"786":787,"787":788,"788":789,"789":790,"790":791,"791":792,"792":793,"793":794,"794":795,"795":796,"796":797,"797":798,"798":799,"799":800,"800":801,"801":802,"802":803,"803":804,"804":805,"805":806,"806":807,"807":808,"808":809,"809":810,"810":811,"811":812,"812":813,"813":814,"814":815,"815":816,"816":817,"817":818,"818":819,"819":820,"820":821,"821":822,"822":823,"823":824,"824":825,"825":826,"826":827,"827":828,"828":829,"829":830,"830":831,"831":832,"832":833,"833":834,"834":835,"835":836,"836":837,"837":838,"838":839,"839":840,"840":841,"841":842,"842":843,"843":844,"844":845,"845":846,"846":847,"847":848,"848":849,"849":850,"850":851,"851":852,"852":853,"853":854,"854":855,"855":856,"856":857,"857":858,"858":859,"859":860,"860":861,"861":862,"862":863,"863":864,"864":865,"865":866,"866":867,"867":868,"868":869,"869":870,"870":871,"871":872,"872":873,"873":874,"874":875,"875":876,"876":877,"877":878,"878":879,"879":880,"880":881,"881":882,"882":883,"883":884,"884":885,"885":886,"886":887,"887":888,"888":889,"889":890,"890":891,"891":892,"892":893,"893":894,"894":895,"895":896,"896":897,"897":898,"898":899,"899":900,"900":901,"901":902,"902":903,"903":904,"904":905,"905":906,"906":907,"907":908,"908":909,"909":910,"910":911,"911":912,"912":913,"913":914,"914":915,"915":916,"916":917,"917":918,"918":919,"919":920,"920":921,"921":922,"922":923,"923":924,"924":925,"925":926,"926":927,"927":928,"928":929,"929":930,"930":931,"931":932,"932":933,"933":934,"934":935,"935":936,"936":937,"937":938,"938":939,"939":940,"940":941,"941":942,"942":943,"943":944,"944":945,"945":946,"946":947,"947":948,"948":949,"949":950,"950":951,"951":952,"952":953,"953":954,"954":955,"955":956,"956":957,"957":958,"958":959,"959":960,"960":961,"961":962,"962":963,"963":964,"964":965,"965":966,"966":967,"967":968,"968":969,"969":970,"970":971,"971":972,"972":973,"973":974,"974":975,"975":976,"976":977,"977":978,"978":979,"979":980,"980":981,"981":982,"982":983,"983":984,"984":985,"985":986,"986":987,"987":988,"988":989,"989":990,"990":991,"991":992,"992":993,"993":994,"994":995,"995":996,"996":997,"997":998,"998":999,"999":1000,"1000":1001,"1001":1002,"1002":1003,"1003":1004,"1004":1005,"1005":1006,"1006":1007,"1007":1008,"1008":1009,"1009":1010,"1010":1011,"1011":1012,"1012":1013,"1013":1014,"1014":1015,"1015":1016,"1016":1017,"1017":1018,"1018":1019,"1019":1020,"1020":1021,"1021":1022,"1022":1023,"1023":1024,"1024":1025,"1025":1026,"1026":1027,"1027":1028,"1028":1029,"1029":1030,"1030":1031,"1031":1032,"1032":1033,"1033":1034,"1034":1035,"1035":1036,"1036":1037,"1037":1038,"1038":1039,"1039":1040,"1040":1041,"1041":1042,"1042":1043,"1043":1044,"1044":1045,"1045":1046,"1046":1047,"1047":1048,"1048":1049,"1049":1050,"1050":1051,"1051":1052,"1052":1053,"1053":1054,"1054":1055,"1055":1056,"1056":1057,"1057":1058,"1058":1059,"1059":1060,"1060":1061,"1061":1062,"1062":1063,"1063":1064,"1064":1065,"1065":1066,"1066":1067,"1067":1068,"1068":1069,"1069":1070,"1070":1071,"1071":1072,"1072":1073,"1073":1074,"1074":1075,"1075":1076,"1076":1077,"1077":1078,"1078":1079,"1079":1080,"1080":1081,"1081":1082,"1082":1083,"1083":1084,"1084":1085,"1085":1086,"1086":1087,"1087":1088,"1088":1089,"1089":1090,"1090":1091,"1091":1092,"1092":1093,"1093":1094,"1094":1095,"1095":1096,"1096":1097,"1097":1098,"1098":1099,"1099":1100,"1100":1101,"1101":1102,"1102":1103,"1103":1104,"1104":1105,"1105":1106,"1106":1107,"1107":1108,"1108":1109,"1109":1110,"1110":1111,"1111":1112,"1112":1113,"1113":1114,"1114":1115,"1115":1116,"1116":1117,"1117":1118,"1118":1119,"1119":1120,"1120":1121,"1121":1122,"1122":1123,"1123":1124,"1124":1125,"1125":1126,"1126":1127,"1127":1128,"1128":1129,"1129":1130,"1130":1131,"1131":1132,"1132":1133,"1133":1134,"1134":1135,"1135":1136,"1136":1137,"1137":1138,"1138":1139,"1139":1140,"1140":1141,"1141":1142,"1142":1143,"1143":1144,"1144":1145,"1145":1146,"1146":1147,"1147":1148,"1148":1149,"1149":1150,"1150":1151,"1151":1152,"1152":1153,"1153":1154,"1154":1155,"1155":1156,"1156":1157,"1157":1158,"1158":1159,"1159":1160,"1160":1161,"1161":1162,"1162":1163,"1163":1164,"1164":1165,"1165":1166,"1166":1167,"1167":1168,"1168":1169,"1169":1170,"1170":1171,"1171":1172,"1172":1173,"1173":1174,"1174":1175,"1175":1176,"1176":1177,"1177":1178,"1178":1179,"1179":1180,"1180":1181,"1181":1182,"1182":1183,"1183":1184,"1184":1185,"1185":1186,"1186":1187,"1187":1188,"1188":1189,"1189":1190,"1190":1191,"1191":1192,"1192":1193,"1193":1194,"1194":1195,"1195":1196,"1196":1197,"1197":1198,"1198":1199,"1199":1200,"1200":1201,"1201":1202,"1202":1203,"1203":1204,"1204":1205,"1205":1206,"1206":1207,"1207":1208,"1208":1209,"1209":1210,"1210":1211,"1211":1212,"1212":1213,"1213":1214,"1214":1215,"1215":1216,"1216":1217,"1217":1218,"1218":1219,"1219":1220,"1220":1221,"1221":1222,"1222":1223,"1223":1224,"1224":1225,"1225":1226,"1226":1227,"1227":1228,"1228":1229,"1229":1230,"1230":1231,"1231":1232,"1232":1233,"1233":1234,"1234":1235,"1235":1236,"1236":1237,"1237":1238,"1238":1239,"1239":1240,"1240":1241,"1241":1242,"1242":1243,"1243":1244,"1244":1245,"1245":1246,"1246":1247,"1247":1248,"1248":1249,"1249":1250,"1250":1251,"1251":1252,"1252":1253,"1253":1254,"1254":1255,"1255":1256,"1256":1257,"1257":1258,"1258":1259,"1259":1260,"1260":1261,"1261":1262,"1262":1263,"1263":1264,"1264":1265,"1265":1266,"1266":1267,"1267":1268,"1268":1269,"1269":1270,"1270":1271,"1271":1272,"1272":1273,"1273":1274,"1274":1275,"1275":1276,"1276":1277,"1277":1278,"1278":1279,"1279":1280,"1280":1281,"1281":1282,"1282":1283,"1283":1284,"1284":1285,"1285":1286,"1286":1287,"1287":1288,"1288":1289,"1289":1290,"1290":1291,"1291":1292,"1292":1293,"1293":1294,"1294":1295,"1295":1296,"1296":1297,"1297":1298,"1298":1299,"1299":1300,"1300":1301,"1301":1302,"1302":1303,"1303":1304,"1304":1305,"1305":1306,"1306":1307,"1307":1308,"1308":1309,"1309":1310,"1310":1311,"1311":1312,"1312":1313,"1313":1314,"1314":1315,"1315":1316,"1316":1317,"1317":1318,"1318":1319,"1319":1320,"1320":1321,"1321":1322,"1322":1323,"1323":1324,"1324":1325,"1325":1326,"1326":1327,"1327":1328,"1328":1329,"1329":1330,"1330":1331,"1331":1332,"1332":1333,"1333":1334,"1334":1335,"1335":1336,"1336":1337,"1337":1338,"1338":1339,"1339":1340,"1340":1341,"1341":1342,"1342":1343,"1343":1344,"1344":1345,"1345":1346,"1346":1347,"1347":1348,"1348":1349,"1349":1350,"1350":1351,"1351":1352,"1352":1353,"1353":1354,"1354":1355,"1355":1356,"1356":1357,"1357":1358,"1358":1359,"1359":1360,"1360":1361,"1361":1362,"1362":1363,"1363":1364,"1364":1365,"1365":1366,"1366":1367,"1367":1368,"1368":1369,"1369":1370,"1370":1371,"1371":1372,"1372":1373,"1373":1374,"1374":1375,"1375":1376,"1376":1377,"1377":1378,"1378":1379,"1379":1380,"1380":1381,"1381":1382,"1382":1383,"1383":1384,"1384":1385,"1385":1386,"1386":1387,"1387":1388,"1388":1389,"1389":1390,"1390":1391,"1391":1392,"1392":1393,"1393":1394,"1394":1395,"1395":1396,"1396":1397,"1397":1398,"1398":1399,"1399":1400,"1400":1401,"1401":1402,"1402":1403,"1403":1404,"1404":1405,"1405":1406,"1406":1407,"1407":1408,"1408":1409,"1409":1410,"1410":1411,"1411":1412,"1412":1413,"1413":1414,"1414":1415,"1415":1416,"1416":1417,"1417":1418,"1418":1419,"1419":1420,"1420":1421,"1421":1422,"1422":1423,"1423":1424,"1424":1425,"1425":1426,"1426":1427,"1427":1428,"1428":1429,"1429":1430,"1430":1431,"1431":1432,"1432":1433,"1433":1434,"1434":1435,"1435":1436,"1436":1437,"1437":1438,"1438":1439,"1439":1440,"1440":1441,"1441":1442,"1442":1443,"1443":1444,"1444":1445,"1445":1446,"1446":1447,"1447":1448,"1448":1449,"1449":1450,"1450":1451,"1451":1452,"1452":1453,"1453":1454,"1454":1455,"1455":1456,"1456":1457,"1457":1458,"1458":1459,"1459":1460,"1460":1461,"1461":1462,"1462":1463,"1463":1464,"1464":1465,"1465":1466,"1466":1467,"1467":1468,"1468":1469,"1469":1470,"1470":1471,"1471":1472,"1472":1473,"1473":1474,"1474":1475,"1475":1476,"1476":1477,"1477":1478,"1478":1479,"1479":1480,"1480":1481,"1481":1482,"1482":1483,"1483":1484,"1484":1485,"1485":1486,"1486":1487,"1487":1488,"1488":1489,"1489":1490,"1490":1491,"1491":1492,"1492":1493,"1493":1494,"1494":1495,"1495":1496,"1496":1497,"1497":1498,"1498":1499,"1499":1500,"1500":1501,"1501":1502,"1502":1503,"1503":1504,"1504":1505,"1505":1506,"1506":1507,"1507":1508,"1508":1509,"1509":1510,"1510":1511,"1511":1512,"1512":1513,"1513":1514,"1514":1515,"1515":1516,"1516":1517,"1517":1518,"1518":1519,"1519":1520,"1520":1521,"1521":1522,"1522":1523,"1523":1524,"1524":1525,"1525":1526,"1526":1527,"1527":1528,"1528":1529,"1529":1530,"1530":1531,"1531":1532,"1532":1533,"1533":1534,"1534":1535,"1535":1536,"1536":1537,"1537":1538,"1538":1539,"1539":1540,"1540":1541,"1541":1542,"1542":1543,"1543":1544,"1544":1545,"1545":1546,"1546":1547,"1547":1548,"1548":1549,"1549":1550,"1550":1551,"1551":1552,"1552":1553,"1553":1554,"1554":1555,"1555":1556,"1556":1557,"1557":1558,"1558":1559,"1559":1560,"1560":1561,"1561":1562,"1562":1563,"1563":1564,"1564":1565,"1565":1566,"1566":1567,"1567":1568,"1568":1569,"1569":1570,"1570":1571,"1571":1572,"1572":1573,"1573":1574,"1574":1575,"1575":1576,"1576":1577,"1577":1578,"1578":1579,"1579":1580,"1580":1581,"1581":1582,"1582":1583,"1583":1584,"1584":1585,"1585":1586,"1586":1587,"1587":1588,"1588":1589,"1589":1590,"1590":1591,"1591":1592,"1592":1593,"1593":1594,"1594":1595,"1595":1596,"1596":1597,"1597":1598,"1598":1599,"1599":1600,"1600":1601,"1601":1602,"1602":1603,"1603":1604,"1604":1605,"1605":1606,"1606":1607,"1607":1608,"1608":1609,"1609":1610,"1610":1611,"1611":1612,"1612":1613,"1613":1614,"1614":1615,"1615":1616,"1616":1617,"1617":1618,"1618":1619,"1619":1620,"1620":1621,"1621":1622,"1622":1623,"1623":1624,"1624":1625,"1625":1626,"1626":1627,"1627":1628,"1628":1629,"1629":1630,"1630":1631,"1631":1632,"1632":1633,"1633":1634,"1634":1635,"1635":1636,"1636":1637,"1637":1638,"1638":1639,"1639":1640,"1640":1641,"1641":1642,"1642":1643,"1643":1644,"1644":1645,"1645":1646,"1646":1647,"1647":1648,"1648":1649,"1649":1650,"1650":1651,"1651":1652,"1652":1653,"1653":1654,"1654":1655,"1655":1656,"1656":1657,"1657":1658,"1658":1659,"1659":1660,"1660":1661,"1661":1662,"1662":1663,"1663":1664,"1664":1665,"1665":1666,"1666":1667,"1667":1668,"1668":1669,"1669":1670,"1670":1671,"1671":1672,"1672":1673,"1673":1674,"1674":1675,"1675":1676,"1676":1677,"1677":1678,"1678":1679,"1679":1680,"1680":1681,"1681":1682,"1682":1683,"1683":1684,"1684":1685,"1685":1686,"1686":1687,"1687":1688,"1688":1689,"1689":1690,"1690":1691,"1691":1692,"1692":1693,"1693":1694,"1694":1695,"1695":1696,"1696":1697,"1697":1698,"1698":1699,"1699":1700,"1700":1701,"1701":1702,"1702":1703,"1703":1704,"1704":1705,"1705":1706,"1706":1707,"1707":1708,"1708":1709,"1709":1710,"1710":1711,"1711":1712,"1712":1713,"1713":1714,"1714":1715,"1715":1716,"1716":1717,"1717":1718,"1718":1719,"1719":1720,"1720":1721,"1721":1722,"1722":1723,"1723":1724,"1724":1725,"1725":1726,"1726":1727,"1727":1728,"1728":1729,"1729":1730,"1730":1731,"1731":1732,"1732":1733,"1733":1734,"1734":1735,"1735":1736,"1736":1737,"1737":1738,"1738":1739,"1739":1740,"1740":1741,"1741":1742,"1742":1743,"1743":1744,"1744":1745,"1745":1746,"1746":1747,"1747":1748,"1748":1749,"1749":1750,"1750":1751,"1751":1752,"1752":1753,"1753":1754,"1754":1755,"1755":1756,"1756":1757,"1757":1758,"1758":1759,"1759":1760,"1760":1761,"1761":1762,"1762":1763,"1763":1764,"1764":1765,"1765":1766,"1766":1767,"1767":1768,"1768":1769,"1769":1770,"1770":1771,"1771":1772,"1772":1773,"1773":1774,"1774":1775,"1775":1776,"1776":1777,"1777":1778,"1778":1779,"1779":1780,"1780":1781,"1781":1782,"1782":1783,"1783":1784,"1784":1785,"1785":1786,"1786":1787,"1787":1788,"1788":1789,"1789":1790,"1790":1791,"1791":1792,"1792":1793,"1793":1794,"1794":1795,"1795":1796,"1796":1797,"1797":1798,"1798":1799,"1799":1800,"1800":1801,"1801":1802,"1802":1803,"1803":1804,"1804":1805,"1805":1806,"1806":1807,"1807":1808,"1808":1809,"1809":1810,"1810":1811,"1811":1812,"1812":1813,"1813":1814,"1814":1815,"1815":1816,"1816":1817,"1817":1818,"1818":1819,"1819":1820,"1820":1821,"1821":1822,"1822":1823,"1823":1824,"1824":1825,"1825":1826,"1826":1827,"1827":1828,"1828":1829,"1829":1830,"1830":1831,"1831":1832,"1832":1833,"1833":1834,"1834":1835,"1835":1836,"1836":1837,"1837":1838,"1838":1839,"1839":1840,"1840":1841,"1841":1842,"1842":1843,"1843":1844,"1844":1845,"1845":1846,"1846":1847,"1847":1848,"1848":1849,"1849":1850,"1850":1851,"1851":1852,"1852":1853,"1853":1854,"1854":1855,"1855":1856,"1856":1857,"1857":1858,"1858":1859,"1859":1860,"1860":1861,"1861":1862,"1862":1863,"1863":1864,"1864":1865,"1865":1866,"1866":1867,"1867":1868,"1868":1869,"1869":1870,"1870":1871,"1871":1872,"1872":1873,"1873":1874,"1874":1875,"1875":1876,"1876":1877,"1877":1878,"1878":1879,"1879":1880,"1880":1881,"1881":1882,"1882":1883,"1883":1884,"1884":1885,"1885":1886,"1886":1887,"1887":1888,"1888":1889,"1889":1890,"1890":1891,"1891":1892,"1892":1893,"1893":1894,"1894":1895,"1895":1896,"1896":1897,"1897":1898,"1898":1899,"1899":1900,"1900":1901,"1901":1902,"1902":1903,"1903":1904,"1904":1905,"1905":1906,"1906":1907,"1907":1908,"1908":1909,"1909":1910,"1910":1911,"1911":1912,"1912":1913,"1913":1914,"1914":1915,"1915":1916,"1916":1917,"1917":1918,"1918":1919,"1919":1920,"1920":1921,"1921":1922,"1922":1923,"1923":1924,"1924":1925,"1925":1926,"1926":1927,"1927":1928,"1928":1929,"1929":1930,"1930":1931,"1931":1932,"1932":1933,"1933":1934,"1934":1935,"1935":1936,"1936":1937,"1937":1938,"1938":1939,"1939":1940,"1940":1941,"1941":1942,"1942":1943,"1943":1944,"1944":1945,"1945":1946,"1946":1947,"1947":1948,"1948":1949,"1949":1950,"1950":1951,"1951":1952,"1952":1953,"1953":1954,"1954":1955,"1955":1956,"1956":1957,"1957":1958,"1958":1959,"1959":1960,"1960":1961,"1961":1962,"1962":1963,"1963":1964,"1964":1965,"1965":1966,"1966":1967,"1967":1968,"1968":1969,"1969":1970,"1970":1971,"1971":1972,"1972":1973,"1973":1974,"1974":1975,"1975":1976,"1976":1977,"1977":1978,"1978":1979,"1979":1980,"1980":1981,"1981":1982,"1982":1983,"1983":1984,"1984":1985,"1985":1986,"1986":1987,"1987":1988,"1988":1989,"1989":1990,"1990":1991,"1991":1992,"1992":1993,"1993":1994,"1994":1995,"1995":1996,"1996":1997,"1997":1998,"1998":1999,"1999":2000,"2000":2001,"2001":2002,"2002":2003,"2003":2004,"2004":2005,"2005":2006,"2006":2007,"2007":2008,"2008":2009,"2009":2010,"2010":2011,"2011":2012,"2012":2013,"2013":2014,"2014":2015,"2015":2016,"2016":2017,"2017":2018,"2018":2019,"2019":2020,"2020":2021,"2021":2022,"2022":2023,"2023":2024,"2024":2025,"2025":2026,"2026":2027,"2027":2028,"2028":2029,"2029":2030,"2030":2031,"2031":2032,"2032":2033,"2033":2034,"2034":2035,"2035":2036,"2036":2037,"2037":2038,"2038":2039,"2039":2040,"2040":2041,"2041":2042,"2042":2043,"2043":2044,"2044":2045,"2045":2046,"2046":2047,"2047":2048,"2048":2049,"2049":2050,"2050":2051,"2051":2052,"2052":2053,"2053":2054,"2054":2055,"2055":2056,"2056":2057,"2057":2058,"2058":2059,"2059":2060,"2060":2061,"2061":2062,"2062":2063,"2063":2064,"2064":2065,"2065":2066,"2066":2067,"2067":2068,"2068":2069,"2069":2070,"2070":2071,"2071":2072,"2072":2073,"2073":2074,"2074":2075,"2075":2076,"2076":2077,"2077":2078,"2078":2079,"2079":2080,"2080":2081,"2081":2082,"2082":2083,"2083":2084,"2084":2085,"2085":2086,"2086":2087,"2087":2088,"2088":2089,"2089":2090,"2090":2091,"2091":2092,"2092":2093,"2093":2094,"2094":2095,"2095":2096,"2096":2097,"2097":2098,"2098":2099,"2099":2100,"2100":2101,"2101":2102,"2102":2103,"2103":2104,"2104":2105,"2105":2106,"2106":2107,"2107":2108,"2108":2109,"2109":2110,"2110":2111,"2111":2112,"2112":2113,"2113":2114,"2114":2115,"2115":2116,"2116":2117,"2117":2118,"2118":2119,"2119":2120,"2120":2121,"2121":2122,"2122":2123,"2123":2124,"2124":2125,"2125":2126,"2126":2127,"2127":2128,"2128":2129,"2129":2130,"2130":2131,"2131":2132,"2132":2133,"2133":2134,"2134":2135,"2135":2136,"2136":2137,"2137":2138,"2138":2139,"2139":2140,"2140":2141,"2141":2142,"2142":2143,"2143":2144,"2144":2145,"2145":2146,"2146":2147,"2147":2148,"2148":2149,"2149":2150,"2150":2151,"2151":2152,"2152":2153,"2153":2154,"2154":2155,"2155":2156,"2156":2157,"2157":2158,"2158":2159,"2159":2160,"2160":2161,"2161":2162,"2162":2163,"2163":2164,"2164":2165,"2165":2166,"2166":2167,"2167":2168,"2168":2169,"2169":2170,"2170":2171,"2171":2172,"2172":2173,"2173":2174,"2174":2175,"2175":2176,"2176":2177,"2177":2178,"2178":2179,"2179":2180,"2180":2181,"2181":2182,"2182":2183,"2183":2184,"2184":2185,"2185":2186,"2186":2187,"2187":2188,"2188":2189,"2189":2190,"2190":2191,"2191":2192,"2192":2193,"2193":2194,"2194":2195,"2195":2196,"2196":2197,"2197":2198,"2198":2199,"2199":2200,"2200":2201,"2201":2202,"2202":2203,"2203":2204,"2204":2205,"2205":2206,"2206":2207,"2207":2208,"2208":2209,"2209":2210,"2210":2211,"2211":2212,"2212":2213,"2213":2214,"2214":2215,"2215":2216,"2216":2217,"2217":2218,"2218":2219,"2219":2220,"2220":2221,"2221":2222,"2222":2223,"2223":2224,"2224":2225,"2225":2226,"2226":2227,"2227":2228,"2228":2229,"2229":2230,"2230":2231,"2231":2232,"2232":2233,"2233":2234,"2234":2235,"2235":2236,"2236":2237,"2237":2238,"2238":2239,"2239":2240,"2240":2241,"2241":2242,"2242":2243,"2243":2244,"2244":2245,"2245":2246,"2246":2247,"2247":2248,"2248":2249,"2249":2250,"2250":2251,"2251":2252,"2252":2253,"2253":2254,"2254":2255,"2255":2256,"2256":2257,"2257":2258,"2258":2259,"2259":2260,"2260":2261,"2261":2262,"2262":2263,"2263":2264,"2264":2265,"2265":2266,"2266":2267,"2267":2268,"2268":2269,"2269":2270,"2270":2271,"2271":2272,"2272":2273,"2273":2274,"2274":2275,"2275":2276,"2276":2277,"2277":2278,"2278":2279,"2279":2280,"2280":2281,"2281":2282,"2282":2283,"2283":2284,"2284":2285,"2285":2286,"2286":2287,"2287":2288,"2288":2289,"2289":2290,"2290":2291,"2291":2292,"2292":2293,"2293":2294,"2294":2295,"2295":2296,"2296":2297,"2297":2298,"2298":2299,"2299":2300,"2300":2301,"2301":2302,"2302":2303,"2303":2304,"2304":2305,"2305":2306,"2306":2307,"2307":2308,"2308":2309,"2309":2310,"2310":2311,"2311":2312,"2312":2313,"2313":2314,"2314":2315,"2315":2316,"2316":2317,"2317":2318,"2318":2319,"2319":2320,"2320":2321,"2321":2322,"2322":2323,"2323":2324,"2324":2325,"2325":2326,"2326":2327,"2327":2328,"2328":2329,"2329":2330,"2330":2331,"2331":2332,"2332":2333,"2333":2334,"2334":2335,"2335":2336,"2336":2337,"2337":2338,"2338":2339,"2339":2340,"2340":2341,"2341":2342,"2342":2343,"2343":2344,"2344":2345,"2345":2346,"2346":2347,"2347":2348,"2348":2349,"2349":2350,"2350":2351,"2351":2352,"2352":2353,"2353":2354,"2354":2355,"2355":2356,"2356":2357,"2357":2358,"2358":2359,"2359":2360,"2360":2361,"2361":2362,"2362":2363,"2363":2364,"2364":2365,"2365":2366,"2366":2367,"2367":2368,"2368":2369,"2369":2370,"2370":2371,"2371":2372,"2372":2373,"2373":2374,"2374":2375,"2375":2376,"2376":2377,"2377":2378,"2378":2379,"2379":2380,"2380":2381,"2381":2382,"2382":2383,"2383":2384,"2384":2385,"2385":2386,"2386":2387,"2387":2388,"2388":2389,"2389":2390,"2390":2391,"2391":2392,"2392":2393,"2393":2394,"2394":2395,"2395":2396,"2396":2397,"2397":2398,"2398":2399,"2399":2400,"2400":2401,"2401":2402,"2402":2403,"2403":2404,"2404":2405,"2405":2406,"2406":2407,"2407":2408,"2408":2409,"2409":2410,"2410":2411,"2411":2412,"2412":2413,"2413":2414,"2414":2415,"2415":2416,"2416":2417,"2417":2418,"2418":2419,"2419":2420,"2420":2421,"2421":2422,"2422":2423,"2423":2424,"2424":2425,"2425":2426,"2426":2427,"2427":2428,"2428":2429,"2429":2430,"2430":2431,"2431":2432,"2432":2433,"2433":2434,"2434":2435,"2435":2436,"2436":2437,"2437":2438,"2438":2439,"2439":2440,"2440":2441,"2441":2442,"2442":2443,"2443":2444,"2444":2445,"2445":2446,"2446":2447,"2447":2448,"2448":2449,"2449":2450,"2450":2451,"2451":2452,"2452":2453,"2453":2454,"2454":2455,"2455":2456,"2456":2457,"2457":2458,"2458":2459,"2459":2460,"2460":2461,"2461":2462,"2462":2463,"2463":2464,"2464":2465,"2465":2466,"2466":2467,"2467":2468,"2468":2469,"2469":2470,"2470":2471,"2471":2472,"2472":2473,"2473":2474,"2474":2475,"2475":2476,"2476":2477,"2477":2478,"2478":2479,"2479":2480,"2480":2481,"2481":2482,"2482":2483,"2483":2484,"2484":2485,"2485":2486,"2486":2487,"2487":2488,"2488":2489,"2489":2490,"2490":2491,"2491":2492,"2492":2493,"2493":2494,"2494":2495,"2495":2496,"2496":2497,"2497":2498,"2498":2499,"2499":2500,"2500":2501,"2501":2502,"2502":2503,"2503":2504,"2504":2505,"2505":2506,"2506":2507,"2507":2508,"2508":2509,"2509":2510,"2510":2511,"2511":2512,"2512":2513,"2513":2514,"2514":2515,"2515":2516,"2516":2517,"2517":2518,"2518":2519,"2519":2520,"2520":2521,"2521":2522,"2522":2523,"2523":2524,"2524":2525,"2525":2526,"2526":2527,"2527":2528,"2528":2529,"2529":2530,"2530":2531,"2531":2532,"2532":2533,"2533":2534,"2534":2535,"2535":2536,"2536":2537,"2537":2538,"2538":2539,"2539":2540,"2540":2541,"2541":2542,"2542":2543,"2543":2544,"2544":2545,"2545":2546,"2546":2547,"2547":2548,"2548":2549,"2549":2550,"2550":2551,"2551":2552,"2552":2553,"2553":2554,"2554":2555,"2555":2556,"2556":2557,"2557":2558,"2558":2559,"2559":2560,"2560":2561,"2561":2562,"2562":2563,"2563":2564,"2564":2565,"2565":2566,"2566":2567,"2567":2568,"2568":2569,"2569":2570,"2570":2571,"2571":2572,"2572":2573,"2573":2574,"2574":2575,"2575":2576,"2576":2577,"2577":2578,"2578":2579,"2579":2580,"2580":2581,"2581":2582,"2582":2583,"2583":2584,"2584":2585,"2585":2586,"2586":2587,"2587":2588,"2588":2589,"2589":2590,"2590":2591,"2591":2592,"2592":2593,"2593":2594,"2594":2595,"2595":2596,"2596":2597,"2597":2598,"2598":2599,"2599":2600,"2600":2601,"2601":2602,"2602":2603,"2603":2604,"2604":2605,"2605":2606,"2606":2607,"2607":2608,"2608":2609,"2609":2610,"2610":2611,"2611":2612,"2612":2613,"2613":2614,"2614":2615,"2615":2616,"2616":2617,"2617":2618,"2618":2619,"2619":2620,"2620":2621,"2621":2622,"2622":2623,"2623":2624,"2624":2625,"2625":2626,"2626":2627,"2627":2628,"2628":2629,"2629":2630,"2630":2631,"2631":2632,"2632":2633,"2633":2634,"2634":2635,"2635":2636,"2636":2637,"2637":2638,"2638":2639,"2639":2640,"2640":2641,"2641":2642,"2642":2643,"2643":2644,"2644":2645,"2645":2646,"2646":2647,"2647":2648,"2648":2649,"2649":2650,"2650":2651,"2651":2652,"2652":2653,"2653":2654,"2654":2655,"2655":2656,"2656":2657,"2657":2658,"2658":2659,"2659":2660,"2660":2661,"2661":2662,"2662":2663,"2663":2664,"2664":2665,"2665":2666,"2666":2667,"2667":2668,"2668":2669,"2669":2670,"2670":2671,"2671":2672,"2672":2673,"2673":2674,"2674":2675,"2675":2676,"2676":2677,"2677":2678,"2678":2679,"2679":2680,"2680":2681,"2681":2682,"2682":2683,"2683":2684,"2684":2685,"2685":2686,"2686":2687,"2687":2688,"2688":2689,"2689":2690,"2690":2691,"2691":2692,"2692":2693,"2693":2694,"2694":2695,"2695":2696,"2696":2697,"2697":2698,"2698":2699,"2699":2700,"2700":2701,"2701":2702,"2702":2703,"2703":2704,"2704":2705,"2705":2706,"2706":2707,"2707":2708,"2708":2709,"2709":2710,"2710":2711,"2711":2712,"2712":2713,"2713":2714,"2714":2715,"2715":2716,"2716":2717,"2717":2718,"2718":2719,"2719":2720,"2720":2721,"2721":2722,"2722":2723,"2723":2724,"2724":2725,"2725":2726,"2726":2727,"2727":2728,"2728":2729,"2729":2730,"2730":2731,"2731":2732,"2732":2733,"2733":2734,"2734":2735,"2735":2736,"2736":2737,"2737":2738,"2738":2739,"2739":2740,"2740":2741,"2741":2742,"2742":2743,"2743":2744,"2744":2745,"2745":2746,"2746":2747,"2747":2748,"2748":2749,"2749":2750,"2750":2751,"2751":2752,"2752":2753,"2753":2754,"2754":2755,"2755":2756,"2756":2757,"2757":2758,"2758":2759,"2759":2760,"2760":2761,"2761":2762,"2762":2763,"2763":2764,"2764":2765,"2765":2766,"2766":2767,"2767":2768,"2768":2769,"2769":2770,"2770":2771,"2771":2772,"2772":2773,"2773":2774,"2774":2775,"2775":2776,"2776":2777,"2777":2778,"2778":2779,"2779":2780,"2780":2781,"2781":2782,"2782":2783,"2783":2784,"2784":2785,"2785":2786,"2786":2787,"2787":2788,"2788":2789,"2789":2790,"2790":2791,"2791":2792,"2792":2793,"2793":2794,"2794":2795,"2795":2796,"2796":2797,"2797":2798,"2798":2799,"2799":2800,"2800":2801,"2801":2802,"2802":2803,"2803":2804,"2804":2805,"2805":2806,"2806":2807,"2807":2808,"2808":2809,"2809":2810,"2810":2811,"2811":2812,"2812":2813,"2813":2814,"2814":2815,"2815":2816,"2816":2817,"2817":2818,"2818":2819,"2819":2820,"2820":2821,"2821":2822,"2822":2823,"2823":2824,"2824":2825,"2825":2826,"2826":2827,"2827":2828,"2828":2829,"2829":2830,"2830":2831,"2831":2832,"2832":2833,"2833":2834,"2834":2835,"2835":2836,"2836":2837,"2837":2838,"2838":2839,"2839":2840,"2840":2841,"2841":2842,"2842":2843,"2843":2844,"2844":2845,"2845":2846,"2846":2847,"2847":2848,"2848":2849,"2849":2850,"2850":2851,"2851":2852,"2852":2853,"2853":2854,"2854":2855,"2855":2856,"2856":2857,"2857":2858,"2858":2859,"2859":2860,"2860":2861,"2861":2862,"2862":2863,"2863":2864,"2864":2865,"2865":2866,"2866":2867,"2867":2868,"2868":2869,"2869":2870,"2870":2871,"2871":2872,"2872":2873,"2873":2874,"2874":2875,"2875":2876,"2876":2877,"2877":2878,"2878":2879,"2879":2880,"2880":2881,"2881":2882,"2882":2883,"2883":2884,"2884":2885,"2885":2886,"2886":2887,"2887":2888,"2888":2889,"2889":2890,"2890":2891,"2891":2892,"2892":2893,"2893":2894,"2894":2895,"2895":2896,"2896":2897,"2897":2898,"2898":2899,"2899":2900,"2900":2901,"2901":2902,"2902":2903,"2903":2904,"2904":2905,"2905":2906,"2906":2907,"2907":2908,"2908":2909,"2909":2910,"2910":2911,"2911":2912,"2912":2913,"2913":2914,"2914":2915,"2915":2916,"2916":2917,"2917":2918,"2918":2919,"2919":2920,"2920":2921,"2921":2922,"2922":2923,"2923":2924,"2924":2925,"2925":2926,"2926":2927,"2927":2928,"2928":2929,"2929":2930,"2930":2931,"2931":2932,"2932":2933,"2933":2934,"2934":2935,"2935":2936,"2936":2937,"2937":2938,"2938":2939,"2939":2940,"2940":2941,"2941":2942,"2942":2943,"2943":2944,"2944":2945,"2945":2946,"2946":2947,"2947":2948,"2948":2949,"2949":2950,"2950":2951,"2951":2952,"2952":2953,"2953":2954,"2954":2955,"2955":2956,"2956":2957,"2957":2958,"2958":2959,"2959":2960,"2960":2961,"2961":2962,"2962":2963,"2963":2964,"2964":2965,"2965":2966,"2966":2967,"2967":2968,"2968":2969,"2969":2970,"2970":2971,"2971":2972,"2972":2973,"2973":2974,"2974":2975,"2975":2976,"2976":2977,"2977":2978,"2978":2979,"2979":2980,"2980":2981,"2981":2982,"2982":2983,"2983":2984,"2984":2985,"2985":2986,"2986":2987,"2987":2988,"2988":2989,"2989":2990,"2990":2991,"2991":2992,"2992":2993,"2993":2994,"2994":2995,"2995":2996,"2996":2997,"2997":2998,"2998":2999,"2999":3000,"3000":3001,"3001":3002,"3002":3003,"3003":3004,"3004":3005,"3005":3006,"3006":3007,"3007":3008,"3008":3009,"3009":3010,"3010":3011,"3011":3012,"3012":3013,"3013":3014,"3014":3015,"3015":3016,"3016":3017,"3017":3018,"3018":3019,"3019":3020,"3020":3021,"3021":3022,"3022":3023,"3023":3024,"3024":3025,"3025":3026,"3026":3027,"3027":3028,"3028":3029,"3029":3030,"3030":3031,"3031":3032,"3032":3033,"3033":3034,"3034":3035,"3035":3036,"3036":3037,"3037":3038,"3038":3039,"3039":3040,"3040":3041,"3041":3042,"3042":3043,"3043":3044,"3044":3045,"3045":3046,"3046":3047,"3047":3048,"3048":3049,"3049":3050,"3050":3051,"3051":3052,"3052":3053,"3053":3054,"3054":3055,"3055":3056,"3056":3057,"3057":3058,"3058":3059,"3059":3060,"3060":3061,"3061":3062,"3062":3063,"3063":3064,"3064":3065,"3065":3066,"3066":3067,"3067":3068,"3068":3069,"3069":3070,"3070":3071,"3071":3072,"3072":3073,"3073":3074,"3074":3075,"3075":3076,"3076":3077,"3077":3078,"3078":3079,"3079":3080,"3080":3081,"3081":3082,"3082":3083,"3083":3084,"3084":3085,"3085":3086,"3086":3087,"3087":3088,"3088":3089,"3089":3090,"3090":3091,"3091":3092,"3092":3093,"3093":3094,"3094":3095,"3095":3096,"3096":3097,"3097":3098,"3098":3099,"3099":3100,"3100":3101,"3101":3102,"3102":3103,"3103":3104,"3104":3105,"3105":3106,"3106":3107,"3107":3108,"3108":3109,"3109":3110,"3110":3111,"3111":3112,"3112":3113,"3113":3114,"3114":3115,"3115":3116,"3116":3117,"3117":3118,"3118":3119,"3119":3120,"3120":3121,"3121":3122,"3122":3123,"3123":3124,"3124":3125,"3125":3126,"3126":3127,"3127":3128,"3128":3129,"3129":3130,"3130":3131,"3131":3132,"3132":3133,"3133":3134,"3134":3135,"3135":3136,"3136":3137,"3137":3138,"3138":3139,"3139":3140,"3140":3141,"3141":3142,"3142":3143,"3143":3144,"3144":3145,"3145":3146,"3146":3147,"3147":3148,"3148":3149,"3149":3150,"3150":3151,"3151":3152,"3152":3153,"3153":3154,"3154":3155,"3155":3156,"3156":3157,"3157":3158,"3158":3159,"3159":3160,"3160":3161,"3161":3162,"3162":3163,"3163":3164,"3164":3165,"3165":3166,"3166":3167,"3167":3168,"3168":3169,"3169":3170,"3170":3171,"3171":3172,"3172":3173,"3173":3174,"3174":3175,"3175":3176,"3176":3177,"3177":3178,"3178":3179,"3179":3180,"3180":3181,"3181":3182,"3182":3183,"3183":3184,"3184":3185,"3185":3186,"3186":3187,"3187":3188,"3188":3189,"3189":3190,"3190":3191,"3191":3192,"3192":3193,"3193":3194,"3194":3195,"3195":3196,"3196":3197,"3197":3198,"3198":3199,"3199":3200,"3200":3201,"3201":3202,"3202":3203,"3203":3204,"3204":3205,"3205":3206,"3206":3207,"3207":3208,"3208":3209,"3209":3210,"3210":3211,"3211":3212,"3212":3213,"3213":3214,"3214":3215,"3215":3216,"3216":3217,"3217":3218,"3218":3219,"3219":3220,"3220":3221,"3221":3222,"3222":3223,"3223":3224,"3224":3225,"3225":3226,"3226":3227,"3227":3228,"3228":3229,"3229":3230,"3230":3231,"3231":3232,"3232":3233,"3233":3234,"3234":3235,"3235":3236,"3236":3237,"3237":3238,"3238":3239,"3239":3240,"3240":3241,"3241":3242,"3242":3243,"3243":3244,"3244":3245,"3245":3246,"3246":3247,"3247":3248,"3248":3249,"3249":3250,"3250":3251,"3251":3252,"3252":3253,"3253":3254,"3254":3255,"3255":3256,"3256":3257,"3257":3258,"3258":3259,"3259":3260,"3260":3261,"3261":3262,"3262":3263,"3263":3264,"3264":3265,"3265":3266,"3266":3267,"3267":3268,"3268":3269,"3269":3270,"3270":3271,"3271":3272,"3272":3273,"3273":3274,"3274":3275,"3275":3276,"3276":3277,"3277":3278,"3278":3279,"3279":3280,"3280":3281,"3281":3282,"3282":3283,"3283":3284,"3284":3285,"3285":3286,"3286":3287,"3287":3288,"3288":3289,"3289":3290,"3290":3291,"3291":3292,"3292":3293,"3293":3294,"3294":3295,"3295":3296,"3296":3297,"3297":3298,"3298":3299,"3299":3300,"3300":3301,"3301":3302,"3302":3303,"3303":3304,"3304":3305,"3305":3306,"3306":3307,"3307":3308,"3308":3309,"3309":3310,"3310":3311,"3311":3312,"3312":3313,"3313":3314,"3314":3315,"3315":3316,"3316":3317,"3317":3318,"3318":3319,"3319":3320,"3320":3321,"3321":3322,"3322":3323,"3323":3324,"3324":3325,"3325":3326,"3326":3327,"3327":3328,"3328":3329,"3329":3330,"3330":3331,"3331":3332,"3332":3333,"3333":3334,"3334":3335,"3335":3336,"3336":3337,"3337":3338,"3338":3339,"3339":3340,"3340":3341,"3341":3342,"3342":3343,"3343":3344,"3344":3345,"3345":3346,"3346":3347,"3347":3348,"3348":3349,"3349":3350,"3350":3351,"3351":3352,"3352":3353,"3353":3354,"3354":3355,"3355":3356,"3356":3357,"3357":3358,"3358":3359,"3359":3360,"3360":3361,"3361":3362,"3362":3363,"3363":3364,"3364":3365,"3365":3366,"3366":3367,"3367":3368,"3368":3369,"3369":3370,"3370":3371,"3371":3372,"3372":3373,"3373":3374,"3374":3375,"3375":3376,"3376":3377,"3377":3378,"3378":3379,"3379":3380,"3380":3381,"3381":3382,"3382":3383,"3383":3384,"3384":3385,"3385":3386,"3386":3387,"3387":3388,"3388":3389,"3389":3390,"3390":3391,"3391":3392,"3392":3393,"3393":3394,"3394":3395,"3395":3396,"3396":3397,"3397":3398,"3398":3399,"3399":3400,"3400":3401,"3401":3402,"3402":3403,"3403":3404,"3404":3405,"3405":3406,"3406":3407,"3407":3408,"3408":3409,"3409":3410,"3410":3411,"3411":3412,"3412":3413,"3413":3414,"3414":3415,"3415":3416,"3416":3417,"3417":3418,"3418":3419,"3419":3420,"3420":3421,"3421":3422,"3422":3423,"3423":3424,"3424":3425,"3425":3426,"3426":3427,"3427":3428,"3428":3429,"3429":3430,"3430":3431,"3431":3432,"3432":3433,"3433":3434,"3434":3435,"3435":3436,"3436":3437,"3437":3438,"3438":3439,"3439":3440,"3440":3441,"3441":3442,"3442":3443,"3443":3444,"3444":3445,"3445":3446,"3446":3447,"3447":3448,"3448":3449,"3449":3450,"3450":3451,"3451":3452,"3452":3453,"3453":3454,"3454":3455,"3455":3456,"3456":3457,"3457":3458,"3458":3459,"3459":3460,"3460":3461,"3461":3462,"3462":3463,"3463":3464,"3464":3465,"3465":3466,"3466":3467,"3467":3468,"3468":3469,"3469":3470,"3470":3471,"3471":3472,"3472":3473,"3473":3474,"3474":3475,"3475":3476,"3476":3477,"3477":3478,"3478":3479,"3479":3480,"3480":3481,"3481":3482,"3482":3483,"3483":3484,"3484":3485,"3485":3486,"3486":3487,"3487":3488,"3488":3489,"3489":3490,"3490":3491,"3491":3492,"3492":3493,"3493":3494,"3494":3495,"3495":3496,"3496":3497,"3497":3498,"3498":3499,"3499":3500,"3500":3501,"3501":3502,"3502":3503,"3503":3504,"3504":3505,"3505":3506,"3506":3507,"3507":3508,"3508":3509,"3509":3510,"3510":3511,"3511":3512,"3512":3513,"3513":3514,"3514":3515,"3515":3516,"3516":3517,"3517":3518,"3518":3519,"3519":3520,"3520":3521,"3521":3522,"3522":3523,"3523":3524,"3524":3525,"3525":3526,"3526":3527,"3527":3528,"3528":3529,"3529":3530,"3530":3531,"3531":3532,"3532":3533,"3533":3534,"3534":3535,"3535":3536,"3536":3537,"3537":3538,"3538":3539,"3539":3540,"3540":3541,"3541":3542,"3542":3543,"3543":3544,"3544":3545,"3545":3546,"3546":3547,"3547":3548,"3548":3549,"3549":3550,"3550":3551,"3551":3552,"3552":3553,"3553":3554,"3554":3555,"3555":3556,"3556":3557,"3557":3558,"3558":3559,"3559":3560,"3560":3561,"3561":3562,"3562":3563,"3563":3564,"3564":3565,"3565":3566,"3566":3567,"3567":3568,"3568":3569,"3569":3570,"3570":3571,"3571":3572,"3572":3573,"3573":3574,"3574":3575,"3575":3576,"3576":3577,"3577":3578,"3578":3579,"3579":3580,"3580":3581,"3581":3582,"3582":3583,"3583":3584,"3584":3585,"3585":3586,"3586":3587,"3587":3588,"3588":3589,"3589":3590,"3590":3591,"3591":3592,"3592":3593,"3593":3594,"3594":3595,"3595":3596,"3596":3597,"3597":3598,"3598":3599,"3599":3600,"3600":3601,"3601":3602,"3602":3603,"3603":3604,"3604":3605,"3605":3606,"3606":3607,"3607":3608,"3608":3609,"3609":3610,"3610":3611,"3611":3612,"3612":3613,"3613":3614,"3614":3615,"3615":3616,"3616":3617,"3617":3618,"3618":3619,"3619":3620,"3620":3621,"3621":3622,"3622":3623,"3623":3624,"3624":3625,"3625":3626,"3626":3627,"3627":3628,"3628":3629,"3629":3630,"3630":3631,"3631":3632,"3632":3633,"3633":3634,"3634":3635,"3635":3636,"3636":3637,"3637":3638,"3638":3639,"3639":3640,"3640":3641,"3641":3642,"3642":3643,"3643":3644,"3644":3645,"3645":3646,"3646":3647,"3647":3648,"3648":3649,"3649":3650,"3650":3651,"3651":3652,"3652":3653,"3653":3654,"3654":3655,"3655":3656,"3656":3657,"3657":3658,"3658":3659,"3659":3660,"3660":3661,"3661":3662,"3662":3663,"3663":3664,"3664":3665,"3665":3666,"3666":3667,"3667":3668,"3668":3669,"3669":3670,"3670":3671,"3671":3672,"3672":3673,"3673":3674,"3674":3675,"3675":3676,"3676":3677,"3677":3678,"3678":3679,"3679":3680,"3680":3681,"3681":3682,"3682":3683,"3683":3684,"3684":3685,"3685":3686,"3686":3687,"3687":3688,"3688":3689,"3689":3690,"3690":3691,"3691":3692,"3692":3693,"3693":3694,"3694":3695,"3695":3696,"3696":3697,"3697":3698,"3698":3699,"3699":3700,"3700":3701,"3701":3702,"3702":3703,"3703":3704,"3704":3705,"3705":3706,"3706":3707,"3707":3708,"3708":3709,"3709":3710,"3710":3711,"3711":3712,"3712":3713,"3713":3714,"3714":3715,"3715":3716,"3716":3717,"3717":3718,"3718":3719,"3719":3720,"3720":3721,"3721":3722,"3722":3723,"3723":3724,"3724":3725,"3725":3726,"3726":3727,"3727":3728,"3728":3729,"3729":3730,"3730":3731,"3731":3732,"3732":3733,"3733":3734,"3734":3735,"3735":3736,"3736":3737,"3737":3738,"3738":3739,"3739":3740,"3740":3741,"3741":3742,"3742":3743,"3743":3744,"3744":3745,"3745":3746,"3746":3747,"3747":3748,"3748":3749,"3749":3750,"3750":3751,"3751":3752,"3752":3753,"3753":3754,"3754":3755,"3755":3756,"3756":3757,"3757":3758,"3758":3759,"3759":3760,"3760":3761,"3761":3762,"3762":3763,"3763":3764,"3764":3765,"3765":3766,"3766":3767,"3767":3768,"3768":3769,"3769":3770,"3770":3771,"3771":3772,"3772":3773,"3773":3774,"3774":3775,"3775":3776,"3776":3777,"3777":3778,"3778":3779,"3779":3780,"3780":3781,"3781":3782,"3782":3783,"3783":3784,"3784":3785,"3785":3786,"3786":3787,"3787":3788,"3788":3789,"3789":3790,"3790":3791,"3791":3792,"3792":3793,"3793":3794,"3794":3795,"3795":3796,"3796":3797,"3797":3798,"3798":3799,"3799":3800,"3800":3801,"3801":3802,"3802":3803,"3803":3804,"3804":3805,"3805":3806,"3806":3807,"3807":3808,"3808":3809,"3809":3810,"3810":3811,"3811":3812,"3812":3813,"3813":3814,"3814":3815,"3815":3816,"3816":3817,"3817":3818,"3818":3819,"3819":3820,"3820":3821,"3821":3822,"3822":3823,"3823":3824,"3824":3825,"3825":3826,"3826":3827,"3827":3828,"3828":3829,"3829":3830,"3830":3831,"3831":3832,"3832":3833,"3833":3834,"3834":3835,"3835":3836,"3836":3837,"3837":3838,"3838":3839,"3839":3840,"3840":3841,"3841":3842,"3842":3843,"3843":3844,"3844":3845,"3845":3846,"3846":3847,"3847":3848,"3848":3849,"3849":3850,"3850":3851,"3851":3852,"3852":3853,"3853":3854,"3854":3855,"3855":3856,"3856":3857,"3857":3858,"3858":3859,"3859":3860,"3860":3861,"3861":3862,"3862":3863,"3863":3864,"3864":3865,"3865":3866,"3866":3867,"3867":3868,"3868":3869,"3869":3870,"3870":3871,"3871":3872,"3872":3873,"3873":3874,"3874":3875,"3875":3876,"3876":3877,"3877":3878,"3878":3879,"3879":3880,"3880":3881,"3881":3882,"3882":3883,"3883":3884,"3884":3885,"3885":3886,"3886":3887,"3887":3888,"3888":3889,"3889":3890,"3890":3891,"3891":3892,"3892":3893,"3893":3894,"3894":3895,"3895":3896,"3896":3897,"3897":3898,"3898":3899,"3899":3900,"3900":3901,"3901":3902,"3902":3903,"3903":3904,"3904":3905,"3905":3906,"3906":3907,"3907":3908,"3908":3909,"3909":3910,"3910":3911,"3911":3912,"3912":3913,"3913":3914,"3914":3915,"3915":3916,"3916":3917,"3917":3918,"3918":3919,"3919":3920,"3920":3921,"3921":3922,"3922":3923,"3923":3924,"3924":3925,"3925":3926,"3926":3927,"3927":3928,"3928":3929,"3929":3930,"3930":3931,"3931":3932,"3932":3933,"3933":3934,"3934":3935,"3935":3936,"3936":3937,"3937":3938,"3938":3939,"3939":3940,"3940":3941,"3941":3942,"3942":3943,"3943":3944,"3944":3945,"3945":3946,"3946":3947,"3947":3948,"3948":3949,"3949":3950,"3950":3951,"3951":3952,"3952":3953,"3953":3954,"3954":3955,"3955":3956,"3956":3957,"3957":3958,"3958":3959,"3959":3960,"3960":3961,"3961":3962,"3962":3963,"3963":3964,"3964":3965,"3965":3966,"3966":3967,"3967":3968,"3968":3969,"3969":3970,"3970":3971,"3971":3972,"3972":3973,"3973":3974,"3974":3975,"3975":3976,"3976":3977,"3977":3978,"3978":3979,"3979":3980,"3980":3981,"3981":3982,"3982":3983,"3983":3984,"3984":3985,"3985":3986,"3986":3987,"3987":3988,"3988":3989,"3989":3990,"3990":3991,"3991":3992,"3992":3993,"3993":3994,"3994":3995,"3995":3996,"3996":3997,"3997":3998,"3998":3999,"3999":4000,"4000":4001,"4001":4002,"4002":4003,"4003":4004,"4004":4005,"4005":4006,"4006":4007,"4007":4008,"4008":4009,"4009":4010,"4010":4011,"4011":4012,"4012":4013,"4013":4014,"4014":4015,"4015":4016,"4016":4017,"4017":4018,"4018":4019,"4019":4020,"4020":4021,"4021":4022,"4022":4023,"4023":4024,"4024":4025,"4025":4026,"4026":4027,"4027":4028,"4028":4029,"4029":4030,"4030":4031,"4031":4032,"4032":4033,"4033":4034,"4034":4035,"4035":4036,"4036":4037,"4037":4038,"4038":4039,"4039":4040,"4040":4041,"4041":4042,"4042":4043,"4043":4044,"4044":4045,"4045":4046,"4046":4047,"4047":4048,"4048":4049,"4049":4050,"4050":4051,"4051":4052,"4052":4053,"4053":4054,"4054":4055,"4055":4056,"4056":4057,"4057":4058,"4058":4059,"4059":4060,"4060":4061,"4061":4062,"4062":4063,"4063":4064,"4064":4065,"4065":4066,"4066":4067,"4067":4068,"4068":4069,"4069":4070,"4070":4071,"4071":4072,"4072":4073,"4073":4074,"4074":4075,"4075":4076,"4076":4077,"4077":4078,"4078":4079,"4079":4080,"4080":4081,"4081":4082,"4082":4083,"4083":4084,"4084":4085,"4085":4086,"4086":4087,"4087":4088,"4088":4089,"4089":4090,"4090":4091,"4091":4092,"4092":4093,"4093":4094,"4094":4095,"4095":4096,"4096":4097,"4097":4098,"4098":4099,"4099":4100,"4100":4101,"4101":4102,"4102":4103,"4103":4104,"4104":4105,"4105":4106,"4106":4107,"4107":4108,"4108":4109,"4109":4110,"4110":4111,"4111":4112,"4112":4113,"4113":4114,"4114":4115,"4115":4116,"4116":4117,"4117":4118,"4118":4119,"4119":4120,"4120":4121,"4121":4122,"4122":4123,"4123":4124,"4124":4125,"4125":4126,"4126":4127,"4127":4128,"4128":4129,"4129":4130,"4130":4131,"4131":4132,"4132":4133,"4133":4134,"4134":4135,"4135":4136,"4136":4137,"4137":4138,"4138":4139,"4139":4140,"4140":4141,"4141":4142,"4142":4143,"4143":4144,"4144":4145,"4145":4146,"4146":4147,"4147":4148,"4148":4149,"4149":4150,"4150":4151,"4151":4152,"4152":4153,"4153":4154,"4154":4155,"4155":4156,"4156":4157,"4157":4158,"4158":4159,"4159":4160,"4160":4161,"4161":4162,"4162":4163,"4163":4164,"4164":4165,"4165":4166,"4166":4167,"4167":4168,"4168":4169,"4169":4170,"4170":4171,"4171":4172,"4172":4173,"4173":4174,"4174":4175,"4175":4176,"4176":4177,"4177":4178,"4178":4179,"4179":4180,"4180":4181,"4181":4182,"4182":4183,"4183":4184,"4184":4185,"4185":4186,"4186":4187,"4187":4188,"4188":4189,"4189":4190,"4190":4191,"4191":4192,"4192":4193,"4193":4194,"4194":4195,"4195":4196,"4196":4197,"4197":4198,"4198":4199,"4199":4200,"4200":4201,"4201":4202,"4202":4203,"4203":4204,"4204":4205,"4205":4206,"4206":4207,"4207":4208,"4208":4209,"4209":4210,"4210":4211,"4211":4212,"4212":4213,"4213":4214,"4214":4215,"4215":4216,"4216":4217,"4217":4218,"4218":4219,"4219":4220,"4220":4221,"4221":4222,"4222":4223,"4223":4224,"4224":4225,"4225":4226,"4226":4227,"4227":4228,"4228":4229,"4229":4230,"4230":4231,"4231":4232,"4232":4233,"4233":4234,"4234":4235,"4235":4236,"4236":4237,"4237":4238,"4238":4239,"4239":4240,"4240":4241,"4241":4242,"4242":4243,"4243":4244,"4244":4245,"4245":4246,"4246":4247,"4247":4248,"4248":4249,"4249":4250,"4250":4251,"4251":4252,"4252":4253,"4253":4254,"4254":4255,"4255":4256,"4256":4257,"4257":4258,"4258":4259,"4259":4260,"4260":4261,"4261":4262,"4262":4263,"4263":4264,"4264":4265,"4265":4266,"4266":4267,"4267":4268,"4268":4269,"4269":4270,"4270":4271,"4271":4272,"4272":4273,"4273":4274,"4274":4275,"4275":4276,"4276":4277,"4277":4278,"4278":4279,"4279":4280,"4280":4281,"4281":4282,"4282":4283,"4283":4284,"4284":4285,"4285":4286,"4286":4287,"4287":4288,"4288":4289,"4289":4290,"4290":4291,"4291":4292,"4292":4293,"4293":4294,"4294":4295,"4295":4296,"4296":4297,"4297":4298,"4298":4299,"4299":4300,"4300":4301,"4301":4302,"4302":4303,"4303":4304,"4304":4305,"4305":4306,"4306":4307,"4307":4308,"4308":4309,"4309":4310,"4310":4311,"4311":4312,"4312":4313,"4313":4314,"4314":4315,"4315":4316,"4316":4317,"4317":4318,"4318":4319,"4319":4320,"4320":4321,"4321":4322,"4322":4323,"4323":4324,"4324":4325,"4325":4326,"4326":4327,"4327":4328,"4328":4329,"4329":4330,"4330":4331,"4331":4332,"4332":4333,"4333":4334,"4334":4335,"4335":4336,"4336":4337,"4337":4338,"4338":4339,"4339":4340,"4340":4341,"4341":4342,"4342":4343,"4343":4344,"4344":4345,"4345":4346,"4346":4347,"4347":4348,"4348":4349,"4349":4350,"4350":4351,"4351":4352,"4352":4353,"4353":4354,"4354":4355,"4355":4356,"4356":4357,"4357":4358,"4358":4359,"4359":4360,"4360":4361,"4361":4362,"4362":4363,"4363":4364,"4364":4365,"4365":4366,"4366":4367,"4367":4368,"4368":4369,"4369":4370,"4370":4371,"4371":4372,"4372":4373,"4373":4374,"4374":4375,"4375":4376,"4376":4377,"4377":4378,"4378":4379,"4379":4380,"4380":4381,"4381":4382,"4382":4383,"4383":4384,"4384":4385,"4385":4386,"4386":4387,"4387":4388,"4388":4389,"4389":4390,"4390":4391,"4391":4392,"4392":4393,"4393":4394,"4394":4395,"4395":4396,"4396":4397,"4397":4398,"4398":4399,"4399":4400,"4400":4401,"4401":4402,"4402":4403,"4403":4404,"4404":4405,"4405":4406,"4406":4407,"4407":4408,"4408":4409,"4409":4410,"4410":4411,"4411":4412,"4412":4413,"4413":4414,"4414":4415,"4415":4416,"4416":4417,"4417":4418,"4418":4419,"4419":4420,"4420":4421,"4421":4422,"4422":4423,"4423":4424,"4424":4425,"4425":4426,"4426":4427,"4427":4428,"4428":4429,"4429":4430,"4430":4431,"4431":4432,"4432":4433,"4433":4434,"4434":4435,"4435":4436,"4436":4437,"4437":4438,"4438":4439,"4439":4440,"4440":4441,"4441":4442,"4442":4443,"4443":4444,"4444":4445,"4445":4446,"4446":4447,"4447":4448,"4448":4449,"4449":4450,"4450":4451,"4451":4452,"4452":4453,"4453":4454,"4454":4455,"4455":4456,"4456":4457,"4457":4458,"4458":4459,"4459":4460,"4460":4461,"4461":4462,"4462":4463,"4463":4464,"4464":4465,"4465":4466,"4466":4467,"4467":4468,"4468":4469,"4469":4470,"4470":4471,"4471":4472,"4472":4473,"4473":4474,"4474":4475,"4475":4476,"4476":4477,"4477":4478,"4478":4479,"4479":4480,"4480":4481,"4481":4482,"4482":4483,"4483":4484,"4484":4485,"4485":4486,"4486":4487,"4487":4488,"4488":4489,"4489":4490,"4490":4491,"4491":4492,"4492":4493,"4493":4494,"4494":4495,"4495":4496,"4496":4497,"4497":4498,"4498":4499,"4499":4500,"4500":4501,"4501":4502,"4502":4503,"4503":4504,"4504":4505,"4505":4506,"4506":4507,"4507":4508,"4508":4509,"4509":4510,"4510":4511,"4511":4512,"4512":4513,"4513":4514,"4514":4515,"4515":4516,"4516":4517,"4517":4518,"4518":4519,"4519":4520,"4520":4521,"4521":4522,"4522":4523,"4523":4524,"4524":4525,"4525":4526,"4526":4527,"4527":4528,"4528":4529,"4529":4530,"4530":4531,"4531":4532,"4532":4533,"4533":4534,"4534":4535,"4535":4536,"4536":4537,"4537":4538,"4538":4539,"4539":4540,"4540":4541,"4541":4542,"4542":4543,"4543":4544,"4544":4545,"4545":4546,"4546":4547,"4547":4548,"4548":4549,"4549":4550,"4550":4551,"4551":4552,"4552":4553,"4553":4554,"4554":4555,"4555":4556,"4556":4557,"4557":4558,"4558":4559,"4559":4560,"4560":4561,"4561":4562,"4562":4563,"4563":4564,"4564":4565,"4565":4566,"4566":4567,"4567":4568,"4568":4569,"4569":4570,"4570":4571,"4571":4572,"4572":4573,"4573":4574,"4574":4575,"4575":4576,"4576":4577,"4577":4578,"4578":4579,"4579":4580,"4580":4581,"4581":4582,"4582":4583,"4583":4584,"4584":4585,"4585":4586,"4586":4587,"4587":4588,"4588":4589,"4589":4590,"4590":4591,"4591":4592,"4592":4593,"4593":4594,"4594":4595,"4595":4596,"4596":4597,"4597":4598,"4598":4599,"4599":4600,"4600":4601,"4601":4602,"4602":4603,"4603":4604,"4604":4605,"4605":4606,"4606":4607,"4607":4608,"4608":4609,"4609":4610,"4610":4611,"4611":4612,"4612":4613,"4613":4614,"4614":4615,"4615":4616,"4616":4617,"4617":4618,"4618":4619,"4619":4620,"4620":4621,"4621":4622,"4622":4623,"4623":4624,"4624":4625,"4625":4626,"4626":4627,"4627":4628,"4628":4629,"4629":4630,"4630":4631,"4631":4632,"4632":4633,"4633":4634,"4634":4635,"4635":4636,"4636":4637,"4637":4638,"4638":4639,"4639":4640,"4640":4641,"4641":4642,"4642":4643,"4643":4644,"4644":4645,"4645":4646,"4646":4647,"4647":4648,"4648":4649,"4649":4650,"4650":4651,"4651":4652,"4652":4653,"4653":4654,"4654":4655,"4655":4656,"4656":4657,"4657":4658,"4658":4659,"4659":4660,"4660":4661,"4661":4662,"4662":4663,"4663":4664,"4664":4665,"4665":4666,"4666":4667,"4667":4668,"4668":4669,"4669":4670,"4670":4671,"4671":4672,"4672":4673,"4673":4674,"4674":4675,"4675":4676,"4676":4677,"4677":4678,"4678":4679,"4679":4680,"4680":4681,"4681":4682,"4682":4683,"4683":4684,"4684":4685,"4685":4686,"4686":4687,"4687":4688,"4688":4689,"4689":4690,"4690":4691,"4691":4692,"4692":4693,"4693":4694,"4694":4695,"4695":4696,"4696":4697,"4697":4698,"4698":4699,"4699":4700,"4700":4701,"4701":4702,"4702":4703,"4703":4704,"4704":4705,"4705":4706,"4706":4707,"4707":4708,"4708":4709,"4709":4710,"4710":4711,"4711":4712,"4712":4713,"4713":4714,"4714":4715,"4715":4716,"4716":4717,"4717":4718,"4718":4719,"4719":4720,"4720":4721,"4721":4722,"4722":4723,"4723":4724,"4724":4725,"4725":4726,"4726":4727,"4727":4728,"4728":4729,"4729":4730,"4730":4731,"4731":4732,"4732":4733,"4733":4734,"4734":4735,"4735":4736,"4736":4737,"4737":4738,"4738":4739,"4739":4740,"4740":4741,"4741":4742,"4742":4743,"4743":4744,"4744":4745,"4745":4746,"4746":4747,"4747":4748,"4748":4749,"4749":4750,"4750":4751,"4751":4752,"4752":4753,"4753":4754,"4754":4755,"4755":4756,"4756":4757,"4757":4758,"4758":4759,"4759":4760,"4760":4761,"4761":4762,"4762":4763,"4763":4764,"4764":4765,"4765":4766,"4766":4767,"4767":4768,"4768":4769,"4769":4770,"4770":4771,"4771":4772,"4772":4773,"4773":4774,"4774":4775,"4775":4776,"4776":4777,"4777":4778,"4778":4779,"4779":4780,"4780":4781,"4781":4782,"4782":4783,"4783":4784,"4784":4785,"4785":4786,"4786":4787,"4787":4788,"4788":4789,"4789":4790,"4790":4791,"4791":4792,"4792":4793,"4793":4794,"4794":4795,"4795":4796,"4796":4797,"4797":4798,"4798":4799,"4799":4800,"4800":4801,"4801":4802,"4802":4803,"4803":4804,"4804":4805,"4805":4806,"4806":4807,"4807":4808,"4808":4809,"4809":4810,"4810":4811,"4811":4812,"4812":4813,"4813":4814,"4814":4815,"4815":4816,"4816":4817,"4817":4818,"4818":4819,"4819":4820,"4820":4821,"4821":4822,"4822":4823,"4823":4824,"4824":4825,"4825":4826,"4826":4827,"4827":4828,"4828":4829,"4829":4830,"4830":4831,"4831":4832,"4832":4833,"4833":4834,"4834":4835,"4835":4836,"4836":4837,"4837":4838,"4838":4839,"4839":4840,"4840":4841,"4841":4842,"4842":4843,"4843":4844,"4844":4845,"4845":4846,"4846":4847,"4847":4848,"4848":4849,"4849":4850,"4850":4851,"4851":4852,"4852":4853,"4853":4854,"4854":4855,"4855":4856,"4856":4857,"4857":4858,"4858":4859,"4859":4860,"4860":4861,"4861":4862,"4862":4863,"4863":4864,"4864":4865,"4865":4866,"4866":4867,"4867":4868,"4868":4869,"4869":4870,"4870":4871,"4871":4872,"4872":4873,"4873":4874,"4874":4875,"4875":4876,"4876":4877,"4877":4878,"4878":4879,"4879":4880,"4880":4881,"4881":4882,"4882":4883,"4883":4884,"4884":4885,"4885":4886,"4886":4887,"4887":4888,"4888":4889,"4889":4890,"4890":4891,"4891":4892,"4892":4893,"4893":4894,"4894":4895,"4895":4896,"4896":4897,"4897":4898,"4898":4899,"4899":4900,"4900":4901,"4901":4902,"4902":4903,"4903":4904,"4904":4905,"4905":4906,"4906":4907,"4907":4908,"4908":4909,"4909":4910,"4910":4911,"4911":4912,"4912":4913,"4913":4914,"4914":4915,"4915":4916,"4916":4917,"4917":4918,"4918":4919,"4919":4920,"4920":4921,"4921":4922,"4922":4923,"4923":4924,"4924":4925,"4925":4926,"4926":4927,"4927":4928,"4928":4929,"4929":4930,"4930":4931,"4931":4932,"4932":4933,"4933":4934,"4934":4935,"4935":4936,"4936":4937,"4937":4938,"4938":4939,"4939":4940,"4940":4941,"4941":4942,"4942":4943,"4943":4944,"4944":4945,"4945":4946,"4946":4947,"4947":4948,"4948":4949,"4949":4950,"4950":4951,"4951":4952,"4952":4953,"4953":4954,"4954":4955,"4955":4956,"4956":4957,"4957":4958,"4958":4959,"4959":4960,"4960":4961,"4961":4962,"4962":4963,"4963":4964,"4964":4965,"4965":4966,"4966":4967,"4967":4968,"4968":4969,"4969":4970,"4970":4971,"4971":4972,"4972":4973,"4973":4974,"4974":4975,"4975":4976,"4976":4977,"4977":4978,"4978":4979,"4979":4980,"4980":4981,"4981":4982,"4982":4983,"4983":4984,"4984":4985,"4985":4986,"4986":4987,"4987":4988,"4988":4989,"4989":4990,"4990":4991,"4991":4992,"4992":4993,"4993":4994,"4994":4995,"4995":4996,"4996":4997,"4997":4998,"4998":4999,"4999":5000,"5000":5001,"5001":5002,"5002":5003,"5003":5004,"5004":5005,"5005":5006,"5006":5007,"5007":5008,"5008":5009,"5009":5010,"5010":5011,"5011":5012,"5012":5013,"5013":5014,"5014":5015,"5015":5016,"5016":5017,"5017":5018,"5018":5019,"5019":5020,"5020":5021,"5021":5022,"5022":5023,"5023":5024,"5024":5025,"5025":5026,"5026":5027,"5027":5028,"5028":5029,"5029":5030,"5030":5031,"5031":5032,"5032":5033,"5033":5034,"5034":5035,"5035":5036,"5036":5037,"5037":5038,"5038":5039,"5039":5040,"5040":5041,"5041":5042,"5042":5043,"5043":5044,"5044":5045,"5045":5046,"5046":5047,"5047":5048,"5048":5049,"5049":5050,"5050":5051,"5051":5052,"5052":5053,"5053":5054,"5054":5055,"5055":5056,"5056":5057,"5057":5058,"5058":5059,"5059":5060,"5060":5061,"5061":5062,"5062":5063,"5063":5064,"5064":5065,"5065":5066,"5066":5067,"5067":5068,"5068":5069,"5069":5070,"5070":5071,"5071":5072,"5072":5073,"5073":5074,"5074":5075,"5075":5076,"5076":5077,"5077":5078,"5078":5079,"5079":5080,"5080":5081,"5081":5082,"5082":5083,"5083":5084,"5084":5085,"5085":5086,"5086":5087,"5087":5088,"5088":5089,"5089":5090,"5090":5091,"5091":5092,"5092":5093,"5093":5094,"5094":5095,"5095":5096,"5096":5097,"5097":5098,"5098":5099,"5099":5100,"5100":5101,"5101":5102,"5102":5103,"5103":5104,"5104":5105,"5105":5106,"5106":5107,"5107":5108,"5108":5109,"5109":5110,"5110":5111,"5111":5112,"5112":5113,"5113":5114,"5114":5115,"5115":5116,"5116":5117,"5117":5118,"5118":5119,"5119":5120,"5120":5121,"5121":5122,"5122":5123,"5123":5124,"5124":5125,"5125":5126,"5126":5127,"5127":5128,"5128":5129,"5129":5130,"5130":5131,"5131":5132,"5132":5133,"5133":5134,"5134":5135,"5135":5136,"5136":5137,"5137":5138,"5138":5139,"5139":5140,"5140":5141,"5141":5142,"5142":5143,"5143":5144,"5144":5145,"5145":5146,"5146":5147,"5147":5148,"5148":5149,"5149":5150,"5150":5151,"5151":5152,"5152":5153,"5153":5154,"5154":5155,"5155":5156,"5156":5157,"5157":5158,"5158":5159,"5159":5160,"5160":5161,"5161":5162,"5162":5163,"5163":5164,"5164":5165,"5165":5166,"5166":5167,"5167":5168,"5168":5169,"5169":5170,"5170":5171,"5171":5172,"5172":5173,"5173":5174,"5174":5175,"5175":5176,"5176":5177,"5177":5178,"5178":5179,"5179":5180,"5180":5181,"5181":5182,"5182":5183,"5183":5184,"5184":5185,"5185":5186,"5186":5187,"5187":5188,"5188":5189,"5189":5190,"5190":5191,"5191":5192,"5192":5193,"5193":5194,"5194":5195,"5195":5196,"5196":5197,"5197":5198,"5198":5199,"5199":5200,"5200":5201,"5201":5202,"5202":5203,"5203":5204,"5204":5205,"5205":5206,"5206":5207,"5207":5208,"5208":5209,"5209":5210,"5210":5211,"5211":5212,"5212":5213,"5213":5214,"5214":5215,"5215":5216,"5216":5217,"5217":5218,"5218":5219,"5219":5220,"5220":5221,"5221":5222,"5222":5223,"5223":5224,"5224":5225,"5225":5226,"5226":5227,"5227":5228,"5228":5229,"5229":5230,"5230":5231,"5231":5232,"5232":5233,"5233":5234,"5234":5235,"5235":5236,"5236":5237,"5237":5238,"5238":5239,"5239":5240,"5240":5241,"5241":5242,"5242":5243,"5243":5244,"5244":5245,"5245":5246,"5246":5247,"5247":5248,"5248":5249,"5249":5250,"5250":5251,"5251":5252,"5252":5253,"5253":5254,"5254":5255,"5255":5256,"5256":5257,"5257":5258,"5258":5259,"5259":5260,"5260":5261,"5261":5262,"5262":5263,"5263":5264,"5264":5265,"5265":5266,"5266":5267,"5267":5268,"5268":5269,"5269":5270,"5270":5271,"5271":5272,"5272":5273,"5273":5274,"5274":5275,"5275":5276,"5276":5277,"5277":5278,"5278":5279,"5279":5280,"5280":5281,"5281":5282,"5282":5283,"5283":5284,"5284":5285,"5285":5286,"5286":5287,"5287":5288,"5288":5289,"5289":5290,"5290":5291,"5291":5292,"5292":5293,"5293":5294,"5294":5295,"5295":5296,"5296":5297,"5297":5298,"5298":5299,"5299":5300,"5300":5301,"5301":5302,"5302":5303,"5303":5304,"5304":5305,"5305":5306,"5306":5307,"5307":5308,"5308":5309,"5309":5310,"5310":5311,"5311":5312,"5312":5313,"5313":5314,"5314":5315,"5315":5316,"5316":5317,"5317":5318,"5318":5319,"5319":5320,"5320":5321,"5321":5322,"5322":5323,"5323":5324,"5324":5325,"5325":5326,"5326":5327,"5327":5328,"5328":5329,"5329":5330,"5330":5331,"5331":5332,"5332":5333,"5333":5334,"5334":5335,"5335":5336,"5336":5337,"5337":5338,"5338":5339,"5339":5340,"5340":5341,"5341":5342,"5342":5343,"5343":5344,"5344":5345,"5345":5346,"5346":5347,"5347":5348,"5348":5349,"5349":5350,"5350":5351,"5351":5352,"5352":5353,"5353":5354,"5354":5355,"5355":5356,"5356":5357,"5357":5358,"5358":5359,"5359":5360,"5360":5361,"5361":5362,"5362":5363,"5363":5364,"5364":5365,"5365":5366,"5366":5367,"5367":5368,"5368":5369,"5369":5370,"5370":5371,"5371":5372,"5372":5373,"5373":5374,"5374":5375,"5375":5376,"5376":5377,"5377":5378,"5378":5379,"5379":5380,"5380":5381,"5381":5382,"5382":5383,"5383":5384,"5384":5385,"5385":5386,"5386":5387,"5387":5388,"5388":5389,"5389":5390,"5390":5391,"5391":5392,"5392":5393,"5393":5394,"5394":5395,"5395":5396,"5396":5397,"5397":5398,"5398":5399,"5399":5400,"5400":5401,"5401":5402,"5402":5403,"5403":5404,"5404":5405,"5405":5406,"5406":5407,"5407":5408,"5408":5409,"5409":5410,"5410":5411,"5411":5412,"5412":5413,"5413":5414,"5414":5415,"5415":5416,"5416":5417,"5417":5418,"5418":5419,"5419":5420,"5420":5421,"5421":5422,"5422":5423,"5423":5424,"5424":5425,"5425":5426,"5426":5427,"5427":5428,"5428":5429,"5429":5430,"5430":5431,"5431":5432,"5432":5433,"5433":5434,"5434":5435,"5435":5436,"5436":5437,"5437":5438,"5438":5439,"5439":5440,"5440":5441,"5441":5442,"5442":5443,"5443":5444,"5444":5445,"5445":5446,"5446":5447,"5447":5448,"5448":5449,"5449":5450,"5450":5451,"5451":5452,"5452":5453,"5453":5454,"5454":5455,"5455":5456,"5456":5457,"5457":5458,"5458":5459,"5459":5460,"5460":5461,"5461":5462,"5462":5463,"5463":5464,"5464":5465,"5465":5466,"5466":5467,"5467":5468,"5468":5469,"5469":5470,"5470":5471,"5471":5472,"5472":5473,"5473":5474,"5474":5475,"5475":5476,"5476":5477,"5477":5478,"5478":5479,"5479":5480,"5480":5481,"5481":5482,"5482":5483,"5483":5484,"5484":5485,"5485":5486,"5486":5487,"5487":5488,"5488":5489,"5489":5490,"5490":5491,"5491":5492,"5492":5493,"5493":5494,"5494":5495,"5495":5496,"5496":5497,"5497":5498,"5498":5499,"5499":5500,"5500":5501,"5501":5502,"5502":5503,"5503":5504,"5504":5505,"5505":5506,"5506":5507,"5507":5508,"5508":5509,"5509":5510,"5510":5511,"5511":5512,"5512":5513,"5513":5514,"5514":5515,"5515":5516,"5516":5517,"5517":5518,"5518":5519,"5519":5520,"5520":5521,"5521":5522,"5522":5523,"5523":5524,"5524":5525,"5525":5526,"5526":5527,"5527":5528,"5528":5529,"5529":5530,"5530":5531,"5531":5532,"5532":5533,"5533":5534,"5534":5535,"5535":5536,"5536":5537,"5537":5538,"5538":5539,"5539":5540,"5540":5541,"5541":5542,"5542":5543,"5543":5544,"5544":5545,"5545":5546,"5546":5547,"5547":5548,"5548":5549,"5549":5550,"5550":5551,"5551":5552,"5552":5553,"5553":5554,"5554":5555,"5555":5556,"5556":5557,"5557":5558,"5558":5559,"5559":5560,"5560":5561,"5561":5562,"5562":5563,"5563":5564,"5564":5565,"5565":5566,"5566":5567,"5567":5568,"5568":5569,"5569":5570,"5570":5571,"5571":5572,"5572":5573,"5573":5574,"5574":5575,"5575":5576,"5576":5577,"5577":5578,"5578":5579,"5579":5580,"5580":5581,"5581":5582,"5582":5583,"5583":5584,"5584":5585,"5585":5586,"5586":5587,"5587":5588,"5588":5589,"5589":5590,"5590":5591,"5591":5592,"5592":5593,"5593":5594,"5594":5595,"5595":5596,"5596":5597,"5597":5598,"5598":5599,"5599":5600,"5600":5601,"5601":5602,"5602":5603,"5603":5604,"5604":5605,"5605":5606,"5606":5607,"5607":5608,"5608":5609,"5609":5610,"5610":5611,"5611":5612,"5612":5613,"5613":5614,"5614":5615,"5615":5616,"5616":5617,"5617":5618,"5618":5619,"5619":5620,"5620":5621,"5621":5622,"5622":5623,"5623":5624,"5624":5625,"5625":5626,"5626":5627,"5627":5628,"5628":5629,"5629":5630,"5630":5631,"5631":5632,"5632":5633,"5633":5634,"5634":5635,"5635":5636,"5636":5637,"5637":5638,"5638":5639,"5639":5640,"5640":5641,"5641":5642,"5642":5643,"5643":5644,"5644":5645,"5645":5646,"5646":5647,"5647":5648,"5648":5649,"5649":5650,"5650":5651,"5651":5652,"5652":5653,"5653":5654,"5654":5655,"5655":5656,"5656":5657,"5657":5658,"5658":5659,"5659":5660,"5660":5661,"5661":5662,"5662":5663,"5663":5664,"5664":5665,"5665":5666,"5666":5667,"5667":5668,"5668":5669,"5669":5670,"5670":5671,"5671":5672,"5672":5673,"5673":5674,"5674":5675,"5675":5676,"5676":5677,"5677":5678,"5678":5679,"5679":5680,"5680":5681,"5681":5682,"5682":5683,"5683":5684,"5684":5685,"5685":5686,"5686":5687,"5687":5688,"5688":5689,"5689":5690,"5690":5691,"5691":5692,"5692":5693,"5693":5694,"5694":5695,"5695":5696,"5696":5697,"5697":5698,"5698":5699,"5699":5700,"5700":5701,"5701":5702,"5702":5703,"5703":5704,"5704":5705,"5705":5706,"5706":5707,"5707":5708,"5708":5709,"5709":5710,"5710":5711,"5711":5712,"5712":5713,"5713":5714,"5714":5715,"5715":5716,"5716":5717,"5717":5718,"5718":5719,"5719":5720,"5720":5721,"5721":5722,"5722":5723,"5723":5724,"5724":5725,"5725":5726,"5726":5727,"5727":5728,"5728":5729,"5729":5730,"5730":5731,"5731":5732,"5732":5733,"5733":5734,"5734":5735,"5735":5736,"5736":5737,"5737":5738,"5738":5739,"5739":5740,"5740":5741,"5741":5742,"5742":5743,"5743":5744,"5744":5745,"5745":5746,"5746":5747,"5747":5748,"5748":5749,"5749":5750,"5750":5751,"5751":5752,"5752":5753,"5753":5754,"5754":5755,"5755":5756,"5756":5757,"5757":5758,"5758":5759,"5759":5760,"5760":5761,"5761":5762,"5762":5763,"5763":5764,"5764":5765,"5765":5766,"5766":5767,"5767":5768,"5768":5769,"5769":5770,"5770":5771,"5771":5772,"5772":5773,"5773":5774,"5774":5775,"5775":5776,"5776":5777,"5777":5778,"5778":5779,"5779":5780,"5780":5781,"5781":5782,"5782":5783,"5783":5784,"5784":5785,"5785":5786,"5786":5787,"5787":5788,"5788":5789,"5789":5790,"5790":5791,"5791":5792,"5792":5793,"5793":5794,"5794":5795,"5795":5796,"5796":5797,"5797":5798,"5798":5799,"5799":5800,"5800":5801,"5801":5802,"5802":5803,"5803":5804,"5804":5805,"5805":5806,"5806":5807,"5807":5808,"5808":5809,"5809":5810,"5810":5811,"5811":5812,"5812":5813,"5813":5814,"5814":5815,"5815":5816,"5816":5817,"5817":5818,"5818":5819,"5819":5820,"5820":5821,"5821":5822,"5822":5823,"5823":5824,"5824":5825,"5825":5826,"5826":5827,"5827":5828,"5828":5829,"5829":5830,"5830":5831,"5831":5832,"5832":5833,"5833":5834,"5834":5835,"5835":5836,"5836":5837,"5837":5838,"5838":5839,"5839":5840,"5840":5841,"5841":5842,"5842":5843,"5843":5844,"5844":5845,"5845":5846,"5846":5847,"5847":5848,"5848":5849,"5849":5850,"5850":5851,"5851":5852,"5852":5853,"5853":5854,"5854":5855,"5855":5856,"5856":5857,"5857":5858,"5858":5859,"5859":5860,"5860":5861,"5861":5862,"5862":5863,"5863":5864,"5864":5865,"5865":5866,"5866":5867,"5867":5868,"5868":5869,"5869":5870,"5870":5871,"5871":5872,"5872":5873,"5873":5874,"5874":5875,"5875":5876,"5876":5877,"5877":5878,"5878":5879,"5879":5880,"5880":5881,"5881":5882,"5882":5883,"5883":5884,"5884":5885,"5885":5886,"5886":5887,"5887":5888,"5888":5889,"5889":5890,"5890":5891,"5891":5892,"5892":5893,"5893":5894,"5894":5895,"5895":5896,"5896":5897,"5897":5898,"5898":5899,"5899":5900,"5900":5901,"5901":5902,"5902":5903,"5903":5904,"5904":5905,"5905":5906,"5906":5907,"5907":5908,"5908":5909,"5909":5910,"5910":5911,"5911":5912,"5912":5913,"5913":5914,"5914":5915,"5915":5916,"5916":5917,"5917":5918,"5918":5919,"5919":5920,"5920":5921,"5921":5922,"5922":5923,"5923":5924,"5924":5925,"5925":5926,"5926":5927,"5927":5928,"5928":5929,"5929":5930,"5930":5931,"5931":5932,"5932":5933,"5933":5934,"5934":5935,"5935":5936,"5936":5937,"5937":5938,"5938":5939,"5939":5940,"5940":5941,"5941":5942,"5942":5943,"5943":5944,"5944":5945,"5945":5946,"5946":5947,"5947":5948,"5948":5949,"5949":5950,"5950":5951,"5951":5952,"5952":5953,"5953":5954,"5954":5955,"5955":5956,"5956":5957,"5957":5958,"5958":5959,"5959":5960,"5960":5961,"5961":5962,"5962":5963,"5963":5964,"5964":5965,"5965":5966,"5966":5967,"5967":5968,"5968":5969,"5969":5970,"5970":5971,"5971":5972,"5972":5973,"5973":5974,"5974":5975,"5975":5976,"5976":5977,"5977":5978,"5978":5979,"5979":5980,"5980":5981,"5981":5982,"5982":5983,"5983":5984,"5984":5985,"5985":5986,"5986":5987,"5987":5988,"5988":5989,"5989":5990,"5990":5991,"5991":5992,"5992":5993,"5993":5994,"5994":5995,"5995":5996,"5996":5997,"5997":5998,"5998":5999,"5999":6000,"6000":6001,"6001":6002,"6002":6003,"6003":6004,"6004":6005,"6005":6006,"6006":6007,"6007":6008,"6008":6009,"6009":6010,"6010":6011,"6011":6012,"6012":6013,"6013":6014,"6014":6015,"6015":6016,"6016":6017,"6017":6018,"6018":6019,"6019":6020,"6020":6021,"6021":6022,"6022":6023,"6023":6024,"6024":6025,"6025":6026,"6026":6027,"6027":6028,"6028":6029,"6029":6030,"6030":6031,"6031":6032,"6032":6033,"6033":6034,"6034":6035,"6035":6036,"6036":6037,"6037":6038,"6038":6039,"6039":6040,"6040":6041,"6041":6042,"6042":6043,"6043":6044,"6044":6045,"6045":6046,"6046":6047,"6047":6048,"6048":6049,"6049":6050,"6050":6051,"6051":6052,"6052":6053,"6053":6054,"6054":6055,"6055":6056,"6056":6057,"6057":6058,"6058":6059,"6059":6060,"6060":6061,"6061":6062,"6062":6063,"6063":6064,"6064":6065,"6065":6066,"6066":6067,"6067":6068,"6068":6069,"6069":6070,"6070":6071,"6071":6072,"6072":6073,"6073":6074,"6074":6075,"6075":6076,"6076":6077,"6077":6078,"6078":6079,"6079":6080,"6080":6081,"6081":6082,"6082":6083,"6083":6084,"6084":6085,"6085":6086,"6086":6087,"6087":6088,"6088":6089,"6089":6090,"6090":6091,"6091":6092,"6092":6093,"6093":6094,"6094":6095,"6095":6096,"6096":6097,"6097":6098,"6098":6099,"6099":6100,"6100":6101,"6101":6102,"6102":6103,"6103":6104,"6104":6105,"6105":6106,"6106":6107,"6107":6108,"6108":6109,"6109":6110,"6110":6111,"6111":6112,"6112":6113,"6113":6114,"6114":6115,"6115":6116,"6116":6117,"6117":6118,"6118":6119,"6119":6120,"6120":6121,"6121":6122,"6122":6123,"6123":6124,"6124":6125,"6125":6126,"6126":6127,"6127":6128,"6128":6129,"6129":6130,"6130":6131,"6131":6132,"6132":6133,"6133":6134,"6134":6135,"6135":6136,"6136":6137,"6137":6138,"6138":6139,"6139":6140,"6140":6141,"6141":6142,"6142":6143,"6143":6144,"6144":6145,"6145":6146,"6146":6147,"6147":6148,"6148":6149,"6149":6150,"6150":6151,"6151":6152,"6152":6153,"6153":6154,"6154":6155,"6155":6156,"6156":6157,"6157":6158,"6158":6159,"6159":6160,"6160":6161,"6161":6162,"6162":6163,"6163":6164,"6164":6165,"6165":6166,"6166":6167,"6167":6168,"6168":6169,"6169":6170,"6170":6171,"6171":6172,"6172":6173,"6173":6174,"6174":6175,"6175":6176,"6176":6177,"6177":6178,"6178":6179,"6179":6180,"6180":6181,"6181":6182,"6182":6183,"6183":6184,"6184":6185,"6185":6186,"6186":6187,"6187":6188,"6188":6189,"6189":6190,"6190":6191,"6191":6192,"6192":6193,"6193":6194,"6194":6195,"6195":6196,"6196":6197,"6197":6198,"6198":6199,"6199":6200,"6200":6201,"6201":6202,"6202":6203,"6203":6204,"6204":6205,"6205":6206,"6206":6207,"6207":6208,"6208":6209,"6209":6210,"6210":6211,"6211":6212,"6212":6213,"6213":6214,"6214":6215,"6215":6216,"6216":6217,"6217":6218,"6218":6219,"6219":6220,"6220":6221,"6221":6222,"6222":6223,"6223":6224,"6224":6225,"6225":6226,"6226":6227,"6227":6228,"6228":6229,"6229":6230,"6230":6231,"6231":6232,"6232":6233,"6233":6234,"6234":6235,"6235":6236,"6236":6237,"6237":6238,"6238":6239,"6239":6240,"6240":6241,"6241":6242,"6242":6243,"6243":6244,"6244":6245,"6245":6246,"6246":6247,"6247":6248,"6248":6249,"6249":6250,"6250":6251,"6251":6252,"6252":6253,"6253":6254,"6254":6255,"6255":6256,"6256":6257,"6257":6258,"6258":6259,"6259":6260,"6260":6261,"6261":6262,"6262":6263,"6263":6264,"6264":6265,"6265":6266,"6266":6267,"6267":6268,"6268":6269,"6269":6270,"6270":6271,"6271":6272,"6272":6273,"6273":6274,"6274":6275,"6275":6276,"6276":6277,"6277":6278,"6278":6279,"6279":6280,"6280":6281,"6281":6282,"6282":6283,"6283":6284,"6284":6285,"6285":6286,"6286":6287,"6287":6288,"6288":6289,"6289":6290,"6290":6291,"6291":6292,"6292":6293,"6293":6294,"6294":6295,"6295":6296,"6296":6297,"6297":6298,"6298":6299,"6299":6300,"6300":6301,"6301":6302,"6302":6303,"6303":6304,"6304":6305,"6305":6306,"6306":6307,"6307":6308,"6308":6309,"6309":6310,"6310":6311,"6311":6312,"6312":6313,"6313":6314,"6314":6315,"6315":6316,"6316":6317,"6317":6318,"6318":6319,"6319":6320,"6320":6321,"6321":6322,"6322":6323,"6323":6324,"6324":6325,"6325":6326,"6326":6327,"6327":6328,"6328":6329,"6329":6330,"6330":6331,"6331":6332,"6332":6333,"6333":6334,"6334":6335,"6335":6336,"6336":6337,"6337":6338,"6338":6339,"6339":6340,"6340":6341,"6341":6342,"6342":6343,"6343":6344,"6344":6345,"6345":6346,"6346":6347,"6347":6348,"6348":6349,"6349":6350,"6350":6351,"6351":6352,"6352":6353,"6353":6354,"6354":6355,"6355":6356,"6356":6357,"6357":6358,"6358":6359,"6359":6360,"6360":6361,"6361":6362,"6362":6363,"6363":6364,"6364":6365,"6365":6366,"6366":6367,"6367":6368,"6368":6369,"6369":6370,"6370":6371,"6371":6372,"6372":6373,"6373":6374,"6374":6375,"6375":6376,"6376":6377,"6377":6378,"6378":6379,"6379":6380,"6380":6381,"6381":6382,"6382":6383,"6383":6384,"6384":6385,"6385":6386,"6386":6387,"6387":6388,"6388":6389,"6389":6390,"6390":6391,"6391":6392,"6392":6393,"6393":6394,"6394":6395,"6395":6396,"6396":6397,"6397":6398,"6398":6399,"6399":6400,"6400":6401,"6401":6402,"6402":6403,"6403":6404,"6404":6405,"6405":6406,"6406":6407,"6407":6408,"6408":6409,"6409":6410,"6410":6411,"6411":6412,"6412":6413,"6413":6414,"6414":6415,"6415":6416,"6416":6417,"6417":6418,"6418":6419,"6419":6420,"6420":6421,"6421":6422,"6422":6423,"6423":6424,"6424":6425,"6425":6426,"6426":6427,"6427":6428,"6428":6429,"6429":6430,"6430":6431,"6431":6432,"6432":6433,"6433":6434,"6434":6435,"6435":6436,"6436":6437,"6437":6438,"6438":6439,"6439":6440,"6440":6441,"6441":6442,"6442":6443,"6443":6444,"6444":6445,"6445":6446,"6446":6447,"6447":6448,"6448":6449,"6449":6450,"6450":6451,"6451":6452,"6452":6453,"6453":6454,"6454":6455,"6455":6456,"6456":6457,"6457":6458,"6458":6459,"6459":6460,"6460":6461,"6461":6462,"6462":6463,"6463":6464,"6464":6465,"6465":6466,"6466":6467,"6467":6468,"6468":6469,"6469":6470,"6470":6471,"6471":6472,"6472":6473,"6473":6474,"6474":6475,"6475":6476,"6476":6477,"6477":6478,"6478":6479,"6479":6480,"6480":6481,"6481":6482,"6482":6483,"6483":6484,"6484":6485,"6485":6486,"6486":6487,"6487":6488,"6488":6489,"6489":6490,"6490":6491,"6491":6492,"6492":6493,"6493":6494,"6494":6495,"6495":6496,"6496":6497,"6497":6498,"6498":6499,"6499":6500,"6500":6501,"6501":6502,"6502":6503,"6503":6504,"6504":6505,"6505":6506,"6506":6507,"6507":6508,"6508":6509,"6509":6510,"6510":6511,"6511":6512,"6512":6513,"6513":6514,"6514":6515,"6515":6516,"6516":6517,"6517":6518,"6518":6519,"6519":6520,"6520":6521,"6521":6522,"6522":6523,"6523":6524,"6524":6525,"6525":6526,"6526":6527,"6527":6528,"6528":6529,"6529":6530,"6530":6531,"6531":6532,"6532":6533,"6533":6534,"6534":6535,"6535":6536,"6536":6537,"6537":6538,"6538":6539,"6539":6540,"6540":6541,"6541":6542,"6542":6543,"6543":6544,"6544":6545,"6545":6546,"6546":6547,"6547":6548,"6548":6549,"6549":6550,"6550":6551,"6551":6552,"6552":6553,"6553":6554,"6554":6555,"6555":6556,"6556":6557,"6557":6558,"6558":6559,"6559":6560,"6560":6561,"6561":6562,"6562":6563,"6563":6564,"6564":6565,"6565":6566,"6566":6567,"6567":6568,"6568":6569,"6569":6570,"6570":6571,"6571":6572,"6572":6573,"6573":6574,"6574":6575,"6575":6576,"6576":6577,"6577":6578,"6578":6579,"6579":6580,"6580":6581,"6581":6582,"6582":6583,"6583":6584,"6584":6585,"6585":6586,"6586":6587,"6587":6588,"6588":6589,"6589":6590,"6590":6591,"6591":6592,"6592":6593,"6593":6594,"6594":6595,"6595":6596,"6596":6597,"6597":6598,"6598":6599,"6599":6600,"6600":6601,"6601":6602,"6602":6603,"6603":6604,"6604":6605,"6605":6606,"6606":6607,"6607":6608,"6608":6609,"6609":6610,"6610":6611,"6611":6612,"6612":6613,"6613":6614,"6614":6615,"6615":6616,"6616":6617,"6617":6618,"6618":6619,"6619":6620,"6620":6621,"6621":6622,"6622":6623,"6623":6624,"6624":6625,"6625":6626,"6626":6627,"6627":6628,"6628":6629,"6629":6630,"6630":6631,"6631":6632,"6632":6633,"6633":6634,"6634":6635,"6635":6636,"6636":6637,"6637":6638,"6638":6639,"6639":6640,"6640":6641,"6641":6642,"6642":6643,"6643":6644,"6644":6645,"6645":6646,"6646":6647,"6647":6648,"6648":6649,"6649":6650,"6650":6651,"6651":6652,"6652":6653,"6653":6654,"6654":6655,"6655":6656,"6656":6657,"6657":6658,"6658":6659,"6659":6660,"6660":6661,"6661":6662,"6662":6663,"6663":6664,"6664":6665,"6665":6666,"6666":6667,"6667":6668,"6668":6669,"6669":6670,"6670":6671,"6671":6672,"6672":6673,"6673":6674,"6674":6675,"6675":6676,"6676":6677,"6677":6678,"6678":6679,"6679":6680,"6680":6681,"6681":6682,"6682":6683,"6683":6684,"6684":6685,"6685":6686,"6686":6687,"6687":6688,"6688":6689,"6689":6690,"6690":6691,"6691":6692,"6692":6693,"6693":6694,"6694":6695,"6695":6696,"6696":6697,"6697":6698,"6698":6699,"6699":6700,"6700":6701,"6701":6702,"6702":6703,"6703":6704,"6704":6705,"6705":6706,"6706":6707,"6707":6708,"6708":6709,"6709":6710,"6710":6711,"6711":6712,"6712":6713,"6713":6714,"6714":6715,"6715":6716,"6716":6717,"6717":6718,"6718":6719,"6719":6720,"6720":6721,"6721":6722,"6722":6723,"6723":6724,"6724":6725,"6725":6726,"6726":6727,"6727":6728,"6728":6729,"6729":6730,"6730":6731,"6731":6732,"6732":6733,"6733":6734,"6734":6735,"6735":6736,"6736":6737,"6737":6738,"6738":6739,"6739":6740,"6740":6741,"6741":6742,"6742":6743,"6743":6744,"6744":6745,"6745":6746,"6746":6747,"6747":6748,"6748":6749,"6749":6750,"6750":6751,"6751":6752,"6752":6753,"6753":6754,"6754":6755,"6755":6756,"6756":6757,"6757":6758,"6758":6759,"6759":6760,"6760":6761,"6761":6762,"6762":6763,"6763":6764,"6764":6765,"6765":6766,"6766":6767,"6767":6768,"6768":6769,"6769":6770,"6770":6771,"6771":6772,"6772":6773,"6773":6774,"6774":6775,"6775":6776,"6776":6777,"6777":6778,"6778":6779,"6779":6780,"6780":6781,"6781":6782,"6782":6783,"6783":6784,"6784":6785,"6785":6786,"6786":6787,"6787":6788,"6788":6789,"6789":6790,"6790":6791,"6791":6792,"6792":6793,"6793":6794,"6794":6795,"6795":6796,"6796":6797,"6797":6798,"6798":6799,"6799":6800,"6800":6801,"6801":6802,"6802":6803,"6803":6804,"6804":6805,"6805":6806,"6806":6807,"6807":6808,"6808":6809,"6809":6810,"6810":6811,"6811":6812,"6812":6813,"6813":6814,"6814":6815,"6815":6816,"6816":6817,"6817":6818,"6818":6819,"6819":6820,"6820":6821,"6821":6822,"6822":6823,"6823":6824,"6824":6825,"6825":6826,"6826":6827,"6827":6828,"6828":6829,"6829":6830,"6830":6831,"6831":6832,"6832":6833,"6833":6834,"6834":6835,"6835":6836,"6836":6837,"6837":6838,"6838":6839,"6839":6840,"6840":6841,"6841":6842,"6842":6843,"6843":6844,"6844":6845,"6845":6846,"6846":6847,"6847":6848,"6848":6849,"6849":6850,"6850":6851,"6851":6852,"6852":6853,"6853":6854,"6854":6855,"6855":6856,"6856":6857,"6857":6858,"6858":6859,"6859":6860,"6860":6861,"6861":6862,"6862":6863,"6863":6864,"6864":6865,"6865":6866,"6866":6867,"6867":6868,"6868":6869,"6869":6870,"6870":6871,"6871":6872,"6872":6873,"6873":6874,"6874":6875,"6875":6876,"6876":6877,"6877":6878,"6878":6879,"6879":6880,"6880":6881,"6881":6882,"6882":6883,"6883":6884,"6884":6885,"6885":6886,"6886":6887,"6887":6888,"6888":6889,"6889":6890,"6890":6891,"6891":6892,"6892":6893,"6893":6894,"6894":6895,"6895":6896,"6896":6897,"6897":6898,"6898":6899,"6899":6900,"6900":6901,"6901":6902,"6902":6903,"6903":6904,"6904":6905,"6905":6906,"6906":6907,"6907":6908,"6908":6909,"6909":6910,"6910":6911,"6911":6912,"6912":6913,"6913":6914,"6914":6915,"6915":6916,"6916":6917,"6917":6918,"6918":6919,"6919":6920,"6920":6921,"6921":6922,"6922":6923,"6923":6924,"6924":6925,"6925":6926,"6926":6927,"6927":6928,"6928":6929,"6929":6930,"6930":6931,"6931":6932,"6932":6933,"6933":6934,"6934":6935,"6935":6936,"6936":6937,"6937":6938,"6938":6939,"6939":6940,"6940":6941,"6941":6942,"6942":6943,"6943":6944,"6944":6945,"6945":6946,"6946":6947,"6947":6948,"6948":6949,"6949":6950,"6950":6951,"6951":6952,"6952":6953,"6953":6954,"6954":6955,"6955":6956,"6956":6957,"6957":6958,"6958":6959,"6959":6960,"6960":6961,"6961":6962,"6962":6963,"6963":6964,"6964":6965,"6965":6966,"6966":6967,"6967":6968,"6968":6969,"6969":6970,"6970":6971,"6971":6972,"6972":6973,"6973":6974,"6974":6975,"6975":6976,"6976":6977,"6977":6978,"6978":6979,"6979":6980,"6980":6981,"6981":6982,"6982":6983,"6983":6984,"6984":6985,"6985":6986,"6986":6987,"6987":6988,"6988":6989,"6989":6990,"6990":6991,"6991":6992,"6992":6993,"6993":6994,"6994":6995,"6995":6996,"6996":6997,"6997":6998,"6998":6999,"6999":7000,"7000":7001,"7001":7002,"7002":7003,"7003":7004,"7004":7005,"7005":7006,"7006":7007,"7007":7008,"7008":7009,"7009":7010,"7010":7011,"7011":7012,"7012":7013,"7013":7014,"7014":7015,"7015":7016,"7016":7017,"7017":7018,"7018":7019,"7019":7020,"7020":7021,"7021":7022,"7022":7023,"7023":7024,"7024":7025,"7025":7026,"7026":7027,"7027":7028,"7028":7029,"7029":7030,"7030":7031,"7031":7032,"7032":7033,"7033":7034,"7034":7035,"7035":7036,"7036":7037,"7037":7038,"7038":7039,"7039":7040,"7040":7041,"7041":7042,"7042":7043,"7043":7044,"7044":7045,"7045":7046,"7046":7047,"7047":7048,"7048":7049,"7049":7050,"7050":7051,"7051":7052,"7052":7053,"7053":7054,"7054":7055,"7055":7056,"7056":7057,"7057":7058,"7058":7059,"7059":7060,"7060":7061,"7061":7062,"7062":7063,"7063":7064,"7064":7065,"7065":7066,"7066":7067,"7067":7068,"7068":7069,"7069":7070,"7070":7071,"7071":7072,"7072":7073,"7073":7074,"7074":7075,"7075":7076,"7076":7077,"7077":7078,"7078":7079,"7079":7080,"7080":7081,"7081":7082,"7082":7083,"7083":7084,"7084":7085,"7085":7086,"7086":7087,"7087":7088,"7088":7089,"7089":7090,"7090":7091,"7091":7092,"7092":7093,"7093":7094,"7094":7095,"7095":7096,"7096":7097,"7097":7098,"7098":7099,"7099":7100,"7100":7101,"7101":7102,"7102":7103,"7103":7104,"7104":7105,"7105":7106,"7106":7107,"7107":7108,"7108":7109,"7109":7110,"7110":7111,"7111":7112,"7112":7113,"7113":7114,"7114":7115,"7115":7116,"7116":7117,"7117":7118,"7118":7119,"7119":7120,"7120":7121,"7121":7122,"7122":7123,"7123":7124,"7124":7125,"7125":7126,"7126":7127,"7127":7128,"7128":7129,"7129":7130,"7130":7131,"7131":7132,"7132":7133,"7133":7134,"7134":7135,"7135":7136,"7136":7137,"7137":7138,"7138":7139,"7139":7140,"7140":7141,"7141":7142,"7142":7143,"7143":7144,"7144":7145,"7145":7146,"7146":7147,"7147":7148,"7148":7149,"7149":7150,"7150":7151,"7151":7152,"7152":7153,"7153":7154,"7154":7155,"7155":7156,"7156":7157,"7157":7158,"7158":7159,"7159":7160,"7160":7161,"7161":7162,"7162":7163,"7163":7164,"7164":7165,"7165":7166,"7166":7167,"7167":7168,"7168":7169,"7169":7170,"7170":7171,"7171":7172,"7172":7173,"7173":7174,"7174":7175,"7175":7176,"7176":7177,"7177":7178,"7178":7179,"7179":7180,"7180":7181,"7181":7182,"7182":7183,"7183":7184,"7184":7185,"7185":7186,"7186":7187,"7187":7188,"7188":7189,"7189":7190,"7190":7191,"7191":7192,"7192":7193,"7193":7194,"7194":7195,"7195":7196,"7196":7197,"7197":7198,"7198":7199,"7199":7200,"7200":7201,"7201":7202,"7202":7203,"7203":7204,"7204":7205,"7205":7206,"7206":7207,"7207":7208,"7208":7209,"7209":7210,"7210":7211,"7211":7212,"7212":7213,"7213":7214,"7214":7215,"7215":7216,"7216":7217,"7217":7218,"7218":7219,"7219":7220,"7220":7221,"7221":7222,"7222":7223,"7223":7224,"7224":7225,"7225":7226,"7226":7227,"7227":7228,"7228":7229,"7229":7230,"7230":7231,"7231":7232,"7232":7233,"7233":7234,"7234":7235,"7235":7236,"7236":7237,"7237":7238,"7238":7239,"7239":7240,"7240":7241,"7241":7242,"7242":7243,"7243":7244,"7244":7245,"7245":7246,"7246":7247,"7247":7248,"7248":7249,"7249":7250,"7250":7251,"7251":7252,"7252":7253,"7253":7254,"7254":7255,"7255":7256,"7256":7257,"7257":7258,"7258":7259,"7259":7260,"7260":7261,"7261":7262,"7262":7263,"7263":7264,"7264":7265,"7265":7266,"7266":7267,"7267":7268,"7268":7269,"7269":7270,"7270":7271,"7271":7272,"7272":7273,"7273":7274,"7274":7275,"7275":7276,"7276":7277,"7277":7278,"7278":7279,"7279":7280,"7280":7281,"7281":7282,"7282":7283,"7283":7284,"7284":7285,"7285":7286,"7286":7287,"7287":7288,"7288":7289,"7289":7290,"7290":7291,"7291":7292,"7292":7293,"7293":7294,"7294":7295,"7295":7296,"7296":7297,"7297":7298,"7298":7299,"7299":7300,"7300":7301,"7301":7302,"7302":7303,"7303":7304,"7304":7305,"7305":7306,"7306":7307,"7307":7308,"7308":7309,"7309":7310,"7310":7311,"7311":7312,"7312":7313,"7313":7314,"7314":7315,"7315":7316,"7316":7317,"7317":7318,"7318":7319,"7319":7320,"7320":7321,"7321":7322,"7322":7323,"7323":7324,"7324":7325,"7325":7326,"7326":7327,"7327":7328,"7328":7329,"7329":7330,"7330":7331,"7331":7332,"7332":7333,"7333":7334,"7334":7335,"7335":7336,"7336":7337,"7337":7338,"7338":7339,"7339":7340,"7340":7341,"7341":7342,"7342":7343,"7343":7344,"7344":7345,"7345":7346,"7346":7347,"7347":7348,"7348":7349,"7349":7350,"7350":7351,"7351":7352,"7352":7353,"7353":7354,"7354":7355,"7355":7356,"7356":7357,"7357":7358,"7358":7359,"7359":7360,"7360":7361,"7361":7362,"7362":7363,"7363":7364,"7364":7365,"7365":7366,"7366":7367,"7367":7368,"7368":7369,"7369":7370,"7370":7371,"7371":7372,"7372":7373,"7373":7374,"7374":7375,"7375":7376,"7376":7377,"7377":7378,"7378":7379,"7379":7380,"7380":7381,"7381":7382,"7382":7383,"7383":7384,"7384":7385,"7385":7386,"7386":7387,"7387":7388,"7388":7389,"7389":7390,"7390":7391,"7391":7392,"7392":7393,"7393":7394,"7394":7395,"7395":7396,"7396":7397,"7397":7398,"7398":7399,"7399":7400,"7400":7401,"7401":7402,"7402":7403,"7403":7404,"7404":7405,"7405":7406,"7406":7407,"7407":7408,"7408":7409,"7409":7410,"7410":7411,"7411":7412,"7412":7413,"7413":7414,"7414":7415,"7415":7416,"7416":7417,"7417":7418,"7418":7419,"7419":7420,"7420":7421,"7421":7422,"7422":7423,"7423":7424,"7424":7425,"7425":7426,"7426":7427,"7427":7428,"7428":7429,"7429":7430,"7430":7431,"7431":7432,"7432":7433,"7433":7434,"7434":7435,"7435":7436,"7436":7437,"7437":7438,"7438":7439,"7439":7440,"7440":7441,"7441":7442,"7442":7443,"7443":7444,"7444":7445,"7445":7446,"7446":7447,"7447":7448,"7448":7449,"7449":7450,"7450":7451,"7451":7452,"7452":7453,"7453":7454,"7454":7455,"7455":7456,"7456":7457,"7457":7458,"7458":7459,"7459":7460,"7460":7461,"7461":7462,"7462":7463,"7463":7464,"7464":7465,"7465":7466,"7466":7467,"7467":7468,"7468":7469,"7469":7470,"7470":7471,"7471":7472,"7472":7473,"7473":7474,"7474":7475,"7475":7476,"7476":7477,"7477":7478,"7478":7479,"7479":7480,"7480":7481,"7481":7482,"7482":7483,"7483":7484,"7484":7485,"7485":7486,"7486":7487,"7487":7488,"7488":7489,"7489":7490,"7490":7491,"7491":7492,"7492":7493,"7493":7494,"7494":7495,"7495":7496,"7496":7497,"7497":7498,"7498":7499,"7499":7500,"7500":7501,"7501":7502,"7502":7503,"7503":7504,"7504":7505,"7505":7506,"7506":7507,"7507":7508,"7508":7509,"7509":7510,"7510":7511,"7511":7512,"7512":7513,"7513":7514,"7514":7515,"7515":7516,"7516":7517,"7517":7518,"7518":7519,"7519":7520,"7520":7521,"7521":7522,"7522":7523,"7523":7524,"7524":7525,"7525":7526,"7526":7527,"7527":7528,"7528":7529,"7529":7530,"7530":7531,"7531":7532,"7532":7533,"7533":7534,"7534":7535,"7535":7536,"7536":7537,"7537":7538,"7538":7539,"7539":7540,"7540":7541,"7541":7542,"7542":7543,"7543":7544,"7544":7545,"7545":7546,"7546":7547,"7547":7548,"7548":7549,"7549":7550,"7550":7551,"7551":7552,"7552":7553,"7553":7554,"7554":7555,"7555":7556,"7556":7557,"7557":7558,"7558":7559,"7559":7560,"7560":7561,"7561":7562,"7562":7563,"7563":7564,"7564":7565,"7565":7566,"7566":7567,"7567":7568,"7568":7569,"7569":7570,"7570":7571,"7571":7572,"7572":7573,"7573":7574,"7574":7575,"7575":7576,"7576":7577,"7577":7578,"7578":7579,"7579":7580,"7580":7581,"7581":7582,"7582":7583,"7583":7584,"7584":7585,"7585":7586,"7586":7587,"7587":7588,"7588":7589,"7589":7590,"7590":7591,"7591":7592,"7592":7593,"7593":7594,"7594":7595,"7595":7596,"7596":7597,"7597":7598,"7598":7599,"7599":7600,"7600":7601,"7601":7602,"7602":7603,"7603":7604,"7604":7605,"7605":7606,"7606":7607,"7607":7608,"7608":7609,"7609":7610,"7610":7611,"7611":7612,"7612":7613,"7613":7614,"7614":7615,"7615":7616,"7616":7617,"7617":7618,"7618":7619,"7619":7620,"7620":7621,"7621":7622,"7622":7623,"7623":7624,"7624":7625,"7625":7626,"7626":7627,"7627":7628,"7628":7629,"7629":7630,"7630":7631,"7631":7632,"7632":7633,"7633":7634,"7634":7635,"7635":7636,"7636":7637,"7637":7638,"7638":7639,"7639":7640,"7640":7641,"7641":7642,"7642":7643,"7643":7644,"7644":7645,"7645":7646,"7646":7647,"7647":7648,"7648":7649,"7649":7650,"7650":7651,"7651":7652,"7652":7653,"7653":7654,"7654":7655,"7655":7656,"7656":7657,"7657":7658,"7658":7659,"7659":7660,"7660":7661,"7661":7662,"7662":7663,"7663":7664,"7664":7665,"7665":7666,"7666":7667,"7667":7668,"7668":7669,"7669":7670,"7670":7671,"7671":7672,"7672":7673,"7673":7674,"7674":7675,"7675":7676,"7676":7677,"7677":7678,"7678":7679,"7679":7680,"7680":7681,"7681":7682,"7682":7683,"7683":7684,"7684":7685,"7685":7686,"7686":7687,"7687":7688,"7688":7689,"7689":7690,"7690":7691,"7691":7692,"7692":7693,"7693":7694,"7694":7695,"7695":7696,"7696":7697,"7697":7698,"7698":7699,"7699":7700,"7700":7701,"7701":7702,"7702":7703,"7703":7704,"7704":7705,"7705":7706,"7706":7707,"7707":7708,"7708":7709,"7709":7710,"7710":7711,"7711":7712,"7712":7713,"7713":7714,"7714":7715,"7715":7716,"7716":7717,"7717":7718,"7718":7719,"7719":7720,"7720":7721,"7721":7722,"7722":7723,"7723":7724,"7724":7725,"7725":7726,"7726":7727,"7727":7728,"7728":7729,"7729":7730,"7730":7731,"7731":7732,"7732":7733,"7733":7734,"7734":7735,"7735":7736,"7736":7737,"7737":7738,"7738":7739,"7739":7740,"7740":7741,"7741":7742,"7742":7743,"7743":7744,"7744":7745,"7745":7746,"7746":7747,"7747":7748,"7748":7749,"7749":7750,"7750":7751,"7751":7752,"7752":7753,"7753":7754,"7754":7755,"7755":7756,"7756":7757,"7757":7758,"7758":7759,"7759":7760,"7760":7761,"7761":7762,"7762":7763,"7763":7764,"7764":7765,"7765":7766,"7766":7767,"7767":7768,"7768":7769,"7769":7770,"7770":7771,"7771":7772,"7772":7773,"7773":7774,"7774":7775,"7775":7776,"7776":7777,"7777":7778,"7778":7779,"7779":7780,"7780":7781,"7781":7782,"7782":7783,"7783":7784,"7784":7785,"7785":7786,"7786":7787,"7787":7788,"7788":7789,"7789":7790,"7790":7791,"7791":7792,"7792":7793,"7793":7794,"7794":7795,"7795":7796,"7796":7797,"7797":7798,"7798":7799,"7799":7800,"7800":7801,"7801":7802,"7802":7803,"7803":7804,"7804":7805,"7805":7806,"7806":7807,"7807":7808,"7808":7809,"7809":7810,"7810":7811,"7811":7812,"7812":7813,"7813":7814,"7814":7815,"7815":7816,"7816":7817,"7817":7818,"7818":7819,"7819":7820,"7820":7821,"7821":7822,"7822":7823,"7823":7824,"7824":7825,"7825":7826,"7826":7827,"7827":7828,"7828":7829,"7829":7830,"7830":7831,"7831":7832,"7832":7833,"7833":7834,"7834":7835,"7835":7836,"7836":7837,"7837":7838,"7838":7839,"7839":7840,"7840":7841,"7841":7842,"7842":7843,"7843":7844,"7844":7845,"7845":7846,"7846":7847,"7847":7848,"7848":7849,"7849":7850,"7850":7851,"7851":7852,"7852":7853,"7853":7854,"7854":7855,"7855":7856,"7856":7857,"7857":7858,"7858":7859,"7859":7860,"7860":7861,"7861":7862,"7862":7863,"7863":7864,"7864":7865,"7865":7866,"7866":7867,"7867":7868,"7868":7869,"7869":7870,"7870":7871,"7871":7872,"7872":7873,"7873":7874,"7874":7875,"7875":7876,"7876":7877,"7877":7878,"7878":7879,"7879":7880,"7880":7881,"7881":7882,"7882":7883,"7883":7884,"7884":7885,"7885":7886,"7886":7887,"7887":7888,"7888":7889,"7889":7890,"7890":7891,"7891":7892,"7892":7893,"7893":7894,"7894":7895,"7895":7896,"7896":7897,"7897":7898,"7898":7899,"7899":7900,"7900":7901,"7901":7902,"7902":7903,"7903":7904,"7904":7905,"7905":7906,"7906":7907,"7907":7908,"7908":7909,"7909":7910,"7910":7911,"7911":7912,"7912":7913,"7913":7914,"7914":7915,"7915":7916,"7916":7917,"7917":7918,"7918":7919,"7919":7920,"7920":7921,"7921":7922,"7922":7923,"7923":7924,"7924":7925,"7925":7926,"7926":7927,"7927":7928,"7928":7929,"7929":7930,"7930":7931,"7931":7932,"7932":7933,"7933":7934,"7934":7935,"7935":7936,"7936":7937,"7937":7938,"7938":7939,"7939":7940,"7940":7941,"7941":7942,"7942":7943,"7943":7944,"7944":7945,"7945":7946,"7946":7947,"7947":7948,"7948":7949,"7949":7950,"7950":7951,"7951":7952,"7952":7953,"7953":7954,"7954":7955,"7955":7956,"7956":7957,"7957":7958,"7958":7959,"7959":7960,"7960":7961,"7961":7962,"7962":7963,"7963":7964,"7964":7965,"7965":7966,"7966":7967,"7967":7968,"7968":7969,"7969":7970,"7970":7971,"7971":7972,"7972":7973,"7973":7974,"7974":7975,"7975":7976,"7976":7977,"7977":7978,"7978":7979,"7979":7980,"7980":7981,"7981":7982,"7982":7983,"7983":7984,"7984":7985,"7985":7986,"7986":7987,"7987":7988,"7988":7989,"7989":7990,"7990":7991,"7991":7992,"7992":7993,"7993":7994,"7994":7995,"7995":7996,"7996":7997,"7997":7998,"7998":7999,"7999":8000,"8000":8001,"8001":8002,"8002":8003,"8003":8004,"8004":8005,"8005":8006,"8006":8007,"8007":8008,"8008":8009,"8009":8010,"8010":8011,"8011":8012,"8012":8013,"8013":8014,"8014":8015,"8015":8016,"8016":8017,"8017":8018,"8018":8019,"8019":8020,"8020":8021,"8021":8022,"8022":8023,"8023":8024,"8024":8025,"8025":8026,"8026":8027,"8027":8028,"8028":8029,"8029":8030,"8030":8031,"8031":8032,"8032":8033,"8033":8034,"8034":8035,"8035":8036,"8036":8037,"8037":8038,"8038":8039,"8039":8040,"8040":8041,"8041":8042,"8042":8043,"8043":8044,"8044":8045,"8045":8046,"8046":8047,"8047":8048,"8048":8049,"8049":8050,"8050":8051,"8051":8052,"8052":8053,"8053":8054,"8054":8055,"8055":8056,"8056":8057,"8057":8058,"8058":8059,"8059":8060,"8060":8061,"8061":8062,"8062":8063,"8063":8064,"8064":8065,"8065":8066,"8066":8067,"8067":8068,"8068":8069,"8069":8070,"8070":8071,"8071":8072,"8072":8073,"8073":8074,"8074":8075,"8075":8076,"8076":8077,"8077":8078,"8078":8079,"8079":8080,"8080":8081,"8081":8082,"8082":8083,"8083":8084,"8084":8085,"8085":8086,"8086":8087,"8087":8088,"8088":8089,"8089":8090,"8090":8091,"8091":8092,"8092":8093,"8093":8094,"8094":8095,"8095":8096,"8096":8097,"8097":8098,"8098":8099,"8099":8100,"8100":8101,"8101":8102,"8102":8103,"8103":8104,"8104":8105,"8105":8106,"8106":8107,"8107":8108,"8108":8109,"8109":8110,"8110":8111,"8111":8112,"8112":8113,"8113":8114,"8114":8115,"8115":8116,"8116":8117,"8117":8118,"8118":8119,"8119":8120,"8120":8121,"8121":8122,"8122":8123,"8123":8124,"8124":8125,"8125":8126,"8126":8127,"8127":8128,"8128":8129,"8129":8130,"8130":8131,"8131":8132,"8132":8133,"8133":8134,"8134":8135,"8135":8136,"8136":8137,"8137":8138,"8138":8139,"8139":8140,"8140":8141,"8141":8142,"8142":8143,"8143":8144,"8144":8145,"8145":8146,"8146":8147,"8147":8148,"8148":8149,"8149":8150,"8150":8151,"8151":8152,"8152":8153,"8153":8154,"8154":8155,"8155":8156,"8156":8157,"8157":8158,"8158":8159,"8159":8160,"8160":8161,"8161":8162,"8162":8163,"8163":8164,"8164":8165,"8165":8166,"8166":8167,"8167":8168,"8168":8169,"8169":8170,"8170":8171,"8171":8172,"8172":8173,"8173":8174,"8174":8175,"8175":8176,"8176":8177,"8177":8178,"8178":8179,"8179":8180,"8180":8181,"8181":8182,"8182":8183,"8183":8184,"8184":8185,"8185":8186,"8186":8187,"8187":8188,"8188":8189,"8189":8190,"8190":8191,"8191":8192,"8192":8193,"8193":8194,"8194":8195,"8195":8196,"8196":8197,"8197":8198,"8198":8199,"8199":8200,"8200":8201,"8201":8202,"8202":8203,"8203":8204,"8204":8205,"8205":8206,"8206":8207,"8207":8208,"8208":8209,"8209":8210,"8210":8211,"8211":8212,"8212":8213,"8213":8214,"8214":8215,"8215":8216,"8216":8217,"8217":8218,"8218":8219,"8219":8220,"8220":8221,"8221":8222,"8222":8223,"8223":8224,"8224":8225,"8225":8226,"8226":8227,"8227":8228,"8228":8229,"8229":8230,"8230":8231,"8231":8232,"8232":8233,"8233":8234,"8234":8235,"8235":8236,"8236":8237,"8237":8238,"8238":8239,"8239":8240,"8240":8241,"8241":8242,"8242":8243,"8243":8244,"8244":8245,"8245":8246,"8246":8247,"8247":8248,"8248":8249,"8249":8250,"8250":8251,"8251":8252,"8252":8253,"8253":8254,"8254":8255,"8255":8256,"8256":8257,"8257":8258,"8258":8259,"8259":8260,"8260":8261,"8261":8262,"8262":8263,"8263":8264,"8264":8265,"8265":8266,"8266":8267,"8267":8268,"8268":8269,"8269":8270,"8270":8271,"8271":8272,"8272":8273,"8273":8274,"8274":8275,"8275":8276,"8276":8277,"8277":8278,"8278":8279,"8279":8280,"8280":8281,"8281":8282,"8282":8283,"8283":8284,"8284":8285,"8285":8286,"8286":8287,"8287":8288,"8288":8289,"8289":8290,"8290":8291,"8291":8292,"8292":8293,"8293":8294,"8294":8295,"8295":8296,"8296":8297,"8297":8298,"8298":8299,"8299":8300,"8300":8301,"8301":8302,"8302":8303,"8303":8304,"8304":8305,"8305":8306,"8306":8307,"8307":8308,"8308":8309,"8309":8310,"8310":8311,"8311":8312,"8312":8313,"8313":8314,"8314":8315,"8315":8316,"8316":8317,"8317":8318,"8318":8319,"8319":8320,"8320":8321,"8321":8322,"8322":8323,"8323":8324,"8324":8325,"8325":8326,"8326":8327,"8327":8328,"8328":8329,"8329":8330,"8330":8331,"8331":8332,"8332":8333,"8333":8334,"8334":8335,"8335":8336,"8336":8337,"8337":8338,"8338":8339,"8339":8340,"8340":8341,"8341":8342,"8342":8343,"8343":8344,"8344":8345,"8345":8346,"8346":8347,"8347":8348,"8348":8349,"8349":8350,"8350":8351,"8351":8352,"8352":8353,"8353":8354,"8354":8355,"8355":8356,"8356":8357,"8357":8358,"8358":8359,"8359":8360,"8360":8361,"8361":8362,"8362":8363,"8363":8364,"8364":8365,"8365":8366,"8366":8367,"8367":8368,"8368":8369,"8369":8370,"8370":8371,"8371":8372,"8372":8373,"8373":8374,"8374":8375,"8375":8376,"8376":8377,"8377":8378,"8378":8379,"8379":8380,"8380":8381,"8381":8382,"8382":8383,"8383":8384,"8384":8385,"8385":8386,"8386":8387,"8387":8388,"8388":8389,"8389":8390,"8390":8391,"8391":8392,"8392":8393,"8393":8394,"8394":8395,"8395":8396,"8396":8397,"8397":8398,"8398":8399,"8399":8400,"8400":8401,"8401":8402,"8402":8403,"8403":8404,"8404":8405,"8405":8406,"8406":8407,"8407":8408,"8408":8409,"8409":8410,"8410":8411,"8411":8412,"8412":8413,"8413":8414,"8414":8415,"8415":8416,"8416":8417,"8417":8418,"8418":8419,"8419":8420,"8420":8421,"8421":8422,"8422":8423,"8423":8424,"8424":8425,"8425":8426,"8426":8427,"8427":8428,"8428":8429,"8429":8430,"8430":8431,"8431":8432,"8432":8433,"8433":8434,"8434":8435,"8435":8436,"8436":8437,"8437":8438,"8438":8439,"8439":8440,"8440":8441,"8441":8442,"8442":8443,"8443":8444,"8444":8445,"8445":8446,"8446":8447,"8447":8448,"8448":8449,"8449":8450,"8450":8451,"8451":8452,"8452":8453,"8453":8454,"8454":8455,"8455":8456,"8456":8457,"8457":8458,"8458":8459,"8459":8460,"8460":8461,"8461":8462,"8462":8463,"8463":8464,"8464":8465,"8465":8466,"8466":8467,"8467":8468,"8468":8469,"8469":8470,"8470":8471,"8471":8472,"8472":8473,"8473":8474,"8474":8475,"8475":8476,"8476":8477,"8477":8478,"8478":8479,"8479":8480,"8480":8481,"8481":8482,"8482":8483,"8483":8484,"8484":8485,"8485":8486,"8486":8487,"8487":8488,"8488":8489,"8489":8490,"8490":8491,"8491":8492,"8492":8493,"8493":8494,"8494":8495,"8495":8496,"8496":8497,"8497":8498,"8498":8499,"8499":8500,"8500":8501,"8501":8502,"8502":8503,"8503":8504,"8504":8505,"8505":8506,"8506":8507,"8507":8508,"8508":8509,"8509":8510,"8510":8511,"8511":8512,"8512":8513,"8513":8514,"8514":8515,"8515":8516,"8516":8517,"8517":8518,"8518":8519,"8519":8520,"8520":8521,"8521":8522,"8522":8523,"8523":8524,"8524":8525,"8525":8526,"8526":8527,"8527":8528,"8528":8529,"8529":8530,"8530":8531,"8531":8532,"8532":8533,"8533":8534,"8534":8535,"8535":8536,"8536":8537,"8537":8538,"8538":8539,"8539":8540,"8540":8541,"8541":8542,"8542":8543,"8543":8544,"8544":8545,"8545":8546,"8546":8547,"8547":8548,"8548":8549,"8549":8550,"8550":8551,"8551":8552,"8552":8553,"8553":8554,"8554":8555,"8555":8556,"8556":8557,"8557":8558,"8558":8559,"8559":8560,"8560":8561,"8561":8562,"8562":8563,"8563":8564,"8564":8565,"8565":8566,"8566":8567,"8567":8568,"8568":8569,"8569":8570,"8570":8571,"8571":8572,"8572":8573,"8573":8574,"8574":8575,"8575":8576,"8576":8577,"8577":8578,"8578":8579,"8579":8580,"8580":8581,"8581":8582,"8582":8583,"8583":8584,"8584":8585,"8585":8586,"8586":8587,"8587":8588,"8588":8589,"8589":8590,"8590":8591,"8591":8592,"8592":8593,"8593":8594,"8594":8595,"8595":8596,"8596":8597,"8597":8598,"8598":8599,"8599":8600,"8600":8601,"8601":8602,"8602":8603,"8603":8604,"8604":8605,"8605":8606,"8606":8607,"8607":8608,"8608":8609,"8609":8610,"8610":8611,"8611":8612,"8612":8613,"8613":8614,"8614":8615,"8615":8616,"8616":8617,"8617":8618,"8618":8619,"8619":8620,"8620":8621,"8621":8622,"8622":8623,"8623":8624,"8624":8625,"8625":8626,"8626":8627,"8627":8628,"8628":8629,"8629":8630,"8630":8631,"8631":8632,"8632":8633,"8633":8634,"8634":8635,"8635":8636,"8636":8637,"8637":8638,"8638":8639,"8639":8640,"8640":8641,"8641":8642,"8642":8643,"8643":8644,"8644":8645,"8645":8646,"8646":8647,"8647":8648,"8648":8649,"8649":8650,"8650":8651,"8651":8652,"8652":8653,"8653":8654,"8654":8655,"8655":8656,"8656":8657,"8657":8658,"8658":8659,"8659":8660,"8660":8661,"8661":8662,"8662":8663,"8663":8664,"8664":8665,"8665":8666,"8666":8667,"8667":8668,"8668":8669,"8669":8670,"8670":8671,"8671":8672,"8672":8673,"8673":8674,"8674":8675,"8675":8676,"8676":8677,"8677":8678,"8678":8679,"8679":8680,"8680":8681,"8681":8682,"8682":8683,"8683":8684,"8684":8685,"8685":8686,"8686":8687,"8687":8688,"8688":8689,"8689":8690,"8690":8691,"8691":8692,"8692":8693,"8693":8694,"8694":8695,"8695":8696,"8696":8697,"8697":8698,"8698":8699,"8699":8700,"8700":8701,"8701":8702,"8702":8703,"8703":8704,"8704":8705,"8705":8706,"8706":8707,"8707":8708,"8708":8709,"8709":8710,"8710":8711,"8711":8712,"8712":8713,"8713":8714,"8714":8715,"8715":8716,"8716":8717,"8717":8718,"8718":8719,"8719":8720,"8720":8721,"8721":8722,"8722":8723,"8723":8724,"8724":8725,"8725":8726,"8726":8727,"8727":8728,"8728":8729,"8729":8730,"8730":8731,"8731":8732,"8732":8733,"8733":8734,"8734":8735,"8735":8736,"8736":8737,"8737":8738,"8738":8739,"8739":8740,"8740":8741,"8741":8742,"8742":8743,"8743":8744,"8744":8745,"8745":8746,"8746":8747,"8747":8748,"8748":8749,"8749":8750,"8750":8751,"8751":8752,"8752":8753,"8753":8754,"8754":8755,"8755":8756,"8756":8757,"8757":8758,"8758":8759,"8759":8760,"8760":8761,"8761":8762,"8762":8763,"8763":8764,"8764":8765,"8765":8766,"8766":8767,"8767":8768,"8768":8769,"8769":8770,"8770":8771,"8771":8772,"8772":8773,"8773":8774,"8774":8775,"8775":8776,"8776":8777,"8777":8778,"8778":8779,"8779":8780,"8780":8781,"8781":8782,"8782":8783,"8783":8784,"8784":8785,"8785":8786,"8786":8787,"8787":8788,"8788":8789,"8789":8790,"8790":8791,"8791":8792,"8792":8793,"8793":8794,"8794":8795,"8795":8796,"8796":8797,"8797":8798,"8798":8799,"8799":8800,"8800":8801,"8801":8802,"8802":8803,"8803":8804,"8804":8805,"8805":8806,"8806":8807,"8807":8808,"8808":8809,"8809":8810,"8810":8811,"8811":8812,"8812":8813,"8813":8814,"8814":8815,"8815":8816,"8816":8817,"8817":8818,"8818":8819,"8819":8820,"8820":8821,"8821":8822,"8822":8823,"8823":8824,"8824":8825,"8825":8826,"8826":8827,"8827":8828,"8828":8829,"8829":8830,"8830":8831,"8831":8832,"8832":8833,"8833":8834,"8834":8835,"8835":8836,"8836":8837,"8837":8838,"8838":8839,"8839":8840,"8840":8841,"8841":8842,"8842":8843,"8843":8844,"8844":8845,"8845":8846,"8846":8847,"8847":8848,"8848":8849,"8849":8850,"8850":8851,"8851":8852,"8852":8853,"8853":8854,"8854":8855,"8855":8856,"8856":8857,"8857":8858,"8858":8859,"8859":8860,"8860":8861,"8861":8862,"8862":8863,"8863":8864,"8864":8865,"8865":8866,"8866":8867,"8867":8868,"8868":8869,"8869":8870,"8870":8871,"8871":8872,"8872":8873,"8873":8874,"8874":8875,"8875":8876,"8876":8877,"8877":8878,"8878":8879,"8879":8880,"8880":8881,"8881":8882,"8882":8883,"8883":8884,"8884":8885,"8885":8886,"8886":8887,"8887":8888,"8888":8889,"8889":8890,"8890":8891,"8891":8892,"8892":8893,"8893":8894,"8894":8895,"8895":8896,"8896":8897,"8897":8898,"8898":8899,"8899":8900,"8900":8901,"8901":8902,"8902":8903,"8903":8904,"8904":8905,"8905":8906,"8906":8907,"8907":8908,"8908":8909,"8909":8910,"8910":8911,"8911":8912,"8912":8913,"8913":8914,"8914":8915,"8915":8916,"8916":8917,"8917":8918,"8918":8919,"8919":8920,"8920":8921,"8921":8922,"8922":8923,"8923":8924,"8924":8925,"8925":8926,"8926":8927,"8927":8928,"8928":8929,"8929":8930,"8930":8931,"8931":8932,"8932":8933,"8933":8934,"8934":8935,"8935":8936,"8936":8937,"8937":8938,"8938":8939,"8939":8940,"8940":8941,"8941":8942,"8942":8943,"8943":8944,"8944":8945,"8945":8946,"8946":8947,"8947":8948,"8948":8949,"8949":8950,"8950":8951,"8951":8952,"8952":8953,"8953":8954,"8954":8955,"8955":8956,"8956":8957,"8957":8958,"8958":8959,"8959":8960,"8960":8961,"8961":8962,"8962":8963,"8963":8964,"8964":8965,"8965":8966,"8966":8967,"8967":8968,"8968":8969,"8969":8970,"8970":8971,"8971":8972,"8972":8973,"8973":8974,"8974":8975,"8975":8976,"8976":8977,"8977":8978,"8978":8979,"8979":8980,"8980":8981,"8981":8982,"8982":8983,"8983":8984,"8984":8985,"8985":8986,"8986":8987,"8987":8988,"8988":8989,"8989":8990,"8990":8991,"8991":8992,"8992":8993,"8993":8994,"8994":8995,"8995":8996,"8996":8997,"8997":8998,"8998":8999,"8999":9000,"9000":9001,"9001":9002,"9002":9003,"9003":9004,"9004":9005,"9005":9006,"9006":9007,"9007":9008,"9008":9009,"9009":9010,"9010":9011,"9011":9012,"9012":9013,"9013":9014,"9014":9015,"9015":9016,"9016":9017,"9017":9018,"9018":9019,"9019":9020,"9020":9021,"9021":9022,"9022":9023,"9023":9024,"9024":9025,"9025":9026,"9026":9027,"9027":9028,"9028":9029,"9029":9030,"9030":9031,"9031":9032,"9032":9033,"9033":9034,"9034":9035,"9035":9036,"9036":9037,"9037":9038,"9038":9039,"9039":9040,"9040":9041,"9041":9042,"9042":9043,"9043":9044,"9044":9045,"9045":9046,"9046":9047,"9047":9048,"9048":9049,"9049":9050,"9050":9051,"9051":9052,"9052":9053,"9053":9054,"9054":9055,"9055":9056,"9056":9057,"9057":9058,"9058":9059,"9059":9060,"9060":9061,"9061":9062,"9062":9063,"9063":9064,"9064":9065,"9065":9066,"9066":9067,"9067":9068,"9068":9069,"9069":9070,"9070":9071,"9071":9072,"9072":9073,"9073":9074,"9074":9075,"9075":9076,"9076":9077,"9077":9078,"9078":9079,"9079":9080,"9080":9081,"9081":9082,"9082":9083,"9083":9084,"9084":9085,"9085":9086,"9086":9087,"9087":9088,"9088":9089,"9089":9090,"9090":9091,"9091":9092,"9092":9093,"9093":9094,"9094":9095,"9095":9096,"9096":9097,"9097":9098,"9098":9099,"9099":9100,"9100":9101,"9101":9102,"9102":9103,"9103":9104,"9104":9105,"9105":9106,"9106":9107,"9107":9108,"9108":9109,"9109":9110,"9110":9111,"9111":9112,"9112":9113,"9113":9114,"9114":9115,"9115":9116,"9116":9117,"9117":9118,"9118":9119,"9119":9120,"9120":9121,"9121":9122,"9122":9123,"9123":9124,"9124":9125,"9125":9126,"9126":9127,"9127":9128,"9128":9129,"9129":9130,"9130":9131,"9131":9132,"9132":9133,"9133":9134,"9134":9135,"9135":9136,"9136":9137,"9137":9138,"9138":9139,"9139":9140,"9140":9141,"9141":9142,"9142":9143,"9143":9144,"9144":9145,"9145":9146,"9146":9147,"9147":9148,"9148":9149,"9149":9150,"9150":9151,"9151":9152,"9152":9153,"9153":9154,"9154":9155,"9155":9156,"9156":9157,"9157":9158,"9158":9159,"9159":9160,"9160":9161,"9161":9162,"9162":9163,"9163":9164,"9164":9165,"9165":9166,"9166":9167,"9167":9168,"9168":9169,"9169":9170,"9170":9171,"9171":9172,"9172":9173,"9173":9174,"9174":9175,"9175":9176,"9176":9177,"9177":9178,"9178":9179,"9179":9180,"9180":9181,"9181":9182,"9182":9183,"9183":9184,"9184":9185,"9185":9186,"9186":9187,"9187":9188,"9188":9189,"9189":9190,"9190":9191,"9191":9192,"9192":9193,"9193":9194,"9194":9195,"9195":9196,"9196":9197,"9197":9198,"9198":9199,"9199":9200,"9200":9201,"9201":9202,"9202":9203,"9203":9204,"9204":9205,"9205":9206,"9206":9207,"9207":9208,"9208":9209,"9209":9210,"9210":9211,"9211":9212,"9212":9213,"9213":9214,"9214":9215,"9215":9216,"9216":9217,"9217":9218,"9218":9219,"9219":9220,"9220":9221,"9221":9222,"9222":9223,"9223":9224,"9224":9225,"9225":9226,"9226":9227,"9227":9228,"9228":9229,"9229":9230,"9230":9231,"9231":9232,"9232":9233,"9233":9234,"9234":9235,"9235":9236,"9236":9237,"9237":9238,"9238":9239,"9239":9240,"9240":9241,"9241":9242,"9242":9243,"9243":9244,"9244":9245,"9245":9246,"9246":9247,"9247":9248,"9248":9249,"9249":9250,"9250":9251,"9251":9252,"9252":9253,"9253":9254,"9254":9255,"9255":9256,"9256":9257,"9257":9258,"9258":9259,"9259":9260,"9260":9261,"9261":9262,"9262":9263,"9263":9264,"9264":9265,"9265":9266,"9266":9267,"9267":9268,"9268":9269,"9269":9270,"9270":9271,"9271":9272,"9272":9273,"9273":9274,"9274":9275,"9275":9276,"9276":9277,"9277":9278,"9278":9279,"9279":9280,"9280":9281,"9281":9282,"9282":9283,"9283":9284,"9284":9285,"9285":9286,"9286":9287,"9287":9288,"9288":9289,"9289":9290,"9290":9291,"9291":9292,"9292":9293,"9293":9294,"9294":9295,"9295":9296,"9296":9297,"9297":9298,"9298":9299,"9299":9300,"9300":9301,"9301":9302,"9302":9303,"9303":9304,"9304":9305,"9305":9306,"9306":9307,"9307":9308,"9308":9309,"9309":9310,"9310":9311,"9311":9312,"9312":9313,"9313":9314,"9314":9315,"9315":9316,"9316":9317,"9317":9318,"9318":9319,"9319":9320,"9320":9321,"9321":9322,"9322":9323,"9323":9324,"9324":9325,"9325":9326,"9326":9327,"9327":9328,"9328":9329,"9329":9330,"9330":9331,"9331":9332,"9332":9333,"9333":9334,"9334":9335,"9335":9336,"9336":9337,"9337":9338,"9338":9339,"9339":9340,"9340":9341,"9341":9342,"9342":9343,"9343":9344,"9344":9345,"9345":9346,"9346":9347,"9347":9348,"9348":9349,"9349":9350,"9350":9351,"9351":9352,"9352":9353,"9353":9354,"9354":9355,"9355":9356,"9356":9357,"9357":9358,"9358":9359,"9359":9360,"9360":9361,"9361":9362,"9362":9363,"9363":9364,"9364":9365,"9365":9366,"9366":9367,"9367":9368,"9368":9369,"9369":9370,"9370":9371,"9371":9372,"9372":9373,"9373":9374,"9374":9375,"9375":9376,"9376":9377,"9377":9378,"9378":9379,"9379":9380,"9380":9381,"9381":9382,"9382":9383,"9383":9384,"9384":9385,"9385":9386,"9386":9387,"9387":9388,"9388":9389,"9389":9390,"9390":9391,"9391":9392,"9392":9393,"9393":9394,"9394":9395,"9395":9396,"9396":9397,"9397":9398,"9398":9399,"9399":9400,"9400":9401,"9401":9402,"9402":9403,"9403":9404,"9404":9405,"9405":9406,"9406":9407,"9407":9408,"9408":9409,"9409":9410,"9410":9411,"9411":9412,"9412":9413,"9413":9414,"9414":9415,"9415":9416,"9416":9417,"9417":9418,"9418":9419,"9419":9420,"9420":9421,"9421":9422,"9422":9423,"9423":9424,"9424":9425,"9425":9426,"9426":9427,"9427":9428,"9428":9429,"9429":9430,"9430":9431,"9431":9432,"9432":9433,"9433":9434,"9434":9435,"9435":9436,"9436":9437,"9437":9438,"9438":9439,"9439":9440,"9440":9441,"9441":9442,"9442":9443,"9443":9444,"9444":9445,"9445":9446,"9446":9447,"9447":9448,"9448":9449,"9449":9450,"9450":9451,"9451":9452,"9452":9453,"9453":9454,"9454":9455,"9455":9456,"9456":9457,"9457":9458,"9458":9459,"9459":9460,"9460":9461,"9461":9462,"9462":9463,"9463":9464,"9464":9465,"9465":9466,"9466":9467,"9467":9468,"9468":9469,"9469":9470,"9470":9471,"9471":9472,"9472":9473,"9473":9474,"9474":9475,"9475":9476,"9476":9477,"9477":9478,"9478":9479,"9479":9480,"9480":9481,"9481":9482,"9482":9483,"9483":9484,"9484":9485,"9485":9486,"9486":9487,"9487":9488,"9488":9489,"9489":9490,"9490":9491,"9491":9492,"9492":9493,"9493":9494,"9494":9495,"9495":9496,"9496":9497,"9497":9498,"9498":9499,"9499":9500,"9500":9501,"9501":9502,"9502":9503,"9503":9504,"9504":9505,"9505":9506,"9506":9507,"9507":9508,"9508":9509,"9509":9510,"9510":9511,"9511":9512,"9512":9513,"9513":9514,"9514":9515,"9515":9516,"9516":9517,"9517":9518,"9518":9519,"9519":9520,"9520":9521,"9521":9522,"9522":9523,"9523":9524,"9524":9525,"9525":9526,"9526":9527,"9527":9528,"9528":9529,"9529":9530,"9530":9531,"9531":9532,"9532":9533,"9533":9534,"9534":9535,"9535":9536,"9536":9537,"9537":9538,"9538":9539,"9539":9540,"9540":9541,"9541":9542,"9542":9543,"9543":9544,"9544":9545,"9545":9546,"9546":9547,"9547":9548,"9548":9549,"9549":9550,"9550":9551,"9551":9552,"9552":9553,"9553":9554,"9554":9555,"9555":9556,"9556":9557,"9557":9558,"9558":9559,"9559":9560,"9560":9561,"9561":9562,"9562":9563,"9563":9564,"9564":9565,"9565":9566,"9566":9567,"9567":9568,"9568":9569,"9569":9570,"9570":9571,"9571":9572,"9572":9573,"9573":9574,"9574":9575,"9575":9576,"9576":9577,"9577":9578,"9578":9579,"9579":9580,"9580":9581,"9581":9582,"9582":9583,"9583":9584,"9584":9585,"9585":9586,"9586":9587,"9587":9588,"9588":9589,"9589":9590,"9590":9591,"9591":9592,"9592":9593,"9593":9594,"9594":9595,"9595":9596,"9596":9597,"9597":9598,"9598":9599,"9599":9600,"9600":9601,"9601":9602,"9602":9603,"9603":9604,"9604":9605,"9605":9606,"9606":9607,"9607":9608,"9608":9609,"9609":9610,"9610":9611,"9611":9612,"9612":9613,"9613":9614,"9614":9615,"9615":9616,"9616":9617,"9617":9618,"9618":9619,"9619":9620,"9620":9621,"9621":9622,"9622":9623,"9623":9624,"9624":9625,"9625":9626,"9626":9627,"9627":9628,"9628":9629,"9629":9630,"9630":9631,"9631":9632,"9632":9633,"9633":9634,"9634":9635,"9635":9636,"9636":9637,"9637":9638,"9638":9639,"9639":9640,"9640":9641,"9641":9642,"9642":9643,"9643":9644,"9644":9645,"9645":9646,"9646":9647,"9647":9648,"9648":9649,"9649":9650,"9650":9651,"9651":9652,"9652":9653,"9653":9654,"9654":9655,"9655":9656,"9656":9657,"9657":9658,"9658":9659,"9659":9660,"9660":9661,"9661":9662,"9662":9663,"9663":9664,"9664":9665,"9665":9666,"9666":9667,"9667":9668,"9668":9669,"9669":9670,"9670":9671,"9671":9672,"9672":9673,"9673":9674,"9674":9675,"9675":9676,"9676":9677,"9677":9678,"9678":9679,"9679":9680,"9680":9681,"9681":9682,"9682":9683,"9683":9684,"9684":9685,"9685":9686,"9686":9687,"9687":9688,"9688":9689,"9689":9690,"9690":9691,"9691":9692,"9692":9693,"9693":9694,"9694":9695,"9695":9696,"9696":9697,"9697":9698,"9698":9699,"9699":9700,"9700":9701,"9701":9702,"9702":9703,"9703":9704,"9704":9705,"9705":9706,"9706":9707,"9707":9708,"9708":9709,"9709":9710,"9710":9711,"9711":9712,"9712":9713,"9713":9714,"9714":9715,"9715":9716,"9716":9717,"9717":9718,"9718":9719,"9719":9720,"9720":9721,"9721":9722,"9722":9723,"9723":9724,"9724":9725,"9725":9726,"9726":9727,"9727":9728,"9728":9729,"9729":9730,"9730":9731,"9731":9732,"9732":9733,"9733":9734,"9734":9735,"9735":9736,"9736":9737,"9737":9738,"9738":9739,"9739":9740,"9740":9741,"9741":9742,"9742":9743,"9743":9744,"9744":9745,"9745":9746,"9746":9747,"9747":9748,"9748":9749,"9749":9750,"9750":9751,"9751":9752,"9752":9753,"9753":9754,"9754":9755,"9755":9756,"9756":9757,"9757":9758,"9758":9759,"9759":9760,"9760":9761,"9761":9762,"9762":9763,"9763":9764,"9764":9765,"9765":9766,"9766":9767,"9767":9768,"9768":9769,"9769":9770,"9770":9771,"9771":9772,"9772":9773,"9773":9774,"9774":9775,"9775":9776,"9776":9777,"9777":9778,"9778":9779,"9779":9780,"9780":9781,"9781":9782,"9782":9783,"9783":9784,"9784":9785,"9785":9786,"9786":9787,"9787":9788,"9788":9789,"9789":9790,"9790":9791,"9791":9792,"9792":9793,"9793":9794,"9794":9795,"9795":9796,"9796":9797,"9797":9798,"9798":9799,"9799":9800,"9800":9801,"9801":9802,"9802":9803,"9803":9804,"9804":9805,"9805":9806,"9806":9807,"9807":9808,"9808":9809,"9809":9810,"9810":9811,"9811":9812,"9812":9813,"9813":9814,"9814":9815,"9815":9816,"9816":9817,"9817":9818,"9818":9819,"9819":9820,"9820":9821,"9821":9822,"9822":9823,"9823":9824,"9824":9825,"9825":9826,"9826":9827,"9827":9828,"9828":9829,"9829":9830,"9830":9831,"9831":9832,"9832":9833,"9833":9834,"9834":9835,"9835":9836,"9836":9837,"9837":9838,"9838":9839,"9839":9840,"9840":9841,"9841":9842,"9842":9843,"9843":9844,"9844":9845,"9845":9846,"9846":9847,"9847":9848,"9848":9849,"9849":9850,"9850":9851,"9851":9852,"9852":9853,"9853":9854,"9854":9855,"9855":9856,"9856":9857,"9857":9858,"9858":9859,"9859":9860,"9860":9861,"9861":9862,"9862":9863,"9863":9864,"9864":9865,"9865":9866,"9866":9867,"9867":9868,"9868":9869,"9869":9870,"9870":9871,"9871":9872,"9872":9873,"9873":9874,"9874":9875,"9875":9876,"9876":9877,"9877":9878,"9878":9879,"9879":9880,"9880":9881,"9881":9882,"9882":9883,"9883":9884,"9884":9885,"9885":9886,"9886":9887,"9887":9888,"9888":9889,"9889":9890,"9890":9891,"9891":9892,"9892":9893,"9893":9894,"9894":9895,"9895":9896,"9896":9897,"9897":9898,"9898":9899,"9899":9900,"9900":9901,"9901":9902,"9902":9903,"9903":9904,"9904":9905,"9905":9906,"9906":9907,"9907":9908,"9908":9909,"9909":9910,"9910":9911,"9911":9912,"9912":9913,"9913":9914,"9914":9915,"9915":9916,"9916":9917,"9917":9918,"9918":9919,"9919":9920,"9920":9921,"9921":9922,"9922":9923,"9923":9924,"9924":9925,"9925":9926,"9926":9927,"9927":9928,"9928":9929,"9929":9930,"9930":9931,"9931":9932,"9932":9933,"9933":9934,"9934":9935,"9935":9936,"9936":9937,"9937":9938,"9938":9939,"9939":9940,"9940":9941,"9941":9942,"9942":9943,"9943":9944,"9944":9945,"9945":9946,"9946":9947,"9947":9948,"9948":9949,"9949":9950,"9950":9951,"9951":9952,"9952":9953,"9953":9954,"9954":9955,"9955":9956,"9956":9957,"9957":9958,"9958":9959,"9959":9960,"9960":9961,"9961":9962,"9962":9963,"9963":9964,"9964":9965,"9965":9966,"9966":9967,"9967":9968,"9968":9969,"9969":9970,"9970":9971,"9971":9972,"9972":9973,"9973":9974,"9974":9975,"9975":9976,"9976":9977,"9977":9978,"9978":9979,"9979":9980,"9980":9981,"9981":9982,"9982":9983,"9983":9984,"9984":9985,"9985":9986,"9986":9987,"9987":9988,"9988":9989,"9989":9990,"9990":9991,"9991":9992,"9992":9993,"9993":9994,"9994":9995,"9995":9996,"9996":9997,"9997":9998,"9998":9999,"9999":10000,"10000":10001,"10001":10002,"10002":10003,"10003":10004,"10004":10005,"10005":10006,"10006":10007,"10007":10008,"10008":10009,"10009":10010,"10010":10011,"10011":10012,"10012":10013,"10013":10014,"10014":10015,"10015":10016,"10016":10017,"10017":10018,"10018":10019,"10019":10020,"10020":10021,"10021":10022,"10022":10023,"10023":10024,"10024":10025,"10025":10026,"10026":10027,"10027":10028,"10028":10029,"10029":10030,"10030":10031,"10031":10032,"10032":10033,"10033":10034,"10034":10035,"10035":10036,"10036":10037,"10037":10038,"10038":10039,"10039":10040,"10040":10041,"10041":10042,"10042":10043,"10043":10044,"10044":10045,"10045":10046,"10046":10047,"10047":10048,"10048":10049,"10049":10050,"10050":10051,"10051":10052,"10052":10053,"10053":10054,"10054":10055,"10055":10056,"10056":10057,"10057":10058,"10058":10059,"10059":10060,"10060":10061,"10061":10062,"10062":10063,"10063":10064,"10064":10065,"10065":10066,"10066":10067,"10067":10068,"10068":10069,"10069":10070,"10070":10071,"10071":10072,"10072":10073,"10073":10074,"10074":10075,"10075":10076,"10076":10077,"10077":10078,"10078":10079,"10079":10080,"10080":10081,"10081":10082,"10082":10083,"10083":10084,"10084":10085,"10085":10086,"10086":10087,"10087":10088,"10088":10089,"10089":10090,"10090":10091,"10091":10092,"10092":10093,"10093":10094,"10094":10095,"10095":10096,"10096":10097,"10097":10098,"10098":10099,"10099":10100,"10100":10101,"10101":10102,"10102":10103,"10103":10104,"10104":10105,"10105":10106,"10106":10107,"10107":10108,"10108":10109,"10109":10110,"10110":10111,"10111":10112,"10112":10113,"10113":10114,"10114":10115,"10115":10116,"10116":10117,"10117":10118,"10118":10119,"10119":10120,"10120":10121,"10121":10122,"10122":10123,"10123":10124,"10124":10125,"10125":10126,"10126":10127,"10127":10128,"10128":10129,"10129":10130,"10130":10131,"10131":10132,"10132":10133,"10133":10134,"10134":10135,"10135":10136,"10136":10137,"10137":10138,"10138":10139,"10139":10140,"10140":10141,"10141":10142,"10142":10143,"10143":10144,"10144":10145,"10145":10146,"10146":10147,"10147":10148,"10148":10149,"10149":10150,"10150":10151,"10151":10152,"10152":10153,"10153":10154,"10154":10155,"10155":10156,"10156":10157,"10157":10158,"10158":10159,"10159":10160,"10160":10161,"10161":10162,"10162":10163,"10163":10164,"10164":10165,"10165":10166,"10166":10167,"10167":10168,"10168":10169,"10169":10170,"10170":10171,"10171":10172,"10172":10173,"10173":10174,"10174":10175,"10175":10176,"10176":10177,"10177":10178,"10178":10179,"10179":10180,"10180":10181,"10181":10182,"10182":10183,"10183":10184,"10184":10185,"10185":10186,"10186":10187,"10187":10188,"10188":10189,"10189":10190,"10190":10191,"10191":10192,"10192":10193,"10193":10194,"10194":10195,"10195":10196,"10196":10197,"10197":10198,"10198":10199,"10199":10200,"10200":10201,"10201":10202,"10202":10203,"10203":10204,"10204":10205,"10205":10206,"10206":10207,"10207":10208,"10208":10209,"10209":10210,"10210":10211,"10211":10212,"10212":10213,"10213":10214,"10214":10215,"10215":10216,"10216":10217,"10217":10218,"10218":10219,"10219":10220,"10220":10221,"10221":10222,"10222":10223,"10223":10224,"10224":10225,"10225":10226,"10226":10227,"10227":10228,"10228":10229,"10229":10230,"10230":10231,"10231":10232,"10232":10233,"10233":10234,"10234":10235,"10235":10236,"10236":10237,"10237":10238,"10238":10239,"10239":10240,"10240":10241,"10241":10242,"10242":10243,"10243":10244,"10244":10245,"10245":10246,"10246":10247,"10247":10248,"10248":10249,"10249":10250,"10250":10251,"10251":10252,"10252":10253,"10253":10254,"10254":10255,"10255":10256,"10256":10257,"10257":10258,"10258":10259,"10259":10260,"10260":10261,"10261":10262,"10262":10263,"10263":10264,"10264":10265,"10265":10266,"10266":10267,"10267":10268,"10268":10269,"10269":10270,"10270":10271,"10271":10272,"10272":10273,"10273":10274,"10274":10275,"10275":10276,"10276":10277,"10277":10278,"10278":10279,"10279":10280,"10280":10281,"10281":10282,"10282":10283,"10283":10284,"10284":10285,"10285":10286,"10286":10287,"10287":10288,"10288":10289,"10289":10290,"10290":10291,"10291":10292,"10292":10293,"10293":10294,"10294":10295,"10295":10296,"10296":10297,"10297":10298,"10298":10299,"10299":10300,"10300":10301,"10301":10302,"10302":10303,"10303":10304,"10304":10305,"10305":10306,"10306":10307,"10307":10308,"10308":10309,"10309":10310,"10310":10311,"10311":10312,"10312":10313,"10313":10314,"10314":10315,"10315":10316,"10316":10317,"10317":10318,"10318":10319,"10319":10320,"10320":10321,"10321":10322,"10322":10323,"10323":10324,"10324":10325,"10325":10326,"10326":10327,"10327":10328,"10328":10329,"10329":10330,"10330":10331,"10331":10332,"10332":10333,"10333":10334,"10334":10335,"10335":10336,"10336":10337,"10337":10338,"10338":10339,"10339":10340,"10340":10341,"10341":10342,"10342":10343,"10343":10344,"10344":10345,"10345":10346,"10346":10347,"10347":10348,"10348":10349,"10349":10350,"10350":10351,"10351":10352,"10352":10353,"10353":10354,"10354":10355,"10355":10356,"10356":10357,"10357":10358,"10358":10359,"10359":10360,"10360":10361,"10361":10362,"10362":10363,"10363":10364,"10364":10365,"10365":10366,"10366":10367,"10367":10368,"10368":10369,"10369":10370,"10370":10371,"10371":10372,"10372":10373,"10373":10374,"10374":10375,"10375":10376,"10376":10377,"10377":10378,"10378":10379,"10379":10380,"10380":10381,"10381":10382,"10382":10383,"10383":10384,"10384":10385,"10385":10386,"10386":10387,"10387":10388,"10388":10389,"10389":10390,"10390":10391,"10391":10392,"10392":10393,"10393":10394,"10394":10395,"10395":10396,"10396":10397,"10397":10398,"10398":10399,"10399":10400,"10400":10401,"10401":10402,"10402":10403,"10403":10404,"10404":10405,"10405":10406,"10406":10407,"10407":10408,"10408":10409,"10409":10410,"10410":10411,"10411":10412,"10412":10413,"10413":10414,"10414":10415,"10415":10416,"10416":10417,"10417":10418,"10418":10419,"10419":10420,"10420":10421,"10421":10422,"10422":10423,"10423":10424,"10424":10425,"10425":10426,"10426":10427,"10427":10428,"10428":10429,"10429":10430,"10430":10431,"10431":10432,"10432":10433,"10433":10434,"10434":10435,"10435":10436,"10436":10437,"10437":10438,"10438":10439,"10439":10440,"10440":10441,"10441":10442,"10442":10443,"10443":10444,"10444":10445,"10445":10446,"10446":10447,"10447":10448,"10448":10449,"10449":10450,"10450":10451,"10451":10452,"10452":10453,"10453":10454,"10454":10455,"10455":10456,"10456":10457,"10457":10458,"10458":10459,"10459":10460,"10460":10461,"10461":10462,"10462":10463,"10463":10464,"10464":10465,"10465":10466,"10466":10467,"10467":10468,"10468":10469,"10469":10470,"10470":10471,"10471":10472,"10472":10473,"10473":10474,"10474":10475,"10475":10476,"10476":10477,"10477":10478,"10478":10479,"10479":10480,"10480":10481,"10481":10482,"10482":10483,"10483":10484,"10484":10485,"10485":10486,"10486":10487,"10487":10488,"10488":10489,"10489":10490,"10490":10491,"10491":10492,"10492":10493,"10493":10494,"10494":10495,"10495":10496,"10496":10497,"10497":10498,"10498":10499,"10499":10500,"10500":10501,"10501":10502,"10502":10503,"10503":10504,"10504":10505,"10505":10506,"10506":10507,"10507":10508,"10508":10509,"10509":10510,"10510":10511,"10511":10512,"10512":10513,"10513":10514,"10514":10515,"10515":10516,"10516":10517,"10517":10518,"10518":10519,"10519":10520,"10520":10521,"10521":10522,"10522":10523,"10523":10524,"10524":10525,"10525":10526,"10526":10527,"10527":10528,"10528":10529,"10529":10530,"10530":10531,"10531":10532,"10532":10533,"10533":10534,"10534":10535,"10535":10536,"10536":10537,"10537":10538,"10538":10539,"10539":10540,"10540":10541,"10541":10542,"10542":10543,"10543":10544,"10544":10545,"10545":10546,"10546":10547,"10547":10548,"10548":10549,"10549":10550,"10550":10551,"10551":10552,"10552":10553,"10553":10554,"10554":10555,"10555":10556,"10556":10557,"10557":10558,"10558":10559,"10559":10560,"10560":10561,"10561":10562,"10562":10563,"10563":10564,"10564":10565,"10565":10566,"10566":10567,"10567":10568,"10568":10569,"10569":10570,"10570":10571,"10571":10572,"10572":10573,"10573":10574,"10574":10575,"10575":10576,"10576":10577,"10577":10578,"10578":10579,"10579":10580,"10580":10581,"10581":10582,"10582":10583,"10583":10584,"10584":10585,"10585":10586,"10586":10587,"10587":10588,"10588":10589,"10589":10590,"10590":10591,"10591":10592,"10592":10593,"10593":10594,"10594":10595,"10595":10596,"10596":10597,"10597":10598,"10598":10599,"10599":10600,"10600":10601,"10601":10602,"10602":10603,"10603":10604,"10604":10605,"10605":10606,"10606":10607,"10607":10608,"10608":10609,"10609":10610,"10610":10611,"10611":10612,"10612":10613,"10613":10614,"10614":10615,"10615":10616,"10616":10617,"10617":10618,"10618":10619,"10619":10620,"10620":10621,"10621":10622,"10622":10623,"10623":10624,"10624":10625,"10625":10626,"10626":10627,"10627":10628,"10628":10629,"10629":10630,"10630":10631,"10631":10632,"10632":10633,"10633":10634,"10634":10635,"10635":10636,"10636":10637,"10637":10638,"10638":10639,"10639":10640,"10640":10641,"10641":10642,"10642":10643,"10643":10644,"10644":10645,"10645":10646,"10646":10647,"10647":10648,"10648":10649,"10649":10650,"10650":10651,"10651":10652,"10652":10653,"10653":10654,"10654":10655,"10655":10656,"10656":10657,"10657":10658,"10658":10659,"10659":10660,"10660":10661,"10661":10662,"10662":10663,"10663":10664,"10664":10665,"10665":10666,"10666":10667,"10667":10668,"10668":10669,"10669":10670,"10670":10671,"10671":10672,"10672":10673,"10673":10674,"10674":10675,"10675":10676,"10676":10677,"10677":10678,"10678":10679,"10679":10680,"10680":10681,"10681":10682,"10682":10683,"10683":10684,"10684":10685,"10685":10686,"10686":10687,"10687":10688,"10688":10689,"10689":10690,"10690":10691,"10691":10692,"10692":10693,"10693":10694,"10694":10695,"10695":10696,"10696":10697,"10697":10698,"10698":10699,"10699":10700,"10700":10701,"10701":10702,"10702":10703,"10703":10704,"10704":10705,"10705":10706,"10706":10707,"10707":10708,"10708":10709,"10709":10710,"10710":10711,"10711":10712,"10712":10713,"10713":10714,"10714":10715,"10715":10716,"10716":10717,"10717":10718,"10718":10719,"10719":10720,"10720":10721,"10721":10722,"10722":10723,"10723":10724,"10724":10725,"10725":10726,"10726":10727,"10727":10728,"10728":10729,"10729":10730,"10730":10731,"10731":10732,"10732":10733,"10733":10734,"10734":10735,"10735":10736,"10736":10737,"10737":10738,"10738":10739,"10739":10740,"10740":10741,"10741":10742,"10742":10743,"10743":10744,"10744":10745,"10745":10746,"10746":10747,"10747":10748,"10748":10749,"10749":10750,"10750":10751,"10751":10752,"10752":10753,"10753":10754,"10754":10755,"10755":10756,"10756":10757,"10757":10758,"10758":10759,"10759":10760,"10760":10761,"10761":10762,"10762":10763,"10763":10764,"10764":10765,"10765":10766,"10766":10767,"10767":10768,"10768":10769,"10769":10770,"10770":10771,"10771":10772,"10772":10773,"10773":10774,"10774":10775,"10775":10776,"10776":10777,"10777":10778,"10778":10779,"10779":10780,"10780":10781,"10781":10782,"10782":10783,"10783":10784,"10784":10785,"10785":10786,"10786":10787,"10787":10788,"10788":10789,"10789":10790,"10790":10791,"10791":10792,"10792":10793,"10793":10794,"10794":10795,"10795":10796,"10796":10797,"10797":10798,"10798":10799,"10799":10800,"10800":10801,"10801":10802,"10802":10803,"10803":10804,"10804":10805,"10805":10806,"10806":10807,"10807":10808,"10808":10809,"10809":10810,"10810":10811,"10811":10812,"10812":10813,"10813":10814,"10814":10815,"10815":10816,"10816":10817,"10817":10818,"10818":10819,"10819":10820,"10820":10821,"10821":10822,"10822":10823,"10823":10824,"10824":10825,"10825":10826,"10826":10827,"10827":10828,"10828":10829,"10829":10830,"10830":10831,"10831":10832,"10832":10833,"10833":10834,"10834":10835,"10835":10836,"10836":10837,"10837":10838,"10838":10839,"10839":10840,"10840":10841,"10841":10842,"10842":10843,"10843":10844,"10844":10845,"10845":10846,"10846":10847,"10847":10848,"10848":10849,"10849":10850,"10850":10851,"10851":10852,"10852":10853,"10853":10854,"10854":10855,"10855":10856,"10856":10857,"10857":10858,"10858":10859,"10859":10860,"10860":10861,"10861":10862,"10862":10863,"10863":10864,"10864":10865,"10865":10866,"10866":10867,"10867":10868,"10868":10869,"10869":10870,"10870":10871,"10871":10872,"10872":10873,"10873":10874,"10874":10875,"10875":10876,"10876":10877,"10877":10878,"10878":10879,"10879":10880,"10880":10881,"10881":10882,"10882":10883,"10883":10884,"10884":10885,"10885":10886,"10886":10887,"10887":10888,"10888":10889,"10889":10890,"10890":10891,"10891":10892,"10892":10893,"10893":10894,"10894":10895,"10895":10896,"10896":10897,"10897":10898,"10898":10899,"10899":10900,"10900":10901,"10901":10902,"10902":10903,"10903":10904,"10904":10905,"10905":10906,"10906":10907,"10907":10908,"10908":10909,"10909":10910,"10910":10911,"10911":10912,"10912":10913,"10913":10914,"10914":10915,"10915":10916,"10916":10917,"10917":10918,"10918":10919,"10919":10920,"10920":10921,"10921":10922,"10922":10923,"10923":10924,"10924":10925,"10925":10926,"10926":10927,"10927":10928,"10928":10929,"10929":10930,"10930":10931,"10931":10932,"10932":10933,"10933":10934,"10934":10935,"10935":10936,"10936":10937,"10937":10938,"10938":10939,"10939":10940,"10940":10941,"10941":10942,"10942":10943,"10943":10944,"10944":10945,"10945":10946,"10946":10947,"10947":10948,"10948":10949,"10949":10950,"10950":10951,"10951":10952,"10952":10953,"10953":10954,"10954":10955,"10955":10956,"10956":10957,"10957":10958,"10958":10959,"10959":10960,"10960":10961,"10961":10962,"10962":10963,"10963":10964,"10964":10965,"10965":10966,"10966":10967,"10967":10968,"10968":10969,"10969":10970,"10970":10971,"10971":10972,"10972":10973,"10973":10974,"10974":10975,"10975":10976,"10976":10977,"10977":10978,"10978":10979,"10979":10980,"10980":10981,"10981":10982,"10982":10983,"10983":10984,"10984":10985,"10985":10986,"10986":10987,"10987":10988,"10988":10989,"10989":10990,"10990":10991,"10991":10992,"10992":10993,"10993":10994,"10994":10995,"10995":10996,"10996":10997,"10997":10998,"10998":10999,"10999":11000,"11000":11001,"11001":11002,"11002":11003,"11003":11004,"11004":11005,"11005":11006,"11006":11007,"11007":11008,"11008":11009,"11009":11010,"11010":11011,"11011":11012,"11012":11013,"11013":11014,"11014":11015,"11015":11016,"11016":11017,"11017":11018,"11018":11019,"11019":11020,"11020":11021,"11021":11022,"11022":11023,"11023":11024,"11024":11025,"11025":11026,"11026":11027,"11027":11028,"11028":11029,"11029":11030,"11030":11031,"11031":11032,"11032":11033,"11033":11034,"11034":11035,"11035":11036,"11036":11037,"11037":11038,"11038":11039,"11039":11040,"11040":11041,"11041":11042,"11042":11043,"11043":11044,"11044":11045,"11045":11046,"11046":11047,"11047":11048,"11048":11049,"11049":11050,"11050":11051,"11051":11052,"11052":11053,"11053":11054,"11054":11055,"11055":11056,"11056":11057,"11057":11058,"11058":11059,"11059":11060,"11060":11061,"11061":11062,"11062":11063,"11063":11064,"11064":11065,"11065":11066,"11066":11067,"11067":11068,"11068":11069,"11069":11070,"11070":11071,"11071":11072,"11072":11073,"11073":11074,"11074":11075,"11075":11076,"11076":11077,"11077":11078,"11078":11079,"11079":11080,"11080":11081,"11081":11082,"11082":11083,"11083":11084,"11084":11085,"11085":11086,"11086":11087,"11087":11088,"11088":11089,"11089":11090,"11090":11091,"11091":11092,"11092":11093,"11093":11094,"11094":11095,"11095":11096,"11096":11097,"11097":11098,"11098":11099,"11099":11100,"11100":11101,"11101":11102,"11102":11103,"11103":11104,"11104":11105,"11105":11106,"11106":11107,"11107":11108,"11108":11109,"11109":11110,"11110":11111,"11111":11112,"11112":11113,"11113":11114,"11114":11115,"11115":11116,"11116":11117,"11117":11118,"11118":11119,"11119":11120,"11120":11121,"11121":11122,"11122":11123,"11123":11124,"11124":11125,"11125":11126,"11126":11127,"11127":11128,"11128":11129,"11129":11130,"11130":11131,"11131":11132,"11132":11133,"11133":11134,"11134":11135,"11135":11136,"11136":11137,"11137":11138,"11138":11139,"11139":11140,"11140":11141,"11141":11142,"11142":11143,"11143":11144,"11144":11145,"11145":11146,"11146":11147,"11147":11148,"11148":11149,"11149":11150,"11150":11151,"11151":11152,"11152":11153,"11153":11154,"11154":11155,"11155":11156,"11156":11157,"11157":11158,"11158":11159,"11159":11160,"11160":11161,"11161":11162,"11162":11163,"11163":11164,"11164":11165,"11165":11166,"11166":11167,"11167":11168,"11168":11169,"11169":11170,"11170":11171,"11171":11172,"11172":11173,"11173":11174,"11174":11175,"11175":11176,"11176":11177,"11177":11178,"11178":11179,"11179":11180,"11180":11181,"11181":11182,"11182":11183,"11183":11184,"11184":11185,"11185":11186,"11186":11187,"11187":11188,"11188":11189,"11189":11190,"11190":11191,"11191":11192,"11192":11193,"11193":11194,"11194":11195,"11195":11196,"11196":11197,"11197":11198,"11198":11199,"11199":11200,"11200":11201,"11201":11202,"11202":11203,"11203":11204,"11204":11205,"11205":11206,"11206":11207,"11207":11208,"11208":11209,"11209":11210,"11210":11211,"11211":11212,"11212":11213,"11213":11214,"11214":11215,"11215":11216,"11216":11217,"11217":11218,"11218":11219,"11219":11220,"11220":11221,"11221":11222,"11222":11223,"11223":11224,"11224":11225,"11225":11226,"11226":11227,"11227":11228,"11228":11229,"11229":11230,"11230":11231,"11231":11232,"11232":11233,"11233":11234,"11234":11235,"11235":11236,"11236":11237,"11237":11238,"11238":11239,"11239":11240,"11240":11241,"11241":11242,"11242":11243,"11243":11244,"11244":11245,"11245":11246,"11246":11247,"11247":11248,"11248":11249,"11249":11250,"11250":11251,"11251":11252,"11252":11253,"11253":11254,"11254":11255,"11255":11256,"11256":11257,"11257":11258,"11258":11259,"11259":11260,"11260":11261,"11261":11262,"11262":11263,"11263":11264,"11264":11265,"11265":11266,"11266":11267,"11267":11268,"11268":11269,"11269":11270,"11270":11271,"11271":11272,"11272":11273,"11273":11274,"11274":11275,"11275":11276,"11276":11277,"11277":11278,"11278":11279,"11279":11280,"11280":11281,"11281":11282,"11282":11283,"11283":11284,"11284":11285,"11285":11286,"11286":11287,"11287":11288,"11288":11289,"11289":11290,"11290":11291,"11291":11292,"11292":11293,"11293":11294,"11294":11295,"11295":11296,"11296":11297,"11297":11298,"11298":11299,"11299":11300,"11300":11301,"11301":11302,"11302":11303,"11303":11304,"11304":11305,"11305":11306,"11306":11307,"11307":11308,"11308":11309,"11309":11310,"11310":11311,"11311":11312,"11312":11313,"11313":11314,"11314":11315,"11315":11316,"11316":11317,"11317":11318,"11318":11319,"11319":11320,"11320":11321,"11321":11322,"11322":11323,"11323":11324,"11324":11325,"11325":11326,"11326":11327,"11327":11328,"11328":11329,"11329":11330,"11330":11331,"11331":11332,"11332":11333,"11333":11334,"11334":11335,"11335":11336,"11336":11337,"11337":11338,"11338":11339,"11339":11340,"11340":11341,"11341":11342,"11342":11343,"11343":11344,"11344":11345,"11345":11346,"11346":11347,"11347":11348,"11348":11349,"11349":11350,"11350":11351,"11351":11352,"11352":11353,"11353":11354,"11354":11355,"11355":11356,"11356":11357,"11357":11358,"11358":11359,"11359":11360,"11360":11361,"11361":11362,"11362":11363,"11363":11364,"11364":11365,"11365":11366,"11366":11367,"11367":11368,"11368":11369,"11369":11370,"11370":11371,"11371":11372,"11372":11373,"11373":11374,"11374":11375,"11375":11376,"11376":11377,"11377":11378,"11378":11379,"11379":11380,"11380":11381,"11381":11382,"11382":11383,"11383":11384,"11384":11385,"11385":11386,"11386":11387,"11387":11388,"11388":11389,"11389":11390,"11390":11391,"11391":11392,"11392":11393,"11393":11394,"11394":11395,"11395":11396,"11396":11397,"11397":11398,"11398":11399,"11399":11400,"11400":11401,"11401":11402,"11402":11403,"11403":11404,"11404":11405,"11405":11406,"11406":11407,"11407":11408,"11408":11409,"11409":11410,"11410":11411,"11411":11412,"11412":11413,"11413":11414,"11414":11415,"11415":11416,"11416":11417,"11417":11418,"11418":11419,"11419":11420,"11420":11421,"11421":11422,"11422":11423,"11423":11424,"11424":11425,"11425":11426,"11426":11427,"11427":11428,"11428":11429,"11429":11430,"11430":11431,"11431":11432,"11432":11433,"11433":11434,"11434":11435,"11435":11436,"11436":11437,"11437":11438,"11438":11439,"11439":11440,"11440":11441,"11441":11442,"11442":11443,"11443":11444,"11444":11445,"11445":11446,"11446":11447,"11447":11448,"11448":11449,"11449":11450,"11450":11451,"11451":11452,"11452":11453,"11453":11454,"11454":11455,"11455":11456,"11456":11457,"11457":11458,"11458":11459,"11459":11460,"11460":11461,"11461":11462,"11462":11463,"11463":11464,"11464":11465,"11465":11466,"11466":11467,"11467":11468,"11468":11469,"11469":11470,"11470":11471,"11471":11472,"11472":11473,"11473":11474,"11474":11475,"11475":11476,"11476":11477,"11477":11478,"11478":11479,"11479":11480,"11480":11481,"11481":11482,"11482":11483,"11483":11484,"11484":11485,"11485":11486,"11486":11487,"11487":11488,"11488":11489,"11489":11490,"11490":11491,"11491":11492,"11492":11493,"11493":11494,"11494":11495,"11495":11496,"11496":11497,"11497":11498,"11498":11499,"11499":11500,"11500":11501,"11501":11502,"11502":11503,"11503":11504,"11504":11505,"11505":11506,"11506":11507,"11507":11508,"11508":11509,"11509":11510,"11510":11511,"11511":11512,"11512":11513,"11513":11514,"11514":11515,"11515":11516,"11516":11517,"11517":11518,"11518":11519,"11519":11520,"11520":11521,"11521":11522,"11522":11523,"11523":11524,"11524":11525,"11525":11526,"11526":11527,"11527":11528,"11528":11529,"11529":11530,"11530":11531,"11531":11532,"11532":11533,"11533":11534,"11534":11535,"11535":11536,"11536":11537,"11537":11538,"11538":11539,"11539":11540,"11540":11541,"11541":11542,"11542":11543,"11543":11544,"11544":11545,"11545":11546,"11546":11547,"11547":11548,"11548":11549,"11549":11550,"11550":11551,"11551":11552,"11552":11553,"11553":11554,"11554":11555,"11555":11556,"11556":11557,"11557":11558,"11558":11559,"11559":11560,"11560":11561,"11561":11562,"11562":11563,"11563":11564,"11564":11565,"11565":11566,"11566":11567,"11567":11568,"11568":11569,"11569":11570,"11570":11571,"11571":11572,"11572":11573,"11573":11574,"11574":11575,"11575":11576,"11576":11577,"11577":11578,"11578":11579,"11579":11580,"11580":11581,"11581":11582,"11582":11583,"11583":11584,"11584":11585,"11585":11586,"11586":11587,"11587":11588,"11588":11589,"11589":11590,"11590":11591,"11591":11592,"11592":11593,"11593":11594,"11594":11595,"11595":11596,"11596":11597,"11597":11598,"11598":11599,"11599":11600,"11600":11601,"11601":11602,"11602":11603,"11603":11604,"11604":11605,"11605":11606,"11606":11607,"11607":11608,"11608":11609,"11609":11610,"11610":11611,"11611":11612,"11612":11613,"11613":11614,"11614":11615,"11615":11616,"11616":11617,"11617":11618,"11618":11619,"11619":11620,"11620":11621,"11621":11622,"11622":11623,"11623":11624,"11624":11625,"11625":11626,"11626":11627,"11627":11628,"11628":11629,"11629":11630,"11630":11631,"11631":11632,"11632":11633,"11633":11634,"11634":11635,"11635":11636,"11636":11637,"11637":11638,"11638":11639,"11639":11640,"11640":11641,"11641":11642,"11642":11643,"11643":11644,"11644":11645,"11645":11646,"11646":11647,"11647":11648,"11648":11649,"11649":11650,"11650":11651,"11651":11652,"11652":11653,"11653":11654,"11654":11655,"11655":11656,"11656":11657,"11657":11658,"11658":11659,"11659":11660,"11660":11661,"11661":11662,"11662":11663,"11663":11664,"11664":11665,"11665":11666,"11666":11667,"11667":11668,"11668":11669,"11669":11670,"11670":11671,"11671":11672,"11672":11673,"11673":11674,"11674":11675,"11675":11676,"11676":11677,"11677":11678,"11678":11679,"11679":11680,"11680":11681,"11681":11682,"11682":11683,"11683":11684,"11684":11685,"11685":11686,"11686":11687,"11687":11688,"11688":11689,"11689":11690,"11690":11691,"11691":11692,"11692":11693,"11693":11694,"11694":11695,"11695":11696,"11696":11697,"11697":11698,"11698":11699,"11699":11700,"11700":11701,"11701":11702,"11702":11703,"11703":11704,"11704":11705,"11705":11706,"11706":11707,"11707":11708,"11708":11709,"11709":11710,"11710":11711,"11711":11712,"11712":11713,"11713":11714,"11714":11715,"11715":11716,"11716":11717,"11717":11718,"11718":11719,"11719":11720,"11720":11721,"11721":11722,"11722":11723,"11723":11724,"11724":11725,"11725":11726,"11726":11727,"11727":11728,"11728":11729,"11729":11730,"11730":11731,"11731":11732,"11732":11733,"11733":11734,"11734":11735,"11735":11736,"11736":11737,"11737":11738,"11738":11739,"11739":11740,"11740":11741,"11741":11742,"11742":11743,"11743":11744,"11744":11745,"11745":11746,"11746":11747,"11747":11748,"11748":11749,"11749":11750,"11750":11751,"11751":11752,"11752":11753,"11753":11754,"11754":11755,"11755":11756,"11756":11757,"11757":11758,"11758":11759,"11759":11760,"11760":11761,"11761":11762,"11762":11763,"11763":11764,"11764":11765,"11765":11766,"11766":11767,"11767":11768,"11768":11769,"11769":11770,"11770":11771,"11771":11772,"11772":11773,"11773":11774,"11774":11775,"11775":11776,"11776":11777,"11777":11778,"11778":11779,"11779":11780,"11780":11781,"11781":11782,"11782":11783,"11783":11784,"11784":11785,"11785":11786,"11786":11787,"11787":11788,"11788":11789,"11789":11790,"11790":11791,"11791":11792,"11792":11793,"11793":11794,"11794":11795,"11795":11796,"11796":11797,"11797":11798,"11798":11799,"11799":11800,"11800":11801,"11801":11802,"11802":11803,"11803":11804,"11804":11805,"11805":11806,"11806":11807,"11807":11808,"11808":11809,"11809":11810,"11810":11811,"11811":11812,"11812":11813,"11813":11814,"11814":11815,"11815":11816,"11816":11817,"11817":11818,"11818":11819,"11819":11820,"11820":11821,"11821":11822,"11822":11823,"11823":11824,"11824":11825,"11825":11826,"11826":11827,"11827":11828,"11828":11829,"11829":11830,"11830":11831,"11831":11832,"11832":11833,"11833":11834,"11834":11835,"11835":11836,"11836":11837,"11837":11838,"11838":11839,"11839":11840,"11840":11841,"11841":11842,"11842":11843,"11843":11844,"11844":11845,"11845":11846,"11846":11847,"11847":11848,"11848":11849,"11849":11850,"11850":11851,"11851":11852,"11852":11853,"11853":11854,"11854":11855,"11855":11856,"11856":11857,"11857":11858,"11858":11859,"11859":11860,"11860":11861,"11861":11862,"11862":11863,"11863":11864,"11864":11865,"11865":11866,"11866":11867,"11867":11868,"11868":11869,"11869":11870,"11870":11871,"11871":11872,"11872":11873,"11873":11874,"11874":11875,"11875":11876,"11876":11877,"11877":11878,"11878":11879,"11879":11880,"11880":11881,"11881":11882,"11882":11883,"11883":11884,"11884":11885,"11885":11886,"11886":11887,"11887":11888,"11888":11889,"11889":11890,"11890":11891,"11891":11892,"11892":11893,"11893":11894,"11894":11895,"11895":11896,"11896":11897,"11897":11898,"11898":11899,"11899":11900,"11900":11901,"11901":11902,"11902":11903,"11903":11904,"11904":11905,"11905":11906,"11906":11907,"11907":11908,"11908":11909,"11909":11910,"11910":11911,"11911":11912,"11912":11913,"11913":11914,"11914":11915,"11915":11916,"11916":11917,"11917":11918,"11918":11919,"11919":11920,"11920":11921,"11921":11922,"11922":11923,"11923":11924,"11924":11925,"11925":11926,"11926":11927,"11927":11928,"11928":11929,"11929":11930,"11930":11931,"11931":11932,"11932":11933,"11933":11934,"11934":11935,"11935":11936,"11936":11937,"11937":11938,"11938":11939,"11939":11940,"11940":11941,"11941":11942,"11942":11943,"11943":11944,"11944":11945,"11945":11946,"11946":11947,"11947":11948,"11948":11949,"11949":11950,"11950":11951,"11951":11952,"11952":11953,"11953":11954,"11954":11955,"11955":11956,"11956":11957,"11957":11958,"11958":11959,"11959":11960,"11960":11961,"11961":11962,"11962":11963,"11963":11964,"11964":11965,"11965":11966,"11966":11967,"11967":11968,"11968":11969,"11969":11970,"11970":11971,"11971":11972,"11972":11973,"11973":11974,"11974":11975,"11975":11976,"11976":11977,"11977":11978,"11978":11979,"11979":11980,"11980":11981,"11981":11982,"11982":11983,"11983":11984,"11984":11985,"11985":11986,"11986":11987,"11987":11988,"11988":11989,"11989":11990,"11990":11991,"11991":11992,"11992":11993,"11993":11994,"11994":11995,"11995":11996,"11996":11997,"11997":11998,"11998":11999,"11999":12000,"12000":12001,"12001":12002,"12002":12003,"12003":12004,"12004":12005,"12005":12006,"12006":12007,"12007":12008,"12008":12009,"12009":12010,"12010":12011,"12011":12012,"12012":12013,"12013":12014,"12014":12015,"12015":12016,"12016":12017,"12017":12018,"12018":12019,"12019":12020,"12020":12021,"12021":12022,"12022":12023,"12023":12024,"12024":12025,"12025":12026,"12026":12027,"12027":12028,"12028":12029,"12029":12030,"12030":12031,"12031":12032,"12032":12033,"12033":12034,"12034":12035,"12035":12036,"12036":12037,"12037":12038,"12038":12039,"12039":12040,"12040":12041,"12041":12042,"12042":12043,"12043":12044,"12044":12045,"12045":12046,"12046":12047,"12047":12048,"12048":12049,"12049":12050,"12050":12051,"12051":12052,"12052":12053,"12053":12054,"12054":12055,"12055":12056,"12056":12057,"12057":12058,"12058":12059,"12059":12060,"12060":12061,"12061":12062,"12062":12063,"12063":12064,"12064":12065,"12065":12066,"12066":12067,"12067":12068,"12068":12069,"12069":12070,"12070":12071,"12071":12072,"12072":12073,"12073":12074,"12074":12075,"12075":12076,"12076":12077,"12077":12078,"12078":12079,"12079":12080,"12080":12081,"12081":12082,"12082":12083,"12083":12084,"12084":12085,"12085":12086,"12086":12087,"12087":12088,"12088":12089,"12089":12090,"12090":12091,"12091":12092,"12092":12093,"12093":12094,"12094":12095,"12095":12096,"12096":12097,"12097":12098,"12098":12099,"12099":12100,"12100":12101,"12101":12102,"12102":12103,"12103":12104,"12104":12105,"12105":12106,"12106":12107,"12107":12108,"12108":12109,"12109":12110,"12110":12111,"12111":12112,"12112":12113,"12113":12114,"12114":12115,"12115":12116,"12116":12117,"12117":12118,"12118":12119,"12119":12120,"12120":12121,"12121":12122,"12122":12123,"12123":12124,"12124":12125,"12125":12126,"12126":12127,"12127":12128,"12128":12129,"12129":12130,"12130":12131,"12131":12132,"12132":12133,"12133":12134,"12134":12135,"12135":12136,"12136":12137,"12137":12138,"12138":12139,"12139":12140,"12140":12141,"12141":12142,"12142":12143,"12143":12144,"12144":12145,"12145":12146,"12146":12147,"12147":12148,"12148":12149,"12149":12150,"12150":12151,"12151":12152,"12152":12153,"12153":12154,"12154":12155,"12155":12156,"12156":12157,"12157":12158,"12158":12159,"12159":12160,"12160":12161,"12161":12162,"12162":12163,"12163":12164,"12164":12165,"12165":12166,"12166":12167,"12167":12168,"12168":12169,"12169":12170,"12170":12171,"12171":12172,"12172":12173,"12173":12174,"12174":12175,"12175":12176,"12176":12177,"12177":12178,"12178":12179,"12179":12180,"12180":12181,"12181":12182,"12182":12183,"12183":12184,"12184":12185,"12185":12186,"12186":12187,"12187":12188,"12188":12189,"12189":12190,"12190":12191,"12191":12192,"12192":12193,"12193":12194,"12194":12195,"12195":12196,"12196":12197,"12197":12198,"12198":12199,"12199":12200,"12200":12201,"12201":12202,"12202":12203,"12203":12204,"12204":12205,"12205":12206,"12206":12207,"12207":12208,"12208":12209,"12209":12210,"12210":12211,"12211":12212,"12212":12213,"12213":12214,"12214":12215,"12215":12216,"12216":12217,"12217":12218,"12218":12219,"12219":12220,"12220":12221,"12221":12222,"12222":12223,"12223":12224,"12224":12225,"12225":12226,"12226":12227,"12227":12228,"12228":12229,"12229":12230,"12230":12231,"12231":12232,"12232":12233,"12233":12234,"12234":12235,"12235":12236,"12236":12237,"12237":12238,"12238":12239,"12239":12240,"12240":12241,"12241":12242,"12242":12243,"12243":12244,"12244":12245,"12245":12246,"12246":12247,"12247":12248,"12248":12249,"12249":12250,"12250":12251,"12251":12252,"12252":12253,"12253":12254,"12254":12255,"12255":12256,"12256":12257,"12257":12258,"12258":12259,"12259":12260,"12260":12261,"12261":12262,"12262":12263,"12263":12264,"12264":12265,"12265":12266,"12266":12267,"12267":12268,"12268":12269,"12269":12270,"12270":12271,"12271":12272,"12272":12273,"12273":12274,"12274":12275,"12275":12276,"12276":12277,"12277":12278,"12278":12279,"12279":12280,"12280":12281,"12281":12282,"12282":12283,"12283":12284,"12284":12285,"12285":12286,"12286":12287,"12287":12288,"12288":12289,"12289":12290,"12290":12291,"12291":12292,"12292":12293,"12293":12294,"12294":12295,"12295":12296,"12296":12297,"12297":12298,"12298":12299,"12299":12300,"12300":12301,"12301":12302,"12302":12303,"12303":12304,"12304":12305,"12305":12306,"12306":12307,"12307":12308,"12308":12309,"12309":12310,"12310":12311,"12311":12312,"12312":12313,"12313":12314,"12314":12315,"12315":12316,"12316":12317,"12317":12318,"12318":12319,"12319":12320,"12320":12321,"12321":12322,"12322":12323,"12323":12324,"12324":12325,"12325":12326,"12326":12327,"12327":12328,"12328":12329,"12329":12330,"12330":12331,"12331":12332,"12332":12333,"12333":12334,"12334":12335,"12335":12336,"12336":12337,"12337":12338,"12338":12339,"12339":12340,"12340":12341,"12341":12342,"12342":12343,"12343":12344,"12344":12345,"12345":12346,"12346":12347,"12347":12348,"12348":12349,"12349":12350,"12350":12351,"12351":12352,"12352":12353,"12353":12354,"12354":12355,"12355":12356,"12356":12357,"12357":12358,"12358":12359,"12359":12360,"12360":12361,"12361":12362,"12362":12363,"12363":12364,"12364":12365,"12365":12366,"12366":12367,"12367":12368,"12368":12369,"12369":12370,"12370":12371,"12371":12372,"12372":12373,"12373":12374,"12374":12375,"12375":12376,"12376":12377,"12377":12378,"12378":12379,"12379":12380,"12380":12381,"12381":12382,"12382":12383,"12383":12384,"12384":12385,"12385":12386,"12386":12387,"12387":12388,"12388":12389,"12389":12390,"12390":12391,"12391":12392,"12392":12393,"12393":12394,"12394":12395,"12395":12396,"12396":12397,"12397":12398,"12398":12399,"12399":12400,"12400":12401,"12401":12402,"12402":12403,"12403":12404,"12404":12405,"12405":12406,"12406":12407,"12407":12408,"12408":12409,"12409":12410,"12410":12411,"12411":12412,"12412":12413,"12413":12414,"12414":12415,"12415":12416,"12416":12417,"12417":12418,"12418":12419,"12419":12420,"12420":12421,"12421":12422,"12422":12423,"12423":12424,"12424":12425,"12425":12426,"12426":12427,"12427":12428,"12428":12429,"12429":12430,"12430":12431,"12431":12432,"12432":12433,"12433":12434,"12434":12435,"12435":12436,"12436":12437,"12437":12438,"12438":12439,"12439":12440,"12440":12441,"12441":12442,"12442":12443,"12443":12444,"12444":12445,"12445":12446,"12446":12447,"12447":12448,"12448":12449,"12449":12450,"12450":12451,"12451":12452,"12452":12453,"12453":12454,"12454":12455,"12455":12456,"12456":12457,"12457":12458,"12458":12459,"12459":12460,"12460":12461,"12461":12462,"12462":12463,"12463":12464,"12464":12465,"12465":12466,"12466":12467,"12467":12468,"12468":12469,"12469":12470,"12470":12471,"12471":12472,"12472":12473,"12473":12474,"12474":12475,"12475":12476,"12476":12477,"12477":12478,"12478":12479,"12479":12480,"12480":12481,"12481":12482,"12482":12483,"12483":12484,"12484":12485,"12485":12486,"12486":12487,"12487":12488,"12488":12489,"12489":12490,"12490":12491,"12491":12492,"12492":12493,"12493":12494,"12494":12495,"12495":12496,"12496":12497,"12497":12498,"12498":12499,"12499":12500,"12500":12501,"12501":12502,"12502":12503,"12503":12504,"12504":12505,"12505":12506,"12506":12507,"12507":12508,"12508":12509,"12509":12510,"12510":12511,"12511":12512,"12512":12513,"12513":12514,"12514":12515,"12515":12516,"12516":12517,"12517":12518,"12518":12519,"12519":12520,"12520":12521,"12521":12522,"12522":12523,"12523":12524,"12524":12525,"12525":12526,"12526":12527,"12527":12528,"12528":12529,"12529":12530,"12530":12531,"12531":12532,"12532":12533,"12533":12534,"12534":12535,"12535":12536,"12536":12537,"12537":12538,"12538":12539,"12539":12540,"12540":12541,"12541":12542,"12542":12543,"12543":12544,"12544":12545,"12545":12546,"12546":12547,"12547":12548,"12548":12549,"12549":12550,"12550":12551,"12551":12552,"12552":12553,"12553":12554,"12554":12555,"12555":12556,"12556":12557,"12557":12558,"12558":12559,"12559":12560,"12560":12561,"12561":12562,"12562":12563,"12563":12564,"12564":12565,"12565":12566,"12566":12567,"12567":12568,"12568":12569,"12569":12570,"12570":12571,"12571":12572,"12572":12573,"12573":12574,"12574":12575,"12575":12576,"12576":12577,"12577":12578,"12578":12579,"12579":12580,"12580":12581,"12581":12582,"12582":12583,"12583":12584,"12584":12585,"12585":12586,"12586":12587,"12587":12588,"12588":12589,"12589":12590,"12590":12591,"12591":12592,"12592":12593,"12593":12594,"12594":12595,"12595":12596,"12596":12597,"12597":12598,"12598":12599,"12599":12600,"12600":12601,"12601":12602,"12602":12603,"12603":12604,"12604":12605,"12605":12606,"12606":12607,"12607":12608,"12608":12609,"12609":12610,"12610":12611,"12611":12612,"12612":12613,"12613":12614,"12614":12615,"12615":12616,"12616":12617,"12617":12618,"12618":12619,"12619":12620,"12620":12621,"12621":12622,"12622":12623,"12623":12624,"12624":12625,"12625":12626,"12626":12627,"12627":12628,"12628":12629,"12629":12630,"12630":12631,"12631":12632,"12632":12633,"12633":12634,"12634":12635,"12635":12636,"12636":12637,"12637":12638,"12638":12639,"12639":12640,"12640":12641,"12641":12642,"12642":12643,"12643":12644,"12644":12645,"12645":12646,"12646":12647,"12647":12648,"12648":12649,"12649":12650,"12650":12651,"12651":12652,"12652":12653,"12653":12654,"12654":12655,"12655":12656,"12656":12657,"12657":12658,"12658":12659,"12659":12660,"12660":12661,"12661":12662,"12662":12663,"12663":12664,"12664":12665,"12665":12666,"12666":12667,"12667":12668,"12668":12669,"12669":12670,"12670":12671,"12671":12672,"12672":12673,"12673":12674,"12674":12675,"12675":12676,"12676":12677,"12677":12678,"12678":12679,"12679":12680,"12680":12681,"12681":12682,"12682":12683,"12683":12684,"12684":12685,"12685":12686,"12686":12687,"12687":12688,"12688":12689,"12689":12690,"12690":12691,"12691":12692,"12692":12693,"12693":12694,"12694":12695,"12695":12696,"12696":12697,"12697":12698,"12698":12699,"12699":12700,"12700":12701,"12701":12702,"12702":12703,"12703":12704,"12704":12705,"12705":12706,"12706":12707,"12707":12708,"12708":12709,"12709":12710,"12710":12711,"12711":12712,"12712":12713,"12713":12714,"12714":12715,"12715":12716,"12716":12717,"12717":12718,"12718":12719,"12719":12720,"12720":12721,"12721":12722,"12722":12723,"12723":12724,"12724":12725,"12725":12726,"12726":12727,"12727":12728,"12728":12729,"12729":12730,"12730":12731,"12731":12732,"12732":12733,"12733":12734,"12734":12735,"12735":12736,"12736":12737,"12737":12738,"12738":12739,"12739":12740,"12740":12741,"12741":12742,"12742":12743,"12743":12744,"12744":12745,"12745":12746,"12746":12747,"12747":12748,"12748":12749,"12749":12750,"12750":12751,"12751":12752,"12752":12753,"12753":12754,"12754":12755,"12755":12756,"12756":12757,"12757":12758,"12758":12759,"12759":12760,"12760":12761,"12761":12762,"12762":12763,"12763":12764,"12764":12765,"12765":12766,"12766":12767,"12767":12768,"12768":12769,"12769":12770,"12770":12771,"12771":12772,"12772":12773,"12773":12774,"12774":12775,"12775":12776,"12776":12777,"12777":12778,"12778":12779,"12779":12780,"12780":12781,"12781":12782,"12782":12783,"12783":12784,"12784":12785,"12785":12786,"12786":12787,"12787":12788,"12788":12789,"12789":12790,"12790":12791,"12791":12792,"12792":12793,"12793":12794,"12794":12795,"12795":12796,"12796":12797,"12797":12798,"12798":12799,"12799":12800,"12800":12801,"12801":12802,"12802":12803,"12803":12804,"12804":12805,"12805":12806,"12806":12807,"12807":12808,"12808":12809,"12809":12810,"12810":12811,"12811":12812,"12812":12813,"12813":12814,"12814":12815,"12815":12816,"12816":12817,"12817":12818,"12818":12819,"12819":12820,"12820":12821,"12821":12822,"12822":12823,"12823":12824,"12824":12825,"12825":12826,"12826":12827,"12827":12828,"12828":12829,"12829":12830,"12830":12831,"12831":12832,"12832":12833,"12833":12834,"12834":12835,"12835":12836,"12836":12837,"12837":12838,"12838":12839,"12839":12840,"12840":12841,"12841":12842,"12842":12843,"12843":12844,"12844":12845,"12845":12846,"12846":12847,"12847":12848,"12848":12849,"12849":12850,"12850":12851,"12851":12852,"12852":12853,"12853":12854,"12854":12855,"12855":12856,"12856":12857,"12857":12858,"12858":12859,"12859":12860,"12860":12861,"12861":12862,"12862":12863,"12863":12864,"12864":12865,"12865":12866,"12866":12867,"12867":12868,"12868":12869,"12869":12870,"12870":12871,"12871":12872,"12872":12873,"12873":12874,"12874":12875,"12875":12876,"12876":12877,"12877":12878,"12878":12879,"12879":12880,"12880":12881,"12881":12882,"12882":12883,"12883":12884,"12884":12885,"12885":12886,"12886":12887,"12887":12888,"12888":12889,"12889":12890,"12890":12891,"12891":12892,"12892":12893,"12893":12894,"12894":12895,"12895":12896,"12896":12897,"12897":12898,"12898":12899,"12899":12900,"12900":12901,"12901":12902,"12902":12903,"12903":12904,"12904":12905,"12905":12906,"12906":12907,"12907":12908,"12908":12909,"12909":12910,"12910":12911,"12911":12912,"12912":12913,"12913":12914,"12914":12915,"12915":12916,"12916":12917,"12917":12918,"12918":12919,"12919":12920,"12920":12921,"12921":12922,"12922":12923,"12923":12924,"12924":12925,"12925":12926,"12926":12927,"12927":12928,"12928":12929,"12929":12930,"12930":12931,"12931":12932,"12932":12933,"12933":12934,"12934":12935,"12935":12936,"12936":12937,"12937":12938,"12938":12939,"12939":12940,"12940":12941,"12941":12942,"12942":12943,"12943":12944,"12944":12945,"12945":12946,"12946":12947,"12947":12948,"12948":12949,"12949":12950,"12950":12951,"12951":12952,"12952":12953,"12953":12954,"12954":12955,"12955":12956,"12956":12957,"12957":12958,"12958":12959,"12959":12960,"12960":12961,"12961":12962,"12962":12963,"12963":12964,"12964":12965,"12965":12966,"12966":12967,"12967":12968,"12968":12969,"12969":12970,"12970":12971,"12971":12972,"12972":12973,"12973":12974,"12974":12975,"12975":12976,"12976":12977,"12977":12978,"12978":12979,"12979":12980,"12980":12981,"12981":12982,"12982":12983,"12983":12984,"12984":12985,"12985":12986,"12986":12987,"12987":12988,"12988":12989,"12989":12990,"12990":12991,"12991":12992,"12992":12993,"12993":12994,"12994":12995,"12995":12996,"12996":12997,"12997":12998,"12998":12999,"12999":13000,"13000":13001,"13001":13002,"13002":13003,"13003":13004,"13004":13005,"13005":13006,"13006":13007,"13007":13008,"13008":13009,"13009":13010,"13010":13011,"13011":13012,"13012":13013,"13013":13014,"13014":13015,"13015":13016,"13016":13017,"13017":13018,"13018":13019,"13019":13020,"13020":13021,"13021":13022,"13022":13023,"13023":13024,"13024":13025,"13025":13026,"13026":13027,"13027":13028,"13028":13029,"13029":13030,"13030":13031,"13031":13032,"13032":13033,"13033":13034,"13034":13035,"13035":13036,"13036":13037,"13037":13038,"13038":13039,"13039":13040,"13040":13041,"13041":13042,"13042":13043,"13043":13044,"13044":13045,"13045":13046,"13046":13047,"13047":13048,"13048":13049,"13049":13050,"13050":13051,"13051":13052,"13052":13053,"13053":13054,"13054":13055,"13055":13056,"13056":13057,"13057":13058,"13058":13059,"13059":13060,"13060":13061,"13061":13062,"13062":13063,"13063":13064,"13064":13065,"13065":13066,"13066":13067,"13067":13068,"13068":13069,"13069":13070,"13070":13071,"13071":13072,"13072":13073,"13073":13074,"13074":13075,"13075":13076,"13076":13077,"13077":13078,"13078":13079,"13079":13080,"13080":13081,"13081":13082,"13082":13083,"13083":13084,"13084":13085,"13085":13086,"13086":13087,"13087":13088,"13088":13089,"13089":13090,"13090":13091,"13091":13092,"13092":13093,"13093":13094,"13094":13095,"13095":13096,"13096":13097,"13097":13098,"13098":13099,"13099":13100,"13100":13101,"13101":13102,"13102":13103,"13103":13104,"13104":13105,"13105":13106,"13106":13107,"13107":13108,"13108":13109,"13109":13110,"13110":13111,"13111":13112,"13112":13113,"13113":13114,"13114":13115,"13115":13116,"13116":13117,"13117":13118,"13118":13119,"13119":13120,"13120":13121,"13121":13122,"13122":13123,"13123":13124,"13124":13125,"13125":13126,"13126":13127,"13127":13128,"13128":13129,"13129":13130,"13130":13131,"13131":13132,"13132":13133,"13133":13134,"13134":13135,"13135":13136,"13136":13137,"13137":13138,"13138":13139,"13139":13140,"13140":13141,"13141":13142,"13142":13143,"13143":13144,"13144":13145,"13145":13146,"13146":13147,"13147":13148,"13148":13149,"13149":13150,"13150":13151,"13151":13152,"13152":13153,"13153":13154,"13154":13155,"13155":13156,"13156":13157,"13157":13158,"13158":13159,"13159":13160,"13160":13161,"13161":13162,"13162":13163,"13163":13164,"13164":13165,"13165":13166,"13166":13167,"13167":13168,"13168":13169,"13169":13170,"13170":13171,"13171":13172,"13172":13173,"13173":13174,"13174":13175,"13175":13176,"13176":13177,"13177":13178,"13178":13179,"13179":13180,"13180":13181,"13181":13182,"13182":13183,"13183":13184,"13184":13185,"13185":13186,"13186":13187,"13187":13188,"13188":13189,"13189":13190,"13190":13191,"13191":13192,"13192":13193,"13193":13194,"13194":13195,"13195":13196,"13196":13197,"13197":13198,"13198":13199,"13199":13200,"13200":13201,"13201":13202,"13202":13203,"13203":13204,"13204":13205,"13205":13206,"13206":13207,"13207":13208,"13208":13209,"13209":13210,"13210":13211,"13211":13212,"13212":13213,"13213":13214,"13214":13215,"13215":13216,"13216":13217,"13217":13218,"13218":13219,"13219":13220,"13220":13221,"13221":13222,"13222":13223,"13223":13224,"13224":13225,"13225":13226,"13226":13227,"13227":13228,"13228":13229,"13229":13230,"13230":13231,"13231":13232,"13232":13233,"13233":13234,"13234":13235,"13235":13236,"13236":13237,"13237":13238,"13238":13239,"13239":13240,"13240":13241,"13241":13242,"13242":13243,"13243":13244,"13244":13245,"13245":13246,"13246":13247,"13247":13248,"13248":13249,"13249":13250,"13250":13251,"13251":13252,"13252":13253,"13253":13254,"13254":13255,"13255":13256,"13256":13257,"13257":13258,"13258":13259,"13259":13260,"13260":13261,"13261":13262,"13262":13263,"13263":13264,"13264":13265,"13265":13266,"13266":13267,"13267":13268,"13268":13269,"13269":13270,"13270":13271,"13271":13272,"13272":13273,"13273":13274,"13274":13275,"13275":13276,"13276":13277,"13277":13278,"13278":13279,"13279":13280,"13280":13281,"13281":13282,"13282":13283,"13283":13284,"13284":13285,"13285":13286,"13286":13287,"13287":13288,"13288":13289,"13289":13290,"13290":13291,"13291":13292,"13292":13293,"13293":13294,"13294":13295,"13295":13296,"13296":13297,"13297":13298,"13298":13299,"13299":13300,"13300":13301,"13301":13302,"13302":13303,"13303":13304,"13304":13305,"13305":13306,"13306":13307,"13307":13308,"13308":13309,"13309":13310,"13310":13311,"13311":13312,"13312":13313,"13313":13314,"13314":13315,"13315":13316,"13316":13317,"13317":13318,"13318":13319,"13319":13320,"13320":13321,"13321":13322,"13322":13323,"13323":13324,"13324":13325,"13325":13326,"13326":13327,"13327":13328,"13328":13329,"13329":13330,"13330":13331,"13331":13332,"13332":13333,"13333":13334,"13334":13335,"13335":13336,"13336":13337,"13337":13338,"13338":13339,"13339":13340,"13340":13341,"13341":13342,"13342":13343,"13343":13344,"13344":13345,"13345":13346,"13346":13347,"13347":13348,"13348":13349,"13349":13350,"13350":13351,"13351":13352,"13352":13353,"13353":13354,"13354":13355,"13355":13356,"13356":13357,"13357":13358,"13358":13359,"13359":13360,"13360":13361,"13361":13362,"13362":13363,"13363":13364,"13364":13365,"13365":13366,"13366":13367,"13367":13368,"13368":13369,"13369":13370,"13370":13371,"13371":13372,"13372":13373,"13373":13374,"13374":13375,"13375":13376,"13376":13377,"13377":13378,"13378":13379,"13379":13380,"13380":13381,"13381":13382,"13382":13383,"13383":13384,"13384":13385,"13385":13386,"13386":13387,"13387":13388,"13388":13389,"13389":13390,"13390":13391,"13391":13392,"13392":13393,"13393":13394,"13394":13395,"13395":13396,"13396":13397,"13397":13398,"13398":13399,"13399":13400,"13400":13401,"13401":13402,"13402":13403,"13403":13404,"13404":13405,"13405":13406,"13406":13407,"13407":13408,"13408":13409,"13409":13410,"13410":13411,"13411":13412,"13412":13413,"13413":13414,"13414":13415,"13415":13416,"13416":13417,"13417":13418,"13418":13419,"13419":13420,"13420":13421,"13421":13422,"13422":13423,"13423":13424,"13424":13425,"13425":13426,"13426":13427,"13427":13428,"13428":13429,"13429":13430,"13430":13431,"13431":13432,"13432":13433,"13433":13434,"13434":13435,"13435":13436,"13436":13437,"13437":13438,"13438":13439,"13439":13440,"13440":13441,"13441":13442,"13442":13443,"13443":13444,"13444":13445,"13445":13446,"13446":13447,"13447":13448,"13448":13449,"13449":13450,"13450":13451,"13451":13452,"13452":13453,"13453":13454,"13454":13455,"13455":13456,"13456":13457,"13457":13458,"13458":13459,"13459":13460,"13460":13461,"13461":13462,"13462":13463,"13463":13464,"13464":13465,"13465":13466,"13466":13467,"13467":13468,"13468":13469,"13469":13470,"13470":13471,"13471":13472,"13472":13473,"13473":13474,"13474":13475,"13475":13476,"13476":13477,"13477":13478,"13478":13479,"13479":13480,"13480":13481,"13481":13482,"13482":13483,"13483":13484,"13484":13485,"13485":13486,"13486":13487,"13487":13488,"13488":13489,"13489":13490,"13490":13491,"13491":13492,"13492":13493,"13493":13494,"13494":13495,"13495":13496,"13496":13497,"13497":13498,"13498":13499,"13499":13500,"13500":13501,"13501":13502,"13502":13503,"13503":13504,"13504":13505,"13505":13506,"13506":13507,"13507":13508,"13508":13509,"13509":13510,"13510":13511,"13511":13512,"13512":13513,"13513":13514,"13514":13515,"13515":13516,"13516":13517,"13517":13518,"13518":13519,"13519":13520,"13520":13521,"13521":13522,"13522":13523,"13523":13524,"13524":13525,"13525":13526,"13526":13527,"13527":13528,"13528":13529,"13529":13530,"13530":13531,"13531":13532,"13532":13533,"13533":13534,"13534":13535,"13535":13536,"13536":13537,"13537":13538,"13538":13539,"13539":13540,"13540":13541,"13541":13542,"13542":13543,"13543":13544,"13544":13545,"13545":13546,"13546":13547,"13547":13548,"13548":13549,"13549":13550,"13550":13551,"13551":13552,"13552":13553,"13553":13554,"13554":13555,"13555":13556,"13556":13557,"13557":13558,"13558":13559,"13559":13560,"13560":13561,"13561":13562,"13562":13563,"13563":13564,"13564":13565,"13565":13566,"13566":13567,"13567":13568,"13568":13569,"13569":13570,"13570":13571,"13571":13572,"13572":13573,"13573":13574,"13574":13575,"13575":13576,"13576":13577,"13577":13578,"13578":13579,"13579":13580,"13580":13581,"13581":13582,"13582":13583,"13583":13584,"13584":13585,"13585":13586,"13586":13587,"13587":13588,"13588":13589,"13589":13590,"13590":13591,"13591":13592,"13592":13593,"13593":13594,"13594":13595,"13595":13596,"13596":13597,"13597":13598,"13598":13599,"13599":13600,"13600":13601,"13601":13602,"13602":13603,"13603":13604,"13604":13605,"13605":13606,"13606":13607,"13607":13608,"13608":13609,"13609":13610,"13610":13611,"13611":13612,"13612":13613,"13613":13614,"13614":13615,"13615":13616,"13616":13617,"13617":13618,"13618":13619,"13619":13620,"13620":13621,"13621":13622,"13622":13623,"13623":13624,"13624":13625,"13625":13626,"13626":13627,"13627":13628,"13628":13629,"13629":13630,"13630":13631,"13631":13632,"13632":13633,"13633":13634,"13634":13635,"13635":13636,"13636":13637,"13637":13638,"13638":13639,"13639":13640,"13640":13641,"13641":13642,"13642":13643,"13643":13644,"13644":13645,"13645":13646,"13646":13647,"13647":13648,"13648":13649,"13649":13650,"13650":13651,"13651":13652,"13652":13653,"13653":13654,"13654":13655,"13655":13656,"13656":13657,"13657":13658,"13658":13659,"13659":13660,"13660":13661,"13661":13662,"13662":13663,"13663":13664,"13664":13665,"13665":13666,"13666":13667,"13667":13668,"13668":13669,"13669":13670,"13670":13671,"13671":13672,"13672":13673,"13673":13674,"13674":13675,"13675":13676,"13676":13677,"13677":13678,"13678":13679,"13679":13680,"13680":13681,"13681":13682,"13682":13683,"13683":13684,"13684":13685,"13685":13686,"13686":13687,"13687":13688,"13688":13689,"13689":13690,"13690":13691,"13691":13692,"13692":13693,"13693":13694,"13694":13695,"13695":13696,"13696":13697,"13697":13698,"13698":13699,"13699":13700,"13700":13701,"13701":13702,"13702":13703,"13703":13704,"13704":13705,"13705":13706,"13706":13707,"13707":13708,"13708":13709,"13709":13710,"13710":13711,"13711":13712,"13712":13713,"13713":13714,"13714":13715,"13715":13716,"13716":13717,"13717":13718,"13718":13719,"13719":13720,"13720":13721,"13721":13722,"13722":13723,"13723":13724,"13724":13725,"13725":13726,"13726":13727,"13727":13728,"13728":13729,"13729":13730,"13730":13731,"13731":13732,"13732":13733,"13733":13734,"13734":13735,"13735":13736,"13736":13737,"13737":13738,"13738":13739,"13739":13740,"13740":13741,"13741":13742,"13742":13743,"13743":13744,"13744":13745,"13745":13746,"13746":13747,"13747":13748,"13748":13749,"13749":13750,"13750":13751,"13751":13752,"13752":13753,"13753":13754,"13754":13755,"13755":13756,"13756":13757,"13757":13758,"13758":13759,"13759":13760,"13760":13761,"13761":13762,"13762":13763,"13763":13764,"13764":13765,"13765":13766,"13766":13767,"13767":13768,"13768":13769,"13769":13770,"13770":13771,"13771":13772,"13772":13773,"13773":13774,"13774":13775,"13775":13776,"13776":13777,"13777":13778,"13778":13779,"13779":13780,"13780":13781,"13781":13782,"13782":13783,"13783":13784,"13784":13785,"13785":13786,"13786":13787,"13787":13788,"13788":13789,"13789":13790,"13790":13791,"13791":13792,"13792":13793,"13793":13794,"13794":13795,"13795":13796,"13796":13797,"13797":13798,"13798":13799,"13799":13800,"13800":13801,"13801":13802,"13802":13803,"13803":13804,"13804":13805,"13805":13806,"13806":13807,"13807":13808,"13808":13809,"13809":13810,"13810":13811,"13811":13812,"13812":13813,"13813":13814,"13814":13815,"13815":13816,"13816":13817,"13817":13818,"13818":13819,"13819":13820,"13820":13821,"13821":13822,"13822":13823,"13823":13824,"13824":13825,"13825":13826,"13826":13827,"13827":13828,"13828":13829,"13829":13830,"13830":13831,"13831":13832,"13832":13833,"13833":13834,"13834":13835,"13835":13836,"13836":13837,"13837":13838,"13838":13839,"13839":13840,"13840":13841,"13841":13842,"13842":13843,"13843":13844,"13844":13845,"13845":13846,"13846":13847,"13847":13848,"13848":13849,"13849":13850,"13850":13851,"13851":13852,"13852":13853,"13853":13854,"13854":13855,"13855":13856,"13856":13857,"13857":13858,"13858":13859,"13859":13860,"13860":13861,"13861":13862,"13862":13863,"13863":13864,"13864":13865,"13865":13866,"13866":13867,"13867":13868,"13868":13869,"13869":13870,"13870":13871,"13871":13872,"13872":13873,"13873":13874,"13874":13875,"13875":13876,"13876":13877,"13877":13878,"13878":13879,"13879":13880,"13880":13881,"13881":13882,"13882":13883,"13883":13884,"13884":13885,"13885":13886,"13886":13887,"13887":13888,"13888":13889,"13889":13890,"13890":13891,"13891":13892,"13892":13893,"13893":13894,"13894":13895,"13895":13896,"13896":13897,"13897":13898,"13898":13899,"13899":13900,"13900":13901,"13901":13902,"13902":13903,"13903":13904,"13904":13905,"13905":13906,"13906":13907,"13907":13908,"13908":13909,"13909":13910,"13910":13911,"13911":13912,"13912":13913,"13913":13914,"13914":13915,"13915":13916,"13916":13917,"13917":13918,"13918":13919,"13919":13920,"13920":13921,"13921":13922,"13922":13923,"13923":13924,"13924":13925,"13925":13926,"13926":13927,"13927":13928,"13928":13929,"13929":13930,"13930":13931,"13931":13932,"13932":13933,"13933":13934,"13934":13935,"13935":13936,"13936":13937,"13937":13938,"13938":13939,"13939":13940,"13940":13941,"13941":13942,"13942":13943,"13943":13944,"13944":13945,"13945":13946,"13946":13947,"13947":13948,"13948":13949,"13949":13950,"13950":13951,"13951":13952,"13952":13953,"13953":13954,"13954":13955,"13955":13956,"13956":13957,"13957":13958,"13958":13959,"13959":13960,"13960":13961,"13961":13962,"13962":13963,"13963":13964,"13964":13965,"13965":13966,"13966":13967,"13967":13968,"13968":13969,"13969":13970,"13970":13971,"13971":13972,"13972":13973,"13973":13974,"13974":13975,"13975":13976,"13976":13977,"13977":13978,"13978":13979,"13979":13980,"13980":13981,"13981":13982,"13982":13983,"13983":13984,"13984":13985,"13985":13986,"13986":13987,"13987":13988,"13988":13989,"13989":13990,"13990":13991,"13991":13992,"13992":13993,"13993":13994,"13994":13995,"13995":13996,"13996":13997,"13997":13998,"13998":13999,"13999":14000,"14000":14001,"14001":14002,"14002":14003,"14003":14004,"14004":14005,"14005":14006,"14006":14007,"14007":14008,"14008":14009,"14009":14010,"14010":14011,"14011":14012,"14012":14013,"14013":14014,"14014":14015,"14015":14016,"14016":14017,"14017":14018,"14018":14019,"14019":14020,"14020":14021,"14021":14022,"14022":14023,"14023":14024,"14024":14025,"14025":14026,"14026":14027,"14027":14028,"14028":14029,"14029":14030,"14030":14031,"14031":14032,"14032":14033,"14033":14034,"14034":14035,"14035":14036,"14036":14037,"14037":14038,"14038":14039,"14039":14040,"14040":14041,"14041":14042,"14042":14043,"14043":14044,"14044":14045,"14045":14046,"14046":14047,"14047":14048,"14048":14049,"14049":14050,"14050":14051,"14051":14052,"14052":14053,"14053":14054,"14054":14055,"14055":14056,"14056":14057,"14057":14058,"14058":14059,"14059":14060,"14060":14061,"14061":14062,"14062":14063,"14063":14064,"14064":14065,"14065":14066,"14066":14067,"14067":14068,"14068":14069,"14069":14070,"14070":14071,"14071":14072,"14072":14073,"14073":14074,"14074":14075,"14075":14076,"14076":14077,"14077":14078,"14078":14079,"14079":14080,"14080":14081,"14081":14082,"14082":14083,"14083":14084,"14084":14085,"14085":14086,"14086":14087,"14087":14088,"14088":14089,"14089":14090,"14090":14091,"14091":14092,"14092":14093,"14093":14094,"14094":14095,"14095":14096,"14096":14097,"14097":14098,"14098":14099,"14099":14100,"14100":14101,"14101":14102,"14102":14103,"14103":14104,"14104":14105,"14105":14106,"14106":14107,"14107":14108,"14108":14109,"14109":14110,"14110":14111,"14111":14112,"14112":14113,"14113":14114,"14114":14115,"14115":14116,"14116":14117,"14117":14118,"14118":14119,"14119":14120,"14120":14121,"14121":14122,"14122":14123,"14123":14124,"14124":14125,"14125":14126,"14126":14127,"14127":14128,"14128":14129,"14129":14130,"14130":14131,"14131":14132,"14132":14133,"14133":14134,"14134":14135,"14135":14136,"14136":14137,"14137":14138,"14138":14139,"14139":14140,"14140":14141,"14141":14142,"14142":14143,"14143":14144,"14144":14145,"14145":14146,"14146":14147,"14147":14148,"14148":14149,"14149":14150,"14150":14151,"14151":14152,"14152":14153,"14153":14154,"14154":14155,"14155":14156,"14156":14157,"14157":14158,"14158":14159,"14159":14160,"14160":14161,"14161":14162,"14162":14163,"14163":14164,"14164":14165,"14165":14166,"14166":14167,"14167":14168,"14168":14169,"14169":14170,"14170":14171,"14171":14172,"14172":14173,"14173":14174,"14174":14175,"14175":14176,"14176":14177,"14177":14178,"14178":14179,"14179":14180,"14180":14181,"14181":14182,"14182":14183,"14183":14184,"14184":14185,"14185":14186,"14186":14187,"14187":14188,"14188":14189,"14189":14190,"14190":14191,"14191":14192,"14192":14193,"14193":14194,"14194":14195,"14195":14196,"14196":14197,"14197":14198,"14198":14199,"14199":14200,"14200":14201,"14201":14202,"14202":14203,"14203":14204,"14204":14205,"14205":14206,"14206":14207,"14207":14208,"14208":14209,"14209":14210,"14210":14211,"14211":14212,"14212":14213,"14213":14214,"14214":14215,"14215":14216,"14216":14217,"14217":14218,"14218":14219,"14219":14220,"14220":14221,"14221":14222,"14222":14223,"14223":14224,"14224":14225,"14225":14226,"14226":14227,"14227":14228,"14228":14229,"14229":14230,"14230":14231,"14231":14232,"14232":14233,"14233":14234,"14234":14235,"14235":14236,"14236":14237,"14237":14238,"14238":14239,"14239":14240,"14240":14241,"14241":14242,"14242":14243,"14243":14244,"14244":14245,"14245":14246,"14246":14247,"14247":14248,"14248":14249,"14249":14250,"14250":14251,"14251":14252,"14252":14253,"14253":14254,"14254":14255,"14255":14256,"14256":14257,"14257":14258,"14258":14259,"14259":14260,"14260":14261,"14261":14262,"14262":14263,"14263":14264,"14264":14265,"14265":14266,"14266":14267,"14267":14268,"14268":14269,"14269":14270,"14270":14271,"14271":14272,"14272":14273,"14273":14274,"14274":14275,"14275":14276,"14276":14277,"14277":14278,"14278":14279,"14279":14280,"14280":14281,"14281":14282,"14282":14283,"14283":14284,"14284":14285,"14285":14286,"14286":14287,"14287":14288,"14288":14289,"14289":14290,"14290":14291,"14291":14292,"14292":14293,"14293":14294,"14294":14295,"14295":14296,"14296":14297,"14297":14298,"14298":14299,"14299":14300,"14300":14301,"14301":14302,"14302":14303,"14303":14304,"14304":14305,"14305":14306,"14306":14307,"14307":14308,"14308":14309,"14309":14310,"14310":14311,"14311":14312,"14312":14313,"14313":14314,"14314":14315,"14315":14316,"14316":14317,"14317":14318,"14318":14319,"14319":14320,"14320":14321,"14321":14322,"14322":14323,"14323":14324,"14324":14325,"14325":14326,"14326":14327,"14327":14328,"14328":14329,"14329":14330,"14330":14331,"14331":14332,"14332":14333,"14333":14334,"14334":14335,"14335":14336,"14336":14337,"14337":14338,"14338":14339,"14339":14340,"14340":14341,"14341":14342,"14342":14343,"14343":14344,"14344":14345,"14345":14346,"14346":14347,"14347":14348,"14348":14349,"14349":14350,"14350":14351,"14351":14352,"14352":14353,"14353":14354,"14354":14355,"14355":14356,"14356":14357,"14357":14358,"14358":14359,"14359":14360,"14360":14361,"14361":14362,"14362":14363,"14363":14364,"14364":14365,"14365":14366,"14366":14367,"14367":14368,"14368":14369,"14369":14370,"14370":14371,"14371":14372,"14372":14373,"14373":14374,"14374":14375,"14375":14376,"14376":14377,"14377":14378,"14378":14379,"14379":14380,"14380":14381,"14381":14382,"14382":14383,"14383":14384,"14384":14385,"14385":14386,"14386":14387,"14387":14388,"14388":14389,"14389":14390,"14390":14391,"14391":14392,"14392":14393,"14393":14394,"14394":14395,"14395":14396,"14396":14397,"14397":14398,"14398":14399,"14399":14400,"14400":14401,"14401":14402,"14402":14403,"14403":14404,"14404":14405,"14405":14406,"14406":14407,"14407":14408,"14408":14409,"14409":14410,"14410":14411,"14411":14412,"14412":14413,"14413":14414,"14414":14415,"14415":14416,"14416":14417,"14417":14418,"14418":14419,"14419":14420,"14420":14421,"14421":14422,"14422":14423,"14423":14424,"14424":14425,"14425":14426,"14426":14427,"14427":14428,"14428":14429,"14429":14430,"14430":14431,"14431":14432,"14432":14433,"14433":14434,"14434":14435,"14435":14436,"14436":14437,"14437":14438,"14438":14439,"14439":14440,"14440":14441,"14441":14442,"14442":14443,"14443":14444,"14444":14445,"14445":14446,"14446":14447,"14447":14448,"14448":14449,"14449":14450,"14450":14451,"14451":14452,"14452":14453,"14453":14454,"14454":14455,"14455":14456,"14456":14457,"14457":14458,"14458":14459,"14459":14460,"14460":14461,"14461":14462,"14462":14463,"14463":14464,"14464":14465,"14465":14466,"14466":14467,"14467":14468,"14468":14469,"14469":14470,"14470":14471,"14471":14472,"14472":14473,"14473":14474,"14474":14475,"14475":14476,"14476":14477,"14477":14478,"14478":14479,"14479":14480,"14480":14481,"14481":14482,"14482":14483,"14483":14484,"14484":14485,"14485":14486,"14486":14487,"14487":14488,"14488":14489,"14489":14490,"14490":14491,"14491":14492,"14492":14493,"14493":14494,"14494":14495,"14495":14496,"14496":14497,"14497":14498,"14498":14499,"14499":14500,"14500":14501,"14501":14502,"14502":14503,"14503":14504,"14504":14505,"14505":14506,"14506":14507,"14507":14508,"14508":14509,"14509":14510,"14510":14511,"14511":14512,"14512":14513,"14513":14514,"14514":14515,"14515":14516,"14516":14517,"14517":14518,"14518":14519,"14519":14520,"14520":14521,"14521":14522,"14522":14523,"14523":14524,"14524":14525,"14525":14526,"14526":14527,"14527":14528,"14528":14529,"14529":14530,"14530":14531,"14531":14532,"14532":14533,"14533":14534,"14534":14535,"14535":14536,"14536":14537,"14537":14538,"14538":14539,"14539":14540,"14540":14541,"14541":14542,"14542":14543,"14543":14544,"14544":14545,"14545":14546,"14546":14547,"14547":14548,"14548":14549,"14549":14550,"14550":14551,"14551":14552,"14552":14553,"14553":14554,"14554":14555,"14555":14556,"14556":14557,"14557":14558,"14558":14559,"14559":14560,"14560":14561,"14561":14562,"14562":14563,"14563":14564,"14564":14565,"14565":14566,"14566":14567,"14567":14568,"14568":14569,"14569":14570,"14570":14571,"14571":14572,"14572":14573,"14573":14574,"14574":14575,"14575":14576,"14576":14577,"14577":14578,"14578":14579,"14579":14580,"14580":14581,"14581":14582,"14582":14583,"14583":14584,"14584":14585,"14585":14586,"14586":14587,"14587":14588,"14588":14589,"14589":14590,"14590":14591,"14591":14592,"14592":14593,"14593":14594,"14594":14595,"14595":14596,"14596":14597,"14597":14598,"14598":14599,"14599":14600,"14600":14601,"14601":14602,"14602":14603,"14603":14604,"14604":14605,"14605":14606,"14606":14607,"14607":14608,"14608":14609,"14609":14610,"14610":14611,"14611":14612,"14612":14613,"14613":14614,"14614":14615,"14615":14616,"14616":14617,"14617":14618,"14618":14619,"14619":14620,"14620":14621,"14621":14622,"14622":14623,"14623":14624,"14624":14625,"14625":14626,"14626":14627,"14627":14628,"14628":14629,"14629":14630,"14630":14631,"14631":14632,"14632":14633,"14633":14634,"14634":14635,"14635":14636,"14636":14637,"14637":14638,"14638":14639,"14639":14640,"14640":14641,"14641":14642,"14642":14643,"14643":14644,"14644":14645,"14645":14646,"14646":14647,"14647":14648,"14648":14649,"14649":14650,"14650":14651,"14651":14652,"14652":14653,"14653":14654,"14654":14655,"14655":14656,"14656":14657,"14657":14658,"14658":14659,"14659":14660,"14660":14661,"14661":14662,"14662":14663,"14663":14664,"14664":14665,"14665":14666,"14666":14667,"14667":14668,"14668":14669,"14669":14670,"14670":14671,"14671":14672,"14672":14673,"14673":14674,"14674":14675,"14675":14676,"14676":14677,"14677":14678,"14678":14679,"14679":14680,"14680":14681,"14681":14682,"14682":14683,"14683":14684,"14684":14685,"14685":14686,"14686":14687,"14687":14688,"14688":14689,"14689":14690,"14690":14691,"14691":14692,"14692":14693,"14693":14694,"14694":14695,"14695":14696,"14696":14697,"14697":14698,"14698":14699,"14699":14700,"14700":14701,"14701":14702,"14702":14703,"14703":14704,"14704":14705,"14705":14706,"14706":14707,"14707":14708,"14708":14709,"14709":14710,"14710":14711,"14711":14712,"14712":14713,"14713":14714,"14714":14715,"14715":14716,"14716":14717,"14717":14718,"14718":14719,"14719":14720,"14720":14721,"14721":14722,"14722":14723,"14723":14724,"14724":14725,"14725":14726,"14726":14727,"14727":14728,"14728":14729,"14729":14730,"14730":14731,"14731":14732,"14732":14733,"14733":14734,"14734":14735,"14735":14736,"14736":14737,"14737":14738,"14738":14739,"14739":14740,"14740":14741,"14741":14742,"14742":14743,"14743":14744,"14744":14745,"14745":14746,"14746":14747,"14747":14748,"14748":14749,"14749":14750,"14750":14751,"14751":14752,"14752":14753,"14753":14754,"14754":14755,"14755":14756,"14756":14757,"14757":14758,"14758":14759,"14759":14760,"14760":14761,"14761":14762,"14762":14763,"14763":14764,"14764":14765,"14765":14766,"14766":14767,"14767":14768,"14768":14769,"14769":14770,"14770":14771,"14771":14772,"14772":14773,"14773":14774,"14774":14775,"14775":14776,"14776":14777,"14777":14778,"14778":14779,"14779":14780,"14780":14781,"14781":14782,"14782":14783,"14783":14784,"14784":14785,"14785":14786,"14786":14787,"14787":14788,"14788":14789,"14789":14790,"14790":14791,"14791":14792,"14792":14793,"14793":14794,"14794":14795,"14795":14796,"14796":14797,"14797":14798,"14798":14799,"14799":14800,"14800":14801,"14801":14802,"14802":14803,"14803":14804,"14804":14805,"14805":14806,"14806":14807,"14807":14808,"14808":14809,"14809":14810,"14810":14811,"14811":14812,"14812":14813,"14813":14814,"14814":14815,"14815":14816,"14816":14817,"14817":14818,"14818":14819,"14819":14820,"14820":14821,"14821":14822,"14822":14823,"14823":14824,"14824":14825,"14825":14826,"14826":14827,"14827":14828,"14828":14829,"14829":14830,"14830":14831,"14831":14832,"14832":14833,"14833":14834,"14834":14835,"14835":14836,"14836":14837,"14837":14838,"14838":14839,"14839":14840,"14840":14841,"14841":14842,"14842":14843,"14843":14844,"14844":14845,"14845":14846,"14846":14847,"14847":14848,"14848":14849,"14849":14850,"14850":14851,"14851":14852,"14852":14853,"14853":14854,"14854":14855,"14855":14856,"14856":14857,"14857":14858,"14858":14859,"14859":14860,"14860":14861,"14861":14862,"14862":14863,"14863":14864,"14864":14865,"14865":14866,"14866":14867,"14867":14868,"14868":14869,"14869":14870,"14870":14871,"14871":14872,"14872":14873,"14873":14874,"14874":14875,"14875":14876,"14876":14877,"14877":14878,"14878":14879,"14879":14880,"14880":14881,"14881":14882,"14882":14883,"14883":14884,"14884":14885,"14885":14886,"14886":14887,"14887":14888,"14888":14889,"14889":14890,"14890":14891,"14891":14892,"14892":14893,"14893":14894,"14894":14895,"14895":14896,"14896":14897,"14897":14898,"14898":14899,"14899":14900,"14900":14901,"14901":14902,"14902":14903,"14903":14904,"14904":14905,"14905":14906,"14906":14907,"14907":14908,"14908":14909,"14909":14910,"14910":14911,"14911":14912,"14912":14913,"14913":14914,"14914":14915,"14915":14916,"14916":14917,"14917":14918,"14918":14919,"14919":14920,"14920":14921,"14921":14922,"14922":14923,"14923":14924,"14924":14925,"14925":14926,"14926":14927,"14927":14928,"14928":14929,"14929":14930,"14930":14931,"14931":14932,"14932":14933,"14933":14934,"14934":14935,"14935":14936,"14936":14937,"14937":14938,"14938":14939,"14939":14940,"14940":14941,"14941":14942,"14942":14943,"14943":14944,"14944":14945,"14945":14946,"14946":14947,"14947":14948,"14948":14949,"14949":14950,"14950":14951,"14951":14952,"14952":14953,"14953":14954,"14954":14955,"14955":14956,"14956":14957,"14957":14958,"14958":14959,"14959":14960,"14960":14961,"14961":14962,"14962":14963,"14963":14964,"14964":14965,"14965":14966,"14966":14967,"14967":14968,"14968":14969,"14969":14970,"14970":14971,"14971":14972,"14972":14973,"14973":14974,"14974":14975,"14975":14976,"14976":14977,"14977":14978,"14978":14979,"14979":14980,"14980":14981,"14981":14982,"14982":14983,"14983":14984,"14984":14985,"14985":14986,"14986":14987,"14987":14988,"14988":14989,"14989":14990,"14990":14991,"14991":14992,"14992":14993,"14993":14994,"14994":14995,"14995":14996,"14996":14997,"14997":14998,"14998":14999,"14999":15000,"15000":15001,"15001":15002,"15002":15003,"15003":15004,"15004":15005,"15005":15006,"15006":15007,"15007":15008,"15008":15009,"15009":15010,"15010":15011,"15011":15012,"15012":15013,"15013":15014,"15014":15015,"15015":15016,"15016":15017,"15017":15018,"15018":15019,"15019":15020,"15020":15021,"15021":15022,"15022":15023,"15023":15024,"15024":15025,"15025":15026,"15026":15027,"15027":15028,"15028":15029,"15029":15030,"15030":15031,"15031":15032,"15032":15033,"15033":15034,"15034":15035,"15035":15036,"15036":15037,"15037":15038,"15038":15039,"15039":15040,"15040":15041,"15041":15042,"15042":15043,"15043":15044,"15044":15045,"15045":15046,"15046":15047,"15047":15048,"15048":15049,"15049":15050,"15050":15051,"15051":15052,"15052":15053,"15053":15054,"15054":15055,"15055":15056,"15056":15057,"15057":15058,"15058":15059,"15059":15060,"15060":15061,"15061":15062,"15062":15063,"15063":15064,"15064":15065,"15065":15066,"15066":15067,"15067":15068,"15068":15069,"15069":15070,"15070":15071,"15071":15072,"15072":15073,"15073":15074,"15074":15075,"15075":15076,"15076":15077,"15077":15078,"15078":15079,"15079":15080,"15080":15081,"15081":15082,"15082":15083,"15083":15084,"15084":15085,"15085":15086,"15086":15087,"15087":15088,"15088":15089,"15089":15090,"15090":15091,"15091":15092,"15092":15093,"15093":15094,"15094":15095,"15095":15096,"15096":15097,"15097":15098,"15098":15099,"15099":15100,"15100":15101,"15101":15102,"15102":15103,"15103":15104,"15104":15105,"15105":15106,"15106":15107,"15107":15108,"15108":15109,"15109":15110,"15110":15111,"15111":15112,"15112":15113,"15113":15114,"15114":15115,"15115":15116,"15116":15117,"15117":15118,"15118":15119,"15119":15120,"15120":15121,"15121":15122,"15122":15123,"15123":15124,"15124":15125,"15125":15126,"15126":15127,"15127":15128,"15128":15129,"15129":15130,"15130":15131,"15131":15132,"15132":15133,"15133":15134,"15134":15135,"15135":15136,"15136":15137,"15137":15138,"15138":15139,"15139":15140,"15140":15141,"15141":15142,"15142":15143,"15143":15144,"15144":15145,"15145":15146,"15146":15147,"15147":15148,"15148":15149,"15149":15150,"15150":15151,"15151":15152,"15152":15153,"15153":15154,"15154":15155,"15155":15156,"15156":15157,"15157":15158,"15158":15159,"15159":15160,"15160":15161,"15161":15162,"15162":15163,"15163":15164,"15164":15165,"15165":15166,"15166":15167,"15167":15168,"15168":15169,"15169":15170,"15170":15171,"15171":15172,"15172":15173,"15173":15174,"15174":15175,"15175":15176,"15176":15177,"15177":15178,"15178":15179,"15179":15180,"15180":15181,"15181":15182,"15182":15183,"15183":15184,"15184":15185,"15185":15186,"15186":15187,"15187":15188,"15188":15189,"15189":15190,"15190":15191,"15191":15192,"15192":15193,"15193":15194,"15194":15195,"15195":15196,"15196":15197,"15197":15198,"15198":15199,"15199":15200,"15200":15201,"15201":15202,"15202":15203,"15203":15204,"15204":15205,"15205":15206,"15206":15207,"15207":15208,"15208":15209,"15209":15210,"15210":15211,"15211":15212,"15212":15213,"15213":15214,"15214":15215,"15215":15216,"15216":15217,"15217":15218,"15218":15219,"15219":15220,"15220":15221,"15221":15222,"15222":15223,"15223":15224,"15224":15225,"15225":15226,"15226":15227,"15227":15228,"15228":15229,"15229":15230,"15230":15231,"15231":15232,"15232":15233,"15233":15234,"15234":15235,"15235":15236,"15236":15237,"15237":15238,"15238":15239,"15239":15240,"15240":15241,"15241":15242,"15242":15243,"15243":15244,"15244":15245,"15245":15246,"15246":15247,"15247":15248,"15248":15249,"15249":15250,"15250":15251,"15251":15252,"15252":15253,"15253":15254,"15254":15255,"15255":15256,"15256":15257,"15257":15258,"15258":15259,"15259":15260,"15260":15261,"15261":15262,"15262":15263,"15263":15264,"15264":15265,"15265":15266,"15266":15267,"15267":15268,"15268":15269,"15269":15270,"15270":15271,"15271":15272,"15272":15273,"15273":15274,"15274":15275,"15275":15276,"15276":15277,"15277":15278,"15278":15279,"15279":15280,"15280":15281,"15281":15282,"15282":15283,"15283":15284,"15284":15285,"15285":15286,"15286":15287,"15287":15288,"15288":15289,"15289":15290,"15290":15291,"15291":15292,"15292":15293,"15293":15294,"15294":15295,"15295":15296,"15296":15297,"15297":15298,"15298":15299,"15299":15300,"15300":15301,"15301":15302,"15302":15303,"15303":15304,"15304":15305,"15305":15306,"15306":15307,"15307":15308,"15308":15309,"15309":15310,"15310":15311,"15311":15312,"15312":15313,"15313":15314,"15314":15315,"15315":15316,"15316":15317,"15317":15318,"15318":15319,"15319":15320,"15320":15321,"15321":15322,"15322":15323,"15323":15324,"15324":15325,"15325":15326,"15326":15327,"15327":15328,"15328":15329,"15329":15330,"15330":15331,"15331":15332,"15332":15333,"15333":15334,"15334":15335,"15335":15336,"15336":15337,"15337":15338,"15338":15339,"15339":15340,"15340":15341,"15341":15342,"15342":15343,"15343":15344,"15344":15345,"15345":15346,"15346":15347,"15347":15348,"15348":15349,"15349":15350,"15350":15351,"15351":15352,"15352":15353,"15353":15354,"15354":15355,"15355":15356,"15356":15357,"15357":15358,"15358":15359,"15359":15360,"15360":15361,"15361":15362,"15362":15363,"15363":15364,"15364":15365,"15365":15366,"15366":15367,"15367":15368,"15368":15369,"15369":15370,"15370":15371,"15371":15372,"15372":15373,"15373":15374,"15374":15375,"15375":15376,"15376":15377,"15377":15378,"15378":15379,"15379":15380,"15380":15381,"15381":15382,"15382":15383,"15383":15384,"15384":15385,"15385":15386,"15386":15387,"15387":15388,"15388":15389,"15389":15390,"15390":15391,"15391":15392,"15392":15393,"15393":15394,"15394":15395,"15395":15396,"15396":15397,"15397":15398,"15398":15399,"15399":15400,"15400":15401,"15401":15402,"15402":15403,"15403":15404,"15404":15405,"15405":15406,"15406":15407,"15407":15408,"15408":15409,"15409":15410,"15410":15411,"15411":15412,"15412":15413,"15413":15414,"15414":15415,"15415":15416,"15416":15417,"15417":15418,"15418":15419,"15419":15420,"15420":15421,"15421":15422,"15422":15423,"15423":15424,"15424":15425,"15425":15426,"15426":15427,"15427":15428,"15428":15429,"15429":15430,"15430":15431,"15431":15432,"15432":15433,"15433":15434,"15434":15435,"15435":15436,"15436":15437,"15437":15438,"15438":15439,"15439":15440,"15440":15441,"15441":15442,"15442":15443,"15443":15444,"15444":15445,"15445":15446,"15446":15447,"15447":15448,"15448":15449,"15449":15450,"15450":15451,"15451":15452,"15452":15453,"15453":15454,"15454":15455,"15455":15456,"15456":15457,"15457":15458,"15458":15459,"15459":15460,"15460":15461,"15461":15462,"15462":15463,"15463":15464,"15464":15465,"15465":15466,"15466":15467,"15467":15468,"15468":15469,"15469":15470,"15470":15471,"15471":15472,"15472":15473,"15473":15474,"15474":15475,"15475":15476,"15476":15477,"15477":15478,"15478":15479,"15479":15480,"15480":15481,"15481":15482,"15482":15483,"15483":15484,"15484":15485,"15485":15486,"15486":15487,"15487":15488,"15488":15489,"15489":15490,"15490":15491,"15491":15492,"15492":15493,"15493":15494,"15494":15495,"15495":15496,"15496":15497,"15497":15498,"15498":15499,"15499":15500,"15500":15501,"15501":15502,"15502":15503,"15503":15504,"15504":15505,"15505":15506,"15506":15507,"15507":15508,"15508":15509,"15509":15510,"15510":15511,"15511":15512,"15512":15513,"15513":15514,"15514":15515,"15515":15516,"15516":15517,"15517":15518,"15518":15519,"15519":15520,"15520":15521,"15521":15522,"15522":15523,"15523":15524,"15524":15525,"15525":15526,"15526":15527,"15527":15528,"15528":15529,"15529":15530,"15530":15531,"15531":15532,"15532":15533,"15533":15534,"15534":15535,"15535":15536,"15536":15537,"15537":15538,"15538":15539,"15539":15540,"15540":15541,"15541":15542,"15542":15543,"15543":15544,"15544":15545,"15545":15546,"15546":15547,"15547":15548,"15548":15549,"15549":15550,"15550":15551,"15551":15552,"15552":15553,"15553":15554,"15554":15555,"15555":15556,"15556":15557,"15557":15558,"15558":15559,"15559":15560,"15560":15561,"15561":15562,"15562":15563,"15563":15564,"15564":15565,"15565":15566,"15566":15567,"15567":15568,"15568":15569,"15569":15570,"15570":15571,"15571":15572,"15572":15573,"15573":15574,"15574":15575,"15575":15576,"15576":15577,"15577":15578,"15578":15579,"15579":15580,"15580":15581,"15581":15582,"15582":15583,"15583":15584,"15584":15585,"15585":15586,"15586":15587,"15587":15588,"15588":15589,"15589":15590,"15590":15591,"15591":15592,"15592":15593,"15593":15594,"15594":15595,"15595":15596,"15596":15597,"15597":15598,"15598":15599,"15599":15600,"15600":15601,"15601":15602,"15602":15603,"15603":15604,"15604":15605,"15605":15606,"15606":15607,"15607":15608,"15608":15609,"15609":15610,"15610":15611,"15611":15612,"15612":15613,"15613":15614,"15614":15615,"15615":15616,"15616":15617,"15617":15618,"15618":15619,"15619":15620,"15620":15621,"15621":15622,"15622":15623,"15623":15624,"15624":15625,"15625":15626,"15626":15627,"15627":15628,"15628":15629,"15629":15630,"15630":15631,"15631":15632,"15632":15633,"15633":15634,"15634":15635,"15635":15636,"15636":15637,"15637":15638,"15638":15639,"15639":15640,"15640":15641,"15641":15642,"15642":15643,"15643":15644,"15644":15645,"15645":15646,"15646":15647,"15647":15648,"15648":15649,"15649":15650,"15650":15651,"15651":15652,"15652":15653,"15653":15654,"15654":15655,"15655":15656,"15656":15657,"15657":15658,"15658":15659,"15659":15660,"15660":15661,"15661":15662,"15662":15663,"15663":15664,"15664":15665,"15665":15666,"15666":15667,"15667":15668,"15668":15669,"15669":15670,"15670":15671,"15671":15672,"15672":15673,"15673":15674,"15674":15675,"15675":15676,"15676":15677,"15677":15678,"15678":15679,"15679":15680,"15680":15681,"15681":15682,"15682":15683,"15683":15684,"15684":15685,"15685":15686,"15686":15687,"15687":15688,"15688":15689,"15689":15690,"15690":15691,"15691":15692,"15692":15693,"15693":15694,"15694":15695,"15695":15696,"15696":15697,"15697":15698,"15698":15699,"15699":15700,"15700":15701,"15701":15702,"15702":15703,"15703":15704,"15704":15705,"15705":15706,"15706":15707,"15707":15708,"15708":15709,"15709":15710,"15710":15711,"15711":15712,"15712":15713,"15713":15714,"15714":15715,"15715":15716,"15716":15717,"15717":15718,"15718":15719,"15719":15720,"15720":15721,"15721":15722,"15722":15723,"15723":15724,"15724":15725,"15725":15726,"15726":15727,"15727":15728,"15728":15729,"15729":15730,"15730":15731,"15731":15732,"15732":15733,"15733":15734,"15734":15735,"15735":15736,"15736":15737,"15737":15738,"15738":15739,"15739":15740,"15740":15741,"15741":15742,"15742":15743,"15743":15744,"15744":15745,"15745":15746,"15746":15747,"15747":15748,"15748":15749,"15749":15750,"15750":15751,"15751":15752,"15752":15753,"15753":15754,"15754":15755,"15755":15756,"15756":15757,"15757":15758,"15758":15759,"15759":15760,"15760":15761,"15761":15762,"15762":15763,"15763":15764,"15764":15765,"15765":15766,"15766":15767,"15767":15768,"15768":15769,"15769":15770,"15770":15771,"15771":15772,"15772":15773,"15773":15774,"15774":15775,"15775":15776,"15776":15777,"15777":15778,"15778":15779,"15779":15780,"15780":15781,"15781":15782,"15782":15783,"15783":15784,"15784":15785,"15785":15786,"15786":15787,"15787":15788,"15788":15789,"15789":15790,"15790":15791,"15791":15792,"15792":15793,"15793":15794,"15794":15795,"15795":15796,"15796":15797,"15797":15798,"15798":15799,"15799":15800,"15800":15801,"15801":15802,"15802":15803,"15803":15804,"15804":15805,"15805":15806,"15806":15807,"15807":15808,"15808":15809,"15809":15810,"15810":15811,"15811":15812,"15812":15813,"15813":15814,"15814":15815,"15815":15816,"15816":15817,"15817":15818,"15818":15819,"15819":15820,"15820":15821,"15821":15822,"15822":15823,"15823":15824,"15824":15825,"15825":15826,"15826":15827,"15827":15828,"15828":15829,"15829":15830,"15830":15831,"15831":15832,"15832":15833,"15833":15834,"15834":15835,"15835":15836,"15836":15837,"15837":15838,"15838":15839,"15839":15840,"15840":15841,"15841":15842,"15842":15843,"15843":15844,"15844":15845,"15845":15846,"15846":15847,"15847":15848,"15848":15849,"15849":15850,"15850":15851,"15851":15852,"15852":15853,"15853":15854,"15854":15855,"15855":15856,"15856":15857,"15857":15858,"15858":15859,"15859":15860,"15860":15861,"15861":15862,"15862":15863,"15863":15864,"15864":15865,"15865":15866,"15866":15867,"15867":15868,"15868":15869,"15869":15870,"15870":15871,"15871":15872,"15872":15873,"15873":15874,"15874":15875,"15875":15876,"15876":15877,"15877":15878,"15878":15879,"15879":15880,"15880":15881,"15881":15882,"15882":15883,"15883":15884,"15884":15885,"15885":15886,"15886":15887,"15887":15888,"15888":15889,"15889":15890,"15890":15891,"15891":15892,"15892":15893,"15893":15894,"15894":15895,"15895":15896,"15896":15897,"15897":15898,"15898":15899,"15899":15900,"15900":15901,"15901":15902,"15902":15903,"15903":15904,"15904":15905,"15905":15906,"15906":15907,"15907":15908,"15908":15909,"15909":15910,"15910":15911,"15911":15912,"15912":15913,"15913":15914,"15914":15915,"15915":15916,"15916":15917,"15917":15918,"15918":15919,"15919":15920,"15920":15921,"15921":15922,"15922":15923,"15923":15924,"15924":15925,"15925":15926,"15926":15927,"15927":15928,"15928":15929,"15929":15930,"15930":15931,"15931":15932,"15932":15933,"15933":15934,"15934":15935,"15935":15936,"15936":15937,"15937":15938,"15938":15939,"15939":15940,"15940":15941,"15941":15942,"15942":15943,"15943":15944,"15944":15945,"15945":15946,"15946":15947,"15947":15948,"15948":15949,"15949":15950,"15950":15951,"15951":15952,"15952":15953,"15953":15954,"15954":15955,"15955":15956,"15956":15957,"15957":15958,"15958":15959,"15959":15960,"15960":15961,"15961":15962,"15962":15963,"15963":15964,"15964":15965,"15965":15966,"15966":15967,"15967":15968,"15968":15969,"15969":15970,"15970":15971,"15971":15972,"15972":15973,"15973":15974,"15974":15975,"15975":15976,"15976":15977,"15977":15978,"15978":15979,"15979":15980,"15980":15981,"15981":15982,"15982":15983,"15983":15984,"15984":15985,"15985":15986,"15986":15987,"15987":15988,"15988":15989,"15989":15990,"15990":15991,"15991":15992,"15992":15993,"15993":15994,"15994":15995,"15995":15996,"15996":15997,"15997":15998,"15998":15999,"15999":16000,"16000":16001,"16001":16002,"16002":16003,"16003":16004,"16004":16005,"16005":16006,"16006":16007,"16007":16008,"16008":16009,"16009":16010,"16010":16011,"16011":16012,"16012":16013,"16013":16014,"16014":16015,"16015":16016,"16016":16017,"16017":16018,"16018":16019,"16019":16020,"16020":16021,"16021":16022,"16022":16023,"16023":16024,"16024":16025,"16025":16026,"16026":16027,"16027":16028,"16028":16029,"16029":16030,"16030":16031,"16031":16032,"16032":16033,"16033":16034,"16034":16035,"16035":16036,"16036":16037,"16037":16038,"16038":16039,"16039":16040,"16040":16041,"16041":16042,"16042":16043,"16043":16044,"16044":16045,"16045":16046,"16046":16047,"16047":16048,"16048":16049,"16049":16050,"16050":16051,"16051":16052,"16052":16053,"16053":16054,"16054":16055,"16055":16056,"16056":16057,"16057":16058,"16058":16059,"16059":16060,"16060":16061,"16061":16062,"16062":16063,"16063":16064,"16064":16065,"16065":16066,"16066":16067,"16067":16068,"16068":16069,"16069":16070,"16070":16071,"16071":16072,"16072":16073,"16073":16074,"16074":16075,"16075":16076,"16076":16077,"16077":16078,"16078":16079,"16079":16080,"16080":16081,"16081":16082,"16082":16083,"16083":16084,"16084":16085,"16085":16086,"16086":16087,"16087":16088,"16088":16089,"16089":16090,"16090":16091,"16091":16092,"16092":16093,"16093":16094,"16094":16095,"16095":16096,"16096":16097,"16097":16098,"16098":16099,"16099":16100,"16100":16101,"16101":16102,"16102":16103,"16103":16104,"16104":16105,"16105":16106,"16106":16107,"16107":16108,"16108":16109,"16109":16110,"16110":16111,"16111":16112,"16112":16113,"16113":16114,"16114":16115,"16115":16116,"16116":16117,"16117":16118,"16118":16119,"16119":16120,"16120":16121,"16121":16122,"16122":16123,"16123":16124,"16124":16125,"16125":16126,"16126":16127,"16127":16128,"16128":16129,"16129":16130,"16130":16131,"16131":16132,"16132":16133,"16133":16134,"16134":16135,"16135":16136,"16136":16137,"16137":16138,"16138":16139,"16139":16140,"16140":16141,"16141":16142,"16142":16143,"16143":16144,"16144":16145,"16145":16146,"16146":16147,"16147":16148,"16148":16149,"16149":16150,"16150":16151,"16151":16152,"16152":16153,"16153":16154,"16154":16155,"16155":16156,"16156":16157,"16157":16158,"16158":16159,"16159":16160,"16160":16161,"16161":16162,"16162":16163,"16163":16164,"16164":16165,"16165":16166,"16166":16167,"16167":16168,"16168":16169,"16169":16170,"16170":16171,"16171":16172,"16172":16173,"16173":16174,"16174":16175,"16175":16176,"16176":16177,"16177":16178,"16178":16179,"16179":16180,"16180":16181,"16181":16182,"16182":16183,"16183":16184,"16184":16185,"16185":16186,"16186":16187,"16187":16188,"16188":16189,"16189":16190,"16190":16191,"16191":16192,"16192":16193,"16193":16194,"16194":16195,"16195":16196,"16196":16197,"16197":16198,"16198":16199,"16199":16200,"16200":16201,"16201":16202,"16202":16203,"16203":16204,"16204":16205,"16205":16206,"16206":16207,"16207":16208,"16208":16209,"16209":16210,"16210":16211,"16211":16212,"16212":16213,"16213":16214,"16214":16215,"16215":16216,"16216":16217,"16217":16218,"16218":16219,"16219":16220,"16220":16221,"16221":16222,"16222":16223,"16223":16224,"16224":16225,"16225":16226,"16226":16227,"16227":16228,"16228":16229,"16229":16230,"16230":16231,"16231":16232,"16232":16233,"16233":16234,"16234":16235,"16235":16236,"16236":16237,"16237":16238,"16238":16239,"16239":16240,"16240":16241,"16241":16242,"16242":16243,"16243":16244,"16244":16245,"16245":16246,"16246":16247,"16247":16248,"16248":16249,"16249":16250,"16250":16251,"16251":16252,"16252":16253,"16253":16254,"16254":16255,"16255":16256,"16256":16257,"16257":16258,"16258":16259,"16259":16260,"16260":16261,"16261":16262,"16262":16263,"16263":16264,"16264":16265,"16265":16266,"16266":16267,"16267":16268,"16268":16269,"16269":16270,"16270":16271,"16271":16272,"16272":16273,"16273":16274,"16274":16275,"16275":16276,"16276":16277,"16277":16278,"16278":16279,"16279":16280,"16280":16281,"16281":16282,"16282":16283,"16283":16284,"16284":16285,"16285":16286,"16286":16287,"16287":16288,"16288":16289,"16289":16290,"16290":16291,"16291":16292,"16292":16293,"16293":16294,"16294":16295,"16295":16296,"16296":16297,"16297":16298,"16298":16299,"16299":16300,"16300":16301,"16301":16302,"16302":16303,"16303":16304,"16304":16305,"16305":16306,"16306":16307,"16307":16308,"16308":16309,"16309":16310,"16310":16311,"16311":16312,"16312":16313,"16313":16314,"16314":16315,"16315":16316,"16316":16317,"16317":16318,"16318":16319,"16319":16320,"16320":16321,"16321":16322,"16322":16323,"16323":16324,"16324":16325,"16325":16326,"16326":16327,"16327":16328,"16328":16329,"16329":16330,"16330":16331,"16331":16332,"16332":16333,"16333":16334,"16334":16335,"16335":16336,"16336":16337,"16337":16338,"16338":16339,"16339":16340,"16340":16341,"16341":16342,"16342":16343,"16343":16344,"16344":16345,"16345":16346,"16346":16347,"16347":16348,"16348":16349,"16349":16350,"16350":16351,"16351":16352,"16352":16353,"16353":16354,"16354":16355,"16355":16356,"16356":16357,"16357":16358,"16358":16359,"16359":16360,"16360":16361,"16361":16362,"16362":16363,"16363":16364,"16364":16365,"16365":16366,"16366":16367,"16367":16368,"16368":16369,"16369":16370,"16370":16371,"16371":16372,"16372":16373,"16373":16374,"16374":16375,"16375":16376,"16376":16377,"16377":16378,"16378":16379,"16379":16380,"16380":16381,"16381":16382,"16382":16383,"16383":16384,"16384":16385,"16385":16386,"16386":16387,"16387":16388,"16388":16389,"16389":16390,"16390":16391,"16391":16392,"16392":16393,"16393":16394,"16394":16395,"16395":16396,"16396":16397,"16397":16398,"16398":16399,"16399":16400,"16400":16401,"16401":16402,"16402":16403,"16403":16404,"16404":16405,"16405":16406,"16406":16407,"16407":16408,"16408":16409,"16409":16410,"16410":16411,"16411":16412,"16412":16413,"16413":16414,"16414":16415,"16415":16416,"16416":16417,"16417":16418,"16418":16419,"16419":16420,"16420":16421,"16421":16422,"16422":16423,"16423":16424,"16424":16425,"16425":16426,"16426":16427,"16427":16428,"16428":16429,"16429":16430,"16430":16431,"16431":16432,"16432":16433,"16433":16434,"16434":16435,"16435":16436,"16436":16437,"16437":16438,"16438":16439,"16439":16440,"16440":16441,"16441":16442,"16442":16443,"16443":16444,"16444":16445,"16445":16446,"16446":16447,"16447":16448,"16448":16449,"16449":16450,"16450":16451,"16451":16452,"16452":16453,"16453":16454,"16454":16455,"16455":16456,"16456":16457,"16457":16458,"16458":16459,"16459":16460,"16460":16461,"16461":16462,"16462":16463,"16463":16464,"16464":16465,"16465":16466,"16466":16467,"16467":16468,"16468":16469,"16469":16470,"16470":16471,"16471":16472,"16472":16473,"16473":16474,"16474":16475,"16475":16476,"16476":16477,"16477":16478,"16478":16479,"16479":16480,"16480":16481,"16481":16482,"16482":16483,"16483":16484,"16484":16485,"16485":16486,"16486":16487,"16487":16488,"16488":16489,"16489":16490,"16490":16491,"16491":16492,"16492":16493,"16493":16494,"16494":16495,"16495":16496,"16496":16497,"16497":16498,"16498":16499,"16499":16500,"16500":16501,"16501":16502,"16502":16503,"16503":16504,"16504":16505,"16505":16506,"16506":16507,"16507":16508,"16508":16509,"16509":16510,"16510":16511,"16511":16512,"16512":16513,"16513":16514,"16514":16515,"16515":16516,"16516":16517,"16517":16518,"16518":16519,"16519":16520,"16520":16521,"16521":16522,"16522":16523,"16523":16524,"16524":16525,"16525":16526,"16526":16527,"16527":16528,"16528":16529,"16529":16530,"16530":16531,"16531":16532,"16532":16533,"16533":16534,"16534":16535,"16535":16536,"16536":16537,"16537":16538,"16538":16539,"16539":16540,"16540":16541,"16541":16542,"16542":16543,"16543":16544,"16544":16545,"16545":16546,"16546":16547,"16547":16548,"16548":16549,"16549":16550,"16550":16551,"16551":16552,"16552":16553,"16553":16554,"16554":16555,"16555":16556,"16556":16557,"16557":16558,"16558":16559,"16559":16560,"16560":16561,"16561":16562,"16562":16563,"16563":16564,"16564":16565,"16565":16566,"16566":16567,"16567":16568,"16568":16569,"16569":16570,"16570":16571,"16571":16572,"16572":16573,"16573":16574,"16574":16575,"16575":16576,"16576":16577,"16577":16578,"16578":16579,"16579":16580,"16580":16581,"16581":16582,"16582":16583,"16583":16584,"16584":16585,"16585":16586,"16586":16587,"16587":16588,"16588":16589,"16589":16590,"16590":16591,"16591":16592,"16592":16593,"16593":16594,"16594":16595,"16595":16596,"16596":16597,"16597":16598,"16598":16599,"16599":16600,"16600":16601,"16601":16602,"16602":16603,"16603":16604,"16604":16605,"16605":16606,"16606":16607,"16607":16608,"16608":16609,"16609":16610,"16610":16611,"16611":16612,"16612":16613,"16613":16614,"16614":16615,"16615":16616,"16616":16617,"16617":16618,"16618":16619,"16619":16620,"16620":16621,"16621":16622,"16622":16623,"16623":16624,"16624":16625,"16625":16626,"16626":16627,"16627":16628,"16628":16629,"16629":16630,"16630":16631,"16631":16632,"16632":16633,"16633":16634,"16634":16635,"16635":16636,"16636":16637,"16637":16638,"16638":16639,"16639":16640,"16640":16641,"16641":16642,"16642":16643,"16643":16644,"16644":16645,"16645":16646,"16646":16647,"16647":16648,"16648":16649,"16649":16650,"16650":16651,"16651":16652,"16652":16653,"16653":16654,"16654":16655,"16655":16656,"16656":16657,"16657":16658,"16658":16659,"16659":16660,"16660":16661,"16661":16662,"16662":16663,"16663":16664,"16664":16665,"16665":16666,"16666":16667,"16667":16668,"16668":16669,"16669":16670,"16670":16671,"16671":16672,"16672":16673,"16673":16674,"16674":16675,"16675":16676,"16676":16677,"16677":16678,"16678":16679,"16679":16680,"16680":16681,"16681":16682,"16682":16683,"16683":16684,"16684":16685,"16685":16686,"16686":16687,"16687":16688,"16688":16689,"16689":16690,"16690":16691,"16691":16692,"16692":16693,"16693":16694,"16694":16695,"16695":16696,"16696":16697,"16697":16698,"16698":16699,"16699":16700,"16700":16701,"16701":16702,"16702":16703,"16703":16704,"16704":16705,"16705":16706,"16706":16707,"16707":16708,"16708":16709,"16709":16710,"16710":16711,"16711":16712,"16712":16713,"16713":16714,"16714":16715,"16715":16716,"16716":16717,"16717":16718,"16718":16719,"16719":16720,"16720":16721,"16721":16722,"16722":16723,"16723":16724,"16724":16725,"16725":16726,"16726":16727,"16727":16728,"16728":16729,"16729":16730,"16730":16731,"16731":16732,"16732":16733,"16733":16734,"16734":16735,"16735":16736,"16736":16737,"16737":16738,"16738":16739,"16739":16740,"16740":16741,"16741":16742,"16742":16743,"16743":16744,"16744":16745,"16745":16746,"16746":16747,"16747":16748,"16748":16749,"16749":16750,"16750":16751,"16751":16752,"16752":16753,"16753":16754,"16754":16755,"16755":16756,"16756":16757,"16757":16758,"16758":16759,"16759":16760,"16760":16761,"16761":16762,"16762":16763,"16763":16764,"16764":16765,"16765":16766,"16766":16767,"16767":16768,"16768":16769,"16769":16770,"16770":16771,"16771":16772,"16772":16773,"16773":16774,"16774":16775,"16775":16776,"16776":16777,"16777":16778,"16778":16779,"16779":16780,"16780":16781,"16781":16782,"16782":16783,"16783":16784,"16784":16785,"16785":16786,"16786":16787,"16787":16788,"16788":16789,"16789":16790,"16790":16791,"16791":16792,"16792":16793,"16793":16794,"16794":16795,"16795":16796,"16796":16797,"16797":16798,"16798":16799,"16799":16800,"16800":16801,"16801":16802,"16802":16803,"16803":16804,"16804":16805,"16805":16806,"16806":16807,"16807":16808,"16808":16809,"16809":16810,"16810":16811,"16811":16812,"16812":16813,"16813":16814,"16814":16815,"16815":16816,"16816":16817,"16817":16818,"16818":16819,"16819":16820,"16820":16821,"16821":16822,"16822":16823,"16823":16824,"16824":16825,"16825":16826,"16826":16827,"16827":16828,"16828":16829,"16829":16830,"16830":16831,"16831":16832,"16832":16833,"16833":16834,"16834":16835,"16835":16836,"16836":16837,"16837":16838,"16838":16839,"16839":16840,"16840":16841,"16841":16842,"16842":16843,"16843":16844,"16844":16845,"16845":16846,"16846":16847,"16847":16848,"16848":16849,"16849":16850,"16850":16851,"16851":16852,"16852":16853,"16853":16854,"16854":16855,"16855":16856,"16856":16857,"16857":16858,"16858":16859,"16859":16860,"16860":16861,"16861":16862,"16862":16863,"16863":16864,"16864":16865,"16865":16866,"16866":16867,"16867":16868,"16868":16869,"16869":16870,"16870":16871,"16871":16872,"16872":16873,"16873":16874,"16874":16875,"16875":16876,"16876":16877,"16877":16878,"16878":16879,"16879":16880,"16880":16881,"16881":16882,"16882":16883,"16883":16884,"16884":16885,"16885":16886,"16886":16887,"16887":16888,"16888":16889,"16889":16890,"16890":16891,"16891":16892,"16892":16893,"16893":16894,"16894":16895,"16895":16896,"16896":16897,"16897":16898,"16898":16899,"16899":16900,"16900":16901,"16901":16902,"16902":16903,"16903":16904,"16904":16905,"16905":16906,"16906":16907,"16907":16908,"16908":16909,"16909":16910,"16910":16911,"16911":16912,"16912":16913,"16913":16914,"16914":16915,"16915":16916,"16916":16917,"16917":16918,"16918":16919,"16919":16920,"16920":16921,"16921":16922,"16922":16923,"16923":16924,"16924":16925,"16925":16926,"16926":16927,"16927":16928,"16928":16929,"16929":16930,"16930":16931,"16931":16932,"16932":16933,"16933":16934,"16934":16935,"16935":16936,"16936":16937,"16937":16938,"16938":16939,"16939":16940,"16940":16941,"16941":16942,"16942":16943,"16943":16944,"16944":16945,"16945":16946,"16946":16947,"16947":16948,"16948":16949,"16949":16950,"16950":16951,"16951":16952,"16952":16953,"16953":16954,"16954":16955,"16955":16956,"16956":16957,"16957":16958,"16958":16959,"16959":16960,"16960":16961,"16961":16962,"16962":16963,"16963":16964,"16964":16965,"16965":16966,"16966":16967,"16967":16968,"16968":16969,"16969":16970,"16970":16971,"16971":16972,"16972":16973,"16973":16974,"16974":16975,"16975":16976,"16976":16977,"16977":16978,"16978":16979,"16979":16980,"16980":16981,"16981":16982,"16982":16983,"16983":16984,"16984":16985,"16985":16986,"16986":16987,"16987":16988,"16988":16989,"16989":16990,"16990":16991,"16991":16992,"16992":16993,"16993":16994,"16994":16995,"16995":16996,"16996":16997,"16997":16998,"16998":16999,"16999":17000,"17000":17001,"17001":17002,"17002":17003,"17003":17004,"17004":17005,"17005":17006,"17006":17007,"17007":17008,"17008":17009,"17009":17010,"17010":17011,"17011":17012,"17012":17013,"17013":17014,"17014":17015,"17015":17016,"17016":17017,"17017":17018,"17018":17019,"17019":17020,"17020":17021,"17021":17022,"17022":17023,"17023":17024,"17024":17025,"17025":17026,"17026":17027,"17027":17028,"17028":17029,"17029":17030,"17030":17031,"17031":17032,"17032":17033,"17033":17034,"17034":17035,"17035":17036,"17036":17037,"17037":17038,"17038":17039,"17039":17040,"17040":17041,"17041":17042,"17042":17043,"17043":17044,"17044":17045,"17045":17046,"17046":17047,"17047":17048,"17048":17049,"17049":17050,"17050":17051,"17051":17052,"17052":17053,"17053":17054,"17054":17055,"17055":17056,"17056":17057,"17057":17058,"17058":17059,"17059":17060,"17060":17061,"17061":17062,"17062":17063,"17063":17064,"17064":17065,"17065":17066,"17066":17067,"17067":17068,"17068":17069,"17069":17070,"17070":17071,"17071":17072,"17072":17073,"17073":17074,"17074":17075,"17075":17076,"17076":17077,"17077":17078,"17078":17079,"17079":17080,"17080":17081,"17081":17082,"17082":17083,"17083":17084,"17084":17085,"17085":17086,"17086":17087,"17087":17088,"17088":17089,"17089":17090,"17090":17091,"17091":17092,"17092":17093,"17093":17094,"17094":17095,"17095":17096,"17096":17097,"17097":17098,"17098":17099,"17099":17100,"17100":17101,"17101":17102,"17102":17103,"17103":17104,"17104":17105,"17105":17106,"17106":17107,"17107":17108,"17108":17109,"17109":17110,"17110":17111,"17111":17112,"17112":17113,"17113":17114,"17114":17115,"17115":17116,"17116":17117,"17117":17118,"17118":17119,"17119":17120,"17120":17121,"17121":17122,"17122":17123,"17123":17124,"17124":17125,"17125":17126,"17126":17127,"17127":17128,"17128":17129,"17129":17130,"17130":17131,"17131":17132,"17132":17133,"17133":17134,"17134":17135,"17135":17136,"17136":17137,"17137":17138,"17138":17139,"17139":17140,"17140":17141,"17141":17142,"17142":17143,"17143":17144,"17144":17145,"17145":17146,"17146":17147,"17147":17148,"17148":17149,"17149":17150,"17150":17151,"17151":17152,"17152":17153,"17153":17154,"17154":17155,"17155":17156,"17156":17157,"17157":17158,"17158":17159,"17159":17160,"17160":17161,"17161":17162,"17162":17163,"17163":17164,"17164":17165,"17165":17166,"17166":17167,"17167":17168,"17168":17169,"17169":17170,"17170":17171,"17171":17172,"17172":17173,"17173":17174,"17174":17175,"17175":17176,"17176":17177,"17177":17178,"17178":17179,"17179":17180,"17180":17181,"17181":17182,"17182":17183,"17183":17184,"17184":17185,"17185":17186,"17186":17187,"17187":17188,"17188":17189,"17189":17190,"17190":17191,"17191":17192,"17192":17193,"17193":17194,"17194":17195,"17195":17196,"17196":17197,"17197":17198,"17198":17199,"17199":17200,"17200":17201,"17201":17202,"17202":17203,"17203":17204,"17204":17205,"17205":17206,"17206":17207,"17207":17208,"17208":17209,"17209":17210,"17210":17211,"17211":17212,"17212":17213,"17213":17214,"17214":17215,"17215":17216,"17216":17217,"17217":17218,"17218":17219,"17219":17220,"17220":17221,"17221":17222,"17222":17223,"17223":17224,"17224":17225,"17225":17226,"17226":17227,"17227":17228,"17228":17229,"17229":17230,"17230":17231,"17231":17232,"17232":17233,"17233":17234,"17234":17235,"17235":17236,"17236":17237,"17237":17238,"17238":17239,"17239":17240,"17240":17241,"17241":17242,"17242":17243,"17243":17244,"17244":17245,"17245":17246,"17246":17247,"17247":17248,"17248":17249,"17249":17250,"17250":17251,"17251":17252,"17252":17253,"17253":17254,"17254":17255,"17255":17256,"17256":17257,"17257":17258,"17258":17259,"17259":17260,"17260":17261,"17261":17262,"17262":17263,"17263":17264,"17264":17265,"17265":17266,"17266":17267,"17267":17268,"17268":17269,"17269":17270,"17270":17271,"17271":17272,"17272":17273,"17273":17274,"17274":17275,"17275":17276,"17276":17277,"17277":17278,"17278":17279,"17279":17280,"17280":17281,"17281":17282,"17282":17283,"17283":17284,"17284":17285,"17285":17286,"17286":17287,"17287":17288,"17288":17289,"17289":17290,"17290":17291,"17291":17292,"17292":17293,"17293":17294,"17294":17295,"17295":17296,"17296":17297,"17297":17298,"17298":17299,"17299":17300,"17300":17301,"17301":17302,"17302":17303,"17303":17304,"17304":17305,"17305":17306,"17306":17307,"17307":17308,"17308":17309,"17309":17310,"17310":17311,"17311":17312,"17312":17313,"17313":17314,"17314":17315,"17315":17316,"17316":17317,"17317":17318,"17318":17319,"17319":17320,"17320":17321,"17321":17322,"17322":17323,"17323":17324,"17324":17325,"17325":17326,"17326":17327,"17327":17328,"17328":17329,"17329":17330,"17330":17331,"17331":17332,"17332":17333,"17333":17334,"17334":17335,"17335":17336,"17336":17337,"17337":17338,"17338":17339,"17339":17340,"17340":17341,"17341":17342,"17342":17343,"17343":17344,"17344":17345,"17345":17346,"17346":17347,"17347":17348,"17348":17349,"17349":17350,"17350":17351,"17351":17352,"17352":17353,"17353":17354,"17354":17355,"17355":17356,"17356":17357,"17357":17358,"17358":17359,"17359":17360,"17360":17361,"17361":17362,"17362":17363,"17363":17364,"17364":17365,"17365":17366,"17366":17367,"17367":17368,"17368":17369,"17369":17370,"17370":17371,"17371":17372,"17372":17373,"17373":17374,"17374":17375,"17375":17376,"17376":17377,"17377":17378,"17378":17379,"17379":17380,"17380":17381,"17381":17382,"17382":17383,"17383":17384,"17384":17385,"17385":17386,"17386":17387,"17387":17388,"17388":17389,"17389":17390,"17390":17391,"17391":17392,"17392":17393,"17393":17394,"17394":17395,"17395":17396,"17396":17397,"17397":17398,"17398":17399,"17399":17400,"17400":17401,"17401":17402,"17402":17403,"17403":17404,"17404":17405,"17405":17406,"17406":17407,"17407":17408,"17408":17409,"17409":17410,"17410":17411,"17411":17412,"17412":17413,"17413":17414,"17414":17415,"17415":17416,"17416":17417,"17417":17418,"17418":17419,"17419":17420,"17420":17421,"17421":17422,"17422":17423,"17423":17424,"17424":17425,"17425":17426,"17426":17427,"17427":17428,"17428":17429,"17429":17430,"17430":17431,"17431":17432,"17432":17433,"17433":17434,"17434":17435,"17435":17436,"17436":17437,"17437":17438,"17438":17439,"17439":17440,"17440":17441,"17441":17442,"17442":17443,"17443":17444,"17444":17445,"17445":17446,"17446":17447,"17447":17448,"17448":17449,"17449":17450,"17450":17451,"17451":17452,"17452":17453,"17453":17454,"17454":17455,"17455":17456,"17456":17457,"17457":17458,"17458":17459,"17459":17460,"17460":17461,"17461":17462,"17462":17463,"17463":17464,"17464":17465,"17465":17466,"17466":17467,"17467":17468,"17468":17469,"17469":17470,"17470":17471,"17471":17472,"17472":17473,"17473":17474,"17474":17475,"17475":17476,"17476":17477,"17477":17478,"17478":17479,"17479":17480,"17480":17481,"17481":17482,"17482":17483,"17483":17484,"17484":17485,"17485":17486,"17486":17487,"17487":17488,"17488":17489,"17489":17490,"17490":17491,"17491":17492,"17492":17493,"17493":17494,"17494":17495,"17495":17496,"17496":17497,"17497":17498,"17498":17499,"17499":17500,"17500":17501,"17501":17502,"17502":17503,"17503":17504,"17504":17505,"17505":17506,"17506":17507,"17507":17508,"17508":17509,"17509":17510,"17510":17511,"17511":17512,"17512":17513,"17513":17514,"17514":17515,"17515":17516,"17516":17517,"17517":17518,"17518":17519,"17519":17520,"17520":17521,"17521":17522,"17522":17523,"17523":17524,"17524":17525,"17525":17526,"17526":17527,"17527":17528,"17528":17529,"17529":17530,"17530":17531,"17531":17532,"17532":17533,"17533":17534,"17534":17535,"17535":17536,"17536":17537,"17537":17538,"17538":17539,"17539":17540,"17540":17541,"17541":17542,"17542":17543,"17543":17544,"17544":17545,"17545":17546,"17546":17547,"17547":17548,"17548":17549,"17549":17550,"17550":17551,"17551":17552,"17552":17553,"17553":17554,"17554":17555,"17555":17556,"17556":17557,"17557":17558,"17558":17559,"17559":17560,"17560":17561,"17561":17562,"17562":17563,"17563":17564,"17564":17565,"17565":17566,"17566":17567,"17567":17568,"17568":17569,"17569":17570,"17570":17571,"17571":17572,"17572":17573,"17573":17574,"17574":17575,"17575":17576,"17576":17577,"17577":17578,"17578":17579,"17579":17580,"17580":17581,"17581":17582,"17582":17583,"17583":17584,"17584":17585,"17585":17586,"17586":17587,"17587":17588,"17588":17589,"17589":17590,"17590":17591,"17591":17592,"17592":17593,"17593":17594,"17594":17595,"17595":17596,"17596":17597,"17597":17598,"17598":17599,"17599":17600,"17600":17601,"17601":17602,"17602":17603,"17603":17604,"17604":17605,"17605":17606,"17606":17607,"17607":17608,"17608":17609,"17609":17610,"17610":17611,"17611":17612,"17612":17613,"17613":17614,"17614":17615,"17615":17616,"17616":17617,"17617":17618,"17618":17619,"17619":17620,"17620":17621,"17621":17622,"17622":17623,"17623":17624,"17624":17625,"17625":17626,"17626":17627,"17627":17628,"17628":17629,"17629":17630,"17630":17631,"17631":17632,"17632":17633,"17633":17634,"17634":17635,"17635":17636,"17636":17637,"17637":17638,"17638":17639,"17639":17640,"17640":17641,"17641":17642,"17642":17643,"17643":17644,"17644":17645,"17645":17646,"17646":17647,"17647":17648,"17648":17649,"17649":17650,"17650":17651,"17651":17652,"17652":17653,"17653":17654,"17654":17655,"17655":17656,"17656":17657,"17657":17658,"17658":17659,"17659":17660,"17660":17661,"17661":17662,"17662":17663,"17663":17664,"17664":17665,"17665":17666,"17666":17667,"17667":17668,"17668":17669,"17669":17670,"17670":17671,"17671":17672,"17672":17673,"17673":17674,"17674":17675,"17675":17676,"17676":17677,"17677":17678,"17678":17679,"17679":17680,"17680":17681,"17681":17682,"17682":17683,"17683":17684,"17684":17685,"17685":17686,"17686":17687,"17687":17688,"17688":17689,"17689":17690,"17690":17691,"17691":17692,"17692":17693,"17693":17694,"17694":17695,"17695":17696,"17696":17697,"17697":17698,"17698":17699,"17699":17700,"17700":17701,"17701":17702,"17702":17703,"17703":17704,"17704":17705,"17705":17706,"17706":17707,"17707":17708,"17708":17709,"17709":17710,"17710":17711,"17711":17712,"17712":17713,"17713":17714,"17714":17715,"17715":17716,"17716":17717,"17717":17718,"17718":17719,"17719":17720,"17720":17721,"17721":17722,"17722":17723,"17723":17724,"17724":17725,"17725":17726,"17726":17727,"17727":17728,"17728":17729,"17729":17730,"17730":17731,"17731":17732,"17732":17733,"17733":17734,"17734":17735,"17735":17736,"17736":17737,"17737":17738,"17738":17739,"17739":17740,"17740":17741,"17741":17742,"17742":17743,"17743":17744,"17744":17745,"17745":17746,"17746":17747,"17747":17748,"17748":17749,"17749":17750,"17750":17751,"17751":17752,"17752":17753,"17753":17754,"17754":17755,"17755":17756,"17756":17757,"17757":17758,"17758":17759,"17759":17760,"17760":17761,"17761":17762,"17762":17763,"17763":17764,"17764":17765,"17765":17766,"17766":17767,"17767":17768,"17768":17769,"17769":17770,"17770":17771,"17771":17772,"17772":17773,"17773":17774,"17774":17775,"17775":17776,"17776":17777,"17777":17778,"17778":17779,"17779":17780,"17780":17781,"17781":17782,"17782":17783,"17783":17784,"17784":17785,"17785":17786,"17786":17787,"17787":17788,"17788":17789,"17789":17790,"17790":17791,"17791":17792,"17792":17793,"17793":17794,"17794":17795,"17795":17796,"17796":17797,"17797":17798,"17798":17799,"17799":17800,"17800":17801,"17801":17802,"17802":17803,"17803":17804,"17804":17805,"17805":17806,"17806":17807,"17807":17808,"17808":17809,"17809":17810,"17810":17811,"17811":17812,"17812":17813,"17813":17814,"17814":17815,"17815":17816,"17816":17817,"17817":17818,"17818":17819,"17819":17820,"17820":17821,"17821":17822,"17822":17823,"17823":17824,"17824":17825,"17825":17826,"17826":17827,"17827":17828,"17828":17829,"17829":17830,"17830":17831,"17831":17832,"17832":17833,"17833":17834,"17834":17835,"17835":17836,"17836":17837,"17837":17838,"17838":17839,"17839":17840,"17840":17841,"17841":17842,"17842":17843,"17843":17844,"17844":17845,"17845":17846,"17846":17847,"17847":17848,"17848":17849,"17849":17850,"17850":17851,"17851":17852,"17852":17853,"17853":17854,"17854":17855,"17855":17856,"17856":17857,"17857":17858,"17858":17859,"17859":17860,"17860":17861,"17861":17862,"17862":17863,"17863":17864,"17864":17865,"17865":17866,"17866":17867,"17867":17868,"17868":17869,"17869":17870,"17870":17871,"17871":17872,"17872":17873,"17873":17874,"17874":17875,"17875":17876,"17876":17877,"17877":17878,"17878":17879,"17879":17880,"17880":17881,"17881":17882,"17882":17883,"17883":17884,"17884":17885,"17885":17886,"17886":17887,"17887":17888,"17888":17889,"17889":17890,"17890":17891,"17891":17892,"17892":17893,"17893":17894,"17894":17895,"17895":17896,"17896":17897,"17897":17898,"17898":17899,"17899":17900,"17900":17901,"17901":17902,"17902":17903,"17903":17904,"17904":17905,"17905":17906,"17906":17907,"17907":17908,"17908":17909,"17909":17910,"17910":17911,"17911":17912,"17912":17913,"17913":17914,"17914":17915,"17915":17916,"17916":17917,"17917":17918,"17918":17919,"17919":17920,"17920":17921,"17921":17922,"17922":17923,"17923":17924,"17924":17925,"17925":17926,"17926":17927,"17927":17928,"17928":17929,"17929":17930,"17930":17931,"17931":17932,"17932":17933,"17933":17934,"17934":17935,"17935":17936,"17936":17937,"17937":17938,"17938":17939,"17939":17940,"17940":17941,"17941":17942,"17942":17943,"17943":17944,"17944":17945,"17945":17946,"17946":17947,"17947":17948,"17948":17949,"17949":17950,"17950":17951,"17951":17952,"17952":17953,"17953":17954,"17954":17955,"17955":17956,"17956":17957,"17957":17958,"17958":17959,"17959":17960,"17960":17961,"17961":17962,"17962":17963,"17963":17964,"17964":17965,"17965":17966,"17966":17967,"17967":17968,"17968":17969,"17969":17970,"17970":17971,"17971":17972,"17972":17973,"17973":17974,"17974":17975,"17975":17976,"17976":17977,"17977":17978,"17978":17979,"17979":17980,"17980":17981,"17981":17982,"17982":17983,"17983":17984,"17984":17985,"17985":17986,"17986":17987,"17987":17988,"17988":17989,"17989":17990,"17990":17991,"17991":17992,"17992":17993,"17993":17994,"17994":17995,"17995":17996,"17996":17997,"17997":17998,"17998":17999,"17999":18000,"18000":18001,"18001":18002,"18002":18003,"18003":18004,"18004":18005,"18005":18006,"18006":18007,"18007":18008,"18008":18009,"18009":18010,"18010":18011,"18011":18012,"18012":18013,"18013":18014,"18014":18015,"18015":18016,"18016":18017,"18017":18018,"18018":18019,"18019":18020,"18020":18021,"18021":18022,"18022":18023,"18023":18024,"18024":18025,"18025":18026,"18026":18027,"18027":18028,"18028":18029,"18029":18030,"18030":18031,"18031":18032,"18032":18033,"18033":18034,"18034":18035,"18035":18036,"18036":18037,"18037":18038,"18038":18039,"18039":18040,"18040":18041,"18041":18042,"18042":18043,"18043":18044,"18044":18045,"18045":18046,"18046":18047,"18047":18048,"18048":18049,"18049":18050,"18050":18051,"18051":18052,"18052":18053,"18053":18054,"18054":18055,"18055":18056,"18056":18057,"18057":18058,"18058":18059,"18059":18060,"18060":18061,"18061":18062,"18062":18063,"18063":18064,"18064":18065,"18065":18066,"18066":18067,"18067":18068,"18068":18069,"18069":18070,"18070":18071,"18071":18072,"18072":18073,"18073":18074,"18074":18075,"18075":18076,"18076":18077,"18077":18078,"18078":18079,"18079":18080,"18080":18081,"18081":18082,"18082":18083,"18083":18084,"18084":18085,"18085":18086,"18086":18087,"18087":18088,"18088":18089,"18089":18090,"18090":18091,"18091":18092,"18092":18093,"18093":18094,"18094":18095,"18095":18096,"18096":18097,"18097":18098,"18098":18099,"18099":18100,"18100":18101,"18101":18102,"18102":18103,"18103":18104,"18104":18105,"18105":18106,"18106":18107,"18107":18108,"18108":18109,"18109":18110,"18110":18111,"18111":18112,"18112":18113,"18113":18114,"18114":18115,"18115":18116,"18116":18117,"18117":18118,"18118":18119,"18119":18120,"18120":18121,"18121":18122,"18122":18123,"18123":18124,"18124":18125,"18125":18126,"18126":18127,"18127":18128,"18128":18129,"18129":18130,"18130":18131,"18131":18132,"18132":18133,"18133":18134,"18134":18135,"18135":18136,"18136":18137,"18137":18138,"18138":18139,"18139":18140,"18140":18141,"18141":18142,"18142":18143,"18143":18144,"18144":18145,"18145":18146,"18146":18147,"18147":18148,"18148":18149,"18149":18150,"18150":18151,"18151":18152,"18152":18153,"18153":18154,"18154":18155,"18155":18156,"18156":18157,"18157":18158,"18158":18159,"18159":18160,"18160":18161,"18161":18162,"18162":18163,"18163":18164,"18164":18165,"18165":18166,"18166":18167,"18167":18168,"18168":18169,"18169":18170,"18170":18171,"18171":18172,"18172":18173,"18173":18174,"18174":18175,"18175":18176,"18176":18177,"18177":18178,"18178":18179,"18179":18180,"18180":18181,"18181":18182,"18182":18183,"18183":18184,"18184":18185,"18185":18186,"18186":18187,"18187":18188,"18188":18189,"18189":18190,"18190":18191,"18191":18192,"18192":18193,"18193":18194,"18194":18195,"18195":18196,"18196":18197,"18197":18198,"18198":18199,"18199":18200,"18200":18201,"18201":18202,"18202":18203,"18203":18204,"18204":18205,"18205":18206,"18206":18207,"18207":18208,"18208":18209,"18209":18210,"18210":18211,"18211":18212,"18212":18213,"18213":18214,"18214":18215,"18215":18216,"18216":18217,"18217":18218,"18218":18219,"18219":18220,"18220":18221,"18221":18222,"18222":18223,"18223":18224,"18224":18225,"18225":18226,"18226":18227,"18227":18228,"18228":18229,"18229":18230,"18230":18231,"18231":18232,"18232":18233,"18233":18234,"18234":18235,"18235":18236,"18236":18237,"18237":18238,"18238":18239,"18239":18240,"18240":18241,"18241":18242,"18242":18243,"18243":18244,"18244":18245,"18245":18246,"18246":18247,"18247":18248,"18248":18249,"18249":18250,"18250":18251,"18251":18252,"18252":18253,"18253":18254,"18254":18255,"18255":18256,"18256":18257,"18257":18258,"18258":18259,"18259":18260,"18260":18261,"18261":18262,"18262":18263,"18263":18264,"18264":18265,"18265":18266,"18266":18267,"18267":18268,"18268":18269,"18269":18270,"18270":18271,"18271":18272,"18272":18273,"18273":18274,"18274":18275,"18275":18276,"18276":18277,"18277":18278,"18278":18279,"18279":18280,"18280":18281,"18281":18282,"18282":18283,"18283":18284,"18284":18285,"18285":18286,"18286":18287,"18287":18288,"18288":18289,"18289":18290,"18290":18291,"18291":18292,"18292":18293,"18293":18294,"18294":18295,"18295":18296,"18296":18297,"18297":18298,"18298":18299,"18299":18300,"18300":18301,"18301":18302,"18302":18303,"18303":18304,"18304":18305,"18305":18306,"18306":18307,"18307":18308,"18308":18309,"18309":18310,"18310":18311,"18311":18312,"18312":18313,"18313":18314,"18314":18315,"18315":18316,"18316":18317,"18317":18318,"18318":18319,"18319":18320,"18320":18321,"18321":18322,"18322":18323,"18323":18324,"18324":18325,"18325":18326,"18326":18327,"18327":18328,"18328":18329,"18329":18330,"18330":18331,"18331":18332,"18332":18333,"18333":18334,"18334":18335,"18335":18336,"18336":18337,"18337":18338,"18338":18339,"18339":18340,"18340":18341,"18341":18342,"18342":18343,"18343":18344,"18344":18345,"18345":18346,"18346":18347,"18347":18348,"18348":18349,"18349":18350,"18350":18351,"18351":18352,"18352":18353,"18353":18354,"18354":18355,"18355":18356,"18356":18357,"18357":18358,"18358":18359,"18359":18360,"18360":18361,"18361":18362,"18362":18363,"18363":18364,"18364":18365,"18365":18366,"18366":18367,"18367":18368,"18368":18369,"18369":18370,"18370":18371,"18371":18372,"18372":18373,"18373":18374,"18374":18375,"18375":18376,"18376":18377,"18377":18378,"18378":18379,"18379":18380,"18380":18381,"18381":18382,"18382":18383,"18383":18384,"18384":18385,"18385":18386,"18386":18387,"18387":18388,"18388":18389,"18389":18390,"18390":18391,"18391":18392,"18392":18393,"18393":18394,"18394":18395,"18395":18396,"18396":18397,"18397":18398,"18398":18399,"18399":18400,"18400":18401,"18401":18402,"18402":18403,"18403":18404,"18404":18405,"18405":18406,"18406":18407,"18407":18408,"18408":18409,"18409":18410,"18410":18411,"18411":18412,"18412":18413,"18413":18414,"18414":18415,"18415":18416,"18416":18417,"18417":18418,"18418":18419,"18419":18420,"18420":18421,"18421":18422,"18422":18423,"18423":18424,"18424":18425,"18425":18426,"18426":18427,"18427":18428,"18428":18429,"18429":18430,"18430":18431,"18431":18432,"18432":18433,"18433":18434,"18434":18435,"18435":18436,"18436":18437,"18437":18438,"18438":18439,"18439":18440,"18440":18441,"18441":18442,"18442":18443,"18443":18444,"18444":18445,"18445":18446,"18446":18447,"18447":18448,"18448":18449,"18449":18450,"18450":18451,"18451":18452,"18452":18453,"18453":18454,"18454":18455,"18455":18456,"18456":18457,"18457":18458,"18458":18459,"18459":18460,"18460":18461,"18461":18462,"18462":18463,"18463":18464,"18464":18465,"18465":18466,"18466":18467,"18467":18468,"18468":18469,"18469":18470,"18470":18471,"18471":18472,"18472":18473,"18473":18474,"18474":18475,"18475":18476,"18476":18477,"18477":18478,"18478":18479,"18479":18480,"18480":18481,"18481":18482,"18482":18483,"18483":18484,"18484":18485,"18485":18486,"18486":18487,"18487":18488,"18488":18489,"18489":18490,"18490":18491,"18491":18492,"18492":18493,"18493":18494,"18494":18495,"18495":18496,"18496":18497,"18497":18498,"18498":18499,"18499":18500,"18500":18501,"18501":18502,"18502":18503,"18503":18504,"18504":18505,"18505":18506,"18506":18507,"18507":18508,"18508":18509,"18509":18510,"18510":18511,"18511":18512,"18512":18513,"18513":18514,"18514":18515,"18515":18516,"18516":18517,"18517":18518,"18518":18519,"18519":18520,"18520":18521,"18521":18522,"18522":18523,"18523":18524,"18524":18525,"18525":18526,"18526":18527,"18527":18528,"18528":18529,"18529":18530,"18530":18531,"18531":18532,"18532":18533,"18533":18534,"18534":18535,"18535":18536,"18536":18537,"18537":18538,"18538":18539,"18539":18540,"18540":18541,"18541":18542,"18542":18543,"18543":18544,"18544":18545,"18545":18546,"18546":18547,"18547":18548,"18548":18549,"18549":18550,"18550":18551,"18551":18552,"18552":18553,"18553":18554,"18554":18555,"18555":18556,"18556":18557,"18557":18558,"18558":18559,"18559":18560,"18560":18561,"18561":18562,"18562":18563,"18563":18564,"18564":18565,"18565":18566,"18566":18567,"18567":18568,"18568":18569,"18569":18570,"18570":18571,"18571":18572,"18572":18573,"18573":18574,"18574":18575,"18575":18576,"18576":18577,"18577":18578,"18578":18579,"18579":18580,"18580":18581,"18581":18582,"18582":18583,"18583":18584,"18584":18585,"18585":18586,"18586":18587,"18587":18588,"18588":18589,"18589":18590,"18590":18591,"18591":18592,"18592":18593,"18593":18594,"18594":18595,"18595":18596,"18596":18597,"18597":18598,"18598":18599,"18599":18600,"18600":18601,"18601":18602,"18602":18603,"18603":18604,"18604":18605,"18605":18606,"18606":18607,"18607":18608,"18608":18609,"18609":18610,"18610":18611,"18611":18612,"18612":18613,"18613":18614,"18614":18615,"18615":18616,"18616":18617,"18617":18618,"18618":18619,"18619":18620,"18620":18621,"18621":18622,"18622":18623,"18623":18624,"18624":18625,"18625":18626,"18626":18627,"18627":18628,"18628":18629,"18629":18630,"18630":18631,"18631":18632,"18632":18633,"18633":18634,"18634":18635,"18635":18636,"18636":18637,"18637":18638,"18638":18639,"18639":18640,"18640":18641,"18641":18642,"18642":18643,"18643":18644,"18644":18645,"18645":18646,"18646":18647,"18647":18648,"18648":18649,"18649":18650,"18650":18651,"18651":18652,"18652":18653,"18653":18654,"18654":18655,"18655":18656,"18656":18657,"18657":18658,"18658":18659,"18659":18660,"18660":18661,"18661":18662,"18662":18663,"18663":18664,"18664":18665,"18665":18666,"18666":18667,"18667":18668,"18668":18669,"18669":18670,"18670":18671,"18671":18672,"18672":18673,"18673":18674,"18674":18675,"18675":18676,"18676":18677,"18677":18678,"18678":18679,"18679":18680,"18680":18681,"18681":18682,"18682":18683,"18683":18684,"18684":18685,"18685":18686,"18686":18687,"18687":18688,"18688":18689,"18689":18690,"18690":18691,"18691":18692,"18692":18693,"18693":18694,"18694":18695,"18695":18696,"18696":18697,"18697":18698,"18698":18699,"18699":18700,"18700":18701,"18701":18702,"18702":18703,"18703":18704,"18704":18705,"18705":18706,"18706":18707,"18707":18708,"18708":18709,"18709":18710,"18710":18711,"18711":18712,"18712":18713,"18713":18714,"18714":18715,"18715":18716,"18716":18717,"18717":18718,"18718":18719,"18719":18720,"18720":18721,"18721":18722,"18722":18723,"18723":18724,"18724":18725,"18725":18726,"18726":18727,"18727":18728,"18728":18729,"18729":18730,"18730":18731,"18731":18732,"18732":18733,"18733":18734,"18734":18735,"18735":18736,"18736":18737,"18737":18738,"18738":18739,"18739":18740,"18740":18741,"18741":18742,"18742":18743,"18743":18744,"18744":18745,"18745":18746,"18746":18747,"18747":18748,"18748":18749,"18749":18750,"18750":18751,"18751":18752,"18752":18753,"18753":18754,"18754":18755,"18755":18756,"18756":18757,"18757":18758,"18758":18759,"18759":18760,"18760":18761,"18761":18762,"18762":18763,"18763":18764,"18764":18765,"18765":18766,"18766":18767,"18767":18768,"18768":18769,"18769":18770,"18770":18771,"18771":18772,"18772":18773,"18773":18774,"18774":18775,"18775":18776,"18776":18777,"18777":18778,"18778":18779,"18779":18780,"18780":18781,"18781":18782,"18782":18783,"18783":18784,"18784":18785,"18785":18786,"18786":18787,"18787":18788,"18788":18789,"18789":18790,"18790":18791,"18791":18792,"18792":18793,"18793":18794,"18794":18795,"18795":18796,"18796":18797,"18797":18798,"18798":18799,"18799":18800,"18800":18801,"18801":18802,"18802":18803,"18803":18804,"18804":18805,"18805":18806,"18806":18807,"18807":18808,"18808":18809,"18809":18810,"18810":18811,"18811":18812,"18812":18813,"18813":18814,"18814":18815,"18815":18816,"18816":18817,"18817":18818,"18818":18819,"18819":18820,"18820":18821,"18821":18822,"18822":18823,"18823":18824,"18824":18825,"18825":18826,"18826":18827,"18827":18828,"18828":18829,"18829":18830,"18830":18831,"18831":18832,"18832":18833,"18833":18834,"18834":18835,"18835":18836,"18836":18837,"18837":18838,"18838":18839,"18839":18840,"18840":18841,"18841":18842,"18842":18843,"18843":18844,"18844":18845,"18845":18846,"18846":18847,"18847":18848,"18848":18849,"18849":18850,"18850":18851,"18851":18852,"18852":18853,"18853":18854,"18854":18855,"18855":18856,"18856":18857,"18857":18858,"18858":18859,"18859":18860,"18860":18861,"18861":18862,"18862":18863,"18863":18864,"18864":18865,"18865":18866,"18866":18867,"18867":18868,"18868":18869,"18869":18870,"18870":18871,"18871":18872,"18872":18873,"18873":18874,"18874":18875,"18875":18876,"18876":18877,"18877":18878,"18878":18879,"18879":18880,"18880":18881,"18881":18882,"18882":18883,"18883":18884,"18884":18885,"18885":18886,"18886":18887,"18887":18888,"18888":18889,"18889":18890,"18890":18891,"18891":18892,"18892":18893,"18893":18894,"18894":18895,"18895":18896,"18896":18897,"18897":18898,"18898":18899,"18899":18900,"18900":18901,"18901":18902,"18902":18903,"18903":18904,"18904":18905,"18905":18906,"18906":18907,"18907":18908,"18908":18909,"18909":18910,"18910":18911,"18911":18912,"18912":18913,"18913":18914,"18914":18915,"18915":18916,"18916":18917,"18917":18918,"18918":18919,"18919":18920,"18920":18921,"18921":18922,"18922":18923,"18923":18924,"18924":18925,"18925":18926,"18926":18927,"18927":18928,"18928":18929,"18929":18930,"18930":18931,"18931":18932,"18932":18933,"18933":18934,"18934":18935,"18935":18936,"18936":18937,"18937":18938,"18938":18939,"18939":18940,"18940":18941,"18941":18942,"18942":18943,"18943":18944,"18944":18945,"18945":18946,"18946":18947,"18947":18948,"18948":18949,"18949":18950,"18950":18951,"18951":18952,"18952":18953,"18953":18954,"18954":18955,"18955":18956,"18956":18957,"18957":18958,"18958":18959,"18959":18960,"18960":18961,"18961":18962,"18962":18963,"18963":18964,"18964":18965,"18965":18966,"18966":18967,"18967":18968,"18968":18969,"18969":18970,"18970":18971,"18971":18972,"18972":18973,"18973":18974,"18974":18975,"18975":18976,"18976":18977,"18977":18978,"18978":18979,"18979":18980,"18980":18981,"18981":18982,"18982":18983,"18983":18984,"18984":18985,"18985":18986,"18986":18987,"18987":18988,"18988":18989,"18989":18990,"18990":18991,"18991":18992,"18992":18993,"18993":18994,"18994":18995,"18995":18996,"18996":18997,"18997":18998,"18998":18999,"18999":19000,"19000":19001,"19001":19002,"19002":19003,"19003":19004,"19004":19005,"19005":19006,"19006":19007,"19007":19008,"19008":19009,"19009":19010,"19010":19011,"19011":19012,"19012":19013,"19013":19014,"19014":19015,"19015":19016,"19016":19017,"19017":19018,"19018":19019,"19019":19020,"19020":19021,"19021":19022,"19022":19023,"19023":19024,"19024":19025,"19025":19026,"19026":19027,"19027":19028,"19028":19029,"19029":19030,"19030":19031,"19031":19032,"19032":19033,"19033":19034,"19034":19035,"19035":19036,"19036":19037,"19037":19038,"19038":19039,"19039":19040,"19040":19041,"19041":19042,"19042":19043,"19043":19044,"19044":19045,"19045":19046,"19046":19047,"19047":19048,"19048":19049,"19049":19050,"19050":19051,"19051":19052,"19052":19053,"19053":19054,"19054":19055,"19055":19056,"19056":19057,"19057":19058,"19058":19059,"19059":19060,"19060":19061,"19061":19062,"19062":19063,"19063":19064,"19064":19065,"19065":19066,"19066":19067,"19067":19068,"19068":19069,"19069":19070,"19070":19071,"19071":19072,"19072":19073,"19073":19074,"19074":19075,"19075":19076,"19076":19077,"19077":19078,"19078":19079,"19079":19080,"19080":19081,"19081":19082,"19082":19083,"19083":19084,"19084":19085,"19085":19086,"19086":19087,"19087":19088,"19088":19089,"19089":19090,"19090":19091,"19091":19092,"19092":19093,"19093":19094,"19094":19095,"19095":19096,"19096":19097,"19097":19098,"19098":19099,"19099":19100,"19100":19101,"19101":19102,"19102":19103,"19103":19104,"19104":19105,"19105":19106,"19106":19107,"19107":19108,"19108":19109,"19109":19110,"19110":19111,"19111":19112,"19112":19113,"19113":19114,"19114":19115,"19115":19116,"19116":19117,"19117":19118,"19118":19119,"19119":19120,"19120":19121,"19121":19122,"19122":19123,"19123":19124,"19124":19125,"19125":19126,"19126":19127,"19127":19128,"19128":19129,"19129":19130,"19130":19131,"19131":19132,"19132":19133,"19133":19134,"19134":19135,"19135":19136,"19136":19137,"19137":19138,"19138":19139,"19139":19140,"19140":19141,"19141":19142,"19142":19143,"19143":19144,"19144":19145,"19145":19146,"19146":19147,"19147":19148,"19148":19149,"19149":19150,"19150":19151,"19151":19152,"19152":19153,"19153":19154,"19154":19155,"19155":19156,"19156":19157,"19157":19158,"19158":19159,"19159":19160,"19160":19161,"19161":19162,"19162":19163,"19163":19164,"19164":19165,"19165":19166,"19166":19167,"19167":19168,"19168":19169,"19169":19170,"19170":19171,"19171":19172,"19172":19173,"19173":19174,"19174":19175,"19175":19176,"19176":19177,"19177":19178,"19178":19179,"19179":19180,"19180":19181,"19181":19182,"19182":19183,"19183":19184,"19184":19185,"19185":19186,"19186":19187,"19187":19188,"19188":19189,"19189":19190,"19190":19191,"19191":19192,"19192":19193,"19193":19194,"19194":19195,"19195":19196,"19196":19197,"19197":19198,"19198":19199,"19199":19200,"19200":19201,"19201":19202,"19202":19203,"19203":19204,"19204":19205,"19205":19206,"19206":19207,"19207":19208,"19208":19209,"19209":19210,"19210":19211,"19211":19212,"19212":19213,"19213":19214,"19214":19215,"19215":19216,"19216":19217,"19217":19218,"19218":19219,"19219":19220,"19220":19221,"19221":19222,"19222":19223,"19223":19224,"19224":19225,"19225":19226,"19226":19227,"19227":19228,"19228":19229,"19229":19230,"19230":19231,"19231":19232,"19232":19233,"19233":19234,"19234":19235,"19235":19236,"19236":19237,"19237":19238,"19238":19239,"19239":19240,"19240":19241,"19241":19242,"19242":19243,"19243":19244,"19244":19245,"19245":19246,"19246":19247,"19247":19248,"19248":19249,"19249":19250,"19250":19251,"19251":19252,"19252":19253,"19253":19254,"19254":19255,"19255":19256,"19256":19257,"19257":19258,"19258":19259,"19259":19260,"19260":19261,"19261":19262,"19262":19263,"19263":19264,"19264":19265,"19265":19266,"19266":19267,"19267":19268,"19268":19269,"19269":19270,"19270":19271,"19271":19272,"19272":19273,"19273":19274,"19274":19275,"19275":19276,"19276":19277,"19277":19278,"19278":19279,"19279":19280,"19280":19281,"19281":19282,"19282":19283,"19283":19284,"19284":19285,"19285":19286,"19286":19287,"19287":19288,"19288":19289,"19289":19290,"19290":19291,"19291":19292,"19292":19293,"19293":19294,"19294":19295,"19295":19296,"19296":19297,"19297":19298,"19298":19299,"19299":19300,"19300":19301,"19301":19302,"19302":19303,"19303":19304,"19304":19305,"19305":19306,"19306":19307,"19307":19308,"19308":19309,"19309":19310,"19310":19311,"19311":19312,"19312":19313,"19313":19314,"19314":19315,"19315":19316,"19316":19317,"19317":19318,"19318":19319,"19319":19320,"19320":19321,"19321":19322,"19322":19323,"19323":19324,"19324":19325,"19325":19326,"19326":19327,"19327":19328,"19328":19329,"19329":19330,"19330":19331,"19331":19332,"19332":19333,"19333":19334,"19334":19335,"19335":19336,"19336":19337,"19337":19338,"19338":19339,"19339":19340,"19340":19341,"19341":19342,"19342":19343,"19343":19344,"19344":19345,"19345":19346,"19346":19347,"19347":19348,"19348":19349,"19349":19350,"19350":19351,"19351":19352,"19352":19353,"19353":19354,"19354":19355,"19355":19356,"19356":19357,"19357":19358,"19358":19359,"19359":19360,"19360":19361,"19361":19362,"19362":19363,"19363":19364,"19364":19365,"19365":19366,"19366":19367,"19367":19368,"19368":19369,"19369":19370,"19370":19371,"19371":19372,"19372":19373,"19373":19374,"19374":19375,"19375":19376,"19376":19377,"19377":19378,"19378":19379,"19379":19380,"19380":19381,"19381":19382,"19382":19383,"19383":19384,"19384":19385,"19385":19386,"19386":19387,"19387":19388,"19388":19389,"19389":19390,"19390":19391,"19391":19392,"19392":19393,"19393":19394,"19394":19395,"19395":19396,"19396":19397,"19397":19398,"19398":19399,"19399":19400,"19400":19401,"19401":19402,"19402":19403,"19403":19404,"19404":19405,"19405":19406,"19406":19407,"19407":19408,"19408":19409,"19409":19410,"19410":19411,"19411":19412,"19412":19413,"19413":19414,"19414":19415,"19415":19416,"19416":19417,"19417":19418,"19418":19419,"19419":19420,"19420":19421,"19421":19422,"19422":19423,"19423":19424,"19424":19425,"19425":19426,"19426":19427,"19427":19428,"19428":19429,"19429":19430,"19430":19431,"19431":19432,"19432":19433,"19433":19434,"19434":19435,"19435":19436,"19436":19437,"19437":19438,"19438":19439,"19439":19440,"19440":19441,"19441":19442,"19442":19443,"19443":19444,"19444":19445,"19445":19446,"19446":19447,"19447":19448,"19448":19449,"19449":19450,"19450":19451,"19451":19452,"19452":19453,"19453":19454,"19454":19455,"19455":19456,"19456":19457,"19457":19458,"19458":19459,"19459":19460,"19460":19461,"19461":19462,"19462":19463,"19463":19464,"19464":19465,"19465":19466,"19466":19467,"19467":19468,"19468":19469,"19469":19470,"19470":19471,"19471":19472,"19472":19473,"19473":19474,"19474":19475,"19475":19476,"19476":19477,"19477":19478,"19478":19479,"19479":19480,"19480":19481,"19481":19482,"19482":19483,"19483":19484,"19484":19485,"19485":19486,"19486":19487,"19487":19488,"19488":19489,"19489":19490,"19490":19491,"19491":19492,"19492":19493,"19493":19494,"19494":19495,"19495":19496,"19496":19497,"19497":19498,"19498":19499,"19499":19500,"19500":19501,"19501":19502,"19502":19503,"19503":19504,"19504":19505,"19505":19506,"19506":19507,"19507":19508,"19508":19509,"19509":19510,"19510":19511,"19511":19512,"19512":19513,"19513":19514,"19514":19515,"19515":19516,"19516":19517,"19517":19518,"19518":19519,"19519":19520,"19520":19521,"19521":19522,"19522":19523,"19523":19524,"19524":19525,"19525":19526,"19526":19527,"19527":19528,"19528":19529,"19529":19530,"19530":19531,"19531":19532,"19532":19533,"19533":19534,"19534":19535,"19535":19536,"19536":19537,"19537":19538,"19538":19539,"19539":19540,"19540":19541,"19541":19542,"19542":19543,"19543":19544,"19544":19545,"19545":19546,"19546":19547,"19547":19548,"19548":19549,"19549":19550,"19550":19551,"19551":19552,"19552":19553,"19553":19554,"19554":19555,"19555":19556,"19556":19557,"19557":19558,"19558":19559,"19559":19560,"19560":19561,"19561":19562,"19562":19563,"19563":19564,"19564":19565,"19565":19566,"19566":19567,"19567":19568,"19568":19569,"19569":19570,"19570":19571,"19571":19572,"19572":19573,"19573":19574,"19574":19575,"19575":19576,"19576":19577,"19577":19578,"19578":19579,"19579":19580,"19580":19581,"19581":19582,"19582":19583,"19583":19584,"19584":19585,"19585":19586,"19586":19587,"19587":19588,"19588":19589,"19589":19590,"19590":19591,"19591":19592,"19592":19593,"19593":19594,"19594":19595,"19595":19596,"19596":19597,"19597":19598,"19598":19599,"19599":19600,"19600":19601,"19601":19602,"19602":19603,"19603":19604,"19604":19605,"19605":19606,"19606":19607,"19607":19608,"19608":19609,"19609":19610,"19610":19611,"19611":19612,"19612":19613,"19613":19614,"19614":19615,"19615":19616,"19616":19617,"19617":19618,"19618":19619,"19619":19620,"19620":19621,"19621":19622,"19622":19623,"19623":19624,"19624":19625,"19625":19626,"19626":19627,"19627":19628,"19628":19629,"19629":19630,"19630":19631,"19631":19632,"19632":19633,"19633":19634,"19634":19635,"19635":19636,"19636":19637,"19637":19638,"19638":19639,"19639":19640,"19640":19641,"19641":19642,"19642":19643,"19643":19644,"19644":19645,"19645":19646,"19646":19647,"19647":19648,"19648":19649,"19649":19650,"19650":19651,"19651":19652,"19652":19653,"19653":19654,"19654":19655,"19655":19656,"19656":19657,"19657":19658,"19658":19659,"19659":19660,"19660":19661,"19661":19662,"19662":19663,"19663":19664,"19664":19665,"19665":19666,"19666":19667,"19667":19668,"19668":19669,"19669":19670,"19670":19671,"19671":19672,"19672":19673,"19673":19674,"19674":19675,"19675":19676,"19676":19677,"19677":19678,"19678":19679,"19679":19680,"19680":19681,"19681":19682,"19682":19683,"19683":19684,"19684":19685,"19685":19686,"19686":19687,"19687":19688,"19688":19689,"19689":19690,"19690":19691,"19691":19692,"19692":19693,"19693":19694,"19694":19695,"19695":19696,"19696":19697,"19697":19698,"19698":19699,"19699":19700,"19700":19701,"19701":19702,"19702":19703,"19703":19704,"19704":19705,"19705":19706,"19706":19707,"19707":19708,"19708":19709,"19709":19710,"19710":19711,"19711":19712,"19712":19713,"19713":19714,"19714":19715,"19715":19716,"19716":19717,"19717":19718,"19718":19719,"19719":19720,"19720":19721,"19721":19722,"19722":19723,"19723":19724,"19724":19725,"19725":19726,"19726":19727,"19727":19728,"19728":19729,"19729":19730,"19730":19731,"19731":19732,"19732":19733,"19733":19734,"19734":19735,"19735":19736,"19736":19737,"19737":19738,"19738":19739,"19739":19740,"19740":19741,"19741":19742,"19742":19743,"19743":19744,"19744":19745,"19745":19746,"19746":19747,"19747":19748,"19748":19749,"19749":19750,"19750":19751,"19751":19752,"19752":19753,"19753":19754,"19754":19755,"19755":19756,"19756":19757,"19757":19758,"19758":19759,"19759":19760,"19760":19761,"19761":19762,"19762":19763,"19763":19764,"19764":19765,"19765":19766,"19766":19767,"19767":19768,"19768":19769,"19769":19770,"19770":19771,"19771":19772,"19772":19773,"19773":19774,"19774":19775,"19775":19776,"19776":19777,"19777":19778,"19778":19779,"19779":19780,"19780":19781,"19781":19782,"19782":19783,"19783":19784,"19784":19785,"19785":19786,"19786":19787,"19787":19788,"19788":19789,"19789":19790,"19790":19791,"19791":19792,"19792":19793,"19793":19794,"19794":19795,"19795":19796,"19796":19797,"19797":19798,"19798":19799,"19799":19800,"19800":19801,"19801":19802,"19802":19803,"19803":19804,"19804":19805,"19805":19806,"19806":19807,"19807":19808,"19808":19809,"19809":19810,"19810":19811,"19811":19812,"19812":19813,"19813":19814,"19814":19815,"19815":19816,"19816":19817,"19817":19818,"19818":19819,"19819":19820,"19820":19821,"19821":19822,"19822":19823,"19823":19824,"19824":19825,"19825":19826,"19826":19827,"19827":19828,"19828":19829,"19829":19830,"19830":19831,"19831":19832,"19832":19833,"19833":19834,"19834":19835,"19835":19836,"19836":19837,"19837":19838,"19838":19839,"19839":19840,"19840":19841,"19841":19842,"19842":19843,"19843":19844,"19844":19845,"19845":19846,"19846":19847,"19847":19848,"19848":19849,"19849":19850,"19850":19851,"19851":19852,"19852":19853,"19853":19854,"19854":19855,"19855":19856,"19856":19857,"19857":19858,"19858":19859,"19859":19860,"19860":19861,"19861":19862,"19862":19863,"19863":19864,"19864":19865,"19865":19866,"19866":19867,"19867":19868,"19868":19869,"19869":19870,"19870":19871,"19871":19872,"19872":19873,"19873":19874,"19874":19875,"19875":19876,"19876":19877,"19877":19878,"19878":19879,"19879":19880,"19880":19881,"19881":19882,"19882":19883,"19883":19884,"19884":19885,"19885":19886,"19886":19887,"19887":19888,"19888":19889,"19889":19890,"19890":19891,"19891":19892,"19892":19893,"19893":19894,"19894":19895,"19895":19896,"19896":19897,"19897":19898,"19898":19899,"19899":19900,"19900":19901,"19901":19902,"19902":19903,"19903":19904,"19904":19905,"19905":19906,"19906":19907,"19907":19908,"19908":19909,"19909":19910,"19910":19911,"19911":19912,"19912":19913,"19913":19914,"19914":19915,"19915":19916,"19916":19917,"19917":19918,"19918":19919,"19919":19920,"19920":19921,"19921":19922,"19922":19923,"19923":19924,"19924":19925,"19925":19926,"19926":19927,"19927":19928,"19928":19929,"19929":19930,"19930":19931,"19931":19932,"19932":19933,"19933":19934,"19934":19935,"19935":19936,"19936":19937,"19937":19938,"19938":19939,"19939":19940,"19940":19941,"19941":19942,"19942":19943,"19943":19944,"19944":19945,"19945":19946,"19946":19947,"19947":19948,"19948":19949,"19949":19950,"19950":19951,"19951":19952,"19952":19953,"19953":19954,"19954":19955,"19955":19956,"19956":19957,"19957":19958,"19958":19959,"19959":19960,"19960":19961,"19961":19962,"19962":19963,"19963":19964,"19964":19965,"19965":19966,"19966":19967,"19967":19968,"19968":19969,"19969":19970,"19970":19971,"19971":19972,"19972":19973,"19973":19974,"19974":19975,"19975":19976,"19976":19977,"19977":19978,"19978":19979,"19979":19980,"19980":19981,"19981":19982,"19982":19983,"19983":19984,"19984":19985,"19985":19986,"19986":19987,"19987":19988,"19988":19989,"19989":19990,"19990":19991,"19991":19992,"19992":19993,"19993":19994,"19994":19995,"19995":19996,"19996":19997,"19997":19998,"19998":19999,"19999":20000,"20000":20001,"20001":20002,"20002":20003,"20003":20004,"20004":20005,"20005":20006,"20006":20007,"20007":20008,"20008":20009,"20009":20010,"20010":20011,"20011":20012,"20012":20013,"20013":20014,"20014":20015,"20015":20016,"20016":20017,"20017":20018,"20018":20019,"20019":20020,"20020":20021,"20021":20022,"20022":20023,"20023":20024,"20024":20025,"20025":20026,"20026":20027,"20027":20028,"20028":20029,"20029":20030,"20030":20031,"20031":20032,"20032":20033,"20033":20034,"20034":20035,"20035":20036,"20036":20037,"20037":20038,"20038":20039,"20039":20040,"20040":20041,"20041":20042,"20042":20043,"20043":20044,"20044":20045,"20045":20046,"20046":20047,"20047":20048,"20048":20049,"20049":20050,"20050":20051,"20051":20052,"20052":20053,"20053":20054,"20054":20055,"20055":20056,"20056":20057,"20057":20058,"20058":20059,"20059":20060,"20060":20061,"20061":20062,"20062":20063,"20063":20064,"20064":20065,"20065":20066,"20066":20067,"20067":20068,"20068":20069,"20069":20070,"20070":20071,"20071":20072,"20072":20073,"20073":20074,"20074":20075,"20075":20076,"20076":20077,"20077":20078,"20078":20079,"20079":20080,"20080":20081,"20081":20082,"20082":20083,"20083":20084,"20084":20085,"20085":20086,"20086":20087,"20087":20088,"20088":20089,"20089":20090,"20090":20091,"20091":20092,"20092":20093,"20093":20094,"20094":20095,"20095":20096,"20096":20097,"20097":20098,"20098":20099,"20099":20100,"20100":20101,"20101":20102,"20102":20103,"20103":20104,"20104":20105,"20105":20106,"20106":20107,"20107":20108,"20108":20109,"20109":20110,"20110":20111,"20111":20112,"20112":20113,"20113":20114,"20114":20115,"20115":20116,"20116":20117,"20117":20118,"20118":20119,"20119":20120,"20120":20121,"20121":20122,"20122":20123,"20123":20124,"20124":20125,"20125":20126,"20126":20127,"20127":20128,"20128":20129,"20129":20130,"20130":20131,"20131":20132,"20132":20133,"20133":20134,"20134":20135,"20135":20136,"20136":20137,"20137":20138,"20138":20139,"20139":20140,"20140":20141,"20141":20142,"20142":20143,"20143":20144,"20144":20145,"20145":20146,"20146":20147,"20147":20148,"20148":20149,"20149":20150,"20150":20151,"20151":20152,"20152":20153,"20153":20154,"20154":20155,"20155":20156,"20156":20157,"20157":20158,"20158":20159,"20159":20160,"20160":20161,"20161":20162,"20162":20163,"20163":20164,"20164":20165,"20165":20166,"20166":20167,"20167":20168,"20168":20169,"20169":20170,"20170":20171,"20171":20172,"20172":20173,"20173":20174,"20174":20175,"20175":20176,"20176":20177,"20177":20178,"20178":20179,"20179":20180,"20180":20181,"20181":20182,"20182":20183,"20183":20184,"20184":20185,"20185":20186,"20186":20187,"20187":20188,"20188":20189,"20189":20190,"20190":20191,"20191":20192,"20192":20193,"20193":20194,"20194":20195,"20195":20196,"20196":20197,"20197":20198,"20198":20199,"20199":20200,"20200":20201,"20201":20202,"20202":20203,"20203":20204,"20204":20205,"20205":20206,"20206":20207,"20207":20208,"20208":20209,"20209":20210,"20210":20211,"20211":20212,"20212":20213,"20213":20214,"20214":20215,"20215":20216,"20216":20217,"20217":20218,"20218":20219,"20219":20220,"20220":20221,"20221":20222,"20222":20223,"20223":20224,"20224":20225,"20225":20226,"20226":20227,"20227":20228,"20228":20229,"20229":20230,"20230":20231,"20231":20232,"20232":20233,"20233":20234,"20234":20235,"20235":20236,"20236":20237,"20237":20238,"20238":20239,"20239":20240,"20240":20241,"20241":20242,"20242":20243,"20243":20244,"20244":20245,"20245":20246,"20246":20247,"20247":20248,"20248":20249,"20249":20250,"20250":20251,"20251":20252,"20252":20253,"20253":20254,"20254":20255,"20255":20256,"20256":20257,"20257":20258,"20258":20259,"20259":20260,"20260":20261,"20261":20262,"20262":20263,"20263":20264,"20264":20265,"20265":20266,"20266":20267,"20267":20268,"20268":20269,"20269":20270,"20270":20271,"20271":20272,"20272":20273,"20273":20274,"20274":20275,"20275":20276,"20276":20277,"20277":20278,"20278":20279,"20279":20280,"20280":20281,"20281":20282,"20282":20283,"20283":20284,"20284":20285,"20285":20286,"20286":20287,"20287":20288,"20288":20289,"20289":20290,"20290":20291,"20291":20292,"20292":20293,"20293":20294,"20294":20295,"20295":20296,"20296":20297,"20297":20298,"20298":20299,"20299":20300,"20300":20301,"20301":20302,"20302":20303,"20303":20304,"20304":20305,"20305":20306,"20306":20307,"20307":20308,"20308":20309,"20309":20310,"20310":20311,"20311":20312,"20312":20313,"20313":20314,"20314":20315,"20315":20316,"20316":20317,"20317":20318,"20318":20319,"20319":20320,"20320":20321,"20321":20322,"20322":20323,"20323":20324,"20324":20325,"20325":20326,"20326":20327,"20327":20328,"20328":20329,"20329":20330,"20330":20331,"20331":20332,"20332":20333,"20333":20334,"20334":20335,"20335":20336,"20336":20337,"20337":20338,"20338":20339,"20339":20340,"20340":20341,"20341":20342,"20342":20343,"20343":20344,"20344":20345,"20345":20346,"20346":20347,"20347":20348,"20348":20349,"20349":20350,"20350":20351,"20351":20352,"20352":20353,"20353":20354,"20354":20355,"20355":20356,"20356":20357,"20357":20358,"20358":20359,"20359":20360,"20360":20361,"20361":20362,"20362":20363,"20363":20364,"20364":20365,"20365":20366,"20366":20367,"20367":20368,"20368":20369,"20369":20370,"20370":20371,"20371":20372,"20372":20373,"20373":20374,"20374":20375,"20375":20376,"20376":20377,"20377":20378,"20378":20379,"20379":20380,"20380":20381,"20381":20382,"20382":20383,"20383":20384,"20384":20385,"20385":20386,"20386":20387,"20387":20388,"20388":20389,"20389":20390,"20390":20391,"20391":20392,"20392":20393,"20393":20394,"20394":20395,"20395":20396,"20396":20397,"20397":20398,"20398":20399,"20399":20400,"20400":20401,"20401":20402,"20402":20403,"20403":20404,"20404":20405,"20405":20406,"20406":20407,"20407":20408,"20408":20409,"20409":20410,"20410":20411,"20411":20412,"20412":20413,"20413":20414,"20414":20415,"20415":20416,"20416":20417,"20417":20418,"20418":20419,"20419":20420,"20420":20421,"20421":20422,"20422":20423,"20423":20424,"20424":20425,"20425":20426,"20426":20427,"20427":20428,"20428":20429,"20429":20430,"20430":20431,"20431":20432,"20432":20433,"20433":20434,"20434":20435,"20435":20436,"20436":20437,"20437":20438,"20438":20439,"20439":20440,"20440":20441,"20441":20442,"20442":20443,"20443":20444,"20444":20445,"20445":20446,"20446":20447,"20447":20448,"20448":20449,"20449":20450,"20450":20451,"20451":20452,"20452":20453,"20453":20454,"20454":20455,"20455":20456,"20456":20457,"20457":20458,"20458":20459,"20459":20460,"20460":20461,"20461":20462,"20462":20463,"20463":20464,"20464":20465,"20465":20466,"20466":20467,"20467":20468,"20468":20469,"20469":20470,"20470":20471,"20471":20472,"20472":20473,"20473":20474,"20474":20475,"20475":20476,"20476":20477,"20477":20478,"20478":20479,"20479":20480,"20480":20481,"20481":20482,"20482":20483,"20483":20484,"20484":20485,"20485":20486,"20486":20487,"20487":20488,"20488":20489,"20489":20490,"20490":20491,"20491":20492,"20492":20493,"20493":20494,"20494":20495,"20495":20496,"20496":20497,"20497":20498,"20498":20499,"20499":20500,"20500":20501,"20501":20502,"20502":20503,"20503":20504,"20504":20505,"20505":20506,"20506":20507,"20507":20508,"20508":20509,"20509":20510,"20510":20511,"20511":20512,"20512":20513,"20513":20514,"20514":20515,"20515":20516,"20516":20517,"20517":20518,"20518":20519,"20519":20520,"20520":20521,"20521":20522,"20522":20523,"20523":20524,"20524":20525,"20525":20526,"20526":20527,"20527":20528,"20528":20529,"20529":20530,"20530":20531,"20531":20532,"20532":20533,"20533":20534,"20534":20535,"20535":20536,"20536":20537,"20537":20538,"20538":20539,"20539":20540,"20540":20541,"20541":20542,"20542":20543,"20543":20544,"20544":20545,"20545":20546,"20546":20547,"20547":20548,"20548":20549,"20549":20550,"20550":20551,"20551":20552,"20552":20553,"20553":20554,"20554":20555,"20555":20556,"20556":20557,"20557":20558,"20558":20559,"20559":20560,"20560":20561,"20561":20562,"20562":20563,"20563":20564,"20564":20565,"20565":20566,"20566":20567,"20567":20568,"20568":20569,"20569":20570,"20570":20571,"20571":20572,"20572":20573,"20573":20574,"20574":20575,"20575":20576,"20576":20577,"20577":20578,"20578":20579,"20579":20580,"20580":20581,"20581":20582,"20582":20583,"20583":20584,"20584":20585,"20585":20586,"20586":20587,"20587":20588,"20588":20589,"20589":20590,"20590":20591,"20591":20592,"20592":20593,"20593":20594,"20594":20595,"20595":20596,"20596":20597,"20597":20598,"20598":20599,"20599":20600,"20600":20601,"20601":20602,"20602":20603,"20603":20604,"20604":20605,"20605":20606,"20606":20607,"20607":20608,"20608":20609,"20609":20610,"20610":20611,"20611":20612,"20612":20613,"20613":20614,"20614":20615,"20615":20616,"20616":20617,"20617":20618,"20618":20619,"20619":20620,"20620":20621,"20621":20622,"20622":20623,"20623":20624,"20624":20625,"20625":20626,"20626":20627,"20627":20628,"20628":20629,"20629":20630,"20630":20631,"20631":20632,"20632":20633,"20633":20634,"20634":20635,"20635":20636,"20636":20637,"20637":20638,"20638":20639,"20639":20640,"20640":20641,"20641":20642,"20642":20643,"20643":20644,"20644":20645,"20645":20646,"20646":20647,"20647":20648,"20648":20649,"20649":20650,"20650":20651,"20651":20652,"20652":20653,"20653":20654,"20654":20655,"20655":20656,"20656":20657,"20657":20658,"20658":20659,"20659":20660,"20660":20661,"20661":20662,"20662":20663,"20663":20664,"20664":20665,"20665":20666,"20666":20667,"20667":20668,"20668":20669,"20669":20670,"20670":20671,"20671":20672,"20672":20673,"20673":20674,"20674":20675,"20675":20676,"20676":20677,"20677":20678,"20678":20679,"20679":20680,"20680":20681,"20681":20682,"20682":20683,"20683":20684,"20684":20685,"20685":20686,"20686":20687,"20687":20688,"20688":20689,"20689":20690,"20690":20691,"20691":20692,"20692":20693,"20693":20694,"20694":20695,"20695":20696,"20696":20697,"20697":20698,"20698":20699,"20699":20700,"20700":20701,"20701":20702,"20702":20703,"20703":20704,"20704":20705,"20705":20706,"20706":20707,"20707":20708,"20708":20709,"20709":20710,"20710":20711,"20711":20712,"20712":20713,"20713":20714,"20714":20715,"20715":20716,"20716":20717,"20717":20718,"20718":20719,"20719":20720,"20720":20721,"20721":20722,"20722":20723,"20723":20724,"20724":20725,"20725":20726,"20726":20727,"20727":20728,"20728":20729,"20729":20730,"20730":20731,"20731":20732,"20732":20733,"20733":20734,"20734":20735,"20735":20736,"20736":20737,"20737":20738,"20738":20739,"20739":20740,"20740":20741,"20741":20742,"20742":20743,"20743":20744,"20744":20745,"20745":20746,"20746":20747,"20747":20748,"20748":20749,"20749":20750,"20750":20751,"20751":20752,"20752":20753,"20753":20754,"20754":20755,"20755":20756,"20756":20757,"20757":20758,"20758":20759,"20759":20760,"20760":20761,"20761":20762,"20762":20763,"20763":20764,"20764":20765,"20765":20766,"20766":20767,"20767":20768,"20768":20769,"20769":20770,"20770":20771,"20771":20772,"20772":20773,"20773":20774,"20774":20775,"20775":20776,"20776":20777,"20777":20778,"20778":20779,"20779":20780,"20780":20781,"20781":20782,"20782":20783,"20783":20784,"20784":20785,"20785":20786,"20786":20787,"20787":20788,"20788":20789,"20789":20790,"20790":20791,"20791":20792,"20792":20793,"20793":20794,"20794":20795,"20795":20796,"20796":20797,"20797":20798,"20798":20799,"20799":20800,"20800":20801,"20801":20802,"20802":20803,"20803":20804,"20804":20805,"20805":20806,"20806":20807,"20807":20808,"20808":20809,"20809":20810,"20810":20811,"20811":20812,"20812":20813,"20813":20814,"20814":20815,"20815":20816,"20816":20817,"20817":20818,"20818":20819,"20819":20820,"20820":20821,"20821":20822,"20822":20823,"20823":20824,"20824":20825,"20825":20826,"20826":20827,"20827":20828,"20828":20829,"20829":20830,"20830":20831,"20831":20832,"20832":20833,"20833":20834,"20834":20835,"20835":20836,"20836":20837,"20837":20838,"20838":20839,"20839":20840,"20840":20841,"20841":20842,"20842":20843,"20843":20844,"20844":20845,"20845":20846,"20846":20847,"20847":20848,"20848":20849,"20849":20850,"20850":20851,"20851":20852,"20852":20853,"20853":20854,"20854":20855,"20855":20856,"20856":20857,"20857":20858,"20858":20859,"20859":20860,"20860":20861,"20861":20862,"20862":20863,"20863":20864,"20864":20865,"20865":20866,"20866":20867,"20867":20868,"20868":20869,"20869":20870,"20870":20871,"20871":20872,"20872":20873,"20873":20874,"20874":20875,"20875":20876,"20876":20877,"20877":20878,"20878":20879,"20879":20880,"20880":20881,"20881":20882,"20882":20883,"20883":20884,"20884":20885,"20885":20886,"20886":20887,"20887":20888,"20888":20889,"20889":20890,"20890":20891,"20891":20892,"20892":20893,"20893":20894,"20894":20895,"20895":20896,"20896":20897,"20897":20898,"20898":20899,"20899":20900,"20900":20901,"20901":20902,"20902":20903,"20903":20904,"20904":20905,"20905":20906,"20906":20907,"20907":20908,"20908":20909,"20909":20910,"20910":20911,"20911":20912,"20912":20913,"20913":20914,"20914":20915,"20915":20916,"20916":20917,"20917":20918,"20918":20919,"20919":20920,"20920":20921,"20921":20922,"20922":20923,"20923":20924,"20924":20925,"20925":20926,"20926":20927,"20927":20928,"20928":20929,"20929":20930,"20930":20931,"20931":20932,"20932":20933,"20933":20934,"20934":20935,"20935":20936,"20936":20937,"20937":20938,"20938":20939,"20939":20940,"20940":20941,"20941":20942,"20942":20943,"20943":20944,"20944":20945,"20945":20946,"20946":20947,"20947":20948,"20948":20949,"20949":20950,"20950":20951,"20951":20952,"20952":20953,"20953":20954,"20954":20955,"20955":20956,"20956":20957,"20957":20958,"20958":20959,"20959":20960,"20960":20961,"20961":20962,"20962":20963,"20963":20964,"20964":20965,"20965":20966,"20966":20967,"20967":20968,"20968":20969,"20969":20970,"20970":20971,"20971":20972,"20972":20973,"20973":20974,"20974":20975,"20975":20976,"20976":20977,"20977":20978,"20978":20979,"20979":20980,"20980":20981,"20981":20982,"20982":20983,"20983":20984,"20984":20985,"20985":20986,"20986":20987,"20987":20988,"20988":20989,"20989":20990,"20990":20991,"20991":20992,"20992":20993,"20993":20994,"20994":20995,"20995":20996,"20996":20997,"20997":20998,"20998":20999,"20999":21000,"21000":21001,"21001":21002,"21002":21003,"21003":21004,"21004":21005,"21005":21006,"21006":21007,"21007":21008,"21008":21009,"21009":21010,"21010":21011,"21011":21012,"21012":21013,"21013":21014,"21014":21015,"21015":21016,"21016":21017,"21017":21018,"21018":21019,"21019":21020,"21020":21021,"21021":21022,"21022":21023,"21023":21024,"21024":21025,"21025":21026,"21026":21027,"21027":21028,"21028":21029,"21029":21030,"21030":21031,"21031":21032,"21032":21033,"21033":21034,"21034":21035,"21035":21036,"21036":21037,"21037":21038,"21038":21039,"21039":21040,"21040":21041,"21041":21042,"21042":21043,"21043":21044,"21044":21045,"21045":21046,"21046":21047,"21047":21048,"21048":21049,"21049":21050,"21050":21051,"21051":21052,"21052":21053,"21053":21054,"21054":21055,"21055":21056,"21056":21057,"21057":21058,"21058":21059,"21059":21060,"21060":21061,"21061":21062,"21062":21063,"21063":21064,"21064":21065,"21065":21066,"21066":21067,"21067":21068,"21068":21069,"21069":21070,"21070":21071,"21071":21072,"21072":21073,"21073":21074,"21074":21075,"21075":21076,"21076":21077,"21077":21078,"21078":21079,"21079":21080,"21080":21081,"21081":21082,"21082":21083,"21083":21084,"21084":21085,"21085":21086,"21086":21087,"21087":21088,"21088":21089,"21089":21090,"21090":21091,"21091":21092,"21092":21093,"21093":21094,"21094":21095,"21095":21096,"21096":21097,"21097":21098,"21098":21099,"21099":21100,"21100":21101,"21101":21102,"21102":21103,"21103":21104,"21104":21105,"21105":21106,"21106":21107,"21107":21108,"21108":21109,"21109":21110,"21110":21111,"21111":21112,"21112":21113,"21113":21114,"21114":21115,"21115":21116,"21116":21117,"21117":21118,"21118":21119,"21119":21120,"21120":21121,"21121":21122,"21122":21123,"21123":21124,"21124":21125,"21125":21126,"21126":21127,"21127":21128,"21128":21129,"21129":21130,"21130":21131,"21131":21132,"21132":21133,"21133":21134,"21134":21135,"21135":21136,"21136":21137,"21137":21138,"21138":21139,"21139":21140,"21140":21141,"21141":21142,"21142":21143,"21143":21144,"21144":21145,"21145":21146,"21146":21147,"21147":21148,"21148":21149,"21149":21150,"21150":21151,"21151":21152,"21152":21153,"21153":21154,"21154":21155,"21155":21156,"21156":21157,"21157":21158,"21158":21159,"21159":21160,"21160":21161,"21161":21162,"21162":21163,"21163":21164,"21164":21165,"21165":21166,"21166":21167,"21167":21168,"21168":21169,"21169":21170,"21170":21171,"21171":21172,"21172":21173,"21173":21174,"21174":21175,"21175":21176,"21176":21177,"21177":21178,"21178":21179,"21179":21180,"21180":21181,"21181":21182,"21182":21183,"21183":21184,"21184":21185,"21185":21186,"21186":21187,"21187":21188,"21188":21189,"21189":21190,"21190":21191,"21191":21192,"21192":21193,"21193":21194,"21194":21195,"21195":21196,"21196":21197,"21197":21198,"21198":21199,"21199":21200,"21200":21201,"21201":21202,"21202":21203,"21203":21204,"21204":21205,"21205":21206,"21206":21207,"21207":21208,"21208":21209,"21209":21210,"21210":21211,"21211":21212,"21212":21213,"21213":21214,"21214":21215,"21215":21216,"21216":21217,"21217":21218,"21218":21219,"21219":21220,"21220":21221,"21221":21222,"21222":21223,"21223":21224,"21224":21225,"21225":21226,"21226":21227,"21227":21228,"21228":21229,"21229":21230,"21230":21231,"21231":21232,"21232":21233,"21233":21234,"21234":21235,"21235":21236,"21236":21237,"21237":21238,"21238":21239,"21239":21240,"21240":21241,"21241":21242,"21242":21243,"21243":21244,"21244":21245,"21245":21246,"21246":21247,"21247":21248,"21248":21249,"21249":21250,"21250":21251,"21251":21252,"21252":21253,"21253":21254,"21254":21255,"21255":21256,"21256":21257,"21257":21258,"21258":21259,"21259":21260,"21260":21261,"21261":21262,"21262":21263,"21263":21264,"21264":21265,"21265":21266,"21266":21267,"21267":21268,"21268":21269,"21269":21270,"21270":21271,"21271":21272,"21272":21273,"21273":21274,"21274":21275,"21275":21276,"21276":21277,"21277":21278,"21278":21279,"21279":21280,"21280":21281,"21281":21282,"21282":21283,"21283":21284,"21284":21285,"21285":21286,"21286":21287,"21287":21288,"21288":21289,"21289":21290,"21290":21291,"21291":21292,"21292":21293,"21293":21294,"21294":21295,"21295":21296,"21296":21297,"21297":21298,"21298":21299,"21299":21300,"21300":21301,"21301":21302,"21302":21303,"21303":21304,"21304":21305,"21305":21306,"21306":21307,"21307":21308,"21308":21309,"21309":21310,"21310":21311,"21311":21312,"21312":21313,"21313":21314,"21314":21315,"21315":21316,"21316":21317,"21317":21318,"21318":21319,"21319":21320,"21320":21321,"21321":21322,"21322":21323,"21323":21324,"21324":21325,"21325":21326,"21326":21327,"21327":21328,"21328":21329,"21329":21330,"21330":21331,"21331":21332,"21332":21333,"21333":21334,"21334":21335,"21335":21336,"21336":21337,"21337":21338,"21338":21339,"21339":21340,"21340":21341,"21341":21342,"21342":21343,"21343":21344,"21344":21345,"21345":21346,"21346":21347,"21347":21348,"21348":21349,"21349":21350,"21350":21351,"21351":21352,"21352":21353,"21353":21354,"21354":21355,"21355":21356,"21356":21357,"21357":21358,"21358":21359,"21359":21360,"21360":21361,"21361":21362,"21362":21363,"21363":21364,"21364":21365,"21365":21366,"21366":21367,"21367":21368,"21368":21369,"21369":21370,"21370":21371,"21371":21372,"21372":21373,"21373":21374,"21374":21375,"21375":21376,"21376":21377,"21377":21378,"21378":21379,"21379":21380,"21380":21381,"21381":21382,"21382":21383,"21383":21384,"21384":21385,"21385":21386,"21386":21387,"21387":21388,"21388":21389,"21389":21390,"21390":21391,"21391":21392,"21392":21393,"21393":21394,"21394":21395,"21395":21396,"21396":21397,"21397":21398,"21398":21399,"21399":21400,"21400":21401,"21401":21402,"21402":21403,"21403":21404,"21404":21405,"21405":21406,"21406":21407,"21407":21408,"21408":21409,"21409":21410,"21410":21411,"21411":21412,"21412":21413,"21413":21414,"21414":21415,"21415":21416,"21416":21417,"21417":21418,"21418":21419,"21419":21420,"21420":21421,"21421":21422,"21422":21423,"21423":21424,"21424":21425,"21425":21426,"21426":21427,"21427":21428,"21428":21429,"21429":21430,"21430":21431,"21431":21432,"21432":21433,"21433":21434,"21434":21435,"21435":21436,"21436":21437,"21437":21438,"21438":21439,"21439":21440,"21440":21441,"21441":21442,"21442":21443,"21443":21444,"21444":21445,"21445":21446,"21446":21447,"21447":21448,"21448":21449,"21449":21450,"21450":21451,"21451":21452,"21452":21453,"21453":21454,"21454":21455,"21455":21456,"21456":21457,"21457":21458,"21458":21459,"21459":21460,"21460":21461,"21461":21462,"21462":21463,"21463":21464,"21464":21465,"21465":21466,"21466":21467,"21467":21468,"21468":21469,"21469":21470,"21470":21471,"21471":21472,"21472":21473,"21473":21474,"21474":21475,"21475":21476,"21476":21477,"21477":21478,"21478":21479,"21479":21480,"21480":21481,"21481":21482,"21482":21483,"21483":21484,"21484":21485,"21485":21486,"21486":21487,"21487":21488,"21488":21489,"21489":21490,"21490":21491,"21491":21492,"21492":21493,"21493":21494,"21494":21495,"21495":21496,"21496":21497,"21497":21498,"21498":21499,"21499":21500,"21500":21501,"21501":21502,"21502":21503,"21503":21504,"21504":21505,"21505":21506,"21506":21507,"21507":21508,"21508":21509,"21509":21510,"21510":21511,"21511":21512,"21512":21513,"21513":21514,"21514":21515,"21515":21516,"21516":21517,"21517":21518,"21518":21519,"21519":21520,"21520":21521,"21521":21522,"21522":21523,"21523":21524,"21524":21525,"21525":21526,"21526":21527,"21527":21528,"21528":21529,"21529":21530,"21530":21531,"21531":21532,"21532":21533,"21533":21534,"21534":21535,"21535":21536,"21536":21537,"21537":21538,"21538":21539,"21539":21540,"21540":21541,"21541":21542,"21542":21543,"21543":21544,"21544":21545,"21545":21546,"21546":21547,"21547":21548,"21548":21549,"21549":21550,"21550":21551,"21551":21552,"21552":21553,"21553":21554,"21554":21555,"21555":21556,"21556":21557,"21557":21558,"21558":21559,"21559":21560,"21560":21561,"21561":21562,"21562":21563,"21563":21564,"21564":21565,"21565":21566,"21566":21567,"21567":21568,"21568":21569,"21569":21570,"21570":21571,"21571":21572,"21572":21573,"21573":21574,"21574":21575,"21575":21576,"21576":21577,"21577":21578,"21578":21579,"21579":21580,"21580":21581,"21581":21582,"21582":21583,"21583":21584,"21584":21585,"21585":21586,"21586":21587,"21587":21588,"21588":21589,"21589":21590,"21590":21591,"21591":21592,"21592":21593,"21593":21594,"21594":21595,"21595":21596,"21596":21597,"21597":21598,"21598":21599,"21599":21600,"21600":21601,"21601":21602,"21602":21603,"21603":21604,"21604":21605,"21605":21606,"21606":21607,"21607":21608,"21608":21609,"21609":21610,"21610":21611,"21611":21612,"21612":21613,"21613":21614,"21614":21615,"21615":21616,"21616":21617,"21617":21618,"21618":21619,"21619":21620,"21620":21621,"21621":21622,"21622":21623,"21623":21624,"21624":21625,"21625":21626,"21626":21627,"21627":21628,"21628":21629,"21629":21630,"21630":21631,"21631":21632,"21632":21633,"21633":21634,"21634":21635,"21635":21636,"21636":21637,"21637":21638,"21638":21639,"21639":21640,"21640":21641,"21641":21642,"21642":21643,"21643":21644,"21644":21645,"21645":21646,"21646":21647,"21647":21648,"21648":21649,"21649":21650,"21650":21651,"21651":21652,"21652":21653,"21653":21654,"21654":21655,"21655":21656,"21656":21657,"21657":21658,"21658":21659,"21659":21660,"21660":21661,"21661":21662,"21662":21663,"21663":21664,"21664":21665,"21665":21666,"21666":21667,"21667":21668,"21668":21669,"21669":21670,"21670":21671,"21671":21672,"21672":21673,"21673":21674,"21674":21675,"21675":21676,"21676":21677,"21677":21678,"21678":21679,"21679":21680,"21680":21681,"21681":21682,"21682":21683,"21683":21684,"21684":21685,"21685":21686,"21686":21687,"21687":21688,"21688":21689,"21689":21690,"21690":21691,"21691":21692,"21692":21693,"21693":21694,"21694":21695,"21695":21696,"21696":21697,"21697":21698,"21698":21699,"21699":21700,"21700":21701,"21701":21702,"21702":21703,"21703":21704,"21704":21705,"21705":21706,"21706":21707,"21707":21708,"21708":21709,"21709":21710,"21710":21711,"21711":21712,"21712":21713,"21713":21714,"21714":21715,"21715":21716,"21716":21717,"21717":21718,"21718":21719,"21719":21720,"21720":21721,"21721":21722,"21722":21723,"21723":21724,"21724":21725,"21725":21726,"21726":21727,"21727":21728,"21728":21729,"21729":21730,"21730":21731,"21731":21732,"21732":21733,"21733":21734,"21734":21735,"21735":21736,"21736":21737,"21737":21738,"21738":21739,"21739":21740,"21740":21741,"21741":21742,"21742":21743,"21743":21744,"21744":21745,"21745":21746,"21746":21747,"21747":21748,"21748":21749,"21749":21750,"21750":21751,"21751":21752,"21752":21753,"21753":21754,"21754":21755,"21755":21756,"21756":21757,"21757":21758,"21758":21759,"21759":21760,"21760":21761,"21761":21762,"21762":21763,"21763":21764,"21764":21765,"21765":21766,"21766":21767,"21767":21768,"21768":21769,"21769":21770,"21770":21771,"21771":21772,"21772":21773,"21773":21774,"21774":21775,"21775":21776,"21776":21777,"21777":21778,"21778":21779,"21779":21780,"21780":21781,"21781":21782,"21782":21783,"21783":21784,"21784":21785,"21785":21786,"21786":21787,"21787":21788,"21788":21789,"21789":21790,"21790":21791,"21791":21792,"21792":21793,"21793":21794,"21794":21795,"21795":21796,"21796":21797,"21797":21798,"21798":21799,"21799":21800,"21800":21801,"21801":21802,"21802":21803,"21803":21804,"21804":21805,"21805":21806,"21806":21807,"21807":21808,"21808":21809,"21809":21810,"21810":21811,"21811":21812,"21812":21813,"21813":21814,"21814":21815,"21815":21816,"21816":21817,"21817":21818,"21818":21819,"21819":21820,"21820":21821,"21821":21822,"21822":21823,"21823":21824,"21824":21825,"21825":21826,"21826":21827,"21827":21828,"21828":21829,"21829":21830,"21830":21831,"21831":21832,"21832":21833,"21833":21834,"21834":21835,"21835":21836,"21836":21837,"21837":21838,"21838":21839,"21839":21840,"21840":21841,"21841":21842,"21842":21843,"21843":21844,"21844":21845,"21845":21846,"21846":21847,"21847":21848,"21848":21849,"21849":21850,"21850":21851,"21851":21852,"21852":21853,"21853":21854,"21854":21855,"21855":21856,"21856":21857,"21857":21858,"21858":21859,"21859":21860,"21860":21861,"21861":21862,"21862":21863,"21863":21864,"21864":21865,"21865":21866,"21866":21867,"21867":21868,"21868":21869,"21869":21870,"21870":21871,"21871":21872,"21872":21873,"21873":21874,"21874":21875,"21875":21876,"21876":21877,"21877":21878,"21878":21879,"21879":21880,"21880":21881,"21881":21882,"21882":21883,"21883":21884,"21884":21885,"21885":21886,"21886":21887,"21887":21888,"21888":21889,"21889":21890,"21890":21891,"21891":21892,"21892":21893,"21893":21894,"21894":21895,"21895":21896,"21896":21897,"21897":21898,"21898":21899,"21899":21900,"21900":21901,"21901":21902,"21902":21903,"21903":21904,"21904":21905,"21905":21906,"21906":21907,"21907":21908,"21908":21909,"21909":21910,"21910":21911,"21911":21912,"21912":21913,"21913":21914,"21914":21915,"21915":21916,"21916":21917,"21917":21918,"21918":21919,"21919":21920,"21920":21921,"21921":21922,"21922":21923,"21923":21924,"21924":21925,"21925":21926,"21926":21927,"21927":21928,"21928":21929,"21929":21930,"21930":21931,"21931":21932,"21932":21933,"21933":21934,"21934":21935,"21935":21936,"21936":21937,"21937":21938,"21938":21939,"21939":21940,"21940":21941,"21941":21942,"21942":21943,"21943":21944,"21944":21945,"21945":21946,"21946":21947,"21947":21948,"21948":21949,"21949":21950,"21950":21951,"21951":21952,"21952":21953,"21953":21954,"21954":21955,"21955":21956,"21956":21957,"21957":21958,"21958":21959,"21959":21960,"21960":21961,"21961":21962,"21962":21963,"21963":21964,"21964":21965,"21965":21966,"21966":21967,"21967":21968,"21968":21969,"21969":21970,"21970":21971,"21971":21972,"21972":21973,"21973":21974,"21974":21975,"21975":21976,"21976":21977,"21977":21978,"21978":21979,"21979":21980,"21980":21981,"21981":21982,"21982":21983,"21983":21984,"21984":21985,"21985":21986,"21986":21987,"21987":21988,"21988":21989,"21989":21990,"21990":21991,"21991":21992,"21992":21993,"21993":21994,"21994":21995,"21995":21996,"21996":21997,"21997":21998,"21998":21999,"21999":22000,"22000":22001,"22001":22002,"22002":22003,"22003":22004,"22004":22005,"22005":22006,"22006":22007,"22007":22008,"22008":22009,"22009":22010,"22010":22011,"22011":22012,"22012":22013,"22013":22014,"22014":22015,"22015":22016,"22016":22017,"22017":22018,"22018":22019,"22019":22020,"22020":22021,"22021":22022,"22022":22023,"22023":22024,"22024":22025,"22025":22026,"22026":22027,"22027":22028,"22028":22029,"22029":22030,"22030":22031,"22031":22032,"22032":22033,"22033":22034,"22034":22035,"22035":22036,"22036":22037,"22037":22038,"22038":22039,"22039":22040,"22040":22041,"22041":22042,"22042":22043,"22043":22044,"22044":22045,"22045":22046,"22046":22047,"22047":22048,"22048":22049,"22049":22050,"22050":22051,"22051":22052,"22052":22053,"22053":22054,"22054":22055,"22055":22056,"22056":22057,"22057":22058,"22058":22059,"22059":22060,"22060":22061,"22061":22062,"22062":22063,"22063":22064,"22064":22065,"22065":22066,"22066":22067,"22067":22068,"22068":22069,"22069":22070,"22070":22071,"22071":22072,"22072":22073,"22073":22074,"22074":22075,"22075":22076,"22076":22077,"22077":22078,"22078":22079,"22079":22080,"22080":22081,"22081":22082,"22082":22083,"22083":22084,"22084":22085,"22085":22086,"22086":22087,"22087":22088,"22088":22089,"22089":22090,"22090":22091,"22091":22092,"22092":22093,"22093":22094,"22094":22095,"22095":22096,"22096":22097,"22097":22098,"22098":22099,"22099":22100,"22100":22101,"22101":22102,"22102":22103,"22103":22104,"22104":22105,"22105":22106,"22106":22107,"22107":22108,"22108":22109,"22109":22110,"22110":22111,"22111":22112,"22112":22113,"22113":22114,"22114":22115,"22115":22116,"22116":22117,"22117":22118,"22118":22119,"22119":22120,"22120":22121,"22121":22122,"22122":22123,"22123":22124,"22124":22125,"22125":22126,"22126":22127,"22127":22128,"22128":22129,"22129":22130,"22130":22131,"22131":22132,"22132":22133,"22133":22134,"22134":22135,"22135":22136,"22136":22137,"22137":22138,"22138":22139,"22139":22140,"22140":22141,"22141":22142,"22142":22143,"22143":22144,"22144":22145,"22145":22146,"22146":22147,"22147":22148,"22148":22149,"22149":22150,"22150":22151,"22151":22152,"22152":22153,"22153":22154,"22154":22155,"22155":22156,"22156":22157,"22157":22158,"22158":22159,"22159":22160,"22160":22161,"22161":22162,"22162":22163,"22163":22164,"22164":22165,"22165":22166,"22166":22167,"22167":22168,"22168":22169,"22169":22170,"22170":22171,"22171":22172,"22172":22173,"22173":22174,"22174":22175,"22175":22176,"22176":22177,"22177":22178,"22178":22179,"22179":22180,"22180":22181,"22181":22182,"22182":22183,"22183":22184,"22184":22185,"22185":22186,"22186":22187,"22187":22188,"22188":22189,"22189":22190,"22190":22191,"22191":22192,"22192":22193,"22193":22194,"22194":22195,"22195":22196,"22196":22197,"22197":22198,"22198":22199,"22199":22200,"22200":22201,"22201":22202,"22202":22203,"22203":22204,"22204":22205,"22205":22206,"22206":22207,"22207":22208,"22208":22209,"22209":22210,"22210":22211,"22211":22212,"22212":22213,"22213":22214,"22214":22215,"22215":22216,"22216":22217,"22217":22218,"22218":22219,"22219":22220,"22220":22221,"22221":22222,"22222":22223,"22223":22224,"22224":22225,"22225":22226,"22226":22227,"22227":22228,"22228":22229,"22229":22230,"22230":22231,"22231":22232,"22232":22233,"22233":22234,"22234":22235,"22235":22236,"22236":22237,"22237":22238,"22238":22239,"22239":22240,"22240":22241,"22241":22242,"22242":22243,"22243":22244,"22244":22245,"22245":22246,"22246":22247,"22247":22248,"22248":22249,"22249":22250,"22250":22251,"22251":22252,"22252":22253,"22253":22254,"22254":22255,"22255":22256,"22256":22257,"22257":22258,"22258":22259,"22259":22260,"22260":22261,"22261":22262,"22262":22263,"22263":22264,"22264":22265,"22265":22266,"22266":22267,"22267":22268,"22268":22269,"22269":22270,"22270":22271,"22271":22272,"22272":22273,"22273":22274,"22274":22275,"22275":22276,"22276":22277,"22277":22278,"22278":22279,"22279":22280,"22280":22281,"22281":22282,"22282":22283,"22283":22284,"22284":22285,"22285":22286,"22286":22287,"22287":22288,"22288":22289,"22289":22290,"22290":22291,"22291":22292,"22292":22293,"22293":22294,"22294":22295,"22295":22296,"22296":22297,"22297":22298,"22298":22299,"22299":22300,"22300":22301,"22301":22302,"22302":22303,"22303":22304,"22304":22305,"22305":22306,"22306":22307,"22307":22308,"22308":22309,"22309":22310,"22310":22311,"22311":22312,"22312":22313,"22313":22314,"22314":22315,"22315":22316,"22316":22317,"22317":22318,"22318":22319,"22319":22320,"22320":22321,"22321":22322,"22322":22323,"22323":22324,"22324":22325,"22325":22326,"22326":22327,"22327":22328,"22328":22329,"22329":22330,"22330":22331,"22331":22332,"22332":22333,"22333":22334,"22334":22335,"22335":22336,"22336":22337,"22337":22338,"22338":22339,"22339":22340,"22340":22341,"22341":22342,"22342":22343,"22343":22344,"22344":22345,"22345":22346,"22346":22347,"22347":22348,"22348":22349,"22349":22350,"22350":22351,"22351":22352,"22352":22353,"22353":22354,"22354":22355,"22355":22356,"22356":22357,"22357":22358,"22358":22359,"22359":22360,"22360":22361,"22361":22362,"22362":22363,"22363":22364,"22364":22365,"22365":22366,"22366":22367,"22367":22368,"22368":22369,"22369":22370,"22370":22371,"22371":22372,"22372":22373,"22373":22374,"22374":22375,"22375":22376,"22376":22377,"22377":22378,"22378":22379,"22379":22380,"22380":22381,"22381":22382,"22382":22383,"22383":22384,"22384":22385,"22385":22386,"22386":22387,"22387":22388,"22388":22389,"22389":22390,"22390":22391,"22391":22392,"22392":22393,"22393":22394,"22394":22395,"22395":22396,"22396":22397,"22397":22398,"22398":22399,"22399":22400,"22400":22401,"22401":22402,"22402":22403,"22403":22404,"22404":22405,"22405":22406,"22406":22407,"22407":22408,"22408":22409,"22409":22410,"22410":22411,"22411":22412,"22412":22413,"22413":22414,"22414":22415,"22415":22416,"22416":22417,"22417":22418,"22418":22419,"22419":22420,"22420":22421,"22421":22422,"22422":22423,"22423":22424,"22424":22425,"22425":22426,"22426":22427,"22427":22428,"22428":22429,"22429":22430,"22430":22431,"22431":22432,"22432":22433,"22433":22434,"22434":22435,"22435":22436,"22436":22437,"22437":22438,"22438":22439,"22439":22440,"22440":22441,"22441":22442,"22442":22443,"22443":22444,"22444":22445,"22445":22446,"22446":22447,"22447":22448,"22448":22449,"22449":22450,"22450":22451,"22451":22452,"22452":22453,"22453":22454,"22454":22455,"22455":22456,"22456":22457,"22457":22458,"22458":22459,"22459":22460,"22460":22461,"22461":22462,"22462":22463,"22463":22464,"22464":22465,"22465":22466,"22466":22467,"22467":22468,"22468":22469,"22469":22470,"22470":22471,"22471":22472,"22472":22473,"22473":22474,"22474":22475,"22475":22476,"22476":22477,"22477":22478,"22478":22479,"22479":22480,"22480":22481,"22481":22482,"22482":22483,"22483":22484,"22484":22485,"22485":22486,"22486":22487,"22487":22488,"22488":22489,"22489":22490,"22490":22491,"22491":22492,"22492":22493,"22493":22494,"22494":22495,"22495":22496,"22496":22497,"22497":22498,"22498":22499,"22499":22500,"22500":22501,"22501":22502,"22502":22503,"22503":22504,"22504":22505,"22505":22506,"22506":22507,"22507":22508,"22508":22509,"22509":22510,"22510":22511,"22511":22512,"22512":22513,"22513":22514,"22514":22515,"22515":22516,"22516":22517,"22517":22518,"22518":22519,"22519":22520,"22520":22521,"22521":22522,"22522":22523,"22523":22524,"22524":22525,"22525":22526,"22526":22527,"22527":22528,"22528":22529,"22529":22530,"22530":22531,"22531":22532,"22532":22533,"22533":22534,"22534":22535,"22535":22536,"22536":22537,"22537":22538,"22538":22539,"22539":22540,"22540":22541,"22541":22542,"22542":22543,"22543":22544,"22544":22545,"22545":22546,"22546":22547,"22547":22548,"22548":22549,"22549":22550,"22550":22551,"22551":22552,"22552":22553,"22553":22554,"22554":22555,"22555":22556,"22556":22557,"22557":22558,"22558":22559,"22559":22560,"22560":22561,"22561":22562,"22562":22563,"22563":22564,"22564":22565,"22565":22566,"22566":22567,"22567":22568,"22568":22569,"22569":22570,"22570":22571,"22571":22572,"22572":22573,"22573":22574,"22574":22575,"22575":22576,"22576":22577,"22577":22578,"22578":22579,"22579":22580,"22580":22581,"22581":22582,"22582":22583,"22583":22584,"22584":22585,"22585":22586,"22586":22587,"22587":22588,"22588":22589,"22589":22590,"22590":22591,"22591":22592,"22592":22593,"22593":22594,"22594":22595,"22595":22596,"22596":22597,"22597":22598,"22598":22599,"22599":22600,"22600":22601,"22601":22602,"22602":22603,"22603":22604,"22604":22605,"22605":22606,"22606":22607,"22607":22608,"22608":22609,"22609":22610,"22610":22611,"22611":22612,"22612":22613,"22613":22614,"22614":22615,"22615":22616,"22616":22617,"22617":22618,"22618":22619,"22619":22620,"22620":22621,"22621":22622,"22622":22623,"22623":22624,"22624":22625,"22625":22626,"22626":22627,"22627":22628,"22628":22629,"22629":22630,"22630":22631,"22631":22632,"22632":22633,"22633":22634,"22634":22635,"22635":22636,"22636":22637,"22637":22638,"22638":22639,"22639":22640,"22640":22641,"22641":22642,"22642":22643,"22643":22644,"22644":22645,"22645":22646,"22646":22647,"22647":22648,"22648":22649,"22649":22650,"22650":22651,"22651":22652,"22652":22653,"22653":22654,"22654":22655,"22655":22656,"22656":22657,"22657":22658,"22658":22659,"22659":22660,"22660":22661,"22661":22662,"22662":22663,"22663":22664,"22664":22665,"22665":22666,"22666":22667,"22667":22668,"22668":22669,"22669":22670,"22670":22671,"22671":22672,"22672":22673,"22673":22674,"22674":22675,"22675":22676,"22676":22677,"22677":22678,"22678":22679,"22679":22680,"22680":22681,"22681":22682,"22682":22683,"22683":22684,"22684":22685,"22685":22686,"22686":22687,"22687":22688,"22688":22689,"22689":22690,"22690":22691,"22691":22692,"22692":22693,"22693":22694,"22694":22695,"22695":22696,"22696":22697,"22697":22698,"22698":22699,"22699":22700,"22700":22701,"22701":22702,"22702":22703,"22703":22704,"22704":22705,"22705":22706,"22706":22707,"22707":22708,"22708":22709,"22709":22710,"22710":22711,"22711":22712,"22712":22713,"22713":22714,"22714":22715,"22715":22716,"22716":22717,"22717":22718,"22718":22719,"22719":22720,"22720":22721,"22721":22722,"22722":22723,"22723":22724,"22724":22725,"22725":22726,"22726":22727,"22727":22728,"22728":22729,"22729":22730,"22730":22731,"22731":22732,"22732":22733,"22733":22734,"22734":22735,"22735":22736,"22736":22737,"22737":22738,"22738":22739,"22739":22740,"22740":22741,"22741":22742,"22742":22743,"22743":22744,"22744":22745,"22745":22746,"22746":22747,"22747":22748,"22748":22749,"22749":22750,"22750":22751,"22751":22752,"22752":22753,"22753":22754,"22754":22755,"22755":22756,"22756":22757,"22757":22758,"22758":22759,"22759":22760,"22760":22761,"22761":22762,"22762":22763,"22763":22764,"22764":22765,"22765":22766,"22766":22767,"22767":22768,"22768":22769,"22769":22770,"22770":22771,"22771":22772,"22772":22773,"22773":22774,"22774":22775,"22775":22776,"22776":22777,"22777":22778,"22778":22779,"22779":22780,"22780":22781,"22781":22782,"22782":22783,"22783":22784,"22784":22785,"22785":22786,"22786":22787,"22787":22788,"22788":22789,"22789":22790,"22790":22791,"22791":22792,"22792":22793,"22793":22794,"22794":22795,"22795":22796,"22796":22797,"22797":22798,"22798":22799,"22799":22800,"22800":22801,"22801":22802,"22802":22803,"22803":22804,"22804":22805,"22805":22806,"22806":22807,"22807":22808,"22808":22809,"22809":22810,"22810":22811,"22811":22812,"22812":22813,"22813":22814,"22814":22815,"22815":22816,"22816":22817,"22817":22818,"22818":22819,"22819":22820,"22820":22821,"22821":22822,"22822":22823,"22823":22824,"22824":22825,"22825":22826,"22826":22827,"22827":22828,"22828":22829,"22829":22830,"22830":22831,"22831":22832,"22832":22833,"22833":22834,"22834":22835,"22835":22836,"22836":22837,"22837":22838,"22838":22839,"22839":22840,"22840":22841,"22841":22842,"22842":22843,"22843":22844,"22844":22845,"22845":22846,"22846":22847,"22847":22848,"22848":22849,"22849":22850,"22850":22851,"22851":22852,"22852":22853,"22853":22854,"22854":22855,"22855":22856,"22856":22857,"22857":22858,"22858":22859,"22859":22860,"22860":22861,"22861":22862,"22862":22863,"22863":22864,"22864":22865,"22865":22866,"22866":22867,"22867":22868,"22868":22869,"22869":22870,"22870":22871,"22871":22872,"22872":22873,"22873":22874,"22874":22875,"22875":22876,"22876":22877,"22877":22878,"22878":22879,"22879":22880,"22880":22881,"22881":22882,"22882":22883,"22883":22884,"22884":22885,"22885":22886,"22886":22887,"22887":22888,"22888":22889,"22889":22890,"22890":22891,"22891":22892,"22892":22893,"22893":22894,"22894":22895,"22895":22896,"22896":22897,"22897":22898,"22898":22899,"22899":22900,"22900":22901,"22901":22902,"22902":22903,"22903":22904,"22904":22905,"22905":22906,"22906":22907,"22907":22908,"22908":22909,"22909":22910,"22910":22911,"22911":22912,"22912":22913,"22913":22914,"22914":22915,"22915":22916,"22916":22917,"22917":22918,"22918":22919,"22919":22920,"22920":22921,"22921":22922,"22922":22923,"22923":22924,"22924":22925,"22925":22926,"22926":22927,"22927":22928,"22928":22929,"22929":22930,"22930":22931,"22931":22932,"22932":22933,"22933":22934,"22934":22935,"22935":22936,"22936":22937,"22937":22938,"22938":22939,"22939":22940,"22940":22941,"22941":22942,"22942":22943,"22943":22944,"22944":22945,"22945":22946,"22946":22947,"22947":22948,"22948":22949,"22949":22950,"22950":22951,"22951":22952,"22952":22953,"22953":22954,"22954":22955,"22955":22956,"22956":22957,"22957":22958,"22958":22959,"22959":22960,"22960":22961,"22961":22962,"22962":22963,"22963":22964,"22964":22965,"22965":22966,"22966":22967,"22967":22968,"22968":22969,"22969":22970,"22970":22971,"22971":22972,"22972":22973,"22973":22974,"22974":22975,"22975":22976,"22976":22977,"22977":22978,"22978":22979,"22979":22980,"22980":22981,"22981":22982,"22982":22983,"22983":22984,"22984":22985,"22985":22986,"22986":22987,"22987":22988,"22988":22989,"22989":22990,"22990":22991,"22991":22992,"22992":22993,"22993":22994,"22994":22995,"22995":22996,"22996":22997,"22997":22998,"22998":22999,"22999":23000,"23000":23001,"23001":23002,"23002":23003,"23003":23004,"23004":23005,"23005":23006,"23006":23007,"23007":23008,"23008":23009,"23009":23010,"23010":23011,"23011":23012,"23012":23013,"23013":23014,"23014":23015,"23015":23016,"23016":23017,"23017":23018,"23018":23019,"23019":23020,"23020":23021,"23021":23022,"23022":23023,"23023":23024,"23024":23025,"23025":23026,"23026":23027,"23027":23028,"23028":23029,"23029":23030,"23030":23031,"23031":23032,"23032":23033,"23033":23034,"23034":23035,"23035":23036,"23036":23037,"23037":23038,"23038":23039,"23039":23040,"23040":23041,"23041":23042,"23042":23043,"23043":23044,"23044":23045,"23045":23046,"23046":23047,"23047":23048,"23048":23049,"23049":23050,"23050":23051,"23051":23052,"23052":23053,"23053":23054,"23054":23055,"23055":23056,"23056":23057,"23057":23058,"23058":23059,"23059":23060,"23060":23061,"23061":23062,"23062":23063,"23063":23064,"23064":23065,"23065":23066,"23066":23067,"23067":23068,"23068":23069,"23069":23070,"23070":23071,"23071":23072,"23072":23073,"23073":23074,"23074":23075,"23075":23076,"23076":23077,"23077":23078,"23078":23079,"23079":23080,"23080":23081,"23081":23082,"23082":23083,"23083":23084,"23084":23085,"23085":23086,"23086":23087,"23087":23088,"23088":23089,"23089":23090,"23090":23091,"23091":23092,"23092":23093,"23093":23094,"23094":23095,"23095":23096,"23096":23097,"23097":23098,"23098":23099,"23099":23100,"23100":23101,"23101":23102,"23102":23103,"23103":23104,"23104":23105,"23105":23106,"23106":23107,"23107":23108,"23108":23109,"23109":23110,"23110":23111,"23111":23112,"23112":23113,"23113":23114,"23114":23115,"23115":23116,"23116":23117,"23117":23118,"23118":23119,"23119":23120,"23120":23121,"23121":23122,"23122":23123,"23123":23124,"23124":23125,"23125":23126,"23126":23127,"23127":23128,"23128":23129,"23129":23130,"23130":23131,"23131":23132,"23132":23133,"23133":23134,"23134":23135,"23135":23136,"23136":23137,"23137":23138,"23138":23139,"23139":23140,"23140":23141,"23141":23142,"23142":23143,"23143":23144,"23144":23145,"23145":23146,"23146":23147,"23147":23148,"23148":23149,"23149":23150,"23150":23151,"23151":23152,"23152":23153,"23153":23154,"23154":23155,"23155":23156,"23156":23157,"23157":23158,"23158":23159,"23159":23160,"23160":23161,"23161":23162,"23162":23163,"23163":23164,"23164":23165,"23165":23166,"23166":23167,"23167":23168,"23168":23169,"23169":23170,"23170":23171,"23171":23172,"23172":23173,"23173":23174,"23174":23175,"23175":23176,"23176":23177,"23177":23178,"23178":23179,"23179":23180,"23180":23181,"23181":23182,"23182":23183,"23183":23184,"23184":23185,"23185":23186,"23186":23187,"23187":23188,"23188":23189,"23189":23190,"23190":23191,"23191":23192,"23192":23193,"23193":23194,"23194":23195,"23195":23196,"23196":23197,"23197":23198,"23198":23199,"23199":23200,"23200":23201,"23201":23202,"23202":23203,"23203":23204,"23204":23205,"23205":23206,"23206":23207,"23207":23208,"23208":23209,"23209":23210,"23210":23211,"23211":23212,"23212":23213,"23213":23214,"23214":23215,"23215":23216,"23216":23217,"23217":23218,"23218":23219,"23219":23220,"23220":23221,"23221":23222,"23222":23223,"23223":23224,"23224":23225,"23225":23226,"23226":23227,"23227":23228,"23228":23229,"23229":23230,"23230":23231,"23231":23232,"23232":23233,"23233":23234,"23234":23235,"23235":23236,"23236":23237,"23237":23238,"23238":23239,"23239":23240,"23240":23241,"23241":23242,"23242":23243,"23243":23244,"23244":23245,"23245":23246,"23246":23247,"23247":23248,"23248":23249,"23249":23250,"23250":23251,"23251":23252,"23252":23253,"23253":23254,"23254":23255,"23255":23256,"23256":23257,"23257":23258,"23258":23259,"23259":23260,"23260":23261,"23261":23262,"23262":23263,"23263":23264,"23264":23265,"23265":23266,"23266":23267,"23267":23268,"23268":23269,"23269":23270,"23270":23271,"23271":23272,"23272":23273,"23273":23274,"23274":23275,"23275":23276,"23276":23277,"23277":23278,"23278":23279,"23279":23280,"23280":23281,"23281":23282,"23282":23283,"23283":23284,"23284":23285,"23285":23286,"23286":23287,"23287":23288,"23288":23289,"23289":23290,"23290":23291,"23291":23292,"23292":23293,"23293":23294,"23294":23295,"23295":23296,"23296":23297,"23297":23298,"23298":23299,"23299":23300,"23300":23301,"23301":23302,"23302":23303,"23303":23304,"23304":23305,"23305":23306,"23306":23307,"23307":23308,"23308":23309,"23309":23310,"23310":23311,"23311":23312,"23312":23313,"23313":23314,"23314":23315,"23315":23316,"23316":23317,"23317":23318,"23318":23319,"23319":23320,"23320":23321,"23321":23322,"23322":23323,"23323":23324,"23324":23325,"23325":23326,"23326":23327,"23327":23328,"23328":23329,"23329":23330,"23330":23331,"23331":23332,"23332":23333,"23333":23334,"23334":23335,"23335":23336,"23336":23337,"23337":23338,"23338":23339,"23339":23340,"23340":23341,"23341":23342,"23342":23343,"23343":23344,"23344":23345,"23345":23346,"23346":23347,"23347":23348,"23348":23349,"23349":23350,"23350":23351,"23351":23352,"23352":23353,"23353":23354,"23354":23355,"23355":23356,"23356":23357,"23357":23358,"23358":23359,"23359":23360,"23360":23361,"23361":23362,"23362":23363,"23363":23364,"23364":23365,"23365":23366,"23366":23367,"23367":23368,"23368":23369,"23369":23370,"23370":23371,"23371":23372,"23372":23373,"23373":23374,"23374":23375,"23375":23376,"23376":23377,"23377":23378,"23378":23379,"23379":23380,"23380":23381,"23381":23382,"23382":23383,"23383":23384,"23384":23385,"23385":23386,"23386":23387,"23387":23388,"23388":23389,"23389":23390,"23390":23391,"23391":23392,"23392":23393,"23393":23394,"23394":23395,"23395":23396,"23396":23397,"23397":23398,"23398":23399,"23399":23400,"23400":23401,"23401":23402,"23402":23403,"23403":23404,"23404":23405,"23405":23406,"23406":23407,"23407":23408,"23408":23409,"23409":23410,"23410":23411,"23411":23412,"23412":23413,"23413":23414,"23414":23415,"23415":23416,"23416":23417,"23417":23418,"23418":23419,"23419":23420,"23420":23421,"23421":23422,"23422":23423,"23423":23424,"23424":23425,"23425":23426,"23426":23427,"23427":23428,"23428":23429,"23429":23430,"23430":23431,"23431":23432,"23432":23433,"23433":23434,"23434":23435,"23435":23436,"23436":23437,"23437":23438,"23438":23439,"23439":23440,"23440":23441,"23441":23442,"23442":23443,"23443":23444,"23444":23445,"23445":23446,"23446":23447,"23447":23448,"23448":23449,"23449":23450,"23450":23451,"23451":23452,"23452":23453,"23453":23454,"23454":23455,"23455":23456,"23456":23457,"23457":23458,"23458":23459,"23459":23460,"23460":23461,"23461":23462,"23462":23463,"23463":23464,"23464":23465,"23465":23466,"23466":23467,"23467":23468,"23468":23469,"23469":23470,"23470":23471,"23471":23472,"23472":23473,"23473":23474,"23474":23475,"23475":23476,"23476":23477,"23477":23478,"23478":23479,"23479":23480,"23480":23481,"23481":23482,"23482":23483,"23483":23484,"23484":23485,"23485":23486,"23486":23487,"23487":23488,"23488":23489,"23489":23490,"23490":23491,"23491":23492,"23492":23493,"23493":23494,"23494":23495,"23495":23496,"23496":23497,"23497":23498,"23498":23499,"23499":23500,"23500":23501,"23501":23502,"23502":23503,"23503":23504,"23504":23505,"23505":23506,"23506":23507,"23507":23508,"23508":23509,"23509":23510,"23510":23511,"23511":23512,"23512":23513,"23513":23514,"23514":23515,"23515":23516,"23516":23517,"23517":23518,"23518":23519,"23519":23520,"23520":23521,"23521":23522,"23522":23523,"23523":23524,"23524":23525,"23525":23526,"23526":23527,"23527":23528,"23528":23529,"23529":23530,"23530":23531,"23531":23532,"23532":23533,"23533":23534,"23534":23535,"23535":23536,"23536":23537,"23537":23538,"23538":23539,"23539":23540,"23540":23541,"23541":23542,"23542":23543,"23543":23544,"23544":23545,"23545":23546,"23546":23547,"23547":23548,"23548":23549,"23549":23550,"23550":23551,"23551":23552,"23552":23553,"23553":23554,"23554":23555,"23555":23556,"23556":23557,"23557":23558,"23558":23559,"23559":23560,"23560":23561,"23561":23562,"23562":23563,"23563":23564,"23564":23565,"23565":23566,"23566":23567,"23567":23568,"23568":23569,"23569":23570,"23570":23571,"23571":23572,"23572":23573,"23573":23574,"23574":23575,"23575":23576,"23576":23577,"23577":23578,"23578":23579,"23579":23580,"23580":23581,"23581":23582,"23582":23583,"23583":23584,"23584":23585,"23585":23586,"23586":23587,"23587":23588,"23588":23589,"23589":23590,"23590":23591,"23591":23592,"23592":23593,"23593":23594,"23594":23595,"23595":23596,"23596":23597,"23597":23598,"23598":23599,"23599":23600,"23600":23601,"23601":23602,"23602":23603,"23603":23604,"23604":23605,"23605":23606,"23606":23607,"23607":23608,"23608":23609,"23609":23610,"23610":23611,"23611":23612,"23612":23613,"23613":23614,"23614":23615,"23615":23616,"23616":23617,"23617":23618,"23618":23619,"23619":23620,"23620":23621,"23621":23622,"23622":23623,"23623":23624,"23624":23625,"23625":23626,"23626":23627,"23627":23628,"23628":23629,"23629":23630,"23630":23631,"23631":23632,"23632":23633,"23633":23634,"23634":23635,"23635":23636,"23636":23637,"23637":23638,"23638":23639,"23639":23640,"23640":23641,"23641":23642,"23642":23643,"23643":23644,"23644":23645,"23645":23646,"23646":23647,"23647":23648,"23648":23649,"23649":23650,"23650":23651,"23651":23652,"23652":23653,"23653":23654,"23654":23655,"23655":23656,"23656":23657,"23657":23658,"23658":23659,"23659":23660,"23660":23661,"23661":23662,"23662":23663,"23663":23664,"23664":23665,"23665":23666,"23666":23667,"23667":23668,"23668":23669,"23669":23670,"23670":23671,"23671":23672,"23672":23673,"23673":23674,"23674":23675,"23675":23676,"23676":23677,"23677":23678,"23678":23679,"23679":23680,"23680":23681,"23681":23682,"23682":23683,"23683":23684,"23684":23685,"23685":23686,"23686":23687,"23687":23688,"23688":23689,"23689":23690,"23690":23691,"23691":23692,"23692":23693,"23693":23694,"23694":23695,"23695":23696,"23696":23697,"23697":23698,"23698":23699,"23699":23700,"23700":23701,"23701":23702,"23702":23703,"23703":23704,"23704":23705,"23705":23706,"23706":23707,"23707":23708,"23708":23709,"23709":23710,"23710":23711,"23711":23712,"23712":23713,"23713":23714,"23714":23715,"23715":23716,"23716":23717,"23717":23718,"23718":23719,"23719":23720,"23720":23721,"23721":23722,"23722":23723,"23723":23724,"23724":23725,"23725":23726,"23726":23727,"23727":23728,"23728":23729,"23729":23730,"23730":23731,"23731":23732,"23732":23733,"23733":23734,"23734":23735,"23735":23736,"23736":23737,"23737":23738,"23738":23739,"23739":23740,"23740":23741,"23741":23742,"23742":23743,"23743":23744,"23744":23745,"23745":23746,"23746":23747,"23747":23748,"23748":23749,"23749":23750,"23750":23751,"23751":23752,"23752":23753,"23753":23754,"23754":23755,"23755":23756,"23756":23757,"23757":23758,"23758":23759,"23759":23760,"23760":23761,"23761":23762,"23762":23763,"23763":23764,"23764":23765,"23765":23766,"23766":23767,"23767":23768,"23768":23769,"23769":23770,"23770":23771,"23771":23772,"23772":23773,"23773":23774,"23774":23775,"23775":23776,"23776":23777,"23777":23778,"23778":23779,"23779":23780,"23780":23781,"23781":23782,"23782":23783,"23783":23784,"23784":23785,"23785":23786,"23786":23787,"23787":23788,"23788":23789,"23789":23790,"23790":23791,"23791":23792,"23792":23793,"23793":23794,"23794":23795,"23795":23796,"23796":23797,"23797":23798,"23798":23799,"23799":23800,"23800":23801,"23801":23802,"23802":23803,"23803":23804,"23804":23805,"23805":23806,"23806":23807,"23807":23808,"23808":23809,"23809":23810,"23810":23811,"23811":23812,"23812":23813,"23813":23814,"23814":23815,"23815":23816,"23816":23817,"23817":23818,"23818":23819,"23819":23820,"23820":23821,"23821":23822,"23822":23823,"23823":23824,"23824":23825,"23825":23826,"23826":23827,"23827":23828,"23828":23829,"23829":23830,"23830":23831,"23831":23832,"23832":23833,"23833":23834,"23834":23835,"23835":23836,"23836":23837,"23837":23838,"23838":23839,"23839":23840,"23840":23841,"23841":23842,"23842":23843,"23843":23844,"23844":23845,"23845":23846,"23846":23847,"23847":23848,"23848":23849,"23849":23850,"23850":23851,"23851":23852,"23852":23853,"23853":23854,"23854":23855,"23855":23856,"23856":23857,"23857":23858,"23858":23859,"23859":23860,"23860":23861,"23861":23862,"23862":23863,"23863":23864,"23864":23865,"23865":23866,"23866":23867,"23867":23868,"23868":23869,"23869":23870,"23870":23871,"23871":23872,"23872":23873,"23873":23874,"23874":23875,"23875":23876,"23876":23877,"23877":23878,"23878":23879,"23879":23880,"23880":23881,"23881":23882,"23882":23883,"23883":23884,"23884":23885,"23885":23886,"23886":23887,"23887":23888,"23888":23889,"23889":23890,"23890":23891,"23891":23892,"23892":23893,"23893":23894,"23894":23895,"23895":23896,"23896":23897,"23897":23898,"23898":23899,"23899":23900,"23900":23901,"23901":23902,"23902":23903,"23903":23904,"23904":23905,"23905":23906,"23906":23907,"23907":23908,"23908":23909,"23909":23910,"23910":23911,"23911":23912,"23912":23913,"23913":23914,"23914":23915,"23915":23916,"23916":23917,"23917":23918,"23918":23919,"23919":23920,"23920":23921,"23921":23922,"23922":23923,"23923":23924,"23924":23925,"23925":23926,"23926":23927,"23927":23928,"23928":23929,"23929":23930,"23930":23931,"23931":23932,"23932":23933,"23933":23934,"23934":23935,"23935":23936,"23936":23937,"23937":23938,"23938":23939,"23939":23940,"23940":23941,"23941":23942,"23942":23943,"23943":23944,"23944":23945,"23945":23946,"23946":23947,"23947":23948,"23948":23949,"23949":23950,"23950":23951,"23951":23952,"23952":23953,"23953":23954,"23954":23955,"23955":23956,"23956":23957,"23957":23958,"23958":23959,"23959":23960,"23960":23961,"23961":23962,"23962":23963,"23963":23964,"23964":23965,"23965":23966,"23966":23967,"23967":23968,"23968":23969,"23969":23970,"23970":23971,"23971":23972,"23972":23973,"23973":23974,"23974":23975,"23975":23976,"23976":23977,"23977":23978,"23978":23979,"23979":23980,"23980":23981,"23981":23982,"23982":23983,"23983":23984,"23984":23985,"23985":23986,"23986":23987,"23987":23988,"23988":23989,"23989":23990,"23990":23991,"23991":23992,"23992":23993,"23993":23994,"23994":23995,"23995":23996,"23996":23997,"23997":23998,"23998":23999,"23999":24000,"24000":24001,"24001":24002,"24002":24003,"24003":24004,"24004":24005,"24005":24006,"24006":24007,"24007":24008,"24008":24009,"24009":24010,"24010":24011,"24011":24012,"24012":24013,"24013":24014,"24014":24015,"24015":24016,"24016":24017,"24017":24018,"24018":24019,"24019":24020,"24020":24021,"24021":24022,"24022":24023,"24023":24024,"24024":24025,"24025":24026,"24026":24027,"24027":24028,"24028":24029,"24029":24030,"24030":24031,"24031":24032,"24032":24033,"24033":24034,"24034":24035,"24035":24036,"24036":24037,"24037":24038,"24038":24039,"24039":24040,"24040":24041,"24041":24042,"24042":24043,"24043":24044,"24044":24045,"24045":24046,"24046":24047,"24047":24048,"24048":24049,"24049":24050,"24050":24051,"24051":24052,"24052":24053,"24053":24054,"24054":24055,"24055":24056,"24056":24057,"24057":24058,"24058":24059,"24059":24060,"24060":24061,"24061":24062,"24062":24063,"24063":24064,"24064":24065,"24065":24066,"24066":24067,"24067":24068,"24068":24069,"24069":24070,"24070":24071,"24071":24072,"24072":24073,"24073":24074,"24074":24075,"24075":24076,"24076":24077,"24077":24078,"24078":24079,"24079":24080,"24080":24081,"24081":24082,"24082":24083,"24083":24084,"24084":24085,"24085":24086,"24086":24087,"24087":24088,"24088":24089,"24089":24090,"24090":24091,"24091":24092,"24092":24093,"24093":24094,"24094":24095,"24095":24096,"24096":24097,"24097":24098,"24098":24099,"24099":24100,"24100":24101,"24101":24102,"24102":24103,"24103":24104,"24104":24105,"24105":24106,"24106":24107,"24107":24108,"24108":24109,"24109":24110,"24110":24111,"24111":24112,"24112":24113,"24113":24114,"24114":24115,"24115":24116,"24116":24117,"24117":24118,"24118":24119,"24119":24120,"24120":24121,"24121":24122,"24122":24123,"24123":24124,"24124":24125,"24125":24126,"24126":24127,"24127":24128,"24128":24129,"24129":24130,"24130":24131,"24131":24132,"24132":24133,"24133":24134,"24134":24135,"24135":24136,"24136":24137,"24137":24138,"24138":24139,"24139":24140,"24140":24141,"24141":24142,"24142":24143,"24143":24144,"24144":24145,"24145":24146,"24146":24147,"24147":24148,"24148":24149,"24149":24150,"24150":24151,"24151":24152,"24152":24153,"24153":24154,"24154":24155,"24155":24156,"24156":24157,"24157":24158,"24158":24159,"24159":24160,"24160":24161,"24161":24162,"24162":24163,"24163":24164,"24164":24165,"24165":24166,"24166":24167,"24167":24168,"24168":24169,"24169":24170,"24170":24171,"24171":24172,"24172":24173,"24173":24174,"24174":24175,"24175":24176,"24176":24177,"24177":24178,"24178":24179,"24179":24180,"24180":24181,"24181":24182,"24182":24183,"24183":24184,"24184":24185,"24185":24186,"24186":24187,"24187":24188,"24188":24189,"24189":24190,"24190":24191,"24191":24192,"24192":24193,"24193":24194,"24194":24195,"24195":24196,"24196":24197,"24197":24198,"24198":24199,"24199":24200,"24200":24201,"24201":24202,"24202":24203,"24203":24204,"24204":24205,"24205":24206,"24206":24207,"24207":24208,"24208":24209,"24209":24210,"24210":24211,"24211":24212,"24212":24213,"24213":24214,"24214":24215,"24215":24216,"24216":24217,"24217":24218,"24218":24219,"24219":24220,"24220":24221,"24221":24222,"24222":24223,"24223":24224,"24224":24225,"24225":24226,"24226":24227,"24227":24228,"24228":24229,"24229":24230,"24230":24231,"24231":24232,"24232":24233,"24233":24234,"24234":24235,"24235":24236,"24236":24237,"24237":24238,"24238":24239,"24239":24240,"24240":24241,"24241":24242,"24242":24243,"24243":24244,"24244":24245,"24245":24246,"24246":24247,"24247":24248,"24248":24249,"24249":24250,"24250":24251,"24251":24252,"24252":24253,"24253":24254,"24254":24255,"24255":24256,"24256":24257,"24257":24258,"24258":24259,"24259":24260,"24260":24261,"24261":24262,"24262":24263,"24263":24264,"24264":24265,"24265":24266,"24266":24267,"24267":24268,"24268":24269,"24269":24270,"24270":24271,"24271":24272,"24272":24273,"24273":24274,"24274":24275,"24275":24276,"24276":24277,"24277":24278,"24278":24279,"24279":24280,"24280":24281,"24281":24282,"24282":24283,"24283":24284,"24284":24285,"24285":24286,"24286":24287,"24287":24288,"24288":24289,"24289":24290,"24290":24291,"24291":24292,"24292":24293,"24293":24294,"24294":24295,"24295":24296,"24296":24297,"24297":24298,"24298":24299,"24299":24300,"24300":24301,"24301":24302,"24302":24303,"24303":24304,"24304":24305,"24305":24306,"24306":24307,"24307":24308,"24308":24309,"24309":24310,"24310":24311,"24311":24312,"24312":24313,"24313":24314,"24314":24315,"24315":24316,"24316":24317,"24317":24318,"24318":24319,"24319":24320,"24320":24321,"24321":24322,"24322":24323,"24323":24324,"24324":24325,"24325":24326,"24326":24327,"24327":24328,"24328":24329,"24329":24330,"24330":24331,"24331":24332,"24332":24333,"24333":24334,"24334":24335,"24335":24336,"24336":24337,"24337":24338,"24338":24339,"24339":24340,"24340":24341,"24341":24342,"24342":24343,"24343":24344,"24344":24345,"24345":24346,"24346":24347,"24347":24348,"24348":24349,"24349":24350,"24350":24351,"24351":24352,"24352":24353,"24353":24354,"24354":24355,"24355":24356,"24356":24357,"24357":24358,"24358":24359,"24359":24360,"24360":24361,"24361":24362,"24362":24363,"24363":24364,"24364":24365,"24365":24366,"24366":24367,"24367":24368,"24368":24369,"24369":24370,"24370":24371,"24371":24372,"24372":24373,"24373":24374,"24374":24375,"24375":24376,"24376":24377,"24377":24378,"24378":24379,"24379":24380,"24380":24381,"24381":24382,"24382":24383,"24383":24384,"24384":24385,"24385":24386,"24386":24387,"24387":24388,"24388":24389,"24389":24390,"24390":24391,"24391":24392,"24392":24393,"24393":24394,"24394":24395,"24395":24396,"24396":24397,"24397":24398,"24398":24399,"24399":24400,"24400":24401,"24401":24402,"24402":24403,"24403":24404,"24404":24405,"24405":24406,"24406":24407,"24407":24408,"24408":24409,"24409":24410,"24410":24411,"24411":24412,"24412":24413,"24413":24414,"24414":24415,"24415":24416,"24416":24417,"24417":24418,"24418":24419,"24419":24420,"24420":24421,"24421":24422,"24422":24423,"24423":24424,"24424":24425,"24425":24426,"24426":24427,"24427":24428,"24428":24429,"24429":24430,"24430":24431,"24431":24432,"24432":24433,"24433":24434,"24434":24435,"24435":24436,"24436":24437,"24437":24438,"24438":24439,"24439":24440,"24440":24441,"24441":24442,"24442":24443,"24443":24444,"24444":24445,"24445":24446,"24446":24447,"24447":24448,"24448":24449,"24449":24450,"24450":24451,"24451":24452,"24452":24453,"24453":24454,"24454":24455,"24455":24456,"24456":24457,"24457":24458,"24458":24459,"24459":24460,"24460":24461,"24461":24462,"24462":24463,"24463":24464,"24464":24465,"24465":24466,"24466":24467,"24467":24468,"24468":24469,"24469":24470,"24470":24471,"24471":24472,"24472":24473,"24473":24474,"24474":24475,"24475":24476,"24476":24477,"24477":24478,"24478":24479,"24479":24480,"24480":24481,"24481":24482,"24482":24483,"24483":24484,"24484":24485,"24485":24486,"24486":24487,"24487":24488,"24488":24489,"24489":24490,"24490":24491,"24491":24492,"24492":24493,"24493":24494,"24494":24495,"24495":24496,"24496":24497,"24497":24498,"24498":24499,"24499":24500,"24500":24501,"24501":24502,"24502":24503,"24503":24504,"24504":24505,"24505":24506,"24506":24507,"24507":24508,"24508":24509,"24509":24510,"24510":24511,"24511":24512,"24512":24513,"24513":24514,"24514":24515,"24515":24516,"24516":24517,"24517":24518,"24518":24519,"24519":24520,"24520":24521,"24521":24522,"24522":24523,"24523":24524,"24524":24525,"24525":24526,"24526":24527,"24527":24528,"24528":24529,"24529":24530,"24530":24531,"24531":24532,"24532":24533,"24533":24534,"24534":24535,"24535":24536,"24536":24537,"24537":24538,"24538":24539,"24539":24540,"24540":24541,"24541":24542,"24542":24543,"24543":24544,"24544":24545,"24545":24546,"24546":24547,"24547":24548,"24548":24549,"24549":24550,"24550":24551,"24551":24552,"24552":24553,"24553":24554,"24554":24555,"24555":24556,"24556":24557,"24557":24558,"24558":24559,"24559":24560,"24560":24561,"24561":24562,"24562":24563,"24563":24564,"24564":24565,"24565":24566,"24566":24567,"24567":24568,"24568":24569,"24569":24570,"24570":24571,"24571":24572,"24572":24573,"24573":24574,"24574":24575,"24575":24576,"24576":24577,"24577":24578,"24578":24579,"24579":24580,"24580":24581,"24581":24582,"24582":24583,"24583":24584,"24584":24585,"24585":24586,"24586":24587,"24587":24588,"24588":24589,"24589":24590,"24590":24591,"24591":24592,"24592":24593,"24593":24594,"24594":24595,"24595":24596,"24596":24597,"24597":24598,"24598":24599,"24599":24600,"24600":24601,"24601":24602,"24602":24603,"24603":24604,"24604":24605,"24605":24606,"24606":24607,"24607":24608,"24608":24609,"24609":24610,"24610":24611,"24611":24612,"24612":24613,"24613":24614,"24614":24615,"24615":24616,"24616":24617,"24617":24618,"24618":24619,"24619":24620,"24620":24621,"24621":24622,"24622":24623,"24623":24624,"24624":24625,"24625":24626,"24626":24627,"24627":24628,"24628":24629,"24629":24630,"24630":24631,"24631":24632,"24632":24633,"24633":24634,"24634":24635,"24635":24636,"24636":24637,"24637":24638,"24638":24639,"24639":24640,"24640":24641,"24641":24642,"24642":24643,"24643":24644,"24644":24645,"24645":24646,"24646":24647,"24647":24648,"24648":24649,"24649":24650,"24650":24651,"24651":24652,"24652":24653,"24653":24654,"24654":24655,"24655":24656,"24656":24657,"24657":24658,"24658":24659,"24659":24660,"24660":24661,"24661":24662,"24662":24663,"24663":24664,"24664":24665,"24665":24666,"24666":24667,"24667":24668,"24668":24669,"24669":24670,"24670":24671,"24671":24672,"24672":24673,"24673":24674,"24674":24675,"24675":24676,"24676":24677,"24677":24678,"24678":24679,"24679":24680,"24680":24681,"24681":24682,"24682":24683,"24683":24684,"24684":24685,"24685":24686,"24686":24687,"24687":24688,"24688":24689,"24689":24690,"24690":24691,"24691":24692,"24692":24693,"24693":24694,"24694":24695,"24695":24696,"24696":24697,"24697":24698,"24698":24699,"24699":24700,"24700":24701,"24701":24702,"24702":24703,"24703":24704,"24704":24705,"24705":24706,"24706":24707,"24707":24708,"24708":24709,"24709":24710,"24710":24711,"24711":24712,"24712":24713,"24713":24714,"24714":24715,"24715":24716,"24716":24717,"24717":24718,"24718":24719,"24719":24720,"24720":24721,"24721":24722,"24722":24723,"24723":24724,"24724":24725,"24725":24726,"24726":24727,"24727":24728,"24728":24729,"24729":24730,"24730":24731,"24731":24732,"24732":24733,"24733":24734,"24734":24735,"24735":24736,"24736":24737,"24737":24738,"24738":24739,"24739":24740,"24740":24741,"24741":24742,"24742":24743,"24743":24744,"24744":24745,"24745":24746,"24746":24747,"24747":24748,"24748":24749,"24749":24750,"24750":24751,"24751":24752,"24752":24753,"24753":24754,"24754":24755,"24755":24756,"24756":24757,"24757":24758,"24758":24759,"24759":24760,"24760":24761,"24761":24762,"24762":24763,"24763":24764,"24764":24765,"24765":24766,"24766":24767,"24767":24768,"24768":24769,"24769":24770,"24770":24771,"24771":24772,"24772":24773,"24773":24774,"24774":24775,"24775":24776,"24776":24777,"24777":24778,"24778":24779,"24779":24780,"24780":24781,"24781":24782,"24782":24783,"24783":24784,"24784":24785,"24785":24786,"24786":24787,"24787":24788,"24788":24789,"24789":24790,"24790":24791,"24791":24792,"24792":24793,"24793":24794,"24794":24795,"24795":24796,"24796":24797,"24797":24798,"24798":24799,"24799":24800,"24800":24801,"24801":24802,"24802":24803,"24803":24804,"24804":24805,"24805":24806,"24806":24807,"24807":24808,"24808":24809,"24809":24810,"24810":24811,"24811":24812,"24812":24813,"24813":24814,"24814":24815,"24815":24816,"24816":24817,"24817":24818,"24818":24819,"24819":24820,"24820":24821,"24821":24822,"24822":24823,"24823":24824,"24824":24825,"24825":24826,"24826":24827,"24827":24828,"24828":24829,"24829":24830,"24830":24831,"24831":24832,"24832":24833,"24833":24834,"24834":24835,"24835":24836,"24836":24837,"24837":24838,"24838":24839,"24839":24840,"24840":24841,"24841":24842,"24842":24843,"24843":24844,"24844":24845,"24845":24846,"24846":24847,"24847":24848,"24848":24849,"24849":24850,"24850":24851,"24851":24852,"24852":24853,"24853":24854,"24854":24855,"24855":24856,"24856":24857,"24857":24858,"24858":24859,"24859":24860,"24860":24861,"24861":24862,"24862":24863,"24863":24864,"24864":24865,"24865":24866,"24866":24867,"24867":24868,"24868":24869,"24869":24870,"24870":24871,"24871":24872,"24872":24873,"24873":24874,"24874":24875,"24875":24876,"24876":24877,"24877":24878,"24878":24879,"24879":24880,"24880":24881,"24881":24882,"24882":24883,"24883":24884,"24884":24885,"24885":24886,"24886":24887,"24887":24888,"24888":24889,"24889":24890,"24890":24891,"24891":24892,"24892":24893,"24893":24894,"24894":24895,"24895":24896,"24896":24897,"24897":24898,"24898":24899,"24899":24900,"24900":24901,"24901":24902,"24902":24903,"24903":24904,"24904":24905,"24905":24906,"24906":24907,"24907":24908,"24908":24909,"24909":24910,"24910":24911,"24911":24912,"24912":24913,"24913":24914,"24914":24915,"24915":24916,"24916":24917,"24917":24918,"24918":24919,"24919":24920,"24920":24921,"24921":24922,"24922":24923,"24923":24924,"24924":24925,"24925":24926,"24926":24927,"24927":24928,"24928":24929,"24929":24930,"24930":24931,"24931":24932,"24932":24933,"24933":24934,"24934":24935,"24935":24936,"24936":24937,"24937":24938,"24938":24939,"24939":24940,"24940":24941,"24941":24942,"24942":24943,"24943":24944,"24944":24945,"24945":24946,"24946":24947,"24947":24948,"24948":24949,"24949":24950,"24950":24951,"24951":24952,"24952":24953,"24953":24954,"24954":24955,"24955":24956,"24956":24957,"24957":24958,"24958":24959,"24959":24960,"24960":24961,"24961":24962,"24962":24963,"24963":24964,"24964":24965,"24965":24966,"24966":24967,"24967":24968,"24968":24969,"24969":24970,"24970":24971,"24971":24972,"24972":24973,"24973":24974,"24974":24975,"24975":24976,"24976":24977,"24977":24978,"24978":24979,"24979":24980,"24980":24981,"24981":24982,"24982":24983,"24983":24984,"24984":24985,"24985":24986,"24986":24987,"24987":24988,"24988":24989,"24989":24990,"24990":24991,"24991":24992,"24992":24993,"24993":24994,"24994":24995,"24995":24996,"24996":24997,"24997":24998,"24998":24999,"24999":25000,"25000":25001,"25001":25002,"25002":25003,"25003":25004,"25004":25005,"25005":25006,"25006":25007,"25007":25008,"25008":25009,"25009":25010,"25010":25011,"25011":25012,"25012":25013,"25013":25014,"25014":25015,"25015":25016,"25016":25017,"25017":25018,"25018":25019,"25019":25020,"25020":25021,"25021":25022,"25022":25023,"25023":25024,"25024":25025,"25025":25026,"25026":25027,"25027":25028,"25028":25029,"25029":25030,"25030":25031,"25031":25032,"25032":25033,"25033":25034,"25034":25035,"25035":25036,"25036":25037,"25037":25038,"25038":25039,"25039":25040,"25040":25041,"25041":25042,"25042":25043,"25043":25044,"25044":25045,"25045":25046,"25046":25047,"25047":25048,"25048":25049,"25049":25050,"25050":25051,"25051":25052,"25052":25053,"25053":25054,"25054":25055,"25055":25056,"25056":25057,"25057":25058,"25058":25059,"25059":25060,"25060":25061,"25061":25062,"25062":25063,"25063":25064,"25064":25065,"25065":25066,"25066":25067,"25067":25068,"25068":25069,"25069":25070,"25070":25071,"25071":25072,"25072":25073,"25073":25074,"25074":25075,"25075":25076,"25076":25077,"25077":25078,"25078":25079,"25079":25080,"25080":25081,"25081":25082,"25082":25083,"25083":25084,"25084":25085,"25085":25086,"25086":25087,"25087":25088,"25088":25089,"25089":25090,"25090":25091,"25091":25092,"25092":25093,"25093":25094,"25094":25095,"25095":25096,"25096":25097,"25097":25098,"25098":25099,"25099":25100,"25100":25101,"25101":25102,"25102":25103,"25103":25104,"25104":25105,"25105":25106,"25106":25107,"25107":25108,"25108":25109,"25109":25110,"25110":25111,"25111":25112,"25112":25113,"25113":25114,"25114":25115,"25115":25116,"25116":25117,"25117":25118,"25118":25119,"25119":25120,"25120":25121,"25121":25122,"25122":25123,"25123":25124,"25124":25125,"25125":25126,"25126":25127,"25127":25128,"25128":25129,"25129":25130,"25130":25131,"25131":25132,"25132":25133,"25133":25134,"25134":25135,"25135":25136,"25136":25137,"25137":25138,"25138":25139,"25139":25140,"25140":25141,"25141":25142,"25142":25143,"25143":25144,"25144":25145,"25145":25146,"25146":25147,"25147":25148,"25148":25149,"25149":25150,"25150":25151,"25151":25152,"25152":25153,"25153":25154,"25154":25155,"25155":25156,"25156":25157,"25157":25158,"25158":25159,"25159":25160,"25160":25161,"25161":25162,"25162":25163,"25163":25164,"25164":25165,"25165":25166,"25166":25167,"25167":25168,"25168":25169,"25169":25170,"25170":25171,"25171":25172,"25172":25173,"25173":25174,"25174":25175,"25175":25176,"25176":25177,"25177":25178,"25178":25179,"25179":25180,"25180":25181,"25181":25182,"25182":25183,"25183":25184,"25184":25185,"25185":25186,"25186":25187,"25187":25188,"25188":25189,"25189":25190,"25190":25191,"25191":25192,"25192":25193,"25193":25194,"25194":25195,"25195":25196,"25196":25197,"25197":25198,"25198":25199,"25199":25200,"25200":25201,"25201":25202,"25202":25203,"25203":25204,"25204":25205,"25205":25206,"25206":25207,"25207":25208,"25208":25209,"25209":25210,"25210":25211,"25211":25212,"25212":25213,"25213":25214,"25214":25215,"25215":25216,"25216":25217,"25217":25218,"25218":25219,"25219":25220,"25220":25221,"25221":25222,"25222":25223,"25223":25224,"25224":25225,"25225":25226,"25226":25227,"25227":25228,"25228":25229,"25229":25230,"25230":25231,"25231":25232,"25232":25233,"25233":25234,"25234":25235,"25235":25236,"25236":25237,"25237":25238,"25238":25239,"25239":25240,"25240":25241,"25241":25242,"25242":25243,"25243":25244,"25244":25245,"25245":25246,"25246":25247,"25247":25248,"25248":25249,"25249":25250,"25250":25251,"25251":25252,"25252":25253,"25253":25254,"25254":25255,"25255":25256,"25256":25257,"25257":25258,"25258":25259,"25259":25260,"25260":25261,"25261":25262,"25262":25263,"25263":25264,"25264":25265,"25265":25266,"25266":25267,"25267":25268,"25268":25269,"25269":25270,"25270":25271,"25271":25272,"25272":25273,"25273":25274,"25274":25275,"25275":25276,"25276":25277,"25277":25278,"25278":25279,"25279":25280,"25280":25281,"25281":25282,"25282":25283,"25283":25284,"25284":25285,"25285":25286,"25286":25287,"25287":25288,"25288":25289,"25289":25290,"25290":25291,"25291":25292,"25292":25293,"25293":25294,"25294":25295,"25295":25296,"25296":25297,"25297":25298,"25298":25299,"25299":25300,"25300":25301,"25301":25302,"25302":25303,"25303":25304,"25304":25305,"25305":25306,"25306":25307,"25307":25308,"25308":25309,"25309":25310,"25310":25311,"25311":25312,"25312":25313,"25313":25314,"25314":25315,"25315":25316,"25316":25317,"25317":25318,"25318":25319,"25319":25320,"25320":25321,"25321":25322,"25322":25323,"25323":25324,"25324":25325,"25325":25326,"25326":25327,"25327":25328,"25328":25329,"25329":25330,"25330":25331,"25331":25332,"25332":25333,"25333":25334,"25334":25335,"25335":25336,"25336":25337,"25337":25338,"25338":25339,"25339":25340,"25340":25341,"25341":25342,"25342":25343,"25343":25344,"25344":25345,"25345":25346,"25346":25347,"25347":25348,"25348":25349,"25349":25350,"25350":25351,"25351":25352,"25352":25353,"25353":25354,"25354":25355,"25355":25356,"25356":25357,"25357":25358,"25358":25359,"25359":25360,"25360":25361,"25361":25362,"25362":25363,"25363":25364,"25364":25365,"25365":25366,"25366":25367,"25367":25368,"25368":25369,"25369":25370,"25370":25371,"25371":25372,"25372":25373,"25373":25374,"25374":25375,"25375":25376,"25376":25377,"25377":25378,"25378":25379,"25379":25380,"25380":25381,"25381":25382,"25382":25383,"25383":25384,"25384":25385,"25385":25386,"25386":25387,"25387":25388,"25388":25389,"25389":25390,"25390":25391,"25391":25392,"25392":25393,"25393":25394,"25394":25395,"25395":25396,"25396":25397,"25397":25398,"25398":25399,"25399":25400,"25400":25401,"25401":25402,"25402":25403,"25403":25404,"25404":25405,"25405":25406,"25406":25407,"25407":25408,"25408":25409,"25409":25410,"25410":25411,"25411":25412,"25412":25413,"25413":25414,"25414":25415,"25415":25416,"25416":25417,"25417":25418,"25418":25419,"25419":25420,"25420":25421,"25421":25422,"25422":25423,"25423":25424,"25424":25425,"25425":25426,"25426":25427,"25427":25428,"25428":25429,"25429":25430,"25430":25431,"25431":25432,"25432":25433,"25433":25434,"25434":25435,"25435":25436,"25436":25437,"25437":25438,"25438":25439,"25439":25440,"25440":25441,"25441":25442,"25442":25443,"25443":25444,"25444":25445,"25445":25446,"25446":25447,"25447":25448,"25448":25449,"25449":25450,"25450":25451,"25451":25452,"25452":25453,"25453":25454,"25454":25455,"25455":25456,"25456":25457,"25457":25458,"25458":25459,"25459":25460,"25460":25461,"25461":25462,"25462":25463,"25463":25464,"25464":25465,"25465":25466,"25466":25467,"25467":25468,"25468":25469,"25469":25470,"25470":25471,"25471":25472,"25472":25473,"25473":25474,"25474":25475,"25475":25476,"25476":25477,"25477":25478,"25478":25479,"25479":25480,"25480":25481,"25481":25482,"25482":25483,"25483":25484,"25484":25485,"25485":25486,"25486":25487,"25487":25488,"25488":25489,"25489":25490,"25490":25491,"25491":25492,"25492":25493,"25493":25494,"25494":25495,"25495":25496,"25496":25497,"25497":25498,"25498":25499,"25499":25500,"25500":25501,"25501":25502,"25502":25503,"25503":25504,"25504":25505,"25505":25506,"25506":25507,"25507":25508,"25508":25509,"25509":25510,"25510":25511,"25511":25512,"25512":25513,"25513":25514,"25514":25515,"25515":25516,"25516":25517,"25517":25518,"25518":25519,"25519":25520,"25520":25521,"25521":25522,"25522":25523,"25523":25524,"25524":25525,"25525":25526,"25526":25527,"25527":25528,"25528":25529,"25529":25530,"25530":25531,"25531":25532,"25532":25533,"25533":25534,"25534":25535,"25535":25536,"25536":25537,"25537":25538,"25538":25539,"25539":25540,"25540":25541,"25541":25542,"25542":25543,"25543":25544,"25544":25545,"25545":25546,"25546":25547,"25547":25548,"25548":25549,"25549":25550,"25550":25551,"25551":25552,"25552":25553,"25553":25554,"25554":25555,"25555":25556,"25556":25557,"25557":25558,"25558":25559,"25559":25560,"25560":25561,"25561":25562,"25562":25563,"25563":25564,"25564":25565,"25565":25566,"25566":25567,"25567":25568,"25568":25569,"25569":25570,"25570":25571,"25571":25572,"25572":25573,"25573":25574,"25574":25575,"25575":25576,"25576":25577,"25577":25578,"25578":25579,"25579":25580,"25580":25581,"25581":25582,"25582":25583,"25583":25584,"25584":25585,"25585":25586,"25586":25587,"25587":25588,"25588":25589,"25589":25590,"25590":25591,"25591":25592,"25592":25593,"25593":25594,"25594":25595,"25595":25596,"25596":25597,"25597":25598,"25598":25599,"25599":25600,"25600":25601,"25601":25602,"25602":25603,"25603":25604,"25604":25605,"25605":25606,"25606":25607,"25607":25608,"25608":25609,"25609":25610,"25610":25611,"25611":25612,"25612":25613,"25613":25614,"25614":25615,"25615":25616,"25616":25617,"25617":25618,"25618":25619,"25619":25620,"25620":25621,"25621":25622,"25622":25623,"25623":25624,"25624":25625,"25625":25626,"25626":25627,"25627":25628,"25628":25629,"25629":25630,"25630":25631,"25631":25632,"25632":25633,"25633":25634,"25634":25635,"25635":25636,"25636":25637,"25637":25638,"25638":25639,"25639":25640,"25640":25641,"25641":25642,"25642":25643,"25643":25644,"25644":25645,"25645":25646,"25646":25647,"25647":25648,"25648":25649,"25649":25650,"25650":25651,"25651":25652,"25652":25653,"25653":25654,"25654":25655,"25655":25656,"25656":25657,"25657":25658,"25658":25659,"25659":25660,"25660":25661,"25661":25662,"25662":25663,"25663":25664,"25664":25665,"25665":25666,"25666":25667,"25667":25668,"25668":25669,"25669":25670,"25670":25671,"25671":25672,"25672":25673,"25673":25674,"25674":25675,"25675":25676,"25676":25677,"25677":25678,"25678":25679,"25679":25680,"25680":25681,"25681":25682,"25682":25683,"25683":25684,"25684":25685,"25685":25686,"25686":25687,"25687":25688,"25688":25689,"25689":25690,"25690":25691,"25691":25692,"25692":25693,"25693":25694,"25694":25695,"25695":25696,"25696":25697,"25697":25698,"25698":25699,"25699":25700,"25700":25701,"25701":25702,"25702":25703,"25703":25704,"25704":25705,"25705":25706,"25706":25707,"25707":25708,"25708":25709,"25709":25710,"25710":25711,"25711":25712,"25712":25713,"25713":25714,"25714":25715,"25715":25716,"25716":25717,"25717":25718,"25718":25719,"25719":25720,"25720":25721,"25721":25722,"25722":25723,"25723":25724,"25724":25725,"25725":25726,"25726":25727,"25727":25728,"25728":25729,"25729":25730,"25730":25731,"25731":25732,"25732":25733,"25733":25734,"25734":25735,"25735":25736,"25736":25737,"25737":25738,"25738":25739,"25739":25740,"25740":25741,"25741":25742,"25742":25743,"25743":25744,"25744":25745,"25745":25746,"25746":25747,"25747":25748,"25748":25749,"25749":25750,"25750":25751,"25751":25752,"25752":25753,"25753":25754,"25754":25755,"25755":25756,"25756":25757,"25757":25758,"25758":25759,"25759":25760,"25760":25761,"25761":25762,"25762":25763,"25763":25764,"25764":25765,"25765":25766,"25766":25767,"25767":25768,"25768":25769,"25769":25770,"25770":25771,"25771":25772,"25772":25773,"25773":25774,"25774":25775,"25775":25776,"25776":25777,"25777":25778,"25778":25779,"25779":25780,"25780":25781,"25781":25782,"25782":25783,"25783":25784,"25784":25785,"25785":25786,"25786":25787,"25787":25788,"25788":25789,"25789":25790,"25790":25791,"25791":25792,"25792":25793,"25793":25794,"25794":25795,"25795":25796,"25796":25797,"25797":25798,"25798":25799,"25799":25800,"25800":25801,"25801":25802,"25802":25803,"25803":25804,"25804":25805,"25805":25806,"25806":25807,"25807":25808,"25808":25809,"25809":25810,"25810":25811,"25811":25812,"25812":25813,"25813":25814,"25814":25815,"25815":25816,"25816":25817,"25817":25818,"25818":25819,"25819":25820,"25820":25821,"25821":25822,"25822":25823,"25823":25824,"25824":25825,"25825":25826,"25826":25827,"25827":25828,"25828":25829,"25829":25830,"25830":25831,"25831":25832,"25832":25833,"25833":25834,"25834":25835,"25835":25836,"25836":25837,"25837":25838,"25838":25839,"25839":25840,"25840":25841,"25841":25842,"25842":25843,"25843":25844,"25844":25845,"25845":25846,"25846":25847,"25847":25848,"25848":25849,"25849":25850,"25850":25851,"25851":25852,"25852":25853,"25853":25854,"25854":25855,"25855":25856,"25856":25857,"25857":25858,"25858":25859,"25859":25860,"25860":25861,"25861":25862,"25862":25863,"25863":25864,"25864":25865,"25865":25866,"25866":25867,"25867":25868,"25868":25869,"25869":25870,"25870":25871,"25871":25872,"25872":25873,"25873":25874,"25874":25875,"25875":25876,"25876":25877,"25877":25878,"25878":25879,"25879":25880,"25880":25881,"25881":25882,"25882":25883,"25883":25884,"25884":25885,"25885":25886,"25886":25887,"25887":25888,"25888":25889,"25889":25890,"25890":25891,"25891":25892,"25892":25893,"25893":25894,"25894":25895,"25895":25896,"25896":25897,"25897":25898,"25898":25899,"25899":25900,"25900":25901,"25901":25902,"25902":25903,"25903":25904,"25904":25905,"25905":25906,"25906":25907,"25907":25908,"25908":25909,"25909":25910,"25910":25911,"25911":25912,"25912":25913,"25913":25914,"25914":25915,"25915":25916,"25916":25917,"25917":25918,"25918":25919,"25919":25920,"25920":25921,"25921":25922,"25922":25923,"25923":25924,"25924":25925,"25925":25926,"25926":25927,"25927":25928,"25928":25929,"25929":25930,"25930":25931,"25931":25932,"25932":25933,"25933":25934,"25934":25935,"25935":25936,"25936":25937,"25937":25938,"25938":25939,"25939":25940,"25940":25941,"25941":25942,"25942":25943,"25943":25944,"25944":25945,"25945":25946,"25946":25947,"25947":25948,"25948":25949,"25949":25950,"25950":25951,"25951":25952,"25952":25953,"25953":25954,"25954":25955,"25955":25956,"25956":25957,"25957":25958,"25958":25959,"25959":25960,"25960":25961,"25961":25962,"25962":25963,"25963":25964,"25964":25965,"25965":25966,"25966":25967,"25967":25968,"25968":25969,"25969":25970,"25970":25971,"25971":25972,"25972":25973,"25973":25974,"25974":25975,"25975":25976,"25976":25977,"25977":25978,"25978":25979,"25979":25980,"25980":25981,"25981":25982,"25982":25983,"25983":25984,"25984":25985,"25985":25986,"25986":25987,"25987":25988,"25988":25989,"25989":25990,"25990":25991,"25991":25992,"25992":25993,"25993":25994,"25994":25995,"25995":25996,"25996":25997,"25997":25998,"25998":25999,"25999":26000,"26000":26001,"26001":26002,"26002":26003,"26003":26004,"26004":26005,"26005":26006,"26006":26007,"26007":26008,"26008":26009,"26009":26010,"26010":26011,"26011":26012,"26012":26013,"26013":26014,"26014":26015,"26015":26016,"26016":26017,"26017":26018,"26018":26019,"26019":26020,"26020":26021,"26021":26022,"26022":26023,"26023":26024,"26024":26025,"26025":26026,"26026":26027,"26027":26028,"26028":26029,"26029":26030,"26030":26031,"26031":26032,"26032":26033,"26033":26034,"26034":26035,"26035":26036,"26036":26037,"26037":26038,"26038":26039,"26039":26040,"26040":26041,"26041":26042,"26042":26043,"26043":26044,"26044":26045,"26045":26046,"26046":26047,"26047":26048,"26048":26049,"26049":26050,"26050":26051,"26051":26052,"26052":26053,"26053":26054,"26054":26055,"26055":26056,"26056":26057,"26057":26058,"26058":26059,"26059":26060,"26060":26061,"26061":26062,"26062":26063,"26063":26064,"26064":26065,"26065":26066,"26066":26067,"26067":26068,"26068":26069,"26069":26070,"26070":26071,"26071":26072,"26072":26073,"26073":26074,"26074":26075,"26075":26076,"26076":26077,"26077":26078,"26078":26079,"26079":26080,"26080":26081,"26081":26082,"26082":26083,"26083":26084,"26084":26085,"26085":26086,"26086":26087,"26087":26088,"26088":26089,"26089":26090,"26090":26091,"26091":26092,"26092":26093,"26093":26094,"26094":26095,"26095":26096,"26096":26097,"26097":26098,"26098":26099,"26099":26100,"26100":26101,"26101":26102,"26102":26103,"26103":26104,"26104":26105,"26105":26106,"26106":26107,"26107":26108,"26108":26109,"26109":26110,"26110":26111,"26111":26112,"26112":26113,"26113":26114,"26114":26115,"26115":26116,"26116":26117,"26117":26118,"26118":26119,"26119":26120,"26120":26121,"26121":26122,"26122":26123,"26123":26124,"26124":26125,"26125":26126,"26126":26127,"26127":26128,"26128":26129,"26129":26130,"26130":26131,"26131":26132,"26132":26133,"26133":26134,"26134":26135,"26135":26136,"26136":26137,"26137":26138,"26138":26139,"26139":26140,"26140":26141,"26141":26142,"26142":26143,"26143":26144,"26144":26145,"26145":26146,"26146":26147,"26147":26148,"26148":26149,"26149":26150,"26150":26151,"26151":26152,"26152":26153,"26153":26154,"26154":26155,"26155":26156,"26156":26157,"26157":26158,"26158":26159,"26159":26160,"26160":26161,"26161":26162,"26162":26163,"26163":26164,"26164":26165,"26165":26166,"26166":26167,"26167":26168,"26168":26169,"26169":26170,"26170":26171,"26171":26172,"26172":26173,"26173":26174,"26174":26175,"26175":26176,"26176":26177,"26177":26178,"26178":26179,"26179":26180,"26180":26181,"26181":26182,"26182":26183,"26183":26184,"26184":26185,"26185":26186,"26186":26187,"26187":26188,"26188":26189,"26189":26190,"26190":26191,"26191":26192,"26192":26193,"26193":26194,"26194":26195,"26195":26196,"26196":26197,"26197":26198,"26198":26199,"26199":26200,"26200":26201,"26201":26202,"26202":26203,"26203":26204,"26204":26205,"26205":26206,"26206":26207,"26207":26208,"26208":26209,"26209":26210,"26210":26211,"26211":26212,"26212":26213,"26213":26214,"26214":26215,"26215":26216,"26216":26217,"26217":26218,"26218":26219,"26219":26220,"26220":26221,"26221":26222,"26222":26223,"26223":26224,"26224":26225,"26225":26226,"26226":26227,"26227":26228,"26228":26229,"26229":26230,"26230":26231,"26231":26232,"26232":26233,"26233":26234,"26234":26235,"26235":26236,"26236":26237,"26237":26238,"26238":26239,"26239":26240,"26240":26241,"26241":26242,"26242":26243,"26243":26244,"26244":26245,"26245":26246,"26246":26247,"26247":26248,"26248":26249,"26249":26250,"26250":26251,"26251":26252,"26252":26253,"26253":26254,"26254":26255,"26255":26256,"26256":26257,"26257":26258,"26258":26259,"26259":26260,"26260":26261,"26261":26262,"26262":26263,"26263":26264,"26264":26265,"26265":26266,"26266":26267,"26267":26268,"26268":26269,"26269":26270,"26270":26271,"26271":26272,"26272":26273,"26273":26274,"26274":26275,"26275":26276,"26276":26277,"26277":26278,"26278":26279,"26279":26280,"26280":26281,"26281":26282,"26282":26283,"26283":26284,"26284":26285,"26285":26286,"26286":26287,"26287":26288,"26288":26289,"26289":26290,"26290":26291,"26291":26292,"26292":26293,"26293":26294,"26294":26295,"26295":26296,"26296":26297,"26297":26298,"26298":26299,"26299":26300,"26300":26301,"26301":26302,"26302":26303,"26303":26304,"26304":26305,"26305":26306,"26306":26307,"26307":26308,"26308":26309,"26309":26310,"26310":26311,"26311":26312,"26312":26313,"26313":26314,"26314":26315,"26315":26316,"26316":26317,"26317":26318,"26318":26319,"26319":26320,"26320":26321,"26321":26322,"26322":26323,"26323":26324,"26324":26325,"26325":26326,"26326":26327,"26327":26328,"26328":26329,"26329":26330,"26330":26331,"26331":26332,"26332":26333,"26333":26334,"26334":26335,"26335":26336,"26336":26337,"26337":26338,"26338":26339,"26339":26340,"26340":26341,"26341":26342,"26342":26343,"26343":26344,"26344":26345,"26345":26346,"26346":26347,"26347":26348,"26348":26349,"26349":26350,"26350":26351,"26351":26352,"26352":26353,"26353":26354,"26354":26355,"26355":26356,"26356":26357,"26357":26358,"26358":26359,"26359":26360,"26360":26361,"26361":26362,"26362":26363,"26363":26364,"26364":26365,"26365":26366,"26366":26367,"26367":26368,"26368":26369,"26369":26370,"26370":26371,"26371":26372,"26372":26373,"26373":26374,"26374":26375,"26375":26376,"26376":26377,"26377":26378,"26378":26379,"26379":26380,"26380":26381,"26381":26382,"26382":26383,"26383":26384,"26384":26385,"26385":26386,"26386":26387,"26387":26388,"26388":26389,"26389":26390,"26390":26391,"26391":26392,"26392":26393,"26393":26394,"26394":26395,"26395":26396,"26396":26397,"26397":26398,"26398":26399,"26399":26400,"26400":26401,"26401":26402,"26402":26403,"26403":26404,"26404":26405,"26405":26406,"26406":26407,"26407":26408,"26408":26409,"26409":26410,"26410":26411,"26411":26412,"26412":26413,"26413":26414,"26414":26415,"26415":26416,"26416":26417,"26417":26418,"26418":26419,"26419":26420,"26420":26421,"26421":26422,"26422":26423,"26423":26424,"26424":26425,"26425":26426,"26426":26427,"26427":26428,"26428":26429,"26429":26430,"26430":26431,"26431":26432,"26432":26433,"26433":26434,"26434":26435,"26435":26436,"26436":26437,"26437":26438,"26438":26439,"26439":26440,"26440":26441,"26441":26442,"26442":26443,"26443":26444,"26444":26445,"26445":26446,"26446":26447,"26447":26448,"26448":26449,"26449":26450,"26450":26451,"26451":26452,"26452":26453,"26453":26454,"26454":26455,"26455":26456,"26456":26457,"26457":26458,"26458":26459,"26459":26460,"26460":26461,"26461":26462,"26462":26463,"26463":26464,"26464":26465,"26465":26466,"26466":26467,"26467":26468,"26468":26469,"26469":26470,"26470":26471,"26471":26472,"26472":26473,"26473":26474,"26474":26475,"26475":26476,"26476":26477,"26477":26478,"26478":26479,"26479":26480,"26480":26481,"26481":26482,"26482":26483,"26483":26484,"26484":26485,"26485":26486,"26486":26487,"26487":26488,"26488":26489,"26489":26490,"26490":26491,"26491":26492,"26492":26493,"26493":26494,"26494":26495,"26495":26496,"26496":26497,"26497":26498,"26498":26499,"26499":26500,"26500":26501,"26501":26502,"26502":26503,"26503":26504,"26504":26505,"26505":26506,"26506":26507,"26507":26508,"26508":26509,"26509":26510,"26510":26511,"26511":26512,"26512":26513,"26513":26514,"26514":26515,"26515":26516,"26516":26517,"26517":26518,"26518":26519,"26519":26520,"26520":26521,"26521":26522,"26522":26523,"26523":26524,"26524":26525,"26525":26526,"26526":26527,"26527":26528,"26528":26529,"26529":26530,"26530":26531,"26531":26532,"26532":26533,"26533":26534,"26534":26535,"26535":26536,"26536":26537,"26537":26538,"26538":26539,"26539":26540,"26540":26541,"26541":26542,"26542":26543,"26543":26544,"26544":26545,"26545":26546,"26546":26547,"26547":26548,"26548":26549,"26549":26550,"26550":26551,"26551":26552,"26552":26553,"26553":26554,"26554":26555,"26555":26556,"26556":26557,"26557":26558,"26558":26559,"26559":26560,"26560":26561,"26561":26562,"26562":26563,"26563":26564,"26564":26565,"26565":26566,"26566":26567,"26567":26568,"26568":26569,"26569":26570,"26570":26571,"26571":26572,"26572":26573,"26573":26574,"26574":26575,"26575":26576,"26576":26577,"26577":26578,"26578":26579,"26579":26580,"26580":26581,"26581":26582,"26582":26583,"26583":26584,"26584":26585,"26585":26586,"26586":26587,"26587":26588,"26588":26589,"26589":26590,"26590":26591,"26591":26592,"26592":26593,"26593":26594,"26594":26595,"26595":26596,"26596":26597,"26597":26598,"26598":26599,"26599":26600,"26600":26601,"26601":26602,"26602":26603,"26603":26604,"26604":26605,"26605":26606,"26606":26607,"26607":26608,"26608":26609,"26609":26610,"26610":26611,"26611":26612,"26612":26613,"26613":26614,"26614":26615,"26615":26616,"26616":26617,"26617":26618,"26618":26619,"26619":26620,"26620":26621,"26621":26622,"26622":26623,"26623":26624,"26624":26625,"26625":26626,"26626":26627,"26627":26628,"26628":26629,"26629":26630,"26630":26631,"26631":26632,"26632":26633,"26633":26634,"26634":26635,"26635":26636,"26636":26637,"26637":26638,"26638":26639,"26639":26640,"26640":26641,"26641":26642,"26642":26643,"26643":26644,"26644":26645,"26645":26646,"26646":26647,"26647":26648,"26648":26649,"26649":26650,"26650":26651,"26651":26652,"26652":26653,"26653":26654,"26654":26655,"26655":26656,"26656":26657,"26657":26658,"26658":26659,"26659":26660,"26660":26661,"26661":26662,"26662":26663,"26663":26664,"26664":26665,"26665":26666,"26666":26667,"26667":26668,"26668":26669,"26669":26670,"26670":26671,"26671":26672,"26672":26673,"26673":26674,"26674":26675,"26675":26676,"26676":26677,"26677":26678,"26678":26679,"26679":26680,"26680":26681,"26681":26682,"26682":26683,"26683":26684,"26684":26685,"26685":26686,"26686":26687,"26687":26688,"26688":26689,"26689":26690,"26690":26691,"26691":26692,"26692":26693,"26693":26694,"26694":26695,"26695":26696,"26696":26697,"26697":26698,"26698":26699,"26699":26700,"26700":26701,"26701":26702,"26702":26703,"26703":26704,"26704":26705,"26705":26706,"26706":26707,"26707":26708,"26708":26709,"26709":26710,"26710":26711,"26711":26712,"26712":26713,"26713":26714,"26714":26715,"26715":26716,"26716":26717,"26717":26718,"26718":26719,"26719":26720,"26720":26721,"26721":26722,"26722":26723,"26723":26724,"26724":26725,"26725":26726,"26726":26727,"26727":26728,"26728":26729,"26729":26730,"26730":26731,"26731":26732,"26732":26733,"26733":26734,"26734":26735,"26735":26736,"26736":26737,"26737":26738,"26738":26739,"26739":26740,"26740":26741,"26741":26742,"26742":26743,"26743":26744,"26744":26745,"26745":26746,"26746":26747,"26747":26748,"26748":26749,"26749":26750,"26750":26751,"26751":26752,"26752":26753,"26753":26754,"26754":26755,"26755":26756,"26756":26757,"26757":26758,"26758":26759,"26759":26760,"26760":26761,"26761":26762,"26762":26763,"26763":26764,"26764":26765,"26765":26766,"26766":26767,"26767":26768,"26768":26769,"26769":26770,"26770":26771,"26771":26772,"26772":26773,"26773":26774,"26774":26775,"26775":26776,"26776":26777,"26777":26778,"26778":26779,"26779":26780,"26780":26781,"26781":26782,"26782":26783,"26783":26784,"26784":26785,"26785":26786,"26786":26787,"26787":26788,"26788":26789,"26789":26790,"26790":26791,"26791":26792,"26792":26793,"26793":26794,"26794":26795,"26795":26796,"26796":26797,"26797":26798,"26798":26799,"26799":26800,"26800":26801,"26801":26802,"26802":26803,"26803":26804,"26804":26805,"26805":26806,"26806":26807,"26807":26808,"26808":26809,"26809":26810,"26810":26811,"26811":26812,"26812":26813,"26813":26814,"26814":26815,"26815":26816,"26816":26817,"26817":26818,"26818":26819,"26819":26820,"26820":26821,"26821":26822,"26822":26823,"26823":26824,"26824":26825,"26825":26826,"26826":26827,"26827":26828,"26828":26829,"26829":26830,"26830":26831,"26831":26832,"26832":26833,"26833":26834,"26834":26835,"26835":26836,"26836":26837,"26837":26838,"26838":26839,"26839":26840,"26840":26841,"26841":26842,"26842":26843,"26843":26844,"26844":26845,"26845":26846,"26846":26847,"26847":26848,"26848":26849,"26849":26850,"26850":26851,"26851":26852,"26852":26853,"26853":26854,"26854":26855,"26855":26856,"26856":26857,"26857":26858,"26858":26859,"26859":26860,"26860":26861,"26861":26862,"26862":26863,"26863":26864,"26864":26865,"26865":26866,"26866":26867,"26867":26868,"26868":26869,"26869":26870,"26870":26871,"26871":26872,"26872":26873,"26873":26874,"26874":26875,"26875":26876,"26876":26877,"26877":26878,"26878":26879,"26879":26880,"26880":26881,"26881":26882,"26882":26883,"26883":26884,"26884":26885,"26885":26886,"26886":26887,"26887":26888,"26888":26889,"26889":26890,"26890":26891,"26891":26892,"26892":26893,"26893":26894,"26894":26895,"26895":26896,"26896":26897,"26897":26898,"26898":26899,"26899":26900,"26900":26901,"26901":26902,"26902":26903,"26903":26904,"26904":26905,"26905":26906,"26906":26907,"26907":26908,"26908":26909,"26909":26910,"26910":26911,"26911":26912,"26912":26913,"26913":26914,"26914":26915,"26915":26916,"26916":26917,"26917":26918,"26918":26919,"26919":26920,"26920":26921,"26921":26922,"26922":26923,"26923":26924,"26924":26925,"26925":26926,"26926":26927,"26927":26928,"26928":26929,"26929":26930,"26930":26931,"26931":26932,"26932":26933,"26933":26934,"26934":26935,"26935":26936,"26936":26937,"26937":26938,"26938":26939,"26939":26940,"26940":26941,"26941":26942,"26942":26943,"26943":26944,"26944":26945,"26945":26946,"26946":26947,"26947":26948,"26948":26949,"26949":26950,"26950":26951,"26951":26952,"26952":26953,"26953":26954,"26954":26955,"26955":26956,"26956":26957,"26957":26958,"26958":26959,"26959":26960,"26960":26961,"26961":26962,"26962":26963,"26963":26964,"26964":26965,"26965":26966,"26966":26967,"26967":26968,"26968":26969,"26969":26970,"26970":26971,"26971":26972,"26972":26973,"26973":26974,"26974":26975,"26975":26976,"26976":26977,"26977":26978,"26978":26979,"26979":26980,"26980":26981,"26981":26982,"26982":26983,"26983":26984,"26984":26985,"26985":26986,"26986":26987,"26987":26988,"26988":26989,"26989":26990,"26990":26991,"26991":26992,"26992":26993,"26993":26994,"26994":26995,"26995":26996,"26996":26997,"26997":26998,"26998":26999,"26999":27000,"27000":27001,"27001":27002,"27002":27003,"27003":27004,"27004":27005,"27005":27006,"27006":27007,"27007":27008,"27008":27009,"27009":27010,"27010":27011,"27011":27012,"27012":27013,"27013":27014,"27014":27015,"27015":27016,"27016":27017,"27017":27018,"27018":27019,"27019":27020,"27020":27021,"27021":27022,"27022":27023,"27023":27024,"27024":27025,"27025":27026,"27026":27027,"27027":27028,"27028":27029,"27029":27030,"27030":27031,"27031":27032,"27032":27033,"27033":27034,"27034":27035,"27035":27036,"27036":27037,"27037":27038,"27038":27039,"27039":27040,"27040":27041,"27041":27042,"27042":27043,"27043":27044,"27044":27045,"27045":27046,"27046":27047,"27047":27048,"27048":27049,"27049":27050,"27050":27051,"27051":27052,"27052":27053,"27053":27054,"27054":27055,"27055":27056,"27056":27057,"27057":27058,"27058":27059,"27059":27060,"27060":27061,"27061":27062,"27062":27063,"27063":27064,"27064":27065,"27065":27066,"27066":27067,"27067":27068,"27068":27069,"27069":27070,"27070":27071,"27071":27072,"27072":27073,"27073":27074,"27074":27075,"27075":27076,"27076":27077,"27077":27078,"27078":27079,"27079":27080,"27080":27081,"27081":27082,"27082":27083,"27083":27084,"27084":27085,"27085":27086,"27086":27087,"27087":27088,"27088":27089,"27089":27090,"27090":27091,"27091":27092,"27092":27093,"27093":27094,"27094":27095,"27095":27096,"27096":27097,"27097":27098,"27098":27099,"27099":27100,"27100":27101,"27101":27102,"27102":27103,"27103":27104,"27104":27105,"27105":27106,"27106":27107,"27107":27108,"27108":27109,"27109":27110,"27110":27111,"27111":27112,"27112":27113,"27113":27114,"27114":27115,"27115":27116,"27116":27117,"27117":27118,"27118":27119,"27119":27120,"27120":27121,"27121":27122,"27122":27123,"27123":27124,"27124":27125,"27125":27126,"27126":27127,"27127":27128,"27128":27129,"27129":27130,"27130":27131,"27131":27132,"27132":27133,"27133":27134,"27134":27135,"27135":27136,"27136":27137,"27137":27138,"27138":27139,"27139":27140,"27140":27141,"27141":27142,"27142":27143,"27143":27144,"27144":27145,"27145":27146,"27146":27147,"27147":27148,"27148":27149,"27149":27150,"27150":27151,"27151":27152,"27152":27153,"27153":27154,"27154":27155,"27155":27156,"27156":27157,"27157":27158,"27158":27159,"27159":27160,"27160":27161,"27161":27162,"27162":27163,"27163":27164,"27164":27165,"27165":27166,"27166":27167,"27167":27168,"27168":27169,"27169":27170,"27170":27171,"27171":27172,"27172":27173,"27173":27174,"27174":27175,"27175":27176,"27176":27177,"27177":27178,"27178":27179,"27179":27180,"27180":27181,"27181":27182,"27182":27183,"27183":27184,"27184":27185,"27185":27186,"27186":27187,"27187":27188,"27188":27189,"27189":27190,"27190":27191,"27191":27192,"27192":27193,"27193":27194,"27194":27195,"27195":27196,"27196":27197,"27197":27198,"27198":27199,"27199":27200,"27200":27201,"27201":27202,"27202":27203,"27203":27204,"27204":27205,"27205":27206,"27206":27207,"27207":27208,"27208":27209,"27209":27210,"27210":27211,"27211":27212,"27212":27213,"27213":27214,"27214":27215,"27215":27216,"27216":27217,"27217":27218,"27218":27219,"27219":27220,"27220":27221,"27221":27222,"27222":27223,"27223":27224,"27224":27225,"27225":27226,"27226":27227,"27227":27228,"27228":27229,"27229":27230,"27230":27231,"27231":27232,"27232":27233,"27233":27234,"27234":27235,"27235":27236,"27236":27237,"27237":27238,"27238":27239,"27239":27240,"27240":27241,"27241":27242,"27242":27243,"27243":27244,"27244":27245,"27245":27246,"27246":27247,"27247":27248,"27248":27249,"27249":27250,"27250":27251,"27251":27252,"27252":27253,"27253":27254,"27254":27255,"27255":27256,"27256":27257,"27257":27258,"27258":27259,"27259":27260,"27260":27261,"27261":27262,"27262":27263,"27263":27264,"27264":27265,"27265":27266,"27266":27267,"27267":27268,"27268":27269,"27269":27270,"27270":27271,"27271":27272,"27272":27273,"27273":27274,"27274":27275,"27275":27276,"27276":27277,"27277":27278,"27278":27279,"27279":27280,"27280":27281,"27281":27282,"27282":27283,"27283":27284,"27284":27285,"27285":27286,"27286":27287,"27287":27288,"27288":27289,"27289":27290,"27290":27291,"27291":27292,"27292":27293,"27293":27294,"27294":27295,"27295":27296,"27296":27297,"27297":27298,"27298":27299,"27299":27300,"27300":27301,"27301":27302,"27302":27303,"27303":27304,"27304":27305,"27305":27306,"27306":27307,"27307":27308,"27308":27309,"27309":27310,"27310":27311,"27311":27312,"27312":27313,"27313":27314,"27314":27315,"27315":27316,"27316":27317,"27317":27318,"27318":27319,"27319":27320,"27320":27321,"27321":27322,"27322":27323,"27323":27324,"27324":27325,"27325":27326,"27326":27327,"27327":27328,"27328":27329,"27329":27330,"27330":27331,"27331":27332,"27332":27333,"27333":27334,"27334":27335,"27335":27336,"27336":27337,"27337":27338,"27338":27339,"27339":27340,"27340":27341,"27341":27342,"27342":27343,"27343":27344,"27344":27345,"27345":27346,"27346":27347,"27347":27348,"27348":27349,"27349":27350,"27350":27351,"27351":27352,"27352":27353,"27353":27354,"27354":27355,"27355":27356,"27356":27357,"27357":27358,"27358":27359,"27359":27360,"27360":27361,"27361":27362,"27362":27363,"27363":27364,"27364":27365,"27365":27366,"27366":27367,"27367":27368,"27368":27369,"27369":27370,"27370":27371,"27371":27372,"27372":27373,"27373":27374,"27374":27375,"27375":27376,"27376":27377,"27377":27378,"27378":27379,"27379":27380,"27380":27381,"27381":27382,"27382":27383,"27383":27384,"27384":27385,"27385":27386,"27386":27387,"27387":27388,"27388":27389,"27389":27390,"27390":27391,"27391":27392,"27392":27393,"27393":27394,"27394":27395,"27395":27396,"27396":27397,"27397":27398,"27398":27399,"27399":27400,"27400":27401,"27401":27402,"27402":27403,"27403":27404,"27404":27405,"27405":27406,"27406":27407,"27407":27408,"27408":27409,"27409":27410,"27410":27411,"27411":27412,"27412":27413,"27413":27414,"27414":27415,"27415":27416,"27416":27417,"27417":27418,"27418":27419,"27419":27420,"27420":27421,"27421":27422,"27422":27423,"27423":27424,"27424":27425,"27425":27426,"27426":27427,"27427":27428,"27428":27429,"27429":27430,"27430":27431,"27431":27432,"27432":27433,"27433":27434,"27434":27435,"27435":27436,"27436":27437,"27437":27438,"27438":27439,"27439":27440,"27440":27441,"27441":27442,"27442":27443,"27443":27444,"27444":27445,"27445":27446,"27446":27447,"27447":27448,"27448":27449,"27449":27450,"27450":27451,"27451":27452,"27452":27453,"27453":27454,"27454":27455,"27455":27456,"27456":27457,"27457":27458,"27458":27459,"27459":27460,"27460":27461,"27461":27462,"27462":27463,"27463":27464,"27464":27465,"27465":27466,"27466":27467,"27467":27468,"27468":27469,"27469":27470,"27470":27471,"27471":27472,"27472":27473,"27473":27474,"27474":27475,"27475":27476,"27476":27477,"27477":27478,"27478":27479,"27479":27480,"27480":27481,"27481":27482,"27482":27483,"27483":27484,"27484":27485,"27485":27486,"27486":27487,"27487":27488,"27488":27489,"27489":27490,"27490":27491,"27491":27492,"27492":27493,"27493":27494,"27494":27495,"27495":27496,"27496":27497,"27497":27498,"27498":27499,"27499":27500,"27500":27501,"27501":27502,"27502":27503,"27503":27504,"27504":27505,"27505":27506,"27506":27507,"27507":27508,"27508":27509,"27509":27510,"27510":27511,"27511":27512,"27512":27513,"27513":27514,"27514":27515,"27515":27516,"27516":27517,"27517":27518,"27518":27519,"27519":27520,"27520":27521,"27521":27522,"27522":27523,"27523":27524,"27524":27525,"27525":27526,"27526":27527,"27527":27528,"27528":27529,"27529":27530,"27530":27531,"27531":27532,"27532":27533,"27533":27534,"27534":27535,"27535":27536,"27536":27537,"27537":27538,"27538":27539,"27539":27540,"27540":27541,"27541":27542,"27542":27543,"27543":27544,"27544":27545,"27545":27546,"27546":27547,"27547":27548,"27548":27549,"27549":27550,"27550":27551,"27551":27552,"27552":27553,"27553":27554,"27554":27555,"27555":27556,"27556":27557,"27557":27558,"27558":27559,"27559":27560,"27560":27561,"27561":27562,"27562":27563,"27563":27564,"27564":27565,"27565":27566,"27566":27567,"27567":27568,"27568":27569,"27569":27570,"27570":27571,"27571":27572,"27572":27573,"27573":27574,"27574":27575,"27575":27576,"27576":27577,"27577":27578,"27578":27579,"27579":27580,"27580":27581,"27581":27582,"27582":27583,"27583":27584,"27584":27585,"27585":27586,"27586":27587,"27587":27588,"27588":27589,"27589":27590,"27590":27591,"27591":27592,"27592":27593,"27593":27594,"27594":27595,"27595":27596,"27596":27597,"27597":27598,"27598":27599,"27599":27600,"27600":27601,"27601":27602,"27602":27603,"27603":27604,"27604":27605,"27605":27606,"27606":27607,"27607":27608,"27608":27609,"27609":27610,"27610":27611,"27611":27612,"27612":27613,"27613":27614,"27614":27615,"27615":27616,"27616":27617,"27617":27618,"27618":27619,"27619":27620,"27620":27621,"27621":27622,"27622":27623,"27623":27624,"27624":27625,"27625":27626,"27626":27627,"27627":27628,"27628":27629,"27629":27630,"27630":27631,"27631":27632,"27632":27633,"27633":27634,"27634":27635,"27635":27636,"27636":27637,"27637":27638,"27638":27639,"27639":27640,"27640":27641,"27641":27642,"27642":27643,"27643":27644,"27644":27645,"27645":27646,"27646":27647,"27647":27648,"27648":27649,"27649":27650,"27650":27651,"27651":27652,"27652":27653,"27653":27654,"27654":27655,"27655":27656,"27656":27657,"27657":27658,"27658":27659,"27659":27660,"27660":27661,"27661":27662,"27662":27663,"27663":27664,"27664":27665,"27665":27666,"27666":27667,"27667":27668,"27668":27669,"27669":27670,"27670":27671,"27671":27672,"27672":27673,"27673":27674,"27674":27675,"27675":27676,"27676":27677,"27677":27678,"27678":27679,"27679":27680,"27680":27681,"27681":27682,"27682":27683,"27683":27684,"27684":27685,"27685":27686,"27686":27687,"27687":27688,"27688":27689,"27689":27690,"27690":27691,"27691":27692,"27692":27693,"27693":27694,"27694":27695,"27695":27696,"27696":27697,"27697":27698,"27698":27699,"27699":27700,"27700":27701,"27701":27702,"27702":27703,"27703":27704,"27704":27705,"27705":27706,"27706":27707,"27707":27708,"27708":27709,"27709":27710,"27710":27711,"27711":27712,"27712":27713,"27713":27714,"27714":27715,"27715":27716,"27716":27717,"27717":27718,"27718":27719,"27719":27720,"27720":27721,"27721":27722,"27722":27723,"27723":27724,"27724":27725,"27725":27726,"27726":27727,"27727":27728,"27728":27729,"27729":27730,"27730":27731,"27731":27732,"27732":27733,"27733":27734,"27734":27735,"27735":27736,"27736":27737,"27737":27738,"27738":27739,"27739":27740,"27740":27741,"27741":27742,"27742":27743,"27743":27744,"27744":27745,"27745":27746,"27746":27747,"27747":27748,"27748":27749,"27749":27750,"27750":27751,"27751":27752,"27752":27753,"27753":27754,"27754":27755,"27755":27756,"27756":27757,"27757":27758,"27758":27759,"27759":27760,"27760":27761,"27761":27762,"27762":27763,"27763":27764,"27764":27765,"27765":27766,"27766":27767,"27767":27768,"27768":27769,"27769":27770,"27770":27771,"27771":27772,"27772":27773,"27773":27774,"27774":27775,"27775":27776,"27776":27777,"27777":27778,"27778":27779,"27779":27780,"27780":27781,"27781":27782,"27782":27783,"27783":27784,"27784":27785,"27785":27786,"27786":27787,"27787":27788,"27788":27789,"27789":27790,"27790":27791,"27791":27792,"27792":27793,"27793":27794,"27794":27795,"27795":27796,"27796":27797,"27797":27798,"27798":27799,"27799":27800,"27800":27801,"27801":27802,"27802":27803,"27803":27804,"27804":27805,"27805":27806,"27806":27807,"27807":27808,"27808":27809,"27809":27810,"27810":27811,"27811":27812,"27812":27813,"27813":27814,"27814":27815,"27815":27816,"27816":27817,"27817":27818,"27818":27819,"27819":27820,"27820":27821,"27821":27822,"27822":27823,"27823":27824,"27824":27825,"27825":27826,"27826":27827,"27827":27828,"27828":27829,"27829":27830,"27830":27831,"27831":27832,"27832":27833,"27833":27834,"27834":27835,"27835":27836,"27836":27837,"27837":27838,"27838":27839,"27839":27840,"27840":27841,"27841":27842,"27842":27843,"27843":27844,"27844":27845,"27845":27846,"27846":27847,"27847":27848,"27848":27849,"27849":27850,"27850":27851,"27851":27852,"27852":27853,"27853":27854,"27854":27855,"27855":27856,"27856":27857,"27857":27858,"27858":27859,"27859":27860,"27860":27861,"27861":27862,"27862":27863,"27863":27864,"27864":27865,"27865":27866,"27866":27867,"27867":27868,"27868":27869,"27869":27870,"27870":27871,"27871":27872,"27872":27873,"27873":27874,"27874":27875,"27875":27876,"27876":27877,"27877":27878,"27878":27879,"27879":27880,"27880":27881,"27881":27882,"27882":27883,"27883":27884,"27884":27885,"27885":27886,"27886":27887,"27887":27888,"27888":27889,"27889":27890,"27890":27891,"27891":27892,"27892":27893,"27893":27894,"27894":27895,"27895":27896,"27896":27897,"27897":27898,"27898":27899,"27899":27900,"27900":27901,"27901":27902,"27902":27903,"27903":27904,"27904":27905,"27905":27906,"27906":27907,"27907":27908,"27908":27909,"27909":27910,"27910":27911,"27911":27912,"27912":27913,"27913":27914,"27914":27915,"27915":27916,"27916":27917,"27917":27918,"27918":27919,"27919":27920,"27920":27921,"27921":27922,"27922":27923,"27923":27924,"27924":27925,"27925":27926,"27926":27927,"27927":27928,"27928":27929,"27929":27930,"27930":27931,"27931":27932,"27932":27933,"27933":27934,"27934":27935,"27935":27936,"27936":27937,"27937":27938,"27938":27939,"27939":27940,"27940":27941,"27941":27942,"27942":27943,"27943":27944,"27944":27945,"27945":27946,"27946":27947,"27947":27948,"27948":27949,"27949":27950,"27950":27951,"27951":27952,"27952":27953,"27953":27954,"27954":27955,"27955":27956,"27956":27957,"27957":27958,"27958":27959,"27959":27960,"27960":27961,"27961":27962,"27962":27963,"27963":27964,"27964":27965,"27965":27966,"27966":27967,"27967":27968,"27968":27969,"27969":27970,"27970":27971,"27971":27972,"27972":27973,"27973":27974,"27974":27975,"27975":27976,"27976":27977,"27977":27978,"27978":27979,"27979":27980,"27980":27981,"27981":27982,"27982":27983,"27983":27984,"27984":27985,"27985":27986,"27986":27987,"27987":27988,"27988":27989,"27989":27990,"27990":27991,"27991":27992,"27992":27993,"27993":27994,"27994":27995,"27995":27996,"27996":27997,"27997":27998,"27998":27999,"27999":28000,"28000":28001,"28001":28002,"28002":28003,"28003":28004,"28004":28005,"28005":28006,"28006":28007,"28007":28008,"28008":28009,"28009":28010,"28010":28011,"28011":28012,"28012":28013,"28013":28014,"28014":28015,"28015":28016,"28016":28017,"28017":28018,"28018":28019,"28019":28020,"28020":28021,"28021":28022,"28022":28023,"28023":28024,"28024":28025,"28025":28026,"28026":28027,"28027":28028,"28028":28029,"28029":28030,"28030":28031,"28031":28032,"28032":28033,"28033":28034,"28034":28035,"28035":28036,"28036":28037,"28037":28038,"28038":28039,"28039":28040,"28040":28041,"28041":28042,"28042":28043,"28043":28044,"28044":28045,"28045":28046,"28046":28047,"28047":28048,"28048":28049,"28049":28050,"28050":28051,"28051":28052,"28052":28053,"28053":28054,"28054":28055,"28055":28056,"28056":28057,"28057":28058,"28058":28059,"28059":28060,"28060":28061,"28061":28062,"28062":28063,"28063":28064,"28064":28065,"28065":28066,"28066":28067,"28067":28068,"28068":28069,"28069":28070,"28070":28071,"28071":28072,"28072":28073,"28073":28074,"28074":28075,"28075":28076,"28076":28077,"28077":28078,"28078":28079,"28079":28080,"28080":28081,"28081":28082,"28082":28083,"28083":28084,"28084":28085,"28085":28086,"28086":28087,"28087":28088,"28088":28089,"28089":28090,"28090":28091,"28091":28092,"28092":28093,"28093":28094,"28094":28095,"28095":28096,"28096":28097,"28097":28098,"28098":28099,"28099":28100,"28100":28101,"28101":28102,"28102":28103,"28103":28104,"28104":28105,"28105":28106,"28106":28107,"28107":28108,"28108":28109,"28109":28110,"28110":28111,"28111":28112,"28112":28113,"28113":28114,"28114":28115,"28115":28116,"28116":28117,"28117":28118,"28118":28119,"28119":28120,"28120":28121,"28121":28122,"28122":28123,"28123":28124,"28124":28125,"28125":28126,"28126":28127,"28127":28128,"28128":28129,"28129":28130,"28130":28131,"28131":28132,"28132":28133,"28133":28134,"28134":28135,"28135":28136,"28136":28137,"28137":28138,"28138":28139,"28139":28140,"28140":28141,"28141":28142,"28142":28143,"28143":28144,"28144":28145,"28145":28146,"28146":28147,"28147":28148,"28148":28149,"28149":28150,"28150":28151,"28151":28152,"28152":28153,"28153":28154,"28154":28155,"28155":28156,"28156":28157,"28157":28158,"28158":28159,"28159":28160,"28160":28161,"28161":28162,"28162":28163,"28163":28164,"28164":28165,"28165":28166,"28166":28167,"28167":28168,"28168":28169,"28169":28170,"28170":28171,"28171":28172,"28172":28173,"28173":28174,"28174":28175,"28175":28176,"28176":28177,"28177":28178,"28178":28179,"28179":28180,"28180":28181,"28181":28182,"28182":28183,"28183":28184,"28184":28185,"28185":28186,"28186":28187,"28187":28188,"28188":28189,"28189":28190,"28190":28191,"28191":28192,"28192":28193,"28193":28194,"28194":28195,"28195":28196,"28196":28197,"28197":28198,"28198":28199,"28199":28200,"28200":28201,"28201":28202,"28202":28203,"28203":28204,"28204":28205,"28205":28206,"28206":28207,"28207":28208,"28208":28209,"28209":28210,"28210":28211,"28211":28212,"28212":28213,"28213":28214,"28214":28215,"28215":28216,"28216":28217,"28217":28218,"28218":28219,"28219":28220,"28220":28221,"28221":28222,"28222":28223,"28223":28224,"28224":28225,"28225":28226,"28226":28227,"28227":28228,"28228":28229,"28229":28230,"28230":28231,"28231":28232,"28232":28233,"28233":28234,"28234":28235,"28235":28236,"28236":28237,"28237":28238,"28238":28239,"28239":28240,"28240":28241,"28241":28242,"28242":28243,"28243":28244,"28244":28245,"28245":28246,"28246":28247,"28247":28248,"28248":28249,"28249":28250,"28250":28251,"28251":28252,"28252":28253,"28253":28254,"28254":28255,"28255":28256,"28256":28257,"28257":28258,"28258":28259,"28259":28260,"28260":28261,"28261":28262,"28262":28263,"28263":28264,"28264":28265,"28265":28266,"28266":28267,"28267":28268,"28268":28269,"28269":28270,"28270":28271,"28271":28272,"28272":28273,"28273":28274,"28274":28275,"28275":28276,"28276":28277,"28277":28278,"28278":28279,"28279":28280,"28280":28281,"28281":28282,"28282":28283,"28283":28284,"28284":28285,"28285":28286,"28286":28287,"28287":28288,"28288":28289,"28289":28290,"28290":28291,"28291":28292,"28292":28293,"28293":28294,"28294":28295,"28295":28296,"28296":28297,"28297":28298,"28298":28299,"28299":28300,"28300":28301,"28301":28302,"28302":28303,"28303":28304,"28304":28305,"28305":28306,"28306":28307,"28307":28308,"28308":28309,"28309":28310,"28310":28311,"28311":28312,"28312":28313,"28313":28314,"28314":28315,"28315":28316,"28316":28317,"28317":28318,"28318":28319,"28319":28320,"28320":28321,"28321":28322,"28322":28323,"28323":28324,"28324":28325,"28325":28326,"28326":28327,"28327":28328,"28328":28329,"28329":28330,"28330":28331,"28331":28332,"28332":28333,"28333":28334,"28334":28335,"28335":28336,"28336":28337,"28337":28338,"28338":28339,"28339":28340,"28340":28341,"28341":28342,"28342":28343,"28343":28344,"28344":28345,"28345":28346,"28346":28347,"28347":28348,"28348":28349,"28349":28350,"28350":28351,"28351":28352,"28352":28353,"28353":28354,"28354":28355,"28355":28356,"28356":28357,"28357":28358,"28358":28359,"28359":28360,"28360":28361,"28361":28362,"28362":28363,"28363":28364,"28364":28365,"28365":28366,"28366":28367,"28367":28368,"28368":28369,"28369":28370,"28370":28371,"28371":28372,"28372":28373,"28373":28374,"28374":28375,"28375":28376,"28376":28377,"28377":28378,"28378":28379,"28379":28380,"28380":28381,"28381":28382,"28382":28383,"28383":28384,"28384":28385,"28385":28386,"28386":28387,"28387":28388,"28388":28389,"28389":28390,"28390":28391,"28391":28392,"28392":28393,"28393":28394,"28394":28395,"28395":28396,"28396":28397,"28397":28398,"28398":28399,"28399":28400,"28400":28401,"28401":28402,"28402":28403,"28403":28404,"28404":28405,"28405":28406,"28406":28407,"28407":28408,"28408":28409,"28409":28410,"28410":28411,"28411":28412,"28412":28413,"28413":28414,"28414":28415,"28415":28416,"28416":28417,"28417":28418,"28418":28419,"28419":28420,"28420":28421,"28421":28422,"28422":28423,"28423":28424,"28424":28425,"28425":28426,"28426":28427,"28427":28428,"28428":28429,"28429":28430,"28430":28431,"28431":28432,"28432":28433,"28433":28434,"28434":28435,"28435":28436,"28436":28437,"28437":28438,"28438":28439,"28439":28440,"28440":28441,"28441":28442,"28442":28443,"28443":28444,"28444":28445,"28445":28446,"28446":28447,"28447":28448,"28448":28449,"28449":28450,"28450":28451,"28451":28452,"28452":28453,"28453":28454,"28454":28455,"28455":28456,"28456":28457,"28457":28458,"28458":28459,"28459":28460,"28460":28461,"28461":28462,"28462":28463,"28463":28464,"28464":28465,"28465":28466,"28466":28467,"28467":28468,"28468":28469,"28469":28470,"28470":28471,"28471":28472,"28472":28473,"28473":28474,"28474":28475,"28475":28476,"28476":28477,"28477":28478,"28478":28479,"28479":28480,"28480":28481,"28481":28482,"28482":28483,"28483":28484,"28484":28485,"28485":28486,"28486":28487,"28487":28488,"28488":28489,"28489":28490,"28490":28491,"28491":28492,"28492":28493,"28493":28494,"28494":28495,"28495":28496,"28496":28497,"28497":28498,"28498":28499,"28499":28500,"28500":28501,"28501":28502,"28502":28503,"28503":28504,"28504":28505,"28505":28506,"28506":28507,"28507":28508,"28508":28509,"28509":28510,"28510":28511,"28511":28512,"28512":28513,"28513":28514,"28514":28515,"28515":28516,"28516":28517,"28517":28518,"28518":28519,"28519":28520,"28520":28521,"28521":28522,"28522":28523,"28523":28524,"28524":28525,"28525":28526,"28526":28527,"28527":28528,"28528":28529,"28529":28530,"28530":28531,"28531":28532,"28532":28533,"28533":28534,"28534":28535,"28535":28536,"28536":28537,"28537":28538,"28538":28539,"28539":28540,"28540":28541,"28541":28542,"28542":28543,"28543":28544,"28544":28545,"28545":28546,"28546":28547,"28547":28548,"28548":28549,"28549":28550,"28550":28551,"28551":28552,"28552":28553,"28553":28554,"28554":28555,"28555":28556,"28556":28557,"28557":28558,"28558":28559,"28559":28560,"28560":28561,"28561":28562,"28562":28563,"28563":28564,"28564":28565,"28565":28566,"28566":28567,"28567":28568,"28568":28569,"28569":28570,"28570":28571,"28571":28572,"28572":28573,"28573":28574,"28574":28575,"28575":28576,"28576":28577,"28577":28578,"28578":28579,"28579":28580,"28580":28581,"28581":28582,"28582":28583,"28583":28584,"28584":28585,"28585":28586,"28586":28587,"28587":28588,"28588":28589,"28589":28590,"28590":28591,"28591":28592,"28592":28593,"28593":28594,"28594":28595,"28595":28596,"28596":28597,"28597":28598,"28598":28599,"28599":28600,"28600":28601,"28601":28602,"28602":28603,"28603":28604,"28604":28605,"28605":28606,"28606":28607,"28607":28608,"28608":28609,"28609":28610,"28610":28611,"28611":28612,"28612":28613,"28613":28614,"28614":28615,"28615":28616,"28616":28617,"28617":28618,"28618":28619,"28619":28620,"28620":28621,"28621":28622,"28622":28623,"28623":28624,"28624":28625,"28625":28626,"28626":28627,"28627":28628,"28628":28629,"28629":28630,"28630":28631,"28631":28632,"28632":28633,"28633":28634,"28634":28635,"28635":28636,"28636":28637,"28637":28638,"28638":28639,"28639":28640,"28640":28641,"28641":28642,"28642":28643,"28643":28644,"28644":28645,"28645":28646,"28646":28647,"28647":28648,"28648":28649,"28649":28650,"28650":28651,"28651":28652,"28652":28653,"28653":28654,"28654":28655,"28655":28656,"28656":28657,"28657":28658,"28658":28659,"28659":28660,"28660":28661,"28661":28662,"28662":28663,"28663":28664,"28664":28665,"28665":28666,"28666":28667,"28667":28668,"28668":28669,"28669":28670,"28670":28671,"28671":28672,"28672":28673,"28673":28674,"28674":28675,"28675":28676,"28676":28677,"28677":28678,"28678":28679,"28679":28680,"28680":28681,"28681":28682,"28682":28683,"28683":28684,"28684":28685,"28685":28686,"28686":28687,"28687":28688,"28688":28689,"28689":28690,"28690":28691,"28691":28692,"28692":28693,"28693":28694,"28694":28695,"28695":28696,"28696":28697,"28697":28698,"28698":28699,"28699":28700,"28700":28701,"28701":28702,"28702":28703,"28703":28704,"28704":28705,"28705":28706,"28706":28707,"28707":28708,"28708":28709,"28709":28710,"28710":28711,"28711":28712,"28712":28713,"28713":28714,"28714":28715,"28715":28716,"28716":28717,"28717":28718,"28718":28719,"28719":28720,"28720":28721,"28721":28722,"28722":28723,"28723":28724,"28724":28725,"28725":28726,"28726":28727,"28727":28728,"28728":28729,"28729":28730,"28730":28731,"28731":28732,"28732":28733,"28733":28734,"28734":28735,"28735":28736,"28736":28737,"28737":28738,"28738":28739,"28739":28740,"28740":28741,"28741":28742,"28742":28743,"28743":28744,"28744":28745,"28745":28746,"28746":28747,"28747":28748,"28748":28749,"28749":28750,"28750":28751,"28751":28752,"28752":28753,"28753":28754,"28754":28755,"28755":28756,"28756":28757,"28757":28758,"28758":28759,"28759":28760,"28760":28761,"28761":28762,"28762":28763,"28763":28764,"28764":28765,"28765":28766,"28766":28767,"28767":28768,"28768":28769,"28769":28770,"28770":28771,"28771":28772,"28772":28773,"28773":28774,"28774":28775,"28775":28776,"28776":28777,"28777":28778,"28778":28779,"28779":28780,"28780":28781,"28781":28782,"28782":28783,"28783":28784,"28784":28785,"28785":28786,"28786":28787,"28787":28788,"28788":28789,"28789":28790,"28790":28791,"28791":28792,"28792":28793,"28793":28794,"28794":28795,"28795":28796,"28796":28797,"28797":28798,"28798":28799,"28799":28800,"28800":28801,"28801":28802,"28802":28803,"28803":28804,"28804":28805,"28805":28806,"28806":28807,"28807":28808,"28808":28809,"28809":28810,"28810":28811,"28811":28812,"28812":28813,"28813":28814,"28814":28815,"28815":28816,"28816":28817,"28817":28818,"28818":28819,"28819":28820,"28820":28821,"28821":28822,"28822":28823,"28823":28824,"28824":28825,"28825":28826,"28826":28827,"28827":28828,"28828":28829,"28829":28830,"28830":28831,"28831":28832,"28832":28833,"28833":28834,"28834":28835,"28835":28836,"28836":28837,"28837":28838,"28838":28839,"28839":28840,"28840":28841,"28841":28842,"28842":28843,"28843":28844,"28844":28845,"28845":28846,"28846":28847,"28847":28848,"28848":28849,"28849":28850,"28850":28851,"28851":28852,"28852":28853,"28853":28854,"28854":28855,"28855":28856,"28856":28857,"28857":28858,"28858":28859,"28859":28860,"28860":28861,"28861":28862,"28862":28863,"28863":28864,"28864":28865,"28865":28866,"28866":28867,"28867":28868,"28868":28869,"28869":28870,"28870":28871,"28871":28872,"28872":28873,"28873":28874,"28874":28875,"28875":28876,"28876":28877,"28877":28878,"28878":28879,"28879":28880,"28880":28881,"28881":28882,"28882":28883,"28883":28884,"28884":28885,"28885":28886,"28886":28887,"28887":28888,"28888":28889,"28889":28890,"28890":28891,"28891":28892,"28892":28893,"28893":28894,"28894":28895,"28895":28896,"28896":28897,"28897":28898,"28898":28899,"28899":28900,"28900":28901,"28901":28902,"28902":28903,"28903":28904,"28904":28905,"28905":28906,"28906":28907,"28907":28908,"28908":28909,"28909":28910,"28910":28911,"28911":28912,"28912":28913,"28913":28914,"28914":28915,"28915":28916,"28916":28917,"28917":28918,"28918":28919,"28919":28920,"28920":28921,"28921":28922,"28922":28923,"28923":28924,"28924":28925,"28925":28926,"28926":28927,"28927":28928,"28928":28929,"28929":28930,"28930":28931,"28931":28932,"28932":28933,"28933":28934,"28934":28935,"28935":28936,"28936":28937,"28937":28938,"28938":28939,"28939":28940,"28940":28941,"28941":28942,"28942":28943,"28943":28944,"28944":28945,"28945":28946,"28946":28947,"28947":28948,"28948":28949,"28949":28950,"28950":28951,"28951":28952,"28952":28953,"28953":28954,"28954":28955,"28955":28956,"28956":28957,"28957":28958,"28958":28959,"28959":28960,"28960":28961,"28961":28962,"28962":28963,"28963":28964,"28964":28965,"28965":28966,"28966":28967,"28967":28968,"28968":28969,"28969":28970,"28970":28971,"28971":28972,"28972":28973,"28973":28974,"28974":28975,"28975":28976,"28976":28977,"28977":28978,"28978":28979,"28979":28980,"28980":28981,"28981":28982,"28982":28983,"28983":28984,"28984":28985,"28985":28986,"28986":28987,"28987":28988,"28988":28989,"28989":28990,"28990":28991,"28991":28992,"28992":28993,"28993":28994,"28994":28995,"28995":28996,"28996":28997,"28997":28998,"28998":28999,"28999":29000,"29000":29001,"29001":29002,"29002":29003,"29003":29004,"29004":29005,"29005":29006,"29006":29007,"29007":29008,"29008":29009,"29009":29010,"29010":29011,"29011":29012,"29012":29013,"29013":29014,"29014":29015,"29015":29016,"29016":29017,"29017":29018,"29018":29019,"29019":29020,"29020":29021,"29021":29022,"29022":29023,"29023":29024,"29024":29025,"29025":29026,"29026":29027,"29027":29028,"29028":29029,"29029":29030,"29030":29031,"29031":29032,"29032":29033,"29033":29034,"29034":29035,"29035":29036,"29036":29037,"29037":29038,"29038":29039,"29039":29040,"29040":29041,"29041":29042,"29042":29043,"29043":29044,"29044":29045,"29045":29046,"29046":29047,"29047":29048,"29048":29049,"29049":29050,"29050":29051,"29051":29052,"29052":29053,"29053":29054,"29054":29055,"29055":29056,"29056":29057,"29057":29058,"29058":29059,"29059":29060,"29060":29061,"29061":29062,"29062":29063,"29063":29064,"29064":29065,"29065":29066,"29066":29067,"29067":29068,"29068":29069,"29069":29070,"29070":29071,"29071":29072,"29072":29073,"29073":29074,"29074":29075,"29075":29076,"29076":29077,"29077":29078,"29078":29079,"29079":29080,"29080":29081,"29081":29082,"29082":29083,"29083":29084,"29084":29085,"29085":29086,"29086":29087,"29087":29088,"29088":29089,"29089":29090,"29090":29091,"29091":29092,"29092":29093,"29093":29094,"29094":29095,"29095":29096,"29096":29097,"29097":29098,"29098":29099,"29099":29100,"29100":29101,"29101":29102,"29102":29103,"29103":29104,"29104":29105,"29105":29106,"29106":29107,"29107":29108,"29108":29109,"29109":29110,"29110":29111,"29111":29112,"29112":29113,"29113":29114,"29114":29115,"29115":29116,"29116":29117,"29117":29118,"29118":29119,"29119":29120,"29120":29121,"29121":29122,"29122":29123,"29123":29124,"29124":29125,"29125":29126,"29126":29127,"29127":29128,"29128":29129,"29129":29130,"29130":29131,"29131":29132,"29132":29133,"29133":29134,"29134":29135,"29135":29136,"29136":29137,"29137":29138,"29138":29139,"29139":29140,"29140":29141,"29141":29142,"29142":29143,"29143":29144,"29144":29145,"29145":29146,"29146":29147,"29147":29148,"29148":29149,"29149":29150,"29150":29151,"29151":29152,"29152":29153,"29153":29154,"29154":29155,"29155":29156,"29156":29157,"29157":29158,"29158":29159,"29159":29160,"29160":29161,"29161":29162,"29162":29163,"29163":29164,"29164":29165,"29165":29166,"29166":29167,"29167":29168,"29168":29169,"29169":29170,"29170":29171,"29171":29172,"29172":29173,"29173":29174,"29174":29175,"29175":29176,"29176":29177,"29177":29178,"29178":29179,"29179":29180,"29180":29181,"29181":29182,"29182":29183,"29183":29184,"29184":29185,"29185":29186,"29186":29187,"29187":29188,"29188":29189,"29189":29190,"29190":29191,"29191":29192,"29192":29193,"29193":29194,"29194":29195,"29195":29196,"29196":29197,"29197":29198,"29198":29199,"29199":29200,"29200":29201,"29201":29202,"29202":29203,"29203":29204,"29204":29205,"29205":29206,"29206":29207,"29207":29208,"29208":29209,"29209":29210,"29210":29211,"29211":29212,"29212":29213,"29213":29214,"29214":29215,"29215":29216,"29216":29217,"29217":29218,"29218":29219,"29219":29220,"29220":29221,"29221":29222,"29222":29223,"29223":29224,"29224":29225,"29225":29226,"29226":29227,"29227":29228,"29228":29229,"29229":29230,"29230":29231,"29231":29232,"29232":29233,"29233":29234,"29234":29235,"29235":29236,"29236":29237,"29237":29238,"29238":29239,"29239":29240,"29240":29241,"29241":29242,"29242":29243,"29243":29244,"29244":29245,"29245":29246,"29246":29247,"29247":29248,"29248":29249,"29249":29250,"29250":29251,"29251":29252,"29252":29253,"29253":29254,"29254":29255,"29255":29256,"29256":29257,"29257":29258,"29258":29259,"29259":29260,"29260":29261,"29261":29262,"29262":29263,"29263":29264,"29264":29265,"29265":29266,"29266":29267,"29267":29268,"29268":29269,"29269":29270,"29270":29271,"29271":29272,"29272":29273,"29273":29274,"29274":29275,"29275":29276,"29276":29277,"29277":29278,"29278":29279,"29279":29280,"29280":29281,"29281":29282,"29282":29283,"29283":29284,"29284":29285,"29285":29286,"29286":29287,"29287":29288,"29288":29289,"29289":29290,"29290":29291,"29291":29292,"29292":29293,"29293":29294,"29294":29295,"29295":29296,"29296":29297,"29297":29298,"29298":29299,"29299":29300,"29300":29301,"29301":29302,"29302":29303,"29303":29304,"29304":29305,"29305":29306,"29306":29307,"29307":29308,"29308":29309,"29309":29310,"29310":29311,"29311":29312,"29312":29313,"29313":29314,"29314":29315,"29315":29316,"29316":29317,"29317":29318,"29318":29319,"29319":29320,"29320":29321,"29321":29322,"29322":29323,"29323":29324,"29324":29325,"29325":29326,"29326":29327,"29327":29328,"29328":29329,"29329":29330,"29330":29331,"29331":29332,"29332":29333,"29333":29334,"29334":29335,"29335":29336,"29336":29337,"29337":29338,"29338":29339,"29339":29340,"29340":29341,"29341":29342,"29342":29343,"29343":29344,"29344":29345,"29345":29346,"29346":29347,"29347":29348,"29348":29349,"29349":29350,"29350":29351,"29351":29352,"29352":29353,"29353":29354,"29354":29355,"29355":29356,"29356":29357,"29357":29358,"29358":29359,"29359":29360,"29360":29361,"29361":29362,"29362":29363,"29363":29364,"29364":29365,"29365":29366,"29366":29367,"29367":29368,"29368":29369,"29369":29370,"29370":29371,"29371":29372,"29372":29373,"29373":29374,"29374":29375,"29375":29376,"29376":29377,"29377":29378,"29378":29379,"29379":29380,"29380":29381,"29381":29382,"29382":29383,"29383":29384,"29384":29385,"29385":29386,"29386":29387,"29387":29388,"29388":29389,"29389":29390,"29390":29391,"29391":29392,"29392":29393,"29393":29394,"29394":29395,"29395":29396,"29396":29397,"29397":29398,"29398":29399,"29399":29400,"29400":29401,"29401":29402,"29402":29403,"29403":29404,"29404":29405,"29405":29406,"29406":29407,"29407":29408,"29408":29409,"29409":29410,"29410":29411,"29411":29412,"29412":29413,"29413":29414,"29414":29415,"29415":29416,"29416":29417,"29417":29418,"29418":29419,"29419":29420,"29420":29421,"29421":29422,"29422":29423,"29423":29424,"29424":29425,"29425":29426,"29426":29427,"29427":29428,"29428":29429,"29429":29430,"29430":29431,"29431":29432,"29432":29433,"29433":29434,"29434":29435,"29435":29436,"29436":29437,"29437":29438,"29438":29439,"29439":29440,"29440":29441,"29441":29442,"29442":29443,"29443":29444,"29444":29445,"29445":29446,"29446":29447,"29447":29448,"29448":29449,"29449":29450,"29450":29451,"29451":29452,"29452":29453,"29453":29454,"29454":29455,"29455":29456,"29456":29457,"29457":29458,"29458":29459,"29459":29460,"29460":29461,"29461":29462,"29462":29463,"29463":29464,"29464":29465,"29465":29466,"29466":29467,"29467":29468,"29468":29469,"29469":29470,"29470":29471,"29471":29472,"29472":29473,"29473":29474,"29474":29475,"29475":29476,"29476":29477,"29477":29478,"29478":29479,"29479":29480,"29480":29481,"29481":29482,"29482":29483,"29483":29484,"29484":29485,"29485":29486,"29486":29487,"29487":29488,"29488":29489,"29489":29490,"29490":29491,"29491":29492,"29492":29493,"29493":29494,"29494":29495,"29495":29496,"29496":29497,"29497":29498,"29498":29499,"29499":29500,"29500":29501,"29501":29502,"29502":29503,"29503":29504,"29504":29505,"29505":29506,"29506":29507,"29507":29508,"29508":29509,"29509":29510,"29510":29511,"29511":29512,"29512":29513,"29513":29514,"29514":29515,"29515":29516,"29516":29517,"29517":29518,"29518":29519,"29519":29520,"29520":29521,"29521":29522,"29522":29523,"29523":29524,"29524":29525,"29525":29526,"29526":29527,"29527":29528,"29528":29529,"29529":29530,"29530":29531,"29531":29532,"29532":29533,"29533":29534,"29534":29535,"29535":29536,"29536":29537,"29537":29538,"29538":29539,"29539":29540,"29540":29541,"29541":29542,"29542":29543,"29543":29544,"29544":29545,"29545":29546,"29546":29547,"29547":29548,"29548":29549,"29549":29550,"29550":29551,"29551":29552,"29552":29553,"29553":29554,"29554":29555,"29555":29556,"29556":29557,"29557":29558,"29558":29559,"29559":29560,"29560":29561,"29561":29562,"29562":29563,"29563":29564,"29564":29565,"29565":29566,"29566":29567,"29567":29568,"29568":29569,"29569":29570,"29570":29571,"29571":29572,"29572":29573,"29573":29574,"29574":29575,"29575":29576,"29576":29577,"29577":29578,"29578":29579,"29579":29580,"29580":29581,"29581":29582,"29582":29583,"29583":29584,"29584":29585,"29585":29586,"29586":29587,"29587":29588,"29588":29589,"29589":29590,"29590":29591,"29591":29592,"29592":29593,"29593":29594,"29594":29595,"29595":29596,"29596":29597,"29597":29598,"29598":29599,"29599":29600,"29600":29601,"29601":29602,"29602":29603,"29603":29604,"29604":29605,"29605":29606,"29606":29607,"29607":29608,"29608":29609,"29609":29610,"29610":29611,"29611":29612,"29612":29613,"29613":29614,"29614":29615,"29615":29616,"29616":29617,"29617":29618,"29618":29619,"29619":29620,"29620":29621,"29621":29622,"29622":29623,"29623":29624,"29624":29625,"29625":29626,"29626":29627,"29627":29628,"29628":29629,"29629":29630,"29630":29631,"29631":29632,"29632":29633,"29633":29634,"29634":29635,"29635":29636,"29636":29637,"29637":29638,"29638":29639,"29639":29640,"29640":29641,"29641":29642,"29642":29643,"29643":29644,"29644":29645,"29645":29646,"29646":29647,"29647":29648,"29648":29649,"29649":29650,"29650":29651,"29651":29652,"29652":29653,"29653":29654,"29654":29655,"29655":29656,"29656":29657,"29657":29658,"29658":29659,"29659":29660,"29660":29661,"29661":29662,"29662":29663,"29663":29664,"29664":29665,"29665":29666,"29666":29667,"29667":29668,"29668":29669,"29669":29670,"29670":29671,"29671":29672,"29672":29673,"29673":29674,"29674":29675,"29675":29676,"29676":29677,"29677":29678,"29678":29679,"29679":29680,"29680":29681,"29681":29682,"29682":29683,"29683":29684,"29684":29685,"29685":29686,"29686":29687,"29687":29688,"29688":29689,"29689":29690,"29690":29691,"29691":29692,"29692":29693,"29693":29694,"29694":29695,"29695":29696,"29696":29697,"29697":29698,"29698":29699,"29699":29700,"29700":29701,"29701":29702,"29702":29703,"29703":29704,"29704":29705,"29705":29706,"29706":29707,"29707":29708,"29708":29709,"29709":29710,"29710":29711,"29711":29712,"29712":29713,"29713":29714,"29714":29715,"29715":29716,"29716":29717,"29717":29718,"29718":29719,"29719":29720,"29720":29721,"29721":29722,"29722":29723,"29723":29724,"29724":29725,"29725":29726,"29726":29727,"29727":29728,"29728":29729,"29729":29730,"29730":29731,"29731":29732,"29732":29733,"29733":29734,"29734":29735,"29735":29736,"29736":29737,"29737":29738,"29738":29739,"29739":29740,"29740":29741,"29741":29742,"29742":29743,"29743":29744,"29744":29745,"29745":29746,"29746":29747,"29747":29748,"29748":29749,"29749":29750,"29750":29751,"29751":29752,"29752":29753,"29753":29754,"29754":29755,"29755":29756,"29756":29757,"29757":29758,"29758":29759,"29759":29760,"29760":29761,"29761":29762,"29762":29763,"29763":29764,"29764":29765,"29765":29766,"29766":29767,"29767":29768,"29768":29769,"29769":29770,"29770":29771,"29771":29772,"29772":29773,"29773":29774,"29774":29775,"29775":29776,"29776":29777,"29777":29778,"29778":29779,"29779":29780,"29780":29781,"29781":29782,"29782":29783,"29783":29784,"29784":29785,"29785":29786,"29786":29787,"29787":29788,"29788":29789,"29789":29790,"29790":29791,"29791":29792,"29792":29793,"29793":29794,"29794":29795,"29795":29796,"29796":29797,"29797":29798,"29798":29799,"29799":29800,"29800":29801,"29801":29802,"29802":29803,"29803":29804,"29804":29805,"29805":29806,"29806":29807,"29807":29808,"29808":29809,"29809":29810,"29810":29811,"29811":29812,"29812":29813,"29813":29814,"29814":29815,"29815":29816,"29816":29817,"29817":29818,"29818":29819,"29819":29820,"29820":29821,"29821":29822,"29822":29823,"29823":29824,"29824":29825,"29825":29826,"29826":29827,"29827":29828,"29828":29829,"29829":29830,"29830":29831,"29831":29832,"29832":29833,"29833":29834,"29834":29835,"29835":29836,"29836":29837,"29837":29838,"29838":29839,"29839":29840,"29840":29841,"29841":29842,"29842":29843,"29843":29844,"29844":29845,"29845":29846,"29846":29847,"29847":29848,"29848":29849,"29849":29850,"29850":29851,"29851":29852,"29852":29853,"29853":29854,"29854":29855,"29855":29856,"29856":29857,"29857":29858,"29858":29859,"29859":29860,"29860":29861,"29861":29862,"29862":29863,"29863":29864,"29864":29865,"29865":29866,"29866":29867,"29867":29868,"29868":29869,"29869":29870,"29870":29871,"29871":29872,"29872":29873,"29873":29874,"29874":29875,"29875":29876,"29876":29877,"29877":29878,"29878":29879,"29879":29880,"29880":29881,"29881":29882,"29882":29883,"29883":29884,"29884":29885,"29885":29886,"29886":29887,"29887":29888,"29888":29889,"29889":29890,"29890":29891,"29891":29892,"29892":29893,"29893":29894,"29894":29895,"29895":29896,"29896":29897,"29897":29898,"29898":29899,"29899":29900,"29900":29901,"29901":29902,"29902":29903,"29903":29904,"29904":29905,"29905":29906,"29906":29907,"29907":29908,"29908":29909,"29909":29910,"29910":29911,"29911":29912,"29912":29913,"29913":29914,"29914":29915,"29915":29916,"29916":29917,"29917":29918,"29918":29919,"29919":29920,"29920":29921,"29921":29922,"29922":29923,"29923":29924,"29924":29925,"29925":29926,"29926":29927,"29927":29928,"29928":29929,"29929":29930,"29930":29931,"29931":29932,"29932":29933,"29933":29934,"29934":29935,"29935":29936,"29936":29937,"29937":29938,"29938":29939,"29939":29940,"29940":29941,"29941":29942,"29942":29943,"29943":29944,"29944":29945,"29945":29946,"29946":29947,"29947":29948,"29948":29949,"29949":29950,"29950":29951,"29951":29952,"29952":29953,"29953":29954,"29954":29955,"29955":29956,"29956":29957,"29957":29958,"29958":29959,"29959":29960,"29960":29961,"29961":29962,"29962":29963,"29963":29964,"29964":29965,"29965":29966,"29966":29967,"29967":29968,"29968":29969,"29969":29970,"29970":29971,"29971":29972,"29972":29973,"29973":29974,"29974":29975,"29975":29976,"29976":29977,"29977":29978,"29978":29979,"29979":29980,"29980":29981,"29981":29982,"29982":29983,"29983":29984,"29984":29985,"29985":29986,"29986":29987,"29987":29988,"29988":29989,"29989":29990,"29990":29991,"29991":29992,"29992":29993,"29993":29994,"29994":29995,"29995":29996,"29996":29997,"29997":29998,"29998":29999,"29999":30000,"30000":30001,"30001":30002,"30002":30003,"30003":30004,"30004":30005,"30005":30006,"30006":30007,"30007":30008,"30008":30009,"30009":30010,"30010":30011,"30011":30012,"30012":30013,"30013":30014,"30014":30015,"30015":30016,"30016":30017,"30017":30018,"30018":30019,"30019":30020,"30020":30021,"30021":30022,"30022":30023,"30023":30024,"30024":30025,"30025":30026,"30026":30027,"30027":30028,"30028":30029,"30029":30030,"30030":30031,"30031":30032,"30032":30033,"30033":30034,"30034":30035,"30035":30036,"30036":30037,"30037":30038,"30038":30039,"30039":30040,"30040":30041,"30041":30042,"30042":30043,"30043":30044,"30044":30045,"30045":30046,"30046":30047,"30047":30048,"30048":30049,"30049":30050,"30050":30051,"30051":30052,"30052":30053,"30053":30054,"30054":30055,"30055":30056,"30056":30057,"30057":30058,"30058":30059,"30059":30060,"30060":30061,"30061":30062,"30062":30063,"30063":30064,"30064":30065,"30065":30066,"30066":30067,"30067":30068,"30068":30069,"30069":30070,"30070":30071,"30071":30072,"30072":30073,"30073":30074,"30074":30075,"30075":30076,"30076":30077,"30077":30078,"30078":30079,"30079":30080,"30080":30081,"30081":30082,"30082":30083,"30083":30084,"30084":30085,"30085":30086,"30086":30087,"30087":30088,"30088":30089,"30089":30090,"30090":30091,"30091":30092,"30092":30093,"30093":30094,"30094":30095,"30095":30096,"30096":30097,"30097":30098,"30098":30099,"30099":30100,"30100":30101,"30101":30102,"30102":30103,"30103":30104,"30104":30105,"30105":30106,"30106":30107,"30107":30108,"30108":30109,"30109":30110,"30110":30111,"30111":30112,"30112":30113,"30113":30114,"30114":30115,"30115":30116,"30116":30117,"30117":30118,"30118":30119,"30119":30120,"30120":30121,"30121":30122,"30122":30123,"30123":30124,"30124":30125,"30125":30126,"30126":30127,"30127":30128,"30128":30129,"30129":30130,"30130":30131,"30131":30132,"30132":30133,"30133":30134,"30134":30135,"30135":30136,"30136":30137,"30137":30138,"30138":30139,"30139":30140,"30140":30141,"30141":30142,"30142":30143,"30143":30144,"30144":30145,"30145":30146,"30146":30147,"30147":30148,"30148":30149,"30149":30150,"30150":30151,"30151":30152,"30152":30153,"30153":30154,"30154":30155,"30155":30156,"30156":30157,"30157":30158,"30158":30159,"30159":30160,"30160":30161,"30161":30162,"30162":30163,"30163":30164,"30164":30165,"30165":30166,"30166":30167,"30167":30168,"30168":30169,"30169":30170,"30170":30171,"30171":30172,"30172":30173,"30173":30174,"30174":30175,"30175":30176,"30176":30177,"30177":30178,"30178":30179,"30179":30180,"30180":30181,"30181":30182,"30182":30183,"30183":30184,"30184":30185,"30185":30186,"30186":30187,"30187":30188,"30188":30189,"30189":30190,"30190":30191,"30191":30192,"30192":30193,"30193":30194,"30194":30195,"30195":30196,"30196":30197,"30197":30198,"30198":30199,"30199":30200,"30200":30201,"30201":30202,"30202":30203,"30203":30204,"30204":30205,"30205":30206,"30206":30207,"30207":30208,"30208":30209,"30209":30210,"30210":30211,"30211":30212,"30212":30213,"30213":30214,"30214":30215,"30215":30216,"30216":30217,"30217":30218,"30218":30219,"30219":30220,"30220":30221,"30221":30222,"30222":30223,"30223":30224,"30224":30225,"30225":30226,"30226":30227,"30227":30228,"30228":30229,"30229":30230,"30230":30231,"30231":30232,"30232":30233,"30233":30234,"30234":30235,"30235":30236,"30236":30237,"30237":30238,"30238":30239,"30239":30240,"30240":30241,"30241":30242,"30242":30243,"30243":30244,"30244":30245,"30245":30246,"30246":30247,"30247":30248,"30248":30249,"30249":30250,"30250":30251,"30251":30252,"30252":30253,"30253":30254,"30254":30255,"30255":30256,"30256":30257,"30257":30258,"30258":30259,"30259":30260,"30260":30261,"30261":30262,"30262":30263,"30263":30264,"30264":30265,"30265":30266,"30266":30267,"30267":30268,"30268":30269,"30269":30270,"30270":30271,"30271":30272,"30272":30273,"30273":30274,"30274":30275,"30275":30276,"30276":30277,"30277":30278,"30278":30279,"30279":30280,"30280":30281,"30281":30282,"30282":30283,"30283":30284,"30284":30285,"30285":30286,"30286":30287,"30287":30288,"30288":30289,"30289":30290,"30290":30291,"30291":30292,"30292":30293,"30293":30294,"30294":30295,"30295":30296,"30296":30297,"30297":30298,"30298":30299,"30299":30300,"30300":30301,"30301":30302,"30302":30303,"30303":30304,"30304":30305,"30305":30306,"30306":30307,"30307":30308,"30308":30309,"30309":30310,"30310":30311,"30311":30312,"30312":30313,"30313":30314,"30314":30315,"30315":30316,"30316":30317,"30317":30318,"30318":30319,"30319":30320,"30320":30321,"30321":30322,"30322":30323,"30323":30324,"30324":30325,"30325":30326,"30326":30327,"30327":30328,"30328":30329,"30329":30330,"30330":30331,"30331":30332,"30332":30333,"30333":30334,"30334":30335,"30335":30336,"30336":30337,"30337":30338,"30338":30339,"30339":30340,"30340":30341,"30341":30342,"30342":30343,"30343":30344,"30344":30345,"30345":30346,"30346":30347,"30347":30348,"30348":30349,"30349":30350,"30350":30351,"30351":30352,"30352":30353,"30353":30354,"30354":30355,"30355":30356,"30356":30357,"30357":30358,"30358":30359,"30359":30360,"30360":30361,"30361":30362,"30362":30363,"30363":30364,"30364":30365,"30365":30366,"30366":30367,"30367":30368,"30368":30369,"30369":30370,"30370":30371,"30371":30372,"30372":30373,"30373":30374,"30374":30375,"30375":30376,"30376":30377,"30377":30378,"30378":30379,"30379":30380,"30380":30381,"30381":30382,"30382":30383,"30383":30384,"30384":30385,"30385":30386,"30386":30387,"30387":30388,"30388":30389,"30389":30390,"30390":30391,"30391":30392,"30392":30393,"30393":30394,"30394":30395,"30395":30396,"30396":30397,"30397":30398,"30398":30399,"30399":30400,"30400":30401,"30401":30402,"30402":30403,"30403":30404,"30404":30405,"30405":30406,"30406":30407,"30407":30408,"30408":30409,"30409":30410,"30410":30411,"30411":30412,"30412":30413,"30413":30414,"30414":30415,"30415":30416,"30416":30417,"30417":30418,"30418":30419,"30419":30420,"30420":30421,"30421":30422,"30422":30423,"30423":30424,"30424":30425,"30425":30426,"30426":30427,"30427":30428,"30428":30429,"30429":30430,"30430":30431,"30431":30432,"30432":30433,"30433":30434,"30434":30435,"30435":30436,"30436":30437,"30437":30438,"30438":30439,"30439":30440,"30440":30441,"30441":30442,"30442":30443,"30443":30444,"30444":30445,"30445":30446,"30446":30447,"30447":30448,"30448":30449,"30449":30450,"30450":30451,"30451":30452,"30452":30453,"30453":30454,"30454":30455,"30455":30456,"30456":30457,"30457":30458,"30458":30459,"30459":30460,"30460":30461,"30461":30462,"30462":30463,"30463":30464,"30464":30465,"30465":30466,"30466":30467,"30467":30468,"30468":30469,"30469":30470,"30470":30471,"30471":30472,"30472":30473,"30473":30474,"30474":30475,"30475":30476,"30476":30477,"30477":30478,"30478":30479,"30479":30480,"30480":30481,"30481":30482,"30482":30483,"30483":30484,"30484":30485,"30485":30486,"30486":30487,"30487":30488,"30488":30489,"30489":30490,"30490":30491,"30491":30492,"30492":30493,"30493":30494,"30494":30495,"30495":30496,"30496":30497,"30497":30498,"30498":30499,"30499":30500,"30500":30501,"30501":30502,"30502":30503,"30503":30504,"30504":30505,"30505":30506,"30506":30507,"30507":30508,"30508":30509,"30509":30510,"30510":30511,"30511":30512,"30512":30513,"30513":30514,"30514":30515,"30515":30516,"30516":30517,"30517":30518,"30518":30519,"30519":30520,"30520":30521,"30521":30522,"30522":30523,"30523":30524,"30524":30525,"30525":30526,"30526":30527,"30527":30528,"30528":30529,"30529":30530,"30530":30531,"30531":30532,"30532":30533,"30533":30534,"30534":30535,"30535":30536,"30536":30537,"30537":30538,"30538":30539,"30539":30540,"30540":30541,"30541":30542,"30542":30543,"30543":30544,"30544":30545,"30545":30546,"30546":30547,"30547":30548,"30548":30549,"30549":30550,"30550":30551,"30551":30552,"30552":30553,"30553":30554,"30554":30555,"30555":30556,"30556":30557,"30557":30558,"30558":30559,"30559":30560,"30560":30561,"30561":30562,"30562":30563,"30563":30564,"30564":30565,"30565":30566,"30566":30567,"30567":30568,"30568":30569,"30569":30570,"30570":30571,"30571":30572,"30572":30573,"30573":30574,"30574":30575,"30575":30576,"30576":30577,"30577":30578,"30578":30579,"30579":30580,"30580":30581,"30581":30582,"30582":30583,"30583":30584,"30584":30585,"30585":30586,"30586":30587,"30587":30588,"30588":30589,"30589":30590,"30590":30591,"30591":30592,"30592":30593,"30593":30594,"30594":30595,"30595":30596,"30596":30597,"30597":30598,"30598":30599,"30599":30600,"30600":30601,"30601":30602,"30602":30603,"30603":30604,"30604":30605,"30605":30606,"30606":30607,"30607":30608,"30608":30609,"30609":30610,"30610":30611,"30611":30612,"30612":30613,"30613":30614,"30614":30615,"30615":30616,"30616":30617,"30617":30618,"30618":30619,"30619":30620,"30620":30621,"30621":30622,"30622":30623,"30623":30624,"30624":30625,"30625":30626,"30626":30627,"30627":30628,"30628":30629,"30629":30630,"30630":30631,"30631":30632,"30632":30633,"30633":30634,"30634":30635,"30635":30636,"30636":30637,"30637":30638,"30638":30639,"30639":30640,"30640":30641,"30641":30642,"30642":30643,"30643":30644,"30644":30645,"30645":30646,"30646":30647,"30647":30648,"30648":30649,"30649":30650,"30650":30651,"30651":30652,"30652":30653,"30653":30654,"30654":30655,"30655":30656,"30656":30657,"30657":30658,"30658":30659,"30659":30660,"30660":30661,"30661":30662,"30662":30663,"30663":30664,"30664":30665,"30665":30666,"30666":30667,"30667":30668,"30668":30669,"30669":30670,"30670":30671,"30671":30672,"30672":30673,"30673":30674,"30674":30675,"30675":30676,"30676":30677,"30677":30678,"30678":30679,"30679":30680,"30680":30681,"30681":30682,"30682":30683,"30683":30684,"30684":30685,"30685":30686,"30686":30687,"30687":30688,"30688":30689,"30689":30690,"30690":30691,"30691":30692,"30692":30693,"30693":30694,"30694":30695,"30695":30696,"30696":30697,"30697":30698,"30698":30699,"30699":30700,"30700":30701,"30701":30702,"30702":30703,"30703":30704,"30704":30705,"30705":30706,"30706":30707,"30707":30708,"30708":30709,"30709":30710,"30710":30711,"30711":30712,"30712":30713,"30713":30714,"30714":30715,"30715":30716,"30716":30717,"30717":30718,"30718":30719,"30719":30720,"30720":30721,"30721":30722,"30722":30723,"30723":30724,"30724":30725,"30725":30726,"30726":30727,"30727":30728,"30728":30729,"30729":30730,"30730":30731,"30731":30732,"30732":30733,"30733":30734,"30734":30735,"30735":30736,"30736":30737,"30737":30738,"30738":30739,"30739":30740,"30740":30741,"30741":30742,"30742":30743,"30743":30744,"30744":30745,"30745":30746,"30746":30747,"30747":30748,"30748":30749,"30749":30750,"30750":30751,"30751":30752,"30752":30753,"30753":30754,"30754":30755,"30755":30756,"30756":30757,"30757":30758,"30758":30759,"30759":30760,"30760":30761,"30761":30762,"30762":30763,"30763":30764,"30764":30765,"30765":30766,"30766":30767,"30767":30768,"30768":30769,"30769":30770,"30770":30771,"30771":30772,"30772":30773,"30773":30774,"30774":30775,"30775":30776,"30776":30777,"30777":30778,"30778":30779,"30779":30780,"30780":30781,"30781":30782,"30782":30783,"30783":30784,"30784":30785,"30785":30786,"30786":30787,"30787":30788,"30788":30789,"30789":30790,"30790":30791,"30791":30792,"30792":30793,"30793":30794,"30794":30795,"30795":30796,"30796":30797,"30797":30798,"30798":30799,"30799":30800,"30800":30801,"30801":30802,"30802":30803,"30803":30804,"30804":30805,"30805":30806,"30806":30807,"30807":30808,"30808":30809,"30809":30810,"30810":30811,"30811":30812,"30812":30813,"30813":30814,"30814":30815,"30815":30816,"30816":30817,"30817":30818,"30818":30819,"30819":30820,"30820":30821,"30821":30822,"30822":30823,"30823":30824,"30824":30825,"30825":30826,"30826":30827,"30827":30828,"30828":30829,"30829":30830,"30830":30831,"30831":30832,"30832":30833,"30833":30834,"30834":30835,"30835":30836,"30836":30837,"30837":30838,"30838":30839,"30839":30840,"30840":30841,"30841":30842,"30842":30843,"30843":30844,"30844":30845,"30845":30846,"30846":30847,"30847":30848,"30848":30849,"30849":30850,"30850":30851,"30851":30852,"30852":30853,"30853":30854,"30854":30855,"30855":30856,"30856":30857,"30857":30858,"30858":30859,"30859":30860,"30860":30861,"30861":30862,"30862":30863,"30863":30864,"30864":30865,"30865":30866,"30866":30867,"30867":30868,"30868":30869,"30869":30870,"30870":30871,"30871":30872,"30872":30873,"30873":30874,"30874":30875,"30875":30876,"30876":30877,"30877":30878,"30878":30879,"30879":30880,"30880":30881,"30881":30882,"30882":30883,"30883":30884,"30884":30885,"30885":30886,"30886":30887,"30887":30888,"30888":30889,"30889":30890,"30890":30891,"30891":30892,"30892":30893,"30893":30894,"30894":30895,"30895":30896,"30896":30897,"30897":30898,"30898":30899,"30899":30900,"30900":30901,"30901":30902,"30902":30903,"30903":30904,"30904":30905,"30905":30906,"30906":30907,"30907":30908,"30908":30909,"30909":30910,"30910":30911,"30911":30912,"30912":30913,"30913":30914,"30914":30915,"30915":30916,"30916":30917,"30917":30918,"30918":30919,"30919":30920,"30920":30921,"30921":30922,"30922":30923,"30923":30924,"30924":30925,"30925":30926,"30926":30927,"30927":30928,"30928":30929,"30929":30930,"30930":30931,"30931":30932,"30932":30933,"30933":30934,"30934":30935,"30935":30936,"30936":30937,"30937":30938,"30938":30939,"30939":30940,"30940":30941,"30941":30942,"30942":30943,"30943":30944,"30944":30945,"30945":30946,"30946":30947,"30947":30948,"30948":30949,"30949":30950,"30950":30951,"30951":30952,"30952":30953,"30953":30954,"30954":30955,"30955":30956,"30956":30957,"30957":30958,"30958":30959,"30959":30960,"30960":30961,"30961":30962,"30962":30963,"30963":30964,"30964":30965,"30965":30966,"30966":30967,"30967":30968,"30968":30969,"30969":30970,"30970":30971,"30971":30972,"30972":30973,"30973":30974,"30974":30975,"30975":30976,"30976":30977,"30977":30978,"30978":30979,"30979":30980,"30980":30981,"30981":30982,"30982":30983,"30983":30984,"30984":30985,"30985":30986,"30986":30987,"30987":30988,"30988":30989,"30989":30990,"30990":30991,"30991":30992,"30992":30993,"30993":30994,"30994":30995,"30995":30996,"30996":30997,"30997":30998,"30998":30999,"30999":31000,"31000":31001,"31001":31002,"31002":31003,"31003":31004,"31004":31005,"31005":31006,"31006":31007,"31007":31008,"31008":31009,"31009":31010,"31010":31011,"31011":31012,"31012":31013,"31013":31014,"31014":31015,"31015":31016,"31016":31017,"31017":31018,"31018":31019,"31019":31020,"31020":31021,"31021":31022,"31022":31023,"31023":31024,"31024":31025,"31025":31026,"31026":31027,"31027":31028,"31028":31029,"31029":31030,"31030":31031,"31031":31032,"31032":31033,"31033":31034,"31034":31035,"31035":31036,"31036":31037,"31037":31038,"31038":31039,"31039":31040,"31040":31041,"31041":31042,"31042":31043,"31043":31044,"31044":31045,"31045":31046,"31046":31047,"31047":31048,"31048":31049,"31049":31050,"31050":31051,"31051":31052,"31052":31053,"31053":31054,"31054":31055,"31055":31056,"31056":31057,"31057":31058,"31058":31059,"31059":31060,"31060":31061,"31061":31062,"31062":31063,"31063":31064,"31064":31065,"31065":31066,"31066":31067,"31067":31068,"31068":31069,"31069":31070,"31070":31071,"31071":31072,"31072":31073,"31073":31074,"31074":31075,"31075":31076,"31076":31077,"31077":31078,"31078":31079,"31079":31080,"31080":31081,"31081":31082,"31082":31083,"31083":31084,"31084":31085,"31085":31086,"31086":31087,"31087":31088,"31088":31089,"31089":31090,"31090":31091,"31091":31092,"31092":31093,"31093":31094,"31094":31095,"31095":31096,"31096":31097,"31097":31098,"31098":31099,"31099":31100,"31100":31101,"31101":31102,"31102":31103,"31103":31104,"31104":31105,"31105":31106,"31106":31107,"31107":31108,"31108":31109,"31109":31110,"31110":31111,"31111":31112,"31112":31113,"31113":31114,"31114":31115,"31115":31116,"31116":31117,"31117":31118,"31118":31119,"31119":31120,"31120":31121,"31121":31122,"31122":31123,"31123":31124,"31124":31125,"31125":31126,"31126":31127,"31127":31128,"31128":31129,"31129":31130,"31130":31131,"31131":31132,"31132":31133,"31133":31134,"31134":31135,"31135":31136,"31136":31137,"31137":31138,"31138":31139,"31139":31140,"31140":31141,"31141":31142,"31142":31143,"31143":31144,"31144":31145,"31145":31146,"31146":31147,"31147":31148,"31148":31149,"31149":31150,"31150":31151,"31151":31152,"31152":31153,"31153":31154,"31154":31155,"31155":31156,"31156":31157,"31157":31158,"31158":31159,"31159":31160,"31160":31161,"31161":31162,"31162":31163,"31163":31164,"31164":31165,"31165":31166,"31166":31167,"31167":31168,"31168":31169,"31169":31170,"31170":31171,"31171":31172,"31172":31173,"31173":31174,"31174":31175,"31175":31176,"31176":31177,"31177":31178,"31178":31179,"31179":31180,"31180":31181,"31181":31182,"31182":31183,"31183":31184,"31184":31185,"31185":31186,"31186":31187,"31187":31188,"31188":31189,"31189":31190,"31190":31191,"31191":31192,"31192":31193,"31193":31194,"31194":31195,"31195":31196,"31196":31197,"31197":31198,"31198":31199,"31199":31200,"31200":31201,"31201":31202,"31202":31203,"31203":31204,"31204":31205,"31205":31206,"31206":31207,"31207":31208,"31208":31209,"31209":31210,"31210":31211,"31211":31212,"31212":31213,"31213":31214,"31214":31215,"31215":31216,"31216":31217,"31217":31218,"31218":31219,"31219":31220,"31220":31221,"31221":31222,"31222":31223,"31223":31224,"31224":31225,"31225":31226,"31226":31227,"31227":31228,"31228":31229,"31229":31230,"31230":31231,"31231":31232,"31232":31233,"31233":31234,"31234":31235,"31235":31236,"31236":31237,"31237":31238,"31238":31239,"31239":31240,"31240":31241,"31241":31242,"31242":31243,"31243":31244,"31244":31245,"31245":31246,"31246":31247,"31247":31248,"31248":31249,"31249":31250,"31250":31251,"31251":31252,"31252":31253,"31253":31254,"31254":31255,"31255":31256,"31256":31257,"31257":31258,"31258":31259,"31259":31260,"31260":31261,"31261":31262,"31262":31263,"31263":31264,"31264":31265,"31265":31266,"31266":31267,"31267":31268,"31268":31269,"31269":31270,"31270":31271,"31271":31272,"31272":31273,"31273":31274,"31274":31275,"31275":31276,"31276":31277,"31277":31278,"31278":31279,"31279":31280,"31280":31281,"31281":31282,"31282":31283,"31283":31284,"31284":31285,"31285":31286,"31286":31287,"31287":31288,"31288":31289,"31289":31290,"31290":31291,"31291":31292,"31292":31293,"31293":31294,"31294":31295,"31295":31296,"31296":31297,"31297":31298,"31298":31299,"31299":31300,"31300":31301,"31301":31302,"31302":31303,"31303":31304,"31304":31305,"31305":31306,"31306":31307,"31307":31308,"31308":31309,"31309":31310,"31310":31311,"31311":31312,"31312":31313,"31313":31314,"31314":31315,"31315":31316,"31316":31317,"31317":31318,"31318":31319,"31319":31320,"31320":31321,"31321":31322,"31322":31323,"31323":31324,"31324":31325,"31325":31326,"31326":31327,"31327":31328,"31328":31329,"31329":31330,"31330":31331,"31331":31332,"31332":31333,"31333":31334,"31334":31335,"31335":31336,"31336":31337,"31337":31338,"31338":31339,"31339":31340,"31340":31341,"31341":31342,"31342":31343,"31343":31344,"31344":31345,"31345":31346,"31346":31347,"31347":31348,"31348":31349,"31349":31350,"31350":31351,"31351":31352,"31352":31353,"31353":31354,"31354":31355,"31355":31356,"31356":31357,"31357":31358,"31358":31359,"31359":31360,"31360":31361,"31361":31362,"31362":31363,"31363":31364,"31364":31365,"31365":31366,"31366":31367,"31367":31368,"31368":31369,"31369":31370,"31370":31371,"31371":31372,"31372":31373,"31373":31374,"31374":31375,"31375":31376,"31376":31377,"31377":31378,"31378":31379,"31379":31380,"31380":31381,"31381":31382,"31382":31383,"31383":31384,"31384":31385,"31385":31386,"31386":31387,"31387":31388,"31388":31389,"31389":31390,"31390":31391,"31391":31392,"31392":31393,"31393":31394,"31394":31395,"31395":31396,"31396":31397,"31397":31398,"31398":31399,"31399":31400,"31400":31401,"31401":31402,"31402":31403,"31403":31404,"31404":31405,"31405":31406,"31406":31407,"31407":31408,"31408":31409,"31409":31410,"31410":31411,"31411":31412,"31412":31413,"31413":31414,"31414":31415,"31415":31416,"31416":31417,"31417":31418,"31418":31419,"31419":31420,"31420":31421,"31421":31422,"31422":31423,"31423":31424,"31424":31425,"31425":31426,"31426":31427,"31427":31428,"31428":31429,"31429":31430,"31430":31431,"31431":31432,"31432":31433,"31433":31434,"31434":31435,"31435":31436,"31436":31437,"31437":31438,"31438":31439,"31439":31440,"31440":31441,"31441":31442,"31442":31443,"31443":31444,"31444":31445,"31445":31446,"31446":31447,"31447":31448,"31448":31449,"31449":31450,"31450":31451,"31451":31452,"31452":31453,"31453":31454,"31454":31455,"31455":31456,"31456":31457,"31457":31458,"31458":31459,"31459":31460,"31460":31461,"31461":31462,"31462":31463,"31463":31464,"31464":31465,"31465":31466,"31466":31467,"31467":31468,"31468":31469,"31469":31470,"31470":31471,"31471":31472,"31472":31473,"31473":31474,"31474":31475,"31475":31476,"31476":31477,"31477":31478,"31478":31479,"31479":31480,"31480":31481,"31481":31482,"31482":31483,"31483":31484,"31484":31485,"31485":31486,"31486":31487,"31487":31488,"31488":31489,"31489":31490,"31490":31491,"31491":31492,"31492":31493,"31493":31494,"31494":31495,"31495":31496,"31496":31497,"31497":31498,"31498":31499,"31499":31500,"31500":31501,"31501":31502,"31502":31503,"31503":31504,"31504":31505,"31505":31506,"31506":31507,"31507":31508,"31508":31509,"31509":31510,"31510":31511,"31511":31512,"31512":31513,"31513":31514,"31514":31515,"31515":31516,"31516":31517,"31517":31518,"31518":31519,"31519":31520,"31520":31521,"31521":31522,"31522":31523,"31523":31524,"31524":31525,"31525":31526,"31526":31527,"31527":31528,"31528":31529,"31529":31530,"31530":31531,"31531":31532,"31532":31533,"31533":31534,"31534":31535,"31535":31536,"31536":31537,"31537":31538,"31538":31539,"31539":31540,"31540":31541,"31541":31542,"31542":31543,"31543":31544,"31544":31545,"31545":31546,"31546":31547,"31547":31548,"31548":31549,"31549":31550,"31550":31551,"31551":31552,"31552":31553,"31553":31554,"31554":31555,"31555":31556,"31556":31557,"31557":31558,"31558":31559,"31559":31560,"31560":31561,"31561":31562,"31562":31563,"31563":31564,"31564":31565,"31565":31566,"31566":31567,"31567":31568,"31568":31569,"31569":31570,"31570":31571,"31571":31572,"31572":31573,"31573":31574,"31574":31575,"31575":31576,"31576":31577,"31577":31578,"31578":31579,"31579":31580,"31580":31581,"31581":31582,"31582":31583,"31583":31584,"31584":31585,"31585":31586,"31586":31587,"31587":31588,"31588":31589,"31589":31590,"31590":31591,"31591":31592,"31592":31593,"31593":31594,"31594":31595,"31595":31596,"31596":31597,"31597":31598,"31598":31599,"31599":31600,"31600":31601,"31601":31602,"31602":31603,"31603":31604,"31604":31605,"31605":31606,"31606":31607,"31607":31608,"31608":31609,"31609":31610,"31610":31611,"31611":31612,"31612":31613,"31613":31614,"31614":31615,"31615":31616,"31616":31617,"31617":31618,"31618":31619,"31619":31620,"31620":31621,"31621":31622,"31622":31623,"31623":31624,"31624":31625,"31625":31626,"31626":31627,"31627":31628,"31628":31629,"31629":31630,"31630":31631,"31631":31632,"31632":31633,"31633":31634,"31634":31635,"31635":31636,"31636":31637,"31637":31638,"31638":31639,"31639":31640,"31640":31641,"31641":31642,"31642":31643,"31643":31644,"31644":31645,"31645":31646,"31646":31647,"31647":31648,"31648":31649,"31649":31650,"31650":31651,"31651":31652,"31652":31653,"31653":31654,"31654":31655,"31655":31656,"31656":31657,"31657":31658,"31658":31659,"31659":31660,"31660":31661,"31661":31662,"31662":31663,"31663":31664,"31664":31665,"31665":31666,"31666":31667,"31667":31668,"31668":31669,"31669":31670,"31670":31671,"31671":31672,"31672":31673,"31673":31674,"31674":31675,"31675":31676,"31676":31677,"31677":31678,"31678":31679,"31679":31680,"31680":31681,"31681":31682,"31682":31683,"31683":31684,"31684":31685,"31685":31686,"31686":31687,"31687":31688,"31688":31689,"31689":31690,"31690":31691,"31691":31692,"31692":31693,"31693":31694,"31694":31695,"31695":31696,"31696":31697,"31697":31698,"31698":31699,"31699":31700,"31700":31701,"31701":31702,"31702":31703,"31703":31704,"31704":31705,"31705":31706,"31706":31707,"31707":31708,"31708":31709,"31709":31710,"31710":31711,"31711":31712,"31712":31713,"31713":31714,"31714":31715,"31715":31716,"31716":31717,"31717":31718,"31718":31719,"31719":31720,"31720":31721,"31721":31722,"31722":31723,"31723":31724,"31724":31725,"31725":31726,"31726":31727,"31727":31728,"31728":31729,"31729":31730,"31730":31731,"31731":31732,"31732":31733,"31733":31734,"31734":31735,"31735":31736,"31736":31737,"31737":31738,"31738":31739,"31739":31740,"31740":31741,"31741":31742,"31742":31743,"31743":31744,"31744":31745,"31745":31746,"31746":31747,"31747":31748,"31748":31749,"31749":31750,"31750":31751,"31751":31752,"31752":31753,"31753":31754,"31754":31755,"31755":31756,"31756":31757,"31757":31758,"31758":31759,"31759":31760,"31760":31761,"31761":31762,"31762":31763,"31763":31764,"31764":31765,"31765":31766,"31766":31767,"31767":31768,"31768":31769,"31769":31770,"31770":31771,"31771":31772,"31772":31773,"31773":31774,"31774":31775,"31775":31776,"31776":31777,"31777":31778,"31778":31779,"31779":31780,"31780":31781,"31781":31782,"31782":31783,"31783":31784,"31784":31785,"31785":31786,"31786":31787,"31787":31788,"31788":31789,"31789":31790,"31790":31791,"31791":31792,"31792":31793,"31793":31794,"31794":31795,"31795":31796,"31796":31797,"31797":31798,"31798":31799,"31799":31800,"31800":31801,"31801":31802,"31802":31803,"31803":31804,"31804":31805,"31805":31806,"31806":31807,"31807":31808,"31808":31809,"31809":31810,"31810":31811,"31811":31812,"31812":31813,"31813":31814,"31814":31815,"31815":31816,"31816":31817,"31817":31818,"31818":31819,"31819":31820,"31820":31821,"31821":31822,"31822":31823,"31823":31824,"31824":31825,"31825":31826,"31826":31827,"31827":31828,"31828":31829,"31829":31830,"31830":31831,"31831":31832,"31832":31833,"31833":31834,"31834":31835,"31835":31836,"31836":31837,"31837":31838,"31838":31839,"31839":31840,"31840":31841,"31841":31842,"31842":31843,"31843":31844,"31844":31845,"31845":31846,"31846":31847,"31847":31848,"31848":31849,"31849":31850,"31850":31851,"31851":31852,"31852":31853,"31853":31854,"31854":31855,"31855":31856,"31856":31857,"31857":31858,"31858":31859,"31859":31860,"31860":31861,"31861":31862,"31862":31863,"31863":31864,"31864":31865,"31865":31866,"31866":31867,"31867":31868,"31868":31869,"31869":31870,"31870":31871,"31871":31872,"31872":31873,"31873":31874,"31874":31875,"31875":31876,"31876":31877,"31877":31878,"31878":31879,"31879":31880,"31880":31881,"31881":31882,"31882":31883,"31883":31884,"31884":31885,"31885":31886,"31886":31887,"31887":31888,"31888":31889,"31889":31890,"31890":31891,"31891":31892,"31892":31893,"31893":31894,"31894":31895,"31895":31896,"31896":31897,"31897":31898,"31898":31899,"31899":31900,"31900":31901,"31901":31902,"31902":31903,"31903":31904,"31904":31905,"31905":31906,"31906":31907,"31907":31908,"31908":31909,"31909":31910,"31910":31911,"31911":31912,"31912":31913,"31913":31914,"31914":31915,"31915":31916,"31916":31917,"31917":31918,"31918":31919,"31919":31920,"31920":31921,"31921":31922,"31922":31923,"31923":31924,"31924":31925,"31925":31926,"31926":31927,"31927":31928,"31928":31929,"31929":31930,"31930":31931,"31931":31932,"31932":31933,"31933":31934,"31934":31935,"31935":31936,"31936":31937,"31937":31938,"31938":31939,"31939":31940,"31940":31941,"31941":31942,"31942":31943,"31943":31944,"31944":31945,"31945":31946,"31946":31947,"31947":31948,"31948":31949,"31949":31950,"31950":31951,"31951":31952,"31952":31953,"31953":31954,"31954":31955,"31955":31956,"31956":31957,"31957":31958,"31958":31959,"31959":31960,"31960":31961,"31961":31962,"31962":31963,"31963":31964,"31964":31965,"31965":31966,"31966":31967,"31967":31968,"31968":31969,"31969":31970,"31970":31971,"31971":31972,"31972":31973,"31973":31974,"31974":31975,"31975":31976,"31976":31977,"31977":31978,"31978":31979,"31979":31980,"31980":31981,"31981":31982,"31982":31983,"31983":31984,"31984":31985,"31985":31986,"31986":31987,"31987":31988,"31988":31989,"31989":31990,"31990":31991,"31991":31992,"31992":31993,"31993":31994,"31994":31995,"31995":31996,"31996":31997,"31997":31998,"31998":31999,"31999":32000,"32000":32001,"32001":32002,"32002":32003,"32003":32004,"32004":32005,"32005":32006,"32006":32007,"32007":32008,"32008":32009,"32009":32010,"32010":32011,"32011":32012,"32012":32013,"32013":32014,"32014":32015,"32015":32016,"32016":32017,"32017":32018,"32018":32019,"32019":32020,"32020":32021,"32021":32022,"32022":32023,"32023":32024,"32024":32025,"32025":32026,"32026":32027,"32027":32028,"32028":32029,"32029":32030,"32030":32031,"32031":32032,"32032":32033,"32033":32034,"32034":32035,"32035":32036,"32036":32037,"32037":32038,"32038":32039,"32039":32040,"32040":32041,"32041":32042,"32042":32043,"32043":32044,"32044":32045,"32045":32046,"32046":32047,"32047":32048,"32048":32049,"32049":32050,"32050":32051,"32051":32052,"32052":32053,"32053":32054,"32054":32055,"32055":32056,"32056":32057,"32057":32058,"32058":32059,"32059":32060,"32060":32061,"32061":32062,"32062":32063,"32063":32064,"32064":32065,"32065":32066,"32066":32067,"32067":32068,"32068":32069,"32069":32070,"32070":32071,"32071":32072,"32072":32073,"32073":32074,"32074":32075,"32075":32076,"32076":32077,"32077":32078,"32078":32079,"32079":32080,"32080":32081,"32081":32082,"32082":32083,"32083":32084,"32084":32085,"32085":32086,"32086":32087,"32087":32088,"32088":32089,"32089":32090,"32090":32091,"32091":32092,"32092":32093,"32093":32094,"32094":32095,"32095":32096,"32096":32097,"32097":32098,"32098":32099,"32099":32100,"32100":32101,"32101":32102,"32102":32103,"32103":32104,"32104":32105,"32105":32106,"32106":32107,"32107":32108,"32108":32109,"32109":32110,"32110":32111,"32111":32112,"32112":32113,"32113":32114,"32114":32115,"32115":32116,"32116":32117,"32117":32118,"32118":32119,"32119":32120,"32120":32121,"32121":32122,"32122":32123,"32123":32124,"32124":32125,"32125":32126,"32126":32127,"32127":32128,"32128":32129,"32129":32130,"32130":32131,"32131":32132,"32132":32133,"32133":32134,"32134":32135,"32135":32136,"32136":32137,"32137":32138,"32138":32139,"32139":32140,"32140":32141,"32141":32142,"32142":32143,"32143":32144,"32144":32145,"32145":32146,"32146":32147,"32147":32148,"32148":32149,"32149":32150,"32150":32151,"32151":32152,"32152":32153,"32153":32154,"32154":32155,"32155":32156,"32156":32157,"32157":32158,"32158":32159,"32159":32160,"32160":32161,"32161":32162,"32162":32163,"32163":32164,"32164":32165,"32165":32166,"32166":32167,"32167":32168,"32168":32169,"32169":32170,"32170":32171,"32171":32172,"32172":32173,"32173":32174,"32174":32175,"32175":32176,"32176":32177,"32177":32178,"32178":32179,"32179":32180,"32180":32181,"32181":32182,"32182":32183,"32183":32184,"32184":32185,"32185":32186,"32186":32187,"32187":32188,"32188":32189,"32189":32190,"32190":32191,"32191":32192,"32192":32193,"32193":32194,"32194":32195,"32195":32196,"32196":32197,"32197":32198,"32198":32199,"32199":32200,"32200":32201,"32201":32202,"32202":32203,"32203":32204,"32204":32205,"32205":32206,"32206":32207,"32207":32208,"32208":32209,"32209":32210,"32210":32211,"32211":32212,"32212":32213,"32213":32214,"32214":32215,"32215":32216,"32216":32217,"32217":32218,"32218":32219,"32219":32220,"32220":32221,"32221":32222,"32222":32223,"32223":32224,"32224":32225,"32225":32226,"32226":32227,"32227":32228,"32228":32229,"32229":32230,"32230":32231,"32231":32232,"32232":32233,"32233":32234,"32234":32235,"32235":32236,"32236":32237,"32237":32238,"32238":32239,"32239":32240,"32240":32241,"32241":32242,"32242":32243,"32243":32244,"32244":32245,"32245":32246,"32246":32247,"32247":32248,"32248":32249,"32249":32250,"32250":32251,"32251":32252,"32252":32253,"32253":32254,"32254":32255,"32255":32256,"32256":32257,"32257":32258,"32258":32259,"32259":32260,"32260":32261,"32261":32262,"32262":32263,"32263":32264,"32264":32265,"32265":32266,"32266":32267,"32267":32268,"32268":32269,"32269":32270,"32270":32271,"32271":32272,"32272":32273,"32273":32274,"32274":32275,"32275":32276,"32276":32277,"32277":32278,"32278":32279,"32279":32280,"32280":32281,"32281":32282,"32282":32283,"32283":32284,"32284":32285,"32285":32286,"32286":32287,"32287":32288,"32288":32289,"32289":32290,"32290":32291,"32291":32292,"32292":32293,"32293":32294,"32294":32295,"32295":32296,"32296":32297,"32297":32298,"32298":32299,"32299":32300,"32300":32301,"32301":32302,"32302":32303,"32303":32304,"32304":32305,"32305":32306,"32306":32307,"32307":32308,"32308":32309,"32309":32310,"32310":32311,"32311":32312,"32312":32313,"32313":32314,"32314":32315,"32315":32316,"32316":32317,"32317":32318,"32318":32319,"32319":32320,"32320":32321,"32321":32322,"32322":32323,"32323":32324,"32324":32325,"32325":32326,"32326":32327,"32327":32328,"32328":32329,"32329":32330,"32330":32331,"32331":32332,"32332":32333,"32333":32334,"32334":32335,"32335":32336,"32336":32337,"32337":32338,"32338":32339,"32339":32340,"32340":32341,"32341":32342,"32342":32343,"32343":32344,"32344":32345,"32345":32346,"32346":32347,"32347":32348,"32348":32349,"32349":32350,"32350":32351,"32351":32352,"32352":32353,"32353":32354,"32354":32355,"32355":32356,"32356":32357,"32357":32358,"32358":32359,"32359":32360,"32360":32361,"32361":32362,"32362":32363,"32363":32364,"32364":32365,"32365":32366,"32366":32367,"32367":32368,"32368":32369,"32369":32370,"32370":32371,"32371":32372,"32372":32373,"32373":32374,"32374":32375,"32375":32376,"32376":32377,"32377":32378,"32378":32379,"32379":32380,"32380":32381,"32381":32382,"32382":32383,"32383":32384,"32384":32385,"32385":32386,"32386":32387,"32387":32388,"32388":32389,"32389":32390,"32390":32391,"32391":32392,"32392":32393,"32393":32394,"32394":32395,"32395":32396,"32396":32397,"32397":32398,"32398":32399,"32399":32400,"32400":32401,"32401":32402,"32402":32403,"32403":32404,"32404":32405,"32405":32406,"32406":32407,"32407":32408,"32408":32409,"32409":32410,"32410":32411,"32411":32412,"32412":32413,"32413":32414,"32414":32415,"32415":32416,"32416":32417,"32417":32418,"32418":32419,"32419":32420,"32420":32421,"32421":32422,"32422":32423,"32423":32424,"32424":32425,"32425":32426,"32426":32427,"32427":32428,"32428":32429,"32429":32430,"32430":32431,"32431":32432,"32432":32433,"32433":32434,"32434":32435,"32435":32436,"32436":32437,"32437":32438,"32438":32439,"32439":32440,"32440":32441,"32441":32442,"32442":32443,"32443":32444,"32444":32445,"32445":32446,"32446":32447,"32447":32448,"32448":32449,"32449":32450,"32450":32451,"32451":32452,"32452":32453,"32453":32454,"32454":32455,"32455":32456,"32456":32457,"32457":32458,"32458":32459,"32459":32460,"32460":32461,"32461":32462,"32462":32463,"32463":32464,"32464":32465,"32465":32466,"32466":32467,"32467":32468,"32468":32469,"32469":32470,"32470":32471,"32471":32472,"32472":32473,"32473":32474,"32474":32475,"32475":32476,"32476":32477,"32477":32478,"32478":32479,"32479":32480,"32480":32481,"32481":32482,"32482":32483,"32483":32484,"32484":32485,"32485":32486,"32486":32487,"32487":32488,"32488":32489,"32489":32490,"32490":32491,"32491":32492,"32492":32493,"32493":32494,"32494":32495,"32495":32496,"32496":32497,"32497":32498,"32498":32499,"32499":32500,"32500":32501,"32501":32502,"32502":32503,"32503":32504,"32504":32505,"32505":32506,"32506":32507,"32507":32508,"32508":32509,"32509":32510,"32510":32511,"32511":32512,"32512":32513,"32513":32514,"32514":32515,"32515":32516,"32516":32517,"32517":32518,"32518":32519,"32519":32520,"32520":32521,"32521":32522,"32522":32523,"32523":32524,"32524":32525,"32525":32526,"32526":32527,"32527":32528,"32528":32529,"32529":32530,"32530":32531,"32531":32532,"32532":32533,"32533":32534,"32534":32535,"32535":32536,"32536":32537,"32537":32538,"32538":32539,"32539":32540,"32540":32541,"32541":32542,"32542":32543,"32543":32544,"32544":32545,"32545":32546,"32546":32547,"32547":32548,"32548":32549,"32549":32550,"32550":32551,"32551":32552,"32552":32553,"32553":32554,"32554":32555,"32555":32556,"32556":32557,"32557":32558,"32558":32559,"32559":32560,"32560":32561,"32561":32562,"32562":32563,"32563":32564,"32564":32565,"32565":32566,"32566":32567,"32567":32568,"32568":32569,"32569":32570,"32570":32571,"32571":32572,"32572":32573,"32573":32574,"32574":32575,"32575":32576,"32576":32577,"32577":32578,"32578":32579,"32579":32580,"32580":32581,"32581":32582,"32582":32583,"32583":32584,"32584":32585,"32585":32586,"32586":32587,"32587":32588,"32588":32589,"32589":32590,"32590":32591,"32591":32592,"32592":32593,"32593":32594,"32594":32595,"32595":32596,"32596":32597,"32597":32598,"32598":32599,"32599":32600,"32600":32601,"32601":32602,"32602":32603,"32603":32604,"32604":32605,"32605":32606,"32606":32607,"32607":32608,"32608":32609,"32609":32610,"32610":32611,"32611":32612,"32612":32613,"32613":32614,"32614":32615,"32615":32616,"32616":32617,"32617":32618,"32618":32619,"32619":32620,"32620":32621,"32621":32622,"32622":32623,"32623":32624,"32624":32625,"32625":32626,"32626":32627,"32627":32628,"32628":32629,"32629":32630,"32630":32631,"32631":32632,"32632":32633,"32633":32634,"32634":32635,"32635":32636,"32636":32637,"32637":32638,"32638":32639,"32639":32640,"32640":32641,"32641":32642,"32642":32643,"32643":32644,"32644":32645,"32645":32646,"32646":32647,"32647":32648,"32648":32649,"32649":32650,"32650":32651,"32651":32652,"32652":32653,"32653":32654,"32654":32655,"32655":32656,"32656":32657,"32657":32658,"32658":32659,"32659":32660,"32660":32661,"32661":32662,"32662":32663,"32663":32664,"32664":32665,"32665":32666,"32666":32667,"32667":32668,"32668":32669,"32669":32670,"32670":32671,"32671":32672,"32672":32673,"32673":32674,"32674":32675,"32675":32676,"32676":32677,"32677":32678,"32678":32679,"32679":32680,"32680":32681,"32681":32682,"32682":32683,"32683":32684,"32684":32685,"32685":32686,"32686":32687,"32687":32688,"32688":32689,"32689":32690,"32690":32691,"32691":32692,"32692":32693,"32693":32694,"32694":32695,"32695":32696,"32696":32697,"32697":32698,"32698":32699,"32699":32700,"32700":32701,"32701":32702,"32702":32703,"32703":32704,"32704":32705,"32705":32706,"32706":32707,"32707":32708,"32708":32709,"32709":32710,"32710":32711,"32711":32712,"32712":32713,"32713":32714,"32714":32715,"32715":32716,"32716":32717,"32717":32718,"32718":32719,"32719":32720,"32720":32721,"32721":32722,"32722":32723,"32723":32724,"32724":32725,"32725":32726,"32726":32727,"32727":32728,"32728":32729,"32729":32730,"32730":32731,"32731":32732,"32732":32733,"32733":32734,"32734":32735,"32735":32736,"32736":32737,"32737":32738,"32738":32739,"32739":32740,"32740":32741,"32741":32742,"32742":32743,"32743":32744,"32744":32745,"32745":32746,"32746":32747,"32747":32748,"32748":32749,"32749":32750,"32750":32751,"32751":32752,"32752":32753,"32753":32754,"32754":32755,"32755":32756,"32756":32757,"32757":32758,"32758":32759,"32759":32760,"32760":32761,"32761":32762,"32762":32763,"32763":32764,"32764":32765,"32765":32766,"32766":32767,"32767":32768,"32768":32769,"32769":32770,"32770":32771,"32771":32772,"32772":32773,"32773":32774,"32774":32775,"32775":32776,"32776":32777,"32777":32778,"32778":32779,"32779":32780,"32780":32781,"32781":32782,"32782":32783,"32783":32784,"32784":32785,"32785":32786,"32786":32787,"32787":32788,"32788":32789,"32789":32790,"32790":32791,"32791":32792,"32792":32793,"32793":32794,"32794":32795,"32795":32796,"32796":32797,"32797":32798,"32798":32799,"32799":32800,"32800":32801,"32801":32802,"32802":32803,"32803":32804,"32804":32805,"32805":32806,"32806":32807,"32807":32808,"32808":32809,"32809":32810,"32810":32811,"32811":32812,"32812":32813,"32813":32814,"32814":32815,"32815":32816,"32816":32817,"32817":32818,"32818":32819,"32819":32820,"32820":32821,"32821":32822,"32822":32823,"32823":32824,"32824":32825,"32825":32826,"32826":32827,"32827":32828,"32828":32829,"32829":32830,"32830":32831,"32831":32832,"32832":32833,"32833":32834,"32834":32835,"32835":32836,"32836":32837,"32837":32838,"32838":32839,"32839":32840,"32840":32841,"32841":32842,"32842":32843,"32843":32844,"32844":32845,"32845":32846,"32846":32847,"32847":32848,"32848":32849,"32849":32850,"32850":32851,"32851":32852,"32852":32853,"32853":32854,"32854":32855,"32855":32856,"32856":32857,"32857":32858,"32858":32859,"32859":32860,"32860":32861,"32861":32862,"32862":32863,"32863":32864,"32864":32865,"32865":32866,"32866":32867,"32867":32868,"32868":32869,"32869":32870,"32870":32871,"32871":32872,"32872":32873,"32873":32874,"32874":32875,"32875":32876,"32876":32877,"32877":32878,"32878":32879,"32879":32880,"32880":32881,"32881":32882,"32882":32883,"32883":32884,"32884":32885,"32885":32886,"32886":32887,"32887":32888,"32888":32889,"32889":32890,"32890":32891,"32891":32892,"32892":32893,"32893":32894,"32894":32895,"32895":32896,"32896":32897,"32897":32898,"32898":32899,"32899":32900,"32900":32901,"32901":32902,"32902":32903,"32903":32904,"32904":32905,"32905":32906,"32906":32907,"32907":32908,"32908":32909,"32909":32910,"32910":32911,"32911":32912,"32912":32913,"32913":32914,"32914":32915,"32915":32916,"32916":32917,"32917":32918,"32918":32919,"32919":32920,"32920":32921,"32921":32922,"32922":32923,"32923":32924,"32924":32925,"32925":32926,"32926":32927,"32927":32928,"32928":32929,"32929":32930,"32930":32931,"32931":32932,"32932":32933,"32933":32934,"32934":32935,"32935":32936,"32936":32937,"32937":32938,"32938":32939,"32939":32940,"32940":32941,"32941":32942,"32942":32943,"32943":32944,"32944":32945,"32945":32946,"32946":32947,"32947":32948,"32948":32949,"32949":32950,"32950":32951,"32951":32952,"32952":32953,"32953":32954,"32954":32955,"32955":32956,"32956":32957,"32957":32958,"32958":32959,"32959":32960,"32960":32961,"32961":32962,"32962":32963,"32963":32964,"32964":32965,"32965":32966,"32966":32967,"32967":32968,"32968":32969,"32969":32970,"32970":32971,"32971":32972,"32972":32973,"32973":32974,"32974":32975,"32975":32976,"32976":32977,"32977":32978,"32978":32979,"32979":32980,"32980":32981,"32981":32982,"32982":32983,"32983":32984,"32984":32985,"32985":32986,"32986":32987,"32987":32988,"32988":32989,"32989":32990,"32990":32991,"32991":32992,"32992":32993,"32993":32994,"32994":32995,"32995":32996,"32996":32997,"32997":32998,"32998":32999,"32999":33000,"33000":33001,"33001":33002,"33002":33003,"33003":33004,"33004":33005,"33005":33006,"33006":33007,"33007":33008,"33008":33009,"33009":33010,"33010":33011,"33011":33012,"33012":33013,"33013":33014,"33014":33015,"33015":33016,"33016":33017,"33017":33018,"33018":33019,"33019":33020,"33020":33021,"33021":33022,"33022":33023,"33023":33024,"33024":33025,"33025":33026,"33026":33027,"33027":33028,"33028":33029,"33029":33030,"33030":33031,"33031":33032,"33032":33033,"33033":33034,"33034":33035,"33035":33036,"33036":33037,"33037":33038,"33038":33039,"33039":33040,"33040":33041,"33041":33042,"33042":33043,"33043":33044,"33044":33045,"33045":33046,"33046":33047,"33047":33048,"33048":33049,"33049":33050,"33050":33051,"33051":33052,"33052":33053,"33053":33054,"33054":33055,"33055":33056,"33056":33057,"33057":33058,"33058":33059,"33059":33060,"33060":33061,"33061":33062,"33062":33063,"33063":33064,"33064":33065,"33065":33066,"33066":33067,"33067":33068,"33068":33069,"33069":33070,"33070":33071,"33071":33072,"33072":33073,"33073":33074,"33074":33075,"33075":33076,"33076":33077,"33077":33078,"33078":33079,"33079":33080,"33080":33081,"33081":33082,"33082":33083,"33083":33084,"33084":33085,"33085":33086,"33086":33087,"33087":33088,"33088":33089,"33089":33090,"33090":33091,"33091":33092,"33092":33093,"33093":33094,"33094":33095,"33095":33096,"33096":33097,"33097":33098,"33098":33099,"33099":33100,"33100":33101,"33101":33102,"33102":33103,"33103":33104,"33104":33105,"33105":33106,"33106":33107,"33107":33108,"33108":33109,"33109":33110,"33110":33111,"33111":33112,"33112":33113,"33113":33114,"33114":33115,"33115":33116,"33116":33117,"33117":33118,"33118":33119,"33119":33120,"33120":33121,"33121":33122,"33122":33123,"33123":33124,"33124":33125,"33125":33126,"33126":33127,"33127":33128,"33128":33129,"33129":33130,"33130":33131,"33131":33132,"33132":33133,"33133":33134,"33134":33135,"33135":33136,"33136":33137,"33137":33138,"33138":33139,"33139":33140,"33140":33141,"33141":33142,"33142":33143,"33143":33144,"33144":33145,"33145":33146,"33146":33147,"33147":33148,"33148":33149,"33149":33150,"33150":33151,"33151":33152,"33152":33153,"33153":33154,"33154":33155,"33155":33156,"33156":33157,"33157":33158,"33158":33159,"33159":33160,"33160":33161,"33161":33162,"33162":33163,"33163":33164,"33164":33165,"33165":33166,"33166":33167,"33167":33168,"33168":33169,"33169":33170,"33170":33171,"33171":33172,"33172":33173,"33173":33174,"33174":33175,"33175":33176,"33176":33177,"33177":33178,"33178":33179,"33179":33180,"33180":33181,"33181":33182,"33182":33183,"33183":33184,"33184":33185,"33185":33186,"33186":33187,"33187":33188,"33188":33189,"33189":33190,"33190":33191,"33191":33192,"33192":33193,"33193":33194,"33194":33195,"33195":33196,"33196":33197,"33197":33198,"33198":33199,"33199":33200,"33200":33201,"33201":33202,"33202":33203,"33203":33204,"33204":33205,"33205":33206,"33206":33207,"33207":33208,"33208":33209,"33209":33210,"33210":33211,"33211":33212,"33212":33213,"33213":33214,"33214":33215,"33215":33216,"33216":33217,"33217":33218,"33218":33219,"33219":33220,"33220":33221,"33221":33222,"33222":33223,"33223":33224,"33224":33225,"33225":33226,"33226":33227,"33227":33228,"33228":33229,"33229":33230,"33230":33231,"33231":33232,"33232":33233,"33233":33234,"33234":33235,"33235":33236,"33236":33237,"33237":33238,"33238":33239,"33239":33240,"33240":33241,"33241":33242,"33242":33243,"33243":33244,"33244":33245,"33245":33246,"33246":33247,"33247":33248,"33248":33249,"33249":33250,"33250":33251,"33251":33252,"33252":33253,"33253":33254,"33254":33255,"33255":33256,"33256":33257,"33257":33258,"33258":33259,"33259":33260,"33260":33261,"33261":33262,"33262":33263,"33263":33264,"33264":33265,"33265":33266,"33266":33267,"33267":33268,"33268":33269,"33269":33270,"33270":33271,"33271":33272,"33272":33273,"33273":33274,"33274":33275,"33275":33276,"33276":33277,"33277":33278,"33278":33279,"33279":33280,"33280":33281,"33281":33282,"33282":33283,"33283":33284,"33284":33285,"33285":33286,"33286":33287,"33287":33288,"33288":33289,"33289":33290,"33290":33291,"33291":33292,"33292":33293,"33293":33294,"33294":33295,"33295":33296,"33296":33297,"33297":33298,"33298":33299,"33299":33300,"33300":33301,"33301":33302,"33302":33303,"33303":33304,"33304":33305,"33305":33306,"33306":33307,"33307":33308,"33308":33309,"33309":33310,"33310":33311,"33311":33312,"33312":33313,"33313":33314,"33314":33315,"33315":33316,"33316":33317,"33317":33318,"33318":33319,"33319":33320,"33320":33321,"33321":33322,"33322":33323,"33323":33324,"33324":33325,"33325":33326,"33326":33327,"33327":33328,"33328":33329,"33329":33330,"33330":33331,"33331":33332,"33332":33333,"33333":33334,"33334":33335,"33335":33336,"33336":33337,"33337":33338,"33338":33339,"33339":33340,"33340":33341,"33341":33342,"33342":33343,"33343":33344,"33344":33345,"33345":33346,"33346":33347,"33347":33348,"33348":33349,"33349":33350,"33350":33351,"33351":33352,"33352":33353,"33353":33354,"33354":33355,"33355":33356,"33356":33357,"33357":33358,"33358":33359,"33359":33360,"33360":33361,"33361":33362,"33362":33363,"33363":33364,"33364":33365,"33365":33366,"33366":33367,"33367":33368,"33368":33369,"33369":33370,"33370":33371,"33371":33372,"33372":33373,"33373":33374,"33374":33375,"33375":33376,"33376":33377,"33377":33378,"33378":33379,"33379":33380,"33380":33381,"33381":33382,"33382":33383,"33383":33384,"33384":33385,"33385":33386,"33386":33387,"33387":33388,"33388":33389,"33389":33390,"33390":33391,"33391":33392,"33392":33393,"33393":33394,"33394":33395,"33395":33396,"33396":33397,"33397":33398,"33398":33399,"33399":33400,"33400":33401,"33401":33402,"33402":33403,"33403":33404,"33404":33405,"33405":33406,"33406":33407,"33407":33408,"33408":33409,"33409":33410,"33410":33411,"33411":33412,"33412":33413,"33413":33414,"33414":33415,"33415":33416,"33416":33417,"33417":33418,"33418":33419,"33419":33420,"33420":33421,"33421":33422,"33422":33423,"33423":33424,"33424":33425,"33425":33426,"33426":33427,"33427":33428,"33428":33429,"33429":33430,"33430":33431,"33431":33432,"33432":33433,"33433":33434,"33434":33435,"33435":33436,"33436":33437,"33437":33438,"33438":33439,"33439":33440,"33440":33441,"33441":33442,"33442":33443,"33443":33444,"33444":33445,"33445":33446,"33446":33447,"33447":33448,"33448":33449,"33449":33450,"33450":33451,"33451":33452,"33452":33453,"33453":33454,"33454":33455,"33455":33456,"33456":33457,"33457":33458,"33458":33459,"33459":33460,"33460":33461,"33461":33462,"33462":33463,"33463":33464,"33464":33465,"33465":33466,"33466":33467,"33467":33468,"33468":33469,"33469":33470,"33470":33471,"33471":33472,"33472":33473,"33473":33474,"33474":33475,"33475":33476,"33476":33477,"33477":33478,"33478":33479,"33479":33480,"33480":33481,"33481":33482,"33482":33483,"33483":33484,"33484":33485,"33485":33486,"33486":33487,"33487":33488,"33488":33489,"33489":33490,"33490":33491,"33491":33492,"33492":33493,"33493":33494,"33494":33495,"33495":33496,"33496":33497,"33497":33498,"33498":33499,"33499":33500,"33500":33501,"33501":33502,"33502":33503,"33503":33504,"33504":33505,"33505":33506,"33506":33507,"33507":33508,"33508":33509,"33509":33510,"33510":33511,"33511":33512,"33512":33513,"33513":33514,"33514":33515,"33515":33516,"33516":33517,"33517":33518,"33518":33519,"33519":33520,"33520":33521,"33521":33522,"33522":33523,"33523":33524,"33524":33525,"33525":33526,"33526":33527,"33527":33528,"33528":33529,"33529":33530,"33530":33531,"33531":33532,"33532":33533,"33533":33534,"33534":33535,"33535":33536,"33536":33537,"33537":33538,"33538":33539,"33539":33540,"33540":33541,"33541":33542,"33542":33543,"33543":33544,"33544":33545,"33545":33546,"33546":33547,"33547":33548,"33548":33549,"33549":33550,"33550":33551,"33551":33552,"33552":33553,"33553":33554,"33554":33555,"33555":33556,"33556":33557,"33557":33558,"33558":33559,"33559":33560,"33560":33561,"33561":33562,"33562":33563,"33563":33564,"33564":33565,"33565":33566,"33566":33567,"33567":33568,"33568":33569,"33569":33570,"33570":33571,"33571":33572,"33572":33573,"33573":33574,"33574":33575,"33575":33576,"33576":33577,"33577":33578,"33578":33579,"33579":33580,"33580":33581,"33581":33582,"33582":33583,"33583":33584,"33584":33585,"33585":33586,"33586":33587,"33587":33588,"33588":33589,"33589":33590,"33590":33591,"33591":33592,"33592":33593,"33593":33594,"33594":33595,"33595":33596,"33596":33597,"33597":33598,"33598":33599,"33599":33600,"33600":33601,"33601":33602,"33602":33603,"33603":33604,"33604":33605,"33605":33606,"33606":33607,"33607":33608,"33608":33609,"33609":33610,"33610":33611,"33611":33612,"33612":33613,"33613":33614,"33614":33615,"33615":33616,"33616":33617,"33617":33618,"33618":33619,"33619":33620,"33620":33621,"33621":33622,"33622":33623,"33623":33624,"33624":33625,"33625":33626,"33626":33627,"33627":33628,"33628":33629,"33629":33630,"33630":33631,"33631":33632,"33632":33633,"33633":33634,"33634":33635,"33635":33636,"33636":33637,"33637":33638,"33638":33639,"33639":33640,"33640":33641,"33641":33642,"33642":33643,"33643":33644,"33644":33645,"33645":33646,"33646":33647,"33647":33648,"33648":33649,"33649":33650,"33650":33651,"33651":33652,"33652":33653,"33653":33654,"33654":33655,"33655":33656,"33656":33657,"33657":33658,"33658":33659,"33659":33660,"33660":33661,"33661":33662,"33662":33663,"33663":33664,"33664":33665,"33665":33666,"33666":33667,"33667":33668,"33668":33669,"33669":33670,"33670":33671,"33671":33672,"33672":33673,"33673":33674,"33674":33675,"33675":33676,"33676":33677,"33677":33678,"33678":33679,"33679":33680,"33680":33681,"33681":33682,"33682":33683,"33683":33684,"33684":33685,"33685":33686,"33686":33687,"33687":33688,"33688":33689,"33689":33690,"33690":33691,"33691":33692,"33692":33693,"33693":33694,"33694":33695,"33695":33696,"33696":33697,"33697":33698,"33698":33699,"33699":33700,"33700":33701,"33701":33702,"33702":33703,"33703":33704,"33704":33705,"33705":33706,"33706":33707,"33707":33708,"33708":33709,"33709":33710,"33710":33711,"33711":33712,"33712":33713,"33713":33714,"33714":33715,"33715":33716,"33716":33717,"33717":33718,"33718":33719,"33719":33720,"33720":33721,"33721":33722,"33722":33723,"33723":33724,"33724":33725,"33725":33726,"33726":33727,"33727":33728,"33728":33729,"33729":33730,"33730":33731,"33731":33732,"33732":33733,"33733":33734,"33734":33735,"33735":33736,"33736":33737,"33737":33738,"33738":33739,"33739":33740,"33740":33741,"33741":33742,"33742":33743,"33743":33744,"33744":33745,"33745":33746,"33746":33747,"33747":33748,"33748":33749,"33749":33750,"33750":33751,"33751":33752,"33752":33753,"33753":33754,"33754":33755,"33755":33756,"33756":33757,"33757":33758,"33758":33759,"33759":33760,"33760":33761,"33761":33762,"33762":33763,"33763":33764,"33764":33765,"33765":33766,"33766":33767,"33767":33768,"33768":33769,"33769":33770,"33770":33771,"33771":33772,"33772":33773,"33773":33774,"33774":33775,"33775":33776,"33776":33777,"33777":33778,"33778":33779,"33779":33780,"33780":33781,"33781":33782,"33782":33783,"33783":33784,"33784":33785,"33785":33786,"33786":33787,"33787":33788,"33788":33789,"33789":33790,"33790":33791,"33791":33792,"33792":33793,"33793":33794,"33794":33795,"33795":33796,"33796":33797,"33797":33798,"33798":33799,"33799":33800,"33800":33801,"33801":33802,"33802":33803,"33803":33804,"33804":33805,"33805":33806,"33806":33807,"33807":33808,"33808":33809,"33809":33810,"33810":33811,"33811":33812,"33812":33813,"33813":33814,"33814":33815,"33815":33816,"33816":33817,"33817":33818,"33818":33819,"33819":33820,"33820":33821,"33821":33822,"33822":33823,"33823":33824,"33824":33825,"33825":33826,"33826":33827,"33827":33828,"33828":33829,"33829":33830,"33830":33831,"33831":33832,"33832":33833,"33833":33834,"33834":33835,"33835":33836,"33836":33837,"33837":33838,"33838":33839,"33839":33840,"33840":33841,"33841":33842,"33842":33843,"33843":33844,"33844":33845,"33845":33846,"33846":33847,"33847":33848,"33848":33849,"33849":33850,"33850":33851,"33851":33852,"33852":33853,"33853":33854,"33854":33855,"33855":33856,"33856":33857,"33857":33858,"33858":33859,"33859":33860,"33860":33861,"33861":33862,"33862":33863,"33863":33864,"33864":33865,"33865":33866,"33866":33867,"33867":33868,"33868":33869,"33869":33870,"33870":33871,"33871":33872,"33872":33873,"33873":33874,"33874":33875,"33875":33876,"33876":33877,"33877":33878,"33878":33879,"33879":33880,"33880":33881,"33881":33882,"33882":33883,"33883":33884,"33884":33885,"33885":33886,"33886":33887,"33887":33888,"33888":33889,"33889":33890,"33890":33891,"33891":33892,"33892":33893,"33893":33894,"33894":33895,"33895":33896,"33896":33897,"33897":33898,"33898":33899,"33899":33900,"33900":33901,"33901":33902,"33902":33903,"33903":33904,"33904":33905,"33905":33906,"33906":33907,"33907":33908,"33908":33909,"33909":33910,"33910":33911,"33911":33912,"33912":33913,"33913":33914,"33914":33915,"33915":33916,"33916":33917,"33917":33918,"33918":33919,"33919":33920,"33920":33921,"33921":33922,"33922":33923,"33923":33924,"33924":33925,"33925":33926,"33926":33927,"33927":33928,"33928":33929,"33929":33930,"33930":33931,"33931":33932,"33932":33933,"33933":33934,"33934":33935,"33935":33936,"33936":33937,"33937":33938,"33938":33939,"33939":33940,"33940":33941,"33941":33942,"33942":33943,"33943":33944,"33944":33945,"33945":33946,"33946":33947,"33947":33948,"33948":33949,"33949":33950,"33950":33951,"33951":33952,"33952":33953,"33953":33954,"33954":33955,"33955":33956,"33956":33957,"33957":33958,"33958":33959,"33959":33960,"33960":33961,"33961":33962,"33962":33963,"33963":33964,"33964":33965,"33965":33966,"33966":33967,"33967":33968,"33968":33969,"33969":33970,"33970":33971,"33971":33972,"33972":33973,"33973":33974,"33974":33975,"33975":33976,"33976":33977,"33977":33978,"33978":33979,"33979":33980,"33980":33981,"33981":33982,"33982":33983,"33983":33984,"33984":33985,"33985":33986,"33986":33987,"33987":33988,"33988":33989,"33989":33990,"33990":33991,"33991":33992,"33992":33993,"33993":33994,"33994":33995,"33995":33996,"33996":33997,"33997":33998,"33998":33999,"33999":34000,"34000":34001,"34001":34002,"34002":34003,"34003":34004,"34004":34005,"34005":34006,"34006":34007,"34007":34008,"34008":34009,"34009":34010,"34010":34011,"34011":34012,"34012":34013,"34013":34014,"34014":34015,"34015":34016,"34016":34017,"34017":34018,"34018":34019,"34019":34020,"34020":34021,"34021":34022,"34022":34023,"34023":34024,"34024":34025,"34025":34026,"34026":34027,"34027":34028,"34028":34029,"34029":34030,"34030":34031,"34031":34032,"34032":34033,"34033":34034,"34034":34035,"34035":34036,"34036":34037,"34037":34038,"34038":34039,"34039":34040,"34040":34041,"34041":34042,"34042":34043,"34043":34044,"34044":34045,"34045":34046,"34046":34047,"34047":34048,"34048":34049,"34049":34050,"34050":34051,"34051":34052,"34052":34053,"34053":34054,"34054":34055,"34055":34056,"34056":34057,"34057":34058,"34058":34059,"34059":34060,"34060":34061,"34061":34062,"34062":34063,"34063":34064,"34064":34065,"34065":34066,"34066":34067,"34067":34068,"34068":34069,"34069":34070,"34070":34071,"34071":34072,"34072":34073,"34073":34074,"34074":34075,"34075":34076,"34076":34077,"34077":34078,"34078":34079,"34079":34080,"34080":34081,"34081":34082,"34082":34083,"34083":34084,"34084":34085,"34085":34086,"34086":34087,"34087":34088,"34088":34089,"34089":34090,"34090":34091,"34091":34092,"34092":34093,"34093":34094,"34094":34095,"34095":34096,"34096":34097,"34097":34098,"34098":34099,"34099":34100,"34100":34101,"34101":34102,"34102":34103,"34103":34104,"34104":34105,"34105":34106,"34106":34107,"34107":34108,"34108":34109,"34109":34110,"34110":34111,"34111":34112,"34112":34113,"34113":34114,"34114":34115,"34115":34116,"34116":34117,"34117":34118,"34118":34119,"34119":34120,"34120":34121,"34121":34122,"34122":34123,"34123":34124,"34124":34125,"34125":34126,"34126":34127,"34127":34128,"34128":34129,"34129":34130,"34130":34131,"34131":34132,"34132":34133,"34133":34134,"34134":34135,"34135":34136,"34136":34137,"34137":34138,"34138":34139,"34139":34140,"34140":34141,"34141":34142,"34142":34143,"34143":34144,"34144":34145,"34145":34146,"34146":34147,"34147":34148,"34148":34149,"34149":34150,"34150":34151,"34151":34152,"34152":34153,"34153":34154,"34154":34155,"34155":34156,"34156":34157,"34157":34158,"34158":34159,"34159":34160,"34160":34161,"34161":34162,"34162":34163,"34163":34164,"34164":34165,"34165":34166,"34166":34167,"34167":34168,"34168":34169,"34169":34170,"34170":34171,"34171":34172,"34172":34173,"34173":34174,"34174":34175,"34175":34176,"34176":34177,"34177":34178,"34178":34179,"34179":34180,"34180":34181,"34181":34182,"34182":34183,"34183":34184,"34184":34185,"34185":34186,"34186":34187,"34187":34188,"34188":34189,"34189":34190,"34190":34191,"34191":34192,"34192":34193,"34193":34194,"34194":34195,"34195":34196,"34196":34197,"34197":34198,"34198":34199,"34199":34200,"34200":34201,"34201":34202,"34202":34203,"34203":34204,"34204":34205,"34205":34206,"34206":34207,"34207":34208,"34208":34209,"34209":34210,"34210":34211,"34211":34212,"34212":34213,"34213":34214,"34214":34215,"34215":34216,"34216":34217,"34217":34218,"34218":34219,"34219":34220,"34220":34221,"34221":34222,"34222":34223,"34223":34224,"34224":34225,"34225":34226,"34226":34227,"34227":34228,"34228":34229,"34229":34230,"34230":34231,"34231":34232,"34232":34233,"34233":34234,"34234":34235,"34235":34236,"34236":34237,"34237":34238,"34238":34239,"34239":34240,"34240":34241,"34241":34242,"34242":34243,"34243":34244,"34244":34245,"34245":34246,"34246":34247,"34247":34248,"34248":34249,"34249":34250,"34250":34251,"34251":34252,"34252":34253,"34253":34254,"34254":34255,"34255":34256,"34256":34257,"34257":34258,"34258":34259,"34259":34260,"34260":34261,"34261":34262,"34262":34263,"34263":34264,"34264":34265,"34265":34266,"34266":34267,"34267":34268,"34268":34269,"34269":34270,"34270":34271,"34271":34272,"34272":34273,"34273":34274,"34274":34275,"34275":34276,"34276":34277,"34277":34278,"34278":34279,"34279":34280,"34280":34281,"34281":34282,"34282":34283,"34283":34284,"34284":34285,"34285":34286,"34286":34287,"34287":34288,"34288":34289,"34289":34290,"34290":34291,"34291":34292,"34292":34293,"34293":34294,"34294":34295,"34295":34296,"34296":34297,"34297":34298,"34298":34299,"34299":34300,"34300":34301,"34301":34302,"34302":34303,"34303":34304,"34304":34305,"34305":34306,"34306":34307,"34307":34308,"34308":34309,"34309":34310,"34310":34311,"34311":34312,"34312":34313,"34313":34314,"34314":34315,"34315":34316,"34316":34317,"34317":34318,"34318":34319,"34319":34320,"34320":34321,"34321":34322,"34322":34323,"34323":34324,"34324":34325,"34325":34326,"34326":34327,"34327":34328,"34328":34329,"34329":34330,"34330":34331,"34331":34332,"34332":34333,"34333":34334,"34334":34335,"34335":34336,"34336":34337,"34337":34338,"34338":34339,"34339":34340,"34340":34341,"34341":34342,"34342":34343,"34343":34344,"34344":34345,"34345":34346,"34346":34347,"34347":34348,"34348":34349,"34349":34350,"34350":34351,"34351":34352,"34352":34353,"34353":34354,"34354":34355,"34355":34356,"34356":34357,"34357":34358,"34358":34359,"34359":34360,"34360":34361,"34361":34362,"34362":34363,"34363":34364,"34364":34365,"34365":34366,"34366":34367,"34367":34368,"34368":34369,"34369":34370,"34370":34371,"34371":34372,"34372":34373,"34373":34374,"34374":34375,"34375":34376,"34376":34377,"34377":34378,"34378":34379,"34379":34380,"34380":34381,"34381":34382,"34382":34383,"34383":34384,"34384":34385,"34385":34386,"34386":34387,"34387":34388,"34388":34389,"34389":34390,"34390":34391,"34391":34392,"34392":34393,"34393":34394,"34394":34395,"34395":34396,"34396":34397,"34397":34398,"34398":34399,"34399":34400,"34400":34401,"34401":34402,"34402":34403,"34403":34404,"34404":34405,"34405":34406,"34406":34407,"34407":34408,"34408":34409,"34409":34410,"34410":34411,"34411":34412,"34412":34413,"34413":34414,"34414":34415,"34415":34416,"34416":34417,"34417":34418,"34418":34419,"34419":34420,"34420":34421,"34421":34422,"34422":34423,"34423":34424,"34424":34425,"34425":34426,"34426":34427,"34427":34428,"34428":34429,"34429":34430,"34430":34431,"34431":34432,"34432":34433,"34433":34434,"34434":34435,"34435":34436,"34436":34437,"34437":34438,"34438":34439,"34439":34440,"34440":34441,"34441":34442,"34442":34443,"34443":34444,"34444":34445,"34445":34446,"34446":34447,"34447":34448,"34448":34449,"34449":34450,"34450":34451,"34451":34452,"34452":34453,"34453":34454,"34454":34455,"34455":34456,"34456":34457,"34457":34458,"34458":34459,"34459":34460,"34460":34461,"34461":34462,"34462":34463,"34463":34464,"34464":34465,"34465":34466,"34466":34467,"34467":34468,"34468":34469,"34469":34470,"34470":34471,"34471":34472,"34472":34473,"34473":34474,"34474":34475,"34475":34476,"34476":34477,"34477":34478,"34478":34479,"34479":34480,"34480":34481,"34481":34482,"34482":34483,"34483":34484,"34484":34485,"34485":34486,"34486":34487,"34487":34488,"34488":34489,"34489":34490,"34490":34491,"34491":34492,"34492":34493,"34493":34494,"34494":34495,"34495":34496,"34496":34497,"34497":34498,"34498":34499,"34499":34500,"34500":34501,"34501":34502,"34502":34503,"34503":34504,"34504":34505,"34505":34506,"34506":34507,"34507":34508,"34508":34509,"34509":34510,"34510":34511,"34511":34512,"34512":34513,"34513":34514,"34514":34515,"34515":34516,"34516":34517,"34517":34518,"34518":34519,"34519":34520,"34520":34521,"34521":34522,"34522":34523,"34523":34524,"34524":34525,"34525":34526,"34526":34527,"34527":34528,"34528":34529,"34529":34530,"34530":34531,"34531":34532,"34532":34533,"34533":34534,"34534":34535,"34535":34536,"34536":34537,"34537":34538,"34538":34539,"34539":34540,"34540":34541,"34541":34542,"34542":34543,"34543":34544,"34544":34545,"34545":34546,"34546":34547,"34547":34548,"34548":34549,"34549":34550,"34550":34551,"34551":34552,"34552":34553,"34553":34554,"34554":34555,"34555":34556,"34556":34557,"34557":34558,"34558":34559,"34559":34560,"34560":34561,"34561":34562,"34562":34563,"34563":34564,"34564":34565,"34565":34566,"34566":34567,"34567":34568,"34568":34569,"34569":34570,"34570":34571,"34571":34572,"34572":34573,"34573":34574,"34574":34575,"34575":34576,"34576":34577,"34577":34578,"34578":34579,"34579":34580,"34580":34581,"34581":34582,"34582":34583,"34583":34584,"34584":34585,"34585":34586,"34586":34587,"34587":34588,"34588":34589,"34589":34590,"34590":34591,"34591":34592,"34592":34593,"34593":34594,"34594":34595,"34595":34596,"34596":34597,"34597":34598,"34598":34599,"34599":34600,"34600":34601,"34601":34602,"34602":34603,"34603":34604,"34604":34605,"34605":34606,"34606":34607,"34607":34608,"34608":34609,"34609":34610,"34610":34611,"34611":34612,"34612":34613,"34613":34614,"34614":34615,"34615":34616,"34616":34617,"34617":34618,"34618":34619,"34619":34620,"34620":34621,"34621":34622,"34622":34623,"34623":34624,"34624":34625,"34625":34626,"34626":34627,"34627":34628,"34628":34629,"34629":34630,"34630":34631,"34631":34632,"34632":34633,"34633":34634,"34634":34635,"34635":34636,"34636":34637,"34637":34638,"34638":34639,"34639":34640,"34640":34641,"34641":34642,"34642":34643,"34643":34644,"34644":34645,"34645":34646,"34646":34647,"34647":34648,"34648":34649,"34649":34650,"34650":34651,"34651":34652,"34652":34653,"34653":34654,"34654":34655,"34655":34656,"34656":34657,"34657":34658,"34658":34659,"34659":34660,"34660":34661,"34661":34662,"34662":34663,"34663":34664,"34664":34665,"34665":34666,"34666":34667,"34667":34668,"34668":34669,"34669":34670,"34670":34671,"34671":34672,"34672":34673,"34673":34674,"34674":34675,"34675":34676,"34676":34677,"34677":34678,"34678":34679,"34679":34680,"34680":34681,"34681":34682,"34682":34683,"34683":34684,"34684":34685,"34685":34686,"34686":34687,"34687":34688,"34688":34689,"34689":34690,"34690":34691,"34691":34692,"34692":34693,"34693":34694,"34694":34695,"34695":34696,"34696":34697,"34697":34698,"34698":34699,"34699":34700,"34700":34701,"34701":34702,"34702":34703,"34703":34704,"34704":34705,"34705":34706,"34706":34707,"34707":34708,"34708":34709,"34709":34710,"34710":34711,"34711":34712,"34712":34713,"34713":34714,"34714":34715,"34715":34716,"34716":34717,"34717":34718,"34718":34719,"34719":34720,"34720":34721,"34721":34722,"34722":34723,"34723":34724,"34724":34725,"34725":34726,"34726":34727,"34727":34728,"34728":34729,"34729":34730,"34730":34731,"34731":34732,"34732":34733,"34733":34734,"34734":34735,"34735":34736,"34736":34737,"34737":34738,"34738":34739,"34739":34740,"34740":34741,"34741":34742,"34742":34743,"34743":34744,"34744":34745,"34745":34746,"34746":34747,"34747":34748,"34748":34749,"34749":34750,"34750":34751,"34751":34752,"34752":34753,"34753":34754,"34754":34755,"34755":34756,"34756":34757,"34757":34758,"34758":34759,"34759":34760,"34760":34761,"34761":34762,"34762":34763,"34763":34764,"34764":34765,"34765":34766,"34766":34767,"34767":34768,"34768":34769,"34769":34770,"34770":34771,"34771":34772,"34772":34773,"34773":34774,"34774":34775,"34775":34776,"34776":34777,"34777":34778,"34778":34779,"34779":34780,"34780":34781,"34781":34782,"34782":34783,"34783":34784,"34784":34785,"34785":34786,"34786":34787,"34787":34788,"34788":34789,"34789":34790,"34790":34791,"34791":34792,"34792":34793,"34793":34794,"34794":34795,"34795":34796,"34796":34797,"34797":34798,"34798":34799,"34799":34800,"34800":34801,"34801":34802,"34802":34803,"34803":34804,"34804":34805,"34805":34806,"34806":34807,"34807":34808,"34808":34809,"34809":34810,"34810":34811,"34811":34812,"34812":34813,"34813":34814,"34814":34815,"34815":34816,"34816":34817,"34817":34818,"34818":34819,"34819":34820,"34820":34821,"34821":34822,"34822":34823,"34823":34824,"34824":34825,"34825":34826,"34826":34827,"34827":34828,"34828":34829,"34829":34830,"34830":34831,"34831":34832,"34832":34833,"34833":34834,"34834":34835,"34835":34836,"34836":34837,"34837":34838,"34838":34839,"34839":34840,"34840":34841,"34841":34842,"34842":34843,"34843":34844,"34844":34845,"34845":34846,"34846":34847,"34847":34848,"34848":34849,"34849":34850,"34850":34851,"34851":34852,"34852":34853,"34853":34854,"34854":34855,"34855":34856,"34856":34857,"34857":34858,"34858":34859,"34859":34860,"34860":34861,"34861":34862,"34862":34863,"34863":34864,"34864":34865,"34865":34866,"34866":34867,"34867":34868,"34868":34869,"34869":34870,"34870":34871,"34871":34872,"34872":34873,"34873":34874,"34874":34875,"34875":34876,"34876":34877,"34877":34878,"34878":34879,"34879":34880,"34880":34881,"34881":34882,"34882":34883,"34883":34884,"34884":34885,"34885":34886,"34886":34887,"34887":34888,"34888":34889,"34889":34890,"34890":34891,"34891":34892,"34892":34893,"34893":34894,"34894":34895,"34895":34896,"34896":34897,"34897":34898,"34898":34899,"34899":34900,"34900":34901,"34901":34902,"34902":34903,"34903":34904,"34904":34905,"34905":34906,"34906":34907,"34907":34908,"34908":34909,"34909":34910,"34910":34911,"34911":34912,"34912":34913,"34913":34914,"34914":34915,"34915":34916,"34916":34917,"34917":34918,"34918":34919,"34919":34920,"34920":34921,"34921":34922,"34922":34923,"34923":34924,"34924":34925,"34925":34926,"34926":34927,"34927":34928,"34928":34929,"34929":34930,"34930":34931,"34931":34932,"34932":34933,"34933":34934,"34934":34935,"34935":34936,"34936":34937,"34937":34938,"34938":34939,"34939":34940,"34940":34941,"34941":34942,"34942":34943,"34943":34944,"34944":34945,"34945":34946,"34946":34947,"34947":34948,"34948":34949,"34949":34950,"34950":34951,"34951":34952,"34952":34953,"34953":34954,"34954":34955,"34955":34956,"34956":34957,"34957":34958,"34958":34959,"34959":34960,"34960":34961,"34961":34962,"34962":34963,"34963":34964,"34964":34965,"34965":34966,"34966":34967,"34967":34968,"34968":34969,"34969":34970,"34970":34971,"34971":34972,"34972":34973,"34973":34974,"34974":34975,"34975":34976,"34976":34977,"34977":34978,"34978":34979,"34979":34980,"34980":34981,"34981":34982,"34982":34983,"34983":34984,"34984":34985,"34985":34986,"34986":34987,"34987":34988,"34988":34989,"34989":34990,"34990":34991,"34991":34992,"34992":34993,"34993":34994,"34994":34995,"34995":34996,"34996":34997,"34997":34998,"34998":34999,"34999":35000,"35000":35001,"35001":35002,"35002":35003,"35003":35004,"35004":35005,"35005":35006,"35006":35007,"35007":35008,"35008":35009,"35009":35010,"35010":35011,"35011":35012,"35012":35013,"35013":35014,"35014":35015,"35015":35016,"35016":35017,"35017":35018,"35018":35019,"35019":35020,"35020":35021,"35021":35022,"35022":35023,"35023":35024,"35024":35025,"35025":35026,"35026":35027,"35027":35028,"35028":35029,"35029":35030,"35030":35031,"35031":35032,"35032":35033,"35033":35034,"35034":35035,"35035":35036,"35036":35037,"35037":35038,"35038":35039,"35039":35040,"35040":35041,"35041":35042,"35042":35043,"35043":35044,"35044":35045,"35045":35046,"35046":35047,"35047":35048,"35048":35049,"35049":35050,"35050":35051,"35051":35052,"35052":35053,"35053":35054,"35054":35055,"35055":35056,"35056":35057,"35057":35058,"35058":35059,"35059":35060,"35060":35061,"35061":35062,"35062":35063,"35063":35064,"35064":35065,"35065":35066,"35066":35067,"35067":35068,"35068":35069,"35069":35070,"35070":35071,"35071":35072,"35072":35073,"35073":35074,"35074":35075,"35075":35076,"35076":35077,"35077":35078,"35078":35079,"35079":35080,"35080":35081,"35081":35082,"35082":35083,"35083":35084,"35084":35085,"35085":35086,"35086":35087,"35087":35088,"35088":35089,"35089":35090,"35090":35091,"35091":35092,"35092":35093,"35093":35094,"35094":35095,"35095":35096,"35096":35097,"35097":35098,"35098":35099,"35099":35100,"35100":35101,"35101":35102,"35102":35103,"35103":35104,"35104":35105,"35105":35106,"35106":35107,"35107":35108,"35108":35109,"35109":35110,"35110":35111,"35111":35112,"35112":35113,"35113":35114,"35114":35115,"35115":35116,"35116":35117,"35117":35118,"35118":35119,"35119":35120,"35120":35121,"35121":35122,"35122":35123,"35123":35124,"35124":35125,"35125":35126,"35126":35127,"35127":35128,"35128":35129,"35129":35130,"35130":35131,"35131":35132,"35132":35133,"35133":35134,"35134":35135,"35135":35136,"35136":35137,"35137":35138,"35138":35139,"35139":35140,"35140":35141,"35141":35142,"35142":35143,"35143":35144,"35144":35145,"35145":35146,"35146":35147,"35147":35148,"35148":35149,"35149":35150,"35150":35151,"35151":35152,"35152":35153,"35153":35154,"35154":35155,"35155":35156,"35156":35157,"35157":35158,"35158":35159,"35159":35160,"35160":35161,"35161":35162,"35162":35163,"35163":35164,"35164":35165,"35165":35166,"35166":35167,"35167":35168,"35168":35169,"35169":35170,"35170":35171,"35171":35172,"35172":35173,"35173":35174,"35174":35175,"35175":35176,"35176":35177,"35177":35178,"35178":35179,"35179":35180,"35180":35181,"35181":35182,"35182":35183,"35183":35184,"35184":35185,"35185":35186,"35186":35187,"35187":35188,"35188":35189,"35189":35190,"35190":35191,"35191":35192,"35192":35193,"35193":35194,"35194":35195,"35195":35196,"35196":35197,"35197":35198,"35198":35199,"35199":35200,"35200":35201,"35201":35202,"35202":35203,"35203":35204,"35204":35205,"35205":35206,"35206":35207,"35207":35208,"35208":35209,"35209":35210,"35210":35211,"35211":35212,"35212":35213,"35213":35214,"35214":35215,"35215":35216,"35216":35217,"35217":35218,"35218":35219,"35219":35220,"35220":35221,"35221":35222,"35222":35223,"35223":35224,"35224":35225,"35225":35226,"35226":35227,"35227":35228,"35228":35229,"35229":35230,"35230":35231,"35231":35232,"35232":35233,"35233":35234,"35234":35235,"35235":35236,"35236":35237,"35237":35238,"35238":35239,"35239":35240,"35240":35241,"35241":35242,"35242":35243,"35243":35244,"35244":35245,"35245":35246,"35246":35247,"35247":35248,"35248":35249,"35249":35250,"35250":35251,"35251":35252,"35252":35253,"35253":35254,"35254":35255,"35255":35256,"35256":35257,"35257":35258,"35258":35259,"35259":35260,"35260":35261,"35261":35262,"35262":35263,"35263":35264,"35264":35265,"35265":35266,"35266":35267,"35267":35268,"35268":35269,"35269":35270,"35270":35271,"35271":35272,"35272":35273,"35273":35274,"35274":35275,"35275":35276,"35276":35277,"35277":35278,"35278":35279,"35279":35280,"35280":35281,"35281":35282,"35282":35283,"35283":35284,"35284":35285,"35285":35286,"35286":35287,"35287":35288,"35288":35289,"35289":35290,"35290":35291,"35291":35292,"35292":35293,"35293":35294,"35294":35295,"35295":35296,"35296":35297,"35297":35298,"35298":35299,"35299":35300,"35300":35301,"35301":35302,"35302":35303,"35303":35304,"35304":35305,"35305":35306,"35306":35307,"35307":35308,"35308":35309,"35309":35310,"35310":35311,"35311":35312,"35312":35313,"35313":35314,"35314":35315,"35315":35316,"35316":35317,"35317":35318,"35318":35319,"35319":35320,"35320":35321,"35321":35322,"35322":35323,"35323":35324,"35324":35325,"35325":35326,"35326":35327,"35327":35328,"35328":35329,"35329":35330,"35330":35331,"35331":35332,"35332":35333,"35333":35334,"35334":35335,"35335":35336,"35336":35337,"35337":35338,"35338":35339,"35339":35340,"35340":35341,"35341":35342,"35342":35343,"35343":35344,"35344":35345,"35345":35346,"35346":35347,"35347":35348,"35348":35349,"35349":35350,"35350":35351,"35351":35352,"35352":35353,"35353":35354,"35354":35355,"35355":35356,"35356":35357,"35357":35358,"35358":35359,"35359":35360,"35360":35361,"35361":35362,"35362":35363,"35363":35364,"35364":35365,"35365":35366,"35366":35367,"35367":35368,"35368":35369,"35369":35370,"35370":35371,"35371":35372,"35372":35373,"35373":35374,"35374":35375,"35375":35376,"35376":35377,"35377":35378,"35378":35379,"35379":35380,"35380":35381,"35381":35382,"35382":35383,"35383":35384,"35384":35385,"35385":35386,"35386":35387,"35387":35388,"35388":35389,"35389":35390,"35390":35391,"35391":35392,"35392":35393,"35393":35394,"35394":35395,"35395":35396,"35396":35397,"35397":35398,"35398":35399,"35399":35400,"35400":35401,"35401":35402,"35402":35403,"35403":35404,"35404":35405,"35405":35406,"35406":35407,"35407":35408,"35408":35409,"35409":35410,"35410":35411,"35411":35412,"35412":35413,"35413":35414,"35414":35415,"35415":35416,"35416":35417,"35417":35418,"35418":35419,"35419":35420,"35420":35421,"35421":35422,"35422":35423,"35423":35424,"35424":35425,"35425":35426,"35426":35427,"35427":35428,"35428":35429,"35429":35430,"35430":35431,"35431":35432,"35432":35433,"35433":35434,"35434":35435,"35435":35436,"35436":35437,"35437":35438,"35438":35439,"35439":35440,"35440":35441,"35441":35442,"35442":35443,"35443":35444,"35444":35445,"35445":35446,"35446":35447,"35447":35448,"35448":35449,"35449":35450,"35450":35451,"35451":35452,"35452":35453,"35453":35454,"35454":35455,"35455":35456,"35456":35457,"35457":35458,"35458":35459,"35459":35460,"35460":35461,"35461":35462,"35462":35463,"35463":35464,"35464":35465,"35465":35466,"35466":35467,"35467":35468,"35468":35469,"35469":35470,"35470":35471,"35471":35472,"35472":35473,"35473":35474,"35474":35475,"35475":35476,"35476":35477,"35477":35478,"35478":35479,"35479":35480,"35480":35481,"35481":35482,"35482":35483,"35483":35484,"35484":35485,"35485":35486,"35486":35487,"35487":35488,"35488":35489,"35489":35490,"35490":35491,"35491":35492,"35492":35493,"35493":35494,"35494":35495,"35495":35496,"35496":35497,"35497":35498,"35498":35499,"35499":35500,"35500":35501,"35501":35502,"35502":35503,"35503":35504,"35504":35505,"35505":35506,"35506":35507,"35507":35508,"35508":35509,"35509":35510,"35510":35511,"35511":35512,"35512":35513,"35513":35514,"35514":35515,"35515":35516,"35516":35517,"35517":35518,"35518":35519,"35519":35520,"35520":35521,"35521":35522,"35522":35523,"35523":35524,"35524":35525,"35525":35526,"35526":35527,"35527":35528,"35528":35529,"35529":35530,"35530":35531,"35531":35532,"35532":35533,"35533":35534,"35534":35535,"35535":35536,"35536":35537,"35537":35538,"35538":35539,"35539":35540,"35540":35541,"35541":35542,"35542":35543,"35543":35544,"35544":35545,"35545":35546,"35546":35547,"35547":35548,"35548":35549,"35549":35550,"35550":35551,"35551":35552,"35552":35553,"35553":35554,"35554":35555,"35555":35556,"35556":35557,"35557":35558,"35558":35559,"35559":35560,"35560":35561,"35561":35562,"35562":35563,"35563":35564,"35564":35565,"35565":35566,"35566":35567,"35567":35568,"35568":35569,"35569":35570,"35570":35571,"35571":35572,"35572":35573,"35573":35574,"35574":35575,"35575":35576,"35576":35577,"35577":35578,"35578":35579,"35579":35580,"35580":35581,"35581":35582,"35582":35583,"35583":35584,"35584":35585,"35585":35586,"35586":35587,"35587":35588,"35588":35589,"35589":35590,"35590":35591,"35591":35592,"35592":35593,"35593":35594,"35594":35595,"35595":35596,"35596":35597,"35597":35598,"35598":35599,"35599":35600,"35600":35601,"35601":35602,"35602":35603,"35603":35604,"35604":35605,"35605":35606,"35606":35607,"35607":35608,"35608":35609,"35609":35610,"35610":35611,"35611":35612,"35612":35613,"35613":35614,"35614":35615,"35615":35616,"35616":35617,"35617":35618,"35618":35619,"35619":35620,"35620":35621,"35621":35622,"35622":35623,"35623":35624,"35624":35625,"35625":35626,"35626":35627,"35627":35628,"35628":35629,"35629":35630,"35630":35631,"35631":35632,"35632":35633,"35633":35634,"35634":35635,"35635":35636,"35636":35637,"35637":35638,"35638":35639,"35639":35640,"35640":35641,"35641":35642,"35642":35643,"35643":35644,"35644":35645,"35645":35646,"35646":35647,"35647":35648,"35648":35649,"35649":35650,"35650":35651,"35651":35652,"35652":35653,"35653":35654,"35654":35655,"35655":35656,"35656":35657,"35657":35658,"35658":35659,"35659":35660,"35660":35661,"35661":35662,"35662":35663,"35663":35664,"35664":35665,"35665":35666,"35666":35667,"35667":35668,"35668":35669,"35669":35670,"35670":35671,"35671":35672,"35672":35673,"35673":35674,"35674":35675,"35675":35676,"35676":35677,"35677":35678,"35678":35679,"35679":35680,"35680":35681,"35681":35682,"35682":35683,"35683":35684,"35684":35685,"35685":35686,"35686":35687,"35687":35688,"35688":35689,"35689":35690,"35690":35691,"35691":35692,"35692":35693,"35693":35694,"35694":35695,"35695":35696,"35696":35697,"35697":35698,"35698":35699,"35699":35700,"35700":35701,"35701":35702,"35702":35703,"35703":35704,"35704":35705,"35705":35706,"35706":35707,"35707":35708,"35708":35709,"35709":35710,"35710":35711,"35711":35712,"35712":35713,"35713":35714,"35714":35715,"35715":35716,"35716":35717,"35717":35718,"35718":35719,"35719":35720,"35720":35721,"35721":35722,"35722":35723,"35723":35724,"35724":35725,"35725":35726,"35726":35727,"35727":35728,"35728":35729,"35729":35730,"35730":35731,"35731":35732,"35732":35733,"35733":35734,"35734":35735,"35735":35736,"35736":35737,"35737":35738,"35738":35739,"35739":35740,"35740":35741,"35741":35742,"35742":35743,"35743":35744,"35744":35745,"35745":35746,"35746":35747,"35747":35748,"35748":35749,"35749":35750,"35750":35751,"35751":35752,"35752":35753,"35753":35754,"35754":35755,"35755":35756,"35756":35757,"35757":35758,"35758":35759,"35759":35760,"35760":35761,"35761":35762,"35762":35763,"35763":35764,"35764":35765,"35765":35766,"35766":35767,"35767":35768,"35768":35769,"35769":35770,"35770":35771,"35771":35772,"35772":35773,"35773":35774,"35774":35775,"35775":35776,"35776":35777,"35777":35778,"35778":35779,"35779":35780,"35780":35781,"35781":35782,"35782":35783,"35783":35784,"35784":35785,"35785":35786,"35786":35787,"35787":35788,"35788":35789,"35789":35790,"35790":35791,"35791":35792,"35792":35793,"35793":35794,"35794":35795,"35795":35796,"35796":35797,"35797":35798,"35798":35799,"35799":35800,"35800":35801,"35801":35802,"35802":35803,"35803":35804,"35804":35805,"35805":35806,"35806":35807,"35807":35808,"35808":35809,"35809":35810,"35810":35811,"35811":35812,"35812":35813,"35813":35814,"35814":35815,"35815":35816,"35816":35817,"35817":35818,"35818":35819,"35819":35820,"35820":35821,"35821":35822,"35822":35823,"35823":35824,"35824":35825,"35825":35826,"35826":35827,"35827":35828,"35828":35829,"35829":35830,"35830":35831,"35831":35832,"35832":35833,"35833":35834,"35834":35835,"35835":35836,"35836":35837,"35837":35838,"35838":35839,"35839":35840,"35840":35841,"35841":35842,"35842":35843,"35843":35844,"35844":35845,"35845":35846,"35846":35847,"35847":35848,"35848":35849,"35849":35850,"35850":35851,"35851":35852,"35852":35853,"35853":35854,"35854":35855,"35855":35856,"35856":35857,"35857":35858,"35858":35859,"35859":35860,"35860":35861,"35861":35862,"35862":35863,"35863":35864,"35864":35865,"35865":35866,"35866":35867,"35867":35868,"35868":35869,"35869":35870,"35870":35871,"35871":35872,"35872":35873,"35873":35874,"35874":35875,"35875":35876,"35876":35877,"35877":35878,"35878":35879,"35879":35880,"35880":35881,"35881":35882,"35882":35883,"35883":35884,"35884":35885,"35885":35886,"35886":35887,"35887":35888,"35888":35889,"35889":35890,"35890":35891,"35891":35892,"35892":35893,"35893":35894,"35894":35895,"35895":35896,"35896":35897,"35897":35898,"35898":35899,"35899":35900,"35900":35901,"35901":35902,"35902":35903,"35903":35904,"35904":35905,"35905":35906,"35906":35907,"35907":35908,"35908":35909,"35909":35910,"35910":35911,"35911":35912,"35912":35913,"35913":35914,"35914":35915,"35915":35916,"35916":35917,"35917":35918,"35918":35919,"35919":35920,"35920":35921,"35921":35922,"35922":35923,"35923":35924,"35924":35925,"35925":35926,"35926":35927,"35927":35928,"35928":35929,"35929":35930,"35930":35931,"35931":35932,"35932":35933,"35933":35934,"35934":35935,"35935":35936,"35936":35937,"35937":35938,"35938":35939,"35939":35940,"35940":35941,"35941":35942,"35942":35943,"35943":35944,"35944":35945,"35945":35946,"35946":35947,"35947":35948,"35948":35949,"35949":35950,"35950":35951,"35951":35952,"35952":35953,"35953":35954,"35954":35955,"35955":35956,"35956":35957,"35957":35958,"35958":35959,"35959":35960,"35960":35961,"35961":35962,"35962":35963,"35963":35964,"35964":35965,"35965":35966,"35966":35967,"35967":35968,"35968":35969,"35969":35970,"35970":35971,"35971":35972,"35972":35973,"35973":35974,"35974":35975,"35975":35976,"35976":35977,"35977":35978,"35978":35979,"35979":35980,"35980":35981,"35981":35982,"35982":35983,"35983":35984,"35984":35985,"35985":35986,"35986":35987,"35987":35988,"35988":35989,"35989":35990,"35990":35991,"35991":35992,"35992":35993,"35993":35994,"35994":35995,"35995":35996,"35996":35997,"35997":35998,"35998":35999,"35999":36000,"36000":36001,"36001":36002,"36002":36003,"36003":36004,"36004":36005,"36005":36006,"36006":36007,"36007":36008,"36008":36009,"36009":36010,"36010":36011,"36011":36012,"36012":36013,"36013":36014,"36014":36015,"36015":36016,"36016":36017,"36017":36018,"36018":36019,"36019":36020,"36020":36021,"36021":36022,"36022":36023,"36023":36024,"36024":36025,"36025":36026,"36026":36027,"36027":36028,"36028":36029,"36029":36030,"36030":36031,"36031":36032,"36032":36033,"36033":36034,"36034":36035,"36035":36036,"36036":36037,"36037":36038,"36038":36039,"36039":36040,"36040":36041,"36041":36042,"36042":36043,"36043":36044,"36044":36045,"36045":36046,"36046":36047,"36047":36048,"36048":36049,"36049":36050,"36050":36051,"36051":36052,"36052":36053,"36053":36054,"36054":36055,"36055":36056,"36056":36057,"36057":36058,"36058":36059,"36059":36060,"36060":36061,"36061":36062,"36062":36063,"36063":36064,"36064":36065,"36065":36066,"36066":36067,"36067":36068,"36068":36069,"36069":36070,"36070":36071,"36071":36072,"36072":36073,"36073":36074,"36074":36075,"36075":36076,"36076":36077,"36077":36078,"36078":36079,"36079":36080,"36080":36081,"36081":36082,"36082":36083,"36083":36084,"36084":36085,"36085":36086,"36086":36087,"36087":36088,"36088":36089,"36089":36090,"36090":36091,"36091":36092,"36092":36093,"36093":36094,"36094":36095,"36095":36096,"36096":36097,"36097":36098,"36098":36099,"36099":36100,"36100":36101,"36101":36102,"36102":36103,"36103":36104,"36104":36105,"36105":36106,"36106":36107,"36107":36108,"36108":36109,"36109":36110,"36110":36111,"36111":36112,"36112":36113,"36113":36114,"36114":36115,"36115":36116,"36116":36117,"36117":36118,"36118":36119,"36119":36120,"36120":36121,"36121":36122,"36122":36123,"36123":36124,"36124":36125,"36125":36126,"36126":36127,"36127":36128,"36128":36129,"36129":36130,"36130":36131,"36131":36132,"36132":36133,"36133":36134,"36134":36135,"36135":36136,"36136":36137,"36137":36138,"36138":36139,"36139":36140,"36140":36141,"36141":36142,"36142":36143,"36143":36144,"36144":36145,"36145":36146,"36146":36147,"36147":36148,"36148":36149,"36149":36150,"36150":36151,"36151":36152,"36152":36153,"36153":36154,"36154":36155,"36155":36156,"36156":36157,"36157":36158,"36158":36159,"36159":36160,"36160":36161,"36161":36162,"36162":36163,"36163":36164,"36164":36165,"36165":36166,"36166":36167,"36167":36168,"36168":36169,"36169":36170,"36170":36171,"36171":36172,"36172":36173,"36173":36174,"36174":36175,"36175":36176,"36176":36177,"36177":36178,"36178":36179,"36179":36180,"36180":36181,"36181":36182,"36182":36183,"36183":36184,"36184":36185,"36185":36186,"36186":36187,"36187":36188,"36188":36189,"36189":36190,"36190":36191,"36191":36192,"36192":36193,"36193":36194,"36194":36195,"36195":36196,"36196":36197,"36197":36198,"36198":36199,"36199":36200,"36200":36201,"36201":36202,"36202":36203,"36203":36204,"36204":36205,"36205":36206,"36206":36207,"36207":36208,"36208":36209,"36209":36210,"36210":36211,"36211":36212,"36212":36213,"36213":36214,"36214":36215,"36215":36216,"36216":36217,"36217":36218,"36218":36219,"36219":36220,"36220":36221,"36221":36222,"36222":36223,"36223":36224,"36224":36225,"36225":36226,"36226":36227,"36227":36228,"36228":36229,"36229":36230,"36230":36231,"36231":36232,"36232":36233,"36233":36234,"36234":36235,"36235":36236,"36236":36237,"36237":36238,"36238":36239,"36239":36240,"36240":36241,"36241":36242,"36242":36243,"36243":36244,"36244":36245,"36245":36246,"36246":36247,"36247":36248,"36248":36249,"36249":36250,"36250":36251,"36251":36252,"36252":36253,"36253":36254,"36254":36255,"36255":36256,"36256":36257,"36257":36258,"36258":36259,"36259":36260,"36260":36261,"36261":36262,"36262":36263,"36263":36264,"36264":36265,"36265":36266,"36266":36267,"36267":36268,"36268":36269,"36269":36270,"36270":36271,"36271":36272,"36272":36273,"36273":36274,"36274":36275,"36275":36276,"36276":36277,"36277":36278,"36278":36279,"36279":36280,"36280":36281,"36281":36282,"36282":36283,"36283":36284,"36284":36285,"36285":36286,"36286":36287,"36287":36288,"36288":36289,"36289":36290,"36290":36291,"36291":36292,"36292":36293,"36293":36294,"36294":36295,"36295":36296,"36296":36297,"36297":36298,"36298":36299,"36299":36300,"36300":36301,"36301":36302,"36302":36303,"36303":36304,"36304":36305,"36305":36306,"36306":36307,"36307":36308,"36308":36309,"36309":36310,"36310":36311,"36311":36312,"36312":36313,"36313":36314,"36314":36315,"36315":36316,"36316":36317,"36317":36318,"36318":36319,"36319":36320,"36320":36321,"36321":36322,"36322":36323,"36323":36324,"36324":36325,"36325":36326,"36326":36327,"36327":36328,"36328":36329,"36329":36330,"36330":36331,"36331":36332,"36332":36333,"36333":36334,"36334":36335,"36335":36336,"36336":36337,"36337":36338,"36338":36339,"36339":36340,"36340":36341,"36341":36342,"36342":36343,"36343":36344,"36344":36345,"36345":36346,"36346":36347,"36347":36348,"36348":36349,"36349":36350,"36350":36351,"36351":36352,"36352":36353,"36353":36354,"36354":36355,"36355":36356,"36356":36357,"36357":36358,"36358":36359,"36359":36360,"36360":36361,"36361":36362,"36362":36363,"36363":36364,"36364":36365,"36365":36366,"36366":36367,"36367":36368,"36368":36369,"36369":36370,"36370":36371,"36371":36372,"36372":36373,"36373":36374,"36374":36375,"36375":36376,"36376":36377,"36377":36378,"36378":36379,"36379":36380,"36380":36381,"36381":36382,"36382":36383,"36383":36384,"36384":36385,"36385":36386,"36386":36387,"36387":36388,"36388":36389,"36389":36390,"36390":36391,"36391":36392,"36392":36393,"36393":36394,"36394":36395,"36395":36396,"36396":36397,"36397":36398,"36398":36399,"36399":36400,"36400":36401,"36401":36402,"36402":36403,"36403":36404,"36404":36405,"36405":36406,"36406":36407,"36407":36408,"36408":36409,"36409":36410,"36410":36411,"36411":36412,"36412":36413,"36413":36414,"36414":36415,"36415":36416,"36416":36417,"36417":36418,"36418":36419,"36419":36420,"36420":36421,"36421":36422,"36422":36423,"36423":36424,"36424":36425,"36425":36426,"36426":36427,"36427":36428,"36428":36429,"36429":36430,"36430":36431,"36431":36432,"36432":36433,"36433":36434,"36434":36435,"36435":36436,"36436":36437,"36437":36438,"36438":36439,"36439":36440,"36440":36441,"36441":36442,"36442":36443,"36443":36444,"36444":36445,"36445":36446,"36446":36447,"36447":36448,"36448":36449,"36449":36450,"36450":36451,"36451":36452,"36452":36453,"36453":36454,"36454":36455,"36455":36456,"36456":36457,"36457":36458,"36458":36459,"36459":36460,"36460":36461,"36461":36462,"36462":36463,"36463":36464,"36464":36465,"36465":36466,"36466":36467,"36467":36468,"36468":36469,"36469":36470,"36470":36471,"36471":36472,"36472":36473,"36473":36474,"36474":36475,"36475":36476,"36476":36477,"36477":36478,"36478":36479,"36479":36480,"36480":36481,"36481":36482,"36482":36483,"36483":36484,"36484":36485,"36485":36486,"36486":36487,"36487":36488,"36488":36489,"36489":36490,"36490":36491,"36491":36492,"36492":36493,"36493":36494,"36494":36495,"36495":36496,"36496":36497,"36497":36498,"36498":36499,"36499":36500,"36500":36501,"36501":36502,"36502":36503,"36503":36504,"36504":36505,"36505":36506,"36506":36507,"36507":36508,"36508":36509,"36509":36510,"36510":36511,"36511":36512,"36512":36513,"36513":36514,"36514":36515,"36515":36516,"36516":36517,"36517":36518,"36518":36519,"36519":36520,"36520":36521,"36521":36522,"36522":36523,"36523":36524,"36524":36525,"36525":36526,"36526":36527,"36527":36528,"36528":36529,"36529":36530,"36530":36531,"36531":36532,"36532":36533,"36533":36534,"36534":36535,"36535":36536,"36536":36537,"36537":36538,"36538":36539,"36539":36540,"36540":36541,"36541":36542,"36542":36543,"36543":36544,"36544":36545,"36545":36546,"36546":36547,"36547":36548,"36548":36549,"36549":36550,"36550":36551,"36551":36552,"36552":36553,"36553":36554,"36554":36555,"36555":36556,"36556":36557,"36557":36558,"36558":36559,"36559":36560,"36560":36561,"36561":36562,"36562":36563,"36563":36564,"36564":36565,"36565":36566,"36566":36567,"36567":36568,"36568":36569,"36569":36570,"36570":36571,"36571":36572,"36572":36573,"36573":36574,"36574":36575,"36575":36576,"36576":36577,"36577":36578,"36578":36579,"36579":36580,"36580":36581,"36581":36582,"36582":36583,"36583":36584,"36584":36585,"36585":36586,"36586":36587,"36587":36588,"36588":36589,"36589":36590,"36590":36591,"36591":36592,"36592":36593,"36593":36594,"36594":36595,"36595":36596,"36596":36597,"36597":36598,"36598":36599,"36599":36600,"36600":36601,"36601":36602,"36602":36603,"36603":36604,"36604":36605,"36605":36606,"36606":36607,"36607":36608,"36608":36609,"36609":36610,"36610":36611,"36611":36612,"36612":36613,"36613":36614,"36614":36615,"36615":36616,"36616":36617,"36617":36618,"36618":36619,"36619":36620,"36620":36621,"36621":36622,"36622":36623,"36623":36624,"36624":36625,"36625":36626,"36626":36627,"36627":36628,"36628":36629,"36629":36630,"36630":36631,"36631":36632,"36632":36633,"36633":36634,"36634":36635,"36635":36636,"36636":36637,"36637":36638,"36638":36639,"36639":36640,"36640":36641,"36641":36642,"36642":36643,"36643":36644,"36644":36645,"36645":36646,"36646":36647,"36647":36648,"36648":36649,"36649":36650,"36650":36651,"36651":36652,"36652":36653,"36653":36654,"36654":36655,"36655":36656,"36656":36657,"36657":36658,"36658":36659,"36659":36660,"36660":36661,"36661":36662,"36662":36663,"36663":36664,"36664":36665,"36665":36666,"36666":36667,"36667":36668,"36668":36669,"36669":36670,"36670":36671,"36671":36672,"36672":36673,"36673":36674,"36674":36675,"36675":36676,"36676":36677,"36677":36678,"36678":36679,"36679":36680,"36680":36681,"36681":36682,"36682":36683,"36683":36684,"36684":36685,"36685":36686,"36686":36687,"36687":36688,"36688":36689,"36689":36690,"36690":36691,"36691":36692,"36692":36693,"36693":36694,"36694":36695,"36695":36696,"36696":36697,"36697":36698,"36698":36699,"36699":36700,"36700":36701,"36701":36702,"36702":36703,"36703":36704,"36704":36705,"36705":36706,"36706":36707,"36707":36708,"36708":36709,"36709":36710,"36710":36711,"36711":36712,"36712":36713,"36713":36714,"36714":36715,"36715":36716,"36716":36717,"36717":36718,"36718":36719,"36719":36720,"36720":36721,"36721":36722,"36722":36723,"36723":36724,"36724":36725,"36725":36726,"36726":36727,"36727":36728,"36728":36729,"36729":36730,"36730":36731,"36731":36732,"36732":36733,"36733":36734,"36734":36735,"36735":36736,"36736":36737,"36737":36738,"36738":36739,"36739":36740,"36740":36741,"36741":36742,"36742":36743,"36743":36744,"36744":36745,"36745":36746,"36746":36747,"36747":36748,"36748":36749,"36749":36750,"36750":36751,"36751":36752,"36752":36753,"36753":36754,"36754":36755,"36755":36756,"36756":36757,"36757":36758,"36758":36759,"36759":36760,"36760":36761,"36761":36762,"36762":36763,"36763":36764,"36764":36765,"36765":36766,"36766":36767,"36767":36768,"36768":36769,"36769":36770,"36770":36771,"36771":36772,"36772":36773,"36773":36774,"36774":36775,"36775":36776,"36776":36777,"36777":36778,"36778":36779,"36779":36780,"36780":36781,"36781":36782,"36782":36783,"36783":36784,"36784":36785,"36785":36786,"36786":36787,"36787":36788,"36788":36789,"36789":36790,"36790":36791,"36791":36792,"36792":36793,"36793":36794,"36794":36795,"36795":36796,"36796":36797,"36797":36798,"36798":36799,"36799":36800,"36800":36801,"36801":36802,"36802":36803,"36803":36804,"36804":36805,"36805":36806,"36806":36807,"36807":36808,"36808":36809,"36809":36810,"36810":36811,"36811":36812,"36812":36813,"36813":36814,"36814":36815,"36815":36816,"36816":36817,"36817":36818,"36818":36819,"36819":36820,"36820":36821,"36821":36822,"36822":36823,"36823":36824,"36824":36825,"36825":36826,"36826":36827,"36827":36828,"36828":36829,"36829":36830,"36830":36831,"36831":36832,"36832":36833,"36833":36834,"36834":36835,"36835":36836,"36836":36837,"36837":36838,"36838":36839,"36839":36840,"36840":36841,"36841":36842,"36842":36843,"36843":36844,"36844":36845,"36845":36846,"36846":36847,"36847":36848,"36848":36849,"36849":36850,"36850":36851,"36851":36852,"36852":36853,"36853":36854,"36854":36855,"36855":36856,"36856":36857,"36857":36858,"36858":36859,"36859":36860,"36860":36861,"36861":36862,"36862":36863,"36863":36864,"36864":36865,"36865":36866,"36866":36867,"36867":36868,"36868":36869,"36869":36870,"36870":36871,"36871":36872,"36872":36873,"36873":36874,"36874":36875,"36875":36876,"36876":36877,"36877":36878,"36878":36879,"36879":36880,"36880":36881,"36881":36882,"36882":36883,"36883":36884,"36884":36885,"36885":36886,"36886":36887,"36887":36888,"36888":36889,"36889":36890,"36890":36891,"36891":36892,"36892":36893,"36893":36894,"36894":36895,"36895":36896,"36896":36897,"36897":36898,"36898":36899,"36899":36900,"36900":36901,"36901":36902,"36902":36903,"36903":36904,"36904":36905,"36905":36906,"36906":36907,"36907":36908,"36908":36909,"36909":36910,"36910":36911,"36911":36912,"36912":36913,"36913":36914,"36914":36915,"36915":36916,"36916":36917,"36917":36918,"36918":36919,"36919":36920,"36920":36921,"36921":36922,"36922":36923,"36923":36924,"36924":36925,"36925":36926,"36926":36927,"36927":36928,"36928":36929,"36929":36930,"36930":36931,"36931":36932,"36932":36933,"36933":36934,"36934":36935,"36935":36936,"36936":36937,"36937":36938,"36938":36939,"36939":36940,"36940":36941,"36941":36942,"36942":36943,"36943":36944,"36944":36945,"36945":36946,"36946":36947,"36947":36948,"36948":36949,"36949":36950,"36950":36951,"36951":36952,"36952":36953,"36953":36954,"36954":36955,"36955":36956,"36956":36957,"36957":36958,"36958":36959,"36959":36960,"36960":36961,"36961":36962,"36962":36963,"36963":36964,"36964":36965,"36965":36966,"36966":36967,"36967":36968,"36968":36969,"36969":36970,"36970":36971,"36971":36972,"36972":36973,"36973":36974,"36974":36975,"36975":36976,"36976":36977,"36977":36978,"36978":36979,"36979":36980,"36980":36981,"36981":36982,"36982":36983,"36983":36984,"36984":36985,"36985":36986,"36986":36987,"36987":36988,"36988":36989,"36989":36990,"36990":36991,"36991":36992,"36992":36993,"36993":36994,"36994":36995,"36995":36996,"36996":36997,"36997":36998,"36998":36999,"36999":37000,"37000":37001,"37001":37002,"37002":37003,"37003":37004,"37004":37005,"37005":37006,"37006":37007,"37007":37008,"37008":37009,"37009":37010,"37010":37011,"37011":37012,"37012":37013,"37013":37014,"37014":37015,"37015":37016,"37016":37017,"37017":37018,"37018":37019,"37019":37020,"37020":37021,"37021":37022,"37022":37023,"37023":37024,"37024":37025,"37025":37026,"37026":37027,"37027":37028,"37028":37029,"37029":37030,"37030":37031,"37031":37032,"37032":37033,"37033":37034,"37034":37035,"37035":37036,"37036":37037,"37037":37038,"37038":37039,"37039":37040,"37040":37041,"37041":37042,"37042":37043,"37043":37044,"37044":37045,"37045":37046,"37046":37047,"37047":37048,"37048":37049,"37049":37050,"37050":37051,"37051":37052,"37052":37053,"37053":37054,"37054":37055,"37055":37056,"37056":37057,"37057":37058,"37058":37059,"37059":37060,"37060":37061,"37061":37062,"37062":37063,"37063":37064,"37064":37065,"37065":37066,"37066":37067,"37067":37068,"37068":37069,"37069":37070,"37070":37071,"37071":37072,"37072":37073,"37073":37074,"37074":37075,"37075":37076,"37076":37077,"37077":37078,"37078":37079,"37079":37080,"37080":37081,"37081":37082,"37082":37083,"37083":37084,"37084":37085,"37085":37086,"37086":37087,"37087":37088,"37088":37089,"37089":37090,"37090":37091,"37091":37092,"37092":37093,"37093":37094,"37094":37095,"37095":37096,"37096":37097,"37097":37098,"37098":37099,"37099":37100,"37100":37101,"37101":37102,"37102":37103,"37103":37104,"37104":37105,"37105":37106,"37106":37107,"37107":37108,"37108":37109,"37109":37110,"37110":37111,"37111":37112,"37112":37113,"37113":37114,"37114":37115,"37115":37116,"37116":37117,"37117":37118,"37118":37119,"37119":37120,"37120":37121,"37121":37122,"37122":37123,"37123":37124,"37124":37125,"37125":37126,"37126":37127,"37127":37128,"37128":37129,"37129":37130,"37130":37131,"37131":37132,"37132":37133,"37133":37134,"37134":37135,"37135":37136,"37136":37137,"37137":37138,"37138":37139,"37139":37140,"37140":37141,"37141":37142,"37142":37143,"37143":37144,"37144":37145,"37145":37146,"37146":37147,"37147":37148,"37148":37149,"37149":37150,"37150":37151,"37151":37152,"37152":37153,"37153":37154,"37154":37155,"37155":37156,"37156":37157,"37157":37158,"37158":37159,"37159":37160,"37160":37161,"37161":37162,"37162":37163,"37163":37164,"37164":37165,"37165":37166,"37166":37167,"37167":37168,"37168":37169,"37169":37170,"37170":37171,"37171":37172,"37172":37173,"37173":37174,"37174":37175,"37175":37176,"37176":37177,"37177":37178,"37178":37179,"37179":37180,"37180":37181,"37181":37182,"37182":37183,"37183":37184,"37184":37185,"37185":37186,"37186":37187,"37187":37188,"37188":37189,"37189":37190,"37190":37191,"37191":37192,"37192":37193,"37193":37194,"37194":37195,"37195":37196,"37196":37197,"37197":37198,"37198":37199,"37199":37200,"37200":37201,"37201":37202,"37202":37203,"37203":37204,"37204":37205,"37205":37206,"37206":37207,"37207":37208,"37208":37209,"37209":37210,"37210":37211,"37211":37212,"37212":37213,"37213":37214,"37214":37215,"37215":37216,"37216":37217,"37217":37218,"37218":37219,"37219":37220,"37220":37221,"37221":37222,"37222":37223,"37223":37224,"37224":37225,"37225":37226,"37226":37227,"37227":37228,"37228":37229,"37229":37230,"37230":37231,"37231":37232,"37232":37233,"37233":37234,"37234":37235,"37235":37236,"37236":37237,"37237":37238,"37238":37239,"37239":37240,"37240":37241,"37241":37242,"37242":37243,"37243":37244,"37244":37245,"37245":37246,"37246":37247,"37247":37248,"37248":37249,"37249":37250,"37250":37251,"37251":37252,"37252":37253,"37253":37254,"37254":37255,"37255":37256,"37256":37257,"37257":37258,"37258":37259,"37259":37260,"37260":37261,"37261":37262,"37262":37263,"37263":37264,"37264":37265,"37265":37266,"37266":37267,"37267":37268,"37268":37269,"37269":37270,"37270":37271,"37271":37272,"37272":37273,"37273":37274,"37274":37275,"37275":37276,"37276":37277,"37277":37278,"37278":37279,"37279":37280,"37280":37281,"37281":37282,"37282":37283,"37283":37284,"37284":37285,"37285":37286,"37286":37287,"37287":37288,"37288":37289,"37289":37290,"37290":37291,"37291":37292,"37292":37293,"37293":37294,"37294":37295,"37295":37296,"37296":37297,"37297":37298,"37298":37299,"37299":37300,"37300":37301,"37301":37302,"37302":37303,"37303":37304,"37304":37305,"37305":37306,"37306":37307,"37307":37308,"37308":37309,"37309":37310,"37310":37311,"37311":37312,"37312":37313,"37313":37314,"37314":37315,"37315":37316,"37316":37317,"37317":37318,"37318":37319,"37319":37320,"37320":37321,"37321":37322,"37322":37323,"37323":37324,"37324":37325,"37325":37326,"37326":37327,"37327":37328,"37328":37329,"37329":37330,"37330":37331,"37331":37332,"37332":37333,"37333":37334,"37334":37335,"37335":37336,"37336":37337,"37337":37338,"37338":37339,"37339":37340,"37340":37341,"37341":37342,"37342":37343,"37343":37344,"37344":37345,"37345":37346,"37346":37347,"37347":37348,"37348":37349,"37349":37350,"37350":37351,"37351":37352,"37352":37353,"37353":37354,"37354":37355,"37355":37356,"37356":37357,"37357":37358,"37358":37359,"37359":37360,"37360":37361,"37361":37362,"37362":37363,"37363":37364,"37364":37365,"37365":37366,"37366":37367,"37367":37368,"37368":37369,"37369":37370,"37370":37371,"37371":37372,"37372":37373,"37373":37374,"37374":37375,"37375":37376,"37376":37377,"37377":37378,"37378":37379,"37379":37380,"37380":37381,"37381":37382,"37382":37383,"37383":37384,"37384":37385,"37385":37386,"37386":37387,"37387":37388,"37388":37389,"37389":37390,"37390":37391,"37391":37392,"37392":37393,"37393":37394,"37394":37395,"37395":37396,"37396":37397,"37397":37398,"37398":37399,"37399":37400,"37400":37401,"37401":37402,"37402":37403,"37403":37404,"37404":37405,"37405":37406,"37406":37407,"37407":37408,"37408":37409,"37409":37410,"37410":37411,"37411":37412,"37412":37413,"37413":37414,"37414":37415,"37415":37416,"37416":37417,"37417":37418,"37418":37419,"37419":37420,"37420":37421,"37421":37422,"37422":37423,"37423":37424,"37424":37425,"37425":37426,"37426":37427,"37427":37428,"37428":37429,"37429":37430,"37430":37431,"37431":37432,"37432":37433,"37433":37434,"37434":37435,"37435":37436,"37436":37437,"37437":37438,"37438":37439,"37439":37440,"37440":37441,"37441":37442,"37442":37443,"37443":37444,"37444":37445,"37445":37446,"37446":37447,"37447":37448,"37448":37449,"37449":37450,"37450":37451,"37451":37452,"37452":37453,"37453":37454,"37454":37455,"37455":37456,"37456":37457,"37457":37458,"37458":37459,"37459":37460,"37460":37461,"37461":37462,"37462":37463,"37463":37464,"37464":37465,"37465":37466,"37466":37467,"37467":37468,"37468":37469,"37469":37470,"37470":37471,"37471":37472,"37472":37473,"37473":37474,"37474":37475,"37475":37476,"37476":37477,"37477":37478,"37478":37479,"37479":37480,"37480":37481,"37481":37482,"37482":37483,"37483":37484,"37484":37485,"37485":37486,"37486":37487,"37487":37488,"37488":37489,"37489":37490,"37490":37491,"37491":37492,"37492":37493,"37493":37494,"37494":37495,"37495":37496,"37496":37497,"37497":37498,"37498":37499,"37499":37500,"37500":37501,"37501":37502,"37502":37503,"37503":37504,"37504":37505,"37505":37506,"37506":37507,"37507":37508,"37508":37509,"37509":37510,"37510":37511,"37511":37512,"37512":37513,"37513":37514,"37514":37515,"37515":37516,"37516":37517,"37517":37518,"37518":37519,"37519":37520,"37520":37521,"37521":37522,"37522":37523,"37523":37524,"37524":37525,"37525":37526,"37526":37527,"37527":37528,"37528":37529,"37529":37530,"37530":37531,"37531":37532,"37532":37533,"37533":37534,"37534":37535,"37535":37536,"37536":37537,"37537":37538,"37538":37539,"37539":37540,"37540":37541,"37541":37542,"37542":37543,"37543":37544,"37544":37545,"37545":37546,"37546":37547,"37547":37548,"37548":37549,"37549":37550,"37550":37551,"37551":37552,"37552":37553,"37553":37554,"37554":37555,"37555":37556,"37556":37557,"37557":37558,"37558":37559,"37559":37560,"37560":37561,"37561":37562,"37562":37563,"37563":37564,"37564":37565,"37565":37566,"37566":37567,"37567":37568,"37568":37569,"37569":37570,"37570":37571,"37571":37572,"37572":37573,"37573":37574,"37574":37575,"37575":37576,"37576":37577,"37577":37578,"37578":37579,"37579":37580,"37580":37581,"37581":37582,"37582":37583,"37583":37584,"37584":37585,"37585":37586,"37586":37587,"37587":37588,"37588":37589,"37589":37590,"37590":37591,"37591":37592,"37592":37593,"37593":37594,"37594":37595,"37595":37596,"37596":37597,"37597":37598,"37598":37599,"37599":37600,"37600":37601,"37601":37602,"37602":37603,"37603":37604,"37604":37605,"37605":37606,"37606":37607,"37607":37608,"37608":37609,"37609":37610,"37610":37611,"37611":37612,"37612":37613,"37613":37614,"37614":37615,"37615":37616,"37616":37617,"37617":37618,"37618":37619,"37619":37620,"37620":37621,"37621":37622,"37622":37623,"37623":37624,"37624":37625,"37625":37626,"37626":37627,"37627":37628,"37628":37629,"37629":37630,"37630":37631,"37631":37632,"37632":37633,"37633":37634,"37634":37635,"37635":37636,"37636":37637,"37637":37638,"37638":37639,"37639":37640,"37640":37641,"37641":37642,"37642":37643,"37643":37644,"37644":37645,"37645":37646,"37646":37647,"37647":37648,"37648":37649,"37649":37650,"37650":37651,"37651":37652,"37652":37653,"37653":37654,"37654":37655,"37655":37656,"37656":37657,"37657":37658,"37658":37659,"37659":37660,"37660":37661,"37661":37662,"37662":37663,"37663":37664,"37664":37665,"37665":37666,"37666":37667,"37667":37668,"37668":37669,"37669":37670,"37670":37671,"37671":37672,"37672":37673,"37673":37674,"37674":37675,"37675":37676,"37676":37677,"37677":37678,"37678":37679,"37679":37680,"37680":37681,"37681":37682,"37682":37683,"37683":37684,"37684":37685,"37685":37686,"37686":37687,"37687":37688,"37688":37689,"37689":37690,"37690":37691,"37691":37692,"37692":37693,"37693":37694,"37694":37695,"37695":37696,"37696":37697,"37697":37698,"37698":37699,"37699":37700,"37700":37701,"37701":37702,"37702":37703,"37703":37704,"37704":37705,"37705":37706,"37706":37707,"37707":37708,"37708":37709,"37709":37710,"37710":37711,"37711":37712,"37712":37713,"37713":37714,"37714":37715,"37715":37716,"37716":37717,"37717":37718,"37718":37719,"37719":37720,"37720":37721,"37721":37722,"37722":37723,"37723":37724,"37724":37725,"37725":37726,"37726":37727,"37727":37728,"37728":37729,"37729":37730,"37730":37731,"37731":37732,"37732":37733,"37733":37734,"37734":37735,"37735":37736,"37736":37737,"37737":37738,"37738":37739,"37739":37740,"37740":37741,"37741":37742,"37742":37743,"37743":37744,"37744":37745,"37745":37746,"37746":37747,"37747":37748,"37748":37749,"37749":37750,"37750":37751,"37751":37752,"37752":37753,"37753":37754,"37754":37755,"37755":37756,"37756":37757,"37757":37758,"37758":37759,"37759":37760,"37760":37761,"37761":37762,"37762":37763,"37763":37764,"37764":37765,"37765":37766,"37766":37767,"37767":37768,"37768":37769,"37769":37770,"37770":37771,"37771":37772,"37772":37773,"37773":37774,"37774":37775,"37775":37776,"37776":37777,"37777":37778,"37778":37779,"37779":37780,"37780":37781,"37781":37782,"37782":37783,"37783":37784,"37784":37785,"37785":37786,"37786":37787,"37787":37788,"37788":37789,"37789":37790,"37790":37791,"37791":37792,"37792":37793,"37793":37794,"37794":37795,"37795":37796,"37796":37797,"37797":37798,"37798":37799,"37799":37800,"37800":37801,"37801":37802,"37802":37803,"37803":37804,"37804":37805,"37805":37806,"37806":37807,"37807":37808,"37808":37809,"37809":37810,"37810":37811,"37811":37812,"37812":37813,"37813":37814,"37814":37815,"37815":37816,"37816":37817,"37817":37818,"37818":37819,"37819":37820,"37820":37821,"37821":37822,"37822":37823,"37823":37824,"37824":37825,"37825":37826,"37826":37827,"37827":37828,"37828":37829,"37829":37830,"37830":37831,"37831":37832,"37832":37833,"37833":37834,"37834":37835,"37835":37836,"37836":37837,"37837":37838,"37838":37839,"37839":37840,"37840":37841,"37841":37842,"37842":37843,"37843":37844,"37844":37845,"37845":37846,"37846":37847,"37847":37848,"37848":37849,"37849":37850,"37850":37851,"37851":37852,"37852":37853,"37853":37854,"37854":37855,"37855":37856,"37856":37857,"37857":37858,"37858":37859,"37859":37860,"37860":37861,"37861":37862,"37862":37863,"37863":37864,"37864":37865,"37865":37866,"37866":37867,"37867":37868,"37868":37869,"37869":37870,"37870":37871,"37871":37872,"37872":37873,"37873":37874,"37874":37875,"37875":37876,"37876":37877,"37877":37878,"37878":37879,"37879":37880,"37880":37881,"37881":37882,"37882":37883,"37883":37884,"37884":37885,"37885":37886,"37886":37887,"37887":37888,"37888":37889,"37889":37890,"37890":37891,"37891":37892,"37892":37893,"37893":37894,"37894":37895,"37895":37896,"37896":37897,"37897":37898,"37898":37899,"37899":37900,"37900":37901,"37901":37902,"37902":37903,"37903":37904,"37904":37905,"37905":37906,"37906":37907,"37907":37908,"37908":37909,"37909":37910,"37910":37911,"37911":37912,"37912":37913,"37913":37914,"37914":37915,"37915":37916,"37916":37917,"37917":37918,"37918":37919,"37919":37920,"37920":37921,"37921":37922,"37922":37923,"37923":37924,"37924":37925,"37925":37926,"37926":37927,"37927":37928,"37928":37929,"37929":37930,"37930":37931,"37931":37932,"37932":37933,"37933":37934,"37934":37935,"37935":37936,"37936":37937,"37937":37938,"37938":37939,"37939":37940,"37940":37941,"37941":37942,"37942":37943,"37943":37944,"37944":37945,"37945":37946,"37946":37947,"37947":37948,"37948":37949,"37949":37950,"37950":37951,"37951":37952,"37952":37953,"37953":37954,"37954":37955,"37955":37956,"37956":37957,"37957":37958,"37958":37959,"37959":37960,"37960":37961,"37961":37962,"37962":37963,"37963":37964,"37964":37965,"37965":37966,"37966":37967,"37967":37968,"37968":37969,"37969":37970,"37970":37971,"37971":37972,"37972":37973,"37973":37974,"37974":37975,"37975":37976,"37976":37977,"37977":37978,"37978":37979,"37979":37980,"37980":37981,"37981":37982,"37982":37983,"37983":37984,"37984":37985,"37985":37986,"37986":37987,"37987":37988,"37988":37989,"37989":37990,"37990":37991,"37991":37992,"37992":37993,"37993":37994,"37994":37995,"37995":37996,"37996":37997,"37997":37998,"37998":37999,"37999":38000,"38000":38001,"38001":38002,"38002":38003,"38003":38004,"38004":38005,"38005":38006,"38006":38007,"38007":38008,"38008":38009,"38009":38010,"38010":38011,"38011":38012,"38012":38013,"38013":38014,"38014":38015,"38015":38016,"38016":38017,"38017":38018,"38018":38019,"38019":38020,"38020":38021,"38021":38022,"38022":38023,"38023":38024,"38024":38025,"38025":38026,"38026":38027,"38027":38028,"38028":38029,"38029":38030,"38030":38031,"38031":38032,"38032":38033,"38033":38034,"38034":38035,"38035":38036,"38036":38037,"38037":38038,"38038":38039,"38039":38040,"38040":38041,"38041":38042,"38042":38043,"38043":38044,"38044":38045,"38045":38046,"38046":38047,"38047":38048,"38048":38049,"38049":38050,"38050":38051,"38051":38052,"38052":38053,"38053":38054,"38054":38055,"38055":38056,"38056":38057,"38057":38058,"38058":38059,"38059":38060,"38060":38061,"38061":38062,"38062":38063,"38063":38064,"38064":38065,"38065":38066,"38066":38067,"38067":38068,"38068":38069,"38069":38070,"38070":38071,"38071":38072,"38072":38073,"38073":38074,"38074":38075,"38075":38076,"38076":38077,"38077":38078,"38078":38079,"38079":38080,"38080":38081,"38081":38082,"38082":38083,"38083":38084,"38084":38085,"38085":38086,"38086":38087,"38087":38088,"38088":38089,"38089":38090,"38090":38091,"38091":38092,"38092":38093,"38093":38094,"38094":38095,"38095":38096,"38096":38097,"38097":38098,"38098":38099,"38099":38100,"38100":38101,"38101":38102,"38102":38103,"38103":38104,"38104":38105,"38105":38106,"38106":38107,"38107":38108,"38108":38109,"38109":38110,"38110":38111,"38111":38112,"38112":38113,"38113":38114,"38114":38115,"38115":38116,"38116":38117,"38117":38118,"38118":38119,"38119":38120,"38120":38121,"38121":38122,"38122":38123,"38123":38124,"38124":38125,"38125":38126,"38126":38127,"38127":38128,"38128":38129,"38129":38130,"38130":38131,"38131":38132,"38132":38133,"38133":38134,"38134":38135,"38135":38136,"38136":38137,"38137":38138,"38138":38139,"38139":38140,"38140":38141,"38141":38142,"38142":38143,"38143":38144,"38144":38145,"38145":38146,"38146":38147,"38147":38148,"38148":38149,"38149":38150,"38150":38151,"38151":38152,"38152":38153,"38153":38154,"38154":38155,"38155":38156,"38156":38157,"38157":38158,"38158":38159,"38159":38160,"38160":38161,"38161":38162,"38162":38163,"38163":38164,"38164":38165,"38165":38166,"38166":38167,"38167":38168,"38168":38169,"38169":38170,"38170":38171,"38171":38172,"38172":38173,"38173":38174,"38174":38175,"38175":38176,"38176":38177,"38177":38178,"38178":38179,"38179":38180,"38180":38181,"38181":38182,"38182":38183,"38183":38184,"38184":38185,"38185":38186,"38186":38187,"38187":38188,"38188":38189,"38189":38190,"38190":38191,"38191":38192,"38192":38193,"38193":38194,"38194":38195,"38195":38196,"38196":38197,"38197":38198,"38198":38199,"38199":38200,"38200":38201,"38201":38202,"38202":38203,"38203":38204,"38204":38205,"38205":38206,"38206":38207,"38207":38208,"38208":38209,"38209":38210,"38210":38211,"38211":38212,"38212":38213,"38213":38214,"38214":38215,"38215":38216,"38216":38217,"38217":38218,"38218":38219,"38219":38220,"38220":38221,"38221":38222,"38222":38223,"38223":38224,"38224":38225,"38225":38226,"38226":38227,"38227":38228,"38228":38229,"38229":38230,"38230":38231,"38231":38232,"38232":38233,"38233":38234,"38234":38235,"38235":38236,"38236":38237,"38237":38238,"38238":38239,"38239":38240,"38240":38241,"38241":38242,"38242":38243,"38243":38244,"38244":38245,"38245":38246,"38246":38247,"38247":38248,"38248":38249,"38249":38250,"38250":38251,"38251":38252,"38252":38253,"38253":38254,"38254":38255,"38255":38256,"38256":38257,"38257":38258,"38258":38259,"38259":38260,"38260":38261,"38261":38262,"38262":38263,"38263":38264,"38264":38265,"38265":38266,"38266":38267,"38267":38268,"38268":38269,"38269":38270,"38270":38271,"38271":38272,"38272":38273,"38273":38274,"38274":38275,"38275":38276,"38276":38277,"38277":38278,"38278":38279,"38279":38280,"38280":38281,"38281":38282,"38282":38283,"38283":38284,"38284":38285,"38285":38286,"38286":38287,"38287":38288,"38288":38289,"38289":38290,"38290":38291,"38291":38292,"38292":38293,"38293":38294,"38294":38295,"38295":38296,"38296":38297,"38297":38298,"38298":38299,"38299":38300,"38300":38301,"38301":38302,"38302":38303,"38303":38304,"38304":38305,"38305":38306,"38306":38307,"38307":38308,"38308":38309,"38309":38310,"38310":38311,"38311":38312,"38312":38313,"38313":38314,"38314":38315,"38315":38316,"38316":38317,"38317":38318,"38318":38319,"38319":38320,"38320":38321,"38321":38322,"38322":38323,"38323":38324,"38324":38325,"38325":38326,"38326":38327,"38327":38328,"38328":38329,"38329":38330,"38330":38331,"38331":38332,"38332":38333,"38333":38334,"38334":38335,"38335":38336,"38336":38337,"38337":38338,"38338":38339,"38339":38340,"38340":38341,"38341":38342,"38342":38343,"38343":38344,"38344":38345,"38345":38346,"38346":38347,"38347":38348,"38348":38349,"38349":38350,"38350":38351,"38351":38352,"38352":38353,"38353":38354,"38354":38355,"38355":38356,"38356":38357,"38357":38358,"38358":38359,"38359":38360,"38360":38361,"38361":38362,"38362":38363,"38363":38364,"38364":38365,"38365":38366,"38366":38367,"38367":38368,"38368":38369,"38369":38370,"38370":38371,"38371":38372,"38372":38373,"38373":38374,"38374":38375,"38375":38376,"38376":38377,"38377":38378,"38378":38379,"38379":38380,"38380":38381,"38381":38382,"38382":38383,"38383":38384,"38384":38385,"38385":38386,"38386":38387,"38387":38388,"38388":38389,"38389":38390,"38390":38391,"38391":38392,"38392":38393,"38393":38394,"38394":38395,"38395":38396,"38396":38397,"38397":38398,"38398":38399,"38399":38400,"38400":38401,"38401":38402,"38402":38403,"38403":38404,"38404":38405,"38405":38406,"38406":38407,"38407":38408,"38408":38409,"38409":38410,"38410":38411,"38411":38412,"38412":38413,"38413":38414,"38414":38415,"38415":38416,"38416":38417,"38417":38418,"38418":38419,"38419":38420,"38420":38421,"38421":38422,"38422":38423,"38423":38424,"38424":38425,"38425":38426,"38426":38427,"38427":38428,"38428":38429,"38429":38430,"38430":38431,"38431":38432,"38432":38433,"38433":38434,"38434":38435,"38435":38436,"38436":38437,"38437":38438,"38438":38439,"38439":38440,"38440":38441,"38441":38442,"38442":38443,"38443":38444,"38444":38445,"38445":38446,"38446":38447,"38447":38448,"38448":38449,"38449":38450,"38450":38451,"38451":38452,"38452":38453,"38453":38454,"38454":38455,"38455":38456,"38456":38457,"38457":38458,"38458":38459,"38459":38460,"38460":38461,"38461":38462,"38462":38463,"38463":38464,"38464":38465,"38465":38466,"38466":38467,"38467":38468,"38468":38469,"38469":38470,"38470":38471,"38471":38472,"38472":38473,"38473":38474,"38474":38475,"38475":38476,"38476":38477,"38477":38478,"38478":38479,"38479":38480,"38480":38481,"38481":38482,"38482":38483,"38483":38484,"38484":38485,"38485":38486,"38486":38487,"38487":38488,"38488":38489,"38489":38490,"38490":38491,"38491":38492,"38492":38493,"38493":38494,"38494":38495,"38495":38496,"38496":38497,"38497":38498,"38498":38499,"38499":38500,"38500":38501,"38501":38502,"38502":38503,"38503":38504,"38504":38505,"38505":38506,"38506":38507,"38507":38508,"38508":38509,"38509":38510,"38510":38511,"38511":38512,"38512":38513,"38513":38514,"38514":38515,"38515":38516,"38516":38517,"38517":38518,"38518":38519,"38519":38520,"38520":38521,"38521":38522,"38522":38523,"38523":38524,"38524":38525,"38525":38526,"38526":38527,"38527":38528,"38528":38529,"38529":38530,"38530":38531,"38531":38532,"38532":38533,"38533":38534,"38534":38535,"38535":38536,"38536":38537,"38537":38538,"38538":38539,"38539":38540,"38540":38541,"38541":38542,"38542":38543,"38543":38544,"38544":38545,"38545":38546,"38546":38547,"38547":38548,"38548":38549,"38549":38550,"38550":38551,"38551":38552,"38552":38553,"38553":38554,"38554":38555,"38555":38556,"38556":38557,"38557":38558,"38558":38559,"38559":38560,"38560":38561,"38561":38562,"38562":38563,"38563":38564,"38564":38565,"38565":38566,"38566":38567,"38567":38568,"38568":38569,"38569":38570,"38570":38571,"38571":38572,"38572":38573,"38573":38574,"38574":38575,"38575":38576,"38576":38577,"38577":38578,"38578":38579,"38579":38580,"38580":38581,"38581":38582,"38582":38583,"38583":38584,"38584":38585,"38585":38586,"38586":38587,"38587":38588,"38588":38589,"38589":38590,"38590":38591,"38591":38592,"38592":38593,"38593":38594,"38594":38595,"38595":38596,"38596":38597,"38597":38598,"38598":38599,"38599":38600,"38600":38601,"38601":38602,"38602":38603,"38603":38604,"38604":38605,"38605":38606,"38606":38607,"38607":38608,"38608":38609,"38609":38610,"38610":38611,"38611":38612,"38612":38613,"38613":38614,"38614":38615,"38615":38616,"38616":38617,"38617":38618,"38618":38619,"38619":38620,"38620":38621,"38621":38622,"38622":38623,"38623":38624,"38624":38625,"38625":38626,"38626":38627,"38627":38628,"38628":38629,"38629":38630,"38630":38631,"38631":38632,"38632":38633,"38633":38634,"38634":38635,"38635":38636,"38636":38637,"38637":38638,"38638":38639,"38639":38640,"38640":38641,"38641":38642,"38642":38643,"38643":38644,"38644":38645,"38645":38646,"38646":38647,"38647":38648,"38648":38649,"38649":38650,"38650":38651,"38651":38652,"38652":38653,"38653":38654,"38654":38655,"38655":38656,"38656":38657,"38657":38658,"38658":38659,"38659":38660,"38660":38661,"38661":38662,"38662":38663,"38663":38664,"38664":38665,"38665":38666,"38666":38667,"38667":38668,"38668":38669,"38669":38670,"38670":38671,"38671":38672,"38672":38673,"38673":38674,"38674":38675,"38675":38676,"38676":38677,"38677":38678,"38678":38679,"38679":38680,"38680":38681,"38681":38682,"38682":38683,"38683":38684,"38684":38685,"38685":38686,"38686":38687,"38687":38688,"38688":38689,"38689":38690,"38690":38691,"38691":38692,"38692":38693,"38693":38694,"38694":38695,"38695":38696,"38696":38697,"38697":38698,"38698":38699,"38699":38700,"38700":38701,"38701":38702,"38702":38703,"38703":38704,"38704":38705,"38705":38706,"38706":38707,"38707":38708,"38708":38709,"38709":38710,"38710":38711,"38711":38712,"38712":38713,"38713":38714,"38714":38715,"38715":38716,"38716":38717,"38717":38718,"38718":38719,"38719":38720,"38720":38721,"38721":38722,"38722":38723,"38723":38724,"38724":38725,"38725":38726,"38726":38727,"38727":38728,"38728":38729,"38729":38730,"38730":38731,"38731":38732,"38732":38733,"38733":38734,"38734":38735,"38735":38736,"38736":38737,"38737":38738,"38738":38739,"38739":38740,"38740":38741,"38741":38742,"38742":38743,"38743":38744,"38744":38745,"38745":38746,"38746":38747,"38747":38748,"38748":38749,"38749":38750,"38750":38751,"38751":38752,"38752":38753,"38753":38754,"38754":38755,"38755":38756,"38756":38757,"38757":38758,"38758":38759,"38759":38760,"38760":38761,"38761":38762,"38762":38763,"38763":38764,"38764":38765,"38765":38766,"38766":38767,"38767":38768,"38768":38769,"38769":38770,"38770":38771,"38771":38772,"38772":38773,"38773":38774,"38774":38775,"38775":38776,"38776":38777,"38777":38778,"38778":38779,"38779":38780,"38780":38781,"38781":38782,"38782":38783,"38783":38784,"38784":38785,"38785":38786,"38786":38787,"38787":38788,"38788":38789,"38789":38790,"38790":38791,"38791":38792,"38792":38793,"38793":38794,"38794":38795,"38795":38796,"38796":38797,"38797":38798,"38798":38799,"38799":38800,"38800":38801,"38801":38802,"38802":38803,"38803":38804,"38804":38805,"38805":38806,"38806":38807,"38807":38808,"38808":38809,"38809":38810,"38810":38811,"38811":38812,"38812":38813,"38813":38814,"38814":38815,"38815":38816,"38816":38817,"38817":38818,"38818":38819,"38819":38820,"38820":38821,"38821":38822,"38822":38823,"38823":38824,"38824":38825,"38825":38826,"38826":38827,"38827":38828,"38828":38829,"38829":38830,"38830":38831,"38831":38832,"38832":38833,"38833":38834,"38834":38835,"38835":38836,"38836":38837,"38837":38838,"38838":38839,"38839":38840,"38840":38841,"38841":38842,"38842":38843,"38843":38844,"38844":38845,"38845":38846,"38846":38847,"38847":38848,"38848":38849,"38849":38850,"38850":38851,"38851":38852,"38852":38853,"38853":38854,"38854":38855,"38855":38856,"38856":38857,"38857":38858,"38858":38859,"38859":38860,"38860":38861,"38861":38862,"38862":38863,"38863":38864,"38864":38865,"38865":38866,"38866":38867,"38867":38868,"38868":38869,"38869":38870,"38870":38871,"38871":38872,"38872":38873,"38873":38874,"38874":38875,"38875":38876,"38876":38877,"38877":38878,"38878":38879,"38879":38880,"38880":38881,"38881":38882,"38882":38883,"38883":38884,"38884":38885,"38885":38886,"38886":38887,"38887":38888,"38888":38889,"38889":38890,"38890":38891,"38891":38892,"38892":38893,"38893":38894,"38894":38895,"38895":38896,"38896":38897,"38897":38898,"38898":38899,"38899":38900,"38900":38901,"38901":38902,"38902":38903,"38903":38904,"38904":38905,"38905":38906,"38906":38907,"38907":38908,"38908":38909,"38909":38910,"38910":38911,"38911":38912,"38912":38913,"38913":38914,"38914":38915,"38915":38916,"38916":38917,"38917":38918,"38918":38919,"38919":38920,"38920":38921,"38921":38922,"38922":38923,"38923":38924,"38924":38925,"38925":38926,"38926":38927,"38927":38928,"38928":38929,"38929":38930,"38930":38931,"38931":38932,"38932":38933,"38933":38934,"38934":38935,"38935":38936,"38936":38937,"38937":38938,"38938":38939,"38939":38940,"38940":38941,"38941":38942,"38942":38943,"38943":38944,"38944":38945,"38945":38946,"38946":38947,"38947":38948,"38948":38949,"38949":38950,"38950":38951,"38951":38952,"38952":38953,"38953":38954,"38954":38955,"38955":38956,"38956":38957,"38957":38958,"38958":38959,"38959":38960,"38960":38961,"38961":38962,"38962":38963,"38963":38964,"38964":38965,"38965":38966,"38966":38967,"38967":38968,"38968":38969,"38969":38970,"38970":38971,"38971":38972,"38972":38973,"38973":38974,"38974":38975,"38975":38976,"38976":38977,"38977":38978,"38978":38979,"38979":38980,"38980":38981,"38981":38982,"38982":38983,"38983":38984,"38984":38985,"38985":38986,"38986":38987,"38987":38988,"38988":38989,"38989":38990,"38990":38991,"38991":38992,"38992":38993,"38993":38994,"38994":38995,"38995":38996,"38996":38997,"38997":38998,"38998":38999,"38999":39000,"39000":39001,"39001":39002,"39002":39003,"39003":39004,"39004":39005,"39005":39006,"39006":39007,"39007":39008,"39008":39009,"39009":39010,"39010":39011,"39011":39012,"39012":39013,"39013":39014,"39014":39015,"39015":39016,"39016":39017,"39017":39018,"39018":39019,"39019":39020,"39020":39021,"39021":39022,"39022":39023,"39023":39024,"39024":39025,"39025":39026,"39026":39027,"39027":39028,"39028":39029,"39029":39030,"39030":39031,"39031":39032,"39032":39033,"39033":39034,"39034":39035,"39035":39036,"39036":39037,"39037":39038,"39038":39039,"39039":39040,"39040":39041,"39041":39042,"39042":39043,"39043":39044,"39044":39045,"39045":39046,"39046":39047,"39047":39048,"39048":39049,"39049":39050,"39050":39051,"39051":39052,"39052":39053,"39053":39054,"39054":39055,"39055":39056,"39056":39057,"39057":39058,"39058":39059,"39059":39060,"39060":39061,"39061":39062,"39062":39063,"39063":39064,"39064":39065,"39065":39066,"39066":39067,"39067":39068,"39068":39069,"39069":39070,"39070":39071,"39071":39072,"39072":39073,"39073":39074,"39074":39075,"39075":39076,"39076":39077,"39077":39078,"39078":39079,"39079":39080,"39080":39081,"39081":39082,"39082":39083,"39083":39084,"39084":39085,"39085":39086,"39086":39087,"39087":39088,"39088":39089,"39089":39090,"39090":39091,"39091":39092,"39092":39093,"39093":39094,"39094":39095,"39095":39096,"39096":39097,"39097":39098,"39098":39099,"39099":39100,"39100":39101,"39101":39102,"39102":39103,"39103":39104,"39104":39105,"39105":39106,"39106":39107,"39107":39108,"39108":39109,"39109":39110,"39110":39111,"39111":39112,"39112":39113,"39113":39114,"39114":39115,"39115":39116,"39116":39117,"39117":39118,"39118":39119,"39119":39120,"39120":39121,"39121":39122,"39122":39123,"39123":39124,"39124":39125,"39125":39126,"39126":39127,"39127":39128,"39128":39129,"39129":39130,"39130":39131,"39131":39132,"39132":39133,"39133":39134,"39134":39135,"39135":39136,"39136":39137,"39137":39138,"39138":39139,"39139":39140,"39140":39141,"39141":39142,"39142":39143,"39143":39144,"39144":39145,"39145":39146,"39146":39147,"39147":39148,"39148":39149,"39149":39150,"39150":39151,"39151":39152,"39152":39153,"39153":39154,"39154":39155,"39155":39156,"39156":39157,"39157":39158,"39158":39159,"39159":39160,"39160":39161,"39161":39162,"39162":39163,"39163":39164,"39164":39165,"39165":39166,"39166":39167,"39167":39168,"39168":39169,"39169":39170,"39170":39171,"39171":39172,"39172":39173,"39173":39174,"39174":39175,"39175":39176,"39176":39177,"39177":39178,"39178":39179,"39179":39180,"39180":39181,"39181":39182,"39182":39183,"39183":39184,"39184":39185,"39185":39186,"39186":39187,"39187":39188,"39188":39189,"39189":39190,"39190":39191,"39191":39192,"39192":39193,"39193":39194,"39194":39195,"39195":39196,"39196":39197,"39197":39198,"39198":39199,"39199":39200,"39200":39201,"39201":39202,"39202":39203,"39203":39204,"39204":39205,"39205":39206,"39206":39207,"39207":39208,"39208":39209,"39209":39210,"39210":39211,"39211":39212,"39212":39213,"39213":39214,"39214":39215,"39215":39216,"39216":39217,"39217":39218,"39218":39219,"39219":39220,"39220":39221,"39221":39222,"39222":39223,"39223":39224,"39224":39225,"39225":39226,"39226":39227,"39227":39228,"39228":39229,"39229":39230,"39230":39231,"39231":39232,"39232":39233,"39233":39234,"39234":39235,"39235":39236,"39236":39237,"39237":39238,"39238":39239,"39239":39240,"39240":39241,"39241":39242,"39242":39243,"39243":39244,"39244":39245,"39245":39246,"39246":39247,"39247":39248,"39248":39249,"39249":39250,"39250":39251,"39251":39252,"39252":39253,"39253":39254,"39254":39255,"39255":39256,"39256":39257,"39257":39258,"39258":39259,"39259":39260,"39260":39261,"39261":39262,"39262":39263,"39263":39264,"39264":39265,"39265":39266,"39266":39267,"39267":39268,"39268":39269,"39269":39270,"39270":39271,"39271":39272,"39272":39273,"39273":39274,"39274":39275,"39275":39276,"39276":39277,"39277":39278,"39278":39279,"39279":39280,"39280":39281,"39281":39282,"39282":39283,"39283":39284,"39284":39285,"39285":39286,"39286":39287,"39287":39288,"39288":39289,"39289":39290,"39290":39291,"39291":39292,"39292":39293,"39293":39294,"39294":39295,"39295":39296,"39296":39297,"39297":39298,"39298":39299,"39299":39300,"39300":39301,"39301":39302,"39302":39303,"39303":39304,"39304":39305,"39305":39306,"39306":39307,"39307":39308,"39308":39309,"39309":39310,"39310":39311,"39311":39312,"39312":39313,"39313":39314,"39314":39315,"39315":39316,"39316":39317,"39317":39318,"39318":39319,"39319":39320,"39320":39321,"39321":39322,"39322":39323,"39323":39324,"39324":39325,"39325":39326,"39326":39327,"39327":39328,"39328":39329,"39329":39330,"39330":39331,"39331":39332,"39332":39333,"39333":39334,"39334":39335,"39335":39336,"39336":39337,"39337":39338,"39338":39339,"39339":39340,"39340":39341,"39341":39342,"39342":39343,"39343":39344,"39344":39345,"39345":39346,"39346":39347,"39347":39348,"39348":39349,"39349":39350,"39350":39351,"39351":39352,"39352":39353,"39353":39354,"39354":39355,"39355":39356,"39356":39357,"39357":39358,"39358":39359,"39359":39360,"39360":39361,"39361":39362,"39362":39363,"39363":39364,"39364":39365,"39365":39366,"39366":39367,"39367":39368,"39368":39369,"39369":39370,"39370":39371,"39371":39372,"39372":39373,"39373":39374,"39374":39375,"39375":39376,"39376":39377,"39377":39378,"39378":39379,"39379":39380,"39380":39381,"39381":39382,"39382":39383,"39383":39384,"39384":39385,"39385":39386,"39386":39387,"39387":39388,"39388":39389,"39389":39390,"39390":39391,"39391":39392,"39392":39393,"39393":39394,"39394":39395,"39395":39396,"39396":39397,"39397":39398,"39398":39399,"39399":39400,"39400":39401,"39401":39402,"39402":39403,"39403":39404,"39404":39405,"39405":39406,"39406":39407,"39407":39408,"39408":39409,"39409":39410,"39410":39411,"39411":39412,"39412":39413,"39413":39414,"39414":39415,"39415":39416,"39416":39417,"39417":39418,"39418":39419,"39419":39420,"39420":39421,"39421":39422,"39422":39423,"39423":39424,"39424":39425,"39425":39426,"39426":39427,"39427":39428,"39428":39429,"39429":39430,"39430":39431,"39431":39432,"39432":39433,"39433":39434,"39434":39435,"39435":39436,"39436":39437,"39437":39438,"39438":39439,"39439":39440,"39440":39441,"39441":39442,"39442":39443,"39443":39444,"39444":39445,"39445":39446,"39446":39447,"39447":39448,"39448":39449,"39449":39450,"39450":39451,"39451":39452,"39452":39453,"39453":39454,"39454":39455,"39455":39456,"39456":39457,"39457":39458,"39458":39459,"39459":39460,"39460":39461,"39461":39462,"39462":39463,"39463":39464,"39464":39465,"39465":39466,"39466":39467,"39467":39468,"39468":39469,"39469":39470,"39470":39471,"39471":39472,"39472":39473,"39473":39474,"39474":39475,"39475":39476,"39476":39477,"39477":39478,"39478":39479,"39479":39480,"39480":39481,"39481":39482,"39482":39483,"39483":39484,"39484":39485,"39485":39486,"39486":39487,"39487":39488,"39488":39489,"39489":39490,"39490":39491,"39491":39492,"39492":39493,"39493":39494,"39494":39495,"39495":39496,"39496":39497,"39497":39498,"39498":39499,"39499":39500,"39500":39501,"39501":39502,"39502":39503,"39503":39504,"39504":39505,"39505":39506,"39506":39507,"39507":39508,"39508":39509,"39509":39510,"39510":39511,"39511":39512,"39512":39513,"39513":39514,"39514":39515,"39515":39516,"39516":39517,"39517":39518,"39518":39519,"39519":39520,"39520":39521,"39521":39522,"39522":39523,"39523":39524,"39524":39525,"39525":39526,"39526":39527,"39527":39528,"39528":39529,"39529":39530,"39530":39531,"39531":39532,"39532":39533,"39533":39534,"39534":39535,"39535":39536,"39536":39537,"39537":39538,"39538":39539,"39539":39540,"39540":39541,"39541":39542,"39542":39543,"39543":39544,"39544":39545,"39545":39546,"39546":39547,"39547":39548,"39548":39549,"39549":39550,"39550":39551,"39551":39552,"39552":39553,"39553":39554,"39554":39555,"39555":39556,"39556":39557,"39557":39558,"39558":39559,"39559":39560,"39560":39561,"39561":39562,"39562":39563,"39563":39564,"39564":39565,"39565":39566,"39566":39567,"39567":39568,"39568":39569,"39569":39570,"39570":39571,"39571":39572,"39572":39573,"39573":39574,"39574":39575,"39575":39576,"39576":39577,"39577":39578,"39578":39579,"39579":39580,"39580":39581,"39581":39582,"39582":39583,"39583":39584,"39584":39585,"39585":39586,"39586":39587,"39587":39588,"39588":39589,"39589":39590,"39590":39591,"39591":39592,"39592":39593,"39593":39594,"39594":39595,"39595":39596,"39596":39597,"39597":39598,"39598":39599,"39599":39600,"39600":39601,"39601":39602,"39602":39603,"39603":39604,"39604":39605,"39605":39606,"39606":39607,"39607":39608,"39608":39609,"39609":39610,"39610":39611,"39611":39612,"39612":39613,"39613":39614,"39614":39615,"39615":39616,"39616":39617,"39617":39618,"39618":39619,"39619":39620,"39620":39621,"39621":39622,"39622":39623,"39623":39624,"39624":39625,"39625":39626,"39626":39627,"39627":39628,"39628":39629,"39629":39630,"39630":39631,"39631":39632,"39632":39633,"39633":39634,"39634":39635,"39635":39636,"39636":39637,"39637":39638,"39638":39639,"39639":39640,"39640":39641,"39641":39642,"39642":39643,"39643":39644,"39644":39645,"39645":39646,"39646":39647,"39647":39648,"39648":39649,"39649":39650,"39650":39651,"39651":39652,"39652":39653,"39653":39654,"39654":39655,"39655":39656,"39656":39657,"39657":39658,"39658":39659,"39659":39660,"39660":39661,"39661":39662,"39662":39663,"39663":39664,"39664":39665,"39665":39666,"39666":39667,"39667":39668,"39668":39669,"39669":39670,"39670":39671,"39671":39672,"39672":39673,"39673":39674,"39674":39675,"39675":39676,"39676":39677,"39677":39678,"39678":39679,"39679":39680,"39680":39681,"39681":39682,"39682":39683,"39683":39684,"39684":39685,"39685":39686,"39686":39687,"39687":39688,"39688":39689,"39689":39690,"39690":39691,"39691":39692,"39692":39693,"39693":39694,"39694":39695,"39695":39696,"39696":39697,"39697":39698,"39698":39699,"39699":39700,"39700":39701,"39701":39702,"39702":39703,"39703":39704,"39704":39705,"39705":39706,"39706":39707,"39707":39708,"39708":39709,"39709":39710,"39710":39711,"39711":39712,"39712":39713,"39713":39714,"39714":39715,"39715":39716,"39716":39717,"39717":39718,"39718":39719,"39719":39720,"39720":39721,"39721":39722,"39722":39723,"39723":39724,"39724":39725,"39725":39726,"39726":39727,"39727":39728,"39728":39729,"39729":39730,"39730":39731,"39731":39732,"39732":39733,"39733":39734,"39734":39735,"39735":39736,"39736":39737,"39737":39738,"39738":39739,"39739":39740,"39740":39741,"39741":39742,"39742":39743,"39743":39744,"39744":39745,"39745":39746,"39746":39747,"39747":39748,"39748":39749,"39749":39750,"39750":39751,"39751":39752,"39752":39753,"39753":39754,"39754":39755,"39755":39756,"39756":39757,"39757":39758,"39758":39759,"39759":39760,"39760":39761,"39761":39762,"39762":39763,"39763":39764,"39764":39765,"39765":39766,"39766":39767,"39767":39768,"39768":39769,"39769":39770,"39770":39771,"39771":39772,"39772":39773,"39773":39774,"39774":39775,"39775":39776,"39776":39777,"39777":39778,"39778":39779,"39779":39780,"39780":39781,"39781":39782,"39782":39783,"39783":39784,"39784":39785,"39785":39786,"39786":39787,"39787":39788,"39788":39789,"39789":39790,"39790":39791,"39791":39792,"39792":39793,"39793":39794,"39794":39795,"39795":39796,"39796":39797,"39797":39798,"39798":39799,"39799":39800,"39800":39801,"39801":39802,"39802":39803,"39803":39804,"39804":39805,"39805":39806,"39806":39807,"39807":39808,"39808":39809,"39809":39810,"39810":39811,"39811":39812,"39812":39813,"39813":39814,"39814":39815,"39815":39816,"39816":39817,"39817":39818,"39818":39819,"39819":39820,"39820":39821,"39821":39822,"39822":39823,"39823":39824,"39824":39825,"39825":39826,"39826":39827,"39827":39828,"39828":39829,"39829":39830,"39830":39831,"39831":39832,"39832":39833,"39833":39834,"39834":39835,"39835":39836,"39836":39837,"39837":39838,"39838":39839,"39839":39840,"39840":39841,"39841":39842,"39842":39843,"39843":39844,"39844":39845,"39845":39846,"39846":39847,"39847":39848,"39848":39849,"39849":39850,"39850":39851,"39851":39852,"39852":39853,"39853":39854,"39854":39855,"39855":39856,"39856":39857,"39857":39858,"39858":39859,"39859":39860,"39860":39861,"39861":39862,"39862":39863,"39863":39864,"39864":39865,"39865":39866,"39866":39867,"39867":39868,"39868":39869,"39869":39870,"39870":39871,"39871":39872,"39872":39873,"39873":39874,"39874":39875,"39875":39876,"39876":39877,"39877":39878,"39878":39879,"39879":39880,"39880":39881,"39881":39882,"39882":39883,"39883":39884,"39884":39885,"39885":39886,"39886":39887,"39887":39888,"39888":39889,"39889":39890,"39890":39891,"39891":39892,"39892":39893,"39893":39894,"39894":39895,"39895":39896,"39896":39897,"39897":39898,"39898":39899,"39899":39900,"39900":39901,"39901":39902,"39902":39903,"39903":39904,"39904":39905,"39905":39906,"39906":39907,"39907":39908,"39908":39909,"39909":39910,"39910":39911,"39911":39912,"39912":39913,"39913":39914,"39914":39915,"39915":39916,"39916":39917,"39917":39918,"39918":39919,"39919":39920,"39920":39921,"39921":39922,"39922":39923,"39923":39924,"39924":39925,"39925":39926,"39926":39927,"39927":39928,"39928":39929,"39929":39930,"39930":39931,"39931":39932,"39932":39933,"39933":39934,"39934":39935,"39935":39936,"39936":39937,"39937":39938,"39938":39939,"39939":39940,"39940":39941,"39941":39942,"39942":39943,"39943":39944,"39944":39945,"39945":39946,"39946":39947,"39947":39948,"39948":39949,"39949":39950,"39950":39951,"39951":39952,"39952":39953,"39953":39954,"39954":39955,"39955":39956,"39956":39957,"39957":39958,"39958":39959,"39959":39960,"39960":39961,"39961":39962,"39962":39963,"39963":39964,"39964":39965,"39965":39966,"39966":39967,"39967":39968,"39968":39969,"39969":39970,"39970":39971,"39971":39972,"39972":39973,"39973":39974,"39974":39975,"39975":39976,"39976":39977,"39977":39978,"39978":39979,"39979":39980,"39980":39981,"39981":39982,"39982":39983,"39983":39984,"39984":39985,"39985":39986,"39986":39987,"39987":39988,"39988":39989,"39989":39990,"39990":39991,"39991":39992,"39992":39993,"39993":39994,"39994":39995,"39995":39996,"39996":39997,"39997":39998,"39998":39999,"39999":40000,"40000":40001,"40001":40002,"40002":40003,"40003":40004,"40004":40005,"40005":40006,"40006":40007,"40007":40008,"40008":40009,"40009":40010,"40010":40011,"40011":40012,"40012":40013,"40013":40014,"40014":40015,"40015":40016,"40016":40017,"40017":40018,"40018":40019,"40019":40020,"40020":40021,"40021":40022,"40022":40023,"40023":40024,"40024":40025,"40025":40026,"40026":40027,"40027":40028,"40028":40029,"40029":40030,"40030":40031,"40031":40032,"40032":40033,"40033":40034,"40034":40035,"40035":40036,"40036":40037,"40037":40038,"40038":40039,"40039":40040,"40040":40041,"40041":40042,"40042":40043,"40043":40044,"40044":40045,"40045":40046,"40046":40047,"40047":40048,"40048":40049,"40049":40050,"40050":40051,"40051":40052,"40052":40053,"40053":40054,"40054":40055,"40055":40056,"40056":40057,"40057":40058,"40058":40059,"40059":40060,"40060":40061,"40061":40062,"40062":40063,"40063":40064,"40064":40065,"40065":40066,"40066":40067,"40067":40068,"40068":40069,"40069":40070,"40070":40071,"40071":40072,"40072":40073,"40073":40074,"40074":40075,"40075":40076,"40076":40077,"40077":40078,"40078":40079,"40079":40080,"40080":40081,"40081":40082,"40082":40083,"40083":40084,"40084":40085,"40085":40086,"40086":40087,"40087":40088,"40088":40089,"40089":40090,"40090":40091,"40091":40092,"40092":40093,"40093":40094,"40094":40095,"40095":40096,"40096":40097,"40097":40098,"40098":40099,"40099":40100,"40100":40101,"40101":40102,"40102":40103,"40103":40104,"40104":40105,"40105":40106,"40106":40107,"40107":40108,"40108":40109,"40109":40110,"40110":40111,"40111":40112,"40112":40113,"40113":40114,"40114":40115,"40115":40116,"40116":40117,"40117":40118,"40118":40119,"40119":40120,"40120":40121,"40121":40122,"40122":40123,"40123":40124,"40124":40125,"40125":40126,"40126":40127,"40127":40128,"40128":40129,"40129":40130,"40130":40131,"40131":40132,"40132":40133,"40133":40134,"40134":40135,"40135":40136,"40136":40137,"40137":40138,"40138":40139,"40139":40140,"40140":40141,"40141":40142,"40142":40143,"40143":40144,"40144":40145,"40145":40146,"40146":40147,"40147":40148,"40148":40149,"40149":40150,"40150":40151,"40151":40152,"40152":40153,"40153":40154,"40154":40155,"40155":40156,"40156":40157,"40157":40158,"40158":40159,"40159":40160,"40160":40161,"40161":40162,"40162":40163,"40163":40164,"40164":40165,"40165":40166,"40166":40167,"40167":40168,"40168":40169,"40169":40170,"40170":40171,"40171":40172,"40172":40173,"40173":40174,"40174":40175,"40175":40176,"40176":40177,"40177":40178,"40178":40179,"40179":40180,"40180":40181,"40181":40182,"40182":40183,"40183":40184,"40184":40185,"40185":40186,"40186":40187,"40187":40188,"40188":40189,"40189":40190,"40190":40191,"40191":40192,"40192":40193,"40193":40194,"40194":40195,"40195":40196,"40196":40197,"40197":40198,"40198":40199,"40199":40200,"40200":40201,"40201":40202,"40202":40203,"40203":40204,"40204":40205,"40205":40206,"40206":40207,"40207":40208,"40208":40209,"40209":40210,"40210":40211,"40211":40212,"40212":40213,"40213":40214,"40214":40215,"40215":40216,"40216":40217,"40217":40218,"40218":40219,"40219":40220,"40220":40221,"40221":40222,"40222":40223,"40223":40224,"40224":40225,"40225":40226,"40226":40227,"40227":40228,"40228":40229,"40229":40230,"40230":40231,"40231":40232,"40232":40233,"40233":40234,"40234":40235,"40235":40236,"40236":40237,"40237":40238,"40238":40239,"40239":40240,"40240":40241,"40241":40242,"40242":40243,"40243":40244,"40244":40245,"40245":40246,"40246":40247,"40247":40248,"40248":40249,"40249":40250,"40250":40251,"40251":40252,"40252":40253,"40253":40254,"40254":40255,"40255":40256,"40256":40257,"40257":40258,"40258":40259,"40259":40260,"40260":40261,"40261":40262,"40262":40263,"40263":40264,"40264":40265,"40265":40266,"40266":40267,"40267":40268,"40268":40269,"40269":40270,"40270":40271,"40271":40272,"40272":40273,"40273":40274,"40274":40275,"40275":40276,"40276":40277,"40277":40278,"40278":40279,"40279":40280,"40280":40281,"40281":40282,"40282":40283,"40283":40284,"40284":40285,"40285":40286,"40286":40287,"40287":40288,"40288":40289,"40289":40290,"40290":40291,"40291":40292,"40292":40293,"40293":40294,"40294":40295,"40295":40296,"40296":40297,"40297":40298,"40298":40299,"40299":40300,"40300":40301,"40301":40302,"40302":40303,"40303":40304,"40304":40305,"40305":40306,"40306":40307,"40307":40308,"40308":40309,"40309":40310,"40310":40311,"40311":40312,"40312":40313,"40313":40314,"40314":40315,"40315":40316,"40316":40317,"40317":40318,"40318":40319,"40319":40320,"40320":40321,"40321":40322,"40322":40323,"40323":40324,"40324":40325,"40325":40326,"40326":40327,"40327":40328,"40328":40329,"40329":40330,"40330":40331,"40331":40332,"40332":40333,"40333":40334,"40334":40335,"40335":40336,"40336":40337,"40337":40338,"40338":40339,"40339":40340,"40340":40341,"40341":40342,"40342":40343,"40343":40344,"40344":40345,"40345":40346,"40346":40347,"40347":40348,"40348":40349,"40349":40350,"40350":40351,"40351":40352,"40352":40353,"40353":40354,"40354":40355,"40355":40356,"40356":40357,"40357":40358,"40358":40359,"40359":40360,"40360":40361,"40361":40362,"40362":40363,"40363":40364,"40364":40365,"40365":40366,"40366":40367,"40367":40368,"40368":40369,"40369":40370,"40370":40371,"40371":40372,"40372":40373,"40373":40374,"40374":40375,"40375":40376,"40376":40377,"40377":40378,"40378":40379,"40379":40380,"40380":40381,"40381":40382,"40382":40383,"40383":40384,"40384":40385,"40385":40386,"40386":40387,"40387":40388,"40388":40389,"40389":40390,"40390":40391,"40391":40392,"40392":40393,"40393":40394,"40394":40395,"40395":40396,"40396":40397,"40397":40398,"40398":40399,"40399":40400,"40400":40401,"40401":40402,"40402":40403,"40403":40404,"40404":40405,"40405":40406,"40406":40407,"40407":40408,"40408":40409,"40409":40410,"40410":40411,"40411":40412,"40412":40413,"40413":40414,"40414":40415,"40415":40416,"40416":40417,"40417":40418,"40418":40419,"40419":40420,"40420":40421,"40421":40422,"40422":40423,"40423":40424,"40424":40425,"40425":40426,"40426":40427,"40427":40428,"40428":40429,"40429":40430,"40430":40431,"40431":40432,"40432":40433,"40433":40434,"40434":40435,"40435":40436,"40436":40437,"40437":40438,"40438":40439,"40439":40440,"40440":40441,"40441":40442,"40442":40443,"40443":40444,"40444":40445,"40445":40446,"40446":40447,"40447":40448,"40448":40449,"40449":40450,"40450":40451,"40451":40452,"40452":40453,"40453":40454,"40454":40455,"40455":40456,"40456":40457,"40457":40458,"40458":40459,"40459":40460,"40460":40461,"40461":40462,"40462":40463,"40463":40464,"40464":40465,"40465":40466,"40466":40467,"40467":40468,"40468":40469,"40469":40470,"40470":40471,"40471":40472,"40472":40473,"40473":40474,"40474":40475,"40475":40476,"40476":40477,"40477":40478,"40478":40479,"40479":40480,"40480":40481,"40481":40482,"40482":40483,"40483":40484,"40484":40485,"40485":40486,"40486":40487,"40487":40488,"40488":40489,"40489":40490,"40490":40491,"40491":40492,"40492":40493,"40493":40494,"40494":40495,"40495":40496,"40496":40497,"40497":40498,"40498":40499,"40499":40500,"40500":40501,"40501":40502,"40502":40503,"40503":40504,"40504":40505,"40505":40506,"40506":40507,"40507":40508,"40508":40509,"40509":40510,"40510":40511,"40511":40512,"40512":40513,"40513":40514,"40514":40515,"40515":40516,"40516":40517,"40517":40518,"40518":40519,"40519":40520,"40520":40521,"40521":40522,"40522":40523,"40523":40524,"40524":40525,"40525":40526,"40526":40527,"40527":40528,"40528":40529,"40529":40530,"40530":40531,"40531":40532,"40532":40533,"40533":40534,"40534":40535,"40535":40536,"40536":40537,"40537":40538,"40538":40539,"40539":40540,"40540":40541,"40541":40542,"40542":40543,"40543":40544,"40544":40545,"40545":40546,"40546":40547,"40547":40548,"40548":40549,"40549":40550,"40550":40551,"40551":40552,"40552":40553,"40553":40554,"40554":40555,"40555":40556,"40556":40557,"40557":40558,"40558":40559,"40559":40560,"40560":40561,"40561":40562,"40562":40563,"40563":40564,"40564":40565,"40565":40566,"40566":40567,"40567":40568,"40568":40569,"40569":40570,"40570":40571,"40571":40572,"40572":40573,"40573":40574,"40574":40575,"40575":40576,"40576":40577,"40577":40578,"40578":40579,"40579":40580,"40580":40581,"40581":40582,"40582":40583,"40583":40584,"40584":40585,"40585":40586,"40586":40587,"40587":40588,"40588":40589,"40589":40590,"40590":40591,"40591":40592,"40592":40593,"40593":40594,"40594":40595,"40595":40596,"40596":40597,"40597":40598,"40598":40599,"40599":40600,"40600":40601,"40601":40602,"40602":40603,"40603":40604,"40604":40605,"40605":40606,"40606":40607,"40607":40608,"40608":40609,"40609":40610,"40610":40611,"40611":40612,"40612":40613,"40613":40614,"40614":40615,"40615":40616,"40616":40617,"40617":40618,"40618":40619,"40619":40620,"40620":40621,"40621":40622,"40622":40623,"40623":40624,"40624":40625,"40625":40626,"40626":40627,"40627":40628,"40628":40629,"40629":40630,"40630":40631,"40631":40632,"40632":40633,"40633":40634,"40634":40635,"40635":40636,"40636":40637,"40637":40638,"40638":40639,"40639":40640,"40640":40641,"40641":40642,"40642":40643,"40643":40644,"40644":40645,"40645":40646,"40646":40647,"40647":40648,"40648":40649,"40649":40650,"40650":40651,"40651":40652,"40652":40653,"40653":40654,"40654":40655,"40655":40656,"40656":40657,"40657":40658,"40658":40659,"40659":40660,"40660":40661,"40661":40662,"40662":40663,"40663":40664,"40664":40665,"40665":40666,"40666":40667,"40667":40668,"40668":40669,"40669":40670,"40670":40671,"40671":40672,"40672":40673,"40673":40674,"40674":40675,"40675":40676,"40676":40677,"40677":40678,"40678":40679,"40679":40680,"40680":40681,"40681":40682,"40682":40683,"40683":40684,"40684":40685,"40685":40686,"40686":40687,"40687":40688,"40688":40689,"40689":40690,"40690":40691,"40691":40692,"40692":40693,"40693":40694,"40694":40695,"40695":40696,"40696":40697,"40697":40698,"40698":40699,"40699":40700,"40700":40701,"40701":40702,"40702":40703,"40703":40704,"40704":40705,"40705":40706,"40706":40707,"40707":40708,"40708":40709,"40709":40710,"40710":40711,"40711":40712,"40712":40713,"40713":40714,"40714":40715,"40715":40716,"40716":40717,"40717":40718,"40718":40719,"40719":40720,"40720":40721,"40721":40722,"40722":40723,"40723":40724,"40724":40725,"40725":40726,"40726":40727,"40727":40728,"40728":40729,"40729":40730,"40730":40731,"40731":40732,"40732":40733,"40733":40734,"40734":40735,"40735":40736,"40736":40737,"40737":40738,"40738":40739,"40739":40740,"40740":40741,"40741":40742,"40742":40743,"40743":40744,"40744":40745,"40745":40746,"40746":40747,"40747":40748,"40748":40749,"40749":40750,"40750":40751,"40751":40752,"40752":40753,"40753":40754,"40754":40755,"40755":40756,"40756":40757,"40757":40758,"40758":40759,"40759":40760,"40760":40761,"40761":40762,"40762":40763,"40763":40764,"40764":40765,"40765":40766,"40766":40767,"40767":40768,"40768":40769,"40769":40770,"40770":40771,"40771":40772,"40772":40773,"40773":40774,"40774":40775,"40775":40776,"40776":40777,"40777":40778,"40778":40779,"40779":40780,"40780":40781,"40781":40782,"40782":40783,"40783":40784,"40784":40785,"40785":40786,"40786":40787,"40787":40788,"40788":40789,"40789":40790,"40790":40791,"40791":40792,"40792":40793,"40793":40794,"40794":40795,"40795":40796,"40796":40797,"40797":40798,"40798":40799,"40799":40800,"40800":40801,"40801":40802,"40802":40803,"40803":40804,"40804":40805,"40805":40806,"40806":40807,"40807":40808,"40808":40809,"40809":40810,"40810":40811,"40811":40812,"40812":40813,"40813":40814,"40814":40815,"40815":40816,"40816":40817,"40817":40818,"40818":40819,"40819":40820,"40820":40821,"40821":40822,"40822":40823,"40823":40824,"40824":40825,"40825":40826,"40826":40827,"40827":40828,"40828":40829,"40829":40830,"40830":40831,"40831":40832,"40832":40833,"40833":40834,"40834":40835,"40835":40836,"40836":40837,"40837":40838,"40838":40839,"40839":40840,"40840":40841,"40841":40842,"40842":40843,"40843":40844,"40844":40845,"40845":40846,"40846":40847,"40847":40848,"40848":40849,"40849":40850,"40850":40851,"40851":40852,"40852":40853,"40853":40854,"40854":40855,"40855":40856,"40856":40857,"40857":40858,"40858":40859,"40859":40860,"40860":40861,"40861":40862,"40862":40863,"40863":40864,"40864":40865,"40865":40866,"40866":40867,"40867":40868,"40868":40869,"40869":40870,"40870":40871,"40871":40872,"40872":40873,"40873":40874,"40874":40875,"40875":40876,"40876":40877,"40877":40878,"40878":40879,"40879":40880,"40880":40881,"40881":40882,"40882":40883,"40883":40884,"40884":40885,"40885":40886,"40886":40887,"40887":40888,"40888":40889,"40889":40890,"40890":40891,"40891":40892,"40892":40893,"40893":40894,"40894":40895,"40895":40896,"40896":40897,"40897":40898,"40898":40899,"40899":40900,"40900":40901,"40901":40902,"40902":40903,"40903":40904,"40904":40905,"40905":40906,"40906":40907,"40907":40908,"40908":40909,"40909":40910,"40910":40911,"40911":40912,"40912":40913,"40913":40914,"40914":40915,"40915":40916,"40916":40917,"40917":40918,"40918":40919,"40919":40920,"40920":40921,"40921":40922,"40922":40923,"40923":40924,"40924":40925,"40925":40926,"40926":40927,"40927":40928,"40928":40929,"40929":40930,"40930":40931,"40931":40932,"40932":40933,"40933":40934,"40934":40935,"40935":40936,"40936":40937,"40937":40938,"40938":40939,"40939":40940,"40940":40941,"40941":40942,"40942":40943,"40943":40944,"40944":40945,"40945":40946,"40946":40947,"40947":40948,"40948":40949,"40949":40950,"40950":40951,"40951":40952,"40952":40953,"40953":40954,"40954":40955,"40955":40956,"40956":40957,"40957":40958,"40958":40959,"40959":40960,"40960":40961,"40961":40962,"40962":40963,"40963":40964,"40964":40965,"40965":40966,"40966":40967,"40967":40968,"40968":40969,"40969":40970,"40970":40971,"40971":40972,"40972":40973,"40973":40974,"40974":40975,"40975":40976,"40976":40977,"40977":40978,"40978":40979,"40979":40980,"40980":40981,"40981":40982,"40982":40983,"40983":40984,"40984":40985,"40985":40986,"40986":40987,"40987":40988,"40988":40989,"40989":40990,"40990":40991,"40991":40992,"40992":40993,"40993":40994,"40994":40995,"40995":40996,"40996":40997,"40997":40998,"40998":40999,"40999":41000,"41000":41001,"41001":41002,"41002":41003,"41003":41004,"41004":41005,"41005":41006,"41006":41007,"41007":41008,"41008":41009,"41009":41010,"41010":41011,"41011":41012,"41012":41013,"41013":41014,"41014":41015,"41015":41016,"41016":41017,"41017":41018,"41018":41019,"41019":41020,"41020":41021,"41021":41022,"41022":41023,"41023":41024,"41024":41025,"41025":41026,"41026":41027,"41027":41028,"41028":41029,"41029":41030,"41030":41031,"41031":41032,"41032":41033,"41033":41034,"41034":41035,"41035":41036,"41036":41037,"41037":41038,"41038":41039,"41039":41040,"41040":41041,"41041":41042,"41042":41043,"41043":41044,"41044":41045,"41045":41046,"41046":41047,"41047":41048,"41048":41049,"41049":41050,"41050":41051,"41051":41052,"41052":41053,"41053":41054,"41054":41055,"41055":41056,"41056":41057,"41057":41058,"41058":41059,"41059":41060,"41060":41061,"41061":41062,"41062":41063,"41063":41064,"41064":41065,"41065":41066,"41066":41067,"41067":41068,"41068":41069,"41069":41070,"41070":41071,"41071":41072,"41072":41073,"41073":41074,"41074":41075,"41075":41076,"41076":41077,"41077":41078,"41078":41079,"41079":41080,"41080":41081,"41081":41082,"41082":41083,"41083":41084,"41084":41085,"41085":41086,"41086":41087,"41087":41088,"41088":41089,"41089":41090,"41090":41091,"41091":41092,"41092":41093,"41093":41094,"41094":41095,"41095":41096,"41096":41097,"41097":41098,"41098":41099,"41099":41100,"41100":41101,"41101":41102,"41102":41103,"41103":41104,"41104":41105,"41105":41106,"41106":41107,"41107":41108,"41108":41109,"41109":41110,"41110":41111,"41111":41112,"41112":41113,"41113":41114,"41114":41115,"41115":41116,"41116":41117,"41117":41118,"41118":41119,"41119":41120,"41120":41121,"41121":41122,"41122":41123,"41123":41124,"41124":41125,"41125":41126,"41126":41127,"41127":41128,"41128":41129,"41129":41130,"41130":41131,"41131":41132,"41132":41133,"41133":41134,"41134":41135,"41135":41136,"41136":41137,"41137":41138,"41138":41139,"41139":41140,"41140":41141,"41141":41142,"41142":41143,"41143":41144,"41144":41145,"41145":41146,"41146":41147,"41147":41148,"41148":41149,"41149":41150,"41150":41151,"41151":41152,"41152":41153,"41153":41154,"41154":41155,"41155":41156,"41156":41157,"41157":41158,"41158":41159,"41159":41160,"41160":41161,"41161":41162,"41162":41163,"41163":41164,"41164":41165,"41165":41166,"41166":41167,"41167":41168,"41168":41169,"41169":41170,"41170":41171,"41171":41172,"41172":41173,"41173":41174,"41174":41175,"41175":41176,"41176":41177,"41177":41178,"41178":41179,"41179":41180,"41180":41181,"41181":41182,"41182":41183,"41183":41184,"41184":41185,"41185":41186,"41186":41187,"41187":41188,"41188":41189,"41189":41190,"41190":41191,"41191":41192,"41192":41193,"41193":41194,"41194":41195,"41195":41196,"41196":41197,"41197":41198,"41198":41199,"41199":41200,"41200":41201,"41201":41202,"41202":41203,"41203":41204,"41204":41205,"41205":41206,"41206":41207,"41207":41208,"41208":41209,"41209":41210,"41210":41211,"41211":41212,"41212":41213,"41213":41214,"41214":41215,"41215":41216,"41216":41217,"41217":41218,"41218":41219,"41219":41220,"41220":41221,"41221":41222,"41222":41223,"41223":41224,"41224":41225,"41225":41226,"41226":41227,"41227":41228,"41228":41229,"41229":41230,"41230":41231,"41231":41232,"41232":41233,"41233":41234,"41234":41235,"41235":41236,"41236":41237,"41237":41238,"41238":41239,"41239":41240,"41240":41241,"41241":41242,"41242":41243,"41243":41244,"41244":41245,"41245":41246,"41246":41247,"41247":41248,"41248":41249,"41249":41250,"41250":41251,"41251":41252,"41252":41253,"41253":41254,"41254":41255,"41255":41256,"41256":41257,"41257":41258,"41258":41259,"41259":41260,"41260":41261,"41261":41262,"41262":41263,"41263":41264,"41264":41265,"41265":41266,"41266":41267,"41267":41268,"41268":41269,"41269":41270,"41270":41271,"41271":41272,"41272":41273,"41273":41274,"41274":41275,"41275":41276,"41276":41277,"41277":41278,"41278":41279,"41279":41280,"41280":41281,"41281":41282,"41282":41283,"41283":41284,"41284":41285,"41285":41286,"41286":41287,"41287":41288,"41288":41289,"41289":41290,"41290":41291,"41291":41292,"41292":41293,"41293":41294,"41294":41295,"41295":41296,"41296":41297,"41297":41298,"41298":41299,"41299":41300,"41300":41301,"41301":41302,"41302":41303,"41303":41304,"41304":41305,"41305":41306,"41306":41307,"41307":41308,"41308":41309,"41309":41310,"41310":41311,"41311":41312,"41312":41313,"41313":41314,"41314":41315,"41315":41316,"41316":41317,"41317":41318,"41318":41319,"41319":41320,"41320":41321,"41321":41322,"41322":41323,"41323":41324,"41324":41325,"41325":41326,"41326":41327,"41327":41328,"41328":41329,"41329":41330,"41330":41331,"41331":41332,"41332":41333,"41333":41334,"41334":41335,"41335":41336,"41336":41337,"41337":41338,"41338":41339,"41339":41340,"41340":41341,"41341":41342,"41342":41343,"41343":41344,"41344":41345,"41345":41346,"41346":41347,"41347":41348,"41348":41349,"41349":41350,"41350":41351,"41351":41352,"41352":41353,"41353":41354,"41354":41355,"41355":41356,"41356":41357,"41357":41358,"41358":41359,"41359":41360,"41360":41361,"41361":41362,"41362":41363,"41363":41364,"41364":41365,"41365":41366,"41366":41367,"41367":41368,"41368":41369,"41369":41370,"41370":41371,"41371":41372,"41372":41373,"41373":41374,"41374":41375,"41375":41376,"41376":41377,"41377":41378,"41378":41379,"41379":41380,"41380":41381,"41381":41382,"41382":41383,"41383":41384,"41384":41385,"41385":41386,"41386":41387,"41387":41388,"41388":41389,"41389":41390,"41390":41391,"41391":41392,"41392":41393,"41393":41394,"41394":41395,"41395":41396,"41396":41397,"41397":41398,"41398":41399,"41399":41400,"41400":41401,"41401":41402,"41402":41403,"41403":41404,"41404":41405,"41405":41406,"41406":41407,"41407":41408,"41408":41409,"41409":41410,"41410":41411,"41411":41412,"41412":41413,"41413":41414,"41414":41415,"41415":41416,"41416":41417,"41417":41418,"41418":41419,"41419":41420,"41420":41421,"41421":41422,"41422":41423,"41423":41424,"41424":41425,"41425":41426,"41426":41427,"41427":41428,"41428":41429,"41429":41430,"41430":41431,"41431":41432,"41432":41433,"41433":41434,"41434":41435,"41435":41436,"41436":41437,"41437":41438,"41438":41439,"41439":41440,"41440":41441,"41441":41442,"41442":41443,"41443":41444,"41444":41445,"41445":41446,"41446":41447,"41447":41448,"41448":41449,"41449":41450,"41450":41451,"41451":41452,"41452":41453,"41453":41454,"41454":41455,"41455":41456,"41456":41457,"41457":41458,"41458":41459,"41459":41460,"41460":41461,"41461":41462,"41462":41463,"41463":41464,"41464":41465,"41465":41466,"41466":41467,"41467":41468,"41468":41469,"41469":41470,"41470":41471,"41471":41472,"41472":41473,"41473":41474,"41474":41475,"41475":41476,"41476":41477,"41477":41478,"41478":41479,"41479":41480,"41480":41481,"41481":41482,"41482":41483,"41483":41484,"41484":41485,"41485":41486,"41486":41487,"41487":41488,"41488":41489,"41489":41490,"41490":41491,"41491":41492,"41492":41493,"41493":41494,"41494":41495,"41495":41496,"41496":41497,"41497":41498,"41498":41499,"41499":41500,"41500":41501,"41501":41502,"41502":41503,"41503":41504,"41504":41505,"41505":41506,"41506":41507,"41507":41508,"41508":41509,"41509":41510,"41510":41511,"41511":41512,"41512":41513,"41513":41514,"41514":41515,"41515":41516,"41516":41517,"41517":41518,"41518":41519,"41519":41520,"41520":41521,"41521":41522,"41522":41523,"41523":41524,"41524":41525,"41525":41526,"41526":41527,"41527":41528,"41528":41529,"41529":41530,"41530":41531,"41531":41532,"41532":41533,"41533":41534,"41534":41535,"41535":41536,"41536":41537,"41537":41538,"41538":41539,"41539":41540,"41540":41541,"41541":41542,"41542":41543,"41543":41544,"41544":41545,"41545":41546,"41546":41547,"41547":41548,"41548":41549,"41549":41550,"41550":41551,"41551":41552,"41552":41553,"41553":41554,"41554":41555,"41555":41556,"41556":41557,"41557":41558,"41558":41559,"41559":41560,"41560":41561,"41561":41562,"41562":41563,"41563":41564,"41564":41565,"41565":41566,"41566":41567,"41567":41568,"41568":41569,"41569":41570,"41570":41571,"41571":41572,"41572":41573,"41573":41574,"41574":41575,"41575":41576,"41576":41577,"41577":41578,"41578":41579,"41579":41580,"41580":41581,"41581":41582,"41582":41583,"41583":41584,"41584":41585,"41585":41586,"41586":41587,"41587":41588,"41588":41589,"41589":41590,"41590":41591,"41591":41592,"41592":41593,"41593":41594,"41594":41595,"41595":41596,"41596":41597,"41597":41598,"41598":41599,"41599":41600,"41600":41601,"41601":41602,"41602":41603,"41603":41604,"41604":41605,"41605":41606,"41606":41607,"41607":41608,"41608":41609,"41609":41610,"41610":41611,"41611":41612,"41612":41613,"41613":41614,"41614":41615,"41615":41616,"41616":41617,"41617":41618,"41618":41619,"41619":41620,"41620":41621,"41621":41622,"41622":41623,"41623":41624,"41624":41625,"41625":41626,"41626":41627,"41627":41628,"41628":41629,"41629":41630,"41630":41631,"41631":41632,"41632":41633,"41633":41634,"41634":41635,"41635":41636,"41636":41637,"41637":41638,"41638":41639,"41639":41640,"41640":41641,"41641":41642,"41642":41643,"41643":41644,"41644":41645,"41645":41646,"41646":41647,"41647":41648,"41648":41649,"41649":41650,"41650":41651,"41651":41652,"41652":41653,"41653":41654,"41654":41655,"41655":41656,"41656":41657,"41657":41658,"41658":41659,"41659":41660,"41660":41661,"41661":41662,"41662":41663,"41663":41664,"41664":41665,"41665":41666,"41666":41667,"41667":41668,"41668":41669,"41669":41670,"41670":41671,"41671":41672,"41672":41673,"41673":41674,"41674":41675,"41675":41676,"41676":41677,"41677":41678,"41678":41679,"41679":41680,"41680":41681,"41681":41682,"41682":41683,"41683":41684,"41684":41685,"41685":41686,"41686":41687,"41687":41688,"41688":41689,"41689":41690,"41690":41691,"41691":41692,"41692":41693,"41693":41694,"41694":41695,"41695":41696,"41696":41697,"41697":41698,"41698":41699,"41699":41700,"41700":41701,"41701":41702,"41702":41703,"41703":41704,"41704":41705,"41705":41706,"41706":41707,"41707":41708,"41708":41709,"41709":41710,"41710":41711,"41711":41712,"41712":41713,"41713":41714,"41714":41715,"41715":41716,"41716":41717,"41717":41718,"41718":41719,"41719":41720,"41720":41721,"41721":41722,"41722":41723,"41723":41724,"41724":41725,"41725":41726,"41726":41727,"41727":41728,"41728":41729,"41729":41730,"41730":41731,"41731":41732,"41732":41733,"41733":41734,"41734":41735,"41735":41736,"41736":41737,"41737":41738,"41738":41739,"41739":41740,"41740":41741,"41741":41742,"41742":41743,"41743":41744,"41744":41745,"41745":41746,"41746":41747,"41747":41748,"41748":41749,"41749":41750,"41750":41751,"41751":41752,"41752":41753,"41753":41754,"41754":41755,"41755":41756,"41756":41757,"41757":41758,"41758":41759,"41759":41760,"41760":41761,"41761":41762,"41762":41763,"41763":41764,"41764":41765,"41765":41766,"41766":41767,"41767":41768,"41768":41769,"41769":41770,"41770":41771,"41771":41772,"41772":41773,"41773":41774,"41774":41775,"41775":41776,"41776":41777,"41777":41778,"41778":41779,"41779":41780,"41780":41781,"41781":41782,"41782":41783,"41783":41784,"41784":41785,"41785":41786,"41786":41787,"41787":41788,"41788":41789,"41789":41790,"41790":41791,"41791":41792,"41792":41793,"41793":41794,"41794":41795,"41795":41796,"41796":41797,"41797":41798,"41798":41799,"41799":41800,"41800":41801,"41801":41802,"41802":41803,"41803":41804,"41804":41805,"41805":41806,"41806":41807,"41807":41808,"41808":41809,"41809":41810,"41810":41811,"41811":41812,"41812":41813,"41813":41814,"41814":41815,"41815":41816,"41816":41817,"41817":41818,"41818":41819,"41819":41820,"41820":41821,"41821":41822,"41822":41823,"41823":41824,"41824":41825,"41825":41826,"41826":41827,"41827":41828,"41828":41829,"41829":41830,"41830":41831,"41831":41832,"41832":41833,"41833":41834,"41834":41835,"41835":41836,"41836":41837,"41837":41838,"41838":41839,"41839":41840,"41840":41841,"41841":41842,"41842":41843,"41843":41844,"41844":41845,"41845":41846,"41846":41847,"41847":41848,"41848":41849,"41849":41850,"41850":41851,"41851":41852,"41852":41853,"41853":41854,"41854":41855,"41855":41856,"41856":41857,"41857":41858,"41858":41859,"41859":41860,"41860":41861,"41861":41862,"41862":41863,"41863":41864,"41864":41865,"41865":41866,"41866":41867,"41867":41868,"41868":41869,"41869":41870,"41870":41871,"41871":41872,"41872":41873,"41873":41874,"41874":41875,"41875":41876,"41876":41877,"41877":41878,"41878":41879,"41879":41880,"41880":41881,"41881":41882,"41882":41883,"41883":41884,"41884":41885,"41885":41886,"41886":41887,"41887":41888,"41888":41889,"41889":41890,"41890":41891,"41891":41892,"41892":41893,"41893":41894,"41894":41895,"41895":41896,"41896":41897,"41897":41898,"41898":41899,"41899":41900,"41900":41901,"41901":41902,"41902":41903,"41903":41904,"41904":41905,"41905":41906,"41906":41907,"41907":41908,"41908":41909,"41909":41910,"41910":41911,"41911":41912,"41912":41913,"41913":41914,"41914":41915,"41915":41916,"41916":41917,"41917":41918,"41918":41919,"41919":41920,"41920":41921,"41921":41922,"41922":41923,"41923":41924,"41924":41925,"41925":41926,"41926":41927,"41927":41928,"41928":41929,"41929":41930,"41930":41931,"41931":41932,"41932":41933,"41933":41934,"41934":41935,"41935":41936,"41936":41937,"41937":41938,"41938":41939,"41939":41940,"41940":41941,"41941":41942,"41942":41943,"41943":41944,"41944":41945,"41945":41946,"41946":41947,"41947":41948,"41948":41949,"41949":41950,"41950":41951,"41951":41952,"41952":41953,"41953":41954,"41954":41955,"41955":41956,"41956":41957,"41957":41958,"41958":41959,"41959":41960,"41960":41961,"41961":41962,"41962":41963,"41963":41964,"41964":41965,"41965":41966,"41966":41967,"41967":41968,"41968":41969,"41969":41970,"41970":41971,"41971":41972,"41972":41973,"41973":41974,"41974":41975,"41975":41976,"41976":41977,"41977":41978,"41978":41979,"41979":41980,"41980":41981,"41981":41982,"41982":41983,"41983":41984,"41984":41985,"41985":41986,"41986":41987,"41987":41988,"41988":41989,"41989":41990,"41990":41991,"41991":41992,"41992":41993,"41993":41994,"41994":41995,"41995":41996,"41996":41997,"41997":41998,"41998":41999,"41999":42000,"42000":42001,"42001":42002,"42002":42003,"42003":42004,"42004":42005,"42005":42006,"42006":42007,"42007":42008,"42008":42009,"42009":42010,"42010":42011,"42011":42012,"42012":42013,"42013":42014,"42014":42015,"42015":42016,"42016":42017,"42017":42018,"42018":42019,"42019":42020,"42020":42021,"42021":42022,"42022":42023,"42023":42024,"42024":42025,"42025":42026,"42026":42027,"42027":42028,"42028":42029,"42029":42030,"42030":42031,"42031":42032,"42032":42033,"42033":42034,"42034":42035,"42035":42036,"42036":42037,"42037":42038,"42038":42039,"42039":42040,"42040":42041,"42041":42042,"42042":42043,"42043":42044,"42044":42045,"42045":42046,"42046":42047,"42047":42048,"42048":42049,"42049":42050,"42050":42051,"42051":42052,"42052":42053,"42053":42054,"42054":42055,"42055":42056,"42056":42057,"42057":42058,"42058":42059,"42059":42060,"42060":42061,"42061":42062,"42062":42063,"42063":42064,"42064":42065,"42065":42066,"42066":42067,"42067":42068,"42068":42069,"42069":42070,"42070":42071,"42071":42072,"42072":42073,"42073":42074,"42074":42075,"42075":42076,"42076":42077,"42077":42078,"42078":42079,"42079":42080,"42080":42081,"42081":42082,"42082":42083,"42083":42084,"42084":42085,"42085":42086,"42086":42087,"42087":42088,"42088":42089,"42089":42090,"42090":42091,"42091":42092,"42092":42093,"42093":42094,"42094":42095,"42095":42096,"42096":42097,"42097":42098,"42098":42099,"42099":42100,"42100":42101,"42101":42102,"42102":42103,"42103":42104,"42104":42105,"42105":42106,"42106":42107,"42107":42108,"42108":42109,"42109":42110,"42110":42111,"42111":42112,"42112":42113,"42113":42114,"42114":42115,"42115":42116,"42116":42117,"42117":42118,"42118":42119,"42119":42120,"42120":42121,"42121":42122,"42122":42123,"42123":42124,"42124":42125,"42125":42126,"42126":42127,"42127":42128,"42128":42129,"42129":42130,"42130":42131,"42131":42132,"42132":42133,"42133":42134,"42134":42135,"42135":42136,"42136":42137,"42137":42138,"42138":42139,"42139":42140,"42140":42141,"42141":42142,"42142":42143,"42143":42144,"42144":42145,"42145":42146,"42146":42147,"42147":42148,"42148":42149,"42149":42150,"42150":42151,"42151":42152,"42152":42153,"42153":42154,"42154":42155,"42155":42156,"42156":42157,"42157":42158,"42158":42159,"42159":42160,"42160":42161,"42161":42162,"42162":42163,"42163":42164,"42164":42165,"42165":42166,"42166":42167,"42167":42168,"42168":42169,"42169":42170,"42170":42171,"42171":42172,"42172":42173,"42173":42174,"42174":42175,"42175":42176,"42176":42177,"42177":42178,"42178":42179,"42179":42180,"42180":42181,"42181":42182,"42182":42183,"42183":42184,"42184":42185,"42185":42186,"42186":42187,"42187":42188,"42188":42189,"42189":42190,"42190":42191,"42191":42192,"42192":42193,"42193":42194,"42194":42195,"42195":42196,"42196":42197,"42197":42198,"42198":42199,"42199":42200,"42200":42201,"42201":42202,"42202":42203,"42203":42204,"42204":42205,"42205":42206,"42206":42207,"42207":42208,"42208":42209,"42209":42210,"42210":42211,"42211":42212,"42212":42213,"42213":42214,"42214":42215,"42215":42216,"42216":42217,"42217":42218,"42218":42219,"42219":42220,"42220":42221,"42221":42222,"42222":42223,"42223":42224,"42224":42225,"42225":42226,"42226":42227,"42227":42228,"42228":42229,"42229":42230,"42230":42231,"42231":42232,"42232":42233,"42233":42234,"42234":42235,"42235":42236,"42236":42237,"42237":42238,"42238":42239,"42239":42240,"42240":42241,"42241":42242,"42242":42243,"42243":42244,"42244":42245,"42245":42246,"42246":42247,"42247":42248,"42248":42249,"42249":42250,"42250":42251,"42251":42252,"42252":42253,"42253":42254,"42254":42255,"42255":42256,"42256":42257,"42257":42258,"42258":42259,"42259":42260,"42260":42261,"42261":42262,"42262":42263,"42263":42264,"42264":42265,"42265":42266,"42266":42267,"42267":42268,"42268":42269,"42269":42270,"42270":42271,"42271":42272,"42272":42273,"42273":42274,"42274":42275,"42275":42276,"42276":42277,"42277":42278,"42278":42279,"42279":42280,"42280":42281,"42281":42282,"42282":42283,"42283":42284,"42284":42285,"42285":42286,"42286":42287,"42287":42288,"42288":42289,"42289":42290,"42290":42291,"42291":42292,"42292":42293,"42293":42294,"42294":42295,"42295":42296,"42296":42297,"42297":42298,"42298":42299,"42299":42300,"42300":42301,"42301":42302,"42302":42303,"42303":42304,"42304":42305,"42305":42306,"42306":42307,"42307":42308,"42308":42309,"42309":42310,"42310":42311,"42311":42312,"42312":42313,"42313":42314,"42314":42315,"42315":42316,"42316":42317,"42317":42318,"42318":42319,"42319":42320,"42320":42321,"42321":42322,"42322":42323,"42323":42324,"42324":42325,"42325":42326,"42326":42327,"42327":42328,"42328":42329,"42329":42330,"42330":42331,"42331":42332,"42332":42333,"42333":42334,"42334":42335,"42335":42336,"42336":42337,"42337":42338,"42338":42339,"42339":42340,"42340":42341,"42341":42342,"42342":42343,"42343":42344,"42344":42345,"42345":42346,"42346":42347,"42347":42348,"42348":42349,"42349":42350,"42350":42351,"42351":42352,"42352":42353,"42353":42354,"42354":42355,"42355":42356,"42356":42357,"42357":42358,"42358":42359,"42359":42360,"42360":42361,"42361":42362,"42362":42363,"42363":42364,"42364":42365,"42365":42366,"42366":42367,"42367":42368,"42368":42369,"42369":42370,"42370":42371,"42371":42372,"42372":42373,"42373":42374,"42374":42375,"42375":42376,"42376":42377,"42377":42378,"42378":42379,"42379":42380,"42380":42381,"42381":42382,"42382":42383,"42383":42384,"42384":42385,"42385":42386,"42386":42387,"42387":42388,"42388":42389,"42389":42390,"42390":42391,"42391":42392,"42392":42393,"42393":42394,"42394":42395,"42395":42396,"42396":42397,"42397":42398,"42398":42399,"42399":42400,"42400":42401,"42401":42402,"42402":42403,"42403":42404,"42404":42405,"42405":42406,"42406":42407,"42407":42408,"42408":42409,"42409":42410,"42410":42411,"42411":42412,"42412":42413,"42413":42414,"42414":42415,"42415":42416,"42416":42417,"42417":42418,"42418":42419,"42419":42420,"42420":42421,"42421":42422,"42422":42423,"42423":42424,"42424":42425,"42425":42426,"42426":42427,"42427":42428,"42428":42429,"42429":42430,"42430":42431,"42431":42432,"42432":42433,"42433":42434,"42434":42435,"42435":42436,"42436":42437,"42437":42438,"42438":42439,"42439":42440,"42440":42441,"42441":42442,"42442":42443,"42443":42444,"42444":42445,"42445":42446,"42446":42447,"42447":42448,"42448":42449,"42449":42450,"42450":42451,"42451":42452,"42452":42453,"42453":42454,"42454":42455,"42455":42456,"42456":42457,"42457":42458,"42458":42459,"42459":42460,"42460":42461,"42461":42462,"42462":42463,"42463":42464,"42464":42465,"42465":42466,"42466":42467,"42467":42468,"42468":42469,"42469":42470,"42470":42471,"42471":42472,"42472":42473,"42473":42474,"42474":42475,"42475":42476,"42476":42477,"42477":42478,"42478":42479,"42479":42480,"42480":42481,"42481":42482,"42482":42483,"42483":42484,"42484":42485,"42485":42486,"42486":42487,"42487":42488,"42488":42489,"42489":42490,"42490":42491,"42491":42492,"42492":42493,"42493":42494,"42494":42495,"42495":42496,"42496":42497,"42497":42498,"42498":42499,"42499":42500,"42500":42501,"42501":42502,"42502":42503,"42503":42504,"42504":42505,"42505":42506,"42506":42507,"42507":42508,"42508":42509,"42509":42510,"42510":42511,"42511":42512,"42512":42513,"42513":42514,"42514":42515,"42515":42516,"42516":42517,"42517":42518,"42518":42519,"42519":42520,"42520":42521,"42521":42522,"42522":42523,"42523":42524,"42524":42525,"42525":42526,"42526":42527,"42527":42528,"42528":42529,"42529":42530,"42530":42531,"42531":42532,"42532":42533,"42533":42534,"42534":42535,"42535":42536,"42536":42537,"42537":42538,"42538":42539,"42539":42540,"42540":42541,"42541":42542,"42542":42543,"42543":42544,"42544":42545,"42545":42546,"42546":42547,"42547":42548,"42548":42549,"42549":42550,"42550":42551,"42551":42552,"42552":42553,"42553":42554,"42554":42555,"42555":42556,"42556":42557,"42557":42558,"42558":42559,"42559":42560,"42560":42561,"42561":42562,"42562":42563,"42563":42564,"42564":42565,"42565":42566,"42566":42567,"42567":42568,"42568":42569,"42569":42570,"42570":42571,"42571":42572,"42572":42573,"42573":42574,"42574":42575,"42575":42576,"42576":42577,"42577":42578,"42578":42579,"42579":42580,"42580":42581,"42581":42582,"42582":42583,"42583":42584,"42584":42585,"42585":42586,"42586":42587,"42587":42588,"42588":42589,"42589":42590,"42590":42591,"42591":42592,"42592":42593,"42593":42594,"42594":42595,"42595":42596,"42596":42597,"42597":42598,"42598":42599,"42599":42600,"42600":42601,"42601":42602,"42602":42603,"42603":42604,"42604":42605,"42605":42606,"42606":42607,"42607":42608,"42608":42609,"42609":42610,"42610":42611,"42611":42612,"42612":42613,"42613":42614,"42614":42615,"42615":42616,"42616":42617,"42617":42618,"42618":42619,"42619":42620,"42620":42621,"42621":42622,"42622":42623,"42623":42624,"42624":42625,"42625":42626,"42626":42627,"42627":42628,"42628":42629,"42629":42630,"42630":42631,"42631":42632,"42632":42633,"42633":42634,"42634":42635,"42635":42636,"42636":42637,"42637":42638,"42638":42639,"42639":42640,"42640":42641,"42641":42642,"42642":42643,"42643":42644,"42644":42645,"42645":42646,"42646":42647,"42647":42648,"42648":42649,"42649":42650,"42650":42651,"42651":42652,"42652":42653,"42653":42654,"42654":42655,"42655":42656,"42656":42657,"42657":42658,"42658":42659,"42659":42660,"42660":42661,"42661":42662,"42662":42663,"42663":42664,"42664":42665,"42665":42666,"42666":42667,"42667":42668,"42668":42669,"42669":42670,"42670":42671,"42671":42672,"42672":42673,"42673":42674,"42674":42675,"42675":42676,"42676":42677,"42677":42678,"42678":42679,"42679":42680,"42680":42681,"42681":42682,"42682":42683,"42683":42684,"42684":42685,"42685":42686,"42686":42687,"42687":42688,"42688":42689,"42689":42690,"42690":42691,"42691":42692,"42692":42693,"42693":42694,"42694":42695,"42695":42696,"42696":42697,"42697":42698,"42698":42699,"42699":42700,"42700":42701,"42701":42702,"42702":42703,"42703":42704,"42704":42705,"42705":42706,"42706":42707,"42707":42708,"42708":42709,"42709":42710,"42710":42711,"42711":42712,"42712":42713,"42713":42714,"42714":42715,"42715":42716,"42716":42717,"42717":42718,"42718":42719,"42719":42720,"42720":42721,"42721":42722,"42722":42723,"42723":42724,"42724":42725,"42725":42726,"42726":42727,"42727":42728,"42728":42729,"42729":42730,"42730":42731,"42731":42732,"42732":42733,"42733":42734,"42734":42735,"42735":42736,"42736":42737,"42737":42738,"42738":42739,"42739":42740,"42740":42741,"42741":42742,"42742":42743,"42743":42744,"42744":42745,"42745":42746,"42746":42747,"42747":42748,"42748":42749,"42749":42750,"42750":42751,"42751":42752,"42752":42753,"42753":42754,"42754":42755,"42755":42756,"42756":42757,"42757":42758,"42758":42759,"42759":42760,"42760":42761,"42761":42762,"42762":42763,"42763":42764,"42764":42765,"42765":42766,"42766":42767,"42767":42768,"42768":42769,"42769":42770,"42770":42771,"42771":42772,"42772":42773,"42773":42774,"42774":42775,"42775":42776,"42776":42777,"42777":42778,"42778":42779,"42779":42780,"42780":42781,"42781":42782,"42782":42783,"42783":42784,"42784":42785,"42785":42786,"42786":42787,"42787":42788,"42788":42789,"42789":42790,"42790":42791,"42791":42792,"42792":42793,"42793":42794,"42794":42795,"42795":42796,"42796":42797,"42797":42798,"42798":42799,"42799":42800,"42800":42801,"42801":42802,"42802":42803,"42803":42804,"42804":42805,"42805":42806,"42806":42807,"42807":42808,"42808":42809,"42809":42810,"42810":42811,"42811":42812,"42812":42813,"42813":42814,"42814":42815,"42815":42816,"42816":42817,"42817":42818,"42818":42819,"42819":42820,"42820":42821,"42821":42822,"42822":42823,"42823":42824,"42824":42825,"42825":42826,"42826":42827,"42827":42828,"42828":42829,"42829":42830,"42830":42831,"42831":42832,"42832":42833,"42833":42834,"42834":42835,"42835":42836,"42836":42837,"42837":42838,"42838":42839,"42839":42840,"42840":42841,"42841":42842,"42842":42843,"42843":42844,"42844":42845,"42845":42846,"42846":42847,"42847":42848,"42848":42849,"42849":42850,"42850":42851,"42851":42852,"42852":42853,"42853":42854,"42854":42855,"42855":42856,"42856":42857,"42857":42858,"42858":42859,"42859":42860,"42860":42861,"42861":42862,"42862":42863,"42863":42864,"42864":42865,"42865":42866,"42866":42867,"42867":42868,"42868":42869,"42869":42870,"42870":42871,"42871":42872,"42872":42873,"42873":42874,"42874":42875,"42875":42876,"42876":42877,"42877":42878,"42878":42879,"42879":42880,"42880":42881,"42881":42882,"42882":42883,"42883":42884,"42884":42885,"42885":42886,"42886":42887,"42887":42888,"42888":42889,"42889":42890,"42890":42891,"42891":42892,"42892":42893,"42893":42894,"42894":42895,"42895":42896,"42896":42897,"42897":42898,"42898":42899,"42899":42900,"42900":42901,"42901":42902,"42902":42903,"42903":42904,"42904":42905,"42905":42906,"42906":42907,"42907":42908,"42908":42909,"42909":42910,"42910":42911,"42911":42912,"42912":42913,"42913":42914,"42914":42915,"42915":42916,"42916":42917,"42917":42918,"42918":42919,"42919":42920,"42920":42921,"42921":42922,"42922":42923,"42923":42924,"42924":42925,"42925":42926,"42926":42927,"42927":42928,"42928":42929,"42929":42930,"42930":42931,"42931":42932,"42932":42933,"42933":42934,"42934":42935,"42935":42936,"42936":42937,"42937":42938,"42938":42939,"42939":42940,"42940":42941,"42941":42942,"42942":42943,"42943":42944,"42944":42945,"42945":42946,"42946":42947,"42947":42948,"42948":42949,"42949":42950,"42950":42951,"42951":42952,"42952":42953,"42953":42954,"42954":42955,"42955":42956,"42956":42957,"42957":42958,"42958":42959,"42959":42960,"42960":42961,"42961":42962,"42962":42963,"42963":42964,"42964":42965,"42965":42966,"42966":42967,"42967":42968,"42968":42969,"42969":42970,"42970":42971,"42971":42972,"42972":42973,"42973":42974,"42974":42975,"42975":42976,"42976":42977,"42977":42978,"42978":42979,"42979":42980,"42980":42981,"42981":42982,"42982":42983,"42983":42984,"42984":42985,"42985":42986,"42986":42987,"42987":42988,"42988":42989,"42989":42990,"42990":42991,"42991":42992,"42992":42993,"42993":42994,"42994":42995,"42995":42996,"42996":42997,"42997":42998,"42998":42999,"42999":43000,"43000":43001,"43001":43002,"43002":43003,"43003":43004,"43004":43005,"43005":43006,"43006":43007,"43007":43008,"43008":43009,"43009":43010,"43010":43011,"43011":43012,"43012":43013,"43013":43014,"43014":43015,"43015":43016,"43016":43017,"43017":43018,"43018":43019,"43019":43020,"43020":43021,"43021":43022,"43022":43023,"43023":43024,"43024":43025,"43025":43026,"43026":43027,"43027":43028,"43028":43029,"43029":43030,"43030":43031,"43031":43032,"43032":43033,"43033":43034,"43034":43035,"43035":43036,"43036":43037,"43037":43038,"43038":43039,"43039":43040,"43040":43041,"43041":43042,"43042":43043,"43043":43044,"43044":43045,"43045":43046,"43046":43047,"43047":43048,"43048":43049,"43049":43050,"43050":43051,"43051":43052,"43052":43053,"43053":43054,"43054":43055,"43055":43056,"43056":43057,"43057":43058,"43058":43059,"43059":43060,"43060":43061,"43061":43062,"43062":43063,"43063":43064,"43064":43065,"43065":43066,"43066":43067,"43067":43068,"43068":43069,"43069":43070,"43070":43071,"43071":43072,"43072":43073,"43073":43074,"43074":43075,"43075":43076,"43076":43077,"43077":43078,"43078":43079,"43079":43080,"43080":43081,"43081":43082,"43082":43083,"43083":43084,"43084":43085,"43085":43086,"43086":43087,"43087":43088,"43088":43089,"43089":43090,"43090":43091,"43091":43092,"43092":43093,"43093":43094,"43094":43095,"43095":43096,"43096":43097,"43097":43098,"43098":43099,"43099":43100,"43100":43101,"43101":43102,"43102":43103,"43103":43104,"43104":43105,"43105":43106,"43106":43107,"43107":43108,"43108":43109,"43109":43110,"43110":43111,"43111":43112,"43112":43113,"43113":43114,"43114":43115,"43115":43116,"43116":43117,"43117":43118,"43118":43119,"43119":43120,"43120":43121,"43121":43122,"43122":43123,"43123":43124,"43124":43125,"43125":43126,"43126":43127,"43127":43128,"43128":43129,"43129":43130,"43130":43131,"43131":43132,"43132":43133,"43133":43134,"43134":43135,"43135":43136,"43136":43137,"43137":43138,"43138":43139,"43139":43140,"43140":43141,"43141":43142,"43142":43143,"43143":43144,"43144":43145,"43145":43146,"43146":43147,"43147":43148,"43148":43149,"43149":43150,"43150":43151,"43151":43152,"43152":43153,"43153":43154,"43154":43155,"43155":43156,"43156":43157,"43157":43158,"43158":43159,"43159":43160,"43160":43161,"43161":43162,"43162":43163,"43163":43164,"43164":43165,"43165":43166,"43166":43167,"43167":43168,"43168":43169,"43169":43170,"43170":43171,"43171":43172,"43172":43173,"43173":43174,"43174":43175,"43175":43176,"43176":43177,"43177":43178,"43178":43179,"43179":43180,"43180":43181,"43181":43182,"43182":43183,"43183":43184,"43184":43185,"43185":43186,"43186":43187,"43187":43188,"43188":43189,"43189":43190,"43190":43191,"43191":43192,"43192":43193,"43193":43194,"43194":43195,"43195":43196,"43196":43197,"43197":43198,"43198":43199,"43199":43200,"43200":43201,"43201":43202,"43202":43203,"43203":43204,"43204":43205,"43205":43206,"43206":43207,"43207":43208,"43208":43209,"43209":43210,"43210":43211,"43211":43212,"43212":43213,"43213":43214,"43214":43215,"43215":43216,"43216":43217,"43217":43218,"43218":43219,"43219":43220,"43220":43221,"43221":43222,"43222":43223,"43223":43224,"43224":43225,"43225":43226,"43226":43227,"43227":43228,"43228":43229,"43229":43230,"43230":43231,"43231":43232,"43232":43233,"43233":43234,"43234":43235,"43235":43236,"43236":43237,"43237":43238,"43238":43239,"43239":43240,"43240":43241,"43241":43242,"43242":43243,"43243":43244,"43244":43245,"43245":43246,"43246":43247,"43247":43248,"43248":43249,"43249":43250,"43250":43251,"43251":43252,"43252":43253,"43253":43254,"43254":43255,"43255":43256,"43256":43257,"43257":43258,"43258":43259,"43259":43260,"43260":43261,"43261":43262,"43262":43263,"43263":43264,"43264":43265,"43265":43266,"43266":43267,"43267":43268,"43268":43269,"43269":43270,"43270":43271,"43271":43272,"43272":43273,"43273":43274,"43274":43275,"43275":43276,"43276":43277,"43277":43278,"43278":43279,"43279":43280,"43280":43281,"43281":43282,"43282":43283,"43283":43284,"43284":43285,"43285":43286,"43286":43287,"43287":43288,"43288":43289,"43289":43290,"43290":43291,"43291":43292,"43292":43293,"43293":43294,"43294":43295,"43295":43296,"43296":43297,"43297":43298,"43298":43299,"43299":43300,"43300":43301,"43301":43302,"43302":43303,"43303":43304,"43304":43305,"43305":43306,"43306":43307,"43307":43308,"43308":43309,"43309":43310,"43310":43311,"43311":43312,"43312":43313,"43313":43314,"43314":43315,"43315":43316,"43316":43317,"43317":43318,"43318":43319,"43319":43320,"43320":43321,"43321":43322,"43322":43323,"43323":43324,"43324":43325,"43325":43326,"43326":43327,"43327":43328,"43328":43329,"43329":43330,"43330":43331,"43331":43332,"43332":43333,"43333":43334,"43334":43335,"43335":43336,"43336":43337,"43337":43338,"43338":43339,"43339":43340,"43340":43341,"43341":43342,"43342":43343,"43343":43344,"43344":43345,"43345":43346,"43346":43347,"43347":43348,"43348":43349,"43349":43350,"43350":43351,"43351":43352,"43352":43353,"43353":43354,"43354":43355,"43355":43356,"43356":43357,"43357":43358,"43358":43359,"43359":43360,"43360":43361,"43361":43362,"43362":43363,"43363":43364,"43364":43365,"43365":43366,"43366":43367,"43367":43368,"43368":43369,"43369":43370,"43370":43371,"43371":43372,"43372":43373,"43373":43374,"43374":43375,"43375":43376,"43376":43377,"43377":43378,"43378":43379,"43379":43380,"43380":43381,"43381":43382,"43382":43383,"43383":43384,"43384":43385,"43385":43386,"43386":43387,"43387":43388,"43388":43389,"43389":43390,"43390":43391,"43391":43392,"43392":43393,"43393":43394,"43394":43395,"43395":43396,"43396":43397,"43397":43398,"43398":43399,"43399":43400,"43400":43401,"43401":43402,"43402":43403,"43403":43404,"43404":43405,"43405":43406,"43406":43407,"43407":43408,"43408":43409,"43409":43410,"43410":43411,"43411":43412,"43412":43413,"43413":43414,"43414":43415,"43415":43416,"43416":43417,"43417":43418,"43418":43419,"43419":43420,"43420":43421,"43421":43422,"43422":43423,"43423":43424,"43424":43425,"43425":43426,"43426":43427,"43427":43428,"43428":43429,"43429":43430,"43430":43431,"43431":43432,"43432":43433,"43433":43434,"43434":43435,"43435":43436,"43436":43437,"43437":43438,"43438":43439,"43439":43440,"43440":43441,"43441":43442,"43442":43443,"43443":43444,"43444":43445,"43445":43446,"43446":43447,"43447":43448,"43448":43449,"43449":43450,"43450":43451,"43451":43452,"43452":43453,"43453":43454,"43454":43455,"43455":43456,"43456":43457,"43457":43458,"43458":43459,"43459":43460,"43460":43461,"43461":43462,"43462":43463,"43463":43464,"43464":43465,"43465":43466,"43466":43467,"43467":43468,"43468":43469,"43469":43470,"43470":43471,"43471":43472,"43472":43473,"43473":43474,"43474":43475,"43475":43476,"43476":43477,"43477":43478,"43478":43479,"43479":43480,"43480":43481,"43481":43482,"43482":43483,"43483":43484,"43484":43485,"43485":43486,"43486":43487,"43487":43488,"43488":43489,"43489":43490,"43490":43491,"43491":43492,"43492":43493,"43493":43494,"43494":43495,"43495":43496,"43496":43497,"43497":43498,"43498":43499,"43499":43500,"43500":43501,"43501":43502,"43502":43503,"43503":43504,"43504":43505,"43505":43506,"43506":43507,"43507":43508,"43508":43509,"43509":43510,"43510":43511,"43511":43512,"43512":43513,"43513":43514,"43514":43515,"43515":43516,"43516":43517,"43517":43518,"43518":43519,"43519":43520,"43520":43521,"43521":43522,"43522":43523,"43523":43524,"43524":43525,"43525":43526,"43526":43527,"43527":43528,"43528":43529,"43529":43530,"43530":43531,"43531":43532,"43532":43533,"43533":43534,"43534":43535,"43535":43536,"43536":43537,"43537":43538,"43538":43539,"43539":43540,"43540":43541,"43541":43542,"43542":43543,"43543":43544,"43544":43545,"43545":43546,"43546":43547,"43547":43548,"43548":43549,"43549":43550,"43550":43551,"43551":43552,"43552":43553,"43553":43554,"43554":43555,"43555":43556,"43556":43557,"43557":43558,"43558":43559,"43559":43560,"43560":43561,"43561":43562,"43562":43563,"43563":43564,"43564":43565,"43565":43566,"43566":43567,"43567":43568,"43568":43569,"43569":43570,"43570":43571,"43571":43572,"43572":43573,"43573":43574,"43574":43575,"43575":43576,"43576":43577,"43577":43578,"43578":43579,"43579":43580,"43580":43581,"43581":43582,"43582":43583,"43583":43584,"43584":43585,"43585":43586,"43586":43587,"43587":43588,"43588":43589,"43589":43590,"43590":43591,"43591":43592,"43592":43593,"43593":43594,"43594":43595,"43595":43596,"43596":43597,"43597":43598,"43598":43599,"43599":43600,"43600":43601,"43601":43602,"43602":43603,"43603":43604,"43604":43605,"43605":43606,"43606":43607,"43607":43608,"43608":43609,"43609":43610,"43610":43611,"43611":43612,"43612":43613,"43613":43614,"43614":43615,"43615":43616,"43616":43617,"43617":43618,"43618":43619,"43619":43620,"43620":43621,"43621":43622,"43622":43623,"43623":43624,"43624":43625,"43625":43626,"43626":43627,"43627":43628,"43628":43629,"43629":43630,"43630":43631,"43631":43632,"43632":43633,"43633":43634,"43634":43635,"43635":43636,"43636":43637,"43637":43638,"43638":43639,"43639":43640,"43640":43641,"43641":43642,"43642":43643,"43643":43644,"43644":43645,"43645":43646,"43646":43647,"43647":43648,"43648":43649,"43649":43650,"43650":43651,"43651":43652,"43652":43653,"43653":43654,"43654":43655,"43655":43656,"43656":43657,"43657":43658,"43658":43659,"43659":43660,"43660":43661,"43661":43662,"43662":43663,"43663":43664,"43664":43665,"43665":43666,"43666":43667,"43667":43668,"43668":43669,"43669":43670,"43670":43671,"43671":43672,"43672":43673,"43673":43674,"43674":43675,"43675":43676,"43676":43677,"43677":43678,"43678":43679,"43679":43680,"43680":43681,"43681":43682,"43682":43683,"43683":43684,"43684":43685,"43685":43686,"43686":43687,"43687":43688,"43688":43689,"43689":43690,"43690":43691,"43691":43692,"43692":43693,"43693":43694,"43694":43695,"43695":43696,"43696":43697,"43697":43698,"43698":43699,"43699":43700,"43700":43701,"43701":43702,"43702":43703,"43703":43704,"43704":43705,"43705":43706,"43706":43707,"43707":43708,"43708":43709,"43709":43710,"43710":43711,"43711":43712,"43712":43713,"43713":43714,"43714":43715,"43715":43716,"43716":43717,"43717":43718,"43718":43719,"43719":43720,"43720":43721,"43721":43722,"43722":43723,"43723":43724,"43724":43725,"43725":43726,"43726":43727,"43727":43728,"43728":43729,"43729":43730,"43730":43731,"43731":43732,"43732":43733,"43733":43734,"43734":43735,"43735":43736,"43736":43737,"43737":43738,"43738":43739,"43739":43740,"43740":43741,"43741":43742,"43742":43743,"43743":43744,"43744":43745,"43745":43746,"43746":43747,"43747":43748,"43748":43749,"43749":43750,"43750":43751,"43751":43752,"43752":43753,"43753":43754,"43754":43755,"43755":43756,"43756":43757,"43757":43758,"43758":43759,"43759":43760,"43760":43761,"43761":43762,"43762":43763,"43763":43764,"43764":43765,"43765":43766,"43766":43767,"43767":43768,"43768":43769,"43769":43770,"43770":43771,"43771":43772,"43772":43773,"43773":43774,"43774":43775,"43775":43776,"43776":43777,"43777":43778,"43778":43779,"43779":43780,"43780":43781,"43781":43782,"43782":43783,"43783":43784,"43784":43785,"43785":43786,"43786":43787,"43787":43788,"43788":43789,"43789":43790,"43790":43791,"43791":43792,"43792":43793,"43793":43794,"43794":43795,"43795":43796,"43796":43797,"43797":43798,"43798":43799,"43799":43800,"43800":43801,"43801":43802,"43802":43803,"43803":43804,"43804":43805,"43805":43806,"43806":43807,"43807":43808,"43808":43809,"43809":43810,"43810":43811,"43811":43812,"43812":43813,"43813":43814,"43814":43815,"43815":43816,"43816":43817,"43817":43818,"43818":43819,"43819":43820,"43820":43821,"43821":43822,"43822":43823,"43823":43824,"43824":43825,"43825":43826,"43826":43827,"43827":43828,"43828":43829,"43829":43830,"43830":43831,"43831":43832,"43832":43833,"43833":43834,"43834":43835,"43835":43836,"43836":43837,"43837":43838,"43838":43839,"43839":43840,"43840":43841,"43841":43842,"43842":43843,"43843":43844,"43844":43845,"43845":43846,"43846":43847,"43847":43848,"43848":43849,"43849":43850,"43850":43851,"43851":43852,"43852":43853,"43853":43854,"43854":43855,"43855":43856,"43856":43857,"43857":43858,"43858":43859,"43859":43860,"43860":43861,"43861":43862,"43862":43863,"43863":43864,"43864":43865,"43865":43866,"43866":43867,"43867":43868,"43868":43869,"43869":43870,"43870":43871,"43871":43872,"43872":43873,"43873":43874,"43874":43875,"43875":43876,"43876":43877,"43877":43878,"43878":43879,"43879":43880,"43880":43881,"43881":43882,"43882":43883,"43883":43884,"43884":43885,"43885":43886,"43886":43887,"43887":43888,"43888":43889,"43889":43890,"43890":43891,"43891":43892,"43892":43893,"43893":43894,"43894":43895,"43895":43896,"43896":43897,"43897":43898,"43898":43899,"43899":43900,"43900":43901,"43901":43902,"43902":43903,"43903":43904,"43904":43905,"43905":43906,"43906":43907,"43907":43908,"43908":43909,"43909":43910,"43910":43911,"43911":43912,"43912":43913,"43913":43914,"43914":43915,"43915":43916,"43916":43917,"43917":43918,"43918":43919,"43919":43920,"43920":43921,"43921":43922,"43922":43923,"43923":43924,"43924":43925,"43925":43926,"43926":43927,"43927":43928,"43928":43929,"43929":43930,"43930":43931,"43931":43932,"43932":43933,"43933":43934,"43934":43935,"43935":43936,"43936":43937,"43937":43938,"43938":43939,"43939":43940,"43940":43941,"43941":43942,"43942":43943,"43943":43944,"43944":43945,"43945":43946,"43946":43947,"43947":43948,"43948":43949,"43949":43950,"43950":43951,"43951":43952,"43952":43953,"43953":43954,"43954":43955,"43955":43956,"43956":43957,"43957":43958,"43958":43959,"43959":43960,"43960":43961,"43961":43962,"43962":43963,"43963":43964,"43964":43965,"43965":43966,"43966":43967,"43967":43968,"43968":43969,"43969":43970,"43970":43971,"43971":43972,"43972":43973,"43973":43974,"43974":43975,"43975":43976,"43976":43977,"43977":43978,"43978":43979,"43979":43980,"43980":43981,"43981":43982,"43982":43983,"43983":43984,"43984":43985,"43985":43986,"43986":43987,"43987":43988,"43988":43989,"43989":43990,"43990":43991,"43991":43992,"43992":43993,"43993":43994,"43994":43995,"43995":43996,"43996":43997,"43997":43998,"43998":43999,"43999":44000,"44000":44001,"44001":44002,"44002":44003,"44003":44004,"44004":44005,"44005":44006,"44006":44007,"44007":44008,"44008":44009,"44009":44010,"44010":44011,"44011":44012,"44012":44013,"44013":44014,"44014":44015,"44015":44016,"44016":44017,"44017":44018,"44018":44019,"44019":44020,"44020":44021,"44021":44022,"44022":44023,"44023":44024,"44024":44025,"44025":44026,"44026":44027,"44027":44028,"44028":44029,"44029":44030,"44030":44031,"44031":44032,"44032":44033,"44033":44034,"44034":44035,"44035":44036,"44036":44037,"44037":44038,"44038":44039,"44039":44040,"44040":44041,"44041":44042,"44042":44043,"44043":44044,"44044":44045,"44045":44046,"44046":44047,"44047":44048,"44048":44049,"44049":44050,"44050":44051,"44051":44052,"44052":44053,"44053":44054,"44054":44055,"44055":44056,"44056":44057,"44057":44058,"44058":44059,"44059":44060,"44060":44061,"44061":44062,"44062":44063,"44063":44064,"44064":44065,"44065":44066,"44066":44067,"44067":44068,"44068":44069,"44069":44070,"44070":44071,"44071":44072,"44072":44073,"44073":44074,"44074":44075,"44075":44076,"44076":44077,"44077":44078,"44078":44079,"44079":44080,"44080":44081,"44081":44082,"44082":44083,"44083":44084,"44084":44085,"44085":44086,"44086":44087,"44087":44088,"44088":44089,"44089":44090,"44090":44091,"44091":44092,"44092":44093,"44093":44094,"44094":44095,"44095":44096,"44096":44097,"44097":44098,"44098":44099,"44099":44100,"44100":44101,"44101":44102,"44102":44103,"44103":44104,"44104":44105,"44105":44106,"44106":44107,"44107":44108,"44108":44109,"44109":44110,"44110":44111,"44111":44112,"44112":44113,"44113":44114,"44114":44115,"44115":44116,"44116":44117,"44117":44118,"44118":44119,"44119":44120,"44120":44121,"44121":44122,"44122":44123,"44123":44124,"44124":44125,"44125":44126,"44126":44127,"44127":44128,"44128":44129,"44129":44130,"44130":44131,"44131":44132,"44132":44133,"44133":44134,"44134":44135,"44135":44136,"44136":44137,"44137":44138,"44138":44139,"44139":44140,"44140":44141,"44141":44142,"44142":44143,"44143":44144,"44144":44145,"44145":44146,"44146":44147,"44147":44148,"44148":44149,"44149":44150,"44150":44151,"44151":44152,"44152":44153,"44153":44154,"44154":44155,"44155":44156,"44156":44157,"44157":44158,"44158":44159,"44159":44160,"44160":44161,"44161":44162,"44162":44163,"44163":44164,"44164":44165,"44165":44166,"44166":44167,"44167":44168,"44168":44169,"44169":44170,"44170":44171,"44171":44172,"44172":44173,"44173":44174,"44174":44175,"44175":44176,"44176":44177,"44177":44178,"44178":44179,"44179":44180,"44180":44181,"44181":44182,"44182":44183,"44183":44184,"44184":44185,"44185":44186,"44186":44187,"44187":44188,"44188":44189,"44189":44190,"44190":44191,"44191":44192,"44192":44193,"44193":44194,"44194":44195,"44195":44196,"44196":44197,"44197":44198,"44198":44199,"44199":44200,"44200":44201,"44201":44202,"44202":44203,"44203":44204,"44204":44205,"44205":44206,"44206":44207,"44207":44208,"44208":44209,"44209":44210,"44210":44211,"44211":44212,"44212":44213,"44213":44214,"44214":44215,"44215":44216,"44216":44217,"44217":44218,"44218":44219,"44219":44220,"44220":44221,"44221":44222,"44222":44223,"44223":44224,"44224":44225,"44225":44226,"44226":44227,"44227":44228,"44228":44229,"44229":44230,"44230":44231,"44231":44232,"44232":44233,"44233":44234,"44234":44235,"44235":44236,"44236":44237,"44237":44238,"44238":44239,"44239":44240,"44240":44241,"44241":44242,"44242":44243,"44243":44244,"44244":44245,"44245":44246,"44246":44247,"44247":44248,"44248":44249,"44249":44250,"44250":44251,"44251":44252,"44252":44253,"44253":44254,"44254":44255,"44255":44256,"44256":44257,"44257":44258,"44258":44259,"44259":44260,"44260":44261,"44261":44262,"44262":44263,"44263":44264,"44264":44265,"44265":44266,"44266":44267,"44267":44268,"44268":44269,"44269":44270,"44270":44271,"44271":44272,"44272":44273,"44273":44274,"44274":44275,"44275":44276,"44276":44277,"44277":44278,"44278":44279,"44279":44280,"44280":44281,"44281":44282,"44282":44283,"44283":44284,"44284":44285,"44285":44286,"44286":44287,"44287":44288,"44288":44289,"44289":44290,"44290":44291,"44291":44292,"44292":44293,"44293":44294,"44294":44295,"44295":44296,"44296":44297,"44297":44298,"44298":44299,"44299":44300,"44300":44301,"44301":44302,"44302":44303,"44303":44304,"44304":44305,"44305":44306,"44306":44307,"44307":44308,"44308":44309,"44309":44310,"44310":44311,"44311":44312,"44312":44313,"44313":44314,"44314":44315,"44315":44316,"44316":44317,"44317":44318,"44318":44319,"44319":44320,"44320":44321,"44321":44322,"44322":44323,"44323":44324,"44324":44325,"44325":44326,"44326":44327,"44327":44328,"44328":44329,"44329":44330,"44330":44331,"44331":44332,"44332":44333,"44333":44334,"44334":44335,"44335":44336,"44336":44337,"44337":44338,"44338":44339,"44339":44340,"44340":44341,"44341":44342,"44342":44343,"44343":44344,"44344":44345,"44345":44346,"44346":44347,"44347":44348,"44348":44349,"44349":44350,"44350":44351,"44351":44352,"44352":44353,"44353":44354,"44354":44355,"44355":44356,"44356":44357,"44357":44358,"44358":44359,"44359":44360,"44360":44361,"44361":44362,"44362":44363,"44363":44364,"44364":44365,"44365":44366,"44366":44367,"44367":44368,"44368":44369,"44369":44370,"44370":44371,"44371":44372,"44372":44373,"44373":44374,"44374":44375,"44375":44376,"44376":44377,"44377":44378,"44378":44379,"44379":44380,"44380":44381,"44381":44382,"44382":44383,"44383":44384,"44384":44385,"44385":44386,"44386":44387,"44387":44388,"44388":44389,"44389":44390,"44390":44391,"44391":44392,"44392":44393,"44393":44394,"44394":44395,"44395":44396,"44396":44397,"44397":44398,"44398":44399,"44399":44400,"44400":44401,"44401":44402,"44402":44403,"44403":44404,"44404":44405,"44405":44406,"44406":44407,"44407":44408,"44408":44409,"44409":44410,"44410":44411,"44411":44412,"44412":44413,"44413":44414,"44414":44415,"44415":44416,"44416":44417,"44417":44418,"44418":44419,"44419":44420,"44420":44421,"44421":44422,"44422":44423,"44423":44424,"44424":44425,"44425":44426,"44426":44427,"44427":44428,"44428":44429,"44429":44430,"44430":44431,"44431":44432,"44432":44433,"44433":44434,"44434":44435,"44435":44436,"44436":44437,"44437":44438,"44438":44439,"44439":44440,"44440":44441,"44441":44442,"44442":44443,"44443":44444,"44444":44445,"44445":44446,"44446":44447,"44447":44448,"44448":44449,"44449":44450,"44450":44451,"44451":44452,"44452":44453,"44453":44454,"44454":44455,"44455":44456,"44456":44457,"44457":44458,"44458":44459,"44459":44460,"44460":44461,"44461":44462,"44462":44463,"44463":44464,"44464":44465,"44465":44466,"44466":44467,"44467":44468,"44468":44469,"44469":44470,"44470":44471,"44471":44472,"44472":44473,"44473":44474,"44474":44475,"44475":44476,"44476":44477,"44477":44478,"44478":44479,"44479":44480,"44480":44481,"44481":44482,"44482":44483,"44483":44484,"44484":44485,"44485":44486,"44486":44487,"44487":44488,"44488":44489,"44489":44490,"44490":44491,"44491":44492,"44492":44493,"44493":44494,"44494":44495,"44495":44496,"44496":44497,"44497":44498,"44498":44499,"44499":44500,"44500":44501,"44501":44502,"44502":44503,"44503":44504,"44504":44505,"44505":44506,"44506":44507,"44507":44508,"44508":44509,"44509":44510,"44510":44511,"44511":44512,"44512":44513,"44513":44514,"44514":44515,"44515":44516,"44516":44517,"44517":44518,"44518":44519,"44519":44520,"44520":44521,"44521":44522,"44522":44523,"44523":44524,"44524":44525,"44525":44526,"44526":44527,"44527":44528,"44528":44529,"44529":44530,"44530":44531,"44531":44532,"44532":44533,"44533":44534,"44534":44535,"44535":44536,"44536":44537,"44537":44538,"44538":44539,"44539":44540,"44540":44541,"44541":44542,"44542":44543,"44543":44544,"44544":44545,"44545":44546,"44546":44547,"44547":44548,"44548":44549,"44549":44550,"44550":44551,"44551":44552,"44552":44553,"44553":44554,"44554":44555,"44555":44556,"44556":44557,"44557":44558,"44558":44559,"44559":44560,"44560":44561,"44561":44562,"44562":44563,"44563":44564,"44564":44565,"44565":44566,"44566":44567,"44567":44568,"44568":44569,"44569":44570,"44570":44571,"44571":44572,"44572":44573,"44573":44574,"44574":44575,"44575":44576,"44576":44577,"44577":44578,"44578":44579,"44579":44580,"44580":44581,"44581":44582,"44582":44583,"44583":44584,"44584":44585,"44585":44586,"44586":44587,"44587":44588,"44588":44589,"44589":44590,"44590":44591,"44591":44592,"44592":44593,"44593":44594,"44594":44595,"44595":44596,"44596":44597,"44597":44598,"44598":44599,"44599":44600,"44600":44601,"44601":44602,"44602":44603,"44603":44604,"44604":44605,"44605":44606,"44606":44607,"44607":44608,"44608":44609,"44609":44610,"44610":44611,"44611":44612,"44612":44613,"44613":44614,"44614":44615,"44615":44616,"44616":44617,"44617":44618,"44618":44619,"44619":44620,"44620":44621,"44621":44622,"44622":44623,"44623":44624,"44624":44625,"44625":44626,"44626":44627,"44627":44628,"44628":44629,"44629":44630,"44630":44631,"44631":44632,"44632":44633,"44633":44634,"44634":44635,"44635":44636,"44636":44637,"44637":44638,"44638":44639,"44639":44640,"44640":44641,"44641":44642,"44642":44643,"44643":44644,"44644":44645,"44645":44646,"44646":44647,"44647":44648,"44648":44649,"44649":44650,"44650":44651,"44651":44652,"44652":44653,"44653":44654,"44654":44655,"44655":44656,"44656":44657,"44657":44658,"44658":44659,"44659":44660,"44660":44661,"44661":44662,"44662":44663,"44663":44664,"44664":44665,"44665":44666,"44666":44667,"44667":44668,"44668":44669,"44669":44670,"44670":44671,"44671":44672,"44672":44673,"44673":44674,"44674":44675,"44675":44676,"44676":44677,"44677":44678,"44678":44679,"44679":44680,"44680":44681,"44681":44682,"44682":44683,"44683":44684,"44684":44685,"44685":44686,"44686":44687,"44687":44688,"44688":44689,"44689":44690,"44690":44691,"44691":44692,"44692":44693,"44693":44694,"44694":44695,"44695":44696,"44696":44697,"44697":44698,"44698":44699,"44699":44700,"44700":44701,"44701":44702,"44702":44703,"44703":44704,"44704":44705,"44705":44706,"44706":44707,"44707":44708,"44708":44709,"44709":44710,"44710":44711,"44711":44712,"44712":44713,"44713":44714,"44714":44715,"44715":44716,"44716":44717,"44717":44718,"44718":44719,"44719":44720,"44720":44721,"44721":44722,"44722":44723,"44723":44724,"44724":44725,"44725":44726,"44726":44727,"44727":44728,"44728":44729,"44729":44730,"44730":44731,"44731":44732,"44732":44733,"44733":44734,"44734":44735,"44735":44736,"44736":44737,"44737":44738,"44738":44739,"44739":44740,"44740":44741,"44741":44742,"44742":44743,"44743":44744,"44744":44745,"44745":44746,"44746":44747,"44747":44748,"44748":44749,"44749":44750,"44750":44751,"44751":44752,"44752":44753,"44753":44754,"44754":44755,"44755":44756,"44756":44757,"44757":44758,"44758":44759,"44759":44760,"44760":44761,"44761":44762,"44762":44763,"44763":44764,"44764":44765,"44765":44766,"44766":44767,"44767":44768,"44768":44769,"44769":44770,"44770":44771,"44771":44772,"44772":44773,"44773":44774,"44774":44775,"44775":44776,"44776":44777,"44777":44778,"44778":44779,"44779":44780,"44780":44781,"44781":44782,"44782":44783,"44783":44784,"44784":44785,"44785":44786,"44786":44787,"44787":44788,"44788":44789,"44789":44790,"44790":44791,"44791":44792,"44792":44793,"44793":44794,"44794":44795,"44795":44796,"44796":44797,"44797":44798,"44798":44799,"44799":44800,"44800":44801,"44801":44802,"44802":44803,"44803":44804,"44804":44805,"44805":44806,"44806":44807,"44807":44808,"44808":44809,"44809":44810,"44810":44811,"44811":44812,"44812":44813,"44813":44814,"44814":44815,"44815":44816,"44816":44817,"44817":44818,"44818":44819,"44819":44820,"44820":44821,"44821":44822,"44822":44823,"44823":44824,"44824":44825,"44825":44826,"44826":44827,"44827":44828,"44828":44829,"44829":44830,"44830":44831,"44831":44832,"44832":44833,"44833":44834,"44834":44835,"44835":44836,"44836":44837,"44837":44838,"44838":44839,"44839":44840,"44840":44841,"44841":44842,"44842":44843,"44843":44844,"44844":44845,"44845":44846,"44846":44847,"44847":44848,"44848":44849,"44849":44850,"44850":44851,"44851":44852,"44852":44853,"44853":44854,"44854":44855,"44855":44856,"44856":44857,"44857":44858,"44858":44859,"44859":44860,"44860":44861,"44861":44862,"44862":44863,"44863":44864,"44864":44865,"44865":44866,"44866":44867,"44867":44868,"44868":44869,"44869":44870,"44870":44871,"44871":44872,"44872":44873,"44873":44874,"44874":44875,"44875":44876,"44876":44877,"44877":44878,"44878":44879,"44879":44880,"44880":44881,"44881":44882,"44882":44883,"44883":44884,"44884":44885,"44885":44886,"44886":44887,"44887":44888,"44888":44889,"44889":44890,"44890":44891,"44891":44892,"44892":44893,"44893":44894,"44894":44895,"44895":44896,"44896":44897,"44897":44898,"44898":44899,"44899":44900,"44900":44901,"44901":44902,"44902":44903,"44903":44904,"44904":44905,"44905":44906,"44906":44907,"44907":44908,"44908":44909,"44909":44910,"44910":44911,"44911":44912,"44912":44913,"44913":44914,"44914":44915,"44915":44916,"44916":44917,"44917":44918,"44918":44919,"44919":44920,"44920":44921,"44921":44922,"44922":44923,"44923":44924,"44924":44925,"44925":44926,"44926":44927,"44927":44928,"44928":44929,"44929":44930,"44930":44931,"44931":44932,"44932":44933,"44933":44934,"44934":44935,"44935":44936,"44936":44937,"44937":44938,"44938":44939,"44939":44940,"44940":44941,"44941":44942,"44942":44943,"44943":44944,"44944":44945,"44945":44946,"44946":44947,"44947":44948,"44948":44949,"44949":44950,"44950":44951,"44951":44952,"44952":44953,"44953":44954,"44954":44955,"44955":44956,"44956":44957,"44957":44958,"44958":44959,"44959":44960,"44960":44961,"44961":44962,"44962":44963,"44963":44964,"44964":44965,"44965":44966,"44966":44967,"44967":44968,"44968":44969,"44969":44970,"44970":44971,"44971":44972,"44972":44973,"44973":44974,"44974":44975,"44975":44976,"44976":44977,"44977":44978,"44978":44979,"44979":44980,"44980":44981,"44981":44982,"44982":44983,"44983":44984,"44984":44985,"44985":44986,"44986":44987,"44987":44988,"44988":44989,"44989":44990,"44990":44991,"44991":44992,"44992":44993,"44993":44994,"44994":44995,"44995":44996,"44996":44997,"44997":44998,"44998":44999,"44999":45000,"45000":45001,"45001":45002,"45002":45003,"45003":45004,"45004":45005,"45005":45006,"45006":45007,"45007":45008,"45008":45009,"45009":45010,"45010":45011,"45011":45012,"45012":45013,"45013":45014,"45014":45015,"45015":45016,"45016":45017,"45017":45018,"45018":45019,"45019":45020,"45020":45021,"45021":45022,"45022":45023,"45023":45024,"45024":45025,"45025":45026,"45026":45027,"45027":45028,"45028":45029,"45029":45030,"45030":45031,"45031":45032,"45032":45033,"45033":45034,"45034":45035,"45035":45036,"45036":45037,"45037":45038,"45038":45039,"45039":45040,"45040":45041,"45041":45042,"45042":45043,"45043":45044,"45044":45045,"45045":45046,"45046":45047,"45047":45048,"45048":45049,"45049":45050,"45050":45051,"45051":45052,"45052":45053,"45053":45054,"45054":45055,"45055":45056,"45056":45057,"45057":45058,"45058":45059,"45059":45060,"45060":45061,"45061":45062,"45062":45063,"45063":45064,"45064":45065,"45065":45066,"45066":45067,"45067":45068,"45068":45069,"45069":45070,"45070":45071,"45071":45072,"45072":45073,"45073":45074,"45074":45075,"45075":45076,"45076":45077,"45077":45078,"45078":45079,"45079":45080,"45080":45081,"45081":45082,"45082":45083,"45083":45084,"45084":45085,"45085":45086,"45086":45087,"45087":45088,"45088":45089,"45089":45090,"45090":45091,"45091":45092,"45092":45093,"45093":45094,"45094":45095,"45095":45096,"45096":45097,"45097":45098,"45098":45099,"45099":45100,"45100":45101,"45101":45102,"45102":45103,"45103":45104,"45104":45105,"45105":45106,"45106":45107,"45107":45108,"45108":45109,"45109":45110,"45110":45111,"45111":45112,"45112":45113,"45113":45114,"45114":45115,"45115":45116,"45116":45117,"45117":45118,"45118":45119,"45119":45120,"45120":45121,"45121":45122,"45122":45123,"45123":45124,"45124":45125,"45125":45126,"45126":45127,"45127":45128,"45128":45129,"45129":45130,"45130":45131,"45131":45132,"45132":45133,"45133":45134,"45134":45135,"45135":45136,"45136":45137,"45137":45138,"45138":45139,"45139":45140,"45140":45141,"45141":45142,"45142":45143,"45143":45144,"45144":45145,"45145":45146,"45146":45147,"45147":45148,"45148":45149,"45149":45150,"45150":45151,"45151":45152,"45152":45153,"45153":45154,"45154":45155,"45155":45156,"45156":45157,"45157":45158,"45158":45159,"45159":45160,"45160":45161,"45161":45162,"45162":45163,"45163":45164,"45164":45165,"45165":45166,"45166":45167,"45167":45168,"45168":45169,"45169":45170,"45170":45171,"45171":45172,"45172":45173,"45173":45174,"45174":45175,"45175":45176,"45176":45177,"45177":45178,"45178":45179,"45179":45180,"45180":45181,"45181":45182,"45182":45183,"45183":45184,"45184":45185,"45185":45186,"45186":45187,"45187":45188,"45188":45189,"45189":45190,"45190":45191,"45191":45192,"45192":45193,"45193":45194,"45194":45195,"45195":45196,"45196":45197,"45197":45198,"45198":45199,"45199":45200,"45200":45201,"45201":45202,"45202":45203,"45203":45204,"45204":45205,"45205":45206,"45206":45207,"45207":45208,"45208":45209,"45209":45210,"45210":45211,"45211":45212,"45212":45213,"45213":45214,"45214":45215,"45215":45216,"45216":45217,"45217":45218,"45218":45219,"45219":45220,"45220":45221,"45221":45222,"45222":45223,"45223":45224,"45224":45225,"45225":45226,"45226":45227,"45227":45228,"45228":45229,"45229":45230,"45230":45231,"45231":45232,"45232":45233,"45233":45234,"45234":45235,"45235":45236,"45236":45237,"45237":45238,"45238":45239,"45239":45240,"45240":45241,"45241":45242,"45242":45243,"45243":45244,"45244":45245,"45245":45246,"45246":45247,"45247":45248,"45248":45249,"45249":45250,"45250":45251,"45251":45252,"45252":45253,"45253":45254,"45254":45255,"45255":45256,"45256":45257,"45257":45258,"45258":45259,"45259":45260,"45260":45261,"45261":45262,"45262":45263,"45263":45264,"45264":45265,"45265":45266,"45266":45267,"45267":45268,"45268":45269,"45269":45270,"45270":45271,"45271":45272,"45272":45273,"45273":45274,"45274":45275,"45275":45276,"45276":45277,"45277":45278,"45278":45279,"45279":45280,"45280":45281,"45281":45282,"45282":45283,"45283":45284,"45284":45285,"45285":45286,"45286":45287,"45287":45288,"45288":45289,"45289":45290,"45290":45291,"45291":45292,"45292":45293,"45293":45294,"45294":45295,"45295":45296,"45296":45297,"45297":45298,"45298":45299,"45299":45300,"45300":45301,"45301":45302,"45302":45303,"45303":45304,"45304":45305,"45305":45306,"45306":45307,"45307":45308,"45308":45309,"45309":45310,"45310":45311,"45311":45312,"45312":45313,"45313":45314,"45314":45315,"45315":45316,"45316":45317,"45317":45318,"45318":45319,"45319":45320,"45320":45321,"45321":45322,"45322":45323,"45323":45324,"45324":45325,"45325":45326,"45326":45327,"45327":45328,"45328":45329,"45329":45330,"45330":45331,"45331":45332,"45332":45333,"45333":45334,"45334":45335,"45335":45336,"45336":45337,"45337":45338,"45338":45339,"45339":45340,"45340":45341,"45341":45342,"45342":45343,"45343":45344,"45344":45345,"45345":45346,"45346":45347,"45347":45348,"45348":45349,"45349":45350,"45350":45351,"45351":45352,"45352":45353,"45353":45354,"45354":45355,"45355":45356,"45356":45357,"45357":45358,"45358":45359,"45359":45360,"45360":45361,"45361":45362,"45362":45363,"45363":45364,"45364":45365,"45365":45366,"45366":45367,"45367":45368,"45368":45369,"45369":45370,"45370":45371,"45371":45372,"45372":45373,"45373":45374,"45374":45375,"45375":45376,"45376":45377,"45377":45378,"45378":45379,"45379":45380,"45380":45381,"45381":45382,"45382":45383,"45383":45384,"45384":45385,"45385":45386,"45386":45387,"45387":45388,"45388":45389,"45389":45390,"45390":45391,"45391":45392,"45392":45393,"45393":45394,"45394":45395,"45395":45396,"45396":45397,"45397":45398,"45398":45399,"45399":45400,"45400":45401,"45401":45402,"45402":45403,"45403":45404,"45404":45405,"45405":45406,"45406":45407,"45407":45408,"45408":45409,"45409":45410,"45410":45411,"45411":45412,"45412":45413,"45413":45414,"45414":45415,"45415":45416,"45416":45417,"45417":45418,"45418":45419,"45419":45420,"45420":45421,"45421":45422,"45422":45423,"45423":45424,"45424":45425,"45425":45426,"45426":45427,"45427":45428,"45428":45429,"45429":45430,"45430":45431,"45431":45432,"45432":45433,"45433":45434,"45434":45435,"45435":45436,"45436":45437,"45437":45438,"45438":45439,"45439":45440,"45440":45441,"45441":45442,"45442":45443,"45443":45444,"45444":45445,"45445":45446,"45446":45447,"45447":45448,"45448":45449,"45449":45450,"45450":45451,"45451":45452,"45452":45453,"45453":45454,"45454":45455,"45455":45456,"45456":45457,"45457":45458,"45458":45459,"45459":45460,"45460":45461,"45461":45462,"45462":45463,"45463":45464,"45464":45465,"45465":45466,"45466":45467,"45467":45468,"45468":45469,"45469":45470,"45470":45471,"45471":45472,"45472":45473,"45473":45474,"45474":45475,"45475":45476,"45476":45477,"45477":45478,"45478":45479,"45479":45480,"45480":45481,"45481":45482,"45482":45483,"45483":45484,"45484":45485,"45485":45486,"45486":45487,"45487":45488,"45488":45489,"45489":45490,"45490":45491,"45491":45492,"45492":45493,"45493":45494,"45494":45495,"45495":45496,"45496":45497,"45497":45498,"45498":45499,"45499":45500,"45500":45501,"45501":45502,"45502":45503,"45503":45504,"45504":45505,"45505":45506,"45506":45507,"45507":45508,"45508":45509,"45509":45510,"45510":45511,"45511":45512,"45512":45513,"45513":45514,"45514":45515,"45515":45516,"45516":45517,"45517":45518,"45518":45519,"45519":45520,"45520":45521,"45521":45522,"45522":45523,"45523":45524,"45524":45525,"45525":45526,"45526":45527,"45527":45528,"45528":45529,"45529":45530,"45530":45531,"45531":45532,"45532":45533,"45533":45534,"45534":45535,"45535":45536,"45536":45537,"45537":45538,"45538":45539,"45539":45540,"45540":45541,"45541":45542,"45542":45543,"45543":45544,"45544":45545,"45545":45546,"45546":45547,"45547":45548,"45548":45549,"45549":45550,"45550":45551,"45551":45552,"45552":45553,"45553":45554,"45554":45555,"45555":45556,"45556":45557,"45557":45558,"45558":45559,"45559":45560,"45560":45561,"45561":45562,"45562":45563,"45563":45564,"45564":45565,"45565":45566,"45566":45567,"45567":45568,"45568":45569,"45569":45570,"45570":45571,"45571":45572,"45572":45573,"45573":45574,"45574":45575,"45575":45576,"45576":45577,"45577":45578,"45578":45579,"45579":45580,"45580":45581,"45581":45582,"45582":45583,"45583":45584,"45584":45585,"45585":45586,"45586":45587,"45587":45588,"45588":45589,"45589":45590,"45590":45591,"45591":45592,"45592":45593,"45593":45594,"45594":45595,"45595":45596,"45596":45597,"45597":45598,"45598":45599,"45599":45600,"45600":45601,"45601":45602,"45602":45603,"45603":45604,"45604":45605,"45605":45606,"45606":45607,"45607":45608,"45608":45609,"45609":45610,"45610":45611,"45611":45612,"45612":45613,"45613":45614,"45614":45615,"45615":45616,"45616":45617,"45617":45618,"45618":45619,"45619":45620,"45620":45621,"45621":45622,"45622":45623,"45623":45624,"45624":45625,"45625":45626,"45626":45627,"45627":45628,"45628":45629,"45629":45630,"45630":45631,"45631":45632,"45632":45633,"45633":45634,"45634":45635,"45635":45636,"45636":45637,"45637":45638,"45638":45639,"45639":45640,"45640":45641,"45641":45642,"45642":45643,"45643":45644,"45644":45645,"45645":45646,"45646":45647,"45647":45648,"45648":45649,"45649":45650,"45650":45651,"45651":45652,"45652":45653,"45653":45654,"45654":45655,"45655":45656,"45656":45657,"45657":45658,"45658":45659,"45659":45660,"45660":45661,"45661":45662,"45662":45663,"45663":45664,"45664":45665,"45665":45666,"45666":45667,"45667":45668,"45668":45669,"45669":45670,"45670":45671,"45671":45672,"45672":45673,"45673":45674,"45674":45675,"45675":45676,"45676":45677,"45677":45678,"45678":45679,"45679":45680,"45680":45681,"45681":45682,"45682":45683,"45683":45684,"45684":45685,"45685":45686,"45686":45687,"45687":45688,"45688":45689,"45689":45690,"45690":45691,"45691":45692,"45692":45693,"45693":45694,"45694":45695,"45695":45696,"45696":45697,"45697":45698,"45698":45699,"45699":45700,"45700":45701,"45701":45702,"45702":45703,"45703":45704,"45704":45705,"45705":45706,"45706":45707,"45707":45708,"45708":45709,"45709":45710,"45710":45711,"45711":45712,"45712":45713,"45713":45714,"45714":45715,"45715":45716,"45716":45717,"45717":45718,"45718":45719,"45719":45720,"45720":45721,"45721":45722,"45722":45723,"45723":45724,"45724":45725,"45725":45726,"45726":45727,"45727":45728,"45728":45729,"45729":45730,"45730":45731,"45731":45732,"45732":45733,"45733":45734,"45734":45735,"45735":45736,"45736":45737,"45737":45738,"45738":45739,"45739":45740,"45740":45741,"45741":45742,"45742":45743,"45743":45744,"45744":45745,"45745":45746,"45746":45747,"45747":45748,"45748":45749,"45749":45750,"45750":45751,"45751":45752,"45752":45753,"45753":45754,"45754":45755,"45755":45756,"45756":45757,"45757":45758,"45758":45759,"45759":45760,"45760":45761,"45761":45762,"45762":45763,"45763":45764,"45764":45765,"45765":45766,"45766":45767,"45767":45768,"45768":45769,"45769":45770,"45770":45771,"45771":45772,"45772":45773,"45773":45774,"45774":45775,"45775":45776,"45776":45777,"45777":45778,"45778":45779,"45779":45780,"45780":45781,"45781":45782,"45782":45783,"45783":45784,"45784":45785,"45785":45786,"45786":45787,"45787":45788,"45788":45789,"45789":45790,"45790":45791,"45791":45792,"45792":45793,"45793":45794,"45794":45795,"45795":45796,"45796":45797,"45797":45798,"45798":45799,"45799":45800,"45800":45801,"45801":45802,"45802":45803,"45803":45804,"45804":45805,"45805":45806,"45806":45807,"45807":45808,"45808":45809,"45809":45810,"45810":45811,"45811":45812,"45812":45813,"45813":45814,"45814":45815,"45815":45816,"45816":45817,"45817":45818,"45818":45819,"45819":45820,"45820":45821,"45821":45822,"45822":45823,"45823":45824,"45824":45825,"45825":45826,"45826":45827,"45827":45828,"45828":45829,"45829":45830,"45830":45831,"45831":45832,"45832":45833,"45833":45834,"45834":45835,"45835":45836,"45836":45837,"45837":45838,"45838":45839,"45839":45840,"45840":45841,"45841":45842,"45842":45843,"45843":45844,"45844":45845,"45845":45846,"45846":45847,"45847":45848,"45848":45849,"45849":45850,"45850":45851,"45851":45852,"45852":45853,"45853":45854,"45854":45855,"45855":45856,"45856":45857,"45857":45858,"45858":45859,"45859":45860,"45860":45861,"45861":45862,"45862":45863,"45863":45864,"45864":45865,"45865":45866,"45866":45867,"45867":45868,"45868":45869,"45869":45870,"45870":45871,"45871":45872,"45872":45873,"45873":45874,"45874":45875,"45875":45876,"45876":45877,"45877":45878,"45878":45879,"45879":45880,"45880":45881,"45881":45882,"45882":45883,"45883":45884,"45884":45885,"45885":45886,"45886":45887,"45887":45888,"45888":45889,"45889":45890,"45890":45891,"45891":45892,"45892":45893,"45893":45894,"45894":45895,"45895":45896,"45896":45897,"45897":45898,"45898":45899,"45899":45900,"45900":45901,"45901":45902,"45902":45903,"45903":45904,"45904":45905,"45905":45906,"45906":45907,"45907":45908,"45908":45909,"45909":45910,"45910":45911,"45911":45912,"45912":45913,"45913":45914,"45914":45915,"45915":45916,"45916":45917,"45917":45918,"45918":45919,"45919":45920,"45920":45921,"45921":45922,"45922":45923,"45923":45924,"45924":45925,"45925":45926,"45926":45927,"45927":45928,"45928":45929,"45929":45930,"45930":45931,"45931":45932,"45932":45933,"45933":45934,"45934":45935,"45935":45936,"45936":45937,"45937":45938,"45938":45939,"45939":45940,"45940":45941,"45941":45942,"45942":45943,"45943":45944,"45944":45945,"45945":45946,"45946":45947,"45947":45948,"45948":45949,"45949":45950,"45950":45951,"45951":45952,"45952":45953,"45953":45954,"45954":45955,"45955":45956,"45956":45957,"45957":45958,"45958":45959,"45959":45960,"45960":45961,"45961":45962,"45962":45963,"45963":45964,"45964":45965,"45965":45966,"45966":45967,"45967":45968,"45968":45969,"45969":45970,"45970":45971,"45971":45972,"45972":45973,"45973":45974,"45974":45975,"45975":45976,"45976":45977,"45977":45978,"45978":45979,"45979":45980,"45980":45981,"45981":45982,"45982":45983,"45983":45984,"45984":45985,"45985":45986,"45986":45987,"45987":45988,"45988":45989,"45989":45990,"45990":45991,"45991":45992,"45992":45993,"45993":45994,"45994":45995,"45995":45996,"45996":45997,"45997":45998,"45998":45999,"45999":46000,"46000":46001,"46001":46002,"46002":46003,"46003":46004,"46004":46005,"46005":46006,"46006":46007,"46007":46008,"46008":46009,"46009":46010,"46010":46011,"46011":46012,"46012":46013,"46013":46014,"46014":46015,"46015":46016,"46016":46017,"46017":46018,"46018":46019,"46019":46020,"46020":46021,"46021":46022,"46022":46023,"46023":46024,"46024":46025,"46025":46026,"46026":46027,"46027":46028,"46028":46029,"46029":46030,"46030":46031,"46031":46032,"46032":46033,"46033":46034,"46034":46035,"46035":46036,"46036":46037,"46037":46038,"46038":46039,"46039":46040,"46040":46041,"46041":46042,"46042":46043,"46043":46044,"46044":46045,"46045":46046,"46046":46047,"46047":46048,"46048":46049,"46049":46050,"46050":46051,"46051":46052,"46052":46053,"46053":46054,"46054":46055,"46055":46056,"46056":46057,"46057":46058,"46058":46059,"46059":46060,"46060":46061,"46061":46062,"46062":46063,"46063":46064,"46064":46065,"46065":46066,"46066":46067,"46067":46068,"46068":46069,"46069":46070,"46070":46071,"46071":46072,"46072":46073,"46073":46074,"46074":46075,"46075":46076,"46076":46077,"46077":46078,"46078":46079,"46079":46080,"46080":46081,"46081":46082,"46082":46083,"46083":46084,"46084":46085,"46085":46086,"46086":46087,"46087":46088,"46088":46089,"46089":46090,"46090":46091,"46091":46092,"46092":46093,"46093":46094,"46094":46095,"46095":46096,"46096":46097,"46097":46098,"46098":46099,"46099":46100,"46100":46101,"46101":46102,"46102":46103,"46103":46104,"46104":46105,"46105":46106,"46106":46107,"46107":46108,"46108":46109,"46109":46110,"46110":46111,"46111":46112,"46112":46113,"46113":46114,"46114":46115,"46115":46116,"46116":46117,"46117":46118,"46118":46119,"46119":46120,"46120":46121,"46121":46122,"46122":46123,"46123":46124,"46124":46125,"46125":46126,"46126":46127,"46127":46128,"46128":46129,"46129":46130,"46130":46131,"46131":46132,"46132":46133,"46133":46134,"46134":46135,"46135":46136,"46136":46137,"46137":46138,"46138":46139,"46139":46140,"46140":46141,"46141":46142,"46142":46143,"46143":46144,"46144":46145,"46145":46146,"46146":46147,"46147":46148,"46148":46149,"46149":46150,"46150":46151,"46151":46152,"46152":46153,"46153":46154,"46154":46155,"46155":46156,"46156":46157,"46157":46158,"46158":46159,"46159":46160,"46160":46161,"46161":46162,"46162":46163,"46163":46164,"46164":46165,"46165":46166,"46166":46167,"46167":46168,"46168":46169,"46169":46170,"46170":46171,"46171":46172,"46172":46173,"46173":46174,"46174":46175,"46175":46176,"46176":46177,"46177":46178,"46178":46179,"46179":46180,"46180":46181,"46181":46182,"46182":46183,"46183":46184,"46184":46185,"46185":46186,"46186":46187,"46187":46188,"46188":46189,"46189":46190,"46190":46191,"46191":46192,"46192":46193,"46193":46194,"46194":46195,"46195":46196,"46196":46197,"46197":46198,"46198":46199,"46199":46200,"46200":46201,"46201":46202,"46202":46203,"46203":46204,"46204":46205,"46205":46206,"46206":46207,"46207":46208,"46208":46209,"46209":46210,"46210":46211,"46211":46212,"46212":46213,"46213":46214,"46214":46215,"46215":46216,"46216":46217,"46217":46218,"46218":46219,"46219":46220,"46220":46221,"46221":46222,"46222":46223,"46223":46224,"46224":46225,"46225":46226,"46226":46227,"46227":46228,"46228":46229,"46229":46230,"46230":46231,"46231":46232,"46232":46233,"46233":46234,"46234":46235,"46235":46236,"46236":46237,"46237":46238,"46238":46239,"46239":46240,"46240":46241,"46241":46242,"46242":46243,"46243":46244,"46244":46245,"46245":46246,"46246":46247,"46247":46248,"46248":46249,"46249":46250,"46250":46251,"46251":46252,"46252":46253,"46253":46254,"46254":46255,"46255":46256,"46256":46257,"46257":46258,"46258":46259,"46259":46260,"46260":46261,"46261":46262,"46262":46263,"46263":46264,"46264":46265,"46265":46266,"46266":46267,"46267":46268,"46268":46269,"46269":46270,"46270":46271,"46271":46272,"46272":46273,"46273":46274,"46274":46275,"46275":46276,"46276":46277,"46277":46278,"46278":46279,"46279":46280,"46280":46281,"46281":46282,"46282":46283,"46283":46284,"46284":46285,"46285":46286,"46286":46287,"46287":46288,"46288":46289,"46289":46290,"46290":46291,"46291":46292,"46292":46293,"46293":46294,"46294":46295,"46295":46296,"46296":46297,"46297":46298,"46298":46299,"46299":46300,"46300":46301,"46301":46302,"46302":46303,"46303":46304,"46304":46305,"46305":46306,"46306":46307,"46307":46308,"46308":46309,"46309":46310,"46310":46311,"46311":46312,"46312":46313,"46313":46314,"46314":46315,"46315":46316,"46316":46317,"46317":46318,"46318":46319,"46319":46320,"46320":46321,"46321":46322,"46322":46323,"46323":46324,"46324":46325,"46325":46326,"46326":46327,"46327":46328,"46328":46329,"46329":46330,"46330":46331,"46331":46332,"46332":46333,"46333":46334,"46334":46335,"46335":46336,"46336":46337,"46337":46338,"46338":46339,"46339":46340,"46340":46341,"46341":46342,"46342":46343,"46343":46344,"46344":46345,"46345":46346,"46346":46347,"46347":46348,"46348":46349,"46349":46350,"46350":46351,"46351":46352,"46352":46353,"46353":46354,"46354":46355,"46355":46356,"46356":46357,"46357":46358,"46358":46359,"46359":46360,"46360":46361,"46361":46362,"46362":46363,"46363":46364,"46364":46365,"46365":46366,"46366":46367,"46367":46368,"46368":46369,"46369":46370,"46370":46371,"46371":46372,"46372":46373,"46373":46374,"46374":46375,"46375":46376,"46376":46377,"46377":46378,"46378":46379,"46379":46380,"46380":46381,"46381":46382,"46382":46383,"46383":46384,"46384":46385,"46385":46386,"46386":46387,"46387":46388,"46388":46389,"46389":46390,"46390":46391,"46391":46392,"46392":46393,"46393":46394,"46394":46395,"46395":46396,"46396":46397,"46397":46398,"46398":46399,"46399":46400,"46400":46401,"46401":46402,"46402":46403,"46403":46404,"46404":46405,"46405":46406,"46406":46407,"46407":46408,"46408":46409,"46409":46410,"46410":46411,"46411":46412,"46412":46413,"46413":46414,"46414":46415,"46415":46416,"46416":46417,"46417":46418,"46418":46419,"46419":46420,"46420":46421,"46421":46422,"46422":46423,"46423":46424,"46424":46425,"46425":46426,"46426":46427,"46427":46428,"46428":46429,"46429":46430,"46430":46431,"46431":46432,"46432":46433,"46433":46434,"46434":46435,"46435":46436,"46436":46437,"46437":46438,"46438":46439,"46439":46440,"46440":46441,"46441":46442,"46442":46443,"46443":46444,"46444":46445,"46445":46446,"46446":46447,"46447":46448,"46448":46449,"46449":46450,"46450":46451,"46451":46452,"46452":46453,"46453":46454,"46454":46455,"46455":46456,"46456":46457,"46457":46458,"46458":46459,"46459":46460,"46460":46461,"46461":46462,"46462":46463,"46463":46464,"46464":46465,"46465":46466,"46466":46467,"46467":46468,"46468":46469,"46469":46470,"46470":46471,"46471":46472,"46472":46473,"46473":46474,"46474":46475,"46475":46476,"46476":46477,"46477":46478,"46478":46479,"46479":46480,"46480":46481,"46481":46482,"46482":46483,"46483":46484,"46484":46485,"46485":46486,"46486":46487,"46487":46488,"46488":46489,"46489":46490,"46490":46491,"46491":46492,"46492":46493,"46493":46494,"46494":46495,"46495":46496,"46496":46497,"46497":46498,"46498":46499,"46499":46500,"46500":46501,"46501":46502,"46502":46503,"46503":46504,"46504":46505,"46505":46506,"46506":46507,"46507":46508,"46508":46509,"46509":46510,"46510":46511,"46511":46512,"46512":46513,"46513":46514,"46514":46515,"46515":46516,"46516":46517,"46517":46518,"46518":46519,"46519":46520,"46520":46521,"46521":46522,"46522":46523,"46523":46524,"46524":46525,"46525":46526,"46526":46527,"46527":46528,"46528":46529,"46529":46530,"46530":46531,"46531":46532,"46532":46533,"46533":46534,"46534":46535,"46535":46536,"46536":46537,"46537":46538,"46538":46539,"46539":46540,"46540":46541,"46541":46542,"46542":46543,"46543":46544,"46544":46545,"46545":46546,"46546":46547,"46547":46548,"46548":46549,"46549":46550,"46550":46551,"46551":46552,"46552":46553,"46553":46554,"46554":46555,"46555":46556,"46556":46557,"46557":46558,"46558":46559,"46559":46560,"46560":46561,"46561":46562,"46562":46563,"46563":46564,"46564":46565,"46565":46566,"46566":46567,"46567":46568,"46568":46569,"46569":46570,"46570":46571,"46571":46572,"46572":46573,"46573":46574,"46574":46575,"46575":46576,"46576":46577,"46577":46578,"46578":46579,"46579":46580,"46580":46581,"46581":46582,"46582":46583,"46583":46584,"46584":46585,"46585":46586,"46586":46587,"46587":46588,"46588":46589,"46589":46590,"46590":46591,"46591":46592,"46592":46593,"46593":46594,"46594":46595,"46595":46596,"46596":46597,"46597":46598,"46598":46599,"46599":46600,"46600":46601,"46601":46602,"46602":46603,"46603":46604,"46604":46605,"46605":46606,"46606":46607,"46607":46608,"46608":46609,"46609":46610,"46610":46611,"46611":46612,"46612":46613,"46613":46614,"46614":46615,"46615":46616,"46616":46617,"46617":46618,"46618":46619,"46619":46620,"46620":46621,"46621":46622,"46622":46623,"46623":46624,"46624":46625,"46625":46626,"46626":46627,"46627":46628,"46628":46629,"46629":46630,"46630":46631,"46631":46632,"46632":46633,"46633":46634,"46634":46635,"46635":46636,"46636":46637,"46637":46638,"46638":46639,"46639":46640,"46640":46641,"46641":46642,"46642":46643,"46643":46644,"46644":46645,"46645":46646,"46646":46647,"46647":46648,"46648":46649,"46649":46650,"46650":46651,"46651":46652,"46652":46653,"46653":46654,"46654":46655,"46655":46656,"46656":46657,"46657":46658,"46658":46659,"46659":46660,"46660":46661,"46661":46662,"46662":46663,"46663":46664,"46664":46665,"46665":46666,"46666":46667,"46667":46668,"46668":46669,"46669":46670,"46670":46671,"46671":46672,"46672":46673,"46673":46674,"46674":46675,"46675":46676,"46676":46677,"46677":46678,"46678":46679,"46679":46680,"46680":46681,"46681":46682,"46682":46683,"46683":46684,"46684":46685,"46685":46686,"46686":46687,"46687":46688,"46688":46689,"46689":46690,"46690":46691,"46691":46692,"46692":46693,"46693":46694,"46694":46695,"46695":46696,"46696":46697,"46697":46698,"46698":46699,"46699":46700,"46700":46701,"46701":46702,"46702":46703,"46703":46704,"46704":46705,"46705":46706,"46706":46707,"46707":46708,"46708":46709,"46709":46710,"46710":46711,"46711":46712,"46712":46713,"46713":46714,"46714":46715,"46715":46716,"46716":46717,"46717":46718,"46718":46719,"46719":46720,"46720":46721,"46721":46722,"46722":46723,"46723":46724,"46724":46725,"46725":46726,"46726":46727,"46727":46728,"46728":46729,"46729":46730,"46730":46731,"46731":46732,"46732":46733,"46733":46734,"46734":46735,"46735":46736,"46736":46737,"46737":46738,"46738":46739,"46739":46740,"46740":46741,"46741":46742,"46742":46743,"46743":46744,"46744":46745,"46745":46746,"46746":46747,"46747":46748,"46748":46749,"46749":46750,"46750":46751,"46751":46752,"46752":46753,"46753":46754,"46754":46755,"46755":46756,"46756":46757,"46757":46758,"46758":46759,"46759":46760,"46760":46761,"46761":46762,"46762":46763,"46763":46764,"46764":46765,"46765":46766,"46766":46767,"46767":46768,"46768":46769,"46769":46770,"46770":46771,"46771":46772,"46772":46773,"46773":46774,"46774":46775,"46775":46776,"46776":46777,"46777":46778,"46778":46779,"46779":46780,"46780":46781,"46781":46782,"46782":46783,"46783":46784,"46784":46785,"46785":46786,"46786":46787,"46787":46788,"46788":46789,"46789":46790,"46790":46791,"46791":46792,"46792":46793,"46793":46794,"46794":46795,"46795":46796,"46796":46797,"46797":46798,"46798":46799,"46799":46800,"46800":46801,"46801":46802,"46802":46803,"46803":46804,"46804":46805,"46805":46806,"46806":46807,"46807":46808,"46808":46809,"46809":46810,"46810":46811,"46811":46812,"46812":46813,"46813":46814,"46814":46815,"46815":46816,"46816":46817,"46817":46818,"46818":46819,"46819":46820,"46820":46821,"46821":46822,"46822":46823,"46823":46824,"46824":46825,"46825":46826,"46826":46827,"46827":46828,"46828":46829,"46829":46830,"46830":46831,"46831":46832,"46832":46833,"46833":46834,"46834":46835,"46835":46836,"46836":46837,"46837":46838,"46838":46839,"46839":46840,"46840":46841,"46841":46842,"46842":46843,"46843":46844,"46844":46845,"46845":46846,"46846":46847,"46847":46848,"46848":46849,"46849":46850,"46850":46851,"46851":46852,"46852":46853,"46853":46854,"46854":46855,"46855":46856,"46856":46857,"46857":46858,"46858":46859,"46859":46860,"46860":46861,"46861":46862,"46862":46863,"46863":46864,"46864":46865,"46865":46866,"46866":46867,"46867":46868,"46868":46869,"46869":46870,"46870":46871,"46871":46872,"46872":46873,"46873":46874,"46874":46875,"46875":46876,"46876":46877,"46877":46878,"46878":46879,"46879":46880,"46880":46881,"46881":46882,"46882":46883,"46883":46884,"46884":46885,"46885":46886,"46886":46887,"46887":46888,"46888":46889,"46889":46890,"46890":46891,"46891":46892,"46892":46893,"46893":46894,"46894":46895,"46895":46896,"46896":46897,"46897":46898,"46898":46899,"46899":46900,"46900":46901,"46901":46902,"46902":46903,"46903":46904,"46904":46905,"46905":46906,"46906":46907,"46907":46908,"46908":46909,"46909":46910,"46910":46911,"46911":46912,"46912":46913,"46913":46914,"46914":46915,"46915":46916,"46916":46917,"46917":46918,"46918":46919,"46919":46920,"46920":46921,"46921":46922,"46922":46923,"46923":46924,"46924":46925,"46925":46926,"46926":46927,"46927":46928,"46928":46929,"46929":46930,"46930":46931,"46931":46932,"46932":46933,"46933":46934,"46934":46935,"46935":46936,"46936":46937,"46937":46938,"46938":46939,"46939":46940,"46940":46941,"46941":46942,"46942":46943,"46943":46944,"46944":46945,"46945":46946,"46946":46947,"46947":46948,"46948":46949,"46949":46950,"46950":46951,"46951":46952,"46952":46953,"46953":46954,"46954":46955,"46955":46956,"46956":46957,"46957":46958,"46958":46959,"46959":46960,"46960":46961,"46961":46962,"46962":46963,"46963":46964,"46964":46965,"46965":46966,"46966":46967,"46967":46968,"46968":46969,"46969":46970,"46970":46971,"46971":46972,"46972":46973,"46973":46974,"46974":46975,"46975":46976,"46976":46977,"46977":46978,"46978":46979,"46979":46980,"46980":46981,"46981":46982,"46982":46983,"46983":46984,"46984":46985,"46985":46986,"46986":46987,"46987":46988,"46988":46989,"46989":46990,"46990":46991,"46991":46992,"46992":46993,"46993":46994,"46994":46995,"46995":46996,"46996":46997,"46997":46998,"46998":46999,"46999":47000,"47000":47001,"47001":47002,"47002":47003,"47003":47004,"47004":47005,"47005":47006,"47006":47007,"47007":47008,"47008":47009,"47009":47010,"47010":47011,"47011":47012,"47012":47013,"47013":47014,"47014":47015,"47015":47016,"47016":47017,"47017":47018,"47018":47019,"47019":47020,"47020":47021,"47021":47022,"47022":47023,"47023":47024,"47024":47025,"47025":47026,"47026":47027,"47027":47028,"47028":47029,"47029":47030,"47030":47031,"47031":47032,"47032":47033,"47033":47034,"47034":47035,"47035":47036,"47036":47037,"47037":47038,"47038":47039,"47039":47040,"47040":47041,"47041":47042,"47042":47043,"47043":47044,"47044":47045,"47045":47046,"47046":47047,"47047":47048,"47048":47049,"47049":47050,"47050":47051,"47051":47052,"47052":47053,"47053":47054,"47054":47055,"47055":47056,"47056":47057,"47057":47058,"47058":47059,"47059":47060,"47060":47061,"47061":47062,"47062":47063,"47063":47064,"47064":47065,"47065":47066,"47066":47067,"47067":47068,"47068":47069,"47069":47070,"47070":47071,"47071":47072,"47072":47073,"47073":47074,"47074":47075,"47075":47076,"47076":47077,"47077":47078,"47078":47079,"47079":47080,"47080":47081,"47081":47082,"47082":47083,"47083":47084,"47084":47085,"47085":47086,"47086":47087,"47087":47088,"47088":47089,"47089":47090,"47090":47091,"47091":47092,"47092":47093,"47093":47094,"47094":47095,"47095":47096,"47096":47097,"47097":47098,"47098":47099,"47099":47100,"47100":47101,"47101":47102,"47102":47103,"47103":47104,"47104":47105,"47105":47106,"47106":47107,"47107":47108,"47108":47109,"47109":47110,"47110":47111,"47111":47112,"47112":47113,"47113":47114,"47114":47115,"47115":47116,"47116":47117,"47117":47118,"47118":47119,"47119":47120,"47120":47121,"47121":47122,"47122":47123,"47123":47124,"47124":47125,"47125":47126,"47126":47127,"47127":47128,"47128":47129,"47129":47130,"47130":47131,"47131":47132,"47132":47133,"47133":47134,"47134":47135,"47135":47136,"47136":47137,"47137":47138,"47138":47139,"47139":47140,"47140":47141,"47141":47142,"47142":47143,"47143":47144,"47144":47145,"47145":47146,"47146":47147,"47147":47148,"47148":47149,"47149":47150,"47150":47151,"47151":47152,"47152":47153,"47153":47154,"47154":47155,"47155":47156,"47156":47157,"47157":47158,"47158":47159,"47159":47160,"47160":47161,"47161":47162,"47162":47163,"47163":47164,"47164":47165,"47165":47166,"47166":47167,"47167":47168,"47168":47169,"47169":47170,"47170":47171,"47171":47172,"47172":47173,"47173":47174,"47174":47175,"47175":47176,"47176":47177,"47177":47178,"47178":47179,"47179":47180,"47180":47181,"47181":47182,"47182":47183,"47183":47184,"47184":47185,"47185":47186,"47186":47187,"47187":47188,"47188":47189,"47189":47190,"47190":47191,"47191":47192,"47192":47193,"47193":47194,"47194":47195,"47195":47196,"47196":47197,"47197":47198,"47198":47199,"47199":47200,"47200":47201,"47201":47202,"47202":47203,"47203":47204,"47204":47205,"47205":47206,"47206":47207,"47207":47208,"47208":47209,"47209":47210,"47210":47211,"47211":47212,"47212":47213,"47213":47214,"47214":47215,"47215":47216,"47216":47217,"47217":47218,"47218":47219,"47219":47220,"47220":47221,"47221":47222,"47222":47223,"47223":47224,"47224":47225,"47225":47226,"47226":47227,"47227":47228,"47228":47229,"47229":47230,"47230":47231,"47231":47232,"47232":47233,"47233":47234,"47234":47235,"47235":47236,"47236":47237,"47237":47238,"47238":47239,"47239":47240,"47240":47241,"47241":47242,"47242":47243,"47243":47244,"47244":47245,"47245":47246,"47246":47247,"47247":47248,"47248":47249,"47249":47250,"47250":47251,"47251":47252,"47252":47253,"47253":47254,"47254":47255,"47255":47256,"47256":47257,"47257":47258,"47258":47259,"47259":47260,"47260":47261,"47261":47262,"47262":47263,"47263":47264,"47264":47265,"47265":47266,"47266":47267,"47267":47268,"47268":47269,"47269":47270,"47270":47271,"47271":47272,"47272":47273,"47273":47274,"47274":47275,"47275":47276,"47276":47277,"47277":47278,"47278":47279,"47279":47280,"47280":47281,"47281":47282,"47282":47283,"47283":47284,"47284":47285,"47285":47286,"47286":47287,"47287":47288,"47288":47289,"47289":47290,"47290":47291,"47291":47292,"47292":47293,"47293":47294,"47294":47295,"47295":47296,"47296":47297,"47297":47298,"47298":47299,"47299":47300,"47300":47301,"47301":47302,"47302":47303,"47303":47304,"47304":47305,"47305":47306,"47306":47307,"47307":47308,"47308":47309,"47309":47310,"47310":47311,"47311":47312,"47312":47313,"47313":47314,"47314":47315,"47315":47316,"47316":47317,"47317":47318,"47318":47319,"47319":47320,"47320":47321,"47321":47322,"47322":47323,"47323":47324,"47324":47325,"47325":47326,"47326":47327,"47327":47328,"47328":47329,"47329":47330,"47330":47331,"47331":47332,"47332":47333,"47333":47334,"47334":47335,"47335":47336,"47336":47337,"47337":47338,"47338":47339,"47339":47340,"47340":47341,"47341":47342,"47342":47343,"47343":47344,"47344":47345,"47345":47346,"47346":47347,"47347":47348,"47348":47349,"47349":47350,"47350":47351,"47351":47352,"47352":47353,"47353":47354,"47354":47355,"47355":47356,"47356":47357,"47357":47358,"47358":47359,"47359":47360,"47360":47361,"47361":47362,"47362":47363,"47363":47364,"47364":47365,"47365":47366,"47366":47367,"47367":47368,"47368":47369,"47369":47370,"47370":47371,"47371":47372,"47372":47373,"47373":47374,"47374":47375,"47375":47376,"47376":47377,"47377":47378,"47378":47379,"47379":47380,"47380":47381,"47381":47382,"47382":47383,"47383":47384,"47384":47385,"47385":47386,"47386":47387,"47387":47388,"47388":47389,"47389":47390,"47390":47391,"47391":47392,"47392":47393,"47393":47394,"47394":47395,"47395":47396,"47396":47397,"47397":47398,"47398":47399,"47399":47400,"47400":47401,"47401":47402,"47402":47403,"47403":47404,"47404":47405,"47405":47406,"47406":47407,"47407":47408,"47408":47409,"47409":47410,"47410":47411,"47411":47412,"47412":47413,"47413":47414,"47414":47415,"47415":47416,"47416":47417,"47417":47418,"47418":47419,"47419":47420,"47420":47421,"47421":47422,"47422":47423,"47423":47424,"47424":47425,"47425":47426,"47426":47427,"47427":47428,"47428":47429,"47429":47430,"47430":47431,"47431":47432,"47432":47433,"47433":47434,"47434":47435,"47435":47436,"47436":47437,"47437":47438,"47438":47439,"47439":47440,"47440":47441,"47441":47442,"47442":47443,"47443":47444,"47444":47445,"47445":47446,"47446":47447,"47447":47448,"47448":47449,"47449":47450,"47450":47451,"47451":47452,"47452":47453,"47453":47454,"47454":47455,"47455":47456,"47456":47457,"47457":47458,"47458":47459,"47459":47460,"47460":47461,"47461":47462,"47462":47463,"47463":47464,"47464":47465,"47465":47466,"47466":47467,"47467":47468,"47468":47469,"47469":47470,"47470":47471,"47471":47472,"47472":47473,"47473":47474,"47474":47475,"47475":47476,"47476":47477,"47477":47478,"47478":47479,"47479":47480,"47480":47481,"47481":47482,"47482":47483,"47483":47484,"47484":47485,"47485":47486,"47486":47487,"47487":47488,"47488":47489,"47489":47490,"47490":47491,"47491":47492,"47492":47493,"47493":47494,"47494":47495,"47495":47496,"47496":47497,"47497":47498,"47498":47499,"47499":47500,"47500":47501,"47501":47502,"47502":47503,"47503":47504,"47504":47505,"47505":47506,"47506":47507,"47507":47508,"47508":47509,"47509":47510,"47510":47511,"47511":47512,"47512":47513,"47513":47514,"47514":47515,"47515":47516,"47516":47517,"47517":47518,"47518":47519,"47519":47520,"47520":47521,"47521":47522,"47522":47523,"47523":47524,"47524":47525,"47525":47526,"47526":47527,"47527":47528,"47528":47529,"47529":47530,"47530":47531,"47531":47532,"47532":47533,"47533":47534,"47534":47535,"47535":47536,"47536":47537,"47537":47538,"47538":47539,"47539":47540,"47540":47541,"47541":47542,"47542":47543,"47543":47544,"47544":47545,"47545":47546,"47546":47547,"47547":47548,"47548":47549,"47549":47550,"47550":47551,"47551":47552,"47552":47553,"47553":47554,"47554":47555,"47555":47556,"47556":47557,"47557":47558,"47558":47559,"47559":47560,"47560":47561,"47561":47562,"47562":47563,"47563":47564,"47564":47565,"47565":47566,"47566":47567,"47567":47568,"47568":47569,"47569":47570,"47570":47571,"47571":47572,"47572":47573,"47573":47574,"47574":47575,"47575":47576,"47576":47577,"47577":47578,"47578":47579,"47579":47580,"47580":47581,"47581":47582,"47582":47583,"47583":47584,"47584":47585,"47585":47586,"47586":47587,"47587":47588,"47588":47589,"47589":47590,"47590":47591,"47591":47592,"47592":47593,"47593":47594,"47594":47595,"47595":47596,"47596":47597,"47597":47598,"47598":47599,"47599":47600,"47600":47601,"47601":47602,"47602":47603,"47603":47604,"47604":47605,"47605":47606,"47606":47607,"47607":47608,"47608":47609,"47609":47610,"47610":47611,"47611":47612,"47612":47613,"47613":47614,"47614":47615,"47615":47616,"47616":47617,"47617":47618,"47618":47619,"47619":47620,"47620":47621,"47621":47622,"47622":47623,"47623":47624,"47624":47625,"47625":47626,"47626":47627,"47627":47628,"47628":47629,"47629":47630,"47630":47631,"47631":47632,"47632":47633,"47633":47634,"47634":47635,"47635":47636,"47636":47637,"47637":47638,"47638":47639,"47639":47640,"47640":47641,"47641":47642,"47642":47643,"47643":47644,"47644":47645,"47645":47646,"47646":47647,"47647":47648,"47648":47649,"47649":47650,"47650":47651,"47651":47652,"47652":47653,"47653":47654,"47654":47655,"47655":47656,"47656":47657,"47657":47658,"47658":47659,"47659":47660,"47660":47661,"47661":47662,"47662":47663,"47663":47664,"47664":47665,"47665":47666,"47666":47667,"47667":47668,"47668":47669,"47669":47670,"47670":47671,"47671":47672,"47672":47673,"47673":47674,"47674":47675,"47675":47676,"47676":47677,"47677":47678,"47678":47679,"47679":47680,"47680":47681,"47681":47682,"47682":47683,"47683":47684,"47684":47685,"47685":47686,"47686":47687,"47687":47688,"47688":47689,"47689":47690,"47690":47691,"47691":47692,"47692":47693,"47693":47694,"47694":47695,"47695":47696,"47696":47697,"47697":47698,"47698":47699,"47699":47700,"47700":47701,"47701":47702,"47702":47703,"47703":47704,"47704":47705,"47705":47706,"47706":47707,"47707":47708,"47708":47709,"47709":47710,"47710":47711,"47711":47712,"47712":47713,"47713":47714,"47714":47715,"47715":47716,"47716":47717,"47717":47718,"47718":47719,"47719":47720,"47720":47721,"47721":47722,"47722":47723,"47723":47724,"47724":47725,"47725":47726,"47726":47727,"47727":47728,"47728":47729,"47729":47730,"47730":47731,"47731":47732,"47732":47733,"47733":47734,"47734":47735,"47735":47736,"47736":47737,"47737":47738,"47738":47739,"47739":47740,"47740":47741,"47741":47742,"47742":47743,"47743":47744,"47744":47745,"47745":47746,"47746":47747,"47747":47748,"47748":47749,"47749":47750,"47750":47751,"47751":47752,"47752":47753,"47753":47754,"47754":47755,"47755":47756,"47756":47757,"47757":47758,"47758":47759,"47759":47760,"47760":47761,"47761":47762,"47762":47763,"47763":47764,"47764":47765,"47765":47766,"47766":47767,"47767":47768,"47768":47769,"47769":47770,"47770":47771,"47771":47772,"47772":47773,"47773":47774,"47774":47775,"47775":47776,"47776":47777,"47777":47778,"47778":47779,"47779":47780,"47780":47781,"47781":47782,"47782":47783,"47783":47784,"47784":47785,"47785":47786,"47786":47787,"47787":47788,"47788":47789,"47789":47790,"47790":47791,"47791":47792,"47792":47793,"47793":47794,"47794":47795,"47795":47796,"47796":47797,"47797":47798,"47798":47799,"47799":47800,"47800":47801,"47801":47802,"47802":47803,"47803":47804,"47804":47805,"47805":47806,"47806":47807,"47807":47808,"47808":47809,"47809":47810,"47810":47811,"47811":47812,"47812":47813,"47813":47814,"47814":47815,"47815":47816,"47816":47817,"47817":47818,"47818":47819,"47819":47820,"47820":47821,"47821":47822,"47822":47823,"47823":47824,"47824":47825,"47825":47826,"47826":47827,"47827":47828,"47828":47829,"47829":47830,"47830":47831,"47831":47832,"47832":47833,"47833":47834,"47834":47835,"47835":47836,"47836":47837,"47837":47838,"47838":47839,"47839":47840,"47840":47841,"47841":47842,"47842":47843,"47843":47844,"47844":47845,"47845":47846,"47846":47847,"47847":47848,"47848":47849,"47849":47850,"47850":47851,"47851":47852,"47852":47853,"47853":47854,"47854":47855,"47855":47856,"47856":47857,"47857":47858,"47858":47859,"47859":47860,"47860":47861,"47861":47862,"47862":47863,"47863":47864,"47864":47865,"47865":47866,"47866":47867,"47867":47868,"47868":47869,"47869":47870,"47870":47871,"47871":47872,"47872":47873,"47873":47874,"47874":47875,"47875":47876,"47876":47877,"47877":47878,"47878":47879,"47879":47880,"47880":47881,"47881":47882,"47882":47883,"47883":47884,"47884":47885,"47885":47886,"47886":47887,"47887":47888,"47888":47889,"47889":47890,"47890":47891,"47891":47892,"47892":47893,"47893":47894,"47894":47895,"47895":47896,"47896":47897,"47897":47898,"47898":47899,"47899":47900,"47900":47901,"47901":47902,"47902":47903,"47903":47904,"47904":47905,"47905":47906,"47906":47907,"47907":47908,"47908":47909,"47909":47910,"47910":47911,"47911":47912,"47912":47913,"47913":47914,"47914":47915,"47915":47916,"47916":47917,"47917":47918,"47918":47919,"47919":47920,"47920":47921,"47921":47922,"47922":47923,"47923":47924,"47924":47925,"47925":47926,"47926":47927,"47927":47928,"47928":47929,"47929":47930,"47930":47931,"47931":47932,"47932":47933,"47933":47934,"47934":47935,"47935":47936,"47936":47937,"47937":47938,"47938":47939,"47939":47940,"47940":47941,"47941":47942,"47942":47943,"47943":47944,"47944":47945,"47945":47946,"47946":47947,"47947":47948,"47948":47949,"47949":47950,"47950":47951,"47951":47952,"47952":47953,"47953":47954,"47954":47955,"47955":47956,"47956":47957,"47957":47958,"47958":47959,"47959":47960,"47960":47961,"47961":47962,"47962":47963,"47963":47964,"47964":47965,"47965":47966,"47966":47967,"47967":47968,"47968":47969,"47969":47970,"47970":47971,"47971":47972,"47972":47973,"47973":47974,"47974":47975,"47975":47976,"47976":47977,"47977":47978,"47978":47979,"47979":47980,"47980":47981,"47981":47982,"47982":47983,"47983":47984,"47984":47985,"47985":47986,"47986":47987,"47987":47988,"47988":47989,"47989":47990,"47990":47991,"47991":47992,"47992":47993,"47993":47994,"47994":47995,"47995":47996,"47996":47997,"47997":47998,"47998":47999,"47999":48000,"48000":48001,"48001":48002,"48002":48003,"48003":48004,"48004":48005,"48005":48006,"48006":48007,"48007":48008,"48008":48009,"48009":48010,"48010":48011,"48011":48012,"48012":48013,"48013":48014,"48014":48015,"48015":48016,"48016":48017,"48017":48018,"48018":48019,"48019":48020,"48020":48021,"48021":48022,"48022":48023,"48023":48024,"48024":48025,"48025":48026,"48026":48027,"48027":48028,"48028":48029,"48029":48030,"48030":48031,"48031":48032,"48032":48033,"48033":48034,"48034":48035,"48035":48036,"48036":48037,"48037":48038,"48038":48039,"48039":48040,"48040":48041,"48041":48042,"48042":48043,"48043":48044,"48044":48045,"48045":48046,"48046":48047,"48047":48048,"48048":48049,"48049":48050,"48050":48051,"48051":48052,"48052":48053,"48053":48054,"48054":48055,"48055":48056,"48056":48057,"48057":48058,"48058":48059,"48059":48060,"48060":48061,"48061":48062,"48062":48063,"48063":48064,"48064":48065,"48065":48066,"48066":48067,"48067":48068,"48068":48069,"48069":48070,"48070":48071,"48071":48072,"48072":48073,"48073":48074,"48074":48075,"48075":48076,"48076":48077,"48077":48078,"48078":48079,"48079":48080,"48080":48081,"48081":48082,"48082":48083,"48083":48084,"48084":48085,"48085":48086,"48086":48087,"48087":48088,"48088":48089,"48089":48090,"48090":48091,"48091":48092,"48092":48093,"48093":48094,"48094":48095,"48095":48096,"48096":48097,"48097":48098,"48098":48099,"48099":48100,"48100":48101,"48101":48102,"48102":48103,"48103":48104,"48104":48105,"48105":48106,"48106":48107,"48107":48108,"48108":48109,"48109":48110,"48110":48111,"48111":48112,"48112":48113,"48113":48114,"48114":48115,"48115":48116,"48116":48117,"48117":48118,"48118":48119,"48119":48120,"48120":48121,"48121":48122,"48122":48123,"48123":48124,"48124":48125,"48125":48126,"48126":48127,"48127":48128,"48128":48129,"48129":48130,"48130":48131,"48131":48132,"48132":48133,"48133":48134,"48134":48135,"48135":48136,"48136":48137,"48137":48138,"48138":48139,"48139":48140,"48140":48141,"48141":48142,"48142":48143,"48143":48144,"48144":48145,"48145":48146,"48146":48147,"48147":48148,"48148":48149,"48149":48150,"48150":48151,"48151":48152,"48152":48153,"48153":48154,"48154":48155,"48155":48156,"48156":48157,"48157":48158,"48158":48159,"48159":48160,"48160":48161,"48161":48162,"48162":48163,"48163":48164,"48164":48165,"48165":48166,"48166":48167,"48167":48168,"48168":48169,"48169":48170,"48170":48171,"48171":48172,"48172":48173,"48173":48174,"48174":48175,"48175":48176,"48176":48177,"48177":48178,"48178":48179,"48179":48180,"48180":48181,"48181":48182,"48182":48183,"48183":48184,"48184":48185,"48185":48186,"48186":48187,"48187":48188,"48188":48189,"48189":48190,"48190":48191,"48191":48192,"48192":48193,"48193":48194,"48194":48195,"48195":48196,"48196":48197,"48197":48198,"48198":48199,"48199":48200,"48200":48201,"48201":48202,"48202":48203,"48203":48204,"48204":48205,"48205":48206,"48206":48207,"48207":48208,"48208":48209,"48209":48210,"48210":48211,"48211":48212,"48212":48213,"48213":48214,"48214":48215,"48215":48216,"48216":48217,"48217":48218,"48218":48219,"48219":48220,"48220":48221,"48221":48222,"48222":48223,"48223":48224,"48224":48225,"48225":48226,"48226":48227,"48227":48228,"48228":48229,"48229":48230,"48230":48231,"48231":48232,"48232":48233,"48233":48234,"48234":48235,"48235":48236,"48236":48237,"48237":48238,"48238":48239,"48239":48240,"48240":48241,"48241":48242,"48242":48243,"48243":48244,"48244":48245,"48245":48246,"48246":48247,"48247":48248,"48248":48249,"48249":48250,"48250":48251,"48251":48252,"48252":48253,"48253":48254,"48254":48255,"48255":48256,"48256":48257,"48257":48258,"48258":48259,"48259":48260,"48260":48261,"48261":48262,"48262":48263,"48263":48264,"48264":48265,"48265":48266,"48266":48267,"48267":48268,"48268":48269,"48269":48270,"48270":48271,"48271":48272,"48272":48273,"48273":48274,"48274":48275,"48275":48276,"48276":48277,"48277":48278,"48278":48279,"48279":48280,"48280":48281,"48281":48282,"48282":48283,"48283":48284,"48284":48285,"48285":48286,"48286":48287,"48287":48288,"48288":48289,"48289":48290,"48290":48291,"48291":48292,"48292":48293,"48293":48294,"48294":48295,"48295":48296,"48296":48297,"48297":48298,"48298":48299,"48299":48300,"48300":48301,"48301":48302,"48302":48303,"48303":48304,"48304":48305,"48305":48306,"48306":48307,"48307":48308,"48308":48309,"48309":48310,"48310":48311,"48311":48312,"48312":48313,"48313":48314,"48314":48315,"48315":48316,"48316":48317,"48317":48318,"48318":48319,"48319":48320,"48320":48321,"48321":48322,"48322":48323,"48323":48324,"48324":48325,"48325":48326,"48326":48327,"48327":48328,"48328":48329,"48329":48330,"48330":48331,"48331":48332,"48332":48333,"48333":48334,"48334":48335,"48335":48336,"48336":48337,"48337":48338,"48338":48339,"48339":48340,"48340":48341,"48341":48342,"48342":48343,"48343":48344,"48344":48345,"48345":48346,"48346":48347,"48347":48348,"48348":48349,"48349":48350,"48350":48351,"48351":48352,"48352":48353,"48353":48354,"48354":48355,"48355":48356,"48356":48357,"48357":48358,"48358":48359,"48359":48360,"48360":48361,"48361":48362,"48362":48363,"48363":48364,"48364":48365,"48365":48366,"48366":48367,"48367":48368,"48368":48369,"48369":48370,"48370":48371,"48371":48372,"48372":48373,"48373":48374,"48374":48375,"48375":48376,"48376":48377,"48377":48378,"48378":48379,"48379":48380,"48380":48381,"48381":48382,"48382":48383,"48383":48384,"48384":48385,"48385":48386,"48386":48387,"48387":48388,"48388":48389,"48389":48390,"48390":48391,"48391":48392,"48392":48393,"48393":48394,"48394":48395,"48395":48396,"48396":48397,"48397":48398,"48398":48399,"48399":48400,"48400":48401,"48401":48402,"48402":48403,"48403":48404,"48404":48405,"48405":48406,"48406":48407,"48407":48408,"48408":48409,"48409":48410,"48410":48411,"48411":48412,"48412":48413,"48413":48414,"48414":48415,"48415":48416,"48416":48417,"48417":48418,"48418":48419,"48419":48420,"48420":48421,"48421":48422,"48422":48423,"48423":48424,"48424":48425,"48425":48426,"48426":48427,"48427":48428,"48428":48429,"48429":48430,"48430":48431,"48431":48432,"48432":48433,"48433":48434,"48434":48435,"48435":48436,"48436":48437,"48437":48438,"48438":48439,"48439":48440,"48440":48441,"48441":48442,"48442":48443,"48443":48444,"48444":48445,"48445":48446,"48446":48447,"48447":48448,"48448":48449,"48449":48450,"48450":48451,"48451":48452,"48452":48453,"48453":48454,"48454":48455,"48455":48456,"48456":48457,"48457":48458,"48458":48459,"48459":48460,"48460":48461,"48461":48462,"48462":48463,"48463":48464,"48464":48465,"48465":48466,"48466":48467,"48467":48468,"48468":48469,"48469":48470,"48470":48471,"48471":48472,"48472":48473,"48473":48474,"48474":48475,"48475":48476,"48476":48477,"48477":48478,"48478":48479,"48479":48480,"48480":48481,"48481":48482,"48482":48483,"48483":48484,"48484":48485,"48485":48486,"48486":48487,"48487":48488,"48488":48489,"48489":48490,"48490":48491,"48491":48492,"48492":48493,"48493":48494,"48494":48495,"48495":48496,"48496":48497,"48497":48498,"48498":48499,"48499":48500,"48500":48501,"48501":48502,"48502":48503,"48503":48504,"48504":48505,"48505":48506,"48506":48507,"48507":48508,"48508":48509,"48509":48510,"48510":48511,"48511":48512,"48512":48513,"48513":48514,"48514":48515,"48515":48516,"48516":48517,"48517":48518,"48518":48519,"48519":48520,"48520":48521,"48521":48522,"48522":48523,"48523":48524,"48524":48525,"48525":48526,"48526":48527,"48527":48528,"48528":48529,"48529":48530,"48530":48531,"48531":48532,"48532":48533,"48533":48534,"48534":48535,"48535":48536,"48536":48537,"48537":48538,"48538":48539,"48539":48540,"48540":48541,"48541":48542,"48542":48543,"48543":48544,"48544":48545,"48545":48546,"48546":48547,"48547":48548,"48548":48549,"48549":48550,"48550":48551,"48551":48552,"48552":48553,"48553":48554,"48554":48555,"48555":48556,"48556":48557,"48557":48558,"48558":48559,"48559":48560,"48560":48561,"48561":48562,"48562":48563,"48563":48564,"48564":48565,"48565":48566,"48566":48567,"48567":48568,"48568":48569,"48569":48570,"48570":48571,"48571":48572,"48572":48573,"48573":48574,"48574":48575,"48575":48576,"48576":48577,"48577":48578,"48578":48579,"48579":48580,"48580":48581,"48581":48582,"48582":48583,"48583":48584,"48584":48585,"48585":48586,"48586":48587,"48587":48588,"48588":48589,"48589":48590,"48590":48591,"48591":48592,"48592":48593,"48593":48594,"48594":48595,"48595":48596,"48596":48597,"48597":48598,"48598":48599,"48599":48600,"48600":48601,"48601":48602,"48602":48603,"48603":48604,"48604":48605,"48605":48606,"48606":48607,"48607":48608,"48608":48609,"48609":48610,"48610":48611,"48611":48612,"48612":48613,"48613":48614,"48614":48615,"48615":48616,"48616":48617,"48617":48618,"48618":48619,"48619":48620,"48620":48621,"48621":48622,"48622":48623,"48623":48624,"48624":48625,"48625":48626,"48626":48627,"48627":48628,"48628":48629,"48629":48630,"48630":48631,"48631":48632,"48632":48633,"48633":48634,"48634":48635,"48635":48636,"48636":48637,"48637":48638,"48638":48639,"48639":48640,"48640":48641,"48641":48642,"48642":48643,"48643":48644,"48644":48645,"48645":48646,"48646":48647,"48647":48648,"48648":48649,"48649":48650,"48650":48651,"48651":48652,"48652":48653,"48653":48654,"48654":48655,"48655":48656,"48656":48657,"48657":48658,"48658":48659,"48659":48660,"48660":48661,"48661":48662,"48662":48663,"48663":48664,"48664":48665,"48665":48666,"48666":48667,"48667":48668,"48668":48669,"48669":48670,"48670":48671,"48671":48672,"48672":48673,"48673":48674,"48674":48675,"48675":48676,"48676":48677,"48677":48678,"48678":48679,"48679":48680,"48680":48681,"48681":48682,"48682":48683,"48683":48684,"48684":48685,"48685":48686,"48686":48687,"48687":48688,"48688":48689,"48689":48690,"48690":48691,"48691":48692,"48692":48693,"48693":48694,"48694":48695,"48695":48696,"48696":48697,"48697":48698,"48698":48699,"48699":48700,"48700":48701,"48701":48702,"48702":48703,"48703":48704,"48704":48705,"48705":48706,"48706":48707,"48707":48708,"48708":48709,"48709":48710,"48710":48711,"48711":48712,"48712":48713,"48713":48714,"48714":48715,"48715":48716,"48716":48717,"48717":48718,"48718":48719,"48719":48720,"48720":48721,"48721":48722,"48722":48723,"48723":48724,"48724":48725,"48725":48726,"48726":48727,"48727":48728,"48728":48729,"48729":48730,"48730":48731,"48731":48732,"48732":48733,"48733":48734,"48734":48735,"48735":48736,"48736":48737,"48737":48738,"48738":48739,"48739":48740,"48740":48741,"48741":48742,"48742":48743,"48743":48744,"48744":48745,"48745":48746,"48746":48747,"48747":48748,"48748":48749,"48749":48750,"48750":48751,"48751":48752,"48752":48753,"48753":48754,"48754":48755,"48755":48756,"48756":48757,"48757":48758,"48758":48759,"48759":48760,"48760":48761,"48761":48762,"48762":48763,"48763":48764,"48764":48765,"48765":48766,"48766":48767,"48767":48768,"48768":48769,"48769":48770,"48770":48771,"48771":48772,"48772":48773,"48773":48774,"48774":48775,"48775":48776,"48776":48777,"48777":48778,"48778":48779,"48779":48780,"48780":48781,"48781":48782,"48782":48783,"48783":48784,"48784":48785,"48785":48786,"48786":48787,"48787":48788,"48788":48789,"48789":48790,"48790":48791,"48791":48792,"48792":48793,"48793":48794,"48794":48795,"48795":48796,"48796":48797,"48797":48798,"48798":48799,"48799":48800,"48800":48801,"48801":48802,"48802":48803,"48803":48804,"48804":48805,"48805":48806,"48806":48807,"48807":48808,"48808":48809,"48809":48810,"48810":48811,"48811":48812,"48812":48813,"48813":48814,"48814":48815,"48815":48816,"48816":48817,"48817":48818,"48818":48819,"48819":48820,"48820":48821,"48821":48822,"48822":48823,"48823":48824,"48824":48825,"48825":48826,"48826":48827,"48827":48828,"48828":48829,"48829":48830,"48830":48831,"48831":48832,"48832":48833,"48833":48834,"48834":48835,"48835":48836,"48836":48837,"48837":48838,"48838":48839,"48839":48840,"48840":48841,"48841":48842,"48842":48843,"48843":48844,"48844":48845,"48845":48846,"48846":48847,"48847":48848,"48848":48849,"48849":48850,"48850":48851,"48851":48852,"48852":48853,"48853":48854,"48854":48855,"48855":48856,"48856":48857,"48857":48858,"48858":48859,"48859":48860,"48860":48861,"48861":48862,"48862":48863,"48863":48864,"48864":48865,"48865":48866,"48866":48867,"48867":48868,"48868":48869,"48869":48870,"48870":48871,"48871":48872,"48872":48873,"48873":48874,"48874":48875,"48875":48876,"48876":48877,"48877":48878,"48878":48879,"48879":48880,"48880":48881,"48881":48882,"48882":48883,"48883":48884,"48884":48885,"48885":48886,"48886":48887,"48887":48888,"48888":48889,"48889":48890,"48890":48891,"48891":48892,"48892":48893,"48893":48894,"48894":48895,"48895":48896,"48896":48897,"48897":48898,"48898":48899,"48899":48900,"48900":48901,"48901":48902,"48902":48903,"48903":48904,"48904":48905,"48905":48906,"48906":48907,"48907":48908,"48908":48909,"48909":48910,"48910":48911,"48911":48912,"48912":48913,"48913":48914,"48914":48915,"48915":48916,"48916":48917,"48917":48918,"48918":48919,"48919":48920,"48920":48921,"48921":48922,"48922":48923,"48923":48924,"48924":48925,"48925":48926,"48926":48927,"48927":48928,"48928":48929,"48929":48930,"48930":48931,"48931":48932,"48932":48933,"48933":48934,"48934":48935,"48935":48936,"48936":48937,"48937":48938,"48938":48939,"48939":48940,"48940":48941,"48941":48942,"48942":48943,"48943":48944,"48944":48945,"48945":48946,"48946":48947,"48947":48948,"48948":48949,"48949":48950,"48950":48951,"48951":48952,"48952":48953,"48953":48954,"48954":48955,"48955":48956,"48956":48957,"48957":48958,"48958":48959,"48959":48960,"48960":48961,"48961":48962,"48962":48963,"48963":48964,"48964":48965,"48965":48966,"48966":48967,"48967":48968,"48968":48969,"48969":48970,"48970":48971,"48971":48972,"48972":48973,"48973":48974,"48974":48975,"48975":48976,"48976":48977,"48977":48978,"48978":48979,"48979":48980,"48980":48981,"48981":48982,"48982":48983,"48983":48984,"48984":48985,"48985":48986,"48986":48987,"48987":48988,"48988":48989,"48989":48990,"48990":48991,"48991":48992,"48992":48993,"48993":48994,"48994":48995,"48995":48996,"48996":48997,"48997":48998,"48998":48999,"48999":49000,"49000":49001,"49001":49002,"49002":49003,"49003":49004,"49004":49005,"49005":49006,"49006":49007,"49007":49008,"49008":49009,"49009":49010,"49010":49011,"49011":49012,"49012":49013,"49013":49014,"49014":49015,"49015":49016,"49016":49017,"49017":49018,"49018":49019,"49019":49020,"49020":49021,"49021":49022,"49022":49023,"49023":49024,"49024":49025,"49025":49026,"49026":49027,"49027":49028,"49028":49029,"49029":49030,"49030":49031,"49031":49032,"49032":49033,"49033":49034,"49034":49035,"49035":49036,"49036":49037,"49037":49038,"49038":49039,"49039":49040,"49040":49041,"49041":49042,"49042":49043,"49043":49044,"49044":49045,"49045":49046,"49046":49047,"49047":49048,"49048":49049,"49049":49050,"49050":49051,"49051":49052,"49052":49053,"49053":49054,"49054":49055,"49055":49056,"49056":49057,"49057":49058,"49058":49059,"49059":49060,"49060":49061,"49061":49062,"49062":49063,"49063":49064,"49064":49065,"49065":49066,"49066":49067,"49067":49068,"49068":49069,"49069":49070,"49070":49071,"49071":49072,"49072":49073,"49073":49074,"49074":49075,"49075":49076,"49076":49077,"49077":49078,"49078":49079,"49079":49080,"49080":49081,"49081":49082,"49082":49083,"49083":49084,"49084":49085,"49085":49086,"49086":49087,"49087":49088,"49088":49089,"49089":49090,"49090":49091,"49091":49092,"49092":49093,"49093":49094,"49094":49095,"49095":49096,"49096":49097,"49097":49098,"49098":49099,"49099":49100,"49100":49101,"49101":49102,"49102":49103,"49103":49104,"49104":49105,"49105":49106,"49106":49107,"49107":49108,"49108":49109,"49109":49110,"49110":49111,"49111":49112,"49112":49113,"49113":49114,"49114":49115,"49115":49116,"49116":49117,"49117":49118,"49118":49119,"49119":49120,"49120":49121,"49121":49122,"49122":49123,"49123":49124,"49124":49125,"49125":49126,"49126":49127,"49127":49128,"49128":49129,"49129":49130,"49130":49131,"49131":49132,"49132":49133,"49133":49134,"49134":49135,"49135":49136,"49136":49137,"49137":49138,"49138":49139,"49139":49140,"49140":49141,"49141":49142,"49142":49143,"49143":49144,"49144":49145,"49145":49146,"49146":49147,"49147":49148,"49148":49149,"49149":49150,"49150":49151,"49151":49152,"49152":49153,"49153":49154,"49154":49155,"49155":49156,"49156":49157,"49157":49158,"49158":49159,"49159":49160,"49160":49161,"49161":49162,"49162":49163,"49163":49164,"49164":49165,"49165":49166,"49166":49167,"49167":49168,"49168":49169,"49169":49170,"49170":49171,"49171":49172,"49172":49173,"49173":49174,"49174":49175,"49175":49176,"49176":49177,"49177":49178,"49178":49179,"49179":49180,"49180":49181,"49181":49182,"49182":49183,"49183":49184,"49184":49185,"49185":49186,"49186":49187,"49187":49188,"49188":49189,"49189":49190,"49190":49191,"49191":49192,"49192":49193,"49193":49194,"49194":49195,"49195":49196,"49196":49197,"49197":49198,"49198":49199,"49199":49200,"49200":49201,"49201":49202,"49202":49203,"49203":49204,"49204":49205,"49205":49206,"49206":49207,"49207":49208,"49208":49209,"49209":49210,"49210":49211,"49211":49212,"49212":49213,"49213":49214,"49214":49215,"49215":49216,"49216":49217,"49217":49218,"49218":49219,"49219":49220,"49220":49221,"49221":49222,"49222":49223,"49223":49224,"49224":49225,"49225":49226,"49226":49227,"49227":49228,"49228":49229,"49229":49230,"49230":49231,"49231":49232,"49232":49233,"49233":49234,"49234":49235,"49235":49236,"49236":49237,"49237":49238,"49238":49239,"49239":49240,"49240":49241,"49241":49242,"49242":49243,"49243":49244,"49244":49245,"49245":49246,"49246":49247,"49247":49248,"49248":49249,"49249":49250,"49250":49251,"49251":49252,"49252":49253,"49253":49254,"49254":49255,"49255":49256,"49256":49257,"49257":49258,"49258":49259,"49259":49260,"49260":49261,"49261":49262,"49262":49263,"49263":49264,"49264":49265,"49265":49266,"49266":49267,"49267":49268,"49268":49269,"49269":49270,"49270":49271,"49271":49272,"49272":49273,"49273":49274,"49274":49275,"49275":49276,"49276":49277,"49277":49278,"49278":49279,"49279":49280,"49280":49281,"49281":49282,"49282":49283,"49283":49284,"49284":49285,"49285":49286,"49286":49287,"49287":49288,"49288":49289,"49289":49290,"49290":49291,"49291":49292,"49292":49293,"49293":49294,"49294":49295,"49295":49296,"49296":49297,"49297":49298,"49298":49299,"49299":49300,"49300":49301,"49301":49302,"49302":49303,"49303":49304,"49304":49305,"49305":49306,"49306":49307,"49307":49308,"49308":49309,"49309":49310,"49310":49311,"49311":49312,"49312":49313,"49313":49314,"49314":49315,"49315":49316,"49316":49317,"49317":49318,"49318":49319,"49319":49320,"49320":49321,"49321":49322,"49322":49323,"49323":49324,"49324":49325,"49325":49326,"49326":49327,"49327":49328,"49328":49329,"49329":49330,"49330":49331,"49331":49332,"49332":49333,"49333":49334,"49334":49335,"49335":49336,"49336":49337,"49337":49338,"49338":49339,"49339":49340,"49340":49341,"49341":49342,"49342":49343,"49343":49344,"49344":49345,"49345":49346,"49346":49347,"49347":49348,"49348":49349,"49349":49350,"49350":49351,"49351":49352,"49352":49353,"49353":49354,"49354":49355,"49355":49356,"49356":49357,"49357":49358,"49358":49359,"49359":49360,"49360":49361,"49361":49362,"49362":49363,"49363":49364,"49364":49365,"49365":49366,"49366":49367,"49367":49368,"49368":49369,"49369":49370,"49370":49371,"49371":49372,"49372":49373,"49373":49374,"49374":49375,"49375":49376,"49376":49377,"49377":49378,"49378":49379,"49379":49380,"49380":49381,"49381":49382,"49382":49383,"49383":49384,"49384":49385,"49385":49386,"49386":49387,"49387":49388,"49388":49389,"49389":49390,"49390":49391,"49391":49392,"49392":49393,"49393":49394,"49394":49395,"49395":49396,"49396":49397,"49397":49398,"49398":49399,"49399":49400,"49400":49401,"49401":49402,"49402":49403,"49403":49404,"49404":49405,"49405":49406,"49406":49407,"49407":49408,"49408":49409,"49409":49410,"49410":49411,"49411":49412,"49412":49413,"49413":49414,"49414":49415,"49415":49416,"49416":49417,"49417":49418,"49418":49419,"49419":49420,"49420":49421,"49421":49422,"49422":49423,"49423":49424,"49424":49425,"49425":49426,"49426":49427,"49427":49428,"49428":49429,"49429":49430,"49430":49431,"49431":49432,"49432":49433,"49433":49434,"49434":49435,"49435":49436,"49436":49437,"49437":49438,"49438":49439,"49439":49440,"49440":49441,"49441":49442,"49442":49443,"49443":49444,"49444":49445,"49445":49446,"49446":49447,"49447":49448,"49448":49449,"49449":49450,"49450":49451,"49451":49452,"49452":49453,"49453":49454,"49454":49455,"49455":49456,"49456":49457,"49457":49458,"49458":49459,"49459":49460,"49460":49461,"49461":49462,"49462":49463,"49463":49464,"49464":49465,"49465":49466,"49466":49467,"49467":49468,"49468":49469,"49469":49470,"49470":49471,"49471":49472,"49472":49473,"49473":49474,"49474":49475,"49475":49476,"49476":49477,"49477":49478,"49478":49479,"49479":49480,"49480":49481,"49481":49482,"49482":49483,"49483":49484,"49484":49485,"49485":49486,"49486":49487,"49487":49488,"49488":49489,"49489":49490,"49490":49491,"49491":49492,"49492":49493,"49493":49494,"49494":49495,"49495":49496,"49496":49497,"49497":49498,"49498":49499,"49499":49500,"49500":49501,"49501":49502,"49502":49503,"49503":49504,"49504":49505,"49505":49506,"49506":49507,"49507":49508,"49508":49509,"49509":49510,"49510":49511,"49511":49512,"49512":49513,"49513":49514,"49514":49515,"49515":49516,"49516":49517,"49517":49518,"49518":49519,"49519":49520,"49520":49521,"49521":49522,"49522":49523,"49523":49524,"49524":49525,"49525":49526,"49526":49527,"49527":49528,"49528":49529,"49529":49530,"49530":49531,"49531":49532,"49532":49533,"49533":49534,"49534":49535,"49535":49536,"49536":49537,"49537":49538,"49538":49539,"49539":49540,"49540":49541,"49541":49542,"49542":49543,"49543":49544,"49544":49545,"49545":49546,"49546":49547,"49547":49548,"49548":49549,"49549":49550,"49550":49551,"49551":49552,"49552":49553,"49553":49554,"49554":49555,"49555":49556,"49556":49557,"49557":49558,"49558":49559,"49559":49560,"49560":49561,"49561":49562,"49562":49563,"49563":49564,"49564":49565,"49565":49566,"49566":49567,"49567":49568,"49568":49569,"49569":49570,"49570":49571,"49571":49572,"49572":49573,"49573":49574,"49574":49575,"49575":49576,"49576":49577,"49577":49578,"49578":49579,"49579":49580,"49580":49581,"49581":49582,"49582":49583,"49583":49584,"49584":49585,"49585":49586,"49586":49587,"49587":49588,"49588":49589,"49589":49590,"49590":49591,"49591":49592,"49592":49593,"49593":49594,"49594":49595,"49595":49596,"49596":49597,"49597":49598,"49598":49599,"49599":49600,"49600":49601,"49601":49602,"49602":49603,"49603":49604,"49604":49605,"49605":49606,"49606":49607,"49607":49608,"49608":49609,"49609":49610,"49610":49611,"49611":49612,"49612":49613,"49613":49614,"49614":49615,"49615":49616,"49616":49617,"49617":49618,"49618":49619,"49619":49620,"49620":49621,"49621":49622,"49622":49623,"49623":49624,"49624":49625,"49625":49626,"49626":49627,"49627":49628,"49628":49629,"49629":49630,"49630":49631,"49631":49632,"49632":49633,"49633":49634,"49634":49635,"49635":49636,"49636":49637,"49637":49638,"49638":49639,"49639":49640,"49640":49641,"49641":49642,"49642":49643,"49643":49644,"49644":49645,"49645":49646,"49646":49647,"49647":49648,"49648":49649,"49649":49650,"49650":49651,"49651":49652,"49652":49653,"49653":49654,"49654":49655,"49655":49656,"49656":49657,"49657":49658,"49658":49659,"49659":49660,"49660":49661,"49661":49662,"49662":49663,"49663":49664,"49664":49665,"49665":49666,"49666":49667,"49667":49668,"49668":49669,"49669":49670,"49670":49671,"49671":49672,"49672":49673,"49673":49674,"49674":49675,"49675":49676,"49676":49677,"49677":49678,"49678":49679,"49679":49680,"49680":49681,"49681":49682,"49682":49683,"49683":49684,"49684":49685,"49685":49686,"49686":49687,"49687":49688,"49688":49689,"49689":49690,"49690":49691,"49691":49692,"49692":49693,"49693":49694,"49694":49695,"49695":49696,"49696":49697,"49697":49698,"49698":49699,"49699":49700,"49700":49701,"49701":49702,"49702":49703,"49703":49704,"49704":49705,"49705":49706,"49706":49707,"49707":49708,"49708":49709,"49709":49710,"49710":49711,"49711":49712,"49712":49713,"49713":49714,"49714":49715,"49715":49716,"49716":49717,"49717":49718,"49718":49719,"49719":49720,"49720":49721,"49721":49722,"49722":49723,"49723":49724,"49724":49725,"49725":49726,"49726":49727,"49727":49728,"49728":49729,"49729":49730,"49730":49731,"49731":49732,"49732":49733,"49733":49734,"49734":49735,"49735":49736,"49736":49737,"49737":49738,"49738":49739,"49739":49740,"49740":49741,"49741":49742,"49742":49743,"49743":49744,"49744":49745,"49745":49746,"49746":49747,"49747":49748,"49748":49749,"49749":49750,"49750":49751,"49751":49752,"49752":49753,"49753":49754,"49754":49755,"49755":49756,"49756":49757,"49757":49758,"49758":49759,"49759":49760,"49760":49761,"49761":49762,"49762":49763,"49763":49764,"49764":49765,"49765":49766,"49766":49767,"49767":49768,"49768":49769,"49769":49770,"49770":49771,"49771":49772,"49772":49773,"49773":49774,"49774":49775,"49775":49776,"49776":49777,"49777":49778,"49778":49779,"49779":49780,"49780":49781,"49781":49782,"49782":49783,"49783":49784,"49784":49785,"49785":49786,"49786":49787,"49787":49788,"49788":49789,"49789":49790,"49790":49791,"49791":49792,"49792":49793,"49793":49794,"49794":49795,"49795":49796,"49796":49797,"49797":49798,"49798":49799,"49799":49800,"49800":49801,"49801":49802,"49802":49803,"49803":49804,"49804":49805,"49805":49806,"49806":49807,"49807":49808,"49808":49809,"49809":49810,"49810":49811,"49811":49812,"49812":49813,"49813":49814,"49814":49815,"49815":49816,"49816":49817,"49817":49818,"49818":49819,"49819":49820,"49820":49821,"49821":49822,"49822":49823,"49823":49824,"49824":49825,"49825":49826,"49826":49827,"49827":49828,"49828":49829,"49829":49830,"49830":49831,"49831":49832,"49832":49833,"49833":49834,"49834":49835,"49835":49836,"49836":49837,"49837":49838,"49838":49839,"49839":49840,"49840":49841,"49841":49842,"49842":49843,"49843":49844,"49844":49845,"49845":49846,"49846":49847,"49847":49848,"49848":49849,"49849":49850,"49850":49851,"49851":49852,"49852":49853,"49853":49854,"49854":49855,"49855":49856,"49856":49857,"49857":49858,"49858":49859,"49859":49860,"49860":49861,"49861":49862,"49862":49863,"49863":49864,"49864":49865,"49865":49866,"49866":49867,"49867":49868,"49868":49869,"49869":49870,"49870":49871,"49871":49872,"49872":49873,"49873":49874,"49874":49875,"49875":49876,"49876":49877,"49877":49878,"49878":49879,"49879":49880,"49880":49881,"49881":49882,"49882":49883,"49883":49884,"49884":49885,"49885":49886,"49886":49887,"49887":49888,"49888":49889,"49889":49890,"49890":49891,"49891":49892,"49892":49893,"49893":49894,"49894":49895,"49895":49896,"49896":49897,"49897":49898,"49898":49899,"49899":49900,"49900":49901,"49901":49902,"49902":49903,"49903":49904,"49904":49905,"49905":49906,"49906":49907,"49907":49908,"49908":49909,"49909":49910,"49910":49911,"49911":49912,"49912":49913,"49913":49914,"49914":49915,"49915":49916,"49916":49917,"49917":49918,"49918":49919,"49919":49920,"49920":49921,"49921":49922,"49922":49923,"49923":49924,"49924":49925,"49925":49926,"49926":49927,"49927":49928,"49928":49929,"49929":49930,"49930":49931,"49931":49932,"49932":49933,"49933":49934,"49934":49935,"49935":49936,"49936":49937,"49937":49938,"49938":49939,"49939":49940,"49940":49941,"49941":49942,"49942":49943,"49943":49944,"49944":49945,"49945":49946,"49946":49947,"49947":49948,"49948":49949,"49949":49950,"49950":49951,"49951":49952,"49952":49953,"49953":49954,"49954":49955,"49955":49956,"49956":49957,"49957":49958,"49958":49959,"49959":49960,"49960":49961,"49961":49962,"49962":49963,"49963":49964,"49964":49965,"49965":49966,"49966":49967,"49967":49968,"49968":49969,"49969":49970,"49970":49971,"49971":49972,"49972":49973,"49973":49974,"49974":49975,"49975":49976,"49976":49977,"49977":49978,"49978":49979,"49979":49980,"49980":49981,"49981":49982,"49982":49983,"49983":49984,"49984":49985,"49985":49986,"49986":49987,"49987":49988,"49988":49989,"49989":49990,"49990":49991,"49991":49992,"49992":49993,"49993":49994,"49994":49995,"49995":49996,"49996":49997,"49997":49998,"49998":49999,"49999":50000,"50000":50001,"50001":50002,"50002":50003,"50003":50004,"50004":50005,"50005":50006,"50006":50007,"50007":50008,"50008":50009,"50009":50010,"50010":50011,"50011":50012,"50012":50013,"50013":50014,"50014":50015,"50015":50016,"50016":50017,"50017":50018,"50018":50019,"50019":50020,"50020":50021,"50021":50022,"50022":50023,"50023":50024,"50024":50025,"50025":50026,"50026":50027,"50027":50028,"50028":50029,"50029":50030,"50030":50031,"50031":50032,"50032":50033,"50033":50034,"50034":50035,"50035":50036,"50036":50037,"50037":50038,"50038":50039,"50039":50040,"50040":50041,"50041":50042,"50042":50043,"50043":50044,"50044":50045,"50045":50046,"50046":50047,"50047":50048,"50048":50049,"50049":50050,"50050":50051,"50051":50052,"50052":50053,"50053":50054,"50054":50055,"50055":50056,"50056":50057,"50057":50058,"50058":50059,"50059":50060,"50060":50061,"50061":50062,"50062":50063,"50063":50064,"50064":50065,"50065":50066,"50066":50067,"50067":50068,"50068":50069,"50069":50070,"50070":50071,"50071":50072,"50072":50073,"50073":50074,"50074":50075,"50075":50076,"50076":50077,"50077":50078,"50078":50079,"50079":50080,"50080":50081,"50081":50082,"50082":50083,"50083":50084,"50084":50085,"50085":50086,"50086":50087,"50087":50088,"50088":50089,"50089":50090,"50090":50091,"50091":50092,"50092":50093,"50093":50094,"50094":50095,"50095":50096,"50096":50097,"50097":50098,"50098":50099,"50099":50100,"50100":50101,"50101":50102,"50102":50103,"50103":50104,"50104":50105,"50105":50106,"50106":50107,"50107":50108,"50108":50109,"50109":50110,"50110":50111,"50111":50112,"50112":50113,"50113":50114,"50114":50115,"50115":50116,"50116":50117,"50117":50118,"50118":50119,"50119":50120,"50120":50121,"50121":50122,"50122":50123,"50123":50124,"50124":50125,"50125":50126,"50126":50127,"50127":50128,"50128":50129,"50129":50130,"50130":50131,"50131":50132,"50132":50133,"50133":50134,"50134":50135,"50135":50136,"50136":50137,"50137":50138,"50138":50139,"50139":50140,"50140":50141,"50141":50142,"50142":50143,"50143":50144,"50144":50145,"50145":50146,"50146":50147,"50147":50148,"50148":50149,"50149":50150,"50150":50151,"50151":50152,"50152":50153,"50153":50154,"50154":50155,"50155":50156,"50156":50157,"50157":50158,"50158":50159,"50159":50160,"50160":50161,"50161":50162,"50162":50163,"50163":50164,"50164":50165,"50165":50166,"50166":50167,"50167":50168,"50168":50169,"50169":50170,"50170":50171,"50171":50172,"50172":50173,"50173":50174,"50174":50175,"50175":50176,"50176":50177,"50177":50178,"50178":50179,"50179":50180,"50180":50181,"50181":50182,"50182":50183,"50183":50184,"50184":50185,"50185":50186,"50186":50187,"50187":50188,"50188":50189,"50189":50190,"50190":50191,"50191":50192,"50192":50193,"50193":50194,"50194":50195,"50195":50196,"50196":50197,"50197":50198,"50198":50199,"50199":50200,"50200":50201,"50201":50202,"50202":50203,"50203":50204,"50204":50205,"50205":50206,"50206":50207,"50207":50208,"50208":50209,"50209":50210,"50210":50211,"50211":50212,"50212":50213,"50213":50214,"50214":50215,"50215":50216,"50216":50217,"50217":50218,"50218":50219,"50219":50220,"50220":50221,"50221":50222,"50222":50223,"50223":50224,"50224":50225,"50225":50226,"50226":50227,"50227":50228,"50228":50229,"50229":50230,"50230":50231,"50231":50232,"50232":50233,"50233":50234,"50234":50235,"50235":50236,"50236":50237,"50237":50238,"50238":50239,"50239":50240,"50240":50241,"50241":50242,"50242":50243,"50243":50244,"50244":50245,"50245":50246,"50246":50247,"50247":50248,"50248":50249,"50249":50250,"50250":50251,"50251":50252,"50252":50253,"50253":50254,"50254":50255,"50255":50256,"50256":50257,"50257":50258,"50258":50259,"50259":50260,"50260":50261,"50261":50262,"50262":50263,"50263":50264,"50264":50265,"50265":50266,"50266":50267,"50267":50268,"50268":50269,"50269":50270,"50270":50271,"50271":50272,"50272":50273,"50273":50274,"50274":50275,"50275":50276,"50276":50277,"50277":50278,"50278":50279,"50279":50280,"50280":50281,"50281":50282,"50282":50283,"50283":50284,"50284":50285,"50285":50286,"50286":50287,"50287":50288,"50288":50289,"50289":50290,"50290":50291,"50291":50292,"50292":50293,"50293":50294,"50294":50295,"50295":50296,"50296":50297,"50297":50298,"50298":50299,"50299":50300,"50300":50301,"50301":50302,"50302":50303,"50303":50304,"50304":50305,"50305":50306,"50306":50307,"50307":50308,"50308":50309,"50309":50310,"50310":50311,"50311":50312,"50312":50313,"50313":50314,"50314":50315,"50315":50316,"50316":50317,"50317":50318,"50318":50319,"50319":50320,"50320":50321,"50321":50322,"50322":50323,"50323":50324,"50324":50325,"50325":50326,"50326":50327,"50327":50328,"50328":50329,"50329":50330,"50330":50331,"50331":50332,"50332":50333,"50333":50334,"50334":50335,"50335":50336,"50336":50337,"50337":50338,"50338":50339,"50339":50340,"50340":50341,"50341":50342,"50342":50343,"50343":50344,"50344":50345,"50345":50346,"50346":50347,"50347":50348,"50348":50349,"50349":50350,"50350":50351,"50351":50352,"50352":50353,"50353":50354,"50354":50355,"50355":50356,"50356":50357,"50357":50358,"50358":50359,"50359":50360,"50360":50361,"50361":50362,"50362":50363,"50363":50364,"50364":50365,"50365":50366,"50366":50367,"50367":50368,"50368":50369,"50369":50370,"50370":50371,"50371":50372,"50372":50373,"50373":50374,"50374":50375,"50375":50376,"50376":50377,"50377":50378,"50378":50379,"50379":50380,"50380":50381,"50381":50382,"50382":50383,"50383":50384,"50384":50385,"50385":50386,"50386":50387,"50387":50388,"50388":50389,"50389":50390,"50390":50391,"50391":50392,"50392":50393,"50393":50394,"50394":50395,"50395":50396,"50396":50397,"50397":50398,"50398":50399,"50399":50400,"50400":50401,"50401":50402,"50402":50403,"50403":50404,"50404":50405,"50405":50406,"50406":50407,"50407":50408,"50408":50409,"50409":50410,"50410":50411,"50411":50412,"50412":50413,"50413":50414,"50414":50415,"50415":50416,"50416":50417,"50417":50418,"50418":50419,"50419":50420,"50420":50421,"50421":50422,"50422":50423,"50423":50424,"50424":50425,"50425":50426,"50426":50427,"50427":50428,"50428":50429,"50429":50430,"50430":50431,"50431":50432,"50432":50433,"50433":50434,"50434":50435,"50435":50436,"50436":50437,"50437":50438,"50438":50439,"50439":50440,"50440":50441,"50441":50442,"50442":50443,"50443":50444,"50444":50445,"50445":50446,"50446":50447,"50447":50448,"50448":50449,"50449":50450,"50450":50451,"50451":50452,"50452":50453,"50453":50454,"50454":50455,"50455":50456,"50456":50457,"50457":50458,"50458":50459,"50459":50460,"50460":50461,"50461":50462,"50462":50463,"50463":50464,"50464":50465,"50465":50466,"50466":50467,"50467":50468,"50468":50469,"50469":50470,"50470":50471,"50471":50472,"50472":50473,"50473":50474,"50474":50475,"50475":50476,"50476":50477,"50477":50478,"50478":50479,"50479":50480,"50480":50481,"50481":50482,"50482":50483,"50483":50484,"50484":50485,"50485":50486,"50486":50487,"50487":50488,"50488":50489,"50489":50490,"50490":50491,"50491":50492,"50492":50493,"50493":50494,"50494":50495,"50495":50496,"50496":50497,"50497":50498,"50498":50499,"50499":50500,"50500":50501,"50501":50502,"50502":50503,"50503":50504,"50504":50505,"50505":50506,"50506":50507,"50507":50508,"50508":50509,"50509":50510,"50510":50511,"50511":50512,"50512":50513,"50513":50514,"50514":50515,"50515":50516,"50516":50517,"50517":50518,"50518":50519,"50519":50520,"50520":50521,"50521":50522,"50522":50523,"50523":50524,"50524":50525,"50525":50526,"50526":50527,"50527":50528,"50528":50529,"50529":50530,"50530":50531,"50531":50532,"50532":50533,"50533":50534,"50534":50535,"50535":50536,"50536":50537,"50537":50538,"50538":50539,"50539":50540,"50540":50541,"50541":50542,"50542":50543,"50543":50544,"50544":50545,"50545":50546,"50546":50547,"50547":50548,"50548":50549,"50549":50550,"50550":50551,"50551":50552,"50552":50553,"50553":50554,"50554":50555,"50555":50556,"50556":50557,"50557":50558,"50558":50559,"50559":50560,"50560":50561,"50561":50562,"50562":50563,"50563":50564,"50564":50565,"50565":50566,"50566":50567,"50567":50568,"50568":50569,"50569":50570,"50570":50571,"50571":50572,"50572":50573,"50573":50574,"50574":50575,"50575":50576,"50576":50577,"50577":50578,"50578":50579,"50579":50580,"50580":50581,"50581":50582,"50582":50583,"50583":50584,"50584":50585,"50585":50586,"50586":50587,"50587":50588,"50588":50589,"50589":50590,"50590":50591,"50591":50592,"50592":50593,"50593":50594,"50594":50595,"50595":50596,"50596":50597,"50597":50598,"50598":50599,"50599":50600,"50600":50601,"50601":50602,"50602":50603,"50603":50604,"50604":50605,"50605":50606,"50606":50607,"50607":50608,"50608":50609,"50609":50610,"50610":50611,"50611":50612,"50612":50613,"50613":50614,"50614":50615,"50615":50616,"50616":50617,"50617":50618,"50618":50619,"50619":50620,"50620":50621,"50621":50622,"50622":50623,"50623":50624,"50624":50625,"50625":50626,"50626":50627,"50627":50628,"50628":50629,"50629":50630,"50630":50631,"50631":50632,"50632":50633,"50633":50634,"50634":50635,"50635":50636,"50636":50637,"50637":50638,"50638":50639,"50639":50640,"50640":50641,"50641":50642,"50642":50643,"50643":50644,"50644":50645,"50645":50646,"50646":50647,"50647":50648,"50648":50649,"50649":50650,"50650":50651,"50651":50652,"50652":50653,"50653":50654,"50654":50655,"50655":50656,"50656":50657,"50657":50658,"50658":50659,"50659":50660,"50660":50661,"50661":50662,"50662":50663,"50663":50664,"50664":50665,"50665":50666,"50666":50667,"50667":50668,"50668":50669,"50669":50670,"50670":50671,"50671":50672,"50672":50673,"50673":50674,"50674":50675,"50675":50676,"50676":50677,"50677":50678,"50678":50679,"50679":50680,"50680":50681,"50681":50682,"50682":50683,"50683":50684,"50684":50685,"50685":50686,"50686":50687,"50687":50688,"50688":50689,"50689":50690,"50690":50691,"50691":50692,"50692":50693,"50693":50694,"50694":50695,"50695":50696,"50696":50697,"50697":50698,"50698":50699,"50699":50700,"50700":50701,"50701":50702,"50702":50703,"50703":50704,"50704":50705,"50705":50706,"50706":50707,"50707":50708,"50708":50709,"50709":50710,"50710":50711,"50711":50712,"50712":50713,"50713":50714,"50714":50715,"50715":50716,"50716":50717,"50717":50718,"50718":50719,"50719":50720,"50720":50721,"50721":50722,"50722":50723,"50723":50724,"50724":50725,"50725":50726,"50726":50727,"50727":50728,"50728":50729,"50729":50730,"50730":50731,"50731":50732,"50732":50733,"50733":50734,"50734":50735,"50735":50736,"50736":50737,"50737":50738,"50738":50739,"50739":50740,"50740":50741,"50741":50742,"50742":50743,"50743":50744,"50744":50745,"50745":50746,"50746":50747,"50747":50748,"50748":50749,"50749":50750,"50750":50751,"50751":50752,"50752":50753,"50753":50754,"50754":50755,"50755":50756,"50756":50757,"50757":50758,"50758":50759,"50759":50760,"50760":50761,"50761":50762,"50762":50763,"50763":50764,"50764":50765,"50765":50766,"50766":50767,"50767":50768,"50768":50769,"50769":50770,"50770":50771,"50771":50772,"50772":50773,"50773":50774,"50774":50775,"50775":50776,"50776":50777,"50777":50778,"50778":50779,"50779":50780,"50780":50781,"50781":50782,"50782":50783,"50783":50784,"50784":50785,"50785":50786,"50786":50787,"50787":50788,"50788":50789,"50789":50790,"50790":50791,"50791":50792,"50792":50793,"50793":50794,"50794":50795,"50795":50796,"50796":50797,"50797":50798,"50798":50799,"50799":50800,"50800":50801,"50801":50802,"50802":50803,"50803":50804,"50804":50805,"50805":50806,"50806":50807,"50807":50808,"50808":50809,"50809":50810,"50810":50811,"50811":50812,"50812":50813,"50813":50814,"50814":50815,"50815":50816,"50816":50817,"50817":50818,"50818":50819,"50819":50820,"50820":50821,"50821":50822,"50822":50823,"50823":50824,"50824":50825,"50825":50826,"50826":50827,"50827":50828,"50828":50829,"50829":50830,"50830":50831,"50831":50832,"50832":50833,"50833":50834,"50834":50835,"50835":50836,"50836":50837,"50837":50838,"50838":50839,"50839":50840,"50840":50841,"50841":50842,"50842":50843,"50843":50844,"50844":50845,"50845":50846,"50846":50847,"50847":50848,"50848":50849,"50849":50850,"50850":50851,"50851":50852,"50852":50853,"50853":50854,"50854":50855,"50855":50856,"50856":50857,"50857":50858,"50858":50859,"50859":50860,"50860":50861,"50861":50862,"50862":50863,"50863":50864,"50864":50865,"50865":50866,"50866":50867,"50867":50868,"50868":50869,"50869":50870,"50870":50871,"50871":50872,"50872":50873,"50873":50874,"50874":50875,"50875":50876,"50876":50877,"50877":50878,"50878":50879,"50879":50880,"50880":50881,"50881":50882,"50882":50883,"50883":50884,"50884":50885,"50885":50886,"50886":50887,"50887":50888,"50888":50889,"50889":50890,"50890":50891,"50891":50892,"50892":50893,"50893":50894,"50894":50895,"50895":50896,"50896":50897,"50897":50898,"50898":50899,"50899":50900,"50900":50901,"50901":50902,"50902":50903,"50903":50904,"50904":50905,"50905":50906,"50906":50907,"50907":50908,"50908":50909,"50909":50910,"50910":50911,"50911":50912,"50912":50913,"50913":50914,"50914":50915,"50915":50916,"50916":50917,"50917":50918,"50918":50919,"50919":50920,"50920":50921,"50921":50922,"50922":50923,"50923":50924,"50924":50925,"50925":50926,"50926":50927,"50927":50928,"50928":50929,"50929":50930,"50930":50931,"50931":50932,"50932":50933,"50933":50934,"50934":50935,"50935":50936,"50936":50937,"50937":50938,"50938":50939,"50939":50940,"50940":50941,"50941":50942,"50942":50943,"50943":50944,"50944":50945,"50945":50946,"50946":50947,"50947":50948,"50948":50949,"50949":50950,"50950":50951,"50951":50952,"50952":50953,"50953":50954,"50954":50955,"50955":50956,"50956":50957,"50957":50958,"50958":50959,"50959":50960,"50960":50961,"50961":50962,"50962":50963,"50963":50964,"50964":50965,"50965":50966,"50966":50967,"50967":50968,"50968":50969,"50969":50970,"50970":50971,"50971":50972,"50972":50973,"50973":50974,"50974":50975,"50975":50976,"50976":50977,"50977":50978,"50978":50979,"50979":50980,"50980":50981,"50981":50982,"50982":50983,"50983":50984,"50984":50985,"50985":50986,"50986":50987,"50987":50988,"50988":50989,"50989":50990,"50990":50991,"50991":50992,"50992":50993,"50993":50994,"50994":50995,"50995":50996,"50996":50997,"50997":50998,"50998":50999,"50999":51000,"51000":51001,"51001":51002,"51002":51003,"51003":51004,"51004":51005,"51005":51006,"51006":51007,"51007":51008,"51008":51009,"51009":51010,"51010":51011,"51011":51012,"51012":51013,"51013":51014,"51014":51015,"51015":51016,"51016":51017,"51017":51018,"51018":51019,"51019":51020,"51020":51021,"51021":51022,"51022":51023,"51023":51024,"51024":51025,"51025":51026,"51026":51027,"51027":51028,"51028":51029,"51029":51030,"51030":51031,"51031":51032,"51032":51033,"51033":51034,"51034":51035,"51035":51036,"51036":51037,"51037":51038,"51038":51039,"51039":51040,"51040":51041,"51041":51042,"51042":51043,"51043":51044,"51044":51045,"51045":51046,"51046":51047,"51047":51048,"51048":51049,"51049":51050,"51050":51051,"51051":51052,"51052":51053,"51053":51054,"51054":51055,"51055":51056,"51056":51057,"51057":51058,"51058":51059,"51059":51060,"51060":51061,"51061":51062,"51062":51063,"51063":51064,"51064":51065,"51065":51066,"51066":51067,"51067":51068,"51068":51069,"51069":51070,"51070":51071,"51071":51072,"51072":51073,"51073":51074,"51074":51075,"51075":51076,"51076":51077,"51077":51078,"51078":51079,"51079":51080,"51080":51081,"51081":51082,"51082":51083,"51083":51084,"51084":51085,"51085":51086,"51086":51087,"51087":51088,"51088":51089,"51089":51090,"51090":51091,"51091":51092,"51092":51093,"51093":51094,"51094":51095,"51095":51096,"51096":51097,"51097":51098,"51098":51099,"51099":51100,"51100":51101,"51101":51102,"51102":51103,"51103":51104,"51104":51105,"51105":51106,"51106":51107,"51107":51108,"51108":51109,"51109":51110,"51110":51111,"51111":51112,"51112":51113,"51113":51114,"51114":51115,"51115":51116,"51116":51117,"51117":51118,"51118":51119,"51119":51120,"51120":51121,"51121":51122,"51122":51123,"51123":51124,"51124":51125,"51125":51126,"51126":51127,"51127":51128,"51128":51129,"51129":51130,"51130":51131,"51131":51132,"51132":51133,"51133":51134,"51134":51135,"51135":51136,"51136":51137,"51137":51138,"51138":51139,"51139":51140,"51140":51141,"51141":51142,"51142":51143,"51143":51144,"51144":51145,"51145":51146,"51146":51147,"51147":51148,"51148":51149,"51149":51150,"51150":51151,"51151":51152,"51152":51153,"51153":51154,"51154":51155,"51155":51156,"51156":51157,"51157":51158,"51158":51159,"51159":51160,"51160":51161,"51161":51162,"51162":51163,"51163":51164,"51164":51165,"51165":51166,"51166":51167,"51167":51168,"51168":51169,"51169":51170,"51170":51171,"51171":51172,"51172":51173,"51173":51174,"51174":51175,"51175":51176,"51176":51177,"51177":51178,"51178":51179,"51179":51180,"51180":51181,"51181":51182,"51182":51183,"51183":51184,"51184":51185,"51185":51186,"51186":51187,"51187":51188,"51188":51189,"51189":51190,"51190":51191,"51191":51192,"51192":51193,"51193":51194,"51194":51195,"51195":51196,"51196":51197,"51197":51198,"51198":51199,"51199":51200,"51200":51201,"51201":51202,"51202":51203,"51203":51204,"51204":51205,"51205":51206,"51206":51207,"51207":51208,"51208":51209,"51209":51210,"51210":51211,"51211":51212,"51212":51213,"51213":51214,"51214":51215,"51215":51216,"51216":51217,"51217":51218,"51218":51219,"51219":51220,"51220":51221,"51221":51222,"51222":51223,"51223":51224,"51224":51225,"51225":51226,"51226":51227,"51227":51228,"51228":51229,"51229":51230,"51230":51231,"51231":51232,"51232":51233,"51233":51234,"51234":51235,"51235":51236,"51236":51237,"51237":51238,"51238":51239,"51239":51240,"51240":51241,"51241":51242,"51242":51243,"51243":51244,"51244":51245,"51245":51246,"51246":51247,"51247":51248,"51248":51249,"51249":51250,"51250":51251,"51251":51252,"51252":51253,"51253":51254,"51254":51255,"51255":51256,"51256":51257,"51257":51258,"51258":51259,"51259":51260,"51260":51261,"51261":51262,"51262":51263,"51263":51264,"51264":51265,"51265":51266,"51266":51267,"51267":51268,"51268":51269,"51269":51270,"51270":51271,"51271":51272,"51272":51273,"51273":51274,"51274":51275,"51275":51276,"51276":51277,"51277":51278,"51278":51279,"51279":51280,"51280":51281,"51281":51282,"51282":51283,"51283":51284,"51284":51285,"51285":51286,"51286":51287,"51287":51288,"51288":51289,"51289":51290,"51290":51291,"51291":51292,"51292":51293,"51293":51294,"51294":51295,"51295":51296,"51296":51297,"51297":51298,"51298":51299,"51299":51300,"51300":51301,"51301":51302,"51302":51303,"51303":51304,"51304":51305,"51305":51306,"51306":51307,"51307":51308,"51308":51309,"51309":51310,"51310":51311,"51311":51312,"51312":51313,"51313":51314,"51314":51315,"51315":51316,"51316":51317,"51317":51318,"51318":51319,"51319":51320,"51320":51321,"51321":51322,"51322":51323,"51323":51324,"51324":51325,"51325":51326,"51326":51327,"51327":51328,"51328":51329,"51329":51330,"51330":51331,"51331":51332,"51332":51333,"51333":51334,"51334":51335,"51335":51336,"51336":51337,"51337":51338,"51338":51339,"51339":51340,"51340":51341,"51341":51342,"51342":51343,"51343":51344,"51344":51345,"51345":51346,"51346":51347,"51347":51348,"51348":51349,"51349":51350,"51350":51351,"51351":51352,"51352":51353,"51353":51354,"51354":51355,"51355":51356,"51356":51357,"51357":51358,"51358":51359,"51359":51360,"51360":51361,"51361":51362,"51362":51363,"51363":51364,"51364":51365,"51365":51366,"51366":51367,"51367":51368,"51368":51369,"51369":51370,"51370":51371,"51371":51372,"51372":51373,"51373":51374,"51374":51375,"51375":51376,"51376":51377,"51377":51378,"51378":51379,"51379":51380,"51380":51381,"51381":51382,"51382":51383,"51383":51384,"51384":51385,"51385":51386,"51386":51387,"51387":51388,"51388":51389,"51389":51390,"51390":51391,"51391":51392,"51392":51393,"51393":51394,"51394":51395,"51395":51396,"51396":51397,"51397":51398,"51398":51399,"51399":51400,"51400":51401,"51401":51402,"51402":51403,"51403":51404,"51404":51405,"51405":51406,"51406":51407,"51407":51408,"51408":51409,"51409":51410,"51410":51411,"51411":51412,"51412":51413,"51413":51414,"51414":51415,"51415":51416,"51416":51417,"51417":51418,"51418":51419,"51419":51420,"51420":51421,"51421":51422,"51422":51423,"51423":51424,"51424":51425,"51425":51426,"51426":51427,"51427":51428,"51428":51429,"51429":51430,"51430":51431,"51431":51432,"51432":51433,"51433":51434,"51434":51435,"51435":51436,"51436":51437,"51437":51438,"51438":51439,"51439":51440,"51440":51441,"51441":51442,"51442":51443,"51443":51444,"51444":51445,"51445":51446,"51446":51447,"51447":51448,"51448":51449,"51449":51450,"51450":51451,"51451":51452,"51452":51453,"51453":51454,"51454":51455,"51455":51456,"51456":51457,"51457":51458,"51458":51459,"51459":51460,"51460":51461,"51461":51462,"51462":51463,"51463":51464,"51464":51465,"51465":51466,"51466":51467,"51467":51468,"51468":51469,"51469":51470,"51470":51471,"51471":51472,"51472":51473,"51473":51474,"51474":51475,"51475":51476,"51476":51477,"51477":51478,"51478":51479,"51479":51480,"51480":51481,"51481":51482,"51482":51483,"51483":51484,"51484":51485,"51485":51486,"51486":51487,"51487":51488,"51488":51489,"51489":51490,"51490":51491,"51491":51492,"51492":51493,"51493":51494,"51494":51495,"51495":51496,"51496":51497,"51497":51498,"51498":51499,"51499":51500,"51500":51501,"51501":51502,"51502":51503,"51503":51504,"51504":51505,"51505":51506,"51506":51507,"51507":51508,"51508":51509,"51509":51510,"51510":51511,"51511":51512,"51512":51513,"51513":51514,"51514":51515,"51515":51516,"51516":51517,"51517":51518,"51518":51519,"51519":51520,"51520":51521,"51521":51522,"51522":51523,"51523":51524,"51524":51525,"51525":51526,"51526":51527,"51527":51528,"51528":51529,"51529":51530,"51530":51531,"51531":51532,"51532":51533,"51533":51534,"51534":51535,"51535":51536,"51536":51537,"51537":51538,"51538":51539,"51539":51540,"51540":51541,"51541":51542,"51542":51543,"51543":51544,"51544":51545,"51545":51546,"51546":51547,"51547":51548,"51548":51549,"51549":51550,"51550":51551,"51551":51552,"51552":51553,"51553":51554,"51554":51555,"51555":51556,"51556":51557,"51557":51558,"51558":51559,"51559":51560,"51560":51561,"51561":51562,"51562":51563,"51563":51564,"51564":51565,"51565":51566,"51566":51567,"51567":51568,"51568":51569,"51569":51570,"51570":51571,"51571":51572,"51572":51573,"51573":51574,"51574":51575,"51575":51576,"51576":51577,"51577":51578,"51578":51579,"51579":51580,"51580":51581,"51581":51582,"51582":51583,"51583":51584,"51584":51585,"51585":51586,"51586":51587,"51587":51588,"51588":51589,"51589":51590,"51590":51591,"51591":51592,"51592":51593,"51593":51594,"51594":51595,"51595":51596,"51596":51597,"51597":51598,"51598":51599,"51599":51600,"51600":51601,"51601":51602,"51602":51603,"51603":51604,"51604":51605,"51605":51606,"51606":51607,"51607":51608,"51608":51609,"51609":51610,"51610":51611,"51611":51612,"51612":51613,"51613":51614,"51614":51615,"51615":51616,"51616":51617,"51617":51618,"51618":51619,"51619":51620,"51620":51621,"51621":51622,"51622":51623,"51623":51624,"51624":51625,"51625":51626,"51626":51627,"51627":51628,"51628":51629,"51629":51630,"51630":51631,"51631":51632,"51632":51633,"51633":51634,"51634":51635,"51635":51636,"51636":51637,"51637":51638,"51638":51639,"51639":51640,"51640":51641,"51641":51642,"51642":51643,"51643":51644,"51644":51645,"51645":51646,"51646":51647,"51647":51648,"51648":51649,"51649":51650,"51650":51651,"51651":51652,"51652":51653,"51653":51654,"51654":51655,"51655":51656,"51656":51657,"51657":51658,"51658":51659,"51659":51660,"51660":51661,"51661":51662,"51662":51663,"51663":51664,"51664":51665,"51665":51666,"51666":51667,"51667":51668,"51668":51669,"51669":51670,"51670":51671,"51671":51672,"51672":51673,"51673":51674,"51674":51675,"51675":51676,"51676":51677,"51677":51678,"51678":51679,"51679":51680,"51680":51681,"51681":51682,"51682":51683,"51683":51684,"51684":51685,"51685":51686,"51686":51687,"51687":51688,"51688":51689,"51689":51690,"51690":51691,"51691":51692,"51692":51693,"51693":51694,"51694":51695,"51695":51696,"51696":51697,"51697":51698,"51698":51699,"51699":51700,"51700":51701,"51701":51702,"51702":51703,"51703":51704,"51704":51705,"51705":51706,"51706":51707,"51707":51708,"51708":51709,"51709":51710,"51710":51711,"51711":51712,"51712":51713,"51713":51714,"51714":51715,"51715":51716,"51716":51717,"51717":51718,"51718":51719,"51719":51720,"51720":51721,"51721":51722,"51722":51723,"51723":51724,"51724":51725,"51725":51726,"51726":51727,"51727":51728,"51728":51729,"51729":51730,"51730":51731,"51731":51732,"51732":51733,"51733":51734,"51734":51735,"51735":51736,"51736":51737,"51737":51738,"51738":51739,"51739":51740,"51740":51741,"51741":51742,"51742":51743,"51743":51744,"51744":51745,"51745":51746,"51746":51747,"51747":51748,"51748":51749,"51749":51750,"51750":51751,"51751":51752,"51752":51753,"51753":51754,"51754":51755,"51755":51756,"51756":51757,"51757":51758,"51758":51759,"51759":51760,"51760":51761,"51761":51762,"51762":51763,"51763":51764,"51764":51765,"51765":51766,"51766":51767,"51767":51768,"51768":51769,"51769":51770,"51770":51771,"51771":51772,"51772":51773,"51773":51774,"51774":51775,"51775":51776,"51776":51777,"51777":51778,"51778":51779,"51779":51780,"51780":51781,"51781":51782,"51782":51783,"51783":51784,"51784":51785,"51785":51786,"51786":51787,"51787":51788,"51788":51789,"51789":51790,"51790":51791,"51791":51792,"51792":51793,"51793":51794,"51794":51795,"51795":51796,"51796":51797,"51797":51798,"51798":51799,"51799":51800,"51800":51801,"51801":51802,"51802":51803,"51803":51804,"51804":51805,"51805":51806,"51806":51807,"51807":51808,"51808":51809,"51809":51810,"51810":51811,"51811":51812,"51812":51813,"51813":51814,"51814":51815,"51815":51816,"51816":51817,"51817":51818,"51818":51819,"51819":51820,"51820":51821,"51821":51822,"51822":51823,"51823":51824,"51824":51825,"51825":51826,"51826":51827,"51827":51828,"51828":51829,"51829":51830,"51830":51831,"51831":51832,"51832":51833,"51833":51834,"51834":51835,"51835":51836,"51836":51837,"51837":51838,"51838":51839,"51839":51840,"51840":51841,"51841":51842,"51842":51843,"51843":51844,"51844":51845,"51845":51846,"51846":51847,"51847":51848,"51848":51849,"51849":51850,"51850":51851,"51851":51852,"51852":51853,"51853":51854,"51854":51855,"51855":51856,"51856":51857,"51857":51858,"51858":51859,"51859":51860,"51860":51861,"51861":51862,"51862":51863,"51863":51864,"51864":51865,"51865":51866,"51866":51867,"51867":51868,"51868":51869,"51869":51870,"51870":51871,"51871":51872,"51872":51873,"51873":51874,"51874":51875,"51875":51876,"51876":51877,"51877":51878,"51878":51879,"51879":51880,"51880":51881,"51881":51882,"51882":51883,"51883":51884,"51884":51885,"51885":51886,"51886":51887,"51887":51888,"51888":51889,"51889":51890,"51890":51891,"51891":51892,"51892":51893,"51893":51894,"51894":51895,"51895":51896,"51896":51897,"51897":51898,"51898":51899,"51899":51900,"51900":51901,"51901":51902,"51902":51903,"51903":51904,"51904":51905,"51905":51906,"51906":51907,"51907":51908,"51908":51909,"51909":51910,"51910":51911,"51911":51912,"51912":51913,"51913":51914,"51914":51915,"51915":51916,"51916":51917,"51917":51918,"51918":51919,"51919":51920,"51920":51921,"51921":51922,"51922":51923,"51923":51924,"51924":51925,"51925":51926,"51926":51927,"51927":51928,"51928":51929,"51929":51930,"51930":51931,"51931":51932,"51932":51933,"51933":51934,"51934":51935,"51935":51936,"51936":51937,"51937":51938,"51938":51939,"51939":51940,"51940":51941,"51941":51942,"51942":51943,"51943":51944,"51944":51945,"51945":51946,"51946":51947,"51947":51948,"51948":51949,"51949":51950,"51950":51951,"51951":51952,"51952":51953,"51953":51954,"51954":51955,"51955":51956,"51956":51957,"51957":51958,"51958":51959,"51959":51960,"51960":51961,"51961":51962,"51962":51963,"51963":51964,"51964":51965,"51965":51966,"51966":51967,"51967":51968,"51968":51969,"51969":51970,"51970":51971,"51971":51972,"51972":51973,"51973":51974,"51974":51975,"51975":51976,"51976":51977,"51977":51978,"51978":51979,"51979":51980,"51980":51981,"51981":51982,"51982":51983,"51983":51984,"51984":51985,"51985":51986,"51986":51987,"51987":51988,"51988":51989,"51989":51990,"51990":51991,"51991":51992,"51992":51993,"51993":51994,"51994":51995,"51995":51996,"51996":51997,"51997":51998,"51998":51999,"51999":52000,"52000":52001,"52001":52002,"52002":52003,"52003":52004,"52004":52005,"52005":52006,"52006":52007,"52007":52008,"52008":52009,"52009":52010,"52010":52011,"52011":52012,"52012":52013,"52013":52014,"52014":52015,"52015":52016,"52016":52017,"52017":52018,"52018":52019,"52019":52020,"52020":52021,"52021":52022,"52022":52023,"52023":52024,"52024":52025,"52025":52026,"52026":52027,"52027":52028,"52028":52029,"52029":52030,"52030":52031,"52031":52032,"52032":52033,"52033":52034,"52034":52035,"52035":52036,"52036":52037,"52037":52038,"52038":52039,"52039":52040,"52040":52041,"52041":52042,"52042":52043,"52043":52044,"52044":52045,"52045":52046,"52046":52047,"52047":52048,"52048":52049,"52049":52050,"52050":52051,"52051":52052,"52052":52053,"52053":52054,"52054":52055,"52055":52056,"52056":52057,"52057":52058,"52058":52059,"52059":52060,"52060":52061,"52061":52062,"52062":52063,"52063":52064,"52064":52065,"52065":52066,"52066":52067,"52067":52068,"52068":52069,"52069":52070,"52070":52071,"52071":52072,"52072":52073,"52073":52074,"52074":52075,"52075":52076,"52076":52077,"52077":52078,"52078":52079,"52079":52080,"52080":52081,"52081":52082,"52082":52083,"52083":52084,"52084":52085,"52085":52086,"52086":52087,"52087":52088,"52088":52089,"52089":52090,"52090":52091,"52091":52092,"52092":52093,"52093":52094,"52094":52095,"52095":52096,"52096":52097,"52097":52098,"52098":52099,"52099":52100,"52100":52101,"52101":52102,"52102":52103,"52103":52104,"52104":52105,"52105":52106,"52106":52107,"52107":52108,"52108":52109,"52109":52110,"52110":52111,"52111":52112,"52112":52113,"52113":52114,"52114":52115,"52115":52116,"52116":52117,"52117":52118,"52118":52119,"52119":52120,"52120":52121,"52121":52122,"52122":52123,"52123":52124,"52124":52125,"52125":52126,"52126":52127,"52127":52128,"52128":52129,"52129":52130,"52130":52131,"52131":52132,"52132":52133,"52133":52134,"52134":52135,"52135":52136,"52136":52137,"52137":52138,"52138":52139,"52139":52140,"52140":52141,"52141":52142,"52142":52143,"52143":52144,"52144":52145,"52145":52146,"52146":52147,"52147":52148,"52148":52149,"52149":52150,"52150":52151,"52151":52152,"52152":52153,"52153":52154,"52154":52155,"52155":52156,"52156":52157,"52157":52158,"52158":52159,"52159":52160,"52160":52161,"52161":52162,"52162":52163,"52163":52164,"52164":52165,"52165":52166,"52166":52167,"52167":52168,"52168":52169,"52169":52170,"52170":52171,"52171":52172,"52172":52173,"52173":52174,"52174":52175,"52175":52176,"52176":52177,"52177":52178,"52178":52179,"52179":52180,"52180":52181,"52181":52182,"52182":52183,"52183":52184,"52184":52185,"52185":52186,"52186":52187,"52187":52188,"52188":52189,"52189":52190,"52190":52191,"52191":52192,"52192":52193,"52193":52194,"52194":52195,"52195":52196,"52196":52197,"52197":52198,"52198":52199,"52199":52200,"52200":52201,"52201":52202,"52202":52203,"52203":52204,"52204":52205,"52205":52206,"52206":52207,"52207":52208,"52208":52209,"52209":52210,"52210":52211,"52211":52212,"52212":52213,"52213":52214,"52214":52215,"52215":52216,"52216":52217,"52217":52218,"52218":52219,"52219":52220,"52220":52221,"52221":52222,"52222":52223,"52223":52224,"52224":52225,"52225":52226,"52226":52227,"52227":52228,"52228":52229,"52229":52230,"52230":52231,"52231":52232,"52232":52233,"52233":52234,"52234":52235,"52235":52236,"52236":52237,"52237":52238,"52238":52239,"52239":52240,"52240":52241,"52241":52242,"52242":52243,"52243":52244,"52244":52245,"52245":52246,"52246":52247,"52247":52248,"52248":52249,"52249":52250,"52250":52251,"52251":52252,"52252":52253,"52253":52254,"52254":52255,"52255":52256,"52256":52257,"52257":52258,"52258":52259,"52259":52260,"52260":52261,"52261":52262,"52262":52263,"52263":52264,"52264":52265,"52265":52266,"52266":52267,"52267":52268,"52268":52269,"52269":52270,"52270":52271,"52271":52272,"52272":52273,"52273":52274,"52274":52275,"52275":52276,"52276":52277,"52277":52278,"52278":52279,"52279":52280,"52280":52281,"52281":52282,"52282":52283,"52283":52284,"52284":52285,"52285":52286,"52286":52287,"52287":52288,"52288":52289,"52289":52290,"52290":52291,"52291":52292,"52292":52293,"52293":52294,"52294":52295,"52295":52296,"52296":52297,"52297":52298,"52298":52299,"52299":52300,"52300":52301,"52301":52302,"52302":52303,"52303":52304,"52304":52305,"52305":52306,"52306":52307,"52307":52308,"52308":52309,"52309":52310,"52310":52311,"52311":52312,"52312":52313,"52313":52314,"52314":52315,"52315":52316,"52316":52317,"52317":52318,"52318":52319,"52319":52320,"52320":52321,"52321":52322,"52322":52323,"52323":52324,"52324":52325,"52325":52326,"52326":52327,"52327":52328,"52328":52329,"52329":52330,"52330":52331,"52331":52332,"52332":52333,"52333":52334,"52334":52335,"52335":52336,"52336":52337,"52337":52338,"52338":52339,"52339":52340,"52340":52341,"52341":52342,"52342":52343,"52343":52344,"52344":52345,"52345":52346,"52346":52347,"52347":52348,"52348":52349,"52349":52350,"52350":52351,"52351":52352,"52352":52353,"52353":52354,"52354":52355,"52355":52356,"52356":52357,"52357":52358,"52358":52359,"52359":52360,"52360":52361,"52361":52362,"52362":52363,"52363":52364,"52364":52365,"52365":52366,"52366":52367,"52367":52368,"52368":52369,"52369":52370,"52370":52371,"52371":52372,"52372":52373,"52373":52374,"52374":52375,"52375":52376,"52376":52377,"52377":52378,"52378":52379,"52379":52380,"52380":52381,"52381":52382,"52382":52383,"52383":52384,"52384":52385,"52385":52386,"52386":52387,"52387":52388,"52388":52389,"52389":52390,"52390":52391,"52391":52392,"52392":52393,"52393":52394,"52394":52395,"52395":52396,"52396":52397,"52397":52398,"52398":52399,"52399":52400,"52400":52401,"52401":52402,"52402":52403,"52403":52404,"52404":52405,"52405":52406,"52406":52407,"52407":52408,"52408":52409,"52409":52410,"52410":52411,"52411":52412,"52412":52413,"52413":52414,"52414":52415,"52415":52416,"52416":52417,"52417":52418,"52418":52419,"52419":52420,"52420":52421,"52421":52422,"52422":52423,"52423":52424,"52424":52425,"52425":52426,"52426":52427,"52427":52428,"52428":52429,"52429":52430,"52430":52431,"52431":52432,"52432":52433,"52433":52434,"52434":52435,"52435":52436,"52436":52437,"52437":52438,"52438":52439,"52439":52440,"52440":52441,"52441":52442,"52442":52443,"52443":52444,"52444":52445,"52445":52446,"52446":52447,"52447":52448,"52448":52449,"52449":52450,"52450":52451,"52451":52452,"52452":52453,"52453":52454,"52454":52455,"52455":52456,"52456":52457,"52457":52458,"52458":52459,"52459":52460,"52460":52461,"52461":52462,"52462":52463,"52463":52464,"52464":52465,"52465":52466,"52466":52467,"52467":52468,"52468":52469,"52469":52470,"52470":52471,"52471":52472,"52472":52473,"52473":52474,"52474":52475,"52475":52476,"52476":52477,"52477":52478,"52478":52479,"52479":52480,"52480":52481,"52481":52482,"52482":52483,"52483":52484,"52484":52485,"52485":52486,"52486":52487,"52487":52488,"52488":52489,"52489":52490,"52490":52491,"52491":52492,"52492":52493,"52493":52494,"52494":52495,"52495":52496,"52496":52497,"52497":52498,"52498":52499,"52499":52500,"52500":52501,"52501":52502,"52502":52503,"52503":52504,"52504":52505,"52505":52506,"52506":52507,"52507":52508,"52508":52509,"52509":52510,"52510":52511,"52511":52512,"52512":52513,"52513":52514,"52514":52515,"52515":52516,"52516":52517,"52517":52518,"52518":52519,"52519":52520,"52520":52521,"52521":52522,"52522":52523,"52523":52524,"52524":52525,"52525":52526,"52526":52527,"52527":52528,"52528":52529,"52529":52530,"52530":52531,"52531":52532,"52532":52533,"52533":52534,"52534":52535,"52535":52536,"52536":52537,"52537":52538,"52538":52539,"52539":52540,"52540":52541,"52541":52542,"52542":52543,"52543":52544,"52544":52545,"52545":52546,"52546":52547,"52547":52548,"52548":52549,"52549":52550,"52550":52551,"52551":52552,"52552":52553,"52553":52554,"52554":52555,"52555":52556,"52556":52557,"52557":52558,"52558":52559,"52559":52560,"52560":52561,"52561":52562,"52562":52563,"52563":52564,"52564":52565,"52565":52566,"52566":52567,"52567":52568,"52568":52569,"52569":52570,"52570":52571,"52571":52572,"52572":52573,"52573":52574,"52574":52575,"52575":52576,"52576":52577,"52577":52578,"52578":52579,"52579":52580,"52580":52581,"52581":52582,"52582":52583,"52583":52584,"52584":52585,"52585":52586,"52586":52587,"52587":52588,"52588":52589,"52589":52590,"52590":52591,"52591":52592,"52592":52593,"52593":52594,"52594":52595,"52595":52596,"52596":52597,"52597":52598,"52598":52599,"52599":52600,"52600":52601,"52601":52602,"52602":52603,"52603":52604,"52604":52605,"52605":52606,"52606":52607,"52607":52608,"52608":52609,"52609":52610,"52610":52611,"52611":52612,"52612":52613,"52613":52614,"52614":52615,"52615":52616,"52616":52617,"52617":52618,"52618":52619,"52619":52620,"52620":52621,"52621":52622,"52622":52623,"52623":52624,"52624":52625,"52625":52626,"52626":52627,"52627":52628,"52628":52629,"52629":52630,"52630":52631,"52631":52632,"52632":52633,"52633":52634,"52634":52635,"52635":52636,"52636":52637,"52637":52638,"52638":52639,"52639":52640,"52640":52641,"52641":52642,"52642":52643,"52643":52644,"52644":52645,"52645":52646,"52646":52647,"52647":52648,"52648":52649,"52649":52650,"52650":52651,"52651":52652,"52652":52653,"52653":52654,"52654":52655,"52655":52656,"52656":52657,"52657":52658,"52658":52659,"52659":52660,"52660":52661,"52661":52662,"52662":52663,"52663":52664,"52664":52665,"52665":52666,"52666":52667,"52667":52668,"52668":52669,"52669":52670,"52670":52671,"52671":52672,"52672":52673,"52673":52674,"52674":52675,"52675":52676,"52676":52677,"52677":52678,"52678":52679,"52679":52680,"52680":52681,"52681":52682,"52682":52683,"52683":52684,"52684":52685,"52685":52686,"52686":52687,"52687":52688,"52688":52689,"52689":52690,"52690":52691,"52691":52692,"52692":52693,"52693":52694,"52694":52695,"52695":52696,"52696":52697,"52697":52698,"52698":52699,"52699":52700,"52700":52701,"52701":52702,"52702":52703,"52703":52704,"52704":52705,"52705":52706,"52706":52707,"52707":52708,"52708":52709,"52709":52710,"52710":52711,"52711":52712,"52712":52713,"52713":52714,"52714":52715,"52715":52716,"52716":52717,"52717":52718,"52718":52719,"52719":52720,"52720":52721,"52721":52722,"52722":52723,"52723":52724,"52724":52725,"52725":52726,"52726":52727,"52727":52728,"52728":52729,"52729":52730,"52730":52731,"52731":52732,"52732":52733,"52733":52734,"52734":52735,"52735":52736,"52736":52737,"52737":52738,"52738":52739,"52739":52740,"52740":52741,"52741":52742,"52742":52743,"52743":52744,"52744":52745,"52745":52746,"52746":52747,"52747":52748,"52748":52749,"52749":52750,"52750":52751,"52751":52752,"52752":52753,"52753":52754,"52754":52755,"52755":52756,"52756":52757,"52757":52758,"52758":52759,"52759":52760,"52760":52761,"52761":52762,"52762":52763,"52763":52764,"52764":52765,"52765":52766,"52766":52767,"52767":52768,"52768":52769,"52769":52770,"52770":52771,"52771":52772,"52772":52773,"52773":52774,"52774":52775,"52775":52776,"52776":52777,"52777":52778,"52778":52779,"52779":52780,"52780":52781,"52781":52782,"52782":52783,"52783":52784,"52784":52785,"52785":52786,"52786":52787,"52787":52788,"52788":52789,"52789":52790,"52790":52791,"52791":52792,"52792":52793,"52793":52794,"52794":52795,"52795":52796,"52796":52797,"52797":52798,"52798":52799,"52799":52800,"52800":52801,"52801":52802,"52802":52803,"52803":52804,"52804":52805,"52805":52806,"52806":52807,"52807":52808,"52808":52809,"52809":52810,"52810":52811,"52811":52812,"52812":52813,"52813":52814,"52814":52815,"52815":52816,"52816":52817,"52817":52818,"52818":52819,"52819":52820,"52820":52821,"52821":52822,"52822":52823,"52823":52824,"52824":52825,"52825":52826,"52826":52827,"52827":52828,"52828":52829,"52829":52830,"52830":52831,"52831":52832,"52832":52833,"52833":52834,"52834":52835,"52835":52836,"52836":52837,"52837":52838,"52838":52839,"52839":52840,"52840":52841,"52841":52842,"52842":52843,"52843":52844,"52844":52845,"52845":52846,"52846":52847,"52847":52848,"52848":52849,"52849":52850,"52850":52851,"52851":52852,"52852":52853,"52853":52854,"52854":52855,"52855":52856,"52856":52857,"52857":52858,"52858":52859,"52859":52860,"52860":52861,"52861":52862,"52862":52863,"52863":52864,"52864":52865,"52865":52866,"52866":52867,"52867":52868,"52868":52869,"52869":52870,"52870":52871,"52871":52872,"52872":52873,"52873":52874,"52874":52875,"52875":52876,"52876":52877,"52877":52878,"52878":52879,"52879":52880,"52880":52881,"52881":52882,"52882":52883,"52883":52884,"52884":52885,"52885":52886,"52886":52887,"52887":52888,"52888":52889,"52889":52890,"52890":52891,"52891":52892,"52892":52893,"52893":52894,"52894":52895,"52895":52896,"52896":52897,"52897":52898,"52898":52899,"52899":52900,"52900":52901,"52901":52902,"52902":52903,"52903":52904,"52904":52905,"52905":52906,"52906":52907,"52907":52908,"52908":52909,"52909":52910,"52910":52911,"52911":52912,"52912":52913,"52913":52914,"52914":52915,"52915":52916,"52916":52917,"52917":52918,"52918":52919,"52919":52920,"52920":52921,"52921":52922,"52922":52923,"52923":52924,"52924":52925,"52925":52926,"52926":52927,"52927":52928,"52928":52929,"52929":52930,"52930":52931,"52931":52932,"52932":52933,"52933":52934,"52934":52935,"52935":52936,"52936":52937,"52937":52938,"52938":52939,"52939":52940,"52940":52941,"52941":52942,"52942":52943,"52943":52944,"52944":52945,"52945":52946,"52946":52947,"52947":52948,"52948":52949,"52949":52950,"52950":52951,"52951":52952,"52952":52953,"52953":52954,"52954":52955,"52955":52956,"52956":52957,"52957":52958,"52958":52959,"52959":52960,"52960":52961,"52961":52962,"52962":52963,"52963":52964,"52964":52965,"52965":52966,"52966":52967,"52967":52968,"52968":52969,"52969":52970,"52970":52971,"52971":52972,"52972":52973,"52973":52974,"52974":52975,"52975":52976,"52976":52977,"52977":52978,"52978":52979,"52979":52980,"52980":52981,"52981":52982,"52982":52983,"52983":52984,"52984":52985,"52985":52986,"52986":52987,"52987":52988,"52988":52989,"52989":52990,"52990":52991,"52991":52992,"52992":52993,"52993":52994,"52994":52995,"52995":52996,"52996":52997,"52997":52998,"52998":52999,"52999":53000,"53000":53001,"53001":53002,"53002":53003,"53003":53004,"53004":53005,"53005":53006,"53006":53007,"53007":53008,"53008":53009,"53009":53010,"53010":53011,"53011":53012,"53012":53013,"53013":53014,"53014":53015,"53015":53016,"53016":53017,"53017":53018,"53018":53019,"53019":53020,"53020":53021,"53021":53022,"53022":53023,"53023":53024,"53024":53025,"53025":53026,"53026":53027,"53027":53028,"53028":53029,"53029":53030,"53030":53031,"53031":53032,"53032":53033,"53033":53034,"53034":53035,"53035":53036,"53036":53037,"53037":53038,"53038":53039,"53039":53040,"53040":53041,"53041":53042,"53042":53043,"53043":53044,"53044":53045,"53045":53046,"53046":53047,"53047":53048,"53048":53049,"53049":53050,"53050":53051,"53051":53052,"53052":53053,"53053":53054,"53054":53055,"53055":53056,"53056":53057,"53057":53058,"53058":53059,"53059":53060,"53060":53061,"53061":53062,"53062":53063,"53063":53064,"53064":53065,"53065":53066,"53066":53067,"53067":53068,"53068":53069,"53069":53070,"53070":53071,"53071":53072,"53072":53073,"53073":53074,"53074":53075,"53075":53076,"53076":53077,"53077":53078,"53078":53079,"53079":53080,"53080":53081,"53081":53082,"53082":53083,"53083":53084,"53084":53085,"53085":53086,"53086":53087,"53087":53088,"53088":53089,"53089":53090,"53090":53091,"53091":53092,"53092":53093,"53093":53094,"53094":53095,"53095":53096,"53096":53097,"53097":53098,"53098":53099,"53099":53100,"53100":53101,"53101":53102,"53102":53103,"53103":53104,"53104":53105,"53105":53106,"53106":53107,"53107":53108,"53108":53109,"53109":53110,"53110":53111,"53111":53112,"53112":53113,"53113":53114,"53114":53115,"53115":53116,"53116":53117,"53117":53118,"53118":53119,"53119":53120,"53120":53121,"53121":53122,"53122":53123,"53123":53124,"53124":53125,"53125":53126,"53126":53127,"53127":53128,"53128":53129,"53129":53130,"53130":53131,"53131":53132,"53132":53133,"53133":53134,"53134":53135,"53135":53136,"53136":53137,"53137":53138,"53138":53139,"53139":53140,"53140":53141,"53141":53142,"53142":53143,"53143":53144,"53144":53145,"53145":53146,"53146":53147,"53147":53148,"53148":53149,"53149":53150,"53150":53151,"53151":53152,"53152":53153,"53153":53154,"53154":53155,"53155":53156,"53156":53157,"53157":53158,"53158":53159,"53159":53160,"53160":53161,"53161":53162,"53162":53163,"53163":53164,"53164":53165,"53165":53166,"53166":53167,"53167":53168,"53168":53169,"53169":53170,"53170":53171,"53171":53172,"53172":53173,"53173":53174,"53174":53175,"53175":53176,"53176":53177,"53177":53178,"53178":53179,"53179":53180,"53180":53181,"53181":53182,"53182":53183,"53183":53184,"53184":53185,"53185":53186,"53186":53187,"53187":53188,"53188":53189,"53189":53190,"53190":53191,"53191":53192,"53192":53193,"53193":53194,"53194":53195,"53195":53196,"53196":53197,"53197":53198,"53198":53199,"53199":53200,"53200":53201,"53201":53202,"53202":53203,"53203":53204,"53204":53205,"53205":53206,"53206":53207,"53207":53208,"53208":53209,"53209":53210,"53210":53211,"53211":53212,"53212":53213,"53213":53214,"53214":53215,"53215":53216,"53216":53217,"53217":53218,"53218":53219,"53219":53220,"53220":53221,"53221":53222,"53222":53223,"53223":53224,"53224":53225,"53225":53226,"53226":53227,"53227":53228,"53228":53229,"53229":53230,"53230":53231,"53231":53232,"53232":53233,"53233":53234,"53234":53235,"53235":53236,"53236":53237,"53237":53238,"53238":53239,"53239":53240,"53240":53241,"53241":53242,"53242":53243,"53243":53244,"53244":53245,"53245":53246,"53246":53247,"53247":53248,"53248":53249,"53249":53250,"53250":53251,"53251":53252,"53252":53253,"53253":53254,"53254":53255,"53255":53256,"53256":53257,"53257":53258,"53258":53259,"53259":53260,"53260":53261,"53261":53262,"53262":53263,"53263":53264,"53264":53265,"53265":53266,"53266":53267,"53267":53268,"53268":53269,"53269":53270,"53270":53271,"53271":53272,"53272":53273,"53273":53274,"53274":53275,"53275":53276,"53276":53277,"53277":53278,"53278":53279,"53279":53280,"53280":53281,"53281":53282,"53282":53283,"53283":53284,"53284":53285,"53285":53286,"53286":53287,"53287":53288,"53288":53289,"53289":53290,"53290":53291,"53291":53292,"53292":53293,"53293":53294,"53294":53295,"53295":53296,"53296":53297,"53297":53298,"53298":53299,"53299":53300,"53300":53301,"53301":53302,"53302":53303,"53303":53304,"53304":53305,"53305":53306,"53306":53307,"53307":53308,"53308":53309,"53309":53310,"53310":53311,"53311":53312,"53312":53313,"53313":53314,"53314":53315,"53315":53316,"53316":53317,"53317":53318,"53318":53319,"53319":53320,"53320":53321,"53321":53322,"53322":53323,"53323":53324,"53324":53325,"53325":53326,"53326":53327,"53327":53328,"53328":53329,"53329":53330,"53330":53331,"53331":53332,"53332":53333,"53333":53334,"53334":53335,"53335":53336,"53336":53337,"53337":53338,"53338":53339,"53339":53340,"53340":53341,"53341":53342,"53342":53343,"53343":53344,"53344":53345,"53345":53346,"53346":53347,"53347":53348,"53348":53349,"53349":53350,"53350":53351,"53351":53352,"53352":53353,"53353":53354,"53354":53355,"53355":53356,"53356":53357,"53357":53358,"53358":53359,"53359":53360,"53360":53361,"53361":53362,"53362":53363,"53363":53364,"53364":53365,"53365":53366,"53366":53367,"53367":53368,"53368":53369,"53369":53370,"53370":53371,"53371":53372,"53372":53373,"53373":53374,"53374":53375,"53375":53376,"53376":53377,"53377":53378,"53378":53379,"53379":53380,"53380":53381,"53381":53382,"53382":53383,"53383":53384,"53384":53385,"53385":53386,"53386":53387,"53387":53388,"53388":53389,"53389":53390,"53390":53391,"53391":53392,"53392":53393,"53393":53394,"53394":53395,"53395":53396,"53396":53397,"53397":53398,"53398":53399,"53399":53400,"53400":53401,"53401":53402,"53402":53403,"53403":53404,"53404":53405,"53405":53406,"53406":53407,"53407":53408,"53408":53409,"53409":53410,"53410":53411,"53411":53412,"53412":53413,"53413":53414,"53414":53415,"53415":53416,"53416":53417,"53417":53418,"53418":53419,"53419":53420,"53420":53421,"53421":53422,"53422":53423,"53423":53424,"53424":53425,"53425":53426,"53426":53427,"53427":53428,"53428":53429,"53429":53430,"53430":53431,"53431":53432,"53432":53433,"53433":53434,"53434":53435,"53435":53436,"53436":53437,"53437":53438,"53438":53439,"53439":53440,"53440":53441,"53441":53442,"53442":53443,"53443":53444,"53444":53445,"53445":53446,"53446":53447,"53447":53448,"53448":53449,"53449":53450,"53450":53451,"53451":53452,"53452":53453,"53453":53454,"53454":53455,"53455":53456,"53456":53457,"53457":53458,"53458":53459,"53459":53460,"53460":53461,"53461":53462,"53462":53463,"53463":53464,"53464":53465,"53465":53466,"53466":53467,"53467":53468,"53468":53469,"53469":53470,"53470":53471,"53471":53472,"53472":53473,"53473":53474,"53474":53475,"53475":53476,"53476":53477,"53477":53478,"53478":53479,"53479":53480,"53480":53481,"53481":53482,"53482":53483,"53483":53484,"53484":53485,"53485":53486,"53486":53487,"53487":53488,"53488":53489,"53489":53490,"53490":53491,"53491":53492,"53492":53493,"53493":53494,"53494":53495,"53495":53496,"53496":53497,"53497":53498,"53498":53499,"53499":53500,"53500":53501,"53501":53502,"53502":53503,"53503":53504,"53504":53505,"53505":53506,"53506":53507,"53507":53508,"53508":53509,"53509":53510,"53510":53511,"53511":53512,"53512":53513,"53513":53514,"53514":53515,"53515":53516,"53516":53517,"53517":53518,"53518":53519,"53519":53520,"53520":53521,"53521":53522,"53522":53523,"53523":53524,"53524":53525,"53525":53526,"53526":53527,"53527":53528,"53528":53529,"53529":53530,"53530":53531,"53531":53532,"53532":53533,"53533":53534,"53534":53535,"53535":53536,"53536":53537,"53537":53538,"53538":53539,"53539":53540,"53540":53541,"53541":53542,"53542":53543,"53543":53544,"53544":53545,"53545":53546,"53546":53547,"53547":53548,"53548":53549,"53549":53550,"53550":53551,"53551":53552,"53552":53553,"53553":53554,"53554":53555,"53555":53556,"53556":53557,"53557":53558,"53558":53559,"53559":53560,"53560":53561,"53561":53562,"53562":53563,"53563":53564,"53564":53565,"53565":53566,"53566":53567,"53567":53568,"53568":53569,"53569":53570,"53570":53571,"53571":53572,"53572":53573,"53573":53574,"53574":53575,"53575":53576,"53576":53577,"53577":53578,"53578":53579,"53579":53580,"53580":53581,"53581":53582,"53582":53583,"53583":53584,"53584":53585,"53585":53586,"53586":53587,"53587":53588,"53588":53589,"53589":53590,"53590":53591,"53591":53592,"53592":53593,"53593":53594,"53594":53595,"53595":53596,"53596":53597,"53597":53598,"53598":53599,"53599":53600,"53600":53601,"53601":53602,"53602":53603,"53603":53604,"53604":53605,"53605":53606,"53606":53607,"53607":53608,"53608":53609,"53609":53610,"53610":53611,"53611":53612,"53612":53613,"53613":53614,"53614":53615,"53615":53616,"53616":53617,"53617":53618,"53618":53619,"53619":53620,"53620":53621,"53621":53622,"53622":53623,"53623":53624,"53624":53625,"53625":53626,"53626":53627,"53627":53628,"53628":53629,"53629":53630,"53630":53631,"53631":53632,"53632":53633,"53633":53634,"53634":53635,"53635":53636,"53636":53637,"53637":53638,"53638":53639,"53639":53640,"53640":53641,"53641":53642,"53642":53643,"53643":53644,"53644":53645,"53645":53646,"53646":53647,"53647":53648,"53648":53649,"53649":53650,"53650":53651,"53651":53652,"53652":53653,"53653":53654,"53654":53655,"53655":53656,"53656":53657,"53657":53658,"53658":53659,"53659":53660,"53660":53661,"53661":53662,"53662":53663,"53663":53664,"53664":53665,"53665":53666,"53666":53667,"53667":53668,"53668":53669,"53669":53670,"53670":53671,"53671":53672,"53672":53673,"53673":53674,"53674":53675,"53675":53676,"53676":53677,"53677":53678,"53678":53679,"53679":53680,"53680":53681,"53681":53682,"53682":53683,"53683":53684,"53684":53685,"53685":53686,"53686":53687,"53687":53688,"53688":53689,"53689":53690,"53690":53691,"53691":53692,"53692":53693,"53693":53694,"53694":53695,"53695":53696,"53696":53697,"53697":53698,"53698":53699,"53699":53700,"53700":53701,"53701":53702,"53702":53703,"53703":53704,"53704":53705,"53705":53706,"53706":53707,"53707":53708,"53708":53709,"53709":53710,"53710":53711,"53711":53712,"53712":53713,"53713":53714,"53714":53715,"53715":53716,"53716":53717,"53717":53718,"53718":53719,"53719":53720,"53720":53721,"53721":53722,"53722":53723,"53723":53724,"53724":53725,"53725":53726,"53726":53727,"53727":53728,"53728":53729,"53729":53730,"53730":53731,"53731":53732,"53732":53733,"53733":53734,"53734":53735,"53735":53736,"53736":53737,"53737":53738,"53738":53739,"53739":53740,"53740":53741,"53741":53742,"53742":53743,"53743":53744,"53744":53745,"53745":53746,"53746":53747,"53747":53748,"53748":53749,"53749":53750,"53750":53751,"53751":53752,"53752":53753,"53753":53754,"53754":53755,"53755":53756,"53756":53757,"53757":53758,"53758":53759,"53759":53760,"53760":53761,"53761":53762,"53762":53763,"53763":53764,"53764":53765,"53765":53766,"53766":53767,"53767":53768,"53768":53769,"53769":53770,"53770":53771,"53771":53772,"53772":53773,"53773":53774,"53774":53775,"53775":53776,"53776":53777,"53777":53778,"53778":53779,"53779":53780,"53780":53781,"53781":53782,"53782":53783,"53783":53784,"53784":53785,"53785":53786,"53786":53787,"53787":53788,"53788":53789,"53789":53790,"53790":53791,"53791":53792,"53792":53793,"53793":53794,"53794":53795,"53795":53796,"53796":53797,"53797":53798,"53798":53799,"53799":53800,"53800":53801,"53801":53802,"53802":53803,"53803":53804,"53804":53805,"53805":53806,"53806":53807,"53807":53808,"53808":53809,"53809":53810,"53810":53811,"53811":53812,"53812":53813,"53813":53814,"53814":53815,"53815":53816,"53816":53817,"53817":53818,"53818":53819,"53819":53820,"53820":53821,"53821":53822,"53822":53823,"53823":53824,"53824":53825,"53825":53826,"53826":53827,"53827":53828,"53828":53829,"53829":53830,"53830":53831,"53831":53832,"53832":53833,"53833":53834,"53834":53835,"53835":53836,"53836":53837,"53837":53838,"53838":53839,"53839":53840,"53840":53841,"53841":53842,"53842":53843,"53843":53844,"53844":53845,"53845":53846,"53846":53847,"53847":53848,"53848":53849,"53849":53850,"53850":53851,"53851":53852,"53852":53853,"53853":53854,"53854":53855,"53855":53856,"53856":53857,"53857":53858,"53858":53859,"53859":53860,"53860":53861,"53861":53862,"53862":53863,"53863":53864,"53864":53865,"53865":53866,"53866":53867,"53867":53868,"53868":53869,"53869":53870,"53870":53871,"53871":53872,"53872":53873,"53873":53874,"53874":53875,"53875":53876,"53876":53877,"53877":53878,"53878":53879,"53879":53880,"53880":53881,"53881":53882,"53882":53883,"53883":53884,"53884":53885,"53885":53886,"53886":53887,"53887":53888,"53888":53889,"53889":53890,"53890":53891,"53891":53892,"53892":53893,"53893":53894,"53894":53895,"53895":53896,"53896":53897,"53897":53898,"53898":53899,"53899":53900,"53900":53901,"53901":53902,"53902":53903,"53903":53904,"53904":53905,"53905":53906,"53906":53907,"53907":53908,"53908":53909,"53909":53910,"53910":53911,"53911":53912,"53912":53913,"53913":53914,"53914":53915,"53915":53916,"53916":53917,"53917":53918,"53918":53919,"53919":53920,"53920":53921,"53921":53922,"53922":53923,"53923":53924,"53924":53925,"53925":53926,"53926":53927,"53927":53928,"53928":53929,"53929":53930,"53930":53931,"53931":53932,"53932":53933,"53933":53934,"53934":53935,"53935":53936,"53936":53937,"53937":53938,"53938":53939,"53939":53940,"53940":53941,"53941":53942,"53942":53943,"53943":53944,"53944":53945,"53945":53946,"53946":53947,"53947":53948,"53948":53949,"53949":53950,"53950":53951,"53951":53952,"53952":53953,"53953":53954,"53954":53955,"53955":53956,"53956":53957,"53957":53958,"53958":53959,"53959":53960,"53960":53961,"53961":53962,"53962":53963,"53963":53964,"53964":53965,"53965":53966,"53966":53967,"53967":53968,"53968":53969,"53969":53970,"53970":53971,"53971":53972,"53972":53973,"53973":53974,"53974":53975,"53975":53976,"53976":53977,"53977":53978,"53978":53979,"53979":53980,"53980":53981,"53981":53982,"53982":53983,"53983":53984,"53984":53985,"53985":53986,"53986":53987,"53987":53988,"53988":53989,"53989":53990,"53990":53991,"53991":53992,"53992":53993,"53993":53994,"53994":53995,"53995":53996,"53996":53997,"53997":53998,"53998":53999,"53999":54000,"54000":54001,"54001":54002,"54002":54003,"54003":54004,"54004":54005,"54005":54006,"54006":54007,"54007":54008,"54008":54009,"54009":54010,"54010":54011,"54011":54012,"54012":54013,"54013":54014,"54014":54015,"54015":54016,"54016":54017,"54017":54018,"54018":54019,"54019":54020,"54020":54021,"54021":54022,"54022":54023,"54023":54024,"54024":54025,"54025":54026,"54026":54027,"54027":54028,"54028":54029,"54029":54030,"54030":54031,"54031":54032,"54032":54033,"54033":54034,"54034":54035,"54035":54036,"54036":54037,"54037":54038,"54038":54039,"54039":54040,"54040":54041,"54041":54042,"54042":54043,"54043":54044,"54044":54045,"54045":54046,"54046":54047,"54047":54048,"54048":54049,"54049":54050,"54050":54051,"54051":54052,"54052":54053,"54053":54054,"54054":54055,"54055":54056,"54056":54057,"54057":54058,"54058":54059,"54059":54060,"54060":54061,"54061":54062,"54062":54063,"54063":54064,"54064":54065,"54065":54066,"54066":54067,"54067":54068,"54068":54069,"54069":54070,"54070":54071,"54071":54072,"54072":54073,"54073":54074,"54074":54075,"54075":54076,"54076":54077,"54077":54078,"54078":54079,"54079":54080,"54080":54081,"54081":54082,"54082":54083,"54083":54084,"54084":54085,"54085":54086,"54086":54087,"54087":54088,"54088":54089,"54089":54090,"54090":54091,"54091":54092,"54092":54093,"54093":54094,"54094":54095,"54095":54096,"54096":54097,"54097":54098,"54098":54099,"54099":54100,"54100":54101,"54101":54102,"54102":54103,"54103":54104,"54104":54105,"54105":54106,"54106":54107,"54107":54108,"54108":54109,"54109":54110,"54110":54111,"54111":54112,"54112":54113,"54113":54114,"54114":54115,"54115":54116,"54116":54117,"54117":54118,"54118":54119,"54119":54120,"54120":54121,"54121":54122,"54122":54123,"54123":54124,"54124":54125,"54125":54126,"54126":54127,"54127":54128,"54128":54129,"54129":54130,"54130":54131,"54131":54132,"54132":54133,"54133":54134,"54134":54135,"54135":54136,"54136":54137,"54137":54138,"54138":54139,"54139":54140,"54140":54141,"54141":54142,"54142":54143,"54143":54144,"54144":54145,"54145":54146,"54146":54147,"54147":54148,"54148":54149,"54149":54150,"54150":54151,"54151":54152,"54152":54153,"54153":54154,"54154":54155,"54155":54156,"54156":54157,"54157":54158,"54158":54159,"54159":54160,"54160":54161,"54161":54162,"54162":54163,"54163":54164,"54164":54165,"54165":54166,"54166":54167,"54167":54168,"54168":54169,"54169":54170,"54170":54171,"54171":54172,"54172":54173,"54173":54174,"54174":54175,"54175":54176,"54176":54177,"54177":54178,"54178":54179,"54179":54180,"54180":54181,"54181":54182,"54182":54183,"54183":54184,"54184":54185,"54185":54186,"54186":54187,"54187":54188,"54188":54189,"54189":54190,"54190":54191,"54191":54192,"54192":54193,"54193":54194,"54194":54195,"54195":54196,"54196":54197,"54197":54198,"54198":54199,"54199":54200,"54200":54201,"54201":54202,"54202":54203,"54203":54204,"54204":54205,"54205":54206,"54206":54207,"54207":54208,"54208":54209,"54209":54210,"54210":54211,"54211":54212,"54212":54213,"54213":54214,"54214":54215,"54215":54216,"54216":54217,"54217":54218,"54218":54219,"54219":54220,"54220":54221,"54221":54222,"54222":54223,"54223":54224,"54224":54225,"54225":54226,"54226":54227,"54227":54228,"54228":54229,"54229":54230,"54230":54231,"54231":54232,"54232":54233,"54233":54234,"54234":54235,"54235":54236,"54236":54237,"54237":54238,"54238":54239,"54239":54240,"54240":54241,"54241":54242,"54242":54243,"54243":54244,"54244":54245,"54245":54246,"54246":54247,"54247":54248,"54248":54249,"54249":54250,"54250":54251,"54251":54252,"54252":54253,"54253":54254,"54254":54255,"54255":54256,"54256":54257,"54257":54258,"54258":54259,"54259":54260,"54260":54261,"54261":54262,"54262":54263,"54263":54264,"54264":54265,"54265":54266,"54266":54267,"54267":54268,"54268":54269,"54269":54270,"54270":54271,"54271":54272,"54272":54273,"54273":54274,"54274":54275,"54275":54276,"54276":54277,"54277":54278,"54278":54279,"54279":54280,"54280":54281,"54281":54282,"54282":54283,"54283":54284,"54284":54285,"54285":54286,"54286":54287,"54287":54288,"54288":54289,"54289":54290,"54290":54291,"54291":54292,"54292":54293,"54293":54294,"54294":54295,"54295":54296,"54296":54297,"54297":54298,"54298":54299,"54299":54300,"54300":54301,"54301":54302,"54302":54303,"54303":54304,"54304":54305,"54305":54306,"54306":54307,"54307":54308,"54308":54309,"54309":54310,"54310":54311,"54311":54312,"54312":54313,"54313":54314,"54314":54315,"54315":54316,"54316":54317,"54317":54318,"54318":54319,"54319":54320,"54320":54321,"54321":54322,"54322":54323,"54323":54324,"54324":54325,"54325":54326,"54326":54327,"54327":54328,"54328":54329,"54329":54330,"54330":54331,"54331":54332,"54332":54333,"54333":54334,"54334":54335,"54335":54336,"54336":54337,"54337":54338,"54338":54339,"54339":54340,"54340":54341,"54341":54342,"54342":54343,"54343":54344,"54344":54345,"54345":54346,"54346":54347,"54347":54348,"54348":54349,"54349":54350,"54350":54351,"54351":54352,"54352":54353,"54353":54354,"54354":54355,"54355":54356,"54356":54357,"54357":54358,"54358":54359,"54359":54360,"54360":54361,"54361":54362,"54362":54363,"54363":54364,"54364":54365,"54365":54366,"54366":54367,"54367":54368,"54368":54369,"54369":54370,"54370":54371,"54371":54372,"54372":54373,"54373":54374,"54374":54375,"54375":54376,"54376":54377,"54377":54378,"54378":54379,"54379":54380,"54380":54381,"54381":54382,"54382":54383,"54383":54384,"54384":54385,"54385":54386,"54386":54387,"54387":54388,"54388":54389,"54389":54390,"54390":54391,"54391":54392,"54392":54393,"54393":54394,"54394":54395,"54395":54396,"54396":54397,"54397":54398,"54398":54399,"54399":54400,"54400":54401,"54401":54402,"54402":54403,"54403":54404,"54404":54405,"54405":54406,"54406":54407,"54407":54408,"54408":54409,"54409":54410,"54410":54411,"54411":54412,"54412":54413,"54413":54414,"54414":54415,"54415":54416,"54416":54417,"54417":54418,"54418":54419,"54419":54420,"54420":54421,"54421":54422,"54422":54423,"54423":54424,"54424":54425,"54425":54426,"54426":54427,"54427":54428,"54428":54429,"54429":54430,"54430":54431,"54431":54432,"54432":54433,"54433":54434,"54434":54435,"54435":54436,"54436":54437,"54437":54438,"54438":54439,"54439":54440,"54440":54441,"54441":54442,"54442":54443,"54443":54444,"54444":54445,"54445":54446,"54446":54447,"54447":54448,"54448":54449,"54449":54450,"54450":54451,"54451":54452,"54452":54453,"54453":54454,"54454":54455,"54455":54456,"54456":54457,"54457":54458,"54458":54459,"54459":54460,"54460":54461,"54461":54462,"54462":54463,"54463":54464,"54464":54465,"54465":54466,"54466":54467,"54467":54468,"54468":54469,"54469":54470,"54470":54471,"54471":54472,"54472":54473,"54473":54474,"54474":54475,"54475":54476,"54476":54477,"54477":54478,"54478":54479,"54479":54480,"54480":54481,"54481":54482,"54482":54483,"54483":54484,"54484":54485,"54485":54486,"54486":54487,"54487":54488,"54488":54489,"54489":54490,"54490":54491,"54491":54492,"54492":54493,"54493":54494,"54494":54495,"54495":54496,"54496":54497,"54497":54498,"54498":54499,"54499":54500,"54500":54501,"54501":54502,"54502":54503,"54503":54504,"54504":54505,"54505":54506,"54506":54507,"54507":54508,"54508":54509,"54509":54510,"54510":54511,"54511":54512,"54512":54513,"54513":54514,"54514":54515,"54515":54516,"54516":54517,"54517":54518,"54518":54519,"54519":54520,"54520":54521,"54521":54522,"54522":54523,"54523":54524,"54524":54525,"54525":54526,"54526":54527,"54527":54528,"54528":54529,"54529":54530,"54530":54531,"54531":54532,"54532":54533,"54533":54534,"54534":54535,"54535":54536,"54536":54537,"54537":54538,"54538":54539,"54539":54540,"54540":54541,"54541":54542,"54542":54543,"54543":54544,"54544":54545,"54545":54546,"54546":54547,"54547":54548,"54548":54549,"54549":54550,"54550":54551,"54551":54552,"54552":54553,"54553":54554,"54554":54555,"54555":54556,"54556":54557,"54557":54558,"54558":54559,"54559":54560,"54560":54561,"54561":54562,"54562":54563,"54563":54564,"54564":54565,"54565":54566,"54566":54567,"54567":54568,"54568":54569,"54569":54570,"54570":54571,"54571":54572,"54572":54573,"54573":54574,"54574":54575,"54575":54576,"54576":54577,"54577":54578,"54578":54579,"54579":54580,"54580":54581,"54581":54582,"54582":54583,"54583":54584,"54584":54585,"54585":54586,"54586":54587,"54587":54588,"54588":54589,"54589":54590,"54590":54591,"54591":54592,"54592":54593,"54593":54594,"54594":54595,"54595":54596,"54596":54597,"54597":54598,"54598":54599,"54599":54600,"54600":54601,"54601":54602,"54602":54603,"54603":54604,"54604":54605,"54605":54606,"54606":54607,"54607":54608,"54608":54609,"54609":54610,"54610":54611,"54611":54612,"54612":54613,"54613":54614,"54614":54615,"54615":54616,"54616":54617,"54617":54618,"54618":54619,"54619":54620,"54620":54621,"54621":54622,"54622":54623,"54623":54624,"54624":54625,"54625":54626,"54626":54627,"54627":54628,"54628":54629,"54629":54630,"54630":54631,"54631":54632,"54632":54633,"54633":54634,"54634":54635,"54635":54636,"54636":54637,"54637":54638,"54638":54639,"54639":54640,"54640":54641,"54641":54642,"54642":54643,"54643":54644,"54644":54645,"54645":54646,"54646":54647,"54647":54648,"54648":54649,"54649":54650,"54650":54651,"54651":54652,"54652":54653,"54653":54654,"54654":54655,"54655":54656,"54656":54657,"54657":54658,"54658":54659,"54659":54660,"54660":54661,"54661":54662,"54662":54663,"54663":54664,"54664":54665,"54665":54666,"54666":54667,"54667":54668,"54668":54669,"54669":54670,"54670":54671,"54671":54672,"54672":54673,"54673":54674,"54674":54675,"54675":54676,"54676":54677,"54677":54678,"54678":54679,"54679":54680,"54680":54681,"54681":54682,"54682":54683,"54683":54684,"54684":54685,"54685":54686,"54686":54687,"54687":54688,"54688":54689,"54689":54690,"54690":54691,"54691":54692,"54692":54693,"54693":54694,"54694":54695,"54695":54696,"54696":54697,"54697":54698,"54698":54699,"54699":54700,"54700":54701,"54701":54702,"54702":54703,"54703":54704,"54704":54705,"54705":54706,"54706":54707,"54707":54708,"54708":54709,"54709":54710,"54710":54711,"54711":54712,"54712":54713,"54713":54714,"54714":54715,"54715":54716,"54716":54717,"54717":54718,"54718":54719,"54719":54720,"54720":54721,"54721":54722,"54722":54723,"54723":54724,"54724":54725,"54725":54726,"54726":54727,"54727":54728,"54728":54729,"54729":54730,"54730":54731,"54731":54732,"54732":54733,"54733":54734,"54734":54735,"54735":54736,"54736":54737,"54737":54738,"54738":54739,"54739":54740,"54740":54741,"54741":54742,"54742":54743,"54743":54744,"54744":54745,"54745":54746,"54746":54747,"54747":54748,"54748":54749,"54749":54750,"54750":54751,"54751":54752,"54752":54753,"54753":54754,"54754":54755,"54755":54756,"54756":54757,"54757":54758,"54758":54759,"54759":54760,"54760":54761,"54761":54762,"54762":54763,"54763":54764,"54764":54765,"54765":54766,"54766":54767,"54767":54768,"54768":54769,"54769":54770,"54770":54771,"54771":54772,"54772":54773,"54773":54774,"54774":54775,"54775":54776,"54776":54777,"54777":54778,"54778":54779,"54779":54780,"54780":54781,"54781":54782,"54782":54783,"54783":54784,"54784":54785,"54785":54786,"54786":54787,"54787":54788,"54788":54789,"54789":54790,"54790":54791,"54791":54792,"54792":54793,"54793":54794,"54794":54795,"54795":54796,"54796":54797,"54797":54798,"54798":54799,"54799":54800,"54800":54801,"54801":54802,"54802":54803,"54803":54804,"54804":54805,"54805":54806,"54806":54807,"54807":54808,"54808":54809,"54809":54810,"54810":54811,"54811":54812,"54812":54813,"54813":54814,"54814":54815,"54815":54816,"54816":54817,"54817":54818,"54818":54819,"54819":54820,"54820":54821,"54821":54822,"54822":54823,"54823":54824,"54824":54825,"54825":54826,"54826":54827,"54827":54828,"54828":54829,"54829":54830,"54830":54831,"54831":54832,"54832":54833,"54833":54834,"54834":54835,"54835":54836,"54836":54837,"54837":54838,"54838":54839,"54839":54840,"54840":54841,"54841":54842,"54842":54843,"54843":54844,"54844":54845,"54845":54846,"54846":54847,"54847":54848,"54848":54849,"54849":54850,"54850":54851,"54851":54852,"54852":54853,"54853":54854,"54854":54855,"54855":54856,"54856":54857,"54857":54858,"54858":54859,"54859":54860,"54860":54861,"54861":54862,"54862":54863,"54863":54864,"54864":54865,"54865":54866,"54866":54867,"54867":54868,"54868":54869,"54869":54870,"54870":54871,"54871":54872,"54872":54873,"54873":54874,"54874":54875,"54875":54876,"54876":54877,"54877":54878,"54878":54879,"54879":54880,"54880":54881,"54881":54882,"54882":54883,"54883":54884,"54884":54885,"54885":54886,"54886":54887,"54887":54888,"54888":54889,"54889":54890,"54890":54891,"54891":54892,"54892":54893,"54893":54894,"54894":54895,"54895":54896,"54896":54897,"54897":54898,"54898":54899,"54899":54900,"54900":54901,"54901":54902,"54902":54903,"54903":54904,"54904":54905,"54905":54906,"54906":54907,"54907":54908,"54908":54909,"54909":54910,"54910":54911,"54911":54912,"54912":54913,"54913":54914,"54914":54915,"54915":54916,"54916":54917,"54917":54918,"54918":54919,"54919":54920,"54920":54921,"54921":54922,"54922":54923,"54923":54924,"54924":54925,"54925":54926,"54926":54927,"54927":54928,"54928":54929,"54929":54930,"54930":54931,"54931":54932,"54932":54933,"54933":54934,"54934":54935,"54935":54936,"54936":54937,"54937":54938,"54938":54939,"54939":54940,"54940":54941,"54941":54942,"54942":54943,"54943":54944,"54944":54945,"54945":54946,"54946":54947,"54947":54948,"54948":54949,"54949":54950,"54950":54951,"54951":54952,"54952":54953,"54953":54954,"54954":54955,"54955":54956,"54956":54957,"54957":54958,"54958":54959,"54959":54960,"54960":54961,"54961":54962,"54962":54963,"54963":54964,"54964":54965,"54965":54966,"54966":54967,"54967":54968,"54968":54969,"54969":54970,"54970":54971,"54971":54972,"54972":54973,"54973":54974,"54974":54975,"54975":54976,"54976":54977,"54977":54978,"54978":54979,"54979":54980,"54980":54981,"54981":54982,"54982":54983,"54983":54984,"54984":54985,"54985":54986,"54986":54987,"54987":54988,"54988":54989,"54989":54990,"54990":54991,"54991":54992,"54992":54993,"54993":54994,"54994":54995,"54995":54996,"54996":54997,"54997":54998,"54998":54999,"54999":55000,"55000":55001,"55001":55002,"55002":55003,"55003":55004,"55004":55005,"55005":55006,"55006":55007,"55007":55008,"55008":55009,"55009":55010,"55010":55011,"55011":55012,"55012":55013,"55013":55014,"55014":55015,"55015":55016,"55016":55017,"55017":55018,"55018":55019,"55019":55020,"55020":55021,"55021":55022,"55022":55023,"55023":55024,"55024":55025,"55025":55026,"55026":55027,"55027":55028,"55028":55029,"55029":55030,"55030":55031,"55031":55032,"55032":55033,"55033":55034,"55034":55035,"55035":55036,"55036":55037,"55037":55038,"55038":55039,"55039":55040,"55040":55041,"55041":55042,"55042":55043,"55043":55044,"55044":55045,"55045":55046,"55046":55047,"55047":55048,"55048":55049,"55049":55050,"55050":55051,"55051":55052,"55052":55053,"55053":55054,"55054":55055,"55055":55056,"55056":55057,"55057":55058,"55058":55059,"55059":55060,"55060":55061,"55061":55062,"55062":55063,"55063":55064,"55064":55065,"55065":55066,"55066":55067,"55067":55068,"55068":55069,"55069":55070,"55070":55071,"55071":55072,"55072":55073,"55073":55074,"55074":55075,"55075":55076,"55076":55077,"55077":55078,"55078":55079,"55079":55080,"55080":55081,"55081":55082,"55082":55083,"55083":55084,"55084":55085,"55085":55086,"55086":55087,"55087":55088,"55088":55089,"55089":55090,"55090":55091,"55091":55092,"55092":55093,"55093":55094,"55094":55095,"55095":55096,"55096":55097,"55097":55098,"55098":55099,"55099":55100,"55100":55101,"55101":55102,"55102":55103,"55103":55104,"55104":55105,"55105":55106,"55106":55107,"55107":55108,"55108":55109,"55109":55110,"55110":55111,"55111":55112,"55112":55113,"55113":55114,"55114":55115,"55115":55116,"55116":55117,"55117":55118,"55118":55119,"55119":55120,"55120":55121,"55121":55122,"55122":55123,"55123":55124,"55124":55125,"55125":55126,"55126":55127,"55127":55128,"55128":55129,"55129":55130,"55130":55131,"55131":55132,"55132":55133,"55133":55134,"55134":55135,"55135":55136,"55136":55137,"55137":55138,"55138":55139,"55139":55140,"55140":55141,"55141":55142,"55142":55143,"55143":55144,"55144":55145,"55145":55146,"55146":55147,"55147":55148,"55148":55149,"55149":55150,"55150":55151,"55151":55152,"55152":55153,"55153":55154,"55154":55155,"55155":55156,"55156":55157,"55157":55158,"55158":55159,"55159":55160,"55160":55161,"55161":55162,"55162":55163,"55163":55164,"55164":55165,"55165":55166,"55166":55167,"55167":55168,"55168":55169,"55169":55170,"55170":55171,"55171":55172,"55172":55173,"55173":55174,"55174":55175,"55175":55176,"55176":55177,"55177":55178,"55178":55179,"55179":55180,"55180":55181,"55181":55182,"55182":55183,"55183":55184,"55184":55185,"55185":55186,"55186":55187,"55187":55188,"55188":55189,"55189":55190,"55190":55191,"55191":55192,"55192":55193,"55193":55194,"55194":55195,"55195":55196,"55196":55197,"55197":55198,"55198":55199,"55199":55200,"55200":55201,"55201":55202,"55202":55203,"55203":55204,"55204":55205,"55205":55206,"55206":55207,"55207":55208,"55208":55209,"55209":55210,"55210":55211,"55211":55212,"55212":55213,"55213":55214,"55214":55215,"55215":55216,"55216":55217,"55217":55218,"55218":55219,"55219":55220,"55220":55221,"55221":55222,"55222":55223,"55223":55224,"55224":55225,"55225":55226,"55226":55227,"55227":55228,"55228":55229,"55229":55230,"55230":55231,"55231":55232,"55232":55233,"55233":55234,"55234":55235,"55235":55236,"55236":55237,"55237":55238,"55238":55239,"55239":55240,"55240":55241,"55241":55242,"55242":55243,"55243":55244,"55244":55245,"55245":55246,"55246":55247,"55247":55248,"55248":55249,"55249":55250,"55250":55251,"55251":55252,"55252":55253,"55253":55254,"55254":55255,"55255":55256,"55256":55257,"55257":55258,"55258":55259,"55259":55260,"55260":55261,"55261":55262,"55262":55263,"55263":55264,"55264":55265,"55265":55266,"55266":55267,"55267":55268,"55268":55269,"55269":55270,"55270":55271,"55271":55272,"55272":55273,"55273":55274,"55274":55275,"55275":55276,"55276":55277,"55277":55278,"55278":55279,"55279":55280,"55280":55281,"55281":55282,"55282":55283,"55283":55284,"55284":55285,"55285":55286,"55286":55287,"55287":55288,"55288":55289,"55289":55290,"55290":55291,"55291":55292,"55292":55293,"55293":55294,"55294":55295,"55295":55296,"55296":55297,"55297":55298,"55298":55299,"55299":55300,"55300":55301,"55301":55302,"55302":55303,"55303":55304,"55304":55305,"55305":55306,"55306":55307,"55307":55308,"55308":55309,"55309":55310,"55310":55311,"55311":55312,"55312":55313,"55313":55314,"55314":55315,"55315":55316,"55316":55317,"55317":55318,"55318":55319,"55319":55320,"55320":55321,"55321":55322,"55322":55323,"55323":55324,"55324":55325,"55325":55326,"55326":55327,"55327":55328,"55328":55329,"55329":55330,"55330":55331,"55331":55332,"55332":55333,"55333":55334,"55334":55335,"55335":55336,"55336":55337,"55337":55338,"55338":55339,"55339":55340,"55340":55341,"55341":55342,"55342":55343,"55343":55344,"55344":55345,"55345":55346,"55346":55347,"55347":55348,"55348":55349,"55349":55350,"55350":55351,"55351":55352,"55352":55353,"55353":55354,"55354":55355,"55355":55356,"55356":55357,"55357":55358,"55358":55359,"55359":55360,"55360":55361,"55361":55362,"55362":55363,"55363":55364,"55364":55365,"55365":55366,"55366":55367,"55367":55368,"55368":55369,"55369":55370,"55370":55371,"55371":55372,"55372":55373,"55373":55374,"55374":55375,"55375":55376,"55376":55377,"55377":55378,"55378":55379,"55379":55380,"55380":55381,"55381":55382,"55382":55383,"55383":55384,"55384":55385,"55385":55386,"55386":55387,"55387":55388,"55388":55389,"55389":55390,"55390":55391,"55391":55392,"55392":55393,"55393":55394,"55394":55395,"55395":55396,"55396":55397,"55397":55398,"55398":55399,"55399":55400,"55400":55401,"55401":55402,"55402":55403,"55403":55404,"55404":55405,"55405":55406,"55406":55407,"55407":55408,"55408":55409,"55409":55410,"55410":55411,"55411":55412,"55412":55413,"55413":55414,"55414":55415,"55415":55416,"55416":55417,"55417":55418,"55418":55419,"55419":55420,"55420":55421,"55421":55422,"55422":55423,"55423":55424,"55424":55425,"55425":55426,"55426":55427,"55427":55428,"55428":55429,"55429":55430,"55430":55431,"55431":55432,"55432":55433,"55433":55434,"55434":55435,"55435":55436,"55436":55437,"55437":55438,"55438":55439,"55439":55440,"55440":55441,"55441":55442,"55442":55443,"55443":55444,"55444":55445,"55445":55446,"55446":55447,"55447":55448,"55448":55449,"55449":55450,"55450":55451,"55451":55452,"55452":55453,"55453":55454,"55454":55455,"55455":55456,"55456":55457,"55457":55458,"55458":55459,"55459":55460,"55460":55461,"55461":55462,"55462":55463,"55463":55464,"55464":55465,"55465":55466,"55466":55467,"55467":55468,"55468":55469,"55469":55470,"55470":55471,"55471":55472,"55472":55473,"55473":55474,"55474":55475,"55475":55476,"55476":55477,"55477":55478,"55478":55479,"55479":55480,"55480":55481,"55481":55482,"55482":55483,"55483":55484,"55484":55485,"55485":55486,"55486":55487,"55487":55488,"55488":55489,"55489":55490,"55490":55491,"55491":55492,"55492":55493,"55493":55494,"55494":55495,"55495":55496,"55496":55497,"55497":55498,"55498":55499,"55499":55500,"55500":55501,"55501":55502,"55502":55503,"55503":55504,"55504":55505,"55505":55506,"55506":55507,"55507":55508,"55508":55509,"55509":55510,"55510":55511,"55511":55512,"55512":55513,"55513":55514,"55514":55515,"55515":55516,"55516":55517,"55517":55518,"55518":55519,"55519":55520,"55520":55521,"55521":55522,"55522":55523,"55523":55524,"55524":55525,"55525":55526,"55526":55527,"55527":55528,"55528":55529,"55529":55530,"55530":55531,"55531":55532,"55532":55533,"55533":55534,"55534":55535,"55535":55536,"55536":55537,"55537":55538,"55538":55539,"55539":55540,"55540":55541,"55541":55542,"55542":55543,"55543":55544,"55544":55545,"55545":55546,"55546":55547,"55547":55548,"55548":55549,"55549":55550,"55550":55551,"55551":55552,"55552":55553,"55553":55554,"55554":55555,"55555":55556,"55556":55557,"55557":55558,"55558":55559,"55559":55560,"55560":55561,"55561":55562,"55562":55563,"55563":55564,"55564":55565,"55565":55566,"55566":55567,"55567":55568,"55568":55569,"55569":55570,"55570":55571,"55571":55572,"55572":55573,"55573":55574,"55574":55575,"55575":55576,"55576":55577,"55577":55578,"55578":55579,"55579":55580,"55580":55581,"55581":55582,"55582":55583,"55583":55584,"55584":55585,"55585":55586,"55586":55587,"55587":55588,"55588":55589,"55589":55590,"55590":55591,"55591":55592,"55592":55593,"55593":55594,"55594":55595,"55595":55596,"55596":55597,"55597":55598,"55598":55599,"55599":55600,"55600":55601,"55601":55602,"55602":55603,"55603":55604,"55604":55605,"55605":55606,"55606":55607,"55607":55608,"55608":55609,"55609":55610,"55610":55611,"55611":55612,"55612":55613,"55613":55614,"55614":55615,"55615":55616,"55616":55617,"55617":55618,"55618":55619,"55619":55620,"55620":55621,"55621":55622,"55622":55623,"55623":55624,"55624":55625,"55625":55626,"55626":55627,"55627":55628,"55628":55629,"55629":55630,"55630":55631,"55631":55632,"55632":55633,"55633":55634,"55634":55635,"55635":55636,"55636":55637,"55637":55638,"55638":55639,"55639":55640,"55640":55641,"55641":55642,"55642":55643,"55643":55644,"55644":55645,"55645":55646,"55646":55647,"55647":55648,"55648":55649,"55649":55650,"55650":55651,"55651":55652,"55652":55653,"55653":55654,"55654":55655,"55655":55656,"55656":55657,"55657":55658,"55658":55659,"55659":55660,"55660":55661,"55661":55662,"55662":55663,"55663":55664,"55664":55665,"55665":55666,"55666":55667,"55667":55668,"55668":55669,"55669":55670,"55670":55671,"55671":55672,"55672":55673,"55673":55674,"55674":55675,"55675":55676,"55676":55677,"55677":55678,"55678":55679,"55679":55680,"55680":55681,"55681":55682,"55682":55683,"55683":55684,"55684":55685,"55685":55686,"55686":55687,"55687":55688,"55688":55689,"55689":55690,"55690":55691,"55691":55692,"55692":55693,"55693":55694,"55694":55695,"55695":55696,"55696":55697,"55697":55698,"55698":55699,"55699":55700,"55700":55701,"55701":55702,"55702":55703,"55703":55704,"55704":55705,"55705":55706,"55706":55707,"55707":55708,"55708":55709,"55709":55710,"55710":55711,"55711":55712,"55712":55713,"55713":55714,"55714":55715,"55715":55716,"55716":55717,"55717":55718,"55718":55719,"55719":55720,"55720":55721,"55721":55722,"55722":55723,"55723":55724,"55724":55725,"55725":55726,"55726":55727,"55727":55728,"55728":55729,"55729":55730,"55730":55731,"55731":55732,"55732":55733,"55733":55734,"55734":55735,"55735":55736,"55736":55737,"55737":55738,"55738":55739,"55739":55740,"55740":55741,"55741":55742,"55742":55743,"55743":55744,"55744":55745,"55745":55746,"55746":55747,"55747":55748,"55748":55749,"55749":55750,"55750":55751,"55751":55752,"55752":55753,"55753":55754,"55754":55755,"55755":55756,"55756":55757,"55757":55758,"55758":55759,"55759":55760,"55760":55761,"55761":55762,"55762":55763,"55763":55764,"55764":55765,"55765":55766,"55766":55767,"55767":55768,"55768":55769,"55769":55770,"55770":55771,"55771":55772,"55772":55773,"55773":55774,"55774":55775,"55775":55776,"55776":55777,"55777":55778,"55778":55779,"55779":55780,"55780":55781,"55781":55782,"55782":55783,"55783":55784,"55784":55785,"55785":55786,"55786":55787,"55787":55788,"55788":55789,"55789":55790,"55790":55791,"55791":55792,"55792":55793,"55793":55794,"55794":55795,"55795":55796,"55796":55797,"55797":55798,"55798":55799,"55799":55800,"55800":55801,"55801":55802,"55802":55803,"55803":55804,"55804":55805,"55805":55806,"55806":55807,"55807":55808,"55808":55809,"55809":55810,"55810":55811,"55811":55812,"55812":55813,"55813":55814,"55814":55815,"55815":55816,"55816":55817,"55817":55818,"55818":55819,"55819":55820,"55820":55821,"55821":55822,"55822":55823,"55823":55824,"55824":55825,"55825":55826,"55826":55827,"55827":55828,"55828":55829,"55829":55830,"55830":55831,"55831":55832,"55832":55833,"55833":55834,"55834":55835,"55835":55836,"55836":55837,"55837":55838,"55838":55839,"55839":55840,"55840":55841,"55841":55842,"55842":55843,"55843":55844,"55844":55845,"55845":55846,"55846":55847,"55847":55848,"55848":55849,"55849":55850,"55850":55851,"55851":55852,"55852":55853,"55853":55854,"55854":55855,"55855":55856,"55856":55857,"55857":55858,"55858":55859,"55859":55860,"55860":55861,"55861":55862,"55862":55863,"55863":55864,"55864":55865,"55865":55866,"55866":55867,"55867":55868,"55868":55869,"55869":55870,"55870":55871,"55871":55872,"55872":55873,"55873":55874,"55874":55875,"55875":55876,"55876":55877,"55877":55878,"55878":55879,"55879":55880,"55880":55881,"55881":55882,"55882":55883,"55883":55884,"55884":55885,"55885":55886,"55886":55887,"55887":55888,"55888":55889,"55889":55890,"55890":55891,"55891":55892,"55892":55893,"55893":55894,"55894":55895,"55895":55896,"55896":55897,"55897":55898,"55898":55899,"55899":55900,"55900":55901,"55901":55902,"55902":55903,"55903":55904,"55904":55905,"55905":55906,"55906":55907,"55907":55908,"55908":55909,"55909":55910,"55910":55911,"55911":55912,"55912":55913,"55913":55914,"55914":55915,"55915":55916,"55916":55917,"55917":55918,"55918":55919,"55919":55920,"55920":55921,"55921":55922,"55922":55923,"55923":55924,"55924":55925,"55925":55926,"55926":55927,"55927":55928,"55928":55929,"55929":55930,"55930":55931,"55931":55932,"55932":55933,"55933":55934,"55934":55935,"55935":55936,"55936":55937,"55937":55938,"55938":55939,"55939":55940,"55940":55941,"55941":55942,"55942":55943,"55943":55944,"55944":55945,"55945":55946,"55946":55947,"55947":55948,"55948":55949,"55949":55950,"55950":55951,"55951":55952,"55952":55953,"55953":55954,"55954":55955,"55955":55956,"55956":55957,"55957":55958,"55958":55959,"55959":55960,"55960":55961,"55961":55962,"55962":55963,"55963":55964,"55964":55965,"55965":55966,"55966":55967,"55967":55968,"55968":55969,"55969":55970,"55970":55971,"55971":55972,"55972":55973,"55973":55974,"55974":55975,"55975":55976,"55976":55977,"55977":55978,"55978":55979,"55979":55980,"55980":55981,"55981":55982,"55982":55983,"55983":55984,"55984":55985,"55985":55986,"55986":55987,"55987":55988,"55988":55989,"55989":55990,"55990":55991,"55991":55992,"55992":55993,"55993":55994,"55994":55995,"55995":55996,"55996":55997,"55997":55998,"55998":55999,"55999":56000,"56000":56001,"56001":56002,"56002":56003,"56003":56004,"56004":56005,"56005":56006,"56006":56007,"56007":56008,"56008":56009,"56009":56010,"56010":56011,"56011":56012,"56012":56013,"56013":56014,"56014":56015,"56015":56016,"56016":56017,"56017":56018,"56018":56019,"56019":56020,"56020":56021,"56021":56022,"56022":56023,"56023":56024,"56024":56025,"56025":56026,"56026":56027,"56027":56028,"56028":56029,"56029":56030,"56030":56031,"56031":56032,"56032":56033,"56033":56034,"56034":56035,"56035":56036,"56036":56037,"56037":56038,"56038":56039,"56039":56040,"56040":56041,"56041":56042,"56042":56043,"56043":56044,"56044":56045,"56045":56046,"56046":56047,"56047":56048,"56048":56049,"56049":56050,"56050":56051,"56051":56052,"56052":56053,"56053":56054,"56054":56055,"56055":56056,"56056":56057,"56057":56058,"56058":56059,"56059":56060,"56060":56061,"56061":56062,"56062":56063,"56063":56064,"56064":56065,"56065":56066,"56066":56067,"56067":56068,"56068":56069,"56069":56070,"56070":56071,"56071":56072,"56072":56073,"56073":56074,"56074":56075,"56075":56076,"56076":56077,"56077":56078,"56078":56079,"56079":56080,"56080":56081,"56081":56082,"56082":56083,"56083":56084,"56084":56085,"56085":56086,"56086":56087,"56087":56088,"56088":56089,"56089":56090,"56090":56091,"56091":56092,"56092":56093,"56093":56094,"56094":56095,"56095":56096,"56096":56097,"56097":56098,"56098":56099,"56099":56100,"56100":56101,"56101":56102,"56102":56103,"56103":56104,"56104":56105,"56105":56106,"56106":56107,"56107":56108,"56108":56109,"56109":56110,"56110":56111,"56111":56112,"56112":56113,"56113":56114,"56114":56115,"56115":56116,"56116":56117,"56117":56118,"56118":56119,"56119":56120,"56120":56121,"56121":56122,"56122":56123,"56123":56124,"56124":56125,"56125":56126,"56126":56127,"56127":56128,"56128":56129,"56129":56130,"56130":56131,"56131":56132,"56132":56133,"56133":56134,"56134":56135,"56135":56136,"56136":56137,"56137":56138,"56138":56139,"56139":56140,"56140":56141,"56141":56142,"56142":56143,"56143":56144,"56144":56145,"56145":56146,"56146":56147,"56147":56148,"56148":56149,"56149":56150,"56150":56151,"56151":56152,"56152":56153,"56153":56154,"56154":56155,"56155":56156,"56156":56157,"56157":56158,"56158":56159,"56159":56160,"56160":56161,"56161":56162,"56162":56163,"56163":56164,"56164":56165,"56165":56166,"56166":56167,"56167":56168,"56168":56169,"56169":56170,"56170":56171,"56171":56172,"56172":56173,"56173":56174,"56174":56175,"56175":56176,"56176":56177,"56177":56178,"56178":56179,"56179":56180,"56180":56181,"56181":56182,"56182":56183,"56183":56184,"56184":56185,"56185":56186,"56186":56187,"56187":56188,"56188":56189,"56189":56190,"56190":56191,"56191":56192,"56192":56193,"56193":56194,"56194":56195,"56195":56196,"56196":56197,"56197":56198,"56198":56199,"56199":56200,"56200":56201,"56201":56202,"56202":56203,"56203":56204,"56204":56205,"56205":56206,"56206":56207,"56207":56208,"56208":56209,"56209":56210,"56210":56211,"56211":56212,"56212":56213,"56213":56214,"56214":56215,"56215":56216,"56216":56217,"56217":56218,"56218":56219,"56219":56220,"56220":56221,"56221":56222,"56222":56223,"56223":56224,"56224":56225,"56225":56226,"56226":56227,"56227":56228,"56228":56229,"56229":56230,"56230":56231,"56231":56232,"56232":56233,"56233":56234,"56234":56235,"56235":56236,"56236":56237,"56237":56238,"56238":56239,"56239":56240,"56240":56241,"56241":56242,"56242":56243,"56243":56244,"56244":56245,"56245":56246,"56246":56247,"56247":56248,"56248":56249,"56249":56250,"56250":56251,"56251":56252,"56252":56253,"56253":56254,"56254":56255,"56255":56256,"56256":56257,"56257":56258,"56258":56259,"56259":56260,"56260":56261,"56261":56262,"56262":56263,"56263":56264,"56264":56265,"56265":56266,"56266":56267,"56267":56268,"56268":56269,"56269":56270,"56270":56271,"56271":56272,"56272":56273,"56273":56274,"56274":56275,"56275":56276,"56276":56277,"56277":56278,"56278":56279,"56279":56280,"56280":56281,"56281":56282,"56282":56283,"56283":56284,"56284":56285,"56285":56286,"56286":56287,"56287":56288,"56288":56289,"56289":56290,"56290":56291,"56291":56292,"56292":56293,"56293":56294,"56294":56295,"56295":56296,"56296":56297,"56297":56298,"56298":56299,"56299":56300,"56300":56301,"56301":56302,"56302":56303,"56303":56304,"56304":56305,"56305":56306,"56306":56307,"56307":56308,"56308":56309,"56309":56310,"56310":56311,"56311":56312,"56312":56313,"56313":56314,"56314":56315,"56315":56316,"56316":56317,"56317":56318,"56318":56319,"56319":56320,"56320":56321,"56321":56322,"56322":56323,"56323":56324,"56324":56325,"56325":56326,"56326":56327,"56327":56328,"56328":56329,"56329":56330,"56330":56331,"56331":56332,"56332":56333,"56333":56334,"56334":56335,"56335":56336,"56336":56337,"56337":56338,"56338":56339,"56339":56340,"56340":56341,"56341":56342,"56342":56343,"56343":56344,"56344":56345,"56345":56346,"56346":56347,"56347":56348,"56348":56349,"56349":56350,"56350":56351,"56351":56352,"56352":56353,"56353":56354,"56354":56355,"56355":56356,"56356":56357,"56357":56358,"56358":56359,"56359":56360,"56360":56361,"56361":56362,"56362":56363,"56363":56364,"56364":56365,"56365":56366,"56366":56367,"56367":56368,"56368":56369,"56369":56370,"56370":56371,"56371":56372,"56372":56373,"56373":56374,"56374":56375,"56375":56376,"56376":56377,"56377":56378,"56378":56379,"56379":56380,"56380":56381,"56381":56382,"56382":56383,"56383":56384,"56384":56385,"56385":56386,"56386":56387,"56387":56388,"56388":56389,"56389":56390,"56390":56391,"56391":56392,"56392":56393,"56393":56394,"56394":56395,"56395":56396,"56396":56397,"56397":56398,"56398":56399,"56399":56400,"56400":56401,"56401":56402,"56402":56403,"56403":56404,"56404":56405,"56405":56406,"56406":56407,"56407":56408,"56408":56409,"56409":56410,"56410":56411,"56411":56412,"56412":56413,"56413":56414,"56414":56415,"56415":56416,"56416":56417,"56417":56418,"56418":56419,"56419":56420,"56420":56421,"56421":56422,"56422":56423,"56423":56424,"56424":56425,"56425":56426,"56426":56427,"56427":56428,"56428":56429,"56429":56430,"56430":56431,"56431":56432,"56432":56433,"56433":56434,"56434":56435,"56435":56436,"56436":56437,"56437":56438,"56438":56439,"56439":56440,"56440":56441,"56441":56442,"56442":56443,"56443":56444,"56444":56445,"56445":56446,"56446":56447,"56447":56448,"56448":56449,"56449":56450,"56450":56451,"56451":56452,"56452":56453,"56453":56454,"56454":56455,"56455":56456,"56456":56457,"56457":56458,"56458":56459,"56459":56460,"56460":56461,"56461":56462,"56462":56463,"56463":56464,"56464":56465,"56465":56466,"56466":56467,"56467":56468,"56468":56469,"56469":56470,"56470":56471,"56471":56472,"56472":56473,"56473":56474,"56474":56475,"56475":56476,"56476":56477,"56477":56478,"56478":56479,"56479":56480,"56480":56481,"56481":56482,"56482":56483,"56483":56484,"56484":56485,"56485":56486,"56486":56487,"56487":56488,"56488":56489,"56489":56490,"56490":56491,"56491":56492,"56492":56493,"56493":56494,"56494":56495,"56495":56496,"56496":56497,"56497":56498,"56498":56499,"56499":56500,"56500":56501,"56501":56502,"56502":56503,"56503":56504,"56504":56505,"56505":56506,"56506":56507,"56507":56508,"56508":56509,"56509":56510,"56510":56511,"56511":56512,"56512":56513,"56513":56514,"56514":56515,"56515":56516,"56516":56517,"56517":56518,"56518":56519,"56519":56520,"56520":56521,"56521":56522,"56522":56523,"56523":56524,"56524":56525,"56525":56526,"56526":56527,"56527":56528,"56528":56529,"56529":56530,"56530":56531,"56531":56532,"56532":56533,"56533":56534,"56534":56535,"56535":56536,"56536":56537,"56537":56538,"56538":56539,"56539":56540,"56540":56541,"56541":56542,"56542":56543,"56543":56544,"56544":56545,"56545":56546,"56546":56547,"56547":56548,"56548":56549,"56549":56550,"56550":56551,"56551":56552,"56552":56553,"56553":56554,"56554":56555,"56555":56556,"56556":56557,"56557":56558,"56558":56559,"56559":56560,"56560":56561,"56561":56562,"56562":56563,"56563":56564,"56564":56565,"56565":56566,"56566":56567,"56567":56568,"56568":56569,"56569":56570,"56570":56571,"56571":56572,"56572":56573,"56573":56574,"56574":56575,"56575":56576,"56576":56577,"56577":56578,"56578":56579,"56579":56580,"56580":56581,"56581":56582,"56582":56583,"56583":56584,"56584":56585,"56585":56586,"56586":56587,"56587":56588,"56588":56589,"56589":56590,"56590":56591,"56591":56592,"56592":56593,"56593":56594,"56594":56595,"56595":56596,"56596":56597,"56597":56598,"56598":56599,"56599":56600,"56600":56601,"56601":56602,"56602":56603,"56603":56604,"56604":56605,"56605":56606,"56606":56607,"56607":56608,"56608":56609,"56609":56610,"56610":56611,"56611":56612,"56612":56613,"56613":56614,"56614":56615,"56615":56616,"56616":56617,"56617":56618,"56618":56619,"56619":56620,"56620":56621,"56621":56622,"56622":56623,"56623":56624,"56624":56625,"56625":56626,"56626":56627,"56627":56628,"56628":56629,"56629":56630,"56630":56631,"56631":56632,"56632":56633,"56633":56634,"56634":56635,"56635":56636,"56636":56637,"56637":56638,"56638":56639,"56639":56640,"56640":56641,"56641":56642,"56642":56643,"56643":56644,"56644":56645,"56645":56646,"56646":56647,"56647":56648,"56648":56649,"56649":56650,"56650":56651,"56651":56652,"56652":56653,"56653":56654,"56654":56655,"56655":56656,"56656":56657,"56657":56658,"56658":56659,"56659":56660,"56660":56661,"56661":56662,"56662":56663,"56663":56664,"56664":56665,"56665":56666,"56666":56667,"56667":56668,"56668":56669,"56669":56670,"56670":56671,"56671":56672,"56672":56673,"56673":56674,"56674":56675,"56675":56676,"56676":56677,"56677":56678,"56678":56679,"56679":56680,"56680":56681,"56681":56682,"56682":56683,"56683":56684,"56684":56685,"56685":56686,"56686":56687,"56687":56688,"56688":56689,"56689":56690,"56690":56691,"56691":56692,"56692":56693,"56693":56694,"56694":56695,"56695":56696,"56696":56697,"56697":56698,"56698":56699,"56699":56700,"56700":56701,"56701":56702,"56702":56703,"56703":56704,"56704":56705,"56705":56706,"56706":56707,"56707":56708,"56708":56709,"56709":56710,"56710":56711,"56711":56712,"56712":56713,"56713":56714,"56714":56715,"56715":56716,"56716":56717,"56717":56718,"56718":56719,"56719":56720,"56720":56721,"56721":56722,"56722":56723,"56723":56724,"56724":56725,"56725":56726,"56726":56727,"56727":56728,"56728":56729,"56729":56730,"56730":56731,"56731":56732,"56732":56733,"56733":56734,"56734":56735,"56735":56736,"56736":56737,"56737":56738,"56738":56739,"56739":56740,"56740":56741,"56741":56742,"56742":56743,"56743":56744,"56744":56745,"56745":56746,"56746":56747,"56747":56748,"56748":56749,"56749":56750,"56750":56751,"56751":56752,"56752":56753,"56753":56754,"56754":56755,"56755":56756,"56756":56757,"56757":56758,"56758":56759,"56759":56760,"56760":56761,"56761":56762,"56762":56763,"56763":56764,"56764":56765,"56765":56766,"56766":56767,"56767":56768,"56768":56769,"56769":56770,"56770":56771,"56771":56772,"56772":56773,"56773":56774,"56774":56775,"56775":56776,"56776":56777,"56777":56778,"56778":56779,"56779":56780,"56780":56781,"56781":56782,"56782":56783,"56783":56784,"56784":56785,"56785":56786,"56786":56787,"56787":56788,"56788":56789,"56789":56790,"56790":56791,"56791":56792,"56792":56793,"56793":56794,"56794":56795,"56795":56796,"56796":56797,"56797":56798,"56798":56799,"56799":56800,"56800":56801,"56801":56802,"56802":56803,"56803":56804,"56804":56805,"56805":56806,"56806":56807,"56807":56808,"56808":56809,"56809":56810,"56810":56811,"56811":56812,"56812":56813,"56813":56814,"56814":56815,"56815":56816,"56816":56817,"56817":56818,"56818":56819,"56819":56820,"56820":56821,"56821":56822,"56822":56823,"56823":56824,"56824":56825,"56825":56826,"56826":56827,"56827":56828,"56828":56829,"56829":56830,"56830":56831,"56831":56832,"56832":56833,"56833":56834,"56834":56835,"56835":56836,"56836":56837,"56837":56838,"56838":56839,"56839":56840,"56840":56841,"56841":56842,"56842":56843,"56843":56844,"56844":56845,"56845":56846,"56846":56847,"56847":56848,"56848":56849,"56849":56850,"56850":56851,"56851":56852,"56852":56853,"56853":56854,"56854":56855,"56855":56856,"56856":56857,"56857":56858,"56858":56859,"56859":56860,"56860":56861,"56861":56862,"56862":56863,"56863":56864,"56864":56865,"56865":56866,"56866":56867,"56867":56868,"56868":56869,"56869":56870,"56870":56871,"56871":56872,"56872":56873,"56873":56874,"56874":56875,"56875":56876,"56876":56877,"56877":56878,"56878":56879,"56879":56880,"56880":56881,"56881":56882,"56882":56883,"56883":56884,"56884":56885,"56885":56886,"56886":56887,"56887":56888,"56888":56889,"56889":56890,"56890":56891,"56891":56892,"56892":56893,"56893":56894,"56894":56895,"56895":56896,"56896":56897,"56897":56898,"56898":56899,"56899":56900,"56900":56901,"56901":56902,"56902":56903,"56903":56904,"56904":56905,"56905":56906,"56906":56907,"56907":56908,"56908":56909,"56909":56910,"56910":56911,"56911":56912,"56912":56913,"56913":56914,"56914":56915,"56915":56916,"56916":56917,"56917":56918,"56918":56919,"56919":56920,"56920":56921,"56921":56922,"56922":56923,"56923":56924,"56924":56925,"56925":56926,"56926":56927,"56927":56928,"56928":56929,"56929":56930,"56930":56931,"56931":56932,"56932":56933,"56933":56934,"56934":56935,"56935":56936,"56936":56937,"56937":56938,"56938":56939,"56939":56940,"56940":56941,"56941":56942,"56942":56943,"56943":56944,"56944":56945,"56945":56946,"56946":56947,"56947":56948,"56948":56949,"56949":56950,"56950":56951,"56951":56952,"56952":56953,"56953":56954,"56954":56955,"56955":56956,"56956":56957,"56957":56958,"56958":56959,"56959":56960,"56960":56961,"56961":56962,"56962":56963,"56963":56964,"56964":56965,"56965":56966,"56966":56967,"56967":56968,"56968":56969,"56969":56970,"56970":56971,"56971":56972,"56972":56973,"56973":56974,"56974":56975,"56975":56976,"56976":56977,"56977":56978,"56978":56979,"56979":56980,"56980":56981,"56981":56982,"56982":56983,"56983":56984,"56984":56985,"56985":56986,"56986":56987,"56987":56988,"56988":56989,"56989":56990,"56990":56991,"56991":56992,"56992":56993,"56993":56994,"56994":56995,"56995":56996,"56996":56997,"56997":56998,"56998":56999,"56999":57000,"57000":57001,"57001":57002,"57002":57003,"57003":57004,"57004":57005,"57005":57006,"57006":57007,"57007":57008,"57008":57009,"57009":57010,"57010":57011,"57011":57012,"57012":57013,"57013":57014,"57014":57015,"57015":57016,"57016":57017,"57017":57018,"57018":57019,"57019":57020,"57020":57021,"57021":57022,"57022":57023,"57023":57024,"57024":57025,"57025":57026,"57026":57027,"57027":57028,"57028":57029,"57029":57030,"57030":57031,"57031":57032,"57032":57033,"57033":57034,"57034":57035,"57035":57036,"57036":57037,"57037":57038,"57038":57039,"57039":57040,"57040":57041,"57041":57042,"57042":57043,"57043":57044,"57044":57045,"57045":57046,"57046":57047,"57047":57048,"57048":57049,"57049":57050,"57050":57051,"57051":57052,"57052":57053,"57053":57054,"57054":57055,"57055":57056,"57056":57057,"57057":57058,"57058":57059,"57059":57060,"57060":57061,"57061":57062,"57062":57063,"57063":57064,"57064":57065,"57065":57066,"57066":57067,"57067":57068,"57068":57069,"57069":57070,"57070":57071,"57071":57072,"57072":57073,"57073":57074,"57074":57075,"57075":57076,"57076":57077,"57077":57078,"57078":57079,"57079":57080,"57080":57081,"57081":57082,"57082":57083,"57083":57084,"57084":57085,"57085":57086,"57086":57087,"57087":57088,"57088":57089,"57089":57090,"57090":57091,"57091":57092,"57092":57093,"57093":57094,"57094":57095,"57095":57096,"57096":57097,"57097":57098,"57098":57099,"57099":57100,"57100":57101,"57101":57102,"57102":57103,"57103":57104,"57104":57105,"57105":57106,"57106":57107,"57107":57108,"57108":57109,"57109":57110,"57110":57111,"57111":57112,"57112":57113,"57113":57114,"57114":57115,"57115":57116,"57116":57117,"57117":57118,"57118":57119,"57119":57120,"57120":57121,"57121":57122,"57122":57123,"57123":57124,"57124":57125,"57125":57126,"57126":57127,"57127":57128,"57128":57129,"57129":57130,"57130":57131,"57131":57132,"57132":57133,"57133":57134,"57134":57135,"57135":57136,"57136":57137,"57137":57138,"57138":57139,"57139":57140,"57140":57141,"57141":57142,"57142":57143,"57143":57144,"57144":57145,"57145":57146,"57146":57147,"57147":57148,"57148":57149,"57149":57150,"57150":57151,"57151":57152,"57152":57153,"57153":57154,"57154":57155,"57155":57156,"57156":57157,"57157":57158,"57158":57159,"57159":57160,"57160":57161,"57161":57162,"57162":57163,"57163":57164,"57164":57165,"57165":57166,"57166":57167,"57167":57168,"57168":57169,"57169":57170,"57170":57171,"57171":57172,"57172":57173,"57173":57174,"57174":57175,"57175":57176,"57176":57177,"57177":57178,"57178":57179,"57179":57180,"57180":57181,"57181":57182,"57182":57183,"57183":57184,"57184":57185,"57185":57186,"57186":57187,"57187":57188,"57188":57189,"57189":57190,"57190":57191,"57191":57192,"57192":57193,"57193":57194,"57194":57195,"57195":57196,"57196":57197,"57197":57198,"57198":57199,"57199":57200,"57200":57201,"57201":57202,"57202":57203,"57203":57204,"57204":57205,"57205":57206,"57206":57207,"57207":57208,"57208":57209,"57209":57210,"57210":57211,"57211":57212,"57212":57213,"57213":57214,"57214":57215,"57215":57216,"57216":57217,"57217":57218,"57218":57219,"57219":57220,"57220":57221,"57221":57222,"57222":57223,"57223":57224,"57224":57225,"57225":57226,"57226":57227,"57227":57228,"57228":57229,"57229":57230,"57230":57231,"57231":57232,"57232":57233,"57233":57234,"57234":57235,"57235":57236,"57236":57237,"57237":57238,"57238":57239,"57239":57240,"57240":57241,"57241":57242,"57242":57243,"57243":57244,"57244":57245,"57245":57246,"57246":57247,"57247":57248,"57248":57249,"57249":57250,"57250":57251,"57251":57252,"57252":57253,"57253":57254,"57254":57255,"57255":57256,"57256":57257,"57257":57258,"57258":57259,"57259":57260,"57260":57261,"57261":57262,"57262":57263,"57263":57264,"57264":57265,"57265":57266,"57266":57267,"57267":57268,"57268":57269,"57269":57270,"57270":57271,"57271":57272,"57272":57273,"57273":57274,"57274":57275,"57275":57276,"57276":57277,"57277":57278,"57278":57279,"57279":57280,"57280":57281,"57281":57282,"57282":57283,"57283":57284,"57284":57285,"57285":57286,"57286":57287,"57287":57288,"57288":57289,"57289":57290,"57290":57291,"57291":57292,"57292":57293,"57293":57294,"57294":57295,"57295":57296,"57296":57297,"57297":57298,"57298":57299,"57299":57300,"57300":57301,"57301":57302,"57302":57303,"57303":57304,"57304":57305,"57305":57306,"57306":57307,"57307":57308,"57308":57309,"57309":57310,"57310":57311,"57311":57312,"57312":57313,"57313":57314,"57314":57315,"57315":57316,"57316":57317,"57317":57318,"57318":57319,"57319":57320,"57320":57321,"57321":57322,"57322":57323,"57323":57324,"57324":57325,"57325":57326,"57326":57327,"57327":57328,"57328":57329,"57329":57330,"57330":57331,"57331":57332,"57332":57333,"57333":57334,"57334":57335,"57335":57336,"57336":57337,"57337":57338,"57338":57339,"57339":57340,"57340":57341,"57341":57342,"57342":57343,"57343":57344,"57344":57345,"57345":57346,"57346":57347,"57347":57348,"57348":57349,"57349":57350,"57350":57351,"57351":57352,"57352":57353,"57353":57354,"57354":57355,"57355":57356,"57356":57357,"57357":57358,"57358":57359,"57359":57360,"57360":57361,"57361":57362,"57362":57363,"57363":57364,"57364":57365,"57365":57366,"57366":57367,"57367":57368,"57368":57369,"57369":57370,"57370":57371,"57371":57372,"57372":57373,"57373":57374,"57374":57375,"57375":57376,"57376":57377,"57377":57378,"57378":57379,"57379":57380,"57380":57381,"57381":57382,"57382":57383,"57383":57384,"57384":57385,"57385":57386,"57386":57387,"57387":57388,"57388":57389,"57389":57390,"57390":57391,"57391":57392,"57392":57393,"57393":57394,"57394":57395,"57395":57396,"57396":57397,"57397":57398,"57398":57399,"57399":57400,"57400":57401,"57401":57402,"57402":57403,"57403":57404,"57404":57405,"57405":57406,"57406":57407,"57407":57408,"57408":57409,"57409":57410,"57410":57411,"57411":57412,"57412":57413,"57413":57414,"57414":57415,"57415":57416,"57416":57417,"57417":57418,"57418":57419,"57419":57420,"57420":57421,"57421":57422,"57422":57423,"57423":57424,"57424":57425,"57425":57426,"57426":57427,"57427":57428,"57428":57429,"57429":57430,"57430":57431,"57431":57432,"57432":57433,"57433":57434,"57434":57435,"57435":57436,"57436":57437,"57437":57438,"57438":57439,"57439":57440,"57440":57441,"57441":57442,"57442":57443,"57443":57444,"57444":57445,"57445":57446,"57446":57447,"57447":57448,"57448":57449,"57449":57450,"57450":57451,"57451":57452,"57452":57453,"57453":57454,"57454":57455,"57455":57456,"57456":57457,"57457":57458,"57458":57459,"57459":57460,"57460":57461,"57461":57462,"57462":57463,"57463":57464,"57464":57465,"57465":57466,"57466":57467,"57467":57468,"57468":57469,"57469":57470,"57470":57471,"57471":57472,"57472":57473,"57473":57474,"57474":57475,"57475":57476,"57476":57477,"57477":57478,"57478":57479,"57479":57480,"57480":57481,"57481":57482,"57482":57483,"57483":57484,"57484":57485,"57485":57486,"57486":57487,"57487":57488,"57488":57489,"57489":57490,"57490":57491,"57491":57492,"57492":57493,"57493":57494,"57494":57495,"57495":57496,"57496":57497,"57497":57498,"57498":57499,"57499":57500,"57500":57501,"57501":57502,"57502":57503,"57503":57504,"57504":57505,"57505":57506,"57506":57507,"57507":57508,"57508":57509,"57509":57510,"57510":57511,"57511":57512,"57512":57513,"57513":57514,"57514":57515,"57515":57516,"57516":57517,"57517":57518,"57518":57519,"57519":57520,"57520":57521,"57521":57522,"57522":57523,"57523":57524,"57524":57525,"57525":57526,"57526":57527,"57527":57528,"57528":57529,"57529":57530,"57530":57531,"57531":57532,"57532":57533,"57533":57534,"57534":57535,"57535":57536,"57536":57537,"57537":57538,"57538":57539,"57539":57540,"57540":57541,"57541":57542,"57542":57543,"57543":57544,"57544":57545,"57545":57546,"57546":57547,"57547":57548,"57548":57549,"57549":57550,"57550":57551,"57551":57552,"57552":57553,"57553":57554,"57554":57555,"57555":57556,"57556":57557,"57557":57558,"57558":57559,"57559":57560,"57560":57561,"57561":57562,"57562":57563,"57563":57564,"57564":57565,"57565":57566,"57566":57567,"57567":57568,"57568":57569,"57569":57570,"57570":57571,"57571":57572,"57572":57573,"57573":57574,"57574":57575,"57575":57576,"57576":57577,"57577":57578,"57578":57579,"57579":57580,"57580":57581,"57581":57582,"57582":57583,"57583":57584,"57584":57585,"57585":57586,"57586":57587,"57587":57588,"57588":57589,"57589":57590,"57590":57591,"57591":57592,"57592":57593,"57593":57594,"57594":57595,"57595":57596,"57596":57597,"57597":57598,"57598":57599,"57599":57600,"57600":57601,"57601":57602,"57602":57603,"57603":57604,"57604":57605,"57605":57606,"57606":57607,"57607":57608,"57608":57609,"57609":57610,"57610":57611,"57611":57612,"57612":57613,"57613":57614,"57614":57615,"57615":57616,"57616":57617,"57617":57618,"57618":57619,"57619":57620,"57620":57621,"57621":57622,"57622":57623,"57623":57624,"57624":57625,"57625":57626,"57626":57627,"57627":57628,"57628":57629,"57629":57630,"57630":57631,"57631":57632,"57632":57633,"57633":57634,"57634":57635,"57635":57636,"57636":57637,"57637":57638,"57638":57639,"57639":57640,"57640":57641,"57641":57642,"57642":57643,"57643":57644,"57644":57645,"57645":57646,"57646":57647,"57647":57648,"57648":57649,"57649":57650,"57650":57651,"57651":57652,"57652":57653,"57653":57654,"57654":57655,"57655":57656,"57656":57657,"57657":57658,"57658":57659,"57659":57660,"57660":57661,"57661":57662,"57662":57663,"57663":57664,"57664":57665,"57665":57666,"57666":57667,"57667":57668,"57668":57669,"57669":57670,"57670":57671,"57671":57672,"57672":57673,"57673":57674,"57674":57675,"57675":57676,"57676":57677,"57677":57678,"57678":57679,"57679":57680,"57680":57681,"57681":57682,"57682":57683,"57683":57684,"57684":57685,"57685":57686,"57686":57687,"57687":57688,"57688":57689,"57689":57690,"57690":57691,"57691":57692,"57692":57693,"57693":57694,"57694":57695,"57695":57696,"57696":57697,"57697":57698,"57698":57699,"57699":57700,"57700":57701,"57701":57702,"57702":57703,"57703":57704,"57704":57705,"57705":57706,"57706":57707,"57707":57708,"57708":57709,"57709":57710,"57710":57711,"57711":57712,"57712":57713,"57713":57714,"57714":57715,"57715":57716,"57716":57717,"57717":57718,"57718":57719,"57719":57720,"57720":57721,"57721":57722,"57722":57723,"57723":57724,"57724":57725,"57725":57726,"57726":57727,"57727":57728,"57728":57729,"57729":57730,"57730":57731,"57731":57732,"57732":57733,"57733":57734,"57734":57735,"57735":57736,"57736":57737,"57737":57738,"57738":57739,"57739":57740,"57740":57741,"57741":57742,"57742":57743,"57743":57744,"57744":57745,"57745":57746,"57746":57747,"57747":57748,"57748":57749,"57749":57750,"57750":57751,"57751":57752,"57752":57753,"57753":57754,"57754":57755,"57755":57756,"57756":57757,"57757":57758,"57758":57759,"57759":57760,"57760":57761,"57761":57762,"57762":57763,"57763":57764,"57764":57765,"57765":57766,"57766":57767,"57767":57768,"57768":57769,"57769":57770,"57770":57771,"57771":57772,"57772":57773,"57773":57774,"57774":57775,"57775":57776,"57776":57777,"57777":57778,"57778":57779,"57779":57780,"57780":57781,"57781":57782,"57782":57783,"57783":57784,"57784":57785,"57785":57786,"57786":57787,"57787":57788,"57788":57789,"57789":57790,"57790":57791,"57791":57792,"57792":57793,"57793":57794,"57794":57795,"57795":57796,"57796":57797,"57797":57798,"57798":57799,"57799":57800,"57800":57801,"57801":57802,"57802":57803,"57803":57804,"57804":57805,"57805":57806,"57806":57807,"57807":57808,"57808":57809,"57809":57810,"57810":57811,"57811":57812,"57812":57813,"57813":57814,"57814":57815,"57815":57816,"57816":57817,"57817":57818,"57818":57819,"57819":57820,"57820":57821,"57821":57822,"57822":57823,"57823":57824,"57824":57825,"57825":57826,"57826":57827,"57827":57828,"57828":57829,"57829":57830,"57830":57831,"57831":57832,"57832":57833,"57833":57834,"57834":57835,"57835":57836,"57836":57837,"57837":57838,"57838":57839,"57839":57840,"57840":57841,"57841":57842,"57842":57843,"57843":57844,"57844":57845,"57845":57846,"57846":57847,"57847":57848,"57848":57849,"57849":57850,"57850":57851,"57851":57852,"57852":57853,"57853":57854,"57854":57855,"57855":57856,"57856":57857,"57857":57858,"57858":57859,"57859":57860,"57860":57861,"57861":57862,"57862":57863,"57863":57864,"57864":57865,"57865":57866,"57866":57867,"57867":57868,"57868":57869,"57869":57870,"57870":57871,"57871":57872,"57872":57873,"57873":57874,"57874":57875,"57875":57876,"57876":57877,"57877":57878,"57878":57879,"57879":57880,"57880":57881,"57881":57882,"57882":57883,"57883":57884,"57884":57885,"57885":57886,"57886":57887,"57887":57888,"57888":57889,"57889":57890,"57890":57891,"57891":57892,"57892":57893,"57893":57894,"57894":57895,"57895":57896,"57896":57897,"57897":57898,"57898":57899,"57899":57900,"57900":57901,"57901":57902,"57902":57903,"57903":57904,"57904":57905,"57905":57906,"57906":57907,"57907":57908,"57908":57909,"57909":57910,"57910":57911,"57911":57912,"57912":57913,"57913":57914,"57914":57915,"57915":57916,"57916":57917,"57917":57918,"57918":57919,"57919":57920,"57920":57921,"57921":57922,"57922":57923,"57923":57924,"57924":57925,"57925":57926,"57926":57927,"57927":57928,"57928":57929,"57929":57930,"57930":57931,"57931":57932,"57932":57933,"57933":57934,"57934":57935,"57935":57936,"57936":57937,"57937":57938,"57938":57939,"57939":57940,"57940":57941,"57941":57942,"57942":57943,"57943":57944,"57944":57945,"57945":57946,"57946":57947,"57947":57948,"57948":57949,"57949":57950,"57950":57951,"57951":57952,"57952":57953,"57953":57954,"57954":57955,"57955":57956,"57956":57957,"57957":57958,"57958":57959,"57959":57960,"57960":57961,"57961":57962,"57962":57963,"57963":57964,"57964":57965,"57965":57966,"57966":57967,"57967":57968,"57968":57969,"57969":57970,"57970":57971,"57971":57972,"57972":57973,"57973":57974,"57974":57975,"57975":57976,"57976":57977,"57977":57978,"57978":57979,"57979":57980,"57980":57981,"57981":57982,"57982":57983,"57983":57984,"57984":57985,"57985":57986,"57986":57987,"57987":57988,"57988":57989,"57989":57990,"57990":57991,"57991":57992,"57992":57993,"57993":57994,"57994":57995,"57995":57996,"57996":57997,"57997":57998,"57998":57999,"57999":58000,"58000":58001,"58001":58002,"58002":58003,"58003":58004,"58004":58005,"58005":58006,"58006":58007,"58007":58008,"58008":58009,"58009":58010,"58010":58011,"58011":58012,"58012":58013,"58013":58014,"58014":58015,"58015":58016,"58016":58017,"58017":58018,"58018":58019,"58019":58020,"58020":58021,"58021":58022,"58022":58023,"58023":58024,"58024":58025,"58025":58026,"58026":58027,"58027":58028,"58028":58029,"58029":58030,"58030":58031,"58031":58032,"58032":58033,"58033":58034,"58034":58035,"58035":58036,"58036":58037,"58037":58038,"58038":58039,"58039":58040,"58040":58041,"58041":58042,"58042":58043,"58043":58044,"58044":58045,"58045":58046,"58046":58047,"58047":58048,"58048":58049,"58049":58050,"58050":58051,"58051":58052,"58052":58053,"58053":58054,"58054":58055,"58055":58056,"58056":58057,"58057":58058,"58058":58059,"58059":58060,"58060":58061,"58061":58062,"58062":58063,"58063":58064,"58064":58065,"58065":58066,"58066":58067,"58067":58068,"58068":58069,"58069":58070,"58070":58071,"58071":58072,"58072":58073,"58073":58074,"58074":58075,"58075":58076,"58076":58077,"58077":58078,"58078":58079,"58079":58080,"58080":58081,"58081":58082,"58082":58083,"58083":58084,"58084":58085,"58085":58086,"58086":58087,"58087":58088,"58088":58089,"58089":58090,"58090":58091,"58091":58092,"58092":58093,"58093":58094,"58094":58095,"58095":58096,"58096":58097,"58097":58098,"58098":58099,"58099":58100,"58100":58101,"58101":58102,"58102":58103,"58103":58104,"58104":58105,"58105":58106,"58106":58107,"58107":58108,"58108":58109,"58109":58110,"58110":58111,"58111":58112,"58112":58113,"58113":58114,"58114":58115,"58115":58116,"58116":58117,"58117":58118,"58118":58119,"58119":58120,"58120":58121,"58121":58122,"58122":58123,"58123":58124,"58124":58125,"58125":58126,"58126":58127,"58127":58128,"58128":58129,"58129":58130,"58130":58131,"58131":58132,"58132":58133,"58133":58134,"58134":58135,"58135":58136,"58136":58137,"58137":58138,"58138":58139,"58139":58140,"58140":58141,"58141":58142,"58142":58143,"58143":58144,"58144":58145,"58145":58146,"58146":58147,"58147":58148,"58148":58149,"58149":58150,"58150":58151,"58151":58152,"58152":58153,"58153":58154,"58154":58155,"58155":58156,"58156":58157,"58157":58158,"58158":58159,"58159":58160,"58160":58161,"58161":58162,"58162":58163,"58163":58164,"58164":58165,"58165":58166,"58166":58167,"58167":58168,"58168":58169,"58169":58170,"58170":58171,"58171":58172,"58172":58173,"58173":58174,"58174":58175,"58175":58176,"58176":58177,"58177":58178,"58178":58179,"58179":58180,"58180":58181,"58181":58182,"58182":58183,"58183":58184,"58184":58185,"58185":58186,"58186":58187,"58187":58188,"58188":58189,"58189":58190,"58190":58191,"58191":58192,"58192":58193,"58193":58194,"58194":58195,"58195":58196,"58196":58197,"58197":58198,"58198":58199,"58199":58200,"58200":58201,"58201":58202,"58202":58203,"58203":58204,"58204":58205,"58205":58206,"58206":58207,"58207":58208,"58208":58209,"58209":58210,"58210":58211,"58211":58212,"58212":58213,"58213":58214,"58214":58215,"58215":58216,"58216":58217,"58217":58218,"58218":58219,"58219":58220,"58220":58221,"58221":58222,"58222":58223,"58223":58224,"58224":58225,"58225":58226,"58226":58227,"58227":58228,"58228":58229,"58229":58230,"58230":58231,"58231":58232,"58232":58233,"58233":58234,"58234":58235,"58235":58236,"58236":58237,"58237":58238,"58238":58239,"58239":58240,"58240":58241,"58241":58242,"58242":58243,"58243":58244,"58244":58245,"58245":58246,"58246":58247,"58247":58248,"58248":58249,"58249":58250,"58250":58251,"58251":58252,"58252":58253,"58253":58254,"58254":58255,"58255":58256,"58256":58257,"58257":58258,"58258":58259,"58259":58260,"58260":58261,"58261":58262,"58262":58263,"58263":58264,"58264":58265,"58265":58266,"58266":58267,"58267":58268,"58268":58269,"58269":58270,"58270":58271,"58271":58272,"58272":58273,"58273":58274,"58274":58275,"58275":58276,"58276":58277,"58277":58278,"58278":58279,"58279":58280,"58280":58281,"58281":58282,"58282":58283,"58283":58284,"58284":58285,"58285":58286,"58286":58287,"58287":58288,"58288":58289,"58289":58290,"58290":58291,"58291":58292,"58292":58293,"58293":58294,"58294":58295,"58295":58296,"58296":58297,"58297":58298,"58298":58299,"58299":58300,"58300":58301,"58301":58302,"58302":58303,"58303":58304,"58304":58305,"58305":58306,"58306":58307,"58307":58308,"58308":58309,"58309":58310,"58310":58311,"58311":58312,"58312":58313,"58313":58314,"58314":58315,"58315":58316,"58316":58317,"58317":58318,"58318":58319,"58319":58320,"58320":58321,"58321":58322,"58322":58323,"58323":58324,"58324":58325,"58325":58326,"58326":58327,"58327":58328,"58328":58329,"58329":58330,"58330":58331,"58331":58332,"58332":58333,"58333":58334,"58334":58335,"58335":58336,"58336":58337,"58337":58338,"58338":58339,"58339":58340,"58340":58341,"58341":58342,"58342":58343,"58343":58344,"58344":58345,"58345":58346,"58346":58347,"58347":58348,"58348":58349,"58349":58350,"58350":58351,"58351":58352,"58352":58353,"58353":58354,"58354":58355,"58355":58356,"58356":58357,"58357":58358,"58358":58359,"58359":58360,"58360":58361,"58361":58362,"58362":58363,"58363":58364,"58364":58365,"58365":58366,"58366":58367,"58367":58368,"58368":58369,"58369":58370,"58370":58371,"58371":58372,"58372":58373,"58373":58374,"58374":58375,"58375":58376,"58376":58377,"58377":58378,"58378":58379,"58379":58380,"58380":58381,"58381":58382,"58382":58383,"58383":58384,"58384":58385,"58385":58386,"58386":58387,"58387":58388,"58388":58389,"58389":58390,"58390":58391,"58391":58392,"58392":58393,"58393":58394,"58394":58395,"58395":58396,"58396":58397,"58397":58398,"58398":58399,"58399":58400,"58400":58401,"58401":58402,"58402":58403,"58403":58404,"58404":58405,"58405":58406,"58406":58407,"58407":58408,"58408":58409,"58409":58410,"58410":58411,"58411":58412,"58412":58413,"58413":58414,"58414":58415,"58415":58416,"58416":58417,"58417":58418,"58418":58419,"58419":58420,"58420":58421,"58421":58422,"58422":58423,"58423":58424,"58424":58425,"58425":58426,"58426":58427,"58427":58428,"58428":58429,"58429":58430,"58430":58431,"58431":58432,"58432":58433,"58433":58434,"58434":58435,"58435":58436,"58436":58437,"58437":58438,"58438":58439,"58439":58440,"58440":58441,"58441":58442,"58442":58443,"58443":58444,"58444":58445,"58445":58446,"58446":58447,"58447":58448,"58448":58449,"58449":58450,"58450":58451,"58451":58452,"58452":58453,"58453":58454,"58454":58455,"58455":58456,"58456":58457,"58457":58458,"58458":58459,"58459":58460,"58460":58461,"58461":58462,"58462":58463,"58463":58464,"58464":58465,"58465":58466,"58466":58467,"58467":58468,"58468":58469,"58469":58470,"58470":58471,"58471":58472,"58472":58473,"58473":58474,"58474":58475,"58475":58476,"58476":58477,"58477":58478,"58478":58479,"58479":58480,"58480":58481,"58481":58482,"58482":58483,"58483":58484,"58484":58485,"58485":58486,"58486":58487,"58487":58488,"58488":58489,"58489":58490,"58490":58491,"58491":58492,"58492":58493,"58493":58494,"58494":58495,"58495":58496,"58496":58497,"58497":58498,"58498":58499,"58499":58500,"58500":58501,"58501":58502,"58502":58503,"58503":58504,"58504":58505,"58505":58506,"58506":58507,"58507":58508,"58508":58509,"58509":58510,"58510":58511,"58511":58512,"58512":58513,"58513":58514,"58514":58515,"58515":58516,"58516":58517,"58517":58518,"58518":58519,"58519":58520,"58520":58521,"58521":58522,"58522":58523,"58523":58524,"58524":58525,"58525":58526,"58526":58527,"58527":58528,"58528":58529,"58529":58530,"58530":58531,"58531":58532,"58532":58533,"58533":58534,"58534":58535,"58535":58536,"58536":58537,"58537":58538,"58538":58539,"58539":58540,"58540":58541,"58541":58542,"58542":58543,"58543":58544,"58544":58545,"58545":58546,"58546":58547,"58547":58548,"58548":58549,"58549":58550,"58550":58551,"58551":58552,"58552":58553,"58553":58554,"58554":58555,"58555":58556,"58556":58557,"58557":58558,"58558":58559,"58559":58560,"58560":58561,"58561":58562,"58562":58563,"58563":58564,"58564":58565,"58565":58566,"58566":58567,"58567":58568,"58568":58569,"58569":58570,"58570":58571,"58571":58572,"58572":58573,"58573":58574,"58574":58575,"58575":58576,"58576":58577,"58577":58578,"58578":58579,"58579":58580,"58580":58581,"58581":58582,"58582":58583,"58583":58584,"58584":58585,"58585":58586,"58586":58587,"58587":58588,"58588":58589,"58589":58590,"58590":58591,"58591":58592,"58592":58593,"58593":58594,"58594":58595,"58595":58596,"58596":58597,"58597":58598,"58598":58599,"58599":58600,"58600":58601,"58601":58602,"58602":58603,"58603":58604,"58604":58605,"58605":58606,"58606":58607,"58607":58608,"58608":58609,"58609":58610,"58610":58611,"58611":58612,"58612":58613,"58613":58614,"58614":58615,"58615":58616,"58616":58617,"58617":58618,"58618":58619,"58619":58620,"58620":58621,"58621":58622,"58622":58623,"58623":58624,"58624":58625,"58625":58626,"58626":58627,"58627":58628,"58628":58629,"58629":58630,"58630":58631,"58631":58632,"58632":58633,"58633":58634,"58634":58635,"58635":58636,"58636":58637,"58637":58638,"58638":58639,"58639":58640,"58640":58641,"58641":58642,"58642":58643,"58643":58644,"58644":58645,"58645":58646,"58646":58647,"58647":58648,"58648":58649,"58649":58650,"58650":58651,"58651":58652,"58652":58653,"58653":58654,"58654":58655,"58655":58656,"58656":58657,"58657":58658,"58658":58659,"58659":58660,"58660":58661,"58661":58662,"58662":58663,"58663":58664,"58664":58665,"58665":58666,"58666":58667,"58667":58668,"58668":58669,"58669":58670,"58670":58671,"58671":58672,"58672":58673,"58673":58674,"58674":58675,"58675":58676,"58676":58677,"58677":58678,"58678":58679,"58679":58680,"58680":58681,"58681":58682,"58682":58683,"58683":58684,"58684":58685,"58685":58686,"58686":58687,"58687":58688,"58688":58689,"58689":58690,"58690":58691,"58691":58692,"58692":58693,"58693":58694,"58694":58695,"58695":58696,"58696":58697,"58697":58698,"58698":58699,"58699":58700,"58700":58701,"58701":58702,"58702":58703,"58703":58704,"58704":58705,"58705":58706,"58706":58707,"58707":58708,"58708":58709,"58709":58710,"58710":58711,"58711":58712,"58712":58713,"58713":58714,"58714":58715,"58715":58716,"58716":58717,"58717":58718,"58718":58719,"58719":58720,"58720":58721,"58721":58722,"58722":58723,"58723":58724,"58724":58725,"58725":58726,"58726":58727,"58727":58728,"58728":58729,"58729":58730,"58730":58731,"58731":58732,"58732":58733,"58733":58734,"58734":58735,"58735":58736,"58736":58737,"58737":58738,"58738":58739,"58739":58740,"58740":58741,"58741":58742,"58742":58743,"58743":58744,"58744":58745,"58745":58746,"58746":58747,"58747":58748,"58748":58749,"58749":58750,"58750":58751,"58751":58752,"58752":58753,"58753":58754,"58754":58755,"58755":58756,"58756":58757,"58757":58758,"58758":58759,"58759":58760,"58760":58761,"58761":58762,"58762":58763,"58763":58764,"58764":58765,"58765":58766,"58766":58767,"58767":58768,"58768":58769,"58769":58770,"58770":58771,"58771":58772,"58772":58773,"58773":58774,"58774":58775,"58775":58776,"58776":58777,"58777":58778,"58778":58779,"58779":58780,"58780":58781,"58781":58782,"58782":58783,"58783":58784,"58784":58785,"58785":58786,"58786":58787,"58787":58788,"58788":58789,"58789":58790,"58790":58791,"58791":58792,"58792":58793,"58793":58794,"58794":58795,"58795":58796,"58796":58797,"58797":58798,"58798":58799,"58799":58800,"58800":58801,"58801":58802,"58802":58803,"58803":58804,"58804":58805,"58805":58806,"58806":58807,"58807":58808,"58808":58809,"58809":58810,"58810":58811,"58811":58812,"58812":58813,"58813":58814,"58814":58815,"58815":58816,"58816":58817,"58817":58818,"58818":58819,"58819":58820,"58820":58821,"58821":58822,"58822":58823,"58823":58824,"58824":58825,"58825":58826,"58826":58827,"58827":58828,"58828":58829,"58829":58830,"58830":58831,"58831":58832,"58832":58833,"58833":58834,"58834":58835,"58835":58836,"58836":58837,"58837":58838,"58838":58839,"58839":58840,"58840":58841,"58841":58842,"58842":58843,"58843":58844,"58844":58845,"58845":58846,"58846":58847,"58847":58848,"58848":58849,"58849":58850,"58850":58851,"58851":58852,"58852":58853,"58853":58854,"58854":58855,"58855":58856,"58856":58857,"58857":58858,"58858":58859,"58859":58860,"58860":58861,"58861":58862,"58862":58863,"58863":58864,"58864":58865,"58865":58866,"58866":58867,"58867":58868,"58868":58869,"58869":58870,"58870":58871,"58871":58872,"58872":58873,"58873":58874,"58874":58875,"58875":58876,"58876":58877,"58877":58878,"58878":58879,"58879":58880,"58880":58881,"58881":58882,"58882":58883,"58883":58884,"58884":58885,"58885":58886,"58886":58887,"58887":58888,"58888":58889,"58889":58890,"58890":58891,"58891":58892,"58892":58893,"58893":58894,"58894":58895,"58895":58896,"58896":58897,"58897":58898,"58898":58899,"58899":58900,"58900":58901,"58901":58902,"58902":58903,"58903":58904,"58904":58905,"58905":58906,"58906":58907,"58907":58908,"58908":58909,"58909":58910,"58910":58911,"58911":58912,"58912":58913,"58913":58914,"58914":58915,"58915":58916,"58916":58917,"58917":58918,"58918":58919,"58919":58920,"58920":58921,"58921":58922,"58922":58923,"58923":58924,"58924":58925,"58925":58926,"58926":58927,"58927":58928,"58928":58929,"58929":58930,"58930":58931,"58931":58932,"58932":58933,"58933":58934,"58934":58935,"58935":58936,"58936":58937,"58937":58938,"58938":58939,"58939":58940,"58940":58941,"58941":58942,"58942":58943,"58943":58944,"58944":58945,"58945":58946,"58946":58947,"58947":58948,"58948":58949,"58949":58950,"58950":58951,"58951":58952,"58952":58953,"58953":58954,"58954":58955,"58955":58956,"58956":58957,"58957":58958,"58958":58959,"58959":58960,"58960":58961,"58961":58962,"58962":58963,"58963":58964,"58964":58965,"58965":58966,"58966":58967,"58967":58968,"58968":58969,"58969":58970,"58970":58971,"58971":58972,"58972":58973,"58973":58974,"58974":58975,"58975":58976,"58976":58977,"58977":58978,"58978":58979,"58979":58980,"58980":58981,"58981":58982,"58982":58983,"58983":58984,"58984":58985,"58985":58986,"58986":58987,"58987":58988,"58988":58989,"58989":58990,"58990":58991,"58991":58992,"58992":58993,"58993":58994,"58994":58995,"58995":58996,"58996":58997,"58997":58998,"58998":58999,"58999":59000,"59000":59001,"59001":59002,"59002":59003,"59003":59004,"59004":59005,"59005":59006,"59006":59007,"59007":59008,"59008":59009,"59009":59010,"59010":59011,"59011":59012,"59012":59013,"59013":59014,"59014":59015,"59015":59016,"59016":59017,"59017":59018,"59018":59019,"59019":59020,"59020":59021,"59021":59022,"59022":59023,"59023":59024,"59024":59025,"59025":59026,"59026":59027,"59027":59028,"59028":59029,"59029":59030,"59030":59031,"59031":59032,"59032":59033,"59033":59034,"59034":59035,"59035":59036,"59036":59037,"59037":59038,"59038":59039,"59039":59040,"59040":59041,"59041":59042,"59042":59043,"59043":59044,"59044":59045,"59045":59046,"59046":59047,"59047":59048,"59048":59049,"59049":59050,"59050":59051,"59051":59052,"59052":59053,"59053":59054,"59054":59055,"59055":59056,"59056":59057,"59057":59058,"59058":59059,"59059":59060,"59060":59061,"59061":59062,"59062":59063,"59063":59064,"59064":59065,"59065":59066,"59066":59067,"59067":59068,"59068":59069,"59069":59070,"59070":59071,"59071":59072,"59072":59073,"59073":59074,"59074":59075,"59075":59076,"59076":59077,"59077":59078,"59078":59079,"59079":59080,"59080":59081,"59081":59082,"59082":59083,"59083":59084,"59084":59085,"59085":59086,"59086":59087,"59087":59088,"59088":59089,"59089":59090,"59090":59091,"59091":59092,"59092":59093,"59093":59094,"59094":59095,"59095":59096,"59096":59097,"59097":59098,"59098":59099,"59099":59100,"59100":59101,"59101":59102,"59102":59103,"59103":59104,"59104":59105,"59105":59106,"59106":59107,"59107":59108,"59108":59109,"59109":59110,"59110":59111,"59111":59112,"59112":59113,"59113":59114,"59114":59115,"59115":59116,"59116":59117,"59117":59118,"59118":59119,"59119":59120,"59120":59121,"59121":59122,"59122":59123,"59123":59124,"59124":59125,"59125":59126,"59126":59127,"59127":59128,"59128":59129,"59129":59130,"59130":59131,"59131":59132,"59132":59133,"59133":59134,"59134":59135,"59135":59136,"59136":59137,"59137":59138,"59138":59139,"59139":59140,"59140":59141,"59141":59142,"59142":59143,"59143":59144,"59144":59145,"59145":59146,"59146":59147,"59147":59148,"59148":59149,"59149":59150,"59150":59151,"59151":59152,"59152":59153,"59153":59154,"59154":59155,"59155":59156,"59156":59157,"59157":59158,"59158":59159,"59159":59160,"59160":59161,"59161":59162,"59162":59163,"59163":59164,"59164":59165,"59165":59166,"59166":59167,"59167":59168,"59168":59169,"59169":59170,"59170":59171,"59171":59172,"59172":59173,"59173":59174,"59174":59175,"59175":59176,"59176":59177,"59177":59178,"59178":59179,"59179":59180,"59180":59181,"59181":59182,"59182":59183,"59183":59184,"59184":59185,"59185":59186,"59186":59187,"59187":59188,"59188":59189,"59189":59190,"59190":59191,"59191":59192,"59192":59193,"59193":59194,"59194":59195,"59195":59196,"59196":59197,"59197":59198,"59198":59199,"59199":59200,"59200":59201,"59201":59202,"59202":59203,"59203":59204,"59204":59205,"59205":59206,"59206":59207,"59207":59208,"59208":59209,"59209":59210,"59210":59211,"59211":59212,"59212":59213,"59213":59214,"59214":59215,"59215":59216,"59216":59217,"59217":59218,"59218":59219,"59219":59220,"59220":59221,"59221":59222,"59222":59223,"59223":59224,"59224":59225,"59225":59226,"59226":59227,"59227":59228,"59228":59229,"59229":59230,"59230":59231,"59231":59232,"59232":59233,"59233":59234,"59234":59235,"59235":59236,"59236":59237,"59237":59238,"59238":59239,"59239":59240,"59240":59241,"59241":59242,"59242":59243,"59243":59244,"59244":59245,"59245":59246,"59246":59247,"59247":59248,"59248":59249,"59249":59250,"59250":59251,"59251":59252,"59252":59253,"59253":59254,"59254":59255,"59255":59256,"59256":59257,"59257":59258,"59258":59259,"59259":59260,"59260":59261,"59261":59262,"59262":59263,"59263":59264,"59264":59265,"59265":59266,"59266":59267,"59267":59268,"59268":59269,"59269":59270,"59270":59271,"59271":59272,"59272":59273,"59273":59274,"59274":59275,"59275":59276,"59276":59277,"59277":59278,"59278":59279,"59279":59280,"59280":59281,"59281":59282,"59282":59283,"59283":59284,"59284":59285,"59285":59286,"59286":59287,"59287":59288,"59288":59289,"59289":59290,"59290":59291,"59291":59292,"59292":59293,"59293":59294,"59294":59295,"59295":59296,"59296":59297,"59297":59298,"59298":59299,"59299":59300,"59300":59301,"59301":59302,"59302":59303,"59303":59304,"59304":59305,"59305":59306,"59306":59307,"59307":59308,"59308":59309,"59309":59310,"59310":59311,"59311":59312,"59312":59313,"59313":59314,"59314":59315,"59315":59316,"59316":59317,"59317":59318,"59318":59319,"59319":59320,"59320":59321,"59321":59322,"59322":59323,"59323":59324,"59324":59325,"59325":59326,"59326":59327,"59327":59328,"59328":59329,"59329":59330,"59330":59331,"59331":59332,"59332":59333,"59333":59334,"59334":59335,"59335":59336,"59336":59337,"59337":59338,"59338":59339,"59339":59340,"59340":59341,"59341":59342,"59342":59343,"59343":59344,"59344":59345,"59345":59346,"59346":59347,"59347":59348,"59348":59349,"59349":59350,"59350":59351,"59351":59352,"59352":59353,"59353":59354,"59354":59355,"59355":59356,"59356":59357,"59357":59358,"59358":59359,"59359":59360,"59360":59361,"59361":59362,"59362":59363,"59363":59364,"59364":59365,"59365":59366,"59366":59367,"59367":59368,"59368":59369,"59369":59370,"59370":59371,"59371":59372,"59372":59373,"59373":59374,"59374":59375,"59375":59376,"59376":59377,"59377":59378,"59378":59379,"59379":59380,"59380":59381,"59381":59382,"59382":59383,"59383":59384,"59384":59385,"59385":59386,"59386":59387,"59387":59388,"59388":59389,"59389":59390,"59390":59391,"59391":59392,"59392":59393,"59393":59394,"59394":59395,"59395":59396,"59396":59397,"59397":59398,"59398":59399,"59399":59400,"59400":59401,"59401":59402,"59402":59403,"59403":59404,"59404":59405,"59405":59406,"59406":59407,"59407":59408,"59408":59409,"59409":59410,"59410":59411,"59411":59412,"59412":59413,"59413":59414,"59414":59415,"59415":59416,"59416":59417,"59417":59418,"59418":59419,"59419":59420,"59420":59421,"59421":59422,"59422":59423,"59423":59424,"59424":59425,"59425":59426,"59426":59427,"59427":59428,"59428":59429,"59429":59430,"59430":59431,"59431":59432,"59432":59433,"59433":59434,"59434":59435,"59435":59436,"59436":59437,"59437":59438,"59438":59439,"59439":59440,"59440":59441,"59441":59442,"59442":59443,"59443":59444,"59444":59445,"59445":59446,"59446":59447,"59447":59448,"59448":59449,"59449":59450,"59450":59451,"59451":59452,"59452":59453,"59453":59454,"59454":59455,"59455":59456,"59456":59457,"59457":59458,"59458":59459,"59459":59460,"59460":59461,"59461":59462,"59462":59463,"59463":59464,"59464":59465,"59465":59466,"59466":59467,"59467":59468,"59468":59469,"59469":59470,"59470":59471,"59471":59472,"59472":59473,"59473":59474,"59474":59475,"59475":59476,"59476":59477,"59477":59478,"59478":59479,"59479":59480,"59480":59481,"59481":59482,"59482":59483,"59483":59484,"59484":59485,"59485":59486,"59486":59487,"59487":59488,"59488":59489,"59489":59490,"59490":59491,"59491":59492,"59492":59493,"59493":59494,"59494":59495,"59495":59496,"59496":59497,"59497":59498,"59498":59499,"59499":59500,"59500":59501,"59501":59502,"59502":59503,"59503":59504,"59504":59505,"59505":59506,"59506":59507,"59507":59508,"59508":59509,"59509":59510,"59510":59511,"59511":59512,"59512":59513,"59513":59514,"59514":59515,"59515":59516,"59516":59517,"59517":59518,"59518":59519,"59519":59520,"59520":59521,"59521":59522,"59522":59523,"59523":59524,"59524":59525,"59525":59526,"59526":59527,"59527":59528,"59528":59529,"59529":59530,"59530":59531,"59531":59532,"59532":59533,"59533":59534,"59534":59535,"59535":59536,"59536":59537,"59537":59538,"59538":59539,"59539":59540,"59540":59541,"59541":59542,"59542":59543,"59543":59544,"59544":59545,"59545":59546,"59546":59547,"59547":59548,"59548":59549,"59549":59550,"59550":59551,"59551":59552,"59552":59553,"59553":59554,"59554":59555,"59555":59556,"59556":59557,"59557":59558,"59558":59559,"59559":59560,"59560":59561,"59561":59562,"59562":59563,"59563":59564,"59564":59565,"59565":59566,"59566":59567,"59567":59568,"59568":59569,"59569":59570,"59570":59571,"59571":59572,"59572":59573,"59573":59574,"59574":59575,"59575":59576,"59576":59577,"59577":59578,"59578":59579,"59579":59580,"59580":59581,"59581":59582,"59582":59583,"59583":59584,"59584":59585,"59585":59586,"59586":59587,"59587":59588,"59588":59589,"59589":59590,"59590":59591,"59591":59592,"59592":59593,"59593":59594,"59594":59595,"59595":59596,"59596":59597,"59597":59598,"59598":59599,"59599":59600,"59600":59601,"59601":59602,"59602":59603,"59603":59604,"59604":59605,"59605":59606,"59606":59607,"59607":59608,"59608":59609,"59609":59610,"59610":59611,"59611":59612,"59612":59613,"59613":59614,"59614":59615,"59615":59616,"59616":59617,"59617":59618,"59618":59619,"59619":59620,"59620":59621,"59621":59622,"59622":59623,"59623":59624,"59624":59625,"59625":59626,"59626":59627,"59627":59628,"59628":59629,"59629":59630,"59630":59631,"59631":59632,"59632":59633,"59633":59634,"59634":59635,"59635":59636,"59636":59637,"59637":59638,"59638":59639,"59639":59640,"59640":59641,"59641":59642,"59642":59643,"59643":59644,"59644":59645,"59645":59646,"59646":59647,"59647":59648,"59648":59649,"59649":59650,"59650":59651,"59651":59652,"59652":59653,"59653":59654,"59654":59655,"59655":59656,"59656":59657,"59657":59658,"59658":59659,"59659":59660,"59660":59661,"59661":59662,"59662":59663,"59663":59664,"59664":59665,"59665":59666,"59666":59667,"59667":59668,"59668":59669,"59669":59670,"59670":59671,"59671":59672,"59672":59673,"59673":59674,"59674":59675,"59675":59676,"59676":59677,"59677":59678,"59678":59679,"59679":59680,"59680":59681,"59681":59682,"59682":59683,"59683":59684,"59684":59685,"59685":59686,"59686":59687,"59687":59688,"59688":59689,"59689":59690,"59690":59691,"59691":59692,"59692":59693,"59693":59694,"59694":59695,"59695":59696,"59696":59697,"59697":59698,"59698":59699,"59699":59700,"59700":59701,"59701":59702,"59702":59703,"59703":59704,"59704":59705,"59705":59706,"59706":59707,"59707":59708,"59708":59709,"59709":59710,"59710":59711,"59711":59712,"59712":59713,"59713":59714,"59714":59715,"59715":59716,"59716":59717,"59717":59718,"59718":59719,"59719":59720,"59720":59721,"59721":59722,"59722":59723,"59723":59724,"59724":59725,"59725":59726,"59726":59727,"59727":59728,"59728":59729,"59729":59730,"59730":59731,"59731":59732,"59732":59733,"59733":59734,"59734":59735,"59735":59736,"59736":59737,"59737":59738,"59738":59739,"59739":59740,"59740":59741,"59741":59742,"59742":59743,"59743":59744,"59744":59745,"59745":59746,"59746":59747,"59747":59748,"59748":59749,"59749":59750,"59750":59751,"59751":59752,"59752":59753,"59753":59754,"59754":59755,"59755":59756,"59756":59757,"59757":59758,"59758":59759,"59759":59760,"59760":59761,"59761":59762,"59762":59763,"59763":59764,"59764":59765,"59765":59766,"59766":59767,"59767":59768,"59768":59769,"59769":59770,"59770":59771,"59771":59772,"59772":59773,"59773":59774,"59774":59775,"59775":59776,"59776":59777,"59777":59778,"59778":59779,"59779":59780,"59780":59781,"59781":59782,"59782":59783,"59783":59784,"59784":59785,"59785":59786,"59786":59787,"59787":59788,"59788":59789,"59789":59790,"59790":59791,"59791":59792,"59792":59793,"59793":59794,"59794":59795,"59795":59796,"59796":59797,"59797":59798,"59798":59799,"59799":59800,"59800":59801,"59801":59802,"59802":59803,"59803":59804,"59804":59805,"59805":59806,"59806":59807,"59807":59808,"59808":59809,"59809":59810,"59810":59811,"59811":59812,"59812":59813,"59813":59814,"59814":59815,"59815":59816,"59816":59817,"59817":59818,"59818":59819,"59819":59820,"59820":59821,"59821":59822,"59822":59823,"59823":59824,"59824":59825,"59825":59826,"59826":59827,"59827":59828,"59828":59829,"59829":59830,"59830":59831,"59831":59832,"59832":59833,"59833":59834,"59834":59835,"59835":59836,"59836":59837,"59837":59838,"59838":59839,"59839":59840,"59840":59841,"59841":59842,"59842":59843,"59843":59844,"59844":59845,"59845":59846,"59846":59847,"59847":59848,"59848":59849,"59849":59850,"59850":59851,"59851":59852,"59852":59853,"59853":59854,"59854":59855,"59855":59856,"59856":59857,"59857":59858,"59858":59859,"59859":59860,"59860":59861,"59861":59862,"59862":59863,"59863":59864,"59864":59865,"59865":59866,"59866":59867,"59867":59868,"59868":59869,"59869":59870,"59870":59871,"59871":59872,"59872":59873,"59873":59874,"59874":59875,"59875":59876,"59876":59877,"59877":59878,"59878":59879,"59879":59880,"59880":59881,"59881":59882,"59882":59883,"59883":59884,"59884":59885,"59885":59886,"59886":59887,"59887":59888,"59888":59889,"59889":59890,"59890":59891,"59891":59892,"59892":59893,"59893":59894,"59894":59895,"59895":59896,"59896":59897,"59897":59898,"59898":59899,"59899":59900,"59900":59901,"59901":59902,"59902":59903,"59903":59904,"59904":59905,"59905":59906,"59906":59907,"59907":59908,"59908":59909,"59909":59910,"59910":59911,"59911":59912,"59912":59913,"59913":59914,"59914":59915,"59915":59916,"59916":59917,"59917":59918,"59918":59919,"59919":59920,"59920":59921,"59921":59922,"59922":59923,"59923":59924,"59924":59925,"59925":59926,"59926":59927,"59927":59928,"59928":59929,"59929":59930,"59930":59931,"59931":59932,"59932":59933,"59933":59934,"59934":59935,"59935":59936,"59936":59937,"59937":59938,"59938":59939,"59939":59940,"59940":59941,"59941":59942,"59942":59943,"59943":59944,"59944":59945,"59945":59946,"59946":59947,"59947":59948,"59948":59949,"59949":59950,"59950":59951,"59951":59952,"59952":59953,"59953":59954,"59954":59955,"59955":59956,"59956":59957,"59957":59958,"59958":59959,"59959":59960,"59960":59961,"59961":59962,"59962":59963,"59963":59964,"59964":59965,"59965":59966,"59966":59967,"59967":59968,"59968":59969,"59969":59970,"59970":59971,"59971":59972,"59972":59973,"59973":59974,"59974":59975,"59975":59976,"59976":59977,"59977":59978,"59978":59979,"59979":59980,"59980":59981,"59981":59982,"59982":59983,"59983":59984,"59984":59985,"59985":59986,"59986":59987,"59987":59988,"59988":59989,"59989":59990,"59990":59991,"59991":59992,"59992":59993,"59993":59994,"59994":59995,"59995":59996,"59996":59997,"59997":59998,"59998":59999,"59999":60000,"60000":60001,"60001":60002,"60002":60003,"60003":60004,"60004":60005,"60005":60006,"60006":60007,"60007":60008,"60008":60009,"60009":60010,"60010":60011,"60011":60012,"60012":60013,"60013":60014,"60014":60015,"60015":60016,"60016":60017,"60017":60018,"60018":60019,"60019":60020,"60020":60021,"60021":60022,"60022":60023,"60023":60024,"60024":60025,"60025":60026,"60026":60027,"60027":60028,"60028":60029,"60029":60030,"60030":60031,"60031":60032,"60032":60033,"60033":60034,"60034":60035,"60035":60036,"60036":60037,"60037":60038,"60038":60039,"60039":60040,"60040":60041,"60041":60042,"60042":60043,"60043":60044,"60044":60045,"60045":60046,"60046":60047,"60047":60048,"60048":60049,"60049":60050,"60050":60051,"60051":60052,"60052":60053,"60053":60054,"60054":60055,"60055":60056,"60056":60057,"60057":60058,"60058":60059,"60059":60060,"60060":60061,"60061":60062,"60062":60063,"60063":60064,"60064":60065,"60065":60066,"60066":60067,"60067":60068,"60068":60069,"60069":60070,"60070":60071,"60071":60072,"60072":60073,"60073":60074,"60074":60075,"60075":60076,"60076":60077,"60077":60078,"60078":60079,"60079":60080,"60080":60081,"60081":60082,"60082":60083,"60083":60084,"60084":60085,"60085":60086,"60086":60087,"60087":60088,"60088":60089,"60089":60090,"60090":60091,"60091":60092,"60092":60093,"60093":60094,"60094":60095,"60095":60096,"60096":60097,"60097":60098,"60098":60099,"60099":60100,"60100":60101,"60101":60102,"60102":60103,"60103":60104,"60104":60105,"60105":60106,"60106":60107,"60107":60108,"60108":60109,"60109":60110,"60110":60111,"60111":60112,"60112":60113,"60113":60114,"60114":60115,"60115":60116,"60116":60117,"60117":60118,"60118":60119,"60119":60120,"60120":60121,"60121":60122,"60122":60123,"60123":60124,"60124":60125,"60125":60126,"60126":60127,"60127":60128,"60128":60129,"60129":60130,"60130":60131,"60131":60132,"60132":60133,"60133":60134,"60134":60135,"60135":60136,"60136":60137,"60137":60138,"60138":60139,"60139":60140,"60140":60141,"60141":60142,"60142":60143,"60143":60144,"60144":60145,"60145":60146,"60146":60147,"60147":60148,"60148":60149,"60149":60150,"60150":60151,"60151":60152,"60152":60153,"60153":60154,"60154":60155,"60155":60156,"60156":60157,"60157":60158,"60158":60159,"60159":60160,"60160":60161,"60161":60162,"60162":60163,"60163":60164,"60164":60165,"60165":60166,"60166":60167,"60167":60168,"60168":60169,"60169":60170,"60170":60171,"60171":60172,"60172":60173,"60173":60174,"60174":60175,"60175":60176,"60176":60177,"60177":60178,"60178":60179,"60179":60180,"60180":60181,"60181":60182,"60182":60183,"60183":60184,"60184":60185,"60185":60186,"60186":60187,"60187":60188,"60188":60189,"60189":60190,"60190":60191,"60191":60192,"60192":60193,"60193":60194,"60194":60195,"60195":60196,"60196":60197,"60197":60198,"60198":60199,"60199":60200,"60200":60201,"60201":60202,"60202":60203,"60203":60204,"60204":60205,"60205":60206,"60206":60207,"60207":60208,"60208":60209,"60209":60210,"60210":60211,"60211":60212,"60212":60213,"60213":60214,"60214":60215,"60215":60216,"60216":60217,"60217":60218,"60218":60219,"60219":60220,"60220":60221,"60221":60222,"60222":60223,"60223":60224,"60224":60225,"60225":60226,"60226":60227,"60227":60228,"60228":60229,"60229":60230,"60230":60231,"60231":60232,"60232":60233,"60233":60234,"60234":60235,"60235":60236,"60236":60237,"60237":60238,"60238":60239,"60239":60240,"60240":60241,"60241":60242,"60242":60243,"60243":60244,"60244":60245,"60245":60246,"60246":60247,"60247":60248,"60248":60249,"60249":60250,"60250":60251,"60251":60252,"60252":60253,"60253":60254,"60254":60255,"60255":60256,"60256":60257,"60257":60258,"60258":60259,"60259":60260,"60260":60261,"60261":60262,"60262":60263,"60263":60264,"60264":60265,"60265":60266,"60266":60267,"60267":60268,"60268":60269,"60269":60270,"60270":60271,"60271":60272,"60272":60273,"60273":60274,"60274":60275,"60275":60276,"60276":60277,"60277":60278,"60278":60279,"60279":60280,"60280":60281,"60281":60282,"60282":60283,"60283":60284,"60284":60285,"60285":60286,"60286":60287,"60287":60288,"60288":60289,"60289":60290,"60290":60291,"60291":60292,"60292":60293,"60293":60294,"60294":60295,"60295":60296,"60296":60297,"60297":60298,"60298":60299,"60299":60300,"60300":60301,"60301":60302,"60302":60303,"60303":60304,"60304":60305,"60305":60306,"60306":60307,"60307":60308,"60308":60309,"60309":60310,"60310":60311,"60311":60312,"60312":60313,"60313":60314,"60314":60315,"60315":60316,"60316":60317,"60317":60318,"60318":60319,"60319":60320,"60320":60321,"60321":60322,"60322":60323,"60323":60324,"60324":60325,"60325":60326,"60326":60327,"60327":60328,"60328":60329,"60329":60330,"60330":60331,"60331":60332,"60332":60333,"60333":60334,"60334":60335,"60335":60336,"60336":60337,"60337":60338,"60338":60339,"60339":60340,"60340":60341,"60341":60342,"60342":60343,"60343":60344,"60344":60345,"60345":60346,"60346":60347,"60347":60348,"60348":60349,"60349":60350,"60350":60351,"60351":60352,"60352":60353,"60353":60354,"60354":60355,"60355":60356,"60356":60357,"60357":60358,"60358":60359,"60359":60360,"60360":60361,"60361":60362,"60362":60363,"60363":60364,"60364":60365,"60365":60366,"60366":60367,"60367":60368,"60368":60369,"60369":60370,"60370":60371,"60371":60372,"60372":60373,"60373":60374,"60374":60375,"60375":60376,"60376":60377,"60377":60378,"60378":60379,"60379":60380,"60380":60381,"60381":60382,"60382":60383,"60383":60384,"60384":60385,"60385":60386,"60386":60387,"60387":60388,"60388":60389,"60389":60390,"60390":60391,"60391":60392,"60392":60393,"60393":60394,"60394":60395,"60395":60396,"60396":60397,"60397":60398,"60398":60399,"60399":60400,"60400":60401,"60401":60402,"60402":60403,"60403":60404,"60404":60405,"60405":60406,"60406":60407,"60407":60408,"60408":60409,"60409":60410,"60410":60411,"60411":60412,"60412":60413,"60413":60414,"60414":60415,"60415":60416,"60416":60417,"60417":60418,"60418":60419,"60419":60420,"60420":60421,"60421":60422,"60422":60423,"60423":60424,"60424":60425,"60425":60426,"60426":60427,"60427":60428,"60428":60429,"60429":60430,"60430":60431,"60431":60432,"60432":60433,"60433":60434,"60434":60435,"60435":60436,"60436":60437,"60437":60438,"60438":60439,"60439":60440,"60440":60441,"60441":60442,"60442":60443,"60443":60444,"60444":60445,"60445":60446,"60446":60447,"60447":60448,"60448":60449,"60449":60450,"60450":60451,"60451":60452,"60452":60453,"60453":60454,"60454":60455,"60455":60456,"60456":60457,"60457":60458,"60458":60459,"60459":60460,"60460":60461,"60461":60462,"60462":60463,"60463":60464,"60464":60465,"60465":60466,"60466":60467,"60467":60468,"60468":60469,"60469":60470,"60470":60471,"60471":60472,"60472":60473,"60473":60474,"60474":60475,"60475":60476,"60476":60477,"60477":60478,"60478":60479,"60479":60480,"60480":60481,"60481":60482,"60482":60483,"60483":60484,"60484":60485,"60485":60486,"60486":60487,"60487":60488,"60488":60489,"60489":60490,"60490":60491,"60491":60492,"60492":60493,"60493":60494,"60494":60495,"60495":60496,"60496":60497,"60497":60498,"60498":60499,"60499":60500,"60500":60501,"60501":60502,"60502":60503,"60503":60504,"60504":60505,"60505":60506,"60506":60507,"60507":60508,"60508":60509,"60509":60510,"60510":60511,"60511":60512,"60512":60513,"60513":60514,"60514":60515,"60515":60516,"60516":60517,"60517":60518,"60518":60519,"60519":60520,"60520":60521,"60521":60522,"60522":60523,"60523":60524,"60524":60525,"60525":60526,"60526":60527,"60527":60528,"60528":60529,"60529":60530,"60530":60531,"60531":60532,"60532":60533,"60533":60534,"60534":60535,"60535":60536,"60536":60537,"60537":60538,"60538":60539,"60539":60540,"60540":60541,"60541":60542,"60542":60543,"60543":60544,"60544":60545,"60545":60546,"60546":60547,"60547":60548,"60548":60549,"60549":60550,"60550":60551,"60551":60552,"60552":60553,"60553":60554,"60554":60555,"60555":60556,"60556":60557,"60557":60558,"60558":60559,"60559":60560,"60560":60561,"60561":60562,"60562":60563,"60563":60564,"60564":60565,"60565":60566,"60566":60567,"60567":60568,"60568":60569,"60569":60570,"60570":60571,"60571":60572,"60572":60573,"60573":60574,"60574":60575,"60575":60576,"60576":60577,"60577":60578,"60578":60579,"60579":60580,"60580":60581,"60581":60582,"60582":60583,"60583":60584,"60584":60585,"60585":60586,"60586":60587,"60587":60588,"60588":60589,"60589":60590,"60590":60591,"60591":60592,"60592":60593,"60593":60594,"60594":60595,"60595":60596,"60596":60597,"60597":60598,"60598":60599,"60599":60600,"60600":60601,"60601":60602,"60602":60603,"60603":60604,"60604":60605,"60605":60606,"60606":60607,"60607":60608,"60608":60609,"60609":60610,"60610":60611,"60611":60612,"60612":60613,"60613":60614,"60614":60615,"60615":60616,"60616":60617,"60617":60618,"60618":60619,"60619":60620,"60620":60621,"60621":60622,"60622":60623,"60623":60624,"60624":60625,"60625":60626,"60626":60627,"60627":60628,"60628":60629,"60629":60630,"60630":60631,"60631":60632,"60632":60633,"60633":60634,"60634":60635,"60635":60636,"60636":60637,"60637":60638,"60638":60639,"60639":60640,"60640":60641,"60641":60642,"60642":60643,"60643":60644,"60644":60645,"60645":60646,"60646":60647,"60647":60648,"60648":60649,"60649":60650,"60650":60651,"60651":60652,"60652":60653,"60653":60654,"60654":60655,"60655":60656,"60656":60657,"60657":60658,"60658":60659,"60659":60660,"60660":60661,"60661":60662,"60662":60663,"60663":60664,"60664":60665,"60665":60666,"60666":60667,"60667":60668,"60668":60669,"60669":60670,"60670":60671,"60671":60672,"60672":60673,"60673":60674,"60674":60675,"60675":60676,"60676":60677,"60677":60678,"60678":60679,"60679":60680,"60680":60681,"60681":60682,"60682":60683,"60683":60684,"60684":60685,"60685":60686,"60686":60687,"60687":60688,"60688":60689,"60689":60690,"60690":60691,"60691":60692,"60692":60693,"60693":60694,"60694":60695,"60695":60696,"60696":60697,"60697":60698,"60698":60699,"60699":60700,"60700":60701,"60701":60702,"60702":60703,"60703":60704,"60704":60705,"60705":60706,"60706":60707,"60707":60708,"60708":60709,"60709":60710,"60710":60711,"60711":60712,"60712":60713,"60713":60714,"60714":60715,"60715":60716,"60716":60717,"60717":60718,"60718":60719,"60719":60720,"60720":60721,"60721":60722,"60722":60723,"60723":60724,"60724":60725,"60725":60726,"60726":60727,"60727":60728,"60728":60729,"60729":60730,"60730":60731,"60731":60732,"60732":60733,"60733":60734,"60734":60735,"60735":60736,"60736":60737,"60737":60738,"60738":60739,"60739":60740,"60740":60741,"60741":60742,"60742":60743,"60743":60744,"60744":60745,"60745":60746,"60746":60747,"60747":60748,"60748":60749,"60749":60750,"60750":60751,"60751":60752,"60752":60753,"60753":60754,"60754":60755,"60755":60756,"60756":60757,"60757":60758,"60758":60759,"60759":60760,"60760":60761,"60761":60762,"60762":60763,"60763":60764,"60764":60765,"60765":60766,"60766":60767,"60767":60768,"60768":60769,"60769":60770,"60770":60771,"60771":60772,"60772":60773,"60773":60774,"60774":60775,"60775":60776,"60776":60777,"60777":60778,"60778":60779,"60779":60780,"60780":60781,"60781":60782,"60782":60783,"60783":60784,"60784":60785,"60785":60786,"60786":60787,"60787":60788,"60788":60789,"60789":60790,"60790":60791,"60791":60792,"60792":60793,"60793":60794,"60794":60795,"60795":60796,"60796":60797,"60797":60798,"60798":60799,"60799":60800,"60800":60801,"60801":60802,"60802":60803,"60803":60804,"60804":60805,"60805":60806,"60806":60807,"60807":60808,"60808":60809,"60809":60810,"60810":60811,"60811":60812,"60812":60813,"60813":60814,"60814":60815,"60815":60816,"60816":60817,"60817":60818,"60818":60819,"60819":60820,"60820":60821,"60821":60822,"60822":60823,"60823":60824,"60824":60825,"60825":60826,"60826":60827,"60827":60828,"60828":60829,"60829":60830,"60830":60831,"60831":60832,"60832":60833,"60833":60834,"60834":60835,"60835":60836,"60836":60837,"60837":60838,"60838":60839,"60839":60840,"60840":60841,"60841":60842,"60842":60843,"60843":60844,"60844":60845,"60845":60846,"60846":60847,"60847":60848,"60848":60849,"60849":60850,"60850":60851,"60851":60852,"60852":60853,"60853":60854,"60854":60855,"60855":60856,"60856":60857,"60857":60858,"60858":60859,"60859":60860,"60860":60861,"60861":60862,"60862":60863,"60863":60864,"60864":60865,"60865":60866,"60866":60867,"60867":60868,"60868":60869,"60869":60870,"60870":60871,"60871":60872,"60872":60873,"60873":60874,"60874":60875,"60875":60876,"60876":60877,"60877":60878,"60878":60879,"60879":60880,"60880":60881,"60881":60882,"60882":60883,"60883":60884,"60884":60885,"60885":60886,"60886":60887,"60887":60888,"60888":60889,"60889":60890,"60890":60891,"60891":60892,"60892":60893,"60893":60894,"60894":60895,"60895":60896,"60896":60897,"60897":60898,"60898":60899,"60899":60900,"60900":60901,"60901":60902,"60902":60903,"60903":60904},"gender":{"0":1,"1":1,"2":1,"3":1,"4":1,"5":2,"6":1,"7":2,"8":2,"9":2,"10":2,"11":2,"12":2,"13":1,"14":1,"15":2,"16":2,"17":2,"18":1,"19":1,"20":1,"21":2,"22":2,"23":2,"24":1,"25":1,"26":1,"27":1,"28":2,"29":2,"30":1,"31":1,"32":1,"33":1,"34":2,"35":1,"36":1,"37":1,"38":2,"39":1,"40":2,"41":2,"42":1,"43":2,"44":1,"45":2,"46":2,"47":2,"48":2,"49":1,"50":2,"51":1,"52":2,"53":2,"54":1,"55":2,"56":2,"57":1,"58":2,"59":1,"60":1,"61":1,"62":1,"63":2,"64":1,"65":2,"66":2,"67":1,"68":2,"69":1,"70":1,"71":1,"72":1,"73":1,"74":1,"75":1,"76":1,"77":2,"78":1,"79":1,"80":2,"81":2,"82":2,"83":1,"84":1,"85":2,"86":1,"87":2,"88":2,"89":1,"90":1,"91":1,"92":2,"93":2,"94":1,"95":1,"96":2,"97":2,"98":1,"99":2,"100":1,"101":2,"102":1,"103":1,"104":2,"105":1,"106":1,"107":2,"108":1,"109":2,"110":1,"111":2,"112":2,"113":1,"114":2,"115":1,"116":2,"117":1,"118":2,"119":2,"120":1,"121":1,"122":1,"123":2,"124":1,"125":2,"126":1,"127":2,"128":1,"129":2,"130":2,"131":1,"132":1,"133":2,"134":1,"135":1,"136":2,"137":2,"138":2,"139":1,"140":1,"141":2,"142":1,"143":1,"144":1,"145":2,"146":2,"147":2,"148":2,"149":1,"150":2,"151":1,"152":1,"153":2,"154":2,"155":1,"156":2,"157":1,"158":2,"159":2,"160":2,"161":1,"162":1,"163":2,"164":1,"165":2,"166":1,"167":2,"168":2,"169":2,"170":1,"171":2,"172":1,"173":1,"174":2,"175":1,"176":2,"177":1,"178":1,"179":1,"180":1,"181":2,"182":2,"183":1,"184":1,"185":1,"186":2,"187":2,"188":2,"189":1,"190":1,"191":1,"192":1,"193":2,"194":1,"195":1,"196":2,"197":2,"198":1,"199":1,"200":2,"201":2,"202":1,"203":1,"204":2,"205":2,"206":1,"207":2,"208":2,"209":1,"210":1,"211":2,"212":2,"213":1,"214":2,"215":1,"216":2,"217":2,"218":1,"219":2,"220":2,"221":2,"222":1,"223":1,"224":1,"225":2,"226":2,"227":1,"228":2,"229":1,"230":2,"231":2,"232":2,"233":1,"234":2,"235":2,"236":2,"237":1,"238":2,"239":2,"240":2,"241":1,"242":2,"243":1,"244":2,"245":1,"246":1,"247":1,"248":1,"249":2,"250":2,"251":1,"252":2,"253":1,"254":1,"255":2,"256":2,"257":2,"258":1,"259":1,"260":1,"261":2,"262":1,"263":2,"264":2,"265":1,"266":1,"267":1,"268":1,"269":1,"270":2,"271":1,"272":2,"273":1,"274":1,"275":1,"276":1,"277":2,"278":2,"279":2,"280":2,"281":1,"282":2,"283":2,"284":1,"285":2,"286":2,"287":2,"288":1,"289":2,"290":1,"291":1,"292":2,"293":1,"294":2,"295":2,"296":2,"297":2,"298":1,"299":2,"300":2,"301":2,"302":1,"303":2,"304":2,"305":2,"306":2,"307":1,"308":1,"309":1,"310":1,"311":1,"312":2,"313":2,"314":1,"315":1,"316":2,"317":1,"318":2,"319":1,"320":2,"321":2,"322":2,"323":2,"324":2,"325":2,"326":2,"327":1,"328":2,"329":1,"330":1,"331":1,"332":2,"333":2,"334":2,"335":1,"336":2,"337":1,"338":1,"339":1,"340":2,"341":2,"342":2,"343":1,"344":1,"345":2,"346":2,"347":2,"348":2,"349":2,"350":2,"351":2,"352":1,"353":2,"354":2,"355":1,"356":2,"357":2,"358":1,"359":1,"360":1,"361":1,"362":2,"363":1,"364":2,"365":2,"366":2,"367":1,"368":1,"369":1,"370":2,"371":2,"372":1,"373":2,"374":1,"375":2,"376":1,"377":1,"378":2,"379":2,"380":1,"381":2,"382":1,"383":2,"384":2,"385":2,"386":1,"387":2,"388":1,"389":2,"390":2,"391":2,"392":1,"393":1,"394":2,"395":1,"396":2,"397":1,"398":1,"399":1,"400":1,"401":1,"402":2,"403":1,"404":1,"405":1,"406":1,"407":1,"408":1,"409":1,"410":2,"411":1,"412":2,"413":1,"414":2,"415":1,"416":2,"417":1,"418":1,"419":2,"420":2,"421":1,"422":2,"423":1,"424":2,"425":2,"426":2,"427":1,"428":1,"429":2,"430":2,"431":2,"432":1,"433":2,"434":1,"435":1,"436":1,"437":1,"438":1,"439":2,"440":1,"441":2,"442":1,"443":2,"444":1,"445":1,"446":2,"447":2,"448":2,"449":1,"450":2,"451":2,"452":1,"453":1,"454":2,"455":2,"456":2,"457":2,"458":2,"459":2,"460":2,"461":2,"462":1,"463":2,"464":2,"465":1,"466":1,"467":2,"468":2,"469":2,"470":1,"471":2,"472":1,"473":2,"474":2,"475":2,"476":1,"477":1,"478":1,"479":2,"480":1,"481":1,"482":2,"483":1,"484":2,"485":2,"486":2,"487":2,"488":2,"489":2,"490":1,"491":2,"492":2,"493":2,"494":1,"495":2,"496":1,"497":2,"498":2,"499":2,"500":1,"501":1,"502":2,"503":2,"504":1,"505":2,"506":2,"507":2,"508":2,"509":1,"510":2,"511":2,"512":2,"513":2,"514":2,"515":1,"516":2,"517":2,"518":2,"519":2,"520":2,"521":2,"522":2,"523":2,"524":2,"525":2,"526":2,"527":1,"528":2,"529":1,"530":2,"531":1,"532":2,"533":2,"534":1,"535":2,"536":2,"537":1,"538":1,"539":2,"540":1,"541":2,"542":2,"543":2,"544":2,"545":1,"546":2,"547":2,"548":1,"549":2,"550":1,"551":2,"552":1,"553":2,"554":1,"555":1,"556":1,"557":1,"558":2,"559":1,"560":2,"561":2,"562":1,"563":1,"564":2,"565":1,"566":2,"567":2,"568":1,"569":2,"570":1,"571":2,"572":2,"573":1,"574":2,"575":1,"576":2,"577":2,"578":2,"579":2,"580":2,"581":2,"582":2,"583":1,"584":2,"585":1,"586":2,"587":1,"588":2,"589":2,"590":2,"591":2,"592":1,"593":1,"594":2,"595":2,"596":1,"597":1,"598":1,"599":2,"600":1,"601":1,"602":2,"603":1,"604":2,"605":1,"606":1,"607":1,"608":1,"609":2,"610":1,"611":1,"612":1,"613":1,"614":2,"615":1,"616":2,"617":2,"618":1,"619":2,"620":2,"621":1,"622":1,"623":1,"624":1,"625":2,"626":2,"627":2,"628":1,"629":1,"630":2,"631":1,"632":2,"633":1,"634":2,"635":2,"636":2,"637":1,"638":2,"639":1,"640":2,"641":2,"642":1,"643":1,"644":1,"645":1,"646":2,"647":2,"648":1,"649":1,"650":1,"651":2,"652":1,"653":2,"654":2,"655":2,"656":1,"657":1,"658":1,"659":1,"660":1,"661":1,"662":2,"663":1,"664":1,"665":2,"666":2,"667":2,"668":1,"669":1,"670":2,"671":2,"672":2,"673":1,"674":2,"675":1,"676":1,"677":1,"678":2,"679":2,"680":2,"681":1,"682":1,"683":1,"684":1,"685":1,"686":1,"687":2,"688":1,"689":2,"690":1,"691":1,"692":1,"693":1,"694":2,"695":1,"696":2,"697":2,"698":1,"699":1,"700":2,"701":1,"702":2,"703":2,"704":2,"705":2,"706":2,"707":2,"708":2,"709":1,"710":1,"711":1,"712":1,"713":1,"714":2,"715":1,"716":1,"717":1,"718":2,"719":2,"720":1,"721":2,"722":1,"723":2,"724":1,"725":2,"726":1,"727":1,"728":2,"729":2,"730":2,"731":2,"732":2,"733":2,"734":1,"735":1,"736":1,"737":2,"738":2,"739":2,"740":1,"741":2,"742":2,"743":2,"744":2,"745":1,"746":2,"747":2,"748":1,"749":2,"750":1,"751":2,"752":2,"753":1,"754":1,"755":2,"756":1,"757":1,"758":2,"759":2,"760":2,"761":1,"762":1,"763":1,"764":1,"765":1,"766":2,"767":1,"768":2,"769":1,"770":1,"771":1,"772":2,"773":2,"774":2,"775":1,"776":1,"777":2,"778":1,"779":2,"780":1,"781":2,"782":1,"783":1,"784":1,"785":2,"786":2,"787":2,"788":2,"789":1,"790":1,"791":1,"792":1,"793":1,"794":2,"795":2,"796":1,"797":1,"798":2,"799":1,"800":1,"801":1,"802":2,"803":1,"804":2,"805":2,"806":1,"807":2,"808":2,"809":2,"810":1,"811":2,"812":1,"813":1,"814":2,"815":1,"816":2,"817":1,"818":1,"819":2,"820":2,"821":2,"822":2,"823":2,"824":1,"825":1,"826":2,"827":1,"828":1,"829":1,"830":1,"831":1,"832":1,"833":2,"834":2,"835":2,"836":1,"837":1,"838":2,"839":2,"840":1,"841":2,"842":1,"843":1,"844":1,"845":2,"846":1,"847":2,"848":2,"849":2,"850":1,"851":1,"852":2,"853":1,"854":2,"855":1,"856":1,"857":2,"858":2,"859":1,"860":1,"861":1,"862":2,"863":2,"864":2,"865":1,"866":1,"867":2,"868":2,"869":2,"870":1,"871":2,"872":1,"873":2,"874":1,"875":1,"876":1,"877":1,"878":1,"879":1,"880":1,"881":1,"882":2,"883":1,"884":1,"885":1,"886":2,"887":2,"888":2,"889":2,"890":1,"891":2,"892":2,"893":2,"894":1,"895":2,"896":2,"897":2,"898":2,"899":2,"900":2,"901":2,"902":2,"903":2,"904":1,"905":2,"906":1,"907":1,"908":1,"909":2,"910":2,"911":2,"912":1,"913":1,"914":2,"915":1,"916":2,"917":1,"918":1,"919":2,"920":2,"921":2,"922":1,"923":2,"924":1,"925":1,"926":1,"927":1,"928":2,"929":1,"930":1,"931":2,"932":1,"933":1,"934":1,"935":1,"936":1,"937":1,"938":1,"939":2,"940":1,"941":2,"942":1,"943":2,"944":1,"945":1,"946":2,"947":1,"948":2,"949":1,"950":2,"951":2,"952":1,"953":1,"954":1,"955":1,"956":2,"957":2,"958":1,"959":2,"960":1,"961":2,"962":2,"963":2,"964":1,"965":1,"966":2,"967":2,"968":2,"969":2,"970":2,"971":1,"972":1,"973":2,"974":1,"975":2,"976":2,"977":1,"978":1,"979":2,"980":1,"981":2,"982":1,"983":2,"984":2,"985":2,"986":1,"987":2,"988":1,"989":2,"990":1,"991":2,"992":2,"993":2,"994":1,"995":2,"996":1,"997":1,"998":1,"999":2,"1000":2,"1001":2,"1002":1,"1003":1,"1004":2,"1005":2,"1006":1,"1007":2,"1008":2,"1009":2,"1010":2,"1011":2,"1012":1,"1013":1,"1014":1,"1015":2,"1016":1,"1017":1,"1018":2,"1019":1,"1020":1,"1021":2,"1022":2,"1023":2,"1024":2,"1025":2,"1026":1,"1027":1,"1028":2,"1029":2,"1030":1,"1031":1,"1032":1,"1033":1,"1034":1,"1035":2,"1036":1,"1037":1,"1038":1,"1039":2,"1040":2,"1041":2,"1042":2,"1043":2,"1044":2,"1045":2,"1046":1,"1047":2,"1048":1,"1049":1,"1050":1,"1051":2,"1052":2,"1053":1,"1054":2,"1055":2,"1056":1,"1057":1,"1058":1,"1059":2,"1060":2,"1061":1,"1062":2,"1063":2,"1064":1,"1065":1,"1066":2,"1067":1,"1068":2,"1069":1,"1070":1,"1071":2,"1072":1,"1073":2,"1074":2,"1075":1,"1076":1,"1077":1,"1078":2,"1079":2,"1080":2,"1081":2,"1082":2,"1083":2,"1084":2,"1085":1,"1086":1,"1087":1,"1088":2,"1089":2,"1090":2,"1091":1,"1092":1,"1093":2,"1094":1,"1095":1,"1096":2,"1097":2,"1098":2,"1099":1,"1100":1,"1101":1,"1102":1,"1103":1,"1104":1,"1105":1,"1106":1,"1107":2,"1108":1,"1109":1,"1110":1,"1111":2,"1112":2,"1113":2,"1114":1,"1115":1,"1116":1,"1117":1,"1118":2,"1119":2,"1120":1,"1121":1,"1122":1,"1123":2,"1124":2,"1125":1,"1126":2,"1127":1,"1128":1,"1129":1,"1130":1,"1131":2,"1132":1,"1133":1,"1134":1,"1135":1,"1136":1,"1137":2,"1138":1,"1139":2,"1140":2,"1141":1,"1142":2,"1143":2,"1144":2,"1145":1,"1146":2,"1147":2,"1148":2,"1149":1,"1150":1,"1151":1,"1152":2,"1153":2,"1154":2,"1155":1,"1156":2,"1157":2,"1158":1,"1159":1,"1160":2,"1161":1,"1162":2,"1163":2,"1164":2,"1165":1,"1166":1,"1167":2,"1168":2,"1169":2,"1170":2,"1171":2,"1172":2,"1173":1,"1174":1,"1175":1,"1176":2,"1177":1,"1178":2,"1179":2,"1180":1,"1181":2,"1182":1,"1183":2,"1184":2,"1185":2,"1186":2,"1187":2,"1188":2,"1189":1,"1190":1,"1191":2,"1192":2,"1193":2,"1194":1,"1195":2,"1196":1,"1197":1,"1198":1,"1199":2,"1200":1,"1201":1,"1202":2,"1203":2,"1204":1,"1205":2,"1206":1,"1207":1,"1208":1,"1209":2,"1210":2,"1211":2,"1212":2,"1213":2,"1214":1,"1215":2,"1216":1,"1217":2,"1218":2,"1219":2,"1220":1,"1221":1,"1222":1,"1223":2,"1224":1,"1225":2,"1226":1,"1227":2,"1228":2,"1229":1,"1230":2,"1231":1,"1232":2,"1233":1,"1234":2,"1235":1,"1236":1,"1237":2,"1238":1,"1239":1,"1240":2,"1241":2,"1242":2,"1243":2,"1244":2,"1245":2,"1246":2,"1247":2,"1248":2,"1249":1,"1250":2,"1251":2,"1252":1,"1253":2,"1254":2,"1255":1,"1256":2,"1257":2,"1258":1,"1259":2,"1260":2,"1261":2,"1262":1,"1263":1,"1264":2,"1265":2,"1266":1,"1267":2,"1268":2,"1269":1,"1270":1,"1271":2,"1272":1,"1273":1,"1274":2,"1275":1,"1276":2,"1277":2,"1278":1,"1279":2,"1280":2,"1281":1,"1282":2,"1283":2,"1284":1,"1285":2,"1286":1,"1287":2,"1288":1,"1289":2,"1290":2,"1291":2,"1292":1,"1293":1,"1294":1,"1295":1,"1296":1,"1297":1,"1298":1,"1299":1,"1300":1,"1301":2,"1302":1,"1303":1,"1304":1,"1305":1,"1306":1,"1307":2,"1308":2,"1309":2,"1310":1,"1311":1,"1312":1,"1313":1,"1314":1,"1315":2,"1316":2,"1317":2,"1318":1,"1319":1,"1320":2,"1321":2,"1322":1,"1323":1,"1324":2,"1325":1,"1326":2,"1327":2,"1328":1,"1329":1,"1330":2,"1331":2,"1332":2,"1333":2,"1334":2,"1335":1,"1336":1,"1337":2,"1338":1,"1339":1,"1340":1,"1341":2,"1342":1,"1343":2,"1344":2,"1345":1,"1346":1,"1347":1,"1348":2,"1349":1,"1350":1,"1351":2,"1352":1,"1353":2,"1354":1,"1355":2,"1356":2,"1357":2,"1358":2,"1359":1,"1360":1,"1361":2,"1362":1,"1363":1,"1364":2,"1365":2,"1366":2,"1367":2,"1368":1,"1369":2,"1370":1,"1371":1,"1372":2,"1373":2,"1374":1,"1375":1,"1376":2,"1377":1,"1378":1,"1379":1,"1380":2,"1381":2,"1382":2,"1383":2,"1384":1,"1385":1,"1386":1,"1387":1,"1388":1,"1389":1,"1390":2,"1391":2,"1392":2,"1393":2,"1394":2,"1395":2,"1396":2,"1397":2,"1398":1,"1399":2,"1400":2,"1401":1,"1402":1,"1403":1,"1404":1,"1405":2,"1406":2,"1407":2,"1408":1,"1409":2,"1410":2,"1411":2,"1412":2,"1413":2,"1414":1,"1415":2,"1416":2,"1417":2,"1418":1,"1419":2,"1420":1,"1421":1,"1422":2,"1423":2,"1424":1,"1425":1,"1426":1,"1427":2,"1428":1,"1429":1,"1430":1,"1431":2,"1432":2,"1433":2,"1434":2,"1435":1,"1436":1,"1437":2,"1438":1,"1439":2,"1440":2,"1441":1,"1442":2,"1443":2,"1444":1,"1445":1,"1446":1,"1447":2,"1448":2,"1449":2,"1450":2,"1451":1,"1452":2,"1453":2,"1454":1,"1455":2,"1456":1,"1457":1,"1458":1,"1459":2,"1460":1,"1461":2,"1462":2,"1463":1,"1464":2,"1465":1,"1466":1,"1467":2,"1468":1,"1469":2,"1470":1,"1471":1,"1472":1,"1473":2,"1474":2,"1475":2,"1476":2,"1477":1,"1478":1,"1479":1,"1480":1,"1481":1,"1482":1,"1483":2,"1484":1,"1485":2,"1486":1,"1487":1,"1488":1,"1489":1,"1490":1,"1491":2,"1492":2,"1493":2,"1494":2,"1495":2,"1496":2,"1497":2,"1498":1,"1499":2,"1500":2,"1501":1,"1502":2,"1503":1,"1504":1,"1505":1,"1506":2,"1507":1,"1508":1,"1509":1,"1510":1,"1511":2,"1512":1,"1513":1,"1514":2,"1515":2,"1516":2,"1517":1,"1518":2,"1519":2,"1520":2,"1521":2,"1522":2,"1523":2,"1524":1,"1525":2,"1526":1,"1527":1,"1528":2,"1529":1,"1530":1,"1531":1,"1532":1,"1533":1,"1534":2,"1535":2,"1536":1,"1537":1,"1538":2,"1539":2,"1540":1,"1541":2,"1542":2,"1543":2,"1544":2,"1545":1,"1546":2,"1547":1,"1548":1,"1549":2,"1550":2,"1551":1,"1552":1,"1553":1,"1554":1,"1555":2,"1556":1,"1557":2,"1558":1,"1559":2,"1560":2,"1561":1,"1562":2,"1563":2,"1564":1,"1565":1,"1566":2,"1567":1,"1568":2,"1569":1,"1570":2,"1571":2,"1572":1,"1573":1,"1574":1,"1575":2,"1576":2,"1577":2,"1578":1,"1579":1,"1580":2,"1581":2,"1582":2,"1583":1,"1584":2,"1585":1,"1586":1,"1587":2,"1588":1,"1589":2,"1590":1,"1591":2,"1592":2,"1593":2,"1594":2,"1595":1,"1596":2,"1597":2,"1598":2,"1599":2,"1600":2,"1601":1,"1602":1,"1603":1,"1604":1,"1605":2,"1606":1,"1607":1,"1608":2,"1609":1,"1610":1,"1611":2,"1612":2,"1613":2,"1614":2,"1615":2,"1616":1,"1617":2,"1618":2,"1619":1,"1620":1,"1621":2,"1622":1,"1623":1,"1624":1,"1625":1,"1626":1,"1627":2,"1628":2,"1629":1,"1630":2,"1631":2,"1632":2,"1633":2,"1634":1,"1635":1,"1636":2,"1637":1,"1638":2,"1639":1,"1640":2,"1641":2,"1642":2,"1643":2,"1644":1,"1645":2,"1646":1,"1647":2,"1648":1,"1649":2,"1650":2,"1651":2,"1652":1,"1653":1,"1654":2,"1655":2,"1656":1,"1657":2,"1658":1,"1659":1,"1660":1,"1661":1,"1662":2,"1663":1,"1664":1,"1665":2,"1666":1,"1667":1,"1668":1,"1669":1,"1670":2,"1671":2,"1672":1,"1673":1,"1674":1,"1675":2,"1676":2,"1677":2,"1678":2,"1679":1,"1680":2,"1681":2,"1682":2,"1683":2,"1684":2,"1685":2,"1686":1,"1687":2,"1688":1,"1689":1,"1690":1,"1691":1,"1692":2,"1693":2,"1694":2,"1695":2,"1696":1,"1697":2,"1698":2,"1699":2,"1700":1,"1701":2,"1702":1,"1703":1,"1704":2,"1705":1,"1706":1,"1707":1,"1708":2,"1709":2,"1710":1,"1711":2,"1712":1,"1713":2,"1714":1,"1715":2,"1716":1,"1717":1,"1718":2,"1719":2,"1720":2,"1721":1,"1722":1,"1723":2,"1724":1,"1725":2,"1726":2,"1727":2,"1728":1,"1729":1,"1730":1,"1731":1,"1732":1,"1733":1,"1734":1,"1735":2,"1736":2,"1737":2,"1738":2,"1739":2,"1740":2,"1741":1,"1742":2,"1743":2,"1744":2,"1745":1,"1746":2,"1747":2,"1748":1,"1749":1,"1750":1,"1751":2,"1752":2,"1753":1,"1754":2,"1755":1,"1756":1,"1757":1,"1758":2,"1759":2,"1760":1,"1761":1,"1762":2,"1763":1,"1764":2,"1765":1,"1766":1,"1767":2,"1768":1,"1769":2,"1770":2,"1771":1,"1772":1,"1773":1,"1774":2,"1775":1,"1776":2,"1777":1,"1778":2,"1779":1,"1780":1,"1781":1,"1782":2,"1783":1,"1784":1,"1785":1,"1786":2,"1787":2,"1788":1,"1789":2,"1790":1,"1791":2,"1792":2,"1793":2,"1794":2,"1795":2,"1796":2,"1797":1,"1798":2,"1799":2,"1800":1,"1801":1,"1802":2,"1803":2,"1804":1,"1805":1,"1806":2,"1807":1,"1808":1,"1809":2,"1810":2,"1811":1,"1812":1,"1813":2,"1814":1,"1815":2,"1816":1,"1817":1,"1818":1,"1819":2,"1820":2,"1821":1,"1822":1,"1823":1,"1824":1,"1825":1,"1826":1,"1827":2,"1828":2,"1829":2,"1830":1,"1831":1,"1832":1,"1833":2,"1834":1,"1835":2,"1836":1,"1837":2,"1838":1,"1839":2,"1840":1,"1841":1,"1842":2,"1843":1,"1844":2,"1845":1,"1846":2,"1847":2,"1848":1,"1849":1,"1850":2,"1851":2,"1852":2,"1853":1,"1854":2,"1855":2,"1856":2,"1857":1,"1858":2,"1859":2,"1860":1,"1861":1,"1862":2,"1863":2,"1864":2,"1865":2,"1866":2,"1867":2,"1868":2,"1869":1,"1870":1,"1871":1,"1872":2,"1873":2,"1874":2,"1875":1,"1876":2,"1877":2,"1878":1,"1879":2,"1880":2,"1881":1,"1882":2,"1883":1,"1884":2,"1885":1,"1886":2,"1887":2,"1888":2,"1889":2,"1890":1,"1891":2,"1892":1,"1893":2,"1894":2,"1895":1,"1896":1,"1897":2,"1898":1,"1899":1,"1900":1,"1901":2,"1902":1,"1903":1,"1904":1,"1905":1,"1906":1,"1907":1,"1908":2,"1909":1,"1910":2,"1911":2,"1912":2,"1913":2,"1914":1,"1915":2,"1916":1,"1917":1,"1918":1,"1919":1,"1920":1,"1921":1,"1922":1,"1923":2,"1924":1,"1925":2,"1926":1,"1927":2,"1928":1,"1929":1,"1930":2,"1931":1,"1932":2,"1933":1,"1934":2,"1935":1,"1936":1,"1937":2,"1938":1,"1939":1,"1940":1,"1941":1,"1942":1,"1943":1,"1944":2,"1945":1,"1946":1,"1947":2,"1948":1,"1949":2,"1950":2,"1951":2,"1952":1,"1953":1,"1954":2,"1955":1,"1956":2,"1957":1,"1958":1,"1959":2,"1960":2,"1961":1,"1962":2,"1963":1,"1964":1,"1965":2,"1966":2,"1967":1,"1968":2,"1969":2,"1970":2,"1971":2,"1972":1,"1973":2,"1974":1,"1975":1,"1976":2,"1977":2,"1978":1,"1979":2,"1980":2,"1981":1,"1982":1,"1983":2,"1984":1,"1985":1,"1986":2,"1987":1,"1988":2,"1989":1,"1990":1,"1991":1,"1992":1,"1993":2,"1994":1,"1995":1,"1996":1,"1997":2,"1998":2,"1999":1,"2000":2,"2001":2,"2002":1,"2003":2,"2004":1,"2005":1,"2006":1,"2007":2,"2008":1,"2009":1,"2010":1,"2011":2,"2012":1,"2013":2,"2014":1,"2015":2,"2016":1,"2017":1,"2018":1,"2019":1,"2020":2,"2021":2,"2022":2,"2023":1,"2024":2,"2025":1,"2026":2,"2027":1,"2028":2,"2029":1,"2030":1,"2031":1,"2032":2,"2033":2,"2034":1,"2035":1,"2036":2,"2037":1,"2038":2,"2039":2,"2040":1,"2041":1,"2042":2,"2043":1,"2044":2,"2045":1,"2046":2,"2047":2,"2048":2,"2049":1,"2050":1,"2051":1,"2052":1,"2053":1,"2054":1,"2055":2,"2056":1,"2057":1,"2058":2,"2059":2,"2060":2,"2061":2,"2062":1,"2063":1,"2064":1,"2065":2,"2066":2,"2067":2,"2068":2,"2069":1,"2070":2,"2071":1,"2072":1,"2073":2,"2074":1,"2075":2,"2076":1,"2077":2,"2078":2,"2079":1,"2080":1,"2081":2,"2082":1,"2083":1,"2084":1,"2085":2,"2086":2,"2087":1,"2088":1,"2089":2,"2090":1,"2091":1,"2092":1,"2093":2,"2094":1,"2095":1,"2096":1,"2097":1,"2098":1,"2099":2,"2100":1,"2101":1,"2102":1,"2103":2,"2104":2,"2105":2,"2106":1,"2107":1,"2108":1,"2109":2,"2110":1,"2111":1,"2112":2,"2113":1,"2114":2,"2115":1,"2116":1,"2117":1,"2118":2,"2119":1,"2120":1,"2121":2,"2122":1,"2123":2,"2124":2,"2125":1,"2126":2,"2127":1,"2128":1,"2129":2,"2130":1,"2131":1,"2132":1,"2133":1,"2134":1,"2135":1,"2136":1,"2137":1,"2138":2,"2139":1,"2140":1,"2141":2,"2142":2,"2143":1,"2144":1,"2145":2,"2146":1,"2147":2,"2148":1,"2149":1,"2150":2,"2151":1,"2152":2,"2153":1,"2154":1,"2155":2,"2156":2,"2157":2,"2158":1,"2159":2,"2160":2,"2161":1,"2162":2,"2163":2,"2164":2,"2165":1,"2166":1,"2167":2,"2168":1,"2169":1,"2170":1,"2171":1,"2172":2,"2173":1,"2174":1,"2175":1,"2176":1,"2177":1,"2178":1,"2179":1,"2180":2,"2181":1,"2182":1,"2183":1,"2184":1,"2185":2,"2186":1,"2187":1,"2188":2,"2189":1,"2190":2,"2191":1,"2192":1,"2193":1,"2194":2,"2195":1,"2196":2,"2197":1,"2198":2,"2199":1,"2200":2,"2201":1,"2202":1,"2203":1,"2204":2,"2205":2,"2206":2,"2207":2,"2208":2,"2209":2,"2210":1,"2211":2,"2212":1,"2213":1,"2214":1,"2215":1,"2216":1,"2217":2,"2218":2,"2219":1,"2220":1,"2221":1,"2222":1,"2223":2,"2224":2,"2225":1,"2226":2,"2227":1,"2228":1,"2229":2,"2230":2,"2231":1,"2232":2,"2233":2,"2234":1,"2235":2,"2236":1,"2237":1,"2238":2,"2239":1,"2240":1,"2241":1,"2242":2,"2243":1,"2244":2,"2245":2,"2246":2,"2247":1,"2248":1,"2249":1,"2250":1,"2251":1,"2252":1,"2253":1,"2254":2,"2255":2,"2256":1,"2257":2,"2258":2,"2259":1,"2260":2,"2261":1,"2262":1,"2263":1,"2264":1,"2265":1,"2266":2,"2267":1,"2268":1,"2269":1,"2270":1,"2271":2,"2272":2,"2273":2,"2274":2,"2275":2,"2276":1,"2277":2,"2278":2,"2279":2,"2280":2,"2281":1,"2282":2,"2283":1,"2284":1,"2285":2,"2286":2,"2287":2,"2288":1,"2289":2,"2290":2,"2291":2,"2292":2,"2293":1,"2294":1,"2295":1,"2296":1,"2297":2,"2298":1,"2299":2,"2300":1,"2301":1,"2302":2,"2303":1,"2304":2,"2305":1,"2306":2,"2307":1,"2308":1,"2309":2,"2310":1,"2311":2,"2312":2,"2313":2,"2314":1,"2315":1,"2316":1,"2317":1,"2318":1,"2319":2,"2320":2,"2321":2,"2322":2,"2323":1,"2324":2,"2325":2,"2326":2,"2327":1,"2328":1,"2329":1,"2330":2,"2331":1,"2332":2,"2333":2,"2334":2,"2335":1,"2336":1,"2337":1,"2338":1,"2339":2,"2340":1,"2341":2,"2342":1,"2343":1,"2344":2,"2345":1,"2346":1,"2347":1,"2348":2,"2349":2,"2350":1,"2351":2,"2352":2,"2353":2,"2354":2,"2355":1,"2356":1,"2357":2,"2358":1,"2359":1,"2360":2,"2361":2,"2362":1,"2363":2,"2364":2,"2365":2,"2366":1,"2367":1,"2368":2,"2369":1,"2370":1,"2371":1,"2372":1,"2373":1,"2374":2,"2375":1,"2376":1,"2377":1,"2378":2,"2379":1,"2380":1,"2381":2,"2382":2,"2383":1,"2384":1,"2385":2,"2386":1,"2387":2,"2388":2,"2389":1,"2390":2,"2391":2,"2392":2,"2393":2,"2394":1,"2395":2,"2396":2,"2397":2,"2398":1,"2399":2,"2400":1,"2401":2,"2402":2,"2403":1,"2404":2,"2405":2,"2406":2,"2407":2,"2408":2,"2409":2,"2410":2,"2411":2,"2412":1,"2413":2,"2414":1,"2415":1,"2416":2,"2417":2,"2418":2,"2419":1,"2420":2,"2421":1,"2422":2,"2423":2,"2424":1,"2425":1,"2426":1,"2427":1,"2428":2,"2429":1,"2430":2,"2431":1,"2432":2,"2433":1,"2434":2,"2435":1,"2436":1,"2437":2,"2438":2,"2439":2,"2440":1,"2441":1,"2442":1,"2443":2,"2444":1,"2445":2,"2446":2,"2447":1,"2448":1,"2449":2,"2450":1,"2451":1,"2452":1,"2453":1,"2454":1,"2455":1,"2456":1,"2457":2,"2458":2,"2459":1,"2460":2,"2461":1,"2462":2,"2463":1,"2464":1,"2465":2,"2466":2,"2467":1,"2468":1,"2469":2,"2470":1,"2471":2,"2472":2,"2473":1,"2474":2,"2475":1,"2476":1,"2477":2,"2478":2,"2479":1,"2480":2,"2481":1,"2482":2,"2483":1,"2484":1,"2485":1,"2486":1,"2487":1,"2488":2,"2489":2,"2490":1,"2491":1,"2492":1,"2493":2,"2494":2,"2495":1,"2496":2,"2497":2,"2498":2,"2499":1,"2500":2,"2501":1,"2502":1,"2503":1,"2504":1,"2505":2,"2506":1,"2507":2,"2508":1,"2509":2,"2510":2,"2511":2,"2512":1,"2513":1,"2514":2,"2515":2,"2516":1,"2517":1,"2518":2,"2519":2,"2520":1,"2521":2,"2522":1,"2523":1,"2524":1,"2525":2,"2526":2,"2527":1,"2528":1,"2529":2,"2530":1,"2531":1,"2532":2,"2533":1,"2534":2,"2535":1,"2536":1,"2537":2,"2538":2,"2539":2,"2540":2,"2541":1,"2542":1,"2543":1,"2544":1,"2545":2,"2546":1,"2547":1,"2548":2,"2549":1,"2550":2,"2551":1,"2552":1,"2553":1,"2554":1,"2555":2,"2556":2,"2557":2,"2558":2,"2559":1,"2560":1,"2561":2,"2562":1,"2563":2,"2564":1,"2565":1,"2566":1,"2567":2,"2568":2,"2569":2,"2570":2,"2571":2,"2572":1,"2573":1,"2574":2,"2575":1,"2576":1,"2577":1,"2578":1,"2579":2,"2580":1,"2581":2,"2582":1,"2583":2,"2584":2,"2585":1,"2586":2,"2587":1,"2588":1,"2589":2,"2590":1,"2591":2,"2592":2,"2593":1,"2594":2,"2595":2,"2596":1,"2597":1,"2598":1,"2599":2,"2600":2,"2601":1,"2602":2,"2603":1,"2604":1,"2605":1,"2606":2,"2607":1,"2608":1,"2609":2,"2610":1,"2611":2,"2612":1,"2613":1,"2614":2,"2615":1,"2616":2,"2617":1,"2618":1,"2619":1,"2620":2,"2621":1,"2622":1,"2623":2,"2624":1,"2625":1,"2626":2,"2627":2,"2628":1,"2629":2,"2630":1,"2631":1,"2632":1,"2633":2,"2634":2,"2635":2,"2636":2,"2637":2,"2638":2,"2639":2,"2640":2,"2641":2,"2642":1,"2643":2,"2644":2,"2645":2,"2646":1,"2647":2,"2648":2,"2649":1,"2650":1,"2651":2,"2652":1,"2653":1,"2654":1,"2655":2,"2656":2,"2657":2,"2658":2,"2659":1,"2660":2,"2661":2,"2662":2,"2663":1,"2664":2,"2665":1,"2666":2,"2667":2,"2668":2,"2669":2,"2670":2,"2671":2,"2672":2,"2673":2,"2674":2,"2675":2,"2676":2,"2677":1,"2678":1,"2679":1,"2680":2,"2681":2,"2682":2,"2683":2,"2684":1,"2685":2,"2686":2,"2687":1,"2688":1,"2689":1,"2690":1,"2691":2,"2692":1,"2693":1,"2694":2,"2695":2,"2696":1,"2697":1,"2698":2,"2699":2,"2700":2,"2701":1,"2702":1,"2703":1,"2704":2,"2705":2,"2706":2,"2707":1,"2708":1,"2709":2,"2710":1,"2711":1,"2712":1,"2713":1,"2714":1,"2715":2,"2716":2,"2717":1,"2718":2,"2719":1,"2720":2,"2721":2,"2722":2,"2723":1,"2724":1,"2725":1,"2726":2,"2727":1,"2728":1,"2729":1,"2730":1,"2731":1,"2732":1,"2733":1,"2734":2,"2735":1,"2736":2,"2737":1,"2738":1,"2739":2,"2740":1,"2741":1,"2742":2,"2743":1,"2744":1,"2745":2,"2746":1,"2747":1,"2748":2,"2749":1,"2750":1,"2751":1,"2752":1,"2753":1,"2754":2,"2755":2,"2756":2,"2757":2,"2758":1,"2759":2,"2760":1,"2761":1,"2762":2,"2763":2,"2764":2,"2765":2,"2766":1,"2767":2,"2768":2,"2769":2,"2770":2,"2771":2,"2772":2,"2773":1,"2774":2,"2775":1,"2776":1,"2777":1,"2778":2,"2779":1,"2780":1,"2781":2,"2782":1,"2783":2,"2784":2,"2785":1,"2786":2,"2787":1,"2788":1,"2789":2,"2790":1,"2791":1,"2792":1,"2793":2,"2794":1,"2795":1,"2796":1,"2797":2,"2798":2,"2799":2,"2800":2,"2801":2,"2802":1,"2803":2,"2804":1,"2805":1,"2806":1,"2807":1,"2808":1,"2809":2,"2810":1,"2811":2,"2812":1,"2813":2,"2814":2,"2815":2,"2816":2,"2817":1,"2818":2,"2819":1,"2820":2,"2821":2,"2822":2,"2823":1,"2824":1,"2825":2,"2826":1,"2827":2,"2828":1,"2829":2,"2830":1,"2831":1,"2832":1,"2833":2,"2834":1,"2835":1,"2836":2,"2837":1,"2838":1,"2839":2,"2840":2,"2841":2,"2842":1,"2843":1,"2844":2,"2845":1,"2846":2,"2847":2,"2848":2,"2849":1,"2850":2,"2851":2,"2852":2,"2853":2,"2854":1,"2855":2,"2856":1,"2857":1,"2858":2,"2859":1,"2860":2,"2861":2,"2862":2,"2863":2,"2864":2,"2865":1,"2866":1,"2867":1,"2868":1,"2869":1,"2870":2,"2871":1,"2872":1,"2873":2,"2874":1,"2875":1,"2876":1,"2877":1,"2878":1,"2879":2,"2880":2,"2881":1,"2882":1,"2883":2,"2884":1,"2885":2,"2886":1,"2887":2,"2888":2,"2889":1,"2890":1,"2891":1,"2892":2,"2893":1,"2894":1,"2895":1,"2896":2,"2897":2,"2898":2,"2899":2,"2900":1,"2901":1,"2902":1,"2903":2,"2904":1,"2905":2,"2906":1,"2907":2,"2908":1,"2909":2,"2910":2,"2911":2,"2912":1,"2913":2,"2914":1,"2915":1,"2916":1,"2917":2,"2918":1,"2919":1,"2920":1,"2921":2,"2922":2,"2923":2,"2924":2,"2925":2,"2926":2,"2927":2,"2928":2,"2929":2,"2930":2,"2931":1,"2932":2,"2933":1,"2934":1,"2935":2,"2936":1,"2937":1,"2938":1,"2939":1,"2940":1,"2941":1,"2942":1,"2943":1,"2944":2,"2945":1,"2946":1,"2947":1,"2948":2,"2949":1,"2950":1,"2951":2,"2952":1,"2953":2,"2954":2,"2955":1,"2956":2,"2957":1,"2958":2,"2959":2,"2960":1,"2961":2,"2962":2,"2963":2,"2964":1,"2965":1,"2966":1,"2967":1,"2968":1,"2969":2,"2970":2,"2971":1,"2972":1,"2973":2,"2974":2,"2975":2,"2976":2,"2977":2,"2978":1,"2979":1,"2980":2,"2981":1,"2982":1,"2983":1,"2984":2,"2985":1,"2986":1,"2987":2,"2988":2,"2989":1,"2990":2,"2991":2,"2992":2,"2993":1,"2994":1,"2995":2,"2996":1,"2997":2,"2998":1,"2999":2,"3000":2,"3001":1,"3002":2,"3003":2,"3004":1,"3005":1,"3006":2,"3007":1,"3008":1,"3009":2,"3010":2,"3011":1,"3012":1,"3013":1,"3014":1,"3015":2,"3016":1,"3017":1,"3018":2,"3019":1,"3020":2,"3021":1,"3022":2,"3023":1,"3024":2,"3025":1,"3026":1,"3027":1,"3028":2,"3029":1,"3030":1,"3031":2,"3032":2,"3033":2,"3034":2,"3035":1,"3036":2,"3037":1,"3038":2,"3039":1,"3040":1,"3041":2,"3042":2,"3043":2,"3044":2,"3045":1,"3046":2,"3047":2,"3048":2,"3049":2,"3050":1,"3051":2,"3052":1,"3053":2,"3054":2,"3055":1,"3056":2,"3057":2,"3058":1,"3059":1,"3060":2,"3061":2,"3062":2,"3063":1,"3064":2,"3065":1,"3066":1,"3067":2,"3068":1,"3069":1,"3070":2,"3071":2,"3072":1,"3073":2,"3074":2,"3075":1,"3076":1,"3077":1,"3078":2,"3079":2,"3080":2,"3081":2,"3082":2,"3083":1,"3084":2,"3085":2,"3086":1,"3087":1,"3088":1,"3089":1,"3090":1,"3091":1,"3092":1,"3093":1,"3094":1,"3095":1,"3096":2,"3097":2,"3098":2,"3099":2,"3100":1,"3101":1,"3102":2,"3103":1,"3104":2,"3105":2,"3106":1,"3107":1,"3108":1,"3109":2,"3110":2,"3111":1,"3112":2,"3113":2,"3114":1,"3115":1,"3116":2,"3117":2,"3118":2,"3119":2,"3120":2,"3121":1,"3122":2,"3123":2,"3124":2,"3125":1,"3126":2,"3127":2,"3128":1,"3129":2,"3130":2,"3131":2,"3132":2,"3133":2,"3134":1,"3135":1,"3136":1,"3137":2,"3138":2,"3139":1,"3140":1,"3141":2,"3142":2,"3143":1,"3144":2,"3145":1,"3146":1,"3147":1,"3148":2,"3149":1,"3150":2,"3151":1,"3152":2,"3153":2,"3154":1,"3155":2,"3156":2,"3157":1,"3158":1,"3159":1,"3160":1,"3161":2,"3162":2,"3163":1,"3164":2,"3165":1,"3166":2,"3167":1,"3168":2,"3169":1,"3170":1,"3171":1,"3172":1,"3173":2,"3174":2,"3175":2,"3176":2,"3177":2,"3178":2,"3179":2,"3180":2,"3181":2,"3182":2,"3183":2,"3184":2,"3185":2,"3186":1,"3187":1,"3188":2,"3189":1,"3190":1,"3191":2,"3192":2,"3193":2,"3194":1,"3195":1,"3196":2,"3197":2,"3198":2,"3199":2,"3200":2,"3201":2,"3202":1,"3203":1,"3204":2,"3205":2,"3206":2,"3207":1,"3208":1,"3209":1,"3210":2,"3211":1,"3212":2,"3213":2,"3214":2,"3215":1,"3216":1,"3217":1,"3218":1,"3219":2,"3220":2,"3221":1,"3222":2,"3223":1,"3224":1,"3225":2,"3226":1,"3227":2,"3228":1,"3229":1,"3230":2,"3231":2,"3232":1,"3233":1,"3234":1,"3235":1,"3236":1,"3237":2,"3238":1,"3239":1,"3240":2,"3241":1,"3242":1,"3243":2,"3244":1,"3245":2,"3246":2,"3247":1,"3248":2,"3249":2,"3250":1,"3251":2,"3252":2,"3253":1,"3254":2,"3255":1,"3256":1,"3257":2,"3258":1,"3259":2,"3260":2,"3261":1,"3262":2,"3263":1,"3264":2,"3265":2,"3266":1,"3267":1,"3268":1,"3269":1,"3270":2,"3271":2,"3272":1,"3273":1,"3274":2,"3275":2,"3276":1,"3277":2,"3278":2,"3279":1,"3280":1,"3281":1,"3282":1,"3283":2,"3284":1,"3285":2,"3286":1,"3287":1,"3288":2,"3289":2,"3290":2,"3291":1,"3292":1,"3293":2,"3294":1,"3295":1,"3296":1,"3297":2,"3298":2,"3299":1,"3300":2,"3301":1,"3302":1,"3303":1,"3304":2,"3305":1,"3306":2,"3307":1,"3308":1,"3309":1,"3310":2,"3311":1,"3312":2,"3313":2,"3314":1,"3315":1,"3316":1,"3317":1,"3318":2,"3319":2,"3320":2,"3321":1,"3322":2,"3323":2,"3324":1,"3325":1,"3326":1,"3327":1,"3328":2,"3329":1,"3330":1,"3331":2,"3332":2,"3333":1,"3334":2,"3335":2,"3336":1,"3337":1,"3338":2,"3339":1,"3340":2,"3341":1,"3342":2,"3343":2,"3344":1,"3345":1,"3346":2,"3347":1,"3348":1,"3349":2,"3350":2,"3351":1,"3352":1,"3353":2,"3354":1,"3355":1,"3356":2,"3357":1,"3358":2,"3359":2,"3360":1,"3361":1,"3362":1,"3363":2,"3364":1,"3365":2,"3366":1,"3367":1,"3368":2,"3369":1,"3370":1,"3371":1,"3372":1,"3373":1,"3374":2,"3375":2,"3376":1,"3377":2,"3378":1,"3379":2,"3380":2,"3381":1,"3382":2,"3383":2,"3384":2,"3385":1,"3386":1,"3387":2,"3388":2,"3389":1,"3390":2,"3391":1,"3392":1,"3393":2,"3394":2,"3395":2,"3396":2,"3397":2,"3398":1,"3399":1,"3400":2,"3401":2,"3402":2,"3403":1,"3404":1,"3405":1,"3406":1,"3407":2,"3408":2,"3409":2,"3410":1,"3411":2,"3412":1,"3413":2,"3414":2,"3415":2,"3416":1,"3417":1,"3418":1,"3419":1,"3420":2,"3421":2,"3422":1,"3423":2,"3424":1,"3425":2,"3426":2,"3427":1,"3428":2,"3429":2,"3430":2,"3431":2,"3432":2,"3433":1,"3434":1,"3435":1,"3436":2,"3437":2,"3438":1,"3439":2,"3440":2,"3441":2,"3442":2,"3443":1,"3444":2,"3445":2,"3446":1,"3447":2,"3448":2,"3449":1,"3450":1,"3451":2,"3452":2,"3453":2,"3454":1,"3455":1,"3456":2,"3457":1,"3458":1,"3459":1,"3460":2,"3461":1,"3462":2,"3463":1,"3464":2,"3465":1,"3466":1,"3467":1,"3468":1,"3469":1,"3470":2,"3471":2,"3472":1,"3473":1,"3474":2,"3475":2,"3476":2,"3477":1,"3478":1,"3479":2,"3480":1,"3481":2,"3482":1,"3483":2,"3484":2,"3485":1,"3486":2,"3487":2,"3488":1,"3489":1,"3490":1,"3491":1,"3492":2,"3493":2,"3494":2,"3495":2,"3496":1,"3497":2,"3498":1,"3499":1,"3500":2,"3501":1,"3502":2,"3503":2,"3504":1,"3505":2,"3506":2,"3507":1,"3508":2,"3509":1,"3510":2,"3511":2,"3512":1,"3513":1,"3514":1,"3515":1,"3516":1,"3517":1,"3518":2,"3519":1,"3520":1,"3521":1,"3522":2,"3523":1,"3524":2,"3525":2,"3526":1,"3527":2,"3528":1,"3529":1,"3530":2,"3531":2,"3532":2,"3533":1,"3534":1,"3535":1,"3536":1,"3537":1,"3538":1,"3539":1,"3540":2,"3541":2,"3542":2,"3543":2,"3544":1,"3545":2,"3546":1,"3547":2,"3548":2,"3549":1,"3550":1,"3551":1,"3552":1,"3553":2,"3554":1,"3555":1,"3556":1,"3557":1,"3558":1,"3559":2,"3560":2,"3561":1,"3562":1,"3563":1,"3564":1,"3565":1,"3566":2,"3567":1,"3568":2,"3569":1,"3570":2,"3571":2,"3572":2,"3573":1,"3574":1,"3575":2,"3576":2,"3577":1,"3578":2,"3579":2,"3580":2,"3581":1,"3582":2,"3583":2,"3584":2,"3585":1,"3586":2,"3587":2,"3588":2,"3589":1,"3590":1,"3591":2,"3592":2,"3593":2,"3594":1,"3595":2,"3596":2,"3597":2,"3598":2,"3599":2,"3600":1,"3601":1,"3602":1,"3603":2,"3604":1,"3605":1,"3606":1,"3607":2,"3608":2,"3609":2,"3610":2,"3611":1,"3612":2,"3613":2,"3614":2,"3615":1,"3616":2,"3617":2,"3618":1,"3619":2,"3620":1,"3621":2,"3622":1,"3623":2,"3624":1,"3625":2,"3626":2,"3627":2,"3628":1,"3629":2,"3630":1,"3631":2,"3632":1,"3633":2,"3634":1,"3635":2,"3636":2,"3637":2,"3638":1,"3639":1,"3640":2,"3641":1,"3642":2,"3643":1,"3644":2,"3645":1,"3646":2,"3647":1,"3648":2,"3649":1,"3650":1,"3651":2,"3652":1,"3653":1,"3654":2,"3655":1,"3656":1,"3657":2,"3658":2,"3659":2,"3660":2,"3661":1,"3662":1,"3663":1,"3664":2,"3665":2,"3666":1,"3667":2,"3668":1,"3669":1,"3670":2,"3671":2,"3672":2,"3673":1,"3674":1,"3675":2,"3676":1,"3677":2,"3678":2,"3679":1,"3680":1,"3681":1,"3682":2,"3683":2,"3684":1,"3685":2,"3686":2,"3687":1,"3688":2,"3689":1,"3690":2,"3691":2,"3692":2,"3693":1,"3694":2,"3695":2,"3696":2,"3697":2,"3698":1,"3699":1,"3700":2,"3701":2,"3702":2,"3703":1,"3704":1,"3705":1,"3706":2,"3707":1,"3708":2,"3709":1,"3710":1,"3711":1,"3712":1,"3713":2,"3714":1,"3715":2,"3716":1,"3717":2,"3718":2,"3719":2,"3720":1,"3721":1,"3722":2,"3723":2,"3724":2,"3725":2,"3726":1,"3727":1,"3728":2,"3729":2,"3730":1,"3731":2,"3732":1,"3733":2,"3734":1,"3735":1,"3736":1,"3737":2,"3738":2,"3739":2,"3740":2,"3741":1,"3742":1,"3743":2,"3744":2,"3745":2,"3746":2,"3747":2,"3748":2,"3749":1,"3750":2,"3751":2,"3752":1,"3753":1,"3754":2,"3755":2,"3756":1,"3757":1,"3758":2,"3759":1,"3760":1,"3761":1,"3762":1,"3763":1,"3764":1,"3765":1,"3766":1,"3767":1,"3768":1,"3769":2,"3770":2,"3771":2,"3772":1,"3773":2,"3774":2,"3775":1,"3776":1,"3777":2,"3778":2,"3779":2,"3780":2,"3781":2,"3782":1,"3783":2,"3784":2,"3785":1,"3786":1,"3787":1,"3788":1,"3789":2,"3790":2,"3791":2,"3792":2,"3793":1,"3794":1,"3795":2,"3796":1,"3797":2,"3798":1,"3799":2,"3800":1,"3801":2,"3802":2,"3803":1,"3804":2,"3805":2,"3806":2,"3807":2,"3808":2,"3809":1,"3810":2,"3811":2,"3812":2,"3813":1,"3814":1,"3815":1,"3816":2,"3817":1,"3818":1,"3819":1,"3820":1,"3821":2,"3822":2,"3823":2,"3824":1,"3825":2,"3826":2,"3827":2,"3828":1,"3829":1,"3830":2,"3831":2,"3832":2,"3833":1,"3834":1,"3835":2,"3836":1,"3837":2,"3838":1,"3839":2,"3840":2,"3841":2,"3842":1,"3843":2,"3844":2,"3845":1,"3846":2,"3847":1,"3848":2,"3849":1,"3850":2,"3851":1,"3852":2,"3853":1,"3854":2,"3855":2,"3856":2,"3857":2,"3858":2,"3859":1,"3860":2,"3861":1,"3862":2,"3863":1,"3864":1,"3865":2,"3866":1,"3867":2,"3868":1,"3869":1,"3870":2,"3871":2,"3872":1,"3873":1,"3874":1,"3875":2,"3876":2,"3877":2,"3878":1,"3879":2,"3880":1,"3881":2,"3882":1,"3883":2,"3884":1,"3885":1,"3886":2,"3887":1,"3888":2,"3889":2,"3890":2,"3891":2,"3892":2,"3893":2,"3894":1,"3895":2,"3896":1,"3897":1,"3898":1,"3899":2,"3900":2,"3901":1,"3902":2,"3903":2,"3904":2,"3905":2,"3906":2,"3907":1,"3908":2,"3909":1,"3910":1,"3911":2,"3912":1,"3913":1,"3914":1,"3915":1,"3916":2,"3917":2,"3918":2,"3919":1,"3920":2,"3921":2,"3922":1,"3923":2,"3924":1,"3925":1,"3926":1,"3927":1,"3928":2,"3929":2,"3930":1,"3931":1,"3932":2,"3933":2,"3934":1,"3935":2,"3936":2,"3937":1,"3938":2,"3939":2,"3940":2,"3941":1,"3942":2,"3943":2,"3944":2,"3945":2,"3946":2,"3947":1,"3948":1,"3949":2,"3950":2,"3951":2,"3952":1,"3953":2,"3954":1,"3955":2,"3956":2,"3957":1,"3958":2,"3959":1,"3960":2,"3961":1,"3962":1,"3963":2,"3964":2,"3965":2,"3966":2,"3967":1,"3968":2,"3969":2,"3970":1,"3971":1,"3972":2,"3973":1,"3974":2,"3975":2,"3976":1,"3977":2,"3978":1,"3979":1,"3980":2,"3981":2,"3982":2,"3983":1,"3984":2,"3985":2,"3986":2,"3987":2,"3988":2,"3989":2,"3990":1,"3991":2,"3992":1,"3993":2,"3994":1,"3995":1,"3996":1,"3997":1,"3998":2,"3999":1,"4000":2,"4001":1,"4002":1,"4003":2,"4004":1,"4005":1,"4006":1,"4007":1,"4008":2,"4009":1,"4010":1,"4011":1,"4012":2,"4013":2,"4014":2,"4015":2,"4016":1,"4017":2,"4018":2,"4019":1,"4020":2,"4021":2,"4022":1,"4023":2,"4024":2,"4025":1,"4026":2,"4027":1,"4028":2,"4029":1,"4030":1,"4031":1,"4032":1,"4033":2,"4034":1,"4035":2,"4036":2,"4037":2,"4038":2,"4039":1,"4040":2,"4041":2,"4042":2,"4043":1,"4044":1,"4045":2,"4046":2,"4047":2,"4048":2,"4049":1,"4050":1,"4051":1,"4052":1,"4053":1,"4054":2,"4055":1,"4056":2,"4057":2,"4058":2,"4059":1,"4060":1,"4061":2,"4062":2,"4063":2,"4064":1,"4065":1,"4066":1,"4067":1,"4068":1,"4069":2,"4070":1,"4071":1,"4072":2,"4073":1,"4074":2,"4075":1,"4076":2,"4077":2,"4078":2,"4079":2,"4080":1,"4081":1,"4082":2,"4083":2,"4084":1,"4085":1,"4086":1,"4087":1,"4088":1,"4089":2,"4090":2,"4091":1,"4092":2,"4093":2,"4094":2,"4095":2,"4096":2,"4097":1,"4098":2,"4099":1,"4100":2,"4101":1,"4102":2,"4103":2,"4104":2,"4105":2,"4106":2,"4107":2,"4108":1,"4109":1,"4110":1,"4111":2,"4112":1,"4113":2,"4114":2,"4115":2,"4116":2,"4117":2,"4118":1,"4119":2,"4120":2,"4121":1,"4122":2,"4123":2,"4124":2,"4125":1,"4126":2,"4127":1,"4128":2,"4129":1,"4130":2,"4131":1,"4132":2,"4133":1,"4134":1,"4135":1,"4136":2,"4137":1,"4138":2,"4139":2,"4140":1,"4141":2,"4142":1,"4143":1,"4144":1,"4145":1,"4146":1,"4147":2,"4148":2,"4149":1,"4150":2,"4151":2,"4152":1,"4153":1,"4154":2,"4155":1,"4156":1,"4157":2,"4158":2,"4159":2,"4160":1,"4161":2,"4162":2,"4163":1,"4164":1,"4165":1,"4166":1,"4167":2,"4168":2,"4169":2,"4170":1,"4171":2,"4172":2,"4173":2,"4174":1,"4175":2,"4176":2,"4177":1,"4178":2,"4179":2,"4180":1,"4181":1,"4182":1,"4183":2,"4184":1,"4185":1,"4186":1,"4187":2,"4188":1,"4189":2,"4190":1,"4191":1,"4192":2,"4193":2,"4194":2,"4195":1,"4196":2,"4197":1,"4198":1,"4199":2,"4200":1,"4201":1,"4202":2,"4203":2,"4204":2,"4205":2,"4206":1,"4207":1,"4208":2,"4209":1,"4210":2,"4211":2,"4212":2,"4213":2,"4214":1,"4215":2,"4216":1,"4217":2,"4218":2,"4219":1,"4220":1,"4221":1,"4222":2,"4223":2,"4224":2,"4225":1,"4226":2,"4227":2,"4228":2,"4229":2,"4230":2,"4231":1,"4232":1,"4233":1,"4234":2,"4235":2,"4236":2,"4237":2,"4238":2,"4239":1,"4240":1,"4241":1,"4242":1,"4243":1,"4244":1,"4245":2,"4246":1,"4247":1,"4248":1,"4249":2,"4250":1,"4251":1,"4252":2,"4253":1,"4254":2,"4255":2,"4256":2,"4257":2,"4258":2,"4259":2,"4260":2,"4261":1,"4262":1,"4263":1,"4264":2,"4265":2,"4266":1,"4267":2,"4268":1,"4269":2,"4270":2,"4271":1,"4272":2,"4273":2,"4274":2,"4275":1,"4276":2,"4277":1,"4278":1,"4279":1,"4280":1,"4281":1,"4282":2,"4283":2,"4284":1,"4285":2,"4286":1,"4287":1,"4288":1,"4289":1,"4290":1,"4291":1,"4292":1,"4293":1,"4294":2,"4295":1,"4296":1,"4297":2,"4298":2,"4299":2,"4300":2,"4301":1,"4302":1,"4303":1,"4304":1,"4305":1,"4306":2,"4307":2,"4308":2,"4309":1,"4310":2,"4311":2,"4312":2,"4313":1,"4314":1,"4315":1,"4316":1,"4317":1,"4318":2,"4319":1,"4320":1,"4321":2,"4322":2,"4323":2,"4324":2,"4325":1,"4326":1,"4327":1,"4328":1,"4329":1,"4330":1,"4331":1,"4332":1,"4333":1,"4334":2,"4335":1,"4336":2,"4337":2,"4338":2,"4339":2,"4340":2,"4341":1,"4342":1,"4343":1,"4344":2,"4345":1,"4346":2,"4347":2,"4348":1,"4349":1,"4350":2,"4351":2,"4352":2,"4353":1,"4354":1,"4355":1,"4356":1,"4357":2,"4358":1,"4359":1,"4360":1,"4361":2,"4362":2,"4363":1,"4364":1,"4365":1,"4366":1,"4367":2,"4368":1,"4369":2,"4370":1,"4371":2,"4372":2,"4373":1,"4374":1,"4375":1,"4376":1,"4377":1,"4378":2,"4379":1,"4380":2,"4381":1,"4382":1,"4383":1,"4384":1,"4385":1,"4386":1,"4387":2,"4388":1,"4389":2,"4390":1,"4391":2,"4392":1,"4393":1,"4394":1,"4395":1,"4396":1,"4397":1,"4398":1,"4399":2,"4400":2,"4401":2,"4402":2,"4403":1,"4404":1,"4405":2,"4406":2,"4407":2,"4408":2,"4409":2,"4410":1,"4411":2,"4412":2,"4413":1,"4414":1,"4415":1,"4416":2,"4417":1,"4418":2,"4419":1,"4420":2,"4421":1,"4422":2,"4423":2,"4424":1,"4425":2,"4426":1,"4427":2,"4428":2,"4429":2,"4430":1,"4431":1,"4432":2,"4433":1,"4434":1,"4435":1,"4436":1,"4437":1,"4438":2,"4439":2,"4440":1,"4441":1,"4442":2,"4443":2,"4444":2,"4445":2,"4446":2,"4447":2,"4448":2,"4449":1,"4450":2,"4451":1,"4452":2,"4453":1,"4454":1,"4455":2,"4456":1,"4457":1,"4458":2,"4459":1,"4460":2,"4461":2,"4462":2,"4463":2,"4464":1,"4465":2,"4466":2,"4467":1,"4468":1,"4469":2,"4470":1,"4471":1,"4472":2,"4473":1,"4474":1,"4475":1,"4476":1,"4477":2,"4478":2,"4479":2,"4480":1,"4481":2,"4482":1,"4483":1,"4484":2,"4485":1,"4486":2,"4487":1,"4488":1,"4489":1,"4490":2,"4491":1,"4492":2,"4493":1,"4494":2,"4495":2,"4496":2,"4497":2,"4498":2,"4499":2,"4500":1,"4501":2,"4502":2,"4503":1,"4504":1,"4505":1,"4506":1,"4507":2,"4508":2,"4509":2,"4510":1,"4511":2,"4512":1,"4513":1,"4514":2,"4515":1,"4516":1,"4517":2,"4518":1,"4519":1,"4520":2,"4521":1,"4522":2,"4523":2,"4524":2,"4525":2,"4526":2,"4527":1,"4528":2,"4529":1,"4530":2,"4531":1,"4532":1,"4533":2,"4534":2,"4535":1,"4536":2,"4537":1,"4538":1,"4539":2,"4540":2,"4541":2,"4542":1,"4543":2,"4544":1,"4545":1,"4546":1,"4547":2,"4548":2,"4549":2,"4550":1,"4551":2,"4552":2,"4553":1,"4554":1,"4555":2,"4556":1,"4557":2,"4558":2,"4559":2,"4560":2,"4561":2,"4562":2,"4563":1,"4564":2,"4565":1,"4566":2,"4567":1,"4568":1,"4569":1,"4570":1,"4571":2,"4572":1,"4573":1,"4574":1,"4575":1,"4576":1,"4577":2,"4578":2,"4579":2,"4580":1,"4581":1,"4582":1,"4583":1,"4584":2,"4585":2,"4586":2,"4587":2,"4588":1,"4589":2,"4590":1,"4591":1,"4592":2,"4593":1,"4594":1,"4595":2,"4596":1,"4597":1,"4598":2,"4599":2,"4600":2,"4601":2,"4602":1,"4603":2,"4604":2,"4605":2,"4606":2,"4607":1,"4608":2,"4609":1,"4610":1,"4611":2,"4612":1,"4613":2,"4614":1,"4615":1,"4616":2,"4617":2,"4618":1,"4619":2,"4620":1,"4621":1,"4622":2,"4623":2,"4624":2,"4625":1,"4626":2,"4627":2,"4628":1,"4629":1,"4630":1,"4631":1,"4632":1,"4633":2,"4634":2,"4635":2,"4636":2,"4637":2,"4638":2,"4639":1,"4640":2,"4641":2,"4642":1,"4643":2,"4644":1,"4645":1,"4646":1,"4647":1,"4648":2,"4649":1,"4650":1,"4651":1,"4652":2,"4653":1,"4654":2,"4655":2,"4656":2,"4657":2,"4658":2,"4659":2,"4660":2,"4661":2,"4662":2,"4663":2,"4664":1,"4665":1,"4666":2,"4667":1,"4668":1,"4669":2,"4670":1,"4671":1,"4672":1,"4673":1,"4674":1,"4675":1,"4676":2,"4677":2,"4678":1,"4679":1,"4680":1,"4681":1,"4682":1,"4683":2,"4684":2,"4685":1,"4686":1,"4687":2,"4688":1,"4689":2,"4690":1,"4691":1,"4692":1,"4693":2,"4694":2,"4695":2,"4696":2,"4697":1,"4698":2,"4699":1,"4700":2,"4701":2,"4702":1,"4703":1,"4704":1,"4705":2,"4706":1,"4707":2,"4708":1,"4709":1,"4710":2,"4711":2,"4712":1,"4713":2,"4714":1,"4715":2,"4716":2,"4717":1,"4718":1,"4719":2,"4720":2,"4721":2,"4722":1,"4723":2,"4724":2,"4725":1,"4726":2,"4727":1,"4728":2,"4729":2,"4730":1,"4731":1,"4732":2,"4733":2,"4734":1,"4735":1,"4736":2,"4737":2,"4738":1,"4739":1,"4740":1,"4741":1,"4742":1,"4743":2,"4744":2,"4745":2,"4746":2,"4747":1,"4748":2,"4749":2,"4750":2,"4751":1,"4752":2,"4753":1,"4754":2,"4755":2,"4756":2,"4757":1,"4758":1,"4759":2,"4760":2,"4761":2,"4762":2,"4763":2,"4764":2,"4765":1,"4766":1,"4767":2,"4768":2,"4769":1,"4770":2,"4771":1,"4772":1,"4773":2,"4774":2,"4775":2,"4776":1,"4777":1,"4778":1,"4779":1,"4780":1,"4781":2,"4782":2,"4783":1,"4784":2,"4785":1,"4786":1,"4787":2,"4788":1,"4789":2,"4790":2,"4791":1,"4792":2,"4793":2,"4794":2,"4795":2,"4796":2,"4797":1,"4798":2,"4799":2,"4800":2,"4801":1,"4802":2,"4803":1,"4804":1,"4805":2,"4806":2,"4807":2,"4808":1,"4809":2,"4810":2,"4811":1,"4812":1,"4813":2,"4814":2,"4815":2,"4816":1,"4817":1,"4818":2,"4819":1,"4820":1,"4821":2,"4822":1,"4823":2,"4824":1,"4825":1,"4826":1,"4827":1,"4828":2,"4829":1,"4830":2,"4831":1,"4832":1,"4833":2,"4834":1,"4835":2,"4836":1,"4837":2,"4838":2,"4839":1,"4840":1,"4841":2,"4842":1,"4843":2,"4844":2,"4845":2,"4846":2,"4847":2,"4848":2,"4849":2,"4850":1,"4851":1,"4852":1,"4853":1,"4854":1,"4855":1,"4856":2,"4857":2,"4858":1,"4859":1,"4860":2,"4861":1,"4862":2,"4863":2,"4864":2,"4865":2,"4866":2,"4867":1,"4868":2,"4869":2,"4870":1,"4871":2,"4872":1,"4873":2,"4874":2,"4875":1,"4876":1,"4877":2,"4878":2,"4879":1,"4880":2,"4881":1,"4882":2,"4883":2,"4884":2,"4885":2,"4886":2,"4887":1,"4888":2,"4889":2,"4890":2,"4891":1,"4892":1,"4893":2,"4894":1,"4895":1,"4896":1,"4897":2,"4898":2,"4899":2,"4900":1,"4901":1,"4902":1,"4903":1,"4904":1,"4905":1,"4906":1,"4907":1,"4908":1,"4909":1,"4910":2,"4911":2,"4912":2,"4913":2,"4914":2,"4915":2,"4916":1,"4917":1,"4918":1,"4919":1,"4920":1,"4921":1,"4922":2,"4923":2,"4924":1,"4925":2,"4926":2,"4927":2,"4928":1,"4929":2,"4930":1,"4931":2,"4932":2,"4933":2,"4934":2,"4935":1,"4936":1,"4937":2,"4938":2,"4939":1,"4940":2,"4941":2,"4942":1,"4943":2,"4944":1,"4945":2,"4946":2,"4947":1,"4948":1,"4949":1,"4950":2,"4951":1,"4952":2,"4953":1,"4954":2,"4955":2,"4956":1,"4957":2,"4958":2,"4959":2,"4960":1,"4961":1,"4962":1,"4963":1,"4964":1,"4965":1,"4966":2,"4967":2,"4968":2,"4969":2,"4970":1,"4971":1,"4972":2,"4973":1,"4974":2,"4975":2,"4976":1,"4977":2,"4978":1,"4979":2,"4980":2,"4981":1,"4982":2,"4983":1,"4984":1,"4985":1,"4986":2,"4987":2,"4988":1,"4989":2,"4990":1,"4991":2,"4992":2,"4993":1,"4994":1,"4995":1,"4996":1,"4997":1,"4998":1,"4999":1,"5000":2,"5001":2,"5002":2,"5003":2,"5004":1,"5005":2,"5006":2,"5007":2,"5008":1,"5009":1,"5010":2,"5011":2,"5012":1,"5013":1,"5014":2,"5015":2,"5016":1,"5017":1,"5018":2,"5019":1,"5020":2,"5021":2,"5022":2,"5023":2,"5024":1,"5025":1,"5026":1,"5027":1,"5028":2,"5029":1,"5030":2,"5031":1,"5032":1,"5033":2,"5034":2,"5035":1,"5036":2,"5037":2,"5038":1,"5039":1,"5040":2,"5041":2,"5042":2,"5043":1,"5044":2,"5045":1,"5046":2,"5047":2,"5048":1,"5049":2,"5050":2,"5051":2,"5052":1,"5053":2,"5054":1,"5055":1,"5056":1,"5057":1,"5058":2,"5059":2,"5060":1,"5061":2,"5062":1,"5063":1,"5064":1,"5065":1,"5066":1,"5067":2,"5068":1,"5069":2,"5070":1,"5071":1,"5072":1,"5073":1,"5074":1,"5075":2,"5076":1,"5077":1,"5078":2,"5079":1,"5080":2,"5081":1,"5082":1,"5083":2,"5084":1,"5085":1,"5086":1,"5087":1,"5088":2,"5089":1,"5090":2,"5091":1,"5092":2,"5093":1,"5094":2,"5095":1,"5096":1,"5097":2,"5098":2,"5099":2,"5100":2,"5101":2,"5102":2,"5103":1,"5104":1,"5105":1,"5106":2,"5107":2,"5108":2,"5109":1,"5110":2,"5111":2,"5112":1,"5113":2,"5114":1,"5115":1,"5116":1,"5117":2,"5118":2,"5119":1,"5120":1,"5121":1,"5122":2,"5123":2,"5124":1,"5125":1,"5126":1,"5127":2,"5128":2,"5129":2,"5130":1,"5131":2,"5132":2,"5133":1,"5134":1,"5135":1,"5136":1,"5137":1,"5138":2,"5139":2,"5140":2,"5141":1,"5142":1,"5143":1,"5144":2,"5145":2,"5146":1,"5147":2,"5148":1,"5149":2,"5150":2,"5151":1,"5152":1,"5153":1,"5154":1,"5155":2,"5156":1,"5157":2,"5158":2,"5159":2,"5160":2,"5161":1,"5162":2,"5163":2,"5164":1,"5165":1,"5166":1,"5167":2,"5168":1,"5169":1,"5170":2,"5171":1,"5172":1,"5173":1,"5174":2,"5175":2,"5176":2,"5177":1,"5178":1,"5179":2,"5180":1,"5181":1,"5182":1,"5183":1,"5184":2,"5185":1,"5186":2,"5187":2,"5188":2,"5189":1,"5190":1,"5191":1,"5192":1,"5193":1,"5194":2,"5195":2,"5196":1,"5197":2,"5198":1,"5199":1,"5200":1,"5201":2,"5202":1,"5203":1,"5204":2,"5205":2,"5206":2,"5207":1,"5208":2,"5209":1,"5210":2,"5211":2,"5212":2,"5213":2,"5214":1,"5215":2,"5216":2,"5217":1,"5218":2,"5219":1,"5220":1,"5221":1,"5222":2,"5223":1,"5224":1,"5225":2,"5226":1,"5227":2,"5228":1,"5229":2,"5230":1,"5231":1,"5232":2,"5233":2,"5234":2,"5235":1,"5236":1,"5237":2,"5238":1,"5239":1,"5240":2,"5241":1,"5242":1,"5243":2,"5244":2,"5245":2,"5246":1,"5247":2,"5248":1,"5249":1,"5250":1,"5251":1,"5252":1,"5253":1,"5254":2,"5255":2,"5256":1,"5257":2,"5258":2,"5259":2,"5260":2,"5261":1,"5262":2,"5263":2,"5264":1,"5265":2,"5266":1,"5267":1,"5268":1,"5269":2,"5270":1,"5271":2,"5272":2,"5273":2,"5274":2,"5275":2,"5276":2,"5277":1,"5278":1,"5279":2,"5280":2,"5281":2,"5282":1,"5283":2,"5284":1,"5285":2,"5286":1,"5287":1,"5288":1,"5289":1,"5290":2,"5291":2,"5292":1,"5293":2,"5294":2,"5295":2,"5296":1,"5297":1,"5298":1,"5299":2,"5300":2,"5301":2,"5302":2,"5303":1,"5304":1,"5305":2,"5306":1,"5307":1,"5308":1,"5309":1,"5310":1,"5311":1,"5312":2,"5313":2,"5314":2,"5315":1,"5316":2,"5317":2,"5318":2,"5319":2,"5320":1,"5321":2,"5322":2,"5323":2,"5324":2,"5325":2,"5326":1,"5327":2,"5328":2,"5329":2,"5330":2,"5331":1,"5332":1,"5333":2,"5334":2,"5335":2,"5336":1,"5337":1,"5338":2,"5339":1,"5340":1,"5341":1,"5342":2,"5343":1,"5344":2,"5345":2,"5346":2,"5347":1,"5348":2,"5349":2,"5350":1,"5351":1,"5352":1,"5353":1,"5354":1,"5355":1,"5356":2,"5357":2,"5358":1,"5359":2,"5360":1,"5361":2,"5362":2,"5363":1,"5364":1,"5365":2,"5366":1,"5367":2,"5368":2,"5369":2,"5370":2,"5371":2,"5372":2,"5373":2,"5374":1,"5375":2,"5376":2,"5377":2,"5378":1,"5379":1,"5380":2,"5381":2,"5382":1,"5383":1,"5384":2,"5385":2,"5386":1,"5387":1,"5388":1,"5389":2,"5390":2,"5391":2,"5392":1,"5393":1,"5394":1,"5395":1,"5396":2,"5397":1,"5398":1,"5399":1,"5400":1,"5401":1,"5402":2,"5403":2,"5404":1,"5405":1,"5406":1,"5407":1,"5408":1,"5409":1,"5410":1,"5411":1,"5412":2,"5413":1,"5414":1,"5415":2,"5416":2,"5417":2,"5418":2,"5419":1,"5420":1,"5421":2,"5422":2,"5423":1,"5424":2,"5425":2,"5426":2,"5427":2,"5428":2,"5429":1,"5430":1,"5431":1,"5432":1,"5433":2,"5434":1,"5435":2,"5436":1,"5437":2,"5438":1,"5439":2,"5440":1,"5441":1,"5442":2,"5443":2,"5444":2,"5445":2,"5446":2,"5447":2,"5448":2,"5449":1,"5450":1,"5451":2,"5452":1,"5453":2,"5454":1,"5455":1,"5456":2,"5457":1,"5458":2,"5459":2,"5460":2,"5461":2,"5462":2,"5463":2,"5464":2,"5465":1,"5466":2,"5467":2,"5468":2,"5469":2,"5470":1,"5471":2,"5472":2,"5473":2,"5474":1,"5475":1,"5476":2,"5477":1,"5478":1,"5479":2,"5480":2,"5481":2,"5482":2,"5483":2,"5484":1,"5485":1,"5486":2,"5487":2,"5488":1,"5489":2,"5490":1,"5491":1,"5492":1,"5493":1,"5494":2,"5495":2,"5496":2,"5497":2,"5498":2,"5499":1,"5500":1,"5501":2,"5502":1,"5503":2,"5504":2,"5505":2,"5506":1,"5507":1,"5508":2,"5509":2,"5510":1,"5511":2,"5512":1,"5513":1,"5514":2,"5515":1,"5516":2,"5517":2,"5518":2,"5519":1,"5520":2,"5521":1,"5522":1,"5523":2,"5524":1,"5525":1,"5526":2,"5527":2,"5528":2,"5529":2,"5530":1,"5531":1,"5532":2,"5533":2,"5534":1,"5535":1,"5536":2,"5537":2,"5538":2,"5539":1,"5540":1,"5541":2,"5542":2,"5543":1,"5544":2,"5545":2,"5546":2,"5547":1,"5548":1,"5549":2,"5550":2,"5551":1,"5552":1,"5553":1,"5554":1,"5555":1,"5556":1,"5557":2,"5558":2,"5559":2,"5560":1,"5561":1,"5562":2,"5563":1,"5564":1,"5565":2,"5566":1,"5567":1,"5568":2,"5569":2,"5570":1,"5571":1,"5572":1,"5573":2,"5574":1,"5575":1,"5576":2,"5577":2,"5578":2,"5579":2,"5580":1,"5581":2,"5582":1,"5583":2,"5584":2,"5585":1,"5586":1,"5587":1,"5588":1,"5589":1,"5590":1,"5591":1,"5592":2,"5593":2,"5594":2,"5595":2,"5596":1,"5597":2,"5598":2,"5599":1,"5600":1,"5601":2,"5602":2,"5603":1,"5604":1,"5605":1,"5606":1,"5607":1,"5608":1,"5609":2,"5610":1,"5611":1,"5612":1,"5613":1,"5614":2,"5615":1,"5616":2,"5617":1,"5618":2,"5619":1,"5620":2,"5621":2,"5622":1,"5623":2,"5624":2,"5625":1,"5626":2,"5627":1,"5628":1,"5629":2,"5630":1,"5631":1,"5632":1,"5633":1,"5634":1,"5635":2,"5636":2,"5637":2,"5638":1,"5639":1,"5640":1,"5641":1,"5642":1,"5643":2,"5644":1,"5645":1,"5646":1,"5647":2,"5648":2,"5649":1,"5650":2,"5651":2,"5652":2,"5653":1,"5654":1,"5655":1,"5656":2,"5657":2,"5658":2,"5659":2,"5660":2,"5661":1,"5662":2,"5663":1,"5664":1,"5665":2,"5666":2,"5667":1,"5668":1,"5669":1,"5670":1,"5671":2,"5672":1,"5673":1,"5674":2,"5675":2,"5676":2,"5677":1,"5678":1,"5679":1,"5680":1,"5681":2,"5682":1,"5683":2,"5684":1,"5685":2,"5686":1,"5687":1,"5688":1,"5689":1,"5690":2,"5691":1,"5692":1,"5693":1,"5694":2,"5695":1,"5696":1,"5697":1,"5698":1,"5699":2,"5700":2,"5701":2,"5702":2,"5703":1,"5704":2,"5705":2,"5706":2,"5707":1,"5708":1,"5709":1,"5710":2,"5711":2,"5712":2,"5713":1,"5714":2,"5715":2,"5716":2,"5717":1,"5718":1,"5719":1,"5720":2,"5721":1,"5722":2,"5723":1,"5724":1,"5725":2,"5726":2,"5727":1,"5728":2,"5729":2,"5730":1,"5731":1,"5732":1,"5733":1,"5734":1,"5735":2,"5736":1,"5737":2,"5738":2,"5739":1,"5740":2,"5741":1,"5742":2,"5743":1,"5744":1,"5745":1,"5746":1,"5747":1,"5748":2,"5749":2,"5750":2,"5751":1,"5752":1,"5753":1,"5754":2,"5755":1,"5756":2,"5757":2,"5758":2,"5759":2,"5760":2,"5761":1,"5762":1,"5763":2,"5764":2,"5765":1,"5766":1,"5767":2,"5768":2,"5769":2,"5770":1,"5771":1,"5772":1,"5773":1,"5774":2,"5775":2,"5776":2,"5777":1,"5778":1,"5779":1,"5780":2,"5781":1,"5782":2,"5783":2,"5784":1,"5785":2,"5786":2,"5787":1,"5788":1,"5789":1,"5790":2,"5791":1,"5792":1,"5793":2,"5794":2,"5795":1,"5796":2,"5797":2,"5798":2,"5799":2,"5800":2,"5801":1,"5802":1,"5803":2,"5804":1,"5805":1,"5806":2,"5807":1,"5808":1,"5809":2,"5810":1,"5811":2,"5812":2,"5813":1,"5814":1,"5815":2,"5816":1,"5817":1,"5818":1,"5819":2,"5820":1,"5821":1,"5822":1,"5823":1,"5824":2,"5825":1,"5826":2,"5827":2,"5828":1,"5829":2,"5830":1,"5831":2,"5832":1,"5833":2,"5834":2,"5835":1,"5836":2,"5837":1,"5838":2,"5839":1,"5840":1,"5841":2,"5842":1,"5843":2,"5844":2,"5845":2,"5846":1,"5847":2,"5848":1,"5849":1,"5850":2,"5851":1,"5852":2,"5853":1,"5854":2,"5855":2,"5856":2,"5857":2,"5858":1,"5859":1,"5860":1,"5861":1,"5862":2,"5863":2,"5864":2,"5865":1,"5866":2,"5867":2,"5868":2,"5869":1,"5870":1,"5871":2,"5872":2,"5873":2,"5874":2,"5875":1,"5876":1,"5877":1,"5878":2,"5879":2,"5880":2,"5881":1,"5882":1,"5883":2,"5884":1,"5885":1,"5886":1,"5887":2,"5888":2,"5889":1,"5890":2,"5891":1,"5892":2,"5893":2,"5894":2,"5895":2,"5896":1,"5897":1,"5898":1,"5899":2,"5900":1,"5901":1,"5902":1,"5903":1,"5904":1,"5905":2,"5906":2,"5907":1,"5908":1,"5909":2,"5910":2,"5911":2,"5912":1,"5913":2,"5914":2,"5915":2,"5916":1,"5917":1,"5918":2,"5919":2,"5920":1,"5921":2,"5922":1,"5923":2,"5924":1,"5925":1,"5926":1,"5927":1,"5928":1,"5929":1,"5930":2,"5931":2,"5932":2,"5933":2,"5934":1,"5935":2,"5936":2,"5937":2,"5938":1,"5939":2,"5940":1,"5941":2,"5942":1,"5943":2,"5944":2,"5945":2,"5946":1,"5947":1,"5948":2,"5949":1,"5950":2,"5951":1,"5952":1,"5953":1,"5954":1,"5955":1,"5956":1,"5957":2,"5958":2,"5959":1,"5960":1,"5961":1,"5962":1,"5963":2,"5964":1,"5965":1,"5966":2,"5967":1,"5968":2,"5969":2,"5970":1,"5971":1,"5972":1,"5973":1,"5974":2,"5975":2,"5976":2,"5977":1,"5978":2,"5979":2,"5980":1,"5981":1,"5982":1,"5983":2,"5984":2,"5985":1,"5986":1,"5987":2,"5988":1,"5989":2,"5990":1,"5991":1,"5992":2,"5993":1,"5994":2,"5995":2,"5996":2,"5997":2,"5998":2,"5999":2,"6000":2,"6001":2,"6002":1,"6003":2,"6004":1,"6005":1,"6006":1,"6007":2,"6008":2,"6009":2,"6010":1,"6011":1,"6012":1,"6013":1,"6014":1,"6015":2,"6016":1,"6017":2,"6018":2,"6019":2,"6020":2,"6021":1,"6022":1,"6023":2,"6024":1,"6025":1,"6026":2,"6027":2,"6028":1,"6029":2,"6030":1,"6031":1,"6032":2,"6033":2,"6034":1,"6035":1,"6036":2,"6037":2,"6038":1,"6039":2,"6040":1,"6041":2,"6042":1,"6043":2,"6044":2,"6045":2,"6046":2,"6047":1,"6048":2,"6049":2,"6050":2,"6051":1,"6052":1,"6053":2,"6054":2,"6055":1,"6056":2,"6057":1,"6058":2,"6059":1,"6060":2,"6061":1,"6062":1,"6063":1,"6064":1,"6065":2,"6066":2,"6067":2,"6068":1,"6069":1,"6070":1,"6071":1,"6072":2,"6073":2,"6074":2,"6075":2,"6076":2,"6077":1,"6078":2,"6079":2,"6080":1,"6081":2,"6082":1,"6083":2,"6084":2,"6085":2,"6086":1,"6087":2,"6088":2,"6089":1,"6090":2,"6091":2,"6092":2,"6093":1,"6094":1,"6095":2,"6096":2,"6097":1,"6098":1,"6099":1,"6100":1,"6101":1,"6102":2,"6103":1,"6104":1,"6105":1,"6106":2,"6107":2,"6108":2,"6109":2,"6110":2,"6111":2,"6112":1,"6113":1,"6114":1,"6115":1,"6116":2,"6117":2,"6118":1,"6119":2,"6120":1,"6121":1,"6122":1,"6123":2,"6124":2,"6125":2,"6126":2,"6127":1,"6128":1,"6129":2,"6130":1,"6131":1,"6132":2,"6133":2,"6134":1,"6135":2,"6136":2,"6137":1,"6138":2,"6139":1,"6140":2,"6141":2,"6142":2,"6143":2,"6144":1,"6145":1,"6146":2,"6147":2,"6148":1,"6149":1,"6150":2,"6151":2,"6152":1,"6153":1,"6154":1,"6155":1,"6156":1,"6157":1,"6158":2,"6159":1,"6160":2,"6161":1,"6162":1,"6163":1,"6164":2,"6165":2,"6166":2,"6167":2,"6168":1,"6169":1,"6170":1,"6171":1,"6172":1,"6173":1,"6174":1,"6175":1,"6176":2,"6177":1,"6178":2,"6179":2,"6180":2,"6181":1,"6182":1,"6183":1,"6184":1,"6185":2,"6186":2,"6187":1,"6188":2,"6189":1,"6190":2,"6191":1,"6192":1,"6193":1,"6194":2,"6195":2,"6196":2,"6197":2,"6198":2,"6199":2,"6200":2,"6201":1,"6202":2,"6203":2,"6204":2,"6205":2,"6206":1,"6207":2,"6208":2,"6209":2,"6210":1,"6211":2,"6212":2,"6213":2,"6214":1,"6215":2,"6216":1,"6217":1,"6218":1,"6219":2,"6220":2,"6221":1,"6222":1,"6223":1,"6224":1,"6225":1,"6226":1,"6227":2,"6228":1,"6229":2,"6230":2,"6231":1,"6232":2,"6233":2,"6234":1,"6235":1,"6236":1,"6237":1,"6238":1,"6239":1,"6240":1,"6241":2,"6242":1,"6243":1,"6244":2,"6245":1,"6246":1,"6247":2,"6248":1,"6249":2,"6250":2,"6251":2,"6252":2,"6253":2,"6254":1,"6255":2,"6256":1,"6257":2,"6258":2,"6259":2,"6260":1,"6261":2,"6262":1,"6263":1,"6264":1,"6265":1,"6266":1,"6267":2,"6268":1,"6269":1,"6270":1,"6271":1,"6272":2,"6273":2,"6274":1,"6275":2,"6276":1,"6277":2,"6278":1,"6279":1,"6280":1,"6281":2,"6282":1,"6283":1,"6284":1,"6285":1,"6286":2,"6287":1,"6288":1,"6289":1,"6290":1,"6291":1,"6292":2,"6293":1,"6294":1,"6295":1,"6296":2,"6297":1,"6298":2,"6299":1,"6300":2,"6301":1,"6302":2,"6303":1,"6304":1,"6305":2,"6306":2,"6307":1,"6308":2,"6309":1,"6310":1,"6311":1,"6312":1,"6313":1,"6314":1,"6315":2,"6316":2,"6317":1,"6318":1,"6319":1,"6320":1,"6321":2,"6322":2,"6323":2,"6324":1,"6325":2,"6326":1,"6327":1,"6328":1,"6329":2,"6330":2,"6331":1,"6332":1,"6333":2,"6334":1,"6335":2,"6336":2,"6337":1,"6338":2,"6339":1,"6340":1,"6341":1,"6342":2,"6343":2,"6344":1,"6345":1,"6346":1,"6347":1,"6348":2,"6349":2,"6350":2,"6351":2,"6352":2,"6353":1,"6354":2,"6355":2,"6356":2,"6357":2,"6358":1,"6359":1,"6360":1,"6361":2,"6362":2,"6363":2,"6364":2,"6365":1,"6366":1,"6367":2,"6368":2,"6369":2,"6370":1,"6371":1,"6372":1,"6373":1,"6374":2,"6375":1,"6376":1,"6377":1,"6378":2,"6379":2,"6380":2,"6381":2,"6382":2,"6383":1,"6384":1,"6385":1,"6386":2,"6387":1,"6388":2,"6389":1,"6390":1,"6391":1,"6392":2,"6393":2,"6394":2,"6395":1,"6396":2,"6397":2,"6398":1,"6399":1,"6400":2,"6401":2,"6402":1,"6403":2,"6404":1,"6405":1,"6406":1,"6407":1,"6408":2,"6409":1,"6410":2,"6411":2,"6412":1,"6413":1,"6414":2,"6415":2,"6416":1,"6417":1,"6418":1,"6419":1,"6420":2,"6421":2,"6422":2,"6423":2,"6424":1,"6425":1,"6426":2,"6427":2,"6428":2,"6429":2,"6430":2,"6431":2,"6432":2,"6433":2,"6434":2,"6435":1,"6436":1,"6437":1,"6438":1,"6439":2,"6440":1,"6441":2,"6442":1,"6443":2,"6444":1,"6445":1,"6446":2,"6447":2,"6448":2,"6449":2,"6450":2,"6451":1,"6452":2,"6453":2,"6454":2,"6455":2,"6456":2,"6457":1,"6458":2,"6459":2,"6460":2,"6461":2,"6462":2,"6463":2,"6464":1,"6465":1,"6466":2,"6467":2,"6468":2,"6469":2,"6470":2,"6471":2,"6472":2,"6473":1,"6474":2,"6475":2,"6476":2,"6477":1,"6478":1,"6479":2,"6480":2,"6481":2,"6482":2,"6483":2,"6484":1,"6485":2,"6486":2,"6487":2,"6488":2,"6489":1,"6490":2,"6491":1,"6492":1,"6493":1,"6494":1,"6495":2,"6496":2,"6497":2,"6498":2,"6499":2,"6500":1,"6501":1,"6502":1,"6503":1,"6504":1,"6505":2,"6506":2,"6507":2,"6508":2,"6509":2,"6510":1,"6511":1,"6512":1,"6513":2,"6514":1,"6515":2,"6516":2,"6517":1,"6518":1,"6519":1,"6520":2,"6521":1,"6522":2,"6523":2,"6524":1,"6525":1,"6526":2,"6527":1,"6528":2,"6529":1,"6530":1,"6531":2,"6532":1,"6533":1,"6534":1,"6535":2,"6536":1,"6537":2,"6538":1,"6539":2,"6540":2,"6541":2,"6542":1,"6543":1,"6544":2,"6545":2,"6546":1,"6547":2,"6548":2,"6549":2,"6550":2,"6551":1,"6552":2,"6553":2,"6554":2,"6555":1,"6556":1,"6557":1,"6558":1,"6559":1,"6560":1,"6561":2,"6562":1,"6563":1,"6564":1,"6565":1,"6566":2,"6567":1,"6568":2,"6569":2,"6570":1,"6571":1,"6572":2,"6573":2,"6574":1,"6575":2,"6576":1,"6577":1,"6578":1,"6579":1,"6580":2,"6581":2,"6582":2,"6583":1,"6584":2,"6585":1,"6586":1,"6587":2,"6588":2,"6589":2,"6590":1,"6591":2,"6592":2,"6593":1,"6594":2,"6595":2,"6596":1,"6597":1,"6598":1,"6599":1,"6600":1,"6601":1,"6602":1,"6603":2,"6604":2,"6605":1,"6606":2,"6607":1,"6608":1,"6609":1,"6610":2,"6611":1,"6612":2,"6613":2,"6614":1,"6615":1,"6616":2,"6617":1,"6618":2,"6619":2,"6620":1,"6621":1,"6622":1,"6623":1,"6624":1,"6625":2,"6626":1,"6627":1,"6628":1,"6629":2,"6630":2,"6631":1,"6632":1,"6633":1,"6634":2,"6635":1,"6636":2,"6637":1,"6638":2,"6639":2,"6640":1,"6641":1,"6642":1,"6643":1,"6644":1,"6645":2,"6646":2,"6647":2,"6648":1,"6649":2,"6650":2,"6651":1,"6652":2,"6653":1,"6654":2,"6655":2,"6656":2,"6657":1,"6658":2,"6659":1,"6660":1,"6661":1,"6662":2,"6663":2,"6664":2,"6665":2,"6666":2,"6667":2,"6668":1,"6669":2,"6670":1,"6671":2,"6672":2,"6673":1,"6674":2,"6675":2,"6676":2,"6677":1,"6678":1,"6679":1,"6680":2,"6681":2,"6682":1,"6683":2,"6684":1,"6685":2,"6686":2,"6687":2,"6688":1,"6689":2,"6690":1,"6691":1,"6692":1,"6693":1,"6694":1,"6695":2,"6696":1,"6697":2,"6698":1,"6699":1,"6700":2,"6701":1,"6702":1,"6703":1,"6704":1,"6705":1,"6706":2,"6707":1,"6708":1,"6709":1,"6710":2,"6711":2,"6712":1,"6713":1,"6714":2,"6715":1,"6716":2,"6717":2,"6718":1,"6719":2,"6720":1,"6721":1,"6722":2,"6723":1,"6724":2,"6725":1,"6726":2,"6727":2,"6728":1,"6729":1,"6730":2,"6731":1,"6732":2,"6733":2,"6734":2,"6735":1,"6736":2,"6737":1,"6738":1,"6739":2,"6740":2,"6741":2,"6742":1,"6743":2,"6744":1,"6745":2,"6746":2,"6747":1,"6748":2,"6749":1,"6750":2,"6751":2,"6752":2,"6753":1,"6754":2,"6755":1,"6756":2,"6757":1,"6758":1,"6759":2,"6760":2,"6761":1,"6762":2,"6763":2,"6764":1,"6765":1,"6766":1,"6767":1,"6768":1,"6769":1,"6770":1,"6771":2,"6772":1,"6773":2,"6774":1,"6775":2,"6776":2,"6777":2,"6778":2,"6779":2,"6780":2,"6781":2,"6782":1,"6783":1,"6784":1,"6785":1,"6786":2,"6787":1,"6788":2,"6789":2,"6790":2,"6791":1,"6792":2,"6793":2,"6794":2,"6795":2,"6796":2,"6797":1,"6798":1,"6799":2,"6800":2,"6801":1,"6802":1,"6803":1,"6804":2,"6805":2,"6806":1,"6807":1,"6808":1,"6809":1,"6810":1,"6811":2,"6812":2,"6813":2,"6814":1,"6815":1,"6816":2,"6817":2,"6818":2,"6819":1,"6820":2,"6821":1,"6822":1,"6823":2,"6824":2,"6825":1,"6826":2,"6827":1,"6828":2,"6829":1,"6830":2,"6831":2,"6832":1,"6833":2,"6834":2,"6835":2,"6836":2,"6837":1,"6838":1,"6839":2,"6840":1,"6841":1,"6842":2,"6843":2,"6844":1,"6845":1,"6846":2,"6847":2,"6848":2,"6849":1,"6850":1,"6851":2,"6852":2,"6853":1,"6854":2,"6855":2,"6856":2,"6857":2,"6858":1,"6859":2,"6860":2,"6861":2,"6862":1,"6863":1,"6864":2,"6865":1,"6866":1,"6867":2,"6868":2,"6869":1,"6870":1,"6871":1,"6872":2,"6873":1,"6874":1,"6875":1,"6876":2,"6877":1,"6878":2,"6879":2,"6880":1,"6881":2,"6882":2,"6883":2,"6884":2,"6885":2,"6886":2,"6887":2,"6888":1,"6889":1,"6890":2,"6891":1,"6892":1,"6893":2,"6894":1,"6895":2,"6896":2,"6897":2,"6898":2,"6899":1,"6900":2,"6901":1,"6902":2,"6903":1,"6904":2,"6905":2,"6906":1,"6907":2,"6908":2,"6909":1,"6910":1,"6911":2,"6912":1,"6913":2,"6914":2,"6915":1,"6916":2,"6917":1,"6918":1,"6919":2,"6920":2,"6921":2,"6922":2,"6923":1,"6924":2,"6925":1,"6926":1,"6927":1,"6928":2,"6929":2,"6930":2,"6931":2,"6932":2,"6933":2,"6934":1,"6935":1,"6936":2,"6937":1,"6938":2,"6939":2,"6940":1,"6941":2,"6942":1,"6943":2,"6944":1,"6945":1,"6946":1,"6947":2,"6948":2,"6949":1,"6950":2,"6951":1,"6952":2,"6953":2,"6954":1,"6955":1,"6956":2,"6957":1,"6958":1,"6959":2,"6960":1,"6961":1,"6962":2,"6963":1,"6964":1,"6965":1,"6966":1,"6967":2,"6968":2,"6969":1,"6970":2,"6971":1,"6972":2,"6973":2,"6974":2,"6975":2,"6976":2,"6977":1,"6978":2,"6979":2,"6980":2,"6981":1,"6982":1,"6983":1,"6984":1,"6985":1,"6986":2,"6987":1,"6988":1,"6989":2,"6990":1,"6991":2,"6992":2,"6993":2,"6994":2,"6995":1,"6996":1,"6997":1,"6998":2,"6999":1,"7000":1,"7001":1,"7002":2,"7003":1,"7004":2,"7005":1,"7006":2,"7007":1,"7008":2,"7009":2,"7010":1,"7011":2,"7012":2,"7013":2,"7014":1,"7015":1,"7016":2,"7017":1,"7018":1,"7019":2,"7020":1,"7021":2,"7022":2,"7023":1,"7024":1,"7025":1,"7026":2,"7027":1,"7028":1,"7029":2,"7030":1,"7031":1,"7032":2,"7033":1,"7034":1,"7035":2,"7036":1,"7037":2,"7038":1,"7039":2,"7040":1,"7041":2,"7042":2,"7043":2,"7044":1,"7045":2,"7046":1,"7047":2,"7048":2,"7049":2,"7050":1,"7051":2,"7052":1,"7053":1,"7054":2,"7055":2,"7056":2,"7057":2,"7058":2,"7059":1,"7060":2,"7061":1,"7062":1,"7063":2,"7064":1,"7065":1,"7066":1,"7067":1,"7068":1,"7069":1,"7070":1,"7071":1,"7072":2,"7073":1,"7074":2,"7075":1,"7076":1,"7077":1,"7078":1,"7079":1,"7080":1,"7081":2,"7082":1,"7083":1,"7084":2,"7085":1,"7086":2,"7087":2,"7088":1,"7089":1,"7090":2,"7091":1,"7092":1,"7093":1,"7094":2,"7095":2,"7096":2,"7097":2,"7098":2,"7099":1,"7100":2,"7101":2,"7102":1,"7103":1,"7104":1,"7105":1,"7106":1,"7107":2,"7108":1,"7109":1,"7110":2,"7111":2,"7112":1,"7113":2,"7114":2,"7115":1,"7116":1,"7117":2,"7118":1,"7119":1,"7120":1,"7121":2,"7122":2,"7123":1,"7124":2,"7125":1,"7126":1,"7127":2,"7128":2,"7129":1,"7130":2,"7131":1,"7132":1,"7133":1,"7134":1,"7135":1,"7136":2,"7137":2,"7138":1,"7139":2,"7140":2,"7141":2,"7142":2,"7143":1,"7144":1,"7145":2,"7146":2,"7147":1,"7148":2,"7149":1,"7150":2,"7151":2,"7152":2,"7153":2,"7154":2,"7155":1,"7156":1,"7157":1,"7158":2,"7159":2,"7160":2,"7161":1,"7162":1,"7163":1,"7164":1,"7165":2,"7166":1,"7167":2,"7168":1,"7169":1,"7170":1,"7171":2,"7172":2,"7173":1,"7174":2,"7175":1,"7176":2,"7177":1,"7178":1,"7179":2,"7180":1,"7181":2,"7182":1,"7183":2,"7184":1,"7185":1,"7186":1,"7187":1,"7188":1,"7189":2,"7190":2,"7191":2,"7192":2,"7193":1,"7194":2,"7195":2,"7196":2,"7197":1,"7198":1,"7199":2,"7200":1,"7201":2,"7202":2,"7203":1,"7204":1,"7205":1,"7206":2,"7207":2,"7208":2,"7209":1,"7210":1,"7211":2,"7212":1,"7213":2,"7214":1,"7215":2,"7216":2,"7217":1,"7218":1,"7219":1,"7220":2,"7221":2,"7222":1,"7223":2,"7224":2,"7225":1,"7226":2,"7227":2,"7228":2,"7229":2,"7230":2,"7231":1,"7232":2,"7233":2,"7234":1,"7235":1,"7236":2,"7237":1,"7238":2,"7239":2,"7240":1,"7241":2,"7242":2,"7243":2,"7244":1,"7245":2,"7246":2,"7247":1,"7248":2,"7249":2,"7250":2,"7251":1,"7252":1,"7253":2,"7254":2,"7255":1,"7256":1,"7257":1,"7258":2,"7259":1,"7260":2,"7261":1,"7262":1,"7263":1,"7264":2,"7265":2,"7266":2,"7267":1,"7268":1,"7269":1,"7270":2,"7271":2,"7272":2,"7273":2,"7274":1,"7275":1,"7276":1,"7277":1,"7278":2,"7279":2,"7280":2,"7281":2,"7282":2,"7283":2,"7284":1,"7285":2,"7286":2,"7287":2,"7288":2,"7289":1,"7290":2,"7291":1,"7292":1,"7293":2,"7294":1,"7295":2,"7296":2,"7297":1,"7298":2,"7299":1,"7300":1,"7301":2,"7302":2,"7303":1,"7304":2,"7305":2,"7306":1,"7307":2,"7308":1,"7309":1,"7310":1,"7311":2,"7312":1,"7313":2,"7314":1,"7315":2,"7316":1,"7317":2,"7318":1,"7319":2,"7320":2,"7321":1,"7322":2,"7323":2,"7324":1,"7325":1,"7326":1,"7327":2,"7328":2,"7329":2,"7330":2,"7331":2,"7332":2,"7333":2,"7334":2,"7335":1,"7336":1,"7337":2,"7338":1,"7339":1,"7340":2,"7341":2,"7342":1,"7343":2,"7344":2,"7345":2,"7346":2,"7347":1,"7348":2,"7349":2,"7350":2,"7351":2,"7352":2,"7353":2,"7354":2,"7355":1,"7356":2,"7357":1,"7358":1,"7359":2,"7360":1,"7361":1,"7362":2,"7363":1,"7364":1,"7365":2,"7366":1,"7367":2,"7368":1,"7369":2,"7370":2,"7371":1,"7372":2,"7373":2,"7374":2,"7375":1,"7376":2,"7377":1,"7378":2,"7379":1,"7380":2,"7381":1,"7382":1,"7383":2,"7384":1,"7385":2,"7386":1,"7387":1,"7388":2,"7389":1,"7390":2,"7391":2,"7392":2,"7393":2,"7394":2,"7395":1,"7396":2,"7397":2,"7398":2,"7399":2,"7400":2,"7401":2,"7402":1,"7403":1,"7404":2,"7405":1,"7406":1,"7407":1,"7408":1,"7409":1,"7410":2,"7411":1,"7412":2,"7413":2,"7414":2,"7415":2,"7416":2,"7417":2,"7418":2,"7419":1,"7420":2,"7421":1,"7422":1,"7423":2,"7424":1,"7425":2,"7426":2,"7427":2,"7428":2,"7429":2,"7430":1,"7431":1,"7432":1,"7433":1,"7434":2,"7435":1,"7436":2,"7437":1,"7438":2,"7439":1,"7440":1,"7441":2,"7442":2,"7443":2,"7444":2,"7445":2,"7446":1,"7447":2,"7448":1,"7449":1,"7450":1,"7451":2,"7452":1,"7453":1,"7454":2,"7455":1,"7456":2,"7457":2,"7458":2,"7459":1,"7460":2,"7461":2,"7462":2,"7463":2,"7464":2,"7465":2,"7466":2,"7467":1,"7468":1,"7469":2,"7470":1,"7471":2,"7472":2,"7473":2,"7474":1,"7475":2,"7476":1,"7477":1,"7478":1,"7479":1,"7480":1,"7481":2,"7482":2,"7483":1,"7484":2,"7485":2,"7486":2,"7487":2,"7488":2,"7489":1,"7490":2,"7491":2,"7492":1,"7493":2,"7494":1,"7495":1,"7496":1,"7497":1,"7498":1,"7499":1,"7500":1,"7501":1,"7502":1,"7503":1,"7504":1,"7505":1,"7506":1,"7507":1,"7508":1,"7509":1,"7510":2,"7511":2,"7512":2,"7513":1,"7514":2,"7515":2,"7516":1,"7517":2,"7518":2,"7519":2,"7520":2,"7521":1,"7522":1,"7523":2,"7524":1,"7525":2,"7526":2,"7527":2,"7528":2,"7529":1,"7530":2,"7531":2,"7532":1,"7533":1,"7534":1,"7535":1,"7536":1,"7537":1,"7538":1,"7539":2,"7540":1,"7541":1,"7542":1,"7543":2,"7544":2,"7545":2,"7546":1,"7547":1,"7548":1,"7549":1,"7550":2,"7551":1,"7552":2,"7553":1,"7554":1,"7555":2,"7556":2,"7557":1,"7558":1,"7559":1,"7560":1,"7561":2,"7562":2,"7563":1,"7564":1,"7565":1,"7566":2,"7567":1,"7568":2,"7569":2,"7570":1,"7571":2,"7572":2,"7573":2,"7574":2,"7575":2,"7576":2,"7577":1,"7578":1,"7579":1,"7580":2,"7581":1,"7582":2,"7583":1,"7584":1,"7585":1,"7586":2,"7587":2,"7588":1,"7589":1,"7590":2,"7591":2,"7592":1,"7593":2,"7594":1,"7595":1,"7596":2,"7597":1,"7598":2,"7599":1,"7600":2,"7601":1,"7602":2,"7603":2,"7604":2,"7605":2,"7606":1,"7607":1,"7608":2,"7609":1,"7610":1,"7611":2,"7612":1,"7613":2,"7614":2,"7615":2,"7616":2,"7617":1,"7618":1,"7619":2,"7620":1,"7621":1,"7622":2,"7623":1,"7624":2,"7625":2,"7626":1,"7627":1,"7628":2,"7629":2,"7630":2,"7631":1,"7632":2,"7633":1,"7634":2,"7635":2,"7636":2,"7637":2,"7638":1,"7639":1,"7640":1,"7641":1,"7642":2,"7643":2,"7644":2,"7645":1,"7646":2,"7647":2,"7648":1,"7649":1,"7650":1,"7651":1,"7652":2,"7653":1,"7654":2,"7655":1,"7656":2,"7657":1,"7658":2,"7659":2,"7660":2,"7661":2,"7662":1,"7663":2,"7664":1,"7665":2,"7666":2,"7667":1,"7668":1,"7669":2,"7670":1,"7671":1,"7672":2,"7673":2,"7674":1,"7675":2,"7676":1,"7677":2,"7678":1,"7679":1,"7680":1,"7681":2,"7682":1,"7683":1,"7684":2,"7685":1,"7686":1,"7687":1,"7688":1,"7689":1,"7690":1,"7691":1,"7692":2,"7693":2,"7694":1,"7695":1,"7696":1,"7697":2,"7698":1,"7699":2,"7700":1,"7701":2,"7702":2,"7703":1,"7704":2,"7705":2,"7706":1,"7707":1,"7708":2,"7709":1,"7710":2,"7711":2,"7712":2,"7713":2,"7714":2,"7715":1,"7716":1,"7717":2,"7718":2,"7719":2,"7720":1,"7721":2,"7722":1,"7723":2,"7724":2,"7725":1,"7726":2,"7727":2,"7728":2,"7729":2,"7730":1,"7731":1,"7732":1,"7733":2,"7734":1,"7735":1,"7736":1,"7737":2,"7738":1,"7739":1,"7740":2,"7741":2,"7742":2,"7743":2,"7744":2,"7745":1,"7746":1,"7747":1,"7748":2,"7749":1,"7750":2,"7751":2,"7752":2,"7753":2,"7754":1,"7755":2,"7756":1,"7757":1,"7758":2,"7759":2,"7760":2,"7761":1,"7762":1,"7763":2,"7764":1,"7765":2,"7766":2,"7767":2,"7768":1,"7769":1,"7770":1,"7771":1,"7772":2,"7773":1,"7774":1,"7775":2,"7776":2,"7777":2,"7778":1,"7779":2,"7780":2,"7781":2,"7782":2,"7783":1,"7784":2,"7785":2,"7786":1,"7787":1,"7788":1,"7789":2,"7790":1,"7791":1,"7792":1,"7793":1,"7794":1,"7795":2,"7796":1,"7797":1,"7798":2,"7799":1,"7800":2,"7801":2,"7802":1,"7803":2,"7804":1,"7805":2,"7806":1,"7807":1,"7808":1,"7809":2,"7810":1,"7811":1,"7812":2,"7813":1,"7814":2,"7815":1,"7816":2,"7817":1,"7818":2,"7819":1,"7820":2,"7821":1,"7822":1,"7823":1,"7824":2,"7825":2,"7826":2,"7827":2,"7828":1,"7829":1,"7830":1,"7831":2,"7832":1,"7833":1,"7834":2,"7835":1,"7836":1,"7837":1,"7838":2,"7839":1,"7840":2,"7841":2,"7842":1,"7843":2,"7844":2,"7845":2,"7846":1,"7847":1,"7848":2,"7849":2,"7850":2,"7851":2,"7852":1,"7853":2,"7854":1,"7855":2,"7856":1,"7857":1,"7858":1,"7859":2,"7860":1,"7861":1,"7862":2,"7863":2,"7864":1,"7865":2,"7866":2,"7867":1,"7868":2,"7869":2,"7870":2,"7871":1,"7872":2,"7873":1,"7874":2,"7875":2,"7876":1,"7877":2,"7878":1,"7879":2,"7880":1,"7881":2,"7882":2,"7883":1,"7884":1,"7885":2,"7886":2,"7887":1,"7888":1,"7889":2,"7890":1,"7891":2,"7892":1,"7893":1,"7894":2,"7895":2,"7896":1,"7897":2,"7898":2,"7899":2,"7900":1,"7901":2,"7902":1,"7903":2,"7904":2,"7905":2,"7906":2,"7907":2,"7908":2,"7909":2,"7910":1,"7911":2,"7912":1,"7913":2,"7914":1,"7915":1,"7916":1,"7917":2,"7918":2,"7919":2,"7920":1,"7921":1,"7922":1,"7923":1,"7924":1,"7925":1,"7926":2,"7927":2,"7928":1,"7929":2,"7930":1,"7931":1,"7932":1,"7933":1,"7934":1,"7935":1,"7936":1,"7937":2,"7938":2,"7939":2,"7940":1,"7941":1,"7942":1,"7943":2,"7944":2,"7945":2,"7946":2,"7947":1,"7948":2,"7949":1,"7950":2,"7951":2,"7952":1,"7953":2,"7954":1,"7955":2,"7956":1,"7957":2,"7958":1,"7959":2,"7960":1,"7961":2,"7962":2,"7963":1,"7964":2,"7965":1,"7966":1,"7967":2,"7968":2,"7969":1,"7970":1,"7971":2,"7972":2,"7973":2,"7974":2,"7975":2,"7976":2,"7977":1,"7978":1,"7979":2,"7980":1,"7981":1,"7982":2,"7983":1,"7984":1,"7985":1,"7986":2,"7987":2,"7988":1,"7989":2,"7990":2,"7991":2,"7992":2,"7993":2,"7994":2,"7995":1,"7996":2,"7997":2,"7998":2,"7999":2,"8000":1,"8001":1,"8002":1,"8003":2,"8004":2,"8005":2,"8006":1,"8007":2,"8008":2,"8009":1,"8010":2,"8011":2,"8012":2,"8013":1,"8014":1,"8015":1,"8016":1,"8017":2,"8018":2,"8019":2,"8020":1,"8021":2,"8022":2,"8023":1,"8024":1,"8025":1,"8026":2,"8027":2,"8028":1,"8029":2,"8030":1,"8031":1,"8032":1,"8033":1,"8034":1,"8035":2,"8036":1,"8037":1,"8038":1,"8039":2,"8040":1,"8041":2,"8042":1,"8043":2,"8044":2,"8045":1,"8046":1,"8047":1,"8048":1,"8049":1,"8050":1,"8051":2,"8052":1,"8053":2,"8054":1,"8055":2,"8056":1,"8057":1,"8058":2,"8059":1,"8060":1,"8061":1,"8062":1,"8063":2,"8064":2,"8065":1,"8066":1,"8067":1,"8068":1,"8069":2,"8070":2,"8071":2,"8072":2,"8073":2,"8074":1,"8075":2,"8076":2,"8077":1,"8078":1,"8079":2,"8080":2,"8081":2,"8082":1,"8083":2,"8084":2,"8085":1,"8086":2,"8087":2,"8088":1,"8089":1,"8090":2,"8091":2,"8092":2,"8093":2,"8094":1,"8095":1,"8096":2,"8097":1,"8098":1,"8099":2,"8100":2,"8101":1,"8102":1,"8103":2,"8104":1,"8105":2,"8106":1,"8107":1,"8108":2,"8109":1,"8110":2,"8111":1,"8112":1,"8113":2,"8114":1,"8115":1,"8116":2,"8117":1,"8118":1,"8119":1,"8120":1,"8121":2,"8122":2,"8123":1,"8124":2,"8125":2,"8126":1,"8127":2,"8128":2,"8129":1,"8130":2,"8131":2,"8132":1,"8133":2,"8134":1,"8135":1,"8136":2,"8137":2,"8138":1,"8139":2,"8140":2,"8141":2,"8142":2,"8143":2,"8144":1,"8145":2,"8146":2,"8147":1,"8148":2,"8149":2,"8150":2,"8151":1,"8152":2,"8153":1,"8154":2,"8155":2,"8156":2,"8157":1,"8158":1,"8159":1,"8160":2,"8161":1,"8162":1,"8163":1,"8164":2,"8165":2,"8166":1,"8167":1,"8168":2,"8169":2,"8170":1,"8171":2,"8172":2,"8173":2,"8174":2,"8175":1,"8176":2,"8177":1,"8178":2,"8179":2,"8180":2,"8181":2,"8182":1,"8183":2,"8184":2,"8185":1,"8186":2,"8187":2,"8188":2,"8189":1,"8190":1,"8191":2,"8192":2,"8193":1,"8194":1,"8195":2,"8196":1,"8197":1,"8198":2,"8199":1,"8200":2,"8201":1,"8202":1,"8203":1,"8204":2,"8205":1,"8206":2,"8207":1,"8208":1,"8209":2,"8210":1,"8211":2,"8212":2,"8213":1,"8214":1,"8215":1,"8216":1,"8217":2,"8218":2,"8219":2,"8220":2,"8221":1,"8222":1,"8223":2,"8224":1,"8225":1,"8226":2,"8227":2,"8228":1,"8229":2,"8230":1,"8231":2,"8232":2,"8233":1,"8234":1,"8235":1,"8236":1,"8237":2,"8238":1,"8239":1,"8240":1,"8241":1,"8242":2,"8243":1,"8244":2,"8245":1,"8246":2,"8247":1,"8248":2,"8249":2,"8250":2,"8251":1,"8252":2,"8253":1,"8254":2,"8255":1,"8256":2,"8257":1,"8258":2,"8259":2,"8260":2,"8261":2,"8262":1,"8263":1,"8264":1,"8265":1,"8266":2,"8267":1,"8268":2,"8269":2,"8270":1,"8271":1,"8272":2,"8273":1,"8274":1,"8275":1,"8276":2,"8277":1,"8278":2,"8279":2,"8280":1,"8281":1,"8282":2,"8283":2,"8284":2,"8285":2,"8286":1,"8287":1,"8288":2,"8289":1,"8290":2,"8291":1,"8292":1,"8293":1,"8294":1,"8295":1,"8296":2,"8297":1,"8298":2,"8299":1,"8300":1,"8301":2,"8302":2,"8303":1,"8304":2,"8305":1,"8306":1,"8307":1,"8308":1,"8309":2,"8310":2,"8311":1,"8312":1,"8313":2,"8314":1,"8315":1,"8316":2,"8317":1,"8318":2,"8319":1,"8320":2,"8321":1,"8322":2,"8323":2,"8324":1,"8325":2,"8326":2,"8327":1,"8328":2,"8329":2,"8330":1,"8331":2,"8332":2,"8333":2,"8334":1,"8335":2,"8336":2,"8337":2,"8338":1,"8339":1,"8340":2,"8341":1,"8342":1,"8343":1,"8344":2,"8345":2,"8346":2,"8347":1,"8348":1,"8349":2,"8350":1,"8351":2,"8352":2,"8353":1,"8354":1,"8355":1,"8356":2,"8357":2,"8358":2,"8359":1,"8360":2,"8361":2,"8362":2,"8363":1,"8364":1,"8365":1,"8366":2,"8367":2,"8368":2,"8369":2,"8370":2,"8371":1,"8372":2,"8373":2,"8374":1,"8375":1,"8376":2,"8377":2,"8378":1,"8379":2,"8380":1,"8381":2,"8382":1,"8383":2,"8384":2,"8385":1,"8386":2,"8387":1,"8388":1,"8389":1,"8390":1,"8391":1,"8392":1,"8393":1,"8394":2,"8395":1,"8396":2,"8397":2,"8398":1,"8399":1,"8400":1,"8401":1,"8402":2,"8403":2,"8404":2,"8405":2,"8406":2,"8407":2,"8408":2,"8409":1,"8410":1,"8411":1,"8412":2,"8413":2,"8414":2,"8415":2,"8416":2,"8417":1,"8418":2,"8419":1,"8420":1,"8421":2,"8422":2,"8423":2,"8424":1,"8425":2,"8426":2,"8427":2,"8428":2,"8429":1,"8430":1,"8431":1,"8432":2,"8433":2,"8434":1,"8435":1,"8436":2,"8437":1,"8438":1,"8439":1,"8440":2,"8441":2,"8442":2,"8443":1,"8444":2,"8445":2,"8446":2,"8447":1,"8448":2,"8449":1,"8450":1,"8451":1,"8452":2,"8453":2,"8454":1,"8455":1,"8456":1,"8457":2,"8458":1,"8459":1,"8460":2,"8461":1,"8462":2,"8463":1,"8464":1,"8465":2,"8466":1,"8467":2,"8468":2,"8469":1,"8470":2,"8471":1,"8472":2,"8473":2,"8474":1,"8475":2,"8476":1,"8477":1,"8478":1,"8479":2,"8480":2,"8481":2,"8482":2,"8483":1,"8484":1,"8485":1,"8486":1,"8487":1,"8488":1,"8489":2,"8490":1,"8491":2,"8492":2,"8493":1,"8494":2,"8495":2,"8496":2,"8497":1,"8498":2,"8499":2,"8500":2,"8501":1,"8502":2,"8503":2,"8504":1,"8505":1,"8506":2,"8507":1,"8508":2,"8509":2,"8510":1,"8511":1,"8512":1,"8513":2,"8514":1,"8515":1,"8516":2,"8517":1,"8518":2,"8519":1,"8520":2,"8521":1,"8522":2,"8523":1,"8524":1,"8525":1,"8526":2,"8527":2,"8528":2,"8529":1,"8530":2,"8531":1,"8532":2,"8533":1,"8534":1,"8535":1,"8536":2,"8537":1,"8538":1,"8539":1,"8540":2,"8541":1,"8542":2,"8543":2,"8544":1,"8545":2,"8546":2,"8547":2,"8548":1,"8549":1,"8550":1,"8551":2,"8552":1,"8553":1,"8554":2,"8555":2,"8556":1,"8557":1,"8558":2,"8559":2,"8560":1,"8561":1,"8562":1,"8563":2,"8564":2,"8565":1,"8566":1,"8567":2,"8568":1,"8569":2,"8570":2,"8571":2,"8572":1,"8573":2,"8574":1,"8575":2,"8576":2,"8577":2,"8578":2,"8579":1,"8580":2,"8581":1,"8582":2,"8583":2,"8584":2,"8585":1,"8586":1,"8587":2,"8588":1,"8589":2,"8590":2,"8591":1,"8592":2,"8593":1,"8594":1,"8595":1,"8596":1,"8597":2,"8598":1,"8599":2,"8600":2,"8601":1,"8602":1,"8603":2,"8604":1,"8605":2,"8606":1,"8607":1,"8608":2,"8609":1,"8610":2,"8611":2,"8612":2,"8613":2,"8614":1,"8615":2,"8616":1,"8617":1,"8618":2,"8619":2,"8620":1,"8621":2,"8622":1,"8623":2,"8624":2,"8625":2,"8626":1,"8627":2,"8628":2,"8629":1,"8630":2,"8631":1,"8632":2,"8633":1,"8634":1,"8635":1,"8636":1,"8637":1,"8638":2,"8639":1,"8640":2,"8641":1,"8642":2,"8643":2,"8644":2,"8645":1,"8646":1,"8647":1,"8648":2,"8649":2,"8650":2,"8651":1,"8652":2,"8653":2,"8654":2,"8655":2,"8656":2,"8657":2,"8658":2,"8659":2,"8660":1,"8661":2,"8662":1,"8663":1,"8664":1,"8665":2,"8666":2,"8667":2,"8668":2,"8669":1,"8670":1,"8671":1,"8672":1,"8673":2,"8674":2,"8675":1,"8676":1,"8677":1,"8678":1,"8679":1,"8680":1,"8681":2,"8682":2,"8683":2,"8684":2,"8685":1,"8686":1,"8687":2,"8688":2,"8689":1,"8690":1,"8691":2,"8692":1,"8693":1,"8694":2,"8695":1,"8696":2,"8697":1,"8698":2,"8699":2,"8700":1,"8701":2,"8702":1,"8703":2,"8704":1,"8705":2,"8706":1,"8707":2,"8708":1,"8709":1,"8710":2,"8711":1,"8712":1,"8713":1,"8714":2,"8715":2,"8716":2,"8717":1,"8718":1,"8719":2,"8720":2,"8721":2,"8722":2,"8723":1,"8724":1,"8725":2,"8726":1,"8727":2,"8728":1,"8729":1,"8730":2,"8731":1,"8732":1,"8733":1,"8734":2,"8735":2,"8736":2,"8737":1,"8738":2,"8739":1,"8740":1,"8741":1,"8742":2,"8743":2,"8744":2,"8745":1,"8746":2,"8747":2,"8748":2,"8749":2,"8750":1,"8751":1,"8752":1,"8753":1,"8754":1,"8755":1,"8756":1,"8757":2,"8758":1,"8759":1,"8760":1,"8761":1,"8762":1,"8763":2,"8764":2,"8765":1,"8766":1,"8767":1,"8768":2,"8769":2,"8770":2,"8771":1,"8772":2,"8773":2,"8774":1,"8775":1,"8776":2,"8777":2,"8778":2,"8779":1,"8780":1,"8781":1,"8782":1,"8783":2,"8784":2,"8785":2,"8786":2,"8787":1,"8788":2,"8789":1,"8790":1,"8791":1,"8792":1,"8793":2,"8794":1,"8795":2,"8796":1,"8797":1,"8798":2,"8799":1,"8800":1,"8801":2,"8802":1,"8803":1,"8804":1,"8805":1,"8806":1,"8807":1,"8808":2,"8809":1,"8810":1,"8811":1,"8812":2,"8813":2,"8814":1,"8815":1,"8816":2,"8817":1,"8818":2,"8819":1,"8820":2,"8821":2,"8822":1,"8823":2,"8824":2,"8825":2,"8826":2,"8827":2,"8828":1,"8829":1,"8830":1,"8831":2,"8832":2,"8833":2,"8834":2,"8835":1,"8836":2,"8837":1,"8838":1,"8839":2,"8840":2,"8841":2,"8842":2,"8843":1,"8844":2,"8845":2,"8846":2,"8847":1,"8848":2,"8849":2,"8850":1,"8851":1,"8852":1,"8853":1,"8854":1,"8855":1,"8856":2,"8857":1,"8858":1,"8859":2,"8860":2,"8861":1,"8862":1,"8863":2,"8864":2,"8865":1,"8866":1,"8867":1,"8868":2,"8869":1,"8870":2,"8871":2,"8872":2,"8873":1,"8874":2,"8875":1,"8876":2,"8877":1,"8878":1,"8879":1,"8880":2,"8881":2,"8882":2,"8883":1,"8884":1,"8885":1,"8886":2,"8887":2,"8888":1,"8889":2,"8890":1,"8891":1,"8892":1,"8893":2,"8894":1,"8895":1,"8896":1,"8897":1,"8898":2,"8899":2,"8900":2,"8901":1,"8902":1,"8903":1,"8904":2,"8905":1,"8906":1,"8907":1,"8908":1,"8909":2,"8910":2,"8911":1,"8912":2,"8913":2,"8914":1,"8915":2,"8916":1,"8917":1,"8918":1,"8919":2,"8920":2,"8921":2,"8922":2,"8923":1,"8924":1,"8925":1,"8926":1,"8927":2,"8928":1,"8929":1,"8930":1,"8931":1,"8932":2,"8933":1,"8934":1,"8935":2,"8936":1,"8937":2,"8938":2,"8939":2,"8940":2,"8941":2,"8942":2,"8943":2,"8944":1,"8945":1,"8946":2,"8947":2,"8948":2,"8949":1,"8950":2,"8951":1,"8952":1,"8953":1,"8954":2,"8955":1,"8956":1,"8957":2,"8958":1,"8959":2,"8960":2,"8961":1,"8962":1,"8963":2,"8964":1,"8965":2,"8966":1,"8967":1,"8968":1,"8969":2,"8970":2,"8971":1,"8972":2,"8973":2,"8974":2,"8975":1,"8976":1,"8977":2,"8978":2,"8979":2,"8980":2,"8981":2,"8982":2,"8983":2,"8984":2,"8985":1,"8986":1,"8987":1,"8988":1,"8989":1,"8990":2,"8991":2,"8992":2,"8993":2,"8994":2,"8995":1,"8996":1,"8997":1,"8998":1,"8999":2,"9000":1,"9001":1,"9002":2,"9003":2,"9004":2,"9005":2,"9006":1,"9007":1,"9008":2,"9009":1,"9010":1,"9011":2,"9012":1,"9013":1,"9014":2,"9015":2,"9016":2,"9017":2,"9018":1,"9019":2,"9020":1,"9021":1,"9022":2,"9023":1,"9024":1,"9025":2,"9026":2,"9027":2,"9028":1,"9029":2,"9030":2,"9031":2,"9032":2,"9033":1,"9034":2,"9035":1,"9036":2,"9037":1,"9038":2,"9039":2,"9040":2,"9041":1,"9042":1,"9043":1,"9044":2,"9045":2,"9046":2,"9047":1,"9048":2,"9049":1,"9050":1,"9051":2,"9052":2,"9053":2,"9054":2,"9055":2,"9056":1,"9057":1,"9058":2,"9059":2,"9060":1,"9061":2,"9062":1,"9063":1,"9064":1,"9065":1,"9066":1,"9067":1,"9068":1,"9069":1,"9070":1,"9071":2,"9072":2,"9073":2,"9074":1,"9075":2,"9076":1,"9077":2,"9078":2,"9079":2,"9080":2,"9081":2,"9082":1,"9083":1,"9084":2,"9085":1,"9086":2,"9087":2,"9088":2,"9089":1,"9090":2,"9091":1,"9092":1,"9093":1,"9094":2,"9095":1,"9096":1,"9097":2,"9098":2,"9099":1,"9100":1,"9101":2,"9102":1,"9103":1,"9104":1,"9105":2,"9106":1,"9107":2,"9108":2,"9109":1,"9110":1,"9111":2,"9112":2,"9113":1,"9114":2,"9115":2,"9116":1,"9117":2,"9118":1,"9119":2,"9120":1,"9121":2,"9122":1,"9123":1,"9124":2,"9125":1,"9126":2,"9127":2,"9128":1,"9129":1,"9130":1,"9131":1,"9132":1,"9133":1,"9134":2,"9135":2,"9136":2,"9137":2,"9138":2,"9139":2,"9140":1,"9141":2,"9142":2,"9143":1,"9144":1,"9145":1,"9146":2,"9147":1,"9148":1,"9149":1,"9150":1,"9151":2,"9152":2,"9153":2,"9154":1,"9155":1,"9156":1,"9157":2,"9158":2,"9159":1,"9160":2,"9161":1,"9162":2,"9163":1,"9164":1,"9165":1,"9166":2,"9167":2,"9168":1,"9169":1,"9170":1,"9171":2,"9172":2,"9173":2,"9174":1,"9175":2,"9176":2,"9177":2,"9178":1,"9179":1,"9180":1,"9181":1,"9182":2,"9183":2,"9184":2,"9185":2,"9186":2,"9187":1,"9188":1,"9189":2,"9190":2,"9191":2,"9192":1,"9193":2,"9194":1,"9195":1,"9196":1,"9197":1,"9198":1,"9199":1,"9200":1,"9201":2,"9202":2,"9203":1,"9204":1,"9205":1,"9206":1,"9207":2,"9208":1,"9209":1,"9210":2,"9211":1,"9212":1,"9213":2,"9214":2,"9215":2,"9216":1,"9217":1,"9218":2,"9219":1,"9220":2,"9221":1,"9222":1,"9223":2,"9224":2,"9225":1,"9226":2,"9227":2,"9228":1,"9229":1,"9230":1,"9231":1,"9232":2,"9233":2,"9234":2,"9235":2,"9236":2,"9237":1,"9238":1,"9239":2,"9240":2,"9241":2,"9242":1,"9243":2,"9244":2,"9245":1,"9246":1,"9247":1,"9248":2,"9249":2,"9250":1,"9251":1,"9252":1,"9253":1,"9254":1,"9255":2,"9256":2,"9257":1,"9258":2,"9259":1,"9260":1,"9261":2,"9262":1,"9263":1,"9264":2,"9265":2,"9266":2,"9267":1,"9268":1,"9269":1,"9270":1,"9271":1,"9272":1,"9273":1,"9274":2,"9275":1,"9276":2,"9277":2,"9278":2,"9279":2,"9280":2,"9281":1,"9282":2,"9283":2,"9284":1,"9285":1,"9286":2,"9287":1,"9288":2,"9289":2,"9290":2,"9291":1,"9292":1,"9293":1,"9294":2,"9295":2,"9296":2,"9297":1,"9298":2,"9299":1,"9300":2,"9301":2,"9302":1,"9303":2,"9304":2,"9305":1,"9306":2,"9307":1,"9308":2,"9309":2,"9310":1,"9311":2,"9312":1,"9313":1,"9314":2,"9315":2,"9316":2,"9317":2,"9318":2,"9319":2,"9320":1,"9321":2,"9322":1,"9323":1,"9324":2,"9325":1,"9326":1,"9327":2,"9328":2,"9329":2,"9330":2,"9331":1,"9332":2,"9333":2,"9334":1,"9335":2,"9336":1,"9337":2,"9338":1,"9339":2,"9340":2,"9341":1,"9342":1,"9343":2,"9344":2,"9345":1,"9346":2,"9347":1,"9348":1,"9349":1,"9350":2,"9351":1,"9352":1,"9353":1,"9354":1,"9355":1,"9356":1,"9357":1,"9358":2,"9359":1,"9360":2,"9361":2,"9362":1,"9363":2,"9364":1,"9365":1,"9366":1,"9367":2,"9368":1,"9369":1,"9370":2,"9371":2,"9372":1,"9373":1,"9374":2,"9375":2,"9376":2,"9377":1,"9378":2,"9379":1,"9380":2,"9381":2,"9382":1,"9383":2,"9384":2,"9385":1,"9386":1,"9387":1,"9388":2,"9389":1,"9390":2,"9391":1,"9392":1,"9393":1,"9394":2,"9395":1,"9396":2,"9397":1,"9398":1,"9399":2,"9400":2,"9401":1,"9402":2,"9403":1,"9404":1,"9405":1,"9406":2,"9407":1,"9408":2,"9409":2,"9410":2,"9411":2,"9412":1,"9413":2,"9414":2,"9415":2,"9416":2,"9417":1,"9418":1,"9419":2,"9420":1,"9421":2,"9422":1,"9423":1,"9424":1,"9425":2,"9426":2,"9427":1,"9428":2,"9429":2,"9430":1,"9431":1,"9432":1,"9433":1,"9434":2,"9435":2,"9436":2,"9437":1,"9438":2,"9439":2,"9440":2,"9441":1,"9442":2,"9443":2,"9444":1,"9445":2,"9446":2,"9447":1,"9448":1,"9449":2,"9450":1,"9451":1,"9452":1,"9453":2,"9454":2,"9455":1,"9456":1,"9457":2,"9458":1,"9459":2,"9460":2,"9461":1,"9462":1,"9463":1,"9464":1,"9465":2,"9466":1,"9467":1,"9468":2,"9469":1,"9470":2,"9471":2,"9472":1,"9473":2,"9474":2,"9475":1,"9476":1,"9477":1,"9478":1,"9479":2,"9480":1,"9481":2,"9482":2,"9483":2,"9484":1,"9485":1,"9486":1,"9487":1,"9488":1,"9489":2,"9490":1,"9491":1,"9492":1,"9493":2,"9494":2,"9495":1,"9496":2,"9497":2,"9498":1,"9499":2,"9500":2,"9501":1,"9502":1,"9503":1,"9504":2,"9505":2,"9506":1,"9507":2,"9508":2,"9509":1,"9510":1,"9511":2,"9512":2,"9513":2,"9514":1,"9515":1,"9516":1,"9517":1,"9518":2,"9519":2,"9520":2,"9521":1,"9522":1,"9523":2,"9524":1,"9525":1,"9526":1,"9527":1,"9528":2,"9529":2,"9530":2,"9531":1,"9532":1,"9533":1,"9534":2,"9535":2,"9536":2,"9537":2,"9538":2,"9539":1,"9540":2,"9541":2,"9542":2,"9543":1,"9544":1,"9545":1,"9546":1,"9547":1,"9548":2,"9549":2,"9550":1,"9551":2,"9552":1,"9553":1,"9554":2,"9555":1,"9556":1,"9557":1,"9558":1,"9559":1,"9560":2,"9561":1,"9562":1,"9563":2,"9564":1,"9565":2,"9566":1,"9567":2,"9568":1,"9569":2,"9570":1,"9571":2,"9572":2,"9573":2,"9574":1,"9575":2,"9576":1,"9577":1,"9578":2,"9579":1,"9580":1,"9581":1,"9582":2,"9583":2,"9584":1,"9585":1,"9586":2,"9587":1,"9588":1,"9589":2,"9590":2,"9591":1,"9592":2,"9593":1,"9594":2,"9595":2,"9596":1,"9597":1,"9598":1,"9599":1,"9600":1,"9601":1,"9602":1,"9603":2,"9604":1,"9605":1,"9606":1,"9607":2,"9608":1,"9609":1,"9610":2,"9611":2,"9612":2,"9613":1,"9614":1,"9615":1,"9616":1,"9617":2,"9618":1,"9619":1,"9620":1,"9621":1,"9622":1,"9623":1,"9624":2,"9625":2,"9626":2,"9627":1,"9628":2,"9629":2,"9630":2,"9631":1,"9632":2,"9633":2,"9634":1,"9635":1,"9636":2,"9637":1,"9638":1,"9639":1,"9640":1,"9641":1,"9642":1,"9643":2,"9644":2,"9645":1,"9646":1,"9647":2,"9648":1,"9649":2,"9650":1,"9651":1,"9652":1,"9653":1,"9654":1,"9655":1,"9656":1,"9657":2,"9658":2,"9659":2,"9660":1,"9661":1,"9662":2,"9663":2,"9664":2,"9665":1,"9666":2,"9667":1,"9668":1,"9669":1,"9670":2,"9671":1,"9672":2,"9673":1,"9674":1,"9675":1,"9676":2,"9677":2,"9678":2,"9679":2,"9680":1,"9681":2,"9682":2,"9683":2,"9684":2,"9685":2,"9686":1,"9687":1,"9688":1,"9689":2,"9690":2,"9691":1,"9692":1,"9693":1,"9694":2,"9695":2,"9696":1,"9697":2,"9698":1,"9699":1,"9700":1,"9701":2,"9702":1,"9703":1,"9704":2,"9705":1,"9706":1,"9707":2,"9708":1,"9709":2,"9710":2,"9711":2,"9712":1,"9713":2,"9714":2,"9715":1,"9716":2,"9717":2,"9718":1,"9719":1,"9720":2,"9721":2,"9722":2,"9723":1,"9724":1,"9725":1,"9726":2,"9727":2,"9728":1,"9729":2,"9730":1,"9731":1,"9732":2,"9733":1,"9734":2,"9735":1,"9736":2,"9737":2,"9738":1,"9739":1,"9740":2,"9741":2,"9742":2,"9743":1,"9744":2,"9745":1,"9746":1,"9747":2,"9748":2,"9749":1,"9750":1,"9751":2,"9752":1,"9753":2,"9754":1,"9755":2,"9756":2,"9757":2,"9758":1,"9759":1,"9760":1,"9761":2,"9762":1,"9763":2,"9764":1,"9765":2,"9766":2,"9767":1,"9768":2,"9769":1,"9770":2,"9771":1,"9772":2,"9773":2,"9774":2,"9775":2,"9776":2,"9777":1,"9778":2,"9779":1,"9780":2,"9781":1,"9782":2,"9783":2,"9784":1,"9785":2,"9786":1,"9787":2,"9788":1,"9789":2,"9790":1,"9791":1,"9792":1,"9793":1,"9794":1,"9795":1,"9796":2,"9797":2,"9798":1,"9799":2,"9800":1,"9801":1,"9802":2,"9803":1,"9804":1,"9805":2,"9806":2,"9807":2,"9808":1,"9809":1,"9810":1,"9811":1,"9812":2,"9813":1,"9814":2,"9815":2,"9816":2,"9817":2,"9818":1,"9819":2,"9820":2,"9821":2,"9822":2,"9823":1,"9824":2,"9825":2,"9826":2,"9827":2,"9828":1,"9829":1,"9830":2,"9831":2,"9832":2,"9833":2,"9834":2,"9835":1,"9836":2,"9837":2,"9838":2,"9839":2,"9840":1,"9841":1,"9842":1,"9843":2,"9844":2,"9845":1,"9846":2,"9847":2,"9848":2,"9849":1,"9850":2,"9851":1,"9852":1,"9853":2,"9854":2,"9855":2,"9856":2,"9857":2,"9858":2,"9859":1,"9860":2,"9861":2,"9862":2,"9863":2,"9864":1,"9865":1,"9866":1,"9867":2,"9868":2,"9869":1,"9870":2,"9871":2,"9872":2,"9873":1,"9874":1,"9875":1,"9876":1,"9877":2,"9878":1,"9879":1,"9880":2,"9881":1,"9882":2,"9883":2,"9884":2,"9885":2,"9886":2,"9887":2,"9888":2,"9889":2,"9890":1,"9891":2,"9892":1,"9893":2,"9894":2,"9895":1,"9896":1,"9897":2,"9898":1,"9899":1,"9900":2,"9901":1,"9902":1,"9903":1,"9904":1,"9905":2,"9906":1,"9907":1,"9908":1,"9909":1,"9910":1,"9911":1,"9912":2,"9913":2,"9914":2,"9915":1,"9916":1,"9917":1,"9918":2,"9919":1,"9920":2,"9921":2,"9922":2,"9923":1,"9924":1,"9925":2,"9926":2,"9927":1,"9928":2,"9929":2,"9930":1,"9931":2,"9932":1,"9933":1,"9934":2,"9935":1,"9936":1,"9937":1,"9938":2,"9939":2,"9940":2,"9941":2,"9942":1,"9943":2,"9944":2,"9945":2,"9946":1,"9947":1,"9948":2,"9949":1,"9950":2,"9951":2,"9952":2,"9953":1,"9954":1,"9955":1,"9956":2,"9957":2,"9958":1,"9959":2,"9960":1,"9961":2,"9962":1,"9963":2,"9964":2,"9965":2,"9966":1,"9967":1,"9968":2,"9969":1,"9970":2,"9971":1,"9972":1,"9973":2,"9974":1,"9975":1,"9976":2,"9977":2,"9978":1,"9979":1,"9980":1,"9981":2,"9982":1,"9983":1,"9984":1,"9985":1,"9986":2,"9987":2,"9988":1,"9989":1,"9990":1,"9991":1,"9992":2,"9993":2,"9994":2,"9995":2,"9996":1,"9997":1,"9998":1,"9999":1,"10000":1,"10001":2,"10002":1,"10003":2,"10004":2,"10005":1,"10006":2,"10007":1,"10008":1,"10009":1,"10010":2,"10011":1,"10012":2,"10013":2,"10014":2,"10015":1,"10016":2,"10017":1,"10018":2,"10019":2,"10020":1,"10021":1,"10022":1,"10023":2,"10024":2,"10025":2,"10026":1,"10027":1,"10028":2,"10029":1,"10030":2,"10031":1,"10032":2,"10033":2,"10034":1,"10035":1,"10036":2,"10037":2,"10038":2,"10039":2,"10040":2,"10041":2,"10042":1,"10043":1,"10044":2,"10045":1,"10046":2,"10047":1,"10048":1,"10049":1,"10050":1,"10051":1,"10052":2,"10053":1,"10054":2,"10055":2,"10056":2,"10057":2,"10058":1,"10059":1,"10060":1,"10061":2,"10062":1,"10063":1,"10064":2,"10065":1,"10066":1,"10067":1,"10068":1,"10069":2,"10070":2,"10071":2,"10072":2,"10073":1,"10074":2,"10075":2,"10076":1,"10077":1,"10078":1,"10079":2,"10080":2,"10081":2,"10082":2,"10083":1,"10084":2,"10085":1,"10086":1,"10087":2,"10088":2,"10089":2,"10090":1,"10091":2,"10092":2,"10093":2,"10094":1,"10095":1,"10096":2,"10097":1,"10098":2,"10099":2,"10100":1,"10101":2,"10102":1,"10103":2,"10104":1,"10105":1,"10106":1,"10107":1,"10108":1,"10109":1,"10110":2,"10111":2,"10112":2,"10113":2,"10114":1,"10115":1,"10116":2,"10117":2,"10118":2,"10119":2,"10120":2,"10121":1,"10122":2,"10123":1,"10124":2,"10125":2,"10126":2,"10127":1,"10128":1,"10129":1,"10130":1,"10131":1,"10132":2,"10133":1,"10134":2,"10135":1,"10136":1,"10137":1,"10138":1,"10139":2,"10140":2,"10141":1,"10142":1,"10143":2,"10144":2,"10145":1,"10146":1,"10147":2,"10148":1,"10149":2,"10150":1,"10151":2,"10152":1,"10153":2,"10154":1,"10155":2,"10156":1,"10157":1,"10158":1,"10159":1,"10160":2,"10161":2,"10162":1,"10163":2,"10164":2,"10165":2,"10166":1,"10167":1,"10168":1,"10169":2,"10170":2,"10171":1,"10172":1,"10173":2,"10174":2,"10175":1,"10176":1,"10177":1,"10178":1,"10179":1,"10180":2,"10181":2,"10182":1,"10183":2,"10184":1,"10185":2,"10186":1,"10187":1,"10188":2,"10189":2,"10190":2,"10191":2,"10192":1,"10193":1,"10194":1,"10195":1,"10196":1,"10197":2,"10198":2,"10199":1,"10200":2,"10201":1,"10202":1,"10203":1,"10204":1,"10205":1,"10206":2,"10207":2,"10208":1,"10209":1,"10210":1,"10211":1,"10212":1,"10213":2,"10214":1,"10215":1,"10216":1,"10217":1,"10218":1,"10219":1,"10220":2,"10221":1,"10222":1,"10223":2,"10224":2,"10225":2,"10226":2,"10227":2,"10228":2,"10229":1,"10230":1,"10231":2,"10232":1,"10233":2,"10234":1,"10235":2,"10236":1,"10237":2,"10238":1,"10239":2,"10240":2,"10241":1,"10242":1,"10243":2,"10244":2,"10245":1,"10246":2,"10247":1,"10248":1,"10249":2,"10250":2,"10251":1,"10252":2,"10253":1,"10254":2,"10255":2,"10256":1,"10257":2,"10258":2,"10259":2,"10260":2,"10261":2,"10262":2,"10263":2,"10264":2,"10265":1,"10266":1,"10267":1,"10268":2,"10269":1,"10270":1,"10271":2,"10272":2,"10273":1,"10274":2,"10275":1,"10276":2,"10277":2,"10278":1,"10279":2,"10280":1,"10281":2,"10282":1,"10283":1,"10284":1,"10285":2,"10286":2,"10287":1,"10288":2,"10289":2,"10290":1,"10291":1,"10292":2,"10293":2,"10294":2,"10295":2,"10296":2,"10297":2,"10298":2,"10299":2,"10300":2,"10301":1,"10302":1,"10303":1,"10304":2,"10305":2,"10306":1,"10307":1,"10308":1,"10309":1,"10310":2,"10311":2,"10312":2,"10313":1,"10314":1,"10315":1,"10316":2,"10317":2,"10318":2,"10319":1,"10320":2,"10321":1,"10322":1,"10323":1,"10324":1,"10325":1,"10326":1,"10327":2,"10328":1,"10329":1,"10330":1,"10331":1,"10332":1,"10333":1,"10334":1,"10335":1,"10336":1,"10337":1,"10338":2,"10339":2,"10340":1,"10341":2,"10342":1,"10343":2,"10344":1,"10345":2,"10346":2,"10347":2,"10348":1,"10349":2,"10350":1,"10351":2,"10352":1,"10353":1,"10354":2,"10355":1,"10356":1,"10357":2,"10358":1,"10359":1,"10360":2,"10361":2,"10362":1,"10363":1,"10364":1,"10365":1,"10366":2,"10367":2,"10368":2,"10369":1,"10370":1,"10371":1,"10372":1,"10373":2,"10374":1,"10375":1,"10376":1,"10377":2,"10378":2,"10379":2,"10380":1,"10381":1,"10382":1,"10383":1,"10384":1,"10385":2,"10386":2,"10387":1,"10388":2,"10389":1,"10390":1,"10391":1,"10392":1,"10393":2,"10394":2,"10395":2,"10396":2,"10397":2,"10398":2,"10399":2,"10400":2,"10401":2,"10402":1,"10403":1,"10404":1,"10405":2,"10406":1,"10407":1,"10408":2,"10409":2,"10410":2,"10411":1,"10412":2,"10413":2,"10414":2,"10415":2,"10416":2,"10417":2,"10418":1,"10419":1,"10420":2,"10421":1,"10422":1,"10423":1,"10424":2,"10425":2,"10426":1,"10427":2,"10428":2,"10429":2,"10430":2,"10431":1,"10432":1,"10433":2,"10434":2,"10435":1,"10436":1,"10437":1,"10438":2,"10439":2,"10440":1,"10441":1,"10442":2,"10443":1,"10444":2,"10445":2,"10446":1,"10447":2,"10448":2,"10449":1,"10450":2,"10451":1,"10452":2,"10453":2,"10454":2,"10455":2,"10456":2,"10457":1,"10458":2,"10459":1,"10460":2,"10461":2,"10462":1,"10463":1,"10464":2,"10465":2,"10466":2,"10467":1,"10468":1,"10469":2,"10470":1,"10471":2,"10472":1,"10473":2,"10474":2,"10475":2,"10476":2,"10477":1,"10478":2,"10479":1,"10480":2,"10481":1,"10482":2,"10483":2,"10484":1,"10485":1,"10486":2,"10487":2,"10488":1,"10489":2,"10490":1,"10491":1,"10492":1,"10493":2,"10494":2,"10495":2,"10496":2,"10497":1,"10498":2,"10499":2,"10500":2,"10501":1,"10502":1,"10503":1,"10504":2,"10505":1,"10506":1,"10507":2,"10508":2,"10509":2,"10510":2,"10511":1,"10512":1,"10513":1,"10514":2,"10515":1,"10516":1,"10517":2,"10518":2,"10519":1,"10520":1,"10521":2,"10522":2,"10523":2,"10524":2,"10525":1,"10526":2,"10527":1,"10528":2,"10529":2,"10530":1,"10531":2,"10532":2,"10533":1,"10534":1,"10535":2,"10536":2,"10537":1,"10538":1,"10539":2,"10540":2,"10541":2,"10542":2,"10543":2,"10544":1,"10545":2,"10546":2,"10547":2,"10548":2,"10549":1,"10550":2,"10551":2,"10552":2,"10553":1,"10554":1,"10555":2,"10556":1,"10557":2,"10558":1,"10559":2,"10560":2,"10561":1,"10562":2,"10563":2,"10564":1,"10565":1,"10566":1,"10567":2,"10568":2,"10569":1,"10570":2,"10571":2,"10572":1,"10573":2,"10574":1,"10575":1,"10576":1,"10577":1,"10578":1,"10579":1,"10580":2,"10581":1,"10582":2,"10583":2,"10584":2,"10585":1,"10586":2,"10587":2,"10588":2,"10589":1,"10590":2,"10591":1,"10592":2,"10593":1,"10594":2,"10595":2,"10596":1,"10597":2,"10598":1,"10599":2,"10600":2,"10601":1,"10602":1,"10603":2,"10604":1,"10605":2,"10606":2,"10607":1,"10608":1,"10609":1,"10610":2,"10611":2,"10612":2,"10613":1,"10614":2,"10615":1,"10616":2,"10617":2,"10618":2,"10619":1,"10620":1,"10621":1,"10622":2,"10623":2,"10624":2,"10625":1,"10626":2,"10627":1,"10628":2,"10629":1,"10630":1,"10631":2,"10632":1,"10633":2,"10634":2,"10635":1,"10636":2,"10637":1,"10638":2,"10639":2,"10640":2,"10641":2,"10642":2,"10643":2,"10644":2,"10645":2,"10646":1,"10647":1,"10648":1,"10649":2,"10650":1,"10651":1,"10652":1,"10653":2,"10654":2,"10655":2,"10656":2,"10657":1,"10658":2,"10659":1,"10660":1,"10661":2,"10662":2,"10663":2,"10664":1,"10665":1,"10666":2,"10667":2,"10668":1,"10669":1,"10670":2,"10671":1,"10672":1,"10673":1,"10674":1,"10675":2,"10676":1,"10677":2,"10678":2,"10679":2,"10680":1,"10681":2,"10682":1,"10683":2,"10684":1,"10685":2,"10686":1,"10687":2,"10688":2,"10689":1,"10690":1,"10691":1,"10692":1,"10693":2,"10694":1,"10695":2,"10696":2,"10697":2,"10698":2,"10699":1,"10700":1,"10701":2,"10702":1,"10703":2,"10704":1,"10705":2,"10706":1,"10707":1,"10708":1,"10709":1,"10710":1,"10711":1,"10712":1,"10713":1,"10714":2,"10715":1,"10716":1,"10717":1,"10718":1,"10719":2,"10720":1,"10721":1,"10722":2,"10723":1,"10724":1,"10725":2,"10726":1,"10727":2,"10728":1,"10729":2,"10730":1,"10731":1,"10732":1,"10733":1,"10734":2,"10735":2,"10736":2,"10737":2,"10738":1,"10739":1,"10740":2,"10741":1,"10742":1,"10743":2,"10744":2,"10745":2,"10746":1,"10747":2,"10748":1,"10749":2,"10750":1,"10751":2,"10752":2,"10753":1,"10754":2,"10755":2,"10756":1,"10757":1,"10758":2,"10759":2,"10760":1,"10761":2,"10762":1,"10763":1,"10764":1,"10765":2,"10766":2,"10767":2,"10768":2,"10769":2,"10770":1,"10771":2,"10772":1,"10773":2,"10774":1,"10775":1,"10776":2,"10777":2,"10778":1,"10779":2,"10780":1,"10781":2,"10782":2,"10783":1,"10784":1,"10785":2,"10786":2,"10787":2,"10788":2,"10789":1,"10790":2,"10791":1,"10792":1,"10793":1,"10794":2,"10795":2,"10796":1,"10797":1,"10798":2,"10799":1,"10800":2,"10801":2,"10802":2,"10803":2,"10804":2,"10805":2,"10806":1,"10807":1,"10808":2,"10809":2,"10810":1,"10811":1,"10812":2,"10813":2,"10814":2,"10815":2,"10816":2,"10817":1,"10818":2,"10819":2,"10820":2,"10821":2,"10822":2,"10823":1,"10824":1,"10825":2,"10826":2,"10827":1,"10828":2,"10829":1,"10830":2,"10831":2,"10832":1,"10833":1,"10834":1,"10835":2,"10836":1,"10837":2,"10838":1,"10839":2,"10840":1,"10841":1,"10842":2,"10843":1,"10844":2,"10845":2,"10846":1,"10847":1,"10848":1,"10849":2,"10850":2,"10851":1,"10852":1,"10853":2,"10854":1,"10855":2,"10856":1,"10857":2,"10858":2,"10859":2,"10860":2,"10861":2,"10862":2,"10863":1,"10864":2,"10865":2,"10866":2,"10867":2,"10868":2,"10869":1,"10870":2,"10871":2,"10872":2,"10873":1,"10874":1,"10875":1,"10876":2,"10877":2,"10878":2,"10879":2,"10880":1,"10881":1,"10882":2,"10883":2,"10884":2,"10885":1,"10886":1,"10887":1,"10888":1,"10889":2,"10890":2,"10891":2,"10892":1,"10893":1,"10894":1,"10895":2,"10896":2,"10897":2,"10898":1,"10899":2,"10900":1,"10901":1,"10902":2,"10903":1,"10904":1,"10905":2,"10906":2,"10907":1,"10908":1,"10909":2,"10910":2,"10911":2,"10912":1,"10913":2,"10914":1,"10915":1,"10916":1,"10917":1,"10918":1,"10919":1,"10920":2,"10921":1,"10922":1,"10923":1,"10924":2,"10925":2,"10926":2,"10927":1,"10928":1,"10929":1,"10930":1,"10931":2,"10932":1,"10933":1,"10934":1,"10935":2,"10936":2,"10937":2,"10938":1,"10939":1,"10940":2,"10941":1,"10942":2,"10943":2,"10944":2,"10945":1,"10946":1,"10947":1,"10948":1,"10949":1,"10950":2,"10951":1,"10952":2,"10953":2,"10954":1,"10955":2,"10956":2,"10957":1,"10958":2,"10959":1,"10960":1,"10961":1,"10962":2,"10963":2,"10964":1,"10965":2,"10966":2,"10967":2,"10968":1,"10969":1,"10970":2,"10971":1,"10972":1,"10973":1,"10974":2,"10975":1,"10976":1,"10977":2,"10978":1,"10979":2,"10980":2,"10981":1,"10982":2,"10983":2,"10984":2,"10985":2,"10986":2,"10987":2,"10988":1,"10989":2,"10990":2,"10991":2,"10992":2,"10993":2,"10994":2,"10995":1,"10996":1,"10997":1,"10998":1,"10999":1,"11000":2,"11001":1,"11002":2,"11003":2,"11004":1,"11005":2,"11006":1,"11007":2,"11008":1,"11009":2,"11010":2,"11011":2,"11012":1,"11013":2,"11014":2,"11015":1,"11016":2,"11017":2,"11018":1,"11019":2,"11020":2,"11021":2,"11022":1,"11023":2,"11024":2,"11025":1,"11026":1,"11027":1,"11028":2,"11029":1,"11030":1,"11031":1,"11032":2,"11033":1,"11034":1,"11035":2,"11036":2,"11037":2,"11038":2,"11039":1,"11040":1,"11041":2,"11042":2,"11043":2,"11044":1,"11045":2,"11046":2,"11047":2,"11048":1,"11049":1,"11050":1,"11051":2,"11052":2,"11053":2,"11054":2,"11055":2,"11056":2,"11057":1,"11058":1,"11059":2,"11060":1,"11061":2,"11062":2,"11063":1,"11064":2,"11065":1,"11066":1,"11067":2,"11068":2,"11069":1,"11070":2,"11071":2,"11072":1,"11073":1,"11074":2,"11075":1,"11076":2,"11077":2,"11078":2,"11079":2,"11080":1,"11081":1,"11082":1,"11083":2,"11084":1,"11085":2,"11086":1,"11087":1,"11088":1,"11089":1,"11090":2,"11091":2,"11092":2,"11093":1,"11094":1,"11095":1,"11096":2,"11097":1,"11098":1,"11099":2,"11100":1,"11101":1,"11102":2,"11103":2,"11104":2,"11105":1,"11106":2,"11107":1,"11108":1,"11109":2,"11110":2,"11111":2,"11112":1,"11113":1,"11114":2,"11115":2,"11116":2,"11117":2,"11118":1,"11119":2,"11120":2,"11121":2,"11122":2,"11123":1,"11124":1,"11125":1,"11126":2,"11127":2,"11128":1,"11129":1,"11130":2,"11131":2,"11132":2,"11133":2,"11134":2,"11135":1,"11136":2,"11137":2,"11138":1,"11139":1,"11140":1,"11141":2,"11142":2,"11143":1,"11144":2,"11145":1,"11146":1,"11147":2,"11148":2,"11149":1,"11150":2,"11151":1,"11152":2,"11153":1,"11154":2,"11155":2,"11156":2,"11157":1,"11158":1,"11159":2,"11160":1,"11161":2,"11162":1,"11163":1,"11164":2,"11165":1,"11166":1,"11167":1,"11168":1,"11169":2,"11170":2,"11171":2,"11172":1,"11173":1,"11174":2,"11175":1,"11176":1,"11177":1,"11178":2,"11179":2,"11180":2,"11181":2,"11182":1,"11183":2,"11184":1,"11185":1,"11186":2,"11187":2,"11188":2,"11189":1,"11190":2,"11191":2,"11192":1,"11193":2,"11194":2,"11195":2,"11196":1,"11197":2,"11198":2,"11199":1,"11200":1,"11201":1,"11202":1,"11203":2,"11204":2,"11205":2,"11206":2,"11207":2,"11208":1,"11209":2,"11210":2,"11211":1,"11212":1,"11213":1,"11214":2,"11215":2,"11216":2,"11217":2,"11218":1,"11219":2,"11220":1,"11221":1,"11222":1,"11223":2,"11224":2,"11225":1,"11226":1,"11227":1,"11228":2,"11229":2,"11230":1,"11231":2,"11232":2,"11233":2,"11234":1,"11235":2,"11236":1,"11237":2,"11238":2,"11239":2,"11240":1,"11241":2,"11242":2,"11243":2,"11244":1,"11245":2,"11246":2,"11247":1,"11248":2,"11249":2,"11250":1,"11251":2,"11252":1,"11253":2,"11254":2,"11255":2,"11256":1,"11257":2,"11258":1,"11259":1,"11260":1,"11261":2,"11262":1,"11263":1,"11264":1,"11265":2,"11266":2,"11267":1,"11268":2,"11269":1,"11270":1,"11271":1,"11272":2,"11273":2,"11274":2,"11275":1,"11276":1,"11277":2,"11278":2,"11279":1,"11280":2,"11281":1,"11282":2,"11283":2,"11284":2,"11285":2,"11286":1,"11287":2,"11288":2,"11289":1,"11290":2,"11291":1,"11292":2,"11293":1,"11294":2,"11295":2,"11296":1,"11297":2,"11298":1,"11299":1,"11300":1,"11301":2,"11302":2,"11303":1,"11304":1,"11305":2,"11306":1,"11307":2,"11308":2,"11309":1,"11310":1,"11311":1,"11312":1,"11313":2,"11314":2,"11315":2,"11316":1,"11317":1,"11318":1,"11319":1,"11320":2,"11321":1,"11322":1,"11323":2,"11324":2,"11325":2,"11326":2,"11327":2,"11328":2,"11329":2,"11330":1,"11331":2,"11332":2,"11333":1,"11334":1,"11335":1,"11336":2,"11337":1,"11338":1,"11339":2,"11340":1,"11341":1,"11342":2,"11343":2,"11344":2,"11345":1,"11346":2,"11347":2,"11348":1,"11349":1,"11350":2,"11351":1,"11352":1,"11353":2,"11354":2,"11355":2,"11356":1,"11357":1,"11358":1,"11359":1,"11360":1,"11361":2,"11362":1,"11363":1,"11364":1,"11365":2,"11366":1,"11367":2,"11368":1,"11369":1,"11370":2,"11371":1,"11372":2,"11373":2,"11374":1,"11375":1,"11376":2,"11377":1,"11378":1,"11379":2,"11380":1,"11381":2,"11382":1,"11383":2,"11384":2,"11385":1,"11386":2,"11387":1,"11388":2,"11389":2,"11390":2,"11391":1,"11392":2,"11393":2,"11394":2,"11395":2,"11396":1,"11397":2,"11398":2,"11399":2,"11400":2,"11401":1,"11402":1,"11403":2,"11404":1,"11405":2,"11406":1,"11407":2,"11408":2,"11409":2,"11410":2,"11411":2,"11412":2,"11413":2,"11414":2,"11415":1,"11416":1,"11417":1,"11418":1,"11419":2,"11420":1,"11421":2,"11422":1,"11423":1,"11424":1,"11425":2,"11426":2,"11427":2,"11428":2,"11429":1,"11430":2,"11431":2,"11432":1,"11433":2,"11434":2,"11435":2,"11436":2,"11437":2,"11438":2,"11439":2,"11440":2,"11441":2,"11442":2,"11443":2,"11444":1,"11445":2,"11446":1,"11447":1,"11448":2,"11449":1,"11450":2,"11451":2,"11452":1,"11453":2,"11454":2,"11455":1,"11456":1,"11457":1,"11458":1,"11459":1,"11460":1,"11461":1,"11462":1,"11463":1,"11464":1,"11465":2,"11466":1,"11467":1,"11468":1,"11469":1,"11470":2,"11471":2,"11472":1,"11473":1,"11474":1,"11475":1,"11476":2,"11477":1,"11478":1,"11479":2,"11480":1,"11481":1,"11482":2,"11483":1,"11484":1,"11485":2,"11486":1,"11487":1,"11488":2,"11489":1,"11490":2,"11491":1,"11492":2,"11493":2,"11494":1,"11495":2,"11496":1,"11497":1,"11498":1,"11499":2,"11500":1,"11501":2,"11502":2,"11503":2,"11504":1,"11505":2,"11506":1,"11507":1,"11508":2,"11509":1,"11510":2,"11511":1,"11512":2,"11513":1,"11514":2,"11515":1,"11516":2,"11517":1,"11518":2,"11519":2,"11520":1,"11521":1,"11522":1,"11523":2,"11524":2,"11525":2,"11526":1,"11527":1,"11528":2,"11529":1,"11530":2,"11531":2,"11532":2,"11533":2,"11534":1,"11535":1,"11536":2,"11537":2,"11538":2,"11539":2,"11540":1,"11541":2,"11542":2,"11543":2,"11544":2,"11545":1,"11546":2,"11547":1,"11548":2,"11549":2,"11550":1,"11551":1,"11552":1,"11553":2,"11554":2,"11555":1,"11556":1,"11557":2,"11558":2,"11559":2,"11560":1,"11561":2,"11562":1,"11563":1,"11564":1,"11565":1,"11566":2,"11567":2,"11568":1,"11569":1,"11570":2,"11571":1,"11572":1,"11573":2,"11574":2,"11575":2,"11576":2,"11577":2,"11578":2,"11579":1,"11580":2,"11581":2,"11582":1,"11583":2,"11584":2,"11585":2,"11586":2,"11587":2,"11588":2,"11589":2,"11590":2,"11591":1,"11592":1,"11593":2,"11594":2,"11595":1,"11596":2,"11597":1,"11598":2,"11599":1,"11600":2,"11601":1,"11602":2,"11603":2,"11604":1,"11605":2,"11606":2,"11607":1,"11608":2,"11609":2,"11610":1,"11611":2,"11612":2,"11613":2,"11614":2,"11615":1,"11616":1,"11617":2,"11618":1,"11619":2,"11620":1,"11621":2,"11622":2,"11623":2,"11624":2,"11625":2,"11626":1,"11627":2,"11628":2,"11629":1,"11630":2,"11631":1,"11632":1,"11633":2,"11634":1,"11635":2,"11636":2,"11637":1,"11638":1,"11639":2,"11640":1,"11641":1,"11642":2,"11643":1,"11644":1,"11645":2,"11646":2,"11647":2,"11648":2,"11649":2,"11650":2,"11651":1,"11652":1,"11653":2,"11654":1,"11655":1,"11656":1,"11657":1,"11658":1,"11659":2,"11660":2,"11661":1,"11662":1,"11663":1,"11664":2,"11665":1,"11666":2,"11667":2,"11668":1,"11669":2,"11670":1,"11671":2,"11672":1,"11673":1,"11674":1,"11675":2,"11676":1,"11677":1,"11678":2,"11679":1,"11680":2,"11681":1,"11682":1,"11683":1,"11684":1,"11685":2,"11686":2,"11687":2,"11688":1,"11689":2,"11690":2,"11691":1,"11692":2,"11693":1,"11694":2,"11695":2,"11696":2,"11697":1,"11698":2,"11699":1,"11700":1,"11701":2,"11702":2,"11703":1,"11704":1,"11705":2,"11706":2,"11707":2,"11708":2,"11709":1,"11710":1,"11711":1,"11712":1,"11713":1,"11714":2,"11715":2,"11716":2,"11717":2,"11718":1,"11719":1,"11720":2,"11721":1,"11722":1,"11723":2,"11724":2,"11725":2,"11726":1,"11727":1,"11728":2,"11729":2,"11730":1,"11731":1,"11732":2,"11733":1,"11734":2,"11735":1,"11736":2,"11737":2,"11738":2,"11739":2,"11740":1,"11741":2,"11742":2,"11743":1,"11744":2,"11745":1,"11746":2,"11747":2,"11748":1,"11749":2,"11750":1,"11751":2,"11752":2,"11753":2,"11754":1,"11755":1,"11756":2,"11757":2,"11758":1,"11759":1,"11760":2,"11761":1,"11762":2,"11763":2,"11764":2,"11765":1,"11766":1,"11767":1,"11768":2,"11769":2,"11770":2,"11771":2,"11772":1,"11773":2,"11774":2,"11775":1,"11776":2,"11777":1,"11778":1,"11779":1,"11780":2,"11781":2,"11782":2,"11783":1,"11784":1,"11785":1,"11786":1,"11787":2,"11788":2,"11789":1,"11790":2,"11791":2,"11792":2,"11793":1,"11794":2,"11795":2,"11796":2,"11797":2,"11798":1,"11799":2,"11800":2,"11801":1,"11802":2,"11803":2,"11804":1,"11805":1,"11806":1,"11807":2,"11808":1,"11809":1,"11810":1,"11811":1,"11812":1,"11813":1,"11814":2,"11815":2,"11816":2,"11817":2,"11818":2,"11819":1,"11820":2,"11821":2,"11822":2,"11823":1,"11824":2,"11825":2,"11826":1,"11827":2,"11828":1,"11829":1,"11830":2,"11831":2,"11832":1,"11833":2,"11834":2,"11835":1,"11836":1,"11837":2,"11838":2,"11839":1,"11840":2,"11841":2,"11842":1,"11843":1,"11844":1,"11845":2,"11846":2,"11847":2,"11848":2,"11849":1,"11850":2,"11851":1,"11852":1,"11853":2,"11854":1,"11855":2,"11856":1,"11857":2,"11858":1,"11859":2,"11860":2,"11861":1,"11862":2,"11863":2,"11864":1,"11865":2,"11866":2,"11867":1,"11868":1,"11869":2,"11870":2,"11871":2,"11872":2,"11873":2,"11874":2,"11875":2,"11876":1,"11877":2,"11878":2,"11879":2,"11880":2,"11881":2,"11882":1,"11883":1,"11884":2,"11885":2,"11886":2,"11887":1,"11888":1,"11889":2,"11890":2,"11891":2,"11892":2,"11893":2,"11894":1,"11895":2,"11896":2,"11897":2,"11898":1,"11899":2,"11900":2,"11901":1,"11902":2,"11903":1,"11904":2,"11905":2,"11906":2,"11907":2,"11908":2,"11909":2,"11910":2,"11911":1,"11912":1,"11913":2,"11914":2,"11915":1,"11916":2,"11917":2,"11918":1,"11919":1,"11920":2,"11921":1,"11922":1,"11923":1,"11924":1,"11925":2,"11926":1,"11927":1,"11928":1,"11929":2,"11930":2,"11931":1,"11932":1,"11933":1,"11934":2,"11935":1,"11936":1,"11937":1,"11938":1,"11939":1,"11940":1,"11941":1,"11942":1,"11943":2,"11944":1,"11945":1,"11946":1,"11947":1,"11948":2,"11949":1,"11950":2,"11951":2,"11952":2,"11953":2,"11954":1,"11955":1,"11956":1,"11957":1,"11958":1,"11959":1,"11960":2,"11961":2,"11962":2,"11963":1,"11964":1,"11965":2,"11966":1,"11967":2,"11968":2,"11969":2,"11970":1,"11971":1,"11972":2,"11973":1,"11974":2,"11975":2,"11976":1,"11977":1,"11978":2,"11979":2,"11980":1,"11981":2,"11982":2,"11983":1,"11984":1,"11985":2,"11986":1,"11987":1,"11988":2,"11989":1,"11990":1,"11991":2,"11992":2,"11993":2,"11994":2,"11995":1,"11996":1,"11997":1,"11998":2,"11999":1,"12000":1,"12001":2,"12002":1,"12003":2,"12004":2,"12005":1,"12006":1,"12007":2,"12008":2,"12009":1,"12010":1,"12011":1,"12012":1,"12013":1,"12014":1,"12015":2,"12016":1,"12017":2,"12018":1,"12019":2,"12020":2,"12021":1,"12022":1,"12023":2,"12024":2,"12025":2,"12026":1,"12027":2,"12028":2,"12029":1,"12030":2,"12031":1,"12032":2,"12033":1,"12034":1,"12035":1,"12036":1,"12037":1,"12038":2,"12039":1,"12040":1,"12041":2,"12042":1,"12043":1,"12044":1,"12045":2,"12046":1,"12047":1,"12048":2,"12049":2,"12050":2,"12051":2,"12052":1,"12053":2,"12054":2,"12055":1,"12056":2,"12057":1,"12058":2,"12059":1,"12060":1,"12061":1,"12062":1,"12063":1,"12064":1,"12065":1,"12066":2,"12067":2,"12068":1,"12069":1,"12070":2,"12071":1,"12072":2,"12073":2,"12074":1,"12075":2,"12076":2,"12077":2,"12078":2,"12079":1,"12080":2,"12081":1,"12082":1,"12083":2,"12084":2,"12085":2,"12086":1,"12087":2,"12088":1,"12089":1,"12090":1,"12091":1,"12092":2,"12093":2,"12094":1,"12095":1,"12096":1,"12097":2,"12098":2,"12099":2,"12100":2,"12101":1,"12102":2,"12103":2,"12104":2,"12105":2,"12106":2,"12107":2,"12108":2,"12109":1,"12110":2,"12111":2,"12112":1,"12113":2,"12114":1,"12115":1,"12116":2,"12117":1,"12118":2,"12119":2,"12120":1,"12121":2,"12122":2,"12123":1,"12124":1,"12125":2,"12126":1,"12127":1,"12128":2,"12129":2,"12130":2,"12131":2,"12132":2,"12133":2,"12134":1,"12135":2,"12136":1,"12137":2,"12138":1,"12139":2,"12140":1,"12141":2,"12142":2,"12143":1,"12144":1,"12145":1,"12146":2,"12147":2,"12148":1,"12149":2,"12150":2,"12151":1,"12152":1,"12153":2,"12154":1,"12155":2,"12156":2,"12157":1,"12158":1,"12159":1,"12160":1,"12161":1,"12162":2,"12163":1,"12164":2,"12165":1,"12166":1,"12167":1,"12168":2,"12169":2,"12170":2,"12171":1,"12172":1,"12173":1,"12174":2,"12175":1,"12176":1,"12177":1,"12178":1,"12179":1,"12180":1,"12181":2,"12182":1,"12183":1,"12184":2,"12185":2,"12186":2,"12187":2,"12188":1,"12189":2,"12190":2,"12191":2,"12192":2,"12193":1,"12194":1,"12195":2,"12196":2,"12197":2,"12198":1,"12199":2,"12200":2,"12201":2,"12202":2,"12203":2,"12204":2,"12205":2,"12206":2,"12207":1,"12208":1,"12209":2,"12210":1,"12211":1,"12212":2,"12213":2,"12214":1,"12215":2,"12216":2,"12217":2,"12218":2,"12219":1,"12220":2,"12221":2,"12222":2,"12223":2,"12224":2,"12225":1,"12226":2,"12227":2,"12228":1,"12229":2,"12230":1,"12231":2,"12232":1,"12233":2,"12234":1,"12235":2,"12236":1,"12237":1,"12238":1,"12239":2,"12240":2,"12241":1,"12242":1,"12243":1,"12244":2,"12245":1,"12246":2,"12247":2,"12248":2,"12249":1,"12250":1,"12251":2,"12252":1,"12253":2,"12254":1,"12255":2,"12256":2,"12257":1,"12258":2,"12259":2,"12260":1,"12261":2,"12262":1,"12263":2,"12264":1,"12265":2,"12266":2,"12267":1,"12268":2,"12269":1,"12270":1,"12271":2,"12272":2,"12273":1,"12274":2,"12275":2,"12276":1,"12277":2,"12278":2,"12279":1,"12280":1,"12281":2,"12282":1,"12283":2,"12284":2,"12285":1,"12286":2,"12287":2,"12288":1,"12289":2,"12290":1,"12291":2,"12292":2,"12293":2,"12294":2,"12295":1,"12296":2,"12297":2,"12298":2,"12299":1,"12300":2,"12301":2,"12302":1,"12303":2,"12304":2,"12305":2,"12306":1,"12307":1,"12308":1,"12309":1,"12310":1,"12311":1,"12312":1,"12313":2,"12314":2,"12315":1,"12316":1,"12317":2,"12318":1,"12319":2,"12320":1,"12321":2,"12322":1,"12323":2,"12324":1,"12325":2,"12326":1,"12327":2,"12328":1,"12329":2,"12330":1,"12331":1,"12332":1,"12333":2,"12334":1,"12335":1,"12336":1,"12337":2,"12338":2,"12339":2,"12340":1,"12341":1,"12342":2,"12343":2,"12344":2,"12345":2,"12346":1,"12347":2,"12348":2,"12349":2,"12350":1,"12351":1,"12352":1,"12353":2,"12354":2,"12355":1,"12356":1,"12357":2,"12358":2,"12359":2,"12360":1,"12361":2,"12362":1,"12363":2,"12364":2,"12365":1,"12366":2,"12367":2,"12368":1,"12369":1,"12370":2,"12371":1,"12372":1,"12373":1,"12374":1,"12375":2,"12376":1,"12377":2,"12378":1,"12379":1,"12380":2,"12381":1,"12382":1,"12383":1,"12384":1,"12385":2,"12386":2,"12387":1,"12388":1,"12389":1,"12390":1,"12391":1,"12392":2,"12393":2,"12394":2,"12395":1,"12396":1,"12397":1,"12398":1,"12399":2,"12400":1,"12401":2,"12402":2,"12403":2,"12404":2,"12405":2,"12406":2,"12407":2,"12408":1,"12409":1,"12410":1,"12411":2,"12412":1,"12413":2,"12414":2,"12415":1,"12416":1,"12417":1,"12418":2,"12419":1,"12420":2,"12421":1,"12422":1,"12423":1,"12424":2,"12425":2,"12426":1,"12427":1,"12428":2,"12429":2,"12430":2,"12431":2,"12432":2,"12433":1,"12434":1,"12435":1,"12436":1,"12437":2,"12438":1,"12439":1,"12440":2,"12441":1,"12442":1,"12443":1,"12444":2,"12445":2,"12446":2,"12447":2,"12448":2,"12449":1,"12450":2,"12451":1,"12452":2,"12453":1,"12454":1,"12455":2,"12456":2,"12457":2,"12458":2,"12459":2,"12460":2,"12461":1,"12462":1,"12463":1,"12464":1,"12465":2,"12466":2,"12467":1,"12468":2,"12469":1,"12470":1,"12471":1,"12472":1,"12473":2,"12474":1,"12475":2,"12476":2,"12477":2,"12478":1,"12479":1,"12480":1,"12481":1,"12482":2,"12483":2,"12484":1,"12485":2,"12486":2,"12487":2,"12488":2,"12489":1,"12490":2,"12491":1,"12492":1,"12493":2,"12494":2,"12495":1,"12496":1,"12497":1,"12498":2,"12499":2,"12500":1,"12501":1,"12502":2,"12503":1,"12504":2,"12505":2,"12506":1,"12507":1,"12508":1,"12509":2,"12510":1,"12511":2,"12512":2,"12513":2,"12514":2,"12515":2,"12516":2,"12517":2,"12518":2,"12519":1,"12520":1,"12521":2,"12522":2,"12523":2,"12524":2,"12525":1,"12526":2,"12527":2,"12528":1,"12529":2,"12530":1,"12531":2,"12532":2,"12533":1,"12534":1,"12535":1,"12536":2,"12537":1,"12538":1,"12539":2,"12540":1,"12541":2,"12542":1,"12543":2,"12544":2,"12545":2,"12546":2,"12547":2,"12548":2,"12549":1,"12550":2,"12551":1,"12552":1,"12553":1,"12554":1,"12555":1,"12556":1,"12557":2,"12558":1,"12559":1,"12560":1,"12561":2,"12562":2,"12563":2,"12564":1,"12565":1,"12566":2,"12567":1,"12568":1,"12569":2,"12570":2,"12571":1,"12572":2,"12573":1,"12574":2,"12575":2,"12576":2,"12577":2,"12578":2,"12579":2,"12580":1,"12581":1,"12582":2,"12583":2,"12584":2,"12585":1,"12586":2,"12587":1,"12588":1,"12589":2,"12590":2,"12591":2,"12592":2,"12593":2,"12594":1,"12595":1,"12596":1,"12597":2,"12598":1,"12599":2,"12600":1,"12601":2,"12602":2,"12603":2,"12604":2,"12605":2,"12606":1,"12607":1,"12608":2,"12609":2,"12610":2,"12611":2,"12612":1,"12613":2,"12614":2,"12615":2,"12616":1,"12617":1,"12618":2,"12619":1,"12620":1,"12621":1,"12622":1,"12623":1,"12624":1,"12625":1,"12626":1,"12627":1,"12628":1,"12629":2,"12630":2,"12631":1,"12632":1,"12633":2,"12634":1,"12635":2,"12636":1,"12637":2,"12638":2,"12639":1,"12640":1,"12641":1,"12642":1,"12643":1,"12644":1,"12645":2,"12646":1,"12647":1,"12648":2,"12649":1,"12650":1,"12651":2,"12652":2,"12653":2,"12654":1,"12655":1,"12656":1,"12657":1,"12658":1,"12659":2,"12660":2,"12661":1,"12662":2,"12663":2,"12664":2,"12665":1,"12666":1,"12667":1,"12668":1,"12669":1,"12670":1,"12671":2,"12672":1,"12673":2,"12674":1,"12675":2,"12676":1,"12677":2,"12678":1,"12679":2,"12680":1,"12681":1,"12682":2,"12683":1,"12684":1,"12685":2,"12686":2,"12687":1,"12688":1,"12689":1,"12690":1,"12691":2,"12692":1,"12693":1,"12694":1,"12695":1,"12696":1,"12697":2,"12698":1,"12699":1,"12700":1,"12701":1,"12702":2,"12703":2,"12704":1,"12705":1,"12706":2,"12707":2,"12708":2,"12709":1,"12710":1,"12711":2,"12712":1,"12713":2,"12714":1,"12715":1,"12716":1,"12717":1,"12718":1,"12719":2,"12720":1,"12721":2,"12722":1,"12723":1,"12724":2,"12725":2,"12726":1,"12727":2,"12728":2,"12729":2,"12730":2,"12731":1,"12732":2,"12733":2,"12734":1,"12735":2,"12736":1,"12737":1,"12738":2,"12739":2,"12740":1,"12741":1,"12742":2,"12743":1,"12744":2,"12745":2,"12746":1,"12747":1,"12748":1,"12749":1,"12750":2,"12751":1,"12752":1,"12753":2,"12754":1,"12755":2,"12756":2,"12757":2,"12758":1,"12759":2,"12760":2,"12761":1,"12762":2,"12763":2,"12764":1,"12765":1,"12766":1,"12767":1,"12768":2,"12769":1,"12770":1,"12771":1,"12772":1,"12773":2,"12774":2,"12775":1,"12776":1,"12777":2,"12778":2,"12779":2,"12780":1,"12781":2,"12782":1,"12783":2,"12784":2,"12785":1,"12786":1,"12787":1,"12788":2,"12789":2,"12790":1,"12791":1,"12792":2,"12793":1,"12794":1,"12795":2,"12796":2,"12797":2,"12798":2,"12799":1,"12800":1,"12801":1,"12802":2,"12803":2,"12804":1,"12805":2,"12806":1,"12807":1,"12808":2,"12809":1,"12810":2,"12811":2,"12812":1,"12813":1,"12814":1,"12815":2,"12816":1,"12817":1,"12818":1,"12819":1,"12820":1,"12821":1,"12822":1,"12823":2,"12824":2,"12825":1,"12826":1,"12827":2,"12828":2,"12829":1,"12830":1,"12831":2,"12832":2,"12833":1,"12834":1,"12835":1,"12836":2,"12837":1,"12838":1,"12839":1,"12840":2,"12841":1,"12842":1,"12843":1,"12844":1,"12845":2,"12846":2,"12847":2,"12848":2,"12849":2,"12850":2,"12851":2,"12852":2,"12853":2,"12854":1,"12855":1,"12856":1,"12857":2,"12858":2,"12859":2,"12860":2,"12861":2,"12862":1,"12863":1,"12864":2,"12865":2,"12866":1,"12867":2,"12868":2,"12869":1,"12870":2,"12871":2,"12872":1,"12873":1,"12874":2,"12875":2,"12876":1,"12877":2,"12878":1,"12879":2,"12880":1,"12881":2,"12882":2,"12883":1,"12884":1,"12885":2,"12886":1,"12887":1,"12888":1,"12889":2,"12890":1,"12891":2,"12892":2,"12893":2,"12894":2,"12895":1,"12896":2,"12897":1,"12898":2,"12899":2,"12900":2,"12901":1,"12902":1,"12903":2,"12904":1,"12905":1,"12906":2,"12907":2,"12908":1,"12909":2,"12910":2,"12911":1,"12912":2,"12913":1,"12914":2,"12915":2,"12916":1,"12917":1,"12918":1,"12919":1,"12920":2,"12921":1,"12922":2,"12923":2,"12924":2,"12925":2,"12926":1,"12927":2,"12928":1,"12929":2,"12930":2,"12931":2,"12932":2,"12933":1,"12934":2,"12935":1,"12936":2,"12937":1,"12938":2,"12939":2,"12940":1,"12941":1,"12942":1,"12943":1,"12944":1,"12945":2,"12946":2,"12947":2,"12948":1,"12949":2,"12950":1,"12951":1,"12952":1,"12953":2,"12954":2,"12955":2,"12956":1,"12957":2,"12958":1,"12959":1,"12960":1,"12961":2,"12962":1,"12963":1,"12964":2,"12965":1,"12966":2,"12967":2,"12968":1,"12969":1,"12970":1,"12971":1,"12972":1,"12973":2,"12974":2,"12975":1,"12976":2,"12977":1,"12978":1,"12979":2,"12980":2,"12981":1,"12982":1,"12983":1,"12984":1,"12985":2,"12986":2,"12987":1,"12988":1,"12989":2,"12990":1,"12991":1,"12992":2,"12993":1,"12994":2,"12995":1,"12996":1,"12997":2,"12998":2,"12999":1,"13000":2,"13001":2,"13002":1,"13003":1,"13004":1,"13005":1,"13006":1,"13007":2,"13008":1,"13009":2,"13010":2,"13011":2,"13012":1,"13013":2,"13014":2,"13015":1,"13016":1,"13017":2,"13018":2,"13019":1,"13020":1,"13021":2,"13022":1,"13023":2,"13024":2,"13025":1,"13026":2,"13027":1,"13028":1,"13029":2,"13030":2,"13031":2,"13032":1,"13033":2,"13034":2,"13035":2,"13036":2,"13037":2,"13038":2,"13039":2,"13040":1,"13041":1,"13042":1,"13043":1,"13044":2,"13045":1,"13046":1,"13047":1,"13048":2,"13049":1,"13050":1,"13051":2,"13052":2,"13053":2,"13054":2,"13055":1,"13056":2,"13057":1,"13058":1,"13059":1,"13060":2,"13061":1,"13062":2,"13063":2,"13064":2,"13065":2,"13066":2,"13067":2,"13068":1,"13069":1,"13070":2,"13071":2,"13072":2,"13073":2,"13074":1,"13075":1,"13076":2,"13077":2,"13078":1,"13079":2,"13080":2,"13081":1,"13082":2,"13083":2,"13084":1,"13085":1,"13086":2,"13087":1,"13088":2,"13089":2,"13090":1,"13091":1,"13092":2,"13093":1,"13094":1,"13095":2,"13096":1,"13097":1,"13098":1,"13099":1,"13100":2,"13101":2,"13102":2,"13103":2,"13104":1,"13105":1,"13106":1,"13107":1,"13108":2,"13109":1,"13110":2,"13111":2,"13112":2,"13113":2,"13114":2,"13115":1,"13116":2,"13117":1,"13118":2,"13119":2,"13120":1,"13121":2,"13122":1,"13123":2,"13124":2,"13125":1,"13126":2,"13127":2,"13128":1,"13129":2,"13130":1,"13131":1,"13132":2,"13133":1,"13134":1,"13135":2,"13136":1,"13137":2,"13138":2,"13139":2,"13140":1,"13141":1,"13142":2,"13143":1,"13144":1,"13145":1,"13146":2,"13147":2,"13148":1,"13149":2,"13150":1,"13151":1,"13152":1,"13153":1,"13154":2,"13155":2,"13156":2,"13157":1,"13158":2,"13159":2,"13160":1,"13161":1,"13162":1,"13163":1,"13164":1,"13165":2,"13166":2,"13167":2,"13168":2,"13169":1,"13170":2,"13171":2,"13172":2,"13173":1,"13174":1,"13175":2,"13176":2,"13177":1,"13178":2,"13179":1,"13180":1,"13181":1,"13182":2,"13183":2,"13184":1,"13185":2,"13186":1,"13187":1,"13188":1,"13189":1,"13190":2,"13191":1,"13192":2,"13193":2,"13194":1,"13195":2,"13196":2,"13197":2,"13198":2,"13199":2,"13200":2,"13201":1,"13202":1,"13203":2,"13204":2,"13205":2,"13206":1,"13207":1,"13208":1,"13209":2,"13210":2,"13211":1,"13212":2,"13213":2,"13214":2,"13215":2,"13216":2,"13217":1,"13218":1,"13219":1,"13220":1,"13221":1,"13222":2,"13223":1,"13224":2,"13225":1,"13226":1,"13227":1,"13228":2,"13229":1,"13230":1,"13231":2,"13232":2,"13233":2,"13234":2,"13235":1,"13236":1,"13237":2,"13238":1,"13239":1,"13240":1,"13241":1,"13242":2,"13243":2,"13244":2,"13245":2,"13246":2,"13247":2,"13248":1,"13249":1,"13250":1,"13251":1,"13252":2,"13253":1,"13254":2,"13255":2,"13256":2,"13257":1,"13258":1,"13259":1,"13260":2,"13261":2,"13262":2,"13263":1,"13264":2,"13265":1,"13266":1,"13267":1,"13268":1,"13269":2,"13270":1,"13271":2,"13272":2,"13273":1,"13274":1,"13275":2,"13276":1,"13277":1,"13278":1,"13279":2,"13280":1,"13281":2,"13282":1,"13283":2,"13284":1,"13285":2,"13286":2,"13287":2,"13288":2,"13289":1,"13290":1,"13291":1,"13292":1,"13293":2,"13294":1,"13295":1,"13296":1,"13297":2,"13298":1,"13299":1,"13300":2,"13301":2,"13302":2,"13303":1,"13304":1,"13305":2,"13306":2,"13307":2,"13308":1,"13309":1,"13310":2,"13311":1,"13312":2,"13313":1,"13314":1,"13315":1,"13316":1,"13317":1,"13318":2,"13319":2,"13320":1,"13321":2,"13322":1,"13323":2,"13324":1,"13325":2,"13326":2,"13327":1,"13328":2,"13329":2,"13330":1,"13331":1,"13332":2,"13333":2,"13334":1,"13335":1,"13336":1,"13337":2,"13338":2,"13339":1,"13340":2,"13341":1,"13342":2,"13343":1,"13344":2,"13345":2,"13346":1,"13347":1,"13348":2,"13349":2,"13350":1,"13351":1,"13352":2,"13353":1,"13354":1,"13355":2,"13356":2,"13357":2,"13358":1,"13359":1,"13360":2,"13361":1,"13362":2,"13363":1,"13364":2,"13365":2,"13366":2,"13367":1,"13368":2,"13369":2,"13370":2,"13371":1,"13372":1,"13373":2,"13374":1,"13375":2,"13376":1,"13377":1,"13378":2,"13379":2,"13380":2,"13381":2,"13382":2,"13383":1,"13384":2,"13385":2,"13386":1,"13387":1,"13388":2,"13389":1,"13390":1,"13391":2,"13392":2,"13393":2,"13394":1,"13395":2,"13396":2,"13397":2,"13398":2,"13399":1,"13400":2,"13401":2,"13402":1,"13403":1,"13404":1,"13405":1,"13406":2,"13407":2,"13408":1,"13409":1,"13410":2,"13411":2,"13412":2,"13413":2,"13414":1,"13415":1,"13416":2,"13417":2,"13418":2,"13419":2,"13420":1,"13421":2,"13422":2,"13423":1,"13424":2,"13425":1,"13426":2,"13427":2,"13428":2,"13429":2,"13430":2,"13431":1,"13432":1,"13433":2,"13434":1,"13435":2,"13436":1,"13437":2,"13438":2,"13439":2,"13440":1,"13441":1,"13442":2,"13443":2,"13444":1,"13445":1,"13446":2,"13447":1,"13448":2,"13449":2,"13450":1,"13451":2,"13452":2,"13453":1,"13454":1,"13455":2,"13456":2,"13457":2,"13458":2,"13459":2,"13460":1,"13461":2,"13462":2,"13463":1,"13464":1,"13465":2,"13466":1,"13467":2,"13468":1,"13469":2,"13470":2,"13471":2,"13472":1,"13473":1,"13474":2,"13475":1,"13476":1,"13477":1,"13478":1,"13479":1,"13480":2,"13481":2,"13482":2,"13483":1,"13484":1,"13485":2,"13486":2,"13487":1,"13488":2,"13489":1,"13490":1,"13491":1,"13492":1,"13493":1,"13494":1,"13495":1,"13496":1,"13497":1,"13498":2,"13499":2,"13500":2,"13501":2,"13502":1,"13503":1,"13504":2,"13505":2,"13506":1,"13507":2,"13508":2,"13509":1,"13510":2,"13511":2,"13512":1,"13513":1,"13514":2,"13515":1,"13516":2,"13517":2,"13518":2,"13519":1,"13520":2,"13521":2,"13522":1,"13523":2,"13524":1,"13525":1,"13526":1,"13527":1,"13528":1,"13529":1,"13530":1,"13531":1,"13532":2,"13533":2,"13534":2,"13535":1,"13536":1,"13537":1,"13538":2,"13539":1,"13540":1,"13541":2,"13542":2,"13543":1,"13544":2,"13545":1,"13546":1,"13547":1,"13548":1,"13549":1,"13550":1,"13551":2,"13552":1,"13553":1,"13554":2,"13555":2,"13556":1,"13557":1,"13558":1,"13559":1,"13560":1,"13561":1,"13562":2,"13563":1,"13564":2,"13565":1,"13566":1,"13567":1,"13568":2,"13569":2,"13570":1,"13571":1,"13572":2,"13573":1,"13574":1,"13575":1,"13576":1,"13577":2,"13578":2,"13579":2,"13580":1,"13581":2,"13582":2,"13583":1,"13584":2,"13585":2,"13586":1,"13587":1,"13588":2,"13589":2,"13590":1,"13591":1,"13592":2,"13593":1,"13594":2,"13595":2,"13596":2,"13597":1,"13598":1,"13599":2,"13600":1,"13601":1,"13602":2,"13603":2,"13604":2,"13605":1,"13606":1,"13607":1,"13608":2,"13609":2,"13610":2,"13611":1,"13612":2,"13613":2,"13614":1,"13615":1,"13616":2,"13617":2,"13618":2,"13619":1,"13620":2,"13621":2,"13622":2,"13623":1,"13624":2,"13625":2,"13626":2,"13627":2,"13628":1,"13629":2,"13630":1,"13631":1,"13632":1,"13633":1,"13634":1,"13635":1,"13636":2,"13637":1,"13638":2,"13639":1,"13640":2,"13641":1,"13642":2,"13643":2,"13644":2,"13645":1,"13646":2,"13647":1,"13648":1,"13649":2,"13650":2,"13651":1,"13652":1,"13653":2,"13654":1,"13655":1,"13656":1,"13657":1,"13658":1,"13659":2,"13660":2,"13661":2,"13662":2,"13663":1,"13664":2,"13665":1,"13666":1,"13667":1,"13668":2,"13669":2,"13670":1,"13671":1,"13672":1,"13673":2,"13674":2,"13675":2,"13676":1,"13677":2,"13678":2,"13679":1,"13680":1,"13681":2,"13682":2,"13683":1,"13684":1,"13685":1,"13686":1,"13687":1,"13688":2,"13689":2,"13690":2,"13691":2,"13692":1,"13693":1,"13694":2,"13695":1,"13696":1,"13697":1,"13698":2,"13699":2,"13700":1,"13701":1,"13702":1,"13703":2,"13704":1,"13705":2,"13706":2,"13707":1,"13708":1,"13709":1,"13710":2,"13711":1,"13712":1,"13713":2,"13714":2,"13715":2,"13716":1,"13717":1,"13718":1,"13719":1,"13720":2,"13721":2,"13722":1,"13723":2,"13724":2,"13725":1,"13726":2,"13727":2,"13728":1,"13729":2,"13730":2,"13731":1,"13732":2,"13733":2,"13734":1,"13735":1,"13736":2,"13737":1,"13738":2,"13739":2,"13740":1,"13741":1,"13742":1,"13743":1,"13744":1,"13745":2,"13746":2,"13747":1,"13748":1,"13749":1,"13750":1,"13751":2,"13752":1,"13753":1,"13754":2,"13755":1,"13756":1,"13757":1,"13758":2,"13759":1,"13760":1,"13761":1,"13762":1,"13763":1,"13764":1,"13765":2,"13766":1,"13767":1,"13768":1,"13769":2,"13770":1,"13771":1,"13772":1,"13773":1,"13774":1,"13775":2,"13776":2,"13777":2,"13778":1,"13779":1,"13780":1,"13781":1,"13782":2,"13783":1,"13784":2,"13785":1,"13786":1,"13787":1,"13788":2,"13789":1,"13790":1,"13791":1,"13792":1,"13793":2,"13794":2,"13795":2,"13796":2,"13797":1,"13798":1,"13799":1,"13800":2,"13801":2,"13802":2,"13803":1,"13804":1,"13805":2,"13806":2,"13807":2,"13808":2,"13809":1,"13810":1,"13811":2,"13812":1,"13813":2,"13814":1,"13815":1,"13816":2,"13817":1,"13818":2,"13819":2,"13820":2,"13821":1,"13822":1,"13823":1,"13824":2,"13825":2,"13826":2,"13827":1,"13828":2,"13829":2,"13830":1,"13831":1,"13832":2,"13833":2,"13834":1,"13835":1,"13836":2,"13837":2,"13838":2,"13839":2,"13840":1,"13841":1,"13842":2,"13843":1,"13844":1,"13845":1,"13846":2,"13847":1,"13848":2,"13849":1,"13850":1,"13851":1,"13852":2,"13853":1,"13854":2,"13855":2,"13856":2,"13857":2,"13858":2,"13859":2,"13860":1,"13861":1,"13862":2,"13863":1,"13864":1,"13865":2,"13866":2,"13867":2,"13868":2,"13869":1,"13870":1,"13871":1,"13872":1,"13873":2,"13874":2,"13875":2,"13876":2,"13877":2,"13878":2,"13879":2,"13880":1,"13881":2,"13882":2,"13883":2,"13884":2,"13885":1,"13886":1,"13887":1,"13888":2,"13889":2,"13890":1,"13891":1,"13892":2,"13893":1,"13894":1,"13895":2,"13896":2,"13897":2,"13898":1,"13899":2,"13900":1,"13901":2,"13902":2,"13903":2,"13904":2,"13905":2,"13906":2,"13907":1,"13908":1,"13909":1,"13910":2,"13911":2,"13912":2,"13913":2,"13914":1,"13915":1,"13916":1,"13917":1,"13918":2,"13919":2,"13920":2,"13921":1,"13922":2,"13923":1,"13924":1,"13925":1,"13926":1,"13927":1,"13928":1,"13929":2,"13930":2,"13931":2,"13932":2,"13933":2,"13934":2,"13935":2,"13936":1,"13937":1,"13938":1,"13939":2,"13940":2,"13941":2,"13942":2,"13943":1,"13944":2,"13945":2,"13946":2,"13947":2,"13948":1,"13949":1,"13950":2,"13951":1,"13952":2,"13953":1,"13954":1,"13955":1,"13956":2,"13957":2,"13958":2,"13959":2,"13960":1,"13961":2,"13962":2,"13963":2,"13964":2,"13965":1,"13966":1,"13967":1,"13968":1,"13969":1,"13970":1,"13971":2,"13972":2,"13973":2,"13974":1,"13975":2,"13976":1,"13977":1,"13978":1,"13979":2,"13980":2,"13981":1,"13982":1,"13983":1,"13984":1,"13985":1,"13986":2,"13987":1,"13988":1,"13989":1,"13990":2,"13991":1,"13992":1,"13993":1,"13994":2,"13995":2,"13996":1,"13997":2,"13998":1,"13999":2,"14000":2,"14001":1,"14002":1,"14003":1,"14004":2,"14005":1,"14006":1,"14007":1,"14008":2,"14009":1,"14010":1,"14011":2,"14012":2,"14013":2,"14014":2,"14015":2,"14016":2,"14017":2,"14018":2,"14019":2,"14020":1,"14021":1,"14022":1,"14023":1,"14024":1,"14025":1,"14026":2,"14027":2,"14028":1,"14029":2,"14030":2,"14031":1,"14032":2,"14033":1,"14034":2,"14035":2,"14036":2,"14037":2,"14038":2,"14039":2,"14040":2,"14041":1,"14042":1,"14043":1,"14044":1,"14045":2,"14046":1,"14047":2,"14048":1,"14049":2,"14050":2,"14051":1,"14052":1,"14053":1,"14054":2,"14055":1,"14056":2,"14057":1,"14058":1,"14059":2,"14060":2,"14061":1,"14062":1,"14063":2,"14064":1,"14065":2,"14066":1,"14067":1,"14068":1,"14069":2,"14070":2,"14071":2,"14072":1,"14073":1,"14074":2,"14075":2,"14076":1,"14077":1,"14078":2,"14079":1,"14080":1,"14081":1,"14082":2,"14083":1,"14084":2,"14085":1,"14086":2,"14087":2,"14088":1,"14089":2,"14090":2,"14091":1,"14092":2,"14093":2,"14094":1,"14095":1,"14096":1,"14097":1,"14098":2,"14099":2,"14100":1,"14101":2,"14102":1,"14103":2,"14104":2,"14105":1,"14106":2,"14107":1,"14108":2,"14109":2,"14110":1,"14111":1,"14112":1,"14113":1,"14114":2,"14115":2,"14116":1,"14117":2,"14118":2,"14119":1,"14120":1,"14121":1,"14122":1,"14123":1,"14124":2,"14125":1,"14126":1,"14127":2,"14128":2,"14129":2,"14130":2,"14131":1,"14132":2,"14133":2,"14134":2,"14135":1,"14136":2,"14137":2,"14138":2,"14139":1,"14140":2,"14141":2,"14142":1,"14143":2,"14144":2,"14145":1,"14146":1,"14147":2,"14148":1,"14149":1,"14150":2,"14151":2,"14152":2,"14153":2,"14154":1,"14155":1,"14156":1,"14157":1,"14158":2,"14159":1,"14160":1,"14161":1,"14162":1,"14163":1,"14164":2,"14165":1,"14166":2,"14167":1,"14168":1,"14169":1,"14170":2,"14171":2,"14172":1,"14173":1,"14174":1,"14175":2,"14176":1,"14177":2,"14178":2,"14179":2,"14180":2,"14181":2,"14182":2,"14183":1,"14184":2,"14185":1,"14186":2,"14187":2,"14188":1,"14189":1,"14190":1,"14191":1,"14192":1,"14193":2,"14194":1,"14195":1,"14196":1,"14197":1,"14198":1,"14199":2,"14200":2,"14201":2,"14202":1,"14203":1,"14204":2,"14205":1,"14206":2,"14207":2,"14208":2,"14209":2,"14210":1,"14211":1,"14212":1,"14213":2,"14214":1,"14215":2,"14216":2,"14217":2,"14218":2,"14219":1,"14220":1,"14221":2,"14222":2,"14223":2,"14224":2,"14225":1,"14226":2,"14227":1,"14228":1,"14229":1,"14230":2,"14231":1,"14232":2,"14233":1,"14234":2,"14235":1,"14236":1,"14237":1,"14238":1,"14239":2,"14240":2,"14241":2,"14242":1,"14243":1,"14244":2,"14245":1,"14246":1,"14247":1,"14248":2,"14249":1,"14250":1,"14251":1,"14252":1,"14253":1,"14254":2,"14255":2,"14256":2,"14257":1,"14258":1,"14259":1,"14260":2,"14261":2,"14262":1,"14263":1,"14264":2,"14265":2,"14266":2,"14267":2,"14268":1,"14269":2,"14270":1,"14271":2,"14272":2,"14273":1,"14274":2,"14275":2,"14276":2,"14277":1,"14278":2,"14279":1,"14280":2,"14281":1,"14282":2,"14283":2,"14284":1,"14285":2,"14286":2,"14287":1,"14288":1,"14289":1,"14290":1,"14291":2,"14292":2,"14293":1,"14294":2,"14295":2,"14296":1,"14297":2,"14298":2,"14299":1,"14300":1,"14301":1,"14302":1,"14303":1,"14304":2,"14305":1,"14306":2,"14307":2,"14308":1,"14309":1,"14310":1,"14311":1,"14312":1,"14313":1,"14314":1,"14315":1,"14316":1,"14317":2,"14318":2,"14319":1,"14320":1,"14321":1,"14322":1,"14323":1,"14324":1,"14325":1,"14326":1,"14327":1,"14328":2,"14329":2,"14330":1,"14331":1,"14332":1,"14333":2,"14334":1,"14335":2,"14336":1,"14337":2,"14338":1,"14339":2,"14340":1,"14341":2,"14342":1,"14343":1,"14344":1,"14345":1,"14346":1,"14347":2,"14348":2,"14349":1,"14350":2,"14351":1,"14352":2,"14353":2,"14354":2,"14355":2,"14356":2,"14357":2,"14358":2,"14359":1,"14360":1,"14361":1,"14362":1,"14363":2,"14364":1,"14365":1,"14366":2,"14367":2,"14368":1,"14369":2,"14370":1,"14371":1,"14372":2,"14373":2,"14374":2,"14375":1,"14376":1,"14377":2,"14378":2,"14379":2,"14380":1,"14381":1,"14382":2,"14383":1,"14384":2,"14385":1,"14386":2,"14387":2,"14388":2,"14389":1,"14390":1,"14391":1,"14392":1,"14393":2,"14394":1,"14395":1,"14396":2,"14397":1,"14398":2,"14399":2,"14400":1,"14401":1,"14402":2,"14403":1,"14404":2,"14405":1,"14406":2,"14407":2,"14408":2,"14409":1,"14410":2,"14411":1,"14412":1,"14413":1,"14414":1,"14415":1,"14416":1,"14417":2,"14418":2,"14419":1,"14420":2,"14421":2,"14422":1,"14423":1,"14424":1,"14425":2,"14426":1,"14427":2,"14428":1,"14429":2,"14430":2,"14431":1,"14432":2,"14433":1,"14434":2,"14435":1,"14436":2,"14437":1,"14438":2,"14439":2,"14440":1,"14441":2,"14442":2,"14443":2,"14444":1,"14445":2,"14446":1,"14447":1,"14448":2,"14449":1,"14450":2,"14451":2,"14452":2,"14453":2,"14454":1,"14455":2,"14456":2,"14457":2,"14458":2,"14459":2,"14460":1,"14461":2,"14462":2,"14463":2,"14464":1,"14465":2,"14466":2,"14467":1,"14468":1,"14469":2,"14470":1,"14471":1,"14472":1,"14473":1,"14474":1,"14475":1,"14476":2,"14477":1,"14478":1,"14479":2,"14480":2,"14481":2,"14482":2,"14483":1,"14484":2,"14485":1,"14486":2,"14487":1,"14488":1,"14489":1,"14490":1,"14491":2,"14492":2,"14493":2,"14494":2,"14495":1,"14496":2,"14497":2,"14498":2,"14499":2,"14500":1,"14501":1,"14502":1,"14503":2,"14504":2,"14505":1,"14506":2,"14507":1,"14508":1,"14509":1,"14510":2,"14511":1,"14512":2,"14513":1,"14514":2,"14515":1,"14516":2,"14517":2,"14518":2,"14519":1,"14520":2,"14521":2,"14522":1,"14523":2,"14524":1,"14525":1,"14526":1,"14527":1,"14528":2,"14529":1,"14530":2,"14531":2,"14532":1,"14533":2,"14534":1,"14535":2,"14536":2,"14537":1,"14538":1,"14539":2,"14540":2,"14541":1,"14542":1,"14543":1,"14544":2,"14545":2,"14546":2,"14547":2,"14548":2,"14549":2,"14550":1,"14551":1,"14552":1,"14553":2,"14554":1,"14555":2,"14556":2,"14557":2,"14558":1,"14559":1,"14560":1,"14561":1,"14562":2,"14563":1,"14564":2,"14565":1,"14566":2,"14567":2,"14568":2,"14569":2,"14570":2,"14571":2,"14572":2,"14573":1,"14574":2,"14575":2,"14576":2,"14577":1,"14578":2,"14579":1,"14580":2,"14581":1,"14582":1,"14583":1,"14584":2,"14585":2,"14586":1,"14587":2,"14588":2,"14589":1,"14590":1,"14591":2,"14592":1,"14593":1,"14594":2,"14595":1,"14596":2,"14597":2,"14598":1,"14599":1,"14600":1,"14601":2,"14602":2,"14603":1,"14604":1,"14605":1,"14606":1,"14607":2,"14608":1,"14609":1,"14610":2,"14611":2,"14612":1,"14613":1,"14614":1,"14615":2,"14616":2,"14617":2,"14618":2,"14619":1,"14620":2,"14621":2,"14622":2,"14623":1,"14624":1,"14625":1,"14626":1,"14627":1,"14628":1,"14629":2,"14630":1,"14631":2,"14632":2,"14633":2,"14634":1,"14635":1,"14636":1,"14637":1,"14638":1,"14639":1,"14640":1,"14641":1,"14642":2,"14643":2,"14644":1,"14645":2,"14646":2,"14647":1,"14648":1,"14649":1,"14650":1,"14651":2,"14652":1,"14653":1,"14654":2,"14655":2,"14656":1,"14657":1,"14658":2,"14659":2,"14660":1,"14661":1,"14662":2,"14663":1,"14664":1,"14665":2,"14666":2,"14667":1,"14668":1,"14669":2,"14670":2,"14671":2,"14672":1,"14673":1,"14674":1,"14675":1,"14676":2,"14677":1,"14678":1,"14679":1,"14680":1,"14681":1,"14682":2,"14683":2,"14684":1,"14685":2,"14686":2,"14687":2,"14688":1,"14689":2,"14690":2,"14691":2,"14692":2,"14693":2,"14694":2,"14695":2,"14696":2,"14697":2,"14698":1,"14699":2,"14700":2,"14701":2,"14702":1,"14703":2,"14704":1,"14705":2,"14706":1,"14707":2,"14708":1,"14709":2,"14710":1,"14711":1,"14712":2,"14713":2,"14714":1,"14715":1,"14716":1,"14717":2,"14718":2,"14719":2,"14720":1,"14721":2,"14722":1,"14723":2,"14724":1,"14725":2,"14726":1,"14727":1,"14728":1,"14729":2,"14730":2,"14731":1,"14732":2,"14733":1,"14734":1,"14735":2,"14736":2,"14737":1,"14738":1,"14739":1,"14740":1,"14741":2,"14742":1,"14743":1,"14744":1,"14745":2,"14746":1,"14747":2,"14748":1,"14749":2,"14750":2,"14751":2,"14752":2,"14753":1,"14754":2,"14755":1,"14756":1,"14757":1,"14758":2,"14759":1,"14760":1,"14761":1,"14762":1,"14763":2,"14764":1,"14765":2,"14766":1,"14767":1,"14768":2,"14769":2,"14770":2,"14771":1,"14772":1,"14773":2,"14774":2,"14775":2,"14776":2,"14777":1,"14778":2,"14779":1,"14780":2,"14781":2,"14782":2,"14783":2,"14784":2,"14785":2,"14786":2,"14787":1,"14788":1,"14789":1,"14790":1,"14791":2,"14792":2,"14793":2,"14794":1,"14795":1,"14796":1,"14797":2,"14798":2,"14799":1,"14800":2,"14801":2,"14802":2,"14803":1,"14804":2,"14805":2,"14806":2,"14807":2,"14808":1,"14809":2,"14810":2,"14811":2,"14812":2,"14813":1,"14814":1,"14815":1,"14816":1,"14817":1,"14818":2,"14819":1,"14820":1,"14821":2,"14822":2,"14823":2,"14824":2,"14825":2,"14826":1,"14827":1,"14828":1,"14829":1,"14830":1,"14831":1,"14832":2,"14833":2,"14834":2,"14835":1,"14836":2,"14837":2,"14838":1,"14839":1,"14840":2,"14841":1,"14842":2,"14843":1,"14844":1,"14845":2,"14846":1,"14847":1,"14848":1,"14849":1,"14850":2,"14851":1,"14852":2,"14853":2,"14854":2,"14855":2,"14856":2,"14857":2,"14858":1,"14859":2,"14860":2,"14861":1,"14862":2,"14863":2,"14864":2,"14865":2,"14866":1,"14867":2,"14868":1,"14869":1,"14870":2,"14871":1,"14872":1,"14873":2,"14874":1,"14875":1,"14876":2,"14877":2,"14878":1,"14879":1,"14880":1,"14881":2,"14882":2,"14883":2,"14884":2,"14885":1,"14886":2,"14887":2,"14888":1,"14889":1,"14890":1,"14891":2,"14892":1,"14893":2,"14894":1,"14895":1,"14896":1,"14897":2,"14898":1,"14899":2,"14900":1,"14901":1,"14902":1,"14903":1,"14904":1,"14905":2,"14906":1,"14907":2,"14908":2,"14909":1,"14910":1,"14911":2,"14912":1,"14913":1,"14914":1,"14915":1,"14916":1,"14917":2,"14918":1,"14919":1,"14920":2,"14921":2,"14922":1,"14923":1,"14924":2,"14925":2,"14926":1,"14927":1,"14928":1,"14929":1,"14930":1,"14931":1,"14932":2,"14933":1,"14934":2,"14935":2,"14936":1,"14937":1,"14938":1,"14939":2,"14940":2,"14941":2,"14942":2,"14943":1,"14944":2,"14945":2,"14946":2,"14947":1,"14948":2,"14949":2,"14950":1,"14951":1,"14952":2,"14953":2,"14954":1,"14955":2,"14956":1,"14957":2,"14958":1,"14959":1,"14960":2,"14961":1,"14962":1,"14963":1,"14964":1,"14965":1,"14966":1,"14967":1,"14968":1,"14969":2,"14970":2,"14971":1,"14972":2,"14973":2,"14974":2,"14975":2,"14976":2,"14977":2,"14978":1,"14979":1,"14980":2,"14981":2,"14982":2,"14983":2,"14984":1,"14985":1,"14986":2,"14987":2,"14988":1,"14989":2,"14990":2,"14991":1,"14992":2,"14993":2,"14994":2,"14995":1,"14996":2,"14997":1,"14998":2,"14999":1,"15000":1,"15001":2,"15002":1,"15003":2,"15004":1,"15005":1,"15006":1,"15007":2,"15008":2,"15009":1,"15010":1,"15011":2,"15012":2,"15013":2,"15014":1,"15015":2,"15016":2,"15017":2,"15018":2,"15019":2,"15020":1,"15021":2,"15022":2,"15023":2,"15024":1,"15025":2,"15026":1,"15027":1,"15028":1,"15029":1,"15030":2,"15031":2,"15032":2,"15033":1,"15034":2,"15035":1,"15036":2,"15037":1,"15038":2,"15039":1,"15040":1,"15041":2,"15042":1,"15043":2,"15044":1,"15045":2,"15046":1,"15047":1,"15048":1,"15049":1,"15050":1,"15051":2,"15052":1,"15053":1,"15054":1,"15055":2,"15056":2,"15057":2,"15058":1,"15059":2,"15060":2,"15061":2,"15062":1,"15063":2,"15064":1,"15065":1,"15066":2,"15067":2,"15068":2,"15069":2,"15070":2,"15071":1,"15072":2,"15073":1,"15074":2,"15075":1,"15076":1,"15077":1,"15078":1,"15079":2,"15080":2,"15081":2,"15082":1,"15083":2,"15084":2,"15085":2,"15086":1,"15087":2,"15088":2,"15089":1,"15090":2,"15091":2,"15092":1,"15093":1,"15094":2,"15095":2,"15096":2,"15097":2,"15098":1,"15099":2,"15100":1,"15101":2,"15102":2,"15103":1,"15104":1,"15105":2,"15106":1,"15107":2,"15108":2,"15109":1,"15110":2,"15111":1,"15112":2,"15113":1,"15114":2,"15115":2,"15116":2,"15117":2,"15118":2,"15119":1,"15120":1,"15121":1,"15122":2,"15123":2,"15124":2,"15125":2,"15126":1,"15127":2,"15128":2,"15129":2,"15130":1,"15131":2,"15132":1,"15133":2,"15134":2,"15135":2,"15136":2,"15137":2,"15138":2,"15139":1,"15140":1,"15141":2,"15142":2,"15143":2,"15144":2,"15145":2,"15146":2,"15147":2,"15148":1,"15149":1,"15150":1,"15151":2,"15152":1,"15153":2,"15154":2,"15155":2,"15156":1,"15157":1,"15158":1,"15159":2,"15160":1,"15161":2,"15162":1,"15163":1,"15164":1,"15165":1,"15166":2,"15167":1,"15168":2,"15169":2,"15170":1,"15171":1,"15172":1,"15173":2,"15174":2,"15175":2,"15176":2,"15177":1,"15178":2,"15179":2,"15180":1,"15181":1,"15182":2,"15183":1,"15184":1,"15185":1,"15186":1,"15187":1,"15188":1,"15189":1,"15190":2,"15191":1,"15192":2,"15193":2,"15194":2,"15195":1,"15196":2,"15197":1,"15198":2,"15199":2,"15200":1,"15201":1,"15202":2,"15203":1,"15204":1,"15205":1,"15206":2,"15207":1,"15208":2,"15209":2,"15210":1,"15211":1,"15212":1,"15213":2,"15214":1,"15215":1,"15216":2,"15217":1,"15218":2,"15219":1,"15220":2,"15221":1,"15222":1,"15223":1,"15224":2,"15225":1,"15226":1,"15227":1,"15228":1,"15229":2,"15230":1,"15231":2,"15232":2,"15233":2,"15234":2,"15235":2,"15236":2,"15237":1,"15238":1,"15239":2,"15240":2,"15241":2,"15242":1,"15243":1,"15244":2,"15245":1,"15246":1,"15247":1,"15248":1,"15249":1,"15250":2,"15251":2,"15252":1,"15253":2,"15254":1,"15255":2,"15256":1,"15257":2,"15258":1,"15259":1,"15260":1,"15261":2,"15262":2,"15263":1,"15264":1,"15265":2,"15266":1,"15267":1,"15268":1,"15269":1,"15270":2,"15271":1,"15272":2,"15273":2,"15274":1,"15275":1,"15276":1,"15277":1,"15278":2,"15279":1,"15280":1,"15281":1,"15282":1,"15283":1,"15284":1,"15285":2,"15286":2,"15287":2,"15288":2,"15289":1,"15290":1,"15291":2,"15292":2,"15293":1,"15294":1,"15295":2,"15296":2,"15297":1,"15298":2,"15299":2,"15300":2,"15301":1,"15302":2,"15303":1,"15304":2,"15305":2,"15306":1,"15307":1,"15308":1,"15309":2,"15310":1,"15311":2,"15312":2,"15313":2,"15314":1,"15315":2,"15316":1,"15317":1,"15318":1,"15319":1,"15320":1,"15321":1,"15322":2,"15323":2,"15324":2,"15325":2,"15326":2,"15327":1,"15328":1,"15329":1,"15330":2,"15331":1,"15332":2,"15333":1,"15334":1,"15335":2,"15336":1,"15337":1,"15338":1,"15339":1,"15340":2,"15341":1,"15342":2,"15343":2,"15344":2,"15345":1,"15346":2,"15347":2,"15348":2,"15349":2,"15350":1,"15351":1,"15352":1,"15353":2,"15354":2,"15355":1,"15356":1,"15357":2,"15358":1,"15359":1,"15360":1,"15361":1,"15362":1,"15363":1,"15364":2,"15365":2,"15366":2,"15367":1,"15368":1,"15369":1,"15370":2,"15371":2,"15372":1,"15373":1,"15374":2,"15375":1,"15376":2,"15377":1,"15378":2,"15379":1,"15380":2,"15381":1,"15382":2,"15383":2,"15384":1,"15385":2,"15386":2,"15387":1,"15388":2,"15389":2,"15390":1,"15391":1,"15392":1,"15393":2,"15394":1,"15395":1,"15396":2,"15397":2,"15398":1,"15399":2,"15400":2,"15401":1,"15402":1,"15403":2,"15404":2,"15405":2,"15406":1,"15407":2,"15408":1,"15409":2,"15410":2,"15411":1,"15412":1,"15413":2,"15414":1,"15415":1,"15416":1,"15417":1,"15418":2,"15419":2,"15420":1,"15421":1,"15422":2,"15423":1,"15424":1,"15425":2,"15426":1,"15427":2,"15428":2,"15429":2,"15430":2,"15431":2,"15432":2,"15433":2,"15434":1,"15435":1,"15436":1,"15437":2,"15438":1,"15439":2,"15440":1,"15441":2,"15442":2,"15443":2,"15444":2,"15445":2,"15446":1,"15447":2,"15448":1,"15449":2,"15450":1,"15451":2,"15452":1,"15453":2,"15454":1,"15455":2,"15456":2,"15457":2,"15458":2,"15459":1,"15460":2,"15461":1,"15462":2,"15463":1,"15464":1,"15465":2,"15466":2,"15467":1,"15468":2,"15469":2,"15470":1,"15471":1,"15472":2,"15473":2,"15474":1,"15475":1,"15476":2,"15477":1,"15478":2,"15479":2,"15480":2,"15481":1,"15482":2,"15483":1,"15484":2,"15485":1,"15486":2,"15487":2,"15488":2,"15489":1,"15490":1,"15491":2,"15492":1,"15493":1,"15494":1,"15495":1,"15496":1,"15497":2,"15498":2,"15499":2,"15500":2,"15501":2,"15502":2,"15503":1,"15504":2,"15505":1,"15506":1,"15507":2,"15508":2,"15509":2,"15510":1,"15511":1,"15512":2,"15513":2,"15514":1,"15515":1,"15516":1,"15517":2,"15518":2,"15519":2,"15520":1,"15521":2,"15522":2,"15523":2,"15524":1,"15525":2,"15526":2,"15527":2,"15528":2,"15529":1,"15530":1,"15531":2,"15532":2,"15533":1,"15534":1,"15535":1,"15536":1,"15537":1,"15538":1,"15539":1,"15540":2,"15541":1,"15542":1,"15543":2,"15544":1,"15545":1,"15546":1,"15547":2,"15548":1,"15549":1,"15550":1,"15551":2,"15552":2,"15553":2,"15554":1,"15555":2,"15556":1,"15557":2,"15558":1,"15559":2,"15560":1,"15561":2,"15562":2,"15563":1,"15564":2,"15565":2,"15566":1,"15567":1,"15568":2,"15569":1,"15570":1,"15571":2,"15572":1,"15573":2,"15574":1,"15575":1,"15576":2,"15577":1,"15578":2,"15579":1,"15580":2,"15581":1,"15582":2,"15583":2,"15584":1,"15585":2,"15586":2,"15587":1,"15588":2,"15589":2,"15590":2,"15591":1,"15592":1,"15593":2,"15594":1,"15595":1,"15596":2,"15597":1,"15598":1,"15599":2,"15600":1,"15601":2,"15602":1,"15603":1,"15604":2,"15605":2,"15606":1,"15607":1,"15608":2,"15609":1,"15610":1,"15611":1,"15612":1,"15613":2,"15614":2,"15615":1,"15616":2,"15617":2,"15618":1,"15619":1,"15620":1,"15621":2,"15622":1,"15623":2,"15624":1,"15625":2,"15626":1,"15627":2,"15628":1,"15629":1,"15630":1,"15631":1,"15632":2,"15633":1,"15634":2,"15635":2,"15636":2,"15637":2,"15638":2,"15639":1,"15640":1,"15641":2,"15642":2,"15643":1,"15644":2,"15645":1,"15646":1,"15647":1,"15648":1,"15649":1,"15650":2,"15651":1,"15652":1,"15653":2,"15654":2,"15655":2,"15656":1,"15657":2,"15658":2,"15659":2,"15660":2,"15661":2,"15662":2,"15663":2,"15664":1,"15665":2,"15666":1,"15667":1,"15668":1,"15669":2,"15670":1,"15671":1,"15672":2,"15673":1,"15674":1,"15675":1,"15676":2,"15677":1,"15678":1,"15679":1,"15680":2,"15681":1,"15682":1,"15683":1,"15684":2,"15685":2,"15686":1,"15687":2,"15688":2,"15689":1,"15690":1,"15691":1,"15692":1,"15693":2,"15694":2,"15695":1,"15696":1,"15697":1,"15698":2,"15699":2,"15700":2,"15701":2,"15702":1,"15703":1,"15704":2,"15705":2,"15706":1,"15707":1,"15708":1,"15709":1,"15710":2,"15711":1,"15712":1,"15713":2,"15714":2,"15715":2,"15716":1,"15717":1,"15718":2,"15719":2,"15720":1,"15721":1,"15722":1,"15723":2,"15724":1,"15725":2,"15726":2,"15727":1,"15728":1,"15729":1,"15730":1,"15731":2,"15732":1,"15733":2,"15734":2,"15735":2,"15736":1,"15737":2,"15738":2,"15739":2,"15740":2,"15741":2,"15742":2,"15743":2,"15744":2,"15745":2,"15746":2,"15747":1,"15748":1,"15749":1,"15750":1,"15751":2,"15752":1,"15753":1,"15754":2,"15755":2,"15756":1,"15757":2,"15758":1,"15759":2,"15760":2,"15761":2,"15762":2,"15763":2,"15764":1,"15765":2,"15766":2,"15767":1,"15768":2,"15769":2,"15770":1,"15771":1,"15772":2,"15773":1,"15774":2,"15775":1,"15776":1,"15777":2,"15778":1,"15779":2,"15780":1,"15781":1,"15782":2,"15783":1,"15784":2,"15785":1,"15786":1,"15787":1,"15788":2,"15789":2,"15790":2,"15791":1,"15792":2,"15793":1,"15794":1,"15795":2,"15796":1,"15797":2,"15798":1,"15799":2,"15800":2,"15801":1,"15802":2,"15803":1,"15804":1,"15805":2,"15806":2,"15807":1,"15808":1,"15809":2,"15810":2,"15811":1,"15812":1,"15813":2,"15814":2,"15815":1,"15816":1,"15817":1,"15818":2,"15819":1,"15820":2,"15821":2,"15822":1,"15823":1,"15824":1,"15825":1,"15826":2,"15827":1,"15828":2,"15829":1,"15830":2,"15831":2,"15832":2,"15833":2,"15834":2,"15835":1,"15836":1,"15837":1,"15838":2,"15839":1,"15840":1,"15841":1,"15842":2,"15843":2,"15844":2,"15845":1,"15846":2,"15847":2,"15848":1,"15849":1,"15850":2,"15851":1,"15852":2,"15853":2,"15854":2,"15855":2,"15856":1,"15857":1,"15858":2,"15859":1,"15860":1,"15861":2,"15862":2,"15863":2,"15864":1,"15865":2,"15866":2,"15867":1,"15868":1,"15869":2,"15870":1,"15871":1,"15872":2,"15873":2,"15874":1,"15875":1,"15876":2,"15877":1,"15878":1,"15879":1,"15880":1,"15881":1,"15882":2,"15883":1,"15884":1,"15885":1,"15886":1,"15887":2,"15888":2,"15889":2,"15890":1,"15891":2,"15892":2,"15893":2,"15894":1,"15895":1,"15896":1,"15897":1,"15898":1,"15899":2,"15900":2,"15901":2,"15902":1,"15903":1,"15904":2,"15905":1,"15906":1,"15907":2,"15908":1,"15909":2,"15910":2,"15911":2,"15912":1,"15913":1,"15914":1,"15915":2,"15916":1,"15917":1,"15918":2,"15919":2,"15920":1,"15921":1,"15922":2,"15923":1,"15924":1,"15925":1,"15926":1,"15927":1,"15928":1,"15929":1,"15930":2,"15931":2,"15932":2,"15933":2,"15934":1,"15935":1,"15936":1,"15937":1,"15938":1,"15939":2,"15940":2,"15941":2,"15942":2,"15943":1,"15944":1,"15945":2,"15946":1,"15947":1,"15948":2,"15949":2,"15950":1,"15951":1,"15952":2,"15953":1,"15954":2,"15955":1,"15956":1,"15957":2,"15958":1,"15959":2,"15960":1,"15961":1,"15962":1,"15963":1,"15964":1,"15965":2,"15966":1,"15967":1,"15968":1,"15969":2,"15970":2,"15971":1,"15972":1,"15973":2,"15974":1,"15975":1,"15976":1,"15977":1,"15978":2,"15979":1,"15980":1,"15981":1,"15982":2,"15983":2,"15984":1,"15985":2,"15986":1,"15987":2,"15988":1,"15989":1,"15990":2,"15991":2,"15992":2,"15993":1,"15994":2,"15995":2,"15996":2,"15997":2,"15998":2,"15999":1,"16000":2,"16001":1,"16002":1,"16003":1,"16004":1,"16005":2,"16006":1,"16007":2,"16008":1,"16009":1,"16010":2,"16011":1,"16012":2,"16013":1,"16014":1,"16015":2,"16016":2,"16017":2,"16018":2,"16019":2,"16020":2,"16021":1,"16022":2,"16023":2,"16024":1,"16025":1,"16026":1,"16027":2,"16028":2,"16029":2,"16030":1,"16031":1,"16032":1,"16033":2,"16034":2,"16035":2,"16036":2,"16037":1,"16038":2,"16039":2,"16040":2,"16041":1,"16042":2,"16043":2,"16044":2,"16045":2,"16046":1,"16047":1,"16048":2,"16049":1,"16050":2,"16051":1,"16052":1,"16053":2,"16054":2,"16055":1,"16056":2,"16057":2,"16058":1,"16059":2,"16060":2,"16061":2,"16062":2,"16063":2,"16064":1,"16065":2,"16066":2,"16067":2,"16068":2,"16069":1,"16070":2,"16071":1,"16072":1,"16073":2,"16074":1,"16075":1,"16076":1,"16077":1,"16078":1,"16079":1,"16080":1,"16081":2,"16082":2,"16083":1,"16084":2,"16085":2,"16086":2,"16087":1,"16088":2,"16089":1,"16090":1,"16091":1,"16092":1,"16093":1,"16094":1,"16095":2,"16096":1,"16097":1,"16098":2,"16099":1,"16100":1,"16101":2,"16102":1,"16103":1,"16104":1,"16105":1,"16106":1,"16107":2,"16108":1,"16109":1,"16110":1,"16111":1,"16112":1,"16113":2,"16114":2,"16115":1,"16116":2,"16117":1,"16118":1,"16119":2,"16120":2,"16121":1,"16122":2,"16123":2,"16124":1,"16125":2,"16126":1,"16127":2,"16128":1,"16129":2,"16130":2,"16131":1,"16132":2,"16133":2,"16134":2,"16135":1,"16136":1,"16137":1,"16138":2,"16139":1,"16140":1,"16141":1,"16142":1,"16143":1,"16144":1,"16145":1,"16146":2,"16147":1,"16148":1,"16149":2,"16150":1,"16151":1,"16152":1,"16153":1,"16154":2,"16155":1,"16156":2,"16157":2,"16158":1,"16159":1,"16160":1,"16161":1,"16162":2,"16163":2,"16164":2,"16165":1,"16166":1,"16167":2,"16168":2,"16169":1,"16170":2,"16171":2,"16172":1,"16173":2,"16174":2,"16175":1,"16176":2,"16177":1,"16178":2,"16179":2,"16180":2,"16181":2,"16182":2,"16183":2,"16184":1,"16185":1,"16186":2,"16187":1,"16188":1,"16189":1,"16190":1,"16191":2,"16192":2,"16193":2,"16194":1,"16195":1,"16196":2,"16197":2,"16198":1,"16199":1,"16200":1,"16201":1,"16202":1,"16203":1,"16204":2,"16205":2,"16206":2,"16207":1,"16208":1,"16209":2,"16210":1,"16211":1,"16212":2,"16213":1,"16214":2,"16215":2,"16216":1,"16217":2,"16218":1,"16219":2,"16220":1,"16221":1,"16222":2,"16223":1,"16224":1,"16225":2,"16226":1,"16227":1,"16228":2,"16229":2,"16230":2,"16231":1,"16232":1,"16233":2,"16234":2,"16235":1,"16236":1,"16237":2,"16238":1,"16239":1,"16240":2,"16241":1,"16242":2,"16243":2,"16244":1,"16245":2,"16246":1,"16247":2,"16248":1,"16249":2,"16250":1,"16251":1,"16252":2,"16253":1,"16254":2,"16255":2,"16256":1,"16257":1,"16258":1,"16259":2,"16260":1,"16261":1,"16262":1,"16263":2,"16264":1,"16265":2,"16266":2,"16267":1,"16268":1,"16269":1,"16270":2,"16271":2,"16272":1,"16273":1,"16274":2,"16275":1,"16276":2,"16277":2,"16278":2,"16279":2,"16280":2,"16281":1,"16282":2,"16283":1,"16284":1,"16285":2,"16286":2,"16287":1,"16288":2,"16289":2,"16290":1,"16291":1,"16292":1,"16293":2,"16294":2,"16295":2,"16296":2,"16297":2,"16298":2,"16299":1,"16300":1,"16301":1,"16302":2,"16303":2,"16304":1,"16305":1,"16306":1,"16307":1,"16308":2,"16309":2,"16310":2,"16311":1,"16312":1,"16313":2,"16314":2,"16315":2,"16316":2,"16317":2,"16318":1,"16319":1,"16320":1,"16321":2,"16322":2,"16323":1,"16324":1,"16325":2,"16326":1,"16327":1,"16328":1,"16329":1,"16330":1,"16331":2,"16332":1,"16333":1,"16334":2,"16335":2,"16336":2,"16337":2,"16338":2,"16339":1,"16340":1,"16341":1,"16342":2,"16343":1,"16344":2,"16345":1,"16346":1,"16347":1,"16348":1,"16349":1,"16350":1,"16351":1,"16352":1,"16353":2,"16354":2,"16355":2,"16356":1,"16357":1,"16358":1,"16359":2,"16360":1,"16361":1,"16362":1,"16363":2,"16364":2,"16365":2,"16366":1,"16367":2,"16368":2,"16369":2,"16370":1,"16371":2,"16372":1,"16373":1,"16374":2,"16375":1,"16376":1,"16377":2,"16378":2,"16379":1,"16380":2,"16381":2,"16382":1,"16383":1,"16384":2,"16385":2,"16386":2,"16387":1,"16388":2,"16389":1,"16390":2,"16391":1,"16392":1,"16393":2,"16394":2,"16395":2,"16396":2,"16397":2,"16398":2,"16399":1,"16400":2,"16401":2,"16402":2,"16403":2,"16404":1,"16405":2,"16406":1,"16407":1,"16408":1,"16409":2,"16410":1,"16411":1,"16412":2,"16413":2,"16414":2,"16415":2,"16416":2,"16417":1,"16418":1,"16419":1,"16420":1,"16421":1,"16422":1,"16423":2,"16424":2,"16425":1,"16426":2,"16427":1,"16428":1,"16429":1,"16430":2,"16431":1,"16432":2,"16433":1,"16434":1,"16435":1,"16436":2,"16437":2,"16438":1,"16439":1,"16440":2,"16441":2,"16442":1,"16443":2,"16444":2,"16445":2,"16446":2,"16447":1,"16448":1,"16449":1,"16450":1,"16451":2,"16452":2,"16453":2,"16454":1,"16455":2,"16456":2,"16457":1,"16458":2,"16459":2,"16460":2,"16461":1,"16462":1,"16463":2,"16464":1,"16465":1,"16466":2,"16467":2,"16468":1,"16469":1,"16470":1,"16471":2,"16472":2,"16473":2,"16474":1,"16475":2,"16476":1,"16477":1,"16478":1,"16479":1,"16480":1,"16481":1,"16482":2,"16483":2,"16484":1,"16485":2,"16486":1,"16487":2,"16488":1,"16489":2,"16490":1,"16491":2,"16492":1,"16493":1,"16494":1,"16495":1,"16496":2,"16497":1,"16498":1,"16499":1,"16500":1,"16501":2,"16502":1,"16503":2,"16504":2,"16505":2,"16506":2,"16507":1,"16508":2,"16509":2,"16510":2,"16511":1,"16512":2,"16513":1,"16514":2,"16515":1,"16516":2,"16517":1,"16518":1,"16519":2,"16520":2,"16521":2,"16522":1,"16523":1,"16524":2,"16525":2,"16526":1,"16527":1,"16528":1,"16529":2,"16530":2,"16531":1,"16532":2,"16533":2,"16534":2,"16535":2,"16536":1,"16537":2,"16538":1,"16539":1,"16540":2,"16541":1,"16542":1,"16543":2,"16544":2,"16545":2,"16546":2,"16547":1,"16548":2,"16549":2,"16550":1,"16551":2,"16552":1,"16553":2,"16554":1,"16555":2,"16556":2,"16557":1,"16558":1,"16559":2,"16560":2,"16561":1,"16562":1,"16563":2,"16564":1,"16565":1,"16566":2,"16567":2,"16568":1,"16569":2,"16570":2,"16571":2,"16572":2,"16573":1,"16574":1,"16575":2,"16576":1,"16577":1,"16578":1,"16579":2,"16580":1,"16581":2,"16582":1,"16583":2,"16584":2,"16585":1,"16586":2,"16587":1,"16588":2,"16589":2,"16590":2,"16591":1,"16592":1,"16593":1,"16594":2,"16595":1,"16596":1,"16597":1,"16598":2,"16599":2,"16600":1,"16601":2,"16602":1,"16603":1,"16604":2,"16605":1,"16606":1,"16607":2,"16608":2,"16609":2,"16610":1,"16611":1,"16612":1,"16613":2,"16614":2,"16615":1,"16616":1,"16617":2,"16618":1,"16619":1,"16620":1,"16621":1,"16622":1,"16623":2,"16624":2,"16625":1,"16626":1,"16627":2,"16628":2,"16629":1,"16630":1,"16631":2,"16632":1,"16633":1,"16634":1,"16635":2,"16636":1,"16637":2,"16638":1,"16639":2,"16640":2,"16641":1,"16642":1,"16643":2,"16644":1,"16645":2,"16646":2,"16647":2,"16648":2,"16649":2,"16650":1,"16651":2,"16652":2,"16653":1,"16654":1,"16655":1,"16656":2,"16657":2,"16658":2,"16659":2,"16660":1,"16661":1,"16662":2,"16663":1,"16664":1,"16665":2,"16666":2,"16667":2,"16668":2,"16669":2,"16670":2,"16671":1,"16672":1,"16673":2,"16674":1,"16675":1,"16676":2,"16677":2,"16678":1,"16679":1,"16680":2,"16681":1,"16682":1,"16683":2,"16684":2,"16685":2,"16686":1,"16687":2,"16688":1,"16689":2,"16690":2,"16691":1,"16692":2,"16693":1,"16694":2,"16695":1,"16696":1,"16697":2,"16698":2,"16699":1,"16700":2,"16701":2,"16702":2,"16703":1,"16704":1,"16705":2,"16706":1,"16707":2,"16708":2,"16709":2,"16710":1,"16711":2,"16712":2,"16713":2,"16714":2,"16715":2,"16716":2,"16717":1,"16718":1,"16719":1,"16720":1,"16721":2,"16722":1,"16723":1,"16724":1,"16725":2,"16726":2,"16727":1,"16728":1,"16729":2,"16730":1,"16731":2,"16732":2,"16733":1,"16734":2,"16735":1,"16736":2,"16737":2,"16738":1,"16739":1,"16740":2,"16741":1,"16742":1,"16743":2,"16744":1,"16745":1,"16746":2,"16747":2,"16748":1,"16749":2,"16750":2,"16751":1,"16752":1,"16753":2,"16754":1,"16755":1,"16756":2,"16757":1,"16758":1,"16759":1,"16760":1,"16761":1,"16762":1,"16763":2,"16764":1,"16765":2,"16766":2,"16767":2,"16768":2,"16769":2,"16770":1,"16771":1,"16772":2,"16773":1,"16774":1,"16775":1,"16776":2,"16777":1,"16778":2,"16779":2,"16780":2,"16781":2,"16782":2,"16783":1,"16784":2,"16785":2,"16786":1,"16787":2,"16788":1,"16789":2,"16790":1,"16791":1,"16792":1,"16793":1,"16794":1,"16795":1,"16796":2,"16797":1,"16798":1,"16799":1,"16800":1,"16801":2,"16802":2,"16803":2,"16804":2,"16805":2,"16806":2,"16807":2,"16808":1,"16809":1,"16810":1,"16811":1,"16812":2,"16813":2,"16814":1,"16815":1,"16816":2,"16817":2,"16818":2,"16819":2,"16820":1,"16821":2,"16822":2,"16823":1,"16824":2,"16825":1,"16826":2,"16827":2,"16828":2,"16829":2,"16830":1,"16831":1,"16832":1,"16833":1,"16834":2,"16835":2,"16836":1,"16837":2,"16838":2,"16839":1,"16840":2,"16841":2,"16842":2,"16843":1,"16844":1,"16845":1,"16846":1,"16847":1,"16848":1,"16849":2,"16850":1,"16851":1,"16852":2,"16853":2,"16854":2,"16855":2,"16856":2,"16857":1,"16858":2,"16859":1,"16860":1,"16861":1,"16862":2,"16863":1,"16864":1,"16865":1,"16866":2,"16867":2,"16868":1,"16869":1,"16870":1,"16871":1,"16872":1,"16873":1,"16874":1,"16875":2,"16876":1,"16877":2,"16878":1,"16879":2,"16880":1,"16881":2,"16882":1,"16883":1,"16884":2,"16885":2,"16886":2,"16887":2,"16888":2,"16889":2,"16890":1,"16891":1,"16892":1,"16893":2,"16894":2,"16895":2,"16896":2,"16897":2,"16898":1,"16899":1,"16900":2,"16901":1,"16902":2,"16903":1,"16904":1,"16905":1,"16906":1,"16907":1,"16908":1,"16909":2,"16910":1,"16911":2,"16912":2,"16913":2,"16914":2,"16915":1,"16916":2,"16917":2,"16918":2,"16919":2,"16920":2,"16921":1,"16922":1,"16923":1,"16924":1,"16925":2,"16926":1,"16927":1,"16928":1,"16929":2,"16930":2,"16931":2,"16932":1,"16933":2,"16934":1,"16935":2,"16936":2,"16937":2,"16938":1,"16939":2,"16940":2,"16941":1,"16942":2,"16943":1,"16944":2,"16945":2,"16946":2,"16947":1,"16948":1,"16949":2,"16950":2,"16951":2,"16952":1,"16953":2,"16954":1,"16955":1,"16956":1,"16957":2,"16958":2,"16959":1,"16960":2,"16961":1,"16962":1,"16963":1,"16964":1,"16965":1,"16966":1,"16967":2,"16968":2,"16969":2,"16970":2,"16971":1,"16972":2,"16973":2,"16974":2,"16975":1,"16976":2,"16977":2,"16978":2,"16979":1,"16980":2,"16981":1,"16982":2,"16983":2,"16984":2,"16985":2,"16986":1,"16987":1,"16988":1,"16989":1,"16990":1,"16991":1,"16992":2,"16993":2,"16994":2,"16995":2,"16996":2,"16997":1,"16998":1,"16999":2,"17000":2,"17001":2,"17002":2,"17003":2,"17004":2,"17005":1,"17006":1,"17007":2,"17008":1,"17009":1,"17010":2,"17011":1,"17012":1,"17013":2,"17014":2,"17015":1,"17016":1,"17017":2,"17018":2,"17019":1,"17020":2,"17021":2,"17022":2,"17023":1,"17024":1,"17025":1,"17026":2,"17027":2,"17028":2,"17029":2,"17030":1,"17031":1,"17032":2,"17033":2,"17034":2,"17035":1,"17036":2,"17037":2,"17038":2,"17039":2,"17040":2,"17041":1,"17042":2,"17043":1,"17044":2,"17045":2,"17046":1,"17047":2,"17048":1,"17049":1,"17050":1,"17051":2,"17052":1,"17053":2,"17054":2,"17055":2,"17056":1,"17057":1,"17058":2,"17059":2,"17060":1,"17061":1,"17062":2,"17063":1,"17064":1,"17065":1,"17066":2,"17067":1,"17068":1,"17069":1,"17070":1,"17071":1,"17072":2,"17073":1,"17074":1,"17075":2,"17076":1,"17077":2,"17078":2,"17079":1,"17080":1,"17081":2,"17082":1,"17083":1,"17084":1,"17085":2,"17086":1,"17087":1,"17088":2,"17089":1,"17090":2,"17091":1,"17092":1,"17093":1,"17094":1,"17095":2,"17096":2,"17097":2,"17098":2,"17099":1,"17100":1,"17101":2,"17102":2,"17103":1,"17104":1,"17105":1,"17106":1,"17107":1,"17108":1,"17109":1,"17110":1,"17111":1,"17112":2,"17113":1,"17114":2,"17115":1,"17116":1,"17117":2,"17118":2,"17119":1,"17120":2,"17121":2,"17122":2,"17123":1,"17124":2,"17125":2,"17126":1,"17127":2,"17128":2,"17129":2,"17130":1,"17131":1,"17132":1,"17133":1,"17134":1,"17135":2,"17136":1,"17137":1,"17138":2,"17139":2,"17140":2,"17141":1,"17142":2,"17143":1,"17144":1,"17145":2,"17146":1,"17147":1,"17148":1,"17149":1,"17150":2,"17151":1,"17152":2,"17153":2,"17154":1,"17155":2,"17156":2,"17157":2,"17158":2,"17159":1,"17160":2,"17161":2,"17162":2,"17163":2,"17164":1,"17165":2,"17166":1,"17167":1,"17168":2,"17169":1,"17170":1,"17171":2,"17172":2,"17173":2,"17174":1,"17175":2,"17176":2,"17177":1,"17178":1,"17179":2,"17180":2,"17181":2,"17182":1,"17183":1,"17184":1,"17185":1,"17186":1,"17187":2,"17188":1,"17189":2,"17190":2,"17191":2,"17192":2,"17193":1,"17194":2,"17195":1,"17196":1,"17197":1,"17198":2,"17199":1,"17200":2,"17201":1,"17202":2,"17203":2,"17204":1,"17205":2,"17206":1,"17207":2,"17208":1,"17209":1,"17210":2,"17211":1,"17212":1,"17213":2,"17214":2,"17215":2,"17216":2,"17217":1,"17218":1,"17219":2,"17220":1,"17221":2,"17222":2,"17223":2,"17224":2,"17225":2,"17226":2,"17227":1,"17228":1,"17229":1,"17230":1,"17231":2,"17232":2,"17233":2,"17234":2,"17235":2,"17236":1,"17237":1,"17238":2,"17239":1,"17240":2,"17241":1,"17242":2,"17243":1,"17244":1,"17245":2,"17246":2,"17247":2,"17248":2,"17249":2,"17250":1,"17251":1,"17252":2,"17253":1,"17254":2,"17255":2,"17256":1,"17257":2,"17258":1,"17259":1,"17260":2,"17261":1,"17262":1,"17263":1,"17264":2,"17265":2,"17266":2,"17267":1,"17268":1,"17269":2,"17270":2,"17271":2,"17272":1,"17273":2,"17274":1,"17275":1,"17276":2,"17277":2,"17278":1,"17279":1,"17280":2,"17281":2,"17282":1,"17283":2,"17284":1,"17285":1,"17286":2,"17287":1,"17288":1,"17289":2,"17290":1,"17291":2,"17292":2,"17293":1,"17294":2,"17295":1,"17296":2,"17297":1,"17298":1,"17299":2,"17300":1,"17301":2,"17302":1,"17303":1,"17304":1,"17305":2,"17306":2,"17307":1,"17308":2,"17309":1,"17310":2,"17311":1,"17312":2,"17313":1,"17314":2,"17315":1,"17316":1,"17317":1,"17318":1,"17319":2,"17320":1,"17321":1,"17322":2,"17323":1,"17324":1,"17325":2,"17326":2,"17327":1,"17328":1,"17329":1,"17330":2,"17331":1,"17332":2,"17333":1,"17334":1,"17335":1,"17336":1,"17337":1,"17338":2,"17339":1,"17340":2,"17341":1,"17342":2,"17343":1,"17344":2,"17345":2,"17346":1,"17347":1,"17348":2,"17349":2,"17350":1,"17351":1,"17352":1,"17353":1,"17354":2,"17355":1,"17356":2,"17357":1,"17358":1,"17359":1,"17360":2,"17361":1,"17362":1,"17363":2,"17364":1,"17365":1,"17366":1,"17367":2,"17368":1,"17369":2,"17370":1,"17371":2,"17372":2,"17373":2,"17374":2,"17375":1,"17376":2,"17377":1,"17378":1,"17379":1,"17380":2,"17381":2,"17382":1,"17383":2,"17384":1,"17385":1,"17386":1,"17387":1,"17388":2,"17389":2,"17390":2,"17391":2,"17392":2,"17393":1,"17394":2,"17395":1,"17396":2,"17397":2,"17398":1,"17399":2,"17400":1,"17401":2,"17402":1,"17403":1,"17404":2,"17405":2,"17406":2,"17407":2,"17408":2,"17409":2,"17410":1,"17411":2,"17412":2,"17413":2,"17414":2,"17415":2,"17416":1,"17417":1,"17418":2,"17419":1,"17420":1,"17421":2,"17422":2,"17423":1,"17424":2,"17425":2,"17426":1,"17427":1,"17428":2,"17429":1,"17430":2,"17431":2,"17432":2,"17433":2,"17434":1,"17435":2,"17436":2,"17437":1,"17438":2,"17439":2,"17440":2,"17441":2,"17442":2,"17443":1,"17444":2,"17445":2,"17446":1,"17447":2,"17448":1,"17449":2,"17450":1,"17451":2,"17452":1,"17453":1,"17454":1,"17455":2,"17456":2,"17457":1,"17458":2,"17459":1,"17460":1,"17461":1,"17462":1,"17463":1,"17464":1,"17465":2,"17466":2,"17467":1,"17468":2,"17469":1,"17470":2,"17471":2,"17472":2,"17473":2,"17474":1,"17475":2,"17476":1,"17477":2,"17478":1,"17479":1,"17480":2,"17481":2,"17482":1,"17483":1,"17484":1,"17485":1,"17486":2,"17487":1,"17488":1,"17489":2,"17490":2,"17491":1,"17492":1,"17493":1,"17494":2,"17495":1,"17496":1,"17497":1,"17498":2,"17499":2,"17500":2,"17501":1,"17502":2,"17503":2,"17504":1,"17505":2,"17506":2,"17507":1,"17508":1,"17509":2,"17510":1,"17511":2,"17512":1,"17513":2,"17514":1,"17515":1,"17516":1,"17517":2,"17518":1,"17519":1,"17520":1,"17521":1,"17522":2,"17523":2,"17524":1,"17525":1,"17526":2,"17527":2,"17528":1,"17529":2,"17530":1,"17531":1,"17532":1,"17533":1,"17534":2,"17535":2,"17536":2,"17537":2,"17538":1,"17539":1,"17540":2,"17541":1,"17542":2,"17543":2,"17544":2,"17545":1,"17546":1,"17547":1,"17548":2,"17549":2,"17550":2,"17551":2,"17552":1,"17553":2,"17554":1,"17555":2,"17556":2,"17557":1,"17558":2,"17559":2,"17560":2,"17561":2,"17562":2,"17563":1,"17564":1,"17565":1,"17566":2,"17567":2,"17568":2,"17569":2,"17570":2,"17571":2,"17572":2,"17573":1,"17574":2,"17575":2,"17576":2,"17577":2,"17578":1,"17579":1,"17580":1,"17581":1,"17582":1,"17583":2,"17584":1,"17585":2,"17586":2,"17587":1,"17588":1,"17589":2,"17590":1,"17591":2,"17592":1,"17593":2,"17594":1,"17595":2,"17596":1,"17597":2,"17598":1,"17599":1,"17600":1,"17601":2,"17602":2,"17603":1,"17604":1,"17605":1,"17606":2,"17607":1,"17608":2,"17609":2,"17610":2,"17611":1,"17612":2,"17613":2,"17614":1,"17615":1,"17616":1,"17617":1,"17618":1,"17619":2,"17620":2,"17621":2,"17622":1,"17623":1,"17624":2,"17625":2,"17626":1,"17627":2,"17628":2,"17629":1,"17630":1,"17631":2,"17632":2,"17633":1,"17634":1,"17635":1,"17636":2,"17637":1,"17638":2,"17639":2,"17640":1,"17641":2,"17642":1,"17643":1,"17644":2,"17645":1,"17646":1,"17647":2,"17648":2,"17649":2,"17650":1,"17651":2,"17652":2,"17653":2,"17654":2,"17655":1,"17656":2,"17657":2,"17658":2,"17659":2,"17660":2,"17661":1,"17662":1,"17663":2,"17664":2,"17665":2,"17666":1,"17667":2,"17668":2,"17669":1,"17670":1,"17671":1,"17672":2,"17673":1,"17674":2,"17675":2,"17676":2,"17677":2,"17678":1,"17679":2,"17680":2,"17681":1,"17682":2,"17683":2,"17684":2,"17685":2,"17686":2,"17687":2,"17688":2,"17689":2,"17690":1,"17691":2,"17692":1,"17693":2,"17694":2,"17695":2,"17696":1,"17697":1,"17698":1,"17699":2,"17700":2,"17701":2,"17702":1,"17703":2,"17704":2,"17705":2,"17706":2,"17707":2,"17708":1,"17709":1,"17710":2,"17711":1,"17712":2,"17713":2,"17714":1,"17715":2,"17716":2,"17717":1,"17718":2,"17719":1,"17720":2,"17721":2,"17722":1,"17723":1,"17724":1,"17725":2,"17726":1,"17727":1,"17728":1,"17729":2,"17730":2,"17731":2,"17732":2,"17733":1,"17734":2,"17735":1,"17736":1,"17737":1,"17738":1,"17739":2,"17740":1,"17741":2,"17742":1,"17743":2,"17744":2,"17745":2,"17746":2,"17747":2,"17748":2,"17749":1,"17750":2,"17751":1,"17752":1,"17753":1,"17754":1,"17755":1,"17756":2,"17757":2,"17758":2,"17759":2,"17760":2,"17761":2,"17762":1,"17763":2,"17764":1,"17765":2,"17766":2,"17767":1,"17768":2,"17769":1,"17770":2,"17771":2,"17772":2,"17773":2,"17774":2,"17775":2,"17776":2,"17777":2,"17778":1,"17779":1,"17780":2,"17781":1,"17782":2,"17783":2,"17784":2,"17785":2,"17786":1,"17787":2,"17788":2,"17789":1,"17790":2,"17791":1,"17792":2,"17793":2,"17794":1,"17795":2,"17796":1,"17797":1,"17798":1,"17799":1,"17800":1,"17801":2,"17802":2,"17803":2,"17804":2,"17805":1,"17806":2,"17807":1,"17808":2,"17809":1,"17810":2,"17811":2,"17812":2,"17813":1,"17814":2,"17815":1,"17816":2,"17817":1,"17818":1,"17819":2,"17820":1,"17821":1,"17822":1,"17823":2,"17824":2,"17825":2,"17826":1,"17827":2,"17828":1,"17829":2,"17830":2,"17831":2,"17832":2,"17833":1,"17834":1,"17835":1,"17836":2,"17837":1,"17838":2,"17839":2,"17840":2,"17841":2,"17842":2,"17843":1,"17844":1,"17845":1,"17846":1,"17847":2,"17848":1,"17849":1,"17850":1,"17851":1,"17852":2,"17853":2,"17854":1,"17855":1,"17856":2,"17857":2,"17858":1,"17859":1,"17860":2,"17861":2,"17862":2,"17863":2,"17864":2,"17865":1,"17866":1,"17867":2,"17868":2,"17869":2,"17870":2,"17871":2,"17872":2,"17873":2,"17874":1,"17875":1,"17876":2,"17877":2,"17878":2,"17879":2,"17880":2,"17881":1,"17882":2,"17883":2,"17884":2,"17885":1,"17886":1,"17887":2,"17888":1,"17889":1,"17890":1,"17891":1,"17892":1,"17893":1,"17894":2,"17895":2,"17896":1,"17897":1,"17898":1,"17899":2,"17900":1,"17901":2,"17902":2,"17903":1,"17904":1,"17905":2,"17906":1,"17907":1,"17908":1,"17909":1,"17910":2,"17911":1,"17912":2,"17913":2,"17914":1,"17915":2,"17916":2,"17917":1,"17918":2,"17919":2,"17920":1,"17921":2,"17922":1,"17923":1,"17924":2,"17925":1,"17926":1,"17927":1,"17928":1,"17929":2,"17930":2,"17931":1,"17932":2,"17933":1,"17934":1,"17935":1,"17936":1,"17937":2,"17938":2,"17939":2,"17940":2,"17941":2,"17942":2,"17943":1,"17944":2,"17945":2,"17946":1,"17947":2,"17948":1,"17949":1,"17950":1,"17951":2,"17952":2,"17953":2,"17954":1,"17955":1,"17956":1,"17957":2,"17958":1,"17959":2,"17960":1,"17961":1,"17962":2,"17963":1,"17964":1,"17965":1,"17966":1,"17967":1,"17968":1,"17969":2,"17970":2,"17971":2,"17972":2,"17973":2,"17974":1,"17975":1,"17976":1,"17977":2,"17978":2,"17979":2,"17980":2,"17981":2,"17982":2,"17983":2,"17984":1,"17985":2,"17986":1,"17987":1,"17988":2,"17989":2,"17990":1,"17991":1,"17992":2,"17993":1,"17994":1,"17995":2,"17996":2,"17997":1,"17998":1,"17999":2,"18000":1,"18001":2,"18002":1,"18003":1,"18004":2,"18005":2,"18006":1,"18007":1,"18008":2,"18009":1,"18010":1,"18011":1,"18012":1,"18013":1,"18014":2,"18015":1,"18016":1,"18017":1,"18018":1,"18019":1,"18020":1,"18021":1,"18022":1,"18023":1,"18024":1,"18025":2,"18026":2,"18027":1,"18028":2,"18029":2,"18030":2,"18031":2,"18032":1,"18033":1,"18034":1,"18035":2,"18036":1,"18037":1,"18038":2,"18039":1,"18040":2,"18041":2,"18042":1,"18043":2,"18044":2,"18045":1,"18046":2,"18047":2,"18048":1,"18049":1,"18050":2,"18051":2,"18052":2,"18053":1,"18054":2,"18055":2,"18056":2,"18057":1,"18058":1,"18059":1,"18060":1,"18061":2,"18062":1,"18063":2,"18064":1,"18065":1,"18066":1,"18067":2,"18068":2,"18069":2,"18070":1,"18071":1,"18072":2,"18073":2,"18074":1,"18075":1,"18076":1,"18077":2,"18078":2,"18079":1,"18080":1,"18081":2,"18082":2,"18083":1,"18084":1,"18085":1,"18086":2,"18087":1,"18088":2,"18089":2,"18090":2,"18091":2,"18092":1,"18093":2,"18094":2,"18095":1,"18096":2,"18097":1,"18098":2,"18099":1,"18100":1,"18101":1,"18102":1,"18103":1,"18104":1,"18105":2,"18106":2,"18107":2,"18108":2,"18109":2,"18110":1,"18111":2,"18112":2,"18113":2,"18114":1,"18115":1,"18116":1,"18117":1,"18118":2,"18119":1,"18120":2,"18121":1,"18122":2,"18123":2,"18124":1,"18125":2,"18126":1,"18127":2,"18128":2,"18129":1,"18130":2,"18131":2,"18132":1,"18133":1,"18134":1,"18135":1,"18136":1,"18137":1,"18138":2,"18139":1,"18140":1,"18141":1,"18142":1,"18143":2,"18144":1,"18145":1,"18146":2,"18147":1,"18148":2,"18149":2,"18150":1,"18151":1,"18152":2,"18153":1,"18154":2,"18155":1,"18156":2,"18157":1,"18158":1,"18159":2,"18160":1,"18161":1,"18162":1,"18163":2,"18164":1,"18165":1,"18166":1,"18167":1,"18168":1,"18169":2,"18170":2,"18171":1,"18172":1,"18173":1,"18174":1,"18175":1,"18176":1,"18177":2,"18178":1,"18179":2,"18180":2,"18181":1,"18182":1,"18183":2,"18184":2,"18185":2,"18186":2,"18187":1,"18188":1,"18189":1,"18190":1,"18191":1,"18192":1,"18193":1,"18194":1,"18195":2,"18196":2,"18197":2,"18198":1,"18199":1,"18200":1,"18201":1,"18202":1,"18203":2,"18204":1,"18205":2,"18206":1,"18207":1,"18208":2,"18209":2,"18210":2,"18211":2,"18212":1,"18213":2,"18214":1,"18215":1,"18216":1,"18217":2,"18218":1,"18219":2,"18220":1,"18221":1,"18222":2,"18223":2,"18224":1,"18225":2,"18226":1,"18227":1,"18228":2,"18229":2,"18230":1,"18231":2,"18232":2,"18233":2,"18234":2,"18235":1,"18236":2,"18237":2,"18238":2,"18239":1,"18240":1,"18241":2,"18242":1,"18243":1,"18244":1,"18245":2,"18246":1,"18247":2,"18248":2,"18249":1,"18250":2,"18251":1,"18252":2,"18253":2,"18254":1,"18255":1,"18256":1,"18257":1,"18258":2,"18259":1,"18260":2,"18261":2,"18262":2,"18263":1,"18264":1,"18265":1,"18266":1,"18267":2,"18268":2,"18269":2,"18270":1,"18271":2,"18272":1,"18273":1,"18274":1,"18275":1,"18276":1,"18277":2,"18278":1,"18279":2,"18280":2,"18281":2,"18282":1,"18283":2,"18284":2,"18285":2,"18286":1,"18287":1,"18288":1,"18289":1,"18290":2,"18291":1,"18292":1,"18293":1,"18294":2,"18295":2,"18296":1,"18297":1,"18298":2,"18299":2,"18300":2,"18301":2,"18302":2,"18303":1,"18304":2,"18305":1,"18306":1,"18307":2,"18308":1,"18309":1,"18310":1,"18311":2,"18312":2,"18313":1,"18314":2,"18315":2,"18316":1,"18317":1,"18318":1,"18319":1,"18320":1,"18321":2,"18322":2,"18323":2,"18324":1,"18325":1,"18326":2,"18327":2,"18328":2,"18329":1,"18330":1,"18331":1,"18332":2,"18333":1,"18334":2,"18335":1,"18336":1,"18337":2,"18338":2,"18339":1,"18340":2,"18341":2,"18342":1,"18343":1,"18344":1,"18345":2,"18346":2,"18347":1,"18348":2,"18349":2,"18350":1,"18351":2,"18352":2,"18353":1,"18354":1,"18355":2,"18356":2,"18357":1,"18358":2,"18359":2,"18360":2,"18361":2,"18362":1,"18363":1,"18364":2,"18365":1,"18366":2,"18367":2,"18368":1,"18369":2,"18370":2,"18371":1,"18372":1,"18373":2,"18374":1,"18375":1,"18376":2,"18377":1,"18378":2,"18379":2,"18380":1,"18381":2,"18382":1,"18383":1,"18384":1,"18385":2,"18386":2,"18387":1,"18388":2,"18389":1,"18390":2,"18391":2,"18392":2,"18393":2,"18394":1,"18395":1,"18396":2,"18397":2,"18398":2,"18399":1,"18400":1,"18401":2,"18402":2,"18403":2,"18404":1,"18405":1,"18406":2,"18407":1,"18408":1,"18409":1,"18410":2,"18411":2,"18412":2,"18413":2,"18414":1,"18415":1,"18416":1,"18417":1,"18418":1,"18419":1,"18420":2,"18421":1,"18422":1,"18423":1,"18424":2,"18425":1,"18426":1,"18427":1,"18428":2,"18429":1,"18430":2,"18431":2,"18432":1,"18433":2,"18434":2,"18435":2,"18436":1,"18437":2,"18438":2,"18439":2,"18440":1,"18441":1,"18442":1,"18443":2,"18444":1,"18445":1,"18446":2,"18447":1,"18448":1,"18449":2,"18450":2,"18451":2,"18452":1,"18453":1,"18454":1,"18455":1,"18456":1,"18457":1,"18458":1,"18459":2,"18460":2,"18461":1,"18462":2,"18463":1,"18464":2,"18465":1,"18466":1,"18467":2,"18468":2,"18469":2,"18470":2,"18471":2,"18472":2,"18473":2,"18474":2,"18475":2,"18476":1,"18477":2,"18478":1,"18479":2,"18480":1,"18481":2,"18482":2,"18483":1,"18484":1,"18485":2,"18486":1,"18487":1,"18488":2,"18489":1,"18490":2,"18491":2,"18492":1,"18493":1,"18494":1,"18495":1,"18496":2,"18497":2,"18498":2,"18499":1,"18500":2,"18501":2,"18502":1,"18503":1,"18504":1,"18505":1,"18506":2,"18507":2,"18508":2,"18509":2,"18510":1,"18511":2,"18512":2,"18513":1,"18514":1,"18515":1,"18516":1,"18517":1,"18518":2,"18519":2,"18520":2,"18521":2,"18522":1,"18523":1,"18524":1,"18525":2,"18526":2,"18527":1,"18528":1,"18529":2,"18530":2,"18531":1,"18532":1,"18533":1,"18534":1,"18535":2,"18536":2,"18537":1,"18538":2,"18539":1,"18540":1,"18541":1,"18542":1,"18543":1,"18544":2,"18545":1,"18546":2,"18547":2,"18548":2,"18549":2,"18550":1,"18551":1,"18552":2,"18553":2,"18554":1,"18555":2,"18556":1,"18557":2,"18558":2,"18559":2,"18560":2,"18561":1,"18562":2,"18563":1,"18564":2,"18565":1,"18566":2,"18567":1,"18568":2,"18569":2,"18570":1,"18571":2,"18572":2,"18573":1,"18574":2,"18575":2,"18576":2,"18577":1,"18578":2,"18579":1,"18580":1,"18581":1,"18582":2,"18583":2,"18584":1,"18585":2,"18586":2,"18587":2,"18588":2,"18589":1,"18590":2,"18591":2,"18592":2,"18593":2,"18594":1,"18595":2,"18596":1,"18597":2,"18598":1,"18599":1,"18600":2,"18601":1,"18602":1,"18603":1,"18604":1,"18605":2,"18606":1,"18607":1,"18608":2,"18609":2,"18610":2,"18611":2,"18612":1,"18613":2,"18614":2,"18615":1,"18616":2,"18617":2,"18618":1,"18619":1,"18620":1,"18621":2,"18622":2,"18623":1,"18624":2,"18625":2,"18626":1,"18627":1,"18628":1,"18629":2,"18630":1,"18631":2,"18632":2,"18633":2,"18634":1,"18635":2,"18636":1,"18637":1,"18638":2,"18639":2,"18640":1,"18641":2,"18642":2,"18643":1,"18644":2,"18645":2,"18646":2,"18647":2,"18648":1,"18649":2,"18650":2,"18651":1,"18652":2,"18653":2,"18654":1,"18655":1,"18656":1,"18657":1,"18658":1,"18659":2,"18660":2,"18661":1,"18662":2,"18663":1,"18664":2,"18665":2,"18666":2,"18667":1,"18668":2,"18669":2,"18670":2,"18671":1,"18672":2,"18673":2,"18674":1,"18675":1,"18676":1,"18677":1,"18678":1,"18679":1,"18680":2,"18681":2,"18682":2,"18683":2,"18684":1,"18685":1,"18686":2,"18687":1,"18688":1,"18689":1,"18690":1,"18691":2,"18692":2,"18693":2,"18694":2,"18695":1,"18696":1,"18697":1,"18698":2,"18699":2,"18700":1,"18701":2,"18702":2,"18703":2,"18704":2,"18705":2,"18706":1,"18707":2,"18708":1,"18709":2,"18710":2,"18711":1,"18712":1,"18713":2,"18714":1,"18715":1,"18716":1,"18717":1,"18718":2,"18719":1,"18720":1,"18721":2,"18722":1,"18723":1,"18724":2,"18725":1,"18726":1,"18727":1,"18728":1,"18729":2,"18730":2,"18731":1,"18732":2,"18733":2,"18734":1,"18735":1,"18736":1,"18737":1,"18738":2,"18739":2,"18740":1,"18741":1,"18742":1,"18743":1,"18744":2,"18745":1,"18746":2,"18747":1,"18748":2,"18749":2,"18750":1,"18751":2,"18752":2,"18753":2,"18754":1,"18755":1,"18756":2,"18757":2,"18758":1,"18759":2,"18760":1,"18761":2,"18762":2,"18763":2,"18764":2,"18765":1,"18766":2,"18767":2,"18768":2,"18769":2,"18770":1,"18771":2,"18772":2,"18773":1,"18774":2,"18775":2,"18776":1,"18777":2,"18778":1,"18779":2,"18780":1,"18781":2,"18782":1,"18783":2,"18784":2,"18785":1,"18786":2,"18787":1,"18788":2,"18789":1,"18790":1,"18791":2,"18792":1,"18793":2,"18794":1,"18795":1,"18796":1,"18797":1,"18798":1,"18799":2,"18800":1,"18801":1,"18802":2,"18803":2,"18804":2,"18805":1,"18806":1,"18807":2,"18808":2,"18809":2,"18810":1,"18811":1,"18812":2,"18813":1,"18814":1,"18815":1,"18816":2,"18817":1,"18818":2,"18819":1,"18820":2,"18821":1,"18822":1,"18823":2,"18824":2,"18825":1,"18826":2,"18827":1,"18828":2,"18829":2,"18830":1,"18831":1,"18832":1,"18833":2,"18834":2,"18835":2,"18836":2,"18837":2,"18838":1,"18839":2,"18840":2,"18841":1,"18842":1,"18843":2,"18844":2,"18845":2,"18846":2,"18847":2,"18848":2,"18849":2,"18850":1,"18851":2,"18852":1,"18853":1,"18854":2,"18855":1,"18856":2,"18857":1,"18858":2,"18859":1,"18860":2,"18861":1,"18862":2,"18863":2,"18864":1,"18865":1,"18866":2,"18867":1,"18868":1,"18869":2,"18870":1,"18871":2,"18872":2,"18873":2,"18874":1,"18875":1,"18876":2,"18877":1,"18878":1,"18879":2,"18880":1,"18881":1,"18882":2,"18883":2,"18884":1,"18885":1,"18886":1,"18887":2,"18888":2,"18889":2,"18890":1,"18891":2,"18892":1,"18893":2,"18894":1,"18895":2,"18896":2,"18897":1,"18898":2,"18899":1,"18900":2,"18901":2,"18902":1,"18903":2,"18904":1,"18905":1,"18906":1,"18907":1,"18908":2,"18909":2,"18910":2,"18911":2,"18912":1,"18913":2,"18914":1,"18915":1,"18916":2,"18917":2,"18918":2,"18919":1,"18920":2,"18921":2,"18922":1,"18923":2,"18924":1,"18925":2,"18926":1,"18927":1,"18928":1,"18929":1,"18930":2,"18931":1,"18932":1,"18933":2,"18934":1,"18935":2,"18936":2,"18937":2,"18938":1,"18939":1,"18940":2,"18941":2,"18942":1,"18943":2,"18944":2,"18945":1,"18946":1,"18947":2,"18948":1,"18949":1,"18950":1,"18951":2,"18952":2,"18953":1,"18954":2,"18955":1,"18956":2,"18957":1,"18958":2,"18959":1,"18960":2,"18961":1,"18962":2,"18963":1,"18964":2,"18965":2,"18966":2,"18967":1,"18968":1,"18969":1,"18970":2,"18971":2,"18972":2,"18973":1,"18974":1,"18975":2,"18976":2,"18977":1,"18978":1,"18979":2,"18980":2,"18981":1,"18982":1,"18983":1,"18984":2,"18985":1,"18986":1,"18987":1,"18988":2,"18989":1,"18990":1,"18991":1,"18992":1,"18993":1,"18994":2,"18995":1,"18996":1,"18997":1,"18998":1,"18999":1,"19000":2,"19001":1,"19002":1,"19003":1,"19004":1,"19005":2,"19006":1,"19007":1,"19008":1,"19009":2,"19010":2,"19011":2,"19012":2,"19013":2,"19014":2,"19015":2,"19016":2,"19017":2,"19018":2,"19019":1,"19020":1,"19021":2,"19022":2,"19023":1,"19024":2,"19025":2,"19026":1,"19027":2,"19028":1,"19029":1,"19030":1,"19031":1,"19032":1,"19033":1,"19034":1,"19035":1,"19036":1,"19037":1,"19038":2,"19039":2,"19040":1,"19041":2,"19042":2,"19043":1,"19044":2,"19045":1,"19046":2,"19047":2,"19048":2,"19049":2,"19050":2,"19051":1,"19052":2,"19053":1,"19054":2,"19055":1,"19056":2,"19057":1,"19058":1,"19059":1,"19060":2,"19061":1,"19062":2,"19063":1,"19064":1,"19065":1,"19066":1,"19067":2,"19068":1,"19069":1,"19070":2,"19071":2,"19072":2,"19073":2,"19074":1,"19075":2,"19076":2,"19077":1,"19078":1,"19079":2,"19080":1,"19081":1,"19082":1,"19083":1,"19084":1,"19085":2,"19086":2,"19087":2,"19088":2,"19089":2,"19090":2,"19091":1,"19092":2,"19093":2,"19094":2,"19095":2,"19096":2,"19097":2,"19098":1,"19099":2,"19100":1,"19101":2,"19102":2,"19103":1,"19104":1,"19105":2,"19106":1,"19107":2,"19108":2,"19109":1,"19110":1,"19111":2,"19112":2,"19113":2,"19114":1,"19115":2,"19116":1,"19117":2,"19118":1,"19119":1,"19120":2,"19121":2,"19122":1,"19123":1,"19124":2,"19125":2,"19126":2,"19127":1,"19128":1,"19129":2,"19130":2,"19131":1,"19132":1,"19133":1,"19134":2,"19135":2,"19136":2,"19137":2,"19138":2,"19139":1,"19140":1,"19141":2,"19142":2,"19143":2,"19144":2,"19145":1,"19146":2,"19147":2,"19148":2,"19149":1,"19150":2,"19151":1,"19152":1,"19153":2,"19154":1,"19155":2,"19156":1,"19157":2,"19158":2,"19159":1,"19160":1,"19161":2,"19162":2,"19163":1,"19164":2,"19165":1,"19166":1,"19167":1,"19168":1,"19169":1,"19170":2,"19171":2,"19172":1,"19173":2,"19174":1,"19175":2,"19176":2,"19177":2,"19178":1,"19179":2,"19180":2,"19181":2,"19182":2,"19183":2,"19184":1,"19185":1,"19186":1,"19187":2,"19188":1,"19189":2,"19190":1,"19191":1,"19192":2,"19193":2,"19194":1,"19195":1,"19196":2,"19197":1,"19198":2,"19199":2,"19200":2,"19201":2,"19202":1,"19203":2,"19204":1,"19205":2,"19206":1,"19207":1,"19208":1,"19209":1,"19210":1,"19211":2,"19212":2,"19213":1,"19214":2,"19215":2,"19216":2,"19217":1,"19218":1,"19219":1,"19220":1,"19221":2,"19222":2,"19223":2,"19224":1,"19225":1,"19226":1,"19227":2,"19228":1,"19229":2,"19230":1,"19231":1,"19232":1,"19233":2,"19234":2,"19235":2,"19236":2,"19237":1,"19238":2,"19239":2,"19240":1,"19241":2,"19242":1,"19243":2,"19244":2,"19245":2,"19246":1,"19247":2,"19248":1,"19249":2,"19250":2,"19251":1,"19252":2,"19253":1,"19254":1,"19255":2,"19256":2,"19257":2,"19258":2,"19259":1,"19260":1,"19261":2,"19262":2,"19263":1,"19264":1,"19265":2,"19266":2,"19267":1,"19268":2,"19269":2,"19270":1,"19271":1,"19272":2,"19273":2,"19274":1,"19275":2,"19276":1,"19277":2,"19278":2,"19279":2,"19280":2,"19281":1,"19282":2,"19283":1,"19284":2,"19285":1,"19286":2,"19287":2,"19288":1,"19289":1,"19290":1,"19291":2,"19292":1,"19293":1,"19294":2,"19295":1,"19296":1,"19297":2,"19298":2,"19299":1,"19300":2,"19301":1,"19302":1,"19303":1,"19304":2,"19305":1,"19306":1,"19307":2,"19308":1,"19309":1,"19310":1,"19311":1,"19312":2,"19313":2,"19314":1,"19315":2,"19316":2,"19317":1,"19318":2,"19319":2,"19320":2,"19321":2,"19322":1,"19323":2,"19324":1,"19325":1,"19326":2,"19327":2,"19328":1,"19329":1,"19330":1,"19331":1,"19332":2,"19333":2,"19334":1,"19335":1,"19336":1,"19337":2,"19338":2,"19339":1,"19340":2,"19341":2,"19342":1,"19343":2,"19344":1,"19345":1,"19346":1,"19347":1,"19348":2,"19349":2,"19350":2,"19351":2,"19352":1,"19353":1,"19354":2,"19355":1,"19356":1,"19357":2,"19358":1,"19359":2,"19360":2,"19361":1,"19362":1,"19363":1,"19364":2,"19365":1,"19366":2,"19367":2,"19368":1,"19369":2,"19370":1,"19371":2,"19372":2,"19373":2,"19374":1,"19375":1,"19376":1,"19377":1,"19378":2,"19379":1,"19380":1,"19381":1,"19382":1,"19383":2,"19384":2,"19385":1,"19386":1,"19387":2,"19388":1,"19389":1,"19390":1,"19391":1,"19392":1,"19393":2,"19394":1,"19395":1,"19396":2,"19397":1,"19398":1,"19399":1,"19400":2,"19401":2,"19402":2,"19403":1,"19404":2,"19405":1,"19406":2,"19407":2,"19408":1,"19409":1,"19410":2,"19411":2,"19412":2,"19413":1,"19414":1,"19415":2,"19416":2,"19417":2,"19418":1,"19419":2,"19420":1,"19421":2,"19422":2,"19423":2,"19424":2,"19425":1,"19426":1,"19427":1,"19428":2,"19429":2,"19430":2,"19431":2,"19432":2,"19433":1,"19434":1,"19435":1,"19436":2,"19437":2,"19438":2,"19439":2,"19440":2,"19441":1,"19442":1,"19443":2,"19444":2,"19445":1,"19446":1,"19447":1,"19448":2,"19449":1,"19450":1,"19451":1,"19452":1,"19453":1,"19454":1,"19455":1,"19456":2,"19457":2,"19458":2,"19459":2,"19460":1,"19461":1,"19462":1,"19463":2,"19464":2,"19465":1,"19466":1,"19467":2,"19468":2,"19469":2,"19470":2,"19471":2,"19472":1,"19473":2,"19474":1,"19475":1,"19476":1,"19477":2,"19478":1,"19479":1,"19480":2,"19481":1,"19482":2,"19483":1,"19484":1,"19485":1,"19486":1,"19487":1,"19488":1,"19489":1,"19490":2,"19491":1,"19492":2,"19493":2,"19494":1,"19495":2,"19496":1,"19497":1,"19498":2,"19499":2,"19500":2,"19501":1,"19502":1,"19503":1,"19504":2,"19505":1,"19506":2,"19507":1,"19508":1,"19509":1,"19510":2,"19511":1,"19512":2,"19513":1,"19514":1,"19515":2,"19516":2,"19517":1,"19518":2,"19519":1,"19520":2,"19521":2,"19522":2,"19523":2,"19524":2,"19525":2,"19526":1,"19527":2,"19528":2,"19529":2,"19530":2,"19531":1,"19532":2,"19533":2,"19534":1,"19535":1,"19536":1,"19537":1,"19538":2,"19539":1,"19540":1,"19541":1,"19542":2,"19543":2,"19544":2,"19545":1,"19546":1,"19547":1,"19548":2,"19549":1,"19550":1,"19551":2,"19552":2,"19553":1,"19554":2,"19555":1,"19556":1,"19557":2,"19558":2,"19559":1,"19560":1,"19561":1,"19562":1,"19563":2,"19564":1,"19565":2,"19566":1,"19567":2,"19568":1,"19569":1,"19570":1,"19571":2,"19572":1,"19573":1,"19574":1,"19575":2,"19576":1,"19577":1,"19578":2,"19579":2,"19580":1,"19581":2,"19582":1,"19583":1,"19584":2,"19585":2,"19586":2,"19587":2,"19588":1,"19589":1,"19590":1,"19591":1,"19592":1,"19593":1,"19594":1,"19595":2,"19596":1,"19597":1,"19598":1,"19599":2,"19600":2,"19601":1,"19602":1,"19603":2,"19604":1,"19605":1,"19606":2,"19607":2,"19608":2,"19609":1,"19610":1,"19611":1,"19612":1,"19613":1,"19614":1,"19615":2,"19616":1,"19617":1,"19618":1,"19619":2,"19620":1,"19621":2,"19622":2,"19623":2,"19624":1,"19625":1,"19626":2,"19627":2,"19628":2,"19629":1,"19630":1,"19631":1,"19632":1,"19633":2,"19634":1,"19635":1,"19636":1,"19637":2,"19638":1,"19639":1,"19640":2,"19641":2,"19642":1,"19643":2,"19644":2,"19645":1,"19646":1,"19647":2,"19648":1,"19649":2,"19650":1,"19651":1,"19652":1,"19653":2,"19654":1,"19655":1,"19656":1,"19657":1,"19658":2,"19659":1,"19660":1,"19661":2,"19662":2,"19663":1,"19664":1,"19665":2,"19666":2,"19667":2,"19668":2,"19669":1,"19670":2,"19671":2,"19672":1,"19673":2,"19674":2,"19675":2,"19676":2,"19677":2,"19678":1,"19679":1,"19680":2,"19681":1,"19682":1,"19683":1,"19684":2,"19685":2,"19686":1,"19687":1,"19688":1,"19689":2,"19690":1,"19691":1,"19692":2,"19693":2,"19694":1,"19695":2,"19696":1,"19697":1,"19698":1,"19699":1,"19700":1,"19701":1,"19702":2,"19703":2,"19704":1,"19705":2,"19706":2,"19707":2,"19708":2,"19709":1,"19710":2,"19711":2,"19712":2,"19713":1,"19714":1,"19715":1,"19716":2,"19717":2,"19718":1,"19719":1,"19720":1,"19721":1,"19722":1,"19723":1,"19724":1,"19725":2,"19726":2,"19727":1,"19728":2,"19729":1,"19730":1,"19731":2,"19732":1,"19733":2,"19734":2,"19735":2,"19736":1,"19737":2,"19738":1,"19739":1,"19740":2,"19741":1,"19742":2,"19743":2,"19744":2,"19745":2,"19746":2,"19747":2,"19748":2,"19749":1,"19750":2,"19751":2,"19752":2,"19753":2,"19754":1,"19755":1,"19756":2,"19757":2,"19758":2,"19759":2,"19760":1,"19761":1,"19762":1,"19763":2,"19764":1,"19765":2,"19766":2,"19767":2,"19768":1,"19769":2,"19770":1,"19771":2,"19772":1,"19773":1,"19774":1,"19775":1,"19776":1,"19777":1,"19778":2,"19779":2,"19780":2,"19781":1,"19782":2,"19783":2,"19784":1,"19785":2,"19786":2,"19787":2,"19788":2,"19789":2,"19790":2,"19791":2,"19792":2,"19793":1,"19794":2,"19795":1,"19796":1,"19797":1,"19798":2,"19799":2,"19800":1,"19801":1,"19802":1,"19803":2,"19804":1,"19805":2,"19806":1,"19807":1,"19808":1,"19809":2,"19810":2,"19811":2,"19812":1,"19813":1,"19814":2,"19815":2,"19816":2,"19817":1,"19818":1,"19819":2,"19820":1,"19821":1,"19822":1,"19823":1,"19824":2,"19825":2,"19826":2,"19827":2,"19828":1,"19829":2,"19830":2,"19831":2,"19832":2,"19833":2,"19834":1,"19835":2,"19836":1,"19837":1,"19838":2,"19839":2,"19840":1,"19841":1,"19842":1,"19843":2,"19844":2,"19845":2,"19846":1,"19847":1,"19848":2,"19849":1,"19850":2,"19851":2,"19852":1,"19853":1,"19854":1,"19855":1,"19856":2,"19857":1,"19858":1,"19859":2,"19860":1,"19861":2,"19862":2,"19863":1,"19864":1,"19865":1,"19866":1,"19867":2,"19868":1,"19869":1,"19870":1,"19871":2,"19872":2,"19873":2,"19874":1,"19875":1,"19876":2,"19877":2,"19878":2,"19879":1,"19880":2,"19881":2,"19882":1,"19883":2,"19884":1,"19885":1,"19886":1,"19887":2,"19888":1,"19889":1,"19890":1,"19891":1,"19892":1,"19893":1,"19894":1,"19895":1,"19896":2,"19897":1,"19898":2,"19899":1,"19900":1,"19901":2,"19902":2,"19903":1,"19904":1,"19905":2,"19906":2,"19907":2,"19908":1,"19909":2,"19910":2,"19911":1,"19912":1,"19913":2,"19914":1,"19915":2,"19916":2,"19917":2,"19918":1,"19919":2,"19920":1,"19921":1,"19922":1,"19923":2,"19924":1,"19925":2,"19926":1,"19927":2,"19928":2,"19929":2,"19930":1,"19931":1,"19932":1,"19933":2,"19934":2,"19935":2,"19936":1,"19937":1,"19938":2,"19939":1,"19940":1,"19941":1,"19942":2,"19943":2,"19944":1,"19945":1,"19946":2,"19947":1,"19948":1,"19949":1,"19950":2,"19951":2,"19952":1,"19953":2,"19954":2,"19955":1,"19956":1,"19957":1,"19958":2,"19959":2,"19960":2,"19961":2,"19962":2,"19963":1,"19964":2,"19965":1,"19966":2,"19967":2,"19968":2,"19969":2,"19970":2,"19971":1,"19972":2,"19973":2,"19974":1,"19975":1,"19976":1,"19977":2,"19978":1,"19979":1,"19980":1,"19981":2,"19982":1,"19983":2,"19984":2,"19985":2,"19986":2,"19987":2,"19988":2,"19989":1,"19990":1,"19991":2,"19992":1,"19993":2,"19994":2,"19995":2,"19996":1,"19997":1,"19998":1,"19999":2,"20000":2,"20001":2,"20002":1,"20003":2,"20004":2,"20005":1,"20006":1,"20007":1,"20008":1,"20009":2,"20010":1,"20011":1,"20012":2,"20013":2,"20014":1,"20015":2,"20016":1,"20017":1,"20018":1,"20019":1,"20020":1,"20021":2,"20022":1,"20023":1,"20024":1,"20025":1,"20026":1,"20027":1,"20028":2,"20029":1,"20030":1,"20031":1,"20032":1,"20033":1,"20034":2,"20035":1,"20036":1,"20037":2,"20038":2,"20039":2,"20040":1,"20041":2,"20042":2,"20043":1,"20044":2,"20045":1,"20046":2,"20047":1,"20048":1,"20049":2,"20050":2,"20051":1,"20052":2,"20053":1,"20054":2,"20055":2,"20056":1,"20057":1,"20058":1,"20059":2,"20060":1,"20061":2,"20062":2,"20063":2,"20064":1,"20065":1,"20066":2,"20067":1,"20068":2,"20069":2,"20070":2,"20071":1,"20072":2,"20073":1,"20074":1,"20075":2,"20076":2,"20077":1,"20078":1,"20079":2,"20080":1,"20081":1,"20082":2,"20083":2,"20084":1,"20085":1,"20086":1,"20087":1,"20088":2,"20089":2,"20090":1,"20091":2,"20092":2,"20093":2,"20094":1,"20095":2,"20096":2,"20097":2,"20098":1,"20099":1,"20100":1,"20101":1,"20102":1,"20103":1,"20104":1,"20105":1,"20106":1,"20107":2,"20108":2,"20109":2,"20110":2,"20111":1,"20112":2,"20113":1,"20114":1,"20115":1,"20116":1,"20117":1,"20118":2,"20119":1,"20120":2,"20121":1,"20122":2,"20123":1,"20124":2,"20125":2,"20126":1,"20127":1,"20128":2,"20129":2,"20130":1,"20131":2,"20132":1,"20133":2,"20134":1,"20135":2,"20136":2,"20137":2,"20138":1,"20139":1,"20140":2,"20141":1,"20142":2,"20143":1,"20144":1,"20145":1,"20146":2,"20147":2,"20148":1,"20149":1,"20150":2,"20151":1,"20152":2,"20153":2,"20154":2,"20155":1,"20156":1,"20157":2,"20158":2,"20159":2,"20160":1,"20161":2,"20162":1,"20163":1,"20164":2,"20165":2,"20166":2,"20167":2,"20168":2,"20169":1,"20170":2,"20171":1,"20172":2,"20173":1,"20174":2,"20175":1,"20176":1,"20177":1,"20178":2,"20179":2,"20180":1,"20181":1,"20182":1,"20183":1,"20184":2,"20185":2,"20186":1,"20187":2,"20188":1,"20189":1,"20190":2,"20191":1,"20192":1,"20193":1,"20194":2,"20195":2,"20196":2,"20197":2,"20198":1,"20199":1,"20200":1,"20201":1,"20202":2,"20203":2,"20204":2,"20205":1,"20206":2,"20207":1,"20208":1,"20209":1,"20210":2,"20211":1,"20212":1,"20213":1,"20214":2,"20215":2,"20216":1,"20217":1,"20218":1,"20219":2,"20220":1,"20221":1,"20222":2,"20223":1,"20224":1,"20225":1,"20226":2,"20227":2,"20228":1,"20229":2,"20230":2,"20231":2,"20232":2,"20233":2,"20234":1,"20235":1,"20236":1,"20237":1,"20238":1,"20239":2,"20240":1,"20241":2,"20242":1,"20243":2,"20244":2,"20245":1,"20246":2,"20247":1,"20248":1,"20249":1,"20250":1,"20251":2,"20252":1,"20253":1,"20254":1,"20255":2,"20256":1,"20257":1,"20258":1,"20259":2,"20260":2,"20261":1,"20262":2,"20263":1,"20264":2,"20265":2,"20266":2,"20267":2,"20268":1,"20269":2,"20270":2,"20271":2,"20272":1,"20273":2,"20274":1,"20275":1,"20276":1,"20277":1,"20278":1,"20279":2,"20280":1,"20281":1,"20282":1,"20283":2,"20284":2,"20285":2,"20286":1,"20287":2,"20288":1,"20289":2,"20290":1,"20291":1,"20292":2,"20293":2,"20294":2,"20295":2,"20296":1,"20297":2,"20298":2,"20299":2,"20300":2,"20301":1,"20302":1,"20303":1,"20304":2,"20305":2,"20306":1,"20307":2,"20308":1,"20309":1,"20310":1,"20311":1,"20312":2,"20313":2,"20314":1,"20315":1,"20316":2,"20317":2,"20318":1,"20319":1,"20320":1,"20321":1,"20322":2,"20323":2,"20324":1,"20325":2,"20326":1,"20327":1,"20328":2,"20329":2,"20330":1,"20331":1,"20332":2,"20333":2,"20334":2,"20335":1,"20336":1,"20337":2,"20338":1,"20339":2,"20340":1,"20341":1,"20342":2,"20343":2,"20344":2,"20345":2,"20346":2,"20347":2,"20348":2,"20349":2,"20350":1,"20351":1,"20352":2,"20353":2,"20354":2,"20355":1,"20356":2,"20357":2,"20358":2,"20359":1,"20360":1,"20361":1,"20362":2,"20363":1,"20364":2,"20365":1,"20366":2,"20367":2,"20368":2,"20369":2,"20370":2,"20371":1,"20372":2,"20373":2,"20374":2,"20375":2,"20376":1,"20377":2,"20378":2,"20379":1,"20380":2,"20381":1,"20382":1,"20383":2,"20384":2,"20385":1,"20386":2,"20387":2,"20388":1,"20389":2,"20390":1,"20391":1,"20392":1,"20393":2,"20394":2,"20395":2,"20396":1,"20397":2,"20398":1,"20399":2,"20400":1,"20401":1,"20402":2,"20403":1,"20404":1,"20405":2,"20406":1,"20407":1,"20408":1,"20409":2,"20410":1,"20411":1,"20412":1,"20413":2,"20414":1,"20415":1,"20416":2,"20417":2,"20418":1,"20419":2,"20420":2,"20421":2,"20422":1,"20423":2,"20424":1,"20425":1,"20426":1,"20427":1,"20428":1,"20429":2,"20430":2,"20431":2,"20432":1,"20433":1,"20434":2,"20435":2,"20436":2,"20437":1,"20438":2,"20439":2,"20440":1,"20441":1,"20442":2,"20443":2,"20444":2,"20445":2,"20446":2,"20447":1,"20448":1,"20449":2,"20450":1,"20451":1,"20452":2,"20453":2,"20454":1,"20455":1,"20456":1,"20457":1,"20458":1,"20459":1,"20460":1,"20461":1,"20462":1,"20463":2,"20464":2,"20465":1,"20466":2,"20467":2,"20468":2,"20469":2,"20470":1,"20471":2,"20472":1,"20473":2,"20474":2,"20475":2,"20476":2,"20477":1,"20478":2,"20479":1,"20480":2,"20481":2,"20482":2,"20483":1,"20484":2,"20485":1,"20486":2,"20487":1,"20488":1,"20489":1,"20490":2,"20491":2,"20492":2,"20493":2,"20494":2,"20495":1,"20496":2,"20497":1,"20498":2,"20499":2,"20500":1,"20501":2,"20502":1,"20503":1,"20504":2,"20505":2,"20506":2,"20507":2,"20508":2,"20509":2,"20510":2,"20511":2,"20512":1,"20513":1,"20514":1,"20515":2,"20516":2,"20517":1,"20518":2,"20519":2,"20520":1,"20521":1,"20522":2,"20523":2,"20524":1,"20525":2,"20526":1,"20527":2,"20528":1,"20529":1,"20530":2,"20531":2,"20532":1,"20533":1,"20534":1,"20535":1,"20536":1,"20537":2,"20538":1,"20539":2,"20540":2,"20541":1,"20542":2,"20543":1,"20544":1,"20545":2,"20546":1,"20547":2,"20548":2,"20549":2,"20550":2,"20551":2,"20552":2,"20553":2,"20554":1,"20555":1,"20556":1,"20557":2,"20558":2,"20559":2,"20560":1,"20561":1,"20562":1,"20563":2,"20564":1,"20565":1,"20566":2,"20567":2,"20568":2,"20569":1,"20570":1,"20571":2,"20572":1,"20573":1,"20574":1,"20575":1,"20576":2,"20577":2,"20578":2,"20579":2,"20580":2,"20581":2,"20582":1,"20583":1,"20584":2,"20585":1,"20586":2,"20587":2,"20588":2,"20589":2,"20590":1,"20591":2,"20592":2,"20593":2,"20594":2,"20595":2,"20596":1,"20597":1,"20598":1,"20599":2,"20600":2,"20601":1,"20602":2,"20603":2,"20604":1,"20605":2,"20606":1,"20607":1,"20608":1,"20609":1,"20610":1,"20611":2,"20612":1,"20613":1,"20614":2,"20615":2,"20616":1,"20617":1,"20618":2,"20619":1,"20620":2,"20621":2,"20622":2,"20623":2,"20624":2,"20625":1,"20626":1,"20627":2,"20628":1,"20629":2,"20630":1,"20631":1,"20632":2,"20633":1,"20634":1,"20635":2,"20636":1,"20637":1,"20638":1,"20639":1,"20640":1,"20641":1,"20642":2,"20643":1,"20644":2,"20645":1,"20646":1,"20647":1,"20648":2,"20649":2,"20650":1,"20651":1,"20652":2,"20653":1,"20654":1,"20655":1,"20656":1,"20657":2,"20658":2,"20659":1,"20660":2,"20661":2,"20662":1,"20663":2,"20664":1,"20665":2,"20666":2,"20667":1,"20668":2,"20669":1,"20670":2,"20671":2,"20672":1,"20673":2,"20674":1,"20675":2,"20676":1,"20677":1,"20678":1,"20679":2,"20680":1,"20681":2,"20682":2,"20683":2,"20684":1,"20685":2,"20686":2,"20687":1,"20688":2,"20689":1,"20690":1,"20691":2,"20692":1,"20693":1,"20694":2,"20695":1,"20696":2,"20697":1,"20698":2,"20699":2,"20700":2,"20701":1,"20702":2,"20703":1,"20704":1,"20705":1,"20706":1,"20707":1,"20708":1,"20709":2,"20710":1,"20711":2,"20712":2,"20713":2,"20714":2,"20715":1,"20716":2,"20717":1,"20718":2,"20719":1,"20720":2,"20721":2,"20722":2,"20723":2,"20724":1,"20725":2,"20726":1,"20727":1,"20728":1,"20729":2,"20730":1,"20731":1,"20732":1,"20733":2,"20734":1,"20735":1,"20736":1,"20737":1,"20738":1,"20739":2,"20740":1,"20741":1,"20742":2,"20743":1,"20744":1,"20745":2,"20746":2,"20747":1,"20748":2,"20749":1,"20750":2,"20751":2,"20752":2,"20753":1,"20754":1,"20755":1,"20756":1,"20757":2,"20758":1,"20759":1,"20760":2,"20761":1,"20762":2,"20763":2,"20764":2,"20765":2,"20766":2,"20767":2,"20768":2,"20769":1,"20770":1,"20771":1,"20772":1,"20773":2,"20774":1,"20775":2,"20776":2,"20777":2,"20778":2,"20779":2,"20780":2,"20781":2,"20782":1,"20783":1,"20784":1,"20785":1,"20786":2,"20787":1,"20788":1,"20789":2,"20790":1,"20791":1,"20792":2,"20793":1,"20794":1,"20795":1,"20796":2,"20797":1,"20798":1,"20799":1,"20800":1,"20801":2,"20802":1,"20803":2,"20804":1,"20805":2,"20806":1,"20807":1,"20808":2,"20809":2,"20810":2,"20811":1,"20812":2,"20813":1,"20814":2,"20815":1,"20816":1,"20817":1,"20818":1,"20819":1,"20820":1,"20821":2,"20822":1,"20823":2,"20824":2,"20825":2,"20826":2,"20827":2,"20828":2,"20829":1,"20830":1,"20831":1,"20832":1,"20833":2,"20834":1,"20835":1,"20836":2,"20837":1,"20838":1,"20839":1,"20840":1,"20841":2,"20842":2,"20843":2,"20844":1,"20845":2,"20846":2,"20847":1,"20848":2,"20849":2,"20850":1,"20851":1,"20852":1,"20853":2,"20854":2,"20855":2,"20856":2,"20857":2,"20858":1,"20859":1,"20860":1,"20861":2,"20862":2,"20863":2,"20864":1,"20865":2,"20866":2,"20867":1,"20868":1,"20869":1,"20870":1,"20871":1,"20872":1,"20873":2,"20874":2,"20875":1,"20876":2,"20877":1,"20878":1,"20879":1,"20880":2,"20881":2,"20882":2,"20883":2,"20884":1,"20885":1,"20886":2,"20887":1,"20888":1,"20889":1,"20890":1,"20891":2,"20892":1,"20893":1,"20894":1,"20895":2,"20896":1,"20897":1,"20898":1,"20899":1,"20900":1,"20901":2,"20902":2,"20903":2,"20904":2,"20905":2,"20906":1,"20907":2,"20908":2,"20909":2,"20910":1,"20911":2,"20912":2,"20913":1,"20914":2,"20915":1,"20916":2,"20917":1,"20918":2,"20919":2,"20920":1,"20921":1,"20922":2,"20923":1,"20924":2,"20925":2,"20926":2,"20927":2,"20928":1,"20929":1,"20930":2,"20931":2,"20932":2,"20933":2,"20934":1,"20935":1,"20936":1,"20937":2,"20938":1,"20939":2,"20940":2,"20941":2,"20942":1,"20943":1,"20944":2,"20945":2,"20946":1,"20947":2,"20948":2,"20949":1,"20950":2,"20951":2,"20952":1,"20953":1,"20954":1,"20955":2,"20956":2,"20957":2,"20958":2,"20959":1,"20960":1,"20961":1,"20962":1,"20963":2,"20964":2,"20965":2,"20966":1,"20967":1,"20968":1,"20969":2,"20970":1,"20971":1,"20972":2,"20973":2,"20974":2,"20975":2,"20976":1,"20977":2,"20978":2,"20979":1,"20980":1,"20981":2,"20982":1,"20983":1,"20984":2,"20985":2,"20986":2,"20987":2,"20988":1,"20989":1,"20990":1,"20991":2,"20992":1,"20993":1,"20994":2,"20995":1,"20996":1,"20997":2,"20998":2,"20999":2,"21000":1,"21001":1,"21002":2,"21003":2,"21004":1,"21005":1,"21006":1,"21007":2,"21008":2,"21009":1,"21010":2,"21011":2,"21012":2,"21013":2,"21014":2,"21015":1,"21016":1,"21017":1,"21018":1,"21019":2,"21020":2,"21021":1,"21022":1,"21023":2,"21024":1,"21025":2,"21026":2,"21027":2,"21028":2,"21029":2,"21030":2,"21031":2,"21032":1,"21033":1,"21034":1,"21035":1,"21036":1,"21037":2,"21038":1,"21039":2,"21040":2,"21041":2,"21042":1,"21043":2,"21044":2,"21045":2,"21046":1,"21047":2,"21048":1,"21049":2,"21050":2,"21051":1,"21052":2,"21053":1,"21054":2,"21055":1,"21056":2,"21057":1,"21058":2,"21059":2,"21060":1,"21061":2,"21062":1,"21063":2,"21064":2,"21065":2,"21066":2,"21067":1,"21068":2,"21069":1,"21070":2,"21071":1,"21072":2,"21073":1,"21074":1,"21075":2,"21076":2,"21077":1,"21078":2,"21079":1,"21080":2,"21081":1,"21082":2,"21083":1,"21084":2,"21085":2,"21086":2,"21087":2,"21088":1,"21089":1,"21090":2,"21091":2,"21092":2,"21093":2,"21094":1,"21095":1,"21096":2,"21097":1,"21098":1,"21099":2,"21100":1,"21101":1,"21102":1,"21103":1,"21104":1,"21105":1,"21106":1,"21107":1,"21108":1,"21109":2,"21110":1,"21111":2,"21112":2,"21113":2,"21114":1,"21115":1,"21116":1,"21117":1,"21118":1,"21119":1,"21120":2,"21121":2,"21122":2,"21123":2,"21124":2,"21125":1,"21126":2,"21127":1,"21128":1,"21129":2,"21130":2,"21131":2,"21132":2,"21133":1,"21134":1,"21135":2,"21136":2,"21137":1,"21138":1,"21139":1,"21140":1,"21141":2,"21142":2,"21143":1,"21144":1,"21145":1,"21146":2,"21147":1,"21148":1,"21149":2,"21150":1,"21151":1,"21152":1,"21153":1,"21154":1,"21155":1,"21156":1,"21157":1,"21158":1,"21159":1,"21160":2,"21161":1,"21162":1,"21163":1,"21164":2,"21165":2,"21166":2,"21167":1,"21168":1,"21169":1,"21170":1,"21171":1,"21172":2,"21173":2,"21174":2,"21175":2,"21176":1,"21177":2,"21178":1,"21179":1,"21180":1,"21181":1,"21182":1,"21183":2,"21184":1,"21185":2,"21186":2,"21187":1,"21188":2,"21189":1,"21190":2,"21191":1,"21192":1,"21193":2,"21194":2,"21195":1,"21196":1,"21197":2,"21198":2,"21199":2,"21200":1,"21201":1,"21202":2,"21203":2,"21204":1,"21205":2,"21206":1,"21207":1,"21208":2,"21209":2,"21210":1,"21211":2,"21212":1,"21213":1,"21214":2,"21215":2,"21216":1,"21217":2,"21218":1,"21219":2,"21220":1,"21221":2,"21222":1,"21223":1,"21224":2,"21225":1,"21226":2,"21227":1,"21228":1,"21229":1,"21230":1,"21231":2,"21232":2,"21233":1,"21234":1,"21235":1,"21236":1,"21237":2,"21238":2,"21239":1,"21240":2,"21241":1,"21242":1,"21243":2,"21244":2,"21245":1,"21246":2,"21247":1,"21248":2,"21249":2,"21250":2,"21251":1,"21252":2,"21253":1,"21254":2,"21255":1,"21256":2,"21257":1,"21258":1,"21259":2,"21260":2,"21261":1,"21262":2,"21263":2,"21264":1,"21265":2,"21266":1,"21267":2,"21268":2,"21269":1,"21270":2,"21271":2,"21272":1,"21273":2,"21274":2,"21275":1,"21276":2,"21277":2,"21278":1,"21279":2,"21280":2,"21281":2,"21282":2,"21283":2,"21284":1,"21285":2,"21286":1,"21287":2,"21288":2,"21289":2,"21290":2,"21291":1,"21292":1,"21293":2,"21294":1,"21295":1,"21296":1,"21297":1,"21298":2,"21299":1,"21300":1,"21301":2,"21302":2,"21303":1,"21304":2,"21305":1,"21306":1,"21307":2,"21308":2,"21309":2,"21310":2,"21311":1,"21312":1,"21313":1,"21314":2,"21315":2,"21316":2,"21317":1,"21318":2,"21319":2,"21320":1,"21321":1,"21322":1,"21323":1,"21324":1,"21325":2,"21326":1,"21327":1,"21328":2,"21329":1,"21330":1,"21331":2,"21332":1,"21333":2,"21334":1,"21335":2,"21336":2,"21337":1,"21338":1,"21339":2,"21340":2,"21341":1,"21342":1,"21343":1,"21344":2,"21345":2,"21346":1,"21347":1,"21348":2,"21349":2,"21350":1,"21351":1,"21352":2,"21353":1,"21354":1,"21355":2,"21356":2,"21357":2,"21358":2,"21359":2,"21360":2,"21361":1,"21362":2,"21363":2,"21364":1,"21365":2,"21366":2,"21367":1,"21368":2,"21369":1,"21370":2,"21371":1,"21372":1,"21373":1,"21374":1,"21375":2,"21376":1,"21377":2,"21378":1,"21379":1,"21380":1,"21381":1,"21382":2,"21383":2,"21384":1,"21385":2,"21386":1,"21387":1,"21388":2,"21389":2,"21390":2,"21391":1,"21392":1,"21393":1,"21394":1,"21395":1,"21396":1,"21397":1,"21398":1,"21399":2,"21400":2,"21401":1,"21402":1,"21403":2,"21404":2,"21405":2,"21406":2,"21407":2,"21408":2,"21409":2,"21410":2,"21411":1,"21412":1,"21413":2,"21414":1,"21415":1,"21416":2,"21417":1,"21418":1,"21419":2,"21420":1,"21421":2,"21422":2,"21423":2,"21424":1,"21425":1,"21426":2,"21427":1,"21428":2,"21429":1,"21430":1,"21431":2,"21432":1,"21433":1,"21434":1,"21435":1,"21436":1,"21437":1,"21438":1,"21439":1,"21440":1,"21441":1,"21442":2,"21443":1,"21444":2,"21445":1,"21446":2,"21447":2,"21448":2,"21449":1,"21450":1,"21451":2,"21452":1,"21453":2,"21454":1,"21455":1,"21456":2,"21457":2,"21458":2,"21459":2,"21460":2,"21461":1,"21462":1,"21463":2,"21464":2,"21465":1,"21466":1,"21467":2,"21468":1,"21469":1,"21470":2,"21471":1,"21472":2,"21473":2,"21474":2,"21475":2,"21476":1,"21477":2,"21478":1,"21479":2,"21480":1,"21481":2,"21482":2,"21483":2,"21484":2,"21485":2,"21486":1,"21487":2,"21488":2,"21489":2,"21490":1,"21491":1,"21492":1,"21493":1,"21494":2,"21495":1,"21496":1,"21497":2,"21498":1,"21499":1,"21500":1,"21501":1,"21502":1,"21503":1,"21504":1,"21505":2,"21506":2,"21507":2,"21508":1,"21509":1,"21510":2,"21511":2,"21512":1,"21513":1,"21514":1,"21515":2,"21516":1,"21517":1,"21518":1,"21519":1,"21520":2,"21521":1,"21522":2,"21523":2,"21524":2,"21525":2,"21526":2,"21527":2,"21528":2,"21529":2,"21530":2,"21531":2,"21532":2,"21533":2,"21534":2,"21535":1,"21536":1,"21537":1,"21538":2,"21539":2,"21540":2,"21541":2,"21542":1,"21543":1,"21544":2,"21545":1,"21546":1,"21547":1,"21548":2,"21549":2,"21550":1,"21551":1,"21552":1,"21553":1,"21554":1,"21555":2,"21556":2,"21557":2,"21558":2,"21559":2,"21560":1,"21561":1,"21562":2,"21563":2,"21564":1,"21565":2,"21566":2,"21567":2,"21568":2,"21569":2,"21570":1,"21571":1,"21572":2,"21573":2,"21574":2,"21575":2,"21576":2,"21577":2,"21578":2,"21579":2,"21580":2,"21581":1,"21582":1,"21583":1,"21584":2,"21585":2,"21586":1,"21587":2,"21588":2,"21589":1,"21590":2,"21591":1,"21592":2,"21593":2,"21594":1,"21595":2,"21596":2,"21597":1,"21598":1,"21599":2,"21600":1,"21601":2,"21602":2,"21603":2,"21604":1,"21605":2,"21606":1,"21607":1,"21608":2,"21609":2,"21610":1,"21611":1,"21612":1,"21613":1,"21614":2,"21615":1,"21616":2,"21617":2,"21618":2,"21619":2,"21620":1,"21621":1,"21622":1,"21623":2,"21624":1,"21625":2,"21626":1,"21627":1,"21628":2,"21629":1,"21630":1,"21631":1,"21632":2,"21633":2,"21634":2,"21635":1,"21636":1,"21637":2,"21638":1,"21639":1,"21640":2,"21641":1,"21642":1,"21643":2,"21644":2,"21645":2,"21646":2,"21647":2,"21648":1,"21649":2,"21650":2,"21651":2,"21652":2,"21653":2,"21654":1,"21655":2,"21656":1,"21657":2,"21658":2,"21659":2,"21660":1,"21661":1,"21662":2,"21663":1,"21664":2,"21665":1,"21666":2,"21667":1,"21668":2,"21669":1,"21670":2,"21671":1,"21672":1,"21673":1,"21674":2,"21675":2,"21676":2,"21677":1,"21678":1,"21679":2,"21680":2,"21681":2,"21682":1,"21683":2,"21684":1,"21685":2,"21686":2,"21687":2,"21688":2,"21689":1,"21690":2,"21691":1,"21692":2,"21693":1,"21694":1,"21695":1,"21696":2,"21697":1,"21698":1,"21699":1,"21700":1,"21701":2,"21702":1,"21703":1,"21704":2,"21705":2,"21706":2,"21707":1,"21708":1,"21709":2,"21710":1,"21711":2,"21712":2,"21713":1,"21714":2,"21715":1,"21716":2,"21717":1,"21718":1,"21719":2,"21720":1,"21721":2,"21722":1,"21723":1,"21724":1,"21725":1,"21726":1,"21727":1,"21728":2,"21729":1,"21730":2,"21731":2,"21732":2,"21733":2,"21734":1,"21735":2,"21736":2,"21737":2,"21738":1,"21739":1,"21740":1,"21741":1,"21742":2,"21743":2,"21744":1,"21745":2,"21746":2,"21747":2,"21748":2,"21749":1,"21750":1,"21751":2,"21752":2,"21753":2,"21754":2,"21755":2,"21756":1,"21757":2,"21758":1,"21759":2,"21760":2,"21761":2,"21762":2,"21763":1,"21764":1,"21765":2,"21766":2,"21767":1,"21768":1,"21769":1,"21770":1,"21771":2,"21772":2,"21773":1,"21774":1,"21775":1,"21776":2,"21777":2,"21778":1,"21779":1,"21780":2,"21781":2,"21782":2,"21783":2,"21784":1,"21785":2,"21786":2,"21787":2,"21788":2,"21789":1,"21790":2,"21791":2,"21792":2,"21793":2,"21794":2,"21795":1,"21796":1,"21797":1,"21798":2,"21799":2,"21800":2,"21801":2,"21802":1,"21803":2,"21804":1,"21805":2,"21806":2,"21807":2,"21808":1,"21809":1,"21810":2,"21811":1,"21812":1,"21813":1,"21814":1,"21815":2,"21816":1,"21817":2,"21818":1,"21819":1,"21820":1,"21821":1,"21822":1,"21823":1,"21824":1,"21825":1,"21826":1,"21827":2,"21828":2,"21829":1,"21830":2,"21831":1,"21832":2,"21833":1,"21834":2,"21835":1,"21836":1,"21837":2,"21838":1,"21839":2,"21840":1,"21841":2,"21842":2,"21843":1,"21844":1,"21845":1,"21846":1,"21847":2,"21848":1,"21849":1,"21850":1,"21851":1,"21852":1,"21853":2,"21854":1,"21855":1,"21856":1,"21857":2,"21858":1,"21859":1,"21860":2,"21861":1,"21862":2,"21863":1,"21864":2,"21865":2,"21866":2,"21867":1,"21868":2,"21869":1,"21870":2,"21871":2,"21872":2,"21873":2,"21874":2,"21875":1,"21876":1,"21877":2,"21878":1,"21879":1,"21880":2,"21881":1,"21882":1,"21883":2,"21884":2,"21885":1,"21886":2,"21887":1,"21888":2,"21889":2,"21890":1,"21891":2,"21892":1,"21893":1,"21894":2,"21895":2,"21896":2,"21897":1,"21898":1,"21899":2,"21900":2,"21901":2,"21902":2,"21903":2,"21904":1,"21905":2,"21906":2,"21907":2,"21908":2,"21909":2,"21910":1,"21911":2,"21912":1,"21913":2,"21914":1,"21915":1,"21916":2,"21917":2,"21918":1,"21919":1,"21920":1,"21921":2,"21922":2,"21923":1,"21924":2,"21925":1,"21926":1,"21927":2,"21928":2,"21929":1,"21930":1,"21931":1,"21932":2,"21933":1,"21934":2,"21935":2,"21936":2,"21937":2,"21938":1,"21939":1,"21940":1,"21941":2,"21942":2,"21943":1,"21944":2,"21945":1,"21946":2,"21947":2,"21948":2,"21949":2,"21950":1,"21951":1,"21952":1,"21953":1,"21954":2,"21955":2,"21956":1,"21957":2,"21958":2,"21959":1,"21960":2,"21961":2,"21962":2,"21963":2,"21964":1,"21965":2,"21966":1,"21967":1,"21968":1,"21969":2,"21970":1,"21971":2,"21972":2,"21973":1,"21974":1,"21975":1,"21976":2,"21977":2,"21978":1,"21979":1,"21980":2,"21981":2,"21982":1,"21983":2,"21984":1,"21985":1,"21986":1,"21987":2,"21988":1,"21989":2,"21990":2,"21991":1,"21992":2,"21993":1,"21994":2,"21995":1,"21996":1,"21997":2,"21998":1,"21999":1,"22000":2,"22001":1,"22002":2,"22003":2,"22004":2,"22005":2,"22006":1,"22007":2,"22008":1,"22009":1,"22010":1,"22011":2,"22012":2,"22013":1,"22014":1,"22015":2,"22016":2,"22017":2,"22018":2,"22019":2,"22020":1,"22021":2,"22022":2,"22023":2,"22024":1,"22025":1,"22026":1,"22027":1,"22028":1,"22029":1,"22030":1,"22031":2,"22032":2,"22033":2,"22034":1,"22035":2,"22036":1,"22037":1,"22038":1,"22039":2,"22040":2,"22041":2,"22042":1,"22043":1,"22044":2,"22045":1,"22046":2,"22047":1,"22048":1,"22049":2,"22050":2,"22051":2,"22052":1,"22053":2,"22054":2,"22055":1,"22056":1,"22057":1,"22058":2,"22059":1,"22060":2,"22061":2,"22062":2,"22063":2,"22064":1,"22065":2,"22066":1,"22067":1,"22068":2,"22069":2,"22070":2,"22071":2,"22072":2,"22073":2,"22074":1,"22075":2,"22076":2,"22077":1,"22078":2,"22079":1,"22080":2,"22081":1,"22082":2,"22083":2,"22084":2,"22085":2,"22086":1,"22087":2,"22088":1,"22089":1,"22090":2,"22091":2,"22092":1,"22093":1,"22094":1,"22095":1,"22096":2,"22097":2,"22098":1,"22099":1,"22100":2,"22101":2,"22102":2,"22103":1,"22104":2,"22105":1,"22106":2,"22107":2,"22108":2,"22109":1,"22110":1,"22111":2,"22112":2,"22113":2,"22114":1,"22115":2,"22116":2,"22117":2,"22118":1,"22119":2,"22120":1,"22121":1,"22122":2,"22123":1,"22124":2,"22125":2,"22126":2,"22127":2,"22128":2,"22129":1,"22130":1,"22131":2,"22132":1,"22133":2,"22134":1,"22135":1,"22136":1,"22137":2,"22138":2,"22139":1,"22140":2,"22141":2,"22142":2,"22143":1,"22144":2,"22145":1,"22146":2,"22147":1,"22148":1,"22149":1,"22150":2,"22151":2,"22152":2,"22153":1,"22154":2,"22155":1,"22156":2,"22157":2,"22158":1,"22159":1,"22160":2,"22161":1,"22162":1,"22163":1,"22164":2,"22165":2,"22166":1,"22167":2,"22168":1,"22169":2,"22170":2,"22171":1,"22172":1,"22173":1,"22174":2,"22175":2,"22176":2,"22177":1,"22178":2,"22179":1,"22180":1,"22181":2,"22182":2,"22183":1,"22184":2,"22185":1,"22186":1,"22187":2,"22188":1,"22189":2,"22190":1,"22191":1,"22192":1,"22193":1,"22194":1,"22195":1,"22196":1,"22197":2,"22198":2,"22199":2,"22200":1,"22201":2,"22202":2,"22203":1,"22204":2,"22205":2,"22206":1,"22207":1,"22208":2,"22209":1,"22210":2,"22211":2,"22212":1,"22213":1,"22214":1,"22215":1,"22216":2,"22217":1,"22218":1,"22219":1,"22220":1,"22221":2,"22222":2,"22223":1,"22224":1,"22225":1,"22226":1,"22227":1,"22228":1,"22229":1,"22230":1,"22231":1,"22232":1,"22233":1,"22234":2,"22235":2,"22236":1,"22237":1,"22238":2,"22239":1,"22240":2,"22241":1,"22242":1,"22243":2,"22244":1,"22245":1,"22246":2,"22247":2,"22248":1,"22249":2,"22250":2,"22251":1,"22252":1,"22253":2,"22254":1,"22255":2,"22256":2,"22257":1,"22258":2,"22259":1,"22260":1,"22261":2,"22262":1,"22263":1,"22264":2,"22265":1,"22266":2,"22267":2,"22268":2,"22269":1,"22270":1,"22271":1,"22272":1,"22273":1,"22274":1,"22275":2,"22276":2,"22277":2,"22278":2,"22279":1,"22280":2,"22281":2,"22282":2,"22283":2,"22284":1,"22285":2,"22286":1,"22287":2,"22288":2,"22289":1,"22290":2,"22291":1,"22292":2,"22293":1,"22294":2,"22295":1,"22296":2,"22297":1,"22298":1,"22299":2,"22300":1,"22301":1,"22302":1,"22303":1,"22304":1,"22305":1,"22306":1,"22307":2,"22308":1,"22309":1,"22310":2,"22311":1,"22312":2,"22313":2,"22314":1,"22315":2,"22316":2,"22317":2,"22318":1,"22319":2,"22320":2,"22321":1,"22322":1,"22323":2,"22324":2,"22325":2,"22326":2,"22327":1,"22328":2,"22329":1,"22330":2,"22331":2,"22332":1,"22333":1,"22334":2,"22335":1,"22336":1,"22337":2,"22338":1,"22339":1,"22340":2,"22341":2,"22342":1,"22343":1,"22344":2,"22345":1,"22346":2,"22347":2,"22348":1,"22349":2,"22350":1,"22351":1,"22352":2,"22353":2,"22354":1,"22355":1,"22356":2,"22357":1,"22358":2,"22359":1,"22360":1,"22361":2,"22362":2,"22363":2,"22364":1,"22365":2,"22366":1,"22367":1,"22368":1,"22369":2,"22370":1,"22371":2,"22372":2,"22373":2,"22374":2,"22375":2,"22376":1,"22377":2,"22378":1,"22379":2,"22380":2,"22381":2,"22382":2,"22383":1,"22384":1,"22385":1,"22386":2,"22387":2,"22388":1,"22389":1,"22390":2,"22391":1,"22392":2,"22393":1,"22394":2,"22395":2,"22396":1,"22397":1,"22398":2,"22399":1,"22400":2,"22401":1,"22402":1,"22403":1,"22404":2,"22405":1,"22406":1,"22407":1,"22408":2,"22409":1,"22410":1,"22411":2,"22412":2,"22413":1,"22414":1,"22415":2,"22416":1,"22417":1,"22418":1,"22419":2,"22420":2,"22421":1,"22422":2,"22423":1,"22424":1,"22425":1,"22426":2,"22427":1,"22428":1,"22429":2,"22430":2,"22431":1,"22432":1,"22433":1,"22434":1,"22435":1,"22436":1,"22437":2,"22438":2,"22439":2,"22440":1,"22441":2,"22442":2,"22443":1,"22444":1,"22445":1,"22446":2,"22447":1,"22448":1,"22449":2,"22450":1,"22451":2,"22452":2,"22453":1,"22454":1,"22455":1,"22456":1,"22457":2,"22458":1,"22459":2,"22460":2,"22461":1,"22462":2,"22463":1,"22464":2,"22465":1,"22466":1,"22467":2,"22468":1,"22469":1,"22470":2,"22471":2,"22472":2,"22473":2,"22474":2,"22475":1,"22476":2,"22477":2,"22478":1,"22479":2,"22480":1,"22481":2,"22482":1,"22483":1,"22484":1,"22485":1,"22486":1,"22487":2,"22488":1,"22489":1,"22490":2,"22491":2,"22492":2,"22493":2,"22494":1,"22495":2,"22496":1,"22497":2,"22498":2,"22499":1,"22500":2,"22501":1,"22502":2,"22503":2,"22504":1,"22505":2,"22506":1,"22507":2,"22508":2,"22509":2,"22510":2,"22511":2,"22512":2,"22513":1,"22514":2,"22515":1,"22516":2,"22517":1,"22518":1,"22519":1,"22520":1,"22521":1,"22522":2,"22523":2,"22524":1,"22525":1,"22526":2,"22527":2,"22528":2,"22529":2,"22530":2,"22531":1,"22532":1,"22533":2,"22534":2,"22535":2,"22536":2,"22537":1,"22538":2,"22539":2,"22540":1,"22541":2,"22542":2,"22543":1,"22544":1,"22545":2,"22546":1,"22547":1,"22548":2,"22549":2,"22550":1,"22551":2,"22552":1,"22553":1,"22554":2,"22555":1,"22556":1,"22557":1,"22558":2,"22559":2,"22560":1,"22561":1,"22562":1,"22563":1,"22564":1,"22565":1,"22566":1,"22567":1,"22568":2,"22569":1,"22570":2,"22571":2,"22572":1,"22573":1,"22574":1,"22575":1,"22576":1,"22577":1,"22578":1,"22579":2,"22580":2,"22581":2,"22582":1,"22583":2,"22584":1,"22585":1,"22586":1,"22587":1,"22588":2,"22589":1,"22590":2,"22591":1,"22592":1,"22593":1,"22594":2,"22595":2,"22596":1,"22597":2,"22598":2,"22599":2,"22600":2,"22601":2,"22602":1,"22603":2,"22604":1,"22605":2,"22606":2,"22607":2,"22608":1,"22609":2,"22610":2,"22611":1,"22612":1,"22613":2,"22614":1,"22615":1,"22616":2,"22617":2,"22618":1,"22619":1,"22620":1,"22621":2,"22622":2,"22623":2,"22624":1,"22625":1,"22626":1,"22627":1,"22628":1,"22629":1,"22630":2,"22631":2,"22632":1,"22633":2,"22634":1,"22635":2,"22636":1,"22637":2,"22638":1,"22639":1,"22640":2,"22641":1,"22642":1,"22643":2,"22644":1,"22645":1,"22646":1,"22647":2,"22648":1,"22649":2,"22650":2,"22651":2,"22652":2,"22653":2,"22654":2,"22655":1,"22656":2,"22657":1,"22658":1,"22659":2,"22660":2,"22661":2,"22662":1,"22663":2,"22664":1,"22665":2,"22666":1,"22667":2,"22668":2,"22669":1,"22670":2,"22671":1,"22672":2,"22673":2,"22674":2,"22675":2,"22676":1,"22677":2,"22678":1,"22679":2,"22680":1,"22681":1,"22682":1,"22683":2,"22684":1,"22685":1,"22686":1,"22687":2,"22688":2,"22689":2,"22690":1,"22691":2,"22692":2,"22693":2,"22694":1,"22695":2,"22696":1,"22697":2,"22698":1,"22699":1,"22700":2,"22701":1,"22702":1,"22703":2,"22704":2,"22705":2,"22706":2,"22707":2,"22708":1,"22709":2,"22710":1,"22711":1,"22712":1,"22713":2,"22714":2,"22715":1,"22716":1,"22717":1,"22718":1,"22719":1,"22720":2,"22721":2,"22722":2,"22723":1,"22724":2,"22725":1,"22726":1,"22727":2,"22728":1,"22729":1,"22730":1,"22731":1,"22732":2,"22733":2,"22734":2,"22735":2,"22736":1,"22737":1,"22738":1,"22739":1,"22740":1,"22741":2,"22742":1,"22743":1,"22744":2,"22745":1,"22746":2,"22747":2,"22748":1,"22749":1,"22750":2,"22751":1,"22752":2,"22753":2,"22754":2,"22755":1,"22756":1,"22757":2,"22758":2,"22759":2,"22760":1,"22761":1,"22762":1,"22763":2,"22764":1,"22765":1,"22766":2,"22767":2,"22768":2,"22769":2,"22770":1,"22771":2,"22772":2,"22773":2,"22774":2,"22775":2,"22776":2,"22777":1,"22778":1,"22779":1,"22780":1,"22781":2,"22782":1,"22783":1,"22784":1,"22785":1,"22786":1,"22787":2,"22788":2,"22789":2,"22790":2,"22791":1,"22792":1,"22793":1,"22794":2,"22795":2,"22796":1,"22797":2,"22798":2,"22799":1,"22800":1,"22801":1,"22802":1,"22803":2,"22804":2,"22805":1,"22806":1,"22807":1,"22808":2,"22809":1,"22810":2,"22811":1,"22812":1,"22813":1,"22814":1,"22815":1,"22816":1,"22817":2,"22818":2,"22819":1,"22820":2,"22821":2,"22822":1,"22823":2,"22824":2,"22825":2,"22826":2,"22827":1,"22828":2,"22829":1,"22830":1,"22831":1,"22832":2,"22833":2,"22834":1,"22835":1,"22836":2,"22837":1,"22838":2,"22839":2,"22840":1,"22841":1,"22842":1,"22843":1,"22844":2,"22845":2,"22846":2,"22847":2,"22848":2,"22849":1,"22850":1,"22851":2,"22852":1,"22853":1,"22854":2,"22855":2,"22856":2,"22857":2,"22858":2,"22859":2,"22860":2,"22861":1,"22862":1,"22863":1,"22864":2,"22865":2,"22866":1,"22867":2,"22868":2,"22869":2,"22870":2,"22871":1,"22872":2,"22873":2,"22874":2,"22875":2,"22876":2,"22877":1,"22878":1,"22879":1,"22880":1,"22881":1,"22882":1,"22883":2,"22884":1,"22885":1,"22886":2,"22887":1,"22888":1,"22889":2,"22890":2,"22891":2,"22892":2,"22893":1,"22894":2,"22895":2,"22896":1,"22897":1,"22898":1,"22899":2,"22900":2,"22901":1,"22902":1,"22903":2,"22904":2,"22905":2,"22906":2,"22907":1,"22908":2,"22909":1,"22910":1,"22911":2,"22912":2,"22913":2,"22914":2,"22915":2,"22916":1,"22917":2,"22918":1,"22919":1,"22920":1,"22921":1,"22922":1,"22923":2,"22924":2,"22925":1,"22926":1,"22927":1,"22928":2,"22929":1,"22930":1,"22931":1,"22932":1,"22933":2,"22934":1,"22935":2,"22936":1,"22937":2,"22938":1,"22939":1,"22940":2,"22941":2,"22942":2,"22943":1,"22944":1,"22945":1,"22946":1,"22947":2,"22948":1,"22949":1,"22950":1,"22951":2,"22952":1,"22953":2,"22954":1,"22955":2,"22956":2,"22957":2,"22958":1,"22959":2,"22960":2,"22961":2,"22962":1,"22963":1,"22964":2,"22965":1,"22966":2,"22967":1,"22968":1,"22969":2,"22970":2,"22971":2,"22972":2,"22973":1,"22974":2,"22975":2,"22976":1,"22977":1,"22978":2,"22979":1,"22980":1,"22981":1,"22982":2,"22983":1,"22984":2,"22985":1,"22986":2,"22987":1,"22988":2,"22989":1,"22990":1,"22991":2,"22992":1,"22993":2,"22994":2,"22995":2,"22996":1,"22997":1,"22998":1,"22999":1,"23000":1,"23001":1,"23002":2,"23003":1,"23004":2,"23005":1,"23006":2,"23007":1,"23008":1,"23009":1,"23010":1,"23011":2,"23012":1,"23013":2,"23014":2,"23015":1,"23016":1,"23017":2,"23018":2,"23019":1,"23020":2,"23021":1,"23022":2,"23023":1,"23024":1,"23025":1,"23026":2,"23027":2,"23028":2,"23029":1,"23030":2,"23031":2,"23032":2,"23033":1,"23034":1,"23035":1,"23036":2,"23037":1,"23038":2,"23039":2,"23040":2,"23041":2,"23042":2,"23043":1,"23044":1,"23045":1,"23046":2,"23047":1,"23048":2,"23049":1,"23050":2,"23051":1,"23052":2,"23053":1,"23054":1,"23055":2,"23056":2,"23057":2,"23058":1,"23059":1,"23060":1,"23061":2,"23062":2,"23063":2,"23064":2,"23065":2,"23066":2,"23067":1,"23068":1,"23069":1,"23070":2,"23071":1,"23072":1,"23073":2,"23074":1,"23075":2,"23076":1,"23077":2,"23078":1,"23079":1,"23080":1,"23081":2,"23082":1,"23083":1,"23084":1,"23085":1,"23086":1,"23087":1,"23088":2,"23089":2,"23090":1,"23091":2,"23092":1,"23093":1,"23094":1,"23095":1,"23096":1,"23097":2,"23098":1,"23099":2,"23100":2,"23101":2,"23102":2,"23103":1,"23104":1,"23105":2,"23106":2,"23107":1,"23108":2,"23109":1,"23110":1,"23111":1,"23112":2,"23113":2,"23114":1,"23115":2,"23116":1,"23117":1,"23118":2,"23119":1,"23120":1,"23121":2,"23122":2,"23123":1,"23124":1,"23125":2,"23126":2,"23127":1,"23128":1,"23129":2,"23130":2,"23131":2,"23132":2,"23133":2,"23134":1,"23135":1,"23136":1,"23137":2,"23138":2,"23139":2,"23140":2,"23141":1,"23142":2,"23143":1,"23144":2,"23145":2,"23146":1,"23147":2,"23148":1,"23149":1,"23150":1,"23151":1,"23152":2,"23153":1,"23154":1,"23155":1,"23156":2,"23157":1,"23158":1,"23159":2,"23160":1,"23161":2,"23162":2,"23163":1,"23164":1,"23165":2,"23166":1,"23167":1,"23168":2,"23169":1,"23170":2,"23171":1,"23172":1,"23173":2,"23174":2,"23175":2,"23176":1,"23177":2,"23178":2,"23179":1,"23180":2,"23181":1,"23182":1,"23183":1,"23184":2,"23185":1,"23186":2,"23187":1,"23188":2,"23189":1,"23190":1,"23191":2,"23192":1,"23193":2,"23194":1,"23195":2,"23196":1,"23197":1,"23198":2,"23199":1,"23200":1,"23201":1,"23202":1,"23203":2,"23204":2,"23205":1,"23206":2,"23207":2,"23208":2,"23209":1,"23210":1,"23211":1,"23212":1,"23213":1,"23214":2,"23215":2,"23216":1,"23217":1,"23218":2,"23219":1,"23220":1,"23221":1,"23222":2,"23223":2,"23224":1,"23225":1,"23226":2,"23227":2,"23228":2,"23229":2,"23230":2,"23231":2,"23232":1,"23233":1,"23234":2,"23235":1,"23236":2,"23237":2,"23238":2,"23239":2,"23240":1,"23241":1,"23242":1,"23243":1,"23244":2,"23245":1,"23246":2,"23247":1,"23248":1,"23249":1,"23250":2,"23251":2,"23252":1,"23253":2,"23254":1,"23255":1,"23256":2,"23257":1,"23258":1,"23259":2,"23260":2,"23261":2,"23262":2,"23263":2,"23264":2,"23265":2,"23266":2,"23267":1,"23268":1,"23269":1,"23270":1,"23271":2,"23272":1,"23273":1,"23274":1,"23275":1,"23276":1,"23277":2,"23278":2,"23279":2,"23280":1,"23281":1,"23282":1,"23283":1,"23284":1,"23285":2,"23286":1,"23287":2,"23288":2,"23289":2,"23290":2,"23291":1,"23292":2,"23293":2,"23294":1,"23295":2,"23296":2,"23297":1,"23298":1,"23299":1,"23300":2,"23301":1,"23302":1,"23303":2,"23304":2,"23305":1,"23306":1,"23307":1,"23308":1,"23309":2,"23310":1,"23311":2,"23312":2,"23313":2,"23314":2,"23315":1,"23316":1,"23317":1,"23318":1,"23319":2,"23320":2,"23321":1,"23322":2,"23323":2,"23324":1,"23325":2,"23326":2,"23327":2,"23328":2,"23329":2,"23330":2,"23331":2,"23332":1,"23333":1,"23334":1,"23335":2,"23336":1,"23337":1,"23338":2,"23339":2,"23340":2,"23341":2,"23342":1,"23343":1,"23344":2,"23345":1,"23346":2,"23347":1,"23348":2,"23349":2,"23350":2,"23351":2,"23352":1,"23353":1,"23354":1,"23355":2,"23356":1,"23357":2,"23358":1,"23359":2,"23360":1,"23361":2,"23362":2,"23363":2,"23364":2,"23365":2,"23366":1,"23367":1,"23368":2,"23369":1,"23370":2,"23371":2,"23372":2,"23373":1,"23374":2,"23375":2,"23376":2,"23377":2,"23378":2,"23379":2,"23380":1,"23381":2,"23382":2,"23383":2,"23384":1,"23385":1,"23386":1,"23387":1,"23388":2,"23389":2,"23390":2,"23391":2,"23392":2,"23393":1,"23394":2,"23395":2,"23396":2,"23397":2,"23398":1,"23399":2,"23400":2,"23401":1,"23402":2,"23403":1,"23404":1,"23405":2,"23406":1,"23407":1,"23408":2,"23409":2,"23410":2,"23411":1,"23412":1,"23413":1,"23414":2,"23415":2,"23416":1,"23417":1,"23418":2,"23419":2,"23420":1,"23421":1,"23422":2,"23423":1,"23424":2,"23425":2,"23426":2,"23427":1,"23428":2,"23429":2,"23430":2,"23431":1,"23432":2,"23433":2,"23434":1,"23435":2,"23436":2,"23437":2,"23438":2,"23439":2,"23440":1,"23441":2,"23442":2,"23443":2,"23444":1,"23445":2,"23446":2,"23447":2,"23448":1,"23449":2,"23450":1,"23451":1,"23452":2,"23453":2,"23454":1,"23455":1,"23456":1,"23457":2,"23458":2,"23459":1,"23460":1,"23461":2,"23462":2,"23463":2,"23464":2,"23465":2,"23466":2,"23467":1,"23468":1,"23469":2,"23470":2,"23471":1,"23472":2,"23473":1,"23474":2,"23475":1,"23476":1,"23477":2,"23478":2,"23479":2,"23480":1,"23481":2,"23482":1,"23483":2,"23484":1,"23485":1,"23486":2,"23487":1,"23488":1,"23489":1,"23490":1,"23491":2,"23492":2,"23493":2,"23494":1,"23495":1,"23496":1,"23497":2,"23498":2,"23499":1,"23500":2,"23501":2,"23502":1,"23503":2,"23504":1,"23505":2,"23506":2,"23507":1,"23508":2,"23509":1,"23510":2,"23511":1,"23512":1,"23513":2,"23514":2,"23515":1,"23516":2,"23517":2,"23518":2,"23519":2,"23520":1,"23521":1,"23522":1,"23523":2,"23524":2,"23525":1,"23526":2,"23527":2,"23528":2,"23529":2,"23530":1,"23531":1,"23532":2,"23533":1,"23534":2,"23535":2,"23536":1,"23537":2,"23538":2,"23539":1,"23540":2,"23541":1,"23542":2,"23543":1,"23544":2,"23545":2,"23546":2,"23547":2,"23548":1,"23549":1,"23550":2,"23551":1,"23552":2,"23553":1,"23554":2,"23555":2,"23556":2,"23557":2,"23558":1,"23559":1,"23560":1,"23561":2,"23562":1,"23563":1,"23564":2,"23565":2,"23566":2,"23567":2,"23568":1,"23569":2,"23570":1,"23571":1,"23572":1,"23573":2,"23574":2,"23575":1,"23576":2,"23577":1,"23578":2,"23579":2,"23580":2,"23581":2,"23582":1,"23583":2,"23584":1,"23585":2,"23586":1,"23587":1,"23588":2,"23589":2,"23590":2,"23591":1,"23592":1,"23593":1,"23594":1,"23595":1,"23596":2,"23597":2,"23598":1,"23599":2,"23600":2,"23601":2,"23602":1,"23603":2,"23604":2,"23605":2,"23606":2,"23607":2,"23608":2,"23609":2,"23610":2,"23611":2,"23612":2,"23613":1,"23614":2,"23615":1,"23616":2,"23617":2,"23618":1,"23619":2,"23620":2,"23621":1,"23622":1,"23623":2,"23624":1,"23625":2,"23626":1,"23627":2,"23628":2,"23629":1,"23630":2,"23631":1,"23632":2,"23633":1,"23634":1,"23635":1,"23636":2,"23637":2,"23638":2,"23639":2,"23640":1,"23641":1,"23642":2,"23643":2,"23644":2,"23645":2,"23646":2,"23647":1,"23648":1,"23649":2,"23650":1,"23651":1,"23652":1,"23653":2,"23654":2,"23655":2,"23656":1,"23657":2,"23658":2,"23659":2,"23660":2,"23661":1,"23662":2,"23663":1,"23664":1,"23665":2,"23666":1,"23667":1,"23668":1,"23669":2,"23670":1,"23671":2,"23672":1,"23673":2,"23674":2,"23675":2,"23676":1,"23677":1,"23678":2,"23679":2,"23680":2,"23681":2,"23682":2,"23683":2,"23684":2,"23685":2,"23686":1,"23687":1,"23688":2,"23689":1,"23690":1,"23691":1,"23692":2,"23693":1,"23694":1,"23695":2,"23696":1,"23697":2,"23698":1,"23699":2,"23700":2,"23701":2,"23702":2,"23703":1,"23704":2,"23705":1,"23706":1,"23707":1,"23708":1,"23709":1,"23710":2,"23711":1,"23712":1,"23713":2,"23714":1,"23715":2,"23716":2,"23717":1,"23718":2,"23719":2,"23720":1,"23721":1,"23722":2,"23723":2,"23724":2,"23725":2,"23726":2,"23727":1,"23728":2,"23729":2,"23730":1,"23731":2,"23732":1,"23733":2,"23734":1,"23735":1,"23736":1,"23737":2,"23738":2,"23739":1,"23740":2,"23741":1,"23742":1,"23743":2,"23744":1,"23745":2,"23746":1,"23747":1,"23748":2,"23749":1,"23750":1,"23751":1,"23752":2,"23753":1,"23754":1,"23755":1,"23756":1,"23757":1,"23758":1,"23759":1,"23760":2,"23761":1,"23762":2,"23763":2,"23764":1,"23765":2,"23766":2,"23767":2,"23768":1,"23769":2,"23770":1,"23771":1,"23772":2,"23773":1,"23774":2,"23775":2,"23776":1,"23777":2,"23778":2,"23779":2,"23780":1,"23781":2,"23782":1,"23783":2,"23784":1,"23785":2,"23786":2,"23787":1,"23788":1,"23789":2,"23790":2,"23791":1,"23792":2,"23793":1,"23794":2,"23795":2,"23796":1,"23797":2,"23798":1,"23799":1,"23800":2,"23801":1,"23802":2,"23803":1,"23804":2,"23805":1,"23806":1,"23807":2,"23808":2,"23809":2,"23810":2,"23811":1,"23812":2,"23813":2,"23814":2,"23815":2,"23816":2,"23817":2,"23818":1,"23819":2,"23820":1,"23821":2,"23822":2,"23823":2,"23824":1,"23825":1,"23826":2,"23827":1,"23828":2,"23829":2,"23830":1,"23831":2,"23832":2,"23833":2,"23834":1,"23835":1,"23836":2,"23837":2,"23838":1,"23839":2,"23840":1,"23841":2,"23842":2,"23843":2,"23844":2,"23845":1,"23846":1,"23847":1,"23848":2,"23849":2,"23850":1,"23851":2,"23852":1,"23853":1,"23854":1,"23855":2,"23856":2,"23857":2,"23858":1,"23859":1,"23860":1,"23861":2,"23862":2,"23863":1,"23864":2,"23865":1,"23866":1,"23867":2,"23868":1,"23869":1,"23870":1,"23871":1,"23872":1,"23873":1,"23874":1,"23875":1,"23876":1,"23877":1,"23878":1,"23879":1,"23880":2,"23881":2,"23882":1,"23883":2,"23884":2,"23885":2,"23886":1,"23887":1,"23888":1,"23889":1,"23890":1,"23891":2,"23892":2,"23893":2,"23894":2,"23895":1,"23896":2,"23897":2,"23898":1,"23899":1,"23900":2,"23901":2,"23902":1,"23903":1,"23904":2,"23905":1,"23906":2,"23907":1,"23908":1,"23909":1,"23910":2,"23911":1,"23912":1,"23913":1,"23914":2,"23915":1,"23916":1,"23917":2,"23918":2,"23919":1,"23920":2,"23921":2,"23922":2,"23923":1,"23924":2,"23925":2,"23926":2,"23927":1,"23928":2,"23929":2,"23930":1,"23931":2,"23932":1,"23933":1,"23934":2,"23935":2,"23936":2,"23937":2,"23938":1,"23939":2,"23940":1,"23941":2,"23942":1,"23943":1,"23944":1,"23945":2,"23946":2,"23947":1,"23948":1,"23949":1,"23950":2,"23951":2,"23952":2,"23953":2,"23954":1,"23955":2,"23956":1,"23957":2,"23958":2,"23959":2,"23960":1,"23961":1,"23962":2,"23963":1,"23964":1,"23965":2,"23966":2,"23967":1,"23968":1,"23969":2,"23970":1,"23971":2,"23972":2,"23973":2,"23974":1,"23975":1,"23976":1,"23977":1,"23978":2,"23979":1,"23980":1,"23981":1,"23982":2,"23983":1,"23984":2,"23985":2,"23986":2,"23987":1,"23988":1,"23989":1,"23990":1,"23991":2,"23992":2,"23993":1,"23994":2,"23995":2,"23996":2,"23997":2,"23998":1,"23999":2,"24000":1,"24001":2,"24002":1,"24003":1,"24004":2,"24005":1,"24006":2,"24007":1,"24008":1,"24009":1,"24010":2,"24011":2,"24012":2,"24013":1,"24014":1,"24015":1,"24016":1,"24017":1,"24018":2,"24019":1,"24020":1,"24021":2,"24022":2,"24023":1,"24024":1,"24025":1,"24026":2,"24027":2,"24028":1,"24029":1,"24030":2,"24031":1,"24032":2,"24033":2,"24034":1,"24035":2,"24036":2,"24037":1,"24038":1,"24039":2,"24040":1,"24041":1,"24042":2,"24043":2,"24044":1,"24045":2,"24046":1,"24047":2,"24048":1,"24049":1,"24050":2,"24051":1,"24052":1,"24053":1,"24054":2,"24055":1,"24056":2,"24057":1,"24058":1,"24059":1,"24060":1,"24061":1,"24062":1,"24063":2,"24064":1,"24065":2,"24066":1,"24067":1,"24068":1,"24069":2,"24070":1,"24071":2,"24072":1,"24073":2,"24074":2,"24075":2,"24076":1,"24077":2,"24078":1,"24079":1,"24080":2,"24081":2,"24082":1,"24083":2,"24084":1,"24085":2,"24086":1,"24087":2,"24088":2,"24089":2,"24090":2,"24091":1,"24092":2,"24093":2,"24094":2,"24095":1,"24096":1,"24097":1,"24098":2,"24099":2,"24100":1,"24101":2,"24102":2,"24103":1,"24104":2,"24105":1,"24106":1,"24107":1,"24108":2,"24109":1,"24110":1,"24111":1,"24112":1,"24113":2,"24114":2,"24115":1,"24116":2,"24117":2,"24118":1,"24119":1,"24120":1,"24121":2,"24122":2,"24123":2,"24124":1,"24125":2,"24126":1,"24127":2,"24128":1,"24129":2,"24130":1,"24131":1,"24132":1,"24133":1,"24134":2,"24135":2,"24136":2,"24137":1,"24138":2,"24139":2,"24140":2,"24141":1,"24142":2,"24143":1,"24144":2,"24145":1,"24146":1,"24147":2,"24148":1,"24149":2,"24150":1,"24151":1,"24152":2,"24153":2,"24154":2,"24155":1,"24156":2,"24157":2,"24158":1,"24159":2,"24160":2,"24161":2,"24162":1,"24163":1,"24164":1,"24165":1,"24166":2,"24167":2,"24168":1,"24169":1,"24170":2,"24171":2,"24172":2,"24173":1,"24174":1,"24175":1,"24176":2,"24177":2,"24178":2,"24179":2,"24180":1,"24181":2,"24182":2,"24183":2,"24184":1,"24185":2,"24186":2,"24187":2,"24188":1,"24189":2,"24190":1,"24191":1,"24192":1,"24193":1,"24194":1,"24195":2,"24196":2,"24197":1,"24198":1,"24199":2,"24200":2,"24201":1,"24202":1,"24203":1,"24204":2,"24205":1,"24206":1,"24207":2,"24208":1,"24209":2,"24210":2,"24211":2,"24212":2,"24213":2,"24214":1,"24215":1,"24216":2,"24217":2,"24218":1,"24219":2,"24220":2,"24221":1,"24222":2,"24223":2,"24224":2,"24225":2,"24226":1,"24227":2,"24228":2,"24229":1,"24230":2,"24231":1,"24232":1,"24233":1,"24234":1,"24235":1,"24236":2,"24237":2,"24238":1,"24239":1,"24240":2,"24241":2,"24242":2,"24243":2,"24244":1,"24245":2,"24246":1,"24247":2,"24248":2,"24249":1,"24250":1,"24251":2,"24252":2,"24253":1,"24254":1,"24255":2,"24256":2,"24257":2,"24258":2,"24259":1,"24260":1,"24261":2,"24262":2,"24263":2,"24264":1,"24265":2,"24266":1,"24267":1,"24268":1,"24269":2,"24270":1,"24271":1,"24272":1,"24273":1,"24274":1,"24275":1,"24276":2,"24277":1,"24278":1,"24279":2,"24280":2,"24281":2,"24282":1,"24283":2,"24284":1,"24285":1,"24286":2,"24287":2,"24288":2,"24289":2,"24290":1,"24291":2,"24292":1,"24293":1,"24294":1,"24295":1,"24296":1,"24297":2,"24298":1,"24299":2,"24300":2,"24301":1,"24302":2,"24303":1,"24304":2,"24305":2,"24306":1,"24307":2,"24308":2,"24309":1,"24310":2,"24311":2,"24312":2,"24313":2,"24314":1,"24315":1,"24316":2,"24317":1,"24318":2,"24319":1,"24320":1,"24321":2,"24322":1,"24323":2,"24324":2,"24325":1,"24326":2,"24327":1,"24328":2,"24329":1,"24330":2,"24331":1,"24332":2,"24333":1,"24334":1,"24335":1,"24336":2,"24337":1,"24338":2,"24339":1,"24340":1,"24341":1,"24342":2,"24343":2,"24344":1,"24345":1,"24346":1,"24347":2,"24348":1,"24349":1,"24350":1,"24351":1,"24352":1,"24353":1,"24354":1,"24355":1,"24356":2,"24357":1,"24358":1,"24359":2,"24360":2,"24361":1,"24362":1,"24363":2,"24364":2,"24365":2,"24366":2,"24367":1,"24368":1,"24369":2,"24370":2,"24371":2,"24372":1,"24373":2,"24374":1,"24375":2,"24376":2,"24377":2,"24378":1,"24379":1,"24380":1,"24381":2,"24382":1,"24383":1,"24384":1,"24385":1,"24386":1,"24387":2,"24388":2,"24389":2,"24390":2,"24391":1,"24392":2,"24393":2,"24394":1,"24395":2,"24396":2,"24397":1,"24398":2,"24399":1,"24400":2,"24401":2,"24402":1,"24403":2,"24404":1,"24405":1,"24406":2,"24407":1,"24408":1,"24409":1,"24410":2,"24411":1,"24412":1,"24413":2,"24414":2,"24415":2,"24416":1,"24417":1,"24418":1,"24419":1,"24420":1,"24421":2,"24422":2,"24423":1,"24424":2,"24425":1,"24426":1,"24427":2,"24428":1,"24429":1,"24430":1,"24431":2,"24432":2,"24433":2,"24434":2,"24435":2,"24436":2,"24437":1,"24438":2,"24439":2,"24440":1,"24441":1,"24442":1,"24443":2,"24444":1,"24445":2,"24446":2,"24447":1,"24448":2,"24449":2,"24450":2,"24451":1,"24452":2,"24453":1,"24454":2,"24455":1,"24456":1,"24457":2,"24458":2,"24459":1,"24460":2,"24461":1,"24462":1,"24463":1,"24464":1,"24465":2,"24466":2,"24467":2,"24468":2,"24469":2,"24470":1,"24471":1,"24472":2,"24473":2,"24474":1,"24475":2,"24476":1,"24477":2,"24478":2,"24479":1,"24480":2,"24481":1,"24482":1,"24483":1,"24484":1,"24485":2,"24486":2,"24487":1,"24488":1,"24489":1,"24490":1,"24491":2,"24492":1,"24493":1,"24494":1,"24495":2,"24496":1,"24497":2,"24498":1,"24499":2,"24500":2,"24501":1,"24502":2,"24503":1,"24504":1,"24505":2,"24506":1,"24507":2,"24508":2,"24509":1,"24510":2,"24511":2,"24512":1,"24513":1,"24514":1,"24515":2,"24516":2,"24517":1,"24518":2,"24519":1,"24520":1,"24521":2,"24522":2,"24523":1,"24524":2,"24525":1,"24526":2,"24527":1,"24528":2,"24529":1,"24530":2,"24531":2,"24532":1,"24533":1,"24534":1,"24535":1,"24536":2,"24537":2,"24538":1,"24539":1,"24540":1,"24541":1,"24542":1,"24543":1,"24544":2,"24545":2,"24546":1,"24547":2,"24548":2,"24549":2,"24550":1,"24551":2,"24552":1,"24553":2,"24554":1,"24555":1,"24556":1,"24557":2,"24558":1,"24559":2,"24560":1,"24561":1,"24562":2,"24563":1,"24564":2,"24565":2,"24566":2,"24567":2,"24568":2,"24569":2,"24570":2,"24571":2,"24572":1,"24573":2,"24574":2,"24575":1,"24576":2,"24577":1,"24578":1,"24579":2,"24580":2,"24581":2,"24582":1,"24583":1,"24584":2,"24585":1,"24586":2,"24587":1,"24588":1,"24589":2,"24590":2,"24591":2,"24592":1,"24593":2,"24594":2,"24595":2,"24596":2,"24597":1,"24598":1,"24599":2,"24600":2,"24601":2,"24602":1,"24603":1,"24604":1,"24605":2,"24606":1,"24607":2,"24608":2,"24609":2,"24610":2,"24611":1,"24612":2,"24613":2,"24614":1,"24615":1,"24616":2,"24617":2,"24618":2,"24619":1,"24620":2,"24621":1,"24622":2,"24623":1,"24624":2,"24625":2,"24626":1,"24627":1,"24628":2,"24629":1,"24630":1,"24631":1,"24632":2,"24633":2,"24634":1,"24635":1,"24636":1,"24637":2,"24638":1,"24639":1,"24640":2,"24641":1,"24642":2,"24643":1,"24644":2,"24645":2,"24646":1,"24647":1,"24648":1,"24649":2,"24650":2,"24651":1,"24652":1,"24653":1,"24654":2,"24655":1,"24656":1,"24657":2,"24658":2,"24659":2,"24660":1,"24661":2,"24662":1,"24663":1,"24664":1,"24665":2,"24666":2,"24667":2,"24668":1,"24669":1,"24670":1,"24671":1,"24672":1,"24673":1,"24674":1,"24675":2,"24676":1,"24677":1,"24678":2,"24679":2,"24680":2,"24681":2,"24682":1,"24683":1,"24684":2,"24685":1,"24686":1,"24687":1,"24688":2,"24689":2,"24690":2,"24691":1,"24692":2,"24693":1,"24694":2,"24695":2,"24696":1,"24697":1,"24698":1,"24699":1,"24700":1,"24701":1,"24702":2,"24703":1,"24704":2,"24705":2,"24706":1,"24707":1,"24708":1,"24709":2,"24710":2,"24711":1,"24712":2,"24713":1,"24714":2,"24715":2,"24716":1,"24717":2,"24718":1,"24719":2,"24720":1,"24721":2,"24722":1,"24723":2,"24724":1,"24725":1,"24726":1,"24727":2,"24728":1,"24729":1,"24730":1,"24731":2,"24732":2,"24733":2,"24734":2,"24735":2,"24736":2,"24737":2,"24738":2,"24739":1,"24740":1,"24741":1,"24742":2,"24743":1,"24744":1,"24745":1,"24746":2,"24747":1,"24748":2,"24749":1,"24750":1,"24751":1,"24752":2,"24753":1,"24754":1,"24755":1,"24756":2,"24757":2,"24758":1,"24759":2,"24760":2,"24761":2,"24762":1,"24763":1,"24764":2,"24765":1,"24766":2,"24767":1,"24768":1,"24769":2,"24770":1,"24771":1,"24772":2,"24773":1,"24774":2,"24775":1,"24776":2,"24777":2,"24778":2,"24779":2,"24780":2,"24781":2,"24782":2,"24783":1,"24784":2,"24785":1,"24786":2,"24787":2,"24788":2,"24789":1,"24790":1,"24791":2,"24792":1,"24793":2,"24794":1,"24795":2,"24796":2,"24797":1,"24798":1,"24799":2,"24800":2,"24801":1,"24802":2,"24803":2,"24804":2,"24805":2,"24806":1,"24807":1,"24808":1,"24809":2,"24810":2,"24811":2,"24812":2,"24813":2,"24814":2,"24815":1,"24816":1,"24817":1,"24818":2,"24819":2,"24820":1,"24821":2,"24822":1,"24823":2,"24824":1,"24825":2,"24826":1,"24827":1,"24828":1,"24829":1,"24830":2,"24831":2,"24832":1,"24833":2,"24834":1,"24835":1,"24836":2,"24837":1,"24838":2,"24839":1,"24840":2,"24841":1,"24842":2,"24843":1,"24844":2,"24845":2,"24846":2,"24847":2,"24848":1,"24849":2,"24850":2,"24851":1,"24852":2,"24853":1,"24854":1,"24855":1,"24856":2,"24857":1,"24858":1,"24859":1,"24860":2,"24861":2,"24862":2,"24863":1,"24864":2,"24865":1,"24866":2,"24867":1,"24868":1,"24869":2,"24870":2,"24871":2,"24872":1,"24873":2,"24874":1,"24875":1,"24876":1,"24877":2,"24878":1,"24879":1,"24880":2,"24881":2,"24882":1,"24883":2,"24884":2,"24885":2,"24886":2,"24887":1,"24888":1,"24889":2,"24890":1,"24891":2,"24892":2,"24893":2,"24894":1,"24895":2,"24896":2,"24897":1,"24898":2,"24899":2,"24900":1,"24901":1,"24902":1,"24903":2,"24904":2,"24905":2,"24906":1,"24907":2,"24908":2,"24909":1,"24910":2,"24911":2,"24912":2,"24913":1,"24914":1,"24915":2,"24916":2,"24917":2,"24918":2,"24919":1,"24920":2,"24921":2,"24922":1,"24923":1,"24924":2,"24925":1,"24926":2,"24927":2,"24928":2,"24929":1,"24930":2,"24931":2,"24932":2,"24933":1,"24934":2,"24935":1,"24936":2,"24937":2,"24938":1,"24939":2,"24940":1,"24941":2,"24942":1,"24943":2,"24944":2,"24945":1,"24946":2,"24947":2,"24948":1,"24949":1,"24950":2,"24951":2,"24952":1,"24953":2,"24954":2,"24955":1,"24956":2,"24957":2,"24958":1,"24959":2,"24960":2,"24961":1,"24962":2,"24963":2,"24964":2,"24965":1,"24966":1,"24967":1,"24968":1,"24969":1,"24970":2,"24971":2,"24972":2,"24973":1,"24974":1,"24975":1,"24976":2,"24977":1,"24978":2,"24979":1,"24980":2,"24981":2,"24982":1,"24983":1,"24984":1,"24985":2,"24986":2,"24987":2,"24988":2,"24989":2,"24990":2,"24991":2,"24992":2,"24993":2,"24994":1,"24995":1,"24996":2,"24997":2,"24998":1,"24999":2,"25000":1,"25001":2,"25002":2,"25003":2,"25004":2,"25005":1,"25006":1,"25007":1,"25008":1,"25009":2,"25010":2,"25011":2,"25012":1,"25013":1,"25014":1,"25015":1,"25016":1,"25017":2,"25018":2,"25019":1,"25020":1,"25021":1,"25022":2,"25023":2,"25024":1,"25025":2,"25026":2,"25027":1,"25028":1,"25029":2,"25030":2,"25031":2,"25032":2,"25033":2,"25034":2,"25035":2,"25036":2,"25037":2,"25038":2,"25039":1,"25040":1,"25041":1,"25042":1,"25043":2,"25044":1,"25045":1,"25046":1,"25047":1,"25048":1,"25049":2,"25050":2,"25051":1,"25052":2,"25053":1,"25054":1,"25055":1,"25056":1,"25057":2,"25058":2,"25059":1,"25060":2,"25061":1,"25062":2,"25063":1,"25064":1,"25065":1,"25066":2,"25067":1,"25068":1,"25069":2,"25070":1,"25071":2,"25072":1,"25073":1,"25074":2,"25075":2,"25076":2,"25077":2,"25078":2,"25079":2,"25080":2,"25081":2,"25082":1,"25083":1,"25084":2,"25085":1,"25086":1,"25087":2,"25088":1,"25089":1,"25090":2,"25091":2,"25092":1,"25093":1,"25094":1,"25095":2,"25096":2,"25097":1,"25098":2,"25099":1,"25100":1,"25101":1,"25102":1,"25103":2,"25104":1,"25105":2,"25106":1,"25107":1,"25108":2,"25109":2,"25110":2,"25111":2,"25112":1,"25113":1,"25114":2,"25115":1,"25116":1,"25117":2,"25118":2,"25119":1,"25120":1,"25121":2,"25122":2,"25123":1,"25124":2,"25125":2,"25126":2,"25127":1,"25128":1,"25129":2,"25130":1,"25131":1,"25132":1,"25133":2,"25134":1,"25135":1,"25136":2,"25137":1,"25138":2,"25139":1,"25140":2,"25141":1,"25142":1,"25143":2,"25144":1,"25145":1,"25146":1,"25147":1,"25148":2,"25149":2,"25150":1,"25151":1,"25152":1,"25153":1,"25154":2,"25155":2,"25156":1,"25157":1,"25158":2,"25159":1,"25160":2,"25161":1,"25162":2,"25163":1,"25164":1,"25165":2,"25166":2,"25167":1,"25168":2,"25169":2,"25170":2,"25171":1,"25172":1,"25173":1,"25174":1,"25175":1,"25176":2,"25177":1,"25178":1,"25179":2,"25180":1,"25181":1,"25182":1,"25183":2,"25184":1,"25185":2,"25186":1,"25187":2,"25188":2,"25189":1,"25190":1,"25191":1,"25192":2,"25193":2,"25194":1,"25195":2,"25196":2,"25197":1,"25198":1,"25199":1,"25200":1,"25201":1,"25202":2,"25203":2,"25204":1,"25205":1,"25206":2,"25207":2,"25208":1,"25209":1,"25210":2,"25211":1,"25212":2,"25213":2,"25214":2,"25215":2,"25216":2,"25217":2,"25218":2,"25219":2,"25220":2,"25221":1,"25222":2,"25223":2,"25224":2,"25225":1,"25226":1,"25227":2,"25228":2,"25229":2,"25230":2,"25231":2,"25232":2,"25233":2,"25234":1,"25235":2,"25236":1,"25237":2,"25238":1,"25239":1,"25240":2,"25241":2,"25242":1,"25243":1,"25244":1,"25245":1,"25246":1,"25247":1,"25248":2,"25249":2,"25250":2,"25251":1,"25252":2,"25253":1,"25254":1,"25255":1,"25256":1,"25257":1,"25258":1,"25259":2,"25260":2,"25261":1,"25262":1,"25263":2,"25264":1,"25265":1,"25266":2,"25267":1,"25268":2,"25269":2,"25270":1,"25271":1,"25272":2,"25273":2,"25274":2,"25275":1,"25276":2,"25277":2,"25278":1,"25279":2,"25280":1,"25281":2,"25282":2,"25283":2,"25284":1,"25285":2,"25286":1,"25287":2,"25288":2,"25289":1,"25290":1,"25291":1,"25292":2,"25293":1,"25294":2,"25295":2,"25296":1,"25297":2,"25298":1,"25299":1,"25300":1,"25301":1,"25302":1,"25303":1,"25304":1,"25305":2,"25306":1,"25307":2,"25308":2,"25309":1,"25310":2,"25311":1,"25312":2,"25313":1,"25314":1,"25315":2,"25316":2,"25317":2,"25318":2,"25319":2,"25320":1,"25321":2,"25322":1,"25323":1,"25324":1,"25325":2,"25326":2,"25327":2,"25328":1,"25329":1,"25330":2,"25331":2,"25332":1,"25333":1,"25334":1,"25335":2,"25336":2,"25337":2,"25338":2,"25339":1,"25340":1,"25341":1,"25342":2,"25343":1,"25344":1,"25345":2,"25346":1,"25347":1,"25348":2,"25349":1,"25350":1,"25351":2,"25352":2,"25353":1,"25354":2,"25355":2,"25356":2,"25357":2,"25358":1,"25359":1,"25360":2,"25361":1,"25362":2,"25363":2,"25364":1,"25365":1,"25366":2,"25367":1,"25368":1,"25369":1,"25370":2,"25371":1,"25372":1,"25373":2,"25374":1,"25375":1,"25376":2,"25377":2,"25378":1,"25379":2,"25380":2,"25381":1,"25382":1,"25383":2,"25384":2,"25385":2,"25386":2,"25387":1,"25388":1,"25389":2,"25390":2,"25391":1,"25392":2,"25393":1,"25394":1,"25395":2,"25396":2,"25397":1,"25398":2,"25399":2,"25400":2,"25401":2,"25402":2,"25403":1,"25404":2,"25405":1,"25406":1,"25407":1,"25408":2,"25409":2,"25410":2,"25411":1,"25412":1,"25413":2,"25414":2,"25415":1,"25416":1,"25417":1,"25418":1,"25419":1,"25420":1,"25421":1,"25422":1,"25423":1,"25424":2,"25425":1,"25426":2,"25427":1,"25428":1,"25429":2,"25430":1,"25431":2,"25432":1,"25433":1,"25434":2,"25435":2,"25436":2,"25437":1,"25438":2,"25439":1,"25440":1,"25441":2,"25442":2,"25443":1,"25444":1,"25445":1,"25446":1,"25447":2,"25448":2,"25449":1,"25450":2,"25451":1,"25452":1,"25453":1,"25454":1,"25455":1,"25456":2,"25457":1,"25458":1,"25459":1,"25460":1,"25461":2,"25462":1,"25463":1,"25464":2,"25465":2,"25466":1,"25467":2,"25468":1,"25469":2,"25470":1,"25471":1,"25472":1,"25473":2,"25474":2,"25475":1,"25476":2,"25477":2,"25478":2,"25479":1,"25480":1,"25481":2,"25482":1,"25483":1,"25484":2,"25485":1,"25486":2,"25487":2,"25488":1,"25489":1,"25490":1,"25491":2,"25492":1,"25493":2,"25494":2,"25495":2,"25496":1,"25497":1,"25498":1,"25499":2,"25500":1,"25501":1,"25502":1,"25503":2,"25504":2,"25505":2,"25506":2,"25507":2,"25508":1,"25509":1,"25510":1,"25511":2,"25512":2,"25513":1,"25514":1,"25515":2,"25516":2,"25517":1,"25518":1,"25519":2,"25520":1,"25521":1,"25522":2,"25523":1,"25524":2,"25525":2,"25526":1,"25527":2,"25528":1,"25529":1,"25530":1,"25531":2,"25532":1,"25533":1,"25534":2,"25535":1,"25536":1,"25537":2,"25538":1,"25539":1,"25540":2,"25541":2,"25542":2,"25543":1,"25544":1,"25545":2,"25546":2,"25547":1,"25548":1,"25549":1,"25550":1,"25551":1,"25552":2,"25553":2,"25554":1,"25555":2,"25556":1,"25557":1,"25558":2,"25559":2,"25560":1,"25561":1,"25562":2,"25563":1,"25564":1,"25565":2,"25566":1,"25567":2,"25568":1,"25569":2,"25570":1,"25571":1,"25572":1,"25573":2,"25574":2,"25575":2,"25576":2,"25577":2,"25578":1,"25579":2,"25580":2,"25581":2,"25582":2,"25583":1,"25584":2,"25585":1,"25586":2,"25587":1,"25588":2,"25589":2,"25590":1,"25591":1,"25592":1,"25593":2,"25594":2,"25595":1,"25596":1,"25597":1,"25598":2,"25599":1,"25600":1,"25601":2,"25602":2,"25603":1,"25604":1,"25605":2,"25606":1,"25607":1,"25608":1,"25609":1,"25610":1,"25611":1,"25612":2,"25613":1,"25614":1,"25615":2,"25616":2,"25617":2,"25618":1,"25619":1,"25620":1,"25621":2,"25622":2,"25623":1,"25624":2,"25625":1,"25626":2,"25627":1,"25628":1,"25629":2,"25630":2,"25631":2,"25632":1,"25633":2,"25634":2,"25635":1,"25636":1,"25637":1,"25638":1,"25639":1,"25640":1,"25641":2,"25642":2,"25643":1,"25644":1,"25645":1,"25646":2,"25647":1,"25648":1,"25649":2,"25650":1,"25651":1,"25652":2,"25653":2,"25654":2,"25655":2,"25656":1,"25657":1,"25658":1,"25659":1,"25660":1,"25661":2,"25662":1,"25663":1,"25664":1,"25665":2,"25666":2,"25667":2,"25668":1,"25669":2,"25670":2,"25671":2,"25672":1,"25673":2,"25674":1,"25675":1,"25676":2,"25677":2,"25678":2,"25679":2,"25680":2,"25681":2,"25682":2,"25683":1,"25684":1,"25685":1,"25686":1,"25687":2,"25688":2,"25689":1,"25690":1,"25691":2,"25692":1,"25693":2,"25694":1,"25695":1,"25696":1,"25697":2,"25698":1,"25699":1,"25700":2,"25701":2,"25702":1,"25703":2,"25704":2,"25705":2,"25706":2,"25707":2,"25708":1,"25709":2,"25710":1,"25711":2,"25712":1,"25713":2,"25714":1,"25715":1,"25716":1,"25717":1,"25718":1,"25719":1,"25720":1,"25721":1,"25722":1,"25723":2,"25724":1,"25725":2,"25726":1,"25727":2,"25728":1,"25729":2,"25730":1,"25731":1,"25732":2,"25733":2,"25734":2,"25735":2,"25736":1,"25737":2,"25738":1,"25739":1,"25740":1,"25741":2,"25742":1,"25743":2,"25744":1,"25745":1,"25746":1,"25747":2,"25748":1,"25749":2,"25750":1,"25751":2,"25752":2,"25753":1,"25754":1,"25755":2,"25756":1,"25757":1,"25758":1,"25759":1,"25760":1,"25761":1,"25762":2,"25763":2,"25764":1,"25765":1,"25766":2,"25767":1,"25768":2,"25769":2,"25770":2,"25771":2,"25772":1,"25773":2,"25774":1,"25775":2,"25776":1,"25777":2,"25778":1,"25779":1,"25780":2,"25781":2,"25782":1,"25783":1,"25784":1,"25785":2,"25786":1,"25787":2,"25788":1,"25789":2,"25790":2,"25791":1,"25792":1,"25793":2,"25794":2,"25795":1,"25796":2,"25797":2,"25798":2,"25799":2,"25800":1,"25801":1,"25802":1,"25803":2,"25804":1,"25805":2,"25806":1,"25807":2,"25808":1,"25809":2,"25810":2,"25811":1,"25812":2,"25813":1,"25814":1,"25815":2,"25816":1,"25817":2,"25818":2,"25819":1,"25820":1,"25821":1,"25822":1,"25823":2,"25824":1,"25825":2,"25826":2,"25827":1,"25828":2,"25829":1,"25830":2,"25831":1,"25832":1,"25833":2,"25834":2,"25835":2,"25836":1,"25837":1,"25838":1,"25839":1,"25840":1,"25841":2,"25842":1,"25843":2,"25844":1,"25845":2,"25846":1,"25847":2,"25848":2,"25849":1,"25850":2,"25851":2,"25852":2,"25853":1,"25854":1,"25855":2,"25856":2,"25857":2,"25858":1,"25859":1,"25860":2,"25861":2,"25862":1,"25863":2,"25864":2,"25865":2,"25866":1,"25867":2,"25868":1,"25869":2,"25870":2,"25871":1,"25872":2,"25873":1,"25874":2,"25875":1,"25876":1,"25877":1,"25878":2,"25879":2,"25880":1,"25881":1,"25882":2,"25883":1,"25884":1,"25885":1,"25886":1,"25887":1,"25888":1,"25889":1,"25890":1,"25891":1,"25892":1,"25893":1,"25894":1,"25895":2,"25896":2,"25897":1,"25898":1,"25899":2,"25900":1,"25901":2,"25902":2,"25903":1,"25904":1,"25905":1,"25906":2,"25907":1,"25908":1,"25909":1,"25910":2,"25911":2,"25912":1,"25913":2,"25914":1,"25915":1,"25916":1,"25917":2,"25918":2,"25919":2,"25920":1,"25921":2,"25922":2,"25923":1,"25924":2,"25925":2,"25926":1,"25927":1,"25928":2,"25929":2,"25930":1,"25931":1,"25932":2,"25933":2,"25934":1,"25935":1,"25936":2,"25937":2,"25938":2,"25939":2,"25940":1,"25941":1,"25942":1,"25943":2,"25944":1,"25945":2,"25946":1,"25947":2,"25948":1,"25949":2,"25950":2,"25951":2,"25952":1,"25953":2,"25954":1,"25955":1,"25956":1,"25957":1,"25958":2,"25959":1,"25960":1,"25961":1,"25962":2,"25963":1,"25964":2,"25965":1,"25966":2,"25967":2,"25968":2,"25969":1,"25970":1,"25971":1,"25972":1,"25973":2,"25974":1,"25975":1,"25976":1,"25977":1,"25978":1,"25979":1,"25980":1,"25981":1,"25982":1,"25983":1,"25984":2,"25985":2,"25986":2,"25987":2,"25988":1,"25989":1,"25990":1,"25991":1,"25992":2,"25993":2,"25994":2,"25995":1,"25996":2,"25997":2,"25998":1,"25999":1,"26000":2,"26001":1,"26002":2,"26003":1,"26004":2,"26005":2,"26006":2,"26007":2,"26008":2,"26009":1,"26010":1,"26011":2,"26012":1,"26013":1,"26014":1,"26015":1,"26016":2,"26017":2,"26018":1,"26019":1,"26020":2,"26021":2,"26022":1,"26023":1,"26024":1,"26025":2,"26026":2,"26027":2,"26028":2,"26029":1,"26030":1,"26031":1,"26032":1,"26033":1,"26034":1,"26035":1,"26036":2,"26037":2,"26038":2,"26039":2,"26040":2,"26041":1,"26042":2,"26043":1,"26044":1,"26045":1,"26046":2,"26047":1,"26048":2,"26049":1,"26050":1,"26051":2,"26052":1,"26053":2,"26054":2,"26055":1,"26056":2,"26057":1,"26058":1,"26059":1,"26060":2,"26061":2,"26062":1,"26063":1,"26064":1,"26065":1,"26066":1,"26067":1,"26068":2,"26069":1,"26070":1,"26071":1,"26072":1,"26073":2,"26074":2,"26075":1,"26076":2,"26077":2,"26078":1,"26079":2,"26080":2,"26081":2,"26082":2,"26083":2,"26084":2,"26085":1,"26086":2,"26087":1,"26088":2,"26089":1,"26090":1,"26091":2,"26092":2,"26093":2,"26094":1,"26095":2,"26096":2,"26097":1,"26098":2,"26099":1,"26100":1,"26101":2,"26102":1,"26103":2,"26104":1,"26105":2,"26106":1,"26107":2,"26108":2,"26109":1,"26110":2,"26111":1,"26112":1,"26113":1,"26114":1,"26115":1,"26116":2,"26117":1,"26118":2,"26119":1,"26120":2,"26121":1,"26122":1,"26123":2,"26124":2,"26125":2,"26126":1,"26127":1,"26128":1,"26129":1,"26130":1,"26131":1,"26132":1,"26133":1,"26134":2,"26135":2,"26136":1,"26137":2,"26138":1,"26139":1,"26140":2,"26141":2,"26142":1,"26143":1,"26144":1,"26145":2,"26146":1,"26147":1,"26148":2,"26149":2,"26150":1,"26151":2,"26152":1,"26153":2,"26154":2,"26155":2,"26156":1,"26157":2,"26158":1,"26159":1,"26160":2,"26161":1,"26162":2,"26163":2,"26164":2,"26165":1,"26166":1,"26167":2,"26168":1,"26169":2,"26170":2,"26171":2,"26172":1,"26173":2,"26174":1,"26175":1,"26176":1,"26177":2,"26178":2,"26179":2,"26180":2,"26181":2,"26182":1,"26183":1,"26184":1,"26185":1,"26186":1,"26187":1,"26188":1,"26189":2,"26190":2,"26191":1,"26192":1,"26193":1,"26194":1,"26195":2,"26196":1,"26197":2,"26198":2,"26199":1,"26200":2,"26201":2,"26202":2,"26203":2,"26204":2,"26205":2,"26206":1,"26207":1,"26208":2,"26209":2,"26210":2,"26211":2,"26212":2,"26213":1,"26214":1,"26215":2,"26216":1,"26217":1,"26218":2,"26219":2,"26220":2,"26221":1,"26222":1,"26223":1,"26224":1,"26225":1,"26226":1,"26227":1,"26228":2,"26229":1,"26230":1,"26231":2,"26232":1,"26233":1,"26234":2,"26235":2,"26236":2,"26237":1,"26238":2,"26239":1,"26240":1,"26241":2,"26242":1,"26243":2,"26244":2,"26245":2,"26246":2,"26247":2,"26248":2,"26249":1,"26250":1,"26251":1,"26252":2,"26253":1,"26254":1,"26255":1,"26256":2,"26257":2,"26258":2,"26259":1,"26260":1,"26261":2,"26262":2,"26263":1,"26264":1,"26265":2,"26266":1,"26267":1,"26268":1,"26269":2,"26270":1,"26271":2,"26272":1,"26273":2,"26274":2,"26275":2,"26276":2,"26277":1,"26278":1,"26279":2,"26280":2,"26281":2,"26282":2,"26283":1,"26284":1,"26285":1,"26286":1,"26287":2,"26288":1,"26289":2,"26290":1,"26291":1,"26292":1,"26293":1,"26294":2,"26295":2,"26296":1,"26297":1,"26298":2,"26299":1,"26300":2,"26301":2,"26302":1,"26303":1,"26304":1,"26305":1,"26306":2,"26307":1,"26308":1,"26309":1,"26310":1,"26311":1,"26312":1,"26313":1,"26314":1,"26315":2,"26316":2,"26317":2,"26318":1,"26319":1,"26320":2,"26321":2,"26322":2,"26323":1,"26324":2,"26325":1,"26326":1,"26327":2,"26328":2,"26329":1,"26330":2,"26331":1,"26332":1,"26333":2,"26334":2,"26335":1,"26336":2,"26337":2,"26338":2,"26339":1,"26340":2,"26341":2,"26342":1,"26343":2,"26344":2,"26345":2,"26346":2,"26347":1,"26348":2,"26349":2,"26350":1,"26351":1,"26352":1,"26353":1,"26354":2,"26355":2,"26356":2,"26357":1,"26358":1,"26359":1,"26360":2,"26361":1,"26362":1,"26363":1,"26364":1,"26365":1,"26366":2,"26367":1,"26368":2,"26369":1,"26370":1,"26371":1,"26372":2,"26373":2,"26374":2,"26375":2,"26376":2,"26377":1,"26378":1,"26379":2,"26380":2,"26381":2,"26382":1,"26383":1,"26384":2,"26385":2,"26386":1,"26387":2,"26388":2,"26389":2,"26390":2,"26391":1,"26392":2,"26393":2,"26394":1,"26395":1,"26396":2,"26397":2,"26398":1,"26399":1,"26400":2,"26401":2,"26402":2,"26403":2,"26404":2,"26405":1,"26406":1,"26407":1,"26408":2,"26409":2,"26410":2,"26411":2,"26412":2,"26413":2,"26414":1,"26415":1,"26416":1,"26417":1,"26418":1,"26419":1,"26420":1,"26421":2,"26422":1,"26423":1,"26424":2,"26425":1,"26426":1,"26427":1,"26428":1,"26429":1,"26430":1,"26431":2,"26432":1,"26433":1,"26434":1,"26435":2,"26436":1,"26437":1,"26438":1,"26439":2,"26440":1,"26441":2,"26442":2,"26443":1,"26444":1,"26445":2,"26446":2,"26447":1,"26448":1,"26449":2,"26450":1,"26451":2,"26452":1,"26453":2,"26454":1,"26455":2,"26456":1,"26457":1,"26458":2,"26459":1,"26460":1,"26461":2,"26462":1,"26463":2,"26464":2,"26465":1,"26466":1,"26467":2,"26468":2,"26469":1,"26470":1,"26471":1,"26472":1,"26473":1,"26474":1,"26475":1,"26476":1,"26477":2,"26478":1,"26479":1,"26480":1,"26481":2,"26482":2,"26483":2,"26484":1,"26485":2,"26486":2,"26487":1,"26488":1,"26489":2,"26490":1,"26491":2,"26492":1,"26493":1,"26494":1,"26495":1,"26496":2,"26497":1,"26498":1,"26499":2,"26500":2,"26501":1,"26502":1,"26503":2,"26504":1,"26505":2,"26506":2,"26507":1,"26508":1,"26509":1,"26510":1,"26511":2,"26512":1,"26513":2,"26514":1,"26515":2,"26516":2,"26517":1,"26518":2,"26519":2,"26520":2,"26521":2,"26522":1,"26523":1,"26524":2,"26525":1,"26526":2,"26527":2,"26528":2,"26529":1,"26530":2,"26531":1,"26532":1,"26533":1,"26534":1,"26535":2,"26536":1,"26537":2,"26538":2,"26539":1,"26540":1,"26541":1,"26542":2,"26543":1,"26544":2,"26545":2,"26546":1,"26547":1,"26548":2,"26549":1,"26550":2,"26551":2,"26552":1,"26553":2,"26554":2,"26555":2,"26556":1,"26557":1,"26558":2,"26559":2,"26560":2,"26561":1,"26562":1,"26563":1,"26564":2,"26565":1,"26566":2,"26567":1,"26568":1,"26569":2,"26570":1,"26571":1,"26572":1,"26573":1,"26574":1,"26575":2,"26576":1,"26577":1,"26578":2,"26579":2,"26580":1,"26581":2,"26582":2,"26583":2,"26584":2,"26585":2,"26586":1,"26587":2,"26588":2,"26589":1,"26590":1,"26591":2,"26592":1,"26593":2,"26594":1,"26595":1,"26596":2,"26597":2,"26598":2,"26599":2,"26600":2,"26601":2,"26602":2,"26603":1,"26604":2,"26605":1,"26606":2,"26607":2,"26608":1,"26609":2,"26610":2,"26611":1,"26612":1,"26613":1,"26614":2,"26615":1,"26616":2,"26617":2,"26618":1,"26619":2,"26620":1,"26621":2,"26622":1,"26623":1,"26624":1,"26625":1,"26626":2,"26627":2,"26628":1,"26629":2,"26630":1,"26631":2,"26632":2,"26633":2,"26634":1,"26635":1,"26636":1,"26637":2,"26638":1,"26639":2,"26640":2,"26641":2,"26642":1,"26643":2,"26644":1,"26645":1,"26646":1,"26647":2,"26648":2,"26649":2,"26650":1,"26651":1,"26652":1,"26653":1,"26654":1,"26655":2,"26656":1,"26657":2,"26658":1,"26659":1,"26660":2,"26661":2,"26662":1,"26663":2,"26664":2,"26665":1,"26666":2,"26667":1,"26668":2,"26669":2,"26670":2,"26671":1,"26672":2,"26673":2,"26674":2,"26675":1,"26676":1,"26677":1,"26678":1,"26679":1,"26680":2,"26681":1,"26682":2,"26683":2,"26684":2,"26685":2,"26686":1,"26687":2,"26688":2,"26689":2,"26690":1,"26691":1,"26692":2,"26693":2,"26694":2,"26695":2,"26696":1,"26697":2,"26698":2,"26699":2,"26700":1,"26701":1,"26702":1,"26703":1,"26704":2,"26705":2,"26706":2,"26707":2,"26708":2,"26709":2,"26710":2,"26711":2,"26712":1,"26713":2,"26714":2,"26715":1,"26716":1,"26717":1,"26718":2,"26719":2,"26720":2,"26721":2,"26722":1,"26723":1,"26724":1,"26725":2,"26726":2,"26727":2,"26728":2,"26729":1,"26730":2,"26731":1,"26732":1,"26733":1,"26734":2,"26735":1,"26736":1,"26737":1,"26738":2,"26739":2,"26740":1,"26741":1,"26742":2,"26743":1,"26744":1,"26745":2,"26746":2,"26747":1,"26748":1,"26749":2,"26750":1,"26751":2,"26752":2,"26753":2,"26754":2,"26755":2,"26756":1,"26757":2,"26758":2,"26759":2,"26760":2,"26761":1,"26762":2,"26763":2,"26764":1,"26765":2,"26766":2,"26767":1,"26768":1,"26769":1,"26770":2,"26771":1,"26772":2,"26773":1,"26774":1,"26775":2,"26776":1,"26777":2,"26778":1,"26779":2,"26780":2,"26781":2,"26782":1,"26783":1,"26784":2,"26785":2,"26786":1,"26787":2,"26788":1,"26789":2,"26790":2,"26791":1,"26792":2,"26793":2,"26794":2,"26795":2,"26796":2,"26797":1,"26798":1,"26799":1,"26800":2,"26801":2,"26802":1,"26803":1,"26804":1,"26805":2,"26806":1,"26807":2,"26808":1,"26809":1,"26810":1,"26811":1,"26812":1,"26813":1,"26814":1,"26815":1,"26816":1,"26817":1,"26818":1,"26819":2,"26820":1,"26821":2,"26822":2,"26823":2,"26824":2,"26825":1,"26826":2,"26827":2,"26828":2,"26829":1,"26830":2,"26831":2,"26832":2,"26833":2,"26834":1,"26835":1,"26836":2,"26837":1,"26838":1,"26839":1,"26840":2,"26841":1,"26842":2,"26843":2,"26844":1,"26845":1,"26846":1,"26847":2,"26848":1,"26849":1,"26850":1,"26851":2,"26852":2,"26853":2,"26854":2,"26855":2,"26856":2,"26857":1,"26858":2,"26859":1,"26860":1,"26861":1,"26862":1,"26863":1,"26864":2,"26865":1,"26866":2,"26867":2,"26868":1,"26869":2,"26870":2,"26871":1,"26872":2,"26873":1,"26874":2,"26875":1,"26876":2,"26877":1,"26878":2,"26879":1,"26880":1,"26881":2,"26882":1,"26883":2,"26884":2,"26885":2,"26886":1,"26887":1,"26888":2,"26889":2,"26890":2,"26891":1,"26892":1,"26893":1,"26894":1,"26895":2,"26896":2,"26897":1,"26898":1,"26899":1,"26900":1,"26901":2,"26902":2,"26903":2,"26904":2,"26905":1,"26906":2,"26907":2,"26908":2,"26909":1,"26910":2,"26911":1,"26912":2,"26913":2,"26914":1,"26915":2,"26916":1,"26917":1,"26918":1,"26919":1,"26920":2,"26921":1,"26922":1,"26923":1,"26924":1,"26925":1,"26926":2,"26927":2,"26928":2,"26929":2,"26930":2,"26931":1,"26932":1,"26933":2,"26934":1,"26935":1,"26936":2,"26937":1,"26938":2,"26939":1,"26940":1,"26941":2,"26942":1,"26943":2,"26944":2,"26945":2,"26946":2,"26947":1,"26948":1,"26949":2,"26950":1,"26951":1,"26952":2,"26953":2,"26954":1,"26955":1,"26956":2,"26957":1,"26958":1,"26959":2,"26960":2,"26961":2,"26962":1,"26963":1,"26964":1,"26965":1,"26966":2,"26967":1,"26968":1,"26969":2,"26970":1,"26971":2,"26972":2,"26973":1,"26974":1,"26975":1,"26976":2,"26977":1,"26978":2,"26979":1,"26980":1,"26981":2,"26982":2,"26983":1,"26984":2,"26985":2,"26986":2,"26987":1,"26988":2,"26989":2,"26990":2,"26991":1,"26992":1,"26993":1,"26994":2,"26995":2,"26996":2,"26997":2,"26998":1,"26999":1,"27000":2,"27001":2,"27002":1,"27003":2,"27004":1,"27005":2,"27006":2,"27007":1,"27008":1,"27009":1,"27010":1,"27011":1,"27012":1,"27013":2,"27014":1,"27015":1,"27016":2,"27017":2,"27018":1,"27019":2,"27020":2,"27021":2,"27022":2,"27023":2,"27024":1,"27025":1,"27026":2,"27027":1,"27028":1,"27029":2,"27030":1,"27031":1,"27032":1,"27033":1,"27034":1,"27035":1,"27036":2,"27037":2,"27038":1,"27039":1,"27040":1,"27041":2,"27042":1,"27043":2,"27044":1,"27045":1,"27046":2,"27047":1,"27048":1,"27049":2,"27050":1,"27051":2,"27052":1,"27053":2,"27054":1,"27055":2,"27056":2,"27057":2,"27058":1,"27059":2,"27060":2,"27061":2,"27062":2,"27063":2,"27064":1,"27065":1,"27066":1,"27067":1,"27068":2,"27069":1,"27070":1,"27071":2,"27072":1,"27073":2,"27074":2,"27075":1,"27076":2,"27077":1,"27078":2,"27079":2,"27080":1,"27081":2,"27082":2,"27083":2,"27084":2,"27085":2,"27086":2,"27087":2,"27088":2,"27089":2,"27090":1,"27091":1,"27092":1,"27093":2,"27094":1,"27095":1,"27096":1,"27097":1,"27098":2,"27099":2,"27100":2,"27101":2,"27102":1,"27103":2,"27104":2,"27105":1,"27106":2,"27107":2,"27108":2,"27109":2,"27110":2,"27111":2,"27112":1,"27113":2,"27114":2,"27115":2,"27116":1,"27117":1,"27118":1,"27119":2,"27120":1,"27121":2,"27122":1,"27123":1,"27124":1,"27125":1,"27126":1,"27127":1,"27128":2,"27129":1,"27130":1,"27131":2,"27132":1,"27133":1,"27134":2,"27135":1,"27136":1,"27137":1,"27138":2,"27139":1,"27140":1,"27141":1,"27142":1,"27143":1,"27144":1,"27145":2,"27146":1,"27147":1,"27148":2,"27149":2,"27150":2,"27151":2,"27152":2,"27153":1,"27154":2,"27155":1,"27156":2,"27157":1,"27158":2,"27159":2,"27160":1,"27161":2,"27162":2,"27163":1,"27164":1,"27165":1,"27166":1,"27167":2,"27168":1,"27169":2,"27170":1,"27171":1,"27172":1,"27173":1,"27174":1,"27175":1,"27176":2,"27177":2,"27178":1,"27179":2,"27180":1,"27181":2,"27182":2,"27183":2,"27184":2,"27185":2,"27186":1,"27187":2,"27188":2,"27189":1,"27190":1,"27191":2,"27192":1,"27193":2,"27194":2,"27195":2,"27196":1,"27197":1,"27198":2,"27199":1,"27200":1,"27201":2,"27202":1,"27203":1,"27204":2,"27205":1,"27206":2,"27207":2,"27208":2,"27209":1,"27210":2,"27211":1,"27212":1,"27213":2,"27214":1,"27215":2,"27216":2,"27217":2,"27218":2,"27219":1,"27220":2,"27221":1,"27222":1,"27223":1,"27224":1,"27225":2,"27226":2,"27227":1,"27228":1,"27229":2,"27230":2,"27231":2,"27232":2,"27233":1,"27234":1,"27235":1,"27236":1,"27237":1,"27238":2,"27239":2,"27240":1,"27241":2,"27242":2,"27243":2,"27244":1,"27245":2,"27246":2,"27247":1,"27248":1,"27249":1,"27250":2,"27251":2,"27252":1,"27253":2,"27254":2,"27255":2,"27256":1,"27257":1,"27258":1,"27259":2,"27260":2,"27261":2,"27262":1,"27263":2,"27264":2,"27265":2,"27266":1,"27267":1,"27268":2,"27269":2,"27270":2,"27271":1,"27272":2,"27273":2,"27274":1,"27275":1,"27276":1,"27277":1,"27278":1,"27279":1,"27280":1,"27281":1,"27282":2,"27283":1,"27284":1,"27285":2,"27286":1,"27287":1,"27288":2,"27289":2,"27290":2,"27291":1,"27292":2,"27293":1,"27294":2,"27295":1,"27296":1,"27297":1,"27298":1,"27299":1,"27300":2,"27301":2,"27302":2,"27303":1,"27304":1,"27305":1,"27306":2,"27307":2,"27308":1,"27309":2,"27310":2,"27311":1,"27312":1,"27313":2,"27314":2,"27315":2,"27316":2,"27317":2,"27318":1,"27319":1,"27320":2,"27321":1,"27322":2,"27323":2,"27324":1,"27325":1,"27326":2,"27327":1,"27328":1,"27329":2,"27330":2,"27331":1,"27332":1,"27333":1,"27334":1,"27335":2,"27336":2,"27337":1,"27338":2,"27339":1,"27340":2,"27341":1,"27342":1,"27343":1,"27344":2,"27345":1,"27346":1,"27347":1,"27348":2,"27349":2,"27350":1,"27351":1,"27352":1,"27353":1,"27354":1,"27355":2,"27356":2,"27357":2,"27358":1,"27359":1,"27360":2,"27361":1,"27362":2,"27363":2,"27364":1,"27365":2,"27366":1,"27367":1,"27368":1,"27369":2,"27370":2,"27371":2,"27372":2,"27373":2,"27374":1,"27375":2,"27376":2,"27377":1,"27378":1,"27379":1,"27380":1,"27381":2,"27382":2,"27383":2,"27384":2,"27385":1,"27386":2,"27387":2,"27388":1,"27389":1,"27390":1,"27391":2,"27392":1,"27393":1,"27394":1,"27395":2,"27396":2,"27397":2,"27398":1,"27399":1,"27400":1,"27401":1,"27402":1,"27403":1,"27404":1,"27405":2,"27406":2,"27407":1,"27408":1,"27409":1,"27410":1,"27411":1,"27412":1,"27413":2,"27414":2,"27415":2,"27416":1,"27417":2,"27418":2,"27419":1,"27420":1,"27421":1,"27422":2,"27423":1,"27424":1,"27425":2,"27426":1,"27427":1,"27428":1,"27429":1,"27430":2,"27431":1,"27432":2,"27433":1,"27434":1,"27435":1,"27436":2,"27437":1,"27438":1,"27439":2,"27440":1,"27441":2,"27442":2,"27443":2,"27444":2,"27445":2,"27446":1,"27447":1,"27448":1,"27449":2,"27450":1,"27451":2,"27452":2,"27453":1,"27454":1,"27455":2,"27456":2,"27457":1,"27458":2,"27459":1,"27460":1,"27461":2,"27462":1,"27463":2,"27464":2,"27465":2,"27466":1,"27467":1,"27468":2,"27469":1,"27470":1,"27471":2,"27472":2,"27473":2,"27474":1,"27475":2,"27476":1,"27477":1,"27478":1,"27479":1,"27480":1,"27481":2,"27482":2,"27483":2,"27484":2,"27485":2,"27486":1,"27487":1,"27488":1,"27489":1,"27490":2,"27491":1,"27492":2,"27493":2,"27494":2,"27495":1,"27496":1,"27497":2,"27498":1,"27499":1,"27500":1,"27501":2,"27502":2,"27503":2,"27504":2,"27505":1,"27506":2,"27507":1,"27508":1,"27509":1,"27510":1,"27511":1,"27512":1,"27513":1,"27514":2,"27515":1,"27516":1,"27517":2,"27518":1,"27519":2,"27520":2,"27521":1,"27522":2,"27523":2,"27524":2,"27525":1,"27526":2,"27527":2,"27528":1,"27529":2,"27530":2,"27531":2,"27532":1,"27533":1,"27534":1,"27535":1,"27536":1,"27537":2,"27538":2,"27539":1,"27540":2,"27541":1,"27542":1,"27543":1,"27544":2,"27545":2,"27546":2,"27547":2,"27548":2,"27549":2,"27550":1,"27551":2,"27552":1,"27553":1,"27554":1,"27555":2,"27556":2,"27557":1,"27558":2,"27559":2,"27560":1,"27561":2,"27562":1,"27563":1,"27564":2,"27565":1,"27566":1,"27567":2,"27568":1,"27569":1,"27570":2,"27571":2,"27572":1,"27573":2,"27574":1,"27575":2,"27576":2,"27577":2,"27578":1,"27579":2,"27580":1,"27581":2,"27582":1,"27583":2,"27584":1,"27585":1,"27586":1,"27587":2,"27588":1,"27589":2,"27590":1,"27591":2,"27592":1,"27593":2,"27594":1,"27595":2,"27596":1,"27597":1,"27598":2,"27599":1,"27600":1,"27601":1,"27602":1,"27603":1,"27604":2,"27605":2,"27606":1,"27607":1,"27608":2,"27609":1,"27610":1,"27611":1,"27612":2,"27613":2,"27614":2,"27615":1,"27616":1,"27617":1,"27618":2,"27619":1,"27620":1,"27621":2,"27622":1,"27623":2,"27624":2,"27625":1,"27626":1,"27627":2,"27628":1,"27629":2,"27630":2,"27631":2,"27632":1,"27633":2,"27634":2,"27635":1,"27636":2,"27637":2,"27638":1,"27639":2,"27640":1,"27641":2,"27642":1,"27643":1,"27644":1,"27645":1,"27646":1,"27647":2,"27648":1,"27649":1,"27650":1,"27651":2,"27652":2,"27653":1,"27654":2,"27655":1,"27656":1,"27657":2,"27658":1,"27659":1,"27660":1,"27661":2,"27662":1,"27663":1,"27664":2,"27665":2,"27666":2,"27667":2,"27668":1,"27669":1,"27670":2,"27671":2,"27672":1,"27673":2,"27674":2,"27675":2,"27676":2,"27677":2,"27678":2,"27679":1,"27680":1,"27681":2,"27682":1,"27683":1,"27684":1,"27685":1,"27686":1,"27687":1,"27688":2,"27689":2,"27690":1,"27691":1,"27692":2,"27693":1,"27694":2,"27695":2,"27696":1,"27697":1,"27698":2,"27699":2,"27700":1,"27701":2,"27702":2,"27703":2,"27704":1,"27705":2,"27706":1,"27707":1,"27708":1,"27709":1,"27710":1,"27711":1,"27712":2,"27713":2,"27714":1,"27715":1,"27716":2,"27717":1,"27718":1,"27719":2,"27720":1,"27721":1,"27722":2,"27723":1,"27724":1,"27725":2,"27726":1,"27727":2,"27728":2,"27729":1,"27730":2,"27731":2,"27732":1,"27733":2,"27734":1,"27735":1,"27736":1,"27737":1,"27738":2,"27739":1,"27740":2,"27741":1,"27742":1,"27743":2,"27744":2,"27745":1,"27746":2,"27747":1,"27748":2,"27749":2,"27750":1,"27751":2,"27752":2,"27753":1,"27754":2,"27755":2,"27756":2,"27757":2,"27758":2,"27759":2,"27760":2,"27761":1,"27762":2,"27763":2,"27764":2,"27765":2,"27766":1,"27767":1,"27768":1,"27769":2,"27770":1,"27771":2,"27772":1,"27773":2,"27774":1,"27775":2,"27776":1,"27777":2,"27778":2,"27779":2,"27780":1,"27781":1,"27782":2,"27783":1,"27784":2,"27785":2,"27786":1,"27787":2,"27788":1,"27789":2,"27790":2,"27791":1,"27792":1,"27793":2,"27794":1,"27795":2,"27796":1,"27797":2,"27798":2,"27799":2,"27800":2,"27801":2,"27802":2,"27803":1,"27804":1,"27805":1,"27806":1,"27807":1,"27808":2,"27809":1,"27810":2,"27811":2,"27812":2,"27813":1,"27814":1,"27815":2,"27816":1,"27817":1,"27818":1,"27819":1,"27820":1,"27821":2,"27822":1,"27823":2,"27824":1,"27825":2,"27826":1,"27827":1,"27828":2,"27829":2,"27830":1,"27831":1,"27832":2,"27833":2,"27834":1,"27835":2,"27836":1,"27837":2,"27838":2,"27839":1,"27840":2,"27841":1,"27842":1,"27843":1,"27844":1,"27845":2,"27846":1,"27847":1,"27848":1,"27849":1,"27850":1,"27851":1,"27852":1,"27853":1,"27854":2,"27855":1,"27856":1,"27857":2,"27858":2,"27859":1,"27860":1,"27861":2,"27862":2,"27863":1,"27864":2,"27865":2,"27866":1,"27867":1,"27868":1,"27869":2,"27870":2,"27871":1,"27872":2,"27873":1,"27874":1,"27875":1,"27876":2,"27877":1,"27878":1,"27879":2,"27880":2,"27881":2,"27882":1,"27883":2,"27884":2,"27885":2,"27886":1,"27887":2,"27888":2,"27889":1,"27890":2,"27891":1,"27892":2,"27893":1,"27894":1,"27895":1,"27896":2,"27897":1,"27898":2,"27899":2,"27900":1,"27901":1,"27902":1,"27903":1,"27904":2,"27905":1,"27906":1,"27907":1,"27908":2,"27909":1,"27910":1,"27911":1,"27912":2,"27913":2,"27914":1,"27915":1,"27916":2,"27917":1,"27918":2,"27919":2,"27920":2,"27921":2,"27922":1,"27923":2,"27924":2,"27925":1,"27926":2,"27927":2,"27928":1,"27929":1,"27930":1,"27931":2,"27932":1,"27933":1,"27934":2,"27935":2,"27936":2,"27937":1,"27938":2,"27939":2,"27940":1,"27941":2,"27942":1,"27943":2,"27944":1,"27945":1,"27946":2,"27947":2,"27948":2,"27949":2,"27950":1,"27951":1,"27952":2,"27953":2,"27954":1,"27955":1,"27956":1,"27957":1,"27958":2,"27959":1,"27960":2,"27961":2,"27962":1,"27963":2,"27964":2,"27965":2,"27966":2,"27967":1,"27968":1,"27969":1,"27970":1,"27971":2,"27972":1,"27973":2,"27974":1,"27975":2,"27976":2,"27977":1,"27978":1,"27979":1,"27980":2,"27981":2,"27982":1,"27983":1,"27984":1,"27985":1,"27986":2,"27987":1,"27988":2,"27989":2,"27990":1,"27991":1,"27992":2,"27993":1,"27994":2,"27995":1,"27996":1,"27997":2,"27998":2,"27999":1,"28000":2,"28001":1,"28002":2,"28003":2,"28004":1,"28005":2,"28006":2,"28007":1,"28008":2,"28009":1,"28010":2,"28011":2,"28012":2,"28013":2,"28014":1,"28015":2,"28016":1,"28017":1,"28018":1,"28019":2,"28020":1,"28021":2,"28022":2,"28023":1,"28024":2,"28025":1,"28026":1,"28027":1,"28028":2,"28029":2,"28030":2,"28031":1,"28032":2,"28033":1,"28034":2,"28035":2,"28036":2,"28037":1,"28038":2,"28039":1,"28040":1,"28041":2,"28042":1,"28043":1,"28044":1,"28045":1,"28046":1,"28047":2,"28048":2,"28049":1,"28050":2,"28051":1,"28052":1,"28053":1,"28054":2,"28055":1,"28056":2,"28057":2,"28058":2,"28059":1,"28060":1,"28061":1,"28062":2,"28063":1,"28064":2,"28065":2,"28066":2,"28067":1,"28068":1,"28069":2,"28070":1,"28071":2,"28072":2,"28073":2,"28074":1,"28075":1,"28076":1,"28077":1,"28078":1,"28079":1,"28080":1,"28081":1,"28082":1,"28083":1,"28084":1,"28085":1,"28086":2,"28087":2,"28088":1,"28089":1,"28090":2,"28091":2,"28092":2,"28093":2,"28094":2,"28095":1,"28096":1,"28097":2,"28098":2,"28099":1,"28100":2,"28101":1,"28102":2,"28103":1,"28104":1,"28105":2,"28106":2,"28107":1,"28108":1,"28109":1,"28110":2,"28111":2,"28112":2,"28113":2,"28114":1,"28115":2,"28116":1,"28117":1,"28118":1,"28119":1,"28120":2,"28121":1,"28122":1,"28123":1,"28124":2,"28125":1,"28126":2,"28127":1,"28128":2,"28129":2,"28130":1,"28131":1,"28132":1,"28133":1,"28134":2,"28135":2,"28136":1,"28137":1,"28138":2,"28139":1,"28140":2,"28141":1,"28142":1,"28143":1,"28144":2,"28145":2,"28146":1,"28147":2,"28148":2,"28149":1,"28150":1,"28151":1,"28152":2,"28153":1,"28154":1,"28155":1,"28156":2,"28157":1,"28158":1,"28159":1,"28160":1,"28161":1,"28162":2,"28163":2,"28164":1,"28165":2,"28166":2,"28167":1,"28168":2,"28169":1,"28170":1,"28171":1,"28172":1,"28173":1,"28174":2,"28175":2,"28176":2,"28177":2,"28178":2,"28179":2,"28180":1,"28181":1,"28182":1,"28183":2,"28184":2,"28185":1,"28186":1,"28187":2,"28188":1,"28189":2,"28190":2,"28191":1,"28192":2,"28193":2,"28194":2,"28195":1,"28196":1,"28197":1,"28198":2,"28199":2,"28200":2,"28201":1,"28202":2,"28203":1,"28204":1,"28205":1,"28206":1,"28207":2,"28208":2,"28209":1,"28210":1,"28211":1,"28212":2,"28213":2,"28214":2,"28215":2,"28216":2,"28217":1,"28218":1,"28219":2,"28220":1,"28221":2,"28222":1,"28223":1,"28224":2,"28225":1,"28226":2,"28227":2,"28228":2,"28229":2,"28230":2,"28231":1,"28232":2,"28233":1,"28234":2,"28235":2,"28236":2,"28237":2,"28238":1,"28239":1,"28240":1,"28241":2,"28242":1,"28243":1,"28244":2,"28245":2,"28246":1,"28247":2,"28248":1,"28249":1,"28250":1,"28251":2,"28252":1,"28253":1,"28254":2,"28255":2,"28256":2,"28257":2,"28258":1,"28259":2,"28260":1,"28261":2,"28262":2,"28263":1,"28264":1,"28265":2,"28266":2,"28267":1,"28268":1,"28269":2,"28270":2,"28271":2,"28272":1,"28273":1,"28274":1,"28275":1,"28276":1,"28277":2,"28278":1,"28279":1,"28280":1,"28281":1,"28282":1,"28283":1,"28284":1,"28285":2,"28286":2,"28287":1,"28288":1,"28289":1,"28290":1,"28291":1,"28292":2,"28293":2,"28294":2,"28295":2,"28296":1,"28297":2,"28298":2,"28299":2,"28300":1,"28301":1,"28302":1,"28303":1,"28304":1,"28305":1,"28306":1,"28307":1,"28308":1,"28309":1,"28310":2,"28311":1,"28312":2,"28313":2,"28314":1,"28315":1,"28316":2,"28317":2,"28318":2,"28319":2,"28320":2,"28321":1,"28322":2,"28323":2,"28324":1,"28325":2,"28326":2,"28327":2,"28328":1,"28329":2,"28330":1,"28331":1,"28332":2,"28333":1,"28334":1,"28335":1,"28336":1,"28337":1,"28338":2,"28339":2,"28340":2,"28341":2,"28342":1,"28343":2,"28344":2,"28345":2,"28346":1,"28347":2,"28348":2,"28349":2,"28350":1,"28351":2,"28352":2,"28353":2,"28354":2,"28355":2,"28356":2,"28357":2,"28358":1,"28359":2,"28360":2,"28361":1,"28362":1,"28363":1,"28364":1,"28365":1,"28366":1,"28367":1,"28368":2,"28369":1,"28370":2,"28371":1,"28372":1,"28373":2,"28374":2,"28375":2,"28376":1,"28377":2,"28378":1,"28379":2,"28380":2,"28381":2,"28382":2,"28383":2,"28384":2,"28385":2,"28386":1,"28387":1,"28388":2,"28389":2,"28390":1,"28391":1,"28392":1,"28393":1,"28394":2,"28395":2,"28396":2,"28397":1,"28398":1,"28399":2,"28400":1,"28401":1,"28402":2,"28403":1,"28404":2,"28405":2,"28406":2,"28407":1,"28408":2,"28409":2,"28410":1,"28411":2,"28412":2,"28413":2,"28414":1,"28415":1,"28416":1,"28417":2,"28418":1,"28419":1,"28420":1,"28421":2,"28422":2,"28423":2,"28424":1,"28425":1,"28426":1,"28427":2,"28428":2,"28429":1,"28430":1,"28431":1,"28432":2,"28433":2,"28434":2,"28435":1,"28436":1,"28437":1,"28438":2,"28439":1,"28440":2,"28441":2,"28442":2,"28443":1,"28444":2,"28445":1,"28446":2,"28447":2,"28448":1,"28449":2,"28450":2,"28451":1,"28452":1,"28453":2,"28454":1,"28455":1,"28456":2,"28457":2,"28458":1,"28459":2,"28460":1,"28461":1,"28462":1,"28463":1,"28464":2,"28465":2,"28466":1,"28467":1,"28468":1,"28469":1,"28470":1,"28471":2,"28472":2,"28473":1,"28474":2,"28475":2,"28476":2,"28477":2,"28478":2,"28479":2,"28480":1,"28481":1,"28482":1,"28483":1,"28484":2,"28485":2,"28486":1,"28487":2,"28488":2,"28489":2,"28490":1,"28491":2,"28492":1,"28493":2,"28494":2,"28495":2,"28496":2,"28497":1,"28498":2,"28499":1,"28500":1,"28501":2,"28502":1,"28503":1,"28504":1,"28505":2,"28506":2,"28507":2,"28508":2,"28509":2,"28510":1,"28511":1,"28512":2,"28513":2,"28514":1,"28515":1,"28516":2,"28517":1,"28518":2,"28519":2,"28520":1,"28521":1,"28522":2,"28523":2,"28524":1,"28525":2,"28526":1,"28527":2,"28528":2,"28529":1,"28530":1,"28531":1,"28532":2,"28533":2,"28534":1,"28535":1,"28536":1,"28537":1,"28538":1,"28539":2,"28540":2,"28541":2,"28542":2,"28543":2,"28544":1,"28545":1,"28546":1,"28547":1,"28548":1,"28549":1,"28550":1,"28551":2,"28552":2,"28553":2,"28554":1,"28555":2,"28556":1,"28557":1,"28558":1,"28559":2,"28560":1,"28561":1,"28562":2,"28563":1,"28564":2,"28565":1,"28566":2,"28567":1,"28568":1,"28569":2,"28570":1,"28571":1,"28572":2,"28573":2,"28574":2,"28575":1,"28576":1,"28577":1,"28578":2,"28579":2,"28580":2,"28581":1,"28582":1,"28583":2,"28584":2,"28585":2,"28586":2,"28587":2,"28588":1,"28589":1,"28590":1,"28591":2,"28592":1,"28593":1,"28594":2,"28595":1,"28596":1,"28597":2,"28598":2,"28599":1,"28600":1,"28601":2,"28602":1,"28603":1,"28604":2,"28605":2,"28606":2,"28607":1,"28608":2,"28609":2,"28610":1,"28611":2,"28612":1,"28613":2,"28614":1,"28615":2,"28616":1,"28617":1,"28618":1,"28619":2,"28620":2,"28621":1,"28622":2,"28623":1,"28624":1,"28625":2,"28626":2,"28627":2,"28628":2,"28629":2,"28630":2,"28631":2,"28632":1,"28633":2,"28634":1,"28635":1,"28636":1,"28637":1,"28638":1,"28639":1,"28640":2,"28641":1,"28642":2,"28643":2,"28644":2,"28645":2,"28646":2,"28647":1,"28648":1,"28649":2,"28650":2,"28651":1,"28652":2,"28653":1,"28654":2,"28655":2,"28656":2,"28657":2,"28658":2,"28659":1,"28660":2,"28661":2,"28662":1,"28663":2,"28664":1,"28665":1,"28666":1,"28667":1,"28668":1,"28669":2,"28670":1,"28671":1,"28672":1,"28673":2,"28674":2,"28675":1,"28676":2,"28677":2,"28678":1,"28679":1,"28680":1,"28681":1,"28682":1,"28683":1,"28684":1,"28685":1,"28686":2,"28687":2,"28688":2,"28689":2,"28690":2,"28691":2,"28692":2,"28693":2,"28694":2,"28695":1,"28696":2,"28697":2,"28698":1,"28699":2,"28700":1,"28701":2,"28702":2,"28703":2,"28704":2,"28705":1,"28706":1,"28707":1,"28708":1,"28709":2,"28710":1,"28711":1,"28712":2,"28713":1,"28714":2,"28715":1,"28716":1,"28717":1,"28718":2,"28719":2,"28720":2,"28721":1,"28722":2,"28723":2,"28724":1,"28725":2,"28726":2,"28727":1,"28728":2,"28729":2,"28730":1,"28731":1,"28732":2,"28733":1,"28734":2,"28735":2,"28736":2,"28737":2,"28738":1,"28739":1,"28740":1,"28741":1,"28742":1,"28743":2,"28744":2,"28745":2,"28746":1,"28747":1,"28748":1,"28749":2,"28750":2,"28751":1,"28752":1,"28753":2,"28754":2,"28755":2,"28756":1,"28757":2,"28758":2,"28759":1,"28760":1,"28761":2,"28762":1,"28763":1,"28764":2,"28765":1,"28766":1,"28767":1,"28768":2,"28769":1,"28770":2,"28771":1,"28772":1,"28773":1,"28774":2,"28775":2,"28776":1,"28777":1,"28778":2,"28779":2,"28780":2,"28781":1,"28782":1,"28783":1,"28784":2,"28785":1,"28786":1,"28787":2,"28788":1,"28789":1,"28790":2,"28791":1,"28792":2,"28793":2,"28794":2,"28795":2,"28796":1,"28797":2,"28798":2,"28799":2,"28800":1,"28801":1,"28802":1,"28803":1,"28804":2,"28805":2,"28806":2,"28807":2,"28808":1,"28809":2,"28810":2,"28811":1,"28812":1,"28813":1,"28814":2,"28815":1,"28816":2,"28817":2,"28818":1,"28819":2,"28820":1,"28821":2,"28822":1,"28823":2,"28824":1,"28825":2,"28826":1,"28827":2,"28828":2,"28829":1,"28830":1,"28831":2,"28832":1,"28833":2,"28834":2,"28835":2,"28836":1,"28837":2,"28838":1,"28839":1,"28840":1,"28841":2,"28842":1,"28843":2,"28844":1,"28845":1,"28846":2,"28847":1,"28848":2,"28849":1,"28850":1,"28851":1,"28852":2,"28853":1,"28854":2,"28855":2,"28856":2,"28857":2,"28858":1,"28859":1,"28860":1,"28861":2,"28862":2,"28863":1,"28864":1,"28865":1,"28866":2,"28867":1,"28868":2,"28869":2,"28870":2,"28871":2,"28872":2,"28873":1,"28874":2,"28875":1,"28876":1,"28877":2,"28878":1,"28879":1,"28880":1,"28881":2,"28882":1,"28883":2,"28884":2,"28885":1,"28886":1,"28887":1,"28888":1,"28889":1,"28890":2,"28891":1,"28892":1,"28893":2,"28894":2,"28895":2,"28896":2,"28897":2,"28898":2,"28899":1,"28900":1,"28901":2,"28902":1,"28903":2,"28904":1,"28905":2,"28906":2,"28907":1,"28908":2,"28909":1,"28910":2,"28911":1,"28912":2,"28913":1,"28914":1,"28915":2,"28916":1,"28917":2,"28918":1,"28919":1,"28920":2,"28921":1,"28922":1,"28923":2,"28924":2,"28925":2,"28926":1,"28927":1,"28928":2,"28929":2,"28930":2,"28931":1,"28932":2,"28933":1,"28934":1,"28935":1,"28936":2,"28937":1,"28938":2,"28939":2,"28940":2,"28941":2,"28942":1,"28943":1,"28944":1,"28945":2,"28946":1,"28947":2,"28948":1,"28949":1,"28950":2,"28951":1,"28952":1,"28953":1,"28954":2,"28955":1,"28956":2,"28957":2,"28958":1,"28959":1,"28960":2,"28961":1,"28962":2,"28963":1,"28964":2,"28965":2,"28966":2,"28967":2,"28968":2,"28969":2,"28970":2,"28971":2,"28972":2,"28973":1,"28974":1,"28975":2,"28976":1,"28977":1,"28978":1,"28979":2,"28980":1,"28981":1,"28982":2,"28983":1,"28984":2,"28985":1,"28986":1,"28987":2,"28988":2,"28989":2,"28990":1,"28991":1,"28992":1,"28993":2,"28994":1,"28995":1,"28996":1,"28997":1,"28998":1,"28999":1,"29000":1,"29001":2,"29002":2,"29003":1,"29004":2,"29005":2,"29006":1,"29007":1,"29008":1,"29009":1,"29010":1,"29011":2,"29012":1,"29013":1,"29014":1,"29015":1,"29016":2,"29017":1,"29018":1,"29019":2,"29020":2,"29021":1,"29022":2,"29023":2,"29024":2,"29025":2,"29026":1,"29027":1,"29028":1,"29029":1,"29030":1,"29031":1,"29032":2,"29033":2,"29034":2,"29035":2,"29036":2,"29037":1,"29038":1,"29039":2,"29040":1,"29041":1,"29042":1,"29043":1,"29044":1,"29045":2,"29046":1,"29047":1,"29048":2,"29049":1,"29050":1,"29051":2,"29052":2,"29053":2,"29054":2,"29055":2,"29056":1,"29057":1,"29058":2,"29059":1,"29060":2,"29061":2,"29062":1,"29063":2,"29064":2,"29065":1,"29066":2,"29067":1,"29068":2,"29069":2,"29070":2,"29071":2,"29072":1,"29073":2,"29074":1,"29075":2,"29076":1,"29077":1,"29078":1,"29079":2,"29080":1,"29081":2,"29082":2,"29083":2,"29084":1,"29085":2,"29086":2,"29087":1,"29088":1,"29089":2,"29090":1,"29091":1,"29092":1,"29093":2,"29094":1,"29095":2,"29096":1,"29097":1,"29098":1,"29099":1,"29100":1,"29101":1,"29102":2,"29103":1,"29104":2,"29105":1,"29106":1,"29107":2,"29108":1,"29109":1,"29110":1,"29111":2,"29112":2,"29113":2,"29114":1,"29115":2,"29116":1,"29117":1,"29118":2,"29119":1,"29120":2,"29121":1,"29122":1,"29123":2,"29124":1,"29125":2,"29126":2,"29127":2,"29128":1,"29129":1,"29130":2,"29131":1,"29132":1,"29133":1,"29134":1,"29135":1,"29136":1,"29137":2,"29138":1,"29139":1,"29140":1,"29141":1,"29142":2,"29143":2,"29144":2,"29145":2,"29146":1,"29147":2,"29148":1,"29149":1,"29150":1,"29151":1,"29152":2,"29153":1,"29154":1,"29155":2,"29156":2,"29157":2,"29158":1,"29159":1,"29160":1,"29161":2,"29162":2,"29163":1,"29164":2,"29165":2,"29166":1,"29167":1,"29168":1,"29169":1,"29170":2,"29171":1,"29172":1,"29173":2,"29174":1,"29175":2,"29176":2,"29177":2,"29178":1,"29179":2,"29180":1,"29181":1,"29182":2,"29183":1,"29184":1,"29185":1,"29186":1,"29187":1,"29188":1,"29189":2,"29190":1,"29191":2,"29192":2,"29193":2,"29194":2,"29195":1,"29196":2,"29197":1,"29198":1,"29199":2,"29200":1,"29201":2,"29202":1,"29203":2,"29204":2,"29205":2,"29206":1,"29207":1,"29208":2,"29209":1,"29210":2,"29211":1,"29212":1,"29213":2,"29214":1,"29215":2,"29216":2,"29217":1,"29218":2,"29219":1,"29220":2,"29221":1,"29222":2,"29223":1,"29224":2,"29225":1,"29226":2,"29227":2,"29228":1,"29229":1,"29230":1,"29231":2,"29232":2,"29233":1,"29234":1,"29235":1,"29236":1,"29237":1,"29238":1,"29239":1,"29240":1,"29241":2,"29242":1,"29243":2,"29244":2,"29245":2,"29246":1,"29247":1,"29248":1,"29249":2,"29250":1,"29251":2,"29252":2,"29253":2,"29254":2,"29255":2,"29256":1,"29257":2,"29258":1,"29259":2,"29260":1,"29261":1,"29262":2,"29263":1,"29264":2,"29265":1,"29266":2,"29267":2,"29268":2,"29269":2,"29270":2,"29271":2,"29272":2,"29273":1,"29274":2,"29275":1,"29276":1,"29277":1,"29278":1,"29279":1,"29280":1,"29281":2,"29282":1,"29283":1,"29284":1,"29285":1,"29286":1,"29287":2,"29288":2,"29289":1,"29290":1,"29291":1,"29292":2,"29293":1,"29294":1,"29295":2,"29296":1,"29297":2,"29298":2,"29299":2,"29300":1,"29301":1,"29302":1,"29303":1,"29304":1,"29305":2,"29306":1,"29307":1,"29308":2,"29309":2,"29310":1,"29311":1,"29312":1,"29313":1,"29314":2,"29315":2,"29316":1,"29317":2,"29318":1,"29319":1,"29320":2,"29321":1,"29322":2,"29323":2,"29324":1,"29325":1,"29326":2,"29327":2,"29328":1,"29329":2,"29330":1,"29331":1,"29332":2,"29333":2,"29334":2,"29335":2,"29336":2,"29337":2,"29338":2,"29339":1,"29340":1,"29341":1,"29342":2,"29343":2,"29344":2,"29345":2,"29346":1,"29347":1,"29348":2,"29349":1,"29350":2,"29351":1,"29352":2,"29353":1,"29354":1,"29355":2,"29356":1,"29357":1,"29358":2,"29359":1,"29360":2,"29361":1,"29362":1,"29363":1,"29364":1,"29365":1,"29366":1,"29367":1,"29368":2,"29369":2,"29370":2,"29371":2,"29372":2,"29373":2,"29374":2,"29375":1,"29376":2,"29377":1,"29378":1,"29379":1,"29380":2,"29381":2,"29382":1,"29383":1,"29384":1,"29385":2,"29386":2,"29387":1,"29388":1,"29389":2,"29390":1,"29391":2,"29392":2,"29393":2,"29394":1,"29395":1,"29396":1,"29397":2,"29398":2,"29399":1,"29400":2,"29401":1,"29402":1,"29403":2,"29404":2,"29405":1,"29406":1,"29407":2,"29408":1,"29409":1,"29410":1,"29411":1,"29412":1,"29413":2,"29414":2,"29415":2,"29416":1,"29417":1,"29418":1,"29419":2,"29420":1,"29421":2,"29422":1,"29423":2,"29424":1,"29425":2,"29426":2,"29427":2,"29428":2,"29429":1,"29430":2,"29431":1,"29432":2,"29433":2,"29434":1,"29435":1,"29436":2,"29437":1,"29438":1,"29439":1,"29440":1,"29441":2,"29442":2,"29443":1,"29444":2,"29445":1,"29446":1,"29447":2,"29448":1,"29449":2,"29450":1,"29451":2,"29452":1,"29453":2,"29454":2,"29455":2,"29456":2,"29457":1,"29458":2,"29459":2,"29460":2,"29461":1,"29462":1,"29463":2,"29464":1,"29465":1,"29466":1,"29467":2,"29468":2,"29469":2,"29470":2,"29471":1,"29472":1,"29473":1,"29474":2,"29475":1,"29476":2,"29477":2,"29478":1,"29479":2,"29480":1,"29481":2,"29482":1,"29483":2,"29484":2,"29485":2,"29486":2,"29487":1,"29488":2,"29489":2,"29490":2,"29491":2,"29492":1,"29493":1,"29494":1,"29495":2,"29496":2,"29497":2,"29498":1,"29499":2,"29500":1,"29501":1,"29502":1,"29503":2,"29504":1,"29505":1,"29506":2,"29507":1,"29508":2,"29509":1,"29510":1,"29511":1,"29512":2,"29513":2,"29514":2,"29515":1,"29516":1,"29517":2,"29518":2,"29519":2,"29520":1,"29521":2,"29522":2,"29523":2,"29524":2,"29525":2,"29526":2,"29527":1,"29528":1,"29529":1,"29530":1,"29531":2,"29532":2,"29533":2,"29534":1,"29535":1,"29536":2,"29537":1,"29538":1,"29539":2,"29540":2,"29541":2,"29542":2,"29543":2,"29544":1,"29545":1,"29546":1,"29547":2,"29548":2,"29549":1,"29550":1,"29551":2,"29552":1,"29553":2,"29554":1,"29555":1,"29556":2,"29557":1,"29558":1,"29559":1,"29560":2,"29561":2,"29562":2,"29563":1,"29564":1,"29565":2,"29566":1,"29567":2,"29568":2,"29569":1,"29570":2,"29571":1,"29572":1,"29573":1,"29574":1,"29575":1,"29576":1,"29577":2,"29578":2,"29579":2,"29580":2,"29581":1,"29582":1,"29583":1,"29584":2,"29585":2,"29586":1,"29587":1,"29588":1,"29589":1,"29590":2,"29591":1,"29592":2,"29593":1,"29594":2,"29595":2,"29596":1,"29597":1,"29598":1,"29599":1,"29600":2,"29601":2,"29602":1,"29603":1,"29604":2,"29605":1,"29606":2,"29607":1,"29608":2,"29609":1,"29610":2,"29611":1,"29612":2,"29613":2,"29614":2,"29615":1,"29616":2,"29617":1,"29618":1,"29619":1,"29620":2,"29621":1,"29622":2,"29623":1,"29624":1,"29625":2,"29626":2,"29627":1,"29628":1,"29629":2,"29630":1,"29631":1,"29632":1,"29633":2,"29634":1,"29635":1,"29636":2,"29637":1,"29638":1,"29639":2,"29640":2,"29641":1,"29642":2,"29643":2,"29644":1,"29645":1,"29646":2,"29647":2,"29648":2,"29649":1,"29650":1,"29651":2,"29652":1,"29653":2,"29654":1,"29655":2,"29656":1,"29657":1,"29658":2,"29659":2,"29660":1,"29661":2,"29662":1,"29663":1,"29664":1,"29665":2,"29666":1,"29667":1,"29668":2,"29669":1,"29670":1,"29671":2,"29672":2,"29673":2,"29674":1,"29675":1,"29676":2,"29677":2,"29678":1,"29679":1,"29680":1,"29681":1,"29682":1,"29683":2,"29684":2,"29685":2,"29686":2,"29687":2,"29688":1,"29689":1,"29690":1,"29691":2,"29692":1,"29693":2,"29694":1,"29695":2,"29696":2,"29697":1,"29698":2,"29699":2,"29700":2,"29701":1,"29702":2,"29703":2,"29704":2,"29705":1,"29706":1,"29707":2,"29708":2,"29709":2,"29710":1,"29711":2,"29712":2,"29713":2,"29714":2,"29715":2,"29716":1,"29717":2,"29718":1,"29719":1,"29720":1,"29721":1,"29722":2,"29723":1,"29724":1,"29725":2,"29726":1,"29727":1,"29728":2,"29729":1,"29730":2,"29731":1,"29732":2,"29733":2,"29734":1,"29735":2,"29736":2,"29737":2,"29738":2,"29739":2,"29740":1,"29741":2,"29742":1,"29743":1,"29744":2,"29745":1,"29746":2,"29747":2,"29748":1,"29749":1,"29750":2,"29751":1,"29752":2,"29753":2,"29754":1,"29755":2,"29756":1,"29757":1,"29758":1,"29759":2,"29760":1,"29761":1,"29762":1,"29763":1,"29764":1,"29765":1,"29766":1,"29767":1,"29768":2,"29769":1,"29770":1,"29771":2,"29772":2,"29773":1,"29774":2,"29775":2,"29776":2,"29777":2,"29778":1,"29779":1,"29780":2,"29781":2,"29782":2,"29783":2,"29784":2,"29785":1,"29786":2,"29787":2,"29788":1,"29789":1,"29790":1,"29791":1,"29792":1,"29793":1,"29794":1,"29795":2,"29796":1,"29797":2,"29798":2,"29799":2,"29800":1,"29801":2,"29802":2,"29803":1,"29804":2,"29805":1,"29806":1,"29807":1,"29808":1,"29809":2,"29810":2,"29811":2,"29812":1,"29813":1,"29814":1,"29815":1,"29816":1,"29817":2,"29818":2,"29819":1,"29820":2,"29821":1,"29822":2,"29823":1,"29824":1,"29825":2,"29826":2,"29827":2,"29828":2,"29829":2,"29830":2,"29831":2,"29832":1,"29833":1,"29834":2,"29835":1,"29836":2,"29837":2,"29838":1,"29839":1,"29840":2,"29841":1,"29842":2,"29843":2,"29844":2,"29845":2,"29846":1,"29847":2,"29848":1,"29849":2,"29850":1,"29851":2,"29852":1,"29853":1,"29854":1,"29855":1,"29856":2,"29857":2,"29858":1,"29859":2,"29860":2,"29861":2,"29862":2,"29863":1,"29864":1,"29865":2,"29866":2,"29867":1,"29868":2,"29869":1,"29870":1,"29871":2,"29872":1,"29873":1,"29874":1,"29875":2,"29876":2,"29877":2,"29878":2,"29879":1,"29880":1,"29881":1,"29882":1,"29883":1,"29884":2,"29885":1,"29886":2,"29887":2,"29888":2,"29889":1,"29890":2,"29891":1,"29892":1,"29893":1,"29894":2,"29895":2,"29896":2,"29897":1,"29898":2,"29899":2,"29900":1,"29901":2,"29902":1,"29903":1,"29904":1,"29905":2,"29906":2,"29907":1,"29908":2,"29909":2,"29910":2,"29911":2,"29912":2,"29913":2,"29914":2,"29915":2,"29916":2,"29917":1,"29918":2,"29919":2,"29920":1,"29921":2,"29922":1,"29923":2,"29924":1,"29925":1,"29926":2,"29927":1,"29928":2,"29929":1,"29930":2,"29931":2,"29932":2,"29933":1,"29934":1,"29935":1,"29936":2,"29937":2,"29938":2,"29939":1,"29940":2,"29941":1,"29942":2,"29943":1,"29944":2,"29945":1,"29946":2,"29947":1,"29948":1,"29949":1,"29950":1,"29951":2,"29952":1,"29953":2,"29954":2,"29955":1,"29956":1,"29957":1,"29958":2,"29959":1,"29960":2,"29961":2,"29962":1,"29963":2,"29964":1,"29965":1,"29966":1,"29967":1,"29968":1,"29969":1,"29970":2,"29971":1,"29972":2,"29973":1,"29974":1,"29975":1,"29976":1,"29977":1,"29978":1,"29979":2,"29980":1,"29981":2,"29982":2,"29983":1,"29984":2,"29985":2,"29986":2,"29987":2,"29988":2,"29989":1,"29990":1,"29991":1,"29992":2,"29993":2,"29994":1,"29995":1,"29996":2,"29997":2,"29998":1,"29999":2,"30000":1,"30001":2,"30002":1,"30003":1,"30004":2,"30005":2,"30006":2,"30007":2,"30008":1,"30009":2,"30010":2,"30011":1,"30012":1,"30013":2,"30014":2,"30015":2,"30016":1,"30017":2,"30018":1,"30019":2,"30020":2,"30021":2,"30022":1,"30023":1,"30024":1,"30025":2,"30026":2,"30027":2,"30028":1,"30029":1,"30030":1,"30031":1,"30032":1,"30033":1,"30034":2,"30035":2,"30036":1,"30037":2,"30038":1,"30039":1,"30040":2,"30041":2,"30042":2,"30043":2,"30044":2,"30045":2,"30046":1,"30047":1,"30048":2,"30049":2,"30050":2,"30051":2,"30052":2,"30053":1,"30054":1,"30055":1,"30056":2,"30057":2,"30058":1,"30059":1,"30060":1,"30061":2,"30062":1,"30063":2,"30064":2,"30065":1,"30066":2,"30067":2,"30068":2,"30069":2,"30070":1,"30071":1,"30072":1,"30073":1,"30074":1,"30075":1,"30076":1,"30077":1,"30078":1,"30079":1,"30080":1,"30081":1,"30082":1,"30083":1,"30084":1,"30085":2,"30086":1,"30087":1,"30088":2,"30089":2,"30090":1,"30091":2,"30092":2,"30093":2,"30094":2,"30095":1,"30096":1,"30097":1,"30098":1,"30099":1,"30100":1,"30101":1,"30102":2,"30103":1,"30104":2,"30105":1,"30106":2,"30107":2,"30108":2,"30109":2,"30110":1,"30111":2,"30112":2,"30113":1,"30114":2,"30115":2,"30116":2,"30117":1,"30118":1,"30119":1,"30120":2,"30121":1,"30122":2,"30123":2,"30124":2,"30125":1,"30126":2,"30127":1,"30128":1,"30129":1,"30130":2,"30131":2,"30132":2,"30133":1,"30134":2,"30135":1,"30136":1,"30137":2,"30138":2,"30139":1,"30140":2,"30141":2,"30142":2,"30143":1,"30144":1,"30145":1,"30146":2,"30147":1,"30148":2,"30149":2,"30150":1,"30151":1,"30152":2,"30153":2,"30154":2,"30155":2,"30156":1,"30157":1,"30158":1,"30159":1,"30160":1,"30161":1,"30162":2,"30163":1,"30164":2,"30165":1,"30166":2,"30167":2,"30168":1,"30169":2,"30170":2,"30171":2,"30172":1,"30173":2,"30174":2,"30175":2,"30176":2,"30177":2,"30178":1,"30179":1,"30180":2,"30181":1,"30182":2,"30183":1,"30184":1,"30185":2,"30186":2,"30187":2,"30188":2,"30189":1,"30190":2,"30191":1,"30192":2,"30193":2,"30194":2,"30195":2,"30196":2,"30197":2,"30198":1,"30199":2,"30200":1,"30201":1,"30202":2,"30203":1,"30204":2,"30205":2,"30206":2,"30207":2,"30208":1,"30209":1,"30210":1,"30211":2,"30212":1,"30213":2,"30214":2,"30215":1,"30216":1,"30217":2,"30218":2,"30219":1,"30220":2,"30221":2,"30222":1,"30223":2,"30224":1,"30225":2,"30226":2,"30227":1,"30228":2,"30229":1,"30230":2,"30231":1,"30232":2,"30233":2,"30234":1,"30235":1,"30236":1,"30237":1,"30238":2,"30239":1,"30240":1,"30241":2,"30242":2,"30243":1,"30244":1,"30245":2,"30246":1,"30247":1,"30248":1,"30249":2,"30250":1,"30251":1,"30252":1,"30253":1,"30254":1,"30255":1,"30256":2,"30257":2,"30258":1,"30259":1,"30260":2,"30261":1,"30262":1,"30263":2,"30264":2,"30265":2,"30266":2,"30267":2,"30268":2,"30269":1,"30270":2,"30271":2,"30272":2,"30273":2,"30274":1,"30275":1,"30276":1,"30277":1,"30278":1,"30279":2,"30280":2,"30281":2,"30282":1,"30283":2,"30284":1,"30285":1,"30286":1,"30287":1,"30288":2,"30289":1,"30290":1,"30291":2,"30292":2,"30293":1,"30294":2,"30295":2,"30296":1,"30297":1,"30298":2,"30299":2,"30300":2,"30301":2,"30302":2,"30303":2,"30304":1,"30305":2,"30306":2,"30307":1,"30308":2,"30309":1,"30310":2,"30311":2,"30312":2,"30313":1,"30314":2,"30315":1,"30316":2,"30317":2,"30318":2,"30319":2,"30320":1,"30321":1,"30322":2,"30323":2,"30324":1,"30325":1,"30326":2,"30327":2,"30328":2,"30329":2,"30330":1,"30331":2,"30332":1,"30333":1,"30334":2,"30335":1,"30336":1,"30337":1,"30338":1,"30339":1,"30340":1,"30341":2,"30342":2,"30343":1,"30344":1,"30345":2,"30346":1,"30347":2,"30348":2,"30349":1,"30350":1,"30351":1,"30352":2,"30353":2,"30354":2,"30355":2,"30356":1,"30357":2,"30358":1,"30359":1,"30360":2,"30361":1,"30362":1,"30363":1,"30364":1,"30365":2,"30366":2,"30367":1,"30368":2,"30369":1,"30370":2,"30371":1,"30372":2,"30373":1,"30374":2,"30375":1,"30376":2,"30377":2,"30378":1,"30379":2,"30380":2,"30381":2,"30382":1,"30383":1,"30384":2,"30385":1,"30386":2,"30387":1,"30388":1,"30389":2,"30390":1,"30391":2,"30392":1,"30393":1,"30394":1,"30395":1,"30396":2,"30397":1,"30398":1,"30399":1,"30400":1,"30401":1,"30402":1,"30403":1,"30404":2,"30405":1,"30406":1,"30407":1,"30408":2,"30409":1,"30410":2,"30411":1,"30412":1,"30413":1,"30414":1,"30415":2,"30416":2,"30417":1,"30418":2,"30419":1,"30420":1,"30421":1,"30422":1,"30423":2,"30424":2,"30425":2,"30426":1,"30427":1,"30428":1,"30429":1,"30430":2,"30431":2,"30432":1,"30433":1,"30434":1,"30435":1,"30436":2,"30437":1,"30438":2,"30439":1,"30440":2,"30441":2,"30442":2,"30443":2,"30444":2,"30445":1,"30446":1,"30447":2,"30448":2,"30449":2,"30450":1,"30451":2,"30452":1,"30453":1,"30454":2,"30455":2,"30456":2,"30457":2,"30458":1,"30459":1,"30460":2,"30461":2,"30462":2,"30463":1,"30464":1,"30465":2,"30466":1,"30467":2,"30468":1,"30469":2,"30470":2,"30471":1,"30472":1,"30473":2,"30474":1,"30475":2,"30476":2,"30477":2,"30478":1,"30479":1,"30480":1,"30481":1,"30482":1,"30483":2,"30484":2,"30485":2,"30486":2,"30487":1,"30488":1,"30489":2,"30490":1,"30491":2,"30492":2,"30493":1,"30494":2,"30495":2,"30496":2,"30497":2,"30498":1,"30499":1,"30500":1,"30501":2,"30502":1,"30503":2,"30504":1,"30505":1,"30506":2,"30507":2,"30508":1,"30509":2,"30510":2,"30511":2,"30512":2,"30513":1,"30514":2,"30515":1,"30516":2,"30517":1,"30518":2,"30519":2,"30520":2,"30521":1,"30522":1,"30523":2,"30524":1,"30525":1,"30526":1,"30527":2,"30528":1,"30529":1,"30530":1,"30531":1,"30532":1,"30533":2,"30534":2,"30535":1,"30536":1,"30537":2,"30538":2,"30539":2,"30540":1,"30541":2,"30542":1,"30543":1,"30544":1,"30545":1,"30546":1,"30547":2,"30548":1,"30549":1,"30550":2,"30551":2,"30552":1,"30553":2,"30554":1,"30555":1,"30556":2,"30557":2,"30558":2,"30559":1,"30560":1,"30561":1,"30562":1,"30563":2,"30564":2,"30565":1,"30566":2,"30567":1,"30568":2,"30569":2,"30570":2,"30571":1,"30572":2,"30573":2,"30574":2,"30575":1,"30576":1,"30577":2,"30578":1,"30579":1,"30580":1,"30581":1,"30582":1,"30583":2,"30584":1,"30585":2,"30586":1,"30587":1,"30588":2,"30589":1,"30590":2,"30591":1,"30592":2,"30593":2,"30594":1,"30595":1,"30596":2,"30597":1,"30598":2,"30599":1,"30600":2,"30601":2,"30602":1,"30603":1,"30604":2,"30605":1,"30606":1,"30607":2,"30608":2,"30609":1,"30610":1,"30611":2,"30612":1,"30613":2,"30614":1,"30615":2,"30616":2,"30617":1,"30618":2,"30619":2,"30620":1,"30621":1,"30622":2,"30623":2,"30624":2,"30625":2,"30626":1,"30627":2,"30628":2,"30629":2,"30630":1,"30631":1,"30632":1,"30633":2,"30634":2,"30635":1,"30636":1,"30637":2,"30638":1,"30639":2,"30640":1,"30641":1,"30642":1,"30643":1,"30644":1,"30645":1,"30646":1,"30647":2,"30648":1,"30649":2,"30650":1,"30651":2,"30652":1,"30653":2,"30654":2,"30655":2,"30656":2,"30657":1,"30658":1,"30659":1,"30660":1,"30661":2,"30662":2,"30663":2,"30664":1,"30665":1,"30666":1,"30667":1,"30668":2,"30669":2,"30670":1,"30671":2,"30672":2,"30673":2,"30674":2,"30675":1,"30676":2,"30677":2,"30678":1,"30679":2,"30680":1,"30681":1,"30682":1,"30683":1,"30684":2,"30685":2,"30686":1,"30687":1,"30688":2,"30689":1,"30690":2,"30691":2,"30692":2,"30693":1,"30694":1,"30695":1,"30696":2,"30697":1,"30698":2,"30699":2,"30700":2,"30701":2,"30702":1,"30703":2,"30704":2,"30705":2,"30706":1,"30707":1,"30708":1,"30709":2,"30710":2,"30711":1,"30712":1,"30713":1,"30714":2,"30715":2,"30716":1,"30717":2,"30718":1,"30719":2,"30720":2,"30721":2,"30722":1,"30723":1,"30724":2,"30725":2,"30726":1,"30727":1,"30728":1,"30729":2,"30730":1,"30731":1,"30732":2,"30733":2,"30734":1,"30735":1,"30736":1,"30737":1,"30738":2,"30739":2,"30740":1,"30741":2,"30742":2,"30743":1,"30744":2,"30745":1,"30746":1,"30747":2,"30748":2,"30749":1,"30750":1,"30751":2,"30752":1,"30753":1,"30754":1,"30755":1,"30756":2,"30757":1,"30758":1,"30759":2,"30760":2,"30761":2,"30762":2,"30763":2,"30764":1,"30765":2,"30766":2,"30767":2,"30768":2,"30769":1,"30770":2,"30771":2,"30772":2,"30773":2,"30774":2,"30775":2,"30776":1,"30777":1,"30778":1,"30779":1,"30780":1,"30781":2,"30782":2,"30783":2,"30784":1,"30785":1,"30786":2,"30787":1,"30788":2,"30789":1,"30790":1,"30791":2,"30792":1,"30793":1,"30794":2,"30795":1,"30796":1,"30797":1,"30798":2,"30799":1,"30800":2,"30801":2,"30802":1,"30803":1,"30804":2,"30805":2,"30806":1,"30807":1,"30808":2,"30809":1,"30810":2,"30811":1,"30812":1,"30813":2,"30814":2,"30815":2,"30816":1,"30817":2,"30818":1,"30819":2,"30820":2,"30821":1,"30822":2,"30823":1,"30824":1,"30825":1,"30826":2,"30827":1,"30828":2,"30829":2,"30830":2,"30831":2,"30832":1,"30833":2,"30834":1,"30835":1,"30836":1,"30837":1,"30838":2,"30839":2,"30840":1,"30841":1,"30842":1,"30843":2,"30844":2,"30845":1,"30846":1,"30847":2,"30848":2,"30849":1,"30850":1,"30851":1,"30852":1,"30853":2,"30854":2,"30855":2,"30856":2,"30857":1,"30858":1,"30859":1,"30860":2,"30861":2,"30862":1,"30863":2,"30864":2,"30865":1,"30866":2,"30867":1,"30868":1,"30869":1,"30870":1,"30871":1,"30872":2,"30873":1,"30874":2,"30875":1,"30876":2,"30877":2,"30878":1,"30879":1,"30880":1,"30881":1,"30882":1,"30883":1,"30884":2,"30885":1,"30886":1,"30887":1,"30888":1,"30889":1,"30890":2,"30891":1,"30892":1,"30893":2,"30894":1,"30895":1,"30896":1,"30897":2,"30898":2,"30899":2,"30900":1,"30901":2,"30902":2,"30903":1,"30904":1,"30905":2,"30906":2,"30907":2,"30908":2,"30909":1,"30910":1,"30911":1,"30912":1,"30913":1,"30914":2,"30915":1,"30916":1,"30917":2,"30918":1,"30919":1,"30920":1,"30921":1,"30922":2,"30923":1,"30924":2,"30925":1,"30926":1,"30927":2,"30928":2,"30929":2,"30930":2,"30931":2,"30932":2,"30933":2,"30934":1,"30935":1,"30936":1,"30937":1,"30938":2,"30939":2,"30940":1,"30941":2,"30942":1,"30943":1,"30944":1,"30945":2,"30946":2,"30947":2,"30948":1,"30949":1,"30950":2,"30951":1,"30952":2,"30953":1,"30954":2,"30955":2,"30956":2,"30957":2,"30958":2,"30959":2,"30960":2,"30961":1,"30962":2,"30963":1,"30964":2,"30965":2,"30966":2,"30967":1,"30968":1,"30969":2,"30970":1,"30971":1,"30972":1,"30973":1,"30974":2,"30975":2,"30976":1,"30977":1,"30978":1,"30979":2,"30980":2,"30981":2,"30982":1,"30983":2,"30984":1,"30985":2,"30986":1,"30987":2,"30988":2,"30989":1,"30990":1,"30991":1,"30992":1,"30993":2,"30994":2,"30995":1,"30996":1,"30997":2,"30998":2,"30999":1,"31000":1,"31001":2,"31002":2,"31003":1,"31004":1,"31005":1,"31006":2,"31007":2,"31008":2,"31009":2,"31010":2,"31011":2,"31012":2,"31013":2,"31014":2,"31015":1,"31016":1,"31017":2,"31018":1,"31019":2,"31020":1,"31021":1,"31022":2,"31023":2,"31024":2,"31025":1,"31026":1,"31027":2,"31028":1,"31029":2,"31030":2,"31031":2,"31032":2,"31033":2,"31034":1,"31035":2,"31036":1,"31037":1,"31038":2,"31039":2,"31040":2,"31041":1,"31042":1,"31043":1,"31044":2,"31045":1,"31046":2,"31047":2,"31048":1,"31049":1,"31050":1,"31051":2,"31052":2,"31053":2,"31054":1,"31055":1,"31056":1,"31057":2,"31058":2,"31059":1,"31060":1,"31061":1,"31062":1,"31063":2,"31064":2,"31065":2,"31066":1,"31067":1,"31068":1,"31069":1,"31070":1,"31071":1,"31072":2,"31073":1,"31074":2,"31075":2,"31076":2,"31077":1,"31078":1,"31079":1,"31080":2,"31081":2,"31082":1,"31083":1,"31084":1,"31085":2,"31086":2,"31087":1,"31088":2,"31089":2,"31090":1,"31091":2,"31092":2,"31093":1,"31094":2,"31095":2,"31096":2,"31097":2,"31098":2,"31099":1,"31100":2,"31101":1,"31102":2,"31103":1,"31104":1,"31105":1,"31106":2,"31107":2,"31108":2,"31109":2,"31110":2,"31111":2,"31112":1,"31113":2,"31114":2,"31115":2,"31116":2,"31117":1,"31118":2,"31119":1,"31120":1,"31121":2,"31122":2,"31123":1,"31124":1,"31125":1,"31126":1,"31127":2,"31128":1,"31129":2,"31130":2,"31131":2,"31132":2,"31133":2,"31134":2,"31135":1,"31136":2,"31137":2,"31138":2,"31139":1,"31140":1,"31141":2,"31142":1,"31143":1,"31144":2,"31145":1,"31146":2,"31147":2,"31148":1,"31149":1,"31150":2,"31151":2,"31152":2,"31153":1,"31154":2,"31155":2,"31156":2,"31157":1,"31158":2,"31159":1,"31160":2,"31161":1,"31162":1,"31163":2,"31164":2,"31165":2,"31166":1,"31167":1,"31168":2,"31169":2,"31170":1,"31171":2,"31172":1,"31173":1,"31174":2,"31175":1,"31176":2,"31177":1,"31178":2,"31179":2,"31180":2,"31181":1,"31182":2,"31183":1,"31184":2,"31185":1,"31186":1,"31187":1,"31188":2,"31189":2,"31190":1,"31191":1,"31192":1,"31193":2,"31194":1,"31195":1,"31196":1,"31197":2,"31198":1,"31199":2,"31200":2,"31201":1,"31202":1,"31203":2,"31204":2,"31205":2,"31206":1,"31207":2,"31208":1,"31209":1,"31210":2,"31211":2,"31212":1,"31213":2,"31214":1,"31215":2,"31216":1,"31217":1,"31218":2,"31219":1,"31220":1,"31221":2,"31222":1,"31223":1,"31224":1,"31225":2,"31226":2,"31227":2,"31228":1,"31229":1,"31230":1,"31231":2,"31232":1,"31233":2,"31234":2,"31235":2,"31236":1,"31237":2,"31238":1,"31239":2,"31240":2,"31241":1,"31242":2,"31243":1,"31244":2,"31245":1,"31246":2,"31247":1,"31248":1,"31249":1,"31250":1,"31251":2,"31252":2,"31253":1,"31254":2,"31255":1,"31256":2,"31257":2,"31258":2,"31259":2,"31260":2,"31261":2,"31262":2,"31263":1,"31264":2,"31265":2,"31266":1,"31267":1,"31268":2,"31269":1,"31270":2,"31271":1,"31272":2,"31273":2,"31274":2,"31275":2,"31276":2,"31277":1,"31278":2,"31279":2,"31280":2,"31281":1,"31282":1,"31283":2,"31284":2,"31285":2,"31286":1,"31287":2,"31288":1,"31289":2,"31290":1,"31291":1,"31292":1,"31293":1,"31294":1,"31295":1,"31296":2,"31297":1,"31298":2,"31299":2,"31300":2,"31301":2,"31302":1,"31303":1,"31304":1,"31305":2,"31306":1,"31307":1,"31308":2,"31309":2,"31310":1,"31311":2,"31312":1,"31313":2,"31314":1,"31315":2,"31316":2,"31317":1,"31318":1,"31319":2,"31320":1,"31321":2,"31322":1,"31323":2,"31324":1,"31325":1,"31326":1,"31327":1,"31328":1,"31329":2,"31330":1,"31331":2,"31332":2,"31333":1,"31334":2,"31335":2,"31336":2,"31337":1,"31338":2,"31339":2,"31340":1,"31341":1,"31342":2,"31343":1,"31344":1,"31345":2,"31346":1,"31347":2,"31348":1,"31349":2,"31350":2,"31351":1,"31352":2,"31353":2,"31354":1,"31355":2,"31356":2,"31357":2,"31358":2,"31359":2,"31360":2,"31361":2,"31362":1,"31363":1,"31364":1,"31365":1,"31366":1,"31367":2,"31368":2,"31369":1,"31370":2,"31371":2,"31372":2,"31373":2,"31374":1,"31375":1,"31376":2,"31377":1,"31378":2,"31379":1,"31380":1,"31381":2,"31382":1,"31383":1,"31384":1,"31385":1,"31386":2,"31387":2,"31388":2,"31389":1,"31390":2,"31391":1,"31392":2,"31393":2,"31394":1,"31395":2,"31396":1,"31397":1,"31398":1,"31399":1,"31400":2,"31401":2,"31402":1,"31403":1,"31404":1,"31405":2,"31406":2,"31407":1,"31408":1,"31409":2,"31410":2,"31411":1,"31412":2,"31413":2,"31414":2,"31415":1,"31416":2,"31417":1,"31418":1,"31419":2,"31420":1,"31421":2,"31422":2,"31423":2,"31424":1,"31425":1,"31426":2,"31427":2,"31428":2,"31429":1,"31430":2,"31431":2,"31432":2,"31433":1,"31434":2,"31435":2,"31436":2,"31437":2,"31438":1,"31439":2,"31440":2,"31441":1,"31442":2,"31443":2,"31444":2,"31445":2,"31446":2,"31447":1,"31448":2,"31449":1,"31450":2,"31451":1,"31452":2,"31453":2,"31454":1,"31455":1,"31456":2,"31457":1,"31458":1,"31459":2,"31460":1,"31461":1,"31462":2,"31463":2,"31464":1,"31465":1,"31466":1,"31467":2,"31468":2,"31469":2,"31470":1,"31471":1,"31472":2,"31473":1,"31474":2,"31475":2,"31476":1,"31477":2,"31478":1,"31479":2,"31480":2,"31481":2,"31482":1,"31483":2,"31484":2,"31485":1,"31486":1,"31487":1,"31488":1,"31489":1,"31490":2,"31491":1,"31492":1,"31493":2,"31494":1,"31495":2,"31496":2,"31497":2,"31498":2,"31499":1,"31500":1,"31501":2,"31502":1,"31503":1,"31504":1,"31505":1,"31506":2,"31507":2,"31508":2,"31509":2,"31510":1,"31511":1,"31512":1,"31513":2,"31514":2,"31515":2,"31516":1,"31517":1,"31518":2,"31519":2,"31520":2,"31521":2,"31522":2,"31523":1,"31524":1,"31525":2,"31526":2,"31527":2,"31528":2,"31529":1,"31530":2,"31531":2,"31532":1,"31533":1,"31534":1,"31535":1,"31536":2,"31537":1,"31538":1,"31539":2,"31540":2,"31541":1,"31542":2,"31543":1,"31544":2,"31545":2,"31546":2,"31547":1,"31548":1,"31549":1,"31550":1,"31551":1,"31552":2,"31553":1,"31554":1,"31555":2,"31556":1,"31557":1,"31558":2,"31559":2,"31560":2,"31561":2,"31562":2,"31563":2,"31564":2,"31565":1,"31566":1,"31567":1,"31568":1,"31569":2,"31570":1,"31571":1,"31572":1,"31573":1,"31574":2,"31575":2,"31576":1,"31577":1,"31578":2,"31579":1,"31580":2,"31581":1,"31582":2,"31583":2,"31584":2,"31585":2,"31586":2,"31587":2,"31588":2,"31589":2,"31590":1,"31591":2,"31592":1,"31593":1,"31594":1,"31595":2,"31596":1,"31597":1,"31598":2,"31599":1,"31600":2,"31601":1,"31602":2,"31603":1,"31604":2,"31605":1,"31606":1,"31607":2,"31608":1,"31609":2,"31610":1,"31611":2,"31612":1,"31613":1,"31614":1,"31615":1,"31616":1,"31617":2,"31618":1,"31619":1,"31620":2,"31621":2,"31622":2,"31623":2,"31624":2,"31625":1,"31626":1,"31627":2,"31628":2,"31629":1,"31630":1,"31631":2,"31632":2,"31633":2,"31634":2,"31635":1,"31636":2,"31637":2,"31638":2,"31639":2,"31640":2,"31641":2,"31642":1,"31643":2,"31644":2,"31645":2,"31646":2,"31647":2,"31648":2,"31649":2,"31650":2,"31651":1,"31652":1,"31653":1,"31654":1,"31655":2,"31656":1,"31657":2,"31658":2,"31659":1,"31660":1,"31661":2,"31662":1,"31663":1,"31664":2,"31665":2,"31666":2,"31667":1,"31668":1,"31669":2,"31670":1,"31671":2,"31672":2,"31673":2,"31674":1,"31675":2,"31676":1,"31677":1,"31678":1,"31679":2,"31680":2,"31681":2,"31682":1,"31683":2,"31684":2,"31685":2,"31686":2,"31687":1,"31688":1,"31689":1,"31690":2,"31691":1,"31692":2,"31693":1,"31694":2,"31695":1,"31696":1,"31697":1,"31698":2,"31699":2,"31700":1,"31701":1,"31702":2,"31703":2,"31704":2,"31705":2,"31706":2,"31707":2,"31708":2,"31709":2,"31710":2,"31711":1,"31712":2,"31713":1,"31714":1,"31715":2,"31716":2,"31717":1,"31718":1,"31719":2,"31720":2,"31721":1,"31722":1,"31723":2,"31724":2,"31725":2,"31726":1,"31727":1,"31728":2,"31729":2,"31730":2,"31731":1,"31732":2,"31733":1,"31734":1,"31735":1,"31736":2,"31737":2,"31738":2,"31739":2,"31740":1,"31741":2,"31742":1,"31743":1,"31744":2,"31745":2,"31746":1,"31747":1,"31748":1,"31749":2,"31750":1,"31751":1,"31752":1,"31753":2,"31754":2,"31755":1,"31756":1,"31757":1,"31758":1,"31759":1,"31760":1,"31761":2,"31762":2,"31763":1,"31764":1,"31765":1,"31766":1,"31767":2,"31768":2,"31769":1,"31770":1,"31771":2,"31772":2,"31773":2,"31774":2,"31775":1,"31776":2,"31777":1,"31778":2,"31779":1,"31780":2,"31781":2,"31782":1,"31783":2,"31784":2,"31785":2,"31786":2,"31787":2,"31788":2,"31789":1,"31790":2,"31791":2,"31792":1,"31793":1,"31794":2,"31795":2,"31796":2,"31797":1,"31798":2,"31799":1,"31800":2,"31801":2,"31802":1,"31803":2,"31804":1,"31805":2,"31806":1,"31807":2,"31808":2,"31809":2,"31810":1,"31811":1,"31812":2,"31813":2,"31814":1,"31815":2,"31816":1,"31817":1,"31818":2,"31819":2,"31820":2,"31821":2,"31822":2,"31823":1,"31824":1,"31825":1,"31826":1,"31827":1,"31828":1,"31829":1,"31830":1,"31831":1,"31832":1,"31833":2,"31834":2,"31835":1,"31836":1,"31837":2,"31838":1,"31839":1,"31840":1,"31841":2,"31842":1,"31843":1,"31844":1,"31845":1,"31846":2,"31847":1,"31848":1,"31849":2,"31850":1,"31851":2,"31852":1,"31853":2,"31854":1,"31855":2,"31856":2,"31857":1,"31858":2,"31859":1,"31860":2,"31861":1,"31862":1,"31863":2,"31864":1,"31865":1,"31866":1,"31867":2,"31868":2,"31869":1,"31870":2,"31871":2,"31872":1,"31873":2,"31874":1,"31875":1,"31876":2,"31877":2,"31878":1,"31879":2,"31880":1,"31881":1,"31882":1,"31883":1,"31884":1,"31885":1,"31886":1,"31887":1,"31888":1,"31889":2,"31890":2,"31891":2,"31892":2,"31893":1,"31894":2,"31895":1,"31896":2,"31897":1,"31898":1,"31899":1,"31900":2,"31901":1,"31902":1,"31903":2,"31904":1,"31905":1,"31906":2,"31907":1,"31908":1,"31909":2,"31910":1,"31911":1,"31912":1,"31913":2,"31914":2,"31915":2,"31916":2,"31917":1,"31918":2,"31919":2,"31920":1,"31921":2,"31922":2,"31923":2,"31924":2,"31925":2,"31926":2,"31927":2,"31928":2,"31929":2,"31930":2,"31931":2,"31932":2,"31933":2,"31934":2,"31935":1,"31936":1,"31937":1,"31938":2,"31939":2,"31940":1,"31941":2,"31942":2,"31943":2,"31944":1,"31945":1,"31946":1,"31947":2,"31948":2,"31949":1,"31950":1,"31951":1,"31952":2,"31953":2,"31954":2,"31955":2,"31956":2,"31957":2,"31958":1,"31959":2,"31960":1,"31961":2,"31962":2,"31963":1,"31964":1,"31965":2,"31966":2,"31967":2,"31968":2,"31969":1,"31970":2,"31971":2,"31972":2,"31973":2,"31974":2,"31975":2,"31976":1,"31977":1,"31978":2,"31979":1,"31980":2,"31981":2,"31982":2,"31983":2,"31984":1,"31985":2,"31986":2,"31987":1,"31988":1,"31989":2,"31990":2,"31991":1,"31992":2,"31993":2,"31994":1,"31995":1,"31996":1,"31997":1,"31998":2,"31999":1,"32000":1,"32001":2,"32002":2,"32003":2,"32004":2,"32005":1,"32006":2,"32007":2,"32008":2,"32009":1,"32010":2,"32011":2,"32012":1,"32013":1,"32014":2,"32015":2,"32016":2,"32017":2,"32018":2,"32019":2,"32020":1,"32021":2,"32022":1,"32023":2,"32024":2,"32025":1,"32026":1,"32027":2,"32028":2,"32029":2,"32030":1,"32031":1,"32032":1,"32033":2,"32034":2,"32035":1,"32036":2,"32037":1,"32038":2,"32039":2,"32040":2,"32041":2,"32042":2,"32043":2,"32044":1,"32045":2,"32046":1,"32047":2,"32048":2,"32049":1,"32050":1,"32051":2,"32052":2,"32053":1,"32054":1,"32055":1,"32056":2,"32057":2,"32058":2,"32059":1,"32060":2,"32061":2,"32062":2,"32063":2,"32064":1,"32065":2,"32066":2,"32067":1,"32068":2,"32069":2,"32070":1,"32071":2,"32072":1,"32073":1,"32074":2,"32075":2,"32076":1,"32077":2,"32078":1,"32079":1,"32080":1,"32081":2,"32082":1,"32083":2,"32084":2,"32085":2,"32086":1,"32087":1,"32088":1,"32089":2,"32090":1,"32091":2,"32092":1,"32093":1,"32094":1,"32095":2,"32096":1,"32097":2,"32098":1,"32099":2,"32100":1,"32101":2,"32102":2,"32103":1,"32104":1,"32105":2,"32106":2,"32107":1,"32108":2,"32109":1,"32110":1,"32111":2,"32112":2,"32113":1,"32114":1,"32115":1,"32116":2,"32117":1,"32118":2,"32119":2,"32120":2,"32121":1,"32122":1,"32123":1,"32124":1,"32125":1,"32126":1,"32127":2,"32128":2,"32129":2,"32130":1,"32131":1,"32132":1,"32133":2,"32134":1,"32135":2,"32136":2,"32137":1,"32138":1,"32139":1,"32140":2,"32141":1,"32142":1,"32143":1,"32144":1,"32145":1,"32146":2,"32147":2,"32148":1,"32149":2,"32150":1,"32151":1,"32152":2,"32153":2,"32154":2,"32155":1,"32156":2,"32157":1,"32158":1,"32159":2,"32160":1,"32161":1,"32162":1,"32163":2,"32164":2,"32165":1,"32166":2,"32167":1,"32168":2,"32169":1,"32170":2,"32171":1,"32172":1,"32173":1,"32174":2,"32175":1,"32176":1,"32177":2,"32178":2,"32179":2,"32180":2,"32181":2,"32182":2,"32183":1,"32184":2,"32185":2,"32186":2,"32187":1,"32188":2,"32189":1,"32190":1,"32191":1,"32192":2,"32193":2,"32194":2,"32195":2,"32196":2,"32197":1,"32198":2,"32199":2,"32200":1,"32201":1,"32202":1,"32203":1,"32204":2,"32205":1,"32206":2,"32207":1,"32208":2,"32209":2,"32210":2,"32211":1,"32212":1,"32213":2,"32214":2,"32215":1,"32216":1,"32217":2,"32218":2,"32219":1,"32220":1,"32221":1,"32222":1,"32223":2,"32224":1,"32225":2,"32226":2,"32227":2,"32228":2,"32229":1,"32230":2,"32231":1,"32232":1,"32233":1,"32234":2,"32235":2,"32236":1,"32237":2,"32238":1,"32239":2,"32240":2,"32241":1,"32242":1,"32243":2,"32244":2,"32245":2,"32246":1,"32247":2,"32248":1,"32249":1,"32250":1,"32251":1,"32252":2,"32253":2,"32254":2,"32255":1,"32256":1,"32257":2,"32258":1,"32259":1,"32260":2,"32261":2,"32262":1,"32263":2,"32264":2,"32265":2,"32266":1,"32267":1,"32268":1,"32269":2,"32270":1,"32271":2,"32272":1,"32273":2,"32274":2,"32275":1,"32276":2,"32277":1,"32278":2,"32279":1,"32280":2,"32281":1,"32282":1,"32283":2,"32284":1,"32285":2,"32286":2,"32287":2,"32288":1,"32289":1,"32290":1,"32291":1,"32292":2,"32293":2,"32294":2,"32295":2,"32296":2,"32297":1,"32298":1,"32299":2,"32300":1,"32301":1,"32302":2,"32303":1,"32304":2,"32305":2,"32306":1,"32307":2,"32308":2,"32309":1,"32310":2,"32311":2,"32312":1,"32313":2,"32314":1,"32315":2,"32316":1,"32317":1,"32318":2,"32319":2,"32320":1,"32321":2,"32322":2,"32323":1,"32324":2,"32325":1,"32326":1,"32327":2,"32328":1,"32329":2,"32330":1,"32331":2,"32332":2,"32333":2,"32334":2,"32335":1,"32336":2,"32337":2,"32338":2,"32339":1,"32340":1,"32341":1,"32342":2,"32343":1,"32344":1,"32345":1,"32346":1,"32347":2,"32348":2,"32349":1,"32350":1,"32351":2,"32352":2,"32353":1,"32354":2,"32355":2,"32356":2,"32357":2,"32358":2,"32359":2,"32360":2,"32361":2,"32362":1,"32363":1,"32364":2,"32365":1,"32366":2,"32367":2,"32368":2,"32369":1,"32370":2,"32371":2,"32372":2,"32373":2,"32374":2,"32375":2,"32376":2,"32377":2,"32378":1,"32379":1,"32380":1,"32381":2,"32382":2,"32383":2,"32384":2,"32385":1,"32386":1,"32387":1,"32388":2,"32389":1,"32390":1,"32391":1,"32392":1,"32393":1,"32394":1,"32395":2,"32396":1,"32397":1,"32398":1,"32399":2,"32400":1,"32401":1,"32402":1,"32403":2,"32404":2,"32405":2,"32406":2,"32407":2,"32408":1,"32409":2,"32410":2,"32411":2,"32412":2,"32413":1,"32414":1,"32415":1,"32416":1,"32417":1,"32418":2,"32419":1,"32420":1,"32421":1,"32422":2,"32423":2,"32424":2,"32425":1,"32426":2,"32427":2,"32428":1,"32429":2,"32430":2,"32431":2,"32432":2,"32433":1,"32434":1,"32435":1,"32436":1,"32437":2,"32438":1,"32439":2,"32440":2,"32441":2,"32442":2,"32443":1,"32444":1,"32445":1,"32446":2,"32447":2,"32448":2,"32449":2,"32450":2,"32451":1,"32452":2,"32453":1,"32454":2,"32455":1,"32456":1,"32457":2,"32458":2,"32459":1,"32460":2,"32461":1,"32462":1,"32463":2,"32464":1,"32465":2,"32466":1,"32467":1,"32468":1,"32469":2,"32470":1,"32471":1,"32472":1,"32473":2,"32474":2,"32475":2,"32476":2,"32477":1,"32478":2,"32479":1,"32480":1,"32481":1,"32482":2,"32483":2,"32484":2,"32485":1,"32486":2,"32487":2,"32488":2,"32489":2,"32490":2,"32491":1,"32492":2,"32493":1,"32494":2,"32495":2,"32496":2,"32497":2,"32498":1,"32499":1,"32500":2,"32501":2,"32502":2,"32503":2,"32504":2,"32505":2,"32506":1,"32507":2,"32508":1,"32509":1,"32510":2,"32511":2,"32512":2,"32513":2,"32514":1,"32515":1,"32516":1,"32517":1,"32518":1,"32519":1,"32520":1,"32521":1,"32522":1,"32523":1,"32524":2,"32525":1,"32526":1,"32527":1,"32528":1,"32529":1,"32530":2,"32531":2,"32532":2,"32533":1,"32534":1,"32535":2,"32536":2,"32537":2,"32538":1,"32539":2,"32540":2,"32541":1,"32542":1,"32543":1,"32544":2,"32545":2,"32546":1,"32547":2,"32548":2,"32549":2,"32550":2,"32551":2,"32552":1,"32553":1,"32554":1,"32555":2,"32556":2,"32557":2,"32558":1,"32559":2,"32560":1,"32561":1,"32562":2,"32563":2,"32564":2,"32565":2,"32566":2,"32567":2,"32568":2,"32569":2,"32570":1,"32571":2,"32572":2,"32573":1,"32574":2,"32575":2,"32576":2,"32577":1,"32578":1,"32579":2,"32580":1,"32581":2,"32582":1,"32583":1,"32584":1,"32585":1,"32586":1,"32587":1,"32588":1,"32589":1,"32590":1,"32591":1,"32592":2,"32593":1,"32594":2,"32595":1,"32596":1,"32597":1,"32598":2,"32599":1,"32600":2,"32601":1,"32602":2,"32603":2,"32604":1,"32605":2,"32606":1,"32607":1,"32608":2,"32609":2,"32610":2,"32611":1,"32612":1,"32613":2,"32614":2,"32615":1,"32616":2,"32617":1,"32618":1,"32619":1,"32620":1,"32621":1,"32622":1,"32623":1,"32624":2,"32625":1,"32626":1,"32627":2,"32628":2,"32629":2,"32630":1,"32631":2,"32632":1,"32633":2,"32634":2,"32635":2,"32636":2,"32637":2,"32638":1,"32639":2,"32640":2,"32641":2,"32642":1,"32643":2,"32644":2,"32645":2,"32646":1,"32647":1,"32648":2,"32649":1,"32650":1,"32651":2,"32652":1,"32653":1,"32654":2,"32655":2,"32656":1,"32657":1,"32658":2,"32659":1,"32660":2,"32661":2,"32662":2,"32663":1,"32664":2,"32665":1,"32666":1,"32667":1,"32668":2,"32669":1,"32670":2,"32671":1,"32672":1,"32673":2,"32674":1,"32675":1,"32676":2,"32677":2,"32678":2,"32679":1,"32680":2,"32681":2,"32682":1,"32683":1,"32684":2,"32685":1,"32686":2,"32687":1,"32688":2,"32689":1,"32690":1,"32691":2,"32692":1,"32693":1,"32694":2,"32695":1,"32696":2,"32697":1,"32698":2,"32699":2,"32700":1,"32701":1,"32702":1,"32703":1,"32704":1,"32705":2,"32706":1,"32707":2,"32708":1,"32709":1,"32710":1,"32711":1,"32712":1,"32713":2,"32714":1,"32715":2,"32716":1,"32717":2,"32718":2,"32719":1,"32720":1,"32721":1,"32722":2,"32723":2,"32724":2,"32725":2,"32726":2,"32727":2,"32728":2,"32729":1,"32730":2,"32731":2,"32732":2,"32733":2,"32734":2,"32735":1,"32736":1,"32737":1,"32738":1,"32739":2,"32740":1,"32741":2,"32742":1,"32743":2,"32744":1,"32745":2,"32746":2,"32747":2,"32748":2,"32749":2,"32750":2,"32751":1,"32752":2,"32753":1,"32754":1,"32755":1,"32756":2,"32757":1,"32758":1,"32759":2,"32760":2,"32761":2,"32762":2,"32763":2,"32764":1,"32765":2,"32766":2,"32767":1,"32768":2,"32769":2,"32770":1,"32771":1,"32772":1,"32773":1,"32774":2,"32775":1,"32776":1,"32777":2,"32778":1,"32779":2,"32780":1,"32781":1,"32782":2,"32783":2,"32784":1,"32785":1,"32786":2,"32787":2,"32788":2,"32789":2,"32790":1,"32791":1,"32792":1,"32793":1,"32794":1,"32795":1,"32796":1,"32797":2,"32798":2,"32799":2,"32800":2,"32801":2,"32802":2,"32803":1,"32804":1,"32805":2,"32806":1,"32807":2,"32808":2,"32809":1,"32810":1,"32811":2,"32812":1,"32813":2,"32814":1,"32815":2,"32816":2,"32817":2,"32818":1,"32819":2,"32820":2,"32821":2,"32822":1,"32823":1,"32824":1,"32825":1,"32826":2,"32827":1,"32828":1,"32829":2,"32830":1,"32831":1,"32832":1,"32833":2,"32834":2,"32835":1,"32836":1,"32837":2,"32838":2,"32839":2,"32840":2,"32841":1,"32842":1,"32843":2,"32844":2,"32845":2,"32846":2,"32847":1,"32848":2,"32849":1,"32850":2,"32851":2,"32852":2,"32853":2,"32854":1,"32855":1,"32856":2,"32857":1,"32858":2,"32859":1,"32860":1,"32861":1,"32862":2,"32863":2,"32864":1,"32865":1,"32866":1,"32867":1,"32868":2,"32869":2,"32870":1,"32871":1,"32872":1,"32873":2,"32874":2,"32875":1,"32876":2,"32877":2,"32878":1,"32879":1,"32880":2,"32881":2,"32882":1,"32883":1,"32884":1,"32885":1,"32886":2,"32887":2,"32888":2,"32889":2,"32890":1,"32891":1,"32892":2,"32893":1,"32894":1,"32895":2,"32896":2,"32897":2,"32898":2,"32899":2,"32900":1,"32901":1,"32902":1,"32903":1,"32904":1,"32905":2,"32906":1,"32907":1,"32908":2,"32909":1,"32910":1,"32911":1,"32912":1,"32913":2,"32914":1,"32915":2,"32916":2,"32917":2,"32918":2,"32919":2,"32920":2,"32921":2,"32922":1,"32923":1,"32924":1,"32925":2,"32926":1,"32927":2,"32928":2,"32929":1,"32930":2,"32931":1,"32932":2,"32933":2,"32934":2,"32935":1,"32936":2,"32937":1,"32938":1,"32939":1,"32940":1,"32941":2,"32942":1,"32943":2,"32944":1,"32945":1,"32946":1,"32947":2,"32948":1,"32949":2,"32950":2,"32951":2,"32952":1,"32953":2,"32954":1,"32955":2,"32956":2,"32957":1,"32958":1,"32959":1,"32960":2,"32961":2,"32962":2,"32963":2,"32964":2,"32965":1,"32966":1,"32967":1,"32968":1,"32969":2,"32970":2,"32971":2,"32972":1,"32973":1,"32974":1,"32975":2,"32976":1,"32977":1,"32978":2,"32979":1,"32980":2,"32981":1,"32982":1,"32983":2,"32984":2,"32985":2,"32986":2,"32987":2,"32988":2,"32989":2,"32990":1,"32991":2,"32992":1,"32993":2,"32994":2,"32995":2,"32996":1,"32997":1,"32998":1,"32999":2,"33000":2,"33001":2,"33002":1,"33003":2,"33004":2,"33005":2,"33006":1,"33007":2,"33008":1,"33009":2,"33010":1,"33011":2,"33012":1,"33013":1,"33014":2,"33015":1,"33016":1,"33017":1,"33018":2,"33019":1,"33020":2,"33021":1,"33022":2,"33023":2,"33024":1,"33025":2,"33026":1,"33027":1,"33028":2,"33029":2,"33030":2,"33031":2,"33032":1,"33033":1,"33034":2,"33035":2,"33036":2,"33037":2,"33038":2,"33039":2,"33040":2,"33041":1,"33042":2,"33043":2,"33044":1,"33045":1,"33046":2,"33047":1,"33048":2,"33049":1,"33050":1,"33051":2,"33052":1,"33053":2,"33054":2,"33055":2,"33056":2,"33057":1,"33058":1,"33059":1,"33060":2,"33061":1,"33062":2,"33063":1,"33064":1,"33065":2,"33066":2,"33067":2,"33068":2,"33069":2,"33070":2,"33071":2,"33072":2,"33073":2,"33074":1,"33075":1,"33076":1,"33077":2,"33078":1,"33079":1,"33080":1,"33081":1,"33082":2,"33083":1,"33084":2,"33085":1,"33086":2,"33087":2,"33088":2,"33089":1,"33090":1,"33091":1,"33092":1,"33093":2,"33094":1,"33095":2,"33096":1,"33097":1,"33098":2,"33099":2,"33100":1,"33101":1,"33102":1,"33103":2,"33104":1,"33105":2,"33106":1,"33107":1,"33108":2,"33109":2,"33110":1,"33111":1,"33112":1,"33113":2,"33114":2,"33115":1,"33116":1,"33117":2,"33118":2,"33119":2,"33120":2,"33121":2,"33122":2,"33123":1,"33124":2,"33125":2,"33126":1,"33127":2,"33128":2,"33129":2,"33130":1,"33131":1,"33132":2,"33133":1,"33134":1,"33135":2,"33136":1,"33137":2,"33138":2,"33139":1,"33140":1,"33141":1,"33142":1,"33143":1,"33144":2,"33145":1,"33146":1,"33147":1,"33148":2,"33149":1,"33150":1,"33151":1,"33152":1,"33153":2,"33154":1,"33155":1,"33156":2,"33157":2,"33158":2,"33159":1,"33160":2,"33161":1,"33162":2,"33163":2,"33164":2,"33165":1,"33166":1,"33167":2,"33168":1,"33169":1,"33170":1,"33171":1,"33172":2,"33173":2,"33174":1,"33175":2,"33176":2,"33177":2,"33178":1,"33179":1,"33180":2,"33181":1,"33182":2,"33183":1,"33184":2,"33185":2,"33186":1,"33187":2,"33188":1,"33189":1,"33190":2,"33191":2,"33192":1,"33193":2,"33194":1,"33195":2,"33196":1,"33197":1,"33198":1,"33199":2,"33200":2,"33201":1,"33202":1,"33203":1,"33204":2,"33205":1,"33206":2,"33207":1,"33208":1,"33209":1,"33210":2,"33211":1,"33212":1,"33213":2,"33214":1,"33215":2,"33216":2,"33217":1,"33218":1,"33219":2,"33220":2,"33221":2,"33222":2,"33223":2,"33224":2,"33225":2,"33226":1,"33227":1,"33228":2,"33229":2,"33230":2,"33231":2,"33232":2,"33233":2,"33234":1,"33235":1,"33236":2,"33237":1,"33238":2,"33239":1,"33240":2,"33241":2,"33242":2,"33243":1,"33244":2,"33245":1,"33246":1,"33247":1,"33248":1,"33249":2,"33250":2,"33251":1,"33252":1,"33253":1,"33254":1,"33255":2,"33256":2,"33257":1,"33258":1,"33259":2,"33260":2,"33261":2,"33262":1,"33263":1,"33264":2,"33265":2,"33266":2,"33267":2,"33268":1,"33269":2,"33270":2,"33271":2,"33272":2,"33273":2,"33274":1,"33275":1,"33276":2,"33277":1,"33278":2,"33279":2,"33280":1,"33281":2,"33282":1,"33283":2,"33284":1,"33285":1,"33286":2,"33287":2,"33288":2,"33289":1,"33290":1,"33291":1,"33292":2,"33293":1,"33294":1,"33295":1,"33296":1,"33297":1,"33298":1,"33299":2,"33300":2,"33301":1,"33302":1,"33303":1,"33304":1,"33305":1,"33306":2,"33307":2,"33308":1,"33309":1,"33310":2,"33311":2,"33312":2,"33313":2,"33314":2,"33315":1,"33316":2,"33317":1,"33318":1,"33319":2,"33320":1,"33321":2,"33322":2,"33323":1,"33324":1,"33325":1,"33326":2,"33327":1,"33328":2,"33329":2,"33330":2,"33331":2,"33332":1,"33333":1,"33334":1,"33335":2,"33336":1,"33337":1,"33338":2,"33339":2,"33340":1,"33341":2,"33342":2,"33343":1,"33344":1,"33345":2,"33346":1,"33347":1,"33348":1,"33349":2,"33350":2,"33351":2,"33352":2,"33353":2,"33354":2,"33355":1,"33356":2,"33357":1,"33358":1,"33359":1,"33360":1,"33361":1,"33362":2,"33363":2,"33364":2,"33365":2,"33366":1,"33367":2,"33368":2,"33369":1,"33370":1,"33371":2,"33372":2,"33373":2,"33374":2,"33375":2,"33376":1,"33377":2,"33378":1,"33379":1,"33380":1,"33381":2,"33382":1,"33383":1,"33384":1,"33385":2,"33386":1,"33387":1,"33388":2,"33389":2,"33390":1,"33391":1,"33392":1,"33393":2,"33394":2,"33395":1,"33396":2,"33397":1,"33398":2,"33399":2,"33400":1,"33401":1,"33402":2,"33403":2,"33404":2,"33405":2,"33406":2,"33407":2,"33408":2,"33409":2,"33410":2,"33411":2,"33412":1,"33413":1,"33414":2,"33415":2,"33416":2,"33417":2,"33418":2,"33419":1,"33420":2,"33421":2,"33422":1,"33423":1,"33424":2,"33425":1,"33426":2,"33427":2,"33428":2,"33429":1,"33430":2,"33431":1,"33432":1,"33433":1,"33434":2,"33435":2,"33436":1,"33437":1,"33438":1,"33439":1,"33440":2,"33441":1,"33442":2,"33443":1,"33444":1,"33445":2,"33446":1,"33447":1,"33448":1,"33449":2,"33450":1,"33451":1,"33452":1,"33453":1,"33454":2,"33455":2,"33456":1,"33457":2,"33458":1,"33459":1,"33460":2,"33461":2,"33462":2,"33463":2,"33464":2,"33465":2,"33466":1,"33467":2,"33468":1,"33469":2,"33470":2,"33471":1,"33472":1,"33473":1,"33474":1,"33475":1,"33476":1,"33477":1,"33478":1,"33479":1,"33480":1,"33481":1,"33482":2,"33483":1,"33484":1,"33485":1,"33486":2,"33487":2,"33488":1,"33489":2,"33490":1,"33491":2,"33492":2,"33493":1,"33494":1,"33495":2,"33496":2,"33497":1,"33498":2,"33499":2,"33500":2,"33501":1,"33502":1,"33503":2,"33504":1,"33505":2,"33506":2,"33507":1,"33508":2,"33509":1,"33510":2,"33511":1,"33512":2,"33513":2,"33514":1,"33515":1,"33516":1,"33517":2,"33518":2,"33519":2,"33520":2,"33521":1,"33522":2,"33523":1,"33524":2,"33525":1,"33526":2,"33527":1,"33528":2,"33529":2,"33530":2,"33531":2,"33532":2,"33533":1,"33534":1,"33535":1,"33536":1,"33537":1,"33538":2,"33539":2,"33540":1,"33541":2,"33542":2,"33543":2,"33544":1,"33545":1,"33546":2,"33547":1,"33548":1,"33549":2,"33550":1,"33551":1,"33552":2,"33553":2,"33554":1,"33555":1,"33556":2,"33557":2,"33558":2,"33559":1,"33560":2,"33561":2,"33562":2,"33563":2,"33564":1,"33565":1,"33566":2,"33567":2,"33568":2,"33569":2,"33570":1,"33571":1,"33572":2,"33573":1,"33574":2,"33575":2,"33576":2,"33577":1,"33578":2,"33579":1,"33580":2,"33581":2,"33582":1,"33583":1,"33584":1,"33585":1,"33586":1,"33587":2,"33588":1,"33589":2,"33590":2,"33591":2,"33592":2,"33593":1,"33594":1,"33595":1,"33596":1,"33597":1,"33598":2,"33599":2,"33600":2,"33601":1,"33602":2,"33603":2,"33604":2,"33605":1,"33606":2,"33607":2,"33608":2,"33609":2,"33610":1,"33611":2,"33612":2,"33613":1,"33614":1,"33615":2,"33616":1,"33617":2,"33618":2,"33619":2,"33620":2,"33621":2,"33622":1,"33623":2,"33624":1,"33625":2,"33626":1,"33627":2,"33628":1,"33629":2,"33630":2,"33631":2,"33632":1,"33633":2,"33634":2,"33635":2,"33636":2,"33637":1,"33638":1,"33639":2,"33640":2,"33641":1,"33642":1,"33643":1,"33644":2,"33645":2,"33646":2,"33647":1,"33648":1,"33649":1,"33650":1,"33651":2,"33652":2,"33653":1,"33654":2,"33655":2,"33656":2,"33657":1,"33658":1,"33659":2,"33660":2,"33661":1,"33662":1,"33663":2,"33664":2,"33665":1,"33666":1,"33667":2,"33668":2,"33669":2,"33670":2,"33671":1,"33672":1,"33673":2,"33674":1,"33675":1,"33676":1,"33677":2,"33678":2,"33679":2,"33680":2,"33681":2,"33682":2,"33683":2,"33684":2,"33685":2,"33686":2,"33687":1,"33688":1,"33689":2,"33690":1,"33691":2,"33692":2,"33693":2,"33694":2,"33695":1,"33696":2,"33697":2,"33698":2,"33699":1,"33700":2,"33701":2,"33702":2,"33703":2,"33704":2,"33705":2,"33706":1,"33707":2,"33708":2,"33709":1,"33710":2,"33711":1,"33712":2,"33713":2,"33714":1,"33715":1,"33716":2,"33717":2,"33718":2,"33719":1,"33720":2,"33721":1,"33722":2,"33723":2,"33724":2,"33725":2,"33726":1,"33727":2,"33728":2,"33729":2,"33730":2,"33731":1,"33732":2,"33733":2,"33734":1,"33735":2,"33736":1,"33737":2,"33738":2,"33739":1,"33740":2,"33741":1,"33742":1,"33743":2,"33744":1,"33745":2,"33746":1,"33747":2,"33748":2,"33749":1,"33750":1,"33751":2,"33752":1,"33753":1,"33754":2,"33755":2,"33756":1,"33757":2,"33758":2,"33759":1,"33760":1,"33761":2,"33762":2,"33763":1,"33764":1,"33765":1,"33766":2,"33767":2,"33768":1,"33769":1,"33770":1,"33771":1,"33772":2,"33773":1,"33774":2,"33775":2,"33776":1,"33777":2,"33778":1,"33779":2,"33780":1,"33781":1,"33782":2,"33783":2,"33784":1,"33785":2,"33786":2,"33787":1,"33788":2,"33789":1,"33790":1,"33791":2,"33792":2,"33793":2,"33794":1,"33795":2,"33796":1,"33797":2,"33798":1,"33799":1,"33800":2,"33801":1,"33802":1,"33803":1,"33804":1,"33805":2,"33806":1,"33807":2,"33808":2,"33809":2,"33810":1,"33811":2,"33812":2,"33813":1,"33814":2,"33815":2,"33816":2,"33817":1,"33818":1,"33819":1,"33820":2,"33821":2,"33822":2,"33823":2,"33824":2,"33825":1,"33826":1,"33827":2,"33828":2,"33829":2,"33830":1,"33831":2,"33832":1,"33833":1,"33834":1,"33835":1,"33836":2,"33837":2,"33838":1,"33839":1,"33840":1,"33841":2,"33842":1,"33843":2,"33844":1,"33845":1,"33846":1,"33847":2,"33848":1,"33849":2,"33850":1,"33851":2,"33852":1,"33853":2,"33854":2,"33855":1,"33856":1,"33857":1,"33858":2,"33859":2,"33860":1,"33861":1,"33862":2,"33863":1,"33864":2,"33865":2,"33866":2,"33867":2,"33868":1,"33869":2,"33870":2,"33871":1,"33872":1,"33873":1,"33874":1,"33875":2,"33876":2,"33877":1,"33878":1,"33879":2,"33880":2,"33881":1,"33882":1,"33883":2,"33884":2,"33885":2,"33886":1,"33887":1,"33888":2,"33889":1,"33890":1,"33891":1,"33892":2,"33893":2,"33894":1,"33895":2,"33896":1,"33897":1,"33898":1,"33899":1,"33900":2,"33901":2,"33902":1,"33903":1,"33904":1,"33905":2,"33906":2,"33907":1,"33908":1,"33909":1,"33910":2,"33911":2,"33912":1,"33913":2,"33914":1,"33915":1,"33916":1,"33917":1,"33918":2,"33919":2,"33920":1,"33921":2,"33922":1,"33923":1,"33924":2,"33925":1,"33926":1,"33927":2,"33928":1,"33929":1,"33930":1,"33931":1,"33932":2,"33933":2,"33934":2,"33935":2,"33936":2,"33937":2,"33938":1,"33939":1,"33940":1,"33941":1,"33942":1,"33943":2,"33944":1,"33945":1,"33946":2,"33947":2,"33948":1,"33949":1,"33950":1,"33951":2,"33952":2,"33953":1,"33954":2,"33955":2,"33956":2,"33957":1,"33958":1,"33959":2,"33960":2,"33961":1,"33962":2,"33963":1,"33964":2,"33965":1,"33966":1,"33967":1,"33968":2,"33969":2,"33970":1,"33971":1,"33972":1,"33973":2,"33974":2,"33975":1,"33976":1,"33977":1,"33978":2,"33979":2,"33980":1,"33981":2,"33982":1,"33983":1,"33984":1,"33985":1,"33986":1,"33987":1,"33988":1,"33989":2,"33990":2,"33991":2,"33992":2,"33993":1,"33994":1,"33995":1,"33996":1,"33997":2,"33998":2,"33999":2,"34000":2,"34001":2,"34002":2,"34003":2,"34004":1,"34005":2,"34006":1,"34007":2,"34008":2,"34009":1,"34010":2,"34011":1,"34012":2,"34013":1,"34014":2,"34015":2,"34016":2,"34017":1,"34018":1,"34019":2,"34020":1,"34021":1,"34022":1,"34023":2,"34024":2,"34025":2,"34026":2,"34027":1,"34028":2,"34029":1,"34030":1,"34031":1,"34032":2,"34033":2,"34034":2,"34035":1,"34036":2,"34037":1,"34038":1,"34039":2,"34040":2,"34041":2,"34042":2,"34043":1,"34044":2,"34045":2,"34046":1,"34047":2,"34048":1,"34049":2,"34050":2,"34051":2,"34052":2,"34053":2,"34054":2,"34055":2,"34056":2,"34057":1,"34058":2,"34059":1,"34060":2,"34061":2,"34062":2,"34063":1,"34064":2,"34065":1,"34066":1,"34067":2,"34068":2,"34069":2,"34070":1,"34071":2,"34072":2,"34073":1,"34074":1,"34075":2,"34076":1,"34077":2,"34078":1,"34079":2,"34080":1,"34081":1,"34082":1,"34083":2,"34084":2,"34085":1,"34086":2,"34087":2,"34088":2,"34089":2,"34090":1,"34091":2,"34092":2,"34093":2,"34094":2,"34095":1,"34096":1,"34097":1,"34098":2,"34099":1,"34100":1,"34101":1,"34102":1,"34103":2,"34104":2,"34105":2,"34106":1,"34107":1,"34108":1,"34109":2,"34110":1,"34111":2,"34112":2,"34113":2,"34114":2,"34115":1,"34116":2,"34117":2,"34118":1,"34119":2,"34120":1,"34121":2,"34122":2,"34123":1,"34124":1,"34125":2,"34126":2,"34127":1,"34128":1,"34129":1,"34130":1,"34131":2,"34132":1,"34133":2,"34134":2,"34135":2,"34136":1,"34137":2,"34138":2,"34139":1,"34140":1,"34141":2,"34142":1,"34143":1,"34144":2,"34145":2,"34146":2,"34147":1,"34148":2,"34149":2,"34150":1,"34151":2,"34152":2,"34153":2,"34154":2,"34155":2,"34156":2,"34157":1,"34158":1,"34159":2,"34160":2,"34161":2,"34162":2,"34163":2,"34164":1,"34165":2,"34166":1,"34167":2,"34168":1,"34169":1,"34170":2,"34171":2,"34172":1,"34173":1,"34174":2,"34175":2,"34176":1,"34177":2,"34178":1,"34179":1,"34180":1,"34181":2,"34182":2,"34183":2,"34184":2,"34185":1,"34186":1,"34187":2,"34188":2,"34189":1,"34190":2,"34191":2,"34192":1,"34193":1,"34194":1,"34195":1,"34196":2,"34197":2,"34198":2,"34199":1,"34200":1,"34201":1,"34202":1,"34203":1,"34204":1,"34205":1,"34206":2,"34207":2,"34208":2,"34209":2,"34210":2,"34211":2,"34212":2,"34213":2,"34214":2,"34215":1,"34216":1,"34217":1,"34218":1,"34219":1,"34220":2,"34221":1,"34222":2,"34223":1,"34224":1,"34225":1,"34226":1,"34227":1,"34228":2,"34229":2,"34230":1,"34231":1,"34232":1,"34233":2,"34234":1,"34235":1,"34236":2,"34237":1,"34238":1,"34239":1,"34240":1,"34241":1,"34242":1,"34243":2,"34244":1,"34245":2,"34246":2,"34247":2,"34248":2,"34249":1,"34250":2,"34251":2,"34252":1,"34253":2,"34254":1,"34255":2,"34256":1,"34257":1,"34258":2,"34259":2,"34260":2,"34261":2,"34262":1,"34263":2,"34264":1,"34265":1,"34266":1,"34267":2,"34268":1,"34269":1,"34270":2,"34271":2,"34272":2,"34273":2,"34274":1,"34275":2,"34276":1,"34277":2,"34278":1,"34279":2,"34280":1,"34281":2,"34282":1,"34283":2,"34284":2,"34285":1,"34286":1,"34287":2,"34288":1,"34289":1,"34290":2,"34291":2,"34292":2,"34293":1,"34294":1,"34295":1,"34296":1,"34297":2,"34298":2,"34299":2,"34300":2,"34301":1,"34302":1,"34303":1,"34304":1,"34305":2,"34306":1,"34307":1,"34308":2,"34309":2,"34310":2,"34311":2,"34312":1,"34313":1,"34314":2,"34315":2,"34316":2,"34317":2,"34318":1,"34319":1,"34320":1,"34321":1,"34322":1,"34323":2,"34324":1,"34325":2,"34326":1,"34327":1,"34328":2,"34329":2,"34330":1,"34331":1,"34332":1,"34333":1,"34334":2,"34335":2,"34336":2,"34337":1,"34338":2,"34339":2,"34340":2,"34341":1,"34342":2,"34343":2,"34344":1,"34345":2,"34346":1,"34347":2,"34348":2,"34349":1,"34350":1,"34351":1,"34352":2,"34353":1,"34354":2,"34355":1,"34356":1,"34357":1,"34358":1,"34359":2,"34360":2,"34361":2,"34362":2,"34363":1,"34364":1,"34365":2,"34366":2,"34367":2,"34368":1,"34369":2,"34370":1,"34371":1,"34372":1,"34373":1,"34374":1,"34375":1,"34376":2,"34377":1,"34378":2,"34379":1,"34380":1,"34381":1,"34382":1,"34383":2,"34384":1,"34385":1,"34386":1,"34387":1,"34388":2,"34389":2,"34390":1,"34391":1,"34392":1,"34393":2,"34394":1,"34395":1,"34396":2,"34397":1,"34398":1,"34399":2,"34400":2,"34401":1,"34402":2,"34403":2,"34404":1,"34405":1,"34406":1,"34407":1,"34408":1,"34409":2,"34410":2,"34411":2,"34412":2,"34413":2,"34414":2,"34415":1,"34416":1,"34417":2,"34418":1,"34419":2,"34420":1,"34421":2,"34422":1,"34423":2,"34424":2,"34425":2,"34426":2,"34427":1,"34428":2,"34429":2,"34430":2,"34431":1,"34432":2,"34433":1,"34434":1,"34435":1,"34436":2,"34437":2,"34438":1,"34439":1,"34440":1,"34441":2,"34442":1,"34443":2,"34444":1,"34445":1,"34446":1,"34447":2,"34448":2,"34449":2,"34450":2,"34451":1,"34452":1,"34453":2,"34454":1,"34455":2,"34456":2,"34457":1,"34458":1,"34459":1,"34460":2,"34461":1,"34462":2,"34463":1,"34464":1,"34465":2,"34466":1,"34467":1,"34468":2,"34469":1,"34470":1,"34471":1,"34472":2,"34473":2,"34474":2,"34475":1,"34476":2,"34477":2,"34478":1,"34479":1,"34480":2,"34481":1,"34482":1,"34483":1,"34484":2,"34485":2,"34486":2,"34487":2,"34488":1,"34489":1,"34490":1,"34491":1,"34492":1,"34493":1,"34494":2,"34495":1,"34496":1,"34497":1,"34498":1,"34499":2,"34500":2,"34501":2,"34502":2,"34503":2,"34504":2,"34505":1,"34506":1,"34507":2,"34508":2,"34509":1,"34510":2,"34511":2,"34512":2,"34513":1,"34514":1,"34515":2,"34516":2,"34517":2,"34518":2,"34519":1,"34520":1,"34521":2,"34522":2,"34523":2,"34524":2,"34525":2,"34526":1,"34527":2,"34528":2,"34529":1,"34530":2,"34531":1,"34532":2,"34533":2,"34534":1,"34535":2,"34536":2,"34537":1,"34538":2,"34539":1,"34540":2,"34541":1,"34542":2,"34543":1,"34544":1,"34545":2,"34546":2,"34547":1,"34548":1,"34549":1,"34550":2,"34551":2,"34552":2,"34553":2,"34554":1,"34555":2,"34556":2,"34557":1,"34558":1,"34559":1,"34560":1,"34561":2,"34562":2,"34563":1,"34564":2,"34565":2,"34566":1,"34567":2,"34568":1,"34569":2,"34570":1,"34571":1,"34572":1,"34573":2,"34574":2,"34575":2,"34576":1,"34577":1,"34578":2,"34579":2,"34580":1,"34581":2,"34582":1,"34583":2,"34584":2,"34585":2,"34586":2,"34587":1,"34588":1,"34589":1,"34590":2,"34591":2,"34592":2,"34593":2,"34594":1,"34595":2,"34596":1,"34597":1,"34598":2,"34599":2,"34600":1,"34601":1,"34602":2,"34603":2,"34604":2,"34605":2,"34606":2,"34607":2,"34608":1,"34609":2,"34610":1,"34611":2,"34612":2,"34613":2,"34614":2,"34615":2,"34616":1,"34617":2,"34618":2,"34619":1,"34620":1,"34621":2,"34622":2,"34623":2,"34624":2,"34625":1,"34626":2,"34627":2,"34628":2,"34629":2,"34630":2,"34631":1,"34632":2,"34633":1,"34634":2,"34635":2,"34636":1,"34637":2,"34638":2,"34639":2,"34640":1,"34641":1,"34642":2,"34643":2,"34644":1,"34645":2,"34646":1,"34647":2,"34648":2,"34649":1,"34650":1,"34651":2,"34652":1,"34653":2,"34654":2,"34655":2,"34656":2,"34657":1,"34658":1,"34659":1,"34660":2,"34661":2,"34662":2,"34663":1,"34664":1,"34665":2,"34666":2,"34667":2,"34668":1,"34669":2,"34670":1,"34671":2,"34672":2,"34673":1,"34674":2,"34675":1,"34676":2,"34677":2,"34678":1,"34679":2,"34680":2,"34681":1,"34682":2,"34683":2,"34684":2,"34685":2,"34686":2,"34687":2,"34688":1,"34689":1,"34690":1,"34691":2,"34692":2,"34693":1,"34694":1,"34695":1,"34696":1,"34697":2,"34698":2,"34699":2,"34700":1,"34701":1,"34702":1,"34703":2,"34704":2,"34705":2,"34706":1,"34707":1,"34708":1,"34709":2,"34710":2,"34711":1,"34712":1,"34713":2,"34714":1,"34715":1,"34716":2,"34717":1,"34718":1,"34719":1,"34720":2,"34721":2,"34722":1,"34723":2,"34724":2,"34725":1,"34726":1,"34727":1,"34728":1,"34729":2,"34730":2,"34731":2,"34732":2,"34733":2,"34734":2,"34735":1,"34736":2,"34737":2,"34738":1,"34739":2,"34740":1,"34741":1,"34742":1,"34743":1,"34744":1,"34745":1,"34746":2,"34747":2,"34748":2,"34749":2,"34750":1,"34751":2,"34752":2,"34753":2,"34754":2,"34755":2,"34756":2,"34757":1,"34758":2,"34759":2,"34760":1,"34761":2,"34762":2,"34763":2,"34764":2,"34765":2,"34766":1,"34767":1,"34768":2,"34769":2,"34770":2,"34771":2,"34772":2,"34773":2,"34774":1,"34775":2,"34776":2,"34777":1,"34778":2,"34779":1,"34780":2,"34781":1,"34782":1,"34783":1,"34784":2,"34785":1,"34786":1,"34787":2,"34788":2,"34789":1,"34790":1,"34791":1,"34792":2,"34793":1,"34794":1,"34795":2,"34796":1,"34797":2,"34798":2,"34799":1,"34800":2,"34801":2,"34802":2,"34803":2,"34804":1,"34805":1,"34806":1,"34807":1,"34808":1,"34809":2,"34810":2,"34811":2,"34812":1,"34813":2,"34814":2,"34815":2,"34816":1,"34817":2,"34818":1,"34819":1,"34820":1,"34821":1,"34822":1,"34823":1,"34824":1,"34825":2,"34826":1,"34827":1,"34828":1,"34829":2,"34830":2,"34831":1,"34832":1,"34833":2,"34834":2,"34835":1,"34836":2,"34837":1,"34838":2,"34839":1,"34840":1,"34841":1,"34842":1,"34843":1,"34844":2,"34845":1,"34846":2,"34847":1,"34848":2,"34849":1,"34850":2,"34851":2,"34852":1,"34853":1,"34854":2,"34855":2,"34856":2,"34857":1,"34858":2,"34859":2,"34860":1,"34861":2,"34862":2,"34863":1,"34864":2,"34865":1,"34866":2,"34867":1,"34868":1,"34869":1,"34870":2,"34871":1,"34872":1,"34873":1,"34874":1,"34875":2,"34876":2,"34877":1,"34878":2,"34879":2,"34880":2,"34881":2,"34882":1,"34883":2,"34884":1,"34885":1,"34886":2,"34887":2,"34888":2,"34889":2,"34890":2,"34891":1,"34892":1,"34893":1,"34894":2,"34895":1,"34896":2,"34897":2,"34898":1,"34899":1,"34900":2,"34901":2,"34902":2,"34903":1,"34904":2,"34905":2,"34906":1,"34907":1,"34908":1,"34909":1,"34910":1,"34911":2,"34912":1,"34913":2,"34914":2,"34915":1,"34916":1,"34917":2,"34918":2,"34919":2,"34920":2,"34921":1,"34922":2,"34923":2,"34924":1,"34925":1,"34926":1,"34927":1,"34928":2,"34929":1,"34930":2,"34931":2,"34932":2,"34933":2,"34934":1,"34935":1,"34936":2,"34937":1,"34938":2,"34939":1,"34940":1,"34941":1,"34942":2,"34943":2,"34944":1,"34945":1,"34946":1,"34947":2,"34948":2,"34949":2,"34950":1,"34951":2,"34952":2,"34953":2,"34954":1,"34955":2,"34956":1,"34957":2,"34958":1,"34959":1,"34960":1,"34961":2,"34962":1,"34963":2,"34964":1,"34965":1,"34966":2,"34967":2,"34968":2,"34969":2,"34970":2,"34971":2,"34972":1,"34973":1,"34974":1,"34975":2,"34976":2,"34977":1,"34978":2,"34979":2,"34980":1,"34981":1,"34982":2,"34983":1,"34984":1,"34985":1,"34986":2,"34987":1,"34988":2,"34989":2,"34990":2,"34991":1,"34992":1,"34993":2,"34994":1,"34995":1,"34996":2,"34997":2,"34998":2,"34999":2,"35000":1,"35001":2,"35002":2,"35003":1,"35004":1,"35005":2,"35006":1,"35007":1,"35008":2,"35009":2,"35010":1,"35011":1,"35012":2,"35013":2,"35014":2,"35015":2,"35016":2,"35017":2,"35018":1,"35019":2,"35020":1,"35021":1,"35022":1,"35023":1,"35024":1,"35025":2,"35026":2,"35027":2,"35028":1,"35029":1,"35030":1,"35031":1,"35032":1,"35033":2,"35034":1,"35035":1,"35036":2,"35037":2,"35038":1,"35039":1,"35040":2,"35041":2,"35042":2,"35043":1,"35044":1,"35045":2,"35046":2,"35047":2,"35048":1,"35049":1,"35050":1,"35051":2,"35052":1,"35053":2,"35054":2,"35055":2,"35056":1,"35057":2,"35058":2,"35059":2,"35060":1,"35061":1,"35062":1,"35063":1,"35064":1,"35065":2,"35066":1,"35067":1,"35068":2,"35069":1,"35070":2,"35071":1,"35072":1,"35073":1,"35074":1,"35075":1,"35076":2,"35077":1,"35078":1,"35079":1,"35080":2,"35081":2,"35082":1,"35083":2,"35084":1,"35085":1,"35086":1,"35087":2,"35088":1,"35089":1,"35090":2,"35091":1,"35092":1,"35093":2,"35094":1,"35095":2,"35096":2,"35097":2,"35098":1,"35099":1,"35100":2,"35101":1,"35102":2,"35103":1,"35104":1,"35105":2,"35106":2,"35107":1,"35108":1,"35109":2,"35110":1,"35111":1,"35112":1,"35113":1,"35114":1,"35115":2,"35116":2,"35117":2,"35118":2,"35119":1,"35120":1,"35121":1,"35122":1,"35123":2,"35124":1,"35125":2,"35126":1,"35127":1,"35128":2,"35129":2,"35130":2,"35131":2,"35132":1,"35133":2,"35134":2,"35135":2,"35136":2,"35137":1,"35138":1,"35139":1,"35140":2,"35141":2,"35142":1,"35143":1,"35144":2,"35145":2,"35146":2,"35147":2,"35148":2,"35149":1,"35150":2,"35151":1,"35152":1,"35153":1,"35154":2,"35155":1,"35156":1,"35157":1,"35158":2,"35159":1,"35160":2,"35161":1,"35162":1,"35163":2,"35164":2,"35165":2,"35166":2,"35167":1,"35168":1,"35169":1,"35170":2,"35171":1,"35172":1,"35173":1,"35174":2,"35175":1,"35176":2,"35177":2,"35178":2,"35179":2,"35180":2,"35181":1,"35182":2,"35183":2,"35184":2,"35185":2,"35186":1,"35187":1,"35188":1,"35189":1,"35190":1,"35191":2,"35192":2,"35193":2,"35194":2,"35195":1,"35196":1,"35197":2,"35198":1,"35199":2,"35200":2,"35201":2,"35202":1,"35203":1,"35204":2,"35205":1,"35206":1,"35207":2,"35208":2,"35209":2,"35210":1,"35211":2,"35212":1,"35213":1,"35214":2,"35215":1,"35216":2,"35217":1,"35218":1,"35219":2,"35220":2,"35221":1,"35222":2,"35223":1,"35224":1,"35225":2,"35226":1,"35227":1,"35228":1,"35229":2,"35230":1,"35231":2,"35232":2,"35233":1,"35234":1,"35235":2,"35236":1,"35237":1,"35238":1,"35239":1,"35240":1,"35241":2,"35242":1,"35243":2,"35244":2,"35245":1,"35246":1,"35247":1,"35248":2,"35249":1,"35250":1,"35251":1,"35252":2,"35253":1,"35254":1,"35255":2,"35256":2,"35257":2,"35258":2,"35259":1,"35260":1,"35261":2,"35262":1,"35263":1,"35264":1,"35265":2,"35266":1,"35267":1,"35268":1,"35269":1,"35270":1,"35271":1,"35272":1,"35273":2,"35274":1,"35275":1,"35276":1,"35277":2,"35278":2,"35279":1,"35280":1,"35281":2,"35282":1,"35283":1,"35284":1,"35285":2,"35286":1,"35287":2,"35288":1,"35289":2,"35290":1,"35291":2,"35292":1,"35293":2,"35294":1,"35295":1,"35296":2,"35297":2,"35298":1,"35299":2,"35300":1,"35301":1,"35302":2,"35303":2,"35304":1,"35305":1,"35306":1,"35307":2,"35308":1,"35309":2,"35310":1,"35311":2,"35312":1,"35313":1,"35314":2,"35315":2,"35316":1,"35317":2,"35318":2,"35319":1,"35320":1,"35321":1,"35322":2,"35323":2,"35324":2,"35325":1,"35326":1,"35327":1,"35328":2,"35329":1,"35330":1,"35331":1,"35332":1,"35333":1,"35334":2,"35335":1,"35336":2,"35337":1,"35338":1,"35339":2,"35340":1,"35341":2,"35342":2,"35343":1,"35344":1,"35345":2,"35346":2,"35347":1,"35348":2,"35349":2,"35350":2,"35351":2,"35352":2,"35353":2,"35354":1,"35355":2,"35356":2,"35357":1,"35358":1,"35359":2,"35360":1,"35361":2,"35362":1,"35363":1,"35364":1,"35365":1,"35366":2,"35367":1,"35368":2,"35369":2,"35370":2,"35371":2,"35372":2,"35373":2,"35374":1,"35375":1,"35376":2,"35377":1,"35378":2,"35379":2,"35380":2,"35381":2,"35382":1,"35383":1,"35384":2,"35385":1,"35386":2,"35387":1,"35388":2,"35389":1,"35390":1,"35391":2,"35392":1,"35393":2,"35394":2,"35395":1,"35396":1,"35397":1,"35398":1,"35399":2,"35400":2,"35401":2,"35402":1,"35403":2,"35404":2,"35405":1,"35406":2,"35407":1,"35408":2,"35409":2,"35410":1,"35411":1,"35412":1,"35413":2,"35414":2,"35415":2,"35416":2,"35417":2,"35418":2,"35419":2,"35420":2,"35421":2,"35422":1,"35423":2,"35424":1,"35425":1,"35426":1,"35427":2,"35428":1,"35429":2,"35430":1,"35431":1,"35432":1,"35433":1,"35434":1,"35435":1,"35436":1,"35437":1,"35438":2,"35439":1,"35440":2,"35441":1,"35442":1,"35443":1,"35444":2,"35445":2,"35446":1,"35447":1,"35448":1,"35449":1,"35450":1,"35451":1,"35452":1,"35453":2,"35454":2,"35455":2,"35456":1,"35457":2,"35458":1,"35459":2,"35460":2,"35461":1,"35462":2,"35463":1,"35464":1,"35465":2,"35466":1,"35467":2,"35468":2,"35469":2,"35470":2,"35471":2,"35472":1,"35473":1,"35474":2,"35475":2,"35476":2,"35477":2,"35478":2,"35479":1,"35480":2,"35481":2,"35482":1,"35483":2,"35484":1,"35485":1,"35486":2,"35487":2,"35488":1,"35489":1,"35490":1,"35491":2,"35492":2,"35493":1,"35494":2,"35495":2,"35496":2,"35497":2,"35498":1,"35499":2,"35500":1,"35501":1,"35502":2,"35503":2,"35504":2,"35505":2,"35506":2,"35507":2,"35508":2,"35509":2,"35510":1,"35511":2,"35512":2,"35513":2,"35514":2,"35515":2,"35516":2,"35517":1,"35518":1,"35519":1,"35520":1,"35521":2,"35522":1,"35523":1,"35524":1,"35525":1,"35526":1,"35527":1,"35528":1,"35529":2,"35530":1,"35531":2,"35532":2,"35533":2,"35534":2,"35535":1,"35536":2,"35537":2,"35538":1,"35539":2,"35540":1,"35541":1,"35542":1,"35543":2,"35544":2,"35545":1,"35546":1,"35547":1,"35548":2,"35549":2,"35550":2,"35551":1,"35552":2,"35553":1,"35554":2,"35555":2,"35556":1,"35557":1,"35558":2,"35559":2,"35560":1,"35561":1,"35562":1,"35563":2,"35564":2,"35565":2,"35566":2,"35567":1,"35568":1,"35569":1,"35570":1,"35571":1,"35572":1,"35573":2,"35574":1,"35575":2,"35576":2,"35577":1,"35578":1,"35579":2,"35580":2,"35581":2,"35582":1,"35583":2,"35584":2,"35585":2,"35586":1,"35587":1,"35588":1,"35589":2,"35590":2,"35591":2,"35592":2,"35593":2,"35594":1,"35595":2,"35596":1,"35597":2,"35598":2,"35599":2,"35600":2,"35601":1,"35602":1,"35603":1,"35604":2,"35605":1,"35606":1,"35607":2,"35608":2,"35609":1,"35610":1,"35611":1,"35612":2,"35613":1,"35614":2,"35615":1,"35616":2,"35617":1,"35618":2,"35619":2,"35620":1,"35621":1,"35622":2,"35623":2,"35624":1,"35625":1,"35626":1,"35627":1,"35628":2,"35629":2,"35630":2,"35631":2,"35632":1,"35633":1,"35634":2,"35635":1,"35636":1,"35637":1,"35638":2,"35639":2,"35640":2,"35641":1,"35642":1,"35643":1,"35644":2,"35645":2,"35646":2,"35647":1,"35648":1,"35649":2,"35650":1,"35651":1,"35652":2,"35653":1,"35654":1,"35655":1,"35656":2,"35657":2,"35658":2,"35659":2,"35660":1,"35661":1,"35662":1,"35663":1,"35664":2,"35665":1,"35666":2,"35667":1,"35668":2,"35669":1,"35670":1,"35671":1,"35672":2,"35673":2,"35674":2,"35675":1,"35676":1,"35677":2,"35678":1,"35679":2,"35680":1,"35681":1,"35682":1,"35683":2,"35684":1,"35685":2,"35686":1,"35687":2,"35688":2,"35689":1,"35690":2,"35691":2,"35692":1,"35693":2,"35694":2,"35695":1,"35696":1,"35697":2,"35698":2,"35699":1,"35700":1,"35701":1,"35702":1,"35703":2,"35704":1,"35705":1,"35706":2,"35707":1,"35708":1,"35709":1,"35710":1,"35711":1,"35712":2,"35713":1,"35714":1,"35715":2,"35716":2,"35717":1,"35718":1,"35719":2,"35720":1,"35721":2,"35722":2,"35723":2,"35724":1,"35725":2,"35726":1,"35727":1,"35728":2,"35729":2,"35730":1,"35731":2,"35732":2,"35733":2,"35734":1,"35735":2,"35736":2,"35737":2,"35738":2,"35739":2,"35740":2,"35741":2,"35742":1,"35743":1,"35744":1,"35745":1,"35746":2,"35747":2,"35748":2,"35749":1,"35750":1,"35751":1,"35752":2,"35753":2,"35754":2,"35755":1,"35756":2,"35757":2,"35758":1,"35759":1,"35760":2,"35761":1,"35762":2,"35763":1,"35764":2,"35765":2,"35766":2,"35767":1,"35768":1,"35769":2,"35770":2,"35771":2,"35772":1,"35773":1,"35774":2,"35775":1,"35776":1,"35777":1,"35778":1,"35779":2,"35780":2,"35781":1,"35782":1,"35783":1,"35784":2,"35785":1,"35786":2,"35787":1,"35788":2,"35789":2,"35790":2,"35791":2,"35792":1,"35793":2,"35794":2,"35795":1,"35796":2,"35797":2,"35798":1,"35799":2,"35800":2,"35801":1,"35802":1,"35803":2,"35804":1,"35805":1,"35806":2,"35807":1,"35808":1,"35809":2,"35810":1,"35811":2,"35812":2,"35813":2,"35814":1,"35815":2,"35816":2,"35817":2,"35818":2,"35819":2,"35820":2,"35821":2,"35822":1,"35823":1,"35824":2,"35825":1,"35826":2,"35827":1,"35828":1,"35829":1,"35830":2,"35831":1,"35832":2,"35833":2,"35834":2,"35835":2,"35836":1,"35837":1,"35838":2,"35839":1,"35840":2,"35841":2,"35842":2,"35843":2,"35844":1,"35845":2,"35846":2,"35847":2,"35848":1,"35849":1,"35850":1,"35851":2,"35852":1,"35853":1,"35854":2,"35855":1,"35856":2,"35857":2,"35858":1,"35859":2,"35860":1,"35861":1,"35862":1,"35863":1,"35864":2,"35865":2,"35866":2,"35867":2,"35868":1,"35869":2,"35870":2,"35871":1,"35872":1,"35873":2,"35874":1,"35875":2,"35876":2,"35877":2,"35878":2,"35879":2,"35880":1,"35881":1,"35882":1,"35883":1,"35884":2,"35885":2,"35886":2,"35887":2,"35888":1,"35889":1,"35890":2,"35891":2,"35892":1,"35893":2,"35894":1,"35895":1,"35896":1,"35897":2,"35898":1,"35899":1,"35900":1,"35901":2,"35902":1,"35903":2,"35904":1,"35905":2,"35906":2,"35907":2,"35908":1,"35909":2,"35910":1,"35911":1,"35912":2,"35913":2,"35914":1,"35915":1,"35916":2,"35917":1,"35918":1,"35919":2,"35920":2,"35921":1,"35922":2,"35923":1,"35924":2,"35925":2,"35926":2,"35927":1,"35928":1,"35929":2,"35930":2,"35931":2,"35932":1,"35933":1,"35934":2,"35935":1,"35936":1,"35937":1,"35938":1,"35939":1,"35940":2,"35941":1,"35942":2,"35943":2,"35944":2,"35945":1,"35946":2,"35947":2,"35948":1,"35949":2,"35950":1,"35951":1,"35952":2,"35953":2,"35954":1,"35955":2,"35956":1,"35957":1,"35958":1,"35959":1,"35960":1,"35961":1,"35962":2,"35963":2,"35964":1,"35965":2,"35966":1,"35967":1,"35968":2,"35969":2,"35970":2,"35971":1,"35972":2,"35973":1,"35974":1,"35975":2,"35976":2,"35977":1,"35978":2,"35979":1,"35980":2,"35981":2,"35982":2,"35983":1,"35984":2,"35985":2,"35986":1,"35987":1,"35988":1,"35989":1,"35990":2,"35991":1,"35992":1,"35993":1,"35994":1,"35995":2,"35996":2,"35997":2,"35998":1,"35999":1,"36000":2,"36001":1,"36002":1,"36003":1,"36004":2,"36005":2,"36006":2,"36007":2,"36008":2,"36009":1,"36010":1,"36011":1,"36012":2,"36013":1,"36014":2,"36015":1,"36016":1,"36017":1,"36018":2,"36019":1,"36020":2,"36021":2,"36022":2,"36023":1,"36024":1,"36025":2,"36026":1,"36027":1,"36028":1,"36029":2,"36030":1,"36031":1,"36032":1,"36033":2,"36034":2,"36035":1,"36036":1,"36037":2,"36038":2,"36039":1,"36040":2,"36041":2,"36042":1,"36043":2,"36044":2,"36045":2,"36046":1,"36047":1,"36048":1,"36049":1,"36050":2,"36051":1,"36052":1,"36053":1,"36054":2,"36055":2,"36056":1,"36057":1,"36058":2,"36059":1,"36060":1,"36061":1,"36062":1,"36063":1,"36064":2,"36065":2,"36066":1,"36067":2,"36068":2,"36069":2,"36070":2,"36071":2,"36072":1,"36073":2,"36074":1,"36075":1,"36076":1,"36077":2,"36078":2,"36079":1,"36080":1,"36081":2,"36082":1,"36083":1,"36084":1,"36085":2,"36086":2,"36087":1,"36088":2,"36089":2,"36090":2,"36091":1,"36092":1,"36093":1,"36094":2,"36095":2,"36096":2,"36097":1,"36098":2,"36099":2,"36100":1,"36101":1,"36102":1,"36103":2,"36104":2,"36105":2,"36106":2,"36107":2,"36108":1,"36109":1,"36110":1,"36111":2,"36112":2,"36113":1,"36114":2,"36115":2,"36116":2,"36117":1,"36118":1,"36119":1,"36120":1,"36121":2,"36122":2,"36123":2,"36124":2,"36125":2,"36126":1,"36127":1,"36128":1,"36129":1,"36130":2,"36131":1,"36132":2,"36133":2,"36134":1,"36135":1,"36136":2,"36137":1,"36138":1,"36139":1,"36140":1,"36141":1,"36142":2,"36143":2,"36144":1,"36145":2,"36146":1,"36147":1,"36148":1,"36149":1,"36150":2,"36151":1,"36152":2,"36153":1,"36154":1,"36155":1,"36156":2,"36157":1,"36158":2,"36159":2,"36160":1,"36161":1,"36162":2,"36163":2,"36164":2,"36165":2,"36166":2,"36167":2,"36168":2,"36169":1,"36170":1,"36171":2,"36172":1,"36173":1,"36174":2,"36175":2,"36176":2,"36177":1,"36178":2,"36179":2,"36180":2,"36181":1,"36182":2,"36183":2,"36184":1,"36185":2,"36186":2,"36187":2,"36188":1,"36189":1,"36190":1,"36191":2,"36192":2,"36193":2,"36194":2,"36195":1,"36196":2,"36197":2,"36198":2,"36199":1,"36200":2,"36201":2,"36202":2,"36203":2,"36204":2,"36205":2,"36206":2,"36207":2,"36208":2,"36209":1,"36210":2,"36211":2,"36212":1,"36213":2,"36214":2,"36215":2,"36216":2,"36217":1,"36218":2,"36219":1,"36220":2,"36221":2,"36222":2,"36223":2,"36224":2,"36225":1,"36226":2,"36227":2,"36228":1,"36229":1,"36230":1,"36231":2,"36232":1,"36233":1,"36234":2,"36235":2,"36236":2,"36237":1,"36238":2,"36239":2,"36240":2,"36241":2,"36242":2,"36243":1,"36244":1,"36245":2,"36246":1,"36247":2,"36248":2,"36249":2,"36250":1,"36251":1,"36252":1,"36253":1,"36254":2,"36255":1,"36256":2,"36257":1,"36258":2,"36259":2,"36260":1,"36261":1,"36262":1,"36263":2,"36264":2,"36265":2,"36266":2,"36267":2,"36268":2,"36269":2,"36270":1,"36271":2,"36272":1,"36273":2,"36274":2,"36275":1,"36276":2,"36277":2,"36278":1,"36279":1,"36280":1,"36281":2,"36282":2,"36283":2,"36284":1,"36285":2,"36286":2,"36287":2,"36288":2,"36289":2,"36290":2,"36291":1,"36292":2,"36293":1,"36294":2,"36295":2,"36296":2,"36297":2,"36298":2,"36299":2,"36300":2,"36301":1,"36302":1,"36303":1,"36304":1,"36305":1,"36306":2,"36307":1,"36308":2,"36309":1,"36310":1,"36311":1,"36312":1,"36313":1,"36314":1,"36315":1,"36316":1,"36317":2,"36318":2,"36319":1,"36320":2,"36321":1,"36322":2,"36323":2,"36324":1,"36325":2,"36326":2,"36327":1,"36328":2,"36329":1,"36330":2,"36331":2,"36332":2,"36333":2,"36334":2,"36335":1,"36336":2,"36337":2,"36338":1,"36339":2,"36340":2,"36341":2,"36342":1,"36343":1,"36344":2,"36345":2,"36346":1,"36347":2,"36348":1,"36349":2,"36350":1,"36351":1,"36352":2,"36353":1,"36354":2,"36355":1,"36356":2,"36357":2,"36358":2,"36359":2,"36360":1,"36361":1,"36362":1,"36363":2,"36364":2,"36365":1,"36366":2,"36367":2,"36368":2,"36369":1,"36370":1,"36371":2,"36372":1,"36373":1,"36374":1,"36375":1,"36376":2,"36377":1,"36378":2,"36379":2,"36380":2,"36381":2,"36382":2,"36383":1,"36384":2,"36385":1,"36386":2,"36387":1,"36388":2,"36389":2,"36390":1,"36391":2,"36392":2,"36393":1,"36394":2,"36395":1,"36396":2,"36397":2,"36398":1,"36399":2,"36400":2,"36401":2,"36402":1,"36403":1,"36404":1,"36405":2,"36406":2,"36407":2,"36408":2,"36409":2,"36410":1,"36411":2,"36412":2,"36413":2,"36414":1,"36415":2,"36416":1,"36417":1,"36418":1,"36419":1,"36420":1,"36421":2,"36422":1,"36423":2,"36424":2,"36425":1,"36426":1,"36427":1,"36428":2,"36429":2,"36430":1,"36431":1,"36432":1,"36433":1,"36434":2,"36435":1,"36436":2,"36437":1,"36438":1,"36439":2,"36440":1,"36441":1,"36442":2,"36443":2,"36444":2,"36445":1,"36446":1,"36447":2,"36448":1,"36449":1,"36450":2,"36451":2,"36452":2,"36453":1,"36454":2,"36455":2,"36456":1,"36457":1,"36458":2,"36459":1,"36460":2,"36461":1,"36462":1,"36463":1,"36464":1,"36465":1,"36466":2,"36467":1,"36468":1,"36469":2,"36470":2,"36471":1,"36472":1,"36473":1,"36474":1,"36475":2,"36476":1,"36477":1,"36478":2,"36479":1,"36480":1,"36481":1,"36482":2,"36483":2,"36484":1,"36485":1,"36486":1,"36487":1,"36488":1,"36489":1,"36490":1,"36491":1,"36492":2,"36493":2,"36494":2,"36495":2,"36496":2,"36497":1,"36498":1,"36499":2,"36500":1,"36501":2,"36502":1,"36503":2,"36504":1,"36505":1,"36506":2,"36507":2,"36508":1,"36509":2,"36510":2,"36511":2,"36512":1,"36513":1,"36514":2,"36515":2,"36516":1,"36517":1,"36518":1,"36519":2,"36520":1,"36521":2,"36522":2,"36523":1,"36524":2,"36525":2,"36526":2,"36527":2,"36528":2,"36529":2,"36530":1,"36531":1,"36532":1,"36533":1,"36534":1,"36535":1,"36536":1,"36537":1,"36538":2,"36539":1,"36540":1,"36541":1,"36542":2,"36543":1,"36544":1,"36545":1,"36546":1,"36547":1,"36548":1,"36549":2,"36550":2,"36551":1,"36552":1,"36553":1,"36554":1,"36555":1,"36556":2,"36557":1,"36558":1,"36559":2,"36560":1,"36561":1,"36562":2,"36563":1,"36564":2,"36565":1,"36566":2,"36567":2,"36568":1,"36569":2,"36570":2,"36571":1,"36572":2,"36573":1,"36574":2,"36575":2,"36576":2,"36577":2,"36578":2,"36579":1,"36580":1,"36581":1,"36582":1,"36583":2,"36584":2,"36585":2,"36586":2,"36587":2,"36588":2,"36589":2,"36590":2,"36591":1,"36592":1,"36593":1,"36594":2,"36595":1,"36596":2,"36597":1,"36598":2,"36599":1,"36600":2,"36601":2,"36602":2,"36603":1,"36604":1,"36605":2,"36606":1,"36607":2,"36608":1,"36609":1,"36610":2,"36611":2,"36612":1,"36613":1,"36614":2,"36615":2,"36616":2,"36617":2,"36618":2,"36619":2,"36620":2,"36621":2,"36622":1,"36623":2,"36624":2,"36625":1,"36626":1,"36627":2,"36628":2,"36629":1,"36630":2,"36631":1,"36632":2,"36633":2,"36634":1,"36635":2,"36636":2,"36637":1,"36638":1,"36639":2,"36640":2,"36641":1,"36642":2,"36643":2,"36644":1,"36645":1,"36646":2,"36647":1,"36648":1,"36649":2,"36650":2,"36651":2,"36652":1,"36653":1,"36654":1,"36655":1,"36656":1,"36657":1,"36658":2,"36659":1,"36660":1,"36661":1,"36662":2,"36663":2,"36664":2,"36665":1,"36666":2,"36667":2,"36668":1,"36669":1,"36670":1,"36671":1,"36672":1,"36673":2,"36674":2,"36675":1,"36676":1,"36677":1,"36678":1,"36679":1,"36680":1,"36681":2,"36682":2,"36683":2,"36684":1,"36685":2,"36686":1,"36687":2,"36688":1,"36689":1,"36690":1,"36691":2,"36692":2,"36693":2,"36694":1,"36695":1,"36696":1,"36697":2,"36698":1,"36699":1,"36700":2,"36701":2,"36702":2,"36703":2,"36704":1,"36705":2,"36706":2,"36707":1,"36708":1,"36709":2,"36710":2,"36711":2,"36712":2,"36713":1,"36714":1,"36715":1,"36716":1,"36717":1,"36718":1,"36719":1,"36720":1,"36721":2,"36722":1,"36723":1,"36724":2,"36725":2,"36726":2,"36727":1,"36728":2,"36729":1,"36730":1,"36731":1,"36732":2,"36733":1,"36734":1,"36735":1,"36736":2,"36737":2,"36738":2,"36739":2,"36740":1,"36741":2,"36742":2,"36743":2,"36744":1,"36745":1,"36746":1,"36747":2,"36748":1,"36749":2,"36750":1,"36751":2,"36752":1,"36753":1,"36754":1,"36755":2,"36756":1,"36757":2,"36758":1,"36759":1,"36760":2,"36761":2,"36762":2,"36763":2,"36764":2,"36765":2,"36766":1,"36767":1,"36768":1,"36769":1,"36770":1,"36771":1,"36772":1,"36773":1,"36774":2,"36775":1,"36776":2,"36777":1,"36778":2,"36779":2,"36780":2,"36781":2,"36782":2,"36783":2,"36784":1,"36785":2,"36786":1,"36787":2,"36788":1,"36789":2,"36790":1,"36791":2,"36792":2,"36793":1,"36794":1,"36795":2,"36796":2,"36797":1,"36798":2,"36799":1,"36800":1,"36801":1,"36802":1,"36803":2,"36804":2,"36805":1,"36806":2,"36807":2,"36808":2,"36809":1,"36810":1,"36811":1,"36812":1,"36813":1,"36814":2,"36815":1,"36816":1,"36817":1,"36818":2,"36819":2,"36820":2,"36821":1,"36822":1,"36823":1,"36824":1,"36825":1,"36826":1,"36827":1,"36828":2,"36829":2,"36830":2,"36831":2,"36832":2,"36833":2,"36834":1,"36835":2,"36836":1,"36837":2,"36838":2,"36839":1,"36840":2,"36841":1,"36842":2,"36843":2,"36844":1,"36845":1,"36846":2,"36847":1,"36848":1,"36849":1,"36850":2,"36851":2,"36852":1,"36853":2,"36854":1,"36855":1,"36856":2,"36857":2,"36858":2,"36859":2,"36860":1,"36861":2,"36862":2,"36863":1,"36864":1,"36865":2,"36866":1,"36867":1,"36868":2,"36869":2,"36870":2,"36871":2,"36872":1,"36873":1,"36874":1,"36875":2,"36876":2,"36877":1,"36878":2,"36879":2,"36880":2,"36881":1,"36882":1,"36883":1,"36884":2,"36885":1,"36886":2,"36887":2,"36888":2,"36889":1,"36890":2,"36891":1,"36892":2,"36893":2,"36894":1,"36895":1,"36896":2,"36897":2,"36898":1,"36899":2,"36900":2,"36901":2,"36902":2,"36903":2,"36904":1,"36905":1,"36906":2,"36907":2,"36908":1,"36909":2,"36910":1,"36911":1,"36912":2,"36913":1,"36914":1,"36915":1,"36916":2,"36917":1,"36918":2,"36919":1,"36920":2,"36921":2,"36922":2,"36923":1,"36924":2,"36925":2,"36926":2,"36927":2,"36928":1,"36929":2,"36930":1,"36931":2,"36932":2,"36933":2,"36934":2,"36935":2,"36936":2,"36937":1,"36938":2,"36939":2,"36940":1,"36941":1,"36942":1,"36943":1,"36944":1,"36945":1,"36946":1,"36947":1,"36948":1,"36949":1,"36950":1,"36951":1,"36952":2,"36953":1,"36954":2,"36955":1,"36956":2,"36957":1,"36958":1,"36959":1,"36960":2,"36961":2,"36962":1,"36963":1,"36964":1,"36965":1,"36966":2,"36967":2,"36968":1,"36969":1,"36970":2,"36971":2,"36972":2,"36973":1,"36974":1,"36975":1,"36976":2,"36977":2,"36978":2,"36979":1,"36980":2,"36981":1,"36982":1,"36983":2,"36984":2,"36985":2,"36986":2,"36987":2,"36988":2,"36989":2,"36990":2,"36991":1,"36992":1,"36993":2,"36994":1,"36995":1,"36996":2,"36997":2,"36998":2,"36999":1,"37000":1,"37001":1,"37002":2,"37003":2,"37004":1,"37005":1,"37006":2,"37007":1,"37008":2,"37009":1,"37010":2,"37011":1,"37012":2,"37013":1,"37014":1,"37015":2,"37016":2,"37017":1,"37018":1,"37019":1,"37020":2,"37021":1,"37022":1,"37023":2,"37024":1,"37025":1,"37026":1,"37027":1,"37028":1,"37029":2,"37030":1,"37031":1,"37032":1,"37033":1,"37034":2,"37035":1,"37036":1,"37037":1,"37038":1,"37039":1,"37040":1,"37041":2,"37042":1,"37043":2,"37044":1,"37045":1,"37046":2,"37047":1,"37048":2,"37049":2,"37050":2,"37051":1,"37052":1,"37053":1,"37054":1,"37055":2,"37056":1,"37057":2,"37058":2,"37059":1,"37060":1,"37061":2,"37062":2,"37063":2,"37064":2,"37065":1,"37066":2,"37067":2,"37068":1,"37069":2,"37070":1,"37071":2,"37072":2,"37073":2,"37074":2,"37075":1,"37076":2,"37077":2,"37078":1,"37079":2,"37080":1,"37081":2,"37082":1,"37083":2,"37084":1,"37085":1,"37086":1,"37087":1,"37088":2,"37089":2,"37090":2,"37091":2,"37092":2,"37093":2,"37094":1,"37095":2,"37096":1,"37097":2,"37098":2,"37099":2,"37100":2,"37101":1,"37102":2,"37103":2,"37104":2,"37105":2,"37106":1,"37107":1,"37108":1,"37109":2,"37110":1,"37111":2,"37112":2,"37113":1,"37114":2,"37115":1,"37116":2,"37117":1,"37118":2,"37119":1,"37120":2,"37121":1,"37122":2,"37123":2,"37124":2,"37125":2,"37126":1,"37127":1,"37128":2,"37129":1,"37130":1,"37131":1,"37132":1,"37133":2,"37134":2,"37135":1,"37136":2,"37137":2,"37138":2,"37139":2,"37140":2,"37141":2,"37142":2,"37143":1,"37144":2,"37145":1,"37146":1,"37147":2,"37148":1,"37149":1,"37150":1,"37151":1,"37152":1,"37153":1,"37154":2,"37155":2,"37156":2,"37157":2,"37158":2,"37159":2,"37160":2,"37161":2,"37162":1,"37163":2,"37164":1,"37165":2,"37166":2,"37167":2,"37168":1,"37169":1,"37170":1,"37171":2,"37172":2,"37173":2,"37174":2,"37175":2,"37176":2,"37177":1,"37178":1,"37179":1,"37180":2,"37181":2,"37182":1,"37183":2,"37184":2,"37185":2,"37186":1,"37187":2,"37188":1,"37189":1,"37190":2,"37191":2,"37192":1,"37193":1,"37194":2,"37195":1,"37196":2,"37197":1,"37198":1,"37199":1,"37200":1,"37201":2,"37202":2,"37203":2,"37204":1,"37205":2,"37206":2,"37207":2,"37208":1,"37209":2,"37210":1,"37211":1,"37212":2,"37213":1,"37214":1,"37215":1,"37216":2,"37217":1,"37218":2,"37219":1,"37220":2,"37221":2,"37222":1,"37223":1,"37224":2,"37225":2,"37226":2,"37227":2,"37228":1,"37229":2,"37230":2,"37231":1,"37232":2,"37233":1,"37234":1,"37235":1,"37236":1,"37237":1,"37238":1,"37239":1,"37240":1,"37241":1,"37242":2,"37243":2,"37244":1,"37245":2,"37246":1,"37247":2,"37248":1,"37249":1,"37250":1,"37251":1,"37252":2,"37253":1,"37254":1,"37255":2,"37256":1,"37257":1,"37258":1,"37259":1,"37260":2,"37261":2,"37262":1,"37263":1,"37264":2,"37265":2,"37266":2,"37267":2,"37268":1,"37269":2,"37270":2,"37271":2,"37272":1,"37273":2,"37274":1,"37275":2,"37276":2,"37277":1,"37278":1,"37279":2,"37280":2,"37281":2,"37282":2,"37283":1,"37284":1,"37285":1,"37286":2,"37287":1,"37288":2,"37289":2,"37290":2,"37291":2,"37292":1,"37293":1,"37294":2,"37295":2,"37296":1,"37297":1,"37298":2,"37299":1,"37300":1,"37301":1,"37302":2,"37303":1,"37304":2,"37305":2,"37306":2,"37307":2,"37308":2,"37309":1,"37310":1,"37311":1,"37312":1,"37313":2,"37314":1,"37315":2,"37316":2,"37317":2,"37318":2,"37319":2,"37320":2,"37321":2,"37322":2,"37323":2,"37324":1,"37325":1,"37326":1,"37327":1,"37328":1,"37329":1,"37330":2,"37331":2,"37332":1,"37333":2,"37334":1,"37335":2,"37336":2,"37337":1,"37338":1,"37339":2,"37340":1,"37341":2,"37342":1,"37343":2,"37344":2,"37345":2,"37346":2,"37347":1,"37348":2,"37349":2,"37350":1,"37351":2,"37352":2,"37353":2,"37354":1,"37355":2,"37356":2,"37357":1,"37358":2,"37359":2,"37360":2,"37361":1,"37362":1,"37363":1,"37364":1,"37365":1,"37366":1,"37367":1,"37368":1,"37369":2,"37370":1,"37371":1,"37372":1,"37373":1,"37374":1,"37375":2,"37376":1,"37377":1,"37378":2,"37379":1,"37380":1,"37381":2,"37382":1,"37383":1,"37384":1,"37385":1,"37386":2,"37387":1,"37388":1,"37389":1,"37390":1,"37391":2,"37392":1,"37393":1,"37394":2,"37395":2,"37396":2,"37397":1,"37398":1,"37399":2,"37400":2,"37401":1,"37402":1,"37403":2,"37404":2,"37405":1,"37406":1,"37407":2,"37408":1,"37409":2,"37410":2,"37411":1,"37412":1,"37413":1,"37414":2,"37415":1,"37416":1,"37417":2,"37418":1,"37419":2,"37420":1,"37421":1,"37422":2,"37423":1,"37424":1,"37425":1,"37426":1,"37427":2,"37428":2,"37429":1,"37430":1,"37431":1,"37432":1,"37433":1,"37434":2,"37435":1,"37436":2,"37437":1,"37438":2,"37439":2,"37440":1,"37441":1,"37442":1,"37443":1,"37444":1,"37445":2,"37446":2,"37447":2,"37448":1,"37449":2,"37450":2,"37451":2,"37452":2,"37453":1,"37454":2,"37455":2,"37456":1,"37457":1,"37458":1,"37459":2,"37460":1,"37461":1,"37462":1,"37463":2,"37464":1,"37465":2,"37466":2,"37467":1,"37468":2,"37469":2,"37470":1,"37471":2,"37472":1,"37473":1,"37474":2,"37475":2,"37476":1,"37477":1,"37478":1,"37479":2,"37480":1,"37481":1,"37482":1,"37483":1,"37484":1,"37485":2,"37486":2,"37487":2,"37488":1,"37489":2,"37490":1,"37491":2,"37492":2,"37493":1,"37494":2,"37495":2,"37496":1,"37497":1,"37498":2,"37499":1,"37500":1,"37501":2,"37502":2,"37503":2,"37504":2,"37505":1,"37506":1,"37507":2,"37508":1,"37509":2,"37510":2,"37511":2,"37512":2,"37513":1,"37514":1,"37515":2,"37516":2,"37517":2,"37518":2,"37519":2,"37520":1,"37521":1,"37522":1,"37523":1,"37524":1,"37525":2,"37526":1,"37527":2,"37528":1,"37529":1,"37530":1,"37531":2,"37532":1,"37533":2,"37534":1,"37535":1,"37536":2,"37537":1,"37538":1,"37539":1,"37540":2,"37541":1,"37542":2,"37543":2,"37544":1,"37545":2,"37546":1,"37547":1,"37548":2,"37549":1,"37550":1,"37551":2,"37552":2,"37553":1,"37554":1,"37555":2,"37556":1,"37557":2,"37558":1,"37559":2,"37560":1,"37561":2,"37562":2,"37563":2,"37564":1,"37565":2,"37566":1,"37567":2,"37568":2,"37569":2,"37570":1,"37571":1,"37572":1,"37573":2,"37574":1,"37575":1,"37576":2,"37577":1,"37578":1,"37579":1,"37580":2,"37581":2,"37582":2,"37583":2,"37584":1,"37585":1,"37586":1,"37587":2,"37588":1,"37589":2,"37590":2,"37591":1,"37592":1,"37593":2,"37594":1,"37595":2,"37596":2,"37597":2,"37598":2,"37599":1,"37600":2,"37601":2,"37602":1,"37603":2,"37604":2,"37605":2,"37606":1,"37607":1,"37608":2,"37609":2,"37610":1,"37611":1,"37612":1,"37613":2,"37614":1,"37615":1,"37616":2,"37617":2,"37618":2,"37619":2,"37620":1,"37621":2,"37622":1,"37623":1,"37624":2,"37625":2,"37626":1,"37627":1,"37628":2,"37629":2,"37630":1,"37631":1,"37632":1,"37633":1,"37634":1,"37635":1,"37636":1,"37637":2,"37638":2,"37639":1,"37640":2,"37641":2,"37642":2,"37643":2,"37644":1,"37645":2,"37646":1,"37647":2,"37648":2,"37649":1,"37650":1,"37651":1,"37652":1,"37653":1,"37654":1,"37655":1,"37656":1,"37657":2,"37658":1,"37659":1,"37660":1,"37661":2,"37662":2,"37663":2,"37664":1,"37665":2,"37666":1,"37667":1,"37668":2,"37669":1,"37670":2,"37671":2,"37672":2,"37673":2,"37674":2,"37675":1,"37676":2,"37677":2,"37678":2,"37679":1,"37680":2,"37681":2,"37682":1,"37683":1,"37684":1,"37685":2,"37686":1,"37687":1,"37688":2,"37689":2,"37690":2,"37691":1,"37692":2,"37693":2,"37694":2,"37695":2,"37696":2,"37697":1,"37698":2,"37699":1,"37700":1,"37701":2,"37702":1,"37703":2,"37704":2,"37705":2,"37706":1,"37707":1,"37708":2,"37709":2,"37710":2,"37711":1,"37712":1,"37713":2,"37714":2,"37715":2,"37716":1,"37717":1,"37718":1,"37719":1,"37720":2,"37721":2,"37722":2,"37723":1,"37724":1,"37725":2,"37726":1,"37727":2,"37728":2,"37729":2,"37730":1,"37731":2,"37732":1,"37733":2,"37734":1,"37735":1,"37736":1,"37737":1,"37738":2,"37739":1,"37740":1,"37741":2,"37742":1,"37743":1,"37744":1,"37745":2,"37746":1,"37747":1,"37748":2,"37749":2,"37750":2,"37751":1,"37752":2,"37753":1,"37754":2,"37755":2,"37756":1,"37757":2,"37758":2,"37759":2,"37760":2,"37761":1,"37762":1,"37763":1,"37764":1,"37765":1,"37766":2,"37767":1,"37768":2,"37769":1,"37770":1,"37771":2,"37772":2,"37773":1,"37774":2,"37775":2,"37776":2,"37777":2,"37778":2,"37779":2,"37780":1,"37781":2,"37782":2,"37783":1,"37784":2,"37785":2,"37786":2,"37787":1,"37788":2,"37789":2,"37790":1,"37791":2,"37792":2,"37793":1,"37794":2,"37795":2,"37796":1,"37797":2,"37798":2,"37799":1,"37800":2,"37801":2,"37802":2,"37803":2,"37804":2,"37805":1,"37806":1,"37807":1,"37808":1,"37809":1,"37810":2,"37811":2,"37812":2,"37813":1,"37814":1,"37815":2,"37816":2,"37817":1,"37818":2,"37819":1,"37820":1,"37821":1,"37822":1,"37823":1,"37824":2,"37825":2,"37826":2,"37827":2,"37828":2,"37829":1,"37830":2,"37831":2,"37832":1,"37833":2,"37834":1,"37835":2,"37836":1,"37837":2,"37838":2,"37839":2,"37840":2,"37841":2,"37842":1,"37843":2,"37844":1,"37845":2,"37846":1,"37847":2,"37848":2,"37849":1,"37850":1,"37851":1,"37852":1,"37853":1,"37854":1,"37855":1,"37856":1,"37857":1,"37858":1,"37859":1,"37860":2,"37861":2,"37862":1,"37863":2,"37864":2,"37865":1,"37866":2,"37867":1,"37868":1,"37869":1,"37870":2,"37871":1,"37872":2,"37873":1,"37874":1,"37875":1,"37876":2,"37877":1,"37878":2,"37879":2,"37880":2,"37881":2,"37882":2,"37883":1,"37884":1,"37885":1,"37886":2,"37887":2,"37888":1,"37889":2,"37890":1,"37891":1,"37892":2,"37893":1,"37894":1,"37895":1,"37896":1,"37897":2,"37898":2,"37899":2,"37900":1,"37901":1,"37902":1,"37903":2,"37904":1,"37905":2,"37906":1,"37907":1,"37908":2,"37909":2,"37910":1,"37911":1,"37912":2,"37913":2,"37914":2,"37915":1,"37916":2,"37917":1,"37918":2,"37919":2,"37920":2,"37921":2,"37922":2,"37923":1,"37924":2,"37925":2,"37926":1,"37927":1,"37928":2,"37929":2,"37930":2,"37931":1,"37932":2,"37933":1,"37934":2,"37935":1,"37936":1,"37937":2,"37938":2,"37939":2,"37940":1,"37941":2,"37942":1,"37943":1,"37944":2,"37945":1,"37946":1,"37947":2,"37948":2,"37949":2,"37950":1,"37951":2,"37952":2,"37953":2,"37954":2,"37955":2,"37956":2,"37957":1,"37958":2,"37959":1,"37960":1,"37961":2,"37962":2,"37963":1,"37964":2,"37965":2,"37966":1,"37967":1,"37968":2,"37969":1,"37970":1,"37971":2,"37972":1,"37973":2,"37974":2,"37975":1,"37976":1,"37977":1,"37978":1,"37979":1,"37980":2,"37981":2,"37982":2,"37983":2,"37984":2,"37985":2,"37986":1,"37987":1,"37988":2,"37989":1,"37990":2,"37991":1,"37992":1,"37993":2,"37994":2,"37995":1,"37996":1,"37997":1,"37998":2,"37999":2,"38000":1,"38001":1,"38002":1,"38003":2,"38004":2,"38005":2,"38006":1,"38007":2,"38008":1,"38009":2,"38010":2,"38011":2,"38012":1,"38013":2,"38014":2,"38015":2,"38016":2,"38017":1,"38018":1,"38019":1,"38020":1,"38021":2,"38022":2,"38023":2,"38024":1,"38025":2,"38026":1,"38027":1,"38028":2,"38029":1,"38030":1,"38031":2,"38032":1,"38033":2,"38034":2,"38035":2,"38036":2,"38037":2,"38038":2,"38039":1,"38040":1,"38041":1,"38042":2,"38043":1,"38044":2,"38045":2,"38046":2,"38047":1,"38048":1,"38049":1,"38050":2,"38051":1,"38052":2,"38053":2,"38054":1,"38055":2,"38056":2,"38057":1,"38058":1,"38059":1,"38060":2,"38061":2,"38062":1,"38063":2,"38064":2,"38065":2,"38066":1,"38067":1,"38068":2,"38069":1,"38070":2,"38071":2,"38072":1,"38073":1,"38074":2,"38075":1,"38076":2,"38077":1,"38078":2,"38079":1,"38080":1,"38081":1,"38082":1,"38083":2,"38084":1,"38085":1,"38086":2,"38087":2,"38088":2,"38089":1,"38090":2,"38091":1,"38092":2,"38093":2,"38094":1,"38095":1,"38096":1,"38097":2,"38098":1,"38099":1,"38100":2,"38101":2,"38102":2,"38103":1,"38104":1,"38105":1,"38106":2,"38107":1,"38108":2,"38109":2,"38110":2,"38111":2,"38112":1,"38113":1,"38114":1,"38115":2,"38116":2,"38117":1,"38118":1,"38119":1,"38120":1,"38121":1,"38122":1,"38123":1,"38124":2,"38125":1,"38126":1,"38127":1,"38128":1,"38129":2,"38130":2,"38131":2,"38132":1,"38133":1,"38134":2,"38135":2,"38136":2,"38137":1,"38138":1,"38139":1,"38140":1,"38141":2,"38142":1,"38143":1,"38144":1,"38145":2,"38146":2,"38147":2,"38148":2,"38149":2,"38150":1,"38151":1,"38152":2,"38153":1,"38154":2,"38155":2,"38156":2,"38157":2,"38158":2,"38159":2,"38160":2,"38161":2,"38162":2,"38163":1,"38164":2,"38165":1,"38166":1,"38167":1,"38168":2,"38169":2,"38170":2,"38171":2,"38172":1,"38173":2,"38174":2,"38175":1,"38176":2,"38177":2,"38178":1,"38179":1,"38180":1,"38181":1,"38182":1,"38183":1,"38184":2,"38185":2,"38186":1,"38187":2,"38188":1,"38189":2,"38190":1,"38191":1,"38192":1,"38193":1,"38194":2,"38195":2,"38196":2,"38197":2,"38198":2,"38199":1,"38200":1,"38201":2,"38202":2,"38203":1,"38204":2,"38205":2,"38206":1,"38207":1,"38208":2,"38209":2,"38210":1,"38211":2,"38212":1,"38213":2,"38214":1,"38215":2,"38216":1,"38217":2,"38218":1,"38219":1,"38220":2,"38221":2,"38222":1,"38223":2,"38224":2,"38225":2,"38226":1,"38227":2,"38228":2,"38229":2,"38230":2,"38231":1,"38232":2,"38233":1,"38234":2,"38235":1,"38236":1,"38237":2,"38238":2,"38239":2,"38240":1,"38241":2,"38242":1,"38243":2,"38244":2,"38245":1,"38246":2,"38247":1,"38248":1,"38249":1,"38250":2,"38251":1,"38252":1,"38253":1,"38254":2,"38255":1,"38256":2,"38257":1,"38258":1,"38259":1,"38260":1,"38261":2,"38262":1,"38263":1,"38264":2,"38265":2,"38266":2,"38267":2,"38268":2,"38269":2,"38270":2,"38271":2,"38272":1,"38273":1,"38274":1,"38275":2,"38276":1,"38277":1,"38278":2,"38279":1,"38280":2,"38281":1,"38282":2,"38283":1,"38284":2,"38285":1,"38286":2,"38287":1,"38288":1,"38289":2,"38290":2,"38291":1,"38292":2,"38293":1,"38294":1,"38295":2,"38296":2,"38297":2,"38298":1,"38299":1,"38300":2,"38301":1,"38302":2,"38303":1,"38304":2,"38305":2,"38306":1,"38307":1,"38308":2,"38309":2,"38310":2,"38311":1,"38312":2,"38313":1,"38314":1,"38315":2,"38316":1,"38317":1,"38318":1,"38319":2,"38320":2,"38321":2,"38322":2,"38323":2,"38324":2,"38325":1,"38326":2,"38327":1,"38328":2,"38329":2,"38330":1,"38331":1,"38332":2,"38333":1,"38334":2,"38335":1,"38336":1,"38337":2,"38338":2,"38339":2,"38340":1,"38341":1,"38342":2,"38343":2,"38344":2,"38345":1,"38346":2,"38347":2,"38348":2,"38349":1,"38350":2,"38351":2,"38352":1,"38353":2,"38354":1,"38355":1,"38356":2,"38357":1,"38358":1,"38359":2,"38360":1,"38361":1,"38362":2,"38363":1,"38364":1,"38365":1,"38366":1,"38367":1,"38368":2,"38369":1,"38370":2,"38371":1,"38372":2,"38373":1,"38374":2,"38375":1,"38376":1,"38377":1,"38378":2,"38379":1,"38380":1,"38381":2,"38382":1,"38383":1,"38384":1,"38385":2,"38386":1,"38387":2,"38388":2,"38389":2,"38390":1,"38391":2,"38392":2,"38393":2,"38394":2,"38395":2,"38396":2,"38397":2,"38398":2,"38399":2,"38400":1,"38401":2,"38402":2,"38403":2,"38404":1,"38405":1,"38406":2,"38407":1,"38408":1,"38409":1,"38410":1,"38411":2,"38412":2,"38413":2,"38414":1,"38415":1,"38416":2,"38417":2,"38418":2,"38419":2,"38420":1,"38421":2,"38422":1,"38423":1,"38424":1,"38425":1,"38426":1,"38427":1,"38428":2,"38429":2,"38430":1,"38431":2,"38432":2,"38433":2,"38434":1,"38435":2,"38436":2,"38437":1,"38438":1,"38439":1,"38440":1,"38441":2,"38442":2,"38443":1,"38444":1,"38445":1,"38446":2,"38447":1,"38448":1,"38449":2,"38450":2,"38451":1,"38452":2,"38453":2,"38454":2,"38455":1,"38456":2,"38457":1,"38458":2,"38459":1,"38460":1,"38461":1,"38462":1,"38463":1,"38464":2,"38465":1,"38466":1,"38467":1,"38468":1,"38469":2,"38470":1,"38471":1,"38472":1,"38473":2,"38474":1,"38475":2,"38476":2,"38477":2,"38478":1,"38479":2,"38480":2,"38481":2,"38482":2,"38483":2,"38484":2,"38485":2,"38486":1,"38487":2,"38488":1,"38489":2,"38490":2,"38491":2,"38492":2,"38493":2,"38494":1,"38495":2,"38496":2,"38497":2,"38498":2,"38499":1,"38500":2,"38501":2,"38502":1,"38503":2,"38504":2,"38505":2,"38506":2,"38507":2,"38508":1,"38509":2,"38510":2,"38511":1,"38512":1,"38513":1,"38514":2,"38515":2,"38516":1,"38517":1,"38518":1,"38519":1,"38520":1,"38521":1,"38522":2,"38523":2,"38524":2,"38525":2,"38526":1,"38527":1,"38528":2,"38529":1,"38530":1,"38531":1,"38532":2,"38533":1,"38534":1,"38535":2,"38536":1,"38537":2,"38538":1,"38539":2,"38540":1,"38541":2,"38542":2,"38543":2,"38544":1,"38545":1,"38546":1,"38547":1,"38548":2,"38549":2,"38550":2,"38551":2,"38552":2,"38553":2,"38554":2,"38555":2,"38556":2,"38557":1,"38558":1,"38559":2,"38560":2,"38561":1,"38562":1,"38563":2,"38564":1,"38565":1,"38566":2,"38567":2,"38568":2,"38569":1,"38570":2,"38571":2,"38572":1,"38573":1,"38574":1,"38575":1,"38576":1,"38577":2,"38578":2,"38579":2,"38580":2,"38581":1,"38582":1,"38583":2,"38584":1,"38585":1,"38586":2,"38587":2,"38588":2,"38589":2,"38590":2,"38591":2,"38592":1,"38593":2,"38594":1,"38595":2,"38596":2,"38597":1,"38598":2,"38599":1,"38600":1,"38601":2,"38602":1,"38603":1,"38604":1,"38605":2,"38606":2,"38607":2,"38608":1,"38609":1,"38610":1,"38611":1,"38612":1,"38613":1,"38614":2,"38615":1,"38616":2,"38617":2,"38618":1,"38619":2,"38620":1,"38621":2,"38622":1,"38623":2,"38624":2,"38625":2,"38626":1,"38627":1,"38628":2,"38629":1,"38630":2,"38631":2,"38632":2,"38633":1,"38634":1,"38635":1,"38636":2,"38637":2,"38638":2,"38639":1,"38640":1,"38641":2,"38642":1,"38643":2,"38644":2,"38645":1,"38646":2,"38647":1,"38648":1,"38649":1,"38650":1,"38651":2,"38652":1,"38653":2,"38654":2,"38655":1,"38656":1,"38657":2,"38658":2,"38659":1,"38660":2,"38661":1,"38662":1,"38663":2,"38664":2,"38665":2,"38666":1,"38667":1,"38668":1,"38669":2,"38670":1,"38671":1,"38672":1,"38673":2,"38674":1,"38675":1,"38676":2,"38677":2,"38678":1,"38679":1,"38680":2,"38681":1,"38682":2,"38683":1,"38684":1,"38685":2,"38686":1,"38687":1,"38688":1,"38689":2,"38690":2,"38691":2,"38692":1,"38693":1,"38694":1,"38695":1,"38696":1,"38697":2,"38698":2,"38699":1,"38700":1,"38701":2,"38702":2,"38703":1,"38704":2,"38705":2,"38706":2,"38707":2,"38708":1,"38709":1,"38710":1,"38711":1,"38712":2,"38713":1,"38714":2,"38715":1,"38716":1,"38717":2,"38718":1,"38719":2,"38720":1,"38721":1,"38722":1,"38723":2,"38724":2,"38725":1,"38726":2,"38727":2,"38728":1,"38729":1,"38730":2,"38731":2,"38732":2,"38733":2,"38734":1,"38735":1,"38736":2,"38737":1,"38738":2,"38739":1,"38740":2,"38741":2,"38742":1,"38743":2,"38744":1,"38745":2,"38746":2,"38747":2,"38748":1,"38749":1,"38750":1,"38751":1,"38752":2,"38753":1,"38754":1,"38755":2,"38756":2,"38757":1,"38758":2,"38759":2,"38760":1,"38761":1,"38762":1,"38763":1,"38764":1,"38765":2,"38766":1,"38767":1,"38768":1,"38769":1,"38770":1,"38771":1,"38772":2,"38773":1,"38774":2,"38775":2,"38776":2,"38777":1,"38778":2,"38779":2,"38780":1,"38781":1,"38782":1,"38783":2,"38784":1,"38785":1,"38786":1,"38787":1,"38788":2,"38789":2,"38790":1,"38791":2,"38792":2,"38793":1,"38794":2,"38795":2,"38796":1,"38797":1,"38798":2,"38799":1,"38800":1,"38801":1,"38802":2,"38803":1,"38804":2,"38805":2,"38806":2,"38807":2,"38808":2,"38809":1,"38810":2,"38811":2,"38812":1,"38813":2,"38814":1,"38815":2,"38816":2,"38817":2,"38818":2,"38819":1,"38820":1,"38821":1,"38822":2,"38823":2,"38824":1,"38825":2,"38826":2,"38827":2,"38828":2,"38829":2,"38830":1,"38831":2,"38832":2,"38833":1,"38834":2,"38835":1,"38836":2,"38837":2,"38838":2,"38839":2,"38840":1,"38841":1,"38842":1,"38843":2,"38844":2,"38845":1,"38846":1,"38847":2,"38848":1,"38849":2,"38850":1,"38851":1,"38852":1,"38853":1,"38854":1,"38855":1,"38856":1,"38857":2,"38858":2,"38859":1,"38860":2,"38861":2,"38862":1,"38863":1,"38864":2,"38865":2,"38866":2,"38867":1,"38868":2,"38869":2,"38870":1,"38871":2,"38872":2,"38873":2,"38874":2,"38875":2,"38876":1,"38877":1,"38878":2,"38879":2,"38880":2,"38881":2,"38882":2,"38883":2,"38884":1,"38885":2,"38886":2,"38887":1,"38888":1,"38889":1,"38890":1,"38891":1,"38892":2,"38893":1,"38894":2,"38895":1,"38896":2,"38897":1,"38898":2,"38899":1,"38900":2,"38901":1,"38902":2,"38903":1,"38904":2,"38905":1,"38906":2,"38907":2,"38908":2,"38909":2,"38910":1,"38911":2,"38912":2,"38913":2,"38914":1,"38915":1,"38916":2,"38917":1,"38918":1,"38919":1,"38920":1,"38921":2,"38922":2,"38923":1,"38924":2,"38925":1,"38926":1,"38927":1,"38928":2,"38929":1,"38930":1,"38931":2,"38932":1,"38933":1,"38934":1,"38935":1,"38936":1,"38937":1,"38938":1,"38939":1,"38940":2,"38941":2,"38942":1,"38943":2,"38944":1,"38945":2,"38946":1,"38947":1,"38948":2,"38949":1,"38950":2,"38951":2,"38952":1,"38953":1,"38954":2,"38955":1,"38956":2,"38957":1,"38958":1,"38959":2,"38960":2,"38961":1,"38962":2,"38963":2,"38964":1,"38965":2,"38966":1,"38967":1,"38968":2,"38969":2,"38970":1,"38971":2,"38972":1,"38973":1,"38974":1,"38975":2,"38976":1,"38977":1,"38978":2,"38979":1,"38980":2,"38981":1,"38982":1,"38983":2,"38984":1,"38985":2,"38986":1,"38987":1,"38988":2,"38989":1,"38990":2,"38991":2,"38992":2,"38993":1,"38994":1,"38995":2,"38996":2,"38997":1,"38998":2,"38999":2,"39000":1,"39001":1,"39002":2,"39003":1,"39004":2,"39005":1,"39006":2,"39007":2,"39008":1,"39009":1,"39010":2,"39011":1,"39012":1,"39013":2,"39014":2,"39015":1,"39016":1,"39017":1,"39018":1,"39019":1,"39020":1,"39021":1,"39022":1,"39023":1,"39024":2,"39025":2,"39026":2,"39027":1,"39028":1,"39029":2,"39030":2,"39031":1,"39032":2,"39033":2,"39034":2,"39035":2,"39036":2,"39037":2,"39038":2,"39039":1,"39040":1,"39041":2,"39042":1,"39043":2,"39044":2,"39045":2,"39046":1,"39047":2,"39048":2,"39049":2,"39050":1,"39051":1,"39052":1,"39053":2,"39054":2,"39055":1,"39056":1,"39057":1,"39058":2,"39059":2,"39060":1,"39061":2,"39062":2,"39063":1,"39064":2,"39065":1,"39066":2,"39067":1,"39068":1,"39069":2,"39070":1,"39071":2,"39072":2,"39073":1,"39074":2,"39075":2,"39076":2,"39077":2,"39078":1,"39079":1,"39080":2,"39081":2,"39082":1,"39083":2,"39084":1,"39085":1,"39086":2,"39087":1,"39088":2,"39089":1,"39090":1,"39091":2,"39092":2,"39093":1,"39094":1,"39095":2,"39096":2,"39097":1,"39098":2,"39099":2,"39100":2,"39101":2,"39102":1,"39103":2,"39104":2,"39105":2,"39106":1,"39107":2,"39108":2,"39109":1,"39110":2,"39111":2,"39112":1,"39113":1,"39114":2,"39115":1,"39116":2,"39117":2,"39118":2,"39119":1,"39120":2,"39121":2,"39122":1,"39123":1,"39124":2,"39125":2,"39126":1,"39127":2,"39128":1,"39129":2,"39130":2,"39131":2,"39132":2,"39133":2,"39134":2,"39135":1,"39136":2,"39137":2,"39138":1,"39139":2,"39140":1,"39141":1,"39142":1,"39143":1,"39144":2,"39145":1,"39146":1,"39147":1,"39148":2,"39149":2,"39150":2,"39151":2,"39152":1,"39153":2,"39154":1,"39155":2,"39156":1,"39157":1,"39158":2,"39159":2,"39160":2,"39161":2,"39162":1,"39163":2,"39164":1,"39165":1,"39166":1,"39167":1,"39168":2,"39169":1,"39170":2,"39171":2,"39172":1,"39173":2,"39174":2,"39175":1,"39176":2,"39177":1,"39178":2,"39179":2,"39180":1,"39181":1,"39182":2,"39183":2,"39184":2,"39185":1,"39186":2,"39187":2,"39188":1,"39189":2,"39190":1,"39191":1,"39192":1,"39193":1,"39194":2,"39195":2,"39196":2,"39197":2,"39198":2,"39199":2,"39200":1,"39201":2,"39202":2,"39203":2,"39204":1,"39205":2,"39206":1,"39207":1,"39208":1,"39209":2,"39210":2,"39211":2,"39212":2,"39213":2,"39214":1,"39215":1,"39216":2,"39217":1,"39218":2,"39219":1,"39220":1,"39221":1,"39222":1,"39223":1,"39224":2,"39225":1,"39226":1,"39227":2,"39228":2,"39229":2,"39230":1,"39231":2,"39232":2,"39233":2,"39234":1,"39235":2,"39236":1,"39237":1,"39238":2,"39239":2,"39240":1,"39241":1,"39242":2,"39243":1,"39244":1,"39245":2,"39246":2,"39247":1,"39248":2,"39249":1,"39250":2,"39251":1,"39252":2,"39253":2,"39254":1,"39255":2,"39256":2,"39257":1,"39258":2,"39259":2,"39260":1,"39261":1,"39262":2,"39263":2,"39264":1,"39265":2,"39266":1,"39267":1,"39268":2,"39269":2,"39270":1,"39271":2,"39272":2,"39273":2,"39274":2,"39275":2,"39276":2,"39277":2,"39278":1,"39279":2,"39280":1,"39281":1,"39282":2,"39283":1,"39284":1,"39285":2,"39286":2,"39287":2,"39288":1,"39289":2,"39290":2,"39291":2,"39292":2,"39293":1,"39294":2,"39295":1,"39296":1,"39297":1,"39298":1,"39299":2,"39300":1,"39301":2,"39302":1,"39303":1,"39304":2,"39305":1,"39306":1,"39307":2,"39308":1,"39309":1,"39310":1,"39311":1,"39312":2,"39313":1,"39314":2,"39315":1,"39316":2,"39317":1,"39318":2,"39319":1,"39320":2,"39321":2,"39322":1,"39323":1,"39324":1,"39325":2,"39326":1,"39327":1,"39328":2,"39329":2,"39330":2,"39331":1,"39332":2,"39333":2,"39334":1,"39335":1,"39336":1,"39337":1,"39338":2,"39339":1,"39340":2,"39341":2,"39342":2,"39343":1,"39344":2,"39345":1,"39346":2,"39347":1,"39348":2,"39349":1,"39350":2,"39351":1,"39352":2,"39353":1,"39354":1,"39355":2,"39356":2,"39357":1,"39358":1,"39359":2,"39360":2,"39361":1,"39362":2,"39363":2,"39364":1,"39365":1,"39366":1,"39367":2,"39368":1,"39369":2,"39370":1,"39371":1,"39372":1,"39373":2,"39374":1,"39375":2,"39376":1,"39377":1,"39378":2,"39379":1,"39380":2,"39381":1,"39382":1,"39383":2,"39384":2,"39385":2,"39386":2,"39387":1,"39388":2,"39389":1,"39390":2,"39391":2,"39392":2,"39393":1,"39394":2,"39395":2,"39396":2,"39397":2,"39398":2,"39399":2,"39400":2,"39401":1,"39402":1,"39403":1,"39404":2,"39405":2,"39406":2,"39407":2,"39408":1,"39409":2,"39410":1,"39411":2,"39412":1,"39413":1,"39414":1,"39415":1,"39416":1,"39417":2,"39418":1,"39419":1,"39420":2,"39421":1,"39422":1,"39423":2,"39424":2,"39425":2,"39426":2,"39427":2,"39428":1,"39429":2,"39430":1,"39431":2,"39432":1,"39433":2,"39434":1,"39435":1,"39436":2,"39437":1,"39438":1,"39439":1,"39440":2,"39441":2,"39442":1,"39443":1,"39444":1,"39445":1,"39446":1,"39447":2,"39448":2,"39449":2,"39450":1,"39451":1,"39452":1,"39453":2,"39454":1,"39455":1,"39456":2,"39457":1,"39458":2,"39459":1,"39460":1,"39461":1,"39462":2,"39463":2,"39464":2,"39465":2,"39466":2,"39467":1,"39468":2,"39469":2,"39470":1,"39471":2,"39472":2,"39473":2,"39474":1,"39475":1,"39476":2,"39477":1,"39478":2,"39479":2,"39480":1,"39481":1,"39482":1,"39483":1,"39484":2,"39485":1,"39486":1,"39487":2,"39488":2,"39489":2,"39490":2,"39491":1,"39492":1,"39493":2,"39494":2,"39495":1,"39496":1,"39497":2,"39498":2,"39499":2,"39500":2,"39501":1,"39502":1,"39503":1,"39504":2,"39505":2,"39506":2,"39507":1,"39508":2,"39509":1,"39510":1,"39511":1,"39512":2,"39513":2,"39514":2,"39515":2,"39516":2,"39517":1,"39518":2,"39519":1,"39520":1,"39521":1,"39522":2,"39523":2,"39524":1,"39525":2,"39526":1,"39527":2,"39528":1,"39529":2,"39530":1,"39531":1,"39532":2,"39533":2,"39534":2,"39535":1,"39536":1,"39537":2,"39538":1,"39539":2,"39540":2,"39541":1,"39542":1,"39543":1,"39544":1,"39545":1,"39546":1,"39547":1,"39548":1,"39549":2,"39550":1,"39551":2,"39552":2,"39553":1,"39554":2,"39555":2,"39556":2,"39557":1,"39558":1,"39559":2,"39560":1,"39561":1,"39562":2,"39563":2,"39564":2,"39565":1,"39566":2,"39567":2,"39568":1,"39569":2,"39570":1,"39571":1,"39572":1,"39573":1,"39574":1,"39575":2,"39576":2,"39577":2,"39578":2,"39579":1,"39580":2,"39581":2,"39582":1,"39583":1,"39584":1,"39585":1,"39586":2,"39587":1,"39588":1,"39589":1,"39590":1,"39591":1,"39592":1,"39593":2,"39594":2,"39595":2,"39596":2,"39597":1,"39598":1,"39599":1,"39600":2,"39601":2,"39602":2,"39603":1,"39604":2,"39605":1,"39606":1,"39607":2,"39608":1,"39609":2,"39610":1,"39611":1,"39612":2,"39613":2,"39614":2,"39615":2,"39616":2,"39617":2,"39618":2,"39619":2,"39620":1,"39621":1,"39622":2,"39623":2,"39624":2,"39625":2,"39626":1,"39627":2,"39628":2,"39629":2,"39630":2,"39631":1,"39632":1,"39633":1,"39634":2,"39635":1,"39636":1,"39637":2,"39638":2,"39639":1,"39640":2,"39641":1,"39642":1,"39643":2,"39644":2,"39645":2,"39646":1,"39647":1,"39648":1,"39649":2,"39650":2,"39651":2,"39652":1,"39653":2,"39654":1,"39655":1,"39656":1,"39657":1,"39658":1,"39659":2,"39660":2,"39661":2,"39662":2,"39663":1,"39664":2,"39665":2,"39666":1,"39667":1,"39668":2,"39669":2,"39670":1,"39671":2,"39672":2,"39673":2,"39674":1,"39675":1,"39676":1,"39677":1,"39678":1,"39679":2,"39680":2,"39681":1,"39682":1,"39683":1,"39684":1,"39685":2,"39686":2,"39687":2,"39688":1,"39689":2,"39690":1,"39691":1,"39692":2,"39693":2,"39694":1,"39695":1,"39696":1,"39697":1,"39698":2,"39699":2,"39700":1,"39701":1,"39702":1,"39703":2,"39704":2,"39705":2,"39706":1,"39707":2,"39708":2,"39709":2,"39710":1,"39711":2,"39712":2,"39713":1,"39714":1,"39715":2,"39716":2,"39717":2,"39718":2,"39719":1,"39720":2,"39721":2,"39722":1,"39723":2,"39724":1,"39725":1,"39726":1,"39727":1,"39728":2,"39729":1,"39730":1,"39731":2,"39732":1,"39733":1,"39734":2,"39735":1,"39736":2,"39737":2,"39738":2,"39739":1,"39740":1,"39741":2,"39742":2,"39743":2,"39744":1,"39745":2,"39746":1,"39747":2,"39748":1,"39749":1,"39750":2,"39751":1,"39752":1,"39753":2,"39754":2,"39755":2,"39756":1,"39757":1,"39758":2,"39759":1,"39760":1,"39761":2,"39762":2,"39763":2,"39764":2,"39765":1,"39766":1,"39767":2,"39768":2,"39769":2,"39770":1,"39771":2,"39772":1,"39773":2,"39774":2,"39775":2,"39776":1,"39777":1,"39778":1,"39779":1,"39780":1,"39781":2,"39782":2,"39783":1,"39784":2,"39785":1,"39786":1,"39787":1,"39788":2,"39789":1,"39790":2,"39791":1,"39792":1,"39793":2,"39794":2,"39795":1,"39796":2,"39797":2,"39798":2,"39799":1,"39800":1,"39801":2,"39802":2,"39803":1,"39804":2,"39805":1,"39806":1,"39807":2,"39808":2,"39809":1,"39810":1,"39811":2,"39812":2,"39813":2,"39814":2,"39815":1,"39816":1,"39817":1,"39818":2,"39819":1,"39820":2,"39821":1,"39822":2,"39823":2,"39824":2,"39825":2,"39826":1,"39827":2,"39828":1,"39829":1,"39830":1,"39831":1,"39832":2,"39833":2,"39834":1,"39835":2,"39836":1,"39837":2,"39838":2,"39839":2,"39840":2,"39841":2,"39842":1,"39843":1,"39844":2,"39845":1,"39846":1,"39847":1,"39848":2,"39849":1,"39850":1,"39851":1,"39852":2,"39853":1,"39854":1,"39855":2,"39856":2,"39857":2,"39858":2,"39859":2,"39860":2,"39861":1,"39862":1,"39863":2,"39864":2,"39865":1,"39866":2,"39867":1,"39868":2,"39869":1,"39870":1,"39871":2,"39872":1,"39873":1,"39874":2,"39875":1,"39876":2,"39877":2,"39878":1,"39879":1,"39880":1,"39881":1,"39882":1,"39883":2,"39884":2,"39885":1,"39886":2,"39887":2,"39888":1,"39889":2,"39890":2,"39891":2,"39892":2,"39893":1,"39894":2,"39895":1,"39896":1,"39897":1,"39898":1,"39899":1,"39900":2,"39901":1,"39902":2,"39903":2,"39904":1,"39905":2,"39906":2,"39907":2,"39908":1,"39909":1,"39910":2,"39911":1,"39912":1,"39913":2,"39914":2,"39915":2,"39916":2,"39917":1,"39918":2,"39919":2,"39920":1,"39921":2,"39922":1,"39923":1,"39924":1,"39925":1,"39926":2,"39927":1,"39928":2,"39929":2,"39930":1,"39931":1,"39932":2,"39933":2,"39934":1,"39935":1,"39936":1,"39937":1,"39938":2,"39939":1,"39940":1,"39941":2,"39942":1,"39943":2,"39944":1,"39945":1,"39946":2,"39947":1,"39948":2,"39949":1,"39950":1,"39951":1,"39952":2,"39953":2,"39954":1,"39955":2,"39956":1,"39957":2,"39958":2,"39959":2,"39960":2,"39961":1,"39962":1,"39963":1,"39964":2,"39965":2,"39966":2,"39967":2,"39968":1,"39969":2,"39970":1,"39971":1,"39972":1,"39973":2,"39974":1,"39975":1,"39976":1,"39977":1,"39978":2,"39979":1,"39980":2,"39981":2,"39982":1,"39983":2,"39984":1,"39985":2,"39986":2,"39987":1,"39988":2,"39989":2,"39990":2,"39991":1,"39992":1,"39993":2,"39994":1,"39995":2,"39996":2,"39997":1,"39998":1,"39999":2,"40000":1,"40001":1,"40002":2,"40003":2,"40004":1,"40005":2,"40006":2,"40007":2,"40008":2,"40009":2,"40010":1,"40011":1,"40012":1,"40013":2,"40014":2,"40015":1,"40016":2,"40017":2,"40018":1,"40019":2,"40020":2,"40021":2,"40022":2,"40023":1,"40024":2,"40025":1,"40026":2,"40027":2,"40028":2,"40029":2,"40030":2,"40031":2,"40032":1,"40033":1,"40034":1,"40035":1,"40036":2,"40037":1,"40038":2,"40039":1,"40040":1,"40041":2,"40042":2,"40043":2,"40044":2,"40045":2,"40046":2,"40047":2,"40048":2,"40049":2,"40050":1,"40051":2,"40052":1,"40053":2,"40054":2,"40055":1,"40056":1,"40057":2,"40058":1,"40059":1,"40060":2,"40061":2,"40062":2,"40063":2,"40064":1,"40065":2,"40066":1,"40067":1,"40068":2,"40069":2,"40070":1,"40071":1,"40072":2,"40073":1,"40074":1,"40075":2,"40076":1,"40077":2,"40078":2,"40079":2,"40080":2,"40081":1,"40082":1,"40083":1,"40084":2,"40085":2,"40086":1,"40087":1,"40088":1,"40089":1,"40090":2,"40091":1,"40092":2,"40093":1,"40094":2,"40095":2,"40096":2,"40097":1,"40098":2,"40099":2,"40100":1,"40101":2,"40102":2,"40103":1,"40104":1,"40105":2,"40106":2,"40107":1,"40108":2,"40109":1,"40110":2,"40111":2,"40112":2,"40113":2,"40114":2,"40115":2,"40116":1,"40117":2,"40118":2,"40119":2,"40120":1,"40121":2,"40122":2,"40123":1,"40124":2,"40125":2,"40126":2,"40127":1,"40128":1,"40129":1,"40130":1,"40131":2,"40132":1,"40133":1,"40134":2,"40135":1,"40136":1,"40137":2,"40138":2,"40139":2,"40140":2,"40141":1,"40142":2,"40143":2,"40144":2,"40145":1,"40146":2,"40147":1,"40148":2,"40149":2,"40150":2,"40151":1,"40152":1,"40153":2,"40154":1,"40155":1,"40156":2,"40157":2,"40158":1,"40159":1,"40160":1,"40161":1,"40162":2,"40163":1,"40164":1,"40165":1,"40166":2,"40167":2,"40168":2,"40169":2,"40170":2,"40171":1,"40172":2,"40173":1,"40174":1,"40175":2,"40176":1,"40177":2,"40178":2,"40179":1,"40180":1,"40181":1,"40182":1,"40183":2,"40184":1,"40185":2,"40186":1,"40187":2,"40188":2,"40189":1,"40190":1,"40191":2,"40192":1,"40193":1,"40194":1,"40195":2,"40196":2,"40197":2,"40198":1,"40199":2,"40200":2,"40201":1,"40202":2,"40203":1,"40204":1,"40205":2,"40206":1,"40207":1,"40208":2,"40209":2,"40210":1,"40211":1,"40212":2,"40213":2,"40214":1,"40215":2,"40216":2,"40217":1,"40218":1,"40219":2,"40220":1,"40221":1,"40222":2,"40223":2,"40224":1,"40225":2,"40226":2,"40227":2,"40228":1,"40229":1,"40230":2,"40231":2,"40232":2,"40233":1,"40234":2,"40235":2,"40236":2,"40237":2,"40238":1,"40239":2,"40240":2,"40241":1,"40242":1,"40243":2,"40244":2,"40245":2,"40246":1,"40247":1,"40248":1,"40249":2,"40250":1,"40251":1,"40252":2,"40253":1,"40254":2,"40255":1,"40256":1,"40257":2,"40258":2,"40259":2,"40260":2,"40261":2,"40262":1,"40263":2,"40264":2,"40265":1,"40266":2,"40267":1,"40268":2,"40269":1,"40270":1,"40271":1,"40272":2,"40273":1,"40274":1,"40275":2,"40276":1,"40277":2,"40278":1,"40279":2,"40280":1,"40281":2,"40282":1,"40283":1,"40284":1,"40285":2,"40286":2,"40287":1,"40288":1,"40289":2,"40290":1,"40291":1,"40292":2,"40293":1,"40294":1,"40295":2,"40296":1,"40297":2,"40298":2,"40299":2,"40300":1,"40301":1,"40302":1,"40303":2,"40304":2,"40305":2,"40306":1,"40307":1,"40308":1,"40309":1,"40310":2,"40311":2,"40312":2,"40313":1,"40314":1,"40315":2,"40316":2,"40317":1,"40318":1,"40319":2,"40320":1,"40321":2,"40322":2,"40323":2,"40324":1,"40325":2,"40326":1,"40327":1,"40328":1,"40329":1,"40330":1,"40331":1,"40332":1,"40333":2,"40334":1,"40335":1,"40336":2,"40337":1,"40338":2,"40339":1,"40340":1,"40341":2,"40342":2,"40343":2,"40344":1,"40345":2,"40346":1,"40347":1,"40348":1,"40349":1,"40350":2,"40351":2,"40352":2,"40353":1,"40354":1,"40355":2,"40356":1,"40357":2,"40358":2,"40359":2,"40360":1,"40361":2,"40362":1,"40363":2,"40364":1,"40365":1,"40366":1,"40367":1,"40368":2,"40369":2,"40370":2,"40371":1,"40372":2,"40373":2,"40374":1,"40375":1,"40376":1,"40377":2,"40378":2,"40379":1,"40380":2,"40381":1,"40382":2,"40383":2,"40384":1,"40385":1,"40386":2,"40387":2,"40388":1,"40389":1,"40390":2,"40391":1,"40392":1,"40393":2,"40394":1,"40395":2,"40396":1,"40397":2,"40398":1,"40399":2,"40400":1,"40401":1,"40402":1,"40403":1,"40404":1,"40405":2,"40406":2,"40407":1,"40408":2,"40409":1,"40410":1,"40411":2,"40412":2,"40413":1,"40414":2,"40415":2,"40416":1,"40417":2,"40418":1,"40419":2,"40420":2,"40421":2,"40422":2,"40423":1,"40424":1,"40425":2,"40426":1,"40427":2,"40428":1,"40429":2,"40430":1,"40431":2,"40432":1,"40433":1,"40434":2,"40435":2,"40436":2,"40437":1,"40438":1,"40439":1,"40440":1,"40441":1,"40442":2,"40443":1,"40444":2,"40445":1,"40446":2,"40447":1,"40448":1,"40449":1,"40450":1,"40451":1,"40452":1,"40453":1,"40454":1,"40455":1,"40456":2,"40457":2,"40458":1,"40459":1,"40460":2,"40461":2,"40462":1,"40463":1,"40464":1,"40465":2,"40466":2,"40467":1,"40468":2,"40469":2,"40470":1,"40471":1,"40472":1,"40473":2,"40474":1,"40475":1,"40476":1,"40477":1,"40478":1,"40479":2,"40480":1,"40481":1,"40482":2,"40483":2,"40484":2,"40485":1,"40486":2,"40487":1,"40488":2,"40489":1,"40490":1,"40491":2,"40492":2,"40493":1,"40494":1,"40495":1,"40496":2,"40497":2,"40498":2,"40499":2,"40500":1,"40501":1,"40502":1,"40503":1,"40504":1,"40505":2,"40506":2,"40507":2,"40508":1,"40509":2,"40510":1,"40511":1,"40512":1,"40513":1,"40514":1,"40515":1,"40516":1,"40517":2,"40518":2,"40519":1,"40520":2,"40521":1,"40522":1,"40523":2,"40524":2,"40525":1,"40526":1,"40527":1,"40528":2,"40529":2,"40530":2,"40531":1,"40532":1,"40533":1,"40534":2,"40535":2,"40536":1,"40537":1,"40538":2,"40539":1,"40540":2,"40541":1,"40542":1,"40543":1,"40544":2,"40545":2,"40546":2,"40547":1,"40548":1,"40549":1,"40550":1,"40551":2,"40552":2,"40553":1,"40554":1,"40555":1,"40556":1,"40557":2,"40558":1,"40559":2,"40560":1,"40561":1,"40562":1,"40563":1,"40564":1,"40565":1,"40566":2,"40567":1,"40568":2,"40569":2,"40570":2,"40571":1,"40572":1,"40573":2,"40574":1,"40575":1,"40576":1,"40577":1,"40578":1,"40579":2,"40580":2,"40581":1,"40582":2,"40583":2,"40584":2,"40585":2,"40586":2,"40587":2,"40588":1,"40589":1,"40590":2,"40591":2,"40592":2,"40593":1,"40594":2,"40595":1,"40596":2,"40597":1,"40598":1,"40599":1,"40600":1,"40601":1,"40602":2,"40603":1,"40604":1,"40605":2,"40606":1,"40607":1,"40608":1,"40609":1,"40610":2,"40611":1,"40612":1,"40613":1,"40614":2,"40615":1,"40616":2,"40617":1,"40618":1,"40619":2,"40620":2,"40621":1,"40622":1,"40623":1,"40624":2,"40625":2,"40626":2,"40627":2,"40628":2,"40629":2,"40630":1,"40631":1,"40632":2,"40633":1,"40634":1,"40635":1,"40636":1,"40637":1,"40638":2,"40639":2,"40640":2,"40641":2,"40642":2,"40643":2,"40644":1,"40645":1,"40646":1,"40647":2,"40648":1,"40649":1,"40650":2,"40651":2,"40652":1,"40653":1,"40654":1,"40655":1,"40656":2,"40657":1,"40658":2,"40659":1,"40660":1,"40661":1,"40662":1,"40663":2,"40664":1,"40665":1,"40666":1,"40667":1,"40668":1,"40669":1,"40670":2,"40671":1,"40672":2,"40673":1,"40674":1,"40675":2,"40676":1,"40677":2,"40678":2,"40679":2,"40680":1,"40681":1,"40682":1,"40683":2,"40684":1,"40685":2,"40686":1,"40687":1,"40688":1,"40689":1,"40690":1,"40691":1,"40692":1,"40693":1,"40694":2,"40695":1,"40696":1,"40697":2,"40698":2,"40699":1,"40700":1,"40701":1,"40702":2,"40703":2,"40704":1,"40705":2,"40706":1,"40707":2,"40708":1,"40709":1,"40710":2,"40711":1,"40712":1,"40713":1,"40714":2,"40715":1,"40716":1,"40717":1,"40718":1,"40719":1,"40720":1,"40721":2,"40722":1,"40723":2,"40724":1,"40725":2,"40726":2,"40727":2,"40728":2,"40729":1,"40730":2,"40731":1,"40732":1,"40733":2,"40734":1,"40735":2,"40736":2,"40737":1,"40738":1,"40739":2,"40740":1,"40741":1,"40742":2,"40743":2,"40744":2,"40745":1,"40746":1,"40747":2,"40748":1,"40749":1,"40750":1,"40751":1,"40752":1,"40753":2,"40754":1,"40755":1,"40756":2,"40757":2,"40758":1,"40759":1,"40760":2,"40761":1,"40762":1,"40763":1,"40764":2,"40765":1,"40766":1,"40767":2,"40768":2,"40769":2,"40770":1,"40771":2,"40772":1,"40773":1,"40774":1,"40775":2,"40776":1,"40777":2,"40778":1,"40779":1,"40780":2,"40781":1,"40782":1,"40783":1,"40784":1,"40785":1,"40786":2,"40787":2,"40788":2,"40789":1,"40790":1,"40791":2,"40792":2,"40793":1,"40794":2,"40795":2,"40796":2,"40797":1,"40798":1,"40799":2,"40800":1,"40801":1,"40802":2,"40803":1,"40804":2,"40805":1,"40806":1,"40807":1,"40808":1,"40809":2,"40810":2,"40811":2,"40812":2,"40813":2,"40814":2,"40815":2,"40816":2,"40817":1,"40818":1,"40819":1,"40820":1,"40821":2,"40822":2,"40823":2,"40824":2,"40825":1,"40826":1,"40827":1,"40828":1,"40829":1,"40830":2,"40831":1,"40832":1,"40833":1,"40834":2,"40835":2,"40836":1,"40837":1,"40838":1,"40839":1,"40840":1,"40841":2,"40842":1,"40843":1,"40844":1,"40845":1,"40846":1,"40847":1,"40848":1,"40849":2,"40850":1,"40851":2,"40852":2,"40853":1,"40854":1,"40855":2,"40856":1,"40857":1,"40858":1,"40859":2,"40860":1,"40861":1,"40862":1,"40863":1,"40864":2,"40865":1,"40866":1,"40867":1,"40868":2,"40869":1,"40870":1,"40871":1,"40872":1,"40873":2,"40874":2,"40875":1,"40876":1,"40877":1,"40878":2,"40879":2,"40880":1,"40881":2,"40882":2,"40883":1,"40884":1,"40885":2,"40886":2,"40887":2,"40888":1,"40889":1,"40890":1,"40891":1,"40892":2,"40893":2,"40894":1,"40895":1,"40896":1,"40897":2,"40898":2,"40899":1,"40900":2,"40901":2,"40902":2,"40903":1,"40904":2,"40905":2,"40906":2,"40907":1,"40908":1,"40909":1,"40910":1,"40911":1,"40912":2,"40913":2,"40914":2,"40915":2,"40916":2,"40917":1,"40918":1,"40919":1,"40920":1,"40921":1,"40922":1,"40923":1,"40924":2,"40925":2,"40926":2,"40927":2,"40928":2,"40929":2,"40930":2,"40931":2,"40932":2,"40933":2,"40934":2,"40935":2,"40936":1,"40937":1,"40938":2,"40939":2,"40940":1,"40941":1,"40942":2,"40943":1,"40944":2,"40945":1,"40946":2,"40947":2,"40948":1,"40949":1,"40950":2,"40951":1,"40952":2,"40953":2,"40954":1,"40955":2,"40956":1,"40957":2,"40958":2,"40959":2,"40960":2,"40961":1,"40962":1,"40963":2,"40964":1,"40965":2,"40966":1,"40967":2,"40968":2,"40969":1,"40970":2,"40971":1,"40972":2,"40973":2,"40974":2,"40975":1,"40976":2,"40977":1,"40978":1,"40979":2,"40980":1,"40981":1,"40982":2,"40983":2,"40984":1,"40985":1,"40986":1,"40987":1,"40988":2,"40989":2,"40990":1,"40991":2,"40992":1,"40993":2,"40994":1,"40995":1,"40996":1,"40997":2,"40998":1,"40999":1,"41000":2,"41001":1,"41002":2,"41003":1,"41004":1,"41005":1,"41006":1,"41007":1,"41008":1,"41009":2,"41010":2,"41011":2,"41012":2,"41013":1,"41014":1,"41015":2,"41016":1,"41017":2,"41018":1,"41019":2,"41020":2,"41021":2,"41022":1,"41023":1,"41024":2,"41025":2,"41026":1,"41027":2,"41028":2,"41029":1,"41030":1,"41031":2,"41032":1,"41033":1,"41034":1,"41035":2,"41036":1,"41037":2,"41038":1,"41039":1,"41040":1,"41041":1,"41042":1,"41043":2,"41044":1,"41045":2,"41046":2,"41047":2,"41048":2,"41049":1,"41050":1,"41051":1,"41052":1,"41053":1,"41054":1,"41055":2,"41056":2,"41057":2,"41058":2,"41059":2,"41060":1,"41061":1,"41062":1,"41063":1,"41064":1,"41065":1,"41066":2,"41067":2,"41068":2,"41069":1,"41070":2,"41071":1,"41072":2,"41073":1,"41074":2,"41075":2,"41076":1,"41077":2,"41078":1,"41079":1,"41080":1,"41081":2,"41082":2,"41083":1,"41084":1,"41085":2,"41086":1,"41087":2,"41088":1,"41089":2,"41090":2,"41091":1,"41092":1,"41093":1,"41094":2,"41095":1,"41096":2,"41097":2,"41098":2,"41099":2,"41100":2,"41101":2,"41102":1,"41103":2,"41104":1,"41105":1,"41106":1,"41107":1,"41108":2,"41109":2,"41110":1,"41111":2,"41112":2,"41113":2,"41114":1,"41115":1,"41116":2,"41117":2,"41118":1,"41119":2,"41120":2,"41121":2,"41122":1,"41123":1,"41124":2,"41125":2,"41126":2,"41127":2,"41128":1,"41129":1,"41130":1,"41131":2,"41132":1,"41133":2,"41134":2,"41135":2,"41136":2,"41137":2,"41138":2,"41139":2,"41140":1,"41141":1,"41142":1,"41143":2,"41144":2,"41145":2,"41146":1,"41147":1,"41148":1,"41149":2,"41150":1,"41151":1,"41152":1,"41153":1,"41154":2,"41155":2,"41156":2,"41157":2,"41158":1,"41159":2,"41160":1,"41161":2,"41162":2,"41163":2,"41164":1,"41165":1,"41166":2,"41167":1,"41168":2,"41169":2,"41170":2,"41171":2,"41172":1,"41173":1,"41174":2,"41175":1,"41176":1,"41177":1,"41178":2,"41179":2,"41180":2,"41181":2,"41182":2,"41183":2,"41184":1,"41185":2,"41186":1,"41187":1,"41188":2,"41189":2,"41190":2,"41191":2,"41192":2,"41193":1,"41194":1,"41195":2,"41196":1,"41197":1,"41198":1,"41199":2,"41200":1,"41201":2,"41202":1,"41203":1,"41204":1,"41205":2,"41206":2,"41207":2,"41208":2,"41209":2,"41210":1,"41211":2,"41212":2,"41213":2,"41214":2,"41215":2,"41216":2,"41217":1,"41218":2,"41219":2,"41220":2,"41221":2,"41222":2,"41223":2,"41224":1,"41225":2,"41226":2,"41227":2,"41228":2,"41229":1,"41230":2,"41231":2,"41232":1,"41233":1,"41234":1,"41235":2,"41236":2,"41237":1,"41238":2,"41239":1,"41240":2,"41241":2,"41242":2,"41243":2,"41244":1,"41245":2,"41246":2,"41247":2,"41248":1,"41249":1,"41250":2,"41251":1,"41252":1,"41253":2,"41254":2,"41255":1,"41256":1,"41257":2,"41258":2,"41259":2,"41260":1,"41261":1,"41262":1,"41263":2,"41264":1,"41265":1,"41266":2,"41267":2,"41268":1,"41269":1,"41270":1,"41271":1,"41272":2,"41273":1,"41274":1,"41275":1,"41276":1,"41277":2,"41278":1,"41279":2,"41280":2,"41281":2,"41282":2,"41283":2,"41284":2,"41285":1,"41286":1,"41287":2,"41288":1,"41289":2,"41290":2,"41291":2,"41292":1,"41293":1,"41294":1,"41295":2,"41296":2,"41297":2,"41298":1,"41299":1,"41300":2,"41301":2,"41302":1,"41303":2,"41304":1,"41305":2,"41306":1,"41307":1,"41308":1,"41309":1,"41310":2,"41311":2,"41312":2,"41313":2,"41314":1,"41315":2,"41316":2,"41317":2,"41318":1,"41319":1,"41320":1,"41321":2,"41322":1,"41323":2,"41324":1,"41325":1,"41326":1,"41327":1,"41328":2,"41329":1,"41330":1,"41331":2,"41332":2,"41333":1,"41334":1,"41335":2,"41336":2,"41337":2,"41338":2,"41339":2,"41340":2,"41341":2,"41342":1,"41343":2,"41344":2,"41345":2,"41346":2,"41347":2,"41348":1,"41349":1,"41350":1,"41351":1,"41352":1,"41353":1,"41354":1,"41355":2,"41356":2,"41357":1,"41358":2,"41359":1,"41360":2,"41361":1,"41362":2,"41363":2,"41364":2,"41365":1,"41366":1,"41367":1,"41368":2,"41369":1,"41370":2,"41371":2,"41372":2,"41373":2,"41374":2,"41375":2,"41376":1,"41377":2,"41378":2,"41379":1,"41380":1,"41381":1,"41382":2,"41383":2,"41384":1,"41385":1,"41386":2,"41387":1,"41388":1,"41389":1,"41390":1,"41391":2,"41392":2,"41393":2,"41394":1,"41395":2,"41396":1,"41397":1,"41398":2,"41399":2,"41400":2,"41401":2,"41402":2,"41403":2,"41404":2,"41405":2,"41406":1,"41407":2,"41408":2,"41409":2,"41410":1,"41411":1,"41412":1,"41413":2,"41414":2,"41415":1,"41416":2,"41417":1,"41418":2,"41419":2,"41420":2,"41421":2,"41422":1,"41423":1,"41424":1,"41425":2,"41426":1,"41427":2,"41428":1,"41429":1,"41430":1,"41431":1,"41432":1,"41433":2,"41434":2,"41435":1,"41436":1,"41437":1,"41438":2,"41439":1,"41440":1,"41441":2,"41442":2,"41443":2,"41444":2,"41445":2,"41446":1,"41447":1,"41448":2,"41449":1,"41450":1,"41451":1,"41452":2,"41453":2,"41454":2,"41455":1,"41456":1,"41457":1,"41458":2,"41459":1,"41460":1,"41461":2,"41462":2,"41463":2,"41464":1,"41465":2,"41466":2,"41467":1,"41468":1,"41469":1,"41470":1,"41471":2,"41472":1,"41473":1,"41474":1,"41475":1,"41476":2,"41477":2,"41478":2,"41479":2,"41480":1,"41481":2,"41482":2,"41483":1,"41484":2,"41485":1,"41486":1,"41487":2,"41488":1,"41489":2,"41490":2,"41491":1,"41492":1,"41493":2,"41494":2,"41495":1,"41496":1,"41497":1,"41498":2,"41499":1,"41500":2,"41501":1,"41502":1,"41503":2,"41504":2,"41505":1,"41506":2,"41507":2,"41508":1,"41509":1,"41510":1,"41511":1,"41512":1,"41513":1,"41514":2,"41515":1,"41516":2,"41517":1,"41518":2,"41519":1,"41520":1,"41521":2,"41522":1,"41523":2,"41524":2,"41525":2,"41526":1,"41527":2,"41528":2,"41529":1,"41530":2,"41531":1,"41532":1,"41533":2,"41534":2,"41535":1,"41536":1,"41537":1,"41538":2,"41539":1,"41540":2,"41541":1,"41542":1,"41543":1,"41544":2,"41545":1,"41546":1,"41547":2,"41548":1,"41549":1,"41550":2,"41551":1,"41552":1,"41553":2,"41554":1,"41555":1,"41556":1,"41557":2,"41558":2,"41559":2,"41560":1,"41561":1,"41562":2,"41563":2,"41564":2,"41565":1,"41566":2,"41567":2,"41568":2,"41569":1,"41570":2,"41571":2,"41572":1,"41573":1,"41574":1,"41575":1,"41576":1,"41577":2,"41578":2,"41579":1,"41580":1,"41581":2,"41582":1,"41583":1,"41584":2,"41585":1,"41586":2,"41587":2,"41588":1,"41589":1,"41590":1,"41591":1,"41592":1,"41593":2,"41594":2,"41595":1,"41596":2,"41597":1,"41598":2,"41599":1,"41600":2,"41601":1,"41602":2,"41603":2,"41604":1,"41605":2,"41606":2,"41607":2,"41608":1,"41609":1,"41610":1,"41611":2,"41612":2,"41613":2,"41614":1,"41615":1,"41616":2,"41617":1,"41618":2,"41619":2,"41620":1,"41621":1,"41622":1,"41623":1,"41624":2,"41625":2,"41626":2,"41627":1,"41628":2,"41629":2,"41630":1,"41631":2,"41632":2,"41633":2,"41634":1,"41635":2,"41636":2,"41637":1,"41638":1,"41639":1,"41640":1,"41641":2,"41642":2,"41643":2,"41644":2,"41645":1,"41646":2,"41647":2,"41648":1,"41649":1,"41650":2,"41651":2,"41652":2,"41653":1,"41654":1,"41655":1,"41656":1,"41657":1,"41658":2,"41659":2,"41660":1,"41661":1,"41662":1,"41663":2,"41664":2,"41665":2,"41666":2,"41667":2,"41668":2,"41669":1,"41670":1,"41671":1,"41672":2,"41673":2,"41674":2,"41675":2,"41676":1,"41677":1,"41678":1,"41679":1,"41680":1,"41681":1,"41682":2,"41683":1,"41684":1,"41685":2,"41686":2,"41687":2,"41688":2,"41689":1,"41690":2,"41691":1,"41692":2,"41693":2,"41694":1,"41695":1,"41696":1,"41697":2,"41698":2,"41699":2,"41700":2,"41701":1,"41702":2,"41703":2,"41704":1,"41705":1,"41706":1,"41707":1,"41708":2,"41709":2,"41710":1,"41711":2,"41712":2,"41713":2,"41714":2,"41715":1,"41716":2,"41717":2,"41718":1,"41719":1,"41720":1,"41721":1,"41722":1,"41723":2,"41724":1,"41725":2,"41726":1,"41727":2,"41728":1,"41729":1,"41730":1,"41731":2,"41732":2,"41733":2,"41734":2,"41735":1,"41736":1,"41737":2,"41738":1,"41739":2,"41740":1,"41741":2,"41742":1,"41743":1,"41744":1,"41745":1,"41746":1,"41747":1,"41748":2,"41749":2,"41750":1,"41751":1,"41752":2,"41753":1,"41754":2,"41755":1,"41756":1,"41757":1,"41758":1,"41759":2,"41760":2,"41761":2,"41762":1,"41763":1,"41764":2,"41765":1,"41766":1,"41767":1,"41768":2,"41769":2,"41770":1,"41771":1,"41772":2,"41773":1,"41774":2,"41775":2,"41776":1,"41777":2,"41778":2,"41779":2,"41780":1,"41781":2,"41782":1,"41783":2,"41784":1,"41785":1,"41786":1,"41787":2,"41788":1,"41789":2,"41790":2,"41791":2,"41792":2,"41793":1,"41794":1,"41795":2,"41796":2,"41797":2,"41798":2,"41799":2,"41800":1,"41801":2,"41802":1,"41803":1,"41804":1,"41805":2,"41806":1,"41807":2,"41808":1,"41809":2,"41810":1,"41811":2,"41812":2,"41813":1,"41814":2,"41815":2,"41816":2,"41817":2,"41818":1,"41819":1,"41820":1,"41821":1,"41822":2,"41823":2,"41824":1,"41825":1,"41826":2,"41827":1,"41828":2,"41829":1,"41830":2,"41831":1,"41832":1,"41833":1,"41834":2,"41835":2,"41836":2,"41837":1,"41838":1,"41839":2,"41840":2,"41841":2,"41842":1,"41843":1,"41844":1,"41845":2,"41846":1,"41847":2,"41848":2,"41849":2,"41850":2,"41851":2,"41852":1,"41853":2,"41854":2,"41855":1,"41856":1,"41857":1,"41858":2,"41859":1,"41860":1,"41861":1,"41862":2,"41863":2,"41864":2,"41865":2,"41866":2,"41867":2,"41868":2,"41869":1,"41870":2,"41871":2,"41872":2,"41873":2,"41874":2,"41875":2,"41876":1,"41877":2,"41878":2,"41879":2,"41880":2,"41881":2,"41882":2,"41883":1,"41884":1,"41885":1,"41886":2,"41887":1,"41888":2,"41889":2,"41890":2,"41891":1,"41892":2,"41893":1,"41894":2,"41895":2,"41896":2,"41897":1,"41898":1,"41899":1,"41900":1,"41901":1,"41902":1,"41903":1,"41904":2,"41905":1,"41906":1,"41907":2,"41908":1,"41909":1,"41910":1,"41911":1,"41912":2,"41913":1,"41914":1,"41915":2,"41916":1,"41917":2,"41918":2,"41919":2,"41920":1,"41921":1,"41922":2,"41923":2,"41924":1,"41925":2,"41926":1,"41927":2,"41928":1,"41929":2,"41930":1,"41931":1,"41932":2,"41933":2,"41934":2,"41935":2,"41936":1,"41937":1,"41938":1,"41939":2,"41940":2,"41941":1,"41942":1,"41943":2,"41944":2,"41945":1,"41946":2,"41947":2,"41948":2,"41949":2,"41950":2,"41951":2,"41952":1,"41953":1,"41954":2,"41955":2,"41956":1,"41957":1,"41958":1,"41959":2,"41960":2,"41961":2,"41962":2,"41963":1,"41964":1,"41965":2,"41966":2,"41967":2,"41968":1,"41969":2,"41970":1,"41971":1,"41972":2,"41973":1,"41974":2,"41975":1,"41976":2,"41977":1,"41978":2,"41979":2,"41980":2,"41981":1,"41982":1,"41983":1,"41984":2,"41985":1,"41986":1,"41987":2,"41988":1,"41989":2,"41990":2,"41991":2,"41992":2,"41993":2,"41994":1,"41995":1,"41996":2,"41997":1,"41998":1,"41999":1,"42000":2,"42001":1,"42002":1,"42003":1,"42004":2,"42005":2,"42006":1,"42007":2,"42008":1,"42009":1,"42010":2,"42011":1,"42012":1,"42013":2,"42014":1,"42015":2,"42016":1,"42017":1,"42018":1,"42019":1,"42020":1,"42021":1,"42022":2,"42023":1,"42024":2,"42025":2,"42026":1,"42027":2,"42028":1,"42029":2,"42030":1,"42031":1,"42032":2,"42033":1,"42034":1,"42035":1,"42036":1,"42037":2,"42038":2,"42039":1,"42040":1,"42041":2,"42042":1,"42043":1,"42044":1,"42045":1,"42046":2,"42047":2,"42048":1,"42049":1,"42050":2,"42051":2,"42052":1,"42053":1,"42054":2,"42055":1,"42056":2,"42057":2,"42058":1,"42059":1,"42060":1,"42061":2,"42062":1,"42063":1,"42064":1,"42065":1,"42066":2,"42067":2,"42068":2,"42069":2,"42070":2,"42071":2,"42072":2,"42073":2,"42074":2,"42075":2,"42076":2,"42077":1,"42078":2,"42079":1,"42080":2,"42081":2,"42082":1,"42083":2,"42084":1,"42085":1,"42086":2,"42087":2,"42088":2,"42089":1,"42090":1,"42091":2,"42092":2,"42093":2,"42094":2,"42095":2,"42096":1,"42097":1,"42098":2,"42099":1,"42100":2,"42101":1,"42102":2,"42103":1,"42104":1,"42105":2,"42106":1,"42107":1,"42108":2,"42109":2,"42110":2,"42111":1,"42112":1,"42113":1,"42114":1,"42115":1,"42116":2,"42117":1,"42118":2,"42119":2,"42120":1,"42121":1,"42122":1,"42123":1,"42124":2,"42125":2,"42126":2,"42127":1,"42128":2,"42129":2,"42130":1,"42131":1,"42132":2,"42133":2,"42134":1,"42135":2,"42136":2,"42137":1,"42138":1,"42139":2,"42140":1,"42141":1,"42142":2,"42143":1,"42144":2,"42145":2,"42146":1,"42147":1,"42148":1,"42149":1,"42150":2,"42151":2,"42152":1,"42153":2,"42154":1,"42155":2,"42156":2,"42157":2,"42158":1,"42159":1,"42160":1,"42161":2,"42162":2,"42163":1,"42164":2,"42165":2,"42166":2,"42167":1,"42168":1,"42169":2,"42170":2,"42171":2,"42172":2,"42173":1,"42174":1,"42175":2,"42176":1,"42177":1,"42178":1,"42179":2,"42180":2,"42181":1,"42182":1,"42183":2,"42184":2,"42185":1,"42186":1,"42187":2,"42188":1,"42189":1,"42190":2,"42191":2,"42192":2,"42193":2,"42194":1,"42195":2,"42196":2,"42197":2,"42198":2,"42199":1,"42200":1,"42201":1,"42202":2,"42203":2,"42204":1,"42205":2,"42206":1,"42207":2,"42208":1,"42209":2,"42210":2,"42211":2,"42212":2,"42213":1,"42214":2,"42215":2,"42216":1,"42217":1,"42218":1,"42219":2,"42220":1,"42221":1,"42222":1,"42223":1,"42224":1,"42225":1,"42226":2,"42227":2,"42228":1,"42229":1,"42230":1,"42231":1,"42232":1,"42233":2,"42234":1,"42235":2,"42236":1,"42237":1,"42238":2,"42239":1,"42240":1,"42241":1,"42242":2,"42243":2,"42244":2,"42245":1,"42246":1,"42247":2,"42248":1,"42249":2,"42250":1,"42251":2,"42252":1,"42253":2,"42254":2,"42255":2,"42256":1,"42257":2,"42258":1,"42259":2,"42260":2,"42261":2,"42262":1,"42263":1,"42264":2,"42265":2,"42266":1,"42267":2,"42268":1,"42269":1,"42270":2,"42271":2,"42272":1,"42273":2,"42274":2,"42275":1,"42276":1,"42277":2,"42278":1,"42279":2,"42280":1,"42281":2,"42282":2,"42283":1,"42284":1,"42285":1,"42286":1,"42287":2,"42288":2,"42289":2,"42290":1,"42291":2,"42292":1,"42293":1,"42294":1,"42295":2,"42296":1,"42297":2,"42298":1,"42299":1,"42300":1,"42301":1,"42302":1,"42303":1,"42304":1,"42305":1,"42306":2,"42307":1,"42308":1,"42309":2,"42310":2,"42311":1,"42312":1,"42313":2,"42314":2,"42315":2,"42316":1,"42317":2,"42318":2,"42319":1,"42320":1,"42321":1,"42322":2,"42323":1,"42324":2,"42325":1,"42326":2,"42327":1,"42328":2,"42329":1,"42330":1,"42331":1,"42332":1,"42333":2,"42334":1,"42335":2,"42336":1,"42337":1,"42338":1,"42339":2,"42340":1,"42341":1,"42342":1,"42343":1,"42344":2,"42345":1,"42346":2,"42347":1,"42348":2,"42349":2,"42350":1,"42351":1,"42352":2,"42353":2,"42354":1,"42355":1,"42356":1,"42357":2,"42358":2,"42359":1,"42360":2,"42361":1,"42362":2,"42363":1,"42364":2,"42365":1,"42366":1,"42367":1,"42368":1,"42369":1,"42370":1,"42371":2,"42372":2,"42373":2,"42374":1,"42375":2,"42376":2,"42377":2,"42378":2,"42379":1,"42380":2,"42381":2,"42382":1,"42383":2,"42384":2,"42385":1,"42386":2,"42387":2,"42388":2,"42389":1,"42390":1,"42391":2,"42392":2,"42393":1,"42394":2,"42395":2,"42396":1,"42397":1,"42398":1,"42399":1,"42400":2,"42401":2,"42402":2,"42403":2,"42404":1,"42405":2,"42406":1,"42407":2,"42408":1,"42409":1,"42410":1,"42411":2,"42412":2,"42413":2,"42414":2,"42415":1,"42416":2,"42417":1,"42418":1,"42419":1,"42420":2,"42421":1,"42422":1,"42423":1,"42424":2,"42425":2,"42426":1,"42427":2,"42428":2,"42429":2,"42430":2,"42431":2,"42432":2,"42433":2,"42434":2,"42435":2,"42436":2,"42437":2,"42438":2,"42439":1,"42440":2,"42441":2,"42442":2,"42443":1,"42444":1,"42445":2,"42446":1,"42447":1,"42448":1,"42449":2,"42450":2,"42451":2,"42452":1,"42453":1,"42454":1,"42455":2,"42456":1,"42457":1,"42458":2,"42459":2,"42460":1,"42461":2,"42462":2,"42463":2,"42464":1,"42465":2,"42466":1,"42467":2,"42468":2,"42469":2,"42470":2,"42471":1,"42472":1,"42473":2,"42474":1,"42475":1,"42476":1,"42477":1,"42478":1,"42479":2,"42480":2,"42481":1,"42482":1,"42483":1,"42484":1,"42485":1,"42486":2,"42487":1,"42488":2,"42489":1,"42490":2,"42491":1,"42492":2,"42493":2,"42494":1,"42495":1,"42496":1,"42497":1,"42498":1,"42499":2,"42500":2,"42501":1,"42502":1,"42503":1,"42504":2,"42505":1,"42506":1,"42507":2,"42508":2,"42509":1,"42510":1,"42511":2,"42512":1,"42513":2,"42514":2,"42515":2,"42516":1,"42517":2,"42518":2,"42519":2,"42520":2,"42521":2,"42522":2,"42523":1,"42524":1,"42525":2,"42526":1,"42527":1,"42528":2,"42529":1,"42530":1,"42531":2,"42532":1,"42533":2,"42534":1,"42535":2,"42536":1,"42537":2,"42538":1,"42539":1,"42540":2,"42541":1,"42542":2,"42543":1,"42544":2,"42545":2,"42546":1,"42547":1,"42548":1,"42549":1,"42550":2,"42551":1,"42552":1,"42553":2,"42554":1,"42555":1,"42556":2,"42557":2,"42558":1,"42559":1,"42560":1,"42561":1,"42562":1,"42563":1,"42564":1,"42565":2,"42566":1,"42567":2,"42568":2,"42569":1,"42570":2,"42571":1,"42572":2,"42573":1,"42574":1,"42575":2,"42576":2,"42577":2,"42578":2,"42579":1,"42580":2,"42581":2,"42582":1,"42583":2,"42584":1,"42585":2,"42586":1,"42587":1,"42588":2,"42589":1,"42590":2,"42591":2,"42592":1,"42593":1,"42594":2,"42595":2,"42596":2,"42597":2,"42598":2,"42599":1,"42600":2,"42601":1,"42602":1,"42603":1,"42604":2,"42605":2,"42606":2,"42607":2,"42608":1,"42609":1,"42610":1,"42611":2,"42612":2,"42613":1,"42614":2,"42615":2,"42616":1,"42617":1,"42618":1,"42619":1,"42620":2,"42621":2,"42622":1,"42623":1,"42624":2,"42625":2,"42626":2,"42627":1,"42628":2,"42629":2,"42630":2,"42631":2,"42632":2,"42633":1,"42634":1,"42635":2,"42636":1,"42637":1,"42638":1,"42639":2,"42640":2,"42641":1,"42642":2,"42643":2,"42644":2,"42645":1,"42646":1,"42647":1,"42648":2,"42649":1,"42650":1,"42651":1,"42652":2,"42653":2,"42654":1,"42655":2,"42656":2,"42657":1,"42658":1,"42659":2,"42660":2,"42661":1,"42662":2,"42663":1,"42664":2,"42665":1,"42666":2,"42667":2,"42668":2,"42669":2,"42670":1,"42671":1,"42672":2,"42673":2,"42674":2,"42675":2,"42676":1,"42677":2,"42678":1,"42679":1,"42680":1,"42681":1,"42682":1,"42683":2,"42684":2,"42685":2,"42686":2,"42687":2,"42688":2,"42689":1,"42690":2,"42691":1,"42692":1,"42693":1,"42694":1,"42695":2,"42696":2,"42697":2,"42698":1,"42699":2,"42700":2,"42701":1,"42702":1,"42703":2,"42704":1,"42705":2,"42706":1,"42707":1,"42708":2,"42709":1,"42710":1,"42711":2,"42712":2,"42713":1,"42714":2,"42715":2,"42716":2,"42717":1,"42718":1,"42719":1,"42720":2,"42721":2,"42722":1,"42723":1,"42724":2,"42725":1,"42726":2,"42727":1,"42728":2,"42729":1,"42730":2,"42731":2,"42732":1,"42733":2,"42734":1,"42735":1,"42736":2,"42737":1,"42738":1,"42739":2,"42740":1,"42741":2,"42742":1,"42743":2,"42744":1,"42745":2,"42746":1,"42747":1,"42748":1,"42749":1,"42750":1,"42751":1,"42752":1,"42753":2,"42754":1,"42755":2,"42756":1,"42757":2,"42758":1,"42759":2,"42760":2,"42761":2,"42762":1,"42763":1,"42764":1,"42765":1,"42766":1,"42767":1,"42768":1,"42769":1,"42770":1,"42771":1,"42772":2,"42773":1,"42774":2,"42775":1,"42776":2,"42777":1,"42778":1,"42779":2,"42780":2,"42781":2,"42782":1,"42783":1,"42784":2,"42785":2,"42786":1,"42787":2,"42788":1,"42789":2,"42790":1,"42791":2,"42792":1,"42793":2,"42794":1,"42795":1,"42796":1,"42797":2,"42798":2,"42799":1,"42800":1,"42801":2,"42802":2,"42803":1,"42804":1,"42805":1,"42806":2,"42807":1,"42808":2,"42809":1,"42810":2,"42811":2,"42812":2,"42813":2,"42814":1,"42815":1,"42816":2,"42817":2,"42818":1,"42819":2,"42820":2,"42821":1,"42822":2,"42823":2,"42824":1,"42825":1,"42826":1,"42827":2,"42828":2,"42829":2,"42830":1,"42831":1,"42832":2,"42833":2,"42834":2,"42835":2,"42836":2,"42837":2,"42838":1,"42839":2,"42840":1,"42841":1,"42842":1,"42843":1,"42844":1,"42845":1,"42846":2,"42847":2,"42848":1,"42849":1,"42850":1,"42851":1,"42852":2,"42853":2,"42854":2,"42855":1,"42856":1,"42857":2,"42858":2,"42859":1,"42860":1,"42861":1,"42862":2,"42863":2,"42864":1,"42865":2,"42866":2,"42867":2,"42868":2,"42869":1,"42870":1,"42871":1,"42872":2,"42873":2,"42874":2,"42875":1,"42876":2,"42877":2,"42878":2,"42879":2,"42880":1,"42881":2,"42882":1,"42883":2,"42884":1,"42885":2,"42886":1,"42887":2,"42888":1,"42889":2,"42890":2,"42891":1,"42892":1,"42893":2,"42894":1,"42895":1,"42896":2,"42897":2,"42898":1,"42899":1,"42900":1,"42901":1,"42902":1,"42903":1,"42904":2,"42905":1,"42906":1,"42907":1,"42908":2,"42909":2,"42910":2,"42911":2,"42912":2,"42913":2,"42914":1,"42915":1,"42916":1,"42917":1,"42918":2,"42919":1,"42920":1,"42921":2,"42922":1,"42923":2,"42924":1,"42925":1,"42926":1,"42927":2,"42928":2,"42929":2,"42930":1,"42931":1,"42932":1,"42933":1,"42934":2,"42935":2,"42936":1,"42937":2,"42938":1,"42939":2,"42940":2,"42941":1,"42942":2,"42943":2,"42944":2,"42945":1,"42946":1,"42947":2,"42948":2,"42949":2,"42950":2,"42951":2,"42952":1,"42953":1,"42954":1,"42955":2,"42956":2,"42957":1,"42958":1,"42959":1,"42960":2,"42961":2,"42962":2,"42963":1,"42964":1,"42965":1,"42966":2,"42967":1,"42968":2,"42969":1,"42970":2,"42971":2,"42972":1,"42973":2,"42974":2,"42975":1,"42976":2,"42977":1,"42978":1,"42979":1,"42980":2,"42981":1,"42982":1,"42983":1,"42984":2,"42985":2,"42986":1,"42987":2,"42988":2,"42989":2,"42990":1,"42991":1,"42992":1,"42993":2,"42994":2,"42995":2,"42996":1,"42997":1,"42998":1,"42999":2,"43000":2,"43001":1,"43002":1,"43003":1,"43004":1,"43005":2,"43006":1,"43007":1,"43008":1,"43009":1,"43010":1,"43011":1,"43012":2,"43013":1,"43014":2,"43015":2,"43016":2,"43017":1,"43018":2,"43019":2,"43020":1,"43021":2,"43022":1,"43023":2,"43024":2,"43025":1,"43026":1,"43027":1,"43028":1,"43029":1,"43030":1,"43031":1,"43032":1,"43033":2,"43034":1,"43035":2,"43036":2,"43037":1,"43038":1,"43039":2,"43040":1,"43041":1,"43042":2,"43043":1,"43044":1,"43045":2,"43046":1,"43047":1,"43048":1,"43049":2,"43050":1,"43051":1,"43052":1,"43053":1,"43054":2,"43055":2,"43056":1,"43057":1,"43058":1,"43059":2,"43060":2,"43061":1,"43062":2,"43063":1,"43064":1,"43065":1,"43066":1,"43067":2,"43068":1,"43069":2,"43070":2,"43071":2,"43072":2,"43073":1,"43074":2,"43075":1,"43076":1,"43077":1,"43078":2,"43079":1,"43080":2,"43081":1,"43082":1,"43083":1,"43084":1,"43085":1,"43086":2,"43087":2,"43088":2,"43089":2,"43090":2,"43091":1,"43092":2,"43093":1,"43094":2,"43095":2,"43096":1,"43097":2,"43098":2,"43099":1,"43100":1,"43101":1,"43102":2,"43103":1,"43104":1,"43105":2,"43106":1,"43107":2,"43108":1,"43109":1,"43110":1,"43111":1,"43112":1,"43113":1,"43114":1,"43115":1,"43116":1,"43117":2,"43118":1,"43119":2,"43120":1,"43121":1,"43122":1,"43123":1,"43124":2,"43125":1,"43126":1,"43127":2,"43128":1,"43129":2,"43130":2,"43131":1,"43132":1,"43133":2,"43134":2,"43135":2,"43136":1,"43137":2,"43138":2,"43139":2,"43140":2,"43141":1,"43142":2,"43143":1,"43144":1,"43145":1,"43146":2,"43147":1,"43148":2,"43149":2,"43150":2,"43151":2,"43152":1,"43153":2,"43154":1,"43155":1,"43156":2,"43157":2,"43158":1,"43159":1,"43160":2,"43161":1,"43162":2,"43163":1,"43164":2,"43165":2,"43166":2,"43167":2,"43168":2,"43169":2,"43170":1,"43171":1,"43172":2,"43173":1,"43174":1,"43175":1,"43176":1,"43177":2,"43178":1,"43179":1,"43180":1,"43181":2,"43182":1,"43183":2,"43184":2,"43185":2,"43186":1,"43187":1,"43188":2,"43189":2,"43190":2,"43191":2,"43192":1,"43193":2,"43194":2,"43195":1,"43196":1,"43197":2,"43198":1,"43199":1,"43200":2,"43201":2,"43202":1,"43203":2,"43204":2,"43205":2,"43206":1,"43207":2,"43208":1,"43209":2,"43210":1,"43211":1,"43212":1,"43213":2,"43214":2,"43215":1,"43216":1,"43217":2,"43218":1,"43219":2,"43220":1,"43221":2,"43222":2,"43223":2,"43224":2,"43225":1,"43226":2,"43227":1,"43228":1,"43229":2,"43230":1,"43231":1,"43232":1,"43233":1,"43234":2,"43235":2,"43236":2,"43237":2,"43238":2,"43239":1,"43240":2,"43241":1,"43242":1,"43243":1,"43244":1,"43245":2,"43246":1,"43247":1,"43248":1,"43249":2,"43250":1,"43251":1,"43252":2,"43253":1,"43254":1,"43255":1,"43256":2,"43257":2,"43258":2,"43259":1,"43260":2,"43261":1,"43262":2,"43263":1,"43264":1,"43265":2,"43266":2,"43267":2,"43268":2,"43269":2,"43270":1,"43271":1,"43272":2,"43273":1,"43274":1,"43275":2,"43276":2,"43277":2,"43278":2,"43279":1,"43280":2,"43281":1,"43282":2,"43283":1,"43284":2,"43285":1,"43286":2,"43287":2,"43288":1,"43289":1,"43290":2,"43291":2,"43292":1,"43293":2,"43294":1,"43295":2,"43296":1,"43297":2,"43298":1,"43299":1,"43300":2,"43301":1,"43302":2,"43303":2,"43304":2,"43305":1,"43306":2,"43307":2,"43308":1,"43309":1,"43310":2,"43311":2,"43312":2,"43313":1,"43314":1,"43315":1,"43316":1,"43317":1,"43318":1,"43319":2,"43320":2,"43321":1,"43322":1,"43323":2,"43324":2,"43325":1,"43326":1,"43327":1,"43328":2,"43329":2,"43330":2,"43331":1,"43332":1,"43333":2,"43334":1,"43335":2,"43336":2,"43337":1,"43338":2,"43339":1,"43340":2,"43341":2,"43342":1,"43343":2,"43344":2,"43345":2,"43346":1,"43347":1,"43348":1,"43349":1,"43350":1,"43351":1,"43352":2,"43353":1,"43354":1,"43355":2,"43356":1,"43357":1,"43358":1,"43359":2,"43360":2,"43361":2,"43362":1,"43363":1,"43364":2,"43365":1,"43366":1,"43367":1,"43368":2,"43369":1,"43370":1,"43371":2,"43372":1,"43373":1,"43374":1,"43375":1,"43376":2,"43377":2,"43378":1,"43379":2,"43380":1,"43381":1,"43382":1,"43383":2,"43384":2,"43385":1,"43386":2,"43387":1,"43388":1,"43389":2,"43390":2,"43391":2,"43392":2,"43393":2,"43394":1,"43395":2,"43396":1,"43397":1,"43398":1,"43399":1,"43400":2,"43401":1,"43402":1,"43403":1,"43404":2,"43405":1,"43406":1,"43407":2,"43408":1,"43409":2,"43410":1,"43411":2,"43412":1,"43413":2,"43414":2,"43415":2,"43416":2,"43417":2,"43418":2,"43419":2,"43420":2,"43421":2,"43422":2,"43423":1,"43424":2,"43425":2,"43426":1,"43427":1,"43428":1,"43429":1,"43430":1,"43431":2,"43432":1,"43433":1,"43434":2,"43435":2,"43436":1,"43437":2,"43438":2,"43439":1,"43440":1,"43441":1,"43442":2,"43443":1,"43444":2,"43445":1,"43446":2,"43447":1,"43448":1,"43449":2,"43450":1,"43451":1,"43452":2,"43453":2,"43454":2,"43455":1,"43456":1,"43457":1,"43458":2,"43459":1,"43460":2,"43461":2,"43462":1,"43463":2,"43464":2,"43465":1,"43466":1,"43467":2,"43468":2,"43469":1,"43470":1,"43471":2,"43472":2,"43473":2,"43474":2,"43475":1,"43476":1,"43477":1,"43478":2,"43479":2,"43480":2,"43481":2,"43482":2,"43483":1,"43484":1,"43485":1,"43486":2,"43487":1,"43488":1,"43489":1,"43490":1,"43491":2,"43492":1,"43493":2,"43494":1,"43495":2,"43496":1,"43497":2,"43498":2,"43499":1,"43500":2,"43501":2,"43502":1,"43503":1,"43504":1,"43505":2,"43506":1,"43507":1,"43508":2,"43509":2,"43510":2,"43511":2,"43512":1,"43513":1,"43514":2,"43515":2,"43516":2,"43517":1,"43518":2,"43519":2,"43520":1,"43521":2,"43522":2,"43523":1,"43524":2,"43525":2,"43526":2,"43527":2,"43528":2,"43529":2,"43530":1,"43531":2,"43532":2,"43533":2,"43534":1,"43535":1,"43536":2,"43537":2,"43538":2,"43539":2,"43540":1,"43541":1,"43542":2,"43543":1,"43544":1,"43545":1,"43546":1,"43547":2,"43548":2,"43549":1,"43550":2,"43551":2,"43552":1,"43553":2,"43554":1,"43555":1,"43556":2,"43557":1,"43558":2,"43559":2,"43560":2,"43561":1,"43562":1,"43563":2,"43564":1,"43565":1,"43566":2,"43567":2,"43568":1,"43569":1,"43570":2,"43571":2,"43572":1,"43573":1,"43574":2,"43575":1,"43576":1,"43577":2,"43578":2,"43579":1,"43580":1,"43581":1,"43582":1,"43583":2,"43584":1,"43585":2,"43586":1,"43587":1,"43588":2,"43589":2,"43590":1,"43591":2,"43592":2,"43593":1,"43594":1,"43595":2,"43596":2,"43597":1,"43598":2,"43599":1,"43600":2,"43601":1,"43602":2,"43603":1,"43604":2,"43605":2,"43606":1,"43607":1,"43608":1,"43609":1,"43610":1,"43611":2,"43612":1,"43613":1,"43614":2,"43615":2,"43616":2,"43617":2,"43618":1,"43619":2,"43620":1,"43621":1,"43622":2,"43623":1,"43624":1,"43625":2,"43626":1,"43627":2,"43628":1,"43629":1,"43630":2,"43631":1,"43632":1,"43633":2,"43634":1,"43635":2,"43636":2,"43637":1,"43638":2,"43639":2,"43640":1,"43641":1,"43642":1,"43643":2,"43644":1,"43645":1,"43646":2,"43647":1,"43648":2,"43649":1,"43650":2,"43651":2,"43652":2,"43653":2,"43654":1,"43655":2,"43656":2,"43657":2,"43658":1,"43659":1,"43660":1,"43661":2,"43662":1,"43663":2,"43664":2,"43665":2,"43666":2,"43667":2,"43668":1,"43669":2,"43670":2,"43671":2,"43672":1,"43673":1,"43674":2,"43675":1,"43676":2,"43677":2,"43678":2,"43679":1,"43680":2,"43681":1,"43682":2,"43683":1,"43684":1,"43685":1,"43686":2,"43687":2,"43688":1,"43689":1,"43690":1,"43691":1,"43692":2,"43693":2,"43694":2,"43695":1,"43696":2,"43697":1,"43698":1,"43699":2,"43700":1,"43701":1,"43702":1,"43703":1,"43704":1,"43705":1,"43706":2,"43707":1,"43708":2,"43709":1,"43710":1,"43711":1,"43712":2,"43713":2,"43714":1,"43715":2,"43716":1,"43717":1,"43718":2,"43719":1,"43720":1,"43721":2,"43722":1,"43723":1,"43724":1,"43725":2,"43726":2,"43727":2,"43728":1,"43729":2,"43730":1,"43731":1,"43732":1,"43733":1,"43734":2,"43735":1,"43736":2,"43737":1,"43738":1,"43739":1,"43740":1,"43741":1,"43742":2,"43743":2,"43744":2,"43745":2,"43746":2,"43747":2,"43748":1,"43749":2,"43750":1,"43751":1,"43752":2,"43753":2,"43754":2,"43755":1,"43756":1,"43757":1,"43758":2,"43759":1,"43760":2,"43761":1,"43762":1,"43763":2,"43764":2,"43765":2,"43766":1,"43767":1,"43768":2,"43769":1,"43770":1,"43771":1,"43772":1,"43773":1,"43774":2,"43775":2,"43776":2,"43777":2,"43778":1,"43779":1,"43780":2,"43781":1,"43782":1,"43783":2,"43784":2,"43785":1,"43786":2,"43787":2,"43788":1,"43789":2,"43790":1,"43791":2,"43792":1,"43793":2,"43794":2,"43795":2,"43796":2,"43797":2,"43798":2,"43799":1,"43800":2,"43801":2,"43802":1,"43803":1,"43804":1,"43805":1,"43806":1,"43807":1,"43808":1,"43809":1,"43810":2,"43811":1,"43812":1,"43813":1,"43814":1,"43815":1,"43816":2,"43817":1,"43818":2,"43819":2,"43820":2,"43821":2,"43822":2,"43823":2,"43824":2,"43825":1,"43826":2,"43827":1,"43828":2,"43829":2,"43830":1,"43831":2,"43832":2,"43833":1,"43834":2,"43835":1,"43836":2,"43837":1,"43838":2,"43839":1,"43840":2,"43841":1,"43842":2,"43843":1,"43844":1,"43845":1,"43846":2,"43847":2,"43848":1,"43849":2,"43850":1,"43851":1,"43852":1,"43853":1,"43854":1,"43855":1,"43856":2,"43857":2,"43858":2,"43859":1,"43860":1,"43861":1,"43862":1,"43863":1,"43864":2,"43865":1,"43866":2,"43867":1,"43868":2,"43869":2,"43870":1,"43871":1,"43872":1,"43873":1,"43874":1,"43875":1,"43876":1,"43877":1,"43878":1,"43879":2,"43880":2,"43881":2,"43882":1,"43883":2,"43884":2,"43885":1,"43886":1,"43887":2,"43888":2,"43889":2,"43890":1,"43891":2,"43892":2,"43893":2,"43894":2,"43895":1,"43896":1,"43897":1,"43898":2,"43899":2,"43900":2,"43901":2,"43902":2,"43903":1,"43904":2,"43905":2,"43906":1,"43907":2,"43908":1,"43909":2,"43910":1,"43911":1,"43912":1,"43913":1,"43914":2,"43915":1,"43916":1,"43917":1,"43918":1,"43919":1,"43920":2,"43921":1,"43922":1,"43923":1,"43924":1,"43925":2,"43926":2,"43927":1,"43928":1,"43929":1,"43930":1,"43931":2,"43932":2,"43933":1,"43934":2,"43935":2,"43936":2,"43937":2,"43938":2,"43939":1,"43940":1,"43941":2,"43942":2,"43943":2,"43944":1,"43945":2,"43946":1,"43947":2,"43948":2,"43949":1,"43950":1,"43951":2,"43952":2,"43953":1,"43954":2,"43955":2,"43956":1,"43957":1,"43958":1,"43959":1,"43960":2,"43961":2,"43962":2,"43963":2,"43964":2,"43965":2,"43966":2,"43967":1,"43968":1,"43969":1,"43970":1,"43971":1,"43972":2,"43973":2,"43974":1,"43975":2,"43976":1,"43977":1,"43978":2,"43979":1,"43980":2,"43981":1,"43982":1,"43983":1,"43984":2,"43985":2,"43986":2,"43987":1,"43988":1,"43989":2,"43990":1,"43991":2,"43992":1,"43993":1,"43994":2,"43995":1,"43996":2,"43997":2,"43998":2,"43999":1,"44000":2,"44001":1,"44002":1,"44003":1,"44004":2,"44005":2,"44006":1,"44007":2,"44008":1,"44009":1,"44010":2,"44011":1,"44012":2,"44013":2,"44014":1,"44015":2,"44016":2,"44017":2,"44018":2,"44019":1,"44020":2,"44021":1,"44022":2,"44023":2,"44024":1,"44025":2,"44026":2,"44027":1,"44028":1,"44029":2,"44030":1,"44031":2,"44032":1,"44033":2,"44034":1,"44035":1,"44036":1,"44037":1,"44038":2,"44039":1,"44040":2,"44041":1,"44042":1,"44043":1,"44044":2,"44045":2,"44046":1,"44047":2,"44048":1,"44049":1,"44050":1,"44051":2,"44052":1,"44053":1,"44054":2,"44055":2,"44056":1,"44057":2,"44058":1,"44059":1,"44060":2,"44061":2,"44062":2,"44063":2,"44064":2,"44065":2,"44066":1,"44067":1,"44068":2,"44069":2,"44070":1,"44071":2,"44072":1,"44073":1,"44074":1,"44075":2,"44076":2,"44077":1,"44078":1,"44079":2,"44080":1,"44081":1,"44082":1,"44083":2,"44084":1,"44085":2,"44086":1,"44087":2,"44088":2,"44089":2,"44090":1,"44091":2,"44092":1,"44093":2,"44094":2,"44095":1,"44096":1,"44097":1,"44098":2,"44099":1,"44100":1,"44101":1,"44102":2,"44103":2,"44104":1,"44105":2,"44106":2,"44107":2,"44108":1,"44109":2,"44110":1,"44111":2,"44112":2,"44113":2,"44114":2,"44115":1,"44116":1,"44117":1,"44118":1,"44119":1,"44120":1,"44121":2,"44122":2,"44123":2,"44124":2,"44125":1,"44126":2,"44127":2,"44128":1,"44129":1,"44130":2,"44131":1,"44132":2,"44133":2,"44134":1,"44135":1,"44136":2,"44137":2,"44138":2,"44139":2,"44140":1,"44141":2,"44142":1,"44143":1,"44144":1,"44145":2,"44146":2,"44147":1,"44148":2,"44149":1,"44150":1,"44151":1,"44152":2,"44153":1,"44154":1,"44155":1,"44156":1,"44157":1,"44158":2,"44159":1,"44160":1,"44161":1,"44162":2,"44163":2,"44164":1,"44165":1,"44166":1,"44167":2,"44168":2,"44169":1,"44170":1,"44171":2,"44172":1,"44173":2,"44174":2,"44175":1,"44176":2,"44177":1,"44178":2,"44179":1,"44180":2,"44181":2,"44182":1,"44183":2,"44184":1,"44185":1,"44186":1,"44187":2,"44188":2,"44189":1,"44190":1,"44191":1,"44192":2,"44193":1,"44194":2,"44195":1,"44196":2,"44197":1,"44198":2,"44199":2,"44200":1,"44201":1,"44202":2,"44203":2,"44204":2,"44205":2,"44206":1,"44207":1,"44208":1,"44209":1,"44210":1,"44211":1,"44212":1,"44213":1,"44214":1,"44215":2,"44216":2,"44217":1,"44218":1,"44219":2,"44220":1,"44221":1,"44222":1,"44223":1,"44224":2,"44225":1,"44226":1,"44227":2,"44228":2,"44229":1,"44230":2,"44231":2,"44232":1,"44233":1,"44234":2,"44235":2,"44236":1,"44237":2,"44238":1,"44239":2,"44240":2,"44241":2,"44242":2,"44243":1,"44244":1,"44245":2,"44246":2,"44247":1,"44248":2,"44249":2,"44250":1,"44251":1,"44252":2,"44253":1,"44254":1,"44255":1,"44256":1,"44257":2,"44258":2,"44259":2,"44260":2,"44261":1,"44262":2,"44263":1,"44264":2,"44265":1,"44266":1,"44267":1,"44268":2,"44269":2,"44270":1,"44271":1,"44272":1,"44273":2,"44274":2,"44275":2,"44276":1,"44277":1,"44278":2,"44279":2,"44280":1,"44281":2,"44282":1,"44283":1,"44284":1,"44285":1,"44286":1,"44287":2,"44288":1,"44289":2,"44290":2,"44291":2,"44292":2,"44293":1,"44294":2,"44295":1,"44296":2,"44297":1,"44298":2,"44299":1,"44300":1,"44301":1,"44302":2,"44303":2,"44304":1,"44305":1,"44306":2,"44307":1,"44308":1,"44309":1,"44310":1,"44311":2,"44312":1,"44313":2,"44314":2,"44315":2,"44316":1,"44317":2,"44318":2,"44319":1,"44320":1,"44321":2,"44322":1,"44323":1,"44324":1,"44325":2,"44326":2,"44327":1,"44328":1,"44329":2,"44330":2,"44331":1,"44332":2,"44333":1,"44334":1,"44335":1,"44336":2,"44337":2,"44338":1,"44339":2,"44340":2,"44341":2,"44342":2,"44343":2,"44344":2,"44345":2,"44346":1,"44347":2,"44348":1,"44349":2,"44350":1,"44351":2,"44352":2,"44353":1,"44354":1,"44355":2,"44356":2,"44357":1,"44358":1,"44359":1,"44360":2,"44361":1,"44362":1,"44363":1,"44364":1,"44365":2,"44366":2,"44367":2,"44368":2,"44369":2,"44370":1,"44371":1,"44372":1,"44373":1,"44374":2,"44375":2,"44376":1,"44377":1,"44378":2,"44379":2,"44380":1,"44381":2,"44382":2,"44383":2,"44384":1,"44385":1,"44386":2,"44387":1,"44388":1,"44389":1,"44390":2,"44391":2,"44392":1,"44393":1,"44394":1,"44395":1,"44396":1,"44397":1,"44398":1,"44399":2,"44400":2,"44401":1,"44402":1,"44403":1,"44404":2,"44405":2,"44406":2,"44407":2,"44408":2,"44409":1,"44410":1,"44411":2,"44412":2,"44413":1,"44414":2,"44415":1,"44416":2,"44417":1,"44418":1,"44419":1,"44420":1,"44421":1,"44422":1,"44423":1,"44424":1,"44425":1,"44426":1,"44427":1,"44428":1,"44429":1,"44430":2,"44431":2,"44432":2,"44433":2,"44434":2,"44435":2,"44436":2,"44437":2,"44438":2,"44439":1,"44440":1,"44441":1,"44442":2,"44443":1,"44444":2,"44445":1,"44446":1,"44447":1,"44448":2,"44449":2,"44450":1,"44451":1,"44452":1,"44453":1,"44454":1,"44455":1,"44456":1,"44457":2,"44458":1,"44459":1,"44460":2,"44461":2,"44462":1,"44463":2,"44464":1,"44465":2,"44466":2,"44467":2,"44468":1,"44469":1,"44470":2,"44471":1,"44472":1,"44473":2,"44474":1,"44475":1,"44476":1,"44477":2,"44478":1,"44479":2,"44480":2,"44481":1,"44482":1,"44483":1,"44484":1,"44485":1,"44486":2,"44487":2,"44488":1,"44489":2,"44490":2,"44491":2,"44492":1,"44493":1,"44494":2,"44495":1,"44496":2,"44497":2,"44498":1,"44499":1,"44500":2,"44501":1,"44502":1,"44503":2,"44504":1,"44505":1,"44506":2,"44507":2,"44508":2,"44509":1,"44510":2,"44511":2,"44512":1,"44513":1,"44514":1,"44515":2,"44516":2,"44517":2,"44518":1,"44519":2,"44520":1,"44521":1,"44522":1,"44523":2,"44524":2,"44525":1,"44526":2,"44527":1,"44528":1,"44529":2,"44530":2,"44531":2,"44532":2,"44533":2,"44534":2,"44535":2,"44536":1,"44537":1,"44538":1,"44539":1,"44540":1,"44541":1,"44542":1,"44543":2,"44544":2,"44545":1,"44546":2,"44547":2,"44548":1,"44549":1,"44550":2,"44551":1,"44552":1,"44553":2,"44554":2,"44555":2,"44556":1,"44557":1,"44558":1,"44559":1,"44560":1,"44561":2,"44562":1,"44563":1,"44564":2,"44565":1,"44566":1,"44567":1,"44568":1,"44569":2,"44570":1,"44571":2,"44572":2,"44573":1,"44574":1,"44575":1,"44576":2,"44577":1,"44578":2,"44579":1,"44580":2,"44581":1,"44582":2,"44583":1,"44584":1,"44585":1,"44586":1,"44587":1,"44588":2,"44589":1,"44590":2,"44591":1,"44592":2,"44593":2,"44594":2,"44595":1,"44596":1,"44597":2,"44598":1,"44599":2,"44600":1,"44601":1,"44602":2,"44603":1,"44604":1,"44605":1,"44606":2,"44607":2,"44608":2,"44609":2,"44610":1,"44611":2,"44612":2,"44613":2,"44614":1,"44615":2,"44616":1,"44617":2,"44618":1,"44619":1,"44620":1,"44621":2,"44622":2,"44623":2,"44624":1,"44625":2,"44626":2,"44627":1,"44628":1,"44629":1,"44630":2,"44631":1,"44632":1,"44633":2,"44634":1,"44635":1,"44636":2,"44637":1,"44638":2,"44639":1,"44640":2,"44641":1,"44642":2,"44643":1,"44644":2,"44645":2,"44646":1,"44647":1,"44648":1,"44649":2,"44650":2,"44651":2,"44652":1,"44653":2,"44654":1,"44655":1,"44656":2,"44657":2,"44658":1,"44659":2,"44660":2,"44661":2,"44662":2,"44663":1,"44664":2,"44665":1,"44666":2,"44667":1,"44668":2,"44669":1,"44670":2,"44671":1,"44672":2,"44673":2,"44674":2,"44675":2,"44676":1,"44677":1,"44678":2,"44679":1,"44680":2,"44681":1,"44682":1,"44683":2,"44684":2,"44685":2,"44686":1,"44687":1,"44688":2,"44689":1,"44690":1,"44691":1,"44692":2,"44693":1,"44694":2,"44695":1,"44696":1,"44697":1,"44698":2,"44699":1,"44700":2,"44701":1,"44702":1,"44703":2,"44704":2,"44705":2,"44706":2,"44707":2,"44708":1,"44709":1,"44710":2,"44711":1,"44712":2,"44713":2,"44714":2,"44715":1,"44716":2,"44717":1,"44718":1,"44719":2,"44720":1,"44721":1,"44722":2,"44723":1,"44724":2,"44725":2,"44726":1,"44727":2,"44728":2,"44729":2,"44730":1,"44731":2,"44732":2,"44733":2,"44734":1,"44735":2,"44736":2,"44737":2,"44738":1,"44739":2,"44740":1,"44741":2,"44742":2,"44743":2,"44744":2,"44745":1,"44746":1,"44747":1,"44748":2,"44749":1,"44750":2,"44751":2,"44752":1,"44753":1,"44754":2,"44755":1,"44756":2,"44757":1,"44758":2,"44759":1,"44760":1,"44761":2,"44762":2,"44763":2,"44764":2,"44765":1,"44766":2,"44767":1,"44768":2,"44769":2,"44770":2,"44771":1,"44772":2,"44773":1,"44774":2,"44775":2,"44776":2,"44777":2,"44778":1,"44779":2,"44780":1,"44781":1,"44782":1,"44783":1,"44784":2,"44785":2,"44786":2,"44787":1,"44788":1,"44789":2,"44790":2,"44791":1,"44792":1,"44793":2,"44794":2,"44795":1,"44796":1,"44797":1,"44798":1,"44799":1,"44800":1,"44801":1,"44802":1,"44803":2,"44804":2,"44805":1,"44806":2,"44807":2,"44808":1,"44809":2,"44810":1,"44811":1,"44812":1,"44813":1,"44814":2,"44815":1,"44816":1,"44817":2,"44818":1,"44819":2,"44820":2,"44821":2,"44822":2,"44823":2,"44824":1,"44825":2,"44826":1,"44827":2,"44828":1,"44829":1,"44830":2,"44831":2,"44832":1,"44833":2,"44834":2,"44835":2,"44836":1,"44837":1,"44838":1,"44839":2,"44840":1,"44841":1,"44842":2,"44843":2,"44844":1,"44845":1,"44846":1,"44847":2,"44848":1,"44849":2,"44850":2,"44851":2,"44852":1,"44853":2,"44854":1,"44855":2,"44856":1,"44857":2,"44858":2,"44859":1,"44860":1,"44861":2,"44862":1,"44863":1,"44864":2,"44865":2,"44866":1,"44867":1,"44868":1,"44869":1,"44870":1,"44871":1,"44872":2,"44873":1,"44874":2,"44875":2,"44876":1,"44877":1,"44878":1,"44879":2,"44880":1,"44881":1,"44882":1,"44883":1,"44884":2,"44885":1,"44886":2,"44887":2,"44888":2,"44889":2,"44890":1,"44891":2,"44892":1,"44893":2,"44894":1,"44895":2,"44896":1,"44897":2,"44898":2,"44899":1,"44900":2,"44901":2,"44902":1,"44903":2,"44904":1,"44905":1,"44906":2,"44907":1,"44908":1,"44909":2,"44910":1,"44911":2,"44912":1,"44913":2,"44914":2,"44915":1,"44916":2,"44917":2,"44918":1,"44919":2,"44920":1,"44921":1,"44922":1,"44923":2,"44924":2,"44925":1,"44926":2,"44927":1,"44928":1,"44929":2,"44930":1,"44931":2,"44932":2,"44933":1,"44934":2,"44935":2,"44936":2,"44937":1,"44938":2,"44939":2,"44940":2,"44941":1,"44942":1,"44943":2,"44944":2,"44945":1,"44946":2,"44947":1,"44948":2,"44949":2,"44950":2,"44951":1,"44952":1,"44953":2,"44954":2,"44955":1,"44956":2,"44957":1,"44958":2,"44959":1,"44960":2,"44961":1,"44962":1,"44963":1,"44964":1,"44965":2,"44966":2,"44967":1,"44968":2,"44969":2,"44970":2,"44971":2,"44972":1,"44973":1,"44974":1,"44975":1,"44976":2,"44977":1,"44978":2,"44979":2,"44980":1,"44981":1,"44982":1,"44983":1,"44984":2,"44985":2,"44986":2,"44987":2,"44988":1,"44989":2,"44990":1,"44991":1,"44992":2,"44993":2,"44994":2,"44995":2,"44996":2,"44997":1,"44998":1,"44999":2,"45000":2,"45001":2,"45002":2,"45003":1,"45004":2,"45005":1,"45006":2,"45007":1,"45008":1,"45009":2,"45010":1,"45011":1,"45012":1,"45013":2,"45014":2,"45015":2,"45016":2,"45017":2,"45018":2,"45019":2,"45020":1,"45021":2,"45022":1,"45023":2,"45024":1,"45025":1,"45026":1,"45027":1,"45028":1,"45029":2,"45030":2,"45031":1,"45032":2,"45033":2,"45034":2,"45035":2,"45036":1,"45037":1,"45038":1,"45039":2,"45040":1,"45041":1,"45042":2,"45043":2,"45044":2,"45045":1,"45046":2,"45047":2,"45048":1,"45049":2,"45050":2,"45051":2,"45052":1,"45053":1,"45054":2,"45055":2,"45056":2,"45057":1,"45058":2,"45059":1,"45060":2,"45061":1,"45062":2,"45063":2,"45064":2,"45065":2,"45066":2,"45067":2,"45068":1,"45069":2,"45070":1,"45071":1,"45072":2,"45073":1,"45074":1,"45075":2,"45076":1,"45077":2,"45078":1,"45079":2,"45080":1,"45081":1,"45082":1,"45083":1,"45084":1,"45085":2,"45086":1,"45087":1,"45088":2,"45089":1,"45090":1,"45091":1,"45092":2,"45093":1,"45094":2,"45095":1,"45096":2,"45097":1,"45098":2,"45099":1,"45100":1,"45101":1,"45102":1,"45103":1,"45104":2,"45105":1,"45106":1,"45107":2,"45108":2,"45109":2,"45110":2,"45111":2,"45112":2,"45113":1,"45114":2,"45115":1,"45116":2,"45117":1,"45118":2,"45119":2,"45120":2,"45121":1,"45122":1,"45123":1,"45124":2,"45125":1,"45126":1,"45127":2,"45128":2,"45129":2,"45130":2,"45131":1,"45132":1,"45133":1,"45134":1,"45135":2,"45136":1,"45137":1,"45138":1,"45139":1,"45140":1,"45141":1,"45142":1,"45143":1,"45144":2,"45145":1,"45146":1,"45147":2,"45148":1,"45149":2,"45150":1,"45151":2,"45152":1,"45153":1,"45154":1,"45155":1,"45156":1,"45157":1,"45158":1,"45159":2,"45160":1,"45161":1,"45162":2,"45163":2,"45164":2,"45165":2,"45166":2,"45167":1,"45168":2,"45169":2,"45170":2,"45171":2,"45172":2,"45173":2,"45174":1,"45175":1,"45176":1,"45177":2,"45178":2,"45179":2,"45180":1,"45181":1,"45182":1,"45183":2,"45184":1,"45185":1,"45186":2,"45187":1,"45188":1,"45189":2,"45190":1,"45191":2,"45192":2,"45193":2,"45194":2,"45195":2,"45196":2,"45197":1,"45198":2,"45199":1,"45200":2,"45201":2,"45202":1,"45203":1,"45204":1,"45205":2,"45206":1,"45207":2,"45208":2,"45209":2,"45210":2,"45211":2,"45212":1,"45213":2,"45214":1,"45215":1,"45216":1,"45217":1,"45218":2,"45219":2,"45220":1,"45221":2,"45222":2,"45223":1,"45224":2,"45225":1,"45226":1,"45227":1,"45228":2,"45229":1,"45230":2,"45231":2,"45232":1,"45233":2,"45234":2,"45235":1,"45236":1,"45237":1,"45238":1,"45239":2,"45240":2,"45241":1,"45242":2,"45243":1,"45244":2,"45245":1,"45246":2,"45247":1,"45248":1,"45249":1,"45250":1,"45251":1,"45252":1,"45253":2,"45254":2,"45255":2,"45256":1,"45257":2,"45258":2,"45259":1,"45260":2,"45261":1,"45262":1,"45263":1,"45264":2,"45265":1,"45266":2,"45267":2,"45268":1,"45269":2,"45270":1,"45271":1,"45272":2,"45273":1,"45274":1,"45275":2,"45276":1,"45277":1,"45278":2,"45279":1,"45280":2,"45281":2,"45282":2,"45283":2,"45284":2,"45285":1,"45286":1,"45287":1,"45288":1,"45289":2,"45290":1,"45291":1,"45292":1,"45293":2,"45294":2,"45295":1,"45296":2,"45297":1,"45298":2,"45299":1,"45300":1,"45301":1,"45302":1,"45303":1,"45304":2,"45305":1,"45306":2,"45307":1,"45308":1,"45309":2,"45310":1,"45311":1,"45312":2,"45313":2,"45314":2,"45315":2,"45316":1,"45317":1,"45318":1,"45319":2,"45320":2,"45321":2,"45322":1,"45323":1,"45324":2,"45325":2,"45326":1,"45327":1,"45328":2,"45329":2,"45330":1,"45331":1,"45332":2,"45333":2,"45334":2,"45335":1,"45336":1,"45337":1,"45338":1,"45339":2,"45340":2,"45341":1,"45342":2,"45343":1,"45344":1,"45345":1,"45346":2,"45347":2,"45348":2,"45349":2,"45350":2,"45351":1,"45352":2,"45353":1,"45354":1,"45355":1,"45356":1,"45357":1,"45358":1,"45359":1,"45360":2,"45361":1,"45362":2,"45363":1,"45364":1,"45365":2,"45366":2,"45367":2,"45368":1,"45369":1,"45370":2,"45371":1,"45372":1,"45373":2,"45374":2,"45375":2,"45376":2,"45377":1,"45378":1,"45379":1,"45380":1,"45381":2,"45382":1,"45383":1,"45384":1,"45385":1,"45386":2,"45387":1,"45388":2,"45389":2,"45390":1,"45391":1,"45392":2,"45393":2,"45394":2,"45395":1,"45396":2,"45397":2,"45398":1,"45399":1,"45400":2,"45401":1,"45402":1,"45403":1,"45404":1,"45405":2,"45406":2,"45407":1,"45408":1,"45409":1,"45410":1,"45411":2,"45412":2,"45413":1,"45414":1,"45415":2,"45416":2,"45417":2,"45418":2,"45419":2,"45420":1,"45421":1,"45422":1,"45423":1,"45424":1,"45425":1,"45426":2,"45427":1,"45428":2,"45429":1,"45430":2,"45431":1,"45432":2,"45433":2,"45434":1,"45435":2,"45436":1,"45437":1,"45438":2,"45439":2,"45440":2,"45441":1,"45442":2,"45443":1,"45444":2,"45445":2,"45446":1,"45447":1,"45448":2,"45449":2,"45450":2,"45451":2,"45452":2,"45453":1,"45454":2,"45455":1,"45456":2,"45457":1,"45458":1,"45459":2,"45460":2,"45461":1,"45462":1,"45463":1,"45464":2,"45465":1,"45466":2,"45467":1,"45468":2,"45469":2,"45470":1,"45471":2,"45472":1,"45473":2,"45474":2,"45475":2,"45476":1,"45477":2,"45478":1,"45479":1,"45480":1,"45481":1,"45482":2,"45483":1,"45484":2,"45485":2,"45486":2,"45487":2,"45488":1,"45489":1,"45490":1,"45491":2,"45492":2,"45493":1,"45494":1,"45495":1,"45496":2,"45497":1,"45498":2,"45499":1,"45500":1,"45501":2,"45502":2,"45503":2,"45504":2,"45505":1,"45506":1,"45507":1,"45508":1,"45509":2,"45510":1,"45511":1,"45512":1,"45513":1,"45514":2,"45515":1,"45516":2,"45517":1,"45518":1,"45519":2,"45520":1,"45521":2,"45522":1,"45523":1,"45524":2,"45525":2,"45526":1,"45527":2,"45528":2,"45529":2,"45530":1,"45531":1,"45532":2,"45533":2,"45534":2,"45535":1,"45536":1,"45537":1,"45538":1,"45539":1,"45540":1,"45541":2,"45542":2,"45543":2,"45544":1,"45545":2,"45546":1,"45547":1,"45548":2,"45549":2,"45550":1,"45551":2,"45552":2,"45553":2,"45554":1,"45555":2,"45556":1,"45557":1,"45558":2,"45559":1,"45560":2,"45561":1,"45562":2,"45563":1,"45564":2,"45565":1,"45566":2,"45567":2,"45568":1,"45569":2,"45570":2,"45571":2,"45572":1,"45573":1,"45574":1,"45575":1,"45576":1,"45577":2,"45578":1,"45579":2,"45580":1,"45581":2,"45582":2,"45583":1,"45584":2,"45585":1,"45586":1,"45587":1,"45588":1,"45589":1,"45590":1,"45591":2,"45592":1,"45593":2,"45594":2,"45595":1,"45596":1,"45597":1,"45598":1,"45599":1,"45600":1,"45601":1,"45602":1,"45603":2,"45604":2,"45605":1,"45606":2,"45607":2,"45608":1,"45609":1,"45610":2,"45611":2,"45612":1,"45613":1,"45614":2,"45615":1,"45616":2,"45617":2,"45618":1,"45619":2,"45620":2,"45621":1,"45622":2,"45623":2,"45624":2,"45625":2,"45626":2,"45627":2,"45628":1,"45629":2,"45630":1,"45631":2,"45632":2,"45633":2,"45634":1,"45635":1,"45636":2,"45637":2,"45638":2,"45639":2,"45640":1,"45641":1,"45642":1,"45643":1,"45644":1,"45645":2,"45646":1,"45647":1,"45648":1,"45649":2,"45650":1,"45651":1,"45652":2,"45653":1,"45654":1,"45655":1,"45656":1,"45657":2,"45658":1,"45659":2,"45660":2,"45661":1,"45662":2,"45663":1,"45664":2,"45665":1,"45666":1,"45667":2,"45668":1,"45669":1,"45670":1,"45671":2,"45672":1,"45673":2,"45674":1,"45675":1,"45676":1,"45677":1,"45678":2,"45679":1,"45680":2,"45681":2,"45682":2,"45683":1,"45684":2,"45685":2,"45686":1,"45687":1,"45688":2,"45689":2,"45690":2,"45691":2,"45692":1,"45693":2,"45694":1,"45695":1,"45696":1,"45697":2,"45698":1,"45699":2,"45700":2,"45701":1,"45702":1,"45703":1,"45704":2,"45705":1,"45706":1,"45707":2,"45708":1,"45709":2,"45710":2,"45711":2,"45712":1,"45713":1,"45714":1,"45715":1,"45716":1,"45717":2,"45718":2,"45719":2,"45720":1,"45721":1,"45722":1,"45723":1,"45724":2,"45725":1,"45726":1,"45727":1,"45728":1,"45729":1,"45730":2,"45731":2,"45732":2,"45733":1,"45734":1,"45735":2,"45736":2,"45737":2,"45738":2,"45739":2,"45740":1,"45741":2,"45742":1,"45743":2,"45744":1,"45745":2,"45746":2,"45747":2,"45748":2,"45749":2,"45750":1,"45751":2,"45752":1,"45753":1,"45754":1,"45755":2,"45756":1,"45757":2,"45758":1,"45759":1,"45760":2,"45761":1,"45762":1,"45763":1,"45764":2,"45765":1,"45766":1,"45767":2,"45768":2,"45769":1,"45770":2,"45771":2,"45772":1,"45773":1,"45774":2,"45775":2,"45776":2,"45777":1,"45778":2,"45779":1,"45780":2,"45781":2,"45782":1,"45783":2,"45784":1,"45785":1,"45786":2,"45787":2,"45788":2,"45789":1,"45790":1,"45791":1,"45792":2,"45793":2,"45794":2,"45795":2,"45796":1,"45797":2,"45798":1,"45799":2,"45800":1,"45801":1,"45802":1,"45803":2,"45804":1,"45805":1,"45806":1,"45807":1,"45808":1,"45809":2,"45810":2,"45811":1,"45812":2,"45813":1,"45814":1,"45815":1,"45816":2,"45817":2,"45818":2,"45819":2,"45820":1,"45821":1,"45822":1,"45823":1,"45824":2,"45825":1,"45826":1,"45827":2,"45828":1,"45829":1,"45830":2,"45831":2,"45832":1,"45833":2,"45834":2,"45835":1,"45836":2,"45837":1,"45838":2,"45839":2,"45840":1,"45841":2,"45842":2,"45843":1,"45844":1,"45845":2,"45846":2,"45847":1,"45848":1,"45849":1,"45850":2,"45851":1,"45852":2,"45853":1,"45854":1,"45855":2,"45856":1,"45857":1,"45858":2,"45859":1,"45860":2,"45861":2,"45862":1,"45863":1,"45864":2,"45865":1,"45866":2,"45867":2,"45868":1,"45869":1,"45870":1,"45871":1,"45872":1,"45873":1,"45874":2,"45875":2,"45876":2,"45877":1,"45878":1,"45879":1,"45880":2,"45881":1,"45882":2,"45883":1,"45884":1,"45885":1,"45886":2,"45887":1,"45888":1,"45889":1,"45890":2,"45891":2,"45892":1,"45893":1,"45894":1,"45895":2,"45896":1,"45897":1,"45898":2,"45899":2,"45900":1,"45901":2,"45902":2,"45903":2,"45904":2,"45905":2,"45906":1,"45907":1,"45908":2,"45909":1,"45910":2,"45911":2,"45912":1,"45913":1,"45914":1,"45915":2,"45916":2,"45917":2,"45918":1,"45919":1,"45920":1,"45921":2,"45922":2,"45923":1,"45924":2,"45925":1,"45926":2,"45927":2,"45928":1,"45929":2,"45930":2,"45931":2,"45932":2,"45933":2,"45934":2,"45935":1,"45936":1,"45937":2,"45938":1,"45939":2,"45940":1,"45941":1,"45942":1,"45943":2,"45944":2,"45945":1,"45946":2,"45947":2,"45948":2,"45949":1,"45950":1,"45951":1,"45952":2,"45953":1,"45954":2,"45955":2,"45956":2,"45957":1,"45958":1,"45959":1,"45960":2,"45961":2,"45962":1,"45963":1,"45964":2,"45965":2,"45966":1,"45967":1,"45968":1,"45969":2,"45970":2,"45971":2,"45972":1,"45973":2,"45974":2,"45975":2,"45976":2,"45977":2,"45978":1,"45979":1,"45980":2,"45981":2,"45982":2,"45983":1,"45984":2,"45985":1,"45986":2,"45987":2,"45988":1,"45989":1,"45990":2,"45991":1,"45992":1,"45993":2,"45994":1,"45995":1,"45996":2,"45997":1,"45998":1,"45999":1,"46000":1,"46001":2,"46002":1,"46003":2,"46004":2,"46005":1,"46006":2,"46007":1,"46008":1,"46009":2,"46010":1,"46011":1,"46012":2,"46013":1,"46014":1,"46015":1,"46016":1,"46017":1,"46018":1,"46019":1,"46020":1,"46021":1,"46022":1,"46023":1,"46024":2,"46025":1,"46026":1,"46027":1,"46028":1,"46029":1,"46030":1,"46031":1,"46032":1,"46033":1,"46034":1,"46035":2,"46036":1,"46037":2,"46038":1,"46039":1,"46040":1,"46041":1,"46042":1,"46043":2,"46044":2,"46045":2,"46046":2,"46047":1,"46048":1,"46049":2,"46050":1,"46051":2,"46052":2,"46053":1,"46054":1,"46055":1,"46056":1,"46057":1,"46058":1,"46059":1,"46060":1,"46061":2,"46062":1,"46063":2,"46064":2,"46065":1,"46066":1,"46067":1,"46068":1,"46069":2,"46070":2,"46071":1,"46072":2,"46073":2,"46074":1,"46075":2,"46076":1,"46077":1,"46078":1,"46079":1,"46080":2,"46081":2,"46082":1,"46083":2,"46084":2,"46085":2,"46086":2,"46087":1,"46088":2,"46089":2,"46090":1,"46091":1,"46092":1,"46093":2,"46094":1,"46095":1,"46096":2,"46097":1,"46098":2,"46099":1,"46100":2,"46101":2,"46102":2,"46103":2,"46104":1,"46105":1,"46106":1,"46107":1,"46108":2,"46109":2,"46110":2,"46111":1,"46112":1,"46113":2,"46114":1,"46115":1,"46116":2,"46117":1,"46118":1,"46119":2,"46120":1,"46121":1,"46122":2,"46123":2,"46124":2,"46125":2,"46126":1,"46127":1,"46128":2,"46129":2,"46130":1,"46131":2,"46132":1,"46133":2,"46134":2,"46135":2,"46136":1,"46137":1,"46138":2,"46139":2,"46140":2,"46141":1,"46142":1,"46143":1,"46144":2,"46145":1,"46146":2,"46147":1,"46148":2,"46149":2,"46150":2,"46151":2,"46152":1,"46153":2,"46154":2,"46155":1,"46156":1,"46157":1,"46158":1,"46159":1,"46160":1,"46161":1,"46162":1,"46163":1,"46164":1,"46165":2,"46166":1,"46167":2,"46168":2,"46169":1,"46170":2,"46171":1,"46172":2,"46173":2,"46174":1,"46175":1,"46176":2,"46177":1,"46178":1,"46179":1,"46180":1,"46181":1,"46182":2,"46183":2,"46184":2,"46185":1,"46186":2,"46187":1,"46188":1,"46189":2,"46190":1,"46191":1,"46192":1,"46193":2,"46194":1,"46195":2,"46196":1,"46197":1,"46198":2,"46199":2,"46200":1,"46201":2,"46202":1,"46203":2,"46204":1,"46205":1,"46206":2,"46207":2,"46208":2,"46209":2,"46210":1,"46211":1,"46212":1,"46213":2,"46214":2,"46215":1,"46216":2,"46217":1,"46218":2,"46219":2,"46220":2,"46221":2,"46222":2,"46223":1,"46224":1,"46225":2,"46226":1,"46227":1,"46228":2,"46229":1,"46230":1,"46231":1,"46232":1,"46233":2,"46234":2,"46235":1,"46236":2,"46237":1,"46238":1,"46239":2,"46240":2,"46241":1,"46242":1,"46243":2,"46244":2,"46245":2,"46246":1,"46247":1,"46248":2,"46249":1,"46250":2,"46251":1,"46252":2,"46253":2,"46254":2,"46255":2,"46256":2,"46257":2,"46258":2,"46259":1,"46260":1,"46261":1,"46262":2,"46263":2,"46264":2,"46265":2,"46266":1,"46267":1,"46268":2,"46269":1,"46270":1,"46271":2,"46272":1,"46273":2,"46274":1,"46275":1,"46276":2,"46277":1,"46278":2,"46279":2,"46280":2,"46281":1,"46282":2,"46283":1,"46284":2,"46285":1,"46286":1,"46287":1,"46288":2,"46289":1,"46290":1,"46291":2,"46292":2,"46293":2,"46294":2,"46295":1,"46296":1,"46297":2,"46298":1,"46299":1,"46300":2,"46301":1,"46302":1,"46303":1,"46304":2,"46305":2,"46306":2,"46307":1,"46308":1,"46309":2,"46310":1,"46311":2,"46312":1,"46313":1,"46314":2,"46315":1,"46316":2,"46317":2,"46318":1,"46319":2,"46320":2,"46321":1,"46322":2,"46323":2,"46324":2,"46325":2,"46326":1,"46327":2,"46328":1,"46329":1,"46330":2,"46331":2,"46332":2,"46333":1,"46334":1,"46335":2,"46336":1,"46337":2,"46338":1,"46339":2,"46340":2,"46341":2,"46342":1,"46343":2,"46344":2,"46345":1,"46346":1,"46347":1,"46348":1,"46349":2,"46350":2,"46351":1,"46352":2,"46353":2,"46354":1,"46355":1,"46356":1,"46357":2,"46358":2,"46359":2,"46360":1,"46361":2,"46362":1,"46363":2,"46364":2,"46365":1,"46366":1,"46367":1,"46368":2,"46369":2,"46370":2,"46371":1,"46372":1,"46373":1,"46374":2,"46375":1,"46376":1,"46377":1,"46378":1,"46379":1,"46380":2,"46381":1,"46382":2,"46383":1,"46384":2,"46385":2,"46386":1,"46387":1,"46388":2,"46389":2,"46390":2,"46391":1,"46392":2,"46393":2,"46394":2,"46395":2,"46396":2,"46397":1,"46398":2,"46399":1,"46400":1,"46401":2,"46402":2,"46403":1,"46404":2,"46405":2,"46406":2,"46407":2,"46408":1,"46409":1,"46410":1,"46411":2,"46412":1,"46413":1,"46414":1,"46415":2,"46416":2,"46417":1,"46418":2,"46419":1,"46420":1,"46421":2,"46422":2,"46423":1,"46424":2,"46425":2,"46426":1,"46427":2,"46428":1,"46429":1,"46430":2,"46431":1,"46432":1,"46433":1,"46434":1,"46435":1,"46436":1,"46437":1,"46438":2,"46439":2,"46440":2,"46441":2,"46442":1,"46443":1,"46444":2,"46445":1,"46446":2,"46447":1,"46448":1,"46449":2,"46450":1,"46451":2,"46452":1,"46453":2,"46454":2,"46455":2,"46456":1,"46457":1,"46458":2,"46459":1,"46460":2,"46461":1,"46462":2,"46463":2,"46464":1,"46465":2,"46466":1,"46467":1,"46468":1,"46469":1,"46470":2,"46471":2,"46472":2,"46473":1,"46474":2,"46475":1,"46476":1,"46477":2,"46478":1,"46479":1,"46480":2,"46481":2,"46482":1,"46483":2,"46484":2,"46485":2,"46486":2,"46487":1,"46488":2,"46489":2,"46490":2,"46491":1,"46492":2,"46493":1,"46494":2,"46495":2,"46496":1,"46497":1,"46498":2,"46499":2,"46500":1,"46501":2,"46502":1,"46503":1,"46504":1,"46505":2,"46506":1,"46507":2,"46508":2,"46509":1,"46510":1,"46511":1,"46512":2,"46513":1,"46514":2,"46515":1,"46516":2,"46517":1,"46518":1,"46519":1,"46520":1,"46521":1,"46522":1,"46523":1,"46524":2,"46525":1,"46526":2,"46527":2,"46528":1,"46529":2,"46530":2,"46531":1,"46532":2,"46533":2,"46534":2,"46535":1,"46536":2,"46537":1,"46538":2,"46539":2,"46540":1,"46541":2,"46542":2,"46543":2,"46544":1,"46545":1,"46546":1,"46547":1,"46548":1,"46549":2,"46550":2,"46551":1,"46552":2,"46553":2,"46554":2,"46555":2,"46556":1,"46557":1,"46558":1,"46559":1,"46560":2,"46561":1,"46562":2,"46563":1,"46564":1,"46565":2,"46566":1,"46567":2,"46568":2,"46569":1,"46570":1,"46571":2,"46572":1,"46573":1,"46574":2,"46575":1,"46576":1,"46577":2,"46578":1,"46579":1,"46580":1,"46581":2,"46582":1,"46583":1,"46584":2,"46585":1,"46586":1,"46587":2,"46588":1,"46589":2,"46590":1,"46591":1,"46592":2,"46593":2,"46594":1,"46595":2,"46596":1,"46597":2,"46598":2,"46599":1,"46600":2,"46601":1,"46602":2,"46603":2,"46604":1,"46605":1,"46606":1,"46607":1,"46608":2,"46609":2,"46610":2,"46611":2,"46612":1,"46613":2,"46614":2,"46615":1,"46616":1,"46617":2,"46618":1,"46619":2,"46620":1,"46621":2,"46622":1,"46623":1,"46624":1,"46625":2,"46626":1,"46627":1,"46628":1,"46629":2,"46630":1,"46631":2,"46632":2,"46633":2,"46634":2,"46635":2,"46636":1,"46637":1,"46638":1,"46639":2,"46640":2,"46641":1,"46642":2,"46643":1,"46644":2,"46645":1,"46646":1,"46647":2,"46648":2,"46649":2,"46650":1,"46651":2,"46652":2,"46653":1,"46654":2,"46655":1,"46656":2,"46657":1,"46658":1,"46659":1,"46660":1,"46661":1,"46662":1,"46663":1,"46664":2,"46665":1,"46666":2,"46667":1,"46668":2,"46669":1,"46670":1,"46671":1,"46672":2,"46673":1,"46674":1,"46675":2,"46676":1,"46677":1,"46678":2,"46679":1,"46680":2,"46681":2,"46682":1,"46683":2,"46684":2,"46685":2,"46686":1,"46687":1,"46688":2,"46689":2,"46690":2,"46691":1,"46692":2,"46693":1,"46694":2,"46695":1,"46696":1,"46697":2,"46698":2,"46699":2,"46700":1,"46701":1,"46702":1,"46703":1,"46704":1,"46705":1,"46706":2,"46707":1,"46708":1,"46709":2,"46710":2,"46711":2,"46712":1,"46713":1,"46714":1,"46715":2,"46716":2,"46717":1,"46718":1,"46719":2,"46720":2,"46721":2,"46722":1,"46723":2,"46724":2,"46725":1,"46726":1,"46727":1,"46728":1,"46729":1,"46730":1,"46731":1,"46732":2,"46733":2,"46734":2,"46735":2,"46736":2,"46737":2,"46738":1,"46739":1,"46740":2,"46741":2,"46742":2,"46743":2,"46744":1,"46745":1,"46746":1,"46747":1,"46748":1,"46749":1,"46750":1,"46751":1,"46752":2,"46753":2,"46754":1,"46755":1,"46756":2,"46757":2,"46758":1,"46759":2,"46760":2,"46761":1,"46762":1,"46763":2,"46764":1,"46765":1,"46766":1,"46767":1,"46768":2,"46769":1,"46770":1,"46771":2,"46772":2,"46773":2,"46774":1,"46775":2,"46776":1,"46777":2,"46778":2,"46779":1,"46780":1,"46781":1,"46782":2,"46783":2,"46784":1,"46785":2,"46786":2,"46787":2,"46788":2,"46789":2,"46790":2,"46791":2,"46792":2,"46793":2,"46794":2,"46795":1,"46796":1,"46797":2,"46798":1,"46799":1,"46800":2,"46801":1,"46802":1,"46803":1,"46804":2,"46805":1,"46806":1,"46807":1,"46808":2,"46809":2,"46810":2,"46811":2,"46812":1,"46813":1,"46814":2,"46815":2,"46816":1,"46817":1,"46818":1,"46819":2,"46820":1,"46821":1,"46822":2,"46823":2,"46824":2,"46825":2,"46826":1,"46827":1,"46828":2,"46829":1,"46830":2,"46831":1,"46832":1,"46833":1,"46834":1,"46835":2,"46836":2,"46837":2,"46838":1,"46839":2,"46840":2,"46841":1,"46842":1,"46843":2,"46844":2,"46845":1,"46846":1,"46847":1,"46848":1,"46849":1,"46850":2,"46851":1,"46852":2,"46853":2,"46854":1,"46855":2,"46856":2,"46857":1,"46858":2,"46859":2,"46860":2,"46861":1,"46862":1,"46863":2,"46864":2,"46865":1,"46866":2,"46867":2,"46868":1,"46869":2,"46870":2,"46871":2,"46872":1,"46873":1,"46874":2,"46875":1,"46876":2,"46877":2,"46878":2,"46879":2,"46880":2,"46881":2,"46882":1,"46883":2,"46884":1,"46885":2,"46886":2,"46887":1,"46888":1,"46889":1,"46890":1,"46891":1,"46892":2,"46893":2,"46894":2,"46895":1,"46896":2,"46897":2,"46898":2,"46899":1,"46900":2,"46901":2,"46902":1,"46903":2,"46904":2,"46905":2,"46906":1,"46907":2,"46908":1,"46909":1,"46910":1,"46911":2,"46912":2,"46913":1,"46914":1,"46915":1,"46916":2,"46917":2,"46918":1,"46919":2,"46920":2,"46921":1,"46922":1,"46923":1,"46924":2,"46925":1,"46926":1,"46927":1,"46928":2,"46929":1,"46930":1,"46931":1,"46932":2,"46933":1,"46934":2,"46935":2,"46936":2,"46937":2,"46938":2,"46939":2,"46940":1,"46941":1,"46942":2,"46943":2,"46944":2,"46945":1,"46946":1,"46947":1,"46948":1,"46949":1,"46950":2,"46951":2,"46952":1,"46953":1,"46954":2,"46955":1,"46956":2,"46957":1,"46958":2,"46959":1,"46960":1,"46961":2,"46962":2,"46963":1,"46964":1,"46965":1,"46966":1,"46967":1,"46968":1,"46969":2,"46970":2,"46971":2,"46972":2,"46973":2,"46974":1,"46975":2,"46976":2,"46977":2,"46978":2,"46979":1,"46980":2,"46981":1,"46982":2,"46983":1,"46984":2,"46985":1,"46986":1,"46987":2,"46988":2,"46989":1,"46990":1,"46991":2,"46992":2,"46993":2,"46994":1,"46995":2,"46996":2,"46997":1,"46998":1,"46999":2,"47000":1,"47001":2,"47002":1,"47003":2,"47004":2,"47005":1,"47006":2,"47007":2,"47008":2,"47009":1,"47010":2,"47011":1,"47012":2,"47013":2,"47014":2,"47015":1,"47016":1,"47017":2,"47018":2,"47019":2,"47020":2,"47021":1,"47022":2,"47023":2,"47024":1,"47025":2,"47026":1,"47027":2,"47028":1,"47029":2,"47030":2,"47031":1,"47032":2,"47033":2,"47034":2,"47035":1,"47036":2,"47037":1,"47038":2,"47039":2,"47040":2,"47041":2,"47042":2,"47043":2,"47044":2,"47045":1,"47046":2,"47047":2,"47048":1,"47049":2,"47050":2,"47051":2,"47052":2,"47053":1,"47054":2,"47055":1,"47056":2,"47057":1,"47058":2,"47059":1,"47060":1,"47061":1,"47062":1,"47063":1,"47064":2,"47065":1,"47066":2,"47067":1,"47068":2,"47069":2,"47070":1,"47071":2,"47072":1,"47073":1,"47074":1,"47075":2,"47076":2,"47077":1,"47078":2,"47079":1,"47080":1,"47081":1,"47082":2,"47083":1,"47084":2,"47085":1,"47086":1,"47087":2,"47088":1,"47089":1,"47090":2,"47091":1,"47092":2,"47093":1,"47094":1,"47095":2,"47096":1,"47097":2,"47098":2,"47099":1,"47100":1,"47101":1,"47102":1,"47103":1,"47104":1,"47105":1,"47106":2,"47107":2,"47108":1,"47109":2,"47110":1,"47111":1,"47112":2,"47113":1,"47114":2,"47115":1,"47116":2,"47117":2,"47118":2,"47119":2,"47120":1,"47121":2,"47122":1,"47123":1,"47124":2,"47125":2,"47126":2,"47127":1,"47128":2,"47129":1,"47130":2,"47131":1,"47132":2,"47133":2,"47134":1,"47135":1,"47136":2,"47137":2,"47138":2,"47139":2,"47140":1,"47141":2,"47142":2,"47143":1,"47144":2,"47145":1,"47146":1,"47147":1,"47148":2,"47149":1,"47150":2,"47151":2,"47152":1,"47153":2,"47154":1,"47155":1,"47156":2,"47157":1,"47158":1,"47159":1,"47160":1,"47161":2,"47162":1,"47163":1,"47164":2,"47165":2,"47166":2,"47167":2,"47168":2,"47169":2,"47170":2,"47171":1,"47172":1,"47173":1,"47174":2,"47175":2,"47176":1,"47177":1,"47178":2,"47179":1,"47180":2,"47181":2,"47182":1,"47183":1,"47184":1,"47185":2,"47186":1,"47187":1,"47188":2,"47189":1,"47190":2,"47191":1,"47192":1,"47193":2,"47194":1,"47195":1,"47196":1,"47197":2,"47198":2,"47199":1,"47200":2,"47201":1,"47202":1,"47203":1,"47204":1,"47205":1,"47206":2,"47207":1,"47208":2,"47209":1,"47210":1,"47211":1,"47212":2,"47213":2,"47214":2,"47215":2,"47216":1,"47217":1,"47218":2,"47219":2,"47220":2,"47221":1,"47222":1,"47223":2,"47224":2,"47225":1,"47226":2,"47227":1,"47228":2,"47229":2,"47230":1,"47231":2,"47232":2,"47233":2,"47234":2,"47235":1,"47236":1,"47237":1,"47238":2,"47239":1,"47240":2,"47241":2,"47242":1,"47243":2,"47244":1,"47245":1,"47246":1,"47247":2,"47248":2,"47249":2,"47250":2,"47251":2,"47252":1,"47253":1,"47254":2,"47255":2,"47256":1,"47257":2,"47258":1,"47259":2,"47260":1,"47261":1,"47262":1,"47263":1,"47264":2,"47265":2,"47266":2,"47267":2,"47268":2,"47269":2,"47270":2,"47271":1,"47272":2,"47273":1,"47274":1,"47275":1,"47276":2,"47277":2,"47278":2,"47279":2,"47280":2,"47281":2,"47282":2,"47283":2,"47284":2,"47285":2,"47286":1,"47287":1,"47288":1,"47289":1,"47290":1,"47291":1,"47292":1,"47293":2,"47294":2,"47295":1,"47296":1,"47297":1,"47298":1,"47299":2,"47300":1,"47301":2,"47302":2,"47303":2,"47304":2,"47305":2,"47306":1,"47307":2,"47308":2,"47309":2,"47310":1,"47311":2,"47312":1,"47313":2,"47314":2,"47315":1,"47316":1,"47317":1,"47318":1,"47319":1,"47320":1,"47321":2,"47322":2,"47323":2,"47324":2,"47325":2,"47326":1,"47327":1,"47328":1,"47329":1,"47330":1,"47331":1,"47332":1,"47333":2,"47334":1,"47335":2,"47336":1,"47337":1,"47338":1,"47339":2,"47340":1,"47341":1,"47342":2,"47343":1,"47344":2,"47345":2,"47346":2,"47347":1,"47348":1,"47349":1,"47350":1,"47351":1,"47352":1,"47353":1,"47354":2,"47355":2,"47356":2,"47357":1,"47358":1,"47359":2,"47360":1,"47361":1,"47362":2,"47363":1,"47364":2,"47365":2,"47366":2,"47367":1,"47368":1,"47369":1,"47370":2,"47371":1,"47372":2,"47373":1,"47374":2,"47375":2,"47376":1,"47377":1,"47378":2,"47379":1,"47380":2,"47381":1,"47382":2,"47383":1,"47384":1,"47385":1,"47386":2,"47387":1,"47388":2,"47389":1,"47390":2,"47391":2,"47392":2,"47393":1,"47394":2,"47395":1,"47396":2,"47397":1,"47398":2,"47399":2,"47400":2,"47401":1,"47402":1,"47403":1,"47404":1,"47405":2,"47406":1,"47407":2,"47408":2,"47409":2,"47410":1,"47411":2,"47412":2,"47413":1,"47414":2,"47415":2,"47416":1,"47417":1,"47418":2,"47419":1,"47420":1,"47421":2,"47422":1,"47423":2,"47424":1,"47425":1,"47426":2,"47427":1,"47428":2,"47429":1,"47430":1,"47431":2,"47432":2,"47433":1,"47434":2,"47435":2,"47436":2,"47437":2,"47438":1,"47439":2,"47440":2,"47441":2,"47442":2,"47443":1,"47444":1,"47445":2,"47446":1,"47447":1,"47448":2,"47449":2,"47450":1,"47451":1,"47452":2,"47453":2,"47454":1,"47455":1,"47456":1,"47457":2,"47458":2,"47459":1,"47460":1,"47461":1,"47462":2,"47463":1,"47464":2,"47465":2,"47466":2,"47467":1,"47468":2,"47469":2,"47470":1,"47471":2,"47472":1,"47473":1,"47474":1,"47475":2,"47476":2,"47477":1,"47478":1,"47479":1,"47480":2,"47481":1,"47482":1,"47483":2,"47484":2,"47485":2,"47486":2,"47487":2,"47488":2,"47489":1,"47490":2,"47491":2,"47492":2,"47493":2,"47494":2,"47495":1,"47496":2,"47497":2,"47498":2,"47499":1,"47500":2,"47501":2,"47502":2,"47503":1,"47504":1,"47505":1,"47506":2,"47507":2,"47508":2,"47509":1,"47510":2,"47511":2,"47512":2,"47513":1,"47514":2,"47515":1,"47516":2,"47517":1,"47518":1,"47519":2,"47520":1,"47521":2,"47522":2,"47523":2,"47524":2,"47525":2,"47526":2,"47527":2,"47528":2,"47529":1,"47530":2,"47531":2,"47532":2,"47533":2,"47534":2,"47535":1,"47536":2,"47537":2,"47538":2,"47539":2,"47540":1,"47541":1,"47542":2,"47543":2,"47544":2,"47545":1,"47546":2,"47547":1,"47548":2,"47549":1,"47550":2,"47551":1,"47552":1,"47553":2,"47554":1,"47555":1,"47556":1,"47557":1,"47558":2,"47559":2,"47560":2,"47561":1,"47562":1,"47563":2,"47564":2,"47565":1,"47566":1,"47567":2,"47568":2,"47569":1,"47570":1,"47571":1,"47572":1,"47573":2,"47574":2,"47575":1,"47576":2,"47577":1,"47578":1,"47579":1,"47580":2,"47581":2,"47582":1,"47583":2,"47584":1,"47585":2,"47586":2,"47587":2,"47588":1,"47589":1,"47590":2,"47591":2,"47592":2,"47593":2,"47594":2,"47595":1,"47596":2,"47597":1,"47598":1,"47599":1,"47600":2,"47601":2,"47602":1,"47603":2,"47604":1,"47605":1,"47606":2,"47607":1,"47608":1,"47609":2,"47610":2,"47611":2,"47612":1,"47613":2,"47614":2,"47615":2,"47616":1,"47617":1,"47618":1,"47619":2,"47620":1,"47621":2,"47622":1,"47623":1,"47624":2,"47625":1,"47626":1,"47627":2,"47628":1,"47629":2,"47630":2,"47631":1,"47632":2,"47633":2,"47634":1,"47635":2,"47636":1,"47637":2,"47638":1,"47639":1,"47640":2,"47641":2,"47642":1,"47643":1,"47644":1,"47645":2,"47646":1,"47647":1,"47648":1,"47649":2,"47650":2,"47651":1,"47652":2,"47653":2,"47654":1,"47655":2,"47656":1,"47657":2,"47658":2,"47659":2,"47660":2,"47661":2,"47662":2,"47663":1,"47664":2,"47665":2,"47666":2,"47667":2,"47668":2,"47669":1,"47670":1,"47671":1,"47672":1,"47673":1,"47674":1,"47675":2,"47676":1,"47677":1,"47678":1,"47679":2,"47680":1,"47681":2,"47682":1,"47683":1,"47684":1,"47685":1,"47686":1,"47687":1,"47688":1,"47689":1,"47690":2,"47691":1,"47692":2,"47693":1,"47694":1,"47695":2,"47696":1,"47697":2,"47698":2,"47699":1,"47700":1,"47701":1,"47702":2,"47703":1,"47704":2,"47705":2,"47706":2,"47707":2,"47708":2,"47709":1,"47710":1,"47711":1,"47712":2,"47713":2,"47714":2,"47715":2,"47716":2,"47717":2,"47718":2,"47719":2,"47720":1,"47721":1,"47722":2,"47723":1,"47724":2,"47725":2,"47726":1,"47727":1,"47728":2,"47729":2,"47730":1,"47731":2,"47732":2,"47733":1,"47734":2,"47735":2,"47736":1,"47737":2,"47738":1,"47739":1,"47740":2,"47741":1,"47742":1,"47743":2,"47744":1,"47745":1,"47746":2,"47747":1,"47748":1,"47749":2,"47750":2,"47751":1,"47752":2,"47753":1,"47754":1,"47755":2,"47756":1,"47757":1,"47758":1,"47759":1,"47760":2,"47761":2,"47762":2,"47763":2,"47764":2,"47765":1,"47766":2,"47767":1,"47768":2,"47769":2,"47770":1,"47771":2,"47772":1,"47773":2,"47774":2,"47775":2,"47776":1,"47777":2,"47778":2,"47779":2,"47780":1,"47781":2,"47782":2,"47783":1,"47784":1,"47785":2,"47786":1,"47787":2,"47788":1,"47789":2,"47790":2,"47791":1,"47792":1,"47793":1,"47794":2,"47795":2,"47796":1,"47797":2,"47798":2,"47799":2,"47800":1,"47801":1,"47802":1,"47803":2,"47804":2,"47805":2,"47806":2,"47807":1,"47808":2,"47809":1,"47810":2,"47811":1,"47812":1,"47813":1,"47814":2,"47815":2,"47816":2,"47817":2,"47818":2,"47819":1,"47820":1,"47821":1,"47822":2,"47823":1,"47824":2,"47825":1,"47826":1,"47827":2,"47828":1,"47829":1,"47830":1,"47831":2,"47832":1,"47833":1,"47834":2,"47835":2,"47836":2,"47837":1,"47838":2,"47839":2,"47840":1,"47841":2,"47842":2,"47843":2,"47844":2,"47845":1,"47846":2,"47847":1,"47848":2,"47849":2,"47850":2,"47851":2,"47852":1,"47853":2,"47854":1,"47855":1,"47856":2,"47857":1,"47858":2,"47859":2,"47860":1,"47861":1,"47862":1,"47863":1,"47864":2,"47865":1,"47866":1,"47867":2,"47868":2,"47869":2,"47870":1,"47871":2,"47872":1,"47873":2,"47874":2,"47875":2,"47876":1,"47877":1,"47878":2,"47879":1,"47880":2,"47881":1,"47882":2,"47883":1,"47884":2,"47885":2,"47886":2,"47887":1,"47888":2,"47889":1,"47890":2,"47891":1,"47892":2,"47893":2,"47894":2,"47895":1,"47896":2,"47897":1,"47898":2,"47899":2,"47900":2,"47901":1,"47902":1,"47903":1,"47904":2,"47905":2,"47906":1,"47907":2,"47908":2,"47909":2,"47910":2,"47911":1,"47912":1,"47913":2,"47914":2,"47915":2,"47916":2,"47917":1,"47918":2,"47919":1,"47920":1,"47921":2,"47922":2,"47923":1,"47924":1,"47925":1,"47926":2,"47927":2,"47928":2,"47929":2,"47930":2,"47931":2,"47932":1,"47933":1,"47934":1,"47935":1,"47936":2,"47937":1,"47938":2,"47939":2,"47940":1,"47941":1,"47942":2,"47943":2,"47944":1,"47945":1,"47946":1,"47947":2,"47948":2,"47949":1,"47950":2,"47951":2,"47952":1,"47953":1,"47954":1,"47955":2,"47956":2,"47957":2,"47958":1,"47959":2,"47960":1,"47961":1,"47962":2,"47963":1,"47964":2,"47965":1,"47966":2,"47967":2,"47968":2,"47969":2,"47970":1,"47971":2,"47972":1,"47973":2,"47974":1,"47975":2,"47976":1,"47977":2,"47978":2,"47979":2,"47980":1,"47981":1,"47982":2,"47983":1,"47984":2,"47985":1,"47986":1,"47987":1,"47988":1,"47989":2,"47990":2,"47991":2,"47992":2,"47993":1,"47994":1,"47995":1,"47996":1,"47997":1,"47998":1,"47999":1,"48000":1,"48001":2,"48002":2,"48003":1,"48004":1,"48005":2,"48006":1,"48007":2,"48008":1,"48009":1,"48010":1,"48011":1,"48012":2,"48013":2,"48014":1,"48015":1,"48016":2,"48017":1,"48018":2,"48019":1,"48020":2,"48021":2,"48022":2,"48023":1,"48024":1,"48025":2,"48026":1,"48027":2,"48028":2,"48029":1,"48030":1,"48031":1,"48032":2,"48033":2,"48034":1,"48035":2,"48036":2,"48037":1,"48038":1,"48039":1,"48040":2,"48041":1,"48042":2,"48043":1,"48044":2,"48045":1,"48046":1,"48047":1,"48048":2,"48049":2,"48050":2,"48051":2,"48052":1,"48053":1,"48054":1,"48055":1,"48056":1,"48057":2,"48058":1,"48059":1,"48060":2,"48061":2,"48062":2,"48063":1,"48064":2,"48065":2,"48066":1,"48067":1,"48068":2,"48069":1,"48070":1,"48071":1,"48072":2,"48073":2,"48074":2,"48075":1,"48076":1,"48077":1,"48078":2,"48079":1,"48080":1,"48081":1,"48082":2,"48083":2,"48084":1,"48085":1,"48086":2,"48087":2,"48088":1,"48089":1,"48090":1,"48091":2,"48092":1,"48093":1,"48094":2,"48095":1,"48096":2,"48097":1,"48098":2,"48099":1,"48100":1,"48101":1,"48102":2,"48103":2,"48104":2,"48105":1,"48106":1,"48107":2,"48108":1,"48109":2,"48110":1,"48111":2,"48112":1,"48113":1,"48114":1,"48115":1,"48116":1,"48117":2,"48118":1,"48119":2,"48120":2,"48121":2,"48122":1,"48123":2,"48124":2,"48125":1,"48126":2,"48127":1,"48128":1,"48129":1,"48130":2,"48131":1,"48132":1,"48133":2,"48134":1,"48135":1,"48136":2,"48137":1,"48138":1,"48139":1,"48140":2,"48141":2,"48142":1,"48143":2,"48144":1,"48145":1,"48146":2,"48147":1,"48148":1,"48149":1,"48150":1,"48151":2,"48152":1,"48153":1,"48154":2,"48155":2,"48156":2,"48157":1,"48158":2,"48159":1,"48160":1,"48161":2,"48162":2,"48163":1,"48164":1,"48165":2,"48166":2,"48167":1,"48168":1,"48169":1,"48170":1,"48171":1,"48172":2,"48173":1,"48174":1,"48175":1,"48176":2,"48177":1,"48178":1,"48179":2,"48180":1,"48181":2,"48182":2,"48183":1,"48184":2,"48185":2,"48186":1,"48187":2,"48188":1,"48189":2,"48190":2,"48191":2,"48192":1,"48193":1,"48194":2,"48195":2,"48196":2,"48197":2,"48198":1,"48199":1,"48200":2,"48201":1,"48202":2,"48203":1,"48204":2,"48205":2,"48206":1,"48207":2,"48208":2,"48209":2,"48210":2,"48211":1,"48212":2,"48213":2,"48214":1,"48215":2,"48216":1,"48217":1,"48218":2,"48219":1,"48220":2,"48221":2,"48222":1,"48223":2,"48224":1,"48225":1,"48226":1,"48227":2,"48228":1,"48229":1,"48230":1,"48231":1,"48232":1,"48233":2,"48234":2,"48235":1,"48236":1,"48237":1,"48238":2,"48239":2,"48240":1,"48241":1,"48242":1,"48243":2,"48244":2,"48245":1,"48246":2,"48247":1,"48248":2,"48249":1,"48250":1,"48251":1,"48252":2,"48253":2,"48254":2,"48255":2,"48256":1,"48257":1,"48258":1,"48259":2,"48260":2,"48261":2,"48262":2,"48263":2,"48264":1,"48265":2,"48266":2,"48267":2,"48268":2,"48269":2,"48270":2,"48271":2,"48272":1,"48273":2,"48274":1,"48275":1,"48276":1,"48277":1,"48278":2,"48279":2,"48280":1,"48281":2,"48282":2,"48283":2,"48284":1,"48285":1,"48286":2,"48287":1,"48288":1,"48289":2,"48290":1,"48291":2,"48292":1,"48293":2,"48294":1,"48295":1,"48296":1,"48297":1,"48298":2,"48299":1,"48300":1,"48301":2,"48302":1,"48303":2,"48304":2,"48305":1,"48306":2,"48307":2,"48308":1,"48309":2,"48310":1,"48311":2,"48312":2,"48313":2,"48314":2,"48315":1,"48316":2,"48317":1,"48318":1,"48319":1,"48320":1,"48321":2,"48322":1,"48323":2,"48324":1,"48325":2,"48326":1,"48327":2,"48328":1,"48329":1,"48330":1,"48331":2,"48332":2,"48333":2,"48334":2,"48335":1,"48336":2,"48337":2,"48338":1,"48339":2,"48340":2,"48341":2,"48342":1,"48343":1,"48344":1,"48345":1,"48346":2,"48347":2,"48348":1,"48349":2,"48350":1,"48351":1,"48352":1,"48353":1,"48354":2,"48355":2,"48356":1,"48357":2,"48358":1,"48359":2,"48360":1,"48361":1,"48362":1,"48363":1,"48364":2,"48365":2,"48366":1,"48367":1,"48368":1,"48369":1,"48370":2,"48371":1,"48372":1,"48373":1,"48374":1,"48375":1,"48376":1,"48377":2,"48378":1,"48379":1,"48380":1,"48381":2,"48382":1,"48383":1,"48384":1,"48385":2,"48386":2,"48387":1,"48388":2,"48389":2,"48390":2,"48391":1,"48392":2,"48393":1,"48394":1,"48395":2,"48396":1,"48397":2,"48398":1,"48399":1,"48400":1,"48401":2,"48402":1,"48403":2,"48404":1,"48405":2,"48406":1,"48407":2,"48408":1,"48409":2,"48410":1,"48411":1,"48412":2,"48413":1,"48414":2,"48415":1,"48416":2,"48417":1,"48418":2,"48419":1,"48420":2,"48421":2,"48422":1,"48423":1,"48424":2,"48425":1,"48426":2,"48427":2,"48428":2,"48429":2,"48430":2,"48431":2,"48432":2,"48433":2,"48434":1,"48435":1,"48436":1,"48437":1,"48438":2,"48439":1,"48440":2,"48441":1,"48442":1,"48443":2,"48444":2,"48445":2,"48446":2,"48447":1,"48448":2,"48449":1,"48450":1,"48451":2,"48452":2,"48453":2,"48454":1,"48455":2,"48456":2,"48457":2,"48458":2,"48459":2,"48460":1,"48461":2,"48462":2,"48463":1,"48464":1,"48465":2,"48466":1,"48467":2,"48468":2,"48469":2,"48470":2,"48471":1,"48472":1,"48473":2,"48474":1,"48475":2,"48476":2,"48477":1,"48478":2,"48479":2,"48480":1,"48481":1,"48482":1,"48483":1,"48484":2,"48485":2,"48486":2,"48487":1,"48488":2,"48489":1,"48490":2,"48491":2,"48492":2,"48493":2,"48494":1,"48495":2,"48496":1,"48497":1,"48498":1,"48499":1,"48500":2,"48501":1,"48502":1,"48503":1,"48504":2,"48505":1,"48506":1,"48507":2,"48508":1,"48509":2,"48510":1,"48511":2,"48512":1,"48513":1,"48514":1,"48515":2,"48516":1,"48517":2,"48518":1,"48519":2,"48520":2,"48521":1,"48522":1,"48523":2,"48524":1,"48525":2,"48526":1,"48527":1,"48528":1,"48529":1,"48530":2,"48531":2,"48532":1,"48533":2,"48534":2,"48535":1,"48536":2,"48537":1,"48538":2,"48539":1,"48540":2,"48541":1,"48542":2,"48543":2,"48544":2,"48545":2,"48546":1,"48547":1,"48548":1,"48549":1,"48550":2,"48551":2,"48552":1,"48553":2,"48554":1,"48555":2,"48556":2,"48557":1,"48558":1,"48559":2,"48560":1,"48561":1,"48562":1,"48563":2,"48564":2,"48565":1,"48566":2,"48567":1,"48568":1,"48569":1,"48570":2,"48571":1,"48572":2,"48573":1,"48574":1,"48575":2,"48576":2,"48577":2,"48578":1,"48579":2,"48580":2,"48581":2,"48582":1,"48583":2,"48584":2,"48585":1,"48586":2,"48587":2,"48588":2,"48589":2,"48590":1,"48591":1,"48592":1,"48593":2,"48594":2,"48595":1,"48596":2,"48597":1,"48598":2,"48599":2,"48600":2,"48601":1,"48602":2,"48603":1,"48604":2,"48605":2,"48606":2,"48607":2,"48608":1,"48609":2,"48610":1,"48611":1,"48612":1,"48613":2,"48614":1,"48615":2,"48616":1,"48617":2,"48618":1,"48619":1,"48620":1,"48621":2,"48622":1,"48623":2,"48624":2,"48625":1,"48626":2,"48627":1,"48628":1,"48629":1,"48630":1,"48631":1,"48632":1,"48633":1,"48634":2,"48635":1,"48636":2,"48637":1,"48638":1,"48639":2,"48640":1,"48641":2,"48642":1,"48643":1,"48644":1,"48645":1,"48646":2,"48647":2,"48648":1,"48649":2,"48650":1,"48651":1,"48652":2,"48653":1,"48654":2,"48655":2,"48656":2,"48657":1,"48658":2,"48659":2,"48660":1,"48661":2,"48662":2,"48663":2,"48664":2,"48665":1,"48666":2,"48667":2,"48668":1,"48669":2,"48670":2,"48671":1,"48672":1,"48673":1,"48674":2,"48675":2,"48676":2,"48677":1,"48678":2,"48679":2,"48680":2,"48681":2,"48682":2,"48683":2,"48684":1,"48685":2,"48686":2,"48687":1,"48688":2,"48689":2,"48690":1,"48691":2,"48692":1,"48693":1,"48694":1,"48695":1,"48696":1,"48697":2,"48698":2,"48699":2,"48700":2,"48701":1,"48702":2,"48703":2,"48704":1,"48705":2,"48706":1,"48707":1,"48708":2,"48709":1,"48710":2,"48711":2,"48712":2,"48713":1,"48714":2,"48715":1,"48716":1,"48717":2,"48718":2,"48719":2,"48720":2,"48721":2,"48722":2,"48723":1,"48724":1,"48725":1,"48726":1,"48727":1,"48728":2,"48729":1,"48730":1,"48731":2,"48732":1,"48733":2,"48734":1,"48735":2,"48736":2,"48737":2,"48738":1,"48739":2,"48740":2,"48741":2,"48742":1,"48743":1,"48744":2,"48745":2,"48746":2,"48747":1,"48748":1,"48749":1,"48750":1,"48751":1,"48752":2,"48753":2,"48754":1,"48755":1,"48756":2,"48757":2,"48758":2,"48759":1,"48760":2,"48761":2,"48762":1,"48763":1,"48764":2,"48765":1,"48766":1,"48767":2,"48768":1,"48769":1,"48770":2,"48771":1,"48772":2,"48773":1,"48774":1,"48775":1,"48776":2,"48777":1,"48778":2,"48779":2,"48780":2,"48781":1,"48782":1,"48783":2,"48784":1,"48785":1,"48786":1,"48787":2,"48788":2,"48789":1,"48790":2,"48791":2,"48792":1,"48793":1,"48794":1,"48795":1,"48796":1,"48797":2,"48798":1,"48799":1,"48800":2,"48801":2,"48802":2,"48803":1,"48804":1,"48805":1,"48806":2,"48807":1,"48808":1,"48809":2,"48810":1,"48811":1,"48812":2,"48813":2,"48814":1,"48815":2,"48816":1,"48817":2,"48818":1,"48819":1,"48820":2,"48821":1,"48822":1,"48823":1,"48824":2,"48825":1,"48826":1,"48827":2,"48828":2,"48829":2,"48830":1,"48831":2,"48832":2,"48833":2,"48834":1,"48835":1,"48836":1,"48837":2,"48838":2,"48839":1,"48840":1,"48841":2,"48842":2,"48843":1,"48844":2,"48845":2,"48846":1,"48847":1,"48848":1,"48849":2,"48850":2,"48851":1,"48852":2,"48853":2,"48854":2,"48855":2,"48856":1,"48857":2,"48858":2,"48859":2,"48860":2,"48861":2,"48862":1,"48863":2,"48864":1,"48865":1,"48866":1,"48867":1,"48868":1,"48869":2,"48870":2,"48871":2,"48872":1,"48873":2,"48874":1,"48875":1,"48876":1,"48877":1,"48878":2,"48879":2,"48880":2,"48881":2,"48882":1,"48883":2,"48884":2,"48885":1,"48886":1,"48887":2,"48888":2,"48889":2,"48890":2,"48891":1,"48892":1,"48893":2,"48894":1,"48895":1,"48896":2,"48897":2,"48898":1,"48899":2,"48900":2,"48901":1,"48902":2,"48903":2,"48904":1,"48905":1,"48906":2,"48907":2,"48908":1,"48909":2,"48910":2,"48911":2,"48912":1,"48913":1,"48914":2,"48915":2,"48916":1,"48917":1,"48918":2,"48919":1,"48920":2,"48921":1,"48922":2,"48923":2,"48924":2,"48925":1,"48926":2,"48927":1,"48928":2,"48929":1,"48930":1,"48931":2,"48932":2,"48933":1,"48934":1,"48935":1,"48936":2,"48937":1,"48938":1,"48939":1,"48940":1,"48941":1,"48942":1,"48943":2,"48944":1,"48945":1,"48946":1,"48947":2,"48948":2,"48949":2,"48950":2,"48951":1,"48952":1,"48953":1,"48954":2,"48955":2,"48956":2,"48957":2,"48958":1,"48959":2,"48960":2,"48961":2,"48962":1,"48963":1,"48964":1,"48965":1,"48966":2,"48967":2,"48968":2,"48969":1,"48970":1,"48971":2,"48972":2,"48973":2,"48974":2,"48975":2,"48976":1,"48977":2,"48978":1,"48979":1,"48980":1,"48981":2,"48982":2,"48983":2,"48984":1,"48985":2,"48986":2,"48987":1,"48988":1,"48989":2,"48990":1,"48991":1,"48992":1,"48993":1,"48994":2,"48995":2,"48996":1,"48997":1,"48998":1,"48999":1,"49000":1,"49001":1,"49002":1,"49003":1,"49004":1,"49005":1,"49006":2,"49007":2,"49008":2,"49009":2,"49010":2,"49011":1,"49012":1,"49013":2,"49014":2,"49015":2,"49016":1,"49017":1,"49018":2,"49019":1,"49020":1,"49021":1,"49022":2,"49023":1,"49024":2,"49025":2,"49026":1,"49027":2,"49028":1,"49029":1,"49030":1,"49031":2,"49032":2,"49033":2,"49034":1,"49035":1,"49036":1,"49037":2,"49038":1,"49039":1,"49040":1,"49041":1,"49042":2,"49043":2,"49044":1,"49045":2,"49046":1,"49047":2,"49048":1,"49049":2,"49050":2,"49051":1,"49052":2,"49053":2,"49054":1,"49055":1,"49056":2,"49057":2,"49058":1,"49059":2,"49060":1,"49061":1,"49062":2,"49063":1,"49064":2,"49065":2,"49066":2,"49067":1,"49068":2,"49069":1,"49070":2,"49071":1,"49072":1,"49073":2,"49074":2,"49075":1,"49076":1,"49077":2,"49078":1,"49079":2,"49080":1,"49081":2,"49082":1,"49083":2,"49084":1,"49085":1,"49086":1,"49087":2,"49088":1,"49089":1,"49090":1,"49091":1,"49092":2,"49093":2,"49094":1,"49095":1,"49096":1,"49097":2,"49098":1,"49099":1,"49100":1,"49101":2,"49102":2,"49103":2,"49104":1,"49105":2,"49106":1,"49107":2,"49108":2,"49109":2,"49110":2,"49111":1,"49112":2,"49113":1,"49114":2,"49115":1,"49116":1,"49117":1,"49118":2,"49119":2,"49120":2,"49121":2,"49122":1,"49123":2,"49124":1,"49125":2,"49126":1,"49127":1,"49128":1,"49129":1,"49130":2,"49131":2,"49132":1,"49133":1,"49134":1,"49135":2,"49136":2,"49137":2,"49138":1,"49139":1,"49140":2,"49141":1,"49142":1,"49143":2,"49144":1,"49145":2,"49146":1,"49147":1,"49148":2,"49149":1,"49150":1,"49151":1,"49152":2,"49153":2,"49154":1,"49155":1,"49156":1,"49157":1,"49158":1,"49159":1,"49160":1,"49161":2,"49162":1,"49163":2,"49164":1,"49165":2,"49166":2,"49167":2,"49168":1,"49169":1,"49170":1,"49171":2,"49172":2,"49173":1,"49174":1,"49175":1,"49176":1,"49177":1,"49178":2,"49179":2,"49180":2,"49181":1,"49182":1,"49183":2,"49184":2,"49185":2,"49186":1,"49187":1,"49188":2,"49189":2,"49190":2,"49191":2,"49192":1,"49193":2,"49194":1,"49195":1,"49196":2,"49197":2,"49198":2,"49199":1,"49200":1,"49201":2,"49202":1,"49203":1,"49204":2,"49205":2,"49206":2,"49207":1,"49208":1,"49209":1,"49210":2,"49211":2,"49212":2,"49213":1,"49214":1,"49215":2,"49216":1,"49217":1,"49218":2,"49219":2,"49220":1,"49221":1,"49222":2,"49223":1,"49224":2,"49225":2,"49226":1,"49227":2,"49228":1,"49229":2,"49230":1,"49231":2,"49232":1,"49233":1,"49234":1,"49235":2,"49236":2,"49237":2,"49238":1,"49239":1,"49240":1,"49241":1,"49242":2,"49243":2,"49244":2,"49245":1,"49246":2,"49247":2,"49248":1,"49249":2,"49250":1,"49251":2,"49252":1,"49253":1,"49254":2,"49255":1,"49256":2,"49257":2,"49258":2,"49259":2,"49260":1,"49261":2,"49262":1,"49263":1,"49264":2,"49265":2,"49266":1,"49267":1,"49268":2,"49269":1,"49270":2,"49271":1,"49272":1,"49273":1,"49274":1,"49275":1,"49276":1,"49277":2,"49278":2,"49279":2,"49280":2,"49281":1,"49282":1,"49283":1,"49284":2,"49285":2,"49286":1,"49287":2,"49288":2,"49289":2,"49290":1,"49291":2,"49292":1,"49293":1,"49294":1,"49295":2,"49296":2,"49297":1,"49298":2,"49299":2,"49300":1,"49301":1,"49302":2,"49303":1,"49304":2,"49305":2,"49306":1,"49307":1,"49308":2,"49309":1,"49310":2,"49311":1,"49312":1,"49313":1,"49314":1,"49315":2,"49316":2,"49317":1,"49318":1,"49319":2,"49320":2,"49321":1,"49322":2,"49323":2,"49324":2,"49325":1,"49326":1,"49327":2,"49328":1,"49329":1,"49330":2,"49331":2,"49332":1,"49333":1,"49334":1,"49335":1,"49336":1,"49337":1,"49338":2,"49339":1,"49340":2,"49341":1,"49342":2,"49343":1,"49344":1,"49345":2,"49346":2,"49347":1,"49348":2,"49349":1,"49350":2,"49351":1,"49352":2,"49353":1,"49354":1,"49355":2,"49356":2,"49357":2,"49358":1,"49359":1,"49360":1,"49361":2,"49362":2,"49363":2,"49364":2,"49365":1,"49366":2,"49367":1,"49368":1,"49369":1,"49370":1,"49371":1,"49372":1,"49373":1,"49374":1,"49375":1,"49376":2,"49377":2,"49378":1,"49379":1,"49380":2,"49381":1,"49382":2,"49383":2,"49384":2,"49385":2,"49386":1,"49387":2,"49388":2,"49389":2,"49390":2,"49391":2,"49392":1,"49393":2,"49394":1,"49395":2,"49396":1,"49397":1,"49398":1,"49399":1,"49400":2,"49401":1,"49402":1,"49403":1,"49404":2,"49405":1,"49406":2,"49407":1,"49408":2,"49409":1,"49410":2,"49411":1,"49412":2,"49413":2,"49414":1,"49415":2,"49416":1,"49417":2,"49418":1,"49419":2,"49420":1,"49421":2,"49422":1,"49423":2,"49424":2,"49425":2,"49426":1,"49427":2,"49428":1,"49429":1,"49430":2,"49431":1,"49432":2,"49433":1,"49434":1,"49435":2,"49436":2,"49437":1,"49438":1,"49439":1,"49440":2,"49441":1,"49442":2,"49443":1,"49444":1,"49445":2,"49446":2,"49447":2,"49448":1,"49449":2,"49450":2,"49451":2,"49452":1,"49453":1,"49454":2,"49455":2,"49456":2,"49457":2,"49458":1,"49459":2,"49460":2,"49461":1,"49462":1,"49463":1,"49464":1,"49465":2,"49466":1,"49467":1,"49468":1,"49469":1,"49470":1,"49471":1,"49472":2,"49473":2,"49474":2,"49475":1,"49476":1,"49477":1,"49478":1,"49479":1,"49480":2,"49481":1,"49482":1,"49483":2,"49484":1,"49485":1,"49486":1,"49487":1,"49488":1,"49489":1,"49490":1,"49491":2,"49492":1,"49493":1,"49494":1,"49495":2,"49496":1,"49497":2,"49498":1,"49499":2,"49500":1,"49501":1,"49502":2,"49503":1,"49504":2,"49505":1,"49506":2,"49507":2,"49508":2,"49509":1,"49510":1,"49511":2,"49512":2,"49513":1,"49514":1,"49515":2,"49516":2,"49517":1,"49518":2,"49519":2,"49520":1,"49521":1,"49522":2,"49523":1,"49524":1,"49525":2,"49526":1,"49527":2,"49528":1,"49529":1,"49530":2,"49531":2,"49532":1,"49533":1,"49534":2,"49535":2,"49536":1,"49537":1,"49538":2,"49539":2,"49540":2,"49541":1,"49542":1,"49543":1,"49544":1,"49545":2,"49546":2,"49547":1,"49548":1,"49549":1,"49550":2,"49551":1,"49552":2,"49553":1,"49554":1,"49555":1,"49556":1,"49557":2,"49558":1,"49559":1,"49560":2,"49561":2,"49562":1,"49563":2,"49564":2,"49565":1,"49566":1,"49567":2,"49568":2,"49569":2,"49570":1,"49571":2,"49572":2,"49573":2,"49574":2,"49575":2,"49576":1,"49577":1,"49578":2,"49579":2,"49580":2,"49581":2,"49582":1,"49583":1,"49584":2,"49585":1,"49586":1,"49587":2,"49588":1,"49589":2,"49590":2,"49591":2,"49592":1,"49593":1,"49594":2,"49595":1,"49596":1,"49597":2,"49598":1,"49599":2,"49600":2,"49601":1,"49602":2,"49603":2,"49604":2,"49605":1,"49606":2,"49607":1,"49608":2,"49609":2,"49610":1,"49611":1,"49612":1,"49613":1,"49614":1,"49615":2,"49616":1,"49617":1,"49618":2,"49619":2,"49620":2,"49621":2,"49622":2,"49623":1,"49624":2,"49625":2,"49626":2,"49627":2,"49628":1,"49629":1,"49630":1,"49631":1,"49632":1,"49633":1,"49634":1,"49635":2,"49636":2,"49637":1,"49638":2,"49639":1,"49640":1,"49641":1,"49642":2,"49643":2,"49644":1,"49645":1,"49646":1,"49647":2,"49648":1,"49649":1,"49650":1,"49651":2,"49652":1,"49653":1,"49654":2,"49655":2,"49656":1,"49657":2,"49658":1,"49659":1,"49660":2,"49661":2,"49662":1,"49663":2,"49664":2,"49665":1,"49666":2,"49667":1,"49668":1,"49669":2,"49670":2,"49671":1,"49672":1,"49673":1,"49674":2,"49675":1,"49676":2,"49677":1,"49678":1,"49679":1,"49680":2,"49681":1,"49682":1,"49683":1,"49684":1,"49685":2,"49686":1,"49687":2,"49688":1,"49689":1,"49690":2,"49691":2,"49692":1,"49693":2,"49694":1,"49695":1,"49696":2,"49697":1,"49698":2,"49699":1,"49700":2,"49701":1,"49702":1,"49703":2,"49704":1,"49705":1,"49706":2,"49707":2,"49708":2,"49709":1,"49710":1,"49711":1,"49712":2,"49713":2,"49714":1,"49715":2,"49716":2,"49717":1,"49718":2,"49719":1,"49720":2,"49721":1,"49722":1,"49723":1,"49724":2,"49725":1,"49726":1,"49727":2,"49728":1,"49729":2,"49730":2,"49731":1,"49732":2,"49733":1,"49734":1,"49735":2,"49736":1,"49737":2,"49738":2,"49739":1,"49740":2,"49741":2,"49742":2,"49743":1,"49744":1,"49745":2,"49746":1,"49747":1,"49748":1,"49749":1,"49750":2,"49751":2,"49752":2,"49753":2,"49754":1,"49755":1,"49756":1,"49757":1,"49758":1,"49759":2,"49760":1,"49761":1,"49762":1,"49763":2,"49764":1,"49765":1,"49766":2,"49767":2,"49768":2,"49769":2,"49770":2,"49771":1,"49772":1,"49773":1,"49774":1,"49775":2,"49776":1,"49777":2,"49778":2,"49779":1,"49780":1,"49781":2,"49782":1,"49783":1,"49784":2,"49785":1,"49786":2,"49787":2,"49788":2,"49789":2,"49790":2,"49791":1,"49792":1,"49793":2,"49794":1,"49795":1,"49796":2,"49797":1,"49798":1,"49799":1,"49800":1,"49801":1,"49802":1,"49803":2,"49804":1,"49805":2,"49806":1,"49807":2,"49808":2,"49809":1,"49810":1,"49811":2,"49812":1,"49813":1,"49814":1,"49815":2,"49816":2,"49817":1,"49818":2,"49819":2,"49820":2,"49821":1,"49822":1,"49823":1,"49824":2,"49825":2,"49826":1,"49827":1,"49828":2,"49829":2,"49830":1,"49831":2,"49832":1,"49833":2,"49834":1,"49835":2,"49836":1,"49837":1,"49838":1,"49839":2,"49840":2,"49841":1,"49842":2,"49843":1,"49844":1,"49845":1,"49846":1,"49847":2,"49848":1,"49849":1,"49850":2,"49851":1,"49852":2,"49853":1,"49854":1,"49855":1,"49856":2,"49857":1,"49858":1,"49859":1,"49860":2,"49861":2,"49862":2,"49863":2,"49864":1,"49865":1,"49866":1,"49867":2,"49868":2,"49869":1,"49870":2,"49871":2,"49872":2,"49873":1,"49874":2,"49875":1,"49876":2,"49877":1,"49878":2,"49879":1,"49880":2,"49881":2,"49882":2,"49883":1,"49884":1,"49885":1,"49886":1,"49887":1,"49888":1,"49889":2,"49890":1,"49891":2,"49892":1,"49893":1,"49894":1,"49895":2,"49896":1,"49897":1,"49898":2,"49899":2,"49900":1,"49901":2,"49902":1,"49903":1,"49904":1,"49905":2,"49906":1,"49907":1,"49908":1,"49909":1,"49910":2,"49911":1,"49912":1,"49913":1,"49914":2,"49915":2,"49916":2,"49917":2,"49918":2,"49919":1,"49920":2,"49921":1,"49922":2,"49923":1,"49924":1,"49925":1,"49926":1,"49927":1,"49928":1,"49929":1,"49930":1,"49931":2,"49932":1,"49933":1,"49934":1,"49935":2,"49936":2,"49937":2,"49938":2,"49939":1,"49940":1,"49941":1,"49942":1,"49943":1,"49944":1,"49945":1,"49946":1,"49947":2,"49948":1,"49949":1,"49950":2,"49951":2,"49952":1,"49953":1,"49954":1,"49955":2,"49956":2,"49957":2,"49958":1,"49959":1,"49960":2,"49961":2,"49962":1,"49963":2,"49964":1,"49965":1,"49966":1,"49967":1,"49968":2,"49969":1,"49970":1,"49971":2,"49972":2,"49973":2,"49974":1,"49975":2,"49976":1,"49977":1,"49978":2,"49979":2,"49980":1,"49981":2,"49982":1,"49983":1,"49984":2,"49985":1,"49986":1,"49987":2,"49988":1,"49989":1,"49990":1,"49991":2,"49992":2,"49993":1,"49994":2,"49995":1,"49996":2,"49997":2,"49998":1,"49999":1,"50000":2,"50001":2,"50002":2,"50003":2,"50004":2,"50005":2,"50006":2,"50007":2,"50008":2,"50009":2,"50010":1,"50011":2,"50012":1,"50013":2,"50014":1,"50015":2,"50016":1,"50017":2,"50018":1,"50019":1,"50020":1,"50021":1,"50022":1,"50023":1,"50024":1,"50025":2,"50026":2,"50027":2,"50028":1,"50029":1,"50030":1,"50031":1,"50032":2,"50033":1,"50034":2,"50035":2,"50036":1,"50037":2,"50038":1,"50039":1,"50040":2,"50041":2,"50042":2,"50043":2,"50044":1,"50045":2,"50046":1,"50047":1,"50048":2,"50049":2,"50050":2,"50051":1,"50052":1,"50053":2,"50054":1,"50055":2,"50056":1,"50057":1,"50058":1,"50059":2,"50060":1,"50061":1,"50062":2,"50063":2,"50064":2,"50065":2,"50066":2,"50067":1,"50068":1,"50069":1,"50070":1,"50071":1,"50072":2,"50073":2,"50074":1,"50075":2,"50076":1,"50077":1,"50078":1,"50079":1,"50080":1,"50081":2,"50082":2,"50083":2,"50084":2,"50085":1,"50086":1,"50087":2,"50088":2,"50089":2,"50090":2,"50091":2,"50092":2,"50093":1,"50094":1,"50095":1,"50096":1,"50097":1,"50098":1,"50099":2,"50100":1,"50101":1,"50102":1,"50103":1,"50104":2,"50105":1,"50106":1,"50107":1,"50108":1,"50109":2,"50110":1,"50111":1,"50112":2,"50113":2,"50114":2,"50115":1,"50116":1,"50117":1,"50118":1,"50119":2,"50120":2,"50121":1,"50122":1,"50123":2,"50124":1,"50125":2,"50126":1,"50127":1,"50128":1,"50129":1,"50130":1,"50131":2,"50132":1,"50133":2,"50134":2,"50135":1,"50136":2,"50137":2,"50138":1,"50139":2,"50140":1,"50141":1,"50142":1,"50143":2,"50144":2,"50145":2,"50146":1,"50147":1,"50148":2,"50149":1,"50150":1,"50151":2,"50152":1,"50153":2,"50154":2,"50155":1,"50156":1,"50157":2,"50158":2,"50159":1,"50160":2,"50161":2,"50162":2,"50163":2,"50164":1,"50165":1,"50166":1,"50167":1,"50168":2,"50169":2,"50170":2,"50171":2,"50172":1,"50173":2,"50174":2,"50175":1,"50176":1,"50177":2,"50178":2,"50179":2,"50180":2,"50181":1,"50182":2,"50183":1,"50184":2,"50185":1,"50186":2,"50187":1,"50188":2,"50189":2,"50190":1,"50191":2,"50192":2,"50193":1,"50194":2,"50195":2,"50196":2,"50197":1,"50198":1,"50199":2,"50200":1,"50201":1,"50202":1,"50203":1,"50204":1,"50205":2,"50206":2,"50207":1,"50208":2,"50209":2,"50210":2,"50211":2,"50212":1,"50213":2,"50214":2,"50215":1,"50216":2,"50217":2,"50218":1,"50219":1,"50220":1,"50221":2,"50222":1,"50223":1,"50224":2,"50225":1,"50226":1,"50227":1,"50228":1,"50229":1,"50230":1,"50231":1,"50232":1,"50233":2,"50234":2,"50235":1,"50236":1,"50237":1,"50238":1,"50239":1,"50240":2,"50241":2,"50242":2,"50243":2,"50244":1,"50245":1,"50246":2,"50247":2,"50248":2,"50249":1,"50250":2,"50251":2,"50252":1,"50253":2,"50254":2,"50255":1,"50256":2,"50257":1,"50258":2,"50259":2,"50260":2,"50261":1,"50262":1,"50263":2,"50264":2,"50265":1,"50266":1,"50267":1,"50268":2,"50269":2,"50270":1,"50271":1,"50272":2,"50273":1,"50274":1,"50275":2,"50276":2,"50277":1,"50278":2,"50279":1,"50280":1,"50281":1,"50282":1,"50283":1,"50284":2,"50285":2,"50286":2,"50287":1,"50288":2,"50289":1,"50290":1,"50291":1,"50292":1,"50293":1,"50294":1,"50295":2,"50296":2,"50297":2,"50298":2,"50299":2,"50300":1,"50301":1,"50302":1,"50303":1,"50304":1,"50305":2,"50306":1,"50307":1,"50308":2,"50309":1,"50310":2,"50311":2,"50312":2,"50313":2,"50314":1,"50315":2,"50316":2,"50317":2,"50318":2,"50319":1,"50320":2,"50321":2,"50322":2,"50323":1,"50324":1,"50325":1,"50326":1,"50327":2,"50328":1,"50329":2,"50330":2,"50331":1,"50332":1,"50333":1,"50334":1,"50335":2,"50336":1,"50337":1,"50338":2,"50339":2,"50340":1,"50341":1,"50342":2,"50343":2,"50344":1,"50345":2,"50346":2,"50347":1,"50348":2,"50349":2,"50350":1,"50351":1,"50352":2,"50353":1,"50354":2,"50355":1,"50356":1,"50357":1,"50358":1,"50359":2,"50360":2,"50361":1,"50362":1,"50363":2,"50364":2,"50365":2,"50366":1,"50367":1,"50368":1,"50369":1,"50370":1,"50371":2,"50372":1,"50373":2,"50374":2,"50375":2,"50376":1,"50377":2,"50378":1,"50379":2,"50380":2,"50381":1,"50382":1,"50383":1,"50384":1,"50385":2,"50386":2,"50387":2,"50388":2,"50389":1,"50390":1,"50391":2,"50392":2,"50393":2,"50394":1,"50395":2,"50396":2,"50397":1,"50398":1,"50399":2,"50400":1,"50401":2,"50402":1,"50403":2,"50404":1,"50405":2,"50406":2,"50407":1,"50408":2,"50409":2,"50410":2,"50411":1,"50412":2,"50413":1,"50414":2,"50415":1,"50416":2,"50417":2,"50418":2,"50419":2,"50420":1,"50421":1,"50422":1,"50423":1,"50424":1,"50425":1,"50426":2,"50427":1,"50428":2,"50429":2,"50430":1,"50431":2,"50432":1,"50433":2,"50434":1,"50435":2,"50436":1,"50437":1,"50438":2,"50439":2,"50440":1,"50441":1,"50442":1,"50443":2,"50444":2,"50445":2,"50446":2,"50447":2,"50448":2,"50449":1,"50450":1,"50451":1,"50452":1,"50453":2,"50454":1,"50455":1,"50456":2,"50457":1,"50458":1,"50459":1,"50460":2,"50461":1,"50462":2,"50463":2,"50464":1,"50465":1,"50466":2,"50467":1,"50468":1,"50469":1,"50470":1,"50471":1,"50472":2,"50473":1,"50474":2,"50475":2,"50476":2,"50477":1,"50478":1,"50479":1,"50480":2,"50481":2,"50482":2,"50483":2,"50484":2,"50485":2,"50486":2,"50487":2,"50488":1,"50489":1,"50490":1,"50491":1,"50492":1,"50493":1,"50494":2,"50495":1,"50496":1,"50497":2,"50498":1,"50499":2,"50500":1,"50501":2,"50502":2,"50503":1,"50504":2,"50505":2,"50506":2,"50507":1,"50508":2,"50509":1,"50510":1,"50511":1,"50512":1,"50513":2,"50514":1,"50515":2,"50516":1,"50517":2,"50518":1,"50519":1,"50520":1,"50521":2,"50522":2,"50523":2,"50524":2,"50525":1,"50526":2,"50527":2,"50528":1,"50529":2,"50530":2,"50531":1,"50532":1,"50533":1,"50534":2,"50535":2,"50536":1,"50537":1,"50538":2,"50539":2,"50540":1,"50541":1,"50542":2,"50543":1,"50544":1,"50545":1,"50546":1,"50547":1,"50548":1,"50549":1,"50550":2,"50551":2,"50552":2,"50553":1,"50554":2,"50555":1,"50556":2,"50557":1,"50558":2,"50559":2,"50560":1,"50561":1,"50562":1,"50563":2,"50564":2,"50565":1,"50566":1,"50567":1,"50568":1,"50569":2,"50570":1,"50571":2,"50572":1,"50573":2,"50574":1,"50575":2,"50576":2,"50577":1,"50578":2,"50579":1,"50580":1,"50581":1,"50582":1,"50583":2,"50584":2,"50585":2,"50586":1,"50587":1,"50588":2,"50589":1,"50590":2,"50591":2,"50592":1,"50593":1,"50594":2,"50595":1,"50596":1,"50597":1,"50598":1,"50599":2,"50600":2,"50601":2,"50602":2,"50603":2,"50604":2,"50605":2,"50606":1,"50607":1,"50608":1,"50609":1,"50610":1,"50611":2,"50612":1,"50613":2,"50614":2,"50615":2,"50616":2,"50617":2,"50618":1,"50619":2,"50620":1,"50621":2,"50622":2,"50623":1,"50624":1,"50625":1,"50626":1,"50627":1,"50628":2,"50629":1,"50630":2,"50631":2,"50632":2,"50633":1,"50634":2,"50635":2,"50636":1,"50637":1,"50638":2,"50639":2,"50640":2,"50641":1,"50642":1,"50643":1,"50644":2,"50645":1,"50646":2,"50647":1,"50648":1,"50649":2,"50650":1,"50651":1,"50652":1,"50653":2,"50654":2,"50655":2,"50656":1,"50657":2,"50658":2,"50659":1,"50660":1,"50661":2,"50662":2,"50663":2,"50664":1,"50665":2,"50666":2,"50667":1,"50668":2,"50669":2,"50670":2,"50671":1,"50672":1,"50673":1,"50674":2,"50675":2,"50676":1,"50677":1,"50678":1,"50679":2,"50680":2,"50681":1,"50682":2,"50683":1,"50684":1,"50685":2,"50686":2,"50687":1,"50688":2,"50689":2,"50690":1,"50691":1,"50692":1,"50693":1,"50694":1,"50695":1,"50696":1,"50697":2,"50698":2,"50699":2,"50700":1,"50701":2,"50702":2,"50703":1,"50704":1,"50705":1,"50706":2,"50707":1,"50708":1,"50709":2,"50710":2,"50711":1,"50712":1,"50713":2,"50714":2,"50715":1,"50716":2,"50717":2,"50718":1,"50719":1,"50720":2,"50721":1,"50722":1,"50723":1,"50724":2,"50725":2,"50726":2,"50727":1,"50728":2,"50729":2,"50730":2,"50731":1,"50732":1,"50733":1,"50734":2,"50735":2,"50736":1,"50737":2,"50738":2,"50739":2,"50740":1,"50741":2,"50742":2,"50743":2,"50744":1,"50745":1,"50746":1,"50747":1,"50748":1,"50749":2,"50750":1,"50751":2,"50752":2,"50753":2,"50754":2,"50755":2,"50756":2,"50757":1,"50758":1,"50759":1,"50760":1,"50761":2,"50762":2,"50763":1,"50764":1,"50765":2,"50766":1,"50767":2,"50768":1,"50769":2,"50770":2,"50771":1,"50772":2,"50773":2,"50774":1,"50775":1,"50776":2,"50777":1,"50778":2,"50779":1,"50780":1,"50781":2,"50782":2,"50783":2,"50784":2,"50785":1,"50786":2,"50787":2,"50788":1,"50789":2,"50790":2,"50791":1,"50792":2,"50793":2,"50794":2,"50795":2,"50796":1,"50797":1,"50798":1,"50799":1,"50800":1,"50801":1,"50802":1,"50803":2,"50804":2,"50805":1,"50806":1,"50807":2,"50808":1,"50809":1,"50810":1,"50811":1,"50812":2,"50813":2,"50814":1,"50815":2,"50816":2,"50817":2,"50818":2,"50819":2,"50820":2,"50821":1,"50822":2,"50823":2,"50824":2,"50825":2,"50826":2,"50827":2,"50828":1,"50829":1,"50830":1,"50831":1,"50832":1,"50833":2,"50834":2,"50835":1,"50836":2,"50837":1,"50838":2,"50839":1,"50840":1,"50841":1,"50842":2,"50843":2,"50844":2,"50845":2,"50846":1,"50847":1,"50848":1,"50849":1,"50850":1,"50851":1,"50852":1,"50853":1,"50854":2,"50855":1,"50856":1,"50857":2,"50858":2,"50859":2,"50860":2,"50861":1,"50862":1,"50863":2,"50864":1,"50865":1,"50866":1,"50867":1,"50868":2,"50869":2,"50870":2,"50871":2,"50872":2,"50873":2,"50874":1,"50875":2,"50876":2,"50877":2,"50878":1,"50879":2,"50880":1,"50881":1,"50882":2,"50883":1,"50884":2,"50885":1,"50886":2,"50887":1,"50888":1,"50889":1,"50890":1,"50891":1,"50892":2,"50893":1,"50894":2,"50895":2,"50896":2,"50897":2,"50898":1,"50899":1,"50900":1,"50901":1,"50902":2,"50903":2,"50904":1,"50905":1,"50906":1,"50907":1,"50908":1,"50909":2,"50910":1,"50911":1,"50912":1,"50913":2,"50914":1,"50915":2,"50916":1,"50917":1,"50918":2,"50919":2,"50920":2,"50921":2,"50922":1,"50923":1,"50924":1,"50925":2,"50926":2,"50927":1,"50928":2,"50929":2,"50930":1,"50931":2,"50932":2,"50933":1,"50934":1,"50935":1,"50936":1,"50937":1,"50938":2,"50939":2,"50940":2,"50941":2,"50942":2,"50943":2,"50944":1,"50945":1,"50946":1,"50947":2,"50948":2,"50949":1,"50950":2,"50951":1,"50952":2,"50953":1,"50954":2,"50955":2,"50956":1,"50957":2,"50958":2,"50959":2,"50960":2,"50961":1,"50962":2,"50963":1,"50964":1,"50965":2,"50966":1,"50967":2,"50968":1,"50969":2,"50970":2,"50971":2,"50972":2,"50973":2,"50974":1,"50975":2,"50976":1,"50977":2,"50978":2,"50979":1,"50980":2,"50981":2,"50982":2,"50983":2,"50984":1,"50985":1,"50986":1,"50987":1,"50988":1,"50989":2,"50990":2,"50991":2,"50992":2,"50993":2,"50994":1,"50995":1,"50996":2,"50997":2,"50998":1,"50999":1,"51000":2,"51001":2,"51002":2,"51003":1,"51004":1,"51005":2,"51006":2,"51007":1,"51008":1,"51009":2,"51010":1,"51011":2,"51012":2,"51013":1,"51014":1,"51015":1,"51016":2,"51017":2,"51018":1,"51019":2,"51020":2,"51021":1,"51022":1,"51023":1,"51024":1,"51025":1,"51026":1,"51027":2,"51028":1,"51029":1,"51030":1,"51031":1,"51032":1,"51033":1,"51034":1,"51035":1,"51036":1,"51037":2,"51038":2,"51039":1,"51040":1,"51041":2,"51042":1,"51043":2,"51044":1,"51045":2,"51046":1,"51047":2,"51048":1,"51049":2,"51050":2,"51051":2,"51052":1,"51053":2,"51054":2,"51055":1,"51056":1,"51057":2,"51058":2,"51059":2,"51060":1,"51061":2,"51062":1,"51063":2,"51064":2,"51065":1,"51066":1,"51067":2,"51068":1,"51069":2,"51070":2,"51071":1,"51072":2,"51073":1,"51074":1,"51075":2,"51076":2,"51077":1,"51078":1,"51079":1,"51080":2,"51081":2,"51082":2,"51083":2,"51084":1,"51085":2,"51086":2,"51087":2,"51088":1,"51089":1,"51090":1,"51091":2,"51092":1,"51093":1,"51094":2,"51095":1,"51096":1,"51097":1,"51098":2,"51099":2,"51100":2,"51101":1,"51102":2,"51103":1,"51104":2,"51105":1,"51106":1,"51107":2,"51108":1,"51109":1,"51110":1,"51111":2,"51112":2,"51113":1,"51114":1,"51115":1,"51116":2,"51117":1,"51118":2,"51119":2,"51120":2,"51121":2,"51122":2,"51123":1,"51124":1,"51125":2,"51126":2,"51127":2,"51128":2,"51129":2,"51130":1,"51131":1,"51132":2,"51133":1,"51134":1,"51135":1,"51136":1,"51137":2,"51138":2,"51139":2,"51140":2,"51141":1,"51142":1,"51143":1,"51144":1,"51145":1,"51146":2,"51147":2,"51148":1,"51149":2,"51150":2,"51151":2,"51152":1,"51153":2,"51154":1,"51155":1,"51156":2,"51157":2,"51158":1,"51159":1,"51160":1,"51161":2,"51162":2,"51163":1,"51164":2,"51165":2,"51166":2,"51167":1,"51168":2,"51169":1,"51170":2,"51171":2,"51172":1,"51173":1,"51174":1,"51175":2,"51176":1,"51177":2,"51178":2,"51179":2,"51180":1,"51181":2,"51182":2,"51183":2,"51184":2,"51185":1,"51186":2,"51187":2,"51188":1,"51189":1,"51190":1,"51191":1,"51192":1,"51193":1,"51194":1,"51195":1,"51196":1,"51197":2,"51198":1,"51199":1,"51200":1,"51201":1,"51202":2,"51203":1,"51204":1,"51205":2,"51206":1,"51207":1,"51208":2,"51209":1,"51210":1,"51211":2,"51212":2,"51213":1,"51214":2,"51215":2,"51216":1,"51217":1,"51218":2,"51219":1,"51220":1,"51221":1,"51222":1,"51223":2,"51224":2,"51225":2,"51226":1,"51227":2,"51228":1,"51229":1,"51230":2,"51231":1,"51232":1,"51233":1,"51234":1,"51235":1,"51236":2,"51237":1,"51238":2,"51239":1,"51240":1,"51241":2,"51242":1,"51243":2,"51244":2,"51245":2,"51246":1,"51247":2,"51248":1,"51249":1,"51250":1,"51251":1,"51252":1,"51253":1,"51254":2,"51255":1,"51256":2,"51257":1,"51258":2,"51259":2,"51260":2,"51261":2,"51262":2,"51263":1,"51264":2,"51265":1,"51266":1,"51267":2,"51268":1,"51269":2,"51270":1,"51271":2,"51272":1,"51273":2,"51274":2,"51275":1,"51276":1,"51277":1,"51278":1,"51279":2,"51280":1,"51281":1,"51282":1,"51283":1,"51284":2,"51285":1,"51286":1,"51287":2,"51288":2,"51289":1,"51290":1,"51291":2,"51292":1,"51293":1,"51294":1,"51295":2,"51296":2,"51297":1,"51298":2,"51299":2,"51300":2,"51301":1,"51302":2,"51303":2,"51304":2,"51305":1,"51306":1,"51307":2,"51308":1,"51309":1,"51310":2,"51311":1,"51312":2,"51313":1,"51314":1,"51315":2,"51316":2,"51317":1,"51318":1,"51319":1,"51320":1,"51321":1,"51322":1,"51323":2,"51324":2,"51325":1,"51326":1,"51327":2,"51328":1,"51329":1,"51330":1,"51331":2,"51332":2,"51333":1,"51334":1,"51335":1,"51336":1,"51337":2,"51338":2,"51339":1,"51340":2,"51341":2,"51342":1,"51343":2,"51344":1,"51345":2,"51346":1,"51347":2,"51348":2,"51349":1,"51350":2,"51351":1,"51352":2,"51353":1,"51354":1,"51355":1,"51356":1,"51357":1,"51358":2,"51359":1,"51360":2,"51361":2,"51362":1,"51363":1,"51364":2,"51365":2,"51366":1,"51367":2,"51368":2,"51369":2,"51370":1,"51371":2,"51372":2,"51373":1,"51374":2,"51375":1,"51376":2,"51377":1,"51378":2,"51379":1,"51380":2,"51381":1,"51382":1,"51383":1,"51384":2,"51385":2,"51386":1,"51387":2,"51388":1,"51389":1,"51390":1,"51391":2,"51392":1,"51393":2,"51394":2,"51395":2,"51396":1,"51397":2,"51398":1,"51399":1,"51400":1,"51401":1,"51402":1,"51403":1,"51404":2,"51405":2,"51406":2,"51407":2,"51408":2,"51409":2,"51410":2,"51411":2,"51412":2,"51413":2,"51414":2,"51415":2,"51416":2,"51417":1,"51418":1,"51419":2,"51420":2,"51421":1,"51422":1,"51423":2,"51424":1,"51425":2,"51426":1,"51427":2,"51428":1,"51429":1,"51430":1,"51431":2,"51432":2,"51433":2,"51434":2,"51435":2,"51436":2,"51437":1,"51438":2,"51439":1,"51440":1,"51441":1,"51442":2,"51443":2,"51444":2,"51445":2,"51446":2,"51447":2,"51448":1,"51449":1,"51450":2,"51451":2,"51452":1,"51453":2,"51454":1,"51455":1,"51456":1,"51457":1,"51458":1,"51459":2,"51460":2,"51461":1,"51462":2,"51463":2,"51464":1,"51465":1,"51466":1,"51467":2,"51468":1,"51469":1,"51470":2,"51471":2,"51472":2,"51473":2,"51474":1,"51475":2,"51476":2,"51477":1,"51478":1,"51479":2,"51480":2,"51481":2,"51482":2,"51483":1,"51484":1,"51485":1,"51486":2,"51487":2,"51488":1,"51489":2,"51490":1,"51491":2,"51492":1,"51493":1,"51494":2,"51495":1,"51496":1,"51497":1,"51498":1,"51499":2,"51500":1,"51501":2,"51502":1,"51503":2,"51504":2,"51505":2,"51506":1,"51507":2,"51508":1,"51509":1,"51510":1,"51511":1,"51512":1,"51513":1,"51514":1,"51515":1,"51516":1,"51517":1,"51518":1,"51519":1,"51520":2,"51521":1,"51522":2,"51523":1,"51524":2,"51525":1,"51526":1,"51527":2,"51528":2,"51529":2,"51530":1,"51531":1,"51532":2,"51533":1,"51534":2,"51535":2,"51536":1,"51537":2,"51538":1,"51539":1,"51540":2,"51541":2,"51542":2,"51543":2,"51544":2,"51545":1,"51546":1,"51547":2,"51548":2,"51549":2,"51550":1,"51551":2,"51552":1,"51553":1,"51554":1,"51555":2,"51556":1,"51557":1,"51558":1,"51559":2,"51560":1,"51561":1,"51562":1,"51563":2,"51564":1,"51565":1,"51566":1,"51567":1,"51568":2,"51569":2,"51570":2,"51571":2,"51572":2,"51573":2,"51574":1,"51575":2,"51576":2,"51577":1,"51578":2,"51579":2,"51580":2,"51581":2,"51582":1,"51583":2,"51584":2,"51585":1,"51586":1,"51587":1,"51588":1,"51589":2,"51590":1,"51591":2,"51592":2,"51593":1,"51594":2,"51595":1,"51596":1,"51597":1,"51598":1,"51599":1,"51600":2,"51601":2,"51602":1,"51603":2,"51604":1,"51605":1,"51606":1,"51607":1,"51608":1,"51609":2,"51610":1,"51611":1,"51612":2,"51613":2,"51614":2,"51615":2,"51616":1,"51617":1,"51618":1,"51619":1,"51620":1,"51621":2,"51622":2,"51623":2,"51624":2,"51625":1,"51626":1,"51627":1,"51628":1,"51629":2,"51630":2,"51631":2,"51632":1,"51633":1,"51634":2,"51635":2,"51636":1,"51637":1,"51638":2,"51639":1,"51640":2,"51641":1,"51642":2,"51643":1,"51644":1,"51645":1,"51646":1,"51647":2,"51648":2,"51649":2,"51650":2,"51651":1,"51652":1,"51653":1,"51654":1,"51655":1,"51656":1,"51657":1,"51658":1,"51659":2,"51660":2,"51661":1,"51662":2,"51663":1,"51664":2,"51665":2,"51666":2,"51667":1,"51668":2,"51669":2,"51670":1,"51671":2,"51672":1,"51673":1,"51674":2,"51675":2,"51676":2,"51677":2,"51678":1,"51679":1,"51680":1,"51681":2,"51682":1,"51683":1,"51684":2,"51685":1,"51686":2,"51687":2,"51688":2,"51689":2,"51690":1,"51691":2,"51692":2,"51693":2,"51694":2,"51695":2,"51696":2,"51697":1,"51698":2,"51699":2,"51700":2,"51701":1,"51702":2,"51703":2,"51704":2,"51705":1,"51706":2,"51707":1,"51708":1,"51709":2,"51710":2,"51711":2,"51712":2,"51713":2,"51714":2,"51715":1,"51716":2,"51717":2,"51718":1,"51719":1,"51720":2,"51721":1,"51722":1,"51723":1,"51724":1,"51725":2,"51726":1,"51727":2,"51728":1,"51729":1,"51730":1,"51731":1,"51732":1,"51733":1,"51734":1,"51735":1,"51736":1,"51737":1,"51738":2,"51739":1,"51740":1,"51741":1,"51742":1,"51743":1,"51744":1,"51745":2,"51746":1,"51747":1,"51748":1,"51749":1,"51750":1,"51751":1,"51752":2,"51753":2,"51754":2,"51755":2,"51756":2,"51757":2,"51758":1,"51759":2,"51760":2,"51761":1,"51762":2,"51763":2,"51764":1,"51765":1,"51766":2,"51767":1,"51768":1,"51769":1,"51770":1,"51771":2,"51772":1,"51773":2,"51774":2,"51775":1,"51776":1,"51777":2,"51778":1,"51779":1,"51780":2,"51781":1,"51782":2,"51783":1,"51784":2,"51785":2,"51786":2,"51787":2,"51788":1,"51789":1,"51790":1,"51791":2,"51792":1,"51793":2,"51794":2,"51795":1,"51796":2,"51797":1,"51798":2,"51799":2,"51800":2,"51801":2,"51802":1,"51803":1,"51804":1,"51805":2,"51806":1,"51807":1,"51808":2,"51809":1,"51810":1,"51811":2,"51812":2,"51813":2,"51814":1,"51815":2,"51816":1,"51817":2,"51818":1,"51819":2,"51820":2,"51821":2,"51822":2,"51823":2,"51824":2,"51825":1,"51826":1,"51827":1,"51828":1,"51829":1,"51830":2,"51831":1,"51832":2,"51833":2,"51834":2,"51835":1,"51836":1,"51837":1,"51838":1,"51839":2,"51840":1,"51841":1,"51842":2,"51843":1,"51844":1,"51845":1,"51846":1,"51847":1,"51848":2,"51849":1,"51850":2,"51851":1,"51852":2,"51853":1,"51854":1,"51855":1,"51856":1,"51857":1,"51858":2,"51859":2,"51860":2,"51861":1,"51862":2,"51863":1,"51864":2,"51865":2,"51866":2,"51867":2,"51868":2,"51869":1,"51870":1,"51871":1,"51872":1,"51873":1,"51874":2,"51875":2,"51876":2,"51877":2,"51878":2,"51879":1,"51880":2,"51881":1,"51882":2,"51883":1,"51884":1,"51885":1,"51886":2,"51887":2,"51888":2,"51889":2,"51890":1,"51891":2,"51892":1,"51893":2,"51894":1,"51895":1,"51896":2,"51897":1,"51898":1,"51899":1,"51900":2,"51901":1,"51902":1,"51903":1,"51904":1,"51905":2,"51906":1,"51907":1,"51908":2,"51909":2,"51910":2,"51911":1,"51912":1,"51913":2,"51914":1,"51915":2,"51916":1,"51917":2,"51918":2,"51919":1,"51920":2,"51921":2,"51922":1,"51923":1,"51924":1,"51925":1,"51926":2,"51927":2,"51928":1,"51929":1,"51930":2,"51931":2,"51932":2,"51933":1,"51934":2,"51935":1,"51936":1,"51937":2,"51938":1,"51939":2,"51940":1,"51941":2,"51942":1,"51943":2,"51944":1,"51945":1,"51946":1,"51947":2,"51948":2,"51949":1,"51950":2,"51951":1,"51952":2,"51953":1,"51954":1,"51955":2,"51956":2,"51957":1,"51958":2,"51959":2,"51960":1,"51961":2,"51962":1,"51963":1,"51964":1,"51965":2,"51966":1,"51967":1,"51968":2,"51969":2,"51970":1,"51971":2,"51972":1,"51973":1,"51974":1,"51975":2,"51976":2,"51977":1,"51978":1,"51979":1,"51980":2,"51981":1,"51982":2,"51983":2,"51984":1,"51985":2,"51986":1,"51987":2,"51988":2,"51989":1,"51990":1,"51991":2,"51992":2,"51993":1,"51994":1,"51995":2,"51996":2,"51997":1,"51998":1,"51999":2,"52000":2,"52001":2,"52002":2,"52003":1,"52004":1,"52005":1,"52006":1,"52007":2,"52008":2,"52009":1,"52010":1,"52011":2,"52012":2,"52013":2,"52014":2,"52015":2,"52016":1,"52017":1,"52018":2,"52019":2,"52020":1,"52021":2,"52022":1,"52023":1,"52024":2,"52025":2,"52026":2,"52027":2,"52028":2,"52029":2,"52030":1,"52031":2,"52032":1,"52033":1,"52034":1,"52035":1,"52036":1,"52037":1,"52038":1,"52039":2,"52040":2,"52041":1,"52042":1,"52043":2,"52044":2,"52045":1,"52046":2,"52047":1,"52048":1,"52049":1,"52050":1,"52051":2,"52052":1,"52053":2,"52054":2,"52055":2,"52056":2,"52057":1,"52058":2,"52059":2,"52060":1,"52061":1,"52062":1,"52063":2,"52064":2,"52065":2,"52066":1,"52067":2,"52068":2,"52069":1,"52070":1,"52071":1,"52072":1,"52073":2,"52074":1,"52075":1,"52076":1,"52077":2,"52078":2,"52079":2,"52080":1,"52081":1,"52082":2,"52083":2,"52084":2,"52085":2,"52086":1,"52087":2,"52088":1,"52089":2,"52090":1,"52091":2,"52092":2,"52093":2,"52094":1,"52095":1,"52096":2,"52097":1,"52098":2,"52099":2,"52100":2,"52101":1,"52102":1,"52103":2,"52104":2,"52105":1,"52106":2,"52107":1,"52108":1,"52109":2,"52110":1,"52111":1,"52112":2,"52113":1,"52114":2,"52115":1,"52116":2,"52117":1,"52118":1,"52119":1,"52120":2,"52121":1,"52122":2,"52123":1,"52124":2,"52125":1,"52126":2,"52127":1,"52128":1,"52129":2,"52130":2,"52131":2,"52132":2,"52133":2,"52134":2,"52135":1,"52136":2,"52137":2,"52138":2,"52139":2,"52140":1,"52141":1,"52142":1,"52143":1,"52144":2,"52145":2,"52146":2,"52147":2,"52148":2,"52149":1,"52150":1,"52151":1,"52152":2,"52153":1,"52154":1,"52155":2,"52156":2,"52157":2,"52158":2,"52159":1,"52160":2,"52161":1,"52162":1,"52163":2,"52164":2,"52165":2,"52166":2,"52167":2,"52168":2,"52169":1,"52170":1,"52171":2,"52172":1,"52173":2,"52174":2,"52175":2,"52176":2,"52177":1,"52178":1,"52179":2,"52180":2,"52181":2,"52182":2,"52183":2,"52184":2,"52185":1,"52186":2,"52187":1,"52188":2,"52189":2,"52190":2,"52191":2,"52192":1,"52193":1,"52194":2,"52195":2,"52196":1,"52197":1,"52198":1,"52199":2,"52200":2,"52201":2,"52202":2,"52203":2,"52204":1,"52205":1,"52206":2,"52207":1,"52208":1,"52209":1,"52210":2,"52211":1,"52212":2,"52213":2,"52214":1,"52215":1,"52216":2,"52217":1,"52218":1,"52219":2,"52220":1,"52221":2,"52222":1,"52223":1,"52224":2,"52225":1,"52226":2,"52227":1,"52228":2,"52229":2,"52230":1,"52231":1,"52232":2,"52233":1,"52234":1,"52235":1,"52236":1,"52237":1,"52238":1,"52239":1,"52240":1,"52241":2,"52242":2,"52243":2,"52244":1,"52245":1,"52246":1,"52247":2,"52248":2,"52249":1,"52250":2,"52251":2,"52252":2,"52253":2,"52254":2,"52255":1,"52256":1,"52257":2,"52258":1,"52259":1,"52260":1,"52261":2,"52262":1,"52263":2,"52264":2,"52265":1,"52266":2,"52267":2,"52268":2,"52269":2,"52270":2,"52271":2,"52272":1,"52273":1,"52274":2,"52275":1,"52276":1,"52277":2,"52278":1,"52279":1,"52280":2,"52281":2,"52282":2,"52283":1,"52284":1,"52285":2,"52286":2,"52287":2,"52288":1,"52289":1,"52290":2,"52291":2,"52292":1,"52293":2,"52294":1,"52295":2,"52296":2,"52297":2,"52298":1,"52299":2,"52300":1,"52301":2,"52302":2,"52303":1,"52304":1,"52305":1,"52306":2,"52307":2,"52308":2,"52309":1,"52310":1,"52311":1,"52312":1,"52313":1,"52314":1,"52315":2,"52316":1,"52317":1,"52318":2,"52319":1,"52320":2,"52321":2,"52322":2,"52323":1,"52324":1,"52325":1,"52326":2,"52327":2,"52328":1,"52329":1,"52330":2,"52331":1,"52332":2,"52333":1,"52334":2,"52335":2,"52336":1,"52337":2,"52338":2,"52339":2,"52340":2,"52341":2,"52342":2,"52343":2,"52344":2,"52345":2,"52346":1,"52347":2,"52348":2,"52349":1,"52350":1,"52351":1,"52352":2,"52353":1,"52354":2,"52355":1,"52356":1,"52357":2,"52358":1,"52359":2,"52360":1,"52361":1,"52362":1,"52363":1,"52364":2,"52365":2,"52366":2,"52367":2,"52368":2,"52369":2,"52370":2,"52371":1,"52372":1,"52373":1,"52374":2,"52375":2,"52376":2,"52377":1,"52378":2,"52379":2,"52380":1,"52381":1,"52382":1,"52383":1,"52384":1,"52385":2,"52386":1,"52387":2,"52388":1,"52389":1,"52390":1,"52391":1,"52392":2,"52393":2,"52394":2,"52395":1,"52396":2,"52397":1,"52398":2,"52399":1,"52400":1,"52401":1,"52402":2,"52403":1,"52404":2,"52405":1,"52406":1,"52407":1,"52408":2,"52409":2,"52410":2,"52411":1,"52412":2,"52413":2,"52414":1,"52415":1,"52416":1,"52417":1,"52418":2,"52419":2,"52420":2,"52421":1,"52422":1,"52423":1,"52424":2,"52425":2,"52426":2,"52427":2,"52428":1,"52429":2,"52430":1,"52431":2,"52432":2,"52433":2,"52434":1,"52435":2,"52436":1,"52437":1,"52438":1,"52439":2,"52440":1,"52441":1,"52442":1,"52443":2,"52444":2,"52445":2,"52446":1,"52447":1,"52448":1,"52449":1,"52450":1,"52451":2,"52452":1,"52453":2,"52454":2,"52455":1,"52456":1,"52457":2,"52458":2,"52459":1,"52460":1,"52461":1,"52462":2,"52463":1,"52464":2,"52465":2,"52466":2,"52467":2,"52468":1,"52469":2,"52470":2,"52471":1,"52472":2,"52473":1,"52474":2,"52475":2,"52476":2,"52477":1,"52478":1,"52479":1,"52480":2,"52481":1,"52482":1,"52483":1,"52484":2,"52485":2,"52486":1,"52487":2,"52488":1,"52489":2,"52490":1,"52491":2,"52492":1,"52493":1,"52494":1,"52495":2,"52496":2,"52497":2,"52498":1,"52499":1,"52500":2,"52501":1,"52502":2,"52503":1,"52504":2,"52505":2,"52506":1,"52507":1,"52508":2,"52509":1,"52510":1,"52511":1,"52512":1,"52513":2,"52514":2,"52515":2,"52516":2,"52517":2,"52518":2,"52519":2,"52520":2,"52521":2,"52522":2,"52523":1,"52524":2,"52525":1,"52526":2,"52527":2,"52528":1,"52529":1,"52530":1,"52531":1,"52532":2,"52533":2,"52534":2,"52535":2,"52536":2,"52537":2,"52538":2,"52539":1,"52540":1,"52541":1,"52542":1,"52543":1,"52544":2,"52545":1,"52546":2,"52547":2,"52548":2,"52549":2,"52550":2,"52551":2,"52552":1,"52553":2,"52554":1,"52555":1,"52556":1,"52557":1,"52558":1,"52559":2,"52560":1,"52561":2,"52562":1,"52563":1,"52564":1,"52565":2,"52566":2,"52567":1,"52568":2,"52569":1,"52570":1,"52571":1,"52572":2,"52573":2,"52574":2,"52575":2,"52576":2,"52577":2,"52578":1,"52579":1,"52580":2,"52581":1,"52582":2,"52583":2,"52584":1,"52585":2,"52586":2,"52587":2,"52588":1,"52589":1,"52590":2,"52591":2,"52592":1,"52593":2,"52594":2,"52595":2,"52596":1,"52597":1,"52598":1,"52599":2,"52600":2,"52601":2,"52602":2,"52603":1,"52604":2,"52605":1,"52606":1,"52607":1,"52608":2,"52609":2,"52610":1,"52611":1,"52612":2,"52613":1,"52614":2,"52615":1,"52616":1,"52617":2,"52618":2,"52619":2,"52620":1,"52621":2,"52622":2,"52623":1,"52624":2,"52625":2,"52626":1,"52627":1,"52628":1,"52629":2,"52630":1,"52631":2,"52632":1,"52633":2,"52634":1,"52635":2,"52636":2,"52637":1,"52638":2,"52639":1,"52640":2,"52641":1,"52642":2,"52643":2,"52644":1,"52645":1,"52646":1,"52647":1,"52648":2,"52649":1,"52650":1,"52651":2,"52652":2,"52653":1,"52654":1,"52655":1,"52656":1,"52657":2,"52658":1,"52659":1,"52660":2,"52661":2,"52662":1,"52663":1,"52664":1,"52665":2,"52666":1,"52667":1,"52668":1,"52669":2,"52670":1,"52671":2,"52672":1,"52673":1,"52674":1,"52675":2,"52676":1,"52677":1,"52678":1,"52679":2,"52680":2,"52681":2,"52682":2,"52683":1,"52684":2,"52685":1,"52686":2,"52687":1,"52688":1,"52689":1,"52690":2,"52691":1,"52692":2,"52693":2,"52694":1,"52695":2,"52696":1,"52697":2,"52698":1,"52699":2,"52700":2,"52701":1,"52702":1,"52703":1,"52704":2,"52705":1,"52706":1,"52707":1,"52708":1,"52709":1,"52710":1,"52711":2,"52712":1,"52713":1,"52714":2,"52715":1,"52716":2,"52717":2,"52718":2,"52719":2,"52720":2,"52721":1,"52722":2,"52723":2,"52724":2,"52725":1,"52726":1,"52727":1,"52728":2,"52729":1,"52730":1,"52731":2,"52732":2,"52733":2,"52734":2,"52735":2,"52736":1,"52737":2,"52738":2,"52739":2,"52740":1,"52741":1,"52742":2,"52743":2,"52744":1,"52745":1,"52746":2,"52747":1,"52748":2,"52749":2,"52750":1,"52751":1,"52752":1,"52753":1,"52754":1,"52755":1,"52756":2,"52757":2,"52758":2,"52759":2,"52760":1,"52761":1,"52762":1,"52763":1,"52764":1,"52765":1,"52766":2,"52767":1,"52768":1,"52769":1,"52770":2,"52771":1,"52772":1,"52773":2,"52774":1,"52775":2,"52776":2,"52777":1,"52778":2,"52779":1,"52780":1,"52781":2,"52782":1,"52783":1,"52784":1,"52785":1,"52786":2,"52787":2,"52788":1,"52789":1,"52790":2,"52791":1,"52792":1,"52793":1,"52794":2,"52795":2,"52796":2,"52797":1,"52798":2,"52799":2,"52800":1,"52801":2,"52802":2,"52803":2,"52804":1,"52805":1,"52806":1,"52807":2,"52808":2,"52809":2,"52810":1,"52811":2,"52812":1,"52813":2,"52814":1,"52815":2,"52816":1,"52817":1,"52818":2,"52819":1,"52820":2,"52821":2,"52822":2,"52823":1,"52824":1,"52825":1,"52826":2,"52827":2,"52828":1,"52829":2,"52830":2,"52831":1,"52832":1,"52833":1,"52834":2,"52835":2,"52836":1,"52837":1,"52838":1,"52839":1,"52840":2,"52841":1,"52842":2,"52843":1,"52844":1,"52845":1,"52846":1,"52847":2,"52848":1,"52849":1,"52850":1,"52851":1,"52852":2,"52853":1,"52854":2,"52855":1,"52856":2,"52857":1,"52858":2,"52859":2,"52860":1,"52861":2,"52862":1,"52863":2,"52864":2,"52865":2,"52866":2,"52867":2,"52868":2,"52869":2,"52870":1,"52871":1,"52872":1,"52873":2,"52874":1,"52875":2,"52876":1,"52877":1,"52878":2,"52879":1,"52880":1,"52881":2,"52882":1,"52883":1,"52884":1,"52885":1,"52886":1,"52887":1,"52888":1,"52889":1,"52890":1,"52891":2,"52892":1,"52893":1,"52894":2,"52895":2,"52896":1,"52897":1,"52898":1,"52899":1,"52900":1,"52901":1,"52902":1,"52903":1,"52904":2,"52905":1,"52906":1,"52907":2,"52908":2,"52909":2,"52910":2,"52911":1,"52912":1,"52913":2,"52914":1,"52915":2,"52916":1,"52917":1,"52918":1,"52919":2,"52920":1,"52921":2,"52922":1,"52923":1,"52924":1,"52925":2,"52926":2,"52927":1,"52928":1,"52929":1,"52930":1,"52931":1,"52932":1,"52933":2,"52934":1,"52935":2,"52936":1,"52937":2,"52938":2,"52939":2,"52940":2,"52941":2,"52942":1,"52943":1,"52944":1,"52945":1,"52946":2,"52947":1,"52948":2,"52949":1,"52950":1,"52951":1,"52952":2,"52953":1,"52954":2,"52955":2,"52956":1,"52957":2,"52958":1,"52959":2,"52960":1,"52961":1,"52962":1,"52963":2,"52964":2,"52965":2,"52966":2,"52967":2,"52968":1,"52969":1,"52970":2,"52971":2,"52972":1,"52973":2,"52974":1,"52975":2,"52976":2,"52977":1,"52978":2,"52979":2,"52980":1,"52981":1,"52982":1,"52983":2,"52984":1,"52985":2,"52986":2,"52987":1,"52988":2,"52989":2,"52990":2,"52991":1,"52992":2,"52993":2,"52994":1,"52995":2,"52996":2,"52997":1,"52998":2,"52999":2,"53000":2,"53001":1,"53002":2,"53003":1,"53004":1,"53005":2,"53006":1,"53007":2,"53008":2,"53009":1,"53010":2,"53011":2,"53012":2,"53013":1,"53014":2,"53015":2,"53016":2,"53017":2,"53018":1,"53019":1,"53020":2,"53021":2,"53022":1,"53023":2,"53024":2,"53025":1,"53026":2,"53027":2,"53028":1,"53029":2,"53030":1,"53031":1,"53032":1,"53033":2,"53034":1,"53035":1,"53036":1,"53037":1,"53038":2,"53039":1,"53040":1,"53041":2,"53042":2,"53043":1,"53044":2,"53045":1,"53046":1,"53047":1,"53048":2,"53049":2,"53050":2,"53051":2,"53052":1,"53053":2,"53054":1,"53055":2,"53056":2,"53057":2,"53058":1,"53059":2,"53060":1,"53061":2,"53062":2,"53063":2,"53064":1,"53065":1,"53066":1,"53067":2,"53068":2,"53069":2,"53070":1,"53071":1,"53072":2,"53073":2,"53074":2,"53075":2,"53076":1,"53077":1,"53078":2,"53079":1,"53080":2,"53081":2,"53082":2,"53083":1,"53084":1,"53085":2,"53086":2,"53087":2,"53088":2,"53089":2,"53090":1,"53091":2,"53092":2,"53093":1,"53094":2,"53095":1,"53096":2,"53097":2,"53098":2,"53099":1,"53100":1,"53101":1,"53102":1,"53103":2,"53104":2,"53105":2,"53106":1,"53107":2,"53108":2,"53109":2,"53110":1,"53111":1,"53112":1,"53113":1,"53114":1,"53115":2,"53116":2,"53117":1,"53118":1,"53119":2,"53120":2,"53121":2,"53122":1,"53123":1,"53124":1,"53125":1,"53126":1,"53127":2,"53128":1,"53129":2,"53130":2,"53131":2,"53132":2,"53133":2,"53134":2,"53135":2,"53136":1,"53137":2,"53138":1,"53139":1,"53140":2,"53141":2,"53142":1,"53143":1,"53144":1,"53145":2,"53146":1,"53147":2,"53148":1,"53149":1,"53150":1,"53151":2,"53152":2,"53153":1,"53154":2,"53155":2,"53156":1,"53157":2,"53158":1,"53159":2,"53160":1,"53161":2,"53162":1,"53163":1,"53164":1,"53165":2,"53166":1,"53167":1,"53168":1,"53169":1,"53170":1,"53171":2,"53172":2,"53173":2,"53174":2,"53175":2,"53176":2,"53177":2,"53178":2,"53179":1,"53180":1,"53181":2,"53182":1,"53183":2,"53184":2,"53185":2,"53186":1,"53187":2,"53188":2,"53189":1,"53190":1,"53191":2,"53192":2,"53193":2,"53194":2,"53195":2,"53196":1,"53197":1,"53198":2,"53199":1,"53200":1,"53201":2,"53202":1,"53203":1,"53204":1,"53205":2,"53206":2,"53207":1,"53208":1,"53209":2,"53210":2,"53211":2,"53212":2,"53213":2,"53214":2,"53215":2,"53216":1,"53217":1,"53218":2,"53219":1,"53220":2,"53221":2,"53222":2,"53223":1,"53224":2,"53225":1,"53226":1,"53227":2,"53228":1,"53229":1,"53230":1,"53231":1,"53232":2,"53233":2,"53234":2,"53235":2,"53236":2,"53237":1,"53238":2,"53239":1,"53240":2,"53241":2,"53242":1,"53243":1,"53244":1,"53245":2,"53246":1,"53247":2,"53248":2,"53249":2,"53250":2,"53251":2,"53252":1,"53253":2,"53254":1,"53255":1,"53256":2,"53257":2,"53258":1,"53259":1,"53260":2,"53261":2,"53262":1,"53263":1,"53264":1,"53265":1,"53266":1,"53267":1,"53268":2,"53269":1,"53270":1,"53271":1,"53272":1,"53273":1,"53274":1,"53275":2,"53276":1,"53277":2,"53278":2,"53279":2,"53280":1,"53281":1,"53282":1,"53283":1,"53284":1,"53285":1,"53286":1,"53287":1,"53288":2,"53289":1,"53290":1,"53291":2,"53292":1,"53293":1,"53294":2,"53295":2,"53296":1,"53297":1,"53298":1,"53299":2,"53300":1,"53301":1,"53302":2,"53303":1,"53304":2,"53305":1,"53306":1,"53307":1,"53308":2,"53309":2,"53310":2,"53311":2,"53312":1,"53313":2,"53314":2,"53315":2,"53316":1,"53317":2,"53318":1,"53319":1,"53320":1,"53321":2,"53322":2,"53323":1,"53324":1,"53325":1,"53326":2,"53327":1,"53328":2,"53329":1,"53330":2,"53331":1,"53332":2,"53333":1,"53334":1,"53335":1,"53336":2,"53337":1,"53338":2,"53339":2,"53340":2,"53341":2,"53342":2,"53343":2,"53344":1,"53345":1,"53346":1,"53347":2,"53348":1,"53349":1,"53350":2,"53351":1,"53352":1,"53353":2,"53354":1,"53355":2,"53356":2,"53357":2,"53358":2,"53359":1,"53360":1,"53361":2,"53362":1,"53363":1,"53364":1,"53365":2,"53366":1,"53367":1,"53368":2,"53369":2,"53370":2,"53371":2,"53372":1,"53373":2,"53374":1,"53375":1,"53376":2,"53377":2,"53378":2,"53379":2,"53380":2,"53381":2,"53382":2,"53383":1,"53384":1,"53385":2,"53386":2,"53387":1,"53388":1,"53389":2,"53390":1,"53391":2,"53392":1,"53393":2,"53394":2,"53395":2,"53396":1,"53397":1,"53398":2,"53399":2,"53400":1,"53401":2,"53402":1,"53403":1,"53404":1,"53405":1,"53406":1,"53407":2,"53408":2,"53409":1,"53410":1,"53411":2,"53412":1,"53413":1,"53414":1,"53415":1,"53416":2,"53417":1,"53418":2,"53419":1,"53420":1,"53421":1,"53422":2,"53423":2,"53424":2,"53425":1,"53426":1,"53427":1,"53428":1,"53429":2,"53430":2,"53431":2,"53432":2,"53433":2,"53434":1,"53435":2,"53436":1,"53437":1,"53438":2,"53439":2,"53440":1,"53441":2,"53442":1,"53443":2,"53444":2,"53445":2,"53446":2,"53447":1,"53448":2,"53449":2,"53450":1,"53451":2,"53452":1,"53453":2,"53454":1,"53455":2,"53456":2,"53457":1,"53458":2,"53459":2,"53460":1,"53461":2,"53462":2,"53463":1,"53464":2,"53465":1,"53466":2,"53467":1,"53468":1,"53469":1,"53470":1,"53471":2,"53472":2,"53473":1,"53474":1,"53475":1,"53476":2,"53477":1,"53478":2,"53479":2,"53480":1,"53481":1,"53482":1,"53483":2,"53484":2,"53485":2,"53486":1,"53487":1,"53488":2,"53489":2,"53490":2,"53491":1,"53492":1,"53493":2,"53494":2,"53495":1,"53496":2,"53497":2,"53498":1,"53499":2,"53500":1,"53501":2,"53502":2,"53503":2,"53504":1,"53505":1,"53506":2,"53507":1,"53508":2,"53509":1,"53510":1,"53511":1,"53512":1,"53513":1,"53514":1,"53515":2,"53516":1,"53517":1,"53518":2,"53519":1,"53520":1,"53521":1,"53522":2,"53523":2,"53524":1,"53525":1,"53526":1,"53527":2,"53528":1,"53529":1,"53530":2,"53531":2,"53532":1,"53533":1,"53534":2,"53535":2,"53536":2,"53537":1,"53538":2,"53539":2,"53540":2,"53541":1,"53542":2,"53543":2,"53544":1,"53545":2,"53546":2,"53547":1,"53548":2,"53549":2,"53550":1,"53551":2,"53552":1,"53553":1,"53554":1,"53555":2,"53556":1,"53557":1,"53558":2,"53559":2,"53560":1,"53561":2,"53562":2,"53563":2,"53564":2,"53565":1,"53566":2,"53567":1,"53568":2,"53569":1,"53570":2,"53571":2,"53572":2,"53573":2,"53574":2,"53575":2,"53576":1,"53577":2,"53578":2,"53579":1,"53580":2,"53581":1,"53582":1,"53583":1,"53584":1,"53585":2,"53586":2,"53587":1,"53588":2,"53589":2,"53590":1,"53591":1,"53592":1,"53593":2,"53594":2,"53595":1,"53596":2,"53597":1,"53598":1,"53599":2,"53600":2,"53601":1,"53602":2,"53603":2,"53604":2,"53605":2,"53606":1,"53607":1,"53608":2,"53609":2,"53610":2,"53611":2,"53612":2,"53613":2,"53614":1,"53615":2,"53616":2,"53617":1,"53618":1,"53619":1,"53620":2,"53621":2,"53622":2,"53623":2,"53624":1,"53625":2,"53626":2,"53627":1,"53628":1,"53629":1,"53630":1,"53631":2,"53632":1,"53633":2,"53634":2,"53635":1,"53636":2,"53637":1,"53638":2,"53639":2,"53640":1,"53641":2,"53642":1,"53643":2,"53644":2,"53645":1,"53646":2,"53647":2,"53648":2,"53649":1,"53650":1,"53651":2,"53652":2,"53653":1,"53654":2,"53655":2,"53656":2,"53657":2,"53658":1,"53659":2,"53660":1,"53661":1,"53662":2,"53663":1,"53664":1,"53665":1,"53666":1,"53667":1,"53668":1,"53669":2,"53670":1,"53671":2,"53672":1,"53673":2,"53674":2,"53675":2,"53676":1,"53677":2,"53678":2,"53679":1,"53680":2,"53681":1,"53682":1,"53683":2,"53684":1,"53685":2,"53686":2,"53687":2,"53688":2,"53689":2,"53690":2,"53691":1,"53692":1,"53693":2,"53694":1,"53695":2,"53696":2,"53697":2,"53698":2,"53699":1,"53700":1,"53701":2,"53702":2,"53703":1,"53704":1,"53705":2,"53706":1,"53707":1,"53708":1,"53709":2,"53710":1,"53711":2,"53712":1,"53713":2,"53714":1,"53715":1,"53716":1,"53717":2,"53718":2,"53719":1,"53720":1,"53721":2,"53722":1,"53723":1,"53724":1,"53725":1,"53726":2,"53727":1,"53728":2,"53729":1,"53730":1,"53731":2,"53732":1,"53733":2,"53734":2,"53735":2,"53736":1,"53737":1,"53738":2,"53739":1,"53740":1,"53741":2,"53742":1,"53743":2,"53744":1,"53745":1,"53746":2,"53747":1,"53748":1,"53749":1,"53750":1,"53751":1,"53752":2,"53753":1,"53754":2,"53755":2,"53756":1,"53757":2,"53758":1,"53759":2,"53760":2,"53761":2,"53762":2,"53763":2,"53764":2,"53765":1,"53766":2,"53767":1,"53768":1,"53769":2,"53770":2,"53771":2,"53772":2,"53773":2,"53774":2,"53775":1,"53776":1,"53777":2,"53778":1,"53779":2,"53780":2,"53781":2,"53782":2,"53783":1,"53784":1,"53785":2,"53786":2,"53787":2,"53788":1,"53789":1,"53790":1,"53791":1,"53792":2,"53793":1,"53794":2,"53795":1,"53796":2,"53797":2,"53798":2,"53799":2,"53800":2,"53801":1,"53802":2,"53803":2,"53804":2,"53805":2,"53806":1,"53807":2,"53808":1,"53809":1,"53810":1,"53811":2,"53812":2,"53813":2,"53814":2,"53815":2,"53816":1,"53817":1,"53818":2,"53819":2,"53820":2,"53821":2,"53822":1,"53823":1,"53824":2,"53825":1,"53826":2,"53827":2,"53828":1,"53829":2,"53830":2,"53831":2,"53832":2,"53833":1,"53834":2,"53835":1,"53836":1,"53837":1,"53838":2,"53839":2,"53840":1,"53841":1,"53842":2,"53843":1,"53844":2,"53845":2,"53846":1,"53847":1,"53848":1,"53849":2,"53850":1,"53851":1,"53852":1,"53853":1,"53854":1,"53855":1,"53856":1,"53857":2,"53858":1,"53859":2,"53860":2,"53861":1,"53862":2,"53863":1,"53864":2,"53865":1,"53866":2,"53867":1,"53868":2,"53869":1,"53870":2,"53871":2,"53872":1,"53873":2,"53874":2,"53875":1,"53876":1,"53877":1,"53878":2,"53879":1,"53880":1,"53881":2,"53882":2,"53883":2,"53884":2,"53885":1,"53886":2,"53887":2,"53888":1,"53889":1,"53890":1,"53891":1,"53892":2,"53893":2,"53894":2,"53895":2,"53896":1,"53897":1,"53898":2,"53899":1,"53900":2,"53901":2,"53902":1,"53903":1,"53904":1,"53905":2,"53906":1,"53907":1,"53908":2,"53909":2,"53910":2,"53911":2,"53912":1,"53913":2,"53914":1,"53915":1,"53916":1,"53917":1,"53918":1,"53919":1,"53920":1,"53921":2,"53922":1,"53923":1,"53924":2,"53925":2,"53926":2,"53927":2,"53928":1,"53929":1,"53930":2,"53931":1,"53932":1,"53933":2,"53934":2,"53935":2,"53936":1,"53937":1,"53938":1,"53939":1,"53940":2,"53941":1,"53942":2,"53943":2,"53944":2,"53945":1,"53946":2,"53947":2,"53948":2,"53949":1,"53950":1,"53951":2,"53952":2,"53953":1,"53954":1,"53955":1,"53956":1,"53957":2,"53958":1,"53959":2,"53960":2,"53961":2,"53962":1,"53963":1,"53964":2,"53965":2,"53966":2,"53967":1,"53968":2,"53969":2,"53970":1,"53971":2,"53972":2,"53973":1,"53974":2,"53975":2,"53976":2,"53977":1,"53978":1,"53979":2,"53980":1,"53981":2,"53982":2,"53983":1,"53984":1,"53985":1,"53986":2,"53987":2,"53988":1,"53989":1,"53990":2,"53991":2,"53992":2,"53993":1,"53994":1,"53995":1,"53996":2,"53997":1,"53998":1,"53999":2,"54000":2,"54001":1,"54002":1,"54003":1,"54004":1,"54005":2,"54006":1,"54007":2,"54008":2,"54009":2,"54010":1,"54011":1,"54012":2,"54013":2,"54014":1,"54015":2,"54016":1,"54017":2,"54018":1,"54019":2,"54020":1,"54021":2,"54022":1,"54023":1,"54024":1,"54025":1,"54026":1,"54027":1,"54028":2,"54029":1,"54030":2,"54031":2,"54032":1,"54033":1,"54034":2,"54035":1,"54036":1,"54037":2,"54038":1,"54039":1,"54040":2,"54041":1,"54042":2,"54043":1,"54044":2,"54045":1,"54046":2,"54047":1,"54048":2,"54049":2,"54050":2,"54051":1,"54052":2,"54053":1,"54054":1,"54055":2,"54056":1,"54057":1,"54058":2,"54059":1,"54060":2,"54061":2,"54062":2,"54063":1,"54064":1,"54065":1,"54066":2,"54067":1,"54068":1,"54069":2,"54070":1,"54071":2,"54072":2,"54073":1,"54074":1,"54075":1,"54076":1,"54077":2,"54078":2,"54079":1,"54080":1,"54081":1,"54082":1,"54083":1,"54084":2,"54085":1,"54086":2,"54087":1,"54088":1,"54089":2,"54090":2,"54091":2,"54092":1,"54093":1,"54094":2,"54095":2,"54096":2,"54097":1,"54098":1,"54099":2,"54100":1,"54101":1,"54102":2,"54103":1,"54104":2,"54105":2,"54106":1,"54107":2,"54108":2,"54109":2,"54110":2,"54111":1,"54112":2,"54113":2,"54114":2,"54115":1,"54116":1,"54117":2,"54118":1,"54119":1,"54120":2,"54121":2,"54122":1,"54123":2,"54124":2,"54125":2,"54126":1,"54127":2,"54128":2,"54129":1,"54130":1,"54131":1,"54132":1,"54133":1,"54134":2,"54135":2,"54136":2,"54137":2,"54138":1,"54139":2,"54140":2,"54141":1,"54142":2,"54143":1,"54144":2,"54145":2,"54146":2,"54147":2,"54148":1,"54149":2,"54150":1,"54151":1,"54152":2,"54153":1,"54154":2,"54155":2,"54156":1,"54157":2,"54158":1,"54159":1,"54160":2,"54161":1,"54162":2,"54163":1,"54164":2,"54165":1,"54166":2,"54167":1,"54168":1,"54169":1,"54170":2,"54171":2,"54172":2,"54173":1,"54174":2,"54175":1,"54176":2,"54177":2,"54178":2,"54179":1,"54180":1,"54181":2,"54182":2,"54183":2,"54184":1,"54185":2,"54186":1,"54187":1,"54188":2,"54189":1,"54190":1,"54191":1,"54192":1,"54193":1,"54194":2,"54195":2,"54196":2,"54197":2,"54198":1,"54199":2,"54200":1,"54201":1,"54202":1,"54203":1,"54204":2,"54205":1,"54206":2,"54207":1,"54208":1,"54209":2,"54210":2,"54211":2,"54212":1,"54213":1,"54214":1,"54215":1,"54216":1,"54217":2,"54218":2,"54219":2,"54220":2,"54221":1,"54222":1,"54223":1,"54224":1,"54225":2,"54226":2,"54227":1,"54228":1,"54229":1,"54230":1,"54231":2,"54232":1,"54233":2,"54234":1,"54235":2,"54236":2,"54237":2,"54238":2,"54239":1,"54240":1,"54241":1,"54242":1,"54243":1,"54244":1,"54245":2,"54246":2,"54247":1,"54248":2,"54249":1,"54250":2,"54251":1,"54252":1,"54253":1,"54254":2,"54255":1,"54256":1,"54257":2,"54258":1,"54259":2,"54260":1,"54261":1,"54262":1,"54263":2,"54264":1,"54265":2,"54266":1,"54267":1,"54268":2,"54269":2,"54270":1,"54271":1,"54272":1,"54273":2,"54274":1,"54275":1,"54276":2,"54277":1,"54278":1,"54279":1,"54280":2,"54281":2,"54282":1,"54283":2,"54284":2,"54285":2,"54286":2,"54287":2,"54288":2,"54289":1,"54290":2,"54291":2,"54292":1,"54293":2,"54294":2,"54295":2,"54296":2,"54297":2,"54298":2,"54299":1,"54300":2,"54301":1,"54302":1,"54303":2,"54304":1,"54305":2,"54306":1,"54307":2,"54308":1,"54309":1,"54310":1,"54311":2,"54312":2,"54313":1,"54314":2,"54315":1,"54316":2,"54317":2,"54318":2,"54319":1,"54320":2,"54321":2,"54322":2,"54323":2,"54324":2,"54325":1,"54326":2,"54327":2,"54328":1,"54329":2,"54330":2,"54331":2,"54332":2,"54333":1,"54334":2,"54335":2,"54336":1,"54337":1,"54338":2,"54339":1,"54340":1,"54341":2,"54342":2,"54343":2,"54344":2,"54345":1,"54346":2,"54347":2,"54348":2,"54349":1,"54350":1,"54351":1,"54352":2,"54353":1,"54354":1,"54355":2,"54356":1,"54357":1,"54358":1,"54359":2,"54360":1,"54361":1,"54362":1,"54363":2,"54364":2,"54365":2,"54366":2,"54367":1,"54368":1,"54369":2,"54370":2,"54371":1,"54372":2,"54373":1,"54374":2,"54375":2,"54376":1,"54377":2,"54378":2,"54379":1,"54380":1,"54381":2,"54382":1,"54383":1,"54384":1,"54385":1,"54386":2,"54387":2,"54388":2,"54389":1,"54390":2,"54391":1,"54392":2,"54393":2,"54394":2,"54395":1,"54396":1,"54397":1,"54398":2,"54399":1,"54400":2,"54401":1,"54402":1,"54403":2,"54404":1,"54405":2,"54406":2,"54407":1,"54408":2,"54409":2,"54410":2,"54411":2,"54412":2,"54413":2,"54414":1,"54415":2,"54416":2,"54417":2,"54418":2,"54419":1,"54420":1,"54421":2,"54422":1,"54423":2,"54424":2,"54425":1,"54426":1,"54427":1,"54428":1,"54429":1,"54430":2,"54431":1,"54432":1,"54433":1,"54434":2,"54435":2,"54436":2,"54437":1,"54438":2,"54439":1,"54440":1,"54441":1,"54442":1,"54443":1,"54444":1,"54445":2,"54446":1,"54447":2,"54448":2,"54449":1,"54450":2,"54451":1,"54452":1,"54453":1,"54454":2,"54455":1,"54456":1,"54457":2,"54458":1,"54459":2,"54460":2,"54461":1,"54462":2,"54463":1,"54464":1,"54465":1,"54466":2,"54467":1,"54468":2,"54469":1,"54470":2,"54471":2,"54472":2,"54473":1,"54474":1,"54475":2,"54476":2,"54477":1,"54478":1,"54479":1,"54480":2,"54481":1,"54482":1,"54483":2,"54484":2,"54485":1,"54486":1,"54487":2,"54488":1,"54489":1,"54490":1,"54491":2,"54492":2,"54493":1,"54494":1,"54495":1,"54496":1,"54497":1,"54498":1,"54499":2,"54500":2,"54501":1,"54502":1,"54503":2,"54504":2,"54505":1,"54506":1,"54507":1,"54508":1,"54509":2,"54510":1,"54511":2,"54512":2,"54513":1,"54514":1,"54515":1,"54516":1,"54517":2,"54518":1,"54519":2,"54520":1,"54521":2,"54522":2,"54523":1,"54524":1,"54525":2,"54526":2,"54527":1,"54528":1,"54529":2,"54530":1,"54531":1,"54532":1,"54533":1,"54534":2,"54535":1,"54536":2,"54537":2,"54538":1,"54539":1,"54540":1,"54541":1,"54542":2,"54543":1,"54544":1,"54545":1,"54546":1,"54547":1,"54548":2,"54549":1,"54550":1,"54551":1,"54552":2,"54553":2,"54554":2,"54555":1,"54556":2,"54557":1,"54558":1,"54559":2,"54560":2,"54561":1,"54562":2,"54563":1,"54564":1,"54565":2,"54566":1,"54567":2,"54568":2,"54569":2,"54570":2,"54571":1,"54572":1,"54573":2,"54574":2,"54575":1,"54576":2,"54577":1,"54578":1,"54579":1,"54580":2,"54581":2,"54582":2,"54583":1,"54584":1,"54585":2,"54586":2,"54587":1,"54588":2,"54589":2,"54590":1,"54591":2,"54592":2,"54593":2,"54594":1,"54595":2,"54596":1,"54597":2,"54598":2,"54599":1,"54600":2,"54601":1,"54602":2,"54603":2,"54604":2,"54605":1,"54606":1,"54607":2,"54608":1,"54609":1,"54610":1,"54611":2,"54612":1,"54613":1,"54614":1,"54615":2,"54616":2,"54617":2,"54618":2,"54619":1,"54620":2,"54621":1,"54622":2,"54623":2,"54624":2,"54625":1,"54626":1,"54627":1,"54628":2,"54629":2,"54630":2,"54631":1,"54632":2,"54633":2,"54634":2,"54635":1,"54636":1,"54637":2,"54638":2,"54639":1,"54640":1,"54641":2,"54642":2,"54643":1,"54644":1,"54645":1,"54646":2,"54647":1,"54648":1,"54649":2,"54650":1,"54651":1,"54652":2,"54653":2,"54654":1,"54655":2,"54656":1,"54657":1,"54658":2,"54659":2,"54660":1,"54661":2,"54662":2,"54663":2,"54664":1,"54665":2,"54666":1,"54667":2,"54668":1,"54669":2,"54670":2,"54671":1,"54672":1,"54673":2,"54674":2,"54675":2,"54676":1,"54677":1,"54678":1,"54679":1,"54680":1,"54681":2,"54682":2,"54683":1,"54684":2,"54685":1,"54686":1,"54687":1,"54688":1,"54689":2,"54690":2,"54691":2,"54692":2,"54693":2,"54694":2,"54695":1,"54696":2,"54697":2,"54698":1,"54699":2,"54700":2,"54701":2,"54702":1,"54703":1,"54704":2,"54705":1,"54706":2,"54707":2,"54708":1,"54709":2,"54710":1,"54711":1,"54712":1,"54713":1,"54714":1,"54715":2,"54716":1,"54717":2,"54718":1,"54719":1,"54720":1,"54721":1,"54722":2,"54723":1,"54724":1,"54725":1,"54726":2,"54727":2,"54728":1,"54729":2,"54730":1,"54731":1,"54732":1,"54733":1,"54734":2,"54735":2,"54736":2,"54737":1,"54738":1,"54739":1,"54740":2,"54741":2,"54742":2,"54743":2,"54744":1,"54745":1,"54746":1,"54747":2,"54748":1,"54749":1,"54750":1,"54751":2,"54752":2,"54753":1,"54754":1,"54755":1,"54756":2,"54757":1,"54758":2,"54759":1,"54760":2,"54761":1,"54762":1,"54763":2,"54764":1,"54765":1,"54766":1,"54767":1,"54768":2,"54769":1,"54770":1,"54771":1,"54772":1,"54773":1,"54774":2,"54775":1,"54776":2,"54777":1,"54778":2,"54779":2,"54780":1,"54781":2,"54782":2,"54783":1,"54784":1,"54785":1,"54786":1,"54787":2,"54788":1,"54789":2,"54790":2,"54791":2,"54792":2,"54793":2,"54794":1,"54795":2,"54796":1,"54797":2,"54798":2,"54799":2,"54800":1,"54801":1,"54802":1,"54803":1,"54804":2,"54805":1,"54806":2,"54807":2,"54808":2,"54809":1,"54810":1,"54811":1,"54812":2,"54813":2,"54814":2,"54815":1,"54816":1,"54817":1,"54818":2,"54819":2,"54820":1,"54821":1,"54822":1,"54823":1,"54824":1,"54825":1,"54826":2,"54827":2,"54828":1,"54829":1,"54830":2,"54831":1,"54832":1,"54833":1,"54834":2,"54835":1,"54836":1,"54837":1,"54838":1,"54839":2,"54840":1,"54841":1,"54842":2,"54843":1,"54844":1,"54845":2,"54846":2,"54847":2,"54848":1,"54849":2,"54850":1,"54851":2,"54852":1,"54853":1,"54854":2,"54855":2,"54856":2,"54857":1,"54858":1,"54859":2,"54860":2,"54861":2,"54862":1,"54863":1,"54864":2,"54865":2,"54866":1,"54867":2,"54868":2,"54869":2,"54870":2,"54871":1,"54872":1,"54873":2,"54874":2,"54875":2,"54876":2,"54877":1,"54878":1,"54879":2,"54880":2,"54881":1,"54882":1,"54883":2,"54884":1,"54885":2,"54886":1,"54887":2,"54888":1,"54889":2,"54890":1,"54891":2,"54892":1,"54893":1,"54894":1,"54895":2,"54896":2,"54897":2,"54898":1,"54899":1,"54900":2,"54901":1,"54902":2,"54903":1,"54904":2,"54905":1,"54906":2,"54907":1,"54908":2,"54909":2,"54910":1,"54911":1,"54912":2,"54913":1,"54914":2,"54915":2,"54916":1,"54917":1,"54918":2,"54919":2,"54920":1,"54921":2,"54922":2,"54923":2,"54924":2,"54925":2,"54926":1,"54927":1,"54928":2,"54929":2,"54930":2,"54931":1,"54932":1,"54933":1,"54934":1,"54935":2,"54936":1,"54937":1,"54938":2,"54939":2,"54940":1,"54941":2,"54942":1,"54943":2,"54944":2,"54945":2,"54946":1,"54947":2,"54948":2,"54949":1,"54950":2,"54951":2,"54952":2,"54953":2,"54954":2,"54955":2,"54956":2,"54957":2,"54958":2,"54959":1,"54960":2,"54961":1,"54962":1,"54963":1,"54964":1,"54965":1,"54966":2,"54967":2,"54968":2,"54969":1,"54970":2,"54971":2,"54972":2,"54973":1,"54974":2,"54975":2,"54976":2,"54977":1,"54978":1,"54979":1,"54980":1,"54981":2,"54982":2,"54983":1,"54984":1,"54985":1,"54986":1,"54987":1,"54988":1,"54989":2,"54990":2,"54991":1,"54992":2,"54993":1,"54994":2,"54995":1,"54996":2,"54997":2,"54998":1,"54999":1,"55000":2,"55001":2,"55002":2,"55003":1,"55004":1,"55005":1,"55006":1,"55007":1,"55008":2,"55009":1,"55010":1,"55011":1,"55012":1,"55013":1,"55014":1,"55015":1,"55016":1,"55017":1,"55018":1,"55019":1,"55020":2,"55021":2,"55022":2,"55023":1,"55024":1,"55025":2,"55026":1,"55027":2,"55028":1,"55029":2,"55030":2,"55031":1,"55032":2,"55033":2,"55034":2,"55035":1,"55036":1,"55037":1,"55038":2,"55039":1,"55040":1,"55041":2,"55042":2,"55043":1,"55044":1,"55045":2,"55046":2,"55047":1,"55048":1,"55049":2,"55050":1,"55051":1,"55052":2,"55053":2,"55054":2,"55055":2,"55056":2,"55057":1,"55058":1,"55059":2,"55060":1,"55061":1,"55062":2,"55063":1,"55064":1,"55065":1,"55066":1,"55067":1,"55068":2,"55069":2,"55070":2,"55071":2,"55072":1,"55073":2,"55074":1,"55075":1,"55076":1,"55077":2,"55078":2,"55079":1,"55080":1,"55081":1,"55082":2,"55083":1,"55084":2,"55085":2,"55086":2,"55087":1,"55088":2,"55089":2,"55090":2,"55091":2,"55092":1,"55093":1,"55094":1,"55095":2,"55096":1,"55097":1,"55098":2,"55099":2,"55100":1,"55101":1,"55102":2,"55103":1,"55104":2,"55105":2,"55106":1,"55107":2,"55108":1,"55109":1,"55110":1,"55111":1,"55112":2,"55113":1,"55114":2,"55115":1,"55116":2,"55117":2,"55118":1,"55119":1,"55120":2,"55121":1,"55122":2,"55123":1,"55124":2,"55125":1,"55126":1,"55127":1,"55128":2,"55129":1,"55130":1,"55131":2,"55132":1,"55133":2,"55134":2,"55135":1,"55136":2,"55137":1,"55138":2,"55139":1,"55140":1,"55141":1,"55142":1,"55143":1,"55144":1,"55145":1,"55146":2,"55147":2,"55148":1,"55149":2,"55150":2,"55151":1,"55152":2,"55153":2,"55154":2,"55155":1,"55156":2,"55157":2,"55158":2,"55159":2,"55160":1,"55161":1,"55162":2,"55163":2,"55164":2,"55165":1,"55166":2,"55167":1,"55168":2,"55169":2,"55170":1,"55171":2,"55172":1,"55173":1,"55174":2,"55175":2,"55176":2,"55177":1,"55178":1,"55179":2,"55180":1,"55181":1,"55182":2,"55183":1,"55184":2,"55185":1,"55186":2,"55187":1,"55188":1,"55189":2,"55190":2,"55191":1,"55192":2,"55193":2,"55194":2,"55195":1,"55196":2,"55197":1,"55198":1,"55199":2,"55200":1,"55201":1,"55202":2,"55203":2,"55204":2,"55205":1,"55206":1,"55207":2,"55208":2,"55209":1,"55210":2,"55211":1,"55212":1,"55213":1,"55214":2,"55215":2,"55216":2,"55217":1,"55218":2,"55219":1,"55220":1,"55221":2,"55222":1,"55223":2,"55224":2,"55225":2,"55226":2,"55227":1,"55228":1,"55229":1,"55230":1,"55231":2,"55232":1,"55233":2,"55234":2,"55235":2,"55236":1,"55237":1,"55238":2,"55239":2,"55240":2,"55241":1,"55242":2,"55243":2,"55244":2,"55245":2,"55246":1,"55247":1,"55248":2,"55249":2,"55250":2,"55251":1,"55252":1,"55253":1,"55254":1,"55255":2,"55256":2,"55257":2,"55258":2,"55259":2,"55260":1,"55261":1,"55262":1,"55263":1,"55264":2,"55265":1,"55266":1,"55267":1,"55268":1,"55269":1,"55270":1,"55271":1,"55272":2,"55273":1,"55274":1,"55275":2,"55276":2,"55277":2,"55278":2,"55279":1,"55280":1,"55281":2,"55282":1,"55283":2,"55284":1,"55285":2,"55286":2,"55287":2,"55288":1,"55289":1,"55290":1,"55291":2,"55292":1,"55293":2,"55294":2,"55295":1,"55296":2,"55297":1,"55298":2,"55299":2,"55300":1,"55301":2,"55302":2,"55303":2,"55304":1,"55305":2,"55306":1,"55307":1,"55308":1,"55309":1,"55310":1,"55311":2,"55312":1,"55313":1,"55314":1,"55315":1,"55316":1,"55317":2,"55318":2,"55319":2,"55320":1,"55321":2,"55322":2,"55323":1,"55324":1,"55325":1,"55326":1,"55327":2,"55328":2,"55329":1,"55330":1,"55331":2,"55332":1,"55333":2,"55334":1,"55335":2,"55336":2,"55337":1,"55338":1,"55339":2,"55340":1,"55341":1,"55342":2,"55343":2,"55344":1,"55345":1,"55346":2,"55347":2,"55348":2,"55349":1,"55350":1,"55351":2,"55352":1,"55353":1,"55354":1,"55355":1,"55356":2,"55357":1,"55358":2,"55359":1,"55360":2,"55361":2,"55362":2,"55363":1,"55364":1,"55365":1,"55366":2,"55367":2,"55368":2,"55369":2,"55370":2,"55371":2,"55372":2,"55373":2,"55374":1,"55375":2,"55376":1,"55377":2,"55378":1,"55379":2,"55380":2,"55381":1,"55382":2,"55383":2,"55384":2,"55385":2,"55386":1,"55387":1,"55388":1,"55389":2,"55390":1,"55391":2,"55392":2,"55393":2,"55394":2,"55395":1,"55396":2,"55397":1,"55398":2,"55399":2,"55400":1,"55401":1,"55402":2,"55403":2,"55404":2,"55405":1,"55406":1,"55407":1,"55408":2,"55409":1,"55410":2,"55411":2,"55412":2,"55413":2,"55414":1,"55415":2,"55416":1,"55417":1,"55418":1,"55419":1,"55420":1,"55421":1,"55422":2,"55423":1,"55424":1,"55425":1,"55426":1,"55427":1,"55428":1,"55429":2,"55430":1,"55431":1,"55432":2,"55433":2,"55434":2,"55435":1,"55436":1,"55437":2,"55438":1,"55439":1,"55440":1,"55441":2,"55442":1,"55443":2,"55444":1,"55445":1,"55446":2,"55447":2,"55448":2,"55449":1,"55450":2,"55451":1,"55452":1,"55453":2,"55454":2,"55455":2,"55456":1,"55457":2,"55458":2,"55459":1,"55460":1,"55461":2,"55462":1,"55463":2,"55464":2,"55465":1,"55466":2,"55467":1,"55468":1,"55469":2,"55470":2,"55471":1,"55472":2,"55473":2,"55474":2,"55475":1,"55476":1,"55477":1,"55478":1,"55479":1,"55480":1,"55481":2,"55482":1,"55483":2,"55484":2,"55485":1,"55486":2,"55487":2,"55488":2,"55489":1,"55490":2,"55491":1,"55492":2,"55493":1,"55494":1,"55495":1,"55496":1,"55497":1,"55498":1,"55499":2,"55500":1,"55501":1,"55502":1,"55503":2,"55504":1,"55505":1,"55506":1,"55507":2,"55508":1,"55509":1,"55510":1,"55511":1,"55512":2,"55513":2,"55514":2,"55515":1,"55516":2,"55517":1,"55518":2,"55519":1,"55520":2,"55521":2,"55522":2,"55523":1,"55524":2,"55525":1,"55526":2,"55527":1,"55528":1,"55529":2,"55530":1,"55531":2,"55532":2,"55533":1,"55534":2,"55535":1,"55536":2,"55537":2,"55538":2,"55539":1,"55540":2,"55541":1,"55542":1,"55543":1,"55544":1,"55545":2,"55546":2,"55547":2,"55548":2,"55549":1,"55550":2,"55551":1,"55552":1,"55553":1,"55554":2,"55555":2,"55556":2,"55557":1,"55558":2,"55559":2,"55560":2,"55561":2,"55562":2,"55563":2,"55564":2,"55565":2,"55566":2,"55567":2,"55568":2,"55569":1,"55570":1,"55571":1,"55572":1,"55573":2,"55574":2,"55575":1,"55576":1,"55577":2,"55578":1,"55579":1,"55580":1,"55581":1,"55582":1,"55583":2,"55584":2,"55585":2,"55586":2,"55587":2,"55588":1,"55589":2,"55590":1,"55591":2,"55592":2,"55593":2,"55594":1,"55595":2,"55596":2,"55597":1,"55598":2,"55599":2,"55600":1,"55601":2,"55602":2,"55603":1,"55604":1,"55605":1,"55606":2,"55607":2,"55608":1,"55609":2,"55610":1,"55611":2,"55612":1,"55613":1,"55614":2,"55615":1,"55616":1,"55617":2,"55618":1,"55619":2,"55620":2,"55621":2,"55622":1,"55623":2,"55624":2,"55625":2,"55626":1,"55627":2,"55628":2,"55629":1,"55630":2,"55631":1,"55632":1,"55633":1,"55634":2,"55635":2,"55636":1,"55637":1,"55638":1,"55639":1,"55640":2,"55641":1,"55642":2,"55643":2,"55644":2,"55645":1,"55646":2,"55647":2,"55648":1,"55649":2,"55650":2,"55651":2,"55652":2,"55653":2,"55654":1,"55655":1,"55656":2,"55657":1,"55658":1,"55659":2,"55660":1,"55661":1,"55662":2,"55663":1,"55664":1,"55665":2,"55666":2,"55667":1,"55668":2,"55669":2,"55670":1,"55671":2,"55672":1,"55673":1,"55674":2,"55675":2,"55676":1,"55677":1,"55678":2,"55679":1,"55680":1,"55681":2,"55682":2,"55683":2,"55684":1,"55685":2,"55686":2,"55687":2,"55688":2,"55689":1,"55690":2,"55691":1,"55692":2,"55693":1,"55694":2,"55695":1,"55696":2,"55697":1,"55698":2,"55699":2,"55700":1,"55701":2,"55702":1,"55703":2,"55704":2,"55705":2,"55706":1,"55707":1,"55708":2,"55709":1,"55710":1,"55711":2,"55712":2,"55713":2,"55714":1,"55715":2,"55716":1,"55717":2,"55718":1,"55719":2,"55720":2,"55721":1,"55722":1,"55723":1,"55724":2,"55725":2,"55726":1,"55727":2,"55728":2,"55729":1,"55730":1,"55731":2,"55732":1,"55733":2,"55734":2,"55735":2,"55736":1,"55737":1,"55738":1,"55739":1,"55740":2,"55741":1,"55742":2,"55743":1,"55744":2,"55745":1,"55746":2,"55747":2,"55748":1,"55749":1,"55750":1,"55751":1,"55752":2,"55753":1,"55754":2,"55755":1,"55756":2,"55757":2,"55758":1,"55759":2,"55760":2,"55761":1,"55762":2,"55763":1,"55764":1,"55765":1,"55766":2,"55767":1,"55768":2,"55769":1,"55770":2,"55771":1,"55772":2,"55773":2,"55774":2,"55775":1,"55776":2,"55777":1,"55778":2,"55779":1,"55780":1,"55781":2,"55782":2,"55783":2,"55784":1,"55785":2,"55786":2,"55787":1,"55788":1,"55789":2,"55790":2,"55791":1,"55792":1,"55793":2,"55794":1,"55795":2,"55796":2,"55797":1,"55798":2,"55799":2,"55800":1,"55801":2,"55802":1,"55803":1,"55804":2,"55805":1,"55806":2,"55807":2,"55808":1,"55809":2,"55810":2,"55811":2,"55812":1,"55813":2,"55814":1,"55815":2,"55816":1,"55817":1,"55818":2,"55819":1,"55820":1,"55821":1,"55822":1,"55823":2,"55824":2,"55825":1,"55826":1,"55827":2,"55828":2,"55829":2,"55830":2,"55831":1,"55832":1,"55833":2,"55834":1,"55835":1,"55836":1,"55837":1,"55838":2,"55839":2,"55840":2,"55841":1,"55842":1,"55843":2,"55844":1,"55845":1,"55846":1,"55847":1,"55848":2,"55849":1,"55850":2,"55851":1,"55852":1,"55853":2,"55854":2,"55855":1,"55856":1,"55857":2,"55858":1,"55859":1,"55860":1,"55861":2,"55862":2,"55863":1,"55864":1,"55865":2,"55866":1,"55867":1,"55868":2,"55869":1,"55870":2,"55871":1,"55872":2,"55873":2,"55874":1,"55875":1,"55876":2,"55877":1,"55878":2,"55879":2,"55880":1,"55881":2,"55882":1,"55883":2,"55884":2,"55885":1,"55886":2,"55887":1,"55888":1,"55889":2,"55890":1,"55891":2,"55892":1,"55893":2,"55894":1,"55895":2,"55896":2,"55897":1,"55898":2,"55899":2,"55900":1,"55901":2,"55902":2,"55903":2,"55904":2,"55905":1,"55906":2,"55907":2,"55908":1,"55909":1,"55910":1,"55911":1,"55912":2,"55913":2,"55914":1,"55915":1,"55916":1,"55917":1,"55918":2,"55919":1,"55920":2,"55921":1,"55922":1,"55923":1,"55924":2,"55925":1,"55926":1,"55927":2,"55928":1,"55929":2,"55930":2,"55931":2,"55932":1,"55933":1,"55934":2,"55935":2,"55936":1,"55937":2,"55938":2,"55939":2,"55940":1,"55941":2,"55942":1,"55943":1,"55944":2,"55945":1,"55946":2,"55947":1,"55948":2,"55949":2,"55950":2,"55951":2,"55952":2,"55953":2,"55954":2,"55955":1,"55956":2,"55957":1,"55958":2,"55959":1,"55960":1,"55961":1,"55962":2,"55963":1,"55964":2,"55965":1,"55966":1,"55967":2,"55968":1,"55969":1,"55970":2,"55971":1,"55972":2,"55973":2,"55974":1,"55975":2,"55976":2,"55977":1,"55978":1,"55979":1,"55980":2,"55981":1,"55982":1,"55983":1,"55984":1,"55985":1,"55986":1,"55987":1,"55988":1,"55989":2,"55990":2,"55991":1,"55992":1,"55993":1,"55994":2,"55995":2,"55996":2,"55997":1,"55998":2,"55999":1,"56000":1,"56001":1,"56002":1,"56003":1,"56004":1,"56005":2,"56006":1,"56007":2,"56008":2,"56009":2,"56010":1,"56011":2,"56012":2,"56013":1,"56014":1,"56015":1,"56016":2,"56017":1,"56018":2,"56019":1,"56020":2,"56021":2,"56022":1,"56023":1,"56024":1,"56025":1,"56026":1,"56027":1,"56028":2,"56029":1,"56030":1,"56031":1,"56032":1,"56033":2,"56034":2,"56035":1,"56036":2,"56037":2,"56038":2,"56039":2,"56040":1,"56041":1,"56042":2,"56043":1,"56044":1,"56045":2,"56046":2,"56047":2,"56048":2,"56049":1,"56050":2,"56051":2,"56052":2,"56053":2,"56054":1,"56055":1,"56056":1,"56057":2,"56058":1,"56059":1,"56060":2,"56061":2,"56062":2,"56063":1,"56064":1,"56065":2,"56066":1,"56067":2,"56068":1,"56069":2,"56070":1,"56071":2,"56072":1,"56073":2,"56074":2,"56075":2,"56076":1,"56077":1,"56078":2,"56079":2,"56080":2,"56081":1,"56082":1,"56083":1,"56084":2,"56085":1,"56086":2,"56087":1,"56088":1,"56089":2,"56090":1,"56091":1,"56092":2,"56093":2,"56094":1,"56095":2,"56096":2,"56097":1,"56098":2,"56099":1,"56100":2,"56101":2,"56102":2,"56103":1,"56104":1,"56105":1,"56106":1,"56107":2,"56108":1,"56109":2,"56110":1,"56111":2,"56112":2,"56113":1,"56114":1,"56115":2,"56116":2,"56117":2,"56118":2,"56119":2,"56120":2,"56121":2,"56122":2,"56123":2,"56124":2,"56125":2,"56126":1,"56127":1,"56128":1,"56129":2,"56130":2,"56131":2,"56132":1,"56133":2,"56134":2,"56135":1,"56136":1,"56137":1,"56138":2,"56139":2,"56140":1,"56141":2,"56142":2,"56143":1,"56144":2,"56145":1,"56146":1,"56147":2,"56148":2,"56149":1,"56150":2,"56151":1,"56152":2,"56153":1,"56154":2,"56155":2,"56156":2,"56157":2,"56158":2,"56159":2,"56160":2,"56161":2,"56162":1,"56163":2,"56164":1,"56165":2,"56166":1,"56167":2,"56168":1,"56169":1,"56170":2,"56171":1,"56172":2,"56173":1,"56174":1,"56175":2,"56176":2,"56177":1,"56178":1,"56179":1,"56180":1,"56181":1,"56182":2,"56183":1,"56184":1,"56185":1,"56186":1,"56187":2,"56188":2,"56189":1,"56190":1,"56191":1,"56192":1,"56193":1,"56194":2,"56195":1,"56196":2,"56197":2,"56198":1,"56199":1,"56200":2,"56201":2,"56202":1,"56203":2,"56204":2,"56205":2,"56206":2,"56207":1,"56208":1,"56209":2,"56210":2,"56211":1,"56212":2,"56213":1,"56214":2,"56215":2,"56216":1,"56217":2,"56218":1,"56219":2,"56220":2,"56221":2,"56222":1,"56223":2,"56224":2,"56225":2,"56226":2,"56227":1,"56228":1,"56229":1,"56230":2,"56231":2,"56232":2,"56233":2,"56234":2,"56235":1,"56236":2,"56237":1,"56238":2,"56239":2,"56240":2,"56241":2,"56242":2,"56243":2,"56244":1,"56245":1,"56246":2,"56247":2,"56248":1,"56249":2,"56250":1,"56251":1,"56252":1,"56253":1,"56254":2,"56255":1,"56256":1,"56257":1,"56258":1,"56259":2,"56260":2,"56261":1,"56262":2,"56263":1,"56264":2,"56265":1,"56266":1,"56267":2,"56268":2,"56269":1,"56270":2,"56271":2,"56272":1,"56273":1,"56274":2,"56275":2,"56276":1,"56277":2,"56278":2,"56279":2,"56280":1,"56281":2,"56282":2,"56283":2,"56284":1,"56285":1,"56286":1,"56287":2,"56288":1,"56289":2,"56290":2,"56291":1,"56292":2,"56293":1,"56294":1,"56295":2,"56296":2,"56297":2,"56298":1,"56299":1,"56300":1,"56301":1,"56302":2,"56303":1,"56304":2,"56305":2,"56306":1,"56307":2,"56308":1,"56309":1,"56310":1,"56311":1,"56312":1,"56313":2,"56314":1,"56315":2,"56316":1,"56317":2,"56318":1,"56319":1,"56320":2,"56321":1,"56322":2,"56323":2,"56324":2,"56325":2,"56326":2,"56327":1,"56328":2,"56329":1,"56330":1,"56331":1,"56332":2,"56333":2,"56334":1,"56335":1,"56336":2,"56337":2,"56338":2,"56339":1,"56340":2,"56341":2,"56342":1,"56343":1,"56344":2,"56345":1,"56346":2,"56347":1,"56348":2,"56349":1,"56350":2,"56351":1,"56352":1,"56353":2,"56354":2,"56355":2,"56356":1,"56357":2,"56358":2,"56359":1,"56360":2,"56361":2,"56362":1,"56363":1,"56364":1,"56365":2,"56366":1,"56367":2,"56368":2,"56369":1,"56370":2,"56371":1,"56372":1,"56373":1,"56374":2,"56375":1,"56376":1,"56377":2,"56378":1,"56379":2,"56380":1,"56381":2,"56382":2,"56383":2,"56384":2,"56385":2,"56386":1,"56387":2,"56388":1,"56389":1,"56390":2,"56391":1,"56392":2,"56393":1,"56394":1,"56395":1,"56396":2,"56397":1,"56398":2,"56399":2,"56400":1,"56401":1,"56402":1,"56403":2,"56404":2,"56405":2,"56406":2,"56407":2,"56408":1,"56409":2,"56410":2,"56411":2,"56412":2,"56413":1,"56414":2,"56415":2,"56416":2,"56417":1,"56418":1,"56419":2,"56420":1,"56421":1,"56422":2,"56423":1,"56424":1,"56425":1,"56426":1,"56427":1,"56428":2,"56429":1,"56430":2,"56431":1,"56432":1,"56433":1,"56434":2,"56435":1,"56436":2,"56437":2,"56438":2,"56439":1,"56440":1,"56441":2,"56442":2,"56443":1,"56444":2,"56445":1,"56446":2,"56447":2,"56448":1,"56449":1,"56450":2,"56451":1,"56452":2,"56453":2,"56454":1,"56455":2,"56456":2,"56457":1,"56458":2,"56459":2,"56460":2,"56461":1,"56462":2,"56463":1,"56464":2,"56465":2,"56466":1,"56467":1,"56468":2,"56469":1,"56470":2,"56471":2,"56472":1,"56473":2,"56474":1,"56475":1,"56476":2,"56477":2,"56478":2,"56479":2,"56480":2,"56481":2,"56482":2,"56483":2,"56484":2,"56485":2,"56486":1,"56487":2,"56488":2,"56489":2,"56490":1,"56491":1,"56492":2,"56493":1,"56494":1,"56495":2,"56496":2,"56497":1,"56498":2,"56499":1,"56500":2,"56501":1,"56502":2,"56503":1,"56504":1,"56505":2,"56506":1,"56507":2,"56508":1,"56509":1,"56510":1,"56511":2,"56512":1,"56513":1,"56514":2,"56515":1,"56516":2,"56517":2,"56518":1,"56519":2,"56520":2,"56521":1,"56522":1,"56523":2,"56524":1,"56525":2,"56526":2,"56527":1,"56528":1,"56529":1,"56530":2,"56531":1,"56532":1,"56533":2,"56534":2,"56535":1,"56536":2,"56537":2,"56538":2,"56539":1,"56540":1,"56541":1,"56542":2,"56543":2,"56544":1,"56545":1,"56546":2,"56547":2,"56548":2,"56549":2,"56550":2,"56551":1,"56552":2,"56553":2,"56554":1,"56555":1,"56556":2,"56557":2,"56558":2,"56559":2,"56560":2,"56561":1,"56562":1,"56563":1,"56564":2,"56565":1,"56566":1,"56567":2,"56568":2,"56569":1,"56570":1,"56571":2,"56572":1,"56573":1,"56574":2,"56575":2,"56576":1,"56577":2,"56578":2,"56579":2,"56580":2,"56581":1,"56582":1,"56583":1,"56584":1,"56585":2,"56586":1,"56587":1,"56588":2,"56589":1,"56590":1,"56591":1,"56592":1,"56593":1,"56594":2,"56595":1,"56596":1,"56597":1,"56598":1,"56599":2,"56600":1,"56601":2,"56602":1,"56603":2,"56604":1,"56605":1,"56606":1,"56607":2,"56608":2,"56609":2,"56610":2,"56611":1,"56612":1,"56613":1,"56614":1,"56615":1,"56616":1,"56617":1,"56618":2,"56619":1,"56620":2,"56621":1,"56622":2,"56623":2,"56624":2,"56625":2,"56626":2,"56627":2,"56628":1,"56629":2,"56630":1,"56631":1,"56632":1,"56633":1,"56634":1,"56635":1,"56636":1,"56637":2,"56638":1,"56639":1,"56640":1,"56641":1,"56642":2,"56643":1,"56644":1,"56645":1,"56646":1,"56647":2,"56648":1,"56649":2,"56650":1,"56651":1,"56652":1,"56653":1,"56654":1,"56655":1,"56656":1,"56657":1,"56658":1,"56659":1,"56660":2,"56661":1,"56662":1,"56663":2,"56664":2,"56665":2,"56666":1,"56667":1,"56668":2,"56669":1,"56670":1,"56671":1,"56672":2,"56673":1,"56674":2,"56675":2,"56676":1,"56677":2,"56678":1,"56679":2,"56680":2,"56681":2,"56682":1,"56683":1,"56684":1,"56685":2,"56686":2,"56687":2,"56688":2,"56689":1,"56690":2,"56691":2,"56692":2,"56693":2,"56694":2,"56695":2,"56696":1,"56697":2,"56698":2,"56699":1,"56700":1,"56701":1,"56702":2,"56703":2,"56704":1,"56705":2,"56706":2,"56707":2,"56708":1,"56709":1,"56710":1,"56711":1,"56712":2,"56713":2,"56714":1,"56715":1,"56716":1,"56717":1,"56718":1,"56719":1,"56720":1,"56721":2,"56722":2,"56723":2,"56724":2,"56725":1,"56726":1,"56727":1,"56728":2,"56729":1,"56730":2,"56731":2,"56732":2,"56733":2,"56734":2,"56735":1,"56736":2,"56737":1,"56738":2,"56739":2,"56740":2,"56741":1,"56742":2,"56743":2,"56744":2,"56745":2,"56746":1,"56747":1,"56748":2,"56749":2,"56750":2,"56751":1,"56752":2,"56753":1,"56754":2,"56755":1,"56756":2,"56757":1,"56758":2,"56759":1,"56760":2,"56761":1,"56762":1,"56763":2,"56764":1,"56765":2,"56766":1,"56767":2,"56768":2,"56769":2,"56770":1,"56771":1,"56772":2,"56773":2,"56774":2,"56775":2,"56776":2,"56777":1,"56778":2,"56779":1,"56780":1,"56781":2,"56782":1,"56783":2,"56784":2,"56785":2,"56786":2,"56787":1,"56788":2,"56789":2,"56790":2,"56791":1,"56792":1,"56793":2,"56794":1,"56795":1,"56796":1,"56797":1,"56798":1,"56799":1,"56800":1,"56801":2,"56802":1,"56803":1,"56804":1,"56805":1,"56806":1,"56807":2,"56808":2,"56809":1,"56810":1,"56811":1,"56812":2,"56813":1,"56814":1,"56815":1,"56816":1,"56817":1,"56818":1,"56819":1,"56820":1,"56821":2,"56822":1,"56823":2,"56824":1,"56825":1,"56826":2,"56827":2,"56828":1,"56829":2,"56830":2,"56831":2,"56832":2,"56833":1,"56834":2,"56835":2,"56836":2,"56837":2,"56838":1,"56839":2,"56840":2,"56841":2,"56842":2,"56843":2,"56844":1,"56845":1,"56846":1,"56847":1,"56848":1,"56849":1,"56850":2,"56851":1,"56852":2,"56853":1,"56854":1,"56855":1,"56856":2,"56857":2,"56858":2,"56859":1,"56860":2,"56861":1,"56862":1,"56863":2,"56864":1,"56865":1,"56866":2,"56867":1,"56868":1,"56869":2,"56870":1,"56871":2,"56872":1,"56873":2,"56874":2,"56875":2,"56876":1,"56877":2,"56878":2,"56879":2,"56880":2,"56881":1,"56882":2,"56883":1,"56884":2,"56885":1,"56886":1,"56887":2,"56888":1,"56889":1,"56890":1,"56891":2,"56892":2,"56893":1,"56894":1,"56895":2,"56896":1,"56897":1,"56898":1,"56899":2,"56900":1,"56901":1,"56902":2,"56903":2,"56904":1,"56905":2,"56906":2,"56907":2,"56908":1,"56909":1,"56910":1,"56911":2,"56912":1,"56913":1,"56914":1,"56915":1,"56916":2,"56917":2,"56918":1,"56919":1,"56920":1,"56921":2,"56922":1,"56923":2,"56924":2,"56925":1,"56926":1,"56927":1,"56928":1,"56929":1,"56930":1,"56931":2,"56932":2,"56933":2,"56934":1,"56935":1,"56936":1,"56937":1,"56938":1,"56939":2,"56940":1,"56941":2,"56942":2,"56943":2,"56944":2,"56945":2,"56946":2,"56947":1,"56948":2,"56949":2,"56950":1,"56951":2,"56952":1,"56953":1,"56954":2,"56955":2,"56956":1,"56957":1,"56958":2,"56959":2,"56960":1,"56961":2,"56962":1,"56963":1,"56964":2,"56965":1,"56966":2,"56967":1,"56968":1,"56969":1,"56970":2,"56971":2,"56972":2,"56973":2,"56974":1,"56975":2,"56976":2,"56977":2,"56978":2,"56979":2,"56980":1,"56981":1,"56982":1,"56983":2,"56984":1,"56985":1,"56986":1,"56987":2,"56988":1,"56989":1,"56990":2,"56991":2,"56992":2,"56993":1,"56994":2,"56995":1,"56996":1,"56997":1,"56998":1,"56999":1,"57000":1,"57001":1,"57002":2,"57003":1,"57004":1,"57005":2,"57006":2,"57007":1,"57008":1,"57009":2,"57010":2,"57011":1,"57012":2,"57013":1,"57014":2,"57015":1,"57016":2,"57017":1,"57018":2,"57019":1,"57020":1,"57021":1,"57022":1,"57023":1,"57024":1,"57025":2,"57026":2,"57027":2,"57028":2,"57029":1,"57030":1,"57031":2,"57032":1,"57033":2,"57034":2,"57035":2,"57036":1,"57037":2,"57038":2,"57039":2,"57040":1,"57041":1,"57042":1,"57043":2,"57044":1,"57045":2,"57046":1,"57047":1,"57048":1,"57049":2,"57050":1,"57051":1,"57052":1,"57053":1,"57054":2,"57055":2,"57056":1,"57057":2,"57058":1,"57059":2,"57060":1,"57061":2,"57062":2,"57063":1,"57064":2,"57065":2,"57066":1,"57067":2,"57068":2,"57069":1,"57070":2,"57071":2,"57072":1,"57073":2,"57074":2,"57075":1,"57076":1,"57077":2,"57078":1,"57079":1,"57080":2,"57081":2,"57082":1,"57083":2,"57084":2,"57085":2,"57086":1,"57087":1,"57088":1,"57089":1,"57090":1,"57091":1,"57092":2,"57093":2,"57094":2,"57095":2,"57096":1,"57097":1,"57098":2,"57099":1,"57100":2,"57101":1,"57102":1,"57103":2,"57104":1,"57105":2,"57106":2,"57107":2,"57108":1,"57109":2,"57110":1,"57111":1,"57112":2,"57113":2,"57114":1,"57115":1,"57116":1,"57117":1,"57118":1,"57119":2,"57120":2,"57121":2,"57122":1,"57123":2,"57124":2,"57125":1,"57126":1,"57127":2,"57128":1,"57129":2,"57130":1,"57131":1,"57132":2,"57133":2,"57134":2,"57135":2,"57136":2,"57137":1,"57138":2,"57139":2,"57140":1,"57141":1,"57142":2,"57143":2,"57144":1,"57145":2,"57146":1,"57147":1,"57148":1,"57149":2,"57150":2,"57151":2,"57152":2,"57153":1,"57154":1,"57155":1,"57156":2,"57157":1,"57158":1,"57159":2,"57160":1,"57161":2,"57162":2,"57163":1,"57164":1,"57165":1,"57166":1,"57167":1,"57168":2,"57169":2,"57170":1,"57171":2,"57172":2,"57173":1,"57174":1,"57175":2,"57176":2,"57177":1,"57178":2,"57179":1,"57180":2,"57181":1,"57182":1,"57183":1,"57184":2,"57185":1,"57186":2,"57187":2,"57188":1,"57189":2,"57190":2,"57191":2,"57192":2,"57193":1,"57194":1,"57195":2,"57196":2,"57197":2,"57198":2,"57199":2,"57200":1,"57201":2,"57202":1,"57203":2,"57204":1,"57205":2,"57206":2,"57207":1,"57208":2,"57209":2,"57210":1,"57211":1,"57212":2,"57213":2,"57214":1,"57215":1,"57216":1,"57217":1,"57218":2,"57219":1,"57220":2,"57221":2,"57222":2,"57223":2,"57224":1,"57225":1,"57226":1,"57227":2,"57228":1,"57229":2,"57230":1,"57231":1,"57232":2,"57233":1,"57234":2,"57235":1,"57236":1,"57237":2,"57238":1,"57239":2,"57240":1,"57241":2,"57242":1,"57243":2,"57244":2,"57245":1,"57246":2,"57247":2,"57248":2,"57249":1,"57250":2,"57251":2,"57252":2,"57253":1,"57254":1,"57255":2,"57256":2,"57257":2,"57258":1,"57259":2,"57260":2,"57261":2,"57262":1,"57263":2,"57264":1,"57265":2,"57266":1,"57267":1,"57268":2,"57269":1,"57270":1,"57271":1,"57272":1,"57273":1,"57274":2,"57275":1,"57276":2,"57277":1,"57278":1,"57279":2,"57280":1,"57281":2,"57282":2,"57283":2,"57284":1,"57285":1,"57286":1,"57287":1,"57288":2,"57289":2,"57290":1,"57291":2,"57292":2,"57293":2,"57294":1,"57295":2,"57296":1,"57297":1,"57298":2,"57299":1,"57300":1,"57301":1,"57302":2,"57303":1,"57304":1,"57305":1,"57306":1,"57307":2,"57308":1,"57309":2,"57310":1,"57311":2,"57312":2,"57313":1,"57314":1,"57315":1,"57316":1,"57317":1,"57318":1,"57319":2,"57320":2,"57321":1,"57322":1,"57323":1,"57324":2,"57325":2,"57326":2,"57327":1,"57328":1,"57329":2,"57330":1,"57331":1,"57332":1,"57333":2,"57334":2,"57335":2,"57336":2,"57337":1,"57338":2,"57339":1,"57340":2,"57341":1,"57342":1,"57343":2,"57344":2,"57345":1,"57346":1,"57347":1,"57348":2,"57349":1,"57350":1,"57351":2,"57352":2,"57353":1,"57354":1,"57355":1,"57356":1,"57357":2,"57358":2,"57359":1,"57360":2,"57361":1,"57362":1,"57363":1,"57364":2,"57365":1,"57366":2,"57367":1,"57368":2,"57369":1,"57370":1,"57371":1,"57372":1,"57373":2,"57374":2,"57375":1,"57376":2,"57377":2,"57378":1,"57379":1,"57380":1,"57381":1,"57382":2,"57383":1,"57384":1,"57385":2,"57386":2,"57387":1,"57388":1,"57389":1,"57390":1,"57391":1,"57392":1,"57393":2,"57394":2,"57395":2,"57396":1,"57397":2,"57398":1,"57399":2,"57400":2,"57401":1,"57402":2,"57403":2,"57404":2,"57405":1,"57406":1,"57407":2,"57408":2,"57409":1,"57410":1,"57411":1,"57412":1,"57413":1,"57414":1,"57415":1,"57416":2,"57417":2,"57418":1,"57419":2,"57420":2,"57421":1,"57422":2,"57423":2,"57424":1,"57425":2,"57426":2,"57427":1,"57428":2,"57429":1,"57430":2,"57431":2,"57432":1,"57433":2,"57434":2,"57435":2,"57436":2,"57437":2,"57438":1,"57439":1,"57440":2,"57441":2,"57442":2,"57443":2,"57444":2,"57445":1,"57446":1,"57447":2,"57448":1,"57449":2,"57450":2,"57451":1,"57452":2,"57453":1,"57454":1,"57455":1,"57456":1,"57457":1,"57458":2,"57459":2,"57460":2,"57461":1,"57462":2,"57463":2,"57464":1,"57465":1,"57466":1,"57467":1,"57468":1,"57469":1,"57470":1,"57471":2,"57472":1,"57473":2,"57474":2,"57475":2,"57476":1,"57477":1,"57478":2,"57479":2,"57480":1,"57481":1,"57482":2,"57483":2,"57484":1,"57485":1,"57486":1,"57487":1,"57488":1,"57489":2,"57490":2,"57491":1,"57492":2,"57493":2,"57494":2,"57495":2,"57496":2,"57497":2,"57498":2,"57499":2,"57500":1,"57501":2,"57502":2,"57503":2,"57504":1,"57505":1,"57506":2,"57507":1,"57508":1,"57509":2,"57510":2,"57511":2,"57512":1,"57513":1,"57514":1,"57515":2,"57516":1,"57517":2,"57518":2,"57519":1,"57520":1,"57521":1,"57522":2,"57523":1,"57524":1,"57525":1,"57526":1,"57527":2,"57528":2,"57529":2,"57530":2,"57531":2,"57532":1,"57533":2,"57534":1,"57535":2,"57536":2,"57537":2,"57538":1,"57539":2,"57540":2,"57541":1,"57542":1,"57543":2,"57544":1,"57545":2,"57546":2,"57547":2,"57548":1,"57549":1,"57550":1,"57551":2,"57552":2,"57553":2,"57554":2,"57555":2,"57556":1,"57557":1,"57558":1,"57559":1,"57560":2,"57561":2,"57562":2,"57563":1,"57564":1,"57565":1,"57566":1,"57567":1,"57568":1,"57569":2,"57570":2,"57571":1,"57572":1,"57573":2,"57574":1,"57575":2,"57576":1,"57577":2,"57578":2,"57579":2,"57580":1,"57581":2,"57582":1,"57583":1,"57584":1,"57585":2,"57586":1,"57587":2,"57588":1,"57589":2,"57590":2,"57591":1,"57592":1,"57593":2,"57594":1,"57595":1,"57596":1,"57597":2,"57598":2,"57599":1,"57600":1,"57601":2,"57602":2,"57603":2,"57604":1,"57605":2,"57606":1,"57607":2,"57608":2,"57609":1,"57610":2,"57611":2,"57612":2,"57613":2,"57614":1,"57615":1,"57616":2,"57617":2,"57618":2,"57619":2,"57620":1,"57621":2,"57622":1,"57623":1,"57624":1,"57625":2,"57626":1,"57627":1,"57628":2,"57629":1,"57630":1,"57631":2,"57632":2,"57633":2,"57634":1,"57635":1,"57636":1,"57637":2,"57638":2,"57639":2,"57640":1,"57641":2,"57642":1,"57643":2,"57644":1,"57645":2,"57646":1,"57647":2,"57648":2,"57649":1,"57650":1,"57651":2,"57652":1,"57653":1,"57654":1,"57655":2,"57656":2,"57657":1,"57658":2,"57659":1,"57660":2,"57661":1,"57662":2,"57663":1,"57664":1,"57665":2,"57666":1,"57667":1,"57668":2,"57669":1,"57670":1,"57671":1,"57672":2,"57673":2,"57674":2,"57675":2,"57676":2,"57677":2,"57678":1,"57679":1,"57680":1,"57681":2,"57682":1,"57683":1,"57684":2,"57685":1,"57686":1,"57687":2,"57688":2,"57689":1,"57690":2,"57691":2,"57692":1,"57693":2,"57694":2,"57695":2,"57696":1,"57697":1,"57698":1,"57699":2,"57700":2,"57701":1,"57702":1,"57703":1,"57704":1,"57705":2,"57706":1,"57707":2,"57708":1,"57709":1,"57710":2,"57711":1,"57712":2,"57713":2,"57714":1,"57715":1,"57716":1,"57717":1,"57718":1,"57719":1,"57720":2,"57721":1,"57722":1,"57723":2,"57724":2,"57725":1,"57726":1,"57727":1,"57728":2,"57729":1,"57730":1,"57731":2,"57732":1,"57733":2,"57734":1,"57735":2,"57736":2,"57737":2,"57738":2,"57739":2,"57740":2,"57741":2,"57742":1,"57743":2,"57744":1,"57745":2,"57746":1,"57747":1,"57748":1,"57749":2,"57750":1,"57751":1,"57752":1,"57753":1,"57754":2,"57755":1,"57756":1,"57757":1,"57758":1,"57759":1,"57760":2,"57761":2,"57762":2,"57763":1,"57764":1,"57765":2,"57766":2,"57767":1,"57768":1,"57769":2,"57770":2,"57771":2,"57772":1,"57773":1,"57774":1,"57775":1,"57776":2,"57777":1,"57778":2,"57779":2,"57780":2,"57781":2,"57782":1,"57783":2,"57784":1,"57785":1,"57786":2,"57787":1,"57788":1,"57789":1,"57790":1,"57791":2,"57792":2,"57793":2,"57794":2,"57795":1,"57796":2,"57797":2,"57798":2,"57799":2,"57800":1,"57801":2,"57802":2,"57803":1,"57804":2,"57805":1,"57806":1,"57807":1,"57808":1,"57809":1,"57810":2,"57811":1,"57812":2,"57813":1,"57814":1,"57815":2,"57816":1,"57817":1,"57818":1,"57819":1,"57820":2,"57821":1,"57822":2,"57823":2,"57824":2,"57825":2,"57826":2,"57827":2,"57828":1,"57829":1,"57830":1,"57831":1,"57832":2,"57833":2,"57834":1,"57835":1,"57836":2,"57837":1,"57838":2,"57839":1,"57840":1,"57841":2,"57842":1,"57843":1,"57844":1,"57845":1,"57846":1,"57847":2,"57848":1,"57849":2,"57850":2,"57851":1,"57852":1,"57853":2,"57854":1,"57855":1,"57856":2,"57857":2,"57858":2,"57859":1,"57860":2,"57861":2,"57862":1,"57863":2,"57864":1,"57865":2,"57866":1,"57867":1,"57868":2,"57869":2,"57870":1,"57871":1,"57872":1,"57873":2,"57874":2,"57875":2,"57876":1,"57877":2,"57878":1,"57879":2,"57880":2,"57881":2,"57882":2,"57883":1,"57884":2,"57885":1,"57886":1,"57887":1,"57888":1,"57889":1,"57890":2,"57891":2,"57892":1,"57893":2,"57894":2,"57895":1,"57896":2,"57897":2,"57898":1,"57899":2,"57900":1,"57901":2,"57902":1,"57903":2,"57904":1,"57905":1,"57906":2,"57907":2,"57908":1,"57909":1,"57910":1,"57911":2,"57912":2,"57913":2,"57914":1,"57915":1,"57916":2,"57917":2,"57918":1,"57919":1,"57920":1,"57921":1,"57922":1,"57923":2,"57924":2,"57925":1,"57926":2,"57927":2,"57928":2,"57929":1,"57930":1,"57931":1,"57932":2,"57933":1,"57934":2,"57935":1,"57936":2,"57937":1,"57938":2,"57939":2,"57940":1,"57941":2,"57942":1,"57943":2,"57944":1,"57945":1,"57946":2,"57947":2,"57948":2,"57949":2,"57950":2,"57951":1,"57952":1,"57953":1,"57954":1,"57955":1,"57956":1,"57957":2,"57958":2,"57959":1,"57960":2,"57961":1,"57962":2,"57963":1,"57964":2,"57965":1,"57966":1,"57967":2,"57968":2,"57969":1,"57970":1,"57971":2,"57972":1,"57973":1,"57974":1,"57975":2,"57976":1,"57977":1,"57978":1,"57979":1,"57980":1,"57981":2,"57982":2,"57983":2,"57984":2,"57985":1,"57986":2,"57987":1,"57988":1,"57989":2,"57990":2,"57991":2,"57992":1,"57993":1,"57994":1,"57995":1,"57996":2,"57997":2,"57998":1,"57999":2,"58000":1,"58001":1,"58002":1,"58003":1,"58004":2,"58005":1,"58006":2,"58007":1,"58008":1,"58009":1,"58010":2,"58011":2,"58012":2,"58013":1,"58014":1,"58015":2,"58016":2,"58017":2,"58018":1,"58019":1,"58020":2,"58021":1,"58022":1,"58023":2,"58024":2,"58025":2,"58026":2,"58027":2,"58028":1,"58029":1,"58030":1,"58031":2,"58032":2,"58033":2,"58034":1,"58035":1,"58036":1,"58037":1,"58038":2,"58039":1,"58040":2,"58041":1,"58042":1,"58043":2,"58044":1,"58045":1,"58046":1,"58047":2,"58048":2,"58049":2,"58050":1,"58051":2,"58052":1,"58053":2,"58054":2,"58055":1,"58056":2,"58057":2,"58058":2,"58059":2,"58060":2,"58061":2,"58062":1,"58063":2,"58064":1,"58065":2,"58066":1,"58067":1,"58068":1,"58069":2,"58070":2,"58071":1,"58072":1,"58073":2,"58074":2,"58075":2,"58076":2,"58077":2,"58078":1,"58079":1,"58080":2,"58081":1,"58082":2,"58083":2,"58084":2,"58085":1,"58086":2,"58087":2,"58088":2,"58089":1,"58090":2,"58091":2,"58092":1,"58093":1,"58094":2,"58095":2,"58096":1,"58097":1,"58098":2,"58099":2,"58100":2,"58101":1,"58102":1,"58103":2,"58104":1,"58105":1,"58106":2,"58107":2,"58108":1,"58109":2,"58110":2,"58111":1,"58112":1,"58113":1,"58114":2,"58115":1,"58116":1,"58117":2,"58118":2,"58119":2,"58120":2,"58121":2,"58122":2,"58123":2,"58124":1,"58125":2,"58126":1,"58127":2,"58128":1,"58129":2,"58130":2,"58131":2,"58132":1,"58133":2,"58134":1,"58135":1,"58136":2,"58137":1,"58138":2,"58139":2,"58140":1,"58141":1,"58142":2,"58143":1,"58144":2,"58145":2,"58146":1,"58147":1,"58148":1,"58149":2,"58150":2,"58151":2,"58152":2,"58153":1,"58154":1,"58155":1,"58156":1,"58157":2,"58158":2,"58159":2,"58160":1,"58161":2,"58162":1,"58163":2,"58164":1,"58165":2,"58166":1,"58167":1,"58168":2,"58169":2,"58170":2,"58171":1,"58172":1,"58173":1,"58174":2,"58175":1,"58176":1,"58177":1,"58178":2,"58179":2,"58180":2,"58181":2,"58182":2,"58183":2,"58184":2,"58185":1,"58186":1,"58187":1,"58188":2,"58189":1,"58190":1,"58191":1,"58192":1,"58193":2,"58194":2,"58195":2,"58196":2,"58197":1,"58198":2,"58199":2,"58200":2,"58201":1,"58202":1,"58203":1,"58204":2,"58205":2,"58206":2,"58207":1,"58208":1,"58209":2,"58210":2,"58211":2,"58212":2,"58213":2,"58214":1,"58215":2,"58216":1,"58217":1,"58218":1,"58219":2,"58220":2,"58221":1,"58222":2,"58223":2,"58224":2,"58225":2,"58226":2,"58227":2,"58228":1,"58229":2,"58230":2,"58231":1,"58232":1,"58233":1,"58234":2,"58235":1,"58236":2,"58237":2,"58238":2,"58239":1,"58240":1,"58241":1,"58242":2,"58243":2,"58244":2,"58245":2,"58246":1,"58247":2,"58248":2,"58249":2,"58250":1,"58251":2,"58252":1,"58253":2,"58254":2,"58255":2,"58256":2,"58257":2,"58258":1,"58259":1,"58260":1,"58261":2,"58262":2,"58263":2,"58264":1,"58265":1,"58266":1,"58267":1,"58268":1,"58269":1,"58270":1,"58271":1,"58272":1,"58273":2,"58274":2,"58275":2,"58276":1,"58277":1,"58278":1,"58279":2,"58280":1,"58281":2,"58282":2,"58283":2,"58284":1,"58285":2,"58286":1,"58287":2,"58288":1,"58289":2,"58290":1,"58291":1,"58292":2,"58293":2,"58294":1,"58295":2,"58296":1,"58297":1,"58298":1,"58299":2,"58300":1,"58301":2,"58302":2,"58303":2,"58304":1,"58305":2,"58306":1,"58307":2,"58308":2,"58309":2,"58310":2,"58311":2,"58312":1,"58313":2,"58314":1,"58315":2,"58316":2,"58317":1,"58318":2,"58319":2,"58320":2,"58321":2,"58322":2,"58323":2,"58324":1,"58325":2,"58326":2,"58327":1,"58328":1,"58329":2,"58330":1,"58331":1,"58332":1,"58333":2,"58334":2,"58335":2,"58336":1,"58337":1,"58338":1,"58339":1,"58340":2,"58341":2,"58342":2,"58343":2,"58344":1,"58345":1,"58346":1,"58347":2,"58348":2,"58349":2,"58350":2,"58351":2,"58352":1,"58353":1,"58354":1,"58355":1,"58356":2,"58357":1,"58358":1,"58359":2,"58360":1,"58361":2,"58362":2,"58363":2,"58364":2,"58365":2,"58366":2,"58367":1,"58368":2,"58369":1,"58370":2,"58371":1,"58372":2,"58373":1,"58374":1,"58375":2,"58376":1,"58377":1,"58378":1,"58379":1,"58380":2,"58381":2,"58382":1,"58383":2,"58384":1,"58385":2,"58386":2,"58387":2,"58388":2,"58389":1,"58390":2,"58391":2,"58392":2,"58393":2,"58394":2,"58395":2,"58396":2,"58397":2,"58398":2,"58399":1,"58400":1,"58401":2,"58402":1,"58403":2,"58404":1,"58405":1,"58406":2,"58407":2,"58408":1,"58409":2,"58410":2,"58411":1,"58412":1,"58413":1,"58414":2,"58415":1,"58416":2,"58417":2,"58418":1,"58419":1,"58420":2,"58421":1,"58422":2,"58423":2,"58424":1,"58425":1,"58426":2,"58427":2,"58428":2,"58429":2,"58430":1,"58431":1,"58432":2,"58433":2,"58434":2,"58435":1,"58436":2,"58437":1,"58438":1,"58439":1,"58440":2,"58441":1,"58442":2,"58443":1,"58444":2,"58445":2,"58446":2,"58447":1,"58448":2,"58449":2,"58450":2,"58451":1,"58452":2,"58453":2,"58454":2,"58455":1,"58456":2,"58457":2,"58458":2,"58459":1,"58460":2,"58461":2,"58462":1,"58463":2,"58464":1,"58465":2,"58466":2,"58467":1,"58468":1,"58469":2,"58470":2,"58471":2,"58472":2,"58473":1,"58474":2,"58475":1,"58476":1,"58477":2,"58478":1,"58479":2,"58480":2,"58481":1,"58482":2,"58483":1,"58484":2,"58485":1,"58486":2,"58487":1,"58488":1,"58489":1,"58490":2,"58491":2,"58492":1,"58493":2,"58494":2,"58495":2,"58496":1,"58497":1,"58498":2,"58499":2,"58500":2,"58501":1,"58502":2,"58503":2,"58504":1,"58505":2,"58506":2,"58507":2,"58508":1,"58509":2,"58510":1,"58511":1,"58512":2,"58513":1,"58514":1,"58515":1,"58516":2,"58517":1,"58518":2,"58519":2,"58520":2,"58521":2,"58522":2,"58523":2,"58524":1,"58525":2,"58526":2,"58527":2,"58528":2,"58529":1,"58530":1,"58531":2,"58532":2,"58533":1,"58534":2,"58535":1,"58536":1,"58537":1,"58538":1,"58539":1,"58540":2,"58541":2,"58542":2,"58543":2,"58544":2,"58545":1,"58546":2,"58547":1,"58548":1,"58549":1,"58550":1,"58551":2,"58552":2,"58553":1,"58554":1,"58555":1,"58556":1,"58557":1,"58558":1,"58559":2,"58560":1,"58561":1,"58562":1,"58563":1,"58564":2,"58565":2,"58566":1,"58567":1,"58568":1,"58569":2,"58570":2,"58571":2,"58572":1,"58573":1,"58574":2,"58575":2,"58576":2,"58577":1,"58578":2,"58579":1,"58580":1,"58581":1,"58582":1,"58583":1,"58584":2,"58585":2,"58586":1,"58587":2,"58588":1,"58589":1,"58590":2,"58591":1,"58592":2,"58593":2,"58594":1,"58595":1,"58596":2,"58597":1,"58598":1,"58599":2,"58600":1,"58601":2,"58602":1,"58603":1,"58604":2,"58605":1,"58606":2,"58607":2,"58608":1,"58609":1,"58610":2,"58611":2,"58612":2,"58613":2,"58614":1,"58615":2,"58616":2,"58617":1,"58618":1,"58619":1,"58620":1,"58621":2,"58622":1,"58623":1,"58624":2,"58625":1,"58626":2,"58627":1,"58628":2,"58629":2,"58630":2,"58631":2,"58632":1,"58633":1,"58634":2,"58635":1,"58636":1,"58637":1,"58638":1,"58639":2,"58640":1,"58641":1,"58642":1,"58643":1,"58644":1,"58645":2,"58646":1,"58647":2,"58648":1,"58649":2,"58650":2,"58651":1,"58652":1,"58653":2,"58654":2,"58655":2,"58656":2,"58657":1,"58658":2,"58659":1,"58660":2,"58661":2,"58662":1,"58663":1,"58664":2,"58665":1,"58666":1,"58667":1,"58668":2,"58669":1,"58670":1,"58671":2,"58672":2,"58673":1,"58674":1,"58675":1,"58676":1,"58677":2,"58678":1,"58679":1,"58680":2,"58681":1,"58682":1,"58683":2,"58684":2,"58685":1,"58686":2,"58687":1,"58688":1,"58689":2,"58690":2,"58691":2,"58692":1,"58693":2,"58694":1,"58695":2,"58696":2,"58697":2,"58698":2,"58699":1,"58700":2,"58701":2,"58702":2,"58703":2,"58704":1,"58705":1,"58706":2,"58707":2,"58708":2,"58709":1,"58710":2,"58711":1,"58712":2,"58713":2,"58714":2,"58715":1,"58716":2,"58717":1,"58718":2,"58719":2,"58720":2,"58721":2,"58722":2,"58723":1,"58724":1,"58725":2,"58726":2,"58727":2,"58728":1,"58729":2,"58730":2,"58731":1,"58732":1,"58733":2,"58734":2,"58735":2,"58736":2,"58737":1,"58738":2,"58739":2,"58740":2,"58741":1,"58742":2,"58743":1,"58744":1,"58745":1,"58746":2,"58747":1,"58748":1,"58749":1,"58750":1,"58751":2,"58752":2,"58753":2,"58754":1,"58755":1,"58756":1,"58757":2,"58758":1,"58759":2,"58760":2,"58761":2,"58762":1,"58763":2,"58764":1,"58765":1,"58766":2,"58767":1,"58768":2,"58769":2,"58770":1,"58771":2,"58772":1,"58773":2,"58774":2,"58775":1,"58776":1,"58777":2,"58778":2,"58779":1,"58780":2,"58781":1,"58782":2,"58783":1,"58784":1,"58785":2,"58786":1,"58787":1,"58788":1,"58789":1,"58790":2,"58791":2,"58792":1,"58793":1,"58794":2,"58795":2,"58796":2,"58797":2,"58798":2,"58799":2,"58800":1,"58801":2,"58802":1,"58803":1,"58804":1,"58805":2,"58806":1,"58807":1,"58808":1,"58809":1,"58810":2,"58811":1,"58812":2,"58813":1,"58814":2,"58815":2,"58816":1,"58817":2,"58818":2,"58819":2,"58820":1,"58821":2,"58822":1,"58823":2,"58824":1,"58825":1,"58826":2,"58827":2,"58828":2,"58829":2,"58830":2,"58831":1,"58832":2,"58833":2,"58834":2,"58835":2,"58836":1,"58837":2,"58838":1,"58839":1,"58840":1,"58841":2,"58842":2,"58843":1,"58844":1,"58845":1,"58846":1,"58847":1,"58848":1,"58849":2,"58850":1,"58851":2,"58852":2,"58853":1,"58854":2,"58855":1,"58856":1,"58857":1,"58858":2,"58859":2,"58860":1,"58861":2,"58862":2,"58863":1,"58864":1,"58865":1,"58866":2,"58867":1,"58868":2,"58869":1,"58870":2,"58871":1,"58872":2,"58873":2,"58874":1,"58875":2,"58876":1,"58877":2,"58878":2,"58879":2,"58880":1,"58881":2,"58882":1,"58883":1,"58884":1,"58885":2,"58886":2,"58887":1,"58888":1,"58889":2,"58890":1,"58891":1,"58892":2,"58893":1,"58894":1,"58895":1,"58896":2,"58897":1,"58898":2,"58899":1,"58900":1,"58901":2,"58902":1,"58903":2,"58904":2,"58905":2,"58906":1,"58907":2,"58908":1,"58909":1,"58910":1,"58911":1,"58912":2,"58913":2,"58914":1,"58915":1,"58916":2,"58917":1,"58918":2,"58919":1,"58920":1,"58921":2,"58922":1,"58923":1,"58924":2,"58925":2,"58926":2,"58927":1,"58928":2,"58929":1,"58930":1,"58931":1,"58932":1,"58933":2,"58934":2,"58935":2,"58936":1,"58937":1,"58938":2,"58939":1,"58940":2,"58941":1,"58942":1,"58943":1,"58944":1,"58945":2,"58946":2,"58947":1,"58948":2,"58949":2,"58950":2,"58951":1,"58952":1,"58953":1,"58954":1,"58955":2,"58956":1,"58957":2,"58958":1,"58959":2,"58960":1,"58961":2,"58962":1,"58963":2,"58964":1,"58965":2,"58966":2,"58967":1,"58968":1,"58969":1,"58970":1,"58971":2,"58972":1,"58973":2,"58974":1,"58975":1,"58976":2,"58977":2,"58978":2,"58979":1,"58980":2,"58981":1,"58982":2,"58983":1,"58984":2,"58985":2,"58986":1,"58987":2,"58988":2,"58989":1,"58990":2,"58991":2,"58992":2,"58993":1,"58994":1,"58995":1,"58996":1,"58997":1,"58998":1,"58999":2,"59000":1,"59001":1,"59002":2,"59003":2,"59004":1,"59005":2,"59006":2,"59007":2,"59008":1,"59009":1,"59010":1,"59011":1,"59012":1,"59013":2,"59014":2,"59015":1,"59016":1,"59017":2,"59018":1,"59019":2,"59020":2,"59021":1,"59022":2,"59023":2,"59024":1,"59025":2,"59026":2,"59027":2,"59028":2,"59029":2,"59030":1,"59031":2,"59032":1,"59033":2,"59034":2,"59035":2,"59036":2,"59037":2,"59038":2,"59039":2,"59040":1,"59041":1,"59042":1,"59043":2,"59044":2,"59045":2,"59046":1,"59047":2,"59048":2,"59049":2,"59050":1,"59051":1,"59052":2,"59053":1,"59054":2,"59055":2,"59056":2,"59057":2,"59058":1,"59059":2,"59060":1,"59061":1,"59062":2,"59063":1,"59064":2,"59065":1,"59066":2,"59067":1,"59068":1,"59069":2,"59070":1,"59071":2,"59072":1,"59073":2,"59074":1,"59075":1,"59076":2,"59077":2,"59078":1,"59079":1,"59080":1,"59081":2,"59082":1,"59083":2,"59084":1,"59085":2,"59086":1,"59087":1,"59088":1,"59089":1,"59090":2,"59091":2,"59092":2,"59093":2,"59094":2,"59095":2,"59096":1,"59097":1,"59098":2,"59099":1,"59100":1,"59101":1,"59102":2,"59103":2,"59104":2,"59105":2,"59106":1,"59107":2,"59108":2,"59109":2,"59110":2,"59111":1,"59112":2,"59113":1,"59114":1,"59115":1,"59116":2,"59117":2,"59118":1,"59119":2,"59120":2,"59121":1,"59122":1,"59123":1,"59124":1,"59125":1,"59126":1,"59127":1,"59128":1,"59129":2,"59130":1,"59131":2,"59132":2,"59133":2,"59134":2,"59135":1,"59136":1,"59137":2,"59138":2,"59139":1,"59140":1,"59141":2,"59142":2,"59143":2,"59144":1,"59145":2,"59146":1,"59147":2,"59148":1,"59149":1,"59150":1,"59151":1,"59152":1,"59153":1,"59154":2,"59155":1,"59156":1,"59157":1,"59158":1,"59159":2,"59160":2,"59161":2,"59162":2,"59163":2,"59164":1,"59165":1,"59166":2,"59167":1,"59168":2,"59169":1,"59170":2,"59171":1,"59172":2,"59173":2,"59174":2,"59175":1,"59176":1,"59177":1,"59178":1,"59179":2,"59180":1,"59181":2,"59182":2,"59183":1,"59184":2,"59185":2,"59186":1,"59187":1,"59188":1,"59189":1,"59190":2,"59191":2,"59192":2,"59193":2,"59194":2,"59195":2,"59196":2,"59197":2,"59198":1,"59199":1,"59200":2,"59201":1,"59202":1,"59203":1,"59204":1,"59205":1,"59206":2,"59207":1,"59208":1,"59209":2,"59210":2,"59211":2,"59212":2,"59213":1,"59214":1,"59215":2,"59216":1,"59217":1,"59218":2,"59219":1,"59220":2,"59221":2,"59222":1,"59223":2,"59224":1,"59225":1,"59226":1,"59227":1,"59228":1,"59229":2,"59230":2,"59231":2,"59232":2,"59233":1,"59234":1,"59235":1,"59236":1,"59237":1,"59238":2,"59239":2,"59240":2,"59241":1,"59242":1,"59243":1,"59244":1,"59245":1,"59246":1,"59247":1,"59248":1,"59249":2,"59250":2,"59251":1,"59252":2,"59253":1,"59254":2,"59255":2,"59256":2,"59257":1,"59258":1,"59259":1,"59260":1,"59261":2,"59262":1,"59263":2,"59264":2,"59265":1,"59266":1,"59267":1,"59268":2,"59269":1,"59270":2,"59271":2,"59272":1,"59273":1,"59274":2,"59275":2,"59276":2,"59277":1,"59278":1,"59279":1,"59280":1,"59281":2,"59282":1,"59283":2,"59284":2,"59285":2,"59286":1,"59287":2,"59288":1,"59289":2,"59290":2,"59291":1,"59292":1,"59293":2,"59294":1,"59295":1,"59296":2,"59297":1,"59298":1,"59299":2,"59300":2,"59301":1,"59302":2,"59303":1,"59304":2,"59305":1,"59306":1,"59307":1,"59308":1,"59309":1,"59310":2,"59311":1,"59312":1,"59313":2,"59314":1,"59315":1,"59316":1,"59317":1,"59318":2,"59319":1,"59320":2,"59321":2,"59322":1,"59323":2,"59324":2,"59325":1,"59326":2,"59327":1,"59328":2,"59329":2,"59330":1,"59331":2,"59332":1,"59333":2,"59334":2,"59335":1,"59336":2,"59337":1,"59338":2,"59339":1,"59340":1,"59341":1,"59342":1,"59343":2,"59344":1,"59345":1,"59346":2,"59347":1,"59348":2,"59349":2,"59350":2,"59351":1,"59352":2,"59353":2,"59354":2,"59355":1,"59356":2,"59357":2,"59358":1,"59359":1,"59360":2,"59361":1,"59362":1,"59363":2,"59364":2,"59365":2,"59366":1,"59367":2,"59368":2,"59369":2,"59370":2,"59371":1,"59372":1,"59373":1,"59374":1,"59375":2,"59376":1,"59377":1,"59378":2,"59379":1,"59380":2,"59381":1,"59382":1,"59383":2,"59384":2,"59385":1,"59386":2,"59387":1,"59388":1,"59389":2,"59390":1,"59391":1,"59392":2,"59393":1,"59394":1,"59395":1,"59396":1,"59397":2,"59398":2,"59399":1,"59400":2,"59401":2,"59402":1,"59403":1,"59404":2,"59405":2,"59406":1,"59407":2,"59408":2,"59409":1,"59410":2,"59411":2,"59412":2,"59413":1,"59414":2,"59415":2,"59416":2,"59417":2,"59418":1,"59419":1,"59420":1,"59421":1,"59422":2,"59423":1,"59424":2,"59425":2,"59426":1,"59427":2,"59428":2,"59429":2,"59430":1,"59431":2,"59432":2,"59433":2,"59434":2,"59435":2,"59436":1,"59437":1,"59438":1,"59439":2,"59440":1,"59441":1,"59442":2,"59443":2,"59444":2,"59445":1,"59446":2,"59447":1,"59448":2,"59449":1,"59450":1,"59451":1,"59452":2,"59453":2,"59454":2,"59455":1,"59456":2,"59457":1,"59458":2,"59459":2,"59460":2,"59461":2,"59462":1,"59463":2,"59464":1,"59465":1,"59466":2,"59467":2,"59468":2,"59469":1,"59470":1,"59471":1,"59472":1,"59473":1,"59474":1,"59475":2,"59476":1,"59477":1,"59478":1,"59479":1,"59480":1,"59481":1,"59482":2,"59483":1,"59484":1,"59485":1,"59486":1,"59487":1,"59488":2,"59489":1,"59490":2,"59491":1,"59492":1,"59493":1,"59494":2,"59495":1,"59496":1,"59497":2,"59498":1,"59499":1,"59500":2,"59501":1,"59502":1,"59503":2,"59504":1,"59505":1,"59506":2,"59507":1,"59508":2,"59509":2,"59510":2,"59511":2,"59512":1,"59513":2,"59514":2,"59515":2,"59516":1,"59517":2,"59518":1,"59519":2,"59520":1,"59521":1,"59522":1,"59523":1,"59524":2,"59525":1,"59526":2,"59527":2,"59528":1,"59529":2,"59530":2,"59531":2,"59532":2,"59533":1,"59534":2,"59535":2,"59536":1,"59537":2,"59538":1,"59539":2,"59540":1,"59541":2,"59542":1,"59543":1,"59544":2,"59545":1,"59546":1,"59547":1,"59548":2,"59549":2,"59550":2,"59551":2,"59552":2,"59553":1,"59554":2,"59555":2,"59556":1,"59557":2,"59558":2,"59559":1,"59560":2,"59561":1,"59562":2,"59563":1,"59564":1,"59565":1,"59566":2,"59567":2,"59568":2,"59569":1,"59570":1,"59571":2,"59572":2,"59573":1,"59574":2,"59575":2,"59576":2,"59577":2,"59578":1,"59579":2,"59580":1,"59581":2,"59582":2,"59583":2,"59584":1,"59585":1,"59586":1,"59587":1,"59588":1,"59589":1,"59590":1,"59591":1,"59592":2,"59593":2,"59594":2,"59595":2,"59596":1,"59597":2,"59598":2,"59599":2,"59600":1,"59601":2,"59602":2,"59603":1,"59604":2,"59605":1,"59606":1,"59607":1,"59608":1,"59609":1,"59610":1,"59611":2,"59612":1,"59613":2,"59614":1,"59615":2,"59616":2,"59617":1,"59618":1,"59619":1,"59620":1,"59621":1,"59622":2,"59623":1,"59624":2,"59625":2,"59626":2,"59627":1,"59628":2,"59629":1,"59630":2,"59631":1,"59632":2,"59633":2,"59634":1,"59635":2,"59636":2,"59637":2,"59638":1,"59639":1,"59640":2,"59641":1,"59642":2,"59643":1,"59644":1,"59645":2,"59646":1,"59647":1,"59648":1,"59649":2,"59650":2,"59651":1,"59652":2,"59653":2,"59654":2,"59655":2,"59656":2,"59657":2,"59658":2,"59659":1,"59660":1,"59661":2,"59662":1,"59663":1,"59664":1,"59665":2,"59666":2,"59667":1,"59668":1,"59669":2,"59670":2,"59671":1,"59672":1,"59673":2,"59674":1,"59675":2,"59676":2,"59677":2,"59678":1,"59679":1,"59680":1,"59681":2,"59682":2,"59683":1,"59684":1,"59685":1,"59686":1,"59687":2,"59688":1,"59689":1,"59690":2,"59691":1,"59692":2,"59693":2,"59694":2,"59695":1,"59696":1,"59697":2,"59698":1,"59699":2,"59700":2,"59701":1,"59702":2,"59703":1,"59704":2,"59705":1,"59706":2,"59707":2,"59708":1,"59709":1,"59710":2,"59711":1,"59712":2,"59713":2,"59714":2,"59715":2,"59716":1,"59717":1,"59718":1,"59719":1,"59720":1,"59721":2,"59722":2,"59723":1,"59724":2,"59725":1,"59726":1,"59727":2,"59728":1,"59729":1,"59730":2,"59731":2,"59732":1,"59733":2,"59734":1,"59735":1,"59736":2,"59737":2,"59738":2,"59739":2,"59740":1,"59741":2,"59742":1,"59743":2,"59744":1,"59745":2,"59746":2,"59747":1,"59748":1,"59749":2,"59750":2,"59751":1,"59752":1,"59753":1,"59754":2,"59755":2,"59756":2,"59757":2,"59758":1,"59759":1,"59760":2,"59761":2,"59762":1,"59763":1,"59764":1,"59765":2,"59766":1,"59767":1,"59768":1,"59769":2,"59770":2,"59771":2,"59772":2,"59773":2,"59774":2,"59775":1,"59776":2,"59777":1,"59778":2,"59779":2,"59780":2,"59781":2,"59782":2,"59783":1,"59784":2,"59785":1,"59786":1,"59787":2,"59788":2,"59789":2,"59790":1,"59791":2,"59792":2,"59793":1,"59794":1,"59795":1,"59796":1,"59797":1,"59798":2,"59799":1,"59800":1,"59801":2,"59802":2,"59803":1,"59804":2,"59805":2,"59806":1,"59807":1,"59808":2,"59809":1,"59810":1,"59811":1,"59812":1,"59813":2,"59814":2,"59815":1,"59816":2,"59817":2,"59818":1,"59819":1,"59820":2,"59821":2,"59822":1,"59823":2,"59824":2,"59825":2,"59826":2,"59827":2,"59828":1,"59829":2,"59830":2,"59831":1,"59832":1,"59833":1,"59834":2,"59835":2,"59836":2,"59837":2,"59838":2,"59839":1,"59840":1,"59841":2,"59842":1,"59843":1,"59844":1,"59845":2,"59846":2,"59847":1,"59848":2,"59849":1,"59850":2,"59851":2,"59852":2,"59853":1,"59854":2,"59855":1,"59856":2,"59857":1,"59858":2,"59859":2,"59860":2,"59861":1,"59862":2,"59863":2,"59864":1,"59865":1,"59866":1,"59867":2,"59868":1,"59869":1,"59870":1,"59871":1,"59872":1,"59873":1,"59874":2,"59875":2,"59876":1,"59877":1,"59878":1,"59879":2,"59880":2,"59881":2,"59882":2,"59883":2,"59884":2,"59885":2,"59886":1,"59887":1,"59888":1,"59889":1,"59890":2,"59891":2,"59892":2,"59893":1,"59894":2,"59895":1,"59896":2,"59897":2,"59898":2,"59899":1,"59900":2,"59901":1,"59902":1,"59903":2,"59904":2,"59905":2,"59906":2,"59907":2,"59908":2,"59909":1,"59910":2,"59911":1,"59912":1,"59913":1,"59914":2,"59915":2,"59916":2,"59917":1,"59918":2,"59919":2,"59920":2,"59921":2,"59922":2,"59923":2,"59924":2,"59925":1,"59926":1,"59927":1,"59928":1,"59929":1,"59930":1,"59931":2,"59932":2,"59933":1,"59934":1,"59935":1,"59936":2,"59937":1,"59938":1,"59939":2,"59940":2,"59941":1,"59942":1,"59943":1,"59944":2,"59945":1,"59946":1,"59947":2,"59948":1,"59949":2,"59950":1,"59951":1,"59952":2,"59953":2,"59954":1,"59955":2,"59956":2,"59957":1,"59958":2,"59959":2,"59960":2,"59961":2,"59962":1,"59963":1,"59964":1,"59965":1,"59966":1,"59967":2,"59968":1,"59969":2,"59970":1,"59971":1,"59972":1,"59973":1,"59974":1,"59975":1,"59976":1,"59977":1,"59978":1,"59979":2,"59980":1,"59981":2,"59982":1,"59983":1,"59984":2,"59985":1,"59986":2,"59987":1,"59988":2,"59989":1,"59990":1,"59991":2,"59992":2,"59993":2,"59994":2,"59995":1,"59996":2,"59997":2,"59998":2,"59999":2,"60000":1,"60001":2,"60002":1,"60003":1,"60004":2,"60005":2,"60006":2,"60007":1,"60008":2,"60009":2,"60010":2,"60011":2,"60012":1,"60013":2,"60014":2,"60015":1,"60016":2,"60017":2,"60018":2,"60019":1,"60020":2,"60021":1,"60022":2,"60023":2,"60024":1,"60025":1,"60026":1,"60027":1,"60028":2,"60029":1,"60030":1,"60031":2,"60032":1,"60033":1,"60034":1,"60035":1,"60036":2,"60037":2,"60038":2,"60039":2,"60040":2,"60041":1,"60042":1,"60043":1,"60044":1,"60045":1,"60046":1,"60047":2,"60048":1,"60049":1,"60050":1,"60051":2,"60052":2,"60053":1,"60054":1,"60055":2,"60056":1,"60057":2,"60058":2,"60059":1,"60060":1,"60061":1,"60062":2,"60063":2,"60064":1,"60065":2,"60066":1,"60067":2,"60068":1,"60069":2,"60070":1,"60071":1,"60072":1,"60073":1,"60074":1,"60075":1,"60076":2,"60077":2,"60078":1,"60079":1,"60080":1,"60081":1,"60082":2,"60083":2,"60084":2,"60085":2,"60086":1,"60087":1,"60088":1,"60089":2,"60090":2,"60091":1,"60092":2,"60093":1,"60094":1,"60095":2,"60096":2,"60097":1,"60098":2,"60099":1,"60100":1,"60101":2,"60102":2,"60103":1,"60104":1,"60105":1,"60106":1,"60107":1,"60108":1,"60109":1,"60110":1,"60111":1,"60112":1,"60113":1,"60114":2,"60115":2,"60116":2,"60117":1,"60118":1,"60119":2,"60120":2,"60121":2,"60122":2,"60123":1,"60124":2,"60125":1,"60126":1,"60127":2,"60128":1,"60129":1,"60130":2,"60131":1,"60132":1,"60133":1,"60134":1,"60135":1,"60136":2,"60137":1,"60138":2,"60139":1,"60140":1,"60141":2,"60142":1,"60143":1,"60144":1,"60145":2,"60146":2,"60147":1,"60148":1,"60149":2,"60150":1,"60151":2,"60152":1,"60153":1,"60154":2,"60155":1,"60156":1,"60157":1,"60158":1,"60159":1,"60160":1,"60161":1,"60162":2,"60163":1,"60164":2,"60165":1,"60166":2,"60167":2,"60168":1,"60169":1,"60170":1,"60171":1,"60172":1,"60173":1,"60174":2,"60175":1,"60176":1,"60177":2,"60178":1,"60179":2,"60180":2,"60181":1,"60182":2,"60183":2,"60184":1,"60185":1,"60186":2,"60187":2,"60188":1,"60189":1,"60190":1,"60191":1,"60192":2,"60193":1,"60194":1,"60195":1,"60196":2,"60197":2,"60198":1,"60199":2,"60200":1,"60201":1,"60202":2,"60203":1,"60204":2,"60205":2,"60206":1,"60207":1,"60208":2,"60209":2,"60210":2,"60211":2,"60212":2,"60213":1,"60214":2,"60215":2,"60216":1,"60217":2,"60218":2,"60219":1,"60220":1,"60221":1,"60222":2,"60223":1,"60224":1,"60225":1,"60226":2,"60227":2,"60228":2,"60229":1,"60230":1,"60231":2,"60232":2,"60233":1,"60234":1,"60235":1,"60236":1,"60237":2,"60238":2,"60239":1,"60240":1,"60241":1,"60242":2,"60243":2,"60244":1,"60245":2,"60246":1,"60247":1,"60248":1,"60249":1,"60250":1,"60251":2,"60252":1,"60253":1,"60254":1,"60255":2,"60256":2,"60257":2,"60258":2,"60259":2,"60260":2,"60261":2,"60262":2,"60263":2,"60264":2,"60265":2,"60266":1,"60267":2,"60268":1,"60269":1,"60270":1,"60271":1,"60272":2,"60273":2,"60274":2,"60275":1,"60276":1,"60277":1,"60278":1,"60279":2,"60280":2,"60281":1,"60282":2,"60283":1,"60284":2,"60285":2,"60286":2,"60287":2,"60288":1,"60289":2,"60290":2,"60291":2,"60292":2,"60293":2,"60294":2,"60295":2,"60296":1,"60297":2,"60298":1,"60299":1,"60300":2,"60301":1,"60302":2,"60303":1,"60304":2,"60305":1,"60306":1,"60307":2,"60308":2,"60309":2,"60310":1,"60311":2,"60312":2,"60313":2,"60314":2,"60315":2,"60316":2,"60317":2,"60318":2,"60319":1,"60320":1,"60321":2,"60322":1,"60323":2,"60324":2,"60325":2,"60326":1,"60327":1,"60328":2,"60329":2,"60330":1,"60331":2,"60332":1,"60333":1,"60334":2,"60335":2,"60336":1,"60337":1,"60338":2,"60339":2,"60340":2,"60341":1,"60342":1,"60343":2,"60344":2,"60345":2,"60346":2,"60347":1,"60348":1,"60349":2,"60350":1,"60351":2,"60352":1,"60353":2,"60354":1,"60355":1,"60356":2,"60357":1,"60358":1,"60359":1,"60360":2,"60361":2,"60362":1,"60363":2,"60364":2,"60365":1,"60366":2,"60367":1,"60368":1,"60369":1,"60370":2,"60371":2,"60372":1,"60373":1,"60374":1,"60375":1,"60376":1,"60377":2,"60378":2,"60379":2,"60380":2,"60381":2,"60382":1,"60383":1,"60384":2,"60385":2,"60386":1,"60387":1,"60388":2,"60389":1,"60390":2,"60391":1,"60392":2,"60393":1,"60394":1,"60395":1,"60396":1,"60397":2,"60398":1,"60399":1,"60400":1,"60401":1,"60402":1,"60403":2,"60404":2,"60405":2,"60406":1,"60407":1,"60408":2,"60409":2,"60410":2,"60411":1,"60412":1,"60413":2,"60414":2,"60415":2,"60416":2,"60417":2,"60418":2,"60419":1,"60420":1,"60421":1,"60422":1,"60423":2,"60424":1,"60425":1,"60426":1,"60427":1,"60428":2,"60429":2,"60430":2,"60431":1,"60432":2,"60433":1,"60434":2,"60435":2,"60436":1,"60437":2,"60438":1,"60439":2,"60440":1,"60441":1,"60442":2,"60443":2,"60444":2,"60445":1,"60446":1,"60447":2,"60448":1,"60449":1,"60450":2,"60451":2,"60452":1,"60453":2,"60454":2,"60455":1,"60456":1,"60457":1,"60458":2,"60459":2,"60460":1,"60461":1,"60462":2,"60463":1,"60464":2,"60465":2,"60466":1,"60467":1,"60468":2,"60469":2,"60470":2,"60471":1,"60472":1,"60473":2,"60474":2,"60475":2,"60476":1,"60477":1,"60478":1,"60479":1,"60480":2,"60481":1,"60482":2,"60483":2,"60484":2,"60485":2,"60486":2,"60487":2,"60488":2,"60489":1,"60490":1,"60491":1,"60492":2,"60493":2,"60494":1,"60495":1,"60496":2,"60497":2,"60498":1,"60499":1,"60500":2,"60501":1,"60502":2,"60503":1,"60504":1,"60505":2,"60506":2,"60507":1,"60508":1,"60509":2,"60510":2,"60511":2,"60512":2,"60513":1,"60514":1,"60515":1,"60516":2,"60517":2,"60518":1,"60519":2,"60520":1,"60521":2,"60522":1,"60523":1,"60524":1,"60525":1,"60526":2,"60527":2,"60528":1,"60529":2,"60530":2,"60531":2,"60532":2,"60533":1,"60534":2,"60535":1,"60536":2,"60537":1,"60538":1,"60539":1,"60540":1,"60541":1,"60542":1,"60543":1,"60544":1,"60545":1,"60546":1,"60547":1,"60548":2,"60549":2,"60550":2,"60551":1,"60552":1,"60553":2,"60554":2,"60555":1,"60556":2,"60557":2,"60558":1,"60559":1,"60560":1,"60561":1,"60562":1,"60563":2,"60564":2,"60565":2,"60566":1,"60567":1,"60568":2,"60569":1,"60570":2,"60571":2,"60572":1,"60573":1,"60574":2,"60575":1,"60576":1,"60577":2,"60578":1,"60579":2,"60580":1,"60581":2,"60582":2,"60583":2,"60584":2,"60585":1,"60586":1,"60587":2,"60588":1,"60589":1,"60590":1,"60591":2,"60592":2,"60593":2,"60594":1,"60595":2,"60596":2,"60597":2,"60598":2,"60599":1,"60600":2,"60601":2,"60602":1,"60603":2,"60604":2,"60605":2,"60606":1,"60607":2,"60608":2,"60609":2,"60610":2,"60611":2,"60612":1,"60613":2,"60614":2,"60615":1,"60616":1,"60617":2,"60618":1,"60619":2,"60620":1,"60621":1,"60622":2,"60623":2,"60624":2,"60625":1,"60626":1,"60627":2,"60628":1,"60629":2,"60630":1,"60631":2,"60632":1,"60633":2,"60634":1,"60635":1,"60636":1,"60637":1,"60638":2,"60639":2,"60640":1,"60641":1,"60642":2,"60643":2,"60644":2,"60645":1,"60646":2,"60647":2,"60648":2,"60649":1,"60650":2,"60651":1,"60652":2,"60653":1,"60654":1,"60655":1,"60656":2,"60657":2,"60658":1,"60659":2,"60660":2,"60661":2,"60662":1,"60663":1,"60664":1,"60665":1,"60666":2,"60667":2,"60668":1,"60669":1,"60670":1,"60671":2,"60672":1,"60673":2,"60674":1,"60675":2,"60676":1,"60677":1,"60678":1,"60679":2,"60680":2,"60681":1,"60682":1,"60683":1,"60684":2,"60685":2,"60686":2,"60687":2,"60688":1,"60689":1,"60690":2,"60691":1,"60692":1,"60693":2,"60694":2,"60695":1,"60696":1,"60697":1,"60698":1,"60699":1,"60700":2,"60701":1,"60702":2,"60703":2,"60704":2,"60705":1,"60706":2,"60707":1,"60708":2,"60709":1,"60710":1,"60711":1,"60712":1,"60713":1,"60714":1,"60715":2,"60716":2,"60717":1,"60718":2,"60719":2,"60720":1,"60721":1,"60722":2,"60723":1,"60724":2,"60725":2,"60726":2,"60727":2,"60728":2,"60729":2,"60730":2,"60731":2,"60732":1,"60733":2,"60734":1,"60735":2,"60736":2,"60737":1,"60738":1,"60739":1,"60740":1,"60741":2,"60742":2,"60743":1,"60744":1,"60745":2,"60746":2,"60747":1,"60748":2,"60749":1,"60750":1,"60751":1,"60752":1,"60753":2,"60754":1,"60755":1,"60756":2,"60757":1,"60758":2,"60759":1,"60760":2,"60761":2,"60762":2,"60763":1,"60764":2,"60765":2,"60766":2,"60767":2,"60768":1,"60769":2,"60770":1,"60771":2,"60772":1,"60773":1,"60774":1,"60775":2,"60776":2,"60777":1,"60778":2,"60779":1,"60780":2,"60781":2,"60782":2,"60783":2,"60784":2,"60785":2,"60786":1,"60787":2,"60788":2,"60789":1,"60790":1,"60791":2,"60792":2,"60793":1,"60794":2,"60795":1,"60796":1,"60797":1,"60798":1,"60799":1,"60800":2,"60801":2,"60802":2,"60803":1,"60804":2,"60805":2,"60806":2,"60807":2,"60808":1,"60809":2,"60810":1,"60811":1,"60812":2,"60813":1,"60814":1,"60815":1,"60816":2,"60817":2,"60818":1,"60819":1,"60820":1,"60821":2,"60822":1,"60823":1,"60824":1,"60825":2,"60826":2,"60827":1,"60828":2,"60829":2,"60830":1,"60831":2,"60832":2,"60833":2,"60834":1,"60835":1,"60836":1,"60837":2,"60838":2,"60839":1,"60840":1,"60841":2,"60842":2,"60843":2,"60844":2,"60845":2,"60846":1,"60847":1,"60848":2,"60849":2,"60850":1,"60851":2,"60852":2,"60853":1,"60854":2,"60855":2,"60856":1,"60857":1,"60858":2,"60859":2,"60860":2,"60861":2,"60862":1,"60863":2,"60864":2,"60865":1,"60866":1,"60867":2,"60868":1,"60869":1,"60870":1,"60871":2,"60872":1,"60873":1,"60874":2,"60875":2,"60876":1,"60877":2,"60878":1,"60879":2,"60880":2,"60881":2,"60882":1,"60883":1,"60884":2,"60885":1,"60886":2,"60887":1,"60888":2,"60889":1,"60890":1,"60891":1,"60892":1,"60893":2,"60894":1,"60895":1,"60896":1,"60897":1,"60898":2,"60899":1,"60900":2,"60901":2,"60902":1,"60903":2},"age":{"0":8,"1":5,"2":7,"3":7,"4":9,"5":2,"6":9,"7":9,"8":4,"9":5,"10":8,"11":8,"12":7,"13":7,"14":9,"15":2,"16":8,"17":5,"18":5,"19":2,"20":2,"21":3,"22":5,"23":2,"24":10,"25":1,"26":6,"27":6,"28":9,"29":7,"30":5,"31":7,"32":9,"33":3,"34":2,"35":7,"36":7,"37":7,"38":9,"39":2,"40":7,"41":8,"42":8,"43":7,"44":7,"45":6,"46":7,"47":3,"48":6,"49":6,"50":7,"51":7,"52":8,"53":9,"54":7,"55":7,"56":9,"57":2,"58":5,"59":8,"60":9,"61":2,"62":10,"63":8,"64":7,"65":7,"66":5,"67":10,"68":6,"69":7,"70":4,"71":7,"72":2,"73":7,"74":8,"75":6,"76":10,"77":7,"78":10,"79":8,"80":9,"81":4,"82":7,"83":8,"84":5,"85":7,"86":8,"87":2,"88":2,"89":9,"90":3,"91":9,"92":4,"93":8,"94":3,"95":7,"96":6,"97":9,"98":5,"99":4,"100":10,"101":7,"102":7,"103":8,"104":7,"105":1,"106":7,"107":8,"108":7,"109":7,"110":8,"111":10,"112":8,"113":6,"114":6,"115":8,"116":3,"117":1,"118":9,"119":10,"120":8,"121":7,"122":8,"123":8,"124":2,"125":5,"126":7,"127":8,"128":2,"129":2,"130":2,"131":2,"132":3,"133":8,"134":3,"135":8,"136":8,"137":5,"138":7,"139":7,"140":8,"141":2,"142":9,"143":4,"144":7,"145":5,"146":6,"147":4,"148":4,"149":2,"150":8,"151":5,"152":4,"153":6,"154":4,"155":5,"156":7,"157":7,"158":7,"159":5,"160":7,"161":7,"162":8,"163":8,"164":2,"165":2,"166":5,"167":8,"168":8,"169":7,"170":9,"171":9,"172":9,"173":3,"174":6,"175":2,"176":4,"177":7,"178":2,"179":2,"180":8,"181":7,"182":8,"183":9,"184":3,"185":8,"186":6,"187":4,"188":2,"189":2,"190":1,"191":9,"192":10,"193":8,"194":8,"195":9,"196":8,"197":7,"198":8,"199":2,"200":8,"201":9,"202":8,"203":7,"204":7,"205":2,"206":5,"207":5,"208":9,"209":9,"210":7,"211":8,"212":6,"213":8,"214":8,"215":8,"216":8,"217":2,"218":2,"219":3,"220":8,"221":7,"222":9,"223":5,"224":5,"225":7,"226":7,"227":7,"228":9,"229":7,"230":7,"231":10,"232":10,"233":9,"234":6,"235":9,"236":8,"237":2,"238":8,"239":4,"240":7,"241":10,"242":1,"243":9,"244":9,"245":2,"246":2,"247":2,"248":1,"249":1,"250":7,"251":5,"252":8,"253":8,"254":7,"255":5,"256":8,"257":5,"258":8,"259":7,"260":7,"261":7,"262":7,"263":6,"264":8,"265":5,"266":8,"267":2,"268":2,"269":1,"270":9,"271":10,"272":2,"273":7,"274":7,"275":7,"276":8,"277":3,"278":8,"279":8,"280":7,"281":5,"282":2,"283":8,"284":8,"285":7,"286":8,"287":9,"288":9,"289":8,"290":7,"291":9,"292":7,"293":8,"294":10,"295":7,"296":6,"297":10,"298":4,"299":9,"300":7,"301":8,"302":9,"303":5,"304":7,"305":5,"306":9,"307":2,"308":3,"309":8,"310":4,"311":7,"312":6,"313":8,"314":9,"315":4,"316":8,"317":8,"318":7,"319":9,"320":10,"321":5,"322":2,"323":9,"324":1,"325":9,"326":10,"327":3,"328":8,"329":7,"330":8,"331":3,"332":3,"333":8,"334":2,"335":7,"336":9,"337":4,"338":7,"339":3,"340":9,"341":10,"342":3,"343":8,"344":9,"345":7,"346":9,"347":8,"348":7,"349":5,"350":7,"351":7,"352":9,"353":9,"354":1,"355":1,"356":8,"357":2,"358":7,"359":5,"360":8,"361":8,"362":6,"363":9,"364":7,"365":5,"366":9,"367":1,"368":8,"369":2,"370":6,"371":4,"372":7,"373":7,"374":3,"375":5,"376":8,"377":7,"378":8,"379":7,"380":9,"381":4,"382":7,"383":5,"384":3,"385":6,"386":7,"387":3,"388":6,"389":8,"390":5,"391":5,"392":3,"393":10,"394":9,"395":8,"396":8,"397":7,"398":8,"399":7,"400":10,"401":1,"402":6,"403":9,"404":8,"405":7,"406":2,"407":10,"408":8,"409":7,"410":7,"411":7,"412":8,"413":1,"414":7,"415":7,"416":2,"417":7,"418":8,"419":1,"420":8,"421":3,"422":7,"423":1,"424":7,"425":5,"426":8,"427":7,"428":10,"429":2,"430":6,"431":10,"432":4,"433":2,"434":8,"435":3,"436":9,"437":7,"438":9,"439":7,"440":8,"441":2,"442":6,"443":8,"444":7,"445":7,"446":8,"447":9,"448":10,"449":6,"450":2,"451":4,"452":8,"453":7,"454":9,"455":9,"456":7,"457":8,"458":6,"459":7,"460":8,"461":7,"462":4,"463":5,"464":5,"465":8,"466":8,"467":8,"468":8,"469":1,"470":5,"471":5,"472":2,"473":8,"474":8,"475":1,"476":8,"477":2,"478":7,"479":7,"480":2,"481":7,"482":8,"483":8,"484":10,"485":9,"486":7,"487":10,"488":5,"489":7,"490":2,"491":6,"492":8,"493":7,"494":9,"495":8,"496":8,"497":8,"498":9,"499":8,"500":6,"501":7,"502":10,"503":8,"504":2,"505":3,"506":7,"507":8,"508":7,"509":9,"510":5,"511":7,"512":6,"513":2,"514":7,"515":9,"516":7,"517":9,"518":5,"519":2,"520":8,"521":1,"522":3,"523":6,"524":7,"525":9,"526":4,"527":5,"528":5,"529":1,"530":9,"531":2,"532":7,"533":9,"534":5,"535":2,"536":7,"537":8,"538":8,"539":1,"540":2,"541":7,"542":8,"543":7,"544":7,"545":8,"546":7,"547":6,"548":3,"549":3,"550":5,"551":8,"552":7,"553":2,"554":9,"555":7,"556":7,"557":4,"558":6,"559":9,"560":9,"561":8,"562":9,"563":8,"564":9,"565":5,"566":4,"567":4,"568":9,"569":9,"570":10,"571":7,"572":7,"573":9,"574":7,"575":5,"576":2,"577":8,"578":5,"579":8,"580":7,"581":7,"582":3,"583":8,"584":9,"585":7,"586":9,"587":5,"588":6,"589":9,"590":5,"591":7,"592":6,"593":2,"594":2,"595":8,"596":3,"597":7,"598":2,"599":8,"600":9,"601":8,"602":1,"603":4,"604":6,"605":7,"606":2,"607":3,"608":8,"609":9,"610":1,"611":2,"612":9,"613":4,"614":4,"615":7,"616":7,"617":9,"618":10,"619":8,"620":8,"621":9,"622":8,"623":7,"624":7,"625":7,"626":8,"627":1,"628":7,"629":7,"630":10,"631":5,"632":8,"633":1,"634":7,"635":7,"636":2,"637":2,"638":8,"639":3,"640":7,"641":9,"642":1,"643":7,"644":8,"645":4,"646":1,"647":3,"648":2,"649":8,"650":7,"651":8,"652":8,"653":10,"654":8,"655":7,"656":9,"657":4,"658":4,"659":7,"660":8,"661":9,"662":5,"663":8,"664":5,"665":2,"666":7,"667":8,"668":10,"669":5,"670":7,"671":10,"672":6,"673":8,"674":7,"675":2,"676":8,"677":3,"678":3,"679":9,"680":7,"681":1,"682":7,"683":9,"684":9,"685":7,"686":8,"687":8,"688":8,"689":8,"690":9,"691":6,"692":8,"693":1,"694":5,"695":6,"696":10,"697":8,"698":1,"699":7,"700":7,"701":8,"702":8,"703":4,"704":7,"705":7,"706":9,"707":9,"708":7,"709":6,"710":2,"711":8,"712":8,"713":5,"714":9,"715":7,"716":4,"717":9,"718":5,"719":5,"720":9,"721":3,"722":1,"723":7,"724":7,"725":10,"726":8,"727":5,"728":5,"729":3,"730":1,"731":4,"732":7,"733":4,"734":9,"735":8,"736":2,"737":9,"738":9,"739":6,"740":9,"741":7,"742":1,"743":8,"744":2,"745":1,"746":7,"747":10,"748":9,"749":8,"750":2,"751":9,"752":7,"753":7,"754":8,"755":7,"756":4,"757":2,"758":2,"759":7,"760":7,"761":2,"762":4,"763":7,"764":8,"765":8,"766":8,"767":8,"768":1,"769":2,"770":1,"771":3,"772":10,"773":6,"774":8,"775":5,"776":9,"777":1,"778":7,"779":2,"780":9,"781":8,"782":7,"783":7,"784":10,"785":9,"786":9,"787":9,"788":1,"789":10,"790":9,"791":7,"792":7,"793":1,"794":3,"795":8,"796":4,"797":8,"798":3,"799":5,"800":9,"801":8,"802":7,"803":8,"804":4,"805":8,"806":10,"807":8,"808":8,"809":8,"810":5,"811":3,"812":8,"813":10,"814":8,"815":3,"816":5,"817":7,"818":2,"819":5,"820":5,"821":9,"822":8,"823":8,"824":4,"825":6,"826":8,"827":8,"828":5,"829":9,"830":4,"831":10,"832":5,"833":3,"834":2,"835":5,"836":8,"837":9,"838":7,"839":1,"840":9,"841":4,"842":2,"843":7,"844":8,"845":2,"846":5,"847":10,"848":10,"849":7,"850":7,"851":8,"852":8,"853":9,"854":4,"855":1,"856":1,"857":5,"858":8,"859":4,"860":10,"861":2,"862":10,"863":9,"864":7,"865":2,"866":5,"867":5,"868":10,"869":8,"870":10,"871":6,"872":2,"873":8,"874":9,"875":7,"876":7,"877":5,"878":8,"879":7,"880":2,"881":2,"882":7,"883":4,"884":10,"885":7,"886":3,"887":2,"888":9,"889":2,"890":2,"891":6,"892":8,"893":8,"894":5,"895":5,"896":3,"897":4,"898":3,"899":8,"900":10,"901":8,"902":4,"903":1,"904":7,"905":9,"906":8,"907":3,"908":8,"909":7,"910":9,"911":8,"912":9,"913":3,"914":3,"915":9,"916":5,"917":7,"918":7,"919":2,"920":10,"921":7,"922":3,"923":5,"924":7,"925":2,"926":7,"927":8,"928":8,"929":6,"930":8,"931":9,"932":8,"933":2,"934":2,"935":6,"936":6,"937":7,"938":8,"939":9,"940":9,"941":4,"942":5,"943":2,"944":6,"945":3,"946":7,"947":7,"948":7,"949":7,"950":7,"951":9,"952":5,"953":3,"954":3,"955":3,"956":9,"957":6,"958":2,"959":8,"960":8,"961":7,"962":7,"963":5,"964":10,"965":8,"966":8,"967":9,"968":8,"969":5,"970":7,"971":8,"972":3,"973":5,"974":8,"975":4,"976":9,"977":3,"978":9,"979":3,"980":9,"981":8,"982":3,"983":9,"984":2,"985":5,"986":9,"987":8,"988":10,"989":7,"990":8,"991":2,"992":2,"993":4,"994":4,"995":1,"996":3,"997":8,"998":2,"999":3,"1000":9,"1001":8,"1002":6,"1003":7,"1004":2,"1005":8,"1006":7,"1007":1,"1008":8,"1009":7,"1010":7,"1011":8,"1012":8,"1013":8,"1014":5,"1015":7,"1016":9,"1017":9,"1018":10,"1019":8,"1020":7,"1021":8,"1022":7,"1023":10,"1024":8,"1025":1,"1026":5,"1027":2,"1028":7,"1029":6,"1030":5,"1031":7,"1032":7,"1033":7,"1034":10,"1035":9,"1036":5,"1037":5,"1038":5,"1039":9,"1040":1,"1041":3,"1042":2,"1043":1,"1044":8,"1045":9,"1046":9,"1047":9,"1048":5,"1049":8,"1050":7,"1051":2,"1052":8,"1053":5,"1054":10,"1055":5,"1056":1,"1057":7,"1058":8,"1059":7,"1060":6,"1061":6,"1062":9,"1063":3,"1064":8,"1065":9,"1066":8,"1067":7,"1068":9,"1069":7,"1070":8,"1071":8,"1072":3,"1073":4,"1074":2,"1075":7,"1076":8,"1077":8,"1078":2,"1079":4,"1080":5,"1081":9,"1082":7,"1083":8,"1084":9,"1085":5,"1086":6,"1087":8,"1088":6,"1089":7,"1090":8,"1091":7,"1092":1,"1093":5,"1094":9,"1095":2,"1096":10,"1097":7,"1098":7,"1099":5,"1100":9,"1101":1,"1102":9,"1103":1,"1104":2,"1105":3,"1106":5,"1107":2,"1108":8,"1109":6,"1110":8,"1111":8,"1112":8,"1113":2,"1114":9,"1115":9,"1116":4,"1117":5,"1118":7,"1119":7,"1120":5,"1121":6,"1122":9,"1123":3,"1124":9,"1125":5,"1126":7,"1127":8,"1128":7,"1129":5,"1130":10,"1131":7,"1132":7,"1133":9,"1134":8,"1135":5,"1136":9,"1137":5,"1138":5,"1139":5,"1140":7,"1141":1,"1142":6,"1143":2,"1144":8,"1145":2,"1146":8,"1147":1,"1148":8,"1149":8,"1150":9,"1151":3,"1152":4,"1153":7,"1154":6,"1155":9,"1156":2,"1157":9,"1158":1,"1159":7,"1160":8,"1161":8,"1162":3,"1163":9,"1164":8,"1165":8,"1166":2,"1167":1,"1168":5,"1169":7,"1170":8,"1171":7,"1172":7,"1173":9,"1174":8,"1175":10,"1176":2,"1177":5,"1178":9,"1179":1,"1180":9,"1181":9,"1182":7,"1183":2,"1184":7,"1185":7,"1186":8,"1187":7,"1188":8,"1189":1,"1190":7,"1191":8,"1192":10,"1193":1,"1194":10,"1195":3,"1196":4,"1197":9,"1198":2,"1199":6,"1200":7,"1201":7,"1202":8,"1203":5,"1204":2,"1205":7,"1206":7,"1207":10,"1208":8,"1209":2,"1210":7,"1211":5,"1212":3,"1213":8,"1214":6,"1215":10,"1216":5,"1217":2,"1218":7,"1219":10,"1220":9,"1221":6,"1222":9,"1223":4,"1224":6,"1225":5,"1226":4,"1227":6,"1228":9,"1229":7,"1230":7,"1231":7,"1232":8,"1233":6,"1234":2,"1235":8,"1236":8,"1237":8,"1238":2,"1239":7,"1240":7,"1241":7,"1242":7,"1243":9,"1244":3,"1245":1,"1246":8,"1247":8,"1248":2,"1249":9,"1250":4,"1251":2,"1252":5,"1253":7,"1254":8,"1255":1,"1256":8,"1257":6,"1258":2,"1259":2,"1260":5,"1261":7,"1262":7,"1263":7,"1264":7,"1265":2,"1266":3,"1267":9,"1268":5,"1269":3,"1270":8,"1271":1,"1272":2,"1273":8,"1274":9,"1275":8,"1276":9,"1277":4,"1278":7,"1279":8,"1280":7,"1281":4,"1282":8,"1283":7,"1284":7,"1285":5,"1286":9,"1287":5,"1288":9,"1289":7,"1290":9,"1291":9,"1292":2,"1293":2,"1294":5,"1295":9,"1296":8,"1297":5,"1298":4,"1299":7,"1300":9,"1301":5,"1302":8,"1303":8,"1304":3,"1305":5,"1306":8,"1307":2,"1308":5,"1309":7,"1310":8,"1311":10,"1312":8,"1313":6,"1314":5,"1315":5,"1316":3,"1317":5,"1318":8,"1319":8,"1320":5,"1321":5,"1322":2,"1323":8,"1324":9,"1325":8,"1326":10,"1327":1,"1328":4,"1329":9,"1330":7,"1331":1,"1332":10,"1333":3,"1334":7,"1335":10,"1336":2,"1337":7,"1338":9,"1339":7,"1340":9,"1341":3,"1342":7,"1343":9,"1344":8,"1345":4,"1346":8,"1347":1,"1348":9,"1349":2,"1350":1,"1351":2,"1352":3,"1353":7,"1354":7,"1355":7,"1356":7,"1357":7,"1358":2,"1359":9,"1360":1,"1361":5,"1362":8,"1363":6,"1364":3,"1365":4,"1366":7,"1367":9,"1368":7,"1369":2,"1370":9,"1371":10,"1372":6,"1373":8,"1374":8,"1375":2,"1376":9,"1377":7,"1378":8,"1379":4,"1380":8,"1381":7,"1382":3,"1383":4,"1384":8,"1385":7,"1386":10,"1387":8,"1388":7,"1389":8,"1390":2,"1391":8,"1392":5,"1393":7,"1394":8,"1395":3,"1396":8,"1397":7,"1398":9,"1399":2,"1400":8,"1401":7,"1402":2,"1403":10,"1404":2,"1405":9,"1406":9,"1407":7,"1408":5,"1409":5,"1410":1,"1411":7,"1412":8,"1413":7,"1414":9,"1415":9,"1416":7,"1417":9,"1418":10,"1419":1,"1420":1,"1421":7,"1422":8,"1423":9,"1424":5,"1425":10,"1426":9,"1427":6,"1428":8,"1429":4,"1430":9,"1431":4,"1432":5,"1433":7,"1434":8,"1435":9,"1436":5,"1437":8,"1438":10,"1439":2,"1440":9,"1441":6,"1442":1,"1443":8,"1444":8,"1445":7,"1446":7,"1447":2,"1448":9,"1449":8,"1450":7,"1451":4,"1452":5,"1453":9,"1454":9,"1455":6,"1456":8,"1457":9,"1458":8,"1459":5,"1460":5,"1461":8,"1462":1,"1463":8,"1464":8,"1465":8,"1466":2,"1467":5,"1468":9,"1469":4,"1470":7,"1471":5,"1472":8,"1473":8,"1474":7,"1475":8,"1476":5,"1477":9,"1478":8,"1479":8,"1480":9,"1481":7,"1482":9,"1483":5,"1484":8,"1485":5,"1486":9,"1487":8,"1488":5,"1489":2,"1490":8,"1491":7,"1492":9,"1493":5,"1494":3,"1495":1,"1496":9,"1497":2,"1498":5,"1499":5,"1500":5,"1501":2,"1502":8,"1503":8,"1504":4,"1505":9,"1506":9,"1507":5,"1508":1,"1509":7,"1510":3,"1511":2,"1512":7,"1513":9,"1514":9,"1515":4,"1516":10,"1517":10,"1518":8,"1519":7,"1520":4,"1521":8,"1522":7,"1523":8,"1524":2,"1525":9,"1526":6,"1527":6,"1528":5,"1529":8,"1530":6,"1531":2,"1532":10,"1533":8,"1534":9,"1535":2,"1536":8,"1537":4,"1538":2,"1539":7,"1540":2,"1541":5,"1542":2,"1543":1,"1544":7,"1545":7,"1546":2,"1547":9,"1548":1,"1549":9,"1550":8,"1551":9,"1552":7,"1553":3,"1554":7,"1555":7,"1556":6,"1557":5,"1558":7,"1559":9,"1560":7,"1561":5,"1562":8,"1563":7,"1564":9,"1565":7,"1566":9,"1567":8,"1568":9,"1569":7,"1570":7,"1571":6,"1572":8,"1573":9,"1574":3,"1575":10,"1576":8,"1577":8,"1578":4,"1579":5,"1580":9,"1581":8,"1582":9,"1583":8,"1584":9,"1585":2,"1586":1,"1587":9,"1588":8,"1589":8,"1590":9,"1591":2,"1592":4,"1593":8,"1594":4,"1595":5,"1596":10,"1597":6,"1598":9,"1599":6,"1600":6,"1601":9,"1602":5,"1603":3,"1604":8,"1605":5,"1606":9,"1607":10,"1608":8,"1609":6,"1610":9,"1611":7,"1612":6,"1613":5,"1614":9,"1615":2,"1616":1,"1617":9,"1618":6,"1619":7,"1620":3,"1621":9,"1622":7,"1623":8,"1624":4,"1625":3,"1626":9,"1627":7,"1628":7,"1629":7,"1630":9,"1631":8,"1632":6,"1633":9,"1634":2,"1635":10,"1636":3,"1637":4,"1638":10,"1639":7,"1640":9,"1641":1,"1642":1,"1643":4,"1644":4,"1645":7,"1646":2,"1647":5,"1648":5,"1649":3,"1650":7,"1651":4,"1652":9,"1653":8,"1654":5,"1655":5,"1656":2,"1657":2,"1658":2,"1659":10,"1660":10,"1661":4,"1662":2,"1663":5,"1664":8,"1665":7,"1666":7,"1667":5,"1668":1,"1669":4,"1670":8,"1671":7,"1672":2,"1673":8,"1674":5,"1675":8,"1676":4,"1677":1,"1678":9,"1679":8,"1680":3,"1681":7,"1682":8,"1683":8,"1684":7,"1685":9,"1686":7,"1687":7,"1688":7,"1689":8,"1690":8,"1691":2,"1692":3,"1693":8,"1694":3,"1695":8,"1696":2,"1697":2,"1698":2,"1699":8,"1700":7,"1701":7,"1702":1,"1703":7,"1704":7,"1705":8,"1706":7,"1707":2,"1708":7,"1709":8,"1710":9,"1711":7,"1712":10,"1713":5,"1714":8,"1715":10,"1716":8,"1717":4,"1718":9,"1719":2,"1720":1,"1721":8,"1722":7,"1723":3,"1724":1,"1725":7,"1726":5,"1727":5,"1728":2,"1729":2,"1730":7,"1731":7,"1732":7,"1733":7,"1734":7,"1735":7,"1736":9,"1737":8,"1738":7,"1739":2,"1740":7,"1741":10,"1742":7,"1743":5,"1744":4,"1745":9,"1746":9,"1747":9,"1748":7,"1749":7,"1750":8,"1751":3,"1752":7,"1753":2,"1754":7,"1755":6,"1756":4,"1757":8,"1758":4,"1759":8,"1760":1,"1761":4,"1762":2,"1763":7,"1764":7,"1765":8,"1766":2,"1767":7,"1768":9,"1769":6,"1770":5,"1771":8,"1772":8,"1773":1,"1774":5,"1775":6,"1776":7,"1777":9,"1778":8,"1779":9,"1780":7,"1781":7,"1782":2,"1783":7,"1784":7,"1785":8,"1786":2,"1787":9,"1788":2,"1789":5,"1790":1,"1791":5,"1792":8,"1793":3,"1794":2,"1795":5,"1796":2,"1797":7,"1798":8,"1799":7,"1800":8,"1801":8,"1802":8,"1803":7,"1804":1,"1805":2,"1806":5,"1807":9,"1808":3,"1809":2,"1810":7,"1811":7,"1812":7,"1813":7,"1814":9,"1815":8,"1816":8,"1817":7,"1818":6,"1819":3,"1820":8,"1821":8,"1822":6,"1823":5,"1824":4,"1825":7,"1826":7,"1827":9,"1828":8,"1829":7,"1830":5,"1831":6,"1832":4,"1833":7,"1834":8,"1835":9,"1836":5,"1837":9,"1838":4,"1839":2,"1840":7,"1841":8,"1842":9,"1843":7,"1844":2,"1845":9,"1846":5,"1847":2,"1848":7,"1849":9,"1850":8,"1851":8,"1852":7,"1853":7,"1854":5,"1855":8,"1856":10,"1857":6,"1858":9,"1859":1,"1860":6,"1861":5,"1862":7,"1863":7,"1864":5,"1865":1,"1866":9,"1867":9,"1868":7,"1869":3,"1870":10,"1871":7,"1872":4,"1873":7,"1874":7,"1875":10,"1876":9,"1877":8,"1878":8,"1879":2,"1880":5,"1881":2,"1882":8,"1883":1,"1884":9,"1885":2,"1886":3,"1887":7,"1888":2,"1889":1,"1890":8,"1891":7,"1892":10,"1893":2,"1894":2,"1895":7,"1896":7,"1897":2,"1898":7,"1899":7,"1900":7,"1901":3,"1902":8,"1903":8,"1904":8,"1905":5,"1906":10,"1907":9,"1908":3,"1909":3,"1910":7,"1911":9,"1912":7,"1913":3,"1914":7,"1915":7,"1916":8,"1917":4,"1918":3,"1919":8,"1920":5,"1921":7,"1922":8,"1923":8,"1924":7,"1925":1,"1926":7,"1927":2,"1928":5,"1929":7,"1930":7,"1931":8,"1932":9,"1933":5,"1934":5,"1935":6,"1936":8,"1937":9,"1938":8,"1939":5,"1940":3,"1941":7,"1942":8,"1943":8,"1944":7,"1945":5,"1946":7,"1947":8,"1948":9,"1949":8,"1950":9,"1951":6,"1952":7,"1953":2,"1954":8,"1955":8,"1956":9,"1957":6,"1958":4,"1959":9,"1960":4,"1961":6,"1962":8,"1963":7,"1964":1,"1965":7,"1966":7,"1967":8,"1968":9,"1969":8,"1970":3,"1971":6,"1972":7,"1973":8,"1974":5,"1975":9,"1976":8,"1977":6,"1978":10,"1979":9,"1980":9,"1981":6,"1982":8,"1983":10,"1984":8,"1985":6,"1986":9,"1987":2,"1988":2,"1989":7,"1990":9,"1991":3,"1992":7,"1993":6,"1994":8,"1995":4,"1996":5,"1997":7,"1998":7,"1999":8,"2000":5,"2001":8,"2002":2,"2003":9,"2004":10,"2005":8,"2006":7,"2007":5,"2008":7,"2009":5,"2010":6,"2011":10,"2012":7,"2013":2,"2014":4,"2015":8,"2016":3,"2017":9,"2018":9,"2019":6,"2020":8,"2021":6,"2022":4,"2023":3,"2024":5,"2025":4,"2026":8,"2027":6,"2028":3,"2029":9,"2030":8,"2031":7,"2032":2,"2033":7,"2034":8,"2035":6,"2036":4,"2037":8,"2038":5,"2039":7,"2040":9,"2041":2,"2042":5,"2043":7,"2044":9,"2045":6,"2046":3,"2047":3,"2048":9,"2049":7,"2050":1,"2051":8,"2052":7,"2053":9,"2054":7,"2055":8,"2056":8,"2057":6,"2058":4,"2059":9,"2060":3,"2061":9,"2062":8,"2063":5,"2064":4,"2065":7,"2066":5,"2067":9,"2068":7,"2069":7,"2070":8,"2071":10,"2072":5,"2073":6,"2074":8,"2075":7,"2076":4,"2077":8,"2078":6,"2079":6,"2080":7,"2081":3,"2082":8,"2083":6,"2084":7,"2085":7,"2086":10,"2087":5,"2088":8,"2089":9,"2090":9,"2091":7,"2092":7,"2093":4,"2094":7,"2095":8,"2096":7,"2097":8,"2098":6,"2099":10,"2100":2,"2101":8,"2102":5,"2103":5,"2104":7,"2105":7,"2106":7,"2107":7,"2108":3,"2109":5,"2110":2,"2111":4,"2112":5,"2113":9,"2114":2,"2115":8,"2116":9,"2117":2,"2118":4,"2119":4,"2120":5,"2121":2,"2122":7,"2123":10,"2124":5,"2125":9,"2126":7,"2127":2,"2128":2,"2129":8,"2130":7,"2131":7,"2132":6,"2133":7,"2134":4,"2135":2,"2136":7,"2137":10,"2138":2,"2139":8,"2140":7,"2141":5,"2142":8,"2143":8,"2144":9,"2145":6,"2146":7,"2147":7,"2148":2,"2149":1,"2150":6,"2151":8,"2152":5,"2153":6,"2154":8,"2155":7,"2156":2,"2157":7,"2158":10,"2159":8,"2160":8,"2161":8,"2162":1,"2163":8,"2164":7,"2165":5,"2166":9,"2167":8,"2168":8,"2169":8,"2170":7,"2171":9,"2172":6,"2173":8,"2174":5,"2175":9,"2176":2,"2177":2,"2178":9,"2179":1,"2180":7,"2181":9,"2182":7,"2183":2,"2184":9,"2185":8,"2186":2,"2187":3,"2188":5,"2189":8,"2190":8,"2191":8,"2192":8,"2193":7,"2194":9,"2195":8,"2196":2,"2197":6,"2198":8,"2199":7,"2200":7,"2201":9,"2202":7,"2203":4,"2204":7,"2205":2,"2206":8,"2207":7,"2208":9,"2209":7,"2210":8,"2211":9,"2212":5,"2213":5,"2214":8,"2215":8,"2216":2,"2217":7,"2218":8,"2219":9,"2220":7,"2221":5,"2222":2,"2223":3,"2224":1,"2225":8,"2226":5,"2227":10,"2228":5,"2229":7,"2230":7,"2231":10,"2232":5,"2233":9,"2234":7,"2235":5,"2236":7,"2237":9,"2238":7,"2239":10,"2240":8,"2241":10,"2242":2,"2243":8,"2244":8,"2245":8,"2246":7,"2247":1,"2248":2,"2249":2,"2250":8,"2251":1,"2252":7,"2253":9,"2254":9,"2255":8,"2256":5,"2257":5,"2258":9,"2259":8,"2260":10,"2261":8,"2262":7,"2263":4,"2264":9,"2265":9,"2266":9,"2267":5,"2268":2,"2269":3,"2270":9,"2271":6,"2272":8,"2273":6,"2274":9,"2275":5,"2276":8,"2277":5,"2278":3,"2279":5,"2280":3,"2281":8,"2282":8,"2283":3,"2284":7,"2285":8,"2286":5,"2287":9,"2288":4,"2289":8,"2290":8,"2291":9,"2292":8,"2293":9,"2294":8,"2295":5,"2296":7,"2297":5,"2298":8,"2299":2,"2300":9,"2301":8,"2302":7,"2303":6,"2304":3,"2305":1,"2306":8,"2307":5,"2308":2,"2309":2,"2310":7,"2311":4,"2312":4,"2313":7,"2314":2,"2315":1,"2316":8,"2317":1,"2318":8,"2319":7,"2320":7,"2321":9,"2322":1,"2323":9,"2324":1,"2325":6,"2326":7,"2327":7,"2328":9,"2329":7,"2330":7,"2331":8,"2332":7,"2333":8,"2334":4,"2335":7,"2336":9,"2337":2,"2338":8,"2339":7,"2340":7,"2341":9,"2342":5,"2343":8,"2344":5,"2345":9,"2346":9,"2347":4,"2348":5,"2349":9,"2350":2,"2351":7,"2352":1,"2353":1,"2354":7,"2355":10,"2356":8,"2357":5,"2358":5,"2359":8,"2360":10,"2361":7,"2362":7,"2363":10,"2364":8,"2365":9,"2366":8,"2367":7,"2368":1,"2369":2,"2370":4,"2371":6,"2372":7,"2373":7,"2374":2,"2375":9,"2376":8,"2377":7,"2378":9,"2379":8,"2380":7,"2381":8,"2382":5,"2383":2,"2384":7,"2385":7,"2386":7,"2387":7,"2388":1,"2389":5,"2390":8,"2391":8,"2392":6,"2393":8,"2394":1,"2395":7,"2396":7,"2397":8,"2398":3,"2399":7,"2400":1,"2401":9,"2402":2,"2403":9,"2404":8,"2405":7,"2406":5,"2407":9,"2408":3,"2409":6,"2410":9,"2411":4,"2412":8,"2413":10,"2414":2,"2415":9,"2416":10,"2417":3,"2418":7,"2419":2,"2420":8,"2421":7,"2422":8,"2423":7,"2424":8,"2425":8,"2426":7,"2427":7,"2428":9,"2429":9,"2430":4,"2431":9,"2432":2,"2433":8,"2434":2,"2435":9,"2436":2,"2437":8,"2438":2,"2439":7,"2440":5,"2441":9,"2442":4,"2443":2,"2444":9,"2445":9,"2446":10,"2447":9,"2448":7,"2449":7,"2450":5,"2451":6,"2452":8,"2453":8,"2454":8,"2455":9,"2456":10,"2457":9,"2458":5,"2459":9,"2460":3,"2461":7,"2462":9,"2463":8,"2464":4,"2465":7,"2466":9,"2467":5,"2468":7,"2469":5,"2470":8,"2471":7,"2472":3,"2473":2,"2474":9,"2475":8,"2476":7,"2477":2,"2478":7,"2479":7,"2480":9,"2481":7,"2482":5,"2483":4,"2484":9,"2485":7,"2486":3,"2487":8,"2488":8,"2489":9,"2490":8,"2491":8,"2492":8,"2493":7,"2494":7,"2495":2,"2496":2,"2497":8,"2498":9,"2499":8,"2500":9,"2501":8,"2502":4,"2503":10,"2504":10,"2505":9,"2506":9,"2507":9,"2508":5,"2509":10,"2510":1,"2511":2,"2512":5,"2513":6,"2514":7,"2515":6,"2516":6,"2517":8,"2518":8,"2519":7,"2520":10,"2521":5,"2522":3,"2523":8,"2524":5,"2525":5,"2526":5,"2527":5,"2528":8,"2529":7,"2530":10,"2531":1,"2532":1,"2533":7,"2534":10,"2535":2,"2536":8,"2537":5,"2538":8,"2539":7,"2540":2,"2541":3,"2542":1,"2543":7,"2544":8,"2545":5,"2546":10,"2547":7,"2548":2,"2549":4,"2550":7,"2551":5,"2552":1,"2553":4,"2554":2,"2555":8,"2556":10,"2557":9,"2558":2,"2559":9,"2560":7,"2561":5,"2562":8,"2563":9,"2564":9,"2565":7,"2566":7,"2567":8,"2568":8,"2569":6,"2570":10,"2571":6,"2572":2,"2573":6,"2574":7,"2575":7,"2576":7,"2577":2,"2578":3,"2579":7,"2580":9,"2581":1,"2582":3,"2583":7,"2584":3,"2585":8,"2586":9,"2587":7,"2588":5,"2589":9,"2590":9,"2591":8,"2592":8,"2593":8,"2594":8,"2595":5,"2596":8,"2597":9,"2598":8,"2599":3,"2600":3,"2601":8,"2602":8,"2603":6,"2604":4,"2605":8,"2606":2,"2607":3,"2608":4,"2609":5,"2610":7,"2611":10,"2612":9,"2613":2,"2614":7,"2615":9,"2616":7,"2617":7,"2618":5,"2619":5,"2620":4,"2621":2,"2622":4,"2623":9,"2624":6,"2625":8,"2626":7,"2627":3,"2628":8,"2629":7,"2630":10,"2631":7,"2632":5,"2633":7,"2634":10,"2635":6,"2636":8,"2637":9,"2638":9,"2639":8,"2640":5,"2641":4,"2642":7,"2643":9,"2644":10,"2645":10,"2646":2,"2647":9,"2648":9,"2649":2,"2650":8,"2651":9,"2652":1,"2653":7,"2654":9,"2655":7,"2656":2,"2657":3,"2658":4,"2659":5,"2660":2,"2661":9,"2662":3,"2663":7,"2664":2,"2665":3,"2666":4,"2667":5,"2668":5,"2669":10,"2670":8,"2671":7,"2672":2,"2673":4,"2674":4,"2675":3,"2676":8,"2677":3,"2678":10,"2679":4,"2680":4,"2681":9,"2682":2,"2683":2,"2684":8,"2685":8,"2686":8,"2687":9,"2688":9,"2689":3,"2690":9,"2691":1,"2692":10,"2693":8,"2694":8,"2695":5,"2696":9,"2697":9,"2698":3,"2699":7,"2700":8,"2701":7,"2702":3,"2703":9,"2704":7,"2705":2,"2706":7,"2707":1,"2708":4,"2709":9,"2710":9,"2711":7,"2712":1,"2713":8,"2714":9,"2715":8,"2716":5,"2717":7,"2718":10,"2719":8,"2720":7,"2721":8,"2722":8,"2723":8,"2724":8,"2725":10,"2726":5,"2727":7,"2728":2,"2729":10,"2730":2,"2731":6,"2732":1,"2733":2,"2734":8,"2735":7,"2736":7,"2737":8,"2738":9,"2739":8,"2740":5,"2741":5,"2742":4,"2743":5,"2744":2,"2745":9,"2746":2,"2747":8,"2748":7,"2749":2,"2750":8,"2751":9,"2752":7,"2753":7,"2754":2,"2755":10,"2756":8,"2757":4,"2758":6,"2759":7,"2760":2,"2761":9,"2762":5,"2763":7,"2764":7,"2765":2,"2766":7,"2767":9,"2768":10,"2769":9,"2770":7,"2771":6,"2772":7,"2773":10,"2774":7,"2775":7,"2776":8,"2777":5,"2778":7,"2779":7,"2780":5,"2781":6,"2782":8,"2783":5,"2784":8,"2785":7,"2786":8,"2787":5,"2788":2,"2789":8,"2790":9,"2791":8,"2792":8,"2793":3,"2794":4,"2795":3,"2796":9,"2797":1,"2798":10,"2799":8,"2800":8,"2801":10,"2802":9,"2803":8,"2804":6,"2805":5,"2806":1,"2807":2,"2808":8,"2809":5,"2810":7,"2811":8,"2812":6,"2813":4,"2814":8,"2815":3,"2816":1,"2817":8,"2818":1,"2819":6,"2820":8,"2821":8,"2822":7,"2823":2,"2824":2,"2825":5,"2826":1,"2827":8,"2828":7,"2829":7,"2830":6,"2831":2,"2832":7,"2833":8,"2834":8,"2835":4,"2836":10,"2837":4,"2838":8,"2839":8,"2840":1,"2841":7,"2842":9,"2843":7,"2844":9,"2845":1,"2846":10,"2847":7,"2848":7,"2849":8,"2850":8,"2851":6,"2852":2,"2853":3,"2854":8,"2855":8,"2856":7,"2857":9,"2858":1,"2859":9,"2860":2,"2861":1,"2862":5,"2863":8,"2864":8,"2865":8,"2866":5,"2867":8,"2868":2,"2869":7,"2870":5,"2871":2,"2872":8,"2873":7,"2874":5,"2875":7,"2876":9,"2877":7,"2878":7,"2879":5,"2880":9,"2881":5,"2882":1,"2883":7,"2884":9,"2885":8,"2886":9,"2887":8,"2888":9,"2889":7,"2890":4,"2891":1,"2892":9,"2893":5,"2894":5,"2895":6,"2896":7,"2897":7,"2898":10,"2899":5,"2900":6,"2901":10,"2902":7,"2903":7,"2904":6,"2905":9,"2906":7,"2907":1,"2908":7,"2909":9,"2910":7,"2911":6,"2912":7,"2913":8,"2914":9,"2915":8,"2916":1,"2917":5,"2918":5,"2919":7,"2920":1,"2921":4,"2922":8,"2923":10,"2924":6,"2925":9,"2926":5,"2927":2,"2928":9,"2929":8,"2930":7,"2931":5,"2932":5,"2933":8,"2934":8,"2935":8,"2936":8,"2937":2,"2938":7,"2939":7,"2940":3,"2941":7,"2942":5,"2943":10,"2944":7,"2945":7,"2946":9,"2947":5,"2948":2,"2949":10,"2950":7,"2951":8,"2952":10,"2953":5,"2954":8,"2955":5,"2956":8,"2957":3,"2958":6,"2959":5,"2960":7,"2961":8,"2962":9,"2963":8,"2964":7,"2965":9,"2966":2,"2967":4,"2968":5,"2969":2,"2970":8,"2971":5,"2972":8,"2973":7,"2974":8,"2975":10,"2976":8,"2977":5,"2978":3,"2979":8,"2980":7,"2981":5,"2982":7,"2983":6,"2984":8,"2985":9,"2986":7,"2987":9,"2988":9,"2989":7,"2990":1,"2991":6,"2992":8,"2993":4,"2994":8,"2995":1,"2996":9,"2997":2,"2998":2,"2999":9,"3000":8,"3001":8,"3002":2,"3003":5,"3004":8,"3005":9,"3006":5,"3007":2,"3008":10,"3009":7,"3010":6,"3011":3,"3012":8,"3013":6,"3014":5,"3015":2,"3016":4,"3017":5,"3018":2,"3019":1,"3020":7,"3021":6,"3022":1,"3023":7,"3024":1,"3025":5,"3026":7,"3027":2,"3028":9,"3029":4,"3030":5,"3031":8,"3032":4,"3033":9,"3034":9,"3035":5,"3036":5,"3037":5,"3038":4,"3039":9,"3040":8,"3041":8,"3042":7,"3043":8,"3044":7,"3045":1,"3046":1,"3047":8,"3048":10,"3049":1,"3050":2,"3051":9,"3052":8,"3053":8,"3054":7,"3055":8,"3056":2,"3057":8,"3058":10,"3059":8,"3060":7,"3061":7,"3062":8,"3063":2,"3064":7,"3065":2,"3066":9,"3067":9,"3068":10,"3069":9,"3070":8,"3071":5,"3072":3,"3073":8,"3074":7,"3075":7,"3076":8,"3077":7,"3078":9,"3079":6,"3080":7,"3081":2,"3082":5,"3083":5,"3084":7,"3085":5,"3086":5,"3087":10,"3088":3,"3089":4,"3090":8,"3091":10,"3092":9,"3093":5,"3094":10,"3095":4,"3096":7,"3097":5,"3098":8,"3099":9,"3100":1,"3101":3,"3102":7,"3103":8,"3104":2,"3105":8,"3106":9,"3107":2,"3108":4,"3109":8,"3110":2,"3111":2,"3112":7,"3113":8,"3114":5,"3115":7,"3116":3,"3117":8,"3118":7,"3119":3,"3120":7,"3121":8,"3122":7,"3123":8,"3124":9,"3125":7,"3126":8,"3127":8,"3128":7,"3129":3,"3130":3,"3131":9,"3132":1,"3133":8,"3134":7,"3135":7,"3136":9,"3137":9,"3138":8,"3139":7,"3140":1,"3141":7,"3142":9,"3143":9,"3144":10,"3145":8,"3146":3,"3147":8,"3148":3,"3149":9,"3150":7,"3151":7,"3152":3,"3153":7,"3154":1,"3155":2,"3156":4,"3157":9,"3158":5,"3159":3,"3160":3,"3161":7,"3162":1,"3163":7,"3164":7,"3165":8,"3166":10,"3167":4,"3168":8,"3169":2,"3170":3,"3171":9,"3172":8,"3173":8,"3174":5,"3175":1,"3176":3,"3177":7,"3178":10,"3179":8,"3180":8,"3181":7,"3182":3,"3183":9,"3184":6,"3185":9,"3186":3,"3187":2,"3188":5,"3189":4,"3190":1,"3191":6,"3192":3,"3193":1,"3194":9,"3195":2,"3196":8,"3197":6,"3198":9,"3199":3,"3200":7,"3201":3,"3202":7,"3203":8,"3204":10,"3205":7,"3206":8,"3207":8,"3208":6,"3209":7,"3210":8,"3211":6,"3212":2,"3213":9,"3214":8,"3215":5,"3216":8,"3217":8,"3218":8,"3219":9,"3220":8,"3221":6,"3222":2,"3223":7,"3224":1,"3225":7,"3226":8,"3227":8,"3228":9,"3229":7,"3230":10,"3231":4,"3232":6,"3233":6,"3234":7,"3235":7,"3236":9,"3237":7,"3238":7,"3239":8,"3240":4,"3241":7,"3242":5,"3243":1,"3244":7,"3245":9,"3246":8,"3247":8,"3248":5,"3249":7,"3250":2,"3251":8,"3252":7,"3253":7,"3254":5,"3255":8,"3256":2,"3257":6,"3258":6,"3259":7,"3260":8,"3261":8,"3262":5,"3263":5,"3264":9,"3265":4,"3266":9,"3267":9,"3268":8,"3269":8,"3270":7,"3271":8,"3272":10,"3273":10,"3274":2,"3275":3,"3276":8,"3277":2,"3278":3,"3279":8,"3280":10,"3281":8,"3282":8,"3283":2,"3284":9,"3285":8,"3286":7,"3287":1,"3288":7,"3289":8,"3290":4,"3291":3,"3292":2,"3293":7,"3294":8,"3295":7,"3296":8,"3297":5,"3298":8,"3299":5,"3300":7,"3301":2,"3302":7,"3303":5,"3304":1,"3305":8,"3306":7,"3307":5,"3308":7,"3309":7,"3310":4,"3311":8,"3312":10,"3313":7,"3314":4,"3315":2,"3316":5,"3317":3,"3318":7,"3319":6,"3320":9,"3321":4,"3322":1,"3323":9,"3324":3,"3325":3,"3326":2,"3327":3,"3328":8,"3329":8,"3330":6,"3331":7,"3332":2,"3333":2,"3334":9,"3335":2,"3336":3,"3337":8,"3338":2,"3339":1,"3340":7,"3341":6,"3342":8,"3343":1,"3344":7,"3345":7,"3346":7,"3347":8,"3348":5,"3349":9,"3350":7,"3351":2,"3352":1,"3353":10,"3354":3,"3355":9,"3356":8,"3357":10,"3358":4,"3359":5,"3360":9,"3361":10,"3362":9,"3363":2,"3364":6,"3365":8,"3366":5,"3367":6,"3368":6,"3369":1,"3370":7,"3371":8,"3372":8,"3373":2,"3374":8,"3375":10,"3376":5,"3377":1,"3378":5,"3379":7,"3380":1,"3381":7,"3382":8,"3383":4,"3384":4,"3385":1,"3386":7,"3387":2,"3388":9,"3389":8,"3390":7,"3391":8,"3392":1,"3393":8,"3394":8,"3395":1,"3396":3,"3397":9,"3398":8,"3399":5,"3400":10,"3401":3,"3402":4,"3403":2,"3404":1,"3405":7,"3406":9,"3407":8,"3408":7,"3409":7,"3410":8,"3411":7,"3412":8,"3413":9,"3414":9,"3415":5,"3416":7,"3417":7,"3418":5,"3419":8,"3420":6,"3421":7,"3422":1,"3423":5,"3424":8,"3425":9,"3426":9,"3427":7,"3428":10,"3429":2,"3430":7,"3431":2,"3432":3,"3433":9,"3434":8,"3435":2,"3436":9,"3437":9,"3438":8,"3439":4,"3440":8,"3441":4,"3442":8,"3443":2,"3444":9,"3445":9,"3446":10,"3447":2,"3448":8,"3449":8,"3450":5,"3451":7,"3452":8,"3453":2,"3454":6,"3455":5,"3456":8,"3457":8,"3458":6,"3459":6,"3460":5,"3461":9,"3462":7,"3463":4,"3464":9,"3465":6,"3466":9,"3467":1,"3468":3,"3469":5,"3470":8,"3471":5,"3472":2,"3473":9,"3474":7,"3475":7,"3476":9,"3477":9,"3478":8,"3479":6,"3480":8,"3481":8,"3482":2,"3483":9,"3484":9,"3485":6,"3486":7,"3487":6,"3488":5,"3489":8,"3490":9,"3491":9,"3492":7,"3493":7,"3494":2,"3495":9,"3496":7,"3497":5,"3498":7,"3499":9,"3500":1,"3501":3,"3502":7,"3503":1,"3504":4,"3505":8,"3506":7,"3507":9,"3508":4,"3509":7,"3510":9,"3511":4,"3512":8,"3513":9,"3514":9,"3515":3,"3516":7,"3517":7,"3518":5,"3519":6,"3520":1,"3521":2,"3522":5,"3523":8,"3524":7,"3525":3,"3526":9,"3527":8,"3528":9,"3529":9,"3530":8,"3531":9,"3532":9,"3533":3,"3534":3,"3535":5,"3536":6,"3537":1,"3538":5,"3539":8,"3540":8,"3541":9,"3542":3,"3543":1,"3544":4,"3545":7,"3546":2,"3547":8,"3548":3,"3549":9,"3550":9,"3551":8,"3552":1,"3553":1,"3554":8,"3555":2,"3556":8,"3557":7,"3558":3,"3559":7,"3560":7,"3561":8,"3562":8,"3563":10,"3564":7,"3565":10,"3566":8,"3567":9,"3568":2,"3569":8,"3570":10,"3571":4,"3572":10,"3573":7,"3574":2,"3575":8,"3576":7,"3577":2,"3578":8,"3579":4,"3580":9,"3581":9,"3582":7,"3583":7,"3584":7,"3585":2,"3586":8,"3587":2,"3588":8,"3589":8,"3590":7,"3591":2,"3592":9,"3593":5,"3594":6,"3595":7,"3596":2,"3597":6,"3598":7,"3599":8,"3600":6,"3601":8,"3602":5,"3603":8,"3604":3,"3605":10,"3606":8,"3607":8,"3608":10,"3609":2,"3610":10,"3611":9,"3612":5,"3613":5,"3614":7,"3615":4,"3616":8,"3617":2,"3618":8,"3619":6,"3620":2,"3621":9,"3622":8,"3623":1,"3624":8,"3625":3,"3626":8,"3627":2,"3628":8,"3629":7,"3630":8,"3631":9,"3632":7,"3633":1,"3634":5,"3635":2,"3636":8,"3637":8,"3638":8,"3639":2,"3640":5,"3641":9,"3642":9,"3643":5,"3644":4,"3645":7,"3646":4,"3647":1,"3648":1,"3649":6,"3650":5,"3651":9,"3652":5,"3653":8,"3654":9,"3655":7,"3656":8,"3657":5,"3658":9,"3659":7,"3660":7,"3661":10,"3662":7,"3663":9,"3664":6,"3665":7,"3666":2,"3667":8,"3668":8,"3669":3,"3670":1,"3671":2,"3672":1,"3673":5,"3674":2,"3675":9,"3676":9,"3677":3,"3678":7,"3679":7,"3680":2,"3681":2,"3682":2,"3683":4,"3684":4,"3685":7,"3686":5,"3687":6,"3688":7,"3689":7,"3690":1,"3691":8,"3692":8,"3693":2,"3694":8,"3695":8,"3696":9,"3697":3,"3698":5,"3699":7,"3700":9,"3701":7,"3702":9,"3703":5,"3704":5,"3705":10,"3706":7,"3707":10,"3708":9,"3709":3,"3710":9,"3711":8,"3712":9,"3713":8,"3714":10,"3715":9,"3716":8,"3717":7,"3718":6,"3719":3,"3720":8,"3721":5,"3722":8,"3723":4,"3724":2,"3725":1,"3726":6,"3727":8,"3728":2,"3729":7,"3730":8,"3731":9,"3732":7,"3733":7,"3734":6,"3735":2,"3736":5,"3737":2,"3738":7,"3739":2,"3740":9,"3741":7,"3742":8,"3743":7,"3744":7,"3745":8,"3746":3,"3747":1,"3748":8,"3749":8,"3750":9,"3751":4,"3752":8,"3753":8,"3754":2,"3755":3,"3756":8,"3757":7,"3758":5,"3759":3,"3760":7,"3761":9,"3762":7,"3763":2,"3764":4,"3765":5,"3766":8,"3767":9,"3768":7,"3769":1,"3770":8,"3771":7,"3772":7,"3773":8,"3774":7,"3775":4,"3776":1,"3777":7,"3778":8,"3779":3,"3780":7,"3781":8,"3782":5,"3783":8,"3784":1,"3785":7,"3786":3,"3787":7,"3788":9,"3789":3,"3790":8,"3791":9,"3792":7,"3793":2,"3794":2,"3795":5,"3796":2,"3797":6,"3798":6,"3799":6,"3800":5,"3801":2,"3802":9,"3803":9,"3804":7,"3805":8,"3806":8,"3807":8,"3808":8,"3809":6,"3810":8,"3811":1,"3812":6,"3813":5,"3814":8,"3815":10,"3816":9,"3817":7,"3818":8,"3819":1,"3820":5,"3821":10,"3822":8,"3823":8,"3824":1,"3825":8,"3826":7,"3827":8,"3828":7,"3829":10,"3830":8,"3831":9,"3832":7,"3833":4,"3834":4,"3835":2,"3836":6,"3837":7,"3838":9,"3839":3,"3840":7,"3841":2,"3842":10,"3843":7,"3844":7,"3845":10,"3846":8,"3847":8,"3848":2,"3849":1,"3850":5,"3851":9,"3852":3,"3853":8,"3854":7,"3855":8,"3856":5,"3857":3,"3858":4,"3859":6,"3860":8,"3861":8,"3862":4,"3863":6,"3864":4,"3865":9,"3866":7,"3867":5,"3868":8,"3869":10,"3870":8,"3871":9,"3872":10,"3873":5,"3874":5,"3875":9,"3876":7,"3877":1,"3878":7,"3879":6,"3880":3,"3881":5,"3882":9,"3883":8,"3884":7,"3885":2,"3886":8,"3887":7,"3888":1,"3889":1,"3890":8,"3891":6,"3892":2,"3893":8,"3894":8,"3895":4,"3896":8,"3897":8,"3898":8,"3899":9,"3900":7,"3901":7,"3902":8,"3903":8,"3904":8,"3905":9,"3906":8,"3907":9,"3908":8,"3909":9,"3910":9,"3911":8,"3912":3,"3913":4,"3914":5,"3915":1,"3916":9,"3917":5,"3918":1,"3919":9,"3920":7,"3921":3,"3922":9,"3923":2,"3924":3,"3925":5,"3926":1,"3927":2,"3928":4,"3929":7,"3930":6,"3931":8,"3932":2,"3933":7,"3934":10,"3935":8,"3936":7,"3937":8,"3938":8,"3939":8,"3940":2,"3941":5,"3942":1,"3943":8,"3944":8,"3945":8,"3946":8,"3947":5,"3948":1,"3949":8,"3950":7,"3951":10,"3952":8,"3953":2,"3954":7,"3955":8,"3956":8,"3957":8,"3958":7,"3959":9,"3960":7,"3961":8,"3962":5,"3963":8,"3964":7,"3965":4,"3966":4,"3967":5,"3968":8,"3969":5,"3970":6,"3971":7,"3972":9,"3973":8,"3974":9,"3975":8,"3976":7,"3977":7,"3978":8,"3979":1,"3980":8,"3981":3,"3982":9,"3983":6,"3984":10,"3985":2,"3986":2,"3987":8,"3988":9,"3989":6,"3990":10,"3991":7,"3992":9,"3993":5,"3994":9,"3995":5,"3996":7,"3997":8,"3998":9,"3999":8,"4000":7,"4001":9,"4002":8,"4003":2,"4004":9,"4005":7,"4006":9,"4007":8,"4008":9,"4009":9,"4010":7,"4011":7,"4012":7,"4013":8,"4014":9,"4015":4,"4016":9,"4017":7,"4018":9,"4019":5,"4020":4,"4021":5,"4022":5,"4023":9,"4024":7,"4025":9,"4026":7,"4027":8,"4028":10,"4029":9,"4030":2,"4031":8,"4032":8,"4033":7,"4034":2,"4035":5,"4036":8,"4037":7,"4038":9,"4039":7,"4040":7,"4041":7,"4042":7,"4043":8,"4044":6,"4045":10,"4046":3,"4047":2,"4048":5,"4049":9,"4050":5,"4051":2,"4052":10,"4053":8,"4054":6,"4055":9,"4056":5,"4057":5,"4058":3,"4059":7,"4060":7,"4061":8,"4062":5,"4063":8,"4064":8,"4065":4,"4066":2,"4067":7,"4068":9,"4069":7,"4070":9,"4071":1,"4072":5,"4073":8,"4074":9,"4075":2,"4076":7,"4077":6,"4078":3,"4079":7,"4080":8,"4081":10,"4082":9,"4083":8,"4084":5,"4085":7,"4086":5,"4087":1,"4088":7,"4089":2,"4090":4,"4091":2,"4092":7,"4093":9,"4094":6,"4095":2,"4096":4,"4097":3,"4098":8,"4099":7,"4100":1,"4101":6,"4102":1,"4103":2,"4104":3,"4105":8,"4106":7,"4107":2,"4108":8,"4109":2,"4110":7,"4111":10,"4112":4,"4113":6,"4114":4,"4115":7,"4116":4,"4117":8,"4118":8,"4119":8,"4120":10,"4121":5,"4122":9,"4123":6,"4124":8,"4125":8,"4126":3,"4127":10,"4128":8,"4129":9,"4130":7,"4131":7,"4132":2,"4133":9,"4134":2,"4135":4,"4136":6,"4137":2,"4138":9,"4139":7,"4140":10,"4141":5,"4142":8,"4143":7,"4144":9,"4145":10,"4146":10,"4147":9,"4148":8,"4149":1,"4150":7,"4151":7,"4152":1,"4153":2,"4154":8,"4155":1,"4156":5,"4157":2,"4158":8,"4159":9,"4160":8,"4161":9,"4162":2,"4163":5,"4164":2,"4165":2,"4166":1,"4167":2,"4168":3,"4169":5,"4170":2,"4171":9,"4172":3,"4173":4,"4174":2,"4175":2,"4176":8,"4177":7,"4178":8,"4179":7,"4180":2,"4181":7,"4182":8,"4183":7,"4184":2,"4185":2,"4186":8,"4187":7,"4188":8,"4189":7,"4190":4,"4191":7,"4192":10,"4193":7,"4194":8,"4195":9,"4196":9,"4197":1,"4198":8,"4199":2,"4200":3,"4201":8,"4202":8,"4203":6,"4204":7,"4205":8,"4206":4,"4207":2,"4208":9,"4209":8,"4210":1,"4211":10,"4212":2,"4213":1,"4214":8,"4215":4,"4216":2,"4217":2,"4218":4,"4219":6,"4220":8,"4221":7,"4222":4,"4223":9,"4224":10,"4225":2,"4226":10,"4227":10,"4228":2,"4229":9,"4230":1,"4231":6,"4232":9,"4233":10,"4234":8,"4235":8,"4236":1,"4237":6,"4238":7,"4239":7,"4240":1,"4241":7,"4242":5,"4243":7,"4244":5,"4245":2,"4246":7,"4247":10,"4248":1,"4249":8,"4250":3,"4251":8,"4252":2,"4253":9,"4254":7,"4255":8,"4256":7,"4257":2,"4258":8,"4259":2,"4260":9,"4261":1,"4262":8,"4263":9,"4264":9,"4265":1,"4266":8,"4267":8,"4268":7,"4269":2,"4270":7,"4271":9,"4272":7,"4273":8,"4274":9,"4275":6,"4276":2,"4277":8,"4278":3,"4279":2,"4280":9,"4281":8,"4282":8,"4283":7,"4284":7,"4285":8,"4286":9,"4287":9,"4288":10,"4289":6,"4290":7,"4291":10,"4292":1,"4293":9,"4294":10,"4295":5,"4296":10,"4297":7,"4298":8,"4299":6,"4300":5,"4301":8,"4302":7,"4303":9,"4304":5,"4305":7,"4306":8,"4307":8,"4308":3,"4309":7,"4310":10,"4311":7,"4312":2,"4313":5,"4314":2,"4315":9,"4316":5,"4317":3,"4318":5,"4319":5,"4320":9,"4321":5,"4322":9,"4323":7,"4324":5,"4325":9,"4326":3,"4327":1,"4328":7,"4329":8,"4330":7,"4331":3,"4332":1,"4333":7,"4334":3,"4335":2,"4336":5,"4337":5,"4338":8,"4339":8,"4340":7,"4341":7,"4342":8,"4343":8,"4344":3,"4345":6,"4346":5,"4347":5,"4348":7,"4349":8,"4350":7,"4351":5,"4352":3,"4353":4,"4354":8,"4355":4,"4356":6,"4357":8,"4358":6,"4359":5,"4360":8,"4361":9,"4362":10,"4363":8,"4364":5,"4365":9,"4366":7,"4367":8,"4368":5,"4369":8,"4370":1,"4371":8,"4372":5,"4373":10,"4374":8,"4375":4,"4376":8,"4377":8,"4378":7,"4379":9,"4380":8,"4381":9,"4382":5,"4383":7,"4384":9,"4385":4,"4386":9,"4387":10,"4388":7,"4389":6,"4390":2,"4391":1,"4392":1,"4393":7,"4394":7,"4395":9,"4396":7,"4397":7,"4398":9,"4399":7,"4400":9,"4401":3,"4402":7,"4403":8,"4404":5,"4405":5,"4406":4,"4407":4,"4408":9,"4409":8,"4410":3,"4411":2,"4412":8,"4413":8,"4414":9,"4415":8,"4416":9,"4417":8,"4418":2,"4419":9,"4420":3,"4421":2,"4422":7,"4423":9,"4424":5,"4425":8,"4426":10,"4427":8,"4428":1,"4429":10,"4430":7,"4431":2,"4432":5,"4433":8,"4434":3,"4435":2,"4436":1,"4437":8,"4438":4,"4439":7,"4440":5,"4441":9,"4442":7,"4443":4,"4444":1,"4445":7,"4446":4,"4447":7,"4448":3,"4449":2,"4450":8,"4451":8,"4452":5,"4453":9,"4454":1,"4455":9,"4456":7,"4457":6,"4458":8,"4459":1,"4460":8,"4461":5,"4462":2,"4463":5,"4464":9,"4465":2,"4466":9,"4467":1,"4468":4,"4469":7,"4470":4,"4471":3,"4472":9,"4473":9,"4474":1,"4475":9,"4476":7,"4477":2,"4478":7,"4479":9,"4480":8,"4481":2,"4482":9,"4483":7,"4484":9,"4485":8,"4486":7,"4487":7,"4488":8,"4489":8,"4490":8,"4491":9,"4492":5,"4493":7,"4494":6,"4495":8,"4496":7,"4497":2,"4498":8,"4499":7,"4500":2,"4501":9,"4502":8,"4503":1,"4504":8,"4505":2,"4506":9,"4507":4,"4508":3,"4509":7,"4510":8,"4511":7,"4512":7,"4513":7,"4514":8,"4515":10,"4516":5,"4517":8,"4518":9,"4519":4,"4520":8,"4521":3,"4522":5,"4523":9,"4524":10,"4525":4,"4526":5,"4527":7,"4528":4,"4529":9,"4530":7,"4531":4,"4532":5,"4533":4,"4534":3,"4535":4,"4536":7,"4537":1,"4538":8,"4539":5,"4540":7,"4541":8,"4542":2,"4543":5,"4544":5,"4545":9,"4546":7,"4547":9,"4548":2,"4549":8,"4550":7,"4551":9,"4552":10,"4553":5,"4554":9,"4555":8,"4556":8,"4557":7,"4558":8,"4559":7,"4560":2,"4561":4,"4562":7,"4563":7,"4564":7,"4565":8,"4566":5,"4567":8,"4568":7,"4569":6,"4570":7,"4571":1,"4572":8,"4573":6,"4574":8,"4575":10,"4576":5,"4577":9,"4578":2,"4579":3,"4580":8,"4581":5,"4582":5,"4583":9,"4584":6,"4585":9,"4586":8,"4587":7,"4588":7,"4589":5,"4590":6,"4591":2,"4592":8,"4593":2,"4594":9,"4595":9,"4596":5,"4597":4,"4598":8,"4599":9,"4600":9,"4601":5,"4602":5,"4603":7,"4604":8,"4605":8,"4606":5,"4607":8,"4608":7,"4609":7,"4610":8,"4611":9,"4612":5,"4613":5,"4614":5,"4615":7,"4616":7,"4617":4,"4618":2,"4619":8,"4620":2,"4621":7,"4622":7,"4623":5,"4624":10,"4625":7,"4626":6,"4627":6,"4628":7,"4629":5,"4630":8,"4631":8,"4632":8,"4633":8,"4634":1,"4635":7,"4636":5,"4637":2,"4638":3,"4639":9,"4640":7,"4641":9,"4642":2,"4643":2,"4644":7,"4645":2,"4646":7,"4647":9,"4648":9,"4649":7,"4650":7,"4651":1,"4652":9,"4653":2,"4654":10,"4655":6,"4656":1,"4657":8,"4658":10,"4659":8,"4660":3,"4661":9,"4662":7,"4663":8,"4664":9,"4665":7,"4666":8,"4667":4,"4668":7,"4669":8,"4670":9,"4671":9,"4672":2,"4673":2,"4674":7,"4675":3,"4676":7,"4677":6,"4678":8,"4679":7,"4680":9,"4681":9,"4682":1,"4683":4,"4684":1,"4685":5,"4686":10,"4687":8,"4688":2,"4689":5,"4690":8,"4691":7,"4692":7,"4693":7,"4694":8,"4695":8,"4696":6,"4697":2,"4698":7,"4699":10,"4700":3,"4701":6,"4702":9,"4703":8,"4704":9,"4705":7,"4706":7,"4707":9,"4708":9,"4709":8,"4710":2,"4711":9,"4712":2,"4713":2,"4714":3,"4715":9,"4716":7,"4717":9,"4718":3,"4719":5,"4720":2,"4721":8,"4722":9,"4723":8,"4724":6,"4725":9,"4726":4,"4727":7,"4728":4,"4729":1,"4730":8,"4731":2,"4732":1,"4733":6,"4734":10,"4735":8,"4736":8,"4737":10,"4738":9,"4739":2,"4740":10,"4741":7,"4742":7,"4743":6,"4744":8,"4745":7,"4746":9,"4747":9,"4748":6,"4749":5,"4750":5,"4751":3,"4752":10,"4753":9,"4754":7,"4755":7,"4756":2,"4757":5,"4758":8,"4759":8,"4760":2,"4761":7,"4762":7,"4763":2,"4764":8,"4765":8,"4766":8,"4767":9,"4768":8,"4769":5,"4770":5,"4771":8,"4772":4,"4773":8,"4774":10,"4775":7,"4776":9,"4777":1,"4778":8,"4779":3,"4780":1,"4781":7,"4782":4,"4783":9,"4784":9,"4785":1,"4786":7,"4787":7,"4788":8,"4789":8,"4790":7,"4791":8,"4792":8,"4793":8,"4794":3,"4795":8,"4796":8,"4797":10,"4798":7,"4799":7,"4800":9,"4801":5,"4802":1,"4803":7,"4804":9,"4805":10,"4806":1,"4807":8,"4808":7,"4809":1,"4810":7,"4811":7,"4812":8,"4813":9,"4814":5,"4815":9,"4816":7,"4817":5,"4818":8,"4819":8,"4820":1,"4821":8,"4822":4,"4823":9,"4824":10,"4825":1,"4826":5,"4827":9,"4828":7,"4829":5,"4830":9,"4831":2,"4832":7,"4833":8,"4834":5,"4835":3,"4836":8,"4837":1,"4838":9,"4839":7,"4840":7,"4841":7,"4842":9,"4843":8,"4844":7,"4845":2,"4846":7,"4847":10,"4848":9,"4849":7,"4850":7,"4851":8,"4852":3,"4853":8,"4854":7,"4855":9,"4856":5,"4857":2,"4858":8,"4859":8,"4860":8,"4861":10,"4862":9,"4863":4,"4864":1,"4865":3,"4866":9,"4867":8,"4868":7,"4869":4,"4870":7,"4871":7,"4872":4,"4873":8,"4874":9,"4875":4,"4876":8,"4877":7,"4878":7,"4879":8,"4880":2,"4881":7,"4882":1,"4883":3,"4884":7,"4885":10,"4886":8,"4887":2,"4888":9,"4889":8,"4890":8,"4891":9,"4892":5,"4893":8,"4894":5,"4895":1,"4896":7,"4897":8,"4898":5,"4899":9,"4900":6,"4901":5,"4902":2,"4903":5,"4904":7,"4905":5,"4906":8,"4907":8,"4908":9,"4909":1,"4910":8,"4911":5,"4912":8,"4913":8,"4914":6,"4915":9,"4916":3,"4917":1,"4918":2,"4919":9,"4920":1,"4921":8,"4922":7,"4923":8,"4924":6,"4925":5,"4926":1,"4927":9,"4928":7,"4929":8,"4930":9,"4931":5,"4932":4,"4933":5,"4934":8,"4935":10,"4936":9,"4937":9,"4938":8,"4939":8,"4940":8,"4941":4,"4942":1,"4943":7,"4944":10,"4945":10,"4946":6,"4947":8,"4948":7,"4949":8,"4950":9,"4951":9,"4952":5,"4953":7,"4954":8,"4955":4,"4956":1,"4957":8,"4958":9,"4959":5,"4960":4,"4961":8,"4962":7,"4963":8,"4964":2,"4965":9,"4966":7,"4967":4,"4968":9,"4969":4,"4970":10,"4971":8,"4972":1,"4973":3,"4974":2,"4975":5,"4976":7,"4977":8,"4978":10,"4979":1,"4980":9,"4981":4,"4982":3,"4983":9,"4984":7,"4985":7,"4986":2,"4987":2,"4988":7,"4989":9,"4990":7,"4991":1,"4992":7,"4993":8,"4994":7,"4995":7,"4996":8,"4997":9,"4998":7,"4999":7,"5000":8,"5001":7,"5002":8,"5003":9,"5004":3,"5005":5,"5006":7,"5007":9,"5008":7,"5009":5,"5010":2,"5011":9,"5012":10,"5013":7,"5014":2,"5015":1,"5016":7,"5017":7,"5018":7,"5019":8,"5020":1,"5021":4,"5022":1,"5023":9,"5024":7,"5025":7,"5026":5,"5027":9,"5028":9,"5029":1,"5030":7,"5031":8,"5032":9,"5033":7,"5034":10,"5035":5,"5036":5,"5037":2,"5038":5,"5039":7,"5040":7,"5041":9,"5042":7,"5043":7,"5044":7,"5045":1,"5046":7,"5047":7,"5048":8,"5049":8,"5050":3,"5051":8,"5052":6,"5053":10,"5054":9,"5055":3,"5056":6,"5057":5,"5058":8,"5059":3,"5060":9,"5061":5,"5062":5,"5063":9,"5064":7,"5065":7,"5066":2,"5067":3,"5068":7,"5069":9,"5070":5,"5071":8,"5072":8,"5073":10,"5074":9,"5075":8,"5076":5,"5077":9,"5078":7,"5079":10,"5080":5,"5081":3,"5082":5,"5083":4,"5084":8,"5085":2,"5086":9,"5087":8,"5088":2,"5089":8,"5090":2,"5091":9,"5092":7,"5093":1,"5094":1,"5095":5,"5096":6,"5097":9,"5098":8,"5099":8,"5100":7,"5101":5,"5102":8,"5103":2,"5104":8,"5105":2,"5106":6,"5107":9,"5108":8,"5109":7,"5110":8,"5111":8,"5112":5,"5113":8,"5114":8,"5115":8,"5116":8,"5117":3,"5118":9,"5119":7,"5120":8,"5121":7,"5122":10,"5123":9,"5124":2,"5125":5,"5126":1,"5127":9,"5128":2,"5129":4,"5130":8,"5131":8,"5132":8,"5133":3,"5134":1,"5135":8,"5136":7,"5137":1,"5138":5,"5139":7,"5140":7,"5141":7,"5142":4,"5143":1,"5144":9,"5145":8,"5146":9,"5147":3,"5148":7,"5149":7,"5150":5,"5151":2,"5152":7,"5153":6,"5154":8,"5155":7,"5156":8,"5157":3,"5158":7,"5159":1,"5160":2,"5161":9,"5162":4,"5163":4,"5164":9,"5165":9,"5166":2,"5167":5,"5168":2,"5169":4,"5170":9,"5171":10,"5172":9,"5173":2,"5174":8,"5175":5,"5176":7,"5177":7,"5178":7,"5179":6,"5180":8,"5181":5,"5182":7,"5183":2,"5184":7,"5185":2,"5186":9,"5187":9,"5188":9,"5189":10,"5190":8,"5191":1,"5192":8,"5193":7,"5194":7,"5195":4,"5196":2,"5197":8,"5198":6,"5199":2,"5200":2,"5201":7,"5202":7,"5203":7,"5204":8,"5205":5,"5206":7,"5207":7,"5208":1,"5209":10,"5210":3,"5211":2,"5212":8,"5213":2,"5214":4,"5215":8,"5216":7,"5217":5,"5218":7,"5219":7,"5220":5,"5221":8,"5222":2,"5223":8,"5224":5,"5225":9,"5226":5,"5227":7,"5228":4,"5229":7,"5230":8,"5231":10,"5232":7,"5233":8,"5234":7,"5235":3,"5236":7,"5237":7,"5238":9,"5239":5,"5240":9,"5241":10,"5242":8,"5243":2,"5244":4,"5245":9,"5246":8,"5247":1,"5248":7,"5249":10,"5250":9,"5251":8,"5252":2,"5253":5,"5254":7,"5255":7,"5256":8,"5257":5,"5258":3,"5259":9,"5260":9,"5261":9,"5262":9,"5263":10,"5264":1,"5265":7,"5266":7,"5267":6,"5268":3,"5269":8,"5270":7,"5271":8,"5272":9,"5273":2,"5274":1,"5275":3,"5276":2,"5277":5,"5278":7,"5279":3,"5280":9,"5281":2,"5282":9,"5283":8,"5284":7,"5285":10,"5286":6,"5287":8,"5288":7,"5289":8,"5290":8,"5291":7,"5292":8,"5293":9,"5294":7,"5295":8,"5296":1,"5297":7,"5298":4,"5299":9,"5300":3,"5301":4,"5302":7,"5303":6,"5304":8,"5305":9,"5306":8,"5307":8,"5308":8,"5309":7,"5310":5,"5311":4,"5312":8,"5313":9,"5314":7,"5315":9,"5316":2,"5317":1,"5318":7,"5319":8,"5320":9,"5321":1,"5322":1,"5323":5,"5324":2,"5325":8,"5326":9,"5327":7,"5328":5,"5329":5,"5330":9,"5331":9,"5332":7,"5333":5,"5334":2,"5335":2,"5336":6,"5337":8,"5338":7,"5339":4,"5340":7,"5341":2,"5342":9,"5343":10,"5344":5,"5345":7,"5346":7,"5347":9,"5348":7,"5349":8,"5350":6,"5351":5,"5352":8,"5353":1,"5354":8,"5355":6,"5356":4,"5357":8,"5358":8,"5359":10,"5360":2,"5361":9,"5362":5,"5363":6,"5364":7,"5365":3,"5366":8,"5367":4,"5368":5,"5369":7,"5370":10,"5371":7,"5372":4,"5373":8,"5374":7,"5375":7,"5376":8,"5377":6,"5378":7,"5379":8,"5380":5,"5381":4,"5382":9,"5383":2,"5384":9,"5385":2,"5386":7,"5387":10,"5388":5,"5389":5,"5390":8,"5391":9,"5392":1,"5393":7,"5394":3,"5395":5,"5396":2,"5397":7,"5398":2,"5399":6,"5400":9,"5401":5,"5402":9,"5403":7,"5404":8,"5405":3,"5406":3,"5407":5,"5408":7,"5409":2,"5410":10,"5411":7,"5412":9,"5413":3,"5414":6,"5415":8,"5416":9,"5417":4,"5418":8,"5419":8,"5420":8,"5421":7,"5422":3,"5423":7,"5424":3,"5425":10,"5426":7,"5427":3,"5428":7,"5429":6,"5430":9,"5431":7,"5432":5,"5433":10,"5434":9,"5435":9,"5436":9,"5437":2,"5438":9,"5439":8,"5440":7,"5441":7,"5442":10,"5443":3,"5444":2,"5445":8,"5446":9,"5447":3,"5448":7,"5449":1,"5450":7,"5451":7,"5452":4,"5453":2,"5454":4,"5455":9,"5456":9,"5457":10,"5458":5,"5459":4,"5460":7,"5461":7,"5462":4,"5463":8,"5464":2,"5465":3,"5466":9,"5467":3,"5468":8,"5469":7,"5470":8,"5471":7,"5472":2,"5473":4,"5474":4,"5475":5,"5476":8,"5477":7,"5478":7,"5479":5,"5480":2,"5481":8,"5482":8,"5483":2,"5484":10,"5485":9,"5486":7,"5487":10,"5488":3,"5489":8,"5490":5,"5491":9,"5492":2,"5493":2,"5494":7,"5495":9,"5496":8,"5497":8,"5498":7,"5499":7,"5500":2,"5501":10,"5502":2,"5503":7,"5504":8,"5505":3,"5506":7,"5507":6,"5508":7,"5509":8,"5510":7,"5511":8,"5512":8,"5513":9,"5514":7,"5515":6,"5516":4,"5517":2,"5518":6,"5519":2,"5520":5,"5521":8,"5522":5,"5523":8,"5524":5,"5525":7,"5526":3,"5527":8,"5528":7,"5529":4,"5530":8,"5531":10,"5532":2,"5533":7,"5534":7,"5535":9,"5536":8,"5537":5,"5538":8,"5539":2,"5540":5,"5541":8,"5542":5,"5543":9,"5544":4,"5545":7,"5546":8,"5547":3,"5548":2,"5549":8,"5550":2,"5551":9,"5552":3,"5553":9,"5554":6,"5555":7,"5556":2,"5557":9,"5558":8,"5559":7,"5560":7,"5561":8,"5562":7,"5563":7,"5564":5,"5565":8,"5566":1,"5567":9,"5568":9,"5569":8,"5570":8,"5571":5,"5572":3,"5573":8,"5574":7,"5575":7,"5576":3,"5577":5,"5578":9,"5579":7,"5580":6,"5581":3,"5582":9,"5583":4,"5584":7,"5585":7,"5586":2,"5587":7,"5588":8,"5589":9,"5590":9,"5591":9,"5592":9,"5593":1,"5594":5,"5595":1,"5596":6,"5597":3,"5598":7,"5599":5,"5600":8,"5601":8,"5602":2,"5603":4,"5604":7,"5605":2,"5606":9,"5607":9,"5608":5,"5609":6,"5610":7,"5611":10,"5612":2,"5613":7,"5614":2,"5615":2,"5616":8,"5617":1,"5618":7,"5619":8,"5620":8,"5621":9,"5622":5,"5623":7,"5624":8,"5625":3,"5626":5,"5627":7,"5628":8,"5629":7,"5630":7,"5631":7,"5632":7,"5633":4,"5634":8,"5635":8,"5636":6,"5637":4,"5638":8,"5639":1,"5640":2,"5641":7,"5642":1,"5643":9,"5644":5,"5645":3,"5646":7,"5647":3,"5648":7,"5649":8,"5650":9,"5651":4,"5652":8,"5653":2,"5654":6,"5655":3,"5656":3,"5657":9,"5658":7,"5659":9,"5660":2,"5661":8,"5662":7,"5663":9,"5664":3,"5665":7,"5666":7,"5667":8,"5668":8,"5669":2,"5670":7,"5671":9,"5672":5,"5673":3,"5674":2,"5675":6,"5676":6,"5677":9,"5678":9,"5679":4,"5680":10,"5681":10,"5682":10,"5683":4,"5684":9,"5685":8,"5686":7,"5687":2,"5688":8,"5689":10,"5690":9,"5691":8,"5692":10,"5693":7,"5694":7,"5695":7,"5696":10,"5697":4,"5698":6,"5699":7,"5700":6,"5701":7,"5702":1,"5703":9,"5704":8,"5705":9,"5706":8,"5707":4,"5708":7,"5709":7,"5710":7,"5711":7,"5712":8,"5713":1,"5714":2,"5715":2,"5716":7,"5717":3,"5718":8,"5719":7,"5720":4,"5721":8,"5722":2,"5723":10,"5724":6,"5725":2,"5726":7,"5727":9,"5728":6,"5729":1,"5730":4,"5731":8,"5732":8,"5733":2,"5734":4,"5735":5,"5736":7,"5737":5,"5738":8,"5739":9,"5740":3,"5741":8,"5742":9,"5743":2,"5744":3,"5745":7,"5746":9,"5747":9,"5748":7,"5749":7,"5750":8,"5751":10,"5752":9,"5753":4,"5754":3,"5755":3,"5756":3,"5757":7,"5758":8,"5759":9,"5760":10,"5761":8,"5762":8,"5763":5,"5764":2,"5765":5,"5766":10,"5767":3,"5768":6,"5769":9,"5770":8,"5771":10,"5772":7,"5773":5,"5774":9,"5775":6,"5776":5,"5777":9,"5778":2,"5779":9,"5780":1,"5781":7,"5782":7,"5783":9,"5784":7,"5785":8,"5786":9,"5787":8,"5788":8,"5789":9,"5790":5,"5791":9,"5792":9,"5793":8,"5794":7,"5795":9,"5796":7,"5797":10,"5798":4,"5799":7,"5800":9,"5801":3,"5802":8,"5803":7,"5804":7,"5805":6,"5806":8,"5807":3,"5808":7,"5809":2,"5810":5,"5811":8,"5812":8,"5813":3,"5814":7,"5815":8,"5816":8,"5817":9,"5818":8,"5819":7,"5820":7,"5821":2,"5822":5,"5823":1,"5824":4,"5825":7,"5826":7,"5827":4,"5828":7,"5829":9,"5830":4,"5831":2,"5832":2,"5833":8,"5834":7,"5835":7,"5836":7,"5837":2,"5838":7,"5839":8,"5840":2,"5841":7,"5842":8,"5843":5,"5844":7,"5845":10,"5846":7,"5847":7,"5848":9,"5849":5,"5850":2,"5851":10,"5852":2,"5853":1,"5854":3,"5855":8,"5856":10,"5857":1,"5858":8,"5859":8,"5860":8,"5861":6,"5862":5,"5863":2,"5864":7,"5865":2,"5866":10,"5867":6,"5868":4,"5869":9,"5870":5,"5871":5,"5872":6,"5873":9,"5874":2,"5875":9,"5876":5,"5877":4,"5878":9,"5879":5,"5880":2,"5881":6,"5882":6,"5883":9,"5884":5,"5885":2,"5886":3,"5887":9,"5888":7,"5889":7,"5890":6,"5891":8,"5892":4,"5893":6,"5894":1,"5895":9,"5896":7,"5897":7,"5898":4,"5899":5,"5900":3,"5901":3,"5902":10,"5903":9,"5904":9,"5905":10,"5906":7,"5907":7,"5908":7,"5909":9,"5910":5,"5911":7,"5912":8,"5913":9,"5914":8,"5915":1,"5916":2,"5917":8,"5918":5,"5919":8,"5920":7,"5921":9,"5922":7,"5923":1,"5924":7,"5925":2,"5926":10,"5927":9,"5928":9,"5929":5,"5930":4,"5931":2,"5932":7,"5933":8,"5934":9,"5935":2,"5936":6,"5937":8,"5938":8,"5939":7,"5940":8,"5941":2,"5942":8,"5943":7,"5944":7,"5945":5,"5946":1,"5947":9,"5948":2,"5949":8,"5950":9,"5951":7,"5952":6,"5953":7,"5954":3,"5955":7,"5956":1,"5957":9,"5958":8,"5959":2,"5960":2,"5961":7,"5962":1,"5963":9,"5964":2,"5965":9,"5966":8,"5967":7,"5968":8,"5969":3,"5970":8,"5971":9,"5972":9,"5973":6,"5974":5,"5975":8,"5976":3,"5977":7,"5978":8,"5979":1,"5980":5,"5981":6,"5982":2,"5983":10,"5984":8,"5985":8,"5986":2,"5987":5,"5988":10,"5989":7,"5990":4,"5991":9,"5992":5,"5993":7,"5994":7,"5995":8,"5996":5,"5997":5,"5998":8,"5999":7,"6000":1,"6001":4,"6002":8,"6003":8,"6004":8,"6005":8,"6006":9,"6007":7,"6008":8,"6009":5,"6010":5,"6011":9,"6012":4,"6013":8,"6014":5,"6015":1,"6016":3,"6017":10,"6018":9,"6019":2,"6020":3,"6021":5,"6022":7,"6023":6,"6024":1,"6025":8,"6026":3,"6027":7,"6028":8,"6029":5,"6030":6,"6031":9,"6032":9,"6033":7,"6034":3,"6035":7,"6036":1,"6037":10,"6038":5,"6039":7,"6040":7,"6041":9,"6042":3,"6043":4,"6044":7,"6045":7,"6046":9,"6047":8,"6048":7,"6049":9,"6050":10,"6051":9,"6052":3,"6053":1,"6054":3,"6055":8,"6056":8,"6057":5,"6058":8,"6059":7,"6060":9,"6061":1,"6062":4,"6063":3,"6064":3,"6065":9,"6066":2,"6067":2,"6068":7,"6069":9,"6070":9,"6071":10,"6072":9,"6073":2,"6074":8,"6075":10,"6076":7,"6077":8,"6078":8,"6079":8,"6080":5,"6081":8,"6082":9,"6083":2,"6084":7,"6085":9,"6086":7,"6087":2,"6088":7,"6089":7,"6090":6,"6091":5,"6092":8,"6093":10,"6094":7,"6095":4,"6096":9,"6097":8,"6098":7,"6099":5,"6100":2,"6101":2,"6102":1,"6103":7,"6104":1,"6105":7,"6106":9,"6107":7,"6108":2,"6109":10,"6110":4,"6111":7,"6112":7,"6113":8,"6114":4,"6115":7,"6116":1,"6117":2,"6118":8,"6119":7,"6120":8,"6121":9,"6122":4,"6123":9,"6124":10,"6125":5,"6126":7,"6127":9,"6128":2,"6129":7,"6130":5,"6131":2,"6132":2,"6133":5,"6134":7,"6135":2,"6136":9,"6137":2,"6138":5,"6139":8,"6140":2,"6141":2,"6142":4,"6143":7,"6144":8,"6145":8,"6146":1,"6147":5,"6148":7,"6149":5,"6150":8,"6151":5,"6152":2,"6153":7,"6154":1,"6155":8,"6156":2,"6157":9,"6158":8,"6159":5,"6160":7,"6161":8,"6162":5,"6163":7,"6164":1,"6165":8,"6166":5,"6167":7,"6168":9,"6169":2,"6170":4,"6171":9,"6172":5,"6173":1,"6174":1,"6175":7,"6176":7,"6177":8,"6178":7,"6179":5,"6180":8,"6181":9,"6182":7,"6183":9,"6184":8,"6185":7,"6186":1,"6187":2,"6188":7,"6189":8,"6190":7,"6191":1,"6192":3,"6193":5,"6194":7,"6195":1,"6196":7,"6197":2,"6198":9,"6199":5,"6200":7,"6201":5,"6202":7,"6203":7,"6204":8,"6205":8,"6206":8,"6207":6,"6208":6,"6209":6,"6210":7,"6211":7,"6212":7,"6213":9,"6214":2,"6215":7,"6216":2,"6217":9,"6218":9,"6219":5,"6220":2,"6221":2,"6222":7,"6223":7,"6224":9,"6225":9,"6226":3,"6227":8,"6228":6,"6229":4,"6230":7,"6231":7,"6232":8,"6233":9,"6234":7,"6235":7,"6236":2,"6237":10,"6238":7,"6239":6,"6240":2,"6241":8,"6242":9,"6243":9,"6244":8,"6245":5,"6246":5,"6247":7,"6248":2,"6249":7,"6250":8,"6251":6,"6252":5,"6253":5,"6254":9,"6255":8,"6256":7,"6257":2,"6258":3,"6259":7,"6260":5,"6261":5,"6262":8,"6263":7,"6264":4,"6265":9,"6266":8,"6267":9,"6268":7,"6269":8,"6270":7,"6271":7,"6272":9,"6273":9,"6274":9,"6275":8,"6276":8,"6277":6,"6278":8,"6279":9,"6280":5,"6281":7,"6282":9,"6283":8,"6284":6,"6285":5,"6286":8,"6287":9,"6288":5,"6289":2,"6290":1,"6291":8,"6292":7,"6293":7,"6294":9,"6295":8,"6296":2,"6297":1,"6298":5,"6299":8,"6300":8,"6301":3,"6302":9,"6303":4,"6304":7,"6305":9,"6306":8,"6307":8,"6308":2,"6309":9,"6310":9,"6311":7,"6312":2,"6313":10,"6314":8,"6315":10,"6316":7,"6317":5,"6318":2,"6319":8,"6320":8,"6321":9,"6322":8,"6323":10,"6324":9,"6325":2,"6326":8,"6327":8,"6328":5,"6329":9,"6330":8,"6331":8,"6332":8,"6333":7,"6334":4,"6335":9,"6336":8,"6337":6,"6338":7,"6339":3,"6340":2,"6341":5,"6342":9,"6343":8,"6344":6,"6345":7,"6346":5,"6347":8,"6348":6,"6349":2,"6350":9,"6351":8,"6352":6,"6353":10,"6354":5,"6355":9,"6356":7,"6357":5,"6358":5,"6359":9,"6360":10,"6361":10,"6362":8,"6363":4,"6364":7,"6365":8,"6366":5,"6367":3,"6368":4,"6369":4,"6370":9,"6371":1,"6372":2,"6373":7,"6374":5,"6375":5,"6376":4,"6377":2,"6378":8,"6379":4,"6380":7,"6381":7,"6382":7,"6383":2,"6384":8,"6385":4,"6386":9,"6387":8,"6388":9,"6389":7,"6390":9,"6391":5,"6392":7,"6393":9,"6394":5,"6395":9,"6396":5,"6397":7,"6398":3,"6399":8,"6400":7,"6401":9,"6402":8,"6403":10,"6404":7,"6405":6,"6406":8,"6407":1,"6408":9,"6409":7,"6410":8,"6411":8,"6412":7,"6413":8,"6414":8,"6415":7,"6416":8,"6417":7,"6418":2,"6419":1,"6420":7,"6421":8,"6422":1,"6423":10,"6424":8,"6425":2,"6426":8,"6427":9,"6428":8,"6429":2,"6430":8,"6431":5,"6432":9,"6433":5,"6434":8,"6435":5,"6436":8,"6437":8,"6438":5,"6439":9,"6440":8,"6441":2,"6442":2,"6443":3,"6444":6,"6445":8,"6446":2,"6447":9,"6448":6,"6449":7,"6450":6,"6451":6,"6452":2,"6453":5,"6454":9,"6455":9,"6456":5,"6457":1,"6458":8,"6459":5,"6460":1,"6461":9,"6462":9,"6463":7,"6464":9,"6465":4,"6466":7,"6467":10,"6468":3,"6469":8,"6470":7,"6471":2,"6472":1,"6473":5,"6474":2,"6475":5,"6476":7,"6477":7,"6478":6,"6479":8,"6480":7,"6481":3,"6482":9,"6483":3,"6484":10,"6485":10,"6486":6,"6487":5,"6488":8,"6489":8,"6490":9,"6491":4,"6492":9,"6493":8,"6494":2,"6495":2,"6496":9,"6497":9,"6498":7,"6499":5,"6500":4,"6501":6,"6502":7,"6503":7,"6504":4,"6505":9,"6506":8,"6507":8,"6508":9,"6509":8,"6510":9,"6511":7,"6512":3,"6513":4,"6514":7,"6515":7,"6516":2,"6517":8,"6518":2,"6519":5,"6520":9,"6521":3,"6522":5,"6523":9,"6524":3,"6525":7,"6526":7,"6527":9,"6528":3,"6529":2,"6530":7,"6531":9,"6532":2,"6533":9,"6534":9,"6535":10,"6536":2,"6537":10,"6538":8,"6539":5,"6540":2,"6541":7,"6542":9,"6543":8,"6544":2,"6545":6,"6546":9,"6547":8,"6548":8,"6549":8,"6550":7,"6551":5,"6552":7,"6553":8,"6554":9,"6555":8,"6556":1,"6557":8,"6558":3,"6559":7,"6560":5,"6561":5,"6562":8,"6563":8,"6564":1,"6565":7,"6566":9,"6567":9,"6568":8,"6569":8,"6570":9,"6571":1,"6572":2,"6573":1,"6574":8,"6575":5,"6576":8,"6577":9,"6578":8,"6579":5,"6580":7,"6581":9,"6582":7,"6583":9,"6584":2,"6585":9,"6586":9,"6587":5,"6588":8,"6589":7,"6590":4,"6591":7,"6592":4,"6593":7,"6594":9,"6595":5,"6596":7,"6597":9,"6598":8,"6599":1,"6600":8,"6601":2,"6602":7,"6603":2,"6604":7,"6605":9,"6606":7,"6607":6,"6608":10,"6609":4,"6610":8,"6611":5,"6612":8,"6613":4,"6614":5,"6615":10,"6616":7,"6617":7,"6618":10,"6619":7,"6620":10,"6621":2,"6622":7,"6623":2,"6624":4,"6625":9,"6626":6,"6627":5,"6628":3,"6629":4,"6630":8,"6631":5,"6632":8,"6633":7,"6634":6,"6635":9,"6636":1,"6637":7,"6638":7,"6639":9,"6640":2,"6641":9,"6642":2,"6643":6,"6644":2,"6645":7,"6646":7,"6647":7,"6648":2,"6649":9,"6650":2,"6651":9,"6652":9,"6653":2,"6654":8,"6655":3,"6656":1,"6657":7,"6658":5,"6659":9,"6660":7,"6661":2,"6662":3,"6663":4,"6664":5,"6665":6,"6666":9,"6667":2,"6668":9,"6669":2,"6670":9,"6671":2,"6672":8,"6673":6,"6674":7,"6675":7,"6676":1,"6677":9,"6678":8,"6679":9,"6680":8,"6681":8,"6682":10,"6683":2,"6684":7,"6685":9,"6686":3,"6687":8,"6688":7,"6689":9,"6690":5,"6691":6,"6692":4,"6693":8,"6694":5,"6695":1,"6696":8,"6697":5,"6698":5,"6699":8,"6700":8,"6701":4,"6702":9,"6703":9,"6704":8,"6705":5,"6706":7,"6707":1,"6708":4,"6709":9,"6710":7,"6711":2,"6712":8,"6713":6,"6714":3,"6715":2,"6716":1,"6717":7,"6718":4,"6719":9,"6720":8,"6721":7,"6722":7,"6723":4,"6724":2,"6725":8,"6726":10,"6727":8,"6728":7,"6729":10,"6730":5,"6731":2,"6732":2,"6733":9,"6734":1,"6735":2,"6736":1,"6737":9,"6738":4,"6739":8,"6740":10,"6741":3,"6742":7,"6743":2,"6744":7,"6745":2,"6746":5,"6747":2,"6748":8,"6749":7,"6750":3,"6751":1,"6752":2,"6753":5,"6754":5,"6755":7,"6756":2,"6757":7,"6758":9,"6759":8,"6760":6,"6761":8,"6762":9,"6763":2,"6764":7,"6765":8,"6766":7,"6767":5,"6768":7,"6769":8,"6770":7,"6771":8,"6772":8,"6773":9,"6774":8,"6775":10,"6776":2,"6777":8,"6778":7,"6779":9,"6780":1,"6781":8,"6782":8,"6783":5,"6784":9,"6785":9,"6786":7,"6787":9,"6788":1,"6789":4,"6790":6,"6791":7,"6792":7,"6793":1,"6794":8,"6795":6,"6796":6,"6797":9,"6798":2,"6799":2,"6800":7,"6801":2,"6802":7,"6803":9,"6804":7,"6805":5,"6806":4,"6807":4,"6808":3,"6809":4,"6810":9,"6811":10,"6812":4,"6813":2,"6814":5,"6815":6,"6816":2,"6817":1,"6818":8,"6819":8,"6820":8,"6821":3,"6822":3,"6823":2,"6824":9,"6825":3,"6826":9,"6827":2,"6828":8,"6829":8,"6830":2,"6831":8,"6832":8,"6833":8,"6834":6,"6835":7,"6836":9,"6837":7,"6838":9,"6839":1,"6840":7,"6841":1,"6842":5,"6843":7,"6844":8,"6845":9,"6846":5,"6847":2,"6848":7,"6849":1,"6850":10,"6851":8,"6852":7,"6853":7,"6854":8,"6855":7,"6856":1,"6857":9,"6858":8,"6859":9,"6860":3,"6861":8,"6862":5,"6863":9,"6864":7,"6865":5,"6866":8,"6867":9,"6868":10,"6869":9,"6870":8,"6871":4,"6872":6,"6873":8,"6874":4,"6875":2,"6876":9,"6877":7,"6878":4,"6879":1,"6880":9,"6881":7,"6882":7,"6883":9,"6884":7,"6885":5,"6886":7,"6887":4,"6888":4,"6889":8,"6890":7,"6891":3,"6892":8,"6893":1,"6894":8,"6895":8,"6896":8,"6897":6,"6898":7,"6899":2,"6900":7,"6901":4,"6902":8,"6903":7,"6904":8,"6905":8,"6906":4,"6907":7,"6908":1,"6909":9,"6910":7,"6911":7,"6912":8,"6913":8,"6914":8,"6915":9,"6916":7,"6917":5,"6918":2,"6919":1,"6920":10,"6921":9,"6922":9,"6923":7,"6924":7,"6925":6,"6926":8,"6927":7,"6928":8,"6929":1,"6930":1,"6931":9,"6932":4,"6933":7,"6934":10,"6935":3,"6936":6,"6937":6,"6938":7,"6939":7,"6940":7,"6941":2,"6942":9,"6943":2,"6944":5,"6945":8,"6946":10,"6947":9,"6948":4,"6949":7,"6950":5,"6951":4,"6952":8,"6953":8,"6954":9,"6955":7,"6956":9,"6957":8,"6958":7,"6959":5,"6960":10,"6961":3,"6962":3,"6963":8,"6964":7,"6965":9,"6966":2,"6967":6,"6968":2,"6969":5,"6970":8,"6971":7,"6972":7,"6973":9,"6974":5,"6975":9,"6976":2,"6977":1,"6978":5,"6979":2,"6980":8,"6981":5,"6982":8,"6983":9,"6984":7,"6985":8,"6986":2,"6987":10,"6988":8,"6989":9,"6990":7,"6991":5,"6992":8,"6993":4,"6994":7,"6995":1,"6996":10,"6997":2,"6998":9,"6999":2,"7000":7,"7001":5,"7002":9,"7003":9,"7004":7,"7005":10,"7006":8,"7007":2,"7008":9,"7009":4,"7010":2,"7011":8,"7012":7,"7013":3,"7014":2,"7015":5,"7016":7,"7017":8,"7018":10,"7019":7,"7020":2,"7021":2,"7022":5,"7023":7,"7024":8,"7025":10,"7026":4,"7027":3,"7028":5,"7029":8,"7030":7,"7031":10,"7032":8,"7033":5,"7034":2,"7035":7,"7036":4,"7037":7,"7038":7,"7039":2,"7040":8,"7041":10,"7042":5,"7043":8,"7044":8,"7045":3,"7046":9,"7047":9,"7048":8,"7049":8,"7050":3,"7051":8,"7052":1,"7053":9,"7054":4,"7055":4,"7056":2,"7057":5,"7058":10,"7059":9,"7060":6,"7061":4,"7062":8,"7063":3,"7064":9,"7065":8,"7066":6,"7067":8,"7068":1,"7069":7,"7070":7,"7071":10,"7072":6,"7073":5,"7074":7,"7075":1,"7076":10,"7077":3,"7078":9,"7079":7,"7080":4,"7081":9,"7082":7,"7083":9,"7084":2,"7085":10,"7086":7,"7087":1,"7088":1,"7089":6,"7090":8,"7091":6,"7092":10,"7093":5,"7094":8,"7095":6,"7096":5,"7097":8,"7098":7,"7099":5,"7100":8,"7101":1,"7102":9,"7103":2,"7104":7,"7105":6,"7106":9,"7107":5,"7108":8,"7109":6,"7110":7,"7111":8,"7112":1,"7113":7,"7114":2,"7115":6,"7116":6,"7117":5,"7118":6,"7119":10,"7120":7,"7121":9,"7122":3,"7123":2,"7124":4,"7125":8,"7126":9,"7127":1,"7128":2,"7129":3,"7130":5,"7131":4,"7132":9,"7133":5,"7134":7,"7135":8,"7136":5,"7137":7,"7138":8,"7139":10,"7140":1,"7141":3,"7142":4,"7143":7,"7144":8,"7145":5,"7146":2,"7147":9,"7148":5,"7149":5,"7150":10,"7151":10,"7152":2,"7153":7,"7154":1,"7155":8,"7156":8,"7157":7,"7158":4,"7159":8,"7160":9,"7161":8,"7162":4,"7163":6,"7164":8,"7165":8,"7166":2,"7167":2,"7168":5,"7169":1,"7170":2,"7171":7,"7172":2,"7173":8,"7174":5,"7175":5,"7176":8,"7177":8,"7178":8,"7179":7,"7180":8,"7181":6,"7182":7,"7183":6,"7184":5,"7185":2,"7186":4,"7187":8,"7188":1,"7189":5,"7190":2,"7191":7,"7192":8,"7193":8,"7194":7,"7195":8,"7196":4,"7197":8,"7198":3,"7199":7,"7200":8,"7201":8,"7202":1,"7203":8,"7204":8,"7205":5,"7206":9,"7207":7,"7208":8,"7209":7,"7210":7,"7211":6,"7212":10,"7213":10,"7214":3,"7215":5,"7216":6,"7217":8,"7218":7,"7219":9,"7220":8,"7221":8,"7222":1,"7223":8,"7224":9,"7225":5,"7226":8,"7227":8,"7228":7,"7229":7,"7230":7,"7231":3,"7232":7,"7233":5,"7234":2,"7235":6,"7236":7,"7237":4,"7238":7,"7239":8,"7240":8,"7241":9,"7242":8,"7243":1,"7244":7,"7245":3,"7246":1,"7247":7,"7248":3,"7249":4,"7250":1,"7251":2,"7252":8,"7253":7,"7254":3,"7255":7,"7256":3,"7257":1,"7258":9,"7259":7,"7260":9,"7261":8,"7262":9,"7263":8,"7264":4,"7265":9,"7266":7,"7267":10,"7268":7,"7269":2,"7270":8,"7271":3,"7272":7,"7273":1,"7274":5,"7275":5,"7276":4,"7277":7,"7278":2,"7279":7,"7280":8,"7281":3,"7282":1,"7283":4,"7284":9,"7285":9,"7286":1,"7287":10,"7288":2,"7289":3,"7290":9,"7291":10,"7292":8,"7293":7,"7294":8,"7295":8,"7296":3,"7297":9,"7298":8,"7299":8,"7300":7,"7301":8,"7302":3,"7303":10,"7304":5,"7305":6,"7306":5,"7307":7,"7308":7,"7309":5,"7310":5,"7311":7,"7312":7,"7313":9,"7314":8,"7315":7,"7316":9,"7317":8,"7318":5,"7319":9,"7320":9,"7321":8,"7322":3,"7323":4,"7324":8,"7325":7,"7326":6,"7327":3,"7328":8,"7329":1,"7330":9,"7331":4,"7332":2,"7333":2,"7334":5,"7335":7,"7336":5,"7337":1,"7338":7,"7339":3,"7340":5,"7341":8,"7342":9,"7343":8,"7344":9,"7345":8,"7346":5,"7347":7,"7348":4,"7349":1,"7350":8,"7351":7,"7352":6,"7353":10,"7354":3,"7355":5,"7356":7,"7357":8,"7358":10,"7359":2,"7360":8,"7361":2,"7362":8,"7363":7,"7364":2,"7365":5,"7366":7,"7367":3,"7368":3,"7369":5,"7370":8,"7371":6,"7372":1,"7373":10,"7374":9,"7375":6,"7376":1,"7377":7,"7378":7,"7379":7,"7380":8,"7381":1,"7382":8,"7383":10,"7384":2,"7385":7,"7386":2,"7387":7,"7388":10,"7389":5,"7390":9,"7391":5,"7392":8,"7393":8,"7394":7,"7395":8,"7396":8,"7397":7,"7398":2,"7399":9,"7400":9,"7401":9,"7402":7,"7403":2,"7404":8,"7405":5,"7406":5,"7407":1,"7408":5,"7409":8,"7410":3,"7411":2,"7412":1,"7413":3,"7414":10,"7415":5,"7416":8,"7417":7,"7418":7,"7419":10,"7420":2,"7421":9,"7422":9,"7423":10,"7424":7,"7425":7,"7426":2,"7427":3,"7428":5,"7429":3,"7430":2,"7431":9,"7432":8,"7433":7,"7434":1,"7435":7,"7436":1,"7437":1,"7438":5,"7439":9,"7440":9,"7441":8,"7442":2,"7443":8,"7444":4,"7445":9,"7446":9,"7447":10,"7448":7,"7449":7,"7450":8,"7451":5,"7452":1,"7453":10,"7454":9,"7455":3,"7456":4,"7457":8,"7458":7,"7459":8,"7460":9,"7461":8,"7462":2,"7463":7,"7464":8,"7465":8,"7466":9,"7467":2,"7468":9,"7469":9,"7470":9,"7471":7,"7472":5,"7473":10,"7474":9,"7475":10,"7476":5,"7477":2,"7478":3,"7479":8,"7480":9,"7481":7,"7482":5,"7483":9,"7484":8,"7485":2,"7486":2,"7487":2,"7488":8,"7489":3,"7490":8,"7491":10,"7492":10,"7493":7,"7494":8,"7495":2,"7496":7,"7497":2,"7498":10,"7499":8,"7500":1,"7501":1,"7502":8,"7503":5,"7504":9,"7505":2,"7506":9,"7507":2,"7508":9,"7509":9,"7510":5,"7511":7,"7512":9,"7513":7,"7514":7,"7515":5,"7516":2,"7517":8,"7518":2,"7519":9,"7520":8,"7521":9,"7522":2,"7523":9,"7524":8,"7525":7,"7526":4,"7527":5,"7528":9,"7529":5,"7530":8,"7531":7,"7532":10,"7533":5,"7534":9,"7535":2,"7536":9,"7537":6,"7538":7,"7539":5,"7540":7,"7541":10,"7542":4,"7543":9,"7544":2,"7545":1,"7546":1,"7547":5,"7548":8,"7549":9,"7550":7,"7551":7,"7552":9,"7553":5,"7554":2,"7555":8,"7556":9,"7557":5,"7558":1,"7559":2,"7560":9,"7561":7,"7562":9,"7563":9,"7564":7,"7565":2,"7566":8,"7567":1,"7568":4,"7569":8,"7570":9,"7571":4,"7572":9,"7573":7,"7574":9,"7575":5,"7576":7,"7577":2,"7578":7,"7579":9,"7580":5,"7581":8,"7582":7,"7583":5,"7584":8,"7585":8,"7586":7,"7587":10,"7588":10,"7589":5,"7590":7,"7591":8,"7592":9,"7593":7,"7594":9,"7595":8,"7596":6,"7597":9,"7598":3,"7599":3,"7600":4,"7601":7,"7602":8,"7603":7,"7604":7,"7605":6,"7606":5,"7607":7,"7608":5,"7609":8,"7610":1,"7611":8,"7612":7,"7613":2,"7614":8,"7615":7,"7616":3,"7617":9,"7618":9,"7619":8,"7620":5,"7621":9,"7622":7,"7623":8,"7624":8,"7625":8,"7626":8,"7627":8,"7628":9,"7629":2,"7630":4,"7631":6,"7632":5,"7633":4,"7634":6,"7635":7,"7636":9,"7637":9,"7638":5,"7639":8,"7640":4,"7641":7,"7642":7,"7643":8,"7644":1,"7645":7,"7646":7,"7647":9,"7648":7,"7649":8,"7650":8,"7651":8,"7652":8,"7653":8,"7654":2,"7655":8,"7656":8,"7657":7,"7658":8,"7659":9,"7660":8,"7661":5,"7662":8,"7663":5,"7664":7,"7665":8,"7666":3,"7667":8,"7668":2,"7669":2,"7670":1,"7671":7,"7672":8,"7673":8,"7674":8,"7675":5,"7676":6,"7677":8,"7678":8,"7679":7,"7680":5,"7681":3,"7682":7,"7683":2,"7684":9,"7685":8,"7686":9,"7687":9,"7688":7,"7689":8,"7690":6,"7691":1,"7692":7,"7693":1,"7694":8,"7695":8,"7696":9,"7697":7,"7698":3,"7699":9,"7700":8,"7701":1,"7702":5,"7703":5,"7704":7,"7705":2,"7706":3,"7707":9,"7708":9,"7709":5,"7710":7,"7711":2,"7712":5,"7713":3,"7714":8,"7715":2,"7716":7,"7717":7,"7718":8,"7719":2,"7720":7,"7721":8,"7722":2,"7723":4,"7724":2,"7725":9,"7726":7,"7727":9,"7728":9,"7729":9,"7730":1,"7731":1,"7732":3,"7733":8,"7734":8,"7735":3,"7736":8,"7737":5,"7738":7,"7739":2,"7740":2,"7741":8,"7742":4,"7743":1,"7744":7,"7745":5,"7746":8,"7747":1,"7748":7,"7749":6,"7750":2,"7751":7,"7752":9,"7753":1,"7754":7,"7755":6,"7756":4,"7757":8,"7758":7,"7759":9,"7760":5,"7761":10,"7762":7,"7763":8,"7764":2,"7765":1,"7766":5,"7767":2,"7768":2,"7769":1,"7770":5,"7771":8,"7772":8,"7773":7,"7774":8,"7775":2,"7776":7,"7777":8,"7778":9,"7779":5,"7780":9,"7781":8,"7782":9,"7783":10,"7784":4,"7785":7,"7786":9,"7787":7,"7788":7,"7789":8,"7790":3,"7791":9,"7792":1,"7793":5,"7794":8,"7795":4,"7796":8,"7797":1,"7798":8,"7799":6,"7800":8,"7801":8,"7802":8,"7803":2,"7804":5,"7805":7,"7806":9,"7807":8,"7808":2,"7809":6,"7810":9,"7811":8,"7812":5,"7813":8,"7814":2,"7815":1,"7816":7,"7817":9,"7818":2,"7819":2,"7820":8,"7821":8,"7822":3,"7823":6,"7824":5,"7825":7,"7826":9,"7827":6,"7828":8,"7829":3,"7830":4,"7831":7,"7832":9,"7833":9,"7834":7,"7835":8,"7836":10,"7837":4,"7838":5,"7839":7,"7840":8,"7841":3,"7842":9,"7843":4,"7844":9,"7845":2,"7846":1,"7847":5,"7848":10,"7849":9,"7850":5,"7851":2,"7852":5,"7853":8,"7854":9,"7855":7,"7856":2,"7857":6,"7858":9,"7859":6,"7860":6,"7861":10,"7862":6,"7863":9,"7864":8,"7865":8,"7866":8,"7867":7,"7868":1,"7869":8,"7870":5,"7871":2,"7872":8,"7873":9,"7874":8,"7875":7,"7876":7,"7877":3,"7878":8,"7879":3,"7880":2,"7881":9,"7882":9,"7883":5,"7884":6,"7885":3,"7886":8,"7887":9,"7888":8,"7889":1,"7890":8,"7891":9,"7892":2,"7893":5,"7894":7,"7895":9,"7896":9,"7897":9,"7898":5,"7899":2,"7900":8,"7901":1,"7902":7,"7903":7,"7904":6,"7905":7,"7906":8,"7907":9,"7908":7,"7909":9,"7910":7,"7911":9,"7912":9,"7913":6,"7914":8,"7915":4,"7916":3,"7917":9,"7918":1,"7919":7,"7920":8,"7921":8,"7922":9,"7923":3,"7924":3,"7925":8,"7926":3,"7927":9,"7928":8,"7929":2,"7930":8,"7931":2,"7932":9,"7933":1,"7934":3,"7935":2,"7936":10,"7937":9,"7938":9,"7939":7,"7940":7,"7941":8,"7942":3,"7943":5,"7944":7,"7945":5,"7946":9,"7947":7,"7948":1,"7949":9,"7950":8,"7951":9,"7952":1,"7953":4,"7954":7,"7955":7,"7956":9,"7957":4,"7958":10,"7959":10,"7960":8,"7961":7,"7962":3,"7963":10,"7964":7,"7965":2,"7966":8,"7967":8,"7968":9,"7969":9,"7970":7,"7971":8,"7972":9,"7973":1,"7974":9,"7975":3,"7976":5,"7977":1,"7978":7,"7979":8,"7980":8,"7981":8,"7982":5,"7983":10,"7984":6,"7985":7,"7986":6,"7987":7,"7988":9,"7989":4,"7990":7,"7991":9,"7992":9,"7993":8,"7994":9,"7995":7,"7996":7,"7997":9,"7998":1,"7999":9,"8000":8,"8001":1,"8002":5,"8003":2,"8004":8,"8005":8,"8006":9,"8007":8,"8008":7,"8009":8,"8010":7,"8011":3,"8012":9,"8013":3,"8014":9,"8015":2,"8016":8,"8017":9,"8018":10,"8019":3,"8020":5,"8021":9,"8022":7,"8023":9,"8024":7,"8025":9,"8026":6,"8027":5,"8028":8,"8029":9,"8030":7,"8031":4,"8032":8,"8033":10,"8034":8,"8035":5,"8036":8,"8037":7,"8038":1,"8039":8,"8040":7,"8041":8,"8042":7,"8043":3,"8044":1,"8045":8,"8046":8,"8047":1,"8048":2,"8049":6,"8050":5,"8051":4,"8052":7,"8053":5,"8054":7,"8055":6,"8056":5,"8057":8,"8058":3,"8059":9,"8060":2,"8061":7,"8062":9,"8063":8,"8064":4,"8065":9,"8066":3,"8067":9,"8068":6,"8069":2,"8070":7,"8071":4,"8072":8,"8073":7,"8074":5,"8075":7,"8076":8,"8077":2,"8078":5,"8079":2,"8080":7,"8081":1,"8082":6,"8083":9,"8084":8,"8085":7,"8086":7,"8087":8,"8088":9,"8089":7,"8090":9,"8091":7,"8092":2,"8093":10,"8094":10,"8095":3,"8096":2,"8097":5,"8098":7,"8099":1,"8100":7,"8101":10,"8102":4,"8103":5,"8104":8,"8105":7,"8106":2,"8107":8,"8108":1,"8109":8,"8110":8,"8111":4,"8112":8,"8113":7,"8114":5,"8115":6,"8116":2,"8117":7,"8118":7,"8119":7,"8120":10,"8121":2,"8122":5,"8123":8,"8124":10,"8125":7,"8126":2,"8127":10,"8128":1,"8129":2,"8130":9,"8131":9,"8132":9,"8133":8,"8134":7,"8135":10,"8136":9,"8137":5,"8138":7,"8139":8,"8140":2,"8141":2,"8142":4,"8143":2,"8144":5,"8145":8,"8146":7,"8147":8,"8148":4,"8149":8,"8150":7,"8151":5,"8152":8,"8153":9,"8154":8,"8155":1,"8156":7,"8157":8,"8158":9,"8159":9,"8160":8,"8161":9,"8162":5,"8163":8,"8164":8,"8165":7,"8166":2,"8167":8,"8168":9,"8169":4,"8170":9,"8171":8,"8172":2,"8173":7,"8174":9,"8175":1,"8176":10,"8177":8,"8178":8,"8179":10,"8180":10,"8181":3,"8182":8,"8183":9,"8184":6,"8185":8,"8186":3,"8187":6,"8188":3,"8189":5,"8190":8,"8191":7,"8192":7,"8193":10,"8194":9,"8195":6,"8196":8,"8197":2,"8198":7,"8199":4,"8200":6,"8201":10,"8202":8,"8203":7,"8204":8,"8205":2,"8206":8,"8207":4,"8208":10,"8209":9,"8210":4,"8211":4,"8212":6,"8213":5,"8214":9,"8215":6,"8216":1,"8217":3,"8218":7,"8219":8,"8220":3,"8221":6,"8222":4,"8223":8,"8224":8,"8225":8,"8226":7,"8227":10,"8228":8,"8229":6,"8230":8,"8231":9,"8232":2,"8233":1,"8234":10,"8235":8,"8236":8,"8237":9,"8238":7,"8239":1,"8240":4,"8241":4,"8242":5,"8243":10,"8244":8,"8245":3,"8246":7,"8247":9,"8248":8,"8249":8,"8250":7,"8251":6,"8252":7,"8253":2,"8254":3,"8255":2,"8256":8,"8257":8,"8258":9,"8259":8,"8260":5,"8261":2,"8262":7,"8263":9,"8264":2,"8265":8,"8266":2,"8267":3,"8268":2,"8269":8,"8270":9,"8271":7,"8272":9,"8273":1,"8274":6,"8275":2,"8276":7,"8277":6,"8278":1,"8279":6,"8280":7,"8281":5,"8282":8,"8283":8,"8284":8,"8285":8,"8286":6,"8287":3,"8288":8,"8289":8,"8290":8,"8291":9,"8292":5,"8293":2,"8294":7,"8295":8,"8296":7,"8297":8,"8298":6,"8299":2,"8300":8,"8301":9,"8302":3,"8303":8,"8304":7,"8305":10,"8306":8,"8307":8,"8308":5,"8309":9,"8310":8,"8311":6,"8312":8,"8313":3,"8314":6,"8315":7,"8316":10,"8317":1,"8318":9,"8319":3,"8320":10,"8321":7,"8322":9,"8323":9,"8324":3,"8325":1,"8326":4,"8327":3,"8328":4,"8329":10,"8330":1,"8331":7,"8332":4,"8333":2,"8334":6,"8335":6,"8336":2,"8337":7,"8338":6,"8339":2,"8340":9,"8341":2,"8342":5,"8343":8,"8344":9,"8345":8,"8346":6,"8347":9,"8348":3,"8349":7,"8350":9,"8351":10,"8352":5,"8353":7,"8354":8,"8355":5,"8356":8,"8357":8,"8358":5,"8359":10,"8360":10,"8361":9,"8362":7,"8363":8,"8364":5,"8365":1,"8366":2,"8367":10,"8368":5,"8369":9,"8370":8,"8371":9,"8372":9,"8373":3,"8374":2,"8375":9,"8376":8,"8377":8,"8378":7,"8379":1,"8380":9,"8381":2,"8382":2,"8383":8,"8384":8,"8385":9,"8386":2,"8387":9,"8388":7,"8389":6,"8390":7,"8391":1,"8392":9,"8393":7,"8394":8,"8395":8,"8396":7,"8397":8,"8398":4,"8399":1,"8400":1,"8401":2,"8402":1,"8403":10,"8404":8,"8405":3,"8406":7,"8407":1,"8408":7,"8409":10,"8410":9,"8411":2,"8412":9,"8413":10,"8414":3,"8415":9,"8416":8,"8417":4,"8418":5,"8419":8,"8420":7,"8421":1,"8422":9,"8423":9,"8424":7,"8425":3,"8426":8,"8427":8,"8428":9,"8429":8,"8430":4,"8431":9,"8432":8,"8433":8,"8434":8,"8435":2,"8436":9,"8437":3,"8438":7,"8439":8,"8440":5,"8441":5,"8442":8,"8443":7,"8444":3,"8445":3,"8446":7,"8447":7,"8448":8,"8449":1,"8450":7,"8451":8,"8452":10,"8453":5,"8454":5,"8455":5,"8456":8,"8457":10,"8458":6,"8459":7,"8460":8,"8461":8,"8462":2,"8463":2,"8464":8,"8465":8,"8466":4,"8467":5,"8468":9,"8469":9,"8470":7,"8471":9,"8472":7,"8473":10,"8474":7,"8475":9,"8476":7,"8477":7,"8478":9,"8479":2,"8480":6,"8481":2,"8482":9,"8483":8,"8484":9,"8485":1,"8486":8,"8487":1,"8488":4,"8489":8,"8490":2,"8491":9,"8492":5,"8493":8,"8494":8,"8495":3,"8496":2,"8497":7,"8498":3,"8499":1,"8500":7,"8501":8,"8502":1,"8503":8,"8504":1,"8505":10,"8506":3,"8507":7,"8508":8,"8509":5,"8510":8,"8511":10,"8512":5,"8513":8,"8514":5,"8515":2,"8516":6,"8517":2,"8518":1,"8519":2,"8520":2,"8521":8,"8522":7,"8523":2,"8524":2,"8525":6,"8526":2,"8527":6,"8528":7,"8529":1,"8530":7,"8531":7,"8532":7,"8533":7,"8534":10,"8535":7,"8536":3,"8537":3,"8538":7,"8539":8,"8540":8,"8541":5,"8542":1,"8543":3,"8544":2,"8545":8,"8546":9,"8547":2,"8548":1,"8549":2,"8550":1,"8551":8,"8552":3,"8553":8,"8554":4,"8555":9,"8556":1,"8557":5,"8558":3,"8559":9,"8560":5,"8561":5,"8562":8,"8563":9,"8564":7,"8565":8,"8566":8,"8567":8,"8568":8,"8569":9,"8570":7,"8571":10,"8572":8,"8573":5,"8574":5,"8575":1,"8576":8,"8577":10,"8578":3,"8579":6,"8580":8,"8581":7,"8582":7,"8583":2,"8584":5,"8585":2,"8586":2,"8587":9,"8588":8,"8589":8,"8590":9,"8591":2,"8592":4,"8593":7,"8594":8,"8595":8,"8596":1,"8597":3,"8598":10,"8599":8,"8600":7,"8601":7,"8602":9,"8603":1,"8604":8,"8605":10,"8606":8,"8607":4,"8608":4,"8609":8,"8610":1,"8611":5,"8612":8,"8613":7,"8614":3,"8615":8,"8616":7,"8617":7,"8618":5,"8619":7,"8620":2,"8621":8,"8622":5,"8623":5,"8624":7,"8625":8,"8626":7,"8627":2,"8628":4,"8629":7,"8630":7,"8631":10,"8632":7,"8633":9,"8634":1,"8635":7,"8636":4,"8637":1,"8638":9,"8639":7,"8640":8,"8641":9,"8642":2,"8643":5,"8644":8,"8645":5,"8646":1,"8647":9,"8648":1,"8649":3,"8650":8,"8651":8,"8652":2,"8653":3,"8654":7,"8655":7,"8656":5,"8657":8,"8658":3,"8659":6,"8660":7,"8661":2,"8662":5,"8663":7,"8664":7,"8665":9,"8666":1,"8667":2,"8668":7,"8669":9,"8670":7,"8671":7,"8672":8,"8673":7,"8674":8,"8675":9,"8676":4,"8677":8,"8678":8,"8679":8,"8680":8,"8681":2,"8682":2,"8683":6,"8684":9,"8685":3,"8686":7,"8687":1,"8688":6,"8689":9,"8690":8,"8691":9,"8692":7,"8693":6,"8694":5,"8695":5,"8696":8,"8697":9,"8698":6,"8699":8,"8700":1,"8701":3,"8702":5,"8703":8,"8704":1,"8705":7,"8706":7,"8707":2,"8708":9,"8709":2,"8710":9,"8711":4,"8712":8,"8713":2,"8714":7,"8715":7,"8716":7,"8717":7,"8718":8,"8719":1,"8720":4,"8721":7,"8722":8,"8723":2,"8724":4,"8725":10,"8726":8,"8727":10,"8728":7,"8729":7,"8730":5,"8731":4,"8732":8,"8733":7,"8734":2,"8735":9,"8736":8,"8737":7,"8738":5,"8739":5,"8740":1,"8741":7,"8742":7,"8743":8,"8744":8,"8745":9,"8746":5,"8747":10,"8748":8,"8749":10,"8750":6,"8751":9,"8752":2,"8753":9,"8754":2,"8755":9,"8756":9,"8757":2,"8758":5,"8759":1,"8760":9,"8761":6,"8762":5,"8763":10,"8764":8,"8765":9,"8766":7,"8767":5,"8768":5,"8769":7,"8770":3,"8771":5,"8772":7,"8773":7,"8774":10,"8775":10,"8776":5,"8777":9,"8778":9,"8779":8,"8780":8,"8781":2,"8782":7,"8783":8,"8784":10,"8785":8,"8786":7,"8787":7,"8788":9,"8789":8,"8790":8,"8791":9,"8792":7,"8793":9,"8794":5,"8795":8,"8796":9,"8797":9,"8798":7,"8799":1,"8800":9,"8801":7,"8802":8,"8803":9,"8804":1,"8805":7,"8806":2,"8807":5,"8808":7,"8809":1,"8810":8,"8811":7,"8812":8,"8813":2,"8814":8,"8815":2,"8816":7,"8817":5,"8818":9,"8819":10,"8820":2,"8821":5,"8822":7,"8823":7,"8824":3,"8825":2,"8826":1,"8827":9,"8828":4,"8829":5,"8830":9,"8831":9,"8832":8,"8833":7,"8834":7,"8835":5,"8836":2,"8837":7,"8838":7,"8839":7,"8840":4,"8841":2,"8842":2,"8843":7,"8844":9,"8845":8,"8846":4,"8847":9,"8848":10,"8849":3,"8850":6,"8851":2,"8852":9,"8853":9,"8854":8,"8855":8,"8856":7,"8857":8,"8858":8,"8859":8,"8860":9,"8861":7,"8862":8,"8863":9,"8864":2,"8865":2,"8866":4,"8867":4,"8868":6,"8869":10,"8870":8,"8871":2,"8872":3,"8873":8,"8874":5,"8875":7,"8876":8,"8877":2,"8878":3,"8879":10,"8880":8,"8881":5,"8882":2,"8883":8,"8884":6,"8885":7,"8886":8,"8887":9,"8888":9,"8889":3,"8890":9,"8891":7,"8892":2,"8893":9,"8894":8,"8895":3,"8896":2,"8897":10,"8898":2,"8899":10,"8900":9,"8901":6,"8902":6,"8903":3,"8904":3,"8905":3,"8906":2,"8907":9,"8908":7,"8909":2,"8910":8,"8911":9,"8912":10,"8913":3,"8914":8,"8915":8,"8916":2,"8917":9,"8918":2,"8919":5,"8920":7,"8921":2,"8922":2,"8923":9,"8924":5,"8925":7,"8926":3,"8927":7,"8928":1,"8929":8,"8930":9,"8931":2,"8932":3,"8933":2,"8934":4,"8935":8,"8936":7,"8937":9,"8938":2,"8939":9,"8940":2,"8941":7,"8942":2,"8943":7,"8944":7,"8945":10,"8946":1,"8947":9,"8948":7,"8949":4,"8950":7,"8951":6,"8952":6,"8953":1,"8954":9,"8955":8,"8956":7,"8957":7,"8958":8,"8959":8,"8960":5,"8961":1,"8962":7,"8963":7,"8964":8,"8965":7,"8966":5,"8967":7,"8968":9,"8969":7,"8970":5,"8971":8,"8972":2,"8973":8,"8974":7,"8975":1,"8976":5,"8977":2,"8978":6,"8979":2,"8980":8,"8981":8,"8982":8,"8983":8,"8984":2,"8985":10,"8986":9,"8987":7,"8988":8,"8989":7,"8990":7,"8991":5,"8992":5,"8993":9,"8994":5,"8995":2,"8996":6,"8997":9,"8998":5,"8999":4,"9000":7,"9001":9,"9002":5,"9003":7,"9004":5,"9005":9,"9006":2,"9007":8,"9008":7,"9009":6,"9010":10,"9011":9,"9012":2,"9013":7,"9014":9,"9015":9,"9016":10,"9017":7,"9018":1,"9019":1,"9020":8,"9021":3,"9022":8,"9023":1,"9024":8,"9025":7,"9026":3,"9027":8,"9028":8,"9029":2,"9030":9,"9031":7,"9032":1,"9033":8,"9034":5,"9035":8,"9036":8,"9037":2,"9038":2,"9039":10,"9040":2,"9041":2,"9042":10,"9043":3,"9044":9,"9045":10,"9046":8,"9047":3,"9048":10,"9049":7,"9050":3,"9051":4,"9052":9,"9053":7,"9054":7,"9055":9,"9056":2,"9057":7,"9058":5,"9059":4,"9060":10,"9061":7,"9062":7,"9063":7,"9064":9,"9065":7,"9066":2,"9067":2,"9068":4,"9069":7,"9070":1,"9071":6,"9072":8,"9073":6,"9074":8,"9075":5,"9076":8,"9077":2,"9078":7,"9079":9,"9080":2,"9081":8,"9082":8,"9083":8,"9084":7,"9085":5,"9086":10,"9087":2,"9088":9,"9089":10,"9090":7,"9091":9,"9092":5,"9093":6,"9094":7,"9095":5,"9096":7,"9097":8,"9098":9,"9099":7,"9100":8,"9101":8,"9102":8,"9103":9,"9104":4,"9105":9,"9106":7,"9107":2,"9108":8,"9109":8,"9110":7,"9111":7,"9112":3,"9113":2,"9114":10,"9115":2,"9116":7,"9117":5,"9118":9,"9119":8,"9120":7,"9121":5,"9122":7,"9123":4,"9124":5,"9125":3,"9126":7,"9127":5,"9128":7,"9129":9,"9130":7,"9131":7,"9132":9,"9133":5,"9134":5,"9135":5,"9136":7,"9137":3,"9138":5,"9139":2,"9140":2,"9141":8,"9142":7,"9143":5,"9144":10,"9145":8,"9146":4,"9147":8,"9148":7,"9149":9,"9150":9,"9151":8,"9152":9,"9153":9,"9154":4,"9155":8,"9156":3,"9157":8,"9158":4,"9159":2,"9160":8,"9161":9,"9162":8,"9163":7,"9164":5,"9165":3,"9166":10,"9167":8,"9168":9,"9169":9,"9170":7,"9171":8,"9172":6,"9173":3,"9174":5,"9175":8,"9176":6,"9177":9,"9178":9,"9179":7,"9180":2,"9181":8,"9182":9,"9183":6,"9184":9,"9185":9,"9186":3,"9187":5,"9188":9,"9189":10,"9190":3,"9191":7,"9192":7,"9193":9,"9194":8,"9195":2,"9196":8,"9197":8,"9198":5,"9199":1,"9200":6,"9201":8,"9202":5,"9203":7,"9204":8,"9205":6,"9206":7,"9207":9,"9208":9,"9209":2,"9210":8,"9211":8,"9212":9,"9213":7,"9214":6,"9215":10,"9216":5,"9217":8,"9218":4,"9219":1,"9220":7,"9221":7,"9222":7,"9223":8,"9224":1,"9225":2,"9226":9,"9227":8,"9228":1,"9229":9,"9230":2,"9231":8,"9232":6,"9233":10,"9234":8,"9235":8,"9236":5,"9237":9,"9238":2,"9239":9,"9240":7,"9241":9,"9242":2,"9243":10,"9244":1,"9245":7,"9246":9,"9247":7,"9248":8,"9249":9,"9250":9,"9251":9,"9252":8,"9253":5,"9254":7,"9255":8,"9256":7,"9257":4,"9258":4,"9259":2,"9260":5,"9261":9,"9262":5,"9263":5,"9264":7,"9265":9,"9266":3,"9267":9,"9268":7,"9269":8,"9270":4,"9271":1,"9272":1,"9273":7,"9274":7,"9275":5,"9276":2,"9277":7,"9278":7,"9279":4,"9280":5,"9281":10,"9282":4,"9283":2,"9284":8,"9285":5,"9286":8,"9287":9,"9288":9,"9289":8,"9290":8,"9291":7,"9292":10,"9293":8,"9294":4,"9295":9,"9296":10,"9297":8,"9298":10,"9299":9,"9300":5,"9301":9,"9302":5,"9303":7,"9304":7,"9305":9,"9306":7,"9307":10,"9308":8,"9309":9,"9310":2,"9311":4,"9312":7,"9313":1,"9314":5,"9315":4,"9316":8,"9317":2,"9318":2,"9319":1,"9320":3,"9321":10,"9322":7,"9323":6,"9324":9,"9325":4,"9326":9,"9327":2,"9328":8,"9329":5,"9330":3,"9331":7,"9332":9,"9333":8,"9334":7,"9335":9,"9336":5,"9337":1,"9338":8,"9339":9,"9340":1,"9341":7,"9342":1,"9343":1,"9344":8,"9345":2,"9346":8,"9347":7,"9348":8,"9349":9,"9350":8,"9351":5,"9352":7,"9353":6,"9354":9,"9355":7,"9356":7,"9357":7,"9358":6,"9359":3,"9360":8,"9361":7,"9362":8,"9363":7,"9364":5,"9365":9,"9366":9,"9367":8,"9368":7,"9369":7,"9370":7,"9371":6,"9372":8,"9373":3,"9374":8,"9375":4,"9376":8,"9377":9,"9378":7,"9379":1,"9380":3,"9381":6,"9382":9,"9383":10,"9384":1,"9385":6,"9386":5,"9387":7,"9388":8,"9389":7,"9390":8,"9391":5,"9392":4,"9393":7,"9394":1,"9395":9,"9396":8,"9397":7,"9398":1,"9399":10,"9400":5,"9401":1,"9402":9,"9403":8,"9404":6,"9405":9,"9406":8,"9407":4,"9408":9,"9409":4,"9410":10,"9411":7,"9412":2,"9413":7,"9414":4,"9415":7,"9416":1,"9417":2,"9418":8,"9419":9,"9420":2,"9421":8,"9422":8,"9423":7,"9424":2,"9425":7,"9426":4,"9427":9,"9428":10,"9429":5,"9430":2,"9431":5,"9432":8,"9433":7,"9434":9,"9435":9,"9436":9,"9437":2,"9438":1,"9439":8,"9440":2,"9441":10,"9442":8,"9443":2,"9444":7,"9445":2,"9446":8,"9447":9,"9448":7,"9449":5,"9450":9,"9451":9,"9452":1,"9453":3,"9454":8,"9455":1,"9456":7,"9457":5,"9458":4,"9459":9,"9460":5,"9461":4,"9462":9,"9463":2,"9464":3,"9465":9,"9466":2,"9467":8,"9468":5,"9469":7,"9470":6,"9471":8,"9472":7,"9473":7,"9474":7,"9475":4,"9476":7,"9477":10,"9478":7,"9479":10,"9480":7,"9481":8,"9482":8,"9483":6,"9484":3,"9485":8,"9486":7,"9487":8,"9488":3,"9489":2,"9490":6,"9491":2,"9492":6,"9493":5,"9494":7,"9495":1,"9496":4,"9497":6,"9498":9,"9499":9,"9500":10,"9501":2,"9502":2,"9503":9,"9504":10,"9505":9,"9506":7,"9507":3,"9508":8,"9509":7,"9510":7,"9511":9,"9512":10,"9513":9,"9514":6,"9515":9,"9516":2,"9517":2,"9518":2,"9519":9,"9520":7,"9521":7,"9522":8,"9523":7,"9524":7,"9525":5,"9526":7,"9527":8,"9528":9,"9529":5,"9530":10,"9531":1,"9532":5,"9533":8,"9534":6,"9535":8,"9536":7,"9537":9,"9538":9,"9539":7,"9540":7,"9541":7,"9542":8,"9543":7,"9544":9,"9545":8,"9546":2,"9547":2,"9548":8,"9549":7,"9550":7,"9551":4,"9552":2,"9553":7,"9554":7,"9555":8,"9556":9,"9557":7,"9558":6,"9559":8,"9560":3,"9561":8,"9562":8,"9563":5,"9564":9,"9565":8,"9566":5,"9567":9,"9568":4,"9569":9,"9570":7,"9571":8,"9572":8,"9573":5,"9574":5,"9575":5,"9576":7,"9577":8,"9578":3,"9579":9,"9580":7,"9581":1,"9582":4,"9583":10,"9584":2,"9585":6,"9586":8,"9587":7,"9588":5,"9589":4,"9590":8,"9591":6,"9592":3,"9593":2,"9594":5,"9595":7,"9596":2,"9597":2,"9598":2,"9599":2,"9600":7,"9601":2,"9602":8,"9603":9,"9604":2,"9605":5,"9606":8,"9607":9,"9608":7,"9609":8,"9610":2,"9611":7,"9612":8,"9613":7,"9614":9,"9615":6,"9616":9,"9617":5,"9618":5,"9619":6,"9620":7,"9621":10,"9622":7,"9623":7,"9624":2,"9625":4,"9626":2,"9627":5,"9628":3,"9629":9,"9630":7,"9631":8,"9632":2,"9633":9,"9634":9,"9635":5,"9636":1,"9637":5,"9638":9,"9639":2,"9640":7,"9641":4,"9642":10,"9643":8,"9644":5,"9645":7,"9646":8,"9647":6,"9648":2,"9649":8,"9650":9,"9651":8,"9652":6,"9653":5,"9654":2,"9655":9,"9656":8,"9657":4,"9658":2,"9659":6,"9660":2,"9661":4,"9662":8,"9663":8,"9664":9,"9665":1,"9666":8,"9667":1,"9668":7,"9669":8,"9670":5,"9671":8,"9672":4,"9673":5,"9674":7,"9675":8,"9676":7,"9677":9,"9678":8,"9679":10,"9680":4,"9681":8,"9682":9,"9683":3,"9684":3,"9685":9,"9686":8,"9687":2,"9688":5,"9689":2,"9690":8,"9691":8,"9692":3,"9693":9,"9694":7,"9695":8,"9696":8,"9697":6,"9698":9,"9699":7,"9700":6,"9701":8,"9702":9,"9703":7,"9704":4,"9705":2,"9706":3,"9707":7,"9708":6,"9709":9,"9710":4,"9711":2,"9712":5,"9713":2,"9714":9,"9715":8,"9716":2,"9717":7,"9718":2,"9719":2,"9720":5,"9721":1,"9722":5,"9723":7,"9724":7,"9725":9,"9726":9,"9727":9,"9728":7,"9729":8,"9730":9,"9731":5,"9732":10,"9733":6,"9734":9,"9735":9,"9736":6,"9737":9,"9738":7,"9739":8,"9740":7,"9741":8,"9742":7,"9743":9,"9744":2,"9745":6,"9746":9,"9747":8,"9748":8,"9749":1,"9750":8,"9751":7,"9752":5,"9753":8,"9754":9,"9755":6,"9756":7,"9757":6,"9758":10,"9759":8,"9760":8,"9761":8,"9762":7,"9763":2,"9764":5,"9765":10,"9766":7,"9767":8,"9768":9,"9769":10,"9770":1,"9771":7,"9772":7,"9773":7,"9774":2,"9775":3,"9776":2,"9777":1,"9778":7,"9779":7,"9780":7,"9781":2,"9782":7,"9783":2,"9784":1,"9785":3,"9786":4,"9787":7,"9788":9,"9789":7,"9790":7,"9791":7,"9792":7,"9793":4,"9794":8,"9795":8,"9796":7,"9797":2,"9798":7,"9799":9,"9800":9,"9801":3,"9802":5,"9803":2,"9804":9,"9805":3,"9806":8,"9807":9,"9808":8,"9809":7,"9810":9,"9811":8,"9812":8,"9813":7,"9814":6,"9815":7,"9816":5,"9817":5,"9818":5,"9819":7,"9820":7,"9821":9,"9822":7,"9823":9,"9824":9,"9825":9,"9826":1,"9827":8,"9828":7,"9829":7,"9830":4,"9831":9,"9832":5,"9833":5,"9834":5,"9835":1,"9836":7,"9837":10,"9838":9,"9839":7,"9840":8,"9841":9,"9842":6,"9843":5,"9844":8,"9845":7,"9846":4,"9847":2,"9848":8,"9849":6,"9850":5,"9851":10,"9852":5,"9853":4,"9854":8,"9855":7,"9856":7,"9857":8,"9858":2,"9859":9,"9860":7,"9861":1,"9862":9,"9863":7,"9864":8,"9865":5,"9866":9,"9867":10,"9868":1,"9869":8,"9870":5,"9871":8,"9872":3,"9873":3,"9874":2,"9875":7,"9876":6,"9877":9,"9878":2,"9879":9,"9880":9,"9881":9,"9882":5,"9883":2,"9884":8,"9885":2,"9886":5,"9887":6,"9888":6,"9889":9,"9890":5,"9891":3,"9892":7,"9893":7,"9894":1,"9895":7,"9896":4,"9897":4,"9898":9,"9899":7,"9900":8,"9901":10,"9902":8,"9903":4,"9904":5,"9905":4,"9906":10,"9907":6,"9908":5,"9909":7,"9910":1,"9911":2,"9912":10,"9913":7,"9914":5,"9915":7,"9916":8,"9917":7,"9918":7,"9919":9,"9920":2,"9921":5,"9922":8,"9923":9,"9924":4,"9925":2,"9926":3,"9927":7,"9928":9,"9929":3,"9930":1,"9931":9,"9932":4,"9933":7,"9934":7,"9935":7,"9936":3,"9937":7,"9938":10,"9939":10,"9940":8,"9941":9,"9942":8,"9943":1,"9944":5,"9945":9,"9946":3,"9947":8,"9948":1,"9949":2,"9950":8,"9951":9,"9952":10,"9953":7,"9954":10,"9955":4,"9956":5,"9957":9,"9958":9,"9959":8,"9960":5,"9961":2,"9962":8,"9963":9,"9964":7,"9965":7,"9966":3,"9967":2,"9968":2,"9969":8,"9970":1,"9971":10,"9972":9,"9973":8,"9974":9,"9975":9,"9976":7,"9977":3,"9978":10,"9979":8,"9980":9,"9981":8,"9982":4,"9983":2,"9984":2,"9985":8,"9986":4,"9987":8,"9988":10,"9989":8,"9990":2,"9991":9,"9992":8,"9993":10,"9994":4,"9995":2,"9996":1,"9997":8,"9998":9,"9999":9,"10000":7,"10001":1,"10002":8,"10003":7,"10004":3,"10005":7,"10006":5,"10007":7,"10008":8,"10009":7,"10010":7,"10011":6,"10012":4,"10013":7,"10014":10,"10015":8,"10016":7,"10017":6,"10018":5,"10019":8,"10020":7,"10021":6,"10022":3,"10023":9,"10024":3,"10025":2,"10026":8,"10027":9,"10028":8,"10029":5,"10030":2,"10031":1,"10032":4,"10033":6,"10034":8,"10035":5,"10036":8,"10037":8,"10038":7,"10039":7,"10040":2,"10041":8,"10042":9,"10043":4,"10044":8,"10045":8,"10046":7,"10047":1,"10048":7,"10049":7,"10050":7,"10051":2,"10052":7,"10053":6,"10054":7,"10055":4,"10056":8,"10057":8,"10058":8,"10059":9,"10060":8,"10061":9,"10062":3,"10063":5,"10064":7,"10065":7,"10066":5,"10067":2,"10068":8,"10069":5,"10070":7,"10071":9,"10072":2,"10073":8,"10074":4,"10075":6,"10076":8,"10077":1,"10078":8,"10079":9,"10080":7,"10081":8,"10082":7,"10083":4,"10084":1,"10085":9,"10086":7,"10087":7,"10088":2,"10089":5,"10090":9,"10091":7,"10092":3,"10093":6,"10094":2,"10095":8,"10096":2,"10097":1,"10098":9,"10099":9,"10100":10,"10101":6,"10102":7,"10103":8,"10104":9,"10105":7,"10106":4,"10107":2,"10108":5,"10109":6,"10110":5,"10111":7,"10112":8,"10113":7,"10114":8,"10115":4,"10116":8,"10117":9,"10118":1,"10119":5,"10120":5,"10121":9,"10122":9,"10123":3,"10124":7,"10125":10,"10126":5,"10127":7,"10128":3,"10129":5,"10130":7,"10131":7,"10132":9,"10133":3,"10134":9,"10135":6,"10136":3,"10137":2,"10138":10,"10139":8,"10140":8,"10141":8,"10142":2,"10143":5,"10144":9,"10145":8,"10146":5,"10147":6,"10148":8,"10149":5,"10150":6,"10151":2,"10152":8,"10153":10,"10154":4,"10155":8,"10156":7,"10157":10,"10158":1,"10159":10,"10160":7,"10161":8,"10162":7,"10163":1,"10164":7,"10165":5,"10166":9,"10167":8,"10168":2,"10169":8,"10170":8,"10171":7,"10172":3,"10173":5,"10174":5,"10175":8,"10176":10,"10177":7,"10178":9,"10179":2,"10180":1,"10181":1,"10182":7,"10183":8,"10184":2,"10185":7,"10186":10,"10187":8,"10188":6,"10189":10,"10190":9,"10191":2,"10192":5,"10193":1,"10194":7,"10195":7,"10196":5,"10197":10,"10198":8,"10199":8,"10200":8,"10201":7,"10202":2,"10203":7,"10204":9,"10205":5,"10206":9,"10207":8,"10208":9,"10209":9,"10210":7,"10211":9,"10212":10,"10213":9,"10214":7,"10215":1,"10216":7,"10217":7,"10218":7,"10219":10,"10220":7,"10221":8,"10222":1,"10223":5,"10224":3,"10225":2,"10226":6,"10227":7,"10228":6,"10229":6,"10230":9,"10231":9,"10232":5,"10233":7,"10234":2,"10235":5,"10236":9,"10237":7,"10238":8,"10239":2,"10240":2,"10241":8,"10242":9,"10243":5,"10244":5,"10245":9,"10246":9,"10247":7,"10248":2,"10249":5,"10250":6,"10251":5,"10252":9,"10253":9,"10254":8,"10255":5,"10256":8,"10257":8,"10258":7,"10259":2,"10260":8,"10261":3,"10262":8,"10263":9,"10264":9,"10265":3,"10266":8,"10267":8,"10268":2,"10269":8,"10270":1,"10271":8,"10272":9,"10273":9,"10274":5,"10275":6,"10276":3,"10277":8,"10278":8,"10279":10,"10280":9,"10281":4,"10282":9,"10283":8,"10284":7,"10285":8,"10286":5,"10287":7,"10288":5,"10289":8,"10290":8,"10291":5,"10292":8,"10293":8,"10294":9,"10295":5,"10296":1,"10297":8,"10298":7,"10299":8,"10300":7,"10301":5,"10302":9,"10303":8,"10304":7,"10305":2,"10306":6,"10307":5,"10308":9,"10309":9,"10310":8,"10311":7,"10312":1,"10313":5,"10314":7,"10315":2,"10316":6,"10317":2,"10318":9,"10319":2,"10320":8,"10321":8,"10322":8,"10323":8,"10324":3,"10325":4,"10326":5,"10327":8,"10328":2,"10329":7,"10330":2,"10331":9,"10332":7,"10333":8,"10334":2,"10335":9,"10336":5,"10337":5,"10338":7,"10339":8,"10340":7,"10341":1,"10342":7,"10343":10,"10344":3,"10345":9,"10346":6,"10347":3,"10348":10,"10349":8,"10350":6,"10351":2,"10352":8,"10353":7,"10354":5,"10355":8,"10356":8,"10357":8,"10358":10,"10359":2,"10360":8,"10361":9,"10362":5,"10363":9,"10364":5,"10365":4,"10366":10,"10367":7,"10368":4,"10369":8,"10370":8,"10371":8,"10372":4,"10373":5,"10374":8,"10375":1,"10376":4,"10377":1,"10378":8,"10379":7,"10380":4,"10381":8,"10382":5,"10383":8,"10384":10,"10385":5,"10386":8,"10387":9,"10388":9,"10389":8,"10390":10,"10391":7,"10392":1,"10393":1,"10394":7,"10395":2,"10396":6,"10397":2,"10398":9,"10399":2,"10400":9,"10401":9,"10402":8,"10403":8,"10404":9,"10405":7,"10406":7,"10407":5,"10408":7,"10409":7,"10410":5,"10411":8,"10412":5,"10413":7,"10414":7,"10415":6,"10416":9,"10417":8,"10418":7,"10419":3,"10420":7,"10421":5,"10422":8,"10423":7,"10424":7,"10425":7,"10426":2,"10427":10,"10428":8,"10429":9,"10430":8,"10431":5,"10432":5,"10433":1,"10434":5,"10435":7,"10436":8,"10437":8,"10438":1,"10439":4,"10440":7,"10441":5,"10442":7,"10443":2,"10444":7,"10445":4,"10446":2,"10447":8,"10448":4,"10449":10,"10450":8,"10451":2,"10452":9,"10453":8,"10454":2,"10455":7,"10456":8,"10457":1,"10458":4,"10459":7,"10460":8,"10461":1,"10462":9,"10463":7,"10464":7,"10465":8,"10466":2,"10467":5,"10468":8,"10469":1,"10470":5,"10471":7,"10472":8,"10473":6,"10474":5,"10475":2,"10476":7,"10477":2,"10478":6,"10479":7,"10480":6,"10481":4,"10482":9,"10483":8,"10484":3,"10485":7,"10486":4,"10487":2,"10488":5,"10489":8,"10490":8,"10491":4,"10492":8,"10493":5,"10494":10,"10495":10,"10496":7,"10497":8,"10498":3,"10499":8,"10500":8,"10501":9,"10502":8,"10503":5,"10504":7,"10505":7,"10506":5,"10507":8,"10508":7,"10509":10,"10510":3,"10511":9,"10512":7,"10513":10,"10514":3,"10515":8,"10516":7,"10517":1,"10518":10,"10519":6,"10520":9,"10521":9,"10522":1,"10523":8,"10524":1,"10525":7,"10526":8,"10527":2,"10528":9,"10529":8,"10530":1,"10531":8,"10532":8,"10533":1,"10534":8,"10535":2,"10536":5,"10537":8,"10538":5,"10539":8,"10540":5,"10541":10,"10542":2,"10543":7,"10544":4,"10545":9,"10546":9,"10547":5,"10548":7,"10549":7,"10550":9,"10551":5,"10552":2,"10553":3,"10554":7,"10555":8,"10556":9,"10557":2,"10558":8,"10559":6,"10560":5,"10561":7,"10562":5,"10563":3,"10564":10,"10565":9,"10566":9,"10567":9,"10568":9,"10569":8,"10570":2,"10571":6,"10572":9,"10573":7,"10574":2,"10575":7,"10576":7,"10577":8,"10578":6,"10579":2,"10580":10,"10581":6,"10582":10,"10583":2,"10584":2,"10585":2,"10586":2,"10587":7,"10588":7,"10589":3,"10590":8,"10591":6,"10592":8,"10593":10,"10594":7,"10595":2,"10596":7,"10597":8,"10598":2,"10599":7,"10600":1,"10601":8,"10602":8,"10603":7,"10604":4,"10605":2,"10606":8,"10607":6,"10608":3,"10609":5,"10610":7,"10611":2,"10612":9,"10613":5,"10614":9,"10615":8,"10616":5,"10617":3,"10618":7,"10619":6,"10620":5,"10621":9,"10622":5,"10623":10,"10624":9,"10625":1,"10626":8,"10627":5,"10628":9,"10629":8,"10630":7,"10631":3,"10632":7,"10633":9,"10634":8,"10635":8,"10636":1,"10637":7,"10638":9,"10639":7,"10640":7,"10641":9,"10642":6,"10643":5,"10644":2,"10645":2,"10646":7,"10647":9,"10648":10,"10649":7,"10650":9,"10651":5,"10652":8,"10653":1,"10654":3,"10655":7,"10656":1,"10657":7,"10658":10,"10659":8,"10660":8,"10661":2,"10662":7,"10663":6,"10664":8,"10665":3,"10666":3,"10667":2,"10668":7,"10669":9,"10670":7,"10671":2,"10672":2,"10673":9,"10674":7,"10675":3,"10676":9,"10677":2,"10678":8,"10679":9,"10680":4,"10681":7,"10682":2,"10683":9,"10684":4,"10685":7,"10686":8,"10687":8,"10688":8,"10689":9,"10690":1,"10691":1,"10692":4,"10693":4,"10694":5,"10695":9,"10696":5,"10697":1,"10698":10,"10699":6,"10700":3,"10701":2,"10702":8,"10703":9,"10704":7,"10705":2,"10706":8,"10707":10,"10708":8,"10709":8,"10710":9,"10711":8,"10712":2,"10713":2,"10714":8,"10715":10,"10716":5,"10717":7,"10718":8,"10719":1,"10720":7,"10721":8,"10722":7,"10723":8,"10724":1,"10725":9,"10726":8,"10727":2,"10728":10,"10729":9,"10730":10,"10731":6,"10732":7,"10733":8,"10734":5,"10735":8,"10736":8,"10737":1,"10738":8,"10739":5,"10740":7,"10741":9,"10742":8,"10743":7,"10744":2,"10745":4,"10746":9,"10747":8,"10748":2,"10749":5,"10750":5,"10751":2,"10752":9,"10753":8,"10754":7,"10755":9,"10756":7,"10757":10,"10758":9,"10759":8,"10760":9,"10761":7,"10762":8,"10763":2,"10764":5,"10765":6,"10766":8,"10767":5,"10768":6,"10769":6,"10770":2,"10771":7,"10772":8,"10773":8,"10774":7,"10775":2,"10776":9,"10777":2,"10778":7,"10779":9,"10780":7,"10781":4,"10782":8,"10783":7,"10784":1,"10785":10,"10786":5,"10787":5,"10788":6,"10789":10,"10790":2,"10791":9,"10792":9,"10793":8,"10794":4,"10795":2,"10796":10,"10797":9,"10798":9,"10799":2,"10800":8,"10801":10,"10802":3,"10803":8,"10804":2,"10805":9,"10806":7,"10807":6,"10808":8,"10809":1,"10810":7,"10811":2,"10812":8,"10813":4,"10814":8,"10815":4,"10816":8,"10817":5,"10818":8,"10819":7,"10820":10,"10821":7,"10822":7,"10823":5,"10824":2,"10825":8,"10826":4,"10827":3,"10828":6,"10829":10,"10830":2,"10831":7,"10832":5,"10833":7,"10834":4,"10835":4,"10836":2,"10837":5,"10838":1,"10839":3,"10840":8,"10841":7,"10842":4,"10843":9,"10844":5,"10845":8,"10846":7,"10847":4,"10848":9,"10849":3,"10850":8,"10851":9,"10852":3,"10853":7,"10854":4,"10855":5,"10856":8,"10857":5,"10858":6,"10859":10,"10860":8,"10861":3,"10862":2,"10863":5,"10864":7,"10865":8,"10866":10,"10867":9,"10868":8,"10869":2,"10870":6,"10871":5,"10872":2,"10873":6,"10874":9,"10875":10,"10876":8,"10877":8,"10878":7,"10879":4,"10880":7,"10881":2,"10882":5,"10883":9,"10884":7,"10885":8,"10886":5,"10887":7,"10888":3,"10889":2,"10890":9,"10891":9,"10892":8,"10893":9,"10894":3,"10895":9,"10896":7,"10897":8,"10898":3,"10899":8,"10900":7,"10901":9,"10902":9,"10903":8,"10904":8,"10905":2,"10906":7,"10907":7,"10908":9,"10909":3,"10910":5,"10911":5,"10912":1,"10913":3,"10914":8,"10915":6,"10916":4,"10917":3,"10918":7,"10919":8,"10920":8,"10921":8,"10922":7,"10923":9,"10924":2,"10925":3,"10926":8,"10927":7,"10928":10,"10929":1,"10930":5,"10931":7,"10932":9,"10933":1,"10934":8,"10935":7,"10936":7,"10937":9,"10938":5,"10939":5,"10940":2,"10941":9,"10942":7,"10943":9,"10944":5,"10945":10,"10946":8,"10947":8,"10948":7,"10949":9,"10950":6,"10951":8,"10952":7,"10953":3,"10954":6,"10955":2,"10956":8,"10957":7,"10958":10,"10959":4,"10960":7,"10961":2,"10962":5,"10963":8,"10964":2,"10965":5,"10966":2,"10967":5,"10968":1,"10969":4,"10970":9,"10971":10,"10972":2,"10973":3,"10974":2,"10975":8,"10976":3,"10977":1,"10978":2,"10979":8,"10980":8,"10981":10,"10982":7,"10983":7,"10984":5,"10985":10,"10986":7,"10987":5,"10988":7,"10989":9,"10990":4,"10991":1,"10992":8,"10993":8,"10994":9,"10995":2,"10996":9,"10997":3,"10998":5,"10999":1,"11000":7,"11001":7,"11002":6,"11003":2,"11004":5,"11005":2,"11006":9,"11007":10,"11008":8,"11009":8,"11010":8,"11011":1,"11012":8,"11013":8,"11014":3,"11015":8,"11016":7,"11017":1,"11018":7,"11019":5,"11020":2,"11021":5,"11022":7,"11023":7,"11024":4,"11025":2,"11026":4,"11027":6,"11028":7,"11029":2,"11030":7,"11031":3,"11032":7,"11033":5,"11034":10,"11035":8,"11036":9,"11037":8,"11038":7,"11039":7,"11040":10,"11041":4,"11042":1,"11043":9,"11044":3,"11045":8,"11046":6,"11047":2,"11048":2,"11049":7,"11050":10,"11051":7,"11052":9,"11053":8,"11054":9,"11055":4,"11056":7,"11057":1,"11058":1,"11059":1,"11060":8,"11061":4,"11062":3,"11063":3,"11064":3,"11065":7,"11066":4,"11067":8,"11068":6,"11069":3,"11070":7,"11071":4,"11072":1,"11073":8,"11074":7,"11075":7,"11076":8,"11077":8,"11078":2,"11079":2,"11080":9,"11081":1,"11082":7,"11083":1,"11084":10,"11085":2,"11086":5,"11087":1,"11088":8,"11089":3,"11090":2,"11091":7,"11092":7,"11093":8,"11094":1,"11095":8,"11096":10,"11097":8,"11098":7,"11099":4,"11100":5,"11101":7,"11102":4,"11103":5,"11104":10,"11105":2,"11106":8,"11107":6,"11108":9,"11109":7,"11110":8,"11111":8,"11112":10,"11113":6,"11114":1,"11115":1,"11116":9,"11117":8,"11118":1,"11119":9,"11120":9,"11121":2,"11122":7,"11123":5,"11124":7,"11125":6,"11126":10,"11127":7,"11128":7,"11129":1,"11130":7,"11131":9,"11132":9,"11133":5,"11134":8,"11135":5,"11136":7,"11137":7,"11138":8,"11139":5,"11140":2,"11141":8,"11142":1,"11143":9,"11144":9,"11145":7,"11146":8,"11147":9,"11148":8,"11149":4,"11150":6,"11151":6,"11152":6,"11153":8,"11154":6,"11155":7,"11156":4,"11157":8,"11158":8,"11159":1,"11160":7,"11161":8,"11162":7,"11163":4,"11164":7,"11165":7,"11166":3,"11167":7,"11168":5,"11169":7,"11170":3,"11171":7,"11172":7,"11173":3,"11174":9,"11175":6,"11176":4,"11177":7,"11178":5,"11179":5,"11180":5,"11181":7,"11182":2,"11183":2,"11184":9,"11185":7,"11186":2,"11187":5,"11188":7,"11189":5,"11190":7,"11191":6,"11192":2,"11193":4,"11194":2,"11195":5,"11196":7,"11197":9,"11198":2,"11199":9,"11200":4,"11201":2,"11202":8,"11203":5,"11204":7,"11205":9,"11206":8,"11207":3,"11208":9,"11209":9,"11210":9,"11211":8,"11212":9,"11213":2,"11214":4,"11215":3,"11216":1,"11217":9,"11218":7,"11219":1,"11220":8,"11221":5,"11222":9,"11223":9,"11224":7,"11225":7,"11226":7,"11227":3,"11228":8,"11229":10,"11230":9,"11231":8,"11232":7,"11233":5,"11234":9,"11235":7,"11236":1,"11237":8,"11238":9,"11239":7,"11240":8,"11241":5,"11242":1,"11243":1,"11244":7,"11245":8,"11246":7,"11247":7,"11248":1,"11249":8,"11250":10,"11251":5,"11252":6,"11253":7,"11254":2,"11255":7,"11256":2,"11257":7,"11258":4,"11259":7,"11260":8,"11261":8,"11262":5,"11263":8,"11264":9,"11265":5,"11266":2,"11267":8,"11268":2,"11269":8,"11270":2,"11271":7,"11272":10,"11273":7,"11274":2,"11275":8,"11276":9,"11277":10,"11278":4,"11279":9,"11280":4,"11281":8,"11282":4,"11283":7,"11284":9,"11285":10,"11286":4,"11287":7,"11288":6,"11289":7,"11290":7,"11291":3,"11292":8,"11293":8,"11294":7,"11295":5,"11296":2,"11297":10,"11298":6,"11299":1,"11300":7,"11301":8,"11302":7,"11303":5,"11304":8,"11305":9,"11306":7,"11307":3,"11308":3,"11309":8,"11310":10,"11311":4,"11312":7,"11313":9,"11314":5,"11315":10,"11316":5,"11317":7,"11318":9,"11319":5,"11320":8,"11321":3,"11322":5,"11323":7,"11324":10,"11325":7,"11326":4,"11327":5,"11328":3,"11329":3,"11330":9,"11331":7,"11332":8,"11333":8,"11334":9,"11335":3,"11336":2,"11337":3,"11338":7,"11339":10,"11340":8,"11341":2,"11342":1,"11343":8,"11344":8,"11345":8,"11346":8,"11347":9,"11348":8,"11349":2,"11350":2,"11351":9,"11352":7,"11353":7,"11354":9,"11355":7,"11356":9,"11357":8,"11358":7,"11359":7,"11360":2,"11361":4,"11362":7,"11363":9,"11364":9,"11365":5,"11366":5,"11367":8,"11368":5,"11369":7,"11370":5,"11371":5,"11372":8,"11373":9,"11374":8,"11375":10,"11376":5,"11377":9,"11378":5,"11379":5,"11380":10,"11381":5,"11382":1,"11383":8,"11384":7,"11385":9,"11386":5,"11387":8,"11388":1,"11389":4,"11390":5,"11391":8,"11392":7,"11393":7,"11394":7,"11395":3,"11396":9,"11397":5,"11398":8,"11399":5,"11400":8,"11401":6,"11402":2,"11403":6,"11404":7,"11405":8,"11406":8,"11407":10,"11408":6,"11409":2,"11410":2,"11411":7,"11412":6,"11413":5,"11414":2,"11415":4,"11416":5,"11417":7,"11418":7,"11419":8,"11420":5,"11421":7,"11422":5,"11423":7,"11424":2,"11425":8,"11426":3,"11427":5,"11428":2,"11429":7,"11430":9,"11431":9,"11432":9,"11433":5,"11434":7,"11435":8,"11436":7,"11437":3,"11438":4,"11439":8,"11440":8,"11441":6,"11442":10,"11443":8,"11444":4,"11445":7,"11446":2,"11447":9,"11448":8,"11449":7,"11450":8,"11451":10,"11452":7,"11453":1,"11454":7,"11455":9,"11456":4,"11457":7,"11458":7,"11459":7,"11460":5,"11461":8,"11462":2,"11463":6,"11464":8,"11465":8,"11466":7,"11467":8,"11468":7,"11469":7,"11470":3,"11471":2,"11472":2,"11473":2,"11474":2,"11475":5,"11476":8,"11477":6,"11478":7,"11479":7,"11480":8,"11481":8,"11482":1,"11483":7,"11484":7,"11485":2,"11486":7,"11487":9,"11488":7,"11489":7,"11490":10,"11491":1,"11492":6,"11493":4,"11494":7,"11495":8,"11496":8,"11497":7,"11498":9,"11499":7,"11500":8,"11501":7,"11502":7,"11503":9,"11504":5,"11505":5,"11506":9,"11507":5,"11508":8,"11509":2,"11510":8,"11511":3,"11512":8,"11513":9,"11514":9,"11515":4,"11516":7,"11517":3,"11518":8,"11519":7,"11520":3,"11521":6,"11522":9,"11523":8,"11524":6,"11525":9,"11526":2,"11527":8,"11528":2,"11529":6,"11530":5,"11531":8,"11532":7,"11533":8,"11534":4,"11535":6,"11536":3,"11537":6,"11538":1,"11539":8,"11540":8,"11541":1,"11542":7,"11543":5,"11544":4,"11545":7,"11546":3,"11547":7,"11548":8,"11549":7,"11550":9,"11551":7,"11552":6,"11553":8,"11554":7,"11555":3,"11556":7,"11557":9,"11558":5,"11559":5,"11560":7,"11561":2,"11562":9,"11563":1,"11564":2,"11565":10,"11566":9,"11567":4,"11568":7,"11569":8,"11570":5,"11571":9,"11572":8,"11573":7,"11574":4,"11575":10,"11576":9,"11577":3,"11578":5,"11579":9,"11580":7,"11581":9,"11582":2,"11583":8,"11584":4,"11585":1,"11586":9,"11587":5,"11588":4,"11589":9,"11590":7,"11591":8,"11592":1,"11593":1,"11594":1,"11595":5,"11596":7,"11597":4,"11598":8,"11599":7,"11600":8,"11601":8,"11602":5,"11603":9,"11604":10,"11605":7,"11606":8,"11607":7,"11608":2,"11609":7,"11610":7,"11611":9,"11612":2,"11613":3,"11614":2,"11615":7,"11616":8,"11617":8,"11618":5,"11619":3,"11620":7,"11621":7,"11622":5,"11623":8,"11624":2,"11625":2,"11626":2,"11627":5,"11628":3,"11629":7,"11630":3,"11631":6,"11632":9,"11633":9,"11634":6,"11635":5,"11636":5,"11637":9,"11638":8,"11639":7,"11640":2,"11641":7,"11642":8,"11643":5,"11644":8,"11645":2,"11646":5,"11647":2,"11648":5,"11649":5,"11650":1,"11651":9,"11652":7,"11653":5,"11654":4,"11655":5,"11656":8,"11657":7,"11658":6,"11659":4,"11660":2,"11661":7,"11662":9,"11663":8,"11664":1,"11665":5,"11666":7,"11667":2,"11668":3,"11669":2,"11670":4,"11671":8,"11672":2,"11673":4,"11674":5,"11675":9,"11676":2,"11677":7,"11678":8,"11679":8,"11680":5,"11681":8,"11682":7,"11683":7,"11684":7,"11685":4,"11686":7,"11687":10,"11688":1,"11689":8,"11690":9,"11691":7,"11692":2,"11693":3,"11694":7,"11695":2,"11696":7,"11697":2,"11698":9,"11699":7,"11700":9,"11701":4,"11702":9,"11703":9,"11704":8,"11705":8,"11706":9,"11707":2,"11708":3,"11709":2,"11710":9,"11711":7,"11712":3,"11713":7,"11714":8,"11715":7,"11716":7,"11717":9,"11718":4,"11719":6,"11720":2,"11721":7,"11722":5,"11723":7,"11724":5,"11725":9,"11726":8,"11727":8,"11728":2,"11729":3,"11730":8,"11731":4,"11732":2,"11733":9,"11734":6,"11735":4,"11736":7,"11737":9,"11738":9,"11739":8,"11740":10,"11741":7,"11742":10,"11743":6,"11744":6,"11745":9,"11746":9,"11747":9,"11748":5,"11749":2,"11750":9,"11751":2,"11752":8,"11753":8,"11754":9,"11755":5,"11756":3,"11757":8,"11758":9,"11759":10,"11760":7,"11761":1,"11762":7,"11763":5,"11764":2,"11765":8,"11766":8,"11767":3,"11768":4,"11769":9,"11770":7,"11771":8,"11772":7,"11773":9,"11774":7,"11775":2,"11776":4,"11777":2,"11778":6,"11779":8,"11780":7,"11781":4,"11782":6,"11783":9,"11784":2,"11785":2,"11786":4,"11787":2,"11788":9,"11789":2,"11790":5,"11791":9,"11792":8,"11793":7,"11794":8,"11795":7,"11796":6,"11797":5,"11798":2,"11799":4,"11800":6,"11801":4,"11802":5,"11803":6,"11804":8,"11805":10,"11806":6,"11807":7,"11808":8,"11809":4,"11810":9,"11811":2,"11812":2,"11813":1,"11814":7,"11815":1,"11816":9,"11817":8,"11818":10,"11819":7,"11820":9,"11821":9,"11822":8,"11823":7,"11824":9,"11825":9,"11826":5,"11827":7,"11828":7,"11829":8,"11830":9,"11831":3,"11832":8,"11833":9,"11834":9,"11835":3,"11836":6,"11837":5,"11838":6,"11839":7,"11840":8,"11841":7,"11842":5,"11843":2,"11844":8,"11845":8,"11846":2,"11847":7,"11848":2,"11849":7,"11850":7,"11851":9,"11852":7,"11853":7,"11854":5,"11855":8,"11856":7,"11857":7,"11858":3,"11859":6,"11860":10,"11861":4,"11862":2,"11863":9,"11864":5,"11865":9,"11866":5,"11867":10,"11868":7,"11869":8,"11870":9,"11871":10,"11872":8,"11873":5,"11874":7,"11875":2,"11876":2,"11877":3,"11878":2,"11879":7,"11880":1,"11881":9,"11882":5,"11883":4,"11884":4,"11885":5,"11886":7,"11887":2,"11888":5,"11889":9,"11890":1,"11891":8,"11892":10,"11893":8,"11894":2,"11895":7,"11896":5,"11897":1,"11898":2,"11899":4,"11900":7,"11901":9,"11902":2,"11903":4,"11904":9,"11905":8,"11906":2,"11907":4,"11908":10,"11909":5,"11910":7,"11911":8,"11912":8,"11913":3,"11914":7,"11915":10,"11916":7,"11917":5,"11918":10,"11919":8,"11920":9,"11921":7,"11922":5,"11923":2,"11924":9,"11925":9,"11926":7,"11927":7,"11928":9,"11929":2,"11930":5,"11931":2,"11932":7,"11933":2,"11934":7,"11935":3,"11936":8,"11937":7,"11938":7,"11939":2,"11940":9,"11941":5,"11942":2,"11943":8,"11944":7,"11945":7,"11946":8,"11947":8,"11948":2,"11949":5,"11950":3,"11951":4,"11952":9,"11953":5,"11954":7,"11955":7,"11956":8,"11957":6,"11958":1,"11959":3,"11960":9,"11961":3,"11962":7,"11963":9,"11964":4,"11965":5,"11966":7,"11967":7,"11968":4,"11969":10,"11970":9,"11971":6,"11972":2,"11973":8,"11974":9,"11975":7,"11976":8,"11977":4,"11978":9,"11979":9,"11980":9,"11981":2,"11982":7,"11983":8,"11984":8,"11985":4,"11986":9,"11987":7,"11988":5,"11989":1,"11990":6,"11991":2,"11992":7,"11993":8,"11994":10,"11995":5,"11996":8,"11997":8,"11998":9,"11999":8,"12000":1,"12001":10,"12002":4,"12003":5,"12004":7,"12005":7,"12006":7,"12007":8,"12008":7,"12009":9,"12010":7,"12011":8,"12012":9,"12013":5,"12014":3,"12015":7,"12016":8,"12017":5,"12018":2,"12019":10,"12020":8,"12021":9,"12022":6,"12023":8,"12024":2,"12025":9,"12026":4,"12027":6,"12028":8,"12029":7,"12030":1,"12031":8,"12032":6,"12033":4,"12034":5,"12035":10,"12036":1,"12037":5,"12038":8,"12039":9,"12040":8,"12041":8,"12042":7,"12043":6,"12044":7,"12045":9,"12046":4,"12047":2,"12048":4,"12049":4,"12050":8,"12051":7,"12052":9,"12053":8,"12054":3,"12055":9,"12056":2,"12057":8,"12058":6,"12059":9,"12060":8,"12061":7,"12062":6,"12063":8,"12064":9,"12065":1,"12066":9,"12067":4,"12068":1,"12069":5,"12070":5,"12071":7,"12072":7,"12073":9,"12074":8,"12075":9,"12076":9,"12077":9,"12078":5,"12079":8,"12080":8,"12081":8,"12082":2,"12083":7,"12084":9,"12085":8,"12086":2,"12087":4,"12088":10,"12089":9,"12090":9,"12091":9,"12092":2,"12093":8,"12094":10,"12095":4,"12096":10,"12097":7,"12098":7,"12099":10,"12100":8,"12101":4,"12102":3,"12103":5,"12104":4,"12105":7,"12106":3,"12107":8,"12108":9,"12109":6,"12110":4,"12111":8,"12112":5,"12113":10,"12114":8,"12115":8,"12116":5,"12117":7,"12118":2,"12119":7,"12120":2,"12121":1,"12122":5,"12123":2,"12124":8,"12125":8,"12126":7,"12127":2,"12128":1,"12129":5,"12130":8,"12131":10,"12132":7,"12133":5,"12134":1,"12135":7,"12136":9,"12137":2,"12138":7,"12139":7,"12140":2,"12141":8,"12142":8,"12143":9,"12144":1,"12145":5,"12146":4,"12147":9,"12148":9,"12149":8,"12150":8,"12151":7,"12152":1,"12153":10,"12154":9,"12155":3,"12156":8,"12157":4,"12158":7,"12159":8,"12160":9,"12161":2,"12162":7,"12163":5,"12164":5,"12165":9,"12166":2,"12167":7,"12168":9,"12169":1,"12170":6,"12171":7,"12172":2,"12173":2,"12174":9,"12175":8,"12176":7,"12177":7,"12178":7,"12179":9,"12180":2,"12181":7,"12182":8,"12183":9,"12184":2,"12185":7,"12186":9,"12187":7,"12188":5,"12189":4,"12190":8,"12191":2,"12192":5,"12193":4,"12194":7,"12195":8,"12196":10,"12197":4,"12198":3,"12199":8,"12200":1,"12201":5,"12202":2,"12203":8,"12204":7,"12205":2,"12206":8,"12207":5,"12208":9,"12209":4,"12210":8,"12211":9,"12212":4,"12213":3,"12214":5,"12215":1,"12216":8,"12217":9,"12218":9,"12219":8,"12220":8,"12221":8,"12222":5,"12223":7,"12224":8,"12225":9,"12226":8,"12227":4,"12228":7,"12229":7,"12230":5,"12231":9,"12232":8,"12233":10,"12234":8,"12235":8,"12236":8,"12237":9,"12238":5,"12239":5,"12240":8,"12241":6,"12242":7,"12243":8,"12244":7,"12245":2,"12246":9,"12247":7,"12248":7,"12249":4,"12250":8,"12251":7,"12252":7,"12253":6,"12254":7,"12255":7,"12256":4,"12257":8,"12258":8,"12259":6,"12260":8,"12261":7,"12262":8,"12263":9,"12264":7,"12265":8,"12266":7,"12267":10,"12268":10,"12269":4,"12270":9,"12271":5,"12272":4,"12273":7,"12274":9,"12275":7,"12276":8,"12277":3,"12278":7,"12279":4,"12280":4,"12281":2,"12282":1,"12283":9,"12284":1,"12285":8,"12286":8,"12287":8,"12288":2,"12289":8,"12290":8,"12291":7,"12292":8,"12293":1,"12294":9,"12295":4,"12296":7,"12297":8,"12298":7,"12299":7,"12300":3,"12301":6,"12302":9,"12303":5,"12304":6,"12305":5,"12306":8,"12307":8,"12308":7,"12309":8,"12310":5,"12311":8,"12312":10,"12313":8,"12314":8,"12315":5,"12316":8,"12317":3,"12318":1,"12319":10,"12320":7,"12321":3,"12322":4,"12323":8,"12324":1,"12325":2,"12326":9,"12327":7,"12328":8,"12329":7,"12330":5,"12331":7,"12332":7,"12333":10,"12334":6,"12335":5,"12336":8,"12337":10,"12338":7,"12339":8,"12340":7,"12341":8,"12342":6,"12343":7,"12344":2,"12345":8,"12346":7,"12347":9,"12348":7,"12349":9,"12350":9,"12351":2,"12352":7,"12353":7,"12354":7,"12355":8,"12356":8,"12357":9,"12358":5,"12359":8,"12360":8,"12361":8,"12362":2,"12363":2,"12364":8,"12365":8,"12366":3,"12367":6,"12368":3,"12369":2,"12370":9,"12371":2,"12372":9,"12373":7,"12374":2,"12375":7,"12376":2,"12377":8,"12378":8,"12379":10,"12380":9,"12381":7,"12382":10,"12383":7,"12384":7,"12385":7,"12386":7,"12387":7,"12388":10,"12389":6,"12390":4,"12391":8,"12392":8,"12393":8,"12394":9,"12395":4,"12396":8,"12397":6,"12398":5,"12399":2,"12400":8,"12401":2,"12402":7,"12403":10,"12404":9,"12405":7,"12406":10,"12407":5,"12408":7,"12409":1,"12410":3,"12411":8,"12412":9,"12413":7,"12414":7,"12415":7,"12416":4,"12417":8,"12418":7,"12419":4,"12420":5,"12421":9,"12422":9,"12423":8,"12424":7,"12425":10,"12426":7,"12427":5,"12428":7,"12429":7,"12430":5,"12431":3,"12432":2,"12433":7,"12434":5,"12435":7,"12436":8,"12437":7,"12438":5,"12439":7,"12440":9,"12441":3,"12442":1,"12443":3,"12444":7,"12445":7,"12446":8,"12447":10,"12448":10,"12449":8,"12450":8,"12451":6,"12452":8,"12453":1,"12454":7,"12455":2,"12456":8,"12457":3,"12458":1,"12459":2,"12460":5,"12461":8,"12462":7,"12463":10,"12464":9,"12465":5,"12466":3,"12467":3,"12468":8,"12469":9,"12470":7,"12471":9,"12472":8,"12473":10,"12474":9,"12475":7,"12476":1,"12477":8,"12478":4,"12479":8,"12480":7,"12481":8,"12482":2,"12483":1,"12484":8,"12485":8,"12486":9,"12487":7,"12488":7,"12489":9,"12490":2,"12491":7,"12492":7,"12493":8,"12494":7,"12495":7,"12496":5,"12497":7,"12498":6,"12499":8,"12500":10,"12501":9,"12502":7,"12503":5,"12504":5,"12505":8,"12506":9,"12507":9,"12508":9,"12509":7,"12510":4,"12511":10,"12512":8,"12513":8,"12514":9,"12515":8,"12516":1,"12517":9,"12518":7,"12519":9,"12520":10,"12521":9,"12522":2,"12523":9,"12524":9,"12525":9,"12526":8,"12527":5,"12528":8,"12529":2,"12530":8,"12531":2,"12532":1,"12533":7,"12534":7,"12535":9,"12536":2,"12537":9,"12538":5,"12539":2,"12540":8,"12541":9,"12542":9,"12543":7,"12544":2,"12545":9,"12546":10,"12547":9,"12548":9,"12549":8,"12550":5,"12551":8,"12552":9,"12553":8,"12554":2,"12555":5,"12556":1,"12557":2,"12558":1,"12559":1,"12560":8,"12561":9,"12562":9,"12563":8,"12564":7,"12565":2,"12566":9,"12567":8,"12568":9,"12569":2,"12570":10,"12571":7,"12572":10,"12573":5,"12574":9,"12575":6,"12576":4,"12577":8,"12578":8,"12579":7,"12580":7,"12581":6,"12582":9,"12583":6,"12584":2,"12585":8,"12586":2,"12587":8,"12588":8,"12589":8,"12590":10,"12591":8,"12592":8,"12593":2,"12594":2,"12595":6,"12596":1,"12597":8,"12598":5,"12599":9,"12600":10,"12601":9,"12602":7,"12603":7,"12604":7,"12605":2,"12606":8,"12607":7,"12608":5,"12609":2,"12610":6,"12611":7,"12612":7,"12613":7,"12614":8,"12615":5,"12616":5,"12617":7,"12618":7,"12619":2,"12620":7,"12621":9,"12622":2,"12623":10,"12624":5,"12625":7,"12626":8,"12627":1,"12628":6,"12629":9,"12630":3,"12631":3,"12632":5,"12633":1,"12634":8,"12635":8,"12636":7,"12637":9,"12638":7,"12639":9,"12640":9,"12641":5,"12642":8,"12643":5,"12644":5,"12645":1,"12646":6,"12647":7,"12648":7,"12649":8,"12650":2,"12651":6,"12652":3,"12653":6,"12654":9,"12655":6,"12656":7,"12657":5,"12658":3,"12659":2,"12660":7,"12661":6,"12662":2,"12663":7,"12664":2,"12665":9,"12666":4,"12667":9,"12668":3,"12669":2,"12670":8,"12671":8,"12672":1,"12673":9,"12674":2,"12675":6,"12676":6,"12677":9,"12678":10,"12679":10,"12680":5,"12681":8,"12682":8,"12683":6,"12684":9,"12685":7,"12686":2,"12687":9,"12688":7,"12689":5,"12690":9,"12691":1,"12692":1,"12693":3,"12694":7,"12695":7,"12696":10,"12697":1,"12698":8,"12699":7,"12700":2,"12701":6,"12702":7,"12703":5,"12704":1,"12705":7,"12706":4,"12707":5,"12708":3,"12709":5,"12710":6,"12711":7,"12712":9,"12713":7,"12714":7,"12715":2,"12716":5,"12717":5,"12718":7,"12719":8,"12720":7,"12721":1,"12722":2,"12723":7,"12724":9,"12725":7,"12726":9,"12727":10,"12728":3,"12729":3,"12730":1,"12731":3,"12732":8,"12733":8,"12734":7,"12735":6,"12736":8,"12737":1,"12738":8,"12739":8,"12740":2,"12741":8,"12742":2,"12743":1,"12744":7,"12745":2,"12746":8,"12747":7,"12748":4,"12749":3,"12750":10,"12751":4,"12752":9,"12753":8,"12754":2,"12755":7,"12756":7,"12757":5,"12758":8,"12759":2,"12760":4,"12761":5,"12762":2,"12763":1,"12764":2,"12765":1,"12766":5,"12767":4,"12768":4,"12769":2,"12770":10,"12771":9,"12772":7,"12773":8,"12774":8,"12775":5,"12776":3,"12777":6,"12778":7,"12779":3,"12780":1,"12781":9,"12782":7,"12783":9,"12784":7,"12785":6,"12786":8,"12787":7,"12788":1,"12789":9,"12790":9,"12791":9,"12792":7,"12793":8,"12794":2,"12795":9,"12796":8,"12797":2,"12798":4,"12799":8,"12800":5,"12801":6,"12802":8,"12803":2,"12804":8,"12805":8,"12806":2,"12807":7,"12808":5,"12809":5,"12810":2,"12811":8,"12812":6,"12813":8,"12814":3,"12815":7,"12816":3,"12817":9,"12818":9,"12819":10,"12820":6,"12821":8,"12822":2,"12823":2,"12824":9,"12825":9,"12826":10,"12827":7,"12828":7,"12829":7,"12830":7,"12831":1,"12832":9,"12833":2,"12834":7,"12835":1,"12836":8,"12837":3,"12838":9,"12839":9,"12840":8,"12841":7,"12842":5,"12843":5,"12844":2,"12845":7,"12846":9,"12847":7,"12848":4,"12849":3,"12850":2,"12851":7,"12852":3,"12853":7,"12854":8,"12855":8,"12856":5,"12857":9,"12858":8,"12859":8,"12860":7,"12861":5,"12862":8,"12863":10,"12864":6,"12865":7,"12866":5,"12867":5,"12868":8,"12869":8,"12870":8,"12871":8,"12872":9,"12873":5,"12874":8,"12875":9,"12876":7,"12877":7,"12878":7,"12879":3,"12880":5,"12881":8,"12882":5,"12883":1,"12884":5,"12885":3,"12886":8,"12887":1,"12888":9,"12889":8,"12890":2,"12891":1,"12892":5,"12893":9,"12894":8,"12895":7,"12896":8,"12897":1,"12898":7,"12899":6,"12900":9,"12901":8,"12902":4,"12903":7,"12904":1,"12905":3,"12906":7,"12907":5,"12908":6,"12909":7,"12910":7,"12911":1,"12912":10,"12913":5,"12914":8,"12915":5,"12916":10,"12917":3,"12918":7,"12919":9,"12920":3,"12921":7,"12922":9,"12923":7,"12924":2,"12925":5,"12926":2,"12927":9,"12928":1,"12929":8,"12930":6,"12931":10,"12932":7,"12933":9,"12934":10,"12935":8,"12936":5,"12937":7,"12938":9,"12939":7,"12940":9,"12941":8,"12942":9,"12943":4,"12944":7,"12945":7,"12946":9,"12947":5,"12948":5,"12949":5,"12950":3,"12951":7,"12952":2,"12953":7,"12954":9,"12955":7,"12956":7,"12957":3,"12958":1,"12959":8,"12960":6,"12961":9,"12962":9,"12963":9,"12964":7,"12965":7,"12966":7,"12967":8,"12968":7,"12969":5,"12970":7,"12971":3,"12972":2,"12973":8,"12974":2,"12975":9,"12976":5,"12977":6,"12978":10,"12979":5,"12980":7,"12981":8,"12982":8,"12983":7,"12984":7,"12985":3,"12986":2,"12987":7,"12988":10,"12989":7,"12990":8,"12991":2,"12992":9,"12993":5,"12994":8,"12995":2,"12996":7,"12997":8,"12998":7,"12999":7,"13000":4,"13001":2,"13002":7,"13003":2,"13004":7,"13005":7,"13006":8,"13007":7,"13008":2,"13009":9,"13010":8,"13011":7,"13012":5,"13013":6,"13014":7,"13015":8,"13016":9,"13017":8,"13018":2,"13019":8,"13020":2,"13021":1,"13022":2,"13023":8,"13024":8,"13025":9,"13026":5,"13027":7,"13028":3,"13029":2,"13030":9,"13031":3,"13032":9,"13033":9,"13034":6,"13035":8,"13036":5,"13037":9,"13038":8,"13039":6,"13040":8,"13041":2,"13042":8,"13043":6,"13044":2,"13045":9,"13046":9,"13047":8,"13048":4,"13049":9,"13050":8,"13051":4,"13052":9,"13053":9,"13054":2,"13055":10,"13056":7,"13057":7,"13058":5,"13059":4,"13060":5,"13061":5,"13062":8,"13063":5,"13064":9,"13065":8,"13066":5,"13067":8,"13068":9,"13069":2,"13070":8,"13071":3,"13072":8,"13073":7,"13074":6,"13075":3,"13076":8,"13077":5,"13078":8,"13079":2,"13080":2,"13081":5,"13082":1,"13083":7,"13084":7,"13085":8,"13086":7,"13087":9,"13088":9,"13089":8,"13090":6,"13091":8,"13092":8,"13093":7,"13094":7,"13095":9,"13096":6,"13097":8,"13098":2,"13099":7,"13100":8,"13101":9,"13102":5,"13103":8,"13104":7,"13105":10,"13106":9,"13107":9,"13108":2,"13109":9,"13110":2,"13111":8,"13112":7,"13113":8,"13114":7,"13115":9,"13116":8,"13117":10,"13118":7,"13119":9,"13120":7,"13121":4,"13122":4,"13123":7,"13124":7,"13125":8,"13126":9,"13127":7,"13128":3,"13129":9,"13130":5,"13131":8,"13132":2,"13133":2,"13134":9,"13135":3,"13136":3,"13137":6,"13138":9,"13139":3,"13140":2,"13141":5,"13142":7,"13143":5,"13144":8,"13145":8,"13146":3,"13147":10,"13148":1,"13149":9,"13150":2,"13151":5,"13152":10,"13153":10,"13154":7,"13155":9,"13156":5,"13157":4,"13158":5,"13159":8,"13160":7,"13161":8,"13162":7,"13163":9,"13164":5,"13165":8,"13166":7,"13167":7,"13168":5,"13169":7,"13170":1,"13171":7,"13172":2,"13173":7,"13174":7,"13175":9,"13176":5,"13177":2,"13178":7,"13179":6,"13180":2,"13181":3,"13182":2,"13183":1,"13184":7,"13185":5,"13186":2,"13187":3,"13188":5,"13189":8,"13190":8,"13191":4,"13192":3,"13193":8,"13194":2,"13195":8,"13196":2,"13197":1,"13198":7,"13199":7,"13200":9,"13201":7,"13202":9,"13203":7,"13204":5,"13205":2,"13206":8,"13207":2,"13208":3,"13209":7,"13210":5,"13211":7,"13212":5,"13213":7,"13214":9,"13215":1,"13216":1,"13217":3,"13218":7,"13219":8,"13220":1,"13221":7,"13222":8,"13223":5,"13224":5,"13225":9,"13226":2,"13227":8,"13228":5,"13229":10,"13230":6,"13231":7,"13232":8,"13233":10,"13234":8,"13235":7,"13236":8,"13237":7,"13238":5,"13239":8,"13240":8,"13241":10,"13242":7,"13243":8,"13244":8,"13245":7,"13246":5,"13247":7,"13248":9,"13249":6,"13250":9,"13251":2,"13252":8,"13253":7,"13254":6,"13255":2,"13256":10,"13257":10,"13258":4,"13259":8,"13260":9,"13261":5,"13262":7,"13263":8,"13264":4,"13265":8,"13266":8,"13267":2,"13268":1,"13269":7,"13270":3,"13271":5,"13272":8,"13273":9,"13274":6,"13275":7,"13276":9,"13277":8,"13278":6,"13279":3,"13280":5,"13281":10,"13282":6,"13283":9,"13284":7,"13285":8,"13286":1,"13287":8,"13288":1,"13289":8,"13290":2,"13291":7,"13292":8,"13293":9,"13294":2,"13295":3,"13296":3,"13297":4,"13298":4,"13299":8,"13300":8,"13301":7,"13302":4,"13303":8,"13304":9,"13305":8,"13306":5,"13307":6,"13308":4,"13309":8,"13310":8,"13311":3,"13312":7,"13313":1,"13314":5,"13315":5,"13316":2,"13317":5,"13318":8,"13319":7,"13320":2,"13321":7,"13322":2,"13323":7,"13324":8,"13325":7,"13326":7,"13327":7,"13328":5,"13329":2,"13330":9,"13331":9,"13332":2,"13333":1,"13334":8,"13335":7,"13336":9,"13337":2,"13338":2,"13339":8,"13340":8,"13341":5,"13342":7,"13343":2,"13344":8,"13345":2,"13346":5,"13347":1,"13348":3,"13349":1,"13350":8,"13351":2,"13352":10,"13353":7,"13354":8,"13355":7,"13356":7,"13357":7,"13358":8,"13359":2,"13360":8,"13361":7,"13362":6,"13363":8,"13364":2,"13365":8,"13366":1,"13367":10,"13368":8,"13369":2,"13370":4,"13371":4,"13372":3,"13373":6,"13374":8,"13375":2,"13376":2,"13377":8,"13378":2,"13379":8,"13380":8,"13381":9,"13382":2,"13383":6,"13384":8,"13385":9,"13386":8,"13387":8,"13388":7,"13389":2,"13390":7,"13391":7,"13392":8,"13393":9,"13394":4,"13395":9,"13396":5,"13397":1,"13398":9,"13399":8,"13400":2,"13401":10,"13402":8,"13403":9,"13404":9,"13405":7,"13406":6,"13407":2,"13408":9,"13409":7,"13410":8,"13411":10,"13412":7,"13413":5,"13414":9,"13415":8,"13416":10,"13417":2,"13418":6,"13419":2,"13420":7,"13421":4,"13422":8,"13423":10,"13424":8,"13425":7,"13426":6,"13427":8,"13428":1,"13429":5,"13430":9,"13431":5,"13432":2,"13433":9,"13434":10,"13435":9,"13436":5,"13437":7,"13438":4,"13439":9,"13440":2,"13441":7,"13442":3,"13443":8,"13444":9,"13445":4,"13446":9,"13447":6,"13448":9,"13449":7,"13450":4,"13451":4,"13452":6,"13453":7,"13454":8,"13455":6,"13456":9,"13457":9,"13458":5,"13459":9,"13460":5,"13461":2,"13462":1,"13463":8,"13464":7,"13465":7,"13466":7,"13467":7,"13468":5,"13469":5,"13470":1,"13471":2,"13472":8,"13473":8,"13474":5,"13475":5,"13476":7,"13477":7,"13478":8,"13479":7,"13480":2,"13481":2,"13482":2,"13483":5,"13484":7,"13485":9,"13486":2,"13487":3,"13488":8,"13489":10,"13490":8,"13491":7,"13492":7,"13493":9,"13494":7,"13495":2,"13496":5,"13497":7,"13498":5,"13499":9,"13500":7,"13501":4,"13502":5,"13503":7,"13504":9,"13505":4,"13506":7,"13507":7,"13508":1,"13509":8,"13510":9,"13511":8,"13512":9,"13513":9,"13514":8,"13515":7,"13516":8,"13517":8,"13518":5,"13519":10,"13520":2,"13521":9,"13522":7,"13523":6,"13524":8,"13525":1,"13526":8,"13527":7,"13528":6,"13529":8,"13530":4,"13531":9,"13532":4,"13533":2,"13534":2,"13535":4,"13536":8,"13537":8,"13538":7,"13539":9,"13540":2,"13541":4,"13542":7,"13543":7,"13544":2,"13545":8,"13546":8,"13547":8,"13548":7,"13549":8,"13550":7,"13551":7,"13552":10,"13553":9,"13554":5,"13555":8,"13556":10,"13557":4,"13558":5,"13559":5,"13560":7,"13561":7,"13562":9,"13563":10,"13564":2,"13565":2,"13566":7,"13567":9,"13568":10,"13569":1,"13570":2,"13571":1,"13572":10,"13573":3,"13574":9,"13575":2,"13576":3,"13577":9,"13578":3,"13579":5,"13580":7,"13581":8,"13582":8,"13583":9,"13584":9,"13585":7,"13586":6,"13587":6,"13588":7,"13589":1,"13590":3,"13591":1,"13592":9,"13593":7,"13594":5,"13595":7,"13596":9,"13597":2,"13598":2,"13599":7,"13600":2,"13601":7,"13602":7,"13603":1,"13604":7,"13605":5,"13606":8,"13607":2,"13608":7,"13609":7,"13610":8,"13611":6,"13612":8,"13613":8,"13614":5,"13615":1,"13616":8,"13617":7,"13618":5,"13619":5,"13620":5,"13621":7,"13622":3,"13623":8,"13624":7,"13625":7,"13626":7,"13627":7,"13628":7,"13629":9,"13630":6,"13631":8,"13632":3,"13633":8,"13634":9,"13635":8,"13636":7,"13637":3,"13638":9,"13639":5,"13640":2,"13641":10,"13642":7,"13643":7,"13644":7,"13645":1,"13646":8,"13647":9,"13648":9,"13649":7,"13650":7,"13651":10,"13652":7,"13653":8,"13654":7,"13655":2,"13656":10,"13657":8,"13658":9,"13659":8,"13660":6,"13661":2,"13662":8,"13663":10,"13664":8,"13665":8,"13666":6,"13667":9,"13668":10,"13669":9,"13670":10,"13671":7,"13672":1,"13673":2,"13674":8,"13675":7,"13676":8,"13677":9,"13678":9,"13679":2,"13680":7,"13681":8,"13682":9,"13683":7,"13684":4,"13685":5,"13686":9,"13687":9,"13688":8,"13689":9,"13690":9,"13691":8,"13692":10,"13693":10,"13694":7,"13695":3,"13696":9,"13697":10,"13698":7,"13699":1,"13700":7,"13701":8,"13702":4,"13703":8,"13704":4,"13705":5,"13706":6,"13707":6,"13708":2,"13709":10,"13710":2,"13711":5,"13712":9,"13713":8,"13714":9,"13715":4,"13716":5,"13717":9,"13718":4,"13719":6,"13720":8,"13721":7,"13722":2,"13723":3,"13724":8,"13725":9,"13726":10,"13727":4,"13728":7,"13729":3,"13730":5,"13731":10,"13732":10,"13733":7,"13734":7,"13735":7,"13736":10,"13737":2,"13738":5,"13739":7,"13740":5,"13741":7,"13742":10,"13743":9,"13744":4,"13745":9,"13746":8,"13747":9,"13748":9,"13749":10,"13750":7,"13751":10,"13752":2,"13753":9,"13754":1,"13755":6,"13756":7,"13757":7,"13758":8,"13759":4,"13760":2,"13761":4,"13762":7,"13763":9,"13764":9,"13765":5,"13766":7,"13767":7,"13768":9,"13769":1,"13770":2,"13771":9,"13772":2,"13773":8,"13774":3,"13775":8,"13776":4,"13777":8,"13778":5,"13779":5,"13780":2,"13781":7,"13782":2,"13783":1,"13784":7,"13785":5,"13786":8,"13787":1,"13788":7,"13789":2,"13790":9,"13791":9,"13792":3,"13793":9,"13794":9,"13795":8,"13796":6,"13797":8,"13798":5,"13799":2,"13800":9,"13801":5,"13802":7,"13803":5,"13804":1,"13805":7,"13806":3,"13807":4,"13808":5,"13809":7,"13810":8,"13811":9,"13812":7,"13813":7,"13814":2,"13815":1,"13816":7,"13817":8,"13818":7,"13819":9,"13820":8,"13821":10,"13822":3,"13823":2,"13824":10,"13825":8,"13826":4,"13827":10,"13828":4,"13829":1,"13830":5,"13831":7,"13832":9,"13833":5,"13834":5,"13835":7,"13836":9,"13837":7,"13838":7,"13839":1,"13840":7,"13841":8,"13842":5,"13843":2,"13844":8,"13845":3,"13846":10,"13847":2,"13848":1,"13849":5,"13850":7,"13851":9,"13852":3,"13853":9,"13854":7,"13855":9,"13856":9,"13857":3,"13858":3,"13859":3,"13860":2,"13861":6,"13862":10,"13863":2,"13864":7,"13865":7,"13866":8,"13867":10,"13868":7,"13869":7,"13870":9,"13871":2,"13872":7,"13873":7,"13874":8,"13875":9,"13876":5,"13877":2,"13878":4,"13879":3,"13880":9,"13881":7,"13882":8,"13883":3,"13884":3,"13885":5,"13886":8,"13887":9,"13888":7,"13889":8,"13890":7,"13891":9,"13892":9,"13893":7,"13894":2,"13895":5,"13896":6,"13897":7,"13898":8,"13899":8,"13900":5,"13901":5,"13902":9,"13903":6,"13904":5,"13905":8,"13906":2,"13907":9,"13908":10,"13909":10,"13910":4,"13911":7,"13912":1,"13913":7,"13914":10,"13915":9,"13916":7,"13917":9,"13918":4,"13919":2,"13920":8,"13921":2,"13922":9,"13923":9,"13924":7,"13925":9,"13926":5,"13927":5,"13928":4,"13929":10,"13930":7,"13931":5,"13932":8,"13933":7,"13934":8,"13935":2,"13936":1,"13937":5,"13938":4,"13939":4,"13940":8,"13941":4,"13942":9,"13943":8,"13944":9,"13945":9,"13946":8,"13947":5,"13948":7,"13949":7,"13950":3,"13951":8,"13952":10,"13953":8,"13954":8,"13955":3,"13956":10,"13957":7,"13958":8,"13959":6,"13960":5,"13961":8,"13962":9,"13963":7,"13964":9,"13965":8,"13966":10,"13967":9,"13968":6,"13969":7,"13970":5,"13971":1,"13972":8,"13973":5,"13974":8,"13975":9,"13976":5,"13977":8,"13978":2,"13979":7,"13980":2,"13981":8,"13982":8,"13983":9,"13984":8,"13985":9,"13986":8,"13987":8,"13988":9,"13989":1,"13990":6,"13991":2,"13992":9,"13993":3,"13994":5,"13995":9,"13996":8,"13997":4,"13998":8,"13999":9,"14000":8,"14001":8,"14002":3,"14003":5,"14004":10,"14005":1,"14006":9,"14007":4,"14008":7,"14009":5,"14010":9,"14011":3,"14012":7,"14013":4,"14014":9,"14015":7,"14016":7,"14017":8,"14018":9,"14019":2,"14020":7,"14021":4,"14022":8,"14023":8,"14024":8,"14025":9,"14026":8,"14027":5,"14028":2,"14029":8,"14030":8,"14031":5,"14032":10,"14033":7,"14034":9,"14035":7,"14036":10,"14037":8,"14038":8,"14039":2,"14040":2,"14041":6,"14042":8,"14043":7,"14044":10,"14045":7,"14046":8,"14047":2,"14048":7,"14049":9,"14050":2,"14051":9,"14052":8,"14053":7,"14054":8,"14055":9,"14056":8,"14057":9,"14058":2,"14059":7,"14060":8,"14061":7,"14062":6,"14063":2,"14064":10,"14065":9,"14066":9,"14067":8,"14068":8,"14069":9,"14070":7,"14071":7,"14072":5,"14073":8,"14074":4,"14075":9,"14076":3,"14077":9,"14078":7,"14079":8,"14080":2,"14081":7,"14082":7,"14083":9,"14084":2,"14085":9,"14086":8,"14087":8,"14088":4,"14089":7,"14090":10,"14091":5,"14092":2,"14093":6,"14094":9,"14095":9,"14096":8,"14097":9,"14098":5,"14099":8,"14100":5,"14101":7,"14102":2,"14103":8,"14104":7,"14105":9,"14106":5,"14107":9,"14108":7,"14109":8,"14110":2,"14111":7,"14112":2,"14113":8,"14114":9,"14115":7,"14116":8,"14117":8,"14118":9,"14119":2,"14120":5,"14121":7,"14122":5,"14123":4,"14124":7,"14125":8,"14126":8,"14127":7,"14128":9,"14129":9,"14130":8,"14131":5,"14132":7,"14133":7,"14134":2,"14135":9,"14136":10,"14137":7,"14138":7,"14139":2,"14140":7,"14141":5,"14142":7,"14143":6,"14144":9,"14145":7,"14146":9,"14147":10,"14148":5,"14149":8,"14150":6,"14151":8,"14152":2,"14153":7,"14154":9,"14155":6,"14156":7,"14157":8,"14158":8,"14159":8,"14160":5,"14161":7,"14162":7,"14163":8,"14164":7,"14165":7,"14166":10,"14167":8,"14168":3,"14169":7,"14170":7,"14171":6,"14172":8,"14173":5,"14174":2,"14175":1,"14176":8,"14177":1,"14178":3,"14179":1,"14180":5,"14181":7,"14182":5,"14183":7,"14184":6,"14185":9,"14186":7,"14187":2,"14188":6,"14189":7,"14190":7,"14191":7,"14192":8,"14193":9,"14194":9,"14195":4,"14196":7,"14197":9,"14198":8,"14199":10,"14200":9,"14201":7,"14202":8,"14203":5,"14204":10,"14205":5,"14206":4,"14207":1,"14208":5,"14209":8,"14210":7,"14211":8,"14212":7,"14213":1,"14214":7,"14215":8,"14216":5,"14217":2,"14218":9,"14219":7,"14220":7,"14221":7,"14222":8,"14223":6,"14224":7,"14225":5,"14226":7,"14227":5,"14228":9,"14229":9,"14230":1,"14231":9,"14232":1,"14233":8,"14234":8,"14235":2,"14236":8,"14237":5,"14238":8,"14239":8,"14240":9,"14241":7,"14242":2,"14243":2,"14244":5,"14245":5,"14246":7,"14247":5,"14248":9,"14249":5,"14250":5,"14251":7,"14252":7,"14253":8,"14254":4,"14255":8,"14256":9,"14257":8,"14258":9,"14259":4,"14260":2,"14261":1,"14262":7,"14263":3,"14264":1,"14265":1,"14266":3,"14267":4,"14268":8,"14269":9,"14270":5,"14271":7,"14272":7,"14273":8,"14274":9,"14275":9,"14276":3,"14277":7,"14278":2,"14279":6,"14280":1,"14281":9,"14282":7,"14283":9,"14284":9,"14285":1,"14286":8,"14287":8,"14288":9,"14289":7,"14290":8,"14291":7,"14292":9,"14293":9,"14294":8,"14295":6,"14296":8,"14297":3,"14298":10,"14299":6,"14300":7,"14301":9,"14302":9,"14303":9,"14304":4,"14305":10,"14306":7,"14307":8,"14308":8,"14309":2,"14310":7,"14311":5,"14312":4,"14313":3,"14314":8,"14315":9,"14316":9,"14317":9,"14318":7,"14319":8,"14320":10,"14321":4,"14322":5,"14323":8,"14324":9,"14325":7,"14326":3,"14327":5,"14328":7,"14329":8,"14330":7,"14331":9,"14332":8,"14333":8,"14334":7,"14335":9,"14336":10,"14337":9,"14338":9,"14339":1,"14340":1,"14341":9,"14342":7,"14343":2,"14344":2,"14345":5,"14346":8,"14347":8,"14348":9,"14349":7,"14350":8,"14351":8,"14352":2,"14353":8,"14354":7,"14355":8,"14356":8,"14357":7,"14358":5,"14359":9,"14360":9,"14361":8,"14362":4,"14363":2,"14364":7,"14365":1,"14366":7,"14367":9,"14368":1,"14369":3,"14370":7,"14371":9,"14372":5,"14373":5,"14374":7,"14375":10,"14376":8,"14377":9,"14378":4,"14379":3,"14380":7,"14381":8,"14382":9,"14383":1,"14384":10,"14385":6,"14386":9,"14387":5,"14388":10,"14389":7,"14390":9,"14391":8,"14392":2,"14393":1,"14394":9,"14395":2,"14396":6,"14397":10,"14398":3,"14399":5,"14400":1,"14401":5,"14402":8,"14403":8,"14404":6,"14405":10,"14406":9,"14407":6,"14408":5,"14409":1,"14410":8,"14411":9,"14412":8,"14413":2,"14414":9,"14415":9,"14416":4,"14417":7,"14418":7,"14419":8,"14420":7,"14421":5,"14422":8,"14423":8,"14424":3,"14425":7,"14426":3,"14427":9,"14428":7,"14429":10,"14430":8,"14431":1,"14432":9,"14433":8,"14434":5,"14435":7,"14436":8,"14437":10,"14438":8,"14439":7,"14440":1,"14441":9,"14442":8,"14443":2,"14444":2,"14445":7,"14446":8,"14447":2,"14448":9,"14449":9,"14450":7,"14451":7,"14452":9,"14453":9,"14454":9,"14455":7,"14456":9,"14457":8,"14458":7,"14459":8,"14460":8,"14461":8,"14462":9,"14463":3,"14464":7,"14465":8,"14466":7,"14467":7,"14468":7,"14469":9,"14470":2,"14471":4,"14472":5,"14473":9,"14474":9,"14475":2,"14476":7,"14477":2,"14478":3,"14479":5,"14480":1,"14481":7,"14482":8,"14483":7,"14484":2,"14485":3,"14486":7,"14487":10,"14488":9,"14489":9,"14490":4,"14491":3,"14492":7,"14493":7,"14494":8,"14495":7,"14496":9,"14497":8,"14498":8,"14499":10,"14500":9,"14501":8,"14502":8,"14503":10,"14504":4,"14505":7,"14506":5,"14507":2,"14508":2,"14509":7,"14510":4,"14511":4,"14512":4,"14513":3,"14514":9,"14515":10,"14516":8,"14517":9,"14518":8,"14519":2,"14520":9,"14521":2,"14522":7,"14523":1,"14524":8,"14525":2,"14526":7,"14527":5,"14528":7,"14529":4,"14530":7,"14531":1,"14532":3,"14533":3,"14534":9,"14535":2,"14536":7,"14537":7,"14538":9,"14539":7,"14540":8,"14541":9,"14542":5,"14543":1,"14544":5,"14545":1,"14546":9,"14547":8,"14548":8,"14549":7,"14550":2,"14551":9,"14552":1,"14553":8,"14554":5,"14555":4,"14556":9,"14557":8,"14558":8,"14559":9,"14560":2,"14561":2,"14562":2,"14563":4,"14564":7,"14565":8,"14566":9,"14567":9,"14568":7,"14569":8,"14570":4,"14571":2,"14572":5,"14573":10,"14574":5,"14575":9,"14576":7,"14577":8,"14578":8,"14579":6,"14580":8,"14581":9,"14582":7,"14583":5,"14584":10,"14585":9,"14586":2,"14587":7,"14588":8,"14589":6,"14590":7,"14591":5,"14592":9,"14593":7,"14594":9,"14595":1,"14596":9,"14597":7,"14598":8,"14599":7,"14600":9,"14601":5,"14602":8,"14603":9,"14604":3,"14605":3,"14606":9,"14607":2,"14608":9,"14609":7,"14610":8,"14611":9,"14612":5,"14613":7,"14614":8,"14615":7,"14616":10,"14617":7,"14618":8,"14619":9,"14620":7,"14621":5,"14622":4,"14623":8,"14624":3,"14625":8,"14626":1,"14627":8,"14628":8,"14629":9,"14630":2,"14631":2,"14632":7,"14633":3,"14634":10,"14635":10,"14636":7,"14637":7,"14638":7,"14639":8,"14640":9,"14641":8,"14642":2,"14643":5,"14644":4,"14645":9,"14646":3,"14647":8,"14648":9,"14649":7,"14650":7,"14651":2,"14652":2,"14653":7,"14654":7,"14655":6,"14656":5,"14657":7,"14658":9,"14659":9,"14660":9,"14661":8,"14662":9,"14663":10,"14664":2,"14665":6,"14666":7,"14667":8,"14668":7,"14669":7,"14670":1,"14671":8,"14672":4,"14673":7,"14674":9,"14675":7,"14676":3,"14677":7,"14678":5,"14679":7,"14680":2,"14681":5,"14682":5,"14683":3,"14684":10,"14685":6,"14686":1,"14687":9,"14688":9,"14689":5,"14690":5,"14691":7,"14692":10,"14693":9,"14694":5,"14695":8,"14696":9,"14697":7,"14698":2,"14699":7,"14700":6,"14701":6,"14702":2,"14703":8,"14704":6,"14705":7,"14706":10,"14707":10,"14708":8,"14709":3,"14710":9,"14711":7,"14712":7,"14713":9,"14714":3,"14715":2,"14716":3,"14717":8,"14718":7,"14719":9,"14720":8,"14721":5,"14722":6,"14723":8,"14724":7,"14725":8,"14726":1,"14727":7,"14728":7,"14729":1,"14730":4,"14731":4,"14732":1,"14733":5,"14734":7,"14735":5,"14736":5,"14737":7,"14738":2,"14739":9,"14740":8,"14741":2,"14742":3,"14743":6,"14744":6,"14745":4,"14746":8,"14747":4,"14748":6,"14749":8,"14750":4,"14751":9,"14752":5,"14753":6,"14754":2,"14755":1,"14756":2,"14757":3,"14758":10,"14759":10,"14760":9,"14761":8,"14762":2,"14763":6,"14764":8,"14765":10,"14766":2,"14767":2,"14768":10,"14769":10,"14770":6,"14771":7,"14772":6,"14773":7,"14774":4,"14775":8,"14776":2,"14777":6,"14778":2,"14779":3,"14780":7,"14781":5,"14782":1,"14783":9,"14784":5,"14785":8,"14786":9,"14787":1,"14788":7,"14789":8,"14790":9,"14791":7,"14792":8,"14793":8,"14794":7,"14795":2,"14796":8,"14797":9,"14798":7,"14799":5,"14800":9,"14801":1,"14802":9,"14803":7,"14804":7,"14805":9,"14806":5,"14807":8,"14808":4,"14809":6,"14810":8,"14811":8,"14812":7,"14813":8,"14814":7,"14815":3,"14816":1,"14817":2,"14818":3,"14819":9,"14820":9,"14821":7,"14822":8,"14823":7,"14824":8,"14825":6,"14826":4,"14827":9,"14828":6,"14829":2,"14830":8,"14831":5,"14832":8,"14833":8,"14834":7,"14835":9,"14836":7,"14837":8,"14838":10,"14839":8,"14840":4,"14841":7,"14842":8,"14843":2,"14844":9,"14845":8,"14846":7,"14847":9,"14848":7,"14849":4,"14850":8,"14851":9,"14852":2,"14853":8,"14854":10,"14855":5,"14856":3,"14857":1,"14858":1,"14859":2,"14860":7,"14861":2,"14862":8,"14863":7,"14864":3,"14865":8,"14866":5,"14867":8,"14868":1,"14869":1,"14870":7,"14871":7,"14872":9,"14873":4,"14874":7,"14875":7,"14876":8,"14877":9,"14878":7,"14879":8,"14880":2,"14881":9,"14882":9,"14883":4,"14884":1,"14885":2,"14886":8,"14887":9,"14888":7,"14889":8,"14890":7,"14891":3,"14892":6,"14893":3,"14894":8,"14895":3,"14896":7,"14897":2,"14898":7,"14899":2,"14900":7,"14901":9,"14902":9,"14903":8,"14904":3,"14905":9,"14906":8,"14907":7,"14908":7,"14909":8,"14910":6,"14911":3,"14912":8,"14913":10,"14914":8,"14915":2,"14916":5,"14917":8,"14918":7,"14919":4,"14920":9,"14921":7,"14922":8,"14923":7,"14924":7,"14925":8,"14926":9,"14927":9,"14928":7,"14929":10,"14930":8,"14931":7,"14932":6,"14933":9,"14934":7,"14935":2,"14936":4,"14937":5,"14938":5,"14939":6,"14940":1,"14941":8,"14942":7,"14943":7,"14944":8,"14945":9,"14946":7,"14947":5,"14948":4,"14949":7,"14950":9,"14951":4,"14952":9,"14953":7,"14954":9,"14955":9,"14956":4,"14957":8,"14958":2,"14959":8,"14960":7,"14961":7,"14962":9,"14963":8,"14964":5,"14965":3,"14966":10,"14967":2,"14968":7,"14969":8,"14970":10,"14971":8,"14972":10,"14973":10,"14974":10,"14975":9,"14976":9,"14977":6,"14978":8,"14979":3,"14980":2,"14981":2,"14982":6,"14983":5,"14984":3,"14985":4,"14986":5,"14987":5,"14988":3,"14989":9,"14990":7,"14991":8,"14992":9,"14993":2,"14994":3,"14995":9,"14996":7,"14997":10,"14998":8,"14999":7,"15000":7,"15001":3,"15002":7,"15003":8,"15004":4,"15005":2,"15006":8,"15007":10,"15008":4,"15009":10,"15010":10,"15011":8,"15012":2,"15013":4,"15014":6,"15015":6,"15016":7,"15017":7,"15018":7,"15019":7,"15020":7,"15021":9,"15022":9,"15023":2,"15024":8,"15025":7,"15026":5,"15027":9,"15028":8,"15029":7,"15030":8,"15031":9,"15032":3,"15033":2,"15034":9,"15035":3,"15036":7,"15037":9,"15038":6,"15039":7,"15040":1,"15041":5,"15042":3,"15043":5,"15044":9,"15045":2,"15046":9,"15047":9,"15048":1,"15049":9,"15050":4,"15051":9,"15052":8,"15053":7,"15054":2,"15055":8,"15056":2,"15057":8,"15058":7,"15059":2,"15060":7,"15061":2,"15062":10,"15063":8,"15064":9,"15065":5,"15066":8,"15067":1,"15068":7,"15069":8,"15070":8,"15071":7,"15072":7,"15073":1,"15074":9,"15075":9,"15076":9,"15077":1,"15078":5,"15079":3,"15080":9,"15081":10,"15082":9,"15083":2,"15084":8,"15085":5,"15086":8,"15087":5,"15088":9,"15089":6,"15090":6,"15091":7,"15092":7,"15093":9,"15094":9,"15095":8,"15096":5,"15097":2,"15098":8,"15099":7,"15100":1,"15101":7,"15102":8,"15103":7,"15104":7,"15105":9,"15106":4,"15107":2,"15108":3,"15109":1,"15110":9,"15111":2,"15112":5,"15113":8,"15114":6,"15115":2,"15116":7,"15117":5,"15118":7,"15119":8,"15120":8,"15121":8,"15122":4,"15123":3,"15124":9,"15125":7,"15126":7,"15127":8,"15128":2,"15129":7,"15130":5,"15131":7,"15132":2,"15133":8,"15134":6,"15135":5,"15136":9,"15137":8,"15138":7,"15139":7,"15140":1,"15141":2,"15142":9,"15143":8,"15144":4,"15145":1,"15146":7,"15147":7,"15148":8,"15149":2,"15150":9,"15151":8,"15152":8,"15153":4,"15154":1,"15155":9,"15156":9,"15157":7,"15158":8,"15159":2,"15160":6,"15161":7,"15162":9,"15163":7,"15164":5,"15165":2,"15166":7,"15167":2,"15168":9,"15169":9,"15170":5,"15171":2,"15172":8,"15173":6,"15174":4,"15175":5,"15176":9,"15177":6,"15178":8,"15179":8,"15180":7,"15181":5,"15182":6,"15183":3,"15184":9,"15185":7,"15186":4,"15187":7,"15188":1,"15189":2,"15190":9,"15191":8,"15192":2,"15193":7,"15194":8,"15195":3,"15196":5,"15197":1,"15198":8,"15199":8,"15200":8,"15201":10,"15202":8,"15203":8,"15204":7,"15205":8,"15206":9,"15207":8,"15208":8,"15209":6,"15210":7,"15211":2,"15212":1,"15213":7,"15214":7,"15215":8,"15216":1,"15217":8,"15218":8,"15219":1,"15220":8,"15221":1,"15222":9,"15223":1,"15224":3,"15225":2,"15226":9,"15227":8,"15228":6,"15229":10,"15230":4,"15231":8,"15232":7,"15233":7,"15234":8,"15235":8,"15236":9,"15237":7,"15238":8,"15239":7,"15240":9,"15241":8,"15242":10,"15243":8,"15244":7,"15245":9,"15246":9,"15247":10,"15248":7,"15249":1,"15250":10,"15251":1,"15252":3,"15253":1,"15254":2,"15255":8,"15256":3,"15257":7,"15258":4,"15259":5,"15260":1,"15261":7,"15262":9,"15263":2,"15264":2,"15265":8,"15266":9,"15267":9,"15268":9,"15269":10,"15270":6,"15271":7,"15272":9,"15273":7,"15274":7,"15275":9,"15276":2,"15277":5,"15278":5,"15279":7,"15280":7,"15281":4,"15282":2,"15283":8,"15284":9,"15285":8,"15286":5,"15287":2,"15288":7,"15289":2,"15290":10,"15291":8,"15292":2,"15293":4,"15294":5,"15295":4,"15296":7,"15297":6,"15298":9,"15299":9,"15300":8,"15301":8,"15302":1,"15303":7,"15304":8,"15305":8,"15306":5,"15307":7,"15308":2,"15309":4,"15310":8,"15311":9,"15312":9,"15313":8,"15314":10,"15315":2,"15316":8,"15317":8,"15318":8,"15319":2,"15320":8,"15321":7,"15322":9,"15323":8,"15324":7,"15325":2,"15326":5,"15327":5,"15328":9,"15329":5,"15330":8,"15331":9,"15332":8,"15333":7,"15334":10,"15335":2,"15336":6,"15337":1,"15338":5,"15339":7,"15340":9,"15341":7,"15342":3,"15343":7,"15344":3,"15345":9,"15346":9,"15347":4,"15348":9,"15349":9,"15350":9,"15351":9,"15352":7,"15353":6,"15354":9,"15355":8,"15356":7,"15357":2,"15358":8,"15359":3,"15360":4,"15361":5,"15362":4,"15363":7,"15364":7,"15365":7,"15366":2,"15367":5,"15368":9,"15369":9,"15370":8,"15371":4,"15372":9,"15373":4,"15374":8,"15375":4,"15376":3,"15377":8,"15378":2,"15379":7,"15380":7,"15381":3,"15382":9,"15383":3,"15384":7,"15385":9,"15386":8,"15387":2,"15388":9,"15389":2,"15390":8,"15391":1,"15392":6,"15393":9,"15394":9,"15395":1,"15396":5,"15397":10,"15398":5,"15399":6,"15400":3,"15401":8,"15402":9,"15403":9,"15404":6,"15405":5,"15406":2,"15407":7,"15408":7,"15409":9,"15410":2,"15411":1,"15412":5,"15413":8,"15414":10,"15415":5,"15416":9,"15417":3,"15418":8,"15419":5,"15420":2,"15421":7,"15422":7,"15423":7,"15424":9,"15425":9,"15426":8,"15427":8,"15428":10,"15429":8,"15430":9,"15431":7,"15432":10,"15433":8,"15434":1,"15435":4,"15436":2,"15437":2,"15438":8,"15439":4,"15440":8,"15441":7,"15442":8,"15443":7,"15444":9,"15445":3,"15446":3,"15447":6,"15448":7,"15449":8,"15450":9,"15451":9,"15452":8,"15453":7,"15454":2,"15455":7,"15456":4,"15457":7,"15458":7,"15459":5,"15460":10,"15461":9,"15462":2,"15463":9,"15464":2,"15465":7,"15466":8,"15467":10,"15468":8,"15469":9,"15470":9,"15471":7,"15472":9,"15473":4,"15474":2,"15475":3,"15476":10,"15477":5,"15478":3,"15479":1,"15480":8,"15481":3,"15482":7,"15483":7,"15484":4,"15485":2,"15486":5,"15487":2,"15488":8,"15489":7,"15490":10,"15491":1,"15492":5,"15493":8,"15494":9,"15495":3,"15496":7,"15497":2,"15498":3,"15499":10,"15500":7,"15501":8,"15502":9,"15503":7,"15504":7,"15505":4,"15506":8,"15507":8,"15508":8,"15509":4,"15510":7,"15511":5,"15512":4,"15513":7,"15514":8,"15515":3,"15516":6,"15517":8,"15518":5,"15519":8,"15520":10,"15521":8,"15522":8,"15523":3,"15524":7,"15525":3,"15526":7,"15527":7,"15528":7,"15529":2,"15530":7,"15531":3,"15532":6,"15533":8,"15534":7,"15535":6,"15536":4,"15537":9,"15538":7,"15539":6,"15540":5,"15541":8,"15542":9,"15543":10,"15544":8,"15545":7,"15546":8,"15547":2,"15548":8,"15549":7,"15550":2,"15551":7,"15552":5,"15553":7,"15554":2,"15555":7,"15556":8,"15557":8,"15558":7,"15559":8,"15560":2,"15561":8,"15562":7,"15563":8,"15564":7,"15565":2,"15566":6,"15567":5,"15568":8,"15569":9,"15570":3,"15571":9,"15572":3,"15573":7,"15574":9,"15575":7,"15576":8,"15577":9,"15578":8,"15579":4,"15580":8,"15581":10,"15582":9,"15583":8,"15584":8,"15585":10,"15586":8,"15587":2,"15588":9,"15589":7,"15590":9,"15591":2,"15592":5,"15593":5,"15594":5,"15595":5,"15596":10,"15597":7,"15598":9,"15599":9,"15600":8,"15601":7,"15602":9,"15603":1,"15604":9,"15605":9,"15606":5,"15607":3,"15608":6,"15609":7,"15610":7,"15611":9,"15612":1,"15613":10,"15614":8,"15615":2,"15616":2,"15617":7,"15618":5,"15619":6,"15620":3,"15621":2,"15622":5,"15623":5,"15624":9,"15625":3,"15626":9,"15627":1,"15628":2,"15629":2,"15630":8,"15631":9,"15632":9,"15633":9,"15634":4,"15635":8,"15636":7,"15637":1,"15638":7,"15639":4,"15640":8,"15641":8,"15642":6,"15643":6,"15644":9,"15645":9,"15646":1,"15647":7,"15648":7,"15649":8,"15650":8,"15651":9,"15652":2,"15653":8,"15654":5,"15655":7,"15656":2,"15657":6,"15658":7,"15659":5,"15660":4,"15661":9,"15662":9,"15663":2,"15664":8,"15665":8,"15666":9,"15667":7,"15668":8,"15669":5,"15670":7,"15671":3,"15672":3,"15673":7,"15674":8,"15675":6,"15676":7,"15677":7,"15678":8,"15679":8,"15680":8,"15681":9,"15682":8,"15683":8,"15684":8,"15685":5,"15686":7,"15687":8,"15688":1,"15689":5,"15690":7,"15691":4,"15692":9,"15693":7,"15694":8,"15695":1,"15696":9,"15697":8,"15698":5,"15699":2,"15700":7,"15701":4,"15702":10,"15703":2,"15704":8,"15705":4,"15706":6,"15707":9,"15708":7,"15709":4,"15710":9,"15711":2,"15712":7,"15713":9,"15714":7,"15715":2,"15716":10,"15717":10,"15718":7,"15719":10,"15720":5,"15721":2,"15722":7,"15723":3,"15724":9,"15725":2,"15726":7,"15727":8,"15728":7,"15729":7,"15730":8,"15731":2,"15732":9,"15733":2,"15734":7,"15735":8,"15736":7,"15737":9,"15738":9,"15739":9,"15740":5,"15741":2,"15742":5,"15743":10,"15744":5,"15745":8,"15746":6,"15747":7,"15748":7,"15749":9,"15750":6,"15751":7,"15752":5,"15753":9,"15754":9,"15755":9,"15756":3,"15757":8,"15758":4,"15759":6,"15760":8,"15761":7,"15762":9,"15763":8,"15764":7,"15765":1,"15766":8,"15767":9,"15768":8,"15769":9,"15770":8,"15771":1,"15772":1,"15773":7,"15774":8,"15775":5,"15776":3,"15777":5,"15778":9,"15779":10,"15780":8,"15781":8,"15782":7,"15783":2,"15784":4,"15785":8,"15786":8,"15787":8,"15788":5,"15789":9,"15790":7,"15791":8,"15792":2,"15793":1,"15794":2,"15795":2,"15796":9,"15797":9,"15798":1,"15799":7,"15800":7,"15801":7,"15802":7,"15803":7,"15804":8,"15805":7,"15806":2,"15807":10,"15808":7,"15809":5,"15810":8,"15811":9,"15812":9,"15813":5,"15814":7,"15815":9,"15816":8,"15817":8,"15818":7,"15819":10,"15820":8,"15821":6,"15822":2,"15823":2,"15824":9,"15825":6,"15826":9,"15827":7,"15828":6,"15829":9,"15830":10,"15831":7,"15832":7,"15833":8,"15834":2,"15835":7,"15836":4,"15837":7,"15838":8,"15839":10,"15840":6,"15841":2,"15842":8,"15843":9,"15844":10,"15845":2,"15846":8,"15847":8,"15848":10,"15849":10,"15850":7,"15851":6,"15852":8,"15853":9,"15854":9,"15855":7,"15856":8,"15857":8,"15858":4,"15859":7,"15860":1,"15861":9,"15862":2,"15863":8,"15864":1,"15865":8,"15866":9,"15867":2,"15868":10,"15869":9,"15870":8,"15871":4,"15872":5,"15873":10,"15874":7,"15875":7,"15876":9,"15877":9,"15878":8,"15879":7,"15880":9,"15881":8,"15882":3,"15883":7,"15884":9,"15885":7,"15886":4,"15887":7,"15888":6,"15889":7,"15890":9,"15891":7,"15892":5,"15893":9,"15894":1,"15895":5,"15896":9,"15897":8,"15898":9,"15899":7,"15900":7,"15901":10,"15902":3,"15903":7,"15904":1,"15905":8,"15906":3,"15907":8,"15908":4,"15909":8,"15910":7,"15911":8,"15912":2,"15913":8,"15914":8,"15915":9,"15916":10,"15917":9,"15918":2,"15919":2,"15920":4,"15921":9,"15922":5,"15923":7,"15924":6,"15925":8,"15926":9,"15927":3,"15928":5,"15929":3,"15930":8,"15931":2,"15932":8,"15933":9,"15934":6,"15935":8,"15936":8,"15937":1,"15938":5,"15939":7,"15940":8,"15941":10,"15942":3,"15943":9,"15944":9,"15945":8,"15946":8,"15947":2,"15948":3,"15949":8,"15950":3,"15951":8,"15952":7,"15953":2,"15954":7,"15955":8,"15956":6,"15957":2,"15958":7,"15959":9,"15960":8,"15961":7,"15962":9,"15963":6,"15964":8,"15965":1,"15966":1,"15967":10,"15968":9,"15969":9,"15970":1,"15971":4,"15972":7,"15973":9,"15974":7,"15975":8,"15976":9,"15977":8,"15978":7,"15979":7,"15980":8,"15981":4,"15982":3,"15983":10,"15984":3,"15985":1,"15986":7,"15987":7,"15988":7,"15989":5,"15990":5,"15991":7,"15992":9,"15993":9,"15994":2,"15995":3,"15996":2,"15997":10,"15998":10,"15999":7,"16000":8,"16001":7,"16002":9,"16003":3,"16004":10,"16005":8,"16006":8,"16007":8,"16008":6,"16009":8,"16010":7,"16011":3,"16012":7,"16013":9,"16014":2,"16015":9,"16016":8,"16017":6,"16018":7,"16019":5,"16020":10,"16021":2,"16022":2,"16023":2,"16024":9,"16025":5,"16026":8,"16027":3,"16028":9,"16029":7,"16030":4,"16031":7,"16032":9,"16033":7,"16034":8,"16035":8,"16036":7,"16037":8,"16038":10,"16039":6,"16040":8,"16041":7,"16042":5,"16043":2,"16044":4,"16045":8,"16046":9,"16047":8,"16048":6,"16049":8,"16050":7,"16051":3,"16052":7,"16053":8,"16054":5,"16055":8,"16056":9,"16057":7,"16058":7,"16059":9,"16060":1,"16061":9,"16062":8,"16063":6,"16064":8,"16065":2,"16066":5,"16067":10,"16068":7,"16069":8,"16070":7,"16071":4,"16072":8,"16073":7,"16074":10,"16075":8,"16076":8,"16077":5,"16078":7,"16079":8,"16080":8,"16081":9,"16082":8,"16083":5,"16084":3,"16085":9,"16086":3,"16087":8,"16088":2,"16089":7,"16090":6,"16091":8,"16092":5,"16093":8,"16094":8,"16095":8,"16096":7,"16097":6,"16098":2,"16099":2,"16100":8,"16101":7,"16102":8,"16103":8,"16104":10,"16105":9,"16106":8,"16107":8,"16108":4,"16109":8,"16110":8,"16111":5,"16112":7,"16113":5,"16114":8,"16115":9,"16116":7,"16117":8,"16118":8,"16119":7,"16120":7,"16121":3,"16122":8,"16123":2,"16124":3,"16125":6,"16126":2,"16127":5,"16128":10,"16129":7,"16130":4,"16131":8,"16132":7,"16133":1,"16134":7,"16135":5,"16136":5,"16137":7,"16138":8,"16139":2,"16140":9,"16141":7,"16142":10,"16143":8,"16144":7,"16145":9,"16146":8,"16147":7,"16148":2,"16149":2,"16150":7,"16151":4,"16152":7,"16153":1,"16154":2,"16155":7,"16156":7,"16157":9,"16158":8,"16159":7,"16160":2,"16161":9,"16162":9,"16163":9,"16164":9,"16165":10,"16166":1,"16167":7,"16168":7,"16169":8,"16170":5,"16171":1,"16172":9,"16173":5,"16174":8,"16175":4,"16176":8,"16177":8,"16178":3,"16179":5,"16180":5,"16181":7,"16182":10,"16183":3,"16184":9,"16185":2,"16186":6,"16187":4,"16188":8,"16189":8,"16190":10,"16191":2,"16192":6,"16193":7,"16194":2,"16195":9,"16196":7,"16197":6,"16198":1,"16199":7,"16200":2,"16201":6,"16202":6,"16203":4,"16204":7,"16205":4,"16206":7,"16207":8,"16208":1,"16209":7,"16210":2,"16211":7,"16212":5,"16213":5,"16214":1,"16215":7,"16216":5,"16217":3,"16218":8,"16219":7,"16220":3,"16221":8,"16222":7,"16223":7,"16224":5,"16225":7,"16226":3,"16227":7,"16228":2,"16229":2,"16230":7,"16231":7,"16232":5,"16233":7,"16234":9,"16235":7,"16236":6,"16237":3,"16238":10,"16239":7,"16240":2,"16241":5,"16242":9,"16243":8,"16244":1,"16245":9,"16246":4,"16247":8,"16248":2,"16249":1,"16250":5,"16251":9,"16252":9,"16253":7,"16254":2,"16255":9,"16256":7,"16257":7,"16258":7,"16259":7,"16260":8,"16261":10,"16262":6,"16263":4,"16264":2,"16265":7,"16266":10,"16267":8,"16268":7,"16269":8,"16270":8,"16271":9,"16272":7,"16273":7,"16274":9,"16275":7,"16276":2,"16277":2,"16278":7,"16279":3,"16280":9,"16281":9,"16282":8,"16283":5,"16284":8,"16285":5,"16286":4,"16287":8,"16288":5,"16289":4,"16290":9,"16291":5,"16292":3,"16293":9,"16294":4,"16295":8,"16296":8,"16297":2,"16298":2,"16299":3,"16300":8,"16301":1,"16302":7,"16303":9,"16304":1,"16305":8,"16306":6,"16307":2,"16308":1,"16309":9,"16310":7,"16311":9,"16312":3,"16313":8,"16314":7,"16315":4,"16316":3,"16317":5,"16318":9,"16319":7,"16320":1,"16321":9,"16322":8,"16323":1,"16324":8,"16325":7,"16326":2,"16327":2,"16328":8,"16329":2,"16330":8,"16331":7,"16332":8,"16333":8,"16334":7,"16335":8,"16336":8,"16337":9,"16338":7,"16339":8,"16340":9,"16341":7,"16342":10,"16343":7,"16344":9,"16345":7,"16346":1,"16347":8,"16348":5,"16349":3,"16350":1,"16351":5,"16352":7,"16353":7,"16354":6,"16355":1,"16356":8,"16357":8,"16358":8,"16359":7,"16360":5,"16361":8,"16362":10,"16363":9,"16364":7,"16365":8,"16366":4,"16367":4,"16368":7,"16369":8,"16370":5,"16371":7,"16372":5,"16373":7,"16374":9,"16375":7,"16376":9,"16377":1,"16378":4,"16379":4,"16380":9,"16381":2,"16382":7,"16383":7,"16384":8,"16385":1,"16386":7,"16387":5,"16388":8,"16389":5,"16390":7,"16391":3,"16392":1,"16393":9,"16394":8,"16395":7,"16396":8,"16397":4,"16398":7,"16399":6,"16400":8,"16401":3,"16402":2,"16403":8,"16404":5,"16405":5,"16406":8,"16407":8,"16408":10,"16409":10,"16410":9,"16411":7,"16412":2,"16413":3,"16414":7,"16415":7,"16416":8,"16417":1,"16418":9,"16419":4,"16420":6,"16421":9,"16422":1,"16423":7,"16424":7,"16425":3,"16426":8,"16427":4,"16428":8,"16429":2,"16430":7,"16431":8,"16432":7,"16433":8,"16434":8,"16435":1,"16436":6,"16437":7,"16438":8,"16439":4,"16440":9,"16441":6,"16442":2,"16443":9,"16444":9,"16445":3,"16446":5,"16447":7,"16448":9,"16449":8,"16450":8,"16451":1,"16452":1,"16453":5,"16454":7,"16455":5,"16456":9,"16457":6,"16458":6,"16459":9,"16460":9,"16461":8,"16462":9,"16463":5,"16464":9,"16465":8,"16466":8,"16467":7,"16468":7,"16469":4,"16470":2,"16471":5,"16472":3,"16473":9,"16474":7,"16475":1,"16476":8,"16477":5,"16478":8,"16479":5,"16480":3,"16481":5,"16482":9,"16483":9,"16484":2,"16485":9,"16486":7,"16487":8,"16488":7,"16489":3,"16490":8,"16491":8,"16492":8,"16493":7,"16494":3,"16495":9,"16496":10,"16497":3,"16498":2,"16499":10,"16500":3,"16501":6,"16502":8,"16503":8,"16504":8,"16505":7,"16506":2,"16507":7,"16508":10,"16509":8,"16510":2,"16511":5,"16512":2,"16513":7,"16514":7,"16515":9,"16516":9,"16517":8,"16518":5,"16519":5,"16520":6,"16521":9,"16522":8,"16523":9,"16524":7,"16525":1,"16526":5,"16527":7,"16528":4,"16529":9,"16530":8,"16531":7,"16532":1,"16533":5,"16534":2,"16535":5,"16536":7,"16537":7,"16538":1,"16539":6,"16540":9,"16541":5,"16542":7,"16543":5,"16544":5,"16545":7,"16546":2,"16547":5,"16548":8,"16549":8,"16550":7,"16551":7,"16552":5,"16553":6,"16554":8,"16555":9,"16556":9,"16557":9,"16558":7,"16559":9,"16560":9,"16561":8,"16562":7,"16563":5,"16564":7,"16565":8,"16566":8,"16567":8,"16568":4,"16569":7,"16570":7,"16571":8,"16572":8,"16573":7,"16574":10,"16575":8,"16576":2,"16577":7,"16578":9,"16579":7,"16580":6,"16581":7,"16582":8,"16583":9,"16584":10,"16585":2,"16586":2,"16587":9,"16588":7,"16589":8,"16590":6,"16591":4,"16592":4,"16593":7,"16594":1,"16595":9,"16596":7,"16597":5,"16598":7,"16599":9,"16600":8,"16601":1,"16602":6,"16603":9,"16604":10,"16605":7,"16606":2,"16607":8,"16608":8,"16609":1,"16610":2,"16611":7,"16612":9,"16613":10,"16614":9,"16615":7,"16616":8,"16617":6,"16618":9,"16619":9,"16620":9,"16621":7,"16622":9,"16623":7,"16624":9,"16625":8,"16626":9,"16627":9,"16628":7,"16629":5,"16630":8,"16631":10,"16632":4,"16633":8,"16634":9,"16635":9,"16636":4,"16637":2,"16638":1,"16639":7,"16640":7,"16641":5,"16642":7,"16643":7,"16644":5,"16645":7,"16646":8,"16647":7,"16648":9,"16649":7,"16650":9,"16651":7,"16652":9,"16653":7,"16654":4,"16655":6,"16656":3,"16657":2,"16658":9,"16659":4,"16660":9,"16661":7,"16662":7,"16663":4,"16664":7,"16665":7,"16666":7,"16667":8,"16668":8,"16669":8,"16670":3,"16671":8,"16672":6,"16673":9,"16674":7,"16675":9,"16676":7,"16677":8,"16678":8,"16679":4,"16680":6,"16681":7,"16682":6,"16683":7,"16684":7,"16685":8,"16686":3,"16687":7,"16688":9,"16689":10,"16690":1,"16691":2,"16692":7,"16693":5,"16694":8,"16695":7,"16696":1,"16697":6,"16698":4,"16699":3,"16700":10,"16701":5,"16702":5,"16703":8,"16704":7,"16705":5,"16706":4,"16707":9,"16708":3,"16709":5,"16710":7,"16711":10,"16712":7,"16713":3,"16714":4,"16715":8,"16716":7,"16717":1,"16718":8,"16719":9,"16720":10,"16721":10,"16722":3,"16723":2,"16724":8,"16725":8,"16726":7,"16727":8,"16728":3,"16729":10,"16730":8,"16731":9,"16732":9,"16733":4,"16734":6,"16735":7,"16736":10,"16737":10,"16738":8,"16739":8,"16740":5,"16741":7,"16742":9,"16743":2,"16744":7,"16745":10,"16746":9,"16747":7,"16748":8,"16749":8,"16750":9,"16751":9,"16752":8,"16753":8,"16754":8,"16755":9,"16756":7,"16757":9,"16758":5,"16759":7,"16760":2,"16761":2,"16762":5,"16763":9,"16764":9,"16765":3,"16766":5,"16767":1,"16768":1,"16769":4,"16770":8,"16771":2,"16772":3,"16773":8,"16774":10,"16775":9,"16776":9,"16777":7,"16778":9,"16779":8,"16780":2,"16781":4,"16782":10,"16783":5,"16784":8,"16785":7,"16786":2,"16787":9,"16788":10,"16789":9,"16790":7,"16791":8,"16792":1,"16793":2,"16794":9,"16795":5,"16796":8,"16797":5,"16798":1,"16799":6,"16800":7,"16801":3,"16802":6,"16803":7,"16804":8,"16805":4,"16806":1,"16807":8,"16808":9,"16809":8,"16810":8,"16811":2,"16812":9,"16813":8,"16814":4,"16815":9,"16816":3,"16817":8,"16818":6,"16819":3,"16820":7,"16821":5,"16822":6,"16823":7,"16824":5,"16825":7,"16826":3,"16827":9,"16828":5,"16829":2,"16830":10,"16831":1,"16832":10,"16833":10,"16834":4,"16835":1,"16836":1,"16837":8,"16838":5,"16839":9,"16840":8,"16841":4,"16842":1,"16843":8,"16844":4,"16845":6,"16846":5,"16847":6,"16848":9,"16849":8,"16850":9,"16851":7,"16852":8,"16853":8,"16854":9,"16855":6,"16856":5,"16857":5,"16858":7,"16859":9,"16860":9,"16861":6,"16862":7,"16863":1,"16864":2,"16865":8,"16866":9,"16867":7,"16868":5,"16869":2,"16870":8,"16871":5,"16872":4,"16873":9,"16874":8,"16875":8,"16876":6,"16877":9,"16878":8,"16879":5,"16880":8,"16881":8,"16882":7,"16883":7,"16884":2,"16885":8,"16886":8,"16887":9,"16888":7,"16889":4,"16890":8,"16891":7,"16892":5,"16893":3,"16894":2,"16895":2,"16896":1,"16897":2,"16898":4,"16899":7,"16900":9,"16901":2,"16902":2,"16903":4,"16904":9,"16905":4,"16906":4,"16907":8,"16908":2,"16909":9,"16910":7,"16911":8,"16912":9,"16913":8,"16914":2,"16915":7,"16916":8,"16917":8,"16918":7,"16919":7,"16920":9,"16921":8,"16922":10,"16923":8,"16924":9,"16925":2,"16926":5,"16927":10,"16928":10,"16929":7,"16930":9,"16931":8,"16932":7,"16933":7,"16934":4,"16935":10,"16936":2,"16937":8,"16938":10,"16939":2,"16940":2,"16941":9,"16942":5,"16943":6,"16944":3,"16945":7,"16946":5,"16947":8,"16948":1,"16949":8,"16950":7,"16951":5,"16952":7,"16953":5,"16954":3,"16955":9,"16956":8,"16957":8,"16958":2,"16959":10,"16960":9,"16961":3,"16962":7,"16963":8,"16964":8,"16965":2,"16966":3,"16967":2,"16968":9,"16969":1,"16970":9,"16971":8,"16972":9,"16973":8,"16974":9,"16975":8,"16976":9,"16977":2,"16978":2,"16979":3,"16980":7,"16981":9,"16982":4,"16983":8,"16984":9,"16985":2,"16986":8,"16987":9,"16988":8,"16989":8,"16990":4,"16991":9,"16992":3,"16993":4,"16994":7,"16995":6,"16996":7,"16997":9,"16998":9,"16999":8,"17000":3,"17001":2,"17002":9,"17003":7,"17004":9,"17005":8,"17006":4,"17007":2,"17008":4,"17009":3,"17010":5,"17011":9,"17012":7,"17013":9,"17014":5,"17015":2,"17016":1,"17017":10,"17018":1,"17019":8,"17020":2,"17021":7,"17022":5,"17023":4,"17024":7,"17025":9,"17026":9,"17027":9,"17028":5,"17029":5,"17030":9,"17031":9,"17032":9,"17033":2,"17034":3,"17035":8,"17036":2,"17037":7,"17038":8,"17039":8,"17040":3,"17041":8,"17042":8,"17043":9,"17044":5,"17045":4,"17046":5,"17047":3,"17048":9,"17049":8,"17050":9,"17051":1,"17052":7,"17053":8,"17054":5,"17055":7,"17056":8,"17057":1,"17058":10,"17059":10,"17060":6,"17061":5,"17062":7,"17063":9,"17064":7,"17065":8,"17066":3,"17067":7,"17068":8,"17069":8,"17070":7,"17071":7,"17072":2,"17073":7,"17074":8,"17075":5,"17076":7,"17077":4,"17078":6,"17079":9,"17080":4,"17081":7,"17082":7,"17083":5,"17084":8,"17085":5,"17086":7,"17087":8,"17088":8,"17089":9,"17090":9,"17091":9,"17092":7,"17093":6,"17094":7,"17095":7,"17096":5,"17097":5,"17098":8,"17099":1,"17100":5,"17101":8,"17102":8,"17103":8,"17104":9,"17105":5,"17106":9,"17107":1,"17108":7,"17109":7,"17110":1,"17111":6,"17112":7,"17113":8,"17114":2,"17115":8,"17116":10,"17117":4,"17118":7,"17119":9,"17120":7,"17121":3,"17122":7,"17123":8,"17124":1,"17125":9,"17126":8,"17127":8,"17128":5,"17129":7,"17130":5,"17131":7,"17132":2,"17133":3,"17134":1,"17135":2,"17136":8,"17137":7,"17138":4,"17139":9,"17140":10,"17141":8,"17142":8,"17143":7,"17144":8,"17145":8,"17146":9,"17147":8,"17148":9,"17149":8,"17150":2,"17151":2,"17152":7,"17153":7,"17154":7,"17155":2,"17156":6,"17157":7,"17158":2,"17159":6,"17160":7,"17161":6,"17162":8,"17163":8,"17164":6,"17165":2,"17166":8,"17167":2,"17168":8,"17169":7,"17170":9,"17171":8,"17172":3,"17173":8,"17174":7,"17175":5,"17176":10,"17177":5,"17178":8,"17179":9,"17180":7,"17181":5,"17182":9,"17183":7,"17184":7,"17185":5,"17186":8,"17187":9,"17188":8,"17189":2,"17190":2,"17191":2,"17192":4,"17193":8,"17194":7,"17195":2,"17196":9,"17197":7,"17198":8,"17199":7,"17200":7,"17201":9,"17202":9,"17203":7,"17204":5,"17205":9,"17206":9,"17207":9,"17208":7,"17209":9,"17210":8,"17211":8,"17212":7,"17213":8,"17214":5,"17215":8,"17216":6,"17217":10,"17218":1,"17219":7,"17220":5,"17221":5,"17222":8,"17223":6,"17224":5,"17225":4,"17226":10,"17227":7,"17228":7,"17229":6,"17230":9,"17231":9,"17232":1,"17233":7,"17234":2,"17235":3,"17236":10,"17237":7,"17238":2,"17239":8,"17240":3,"17241":3,"17242":8,"17243":7,"17244":7,"17245":3,"17246":8,"17247":7,"17248":7,"17249":5,"17250":4,"17251":6,"17252":7,"17253":7,"17254":8,"17255":7,"17256":7,"17257":3,"17258":2,"17259":9,"17260":8,"17261":5,"17262":7,"17263":8,"17264":1,"17265":8,"17266":7,"17267":2,"17268":5,"17269":8,"17270":10,"17271":7,"17272":10,"17273":10,"17274":7,"17275":5,"17276":5,"17277":9,"17278":10,"17279":7,"17280":7,"17281":4,"17282":9,"17283":5,"17284":7,"17285":8,"17286":10,"17287":10,"17288":2,"17289":6,"17290":8,"17291":8,"17292":2,"17293":8,"17294":8,"17295":7,"17296":9,"17297":4,"17298":9,"17299":5,"17300":5,"17301":8,"17302":7,"17303":2,"17304":3,"17305":4,"17306":9,"17307":7,"17308":10,"17309":7,"17310":8,"17311":6,"17312":2,"17313":9,"17314":2,"17315":8,"17316":9,"17317":5,"17318":7,"17319":10,"17320":7,"17321":10,"17322":9,"17323":7,"17324":7,"17325":2,"17326":2,"17327":6,"17328":5,"17329":8,"17330":7,"17331":8,"17332":3,"17333":2,"17334":9,"17335":7,"17336":6,"17337":7,"17338":8,"17339":6,"17340":7,"17341":10,"17342":8,"17343":8,"17344":7,"17345":7,"17346":1,"17347":8,"17348":3,"17349":7,"17350":10,"17351":8,"17352":7,"17353":3,"17354":2,"17355":2,"17356":8,"17357":1,"17358":6,"17359":6,"17360":8,"17361":6,"17362":6,"17363":8,"17364":2,"17365":8,"17366":7,"17367":3,"17368":8,"17369":10,"17370":6,"17371":9,"17372":8,"17373":6,"17374":8,"17375":7,"17376":7,"17377":8,"17378":3,"17379":7,"17380":3,"17381":10,"17382":4,"17383":5,"17384":8,"17385":8,"17386":7,"17387":2,"17388":9,"17389":4,"17390":5,"17391":7,"17392":9,"17393":7,"17394":9,"17395":3,"17396":8,"17397":7,"17398":4,"17399":3,"17400":7,"17401":8,"17402":7,"17403":9,"17404":5,"17405":5,"17406":2,"17407":6,"17408":2,"17409":9,"17410":6,"17411":7,"17412":9,"17413":8,"17414":7,"17415":2,"17416":9,"17417":2,"17418":9,"17419":10,"17420":2,"17421":8,"17422":7,"17423":9,"17424":5,"17425":7,"17426":7,"17427":7,"17428":7,"17429":7,"17430":3,"17431":1,"17432":5,"17433":8,"17434":9,"17435":5,"17436":1,"17437":8,"17438":10,"17439":5,"17440":10,"17441":7,"17442":5,"17443":3,"17444":6,"17445":9,"17446":8,"17447":10,"17448":9,"17449":3,"17450":8,"17451":9,"17452":5,"17453":10,"17454":6,"17455":9,"17456":2,"17457":8,"17458":10,"17459":7,"17460":6,"17461":9,"17462":8,"17463":7,"17464":2,"17465":9,"17466":8,"17467":5,"17468":8,"17469":8,"17470":5,"17471":1,"17472":2,"17473":10,"17474":5,"17475":5,"17476":3,"17477":8,"17478":10,"17479":9,"17480":8,"17481":8,"17482":4,"17483":7,"17484":2,"17485":7,"17486":2,"17487":9,"17488":5,"17489":9,"17490":7,"17491":9,"17492":5,"17493":2,"17494":6,"17495":5,"17496":7,"17497":8,"17498":8,"17499":8,"17500":8,"17501":8,"17502":10,"17503":2,"17504":2,"17505":7,"17506":8,"17507":7,"17508":5,"17509":7,"17510":10,"17511":8,"17512":5,"17513":7,"17514":8,"17515":8,"17516":8,"17517":8,"17518":9,"17519":7,"17520":4,"17521":2,"17522":7,"17523":2,"17524":2,"17525":8,"17526":8,"17527":7,"17528":10,"17529":2,"17530":9,"17531":8,"17532":1,"17533":9,"17534":5,"17535":2,"17536":2,"17537":9,"17538":2,"17539":7,"17540":2,"17541":7,"17542":2,"17543":6,"17544":8,"17545":8,"17546":2,"17547":3,"17548":4,"17549":7,"17550":9,"17551":1,"17552":7,"17553":8,"17554":3,"17555":6,"17556":10,"17557":7,"17558":2,"17559":2,"17560":7,"17561":9,"17562":5,"17563":2,"17564":7,"17565":8,"17566":9,"17567":6,"17568":8,"17569":8,"17570":5,"17571":9,"17572":4,"17573":9,"17574":7,"17575":4,"17576":8,"17577":7,"17578":5,"17579":5,"17580":3,"17581":9,"17582":8,"17583":3,"17584":1,"17585":7,"17586":9,"17587":8,"17588":5,"17589":5,"17590":9,"17591":10,"17592":7,"17593":4,"17594":4,"17595":2,"17596":5,"17597":8,"17598":1,"17599":7,"17600":9,"17601":4,"17602":3,"17603":5,"17604":5,"17605":8,"17606":5,"17607":6,"17608":1,"17609":7,"17610":8,"17611":5,"17612":7,"17613":2,"17614":9,"17615":2,"17616":9,"17617":8,"17618":7,"17619":5,"17620":8,"17621":4,"17622":7,"17623":7,"17624":2,"17625":2,"17626":9,"17627":1,"17628":10,"17629":2,"17630":4,"17631":9,"17632":7,"17633":2,"17634":3,"17635":5,"17636":9,"17637":9,"17638":8,"17639":5,"17640":1,"17641":2,"17642":7,"17643":5,"17644":8,"17645":7,"17646":7,"17647":8,"17648":5,"17649":8,"17650":8,"17651":4,"17652":8,"17653":6,"17654":7,"17655":1,"17656":2,"17657":8,"17658":6,"17659":8,"17660":2,"17661":4,"17662":5,"17663":7,"17664":5,"17665":10,"17666":2,"17667":4,"17668":8,"17669":2,"17670":7,"17671":7,"17672":4,"17673":7,"17674":8,"17675":5,"17676":8,"17677":5,"17678":1,"17679":4,"17680":8,"17681":2,"17682":3,"17683":7,"17684":6,"17685":7,"17686":7,"17687":3,"17688":1,"17689":9,"17690":8,"17691":5,"17692":5,"17693":8,"17694":6,"17695":9,"17696":7,"17697":10,"17698":3,"17699":8,"17700":1,"17701":10,"17702":2,"17703":8,"17704":9,"17705":2,"17706":8,"17707":2,"17708":1,"17709":8,"17710":7,"17711":7,"17712":3,"17713":7,"17714":10,"17715":7,"17716":8,"17717":7,"17718":8,"17719":7,"17720":5,"17721":8,"17722":8,"17723":8,"17724":7,"17725":7,"17726":9,"17727":7,"17728":7,"17729":7,"17730":4,"17731":5,"17732":2,"17733":8,"17734":2,"17735":8,"17736":9,"17737":8,"17738":7,"17739":2,"17740":5,"17741":9,"17742":8,"17743":5,"17744":9,"17745":9,"17746":7,"17747":9,"17748":6,"17749":8,"17750":7,"17751":7,"17752":8,"17753":6,"17754":7,"17755":7,"17756":8,"17757":7,"17758":5,"17759":7,"17760":4,"17761":2,"17762":5,"17763":10,"17764":7,"17765":5,"17766":3,"17767":8,"17768":3,"17769":8,"17770":10,"17771":7,"17772":7,"17773":4,"17774":8,"17775":9,"17776":7,"17777":5,"17778":8,"17779":9,"17780":2,"17781":7,"17782":5,"17783":9,"17784":5,"17785":9,"17786":1,"17787":7,"17788":7,"17789":8,"17790":9,"17791":2,"17792":7,"17793":8,"17794":6,"17795":5,"17796":2,"17797":8,"17798":8,"17799":1,"17800":9,"17801":8,"17802":10,"17803":8,"17804":6,"17805":8,"17806":7,"17807":9,"17808":2,"17809":7,"17810":3,"17811":7,"17812":8,"17813":7,"17814":8,"17815":8,"17816":9,"17817":7,"17818":9,"17819":5,"17820":9,"17821":9,"17822":9,"17823":6,"17824":3,"17825":1,"17826":2,"17827":7,"17828":9,"17829":5,"17830":7,"17831":9,"17832":9,"17833":5,"17834":2,"17835":3,"17836":10,"17837":8,"17838":9,"17839":5,"17840":8,"17841":10,"17842":7,"17843":9,"17844":7,"17845":9,"17846":2,"17847":7,"17848":7,"17849":6,"17850":4,"17851":7,"17852":7,"17853":7,"17854":3,"17855":8,"17856":7,"17857":8,"17858":3,"17859":10,"17860":9,"17861":2,"17862":2,"17863":5,"17864":10,"17865":8,"17866":3,"17867":8,"17868":7,"17869":1,"17870":9,"17871":9,"17872":3,"17873":10,"17874":4,"17875":7,"17876":8,"17877":7,"17878":9,"17879":8,"17880":8,"17881":8,"17882":6,"17883":8,"17884":2,"17885":4,"17886":3,"17887":9,"17888":8,"17889":8,"17890":7,"17891":7,"17892":5,"17893":7,"17894":8,"17895":7,"17896":8,"17897":8,"17898":7,"17899":3,"17900":4,"17901":8,"17902":3,"17903":10,"17904":9,"17905":9,"17906":10,"17907":5,"17908":5,"17909":2,"17910":5,"17911":2,"17912":1,"17913":2,"17914":5,"17915":7,"17916":8,"17917":8,"17918":3,"17919":6,"17920":4,"17921":2,"17922":7,"17923":1,"17924":8,"17925":3,"17926":5,"17927":3,"17928":4,"17929":9,"17930":9,"17931":7,"17932":1,"17933":8,"17934":2,"17935":7,"17936":2,"17937":2,"17938":8,"17939":9,"17940":2,"17941":3,"17942":2,"17943":5,"17944":10,"17945":8,"17946":2,"17947":7,"17948":1,"17949":9,"17950":5,"17951":7,"17952":2,"17953":7,"17954":6,"17955":10,"17956":5,"17957":8,"17958":9,"17959":9,"17960":5,"17961":5,"17962":9,"17963":9,"17964":5,"17965":1,"17966":9,"17967":5,"17968":8,"17969":7,"17970":7,"17971":8,"17972":3,"17973":7,"17974":8,"17975":8,"17976":1,"17977":8,"17978":7,"17979":2,"17980":3,"17981":7,"17982":3,"17983":7,"17984":8,"17985":9,"17986":7,"17987":7,"17988":8,"17989":8,"17990":1,"17991":9,"17992":4,"17993":9,"17994":4,"17995":5,"17996":8,"17997":9,"17998":8,"17999":4,"18000":7,"18001":2,"18002":8,"18003":7,"18004":2,"18005":2,"18006":6,"18007":8,"18008":9,"18009":8,"18010":9,"18011":9,"18012":6,"18013":5,"18014":1,"18015":7,"18016":9,"18017":9,"18018":8,"18019":4,"18020":5,"18021":7,"18022":2,"18023":9,"18024":8,"18025":7,"18026":8,"18027":10,"18028":8,"18029":8,"18030":1,"18031":7,"18032":9,"18033":3,"18034":9,"18035":3,"18036":8,"18037":8,"18038":7,"18039":10,"18040":9,"18041":4,"18042":7,"18043":8,"18044":7,"18045":1,"18046":7,"18047":5,"18048":8,"18049":7,"18050":8,"18051":10,"18052":2,"18053":7,"18054":9,"18055":8,"18056":7,"18057":5,"18058":4,"18059":7,"18060":2,"18061":5,"18062":4,"18063":3,"18064":4,"18065":9,"18066":7,"18067":6,"18068":4,"18069":7,"18070":8,"18071":4,"18072":7,"18073":7,"18074":9,"18075":7,"18076":8,"18077":2,"18078":7,"18079":8,"18080":7,"18081":8,"18082":5,"18083":7,"18084":8,"18085":2,"18086":7,"18087":5,"18088":8,"18089":5,"18090":8,"18091":9,"18092":9,"18093":8,"18094":2,"18095":8,"18096":3,"18097":5,"18098":7,"18099":6,"18100":6,"18101":8,"18102":2,"18103":4,"18104":3,"18105":7,"18106":8,"18107":2,"18108":9,"18109":2,"18110":8,"18111":7,"18112":2,"18113":8,"18114":9,"18115":3,"18116":8,"18117":6,"18118":8,"18119":8,"18120":8,"18121":7,"18122":4,"18123":7,"18124":8,"18125":2,"18126":9,"18127":8,"18128":4,"18129":7,"18130":3,"18131":3,"18132":9,"18133":9,"18134":7,"18135":2,"18136":1,"18137":4,"18138":7,"18139":5,"18140":9,"18141":1,"18142":7,"18143":4,"18144":2,"18145":2,"18146":2,"18147":1,"18148":1,"18149":9,"18150":7,"18151":7,"18152":7,"18153":3,"18154":1,"18155":7,"18156":5,"18157":5,"18158":5,"18159":2,"18160":8,"18161":2,"18162":10,"18163":10,"18164":8,"18165":10,"18166":3,"18167":9,"18168":2,"18169":2,"18170":4,"18171":7,"18172":2,"18173":2,"18174":7,"18175":8,"18176":2,"18177":8,"18178":9,"18179":8,"18180":5,"18181":8,"18182":1,"18183":5,"18184":4,"18185":6,"18186":7,"18187":7,"18188":8,"18189":9,"18190":6,"18191":3,"18192":7,"18193":2,"18194":6,"18195":7,"18196":7,"18197":6,"18198":3,"18199":9,"18200":3,"18201":7,"18202":5,"18203":7,"18204":1,"18205":5,"18206":7,"18207":9,"18208":7,"18209":5,"18210":7,"18211":9,"18212":8,"18213":1,"18214":9,"18215":8,"18216":9,"18217":9,"18218":6,"18219":3,"18220":5,"18221":3,"18222":7,"18223":2,"18224":9,"18225":8,"18226":2,"18227":10,"18228":9,"18229":8,"18230":5,"18231":7,"18232":1,"18233":8,"18234":8,"18235":9,"18236":3,"18237":5,"18238":8,"18239":8,"18240":7,"18241":8,"18242":7,"18243":7,"18244":10,"18245":10,"18246":5,"18247":1,"18248":8,"18249":8,"18250":8,"18251":7,"18252":9,"18253":1,"18254":8,"18255":5,"18256":7,"18257":5,"18258":9,"18259":8,"18260":9,"18261":8,"18262":3,"18263":8,"18264":5,"18265":7,"18266":7,"18267":7,"18268":9,"18269":7,"18270":7,"18271":2,"18272":3,"18273":8,"18274":9,"18275":1,"18276":7,"18277":2,"18278":6,"18279":10,"18280":5,"18281":9,"18282":3,"18283":5,"18284":1,"18285":1,"18286":5,"18287":5,"18288":9,"18289":9,"18290":2,"18291":6,"18292":3,"18293":10,"18294":8,"18295":9,"18296":8,"18297":7,"18298":5,"18299":10,"18300":7,"18301":5,"18302":9,"18303":9,"18304":2,"18305":8,"18306":10,"18307":6,"18308":8,"18309":7,"18310":8,"18311":1,"18312":8,"18313":7,"18314":10,"18315":1,"18316":5,"18317":8,"18318":4,"18319":2,"18320":3,"18321":8,"18322":9,"18323":7,"18324":8,"18325":1,"18326":4,"18327":8,"18328":7,"18329":9,"18330":6,"18331":9,"18332":8,"18333":4,"18334":7,"18335":3,"18336":3,"18337":2,"18338":1,"18339":7,"18340":7,"18341":2,"18342":5,"18343":4,"18344":5,"18345":7,"18346":8,"18347":2,"18348":5,"18349":4,"18350":4,"18351":7,"18352":9,"18353":7,"18354":9,"18355":7,"18356":9,"18357":7,"18358":8,"18359":7,"18360":4,"18361":8,"18362":7,"18363":7,"18364":5,"18365":6,"18366":9,"18367":10,"18368":8,"18369":8,"18370":3,"18371":8,"18372":7,"18373":4,"18374":10,"18375":8,"18376":10,"18377":9,"18378":9,"18379":7,"18380":5,"18381":1,"18382":8,"18383":6,"18384":8,"18385":5,"18386":8,"18387":5,"18388":3,"18389":5,"18390":2,"18391":8,"18392":4,"18393":7,"18394":10,"18395":8,"18396":8,"18397":9,"18398":8,"18399":5,"18400":7,"18401":8,"18402":5,"18403":2,"18404":7,"18405":10,"18406":9,"18407":8,"18408":3,"18409":7,"18410":5,"18411":8,"18412":7,"18413":9,"18414":2,"18415":6,"18416":10,"18417":7,"18418":2,"18419":5,"18420":7,"18421":8,"18422":9,"18423":8,"18424":9,"18425":9,"18426":7,"18427":1,"18428":5,"18429":7,"18430":9,"18431":7,"18432":3,"18433":2,"18434":9,"18435":8,"18436":7,"18437":6,"18438":7,"18439":8,"18440":8,"18441":9,"18442":7,"18443":6,"18444":8,"18445":9,"18446":8,"18447":8,"18448":2,"18449":6,"18450":9,"18451":7,"18452":10,"18453":9,"18454":9,"18455":2,"18456":6,"18457":10,"18458":6,"18459":4,"18460":3,"18461":10,"18462":9,"18463":5,"18464":9,"18465":6,"18466":8,"18467":8,"18468":8,"18469":10,"18470":8,"18471":9,"18472":4,"18473":10,"18474":8,"18475":7,"18476":7,"18477":4,"18478":9,"18479":10,"18480":7,"18481":3,"18482":5,"18483":7,"18484":1,"18485":8,"18486":7,"18487":5,"18488":3,"18489":1,"18490":8,"18491":9,"18492":6,"18493":8,"18494":6,"18495":9,"18496":8,"18497":5,"18498":5,"18499":7,"18500":8,"18501":6,"18502":7,"18503":2,"18504":5,"18505":5,"18506":8,"18507":5,"18508":6,"18509":9,"18510":1,"18511":8,"18512":4,"18513":5,"18514":4,"18515":7,"18516":9,"18517":1,"18518":5,"18519":7,"18520":2,"18521":7,"18522":2,"18523":6,"18524":7,"18525":7,"18526":7,"18527":7,"18528":7,"18529":6,"18530":8,"18531":7,"18532":8,"18533":2,"18534":2,"18535":7,"18536":8,"18537":3,"18538":3,"18539":10,"18540":9,"18541":7,"18542":7,"18543":9,"18544":8,"18545":10,"18546":6,"18547":8,"18548":5,"18549":7,"18550":8,"18551":2,"18552":9,"18553":7,"18554":8,"18555":2,"18556":10,"18557":9,"18558":5,"18559":6,"18560":7,"18561":2,"18562":8,"18563":9,"18564":1,"18565":4,"18566":5,"18567":3,"18568":8,"18569":1,"18570":8,"18571":7,"18572":5,"18573":7,"18574":8,"18575":7,"18576":8,"18577":8,"18578":9,"18579":3,"18580":7,"18581":2,"18582":9,"18583":10,"18584":5,"18585":1,"18586":2,"18587":8,"18588":5,"18589":2,"18590":4,"18591":9,"18592":9,"18593":9,"18594":6,"18595":7,"18596":7,"18597":3,"18598":7,"18599":7,"18600":7,"18601":7,"18602":10,"18603":9,"18604":7,"18605":5,"18606":5,"18607":5,"18608":9,"18609":9,"18610":4,"18611":8,"18612":2,"18613":6,"18614":5,"18615":2,"18616":3,"18617":7,"18618":9,"18619":8,"18620":4,"18621":4,"18622":2,"18623":7,"18624":7,"18625":8,"18626":10,"18627":7,"18628":7,"18629":7,"18630":3,"18631":8,"18632":8,"18633":6,"18634":6,"18635":2,"18636":8,"18637":2,"18638":9,"18639":7,"18640":7,"18641":9,"18642":9,"18643":8,"18644":2,"18645":8,"18646":8,"18647":9,"18648":7,"18649":7,"18650":2,"18651":4,"18652":10,"18653":8,"18654":6,"18655":7,"18656":7,"18657":7,"18658":2,"18659":1,"18660":7,"18661":1,"18662":4,"18663":7,"18664":8,"18665":5,"18666":8,"18667":7,"18668":8,"18669":6,"18670":9,"18671":9,"18672":6,"18673":7,"18674":7,"18675":5,"18676":10,"18677":5,"18678":8,"18679":4,"18680":1,"18681":7,"18682":7,"18683":9,"18684":8,"18685":8,"18686":1,"18687":7,"18688":8,"18689":7,"18690":8,"18691":9,"18692":5,"18693":7,"18694":9,"18695":7,"18696":2,"18697":6,"18698":2,"18699":9,"18700":1,"18701":8,"18702":2,"18703":8,"18704":8,"18705":7,"18706":7,"18707":2,"18708":4,"18709":7,"18710":9,"18711":7,"18712":9,"18713":3,"18714":9,"18715":2,"18716":7,"18717":5,"18718":8,"18719":7,"18720":7,"18721":6,"18722":9,"18723":9,"18724":4,"18725":2,"18726":8,"18727":8,"18728":7,"18729":5,"18730":7,"18731":8,"18732":8,"18733":1,"18734":2,"18735":2,"18736":4,"18737":8,"18738":5,"18739":8,"18740":10,"18741":9,"18742":10,"18743":7,"18744":5,"18745":4,"18746":8,"18747":9,"18748":7,"18749":7,"18750":7,"18751":7,"18752":5,"18753":6,"18754":9,"18755":9,"18756":5,"18757":2,"18758":6,"18759":2,"18760":9,"18761":8,"18762":7,"18763":8,"18764":5,"18765":8,"18766":9,"18767":9,"18768":5,"18769":8,"18770":1,"18771":5,"18772":7,"18773":3,"18774":9,"18775":7,"18776":7,"18777":10,"18778":8,"18779":8,"18780":2,"18781":10,"18782":7,"18783":1,"18784":9,"18785":8,"18786":2,"18787":3,"18788":1,"18789":9,"18790":4,"18791":5,"18792":8,"18793":9,"18794":3,"18795":5,"18796":9,"18797":6,"18798":8,"18799":8,"18800":9,"18801":9,"18802":7,"18803":2,"18804":9,"18805":6,"18806":5,"18807":4,"18808":2,"18809":9,"18810":9,"18811":5,"18812":5,"18813":8,"18814":1,"18815":4,"18816":2,"18817":5,"18818":9,"18819":5,"18820":1,"18821":5,"18822":8,"18823":8,"18824":2,"18825":7,"18826":9,"18827":2,"18828":2,"18829":6,"18830":4,"18831":10,"18832":7,"18833":2,"18834":8,"18835":1,"18836":7,"18837":3,"18838":5,"18839":2,"18840":4,"18841":4,"18842":10,"18843":9,"18844":4,"18845":2,"18846":8,"18847":10,"18848":10,"18849":1,"18850":4,"18851":7,"18852":5,"18853":9,"18854":2,"18855":7,"18856":5,"18857":5,"18858":6,"18859":9,"18860":6,"18861":7,"18862":7,"18863":1,"18864":2,"18865":5,"18866":2,"18867":8,"18868":7,"18869":7,"18870":7,"18871":7,"18872":10,"18873":7,"18874":2,"18875":5,"18876":4,"18877":8,"18878":3,"18879":8,"18880":8,"18881":8,"18882":2,"18883":3,"18884":10,"18885":2,"18886":2,"18887":8,"18888":9,"18889":7,"18890":9,"18891":7,"18892":2,"18893":9,"18894":5,"18895":5,"18896":1,"18897":9,"18898":5,"18899":7,"18900":9,"18901":5,"18902":7,"18903":7,"18904":7,"18905":4,"18906":7,"18907":2,"18908":7,"18909":2,"18910":2,"18911":1,"18912":6,"18913":7,"18914":3,"18915":6,"18916":2,"18917":7,"18918":7,"18919":7,"18920":8,"18921":8,"18922":8,"18923":1,"18924":7,"18925":1,"18926":2,"18927":8,"18928":8,"18929":7,"18930":1,"18931":7,"18932":10,"18933":7,"18934":4,"18935":10,"18936":9,"18937":4,"18938":7,"18939":10,"18940":2,"18941":5,"18942":7,"18943":5,"18944":8,"18945":5,"18946":10,"18947":7,"18948":1,"18949":9,"18950":5,"18951":8,"18952":8,"18953":8,"18954":2,"18955":7,"18956":8,"18957":7,"18958":8,"18959":9,"18960":9,"18961":6,"18962":3,"18963":7,"18964":9,"18965":4,"18966":3,"18967":7,"18968":5,"18969":9,"18970":9,"18971":10,"18972":10,"18973":4,"18974":9,"18975":7,"18976":2,"18977":4,"18978":4,"18979":8,"18980":5,"18981":8,"18982":4,"18983":5,"18984":3,"18985":7,"18986":7,"18987":8,"18988":9,"18989":6,"18990":7,"18991":9,"18992":1,"18993":5,"18994":5,"18995":1,"18996":6,"18997":5,"18998":1,"18999":2,"19000":1,"19001":4,"19002":5,"19003":7,"19004":7,"19005":9,"19006":7,"19007":2,"19008":8,"19009":9,"19010":8,"19011":7,"19012":7,"19013":8,"19014":8,"19015":10,"19016":7,"19017":1,"19018":3,"19019":2,"19020":4,"19021":10,"19022":7,"19023":2,"19024":2,"19025":9,"19026":8,"19027":10,"19028":9,"19029":6,"19030":9,"19031":5,"19032":7,"19033":5,"19034":6,"19035":9,"19036":3,"19037":4,"19038":8,"19039":8,"19040":3,"19041":5,"19042":1,"19043":7,"19044":9,"19045":8,"19046":8,"19047":5,"19048":7,"19049":8,"19050":4,"19051":4,"19052":8,"19053":8,"19054":2,"19055":9,"19056":2,"19057":5,"19058":1,"19059":8,"19060":4,"19061":9,"19062":8,"19063":1,"19064":7,"19065":8,"19066":8,"19067":7,"19068":8,"19069":7,"19070":9,"19071":8,"19072":10,"19073":9,"19074":8,"19075":10,"19076":4,"19077":9,"19078":1,"19079":9,"19080":8,"19081":8,"19082":8,"19083":5,"19084":2,"19085":4,"19086":9,"19087":8,"19088":9,"19089":9,"19090":7,"19091":4,"19092":8,"19093":7,"19094":5,"19095":8,"19096":2,"19097":7,"19098":3,"19099":6,"19100":7,"19101":2,"19102":8,"19103":8,"19104":5,"19105":2,"19106":9,"19107":2,"19108":2,"19109":5,"19110":1,"19111":8,"19112":7,"19113":9,"19114":5,"19115":8,"19116":8,"19117":10,"19118":2,"19119":4,"19120":9,"19121":5,"19122":7,"19123":2,"19124":2,"19125":4,"19126":4,"19127":2,"19128":4,"19129":9,"19130":5,"19131":5,"19132":7,"19133":8,"19134":7,"19135":8,"19136":9,"19137":2,"19138":2,"19139":8,"19140":8,"19141":2,"19142":8,"19143":7,"19144":7,"19145":8,"19146":8,"19147":8,"19148":8,"19149":8,"19150":7,"19151":2,"19152":9,"19153":1,"19154":5,"19155":3,"19156":2,"19157":9,"19158":5,"19159":7,"19160":3,"19161":7,"19162":3,"19163":7,"19164":9,"19165":2,"19166":6,"19167":7,"19168":6,"19169":4,"19170":8,"19171":7,"19172":9,"19173":1,"19174":5,"19175":4,"19176":5,"19177":9,"19178":1,"19179":8,"19180":9,"19181":8,"19182":2,"19183":8,"19184":7,"19185":1,"19186":9,"19187":7,"19188":5,"19189":5,"19190":8,"19191":7,"19192":3,"19193":7,"19194":8,"19195":2,"19196":7,"19197":9,"19198":7,"19199":1,"19200":7,"19201":4,"19202":8,"19203":5,"19204":8,"19205":8,"19206":3,"19207":9,"19208":9,"19209":7,"19210":9,"19211":9,"19212":8,"19213":8,"19214":8,"19215":7,"19216":2,"19217":6,"19218":9,"19219":4,"19220":8,"19221":8,"19222":7,"19223":9,"19224":7,"19225":9,"19226":7,"19227":3,"19228":8,"19229":2,"19230":10,"19231":7,"19232":7,"19233":3,"19234":7,"19235":3,"19236":8,"19237":9,"19238":8,"19239":9,"19240":10,"19241":3,"19242":4,"19243":7,"19244":9,"19245":5,"19246":8,"19247":4,"19248":2,"19249":8,"19250":9,"19251":8,"19252":4,"19253":2,"19254":4,"19255":9,"19256":9,"19257":4,"19258":7,"19259":10,"19260":8,"19261":3,"19262":3,"19263":2,"19264":8,"19265":8,"19266":8,"19267":3,"19268":6,"19269":9,"19270":2,"19271":8,"19272":8,"19273":9,"19274":2,"19275":8,"19276":1,"19277":7,"19278":9,"19279":7,"19280":8,"19281":9,"19282":8,"19283":8,"19284":8,"19285":6,"19286":8,"19287":8,"19288":7,"19289":3,"19290":8,"19291":9,"19292":5,"19293":9,"19294":8,"19295":7,"19296":8,"19297":2,"19298":7,"19299":8,"19300":2,"19301":8,"19302":9,"19303":2,"19304":9,"19305":8,"19306":7,"19307":3,"19308":5,"19309":10,"19310":7,"19311":7,"19312":7,"19313":7,"19314":8,"19315":5,"19316":1,"19317":8,"19318":6,"19319":5,"19320":2,"19321":7,"19322":7,"19323":2,"19324":7,"19325":8,"19326":5,"19327":10,"19328":6,"19329":9,"19330":8,"19331":7,"19332":1,"19333":3,"19334":8,"19335":1,"19336":9,"19337":3,"19338":9,"19339":5,"19340":8,"19341":10,"19342":8,"19343":9,"19344":8,"19345":2,"19346":9,"19347":2,"19348":2,"19349":10,"19350":8,"19351":2,"19352":2,"19353":10,"19354":8,"19355":2,"19356":8,"19357":5,"19358":7,"19359":8,"19360":9,"19361":1,"19362":9,"19363":3,"19364":7,"19365":8,"19366":9,"19367":7,"19368":7,"19369":9,"19370":3,"19371":8,"19372":5,"19373":1,"19374":8,"19375":5,"19376":7,"19377":7,"19378":4,"19379":5,"19380":3,"19381":8,"19382":9,"19383":8,"19384":2,"19385":5,"19386":8,"19387":7,"19388":9,"19389":6,"19390":3,"19391":8,"19392":9,"19393":3,"19394":9,"19395":8,"19396":9,"19397":1,"19398":4,"19399":7,"19400":8,"19401":5,"19402":6,"19403":4,"19404":7,"19405":8,"19406":5,"19407":8,"19408":2,"19409":8,"19410":4,"19411":7,"19412":9,"19413":9,"19414":2,"19415":7,"19416":5,"19417":5,"19418":7,"19419":7,"19420":5,"19421":8,"19422":8,"19423":10,"19424":7,"19425":5,"19426":6,"19427":8,"19428":9,"19429":2,"19430":8,"19431":7,"19432":7,"19433":9,"19434":8,"19435":10,"19436":8,"19437":9,"19438":3,"19439":7,"19440":9,"19441":7,"19442":5,"19443":5,"19444":10,"19445":9,"19446":9,"19447":7,"19448":9,"19449":7,"19450":9,"19451":7,"19452":9,"19453":5,"19454":2,"19455":8,"19456":9,"19457":1,"19458":5,"19459":8,"19460":9,"19461":3,"19462":8,"19463":9,"19464":7,"19465":8,"19466":8,"19467":7,"19468":4,"19469":10,"19470":9,"19471":9,"19472":9,"19473":9,"19474":8,"19475":3,"19476":9,"19477":7,"19478":2,"19479":7,"19480":1,"19481":9,"19482":8,"19483":3,"19484":3,"19485":5,"19486":8,"19487":9,"19488":9,"19489":10,"19490":3,"19491":6,"19492":7,"19493":2,"19494":10,"19495":7,"19496":9,"19497":8,"19498":2,"19499":2,"19500":7,"19501":7,"19502":2,"19503":4,"19504":8,"19505":4,"19506":8,"19507":7,"19508":8,"19509":5,"19510":7,"19511":7,"19512":9,"19513":10,"19514":8,"19515":8,"19516":4,"19517":9,"19518":6,"19519":7,"19520":7,"19521":7,"19522":7,"19523":9,"19524":2,"19525":5,"19526":5,"19527":10,"19528":8,"19529":10,"19530":8,"19531":10,"19532":8,"19533":8,"19534":7,"19535":6,"19536":10,"19537":8,"19538":1,"19539":7,"19540":2,"19541":9,"19542":9,"19543":8,"19544":5,"19545":2,"19546":9,"19547":1,"19548":7,"19549":7,"19550":8,"19551":8,"19552":7,"19553":1,"19554":8,"19555":7,"19556":7,"19557":5,"19558":8,"19559":9,"19560":6,"19561":8,"19562":8,"19563":7,"19564":1,"19565":2,"19566":4,"19567":2,"19568":7,"19569":7,"19570":8,"19571":6,"19572":9,"19573":8,"19574":3,"19575":7,"19576":4,"19577":7,"19578":4,"19579":9,"19580":5,"19581":8,"19582":7,"19583":7,"19584":10,"19585":2,"19586":2,"19587":9,"19588":5,"19589":9,"19590":2,"19591":8,"19592":9,"19593":3,"19594":10,"19595":5,"19596":8,"19597":7,"19598":8,"19599":1,"19600":8,"19601":7,"19602":7,"19603":7,"19604":8,"19605":4,"19606":2,"19607":8,"19608":5,"19609":5,"19610":5,"19611":9,"19612":9,"19613":8,"19614":8,"19615":10,"19616":4,"19617":4,"19618":4,"19619":2,"19620":3,"19621":5,"19622":7,"19623":2,"19624":8,"19625":6,"19626":8,"19627":4,"19628":7,"19629":4,"19630":7,"19631":7,"19632":6,"19633":8,"19634":6,"19635":9,"19636":9,"19637":7,"19638":8,"19639":6,"19640":9,"19641":4,"19642":7,"19643":8,"19644":9,"19645":5,"19646":5,"19647":1,"19648":9,"19649":8,"19650":3,"19651":9,"19652":7,"19653":7,"19654":8,"19655":2,"19656":6,"19657":2,"19658":8,"19659":9,"19660":7,"19661":2,"19662":8,"19663":9,"19664":8,"19665":8,"19666":4,"19667":6,"19668":8,"19669":2,"19670":7,"19671":4,"19672":2,"19673":1,"19674":3,"19675":8,"19676":8,"19677":8,"19678":7,"19679":2,"19680":1,"19681":6,"19682":2,"19683":4,"19684":8,"19685":8,"19686":7,"19687":10,"19688":7,"19689":4,"19690":4,"19691":9,"19692":8,"19693":9,"19694":5,"19695":9,"19696":7,"19697":4,"19698":7,"19699":10,"19700":7,"19701":8,"19702":5,"19703":8,"19704":6,"19705":3,"19706":3,"19707":2,"19708":2,"19709":9,"19710":8,"19711":10,"19712":8,"19713":1,"19714":1,"19715":7,"19716":1,"19717":7,"19718":8,"19719":7,"19720":4,"19721":7,"19722":9,"19723":4,"19724":4,"19725":7,"19726":9,"19727":8,"19728":7,"19729":4,"19730":2,"19731":2,"19732":7,"19733":4,"19734":7,"19735":9,"19736":7,"19737":8,"19738":6,"19739":8,"19740":7,"19741":5,"19742":7,"19743":5,"19744":9,"19745":8,"19746":7,"19747":1,"19748":1,"19749":7,"19750":9,"19751":2,"19752":4,"19753":10,"19754":7,"19755":7,"19756":7,"19757":9,"19758":2,"19759":5,"19760":1,"19761":1,"19762":7,"19763":2,"19764":9,"19765":2,"19766":7,"19767":10,"19768":2,"19769":9,"19770":8,"19771":8,"19772":3,"19773":4,"19774":5,"19775":1,"19776":2,"19777":7,"19778":7,"19779":9,"19780":7,"19781":9,"19782":3,"19783":1,"19784":8,"19785":5,"19786":1,"19787":9,"19788":7,"19789":10,"19790":7,"19791":8,"19792":9,"19793":7,"19794":7,"19795":5,"19796":7,"19797":4,"19798":1,"19799":9,"19800":8,"19801":8,"19802":1,"19803":4,"19804":8,"19805":5,"19806":2,"19807":8,"19808":8,"19809":8,"19810":10,"19811":6,"19812":7,"19813":6,"19814":7,"19815":2,"19816":7,"19817":6,"19818":2,"19819":7,"19820":9,"19821":9,"19822":6,"19823":7,"19824":4,"19825":9,"19826":8,"19827":5,"19828":10,"19829":6,"19830":9,"19831":5,"19832":3,"19833":5,"19834":4,"19835":7,"19836":5,"19837":8,"19838":10,"19839":2,"19840":8,"19841":2,"19842":3,"19843":8,"19844":9,"19845":5,"19846":4,"19847":9,"19848":9,"19849":5,"19850":8,"19851":9,"19852":7,"19853":8,"19854":5,"19855":9,"19856":7,"19857":7,"19858":2,"19859":8,"19860":10,"19861":8,"19862":5,"19863":3,"19864":7,"19865":5,"19866":7,"19867":1,"19868":2,"19869":9,"19870":9,"19871":4,"19872":3,"19873":8,"19874":9,"19875":5,"19876":8,"19877":7,"19878":7,"19879":7,"19880":8,"19881":9,"19882":9,"19883":5,"19884":5,"19885":8,"19886":9,"19887":2,"19888":9,"19889":8,"19890":7,"19891":2,"19892":4,"19893":7,"19894":8,"19895":9,"19896":4,"19897":7,"19898":7,"19899":7,"19900":6,"19901":6,"19902":8,"19903":5,"19904":5,"19905":5,"19906":7,"19907":8,"19908":9,"19909":7,"19910":7,"19911":3,"19912":8,"19913":10,"19914":1,"19915":7,"19916":4,"19917":8,"19918":5,"19919":5,"19920":8,"19921":7,"19922":8,"19923":3,"19924":8,"19925":9,"19926":4,"19927":7,"19928":8,"19929":8,"19930":8,"19931":5,"19932":8,"19933":9,"19934":7,"19935":7,"19936":1,"19937":10,"19938":9,"19939":7,"19940":6,"19941":8,"19942":6,"19943":9,"19944":9,"19945":3,"19946":7,"19947":7,"19948":7,"19949":5,"19950":10,"19951":1,"19952":1,"19953":7,"19954":7,"19955":7,"19956":8,"19957":8,"19958":9,"19959":9,"19960":2,"19961":2,"19962":2,"19963":9,"19964":1,"19965":1,"19966":7,"19967":7,"19968":6,"19969":9,"19970":8,"19971":7,"19972":1,"19973":1,"19974":2,"19975":10,"19976":9,"19977":7,"19978":3,"19979":9,"19980":7,"19981":5,"19982":7,"19983":2,"19984":7,"19985":7,"19986":4,"19987":7,"19988":6,"19989":9,"19990":4,"19991":7,"19992":3,"19993":9,"19994":9,"19995":3,"19996":2,"19997":7,"19998":7,"19999":7,"20000":1,"20001":9,"20002":5,"20003":5,"20004":8,"20005":7,"20006":8,"20007":9,"20008":8,"20009":6,"20010":2,"20011":2,"20012":7,"20013":7,"20014":2,"20015":8,"20016":8,"20017":3,"20018":8,"20019":7,"20020":8,"20021":8,"20022":5,"20023":3,"20024":5,"20025":5,"20026":1,"20027":2,"20028":9,"20029":2,"20030":8,"20031":8,"20032":2,"20033":7,"20034":2,"20035":3,"20036":9,"20037":9,"20038":3,"20039":8,"20040":7,"20041":7,"20042":2,"20043":8,"20044":7,"20045":9,"20046":8,"20047":8,"20048":9,"20049":8,"20050":7,"20051":9,"20052":9,"20053":8,"20054":8,"20055":6,"20056":6,"20057":8,"20058":8,"20059":9,"20060":9,"20061":6,"20062":5,"20063":9,"20064":8,"20065":5,"20066":7,"20067":4,"20068":9,"20069":2,"20070":5,"20071":8,"20072":9,"20073":8,"20074":7,"20075":6,"20076":8,"20077":8,"20078":8,"20079":9,"20080":3,"20081":7,"20082":8,"20083":3,"20084":9,"20085":5,"20086":9,"20087":3,"20088":2,"20089":7,"20090":9,"20091":2,"20092":8,"20093":7,"20094":3,"20095":5,"20096":8,"20097":7,"20098":7,"20099":2,"20100":1,"20101":8,"20102":6,"20103":9,"20104":5,"20105":2,"20106":7,"20107":10,"20108":4,"20109":10,"20110":8,"20111":8,"20112":9,"20113":8,"20114":1,"20115":8,"20116":2,"20117":2,"20118":9,"20119":2,"20120":9,"20121":7,"20122":8,"20123":7,"20124":4,"20125":8,"20126":5,"20127":8,"20128":8,"20129":9,"20130":8,"20131":8,"20132":5,"20133":8,"20134":5,"20135":5,"20136":7,"20137":1,"20138":9,"20139":7,"20140":7,"20141":7,"20142":3,"20143":7,"20144":8,"20145":2,"20146":9,"20147":2,"20148":9,"20149":9,"20150":9,"20151":5,"20152":7,"20153":10,"20154":9,"20155":5,"20156":3,"20157":2,"20158":1,"20159":9,"20160":7,"20161":2,"20162":3,"20163":10,"20164":8,"20165":5,"20166":2,"20167":8,"20168":5,"20169":2,"20170":5,"20171":5,"20172":9,"20173":5,"20174":2,"20175":9,"20176":8,"20177":8,"20178":8,"20179":5,"20180":7,"20181":8,"20182":9,"20183":8,"20184":7,"20185":7,"20186":5,"20187":10,"20188":8,"20189":8,"20190":8,"20191":8,"20192":2,"20193":3,"20194":7,"20195":1,"20196":9,"20197":7,"20198":9,"20199":8,"20200":6,"20201":5,"20202":10,"20203":8,"20204":9,"20205":8,"20206":2,"20207":8,"20208":9,"20209":7,"20210":8,"20211":8,"20212":7,"20213":6,"20214":7,"20215":2,"20216":9,"20217":2,"20218":8,"20219":7,"20220":10,"20221":7,"20222":8,"20223":5,"20224":3,"20225":9,"20226":2,"20227":10,"20228":6,"20229":10,"20230":2,"20231":7,"20232":10,"20233":10,"20234":5,"20235":5,"20236":5,"20237":8,"20238":9,"20239":1,"20240":7,"20241":7,"20242":7,"20243":9,"20244":8,"20245":7,"20246":2,"20247":2,"20248":8,"20249":5,"20250":4,"20251":8,"20252":8,"20253":9,"20254":7,"20255":7,"20256":10,"20257":10,"20258":7,"20259":7,"20260":7,"20261":8,"20262":8,"20263":9,"20264":8,"20265":7,"20266":3,"20267":5,"20268":7,"20269":7,"20270":2,"20271":1,"20272":5,"20273":7,"20274":5,"20275":10,"20276":3,"20277":9,"20278":7,"20279":10,"20280":7,"20281":5,"20282":2,"20283":8,"20284":3,"20285":8,"20286":4,"20287":6,"20288":2,"20289":5,"20290":5,"20291":10,"20292":7,"20293":10,"20294":9,"20295":2,"20296":6,"20297":3,"20298":8,"20299":7,"20300":8,"20301":5,"20302":9,"20303":6,"20304":8,"20305":8,"20306":7,"20307":7,"20308":5,"20309":1,"20310":8,"20311":2,"20312":5,"20313":8,"20314":7,"20315":7,"20316":2,"20317":9,"20318":7,"20319":2,"20320":2,"20321":9,"20322":9,"20323":10,"20324":4,"20325":5,"20326":10,"20327":9,"20328":8,"20329":1,"20330":7,"20331":2,"20332":9,"20333":7,"20334":5,"20335":5,"20336":7,"20337":2,"20338":1,"20339":8,"20340":8,"20341":8,"20342":2,"20343":9,"20344":8,"20345":8,"20346":2,"20347":7,"20348":9,"20349":7,"20350":8,"20351":5,"20352":9,"20353":3,"20354":7,"20355":7,"20356":4,"20357":8,"20358":8,"20359":6,"20360":7,"20361":7,"20362":5,"20363":5,"20364":7,"20365":9,"20366":7,"20367":10,"20368":10,"20369":8,"20370":2,"20371":9,"20372":8,"20373":1,"20374":8,"20375":3,"20376":8,"20377":3,"20378":4,"20379":9,"20380":2,"20381":8,"20382":7,"20383":4,"20384":9,"20385":5,"20386":4,"20387":9,"20388":3,"20389":4,"20390":5,"20391":1,"20392":8,"20393":7,"20394":10,"20395":7,"20396":6,"20397":6,"20398":2,"20399":4,"20400":5,"20401":9,"20402":8,"20403":6,"20404":5,"20405":9,"20406":8,"20407":7,"20408":5,"20409":5,"20410":9,"20411":9,"20412":8,"20413":7,"20414":2,"20415":7,"20416":1,"20417":5,"20418":2,"20419":5,"20420":9,"20421":7,"20422":8,"20423":9,"20424":5,"20425":9,"20426":6,"20427":5,"20428":10,"20429":8,"20430":7,"20431":8,"20432":10,"20433":2,"20434":7,"20435":8,"20436":8,"20437":7,"20438":10,"20439":8,"20440":7,"20441":7,"20442":9,"20443":7,"20444":7,"20445":10,"20446":2,"20447":6,"20448":8,"20449":9,"20450":8,"20451":7,"20452":6,"20453":9,"20454":5,"20455":9,"20456":7,"20457":9,"20458":9,"20459":10,"20460":5,"20461":8,"20462":1,"20463":9,"20464":8,"20465":9,"20466":5,"20467":7,"20468":8,"20469":6,"20470":7,"20471":8,"20472":9,"20473":7,"20474":6,"20475":9,"20476":9,"20477":8,"20478":8,"20479":1,"20480":7,"20481":7,"20482":6,"20483":9,"20484":8,"20485":9,"20486":7,"20487":10,"20488":3,"20489":7,"20490":9,"20491":5,"20492":2,"20493":8,"20494":9,"20495":9,"20496":1,"20497":2,"20498":7,"20499":8,"20500":6,"20501":9,"20502":9,"20503":2,"20504":2,"20505":8,"20506":1,"20507":8,"20508":8,"20509":7,"20510":7,"20511":8,"20512":8,"20513":5,"20514":6,"20515":5,"20516":4,"20517":7,"20518":5,"20519":7,"20520":8,"20521":5,"20522":8,"20523":1,"20524":6,"20525":5,"20526":7,"20527":9,"20528":8,"20529":8,"20530":2,"20531":8,"20532":8,"20533":8,"20534":5,"20535":8,"20536":7,"20537":2,"20538":5,"20539":10,"20540":7,"20541":7,"20542":7,"20543":1,"20544":7,"20545":10,"20546":4,"20547":5,"20548":10,"20549":7,"20550":10,"20551":9,"20552":7,"20553":8,"20554":5,"20555":2,"20556":9,"20557":4,"20558":9,"20559":9,"20560":2,"20561":5,"20562":9,"20563":10,"20564":8,"20565":5,"20566":6,"20567":9,"20568":8,"20569":4,"20570":4,"20571":4,"20572":8,"20573":8,"20574":2,"20575":8,"20576":8,"20577":7,"20578":8,"20579":5,"20580":8,"20581":2,"20582":8,"20583":8,"20584":6,"20585":8,"20586":7,"20587":5,"20588":7,"20589":7,"20590":9,"20591":7,"20592":7,"20593":5,"20594":7,"20595":8,"20596":1,"20597":6,"20598":3,"20599":9,"20600":8,"20601":2,"20602":7,"20603":4,"20604":8,"20605":8,"20606":3,"20607":9,"20608":8,"20609":8,"20610":4,"20611":5,"20612":9,"20613":6,"20614":8,"20615":3,"20616":4,"20617":5,"20618":7,"20619":4,"20620":9,"20621":6,"20622":2,"20623":8,"20624":8,"20625":8,"20626":7,"20627":1,"20628":4,"20629":10,"20630":9,"20631":9,"20632":7,"20633":1,"20634":7,"20635":2,"20636":5,"20637":8,"20638":8,"20639":2,"20640":9,"20641":9,"20642":7,"20643":9,"20644":2,"20645":7,"20646":6,"20647":9,"20648":9,"20649":2,"20650":10,"20651":7,"20652":4,"20653":10,"20654":5,"20655":4,"20656":7,"20657":6,"20658":4,"20659":5,"20660":9,"20661":8,"20662":8,"20663":2,"20664":9,"20665":8,"20666":3,"20667":8,"20668":3,"20669":9,"20670":8,"20671":5,"20672":9,"20673":7,"20674":6,"20675":9,"20676":4,"20677":5,"20678":7,"20679":8,"20680":7,"20681":10,"20682":8,"20683":9,"20684":3,"20685":5,"20686":7,"20687":7,"20688":7,"20689":9,"20690":8,"20691":5,"20692":1,"20693":8,"20694":3,"20695":5,"20696":3,"20697":5,"20698":8,"20699":6,"20700":7,"20701":8,"20702":8,"20703":6,"20704":5,"20705":3,"20706":4,"20707":1,"20708":9,"20709":10,"20710":6,"20711":10,"20712":5,"20713":6,"20714":9,"20715":8,"20716":8,"20717":7,"20718":9,"20719":9,"20720":4,"20721":3,"20722":5,"20723":2,"20724":2,"20725":3,"20726":8,"20727":2,"20728":1,"20729":7,"20730":1,"20731":2,"20732":7,"20733":8,"20734":9,"20735":1,"20736":2,"20737":2,"20738":2,"20739":6,"20740":2,"20741":7,"20742":9,"20743":8,"20744":10,"20745":9,"20746":8,"20747":5,"20748":5,"20749":5,"20750":3,"20751":4,"20752":7,"20753":2,"20754":4,"20755":8,"20756":2,"20757":8,"20758":7,"20759":10,"20760":6,"20761":9,"20762":4,"20763":9,"20764":5,"20765":9,"20766":1,"20767":7,"20768":7,"20769":5,"20770":1,"20771":7,"20772":8,"20773":5,"20774":9,"20775":2,"20776":8,"20777":2,"20778":1,"20779":9,"20780":8,"20781":5,"20782":5,"20783":2,"20784":8,"20785":2,"20786":6,"20787":8,"20788":7,"20789":5,"20790":8,"20791":9,"20792":10,"20793":9,"20794":4,"20795":9,"20796":3,"20797":8,"20798":7,"20799":2,"20800":8,"20801":6,"20802":9,"20803":9,"20804":2,"20805":7,"20806":8,"20807":6,"20808":5,"20809":7,"20810":10,"20811":7,"20812":8,"20813":9,"20814":7,"20815":8,"20816":2,"20817":3,"20818":7,"20819":8,"20820":5,"20821":7,"20822":5,"20823":2,"20824":2,"20825":8,"20826":1,"20827":7,"20828":5,"20829":4,"20830":1,"20831":8,"20832":8,"20833":8,"20834":9,"20835":8,"20836":9,"20837":7,"20838":9,"20839":7,"20840":8,"20841":7,"20842":2,"20843":7,"20844":7,"20845":5,"20846":10,"20847":8,"20848":7,"20849":3,"20850":2,"20851":8,"20852":4,"20853":7,"20854":7,"20855":7,"20856":7,"20857":6,"20858":9,"20859":8,"20860":9,"20861":3,"20862":8,"20863":3,"20864":8,"20865":2,"20866":4,"20867":8,"20868":5,"20869":3,"20870":1,"20871":4,"20872":8,"20873":7,"20874":8,"20875":8,"20876":4,"20877":8,"20878":6,"20879":9,"20880":7,"20881":5,"20882":2,"20883":3,"20884":4,"20885":7,"20886":9,"20887":9,"20888":9,"20889":5,"20890":2,"20891":7,"20892":3,"20893":2,"20894":3,"20895":6,"20896":7,"20897":7,"20898":2,"20899":7,"20900":7,"20901":4,"20902":9,"20903":7,"20904":9,"20905":2,"20906":3,"20907":9,"20908":9,"20909":4,"20910":9,"20911":8,"20912":8,"20913":8,"20914":5,"20915":8,"20916":3,"20917":8,"20918":9,"20919":2,"20920":5,"20921":7,"20922":9,"20923":4,"20924":4,"20925":8,"20926":4,"20927":7,"20928":8,"20929":6,"20930":10,"20931":9,"20932":8,"20933":5,"20934":10,"20935":9,"20936":8,"20937":2,"20938":8,"20939":5,"20940":8,"20941":8,"20942":6,"20943":7,"20944":1,"20945":9,"20946":6,"20947":8,"20948":2,"20949":2,"20950":7,"20951":5,"20952":8,"20953":8,"20954":9,"20955":9,"20956":2,"20957":6,"20958":3,"20959":7,"20960":8,"20961":8,"20962":9,"20963":7,"20964":10,"20965":7,"20966":9,"20967":9,"20968":2,"20969":8,"20970":6,"20971":8,"20972":7,"20973":2,"20974":5,"20975":5,"20976":6,"20977":6,"20978":7,"20979":5,"20980":8,"20981":2,"20982":8,"20983":9,"20984":3,"20985":2,"20986":7,"20987":8,"20988":2,"20989":3,"20990":8,"20991":6,"20992":7,"20993":9,"20994":4,"20995":2,"20996":9,"20997":7,"20998":7,"20999":9,"21000":7,"21001":10,"21002":6,"21003":2,"21004":2,"21005":8,"21006":7,"21007":7,"21008":7,"21009":8,"21010":7,"21011":7,"21012":9,"21013":8,"21014":7,"21015":8,"21016":7,"21017":8,"21018":8,"21019":9,"21020":2,"21021":1,"21022":5,"21023":8,"21024":10,"21025":5,"21026":10,"21027":7,"21028":7,"21029":7,"21030":7,"21031":6,"21032":9,"21033":10,"21034":8,"21035":8,"21036":8,"21037":9,"21038":8,"21039":10,"21040":2,"21041":9,"21042":9,"21043":6,"21044":8,"21045":9,"21046":9,"21047":8,"21048":7,"21049":3,"21050":2,"21051":7,"21052":2,"21053":7,"21054":8,"21055":9,"21056":9,"21057":7,"21058":8,"21059":4,"21060":9,"21061":7,"21062":8,"21063":9,"21064":2,"21065":10,"21066":8,"21067":2,"21068":7,"21069":6,"21070":8,"21071":2,"21072":9,"21073":2,"21074":4,"21075":2,"21076":8,"21077":3,"21078":8,"21079":5,"21080":8,"21081":2,"21082":3,"21083":9,"21084":8,"21085":4,"21086":5,"21087":6,"21088":2,"21089":7,"21090":1,"21091":4,"21092":6,"21093":6,"21094":7,"21095":7,"21096":10,"21097":3,"21098":8,"21099":8,"21100":8,"21101":9,"21102":8,"21103":2,"21104":8,"21105":5,"21106":9,"21107":3,"21108":7,"21109":8,"21110":6,"21111":6,"21112":4,"21113":7,"21114":6,"21115":9,"21116":10,"21117":8,"21118":9,"21119":6,"21120":9,"21121":7,"21122":3,"21123":1,"21124":4,"21125":8,"21126":3,"21127":2,"21128":9,"21129":1,"21130":9,"21131":9,"21132":9,"21133":5,"21134":1,"21135":10,"21136":9,"21137":9,"21138":3,"21139":8,"21140":10,"21141":8,"21142":7,"21143":9,"21144":8,"21145":5,"21146":8,"21147":8,"21148":9,"21149":1,"21150":9,"21151":7,"21152":3,"21153":7,"21154":3,"21155":8,"21156":2,"21157":7,"21158":7,"21159":5,"21160":1,"21161":9,"21162":2,"21163":3,"21164":9,"21165":2,"21166":7,"21167":7,"21168":8,"21169":8,"21170":8,"21171":10,"21172":5,"21173":9,"21174":5,"21175":6,"21176":8,"21177":7,"21178":4,"21179":9,"21180":6,"21181":2,"21182":2,"21183":2,"21184":9,"21185":7,"21186":1,"21187":8,"21188":5,"21189":7,"21190":8,"21191":8,"21192":8,"21193":2,"21194":8,"21195":8,"21196":10,"21197":6,"21198":7,"21199":9,"21200":9,"21201":8,"21202":5,"21203":10,"21204":2,"21205":8,"21206":7,"21207":9,"21208":9,"21209":4,"21210":7,"21211":8,"21212":4,"21213":2,"21214":3,"21215":8,"21216":9,"21217":7,"21218":3,"21219":7,"21220":1,"21221":9,"21222":2,"21223":8,"21224":7,"21225":2,"21226":7,"21227":7,"21228":2,"21229":3,"21230":10,"21231":1,"21232":10,"21233":4,"21234":7,"21235":10,"21236":9,"21237":1,"21238":7,"21239":8,"21240":8,"21241":2,"21242":7,"21243":8,"21244":3,"21245":5,"21246":5,"21247":1,"21248":10,"21249":6,"21250":8,"21251":7,"21252":8,"21253":7,"21254":10,"21255":4,"21256":7,"21257":3,"21258":5,"21259":9,"21260":5,"21261":5,"21262":10,"21263":7,"21264":9,"21265":4,"21266":8,"21267":8,"21268":7,"21269":7,"21270":7,"21271":8,"21272":2,"21273":9,"21274":1,"21275":5,"21276":9,"21277":6,"21278":8,"21279":7,"21280":9,"21281":10,"21282":9,"21283":1,"21284":5,"21285":6,"21286":4,"21287":2,"21288":5,"21289":7,"21290":2,"21291":2,"21292":7,"21293":2,"21294":7,"21295":3,"21296":4,"21297":7,"21298":8,"21299":2,"21300":3,"21301":2,"21302":7,"21303":9,"21304":5,"21305":5,"21306":1,"21307":5,"21308":2,"21309":2,"21310":3,"21311":6,"21312":6,"21313":1,"21314":8,"21315":1,"21316":9,"21317":8,"21318":3,"21319":3,"21320":9,"21321":8,"21322":5,"21323":4,"21324":3,"21325":5,"21326":7,"21327":7,"21328":4,"21329":9,"21330":5,"21331":8,"21332":7,"21333":7,"21334":2,"21335":7,"21336":7,"21337":3,"21338":7,"21339":7,"21340":2,"21341":8,"21342":7,"21343":2,"21344":9,"21345":8,"21346":4,"21347":7,"21348":9,"21349":9,"21350":8,"21351":8,"21352":4,"21353":7,"21354":1,"21355":3,"21356":9,"21357":1,"21358":2,"21359":8,"21360":7,"21361":3,"21362":3,"21363":8,"21364":6,"21365":8,"21366":7,"21367":6,"21368":2,"21369":9,"21370":8,"21371":8,"21372":7,"21373":6,"21374":4,"21375":8,"21376":5,"21377":9,"21378":3,"21379":6,"21380":8,"21381":7,"21382":10,"21383":8,"21384":7,"21385":9,"21386":7,"21387":9,"21388":4,"21389":2,"21390":7,"21391":7,"21392":3,"21393":5,"21394":10,"21395":7,"21396":6,"21397":2,"21398":8,"21399":7,"21400":7,"21401":8,"21402":5,"21403":5,"21404":7,"21405":1,"21406":7,"21407":7,"21408":7,"21409":1,"21410":4,"21411":6,"21412":7,"21413":7,"21414":2,"21415":4,"21416":2,"21417":10,"21418":6,"21419":2,"21420":2,"21421":7,"21422":7,"21423":9,"21424":9,"21425":6,"21426":3,"21427":6,"21428":9,"21429":8,"21430":7,"21431":8,"21432":8,"21433":2,"21434":1,"21435":9,"21436":4,"21437":5,"21438":4,"21439":7,"21440":5,"21441":7,"21442":7,"21443":5,"21444":9,"21445":8,"21446":7,"21447":2,"21448":2,"21449":2,"21450":7,"21451":7,"21452":2,"21453":7,"21454":7,"21455":5,"21456":1,"21457":4,"21458":7,"21459":8,"21460":5,"21461":7,"21462":7,"21463":8,"21464":2,"21465":7,"21466":5,"21467":6,"21468":7,"21469":7,"21470":2,"21471":5,"21472":7,"21473":7,"21474":5,"21475":7,"21476":2,"21477":3,"21478":8,"21479":9,"21480":9,"21481":2,"21482":5,"21483":2,"21484":8,"21485":8,"21486":5,"21487":2,"21488":2,"21489":8,"21490":7,"21491":8,"21492":5,"21493":4,"21494":8,"21495":8,"21496":7,"21497":2,"21498":5,"21499":8,"21500":8,"21501":4,"21502":9,"21503":4,"21504":9,"21505":8,"21506":1,"21507":1,"21508":2,"21509":7,"21510":8,"21511":5,"21512":7,"21513":9,"21514":6,"21515":9,"21516":10,"21517":8,"21518":8,"21519":9,"21520":8,"21521":8,"21522":4,"21523":7,"21524":7,"21525":5,"21526":8,"21527":8,"21528":5,"21529":7,"21530":8,"21531":9,"21532":4,"21533":2,"21534":7,"21535":2,"21536":8,"21537":9,"21538":8,"21539":7,"21540":1,"21541":7,"21542":7,"21543":3,"21544":9,"21545":5,"21546":7,"21547":7,"21548":9,"21549":2,"21550":7,"21551":7,"21552":1,"21553":2,"21554":8,"21555":5,"21556":8,"21557":8,"21558":7,"21559":8,"21560":7,"21561":6,"21562":7,"21563":9,"21564":5,"21565":2,"21566":9,"21567":2,"21568":6,"21569":8,"21570":3,"21571":4,"21572":8,"21573":1,"21574":7,"21575":9,"21576":2,"21577":8,"21578":3,"21579":8,"21580":2,"21581":7,"21582":3,"21583":5,"21584":3,"21585":5,"21586":7,"21587":10,"21588":5,"21589":8,"21590":6,"21591":9,"21592":2,"21593":7,"21594":1,"21595":6,"21596":9,"21597":9,"21598":8,"21599":4,"21600":8,"21601":2,"21602":9,"21603":10,"21604":7,"21605":7,"21606":7,"21607":2,"21608":8,"21609":5,"21610":7,"21611":2,"21612":8,"21613":8,"21614":6,"21615":8,"21616":9,"21617":7,"21618":2,"21619":2,"21620":1,"21621":9,"21622":2,"21623":9,"21624":2,"21625":7,"21626":3,"21627":3,"21628":7,"21629":2,"21630":3,"21631":7,"21632":8,"21633":2,"21634":8,"21635":1,"21636":6,"21637":7,"21638":2,"21639":3,"21640":8,"21641":8,"21642":5,"21643":7,"21644":9,"21645":8,"21646":2,"21647":10,"21648":9,"21649":9,"21650":7,"21651":8,"21652":2,"21653":8,"21654":8,"21655":7,"21656":8,"21657":4,"21658":2,"21659":2,"21660":2,"21661":5,"21662":8,"21663":8,"21664":6,"21665":5,"21666":2,"21667":10,"21668":5,"21669":8,"21670":7,"21671":8,"21672":9,"21673":1,"21674":8,"21675":8,"21676":9,"21677":7,"21678":5,"21679":5,"21680":5,"21681":2,"21682":10,"21683":8,"21684":4,"21685":1,"21686":8,"21687":10,"21688":5,"21689":8,"21690":8,"21691":1,"21692":7,"21693":8,"21694":8,"21695":6,"21696":2,"21697":9,"21698":8,"21699":9,"21700":9,"21701":8,"21702":2,"21703":2,"21704":8,"21705":2,"21706":4,"21707":6,"21708":8,"21709":5,"21710":8,"21711":5,"21712":9,"21713":9,"21714":2,"21715":6,"21716":8,"21717":7,"21718":6,"21719":9,"21720":3,"21721":2,"21722":8,"21723":4,"21724":9,"21725":7,"21726":6,"21727":7,"21728":8,"21729":10,"21730":8,"21731":9,"21732":2,"21733":3,"21734":9,"21735":1,"21736":8,"21737":3,"21738":1,"21739":9,"21740":7,"21741":8,"21742":9,"21743":8,"21744":8,"21745":8,"21746":9,"21747":5,"21748":9,"21749":2,"21750":3,"21751":8,"21752":7,"21753":7,"21754":1,"21755":6,"21756":8,"21757":7,"21758":3,"21759":8,"21760":9,"21761":5,"21762":7,"21763":8,"21764":2,"21765":7,"21766":7,"21767":9,"21768":1,"21769":8,"21770":5,"21771":7,"21772":7,"21773":9,"21774":4,"21775":1,"21776":8,"21777":7,"21778":10,"21779":7,"21780":2,"21781":8,"21782":3,"21783":7,"21784":2,"21785":9,"21786":7,"21787":4,"21788":8,"21789":4,"21790":6,"21791":9,"21792":8,"21793":8,"21794":2,"21795":7,"21796":2,"21797":2,"21798":4,"21799":2,"21800":7,"21801":8,"21802":5,"21803":7,"21804":4,"21805":7,"21806":6,"21807":5,"21808":8,"21809":8,"21810":8,"21811":7,"21812":7,"21813":9,"21814":5,"21815":7,"21816":8,"21817":2,"21818":8,"21819":5,"21820":8,"21821":5,"21822":6,"21823":7,"21824":7,"21825":9,"21826":7,"21827":9,"21828":8,"21829":4,"21830":8,"21831":7,"21832":1,"21833":7,"21834":1,"21835":9,"21836":10,"21837":7,"21838":8,"21839":1,"21840":9,"21841":8,"21842":3,"21843":7,"21844":6,"21845":6,"21846":2,"21847":5,"21848":8,"21849":4,"21850":5,"21851":9,"21852":1,"21853":8,"21854":7,"21855":8,"21856":4,"21857":9,"21858":2,"21859":7,"21860":8,"21861":9,"21862":9,"21863":9,"21864":8,"21865":8,"21866":5,"21867":9,"21868":8,"21869":7,"21870":1,"21871":2,"21872":5,"21873":5,"21874":3,"21875":8,"21876":4,"21877":9,"21878":9,"21879":8,"21880":7,"21881":9,"21882":7,"21883":8,"21884":7,"21885":7,"21886":8,"21887":7,"21888":2,"21889":9,"21890":4,"21891":3,"21892":7,"21893":8,"21894":9,"21895":8,"21896":10,"21897":3,"21898":10,"21899":2,"21900":1,"21901":8,"21902":8,"21903":6,"21904":7,"21905":6,"21906":2,"21907":9,"21908":9,"21909":7,"21910":8,"21911":3,"21912":10,"21913":9,"21914":4,"21915":10,"21916":1,"21917":5,"21918":9,"21919":1,"21920":8,"21921":2,"21922":2,"21923":8,"21924":9,"21925":2,"21926":7,"21927":7,"21928":7,"21929":3,"21930":7,"21931":7,"21932":8,"21933":7,"21934":6,"21935":9,"21936":7,"21937":7,"21938":2,"21939":7,"21940":2,"21941":7,"21942":8,"21943":7,"21944":9,"21945":9,"21946":1,"21947":9,"21948":9,"21949":8,"21950":9,"21951":7,"21952":6,"21953":8,"21954":2,"21955":2,"21956":3,"21957":3,"21958":5,"21959":9,"21960":9,"21961":4,"21962":8,"21963":2,"21964":5,"21965":8,"21966":4,"21967":5,"21968":7,"21969":9,"21970":2,"21971":9,"21972":3,"21973":9,"21974":10,"21975":5,"21976":9,"21977":2,"21978":7,"21979":8,"21980":2,"21981":8,"21982":8,"21983":5,"21984":8,"21985":7,"21986":7,"21987":2,"21988":6,"21989":7,"21990":9,"21991":7,"21992":10,"21993":8,"21994":2,"21995":8,"21996":3,"21997":8,"21998":6,"21999":8,"22000":4,"22001":10,"22002":2,"22003":8,"22004":8,"22005":8,"22006":1,"22007":8,"22008":7,"22009":8,"22010":10,"22011":8,"22012":7,"22013":2,"22014":7,"22015":3,"22016":2,"22017":9,"22018":7,"22019":9,"22020":8,"22021":7,"22022":7,"22023":3,"22024":2,"22025":7,"22026":8,"22027":7,"22028":9,"22029":6,"22030":6,"22031":10,"22032":7,"22033":7,"22034":7,"22035":8,"22036":8,"22037":8,"22038":6,"22039":9,"22040":7,"22041":4,"22042":9,"22043":5,"22044":9,"22045":9,"22046":8,"22047":10,"22048":2,"22049":9,"22050":8,"22051":7,"22052":2,"22053":3,"22054":2,"22055":1,"22056":7,"22057":2,"22058":9,"22059":8,"22060":3,"22061":4,"22062":7,"22063":9,"22064":2,"22065":7,"22066":7,"22067":9,"22068":7,"22069":10,"22070":7,"22071":9,"22072":8,"22073":7,"22074":7,"22075":5,"22076":3,"22077":8,"22078":9,"22079":10,"22080":5,"22081":2,"22082":1,"22083":2,"22084":6,"22085":4,"22086":8,"22087":1,"22088":5,"22089":3,"22090":10,"22091":7,"22092":7,"22093":2,"22094":9,"22095":1,"22096":7,"22097":6,"22098":5,"22099":7,"22100":9,"22101":3,"22102":1,"22103":8,"22104":8,"22105":5,"22106":8,"22107":7,"22108":5,"22109":9,"22110":4,"22111":6,"22112":8,"22113":8,"22114":7,"22115":8,"22116":7,"22117":10,"22118":9,"22119":9,"22120":9,"22121":8,"22122":7,"22123":8,"22124":7,"22125":9,"22126":5,"22127":7,"22128":3,"22129":8,"22130":7,"22131":7,"22132":10,"22133":3,"22134":8,"22135":5,"22136":4,"22137":2,"22138":7,"22139":8,"22140":5,"22141":7,"22142":8,"22143":5,"22144":1,"22145":8,"22146":7,"22147":8,"22148":8,"22149":8,"22150":2,"22151":4,"22152":2,"22153":5,"22154":7,"22155":9,"22156":1,"22157":10,"22158":5,"22159":5,"22160":10,"22161":8,"22162":9,"22163":7,"22164":7,"22165":8,"22166":8,"22167":6,"22168":2,"22169":7,"22170":9,"22171":9,"22172":8,"22173":1,"22174":2,"22175":9,"22176":8,"22177":10,"22178":8,"22179":4,"22180":1,"22181":7,"22182":6,"22183":8,"22184":3,"22185":4,"22186":5,"22187":5,"22188":3,"22189":9,"22190":3,"22191":8,"22192":9,"22193":1,"22194":2,"22195":2,"22196":3,"22197":9,"22198":1,"22199":9,"22200":7,"22201":3,"22202":2,"22203":2,"22204":7,"22205":7,"22206":7,"22207":5,"22208":8,"22209":3,"22210":8,"22211":8,"22212":5,"22213":9,"22214":5,"22215":7,"22216":6,"22217":5,"22218":3,"22219":9,"22220":9,"22221":7,"22222":5,"22223":9,"22224":5,"22225":4,"22226":7,"22227":7,"22228":8,"22229":8,"22230":2,"22231":9,"22232":7,"22233":6,"22234":9,"22235":7,"22236":10,"22237":10,"22238":8,"22239":5,"22240":8,"22241":2,"22242":7,"22243":7,"22244":2,"22245":6,"22246":5,"22247":7,"22248":9,"22249":2,"22250":1,"22251":1,"22252":6,"22253":4,"22254":1,"22255":5,"22256":7,"22257":9,"22258":8,"22259":9,"22260":2,"22261":10,"22262":7,"22263":7,"22264":2,"22265":7,"22266":5,"22267":8,"22268":2,"22269":9,"22270":7,"22271":7,"22272":8,"22273":8,"22274":8,"22275":2,"22276":2,"22277":6,"22278":9,"22279":7,"22280":2,"22281":9,"22282":9,"22283":8,"22284":8,"22285":7,"22286":7,"22287":2,"22288":9,"22289":7,"22290":7,"22291":10,"22292":7,"22293":9,"22294":4,"22295":1,"22296":1,"22297":8,"22298":7,"22299":9,"22300":8,"22301":8,"22302":8,"22303":7,"22304":7,"22305":8,"22306":9,"22307":7,"22308":3,"22309":8,"22310":3,"22311":7,"22312":9,"22313":9,"22314":8,"22315":5,"22316":7,"22317":9,"22318":10,"22319":4,"22320":9,"22321":9,"22322":7,"22323":8,"22324":2,"22325":6,"22326":4,"22327":7,"22328":7,"22329":9,"22330":3,"22331":1,"22332":7,"22333":2,"22334":2,"22335":7,"22336":9,"22337":2,"22338":7,"22339":3,"22340":8,"22341":3,"22342":5,"22343":8,"22344":5,"22345":9,"22346":4,"22347":5,"22348":10,"22349":8,"22350":2,"22351":8,"22352":8,"22353":8,"22354":8,"22355":3,"22356":7,"22357":5,"22358":6,"22359":8,"22360":9,"22361":6,"22362":2,"22363":1,"22364":4,"22365":2,"22366":7,"22367":7,"22368":3,"22369":8,"22370":5,"22371":9,"22372":9,"22373":8,"22374":7,"22375":5,"22376":2,"22377":9,"22378":9,"22379":7,"22380":7,"22381":3,"22382":7,"22383":9,"22384":9,"22385":8,"22386":8,"22387":8,"22388":9,"22389":9,"22390":8,"22391":3,"22392":2,"22393":9,"22394":7,"22395":8,"22396":8,"22397":8,"22398":5,"22399":7,"22400":6,"22401":8,"22402":7,"22403":7,"22404":2,"22405":9,"22406":4,"22407":6,"22408":7,"22409":9,"22410":8,"22411":5,"22412":10,"22413":7,"22414":5,"22415":8,"22416":3,"22417":9,"22418":7,"22419":5,"22420":8,"22421":8,"22422":9,"22423":5,"22424":1,"22425":6,"22426":5,"22427":7,"22428":6,"22429":7,"22430":9,"22431":9,"22432":7,"22433":5,"22434":2,"22435":10,"22436":8,"22437":8,"22438":1,"22439":8,"22440":5,"22441":2,"22442":7,"22443":7,"22444":2,"22445":7,"22446":1,"22447":2,"22448":8,"22449":7,"22450":5,"22451":1,"22452":8,"22453":7,"22454":7,"22455":8,"22456":6,"22457":8,"22458":5,"22459":8,"22460":8,"22461":8,"22462":9,"22463":2,"22464":1,"22465":5,"22466":8,"22467":6,"22468":5,"22469":8,"22470":6,"22471":5,"22472":2,"22473":3,"22474":3,"22475":5,"22476":8,"22477":7,"22478":9,"22479":3,"22480":5,"22481":9,"22482":7,"22483":4,"22484":7,"22485":9,"22486":3,"22487":3,"22488":8,"22489":8,"22490":7,"22491":1,"22492":9,"22493":7,"22494":7,"22495":3,"22496":7,"22497":9,"22498":8,"22499":5,"22500":9,"22501":8,"22502":7,"22503":2,"22504":7,"22505":8,"22506":8,"22507":8,"22508":7,"22509":7,"22510":2,"22511":7,"22512":8,"22513":6,"22514":4,"22515":5,"22516":8,"22517":2,"22518":3,"22519":8,"22520":8,"22521":7,"22522":4,"22523":3,"22524":5,"22525":3,"22526":2,"22527":7,"22528":5,"22529":9,"22530":8,"22531":2,"22532":8,"22533":4,"22534":7,"22535":8,"22536":7,"22537":7,"22538":6,"22539":10,"22540":9,"22541":2,"22542":2,"22543":7,"22544":7,"22545":1,"22546":5,"22547":8,"22548":7,"22549":7,"22550":5,"22551":5,"22552":7,"22553":9,"22554":5,"22555":7,"22556":1,"22557":9,"22558":4,"22559":1,"22560":2,"22561":3,"22562":7,"22563":9,"22564":9,"22565":8,"22566":4,"22567":1,"22568":1,"22569":7,"22570":7,"22571":5,"22572":1,"22573":1,"22574":1,"22575":4,"22576":9,"22577":9,"22578":7,"22579":1,"22580":9,"22581":2,"22582":9,"22583":9,"22584":7,"22585":8,"22586":8,"22587":5,"22588":9,"22589":3,"22590":9,"22591":10,"22592":2,"22593":5,"22594":10,"22595":8,"22596":8,"22597":8,"22598":7,"22599":10,"22600":8,"22601":9,"22602":8,"22603":6,"22604":2,"22605":5,"22606":5,"22607":3,"22608":9,"22609":6,"22610":5,"22611":9,"22612":10,"22613":10,"22614":7,"22615":7,"22616":5,"22617":7,"22618":8,"22619":7,"22620":7,"22621":8,"22622":2,"22623":9,"22624":8,"22625":4,"22626":8,"22627":8,"22628":1,"22629":2,"22630":8,"22631":6,"22632":7,"22633":8,"22634":8,"22635":8,"22636":8,"22637":3,"22638":5,"22639":2,"22640":9,"22641":7,"22642":8,"22643":10,"22644":7,"22645":10,"22646":10,"22647":8,"22648":10,"22649":7,"22650":5,"22651":9,"22652":6,"22653":5,"22654":9,"22655":7,"22656":10,"22657":7,"22658":7,"22659":9,"22660":9,"22661":7,"22662":8,"22663":6,"22664":8,"22665":8,"22666":6,"22667":1,"22668":5,"22669":7,"22670":4,"22671":9,"22672":8,"22673":1,"22674":8,"22675":8,"22676":5,"22677":4,"22678":7,"22679":5,"22680":9,"22681":9,"22682":2,"22683":8,"22684":2,"22685":5,"22686":10,"22687":5,"22688":1,"22689":7,"22690":7,"22691":5,"22692":3,"22693":9,"22694":9,"22695":8,"22696":5,"22697":7,"22698":5,"22699":8,"22700":8,"22701":7,"22702":9,"22703":9,"22704":4,"22705":7,"22706":10,"22707":10,"22708":8,"22709":8,"22710":9,"22711":8,"22712":7,"22713":7,"22714":8,"22715":8,"22716":7,"22717":7,"22718":9,"22719":10,"22720":9,"22721":4,"22722":6,"22723":8,"22724":6,"22725":8,"22726":2,"22727":5,"22728":8,"22729":1,"22730":10,"22731":1,"22732":7,"22733":6,"22734":7,"22735":5,"22736":10,"22737":2,"22738":9,"22739":5,"22740":7,"22741":8,"22742":1,"22743":9,"22744":7,"22745":7,"22746":5,"22747":8,"22748":7,"22749":10,"22750":8,"22751":9,"22752":5,"22753":8,"22754":5,"22755":10,"22756":8,"22757":9,"22758":8,"22759":4,"22760":6,"22761":1,"22762":8,"22763":2,"22764":3,"22765":4,"22766":2,"22767":6,"22768":5,"22769":3,"22770":8,"22771":7,"22772":7,"22773":10,"22774":8,"22775":5,"22776":9,"22777":5,"22778":4,"22779":7,"22780":1,"22781":7,"22782":8,"22783":5,"22784":9,"22785":10,"22786":8,"22787":8,"22788":2,"22789":8,"22790":6,"22791":9,"22792":7,"22793":5,"22794":8,"22795":10,"22796":7,"22797":7,"22798":5,"22799":4,"22800":5,"22801":9,"22802":9,"22803":7,"22804":9,"22805":4,"22806":9,"22807":1,"22808":2,"22809":4,"22810":7,"22811":1,"22812":9,"22813":7,"22814":1,"22815":8,"22816":9,"22817":7,"22818":5,"22819":8,"22820":2,"22821":5,"22822":9,"22823":5,"22824":9,"22825":5,"22826":10,"22827":10,"22828":8,"22829":3,"22830":3,"22831":7,"22832":5,"22833":9,"22834":2,"22835":7,"22836":2,"22837":9,"22838":8,"22839":2,"22840":3,"22841":8,"22842":4,"22843":7,"22844":3,"22845":10,"22846":7,"22847":7,"22848":10,"22849":9,"22850":7,"22851":2,"22852":7,"22853":9,"22854":7,"22855":7,"22856":4,"22857":7,"22858":6,"22859":7,"22860":7,"22861":3,"22862":2,"22863":2,"22864":5,"22865":3,"22866":9,"22867":8,"22868":9,"22869":5,"22870":7,"22871":8,"22872":1,"22873":2,"22874":4,"22875":8,"22876":7,"22877":2,"22878":9,"22879":5,"22880":7,"22881":5,"22882":2,"22883":7,"22884":8,"22885":4,"22886":8,"22887":7,"22888":8,"22889":8,"22890":5,"22891":9,"22892":5,"22893":9,"22894":8,"22895":4,"22896":10,"22897":8,"22898":8,"22899":7,"22900":2,"22901":10,"22902":3,"22903":10,"22904":7,"22905":2,"22906":6,"22907":3,"22908":8,"22909":6,"22910":7,"22911":9,"22912":8,"22913":2,"22914":7,"22915":5,"22916":1,"22917":7,"22918":2,"22919":9,"22920":5,"22921":2,"22922":7,"22923":7,"22924":9,"22925":7,"22926":7,"22927":8,"22928":2,"22929":7,"22930":9,"22931":3,"22932":9,"22933":2,"22934":10,"22935":2,"22936":6,"22937":8,"22938":6,"22939":5,"22940":8,"22941":7,"22942":6,"22943":5,"22944":9,"22945":8,"22946":5,"22947":7,"22948":7,"22949":6,"22950":10,"22951":3,"22952":8,"22953":3,"22954":10,"22955":8,"22956":9,"22957":8,"22958":8,"22959":8,"22960":1,"22961":2,"22962":4,"22963":8,"22964":7,"22965":2,"22966":8,"22967":7,"22968":7,"22969":2,"22970":5,"22971":5,"22972":1,"22973":7,"22974":2,"22975":9,"22976":2,"22977":7,"22978":5,"22979":8,"22980":1,"22981":5,"22982":8,"22983":4,"22984":8,"22985":10,"22986":7,"22987":5,"22988":8,"22989":8,"22990":4,"22991":9,"22992":9,"22993":5,"22994":7,"22995":8,"22996":7,"22997":8,"22998":9,"22999":8,"23000":7,"23001":7,"23002":7,"23003":2,"23004":8,"23005":4,"23006":8,"23007":1,"23008":1,"23009":7,"23010":2,"23011":8,"23012":7,"23013":2,"23014":7,"23015":7,"23016":10,"23017":2,"23018":1,"23019":9,"23020":9,"23021":7,"23022":7,"23023":8,"23024":5,"23025":1,"23026":8,"23027":9,"23028":7,"23029":2,"23030":5,"23031":5,"23032":8,"23033":7,"23034":5,"23035":7,"23036":10,"23037":7,"23038":10,"23039":3,"23040":7,"23041":7,"23042":7,"23043":8,"23044":10,"23045":5,"23046":8,"23047":9,"23048":4,"23049":4,"23050":7,"23051":8,"23052":7,"23053":7,"23054":5,"23055":9,"23056":8,"23057":8,"23058":9,"23059":5,"23060":8,"23061":7,"23062":7,"23063":2,"23064":9,"23065":9,"23066":2,"23067":7,"23068":3,"23069":8,"23070":9,"23071":5,"23072":9,"23073":5,"23074":7,"23075":4,"23076":8,"23077":7,"23078":7,"23079":8,"23080":8,"23081":9,"23082":1,"23083":10,"23084":8,"23085":7,"23086":8,"23087":1,"23088":9,"23089":7,"23090":7,"23091":3,"23092":5,"23093":1,"23094":9,"23095":10,"23096":7,"23097":9,"23098":7,"23099":8,"23100":7,"23101":3,"23102":2,"23103":9,"23104":9,"23105":10,"23106":9,"23107":4,"23108":6,"23109":10,"23110":7,"23111":7,"23112":3,"23113":5,"23114":8,"23115":9,"23116":8,"23117":8,"23118":7,"23119":7,"23120":5,"23121":9,"23122":2,"23123":1,"23124":5,"23125":8,"23126":6,"23127":8,"23128":8,"23129":7,"23130":1,"23131":4,"23132":1,"23133":8,"23134":3,"23135":8,"23136":7,"23137":8,"23138":9,"23139":7,"23140":9,"23141":9,"23142":6,"23143":8,"23144":5,"23145":6,"23146":7,"23147":5,"23148":6,"23149":5,"23150":6,"23151":5,"23152":2,"23153":9,"23154":2,"23155":2,"23156":8,"23157":7,"23158":9,"23159":7,"23160":9,"23161":6,"23162":2,"23163":7,"23164":10,"23165":7,"23166":8,"23167":7,"23168":2,"23169":10,"23170":7,"23171":6,"23172":8,"23173":9,"23174":10,"23175":9,"23176":4,"23177":9,"23178":10,"23179":9,"23180":9,"23181":1,"23182":7,"23183":7,"23184":7,"23185":9,"23186":9,"23187":7,"23188":8,"23189":3,"23190":3,"23191":8,"23192":9,"23193":9,"23194":9,"23195":8,"23196":3,"23197":5,"23198":9,"23199":9,"23200":6,"23201":8,"23202":2,"23203":1,"23204":5,"23205":9,"23206":7,"23207":1,"23208":2,"23209":8,"23210":4,"23211":4,"23212":9,"23213":7,"23214":8,"23215":3,"23216":3,"23217":7,"23218":4,"23219":6,"23220":9,"23221":9,"23222":7,"23223":3,"23224":1,"23225":2,"23226":7,"23227":8,"23228":6,"23229":5,"23230":7,"23231":8,"23232":10,"23233":2,"23234":3,"23235":6,"23236":3,"23237":1,"23238":9,"23239":9,"23240":7,"23241":1,"23242":9,"23243":10,"23244":7,"23245":9,"23246":8,"23247":8,"23248":1,"23249":7,"23250":8,"23251":6,"23252":8,"23253":7,"23254":5,"23255":7,"23256":8,"23257":7,"23258":6,"23259":8,"23260":3,"23261":4,"23262":8,"23263":9,"23264":3,"23265":5,"23266":7,"23267":7,"23268":9,"23269":5,"23270":8,"23271":2,"23272":5,"23273":8,"23274":8,"23275":6,"23276":10,"23277":8,"23278":5,"23279":8,"23280":4,"23281":8,"23282":8,"23283":8,"23284":3,"23285":7,"23286":9,"23287":4,"23288":4,"23289":9,"23290":6,"23291":3,"23292":8,"23293":10,"23294":9,"23295":7,"23296":9,"23297":5,"23298":2,"23299":6,"23300":9,"23301":8,"23302":7,"23303":8,"23304":3,"23305":7,"23306":8,"23307":8,"23308":6,"23309":8,"23310":7,"23311":7,"23312":8,"23313":8,"23314":7,"23315":8,"23316":2,"23317":2,"23318":3,"23319":8,"23320":8,"23321":7,"23322":5,"23323":2,"23324":7,"23325":5,"23326":3,"23327":8,"23328":1,"23329":6,"23330":6,"23331":2,"23332":7,"23333":6,"23334":6,"23335":2,"23336":5,"23337":4,"23338":7,"23339":2,"23340":8,"23341":10,"23342":5,"23343":7,"23344":2,"23345":7,"23346":7,"23347":2,"23348":8,"23349":5,"23350":5,"23351":3,"23352":8,"23353":5,"23354":2,"23355":8,"23356":1,"23357":7,"23358":5,"23359":9,"23360":2,"23361":8,"23362":3,"23363":9,"23364":9,"23365":4,"23366":4,"23367":8,"23368":6,"23369":3,"23370":5,"23371":8,"23372":3,"23373":7,"23374":7,"23375":7,"23376":9,"23377":10,"23378":10,"23379":1,"23380":7,"23381":4,"23382":9,"23383":8,"23384":2,"23385":5,"23386":8,"23387":2,"23388":10,"23389":9,"23390":9,"23391":10,"23392":9,"23393":5,"23394":1,"23395":3,"23396":10,"23397":4,"23398":7,"23399":5,"23400":2,"23401":5,"23402":2,"23403":8,"23404":8,"23405":9,"23406":9,"23407":5,"23408":2,"23409":7,"23410":7,"23411":8,"23412":2,"23413":5,"23414":9,"23415":8,"23416":4,"23417":5,"23418":6,"23419":2,"23420":7,"23421":7,"23422":5,"23423":2,"23424":8,"23425":5,"23426":7,"23427":4,"23428":6,"23429":10,"23430":8,"23431":10,"23432":8,"23433":7,"23434":4,"23435":2,"23436":8,"23437":4,"23438":6,"23439":4,"23440":7,"23441":2,"23442":9,"23443":5,"23444":7,"23445":5,"23446":7,"23447":2,"23448":2,"23449":7,"23450":5,"23451":5,"23452":8,"23453":2,"23454":1,"23455":4,"23456":8,"23457":8,"23458":3,"23459":9,"23460":3,"23461":5,"23462":10,"23463":10,"23464":7,"23465":4,"23466":4,"23467":2,"23468":7,"23469":5,"23470":2,"23471":8,"23472":5,"23473":1,"23474":7,"23475":5,"23476":7,"23477":7,"23478":7,"23479":7,"23480":5,"23481":8,"23482":8,"23483":8,"23484":2,"23485":6,"23486":5,"23487":4,"23488":5,"23489":5,"23490":2,"23491":10,"23492":10,"23493":2,"23494":7,"23495":7,"23496":5,"23497":6,"23498":7,"23499":10,"23500":8,"23501":7,"23502":7,"23503":9,"23504":7,"23505":8,"23506":9,"23507":9,"23508":6,"23509":2,"23510":8,"23511":2,"23512":3,"23513":5,"23514":8,"23515":3,"23516":2,"23517":7,"23518":9,"23519":7,"23520":3,"23521":7,"23522":9,"23523":6,"23524":7,"23525":1,"23526":7,"23527":3,"23528":1,"23529":9,"23530":9,"23531":2,"23532":9,"23533":8,"23534":8,"23535":7,"23536":10,"23537":7,"23538":1,"23539":7,"23540":8,"23541":2,"23542":9,"23543":7,"23544":10,"23545":9,"23546":7,"23547":7,"23548":6,"23549":2,"23550":1,"23551":9,"23552":4,"23553":10,"23554":5,"23555":8,"23556":4,"23557":8,"23558":1,"23559":7,"23560":6,"23561":8,"23562":8,"23563":6,"23564":2,"23565":7,"23566":10,"23567":5,"23568":2,"23569":2,"23570":7,"23571":10,"23572":6,"23573":9,"23574":7,"23575":2,"23576":7,"23577":10,"23578":9,"23579":7,"23580":10,"23581":7,"23582":7,"23583":1,"23584":9,"23585":6,"23586":8,"23587":2,"23588":8,"23589":3,"23590":7,"23591":9,"23592":4,"23593":8,"23594":4,"23595":4,"23596":7,"23597":7,"23598":8,"23599":5,"23600":6,"23601":7,"23602":8,"23603":1,"23604":5,"23605":8,"23606":6,"23607":5,"23608":10,"23609":8,"23610":7,"23611":2,"23612":9,"23613":1,"23614":9,"23615":9,"23616":9,"23617":10,"23618":3,"23619":5,"23620":9,"23621":8,"23622":1,"23623":4,"23624":8,"23625":5,"23626":3,"23627":5,"23628":10,"23629":8,"23630":7,"23631":8,"23632":5,"23633":8,"23634":2,"23635":5,"23636":6,"23637":7,"23638":9,"23639":6,"23640":5,"23641":10,"23642":2,"23643":10,"23644":4,"23645":7,"23646":9,"23647":8,"23648":8,"23649":5,"23650":8,"23651":1,"23652":9,"23653":6,"23654":9,"23655":9,"23656":8,"23657":8,"23658":6,"23659":2,"23660":7,"23661":9,"23662":10,"23663":7,"23664":8,"23665":5,"23666":9,"23667":8,"23668":8,"23669":7,"23670":5,"23671":5,"23672":1,"23673":8,"23674":9,"23675":7,"23676":2,"23677":3,"23678":10,"23679":10,"23680":2,"23681":5,"23682":5,"23683":5,"23684":7,"23685":7,"23686":2,"23687":9,"23688":4,"23689":9,"23690":10,"23691":4,"23692":7,"23693":9,"23694":8,"23695":9,"23696":2,"23697":9,"23698":6,"23699":9,"23700":8,"23701":5,"23702":6,"23703":10,"23704":8,"23705":3,"23706":9,"23707":10,"23708":5,"23709":2,"23710":7,"23711":3,"23712":10,"23713":9,"23714":9,"23715":8,"23716":7,"23717":9,"23718":5,"23719":8,"23720":8,"23721":8,"23722":6,"23723":1,"23724":7,"23725":7,"23726":8,"23727":7,"23728":6,"23729":5,"23730":5,"23731":7,"23732":2,"23733":8,"23734":9,"23735":8,"23736":7,"23737":7,"23738":9,"23739":5,"23740":9,"23741":10,"23742":8,"23743":6,"23744":9,"23745":2,"23746":2,"23747":7,"23748":3,"23749":7,"23750":9,"23751":6,"23752":8,"23753":3,"23754":7,"23755":5,"23756":8,"23757":7,"23758":7,"23759":1,"23760":7,"23761":1,"23762":1,"23763":9,"23764":1,"23765":8,"23766":6,"23767":5,"23768":9,"23769":8,"23770":7,"23771":7,"23772":7,"23773":7,"23774":4,"23775":8,"23776":10,"23777":10,"23778":3,"23779":7,"23780":9,"23781":9,"23782":9,"23783":5,"23784":5,"23785":10,"23786":5,"23787":8,"23788":7,"23789":3,"23790":1,"23791":2,"23792":7,"23793":4,"23794":2,"23795":7,"23796":7,"23797":3,"23798":2,"23799":5,"23800":5,"23801":9,"23802":6,"23803":6,"23804":9,"23805":9,"23806":8,"23807":2,"23808":6,"23809":8,"23810":2,"23811":5,"23812":9,"23813":10,"23814":8,"23815":5,"23816":8,"23817":2,"23818":7,"23819":8,"23820":1,"23821":2,"23822":9,"23823":3,"23824":9,"23825":8,"23826":5,"23827":1,"23828":2,"23829":5,"23830":8,"23831":2,"23832":7,"23833":8,"23834":4,"23835":9,"23836":7,"23837":5,"23838":1,"23839":7,"23840":7,"23841":9,"23842":9,"23843":4,"23844":4,"23845":5,"23846":10,"23847":10,"23848":1,"23849":6,"23850":2,"23851":3,"23852":10,"23853":5,"23854":7,"23855":6,"23856":10,"23857":4,"23858":7,"23859":8,"23860":3,"23861":8,"23862":8,"23863":7,"23864":9,"23865":6,"23866":8,"23867":1,"23868":8,"23869":9,"23870":7,"23871":9,"23872":7,"23873":10,"23874":7,"23875":8,"23876":2,"23877":9,"23878":7,"23879":7,"23880":9,"23881":7,"23882":10,"23883":4,"23884":2,"23885":7,"23886":2,"23887":7,"23888":5,"23889":2,"23890":8,"23891":4,"23892":9,"23893":1,"23894":10,"23895":8,"23896":6,"23897":7,"23898":6,"23899":9,"23900":7,"23901":5,"23902":5,"23903":2,"23904":8,"23905":7,"23906":5,"23907":7,"23908":7,"23909":2,"23910":5,"23911":6,"23912":7,"23913":10,"23914":8,"23915":10,"23916":9,"23917":8,"23918":8,"23919":2,"23920":3,"23921":10,"23922":2,"23923":7,"23924":7,"23925":5,"23926":4,"23927":8,"23928":9,"23929":8,"23930":4,"23931":9,"23932":5,"23933":9,"23934":9,"23935":9,"23936":8,"23937":8,"23938":8,"23939":1,"23940":6,"23941":4,"23942":5,"23943":4,"23944":10,"23945":9,"23946":3,"23947":8,"23948":6,"23949":7,"23950":2,"23951":2,"23952":9,"23953":8,"23954":6,"23955":5,"23956":6,"23957":9,"23958":4,"23959":4,"23960":9,"23961":8,"23962":5,"23963":8,"23964":5,"23965":9,"23966":2,"23967":2,"23968":7,"23969":8,"23970":5,"23971":8,"23972":7,"23973":7,"23974":8,"23975":5,"23976":2,"23977":10,"23978":7,"23979":9,"23980":6,"23981":7,"23982":6,"23983":8,"23984":1,"23985":9,"23986":9,"23987":6,"23988":7,"23989":7,"23990":4,"23991":8,"23992":8,"23993":6,"23994":7,"23995":4,"23996":8,"23997":2,"23998":3,"23999":5,"24000":6,"24001":8,"24002":7,"24003":9,"24004":7,"24005":3,"24006":5,"24007":9,"24008":8,"24009":8,"24010":5,"24011":3,"24012":2,"24013":8,"24014":7,"24015":3,"24016":9,"24017":1,"24018":4,"24019":2,"24020":7,"24021":7,"24022":8,"24023":7,"24024":7,"24025":9,"24026":5,"24027":5,"24028":1,"24029":5,"24030":9,"24031":9,"24032":9,"24033":1,"24034":8,"24035":7,"24036":1,"24037":7,"24038":5,"24039":1,"24040":9,"24041":7,"24042":8,"24043":7,"24044":1,"24045":9,"24046":2,"24047":8,"24048":10,"24049":9,"24050":9,"24051":8,"24052":1,"24053":10,"24054":8,"24055":9,"24056":5,"24057":8,"24058":10,"24059":8,"24060":5,"24061":9,"24062":9,"24063":2,"24064":3,"24065":6,"24066":8,"24067":8,"24068":5,"24069":7,"24070":8,"24071":7,"24072":6,"24073":5,"24074":5,"24075":5,"24076":8,"24077":4,"24078":9,"24079":9,"24080":3,"24081":8,"24082":7,"24083":9,"24084":7,"24085":8,"24086":4,"24087":8,"24088":2,"24089":8,"24090":7,"24091":9,"24092":4,"24093":9,"24094":5,"24095":2,"24096":7,"24097":8,"24098":1,"24099":4,"24100":7,"24101":2,"24102":7,"24103":7,"24104":8,"24105":7,"24106":8,"24107":7,"24108":7,"24109":8,"24110":5,"24111":8,"24112":5,"24113":7,"24114":5,"24115":9,"24116":8,"24117":8,"24118":8,"24119":7,"24120":7,"24121":6,"24122":7,"24123":7,"24124":5,"24125":3,"24126":4,"24127":8,"24128":8,"24129":7,"24130":3,"24131":2,"24132":2,"24133":5,"24134":4,"24135":7,"24136":4,"24137":8,"24138":10,"24139":2,"24140":8,"24141":2,"24142":3,"24143":9,"24144":7,"24145":2,"24146":2,"24147":1,"24148":4,"24149":7,"24150":9,"24151":6,"24152":5,"24153":3,"24154":2,"24155":9,"24156":9,"24157":2,"24158":2,"24159":8,"24160":2,"24161":5,"24162":8,"24163":7,"24164":8,"24165":6,"24166":2,"24167":10,"24168":10,"24169":3,"24170":6,"24171":8,"24172":5,"24173":4,"24174":7,"24175":2,"24176":8,"24177":10,"24178":4,"24179":9,"24180":7,"24181":2,"24182":5,"24183":5,"24184":2,"24185":10,"24186":8,"24187":8,"24188":9,"24189":7,"24190":1,"24191":10,"24192":9,"24193":7,"24194":5,"24195":8,"24196":8,"24197":7,"24198":7,"24199":8,"24200":2,"24201":5,"24202":9,"24203":10,"24204":1,"24205":8,"24206":2,"24207":8,"24208":7,"24209":9,"24210":7,"24211":8,"24212":9,"24213":3,"24214":5,"24215":10,"24216":5,"24217":5,"24218":1,"24219":10,"24220":8,"24221":8,"24222":10,"24223":8,"24224":10,"24225":9,"24226":8,"24227":7,"24228":1,"24229":7,"24230":6,"24231":10,"24232":6,"24233":2,"24234":5,"24235":5,"24236":7,"24237":6,"24238":8,"24239":1,"24240":9,"24241":9,"24242":8,"24243":2,"24244":1,"24245":8,"24246":3,"24247":2,"24248":2,"24249":2,"24250":9,"24251":5,"24252":7,"24253":8,"24254":7,"24255":9,"24256":7,"24257":8,"24258":8,"24259":2,"24260":9,"24261":3,"24262":3,"24263":4,"24264":10,"24265":6,"24266":4,"24267":5,"24268":7,"24269":2,"24270":5,"24271":8,"24272":5,"24273":10,"24274":2,"24275":6,"24276":9,"24277":9,"24278":8,"24279":8,"24280":4,"24281":7,"24282":7,"24283":2,"24284":2,"24285":10,"24286":5,"24287":10,"24288":6,"24289":10,"24290":8,"24291":6,"24292":9,"24293":9,"24294":7,"24295":8,"24296":2,"24297":7,"24298":6,"24299":1,"24300":10,"24301":2,"24302":8,"24303":1,"24304":2,"24305":4,"24306":5,"24307":4,"24308":3,"24309":1,"24310":8,"24311":9,"24312":4,"24313":8,"24314":8,"24315":3,"24316":9,"24317":9,"24318":7,"24319":5,"24320":1,"24321":10,"24322":3,"24323":8,"24324":7,"24325":2,"24326":10,"24327":9,"24328":9,"24329":7,"24330":7,"24331":5,"24332":10,"24333":4,"24334":9,"24335":4,"24336":7,"24337":7,"24338":7,"24339":8,"24340":7,"24341":8,"24342":2,"24343":6,"24344":9,"24345":5,"24346":2,"24347":8,"24348":6,"24349":7,"24350":5,"24351":5,"24352":7,"24353":10,"24354":9,"24355":7,"24356":5,"24357":7,"24358":5,"24359":5,"24360":7,"24361":8,"24362":7,"24363":7,"24364":3,"24365":7,"24366":9,"24367":8,"24368":2,"24369":7,"24370":7,"24371":8,"24372":7,"24373":1,"24374":3,"24375":7,"24376":6,"24377":5,"24378":8,"24379":4,"24380":8,"24381":7,"24382":9,"24383":9,"24384":8,"24385":5,"24386":5,"24387":7,"24388":10,"24389":4,"24390":8,"24391":5,"24392":5,"24393":9,"24394":2,"24395":8,"24396":7,"24397":2,"24398":8,"24399":7,"24400":1,"24401":9,"24402":2,"24403":8,"24404":8,"24405":8,"24406":3,"24407":5,"24408":6,"24409":8,"24410":9,"24411":5,"24412":8,"24413":5,"24414":2,"24415":8,"24416":2,"24417":10,"24418":7,"24419":4,"24420":7,"24421":9,"24422":7,"24423":6,"24424":7,"24425":4,"24426":9,"24427":9,"24428":8,"24429":2,"24430":1,"24431":2,"24432":8,"24433":8,"24434":1,"24435":8,"24436":5,"24437":8,"24438":8,"24439":7,"24440":9,"24441":5,"24442":7,"24443":7,"24444":7,"24445":4,"24446":7,"24447":1,"24448":8,"24449":2,"24450":10,"24451":9,"24452":8,"24453":1,"24454":3,"24455":8,"24456":8,"24457":5,"24458":8,"24459":2,"24460":7,"24461":4,"24462":8,"24463":7,"24464":3,"24465":9,"24466":9,"24467":9,"24468":3,"24469":2,"24470":4,"24471":7,"24472":7,"24473":7,"24474":4,"24475":10,"24476":9,"24477":1,"24478":9,"24479":3,"24480":5,"24481":2,"24482":7,"24483":7,"24484":1,"24485":7,"24486":1,"24487":9,"24488":4,"24489":5,"24490":2,"24491":1,"24492":3,"24493":3,"24494":7,"24495":7,"24496":7,"24497":8,"24498":5,"24499":1,"24500":3,"24501":8,"24502":8,"24503":4,"24504":3,"24505":7,"24506":6,"24507":4,"24508":2,"24509":5,"24510":8,"24511":10,"24512":8,"24513":7,"24514":7,"24515":7,"24516":9,"24517":4,"24518":2,"24519":1,"24520":6,"24521":6,"24522":5,"24523":7,"24524":7,"24525":8,"24526":5,"24527":5,"24528":3,"24529":5,"24530":2,"24531":8,"24532":1,"24533":6,"24534":8,"24535":5,"24536":8,"24537":8,"24538":4,"24539":3,"24540":10,"24541":8,"24542":7,"24543":8,"24544":7,"24545":7,"24546":9,"24547":8,"24548":7,"24549":8,"24550":8,"24551":8,"24552":6,"24553":3,"24554":2,"24555":9,"24556":2,"24557":6,"24558":6,"24559":9,"24560":8,"24561":6,"24562":8,"24563":2,"24564":7,"24565":8,"24566":10,"24567":4,"24568":1,"24569":1,"24570":2,"24571":7,"24572":2,"24573":8,"24574":7,"24575":8,"24576":9,"24577":8,"24578":8,"24579":1,"24580":3,"24581":7,"24582":8,"24583":5,"24584":8,"24585":9,"24586":7,"24587":8,"24588":3,"24589":5,"24590":7,"24591":3,"24592":7,"24593":8,"24594":7,"24595":9,"24596":7,"24597":7,"24598":2,"24599":8,"24600":1,"24601":2,"24602":2,"24603":5,"24604":7,"24605":7,"24606":8,"24607":8,"24608":8,"24609":5,"24610":5,"24611":8,"24612":2,"24613":9,"24614":10,"24615":4,"24616":8,"24617":8,"24618":6,"24619":7,"24620":8,"24621":7,"24622":7,"24623":4,"24624":8,"24625":10,"24626":3,"24627":4,"24628":5,"24629":7,"24630":8,"24631":8,"24632":7,"24633":2,"24634":5,"24635":5,"24636":8,"24637":7,"24638":8,"24639":4,"24640":1,"24641":8,"24642":10,"24643":5,"24644":7,"24645":5,"24646":6,"24647":9,"24648":8,"24649":1,"24650":1,"24651":5,"24652":9,"24653":8,"24654":1,"24655":5,"24656":8,"24657":7,"24658":5,"24659":8,"24660":8,"24661":5,"24662":1,"24663":2,"24664":8,"24665":8,"24666":9,"24667":6,"24668":9,"24669":8,"24670":8,"24671":8,"24672":8,"24673":2,"24674":5,"24675":5,"24676":5,"24677":4,"24678":3,"24679":9,"24680":1,"24681":7,"24682":7,"24683":9,"24684":2,"24685":8,"24686":7,"24687":5,"24688":5,"24689":9,"24690":7,"24691":7,"24692":4,"24693":5,"24694":2,"24695":4,"24696":2,"24697":4,"24698":4,"24699":10,"24700":9,"24701":8,"24702":9,"24703":8,"24704":3,"24705":8,"24706":8,"24707":7,"24708":8,"24709":2,"24710":8,"24711":6,"24712":2,"24713":9,"24714":7,"24715":7,"24716":7,"24717":10,"24718":8,"24719":10,"24720":9,"24721":9,"24722":8,"24723":7,"24724":8,"24725":2,"24726":9,"24727":8,"24728":2,"24729":8,"24730":5,"24731":9,"24732":9,"24733":8,"24734":7,"24735":1,"24736":6,"24737":8,"24738":1,"24739":8,"24740":9,"24741":9,"24742":8,"24743":5,"24744":7,"24745":9,"24746":7,"24747":7,"24748":9,"24749":5,"24750":7,"24751":7,"24752":7,"24753":4,"24754":9,"24755":9,"24756":10,"24757":5,"24758":8,"24759":4,"24760":8,"24761":2,"24762":5,"24763":2,"24764":5,"24765":5,"24766":1,"24767":7,"24768":5,"24769":8,"24770":10,"24771":7,"24772":8,"24773":2,"24774":8,"24775":5,"24776":9,"24777":8,"24778":8,"24779":9,"24780":9,"24781":5,"24782":3,"24783":8,"24784":9,"24785":8,"24786":8,"24787":7,"24788":10,"24789":6,"24790":2,"24791":7,"24792":7,"24793":7,"24794":8,"24795":4,"24796":8,"24797":9,"24798":7,"24799":8,"24800":3,"24801":7,"24802":9,"24803":8,"24804":7,"24805":4,"24806":7,"24807":5,"24808":4,"24809":8,"24810":8,"24811":7,"24812":9,"24813":8,"24814":9,"24815":3,"24816":1,"24817":7,"24818":5,"24819":6,"24820":9,"24821":9,"24822":10,"24823":8,"24824":8,"24825":3,"24826":7,"24827":6,"24828":8,"24829":9,"24830":8,"24831":10,"24832":8,"24833":4,"24834":2,"24835":9,"24836":5,"24837":7,"24838":7,"24839":2,"24840":7,"24841":8,"24842":8,"24843":5,"24844":6,"24845":10,"24846":6,"24847":4,"24848":1,"24849":8,"24850":8,"24851":2,"24852":4,"24853":8,"24854":3,"24855":1,"24856":3,"24857":7,"24858":7,"24859":9,"24860":8,"24861":8,"24862":4,"24863":10,"24864":9,"24865":8,"24866":8,"24867":9,"24868":7,"24869":7,"24870":8,"24871":9,"24872":2,"24873":8,"24874":9,"24875":7,"24876":3,"24877":8,"24878":10,"24879":5,"24880":6,"24881":9,"24882":8,"24883":6,"24884":7,"24885":7,"24886":8,"24887":7,"24888":7,"24889":9,"24890":9,"24891":5,"24892":7,"24893":6,"24894":4,"24895":6,"24896":8,"24897":1,"24898":5,"24899":9,"24900":8,"24901":5,"24902":7,"24903":8,"24904":10,"24905":6,"24906":4,"24907":1,"24908":8,"24909":7,"24910":4,"24911":8,"24912":8,"24913":7,"24914":8,"24915":7,"24916":6,"24917":6,"24918":7,"24919":3,"24920":5,"24921":4,"24922":9,"24923":1,"24924":7,"24925":5,"24926":2,"24927":2,"24928":2,"24929":10,"24930":7,"24931":5,"24932":7,"24933":7,"24934":6,"24935":5,"24936":7,"24937":8,"24938":9,"24939":3,"24940":6,"24941":9,"24942":8,"24943":3,"24944":7,"24945":7,"24946":7,"24947":7,"24948":8,"24949":8,"24950":8,"24951":8,"24952":7,"24953":4,"24954":4,"24955":8,"24956":8,"24957":8,"24958":1,"24959":10,"24960":3,"24961":7,"24962":9,"24963":9,"24964":8,"24965":7,"24966":4,"24967":5,"24968":3,"24969":7,"24970":5,"24971":9,"24972":8,"24973":4,"24974":5,"24975":7,"24976":5,"24977":7,"24978":5,"24979":8,"24980":10,"24981":2,"24982":2,"24983":2,"24984":6,"24985":4,"24986":8,"24987":5,"24988":4,"24989":8,"24990":6,"24991":6,"24992":7,"24993":8,"24994":2,"24995":1,"24996":3,"24997":9,"24998":9,"24999":2,"25000":7,"25001":4,"25002":7,"25003":8,"25004":8,"25005":9,"25006":2,"25007":7,"25008":7,"25009":6,"25010":1,"25011":9,"25012":4,"25013":3,"25014":7,"25015":7,"25016":9,"25017":2,"25018":5,"25019":9,"25020":3,"25021":8,"25022":10,"25023":2,"25024":10,"25025":1,"25026":1,"25027":9,"25028":8,"25029":9,"25030":7,"25031":6,"25032":10,"25033":5,"25034":7,"25035":4,"25036":2,"25037":1,"25038":3,"25039":9,"25040":8,"25041":7,"25042":2,"25043":4,"25044":4,"25045":7,"25046":8,"25047":5,"25048":10,"25049":3,"25050":5,"25051":10,"25052":1,"25053":8,"25054":3,"25055":8,"25056":9,"25057":2,"25058":2,"25059":8,"25060":8,"25061":3,"25062":6,"25063":1,"25064":5,"25065":2,"25066":2,"25067":2,"25068":8,"25069":5,"25070":5,"25071":7,"25072":1,"25073":7,"25074":4,"25075":4,"25076":9,"25077":2,"25078":7,"25079":5,"25080":5,"25081":7,"25082":7,"25083":8,"25084":8,"25085":9,"25086":6,"25087":2,"25088":4,"25089":9,"25090":9,"25091":3,"25092":9,"25093":5,"25094":3,"25095":8,"25096":2,"25097":6,"25098":2,"25099":9,"25100":10,"25101":8,"25102":5,"25103":9,"25104":9,"25105":7,"25106":8,"25107":10,"25108":7,"25109":2,"25110":1,"25111":6,"25112":9,"25113":9,"25114":10,"25115":8,"25116":5,"25117":4,"25118":6,"25119":8,"25120":9,"25121":2,"25122":2,"25123":7,"25124":10,"25125":8,"25126":8,"25127":3,"25128":7,"25129":5,"25130":1,"25131":9,"25132":4,"25133":10,"25134":8,"25135":9,"25136":7,"25137":8,"25138":3,"25139":9,"25140":9,"25141":1,"25142":7,"25143":2,"25144":8,"25145":5,"25146":7,"25147":7,"25148":9,"25149":1,"25150":2,"25151":10,"25152":5,"25153":6,"25154":7,"25155":2,"25156":8,"25157":4,"25158":2,"25159":8,"25160":7,"25161":7,"25162":1,"25163":3,"25164":7,"25165":8,"25166":9,"25167":9,"25168":7,"25169":9,"25170":7,"25171":8,"25172":2,"25173":8,"25174":8,"25175":3,"25176":1,"25177":7,"25178":10,"25179":1,"25180":9,"25181":2,"25182":7,"25183":1,"25184":9,"25185":8,"25186":2,"25187":7,"25188":7,"25189":9,"25190":9,"25191":10,"25192":9,"25193":2,"25194":8,"25195":5,"25196":8,"25197":9,"25198":5,"25199":6,"25200":2,"25201":7,"25202":10,"25203":9,"25204":9,"25205":1,"25206":2,"25207":7,"25208":7,"25209":9,"25210":2,"25211":8,"25212":2,"25213":8,"25214":5,"25215":8,"25216":1,"25217":10,"25218":8,"25219":8,"25220":8,"25221":8,"25222":8,"25223":1,"25224":5,"25225":2,"25226":2,"25227":3,"25228":8,"25229":8,"25230":9,"25231":9,"25232":8,"25233":7,"25234":9,"25235":3,"25236":4,"25237":7,"25238":3,"25239":5,"25240":9,"25241":1,"25242":2,"25243":8,"25244":2,"25245":9,"25246":5,"25247":3,"25248":6,"25249":7,"25250":1,"25251":8,"25252":10,"25253":2,"25254":8,"25255":9,"25256":9,"25257":1,"25258":7,"25259":4,"25260":7,"25261":1,"25262":9,"25263":5,"25264":8,"25265":10,"25266":4,"25267":3,"25268":8,"25269":7,"25270":7,"25271":5,"25272":7,"25273":2,"25274":8,"25275":7,"25276":5,"25277":6,"25278":7,"25279":8,"25280":5,"25281":10,"25282":3,"25283":2,"25284":7,"25285":1,"25286":3,"25287":9,"25288":7,"25289":9,"25290":9,"25291":1,"25292":7,"25293":7,"25294":5,"25295":2,"25296":4,"25297":3,"25298":9,"25299":7,"25300":4,"25301":8,"25302":2,"25303":8,"25304":9,"25305":5,"25306":8,"25307":9,"25308":7,"25309":5,"25310":8,"25311":7,"25312":8,"25313":7,"25314":7,"25315":7,"25316":9,"25317":3,"25318":10,"25319":7,"25320":3,"25321":7,"25322":9,"25323":6,"25324":10,"25325":2,"25326":6,"25327":6,"25328":5,"25329":8,"25330":2,"25331":5,"25332":8,"25333":2,"25334":9,"25335":2,"25336":4,"25337":4,"25338":8,"25339":9,"25340":7,"25341":2,"25342":8,"25343":7,"25344":4,"25345":2,"25346":8,"25347":7,"25348":9,"25349":9,"25350":8,"25351":7,"25352":1,"25353":7,"25354":7,"25355":8,"25356":10,"25357":7,"25358":1,"25359":2,"25360":9,"25361":2,"25362":3,"25363":4,"25364":9,"25365":9,"25366":5,"25367":7,"25368":2,"25369":8,"25370":8,"25371":7,"25372":5,"25373":9,"25374":8,"25375":2,"25376":10,"25377":3,"25378":2,"25379":8,"25380":7,"25381":10,"25382":8,"25383":7,"25384":10,"25385":4,"25386":5,"25387":4,"25388":1,"25389":2,"25390":9,"25391":7,"25392":10,"25393":8,"25394":4,"25395":9,"25396":9,"25397":4,"25398":8,"25399":5,"25400":7,"25401":5,"25402":8,"25403":10,"25404":2,"25405":8,"25406":3,"25407":8,"25408":2,"25409":9,"25410":7,"25411":3,"25412":9,"25413":7,"25414":5,"25415":3,"25416":7,"25417":4,"25418":8,"25419":10,"25420":7,"25421":10,"25422":2,"25423":8,"25424":3,"25425":7,"25426":4,"25427":7,"25428":5,"25429":7,"25430":2,"25431":8,"25432":4,"25433":10,"25434":8,"25435":6,"25436":1,"25437":7,"25438":7,"25439":5,"25440":5,"25441":10,"25442":9,"25443":3,"25444":3,"25445":1,"25446":1,"25447":7,"25448":9,"25449":2,"25450":5,"25451":9,"25452":1,"25453":8,"25454":6,"25455":10,"25456":6,"25457":9,"25458":6,"25459":4,"25460":7,"25461":5,"25462":1,"25463":5,"25464":7,"25465":8,"25466":9,"25467":8,"25468":7,"25469":10,"25470":8,"25471":2,"25472":5,"25473":10,"25474":2,"25475":6,"25476":7,"25477":9,"25478":8,"25479":2,"25480":8,"25481":9,"25482":7,"25483":6,"25484":6,"25485":2,"25486":2,"25487":5,"25488":7,"25489":2,"25490":9,"25491":10,"25492":5,"25493":7,"25494":7,"25495":8,"25496":9,"25497":3,"25498":1,"25499":7,"25500":8,"25501":2,"25502":5,"25503":7,"25504":4,"25505":4,"25506":10,"25507":5,"25508":9,"25509":4,"25510":8,"25511":8,"25512":8,"25513":7,"25514":2,"25515":2,"25516":8,"25517":2,"25518":6,"25519":10,"25520":8,"25521":1,"25522":7,"25523":7,"25524":8,"25525":9,"25526":7,"25527":6,"25528":8,"25529":1,"25530":7,"25531":2,"25532":1,"25533":8,"25534":7,"25535":8,"25536":8,"25537":8,"25538":7,"25539":9,"25540":8,"25541":9,"25542":8,"25543":6,"25544":2,"25545":9,"25546":8,"25547":8,"25548":8,"25549":7,"25550":4,"25551":8,"25552":9,"25553":7,"25554":9,"25555":2,"25556":7,"25557":2,"25558":5,"25559":8,"25560":7,"25561":2,"25562":7,"25563":8,"25564":7,"25565":1,"25566":9,"25567":9,"25568":7,"25569":9,"25570":7,"25571":1,"25572":2,"25573":9,"25574":7,"25575":8,"25576":5,"25577":8,"25578":2,"25579":10,"25580":1,"25581":9,"25582":9,"25583":9,"25584":4,"25585":2,"25586":9,"25587":2,"25588":1,"25589":8,"25590":7,"25591":9,"25592":3,"25593":2,"25594":2,"25595":4,"25596":8,"25597":5,"25598":1,"25599":3,"25600":1,"25601":7,"25602":7,"25603":9,"25604":1,"25605":4,"25606":4,"25607":5,"25608":9,"25609":5,"25610":9,"25611":7,"25612":2,"25613":5,"25614":7,"25615":9,"25616":8,"25617":1,"25618":10,"25619":6,"25620":7,"25621":10,"25622":8,"25623":7,"25624":8,"25625":2,"25626":7,"25627":7,"25628":9,"25629":8,"25630":8,"25631":9,"25632":7,"25633":7,"25634":5,"25635":9,"25636":2,"25637":8,"25638":2,"25639":8,"25640":5,"25641":8,"25642":8,"25643":1,"25644":1,"25645":2,"25646":9,"25647":8,"25648":8,"25649":4,"25650":1,"25651":8,"25652":8,"25653":5,"25654":7,"25655":7,"25656":9,"25657":5,"25658":8,"25659":2,"25660":7,"25661":6,"25662":5,"25663":9,"25664":8,"25665":8,"25666":8,"25667":9,"25668":1,"25669":8,"25670":5,"25671":4,"25672":1,"25673":5,"25674":8,"25675":7,"25676":9,"25677":8,"25678":2,"25679":4,"25680":9,"25681":4,"25682":10,"25683":7,"25684":6,"25685":8,"25686":6,"25687":7,"25688":9,"25689":7,"25690":9,"25691":9,"25692":6,"25693":5,"25694":6,"25695":1,"25696":5,"25697":5,"25698":2,"25699":7,"25700":4,"25701":10,"25702":8,"25703":8,"25704":7,"25705":5,"25706":4,"25707":9,"25708":6,"25709":8,"25710":5,"25711":7,"25712":9,"25713":8,"25714":6,"25715":9,"25716":7,"25717":3,"25718":9,"25719":7,"25720":7,"25721":9,"25722":9,"25723":7,"25724":5,"25725":6,"25726":8,"25727":8,"25728":7,"25729":7,"25730":3,"25731":1,"25732":8,"25733":5,"25734":8,"25735":7,"25736":1,"25737":7,"25738":7,"25739":1,"25740":8,"25741":8,"25742":5,"25743":8,"25744":10,"25745":9,"25746":7,"25747":7,"25748":5,"25749":8,"25750":10,"25751":9,"25752":10,"25753":4,"25754":5,"25755":7,"25756":7,"25757":10,"25758":5,"25759":9,"25760":8,"25761":8,"25762":9,"25763":8,"25764":8,"25765":7,"25766":4,"25767":9,"25768":7,"25769":4,"25770":5,"25771":1,"25772":8,"25773":5,"25774":9,"25775":6,"25776":10,"25777":2,"25778":7,"25779":7,"25780":8,"25781":7,"25782":4,"25783":6,"25784":3,"25785":7,"25786":6,"25787":8,"25788":10,"25789":9,"25790":8,"25791":9,"25792":7,"25793":1,"25794":6,"25795":7,"25796":8,"25797":8,"25798":7,"25799":9,"25800":8,"25801":2,"25802":7,"25803":9,"25804":2,"25805":6,"25806":10,"25807":8,"25808":8,"25809":1,"25810":8,"25811":2,"25812":3,"25813":7,"25814":1,"25815":4,"25816":7,"25817":5,"25818":9,"25819":8,"25820":4,"25821":7,"25822":9,"25823":2,"25824":9,"25825":7,"25826":3,"25827":1,"25828":4,"25829":1,"25830":9,"25831":3,"25832":10,"25833":8,"25834":8,"25835":9,"25836":7,"25837":8,"25838":7,"25839":2,"25840":9,"25841":4,"25842":7,"25843":9,"25844":8,"25845":9,"25846":5,"25847":3,"25848":1,"25849":4,"25850":9,"25851":7,"25852":7,"25853":8,"25854":5,"25855":1,"25856":7,"25857":6,"25858":8,"25859":8,"25860":7,"25861":8,"25862":10,"25863":2,"25864":9,"25865":2,"25866":7,"25867":7,"25868":3,"25869":2,"25870":8,"25871":2,"25872":8,"25873":7,"25874":8,"25875":7,"25876":7,"25877":9,"25878":1,"25879":7,"25880":5,"25881":7,"25882":4,"25883":9,"25884":9,"25885":8,"25886":7,"25887":8,"25888":3,"25889":2,"25890":9,"25891":2,"25892":2,"25893":2,"25894":8,"25895":5,"25896":8,"25897":9,"25898":1,"25899":8,"25900":4,"25901":8,"25902":2,"25903":9,"25904":1,"25905":1,"25906":8,"25907":8,"25908":3,"25909":5,"25910":7,"25911":5,"25912":7,"25913":2,"25914":5,"25915":7,"25916":9,"25917":5,"25918":4,"25919":9,"25920":6,"25921":5,"25922":7,"25923":2,"25924":8,"25925":6,"25926":10,"25927":7,"25928":1,"25929":3,"25930":5,"25931":10,"25932":2,"25933":8,"25934":9,"25935":4,"25936":2,"25937":1,"25938":2,"25939":7,"25940":7,"25941":8,"25942":8,"25943":3,"25944":8,"25945":8,"25946":3,"25947":8,"25948":2,"25949":8,"25950":2,"25951":8,"25952":9,"25953":1,"25954":9,"25955":1,"25956":9,"25957":2,"25958":6,"25959":7,"25960":5,"25961":1,"25962":5,"25963":8,"25964":5,"25965":2,"25966":6,"25967":7,"25968":6,"25969":8,"25970":3,"25971":2,"25972":7,"25973":4,"25974":8,"25975":6,"25976":10,"25977":6,"25978":8,"25979":3,"25980":7,"25981":8,"25982":8,"25983":9,"25984":8,"25985":8,"25986":6,"25987":8,"25988":2,"25989":7,"25990":6,"25991":6,"25992":2,"25993":9,"25994":1,"25995":8,"25996":7,"25997":10,"25998":7,"25999":8,"26000":7,"26001":7,"26002":10,"26003":3,"26004":7,"26005":2,"26006":7,"26007":9,"26008":1,"26009":5,"26010":8,"26011":2,"26012":8,"26013":8,"26014":9,"26015":4,"26016":9,"26017":7,"26018":8,"26019":9,"26020":9,"26021":9,"26022":5,"26023":5,"26024":8,"26025":4,"26026":6,"26027":3,"26028":8,"26029":2,"26030":5,"26031":1,"26032":8,"26033":10,"26034":2,"26035":9,"26036":5,"26037":8,"26038":6,"26039":4,"26040":6,"26041":7,"26042":5,"26043":2,"26044":7,"26045":9,"26046":7,"26047":7,"26048":1,"26049":4,"26050":7,"26051":10,"26052":1,"26053":9,"26054":8,"26055":8,"26056":8,"26057":7,"26058":2,"26059":9,"26060":1,"26061":5,"26062":8,"26063":9,"26064":7,"26065":7,"26066":8,"26067":8,"26068":5,"26069":6,"26070":1,"26071":2,"26072":3,"26073":6,"26074":4,"26075":7,"26076":8,"26077":7,"26078":2,"26079":8,"26080":5,"26081":7,"26082":6,"26083":6,"26084":5,"26085":5,"26086":8,"26087":8,"26088":6,"26089":7,"26090":7,"26091":5,"26092":8,"26093":7,"26094":8,"26095":7,"26096":9,"26097":2,"26098":8,"26099":8,"26100":2,"26101":9,"26102":10,"26103":8,"26104":8,"26105":6,"26106":8,"26107":4,"26108":8,"26109":8,"26110":9,"26111":9,"26112":10,"26113":5,"26114":6,"26115":4,"26116":1,"26117":5,"26118":4,"26119":6,"26120":7,"26121":7,"26122":5,"26123":6,"26124":7,"26125":10,"26126":6,"26127":1,"26128":5,"26129":7,"26130":9,"26131":8,"26132":2,"26133":2,"26134":8,"26135":10,"26136":1,"26137":9,"26138":9,"26139":1,"26140":1,"26141":7,"26142":10,"26143":7,"26144":7,"26145":7,"26146":2,"26147":3,"26148":9,"26149":9,"26150":2,"26151":2,"26152":8,"26153":8,"26154":2,"26155":3,"26156":3,"26157":3,"26158":10,"26159":9,"26160":8,"26161":8,"26162":8,"26163":4,"26164":2,"26165":2,"26166":6,"26167":6,"26168":8,"26169":3,"26170":8,"26171":3,"26172":7,"26173":9,"26174":1,"26175":9,"26176":2,"26177":8,"26178":8,"26179":2,"26180":1,"26181":3,"26182":9,"26183":4,"26184":7,"26185":6,"26186":1,"26187":9,"26188":8,"26189":2,"26190":4,"26191":3,"26192":6,"26193":7,"26194":5,"26195":9,"26196":9,"26197":8,"26198":6,"26199":9,"26200":8,"26201":8,"26202":9,"26203":5,"26204":5,"26205":2,"26206":8,"26207":7,"26208":2,"26209":10,"26210":7,"26211":8,"26212":5,"26213":9,"26214":7,"26215":9,"26216":2,"26217":9,"26218":1,"26219":2,"26220":1,"26221":3,"26222":5,"26223":8,"26224":7,"26225":9,"26226":7,"26227":6,"26228":8,"26229":2,"26230":2,"26231":8,"26232":9,"26233":3,"26234":9,"26235":10,"26236":3,"26237":9,"26238":9,"26239":8,"26240":9,"26241":5,"26242":7,"26243":9,"26244":7,"26245":9,"26246":10,"26247":7,"26248":5,"26249":8,"26250":6,"26251":2,"26252":2,"26253":9,"26254":5,"26255":8,"26256":3,"26257":5,"26258":9,"26259":5,"26260":1,"26261":5,"26262":6,"26263":4,"26264":9,"26265":5,"26266":7,"26267":6,"26268":6,"26269":8,"26270":7,"26271":2,"26272":1,"26273":4,"26274":8,"26275":6,"26276":7,"26277":1,"26278":4,"26279":7,"26280":7,"26281":8,"26282":9,"26283":8,"26284":7,"26285":7,"26286":8,"26287":9,"26288":1,"26289":5,"26290":8,"26291":7,"26292":10,"26293":9,"26294":9,"26295":5,"26296":7,"26297":7,"26298":5,"26299":7,"26300":8,"26301":7,"26302":5,"26303":2,"26304":5,"26305":8,"26306":1,"26307":6,"26308":7,"26309":2,"26310":7,"26311":9,"26312":8,"26313":10,"26314":10,"26315":7,"26316":6,"26317":4,"26318":2,"26319":5,"26320":5,"26321":6,"26322":4,"26323":5,"26324":10,"26325":8,"26326":9,"26327":4,"26328":3,"26329":7,"26330":8,"26331":3,"26332":9,"26333":1,"26334":9,"26335":2,"26336":7,"26337":6,"26338":5,"26339":6,"26340":9,"26341":5,"26342":9,"26343":2,"26344":8,"26345":1,"26346":5,"26347":8,"26348":9,"26349":7,"26350":7,"26351":7,"26352":5,"26353":9,"26354":8,"26355":5,"26356":8,"26357":9,"26358":2,"26359":8,"26360":6,"26361":10,"26362":2,"26363":10,"26364":5,"26365":7,"26366":2,"26367":8,"26368":10,"26369":1,"26370":7,"26371":2,"26372":4,"26373":6,"26374":5,"26375":9,"26376":2,"26377":6,"26378":9,"26379":7,"26380":10,"26381":10,"26382":9,"26383":9,"26384":3,"26385":8,"26386":1,"26387":8,"26388":4,"26389":2,"26390":2,"26391":8,"26392":8,"26393":9,"26394":10,"26395":8,"26396":2,"26397":8,"26398":9,"26399":9,"26400":9,"26401":8,"26402":7,"26403":9,"26404":9,"26405":5,"26406":9,"26407":9,"26408":7,"26409":8,"26410":7,"26411":9,"26412":3,"26413":9,"26414":8,"26415":7,"26416":9,"26417":9,"26418":8,"26419":8,"26420":1,"26421":3,"26422":7,"26423":8,"26424":2,"26425":9,"26426":8,"26427":8,"26428":5,"26429":9,"26430":10,"26431":10,"26432":7,"26433":7,"26434":7,"26435":9,"26436":8,"26437":10,"26438":7,"26439":2,"26440":5,"26441":5,"26442":9,"26443":7,"26444":7,"26445":7,"26446":5,"26447":8,"26448":8,"26449":8,"26450":2,"26451":2,"26452":3,"26453":2,"26454":8,"26455":8,"26456":1,"26457":6,"26458":2,"26459":7,"26460":6,"26461":5,"26462":3,"26463":8,"26464":8,"26465":9,"26466":8,"26467":9,"26468":8,"26469":9,"26470":8,"26471":7,"26472":8,"26473":7,"26474":7,"26475":7,"26476":5,"26477":2,"26478":9,"26479":9,"26480":7,"26481":7,"26482":2,"26483":2,"26484":9,"26485":8,"26486":2,"26487":5,"26488":6,"26489":7,"26490":7,"26491":5,"26492":2,"26493":1,"26494":5,"26495":8,"26496":3,"26497":1,"26498":9,"26499":6,"26500":9,"26501":5,"26502":8,"26503":5,"26504":3,"26505":8,"26506":3,"26507":8,"26508":5,"26509":2,"26510":8,"26511":9,"26512":6,"26513":6,"26514":8,"26515":7,"26516":2,"26517":2,"26518":9,"26519":2,"26520":4,"26521":10,"26522":9,"26523":7,"26524":2,"26525":7,"26526":4,"26527":8,"26528":8,"26529":9,"26530":9,"26531":6,"26532":9,"26533":8,"26534":3,"26535":8,"26536":7,"26537":5,"26538":8,"26539":9,"26540":8,"26541":7,"26542":2,"26543":1,"26544":5,"26545":10,"26546":2,"26547":7,"26548":8,"26549":2,"26550":7,"26551":7,"26552":8,"26553":6,"26554":3,"26555":6,"26556":9,"26557":7,"26558":8,"26559":2,"26560":5,"26561":6,"26562":9,"26563":7,"26564":8,"26565":4,"26566":2,"26567":5,"26568":8,"26569":6,"26570":2,"26571":5,"26572":9,"26573":9,"26574":9,"26575":9,"26576":6,"26577":1,"26578":7,"26579":7,"26580":7,"26581":8,"26582":9,"26583":7,"26584":5,"26585":7,"26586":7,"26587":1,"26588":2,"26589":10,"26590":7,"26591":1,"26592":7,"26593":9,"26594":8,"26595":7,"26596":9,"26597":9,"26598":5,"26599":5,"26600":7,"26601":7,"26602":8,"26603":1,"26604":1,"26605":2,"26606":2,"26607":9,"26608":7,"26609":2,"26610":8,"26611":7,"26612":6,"26613":8,"26614":5,"26615":9,"26616":2,"26617":6,"26618":5,"26619":8,"26620":8,"26621":4,"26622":3,"26623":7,"26624":3,"26625":7,"26626":5,"26627":8,"26628":8,"26629":9,"26630":2,"26631":8,"26632":6,"26633":6,"26634":8,"26635":6,"26636":7,"26637":3,"26638":7,"26639":7,"26640":2,"26641":1,"26642":7,"26643":5,"26644":9,"26645":7,"26646":7,"26647":2,"26648":7,"26649":8,"26650":4,"26651":5,"26652":4,"26653":2,"26654":8,"26655":9,"26656":6,"26657":3,"26658":8,"26659":5,"26660":2,"26661":3,"26662":10,"26663":7,"26664":9,"26665":5,"26666":3,"26667":9,"26668":7,"26669":9,"26670":8,"26671":6,"26672":4,"26673":7,"26674":8,"26675":8,"26676":6,"26677":9,"26678":7,"26679":5,"26680":8,"26681":8,"26682":7,"26683":8,"26684":5,"26685":9,"26686":5,"26687":9,"26688":7,"26689":7,"26690":7,"26691":5,"26692":9,"26693":8,"26694":8,"26695":4,"26696":8,"26697":8,"26698":7,"26699":5,"26700":3,"26701":9,"26702":9,"26703":7,"26704":9,"26705":8,"26706":1,"26707":5,"26708":8,"26709":9,"26710":8,"26711":7,"26712":8,"26713":9,"26714":9,"26715":7,"26716":5,"26717":9,"26718":8,"26719":9,"26720":8,"26721":4,"26722":3,"26723":10,"26724":2,"26725":8,"26726":1,"26727":7,"26728":9,"26729":4,"26730":5,"26731":1,"26732":6,"26733":7,"26734":2,"26735":3,"26736":8,"26737":9,"26738":4,"26739":8,"26740":8,"26741":7,"26742":9,"26743":6,"26744":5,"26745":9,"26746":5,"26747":5,"26748":10,"26749":1,"26750":9,"26751":7,"26752":5,"26753":9,"26754":3,"26755":2,"26756":3,"26757":5,"26758":8,"26759":6,"26760":5,"26761":5,"26762":8,"26763":2,"26764":2,"26765":7,"26766":8,"26767":8,"26768":7,"26769":8,"26770":9,"26771":2,"26772":7,"26773":10,"26774":9,"26775":1,"26776":7,"26777":8,"26778":10,"26779":8,"26780":9,"26781":4,"26782":10,"26783":9,"26784":1,"26785":9,"26786":9,"26787":6,"26788":7,"26789":7,"26790":5,"26791":9,"26792":2,"26793":8,"26794":3,"26795":7,"26796":7,"26797":5,"26798":9,"26799":9,"26800":8,"26801":7,"26802":8,"26803":8,"26804":8,"26805":10,"26806":7,"26807":8,"26808":7,"26809":9,"26810":2,"26811":8,"26812":3,"26813":3,"26814":2,"26815":10,"26816":1,"26817":7,"26818":7,"26819":9,"26820":8,"26821":5,"26822":8,"26823":5,"26824":8,"26825":2,"26826":7,"26827":7,"26828":3,"26829":6,"26830":1,"26831":6,"26832":5,"26833":10,"26834":7,"26835":8,"26836":5,"26837":3,"26838":4,"26839":4,"26840":7,"26841":8,"26842":10,"26843":8,"26844":7,"26845":7,"26846":8,"26847":10,"26848":1,"26849":8,"26850":6,"26851":5,"26852":10,"26853":7,"26854":8,"26855":4,"26856":8,"26857":9,"26858":7,"26859":5,"26860":5,"26861":8,"26862":2,"26863":3,"26864":6,"26865":5,"26866":9,"26867":8,"26868":9,"26869":9,"26870":8,"26871":1,"26872":8,"26873":7,"26874":5,"26875":8,"26876":7,"26877":8,"26878":7,"26879":9,"26880":7,"26881":8,"26882":9,"26883":6,"26884":8,"26885":2,"26886":3,"26887":3,"26888":8,"26889":3,"26890":7,"26891":7,"26892":5,"26893":3,"26894":5,"26895":8,"26896":2,"26897":8,"26898":7,"26899":4,"26900":9,"26901":8,"26902":1,"26903":8,"26904":1,"26905":10,"26906":2,"26907":10,"26908":2,"26909":8,"26910":5,"26911":9,"26912":5,"26913":3,"26914":2,"26915":1,"26916":8,"26917":7,"26918":7,"26919":2,"26920":3,"26921":2,"26922":7,"26923":10,"26924":7,"26925":8,"26926":3,"26927":7,"26928":9,"26929":8,"26930":8,"26931":8,"26932":8,"26933":8,"26934":10,"26935":8,"26936":9,"26937":7,"26938":2,"26939":8,"26940":5,"26941":8,"26942":2,"26943":8,"26944":7,"26945":7,"26946":7,"26947":4,"26948":6,"26949":6,"26950":9,"26951":2,"26952":2,"26953":5,"26954":7,"26955":2,"26956":3,"26957":9,"26958":8,"26959":7,"26960":7,"26961":9,"26962":4,"26963":8,"26964":10,"26965":7,"26966":8,"26967":7,"26968":2,"26969":2,"26970":5,"26971":1,"26972":3,"26973":2,"26974":2,"26975":5,"26976":9,"26977":5,"26978":7,"26979":5,"26980":8,"26981":3,"26982":7,"26983":2,"26984":9,"26985":9,"26986":8,"26987":6,"26988":1,"26989":3,"26990":8,"26991":7,"26992":10,"26993":8,"26994":2,"26995":6,"26996":10,"26997":9,"26998":8,"26999":2,"27000":5,"27001":6,"27002":8,"27003":7,"27004":9,"27005":8,"27006":5,"27007":7,"27008":5,"27009":8,"27010":5,"27011":8,"27012":5,"27013":10,"27014":9,"27015":9,"27016":7,"27017":4,"27018":2,"27019":7,"27020":7,"27021":9,"27022":7,"27023":9,"27024":8,"27025":7,"27026":2,"27027":2,"27028":9,"27029":7,"27030":6,"27031":6,"27032":6,"27033":9,"27034":5,"27035":3,"27036":5,"27037":9,"27038":10,"27039":5,"27040":8,"27041":7,"27042":9,"27043":8,"27044":3,"27045":9,"27046":7,"27047":4,"27048":7,"27049":8,"27050":7,"27051":6,"27052":7,"27053":9,"27054":2,"27055":8,"27056":8,"27057":3,"27058":2,"27059":4,"27060":3,"27061":9,"27062":5,"27063":9,"27064":2,"27065":7,"27066":5,"27067":9,"27068":10,"27069":7,"27070":8,"27071":8,"27072":10,"27073":5,"27074":7,"27075":5,"27076":9,"27077":3,"27078":5,"27079":1,"27080":8,"27081":3,"27082":2,"27083":9,"27084":7,"27085":2,"27086":9,"27087":4,"27088":9,"27089":4,"27090":3,"27091":7,"27092":10,"27093":8,"27094":7,"27095":9,"27096":8,"27097":1,"27098":9,"27099":8,"27100":2,"27101":6,"27102":5,"27103":9,"27104":2,"27105":3,"27106":5,"27107":6,"27108":9,"27109":9,"27110":7,"27111":5,"27112":2,"27113":9,"27114":7,"27115":8,"27116":9,"27117":6,"27118":9,"27119":8,"27120":1,"27121":7,"27122":1,"27123":8,"27124":7,"27125":5,"27126":9,"27127":6,"27128":1,"27129":9,"27130":2,"27131":4,"27132":8,"27133":4,"27134":8,"27135":7,"27136":8,"27137":6,"27138":8,"27139":10,"27140":1,"27141":7,"27142":6,"27143":8,"27144":8,"27145":9,"27146":1,"27147":7,"27148":8,"27149":8,"27150":9,"27151":6,"27152":8,"27153":9,"27154":8,"27155":4,"27156":1,"27157":10,"27158":5,"27159":2,"27160":9,"27161":8,"27162":2,"27163":2,"27164":7,"27165":4,"27166":10,"27167":7,"27168":5,"27169":9,"27170":8,"27171":10,"27172":8,"27173":8,"27174":8,"27175":9,"27176":5,"27177":7,"27178":10,"27179":4,"27180":9,"27181":4,"27182":8,"27183":5,"27184":8,"27185":10,"27186":2,"27187":5,"27188":8,"27189":10,"27190":9,"27191":8,"27192":7,"27193":8,"27194":8,"27195":8,"27196":4,"27197":8,"27198":7,"27199":6,"27200":8,"27201":1,"27202":3,"27203":7,"27204":7,"27205":6,"27206":8,"27207":5,"27208":8,"27209":1,"27210":7,"27211":9,"27212":6,"27213":8,"27214":8,"27215":8,"27216":10,"27217":5,"27218":8,"27219":9,"27220":6,"27221":5,"27222":3,"27223":6,"27224":6,"27225":2,"27226":5,"27227":10,"27228":5,"27229":8,"27230":7,"27231":8,"27232":7,"27233":1,"27234":2,"27235":8,"27236":8,"27237":7,"27238":1,"27239":7,"27240":3,"27241":6,"27242":7,"27243":4,"27244":5,"27245":10,"27246":5,"27247":6,"27248":4,"27249":7,"27250":8,"27251":8,"27252":8,"27253":8,"27254":7,"27255":8,"27256":9,"27257":4,"27258":9,"27259":3,"27260":10,"27261":7,"27262":8,"27263":2,"27264":7,"27265":3,"27266":7,"27267":7,"27268":10,"27269":7,"27270":7,"27271":4,"27272":8,"27273":7,"27274":8,"27275":2,"27276":5,"27277":4,"27278":8,"27279":8,"27280":7,"27281":4,"27282":8,"27283":4,"27284":4,"27285":8,"27286":7,"27287":2,"27288":7,"27289":8,"27290":4,"27291":3,"27292":7,"27293":6,"27294":6,"27295":10,"27296":9,"27297":7,"27298":8,"27299":7,"27300":3,"27301":8,"27302":2,"27303":3,"27304":9,"27305":8,"27306":7,"27307":8,"27308":1,"27309":9,"27310":5,"27311":8,"27312":1,"27313":8,"27314":9,"27315":9,"27316":2,"27317":5,"27318":9,"27319":7,"27320":3,"27321":7,"27322":5,"27323":6,"27324":8,"27325":8,"27326":5,"27327":9,"27328":1,"27329":2,"27330":8,"27331":6,"27332":9,"27333":9,"27334":8,"27335":7,"27336":8,"27337":5,"27338":5,"27339":7,"27340":8,"27341":3,"27342":2,"27343":8,"27344":5,"27345":7,"27346":7,"27347":5,"27348":1,"27349":9,"27350":7,"27351":7,"27352":9,"27353":10,"27354":3,"27355":6,"27356":7,"27357":9,"27358":7,"27359":7,"27360":7,"27361":7,"27362":8,"27363":9,"27364":2,"27365":5,"27366":2,"27367":8,"27368":3,"27369":5,"27370":7,"27371":2,"27372":10,"27373":8,"27374":7,"27375":6,"27376":10,"27377":9,"27378":5,"27379":2,"27380":8,"27381":3,"27382":7,"27383":5,"27384":9,"27385":7,"27386":8,"27387":8,"27388":7,"27389":8,"27390":2,"27391":2,"27392":8,"27393":5,"27394":4,"27395":1,"27396":5,"27397":10,"27398":9,"27399":9,"27400":8,"27401":3,"27402":9,"27403":5,"27404":4,"27405":8,"27406":9,"27407":9,"27408":6,"27409":1,"27410":7,"27411":5,"27412":5,"27413":7,"27414":2,"27415":3,"27416":7,"27417":9,"27418":9,"27419":5,"27420":6,"27421":7,"27422":7,"27423":9,"27424":8,"27425":7,"27426":2,"27427":2,"27428":7,"27429":6,"27430":7,"27431":9,"27432":9,"27433":8,"27434":9,"27435":2,"27436":4,"27437":6,"27438":4,"27439":2,"27440":9,"27441":9,"27442":9,"27443":9,"27444":9,"27445":7,"27446":1,"27447":9,"27448":5,"27449":7,"27450":9,"27451":4,"27452":8,"27453":6,"27454":9,"27455":8,"27456":8,"27457":8,"27458":7,"27459":9,"27460":7,"27461":6,"27462":9,"27463":5,"27464":5,"27465":8,"27466":7,"27467":2,"27468":2,"27469":7,"27470":8,"27471":7,"27472":5,"27473":2,"27474":8,"27475":4,"27476":9,"27477":1,"27478":7,"27479":9,"27480":9,"27481":7,"27482":7,"27483":10,"27484":7,"27485":7,"27486":2,"27487":3,"27488":8,"27489":6,"27490":10,"27491":8,"27492":7,"27493":7,"27494":6,"27495":4,"27496":10,"27497":5,"27498":9,"27499":8,"27500":1,"27501":4,"27502":1,"27503":9,"27504":5,"27505":5,"27506":7,"27507":3,"27508":4,"27509":5,"27510":3,"27511":6,"27512":8,"27513":8,"27514":7,"27515":5,"27516":7,"27517":1,"27518":6,"27519":2,"27520":7,"27521":7,"27522":5,"27523":8,"27524":1,"27525":7,"27526":2,"27527":9,"27528":8,"27529":2,"27530":5,"27531":6,"27532":1,"27533":8,"27534":9,"27535":6,"27536":1,"27537":7,"27538":5,"27539":4,"27540":9,"27541":7,"27542":8,"27543":8,"27544":7,"27545":6,"27546":2,"27547":8,"27548":6,"27549":9,"27550":9,"27551":10,"27552":5,"27553":10,"27554":5,"27555":7,"27556":8,"27557":5,"27558":2,"27559":5,"27560":1,"27561":7,"27562":2,"27563":5,"27564":10,"27565":9,"27566":3,"27567":8,"27568":5,"27569":1,"27570":7,"27571":7,"27572":6,"27573":1,"27574":7,"27575":7,"27576":3,"27577":10,"27578":9,"27579":9,"27580":6,"27581":9,"27582":3,"27583":9,"27584":8,"27585":7,"27586":7,"27587":8,"27588":5,"27589":10,"27590":7,"27591":9,"27592":10,"27593":8,"27594":5,"27595":1,"27596":8,"27597":5,"27598":7,"27599":5,"27600":7,"27601":8,"27602":2,"27603":5,"27604":9,"27605":5,"27606":7,"27607":8,"27608":7,"27609":5,"27610":6,"27611":3,"27612":7,"27613":2,"27614":7,"27615":7,"27616":8,"27617":8,"27618":2,"27619":9,"27620":7,"27621":9,"27622":7,"27623":6,"27624":6,"27625":6,"27626":7,"27627":8,"27628":3,"27629":2,"27630":9,"27631":10,"27632":9,"27633":8,"27634":5,"27635":9,"27636":8,"27637":8,"27638":2,"27639":8,"27640":7,"27641":7,"27642":2,"27643":10,"27644":9,"27645":9,"27646":9,"27647":7,"27648":6,"27649":3,"27650":1,"27651":2,"27652":4,"27653":8,"27654":7,"27655":8,"27656":7,"27657":7,"27658":8,"27659":9,"27660":7,"27661":7,"27662":10,"27663":2,"27664":8,"27665":8,"27666":4,"27667":7,"27668":8,"27669":7,"27670":9,"27671":3,"27672":9,"27673":9,"27674":8,"27675":7,"27676":9,"27677":6,"27678":9,"27679":2,"27680":5,"27681":10,"27682":3,"27683":10,"27684":4,"27685":1,"27686":8,"27687":7,"27688":5,"27689":8,"27690":9,"27691":8,"27692":5,"27693":8,"27694":10,"27695":10,"27696":9,"27697":7,"27698":2,"27699":5,"27700":3,"27701":5,"27702":9,"27703":5,"27704":5,"27705":3,"27706":4,"27707":7,"27708":1,"27709":5,"27710":2,"27711":3,"27712":9,"27713":9,"27714":10,"27715":8,"27716":9,"27717":10,"27718":4,"27719":8,"27720":2,"27721":9,"27722":7,"27723":8,"27724":2,"27725":10,"27726":7,"27727":9,"27728":5,"27729":7,"27730":7,"27731":7,"27732":7,"27733":8,"27734":8,"27735":3,"27736":2,"27737":5,"27738":7,"27739":8,"27740":4,"27741":7,"27742":8,"27743":9,"27744":8,"27745":7,"27746":5,"27747":2,"27748":4,"27749":9,"27750":8,"27751":7,"27752":1,"27753":7,"27754":8,"27755":9,"27756":8,"27757":5,"27758":8,"27759":8,"27760":7,"27761":7,"27762":10,"27763":9,"27764":1,"27765":2,"27766":5,"27767":10,"27768":7,"27769":9,"27770":8,"27771":2,"27772":5,"27773":7,"27774":2,"27775":6,"27776":8,"27777":8,"27778":9,"27779":5,"27780":8,"27781":2,"27782":7,"27783":6,"27784":7,"27785":8,"27786":7,"27787":7,"27788":10,"27789":10,"27790":2,"27791":2,"27792":1,"27793":9,"27794":7,"27795":9,"27796":8,"27797":5,"27798":6,"27799":9,"27800":7,"27801":7,"27802":3,"27803":9,"27804":10,"27805":8,"27806":2,"27807":9,"27808":8,"27809":2,"27810":8,"27811":10,"27812":2,"27813":9,"27814":9,"27815":3,"27816":4,"27817":8,"27818":9,"27819":1,"27820":8,"27821":9,"27822":9,"27823":5,"27824":6,"27825":8,"27826":9,"27827":7,"27828":7,"27829":5,"27830":4,"27831":8,"27832":9,"27833":8,"27834":2,"27835":1,"27836":8,"27837":7,"27838":2,"27839":3,"27840":8,"27841":2,"27842":9,"27843":7,"27844":5,"27845":2,"27846":2,"27847":5,"27848":2,"27849":8,"27850":10,"27851":10,"27852":5,"27853":1,"27854":9,"27855":9,"27856":8,"27857":5,"27858":9,"27859":8,"27860":2,"27861":5,"27862":7,"27863":9,"27864":4,"27865":4,"27866":8,"27867":7,"27868":9,"27869":8,"27870":2,"27871":7,"27872":10,"27873":8,"27874":6,"27875":9,"27876":8,"27877":1,"27878":4,"27879":2,"27880":8,"27881":7,"27882":7,"27883":2,"27884":9,"27885":9,"27886":5,"27887":5,"27888":5,"27889":9,"27890":2,"27891":2,"27892":3,"27893":8,"27894":8,"27895":8,"27896":9,"27897":3,"27898":7,"27899":8,"27900":7,"27901":7,"27902":3,"27903":3,"27904":1,"27905":9,"27906":4,"27907":6,"27908":9,"27909":7,"27910":8,"27911":7,"27912":8,"27913":2,"27914":8,"27915":8,"27916":9,"27917":7,"27918":9,"27919":9,"27920":7,"27921":7,"27922":5,"27923":10,"27924":5,"27925":4,"27926":4,"27927":8,"27928":9,"27929":7,"27930":9,"27931":7,"27932":4,"27933":9,"27934":7,"27935":1,"27936":3,"27937":9,"27938":5,"27939":2,"27940":10,"27941":7,"27942":4,"27943":7,"27944":7,"27945":2,"27946":7,"27947":1,"27948":5,"27949":2,"27950":2,"27951":7,"27952":9,"27953":8,"27954":5,"27955":8,"27956":9,"27957":9,"27958":4,"27959":8,"27960":7,"27961":2,"27962":7,"27963":9,"27964":5,"27965":7,"27966":7,"27967":7,"27968":9,"27969":8,"27970":10,"27971":7,"27972":6,"27973":7,"27974":8,"27975":9,"27976":9,"27977":7,"27978":7,"27979":4,"27980":9,"27981":6,"27982":3,"27983":9,"27984":7,"27985":7,"27986":9,"27987":9,"27988":8,"27989":8,"27990":2,"27991":3,"27992":9,"27993":4,"27994":9,"27995":8,"27996":8,"27997":9,"27998":9,"27999":7,"28000":8,"28001":6,"28002":7,"28003":8,"28004":7,"28005":7,"28006":6,"28007":8,"28008":2,"28009":4,"28010":7,"28011":8,"28012":5,"28013":8,"28014":4,"28015":7,"28016":5,"28017":4,"28018":7,"28019":2,"28020":4,"28021":7,"28022":4,"28023":6,"28024":9,"28025":9,"28026":9,"28027":7,"28028":2,"28029":10,"28030":8,"28031":9,"28032":7,"28033":7,"28034":3,"28035":10,"28036":4,"28037":4,"28038":9,"28039":9,"28040":5,"28041":3,"28042":7,"28043":7,"28044":3,"28045":8,"28046":8,"28047":9,"28048":9,"28049":9,"28050":3,"28051":7,"28052":7,"28053":8,"28054":7,"28055":6,"28056":5,"28057":7,"28058":9,"28059":7,"28060":9,"28061":10,"28062":2,"28063":9,"28064":7,"28065":7,"28066":8,"28067":2,"28068":2,"28069":8,"28070":5,"28071":5,"28072":5,"28073":4,"28074":9,"28075":10,"28076":8,"28077":8,"28078":10,"28079":1,"28080":4,"28081":6,"28082":3,"28083":7,"28084":7,"28085":9,"28086":8,"28087":3,"28088":7,"28089":8,"28090":8,"28091":10,"28092":8,"28093":7,"28094":8,"28095":8,"28096":2,"28097":9,"28098":7,"28099":6,"28100":5,"28101":2,"28102":5,"28103":2,"28104":5,"28105":8,"28106":8,"28107":9,"28108":7,"28109":2,"28110":8,"28111":5,"28112":10,"28113":8,"28114":2,"28115":2,"28116":2,"28117":3,"28118":9,"28119":5,"28120":8,"28121":7,"28122":8,"28123":7,"28124":7,"28125":7,"28126":10,"28127":5,"28128":2,"28129":7,"28130":8,"28131":5,"28132":8,"28133":9,"28134":4,"28135":7,"28136":3,"28137":9,"28138":9,"28139":8,"28140":8,"28141":5,"28142":8,"28143":1,"28144":7,"28145":8,"28146":2,"28147":6,"28148":7,"28149":4,"28150":5,"28151":7,"28152":9,"28153":8,"28154":7,"28155":10,"28156":8,"28157":1,"28158":5,"28159":7,"28160":8,"28161":5,"28162":8,"28163":9,"28164":1,"28165":4,"28166":7,"28167":9,"28168":5,"28169":9,"28170":8,"28171":4,"28172":8,"28173":3,"28174":3,"28175":1,"28176":9,"28177":8,"28178":1,"28179":10,"28180":10,"28181":10,"28182":7,"28183":3,"28184":2,"28185":4,"28186":8,"28187":10,"28188":5,"28189":7,"28190":7,"28191":9,"28192":8,"28193":4,"28194":8,"28195":9,"28196":3,"28197":3,"28198":9,"28199":9,"28200":5,"28201":7,"28202":5,"28203":8,"28204":2,"28205":9,"28206":10,"28207":5,"28208":2,"28209":8,"28210":7,"28211":7,"28212":4,"28213":8,"28214":9,"28215":4,"28216":8,"28217":8,"28218":9,"28219":9,"28220":1,"28221":9,"28222":8,"28223":6,"28224":10,"28225":6,"28226":2,"28227":2,"28228":8,"28229":7,"28230":2,"28231":7,"28232":1,"28233":8,"28234":8,"28235":4,"28236":7,"28237":5,"28238":2,"28239":5,"28240":5,"28241":10,"28242":8,"28243":1,"28244":8,"28245":8,"28246":1,"28247":4,"28248":5,"28249":5,"28250":6,"28251":9,"28252":7,"28253":7,"28254":9,"28255":3,"28256":8,"28257":9,"28258":8,"28259":9,"28260":9,"28261":4,"28262":9,"28263":9,"28264":9,"28265":1,"28266":9,"28267":8,"28268":9,"28269":8,"28270":4,"28271":4,"28272":8,"28273":8,"28274":7,"28275":1,"28276":4,"28277":8,"28278":7,"28279":7,"28280":9,"28281":7,"28282":3,"28283":5,"28284":9,"28285":2,"28286":4,"28287":5,"28288":4,"28289":3,"28290":8,"28291":2,"28292":8,"28293":8,"28294":8,"28295":1,"28296":9,"28297":8,"28298":2,"28299":8,"28300":4,"28301":9,"28302":6,"28303":9,"28304":8,"28305":8,"28306":6,"28307":6,"28308":10,"28309":7,"28310":6,"28311":4,"28312":7,"28313":8,"28314":4,"28315":8,"28316":7,"28317":7,"28318":5,"28319":5,"28320":6,"28321":8,"28322":1,"28323":9,"28324":7,"28325":8,"28326":2,"28327":3,"28328":7,"28329":1,"28330":9,"28331":5,"28332":3,"28333":10,"28334":3,"28335":9,"28336":7,"28337":8,"28338":10,"28339":4,"28340":2,"28341":5,"28342":7,"28343":5,"28344":8,"28345":5,"28346":7,"28347":7,"28348":4,"28349":2,"28350":7,"28351":10,"28352":5,"28353":2,"28354":8,"28355":4,"28356":8,"28357":9,"28358":8,"28359":2,"28360":5,"28361":7,"28362":8,"28363":8,"28364":8,"28365":7,"28366":5,"28367":1,"28368":2,"28369":7,"28370":6,"28371":9,"28372":9,"28373":7,"28374":8,"28375":7,"28376":7,"28377":9,"28378":5,"28379":8,"28380":8,"28381":3,"28382":2,"28383":6,"28384":7,"28385":8,"28386":4,"28387":4,"28388":7,"28389":7,"28390":8,"28391":8,"28392":2,"28393":10,"28394":3,"28395":1,"28396":8,"28397":9,"28398":2,"28399":3,"28400":5,"28401":9,"28402":7,"28403":5,"28404":6,"28405":2,"28406":7,"28407":9,"28408":8,"28409":8,"28410":4,"28411":9,"28412":7,"28413":8,"28414":2,"28415":9,"28416":7,"28417":8,"28418":3,"28419":2,"28420":5,"28421":3,"28422":4,"28423":7,"28424":8,"28425":7,"28426":2,"28427":8,"28428":5,"28429":5,"28430":7,"28431":8,"28432":7,"28433":2,"28434":7,"28435":9,"28436":8,"28437":5,"28438":3,"28439":2,"28440":9,"28441":8,"28442":8,"28443":2,"28444":7,"28445":7,"28446":7,"28447":7,"28448":8,"28449":9,"28450":9,"28451":8,"28452":5,"28453":8,"28454":8,"28455":3,"28456":8,"28457":7,"28458":2,"28459":9,"28460":9,"28461":2,"28462":2,"28463":7,"28464":10,"28465":7,"28466":7,"28467":10,"28468":2,"28469":2,"28470":4,"28471":3,"28472":6,"28473":1,"28474":2,"28475":9,"28476":2,"28477":8,"28478":9,"28479":4,"28480":7,"28481":8,"28482":7,"28483":9,"28484":9,"28485":7,"28486":9,"28487":5,"28488":9,"28489":3,"28490":7,"28491":8,"28492":8,"28493":8,"28494":7,"28495":7,"28496":5,"28497":9,"28498":7,"28499":8,"28500":8,"28501":1,"28502":8,"28503":3,"28504":5,"28505":5,"28506":4,"28507":8,"28508":7,"28509":1,"28510":9,"28511":9,"28512":6,"28513":7,"28514":8,"28515":2,"28516":2,"28517":9,"28518":8,"28519":7,"28520":9,"28521":10,"28522":5,"28523":9,"28524":6,"28525":8,"28526":8,"28527":3,"28528":10,"28529":3,"28530":5,"28531":2,"28532":7,"28533":6,"28534":7,"28535":8,"28536":2,"28537":2,"28538":2,"28539":7,"28540":8,"28541":5,"28542":1,"28543":4,"28544":1,"28545":1,"28546":5,"28547":9,"28548":8,"28549":3,"28550":2,"28551":7,"28552":7,"28553":4,"28554":8,"28555":7,"28556":1,"28557":2,"28558":9,"28559":6,"28560":1,"28561":10,"28562":7,"28563":7,"28564":9,"28565":10,"28566":2,"28567":1,"28568":9,"28569":9,"28570":8,"28571":2,"28572":7,"28573":8,"28574":5,"28575":8,"28576":7,"28577":5,"28578":4,"28579":4,"28580":7,"28581":8,"28582":4,"28583":1,"28584":8,"28585":7,"28586":10,"28587":4,"28588":8,"28589":8,"28590":1,"28591":4,"28592":8,"28593":3,"28594":5,"28595":8,"28596":7,"28597":1,"28598":6,"28599":9,"28600":3,"28601":5,"28602":9,"28603":6,"28604":7,"28605":4,"28606":10,"28607":2,"28608":8,"28609":7,"28610":7,"28611":2,"28612":1,"28613":10,"28614":2,"28615":1,"28616":4,"28617":5,"28618":10,"28619":8,"28620":8,"28621":8,"28622":7,"28623":2,"28624":7,"28625":8,"28626":5,"28627":5,"28628":9,"28629":9,"28630":5,"28631":9,"28632":9,"28633":9,"28634":6,"28635":7,"28636":2,"28637":8,"28638":10,"28639":2,"28640":2,"28641":7,"28642":10,"28643":9,"28644":6,"28645":2,"28646":8,"28647":6,"28648":7,"28649":7,"28650":8,"28651":8,"28652":5,"28653":7,"28654":8,"28655":2,"28656":10,"28657":4,"28658":8,"28659":1,"28660":7,"28661":4,"28662":5,"28663":2,"28664":6,"28665":3,"28666":7,"28667":9,"28668":8,"28669":8,"28670":6,"28671":5,"28672":7,"28673":3,"28674":5,"28675":9,"28676":5,"28677":2,"28678":9,"28679":8,"28680":8,"28681":9,"28682":3,"28683":6,"28684":10,"28685":8,"28686":10,"28687":8,"28688":7,"28689":2,"28690":9,"28691":9,"28692":8,"28693":6,"28694":2,"28695":7,"28696":5,"28697":9,"28698":3,"28699":4,"28700":5,"28701":7,"28702":1,"28703":4,"28704":8,"28705":2,"28706":8,"28707":10,"28708":10,"28709":9,"28710":6,"28711":1,"28712":4,"28713":7,"28714":4,"28715":8,"28716":1,"28717":5,"28718":8,"28719":8,"28720":1,"28721":7,"28722":3,"28723":2,"28724":8,"28725":3,"28726":7,"28727":2,"28728":2,"28729":7,"28730":6,"28731":8,"28732":7,"28733":6,"28734":7,"28735":7,"28736":9,"28737":2,"28738":5,"28739":3,"28740":9,"28741":3,"28742":7,"28743":1,"28744":8,"28745":8,"28746":7,"28747":3,"28748":9,"28749":4,"28750":9,"28751":7,"28752":10,"28753":7,"28754":4,"28755":8,"28756":6,"28757":8,"28758":5,"28759":2,"28760":8,"28761":5,"28762":7,"28763":2,"28764":4,"28765":3,"28766":2,"28767":5,"28768":7,"28769":4,"28770":7,"28771":8,"28772":1,"28773":5,"28774":2,"28775":9,"28776":8,"28777":1,"28778":8,"28779":4,"28780":1,"28781":1,"28782":8,"28783":2,"28784":7,"28785":8,"28786":7,"28787":9,"28788":1,"28789":7,"28790":5,"28791":5,"28792":6,"28793":6,"28794":9,"28795":8,"28796":6,"28797":5,"28798":5,"28799":9,"28800":10,"28801":6,"28802":4,"28803":7,"28804":10,"28805":5,"28806":9,"28807":7,"28808":7,"28809":9,"28810":8,"28811":7,"28812":9,"28813":9,"28814":9,"28815":2,"28816":2,"28817":5,"28818":5,"28819":1,"28820":4,"28821":4,"28822":7,"28823":8,"28824":7,"28825":4,"28826":8,"28827":9,"28828":2,"28829":7,"28830":4,"28831":5,"28832":7,"28833":7,"28834":8,"28835":2,"28836":7,"28837":9,"28838":7,"28839":7,"28840":10,"28841":9,"28842":9,"28843":9,"28844":2,"28845":9,"28846":7,"28847":4,"28848":10,"28849":6,"28850":2,"28851":8,"28852":8,"28853":7,"28854":9,"28855":10,"28856":7,"28857":9,"28858":9,"28859":9,"28860":8,"28861":8,"28862":7,"28863":8,"28864":2,"28865":9,"28866":5,"28867":8,"28868":6,"28869":9,"28870":3,"28871":2,"28872":7,"28873":9,"28874":8,"28875":2,"28876":5,"28877":2,"28878":4,"28879":10,"28880":1,"28881":3,"28882":10,"28883":2,"28884":8,"28885":2,"28886":9,"28887":9,"28888":2,"28889":7,"28890":2,"28891":4,"28892":1,"28893":8,"28894":6,"28895":2,"28896":5,"28897":7,"28898":8,"28899":6,"28900":6,"28901":9,"28902":3,"28903":5,"28904":7,"28905":7,"28906":10,"28907":9,"28908":7,"28909":9,"28910":7,"28911":9,"28912":1,"28913":4,"28914":5,"28915":8,"28916":5,"28917":7,"28918":1,"28919":2,"28920":4,"28921":8,"28922":8,"28923":7,"28924":5,"28925":8,"28926":9,"28927":9,"28928":3,"28929":3,"28930":7,"28931":10,"28932":9,"28933":10,"28934":8,"28935":5,"28936":3,"28937":8,"28938":8,"28939":7,"28940":1,"28941":7,"28942":9,"28943":7,"28944":5,"28945":2,"28946":9,"28947":8,"28948":6,"28949":6,"28950":1,"28951":2,"28952":8,"28953":9,"28954":3,"28955":5,"28956":7,"28957":9,"28958":7,"28959":5,"28960":7,"28961":2,"28962":9,"28963":2,"28964":4,"28965":9,"28966":5,"28967":5,"28968":9,"28969":3,"28970":7,"28971":2,"28972":2,"28973":7,"28974":5,"28975":7,"28976":5,"28977":8,"28978":9,"28979":7,"28980":7,"28981":5,"28982":7,"28983":8,"28984":7,"28985":4,"28986":7,"28987":4,"28988":9,"28989":9,"28990":7,"28991":2,"28992":3,"28993":9,"28994":9,"28995":1,"28996":4,"28997":7,"28998":9,"28999":8,"29000":1,"29001":10,"29002":8,"29003":2,"29004":7,"29005":5,"29006":7,"29007":2,"29008":9,"29009":5,"29010":9,"29011":7,"29012":7,"29013":8,"29014":10,"29015":8,"29016":4,"29017":9,"29018":4,"29019":3,"29020":4,"29021":2,"29022":8,"29023":6,"29024":5,"29025":8,"29026":9,"29027":10,"29028":3,"29029":10,"29030":10,"29031":7,"29032":2,"29033":2,"29034":7,"29035":5,"29036":2,"29037":1,"29038":2,"29039":6,"29040":8,"29041":3,"29042":1,"29043":7,"29044":7,"29045":2,"29046":7,"29047":8,"29048":8,"29049":7,"29050":2,"29051":8,"29052":9,"29053":6,"29054":10,"29055":8,"29056":7,"29057":8,"29058":8,"29059":9,"29060":9,"29061":7,"29062":2,"29063":7,"29064":1,"29065":5,"29066":2,"29067":9,"29068":8,"29069":6,"29070":8,"29071":10,"29072":9,"29073":8,"29074":9,"29075":5,"29076":2,"29077":8,"29078":7,"29079":5,"29080":9,"29081":2,"29082":6,"29083":3,"29084":8,"29085":8,"29086":8,"29087":7,"29088":9,"29089":9,"29090":2,"29091":9,"29092":9,"29093":7,"29094":7,"29095":3,"29096":10,"29097":9,"29098":7,"29099":6,"29100":7,"29101":7,"29102":3,"29103":3,"29104":2,"29105":8,"29106":7,"29107":5,"29108":7,"29109":8,"29110":7,"29111":10,"29112":10,"29113":8,"29114":8,"29115":1,"29116":3,"29117":2,"29118":2,"29119":7,"29120":8,"29121":7,"29122":7,"29123":4,"29124":8,"29125":8,"29126":8,"29127":9,"29128":5,"29129":8,"29130":7,"29131":3,"29132":2,"29133":2,"29134":8,"29135":7,"29136":2,"29137":5,"29138":4,"29139":5,"29140":7,"29141":4,"29142":9,"29143":8,"29144":9,"29145":9,"29146":3,"29147":10,"29148":10,"29149":5,"29150":2,"29151":10,"29152":8,"29153":5,"29154":6,"29155":5,"29156":7,"29157":7,"29158":1,"29159":8,"29160":7,"29161":7,"29162":8,"29163":9,"29164":5,"29165":7,"29166":9,"29167":2,"29168":2,"29169":4,"29170":7,"29171":8,"29172":7,"29173":10,"29174":8,"29175":8,"29176":5,"29177":8,"29178":9,"29179":5,"29180":6,"29181":7,"29182":5,"29183":1,"29184":9,"29185":6,"29186":8,"29187":5,"29188":5,"29189":2,"29190":10,"29191":6,"29192":8,"29193":9,"29194":9,"29195":2,"29196":5,"29197":2,"29198":7,"29199":3,"29200":9,"29201":7,"29202":4,"29203":9,"29204":8,"29205":8,"29206":3,"29207":8,"29208":8,"29209":2,"29210":7,"29211":5,"29212":9,"29213":8,"29214":9,"29215":8,"29216":6,"29217":9,"29218":7,"29219":5,"29220":8,"29221":8,"29222":5,"29223":4,"29224":2,"29225":7,"29226":9,"29227":7,"29228":9,"29229":2,"29230":8,"29231":7,"29232":1,"29233":9,"29234":9,"29235":6,"29236":8,"29237":8,"29238":5,"29239":8,"29240":10,"29241":9,"29242":8,"29243":8,"29244":2,"29245":2,"29246":8,"29247":9,"29248":7,"29249":5,"29250":7,"29251":7,"29252":10,"29253":9,"29254":9,"29255":7,"29256":2,"29257":9,"29258":7,"29259":7,"29260":4,"29261":8,"29262":8,"29263":10,"29264":4,"29265":5,"29266":7,"29267":8,"29268":8,"29269":2,"29270":9,"29271":6,"29272":9,"29273":1,"29274":7,"29275":4,"29276":5,"29277":10,"29278":1,"29279":7,"29280":8,"29281":7,"29282":5,"29283":8,"29284":9,"29285":7,"29286":7,"29287":7,"29288":7,"29289":2,"29290":3,"29291":8,"29292":2,"29293":2,"29294":2,"29295":8,"29296":2,"29297":8,"29298":5,"29299":7,"29300":2,"29301":2,"29302":1,"29303":9,"29304":9,"29305":8,"29306":6,"29307":5,"29308":8,"29309":1,"29310":4,"29311":8,"29312":4,"29313":4,"29314":3,"29315":8,"29316":3,"29317":8,"29318":7,"29319":7,"29320":10,"29321":2,"29322":7,"29323":5,"29324":9,"29325":4,"29326":9,"29327":7,"29328":7,"29329":2,"29330":3,"29331":8,"29332":8,"29333":5,"29334":5,"29335":7,"29336":8,"29337":10,"29338":9,"29339":5,"29340":2,"29341":2,"29342":3,"29343":8,"29344":4,"29345":7,"29346":8,"29347":8,"29348":10,"29349":7,"29350":7,"29351":10,"29352":9,"29353":7,"29354":1,"29355":3,"29356":9,"29357":7,"29358":10,"29359":5,"29360":7,"29361":7,"29362":2,"29363":1,"29364":1,"29365":7,"29366":9,"29367":7,"29368":6,"29369":6,"29370":2,"29371":8,"29372":9,"29373":7,"29374":4,"29375":5,"29376":8,"29377":9,"29378":2,"29379":4,"29380":6,"29381":7,"29382":9,"29383":2,"29384":8,"29385":2,"29386":9,"29387":5,"29388":7,"29389":9,"29390":8,"29391":7,"29392":8,"29393":5,"29394":7,"29395":7,"29396":9,"29397":8,"29398":9,"29399":7,"29400":7,"29401":7,"29402":9,"29403":3,"29404":8,"29405":7,"29406":1,"29407":7,"29408":7,"29409":8,"29410":9,"29411":1,"29412":9,"29413":7,"29414":9,"29415":8,"29416":5,"29417":7,"29418":8,"29419":6,"29420":8,"29421":8,"29422":7,"29423":9,"29424":9,"29425":7,"29426":8,"29427":4,"29428":9,"29429":4,"29430":4,"29431":7,"29432":2,"29433":7,"29434":9,"29435":10,"29436":5,"29437":7,"29438":7,"29439":8,"29440":8,"29441":7,"29442":9,"29443":7,"29444":5,"29445":9,"29446":9,"29447":8,"29448":9,"29449":8,"29450":9,"29451":5,"29452":5,"29453":3,"29454":10,"29455":2,"29456":2,"29457":8,"29458":8,"29459":9,"29460":6,"29461":7,"29462":8,"29463":7,"29464":7,"29465":9,"29466":7,"29467":3,"29468":9,"29469":9,"29470":8,"29471":7,"29472":6,"29473":8,"29474":8,"29475":4,"29476":8,"29477":7,"29478":9,"29479":5,"29480":7,"29481":2,"29482":7,"29483":9,"29484":8,"29485":4,"29486":10,"29487":5,"29488":8,"29489":4,"29490":9,"29491":9,"29492":6,"29493":7,"29494":7,"29495":8,"29496":8,"29497":8,"29498":8,"29499":10,"29500":2,"29501":2,"29502":7,"29503":7,"29504":10,"29505":6,"29506":7,"29507":6,"29508":4,"29509":8,"29510":4,"29511":6,"29512":1,"29513":9,"29514":5,"29515":2,"29516":10,"29517":8,"29518":1,"29519":9,"29520":8,"29521":3,"29522":4,"29523":2,"29524":7,"29525":7,"29526":4,"29527":2,"29528":7,"29529":10,"29530":3,"29531":7,"29532":3,"29533":7,"29534":2,"29535":8,"29536":4,"29537":5,"29538":7,"29539":5,"29540":10,"29541":7,"29542":7,"29543":8,"29544":6,"29545":5,"29546":5,"29547":6,"29548":8,"29549":4,"29550":9,"29551":8,"29552":9,"29553":9,"29554":5,"29555":8,"29556":3,"29557":9,"29558":8,"29559":5,"29560":9,"29561":9,"29562":5,"29563":10,"29564":8,"29565":9,"29566":8,"29567":5,"29568":10,"29569":8,"29570":8,"29571":8,"29572":5,"29573":5,"29574":2,"29575":8,"29576":7,"29577":7,"29578":4,"29579":7,"29580":7,"29581":8,"29582":7,"29583":8,"29584":4,"29585":8,"29586":2,"29587":8,"29588":9,"29589":9,"29590":5,"29591":10,"29592":8,"29593":9,"29594":7,"29595":7,"29596":9,"29597":7,"29598":1,"29599":2,"29600":9,"29601":5,"29602":5,"29603":9,"29604":8,"29605":8,"29606":2,"29607":9,"29608":9,"29609":7,"29610":6,"29611":9,"29612":8,"29613":1,"29614":5,"29615":4,"29616":1,"29617":5,"29618":8,"29619":5,"29620":8,"29621":1,"29622":8,"29623":8,"29624":8,"29625":4,"29626":9,"29627":2,"29628":5,"29629":8,"29630":9,"29631":6,"29632":4,"29633":5,"29634":8,"29635":8,"29636":3,"29637":8,"29638":8,"29639":7,"29640":8,"29641":7,"29642":10,"29643":7,"29644":8,"29645":7,"29646":7,"29647":3,"29648":10,"29649":8,"29650":7,"29651":1,"29652":6,"29653":10,"29654":3,"29655":2,"29656":5,"29657":8,"29658":10,"29659":1,"29660":10,"29661":9,"29662":8,"29663":5,"29664":3,"29665":10,"29666":4,"29667":3,"29668":9,"29669":10,"29670":5,"29671":7,"29672":8,"29673":5,"29674":2,"29675":9,"29676":8,"29677":9,"29678":8,"29679":2,"29680":7,"29681":7,"29682":8,"29683":7,"29684":5,"29685":5,"29686":8,"29687":8,"29688":8,"29689":7,"29690":2,"29691":4,"29692":2,"29693":7,"29694":5,"29695":6,"29696":7,"29697":8,"29698":4,"29699":8,"29700":2,"29701":2,"29702":2,"29703":7,"29704":5,"29705":7,"29706":1,"29707":4,"29708":9,"29709":9,"29710":9,"29711":10,"29712":2,"29713":9,"29714":3,"29715":9,"29716":9,"29717":6,"29718":7,"29719":1,"29720":10,"29721":8,"29722":5,"29723":9,"29724":8,"29725":4,"29726":10,"29727":1,"29728":10,"29729":8,"29730":3,"29731":7,"29732":5,"29733":5,"29734":8,"29735":4,"29736":4,"29737":8,"29738":9,"29739":7,"29740":7,"29741":6,"29742":5,"29743":10,"29744":7,"29745":9,"29746":8,"29747":10,"29748":7,"29749":7,"29750":9,"29751":3,"29752":5,"29753":8,"29754":5,"29755":3,"29756":2,"29757":7,"29758":2,"29759":9,"29760":5,"29761":5,"29762":4,"29763":1,"29764":2,"29765":9,"29766":7,"29767":7,"29768":8,"29769":9,"29770":9,"29771":8,"29772":8,"29773":9,"29774":5,"29775":10,"29776":7,"29777":9,"29778":8,"29779":8,"29780":8,"29781":8,"29782":5,"29783":9,"29784":8,"29785":8,"29786":3,"29787":9,"29788":6,"29789":8,"29790":8,"29791":4,"29792":2,"29793":7,"29794":8,"29795":8,"29796":1,"29797":8,"29798":4,"29799":1,"29800":8,"29801":5,"29802":10,"29803":10,"29804":10,"29805":5,"29806":6,"29807":9,"29808":8,"29809":7,"29810":5,"29811":2,"29812":8,"29813":8,"29814":9,"29815":8,"29816":7,"29817":8,"29818":9,"29819":2,"29820":9,"29821":2,"29822":4,"29823":8,"29824":3,"29825":6,"29826":9,"29827":4,"29828":8,"29829":9,"29830":5,"29831":5,"29832":7,"29833":1,"29834":7,"29835":8,"29836":7,"29837":8,"29838":7,"29839":10,"29840":3,"29841":5,"29842":5,"29843":1,"29844":8,"29845":9,"29846":10,"29847":8,"29848":6,"29849":1,"29850":2,"29851":4,"29852":9,"29853":5,"29854":2,"29855":8,"29856":7,"29857":2,"29858":8,"29859":8,"29860":10,"29861":9,"29862":8,"29863":8,"29864":7,"29865":10,"29866":3,"29867":10,"29868":5,"29869":8,"29870":8,"29871":10,"29872":7,"29873":7,"29874":6,"29875":7,"29876":6,"29877":8,"29878":7,"29879":8,"29880":7,"29881":4,"29882":7,"29883":7,"29884":1,"29885":8,"29886":3,"29887":9,"29888":7,"29889":7,"29890":8,"29891":7,"29892":5,"29893":9,"29894":2,"29895":8,"29896":2,"29897":8,"29898":9,"29899":7,"29900":5,"29901":7,"29902":1,"29903":5,"29904":10,"29905":7,"29906":7,"29907":7,"29908":9,"29909":1,"29910":3,"29911":7,"29912":9,"29913":8,"29914":8,"29915":2,"29916":5,"29917":8,"29918":8,"29919":7,"29920":5,"29921":1,"29922":1,"29923":10,"29924":10,"29925":4,"29926":7,"29927":9,"29928":8,"29929":7,"29930":10,"29931":2,"29932":5,"29933":8,"29934":9,"29935":2,"29936":7,"29937":7,"29938":7,"29939":9,"29940":7,"29941":5,"29942":7,"29943":3,"29944":10,"29945":4,"29946":4,"29947":9,"29948":1,"29949":8,"29950":2,"29951":8,"29952":10,"29953":2,"29954":5,"29955":10,"29956":9,"29957":9,"29958":3,"29959":8,"29960":5,"29961":9,"29962":7,"29963":10,"29964":2,"29965":7,"29966":9,"29967":5,"29968":8,"29969":7,"29970":7,"29971":8,"29972":8,"29973":9,"29974":9,"29975":3,"29976":9,"29977":7,"29978":8,"29979":7,"29980":5,"29981":9,"29982":6,"29983":8,"29984":1,"29985":6,"29986":4,"29987":4,"29988":8,"29989":7,"29990":7,"29991":3,"29992":7,"29993":2,"29994":5,"29995":2,"29996":8,"29997":10,"29998":5,"29999":5,"30000":8,"30001":9,"30002":5,"30003":9,"30004":3,"30005":8,"30006":4,"30007":3,"30008":9,"30009":7,"30010":10,"30011":8,"30012":10,"30013":8,"30014":9,"30015":9,"30016":7,"30017":3,"30018":8,"30019":7,"30020":3,"30021":2,"30022":4,"30023":8,"30024":7,"30025":7,"30026":2,"30027":9,"30028":7,"30029":7,"30030":9,"30031":10,"30032":6,"30033":10,"30034":7,"30035":1,"30036":1,"30037":7,"30038":7,"30039":5,"30040":6,"30041":8,"30042":6,"30043":8,"30044":7,"30045":8,"30046":2,"30047":7,"30048":5,"30049":1,"30050":8,"30051":2,"30052":7,"30053":9,"30054":6,"30055":1,"30056":5,"30057":2,"30058":2,"30059":7,"30060":4,"30061":7,"30062":8,"30063":10,"30064":9,"30065":7,"30066":7,"30067":9,"30068":8,"30069":2,"30070":5,"30071":1,"30072":2,"30073":7,"30074":3,"30075":2,"30076":7,"30077":8,"30078":1,"30079":7,"30080":8,"30081":6,"30082":7,"30083":6,"30084":7,"30085":6,"30086":9,"30087":8,"30088":5,"30089":5,"30090":2,"30091":5,"30092":9,"30093":2,"30094":7,"30095":7,"30096":2,"30097":3,"30098":5,"30099":8,"30100":8,"30101":7,"30102":5,"30103":7,"30104":5,"30105":2,"30106":2,"30107":8,"30108":8,"30109":9,"30110":9,"30111":5,"30112":2,"30113":8,"30114":10,"30115":8,"30116":9,"30117":7,"30118":4,"30119":3,"30120":1,"30121":5,"30122":1,"30123":4,"30124":7,"30125":8,"30126":4,"30127":9,"30128":3,"30129":9,"30130":6,"30131":3,"30132":9,"30133":5,"30134":5,"30135":8,"30136":6,"30137":9,"30138":6,"30139":3,"30140":7,"30141":7,"30142":7,"30143":6,"30144":5,"30145":2,"30146":4,"30147":7,"30148":2,"30149":8,"30150":5,"30151":8,"30152":8,"30153":4,"30154":3,"30155":7,"30156":4,"30157":8,"30158":9,"30159":7,"30160":9,"30161":8,"30162":8,"30163":9,"30164":9,"30165":9,"30166":8,"30167":3,"30168":2,"30169":1,"30170":8,"30171":1,"30172":2,"30173":9,"30174":5,"30175":5,"30176":7,"30177":9,"30178":10,"30179":4,"30180":2,"30181":2,"30182":10,"30183":5,"30184":8,"30185":7,"30186":2,"30187":7,"30188":2,"30189":9,"30190":8,"30191":2,"30192":9,"30193":9,"30194":10,"30195":6,"30196":8,"30197":2,"30198":8,"30199":4,"30200":6,"30201":8,"30202":7,"30203":9,"30204":7,"30205":1,"30206":10,"30207":8,"30208":5,"30209":7,"30210":7,"30211":9,"30212":5,"30213":8,"30214":5,"30215":2,"30216":4,"30217":7,"30218":2,"30219":5,"30220":10,"30221":9,"30222":8,"30223":10,"30224":9,"30225":9,"30226":7,"30227":7,"30228":2,"30229":6,"30230":6,"30231":3,"30232":1,"30233":6,"30234":8,"30235":7,"30236":8,"30237":9,"30238":10,"30239":7,"30240":9,"30241":2,"30242":2,"30243":7,"30244":9,"30245":5,"30246":5,"30247":5,"30248":4,"30249":10,"30250":1,"30251":8,"30252":10,"30253":7,"30254":8,"30255":8,"30256":10,"30257":7,"30258":5,"30259":8,"30260":6,"30261":7,"30262":7,"30263":5,"30264":8,"30265":3,"30266":6,"30267":10,"30268":5,"30269":6,"30270":8,"30271":4,"30272":5,"30273":1,"30274":8,"30275":5,"30276":1,"30277":8,"30278":9,"30279":6,"30280":10,"30281":3,"30282":3,"30283":8,"30284":5,"30285":7,"30286":7,"30287":2,"30288":7,"30289":7,"30290":8,"30291":9,"30292":7,"30293":1,"30294":9,"30295":8,"30296":8,"30297":8,"30298":9,"30299":9,"30300":7,"30301":8,"30302":10,"30303":3,"30304":7,"30305":9,"30306":5,"30307":7,"30308":7,"30309":2,"30310":8,"30311":7,"30312":8,"30313":7,"30314":7,"30315":2,"30316":8,"30317":8,"30318":7,"30319":3,"30320":7,"30321":4,"30322":7,"30323":9,"30324":4,"30325":7,"30326":5,"30327":2,"30328":7,"30329":6,"30330":8,"30331":8,"30332":5,"30333":10,"30334":9,"30335":7,"30336":3,"30337":8,"30338":5,"30339":7,"30340":9,"30341":7,"30342":9,"30343":9,"30344":9,"30345":2,"30346":2,"30347":7,"30348":9,"30349":3,"30350":9,"30351":2,"30352":4,"30353":9,"30354":8,"30355":7,"30356":9,"30357":8,"30358":3,"30359":9,"30360":9,"30361":8,"30362":2,"30363":2,"30364":5,"30365":9,"30366":9,"30367":9,"30368":2,"30369":2,"30370":1,"30371":3,"30372":8,"30373":8,"30374":6,"30375":8,"30376":7,"30377":8,"30378":10,"30379":9,"30380":7,"30381":8,"30382":10,"30383":1,"30384":8,"30385":5,"30386":9,"30387":5,"30388":7,"30389":10,"30390":6,"30391":10,"30392":7,"30393":9,"30394":9,"30395":2,"30396":2,"30397":7,"30398":5,"30399":2,"30400":8,"30401":2,"30402":5,"30403":4,"30404":7,"30405":2,"30406":9,"30407":7,"30408":8,"30409":2,"30410":7,"30411":6,"30412":4,"30413":4,"30414":7,"30415":9,"30416":5,"30417":7,"30418":7,"30419":3,"30420":5,"30421":6,"30422":6,"30423":9,"30424":5,"30425":2,"30426":8,"30427":8,"30428":8,"30429":7,"30430":8,"30431":7,"30432":2,"30433":8,"30434":5,"30435":5,"30436":6,"30437":7,"30438":5,"30439":8,"30440":7,"30441":8,"30442":6,"30443":7,"30444":5,"30445":2,"30446":8,"30447":7,"30448":7,"30449":5,"30450":3,"30451":9,"30452":5,"30453":7,"30454":8,"30455":8,"30456":7,"30457":9,"30458":8,"30459":8,"30460":3,"30461":8,"30462":8,"30463":2,"30464":9,"30465":8,"30466":4,"30467":2,"30468":8,"30469":4,"30470":8,"30471":10,"30472":8,"30473":7,"30474":7,"30475":2,"30476":5,"30477":1,"30478":2,"30479":9,"30480":9,"30481":9,"30482":8,"30483":5,"30484":7,"30485":7,"30486":2,"30487":9,"30488":9,"30489":9,"30490":2,"30491":5,"30492":6,"30493":7,"30494":2,"30495":8,"30496":5,"30497":7,"30498":3,"30499":7,"30500":8,"30501":4,"30502":8,"30503":10,"30504":8,"30505":8,"30506":3,"30507":2,"30508":7,"30509":7,"30510":10,"30511":7,"30512":7,"30513":2,"30514":2,"30515":8,"30516":2,"30517":3,"30518":5,"30519":5,"30520":8,"30521":7,"30522":7,"30523":9,"30524":2,"30525":5,"30526":9,"30527":8,"30528":8,"30529":2,"30530":6,"30531":7,"30532":5,"30533":2,"30534":9,"30535":9,"30536":5,"30537":7,"30538":7,"30539":10,"30540":9,"30541":7,"30542":5,"30543":7,"30544":2,"30545":3,"30546":8,"30547":10,"30548":2,"30549":7,"30550":3,"30551":2,"30552":9,"30553":7,"30554":9,"30555":10,"30556":8,"30557":9,"30558":1,"30559":8,"30560":3,"30561":8,"30562":9,"30563":8,"30564":9,"30565":2,"30566":8,"30567":9,"30568":5,"30569":7,"30570":6,"30571":2,"30572":8,"30573":3,"30574":8,"30575":8,"30576":5,"30577":4,"30578":7,"30579":9,"30580":6,"30581":4,"30582":5,"30583":8,"30584":7,"30585":7,"30586":8,"30587":7,"30588":5,"30589":9,"30590":8,"30591":7,"30592":5,"30593":7,"30594":9,"30595":10,"30596":7,"30597":4,"30598":8,"30599":7,"30600":7,"30601":7,"30602":7,"30603":2,"30604":9,"30605":8,"30606":8,"30607":9,"30608":8,"30609":8,"30610":5,"30611":5,"30612":4,"30613":1,"30614":5,"30615":10,"30616":8,"30617":10,"30618":7,"30619":9,"30620":10,"30621":10,"30622":2,"30623":2,"30624":4,"30625":7,"30626":8,"30627":9,"30628":5,"30629":8,"30630":10,"30631":7,"30632":8,"30633":5,"30634":2,"30635":9,"30636":2,"30637":10,"30638":7,"30639":1,"30640":10,"30641":8,"30642":7,"30643":4,"30644":6,"30645":7,"30646":9,"30647":8,"30648":7,"30649":2,"30650":9,"30651":5,"30652":2,"30653":9,"30654":9,"30655":5,"30656":7,"30657":7,"30658":8,"30659":2,"30660":7,"30661":9,"30662":1,"30663":4,"30664":10,"30665":7,"30666":9,"30667":7,"30668":7,"30669":9,"30670":3,"30671":2,"30672":9,"30673":7,"30674":2,"30675":8,"30676":6,"30677":10,"30678":6,"30679":8,"30680":7,"30681":8,"30682":8,"30683":7,"30684":7,"30685":9,"30686":8,"30687":9,"30688":7,"30689":10,"30690":5,"30691":9,"30692":1,"30693":6,"30694":8,"30695":7,"30696":5,"30697":2,"30698":9,"30699":1,"30700":1,"30701":5,"30702":2,"30703":10,"30704":5,"30705":7,"30706":5,"30707":8,"30708":7,"30709":6,"30710":8,"30711":8,"30712":5,"30713":7,"30714":9,"30715":7,"30716":9,"30717":6,"30718":7,"30719":5,"30720":8,"30721":9,"30722":10,"30723":1,"30724":8,"30725":8,"30726":8,"30727":4,"30728":9,"30729":7,"30730":8,"30731":2,"30732":1,"30733":8,"30734":4,"30735":7,"30736":2,"30737":8,"30738":6,"30739":7,"30740":10,"30741":5,"30742":3,"30743":5,"30744":2,"30745":7,"30746":8,"30747":8,"30748":8,"30749":9,"30750":9,"30751":10,"30752":9,"30753":8,"30754":8,"30755":6,"30756":2,"30757":1,"30758":8,"30759":7,"30760":8,"30761":2,"30762":10,"30763":7,"30764":9,"30765":4,"30766":5,"30767":9,"30768":9,"30769":5,"30770":9,"30771":9,"30772":9,"30773":5,"30774":9,"30775":4,"30776":7,"30777":9,"30778":3,"30779":7,"30780":5,"30781":2,"30782":2,"30783":8,"30784":9,"30785":7,"30786":5,"30787":9,"30788":8,"30789":9,"30790":10,"30791":8,"30792":4,"30793":2,"30794":1,"30795":7,"30796":7,"30797":8,"30798":7,"30799":2,"30800":6,"30801":1,"30802":9,"30803":8,"30804":4,"30805":6,"30806":7,"30807":2,"30808":9,"30809":8,"30810":6,"30811":2,"30812":4,"30813":2,"30814":8,"30815":7,"30816":8,"30817":8,"30818":7,"30819":1,"30820":9,"30821":8,"30822":9,"30823":5,"30824":8,"30825":8,"30826":9,"30827":8,"30828":7,"30829":2,"30830":7,"30831":8,"30832":7,"30833":9,"30834":8,"30835":7,"30836":5,"30837":2,"30838":9,"30839":9,"30840":10,"30841":2,"30842":2,"30843":8,"30844":4,"30845":7,"30846":1,"30847":9,"30848":5,"30849":8,"30850":8,"30851":7,"30852":5,"30853":8,"30854":5,"30855":9,"30856":9,"30857":2,"30858":8,"30859":3,"30860":8,"30861":7,"30862":8,"30863":8,"30864":2,"30865":9,"30866":8,"30867":5,"30868":1,"30869":8,"30870":4,"30871":4,"30872":8,"30873":9,"30874":9,"30875":4,"30876":8,"30877":1,"30878":9,"30879":4,"30880":8,"30881":1,"30882":2,"30883":9,"30884":9,"30885":8,"30886":9,"30887":9,"30888":8,"30889":2,"30890":6,"30891":10,"30892":8,"30893":3,"30894":4,"30895":9,"30896":5,"30897":3,"30898":7,"30899":5,"30900":3,"30901":8,"30902":2,"30903":1,"30904":9,"30905":8,"30906":8,"30907":4,"30908":4,"30909":8,"30910":2,"30911":2,"30912":9,"30913":3,"30914":3,"30915":8,"30916":10,"30917":8,"30918":9,"30919":8,"30920":4,"30921":7,"30922":8,"30923":1,"30924":3,"30925":8,"30926":2,"30927":7,"30928":8,"30929":7,"30930":4,"30931":7,"30932":1,"30933":5,"30934":6,"30935":8,"30936":9,"30937":5,"30938":5,"30939":7,"30940":1,"30941":6,"30942":8,"30943":5,"30944":1,"30945":8,"30946":2,"30947":1,"30948":2,"30949":3,"30950":8,"30951":9,"30952":8,"30953":9,"30954":2,"30955":2,"30956":7,"30957":10,"30958":7,"30959":3,"30960":7,"30961":7,"30962":2,"30963":1,"30964":8,"30965":7,"30966":8,"30967":8,"30968":9,"30969":6,"30970":3,"30971":3,"30972":5,"30973":7,"30974":7,"30975":8,"30976":1,"30977":7,"30978":1,"30979":4,"30980":8,"30981":8,"30982":9,"30983":8,"30984":10,"30985":9,"30986":9,"30987":9,"30988":8,"30989":3,"30990":8,"30991":2,"30992":9,"30993":3,"30994":9,"30995":2,"30996":9,"30997":5,"30998":6,"30999":7,"31000":7,"31001":2,"31002":5,"31003":8,"31004":2,"31005":8,"31006":9,"31007":2,"31008":8,"31009":7,"31010":8,"31011":7,"31012":9,"31013":8,"31014":7,"31015":5,"31016":7,"31017":2,"31018":2,"31019":9,"31020":8,"31021":5,"31022":8,"31023":5,"31024":10,"31025":3,"31026":7,"31027":1,"31028":7,"31029":8,"31030":9,"31031":7,"31032":1,"31033":8,"31034":5,"31035":9,"31036":7,"31037":8,"31038":9,"31039":1,"31040":7,"31041":7,"31042":10,"31043":9,"31044":7,"31045":5,"31046":9,"31047":6,"31048":10,"31049":8,"31050":5,"31051":3,"31052":5,"31053":9,"31054":7,"31055":6,"31056":7,"31057":7,"31058":9,"31059":10,"31060":1,"31061":7,"31062":5,"31063":4,"31064":2,"31065":5,"31066":2,"31067":8,"31068":8,"31069":7,"31070":7,"31071":8,"31072":9,"31073":7,"31074":2,"31075":9,"31076":2,"31077":10,"31078":8,"31079":8,"31080":9,"31081":7,"31082":8,"31083":9,"31084":8,"31085":8,"31086":5,"31087":5,"31088":9,"31089":8,"31090":3,"31091":7,"31092":9,"31093":2,"31094":5,"31095":9,"31096":8,"31097":8,"31098":7,"31099":9,"31100":8,"31101":3,"31102":7,"31103":7,"31104":8,"31105":2,"31106":7,"31107":5,"31108":8,"31109":7,"31110":8,"31111":8,"31112":10,"31113":3,"31114":9,"31115":5,"31116":5,"31117":5,"31118":7,"31119":8,"31120":3,"31121":9,"31122":7,"31123":8,"31124":8,"31125":2,"31126":5,"31127":9,"31128":1,"31129":2,"31130":7,"31131":8,"31132":7,"31133":7,"31134":7,"31135":5,"31136":7,"31137":2,"31138":8,"31139":7,"31140":2,"31141":6,"31142":8,"31143":9,"31144":8,"31145":9,"31146":3,"31147":7,"31148":5,"31149":6,"31150":8,"31151":8,"31152":2,"31153":1,"31154":7,"31155":1,"31156":9,"31157":7,"31158":6,"31159":4,"31160":9,"31161":2,"31162":8,"31163":5,"31164":4,"31165":7,"31166":7,"31167":9,"31168":7,"31169":9,"31170":8,"31171":5,"31172":7,"31173":8,"31174":7,"31175":6,"31176":7,"31177":9,"31178":9,"31179":4,"31180":3,"31181":5,"31182":7,"31183":5,"31184":10,"31185":9,"31186":7,"31187":5,"31188":7,"31189":5,"31190":10,"31191":5,"31192":1,"31193":5,"31194":1,"31195":5,"31196":7,"31197":6,"31198":7,"31199":10,"31200":3,"31201":2,"31202":8,"31203":9,"31204":9,"31205":3,"31206":4,"31207":7,"31208":4,"31209":5,"31210":7,"31211":2,"31212":9,"31213":7,"31214":2,"31215":6,"31216":4,"31217":2,"31218":8,"31219":8,"31220":9,"31221":10,"31222":4,"31223":9,"31224":9,"31225":8,"31226":4,"31227":7,"31228":7,"31229":5,"31230":9,"31231":9,"31232":7,"31233":9,"31234":7,"31235":4,"31236":9,"31237":2,"31238":10,"31239":7,"31240":7,"31241":2,"31242":8,"31243":9,"31244":7,"31245":8,"31246":5,"31247":7,"31248":4,"31249":5,"31250":4,"31251":5,"31252":7,"31253":5,"31254":1,"31255":8,"31256":2,"31257":7,"31258":1,"31259":6,"31260":8,"31261":2,"31262":9,"31263":5,"31264":2,"31265":8,"31266":4,"31267":5,"31268":9,"31269":7,"31270":10,"31271":5,"31272":2,"31273":7,"31274":9,"31275":2,"31276":5,"31277":2,"31278":7,"31279":1,"31280":7,"31281":7,"31282":10,"31283":9,"31284":1,"31285":6,"31286":2,"31287":8,"31288":8,"31289":8,"31290":3,"31291":3,"31292":8,"31293":8,"31294":9,"31295":8,"31296":8,"31297":8,"31298":2,"31299":6,"31300":6,"31301":8,"31302":6,"31303":7,"31304":5,"31305":6,"31306":1,"31307":10,"31308":2,"31309":5,"31310":8,"31311":5,"31312":7,"31313":7,"31314":7,"31315":6,"31316":8,"31317":7,"31318":8,"31319":5,"31320":4,"31321":1,"31322":8,"31323":3,"31324":1,"31325":7,"31326":7,"31327":7,"31328":10,"31329":8,"31330":1,"31331":2,"31332":9,"31333":9,"31334":8,"31335":9,"31336":3,"31337":8,"31338":7,"31339":5,"31340":9,"31341":5,"31342":4,"31343":5,"31344":5,"31345":8,"31346":5,"31347":6,"31348":7,"31349":8,"31350":8,"31351":9,"31352":8,"31353":7,"31354":7,"31355":7,"31356":10,"31357":3,"31358":10,"31359":9,"31360":5,"31361":2,"31362":7,"31363":8,"31364":5,"31365":5,"31366":8,"31367":7,"31368":7,"31369":2,"31370":8,"31371":8,"31372":4,"31373":6,"31374":5,"31375":8,"31376":6,"31377":3,"31378":5,"31379":5,"31380":8,"31381":7,"31382":5,"31383":1,"31384":9,"31385":7,"31386":7,"31387":2,"31388":8,"31389":8,"31390":9,"31391":7,"31392":2,"31393":2,"31394":7,"31395":4,"31396":9,"31397":7,"31398":8,"31399":1,"31400":4,"31401":6,"31402":9,"31403":5,"31404":8,"31405":5,"31406":5,"31407":9,"31408":8,"31409":7,"31410":9,"31411":8,"31412":8,"31413":7,"31414":5,"31415":2,"31416":8,"31417":7,"31418":1,"31419":5,"31420":1,"31421":7,"31422":5,"31423":8,"31424":6,"31425":4,"31426":1,"31427":6,"31428":9,"31429":1,"31430":9,"31431":9,"31432":7,"31433":2,"31434":7,"31435":7,"31436":5,"31437":7,"31438":8,"31439":9,"31440":8,"31441":3,"31442":8,"31443":7,"31444":8,"31445":9,"31446":6,"31447":5,"31448":9,"31449":7,"31450":5,"31451":3,"31452":5,"31453":7,"31454":7,"31455":8,"31456":5,"31457":8,"31458":9,"31459":2,"31460":7,"31461":8,"31462":7,"31463":8,"31464":10,"31465":8,"31466":7,"31467":7,"31468":2,"31469":7,"31470":7,"31471":5,"31472":8,"31473":9,"31474":7,"31475":9,"31476":8,"31477":8,"31478":10,"31479":3,"31480":9,"31481":9,"31482":9,"31483":9,"31484":8,"31485":1,"31486":5,"31487":9,"31488":1,"31489":9,"31490":1,"31491":2,"31492":6,"31493":8,"31494":5,"31495":7,"31496":1,"31497":9,"31498":8,"31499":8,"31500":8,"31501":7,"31502":2,"31503":2,"31504":7,"31505":7,"31506":8,"31507":5,"31508":8,"31509":2,"31510":2,"31511":2,"31512":5,"31513":9,"31514":7,"31515":7,"31516":7,"31517":3,"31518":1,"31519":9,"31520":9,"31521":8,"31522":5,"31523":9,"31524":7,"31525":2,"31526":8,"31527":4,"31528":5,"31529":10,"31530":8,"31531":7,"31532":6,"31533":7,"31534":9,"31535":9,"31536":8,"31537":10,"31538":8,"31539":7,"31540":7,"31541":9,"31542":6,"31543":7,"31544":3,"31545":5,"31546":7,"31547":4,"31548":2,"31549":9,"31550":8,"31551":1,"31552":10,"31553":9,"31554":9,"31555":9,"31556":9,"31557":1,"31558":7,"31559":2,"31560":9,"31561":1,"31562":9,"31563":6,"31564":8,"31565":8,"31566":5,"31567":2,"31568":2,"31569":10,"31570":8,"31571":7,"31572":7,"31573":9,"31574":7,"31575":2,"31576":6,"31577":8,"31578":9,"31579":3,"31580":3,"31581":5,"31582":9,"31583":7,"31584":8,"31585":7,"31586":6,"31587":5,"31588":5,"31589":7,"31590":8,"31591":2,"31592":4,"31593":5,"31594":2,"31595":5,"31596":1,"31597":3,"31598":9,"31599":8,"31600":8,"31601":10,"31602":8,"31603":5,"31604":10,"31605":4,"31606":2,"31607":7,"31608":7,"31609":3,"31610":5,"31611":8,"31612":8,"31613":8,"31614":5,"31615":8,"31616":10,"31617":7,"31618":5,"31619":8,"31620":3,"31621":7,"31622":7,"31623":7,"31624":8,"31625":7,"31626":8,"31627":10,"31628":9,"31629":4,"31630":3,"31631":9,"31632":7,"31633":9,"31634":5,"31635":8,"31636":4,"31637":2,"31638":2,"31639":7,"31640":6,"31641":7,"31642":6,"31643":4,"31644":10,"31645":8,"31646":1,"31647":2,"31648":10,"31649":6,"31650":2,"31651":8,"31652":3,"31653":8,"31654":8,"31655":2,"31656":6,"31657":7,"31658":7,"31659":7,"31660":9,"31661":8,"31662":7,"31663":10,"31664":7,"31665":9,"31666":7,"31667":5,"31668":7,"31669":7,"31670":4,"31671":6,"31672":8,"31673":8,"31674":7,"31675":3,"31676":7,"31677":1,"31678":6,"31679":6,"31680":9,"31681":8,"31682":9,"31683":9,"31684":2,"31685":8,"31686":5,"31687":9,"31688":7,"31689":8,"31690":7,"31691":7,"31692":1,"31693":7,"31694":2,"31695":6,"31696":1,"31697":7,"31698":8,"31699":2,"31700":10,"31701":7,"31702":9,"31703":7,"31704":1,"31705":1,"31706":5,"31707":9,"31708":5,"31709":5,"31710":4,"31711":4,"31712":9,"31713":8,"31714":8,"31715":5,"31716":4,"31717":8,"31718":9,"31719":8,"31720":5,"31721":7,"31722":8,"31723":3,"31724":7,"31725":7,"31726":2,"31727":5,"31728":3,"31729":8,"31730":9,"31731":8,"31732":1,"31733":7,"31734":6,"31735":10,"31736":7,"31737":10,"31738":8,"31739":5,"31740":9,"31741":7,"31742":5,"31743":7,"31744":1,"31745":8,"31746":2,"31747":5,"31748":6,"31749":8,"31750":7,"31751":8,"31752":5,"31753":7,"31754":4,"31755":2,"31756":5,"31757":3,"31758":7,"31759":5,"31760":9,"31761":8,"31762":8,"31763":5,"31764":8,"31765":5,"31766":7,"31767":5,"31768":3,"31769":5,"31770":5,"31771":6,"31772":8,"31773":3,"31774":3,"31775":3,"31776":7,"31777":7,"31778":7,"31779":8,"31780":8,"31781":9,"31782":9,"31783":8,"31784":10,"31785":2,"31786":7,"31787":3,"31788":7,"31789":3,"31790":9,"31791":7,"31792":8,"31793":8,"31794":9,"31795":9,"31796":10,"31797":8,"31798":5,"31799":5,"31800":8,"31801":1,"31802":4,"31803":8,"31804":7,"31805":8,"31806":2,"31807":8,"31808":9,"31809":7,"31810":7,"31811":7,"31812":5,"31813":8,"31814":3,"31815":8,"31816":7,"31817":3,"31818":9,"31819":10,"31820":4,"31821":3,"31822":8,"31823":5,"31824":9,"31825":2,"31826":7,"31827":5,"31828":8,"31829":9,"31830":8,"31831":2,"31832":8,"31833":2,"31834":5,"31835":7,"31836":8,"31837":4,"31838":9,"31839":8,"31840":7,"31841":7,"31842":7,"31843":9,"31844":4,"31845":5,"31846":5,"31847":9,"31848":9,"31849":2,"31850":8,"31851":5,"31852":2,"31853":8,"31854":6,"31855":9,"31856":8,"31857":9,"31858":5,"31859":4,"31860":8,"31861":7,"31862":2,"31863":10,"31864":8,"31865":9,"31866":9,"31867":8,"31868":2,"31869":8,"31870":8,"31871":2,"31872":5,"31873":7,"31874":6,"31875":8,"31876":6,"31877":2,"31878":8,"31879":8,"31880":8,"31881":8,"31882":10,"31883":9,"31884":2,"31885":6,"31886":6,"31887":1,"31888":7,"31889":10,"31890":9,"31891":8,"31892":1,"31893":4,"31894":4,"31895":8,"31896":8,"31897":7,"31898":9,"31899":5,"31900":9,"31901":5,"31902":8,"31903":5,"31904":5,"31905":4,"31906":7,"31907":10,"31908":8,"31909":8,"31910":6,"31911":6,"31912":4,"31913":9,"31914":6,"31915":7,"31916":2,"31917":9,"31918":8,"31919":7,"31920":1,"31921":10,"31922":8,"31923":9,"31924":9,"31925":9,"31926":4,"31927":2,"31928":5,"31929":8,"31930":2,"31931":7,"31932":9,"31933":9,"31934":3,"31935":6,"31936":9,"31937":9,"31938":9,"31939":6,"31940":7,"31941":10,"31942":5,"31943":7,"31944":7,"31945":8,"31946":8,"31947":8,"31948":4,"31949":8,"31950":2,"31951":2,"31952":7,"31953":7,"31954":8,"31955":7,"31956":7,"31957":6,"31958":9,"31959":2,"31960":4,"31961":6,"31962":7,"31963":8,"31964":9,"31965":2,"31966":6,"31967":5,"31968":8,"31969":7,"31970":7,"31971":9,"31972":8,"31973":2,"31974":7,"31975":2,"31976":9,"31977":4,"31978":1,"31979":8,"31980":7,"31981":10,"31982":6,"31983":7,"31984":2,"31985":4,"31986":7,"31987":1,"31988":3,"31989":10,"31990":9,"31991":1,"31992":8,"31993":3,"31994":10,"31995":4,"31996":10,"31997":9,"31998":2,"31999":9,"32000":1,"32001":7,"32002":7,"32003":3,"32004":7,"32005":7,"32006":10,"32007":7,"32008":10,"32009":5,"32010":7,"32011":9,"32012":8,"32013":10,"32014":9,"32015":8,"32016":7,"32017":7,"32018":8,"32019":4,"32020":8,"32021":8,"32022":9,"32023":5,"32024":2,"32025":9,"32026":2,"32027":9,"32028":1,"32029":9,"32030":10,"32031":9,"32032":8,"32033":3,"32034":8,"32035":5,"32036":9,"32037":8,"32038":7,"32039":9,"32040":10,"32041":3,"32042":8,"32043":2,"32044":9,"32045":4,"32046":8,"32047":7,"32048":6,"32049":8,"32050":8,"32051":8,"32052":8,"32053":9,"32054":9,"32055":8,"32056":1,"32057":7,"32058":7,"32059":2,"32060":5,"32061":8,"32062":6,"32063":2,"32064":10,"32065":8,"32066":1,"32067":7,"32068":9,"32069":7,"32070":9,"32071":7,"32072":9,"32073":1,"32074":5,"32075":8,"32076":8,"32077":2,"32078":6,"32079":10,"32080":1,"32081":2,"32082":10,"32083":9,"32084":7,"32085":9,"32086":3,"32087":8,"32088":10,"32089":9,"32090":8,"32091":10,"32092":7,"32093":5,"32094":1,"32095":5,"32096":9,"32097":8,"32098":10,"32099":8,"32100":8,"32101":7,"32102":8,"32103":7,"32104":4,"32105":9,"32106":7,"32107":6,"32108":8,"32109":10,"32110":9,"32111":6,"32112":8,"32113":9,"32114":7,"32115":3,"32116":5,"32117":8,"32118":1,"32119":2,"32120":8,"32121":8,"32122":8,"32123":3,"32124":8,"32125":7,"32126":2,"32127":3,"32128":8,"32129":9,"32130":8,"32131":9,"32132":10,"32133":8,"32134":3,"32135":10,"32136":7,"32137":8,"32138":5,"32139":6,"32140":1,"32141":5,"32142":8,"32143":9,"32144":8,"32145":9,"32146":8,"32147":7,"32148":1,"32149":9,"32150":6,"32151":8,"32152":4,"32153":7,"32154":5,"32155":8,"32156":9,"32157":8,"32158":7,"32159":7,"32160":5,"32161":10,"32162":7,"32163":7,"32164":8,"32165":9,"32166":6,"32167":5,"32168":8,"32169":6,"32170":8,"32171":6,"32172":9,"32173":7,"32174":8,"32175":3,"32176":3,"32177":9,"32178":9,"32179":8,"32180":6,"32181":8,"32182":3,"32183":8,"32184":5,"32185":4,"32186":4,"32187":7,"32188":6,"32189":7,"32190":7,"32191":3,"32192":9,"32193":5,"32194":8,"32195":8,"32196":7,"32197":7,"32198":9,"32199":1,"32200":10,"32201":1,"32202":2,"32203":6,"32204":5,"32205":4,"32206":2,"32207":4,"32208":7,"32209":8,"32210":4,"32211":5,"32212":7,"32213":7,"32214":7,"32215":7,"32216":5,"32217":1,"32218":4,"32219":9,"32220":2,"32221":9,"32222":8,"32223":7,"32224":9,"32225":9,"32226":7,"32227":7,"32228":8,"32229":5,"32230":9,"32231":9,"32232":8,"32233":7,"32234":8,"32235":2,"32236":8,"32237":7,"32238":8,"32239":1,"32240":8,"32241":7,"32242":2,"32243":2,"32244":3,"32245":3,"32246":7,"32247":10,"32248":7,"32249":7,"32250":2,"32251":1,"32252":8,"32253":7,"32254":5,"32255":7,"32256":7,"32257":8,"32258":10,"32259":9,"32260":7,"32261":7,"32262":8,"32263":8,"32264":8,"32265":7,"32266":9,"32267":7,"32268":5,"32269":2,"32270":8,"32271":7,"32272":7,"32273":9,"32274":7,"32275":8,"32276":7,"32277":7,"32278":8,"32279":8,"32280":9,"32281":9,"32282":8,"32283":8,"32284":2,"32285":10,"32286":7,"32287":9,"32288":4,"32289":5,"32290":3,"32291":9,"32292":7,"32293":4,"32294":5,"32295":2,"32296":4,"32297":7,"32298":10,"32299":7,"32300":2,"32301":1,"32302":5,"32303":9,"32304":9,"32305":4,"32306":6,"32307":6,"32308":10,"32309":7,"32310":8,"32311":7,"32312":8,"32313":7,"32314":5,"32315":8,"32316":7,"32317":1,"32318":7,"32319":7,"32320":5,"32321":8,"32322":6,"32323":10,"32324":7,"32325":3,"32326":8,"32327":3,"32328":7,"32329":8,"32330":5,"32331":5,"32332":9,"32333":3,"32334":7,"32335":3,"32336":7,"32337":8,"32338":2,"32339":8,"32340":7,"32341":7,"32342":8,"32343":8,"32344":4,"32345":8,"32346":4,"32347":3,"32348":8,"32349":5,"32350":9,"32351":8,"32352":10,"32353":2,"32354":1,"32355":8,"32356":8,"32357":6,"32358":2,"32359":7,"32360":4,"32361":5,"32362":6,"32363":9,"32364":7,"32365":8,"32366":9,"32367":9,"32368":1,"32369":9,"32370":6,"32371":9,"32372":1,"32373":9,"32374":1,"32375":6,"32376":7,"32377":7,"32378":2,"32379":3,"32380":7,"32381":8,"32382":7,"32383":5,"32384":4,"32385":8,"32386":7,"32387":4,"32388":1,"32389":8,"32390":9,"32391":6,"32392":2,"32393":9,"32394":7,"32395":7,"32396":2,"32397":6,"32398":2,"32399":8,"32400":9,"32401":7,"32402":8,"32403":7,"32404":4,"32405":7,"32406":5,"32407":9,"32408":8,"32409":8,"32410":10,"32411":10,"32412":10,"32413":7,"32414":10,"32415":8,"32416":8,"32417":8,"32418":7,"32419":8,"32420":8,"32421":6,"32422":8,"32423":7,"32424":5,"32425":9,"32426":5,"32427":7,"32428":2,"32429":5,"32430":2,"32431":2,"32432":9,"32433":2,"32434":1,"32435":5,"32436":8,"32437":2,"32438":7,"32439":8,"32440":2,"32441":9,"32442":2,"32443":10,"32444":10,"32445":7,"32446":6,"32447":8,"32448":8,"32449":8,"32450":8,"32451":7,"32452":5,"32453":8,"32454":6,"32455":1,"32456":8,"32457":9,"32458":7,"32459":2,"32460":5,"32461":9,"32462":8,"32463":8,"32464":8,"32465":2,"32466":7,"32467":7,"32468":7,"32469":1,"32470":8,"32471":4,"32472":9,"32473":8,"32474":5,"32475":7,"32476":7,"32477":4,"32478":9,"32479":3,"32480":8,"32481":2,"32482":9,"32483":9,"32484":1,"32485":9,"32486":2,"32487":6,"32488":10,"32489":10,"32490":5,"32491":8,"32492":7,"32493":8,"32494":8,"32495":8,"32496":10,"32497":1,"32498":8,"32499":8,"32500":8,"32501":10,"32502":3,"32503":7,"32504":4,"32505":7,"32506":1,"32507":8,"32508":6,"32509":7,"32510":7,"32511":2,"32512":3,"32513":7,"32514":7,"32515":1,"32516":4,"32517":7,"32518":10,"32519":5,"32520":8,"32521":9,"32522":5,"32523":5,"32524":6,"32525":2,"32526":8,"32527":9,"32528":9,"32529":4,"32530":8,"32531":5,"32532":7,"32533":8,"32534":6,"32535":8,"32536":7,"32537":7,"32538":5,"32539":9,"32540":8,"32541":9,"32542":1,"32543":2,"32544":6,"32545":2,"32546":9,"32547":5,"32548":6,"32549":8,"32550":9,"32551":5,"32552":7,"32553":9,"32554":4,"32555":1,"32556":4,"32557":8,"32558":8,"32559":10,"32560":8,"32561":7,"32562":7,"32563":8,"32564":8,"32565":7,"32566":7,"32567":9,"32568":5,"32569":8,"32570":9,"32571":2,"32572":6,"32573":8,"32574":9,"32575":7,"32576":8,"32577":10,"32578":10,"32579":7,"32580":1,"32581":7,"32582":2,"32583":7,"32584":8,"32585":9,"32586":8,"32587":5,"32588":5,"32589":2,"32590":7,"32591":7,"32592":7,"32593":8,"32594":5,"32595":2,"32596":7,"32597":6,"32598":7,"32599":2,"32600":8,"32601":1,"32602":8,"32603":2,"32604":3,"32605":4,"32606":6,"32607":7,"32608":7,"32609":5,"32610":8,"32611":9,"32612":7,"32613":2,"32614":7,"32615":5,"32616":1,"32617":2,"32618":9,"32619":4,"32620":5,"32621":7,"32622":7,"32623":9,"32624":7,"32625":5,"32626":7,"32627":8,"32628":7,"32629":9,"32630":8,"32631":9,"32632":8,"32633":9,"32634":10,"32635":9,"32636":2,"32637":8,"32638":9,"32639":9,"32640":5,"32641":5,"32642":7,"32643":2,"32644":4,"32645":9,"32646":7,"32647":8,"32648":9,"32649":7,"32650":9,"32651":5,"32652":8,"32653":9,"32654":2,"32655":6,"32656":2,"32657":8,"32658":7,"32659":7,"32660":7,"32661":8,"32662":4,"32663":1,"32664":7,"32665":7,"32666":8,"32667":8,"32668":4,"32669":8,"32670":1,"32671":7,"32672":2,"32673":7,"32674":2,"32675":1,"32676":1,"32677":5,"32678":7,"32679":8,"32680":10,"32681":3,"32682":7,"32683":7,"32684":4,"32685":7,"32686":10,"32687":7,"32688":9,"32689":3,"32690":5,"32691":7,"32692":9,"32693":10,"32694":8,"32695":2,"32696":6,"32697":7,"32698":7,"32699":7,"32700":6,"32701":1,"32702":3,"32703":7,"32704":9,"32705":5,"32706":8,"32707":8,"32708":8,"32709":7,"32710":7,"32711":5,"32712":8,"32713":9,"32714":8,"32715":5,"32716":9,"32717":7,"32718":4,"32719":4,"32720":10,"32721":9,"32722":9,"32723":10,"32724":7,"32725":8,"32726":7,"32727":7,"32728":8,"32729":5,"32730":4,"32731":9,"32732":10,"32733":9,"32734":5,"32735":7,"32736":5,"32737":6,"32738":3,"32739":8,"32740":9,"32741":8,"32742":8,"32743":2,"32744":2,"32745":9,"32746":5,"32747":9,"32748":2,"32749":10,"32750":9,"32751":8,"32752":4,"32753":7,"32754":8,"32755":7,"32756":7,"32757":7,"32758":8,"32759":10,"32760":8,"32761":6,"32762":5,"32763":3,"32764":9,"32765":5,"32766":7,"32767":9,"32768":9,"32769":8,"32770":8,"32771":5,"32772":9,"32773":8,"32774":9,"32775":8,"32776":10,"32777":7,"32778":7,"32779":2,"32780":8,"32781":7,"32782":7,"32783":9,"32784":4,"32785":7,"32786":1,"32787":8,"32788":7,"32789":8,"32790":2,"32791":7,"32792":8,"32793":7,"32794":8,"32795":5,"32796":7,"32797":8,"32798":7,"32799":8,"32800":9,"32801":8,"32802":9,"32803":7,"32804":6,"32805":7,"32806":5,"32807":9,"32808":5,"32809":1,"32810":10,"32811":3,"32812":4,"32813":2,"32814":5,"32815":5,"32816":8,"32817":5,"32818":8,"32819":8,"32820":8,"32821":6,"32822":8,"32823":5,"32824":4,"32825":7,"32826":8,"32827":7,"32828":5,"32829":9,"32830":9,"32831":8,"32832":6,"32833":2,"32834":9,"32835":8,"32836":6,"32837":9,"32838":5,"32839":7,"32840":7,"32841":7,"32842":7,"32843":3,"32844":1,"32845":9,"32846":7,"32847":8,"32848":8,"32849":10,"32850":7,"32851":5,"32852":1,"32853":8,"32854":3,"32855":5,"32856":9,"32857":9,"32858":2,"32859":8,"32860":10,"32861":7,"32862":7,"32863":8,"32864":2,"32865":9,"32866":8,"32867":9,"32868":3,"32869":7,"32870":9,"32871":9,"32872":5,"32873":5,"32874":8,"32875":3,"32876":4,"32877":8,"32878":1,"32879":8,"32880":1,"32881":7,"32882":8,"32883":9,"32884":7,"32885":7,"32886":8,"32887":7,"32888":2,"32889":9,"32890":8,"32891":5,"32892":2,"32893":7,"32894":1,"32895":4,"32896":9,"32897":5,"32898":7,"32899":7,"32900":6,"32901":2,"32902":9,"32903":8,"32904":8,"32905":8,"32906":5,"32907":9,"32908":2,"32909":10,"32910":9,"32911":4,"32912":8,"32913":8,"32914":3,"32915":9,"32916":8,"32917":7,"32918":1,"32919":5,"32920":5,"32921":1,"32922":8,"32923":2,"32924":4,"32925":8,"32926":9,"32927":7,"32928":9,"32929":7,"32930":3,"32931":8,"32932":5,"32933":8,"32934":7,"32935":8,"32936":8,"32937":4,"32938":1,"32939":7,"32940":8,"32941":1,"32942":9,"32943":3,"32944":8,"32945":7,"32946":8,"32947":8,"32948":7,"32949":2,"32950":8,"32951":6,"32952":8,"32953":8,"32954":8,"32955":2,"32956":7,"32957":10,"32958":7,"32959":8,"32960":8,"32961":8,"32962":7,"32963":7,"32964":5,"32965":7,"32966":8,"32967":3,"32968":9,"32969":8,"32970":1,"32971":1,"32972":3,"32973":6,"32974":2,"32975":9,"32976":6,"32977":8,"32978":8,"32979":8,"32980":1,"32981":2,"32982":9,"32983":9,"32984":6,"32985":7,"32986":10,"32987":4,"32988":7,"32989":7,"32990":8,"32991":8,"32992":7,"32993":7,"32994":9,"32995":8,"32996":8,"32997":9,"32998":9,"32999":8,"33000":7,"33001":5,"33002":9,"33003":7,"33004":6,"33005":9,"33006":7,"33007":8,"33008":3,"33009":7,"33010":9,"33011":3,"33012":7,"33013":8,"33014":9,"33015":8,"33016":8,"33017":2,"33018":5,"33019":6,"33020":8,"33021":9,"33022":1,"33023":6,"33024":7,"33025":7,"33026":1,"33027":7,"33028":3,"33029":3,"33030":8,"33031":9,"33032":5,"33033":5,"33034":8,"33035":8,"33036":9,"33037":5,"33038":7,"33039":4,"33040":8,"33041":7,"33042":5,"33043":8,"33044":8,"33045":2,"33046":8,"33047":5,"33048":9,"33049":3,"33050":8,"33051":6,"33052":5,"33053":6,"33054":5,"33055":9,"33056":2,"33057":8,"33058":1,"33059":1,"33060":1,"33061":8,"33062":7,"33063":8,"33064":6,"33065":4,"33066":8,"33067":2,"33068":2,"33069":8,"33070":7,"33071":5,"33072":7,"33073":5,"33074":7,"33075":10,"33076":8,"33077":8,"33078":7,"33079":8,"33080":7,"33081":9,"33082":5,"33083":10,"33084":10,"33085":8,"33086":6,"33087":7,"33088":9,"33089":2,"33090":5,"33091":8,"33092":3,"33093":8,"33094":8,"33095":7,"33096":8,"33097":8,"33098":2,"33099":6,"33100":2,"33101":9,"33102":3,"33103":1,"33104":4,"33105":3,"33106":4,"33107":7,"33108":4,"33109":4,"33110":8,"33111":9,"33112":9,"33113":7,"33114":10,"33115":7,"33116":6,"33117":7,"33118":3,"33119":7,"33120":1,"33121":1,"33122":2,"33123":7,"33124":8,"33125":7,"33126":8,"33127":10,"33128":9,"33129":5,"33130":7,"33131":5,"33132":5,"33133":2,"33134":3,"33135":10,"33136":8,"33137":8,"33138":9,"33139":8,"33140":7,"33141":3,"33142":2,"33143":8,"33144":9,"33145":8,"33146":8,"33147":10,"33148":8,"33149":7,"33150":7,"33151":8,"33152":4,"33153":8,"33154":6,"33155":1,"33156":8,"33157":7,"33158":9,"33159":9,"33160":9,"33161":6,"33162":8,"33163":5,"33164":8,"33165":6,"33166":9,"33167":9,"33168":7,"33169":9,"33170":5,"33171":7,"33172":7,"33173":9,"33174":7,"33175":9,"33176":7,"33177":9,"33178":1,"33179":9,"33180":10,"33181":4,"33182":8,"33183":2,"33184":2,"33185":9,"33186":8,"33187":9,"33188":10,"33189":7,"33190":4,"33191":5,"33192":2,"33193":8,"33194":5,"33195":7,"33196":8,"33197":8,"33198":8,"33199":10,"33200":10,"33201":10,"33202":7,"33203":7,"33204":7,"33205":9,"33206":4,"33207":6,"33208":5,"33209":7,"33210":9,"33211":8,"33212":8,"33213":10,"33214":8,"33215":9,"33216":8,"33217":8,"33218":10,"33219":6,"33220":3,"33221":9,"33222":3,"33223":8,"33224":5,"33225":4,"33226":2,"33227":7,"33228":8,"33229":6,"33230":5,"33231":6,"33232":8,"33233":3,"33234":8,"33235":2,"33236":6,"33237":9,"33238":3,"33239":7,"33240":9,"33241":7,"33242":3,"33243":5,"33244":2,"33245":7,"33246":7,"33247":9,"33248":9,"33249":8,"33250":7,"33251":1,"33252":9,"33253":8,"33254":2,"33255":1,"33256":6,"33257":7,"33258":3,"33259":7,"33260":3,"33261":9,"33262":5,"33263":8,"33264":7,"33265":7,"33266":9,"33267":5,"33268":6,"33269":2,"33270":3,"33271":1,"33272":7,"33273":6,"33274":6,"33275":8,"33276":7,"33277":2,"33278":8,"33279":7,"33280":4,"33281":2,"33282":9,"33283":7,"33284":9,"33285":6,"33286":5,"33287":1,"33288":8,"33289":5,"33290":4,"33291":3,"33292":3,"33293":7,"33294":9,"33295":7,"33296":2,"33297":5,"33298":5,"33299":1,"33300":5,"33301":4,"33302":9,"33303":9,"33304":7,"33305":7,"33306":8,"33307":3,"33308":8,"33309":8,"33310":5,"33311":8,"33312":2,"33313":5,"33314":5,"33315":3,"33316":7,"33317":1,"33318":6,"33319":8,"33320":8,"33321":9,"33322":7,"33323":1,"33324":5,"33325":2,"33326":8,"33327":10,"33328":8,"33329":8,"33330":5,"33331":9,"33332":8,"33333":8,"33334":9,"33335":9,"33336":9,"33337":5,"33338":5,"33339":9,"33340":2,"33341":7,"33342":9,"33343":8,"33344":10,"33345":3,"33346":7,"33347":7,"33348":2,"33349":2,"33350":5,"33351":9,"33352":10,"33353":1,"33354":9,"33355":9,"33356":1,"33357":5,"33358":7,"33359":10,"33360":5,"33361":8,"33362":9,"33363":4,"33364":9,"33365":5,"33366":9,"33367":3,"33368":7,"33369":8,"33370":10,"33371":2,"33372":8,"33373":2,"33374":9,"33375":8,"33376":7,"33377":5,"33378":5,"33379":9,"33380":7,"33381":7,"33382":9,"33383":10,"33384":2,"33385":7,"33386":8,"33387":7,"33388":7,"33389":9,"33390":3,"33391":2,"33392":4,"33393":8,"33394":8,"33395":6,"33396":8,"33397":7,"33398":9,"33399":5,"33400":5,"33401":8,"33402":3,"33403":8,"33404":7,"33405":1,"33406":10,"33407":9,"33408":7,"33409":7,"33410":1,"33411":8,"33412":8,"33413":1,"33414":10,"33415":9,"33416":7,"33417":5,"33418":7,"33419":5,"33420":6,"33421":10,"33422":7,"33423":1,"33424":2,"33425":4,"33426":2,"33427":8,"33428":1,"33429":5,"33430":5,"33431":8,"33432":2,"33433":6,"33434":3,"33435":5,"33436":2,"33437":7,"33438":2,"33439":7,"33440":3,"33441":7,"33442":7,"33443":2,"33444":8,"33445":1,"33446":10,"33447":1,"33448":8,"33449":8,"33450":8,"33451":10,"33452":7,"33453":10,"33454":8,"33455":7,"33456":9,"33457":6,"33458":9,"33459":10,"33460":2,"33461":10,"33462":5,"33463":9,"33464":2,"33465":9,"33466":9,"33467":5,"33468":8,"33469":2,"33470":9,"33471":7,"33472":7,"33473":3,"33474":9,"33475":8,"33476":8,"33477":7,"33478":8,"33479":7,"33480":6,"33481":7,"33482":6,"33483":9,"33484":4,"33485":5,"33486":7,"33487":8,"33488":8,"33489":2,"33490":7,"33491":7,"33492":6,"33493":8,"33494":8,"33495":8,"33496":8,"33497":7,"33498":10,"33499":6,"33500":8,"33501":2,"33502":7,"33503":8,"33504":10,"33505":6,"33506":7,"33507":9,"33508":5,"33509":8,"33510":9,"33511":1,"33512":7,"33513":8,"33514":2,"33515":7,"33516":7,"33517":5,"33518":9,"33519":8,"33520":8,"33521":5,"33522":7,"33523":7,"33524":7,"33525":8,"33526":2,"33527":5,"33528":2,"33529":7,"33530":7,"33531":9,"33532":8,"33533":3,"33534":6,"33535":5,"33536":3,"33537":2,"33538":2,"33539":7,"33540":4,"33541":2,"33542":8,"33543":8,"33544":9,"33545":1,"33546":10,"33547":7,"33548":9,"33549":9,"33550":10,"33551":7,"33552":7,"33553":5,"33554":7,"33555":7,"33556":5,"33557":10,"33558":8,"33559":8,"33560":8,"33561":8,"33562":9,"33563":8,"33564":2,"33565":5,"33566":5,"33567":2,"33568":10,"33569":2,"33570":7,"33571":8,"33572":3,"33573":8,"33574":8,"33575":2,"33576":8,"33577":9,"33578":7,"33579":9,"33580":3,"33581":2,"33582":2,"33583":7,"33584":9,"33585":9,"33586":9,"33587":9,"33588":8,"33589":1,"33590":8,"33591":3,"33592":7,"33593":2,"33594":9,"33595":5,"33596":7,"33597":6,"33598":5,"33599":8,"33600":2,"33601":8,"33602":7,"33603":4,"33604":5,"33605":7,"33606":7,"33607":9,"33608":9,"33609":2,"33610":9,"33611":9,"33612":7,"33613":7,"33614":8,"33615":8,"33616":7,"33617":3,"33618":8,"33619":8,"33620":2,"33621":1,"33622":8,"33623":8,"33624":6,"33625":5,"33626":1,"33627":7,"33628":9,"33629":9,"33630":7,"33631":9,"33632":8,"33633":4,"33634":5,"33635":7,"33636":2,"33637":8,"33638":7,"33639":7,"33640":5,"33641":8,"33642":8,"33643":5,"33644":4,"33645":3,"33646":5,"33647":9,"33648":5,"33649":8,"33650":8,"33651":8,"33652":4,"33653":5,"33654":10,"33655":7,"33656":6,"33657":4,"33658":4,"33659":5,"33660":7,"33661":9,"33662":8,"33663":9,"33664":4,"33665":7,"33666":8,"33667":2,"33668":9,"33669":10,"33670":3,"33671":7,"33672":3,"33673":7,"33674":9,"33675":7,"33676":10,"33677":9,"33678":9,"33679":8,"33680":9,"33681":3,"33682":6,"33683":8,"33684":6,"33685":5,"33686":8,"33687":8,"33688":9,"33689":2,"33690":7,"33691":1,"33692":3,"33693":10,"33694":7,"33695":9,"33696":7,"33697":9,"33698":8,"33699":2,"33700":4,"33701":8,"33702":3,"33703":9,"33704":7,"33705":1,"33706":6,"33707":9,"33708":5,"33709":9,"33710":8,"33711":5,"33712":7,"33713":1,"33714":7,"33715":8,"33716":9,"33717":2,"33718":2,"33719":4,"33720":2,"33721":7,"33722":2,"33723":7,"33724":8,"33725":9,"33726":9,"33727":3,"33728":5,"33729":9,"33730":2,"33731":5,"33732":9,"33733":8,"33734":8,"33735":10,"33736":7,"33737":6,"33738":7,"33739":1,"33740":9,"33741":9,"33742":6,"33743":5,"33744":9,"33745":9,"33746":8,"33747":9,"33748":9,"33749":4,"33750":5,"33751":7,"33752":2,"33753":8,"33754":9,"33755":1,"33756":7,"33757":2,"33758":8,"33759":2,"33760":2,"33761":4,"33762":7,"33763":4,"33764":6,"33765":6,"33766":8,"33767":7,"33768":7,"33769":7,"33770":10,"33771":7,"33772":2,"33773":10,"33774":7,"33775":2,"33776":8,"33777":9,"33778":9,"33779":4,"33780":5,"33781":4,"33782":10,"33783":8,"33784":7,"33785":5,"33786":10,"33787":4,"33788":2,"33789":9,"33790":2,"33791":7,"33792":2,"33793":7,"33794":3,"33795":9,"33796":5,"33797":4,"33798":6,"33799":8,"33800":9,"33801":8,"33802":7,"33803":5,"33804":7,"33805":5,"33806":10,"33807":7,"33808":9,"33809":9,"33810":5,"33811":4,"33812":7,"33813":8,"33814":8,"33815":7,"33816":9,"33817":2,"33818":8,"33819":7,"33820":1,"33821":10,"33822":7,"33823":8,"33824":6,"33825":5,"33826":8,"33827":5,"33828":9,"33829":8,"33830":5,"33831":7,"33832":7,"33833":7,"33834":8,"33835":2,"33836":6,"33837":7,"33838":5,"33839":10,"33840":8,"33841":8,"33842":8,"33843":7,"33844":2,"33845":5,"33846":3,"33847":5,"33848":2,"33849":4,"33850":8,"33851":10,"33852":10,"33853":8,"33854":3,"33855":2,"33856":7,"33857":7,"33858":1,"33859":4,"33860":5,"33861":7,"33862":3,"33863":4,"33864":9,"33865":9,"33866":2,"33867":2,"33868":10,"33869":8,"33870":9,"33871":5,"33872":9,"33873":7,"33874":1,"33875":7,"33876":1,"33877":8,"33878":8,"33879":8,"33880":3,"33881":10,"33882":5,"33883":8,"33884":1,"33885":2,"33886":8,"33887":8,"33888":8,"33889":8,"33890":5,"33891":8,"33892":5,"33893":5,"33894":9,"33895":5,"33896":5,"33897":5,"33898":2,"33899":8,"33900":8,"33901":2,"33902":10,"33903":8,"33904":4,"33905":9,"33906":7,"33907":6,"33908":8,"33909":6,"33910":7,"33911":8,"33912":7,"33913":1,"33914":9,"33915":8,"33916":9,"33917":9,"33918":9,"33919":9,"33920":8,"33921":9,"33922":7,"33923":3,"33924":6,"33925":3,"33926":9,"33927":8,"33928":1,"33929":5,"33930":8,"33931":8,"33932":7,"33933":7,"33934":3,"33935":8,"33936":9,"33937":8,"33938":9,"33939":9,"33940":2,"33941":7,"33942":7,"33943":7,"33944":3,"33945":5,"33946":5,"33947":5,"33948":6,"33949":9,"33950":5,"33951":2,"33952":9,"33953":7,"33954":8,"33955":6,"33956":8,"33957":9,"33958":2,"33959":5,"33960":5,"33961":8,"33962":9,"33963":7,"33964":2,"33965":1,"33966":10,"33967":9,"33968":5,"33969":10,"33970":2,"33971":7,"33972":4,"33973":8,"33974":9,"33975":5,"33976":2,"33977":8,"33978":9,"33979":5,"33980":8,"33981":7,"33982":4,"33983":1,"33984":4,"33985":9,"33986":6,"33987":5,"33988":7,"33989":2,"33990":2,"33991":2,"33992":9,"33993":8,"33994":8,"33995":7,"33996":4,"33997":8,"33998":9,"33999":6,"34000":8,"34001":8,"34002":10,"34003":8,"34004":2,"34005":5,"34006":3,"34007":6,"34008":9,"34009":5,"34010":4,"34011":4,"34012":7,"34013":8,"34014":7,"34015":3,"34016":9,"34017":8,"34018":7,"34019":7,"34020":7,"34021":3,"34022":4,"34023":2,"34024":9,"34025":8,"34026":8,"34027":7,"34028":8,"34029":10,"34030":7,"34031":10,"34032":10,"34033":7,"34034":7,"34035":8,"34036":1,"34037":9,"34038":6,"34039":8,"34040":8,"34041":6,"34042":8,"34043":6,"34044":1,"34045":9,"34046":9,"34047":7,"34048":8,"34049":4,"34050":5,"34051":5,"34052":9,"34053":7,"34054":1,"34055":5,"34056":7,"34057":7,"34058":7,"34059":4,"34060":9,"34061":7,"34062":7,"34063":9,"34064":7,"34065":9,"34066":7,"34067":4,"34068":5,"34069":7,"34070":2,"34071":6,"34072":7,"34073":5,"34074":9,"34075":7,"34076":8,"34077":9,"34078":1,"34079":9,"34080":2,"34081":8,"34082":8,"34083":2,"34084":2,"34085":9,"34086":7,"34087":3,"34088":4,"34089":7,"34090":10,"34091":8,"34092":5,"34093":10,"34094":7,"34095":8,"34096":5,"34097":8,"34098":5,"34099":2,"34100":1,"34101":9,"34102":7,"34103":2,"34104":9,"34105":5,"34106":9,"34107":8,"34108":8,"34109":6,"34110":7,"34111":5,"34112":4,"34113":5,"34114":8,"34115":3,"34116":8,"34117":7,"34118":8,"34119":9,"34120":8,"34121":1,"34122":9,"34123":3,"34124":1,"34125":1,"34126":7,"34127":8,"34128":2,"34129":4,"34130":8,"34131":7,"34132":5,"34133":2,"34134":8,"34135":7,"34136":8,"34137":5,"34138":9,"34139":2,"34140":5,"34141":10,"34142":8,"34143":2,"34144":2,"34145":8,"34146":4,"34147":9,"34148":7,"34149":8,"34150":8,"34151":1,"34152":10,"34153":5,"34154":9,"34155":3,"34156":9,"34157":5,"34158":9,"34159":10,"34160":2,"34161":10,"34162":8,"34163":7,"34164":5,"34165":9,"34166":1,"34167":7,"34168":4,"34169":7,"34170":7,"34171":8,"34172":2,"34173":8,"34174":7,"34175":9,"34176":9,"34177":9,"34178":10,"34179":6,"34180":7,"34181":9,"34182":7,"34183":4,"34184":8,"34185":7,"34186":6,"34187":6,"34188":8,"34189":3,"34190":6,"34191":7,"34192":3,"34193":5,"34194":9,"34195":3,"34196":8,"34197":7,"34198":7,"34199":1,"34200":7,"34201":8,"34202":3,"34203":2,"34204":5,"34205":2,"34206":7,"34207":6,"34208":9,"34209":8,"34210":10,"34211":7,"34212":9,"34213":7,"34214":7,"34215":10,"34216":8,"34217":7,"34218":9,"34219":9,"34220":7,"34221":9,"34222":7,"34223":2,"34224":2,"34225":7,"34226":5,"34227":5,"34228":8,"34229":9,"34230":4,"34231":5,"34232":7,"34233":8,"34234":2,"34235":2,"34236":8,"34237":9,"34238":3,"34239":9,"34240":2,"34241":6,"34242":7,"34243":6,"34244":5,"34245":8,"34246":9,"34247":8,"34248":8,"34249":2,"34250":8,"34251":8,"34252":7,"34253":8,"34254":7,"34255":7,"34256":8,"34257":1,"34258":8,"34259":7,"34260":8,"34261":7,"34262":3,"34263":3,"34264":8,"34265":8,"34266":8,"34267":8,"34268":5,"34269":10,"34270":8,"34271":7,"34272":3,"34273":2,"34274":10,"34275":7,"34276":7,"34277":6,"34278":2,"34279":8,"34280":7,"34281":7,"34282":7,"34283":8,"34284":10,"34285":8,"34286":6,"34287":1,"34288":9,"34289":5,"34290":10,"34291":6,"34292":10,"34293":8,"34294":2,"34295":3,"34296":1,"34297":5,"34298":6,"34299":2,"34300":9,"34301":8,"34302":3,"34303":8,"34304":6,"34305":9,"34306":8,"34307":9,"34308":7,"34309":7,"34310":5,"34311":1,"34312":2,"34313":8,"34314":9,"34315":2,"34316":5,"34317":5,"34318":5,"34319":5,"34320":7,"34321":8,"34322":8,"34323":7,"34324":5,"34325":4,"34326":3,"34327":5,"34328":5,"34329":1,"34330":9,"34331":1,"34332":8,"34333":2,"34334":8,"34335":9,"34336":5,"34337":9,"34338":10,"34339":2,"34340":8,"34341":8,"34342":8,"34343":7,"34344":7,"34345":1,"34346":9,"34347":8,"34348":8,"34349":2,"34350":8,"34351":8,"34352":5,"34353":8,"34354":7,"34355":7,"34356":2,"34357":8,"34358":3,"34359":6,"34360":9,"34361":8,"34362":8,"34363":9,"34364":9,"34365":8,"34366":8,"34367":7,"34368":2,"34369":7,"34370":8,"34371":8,"34372":9,"34373":8,"34374":10,"34375":9,"34376":4,"34377":8,"34378":8,"34379":7,"34380":8,"34381":7,"34382":8,"34383":8,"34384":8,"34385":3,"34386":8,"34387":9,"34388":7,"34389":7,"34390":5,"34391":7,"34392":9,"34393":8,"34394":8,"34395":6,"34396":9,"34397":4,"34398":3,"34399":7,"34400":8,"34401":9,"34402":4,"34403":8,"34404":6,"34405":4,"34406":8,"34407":8,"34408":2,"34409":1,"34410":8,"34411":9,"34412":7,"34413":10,"34414":3,"34415":6,"34416":10,"34417":3,"34418":7,"34419":8,"34420":8,"34421":9,"34422":4,"34423":4,"34424":2,"34425":5,"34426":1,"34427":1,"34428":9,"34429":8,"34430":1,"34431":8,"34432":8,"34433":9,"34434":10,"34435":8,"34436":6,"34437":5,"34438":8,"34439":8,"34440":5,"34441":5,"34442":5,"34443":7,"34444":7,"34445":7,"34446":8,"34447":7,"34448":2,"34449":7,"34450":7,"34451":8,"34452":7,"34453":5,"34454":10,"34455":8,"34456":7,"34457":9,"34458":5,"34459":7,"34460":7,"34461":2,"34462":3,"34463":3,"34464":3,"34465":7,"34466":2,"34467":5,"34468":6,"34469":8,"34470":9,"34471":8,"34472":9,"34473":9,"34474":2,"34475":9,"34476":9,"34477":8,"34478":1,"34479":2,"34480":8,"34481":9,"34482":9,"34483":7,"34484":2,"34485":9,"34486":10,"34487":8,"34488":5,"34489":7,"34490":10,"34491":8,"34492":9,"34493":8,"34494":10,"34495":9,"34496":8,"34497":3,"34498":7,"34499":2,"34500":5,"34501":10,"34502":7,"34503":8,"34504":5,"34505":3,"34506":5,"34507":7,"34508":8,"34509":7,"34510":9,"34511":8,"34512":1,"34513":2,"34514":7,"34515":8,"34516":1,"34517":9,"34518":10,"34519":3,"34520":8,"34521":7,"34522":9,"34523":6,"34524":6,"34525":7,"34526":1,"34527":9,"34528":9,"34529":5,"34530":4,"34531":8,"34532":2,"34533":8,"34534":9,"34535":8,"34536":8,"34537":9,"34538":5,"34539":7,"34540":7,"34541":7,"34542":10,"34543":8,"34544":2,"34545":3,"34546":7,"34547":9,"34548":4,"34549":2,"34550":8,"34551":3,"34552":9,"34553":8,"34554":9,"34555":5,"34556":5,"34557":8,"34558":3,"34559":10,"34560":8,"34561":10,"34562":1,"34563":1,"34564":8,"34565":5,"34566":6,"34567":2,"34568":2,"34569":3,"34570":8,"34571":8,"34572":5,"34573":7,"34574":3,"34575":10,"34576":9,"34577":9,"34578":9,"34579":7,"34580":6,"34581":5,"34582":8,"34583":10,"34584":5,"34585":9,"34586":9,"34587":7,"34588":2,"34589":8,"34590":9,"34591":7,"34592":10,"34593":9,"34594":6,"34595":2,"34596":8,"34597":7,"34598":7,"34599":5,"34600":9,"34601":7,"34602":4,"34603":5,"34604":8,"34605":7,"34606":8,"34607":1,"34608":5,"34609":2,"34610":2,"34611":2,"34612":2,"34613":9,"34614":1,"34615":7,"34616":5,"34617":4,"34618":5,"34619":5,"34620":10,"34621":8,"34622":2,"34623":8,"34624":10,"34625":7,"34626":9,"34627":8,"34628":7,"34629":9,"34630":5,"34631":5,"34632":8,"34633":5,"34634":8,"34635":8,"34636":7,"34637":7,"34638":9,"34639":5,"34640":2,"34641":8,"34642":7,"34643":8,"34644":8,"34645":5,"34646":4,"34647":8,"34648":1,"34649":3,"34650":1,"34651":2,"34652":6,"34653":8,"34654":7,"34655":8,"34656":8,"34657":7,"34658":5,"34659":7,"34660":8,"34661":10,"34662":4,"34663":2,"34664":9,"34665":2,"34666":7,"34667":3,"34668":9,"34669":8,"34670":5,"34671":7,"34672":7,"34673":3,"34674":9,"34675":7,"34676":1,"34677":6,"34678":8,"34679":7,"34680":2,"34681":8,"34682":8,"34683":8,"34684":9,"34685":7,"34686":9,"34687":5,"34688":9,"34689":1,"34690":7,"34691":8,"34692":9,"34693":8,"34694":2,"34695":4,"34696":3,"34697":7,"34698":9,"34699":2,"34700":9,"34701":2,"34702":8,"34703":9,"34704":9,"34705":6,"34706":7,"34707":9,"34708":2,"34709":8,"34710":7,"34711":8,"34712":7,"34713":7,"34714":7,"34715":8,"34716":7,"34717":9,"34718":8,"34719":7,"34720":9,"34721":10,"34722":6,"34723":7,"34724":9,"34725":1,"34726":6,"34727":8,"34728":7,"34729":9,"34730":9,"34731":4,"34732":8,"34733":1,"34734":8,"34735":8,"34736":7,"34737":5,"34738":3,"34739":1,"34740":7,"34741":8,"34742":8,"34743":5,"34744":2,"34745":8,"34746":5,"34747":1,"34748":8,"34749":8,"34750":6,"34751":9,"34752":5,"34753":7,"34754":6,"34755":6,"34756":9,"34757":3,"34758":7,"34759":9,"34760":1,"34761":8,"34762":8,"34763":10,"34764":9,"34765":3,"34766":9,"34767":2,"34768":8,"34769":8,"34770":1,"34771":1,"34772":8,"34773":7,"34774":1,"34775":8,"34776":8,"34777":6,"34778":5,"34779":7,"34780":9,"34781":1,"34782":9,"34783":8,"34784":8,"34785":7,"34786":7,"34787":9,"34788":2,"34789":9,"34790":5,"34791":9,"34792":8,"34793":5,"34794":7,"34795":7,"34796":7,"34797":7,"34798":8,"34799":7,"34800":4,"34801":10,"34802":4,"34803":5,"34804":2,"34805":2,"34806":5,"34807":7,"34808":7,"34809":4,"34810":1,"34811":6,"34812":5,"34813":9,"34814":8,"34815":8,"34816":8,"34817":7,"34818":8,"34819":8,"34820":1,"34821":2,"34822":10,"34823":7,"34824":7,"34825":7,"34826":7,"34827":8,"34828":4,"34829":8,"34830":8,"34831":8,"34832":8,"34833":2,"34834":8,"34835":8,"34836":5,"34837":10,"34838":7,"34839":7,"34840":4,"34841":7,"34842":9,"34843":6,"34844":8,"34845":7,"34846":6,"34847":9,"34848":8,"34849":7,"34850":7,"34851":4,"34852":9,"34853":8,"34854":7,"34855":7,"34856":9,"34857":8,"34858":7,"34859":2,"34860":4,"34861":3,"34862":1,"34863":8,"34864":7,"34865":8,"34866":2,"34867":8,"34868":2,"34869":5,"34870":6,"34871":10,"34872":8,"34873":7,"34874":7,"34875":9,"34876":9,"34877":6,"34878":8,"34879":8,"34880":2,"34881":4,"34882":9,"34883":10,"34884":2,"34885":8,"34886":7,"34887":7,"34888":8,"34889":3,"34890":8,"34891":7,"34892":4,"34893":8,"34894":8,"34895":8,"34896":8,"34897":7,"34898":8,"34899":5,"34900":7,"34901":9,"34902":7,"34903":2,"34904":10,"34905":7,"34906":8,"34907":7,"34908":6,"34909":5,"34910":8,"34911":7,"34912":10,"34913":2,"34914":7,"34915":5,"34916":8,"34917":2,"34918":9,"34919":9,"34920":9,"34921":10,"34922":8,"34923":3,"34924":2,"34925":8,"34926":8,"34927":7,"34928":4,"34929":9,"34930":9,"34931":7,"34932":6,"34933":9,"34934":7,"34935":9,"34936":4,"34937":8,"34938":5,"34939":3,"34940":6,"34941":8,"34942":7,"34943":2,"34944":9,"34945":2,"34946":9,"34947":2,"34948":8,"34949":6,"34950":5,"34951":9,"34952":4,"34953":7,"34954":2,"34955":3,"34956":10,"34957":8,"34958":4,"34959":7,"34960":5,"34961":1,"34962":8,"34963":9,"34964":8,"34965":4,"34966":8,"34967":8,"34968":5,"34969":6,"34970":7,"34971":5,"34972":9,"34973":2,"34974":9,"34975":7,"34976":9,"34977":4,"34978":3,"34979":7,"34980":7,"34981":5,"34982":9,"34983":8,"34984":7,"34985":9,"34986":9,"34987":8,"34988":5,"34989":7,"34990":4,"34991":8,"34992":7,"34993":8,"34994":1,"34995":6,"34996":9,"34997":8,"34998":7,"34999":9,"35000":10,"35001":2,"35002":7,"35003":9,"35004":9,"35005":5,"35006":9,"35007":3,"35008":4,"35009":9,"35010":3,"35011":2,"35012":9,"35013":5,"35014":9,"35015":7,"35016":5,"35017":3,"35018":8,"35019":8,"35020":7,"35021":5,"35022":7,"35023":6,"35024":4,"35025":8,"35026":8,"35027":7,"35028":8,"35029":2,"35030":7,"35031":7,"35032":7,"35033":8,"35034":10,"35035":8,"35036":7,"35037":8,"35038":8,"35039":1,"35040":1,"35041":7,"35042":10,"35043":3,"35044":8,"35045":9,"35046":5,"35047":8,"35048":4,"35049":8,"35050":9,"35051":9,"35052":4,"35053":9,"35054":7,"35055":7,"35056":10,"35057":3,"35058":8,"35059":4,"35060":7,"35061":4,"35062":9,"35063":3,"35064":8,"35065":7,"35066":3,"35067":9,"35068":2,"35069":2,"35070":8,"35071":7,"35072":3,"35073":8,"35074":9,"35075":9,"35076":9,"35077":8,"35078":1,"35079":2,"35080":5,"35081":9,"35082":9,"35083":7,"35084":1,"35085":9,"35086":10,"35087":1,"35088":5,"35089":8,"35090":8,"35091":8,"35092":7,"35093":10,"35094":7,"35095":2,"35096":7,"35097":10,"35098":4,"35099":7,"35100":9,"35101":2,"35102":3,"35103":2,"35104":8,"35105":4,"35106":8,"35107":7,"35108":8,"35109":7,"35110":10,"35111":9,"35112":7,"35113":7,"35114":8,"35115":5,"35116":8,"35117":7,"35118":1,"35119":8,"35120":5,"35121":7,"35122":4,"35123":7,"35124":4,"35125":7,"35126":2,"35127":7,"35128":2,"35129":2,"35130":2,"35131":7,"35132":6,"35133":9,"35134":10,"35135":4,"35136":5,"35137":5,"35138":6,"35139":7,"35140":1,"35141":7,"35142":7,"35143":6,"35144":7,"35145":2,"35146":8,"35147":8,"35148":10,"35149":8,"35150":2,"35151":5,"35152":8,"35153":9,"35154":7,"35155":7,"35156":8,"35157":5,"35158":8,"35159":7,"35160":7,"35161":8,"35162":2,"35163":7,"35164":8,"35165":8,"35166":8,"35167":9,"35168":8,"35169":4,"35170":8,"35171":10,"35172":6,"35173":9,"35174":4,"35175":7,"35176":8,"35177":9,"35178":7,"35179":7,"35180":8,"35181":8,"35182":9,"35183":7,"35184":7,"35185":8,"35186":7,"35187":9,"35188":6,"35189":9,"35190":8,"35191":8,"35192":4,"35193":1,"35194":8,"35195":9,"35196":9,"35197":3,"35198":2,"35199":6,"35200":8,"35201":7,"35202":6,"35203":8,"35204":2,"35205":10,"35206":2,"35207":8,"35208":4,"35209":5,"35210":8,"35211":6,"35212":5,"35213":5,"35214":4,"35215":7,"35216":9,"35217":8,"35218":9,"35219":5,"35220":8,"35221":9,"35222":9,"35223":2,"35224":8,"35225":9,"35226":9,"35227":3,"35228":5,"35229":8,"35230":7,"35231":8,"35232":9,"35233":5,"35234":7,"35235":5,"35236":1,"35237":9,"35238":8,"35239":1,"35240":9,"35241":4,"35242":2,"35243":7,"35244":8,"35245":5,"35246":8,"35247":9,"35248":3,"35249":9,"35250":7,"35251":8,"35252":7,"35253":3,"35254":5,"35255":8,"35256":7,"35257":10,"35258":2,"35259":8,"35260":4,"35261":5,"35262":9,"35263":2,"35264":7,"35265":8,"35266":8,"35267":7,"35268":5,"35269":5,"35270":6,"35271":7,"35272":9,"35273":8,"35274":2,"35275":5,"35276":1,"35277":7,"35278":2,"35279":7,"35280":10,"35281":3,"35282":8,"35283":7,"35284":2,"35285":1,"35286":2,"35287":8,"35288":7,"35289":4,"35290":7,"35291":4,"35292":4,"35293":7,"35294":1,"35295":3,"35296":8,"35297":9,"35298":7,"35299":7,"35300":3,"35301":7,"35302":7,"35303":6,"35304":6,"35305":4,"35306":8,"35307":5,"35308":7,"35309":7,"35310":1,"35311":5,"35312":10,"35313":8,"35314":10,"35315":6,"35316":5,"35317":2,"35318":7,"35319":9,"35320":7,"35321":5,"35322":7,"35323":3,"35324":9,"35325":5,"35326":7,"35327":9,"35328":9,"35329":5,"35330":5,"35331":9,"35332":2,"35333":3,"35334":4,"35335":8,"35336":8,"35337":10,"35338":7,"35339":4,"35340":9,"35341":4,"35342":7,"35343":3,"35344":2,"35345":1,"35346":2,"35347":2,"35348":8,"35349":7,"35350":9,"35351":10,"35352":7,"35353":7,"35354":7,"35355":5,"35356":2,"35357":5,"35358":7,"35359":7,"35360":10,"35361":5,"35362":9,"35363":3,"35364":8,"35365":7,"35366":8,"35367":10,"35368":7,"35369":8,"35370":9,"35371":7,"35372":8,"35373":2,"35374":9,"35375":2,"35376":8,"35377":9,"35378":8,"35379":7,"35380":8,"35381":7,"35382":6,"35383":9,"35384":8,"35385":7,"35386":5,"35387":8,"35388":8,"35389":7,"35390":7,"35391":8,"35392":8,"35393":9,"35394":5,"35395":7,"35396":8,"35397":1,"35398":7,"35399":2,"35400":1,"35401":7,"35402":7,"35403":6,"35404":7,"35405":8,"35406":7,"35407":2,"35408":7,"35409":7,"35410":3,"35411":9,"35412":8,"35413":5,"35414":7,"35415":10,"35416":5,"35417":2,"35418":8,"35419":7,"35420":2,"35421":8,"35422":2,"35423":2,"35424":8,"35425":2,"35426":3,"35427":7,"35428":9,"35429":9,"35430":5,"35431":8,"35432":8,"35433":8,"35434":1,"35435":8,"35436":7,"35437":6,"35438":7,"35439":9,"35440":2,"35441":7,"35442":4,"35443":8,"35444":8,"35445":10,"35446":9,"35447":8,"35448":2,"35449":5,"35450":7,"35451":7,"35452":5,"35453":5,"35454":2,"35455":2,"35456":8,"35457":3,"35458":9,"35459":8,"35460":7,"35461":7,"35462":8,"35463":8,"35464":2,"35465":5,"35466":5,"35467":8,"35468":6,"35469":8,"35470":8,"35471":6,"35472":5,"35473":9,"35474":7,"35475":2,"35476":5,"35477":2,"35478":9,"35479":1,"35480":9,"35481":8,"35482":2,"35483":8,"35484":9,"35485":7,"35486":4,"35487":5,"35488":4,"35489":8,"35490":7,"35491":7,"35492":2,"35493":8,"35494":9,"35495":3,"35496":5,"35497":7,"35498":7,"35499":9,"35500":7,"35501":9,"35502":1,"35503":9,"35504":2,"35505":5,"35506":10,"35507":5,"35508":10,"35509":8,"35510":8,"35511":5,"35512":8,"35513":9,"35514":9,"35515":3,"35516":7,"35517":5,"35518":7,"35519":5,"35520":7,"35521":8,"35522":7,"35523":1,"35524":9,"35525":8,"35526":3,"35527":7,"35528":1,"35529":9,"35530":7,"35531":6,"35532":7,"35533":8,"35534":7,"35535":8,"35536":2,"35537":8,"35538":8,"35539":9,"35540":6,"35541":2,"35542":2,"35543":4,"35544":5,"35545":2,"35546":5,"35547":8,"35548":10,"35549":6,"35550":9,"35551":9,"35552":9,"35553":7,"35554":9,"35555":2,"35556":8,"35557":8,"35558":8,"35559":2,"35560":7,"35561":9,"35562":7,"35563":9,"35564":5,"35565":6,"35566":7,"35567":7,"35568":3,"35569":5,"35570":8,"35571":8,"35572":9,"35573":8,"35574":10,"35575":7,"35576":8,"35577":8,"35578":6,"35579":8,"35580":5,"35581":5,"35582":5,"35583":3,"35584":7,"35585":2,"35586":7,"35587":10,"35588":8,"35589":8,"35590":8,"35591":6,"35592":2,"35593":2,"35594":9,"35595":9,"35596":10,"35597":6,"35598":8,"35599":10,"35600":8,"35601":9,"35602":9,"35603":8,"35604":3,"35605":5,"35606":10,"35607":9,"35608":7,"35609":9,"35610":3,"35611":3,"35612":5,"35613":7,"35614":5,"35615":2,"35616":1,"35617":9,"35618":5,"35619":6,"35620":9,"35621":9,"35622":3,"35623":5,"35624":2,"35625":8,"35626":8,"35627":8,"35628":10,"35629":5,"35630":7,"35631":7,"35632":2,"35633":8,"35634":9,"35635":6,"35636":7,"35637":7,"35638":8,"35639":7,"35640":2,"35641":8,"35642":1,"35643":9,"35644":2,"35645":10,"35646":2,"35647":3,"35648":1,"35649":9,"35650":1,"35651":4,"35652":8,"35653":9,"35654":4,"35655":3,"35656":5,"35657":8,"35658":9,"35659":7,"35660":8,"35661":5,"35662":7,"35663":9,"35664":8,"35665":7,"35666":7,"35667":4,"35668":8,"35669":10,"35670":8,"35671":8,"35672":7,"35673":8,"35674":7,"35675":1,"35676":8,"35677":2,"35678":8,"35679":8,"35680":3,"35681":9,"35682":5,"35683":5,"35684":8,"35685":9,"35686":5,"35687":7,"35688":3,"35689":6,"35690":7,"35691":1,"35692":8,"35693":2,"35694":7,"35695":8,"35696":8,"35697":9,"35698":7,"35699":7,"35700":9,"35701":2,"35702":5,"35703":7,"35704":8,"35705":8,"35706":6,"35707":5,"35708":4,"35709":4,"35710":4,"35711":7,"35712":6,"35713":7,"35714":5,"35715":8,"35716":1,"35717":7,"35718":8,"35719":1,"35720":8,"35721":5,"35722":8,"35723":6,"35724":9,"35725":2,"35726":5,"35727":1,"35728":9,"35729":8,"35730":9,"35731":2,"35732":1,"35733":8,"35734":7,"35735":2,"35736":9,"35737":7,"35738":7,"35739":2,"35740":7,"35741":8,"35742":8,"35743":4,"35744":7,"35745":10,"35746":5,"35747":8,"35748":9,"35749":5,"35750":8,"35751":1,"35752":7,"35753":1,"35754":7,"35755":8,"35756":8,"35757":7,"35758":8,"35759":7,"35760":6,"35761":8,"35762":9,"35763":3,"35764":10,"35765":7,"35766":7,"35767":9,"35768":6,"35769":7,"35770":9,"35771":7,"35772":6,"35773":8,"35774":6,"35775":5,"35776":5,"35777":6,"35778":9,"35779":7,"35780":10,"35781":5,"35782":2,"35783":9,"35784":9,"35785":8,"35786":4,"35787":7,"35788":5,"35789":9,"35790":2,"35791":7,"35792":9,"35793":10,"35794":8,"35795":3,"35796":9,"35797":2,"35798":7,"35799":7,"35800":5,"35801":6,"35802":8,"35803":10,"35804":5,"35805":4,"35806":1,"35807":9,"35808":8,"35809":9,"35810":8,"35811":8,"35812":3,"35813":1,"35814":9,"35815":5,"35816":9,"35817":8,"35818":7,"35819":7,"35820":8,"35821":9,"35822":7,"35823":10,"35824":5,"35825":10,"35826":5,"35827":8,"35828":8,"35829":10,"35830":7,"35831":4,"35832":10,"35833":8,"35834":9,"35835":1,"35836":4,"35837":9,"35838":3,"35839":9,"35840":9,"35841":7,"35842":5,"35843":7,"35844":8,"35845":8,"35846":5,"35847":9,"35848":7,"35849":7,"35850":6,"35851":2,"35852":2,"35853":2,"35854":1,"35855":7,"35856":2,"35857":7,"35858":9,"35859":8,"35860":6,"35861":4,"35862":7,"35863":7,"35864":3,"35865":9,"35866":1,"35867":1,"35868":9,"35869":8,"35870":8,"35871":8,"35872":9,"35873":5,"35874":8,"35875":7,"35876":9,"35877":9,"35878":9,"35879":5,"35880":6,"35881":2,"35882":6,"35883":9,"35884":8,"35885":7,"35886":7,"35887":9,"35888":8,"35889":7,"35890":1,"35891":7,"35892":9,"35893":2,"35894":2,"35895":4,"35896":5,"35897":8,"35898":8,"35899":9,"35900":10,"35901":2,"35902":5,"35903":2,"35904":2,"35905":8,"35906":7,"35907":4,"35908":8,"35909":2,"35910":6,"35911":3,"35912":7,"35913":8,"35914":9,"35915":8,"35916":8,"35917":7,"35918":4,"35919":5,"35920":8,"35921":9,"35922":4,"35923":2,"35924":6,"35925":9,"35926":8,"35927":2,"35928":1,"35929":8,"35930":2,"35931":7,"35932":7,"35933":3,"35934":8,"35935":1,"35936":2,"35937":5,"35938":8,"35939":7,"35940":5,"35941":2,"35942":10,"35943":8,"35944":3,"35945":8,"35946":8,"35947":3,"35948":8,"35949":7,"35950":2,"35951":3,"35952":7,"35953":6,"35954":4,"35955":6,"35956":9,"35957":2,"35958":1,"35959":6,"35960":7,"35961":2,"35962":8,"35963":8,"35964":2,"35965":9,"35966":8,"35967":8,"35968":9,"35969":7,"35970":8,"35971":8,"35972":8,"35973":9,"35974":5,"35975":8,"35976":7,"35977":7,"35978":9,"35979":3,"35980":2,"35981":2,"35982":9,"35983":9,"35984":3,"35985":8,"35986":2,"35987":5,"35988":8,"35989":10,"35990":9,"35991":8,"35992":8,"35993":8,"35994":2,"35995":5,"35996":9,"35997":7,"35998":8,"35999":2,"36000":6,"36001":8,"36002":9,"36003":7,"36004":8,"36005":3,"36006":2,"36007":8,"36008":7,"36009":7,"36010":10,"36011":7,"36012":7,"36013":2,"36014":9,"36015":6,"36016":5,"36017":5,"36018":7,"36019":7,"36020":7,"36021":7,"36022":5,"36023":8,"36024":5,"36025":9,"36026":10,"36027":5,"36028":2,"36029":7,"36030":6,"36031":5,"36032":10,"36033":7,"36034":10,"36035":5,"36036":10,"36037":6,"36038":10,"36039":1,"36040":2,"36041":8,"36042":2,"36043":1,"36044":2,"36045":8,"36046":7,"36047":8,"36048":6,"36049":5,"36050":9,"36051":7,"36052":1,"36053":10,"36054":8,"36055":9,"36056":7,"36057":9,"36058":7,"36059":8,"36060":5,"36061":2,"36062":6,"36063":2,"36064":4,"36065":7,"36066":7,"36067":2,"36068":2,"36069":8,"36070":2,"36071":5,"36072":7,"36073":5,"36074":2,"36075":9,"36076":5,"36077":2,"36078":4,"36079":8,"36080":8,"36081":9,"36082":9,"36083":2,"36084":8,"36085":5,"36086":4,"36087":4,"36088":8,"36089":8,"36090":8,"36091":10,"36092":4,"36093":7,"36094":4,"36095":2,"36096":3,"36097":1,"36098":8,"36099":8,"36100":3,"36101":5,"36102":9,"36103":7,"36104":9,"36105":8,"36106":8,"36107":10,"36108":8,"36109":8,"36110":7,"36111":7,"36112":8,"36113":8,"36114":7,"36115":3,"36116":6,"36117":7,"36118":9,"36119":9,"36120":9,"36121":4,"36122":2,"36123":8,"36124":7,"36125":7,"36126":8,"36127":8,"36128":7,"36129":2,"36130":8,"36131":8,"36132":4,"36133":5,"36134":9,"36135":7,"36136":9,"36137":10,"36138":9,"36139":6,"36140":4,"36141":9,"36142":1,"36143":9,"36144":3,"36145":9,"36146":1,"36147":9,"36148":9,"36149":8,"36150":7,"36151":10,"36152":2,"36153":9,"36154":8,"36155":5,"36156":2,"36157":2,"36158":2,"36159":2,"36160":8,"36161":9,"36162":8,"36163":2,"36164":9,"36165":8,"36166":7,"36167":8,"36168":5,"36169":7,"36170":8,"36171":7,"36172":9,"36173":7,"36174":2,"36175":7,"36176":7,"36177":3,"36178":6,"36179":7,"36180":5,"36181":3,"36182":8,"36183":9,"36184":7,"36185":8,"36186":8,"36187":1,"36188":2,"36189":7,"36190":7,"36191":8,"36192":7,"36193":8,"36194":8,"36195":8,"36196":9,"36197":9,"36198":7,"36199":3,"36200":9,"36201":3,"36202":2,"36203":1,"36204":4,"36205":1,"36206":1,"36207":9,"36208":9,"36209":7,"36210":8,"36211":4,"36212":2,"36213":3,"36214":8,"36215":4,"36216":7,"36217":8,"36218":7,"36219":10,"36220":6,"36221":6,"36222":8,"36223":10,"36224":9,"36225":5,"36226":9,"36227":4,"36228":6,"36229":2,"36230":8,"36231":8,"36232":8,"36233":9,"36234":7,"36235":8,"36236":2,"36237":1,"36238":9,"36239":4,"36240":4,"36241":8,"36242":8,"36243":9,"36244":1,"36245":2,"36246":8,"36247":9,"36248":7,"36249":6,"36250":4,"36251":9,"36252":7,"36253":5,"36254":3,"36255":5,"36256":2,"36257":2,"36258":4,"36259":7,"36260":9,"36261":7,"36262":8,"36263":7,"36264":6,"36265":8,"36266":8,"36267":4,"36268":2,"36269":10,"36270":1,"36271":9,"36272":5,"36273":8,"36274":9,"36275":9,"36276":2,"36277":8,"36278":7,"36279":9,"36280":7,"36281":2,"36282":2,"36283":8,"36284":8,"36285":5,"36286":5,"36287":9,"36288":10,"36289":7,"36290":3,"36291":2,"36292":7,"36293":9,"36294":10,"36295":8,"36296":6,"36297":1,"36298":3,"36299":9,"36300":5,"36301":6,"36302":6,"36303":8,"36304":5,"36305":7,"36306":9,"36307":8,"36308":8,"36309":8,"36310":6,"36311":9,"36312":9,"36313":6,"36314":7,"36315":10,"36316":7,"36317":3,"36318":8,"36319":5,"36320":7,"36321":8,"36322":8,"36323":8,"36324":2,"36325":7,"36326":1,"36327":9,"36328":2,"36329":8,"36330":5,"36331":5,"36332":10,"36333":6,"36334":4,"36335":7,"36336":7,"36337":4,"36338":4,"36339":8,"36340":2,"36341":8,"36342":5,"36343":7,"36344":9,"36345":8,"36346":9,"36347":7,"36348":8,"36349":7,"36350":10,"36351":7,"36352":7,"36353":7,"36354":7,"36355":4,"36356":9,"36357":7,"36358":5,"36359":8,"36360":7,"36361":2,"36362":7,"36363":5,"36364":9,"36365":7,"36366":7,"36367":2,"36368":8,"36369":5,"36370":7,"36371":7,"36372":3,"36373":7,"36374":5,"36375":5,"36376":8,"36377":1,"36378":7,"36379":7,"36380":6,"36381":7,"36382":1,"36383":7,"36384":8,"36385":9,"36386":6,"36387":7,"36388":9,"36389":2,"36390":5,"36391":7,"36392":7,"36393":7,"36394":7,"36395":7,"36396":4,"36397":8,"36398":3,"36399":8,"36400":7,"36401":10,"36402":8,"36403":8,"36404":7,"36405":8,"36406":2,"36407":5,"36408":8,"36409":6,"36410":1,"36411":4,"36412":4,"36413":7,"36414":2,"36415":9,"36416":8,"36417":5,"36418":3,"36419":8,"36420":7,"36421":8,"36422":8,"36423":2,"36424":2,"36425":9,"36426":8,"36427":8,"36428":2,"36429":9,"36430":5,"36431":1,"36432":8,"36433":7,"36434":5,"36435":7,"36436":8,"36437":8,"36438":5,"36439":5,"36440":5,"36441":6,"36442":2,"36443":6,"36444":9,"36445":4,"36446":7,"36447":9,"36448":6,"36449":10,"36450":4,"36451":8,"36452":10,"36453":8,"36454":9,"36455":4,"36456":4,"36457":7,"36458":2,"36459":1,"36460":8,"36461":8,"36462":9,"36463":7,"36464":6,"36465":8,"36466":2,"36467":8,"36468":2,"36469":8,"36470":8,"36471":7,"36472":9,"36473":9,"36474":9,"36475":10,"36476":5,"36477":7,"36478":9,"36479":3,"36480":9,"36481":10,"36482":2,"36483":2,"36484":9,"36485":3,"36486":5,"36487":8,"36488":8,"36489":7,"36490":5,"36491":2,"36492":5,"36493":9,"36494":8,"36495":10,"36496":5,"36497":5,"36498":10,"36499":2,"36500":5,"36501":2,"36502":7,"36503":4,"36504":9,"36505":4,"36506":5,"36507":8,"36508":2,"36509":9,"36510":7,"36511":9,"36512":7,"36513":5,"36514":7,"36515":1,"36516":2,"36517":9,"36518":6,"36519":5,"36520":7,"36521":2,"36522":8,"36523":7,"36524":9,"36525":6,"36526":8,"36527":5,"36528":2,"36529":6,"36530":7,"36531":2,"36532":5,"36533":5,"36534":7,"36535":8,"36536":9,"36537":8,"36538":3,"36539":5,"36540":8,"36541":7,"36542":5,"36543":2,"36544":7,"36545":9,"36546":7,"36547":9,"36548":9,"36549":7,"36550":10,"36551":3,"36552":5,"36553":8,"36554":5,"36555":1,"36556":8,"36557":10,"36558":9,"36559":9,"36560":3,"36561":7,"36562":5,"36563":7,"36564":2,"36565":2,"36566":5,"36567":8,"36568":9,"36569":5,"36570":7,"36571":4,"36572":10,"36573":4,"36574":8,"36575":7,"36576":2,"36577":5,"36578":2,"36579":8,"36580":8,"36581":1,"36582":7,"36583":7,"36584":2,"36585":2,"36586":9,"36587":7,"36588":3,"36589":9,"36590":7,"36591":2,"36592":2,"36593":5,"36594":9,"36595":2,"36596":7,"36597":7,"36598":8,"36599":6,"36600":10,"36601":10,"36602":4,"36603":2,"36604":8,"36605":10,"36606":6,"36607":2,"36608":7,"36609":9,"36610":6,"36611":6,"36612":8,"36613":9,"36614":9,"36615":7,"36616":6,"36617":7,"36618":1,"36619":5,"36620":8,"36621":9,"36622":7,"36623":9,"36624":6,"36625":2,"36626":9,"36627":8,"36628":4,"36629":10,"36630":8,"36631":9,"36632":2,"36633":5,"36634":9,"36635":5,"36636":1,"36637":7,"36638":2,"36639":7,"36640":7,"36641":2,"36642":5,"36643":6,"36644":8,"36645":7,"36646":9,"36647":8,"36648":4,"36649":3,"36650":7,"36651":7,"36652":2,"36653":8,"36654":5,"36655":9,"36656":8,"36657":7,"36658":2,"36659":5,"36660":7,"36661":3,"36662":9,"36663":8,"36664":9,"36665":10,"36666":2,"36667":6,"36668":10,"36669":5,"36670":8,"36671":8,"36672":6,"36673":8,"36674":5,"36675":9,"36676":5,"36677":7,"36678":10,"36679":9,"36680":10,"36681":5,"36682":3,"36683":2,"36684":9,"36685":8,"36686":2,"36687":9,"36688":6,"36689":8,"36690":3,"36691":8,"36692":10,"36693":9,"36694":8,"36695":7,"36696":1,"36697":9,"36698":5,"36699":8,"36700":6,"36701":5,"36702":6,"36703":1,"36704":3,"36705":9,"36706":2,"36707":7,"36708":9,"36709":10,"36710":9,"36711":6,"36712":2,"36713":8,"36714":5,"36715":5,"36716":7,"36717":8,"36718":7,"36719":8,"36720":4,"36721":7,"36722":8,"36723":1,"36724":8,"36725":7,"36726":8,"36727":5,"36728":1,"36729":9,"36730":9,"36731":1,"36732":7,"36733":4,"36734":7,"36735":8,"36736":7,"36737":9,"36738":2,"36739":1,"36740":1,"36741":9,"36742":8,"36743":9,"36744":7,"36745":6,"36746":5,"36747":9,"36748":8,"36749":9,"36750":2,"36751":7,"36752":3,"36753":8,"36754":5,"36755":7,"36756":4,"36757":5,"36758":8,"36759":2,"36760":8,"36761":1,"36762":3,"36763":8,"36764":3,"36765":8,"36766":8,"36767":5,"36768":7,"36769":5,"36770":2,"36771":7,"36772":1,"36773":8,"36774":1,"36775":5,"36776":9,"36777":5,"36778":10,"36779":8,"36780":3,"36781":7,"36782":1,"36783":4,"36784":5,"36785":1,"36786":6,"36787":4,"36788":1,"36789":7,"36790":9,"36791":7,"36792":5,"36793":2,"36794":8,"36795":2,"36796":3,"36797":8,"36798":8,"36799":7,"36800":7,"36801":10,"36802":5,"36803":1,"36804":8,"36805":6,"36806":6,"36807":5,"36808":7,"36809":6,"36810":2,"36811":5,"36812":9,"36813":3,"36814":5,"36815":9,"36816":6,"36817":8,"36818":8,"36819":2,"36820":8,"36821":6,"36822":8,"36823":3,"36824":8,"36825":8,"36826":8,"36827":7,"36828":10,"36829":9,"36830":1,"36831":7,"36832":9,"36833":8,"36834":10,"36835":9,"36836":2,"36837":4,"36838":8,"36839":4,"36840":8,"36841":9,"36842":5,"36843":8,"36844":9,"36845":9,"36846":7,"36847":7,"36848":3,"36849":8,"36850":9,"36851":6,"36852":9,"36853":9,"36854":3,"36855":5,"36856":2,"36857":7,"36858":5,"36859":9,"36860":5,"36861":7,"36862":5,"36863":1,"36864":5,"36865":9,"36866":8,"36867":2,"36868":8,"36869":2,"36870":8,"36871":10,"36872":8,"36873":5,"36874":2,"36875":9,"36876":5,"36877":8,"36878":2,"36879":8,"36880":2,"36881":9,"36882":8,"36883":3,"36884":2,"36885":9,"36886":8,"36887":8,"36888":8,"36889":2,"36890":10,"36891":4,"36892":8,"36893":1,"36894":3,"36895":10,"36896":8,"36897":9,"36898":7,"36899":1,"36900":8,"36901":9,"36902":8,"36903":8,"36904":8,"36905":7,"36906":7,"36907":9,"36908":7,"36909":8,"36910":7,"36911":9,"36912":9,"36913":8,"36914":8,"36915":7,"36916":1,"36917":7,"36918":9,"36919":9,"36920":2,"36921":6,"36922":4,"36923":6,"36924":6,"36925":1,"36926":4,"36927":2,"36928":4,"36929":8,"36930":7,"36931":7,"36932":2,"36933":6,"36934":5,"36935":8,"36936":8,"36937":2,"36938":8,"36939":8,"36940":4,"36941":2,"36942":1,"36943":3,"36944":9,"36945":2,"36946":1,"36947":6,"36948":8,"36949":2,"36950":7,"36951":2,"36952":2,"36953":2,"36954":1,"36955":7,"36956":7,"36957":6,"36958":9,"36959":7,"36960":2,"36961":8,"36962":1,"36963":4,"36964":5,"36965":3,"36966":7,"36967":7,"36968":4,"36969":10,"36970":10,"36971":7,"36972":2,"36973":2,"36974":8,"36975":5,"36976":7,"36977":8,"36978":1,"36979":10,"36980":5,"36981":2,"36982":8,"36983":8,"36984":7,"36985":6,"36986":7,"36987":8,"36988":9,"36989":3,"36990":10,"36991":9,"36992":7,"36993":4,"36994":9,"36995":2,"36996":2,"36997":2,"36998":7,"36999":7,"37000":9,"37001":5,"37002":7,"37003":4,"37004":5,"37005":10,"37006":8,"37007":9,"37008":7,"37009":9,"37010":2,"37011":5,"37012":8,"37013":8,"37014":3,"37015":5,"37016":5,"37017":7,"37018":7,"37019":7,"37020":2,"37021":8,"37022":5,"37023":1,"37024":9,"37025":8,"37026":5,"37027":6,"37028":2,"37029":3,"37030":8,"37031":10,"37032":9,"37033":7,"37034":7,"37035":9,"37036":7,"37037":7,"37038":2,"37039":6,"37040":5,"37041":2,"37042":9,"37043":5,"37044":10,"37045":3,"37046":9,"37047":9,"37048":2,"37049":3,"37050":9,"37051":9,"37052":8,"37053":1,"37054":7,"37055":7,"37056":1,"37057":4,"37058":5,"37059":3,"37060":1,"37061":2,"37062":5,"37063":7,"37064":4,"37065":2,"37066":2,"37067":8,"37068":5,"37069":8,"37070":1,"37071":7,"37072":7,"37073":10,"37074":8,"37075":2,"37076":7,"37077":8,"37078":1,"37079":9,"37080":9,"37081":7,"37082":8,"37083":7,"37084":7,"37085":5,"37086":2,"37087":9,"37088":9,"37089":9,"37090":9,"37091":5,"37092":2,"37093":3,"37094":2,"37095":2,"37096":3,"37097":9,"37098":9,"37099":5,"37100":8,"37101":8,"37102":9,"37103":8,"37104":8,"37105":5,"37106":8,"37107":8,"37108":6,"37109":5,"37110":5,"37111":3,"37112":4,"37113":6,"37114":9,"37115":7,"37116":1,"37117":6,"37118":9,"37119":10,"37120":9,"37121":5,"37122":9,"37123":5,"37124":8,"37125":8,"37126":8,"37127":2,"37128":7,"37129":1,"37130":8,"37131":7,"37132":8,"37133":8,"37134":10,"37135":8,"37136":9,"37137":5,"37138":4,"37139":7,"37140":8,"37141":5,"37142":8,"37143":1,"37144":8,"37145":8,"37146":7,"37147":7,"37148":3,"37149":3,"37150":5,"37151":3,"37152":7,"37153":9,"37154":8,"37155":3,"37156":7,"37157":9,"37158":9,"37159":5,"37160":9,"37161":5,"37162":3,"37163":4,"37164":1,"37165":9,"37166":3,"37167":3,"37168":7,"37169":5,"37170":8,"37171":1,"37172":5,"37173":7,"37174":7,"37175":8,"37176":4,"37177":9,"37178":1,"37179":9,"37180":10,"37181":7,"37182":6,"37183":8,"37184":5,"37185":7,"37186":8,"37187":3,"37188":7,"37189":8,"37190":5,"37191":4,"37192":2,"37193":2,"37194":7,"37195":6,"37196":4,"37197":8,"37198":8,"37199":9,"37200":9,"37201":6,"37202":2,"37203":2,"37204":9,"37205":9,"37206":8,"37207":7,"37208":3,"37209":7,"37210":7,"37211":2,"37212":4,"37213":9,"37214":4,"37215":8,"37216":3,"37217":9,"37218":8,"37219":9,"37220":8,"37221":8,"37222":2,"37223":9,"37224":6,"37225":4,"37226":8,"37227":4,"37228":7,"37229":2,"37230":8,"37231":8,"37232":10,"37233":9,"37234":8,"37235":2,"37236":2,"37237":7,"37238":5,"37239":9,"37240":5,"37241":2,"37242":6,"37243":7,"37244":7,"37245":7,"37246":7,"37247":8,"37248":9,"37249":10,"37250":9,"37251":7,"37252":5,"37253":10,"37254":7,"37255":7,"37256":8,"37257":5,"37258":1,"37259":1,"37260":9,"37261":6,"37262":10,"37263":8,"37264":7,"37265":7,"37266":9,"37267":9,"37268":10,"37269":5,"37270":9,"37271":10,"37272":8,"37273":9,"37274":8,"37275":8,"37276":9,"37277":9,"37278":5,"37279":8,"37280":9,"37281":4,"37282":5,"37283":8,"37284":8,"37285":9,"37286":9,"37287":7,"37288":2,"37289":7,"37290":7,"37291":9,"37292":8,"37293":3,"37294":7,"37295":5,"37296":9,"37297":4,"37298":3,"37299":6,"37300":1,"37301":5,"37302":7,"37303":8,"37304":8,"37305":8,"37306":5,"37307":2,"37308":5,"37309":1,"37310":2,"37311":2,"37312":9,"37313":1,"37314":8,"37315":10,"37316":7,"37317":8,"37318":7,"37319":5,"37320":8,"37321":9,"37322":9,"37323":9,"37324":3,"37325":7,"37326":1,"37327":4,"37328":7,"37329":9,"37330":5,"37331":9,"37332":5,"37333":9,"37334":5,"37335":2,"37336":5,"37337":9,"37338":7,"37339":2,"37340":8,"37341":5,"37342":9,"37343":9,"37344":5,"37345":8,"37346":1,"37347":6,"37348":7,"37349":7,"37350":8,"37351":2,"37352":3,"37353":9,"37354":8,"37355":1,"37356":9,"37357":9,"37358":9,"37359":1,"37360":2,"37361":9,"37362":1,"37363":5,"37364":7,"37365":7,"37366":7,"37367":8,"37368":2,"37369":4,"37370":7,"37371":3,"37372":4,"37373":8,"37374":8,"37375":3,"37376":9,"37377":2,"37378":7,"37379":5,"37380":9,"37381":7,"37382":9,"37383":9,"37384":8,"37385":6,"37386":6,"37387":5,"37388":7,"37389":2,"37390":7,"37391":9,"37392":7,"37393":5,"37394":7,"37395":5,"37396":4,"37397":7,"37398":1,"37399":5,"37400":3,"37401":7,"37402":4,"37403":2,"37404":8,"37405":7,"37406":9,"37407":9,"37408":5,"37409":8,"37410":10,"37411":1,"37412":3,"37413":3,"37414":7,"37415":7,"37416":7,"37417":3,"37418":8,"37419":8,"37420":7,"37421":7,"37422":4,"37423":4,"37424":5,"37425":5,"37426":9,"37427":8,"37428":7,"37429":2,"37430":7,"37431":5,"37432":9,"37433":9,"37434":9,"37435":8,"37436":4,"37437":2,"37438":9,"37439":2,"37440":9,"37441":1,"37442":9,"37443":3,"37444":3,"37445":8,"37446":8,"37447":6,"37448":8,"37449":5,"37450":9,"37451":10,"37452":9,"37453":4,"37454":8,"37455":7,"37456":7,"37457":7,"37458":7,"37459":3,"37460":2,"37461":7,"37462":8,"37463":7,"37464":5,"37465":7,"37466":7,"37467":6,"37468":7,"37469":2,"37470":5,"37471":8,"37472":9,"37473":7,"37474":4,"37475":8,"37476":8,"37477":6,"37478":10,"37479":9,"37480":9,"37481":7,"37482":6,"37483":10,"37484":8,"37485":8,"37486":7,"37487":5,"37488":7,"37489":5,"37490":9,"37491":7,"37492":8,"37493":9,"37494":7,"37495":2,"37496":3,"37497":10,"37498":2,"37499":3,"37500":5,"37501":7,"37502":1,"37503":7,"37504":9,"37505":9,"37506":2,"37507":10,"37508":2,"37509":9,"37510":4,"37511":10,"37512":8,"37513":5,"37514":4,"37515":7,"37516":9,"37517":3,"37518":2,"37519":7,"37520":1,"37521":8,"37522":8,"37523":7,"37524":7,"37525":9,"37526":6,"37527":7,"37528":7,"37529":5,"37530":3,"37531":2,"37532":8,"37533":8,"37534":7,"37535":8,"37536":8,"37537":7,"37538":9,"37539":7,"37540":8,"37541":5,"37542":7,"37543":7,"37544":4,"37545":5,"37546":3,"37547":3,"37548":5,"37549":9,"37550":9,"37551":8,"37552":6,"37553":6,"37554":3,"37555":9,"37556":5,"37557":9,"37558":5,"37559":8,"37560":1,"37561":7,"37562":6,"37563":9,"37564":4,"37565":9,"37566":7,"37567":7,"37568":1,"37569":8,"37570":1,"37571":8,"37572":2,"37573":3,"37574":8,"37575":3,"37576":8,"37577":2,"37578":9,"37579":9,"37580":5,"37581":10,"37582":9,"37583":4,"37584":6,"37585":5,"37586":7,"37587":9,"37588":9,"37589":2,"37590":9,"37591":8,"37592":2,"37593":5,"37594":5,"37595":8,"37596":5,"37597":8,"37598":9,"37599":7,"37600":7,"37601":10,"37602":9,"37603":7,"37604":5,"37605":2,"37606":10,"37607":4,"37608":4,"37609":9,"37610":1,"37611":9,"37612":4,"37613":9,"37614":10,"37615":2,"37616":10,"37617":9,"37618":7,"37619":9,"37620":9,"37621":5,"37622":7,"37623":8,"37624":1,"37625":7,"37626":7,"37627":7,"37628":8,"37629":5,"37630":1,"37631":5,"37632":1,"37633":8,"37634":7,"37635":5,"37636":9,"37637":6,"37638":7,"37639":8,"37640":3,"37641":6,"37642":6,"37643":2,"37644":2,"37645":6,"37646":8,"37647":1,"37648":7,"37649":7,"37650":3,"37651":10,"37652":5,"37653":10,"37654":9,"37655":7,"37656":7,"37657":8,"37658":2,"37659":1,"37660":4,"37661":7,"37662":9,"37663":5,"37664":7,"37665":9,"37666":7,"37667":8,"37668":9,"37669":6,"37670":7,"37671":9,"37672":7,"37673":7,"37674":8,"37675":3,"37676":8,"37677":8,"37678":8,"37679":9,"37680":9,"37681":8,"37682":7,"37683":8,"37684":8,"37685":9,"37686":3,"37687":2,"37688":4,"37689":4,"37690":4,"37691":5,"37692":7,"37693":5,"37694":7,"37695":4,"37696":2,"37697":10,"37698":7,"37699":5,"37700":7,"37701":9,"37702":3,"37703":5,"37704":6,"37705":5,"37706":5,"37707":4,"37708":9,"37709":2,"37710":7,"37711":4,"37712":8,"37713":2,"37714":9,"37715":5,"37716":7,"37717":7,"37718":5,"37719":6,"37720":7,"37721":7,"37722":7,"37723":9,"37724":7,"37725":8,"37726":7,"37727":7,"37728":3,"37729":8,"37730":9,"37731":5,"37732":7,"37733":7,"37734":7,"37735":9,"37736":5,"37737":8,"37738":8,"37739":4,"37740":8,"37741":10,"37742":7,"37743":7,"37744":7,"37745":7,"37746":7,"37747":5,"37748":9,"37749":9,"37750":8,"37751":1,"37752":7,"37753":3,"37754":5,"37755":9,"37756":9,"37757":4,"37758":9,"37759":8,"37760":5,"37761":6,"37762":9,"37763":7,"37764":9,"37765":9,"37766":8,"37767":9,"37768":9,"37769":8,"37770":6,"37771":9,"37772":7,"37773":9,"37774":5,"37775":6,"37776":7,"37777":8,"37778":8,"37779":9,"37780":6,"37781":1,"37782":4,"37783":2,"37784":6,"37785":7,"37786":5,"37787":5,"37788":8,"37789":8,"37790":5,"37791":3,"37792":7,"37793":8,"37794":3,"37795":9,"37796":7,"37797":1,"37798":4,"37799":9,"37800":3,"37801":3,"37802":9,"37803":9,"37804":10,"37805":8,"37806":7,"37807":7,"37808":3,"37809":9,"37810":8,"37811":4,"37812":3,"37813":9,"37814":8,"37815":8,"37816":8,"37817":9,"37818":4,"37819":1,"37820":6,"37821":5,"37822":7,"37823":4,"37824":6,"37825":1,"37826":9,"37827":7,"37828":9,"37829":1,"37830":8,"37831":8,"37832":8,"37833":7,"37834":10,"37835":8,"37836":7,"37837":6,"37838":9,"37839":7,"37840":1,"37841":7,"37842":1,"37843":8,"37844":7,"37845":7,"37846":1,"37847":9,"37848":7,"37849":4,"37850":1,"37851":2,"37852":8,"37853":6,"37854":6,"37855":9,"37856":9,"37857":8,"37858":7,"37859":8,"37860":10,"37861":5,"37862":9,"37863":2,"37864":8,"37865":6,"37866":5,"37867":8,"37868":7,"37869":8,"37870":9,"37871":6,"37872":2,"37873":5,"37874":10,"37875":7,"37876":10,"37877":9,"37878":6,"37879":2,"37880":8,"37881":7,"37882":9,"37883":7,"37884":7,"37885":7,"37886":3,"37887":9,"37888":4,"37889":9,"37890":7,"37891":7,"37892":8,"37893":2,"37894":7,"37895":1,"37896":3,"37897":8,"37898":8,"37899":9,"37900":6,"37901":8,"37902":5,"37903":9,"37904":8,"37905":9,"37906":7,"37907":9,"37908":7,"37909":8,"37910":7,"37911":8,"37912":7,"37913":2,"37914":8,"37915":2,"37916":8,"37917":7,"37918":7,"37919":8,"37920":5,"37921":5,"37922":6,"37923":9,"37924":7,"37925":6,"37926":7,"37927":4,"37928":1,"37929":3,"37930":6,"37931":2,"37932":6,"37933":7,"37934":7,"37935":6,"37936":10,"37937":6,"37938":8,"37939":9,"37940":5,"37941":5,"37942":5,"37943":3,"37944":7,"37945":7,"37946":8,"37947":7,"37948":8,"37949":8,"37950":2,"37951":7,"37952":2,"37953":5,"37954":7,"37955":8,"37956":10,"37957":5,"37958":9,"37959":7,"37960":3,"37961":2,"37962":1,"37963":2,"37964":1,"37965":9,"37966":5,"37967":6,"37968":5,"37969":8,"37970":5,"37971":8,"37972":10,"37973":9,"37974":7,"37975":2,"37976":9,"37977":8,"37978":7,"37979":5,"37980":6,"37981":7,"37982":8,"37983":6,"37984":10,"37985":2,"37986":5,"37987":2,"37988":8,"37989":5,"37990":6,"37991":2,"37992":6,"37993":1,"37994":8,"37995":9,"37996":2,"37997":10,"37998":8,"37999":5,"38000":6,"38001":7,"38002":5,"38003":9,"38004":9,"38005":8,"38006":7,"38007":7,"38008":6,"38009":9,"38010":7,"38011":2,"38012":7,"38013":2,"38014":7,"38015":9,"38016":10,"38017":8,"38018":2,"38019":7,"38020":7,"38021":7,"38022":2,"38023":8,"38024":2,"38025":10,"38026":7,"38027":7,"38028":7,"38029":7,"38030":9,"38031":2,"38032":3,"38033":8,"38034":8,"38035":4,"38036":7,"38037":8,"38038":9,"38039":7,"38040":8,"38041":4,"38042":2,"38043":7,"38044":8,"38045":2,"38046":8,"38047":7,"38048":8,"38049":2,"38050":2,"38051":8,"38052":7,"38053":7,"38054":6,"38055":5,"38056":9,"38057":3,"38058":2,"38059":2,"38060":3,"38061":7,"38062":5,"38063":7,"38064":3,"38065":4,"38066":8,"38067":1,"38068":5,"38069":8,"38070":9,"38071":9,"38072":10,"38073":2,"38074":8,"38075":8,"38076":2,"38077":5,"38078":9,"38079":7,"38080":4,"38081":5,"38082":3,"38083":7,"38084":10,"38085":6,"38086":7,"38087":3,"38088":7,"38089":9,"38090":1,"38091":5,"38092":8,"38093":9,"38094":2,"38095":10,"38096":9,"38097":7,"38098":3,"38099":8,"38100":8,"38101":9,"38102":9,"38103":5,"38104":2,"38105":1,"38106":5,"38107":9,"38108":5,"38109":5,"38110":8,"38111":4,"38112":9,"38113":2,"38114":9,"38115":9,"38116":8,"38117":5,"38118":9,"38119":5,"38120":9,"38121":8,"38122":8,"38123":4,"38124":2,"38125":5,"38126":9,"38127":3,"38128":7,"38129":8,"38130":3,"38131":4,"38132":5,"38133":8,"38134":3,"38135":10,"38136":8,"38137":7,"38138":7,"38139":1,"38140":4,"38141":8,"38142":3,"38143":6,"38144":5,"38145":5,"38146":2,"38147":8,"38148":9,"38149":5,"38150":2,"38151":3,"38152":2,"38153":5,"38154":5,"38155":3,"38156":7,"38157":8,"38158":3,"38159":2,"38160":8,"38161":4,"38162":8,"38163":8,"38164":8,"38165":2,"38166":3,"38167":6,"38168":9,"38169":9,"38170":10,"38171":9,"38172":8,"38173":9,"38174":9,"38175":7,"38176":7,"38177":3,"38178":9,"38179":7,"38180":8,"38181":6,"38182":6,"38183":7,"38184":2,"38185":8,"38186":9,"38187":7,"38188":2,"38189":5,"38190":8,"38191":5,"38192":7,"38193":7,"38194":5,"38195":6,"38196":6,"38197":5,"38198":9,"38199":9,"38200":7,"38201":1,"38202":8,"38203":6,"38204":5,"38205":2,"38206":2,"38207":8,"38208":9,"38209":9,"38210":9,"38211":9,"38212":2,"38213":1,"38214":7,"38215":8,"38216":8,"38217":8,"38218":7,"38219":8,"38220":7,"38221":9,"38222":3,"38223":7,"38224":9,"38225":7,"38226":2,"38227":5,"38228":8,"38229":7,"38230":9,"38231":3,"38232":6,"38233":7,"38234":2,"38235":8,"38236":5,"38237":3,"38238":9,"38239":8,"38240":4,"38241":9,"38242":2,"38243":8,"38244":2,"38245":1,"38246":10,"38247":3,"38248":9,"38249":7,"38250":10,"38251":7,"38252":2,"38253":5,"38254":9,"38255":5,"38256":7,"38257":8,"38258":8,"38259":8,"38260":5,"38261":4,"38262":7,"38263":8,"38264":7,"38265":10,"38266":9,"38267":7,"38268":7,"38269":7,"38270":8,"38271":10,"38272":8,"38273":7,"38274":9,"38275":4,"38276":1,"38277":8,"38278":7,"38279":2,"38280":8,"38281":7,"38282":3,"38283":7,"38284":7,"38285":8,"38286":1,"38287":7,"38288":7,"38289":8,"38290":8,"38291":7,"38292":9,"38293":8,"38294":10,"38295":8,"38296":2,"38297":9,"38298":8,"38299":8,"38300":7,"38301":8,"38302":6,"38303":7,"38304":7,"38305":10,"38306":8,"38307":8,"38308":9,"38309":9,"38310":2,"38311":4,"38312":5,"38313":8,"38314":2,"38315":7,"38316":5,"38317":7,"38318":4,"38319":2,"38320":4,"38321":9,"38322":5,"38323":2,"38324":5,"38325":8,"38326":2,"38327":8,"38328":10,"38329":9,"38330":7,"38331":10,"38332":7,"38333":2,"38334":10,"38335":7,"38336":7,"38337":9,"38338":2,"38339":4,"38340":8,"38341":6,"38342":2,"38343":5,"38344":2,"38345":8,"38346":2,"38347":6,"38348":9,"38349":8,"38350":5,"38351":6,"38352":2,"38353":9,"38354":9,"38355":9,"38356":7,"38357":5,"38358":1,"38359":8,"38360":5,"38361":7,"38362":9,"38363":4,"38364":9,"38365":6,"38366":7,"38367":9,"38368":5,"38369":8,"38370":5,"38371":9,"38372":7,"38373":6,"38374":7,"38375":8,"38376":1,"38377":6,"38378":9,"38379":6,"38380":8,"38381":7,"38382":3,"38383":7,"38384":3,"38385":7,"38386":5,"38387":7,"38388":2,"38389":10,"38390":2,"38391":9,"38392":9,"38393":7,"38394":9,"38395":5,"38396":3,"38397":8,"38398":8,"38399":6,"38400":6,"38401":2,"38402":8,"38403":7,"38404":5,"38405":2,"38406":2,"38407":10,"38408":7,"38409":7,"38410":3,"38411":1,"38412":8,"38413":5,"38414":3,"38415":5,"38416":8,"38417":9,"38418":7,"38419":8,"38420":7,"38421":6,"38422":7,"38423":7,"38424":7,"38425":8,"38426":7,"38427":9,"38428":3,"38429":4,"38430":4,"38431":1,"38432":2,"38433":7,"38434":10,"38435":3,"38436":7,"38437":6,"38438":8,"38439":8,"38440":10,"38441":8,"38442":5,"38443":2,"38444":3,"38445":8,"38446":2,"38447":7,"38448":5,"38449":8,"38450":8,"38451":8,"38452":8,"38453":2,"38454":4,"38455":4,"38456":9,"38457":7,"38458":8,"38459":7,"38460":1,"38461":9,"38462":3,"38463":9,"38464":8,"38465":8,"38466":2,"38467":8,"38468":6,"38469":10,"38470":4,"38471":3,"38472":9,"38473":4,"38474":7,"38475":8,"38476":10,"38477":3,"38478":7,"38479":8,"38480":3,"38481":3,"38482":8,"38483":7,"38484":7,"38485":7,"38486":4,"38487":5,"38488":8,"38489":8,"38490":9,"38491":7,"38492":3,"38493":9,"38494":6,"38495":7,"38496":7,"38497":9,"38498":9,"38499":3,"38500":7,"38501":5,"38502":7,"38503":10,"38504":9,"38505":8,"38506":9,"38507":1,"38508":6,"38509":9,"38510":8,"38511":6,"38512":4,"38513":5,"38514":9,"38515":9,"38516":7,"38517":9,"38518":3,"38519":9,"38520":9,"38521":4,"38522":7,"38523":7,"38524":5,"38525":2,"38526":9,"38527":7,"38528":9,"38529":4,"38530":7,"38531":7,"38532":2,"38533":3,"38534":7,"38535":9,"38536":5,"38537":4,"38538":7,"38539":5,"38540":8,"38541":4,"38542":1,"38543":5,"38544":8,"38545":9,"38546":8,"38547":8,"38548":8,"38549":8,"38550":6,"38551":9,"38552":9,"38553":2,"38554":4,"38555":9,"38556":8,"38557":9,"38558":9,"38559":10,"38560":9,"38561":10,"38562":10,"38563":2,"38564":2,"38565":5,"38566":8,"38567":8,"38568":2,"38569":8,"38570":2,"38571":8,"38572":5,"38573":8,"38574":7,"38575":4,"38576":9,"38577":8,"38578":8,"38579":2,"38580":9,"38581":8,"38582":9,"38583":9,"38584":7,"38585":5,"38586":7,"38587":5,"38588":7,"38589":7,"38590":8,"38591":10,"38592":9,"38593":5,"38594":8,"38595":9,"38596":8,"38597":3,"38598":8,"38599":7,"38600":8,"38601":10,"38602":7,"38603":1,"38604":8,"38605":7,"38606":9,"38607":10,"38608":7,"38609":7,"38610":5,"38611":6,"38612":4,"38613":9,"38614":7,"38615":4,"38616":2,"38617":3,"38618":9,"38619":7,"38620":7,"38621":4,"38622":6,"38623":9,"38624":9,"38625":9,"38626":7,"38627":8,"38628":8,"38629":5,"38630":6,"38631":1,"38632":8,"38633":2,"38634":9,"38635":9,"38636":3,"38637":3,"38638":9,"38639":7,"38640":7,"38641":2,"38642":5,"38643":8,"38644":8,"38645":7,"38646":4,"38647":10,"38648":5,"38649":1,"38650":8,"38651":3,"38652":5,"38653":1,"38654":7,"38655":5,"38656":9,"38657":8,"38658":2,"38659":2,"38660":10,"38661":2,"38662":6,"38663":5,"38664":8,"38665":9,"38666":5,"38667":9,"38668":4,"38669":7,"38670":5,"38671":1,"38672":5,"38673":9,"38674":9,"38675":9,"38676":7,"38677":7,"38678":5,"38679":8,"38680":7,"38681":2,"38682":5,"38683":7,"38684":4,"38685":1,"38686":7,"38687":8,"38688":6,"38689":3,"38690":3,"38691":9,"38692":7,"38693":7,"38694":8,"38695":5,"38696":2,"38697":4,"38698":10,"38699":7,"38700":6,"38701":7,"38702":4,"38703":5,"38704":8,"38705":8,"38706":8,"38707":7,"38708":4,"38709":1,"38710":8,"38711":9,"38712":9,"38713":3,"38714":10,"38715":8,"38716":7,"38717":9,"38718":7,"38719":9,"38720":6,"38721":2,"38722":9,"38723":9,"38724":7,"38725":8,"38726":9,"38727":7,"38728":1,"38729":8,"38730":5,"38731":9,"38732":9,"38733":8,"38734":1,"38735":7,"38736":5,"38737":8,"38738":9,"38739":5,"38740":6,"38741":2,"38742":7,"38743":5,"38744":4,"38745":7,"38746":7,"38747":1,"38748":1,"38749":7,"38750":8,"38751":3,"38752":5,"38753":8,"38754":5,"38755":7,"38756":5,"38757":4,"38758":8,"38759":7,"38760":1,"38761":9,"38762":5,"38763":8,"38764":1,"38765":10,"38766":7,"38767":4,"38768":6,"38769":7,"38770":4,"38771":7,"38772":8,"38773":8,"38774":5,"38775":9,"38776":2,"38777":9,"38778":8,"38779":6,"38780":3,"38781":1,"38782":8,"38783":5,"38784":3,"38785":8,"38786":9,"38787":7,"38788":5,"38789":1,"38790":7,"38791":2,"38792":5,"38793":4,"38794":9,"38795":9,"38796":2,"38797":7,"38798":8,"38799":8,"38800":6,"38801":8,"38802":2,"38803":7,"38804":5,"38805":5,"38806":7,"38807":5,"38808":2,"38809":7,"38810":10,"38811":7,"38812":1,"38813":8,"38814":7,"38815":7,"38816":5,"38817":1,"38818":8,"38819":7,"38820":8,"38821":1,"38822":8,"38823":7,"38824":9,"38825":7,"38826":6,"38827":4,"38828":10,"38829":2,"38830":1,"38831":9,"38832":9,"38833":8,"38834":9,"38835":7,"38836":8,"38837":7,"38838":7,"38839":8,"38840":8,"38841":9,"38842":9,"38843":8,"38844":7,"38845":9,"38846":7,"38847":8,"38848":5,"38849":6,"38850":7,"38851":9,"38852":6,"38853":4,"38854":7,"38855":7,"38856":2,"38857":7,"38858":5,"38859":7,"38860":2,"38861":5,"38862":7,"38863":8,"38864":2,"38865":7,"38866":10,"38867":7,"38868":7,"38869":5,"38870":7,"38871":8,"38872":9,"38873":9,"38874":1,"38875":9,"38876":9,"38877":1,"38878":7,"38879":10,"38880":7,"38881":8,"38882":1,"38883":8,"38884":7,"38885":9,"38886":5,"38887":2,"38888":9,"38889":6,"38890":8,"38891":5,"38892":8,"38893":7,"38894":5,"38895":7,"38896":7,"38897":2,"38898":8,"38899":2,"38900":9,"38901":8,"38902":3,"38903":8,"38904":7,"38905":9,"38906":6,"38907":3,"38908":6,"38909":8,"38910":2,"38911":8,"38912":1,"38913":5,"38914":9,"38915":5,"38916":8,"38917":8,"38918":5,"38919":9,"38920":9,"38921":7,"38922":9,"38923":1,"38924":9,"38925":2,"38926":9,"38927":7,"38928":8,"38929":3,"38930":7,"38931":10,"38932":8,"38933":4,"38934":6,"38935":7,"38936":2,"38937":6,"38938":7,"38939":9,"38940":6,"38941":8,"38942":9,"38943":7,"38944":5,"38945":7,"38946":8,"38947":7,"38948":7,"38949":10,"38950":4,"38951":2,"38952":7,"38953":5,"38954":1,"38955":1,"38956":8,"38957":9,"38958":5,"38959":8,"38960":10,"38961":5,"38962":5,"38963":7,"38964":8,"38965":8,"38966":7,"38967":7,"38968":9,"38969":8,"38970":4,"38971":7,"38972":8,"38973":7,"38974":8,"38975":2,"38976":9,"38977":7,"38978":7,"38979":7,"38980":8,"38981":9,"38982":4,"38983":7,"38984":8,"38985":9,"38986":8,"38987":8,"38988":1,"38989":6,"38990":1,"38991":9,"38992":10,"38993":5,"38994":7,"38995":8,"38996":9,"38997":3,"38998":2,"38999":2,"39000":7,"39001":4,"39002":9,"39003":2,"39004":1,"39005":4,"39006":7,"39007":2,"39008":7,"39009":7,"39010":5,"39011":8,"39012":9,"39013":2,"39014":4,"39015":3,"39016":8,"39017":5,"39018":9,"39019":5,"39020":7,"39021":9,"39022":9,"39023":5,"39024":9,"39025":7,"39026":6,"39027":5,"39028":9,"39029":4,"39030":9,"39031":9,"39032":10,"39033":8,"39034":7,"39035":8,"39036":7,"39037":6,"39038":4,"39039":8,"39040":6,"39041":3,"39042":7,"39043":2,"39044":2,"39045":9,"39046":5,"39047":5,"39048":10,"39049":9,"39050":2,"39051":2,"39052":8,"39053":8,"39054":9,"39055":8,"39056":3,"39057":10,"39058":6,"39059":9,"39060":5,"39061":4,"39062":9,"39063":5,"39064":9,"39065":8,"39066":6,"39067":7,"39068":2,"39069":8,"39070":5,"39071":5,"39072":7,"39073":4,"39074":7,"39075":1,"39076":5,"39077":2,"39078":1,"39079":2,"39080":9,"39081":7,"39082":8,"39083":5,"39084":8,"39085":9,"39086":8,"39087":2,"39088":8,"39089":5,"39090":2,"39091":3,"39092":7,"39093":7,"39094":1,"39095":9,"39096":7,"39097":8,"39098":5,"39099":7,"39100":5,"39101":10,"39102":9,"39103":4,"39104":9,"39105":6,"39106":7,"39107":7,"39108":8,"39109":6,"39110":9,"39111":7,"39112":9,"39113":3,"39114":7,"39115":8,"39116":5,"39117":8,"39118":8,"39119":5,"39120":8,"39121":7,"39122":9,"39123":8,"39124":8,"39125":10,"39126":1,"39127":8,"39128":8,"39129":3,"39130":2,"39131":9,"39132":5,"39133":8,"39134":5,"39135":3,"39136":6,"39137":2,"39138":7,"39139":8,"39140":9,"39141":7,"39142":9,"39143":8,"39144":3,"39145":8,"39146":4,"39147":5,"39148":8,"39149":8,"39150":3,"39151":8,"39152":2,"39153":3,"39154":7,"39155":5,"39156":8,"39157":7,"39158":9,"39159":7,"39160":8,"39161":7,"39162":9,"39163":10,"39164":7,"39165":5,"39166":7,"39167":5,"39168":7,"39169":7,"39170":4,"39171":2,"39172":5,"39173":5,"39174":7,"39175":8,"39176":5,"39177":9,"39178":8,"39179":8,"39180":3,"39181":3,"39182":9,"39183":3,"39184":7,"39185":8,"39186":8,"39187":4,"39188":7,"39189":4,"39190":7,"39191":6,"39192":7,"39193":6,"39194":9,"39195":2,"39196":7,"39197":4,"39198":6,"39199":1,"39200":8,"39201":6,"39202":9,"39203":2,"39204":7,"39205":7,"39206":8,"39207":8,"39208":5,"39209":5,"39210":8,"39211":8,"39212":5,"39213":4,"39214":9,"39215":2,"39216":2,"39217":8,"39218":7,"39219":7,"39220":9,"39221":9,"39222":9,"39223":6,"39224":9,"39225":8,"39226":8,"39227":5,"39228":4,"39229":9,"39230":4,"39231":5,"39232":10,"39233":7,"39234":8,"39235":9,"39236":2,"39237":5,"39238":5,"39239":8,"39240":2,"39241":10,"39242":2,"39243":4,"39244":1,"39245":3,"39246":2,"39247":3,"39248":7,"39249":6,"39250":10,"39251":7,"39252":2,"39253":7,"39254":7,"39255":8,"39256":8,"39257":7,"39258":8,"39259":9,"39260":5,"39261":8,"39262":7,"39263":1,"39264":8,"39265":3,"39266":8,"39267":7,"39268":8,"39269":8,"39270":7,"39271":8,"39272":8,"39273":7,"39274":9,"39275":5,"39276":3,"39277":2,"39278":2,"39279":6,"39280":7,"39281":5,"39282":8,"39283":5,"39284":10,"39285":2,"39286":9,"39287":8,"39288":9,"39289":9,"39290":4,"39291":8,"39292":8,"39293":10,"39294":3,"39295":9,"39296":8,"39297":1,"39298":8,"39299":9,"39300":8,"39301":7,"39302":4,"39303":2,"39304":8,"39305":7,"39306":1,"39307":2,"39308":2,"39309":7,"39310":7,"39311":9,"39312":9,"39313":10,"39314":1,"39315":3,"39316":6,"39317":8,"39318":8,"39319":1,"39320":2,"39321":9,"39322":6,"39323":2,"39324":7,"39325":8,"39326":6,"39327":3,"39328":9,"39329":4,"39330":9,"39331":7,"39332":10,"39333":1,"39334":7,"39335":5,"39336":2,"39337":9,"39338":9,"39339":10,"39340":3,"39341":8,"39342":10,"39343":5,"39344":8,"39345":5,"39346":6,"39347":7,"39348":8,"39349":8,"39350":8,"39351":8,"39352":5,"39353":2,"39354":6,"39355":9,"39356":7,"39357":10,"39358":4,"39359":7,"39360":6,"39361":10,"39362":7,"39363":7,"39364":5,"39365":8,"39366":8,"39367":10,"39368":10,"39369":8,"39370":8,"39371":2,"39372":3,"39373":9,"39374":8,"39375":4,"39376":10,"39377":2,"39378":3,"39379":1,"39380":10,"39381":4,"39382":9,"39383":8,"39384":9,"39385":7,"39386":7,"39387":8,"39388":9,"39389":3,"39390":2,"39391":8,"39392":3,"39393":5,"39394":8,"39395":4,"39396":9,"39397":2,"39398":4,"39399":1,"39400":2,"39401":7,"39402":7,"39403":7,"39404":2,"39405":4,"39406":8,"39407":9,"39408":4,"39409":2,"39410":8,"39411":5,"39412":10,"39413":4,"39414":8,"39415":8,"39416":7,"39417":9,"39418":7,"39419":4,"39420":5,"39421":9,"39422":7,"39423":5,"39424":8,"39425":5,"39426":5,"39427":7,"39428":6,"39429":3,"39430":3,"39431":2,"39432":4,"39433":7,"39434":2,"39435":9,"39436":2,"39437":9,"39438":10,"39439":4,"39440":8,"39441":9,"39442":2,"39443":1,"39444":10,"39445":9,"39446":9,"39447":7,"39448":7,"39449":1,"39450":9,"39451":9,"39452":2,"39453":5,"39454":7,"39455":8,"39456":9,"39457":5,"39458":7,"39459":5,"39460":5,"39461":5,"39462":1,"39463":8,"39464":1,"39465":8,"39466":7,"39467":3,"39468":2,"39469":7,"39470":3,"39471":1,"39472":3,"39473":5,"39474":8,"39475":5,"39476":8,"39477":5,"39478":3,"39479":5,"39480":10,"39481":6,"39482":2,"39483":2,"39484":8,"39485":4,"39486":7,"39487":7,"39488":7,"39489":7,"39490":9,"39491":5,"39492":9,"39493":7,"39494":9,"39495":7,"39496":8,"39497":8,"39498":8,"39499":9,"39500":4,"39501":3,"39502":2,"39503":9,"39504":10,"39505":8,"39506":3,"39507":8,"39508":10,"39509":7,"39510":7,"39511":8,"39512":7,"39513":1,"39514":9,"39515":9,"39516":9,"39517":9,"39518":5,"39519":8,"39520":10,"39521":4,"39522":8,"39523":6,"39524":1,"39525":7,"39526":5,"39527":6,"39528":9,"39529":2,"39530":6,"39531":5,"39532":7,"39533":8,"39534":10,"39535":9,"39536":6,"39537":7,"39538":4,"39539":10,"39540":3,"39541":3,"39542":6,"39543":7,"39544":8,"39545":9,"39546":2,"39547":8,"39548":2,"39549":8,"39550":9,"39551":9,"39552":9,"39553":7,"39554":2,"39555":6,"39556":5,"39557":3,"39558":7,"39559":8,"39560":2,"39561":8,"39562":9,"39563":8,"39564":8,"39565":2,"39566":3,"39567":8,"39568":9,"39569":2,"39570":1,"39571":10,"39572":7,"39573":2,"39574":2,"39575":9,"39576":6,"39577":8,"39578":9,"39579":5,"39580":8,"39581":10,"39582":10,"39583":4,"39584":8,"39585":9,"39586":10,"39587":5,"39588":8,"39589":8,"39590":8,"39591":3,"39592":8,"39593":7,"39594":10,"39595":2,"39596":10,"39597":9,"39598":9,"39599":8,"39600":8,"39601":7,"39602":7,"39603":9,"39604":8,"39605":3,"39606":7,"39607":8,"39608":2,"39609":5,"39610":9,"39611":3,"39612":7,"39613":7,"39614":8,"39615":5,"39616":2,"39617":3,"39618":9,"39619":2,"39620":4,"39621":8,"39622":8,"39623":9,"39624":5,"39625":7,"39626":5,"39627":7,"39628":7,"39629":7,"39630":7,"39631":9,"39632":8,"39633":7,"39634":10,"39635":10,"39636":1,"39637":2,"39638":3,"39639":2,"39640":5,"39641":7,"39642":9,"39643":10,"39644":5,"39645":2,"39646":7,"39647":7,"39648":10,"39649":7,"39650":5,"39651":8,"39652":7,"39653":5,"39654":7,"39655":2,"39656":8,"39657":8,"39658":10,"39659":6,"39660":7,"39661":2,"39662":1,"39663":7,"39664":2,"39665":5,"39666":9,"39667":8,"39668":7,"39669":7,"39670":7,"39671":8,"39672":10,"39673":10,"39674":6,"39675":3,"39676":7,"39677":2,"39678":2,"39679":9,"39680":5,"39681":1,"39682":7,"39683":5,"39684":5,"39685":7,"39686":7,"39687":7,"39688":9,"39689":9,"39690":5,"39691":8,"39692":9,"39693":9,"39694":7,"39695":2,"39696":7,"39697":7,"39698":9,"39699":7,"39700":7,"39701":3,"39702":6,"39703":9,"39704":2,"39705":8,"39706":10,"39707":5,"39708":2,"39709":2,"39710":7,"39711":10,"39712":6,"39713":8,"39714":9,"39715":2,"39716":7,"39717":5,"39718":4,"39719":8,"39720":7,"39721":8,"39722":5,"39723":7,"39724":7,"39725":4,"39726":5,"39727":6,"39728":2,"39729":8,"39730":9,"39731":9,"39732":9,"39733":3,"39734":8,"39735":8,"39736":8,"39737":8,"39738":8,"39739":8,"39740":9,"39741":2,"39742":2,"39743":10,"39744":10,"39745":1,"39746":10,"39747":1,"39748":7,"39749":8,"39750":7,"39751":9,"39752":2,"39753":2,"39754":9,"39755":9,"39756":6,"39757":5,"39758":5,"39759":8,"39760":5,"39761":7,"39762":8,"39763":6,"39764":8,"39765":5,"39766":2,"39767":5,"39768":9,"39769":7,"39770":8,"39771":2,"39772":9,"39773":2,"39774":8,"39775":6,"39776":6,"39777":2,"39778":8,"39779":3,"39780":2,"39781":3,"39782":9,"39783":7,"39784":7,"39785":9,"39786":4,"39787":9,"39788":7,"39789":2,"39790":2,"39791":7,"39792":2,"39793":5,"39794":5,"39795":8,"39796":1,"39797":8,"39798":8,"39799":8,"39800":8,"39801":9,"39802":6,"39803":4,"39804":9,"39805":7,"39806":2,"39807":10,"39808":3,"39809":5,"39810":7,"39811":6,"39812":2,"39813":9,"39814":7,"39815":7,"39816":8,"39817":10,"39818":8,"39819":8,"39820":7,"39821":7,"39822":9,"39823":8,"39824":8,"39825":9,"39826":7,"39827":2,"39828":5,"39829":7,"39830":7,"39831":10,"39832":9,"39833":9,"39834":8,"39835":8,"39836":8,"39837":8,"39838":8,"39839":9,"39840":8,"39841":7,"39842":8,"39843":3,"39844":7,"39845":10,"39846":7,"39847":1,"39848":8,"39849":7,"39850":10,"39851":7,"39852":8,"39853":3,"39854":9,"39855":7,"39856":6,"39857":10,"39858":9,"39859":9,"39860":9,"39861":7,"39862":2,"39863":3,"39864":5,"39865":9,"39866":4,"39867":2,"39868":4,"39869":9,"39870":8,"39871":9,"39872":9,"39873":8,"39874":10,"39875":8,"39876":7,"39877":9,"39878":7,"39879":9,"39880":8,"39881":5,"39882":8,"39883":5,"39884":2,"39885":5,"39886":4,"39887":7,"39888":9,"39889":1,"39890":8,"39891":7,"39892":8,"39893":7,"39894":7,"39895":1,"39896":3,"39897":8,"39898":9,"39899":5,"39900":8,"39901":8,"39902":4,"39903":8,"39904":8,"39905":5,"39906":2,"39907":1,"39908":10,"39909":3,"39910":7,"39911":6,"39912":9,"39913":5,"39914":2,"39915":6,"39916":7,"39917":8,"39918":1,"39919":8,"39920":6,"39921":2,"39922":7,"39923":7,"39924":6,"39925":2,"39926":10,"39927":7,"39928":5,"39929":2,"39930":7,"39931":3,"39932":7,"39933":7,"39934":3,"39935":3,"39936":8,"39937":7,"39938":5,"39939":5,"39940":7,"39941":7,"39942":8,"39943":9,"39944":9,"39945":9,"39946":7,"39947":9,"39948":1,"39949":6,"39950":8,"39951":8,"39952":2,"39953":8,"39954":6,"39955":9,"39956":5,"39957":7,"39958":7,"39959":8,"39960":9,"39961":10,"39962":8,"39963":8,"39964":4,"39965":2,"39966":2,"39967":2,"39968":7,"39969":7,"39970":7,"39971":8,"39972":2,"39973":6,"39974":7,"39975":7,"39976":9,"39977":5,"39978":8,"39979":8,"39980":7,"39981":8,"39982":2,"39983":7,"39984":7,"39985":7,"39986":8,"39987":9,"39988":1,"39989":8,"39990":5,"39991":4,"39992":8,"39993":6,"39994":10,"39995":7,"39996":9,"39997":3,"39998":2,"39999":7,"40000":7,"40001":8,"40002":9,"40003":9,"40004":8,"40005":9,"40006":4,"40007":8,"40008":9,"40009":9,"40010":6,"40011":2,"40012":7,"40013":6,"40014":8,"40015":7,"40016":2,"40017":9,"40018":7,"40019":8,"40020":2,"40021":9,"40022":5,"40023":8,"40024":7,"40025":7,"40026":8,"40027":8,"40028":7,"40029":2,"40030":4,"40031":7,"40032":5,"40033":10,"40034":5,"40035":7,"40036":6,"40037":4,"40038":8,"40039":8,"40040":7,"40041":8,"40042":3,"40043":9,"40044":9,"40045":7,"40046":10,"40047":7,"40048":7,"40049":9,"40050":7,"40051":3,"40052":7,"40053":9,"40054":8,"40055":8,"40056":9,"40057":2,"40058":7,"40059":2,"40060":9,"40061":8,"40062":9,"40063":7,"40064":8,"40065":8,"40066":8,"40067":8,"40068":5,"40069":5,"40070":4,"40071":6,"40072":8,"40073":8,"40074":8,"40075":5,"40076":10,"40077":3,"40078":7,"40079":9,"40080":9,"40081":8,"40082":1,"40083":4,"40084":9,"40085":8,"40086":3,"40087":9,"40088":6,"40089":7,"40090":8,"40091":8,"40092":5,"40093":8,"40094":5,"40095":9,"40096":7,"40097":9,"40098":9,"40099":8,"40100":7,"40101":3,"40102":4,"40103":3,"40104":9,"40105":7,"40106":8,"40107":5,"40108":1,"40109":5,"40110":2,"40111":2,"40112":8,"40113":7,"40114":5,"40115":9,"40116":8,"40117":8,"40118":7,"40119":3,"40120":9,"40121":9,"40122":7,"40123":7,"40124":4,"40125":2,"40126":3,"40127":7,"40128":7,"40129":8,"40130":7,"40131":5,"40132":5,"40133":8,"40134":8,"40135":1,"40136":4,"40137":8,"40138":8,"40139":8,"40140":1,"40141":6,"40142":6,"40143":5,"40144":5,"40145":9,"40146":9,"40147":2,"40148":4,"40149":8,"40150":9,"40151":6,"40152":5,"40153":7,"40154":8,"40155":5,"40156":9,"40157":8,"40158":6,"40159":2,"40160":7,"40161":9,"40162":1,"40163":5,"40164":8,"40165":5,"40166":7,"40167":9,"40168":2,"40169":8,"40170":7,"40171":7,"40172":7,"40173":7,"40174":7,"40175":5,"40176":6,"40177":9,"40178":2,"40179":8,"40180":8,"40181":2,"40182":2,"40183":2,"40184":7,"40185":6,"40186":8,"40187":4,"40188":6,"40189":9,"40190":3,"40191":8,"40192":1,"40193":7,"40194":9,"40195":7,"40196":9,"40197":7,"40198":9,"40199":8,"40200":8,"40201":3,"40202":1,"40203":7,"40204":2,"40205":8,"40206":9,"40207":9,"40208":2,"40209":5,"40210":9,"40211":9,"40212":8,"40213":3,"40214":4,"40215":5,"40216":6,"40217":3,"40218":8,"40219":10,"40220":3,"40221":10,"40222":2,"40223":6,"40224":8,"40225":8,"40226":9,"40227":2,"40228":10,"40229":7,"40230":7,"40231":2,"40232":8,"40233":9,"40234":2,"40235":7,"40236":9,"40237":7,"40238":7,"40239":10,"40240":7,"40241":8,"40242":1,"40243":3,"40244":7,"40245":6,"40246":10,"40247":7,"40248":7,"40249":10,"40250":4,"40251":9,"40252":2,"40253":8,"40254":8,"40255":3,"40256":1,"40257":8,"40258":5,"40259":9,"40260":7,"40261":7,"40262":7,"40263":5,"40264":7,"40265":9,"40266":2,"40267":1,"40268":4,"40269":8,"40270":2,"40271":7,"40272":3,"40273":2,"40274":5,"40275":8,"40276":8,"40277":8,"40278":8,"40279":6,"40280":4,"40281":7,"40282":6,"40283":2,"40284":6,"40285":1,"40286":5,"40287":2,"40288":6,"40289":2,"40290":2,"40291":9,"40292":8,"40293":5,"40294":1,"40295":10,"40296":9,"40297":8,"40298":1,"40299":8,"40300":9,"40301":5,"40302":8,"40303":5,"40304":8,"40305":2,"40306":6,"40307":4,"40308":8,"40309":2,"40310":7,"40311":7,"40312":1,"40313":7,"40314":7,"40315":10,"40316":7,"40317":1,"40318":6,"40319":6,"40320":1,"40321":9,"40322":2,"40323":3,"40324":7,"40325":9,"40326":7,"40327":7,"40328":7,"40329":10,"40330":9,"40331":1,"40332":3,"40333":10,"40334":5,"40335":7,"40336":9,"40337":8,"40338":10,"40339":9,"40340":6,"40341":3,"40342":8,"40343":5,"40344":5,"40345":4,"40346":10,"40347":10,"40348":6,"40349":2,"40350":7,"40351":8,"40352":8,"40353":7,"40354":8,"40355":9,"40356":8,"40357":1,"40358":9,"40359":8,"40360":2,"40361":4,"40362":8,"40363":7,"40364":1,"40365":2,"40366":7,"40367":9,"40368":2,"40369":9,"40370":8,"40371":6,"40372":2,"40373":5,"40374":1,"40375":5,"40376":7,"40377":6,"40378":7,"40379":8,"40380":7,"40381":10,"40382":2,"40383":4,"40384":9,"40385":9,"40386":4,"40387":2,"40388":9,"40389":9,"40390":9,"40391":5,"40392":7,"40393":8,"40394":9,"40395":2,"40396":7,"40397":8,"40398":7,"40399":7,"40400":8,"40401":8,"40402":5,"40403":8,"40404":7,"40405":7,"40406":8,"40407":9,"40408":9,"40409":9,"40410":5,"40411":8,"40412":5,"40413":9,"40414":7,"40415":6,"40416":4,"40417":8,"40418":9,"40419":8,"40420":7,"40421":8,"40422":8,"40423":1,"40424":7,"40425":8,"40426":9,"40427":9,"40428":7,"40429":7,"40430":4,"40431":9,"40432":8,"40433":10,"40434":2,"40435":7,"40436":9,"40437":8,"40438":2,"40439":7,"40440":2,"40441":3,"40442":7,"40443":7,"40444":9,"40445":5,"40446":8,"40447":7,"40448":2,"40449":8,"40450":9,"40451":7,"40452":2,"40453":7,"40454":6,"40455":10,"40456":2,"40457":9,"40458":7,"40459":7,"40460":9,"40461":9,"40462":3,"40463":1,"40464":10,"40465":6,"40466":9,"40467":5,"40468":7,"40469":8,"40470":8,"40471":3,"40472":9,"40473":5,"40474":9,"40475":8,"40476":7,"40477":7,"40478":6,"40479":4,"40480":6,"40481":5,"40482":6,"40483":7,"40484":8,"40485":9,"40486":8,"40487":8,"40488":8,"40489":7,"40490":8,"40491":3,"40492":8,"40493":1,"40494":5,"40495":8,"40496":3,"40497":9,"40498":8,"40499":7,"40500":6,"40501":7,"40502":7,"40503":3,"40504":8,"40505":7,"40506":10,"40507":7,"40508":7,"40509":5,"40510":2,"40511":10,"40512":7,"40513":9,"40514":2,"40515":9,"40516":9,"40517":8,"40518":10,"40519":4,"40520":7,"40521":2,"40522":6,"40523":10,"40524":8,"40525":7,"40526":8,"40527":4,"40528":9,"40529":9,"40530":7,"40531":7,"40532":2,"40533":9,"40534":8,"40535":8,"40536":5,"40537":7,"40538":5,"40539":7,"40540":9,"40541":9,"40542":2,"40543":8,"40544":6,"40545":8,"40546":7,"40547":2,"40548":6,"40549":5,"40550":9,"40551":2,"40552":9,"40553":5,"40554":9,"40555":8,"40556":9,"40557":2,"40558":1,"40559":10,"40560":7,"40561":8,"40562":7,"40563":8,"40564":8,"40565":8,"40566":1,"40567":2,"40568":8,"40569":9,"40570":4,"40571":6,"40572":2,"40573":8,"40574":8,"40575":5,"40576":6,"40577":2,"40578":5,"40579":9,"40580":8,"40581":7,"40582":10,"40583":7,"40584":2,"40585":8,"40586":1,"40587":1,"40588":7,"40589":2,"40590":8,"40591":6,"40592":7,"40593":9,"40594":4,"40595":3,"40596":5,"40597":2,"40598":2,"40599":3,"40600":5,"40601":3,"40602":10,"40603":7,"40604":7,"40605":7,"40606":2,"40607":8,"40608":8,"40609":5,"40610":2,"40611":7,"40612":7,"40613":9,"40614":9,"40615":8,"40616":5,"40617":7,"40618":7,"40619":3,"40620":7,"40621":8,"40622":4,"40623":2,"40624":9,"40625":7,"40626":8,"40627":8,"40628":7,"40629":9,"40630":8,"40631":2,"40632":9,"40633":9,"40634":8,"40635":1,"40636":8,"40637":1,"40638":4,"40639":2,"40640":2,"40641":9,"40642":1,"40643":9,"40644":1,"40645":9,"40646":10,"40647":3,"40648":9,"40649":8,"40650":10,"40651":10,"40652":5,"40653":9,"40654":9,"40655":7,"40656":1,"40657":7,"40658":10,"40659":9,"40660":7,"40661":9,"40662":8,"40663":6,"40664":7,"40665":1,"40666":7,"40667":2,"40668":8,"40669":1,"40670":1,"40671":9,"40672":1,"40673":5,"40674":5,"40675":9,"40676":2,"40677":9,"40678":7,"40679":8,"40680":7,"40681":8,"40682":5,"40683":7,"40684":8,"40685":2,"40686":9,"40687":8,"40688":5,"40689":9,"40690":8,"40691":7,"40692":6,"40693":2,"40694":8,"40695":7,"40696":9,"40697":8,"40698":8,"40699":1,"40700":8,"40701":1,"40702":5,"40703":7,"40704":9,"40705":8,"40706":7,"40707":1,"40708":6,"40709":9,"40710":8,"40711":7,"40712":8,"40713":7,"40714":3,"40715":4,"40716":8,"40717":8,"40718":10,"40719":9,"40720":7,"40721":4,"40722":8,"40723":5,"40724":7,"40725":2,"40726":9,"40727":8,"40728":5,"40729":7,"40730":9,"40731":7,"40732":5,"40733":1,"40734":3,"40735":3,"40736":7,"40737":1,"40738":3,"40739":4,"40740":9,"40741":5,"40742":6,"40743":6,"40744":4,"40745":5,"40746":8,"40747":6,"40748":6,"40749":3,"40750":7,"40751":7,"40752":5,"40753":8,"40754":8,"40755":8,"40756":9,"40757":5,"40758":2,"40759":6,"40760":9,"40761":8,"40762":2,"40763":8,"40764":8,"40765":8,"40766":9,"40767":9,"40768":2,"40769":8,"40770":9,"40771":4,"40772":9,"40773":8,"40774":7,"40775":2,"40776":4,"40777":8,"40778":8,"40779":6,"40780":7,"40781":7,"40782":3,"40783":6,"40784":3,"40785":9,"40786":5,"40787":5,"40788":8,"40789":3,"40790":7,"40791":7,"40792":4,"40793":9,"40794":7,"40795":5,"40796":5,"40797":8,"40798":8,"40799":5,"40800":9,"40801":5,"40802":7,"40803":6,"40804":4,"40805":4,"40806":2,"40807":5,"40808":8,"40809":8,"40810":3,"40811":2,"40812":5,"40813":5,"40814":1,"40815":7,"40816":9,"40817":8,"40818":9,"40819":9,"40820":8,"40821":8,"40822":5,"40823":8,"40824":9,"40825":9,"40826":6,"40827":7,"40828":7,"40829":5,"40830":2,"40831":1,"40832":7,"40833":8,"40834":8,"40835":7,"40836":2,"40837":9,"40838":8,"40839":6,"40840":3,"40841":2,"40842":6,"40843":8,"40844":8,"40845":4,"40846":8,"40847":1,"40848":7,"40849":8,"40850":6,"40851":9,"40852":2,"40853":5,"40854":8,"40855":8,"40856":1,"40857":6,"40858":8,"40859":9,"40860":2,"40861":5,"40862":8,"40863":1,"40864":2,"40865":4,"40866":7,"40867":3,"40868":8,"40869":7,"40870":7,"40871":5,"40872":8,"40873":4,"40874":2,"40875":8,"40876":1,"40877":2,"40878":8,"40879":8,"40880":5,"40881":5,"40882":10,"40883":2,"40884":9,"40885":7,"40886":7,"40887":8,"40888":8,"40889":5,"40890":2,"40891":10,"40892":7,"40893":5,"40894":7,"40895":8,"40896":3,"40897":4,"40898":9,"40899":9,"40900":4,"40901":7,"40902":4,"40903":7,"40904":7,"40905":4,"40906":2,"40907":8,"40908":5,"40909":8,"40910":7,"40911":9,"40912":3,"40913":8,"40914":2,"40915":3,"40916":9,"40917":7,"40918":1,"40919":9,"40920":7,"40921":8,"40922":2,"40923":5,"40924":9,"40925":9,"40926":2,"40927":10,"40928":2,"40929":9,"40930":8,"40931":3,"40932":8,"40933":5,"40934":8,"40935":9,"40936":8,"40937":5,"40938":5,"40939":9,"40940":7,"40941":6,"40942":6,"40943":9,"40944":2,"40945":9,"40946":7,"40947":2,"40948":9,"40949":6,"40950":10,"40951":1,"40952":5,"40953":10,"40954":3,"40955":2,"40956":9,"40957":1,"40958":7,"40959":6,"40960":8,"40961":7,"40962":8,"40963":8,"40964":5,"40965":8,"40966":8,"40967":8,"40968":10,"40969":7,"40970":10,"40971":7,"40972":3,"40973":7,"40974":9,"40975":10,"40976":7,"40977":8,"40978":10,"40979":5,"40980":10,"40981":2,"40982":9,"40983":5,"40984":7,"40985":8,"40986":9,"40987":5,"40988":8,"40989":8,"40990":2,"40991":9,"40992":7,"40993":1,"40994":3,"40995":6,"40996":5,"40997":10,"40998":5,"40999":2,"41000":3,"41001":3,"41002":7,"41003":7,"41004":8,"41005":2,"41006":5,"41007":5,"41008":2,"41009":8,"41010":9,"41011":2,"41012":9,"41013":2,"41014":10,"41015":8,"41016":7,"41017":4,"41018":1,"41019":10,"41020":9,"41021":5,"41022":6,"41023":10,"41024":1,"41025":3,"41026":4,"41027":10,"41028":7,"41029":5,"41030":1,"41031":8,"41032":5,"41033":6,"41034":3,"41035":7,"41036":8,"41037":7,"41038":9,"41039":9,"41040":9,"41041":7,"41042":9,"41043":5,"41044":8,"41045":6,"41046":8,"41047":10,"41048":9,"41049":5,"41050":7,"41051":1,"41052":9,"41053":7,"41054":7,"41055":8,"41056":10,"41057":3,"41058":7,"41059":6,"41060":8,"41061":4,"41062":4,"41063":8,"41064":7,"41065":9,"41066":6,"41067":9,"41068":8,"41069":7,"41070":9,"41071":4,"41072":4,"41073":8,"41074":7,"41075":9,"41076":7,"41077":8,"41078":7,"41079":7,"41080":6,"41081":9,"41082":7,"41083":3,"41084":7,"41085":3,"41086":7,"41087":2,"41088":9,"41089":6,"41090":5,"41091":5,"41092":5,"41093":2,"41094":2,"41095":5,"41096":7,"41097":9,"41098":8,"41099":7,"41100":1,"41101":2,"41102":2,"41103":8,"41104":6,"41105":3,"41106":6,"41107":7,"41108":3,"41109":5,"41110":6,"41111":5,"41112":5,"41113":8,"41114":7,"41115":7,"41116":5,"41117":7,"41118":8,"41119":8,"41120":6,"41121":5,"41122":10,"41123":5,"41124":10,"41125":8,"41126":5,"41127":6,"41128":7,"41129":9,"41130":8,"41131":7,"41132":7,"41133":7,"41134":3,"41135":10,"41136":7,"41137":8,"41138":7,"41139":7,"41140":8,"41141":7,"41142":9,"41143":2,"41144":9,"41145":9,"41146":6,"41147":5,"41148":2,"41149":6,"41150":8,"41151":7,"41152":9,"41153":10,"41154":8,"41155":9,"41156":9,"41157":9,"41158":8,"41159":9,"41160":6,"41161":10,"41162":8,"41163":5,"41164":9,"41165":2,"41166":7,"41167":3,"41168":8,"41169":2,"41170":9,"41171":8,"41172":5,"41173":7,"41174":7,"41175":2,"41176":8,"41177":7,"41178":9,"41179":6,"41180":7,"41181":9,"41182":5,"41183":5,"41184":1,"41185":2,"41186":2,"41187":6,"41188":8,"41189":9,"41190":5,"41191":9,"41192":7,"41193":8,"41194":2,"41195":3,"41196":7,"41197":1,"41198":8,"41199":3,"41200":7,"41201":5,"41202":6,"41203":8,"41204":7,"41205":7,"41206":9,"41207":3,"41208":7,"41209":7,"41210":5,"41211":9,"41212":7,"41213":9,"41214":4,"41215":8,"41216":7,"41217":2,"41218":6,"41219":9,"41220":8,"41221":10,"41222":1,"41223":4,"41224":2,"41225":3,"41226":4,"41227":8,"41228":7,"41229":8,"41230":6,"41231":5,"41232":9,"41233":1,"41234":5,"41235":10,"41236":1,"41237":9,"41238":3,"41239":9,"41240":7,"41241":6,"41242":8,"41243":4,"41244":9,"41245":7,"41246":9,"41247":5,"41248":8,"41249":8,"41250":7,"41251":9,"41252":2,"41253":2,"41254":8,"41255":6,"41256":7,"41257":2,"41258":10,"41259":7,"41260":5,"41261":5,"41262":8,"41263":2,"41264":8,"41265":6,"41266":9,"41267":7,"41268":4,"41269":8,"41270":5,"41271":2,"41272":5,"41273":7,"41274":8,"41275":7,"41276":8,"41277":9,"41278":9,"41279":8,"41280":6,"41281":5,"41282":5,"41283":7,"41284":9,"41285":8,"41286":7,"41287":9,"41288":8,"41289":4,"41290":3,"41291":6,"41292":4,"41293":6,"41294":5,"41295":8,"41296":3,"41297":9,"41298":2,"41299":8,"41300":9,"41301":10,"41302":7,"41303":7,"41304":9,"41305":2,"41306":2,"41307":9,"41308":8,"41309":2,"41310":5,"41311":5,"41312":1,"41313":7,"41314":9,"41315":2,"41316":2,"41317":3,"41318":10,"41319":10,"41320":8,"41321":6,"41322":1,"41323":7,"41324":8,"41325":5,"41326":7,"41327":6,"41328":2,"41329":5,"41330":9,"41331":2,"41332":3,"41333":6,"41334":5,"41335":5,"41336":7,"41337":4,"41338":1,"41339":8,"41340":8,"41341":8,"41342":4,"41343":5,"41344":9,"41345":8,"41346":9,"41347":4,"41348":5,"41349":5,"41350":9,"41351":8,"41352":6,"41353":8,"41354":1,"41355":8,"41356":8,"41357":9,"41358":4,"41359":8,"41360":8,"41361":8,"41362":2,"41363":7,"41364":8,"41365":9,"41366":9,"41367":9,"41368":2,"41369":7,"41370":8,"41371":1,"41372":5,"41373":2,"41374":8,"41375":6,"41376":8,"41377":5,"41378":7,"41379":9,"41380":1,"41381":7,"41382":3,"41383":8,"41384":9,"41385":3,"41386":2,"41387":9,"41388":10,"41389":8,"41390":9,"41391":10,"41392":7,"41393":8,"41394":8,"41395":2,"41396":7,"41397":7,"41398":5,"41399":7,"41400":2,"41401":9,"41402":6,"41403":1,"41404":4,"41405":7,"41406":2,"41407":2,"41408":7,"41409":8,"41410":5,"41411":8,"41412":9,"41413":7,"41414":8,"41415":2,"41416":3,"41417":3,"41418":6,"41419":9,"41420":2,"41421":8,"41422":5,"41423":8,"41424":8,"41425":4,"41426":1,"41427":5,"41428":9,"41429":7,"41430":8,"41431":9,"41432":5,"41433":3,"41434":5,"41435":1,"41436":10,"41437":9,"41438":5,"41439":1,"41440":3,"41441":5,"41442":9,"41443":6,"41444":9,"41445":6,"41446":8,"41447":1,"41448":5,"41449":8,"41450":8,"41451":10,"41452":2,"41453":7,"41454":9,"41455":7,"41456":4,"41457":2,"41458":6,"41459":9,"41460":5,"41461":8,"41462":2,"41463":5,"41464":5,"41465":7,"41466":8,"41467":2,"41468":7,"41469":5,"41470":9,"41471":1,"41472":7,"41473":8,"41474":1,"41475":9,"41476":7,"41477":8,"41478":4,"41479":2,"41480":9,"41481":1,"41482":8,"41483":8,"41484":8,"41485":6,"41486":9,"41487":7,"41488":10,"41489":2,"41490":7,"41491":5,"41492":9,"41493":1,"41494":2,"41495":7,"41496":8,"41497":1,"41498":5,"41499":10,"41500":2,"41501":9,"41502":9,"41503":7,"41504":7,"41505":8,"41506":5,"41507":5,"41508":5,"41509":7,"41510":8,"41511":2,"41512":9,"41513":9,"41514":7,"41515":5,"41516":7,"41517":3,"41518":8,"41519":7,"41520":4,"41521":7,"41522":9,"41523":3,"41524":8,"41525":8,"41526":8,"41527":2,"41528":2,"41529":8,"41530":7,"41531":8,"41532":2,"41533":8,"41534":10,"41535":4,"41536":4,"41537":9,"41538":8,"41539":9,"41540":8,"41541":7,"41542":5,"41543":2,"41544":7,"41545":10,"41546":8,"41547":3,"41548":9,"41549":2,"41550":8,"41551":5,"41552":7,"41553":3,"41554":7,"41555":5,"41556":7,"41557":8,"41558":7,"41559":2,"41560":7,"41561":4,"41562":7,"41563":7,"41564":9,"41565":2,"41566":8,"41567":7,"41568":8,"41569":8,"41570":4,"41571":3,"41572":1,"41573":7,"41574":7,"41575":10,"41576":9,"41577":5,"41578":7,"41579":2,"41580":8,"41581":9,"41582":2,"41583":5,"41584":6,"41585":3,"41586":5,"41587":3,"41588":9,"41589":9,"41590":5,"41591":2,"41592":8,"41593":9,"41594":8,"41595":10,"41596":1,"41597":8,"41598":4,"41599":7,"41600":10,"41601":9,"41602":1,"41603":7,"41604":2,"41605":9,"41606":5,"41607":5,"41608":8,"41609":6,"41610":8,"41611":2,"41612":2,"41613":9,"41614":8,"41615":7,"41616":6,"41617":9,"41618":10,"41619":3,"41620":1,"41621":9,"41622":9,"41623":5,"41624":1,"41625":8,"41626":5,"41627":9,"41628":4,"41629":5,"41630":5,"41631":5,"41632":8,"41633":1,"41634":8,"41635":7,"41636":6,"41637":5,"41638":8,"41639":3,"41640":2,"41641":1,"41642":2,"41643":9,"41644":7,"41645":9,"41646":2,"41647":1,"41648":9,"41649":3,"41650":6,"41651":5,"41652":2,"41653":8,"41654":9,"41655":3,"41656":2,"41657":7,"41658":9,"41659":10,"41660":7,"41661":7,"41662":6,"41663":1,"41664":6,"41665":7,"41666":6,"41667":8,"41668":8,"41669":6,"41670":7,"41671":7,"41672":7,"41673":7,"41674":4,"41675":7,"41676":5,"41677":3,"41678":7,"41679":7,"41680":7,"41681":5,"41682":3,"41683":2,"41684":7,"41685":6,"41686":8,"41687":5,"41688":5,"41689":3,"41690":5,"41691":8,"41692":10,"41693":8,"41694":8,"41695":2,"41696":2,"41697":6,"41698":9,"41699":7,"41700":8,"41701":6,"41702":6,"41703":4,"41704":5,"41705":1,"41706":4,"41707":1,"41708":2,"41709":9,"41710":7,"41711":7,"41712":7,"41713":2,"41714":8,"41715":7,"41716":8,"41717":9,"41718":5,"41719":7,"41720":8,"41721":2,"41722":6,"41723":1,"41724":7,"41725":6,"41726":7,"41727":7,"41728":2,"41729":8,"41730":9,"41731":3,"41732":2,"41733":7,"41734":7,"41735":7,"41736":5,"41737":5,"41738":7,"41739":9,"41740":9,"41741":8,"41742":8,"41743":8,"41744":10,"41745":9,"41746":9,"41747":2,"41748":8,"41749":5,"41750":8,"41751":2,"41752":2,"41753":5,"41754":10,"41755":10,"41756":8,"41757":7,"41758":8,"41759":4,"41760":3,"41761":9,"41762":9,"41763":8,"41764":5,"41765":10,"41766":5,"41767":5,"41768":6,"41769":2,"41770":10,"41771":8,"41772":2,"41773":9,"41774":6,"41775":5,"41776":9,"41777":3,"41778":9,"41779":9,"41780":8,"41781":8,"41782":8,"41783":9,"41784":8,"41785":9,"41786":9,"41787":10,"41788":3,"41789":7,"41790":10,"41791":3,"41792":6,"41793":7,"41794":8,"41795":9,"41796":1,"41797":7,"41798":4,"41799":10,"41800":5,"41801":2,"41802":10,"41803":8,"41804":5,"41805":4,"41806":4,"41807":7,"41808":8,"41809":4,"41810":10,"41811":7,"41812":8,"41813":9,"41814":8,"41815":4,"41816":8,"41817":7,"41818":9,"41819":7,"41820":9,"41821":8,"41822":2,"41823":1,"41824":9,"41825":7,"41826":7,"41827":7,"41828":9,"41829":9,"41830":8,"41831":9,"41832":5,"41833":6,"41834":7,"41835":4,"41836":7,"41837":1,"41838":8,"41839":1,"41840":8,"41841":7,"41842":7,"41843":2,"41844":9,"41845":2,"41846":8,"41847":8,"41848":1,"41849":8,"41850":2,"41851":10,"41852":2,"41853":8,"41854":5,"41855":9,"41856":10,"41857":2,"41858":2,"41859":6,"41860":8,"41861":1,"41862":3,"41863":2,"41864":7,"41865":7,"41866":8,"41867":7,"41868":8,"41869":10,"41870":3,"41871":3,"41872":8,"41873":8,"41874":7,"41875":7,"41876":8,"41877":5,"41878":3,"41879":3,"41880":8,"41881":1,"41882":8,"41883":10,"41884":8,"41885":7,"41886":10,"41887":7,"41888":9,"41889":9,"41890":7,"41891":8,"41892":7,"41893":2,"41894":1,"41895":4,"41896":8,"41897":2,"41898":2,"41899":7,"41900":3,"41901":4,"41902":2,"41903":1,"41904":8,"41905":7,"41906":9,"41907":8,"41908":9,"41909":9,"41910":4,"41911":4,"41912":3,"41913":7,"41914":8,"41915":7,"41916":1,"41917":10,"41918":5,"41919":9,"41920":4,"41921":7,"41922":8,"41923":8,"41924":7,"41925":5,"41926":6,"41927":3,"41928":4,"41929":8,"41930":8,"41931":7,"41932":7,"41933":3,"41934":8,"41935":5,"41936":7,"41937":7,"41938":3,"41939":8,"41940":4,"41941":8,"41942":8,"41943":5,"41944":10,"41945":1,"41946":2,"41947":10,"41948":9,"41949":8,"41950":7,"41951":9,"41952":5,"41953":2,"41954":8,"41955":8,"41956":8,"41957":9,"41958":5,"41959":9,"41960":7,"41961":9,"41962":8,"41963":6,"41964":6,"41965":6,"41966":5,"41967":1,"41968":7,"41969":7,"41970":2,"41971":7,"41972":7,"41973":5,"41974":5,"41975":9,"41976":8,"41977":2,"41978":7,"41979":1,"41980":5,"41981":10,"41982":4,"41983":8,"41984":3,"41985":10,"41986":9,"41987":8,"41988":9,"41989":6,"41990":5,"41991":8,"41992":2,"41993":2,"41994":9,"41995":8,"41996":7,"41997":6,"41998":5,"41999":9,"42000":2,"42001":10,"42002":7,"42003":7,"42004":5,"42005":2,"42006":2,"42007":9,"42008":7,"42009":7,"42010":5,"42011":2,"42012":7,"42013":4,"42014":1,"42015":5,"42016":8,"42017":8,"42018":5,"42019":8,"42020":2,"42021":7,"42022":4,"42023":6,"42024":2,"42025":7,"42026":4,"42027":8,"42028":7,"42029":8,"42030":7,"42031":2,"42032":2,"42033":7,"42034":8,"42035":8,"42036":7,"42037":7,"42038":6,"42039":5,"42040":7,"42041":2,"42042":4,"42043":9,"42044":7,"42045":2,"42046":5,"42047":5,"42048":9,"42049":7,"42050":3,"42051":8,"42052":8,"42053":9,"42054":8,"42055":8,"42056":7,"42057":8,"42058":9,"42059":7,"42060":4,"42061":5,"42062":7,"42063":1,"42064":5,"42065":2,"42066":2,"42067":8,"42068":9,"42069":2,"42070":5,"42071":7,"42072":3,"42073":8,"42074":9,"42075":7,"42076":5,"42077":6,"42078":9,"42079":7,"42080":2,"42081":4,"42082":7,"42083":3,"42084":9,"42085":3,"42086":7,"42087":8,"42088":8,"42089":7,"42090":8,"42091":2,"42092":7,"42093":4,"42094":7,"42095":2,"42096":8,"42097":3,"42098":2,"42099":2,"42100":2,"42101":3,"42102":8,"42103":9,"42104":2,"42105":8,"42106":9,"42107":8,"42108":1,"42109":2,"42110":8,"42111":8,"42112":9,"42113":8,"42114":6,"42115":8,"42116":2,"42117":9,"42118":10,"42119":9,"42120":9,"42121":2,"42122":4,"42123":9,"42124":7,"42125":6,"42126":8,"42127":4,"42128":9,"42129":8,"42130":7,"42131":3,"42132":2,"42133":3,"42134":8,"42135":5,"42136":5,"42137":9,"42138":7,"42139":10,"42140":6,"42141":7,"42142":7,"42143":1,"42144":7,"42145":5,"42146":10,"42147":2,"42148":9,"42149":6,"42150":8,"42151":1,"42152":8,"42153":3,"42154":5,"42155":8,"42156":8,"42157":5,"42158":7,"42159":9,"42160":5,"42161":2,"42162":7,"42163":5,"42164":7,"42165":3,"42166":2,"42167":8,"42168":1,"42169":8,"42170":3,"42171":7,"42172":8,"42173":5,"42174":8,"42175":8,"42176":4,"42177":9,"42178":2,"42179":9,"42180":7,"42181":3,"42182":8,"42183":5,"42184":7,"42185":7,"42186":8,"42187":7,"42188":10,"42189":5,"42190":7,"42191":4,"42192":7,"42193":9,"42194":7,"42195":6,"42196":8,"42197":7,"42198":5,"42199":7,"42200":8,"42201":9,"42202":6,"42203":8,"42204":6,"42205":8,"42206":5,"42207":7,"42208":4,"42209":9,"42210":9,"42211":8,"42212":1,"42213":7,"42214":8,"42215":5,"42216":6,"42217":9,"42218":2,"42219":7,"42220":9,"42221":9,"42222":8,"42223":7,"42224":7,"42225":9,"42226":4,"42227":8,"42228":9,"42229":5,"42230":7,"42231":7,"42232":4,"42233":9,"42234":10,"42235":8,"42236":8,"42237":8,"42238":1,"42239":8,"42240":1,"42241":5,"42242":4,"42243":3,"42244":9,"42245":5,"42246":8,"42247":5,"42248":7,"42249":9,"42250":5,"42251":7,"42252":9,"42253":4,"42254":8,"42255":9,"42256":8,"42257":1,"42258":7,"42259":2,"42260":3,"42261":9,"42262":7,"42263":6,"42264":2,"42265":7,"42266":2,"42267":10,"42268":7,"42269":8,"42270":6,"42271":2,"42272":5,"42273":6,"42274":7,"42275":7,"42276":6,"42277":1,"42278":8,"42279":9,"42280":5,"42281":6,"42282":7,"42283":8,"42284":7,"42285":1,"42286":4,"42287":7,"42288":2,"42289":4,"42290":7,"42291":6,"42292":8,"42293":5,"42294":2,"42295":2,"42296":9,"42297":9,"42298":4,"42299":9,"42300":7,"42301":7,"42302":6,"42303":3,"42304":5,"42305":4,"42306":9,"42307":3,"42308":2,"42309":9,"42310":2,"42311":9,"42312":7,"42313":8,"42314":3,"42315":8,"42316":10,"42317":7,"42318":7,"42319":9,"42320":8,"42321":10,"42322":6,"42323":7,"42324":1,"42325":2,"42326":8,"42327":7,"42328":7,"42329":10,"42330":10,"42331":9,"42332":8,"42333":7,"42334":10,"42335":7,"42336":4,"42337":2,"42338":8,"42339":7,"42340":8,"42341":8,"42342":8,"42343":3,"42344":2,"42345":7,"42346":8,"42347":9,"42348":7,"42349":2,"42350":7,"42351":4,"42352":9,"42353":2,"42354":7,"42355":5,"42356":2,"42357":7,"42358":5,"42359":2,"42360":8,"42361":7,"42362":5,"42363":3,"42364":8,"42365":5,"42366":7,"42367":10,"42368":7,"42369":8,"42370":4,"42371":3,"42372":8,"42373":7,"42374":8,"42375":9,"42376":7,"42377":9,"42378":8,"42379":9,"42380":7,"42381":8,"42382":8,"42383":5,"42384":9,"42385":8,"42386":9,"42387":8,"42388":7,"42389":9,"42390":9,"42391":4,"42392":7,"42393":8,"42394":7,"42395":2,"42396":4,"42397":6,"42398":7,"42399":7,"42400":7,"42401":9,"42402":7,"42403":9,"42404":9,"42405":10,"42406":2,"42407":5,"42408":5,"42409":9,"42410":8,"42411":5,"42412":8,"42413":5,"42414":4,"42415":7,"42416":8,"42417":9,"42418":10,"42419":9,"42420":7,"42421":10,"42422":9,"42423":9,"42424":7,"42425":8,"42426":7,"42427":10,"42428":8,"42429":7,"42430":9,"42431":9,"42432":4,"42433":9,"42434":2,"42435":9,"42436":2,"42437":7,"42438":9,"42439":5,"42440":3,"42441":1,"42442":8,"42443":9,"42444":1,"42445":6,"42446":7,"42447":2,"42448":9,"42449":8,"42450":7,"42451":10,"42452":8,"42453":5,"42454":4,"42455":9,"42456":10,"42457":7,"42458":9,"42459":8,"42460":2,"42461":7,"42462":6,"42463":8,"42464":8,"42465":7,"42466":9,"42467":5,"42468":5,"42469":9,"42470":9,"42471":8,"42472":7,"42473":2,"42474":9,"42475":9,"42476":10,"42477":2,"42478":4,"42479":4,"42480":9,"42481":3,"42482":1,"42483":7,"42484":7,"42485":3,"42486":5,"42487":9,"42488":7,"42489":2,"42490":9,"42491":10,"42492":9,"42493":7,"42494":8,"42495":7,"42496":8,"42497":8,"42498":1,"42499":6,"42500":10,"42501":5,"42502":8,"42503":7,"42504":6,"42505":7,"42506":8,"42507":5,"42508":9,"42509":7,"42510":3,"42511":9,"42512":7,"42513":8,"42514":6,"42515":7,"42516":2,"42517":3,"42518":9,"42519":6,"42520":5,"42521":7,"42522":5,"42523":4,"42524":8,"42525":7,"42526":2,"42527":8,"42528":5,"42529":9,"42530":2,"42531":8,"42532":2,"42533":3,"42534":5,"42535":8,"42536":4,"42537":8,"42538":8,"42539":8,"42540":8,"42541":7,"42542":8,"42543":3,"42544":5,"42545":2,"42546":6,"42547":5,"42548":8,"42549":3,"42550":8,"42551":4,"42552":1,"42553":8,"42554":5,"42555":1,"42556":8,"42557":7,"42558":4,"42559":7,"42560":8,"42561":8,"42562":9,"42563":8,"42564":2,"42565":7,"42566":4,"42567":7,"42568":4,"42569":2,"42570":8,"42571":9,"42572":8,"42573":9,"42574":8,"42575":7,"42576":7,"42577":8,"42578":9,"42579":9,"42580":4,"42581":5,"42582":7,"42583":7,"42584":8,"42585":5,"42586":3,"42587":9,"42588":4,"42589":8,"42590":2,"42591":2,"42592":3,"42593":9,"42594":8,"42595":2,"42596":5,"42597":7,"42598":7,"42599":5,"42600":4,"42601":5,"42602":2,"42603":7,"42604":7,"42605":9,"42606":9,"42607":7,"42608":8,"42609":4,"42610":4,"42611":7,"42612":5,"42613":3,"42614":8,"42615":9,"42616":7,"42617":5,"42618":4,"42619":7,"42620":7,"42621":6,"42622":7,"42623":1,"42624":4,"42625":9,"42626":3,"42627":6,"42628":8,"42629":8,"42630":6,"42631":7,"42632":2,"42633":8,"42634":7,"42635":8,"42636":2,"42637":10,"42638":4,"42639":9,"42640":8,"42641":5,"42642":9,"42643":3,"42644":7,"42645":9,"42646":3,"42647":3,"42648":1,"42649":7,"42650":8,"42651":9,"42652":8,"42653":9,"42654":7,"42655":8,"42656":9,"42657":8,"42658":9,"42659":5,"42660":5,"42661":8,"42662":6,"42663":7,"42664":7,"42665":4,"42666":1,"42667":9,"42668":7,"42669":7,"42670":7,"42671":8,"42672":7,"42673":5,"42674":7,"42675":8,"42676":4,"42677":5,"42678":6,"42679":9,"42680":9,"42681":8,"42682":10,"42683":9,"42684":7,"42685":7,"42686":7,"42687":10,"42688":9,"42689":5,"42690":10,"42691":6,"42692":7,"42693":10,"42694":8,"42695":8,"42696":4,"42697":1,"42698":7,"42699":1,"42700":8,"42701":8,"42702":1,"42703":8,"42704":5,"42705":8,"42706":8,"42707":9,"42708":5,"42709":8,"42710":3,"42711":7,"42712":6,"42713":8,"42714":7,"42715":10,"42716":7,"42717":10,"42718":1,"42719":8,"42720":2,"42721":5,"42722":10,"42723":9,"42724":7,"42725":3,"42726":8,"42727":8,"42728":2,"42729":9,"42730":5,"42731":8,"42732":1,"42733":2,"42734":3,"42735":9,"42736":9,"42737":2,"42738":8,"42739":4,"42740":3,"42741":8,"42742":2,"42743":3,"42744":2,"42745":10,"42746":8,"42747":8,"42748":7,"42749":2,"42750":9,"42751":7,"42752":7,"42753":1,"42754":7,"42755":5,"42756":10,"42757":8,"42758":7,"42759":2,"42760":7,"42761":8,"42762":3,"42763":5,"42764":9,"42765":9,"42766":7,"42767":8,"42768":9,"42769":7,"42770":6,"42771":7,"42772":4,"42773":6,"42774":7,"42775":1,"42776":3,"42777":1,"42778":9,"42779":5,"42780":9,"42781":9,"42782":7,"42783":4,"42784":8,"42785":8,"42786":5,"42787":8,"42788":2,"42789":5,"42790":3,"42791":7,"42792":1,"42793":5,"42794":10,"42795":6,"42796":7,"42797":8,"42798":7,"42799":8,"42800":3,"42801":8,"42802":5,"42803":2,"42804":7,"42805":3,"42806":7,"42807":7,"42808":2,"42809":5,"42810":7,"42811":9,"42812":7,"42813":10,"42814":5,"42815":9,"42816":6,"42817":5,"42818":8,"42819":4,"42820":8,"42821":8,"42822":8,"42823":9,"42824":4,"42825":7,"42826":9,"42827":8,"42828":5,"42829":8,"42830":8,"42831":1,"42832":8,"42833":7,"42834":2,"42835":2,"42836":8,"42837":3,"42838":7,"42839":7,"42840":2,"42841":5,"42842":9,"42843":3,"42844":3,"42845":8,"42846":3,"42847":10,"42848":8,"42849":8,"42850":7,"42851":8,"42852":7,"42853":2,"42854":7,"42855":3,"42856":10,"42857":8,"42858":10,"42859":5,"42860":4,"42861":7,"42862":9,"42863":8,"42864":6,"42865":7,"42866":8,"42867":8,"42868":8,"42869":10,"42870":2,"42871":4,"42872":2,"42873":3,"42874":7,"42875":8,"42876":9,"42877":8,"42878":7,"42879":7,"42880":2,"42881":9,"42882":8,"42883":5,"42884":8,"42885":9,"42886":7,"42887":7,"42888":8,"42889":5,"42890":7,"42891":3,"42892":9,"42893":4,"42894":8,"42895":2,"42896":10,"42897":10,"42898":8,"42899":10,"42900":3,"42901":1,"42902":1,"42903":8,"42904":5,"42905":5,"42906":9,"42907":2,"42908":9,"42909":8,"42910":1,"42911":5,"42912":1,"42913":8,"42914":1,"42915":7,"42916":9,"42917":9,"42918":5,"42919":9,"42920":2,"42921":4,"42922":7,"42923":7,"42924":4,"42925":2,"42926":10,"42927":8,"42928":1,"42929":2,"42930":7,"42931":8,"42932":2,"42933":8,"42934":8,"42935":2,"42936":9,"42937":8,"42938":2,"42939":1,"42940":7,"42941":10,"42942":5,"42943":10,"42944":2,"42945":7,"42946":9,"42947":9,"42948":9,"42949":7,"42950":9,"42951":3,"42952":7,"42953":9,"42954":7,"42955":2,"42956":7,"42957":5,"42958":2,"42959":9,"42960":1,"42961":6,"42962":5,"42963":8,"42964":7,"42965":4,"42966":2,"42967":7,"42968":8,"42969":9,"42970":3,"42971":1,"42972":5,"42973":2,"42974":7,"42975":8,"42976":8,"42977":4,"42978":4,"42979":8,"42980":6,"42981":5,"42982":8,"42983":5,"42984":3,"42985":5,"42986":7,"42987":1,"42988":9,"42989":4,"42990":7,"42991":2,"42992":7,"42993":8,"42994":5,"42995":8,"42996":8,"42997":9,"42998":6,"42999":5,"43000":5,"43001":4,"43002":8,"43003":7,"43004":5,"43005":9,"43006":7,"43007":8,"43008":9,"43009":9,"43010":5,"43011":7,"43012":9,"43013":2,"43014":10,"43015":6,"43016":5,"43017":8,"43018":8,"43019":10,"43020":7,"43021":5,"43022":9,"43023":4,"43024":7,"43025":7,"43026":9,"43027":8,"43028":7,"43029":7,"43030":7,"43031":2,"43032":8,"43033":9,"43034":3,"43035":5,"43036":3,"43037":9,"43038":5,"43039":7,"43040":1,"43041":7,"43042":5,"43043":7,"43044":9,"43045":7,"43046":9,"43047":2,"43048":10,"43049":8,"43050":5,"43051":2,"43052":9,"43053":7,"43054":3,"43055":3,"43056":2,"43057":10,"43058":7,"43059":8,"43060":2,"43061":2,"43062":1,"43063":9,"43064":8,"43065":2,"43066":4,"43067":8,"43068":8,"43069":6,"43070":1,"43071":7,"43072":9,"43073":3,"43074":4,"43075":3,"43076":8,"43077":3,"43078":2,"43079":10,"43080":7,"43081":10,"43082":8,"43083":8,"43084":3,"43085":2,"43086":9,"43087":7,"43088":8,"43089":4,"43090":5,"43091":7,"43092":7,"43093":4,"43094":3,"43095":8,"43096":2,"43097":7,"43098":5,"43099":1,"43100":9,"43101":9,"43102":8,"43103":8,"43104":8,"43105":2,"43106":7,"43107":1,"43108":7,"43109":5,"43110":7,"43111":7,"43112":8,"43113":7,"43114":8,"43115":2,"43116":7,"43117":1,"43118":4,"43119":2,"43120":2,"43121":8,"43122":8,"43123":4,"43124":7,"43125":5,"43126":9,"43127":6,"43128":10,"43129":9,"43130":2,"43131":2,"43132":8,"43133":8,"43134":10,"43135":4,"43136":8,"43137":7,"43138":10,"43139":5,"43140":10,"43141":1,"43142":5,"43143":8,"43144":8,"43145":7,"43146":8,"43147":7,"43148":9,"43149":8,"43150":2,"43151":9,"43152":1,"43153":8,"43154":5,"43155":5,"43156":8,"43157":9,"43158":9,"43159":4,"43160":5,"43161":9,"43162":5,"43163":2,"43164":7,"43165":7,"43166":8,"43167":5,"43168":6,"43169":7,"43170":8,"43171":8,"43172":10,"43173":3,"43174":7,"43175":3,"43176":9,"43177":1,"43178":8,"43179":7,"43180":7,"43181":7,"43182":3,"43183":8,"43184":9,"43185":8,"43186":8,"43187":1,"43188":8,"43189":8,"43190":8,"43191":3,"43192":7,"43193":8,"43194":7,"43195":9,"43196":4,"43197":7,"43198":10,"43199":4,"43200":7,"43201":9,"43202":7,"43203":7,"43204":5,"43205":8,"43206":8,"43207":7,"43208":10,"43209":2,"43210":9,"43211":2,"43212":8,"43213":6,"43214":4,"43215":2,"43216":9,"43217":8,"43218":3,"43219":4,"43220":9,"43221":4,"43222":10,"43223":9,"43224":4,"43225":9,"43226":7,"43227":6,"43228":7,"43229":5,"43230":5,"43231":7,"43232":1,"43233":10,"43234":8,"43235":7,"43236":7,"43237":5,"43238":9,"43239":8,"43240":5,"43241":8,"43242":5,"43243":7,"43244":1,"43245":3,"43246":8,"43247":8,"43248":8,"43249":10,"43250":4,"43251":9,"43252":2,"43253":9,"43254":10,"43255":5,"43256":1,"43257":9,"43258":2,"43259":7,"43260":8,"43261":6,"43262":2,"43263":9,"43264":1,"43265":3,"43266":5,"43267":7,"43268":2,"43269":2,"43270":8,"43271":7,"43272":4,"43273":10,"43274":5,"43275":1,"43276":8,"43277":9,"43278":7,"43279":8,"43280":4,"43281":8,"43282":7,"43283":7,"43284":3,"43285":7,"43286":7,"43287":9,"43288":4,"43289":2,"43290":4,"43291":5,"43292":4,"43293":7,"43294":2,"43295":2,"43296":9,"43297":1,"43298":4,"43299":8,"43300":1,"43301":7,"43302":7,"43303":8,"43304":6,"43305":9,"43306":7,"43307":8,"43308":1,"43309":1,"43310":8,"43311":7,"43312":7,"43313":1,"43314":4,"43315":5,"43316":4,"43317":2,"43318":3,"43319":8,"43320":9,"43321":1,"43322":4,"43323":9,"43324":2,"43325":5,"43326":3,"43327":8,"43328":10,"43329":7,"43330":8,"43331":6,"43332":8,"43333":6,"43334":8,"43335":8,"43336":7,"43337":7,"43338":1,"43339":8,"43340":9,"43341":4,"43342":8,"43343":10,"43344":8,"43345":8,"43346":8,"43347":9,"43348":7,"43349":8,"43350":9,"43351":8,"43352":4,"43353":7,"43354":1,"43355":7,"43356":8,"43357":7,"43358":2,"43359":5,"43360":7,"43361":5,"43362":9,"43363":5,"43364":4,"43365":5,"43366":8,"43367":8,"43368":4,"43369":9,"43370":7,"43371":8,"43372":4,"43373":7,"43374":3,"43375":10,"43376":9,"43377":9,"43378":7,"43379":7,"43380":9,"43381":8,"43382":3,"43383":9,"43384":7,"43385":8,"43386":7,"43387":1,"43388":3,"43389":8,"43390":9,"43391":5,"43392":8,"43393":2,"43394":4,"43395":5,"43396":7,"43397":6,"43398":6,"43399":7,"43400":8,"43401":8,"43402":6,"43403":7,"43404":5,"43405":2,"43406":2,"43407":3,"43408":1,"43409":6,"43410":5,"43411":3,"43412":4,"43413":2,"43414":8,"43415":1,"43416":3,"43417":3,"43418":8,"43419":2,"43420":8,"43421":7,"43422":9,"43423":9,"43424":7,"43425":1,"43426":7,"43427":5,"43428":5,"43429":8,"43430":5,"43431":7,"43432":2,"43433":8,"43434":2,"43435":8,"43436":7,"43437":8,"43438":2,"43439":8,"43440":7,"43441":5,"43442":5,"43443":7,"43444":2,"43445":2,"43446":8,"43447":1,"43448":4,"43449":10,"43450":8,"43451":7,"43452":1,"43453":8,"43454":8,"43455":8,"43456":2,"43457":3,"43458":8,"43459":8,"43460":2,"43461":1,"43462":9,"43463":8,"43464":5,"43465":7,"43466":8,"43467":4,"43468":8,"43469":5,"43470":2,"43471":2,"43472":9,"43473":8,"43474":4,"43475":9,"43476":8,"43477":3,"43478":8,"43479":2,"43480":8,"43481":1,"43482":7,"43483":7,"43484":9,"43485":4,"43486":9,"43487":9,"43488":7,"43489":7,"43490":7,"43491":8,"43492":4,"43493":4,"43494":4,"43495":7,"43496":8,"43497":6,"43498":2,"43499":7,"43500":9,"43501":7,"43502":5,"43503":3,"43504":2,"43505":8,"43506":1,"43507":2,"43508":6,"43509":8,"43510":9,"43511":7,"43512":9,"43513":5,"43514":9,"43515":7,"43516":8,"43517":9,"43518":7,"43519":5,"43520":7,"43521":2,"43522":2,"43523":3,"43524":8,"43525":10,"43526":8,"43527":10,"43528":1,"43529":8,"43530":2,"43531":6,"43532":5,"43533":7,"43534":8,"43535":7,"43536":1,"43537":9,"43538":7,"43539":7,"43540":7,"43541":8,"43542":7,"43543":8,"43544":3,"43545":9,"43546":8,"43547":7,"43548":8,"43549":3,"43550":6,"43551":1,"43552":6,"43553":9,"43554":8,"43555":2,"43556":7,"43557":4,"43558":9,"43559":2,"43560":5,"43561":2,"43562":8,"43563":10,"43564":8,"43565":7,"43566":5,"43567":6,"43568":9,"43569":9,"43570":2,"43571":10,"43572":2,"43573":8,"43574":8,"43575":9,"43576":9,"43577":5,"43578":7,"43579":10,"43580":5,"43581":10,"43582":8,"43583":7,"43584":9,"43585":5,"43586":9,"43587":6,"43588":7,"43589":8,"43590":8,"43591":5,"43592":5,"43593":8,"43594":3,"43595":6,"43596":2,"43597":2,"43598":9,"43599":5,"43600":9,"43601":2,"43602":7,"43603":7,"43604":1,"43605":7,"43606":8,"43607":2,"43608":2,"43609":8,"43610":9,"43611":10,"43612":1,"43613":2,"43614":8,"43615":8,"43616":9,"43617":8,"43618":3,"43619":8,"43620":2,"43621":8,"43622":5,"43623":8,"43624":3,"43625":7,"43626":4,"43627":10,"43628":8,"43629":7,"43630":10,"43631":2,"43632":9,"43633":4,"43634":2,"43635":1,"43636":9,"43637":5,"43638":7,"43639":9,"43640":9,"43641":10,"43642":5,"43643":2,"43644":4,"43645":8,"43646":7,"43647":2,"43648":8,"43649":2,"43650":2,"43651":3,"43652":2,"43653":9,"43654":5,"43655":5,"43656":9,"43657":8,"43658":5,"43659":5,"43660":5,"43661":9,"43662":5,"43663":8,"43664":1,"43665":7,"43666":2,"43667":4,"43668":8,"43669":5,"43670":4,"43671":5,"43672":6,"43673":8,"43674":7,"43675":6,"43676":2,"43677":8,"43678":1,"43679":6,"43680":8,"43681":8,"43682":3,"43683":10,"43684":2,"43685":9,"43686":6,"43687":9,"43688":7,"43689":1,"43690":8,"43691":2,"43692":6,"43693":8,"43694":8,"43695":9,"43696":9,"43697":5,"43698":4,"43699":9,"43700":8,"43701":7,"43702":7,"43703":10,"43704":6,"43705":5,"43706":7,"43707":9,"43708":1,"43709":8,"43710":7,"43711":7,"43712":7,"43713":9,"43714":8,"43715":5,"43716":7,"43717":8,"43718":8,"43719":5,"43720":8,"43721":8,"43722":1,"43723":7,"43724":7,"43725":10,"43726":8,"43727":10,"43728":2,"43729":2,"43730":8,"43731":4,"43732":9,"43733":8,"43734":9,"43735":7,"43736":7,"43737":8,"43738":9,"43739":2,"43740":8,"43741":7,"43742":2,"43743":9,"43744":1,"43745":8,"43746":9,"43747":9,"43748":7,"43749":3,"43750":7,"43751":9,"43752":2,"43753":2,"43754":2,"43755":10,"43756":9,"43757":8,"43758":6,"43759":9,"43760":5,"43761":9,"43762":7,"43763":9,"43764":7,"43765":8,"43766":8,"43767":9,"43768":8,"43769":2,"43770":9,"43771":8,"43772":8,"43773":8,"43774":9,"43775":9,"43776":7,"43777":8,"43778":3,"43779":8,"43780":7,"43781":8,"43782":8,"43783":2,"43784":7,"43785":7,"43786":8,"43787":8,"43788":7,"43789":7,"43790":7,"43791":4,"43792":8,"43793":5,"43794":9,"43795":2,"43796":7,"43797":4,"43798":5,"43799":9,"43800":1,"43801":4,"43802":1,"43803":9,"43804":6,"43805":2,"43806":9,"43807":10,"43808":5,"43809":8,"43810":2,"43811":8,"43812":1,"43813":2,"43814":8,"43815":2,"43816":5,"43817":8,"43818":9,"43819":2,"43820":5,"43821":7,"43822":8,"43823":7,"43824":5,"43825":7,"43826":2,"43827":9,"43828":9,"43829":5,"43830":7,"43831":9,"43832":5,"43833":8,"43834":5,"43835":4,"43836":10,"43837":5,"43838":7,"43839":9,"43840":7,"43841":7,"43842":8,"43843":2,"43844":2,"43845":1,"43846":9,"43847":9,"43848":2,"43849":5,"43850":7,"43851":8,"43852":2,"43853":1,"43854":7,"43855":2,"43856":5,"43857":9,"43858":2,"43859":10,"43860":9,"43861":2,"43862":8,"43863":8,"43864":8,"43865":5,"43866":2,"43867":1,"43868":8,"43869":2,"43870":10,"43871":2,"43872":8,"43873":2,"43874":9,"43875":9,"43876":7,"43877":1,"43878":8,"43879":10,"43880":6,"43881":2,"43882":9,"43883":3,"43884":5,"43885":8,"43886":9,"43887":2,"43888":4,"43889":5,"43890":6,"43891":4,"43892":2,"43893":9,"43894":2,"43895":10,"43896":5,"43897":7,"43898":7,"43899":7,"43900":9,"43901":7,"43902":2,"43903":2,"43904":7,"43905":2,"43906":2,"43907":9,"43908":2,"43909":8,"43910":1,"43911":5,"43912":7,"43913":10,"43914":1,"43915":5,"43916":3,"43917":3,"43918":2,"43919":2,"43920":10,"43921":9,"43922":1,"43923":8,"43924":6,"43925":8,"43926":7,"43927":9,"43928":9,"43929":4,"43930":8,"43931":7,"43932":8,"43933":8,"43934":6,"43935":7,"43936":9,"43937":9,"43938":5,"43939":9,"43940":2,"43941":6,"43942":2,"43943":3,"43944":8,"43945":8,"43946":4,"43947":6,"43948":7,"43949":8,"43950":8,"43951":8,"43952":8,"43953":8,"43954":10,"43955":9,"43956":6,"43957":7,"43958":5,"43959":6,"43960":7,"43961":8,"43962":7,"43963":9,"43964":8,"43965":10,"43966":7,"43967":9,"43968":5,"43969":2,"43970":8,"43971":8,"43972":7,"43973":5,"43974":8,"43975":6,"43976":4,"43977":1,"43978":7,"43979":7,"43980":8,"43981":8,"43982":9,"43983":7,"43984":8,"43985":8,"43986":8,"43987":2,"43988":2,"43989":7,"43990":10,"43991":5,"43992":7,"43993":7,"43994":5,"43995":7,"43996":10,"43997":8,"43998":10,"43999":7,"44000":1,"44001":1,"44002":9,"44003":2,"44004":6,"44005":7,"44006":3,"44007":5,"44008":7,"44009":2,"44010":5,"44011":10,"44012":3,"44013":9,"44014":8,"44015":7,"44016":7,"44017":6,"44018":9,"44019":4,"44020":5,"44021":3,"44022":7,"44023":8,"44024":2,"44025":8,"44026":10,"44027":9,"44028":7,"44029":2,"44030":7,"44031":3,"44032":7,"44033":9,"44034":7,"44035":8,"44036":10,"44037":9,"44038":5,"44039":1,"44040":9,"44041":9,"44042":8,"44043":9,"44044":5,"44045":5,"44046":1,"44047":5,"44048":7,"44049":4,"44050":1,"44051":6,"44052":2,"44053":5,"44054":8,"44055":2,"44056":9,"44057":4,"44058":9,"44059":9,"44060":8,"44061":10,"44062":2,"44063":7,"44064":2,"44065":9,"44066":8,"44067":8,"44068":5,"44069":9,"44070":8,"44071":7,"44072":3,"44073":9,"44074":9,"44075":7,"44076":5,"44077":10,"44078":7,"44079":8,"44080":8,"44081":7,"44082":6,"44083":6,"44084":8,"44085":2,"44086":9,"44087":1,"44088":8,"44089":9,"44090":8,"44091":8,"44092":7,"44093":8,"44094":2,"44095":8,"44096":7,"44097":7,"44098":6,"44099":8,"44100":7,"44101":9,"44102":2,"44103":1,"44104":10,"44105":4,"44106":7,"44107":5,"44108":2,"44109":5,"44110":6,"44111":9,"44112":4,"44113":5,"44114":9,"44115":3,"44116":10,"44117":7,"44118":8,"44119":2,"44120":10,"44121":4,"44122":2,"44123":7,"44124":7,"44125":8,"44126":5,"44127":8,"44128":3,"44129":9,"44130":7,"44131":8,"44132":4,"44133":8,"44134":9,"44135":5,"44136":9,"44137":8,"44138":10,"44139":7,"44140":4,"44141":5,"44142":9,"44143":8,"44144":1,"44145":2,"44146":9,"44147":5,"44148":7,"44149":7,"44150":2,"44151":1,"44152":5,"44153":8,"44154":8,"44155":2,"44156":5,"44157":10,"44158":2,"44159":7,"44160":10,"44161":10,"44162":7,"44163":1,"44164":5,"44165":2,"44166":10,"44167":1,"44168":7,"44169":7,"44170":5,"44171":7,"44172":8,"44173":6,"44174":9,"44175":9,"44176":6,"44177":1,"44178":2,"44179":8,"44180":5,"44181":8,"44182":7,"44183":2,"44184":2,"44185":8,"44186":5,"44187":3,"44188":7,"44189":2,"44190":9,"44191":7,"44192":2,"44193":3,"44194":9,"44195":5,"44196":9,"44197":7,"44198":7,"44199":8,"44200":3,"44201":2,"44202":7,"44203":7,"44204":9,"44205":7,"44206":2,"44207":9,"44208":7,"44209":8,"44210":7,"44211":8,"44212":7,"44213":7,"44214":5,"44215":9,"44216":2,"44217":9,"44218":10,"44219":9,"44220":2,"44221":6,"44222":9,"44223":9,"44224":8,"44225":8,"44226":2,"44227":9,"44228":7,"44229":7,"44230":5,"44231":6,"44232":3,"44233":6,"44234":2,"44235":7,"44236":5,"44237":4,"44238":7,"44239":8,"44240":9,"44241":7,"44242":8,"44243":4,"44244":7,"44245":8,"44246":8,"44247":8,"44248":8,"44249":7,"44250":3,"44251":9,"44252":5,"44253":7,"44254":9,"44255":3,"44256":9,"44257":9,"44258":3,"44259":5,"44260":9,"44261":8,"44262":5,"44263":2,"44264":8,"44265":7,"44266":7,"44267":9,"44268":9,"44269":8,"44270":7,"44271":5,"44272":7,"44273":5,"44274":6,"44275":6,"44276":7,"44277":7,"44278":2,"44279":4,"44280":9,"44281":3,"44282":9,"44283":8,"44284":5,"44285":8,"44286":7,"44287":5,"44288":2,"44289":7,"44290":1,"44291":7,"44292":8,"44293":8,"44294":3,"44295":5,"44296":8,"44297":8,"44298":8,"44299":7,"44300":7,"44301":8,"44302":10,"44303":8,"44304":9,"44305":8,"44306":2,"44307":4,"44308":7,"44309":10,"44310":7,"44311":8,"44312":7,"44313":3,"44314":8,"44315":9,"44316":8,"44317":8,"44318":8,"44319":8,"44320":1,"44321":8,"44322":6,"44323":6,"44324":9,"44325":8,"44326":8,"44327":2,"44328":8,"44329":2,"44330":8,"44331":7,"44332":3,"44333":8,"44334":2,"44335":7,"44336":7,"44337":10,"44338":9,"44339":7,"44340":5,"44341":7,"44342":6,"44343":8,"44344":1,"44345":9,"44346":8,"44347":8,"44348":2,"44349":7,"44350":7,"44351":7,"44352":1,"44353":10,"44354":9,"44355":8,"44356":4,"44357":7,"44358":3,"44359":5,"44360":2,"44361":2,"44362":8,"44363":3,"44364":1,"44365":9,"44366":5,"44367":7,"44368":8,"44369":9,"44370":7,"44371":5,"44372":3,"44373":10,"44374":8,"44375":7,"44376":3,"44377":4,"44378":8,"44379":9,"44380":5,"44381":2,"44382":9,"44383":4,"44384":2,"44385":9,"44386":6,"44387":4,"44388":7,"44389":5,"44390":5,"44391":4,"44392":8,"44393":5,"44394":2,"44395":3,"44396":7,"44397":7,"44398":3,"44399":8,"44400":4,"44401":7,"44402":6,"44403":8,"44404":7,"44405":7,"44406":7,"44407":5,"44408":8,"44409":9,"44410":10,"44411":8,"44412":9,"44413":7,"44414":10,"44415":9,"44416":5,"44417":10,"44418":5,"44419":7,"44420":2,"44421":1,"44422":7,"44423":1,"44424":6,"44425":7,"44426":2,"44427":7,"44428":9,"44429":9,"44430":8,"44431":5,"44432":2,"44433":9,"44434":8,"44435":10,"44436":9,"44437":7,"44438":2,"44439":3,"44440":9,"44441":9,"44442":5,"44443":1,"44444":2,"44445":1,"44446":2,"44447":9,"44448":9,"44449":5,"44450":8,"44451":7,"44452":8,"44453":3,"44454":7,"44455":10,"44456":5,"44457":7,"44458":8,"44459":1,"44460":8,"44461":7,"44462":2,"44463":8,"44464":5,"44465":8,"44466":6,"44467":5,"44468":8,"44469":5,"44470":7,"44471":8,"44472":4,"44473":7,"44474":8,"44475":8,"44476":8,"44477":9,"44478":10,"44479":3,"44480":5,"44481":9,"44482":7,"44483":7,"44484":8,"44485":7,"44486":7,"44487":5,"44488":8,"44489":8,"44490":7,"44491":7,"44492":7,"44493":5,"44494":10,"44495":1,"44496":1,"44497":9,"44498":2,"44499":8,"44500":7,"44501":3,"44502":8,"44503":7,"44504":3,"44505":8,"44506":1,"44507":1,"44508":2,"44509":7,"44510":9,"44511":7,"44512":9,"44513":8,"44514":7,"44515":5,"44516":5,"44517":7,"44518":9,"44519":10,"44520":1,"44521":2,"44522":7,"44523":10,"44524":9,"44525":6,"44526":5,"44527":3,"44528":9,"44529":2,"44530":4,"44531":8,"44532":8,"44533":7,"44534":9,"44535":9,"44536":7,"44537":9,"44538":7,"44539":9,"44540":6,"44541":8,"44542":8,"44543":2,"44544":7,"44545":7,"44546":8,"44547":7,"44548":1,"44549":8,"44550":5,"44551":9,"44552":9,"44553":8,"44554":9,"44555":8,"44556":7,"44557":7,"44558":7,"44559":7,"44560":10,"44561":7,"44562":7,"44563":9,"44564":2,"44565":7,"44566":10,"44567":2,"44568":10,"44569":8,"44570":8,"44571":2,"44572":7,"44573":5,"44574":8,"44575":7,"44576":2,"44577":9,"44578":3,"44579":7,"44580":8,"44581":8,"44582":4,"44583":8,"44584":9,"44585":2,"44586":7,"44587":7,"44588":8,"44589":5,"44590":10,"44591":7,"44592":7,"44593":6,"44594":8,"44595":2,"44596":6,"44597":6,"44598":9,"44599":7,"44600":9,"44601":5,"44602":7,"44603":5,"44604":7,"44605":7,"44606":10,"44607":9,"44608":10,"44609":2,"44610":10,"44611":9,"44612":7,"44613":5,"44614":8,"44615":7,"44616":9,"44617":6,"44618":7,"44619":5,"44620":6,"44621":5,"44622":10,"44623":7,"44624":3,"44625":7,"44626":10,"44627":8,"44628":7,"44629":5,"44630":3,"44631":7,"44632":7,"44633":7,"44634":1,"44635":2,"44636":7,"44637":7,"44638":5,"44639":6,"44640":3,"44641":7,"44642":1,"44643":8,"44644":5,"44645":7,"44646":9,"44647":2,"44648":9,"44649":8,"44650":8,"44651":3,"44652":8,"44653":7,"44654":8,"44655":2,"44656":7,"44657":9,"44658":8,"44659":7,"44660":8,"44661":7,"44662":2,"44663":8,"44664":7,"44665":3,"44666":2,"44667":1,"44668":4,"44669":5,"44670":5,"44671":7,"44672":7,"44673":8,"44674":3,"44675":4,"44676":8,"44677":3,"44678":8,"44679":3,"44680":2,"44681":9,"44682":7,"44683":3,"44684":6,"44685":3,"44686":9,"44687":1,"44688":7,"44689":9,"44690":3,"44691":9,"44692":9,"44693":3,"44694":8,"44695":7,"44696":7,"44697":8,"44698":8,"44699":7,"44700":8,"44701":7,"44702":2,"44703":8,"44704":5,"44705":7,"44706":1,"44707":7,"44708":7,"44709":8,"44710":8,"44711":8,"44712":3,"44713":9,"44714":7,"44715":9,"44716":8,"44717":4,"44718":2,"44719":5,"44720":9,"44721":5,"44722":4,"44723":2,"44724":5,"44725":8,"44726":9,"44727":7,"44728":3,"44729":9,"44730":7,"44731":6,"44732":6,"44733":7,"44734":5,"44735":7,"44736":4,"44737":9,"44738":5,"44739":8,"44740":9,"44741":2,"44742":7,"44743":7,"44744":6,"44745":8,"44746":8,"44747":7,"44748":4,"44749":7,"44750":8,"44751":3,"44752":9,"44753":1,"44754":8,"44755":8,"44756":9,"44757":9,"44758":8,"44759":9,"44760":8,"44761":9,"44762":8,"44763":8,"44764":7,"44765":4,"44766":2,"44767":7,"44768":8,"44769":8,"44770":1,"44771":9,"44772":10,"44773":5,"44774":9,"44775":5,"44776":5,"44777":2,"44778":9,"44779":2,"44780":2,"44781":9,"44782":8,"44783":9,"44784":1,"44785":9,"44786":7,"44787":9,"44788":8,"44789":8,"44790":2,"44791":7,"44792":1,"44793":7,"44794":8,"44795":9,"44796":1,"44797":4,"44798":7,"44799":5,"44800":2,"44801":5,"44802":9,"44803":2,"44804":9,"44805":8,"44806":8,"44807":7,"44808":8,"44809":9,"44810":5,"44811":7,"44812":7,"44813":8,"44814":9,"44815":7,"44816":8,"44817":8,"44818":2,"44819":9,"44820":8,"44821":7,"44822":10,"44823":7,"44824":8,"44825":2,"44826":9,"44827":2,"44828":5,"44829":8,"44830":9,"44831":5,"44832":5,"44833":9,"44834":9,"44835":9,"44836":5,"44837":9,"44838":1,"44839":6,"44840":8,"44841":8,"44842":1,"44843":8,"44844":5,"44845":2,"44846":2,"44847":5,"44848":9,"44849":7,"44850":8,"44851":8,"44852":2,"44853":7,"44854":4,"44855":1,"44856":8,"44857":7,"44858":4,"44859":2,"44860":5,"44861":7,"44862":8,"44863":9,"44864":2,"44865":2,"44866":9,"44867":2,"44868":8,"44869":8,"44870":4,"44871":9,"44872":7,"44873":9,"44874":9,"44875":6,"44876":6,"44877":1,"44878":5,"44879":5,"44880":2,"44881":6,"44882":2,"44883":8,"44884":8,"44885":2,"44886":7,"44887":4,"44888":8,"44889":7,"44890":2,"44891":7,"44892":2,"44893":7,"44894":8,"44895":9,"44896":7,"44897":7,"44898":2,"44899":6,"44900":8,"44901":7,"44902":8,"44903":6,"44904":8,"44905":9,"44906":7,"44907":5,"44908":5,"44909":1,"44910":7,"44911":8,"44912":10,"44913":6,"44914":7,"44915":3,"44916":10,"44917":7,"44918":7,"44919":2,"44920":2,"44921":8,"44922":2,"44923":6,"44924":5,"44925":2,"44926":4,"44927":2,"44928":10,"44929":7,"44930":3,"44931":3,"44932":7,"44933":7,"44934":2,"44935":2,"44936":10,"44937":9,"44938":8,"44939":2,"44940":2,"44941":6,"44942":7,"44943":8,"44944":1,"44945":5,"44946":7,"44947":3,"44948":9,"44949":2,"44950":8,"44951":2,"44952":1,"44953":5,"44954":7,"44955":4,"44956":3,"44957":9,"44958":7,"44959":5,"44960":1,"44961":5,"44962":7,"44963":5,"44964":10,"44965":10,"44966":7,"44967":10,"44968":2,"44969":8,"44970":8,"44971":4,"44972":8,"44973":2,"44974":8,"44975":7,"44976":4,"44977":4,"44978":7,"44979":9,"44980":5,"44981":3,"44982":9,"44983":2,"44984":8,"44985":7,"44986":8,"44987":3,"44988":9,"44989":8,"44990":9,"44991":10,"44992":1,"44993":9,"44994":9,"44995":8,"44996":6,"44997":5,"44998":2,"44999":7,"45000":7,"45001":5,"45002":7,"45003":8,"45004":7,"45005":7,"45006":3,"45007":2,"45008":10,"45009":7,"45010":8,"45011":10,"45012":7,"45013":7,"45014":3,"45015":2,"45016":7,"45017":9,"45018":2,"45019":9,"45020":3,"45021":7,"45022":9,"45023":9,"45024":8,"45025":5,"45026":4,"45027":3,"45028":4,"45029":9,"45030":7,"45031":8,"45032":10,"45033":2,"45034":8,"45035":7,"45036":8,"45037":8,"45038":1,"45039":4,"45040":1,"45041":9,"45042":7,"45043":3,"45044":2,"45045":8,"45046":9,"45047":8,"45048":8,"45049":9,"45050":2,"45051":9,"45052":8,"45053":9,"45054":2,"45055":3,"45056":5,"45057":8,"45058":7,"45059":8,"45060":7,"45061":3,"45062":8,"45063":2,"45064":3,"45065":8,"45066":9,"45067":7,"45068":9,"45069":2,"45070":5,"45071":1,"45072":8,"45073":3,"45074":10,"45075":2,"45076":2,"45077":8,"45078":8,"45079":8,"45080":6,"45081":10,"45082":5,"45083":9,"45084":8,"45085":7,"45086":9,"45087":6,"45088":8,"45089":7,"45090":7,"45091":8,"45092":9,"45093":9,"45094":5,"45095":3,"45096":2,"45097":8,"45098":7,"45099":5,"45100":2,"45101":2,"45102":7,"45103":8,"45104":5,"45105":7,"45106":8,"45107":5,"45108":7,"45109":7,"45110":9,"45111":7,"45112":7,"45113":10,"45114":10,"45115":3,"45116":4,"45117":4,"45118":5,"45119":8,"45120":9,"45121":3,"45122":9,"45123":7,"45124":5,"45125":7,"45126":7,"45127":9,"45128":7,"45129":6,"45130":2,"45131":10,"45132":8,"45133":4,"45134":8,"45135":8,"45136":4,"45137":1,"45138":5,"45139":9,"45140":10,"45141":9,"45142":8,"45143":1,"45144":2,"45145":10,"45146":7,"45147":6,"45148":2,"45149":9,"45150":10,"45151":9,"45152":8,"45153":7,"45154":7,"45155":1,"45156":2,"45157":7,"45158":7,"45159":6,"45160":5,"45161":5,"45162":10,"45163":4,"45164":4,"45165":9,"45166":8,"45167":8,"45168":3,"45169":10,"45170":2,"45171":7,"45172":9,"45173":9,"45174":9,"45175":8,"45176":9,"45177":7,"45178":5,"45179":7,"45180":7,"45181":9,"45182":7,"45183":9,"45184":2,"45185":9,"45186":3,"45187":6,"45188":2,"45189":8,"45190":1,"45191":8,"45192":2,"45193":7,"45194":8,"45195":8,"45196":9,"45197":8,"45198":8,"45199":8,"45200":2,"45201":8,"45202":5,"45203":8,"45204":8,"45205":2,"45206":8,"45207":3,"45208":4,"45209":8,"45210":1,"45211":2,"45212":7,"45213":9,"45214":5,"45215":4,"45216":1,"45217":9,"45218":7,"45219":7,"45220":2,"45221":5,"45222":8,"45223":7,"45224":2,"45225":2,"45226":8,"45227":7,"45228":7,"45229":7,"45230":9,"45231":5,"45232":5,"45233":9,"45234":5,"45235":7,"45236":10,"45237":7,"45238":4,"45239":7,"45240":9,"45241":6,"45242":3,"45243":7,"45244":8,"45245":8,"45246":9,"45247":7,"45248":7,"45249":7,"45250":5,"45251":7,"45252":7,"45253":4,"45254":9,"45255":9,"45256":9,"45257":8,"45258":3,"45259":4,"45260":7,"45261":9,"45262":8,"45263":9,"45264":7,"45265":8,"45266":5,"45267":8,"45268":9,"45269":9,"45270":7,"45271":4,"45272":1,"45273":9,"45274":8,"45275":8,"45276":9,"45277":2,"45278":5,"45279":3,"45280":9,"45281":8,"45282":8,"45283":6,"45284":7,"45285":5,"45286":9,"45287":8,"45288":8,"45289":10,"45290":8,"45291":7,"45292":9,"45293":2,"45294":7,"45295":9,"45296":8,"45297":6,"45298":1,"45299":7,"45300":9,"45301":1,"45302":5,"45303":5,"45304":5,"45305":5,"45306":8,"45307":7,"45308":9,"45309":5,"45310":3,"45311":7,"45312":7,"45313":7,"45314":8,"45315":8,"45316":8,"45317":3,"45318":5,"45319":3,"45320":7,"45321":8,"45322":7,"45323":9,"45324":6,"45325":5,"45326":1,"45327":7,"45328":9,"45329":7,"45330":8,"45331":9,"45332":5,"45333":8,"45334":7,"45335":2,"45336":7,"45337":6,"45338":8,"45339":8,"45340":9,"45341":3,"45342":9,"45343":9,"45344":8,"45345":2,"45346":7,"45347":5,"45348":8,"45349":9,"45350":10,"45351":8,"45352":1,"45353":4,"45354":7,"45355":7,"45356":7,"45357":8,"45358":9,"45359":8,"45360":4,"45361":9,"45362":8,"45363":9,"45364":7,"45365":1,"45366":7,"45367":2,"45368":1,"45369":2,"45370":2,"45371":6,"45372":10,"45373":9,"45374":5,"45375":2,"45376":2,"45377":9,"45378":7,"45379":7,"45380":3,"45381":5,"45382":8,"45383":7,"45384":9,"45385":7,"45386":8,"45387":8,"45388":7,"45389":6,"45390":7,"45391":2,"45392":9,"45393":7,"45394":7,"45395":1,"45396":8,"45397":5,"45398":2,"45399":2,"45400":5,"45401":8,"45402":9,"45403":8,"45404":10,"45405":8,"45406":5,"45407":10,"45408":9,"45409":9,"45410":3,"45411":3,"45412":7,"45413":1,"45414":1,"45415":1,"45416":9,"45417":1,"45418":7,"45419":8,"45420":7,"45421":8,"45422":4,"45423":2,"45424":2,"45425":2,"45426":10,"45427":1,"45428":1,"45429":2,"45430":1,"45431":8,"45432":7,"45433":9,"45434":10,"45435":5,"45436":7,"45437":8,"45438":5,"45439":7,"45440":3,"45441":6,"45442":9,"45443":9,"45444":7,"45445":10,"45446":8,"45447":2,"45448":6,"45449":7,"45450":7,"45451":8,"45452":4,"45453":8,"45454":9,"45455":2,"45456":7,"45457":4,"45458":8,"45459":1,"45460":2,"45461":8,"45462":9,"45463":4,"45464":7,"45465":7,"45466":5,"45467":4,"45468":10,"45469":4,"45470":7,"45471":7,"45472":9,"45473":5,"45474":7,"45475":3,"45476":9,"45477":9,"45478":1,"45479":7,"45480":9,"45481":9,"45482":10,"45483":5,"45484":9,"45485":7,"45486":8,"45487":8,"45488":8,"45489":8,"45490":8,"45491":1,"45492":2,"45493":5,"45494":6,"45495":3,"45496":7,"45497":8,"45498":9,"45499":7,"45500":5,"45501":9,"45502":7,"45503":6,"45504":9,"45505":4,"45506":2,"45507":2,"45508":9,"45509":9,"45510":8,"45511":8,"45512":9,"45513":2,"45514":7,"45515":7,"45516":8,"45517":8,"45518":9,"45519":9,"45520":5,"45521":10,"45522":9,"45523":8,"45524":3,"45525":5,"45526":9,"45527":1,"45528":8,"45529":9,"45530":1,"45531":8,"45532":9,"45533":8,"45534":5,"45535":8,"45536":7,"45537":9,"45538":5,"45539":9,"45540":8,"45541":8,"45542":8,"45543":5,"45544":7,"45545":5,"45546":10,"45547":7,"45548":5,"45549":4,"45550":5,"45551":6,"45552":6,"45553":8,"45554":7,"45555":4,"45556":2,"45557":7,"45558":2,"45559":9,"45560":1,"45561":4,"45562":8,"45563":9,"45564":8,"45565":5,"45566":2,"45567":2,"45568":8,"45569":8,"45570":8,"45571":7,"45572":7,"45573":2,"45574":7,"45575":8,"45576":5,"45577":6,"45578":7,"45579":7,"45580":9,"45581":3,"45582":7,"45583":9,"45584":7,"45585":7,"45586":7,"45587":3,"45588":3,"45589":2,"45590":4,"45591":9,"45592":8,"45593":9,"45594":9,"45595":8,"45596":7,"45597":9,"45598":2,"45599":7,"45600":6,"45601":4,"45602":9,"45603":1,"45604":7,"45605":10,"45606":5,"45607":7,"45608":8,"45609":4,"45610":2,"45611":7,"45612":10,"45613":9,"45614":2,"45615":7,"45616":7,"45617":9,"45618":9,"45619":8,"45620":1,"45621":9,"45622":5,"45623":8,"45624":7,"45625":8,"45626":7,"45627":2,"45628":8,"45629":9,"45630":2,"45631":4,"45632":8,"45633":4,"45634":2,"45635":4,"45636":7,"45637":7,"45638":4,"45639":2,"45640":4,"45641":8,"45642":1,"45643":9,"45644":8,"45645":7,"45646":5,"45647":5,"45648":5,"45649":7,"45650":9,"45651":2,"45652":1,"45653":1,"45654":4,"45655":8,"45656":7,"45657":5,"45658":7,"45659":7,"45660":7,"45661":5,"45662":5,"45663":9,"45664":7,"45665":2,"45666":5,"45667":8,"45668":9,"45669":6,"45670":8,"45671":5,"45672":9,"45673":7,"45674":5,"45675":8,"45676":6,"45677":7,"45678":9,"45679":2,"45680":6,"45681":9,"45682":4,"45683":9,"45684":8,"45685":9,"45686":7,"45687":8,"45688":9,"45689":8,"45690":7,"45691":8,"45692":1,"45693":7,"45694":9,"45695":7,"45696":6,"45697":7,"45698":4,"45699":10,"45700":2,"45701":7,"45702":8,"45703":9,"45704":8,"45705":5,"45706":10,"45707":10,"45708":7,"45709":10,"45710":2,"45711":8,"45712":8,"45713":8,"45714":8,"45715":7,"45716":6,"45717":4,"45718":10,"45719":8,"45720":8,"45721":2,"45722":7,"45723":7,"45724":10,"45725":8,"45726":9,"45727":8,"45728":6,"45729":8,"45730":8,"45731":8,"45732":4,"45733":3,"45734":10,"45735":7,"45736":9,"45737":5,"45738":8,"45739":9,"45740":9,"45741":7,"45742":8,"45743":2,"45744":5,"45745":8,"45746":7,"45747":7,"45748":9,"45749":7,"45750":8,"45751":5,"45752":2,"45753":1,"45754":2,"45755":7,"45756":10,"45757":7,"45758":5,"45759":7,"45760":7,"45761":8,"45762":2,"45763":4,"45764":8,"45765":7,"45766":2,"45767":1,"45768":2,"45769":8,"45770":8,"45771":7,"45772":3,"45773":8,"45774":2,"45775":7,"45776":6,"45777":10,"45778":1,"45779":8,"45780":3,"45781":7,"45782":9,"45783":8,"45784":8,"45785":7,"45786":10,"45787":2,"45788":5,"45789":7,"45790":2,"45791":5,"45792":7,"45793":9,"45794":2,"45795":4,"45796":7,"45797":9,"45798":7,"45799":3,"45800":8,"45801":8,"45802":10,"45803":9,"45804":8,"45805":9,"45806":9,"45807":8,"45808":1,"45809":4,"45810":4,"45811":8,"45812":9,"45813":5,"45814":8,"45815":1,"45816":8,"45817":3,"45818":7,"45819":8,"45820":9,"45821":4,"45822":10,"45823":7,"45824":8,"45825":9,"45826":9,"45827":7,"45828":2,"45829":5,"45830":8,"45831":6,"45832":2,"45833":5,"45834":8,"45835":9,"45836":4,"45837":8,"45838":8,"45839":10,"45840":8,"45841":8,"45842":9,"45843":9,"45844":9,"45845":9,"45846":8,"45847":5,"45848":2,"45849":8,"45850":9,"45851":8,"45852":5,"45853":1,"45854":7,"45855":8,"45856":7,"45857":6,"45858":7,"45859":8,"45860":6,"45861":9,"45862":8,"45863":1,"45864":6,"45865":5,"45866":6,"45867":1,"45868":7,"45869":2,"45870":2,"45871":5,"45872":9,"45873":7,"45874":8,"45875":8,"45876":7,"45877":9,"45878":5,"45879":5,"45880":7,"45881":7,"45882":7,"45883":4,"45884":9,"45885":3,"45886":9,"45887":9,"45888":9,"45889":3,"45890":8,"45891":10,"45892":9,"45893":10,"45894":5,"45895":7,"45896":2,"45897":1,"45898":7,"45899":5,"45900":4,"45901":2,"45902":2,"45903":2,"45904":7,"45905":9,"45906":5,"45907":8,"45908":9,"45909":7,"45910":3,"45911":5,"45912":9,"45913":8,"45914":10,"45915":8,"45916":8,"45917":1,"45918":10,"45919":7,"45920":9,"45921":5,"45922":7,"45923":10,"45924":6,"45925":4,"45926":8,"45927":7,"45928":8,"45929":10,"45930":2,"45931":3,"45932":7,"45933":5,"45934":9,"45935":4,"45936":1,"45937":5,"45938":1,"45939":8,"45940":9,"45941":9,"45942":8,"45943":8,"45944":9,"45945":8,"45946":3,"45947":3,"45948":9,"45949":10,"45950":5,"45951":9,"45952":6,"45953":1,"45954":7,"45955":3,"45956":9,"45957":8,"45958":5,"45959":3,"45960":9,"45961":2,"45962":7,"45963":10,"45964":8,"45965":6,"45966":2,"45967":2,"45968":5,"45969":8,"45970":3,"45971":7,"45972":8,"45973":7,"45974":9,"45975":1,"45976":3,"45977":7,"45978":7,"45979":7,"45980":6,"45981":9,"45982":7,"45983":7,"45984":8,"45985":7,"45986":9,"45987":8,"45988":7,"45989":8,"45990":2,"45991":9,"45992":4,"45993":3,"45994":5,"45995":2,"45996":3,"45997":8,"45998":2,"45999":8,"46000":2,"46001":9,"46002":2,"46003":1,"46004":10,"46005":5,"46006":2,"46007":7,"46008":1,"46009":1,"46010":7,"46011":9,"46012":4,"46013":8,"46014":7,"46015":2,"46016":5,"46017":5,"46018":8,"46019":4,"46020":2,"46021":1,"46022":8,"46023":5,"46024":6,"46025":7,"46026":10,"46027":10,"46028":7,"46029":7,"46030":10,"46031":10,"46032":8,"46033":8,"46034":4,"46035":2,"46036":3,"46037":2,"46038":4,"46039":8,"46040":9,"46041":5,"46042":2,"46043":5,"46044":2,"46045":7,"46046":7,"46047":8,"46048":7,"46049":5,"46050":8,"46051":1,"46052":8,"46053":7,"46054":4,"46055":9,"46056":8,"46057":7,"46058":9,"46059":7,"46060":2,"46061":10,"46062":9,"46063":4,"46064":6,"46065":5,"46066":2,"46067":7,"46068":2,"46069":7,"46070":8,"46071":2,"46072":9,"46073":1,"46074":5,"46075":7,"46076":9,"46077":8,"46078":2,"46079":9,"46080":2,"46081":6,"46082":7,"46083":9,"46084":3,"46085":4,"46086":7,"46087":7,"46088":4,"46089":7,"46090":3,"46091":8,"46092":9,"46093":5,"46094":2,"46095":3,"46096":7,"46097":7,"46098":6,"46099":7,"46100":8,"46101":9,"46102":7,"46103":9,"46104":3,"46105":6,"46106":2,"46107":8,"46108":10,"46109":9,"46110":7,"46111":3,"46112":7,"46113":10,"46114":8,"46115":8,"46116":9,"46117":7,"46118":7,"46119":2,"46120":7,"46121":4,"46122":7,"46123":2,"46124":9,"46125":10,"46126":2,"46127":8,"46128":2,"46129":9,"46130":7,"46131":5,"46132":6,"46133":9,"46134":7,"46135":2,"46136":7,"46137":6,"46138":1,"46139":9,"46140":9,"46141":8,"46142":10,"46143":8,"46144":7,"46145":7,"46146":1,"46147":9,"46148":2,"46149":5,"46150":6,"46151":5,"46152":9,"46153":7,"46154":6,"46155":2,"46156":8,"46157":4,"46158":3,"46159":8,"46160":8,"46161":9,"46162":4,"46163":8,"46164":9,"46165":1,"46166":1,"46167":7,"46168":7,"46169":8,"46170":2,"46171":9,"46172":8,"46173":8,"46174":10,"46175":6,"46176":5,"46177":5,"46178":7,"46179":8,"46180":7,"46181":3,"46182":5,"46183":2,"46184":7,"46185":7,"46186":9,"46187":2,"46188":5,"46189":3,"46190":5,"46191":8,"46192":2,"46193":8,"46194":6,"46195":3,"46196":7,"46197":4,"46198":3,"46199":4,"46200":9,"46201":7,"46202":9,"46203":4,"46204":7,"46205":7,"46206":9,"46207":1,"46208":8,"46209":8,"46210":7,"46211":7,"46212":7,"46213":10,"46214":4,"46215":8,"46216":4,"46217":9,"46218":7,"46219":4,"46220":7,"46221":2,"46222":2,"46223":10,"46224":4,"46225":7,"46226":8,"46227":9,"46228":7,"46229":9,"46230":6,"46231":7,"46232":7,"46233":1,"46234":6,"46235":3,"46236":7,"46237":9,"46238":7,"46239":9,"46240":8,"46241":8,"46242":6,"46243":9,"46244":5,"46245":1,"46246":8,"46247":7,"46248":5,"46249":4,"46250":8,"46251":10,"46252":9,"46253":9,"46254":2,"46255":10,"46256":1,"46257":8,"46258":8,"46259":7,"46260":6,"46261":7,"46262":7,"46263":6,"46264":3,"46265":1,"46266":8,"46267":7,"46268":7,"46269":8,"46270":5,"46271":6,"46272":8,"46273":9,"46274":9,"46275":8,"46276":8,"46277":8,"46278":3,"46279":8,"46280":3,"46281":9,"46282":10,"46283":5,"46284":7,"46285":1,"46286":2,"46287":9,"46288":7,"46289":7,"46290":9,"46291":7,"46292":7,"46293":7,"46294":7,"46295":8,"46296":8,"46297":9,"46298":8,"46299":8,"46300":8,"46301":4,"46302":9,"46303":6,"46304":5,"46305":6,"46306":8,"46307":1,"46308":9,"46309":7,"46310":10,"46311":3,"46312":8,"46313":5,"46314":7,"46315":8,"46316":2,"46317":10,"46318":8,"46319":4,"46320":7,"46321":8,"46322":9,"46323":9,"46324":5,"46325":7,"46326":10,"46327":9,"46328":2,"46329":9,"46330":4,"46331":3,"46332":7,"46333":6,"46334":2,"46335":7,"46336":8,"46337":3,"46338":9,"46339":7,"46340":7,"46341":8,"46342":7,"46343":8,"46344":6,"46345":8,"46346":9,"46347":10,"46348":3,"46349":7,"46350":7,"46351":7,"46352":8,"46353":7,"46354":7,"46355":2,"46356":5,"46357":8,"46358":7,"46359":2,"46360":8,"46361":7,"46362":9,"46363":9,"46364":8,"46365":7,"46366":10,"46367":9,"46368":5,"46369":5,"46370":7,"46371":9,"46372":8,"46373":2,"46374":10,"46375":2,"46376":8,"46377":7,"46378":7,"46379":8,"46380":7,"46381":1,"46382":10,"46383":3,"46384":7,"46385":6,"46386":7,"46387":2,"46388":10,"46389":7,"46390":8,"46391":8,"46392":9,"46393":8,"46394":8,"46395":5,"46396":10,"46397":9,"46398":8,"46399":2,"46400":9,"46401":1,"46402":8,"46403":8,"46404":7,"46405":7,"46406":7,"46407":8,"46408":8,"46409":8,"46410":9,"46411":7,"46412":2,"46413":9,"46414":9,"46415":9,"46416":9,"46417":2,"46418":1,"46419":2,"46420":4,"46421":8,"46422":1,"46423":9,"46424":7,"46425":7,"46426":8,"46427":1,"46428":8,"46429":10,"46430":2,"46431":8,"46432":8,"46433":8,"46434":7,"46435":7,"46436":2,"46437":10,"46438":7,"46439":1,"46440":5,"46441":7,"46442":4,"46443":8,"46444":9,"46445":2,"46446":7,"46447":2,"46448":5,"46449":9,"46450":10,"46451":1,"46452":6,"46453":2,"46454":6,"46455":8,"46456":2,"46457":9,"46458":6,"46459":5,"46460":7,"46461":7,"46462":10,"46463":10,"46464":8,"46465":1,"46466":8,"46467":6,"46468":7,"46469":2,"46470":10,"46471":8,"46472":8,"46473":9,"46474":3,"46475":5,"46476":7,"46477":8,"46478":7,"46479":10,"46480":8,"46481":10,"46482":9,"46483":9,"46484":1,"46485":2,"46486":9,"46487":9,"46488":9,"46489":8,"46490":8,"46491":8,"46492":10,"46493":9,"46494":9,"46495":1,"46496":8,"46497":10,"46498":4,"46499":9,"46500":7,"46501":5,"46502":4,"46503":8,"46504":5,"46505":4,"46506":7,"46507":10,"46508":1,"46509":7,"46510":8,"46511":7,"46512":6,"46513":1,"46514":8,"46515":8,"46516":8,"46517":7,"46518":8,"46519":7,"46520":7,"46521":7,"46522":9,"46523":7,"46524":9,"46525":3,"46526":8,"46527":5,"46528":4,"46529":1,"46530":8,"46531":7,"46532":8,"46533":9,"46534":7,"46535":3,"46536":9,"46537":9,"46538":9,"46539":2,"46540":9,"46541":7,"46542":9,"46543":8,"46544":9,"46545":9,"46546":6,"46547":10,"46548":2,"46549":6,"46550":8,"46551":8,"46552":7,"46553":9,"46554":2,"46555":7,"46556":3,"46557":9,"46558":2,"46559":7,"46560":4,"46561":8,"46562":8,"46563":8,"46564":7,"46565":9,"46566":3,"46567":5,"46568":1,"46569":5,"46570":8,"46571":7,"46572":4,"46573":7,"46574":9,"46575":2,"46576":1,"46577":9,"46578":7,"46579":8,"46580":5,"46581":8,"46582":4,"46583":5,"46584":9,"46585":1,"46586":5,"46587":8,"46588":5,"46589":9,"46590":8,"46591":2,"46592":5,"46593":2,"46594":6,"46595":7,"46596":9,"46597":7,"46598":8,"46599":4,"46600":9,"46601":9,"46602":5,"46603":8,"46604":8,"46605":9,"46606":2,"46607":7,"46608":2,"46609":9,"46610":7,"46611":7,"46612":2,"46613":8,"46614":8,"46615":8,"46616":7,"46617":9,"46618":9,"46619":9,"46620":6,"46621":7,"46622":9,"46623":9,"46624":9,"46625":8,"46626":9,"46627":8,"46628":2,"46629":7,"46630":1,"46631":9,"46632":8,"46633":6,"46634":8,"46635":9,"46636":9,"46637":9,"46638":7,"46639":7,"46640":4,"46641":7,"46642":7,"46643":2,"46644":2,"46645":9,"46646":3,"46647":10,"46648":9,"46649":8,"46650":8,"46651":1,"46652":8,"46653":8,"46654":5,"46655":9,"46656":1,"46657":8,"46658":8,"46659":9,"46660":2,"46661":5,"46662":4,"46663":7,"46664":2,"46665":8,"46666":8,"46667":4,"46668":6,"46669":5,"46670":9,"46671":9,"46672":6,"46673":2,"46674":8,"46675":7,"46676":7,"46677":2,"46678":5,"46679":7,"46680":2,"46681":6,"46682":6,"46683":6,"46684":1,"46685":9,"46686":7,"46687":2,"46688":8,"46689":2,"46690":8,"46691":7,"46692":6,"46693":8,"46694":9,"46695":8,"46696":9,"46697":9,"46698":2,"46699":2,"46700":9,"46701":8,"46702":9,"46703":6,"46704":10,"46705":7,"46706":7,"46707":10,"46708":9,"46709":8,"46710":8,"46711":8,"46712":1,"46713":9,"46714":6,"46715":7,"46716":3,"46717":4,"46718":7,"46719":8,"46720":7,"46721":8,"46722":9,"46723":9,"46724":7,"46725":9,"46726":8,"46727":9,"46728":3,"46729":9,"46730":2,"46731":8,"46732":9,"46733":7,"46734":9,"46735":1,"46736":2,"46737":6,"46738":9,"46739":2,"46740":7,"46741":4,"46742":7,"46743":1,"46744":6,"46745":9,"46746":5,"46747":7,"46748":5,"46749":7,"46750":5,"46751":8,"46752":9,"46753":6,"46754":1,"46755":9,"46756":10,"46757":2,"46758":5,"46759":2,"46760":9,"46761":10,"46762":3,"46763":7,"46764":4,"46765":1,"46766":2,"46767":2,"46768":2,"46769":8,"46770":7,"46771":7,"46772":1,"46773":7,"46774":7,"46775":2,"46776":7,"46777":9,"46778":5,"46779":8,"46780":6,"46781":7,"46782":8,"46783":8,"46784":10,"46785":3,"46786":9,"46787":8,"46788":2,"46789":8,"46790":8,"46791":5,"46792":2,"46793":2,"46794":1,"46795":7,"46796":2,"46797":6,"46798":5,"46799":8,"46800":3,"46801":5,"46802":8,"46803":5,"46804":8,"46805":7,"46806":8,"46807":7,"46808":8,"46809":7,"46810":3,"46811":7,"46812":8,"46813":7,"46814":3,"46815":8,"46816":8,"46817":1,"46818":2,"46819":7,"46820":7,"46821":8,"46822":7,"46823":10,"46824":9,"46825":6,"46826":1,"46827":8,"46828":2,"46829":10,"46830":10,"46831":2,"46832":5,"46833":9,"46834":8,"46835":8,"46836":7,"46837":8,"46838":7,"46839":5,"46840":10,"46841":8,"46842":8,"46843":8,"46844":9,"46845":9,"46846":9,"46847":7,"46848":10,"46849":2,"46850":3,"46851":8,"46852":8,"46853":5,"46854":5,"46855":8,"46856":7,"46857":8,"46858":5,"46859":9,"46860":8,"46861":1,"46862":5,"46863":6,"46864":8,"46865":8,"46866":2,"46867":7,"46868":8,"46869":2,"46870":8,"46871":7,"46872":1,"46873":7,"46874":6,"46875":8,"46876":10,"46877":2,"46878":6,"46879":9,"46880":5,"46881":5,"46882":9,"46883":9,"46884":2,"46885":1,"46886":3,"46887":7,"46888":9,"46889":8,"46890":5,"46891":2,"46892":5,"46893":6,"46894":2,"46895":7,"46896":9,"46897":9,"46898":2,"46899":2,"46900":6,"46901":4,"46902":6,"46903":7,"46904":5,"46905":9,"46906":9,"46907":7,"46908":9,"46909":9,"46910":4,"46911":7,"46912":9,"46913":3,"46914":5,"46915":5,"46916":9,"46917":7,"46918":7,"46919":8,"46920":7,"46921":8,"46922":8,"46923":3,"46924":1,"46925":9,"46926":8,"46927":1,"46928":8,"46929":2,"46930":7,"46931":2,"46932":7,"46933":9,"46934":9,"46935":9,"46936":5,"46937":4,"46938":7,"46939":8,"46940":7,"46941":10,"46942":8,"46943":8,"46944":8,"46945":7,"46946":7,"46947":5,"46948":7,"46949":8,"46950":2,"46951":8,"46952":5,"46953":7,"46954":9,"46955":2,"46956":2,"46957":1,"46958":1,"46959":7,"46960":9,"46961":7,"46962":5,"46963":8,"46964":8,"46965":8,"46966":5,"46967":7,"46968":7,"46969":5,"46970":9,"46971":4,"46972":8,"46973":9,"46974":1,"46975":7,"46976":8,"46977":9,"46978":8,"46979":5,"46980":3,"46981":5,"46982":2,"46983":8,"46984":6,"46985":5,"46986":3,"46987":9,"46988":3,"46989":2,"46990":7,"46991":9,"46992":2,"46993":9,"46994":1,"46995":8,"46996":5,"46997":5,"46998":7,"46999":8,"47000":10,"47001":7,"47002":10,"47003":5,"47004":7,"47005":8,"47006":5,"47007":7,"47008":10,"47009":7,"47010":8,"47011":9,"47012":5,"47013":7,"47014":10,"47015":5,"47016":9,"47017":6,"47018":9,"47019":9,"47020":1,"47021":8,"47022":2,"47023":7,"47024":7,"47025":1,"47026":3,"47027":7,"47028":9,"47029":9,"47030":8,"47031":9,"47032":10,"47033":8,"47034":5,"47035":7,"47036":8,"47037":10,"47038":2,"47039":7,"47040":2,"47041":10,"47042":8,"47043":2,"47044":9,"47045":9,"47046":9,"47047":7,"47048":3,"47049":5,"47050":8,"47051":8,"47052":3,"47053":7,"47054":9,"47055":10,"47056":3,"47057":7,"47058":8,"47059":4,"47060":4,"47061":4,"47062":7,"47063":5,"47064":2,"47065":5,"47066":5,"47067":6,"47068":9,"47069":9,"47070":2,"47071":7,"47072":9,"47073":7,"47074":5,"47075":8,"47076":8,"47077":7,"47078":7,"47079":8,"47080":8,"47081":6,"47082":7,"47083":7,"47084":1,"47085":1,"47086":2,"47087":2,"47088":6,"47089":8,"47090":7,"47091":9,"47092":8,"47093":3,"47094":7,"47095":2,"47096":10,"47097":5,"47098":10,"47099":7,"47100":7,"47101":8,"47102":7,"47103":7,"47104":7,"47105":7,"47106":9,"47107":8,"47108":9,"47109":6,"47110":6,"47111":5,"47112":9,"47113":8,"47114":7,"47115":8,"47116":8,"47117":3,"47118":6,"47119":9,"47120":6,"47121":5,"47122":2,"47123":2,"47124":8,"47125":2,"47126":8,"47127":4,"47128":3,"47129":3,"47130":8,"47131":9,"47132":4,"47133":7,"47134":2,"47135":9,"47136":10,"47137":5,"47138":10,"47139":8,"47140":8,"47141":8,"47142":7,"47143":7,"47144":9,"47145":9,"47146":8,"47147":5,"47148":7,"47149":2,"47150":5,"47151":9,"47152":8,"47153":8,"47154":3,"47155":5,"47156":8,"47157":8,"47158":4,"47159":8,"47160":9,"47161":9,"47162":7,"47163":8,"47164":7,"47165":8,"47166":9,"47167":7,"47168":9,"47169":8,"47170":5,"47171":6,"47172":8,"47173":8,"47174":7,"47175":7,"47176":9,"47177":7,"47178":1,"47179":3,"47180":6,"47181":10,"47182":6,"47183":7,"47184":8,"47185":5,"47186":9,"47187":2,"47188":2,"47189":8,"47190":3,"47191":2,"47192":7,"47193":10,"47194":9,"47195":2,"47196":5,"47197":9,"47198":2,"47199":7,"47200":2,"47201":1,"47202":8,"47203":4,"47204":5,"47205":6,"47206":3,"47207":9,"47208":7,"47209":9,"47210":10,"47211":2,"47212":9,"47213":9,"47214":8,"47215":9,"47216":5,"47217":9,"47218":9,"47219":8,"47220":8,"47221":5,"47222":8,"47223":10,"47224":7,"47225":7,"47226":8,"47227":7,"47228":10,"47229":2,"47230":8,"47231":4,"47232":2,"47233":1,"47234":10,"47235":3,"47236":10,"47237":8,"47238":7,"47239":2,"47240":7,"47241":7,"47242":7,"47243":8,"47244":7,"47245":10,"47246":6,"47247":8,"47248":5,"47249":10,"47250":8,"47251":1,"47252":2,"47253":2,"47254":7,"47255":10,"47256":5,"47257":9,"47258":10,"47259":1,"47260":6,"47261":2,"47262":3,"47263":10,"47264":7,"47265":8,"47266":7,"47267":2,"47268":5,"47269":1,"47270":9,"47271":10,"47272":4,"47273":9,"47274":8,"47275":8,"47276":6,"47277":9,"47278":4,"47279":8,"47280":2,"47281":9,"47282":8,"47283":7,"47284":7,"47285":7,"47286":5,"47287":5,"47288":4,"47289":8,"47290":2,"47291":7,"47292":10,"47293":8,"47294":5,"47295":8,"47296":5,"47297":6,"47298":2,"47299":9,"47300":7,"47301":8,"47302":8,"47303":9,"47304":7,"47305":5,"47306":6,"47307":7,"47308":8,"47309":3,"47310":8,"47311":6,"47312":9,"47313":4,"47314":2,"47315":2,"47316":9,"47317":1,"47318":7,"47319":8,"47320":5,"47321":7,"47322":8,"47323":4,"47324":4,"47325":1,"47326":10,"47327":7,"47328":8,"47329":5,"47330":9,"47331":9,"47332":3,"47333":10,"47334":9,"47335":5,"47336":2,"47337":7,"47338":7,"47339":4,"47340":2,"47341":7,"47342":7,"47343":4,"47344":9,"47345":2,"47346":2,"47347":2,"47348":2,"47349":4,"47350":2,"47351":4,"47352":7,"47353":9,"47354":5,"47355":5,"47356":7,"47357":7,"47358":9,"47359":2,"47360":7,"47361":2,"47362":9,"47363":2,"47364":4,"47365":9,"47366":7,"47367":3,"47368":6,"47369":8,"47370":10,"47371":3,"47372":5,"47373":7,"47374":9,"47375":8,"47376":7,"47377":2,"47378":7,"47379":9,"47380":7,"47381":7,"47382":8,"47383":8,"47384":6,"47385":1,"47386":8,"47387":8,"47388":7,"47389":1,"47390":7,"47391":7,"47392":7,"47393":8,"47394":1,"47395":9,"47396":8,"47397":10,"47398":7,"47399":2,"47400":9,"47401":7,"47402":8,"47403":7,"47404":3,"47405":8,"47406":4,"47407":2,"47408":2,"47409":7,"47410":4,"47411":4,"47412":8,"47413":9,"47414":7,"47415":8,"47416":7,"47417":2,"47418":2,"47419":2,"47420":7,"47421":9,"47422":9,"47423":6,"47424":5,"47425":8,"47426":7,"47427":2,"47428":8,"47429":9,"47430":9,"47431":4,"47432":5,"47433":10,"47434":2,"47435":7,"47436":2,"47437":6,"47438":10,"47439":8,"47440":8,"47441":10,"47442":3,"47443":8,"47444":8,"47445":5,"47446":3,"47447":7,"47448":7,"47449":10,"47450":8,"47451":7,"47452":5,"47453":8,"47454":9,"47455":7,"47456":9,"47457":2,"47458":2,"47459":7,"47460":5,"47461":7,"47462":5,"47463":3,"47464":5,"47465":7,"47466":6,"47467":2,"47468":9,"47469":9,"47470":8,"47471":8,"47472":7,"47473":5,"47474":9,"47475":2,"47476":7,"47477":10,"47478":4,"47479":9,"47480":8,"47481":3,"47482":7,"47483":7,"47484":7,"47485":4,"47486":6,"47487":1,"47488":7,"47489":7,"47490":7,"47491":7,"47492":9,"47493":2,"47494":5,"47495":10,"47496":7,"47497":1,"47498":2,"47499":5,"47500":7,"47501":8,"47502":4,"47503":7,"47504":9,"47505":7,"47506":9,"47507":7,"47508":9,"47509":8,"47510":3,"47511":2,"47512":8,"47513":8,"47514":2,"47515":8,"47516":8,"47517":10,"47518":7,"47519":10,"47520":8,"47521":5,"47522":5,"47523":3,"47524":6,"47525":7,"47526":7,"47527":7,"47528":6,"47529":8,"47530":8,"47531":6,"47532":10,"47533":10,"47534":10,"47535":8,"47536":8,"47537":7,"47538":7,"47539":9,"47540":9,"47541":2,"47542":1,"47543":9,"47544":1,"47545":10,"47546":7,"47547":3,"47548":5,"47549":1,"47550":10,"47551":4,"47552":7,"47553":7,"47554":7,"47555":5,"47556":9,"47557":7,"47558":1,"47559":9,"47560":6,"47561":8,"47562":7,"47563":7,"47564":7,"47565":8,"47566":1,"47567":8,"47568":1,"47569":8,"47570":9,"47571":6,"47572":9,"47573":1,"47574":7,"47575":3,"47576":9,"47577":7,"47578":7,"47579":1,"47580":8,"47581":9,"47582":8,"47583":8,"47584":7,"47585":4,"47586":7,"47587":7,"47588":10,"47589":4,"47590":10,"47591":6,"47592":1,"47593":8,"47594":9,"47595":8,"47596":5,"47597":2,"47598":8,"47599":9,"47600":7,"47601":7,"47602":7,"47603":2,"47604":8,"47605":7,"47606":3,"47607":1,"47608":9,"47609":7,"47610":8,"47611":3,"47612":9,"47613":8,"47614":8,"47615":2,"47616":9,"47617":10,"47618":9,"47619":7,"47620":7,"47621":9,"47622":4,"47623":2,"47624":10,"47625":8,"47626":7,"47627":9,"47628":5,"47629":8,"47630":10,"47631":8,"47632":7,"47633":9,"47634":8,"47635":2,"47636":9,"47637":1,"47638":3,"47639":10,"47640":3,"47641":9,"47642":8,"47643":6,"47644":7,"47645":1,"47646":6,"47647":7,"47648":6,"47649":9,"47650":6,"47651":1,"47652":5,"47653":2,"47654":9,"47655":6,"47656":7,"47657":8,"47658":8,"47659":9,"47660":2,"47661":4,"47662":1,"47663":8,"47664":7,"47665":8,"47666":4,"47667":2,"47668":8,"47669":1,"47670":8,"47671":8,"47672":4,"47673":4,"47674":8,"47675":5,"47676":8,"47677":4,"47678":1,"47679":5,"47680":2,"47681":1,"47682":9,"47683":8,"47684":9,"47685":8,"47686":2,"47687":7,"47688":7,"47689":9,"47690":5,"47691":8,"47692":2,"47693":8,"47694":10,"47695":10,"47696":8,"47697":8,"47698":10,"47699":4,"47700":10,"47701":8,"47702":10,"47703":2,"47704":7,"47705":9,"47706":5,"47707":8,"47708":10,"47709":3,"47710":2,"47711":8,"47712":7,"47713":10,"47714":7,"47715":8,"47716":8,"47717":8,"47718":9,"47719":2,"47720":7,"47721":8,"47722":9,"47723":7,"47724":7,"47725":3,"47726":8,"47727":5,"47728":5,"47729":4,"47730":9,"47731":8,"47732":9,"47733":5,"47734":5,"47735":7,"47736":7,"47737":8,"47738":1,"47739":7,"47740":8,"47741":9,"47742":7,"47743":6,"47744":8,"47745":2,"47746":4,"47747":9,"47748":7,"47749":4,"47750":8,"47751":7,"47752":1,"47753":8,"47754":9,"47755":2,"47756":2,"47757":8,"47758":7,"47759":9,"47760":7,"47761":8,"47762":5,"47763":5,"47764":8,"47765":8,"47766":9,"47767":5,"47768":8,"47769":4,"47770":5,"47771":1,"47772":5,"47773":5,"47774":1,"47775":8,"47776":7,"47777":7,"47778":8,"47779":5,"47780":5,"47781":2,"47782":7,"47783":9,"47784":7,"47785":8,"47786":7,"47787":7,"47788":9,"47789":6,"47790":7,"47791":8,"47792":10,"47793":8,"47794":7,"47795":6,"47796":8,"47797":6,"47798":7,"47799":8,"47800":5,"47801":8,"47802":2,"47803":10,"47804":7,"47805":6,"47806":5,"47807":1,"47808":5,"47809":6,"47810":10,"47811":9,"47812":7,"47813":8,"47814":5,"47815":9,"47816":5,"47817":7,"47818":8,"47819":10,"47820":1,"47821":5,"47822":7,"47823":9,"47824":8,"47825":8,"47826":1,"47827":10,"47828":4,"47829":5,"47830":10,"47831":7,"47832":8,"47833":2,"47834":8,"47835":4,"47836":9,"47837":4,"47838":9,"47839":7,"47840":7,"47841":8,"47842":1,"47843":5,"47844":3,"47845":10,"47846":5,"47847":3,"47848":8,"47849":4,"47850":5,"47851":2,"47852":6,"47853":9,"47854":6,"47855":10,"47856":3,"47857":7,"47858":7,"47859":2,"47860":9,"47861":4,"47862":10,"47863":8,"47864":3,"47865":8,"47866":10,"47867":3,"47868":6,"47869":7,"47870":1,"47871":8,"47872":1,"47873":5,"47874":6,"47875":8,"47876":1,"47877":8,"47878":2,"47879":9,"47880":7,"47881":8,"47882":7,"47883":5,"47884":3,"47885":5,"47886":9,"47887":10,"47888":2,"47889":7,"47890":1,"47891":5,"47892":10,"47893":3,"47894":9,"47895":3,"47896":7,"47897":9,"47898":7,"47899":5,"47900":6,"47901":8,"47902":1,"47903":8,"47904":9,"47905":8,"47906":8,"47907":2,"47908":7,"47909":4,"47910":10,"47911":1,"47912":6,"47913":3,"47914":8,"47915":5,"47916":9,"47917":9,"47918":5,"47919":7,"47920":10,"47921":7,"47922":5,"47923":4,"47924":7,"47925":8,"47926":8,"47927":3,"47928":7,"47929":3,"47930":7,"47931":1,"47932":7,"47933":10,"47934":8,"47935":9,"47936":2,"47937":7,"47938":9,"47939":9,"47940":2,"47941":8,"47942":8,"47943":5,"47944":2,"47945":8,"47946":1,"47947":10,"47948":8,"47949":9,"47950":6,"47951":8,"47952":9,"47953":9,"47954":8,"47955":4,"47956":7,"47957":7,"47958":7,"47959":8,"47960":5,"47961":9,"47962":7,"47963":7,"47964":8,"47965":6,"47966":8,"47967":9,"47968":3,"47969":8,"47970":9,"47971":4,"47972":7,"47973":7,"47974":7,"47975":4,"47976":9,"47977":2,"47978":1,"47979":2,"47980":4,"47981":7,"47982":8,"47983":7,"47984":8,"47985":2,"47986":7,"47987":10,"47988":2,"47989":7,"47990":9,"47991":8,"47992":8,"47993":6,"47994":8,"47995":7,"47996":5,"47997":9,"47998":8,"47999":10,"48000":7,"48001":9,"48002":10,"48003":2,"48004":9,"48005":9,"48006":7,"48007":8,"48008":6,"48009":7,"48010":5,"48011":7,"48012":7,"48013":5,"48014":9,"48015":1,"48016":4,"48017":1,"48018":5,"48019":10,"48020":6,"48021":7,"48022":10,"48023":9,"48024":7,"48025":4,"48026":8,"48027":8,"48028":5,"48029":6,"48030":4,"48031":9,"48032":9,"48033":7,"48034":9,"48035":8,"48036":7,"48037":5,"48038":7,"48039":9,"48040":6,"48041":5,"48042":7,"48043":8,"48044":3,"48045":2,"48046":4,"48047":10,"48048":4,"48049":5,"48050":4,"48051":9,"48052":2,"48053":8,"48054":10,"48055":7,"48056":9,"48057":2,"48058":1,"48059":2,"48060":6,"48061":9,"48062":8,"48063":1,"48064":1,"48065":9,"48066":7,"48067":8,"48068":7,"48069":8,"48070":5,"48071":8,"48072":6,"48073":8,"48074":8,"48075":3,"48076":8,"48077":2,"48078":8,"48079":7,"48080":7,"48081":1,"48082":2,"48083":7,"48084":5,"48085":9,"48086":7,"48087":9,"48088":8,"48089":7,"48090":9,"48091":6,"48092":3,"48093":8,"48094":9,"48095":7,"48096":4,"48097":9,"48098":9,"48099":7,"48100":10,"48101":8,"48102":8,"48103":4,"48104":4,"48105":2,"48106":6,"48107":1,"48108":9,"48109":8,"48110":6,"48111":5,"48112":2,"48113":5,"48114":2,"48115":8,"48116":10,"48117":5,"48118":10,"48119":9,"48120":1,"48121":2,"48122":10,"48123":9,"48124":7,"48125":8,"48126":4,"48127":6,"48128":6,"48129":8,"48130":8,"48131":9,"48132":9,"48133":7,"48134":9,"48135":7,"48136":1,"48137":8,"48138":7,"48139":3,"48140":8,"48141":2,"48142":7,"48143":2,"48144":2,"48145":5,"48146":1,"48147":9,"48148":7,"48149":8,"48150":5,"48151":6,"48152":9,"48153":7,"48154":5,"48155":8,"48156":3,"48157":7,"48158":5,"48159":6,"48160":6,"48161":4,"48162":8,"48163":7,"48164":7,"48165":9,"48166":8,"48167":8,"48168":7,"48169":6,"48170":8,"48171":9,"48172":5,"48173":5,"48174":4,"48175":4,"48176":5,"48177":8,"48178":5,"48179":9,"48180":2,"48181":8,"48182":5,"48183":7,"48184":4,"48185":8,"48186":5,"48187":7,"48188":8,"48189":7,"48190":8,"48191":7,"48192":3,"48193":8,"48194":9,"48195":9,"48196":9,"48197":5,"48198":10,"48199":8,"48200":6,"48201":4,"48202":7,"48203":7,"48204":10,"48205":3,"48206":1,"48207":8,"48208":8,"48209":1,"48210":9,"48211":5,"48212":6,"48213":2,"48214":9,"48215":5,"48216":7,"48217":10,"48218":8,"48219":8,"48220":8,"48221":7,"48222":8,"48223":9,"48224":9,"48225":4,"48226":8,"48227":7,"48228":8,"48229":3,"48230":5,"48231":7,"48232":2,"48233":7,"48234":8,"48235":10,"48236":6,"48237":7,"48238":6,"48239":8,"48240":8,"48241":9,"48242":4,"48243":5,"48244":2,"48245":7,"48246":4,"48247":7,"48248":5,"48249":9,"48250":3,"48251":4,"48252":7,"48253":8,"48254":6,"48255":6,"48256":5,"48257":1,"48258":8,"48259":5,"48260":2,"48261":9,"48262":5,"48263":8,"48264":7,"48265":7,"48266":9,"48267":6,"48268":8,"48269":5,"48270":8,"48271":7,"48272":7,"48273":9,"48274":5,"48275":9,"48276":8,"48277":7,"48278":1,"48279":9,"48280":5,"48281":7,"48282":8,"48283":5,"48284":7,"48285":5,"48286":8,"48287":2,"48288":7,"48289":5,"48290":9,"48291":1,"48292":1,"48293":9,"48294":7,"48295":8,"48296":9,"48297":8,"48298":9,"48299":6,"48300":2,"48301":6,"48302":6,"48303":5,"48304":9,"48305":8,"48306":1,"48307":5,"48308":9,"48309":1,"48310":7,"48311":4,"48312":7,"48313":7,"48314":2,"48315":7,"48316":1,"48317":8,"48318":9,"48319":5,"48320":7,"48321":8,"48322":4,"48323":8,"48324":9,"48325":5,"48326":7,"48327":7,"48328":5,"48329":2,"48330":4,"48331":9,"48332":7,"48333":10,"48334":7,"48335":9,"48336":8,"48337":3,"48338":3,"48339":5,"48340":7,"48341":7,"48342":2,"48343":4,"48344":7,"48345":2,"48346":2,"48347":5,"48348":8,"48349":8,"48350":2,"48351":2,"48352":9,"48353":8,"48354":8,"48355":9,"48356":2,"48357":2,"48358":5,"48359":8,"48360":1,"48361":8,"48362":4,"48363":8,"48364":10,"48365":2,"48366":10,"48367":8,"48368":4,"48369":7,"48370":8,"48371":9,"48372":10,"48373":9,"48374":7,"48375":8,"48376":7,"48377":7,"48378":9,"48379":8,"48380":10,"48381":7,"48382":8,"48383":2,"48384":2,"48385":5,"48386":7,"48387":1,"48388":4,"48389":4,"48390":7,"48391":2,"48392":9,"48393":6,"48394":5,"48395":10,"48396":8,"48397":7,"48398":7,"48399":8,"48400":7,"48401":9,"48402":2,"48403":10,"48404":6,"48405":5,"48406":6,"48407":6,"48408":8,"48409":1,"48410":7,"48411":8,"48412":1,"48413":8,"48414":8,"48415":6,"48416":7,"48417":2,"48418":9,"48419":8,"48420":10,"48421":2,"48422":1,"48423":3,"48424":6,"48425":7,"48426":2,"48427":7,"48428":7,"48429":8,"48430":3,"48431":8,"48432":5,"48433":4,"48434":8,"48435":7,"48436":9,"48437":10,"48438":10,"48439":7,"48440":1,"48441":1,"48442":4,"48443":3,"48444":9,"48445":4,"48446":8,"48447":6,"48448":4,"48449":8,"48450":8,"48451":4,"48452":5,"48453":9,"48454":7,"48455":5,"48456":3,"48457":7,"48458":6,"48459":5,"48460":9,"48461":7,"48462":7,"48463":3,"48464":2,"48465":5,"48466":7,"48467":7,"48468":7,"48469":9,"48470":7,"48471":6,"48472":1,"48473":3,"48474":1,"48475":2,"48476":4,"48477":10,"48478":2,"48479":5,"48480":8,"48481":7,"48482":1,"48483":7,"48484":8,"48485":10,"48486":1,"48487":3,"48488":4,"48489":2,"48490":8,"48491":9,"48492":7,"48493":7,"48494":9,"48495":9,"48496":5,"48497":7,"48498":1,"48499":4,"48500":4,"48501":9,"48502":8,"48503":7,"48504":5,"48505":6,"48506":10,"48507":7,"48508":8,"48509":9,"48510":7,"48511":8,"48512":8,"48513":1,"48514":2,"48515":7,"48516":8,"48517":2,"48518":7,"48519":1,"48520":9,"48521":7,"48522":10,"48523":8,"48524":5,"48525":2,"48526":8,"48527":2,"48528":8,"48529":9,"48530":9,"48531":10,"48532":2,"48533":1,"48534":10,"48535":8,"48536":8,"48537":7,"48538":6,"48539":3,"48540":4,"48541":2,"48542":3,"48543":6,"48544":8,"48545":9,"48546":5,"48547":5,"48548":5,"48549":7,"48550":6,"48551":8,"48552":10,"48553":8,"48554":8,"48555":8,"48556":7,"48557":2,"48558":6,"48559":2,"48560":7,"48561":2,"48562":1,"48563":7,"48564":3,"48565":2,"48566":3,"48567":7,"48568":9,"48569":5,"48570":8,"48571":9,"48572":7,"48573":8,"48574":8,"48575":8,"48576":6,"48577":8,"48578":7,"48579":5,"48580":9,"48581":2,"48582":3,"48583":8,"48584":2,"48585":3,"48586":1,"48587":6,"48588":8,"48589":7,"48590":8,"48591":7,"48592":8,"48593":7,"48594":8,"48595":7,"48596":5,"48597":8,"48598":8,"48599":2,"48600":7,"48601":3,"48602":2,"48603":8,"48604":3,"48605":7,"48606":4,"48607":9,"48608":7,"48609":2,"48610":9,"48611":4,"48612":5,"48613":2,"48614":7,"48615":8,"48616":6,"48617":1,"48618":8,"48619":1,"48620":6,"48621":8,"48622":1,"48623":2,"48624":1,"48625":7,"48626":1,"48627":4,"48628":5,"48629":9,"48630":8,"48631":9,"48632":7,"48633":3,"48634":9,"48635":2,"48636":9,"48637":8,"48638":8,"48639":2,"48640":8,"48641":2,"48642":3,"48643":1,"48644":7,"48645":7,"48646":4,"48647":9,"48648":8,"48649":7,"48650":7,"48651":9,"48652":5,"48653":8,"48654":7,"48655":7,"48656":7,"48657":5,"48658":9,"48659":8,"48660":1,"48661":2,"48662":10,"48663":7,"48664":7,"48665":5,"48666":10,"48667":2,"48668":5,"48669":2,"48670":6,"48671":6,"48672":8,"48673":3,"48674":4,"48675":7,"48676":6,"48677":8,"48678":7,"48679":10,"48680":7,"48681":5,"48682":7,"48683":1,"48684":8,"48685":4,"48686":7,"48687":6,"48688":7,"48689":1,"48690":9,"48691":8,"48692":7,"48693":8,"48694":7,"48695":8,"48696":1,"48697":7,"48698":7,"48699":4,"48700":7,"48701":8,"48702":3,"48703":7,"48704":10,"48705":1,"48706":8,"48707":5,"48708":7,"48709":1,"48710":10,"48711":9,"48712":8,"48713":9,"48714":7,"48715":7,"48716":9,"48717":10,"48718":8,"48719":9,"48720":5,"48721":9,"48722":2,"48723":9,"48724":7,"48725":7,"48726":8,"48727":5,"48728":8,"48729":8,"48730":8,"48731":4,"48732":8,"48733":8,"48734":8,"48735":10,"48736":7,"48737":8,"48738":9,"48739":8,"48740":4,"48741":3,"48742":7,"48743":9,"48744":7,"48745":7,"48746":8,"48747":2,"48748":9,"48749":6,"48750":3,"48751":5,"48752":9,"48753":7,"48754":8,"48755":7,"48756":3,"48757":10,"48758":6,"48759":7,"48760":7,"48761":9,"48762":8,"48763":9,"48764":9,"48765":3,"48766":9,"48767":7,"48768":7,"48769":6,"48770":8,"48771":7,"48772":7,"48773":6,"48774":2,"48775":4,"48776":7,"48777":7,"48778":8,"48779":7,"48780":8,"48781":5,"48782":9,"48783":9,"48784":5,"48785":6,"48786":10,"48787":4,"48788":7,"48789":8,"48790":1,"48791":8,"48792":9,"48793":9,"48794":7,"48795":2,"48796":10,"48797":9,"48798":2,"48799":7,"48800":2,"48801":8,"48802":9,"48803":4,"48804":7,"48805":7,"48806":2,"48807":7,"48808":9,"48809":7,"48810":9,"48811":8,"48812":2,"48813":6,"48814":10,"48815":4,"48816":2,"48817":4,"48818":1,"48819":7,"48820":9,"48821":8,"48822":8,"48823":1,"48824":1,"48825":1,"48826":6,"48827":7,"48828":7,"48829":4,"48830":7,"48831":8,"48832":8,"48833":7,"48834":8,"48835":7,"48836":2,"48837":8,"48838":8,"48839":7,"48840":2,"48841":4,"48842":7,"48843":8,"48844":2,"48845":10,"48846":5,"48847":9,"48848":8,"48849":10,"48850":3,"48851":3,"48852":3,"48853":10,"48854":7,"48855":7,"48856":8,"48857":9,"48858":2,"48859":1,"48860":8,"48861":3,"48862":3,"48863":8,"48864":9,"48865":7,"48866":9,"48867":9,"48868":3,"48869":7,"48870":8,"48871":8,"48872":7,"48873":7,"48874":1,"48875":7,"48876":3,"48877":3,"48878":2,"48879":6,"48880":3,"48881":2,"48882":5,"48883":1,"48884":7,"48885":9,"48886":2,"48887":8,"48888":7,"48889":8,"48890":1,"48891":9,"48892":7,"48893":8,"48894":8,"48895":7,"48896":7,"48897":2,"48898":2,"48899":7,"48900":7,"48901":7,"48902":8,"48903":8,"48904":2,"48905":9,"48906":7,"48907":1,"48908":5,"48909":3,"48910":10,"48911":5,"48912":4,"48913":9,"48914":9,"48915":8,"48916":4,"48917":7,"48918":3,"48919":9,"48920":2,"48921":4,"48922":5,"48923":5,"48924":5,"48925":9,"48926":2,"48927":2,"48928":8,"48929":9,"48930":7,"48931":7,"48932":8,"48933":1,"48934":9,"48935":10,"48936":5,"48937":9,"48938":5,"48939":9,"48940":7,"48941":2,"48942":7,"48943":1,"48944":9,"48945":4,"48946":2,"48947":9,"48948":8,"48949":9,"48950":7,"48951":6,"48952":3,"48953":10,"48954":5,"48955":7,"48956":6,"48957":5,"48958":5,"48959":8,"48960":8,"48961":6,"48962":8,"48963":3,"48964":7,"48965":1,"48966":5,"48967":9,"48968":9,"48969":4,"48970":1,"48971":8,"48972":7,"48973":5,"48974":9,"48975":10,"48976":2,"48977":8,"48978":5,"48979":2,"48980":8,"48981":3,"48982":7,"48983":2,"48984":8,"48985":7,"48986":9,"48987":7,"48988":8,"48989":9,"48990":7,"48991":2,"48992":8,"48993":7,"48994":8,"48995":7,"48996":5,"48997":9,"48998":7,"48999":8,"49000":8,"49001":5,"49002":1,"49003":2,"49004":8,"49005":9,"49006":1,"49007":8,"49008":2,"49009":8,"49010":2,"49011":1,"49012":9,"49013":1,"49014":9,"49015":9,"49016":7,"49017":3,"49018":8,"49019":2,"49020":8,"49021":9,"49022":7,"49023":7,"49024":4,"49025":9,"49026":3,"49027":5,"49028":3,"49029":5,"49030":9,"49031":3,"49032":9,"49033":10,"49034":3,"49035":7,"49036":2,"49037":8,"49038":9,"49039":7,"49040":5,"49041":8,"49042":8,"49043":9,"49044":9,"49045":9,"49046":1,"49047":9,"49048":9,"49049":9,"49050":1,"49051":9,"49052":8,"49053":9,"49054":5,"49055":7,"49056":9,"49057":10,"49058":7,"49059":6,"49060":6,"49061":6,"49062":2,"49063":5,"49064":6,"49065":7,"49066":8,"49067":8,"49068":7,"49069":5,"49070":7,"49071":2,"49072":6,"49073":7,"49074":8,"49075":1,"49076":7,"49077":2,"49078":8,"49079":7,"49080":8,"49081":10,"49082":2,"49083":3,"49084":8,"49085":7,"49086":10,"49087":4,"49088":3,"49089":7,"49090":2,"49091":9,"49092":1,"49093":9,"49094":9,"49095":9,"49096":9,"49097":1,"49098":7,"49099":7,"49100":8,"49101":9,"49102":7,"49103":2,"49104":3,"49105":9,"49106":7,"49107":10,"49108":6,"49109":5,"49110":2,"49111":4,"49112":7,"49113":7,"49114":5,"49115":9,"49116":6,"49117":9,"49118":6,"49119":7,"49120":5,"49121":7,"49122":8,"49123":10,"49124":3,"49125":4,"49126":10,"49127":8,"49128":5,"49129":2,"49130":8,"49131":7,"49132":4,"49133":1,"49134":9,"49135":9,"49136":1,"49137":9,"49138":7,"49139":3,"49140":8,"49141":1,"49142":1,"49143":7,"49144":6,"49145":10,"49146":7,"49147":9,"49148":7,"49149":5,"49150":9,"49151":2,"49152":7,"49153":7,"49154":10,"49155":2,"49156":9,"49157":8,"49158":10,"49159":8,"49160":9,"49161":8,"49162":5,"49163":7,"49164":7,"49165":9,"49166":7,"49167":8,"49168":4,"49169":6,"49170":5,"49171":8,"49172":6,"49173":2,"49174":8,"49175":3,"49176":8,"49177":5,"49178":6,"49179":8,"49180":1,"49181":3,"49182":9,"49183":2,"49184":9,"49185":8,"49186":3,"49187":7,"49188":6,"49189":10,"49190":4,"49191":7,"49192":2,"49193":3,"49194":4,"49195":2,"49196":2,"49197":5,"49198":9,"49199":1,"49200":9,"49201":7,"49202":1,"49203":10,"49204":8,"49205":8,"49206":3,"49207":7,"49208":5,"49209":7,"49210":9,"49211":2,"49212":10,"49213":8,"49214":4,"49215":3,"49216":9,"49217":7,"49218":8,"49219":9,"49220":8,"49221":8,"49222":10,"49223":7,"49224":7,"49225":4,"49226":7,"49227":9,"49228":1,"49229":1,"49230":9,"49231":3,"49232":7,"49233":8,"49234":9,"49235":9,"49236":9,"49237":9,"49238":9,"49239":2,"49240":10,"49241":8,"49242":6,"49243":4,"49244":5,"49245":5,"49246":9,"49247":5,"49248":8,"49249":3,"49250":7,"49251":8,"49252":8,"49253":7,"49254":1,"49255":3,"49256":2,"49257":2,"49258":8,"49259":8,"49260":8,"49261":7,"49262":4,"49263":2,"49264":2,"49265":2,"49266":1,"49267":8,"49268":7,"49269":5,"49270":9,"49271":8,"49272":1,"49273":8,"49274":8,"49275":9,"49276":7,"49277":7,"49278":8,"49279":5,"49280":7,"49281":3,"49282":8,"49283":7,"49284":2,"49285":8,"49286":7,"49287":2,"49288":9,"49289":1,"49290":7,"49291":8,"49292":10,"49293":9,"49294":6,"49295":8,"49296":7,"49297":1,"49298":8,"49299":7,"49300":8,"49301":8,"49302":7,"49303":8,"49304":7,"49305":4,"49306":7,"49307":9,"49308":9,"49309":2,"49310":7,"49311":4,"49312":5,"49313":7,"49314":10,"49315":8,"49316":1,"49317":3,"49318":7,"49319":2,"49320":4,"49321":8,"49322":8,"49323":3,"49324":5,"49325":5,"49326":10,"49327":10,"49328":9,"49329":7,"49330":5,"49331":9,"49332":4,"49333":10,"49334":1,"49335":4,"49336":2,"49337":8,"49338":6,"49339":8,"49340":7,"49341":10,"49342":8,"49343":8,"49344":2,"49345":7,"49346":9,"49347":5,"49348":8,"49349":6,"49350":8,"49351":8,"49352":8,"49353":7,"49354":7,"49355":5,"49356":8,"49357":8,"49358":8,"49359":2,"49360":4,"49361":2,"49362":7,"49363":6,"49364":7,"49365":7,"49366":8,"49367":8,"49368":7,"49369":8,"49370":7,"49371":5,"49372":6,"49373":4,"49374":9,"49375":5,"49376":4,"49377":5,"49378":8,"49379":2,"49380":5,"49381":8,"49382":1,"49383":8,"49384":7,"49385":9,"49386":8,"49387":3,"49388":5,"49389":2,"49390":9,"49391":7,"49392":8,"49393":9,"49394":7,"49395":7,"49396":9,"49397":6,"49398":8,"49399":2,"49400":8,"49401":10,"49402":10,"49403":10,"49404":7,"49405":7,"49406":1,"49407":7,"49408":9,"49409":9,"49410":9,"49411":8,"49412":8,"49413":9,"49414":4,"49415":9,"49416":1,"49417":8,"49418":9,"49419":8,"49420":8,"49421":10,"49422":9,"49423":9,"49424":8,"49425":8,"49426":9,"49427":3,"49428":7,"49429":7,"49430":1,"49431":8,"49432":9,"49433":9,"49434":3,"49435":8,"49436":6,"49437":8,"49438":8,"49439":5,"49440":8,"49441":7,"49442":8,"49443":1,"49444":8,"49445":9,"49446":2,"49447":2,"49448":8,"49449":3,"49450":7,"49451":9,"49452":8,"49453":9,"49454":8,"49455":6,"49456":9,"49457":7,"49458":8,"49459":2,"49460":1,"49461":8,"49462":10,"49463":3,"49464":5,"49465":10,"49466":1,"49467":2,"49468":2,"49469":9,"49470":4,"49471":2,"49472":7,"49473":9,"49474":9,"49475":5,"49476":1,"49477":9,"49478":8,"49479":7,"49480":3,"49481":8,"49482":2,"49483":7,"49484":5,"49485":5,"49486":4,"49487":8,"49488":3,"49489":3,"49490":4,"49491":6,"49492":9,"49493":5,"49494":7,"49495":9,"49496":1,"49497":5,"49498":5,"49499":7,"49500":8,"49501":3,"49502":8,"49503":4,"49504":4,"49505":9,"49506":2,"49507":2,"49508":7,"49509":5,"49510":7,"49511":8,"49512":8,"49513":7,"49514":8,"49515":2,"49516":7,"49517":2,"49518":5,"49519":8,"49520":6,"49521":10,"49522":2,"49523":8,"49524":5,"49525":4,"49526":7,"49527":10,"49528":4,"49529":5,"49530":10,"49531":10,"49532":8,"49533":8,"49534":8,"49535":8,"49536":9,"49537":8,"49538":5,"49539":9,"49540":7,"49541":5,"49542":2,"49543":7,"49544":2,"49545":6,"49546":8,"49547":3,"49548":7,"49549":7,"49550":9,"49551":8,"49552":7,"49553":2,"49554":9,"49555":9,"49556":8,"49557":8,"49558":8,"49559":8,"49560":6,"49561":5,"49562":9,"49563":8,"49564":7,"49565":8,"49566":7,"49567":1,"49568":6,"49569":8,"49570":10,"49571":8,"49572":10,"49573":7,"49574":7,"49575":7,"49576":8,"49577":4,"49578":9,"49579":7,"49580":5,"49581":8,"49582":8,"49583":10,"49584":5,"49585":4,"49586":1,"49587":7,"49588":8,"49589":5,"49590":7,"49591":7,"49592":9,"49593":6,"49594":2,"49595":8,"49596":5,"49597":7,"49598":7,"49599":7,"49600":9,"49601":8,"49602":9,"49603":8,"49604":2,"49605":7,"49606":3,"49607":7,"49608":9,"49609":5,"49610":5,"49611":7,"49612":6,"49613":4,"49614":3,"49615":9,"49616":1,"49617":8,"49618":7,"49619":10,"49620":5,"49621":4,"49622":7,"49623":8,"49624":8,"49625":7,"49626":10,"49627":8,"49628":7,"49629":9,"49630":7,"49631":3,"49632":7,"49633":7,"49634":7,"49635":8,"49636":5,"49637":6,"49638":8,"49639":9,"49640":7,"49641":2,"49642":8,"49643":6,"49644":7,"49645":7,"49646":7,"49647":6,"49648":3,"49649":9,"49650":2,"49651":8,"49652":7,"49653":8,"49654":7,"49655":8,"49656":2,"49657":4,"49658":8,"49659":2,"49660":8,"49661":7,"49662":8,"49663":5,"49664":6,"49665":7,"49666":7,"49667":7,"49668":1,"49669":8,"49670":8,"49671":9,"49672":9,"49673":9,"49674":5,"49675":7,"49676":7,"49677":10,"49678":3,"49679":9,"49680":6,"49681":5,"49682":7,"49683":2,"49684":7,"49685":9,"49686":7,"49687":8,"49688":8,"49689":7,"49690":9,"49691":8,"49692":8,"49693":2,"49694":6,"49695":9,"49696":7,"49697":7,"49698":3,"49699":10,"49700":6,"49701":4,"49702":5,"49703":7,"49704":5,"49705":2,"49706":8,"49707":4,"49708":8,"49709":1,"49710":2,"49711":9,"49712":2,"49713":5,"49714":6,"49715":9,"49716":1,"49717":9,"49718":4,"49719":9,"49720":1,"49721":8,"49722":3,"49723":7,"49724":10,"49725":5,"49726":8,"49727":7,"49728":1,"49729":4,"49730":9,"49731":4,"49732":9,"49733":1,"49734":5,"49735":5,"49736":8,"49737":9,"49738":8,"49739":9,"49740":9,"49741":2,"49742":7,"49743":2,"49744":1,"49745":5,"49746":6,"49747":8,"49748":4,"49749":10,"49750":8,"49751":7,"49752":8,"49753":5,"49754":9,"49755":8,"49756":3,"49757":9,"49758":8,"49759":2,"49760":7,"49761":8,"49762":5,"49763":9,"49764":10,"49765":2,"49766":3,"49767":9,"49768":2,"49769":9,"49770":7,"49771":10,"49772":8,"49773":9,"49774":7,"49775":5,"49776":4,"49777":3,"49778":2,"49779":9,"49780":7,"49781":9,"49782":5,"49783":8,"49784":5,"49785":7,"49786":9,"49787":7,"49788":9,"49789":6,"49790":7,"49791":1,"49792":7,"49793":5,"49794":2,"49795":9,"49796":9,"49797":2,"49798":8,"49799":10,"49800":2,"49801":5,"49802":9,"49803":10,"49804":2,"49805":9,"49806":4,"49807":2,"49808":9,"49809":5,"49810":7,"49811":7,"49812":2,"49813":3,"49814":9,"49815":2,"49816":7,"49817":7,"49818":6,"49819":7,"49820":9,"49821":5,"49822":8,"49823":1,"49824":5,"49825":10,"49826":8,"49827":1,"49828":7,"49829":7,"49830":2,"49831":9,"49832":8,"49833":7,"49834":7,"49835":8,"49836":2,"49837":4,"49838":8,"49839":2,"49840":5,"49841":8,"49842":2,"49843":7,"49844":9,"49845":8,"49846":7,"49847":9,"49848":9,"49849":7,"49850":8,"49851":10,"49852":8,"49853":9,"49854":10,"49855":8,"49856":1,"49857":7,"49858":5,"49859":5,"49860":7,"49861":7,"49862":1,"49863":8,"49864":9,"49865":8,"49866":8,"49867":6,"49868":8,"49869":7,"49870":1,"49871":9,"49872":2,"49873":5,"49874":7,"49875":5,"49876":5,"49877":7,"49878":7,"49879":1,"49880":5,"49881":7,"49882":7,"49883":2,"49884":7,"49885":6,"49886":7,"49887":4,"49888":2,"49889":2,"49890":5,"49891":6,"49892":8,"49893":8,"49894":5,"49895":5,"49896":7,"49897":8,"49898":7,"49899":8,"49900":8,"49901":9,"49902":5,"49903":8,"49904":2,"49905":6,"49906":10,"49907":7,"49908":8,"49909":2,"49910":5,"49911":9,"49912":8,"49913":9,"49914":9,"49915":8,"49916":8,"49917":5,"49918":8,"49919":4,"49920":3,"49921":8,"49922":8,"49923":1,"49924":9,"49925":5,"49926":2,"49927":5,"49928":8,"49929":9,"49930":8,"49931":8,"49932":4,"49933":7,"49934":1,"49935":7,"49936":2,"49937":10,"49938":8,"49939":8,"49940":8,"49941":2,"49942":5,"49943":2,"49944":5,"49945":5,"49946":9,"49947":5,"49948":6,"49949":4,"49950":8,"49951":10,"49952":8,"49953":8,"49954":9,"49955":8,"49956":9,"49957":4,"49958":8,"49959":8,"49960":4,"49961":7,"49962":2,"49963":9,"49964":10,"49965":7,"49966":10,"49967":6,"49968":8,"49969":9,"49970":8,"49971":4,"49972":7,"49973":7,"49974":3,"49975":7,"49976":1,"49977":5,"49978":8,"49979":7,"49980":2,"49981":6,"49982":3,"49983":6,"49984":9,"49985":2,"49986":5,"49987":7,"49988":10,"49989":9,"49990":7,"49991":10,"49992":3,"49993":4,"49994":7,"49995":7,"49996":8,"49997":6,"49998":1,"49999":9,"50000":5,"50001":8,"50002":5,"50003":5,"50004":7,"50005":2,"50006":8,"50007":3,"50008":7,"50009":5,"50010":6,"50011":7,"50012":7,"50013":7,"50014":7,"50015":7,"50016":5,"50017":7,"50018":5,"50019":2,"50020":7,"50021":1,"50022":1,"50023":7,"50024":1,"50025":9,"50026":6,"50027":6,"50028":6,"50029":8,"50030":3,"50031":7,"50032":2,"50033":5,"50034":9,"50035":5,"50036":8,"50037":9,"50038":2,"50039":3,"50040":8,"50041":3,"50042":2,"50043":4,"50044":5,"50045":8,"50046":7,"50047":9,"50048":7,"50049":4,"50050":8,"50051":5,"50052":5,"50053":9,"50054":8,"50055":6,"50056":5,"50057":7,"50058":8,"50059":2,"50060":7,"50061":5,"50062":7,"50063":7,"50064":9,"50065":7,"50066":7,"50067":7,"50068":10,"50069":8,"50070":5,"50071":7,"50072":4,"50073":1,"50074":5,"50075":7,"50076":6,"50077":2,"50078":9,"50079":2,"50080":2,"50081":6,"50082":9,"50083":1,"50084":10,"50085":10,"50086":9,"50087":4,"50088":7,"50089":8,"50090":8,"50091":2,"50092":9,"50093":4,"50094":8,"50095":3,"50096":8,"50097":10,"50098":8,"50099":9,"50100":9,"50101":7,"50102":7,"50103":1,"50104":9,"50105":2,"50106":10,"50107":8,"50108":4,"50109":8,"50110":2,"50111":4,"50112":3,"50113":4,"50114":8,"50115":7,"50116":9,"50117":3,"50118":2,"50119":6,"50120":9,"50121":7,"50122":4,"50123":3,"50124":1,"50125":8,"50126":2,"50127":3,"50128":5,"50129":8,"50130":7,"50131":7,"50132":10,"50133":7,"50134":4,"50135":1,"50136":2,"50137":4,"50138":5,"50139":8,"50140":8,"50141":4,"50142":7,"50143":7,"50144":6,"50145":8,"50146":8,"50147":9,"50148":6,"50149":5,"50150":3,"50151":5,"50152":4,"50153":1,"50154":7,"50155":2,"50156":8,"50157":7,"50158":7,"50159":3,"50160":5,"50161":6,"50162":8,"50163":2,"50164":2,"50165":3,"50166":9,"50167":7,"50168":8,"50169":2,"50170":5,"50171":8,"50172":5,"50173":9,"50174":7,"50175":10,"50176":7,"50177":1,"50178":8,"50179":7,"50180":9,"50181":2,"50182":8,"50183":4,"50184":1,"50185":8,"50186":3,"50187":7,"50188":9,"50189":8,"50190":10,"50191":9,"50192":6,"50193":5,"50194":7,"50195":8,"50196":7,"50197":2,"50198":4,"50199":6,"50200":5,"50201":2,"50202":1,"50203":8,"50204":7,"50205":8,"50206":8,"50207":7,"50208":1,"50209":9,"50210":7,"50211":8,"50212":2,"50213":5,"50214":2,"50215":8,"50216":8,"50217":5,"50218":8,"50219":2,"50220":8,"50221":1,"50222":5,"50223":5,"50224":9,"50225":8,"50226":7,"50227":7,"50228":4,"50229":5,"50230":9,"50231":8,"50232":7,"50233":9,"50234":3,"50235":8,"50236":9,"50237":9,"50238":7,"50239":5,"50240":4,"50241":9,"50242":7,"50243":3,"50244":8,"50245":4,"50246":7,"50247":7,"50248":3,"50249":9,"50250":8,"50251":9,"50252":2,"50253":7,"50254":8,"50255":6,"50256":5,"50257":9,"50258":5,"50259":1,"50260":8,"50261":7,"50262":7,"50263":7,"50264":3,"50265":10,"50266":5,"50267":3,"50268":3,"50269":10,"50270":8,"50271":6,"50272":10,"50273":9,"50274":7,"50275":5,"50276":5,"50277":9,"50278":7,"50279":8,"50280":9,"50281":9,"50282":7,"50283":7,"50284":6,"50285":7,"50286":7,"50287":6,"50288":8,"50289":5,"50290":9,"50291":10,"50292":7,"50293":3,"50294":5,"50295":7,"50296":1,"50297":9,"50298":5,"50299":4,"50300":2,"50301":7,"50302":7,"50303":5,"50304":2,"50305":8,"50306":7,"50307":7,"50308":7,"50309":1,"50310":2,"50311":7,"50312":10,"50313":7,"50314":8,"50315":6,"50316":2,"50317":8,"50318":9,"50319":7,"50320":7,"50321":7,"50322":6,"50323":9,"50324":8,"50325":8,"50326":2,"50327":3,"50328":6,"50329":3,"50330":6,"50331":7,"50332":8,"50333":1,"50334":10,"50335":9,"50336":1,"50337":8,"50338":10,"50339":7,"50340":7,"50341":1,"50342":5,"50343":8,"50344":8,"50345":9,"50346":5,"50347":7,"50348":1,"50349":10,"50350":5,"50351":8,"50352":6,"50353":4,"50354":2,"50355":9,"50356":7,"50357":6,"50358":4,"50359":9,"50360":9,"50361":7,"50362":2,"50363":7,"50364":6,"50365":6,"50366":9,"50367":4,"50368":6,"50369":4,"50370":9,"50371":2,"50372":4,"50373":7,"50374":2,"50375":8,"50376":9,"50377":2,"50378":5,"50379":6,"50380":4,"50381":9,"50382":7,"50383":2,"50384":6,"50385":7,"50386":5,"50387":8,"50388":8,"50389":8,"50390":3,"50391":6,"50392":7,"50393":9,"50394":9,"50395":8,"50396":7,"50397":4,"50398":7,"50399":7,"50400":9,"50401":8,"50402":10,"50403":9,"50404":8,"50405":9,"50406":7,"50407":10,"50408":2,"50409":8,"50410":8,"50411":4,"50412":8,"50413":4,"50414":2,"50415":2,"50416":7,"50417":7,"50418":7,"50419":8,"50420":7,"50421":7,"50422":2,"50423":9,"50424":8,"50425":9,"50426":9,"50427":9,"50428":2,"50429":8,"50430":8,"50431":7,"50432":7,"50433":2,"50434":5,"50435":5,"50436":9,"50437":9,"50438":3,"50439":5,"50440":7,"50441":7,"50442":7,"50443":9,"50444":8,"50445":3,"50446":7,"50447":8,"50448":3,"50449":9,"50450":7,"50451":7,"50452":2,"50453":7,"50454":5,"50455":8,"50456":2,"50457":7,"50458":8,"50459":5,"50460":8,"50461":5,"50462":3,"50463":6,"50464":2,"50465":7,"50466":2,"50467":8,"50468":7,"50469":8,"50470":1,"50471":6,"50472":3,"50473":9,"50474":5,"50475":6,"50476":5,"50477":7,"50478":8,"50479":6,"50480":7,"50481":9,"50482":8,"50483":8,"50484":8,"50485":5,"50486":9,"50487":2,"50488":9,"50489":9,"50490":6,"50491":9,"50492":9,"50493":8,"50494":8,"50495":7,"50496":10,"50497":8,"50498":2,"50499":1,"50500":8,"50501":3,"50502":2,"50503":1,"50504":7,"50505":4,"50506":1,"50507":2,"50508":9,"50509":8,"50510":8,"50511":7,"50512":7,"50513":8,"50514":6,"50515":9,"50516":2,"50517":2,"50518":9,"50519":8,"50520":9,"50521":1,"50522":9,"50523":9,"50524":3,"50525":8,"50526":7,"50527":7,"50528":9,"50529":8,"50530":2,"50531":7,"50532":7,"50533":8,"50534":2,"50535":7,"50536":3,"50537":8,"50538":8,"50539":7,"50540":8,"50541":7,"50542":9,"50543":7,"50544":8,"50545":7,"50546":6,"50547":9,"50548":2,"50549":9,"50550":2,"50551":1,"50552":2,"50553":5,"50554":9,"50555":8,"50556":7,"50557":8,"50558":9,"50559":2,"50560":2,"50561":8,"50562":5,"50563":6,"50564":5,"50565":10,"50566":2,"50567":7,"50568":7,"50569":8,"50570":1,"50571":1,"50572":7,"50573":8,"50574":2,"50575":7,"50576":9,"50577":8,"50578":7,"50579":8,"50580":4,"50581":8,"50582":9,"50583":9,"50584":7,"50585":2,"50586":8,"50587":2,"50588":2,"50589":2,"50590":9,"50591":7,"50592":7,"50593":9,"50594":9,"50595":9,"50596":7,"50597":7,"50598":9,"50599":3,"50600":5,"50601":8,"50602":8,"50603":8,"50604":8,"50605":8,"50606":7,"50607":8,"50608":8,"50609":7,"50610":6,"50611":2,"50612":7,"50613":2,"50614":7,"50615":2,"50616":10,"50617":5,"50618":7,"50619":2,"50620":7,"50621":2,"50622":7,"50623":3,"50624":8,"50625":6,"50626":8,"50627":8,"50628":2,"50629":1,"50630":8,"50631":8,"50632":7,"50633":8,"50634":2,"50635":2,"50636":9,"50637":7,"50638":8,"50639":9,"50640":9,"50641":5,"50642":7,"50643":8,"50644":9,"50645":7,"50646":9,"50647":2,"50648":8,"50649":6,"50650":7,"50651":6,"50652":9,"50653":8,"50654":6,"50655":7,"50656":5,"50657":4,"50658":7,"50659":7,"50660":9,"50661":8,"50662":9,"50663":8,"50664":2,"50665":10,"50666":8,"50667":7,"50668":3,"50669":2,"50670":6,"50671":10,"50672":3,"50673":8,"50674":2,"50675":6,"50676":10,"50677":9,"50678":7,"50679":8,"50680":9,"50681":5,"50682":7,"50683":5,"50684":7,"50685":2,"50686":8,"50687":9,"50688":9,"50689":1,"50690":5,"50691":7,"50692":6,"50693":7,"50694":5,"50695":8,"50696":8,"50697":6,"50698":8,"50699":4,"50700":7,"50701":8,"50702":2,"50703":3,"50704":8,"50705":7,"50706":1,"50707":9,"50708":7,"50709":7,"50710":8,"50711":1,"50712":5,"50713":8,"50714":8,"50715":4,"50716":7,"50717":3,"50718":1,"50719":6,"50720":7,"50721":8,"50722":7,"50723":5,"50724":1,"50725":8,"50726":2,"50727":6,"50728":9,"50729":2,"50730":8,"50731":5,"50732":9,"50733":3,"50734":3,"50735":8,"50736":8,"50737":8,"50738":3,"50739":9,"50740":9,"50741":3,"50742":2,"50743":8,"50744":3,"50745":5,"50746":9,"50747":2,"50748":5,"50749":5,"50750":4,"50751":8,"50752":10,"50753":5,"50754":2,"50755":3,"50756":5,"50757":7,"50758":9,"50759":8,"50760":8,"50761":7,"50762":6,"50763":8,"50764":9,"50765":8,"50766":7,"50767":9,"50768":6,"50769":7,"50770":7,"50771":3,"50772":2,"50773":2,"50774":9,"50775":1,"50776":5,"50777":5,"50778":2,"50779":7,"50780":4,"50781":2,"50782":6,"50783":2,"50784":7,"50785":5,"50786":8,"50787":7,"50788":10,"50789":8,"50790":8,"50791":7,"50792":1,"50793":9,"50794":9,"50795":1,"50796":7,"50797":7,"50798":7,"50799":5,"50800":2,"50801":8,"50802":8,"50803":5,"50804":5,"50805":10,"50806":7,"50807":10,"50808":8,"50809":8,"50810":5,"50811":2,"50812":9,"50813":1,"50814":8,"50815":9,"50816":9,"50817":7,"50818":8,"50819":7,"50820":5,"50821":7,"50822":6,"50823":8,"50824":8,"50825":1,"50826":10,"50827":8,"50828":8,"50829":8,"50830":4,"50831":9,"50832":2,"50833":8,"50834":7,"50835":10,"50836":10,"50837":5,"50838":8,"50839":9,"50840":8,"50841":7,"50842":5,"50843":5,"50844":7,"50845":8,"50846":5,"50847":7,"50848":2,"50849":1,"50850":6,"50851":2,"50852":5,"50853":7,"50854":8,"50855":7,"50856":9,"50857":1,"50858":8,"50859":9,"50860":5,"50861":7,"50862":7,"50863":5,"50864":4,"50865":5,"50866":7,"50867":5,"50868":5,"50869":8,"50870":2,"50871":6,"50872":3,"50873":10,"50874":9,"50875":6,"50876":5,"50877":7,"50878":9,"50879":8,"50880":6,"50881":10,"50882":10,"50883":8,"50884":2,"50885":8,"50886":8,"50887":5,"50888":9,"50889":9,"50890":9,"50891":6,"50892":2,"50893":7,"50894":7,"50895":7,"50896":3,"50897":1,"50898":7,"50899":7,"50900":5,"50901":9,"50902":2,"50903":10,"50904":9,"50905":8,"50906":5,"50907":9,"50908":9,"50909":8,"50910":4,"50911":8,"50912":9,"50913":9,"50914":2,"50915":4,"50916":1,"50917":8,"50918":8,"50919":9,"50920":7,"50921":6,"50922":2,"50923":1,"50924":5,"50925":4,"50926":4,"50927":5,"50928":4,"50929":1,"50930":9,"50931":5,"50932":9,"50933":10,"50934":4,"50935":6,"50936":4,"50937":7,"50938":9,"50939":3,"50940":9,"50941":7,"50942":6,"50943":7,"50944":9,"50945":2,"50946":9,"50947":8,"50948":9,"50949":2,"50950":8,"50951":9,"50952":9,"50953":7,"50954":6,"50955":3,"50956":5,"50957":2,"50958":3,"50959":7,"50960":9,"50961":8,"50962":7,"50963":8,"50964":2,"50965":2,"50966":5,"50967":7,"50968":9,"50969":9,"50970":8,"50971":7,"50972":8,"50973":8,"50974":7,"50975":6,"50976":7,"50977":7,"50978":6,"50979":8,"50980":8,"50981":8,"50982":8,"50983":8,"50984":1,"50985":4,"50986":8,"50987":9,"50988":7,"50989":5,"50990":7,"50991":7,"50992":1,"50993":4,"50994":9,"50995":5,"50996":2,"50997":7,"50998":5,"50999":3,"51000":10,"51001":8,"51002":8,"51003":5,"51004":7,"51005":3,"51006":9,"51007":7,"51008":8,"51009":8,"51010":5,"51011":9,"51012":3,"51013":8,"51014":8,"51015":7,"51016":8,"51017":2,"51018":9,"51019":7,"51020":7,"51021":7,"51022":2,"51023":5,"51024":10,"51025":8,"51026":7,"51027":9,"51028":9,"51029":2,"51030":6,"51031":5,"51032":7,"51033":8,"51034":5,"51035":8,"51036":2,"51037":8,"51038":7,"51039":1,"51040":10,"51041":8,"51042":10,"51043":7,"51044":7,"51045":5,"51046":9,"51047":5,"51048":10,"51049":10,"51050":2,"51051":8,"51052":2,"51053":5,"51054":7,"51055":8,"51056":9,"51057":9,"51058":8,"51059":7,"51060":7,"51061":4,"51062":8,"51063":7,"51064":6,"51065":10,"51066":10,"51067":2,"51068":8,"51069":2,"51070":10,"51071":5,"51072":8,"51073":8,"51074":3,"51075":8,"51076":5,"51077":8,"51078":9,"51079":7,"51080":7,"51081":2,"51082":3,"51083":10,"51084":5,"51085":2,"51086":7,"51087":8,"51088":8,"51089":5,"51090":7,"51091":9,"51092":8,"51093":3,"51094":9,"51095":1,"51096":3,"51097":3,"51098":8,"51099":9,"51100":7,"51101":5,"51102":9,"51103":4,"51104":8,"51105":9,"51106":7,"51107":4,"51108":8,"51109":8,"51110":8,"51111":10,"51112":7,"51113":7,"51114":8,"51115":5,"51116":6,"51117":8,"51118":8,"51119":6,"51120":1,"51121":9,"51122":7,"51123":3,"51124":10,"51125":5,"51126":3,"51127":1,"51128":2,"51129":6,"51130":10,"51131":3,"51132":4,"51133":9,"51134":9,"51135":7,"51136":4,"51137":5,"51138":9,"51139":10,"51140":8,"51141":2,"51142":8,"51143":7,"51144":7,"51145":9,"51146":8,"51147":8,"51148":5,"51149":8,"51150":5,"51151":9,"51152":9,"51153":8,"51154":8,"51155":7,"51156":8,"51157":5,"51158":2,"51159":7,"51160":7,"51161":8,"51162":9,"51163":10,"51164":5,"51165":8,"51166":9,"51167":8,"51168":8,"51169":3,"51170":9,"51171":5,"51172":8,"51173":9,"51174":4,"51175":7,"51176":7,"51177":8,"51178":8,"51179":7,"51180":2,"51181":2,"51182":3,"51183":3,"51184":7,"51185":7,"51186":8,"51187":7,"51188":8,"51189":7,"51190":7,"51191":7,"51192":3,"51193":2,"51194":5,"51195":8,"51196":7,"51197":9,"51198":8,"51199":7,"51200":5,"51201":8,"51202":7,"51203":5,"51204":8,"51205":6,"51206":7,"51207":7,"51208":9,"51209":5,"51210":9,"51211":10,"51212":8,"51213":3,"51214":5,"51215":7,"51216":9,"51217":8,"51218":6,"51219":6,"51220":8,"51221":9,"51222":8,"51223":5,"51224":2,"51225":4,"51226":4,"51227":8,"51228":5,"51229":9,"51230":9,"51231":7,"51232":5,"51233":8,"51234":9,"51235":8,"51236":8,"51237":7,"51238":2,"51239":2,"51240":8,"51241":6,"51242":9,"51243":8,"51244":7,"51245":7,"51246":1,"51247":7,"51248":2,"51249":1,"51250":4,"51251":5,"51252":8,"51253":1,"51254":2,"51255":4,"51256":8,"51257":5,"51258":7,"51259":10,"51260":8,"51261":9,"51262":2,"51263":10,"51264":7,"51265":9,"51266":8,"51267":8,"51268":7,"51269":7,"51270":3,"51271":2,"51272":9,"51273":10,"51274":8,"51275":7,"51276":6,"51277":3,"51278":5,"51279":2,"51280":5,"51281":2,"51282":2,"51283":5,"51284":5,"51285":6,"51286":5,"51287":8,"51288":9,"51289":6,"51290":9,"51291":2,"51292":8,"51293":7,"51294":7,"51295":2,"51296":8,"51297":7,"51298":9,"51299":1,"51300":7,"51301":2,"51302":8,"51303":9,"51304":8,"51305":9,"51306":9,"51307":6,"51308":2,"51309":2,"51310":7,"51311":6,"51312":1,"51313":7,"51314":9,"51315":10,"51316":6,"51317":8,"51318":5,"51319":4,"51320":8,"51321":2,"51322":8,"51323":7,"51324":9,"51325":8,"51326":7,"51327":7,"51328":7,"51329":9,"51330":8,"51331":9,"51332":4,"51333":9,"51334":8,"51335":3,"51336":8,"51337":1,"51338":6,"51339":5,"51340":3,"51341":8,"51342":9,"51343":7,"51344":9,"51345":7,"51346":2,"51347":7,"51348":7,"51349":7,"51350":8,"51351":2,"51352":4,"51353":7,"51354":2,"51355":6,"51356":8,"51357":8,"51358":6,"51359":1,"51360":3,"51361":9,"51362":5,"51363":7,"51364":8,"51365":5,"51366":8,"51367":5,"51368":10,"51369":5,"51370":7,"51371":8,"51372":5,"51373":5,"51374":5,"51375":7,"51376":2,"51377":10,"51378":10,"51379":3,"51380":10,"51381":8,"51382":3,"51383":6,"51384":7,"51385":4,"51386":7,"51387":7,"51388":8,"51389":3,"51390":3,"51391":6,"51392":7,"51393":3,"51394":7,"51395":6,"51396":7,"51397":1,"51398":8,"51399":9,"51400":7,"51401":8,"51402":1,"51403":7,"51404":5,"51405":5,"51406":6,"51407":3,"51408":10,"51409":9,"51410":10,"51411":10,"51412":3,"51413":9,"51414":4,"51415":4,"51416":7,"51417":9,"51418":7,"51419":8,"51420":9,"51421":10,"51422":8,"51423":9,"51424":10,"51425":3,"51426":7,"51427":8,"51428":7,"51429":9,"51430":5,"51431":5,"51432":2,"51433":1,"51434":7,"51435":8,"51436":7,"51437":4,"51438":8,"51439":4,"51440":9,"51441":2,"51442":9,"51443":6,"51444":7,"51445":10,"51446":5,"51447":8,"51448":9,"51449":7,"51450":1,"51451":6,"51452":8,"51453":2,"51454":7,"51455":9,"51456":7,"51457":8,"51458":1,"51459":6,"51460":5,"51461":8,"51462":2,"51463":8,"51464":7,"51465":7,"51466":10,"51467":9,"51468":4,"51469":9,"51470":5,"51471":2,"51472":8,"51473":7,"51474":8,"51475":8,"51476":9,"51477":5,"51478":2,"51479":5,"51480":8,"51481":7,"51482":5,"51483":2,"51484":5,"51485":10,"51486":7,"51487":8,"51488":5,"51489":9,"51490":2,"51491":9,"51492":2,"51493":4,"51494":4,"51495":8,"51496":7,"51497":4,"51498":2,"51499":8,"51500":2,"51501":9,"51502":7,"51503":7,"51504":8,"51505":8,"51506":5,"51507":9,"51508":7,"51509":10,"51510":8,"51511":6,"51512":8,"51513":8,"51514":7,"51515":4,"51516":3,"51517":4,"51518":7,"51519":8,"51520":7,"51521":4,"51522":5,"51523":1,"51524":7,"51525":7,"51526":7,"51527":6,"51528":4,"51529":7,"51530":2,"51531":6,"51532":8,"51533":9,"51534":2,"51535":9,"51536":9,"51537":8,"51538":3,"51539":6,"51540":1,"51541":2,"51542":10,"51543":7,"51544":8,"51545":8,"51546":5,"51547":2,"51548":2,"51549":8,"51550":5,"51551":10,"51552":7,"51553":7,"51554":8,"51555":2,"51556":3,"51557":10,"51558":5,"51559":2,"51560":10,"51561":2,"51562":10,"51563":8,"51564":8,"51565":7,"51566":9,"51567":7,"51568":2,"51569":1,"51570":9,"51571":2,"51572":10,"51573":1,"51574":7,"51575":7,"51576":8,"51577":8,"51578":7,"51579":1,"51580":9,"51581":9,"51582":5,"51583":10,"51584":7,"51585":7,"51586":7,"51587":8,"51588":3,"51589":8,"51590":1,"51591":5,"51592":4,"51593":7,"51594":9,"51595":8,"51596":8,"51597":7,"51598":6,"51599":7,"51600":9,"51601":5,"51602":7,"51603":8,"51604":8,"51605":5,"51606":7,"51607":7,"51608":5,"51609":2,"51610":9,"51611":5,"51612":7,"51613":6,"51614":6,"51615":2,"51616":7,"51617":1,"51618":6,"51619":7,"51620":1,"51621":1,"51622":10,"51623":9,"51624":8,"51625":5,"51626":7,"51627":4,"51628":9,"51629":7,"51630":2,"51631":5,"51632":9,"51633":8,"51634":2,"51635":7,"51636":10,"51637":6,"51638":9,"51639":5,"51640":8,"51641":1,"51642":7,"51643":1,"51644":9,"51645":9,"51646":9,"51647":7,"51648":9,"51649":8,"51650":8,"51651":9,"51652":10,"51653":7,"51654":7,"51655":9,"51656":9,"51657":10,"51658":7,"51659":5,"51660":7,"51661":9,"51662":2,"51663":7,"51664":2,"51665":3,"51666":8,"51667":8,"51668":4,"51669":9,"51670":1,"51671":5,"51672":9,"51673":8,"51674":9,"51675":1,"51676":4,"51677":5,"51678":5,"51679":2,"51680":8,"51681":1,"51682":8,"51683":6,"51684":5,"51685":8,"51686":7,"51687":5,"51688":6,"51689":8,"51690":8,"51691":2,"51692":5,"51693":2,"51694":7,"51695":9,"51696":2,"51697":10,"51698":5,"51699":6,"51700":7,"51701":10,"51702":7,"51703":7,"51704":7,"51705":7,"51706":9,"51707":7,"51708":9,"51709":9,"51710":9,"51711":8,"51712":10,"51713":2,"51714":7,"51715":5,"51716":5,"51717":8,"51718":7,"51719":4,"51720":7,"51721":7,"51722":3,"51723":6,"51724":5,"51725":8,"51726":9,"51727":9,"51728":7,"51729":9,"51730":10,"51731":8,"51732":2,"51733":7,"51734":5,"51735":2,"51736":10,"51737":7,"51738":9,"51739":9,"51740":8,"51741":7,"51742":7,"51743":3,"51744":2,"51745":7,"51746":2,"51747":8,"51748":5,"51749":5,"51750":9,"51751":3,"51752":2,"51753":9,"51754":5,"51755":9,"51756":2,"51757":5,"51758":7,"51759":8,"51760":2,"51761":8,"51762":7,"51763":7,"51764":10,"51765":8,"51766":7,"51767":3,"51768":2,"51769":5,"51770":1,"51771":6,"51772":5,"51773":9,"51774":7,"51775":3,"51776":4,"51777":10,"51778":9,"51779":8,"51780":2,"51781":1,"51782":9,"51783":2,"51784":5,"51785":6,"51786":2,"51787":8,"51788":10,"51789":9,"51790":7,"51791":8,"51792":5,"51793":7,"51794":5,"51795":1,"51796":9,"51797":9,"51798":8,"51799":3,"51800":2,"51801":7,"51802":5,"51803":2,"51804":4,"51805":9,"51806":8,"51807":7,"51808":3,"51809":7,"51810":9,"51811":7,"51812":9,"51813":8,"51814":7,"51815":9,"51816":9,"51817":6,"51818":3,"51819":3,"51820":5,"51821":9,"51822":7,"51823":2,"51824":2,"51825":7,"51826":9,"51827":9,"51828":8,"51829":2,"51830":7,"51831":8,"51832":10,"51833":9,"51834":2,"51835":9,"51836":7,"51837":5,"51838":9,"51839":7,"51840":9,"51841":8,"51842":1,"51843":3,"51844":7,"51845":9,"51846":8,"51847":9,"51848":10,"51849":7,"51850":8,"51851":7,"51852":7,"51853":8,"51854":10,"51855":1,"51856":1,"51857":7,"51858":2,"51859":7,"51860":9,"51861":7,"51862":10,"51863":8,"51864":9,"51865":5,"51866":8,"51867":7,"51868":4,"51869":9,"51870":9,"51871":8,"51872":3,"51873":9,"51874":5,"51875":10,"51876":7,"51877":8,"51878":8,"51879":8,"51880":6,"51881":8,"51882":6,"51883":7,"51884":7,"51885":7,"51886":8,"51887":9,"51888":5,"51889":7,"51890":7,"51891":8,"51892":8,"51893":3,"51894":8,"51895":9,"51896":4,"51897":1,"51898":8,"51899":7,"51900":9,"51901":4,"51902":4,"51903":5,"51904":9,"51905":2,"51906":7,"51907":8,"51908":3,"51909":10,"51910":10,"51911":9,"51912":4,"51913":2,"51914":7,"51915":9,"51916":9,"51917":2,"51918":2,"51919":8,"51920":8,"51921":7,"51922":8,"51923":9,"51924":7,"51925":2,"51926":3,"51927":8,"51928":7,"51929":9,"51930":4,"51931":9,"51932":8,"51933":5,"51934":7,"51935":8,"51936":3,"51937":3,"51938":3,"51939":7,"51940":9,"51941":9,"51942":10,"51943":10,"51944":10,"51945":9,"51946":9,"51947":7,"51948":9,"51949":8,"51950":7,"51951":9,"51952":1,"51953":3,"51954":9,"51955":8,"51956":8,"51957":3,"51958":10,"51959":7,"51960":9,"51961":1,"51962":3,"51963":7,"51964":8,"51965":5,"51966":4,"51967":1,"51968":3,"51969":4,"51970":10,"51971":5,"51972":3,"51973":9,"51974":10,"51975":7,"51976":5,"51977":1,"51978":8,"51979":7,"51980":7,"51981":2,"51982":10,"51983":3,"51984":8,"51985":9,"51986":10,"51987":8,"51988":9,"51989":1,"51990":7,"51991":2,"51992":9,"51993":8,"51994":2,"51995":8,"51996":9,"51997":7,"51998":4,"51999":8,"52000":6,"52001":10,"52002":4,"52003":3,"52004":9,"52005":3,"52006":5,"52007":2,"52008":8,"52009":8,"52010":9,"52011":8,"52012":9,"52013":7,"52014":8,"52015":9,"52016":8,"52017":8,"52018":2,"52019":5,"52020":8,"52021":9,"52022":9,"52023":7,"52024":7,"52025":7,"52026":3,"52027":6,"52028":9,"52029":8,"52030":9,"52031":6,"52032":9,"52033":8,"52034":7,"52035":8,"52036":2,"52037":5,"52038":2,"52039":6,"52040":2,"52041":1,"52042":3,"52043":7,"52044":8,"52045":2,"52046":7,"52047":9,"52048":3,"52049":8,"52050":8,"52051":7,"52052":7,"52053":7,"52054":9,"52055":8,"52056":9,"52057":9,"52058":5,"52059":8,"52060":2,"52061":3,"52062":9,"52063":9,"52064":2,"52065":7,"52066":7,"52067":7,"52068":7,"52069":7,"52070":4,"52071":1,"52072":9,"52073":10,"52074":4,"52075":8,"52076":9,"52077":7,"52078":8,"52079":8,"52080":8,"52081":10,"52082":9,"52083":7,"52084":1,"52085":8,"52086":4,"52087":6,"52088":2,"52089":2,"52090":4,"52091":1,"52092":8,"52093":1,"52094":8,"52095":10,"52096":5,"52097":5,"52098":5,"52099":7,"52100":9,"52101":7,"52102":2,"52103":8,"52104":3,"52105":2,"52106":1,"52107":8,"52108":7,"52109":9,"52110":3,"52111":7,"52112":7,"52113":7,"52114":8,"52115":8,"52116":8,"52117":7,"52118":8,"52119":8,"52120":8,"52121":8,"52122":6,"52123":7,"52124":5,"52125":7,"52126":5,"52127":9,"52128":1,"52129":5,"52130":7,"52131":7,"52132":4,"52133":9,"52134":7,"52135":8,"52136":6,"52137":7,"52138":1,"52139":2,"52140":7,"52141":9,"52142":8,"52143":9,"52144":4,"52145":7,"52146":6,"52147":8,"52148":5,"52149":9,"52150":2,"52151":4,"52152":9,"52153":8,"52154":8,"52155":2,"52156":9,"52157":8,"52158":8,"52159":9,"52160":9,"52161":10,"52162":8,"52163":10,"52164":5,"52165":7,"52166":8,"52167":8,"52168":3,"52169":8,"52170":9,"52171":2,"52172":1,"52173":6,"52174":5,"52175":7,"52176":4,"52177":2,"52178":7,"52179":8,"52180":8,"52181":9,"52182":9,"52183":7,"52184":4,"52185":9,"52186":7,"52187":9,"52188":8,"52189":4,"52190":8,"52191":5,"52192":7,"52193":4,"52194":7,"52195":10,"52196":2,"52197":8,"52198":6,"52199":7,"52200":1,"52201":9,"52202":7,"52203":2,"52204":7,"52205":10,"52206":2,"52207":7,"52208":3,"52209":8,"52210":9,"52211":10,"52212":8,"52213":5,"52214":7,"52215":7,"52216":8,"52217":7,"52218":7,"52219":7,"52220":7,"52221":2,"52222":8,"52223":8,"52224":2,"52225":7,"52226":1,"52227":1,"52228":3,"52229":2,"52230":7,"52231":8,"52232":6,"52233":1,"52234":2,"52235":7,"52236":8,"52237":7,"52238":8,"52239":8,"52240":9,"52241":7,"52242":3,"52243":1,"52244":2,"52245":5,"52246":7,"52247":2,"52248":4,"52249":5,"52250":6,"52251":7,"52252":9,"52253":5,"52254":2,"52255":5,"52256":2,"52257":9,"52258":9,"52259":9,"52260":7,"52261":2,"52262":6,"52263":3,"52264":9,"52265":5,"52266":9,"52267":3,"52268":9,"52269":9,"52270":8,"52271":2,"52272":7,"52273":6,"52274":9,"52275":1,"52276":4,"52277":7,"52278":7,"52279":1,"52280":2,"52281":2,"52282":8,"52283":7,"52284":2,"52285":2,"52286":5,"52287":9,"52288":9,"52289":6,"52290":8,"52291":6,"52292":8,"52293":8,"52294":4,"52295":2,"52296":2,"52297":9,"52298":9,"52299":8,"52300":7,"52301":7,"52302":2,"52303":7,"52304":8,"52305":8,"52306":8,"52307":9,"52308":8,"52309":8,"52310":2,"52311":1,"52312":9,"52313":7,"52314":10,"52315":6,"52316":8,"52317":8,"52318":7,"52319":7,"52320":8,"52321":8,"52322":9,"52323":7,"52324":5,"52325":2,"52326":8,"52327":2,"52328":7,"52329":4,"52330":2,"52331":8,"52332":8,"52333":2,"52334":2,"52335":9,"52336":10,"52337":3,"52338":9,"52339":9,"52340":7,"52341":9,"52342":9,"52343":2,"52344":2,"52345":8,"52346":7,"52347":7,"52348":6,"52349":6,"52350":7,"52351":7,"52352":5,"52353":5,"52354":2,"52355":8,"52356":7,"52357":4,"52358":8,"52359":7,"52360":8,"52361":7,"52362":10,"52363":7,"52364":8,"52365":9,"52366":8,"52367":1,"52368":1,"52369":6,"52370":9,"52371":8,"52372":2,"52373":3,"52374":7,"52375":2,"52376":2,"52377":7,"52378":9,"52379":7,"52380":9,"52381":8,"52382":7,"52383":2,"52384":7,"52385":5,"52386":9,"52387":1,"52388":8,"52389":9,"52390":3,"52391":7,"52392":9,"52393":6,"52394":7,"52395":6,"52396":7,"52397":1,"52398":3,"52399":7,"52400":7,"52401":9,"52402":10,"52403":10,"52404":5,"52405":8,"52406":7,"52407":2,"52408":2,"52409":5,"52410":8,"52411":8,"52412":6,"52413":7,"52414":8,"52415":2,"52416":8,"52417":2,"52418":3,"52419":4,"52420":7,"52421":2,"52422":2,"52423":8,"52424":9,"52425":2,"52426":7,"52427":2,"52428":4,"52429":7,"52430":3,"52431":7,"52432":5,"52433":7,"52434":7,"52435":2,"52436":8,"52437":7,"52438":5,"52439":9,"52440":2,"52441":3,"52442":9,"52443":10,"52444":3,"52445":8,"52446":7,"52447":2,"52448":1,"52449":6,"52450":8,"52451":2,"52452":6,"52453":10,"52454":5,"52455":5,"52456":7,"52457":8,"52458":7,"52459":10,"52460":8,"52461":10,"52462":9,"52463":8,"52464":7,"52465":8,"52466":3,"52467":9,"52468":2,"52469":8,"52470":7,"52471":8,"52472":4,"52473":9,"52474":1,"52475":9,"52476":8,"52477":8,"52478":7,"52479":8,"52480":7,"52481":8,"52482":9,"52483":8,"52484":5,"52485":7,"52486":4,"52487":9,"52488":4,"52489":2,"52490":1,"52491":7,"52492":9,"52493":5,"52494":7,"52495":3,"52496":5,"52497":2,"52498":7,"52499":5,"52500":7,"52501":9,"52502":7,"52503":9,"52504":4,"52505":8,"52506":7,"52507":9,"52508":5,"52509":7,"52510":7,"52511":9,"52512":7,"52513":4,"52514":5,"52515":8,"52516":4,"52517":4,"52518":5,"52519":9,"52520":7,"52521":4,"52522":9,"52523":7,"52524":8,"52525":3,"52526":2,"52527":10,"52528":1,"52529":8,"52530":8,"52531":6,"52532":5,"52533":9,"52534":9,"52535":4,"52536":5,"52537":2,"52538":7,"52539":5,"52540":7,"52541":8,"52542":5,"52543":8,"52544":9,"52545":2,"52546":4,"52547":5,"52548":5,"52549":3,"52550":9,"52551":7,"52552":9,"52553":5,"52554":6,"52555":7,"52556":7,"52557":2,"52558":3,"52559":7,"52560":8,"52561":9,"52562":6,"52563":7,"52564":5,"52565":9,"52566":2,"52567":2,"52568":7,"52569":2,"52570":6,"52571":8,"52572":8,"52573":2,"52574":9,"52575":7,"52576":4,"52577":1,"52578":8,"52579":8,"52580":10,"52581":7,"52582":8,"52583":8,"52584":7,"52585":8,"52586":5,"52587":9,"52588":8,"52589":7,"52590":9,"52591":7,"52592":7,"52593":2,"52594":7,"52595":6,"52596":3,"52597":8,"52598":8,"52599":7,"52600":3,"52601":7,"52602":7,"52603":3,"52604":3,"52605":9,"52606":8,"52607":5,"52608":9,"52609":1,"52610":5,"52611":3,"52612":9,"52613":2,"52614":7,"52615":2,"52616":4,"52617":7,"52618":3,"52619":5,"52620":8,"52621":5,"52622":8,"52623":5,"52624":8,"52625":2,"52626":8,"52627":9,"52628":9,"52629":6,"52630":9,"52631":9,"52632":8,"52633":6,"52634":7,"52635":7,"52636":8,"52637":9,"52638":8,"52639":10,"52640":7,"52641":9,"52642":9,"52643":3,"52644":5,"52645":7,"52646":9,"52647":8,"52648":5,"52649":9,"52650":8,"52651":5,"52652":2,"52653":4,"52654":8,"52655":7,"52656":8,"52657":8,"52658":9,"52659":2,"52660":9,"52661":7,"52662":7,"52663":2,"52664":7,"52665":9,"52666":8,"52667":4,"52668":10,"52669":8,"52670":10,"52671":3,"52672":2,"52673":5,"52674":9,"52675":7,"52676":8,"52677":8,"52678":7,"52679":7,"52680":4,"52681":6,"52682":6,"52683":10,"52684":2,"52685":7,"52686":8,"52687":5,"52688":7,"52689":8,"52690":5,"52691":9,"52692":2,"52693":5,"52694":8,"52695":8,"52696":8,"52697":7,"52698":5,"52699":9,"52700":1,"52701":8,"52702":6,"52703":2,"52704":7,"52705":4,"52706":8,"52707":7,"52708":1,"52709":8,"52710":8,"52711":7,"52712":8,"52713":7,"52714":5,"52715":2,"52716":7,"52717":6,"52718":2,"52719":7,"52720":8,"52721":7,"52722":2,"52723":2,"52724":1,"52725":9,"52726":7,"52727":7,"52728":9,"52729":10,"52730":8,"52731":2,"52732":7,"52733":10,"52734":5,"52735":8,"52736":8,"52737":9,"52738":9,"52739":10,"52740":7,"52741":3,"52742":8,"52743":8,"52744":7,"52745":10,"52746":5,"52747":7,"52748":1,"52749":8,"52750":1,"52751":7,"52752":9,"52753":9,"52754":7,"52755":8,"52756":7,"52757":7,"52758":9,"52759":4,"52760":2,"52761":1,"52762":3,"52763":1,"52764":6,"52765":6,"52766":10,"52767":8,"52768":9,"52769":2,"52770":5,"52771":1,"52772":1,"52773":7,"52774":7,"52775":2,"52776":2,"52777":2,"52778":3,"52779":9,"52780":7,"52781":8,"52782":6,"52783":2,"52784":9,"52785":8,"52786":8,"52787":6,"52788":4,"52789":5,"52790":9,"52791":8,"52792":5,"52793":2,"52794":8,"52795":9,"52796":2,"52797":9,"52798":8,"52799":2,"52800":2,"52801":7,"52802":6,"52803":2,"52804":8,"52805":2,"52806":1,"52807":5,"52808":5,"52809":8,"52810":9,"52811":2,"52812":4,"52813":8,"52814":5,"52815":3,"52816":9,"52817":2,"52818":9,"52819":4,"52820":5,"52821":7,"52822":9,"52823":7,"52824":9,"52825":3,"52826":2,"52827":7,"52828":2,"52829":9,"52830":7,"52831":5,"52832":10,"52833":5,"52834":8,"52835":5,"52836":5,"52837":8,"52838":9,"52839":5,"52840":8,"52841":8,"52842":7,"52843":7,"52844":7,"52845":7,"52846":7,"52847":5,"52848":8,"52849":7,"52850":10,"52851":8,"52852":8,"52853":7,"52854":4,"52855":9,"52856":7,"52857":7,"52858":8,"52859":2,"52860":1,"52861":3,"52862":9,"52863":7,"52864":8,"52865":8,"52866":5,"52867":9,"52868":7,"52869":9,"52870":8,"52871":9,"52872":10,"52873":8,"52874":5,"52875":7,"52876":8,"52877":8,"52878":9,"52879":4,"52880":5,"52881":9,"52882":9,"52883":9,"52884":1,"52885":8,"52886":9,"52887":10,"52888":7,"52889":8,"52890":9,"52891":5,"52892":2,"52893":7,"52894":9,"52895":8,"52896":7,"52897":7,"52898":8,"52899":7,"52900":9,"52901":6,"52902":7,"52903":9,"52904":9,"52905":9,"52906":7,"52907":8,"52908":10,"52909":2,"52910":8,"52911":6,"52912":10,"52913":7,"52914":1,"52915":1,"52916":10,"52917":1,"52918":7,"52919":9,"52920":7,"52921":7,"52922":1,"52923":1,"52924":9,"52925":8,"52926":8,"52927":10,"52928":5,"52929":8,"52930":5,"52931":7,"52932":3,"52933":7,"52934":5,"52935":8,"52936":3,"52937":7,"52938":7,"52939":8,"52940":7,"52941":9,"52942":7,"52943":6,"52944":8,"52945":3,"52946":3,"52947":5,"52948":6,"52949":8,"52950":5,"52951":8,"52952":8,"52953":5,"52954":10,"52955":7,"52956":1,"52957":7,"52958":2,"52959":4,"52960":7,"52961":9,"52962":7,"52963":8,"52964":9,"52965":3,"52966":5,"52967":8,"52968":8,"52969":9,"52970":2,"52971":4,"52972":9,"52973":4,"52974":8,"52975":7,"52976":8,"52977":2,"52978":5,"52979":8,"52980":5,"52981":7,"52982":6,"52983":9,"52984":7,"52985":1,"52986":9,"52987":3,"52988":1,"52989":8,"52990":7,"52991":2,"52992":7,"52993":9,"52994":4,"52995":8,"52996":9,"52997":5,"52998":9,"52999":5,"53000":2,"53001":6,"53002":4,"53003":3,"53004":8,"53005":2,"53006":8,"53007":6,"53008":7,"53009":1,"53010":4,"53011":7,"53012":4,"53013":9,"53014":7,"53015":4,"53016":2,"53017":3,"53018":5,"53019":9,"53020":2,"53021":8,"53022":4,"53023":3,"53024":7,"53025":6,"53026":2,"53027":6,"53028":7,"53029":7,"53030":10,"53031":1,"53032":7,"53033":8,"53034":7,"53035":3,"53036":5,"53037":7,"53038":2,"53039":7,"53040":2,"53041":3,"53042":4,"53043":7,"53044":8,"53045":7,"53046":7,"53047":5,"53048":8,"53049":8,"53050":9,"53051":9,"53052":8,"53053":8,"53054":7,"53055":4,"53056":8,"53057":10,"53058":7,"53059":8,"53060":7,"53061":8,"53062":6,"53063":2,"53064":8,"53065":5,"53066":8,"53067":3,"53068":9,"53069":9,"53070":7,"53071":9,"53072":8,"53073":8,"53074":7,"53075":8,"53076":2,"53077":9,"53078":9,"53079":7,"53080":4,"53081":7,"53082":3,"53083":7,"53084":6,"53085":8,"53086":8,"53087":8,"53088":5,"53089":8,"53090":7,"53091":1,"53092":8,"53093":7,"53094":9,"53095":4,"53096":2,"53097":2,"53098":6,"53099":8,"53100":8,"53101":7,"53102":3,"53103":7,"53104":5,"53105":5,"53106":7,"53107":7,"53108":8,"53109":7,"53110":7,"53111":6,"53112":9,"53113":5,"53114":7,"53115":4,"53116":5,"53117":3,"53118":2,"53119":1,"53120":2,"53121":7,"53122":10,"53123":8,"53124":8,"53125":9,"53126":7,"53127":7,"53128":2,"53129":2,"53130":5,"53131":8,"53132":6,"53133":7,"53134":3,"53135":4,"53136":2,"53137":9,"53138":7,"53139":1,"53140":7,"53141":8,"53142":10,"53143":7,"53144":8,"53145":1,"53146":8,"53147":7,"53148":7,"53149":7,"53150":9,"53151":7,"53152":7,"53153":10,"53154":9,"53155":3,"53156":7,"53157":7,"53158":8,"53159":4,"53160":8,"53161":5,"53162":7,"53163":8,"53164":7,"53165":9,"53166":2,"53167":9,"53168":8,"53169":1,"53170":8,"53171":5,"53172":7,"53173":2,"53174":9,"53175":9,"53176":1,"53177":5,"53178":8,"53179":9,"53180":2,"53181":8,"53182":7,"53183":2,"53184":8,"53185":7,"53186":7,"53187":8,"53188":9,"53189":8,"53190":6,"53191":6,"53192":6,"53193":2,"53194":6,"53195":8,"53196":7,"53197":2,"53198":7,"53199":2,"53200":3,"53201":9,"53202":7,"53203":2,"53204":8,"53205":8,"53206":6,"53207":5,"53208":1,"53209":7,"53210":9,"53211":2,"53212":8,"53213":7,"53214":8,"53215":7,"53216":5,"53217":1,"53218":8,"53219":6,"53220":8,"53221":3,"53222":8,"53223":2,"53224":7,"53225":7,"53226":1,"53227":8,"53228":8,"53229":2,"53230":2,"53231":5,"53232":8,"53233":2,"53234":8,"53235":4,"53236":5,"53237":6,"53238":8,"53239":8,"53240":5,"53241":7,"53242":9,"53243":4,"53244":6,"53245":10,"53246":9,"53247":8,"53248":6,"53249":8,"53250":6,"53251":8,"53252":8,"53253":1,"53254":7,"53255":9,"53256":10,"53257":8,"53258":3,"53259":7,"53260":7,"53261":2,"53262":9,"53263":7,"53264":8,"53265":5,"53266":6,"53267":2,"53268":4,"53269":7,"53270":7,"53271":7,"53272":4,"53273":5,"53274":8,"53275":7,"53276":3,"53277":10,"53278":9,"53279":4,"53280":8,"53281":8,"53282":6,"53283":9,"53284":8,"53285":5,"53286":1,"53287":7,"53288":5,"53289":2,"53290":2,"53291":7,"53292":2,"53293":5,"53294":9,"53295":2,"53296":8,"53297":9,"53298":8,"53299":7,"53300":3,"53301":9,"53302":7,"53303":2,"53304":7,"53305":5,"53306":5,"53307":8,"53308":7,"53309":7,"53310":7,"53311":7,"53312":8,"53313":7,"53314":7,"53315":8,"53316":3,"53317":6,"53318":7,"53319":5,"53320":10,"53321":1,"53322":1,"53323":7,"53324":5,"53325":2,"53326":2,"53327":7,"53328":5,"53329":8,"53330":2,"53331":7,"53332":2,"53333":7,"53334":7,"53335":5,"53336":10,"53337":9,"53338":2,"53339":7,"53340":6,"53341":8,"53342":8,"53343":4,"53344":7,"53345":10,"53346":5,"53347":2,"53348":8,"53349":9,"53350":4,"53351":7,"53352":7,"53353":2,"53354":7,"53355":7,"53356":4,"53357":8,"53358":9,"53359":7,"53360":5,"53361":9,"53362":2,"53363":9,"53364":3,"53365":2,"53366":6,"53367":5,"53368":9,"53369":2,"53370":7,"53371":8,"53372":4,"53373":5,"53374":3,"53375":3,"53376":7,"53377":9,"53378":7,"53379":9,"53380":2,"53381":7,"53382":7,"53383":1,"53384":1,"53385":7,"53386":5,"53387":9,"53388":8,"53389":8,"53390":4,"53391":8,"53392":8,"53393":5,"53394":4,"53395":2,"53396":3,"53397":9,"53398":9,"53399":5,"53400":5,"53401":10,"53402":5,"53403":7,"53404":10,"53405":2,"53406":5,"53407":8,"53408":1,"53409":7,"53410":7,"53411":8,"53412":8,"53413":7,"53414":8,"53415":8,"53416":5,"53417":7,"53418":8,"53419":7,"53420":4,"53421":6,"53422":2,"53423":5,"53424":2,"53425":4,"53426":7,"53427":8,"53428":8,"53429":3,"53430":7,"53431":6,"53432":2,"53433":7,"53434":1,"53435":7,"53436":2,"53437":4,"53438":7,"53439":8,"53440":8,"53441":6,"53442":8,"53443":7,"53444":5,"53445":9,"53446":7,"53447":9,"53448":3,"53449":6,"53450":5,"53451":2,"53452":7,"53453":7,"53454":8,"53455":3,"53456":2,"53457":5,"53458":3,"53459":5,"53460":9,"53461":7,"53462":1,"53463":8,"53464":9,"53465":7,"53466":7,"53467":3,"53468":10,"53469":9,"53470":6,"53471":2,"53472":8,"53473":1,"53474":8,"53475":9,"53476":7,"53477":10,"53478":10,"53479":8,"53480":6,"53481":6,"53482":7,"53483":8,"53484":5,"53485":5,"53486":6,"53487":1,"53488":7,"53489":8,"53490":1,"53491":9,"53492":8,"53493":3,"53494":5,"53495":9,"53496":2,"53497":8,"53498":7,"53499":5,"53500":3,"53501":3,"53502":5,"53503":9,"53504":8,"53505":8,"53506":7,"53507":8,"53508":9,"53509":7,"53510":1,"53511":7,"53512":9,"53513":7,"53514":5,"53515":1,"53516":8,"53517":8,"53518":8,"53519":9,"53520":8,"53521":9,"53522":4,"53523":9,"53524":8,"53525":7,"53526":8,"53527":3,"53528":7,"53529":8,"53530":9,"53531":8,"53532":5,"53533":2,"53534":7,"53535":7,"53536":10,"53537":9,"53538":7,"53539":6,"53540":10,"53541":7,"53542":8,"53543":8,"53544":8,"53545":10,"53546":3,"53547":7,"53548":8,"53549":8,"53550":6,"53551":7,"53552":7,"53553":8,"53554":6,"53555":8,"53556":7,"53557":8,"53558":9,"53559":8,"53560":7,"53561":9,"53562":8,"53563":9,"53564":8,"53565":8,"53566":1,"53567":7,"53568":9,"53569":9,"53570":8,"53571":2,"53572":5,"53573":8,"53574":8,"53575":7,"53576":9,"53577":9,"53578":5,"53579":7,"53580":8,"53581":10,"53582":9,"53583":7,"53584":7,"53585":2,"53586":7,"53587":4,"53588":8,"53589":9,"53590":5,"53591":5,"53592":3,"53593":7,"53594":7,"53595":7,"53596":5,"53597":3,"53598":7,"53599":10,"53600":8,"53601":8,"53602":8,"53603":5,"53604":8,"53605":10,"53606":8,"53607":7,"53608":3,"53609":9,"53610":7,"53611":8,"53612":8,"53613":2,"53614":8,"53615":4,"53616":10,"53617":3,"53618":8,"53619":7,"53620":8,"53621":1,"53622":7,"53623":9,"53624":1,"53625":3,"53626":8,"53627":7,"53628":8,"53629":9,"53630":5,"53631":8,"53632":9,"53633":7,"53634":9,"53635":8,"53636":5,"53637":7,"53638":5,"53639":2,"53640":1,"53641":6,"53642":6,"53643":7,"53644":7,"53645":6,"53646":2,"53647":8,"53648":7,"53649":10,"53650":4,"53651":2,"53652":10,"53653":5,"53654":6,"53655":4,"53656":7,"53657":1,"53658":7,"53659":7,"53660":8,"53661":7,"53662":10,"53663":7,"53664":2,"53665":2,"53666":5,"53667":3,"53668":7,"53669":5,"53670":9,"53671":1,"53672":6,"53673":1,"53674":8,"53675":7,"53676":7,"53677":7,"53678":8,"53679":3,"53680":8,"53681":6,"53682":9,"53683":7,"53684":7,"53685":2,"53686":8,"53687":7,"53688":2,"53689":5,"53690":7,"53691":2,"53692":1,"53693":5,"53694":8,"53695":8,"53696":2,"53697":10,"53698":1,"53699":3,"53700":5,"53701":5,"53702":8,"53703":9,"53704":9,"53705":7,"53706":2,"53707":10,"53708":7,"53709":7,"53710":7,"53711":2,"53712":7,"53713":10,"53714":2,"53715":9,"53716":9,"53717":7,"53718":8,"53719":5,"53720":3,"53721":7,"53722":7,"53723":7,"53724":10,"53725":8,"53726":2,"53727":5,"53728":5,"53729":9,"53730":8,"53731":6,"53732":2,"53733":2,"53734":9,"53735":9,"53736":8,"53737":10,"53738":7,"53739":3,"53740":9,"53741":9,"53742":7,"53743":5,"53744":8,"53745":6,"53746":4,"53747":10,"53748":6,"53749":9,"53750":9,"53751":9,"53752":9,"53753":7,"53754":9,"53755":9,"53756":4,"53757":4,"53758":10,"53759":8,"53760":5,"53761":7,"53762":8,"53763":9,"53764":7,"53765":1,"53766":2,"53767":7,"53768":2,"53769":2,"53770":7,"53771":7,"53772":8,"53773":8,"53774":7,"53775":7,"53776":1,"53777":1,"53778":9,"53779":8,"53780":5,"53781":6,"53782":9,"53783":5,"53784":7,"53785":2,"53786":8,"53787":2,"53788":6,"53789":7,"53790":9,"53791":8,"53792":9,"53793":1,"53794":9,"53795":8,"53796":9,"53797":3,"53798":8,"53799":3,"53800":9,"53801":9,"53802":2,"53803":7,"53804":1,"53805":9,"53806":7,"53807":9,"53808":3,"53809":9,"53810":9,"53811":7,"53812":9,"53813":9,"53814":2,"53815":8,"53816":5,"53817":2,"53818":1,"53819":8,"53820":7,"53821":8,"53822":6,"53823":3,"53824":5,"53825":9,"53826":9,"53827":7,"53828":9,"53829":4,"53830":2,"53831":3,"53832":5,"53833":7,"53834":5,"53835":7,"53836":8,"53837":9,"53838":8,"53839":2,"53840":7,"53841":5,"53842":5,"53843":6,"53844":1,"53845":6,"53846":7,"53847":7,"53848":9,"53849":5,"53850":7,"53851":5,"53852":2,"53853":7,"53854":5,"53855":7,"53856":6,"53857":4,"53858":8,"53859":1,"53860":9,"53861":2,"53862":9,"53863":8,"53864":1,"53865":2,"53866":8,"53867":1,"53868":9,"53869":9,"53870":5,"53871":1,"53872":8,"53873":10,"53874":8,"53875":3,"53876":8,"53877":10,"53878":8,"53879":6,"53880":4,"53881":3,"53882":10,"53883":9,"53884":6,"53885":8,"53886":7,"53887":2,"53888":7,"53889":2,"53890":8,"53891":7,"53892":7,"53893":8,"53894":7,"53895":6,"53896":6,"53897":3,"53898":7,"53899":5,"53900":5,"53901":9,"53902":9,"53903":9,"53904":2,"53905":9,"53906":3,"53907":9,"53908":7,"53909":7,"53910":7,"53911":9,"53912":8,"53913":8,"53914":7,"53915":7,"53916":9,"53917":8,"53918":4,"53919":5,"53920":7,"53921":10,"53922":8,"53923":8,"53924":5,"53925":5,"53926":4,"53927":2,"53928":8,"53929":10,"53930":9,"53931":8,"53932":9,"53933":9,"53934":7,"53935":8,"53936":9,"53937":9,"53938":6,"53939":7,"53940":4,"53941":5,"53942":10,"53943":10,"53944":8,"53945":9,"53946":6,"53947":9,"53948":9,"53949":1,"53950":2,"53951":7,"53952":2,"53953":8,"53954":7,"53955":8,"53956":1,"53957":8,"53958":7,"53959":5,"53960":7,"53961":5,"53962":7,"53963":9,"53964":7,"53965":10,"53966":3,"53967":9,"53968":9,"53969":10,"53970":10,"53971":9,"53972":6,"53973":10,"53974":3,"53975":10,"53976":7,"53977":7,"53978":7,"53979":8,"53980":7,"53981":6,"53982":5,"53983":5,"53984":2,"53985":7,"53986":8,"53987":7,"53988":6,"53989":2,"53990":1,"53991":7,"53992":7,"53993":8,"53994":7,"53995":8,"53996":5,"53997":4,"53998":8,"53999":2,"54000":8,"54001":7,"54002":2,"54003":4,"54004":9,"54005":10,"54006":7,"54007":2,"54008":10,"54009":6,"54010":7,"54011":4,"54012":7,"54013":7,"54014":9,"54015":9,"54016":7,"54017":8,"54018":5,"54019":7,"54020":2,"54021":5,"54022":4,"54023":7,"54024":6,"54025":5,"54026":5,"54027":2,"54028":9,"54029":8,"54030":9,"54031":8,"54032":9,"54033":7,"54034":4,"54035":10,"54036":7,"54037":4,"54038":8,"54039":9,"54040":9,"54041":6,"54042":5,"54043":5,"54044":4,"54045":10,"54046":9,"54047":7,"54048":9,"54049":4,"54050":5,"54051":10,"54052":7,"54053":9,"54054":6,"54055":7,"54056":9,"54057":1,"54058":8,"54059":9,"54060":9,"54061":8,"54062":5,"54063":8,"54064":5,"54065":8,"54066":7,"54067":9,"54068":8,"54069":8,"54070":9,"54071":6,"54072":2,"54073":7,"54074":3,"54075":9,"54076":8,"54077":2,"54078":8,"54079":7,"54080":7,"54081":9,"54082":8,"54083":5,"54084":2,"54085":10,"54086":7,"54087":6,"54088":9,"54089":7,"54090":2,"54091":7,"54092":7,"54093":4,"54094":9,"54095":7,"54096":7,"54097":8,"54098":7,"54099":2,"54100":5,"54101":5,"54102":1,"54103":8,"54104":7,"54105":5,"54106":5,"54107":6,"54108":9,"54109":7,"54110":8,"54111":5,"54112":9,"54113":3,"54114":7,"54115":9,"54116":7,"54117":2,"54118":2,"54119":9,"54120":7,"54121":9,"54122":2,"54123":1,"54124":8,"54125":8,"54126":4,"54127":8,"54128":9,"54129":9,"54130":9,"54131":2,"54132":10,"54133":7,"54134":9,"54135":8,"54136":7,"54137":3,"54138":6,"54139":8,"54140":5,"54141":4,"54142":5,"54143":1,"54144":8,"54145":9,"54146":9,"54147":10,"54148":8,"54149":4,"54150":8,"54151":5,"54152":8,"54153":7,"54154":7,"54155":9,"54156":9,"54157":5,"54158":3,"54159":6,"54160":9,"54161":7,"54162":6,"54163":8,"54164":9,"54165":9,"54166":4,"54167":1,"54168":2,"54169":9,"54170":7,"54171":1,"54172":5,"54173":8,"54174":8,"54175":7,"54176":2,"54177":3,"54178":8,"54179":8,"54180":8,"54181":8,"54182":8,"54183":7,"54184":9,"54185":2,"54186":9,"54187":2,"54188":5,"54189":2,"54190":8,"54191":4,"54192":5,"54193":7,"54194":7,"54195":3,"54196":3,"54197":8,"54198":7,"54199":6,"54200":7,"54201":9,"54202":7,"54203":8,"54204":1,"54205":7,"54206":8,"54207":7,"54208":9,"54209":7,"54210":5,"54211":5,"54212":9,"54213":7,"54214":2,"54215":7,"54216":8,"54217":8,"54218":7,"54219":9,"54220":8,"54221":7,"54222":1,"54223":9,"54224":7,"54225":8,"54226":4,"54227":9,"54228":7,"54229":6,"54230":8,"54231":9,"54232":5,"54233":5,"54234":10,"54235":10,"54236":7,"54237":10,"54238":9,"54239":6,"54240":7,"54241":7,"54242":8,"54243":2,"54244":2,"54245":6,"54246":4,"54247":2,"54248":2,"54249":7,"54250":5,"54251":6,"54252":9,"54253":9,"54254":1,"54255":7,"54256":1,"54257":8,"54258":3,"54259":8,"54260":8,"54261":3,"54262":8,"54263":8,"54264":10,"54265":9,"54266":5,"54267":10,"54268":2,"54269":7,"54270":7,"54271":7,"54272":5,"54273":7,"54274":1,"54275":2,"54276":5,"54277":7,"54278":5,"54279":8,"54280":1,"54281":5,"54282":5,"54283":2,"54284":10,"54285":8,"54286":7,"54287":1,"54288":2,"54289":4,"54290":7,"54291":7,"54292":9,"54293":7,"54294":9,"54295":10,"54296":6,"54297":5,"54298":5,"54299":9,"54300":4,"54301":7,"54302":2,"54303":6,"54304":9,"54305":9,"54306":5,"54307":7,"54308":8,"54309":8,"54310":8,"54311":8,"54312":2,"54313":2,"54314":7,"54315":8,"54316":3,"54317":7,"54318":7,"54319":4,"54320":8,"54321":9,"54322":3,"54323":9,"54324":2,"54325":9,"54326":8,"54327":3,"54328":7,"54329":5,"54330":1,"54331":2,"54332":8,"54333":2,"54334":4,"54335":7,"54336":8,"54337":7,"54338":8,"54339":7,"54340":8,"54341":5,"54342":8,"54343":2,"54344":9,"54345":6,"54346":6,"54347":7,"54348":10,"54349":3,"54350":7,"54351":5,"54352":3,"54353":1,"54354":9,"54355":4,"54356":5,"54357":6,"54358":9,"54359":2,"54360":7,"54361":8,"54362":4,"54363":2,"54364":7,"54365":2,"54366":8,"54367":8,"54368":6,"54369":2,"54370":9,"54371":7,"54372":4,"54373":1,"54374":5,"54375":4,"54376":9,"54377":5,"54378":2,"54379":7,"54380":8,"54381":10,"54382":9,"54383":5,"54384":5,"54385":7,"54386":7,"54387":7,"54388":8,"54389":10,"54390":10,"54391":9,"54392":7,"54393":3,"54394":5,"54395":1,"54396":5,"54397":5,"54398":5,"54399":3,"54400":1,"54401":7,"54402":10,"54403":4,"54404":8,"54405":4,"54406":2,"54407":2,"54408":8,"54409":5,"54410":8,"54411":7,"54412":8,"54413":10,"54414":7,"54415":6,"54416":2,"54417":8,"54418":8,"54419":8,"54420":7,"54421":8,"54422":8,"54423":5,"54424":9,"54425":9,"54426":7,"54427":8,"54428":7,"54429":5,"54430":5,"54431":8,"54432":6,"54433":10,"54434":9,"54435":9,"54436":4,"54437":8,"54438":9,"54439":6,"54440":7,"54441":9,"54442":7,"54443":9,"54444":5,"54445":9,"54446":9,"54447":7,"54448":4,"54449":9,"54450":9,"54451":8,"54452":6,"54453":8,"54454":10,"54455":9,"54456":8,"54457":5,"54458":7,"54459":4,"54460":8,"54461":2,"54462":4,"54463":6,"54464":8,"54465":7,"54466":7,"54467":5,"54468":9,"54469":9,"54470":7,"54471":8,"54472":5,"54473":8,"54474":8,"54475":8,"54476":1,"54477":7,"54478":2,"54479":9,"54480":2,"54481":2,"54482":6,"54483":2,"54484":5,"54485":5,"54486":9,"54487":4,"54488":8,"54489":7,"54490":1,"54491":7,"54492":7,"54493":10,"54494":8,"54495":7,"54496":4,"54497":9,"54498":7,"54499":7,"54500":7,"54501":5,"54502":10,"54503":9,"54504":6,"54505":8,"54506":1,"54507":7,"54508":8,"54509":8,"54510":9,"54511":5,"54512":1,"54513":8,"54514":7,"54515":9,"54516":9,"54517":8,"54518":7,"54519":2,"54520":7,"54521":9,"54522":7,"54523":7,"54524":7,"54525":8,"54526":3,"54527":9,"54528":7,"54529":1,"54530":5,"54531":7,"54532":2,"54533":2,"54534":3,"54535":4,"54536":8,"54537":5,"54538":8,"54539":10,"54540":2,"54541":5,"54542":2,"54543":7,"54544":7,"54545":9,"54546":8,"54547":7,"54548":3,"54549":5,"54550":9,"54551":9,"54552":8,"54553":9,"54554":8,"54555":5,"54556":1,"54557":3,"54558":2,"54559":6,"54560":10,"54561":8,"54562":2,"54563":2,"54564":8,"54565":3,"54566":2,"54567":9,"54568":4,"54569":7,"54570":2,"54571":7,"54572":2,"54573":8,"54574":7,"54575":8,"54576":7,"54577":8,"54578":8,"54579":8,"54580":7,"54581":8,"54582":1,"54583":6,"54584":2,"54585":7,"54586":4,"54587":7,"54588":10,"54589":5,"54590":9,"54591":2,"54592":2,"54593":8,"54594":8,"54595":7,"54596":9,"54597":7,"54598":8,"54599":5,"54600":8,"54601":7,"54602":8,"54603":2,"54604":8,"54605":8,"54606":7,"54607":7,"54608":5,"54609":7,"54610":6,"54611":1,"54612":7,"54613":2,"54614":7,"54615":7,"54616":1,"54617":2,"54618":7,"54619":8,"54620":10,"54621":8,"54622":5,"54623":7,"54624":6,"54625":5,"54626":8,"54627":3,"54628":7,"54629":5,"54630":8,"54631":9,"54632":8,"54633":8,"54634":10,"54635":7,"54636":7,"54637":7,"54638":10,"54639":7,"54640":3,"54641":7,"54642":5,"54643":2,"54644":7,"54645":7,"54646":2,"54647":8,"54648":7,"54649":6,"54650":9,"54651":7,"54652":9,"54653":8,"54654":9,"54655":8,"54656":7,"54657":8,"54658":8,"54659":7,"54660":7,"54661":1,"54662":1,"54663":6,"54664":8,"54665":8,"54666":2,"54667":6,"54668":5,"54669":7,"54670":3,"54671":9,"54672":8,"54673":1,"54674":8,"54675":7,"54676":8,"54677":10,"54678":5,"54679":8,"54680":8,"54681":10,"54682":2,"54683":7,"54684":7,"54685":2,"54686":9,"54687":7,"54688":7,"54689":5,"54690":8,"54691":8,"54692":8,"54693":10,"54694":9,"54695":9,"54696":7,"54697":9,"54698":7,"54699":1,"54700":5,"54701":7,"54702":3,"54703":8,"54704":7,"54705":8,"54706":7,"54707":7,"54708":5,"54709":8,"54710":8,"54711":10,"54712":8,"54713":5,"54714":8,"54715":8,"54716":7,"54717":8,"54718":7,"54719":10,"54720":8,"54721":4,"54722":2,"54723":7,"54724":1,"54725":7,"54726":7,"54727":2,"54728":7,"54729":8,"54730":10,"54731":3,"54732":9,"54733":3,"54734":2,"54735":7,"54736":8,"54737":8,"54738":7,"54739":1,"54740":8,"54741":5,"54742":6,"54743":9,"54744":9,"54745":4,"54746":8,"54747":2,"54748":9,"54749":1,"54750":1,"54751":2,"54752":8,"54753":1,"54754":8,"54755":8,"54756":6,"54757":2,"54758":6,"54759":9,"54760":4,"54761":5,"54762":8,"54763":9,"54764":7,"54765":2,"54766":7,"54767":3,"54768":3,"54769":1,"54770":8,"54771":9,"54772":9,"54773":5,"54774":6,"54775":8,"54776":7,"54777":6,"54778":5,"54779":8,"54780":8,"54781":3,"54782":5,"54783":7,"54784":10,"54785":5,"54786":2,"54787":5,"54788":9,"54789":9,"54790":10,"54791":7,"54792":6,"54793":3,"54794":5,"54795":9,"54796":3,"54797":2,"54798":8,"54799":7,"54800":7,"54801":2,"54802":8,"54803":8,"54804":7,"54805":6,"54806":10,"54807":10,"54808":10,"54809":9,"54810":8,"54811":7,"54812":8,"54813":10,"54814":2,"54815":7,"54816":9,"54817":8,"54818":1,"54819":8,"54820":9,"54821":1,"54822":9,"54823":7,"54824":9,"54825":10,"54826":8,"54827":8,"54828":2,"54829":7,"54830":5,"54831":5,"54832":7,"54833":1,"54834":8,"54835":8,"54836":9,"54837":2,"54838":7,"54839":8,"54840":3,"54841":6,"54842":5,"54843":8,"54844":8,"54845":7,"54846":8,"54847":4,"54848":8,"54849":7,"54850":8,"54851":9,"54852":7,"54853":8,"54854":7,"54855":1,"54856":8,"54857":4,"54858":8,"54859":7,"54860":2,"54861":5,"54862":8,"54863":9,"54864":7,"54865":4,"54866":5,"54867":10,"54868":9,"54869":7,"54870":8,"54871":7,"54872":9,"54873":10,"54874":9,"54875":7,"54876":2,"54877":6,"54878":8,"54879":7,"54880":10,"54881":7,"54882":9,"54883":2,"54884":5,"54885":7,"54886":9,"54887":8,"54888":5,"54889":7,"54890":5,"54891":8,"54892":8,"54893":8,"54894":8,"54895":9,"54896":7,"54897":7,"54898":7,"54899":7,"54900":2,"54901":10,"54902":8,"54903":9,"54904":5,"54905":5,"54906":1,"54907":6,"54908":8,"54909":6,"54910":2,"54911":10,"54912":5,"54913":7,"54914":3,"54915":8,"54916":2,"54917":7,"54918":5,"54919":4,"54920":1,"54921":9,"54922":9,"54923":8,"54924":8,"54925":8,"54926":3,"54927":1,"54928":7,"54929":8,"54930":7,"54931":5,"54932":8,"54933":9,"54934":4,"54935":1,"54936":5,"54937":2,"54938":9,"54939":10,"54940":10,"54941":8,"54942":9,"54943":2,"54944":3,"54945":6,"54946":9,"54947":10,"54948":4,"54949":9,"54950":7,"54951":3,"54952":8,"54953":9,"54954":8,"54955":7,"54956":9,"54957":5,"54958":5,"54959":9,"54960":8,"54961":2,"54962":4,"54963":5,"54964":4,"54965":4,"54966":7,"54967":9,"54968":5,"54969":2,"54970":9,"54971":7,"54972":4,"54973":1,"54974":1,"54975":7,"54976":7,"54977":7,"54978":9,"54979":4,"54980":8,"54981":3,"54982":9,"54983":7,"54984":8,"54985":8,"54986":8,"54987":8,"54988":8,"54989":8,"54990":5,"54991":7,"54992":9,"54993":7,"54994":9,"54995":1,"54996":7,"54997":2,"54998":7,"54999":2,"55000":8,"55001":1,"55002":8,"55003":6,"55004":8,"55005":9,"55006":6,"55007":7,"55008":4,"55009":1,"55010":7,"55011":6,"55012":8,"55013":2,"55014":4,"55015":7,"55016":9,"55017":3,"55018":8,"55019":2,"55020":8,"55021":7,"55022":9,"55023":8,"55024":3,"55025":8,"55026":8,"55027":3,"55028":6,"55029":9,"55030":9,"55031":5,"55032":2,"55033":9,"55034":8,"55035":7,"55036":2,"55037":3,"55038":8,"55039":7,"55040":7,"55041":8,"55042":7,"55043":7,"55044":8,"55045":8,"55046":7,"55047":8,"55048":7,"55049":9,"55050":5,"55051":7,"55052":7,"55053":9,"55054":9,"55055":2,"55056":9,"55057":5,"55058":3,"55059":8,"55060":7,"55061":8,"55062":7,"55063":4,"55064":5,"55065":9,"55066":2,"55067":10,"55068":2,"55069":7,"55070":6,"55071":3,"55072":6,"55073":9,"55074":4,"55075":9,"55076":7,"55077":9,"55078":8,"55079":1,"55080":7,"55081":9,"55082":5,"55083":9,"55084":8,"55085":5,"55086":7,"55087":7,"55088":9,"55089":5,"55090":10,"55091":9,"55092":5,"55093":9,"55094":3,"55095":9,"55096":5,"55097":1,"55098":5,"55099":5,"55100":6,"55101":10,"55102":10,"55103":8,"55104":9,"55105":2,"55106":7,"55107":7,"55108":8,"55109":8,"55110":4,"55111":10,"55112":1,"55113":6,"55114":5,"55115":4,"55116":7,"55117":9,"55118":9,"55119":8,"55120":9,"55121":4,"55122":8,"55123":9,"55124":4,"55125":2,"55126":7,"55127":10,"55128":3,"55129":7,"55130":2,"55131":8,"55132":7,"55133":7,"55134":10,"55135":9,"55136":9,"55137":7,"55138":8,"55139":7,"55140":8,"55141":8,"55142":8,"55143":8,"55144":2,"55145":9,"55146":2,"55147":7,"55148":7,"55149":6,"55150":3,"55151":7,"55152":10,"55153":7,"55154":9,"55155":9,"55156":8,"55157":7,"55158":9,"55159":9,"55160":1,"55161":2,"55162":3,"55163":5,"55164":9,"55165":7,"55166":5,"55167":9,"55168":3,"55169":9,"55170":5,"55171":2,"55172":5,"55173":8,"55174":2,"55175":7,"55176":8,"55177":8,"55178":7,"55179":8,"55180":8,"55181":8,"55182":8,"55183":9,"55184":5,"55185":5,"55186":5,"55187":1,"55188":4,"55189":7,"55190":1,"55191":7,"55192":9,"55193":8,"55194":2,"55195":7,"55196":9,"55197":9,"55198":8,"55199":9,"55200":8,"55201":8,"55202":9,"55203":9,"55204":7,"55205":7,"55206":9,"55207":8,"55208":2,"55209":7,"55210":7,"55211":7,"55212":2,"55213":8,"55214":1,"55215":8,"55216":7,"55217":4,"55218":9,"55219":5,"55220":5,"55221":9,"55222":5,"55223":2,"55224":8,"55225":1,"55226":8,"55227":8,"55228":3,"55229":2,"55230":10,"55231":8,"55232":9,"55233":8,"55234":8,"55235":7,"55236":1,"55237":8,"55238":9,"55239":6,"55240":10,"55241":8,"55242":8,"55243":5,"55244":2,"55245":5,"55246":9,"55247":1,"55248":5,"55249":7,"55250":2,"55251":7,"55252":10,"55253":7,"55254":7,"55255":9,"55256":4,"55257":9,"55258":3,"55259":5,"55260":5,"55261":8,"55262":8,"55263":1,"55264":7,"55265":8,"55266":6,"55267":5,"55268":8,"55269":5,"55270":2,"55271":8,"55272":8,"55273":9,"55274":8,"55275":7,"55276":2,"55277":6,"55278":1,"55279":7,"55280":8,"55281":7,"55282":4,"55283":4,"55284":7,"55285":5,"55286":6,"55287":10,"55288":7,"55289":8,"55290":8,"55291":8,"55292":9,"55293":8,"55294":8,"55295":8,"55296":2,"55297":5,"55298":8,"55299":5,"55300":2,"55301":8,"55302":5,"55303":1,"55304":3,"55305":9,"55306":10,"55307":9,"55308":7,"55309":8,"55310":9,"55311":1,"55312":7,"55313":8,"55314":5,"55315":9,"55316":9,"55317":9,"55318":6,"55319":8,"55320":5,"55321":7,"55322":2,"55323":7,"55324":8,"55325":6,"55326":8,"55327":7,"55328":8,"55329":5,"55330":8,"55331":8,"55332":9,"55333":2,"55334":8,"55335":8,"55336":4,"55337":8,"55338":6,"55339":5,"55340":10,"55341":10,"55342":3,"55343":8,"55344":5,"55345":5,"55346":9,"55347":9,"55348":7,"55349":7,"55350":9,"55351":3,"55352":10,"55353":2,"55354":2,"55355":1,"55356":2,"55357":7,"55358":7,"55359":2,"55360":4,"55361":8,"55362":1,"55363":9,"55364":5,"55365":4,"55366":5,"55367":6,"55368":2,"55369":7,"55370":7,"55371":7,"55372":6,"55373":9,"55374":8,"55375":1,"55376":9,"55377":9,"55378":4,"55379":2,"55380":9,"55381":9,"55382":7,"55383":8,"55384":5,"55385":6,"55386":8,"55387":2,"55388":9,"55389":7,"55390":1,"55391":10,"55392":8,"55393":8,"55394":7,"55395":6,"55396":8,"55397":7,"55398":8,"55399":8,"55400":3,"55401":5,"55402":2,"55403":9,"55404":2,"55405":8,"55406":9,"55407":7,"55408":7,"55409":7,"55410":9,"55411":5,"55412":5,"55413":2,"55414":2,"55415":5,"55416":3,"55417":7,"55418":9,"55419":2,"55420":2,"55421":8,"55422":8,"55423":5,"55424":8,"55425":7,"55426":7,"55427":5,"55428":7,"55429":10,"55430":10,"55431":7,"55432":1,"55433":9,"55434":4,"55435":7,"55436":3,"55437":10,"55438":3,"55439":7,"55440":3,"55441":7,"55442":5,"55443":9,"55444":8,"55445":7,"55446":1,"55447":9,"55448":7,"55449":3,"55450":7,"55451":9,"55452":7,"55453":10,"55454":4,"55455":9,"55456":10,"55457":1,"55458":2,"55459":1,"55460":5,"55461":9,"55462":5,"55463":7,"55464":10,"55465":5,"55466":9,"55467":5,"55468":7,"55469":8,"55470":8,"55471":7,"55472":9,"55473":8,"55474":7,"55475":9,"55476":8,"55477":8,"55478":7,"55479":9,"55480":10,"55481":9,"55482":2,"55483":2,"55484":7,"55485":8,"55486":2,"55487":1,"55488":2,"55489":1,"55490":10,"55491":9,"55492":9,"55493":9,"55494":2,"55495":2,"55496":7,"55497":8,"55498":5,"55499":7,"55500":1,"55501":8,"55502":8,"55503":7,"55504":8,"55505":8,"55506":2,"55507":8,"55508":8,"55509":9,"55510":2,"55511":5,"55512":9,"55513":7,"55514":2,"55515":9,"55516":7,"55517":7,"55518":7,"55519":7,"55520":9,"55521":9,"55522":10,"55523":5,"55524":2,"55525":10,"55526":5,"55527":1,"55528":9,"55529":7,"55530":5,"55531":6,"55532":5,"55533":3,"55534":6,"55535":5,"55536":2,"55537":9,"55538":6,"55539":9,"55540":4,"55541":4,"55542":10,"55543":7,"55544":7,"55545":7,"55546":2,"55547":3,"55548":5,"55549":4,"55550":4,"55551":1,"55552":2,"55553":2,"55554":7,"55555":7,"55556":4,"55557":5,"55558":5,"55559":7,"55560":9,"55561":1,"55562":5,"55563":1,"55564":5,"55565":9,"55566":5,"55567":1,"55568":8,"55569":2,"55570":8,"55571":2,"55572":2,"55573":3,"55574":8,"55575":8,"55576":4,"55577":6,"55578":7,"55579":9,"55580":7,"55581":5,"55582":7,"55583":8,"55584":7,"55585":2,"55586":5,"55587":6,"55588":5,"55589":2,"55590":9,"55591":5,"55592":9,"55593":3,"55594":8,"55595":5,"55596":7,"55597":9,"55598":8,"55599":9,"55600":9,"55601":8,"55602":9,"55603":4,"55604":2,"55605":6,"55606":3,"55607":7,"55608":3,"55609":7,"55610":2,"55611":9,"55612":7,"55613":9,"55614":4,"55615":7,"55616":7,"55617":4,"55618":9,"55619":8,"55620":8,"55621":7,"55622":1,"55623":4,"55624":6,"55625":9,"55626":7,"55627":1,"55628":6,"55629":5,"55630":5,"55631":4,"55632":4,"55633":8,"55634":2,"55635":9,"55636":5,"55637":5,"55638":1,"55639":9,"55640":3,"55641":6,"55642":9,"55643":5,"55644":8,"55645":9,"55646":7,"55647":9,"55648":6,"55649":7,"55650":7,"55651":10,"55652":2,"55653":6,"55654":6,"55655":7,"55656":10,"55657":7,"55658":5,"55659":3,"55660":9,"55661":4,"55662":9,"55663":6,"55664":6,"55665":7,"55666":4,"55667":7,"55668":7,"55669":4,"55670":5,"55671":8,"55672":2,"55673":5,"55674":10,"55675":2,"55676":8,"55677":8,"55678":8,"55679":7,"55680":2,"55681":2,"55682":8,"55683":7,"55684":9,"55685":1,"55686":7,"55687":7,"55688":2,"55689":3,"55690":10,"55691":8,"55692":8,"55693":2,"55694":7,"55695":10,"55696":8,"55697":1,"55698":9,"55699":8,"55700":8,"55701":7,"55702":7,"55703":2,"55704":6,"55705":6,"55706":8,"55707":4,"55708":7,"55709":2,"55710":8,"55711":3,"55712":5,"55713":6,"55714":4,"55715":9,"55716":7,"55717":9,"55718":5,"55719":9,"55720":5,"55721":7,"55722":8,"55723":2,"55724":6,"55725":9,"55726":1,"55727":9,"55728":9,"55729":10,"55730":2,"55731":9,"55732":2,"55733":9,"55734":9,"55735":5,"55736":9,"55737":9,"55738":9,"55739":5,"55740":7,"55741":1,"55742":9,"55743":2,"55744":9,"55745":7,"55746":1,"55747":1,"55748":2,"55749":1,"55750":8,"55751":5,"55752":6,"55753":8,"55754":3,"55755":7,"55756":9,"55757":7,"55758":9,"55759":5,"55760":1,"55761":9,"55762":8,"55763":5,"55764":6,"55765":3,"55766":5,"55767":9,"55768":10,"55769":7,"55770":9,"55771":4,"55772":8,"55773":7,"55774":9,"55775":7,"55776":9,"55777":7,"55778":8,"55779":9,"55780":9,"55781":2,"55782":8,"55783":5,"55784":8,"55785":2,"55786":7,"55787":8,"55788":8,"55789":7,"55790":3,"55791":7,"55792":7,"55793":10,"55794":7,"55795":5,"55796":7,"55797":2,"55798":6,"55799":7,"55800":8,"55801":9,"55802":10,"55803":8,"55804":6,"55805":5,"55806":10,"55807":9,"55808":9,"55809":2,"55810":9,"55811":8,"55812":5,"55813":1,"55814":7,"55815":1,"55816":7,"55817":3,"55818":7,"55819":9,"55820":9,"55821":7,"55822":8,"55823":2,"55824":4,"55825":10,"55826":7,"55827":7,"55828":7,"55829":7,"55830":1,"55831":5,"55832":8,"55833":9,"55834":6,"55835":9,"55836":7,"55837":6,"55838":9,"55839":7,"55840":7,"55841":7,"55842":8,"55843":2,"55844":9,"55845":8,"55846":9,"55847":8,"55848":6,"55849":8,"55850":9,"55851":9,"55852":8,"55853":9,"55854":5,"55855":1,"55856":8,"55857":6,"55858":7,"55859":1,"55860":7,"55861":2,"55862":7,"55863":7,"55864":2,"55865":8,"55866":5,"55867":3,"55868":5,"55869":9,"55870":5,"55871":6,"55872":7,"55873":2,"55874":4,"55875":7,"55876":1,"55877":8,"55878":8,"55879":9,"55880":9,"55881":7,"55882":7,"55883":7,"55884":5,"55885":2,"55886":2,"55887":3,"55888":8,"55889":2,"55890":9,"55891":3,"55892":9,"55893":10,"55894":7,"55895":8,"55896":4,"55897":7,"55898":2,"55899":8,"55900":10,"55901":2,"55902":8,"55903":8,"55904":7,"55905":10,"55906":8,"55907":4,"55908":4,"55909":1,"55910":7,"55911":5,"55912":8,"55913":8,"55914":9,"55915":7,"55916":3,"55917":8,"55918":2,"55919":6,"55920":2,"55921":9,"55922":7,"55923":8,"55924":4,"55925":10,"55926":8,"55927":1,"55928":9,"55929":9,"55930":5,"55931":2,"55932":9,"55933":7,"55934":5,"55935":6,"55936":4,"55937":8,"55938":1,"55939":8,"55940":9,"55941":7,"55942":10,"55943":2,"55944":9,"55945":3,"55946":5,"55947":6,"55948":9,"55949":6,"55950":5,"55951":2,"55952":2,"55953":8,"55954":5,"55955":5,"55956":7,"55957":7,"55958":4,"55959":10,"55960":10,"55961":7,"55962":9,"55963":6,"55964":4,"55965":6,"55966":8,"55967":6,"55968":5,"55969":6,"55970":5,"55971":8,"55972":10,"55973":6,"55974":10,"55975":8,"55976":2,"55977":5,"55978":5,"55979":5,"55980":8,"55981":8,"55982":5,"55983":2,"55984":9,"55985":5,"55986":6,"55987":8,"55988":6,"55989":8,"55990":8,"55991":5,"55992":9,"55993":1,"55994":2,"55995":9,"55996":1,"55997":7,"55998":1,"55999":8,"56000":9,"56001":3,"56002":10,"56003":8,"56004":6,"56005":8,"56006":6,"56007":9,"56008":9,"56009":1,"56010":8,"56011":1,"56012":2,"56013":9,"56014":5,"56015":7,"56016":7,"56017":7,"56018":1,"56019":2,"56020":8,"56021":2,"56022":8,"56023":7,"56024":5,"56025":8,"56026":7,"56027":7,"56028":9,"56029":9,"56030":5,"56031":9,"56032":8,"56033":7,"56034":7,"56035":2,"56036":4,"56037":8,"56038":5,"56039":9,"56040":2,"56041":1,"56042":8,"56043":7,"56044":7,"56045":2,"56046":1,"56047":8,"56048":8,"56049":2,"56050":5,"56051":10,"56052":8,"56053":7,"56054":8,"56055":5,"56056":4,"56057":8,"56058":6,"56059":3,"56060":8,"56061":9,"56062":9,"56063":9,"56064":7,"56065":6,"56066":3,"56067":4,"56068":7,"56069":7,"56070":7,"56071":1,"56072":2,"56073":8,"56074":7,"56075":2,"56076":4,"56077":8,"56078":3,"56079":8,"56080":8,"56081":8,"56082":10,"56083":2,"56084":10,"56085":9,"56086":7,"56087":7,"56088":9,"56089":9,"56090":2,"56091":2,"56092":6,"56093":8,"56094":9,"56095":1,"56096":2,"56097":4,"56098":7,"56099":8,"56100":4,"56101":5,"56102":5,"56103":7,"56104":9,"56105":7,"56106":3,"56107":2,"56108":5,"56109":7,"56110":5,"56111":4,"56112":7,"56113":6,"56114":9,"56115":8,"56116":7,"56117":7,"56118":9,"56119":9,"56120":9,"56121":2,"56122":4,"56123":9,"56124":10,"56125":5,"56126":1,"56127":5,"56128":9,"56129":3,"56130":10,"56131":9,"56132":6,"56133":2,"56134":1,"56135":8,"56136":8,"56137":1,"56138":5,"56139":7,"56140":9,"56141":10,"56142":1,"56143":7,"56144":7,"56145":7,"56146":8,"56147":6,"56148":6,"56149":1,"56150":2,"56151":8,"56152":4,"56153":10,"56154":2,"56155":10,"56156":5,"56157":7,"56158":8,"56159":9,"56160":1,"56161":7,"56162":9,"56163":9,"56164":8,"56165":10,"56166":1,"56167":3,"56168":2,"56169":8,"56170":9,"56171":9,"56172":7,"56173":7,"56174":3,"56175":10,"56176":1,"56177":8,"56178":8,"56179":5,"56180":7,"56181":9,"56182":7,"56183":5,"56184":5,"56185":10,"56186":5,"56187":3,"56188":7,"56189":7,"56190":7,"56191":7,"56192":4,"56193":9,"56194":7,"56195":8,"56196":8,"56197":7,"56198":4,"56199":7,"56200":5,"56201":3,"56202":7,"56203":7,"56204":9,"56205":6,"56206":4,"56207":5,"56208":9,"56209":8,"56210":7,"56211":7,"56212":8,"56213":1,"56214":8,"56215":1,"56216":2,"56217":9,"56218":1,"56219":2,"56220":4,"56221":1,"56222":8,"56223":3,"56224":2,"56225":7,"56226":8,"56227":1,"56228":2,"56229":7,"56230":6,"56231":2,"56232":2,"56233":7,"56234":9,"56235":9,"56236":9,"56237":9,"56238":7,"56239":6,"56240":7,"56241":5,"56242":7,"56243":10,"56244":7,"56245":2,"56246":2,"56247":8,"56248":4,"56249":9,"56250":8,"56251":4,"56252":7,"56253":2,"56254":6,"56255":5,"56256":9,"56257":3,"56258":2,"56259":1,"56260":1,"56261":3,"56262":7,"56263":8,"56264":7,"56265":3,"56266":10,"56267":1,"56268":8,"56269":9,"56270":9,"56271":5,"56272":9,"56273":3,"56274":8,"56275":7,"56276":9,"56277":7,"56278":5,"56279":7,"56280":9,"56281":7,"56282":6,"56283":5,"56284":4,"56285":8,"56286":4,"56287":3,"56288":7,"56289":2,"56290":7,"56291":8,"56292":2,"56293":3,"56294":5,"56295":5,"56296":5,"56297":8,"56298":8,"56299":8,"56300":9,"56301":7,"56302":9,"56303":2,"56304":9,"56305":8,"56306":2,"56307":8,"56308":7,"56309":5,"56310":2,"56311":5,"56312":4,"56313":4,"56314":8,"56315":3,"56316":8,"56317":4,"56318":2,"56319":2,"56320":7,"56321":9,"56322":7,"56323":9,"56324":7,"56325":5,"56326":2,"56327":1,"56328":7,"56329":8,"56330":10,"56331":9,"56332":10,"56333":7,"56334":2,"56335":2,"56336":7,"56337":3,"56338":7,"56339":9,"56340":7,"56341":2,"56342":6,"56343":4,"56344":7,"56345":8,"56346":2,"56347":6,"56348":7,"56349":8,"56350":7,"56351":6,"56352":7,"56353":4,"56354":5,"56355":7,"56356":8,"56357":5,"56358":4,"56359":3,"56360":3,"56361":2,"56362":9,"56363":7,"56364":7,"56365":8,"56366":6,"56367":3,"56368":2,"56369":4,"56370":3,"56371":8,"56372":7,"56373":2,"56374":8,"56375":9,"56376":2,"56377":2,"56378":9,"56379":7,"56380":7,"56381":8,"56382":7,"56383":7,"56384":7,"56385":8,"56386":9,"56387":9,"56388":9,"56389":7,"56390":7,"56391":9,"56392":8,"56393":7,"56394":4,"56395":3,"56396":7,"56397":9,"56398":10,"56399":8,"56400":5,"56401":7,"56402":8,"56403":7,"56404":2,"56405":2,"56406":2,"56407":7,"56408":4,"56409":6,"56410":2,"56411":2,"56412":7,"56413":4,"56414":10,"56415":6,"56416":5,"56417":7,"56418":8,"56419":9,"56420":3,"56421":8,"56422":2,"56423":8,"56424":10,"56425":7,"56426":10,"56427":8,"56428":8,"56429":7,"56430":4,"56431":10,"56432":7,"56433":2,"56434":3,"56435":8,"56436":8,"56437":7,"56438":8,"56439":9,"56440":8,"56441":7,"56442":5,"56443":9,"56444":9,"56445":8,"56446":8,"56447":7,"56448":5,"56449":9,"56450":9,"56451":1,"56452":9,"56453":9,"56454":8,"56455":9,"56456":8,"56457":8,"56458":8,"56459":1,"56460":8,"56461":1,"56462":9,"56463":10,"56464":7,"56465":6,"56466":7,"56467":8,"56468":7,"56469":8,"56470":7,"56471":8,"56472":2,"56473":10,"56474":1,"56475":8,"56476":6,"56477":5,"56478":1,"56479":10,"56480":7,"56481":8,"56482":1,"56483":9,"56484":4,"56485":7,"56486":9,"56487":8,"56488":1,"56489":7,"56490":9,"56491":8,"56492":10,"56493":4,"56494":9,"56495":2,"56496":8,"56497":5,"56498":9,"56499":6,"56500":7,"56501":8,"56502":2,"56503":5,"56504":9,"56505":2,"56506":10,"56507":3,"56508":4,"56509":2,"56510":9,"56511":5,"56512":5,"56513":8,"56514":9,"56515":7,"56516":10,"56517":8,"56518":5,"56519":4,"56520":9,"56521":7,"56522":9,"56523":10,"56524":8,"56525":1,"56526":8,"56527":2,"56528":7,"56529":5,"56530":2,"56531":1,"56532":7,"56533":7,"56534":10,"56535":7,"56536":3,"56537":1,"56538":7,"56539":9,"56540":4,"56541":7,"56542":8,"56543":2,"56544":7,"56545":7,"56546":8,"56547":5,"56548":8,"56549":9,"56550":6,"56551":10,"56552":8,"56553":6,"56554":2,"56555":8,"56556":7,"56557":8,"56558":5,"56559":9,"56560":8,"56561":4,"56562":6,"56563":7,"56564":8,"56565":7,"56566":7,"56567":6,"56568":5,"56569":9,"56570":8,"56571":7,"56572":2,"56573":9,"56574":8,"56575":1,"56576":9,"56577":8,"56578":2,"56579":8,"56580":10,"56581":9,"56582":8,"56583":5,"56584":2,"56585":3,"56586":7,"56587":5,"56588":6,"56589":10,"56590":10,"56591":3,"56592":7,"56593":7,"56594":9,"56595":2,"56596":8,"56597":6,"56598":9,"56599":2,"56600":6,"56601":9,"56602":6,"56603":9,"56604":2,"56605":5,"56606":5,"56607":1,"56608":7,"56609":5,"56610":8,"56611":7,"56612":7,"56613":5,"56614":9,"56615":2,"56616":2,"56617":7,"56618":7,"56619":2,"56620":7,"56621":1,"56622":4,"56623":7,"56624":7,"56625":5,"56626":2,"56627":8,"56628":1,"56629":7,"56630":2,"56631":8,"56632":7,"56633":1,"56634":4,"56635":1,"56636":5,"56637":7,"56638":10,"56639":5,"56640":9,"56641":7,"56642":7,"56643":9,"56644":3,"56645":7,"56646":9,"56647":9,"56648":1,"56649":8,"56650":1,"56651":9,"56652":7,"56653":8,"56654":9,"56655":9,"56656":9,"56657":10,"56658":7,"56659":9,"56660":8,"56661":2,"56662":9,"56663":8,"56664":4,"56665":2,"56666":7,"56667":6,"56668":9,"56669":5,"56670":5,"56671":6,"56672":10,"56673":4,"56674":9,"56675":8,"56676":7,"56677":7,"56678":8,"56679":9,"56680":8,"56681":9,"56682":7,"56683":4,"56684":4,"56685":8,"56686":1,"56687":1,"56688":8,"56689":9,"56690":9,"56691":4,"56692":7,"56693":7,"56694":8,"56695":4,"56696":2,"56697":8,"56698":8,"56699":2,"56700":4,"56701":3,"56702":9,"56703":8,"56704":7,"56705":3,"56706":9,"56707":2,"56708":3,"56709":7,"56710":7,"56711":9,"56712":8,"56713":8,"56714":1,"56715":8,"56716":9,"56717":2,"56718":4,"56719":1,"56720":9,"56721":5,"56722":9,"56723":8,"56724":5,"56725":8,"56726":9,"56727":9,"56728":7,"56729":9,"56730":9,"56731":3,"56732":2,"56733":8,"56734":9,"56735":8,"56736":9,"56737":4,"56738":2,"56739":8,"56740":5,"56741":7,"56742":10,"56743":2,"56744":7,"56745":9,"56746":7,"56747":9,"56748":6,"56749":7,"56750":7,"56751":7,"56752":8,"56753":9,"56754":7,"56755":7,"56756":8,"56757":10,"56758":8,"56759":3,"56760":1,"56761":9,"56762":8,"56763":8,"56764":7,"56765":10,"56766":5,"56767":3,"56768":7,"56769":8,"56770":1,"56771":8,"56772":9,"56773":8,"56774":7,"56775":9,"56776":8,"56777":9,"56778":7,"56779":3,"56780":9,"56781":7,"56782":7,"56783":8,"56784":4,"56785":7,"56786":2,"56787":3,"56788":3,"56789":7,"56790":7,"56791":8,"56792":9,"56793":7,"56794":2,"56795":5,"56796":9,"56797":7,"56798":6,"56799":8,"56800":2,"56801":8,"56802":6,"56803":5,"56804":5,"56805":9,"56806":7,"56807":9,"56808":3,"56809":4,"56810":6,"56811":2,"56812":8,"56813":6,"56814":7,"56815":7,"56816":9,"56817":9,"56818":9,"56819":9,"56820":5,"56821":7,"56822":4,"56823":1,"56824":3,"56825":10,"56826":2,"56827":7,"56828":6,"56829":9,"56830":2,"56831":9,"56832":3,"56833":9,"56834":10,"56835":8,"56836":5,"56837":9,"56838":5,"56839":2,"56840":7,"56841":3,"56842":7,"56843":6,"56844":7,"56845":7,"56846":7,"56847":3,"56848":5,"56849":2,"56850":1,"56851":9,"56852":7,"56853":10,"56854":7,"56855":10,"56856":8,"56857":6,"56858":8,"56859":4,"56860":7,"56861":5,"56862":1,"56863":9,"56864":4,"56865":5,"56866":7,"56867":5,"56868":7,"56869":6,"56870":7,"56871":7,"56872":7,"56873":2,"56874":8,"56875":1,"56876":2,"56877":9,"56878":8,"56879":6,"56880":9,"56881":7,"56882":2,"56883":5,"56884":9,"56885":9,"56886":8,"56887":9,"56888":6,"56889":9,"56890":8,"56891":8,"56892":6,"56893":2,"56894":5,"56895":4,"56896":7,"56897":6,"56898":2,"56899":7,"56900":8,"56901":8,"56902":9,"56903":2,"56904":4,"56905":5,"56906":5,"56907":8,"56908":9,"56909":8,"56910":1,"56911":8,"56912":8,"56913":10,"56914":1,"56915":7,"56916":7,"56917":9,"56918":7,"56919":8,"56920":8,"56921":7,"56922":2,"56923":8,"56924":1,"56925":9,"56926":9,"56927":6,"56928":8,"56929":9,"56930":7,"56931":5,"56932":8,"56933":8,"56934":4,"56935":1,"56936":4,"56937":7,"56938":2,"56939":2,"56940":5,"56941":4,"56942":7,"56943":5,"56944":9,"56945":7,"56946":2,"56947":5,"56948":9,"56949":10,"56950":6,"56951":8,"56952":9,"56953":8,"56954":9,"56955":7,"56956":7,"56957":9,"56958":1,"56959":7,"56960":9,"56961":3,"56962":7,"56963":7,"56964":8,"56965":9,"56966":9,"56967":5,"56968":7,"56969":8,"56970":5,"56971":8,"56972":9,"56973":7,"56974":8,"56975":7,"56976":9,"56977":2,"56978":1,"56979":2,"56980":8,"56981":9,"56982":4,"56983":9,"56984":5,"56985":1,"56986":2,"56987":5,"56988":8,"56989":8,"56990":8,"56991":4,"56992":1,"56993":6,"56994":8,"56995":7,"56996":10,"56997":5,"56998":9,"56999":3,"57000":3,"57001":9,"57002":1,"57003":2,"57004":9,"57005":7,"57006":7,"57007":4,"57008":4,"57009":4,"57010":5,"57011":8,"57012":7,"57013":7,"57014":2,"57015":3,"57016":8,"57017":6,"57018":2,"57019":8,"57020":9,"57021":2,"57022":7,"57023":9,"57024":10,"57025":2,"57026":2,"57027":8,"57028":2,"57029":2,"57030":8,"57031":1,"57032":8,"57033":7,"57034":5,"57035":10,"57036":2,"57037":10,"57038":8,"57039":6,"57040":2,"57041":2,"57042":6,"57043":7,"57044":10,"57045":9,"57046":8,"57047":8,"57048":3,"57049":3,"57050":5,"57051":10,"57052":7,"57053":2,"57054":8,"57055":8,"57056":4,"57057":5,"57058":7,"57059":10,"57060":7,"57061":1,"57062":8,"57063":8,"57064":9,"57065":8,"57066":4,"57067":9,"57068":6,"57069":7,"57070":8,"57071":9,"57072":5,"57073":7,"57074":8,"57075":8,"57076":3,"57077":9,"57078":9,"57079":8,"57080":1,"57081":3,"57082":4,"57083":9,"57084":7,"57085":6,"57086":7,"57087":8,"57088":6,"57089":8,"57090":4,"57091":8,"57092":7,"57093":4,"57094":7,"57095":7,"57096":5,"57097":9,"57098":2,"57099":9,"57100":7,"57101":9,"57102":9,"57103":7,"57104":9,"57105":4,"57106":5,"57107":9,"57108":1,"57109":7,"57110":7,"57111":7,"57112":9,"57113":5,"57114":9,"57115":1,"57116":6,"57117":5,"57118":4,"57119":6,"57120":8,"57121":5,"57122":8,"57123":8,"57124":7,"57125":7,"57126":7,"57127":4,"57128":3,"57129":9,"57130":7,"57131":7,"57132":8,"57133":7,"57134":8,"57135":2,"57136":9,"57137":8,"57138":3,"57139":8,"57140":5,"57141":10,"57142":5,"57143":7,"57144":5,"57145":8,"57146":2,"57147":8,"57148":7,"57149":9,"57150":2,"57151":8,"57152":1,"57153":6,"57154":7,"57155":3,"57156":7,"57157":4,"57158":5,"57159":5,"57160":7,"57161":6,"57162":9,"57163":7,"57164":4,"57165":1,"57166":8,"57167":3,"57168":4,"57169":5,"57170":4,"57171":6,"57172":8,"57173":8,"57174":9,"57175":8,"57176":7,"57177":8,"57178":9,"57179":5,"57180":7,"57181":8,"57182":8,"57183":9,"57184":5,"57185":2,"57186":8,"57187":7,"57188":8,"57189":8,"57190":8,"57191":6,"57192":7,"57193":10,"57194":2,"57195":8,"57196":10,"57197":10,"57198":3,"57199":2,"57200":2,"57201":9,"57202":8,"57203":7,"57204":5,"57205":8,"57206":8,"57207":8,"57208":7,"57209":9,"57210":7,"57211":7,"57212":2,"57213":3,"57214":5,"57215":10,"57216":7,"57217":6,"57218":8,"57219":8,"57220":5,"57221":7,"57222":4,"57223":10,"57224":8,"57225":4,"57226":1,"57227":9,"57228":3,"57229":7,"57230":8,"57231":9,"57232":8,"57233":9,"57234":4,"57235":3,"57236":7,"57237":7,"57238":9,"57239":9,"57240":9,"57241":6,"57242":5,"57243":7,"57244":5,"57245":2,"57246":2,"57247":3,"57248":7,"57249":6,"57250":8,"57251":3,"57252":5,"57253":9,"57254":4,"57255":9,"57256":5,"57257":6,"57258":8,"57259":1,"57260":6,"57261":9,"57262":8,"57263":7,"57264":1,"57265":5,"57266":7,"57267":3,"57268":8,"57269":2,"57270":5,"57271":8,"57272":7,"57273":9,"57274":5,"57275":7,"57276":7,"57277":7,"57278":8,"57279":3,"57280":3,"57281":9,"57282":6,"57283":8,"57284":5,"57285":8,"57286":2,"57287":2,"57288":1,"57289":1,"57290":1,"57291":3,"57292":9,"57293":8,"57294":8,"57295":9,"57296":4,"57297":6,"57298":7,"57299":2,"57300":7,"57301":9,"57302":8,"57303":2,"57304":5,"57305":9,"57306":7,"57307":6,"57308":8,"57309":9,"57310":1,"57311":7,"57312":8,"57313":8,"57314":3,"57315":7,"57316":5,"57317":8,"57318":8,"57319":1,"57320":2,"57321":8,"57322":5,"57323":9,"57324":2,"57325":8,"57326":10,"57327":1,"57328":7,"57329":8,"57330":10,"57331":7,"57332":9,"57333":8,"57334":3,"57335":8,"57336":7,"57337":4,"57338":4,"57339":5,"57340":8,"57341":8,"57342":10,"57343":5,"57344":5,"57345":5,"57346":7,"57347":8,"57348":8,"57349":2,"57350":7,"57351":6,"57352":10,"57353":10,"57354":9,"57355":7,"57356":5,"57357":3,"57358":8,"57359":3,"57360":7,"57361":9,"57362":2,"57363":9,"57364":7,"57365":2,"57366":10,"57367":7,"57368":9,"57369":7,"57370":5,"57371":6,"57372":7,"57373":3,"57374":8,"57375":7,"57376":7,"57377":7,"57378":7,"57379":5,"57380":4,"57381":2,"57382":7,"57383":5,"57384":5,"57385":8,"57386":9,"57387":5,"57388":6,"57389":6,"57390":5,"57391":9,"57392":6,"57393":9,"57394":8,"57395":6,"57396":8,"57397":3,"57398":7,"57399":9,"57400":8,"57401":7,"57402":6,"57403":8,"57404":2,"57405":1,"57406":9,"57407":1,"57408":7,"57409":6,"57410":7,"57411":9,"57412":8,"57413":8,"57414":9,"57415":7,"57416":7,"57417":7,"57418":2,"57419":3,"57420":1,"57421":5,"57422":9,"57423":8,"57424":7,"57425":9,"57426":8,"57427":7,"57428":2,"57429":2,"57430":5,"57431":5,"57432":1,"57433":8,"57434":9,"57435":7,"57436":9,"57437":1,"57438":6,"57439":7,"57440":1,"57441":1,"57442":1,"57443":5,"57444":9,"57445":7,"57446":8,"57447":3,"57448":9,"57449":10,"57450":8,"57451":8,"57452":2,"57453":6,"57454":8,"57455":2,"57456":9,"57457":8,"57458":5,"57459":8,"57460":6,"57461":9,"57462":2,"57463":2,"57464":9,"57465":7,"57466":2,"57467":8,"57468":9,"57469":7,"57470":9,"57471":1,"57472":8,"57473":8,"57474":7,"57475":7,"57476":8,"57477":10,"57478":2,"57479":5,"57480":9,"57481":1,"57482":2,"57483":6,"57484":7,"57485":9,"57486":8,"57487":7,"57488":7,"57489":10,"57490":8,"57491":4,"57492":2,"57493":10,"57494":8,"57495":5,"57496":9,"57497":7,"57498":7,"57499":1,"57500":6,"57501":2,"57502":9,"57503":3,"57504":1,"57505":9,"57506":7,"57507":7,"57508":5,"57509":7,"57510":6,"57511":7,"57512":4,"57513":5,"57514":10,"57515":9,"57516":7,"57517":2,"57518":5,"57519":1,"57520":8,"57521":5,"57522":8,"57523":2,"57524":2,"57525":7,"57526":7,"57527":10,"57528":8,"57529":8,"57530":7,"57531":8,"57532":8,"57533":2,"57534":9,"57535":2,"57536":7,"57537":8,"57538":9,"57539":9,"57540":4,"57541":2,"57542":4,"57543":7,"57544":6,"57545":5,"57546":7,"57547":6,"57548":7,"57549":2,"57550":2,"57551":7,"57552":8,"57553":7,"57554":2,"57555":5,"57556":7,"57557":5,"57558":7,"57559":9,"57560":8,"57561":10,"57562":6,"57563":8,"57564":5,"57565":4,"57566":4,"57567":7,"57568":2,"57569":2,"57570":7,"57571":10,"57572":8,"57573":9,"57574":8,"57575":7,"57576":8,"57577":6,"57578":8,"57579":7,"57580":2,"57581":10,"57582":7,"57583":4,"57584":7,"57585":1,"57586":7,"57587":8,"57588":8,"57589":5,"57590":7,"57591":4,"57592":8,"57593":7,"57594":7,"57595":7,"57596":5,"57597":3,"57598":8,"57599":4,"57600":2,"57601":1,"57602":9,"57603":1,"57604":7,"57605":5,"57606":3,"57607":8,"57608":9,"57609":2,"57610":9,"57611":2,"57612":9,"57613":7,"57614":9,"57615":2,"57616":1,"57617":7,"57618":2,"57619":5,"57620":2,"57621":8,"57622":10,"57623":10,"57624":7,"57625":9,"57626":9,"57627":9,"57628":2,"57629":8,"57630":5,"57631":2,"57632":6,"57633":8,"57634":7,"57635":5,"57636":7,"57637":1,"57638":3,"57639":9,"57640":2,"57641":2,"57642":4,"57643":9,"57644":8,"57645":4,"57646":8,"57647":5,"57648":2,"57649":8,"57650":2,"57651":7,"57652":5,"57653":7,"57654":5,"57655":7,"57656":5,"57657":7,"57658":8,"57659":5,"57660":2,"57661":7,"57662":10,"57663":8,"57664":1,"57665":7,"57666":9,"57667":7,"57668":7,"57669":7,"57670":5,"57671":7,"57672":1,"57673":8,"57674":7,"57675":9,"57676":7,"57677":9,"57678":5,"57679":7,"57680":8,"57681":5,"57682":8,"57683":6,"57684":4,"57685":5,"57686":8,"57687":9,"57688":7,"57689":3,"57690":9,"57691":2,"57692":4,"57693":2,"57694":7,"57695":8,"57696":8,"57697":10,"57698":7,"57699":9,"57700":5,"57701":7,"57702":8,"57703":5,"57704":7,"57705":5,"57706":10,"57707":5,"57708":7,"57709":8,"57710":2,"57711":5,"57712":9,"57713":8,"57714":7,"57715":7,"57716":9,"57717":8,"57718":7,"57719":1,"57720":7,"57721":7,"57722":7,"57723":7,"57724":9,"57725":1,"57726":2,"57727":6,"57728":7,"57729":7,"57730":10,"57731":8,"57732":5,"57733":4,"57734":7,"57735":4,"57736":8,"57737":3,"57738":8,"57739":1,"57740":7,"57741":10,"57742":5,"57743":9,"57744":7,"57745":10,"57746":9,"57747":5,"57748":5,"57749":7,"57750":9,"57751":9,"57752":2,"57753":7,"57754":8,"57755":4,"57756":7,"57757":7,"57758":4,"57759":2,"57760":5,"57761":5,"57762":2,"57763":7,"57764":2,"57765":10,"57766":5,"57767":5,"57768":1,"57769":5,"57770":5,"57771":4,"57772":6,"57773":9,"57774":5,"57775":7,"57776":2,"57777":8,"57778":8,"57779":7,"57780":9,"57781":7,"57782":2,"57783":7,"57784":8,"57785":5,"57786":8,"57787":9,"57788":7,"57789":3,"57790":9,"57791":1,"57792":9,"57793":2,"57794":2,"57795":7,"57796":2,"57797":7,"57798":5,"57799":1,"57800":5,"57801":1,"57802":7,"57803":1,"57804":5,"57805":5,"57806":3,"57807":7,"57808":3,"57809":9,"57810":3,"57811":7,"57812":8,"57813":8,"57814":7,"57815":4,"57816":9,"57817":8,"57818":5,"57819":5,"57820":9,"57821":1,"57822":8,"57823":2,"57824":5,"57825":7,"57826":7,"57827":7,"57828":1,"57829":8,"57830":8,"57831":7,"57832":6,"57833":9,"57834":7,"57835":9,"57836":6,"57837":8,"57838":8,"57839":3,"57840":6,"57841":7,"57842":7,"57843":7,"57844":7,"57845":9,"57846":2,"57847":7,"57848":5,"57849":8,"57850":7,"57851":5,"57852":8,"57853":7,"57854":8,"57855":8,"57856":9,"57857":8,"57858":7,"57859":2,"57860":5,"57861":9,"57862":2,"57863":7,"57864":2,"57865":4,"57866":2,"57867":8,"57868":3,"57869":1,"57870":6,"57871":8,"57872":4,"57873":8,"57874":7,"57875":5,"57876":5,"57877":10,"57878":7,"57879":8,"57880":8,"57881":10,"57882":9,"57883":9,"57884":7,"57885":7,"57886":7,"57887":9,"57888":9,"57889":2,"57890":8,"57891":7,"57892":5,"57893":8,"57894":3,"57895":8,"57896":6,"57897":9,"57898":7,"57899":1,"57900":9,"57901":8,"57902":9,"57903":9,"57904":2,"57905":1,"57906":4,"57907":6,"57908":2,"57909":1,"57910":7,"57911":9,"57912":1,"57913":2,"57914":2,"57915":1,"57916":8,"57917":5,"57918":10,"57919":1,"57920":8,"57921":7,"57922":6,"57923":7,"57924":10,"57925":7,"57926":8,"57927":9,"57928":2,"57929":7,"57930":7,"57931":8,"57932":9,"57933":5,"57934":7,"57935":5,"57936":2,"57937":9,"57938":8,"57939":8,"57940":3,"57941":2,"57942":8,"57943":7,"57944":3,"57945":4,"57946":8,"57947":7,"57948":2,"57949":8,"57950":2,"57951":2,"57952":7,"57953":9,"57954":3,"57955":7,"57956":4,"57957":9,"57958":10,"57959":9,"57960":7,"57961":9,"57962":7,"57963":2,"57964":1,"57965":9,"57966":7,"57967":10,"57968":1,"57969":10,"57970":8,"57971":7,"57972":5,"57973":6,"57974":10,"57975":6,"57976":2,"57977":9,"57978":9,"57979":3,"57980":10,"57981":1,"57982":8,"57983":9,"57984":7,"57985":6,"57986":9,"57987":7,"57988":9,"57989":7,"57990":5,"57991":5,"57992":8,"57993":6,"57994":8,"57995":10,"57996":8,"57997":4,"57998":7,"57999":3,"58000":10,"58001":7,"58002":8,"58003":8,"58004":7,"58005":7,"58006":8,"58007":8,"58008":7,"58009":5,"58010":2,"58011":9,"58012":10,"58013":2,"58014":5,"58015":7,"58016":8,"58017":2,"58018":9,"58019":8,"58020":2,"58021":7,"58022":9,"58023":10,"58024":10,"58025":7,"58026":8,"58027":2,"58028":7,"58029":9,"58030":8,"58031":10,"58032":9,"58033":7,"58034":7,"58035":7,"58036":2,"58037":3,"58038":2,"58039":2,"58040":5,"58041":7,"58042":9,"58043":8,"58044":8,"58045":2,"58046":5,"58047":7,"58048":4,"58049":2,"58050":5,"58051":2,"58052":7,"58053":9,"58054":5,"58055":9,"58056":3,"58057":7,"58058":6,"58059":4,"58060":8,"58061":1,"58062":5,"58063":10,"58064":3,"58065":7,"58066":8,"58067":10,"58068":2,"58069":5,"58070":5,"58071":7,"58072":9,"58073":10,"58074":8,"58075":2,"58076":9,"58077":7,"58078":9,"58079":7,"58080":7,"58081":6,"58082":7,"58083":7,"58084":5,"58085":8,"58086":3,"58087":2,"58088":8,"58089":7,"58090":5,"58091":5,"58092":7,"58093":5,"58094":5,"58095":9,"58096":9,"58097":6,"58098":5,"58099":5,"58100":10,"58101":7,"58102":5,"58103":8,"58104":2,"58105":4,"58106":5,"58107":1,"58108":8,"58109":5,"58110":9,"58111":9,"58112":8,"58113":8,"58114":9,"58115":5,"58116":9,"58117":9,"58118":9,"58119":8,"58120":2,"58121":7,"58122":1,"58123":8,"58124":5,"58125":9,"58126":4,"58127":9,"58128":10,"58129":5,"58130":8,"58131":8,"58132":9,"58133":4,"58134":7,"58135":9,"58136":8,"58137":6,"58138":9,"58139":2,"58140":9,"58141":2,"58142":2,"58143":7,"58144":5,"58145":8,"58146":9,"58147":9,"58148":9,"58149":5,"58150":9,"58151":2,"58152":7,"58153":8,"58154":7,"58155":4,"58156":5,"58157":9,"58158":7,"58159":7,"58160":8,"58161":7,"58162":7,"58163":7,"58164":7,"58165":7,"58166":4,"58167":7,"58168":7,"58169":7,"58170":9,"58171":9,"58172":1,"58173":3,"58174":6,"58175":8,"58176":2,"58177":5,"58178":8,"58179":2,"58180":6,"58181":8,"58182":9,"58183":8,"58184":10,"58185":7,"58186":6,"58187":8,"58188":8,"58189":7,"58190":10,"58191":2,"58192":2,"58193":6,"58194":8,"58195":8,"58196":9,"58197":1,"58198":9,"58199":9,"58200":8,"58201":8,"58202":9,"58203":6,"58204":5,"58205":3,"58206":1,"58207":7,"58208":6,"58209":10,"58210":8,"58211":2,"58212":5,"58213":7,"58214":5,"58215":5,"58216":8,"58217":7,"58218":9,"58219":3,"58220":5,"58221":1,"58222":5,"58223":8,"58224":5,"58225":9,"58226":9,"58227":2,"58228":5,"58229":7,"58230":8,"58231":8,"58232":5,"58233":1,"58234":7,"58235":7,"58236":8,"58237":5,"58238":6,"58239":7,"58240":6,"58241":2,"58242":2,"58243":9,"58244":4,"58245":8,"58246":9,"58247":8,"58248":5,"58249":6,"58250":7,"58251":9,"58252":8,"58253":6,"58254":5,"58255":7,"58256":4,"58257":9,"58258":2,"58259":2,"58260":8,"58261":8,"58262":8,"58263":2,"58264":10,"58265":8,"58266":4,"58267":3,"58268":6,"58269":9,"58270":7,"58271":9,"58272":5,"58273":2,"58274":7,"58275":8,"58276":3,"58277":8,"58278":7,"58279":2,"58280":2,"58281":8,"58282":7,"58283":10,"58284":4,"58285":7,"58286":6,"58287":7,"58288":3,"58289":4,"58290":6,"58291":2,"58292":7,"58293":3,"58294":7,"58295":10,"58296":7,"58297":9,"58298":3,"58299":9,"58300":4,"58301":7,"58302":1,"58303":8,"58304":5,"58305":9,"58306":10,"58307":5,"58308":9,"58309":8,"58310":3,"58311":7,"58312":4,"58313":1,"58314":7,"58315":7,"58316":4,"58317":9,"58318":4,"58319":8,"58320":2,"58321":7,"58322":8,"58323":9,"58324":5,"58325":8,"58326":8,"58327":8,"58328":7,"58329":8,"58330":6,"58331":3,"58332":1,"58333":9,"58334":5,"58335":5,"58336":5,"58337":9,"58338":8,"58339":9,"58340":1,"58341":2,"58342":7,"58343":2,"58344":4,"58345":7,"58346":6,"58347":9,"58348":8,"58349":9,"58350":10,"58351":7,"58352":10,"58353":9,"58354":8,"58355":8,"58356":8,"58357":8,"58358":3,"58359":9,"58360":10,"58361":8,"58362":5,"58363":9,"58364":2,"58365":5,"58366":8,"58367":6,"58368":4,"58369":8,"58370":7,"58371":7,"58372":7,"58373":2,"58374":7,"58375":5,"58376":5,"58377":7,"58378":9,"58379":2,"58380":7,"58381":8,"58382":4,"58383":6,"58384":10,"58385":7,"58386":3,"58387":5,"58388":8,"58389":2,"58390":9,"58391":1,"58392":9,"58393":9,"58394":5,"58395":8,"58396":2,"58397":4,"58398":3,"58399":6,"58400":4,"58401":9,"58402":9,"58403":8,"58404":7,"58405":3,"58406":7,"58407":8,"58408":8,"58409":7,"58410":8,"58411":2,"58412":3,"58413":9,"58414":4,"58415":8,"58416":2,"58417":9,"58418":8,"58419":9,"58420":6,"58421":6,"58422":8,"58423":2,"58424":6,"58425":5,"58426":9,"58427":6,"58428":3,"58429":8,"58430":6,"58431":5,"58432":10,"58433":2,"58434":7,"58435":7,"58436":7,"58437":8,"58438":1,"58439":9,"58440":5,"58441":9,"58442":7,"58443":7,"58444":5,"58445":9,"58446":9,"58447":10,"58448":3,"58449":6,"58450":8,"58451":6,"58452":7,"58453":5,"58454":1,"58455":8,"58456":8,"58457":10,"58458":9,"58459":9,"58460":9,"58461":9,"58462":8,"58463":3,"58464":7,"58465":7,"58466":7,"58467":10,"58468":1,"58469":7,"58470":8,"58471":2,"58472":7,"58473":6,"58474":1,"58475":9,"58476":10,"58477":7,"58478":8,"58479":3,"58480":9,"58481":8,"58482":6,"58483":7,"58484":5,"58485":8,"58486":7,"58487":3,"58488":1,"58489":10,"58490":2,"58491":2,"58492":7,"58493":7,"58494":9,"58495":9,"58496":6,"58497":8,"58498":9,"58499":2,"58500":8,"58501":7,"58502":7,"58503":8,"58504":9,"58505":2,"58506":7,"58507":9,"58508":3,"58509":4,"58510":4,"58511":2,"58512":8,"58513":8,"58514":2,"58515":2,"58516":2,"58517":8,"58518":2,"58519":9,"58520":9,"58521":7,"58522":8,"58523":2,"58524":7,"58525":4,"58526":7,"58527":7,"58528":1,"58529":10,"58530":7,"58531":5,"58532":4,"58533":7,"58534":6,"58535":8,"58536":4,"58537":5,"58538":9,"58539":4,"58540":2,"58541":7,"58542":3,"58543":9,"58544":2,"58545":5,"58546":6,"58547":7,"58548":7,"58549":8,"58550":9,"58551":7,"58552":7,"58553":7,"58554":2,"58555":9,"58556":6,"58557":3,"58558":9,"58559":2,"58560":9,"58561":9,"58562":7,"58563":7,"58564":9,"58565":6,"58566":10,"58567":5,"58568":7,"58569":9,"58570":7,"58571":1,"58572":8,"58573":7,"58574":8,"58575":2,"58576":9,"58577":2,"58578":6,"58579":3,"58580":7,"58581":8,"58582":8,"58583":5,"58584":8,"58585":1,"58586":3,"58587":1,"58588":2,"58589":5,"58590":4,"58591":8,"58592":7,"58593":2,"58594":6,"58595":10,"58596":1,"58597":2,"58598":3,"58599":7,"58600":9,"58601":9,"58602":2,"58603":7,"58604":7,"58605":7,"58606":5,"58607":9,"58608":6,"58609":4,"58610":7,"58611":3,"58612":5,"58613":7,"58614":8,"58615":8,"58616":7,"58617":2,"58618":9,"58619":3,"58620":10,"58621":10,"58622":1,"58623":5,"58624":8,"58625":7,"58626":7,"58627":8,"58628":8,"58629":8,"58630":1,"58631":7,"58632":7,"58633":5,"58634":7,"58635":2,"58636":6,"58637":5,"58638":10,"58639":9,"58640":10,"58641":10,"58642":7,"58643":4,"58644":7,"58645":7,"58646":8,"58647":9,"58648":4,"58649":1,"58650":6,"58651":8,"58652":4,"58653":7,"58654":9,"58655":9,"58656":7,"58657":1,"58658":9,"58659":5,"58660":9,"58661":7,"58662":8,"58663":6,"58664":7,"58665":9,"58666":9,"58667":9,"58668":8,"58669":9,"58670":8,"58671":7,"58672":6,"58673":2,"58674":8,"58675":2,"58676":1,"58677":9,"58678":7,"58679":7,"58680":9,"58681":3,"58682":3,"58683":8,"58684":8,"58685":7,"58686":5,"58687":7,"58688":7,"58689":3,"58690":7,"58691":7,"58692":2,"58693":2,"58694":8,"58695":6,"58696":7,"58697":2,"58698":5,"58699":7,"58700":7,"58701":8,"58702":4,"58703":9,"58704":7,"58705":7,"58706":4,"58707":8,"58708":7,"58709":5,"58710":7,"58711":2,"58712":1,"58713":6,"58714":10,"58715":5,"58716":5,"58717":8,"58718":10,"58719":7,"58720":8,"58721":8,"58722":9,"58723":1,"58724":10,"58725":8,"58726":3,"58727":7,"58728":9,"58729":4,"58730":8,"58731":2,"58732":2,"58733":2,"58734":8,"58735":8,"58736":3,"58737":7,"58738":5,"58739":7,"58740":8,"58741":7,"58742":5,"58743":8,"58744":5,"58745":6,"58746":7,"58747":7,"58748":8,"58749":9,"58750":7,"58751":7,"58752":8,"58753":9,"58754":8,"58755":10,"58756":8,"58757":8,"58758":1,"58759":7,"58760":7,"58761":9,"58762":9,"58763":7,"58764":7,"58765":10,"58766":3,"58767":1,"58768":8,"58769":7,"58770":6,"58771":7,"58772":7,"58773":9,"58774":7,"58775":8,"58776":8,"58777":6,"58778":7,"58779":7,"58780":8,"58781":7,"58782":7,"58783":9,"58784":8,"58785":8,"58786":5,"58787":3,"58788":8,"58789":9,"58790":2,"58791":7,"58792":8,"58793":3,"58794":9,"58795":7,"58796":8,"58797":1,"58798":3,"58799":7,"58800":9,"58801":5,"58802":7,"58803":5,"58804":8,"58805":9,"58806":3,"58807":1,"58808":8,"58809":7,"58810":7,"58811":7,"58812":9,"58813":8,"58814":3,"58815":3,"58816":9,"58817":8,"58818":7,"58819":9,"58820":6,"58821":10,"58822":7,"58823":7,"58824":3,"58825":3,"58826":7,"58827":2,"58828":10,"58829":2,"58830":4,"58831":7,"58832":8,"58833":10,"58834":8,"58835":3,"58836":7,"58837":8,"58838":8,"58839":9,"58840":4,"58841":3,"58842":10,"58843":2,"58844":8,"58845":3,"58846":2,"58847":7,"58848":7,"58849":8,"58850":7,"58851":3,"58852":5,"58853":5,"58854":2,"58855":5,"58856":7,"58857":8,"58858":4,"58859":7,"58860":7,"58861":7,"58862":2,"58863":8,"58864":7,"58865":8,"58866":8,"58867":1,"58868":2,"58869":7,"58870":2,"58871":8,"58872":9,"58873":9,"58874":3,"58875":6,"58876":7,"58877":9,"58878":9,"58879":4,"58880":8,"58881":1,"58882":3,"58883":8,"58884":5,"58885":5,"58886":9,"58887":7,"58888":7,"58889":7,"58890":8,"58891":7,"58892":9,"58893":3,"58894":8,"58895":8,"58896":9,"58897":10,"58898":9,"58899":4,"58900":8,"58901":2,"58902":6,"58903":4,"58904":6,"58905":6,"58906":6,"58907":5,"58908":8,"58909":7,"58910":2,"58911":7,"58912":2,"58913":2,"58914":7,"58915":8,"58916":6,"58917":8,"58918":9,"58919":2,"58920":2,"58921":7,"58922":7,"58923":7,"58924":2,"58925":7,"58926":8,"58927":5,"58928":4,"58929":7,"58930":8,"58931":8,"58932":9,"58933":2,"58934":8,"58935":7,"58936":8,"58937":9,"58938":10,"58939":9,"58940":10,"58941":7,"58942":9,"58943":5,"58944":7,"58945":9,"58946":6,"58947":9,"58948":2,"58949":4,"58950":5,"58951":2,"58952":9,"58953":1,"58954":7,"58955":4,"58956":1,"58957":8,"58958":4,"58959":6,"58960":4,"58961":4,"58962":3,"58963":6,"58964":10,"58965":8,"58966":7,"58967":10,"58968":9,"58969":10,"58970":8,"58971":7,"58972":7,"58973":7,"58974":2,"58975":3,"58976":9,"58977":10,"58978":9,"58979":7,"58980":1,"58981":4,"58982":5,"58983":7,"58984":1,"58985":9,"58986":8,"58987":5,"58988":10,"58989":2,"58990":9,"58991":9,"58992":9,"58993":1,"58994":8,"58995":7,"58996":2,"58997":9,"58998":9,"58999":7,"59000":7,"59001":8,"59002":2,"59003":5,"59004":9,"59005":8,"59006":9,"59007":9,"59008":4,"59009":7,"59010":6,"59011":7,"59012":9,"59013":3,"59014":4,"59015":4,"59016":8,"59017":7,"59018":7,"59019":7,"59020":8,"59021":10,"59022":8,"59023":7,"59024":2,"59025":7,"59026":7,"59027":8,"59028":5,"59029":7,"59030":7,"59031":5,"59032":7,"59033":7,"59034":2,"59035":3,"59036":2,"59037":7,"59038":1,"59039":6,"59040":7,"59041":2,"59042":7,"59043":7,"59044":7,"59045":1,"59046":5,"59047":8,"59048":2,"59049":9,"59050":10,"59051":8,"59052":9,"59053":8,"59054":2,"59055":1,"59056":7,"59057":5,"59058":10,"59059":7,"59060":4,"59061":1,"59062":9,"59063":8,"59064":8,"59065":7,"59066":2,"59067":2,"59068":9,"59069":3,"59070":6,"59071":4,"59072":8,"59073":6,"59074":7,"59075":10,"59076":8,"59077":7,"59078":8,"59079":1,"59080":10,"59081":8,"59082":7,"59083":8,"59084":5,"59085":7,"59086":7,"59087":8,"59088":7,"59089":9,"59090":9,"59091":3,"59092":4,"59093":9,"59094":9,"59095":7,"59096":7,"59097":8,"59098":2,"59099":2,"59100":7,"59101":8,"59102":6,"59103":8,"59104":7,"59105":9,"59106":2,"59107":7,"59108":8,"59109":9,"59110":7,"59111":4,"59112":7,"59113":7,"59114":9,"59115":3,"59116":3,"59117":7,"59118":9,"59119":2,"59120":7,"59121":6,"59122":8,"59123":9,"59124":1,"59125":2,"59126":10,"59127":1,"59128":1,"59129":8,"59130":7,"59131":6,"59132":9,"59133":8,"59134":9,"59135":7,"59136":1,"59137":6,"59138":1,"59139":4,"59140":8,"59141":9,"59142":2,"59143":10,"59144":8,"59145":9,"59146":7,"59147":8,"59148":10,"59149":9,"59150":9,"59151":5,"59152":2,"59153":8,"59154":10,"59155":9,"59156":10,"59157":4,"59158":8,"59159":5,"59160":9,"59161":3,"59162":9,"59163":10,"59164":2,"59165":8,"59166":10,"59167":6,"59168":7,"59169":6,"59170":8,"59171":5,"59172":1,"59173":7,"59174":7,"59175":10,"59176":3,"59177":2,"59178":2,"59179":7,"59180":7,"59181":8,"59182":7,"59183":3,"59184":5,"59185":2,"59186":8,"59187":5,"59188":9,"59189":4,"59190":3,"59191":10,"59192":1,"59193":3,"59194":5,"59195":2,"59196":7,"59197":8,"59198":8,"59199":8,"59200":10,"59201":9,"59202":8,"59203":5,"59204":9,"59205":9,"59206":7,"59207":7,"59208":9,"59209":7,"59210":9,"59211":5,"59212":8,"59213":4,"59214":1,"59215":7,"59216":7,"59217":7,"59218":7,"59219":9,"59220":5,"59221":9,"59222":9,"59223":7,"59224":1,"59225":8,"59226":8,"59227":8,"59228":8,"59229":5,"59230":5,"59231":5,"59232":8,"59233":8,"59234":6,"59235":1,"59236":4,"59237":8,"59238":3,"59239":7,"59240":9,"59241":7,"59242":3,"59243":9,"59244":4,"59245":2,"59246":9,"59247":3,"59248":9,"59249":7,"59250":5,"59251":1,"59252":6,"59253":8,"59254":7,"59255":4,"59256":8,"59257":8,"59258":5,"59259":7,"59260":4,"59261":7,"59262":8,"59263":9,"59264":10,"59265":7,"59266":2,"59267":7,"59268":7,"59269":9,"59270":3,"59271":7,"59272":8,"59273":9,"59274":8,"59275":7,"59276":10,"59277":1,"59278":9,"59279":8,"59280":2,"59281":5,"59282":7,"59283":9,"59284":8,"59285":9,"59286":8,"59287":8,"59288":8,"59289":4,"59290":9,"59291":9,"59292":9,"59293":8,"59294":8,"59295":8,"59296":4,"59297":7,"59298":10,"59299":4,"59300":9,"59301":5,"59302":1,"59303":2,"59304":10,"59305":5,"59306":9,"59307":6,"59308":1,"59309":8,"59310":5,"59311":9,"59312":10,"59313":9,"59314":8,"59315":7,"59316":7,"59317":2,"59318":9,"59319":4,"59320":5,"59321":8,"59322":7,"59323":5,"59324":5,"59325":1,"59326":5,"59327":7,"59328":1,"59329":2,"59330":8,"59331":9,"59332":5,"59333":3,"59334":9,"59335":5,"59336":10,"59337":5,"59338":8,"59339":2,"59340":7,"59341":1,"59342":2,"59343":1,"59344":7,"59345":8,"59346":5,"59347":6,"59348":9,"59349":7,"59350":4,"59351":2,"59352":8,"59353":7,"59354":5,"59355":7,"59356":8,"59357":4,"59358":9,"59359":9,"59360":2,"59361":7,"59362":8,"59363":5,"59364":9,"59365":4,"59366":7,"59367":9,"59368":5,"59369":9,"59370":7,"59371":9,"59372":3,"59373":2,"59374":7,"59375":5,"59376":5,"59377":9,"59378":2,"59379":4,"59380":8,"59381":6,"59382":7,"59383":10,"59384":8,"59385":2,"59386":2,"59387":9,"59388":7,"59389":3,"59390":8,"59391":2,"59392":7,"59393":8,"59394":2,"59395":7,"59396":8,"59397":9,"59398":6,"59399":1,"59400":2,"59401":8,"59402":8,"59403":9,"59404":9,"59405":9,"59406":9,"59407":7,"59408":5,"59409":4,"59410":9,"59411":7,"59412":4,"59413":8,"59414":9,"59415":7,"59416":7,"59417":6,"59418":8,"59419":8,"59420":2,"59421":6,"59422":7,"59423":7,"59424":10,"59425":7,"59426":5,"59427":9,"59428":7,"59429":3,"59430":7,"59431":8,"59432":10,"59433":4,"59434":2,"59435":5,"59436":7,"59437":9,"59438":8,"59439":10,"59440":2,"59441":9,"59442":9,"59443":8,"59444":6,"59445":2,"59446":7,"59447":9,"59448":2,"59449":8,"59450":8,"59451":7,"59452":8,"59453":8,"59454":5,"59455":8,"59456":10,"59457":7,"59458":8,"59459":8,"59460":3,"59461":5,"59462":5,"59463":2,"59464":9,"59465":6,"59466":7,"59467":5,"59468":4,"59469":6,"59470":5,"59471":9,"59472":1,"59473":6,"59474":7,"59475":7,"59476":8,"59477":7,"59478":2,"59479":4,"59480":9,"59481":5,"59482":8,"59483":9,"59484":3,"59485":9,"59486":8,"59487":8,"59488":9,"59489":7,"59490":2,"59491":9,"59492":10,"59493":2,"59494":7,"59495":10,"59496":3,"59497":1,"59498":9,"59499":5,"59500":5,"59501":8,"59502":6,"59503":8,"59504":9,"59505":3,"59506":3,"59507":8,"59508":7,"59509":7,"59510":6,"59511":9,"59512":5,"59513":3,"59514":9,"59515":7,"59516":6,"59517":9,"59518":1,"59519":8,"59520":7,"59521":9,"59522":9,"59523":9,"59524":7,"59525":7,"59526":4,"59527":8,"59528":8,"59529":6,"59530":7,"59531":3,"59532":4,"59533":7,"59534":8,"59535":8,"59536":2,"59537":7,"59538":6,"59539":8,"59540":7,"59541":8,"59542":7,"59543":2,"59544":1,"59545":5,"59546":8,"59547":5,"59548":2,"59549":9,"59550":7,"59551":4,"59552":8,"59553":8,"59554":2,"59555":7,"59556":3,"59557":2,"59558":9,"59559":5,"59560":8,"59561":4,"59562":9,"59563":6,"59564":7,"59565":4,"59566":7,"59567":10,"59568":7,"59569":9,"59570":4,"59571":5,"59572":6,"59573":9,"59574":10,"59575":7,"59576":9,"59577":7,"59578":3,"59579":6,"59580":1,"59581":8,"59582":4,"59583":5,"59584":6,"59585":7,"59586":7,"59587":5,"59588":7,"59589":8,"59590":9,"59591":8,"59592":9,"59593":5,"59594":5,"59595":8,"59596":5,"59597":5,"59598":2,"59599":2,"59600":2,"59601":7,"59602":9,"59603":1,"59604":6,"59605":9,"59606":2,"59607":8,"59608":8,"59609":8,"59610":2,"59611":7,"59612":9,"59613":7,"59614":6,"59615":9,"59616":3,"59617":6,"59618":7,"59619":3,"59620":8,"59621":8,"59622":2,"59623":7,"59624":7,"59625":6,"59626":3,"59627":6,"59628":8,"59629":4,"59630":7,"59631":5,"59632":7,"59633":3,"59634":8,"59635":7,"59636":7,"59637":2,"59638":9,"59639":4,"59640":7,"59641":8,"59642":9,"59643":9,"59644":1,"59645":7,"59646":10,"59647":9,"59648":5,"59649":8,"59650":8,"59651":7,"59652":2,"59653":9,"59654":4,"59655":8,"59656":9,"59657":1,"59658":9,"59659":9,"59660":9,"59661":1,"59662":2,"59663":2,"59664":2,"59665":5,"59666":1,"59667":8,"59668":7,"59669":8,"59670":6,"59671":10,"59672":5,"59673":5,"59674":6,"59675":3,"59676":3,"59677":8,"59678":2,"59679":6,"59680":8,"59681":8,"59682":5,"59683":8,"59684":8,"59685":10,"59686":8,"59687":7,"59688":2,"59689":8,"59690":8,"59691":3,"59692":5,"59693":9,"59694":7,"59695":4,"59696":3,"59697":7,"59698":1,"59699":7,"59700":7,"59701":2,"59702":9,"59703":5,"59704":10,"59705":7,"59706":7,"59707":2,"59708":7,"59709":2,"59710":10,"59711":4,"59712":9,"59713":8,"59714":9,"59715":10,"59716":8,"59717":7,"59718":8,"59719":10,"59720":6,"59721":7,"59722":5,"59723":4,"59724":7,"59725":4,"59726":7,"59727":4,"59728":7,"59729":2,"59730":9,"59731":8,"59732":7,"59733":2,"59734":4,"59735":8,"59736":6,"59737":2,"59738":5,"59739":7,"59740":9,"59741":5,"59742":8,"59743":7,"59744":9,"59745":9,"59746":9,"59747":8,"59748":5,"59749":8,"59750":6,"59751":7,"59752":9,"59753":5,"59754":8,"59755":9,"59756":2,"59757":8,"59758":7,"59759":3,"59760":9,"59761":8,"59762":3,"59763":4,"59764":9,"59765":8,"59766":2,"59767":7,"59768":7,"59769":5,"59770":7,"59771":7,"59772":10,"59773":7,"59774":8,"59775":3,"59776":6,"59777":9,"59778":9,"59779":8,"59780":10,"59781":5,"59782":9,"59783":3,"59784":9,"59785":5,"59786":8,"59787":8,"59788":7,"59789":7,"59790":7,"59791":7,"59792":9,"59793":3,"59794":10,"59795":9,"59796":9,"59797":7,"59798":1,"59799":8,"59800":4,"59801":3,"59802":8,"59803":9,"59804":9,"59805":2,"59806":7,"59807":10,"59808":7,"59809":7,"59810":2,"59811":6,"59812":1,"59813":5,"59814":1,"59815":8,"59816":7,"59817":3,"59818":5,"59819":7,"59820":1,"59821":7,"59822":10,"59823":7,"59824":8,"59825":6,"59826":9,"59827":9,"59828":9,"59829":7,"59830":8,"59831":9,"59832":7,"59833":5,"59834":7,"59835":5,"59836":3,"59837":6,"59838":5,"59839":8,"59840":2,"59841":10,"59842":8,"59843":3,"59844":4,"59845":10,"59846":5,"59847":8,"59848":3,"59849":5,"59850":1,"59851":9,"59852":9,"59853":9,"59854":3,"59855":9,"59856":7,"59857":1,"59858":7,"59859":7,"59860":7,"59861":7,"59862":8,"59863":3,"59864":8,"59865":6,"59866":10,"59867":8,"59868":7,"59869":10,"59870":5,"59871":7,"59872":4,"59873":8,"59874":1,"59875":8,"59876":8,"59877":9,"59878":5,"59879":8,"59880":3,"59881":9,"59882":1,"59883":10,"59884":7,"59885":7,"59886":1,"59887":9,"59888":8,"59889":2,"59890":8,"59891":9,"59892":5,"59893":5,"59894":6,"59895":8,"59896":9,"59897":9,"59898":10,"59899":2,"59900":8,"59901":1,"59902":3,"59903":8,"59904":7,"59905":8,"59906":8,"59907":9,"59908":4,"59909":1,"59910":2,"59911":8,"59912":8,"59913":9,"59914":10,"59915":5,"59916":1,"59917":2,"59918":8,"59919":7,"59920":8,"59921":9,"59922":4,"59923":10,"59924":5,"59925":8,"59926":7,"59927":5,"59928":2,"59929":3,"59930":8,"59931":4,"59932":8,"59933":7,"59934":9,"59935":2,"59936":10,"59937":6,"59938":9,"59939":7,"59940":7,"59941":7,"59942":9,"59943":9,"59944":3,"59945":8,"59946":5,"59947":9,"59948":7,"59949":7,"59950":9,"59951":3,"59952":7,"59953":3,"59954":2,"59955":8,"59956":9,"59957":7,"59958":9,"59959":9,"59960":1,"59961":8,"59962":7,"59963":3,"59964":7,"59965":5,"59966":10,"59967":9,"59968":7,"59969":6,"59970":2,"59971":7,"59972":7,"59973":7,"59974":2,"59975":8,"59976":6,"59977":9,"59978":10,"59979":9,"59980":2,"59981":2,"59982":9,"59983":8,"59984":2,"59985":2,"59986":10,"59987":9,"59988":7,"59989":5,"59990":7,"59991":4,"59992":8,"59993":1,"59994":7,"59995":8,"59996":4,"59997":1,"59998":10,"59999":2,"60000":8,"60001":7,"60002":9,"60003":3,"60004":3,"60005":6,"60006":4,"60007":8,"60008":8,"60009":7,"60010":5,"60011":1,"60012":8,"60013":10,"60014":8,"60015":7,"60016":10,"60017":9,"60018":5,"60019":7,"60020":8,"60021":8,"60022":2,"60023":7,"60024":8,"60025":8,"60026":10,"60027":5,"60028":7,"60029":5,"60030":9,"60031":7,"60032":9,"60033":1,"60034":7,"60035":8,"60036":7,"60037":7,"60038":4,"60039":2,"60040":2,"60041":8,"60042":10,"60043":7,"60044":5,"60045":9,"60046":8,"60047":8,"60048":2,"60049":7,"60050":4,"60051":2,"60052":6,"60053":3,"60054":5,"60055":7,"60056":7,"60057":7,"60058":9,"60059":8,"60060":6,"60061":5,"60062":10,"60063":4,"60064":5,"60065":7,"60066":2,"60067":8,"60068":9,"60069":5,"60070":8,"60071":8,"60072":5,"60073":6,"60074":8,"60075":8,"60076":5,"60077":9,"60078":5,"60079":2,"60080":7,"60081":8,"60082":6,"60083":7,"60084":3,"60085":1,"60086":9,"60087":2,"60088":9,"60089":5,"60090":7,"60091":7,"60092":10,"60093":2,"60094":2,"60095":8,"60096":9,"60097":5,"60098":2,"60099":6,"60100":2,"60101":7,"60102":3,"60103":7,"60104":7,"60105":5,"60106":7,"60107":9,"60108":8,"60109":7,"60110":7,"60111":9,"60112":1,"60113":9,"60114":6,"60115":2,"60116":7,"60117":7,"60118":7,"60119":2,"60120":7,"60121":4,"60122":9,"60123":2,"60124":7,"60125":7,"60126":7,"60127":8,"60128":3,"60129":9,"60130":9,"60131":5,"60132":2,"60133":2,"60134":8,"60135":7,"60136":2,"60137":4,"60138":7,"60139":8,"60140":10,"60141":7,"60142":9,"60143":1,"60144":8,"60145":9,"60146":5,"60147":3,"60148":8,"60149":2,"60150":2,"60151":5,"60152":5,"60153":8,"60154":7,"60155":8,"60156":8,"60157":7,"60158":5,"60159":3,"60160":3,"60161":9,"60162":1,"60163":8,"60164":7,"60165":2,"60166":10,"60167":4,"60168":8,"60169":10,"60170":1,"60171":5,"60172":2,"60173":10,"60174":7,"60175":7,"60176":7,"60177":6,"60178":9,"60179":1,"60180":10,"60181":8,"60182":6,"60183":7,"60184":10,"60185":5,"60186":5,"60187":8,"60188":8,"60189":5,"60190":5,"60191":9,"60192":10,"60193":5,"60194":4,"60195":9,"60196":7,"60197":9,"60198":4,"60199":2,"60200":4,"60201":10,"60202":9,"60203":7,"60204":9,"60205":2,"60206":9,"60207":4,"60208":5,"60209":2,"60210":7,"60211":7,"60212":3,"60213":6,"60214":6,"60215":7,"60216":7,"60217":7,"60218":7,"60219":2,"60220":7,"60221":7,"60222":9,"60223":2,"60224":9,"60225":1,"60226":8,"60227":7,"60228":2,"60229":2,"60230":3,"60231":7,"60232":9,"60233":4,"60234":8,"60235":10,"60236":7,"60237":10,"60238":7,"60239":7,"60240":9,"60241":10,"60242":8,"60243":9,"60244":1,"60245":7,"60246":2,"60247":8,"60248":1,"60249":4,"60250":7,"60251":8,"60252":5,"60253":7,"60254":9,"60255":8,"60256":1,"60257":5,"60258":5,"60259":4,"60260":7,"60261":1,"60262":8,"60263":7,"60264":3,"60265":2,"60266":9,"60267":8,"60268":5,"60269":8,"60270":9,"60271":7,"60272":4,"60273":3,"60274":7,"60275":7,"60276":9,"60277":9,"60278":7,"60279":7,"60280":7,"60281":10,"60282":9,"60283":8,"60284":6,"60285":2,"60286":7,"60287":7,"60288":7,"60289":5,"60290":7,"60291":3,"60292":7,"60293":2,"60294":7,"60295":7,"60296":10,"60297":5,"60298":7,"60299":3,"60300":5,"60301":9,"60302":2,"60303":8,"60304":7,"60305":10,"60306":8,"60307":2,"60308":7,"60309":8,"60310":9,"60311":8,"60312":8,"60313":9,"60314":4,"60315":3,"60316":8,"60317":9,"60318":8,"60319":9,"60320":8,"60321":2,"60322":8,"60323":7,"60324":2,"60325":7,"60326":4,"60327":8,"60328":8,"60329":7,"60330":7,"60331":2,"60332":8,"60333":9,"60334":4,"60335":7,"60336":8,"60337":8,"60338":2,"60339":8,"60340":7,"60341":4,"60342":7,"60343":5,"60344":6,"60345":9,"60346":1,"60347":5,"60348":9,"60349":8,"60350":2,"60351":1,"60352":9,"60353":9,"60354":8,"60355":5,"60356":3,"60357":5,"60358":3,"60359":4,"60360":4,"60361":7,"60362":8,"60363":3,"60364":4,"60365":5,"60366":9,"60367":2,"60368":9,"60369":5,"60370":7,"60371":5,"60372":7,"60373":8,"60374":3,"60375":7,"60376":7,"60377":9,"60378":9,"60379":3,"60380":2,"60381":8,"60382":9,"60383":7,"60384":9,"60385":6,"60386":8,"60387":9,"60388":9,"60389":5,"60390":7,"60391":7,"60392":7,"60393":1,"60394":7,"60395":3,"60396":8,"60397":2,"60398":3,"60399":7,"60400":4,"60401":3,"60402":5,"60403":7,"60404":5,"60405":6,"60406":4,"60407":2,"60408":8,"60409":1,"60410":4,"60411":9,"60412":8,"60413":7,"60414":8,"60415":8,"60416":7,"60417":9,"60418":3,"60419":3,"60420":9,"60421":2,"60422":10,"60423":8,"60424":8,"60425":5,"60426":5,"60427":8,"60428":2,"60429":9,"60430":2,"60431":1,"60432":5,"60433":7,"60434":9,"60435":5,"60436":6,"60437":9,"60438":9,"60439":2,"60440":5,"60441":8,"60442":7,"60443":4,"60444":8,"60445":2,"60446":8,"60447":8,"60448":9,"60449":8,"60450":8,"60451":9,"60452":1,"60453":9,"60454":9,"60455":1,"60456":7,"60457":7,"60458":2,"60459":4,"60460":5,"60461":8,"60462":6,"60463":2,"60464":8,"60465":2,"60466":8,"60467":10,"60468":6,"60469":7,"60470":5,"60471":8,"60472":8,"60473":8,"60474":7,"60475":10,"60476":2,"60477":9,"60478":8,"60479":9,"60480":6,"60481":9,"60482":5,"60483":9,"60484":4,"60485":9,"60486":1,"60487":8,"60488":8,"60489":2,"60490":6,"60491":4,"60492":2,"60493":8,"60494":8,"60495":8,"60496":3,"60497":7,"60498":2,"60499":8,"60500":7,"60501":2,"60502":3,"60503":10,"60504":2,"60505":1,"60506":7,"60507":2,"60508":6,"60509":8,"60510":4,"60511":7,"60512":3,"60513":6,"60514":1,"60515":5,"60516":8,"60517":9,"60518":8,"60519":1,"60520":2,"60521":5,"60522":6,"60523":1,"60524":6,"60525":7,"60526":2,"60527":2,"60528":8,"60529":9,"60530":8,"60531":3,"60532":9,"60533":8,"60534":7,"60535":8,"60536":2,"60537":8,"60538":3,"60539":3,"60540":7,"60541":5,"60542":8,"60543":4,"60544":4,"60545":8,"60546":7,"60547":7,"60548":5,"60549":7,"60550":1,"60551":3,"60552":5,"60553":7,"60554":7,"60555":7,"60556":1,"60557":3,"60558":8,"60559":7,"60560":9,"60561":9,"60562":7,"60563":5,"60564":4,"60565":7,"60566":7,"60567":8,"60568":7,"60569":8,"60570":5,"60571":9,"60572":9,"60573":5,"60574":5,"60575":9,"60576":8,"60577":4,"60578":7,"60579":6,"60580":8,"60581":8,"60582":8,"60583":8,"60584":9,"60585":8,"60586":8,"60587":7,"60588":7,"60589":9,"60590":7,"60591":6,"60592":9,"60593":3,"60594":5,"60595":4,"60596":7,"60597":5,"60598":5,"60599":5,"60600":5,"60601":1,"60602":7,"60603":5,"60604":9,"60605":10,"60606":6,"60607":6,"60608":7,"60609":7,"60610":8,"60611":5,"60612":6,"60613":2,"60614":6,"60615":9,"60616":1,"60617":3,"60618":2,"60619":7,"60620":10,"60621":8,"60622":7,"60623":8,"60624":8,"60625":7,"60626":1,"60627":9,"60628":8,"60629":5,"60630":8,"60631":1,"60632":8,"60633":8,"60634":8,"60635":7,"60636":2,"60637":5,"60638":5,"60639":8,"60640":6,"60641":8,"60642":10,"60643":10,"60644":9,"60645":8,"60646":2,"60647":5,"60648":7,"60649":4,"60650":10,"60651":7,"60652":6,"60653":7,"60654":8,"60655":6,"60656":7,"60657":7,"60658":10,"60659":7,"60660":4,"60661":8,"60662":5,"60663":1,"60664":9,"60665":1,"60666":5,"60667":4,"60668":8,"60669":7,"60670":8,"60671":4,"60672":9,"60673":7,"60674":9,"60675":5,"60676":3,"60677":5,"60678":7,"60679":9,"60680":8,"60681":8,"60682":4,"60683":7,"60684":10,"60685":7,"60686":7,"60687":2,"60688":5,"60689":1,"60690":2,"60691":8,"60692":5,"60693":6,"60694":1,"60695":9,"60696":2,"60697":8,"60698":7,"60699":6,"60700":8,"60701":2,"60702":9,"60703":5,"60704":7,"60705":2,"60706":8,"60707":7,"60708":1,"60709":9,"60710":3,"60711":7,"60712":7,"60713":8,"60714":7,"60715":8,"60716":3,"60717":2,"60718":10,"60719":6,"60720":9,"60721":8,"60722":5,"60723":9,"60724":7,"60725":9,"60726":1,"60727":7,"60728":9,"60729":10,"60730":2,"60731":7,"60732":1,"60733":8,"60734":9,"60735":4,"60736":8,"60737":5,"60738":9,"60739":8,"60740":8,"60741":5,"60742":3,"60743":2,"60744":2,"60745":10,"60746":5,"60747":10,"60748":8,"60749":8,"60750":3,"60751":6,"60752":3,"60753":5,"60754":8,"60755":9,"60756":10,"60757":8,"60758":5,"60759":10,"60760":8,"60761":9,"60762":3,"60763":7,"60764":2,"60765":2,"60766":9,"60767":7,"60768":8,"60769":7,"60770":5,"60771":9,"60772":2,"60773":5,"60774":10,"60775":3,"60776":4,"60777":7,"60778":3,"60779":10,"60780":8,"60781":7,"60782":9,"60783":6,"60784":8,"60785":7,"60786":2,"60787":8,"60788":6,"60789":2,"60790":10,"60791":8,"60792":9,"60793":8,"60794":3,"60795":2,"60796":4,"60797":3,"60798":9,"60799":7,"60800":9,"60801":7,"60802":9,"60803":5,"60804":5,"60805":9,"60806":9,"60807":7,"60808":8,"60809":5,"60810":7,"60811":2,"60812":4,"60813":1,"60814":2,"60815":2,"60816":8,"60817":9,"60818":9,"60819":4,"60820":9,"60821":8,"60822":8,"60823":7,"60824":8,"60825":5,"60826":7,"60827":2,"60828":7,"60829":2,"60830":1,"60831":7,"60832":4,"60833":4,"60834":7,"60835":4,"60836":6,"60837":1,"60838":8,"60839":9,"60840":2,"60841":5,"60842":9,"60843":8,"60844":2,"60845":4,"60846":2,"60847":10,"60848":7,"60849":7,"60850":6,"60851":7,"60852":7,"60853":7,"60854":9,"60855":8,"60856":7,"60857":6,"60858":3,"60859":7,"60860":7,"60861":7,"60862":7,"60863":10,"60864":5,"60865":8,"60866":2,"60867":7,"60868":1,"60869":8,"60870":7,"60871":8,"60872":4,"60873":2,"60874":6,"60875":4,"60876":8,"60877":7,"60878":8,"60879":3,"60880":6,"60881":2,"60882":2,"60883":5,"60884":8,"60885":8,"60886":5,"60887":7,"60888":6,"60889":3,"60890":7,"60891":7,"60892":2,"60893":5,"60894":7,"60895":8,"60896":2,"60897":8,"60898":7,"60899":3,"60900":1,"60901":9,"60902":4,"60903":5},"eduattstat":{"0":1,"1":1,"2":3,"3":3,"4":1,"5":4,"6":4,"7":3,"8":4,"9":2,"10":4,"11":3,"12":2,"13":1,"14":3,"15":5,"16":2,"17":2,"18":4,"19":3,"20":2,"21":5,"22":4,"23":3,"24":3,"25":4,"26":2,"27":2,"28":3,"29":3,"30":2,"31":4,"32":4,"33":4,"34":2,"35":3,"36":3,"37":2,"38":4,"39":4,"40":4,"41":3,"42":3,"43":1,"44":3,"45":3,"46":2,"47":4,"48":4,"49":4,"50":3,"51":2,"52":2,"53":4,"54":3,"55":3,"56":4,"57":2,"58":4,"59":3,"60":1,"61":2,"62":3,"63":3,"64":2,"65":1,"66":1,"67":3,"68":4,"69":2,"70":3,"71":3,"72":4,"73":3,"74":2,"75":3,"76":3,"77":2,"78":5,"79":3,"80":2,"81":5,"82":3,"83":3,"84":2,"85":1,"86":3,"87":3,"88":2,"89":4,"90":5,"91":1,"92":5,"93":5,"94":2,"95":1,"96":5,"97":5,"98":3,"99":3,"100":5,"101":2,"102":2,"103":2,"104":5,"105":1,"106":1,"107":4,"108":1,"109":3,"110":3,"111":1,"112":4,"113":2,"114":4,"115":3,"116":4,"117":3,"118":4,"119":3,"120":2,"121":3,"122":2,"123":3,"124":3,"125":2,"126":2,"127":1,"128":3,"129":2,"130":3,"131":2,"132":5,"133":2,"134":2,"135":2,"136":4,"137":3,"138":1,"139":4,"140":3,"141":3,"142":3,"143":1,"144":3,"145":2,"146":2,"147":3,"148":4,"149":2,"150":4,"151":2,"152":3,"153":4,"154":2,"155":2,"156":4,"157":5,"158":4,"159":3,"160":1,"161":3,"162":4,"163":4,"164":3,"165":4,"166":3,"167":3,"168":5,"169":1,"170":3,"171":2,"172":3,"173":2,"174":4,"175":3,"176":2,"177":3,"178":3,"179":2,"180":4,"181":2,"182":4,"183":4,"184":2,"185":2,"186":4,"187":3,"188":2,"189":1,"190":4,"191":1,"192":2,"193":5,"194":4,"195":4,"196":3,"197":3,"198":4,"199":2,"200":2,"201":3,"202":2,"203":1,"204":3,"205":5,"206":2,"207":4,"208":4,"209":3,"210":3,"211":3,"212":3,"213":1,"214":3,"215":3,"216":1,"217":2,"218":3,"219":2,"220":3,"221":2,"222":3,"223":2,"224":1,"225":1,"226":5,"227":3,"228":3,"229":3,"230":1,"231":2,"232":3,"233":2,"234":4,"235":1,"236":2,"237":2,"238":4,"239":5,"240":5,"241":1,"242":5,"243":4,"244":4,"245":3,"246":3,"247":2,"248":4,"249":4,"250":3,"251":3,"252":2,"253":2,"254":4,"255":2,"256":1,"257":2,"258":1,"259":2,"260":2,"261":3,"262":2,"263":4,"264":1,"265":2,"266":2,"267":4,"268":5,"269":3,"270":3,"271":3,"272":3,"273":3,"274":4,"275":4,"276":2,"277":4,"278":3,"279":3,"280":4,"281":3,"282":1,"283":4,"284":3,"285":4,"286":5,"287":3,"288":3,"289":5,"290":2,"291":1,"292":1,"293":1,"294":3,"295":3,"296":4,"297":3,"298":2,"299":4,"300":3,"301":5,"302":3,"303":3,"304":2,"305":4,"306":4,"307":3,"308":3,"309":5,"310":3,"311":2,"312":3,"313":3,"314":1,"315":3,"316":3,"317":3,"318":2,"319":2,"320":1,"321":4,"322":2,"323":4,"324":3,"325":3,"326":2,"327":3,"328":2,"329":3,"330":4,"331":3,"332":3,"333":3,"334":4,"335":3,"336":3,"337":2,"338":4,"339":3,"340":3,"341":5,"342":3,"343":2,"344":4,"345":2,"346":2,"347":4,"348":1,"349":3,"350":1,"351":1,"352":3,"353":4,"354":5,"355":3,"356":5,"357":3,"358":3,"359":2,"360":2,"361":3,"362":3,"363":2,"364":5,"365":2,"366":2,"367":2,"368":1,"369":2,"370":4,"371":3,"372":3,"373":3,"374":3,"375":4,"376":4,"377":3,"378":5,"379":1,"380":3,"381":1,"382":3,"383":3,"384":2,"385":3,"386":3,"387":4,"388":2,"389":3,"390":2,"391":4,"392":1,"393":1,"394":3,"395":2,"396":5,"397":4,"398":1,"399":1,"400":3,"401":2,"402":5,"403":2,"404":3,"405":3,"406":2,"407":3,"408":4,"409":3,"410":3,"411":1,"412":2,"413":2,"414":4,"415":1,"416":3,"417":4,"418":3,"419":1,"420":3,"421":3,"422":4,"423":3,"424":5,"425":4,"426":4,"427":2,"428":2,"429":4,"430":3,"431":1,"432":4,"433":5,"434":3,"435":2,"436":1,"437":2,"438":3,"439":4,"440":2,"441":3,"442":2,"443":4,"444":5,"445":5,"446":2,"447":4,"448":2,"449":1,"450":3,"451":1,"452":4,"453":3,"454":5,"455":3,"456":4,"457":3,"458":3,"459":4,"460":3,"461":4,"462":2,"463":3,"464":5,"465":3,"466":2,"467":3,"468":2,"469":4,"470":3,"471":4,"472":2,"473":2,"474":2,"475":5,"476":5,"477":2,"478":3,"479":4,"480":2,"481":2,"482":4,"483":4,"484":5,"485":3,"486":1,"487":3,"488":4,"489":1,"490":3,"491":4,"492":3,"493":4,"494":3,"495":3,"496":2,"497":4,"498":5,"499":3,"500":1,"501":1,"502":4,"503":3,"504":2,"505":3,"506":1,"507":3,"508":2,"509":2,"510":4,"511":3,"512":2,"513":5,"514":3,"515":2,"516":1,"517":3,"518":2,"519":1,"520":4,"521":5,"522":1,"523":2,"524":3,"525":2,"526":4,"527":5,"528":3,"529":3,"530":4,"531":3,"532":5,"533":3,"534":2,"535":4,"536":2,"537":3,"538":2,"539":2,"540":1,"541":3,"542":4,"543":3,"544":3,"545":3,"546":3,"547":5,"548":3,"549":2,"550":3,"551":4,"552":2,"553":4,"554":2,"555":2,"556":3,"557":5,"558":4,"559":4,"560":3,"561":5,"562":2,"563":2,"564":1,"565":5,"566":2,"567":3,"568":3,"569":5,"570":4,"571":4,"572":4,"573":1,"574":2,"575":2,"576":3,"577":3,"578":4,"579":2,"580":3,"581":4,"582":5,"583":3,"584":4,"585":2,"586":5,"587":4,"588":3,"589":4,"590":3,"591":2,"592":4,"593":4,"594":2,"595":2,"596":3,"597":1,"598":3,"599":3,"600":2,"601":3,"602":4,"603":1,"604":3,"605":3,"606":5,"607":3,"608":3,"609":1,"610":3,"611":4,"612":4,"613":3,"614":3,"615":3,"616":3,"617":2,"618":5,"619":1,"620":2,"621":1,"622":1,"623":2,"624":3,"625":4,"626":3,"627":5,"628":2,"629":4,"630":3,"631":3,"632":4,"633":3,"634":5,"635":4,"636":4,"637":2,"638":3,"639":3,"640":1,"641":4,"642":2,"643":4,"644":1,"645":4,"646":3,"647":5,"648":4,"649":4,"650":4,"651":4,"652":2,"653":3,"654":5,"655":5,"656":3,"657":3,"658":2,"659":4,"660":2,"661":3,"662":2,"663":4,"664":3,"665":4,"666":3,"667":2,"668":3,"669":3,"670":1,"671":1,"672":3,"673":3,"674":3,"675":2,"676":5,"677":2,"678":3,"679":3,"680":3,"681":3,"682":3,"683":1,"684":2,"685":4,"686":2,"687":2,"688":1,"689":2,"690":3,"691":1,"692":3,"693":3,"694":4,"695":2,"696":3,"697":4,"698":4,"699":2,"700":5,"701":4,"702":1,"703":4,"704":3,"705":4,"706":3,"707":4,"708":3,"709":2,"710":3,"711":4,"712":2,"713":3,"714":4,"715":3,"716":4,"717":1,"718":3,"719":1,"720":1,"721":2,"722":4,"723":5,"724":3,"725":2,"726":2,"727":4,"728":3,"729":3,"730":3,"731":4,"732":3,"733":2,"734":3,"735":2,"736":5,"737":3,"738":3,"739":3,"740":2,"741":2,"742":5,"743":3,"744":2,"745":5,"746":5,"747":3,"748":5,"749":4,"750":3,"751":3,"752":4,"753":2,"754":2,"755":5,"756":4,"757":2,"758":3,"759":3,"760":5,"761":3,"762":3,"763":4,"764":3,"765":4,"766":3,"767":3,"768":3,"769":3,"770":2,"771":3,"772":5,"773":5,"774":4,"775":2,"776":3,"777":3,"778":3,"779":4,"780":3,"781":2,"782":2,"783":3,"784":3,"785":3,"786":3,"787":4,"788":5,"789":3,"790":4,"791":4,"792":4,"793":1,"794":3,"795":1,"796":2,"797":5,"798":4,"799":1,"800":2,"801":4,"802":3,"803":2,"804":3,"805":1,"806":2,"807":3,"808":4,"809":2,"810":4,"811":4,"812":3,"813":3,"814":3,"815":3,"816":3,"817":3,"818":2,"819":2,"820":4,"821":3,"822":3,"823":1,"824":1,"825":4,"826":5,"827":3,"828":2,"829":3,"830":2,"831":2,"832":3,"833":4,"834":3,"835":3,"836":5,"837":3,"838":3,"839":1,"840":3,"841":3,"842":1,"843":3,"844":2,"845":4,"846":5,"847":4,"848":4,"849":2,"850":4,"851":2,"852":4,"853":3,"854":5,"855":2,"856":1,"857":3,"858":2,"859":3,"860":4,"861":2,"862":3,"863":3,"864":4,"865":4,"866":4,"867":3,"868":3,"869":4,"870":3,"871":4,"872":4,"873":3,"874":5,"875":4,"876":3,"877":3,"878":3,"879":4,"880":4,"881":3,"882":4,"883":4,"884":3,"885":3,"886":4,"887":4,"888":4,"889":1,"890":4,"891":1,"892":2,"893":3,"894":3,"895":4,"896":3,"897":4,"898":3,"899":1,"900":4,"901":2,"902":3,"903":4,"904":4,"905":4,"906":3,"907":3,"908":3,"909":2,"910":5,"911":3,"912":4,"913":2,"914":4,"915":4,"916":1,"917":2,"918":4,"919":3,"920":1,"921":3,"922":3,"923":3,"924":2,"925":1,"926":2,"927":4,"928":3,"929":1,"930":5,"931":4,"932":3,"933":3,"934":5,"935":1,"936":3,"937":2,"938":4,"939":3,"940":2,"941":2,"942":2,"943":2,"944":3,"945":4,"946":5,"947":2,"948":3,"949":5,"950":1,"951":3,"952":3,"953":4,"954":3,"955":2,"956":3,"957":3,"958":1,"959":3,"960":3,"961":4,"962":1,"963":5,"964":2,"965":5,"966":4,"967":2,"968":4,"969":3,"970":4,"971":4,"972":3,"973":5,"974":2,"975":4,"976":3,"977":4,"978":3,"979":2,"980":4,"981":3,"982":2,"983":3,"984":5,"985":4,"986":3,"987":4,"988":3,"989":2,"990":3,"991":3,"992":2,"993":3,"994":3,"995":3,"996":1,"997":4,"998":2,"999":4,"1000":4,"1001":2,"1002":1,"1003":3,"1004":3,"1005":3,"1006":3,"1007":5,"1008":2,"1009":4,"1010":3,"1011":3,"1012":2,"1013":1,"1014":5,"1015":2,"1016":3,"1017":2,"1018":3,"1019":5,"1020":3,"1021":4,"1022":3,"1023":5,"1024":1,"1025":3,"1026":4,"1027":1,"1028":3,"1029":5,"1030":3,"1031":2,"1032":3,"1033":3,"1034":1,"1035":5,"1036":3,"1037":3,"1038":1,"1039":4,"1040":3,"1041":5,"1042":2,"1043":3,"1044":4,"1045":5,"1046":3,"1047":3,"1048":1,"1049":1,"1050":4,"1051":4,"1052":2,"1053":2,"1054":5,"1055":2,"1056":3,"1057":3,"1058":4,"1059":3,"1060":3,"1061":3,"1062":3,"1063":1,"1064":3,"1065":3,"1066":4,"1067":4,"1068":3,"1069":3,"1070":4,"1071":3,"1072":2,"1073":4,"1074":3,"1075":3,"1076":1,"1077":3,"1078":4,"1079":1,"1080":1,"1081":4,"1082":4,"1083":3,"1084":4,"1085":3,"1086":1,"1087":3,"1088":2,"1089":3,"1090":3,"1091":4,"1092":2,"1093":5,"1094":1,"1095":2,"1096":4,"1097":4,"1098":1,"1099":2,"1100":1,"1101":2,"1102":1,"1103":4,"1104":3,"1105":1,"1106":3,"1107":3,"1108":4,"1109":3,"1110":2,"1111":3,"1112":3,"1113":3,"1114":4,"1115":3,"1116":3,"1117":3,"1118":4,"1119":4,"1120":2,"1121":3,"1122":2,"1123":5,"1124":3,"1125":5,"1126":5,"1127":1,"1128":3,"1129":3,"1130":2,"1131":1,"1132":3,"1133":3,"1134":2,"1135":2,"1136":2,"1137":5,"1138":3,"1139":3,"1140":3,"1141":1,"1142":2,"1143":2,"1144":2,"1145":3,"1146":4,"1147":3,"1148":4,"1149":1,"1150":1,"1151":1,"1152":2,"1153":4,"1154":4,"1155":4,"1156":5,"1157":4,"1158":3,"1159":1,"1160":3,"1161":2,"1162":2,"1163":1,"1164":3,"1165":2,"1166":3,"1167":1,"1168":2,"1169":4,"1170":2,"1171":5,"1172":4,"1173":3,"1174":3,"1175":5,"1176":2,"1177":5,"1178":1,"1179":4,"1180":2,"1181":5,"1182":1,"1183":2,"1184":2,"1185":4,"1186":2,"1187":3,"1188":4,"1189":2,"1190":1,"1191":3,"1192":3,"1193":4,"1194":2,"1195":4,"1196":4,"1197":3,"1198":2,"1199":2,"1200":4,"1201":3,"1202":2,"1203":4,"1204":3,"1205":1,"1206":1,"1207":5,"1208":3,"1209":1,"1210":3,"1211":1,"1212":4,"1213":5,"1214":4,"1215":3,"1216":2,"1217":4,"1218":5,"1219":3,"1220":4,"1221":2,"1222":4,"1223":4,"1224":3,"1225":4,"1226":4,"1227":3,"1228":2,"1229":2,"1230":3,"1231":2,"1232":4,"1233":3,"1234":1,"1235":3,"1236":1,"1237":3,"1238":5,"1239":2,"1240":4,"1241":4,"1242":2,"1243":3,"1244":3,"1245":2,"1246":4,"1247":4,"1248":3,"1249":3,"1250":3,"1251":3,"1252":2,"1253":1,"1254":2,"1255":4,"1256":2,"1257":1,"1258":3,"1259":5,"1260":4,"1261":1,"1262":2,"1263":4,"1264":5,"1265":3,"1266":3,"1267":4,"1268":3,"1269":3,"1270":4,"1271":5,"1272":3,"1273":3,"1274":1,"1275":3,"1276":3,"1277":5,"1278":4,"1279":3,"1280":5,"1281":3,"1282":4,"1283":2,"1284":3,"1285":4,"1286":3,"1287":2,"1288":2,"1289":3,"1290":3,"1291":1,"1292":4,"1293":2,"1294":4,"1295":4,"1296":4,"1297":3,"1298":4,"1299":3,"1300":3,"1301":5,"1302":3,"1303":4,"1304":1,"1305":3,"1306":2,"1307":3,"1308":3,"1309":2,"1310":4,"1311":3,"1312":3,"1313":1,"1314":3,"1315":2,"1316":2,"1317":5,"1318":3,"1319":3,"1320":5,"1321":2,"1322":4,"1323":3,"1324":1,"1325":4,"1326":2,"1327":3,"1328":4,"1329":3,"1330":5,"1331":3,"1332":4,"1333":2,"1334":5,"1335":1,"1336":2,"1337":3,"1338":2,"1339":3,"1340":1,"1341":2,"1342":5,"1343":3,"1344":3,"1345":5,"1346":1,"1347":3,"1348":3,"1349":3,"1350":3,"1351":2,"1352":3,"1353":4,"1354":2,"1355":5,"1356":3,"1357":2,"1358":3,"1359":3,"1360":3,"1361":3,"1362":3,"1363":4,"1364":4,"1365":4,"1366":5,"1367":3,"1368":3,"1369":4,"1370":3,"1371":3,"1372":1,"1373":4,"1374":4,"1375":4,"1376":4,"1377":3,"1378":3,"1379":2,"1380":3,"1381":3,"1382":1,"1383":2,"1384":3,"1385":3,"1386":2,"1387":2,"1388":3,"1389":2,"1390":1,"1391":2,"1392":4,"1393":2,"1394":4,"1395":5,"1396":2,"1397":1,"1398":4,"1399":3,"1400":3,"1401":4,"1402":3,"1403":3,"1404":2,"1405":3,"1406":4,"1407":1,"1408":2,"1409":4,"1410":4,"1411":4,"1412":4,"1413":2,"1414":3,"1415":4,"1416":5,"1417":4,"1418":5,"1419":4,"1420":4,"1421":4,"1422":4,"1423":3,"1424":4,"1425":1,"1426":3,"1427":2,"1428":3,"1429":3,"1430":3,"1431":5,"1432":2,"1433":2,"1434":4,"1435":3,"1436":1,"1437":2,"1438":3,"1439":5,"1440":3,"1441":3,"1442":4,"1443":5,"1444":1,"1445":3,"1446":5,"1447":2,"1448":4,"1449":5,"1450":4,"1451":3,"1452":1,"1453":4,"1454":3,"1455":1,"1456":2,"1457":4,"1458":3,"1459":3,"1460":2,"1461":4,"1462":5,"1463":3,"1464":3,"1465":2,"1466":4,"1467":3,"1468":2,"1469":2,"1470":1,"1471":3,"1472":3,"1473":3,"1474":1,"1475":3,"1476":2,"1477":3,"1478":3,"1479":2,"1480":2,"1481":1,"1482":4,"1483":4,"1484":3,"1485":3,"1486":2,"1487":5,"1488":4,"1489":2,"1490":2,"1491":4,"1492":3,"1493":5,"1494":1,"1495":3,"1496":4,"1497":3,"1498":2,"1499":4,"1500":2,"1501":4,"1502":4,"1503":3,"1504":3,"1505":3,"1506":2,"1507":3,"1508":4,"1509":2,"1510":2,"1511":3,"1512":3,"1513":5,"1514":4,"1515":4,"1516":4,"1517":2,"1518":3,"1519":4,"1520":5,"1521":3,"1522":4,"1523":1,"1524":3,"1525":4,"1526":4,"1527":1,"1528":5,"1529":4,"1530":5,"1531":3,"1532":1,"1533":2,"1534":3,"1535":4,"1536":5,"1537":4,"1538":2,"1539":2,"1540":5,"1541":3,"1542":2,"1543":3,"1544":4,"1545":2,"1546":4,"1547":4,"1548":2,"1549":2,"1550":2,"1551":2,"1552":3,"1553":3,"1554":4,"1555":4,"1556":4,"1557":4,"1558":4,"1559":4,"1560":3,"1561":4,"1562":4,"1563":3,"1564":3,"1565":2,"1566":2,"1567":2,"1568":5,"1569":4,"1570":4,"1571":3,"1572":3,"1573":4,"1574":3,"1575":4,"1576":1,"1577":3,"1578":2,"1579":2,"1580":2,"1581":3,"1582":4,"1583":3,"1584":3,"1585":4,"1586":3,"1587":5,"1588":2,"1589":1,"1590":5,"1591":1,"1592":1,"1593":3,"1594":2,"1595":3,"1596":2,"1597":4,"1598":2,"1599":4,"1600":2,"1601":4,"1602":3,"1603":3,"1604":2,"1605":3,"1606":2,"1607":3,"1608":2,"1609":1,"1610":1,"1611":4,"1612":3,"1613":5,"1614":2,"1615":3,"1616":3,"1617":3,"1618":3,"1619":2,"1620":4,"1621":2,"1622":3,"1623":3,"1624":4,"1625":2,"1626":3,"1627":1,"1628":3,"1629":3,"1630":2,"1631":5,"1632":3,"1633":5,"1634":3,"1635":3,"1636":3,"1637":2,"1638":4,"1639":4,"1640":3,"1641":5,"1642":4,"1643":2,"1644":3,"1645":3,"1646":3,"1647":2,"1648":3,"1649":4,"1650":5,"1651":1,"1652":4,"1653":3,"1654":4,"1655":2,"1656":3,"1657":3,"1658":4,"1659":3,"1660":2,"1661":1,"1662":4,"1663":3,"1664":3,"1665":2,"1666":2,"1667":2,"1668":3,"1669":3,"1670":2,"1671":3,"1672":3,"1673":1,"1674":2,"1675":2,"1676":3,"1677":2,"1678":4,"1679":4,"1680":3,"1681":4,"1682":3,"1683":3,"1684":4,"1685":5,"1686":1,"1687":5,"1688":4,"1689":2,"1690":3,"1691":2,"1692":3,"1693":5,"1694":2,"1695":3,"1696":3,"1697":5,"1698":4,"1699":2,"1700":4,"1701":3,"1702":3,"1703":4,"1704":4,"1705":2,"1706":2,"1707":1,"1708":2,"1709":1,"1710":3,"1711":4,"1712":3,"1713":4,"1714":2,"1715":3,"1716":3,"1717":2,"1718":3,"1719":2,"1720":4,"1721":3,"1722":3,"1723":2,"1724":3,"1725":1,"1726":2,"1727":3,"1728":1,"1729":3,"1730":1,"1731":3,"1732":2,"1733":5,"1734":3,"1735":4,"1736":3,"1737":1,"1738":4,"1739":4,"1740":3,"1741":5,"1742":5,"1743":3,"1744":2,"1745":2,"1746":4,"1747":5,"1748":1,"1749":3,"1750":3,"1751":4,"1752":3,"1753":4,"1754":3,"1755":4,"1756":2,"1757":3,"1758":4,"1759":2,"1760":3,"1761":3,"1762":1,"1763":3,"1764":2,"1765":2,"1766":5,"1767":4,"1768":4,"1769":5,"1770":4,"1771":4,"1772":3,"1773":3,"1774":3,"1775":3,"1776":3,"1777":5,"1778":4,"1779":3,"1780":2,"1781":4,"1782":3,"1783":1,"1784":1,"1785":2,"1786":3,"1787":4,"1788":2,"1789":3,"1790":4,"1791":5,"1792":4,"1793":3,"1794":2,"1795":3,"1796":4,"1797":3,"1798":3,"1799":4,"1800":2,"1801":1,"1802":4,"1803":4,"1804":4,"1805":3,"1806":1,"1807":2,"1808":3,"1809":3,"1810":5,"1811":4,"1812":3,"1813":2,"1814":4,"1815":4,"1816":2,"1817":2,"1818":3,"1819":4,"1820":3,"1821":3,"1822":3,"1823":1,"1824":3,"1825":4,"1826":4,"1827":4,"1828":1,"1829":3,"1830":3,"1831":3,"1832":1,"1833":4,"1834":3,"1835":4,"1836":5,"1837":4,"1838":3,"1839":4,"1840":3,"1841":3,"1842":4,"1843":3,"1844":1,"1845":3,"1846":1,"1847":3,"1848":2,"1849":2,"1850":1,"1851":4,"1852":3,"1853":3,"1854":4,"1855":4,"1856":3,"1857":3,"1858":3,"1859":4,"1860":2,"1861":3,"1862":4,"1863":1,"1864":4,"1865":5,"1866":4,"1867":4,"1868":2,"1869":4,"1870":1,"1871":3,"1872":3,"1873":4,"1874":4,"1875":4,"1876":3,"1877":4,"1878":3,"1879":4,"1880":4,"1881":4,"1882":4,"1883":3,"1884":3,"1885":4,"1886":1,"1887":5,"1888":4,"1889":4,"1890":2,"1891":5,"1892":4,"1893":3,"1894":4,"1895":3,"1896":4,"1897":4,"1898":2,"1899":2,"1900":4,"1901":3,"1902":2,"1903":3,"1904":3,"1905":2,"1906":3,"1907":3,"1908":3,"1909":1,"1910":1,"1911":4,"1912":5,"1913":4,"1914":1,"1915":2,"1916":2,"1917":2,"1918":2,"1919":4,"1920":1,"1921":2,"1922":2,"1923":4,"1924":4,"1925":2,"1926":1,"1927":3,"1928":3,"1929":5,"1930":4,"1931":2,"1932":4,"1933":3,"1934":4,"1935":3,"1936":3,"1937":4,"1938":1,"1939":3,"1940":4,"1941":3,"1942":3,"1943":1,"1944":3,"1945":4,"1946":1,"1947":3,"1948":2,"1949":3,"1950":3,"1951":2,"1952":2,"1953":3,"1954":1,"1955":1,"1956":4,"1957":4,"1958":3,"1959":4,"1960":2,"1961":3,"1962":2,"1963":1,"1964":3,"1965":2,"1966":2,"1967":4,"1968":4,"1969":2,"1970":4,"1971":3,"1972":4,"1973":1,"1974":3,"1975":4,"1976":1,"1977":2,"1978":2,"1979":3,"1980":2,"1981":3,"1982":2,"1983":3,"1984":4,"1985":3,"1986":2,"1987":4,"1988":5,"1989":4,"1990":3,"1991":5,"1992":3,"1993":2,"1994":4,"1995":4,"1996":3,"1997":5,"1998":4,"1999":2,"2000":3,"2001":3,"2002":3,"2003":2,"2004":3,"2005":1,"2006":3,"2007":2,"2008":5,"2009":2,"2010":5,"2011":4,"2012":4,"2013":1,"2014":3,"2015":3,"2016":3,"2017":1,"2018":3,"2019":4,"2020":4,"2021":4,"2022":4,"2023":3,"2024":2,"2025":4,"2026":2,"2027":1,"2028":3,"2029":4,"2030":4,"2031":3,"2032":1,"2033":3,"2034":2,"2035":3,"2036":3,"2037":4,"2038":4,"2039":1,"2040":2,"2041":2,"2042":5,"2043":3,"2044":1,"2045":4,"2046":2,"2047":1,"2048":5,"2049":2,"2050":4,"2051":3,"2052":4,"2053":3,"2054":4,"2055":4,"2056":2,"2057":3,"2058":3,"2059":2,"2060":1,"2061":3,"2062":4,"2063":4,"2064":5,"2065":3,"2066":3,"2067":3,"2068":3,"2069":2,"2070":1,"2071":2,"2072":3,"2073":2,"2074":3,"2075":5,"2076":4,"2077":2,"2078":5,"2079":3,"2080":4,"2081":1,"2082":3,"2083":2,"2084":3,"2085":2,"2086":4,"2087":1,"2088":3,"2089":3,"2090":5,"2091":2,"2092":2,"2093":4,"2094":3,"2095":3,"2096":3,"2097":3,"2098":3,"2099":3,"2100":3,"2101":4,"2102":3,"2103":2,"2104":4,"2105":3,"2106":3,"2107":4,"2108":3,"2109":4,"2110":3,"2111":3,"2112":2,"2113":2,"2114":4,"2115":1,"2116":4,"2117":3,"2118":3,"2119":4,"2120":2,"2121":1,"2122":4,"2123":2,"2124":3,"2125":3,"2126":3,"2127":4,"2128":4,"2129":4,"2130":4,"2131":4,"2132":3,"2133":4,"2134":4,"2135":3,"2136":3,"2137":1,"2138":4,"2139":4,"2140":2,"2141":3,"2142":4,"2143":3,"2144":4,"2145":2,"2146":2,"2147":4,"2148":3,"2149":1,"2150":3,"2151":3,"2152":3,"2153":3,"2154":1,"2155":3,"2156":4,"2157":5,"2158":3,"2159":4,"2160":3,"2161":2,"2162":4,"2163":2,"2164":3,"2165":2,"2166":2,"2167":4,"2168":4,"2169":1,"2170":2,"2171":3,"2172":4,"2173":4,"2174":5,"2175":4,"2176":2,"2177":4,"2178":2,"2179":2,"2180":2,"2181":3,"2182":3,"2183":5,"2184":3,"2185":4,"2186":1,"2187":1,"2188":3,"2189":2,"2190":2,"2191":2,"2192":2,"2193":1,"2194":5,"2195":3,"2196":1,"2197":2,"2198":1,"2199":2,"2200":2,"2201":3,"2202":2,"2203":2,"2204":1,"2205":4,"2206":1,"2207":3,"2208":3,"2209":3,"2210":2,"2211":2,"2212":3,"2213":4,"2214":1,"2215":4,"2216":2,"2217":4,"2218":4,"2219":2,"2220":4,"2221":1,"2222":4,"2223":3,"2224":3,"2225":3,"2226":4,"2227":3,"2228":2,"2229":3,"2230":4,"2231":3,"2232":2,"2233":2,"2234":3,"2235":1,"2236":3,"2237":4,"2238":3,"2239":3,"2240":2,"2241":3,"2242":2,"2243":2,"2244":2,"2245":3,"2246":4,"2247":4,"2248":4,"2249":2,"2250":1,"2251":2,"2252":4,"2253":3,"2254":3,"2255":5,"2256":1,"2257":1,"2258":3,"2259":4,"2260":2,"2261":2,"2262":4,"2263":2,"2264":2,"2265":2,"2266":4,"2267":3,"2268":2,"2269":4,"2270":3,"2271":3,"2272":3,"2273":4,"2274":5,"2275":2,"2276":2,"2277":3,"2278":1,"2279":5,"2280":3,"2281":1,"2282":5,"2283":2,"2284":3,"2285":4,"2286":1,"2287":2,"2288":2,"2289":4,"2290":1,"2291":3,"2292":4,"2293":3,"2294":2,"2295":4,"2296":2,"2297":4,"2298":3,"2299":4,"2300":2,"2301":2,"2302":3,"2303":4,"2304":1,"2305":3,"2306":1,"2307":5,"2308":3,"2309":2,"2310":4,"2311":2,"2312":4,"2313":5,"2314":3,"2315":3,"2316":3,"2317":2,"2318":4,"2319":4,"2320":5,"2321":4,"2322":3,"2323":2,"2324":3,"2325":2,"2326":4,"2327":1,"2328":2,"2329":3,"2330":3,"2331":2,"2332":1,"2333":4,"2334":2,"2335":1,"2336":3,"2337":3,"2338":3,"2339":5,"2340":4,"2341":3,"2342":3,"2343":3,"2344":5,"2345":5,"2346":3,"2347":3,"2348":4,"2349":4,"2350":3,"2351":3,"2352":2,"2353":2,"2354":2,"2355":4,"2356":2,"2357":2,"2358":3,"2359":2,"2360":3,"2361":2,"2362":4,"2363":3,"2364":2,"2365":3,"2366":5,"2367":4,"2368":5,"2369":3,"2370":1,"2371":3,"2372":2,"2373":2,"2374":1,"2375":4,"2376":3,"2377":4,"2378":2,"2379":1,"2380":3,"2381":2,"2382":5,"2383":4,"2384":3,"2385":2,"2386":3,"2387":4,"2388":4,"2389":3,"2390":4,"2391":2,"2392":2,"2393":3,"2394":4,"2395":2,"2396":3,"2397":4,"2398":3,"2399":3,"2400":2,"2401":3,"2402":4,"2403":2,"2404":2,"2405":3,"2406":5,"2407":2,"2408":2,"2409":5,"2410":5,"2411":4,"2412":3,"2413":4,"2414":2,"2415":3,"2416":3,"2417":2,"2418":3,"2419":3,"2420":2,"2421":5,"2422":2,"2423":3,"2424":2,"2425":4,"2426":5,"2427":2,"2428":3,"2429":1,"2430":5,"2431":4,"2432":4,"2433":3,"2434":4,"2435":4,"2436":1,"2437":4,"2438":4,"2439":3,"2440":1,"2441":3,"2442":4,"2443":2,"2444":3,"2445":1,"2446":5,"2447":2,"2448":4,"2449":2,"2450":5,"2451":2,"2452":4,"2453":3,"2454":1,"2455":4,"2456":2,"2457":2,"2458":3,"2459":2,"2460":4,"2461":2,"2462":1,"2463":4,"2464":1,"2465":3,"2466":4,"2467":1,"2468":3,"2469":3,"2470":2,"2471":5,"2472":1,"2473":3,"2474":1,"2475":3,"2476":2,"2477":3,"2478":3,"2479":4,"2480":1,"2481":3,"2482":2,"2483":3,"2484":5,"2485":3,"2486":4,"2487":3,"2488":2,"2489":2,"2490":4,"2491":2,"2492":1,"2493":3,"2494":3,"2495":2,"2496":5,"2497":5,"2498":1,"2499":3,"2500":3,"2501":3,"2502":3,"2503":2,"2504":3,"2505":3,"2506":3,"2507":3,"2508":3,"2509":3,"2510":2,"2511":4,"2512":2,"2513":3,"2514":5,"2515":4,"2516":2,"2517":3,"2518":5,"2519":3,"2520":2,"2521":2,"2522":3,"2523":5,"2524":5,"2525":3,"2526":3,"2527":2,"2528":1,"2529":4,"2530":2,"2531":4,"2532":4,"2533":3,"2534":1,"2535":3,"2536":4,"2537":3,"2538":4,"2539":3,"2540":2,"2541":2,"2542":4,"2543":1,"2544":3,"2545":5,"2546":3,"2547":3,"2548":5,"2549":4,"2550":4,"2551":2,"2552":3,"2553":2,"2554":3,"2555":4,"2556":4,"2557":4,"2558":4,"2559":4,"2560":4,"2561":2,"2562":2,"2563":5,"2564":3,"2565":3,"2566":5,"2567":4,"2568":3,"2569":4,"2570":3,"2571":3,"2572":4,"2573":2,"2574":3,"2575":3,"2576":3,"2577":1,"2578":2,"2579":3,"2580":4,"2581":5,"2582":1,"2583":1,"2584":3,"2585":2,"2586":4,"2587":2,"2588":3,"2589":3,"2590":3,"2591":3,"2592":2,"2593":4,"2594":3,"2595":4,"2596":2,"2597":4,"2598":4,"2599":1,"2600":3,"2601":3,"2602":4,"2603":2,"2604":4,"2605":2,"2606":3,"2607":3,"2608":3,"2609":1,"2610":3,"2611":3,"2612":3,"2613":4,"2614":3,"2615":3,"2616":1,"2617":2,"2618":2,"2619":4,"2620":1,"2621":2,"2622":3,"2623":3,"2624":2,"2625":2,"2626":2,"2627":4,"2628":3,"2629":1,"2630":3,"2631":3,"2632":4,"2633":1,"2634":5,"2635":2,"2636":4,"2637":3,"2638":4,"2639":4,"2640":4,"2641":2,"2642":4,"2643":3,"2644":2,"2645":3,"2646":4,"2647":3,"2648":4,"2649":2,"2650":2,"2651":3,"2652":3,"2653":3,"2654":3,"2655":5,"2656":4,"2657":1,"2658":5,"2659":3,"2660":4,"2661":2,"2662":2,"2663":5,"2664":2,"2665":2,"2666":2,"2667":2,"2668":3,"2669":5,"2670":3,"2671":4,"2672":4,"2673":4,"2674":5,"2675":3,"2676":4,"2677":3,"2678":3,"2679":2,"2680":4,"2681":1,"2682":4,"2683":1,"2684":1,"2685":3,"2686":3,"2687":3,"2688":1,"2689":3,"2690":3,"2691":3,"2692":5,"2693":3,"2694":5,"2695":4,"2696":2,"2697":3,"2698":2,"2699":4,"2700":3,"2701":2,"2702":4,"2703":4,"2704":3,"2705":2,"2706":1,"2707":2,"2708":2,"2709":5,"2710":3,"2711":3,"2712":2,"2713":3,"2714":3,"2715":3,"2716":4,"2717":2,"2718":3,"2719":4,"2720":1,"2721":4,"2722":3,"2723":3,"2724":5,"2725":3,"2726":5,"2727":2,"2728":2,"2729":5,"2730":3,"2731":1,"2732":4,"2733":3,"2734":3,"2735":3,"2736":1,"2737":3,"2738":3,"2739":5,"2740":3,"2741":4,"2742":4,"2743":2,"2744":3,"2745":3,"2746":4,"2747":2,"2748":4,"2749":3,"2750":2,"2751":3,"2752":2,"2753":3,"2754":1,"2755":3,"2756":5,"2757":2,"2758":4,"2759":3,"2760":3,"2761":4,"2762":3,"2763":4,"2764":4,"2765":4,"2766":3,"2767":1,"2768":4,"2769":1,"2770":2,"2771":3,"2772":3,"2773":4,"2774":4,"2775":2,"2776":3,"2777":3,"2778":3,"2779":4,"2780":4,"2781":1,"2782":2,"2783":4,"2784":5,"2785":3,"2786":3,"2787":3,"2788":2,"2789":5,"2790":1,"2791":1,"2792":3,"2793":4,"2794":1,"2795":2,"2796":3,"2797":5,"2798":3,"2799":2,"2800":3,"2801":1,"2802":3,"2803":1,"2804":2,"2805":2,"2806":2,"2807":2,"2808":3,"2809":4,"2810":3,"2811":5,"2812":3,"2813":1,"2814":3,"2815":1,"2816":2,"2817":3,"2818":3,"2819":1,"2820":1,"2821":3,"2822":2,"2823":5,"2824":3,"2825":3,"2826":2,"2827":3,"2828":1,"2829":4,"2830":4,"2831":3,"2832":3,"2833":4,"2834":1,"2835":2,"2836":3,"2837":2,"2838":4,"2839":3,"2840":4,"2841":3,"2842":3,"2843":3,"2844":2,"2845":3,"2846":3,"2847":2,"2848":3,"2849":1,"2850":1,"2851":4,"2852":2,"2853":1,"2854":3,"2855":3,"2856":4,"2857":3,"2858":3,"2859":5,"2860":4,"2861":3,"2862":4,"2863":5,"2864":3,"2865":2,"2866":3,"2867":3,"2868":3,"2869":3,"2870":1,"2871":3,"2872":3,"2873":1,"2874":3,"2875":3,"2876":1,"2877":3,"2878":2,"2879":1,"2880":3,"2881":4,"2882":5,"2883":3,"2884":2,"2885":2,"2886":1,"2887":4,"2888":5,"2889":2,"2890":3,"2891":3,"2892":4,"2893":3,"2894":1,"2895":3,"2896":1,"2897":2,"2898":1,"2899":2,"2900":3,"2901":3,"2902":5,"2903":3,"2904":3,"2905":2,"2906":2,"2907":2,"2908":3,"2909":3,"2910":3,"2911":3,"2912":2,"2913":3,"2914":3,"2915":4,"2916":2,"2917":3,"2918":4,"2919":3,"2920":2,"2921":3,"2922":3,"2923":2,"2924":1,"2925":3,"2926":5,"2927":4,"2928":2,"2929":5,"2930":2,"2931":5,"2932":1,"2933":2,"2934":4,"2935":3,"2936":3,"2937":4,"2938":4,"2939":3,"2940":5,"2941":3,"2942":3,"2943":3,"2944":4,"2945":2,"2946":3,"2947":3,"2948":2,"2949":3,"2950":4,"2951":3,"2952":1,"2953":1,"2954":4,"2955":3,"2956":2,"2957":3,"2958":3,"2959":4,"2960":3,"2961":3,"2962":1,"2963":3,"2964":4,"2965":4,"2966":1,"2967":2,"2968":4,"2969":3,"2970":4,"2971":3,"2972":1,"2973":3,"2974":3,"2975":4,"2976":3,"2977":3,"2978":4,"2979":3,"2980":4,"2981":2,"2982":4,"2983":2,"2984":3,"2985":3,"2986":3,"2987":3,"2988":2,"2989":2,"2990":2,"2991":3,"2992":4,"2993":3,"2994":3,"2995":1,"2996":2,"2997":4,"2998":2,"2999":3,"3000":4,"3001":2,"3002":1,"3003":3,"3004":4,"3005":4,"3006":3,"3007":3,"3008":2,"3009":3,"3010":3,"3011":2,"3012":2,"3013":2,"3014":1,"3015":4,"3016":3,"3017":2,"3018":3,"3019":2,"3020":4,"3021":3,"3022":3,"3023":2,"3024":2,"3025":2,"3026":3,"3027":2,"3028":4,"3029":3,"3030":2,"3031":2,"3032":3,"3033":3,"3034":3,"3035":3,"3036":2,"3037":3,"3038":3,"3039":4,"3040":3,"3041":2,"3042":4,"3043":4,"3044":3,"3045":3,"3046":1,"3047":4,"3048":4,"3049":3,"3050":3,"3051":4,"3052":4,"3053":2,"3054":2,"3055":2,"3056":5,"3057":3,"3058":2,"3059":4,"3060":2,"3061":3,"3062":3,"3063":2,"3064":3,"3065":2,"3066":3,"3067":5,"3068":3,"3069":4,"3070":3,"3071":4,"3072":1,"3073":1,"3074":3,"3075":3,"3076":4,"3077":3,"3078":3,"3079":3,"3080":4,"3081":3,"3082":4,"3083":3,"3084":4,"3085":4,"3086":2,"3087":3,"3088":3,"3089":2,"3090":5,"3091":4,"3092":4,"3093":3,"3094":3,"3095":2,"3096":4,"3097":4,"3098":5,"3099":2,"3100":3,"3101":3,"3102":3,"3103":3,"3104":2,"3105":3,"3106":5,"3107":4,"3108":3,"3109":2,"3110":4,"3111":2,"3112":3,"3113":5,"3114":4,"3115":2,"3116":4,"3117":1,"3118":4,"3119":2,"3120":2,"3121":2,"3122":3,"3123":3,"3124":4,"3125":3,"3126":1,"3127":4,"3128":5,"3129":4,"3130":4,"3131":5,"3132":5,"3133":2,"3134":3,"3135":2,"3136":4,"3137":3,"3138":3,"3139":3,"3140":3,"3141":2,"3142":4,"3143":3,"3144":2,"3145":2,"3146":3,"3147":1,"3148":3,"3149":3,"3150":4,"3151":4,"3152":2,"3153":2,"3154":4,"3155":1,"3156":4,"3157":2,"3158":1,"3159":2,"3160":4,"3161":3,"3162":1,"3163":1,"3164":2,"3165":2,"3166":3,"3167":2,"3168":3,"3169":4,"3170":4,"3171":3,"3172":1,"3173":5,"3174":3,"3175":4,"3176":3,"3177":4,"3178":3,"3179":4,"3180":4,"3181":4,"3182":2,"3183":1,"3184":4,"3185":4,"3186":3,"3187":2,"3188":1,"3189":3,"3190":2,"3191":3,"3192":4,"3193":3,"3194":3,"3195":2,"3196":2,"3197":4,"3198":3,"3199":2,"3200":5,"3201":5,"3202":3,"3203":3,"3204":4,"3205":5,"3206":2,"3207":4,"3208":3,"3209":3,"3210":5,"3211":4,"3212":5,"3213":3,"3214":3,"3215":2,"3216":4,"3217":4,"3218":3,"3219":4,"3220":4,"3221":4,"3222":2,"3223":2,"3224":5,"3225":2,"3226":3,"3227":4,"3228":3,"3229":2,"3230":4,"3231":2,"3232":3,"3233":1,"3234":3,"3235":4,"3236":2,"3237":3,"3238":4,"3239":3,"3240":2,"3241":2,"3242":4,"3243":1,"3244":4,"3245":4,"3246":3,"3247":2,"3248":5,"3249":1,"3250":4,"3251":3,"3252":3,"3253":3,"3254":2,"3255":5,"3256":5,"3257":3,"3258":4,"3259":2,"3260":2,"3261":3,"3262":3,"3263":2,"3264":1,"3265":2,"3266":3,"3267":3,"3268":5,"3269":3,"3270":3,"3271":4,"3272":3,"3273":3,"3274":4,"3275":4,"3276":4,"3277":4,"3278":4,"3279":2,"3280":3,"3281":3,"3282":3,"3283":1,"3284":3,"3285":4,"3286":4,"3287":2,"3288":4,"3289":1,"3290":4,"3291":3,"3292":4,"3293":4,"3294":4,"3295":2,"3296":3,"3297":2,"3298":4,"3299":3,"3300":1,"3301":1,"3302":4,"3303":1,"3304":5,"3305":3,"3306":3,"3307":3,"3308":3,"3309":2,"3310":4,"3311":3,"3312":4,"3313":4,"3314":2,"3315":2,"3316":3,"3317":3,"3318":3,"3319":2,"3320":3,"3321":4,"3322":1,"3323":2,"3324":1,"3325":4,"3326":2,"3327":3,"3328":4,"3329":2,"3330":3,"3331":3,"3332":2,"3333":3,"3334":3,"3335":4,"3336":3,"3337":1,"3338":2,"3339":4,"3340":2,"3341":4,"3342":2,"3343":4,"3344":3,"3345":3,"3346":2,"3347":1,"3348":3,"3349":2,"3350":4,"3351":3,"3352":4,"3353":5,"3354":3,"3355":3,"3356":2,"3357":4,"3358":4,"3359":1,"3360":3,"3361":4,"3362":1,"3363":3,"3364":3,"3365":3,"3366":3,"3367":1,"3368":4,"3369":4,"3370":5,"3371":2,"3372":4,"3373":2,"3374":1,"3375":4,"3376":3,"3377":3,"3378":2,"3379":3,"3380":2,"3381":2,"3382":1,"3383":1,"3384":4,"3385":2,"3386":3,"3387":3,"3388":4,"3389":5,"3390":4,"3391":1,"3392":4,"3393":4,"3394":3,"3395":4,"3396":3,"3397":1,"3398":3,"3399":4,"3400":4,"3401":2,"3402":4,"3403":2,"3404":4,"3405":3,"3406":2,"3407":4,"3408":3,"3409":4,"3410":2,"3411":2,"3412":3,"3413":2,"3414":5,"3415":2,"3416":3,"3417":1,"3418":2,"3419":1,"3420":3,"3421":2,"3422":1,"3423":3,"3424":4,"3425":4,"3426":2,"3427":3,"3428":1,"3429":2,"3430":1,"3431":3,"3432":3,"3433":2,"3434":3,"3435":3,"3436":3,"3437":4,"3438":3,"3439":4,"3440":1,"3441":4,"3442":2,"3443":3,"3444":2,"3445":1,"3446":3,"3447":3,"3448":4,"3449":4,"3450":3,"3451":3,"3452":1,"3453":4,"3454":1,"3455":1,"3456":3,"3457":3,"3458":4,"3459":4,"3460":2,"3461":3,"3462":1,"3463":4,"3464":3,"3465":2,"3466":3,"3467":2,"3468":5,"3469":1,"3470":5,"3471":2,"3472":1,"3473":3,"3474":4,"3475":2,"3476":5,"3477":2,"3478":1,"3479":2,"3480":2,"3481":2,"3482":2,"3483":2,"3484":4,"3485":1,"3486":4,"3487":1,"3488":3,"3489":2,"3490":3,"3491":2,"3492":3,"3493":1,"3494":1,"3495":4,"3496":3,"3497":2,"3498":1,"3499":4,"3500":2,"3501":3,"3502":3,"3503":5,"3504":3,"3505":2,"3506":4,"3507":2,"3508":3,"3509":3,"3510":5,"3511":2,"3512":4,"3513":3,"3514":3,"3515":2,"3516":3,"3517":2,"3518":4,"3519":4,"3520":4,"3521":2,"3522":4,"3523":1,"3524":1,"3525":4,"3526":4,"3527":3,"3528":2,"3529":4,"3530":4,"3531":4,"3532":2,"3533":3,"3534":3,"3535":4,"3536":4,"3537":2,"3538":2,"3539":3,"3540":3,"3541":3,"3542":1,"3543":2,"3544":3,"3545":5,"3546":4,"3547":3,"3548":2,"3549":2,"3550":3,"3551":1,"3552":3,"3553":4,"3554":4,"3555":2,"3556":3,"3557":3,"3558":3,"3559":2,"3560":2,"3561":3,"3562":3,"3563":3,"3564":2,"3565":1,"3566":2,"3567":2,"3568":4,"3569":5,"3570":2,"3571":5,"3572":4,"3573":2,"3574":3,"3575":1,"3576":2,"3577":4,"3578":4,"3579":3,"3580":3,"3581":1,"3582":4,"3583":5,"3584":1,"3585":3,"3586":3,"3587":3,"3588":3,"3589":4,"3590":2,"3591":3,"3592":3,"3593":1,"3594":3,"3595":4,"3596":3,"3597":4,"3598":4,"3599":2,"3600":3,"3601":2,"3602":3,"3603":4,"3604":3,"3605":4,"3606":3,"3607":3,"3608":2,"3609":3,"3610":3,"3611":4,"3612":2,"3613":3,"3614":3,"3615":3,"3616":2,"3617":4,"3618":2,"3619":4,"3620":3,"3621":3,"3622":2,"3623":4,"3624":5,"3625":5,"3626":4,"3627":1,"3628":3,"3629":4,"3630":3,"3631":2,"3632":2,"3633":3,"3634":3,"3635":4,"3636":2,"3637":1,"3638":4,"3639":3,"3640":3,"3641":3,"3642":3,"3643":2,"3644":1,"3645":3,"3646":2,"3647":3,"3648":4,"3649":3,"3650":4,"3651":4,"3652":1,"3653":3,"3654":3,"3655":3,"3656":2,"3657":4,"3658":5,"3659":4,"3660":4,"3661":2,"3662":3,"3663":3,"3664":3,"3665":3,"3666":3,"3667":4,"3668":3,"3669":4,"3670":3,"3671":3,"3672":2,"3673":2,"3674":3,"3675":4,"3676":4,"3677":3,"3678":2,"3679":4,"3680":3,"3681":2,"3682":4,"3683":4,"3684":2,"3685":3,"3686":1,"3687":1,"3688":5,"3689":3,"3690":4,"3691":2,"3692":1,"3693":2,"3694":4,"3695":3,"3696":4,"3697":2,"3698":2,"3699":2,"3700":2,"3701":3,"3702":1,"3703":4,"3704":3,"3705":2,"3706":5,"3707":4,"3708":3,"3709":3,"3710":2,"3711":2,"3712":3,"3713":3,"3714":3,"3715":3,"3716":3,"3717":3,"3718":4,"3719":3,"3720":3,"3721":4,"3722":4,"3723":3,"3724":2,"3725":3,"3726":5,"3727":2,"3728":2,"3729":4,"3730":2,"3731":1,"3732":4,"3733":2,"3734":2,"3735":3,"3736":3,"3737":1,"3738":4,"3739":3,"3740":3,"3741":3,"3742":3,"3743":1,"3744":4,"3745":4,"3746":4,"3747":2,"3748":3,"3749":3,"3750":5,"3751":4,"3752":2,"3753":2,"3754":1,"3755":3,"3756":4,"3757":4,"3758":2,"3759":4,"3760":2,"3761":3,"3762":3,"3763":3,"3764":2,"3765":3,"3766":3,"3767":2,"3768":3,"3769":3,"3770":3,"3771":3,"3772":4,"3773":1,"3774":4,"3775":4,"3776":3,"3777":1,"3778":1,"3779":4,"3780":2,"3781":4,"3782":4,"3783":1,"3784":5,"3785":1,"3786":3,"3787":2,"3788":3,"3789":3,"3790":1,"3791":3,"3792":2,"3793":1,"3794":4,"3795":2,"3796":1,"3797":4,"3798":3,"3799":5,"3800":4,"3801":5,"3802":3,"3803":3,"3804":2,"3805":4,"3806":2,"3807":4,"3808":2,"3809":3,"3810":3,"3811":5,"3812":3,"3813":2,"3814":3,"3815":4,"3816":2,"3817":3,"3818":3,"3819":3,"3820":4,"3821":4,"3822":3,"3823":3,"3824":4,"3825":1,"3826":2,"3827":4,"3828":3,"3829":3,"3830":4,"3831":3,"3832":2,"3833":3,"3834":2,"3835":5,"3836":3,"3837":1,"3838":2,"3839":2,"3840":3,"3841":4,"3842":3,"3843":2,"3844":1,"3845":3,"3846":2,"3847":5,"3848":5,"3849":4,"3850":1,"3851":1,"3852":3,"3853":1,"3854":3,"3855":1,"3856":3,"3857":2,"3858":3,"3859":3,"3860":4,"3861":3,"3862":5,"3863":3,"3864":4,"3865":4,"3866":2,"3867":4,"3868":2,"3869":3,"3870":2,"3871":3,"3872":3,"3873":3,"3874":4,"3875":2,"3876":4,"3877":3,"3878":3,"3879":2,"3880":3,"3881":4,"3882":3,"3883":1,"3884":3,"3885":4,"3886":3,"3887":1,"3888":4,"3889":3,"3890":2,"3891":2,"3892":2,"3893":3,"3894":5,"3895":4,"3896":4,"3897":2,"3898":3,"3899":2,"3900":3,"3901":5,"3902":3,"3903":2,"3904":1,"3905":2,"3906":4,"3907":2,"3908":4,"3909":3,"3910":1,"3911":2,"3912":2,"3913":5,"3914":3,"3915":3,"3916":3,"3917":4,"3918":3,"3919":4,"3920":4,"3921":4,"3922":2,"3923":3,"3924":4,"3925":3,"3926":3,"3927":1,"3928":5,"3929":1,"3930":3,"3931":3,"3932":4,"3933":2,"3934":4,"3935":5,"3936":3,"3937":3,"3938":2,"3939":2,"3940":4,"3941":4,"3942":5,"3943":5,"3944":5,"3945":3,"3946":3,"3947":2,"3948":4,"3949":5,"3950":1,"3951":3,"3952":3,"3953":3,"3954":3,"3955":4,"3956":4,"3957":3,"3958":4,"3959":3,"3960":2,"3961":4,"3962":2,"3963":3,"3964":3,"3965":2,"3966":3,"3967":3,"3968":1,"3969":3,"3970":2,"3971":3,"3972":4,"3973":3,"3974":3,"3975":2,"3976":2,"3977":5,"3978":3,"3979":3,"3980":5,"3981":2,"3982":4,"3983":4,"3984":2,"3985":2,"3986":3,"3987":3,"3988":3,"3989":3,"3990":4,"3991":4,"3992":3,"3993":4,"3994":1,"3995":3,"3996":3,"3997":1,"3998":3,"3999":5,"4000":4,"4001":2,"4002":3,"4003":3,"4004":2,"4005":3,"4006":5,"4007":3,"4008":4,"4009":3,"4010":2,"4011":4,"4012":2,"4013":2,"4014":4,"4015":5,"4016":3,"4017":4,"4018":4,"4019":4,"4020":1,"4021":3,"4022":3,"4023":2,"4024":3,"4025":3,"4026":5,"4027":1,"4028":3,"4029":2,"4030":3,"4031":4,"4032":2,"4033":5,"4034":4,"4035":4,"4036":4,"4037":4,"4038":3,"4039":4,"4040":3,"4041":4,"4042":4,"4043":4,"4044":4,"4045":3,"4046":3,"4047":2,"4048":4,"4049":2,"4050":2,"4051":2,"4052":4,"4053":2,"4054":4,"4055":3,"4056":2,"4057":3,"4058":3,"4059":4,"4060":4,"4061":4,"4062":3,"4063":4,"4064":2,"4065":3,"4066":3,"4067":3,"4068":2,"4069":4,"4070":2,"4071":3,"4072":3,"4073":3,"4074":4,"4075":3,"4076":1,"4077":1,"4078":3,"4079":1,"4080":3,"4081":3,"4082":2,"4083":3,"4084":4,"4085":2,"4086":5,"4087":3,"4088":4,"4089":2,"4090":2,"4091":3,"4092":3,"4093":4,"4094":2,"4095":3,"4096":4,"4097":1,"4098":3,"4099":3,"4100":4,"4101":3,"4102":4,"4103":2,"4104":3,"4105":4,"4106":4,"4107":4,"4108":4,"4109":3,"4110":3,"4111":4,"4112":2,"4113":4,"4114":3,"4115":3,"4116":5,"4117":3,"4118":2,"4119":3,"4120":4,"4121":4,"4122":3,"4123":3,"4124":3,"4125":3,"4126":5,"4127":1,"4128":5,"4129":3,"4130":3,"4131":2,"4132":5,"4133":4,"4134":3,"4135":3,"4136":4,"4137":3,"4138":5,"4139":4,"4140":3,"4141":2,"4142":4,"4143":4,"4144":2,"4145":2,"4146":1,"4147":4,"4148":4,"4149":3,"4150":3,"4151":2,"4152":3,"4153":3,"4154":5,"4155":4,"4156":3,"4157":3,"4158":2,"4159":3,"4160":2,"4161":1,"4162":2,"4163":3,"4164":4,"4165":4,"4166":2,"4167":4,"4168":2,"4169":3,"4170":2,"4171":3,"4172":5,"4173":4,"4174":3,"4175":3,"4176":2,"4177":4,"4178":3,"4179":4,"4180":1,"4181":3,"4182":2,"4183":1,"4184":2,"4185":5,"4186":2,"4187":3,"4188":3,"4189":3,"4190":2,"4191":4,"4192":4,"4193":4,"4194":5,"4195":1,"4196":2,"4197":3,"4198":1,"4199":4,"4200":4,"4201":2,"4202":3,"4203":2,"4204":2,"4205":4,"4206":2,"4207":3,"4208":3,"4209":2,"4210":4,"4211":3,"4212":2,"4213":5,"4214":4,"4215":3,"4216":4,"4217":3,"4218":5,"4219":3,"4220":3,"4221":4,"4222":3,"4223":3,"4224":1,"4225":4,"4226":4,"4227":5,"4228":2,"4229":4,"4230":3,"4231":3,"4232":3,"4233":2,"4234":2,"4235":1,"4236":3,"4237":4,"4238":4,"4239":1,"4240":3,"4241":2,"4242":3,"4243":4,"4244":3,"4245":4,"4246":3,"4247":2,"4248":3,"4249":3,"4250":3,"4251":3,"4252":4,"4253":2,"4254":4,"4255":4,"4256":2,"4257":5,"4258":3,"4259":4,"4260":3,"4261":2,"4262":4,"4263":4,"4264":4,"4265":5,"4266":2,"4267":5,"4268":3,"4269":4,"4270":3,"4271":3,"4272":5,"4273":5,"4274":2,"4275":4,"4276":1,"4277":3,"4278":2,"4279":3,"4280":4,"4281":3,"4282":2,"4283":4,"4284":3,"4285":3,"4286":3,"4287":5,"4288":3,"4289":4,"4290":3,"4291":4,"4292":4,"4293":1,"4294":3,"4295":2,"4296":1,"4297":3,"4298":2,"4299":2,"4300":4,"4301":3,"4302":1,"4303":1,"4304":3,"4305":2,"4306":2,"4307":4,"4308":5,"4309":2,"4310":1,"4311":4,"4312":5,"4313":3,"4314":3,"4315":1,"4316":3,"4317":3,"4318":3,"4319":3,"4320":4,"4321":3,"4322":4,"4323":1,"4324":4,"4325":3,"4326":2,"4327":3,"4328":3,"4329":2,"4330":2,"4331":3,"4332":2,"4333":4,"4334":3,"4335":3,"4336":2,"4337":4,"4338":4,"4339":2,"4340":2,"4341":2,"4342":5,"4343":4,"4344":1,"4345":4,"4346":3,"4347":4,"4348":3,"4349":2,"4350":4,"4351":2,"4352":4,"4353":2,"4354":2,"4355":2,"4356":3,"4357":4,"4358":4,"4359":2,"4360":2,"4361":4,"4362":1,"4363":1,"4364":2,"4365":3,"4366":1,"4367":4,"4368":2,"4369":2,"4370":3,"4371":2,"4372":2,"4373":2,"4374":4,"4375":3,"4376":3,"4377":3,"4378":1,"4379":3,"4380":2,"4381":3,"4382":2,"4383":3,"4384":2,"4385":3,"4386":3,"4387":2,"4388":4,"4389":1,"4390":3,"4391":5,"4392":1,"4393":4,"4394":2,"4395":3,"4396":3,"4397":4,"4398":3,"4399":3,"4400":4,"4401":2,"4402":2,"4403":2,"4404":3,"4405":3,"4406":3,"4407":3,"4408":4,"4409":4,"4410":2,"4411":2,"4412":5,"4413":4,"4414":4,"4415":4,"4416":4,"4417":3,"4418":2,"4419":3,"4420":3,"4421":2,"4422":4,"4423":3,"4424":3,"4425":4,"4426":1,"4427":1,"4428":4,"4429":4,"4430":4,"4431":4,"4432":3,"4433":5,"4434":2,"4435":5,"4436":1,"4437":3,"4438":4,"4439":3,"4440":3,"4441":3,"4442":4,"4443":4,"4444":3,"4445":3,"4446":5,"4447":3,"4448":4,"4449":3,"4450":2,"4451":4,"4452":3,"4453":3,"4454":2,"4455":3,"4456":3,"4457":5,"4458":3,"4459":4,"4460":5,"4461":1,"4462":5,"4463":5,"4464":4,"4465":3,"4466":5,"4467":2,"4468":3,"4469":3,"4470":1,"4471":1,"4472":2,"4473":4,"4474":4,"4475":2,"4476":3,"4477":4,"4478":2,"4479":3,"4480":2,"4481":3,"4482":4,"4483":2,"4484":4,"4485":2,"4486":3,"4487":3,"4488":4,"4489":4,"4490":1,"4491":3,"4492":4,"4493":3,"4494":5,"4495":2,"4496":5,"4497":3,"4498":3,"4499":4,"4500":2,"4501":3,"4502":3,"4503":3,"4504":3,"4505":2,"4506":3,"4507":3,"4508":3,"4509":1,"4510":4,"4511":3,"4512":3,"4513":1,"4514":2,"4515":2,"4516":4,"4517":4,"4518":4,"4519":1,"4520":3,"4521":4,"4522":4,"4523":4,"4524":2,"4525":2,"4526":4,"4527":2,"4528":2,"4529":3,"4530":4,"4531":2,"4532":2,"4533":3,"4534":4,"4535":3,"4536":4,"4537":4,"4538":5,"4539":4,"4540":4,"4541":2,"4542":3,"4543":3,"4544":3,"4545":3,"4546":1,"4547":4,"4548":5,"4549":5,"4550":4,"4551":2,"4552":1,"4553":3,"4554":3,"4555":4,"4556":2,"4557":2,"4558":3,"4559":3,"4560":3,"4561":1,"4562":5,"4563":3,"4564":3,"4565":3,"4566":4,"4567":3,"4568":2,"4569":3,"4570":4,"4571":3,"4572":3,"4573":4,"4574":2,"4575":3,"4576":2,"4577":3,"4578":1,"4579":3,"4580":5,"4581":3,"4582":2,"4583":2,"4584":2,"4585":3,"4586":3,"4587":1,"4588":3,"4589":3,"4590":3,"4591":1,"4592":3,"4593":5,"4594":3,"4595":2,"4596":2,"4597":2,"4598":4,"4599":3,"4600":5,"4601":3,"4602":2,"4603":3,"4604":2,"4605":1,"4606":1,"4607":3,"4608":4,"4609":1,"4610":4,"4611":5,"4612":3,"4613":3,"4614":3,"4615":2,"4616":2,"4617":3,"4618":5,"4619":3,"4620":2,"4621":3,"4622":3,"4623":4,"4624":3,"4625":2,"4626":4,"4627":3,"4628":3,"4629":5,"4630":1,"4631":2,"4632":2,"4633":3,"4634":3,"4635":1,"4636":1,"4637":4,"4638":2,"4639":3,"4640":3,"4641":2,"4642":3,"4643":4,"4644":1,"4645":3,"4646":4,"4647":2,"4648":2,"4649":3,"4650":2,"4651":5,"4652":1,"4653":4,"4654":3,"4655":4,"4656":5,"4657":5,"4658":3,"4659":4,"4660":1,"4661":1,"4662":4,"4663":4,"4664":4,"4665":4,"4666":3,"4667":3,"4668":3,"4669":2,"4670":3,"4671":2,"4672":3,"4673":4,"4674":2,"4675":3,"4676":2,"4677":1,"4678":3,"4679":2,"4680":2,"4681":3,"4682":3,"4683":2,"4684":3,"4685":3,"4686":3,"4687":5,"4688":4,"4689":3,"4690":3,"4691":2,"4692":3,"4693":4,"4694":2,"4695":4,"4696":3,"4697":3,"4698":4,"4699":3,"4700":3,"4701":1,"4702":3,"4703":3,"4704":4,"4705":1,"4706":4,"4707":3,"4708":2,"4709":2,"4710":3,"4711":2,"4712":2,"4713":3,"4714":2,"4715":5,"4716":1,"4717":2,"4718":1,"4719":4,"4720":3,"4721":2,"4722":3,"4723":5,"4724":3,"4725":3,"4726":4,"4727":2,"4728":4,"4729":3,"4730":5,"4731":2,"4732":1,"4733":4,"4734":4,"4735":3,"4736":4,"4737":3,"4738":4,"4739":3,"4740":1,"4741":2,"4742":3,"4743":1,"4744":1,"4745":3,"4746":1,"4747":4,"4748":1,"4749":3,"4750":2,"4751":1,"4752":4,"4753":3,"4754":3,"4755":4,"4756":4,"4757":3,"4758":3,"4759":3,"4760":4,"4761":5,"4762":5,"4763":3,"4764":4,"4765":3,"4766":3,"4767":2,"4768":2,"4769":4,"4770":3,"4771":2,"4772":3,"4773":5,"4774":4,"4775":2,"4776":4,"4777":3,"4778":3,"4779":2,"4780":3,"4781":3,"4782":1,"4783":3,"4784":4,"4785":3,"4786":3,"4787":3,"4788":3,"4789":4,"4790":5,"4791":4,"4792":3,"4793":4,"4794":3,"4795":4,"4796":3,"4797":1,"4798":1,"4799":2,"4800":3,"4801":1,"4802":4,"4803":5,"4804":4,"4805":4,"4806":2,"4807":3,"4808":4,"4809":4,"4810":2,"4811":5,"4812":1,"4813":4,"4814":3,"4815":3,"4816":3,"4817":3,"4818":5,"4819":5,"4820":2,"4821":4,"4822":5,"4823":1,"4824":1,"4825":3,"4826":2,"4827":2,"4828":4,"4829":4,"4830":1,"4831":3,"4832":1,"4833":3,"4834":4,"4835":1,"4836":2,"4837":2,"4838":3,"4839":2,"4840":4,"4841":2,"4842":3,"4843":2,"4844":2,"4845":5,"4846":4,"4847":5,"4848":3,"4849":3,"4850":2,"4851":3,"4852":3,"4853":4,"4854":2,"4855":1,"4856":4,"4857":3,"4858":4,"4859":3,"4860":2,"4861":4,"4862":5,"4863":4,"4864":3,"4865":4,"4866":2,"4867":4,"4868":1,"4869":4,"4870":3,"4871":1,"4872":2,"4873":2,"4874":4,"4875":4,"4876":3,"4877":4,"4878":2,"4879":3,"4880":4,"4881":1,"4882":3,"4883":5,"4884":4,"4885":3,"4886":4,"4887":4,"4888":2,"4889":5,"4890":3,"4891":1,"4892":2,"4893":4,"4894":3,"4895":2,"4896":2,"4897":3,"4898":4,"4899":1,"4900":3,"4901":3,"4902":3,"4903":3,"4904":1,"4905":4,"4906":4,"4907":2,"4908":2,"4909":2,"4910":5,"4911":3,"4912":3,"4913":4,"4914":4,"4915":2,"4916":3,"4917":4,"4918":5,"4919":1,"4920":4,"4921":3,"4922":4,"4923":5,"4924":4,"4925":3,"4926":2,"4927":3,"4928":3,"4929":3,"4930":3,"4931":3,"4932":5,"4933":1,"4934":1,"4935":3,"4936":1,"4937":4,"4938":4,"4939":4,"4940":4,"4941":5,"4942":2,"4943":4,"4944":5,"4945":5,"4946":2,"4947":3,"4948":2,"4949":2,"4950":2,"4951":1,"4952":5,"4953":4,"4954":4,"4955":1,"4956":3,"4957":5,"4958":4,"4959":1,"4960":2,"4961":3,"4962":3,"4963":1,"4964":3,"4965":3,"4966":3,"4967":2,"4968":1,"4969":2,"4970":3,"4971":1,"4972":3,"4973":5,"4974":4,"4975":2,"4976":3,"4977":2,"4978":2,"4979":2,"4980":4,"4981":3,"4982":3,"4983":3,"4984":3,"4985":1,"4986":2,"4987":3,"4988":3,"4989":3,"4990":4,"4991":1,"4992":4,"4993":3,"4994":3,"4995":2,"4996":2,"4997":3,"4998":2,"4999":3,"5000":5,"5001":3,"5002":2,"5003":3,"5004":4,"5005":5,"5006":3,"5007":3,"5008":4,"5009":4,"5010":4,"5011":5,"5012":2,"5013":1,"5014":3,"5015":4,"5016":3,"5017":3,"5018":4,"5019":4,"5020":1,"5021":3,"5022":4,"5023":4,"5024":4,"5025":2,"5026":2,"5027":4,"5028":2,"5029":1,"5030":3,"5031":2,"5032":4,"5033":2,"5034":2,"5035":3,"5036":3,"5037":3,"5038":2,"5039":3,"5040":4,"5041":5,"5042":4,"5043":3,"5044":2,"5045":2,"5046":3,"5047":4,"5048":3,"5049":3,"5050":2,"5051":3,"5052":3,"5053":1,"5054":1,"5055":3,"5056":2,"5057":5,"5058":5,"5059":2,"5060":2,"5061":3,"5062":3,"5063":4,"5064":3,"5065":3,"5066":3,"5067":3,"5068":1,"5069":4,"5070":2,"5071":3,"5072":3,"5073":3,"5074":3,"5075":2,"5076":3,"5077":3,"5078":4,"5079":3,"5080":4,"5081":2,"5082":1,"5083":3,"5084":4,"5085":2,"5086":2,"5087":3,"5088":5,"5089":2,"5090":4,"5091":2,"5092":4,"5093":2,"5094":2,"5095":3,"5096":5,"5097":1,"5098":2,"5099":1,"5100":4,"5101":2,"5102":3,"5103":1,"5104":2,"5105":3,"5106":2,"5107":4,"5108":4,"5109":2,"5110":4,"5111":5,"5112":2,"5113":2,"5114":3,"5115":5,"5116":3,"5117":3,"5118":4,"5119":3,"5120":3,"5121":4,"5122":2,"5123":4,"5124":4,"5125":1,"5126":4,"5127":4,"5128":4,"5129":3,"5130":3,"5131":4,"5132":3,"5133":3,"5134":3,"5135":3,"5136":2,"5137":2,"5138":5,"5139":4,"5140":3,"5141":3,"5142":2,"5143":2,"5144":3,"5145":3,"5146":4,"5147":1,"5148":5,"5149":4,"5150":4,"5151":2,"5152":3,"5153":2,"5154":2,"5155":4,"5156":3,"5157":3,"5158":4,"5159":2,"5160":3,"5161":2,"5162":2,"5163":2,"5164":2,"5165":3,"5166":3,"5167":2,"5168":3,"5169":3,"5170":4,"5171":3,"5172":2,"5173":3,"5174":4,"5175":3,"5176":2,"5177":4,"5178":4,"5179":3,"5180":2,"5181":2,"5182":3,"5183":3,"5184":4,"5185":3,"5186":4,"5187":3,"5188":3,"5189":4,"5190":2,"5191":4,"5192":1,"5193":3,"5194":4,"5195":4,"5196":5,"5197":1,"5198":2,"5199":2,"5200":2,"5201":3,"5202":5,"5203":2,"5204":3,"5205":3,"5206":3,"5207":2,"5208":4,"5209":3,"5210":5,"5211":4,"5212":2,"5213":3,"5214":1,"5215":3,"5216":3,"5217":4,"5218":2,"5219":2,"5220":2,"5221":2,"5222":4,"5223":4,"5224":3,"5225":2,"5226":1,"5227":1,"5228":2,"5229":3,"5230":3,"5231":3,"5232":3,"5233":3,"5234":4,"5235":3,"5236":1,"5237":2,"5238":3,"5239":3,"5240":4,"5241":2,"5242":2,"5243":3,"5244":4,"5245":2,"5246":3,"5247":1,"5248":3,"5249":3,"5250":1,"5251":1,"5252":2,"5253":2,"5254":3,"5255":3,"5256":2,"5257":2,"5258":4,"5259":3,"5260":4,"5261":3,"5262":3,"5263":5,"5264":4,"5265":4,"5266":2,"5267":3,"5268":1,"5269":4,"5270":4,"5271":3,"5272":4,"5273":2,"5274":3,"5275":2,"5276":4,"5277":2,"5278":4,"5279":3,"5280":5,"5281":4,"5282":1,"5283":4,"5284":3,"5285":4,"5286":3,"5287":4,"5288":3,"5289":3,"5290":3,"5291":3,"5292":4,"5293":3,"5294":2,"5295":4,"5296":3,"5297":3,"5298":5,"5299":4,"5300":4,"5301":3,"5302":4,"5303":2,"5304":3,"5305":1,"5306":4,"5307":3,"5308":4,"5309":2,"5310":3,"5311":4,"5312":2,"5313":1,"5314":4,"5315":3,"5316":4,"5317":4,"5318":2,"5319":4,"5320":3,"5321":2,"5322":2,"5323":2,"5324":1,"5325":3,"5326":1,"5327":4,"5328":3,"5329":2,"5330":4,"5331":3,"5332":3,"5333":3,"5334":5,"5335":4,"5336":1,"5337":4,"5338":3,"5339":2,"5340":4,"5341":2,"5342":3,"5343":4,"5344":3,"5345":3,"5346":4,"5347":2,"5348":2,"5349":3,"5350":2,"5351":3,"5352":4,"5353":1,"5354":2,"5355":2,"5356":1,"5357":4,"5358":2,"5359":1,"5360":3,"5361":2,"5362":2,"5363":4,"5364":2,"5365":4,"5366":3,"5367":3,"5368":3,"5369":3,"5370":3,"5371":3,"5372":4,"5373":3,"5374":1,"5375":4,"5376":4,"5377":4,"5378":1,"5379":1,"5380":3,"5381":4,"5382":1,"5383":3,"5384":5,"5385":2,"5386":1,"5387":3,"5388":4,"5389":2,"5390":2,"5391":5,"5392":1,"5393":3,"5394":3,"5395":4,"5396":4,"5397":3,"5398":1,"5399":2,"5400":2,"5401":3,"5402":4,"5403":1,"5404":3,"5405":3,"5406":3,"5407":3,"5408":2,"5409":2,"5410":3,"5411":1,"5412":3,"5413":4,"5414":2,"5415":5,"5416":1,"5417":3,"5418":1,"5419":4,"5420":3,"5421":4,"5422":1,"5423":3,"5424":2,"5425":4,"5426":4,"5427":2,"5428":3,"5429":3,"5430":1,"5431":1,"5432":3,"5433":5,"5434":1,"5435":2,"5436":4,"5437":1,"5438":2,"5439":2,"5440":3,"5441":4,"5442":4,"5443":2,"5444":4,"5445":5,"5446":5,"5447":2,"5448":4,"5449":3,"5450":5,"5451":5,"5452":3,"5453":2,"5454":4,"5455":2,"5456":4,"5457":2,"5458":3,"5459":4,"5460":4,"5461":4,"5462":2,"5463":4,"5464":2,"5465":4,"5466":2,"5467":2,"5468":3,"5469":1,"5470":3,"5471":1,"5472":2,"5473":3,"5474":2,"5475":3,"5476":3,"5477":5,"5478":2,"5479":4,"5480":3,"5481":1,"5482":3,"5483":4,"5484":1,"5485":3,"5486":1,"5487":1,"5488":1,"5489":2,"5490":3,"5491":1,"5492":4,"5493":3,"5494":3,"5495":3,"5496":1,"5497":4,"5498":3,"5499":4,"5500":3,"5501":4,"5502":2,"5503":5,"5504":4,"5505":1,"5506":3,"5507":2,"5508":4,"5509":5,"5510":1,"5511":3,"5512":3,"5513":2,"5514":4,"5515":4,"5516":3,"5517":5,"5518":3,"5519":3,"5520":4,"5521":4,"5522":2,"5523":2,"5524":1,"5525":2,"5526":1,"5527":4,"5528":4,"5529":2,"5530":3,"5531":4,"5532":1,"5533":4,"5534":3,"5535":2,"5536":3,"5537":3,"5538":3,"5539":3,"5540":3,"5541":4,"5542":1,"5543":3,"5544":5,"5545":3,"5546":5,"5547":4,"5548":1,"5549":4,"5550":3,"5551":3,"5552":1,"5553":3,"5554":2,"5555":3,"5556":3,"5557":4,"5558":5,"5559":4,"5560":5,"5561":1,"5562":4,"5563":4,"5564":4,"5565":3,"5566":4,"5567":4,"5568":2,"5569":4,"5570":2,"5571":3,"5572":4,"5573":4,"5574":2,"5575":1,"5576":1,"5577":2,"5578":5,"5579":4,"5580":3,"5581":2,"5582":2,"5583":1,"5584":4,"5585":3,"5586":2,"5587":3,"5588":3,"5589":3,"5590":3,"5591":3,"5592":2,"5593":5,"5594":4,"5595":4,"5596":2,"5597":4,"5598":4,"5599":3,"5600":3,"5601":2,"5602":4,"5603":3,"5604":2,"5605":5,"5606":3,"5607":3,"5608":3,"5609":3,"5610":2,"5611":2,"5612":2,"5613":3,"5614":2,"5615":3,"5616":3,"5617":4,"5618":2,"5619":4,"5620":3,"5621":4,"5622":3,"5623":2,"5624":3,"5625":2,"5626":3,"5627":3,"5628":4,"5629":3,"5630":3,"5631":3,"5632":2,"5633":1,"5634":4,"5635":1,"5636":4,"5637":3,"5638":2,"5639":1,"5640":2,"5641":2,"5642":1,"5643":2,"5644":4,"5645":4,"5646":4,"5647":4,"5648":4,"5649":4,"5650":3,"5651":2,"5652":4,"5653":2,"5654":4,"5655":1,"5656":4,"5657":3,"5658":3,"5659":4,"5660":4,"5661":1,"5662":3,"5663":1,"5664":3,"5665":2,"5666":2,"5667":2,"5668":3,"5669":3,"5670":3,"5671":2,"5672":3,"5673":2,"5674":3,"5675":5,"5676":3,"5677":3,"5678":3,"5679":3,"5680":4,"5681":2,"5682":3,"5683":3,"5684":4,"5685":3,"5686":3,"5687":3,"5688":3,"5689":3,"5690":2,"5691":4,"5692":4,"5693":3,"5694":4,"5695":3,"5696":5,"5697":3,"5698":3,"5699":5,"5700":4,"5701":5,"5702":4,"5703":5,"5704":2,"5705":2,"5706":4,"5707":3,"5708":4,"5709":5,"5710":3,"5711":2,"5712":2,"5713":2,"5714":4,"5715":4,"5716":2,"5717":3,"5718":4,"5719":2,"5720":2,"5721":3,"5722":4,"5723":4,"5724":2,"5725":4,"5726":3,"5727":4,"5728":3,"5729":3,"5730":3,"5731":3,"5732":1,"5733":4,"5734":3,"5735":5,"5736":2,"5737":3,"5738":4,"5739":3,"5740":1,"5741":2,"5742":1,"5743":3,"5744":3,"5745":3,"5746":2,"5747":2,"5748":4,"5749":2,"5750":1,"5751":5,"5752":5,"5753":5,"5754":3,"5755":1,"5756":4,"5757":3,"5758":3,"5759":5,"5760":2,"5761":3,"5762":3,"5763":1,"5764":1,"5765":3,"5766":3,"5767":3,"5768":4,"5769":2,"5770":2,"5771":3,"5772":2,"5773":4,"5774":4,"5775":5,"5776":3,"5777":2,"5778":2,"5779":3,"5780":2,"5781":3,"5782":2,"5783":4,"5784":2,"5785":4,"5786":2,"5787":3,"5788":1,"5789":3,"5790":3,"5791":3,"5792":2,"5793":3,"5794":1,"5795":5,"5796":3,"5797":1,"5798":4,"5799":3,"5800":3,"5801":4,"5802":4,"5803":3,"5804":4,"5805":4,"5806":2,"5807":2,"5808":2,"5809":1,"5810":2,"5811":2,"5812":4,"5813":3,"5814":2,"5815":4,"5816":4,"5817":3,"5818":5,"5819":3,"5820":2,"5821":4,"5822":3,"5823":3,"5824":2,"5825":3,"5826":1,"5827":4,"5828":4,"5829":4,"5830":3,"5831":4,"5832":2,"5833":4,"5834":1,"5835":2,"5836":2,"5837":5,"5838":2,"5839":4,"5840":3,"5841":5,"5842":4,"5843":2,"5844":5,"5845":1,"5846":2,"5847":4,"5848":3,"5849":3,"5850":2,"5851":1,"5852":2,"5853":1,"5854":4,"5855":5,"5856":4,"5857":3,"5858":2,"5859":4,"5860":3,"5861":3,"5862":1,"5863":1,"5864":4,"5865":3,"5866":1,"5867":2,"5868":4,"5869":3,"5870":3,"5871":4,"5872":3,"5873":3,"5874":1,"5875":3,"5876":5,"5877":2,"5878":3,"5879":3,"5880":2,"5881":3,"5882":3,"5883":4,"5884":2,"5885":1,"5886":4,"5887":2,"5888":2,"5889":3,"5890":2,"5891":2,"5892":3,"5893":1,"5894":4,"5895":1,"5896":3,"5897":3,"5898":2,"5899":2,"5900":3,"5901":1,"5902":3,"5903":3,"5904":3,"5905":2,"5906":4,"5907":3,"5908":4,"5909":2,"5910":4,"5911":2,"5912":1,"5913":1,"5914":5,"5915":1,"5916":3,"5917":2,"5918":2,"5919":4,"5920":3,"5921":2,"5922":1,"5923":5,"5924":2,"5925":4,"5926":1,"5927":2,"5928":4,"5929":3,"5930":3,"5931":5,"5932":3,"5933":2,"5934":1,"5935":3,"5936":1,"5937":5,"5938":1,"5939":5,"5940":3,"5941":2,"5942":2,"5943":3,"5944":3,"5945":2,"5946":2,"5947":1,"5948":5,"5949":4,"5950":2,"5951":1,"5952":2,"5953":2,"5954":3,"5955":3,"5956":2,"5957":4,"5958":1,"5959":2,"5960":2,"5961":3,"5962":1,"5963":2,"5964":5,"5965":1,"5966":3,"5967":3,"5968":2,"5969":4,"5970":2,"5971":3,"5972":3,"5973":1,"5974":4,"5975":3,"5976":4,"5977":5,"5978":4,"5979":3,"5980":2,"5981":4,"5982":3,"5983":2,"5984":2,"5985":3,"5986":2,"5987":4,"5988":2,"5989":2,"5990":2,"5991":3,"5992":1,"5993":2,"5994":2,"5995":2,"5996":4,"5997":1,"5998":3,"5999":4,"6000":4,"6001":1,"6002":2,"6003":2,"6004":4,"6005":2,"6006":3,"6007":3,"6008":3,"6009":5,"6010":4,"6011":3,"6012":4,"6013":4,"6014":3,"6015":4,"6016":3,"6017":3,"6018":4,"6019":5,"6020":3,"6021":2,"6022":3,"6023":5,"6024":3,"6025":1,"6026":2,"6027":3,"6028":3,"6029":1,"6030":2,"6031":4,"6032":2,"6033":4,"6034":4,"6035":3,"6036":1,"6037":3,"6038":1,"6039":4,"6040":3,"6041":3,"6042":2,"6043":4,"6044":4,"6045":4,"6046":3,"6047":4,"6048":1,"6049":3,"6050":3,"6051":3,"6052":3,"6053":5,"6054":5,"6055":2,"6056":2,"6057":2,"6058":3,"6059":3,"6060":4,"6061":3,"6062":3,"6063":2,"6064":3,"6065":3,"6066":1,"6067":5,"6068":2,"6069":4,"6070":4,"6071":2,"6072":4,"6073":4,"6074":3,"6075":3,"6076":4,"6077":4,"6078":3,"6079":3,"6080":2,"6081":2,"6082":5,"6083":4,"6084":5,"6085":2,"6086":4,"6087":3,"6088":3,"6089":3,"6090":5,"6091":4,"6092":3,"6093":3,"6094":4,"6095":5,"6096":3,"6097":3,"6098":4,"6099":4,"6100":5,"6101":3,"6102":4,"6103":2,"6104":3,"6105":4,"6106":4,"6107":2,"6108":3,"6109":4,"6110":1,"6111":4,"6112":4,"6113":1,"6114":3,"6115":5,"6116":4,"6117":2,"6118":3,"6119":2,"6120":3,"6121":5,"6122":3,"6123":3,"6124":2,"6125":4,"6126":2,"6127":1,"6128":2,"6129":3,"6130":3,"6131":1,"6132":3,"6133":2,"6134":3,"6135":3,"6136":1,"6137":4,"6138":2,"6139":4,"6140":2,"6141":1,"6142":3,"6143":2,"6144":4,"6145":2,"6146":4,"6147":4,"6148":2,"6149":3,"6150":4,"6151":4,"6152":4,"6153":4,"6154":3,"6155":1,"6156":4,"6157":2,"6158":4,"6159":1,"6160":1,"6161":1,"6162":3,"6163":3,"6164":4,"6165":4,"6166":4,"6167":3,"6168":2,"6169":1,"6170":2,"6171":3,"6172":1,"6173":2,"6174":3,"6175":4,"6176":5,"6177":4,"6178":2,"6179":2,"6180":2,"6181":3,"6182":3,"6183":1,"6184":2,"6185":2,"6186":4,"6187":1,"6188":4,"6189":5,"6190":4,"6191":1,"6192":3,"6193":3,"6194":4,"6195":5,"6196":1,"6197":3,"6198":2,"6199":2,"6200":3,"6201":2,"6202":3,"6203":2,"6204":2,"6205":2,"6206":1,"6207":2,"6208":3,"6209":4,"6210":5,"6211":3,"6212":2,"6213":3,"6214":4,"6215":5,"6216":4,"6217":3,"6218":3,"6219":4,"6220":3,"6221":2,"6222":2,"6223":2,"6224":3,"6225":2,"6226":4,"6227":2,"6228":2,"6229":2,"6230":2,"6231":3,"6232":5,"6233":2,"6234":3,"6235":4,"6236":2,"6237":1,"6238":5,"6239":5,"6240":3,"6241":2,"6242":2,"6243":2,"6244":4,"6245":4,"6246":3,"6247":3,"6248":2,"6249":2,"6250":2,"6251":4,"6252":4,"6253":3,"6254":3,"6255":3,"6256":3,"6257":3,"6258":2,"6259":1,"6260":3,"6261":3,"6262":3,"6263":2,"6264":1,"6265":2,"6266":3,"6267":4,"6268":3,"6269":3,"6270":1,"6271":1,"6272":2,"6273":5,"6274":4,"6275":4,"6276":3,"6277":3,"6278":3,"6279":2,"6280":2,"6281":2,"6282":2,"6283":1,"6284":2,"6285":4,"6286":4,"6287":3,"6288":3,"6289":3,"6290":3,"6291":2,"6292":3,"6293":1,"6294":2,"6295":4,"6296":2,"6297":1,"6298":5,"6299":4,"6300":3,"6301":3,"6302":3,"6303":2,"6304":5,"6305":2,"6306":5,"6307":2,"6308":2,"6309":3,"6310":3,"6311":2,"6312":2,"6313":2,"6314":4,"6315":4,"6316":2,"6317":4,"6318":2,"6319":4,"6320":1,"6321":3,"6322":4,"6323":5,"6324":5,"6325":2,"6326":2,"6327":4,"6328":2,"6329":3,"6330":4,"6331":2,"6332":4,"6333":1,"6334":1,"6335":4,"6336":4,"6337":3,"6338":1,"6339":4,"6340":4,"6341":2,"6342":4,"6343":4,"6344":4,"6345":5,"6346":4,"6347":1,"6348":5,"6349":2,"6350":2,"6351":3,"6352":1,"6353":3,"6354":1,"6355":3,"6356":3,"6357":4,"6358":4,"6359":5,"6360":3,"6361":3,"6362":3,"6363":4,"6364":1,"6365":3,"6366":3,"6367":2,"6368":2,"6369":4,"6370":5,"6371":4,"6372":4,"6373":1,"6374":4,"6375":3,"6376":1,"6377":2,"6378":3,"6379":4,"6380":3,"6381":4,"6382":3,"6383":1,"6384":2,"6385":3,"6386":5,"6387":3,"6388":2,"6389":5,"6390":3,"6391":4,"6392":1,"6393":4,"6394":4,"6395":1,"6396":4,"6397":4,"6398":4,"6399":3,"6400":3,"6401":2,"6402":3,"6403":1,"6404":3,"6405":2,"6406":2,"6407":2,"6408":2,"6409":2,"6410":3,"6411":2,"6412":2,"6413":4,"6414":4,"6415":1,"6416":3,"6417":4,"6418":2,"6419":4,"6420":4,"6421":3,"6422":2,"6423":4,"6424":3,"6425":3,"6426":3,"6427":3,"6428":4,"6429":4,"6430":2,"6431":3,"6432":4,"6433":4,"6434":3,"6435":1,"6436":2,"6437":3,"6438":1,"6439":3,"6440":2,"6441":2,"6442":5,"6443":4,"6444":3,"6445":3,"6446":3,"6447":4,"6448":4,"6449":5,"6450":1,"6451":2,"6452":2,"6453":1,"6454":5,"6455":3,"6456":3,"6457":3,"6458":3,"6459":4,"6460":3,"6461":3,"6462":3,"6463":4,"6464":5,"6465":2,"6466":4,"6467":4,"6468":5,"6469":4,"6470":4,"6471":3,"6472":4,"6473":4,"6474":2,"6475":4,"6476":4,"6477":2,"6478":3,"6479":1,"6480":4,"6481":4,"6482":3,"6483":2,"6484":2,"6485":4,"6486":1,"6487":4,"6488":4,"6489":4,"6490":2,"6491":4,"6492":3,"6493":3,"6494":3,"6495":3,"6496":3,"6497":4,"6498":4,"6499":3,"6500":3,"6501":4,"6502":4,"6503":2,"6504":5,"6505":2,"6506":4,"6507":4,"6508":4,"6509":5,"6510":2,"6511":4,"6512":3,"6513":4,"6514":3,"6515":4,"6516":5,"6517":2,"6518":2,"6519":3,"6520":3,"6521":2,"6522":2,"6523":3,"6524":2,"6525":3,"6526":1,"6527":3,"6528":4,"6529":3,"6530":4,"6531":2,"6532":4,"6533":4,"6534":1,"6535":2,"6536":4,"6537":5,"6538":3,"6539":2,"6540":5,"6541":4,"6542":3,"6543":3,"6544":3,"6545":4,"6546":3,"6547":2,"6548":3,"6549":5,"6550":2,"6551":3,"6552":4,"6553":3,"6554":4,"6555":3,"6556":1,"6557":1,"6558":3,"6559":3,"6560":3,"6561":1,"6562":3,"6563":2,"6564":3,"6565":3,"6566":2,"6567":3,"6568":2,"6569":3,"6570":3,"6571":3,"6572":2,"6573":3,"6574":4,"6575":3,"6576":3,"6577":4,"6578":3,"6579":2,"6580":3,"6581":3,"6582":2,"6583":3,"6584":5,"6585":2,"6586":3,"6587":2,"6588":5,"6589":1,"6590":2,"6591":1,"6592":2,"6593":4,"6594":4,"6595":5,"6596":2,"6597":3,"6598":5,"6599":1,"6600":4,"6601":2,"6602":3,"6603":4,"6604":1,"6605":3,"6606":4,"6607":4,"6608":3,"6609":3,"6610":3,"6611":3,"6612":1,"6613":4,"6614":5,"6615":3,"6616":4,"6617":1,"6618":3,"6619":4,"6620":4,"6621":3,"6622":2,"6623":3,"6624":3,"6625":2,"6626":3,"6627":2,"6628":4,"6629":4,"6630":3,"6631":4,"6632":3,"6633":2,"6634":4,"6635":2,"6636":3,"6637":4,"6638":2,"6639":4,"6640":3,"6641":2,"6642":4,"6643":3,"6644":1,"6645":4,"6646":4,"6647":2,"6648":3,"6649":2,"6650":2,"6651":3,"6652":3,"6653":3,"6654":4,"6655":3,"6656":2,"6657":3,"6658":5,"6659":4,"6660":3,"6661":1,"6662":2,"6663":4,"6664":3,"6665":2,"6666":4,"6667":4,"6668":2,"6669":4,"6670":2,"6671":4,"6672":3,"6673":4,"6674":3,"6675":4,"6676":3,"6677":3,"6678":3,"6679":3,"6680":4,"6681":5,"6682":4,"6683":2,"6684":5,"6685":4,"6686":4,"6687":5,"6688":3,"6689":4,"6690":3,"6691":3,"6692":1,"6693":1,"6694":4,"6695":5,"6696":1,"6697":4,"6698":2,"6699":3,"6700":3,"6701":4,"6702":3,"6703":3,"6704":3,"6705":4,"6706":4,"6707":3,"6708":2,"6709":4,"6710":1,"6711":1,"6712":5,"6713":3,"6714":1,"6715":5,"6716":3,"6717":3,"6718":5,"6719":3,"6720":3,"6721":2,"6722":3,"6723":4,"6724":4,"6725":4,"6726":4,"6727":3,"6728":3,"6729":3,"6730":4,"6731":3,"6732":5,"6733":2,"6734":2,"6735":1,"6736":2,"6737":4,"6738":2,"6739":4,"6740":5,"6741":2,"6742":5,"6743":3,"6744":3,"6745":4,"6746":2,"6747":2,"6748":3,"6749":2,"6750":1,"6751":2,"6752":2,"6753":4,"6754":4,"6755":3,"6756":4,"6757":2,"6758":1,"6759":2,"6760":3,"6761":4,"6762":3,"6763":2,"6764":3,"6765":2,"6766":3,"6767":2,"6768":3,"6769":2,"6770":2,"6771":5,"6772":3,"6773":5,"6774":4,"6775":3,"6776":2,"6777":2,"6778":1,"6779":4,"6780":5,"6781":4,"6782":3,"6783":2,"6784":5,"6785":5,"6786":5,"6787":3,"6788":2,"6789":2,"6790":1,"6791":3,"6792":3,"6793":3,"6794":2,"6795":4,"6796":1,"6797":2,"6798":4,"6799":4,"6800":4,"6801":2,"6802":3,"6803":5,"6804":2,"6805":4,"6806":4,"6807":3,"6808":3,"6809":4,"6810":3,"6811":2,"6812":1,"6813":2,"6814":3,"6815":3,"6816":2,"6817":4,"6818":2,"6819":5,"6820":4,"6821":4,"6822":3,"6823":2,"6824":4,"6825":5,"6826":3,"6827":2,"6828":2,"6829":2,"6830":5,"6831":4,"6832":4,"6833":3,"6834":4,"6835":1,"6836":3,"6837":3,"6838":4,"6839":3,"6840":2,"6841":3,"6842":2,"6843":4,"6844":3,"6845":3,"6846":1,"6847":3,"6848":3,"6849":3,"6850":5,"6851":4,"6852":4,"6853":3,"6854":4,"6855":4,"6856":3,"6857":1,"6858":5,"6859":4,"6860":4,"6861":4,"6862":2,"6863":5,"6864":4,"6865":3,"6866":3,"6867":2,"6868":5,"6869":2,"6870":4,"6871":2,"6872":2,"6873":3,"6874":2,"6875":1,"6876":2,"6877":2,"6878":5,"6879":1,"6880":2,"6881":4,"6882":3,"6883":4,"6884":5,"6885":3,"6886":4,"6887":5,"6888":4,"6889":3,"6890":2,"6891":4,"6892":3,"6893":4,"6894":3,"6895":2,"6896":3,"6897":3,"6898":1,"6899":3,"6900":2,"6901":3,"6902":2,"6903":3,"6904":3,"6905":3,"6906":3,"6907":4,"6908":4,"6909":3,"6910":3,"6911":3,"6912":2,"6913":2,"6914":3,"6915":3,"6916":5,"6917":2,"6918":5,"6919":2,"6920":4,"6921":1,"6922":2,"6923":3,"6924":4,"6925":1,"6926":3,"6927":3,"6928":4,"6929":3,"6930":3,"6931":3,"6932":1,"6933":2,"6934":3,"6935":2,"6936":2,"6937":4,"6938":5,"6939":4,"6940":4,"6941":4,"6942":4,"6943":5,"6944":4,"6945":4,"6946":4,"6947":2,"6948":4,"6949":3,"6950":4,"6951":3,"6952":2,"6953":3,"6954":2,"6955":3,"6956":2,"6957":2,"6958":3,"6959":4,"6960":3,"6961":2,"6962":5,"6963":2,"6964":2,"6965":4,"6966":3,"6967":4,"6968":4,"6969":3,"6970":1,"6971":3,"6972":3,"6973":4,"6974":3,"6975":1,"6976":4,"6977":3,"6978":3,"6979":3,"6980":4,"6981":3,"6982":5,"6983":4,"6984":2,"6985":2,"6986":4,"6987":3,"6988":2,"6989":4,"6990":1,"6991":3,"6992":4,"6993":2,"6994":2,"6995":2,"6996":5,"6997":5,"6998":5,"6999":4,"7000":3,"7001":3,"7002":4,"7003":4,"7004":3,"7005":5,"7006":4,"7007":3,"7008":1,"7009":1,"7010":2,"7011":4,"7012":5,"7013":3,"7014":3,"7015":3,"7016":4,"7017":3,"7018":3,"7019":2,"7020":4,"7021":2,"7022":3,"7023":3,"7024":3,"7025":4,"7026":4,"7027":3,"7028":3,"7029":3,"7030":3,"7031":3,"7032":1,"7033":3,"7034":3,"7035":2,"7036":2,"7037":3,"7038":3,"7039":4,"7040":5,"7041":4,"7042":3,"7043":5,"7044":2,"7045":2,"7046":3,"7047":5,"7048":3,"7049":4,"7050":3,"7051":2,"7052":2,"7053":3,"7054":3,"7055":4,"7056":3,"7057":3,"7058":5,"7059":2,"7060":2,"7061":1,"7062":1,"7063":5,"7064":3,"7065":1,"7066":3,"7067":3,"7068":2,"7069":3,"7070":5,"7071":1,"7072":2,"7073":4,"7074":5,"7075":3,"7076":4,"7077":4,"7078":2,"7079":2,"7080":3,"7081":1,"7082":1,"7083":3,"7084":4,"7085":3,"7086":4,"7087":2,"7088":3,"7089":3,"7090":4,"7091":5,"7092":4,"7093":3,"7094":3,"7095":1,"7096":4,"7097":4,"7098":4,"7099":3,"7100":4,"7101":4,"7102":2,"7103":2,"7104":3,"7105":3,"7106":2,"7107":5,"7108":5,"7109":3,"7110":3,"7111":3,"7112":5,"7113":4,"7114":2,"7115":4,"7116":3,"7117":3,"7118":2,"7119":3,"7120":4,"7121":3,"7122":3,"7123":3,"7124":3,"7125":3,"7126":3,"7127":3,"7128":1,"7129":2,"7130":3,"7131":4,"7132":2,"7133":2,"7134":2,"7135":3,"7136":5,"7137":3,"7138":3,"7139":3,"7140":4,"7141":3,"7142":3,"7143":1,"7144":5,"7145":5,"7146":3,"7147":3,"7148":4,"7149":4,"7150":2,"7151":3,"7152":2,"7153":3,"7154":3,"7155":4,"7156":4,"7157":4,"7158":2,"7159":3,"7160":4,"7161":1,"7162":2,"7163":3,"7164":5,"7165":4,"7166":2,"7167":4,"7168":3,"7169":3,"7170":3,"7171":2,"7172":1,"7173":1,"7174":2,"7175":3,"7176":2,"7177":5,"7178":3,"7179":5,"7180":2,"7181":5,"7182":3,"7183":3,"7184":3,"7185":2,"7186":5,"7187":2,"7188":2,"7189":3,"7190":3,"7191":4,"7192":2,"7193":2,"7194":4,"7195":3,"7196":2,"7197":1,"7198":4,"7199":4,"7200":4,"7201":2,"7202":3,"7203":4,"7204":4,"7205":3,"7206":5,"7207":5,"7208":2,"7209":4,"7210":4,"7211":3,"7212":3,"7213":4,"7214":3,"7215":3,"7216":1,"7217":4,"7218":2,"7219":1,"7220":3,"7221":4,"7222":2,"7223":4,"7224":3,"7225":2,"7226":3,"7227":2,"7228":1,"7229":3,"7230":4,"7231":1,"7232":3,"7233":2,"7234":1,"7235":5,"7236":4,"7237":2,"7238":2,"7239":3,"7240":3,"7241":5,"7242":4,"7243":5,"7244":3,"7245":4,"7246":3,"7247":2,"7248":4,"7249":4,"7250":3,"7251":3,"7252":4,"7253":3,"7254":4,"7255":3,"7256":5,"7257":4,"7258":1,"7259":3,"7260":5,"7261":3,"7262":3,"7263":1,"7264":1,"7265":4,"7266":4,"7267":4,"7268":3,"7269":2,"7270":2,"7271":4,"7272":5,"7273":5,"7274":3,"7275":2,"7276":4,"7277":4,"7278":4,"7279":5,"7280":1,"7281":2,"7282":4,"7283":2,"7284":3,"7285":4,"7286":2,"7287":2,"7288":4,"7289":2,"7290":2,"7291":3,"7292":2,"7293":4,"7294":3,"7295":1,"7296":3,"7297":3,"7298":1,"7299":4,"7300":3,"7301":4,"7302":2,"7303":3,"7304":3,"7305":3,"7306":5,"7307":4,"7308":2,"7309":4,"7310":1,"7311":4,"7312":3,"7313":2,"7314":5,"7315":3,"7316":2,"7317":4,"7318":3,"7319":3,"7320":2,"7321":3,"7322":3,"7323":5,"7324":3,"7325":3,"7326":4,"7327":4,"7328":4,"7329":4,"7330":1,"7331":3,"7332":2,"7333":1,"7334":2,"7335":5,"7336":3,"7337":5,"7338":2,"7339":4,"7340":3,"7341":3,"7342":1,"7343":2,"7344":4,"7345":2,"7346":4,"7347":4,"7348":5,"7349":3,"7350":4,"7351":3,"7352":2,"7353":4,"7354":3,"7355":1,"7356":4,"7357":2,"7358":5,"7359":2,"7360":3,"7361":4,"7362":2,"7363":2,"7364":3,"7365":2,"7366":4,"7367":2,"7368":4,"7369":2,"7370":4,"7371":4,"7372":3,"7373":2,"7374":3,"7375":3,"7376":3,"7377":3,"7378":5,"7379":4,"7380":4,"7381":2,"7382":3,"7383":4,"7384":2,"7385":3,"7386":3,"7387":3,"7388":4,"7389":4,"7390":3,"7391":5,"7392":3,"7393":4,"7394":3,"7395":3,"7396":2,"7397":3,"7398":3,"7399":3,"7400":3,"7401":5,"7402":3,"7403":3,"7404":3,"7405":3,"7406":3,"7407":2,"7408":4,"7409":3,"7410":3,"7411":2,"7412":4,"7413":3,"7414":1,"7415":3,"7416":1,"7417":5,"7418":3,"7419":1,"7420":3,"7421":4,"7422":4,"7423":4,"7424":4,"7425":3,"7426":4,"7427":2,"7428":2,"7429":2,"7430":1,"7431":4,"7432":2,"7433":3,"7434":4,"7435":5,"7436":2,"7437":3,"7438":3,"7439":3,"7440":3,"7441":2,"7442":1,"7443":1,"7444":5,"7445":4,"7446":2,"7447":3,"7448":4,"7449":3,"7450":4,"7451":4,"7452":4,"7453":4,"7454":2,"7455":4,"7456":3,"7457":3,"7458":1,"7459":2,"7460":4,"7461":5,"7462":4,"7463":1,"7464":3,"7465":4,"7466":5,"7467":4,"7468":4,"7469":4,"7470":3,"7471":1,"7472":4,"7473":3,"7474":5,"7475":3,"7476":2,"7477":3,"7478":2,"7479":3,"7480":4,"7481":4,"7482":4,"7483":3,"7484":4,"7485":1,"7486":5,"7487":3,"7488":1,"7489":1,"7490":2,"7491":4,"7492":2,"7493":2,"7494":3,"7495":3,"7496":4,"7497":2,"7498":2,"7499":3,"7500":1,"7501":3,"7502":1,"7503":4,"7504":2,"7505":3,"7506":1,"7507":3,"7508":3,"7509":2,"7510":4,"7511":4,"7512":4,"7513":2,"7514":3,"7515":1,"7516":3,"7517":5,"7518":4,"7519":2,"7520":3,"7521":3,"7522":3,"7523":2,"7524":3,"7525":1,"7526":4,"7527":5,"7528":2,"7529":2,"7530":3,"7531":2,"7532":4,"7533":3,"7534":2,"7535":3,"7536":4,"7537":2,"7538":2,"7539":5,"7540":2,"7541":1,"7542":4,"7543":3,"7544":3,"7545":3,"7546":3,"7547":3,"7548":3,"7549":3,"7550":3,"7551":2,"7552":3,"7553":2,"7554":3,"7555":4,"7556":4,"7557":4,"7558":3,"7559":2,"7560":3,"7561":1,"7562":1,"7563":3,"7564":1,"7565":1,"7566":3,"7567":4,"7568":3,"7569":3,"7570":5,"7571":2,"7572":3,"7573":4,"7574":2,"7575":2,"7576":3,"7577":4,"7578":3,"7579":1,"7580":2,"7581":4,"7582":4,"7583":5,"7584":3,"7585":3,"7586":4,"7587":3,"7588":3,"7589":2,"7590":2,"7591":3,"7592":4,"7593":1,"7594":5,"7595":1,"7596":4,"7597":4,"7598":4,"7599":2,"7600":2,"7601":2,"7602":4,"7603":3,"7604":3,"7605":4,"7606":4,"7607":1,"7608":4,"7609":3,"7610":2,"7611":2,"7612":3,"7613":4,"7614":2,"7615":4,"7616":3,"7617":1,"7618":3,"7619":1,"7620":2,"7621":1,"7622":5,"7623":4,"7624":4,"7625":4,"7626":2,"7627":3,"7628":4,"7629":3,"7630":4,"7631":2,"7632":4,"7633":4,"7634":4,"7635":3,"7636":1,"7637":4,"7638":3,"7639":5,"7640":4,"7641":5,"7642":4,"7643":2,"7644":3,"7645":2,"7646":4,"7647":4,"7648":3,"7649":3,"7650":2,"7651":3,"7652":3,"7653":3,"7654":2,"7655":5,"7656":4,"7657":3,"7658":4,"7659":4,"7660":4,"7661":3,"7662":2,"7663":4,"7664":3,"7665":1,"7666":2,"7667":4,"7668":2,"7669":4,"7670":2,"7671":2,"7672":3,"7673":1,"7674":3,"7675":5,"7676":4,"7677":4,"7678":5,"7679":3,"7680":4,"7681":2,"7682":2,"7683":4,"7684":2,"7685":3,"7686":4,"7687":1,"7688":3,"7689":1,"7690":3,"7691":3,"7692":2,"7693":4,"7694":3,"7695":1,"7696":2,"7697":4,"7698":3,"7699":3,"7700":3,"7701":3,"7702":3,"7703":3,"7704":4,"7705":4,"7706":3,"7707":2,"7708":5,"7709":4,"7710":5,"7711":3,"7712":2,"7713":2,"7714":3,"7715":3,"7716":2,"7717":2,"7718":4,"7719":3,"7720":2,"7721":2,"7722":3,"7723":4,"7724":4,"7725":3,"7726":5,"7727":3,"7728":2,"7729":5,"7730":1,"7731":3,"7732":1,"7733":2,"7734":4,"7735":5,"7736":2,"7737":4,"7738":3,"7739":3,"7740":4,"7741":3,"7742":3,"7743":4,"7744":3,"7745":2,"7746":2,"7747":3,"7748":3,"7749":4,"7750":2,"7751":3,"7752":3,"7753":3,"7754":4,"7755":5,"7756":3,"7757":2,"7758":1,"7759":5,"7760":4,"7761":3,"7762":1,"7763":3,"7764":1,"7765":5,"7766":4,"7767":3,"7768":3,"7769":3,"7770":2,"7771":4,"7772":4,"7773":3,"7774":2,"7775":4,"7776":4,"7777":2,"7778":2,"7779":4,"7780":2,"7781":5,"7782":3,"7783":2,"7784":1,"7785":5,"7786":4,"7787":2,"7788":4,"7789":3,"7790":1,"7791":3,"7792":3,"7793":2,"7794":3,"7795":3,"7796":1,"7797":3,"7798":5,"7799":2,"7800":3,"7801":3,"7802":3,"7803":4,"7804":5,"7805":3,"7806":1,"7807":2,"7808":4,"7809":1,"7810":5,"7811":2,"7812":3,"7813":4,"7814":1,"7815":2,"7816":5,"7817":1,"7818":2,"7819":2,"7820":5,"7821":1,"7822":2,"7823":4,"7824":4,"7825":3,"7826":4,"7827":2,"7828":3,"7829":3,"7830":3,"7831":4,"7832":3,"7833":3,"7834":2,"7835":4,"7836":2,"7837":2,"7838":2,"7839":2,"7840":3,"7841":3,"7842":2,"7843":3,"7844":5,"7845":4,"7846":3,"7847":3,"7848":4,"7849":3,"7850":4,"7851":3,"7852":3,"7853":2,"7854":5,"7855":3,"7856":3,"7857":3,"7858":1,"7859":1,"7860":2,"7861":4,"7862":3,"7863":1,"7864":3,"7865":2,"7866":4,"7867":2,"7868":3,"7869":5,"7870":3,"7871":4,"7872":2,"7873":2,"7874":3,"7875":4,"7876":3,"7877":1,"7878":3,"7879":3,"7880":3,"7881":3,"7882":3,"7883":2,"7884":3,"7885":3,"7886":4,"7887":4,"7888":3,"7889":2,"7890":1,"7891":4,"7892":2,"7893":3,"7894":1,"7895":3,"7896":2,"7897":2,"7898":1,"7899":3,"7900":3,"7901":4,"7902":4,"7903":2,"7904":2,"7905":4,"7906":3,"7907":4,"7908":1,"7909":3,"7910":2,"7911":3,"7912":3,"7913":3,"7914":3,"7915":2,"7916":2,"7917":3,"7918":4,"7919":4,"7920":4,"7921":3,"7922":3,"7923":3,"7924":5,"7925":3,"7926":3,"7927":2,"7928":1,"7929":4,"7930":3,"7931":3,"7932":4,"7933":3,"7934":4,"7935":2,"7936":3,"7937":4,"7938":4,"7939":4,"7940":3,"7941":4,"7942":4,"7943":3,"7944":1,"7945":3,"7946":2,"7947":3,"7948":1,"7949":4,"7950":4,"7951":3,"7952":3,"7953":2,"7954":3,"7955":3,"7956":2,"7957":2,"7958":3,"7959":3,"7960":2,"7961":4,"7962":2,"7963":3,"7964":3,"7965":4,"7966":3,"7967":2,"7968":4,"7969":1,"7970":5,"7971":2,"7972":4,"7973":3,"7974":5,"7975":2,"7976":3,"7977":4,"7978":2,"7979":4,"7980":3,"7981":3,"7982":4,"7983":4,"7984":3,"7985":3,"7986":3,"7987":4,"7988":3,"7989":4,"7990":1,"7991":1,"7992":3,"7993":4,"7994":1,"7995":4,"7996":4,"7997":3,"7998":5,"7999":4,"8000":2,"8001":4,"8002":3,"8003":2,"8004":2,"8005":2,"8006":2,"8007":4,"8008":4,"8009":3,"8010":4,"8011":5,"8012":3,"8013":3,"8014":2,"8015":2,"8016":3,"8017":1,"8018":3,"8019":4,"8020":3,"8021":4,"8022":3,"8023":1,"8024":2,"8025":1,"8026":2,"8027":1,"8028":1,"8029":5,"8030":2,"8031":2,"8032":4,"8033":2,"8034":4,"8035":3,"8036":3,"8037":3,"8038":2,"8039":3,"8040":3,"8041":1,"8042":3,"8043":1,"8044":3,"8045":1,"8046":1,"8047":1,"8048":3,"8049":2,"8050":3,"8051":3,"8052":5,"8053":5,"8054":2,"8055":5,"8056":2,"8057":3,"8058":3,"8059":5,"8060":3,"8061":1,"8062":2,"8063":4,"8064":5,"8065":3,"8066":2,"8067":3,"8068":2,"8069":4,"8070":2,"8071":4,"8072":3,"8073":2,"8074":4,"8075":4,"8076":4,"8077":4,"8078":3,"8079":4,"8080":4,"8081":3,"8082":3,"8083":4,"8084":2,"8085":2,"8086":4,"8087":1,"8088":3,"8089":2,"8090":3,"8091":5,"8092":2,"8093":5,"8094":3,"8095":4,"8096":2,"8097":3,"8098":2,"8099":4,"8100":4,"8101":2,"8102":4,"8103":2,"8104":3,"8105":3,"8106":3,"8107":3,"8108":3,"8109":4,"8110":4,"8111":3,"8112":4,"8113":2,"8114":4,"8115":3,"8116":1,"8117":4,"8118":2,"8119":2,"8120":5,"8121":5,"8122":2,"8123":4,"8124":4,"8125":4,"8126":2,"8127":4,"8128":2,"8129":2,"8130":4,"8131":1,"8132":2,"8133":3,"8134":4,"8135":2,"8136":3,"8137":2,"8138":3,"8139":5,"8140":4,"8141":3,"8142":2,"8143":4,"8144":3,"8145":3,"8146":4,"8147":3,"8148":1,"8149":4,"8150":5,"8151":4,"8152":3,"8153":2,"8154":3,"8155":4,"8156":4,"8157":3,"8158":4,"8159":1,"8160":2,"8161":3,"8162":3,"8163":3,"8164":4,"8165":4,"8166":3,"8167":5,"8168":3,"8169":4,"8170":3,"8171":5,"8172":1,"8173":4,"8174":1,"8175":2,"8176":4,"8177":3,"8178":5,"8179":1,"8180":4,"8181":2,"8182":3,"8183":3,"8184":3,"8185":2,"8186":2,"8187":5,"8188":2,"8189":2,"8190":3,"8191":2,"8192":3,"8193":2,"8194":4,"8195":2,"8196":3,"8197":3,"8198":2,"8199":5,"8200":4,"8201":1,"8202":3,"8203":4,"8204":2,"8205":2,"8206":2,"8207":2,"8208":1,"8209":1,"8210":2,"8211":3,"8212":2,"8213":3,"8214":4,"8215":3,"8216":3,"8217":4,"8218":2,"8219":4,"8220":3,"8221":4,"8222":4,"8223":4,"8224":4,"8225":2,"8226":3,"8227":4,"8228":3,"8229":3,"8230":3,"8231":3,"8232":3,"8233":4,"8234":3,"8235":2,"8236":2,"8237":4,"8238":3,"8239":3,"8240":2,"8241":3,"8242":2,"8243":4,"8244":2,"8245":3,"8246":3,"8247":1,"8248":3,"8249":4,"8250":4,"8251":3,"8252":2,"8253":1,"8254":2,"8255":3,"8256":5,"8257":3,"8258":3,"8259":3,"8260":2,"8261":4,"8262":2,"8263":4,"8264":4,"8265":3,"8266":1,"8267":2,"8268":3,"8269":3,"8270":2,"8271":1,"8272":2,"8273":3,"8274":3,"8275":2,"8276":4,"8277":3,"8278":4,"8279":4,"8280":4,"8281":3,"8282":5,"8283":4,"8284":1,"8285":2,"8286":4,"8287":3,"8288":2,"8289":1,"8290":5,"8291":1,"8292":3,"8293":4,"8294":4,"8295":1,"8296":3,"8297":1,"8298":1,"8299":3,"8300":2,"8301":3,"8302":2,"8303":3,"8304":5,"8305":3,"8306":2,"8307":4,"8308":4,"8309":3,"8310":3,"8311":4,"8312":3,"8313":4,"8314":2,"8315":3,"8316":4,"8317":2,"8318":4,"8319":3,"8320":4,"8321":3,"8322":2,"8323":5,"8324":3,"8325":4,"8326":3,"8327":2,"8328":4,"8329":4,"8330":3,"8331":3,"8332":4,"8333":2,"8334":3,"8335":2,"8336":5,"8337":3,"8338":2,"8339":3,"8340":3,"8341":3,"8342":3,"8343":1,"8344":3,"8345":3,"8346":3,"8347":3,"8348":3,"8349":2,"8350":2,"8351":3,"8352":4,"8353":2,"8354":3,"8355":3,"8356":4,"8357":4,"8358":4,"8359":3,"8360":3,"8361":1,"8362":2,"8363":3,"8364":1,"8365":2,"8366":4,"8367":2,"8368":5,"8369":1,"8370":4,"8371":4,"8372":3,"8373":1,"8374":3,"8375":2,"8376":3,"8377":4,"8378":4,"8379":2,"8380":2,"8381":2,"8382":3,"8383":4,"8384":4,"8385":3,"8386":4,"8387":5,"8388":5,"8389":2,"8390":3,"8391":2,"8392":4,"8393":2,"8394":1,"8395":3,"8396":4,"8397":4,"8398":5,"8399":3,"8400":3,"8401":4,"8402":2,"8403":5,"8404":2,"8405":2,"8406":3,"8407":2,"8408":5,"8409":3,"8410":3,"8411":3,"8412":2,"8413":2,"8414":1,"8415":2,"8416":4,"8417":2,"8418":3,"8419":3,"8420":4,"8421":2,"8422":2,"8423":2,"8424":4,"8425":4,"8426":3,"8427":3,"8428":3,"8429":2,"8430":2,"8431":3,"8432":2,"8433":5,"8434":3,"8435":1,"8436":3,"8437":1,"8438":3,"8439":3,"8440":1,"8441":4,"8442":3,"8443":2,"8444":2,"8445":3,"8446":3,"8447":4,"8448":5,"8449":2,"8450":4,"8451":3,"8452":5,"8453":3,"8454":3,"8455":2,"8456":2,"8457":3,"8458":2,"8459":4,"8460":4,"8461":4,"8462":4,"8463":3,"8464":5,"8465":3,"8466":2,"8467":2,"8468":3,"8469":5,"8470":5,"8471":1,"8472":2,"8473":2,"8474":5,"8475":4,"8476":3,"8477":2,"8478":2,"8479":4,"8480":2,"8481":4,"8482":4,"8483":3,"8484":2,"8485":3,"8486":3,"8487":3,"8488":3,"8489":5,"8490":3,"8491":4,"8492":4,"8493":5,"8494":3,"8495":3,"8496":3,"8497":4,"8498":4,"8499":2,"8500":3,"8501":2,"8502":2,"8503":3,"8504":2,"8505":3,"8506":2,"8507":1,"8508":4,"8509":3,"8510":3,"8511":1,"8512":4,"8513":2,"8514":2,"8515":5,"8516":3,"8517":2,"8518":1,"8519":4,"8520":4,"8521":4,"8522":2,"8523":2,"8524":2,"8525":3,"8526":4,"8527":3,"8528":5,"8529":3,"8530":1,"8531":3,"8532":3,"8533":3,"8534":3,"8535":3,"8536":2,"8537":3,"8538":4,"8539":2,"8540":2,"8541":2,"8542":1,"8543":3,"8544":3,"8545":5,"8546":3,"8547":4,"8548":2,"8549":3,"8550":4,"8551":3,"8552":2,"8553":4,"8554":3,"8555":4,"8556":5,"8557":2,"8558":2,"8559":3,"8560":1,"8561":3,"8562":5,"8563":4,"8564":3,"8565":1,"8566":3,"8567":2,"8568":4,"8569":3,"8570":2,"8571":4,"8572":4,"8573":5,"8574":3,"8575":1,"8576":3,"8577":4,"8578":1,"8579":2,"8580":5,"8581":2,"8582":3,"8583":1,"8584":3,"8585":2,"8586":4,"8587":4,"8588":3,"8589":4,"8590":3,"8591":3,"8592":4,"8593":5,"8594":3,"8595":3,"8596":4,"8597":2,"8598":4,"8599":3,"8600":1,"8601":3,"8602":2,"8603":4,"8604":5,"8605":3,"8606":4,"8607":3,"8608":1,"8609":3,"8610":5,"8611":4,"8612":5,"8613":4,"8614":3,"8615":2,"8616":3,"8617":3,"8618":1,"8619":4,"8620":5,"8621":4,"8622":2,"8623":3,"8624":1,"8625":1,"8626":1,"8627":1,"8628":4,"8629":3,"8630":3,"8631":4,"8632":4,"8633":3,"8634":3,"8635":5,"8636":2,"8637":1,"8638":3,"8639":5,"8640":4,"8641":3,"8642":4,"8643":4,"8644":3,"8645":2,"8646":4,"8647":3,"8648":4,"8649":1,"8650":2,"8651":5,"8652":3,"8653":1,"8654":3,"8655":2,"8656":2,"8657":2,"8658":4,"8659":4,"8660":3,"8661":2,"8662":3,"8663":3,"8664":2,"8665":3,"8666":4,"8667":2,"8668":4,"8669":3,"8670":3,"8671":3,"8672":2,"8673":3,"8674":5,"8675":3,"8676":4,"8677":3,"8678":3,"8679":4,"8680":1,"8681":3,"8682":3,"8683":3,"8684":2,"8685":3,"8686":1,"8687":5,"8688":3,"8689":1,"8690":5,"8691":4,"8692":4,"8693":3,"8694":2,"8695":5,"8696":4,"8697":1,"8698":1,"8699":3,"8700":2,"8701":1,"8702":3,"8703":3,"8704":2,"8705":4,"8706":4,"8707":4,"8708":4,"8709":3,"8710":4,"8711":3,"8712":3,"8713":1,"8714":3,"8715":2,"8716":4,"8717":3,"8718":5,"8719":3,"8720":4,"8721":1,"8722":3,"8723":3,"8724":3,"8725":2,"8726":2,"8727":5,"8728":3,"8729":3,"8730":4,"8731":3,"8732":3,"8733":2,"8734":4,"8735":4,"8736":3,"8737":2,"8738":4,"8739":3,"8740":3,"8741":1,"8742":4,"8743":4,"8744":2,"8745":2,"8746":3,"8747":3,"8748":2,"8749":4,"8750":2,"8751":3,"8752":4,"8753":3,"8754":4,"8755":3,"8756":4,"8757":3,"8758":3,"8759":2,"8760":3,"8761":2,"8762":3,"8763":5,"8764":4,"8765":2,"8766":3,"8767":1,"8768":2,"8769":4,"8770":2,"8771":4,"8772":2,"8773":3,"8774":4,"8775":1,"8776":3,"8777":2,"8778":5,"8779":2,"8780":2,"8781":4,"8782":5,"8783":4,"8784":4,"8785":4,"8786":2,"8787":3,"8788":2,"8789":2,"8790":3,"8791":3,"8792":3,"8793":1,"8794":4,"8795":3,"8796":3,"8797":4,"8798":3,"8799":2,"8800":3,"8801":4,"8802":2,"8803":2,"8804":3,"8805":2,"8806":4,"8807":4,"8808":3,"8809":3,"8810":3,"8811":1,"8812":2,"8813":4,"8814":4,"8815":5,"8816":4,"8817":2,"8818":5,"8819":4,"8820":4,"8821":1,"8822":3,"8823":4,"8824":5,"8825":3,"8826":5,"8827":3,"8828":3,"8829":2,"8830":2,"8831":4,"8832":2,"8833":4,"8834":4,"8835":2,"8836":1,"8837":4,"8838":3,"8839":5,"8840":1,"8841":2,"8842":3,"8843":2,"8844":4,"8845":5,"8846":3,"8847":2,"8848":2,"8849":4,"8850":5,"8851":3,"8852":1,"8853":3,"8854":4,"8855":2,"8856":5,"8857":3,"8858":3,"8859":3,"8860":2,"8861":2,"8862":3,"8863":2,"8864":3,"8865":4,"8866":1,"8867":4,"8868":3,"8869":3,"8870":2,"8871":4,"8872":2,"8873":3,"8874":4,"8875":3,"8876":3,"8877":2,"8878":4,"8879":2,"8880":3,"8881":5,"8882":3,"8883":1,"8884":3,"8885":3,"8886":4,"8887":5,"8888":4,"8889":4,"8890":3,"8891":5,"8892":2,"8893":5,"8894":4,"8895":3,"8896":4,"8897":2,"8898":2,"8899":1,"8900":2,"8901":1,"8902":2,"8903":2,"8904":2,"8905":2,"8906":4,"8907":2,"8908":3,"8909":1,"8910":2,"8911":4,"8912":4,"8913":3,"8914":3,"8915":5,"8916":2,"8917":3,"8918":3,"8919":3,"8920":4,"8921":3,"8922":3,"8923":2,"8924":2,"8925":3,"8926":2,"8927":5,"8928":4,"8929":2,"8930":2,"8931":3,"8932":2,"8933":2,"8934":3,"8935":4,"8936":3,"8937":3,"8938":3,"8939":4,"8940":2,"8941":5,"8942":2,"8943":3,"8944":5,"8945":3,"8946":4,"8947":4,"8948":3,"8949":3,"8950":3,"8951":4,"8952":1,"8953":5,"8954":2,"8955":2,"8956":5,"8957":5,"8958":2,"8959":3,"8960":5,"8961":3,"8962":3,"8963":1,"8964":4,"8965":1,"8966":4,"8967":1,"8968":2,"8969":3,"8970":4,"8971":1,"8972":1,"8973":4,"8974":5,"8975":5,"8976":3,"8977":1,"8978":3,"8979":1,"8980":1,"8981":3,"8982":4,"8983":2,"8984":3,"8985":2,"8986":3,"8987":2,"8988":2,"8989":1,"8990":2,"8991":3,"8992":1,"8993":1,"8994":2,"8995":3,"8996":3,"8997":2,"8998":3,"8999":1,"9000":3,"9001":3,"9002":1,"9003":2,"9004":3,"9005":4,"9006":1,"9007":3,"9008":2,"9009":2,"9010":3,"9011":3,"9012":3,"9013":3,"9014":3,"9015":2,"9016":1,"9017":2,"9018":2,"9019":4,"9020":3,"9021":3,"9022":4,"9023":3,"9024":2,"9025":4,"9026":3,"9027":4,"9028":2,"9029":2,"9030":2,"9031":1,"9032":4,"9033":4,"9034":2,"9035":2,"9036":3,"9037":3,"9038":3,"9039":3,"9040":2,"9041":4,"9042":3,"9043":4,"9044":2,"9045":4,"9046":4,"9047":5,"9048":3,"9049":4,"9050":2,"9051":5,"9052":3,"9053":2,"9054":2,"9055":3,"9056":3,"9057":3,"9058":4,"9059":4,"9060":3,"9061":5,"9062":3,"9063":4,"9064":3,"9065":4,"9066":3,"9067":3,"9068":3,"9069":2,"9070":4,"9071":4,"9072":2,"9073":4,"9074":1,"9075":1,"9076":3,"9077":1,"9078":2,"9079":4,"9080":4,"9081":3,"9082":3,"9083":3,"9084":4,"9085":3,"9086":3,"9087":5,"9088":2,"9089":2,"9090":2,"9091":3,"9092":3,"9093":4,"9094":2,"9095":3,"9096":4,"9097":3,"9098":2,"9099":4,"9100":2,"9101":1,"9102":3,"9103":4,"9104":3,"9105":3,"9106":1,"9107":3,"9108":2,"9109":1,"9110":3,"9111":3,"9112":3,"9113":4,"9114":4,"9115":1,"9116":4,"9117":4,"9118":4,"9119":4,"9120":3,"9121":2,"9122":4,"9123":5,"9124":2,"9125":4,"9126":2,"9127":5,"9128":3,"9129":4,"9130":3,"9131":2,"9132":3,"9133":3,"9134":4,"9135":3,"9136":3,"9137":3,"9138":1,"9139":4,"9140":2,"9141":4,"9142":4,"9143":4,"9144":4,"9145":3,"9146":3,"9147":5,"9148":2,"9149":3,"9150":2,"9151":3,"9152":4,"9153":3,"9154":5,"9155":4,"9156":4,"9157":3,"9158":2,"9159":2,"9160":3,"9161":4,"9162":2,"9163":2,"9164":3,"9165":3,"9166":3,"9167":1,"9168":3,"9169":3,"9170":3,"9171":3,"9172":3,"9173":4,"9174":2,"9175":2,"9176":4,"9177":4,"9178":1,"9179":2,"9180":3,"9181":2,"9182":2,"9183":4,"9184":2,"9185":5,"9186":4,"9187":3,"9188":2,"9189":4,"9190":2,"9191":4,"9192":3,"9193":1,"9194":4,"9195":3,"9196":5,"9197":4,"9198":4,"9199":4,"9200":2,"9201":2,"9202":4,"9203":4,"9204":3,"9205":4,"9206":4,"9207":3,"9208":2,"9209":3,"9210":3,"9211":2,"9212":1,"9213":2,"9214":3,"9215":3,"9216":4,"9217":5,"9218":5,"9219":1,"9220":1,"9221":2,"9222":3,"9223":3,"9224":4,"9225":3,"9226":4,"9227":4,"9228":2,"9229":4,"9230":3,"9231":4,"9232":2,"9233":4,"9234":2,"9235":4,"9236":3,"9237":4,"9238":3,"9239":3,"9240":2,"9241":3,"9242":3,"9243":3,"9244":4,"9245":3,"9246":2,"9247":3,"9248":2,"9249":5,"9250":1,"9251":4,"9252":1,"9253":3,"9254":3,"9255":4,"9256":5,"9257":2,"9258":2,"9259":5,"9260":1,"9261":5,"9262":1,"9263":3,"9264":3,"9265":2,"9266":2,"9267":3,"9268":2,"9269":3,"9270":3,"9271":1,"9272":2,"9273":4,"9274":4,"9275":1,"9276":1,"9277":3,"9278":3,"9279":1,"9280":4,"9281":3,"9282":4,"9283":4,"9284":3,"9285":2,"9286":5,"9287":2,"9288":4,"9289":2,"9290":2,"9291":2,"9292":4,"9293":2,"9294":3,"9295":3,"9296":3,"9297":3,"9298":4,"9299":3,"9300":2,"9301":2,"9302":2,"9303":4,"9304":2,"9305":3,"9306":4,"9307":3,"9308":1,"9309":4,"9310":1,"9311":4,"9312":3,"9313":2,"9314":4,"9315":2,"9316":1,"9317":2,"9318":3,"9319":4,"9320":3,"9321":4,"9322":3,"9323":3,"9324":4,"9325":3,"9326":3,"9327":4,"9328":1,"9329":2,"9330":4,"9331":3,"9332":3,"9333":2,"9334":3,"9335":1,"9336":2,"9337":2,"9338":3,"9339":2,"9340":2,"9341":2,"9342":4,"9343":2,"9344":4,"9345":3,"9346":2,"9347":2,"9348":5,"9349":4,"9350":5,"9351":3,"9352":2,"9353":3,"9354":5,"9355":1,"9356":5,"9357":5,"9358":3,"9359":3,"9360":4,"9361":4,"9362":4,"9363":2,"9364":3,"9365":4,"9366":1,"9367":4,"9368":3,"9369":1,"9370":4,"9371":3,"9372":4,"9373":1,"9374":2,"9375":4,"9376":4,"9377":3,"9378":5,"9379":1,"9380":4,"9381":3,"9382":4,"9383":3,"9384":4,"9385":3,"9386":5,"9387":4,"9388":5,"9389":1,"9390":3,"9391":3,"9392":3,"9393":2,"9394":4,"9395":2,"9396":3,"9397":3,"9398":2,"9399":2,"9400":3,"9401":1,"9402":4,"9403":1,"9404":3,"9405":4,"9406":2,"9407":3,"9408":3,"9409":5,"9410":3,"9411":5,"9412":4,"9413":5,"9414":4,"9415":3,"9416":3,"9417":1,"9418":3,"9419":5,"9420":3,"9421":3,"9422":2,"9423":2,"9424":3,"9425":2,"9426":3,"9427":2,"9428":3,"9429":3,"9430":3,"9431":2,"9432":4,"9433":3,"9434":5,"9435":3,"9436":1,"9437":2,"9438":5,"9439":2,"9440":4,"9441":1,"9442":2,"9443":2,"9444":2,"9445":3,"9446":3,"9447":2,"9448":3,"9449":3,"9450":4,"9451":4,"9452":3,"9453":5,"9454":3,"9455":2,"9456":3,"9457":3,"9458":2,"9459":5,"9460":3,"9461":3,"9462":2,"9463":2,"9464":2,"9465":2,"9466":4,"9467":2,"9468":3,"9469":1,"9470":2,"9471":3,"9472":3,"9473":4,"9474":3,"9475":2,"9476":5,"9477":1,"9478":4,"9479":5,"9480":2,"9481":3,"9482":2,"9483":4,"9484":4,"9485":2,"9486":4,"9487":2,"9488":1,"9489":3,"9490":4,"9491":2,"9492":3,"9493":2,"9494":4,"9495":4,"9496":3,"9497":3,"9498":1,"9499":3,"9500":2,"9501":2,"9502":5,"9503":3,"9504":3,"9505":2,"9506":2,"9507":2,"9508":4,"9509":3,"9510":5,"9511":2,"9512":4,"9513":2,"9514":1,"9515":3,"9516":3,"9517":3,"9518":3,"9519":2,"9520":5,"9521":2,"9522":2,"9523":4,"9524":1,"9525":3,"9526":4,"9527":2,"9528":3,"9529":5,"9530":5,"9531":2,"9532":3,"9533":3,"9534":5,"9535":4,"9536":3,"9537":4,"9538":4,"9539":2,"9540":3,"9541":4,"9542":2,"9543":4,"9544":1,"9545":1,"9546":4,"9547":3,"9548":2,"9549":3,"9550":2,"9551":4,"9552":4,"9553":2,"9554":3,"9555":4,"9556":2,"9557":3,"9558":1,"9559":3,"9560":4,"9561":1,"9562":3,"9563":3,"9564":3,"9565":1,"9566":3,"9567":4,"9568":3,"9569":4,"9570":5,"9571":1,"9572":2,"9573":4,"9574":3,"9575":1,"9576":4,"9577":3,"9578":5,"9579":4,"9580":2,"9581":3,"9582":3,"9583":1,"9584":2,"9585":5,"9586":3,"9587":3,"9588":1,"9589":3,"9590":2,"9591":4,"9592":3,"9593":2,"9594":4,"9595":5,"9596":2,"9597":4,"9598":1,"9599":3,"9600":4,"9601":4,"9602":3,"9603":4,"9604":3,"9605":3,"9606":1,"9607":3,"9608":3,"9609":3,"9610":2,"9611":4,"9612":5,"9613":2,"9614":3,"9615":5,"9616":1,"9617":4,"9618":3,"9619":2,"9620":5,"9621":2,"9622":1,"9623":4,"9624":3,"9625":4,"9626":1,"9627":4,"9628":1,"9629":3,"9630":3,"9631":2,"9632":2,"9633":4,"9634":3,"9635":3,"9636":2,"9637":3,"9638":3,"9639":4,"9640":3,"9641":3,"9642":1,"9643":4,"9644":4,"9645":3,"9646":3,"9647":4,"9648":3,"9649":3,"9650":4,"9651":3,"9652":4,"9653":3,"9654":4,"9655":4,"9656":1,"9657":3,"9658":3,"9659":3,"9660":3,"9661":3,"9662":3,"9663":3,"9664":5,"9665":2,"9666":4,"9667":5,"9668":4,"9669":3,"9670":3,"9671":3,"9672":4,"9673":4,"9674":5,"9675":4,"9676":4,"9677":1,"9678":4,"9679":3,"9680":3,"9681":2,"9682":4,"9683":4,"9684":4,"9685":4,"9686":4,"9687":5,"9688":2,"9689":2,"9690":4,"9691":5,"9692":2,"9693":2,"9694":3,"9695":4,"9696":4,"9697":4,"9698":3,"9699":2,"9700":2,"9701":5,"9702":3,"9703":3,"9704":5,"9705":4,"9706":3,"9707":3,"9708":4,"9709":4,"9710":1,"9711":3,"9712":3,"9713":4,"9714":3,"9715":5,"9716":2,"9717":3,"9718":3,"9719":4,"9720":4,"9721":5,"9722":2,"9723":3,"9724":1,"9725":2,"9726":2,"9727":4,"9728":4,"9729":3,"9730":3,"9731":4,"9732":4,"9733":4,"9734":2,"9735":3,"9736":4,"9737":4,"9738":2,"9739":2,"9740":4,"9741":3,"9742":4,"9743":3,"9744":3,"9745":2,"9746":4,"9747":4,"9748":2,"9749":3,"9750":4,"9751":2,"9752":2,"9753":4,"9754":3,"9755":2,"9756":2,"9757":5,"9758":1,"9759":2,"9760":3,"9761":3,"9762":2,"9763":2,"9764":2,"9765":5,"9766":4,"9767":4,"9768":3,"9769":2,"9770":4,"9771":2,"9772":4,"9773":4,"9774":4,"9775":3,"9776":3,"9777":4,"9778":2,"9779":4,"9780":5,"9781":4,"9782":1,"9783":2,"9784":3,"9785":5,"9786":4,"9787":4,"9788":3,"9789":3,"9790":2,"9791":4,"9792":3,"9793":2,"9794":5,"9795":1,"9796":3,"9797":1,"9798":2,"9799":1,"9800":3,"9801":3,"9802":4,"9803":3,"9804":3,"9805":2,"9806":3,"9807":2,"9808":3,"9809":2,"9810":3,"9811":2,"9812":1,"9813":1,"9814":4,"9815":4,"9816":2,"9817":4,"9818":3,"9819":1,"9820":4,"9821":5,"9822":1,"9823":3,"9824":1,"9825":3,"9826":2,"9827":2,"9828":4,"9829":5,"9830":2,"9831":2,"9832":3,"9833":3,"9834":4,"9835":1,"9836":5,"9837":4,"9838":4,"9839":4,"9840":3,"9841":2,"9842":4,"9843":4,"9844":1,"9845":5,"9846":2,"9847":2,"9848":3,"9849":2,"9850":3,"9851":3,"9852":3,"9853":3,"9854":3,"9855":3,"9856":4,"9857":3,"9858":2,"9859":3,"9860":4,"9861":5,"9862":4,"9863":3,"9864":3,"9865":5,"9866":1,"9867":3,"9868":1,"9869":2,"9870":1,"9871":4,"9872":5,"9873":2,"9874":2,"9875":2,"9876":2,"9877":4,"9878":3,"9879":1,"9880":2,"9881":2,"9882":1,"9883":3,"9884":3,"9885":5,"9886":5,"9887":2,"9888":5,"9889":3,"9890":3,"9891":4,"9892":4,"9893":4,"9894":3,"9895":4,"9896":2,"9897":2,"9898":3,"9899":1,"9900":3,"9901":4,"9902":4,"9903":4,"9904":4,"9905":4,"9906":2,"9907":2,"9908":4,"9909":5,"9910":3,"9911":3,"9912":2,"9913":5,"9914":3,"9915":2,"9916":3,"9917":3,"9918":5,"9919":2,"9920":5,"9921":4,"9922":3,"9923":2,"9924":2,"9925":2,"9926":4,"9927":3,"9928":3,"9929":4,"9930":1,"9931":2,"9932":3,"9933":3,"9934":4,"9935":5,"9936":3,"9937":5,"9938":4,"9939":5,"9940":2,"9941":3,"9942":3,"9943":3,"9944":2,"9945":1,"9946":2,"9947":3,"9948":2,"9949":3,"9950":4,"9951":5,"9952":2,"9953":2,"9954":2,"9955":3,"9956":4,"9957":5,"9958":1,"9959":3,"9960":2,"9961":4,"9962":1,"9963":5,"9964":5,"9965":4,"9966":1,"9967":2,"9968":3,"9969":3,"9970":2,"9971":2,"9972":3,"9973":5,"9974":3,"9975":3,"9976":4,"9977":4,"9978":2,"9979":4,"9980":2,"9981":2,"9982":2,"9983":3,"9984":4,"9985":3,"9986":3,"9987":3,"9988":4,"9989":2,"9990":2,"9991":3,"9992":3,"9993":5,"9994":4,"9995":3,"9996":3,"9997":2,"9998":4,"9999":4,"10000":2,"10001":5,"10002":4,"10003":3,"10004":3,"10005":3,"10006":2,"10007":2,"10008":4,"10009":3,"10010":4,"10011":2,"10012":3,"10013":4,"10014":5,"10015":2,"10016":4,"10017":3,"10018":4,"10019":1,"10020":3,"10021":3,"10022":1,"10023":2,"10024":3,"10025":4,"10026":4,"10027":4,"10028":5,"10029":2,"10030":5,"10031":2,"10032":5,"10033":4,"10034":3,"10035":5,"10036":1,"10037":3,"10038":3,"10039":4,"10040":3,"10041":3,"10042":2,"10043":4,"10044":3,"10045":1,"10046":5,"10047":4,"10048":4,"10049":5,"10050":2,"10051":4,"10052":5,"10053":2,"10054":4,"10055":3,"10056":2,"10057":2,"10058":4,"10059":1,"10060":4,"10061":2,"10062":3,"10063":2,"10064":3,"10065":1,"10066":4,"10067":3,"10068":1,"10069":3,"10070":4,"10071":4,"10072":4,"10073":4,"10074":2,"10075":5,"10076":1,"10077":4,"10078":3,"10079":2,"10080":4,"10081":3,"10082":4,"10083":5,"10084":1,"10085":3,"10086":3,"10087":4,"10088":4,"10089":1,"10090":3,"10091":4,"10092":3,"10093":3,"10094":4,"10095":3,"10096":3,"10097":3,"10098":1,"10099":1,"10100":3,"10101":1,"10102":2,"10103":1,"10104":3,"10105":2,"10106":5,"10107":4,"10108":2,"10109":2,"10110":4,"10111":3,"10112":4,"10113":3,"10114":5,"10115":3,"10116":4,"10117":3,"10118":5,"10119":2,"10120":1,"10121":1,"10122":2,"10123":4,"10124":5,"10125":1,"10126":4,"10127":2,"10128":2,"10129":2,"10130":4,"10131":3,"10132":2,"10133":2,"10134":5,"10135":3,"10136":1,"10137":2,"10138":2,"10139":3,"10140":4,"10141":3,"10142":2,"10143":2,"10144":4,"10145":3,"10146":3,"10147":2,"10148":3,"10149":3,"10150":1,"10151":2,"10152":3,"10153":3,"10154":1,"10155":4,"10156":4,"10157":3,"10158":3,"10159":4,"10160":5,"10161":4,"10162":1,"10163":5,"10164":4,"10165":2,"10166":3,"10167":3,"10168":4,"10169":3,"10170":4,"10171":3,"10172":1,"10173":5,"10174":4,"10175":2,"10176":3,"10177":2,"10178":3,"10179":3,"10180":2,"10181":4,"10182":3,"10183":3,"10184":3,"10185":4,"10186":3,"10187":5,"10188":4,"10189":1,"10190":4,"10191":2,"10192":4,"10193":4,"10194":2,"10195":4,"10196":3,"10197":4,"10198":4,"10199":3,"10200":3,"10201":3,"10202":4,"10203":3,"10204":4,"10205":3,"10206":4,"10207":3,"10208":2,"10209":2,"10210":3,"10211":3,"10212":2,"10213":1,"10214":3,"10215":2,"10216":4,"10217":4,"10218":3,"10219":3,"10220":1,"10221":1,"10222":3,"10223":2,"10224":2,"10225":2,"10226":2,"10227":5,"10228":2,"10229":3,"10230":3,"10231":5,"10232":3,"10233":1,"10234":3,"10235":4,"10236":2,"10237":4,"10238":4,"10239":2,"10240":5,"10241":3,"10242":2,"10243":2,"10244":1,"10245":4,"10246":4,"10247":2,"10248":1,"10249":2,"10250":4,"10251":4,"10252":4,"10253":4,"10254":4,"10255":3,"10256":2,"10257":4,"10258":4,"10259":1,"10260":3,"10261":2,"10262":5,"10263":3,"10264":3,"10265":3,"10266":4,"10267":2,"10268":3,"10269":3,"10270":3,"10271":1,"10272":5,"10273":3,"10274":3,"10275":2,"10276":2,"10277":1,"10278":2,"10279":4,"10280":3,"10281":4,"10282":3,"10283":3,"10284":1,"10285":3,"10286":2,"10287":3,"10288":3,"10289":5,"10290":2,"10291":3,"10292":2,"10293":3,"10294":4,"10295":5,"10296":1,"10297":3,"10298":4,"10299":3,"10300":3,"10301":1,"10302":3,"10303":2,"10304":4,"10305":4,"10306":2,"10307":3,"10308":3,"10309":3,"10310":3,"10311":3,"10312":4,"10313":1,"10314":3,"10315":3,"10316":4,"10317":4,"10318":3,"10319":2,"10320":1,"10321":3,"10322":3,"10323":3,"10324":3,"10325":3,"10326":4,"10327":1,"10328":3,"10329":3,"10330":5,"10331":3,"10332":4,"10333":5,"10334":3,"10335":3,"10336":2,"10337":3,"10338":3,"10339":2,"10340":4,"10341":2,"10342":4,"10343":1,"10344":4,"10345":3,"10346":5,"10347":5,"10348":3,"10349":3,"10350":5,"10351":4,"10352":3,"10353":2,"10354":3,"10355":3,"10356":3,"10357":3,"10358":4,"10359":3,"10360":3,"10361":2,"10362":4,"10363":5,"10364":3,"10365":4,"10366":1,"10367":3,"10368":2,"10369":1,"10370":1,"10371":1,"10372":2,"10373":3,"10374":3,"10375":4,"10376":4,"10377":1,"10378":4,"10379":4,"10380":4,"10381":3,"10382":3,"10383":4,"10384":3,"10385":3,"10386":4,"10387":3,"10388":4,"10389":4,"10390":1,"10391":1,"10392":5,"10393":4,"10394":3,"10395":4,"10396":5,"10397":1,"10398":3,"10399":3,"10400":3,"10401":3,"10402":1,"10403":3,"10404":1,"10405":4,"10406":4,"10407":3,"10408":5,"10409":5,"10410":3,"10411":2,"10412":1,"10413":4,"10414":4,"10415":3,"10416":2,"10417":2,"10418":4,"10419":2,"10420":4,"10421":3,"10422":1,"10423":3,"10424":3,"10425":3,"10426":3,"10427":3,"10428":3,"10429":1,"10430":3,"10431":2,"10432":3,"10433":1,"10434":3,"10435":3,"10436":3,"10437":4,"10438":5,"10439":5,"10440":3,"10441":4,"10442":1,"10443":2,"10444":4,"10445":2,"10446":5,"10447":3,"10448":3,"10449":2,"10450":3,"10451":2,"10452":2,"10453":5,"10454":2,"10455":4,"10456":4,"10457":1,"10458":4,"10459":3,"10460":1,"10461":3,"10462":2,"10463":3,"10464":2,"10465":5,"10466":4,"10467":2,"10468":4,"10469":3,"10470":4,"10471":3,"10472":5,"10473":4,"10474":5,"10475":3,"10476":2,"10477":2,"10478":4,"10479":4,"10480":3,"10481":1,"10482":4,"10483":2,"10484":2,"10485":2,"10486":3,"10487":4,"10488":5,"10489":5,"10490":1,"10491":2,"10492":4,"10493":4,"10494":5,"10495":4,"10496":3,"10497":4,"10498":2,"10499":4,"10500":2,"10501":2,"10502":4,"10503":3,"10504":3,"10505":3,"10506":4,"10507":1,"10508":3,"10509":4,"10510":4,"10511":3,"10512":3,"10513":3,"10514":4,"10515":2,"10516":2,"10517":4,"10518":4,"10519":2,"10520":4,"10521":4,"10522":1,"10523":1,"10524":2,"10525":4,"10526":2,"10527":4,"10528":2,"10529":2,"10530":3,"10531":4,"10532":4,"10533":4,"10534":4,"10535":4,"10536":3,"10537":2,"10538":3,"10539":4,"10540":1,"10541":5,"10542":1,"10543":1,"10544":4,"10545":4,"10546":4,"10547":3,"10548":4,"10549":3,"10550":5,"10551":4,"10552":3,"10553":3,"10554":2,"10555":2,"10556":4,"10557":3,"10558":3,"10559":3,"10560":1,"10561":3,"10562":3,"10563":3,"10564":4,"10565":3,"10566":3,"10567":2,"10568":5,"10569":3,"10570":4,"10571":5,"10572":4,"10573":2,"10574":3,"10575":1,"10576":3,"10577":3,"10578":1,"10579":3,"10580":5,"10581":4,"10582":3,"10583":2,"10584":3,"10585":5,"10586":3,"10587":3,"10588":3,"10589":4,"10590":2,"10591":3,"10592":3,"10593":2,"10594":1,"10595":3,"10596":1,"10597":2,"10598":2,"10599":3,"10600":4,"10601":3,"10602":3,"10603":4,"10604":3,"10605":2,"10606":4,"10607":2,"10608":3,"10609":3,"10610":3,"10611":3,"10612":3,"10613":3,"10614":2,"10615":3,"10616":3,"10617":2,"10618":2,"10619":2,"10620":2,"10621":3,"10622":3,"10623":3,"10624":2,"10625":3,"10626":4,"10627":5,"10628":4,"10629":2,"10630":2,"10631":2,"10632":2,"10633":4,"10634":1,"10635":2,"10636":2,"10637":2,"10638":2,"10639":1,"10640":2,"10641":3,"10642":4,"10643":3,"10644":2,"10645":3,"10646":2,"10647":4,"10648":3,"10649":4,"10650":1,"10651":3,"10652":3,"10653":3,"10654":2,"10655":2,"10656":4,"10657":2,"10658":3,"10659":3,"10660":3,"10661":5,"10662":3,"10663":3,"10664":3,"10665":2,"10666":2,"10667":3,"10668":2,"10669":3,"10670":2,"10671":3,"10672":4,"10673":3,"10674":4,"10675":3,"10676":4,"10677":1,"10678":3,"10679":3,"10680":1,"10681":4,"10682":3,"10683":4,"10684":2,"10685":4,"10686":3,"10687":4,"10688":3,"10689":1,"10690":1,"10691":4,"10692":2,"10693":4,"10694":3,"10695":4,"10696":1,"10697":3,"10698":4,"10699":4,"10700":3,"10701":3,"10702":3,"10703":3,"10704":3,"10705":4,"10706":3,"10707":2,"10708":2,"10709":3,"10710":3,"10711":2,"10712":2,"10713":4,"10714":4,"10715":3,"10716":3,"10717":3,"10718":3,"10719":2,"10720":2,"10721":4,"10722":4,"10723":3,"10724":3,"10725":2,"10726":2,"10727":1,"10728":4,"10729":1,"10730":2,"10731":3,"10732":3,"10733":3,"10734":3,"10735":4,"10736":4,"10737":2,"10738":3,"10739":2,"10740":5,"10741":2,"10742":4,"10743":2,"10744":3,"10745":4,"10746":4,"10747":4,"10748":2,"10749":5,"10750":1,"10751":4,"10752":4,"10753":1,"10754":4,"10755":3,"10756":4,"10757":4,"10758":2,"10759":4,"10760":2,"10761":2,"10762":4,"10763":3,"10764":3,"10765":3,"10766":3,"10767":3,"10768":5,"10769":5,"10770":3,"10771":1,"10772":2,"10773":4,"10774":4,"10775":2,"10776":3,"10777":4,"10778":3,"10779":3,"10780":3,"10781":1,"10782":4,"10783":3,"10784":2,"10785":3,"10786":4,"10787":3,"10788":2,"10789":5,"10790":3,"10791":3,"10792":3,"10793":3,"10794":4,"10795":4,"10796":2,"10797":4,"10798":1,"10799":4,"10800":3,"10801":4,"10802":4,"10803":4,"10804":3,"10805":5,"10806":3,"10807":2,"10808":3,"10809":4,"10810":2,"10811":4,"10812":4,"10813":3,"10814":4,"10815":2,"10816":4,"10817":2,"10818":3,"10819":4,"10820":5,"10821":2,"10822":3,"10823":3,"10824":1,"10825":2,"10826":5,"10827":4,"10828":3,"10829":4,"10830":4,"10831":4,"10832":1,"10833":4,"10834":2,"10835":2,"10836":2,"10837":3,"10838":3,"10839":4,"10840":5,"10841":3,"10842":3,"10843":5,"10844":4,"10845":4,"10846":1,"10847":3,"10848":5,"10849":2,"10850":4,"10851":3,"10852":3,"10853":3,"10854":5,"10855":2,"10856":3,"10857":2,"10858":3,"10859":2,"10860":4,"10861":2,"10862":4,"10863":3,"10864":2,"10865":4,"10866":3,"10867":4,"10868":2,"10869":2,"10870":2,"10871":3,"10872":3,"10873":3,"10874":2,"10875":2,"10876":4,"10877":3,"10878":3,"10879":1,"10880":3,"10881":4,"10882":1,"10883":4,"10884":4,"10885":3,"10886":4,"10887":1,"10888":3,"10889":4,"10890":4,"10891":2,"10892":2,"10893":3,"10894":4,"10895":4,"10896":3,"10897":2,"10898":4,"10899":4,"10900":4,"10901":4,"10902":4,"10903":3,"10904":3,"10905":2,"10906":2,"10907":3,"10908":5,"10909":2,"10910":2,"10911":4,"10912":3,"10913":2,"10914":3,"10915":3,"10916":3,"10917":5,"10918":3,"10919":2,"10920":4,"10921":3,"10922":2,"10923":3,"10924":4,"10925":4,"10926":1,"10927":3,"10928":2,"10929":3,"10930":2,"10931":3,"10932":3,"10933":3,"10934":3,"10935":5,"10936":3,"10937":3,"10938":1,"10939":5,"10940":4,"10941":3,"10942":5,"10943":4,"10944":1,"10945":2,"10946":3,"10947":3,"10948":4,"10949":5,"10950":4,"10951":2,"10952":3,"10953":2,"10954":4,"10955":2,"10956":1,"10957":3,"10958":4,"10959":1,"10960":4,"10961":3,"10962":5,"10963":4,"10964":4,"10965":4,"10966":3,"10967":4,"10968":2,"10969":3,"10970":4,"10971":3,"10972":3,"10973":3,"10974":4,"10975":4,"10976":3,"10977":1,"10978":2,"10979":5,"10980":3,"10981":2,"10982":3,"10983":3,"10984":4,"10985":3,"10986":3,"10987":5,"10988":3,"10989":5,"10990":4,"10991":5,"10992":3,"10993":1,"10994":3,"10995":1,"10996":5,"10997":3,"10998":3,"10999":2,"11000":4,"11001":3,"11002":4,"11003":3,"11004":3,"11005":3,"11006":4,"11007":2,"11008":3,"11009":4,"11010":5,"11011":3,"11012":4,"11013":3,"11014":4,"11015":3,"11016":3,"11017":3,"11018":2,"11019":4,"11020":4,"11021":3,"11022":4,"11023":4,"11024":2,"11025":2,"11026":4,"11027":4,"11028":3,"11029":2,"11030":2,"11031":2,"11032":5,"11033":3,"11034":4,"11035":2,"11036":3,"11037":3,"11038":3,"11039":3,"11040":2,"11041":1,"11042":1,"11043":3,"11044":2,"11045":4,"11046":1,"11047":3,"11048":3,"11049":3,"11050":3,"11051":5,"11052":4,"11053":2,"11054":4,"11055":3,"11056":3,"11057":2,"11058":2,"11059":4,"11060":4,"11061":2,"11062":4,"11063":3,"11064":2,"11065":2,"11066":3,"11067":1,"11068":1,"11069":1,"11070":4,"11071":4,"11072":1,"11073":2,"11074":4,"11075":2,"11076":5,"11077":3,"11078":4,"11079":2,"11080":3,"11081":2,"11082":4,"11083":2,"11084":3,"11085":3,"11086":2,"11087":3,"11088":4,"11089":4,"11090":4,"11091":4,"11092":3,"11093":3,"11094":3,"11095":4,"11096":3,"11097":3,"11098":4,"11099":2,"11100":2,"11101":2,"11102":3,"11103":1,"11104":4,"11105":3,"11106":2,"11107":2,"11108":2,"11109":4,"11110":4,"11111":4,"11112":2,"11113":3,"11114":3,"11115":3,"11116":3,"11117":3,"11118":1,"11119":3,"11120":1,"11121":2,"11122":4,"11123":2,"11124":4,"11125":3,"11126":2,"11127":3,"11128":2,"11129":3,"11130":3,"11131":5,"11132":3,"11133":1,"11134":5,"11135":5,"11136":5,"11137":3,"11138":1,"11139":3,"11140":3,"11141":4,"11142":3,"11143":3,"11144":3,"11145":2,"11146":4,"11147":4,"11148":3,"11149":4,"11150":1,"11151":2,"11152":4,"11153":4,"11154":3,"11155":3,"11156":2,"11157":4,"11158":2,"11159":4,"11160":2,"11161":4,"11162":5,"11163":2,"11164":4,"11165":3,"11166":3,"11167":4,"11168":4,"11169":5,"11170":4,"11171":4,"11172":1,"11173":3,"11174":4,"11175":1,"11176":3,"11177":3,"11178":3,"11179":3,"11180":2,"11181":1,"11182":2,"11183":3,"11184":4,"11185":5,"11186":1,"11187":4,"11188":5,"11189":3,"11190":5,"11191":2,"11192":3,"11193":5,"11194":2,"11195":3,"11196":3,"11197":4,"11198":2,"11199":1,"11200":3,"11201":1,"11202":5,"11203":4,"11204":3,"11205":1,"11206":4,"11207":4,"11208":2,"11209":3,"11210":5,"11211":3,"11212":2,"11213":3,"11214":4,"11215":1,"11216":2,"11217":4,"11218":1,"11219":2,"11220":2,"11221":1,"11222":4,"11223":4,"11224":5,"11225":1,"11226":4,"11227":2,"11228":2,"11229":3,"11230":3,"11231":3,"11232":5,"11233":2,"11234":2,"11235":3,"11236":2,"11237":4,"11238":5,"11239":3,"11240":4,"11241":1,"11242":3,"11243":4,"11244":2,"11245":2,"11246":4,"11247":4,"11248":4,"11249":4,"11250":3,"11251":4,"11252":4,"11253":2,"11254":2,"11255":1,"11256":4,"11257":4,"11258":2,"11259":2,"11260":1,"11261":3,"11262":2,"11263":1,"11264":1,"11265":2,"11266":2,"11267":1,"11268":4,"11269":2,"11270":3,"11271":3,"11272":3,"11273":2,"11274":4,"11275":4,"11276":3,"11277":3,"11278":3,"11279":1,"11280":4,"11281":1,"11282":4,"11283":3,"11284":2,"11285":2,"11286":3,"11287":3,"11288":5,"11289":3,"11290":2,"11291":4,"11292":1,"11293":2,"11294":2,"11295":2,"11296":2,"11297":1,"11298":3,"11299":2,"11300":5,"11301":3,"11302":4,"11303":3,"11304":4,"11305":3,"11306":2,"11307":4,"11308":3,"11309":3,"11310":3,"11311":3,"11312":5,"11313":2,"11314":3,"11315":3,"11316":2,"11317":2,"11318":4,"11319":4,"11320":4,"11321":2,"11322":2,"11323":3,"11324":4,"11325":5,"11326":1,"11327":4,"11328":2,"11329":2,"11330":4,"11331":3,"11332":1,"11333":5,"11334":5,"11335":4,"11336":4,"11337":3,"11338":3,"11339":4,"11340":1,"11341":2,"11342":3,"11343":4,"11344":4,"11345":2,"11346":4,"11347":2,"11348":4,"11349":4,"11350":5,"11351":3,"11352":4,"11353":4,"11354":3,"11355":3,"11356":4,"11357":4,"11358":5,"11359":3,"11360":4,"11361":3,"11362":3,"11363":2,"11364":2,"11365":4,"11366":4,"11367":2,"11368":2,"11369":3,"11370":4,"11371":3,"11372":2,"11373":3,"11374":5,"11375":2,"11376":5,"11377":2,"11378":3,"11379":3,"11380":3,"11381":2,"11382":3,"11383":3,"11384":5,"11385":3,"11386":5,"11387":2,"11388":1,"11389":1,"11390":1,"11391":4,"11392":2,"11393":2,"11394":2,"11395":4,"11396":4,"11397":3,"11398":4,"11399":4,"11400":2,"11401":2,"11402":3,"11403":4,"11404":3,"11405":5,"11406":2,"11407":5,"11408":4,"11409":3,"11410":1,"11411":2,"11412":4,"11413":3,"11414":3,"11415":3,"11416":3,"11417":2,"11418":3,"11419":1,"11420":3,"11421":3,"11422":1,"11423":2,"11424":2,"11425":3,"11426":4,"11427":3,"11428":3,"11429":1,"11430":3,"11431":3,"11432":2,"11433":3,"11434":4,"11435":4,"11436":4,"11437":3,"11438":4,"11439":3,"11440":4,"11441":4,"11442":3,"11443":3,"11444":2,"11445":1,"11446":2,"11447":3,"11448":3,"11449":3,"11450":4,"11451":4,"11452":2,"11453":5,"11454":3,"11455":4,"11456":2,"11457":3,"11458":4,"11459":3,"11460":3,"11461":3,"11462":3,"11463":2,"11464":2,"11465":2,"11466":3,"11467":3,"11468":1,"11469":3,"11470":2,"11471":3,"11472":3,"11473":4,"11474":3,"11475":2,"11476":5,"11477":3,"11478":3,"11479":2,"11480":3,"11481":5,"11482":2,"11483":3,"11484":1,"11485":4,"11486":4,"11487":3,"11488":5,"11489":3,"11490":3,"11491":3,"11492":4,"11493":3,"11494":2,"11495":3,"11496":4,"11497":3,"11498":2,"11499":3,"11500":3,"11501":3,"11502":2,"11503":4,"11504":2,"11505":4,"11506":4,"11507":3,"11508":5,"11509":2,"11510":4,"11511":2,"11512":5,"11513":4,"11514":4,"11515":1,"11516":4,"11517":2,"11518":5,"11519":4,"11520":2,"11521":2,"11522":4,"11523":3,"11524":3,"11525":4,"11526":4,"11527":3,"11528":3,"11529":4,"11530":4,"11531":1,"11532":4,"11533":4,"11534":1,"11535":2,"11536":3,"11537":4,"11538":4,"11539":4,"11540":5,"11541":4,"11542":3,"11543":3,"11544":3,"11545":3,"11546":2,"11547":2,"11548":3,"11549":1,"11550":4,"11551":1,"11552":3,"11553":2,"11554":5,"11555":3,"11556":3,"11557":4,"11558":3,"11559":3,"11560":1,"11561":4,"11562":2,"11563":1,"11564":5,"11565":2,"11566":2,"11567":4,"11568":4,"11569":3,"11570":4,"11571":3,"11572":4,"11573":1,"11574":2,"11575":4,"11576":4,"11577":4,"11578":3,"11579":3,"11580":3,"11581":2,"11582":2,"11583":2,"11584":4,"11585":1,"11586":3,"11587":3,"11588":4,"11589":3,"11590":4,"11591":2,"11592":3,"11593":4,"11594":2,"11595":3,"11596":3,"11597":5,"11598":4,"11599":3,"11600":4,"11601":4,"11602":4,"11603":4,"11604":4,"11605":3,"11606":4,"11607":3,"11608":4,"11609":2,"11610":1,"11611":5,"11612":3,"11613":5,"11614":1,"11615":1,"11616":4,"11617":3,"11618":3,"11619":3,"11620":4,"11621":5,"11622":3,"11623":5,"11624":2,"11625":3,"11626":2,"11627":2,"11628":4,"11629":3,"11630":2,"11631":3,"11632":3,"11633":2,"11634":4,"11635":4,"11636":3,"11637":3,"11638":3,"11639":3,"11640":3,"11641":2,"11642":4,"11643":5,"11644":4,"11645":4,"11646":4,"11647":2,"11648":4,"11649":3,"11650":2,"11651":3,"11652":3,"11653":4,"11654":3,"11655":3,"11656":3,"11657":2,"11658":2,"11659":2,"11660":4,"11661":3,"11662":2,"11663":3,"11664":2,"11665":4,"11666":3,"11667":2,"11668":2,"11669":1,"11670":3,"11671":3,"11672":2,"11673":2,"11674":3,"11675":2,"11676":1,"11677":4,"11678":3,"11679":5,"11680":5,"11681":1,"11682":3,"11683":3,"11684":2,"11685":2,"11686":1,"11687":2,"11688":2,"11689":2,"11690":2,"11691":3,"11692":3,"11693":3,"11694":3,"11695":3,"11696":4,"11697":3,"11698":4,"11699":3,"11700":4,"11701":3,"11702":3,"11703":3,"11704":3,"11705":4,"11706":2,"11707":4,"11708":3,"11709":3,"11710":3,"11711":3,"11712":3,"11713":2,"11714":4,"11715":3,"11716":1,"11717":3,"11718":4,"11719":4,"11720":3,"11721":3,"11722":3,"11723":4,"11724":2,"11725":2,"11726":3,"11727":3,"11728":4,"11729":3,"11730":3,"11731":1,"11732":2,"11733":2,"11734":5,"11735":2,"11736":3,"11737":3,"11738":3,"11739":3,"11740":3,"11741":3,"11742":3,"11743":3,"11744":5,"11745":2,"11746":3,"11747":4,"11748":4,"11749":3,"11750":3,"11751":4,"11752":1,"11753":1,"11754":3,"11755":2,"11756":4,"11757":1,"11758":1,"11759":3,"11760":2,"11761":4,"11762":5,"11763":4,"11764":5,"11765":3,"11766":1,"11767":3,"11768":4,"11769":5,"11770":1,"11771":4,"11772":3,"11773":1,"11774":4,"11775":3,"11776":3,"11777":2,"11778":3,"11779":3,"11780":3,"11781":3,"11782":3,"11783":3,"11784":3,"11785":4,"11786":5,"11787":1,"11788":4,"11789":2,"11790":4,"11791":2,"11792":5,"11793":1,"11794":2,"11795":4,"11796":3,"11797":2,"11798":4,"11799":5,"11800":1,"11801":3,"11802":3,"11803":4,"11804":4,"11805":3,"11806":2,"11807":3,"11808":1,"11809":4,"11810":3,"11811":2,"11812":3,"11813":2,"11814":4,"11815":4,"11816":4,"11817":3,"11818":2,"11819":3,"11820":3,"11821":4,"11822":4,"11823":3,"11824":2,"11825":2,"11826":1,"11827":2,"11828":3,"11829":2,"11830":3,"11831":4,"11832":1,"11833":4,"11834":5,"11835":3,"11836":2,"11837":4,"11838":1,"11839":2,"11840":5,"11841":4,"11842":4,"11843":4,"11844":4,"11845":4,"11846":3,"11847":3,"11848":4,"11849":3,"11850":4,"11851":3,"11852":4,"11853":2,"11854":3,"11855":2,"11856":3,"11857":2,"11858":4,"11859":3,"11860":5,"11861":1,"11862":4,"11863":4,"11864":2,"11865":2,"11866":3,"11867":3,"11868":2,"11869":3,"11870":5,"11871":3,"11872":2,"11873":2,"11874":3,"11875":5,"11876":3,"11877":3,"11878":3,"11879":2,"11880":2,"11881":4,"11882":4,"11883":3,"11884":4,"11885":3,"11886":4,"11887":3,"11888":3,"11889":5,"11890":4,"11891":2,"11892":3,"11893":5,"11894":2,"11895":3,"11896":3,"11897":2,"11898":1,"11899":3,"11900":4,"11901":2,"11902":3,"11903":1,"11904":4,"11905":3,"11906":5,"11907":4,"11908":2,"11909":2,"11910":4,"11911":3,"11912":3,"11913":3,"11914":2,"11915":4,"11916":2,"11917":3,"11918":2,"11919":4,"11920":1,"11921":2,"11922":2,"11923":3,"11924":2,"11925":2,"11926":4,"11927":5,"11928":2,"11929":5,"11930":2,"11931":2,"11932":3,"11933":2,"11934":3,"11935":3,"11936":3,"11937":3,"11938":2,"11939":2,"11940":2,"11941":3,"11942":4,"11943":4,"11944":3,"11945":3,"11946":2,"11947":3,"11948":3,"11949":4,"11950":1,"11951":4,"11952":4,"11953":2,"11954":2,"11955":2,"11956":3,"11957":2,"11958":3,"11959":3,"11960":3,"11961":4,"11962":2,"11963":3,"11964":3,"11965":3,"11966":5,"11967":4,"11968":2,"11969":4,"11970":4,"11971":4,"11972":3,"11973":2,"11974":3,"11975":3,"11976":4,"11977":3,"11978":3,"11979":3,"11980":3,"11981":2,"11982":4,"11983":4,"11984":4,"11985":4,"11986":2,"11987":3,"11988":1,"11989":3,"11990":1,"11991":3,"11992":3,"11993":3,"11994":4,"11995":3,"11996":3,"11997":3,"11998":2,"11999":3,"12000":1,"12001":3,"12002":3,"12003":3,"12004":2,"12005":3,"12006":3,"12007":2,"12008":4,"12009":4,"12010":3,"12011":3,"12012":3,"12013":2,"12014":2,"12015":5,"12016":2,"12017":1,"12018":1,"12019":5,"12020":4,"12021":3,"12022":1,"12023":3,"12024":3,"12025":2,"12026":3,"12027":2,"12028":2,"12029":3,"12030":3,"12031":1,"12032":5,"12033":3,"12034":3,"12035":3,"12036":3,"12037":2,"12038":4,"12039":2,"12040":3,"12041":4,"12042":3,"12043":2,"12044":1,"12045":1,"12046":1,"12047":4,"12048":4,"12049":4,"12050":3,"12051":2,"12052":2,"12053":2,"12054":3,"12055":3,"12056":3,"12057":1,"12058":3,"12059":4,"12060":1,"12061":2,"12062":3,"12063":4,"12064":2,"12065":3,"12066":2,"12067":4,"12068":3,"12069":2,"12070":4,"12071":3,"12072":4,"12073":2,"12074":3,"12075":2,"12076":2,"12077":3,"12078":4,"12079":2,"12080":3,"12081":2,"12082":2,"12083":2,"12084":1,"12085":4,"12086":5,"12087":2,"12088":2,"12089":3,"12090":2,"12091":3,"12092":5,"12093":2,"12094":2,"12095":3,"12096":3,"12097":2,"12098":4,"12099":3,"12100":4,"12101":4,"12102":3,"12103":3,"12104":2,"12105":4,"12106":3,"12107":3,"12108":2,"12109":2,"12110":2,"12111":3,"12112":4,"12113":3,"12114":3,"12115":2,"12116":3,"12117":4,"12118":1,"12119":3,"12120":3,"12121":4,"12122":3,"12123":2,"12124":3,"12125":4,"12126":4,"12127":4,"12128":3,"12129":3,"12130":2,"12131":4,"12132":4,"12133":1,"12134":1,"12135":3,"12136":3,"12137":3,"12138":3,"12139":2,"12140":2,"12141":4,"12142":1,"12143":3,"12144":1,"12145":1,"12146":5,"12147":2,"12148":1,"12149":2,"12150":4,"12151":2,"12152":1,"12153":2,"12154":4,"12155":4,"12156":1,"12157":4,"12158":2,"12159":4,"12160":3,"12161":3,"12162":4,"12163":3,"12164":3,"12165":5,"12166":3,"12167":1,"12168":4,"12169":4,"12170":4,"12171":3,"12172":4,"12173":3,"12174":3,"12175":2,"12176":5,"12177":3,"12178":3,"12179":4,"12180":3,"12181":3,"12182":4,"12183":3,"12184":2,"12185":3,"12186":1,"12187":1,"12188":5,"12189":4,"12190":5,"12191":2,"12192":3,"12193":4,"12194":4,"12195":4,"12196":3,"12197":3,"12198":3,"12199":2,"12200":1,"12201":4,"12202":3,"12203":5,"12204":4,"12205":3,"12206":2,"12207":3,"12208":3,"12209":2,"12210":3,"12211":3,"12212":2,"12213":4,"12214":4,"12215":2,"12216":4,"12217":1,"12218":3,"12219":2,"12220":2,"12221":2,"12222":4,"12223":3,"12224":2,"12225":4,"12226":1,"12227":1,"12228":2,"12229":4,"12230":3,"12231":2,"12232":4,"12233":4,"12234":4,"12235":4,"12236":2,"12237":4,"12238":3,"12239":5,"12240":3,"12241":2,"12242":2,"12243":3,"12244":1,"12245":3,"12246":5,"12247":4,"12248":4,"12249":2,"12250":4,"12251":3,"12252":1,"12253":3,"12254":3,"12255":1,"12256":4,"12257":4,"12258":4,"12259":2,"12260":3,"12261":1,"12262":1,"12263":1,"12264":3,"12265":3,"12266":3,"12267":3,"12268":4,"12269":3,"12270":4,"12271":5,"12272":3,"12273":3,"12274":3,"12275":5,"12276":4,"12277":2,"12278":3,"12279":3,"12280":4,"12281":3,"12282":2,"12283":4,"12284":1,"12285":3,"12286":3,"12287":4,"12288":1,"12289":4,"12290":3,"12291":5,"12292":5,"12293":3,"12294":3,"12295":3,"12296":3,"12297":2,"12298":1,"12299":3,"12300":5,"12301":4,"12302":1,"12303":4,"12304":3,"12305":4,"12306":1,"12307":4,"12308":2,"12309":4,"12310":3,"12311":4,"12312":2,"12313":5,"12314":3,"12315":3,"12316":2,"12317":2,"12318":4,"12319":3,"12320":3,"12321":4,"12322":1,"12323":3,"12324":1,"12325":4,"12326":4,"12327":5,"12328":4,"12329":3,"12330":3,"12331":3,"12332":5,"12333":3,"12334":3,"12335":4,"12336":4,"12337":5,"12338":1,"12339":2,"12340":2,"12341":4,"12342":5,"12343":4,"12344":2,"12345":2,"12346":3,"12347":3,"12348":4,"12349":2,"12350":3,"12351":2,"12352":3,"12353":5,"12354":4,"12355":2,"12356":3,"12357":5,"12358":2,"12359":4,"12360":3,"12361":4,"12362":2,"12363":4,"12364":3,"12365":3,"12366":3,"12367":4,"12368":4,"12369":3,"12370":4,"12371":4,"12372":3,"12373":4,"12374":3,"12375":2,"12376":3,"12377":1,"12378":2,"12379":4,"12380":4,"12381":2,"12382":1,"12383":3,"12384":3,"12385":3,"12386":3,"12387":4,"12388":2,"12389":4,"12390":2,"12391":3,"12392":3,"12393":3,"12394":3,"12395":3,"12396":2,"12397":2,"12398":1,"12399":4,"12400":1,"12401":3,"12402":2,"12403":5,"12404":2,"12405":3,"12406":4,"12407":3,"12408":3,"12409":3,"12410":5,"12411":3,"12412":4,"12413":3,"12414":2,"12415":2,"12416":3,"12417":2,"12418":4,"12419":3,"12420":3,"12421":3,"12422":2,"12423":2,"12424":4,"12425":3,"12426":4,"12427":3,"12428":5,"12429":4,"12430":3,"12431":4,"12432":2,"12433":2,"12434":4,"12435":2,"12436":1,"12437":4,"12438":2,"12439":3,"12440":4,"12441":2,"12442":2,"12443":2,"12444":4,"12445":1,"12446":5,"12447":4,"12448":2,"12449":2,"12450":2,"12451":4,"12452":3,"12453":2,"12454":3,"12455":3,"12456":4,"12457":5,"12458":4,"12459":3,"12460":2,"12461":3,"12462":5,"12463":2,"12464":2,"12465":3,"12466":2,"12467":3,"12468":4,"12469":3,"12470":1,"12471":4,"12472":3,"12473":5,"12474":1,"12475":4,"12476":2,"12477":5,"12478":2,"12479":2,"12480":2,"12481":2,"12482":2,"12483":4,"12484":1,"12485":4,"12486":3,"12487":3,"12488":2,"12489":3,"12490":3,"12491":4,"12492":3,"12493":2,"12494":4,"12495":2,"12496":2,"12497":2,"12498":4,"12499":4,"12500":3,"12501":3,"12502":2,"12503":1,"12504":3,"12505":5,"12506":3,"12507":4,"12508":3,"12509":4,"12510":2,"12511":5,"12512":3,"12513":5,"12514":4,"12515":2,"12516":2,"12517":4,"12518":5,"12519":4,"12520":2,"12521":1,"12522":2,"12523":2,"12524":2,"12525":3,"12526":4,"12527":3,"12528":3,"12529":4,"12530":3,"12531":3,"12532":3,"12533":3,"12534":5,"12535":2,"12536":5,"12537":1,"12538":2,"12539":4,"12540":3,"12541":2,"12542":4,"12543":4,"12544":3,"12545":4,"12546":5,"12547":1,"12548":4,"12549":3,"12550":2,"12551":3,"12552":2,"12553":1,"12554":3,"12555":2,"12556":3,"12557":3,"12558":4,"12559":3,"12560":2,"12561":2,"12562":3,"12563":4,"12564":3,"12565":3,"12566":2,"12567":2,"12568":3,"12569":2,"12570":4,"12571":4,"12572":5,"12573":4,"12574":4,"12575":1,"12576":4,"12577":2,"12578":3,"12579":2,"12580":3,"12581":4,"12582":2,"12583":4,"12584":2,"12585":1,"12586":4,"12587":3,"12588":4,"12589":4,"12590":4,"12591":1,"12592":4,"12593":2,"12594":4,"12595":2,"12596":2,"12597":3,"12598":3,"12599":2,"12600":4,"12601":3,"12602":4,"12603":5,"12604":4,"12605":4,"12606":2,"12607":2,"12608":4,"12609":4,"12610":1,"12611":3,"12612":3,"12613":5,"12614":2,"12615":1,"12616":3,"12617":3,"12618":1,"12619":3,"12620":4,"12621":3,"12622":4,"12623":4,"12624":1,"12625":1,"12626":3,"12627":2,"12628":3,"12629":1,"12630":1,"12631":2,"12632":3,"12633":3,"12634":2,"12635":4,"12636":2,"12637":2,"12638":3,"12639":3,"12640":2,"12641":2,"12642":3,"12643":1,"12644":3,"12645":3,"12646":4,"12647":1,"12648":5,"12649":3,"12650":2,"12651":3,"12652":4,"12653":5,"12654":3,"12655":3,"12656":2,"12657":3,"12658":3,"12659":4,"12660":5,"12661":3,"12662":4,"12663":2,"12664":2,"12665":4,"12666":3,"12667":3,"12668":2,"12669":2,"12670":3,"12671":4,"12672":2,"12673":2,"12674":5,"12675":2,"12676":5,"12677":4,"12678":2,"12679":2,"12680":3,"12681":1,"12682":2,"12683":2,"12684":4,"12685":3,"12686":4,"12687":3,"12688":3,"12689":5,"12690":3,"12691":2,"12692":3,"12693":5,"12694":1,"12695":3,"12696":4,"12697":3,"12698":1,"12699":4,"12700":1,"12701":1,"12702":2,"12703":2,"12704":5,"12705":3,"12706":4,"12707":5,"12708":3,"12709":2,"12710":3,"12711":4,"12712":2,"12713":2,"12714":4,"12715":3,"12716":2,"12717":2,"12718":4,"12719":4,"12720":3,"12721":4,"12722":4,"12723":4,"12724":3,"12725":4,"12726":4,"12727":4,"12728":2,"12729":3,"12730":1,"12731":2,"12732":5,"12733":3,"12734":4,"12735":5,"12736":3,"12737":4,"12738":4,"12739":1,"12740":4,"12741":2,"12742":3,"12743":1,"12744":2,"12745":4,"12746":4,"12747":3,"12748":4,"12749":4,"12750":2,"12751":1,"12752":4,"12753":2,"12754":2,"12755":5,"12756":4,"12757":4,"12758":4,"12759":2,"12760":4,"12761":4,"12762":1,"12763":4,"12764":2,"12765":3,"12766":2,"12767":2,"12768":5,"12769":4,"12770":4,"12771":5,"12772":3,"12773":3,"12774":4,"12775":2,"12776":3,"12777":4,"12778":3,"12779":4,"12780":1,"12781":3,"12782":1,"12783":4,"12784":3,"12785":5,"12786":4,"12787":4,"12788":4,"12789":4,"12790":4,"12791":3,"12792":1,"12793":2,"12794":2,"12795":5,"12796":1,"12797":4,"12798":3,"12799":3,"12800":3,"12801":3,"12802":3,"12803":2,"12804":3,"12805":2,"12806":4,"12807":2,"12808":2,"12809":4,"12810":4,"12811":3,"12812":3,"12813":4,"12814":2,"12815":2,"12816":1,"12817":4,"12818":3,"12819":3,"12820":2,"12821":3,"12822":3,"12823":1,"12824":3,"12825":1,"12826":4,"12827":3,"12828":3,"12829":4,"12830":3,"12831":3,"12832":3,"12833":3,"12834":3,"12835":4,"12836":3,"12837":2,"12838":3,"12839":3,"12840":4,"12841":4,"12842":3,"12843":4,"12844":3,"12845":3,"12846":4,"12847":5,"12848":4,"12849":2,"12850":2,"12851":5,"12852":3,"12853":1,"12854":5,"12855":1,"12856":2,"12857":3,"12858":2,"12859":5,"12860":3,"12861":3,"12862":3,"12863":2,"12864":3,"12865":4,"12866":3,"12867":4,"12868":3,"12869":3,"12870":3,"12871":3,"12872":4,"12873":1,"12874":4,"12875":4,"12876":3,"12877":2,"12878":3,"12879":4,"12880":2,"12881":4,"12882":3,"12883":4,"12884":2,"12885":3,"12886":4,"12887":3,"12888":2,"12889":4,"12890":4,"12891":4,"12892":1,"12893":4,"12894":3,"12895":3,"12896":4,"12897":2,"12898":4,"12899":3,"12900":4,"12901":3,"12902":2,"12903":4,"12904":4,"12905":3,"12906":4,"12907":2,"12908":2,"12909":2,"12910":3,"12911":2,"12912":2,"12913":2,"12914":5,"12915":2,"12916":3,"12917":4,"12918":4,"12919":1,"12920":2,"12921":3,"12922":4,"12923":3,"12924":4,"12925":4,"12926":3,"12927":3,"12928":3,"12929":4,"12930":5,"12931":3,"12932":5,"12933":2,"12934":2,"12935":2,"12936":3,"12937":1,"12938":1,"12939":1,"12940":3,"12941":4,"12942":2,"12943":3,"12944":5,"12945":4,"12946":4,"12947":4,"12948":3,"12949":3,"12950":3,"12951":4,"12952":1,"12953":2,"12954":3,"12955":3,"12956":3,"12957":3,"12958":2,"12959":3,"12960":2,"12961":2,"12962":2,"12963":4,"12964":2,"12965":3,"12966":4,"12967":1,"12968":3,"12969":3,"12970":3,"12971":4,"12972":3,"12973":4,"12974":3,"12975":3,"12976":3,"12977":3,"12978":2,"12979":4,"12980":2,"12981":3,"12982":4,"12983":3,"12984":3,"12985":4,"12986":5,"12987":3,"12988":2,"12989":2,"12990":4,"12991":4,"12992":4,"12993":1,"12994":3,"12995":3,"12996":5,"12997":4,"12998":3,"12999":3,"13000":3,"13001":3,"13002":4,"13003":3,"13004":4,"13005":1,"13006":3,"13007":4,"13008":3,"13009":4,"13010":4,"13011":4,"13012":2,"13013":5,"13014":2,"13015":3,"13016":3,"13017":1,"13018":4,"13019":3,"13020":4,"13021":3,"13022":4,"13023":4,"13024":2,"13025":3,"13026":4,"13027":3,"13028":4,"13029":2,"13030":4,"13031":3,"13032":2,"13033":2,"13034":3,"13035":2,"13036":4,"13037":2,"13038":2,"13039":2,"13040":3,"13041":4,"13042":2,"13043":1,"13044":2,"13045":3,"13046":2,"13047":1,"13048":2,"13049":4,"13050":2,"13051":4,"13052":4,"13053":3,"13054":4,"13055":3,"13056":1,"13057":3,"13058":3,"13059":3,"13060":4,"13061":2,"13062":4,"13063":3,"13064":2,"13065":1,"13066":5,"13067":2,"13068":2,"13069":4,"13070":3,"13071":2,"13072":5,"13073":4,"13074":3,"13075":5,"13076":4,"13077":4,"13078":2,"13079":5,"13080":3,"13081":3,"13082":1,"13083":2,"13084":4,"13085":4,"13086":1,"13087":2,"13088":4,"13089":2,"13090":3,"13091":3,"13092":1,"13093":3,"13094":3,"13095":2,"13096":5,"13097":1,"13098":3,"13099":4,"13100":5,"13101":2,"13102":4,"13103":2,"13104":3,"13105":2,"13106":3,"13107":2,"13108":1,"13109":4,"13110":4,"13111":3,"13112":3,"13113":5,"13114":4,"13115":3,"13116":5,"13117":3,"13118":4,"13119":4,"13120":3,"13121":2,"13122":2,"13123":5,"13124":5,"13125":4,"13126":2,"13127":2,"13128":3,"13129":4,"13130":2,"13131":4,"13132":1,"13133":4,"13134":2,"13135":3,"13136":2,"13137":3,"13138":4,"13139":3,"13140":3,"13141":4,"13142":1,"13143":3,"13144":2,"13145":3,"13146":5,"13147":3,"13148":4,"13149":2,"13150":2,"13151":3,"13152":2,"13153":3,"13154":3,"13155":2,"13156":2,"13157":3,"13158":4,"13159":3,"13160":2,"13161":4,"13162":2,"13163":4,"13164":2,"13165":2,"13166":4,"13167":2,"13168":4,"13169":3,"13170":3,"13171":3,"13172":4,"13173":2,"13174":5,"13175":1,"13176":4,"13177":2,"13178":2,"13179":3,"13180":4,"13181":4,"13182":3,"13183":2,"13184":3,"13185":5,"13186":1,"13187":3,"13188":3,"13189":2,"13190":5,"13191":3,"13192":3,"13193":4,"13194":1,"13195":1,"13196":4,"13197":4,"13198":3,"13199":3,"13200":2,"13201":4,"13202":1,"13203":3,"13204":1,"13205":5,"13206":3,"13207":3,"13208":2,"13209":4,"13210":1,"13211":2,"13212":4,"13213":3,"13214":3,"13215":2,"13216":4,"13217":4,"13218":3,"13219":4,"13220":4,"13221":5,"13222":1,"13223":3,"13224":5,"13225":3,"13226":3,"13227":2,"13228":4,"13229":3,"13230":2,"13231":5,"13232":4,"13233":4,"13234":3,"13235":3,"13236":4,"13237":4,"13238":1,"13239":3,"13240":3,"13241":2,"13242":2,"13243":2,"13244":4,"13245":2,"13246":3,"13247":1,"13248":3,"13249":4,"13250":4,"13251":4,"13252":5,"13253":1,"13254":4,"13255":3,"13256":1,"13257":3,"13258":5,"13259":1,"13260":5,"13261":5,"13262":3,"13263":3,"13264":3,"13265":3,"13266":3,"13267":2,"13268":3,"13269":2,"13270":2,"13271":1,"13272":4,"13273":3,"13274":3,"13275":3,"13276":2,"13277":2,"13278":2,"13279":4,"13280":2,"13281":4,"13282":1,"13283":3,"13284":3,"13285":3,"13286":3,"13287":4,"13288":2,"13289":3,"13290":3,"13291":2,"13292":4,"13293":3,"13294":4,"13295":3,"13296":3,"13297":4,"13298":3,"13299":3,"13300":3,"13301":4,"13302":3,"13303":2,"13304":3,"13305":4,"13306":3,"13307":4,"13308":4,"13309":2,"13310":2,"13311":2,"13312":4,"13313":2,"13314":2,"13315":2,"13316":3,"13317":4,"13318":1,"13319":4,"13320":2,"13321":4,"13322":4,"13323":4,"13324":2,"13325":2,"13326":5,"13327":2,"13328":4,"13329":3,"13330":3,"13331":3,"13332":4,"13333":3,"13334":2,"13335":2,"13336":2,"13337":2,"13338":4,"13339":2,"13340":3,"13341":4,"13342":3,"13343":3,"13344":3,"13345":3,"13346":3,"13347":4,"13348":5,"13349":4,"13350":2,"13351":2,"13352":3,"13353":4,"13354":2,"13355":3,"13356":4,"13357":5,"13358":3,"13359":3,"13360":3,"13361":3,"13362":2,"13363":2,"13364":2,"13365":3,"13366":1,"13367":3,"13368":3,"13369":3,"13370":4,"13371":2,"13372":3,"13373":3,"13374":3,"13375":4,"13376":2,"13377":5,"13378":5,"13379":2,"13380":1,"13381":2,"13382":1,"13383":2,"13384":2,"13385":2,"13386":2,"13387":5,"13388":3,"13389":3,"13390":4,"13391":4,"13392":4,"13393":3,"13394":3,"13395":3,"13396":5,"13397":4,"13398":4,"13399":3,"13400":2,"13401":5,"13402":2,"13403":2,"13404":2,"13405":1,"13406":3,"13407":3,"13408":3,"13409":3,"13410":3,"13411":5,"13412":4,"13413":2,"13414":3,"13415":2,"13416":2,"13417":2,"13418":4,"13419":3,"13420":5,"13421":3,"13422":4,"13423":3,"13424":3,"13425":4,"13426":4,"13427":3,"13428":2,"13429":3,"13430":1,"13431":3,"13432":2,"13433":3,"13434":2,"13435":2,"13436":2,"13437":2,"13438":5,"13439":3,"13440":3,"13441":3,"13442":4,"13443":2,"13444":4,"13445":2,"13446":4,"13447":4,"13448":2,"13449":4,"13450":4,"13451":5,"13452":3,"13453":2,"13454":3,"13455":2,"13456":2,"13457":5,"13458":1,"13459":3,"13460":4,"13461":3,"13462":2,"13463":2,"13464":2,"13465":2,"13466":2,"13467":2,"13468":3,"13469":3,"13470":4,"13471":5,"13472":2,"13473":3,"13474":5,"13475":3,"13476":2,"13477":3,"13478":2,"13479":1,"13480":3,"13481":4,"13482":2,"13483":4,"13484":2,"13485":4,"13486":1,"13487":3,"13488":3,"13489":3,"13490":2,"13491":1,"13492":3,"13493":3,"13494":1,"13495":2,"13496":2,"13497":1,"13498":1,"13499":3,"13500":5,"13501":4,"13502":3,"13503":3,"13504":4,"13505":2,"13506":2,"13507":2,"13508":3,"13509":1,"13510":3,"13511":1,"13512":2,"13513":4,"13514":3,"13515":3,"13516":4,"13517":3,"13518":1,"13519":3,"13520":2,"13521":3,"13522":4,"13523":3,"13524":2,"13525":3,"13526":4,"13527":3,"13528":3,"13529":1,"13530":3,"13531":3,"13532":3,"13533":3,"13534":3,"13535":2,"13536":2,"13537":3,"13538":3,"13539":3,"13540":4,"13541":2,"13542":4,"13543":1,"13544":1,"13545":3,"13546":4,"13547":3,"13548":5,"13549":2,"13550":3,"13551":3,"13552":3,"13553":3,"13554":2,"13555":4,"13556":4,"13557":4,"13558":3,"13559":4,"13560":3,"13561":3,"13562":4,"13563":4,"13564":3,"13565":3,"13566":3,"13567":3,"13568":3,"13569":5,"13570":4,"13571":3,"13572":1,"13573":1,"13574":3,"13575":2,"13576":1,"13577":3,"13578":3,"13579":5,"13580":2,"13581":4,"13582":1,"13583":5,"13584":4,"13585":4,"13586":2,"13587":3,"13588":5,"13589":3,"13590":3,"13591":4,"13592":3,"13593":2,"13594":2,"13595":2,"13596":4,"13597":2,"13598":3,"13599":4,"13600":4,"13601":2,"13602":4,"13603":4,"13604":2,"13605":2,"13606":3,"13607":2,"13608":5,"13609":1,"13610":3,"13611":3,"13612":4,"13613":2,"13614":4,"13615":3,"13616":2,"13617":1,"13618":1,"13619":4,"13620":5,"13621":4,"13622":1,"13623":4,"13624":3,"13625":3,"13626":4,"13627":1,"13628":3,"13629":4,"13630":4,"13631":3,"13632":3,"13633":3,"13634":2,"13635":3,"13636":1,"13637":3,"13638":4,"13639":3,"13640":1,"13641":2,"13642":2,"13643":4,"13644":4,"13645":3,"13646":3,"13647":3,"13648":3,"13649":4,"13650":3,"13651":3,"13652":4,"13653":2,"13654":1,"13655":3,"13656":2,"13657":2,"13658":2,"13659":4,"13660":2,"13661":4,"13662":3,"13663":1,"13664":3,"13665":3,"13666":3,"13667":3,"13668":2,"13669":4,"13670":2,"13671":3,"13672":4,"13673":2,"13674":3,"13675":3,"13676":3,"13677":3,"13678":3,"13679":1,"13680":4,"13681":4,"13682":4,"13683":3,"13684":5,"13685":3,"13686":2,"13687":2,"13688":2,"13689":2,"13690":3,"13691":3,"13692":3,"13693":2,"13694":2,"13695":2,"13696":2,"13697":4,"13698":3,"13699":3,"13700":2,"13701":3,"13702":4,"13703":3,"13704":3,"13705":4,"13706":4,"13707":4,"13708":1,"13709":4,"13710":5,"13711":2,"13712":3,"13713":3,"13714":4,"13715":4,"13716":3,"13717":2,"13718":4,"13719":3,"13720":3,"13721":1,"13722":2,"13723":2,"13724":2,"13725":2,"13726":4,"13727":2,"13728":4,"13729":4,"13730":4,"13731":2,"13732":5,"13733":2,"13734":5,"13735":2,"13736":4,"13737":3,"13738":3,"13739":3,"13740":3,"13741":3,"13742":3,"13743":4,"13744":1,"13745":4,"13746":1,"13747":1,"13748":1,"13749":1,"13750":3,"13751":3,"13752":4,"13753":1,"13754":5,"13755":3,"13756":2,"13757":3,"13758":1,"13759":3,"13760":3,"13761":4,"13762":4,"13763":2,"13764":3,"13765":2,"13766":3,"13767":4,"13768":3,"13769":3,"13770":3,"13771":3,"13772":4,"13773":3,"13774":3,"13775":2,"13776":3,"13777":3,"13778":3,"13779":2,"13780":1,"13781":2,"13782":4,"13783":5,"13784":2,"13785":3,"13786":3,"13787":4,"13788":4,"13789":2,"13790":2,"13791":2,"13792":2,"13793":5,"13794":5,"13795":3,"13796":4,"13797":2,"13798":3,"13799":2,"13800":4,"13801":4,"13802":1,"13803":3,"13804":4,"13805":3,"13806":1,"13807":2,"13808":2,"13809":1,"13810":4,"13811":4,"13812":1,"13813":5,"13814":3,"13815":3,"13816":5,"13817":3,"13818":4,"13819":3,"13820":3,"13821":1,"13822":1,"13823":4,"13824":4,"13825":3,"13826":1,"13827":4,"13828":1,"13829":4,"13830":3,"13831":1,"13832":2,"13833":3,"13834":5,"13835":3,"13836":3,"13837":4,"13838":5,"13839":2,"13840":3,"13841":3,"13842":4,"13843":3,"13844":3,"13845":3,"13846":4,"13847":3,"13848":1,"13849":3,"13850":3,"13851":4,"13852":2,"13853":4,"13854":3,"13855":1,"13856":3,"13857":2,"13858":2,"13859":4,"13860":2,"13861":3,"13862":5,"13863":1,"13864":3,"13865":4,"13866":1,"13867":4,"13868":4,"13869":3,"13870":3,"13871":3,"13872":4,"13873":2,"13874":2,"13875":3,"13876":5,"13877":2,"13878":2,"13879":3,"13880":2,"13881":3,"13882":5,"13883":2,"13884":3,"13885":3,"13886":2,"13887":4,"13888":3,"13889":2,"13890":3,"13891":4,"13892":5,"13893":5,"13894":3,"13895":3,"13896":4,"13897":3,"13898":2,"13899":3,"13900":5,"13901":2,"13902":3,"13903":3,"13904":4,"13905":4,"13906":2,"13907":5,"13908":5,"13909":5,"13910":3,"13911":5,"13912":4,"13913":5,"13914":2,"13915":2,"13916":1,"13917":2,"13918":4,"13919":4,"13920":3,"13921":3,"13922":4,"13923":1,"13924":3,"13925":3,"13926":2,"13927":3,"13928":3,"13929":4,"13930":3,"13931":4,"13932":4,"13933":3,"13934":5,"13935":3,"13936":3,"13937":3,"13938":4,"13939":4,"13940":2,"13941":4,"13942":2,"13943":3,"13944":5,"13945":2,"13946":4,"13947":3,"13948":2,"13949":3,"13950":1,"13951":5,"13952":3,"13953":5,"13954":4,"13955":2,"13956":2,"13957":1,"13958":4,"13959":2,"13960":4,"13961":4,"13962":4,"13963":1,"13964":4,"13965":3,"13966":3,"13967":4,"13968":4,"13969":4,"13970":4,"13971":3,"13972":4,"13973":5,"13974":4,"13975":4,"13976":3,"13977":2,"13978":1,"13979":3,"13980":3,"13981":2,"13982":1,"13983":3,"13984":1,"13985":3,"13986":4,"13987":1,"13988":3,"13989":4,"13990":3,"13991":1,"13992":3,"13993":4,"13994":3,"13995":1,"13996":4,"13997":3,"13998":3,"13999":3,"14000":4,"14001":3,"14002":3,"14003":4,"14004":3,"14005":4,"14006":3,"14007":3,"14008":1,"14009":2,"14010":5,"14011":1,"14012":4,"14013":2,"14014":3,"14015":2,"14016":5,"14017":2,"14018":3,"14019":4,"14020":2,"14021":1,"14022":4,"14023":3,"14024":2,"14025":2,"14026":2,"14027":5,"14028":2,"14029":4,"14030":2,"14031":4,"14032":3,"14033":4,"14034":3,"14035":3,"14036":5,"14037":3,"14038":2,"14039":3,"14040":2,"14041":3,"14042":3,"14043":2,"14044":4,"14045":3,"14046":3,"14047":2,"14048":1,"14049":2,"14050":3,"14051":2,"14052":3,"14053":4,"14054":3,"14055":3,"14056":3,"14057":3,"14058":3,"14059":3,"14060":2,"14061":2,"14062":1,"14063":4,"14064":3,"14065":3,"14066":2,"14067":1,"14068":4,"14069":4,"14070":2,"14071":3,"14072":2,"14073":4,"14074":3,"14075":3,"14076":2,"14077":3,"14078":2,"14079":3,"14080":2,"14081":3,"14082":2,"14083":3,"14084":3,"14085":5,"14086":4,"14087":3,"14088":4,"14089":1,"14090":4,"14091":2,"14092":4,"14093":3,"14094":4,"14095":1,"14096":3,"14097":2,"14098":3,"14099":5,"14100":1,"14101":3,"14102":1,"14103":4,"14104":2,"14105":2,"14106":3,"14107":4,"14108":3,"14109":4,"14110":3,"14111":3,"14112":4,"14113":3,"14114":1,"14115":4,"14116":1,"14117":2,"14118":2,"14119":3,"14120":4,"14121":3,"14122":3,"14123":3,"14124":4,"14125":4,"14126":2,"14127":3,"14128":4,"14129":2,"14130":1,"14131":4,"14132":4,"14133":1,"14134":2,"14135":2,"14136":3,"14137":5,"14138":3,"14139":1,"14140":4,"14141":3,"14142":1,"14143":2,"14144":2,"14145":4,"14146":4,"14147":4,"14148":2,"14149":5,"14150":4,"14151":2,"14152":3,"14153":4,"14154":3,"14155":2,"14156":2,"14157":3,"14158":4,"14159":2,"14160":2,"14161":2,"14162":2,"14163":4,"14164":4,"14165":3,"14166":3,"14167":2,"14168":4,"14169":3,"14170":4,"14171":2,"14172":4,"14173":5,"14174":2,"14175":2,"14176":3,"14177":3,"14178":4,"14179":2,"14180":4,"14181":3,"14182":2,"14183":3,"14184":2,"14185":2,"14186":5,"14187":4,"14188":3,"14189":3,"14190":1,"14191":2,"14192":2,"14193":4,"14194":3,"14195":2,"14196":1,"14197":3,"14198":4,"14199":1,"14200":4,"14201":4,"14202":2,"14203":4,"14204":3,"14205":4,"14206":5,"14207":4,"14208":3,"14209":2,"14210":3,"14211":2,"14212":2,"14213":4,"14214":3,"14215":3,"14216":5,"14217":3,"14218":1,"14219":5,"14220":4,"14221":2,"14222":5,"14223":3,"14224":4,"14225":3,"14226":5,"14227":2,"14228":2,"14229":3,"14230":5,"14231":2,"14232":4,"14233":3,"14234":4,"14235":4,"14236":4,"14237":2,"14238":1,"14239":4,"14240":3,"14241":1,"14242":1,"14243":3,"14244":3,"14245":3,"14246":2,"14247":4,"14248":3,"14249":4,"14250":3,"14251":3,"14252":1,"14253":3,"14254":3,"14255":3,"14256":3,"14257":4,"14258":3,"14259":3,"14260":4,"14261":2,"14262":3,"14263":3,"14264":4,"14265":3,"14266":2,"14267":2,"14268":2,"14269":3,"14270":4,"14271":4,"14272":3,"14273":4,"14274":4,"14275":4,"14276":4,"14277":4,"14278":3,"14279":2,"14280":5,"14281":2,"14282":4,"14283":2,"14284":3,"14285":4,"14286":4,"14287":2,"14288":3,"14289":3,"14290":4,"14291":3,"14292":4,"14293":4,"14294":2,"14295":3,"14296":3,"14297":2,"14298":4,"14299":2,"14300":1,"14301":2,"14302":3,"14303":5,"14304":3,"14305":2,"14306":4,"14307":4,"14308":3,"14309":3,"14310":2,"14311":4,"14312":4,"14313":3,"14314":1,"14315":3,"14316":2,"14317":4,"14318":4,"14319":4,"14320":3,"14321":3,"14322":1,"14323":2,"14324":4,"14325":3,"14326":4,"14327":1,"14328":4,"14329":4,"14330":3,"14331":2,"14332":3,"14333":5,"14334":4,"14335":3,"14336":3,"14337":5,"14338":2,"14339":4,"14340":2,"14341":4,"14342":3,"14343":3,"14344":3,"14345":1,"14346":3,"14347":5,"14348":1,"14349":3,"14350":4,"14351":1,"14352":3,"14353":3,"14354":4,"14355":2,"14356":3,"14357":2,"14358":4,"14359":3,"14360":3,"14361":2,"14362":5,"14363":2,"14364":3,"14365":5,"14366":3,"14367":4,"14368":3,"14369":1,"14370":3,"14371":3,"14372":4,"14373":4,"14374":4,"14375":4,"14376":2,"14377":4,"14378":3,"14379":1,"14380":4,"14381":4,"14382":1,"14383":2,"14384":4,"14385":4,"14386":4,"14387":2,"14388":3,"14389":3,"14390":3,"14391":3,"14392":2,"14393":2,"14394":4,"14395":1,"14396":5,"14397":4,"14398":1,"14399":4,"14400":5,"14401":3,"14402":3,"14403":3,"14404":4,"14405":3,"14406":3,"14407":3,"14408":4,"14409":3,"14410":4,"14411":2,"14412":3,"14413":1,"14414":3,"14415":4,"14416":2,"14417":2,"14418":1,"14419":1,"14420":5,"14421":3,"14422":1,"14423":4,"14424":4,"14425":1,"14426":2,"14427":4,"14428":4,"14429":4,"14430":4,"14431":4,"14432":2,"14433":3,"14434":2,"14435":2,"14436":4,"14437":2,"14438":4,"14439":4,"14440":1,"14441":4,"14442":4,"14443":2,"14444":1,"14445":3,"14446":2,"14447":4,"14448":4,"14449":4,"14450":3,"14451":2,"14452":2,"14453":1,"14454":2,"14455":4,"14456":4,"14457":4,"14458":3,"14459":2,"14460":3,"14461":4,"14462":1,"14463":4,"14464":2,"14465":4,"14466":2,"14467":2,"14468":4,"14469":3,"14470":2,"14471":1,"14472":2,"14473":4,"14474":5,"14475":2,"14476":4,"14477":1,"14478":3,"14479":4,"14480":3,"14481":1,"14482":4,"14483":1,"14484":5,"14485":2,"14486":2,"14487":4,"14488":3,"14489":2,"14490":1,"14491":4,"14492":4,"14493":4,"14494":2,"14495":3,"14496":3,"14497":4,"14498":3,"14499":5,"14500":3,"14501":2,"14502":2,"14503":2,"14504":4,"14505":1,"14506":4,"14507":3,"14508":4,"14509":3,"14510":4,"14511":1,"14512":2,"14513":3,"14514":3,"14515":3,"14516":4,"14517":4,"14518":3,"14519":3,"14520":3,"14521":3,"14522":2,"14523":4,"14524":2,"14525":4,"14526":3,"14527":4,"14528":3,"14529":3,"14530":4,"14531":3,"14532":3,"14533":3,"14534":2,"14535":2,"14536":4,"14537":3,"14538":3,"14539":4,"14540":5,"14541":4,"14542":1,"14543":4,"14544":1,"14545":3,"14546":4,"14547":4,"14548":5,"14549":4,"14550":3,"14551":2,"14552":4,"14553":3,"14554":2,"14555":4,"14556":2,"14557":3,"14558":3,"14559":3,"14560":2,"14561":2,"14562":4,"14563":2,"14564":5,"14565":2,"14566":3,"14567":3,"14568":4,"14569":4,"14570":2,"14571":4,"14572":3,"14573":3,"14574":4,"14575":2,"14576":3,"14577":2,"14578":2,"14579":2,"14580":4,"14581":2,"14582":4,"14583":4,"14584":4,"14585":1,"14586":3,"14587":4,"14588":1,"14589":5,"14590":3,"14591":4,"14592":3,"14593":4,"14594":4,"14595":1,"14596":2,"14597":5,"14598":4,"14599":3,"14600":3,"14601":4,"14602":3,"14603":2,"14604":2,"14605":3,"14606":1,"14607":5,"14608":2,"14609":2,"14610":2,"14611":1,"14612":3,"14613":4,"14614":3,"14615":4,"14616":2,"14617":3,"14618":4,"14619":1,"14620":2,"14621":3,"14622":2,"14623":2,"14624":4,"14625":4,"14626":3,"14627":4,"14628":3,"14629":4,"14630":2,"14631":2,"14632":4,"14633":4,"14634":2,"14635":3,"14636":2,"14637":3,"14638":3,"14639":2,"14640":2,"14641":3,"14642":5,"14643":2,"14644":2,"14645":4,"14646":2,"14647":3,"14648":3,"14649":4,"14650":2,"14651":3,"14652":3,"14653":3,"14654":5,"14655":2,"14656":4,"14657":3,"14658":3,"14659":2,"14660":2,"14661":1,"14662":1,"14663":1,"14664":4,"14665":1,"14666":1,"14667":3,"14668":2,"14669":3,"14670":5,"14671":4,"14672":3,"14673":3,"14674":3,"14675":2,"14676":2,"14677":1,"14678":2,"14679":3,"14680":4,"14681":4,"14682":5,"14683":4,"14684":4,"14685":3,"14686":4,"14687":5,"14688":3,"14689":4,"14690":5,"14691":4,"14692":2,"14693":4,"14694":3,"14695":2,"14696":2,"14697":5,"14698":2,"14699":2,"14700":4,"14701":4,"14702":3,"14703":4,"14704":4,"14705":3,"14706":3,"14707":3,"14708":3,"14709":2,"14710":2,"14711":5,"14712":1,"14713":4,"14714":1,"14715":1,"14716":2,"14717":4,"14718":5,"14719":1,"14720":3,"14721":4,"14722":2,"14723":4,"14724":3,"14725":3,"14726":3,"14727":2,"14728":2,"14729":2,"14730":3,"14731":4,"14732":4,"14733":4,"14734":1,"14735":4,"14736":3,"14737":2,"14738":3,"14739":4,"14740":3,"14741":4,"14742":3,"14743":3,"14744":3,"14745":1,"14746":3,"14747":2,"14748":4,"14749":4,"14750":5,"14751":2,"14752":3,"14753":3,"14754":1,"14755":4,"14756":2,"14757":1,"14758":2,"14759":3,"14760":2,"14761":3,"14762":3,"14763":2,"14764":3,"14765":3,"14766":1,"14767":3,"14768":3,"14769":1,"14770":2,"14771":2,"14772":3,"14773":2,"14774":1,"14775":3,"14776":2,"14777":3,"14778":4,"14779":3,"14780":1,"14781":2,"14782":3,"14783":5,"14784":2,"14785":5,"14786":3,"14787":5,"14788":1,"14789":2,"14790":2,"14791":4,"14792":3,"14793":4,"14794":4,"14795":3,"14796":3,"14797":4,"14798":4,"14799":3,"14800":2,"14801":3,"14802":4,"14803":4,"14804":1,"14805":3,"14806":4,"14807":1,"14808":3,"14809":4,"14810":5,"14811":3,"14812":4,"14813":4,"14814":4,"14815":3,"14816":4,"14817":2,"14818":3,"14819":3,"14820":3,"14821":5,"14822":5,"14823":2,"14824":2,"14825":3,"14826":4,"14827":3,"14828":2,"14829":3,"14830":3,"14831":2,"14832":3,"14833":4,"14834":4,"14835":3,"14836":3,"14837":4,"14838":3,"14839":3,"14840":3,"14841":4,"14842":4,"14843":4,"14844":1,"14845":3,"14846":4,"14847":1,"14848":3,"14849":1,"14850":2,"14851":3,"14852":2,"14853":5,"14854":5,"14855":4,"14856":5,"14857":4,"14858":3,"14859":3,"14860":4,"14861":3,"14862":3,"14863":2,"14864":1,"14865":4,"14866":4,"14867":5,"14868":3,"14869":3,"14870":4,"14871":2,"14872":2,"14873":1,"14874":3,"14875":4,"14876":3,"14877":5,"14878":4,"14879":4,"14880":3,"14881":3,"14882":3,"14883":2,"14884":4,"14885":2,"14886":3,"14887":2,"14888":4,"14889":1,"14890":3,"14891":2,"14892":3,"14893":3,"14894":4,"14895":4,"14896":2,"14897":1,"14898":3,"14899":4,"14900":2,"14901":3,"14902":2,"14903":2,"14904":3,"14905":2,"14906":1,"14907":4,"14908":3,"14909":4,"14910":1,"14911":1,"14912":2,"14913":1,"14914":2,"14915":3,"14916":4,"14917":3,"14918":2,"14919":3,"14920":4,"14921":4,"14922":3,"14923":2,"14924":4,"14925":1,"14926":3,"14927":4,"14928":2,"14929":4,"14930":3,"14931":4,"14932":3,"14933":2,"14934":2,"14935":3,"14936":5,"14937":2,"14938":3,"14939":4,"14940":3,"14941":2,"14942":4,"14943":1,"14944":2,"14945":3,"14946":2,"14947":3,"14948":2,"14949":3,"14950":5,"14951":2,"14952":5,"14953":5,"14954":3,"14955":3,"14956":4,"14957":2,"14958":3,"14959":4,"14960":2,"14961":5,"14962":3,"14963":4,"14964":2,"14965":4,"14966":3,"14967":5,"14968":4,"14969":3,"14970":4,"14971":2,"14972":4,"14973":2,"14974":3,"14975":5,"14976":4,"14977":4,"14978":3,"14979":3,"14980":1,"14981":3,"14982":3,"14983":4,"14984":3,"14985":5,"14986":3,"14987":3,"14988":3,"14989":2,"14990":4,"14991":3,"14992":3,"14993":5,"14994":4,"14995":4,"14996":4,"14997":3,"14998":3,"14999":3,"15000":2,"15001":4,"15002":2,"15003":4,"15004":4,"15005":3,"15006":2,"15007":1,"15008":2,"15009":2,"15010":1,"15011":4,"15012":4,"15013":3,"15014":4,"15015":3,"15016":5,"15017":5,"15018":2,"15019":2,"15020":4,"15021":4,"15022":4,"15023":2,"15024":3,"15025":2,"15026":4,"15027":4,"15028":1,"15029":3,"15030":3,"15031":1,"15032":4,"15033":3,"15034":2,"15035":1,"15036":3,"15037":2,"15038":4,"15039":2,"15040":4,"15041":4,"15042":3,"15043":4,"15044":2,"15045":2,"15046":2,"15047":4,"15048":3,"15049":1,"15050":3,"15051":4,"15052":2,"15053":3,"15054":1,"15055":3,"15056":3,"15057":4,"15058":4,"15059":5,"15060":4,"15061":2,"15062":3,"15063":3,"15064":1,"15065":3,"15066":3,"15067":4,"15068":3,"15069":4,"15070":1,"15071":4,"15072":5,"15073":4,"15074":3,"15075":4,"15076":3,"15077":2,"15078":4,"15079":3,"15080":5,"15081":2,"15082":3,"15083":5,"15084":2,"15085":1,"15086":4,"15087":3,"15088":4,"15089":1,"15090":1,"15091":5,"15092":3,"15093":2,"15094":3,"15095":4,"15096":2,"15097":3,"15098":3,"15099":3,"15100":2,"15101":4,"15102":3,"15103":2,"15104":2,"15105":4,"15106":2,"15107":5,"15108":4,"15109":3,"15110":5,"15111":3,"15112":4,"15113":3,"15114":2,"15115":3,"15116":3,"15117":2,"15118":2,"15119":5,"15120":3,"15121":4,"15122":2,"15123":2,"15124":4,"15125":5,"15126":2,"15127":4,"15128":2,"15129":3,"15130":4,"15131":2,"15132":3,"15133":3,"15134":4,"15135":3,"15136":3,"15137":1,"15138":3,"15139":3,"15140":3,"15141":3,"15142":3,"15143":2,"15144":4,"15145":4,"15146":3,"15147":4,"15148":3,"15149":2,"15150":4,"15151":3,"15152":5,"15153":4,"15154":4,"15155":1,"15156":2,"15157":2,"15158":3,"15159":3,"15160":3,"15161":3,"15162":5,"15163":1,"15164":2,"15165":3,"15166":4,"15167":2,"15168":4,"15169":3,"15170":4,"15171":3,"15172":1,"15173":2,"15174":4,"15175":4,"15176":4,"15177":3,"15178":4,"15179":3,"15180":3,"15181":5,"15182":2,"15183":5,"15184":3,"15185":3,"15186":4,"15187":3,"15188":2,"15189":5,"15190":4,"15191":2,"15192":4,"15193":1,"15194":4,"15195":1,"15196":4,"15197":3,"15198":4,"15199":4,"15200":4,"15201":2,"15202":2,"15203":3,"15204":4,"15205":2,"15206":1,"15207":1,"15208":5,"15209":2,"15210":3,"15211":5,"15212":2,"15213":1,"15214":3,"15215":5,"15216":5,"15217":2,"15218":4,"15219":2,"15220":2,"15221":2,"15222":5,"15223":5,"15224":2,"15225":4,"15226":4,"15227":2,"15228":3,"15229":3,"15230":2,"15231":2,"15232":4,"15233":1,"15234":4,"15235":4,"15236":3,"15237":3,"15238":1,"15239":2,"15240":4,"15241":4,"15242":3,"15243":3,"15244":4,"15245":2,"15246":2,"15247":4,"15248":1,"15249":3,"15250":4,"15251":4,"15252":1,"15253":4,"15254":1,"15255":4,"15256":3,"15257":2,"15258":4,"15259":3,"15260":3,"15261":4,"15262":2,"15263":3,"15264":2,"15265":1,"15266":3,"15267":2,"15268":4,"15269":3,"15270":3,"15271":4,"15272":4,"15273":2,"15274":2,"15275":3,"15276":1,"15277":2,"15278":1,"15279":5,"15280":4,"15281":4,"15282":3,"15283":5,"15284":2,"15285":2,"15286":2,"15287":3,"15288":1,"15289":3,"15290":3,"15291":3,"15292":4,"15293":3,"15294":3,"15295":2,"15296":4,"15297":2,"15298":4,"15299":3,"15300":3,"15301":3,"15302":3,"15303":4,"15304":5,"15305":5,"15306":5,"15307":2,"15308":1,"15309":5,"15310":4,"15311":3,"15312":4,"15313":2,"15314":3,"15315":5,"15316":2,"15317":5,"15318":3,"15319":3,"15320":3,"15321":2,"15322":3,"15323":2,"15324":3,"15325":3,"15326":4,"15327":3,"15328":2,"15329":2,"15330":2,"15331":3,"15332":3,"15333":1,"15334":3,"15335":3,"15336":3,"15337":2,"15338":4,"15339":3,"15340":1,"15341":1,"15342":4,"15343":4,"15344":4,"15345":4,"15346":3,"15347":1,"15348":4,"15349":4,"15350":5,"15351":1,"15352":2,"15353":1,"15354":4,"15355":2,"15356":1,"15357":2,"15358":3,"15359":2,"15360":4,"15361":3,"15362":2,"15363":4,"15364":5,"15365":2,"15366":4,"15367":3,"15368":1,"15369":2,"15370":4,"15371":2,"15372":5,"15373":2,"15374":1,"15375":5,"15376":2,"15377":4,"15378":3,"15379":5,"15380":1,"15381":2,"15382":4,"15383":3,"15384":3,"15385":2,"15386":3,"15387":2,"15388":1,"15389":4,"15390":3,"15391":2,"15392":4,"15393":3,"15394":4,"15395":4,"15396":4,"15397":5,"15398":3,"15399":2,"15400":3,"15401":2,"15402":2,"15403":3,"15404":3,"15405":4,"15406":3,"15407":3,"15408":2,"15409":3,"15410":2,"15411":3,"15412":2,"15413":5,"15414":1,"15415":4,"15416":2,"15417":2,"15418":4,"15419":1,"15420":3,"15421":3,"15422":4,"15423":1,"15424":2,"15425":3,"15426":2,"15427":4,"15428":4,"15429":4,"15430":3,"15431":1,"15432":3,"15433":1,"15434":3,"15435":2,"15436":1,"15437":5,"15438":3,"15439":4,"15440":3,"15441":3,"15442":4,"15443":4,"15444":3,"15445":4,"15446":3,"15447":5,"15448":3,"15449":2,"15450":2,"15451":5,"15452":2,"15453":1,"15454":3,"15455":2,"15456":4,"15457":1,"15458":3,"15459":2,"15460":4,"15461":4,"15462":2,"15463":3,"15464":3,"15465":3,"15466":3,"15467":2,"15468":3,"15469":1,"15470":5,"15471":2,"15472":4,"15473":3,"15474":3,"15475":3,"15476":5,"15477":2,"15478":1,"15479":3,"15480":2,"15481":2,"15482":2,"15483":3,"15484":5,"15485":3,"15486":3,"15487":5,"15488":4,"15489":2,"15490":2,"15491":1,"15492":3,"15493":3,"15494":1,"15495":2,"15496":3,"15497":2,"15498":2,"15499":4,"15500":3,"15501":4,"15502":3,"15503":5,"15504":4,"15505":3,"15506":3,"15507":5,"15508":4,"15509":5,"15510":2,"15511":4,"15512":4,"15513":1,"15514":5,"15515":3,"15516":4,"15517":3,"15518":4,"15519":2,"15520":4,"15521":4,"15522":4,"15523":4,"15524":4,"15525":3,"15526":3,"15527":3,"15528":3,"15529":2,"15530":1,"15531":5,"15532":3,"15533":2,"15534":2,"15535":5,"15536":5,"15537":3,"15538":2,"15539":2,"15540":3,"15541":1,"15542":3,"15543":3,"15544":1,"15545":5,"15546":3,"15547":2,"15548":3,"15549":3,"15550":3,"15551":2,"15552":1,"15553":2,"15554":4,"15555":4,"15556":3,"15557":3,"15558":3,"15559":3,"15560":5,"15561":5,"15562":3,"15563":2,"15564":4,"15565":3,"15566":3,"15567":1,"15568":3,"15569":5,"15570":3,"15571":4,"15572":4,"15573":4,"15574":3,"15575":2,"15576":4,"15577":3,"15578":2,"15579":3,"15580":5,"15581":2,"15582":4,"15583":2,"15584":4,"15585":2,"15586":2,"15587":1,"15588":2,"15589":1,"15590":4,"15591":2,"15592":2,"15593":1,"15594":3,"15595":4,"15596":2,"15597":3,"15598":2,"15599":4,"15600":2,"15601":2,"15602":3,"15603":2,"15604":4,"15605":3,"15606":2,"15607":2,"15608":2,"15609":3,"15610":2,"15611":4,"15612":2,"15613":5,"15614":2,"15615":2,"15616":2,"15617":5,"15618":2,"15619":5,"15620":2,"15621":1,"15622":4,"15623":4,"15624":2,"15625":1,"15626":3,"15627":1,"15628":3,"15629":4,"15630":3,"15631":2,"15632":2,"15633":2,"15634":3,"15635":2,"15636":1,"15637":4,"15638":4,"15639":3,"15640":3,"15641":4,"15642":5,"15643":4,"15644":4,"15645":3,"15646":2,"15647":2,"15648":5,"15649":2,"15650":3,"15651":3,"15652":1,"15653":4,"15654":4,"15655":3,"15656":3,"15657":3,"15658":4,"15659":5,"15660":3,"15661":3,"15662":3,"15663":4,"15664":4,"15665":2,"15666":3,"15667":2,"15668":3,"15669":2,"15670":4,"15671":1,"15672":2,"15673":4,"15674":1,"15675":2,"15676":4,"15677":4,"15678":2,"15679":3,"15680":1,"15681":2,"15682":2,"15683":2,"15684":3,"15685":4,"15686":3,"15687":2,"15688":4,"15689":5,"15690":2,"15691":4,"15692":2,"15693":1,"15694":3,"15695":3,"15696":4,"15697":2,"15698":5,"15699":3,"15700":4,"15701":3,"15702":4,"15703":2,"15704":4,"15705":3,"15706":4,"15707":4,"15708":3,"15709":4,"15710":3,"15711":4,"15712":2,"15713":3,"15714":4,"15715":5,"15716":4,"15717":2,"15718":3,"15719":1,"15720":3,"15721":5,"15722":1,"15723":3,"15724":3,"15725":3,"15726":4,"15727":3,"15728":4,"15729":3,"15730":4,"15731":5,"15732":2,"15733":1,"15734":3,"15735":3,"15736":3,"15737":3,"15738":2,"15739":3,"15740":4,"15741":4,"15742":2,"15743":4,"15744":2,"15745":3,"15746":1,"15747":3,"15748":3,"15749":3,"15750":2,"15751":4,"15752":1,"15753":5,"15754":1,"15755":4,"15756":4,"15757":2,"15758":4,"15759":4,"15760":4,"15761":5,"15762":2,"15763":2,"15764":3,"15765":1,"15766":5,"15767":3,"15768":5,"15769":4,"15770":3,"15771":3,"15772":2,"15773":1,"15774":3,"15775":1,"15776":3,"15777":4,"15778":3,"15779":3,"15780":3,"15781":3,"15782":2,"15783":2,"15784":2,"15785":3,"15786":3,"15787":4,"15788":5,"15789":2,"15790":5,"15791":1,"15792":2,"15793":1,"15794":4,"15795":4,"15796":3,"15797":4,"15798":2,"15799":3,"15800":3,"15801":3,"15802":2,"15803":4,"15804":1,"15805":4,"15806":2,"15807":3,"15808":4,"15809":3,"15810":3,"15811":2,"15812":2,"15813":2,"15814":1,"15815":2,"15816":3,"15817":2,"15818":3,"15819":3,"15820":4,"15821":1,"15822":3,"15823":2,"15824":1,"15825":2,"15826":1,"15827":3,"15828":2,"15829":3,"15830":4,"15831":2,"15832":2,"15833":5,"15834":3,"15835":4,"15836":4,"15837":2,"15838":4,"15839":3,"15840":1,"15841":2,"15842":4,"15843":3,"15844":4,"15845":1,"15846":4,"15847":2,"15848":3,"15849":4,"15850":3,"15851":2,"15852":3,"15853":5,"15854":2,"15855":3,"15856":4,"15857":3,"15858":3,"15859":2,"15860":4,"15861":4,"15862":3,"15863":4,"15864":2,"15865":4,"15866":4,"15867":4,"15868":3,"15869":3,"15870":3,"15871":2,"15872":1,"15873":3,"15874":1,"15875":3,"15876":3,"15877":1,"15878":2,"15879":4,"15880":4,"15881":5,"15882":2,"15883":3,"15884":3,"15885":2,"15886":3,"15887":3,"15888":3,"15889":1,"15890":3,"15891":3,"15892":4,"15893":4,"15894":3,"15895":3,"15896":3,"15897":2,"15898":3,"15899":3,"15900":3,"15901":1,"15902":1,"15903":4,"15904":3,"15905":4,"15906":2,"15907":3,"15908":4,"15909":5,"15910":4,"15911":4,"15912":4,"15913":3,"15914":4,"15915":4,"15916":3,"15917":3,"15918":4,"15919":3,"15920":3,"15921":3,"15922":4,"15923":4,"15924":4,"15925":2,"15926":3,"15927":3,"15928":3,"15929":4,"15930":2,"15931":3,"15932":4,"15933":3,"15934":2,"15935":2,"15936":4,"15937":1,"15938":3,"15939":1,"15940":3,"15941":4,"15942":4,"15943":1,"15944":2,"15945":2,"15946":2,"15947":4,"15948":4,"15949":3,"15950":3,"15951":1,"15952":3,"15953":2,"15954":1,"15955":3,"15956":3,"15957":2,"15958":4,"15959":4,"15960":1,"15961":4,"15962":3,"15963":4,"15964":4,"15965":4,"15966":3,"15967":1,"15968":4,"15969":1,"15970":3,"15971":1,"15972":1,"15973":3,"15974":4,"15975":4,"15976":4,"15977":3,"15978":5,"15979":3,"15980":4,"15981":2,"15982":2,"15983":2,"15984":3,"15985":1,"15986":4,"15987":1,"15988":3,"15989":2,"15990":3,"15991":3,"15992":4,"15993":5,"15994":1,"15995":5,"15996":3,"15997":3,"15998":1,"15999":4,"16000":4,"16001":1,"16002":3,"16003":3,"16004":4,"16005":4,"16006":3,"16007":4,"16008":4,"16009":3,"16010":2,"16011":4,"16012":1,"16013":5,"16014":4,"16015":2,"16016":3,"16017":5,"16018":2,"16019":2,"16020":2,"16021":3,"16022":4,"16023":4,"16024":4,"16025":4,"16026":3,"16027":4,"16028":4,"16029":2,"16030":4,"16031":4,"16032":3,"16033":2,"16034":4,"16035":1,"16036":3,"16037":3,"16038":2,"16039":3,"16040":3,"16041":3,"16042":2,"16043":5,"16044":3,"16045":4,"16046":4,"16047":3,"16048":3,"16049":4,"16050":3,"16051":3,"16052":3,"16053":4,"16054":3,"16055":2,"16056":5,"16057":3,"16058":1,"16059":4,"16060":4,"16061":4,"16062":3,"16063":2,"16064":2,"16065":4,"16066":4,"16067":4,"16068":4,"16069":3,"16070":4,"16071":5,"16072":3,"16073":4,"16074":4,"16075":3,"16076":2,"16077":4,"16078":2,"16079":4,"16080":4,"16081":3,"16082":4,"16083":3,"16084":1,"16085":2,"16086":3,"16087":4,"16088":2,"16089":3,"16090":5,"16091":4,"16092":4,"16093":4,"16094":4,"16095":3,"16096":3,"16097":4,"16098":2,"16099":4,"16100":4,"16101":3,"16102":3,"16103":3,"16104":3,"16105":4,"16106":4,"16107":5,"16108":3,"16109":3,"16110":3,"16111":2,"16112":3,"16113":3,"16114":4,"16115":2,"16116":4,"16117":3,"16118":4,"16119":1,"16120":4,"16121":3,"16122":2,"16123":2,"16124":5,"16125":4,"16126":5,"16127":2,"16128":3,"16129":2,"16130":3,"16131":5,"16132":4,"16133":2,"16134":4,"16135":3,"16136":1,"16137":2,"16138":4,"16139":3,"16140":3,"16141":5,"16142":2,"16143":1,"16144":3,"16145":2,"16146":4,"16147":4,"16148":4,"16149":3,"16150":2,"16151":2,"16152":3,"16153":3,"16154":2,"16155":2,"16156":4,"16157":3,"16158":3,"16159":2,"16160":5,"16161":3,"16162":1,"16163":2,"16164":2,"16165":2,"16166":2,"16167":1,"16168":3,"16169":1,"16170":3,"16171":4,"16172":3,"16173":4,"16174":2,"16175":2,"16176":1,"16177":1,"16178":2,"16179":4,"16180":4,"16181":4,"16182":3,"16183":4,"16184":2,"16185":4,"16186":2,"16187":3,"16188":3,"16189":4,"16190":1,"16191":5,"16192":4,"16193":3,"16194":4,"16195":3,"16196":1,"16197":5,"16198":3,"16199":4,"16200":1,"16201":3,"16202":4,"16203":2,"16204":4,"16205":5,"16206":1,"16207":3,"16208":4,"16209":3,"16210":1,"16211":4,"16212":3,"16213":3,"16214":3,"16215":2,"16216":3,"16217":3,"16218":3,"16219":4,"16220":2,"16221":5,"16222":1,"16223":3,"16224":3,"16225":4,"16226":4,"16227":4,"16228":3,"16229":4,"16230":3,"16231":4,"16232":3,"16233":4,"16234":4,"16235":2,"16236":5,"16237":2,"16238":4,"16239":1,"16240":4,"16241":2,"16242":4,"16243":4,"16244":2,"16245":4,"16246":1,"16247":2,"16248":3,"16249":3,"16250":2,"16251":2,"16252":4,"16253":3,"16254":5,"16255":4,"16256":2,"16257":3,"16258":1,"16259":3,"16260":1,"16261":2,"16262":3,"16263":3,"16264":4,"16265":4,"16266":5,"16267":2,"16268":3,"16269":4,"16270":5,"16271":4,"16272":3,"16273":5,"16274":2,"16275":2,"16276":2,"16277":3,"16278":3,"16279":3,"16280":3,"16281":2,"16282":1,"16283":3,"16284":5,"16285":4,"16286":4,"16287":3,"16288":3,"16289":5,"16290":2,"16291":5,"16292":5,"16293":4,"16294":3,"16295":1,"16296":3,"16297":2,"16298":3,"16299":4,"16300":4,"16301":3,"16302":2,"16303":2,"16304":2,"16305":1,"16306":4,"16307":3,"16308":4,"16309":4,"16310":2,"16311":3,"16312":1,"16313":3,"16314":4,"16315":4,"16316":4,"16317":3,"16318":3,"16319":3,"16320":3,"16321":3,"16322":4,"16323":2,"16324":3,"16325":5,"16326":4,"16327":3,"16328":3,"16329":2,"16330":5,"16331":2,"16332":2,"16333":5,"16334":2,"16335":3,"16336":3,"16337":4,"16338":3,"16339":2,"16340":3,"16341":3,"16342":5,"16343":3,"16344":4,"16345":2,"16346":2,"16347":4,"16348":3,"16349":2,"16350":4,"16351":2,"16352":3,"16353":4,"16354":4,"16355":5,"16356":3,"16357":2,"16358":3,"16359":1,"16360":2,"16361":1,"16362":2,"16363":1,"16364":3,"16365":2,"16366":1,"16367":1,"16368":1,"16369":4,"16370":3,"16371":3,"16372":3,"16373":3,"16374":3,"16375":2,"16376":1,"16377":3,"16378":4,"16379":3,"16380":5,"16381":3,"16382":4,"16383":2,"16384":5,"16385":3,"16386":1,"16387":1,"16388":1,"16389":2,"16390":4,"16391":4,"16392":4,"16393":4,"16394":3,"16395":3,"16396":3,"16397":3,"16398":1,"16399":4,"16400":3,"16401":4,"16402":1,"16403":4,"16404":3,"16405":1,"16406":3,"16407":3,"16408":3,"16409":2,"16410":2,"16411":4,"16412":2,"16413":2,"16414":4,"16415":4,"16416":2,"16417":3,"16418":2,"16419":2,"16420":5,"16421":3,"16422":1,"16423":3,"16424":4,"16425":3,"16426":5,"16427":3,"16428":3,"16429":3,"16430":3,"16431":1,"16432":2,"16433":3,"16434":2,"16435":4,"16436":4,"16437":4,"16438":3,"16439":4,"16440":3,"16441":3,"16442":4,"16443":4,"16444":3,"16445":3,"16446":2,"16447":3,"16448":3,"16449":3,"16450":3,"16451":5,"16452":5,"16453":4,"16454":1,"16455":5,"16456":1,"16457":2,"16458":5,"16459":5,"16460":3,"16461":2,"16462":3,"16463":3,"16464":2,"16465":4,"16466":3,"16467":3,"16468":2,"16469":3,"16470":1,"16471":4,"16472":2,"16473":3,"16474":3,"16475":5,"16476":3,"16477":3,"16478":4,"16479":3,"16480":3,"16481":1,"16482":3,"16483":2,"16484":2,"16485":3,"16486":3,"16487":2,"16488":1,"16489":5,"16490":4,"16491":2,"16492":3,"16493":3,"16494":4,"16495":2,"16496":4,"16497":3,"16498":5,"16499":3,"16500":2,"16501":3,"16502":2,"16503":3,"16504":4,"16505":4,"16506":3,"16507":3,"16508":1,"16509":3,"16510":4,"16511":3,"16512":2,"16513":2,"16514":3,"16515":3,"16516":3,"16517":3,"16518":3,"16519":3,"16520":4,"16521":2,"16522":1,"16523":3,"16524":2,"16525":4,"16526":3,"16527":3,"16528":1,"16529":4,"16530":3,"16531":3,"16532":4,"16533":4,"16534":1,"16535":1,"16536":3,"16537":4,"16538":4,"16539":5,"16540":1,"16541":1,"16542":2,"16543":4,"16544":2,"16545":1,"16546":4,"16547":1,"16548":5,"16549":2,"16550":3,"16551":4,"16552":3,"16553":3,"16554":3,"16555":3,"16556":2,"16557":2,"16558":2,"16559":2,"16560":4,"16561":3,"16562":4,"16563":2,"16564":1,"16565":3,"16566":2,"16567":4,"16568":3,"16569":4,"16570":2,"16571":4,"16572":5,"16573":2,"16574":3,"16575":2,"16576":2,"16577":2,"16578":4,"16579":3,"16580":2,"16581":3,"16582":2,"16583":5,"16584":3,"16585":2,"16586":4,"16587":3,"16588":4,"16589":4,"16590":4,"16591":3,"16592":2,"16593":3,"16594":4,"16595":3,"16596":4,"16597":3,"16598":4,"16599":3,"16600":2,"16601":4,"16602":2,"16603":3,"16604":2,"16605":4,"16606":2,"16607":1,"16608":2,"16609":4,"16610":4,"16611":3,"16612":3,"16613":3,"16614":3,"16615":2,"16616":4,"16617":5,"16618":3,"16619":5,"16620":4,"16621":3,"16622":2,"16623":3,"16624":5,"16625":3,"16626":2,"16627":4,"16628":3,"16629":2,"16630":4,"16631":4,"16632":3,"16633":2,"16634":3,"16635":5,"16636":2,"16637":4,"16638":3,"16639":4,"16640":3,"16641":2,"16642":4,"16643":2,"16644":2,"16645":3,"16646":4,"16647":3,"16648":4,"16649":1,"16650":3,"16651":3,"16652":3,"16653":3,"16654":3,"16655":3,"16656":4,"16657":3,"16658":2,"16659":2,"16660":2,"16661":3,"16662":3,"16663":2,"16664":1,"16665":3,"16666":4,"16667":2,"16668":2,"16669":4,"16670":2,"16671":2,"16672":4,"16673":4,"16674":3,"16675":2,"16676":2,"16677":2,"16678":2,"16679":5,"16680":5,"16681":3,"16682":3,"16683":1,"16684":1,"16685":1,"16686":3,"16687":3,"16688":4,"16689":3,"16690":4,"16691":5,"16692":2,"16693":3,"16694":4,"16695":1,"16696":2,"16697":3,"16698":1,"16699":5,"16700":4,"16701":2,"16702":4,"16703":3,"16704":2,"16705":3,"16706":2,"16707":2,"16708":3,"16709":2,"16710":1,"16711":2,"16712":3,"16713":4,"16714":2,"16715":4,"16716":2,"16717":3,"16718":3,"16719":4,"16720":3,"16721":5,"16722":2,"16723":4,"16724":3,"16725":3,"16726":1,"16727":4,"16728":2,"16729":4,"16730":5,"16731":3,"16732":3,"16733":3,"16734":4,"16735":3,"16736":4,"16737":4,"16738":4,"16739":3,"16740":4,"16741":4,"16742":2,"16743":4,"16744":3,"16745":3,"16746":4,"16747":3,"16748":3,"16749":4,"16750":2,"16751":4,"16752":3,"16753":3,"16754":1,"16755":2,"16756":3,"16757":2,"16758":2,"16759":3,"16760":3,"16761":2,"16762":4,"16763":4,"16764":4,"16765":2,"16766":3,"16767":4,"16768":4,"16769":1,"16770":3,"16771":4,"16772":2,"16773":2,"16774":2,"16775":4,"16776":1,"16777":4,"16778":2,"16779":3,"16780":3,"16781":4,"16782":4,"16783":2,"16784":4,"16785":3,"16786":3,"16787":4,"16788":2,"16789":3,"16790":4,"16791":1,"16792":2,"16793":2,"16794":5,"16795":3,"16796":4,"16797":2,"16798":2,"16799":1,"16800":3,"16801":5,"16802":5,"16803":4,"16804":1,"16805":5,"16806":3,"16807":3,"16808":3,"16809":2,"16810":4,"16811":2,"16812":3,"16813":3,"16814":3,"16815":3,"16816":2,"16817":4,"16818":4,"16819":1,"16820":2,"16821":3,"16822":4,"16823":3,"16824":5,"16825":2,"16826":3,"16827":3,"16828":1,"16829":3,"16830":2,"16831":4,"16832":2,"16833":3,"16834":2,"16835":4,"16836":1,"16837":3,"16838":3,"16839":4,"16840":5,"16841":3,"16842":4,"16843":3,"16844":3,"16845":4,"16846":3,"16847":3,"16848":3,"16849":3,"16850":1,"16851":2,"16852":3,"16853":3,"16854":3,"16855":1,"16856":5,"16857":3,"16858":3,"16859":4,"16860":3,"16861":5,"16862":4,"16863":4,"16864":4,"16865":3,"16866":4,"16867":4,"16868":2,"16869":3,"16870":3,"16871":3,"16872":1,"16873":3,"16874":3,"16875":1,"16876":1,"16877":4,"16878":3,"16879":3,"16880":1,"16881":5,"16882":3,"16883":4,"16884":1,"16885":4,"16886":3,"16887":4,"16888":3,"16889":4,"16890":2,"16891":4,"16892":2,"16893":4,"16894":1,"16895":2,"16896":1,"16897":4,"16898":3,"16899":3,"16900":3,"16901":2,"16902":2,"16903":2,"16904":4,"16905":3,"16906":2,"16907":2,"16908":4,"16909":1,"16910":3,"16911":4,"16912":4,"16913":2,"16914":4,"16915":2,"16916":2,"16917":3,"16918":3,"16919":3,"16920":5,"16921":3,"16922":4,"16923":1,"16924":3,"16925":2,"16926":2,"16927":2,"16928":4,"16929":4,"16930":2,"16931":4,"16932":3,"16933":3,"16934":3,"16935":3,"16936":1,"16937":2,"16938":2,"16939":3,"16940":4,"16941":1,"16942":3,"16943":3,"16944":2,"16945":4,"16946":2,"16947":4,"16948":2,"16949":2,"16950":4,"16951":2,"16952":3,"16953":5,"16954":4,"16955":3,"16956":3,"16957":4,"16958":2,"16959":4,"16960":2,"16961":3,"16962":4,"16963":3,"16964":3,"16965":4,"16966":3,"16967":4,"16968":3,"16969":2,"16970":1,"16971":5,"16972":2,"16973":1,"16974":4,"16975":4,"16976":3,"16977":2,"16978":3,"16979":4,"16980":1,"16981":3,"16982":1,"16983":2,"16984":4,"16985":5,"16986":3,"16987":2,"16988":3,"16989":3,"16990":3,"16991":1,"16992":1,"16993":3,"16994":4,"16995":3,"16996":4,"16997":2,"16998":3,"16999":4,"17000":3,"17001":3,"17002":3,"17003":1,"17004":2,"17005":1,"17006":4,"17007":4,"17008":3,"17009":2,"17010":3,"17011":1,"17012":4,"17013":4,"17014":3,"17015":3,"17016":4,"17017":4,"17018":2,"17019":3,"17020":3,"17021":2,"17022":3,"17023":4,"17024":3,"17025":1,"17026":3,"17027":1,"17028":2,"17029":2,"17030":3,"17031":1,"17032":3,"17033":5,"17034":3,"17035":4,"17036":2,"17037":3,"17038":4,"17039":2,"17040":3,"17041":1,"17042":3,"17043":3,"17044":4,"17045":3,"17046":2,"17047":3,"17048":3,"17049":4,"17050":3,"17051":1,"17052":3,"17053":2,"17054":5,"17055":3,"17056":1,"17057":3,"17058":2,"17059":3,"17060":3,"17061":3,"17062":3,"17063":4,"17064":3,"17065":1,"17066":3,"17067":2,"17068":3,"17069":4,"17070":4,"17071":4,"17072":3,"17073":3,"17074":5,"17075":3,"17076":3,"17077":3,"17078":2,"17079":2,"17080":4,"17081":5,"17082":3,"17083":3,"17084":4,"17085":1,"17086":3,"17087":3,"17088":4,"17089":4,"17090":4,"17091":3,"17092":4,"17093":2,"17094":2,"17095":5,"17096":2,"17097":5,"17098":2,"17099":2,"17100":3,"17101":4,"17102":5,"17103":4,"17104":3,"17105":1,"17106":4,"17107":2,"17108":2,"17109":2,"17110":4,"17111":2,"17112":2,"17113":1,"17114":5,"17115":2,"17116":3,"17117":3,"17118":3,"17119":3,"17120":2,"17121":2,"17122":3,"17123":3,"17124":4,"17125":1,"17126":2,"17127":3,"17128":4,"17129":2,"17130":3,"17131":3,"17132":3,"17133":5,"17134":2,"17135":2,"17136":2,"17137":3,"17138":1,"17139":3,"17140":4,"17141":4,"17142":4,"17143":4,"17144":4,"17145":3,"17146":3,"17147":3,"17148":2,"17149":3,"17150":4,"17151":4,"17152":4,"17153":2,"17154":3,"17155":4,"17156":2,"17157":3,"17158":3,"17159":3,"17160":2,"17161":5,"17162":4,"17163":3,"17164":4,"17165":3,"17166":1,"17167":2,"17168":4,"17169":5,"17170":3,"17171":3,"17172":3,"17173":4,"17174":3,"17175":4,"17176":2,"17177":3,"17178":4,"17179":5,"17180":3,"17181":5,"17182":2,"17183":1,"17184":3,"17185":3,"17186":2,"17187":5,"17188":2,"17189":3,"17190":2,"17191":2,"17192":2,"17193":3,"17194":3,"17195":3,"17196":2,"17197":3,"17198":4,"17199":1,"17200":3,"17201":5,"17202":3,"17203":3,"17204":4,"17205":3,"17206":3,"17207":4,"17208":2,"17209":3,"17210":2,"17211":1,"17212":1,"17213":3,"17214":4,"17215":4,"17216":4,"17217":3,"17218":2,"17219":2,"17220":2,"17221":5,"17222":5,"17223":5,"17224":4,"17225":2,"17226":4,"17227":4,"17228":3,"17229":3,"17230":5,"17231":4,"17232":3,"17233":2,"17234":2,"17235":2,"17236":4,"17237":4,"17238":5,"17239":4,"17240":4,"17241":1,"17242":2,"17243":2,"17244":2,"17245":3,"17246":4,"17247":2,"17248":2,"17249":3,"17250":3,"17251":5,"17252":2,"17253":3,"17254":2,"17255":4,"17256":2,"17257":5,"17258":5,"17259":4,"17260":4,"17261":2,"17262":3,"17263":2,"17264":2,"17265":2,"17266":1,"17267":2,"17268":3,"17269":4,"17270":4,"17271":3,"17272":2,"17273":2,"17274":1,"17275":3,"17276":4,"17277":4,"17278":2,"17279":2,"17280":5,"17281":4,"17282":1,"17283":2,"17284":3,"17285":3,"17286":2,"17287":2,"17288":3,"17289":4,"17290":3,"17291":3,"17292":4,"17293":3,"17294":2,"17295":2,"17296":3,"17297":2,"17298":3,"17299":3,"17300":1,"17301":2,"17302":3,"17303":2,"17304":3,"17305":4,"17306":3,"17307":2,"17308":3,"17309":2,"17310":2,"17311":2,"17312":5,"17313":4,"17314":2,"17315":4,"17316":3,"17317":3,"17318":2,"17319":4,"17320":3,"17321":2,"17322":4,"17323":3,"17324":3,"17325":3,"17326":5,"17327":4,"17328":2,"17329":3,"17330":3,"17331":3,"17332":5,"17333":4,"17334":2,"17335":2,"17336":3,"17337":4,"17338":3,"17339":2,"17340":4,"17341":3,"17342":2,"17343":3,"17344":1,"17345":1,"17346":3,"17347":3,"17348":4,"17349":3,"17350":3,"17351":5,"17352":2,"17353":3,"17354":3,"17355":4,"17356":3,"17357":2,"17358":3,"17359":4,"17360":4,"17361":4,"17362":3,"17363":4,"17364":2,"17365":3,"17366":3,"17367":2,"17368":3,"17369":3,"17370":4,"17371":3,"17372":3,"17373":4,"17374":3,"17375":2,"17376":1,"17377":4,"17378":5,"17379":2,"17380":4,"17381":3,"17382":5,"17383":4,"17384":4,"17385":3,"17386":2,"17387":5,"17388":4,"17389":2,"17390":4,"17391":4,"17392":5,"17393":3,"17394":4,"17395":3,"17396":4,"17397":3,"17398":3,"17399":2,"17400":2,"17401":2,"17402":4,"17403":3,"17404":4,"17405":2,"17406":2,"17407":2,"17408":4,"17409":5,"17410":3,"17411":5,"17412":5,"17413":5,"17414":5,"17415":3,"17416":3,"17417":3,"17418":1,"17419":3,"17420":4,"17421":4,"17422":3,"17423":2,"17424":2,"17425":4,"17426":3,"17427":3,"17428":4,"17429":2,"17430":3,"17431":4,"17432":2,"17433":5,"17434":2,"17435":2,"17436":3,"17437":1,"17438":4,"17439":5,"17440":4,"17441":3,"17442":5,"17443":3,"17444":3,"17445":2,"17446":4,"17447":2,"17448":4,"17449":2,"17450":1,"17451":4,"17452":1,"17453":3,"17454":4,"17455":5,"17456":5,"17457":2,"17458":2,"17459":1,"17460":2,"17461":1,"17462":2,"17463":3,"17464":5,"17465":4,"17466":5,"17467":5,"17468":2,"17469":3,"17470":1,"17471":1,"17472":3,"17473":4,"17474":3,"17475":3,"17476":3,"17477":4,"17478":3,"17479":1,"17480":4,"17481":3,"17482":4,"17483":2,"17484":3,"17485":2,"17486":3,"17487":5,"17488":1,"17489":4,"17490":3,"17491":4,"17492":3,"17493":1,"17494":4,"17495":2,"17496":3,"17497":3,"17498":2,"17499":2,"17500":3,"17501":1,"17502":5,"17503":1,"17504":3,"17505":4,"17506":2,"17507":4,"17508":2,"17509":2,"17510":3,"17511":1,"17512":3,"17513":2,"17514":5,"17515":3,"17516":4,"17517":2,"17518":4,"17519":5,"17520":3,"17521":3,"17522":4,"17523":1,"17524":3,"17525":4,"17526":3,"17527":1,"17528":4,"17529":2,"17530":3,"17531":4,"17532":2,"17533":4,"17534":3,"17535":3,"17536":3,"17537":3,"17538":2,"17539":2,"17540":4,"17541":3,"17542":4,"17543":5,"17544":1,"17545":3,"17546":4,"17547":3,"17548":4,"17549":5,"17550":4,"17551":3,"17552":4,"17553":2,"17554":2,"17555":2,"17556":2,"17557":2,"17558":3,"17559":3,"17560":4,"17561":4,"17562":2,"17563":2,"17564":2,"17565":2,"17566":1,"17567":3,"17568":1,"17569":4,"17570":5,"17571":3,"17572":3,"17573":2,"17574":4,"17575":1,"17576":4,"17577":1,"17578":2,"17579":2,"17580":3,"17581":3,"17582":2,"17583":1,"17584":4,"17585":4,"17586":1,"17587":3,"17588":3,"17589":3,"17590":3,"17591":4,"17592":3,"17593":5,"17594":3,"17595":2,"17596":2,"17597":3,"17598":3,"17599":2,"17600":2,"17601":3,"17602":3,"17603":2,"17604":1,"17605":3,"17606":2,"17607":3,"17608":3,"17609":5,"17610":2,"17611":1,"17612":2,"17613":1,"17614":2,"17615":1,"17616":2,"17617":3,"17618":4,"17619":3,"17620":3,"17621":4,"17622":4,"17623":3,"17624":4,"17625":4,"17626":3,"17627":2,"17628":1,"17629":3,"17630":2,"17631":3,"17632":4,"17633":4,"17634":2,"17635":4,"17636":3,"17637":4,"17638":2,"17639":2,"17640":3,"17641":1,"17642":1,"17643":2,"17644":2,"17645":5,"17646":2,"17647":2,"17648":4,"17649":1,"17650":1,"17651":4,"17652":4,"17653":4,"17654":3,"17655":3,"17656":5,"17657":4,"17658":3,"17659":2,"17660":2,"17661":5,"17662":3,"17663":3,"17664":3,"17665":3,"17666":3,"17667":3,"17668":4,"17669":4,"17670":1,"17671":3,"17672":3,"17673":3,"17674":4,"17675":2,"17676":2,"17677":5,"17678":3,"17679":4,"17680":4,"17681":4,"17682":1,"17683":4,"17684":4,"17685":2,"17686":4,"17687":3,"17688":4,"17689":5,"17690":3,"17691":4,"17692":4,"17693":5,"17694":3,"17695":3,"17696":3,"17697":3,"17698":1,"17699":3,"17700":3,"17701":4,"17702":1,"17703":2,"17704":4,"17705":3,"17706":3,"17707":3,"17708":3,"17709":2,"17710":1,"17711":4,"17712":2,"17713":5,"17714":4,"17715":3,"17716":4,"17717":1,"17718":5,"17719":3,"17720":4,"17721":5,"17722":2,"17723":3,"17724":4,"17725":3,"17726":5,"17727":3,"17728":3,"17729":5,"17730":3,"17731":2,"17732":5,"17733":2,"17734":4,"17735":4,"17736":3,"17737":4,"17738":3,"17739":3,"17740":4,"17741":3,"17742":3,"17743":1,"17744":5,"17745":3,"17746":3,"17747":2,"17748":1,"17749":2,"17750":3,"17751":1,"17752":4,"17753":4,"17754":2,"17755":3,"17756":4,"17757":3,"17758":4,"17759":3,"17760":2,"17761":3,"17762":2,"17763":4,"17764":4,"17765":5,"17766":3,"17767":1,"17768":3,"17769":1,"17770":4,"17771":3,"17772":4,"17773":4,"17774":3,"17775":4,"17776":1,"17777":4,"17778":3,"17779":3,"17780":3,"17781":2,"17782":2,"17783":2,"17784":3,"17785":2,"17786":3,"17787":1,"17788":5,"17789":3,"17790":3,"17791":4,"17792":4,"17793":5,"17794":3,"17795":4,"17796":2,"17797":2,"17798":3,"17799":3,"17800":3,"17801":4,"17802":3,"17803":5,"17804":2,"17805":2,"17806":3,"17807":3,"17808":3,"17809":3,"17810":3,"17811":5,"17812":4,"17813":3,"17814":2,"17815":4,"17816":4,"17817":4,"17818":3,"17819":5,"17820":3,"17821":4,"17822":2,"17823":2,"17824":4,"17825":3,"17826":5,"17827":3,"17828":3,"17829":3,"17830":1,"17831":4,"17832":1,"17833":2,"17834":3,"17835":4,"17836":4,"17837":2,"17838":3,"17839":3,"17840":1,"17841":1,"17842":3,"17843":3,"17844":3,"17845":3,"17846":3,"17847":4,"17848":4,"17849":4,"17850":3,"17851":3,"17852":3,"17853":2,"17854":4,"17855":2,"17856":3,"17857":1,"17858":1,"17859":5,"17860":3,"17861":4,"17862":3,"17863":4,"17864":3,"17865":3,"17866":3,"17867":2,"17868":4,"17869":4,"17870":4,"17871":4,"17872":5,"17873":3,"17874":3,"17875":2,"17876":3,"17877":2,"17878":4,"17879":2,"17880":4,"17881":4,"17882":1,"17883":1,"17884":3,"17885":2,"17886":1,"17887":3,"17888":2,"17889":1,"17890":4,"17891":2,"17892":2,"17893":2,"17894":4,"17895":4,"17896":2,"17897":3,"17898":3,"17899":3,"17900":2,"17901":4,"17902":2,"17903":4,"17904":2,"17905":3,"17906":3,"17907":3,"17908":4,"17909":5,"17910":3,"17911":2,"17912":5,"17913":1,"17914":3,"17915":3,"17916":2,"17917":2,"17918":5,"17919":5,"17920":3,"17921":3,"17922":4,"17923":2,"17924":3,"17925":3,"17926":3,"17927":3,"17928":1,"17929":3,"17930":3,"17931":3,"17932":5,"17933":4,"17934":3,"17935":1,"17936":3,"17937":5,"17938":4,"17939":2,"17940":4,"17941":4,"17942":3,"17943":4,"17944":4,"17945":2,"17946":4,"17947":5,"17948":3,"17949":4,"17950":3,"17951":5,"17952":4,"17953":2,"17954":4,"17955":3,"17956":2,"17957":3,"17958":4,"17959":2,"17960":2,"17961":3,"17962":4,"17963":2,"17964":2,"17965":3,"17966":2,"17967":3,"17968":4,"17969":3,"17970":3,"17971":4,"17972":3,"17973":3,"17974":3,"17975":4,"17976":3,"17977":3,"17978":3,"17979":2,"17980":4,"17981":4,"17982":2,"17983":2,"17984":3,"17985":4,"17986":4,"17987":3,"17988":4,"17989":5,"17990":3,"17991":2,"17992":4,"17993":4,"17994":3,"17995":2,"17996":5,"17997":3,"17998":1,"17999":3,"18000":3,"18001":4,"18002":3,"18003":3,"18004":4,"18005":3,"18006":3,"18007":4,"18008":4,"18009":2,"18010":4,"18011":4,"18012":3,"18013":3,"18014":3,"18015":3,"18016":1,"18017":4,"18018":4,"18019":1,"18020":3,"18021":3,"18022":3,"18023":4,"18024":3,"18025":4,"18026":3,"18027":4,"18028":2,"18029":3,"18030":3,"18031":1,"18032":2,"18033":5,"18034":3,"18035":1,"18036":3,"18037":3,"18038":3,"18039":4,"18040":3,"18041":4,"18042":3,"18043":4,"18044":3,"18045":3,"18046":3,"18047":2,"18048":3,"18049":2,"18050":2,"18051":3,"18052":3,"18053":3,"18054":3,"18055":3,"18056":2,"18057":3,"18058":4,"18059":4,"18060":3,"18061":5,"18062":3,"18063":5,"18064":4,"18065":2,"18066":3,"18067":3,"18068":3,"18069":3,"18070":3,"18071":2,"18072":5,"18073":4,"18074":3,"18075":3,"18076":3,"18077":4,"18078":4,"18079":4,"18080":3,"18081":5,"18082":3,"18083":4,"18084":3,"18085":4,"18086":3,"18087":2,"18088":3,"18089":4,"18090":3,"18091":2,"18092":3,"18093":2,"18094":3,"18095":4,"18096":5,"18097":5,"18098":5,"18099":4,"18100":4,"18101":4,"18102":3,"18103":4,"18104":4,"18105":5,"18106":4,"18107":4,"18108":5,"18109":3,"18110":3,"18111":2,"18112":2,"18113":4,"18114":4,"18115":4,"18116":2,"18117":4,"18118":4,"18119":3,"18120":2,"18121":4,"18122":2,"18123":5,"18124":4,"18125":3,"18126":3,"18127":3,"18128":4,"18129":4,"18130":5,"18131":1,"18132":4,"18133":3,"18134":3,"18135":5,"18136":3,"18137":4,"18138":1,"18139":5,"18140":2,"18141":3,"18142":3,"18143":1,"18144":2,"18145":3,"18146":4,"18147":2,"18148":1,"18149":4,"18150":2,"18151":3,"18152":3,"18153":3,"18154":1,"18155":5,"18156":4,"18157":1,"18158":3,"18159":4,"18160":2,"18161":4,"18162":4,"18163":4,"18164":3,"18165":4,"18166":3,"18167":4,"18168":4,"18169":4,"18170":3,"18171":2,"18172":2,"18173":2,"18174":3,"18175":2,"18176":2,"18177":5,"18178":4,"18179":1,"18180":2,"18181":2,"18182":4,"18183":2,"18184":4,"18185":3,"18186":1,"18187":3,"18188":3,"18189":5,"18190":4,"18191":3,"18192":1,"18193":4,"18194":2,"18195":2,"18196":1,"18197":3,"18198":3,"18199":3,"18200":2,"18201":3,"18202":2,"18203":3,"18204":5,"18205":4,"18206":4,"18207":3,"18208":1,"18209":4,"18210":3,"18211":2,"18212":4,"18213":5,"18214":2,"18215":3,"18216":4,"18217":3,"18218":4,"18219":4,"18220":3,"18221":2,"18222":5,"18223":1,"18224":3,"18225":3,"18226":4,"18227":2,"18228":2,"18229":2,"18230":3,"18231":4,"18232":4,"18233":3,"18234":3,"18235":4,"18236":2,"18237":4,"18238":2,"18239":3,"18240":2,"18241":4,"18242":3,"18243":1,"18244":4,"18245":4,"18246":1,"18247":3,"18248":4,"18249":3,"18250":3,"18251":3,"18252":3,"18253":4,"18254":2,"18255":2,"18256":3,"18257":3,"18258":1,"18259":3,"18260":3,"18261":2,"18262":5,"18263":2,"18264":2,"18265":2,"18266":2,"18267":2,"18268":2,"18269":4,"18270":1,"18271":2,"18272":3,"18273":5,"18274":1,"18275":2,"18276":2,"18277":3,"18278":5,"18279":5,"18280":3,"18281":1,"18282":1,"18283":3,"18284":1,"18285":3,"18286":1,"18287":3,"18288":4,"18289":1,"18290":4,"18291":2,"18292":3,"18293":2,"18294":4,"18295":1,"18296":2,"18297":5,"18298":2,"18299":4,"18300":4,"18301":5,"18302":5,"18303":4,"18304":3,"18305":1,"18306":2,"18307":4,"18308":3,"18309":3,"18310":4,"18311":5,"18312":2,"18313":4,"18314":4,"18315":3,"18316":3,"18317":3,"18318":1,"18319":4,"18320":3,"18321":3,"18322":3,"18323":3,"18324":4,"18325":3,"18326":2,"18327":5,"18328":4,"18329":2,"18330":5,"18331":3,"18332":4,"18333":1,"18334":1,"18335":4,"18336":3,"18337":2,"18338":1,"18339":3,"18340":4,"18341":3,"18342":2,"18343":2,"18344":1,"18345":2,"18346":3,"18347":4,"18348":3,"18349":4,"18350":3,"18351":3,"18352":4,"18353":4,"18354":1,"18355":5,"18356":4,"18357":1,"18358":1,"18359":1,"18360":5,"18361":5,"18362":4,"18363":3,"18364":4,"18365":3,"18366":2,"18367":4,"18368":3,"18369":5,"18370":3,"18371":2,"18372":3,"18373":2,"18374":4,"18375":2,"18376":3,"18377":2,"18378":5,"18379":5,"18380":2,"18381":4,"18382":4,"18383":3,"18384":2,"18385":1,"18386":4,"18387":4,"18388":4,"18389":5,"18390":2,"18391":4,"18392":4,"18393":3,"18394":3,"18395":2,"18396":5,"18397":1,"18398":2,"18399":3,"18400":2,"18401":4,"18402":4,"18403":4,"18404":4,"18405":1,"18406":5,"18407":3,"18408":3,"18409":5,"18410":2,"18411":2,"18412":3,"18413":4,"18414":3,"18415":1,"18416":3,"18417":3,"18418":3,"18419":4,"18420":4,"18421":4,"18422":4,"18423":4,"18424":4,"18425":3,"18426":4,"18427":4,"18428":4,"18429":1,"18430":4,"18431":3,"18432":2,"18433":4,"18434":1,"18435":5,"18436":3,"18437":5,"18438":3,"18439":2,"18440":4,"18441":4,"18442":4,"18443":4,"18444":1,"18445":4,"18446":3,"18447":4,"18448":2,"18449":3,"18450":4,"18451":3,"18452":4,"18453":2,"18454":4,"18455":3,"18456":4,"18457":3,"18458":3,"18459":3,"18460":3,"18461":2,"18462":3,"18463":1,"18464":2,"18465":3,"18466":1,"18467":1,"18468":2,"18469":3,"18470":3,"18471":3,"18472":4,"18473":4,"18474":3,"18475":4,"18476":5,"18477":3,"18478":3,"18479":2,"18480":3,"18481":3,"18482":3,"18483":3,"18484":1,"18485":4,"18486":2,"18487":4,"18488":1,"18489":3,"18490":4,"18491":4,"18492":3,"18493":1,"18494":3,"18495":4,"18496":3,"18497":4,"18498":4,"18499":4,"18500":4,"18501":2,"18502":3,"18503":3,"18504":3,"18505":3,"18506":5,"18507":1,"18508":3,"18509":1,"18510":2,"18511":3,"18512":4,"18513":2,"18514":4,"18515":3,"18516":2,"18517":3,"18518":2,"18519":3,"18520":3,"18521":3,"18522":3,"18523":3,"18524":4,"18525":1,"18526":1,"18527":2,"18528":3,"18529":3,"18530":4,"18531":2,"18532":3,"18533":3,"18534":2,"18535":2,"18536":2,"18537":2,"18538":3,"18539":3,"18540":3,"18541":3,"18542":4,"18543":4,"18544":3,"18545":1,"18546":4,"18547":4,"18548":4,"18549":3,"18550":3,"18551":4,"18552":4,"18553":4,"18554":2,"18555":2,"18556":4,"18557":1,"18558":2,"18559":2,"18560":4,"18561":3,"18562":1,"18563":2,"18564":1,"18565":1,"18566":2,"18567":1,"18568":5,"18569":2,"18570":4,"18571":4,"18572":5,"18573":2,"18574":1,"18575":3,"18576":5,"18577":1,"18578":3,"18579":3,"18580":1,"18581":3,"18582":5,"18583":2,"18584":3,"18585":4,"18586":4,"18587":2,"18588":4,"18589":3,"18590":4,"18591":3,"18592":1,"18593":1,"18594":3,"18595":1,"18596":3,"18597":4,"18598":4,"18599":3,"18600":3,"18601":3,"18602":4,"18603":1,"18604":3,"18605":4,"18606":3,"18607":3,"18608":2,"18609":2,"18610":2,"18611":3,"18612":3,"18613":4,"18614":4,"18615":4,"18616":3,"18617":5,"18618":3,"18619":4,"18620":4,"18621":3,"18622":1,"18623":3,"18624":3,"18625":1,"18626":1,"18627":4,"18628":2,"18629":3,"18630":3,"18631":3,"18632":5,"18633":3,"18634":3,"18635":3,"18636":3,"18637":3,"18638":4,"18639":3,"18640":4,"18641":3,"18642":5,"18643":1,"18644":4,"18645":1,"18646":1,"18647":2,"18648":3,"18649":3,"18650":3,"18651":2,"18652":3,"18653":1,"18654":3,"18655":2,"18656":2,"18657":1,"18658":3,"18659":4,"18660":3,"18661":4,"18662":4,"18663":4,"18664":5,"18665":3,"18666":5,"18667":1,"18668":3,"18669":3,"18670":4,"18671":3,"18672":2,"18673":4,"18674":3,"18675":3,"18676":3,"18677":3,"18678":3,"18679":5,"18680":4,"18681":4,"18682":3,"18683":2,"18684":4,"18685":4,"18686":5,"18687":1,"18688":3,"18689":2,"18690":3,"18691":1,"18692":1,"18693":4,"18694":4,"18695":1,"18696":3,"18697":3,"18698":4,"18699":1,"18700":3,"18701":5,"18702":4,"18703":1,"18704":4,"18705":4,"18706":1,"18707":2,"18708":5,"18709":2,"18710":4,"18711":4,"18712":1,"18713":2,"18714":2,"18715":3,"18716":3,"18717":2,"18718":3,"18719":3,"18720":2,"18721":1,"18722":2,"18723":1,"18724":1,"18725":1,"18726":3,"18727":5,"18728":3,"18729":3,"18730":4,"18731":3,"18732":2,"18733":5,"18734":2,"18735":3,"18736":4,"18737":3,"18738":4,"18739":3,"18740":3,"18741":4,"18742":3,"18743":3,"18744":2,"18745":3,"18746":3,"18747":3,"18748":2,"18749":1,"18750":4,"18751":2,"18752":2,"18753":3,"18754":4,"18755":4,"18756":1,"18757":1,"18758":4,"18759":2,"18760":2,"18761":4,"18762":2,"18763":4,"18764":1,"18765":3,"18766":1,"18767":3,"18768":2,"18769":5,"18770":4,"18771":4,"18772":3,"18773":2,"18774":3,"18775":3,"18776":1,"18777":2,"18778":4,"18779":2,"18780":3,"18781":1,"18782":3,"18783":1,"18784":3,"18785":4,"18786":3,"18787":3,"18788":3,"18789":4,"18790":3,"18791":1,"18792":3,"18793":5,"18794":2,"18795":4,"18796":1,"18797":3,"18798":4,"18799":3,"18800":4,"18801":1,"18802":3,"18803":2,"18804":3,"18805":2,"18806":4,"18807":1,"18808":3,"18809":3,"18810":3,"18811":5,"18812":4,"18813":3,"18814":2,"18815":3,"18816":4,"18817":3,"18818":2,"18819":3,"18820":2,"18821":3,"18822":3,"18823":4,"18824":3,"18825":5,"18826":4,"18827":2,"18828":1,"18829":5,"18830":1,"18831":3,"18832":4,"18833":3,"18834":3,"18835":4,"18836":3,"18837":2,"18838":2,"18839":2,"18840":4,"18841":4,"18842":4,"18843":4,"18844":3,"18845":2,"18846":4,"18847":3,"18848":5,"18849":4,"18850":3,"18851":4,"18852":5,"18853":5,"18854":1,"18855":2,"18856":2,"18857":3,"18858":2,"18859":1,"18860":4,"18861":3,"18862":4,"18863":2,"18864":2,"18865":3,"18866":2,"18867":3,"18868":3,"18869":1,"18870":3,"18871":4,"18872":3,"18873":4,"18874":2,"18875":4,"18876":4,"18877":2,"18878":4,"18879":4,"18880":1,"18881":2,"18882":1,"18883":3,"18884":3,"18885":4,"18886":4,"18887":3,"18888":3,"18889":4,"18890":3,"18891":2,"18892":3,"18893":3,"18894":3,"18895":3,"18896":2,"18897":3,"18898":1,"18899":3,"18900":4,"18901":3,"18902":4,"18903":3,"18904":2,"18905":5,"18906":3,"18907":2,"18908":3,"18909":3,"18910":2,"18911":4,"18912":2,"18913":3,"18914":4,"18915":3,"18916":2,"18917":5,"18918":5,"18919":2,"18920":2,"18921":3,"18922":3,"18923":4,"18924":4,"18925":5,"18926":2,"18927":4,"18928":3,"18929":3,"18930":3,"18931":3,"18932":3,"18933":2,"18934":2,"18935":4,"18936":5,"18937":4,"18938":3,"18939":4,"18940":1,"18941":1,"18942":3,"18943":4,"18944":3,"18945":2,"18946":4,"18947":4,"18948":3,"18949":1,"18950":5,"18951":3,"18952":3,"18953":4,"18954":3,"18955":1,"18956":3,"18957":3,"18958":3,"18959":3,"18960":3,"18961":1,"18962":4,"18963":3,"18964":3,"18965":5,"18966":1,"18967":2,"18968":4,"18969":2,"18970":2,"18971":4,"18972":2,"18973":2,"18974":3,"18975":3,"18976":4,"18977":3,"18978":4,"18979":4,"18980":3,"18981":2,"18982":1,"18983":3,"18984":3,"18985":5,"18986":3,"18987":4,"18988":4,"18989":5,"18990":3,"18991":2,"18992":3,"18993":2,"18994":4,"18995":2,"18996":3,"18997":1,"18998":4,"18999":1,"19000":4,"19001":4,"19002":4,"19003":4,"19004":4,"19005":3,"19006":3,"19007":3,"19008":1,"19009":3,"19010":4,"19011":2,"19012":2,"19013":4,"19014":4,"19015":3,"19016":4,"19017":3,"19018":5,"19019":4,"19020":1,"19021":1,"19022":3,"19023":3,"19024":3,"19025":3,"19026":4,"19027":4,"19028":4,"19029":4,"19030":4,"19031":3,"19032":2,"19033":3,"19034":4,"19035":2,"19036":3,"19037":2,"19038":4,"19039":4,"19040":1,"19041":5,"19042":4,"19043":3,"19044":3,"19045":4,"19046":3,"19047":2,"19048":3,"19049":1,"19050":5,"19051":4,"19052":4,"19053":4,"19054":3,"19055":1,"19056":2,"19057":4,"19058":4,"19059":3,"19060":2,"19061":3,"19062":3,"19063":1,"19064":5,"19065":4,"19066":4,"19067":2,"19068":3,"19069":5,"19070":1,"19071":3,"19072":4,"19073":4,"19074":3,"19075":4,"19076":4,"19077":3,"19078":2,"19079":3,"19080":3,"19081":3,"19082":1,"19083":3,"19084":4,"19085":4,"19086":4,"19087":4,"19088":2,"19089":3,"19090":3,"19091":3,"19092":1,"19093":1,"19094":3,"19095":4,"19096":1,"19097":2,"19098":4,"19099":3,"19100":4,"19101":2,"19102":2,"19103":3,"19104":5,"19105":5,"19106":5,"19107":4,"19108":3,"19109":3,"19110":2,"19111":2,"19112":2,"19113":1,"19114":4,"19115":5,"19116":2,"19117":3,"19118":4,"19119":3,"19120":3,"19121":2,"19122":3,"19123":3,"19124":1,"19125":3,"19126":1,"19127":3,"19128":3,"19129":3,"19130":4,"19131":3,"19132":4,"19133":3,"19134":3,"19135":4,"19136":2,"19137":1,"19138":3,"19139":3,"19140":4,"19141":3,"19142":5,"19143":2,"19144":4,"19145":3,"19146":2,"19147":2,"19148":2,"19149":4,"19150":3,"19151":3,"19152":4,"19153":3,"19154":5,"19155":4,"19156":1,"19157":4,"19158":4,"19159":3,"19160":3,"19161":3,"19162":4,"19163":3,"19164":5,"19165":1,"19166":4,"19167":3,"19168":3,"19169":4,"19170":1,"19171":2,"19172":3,"19173":4,"19174":4,"19175":4,"19176":1,"19177":3,"19178":1,"19179":2,"19180":4,"19181":3,"19182":2,"19183":5,"19184":2,"19185":3,"19186":3,"19187":5,"19188":3,"19189":3,"19190":3,"19191":3,"19192":2,"19193":1,"19194":3,"19195":4,"19196":2,"19197":1,"19198":4,"19199":3,"19200":4,"19201":4,"19202":1,"19203":4,"19204":4,"19205":3,"19206":2,"19207":3,"19208":2,"19209":1,"19210":1,"19211":3,"19212":1,"19213":2,"19214":4,"19215":4,"19216":3,"19217":3,"19218":4,"19219":4,"19220":1,"19221":3,"19222":3,"19223":3,"19224":3,"19225":2,"19226":3,"19227":4,"19228":3,"19229":4,"19230":4,"19231":2,"19232":4,"19233":4,"19234":2,"19235":1,"19236":2,"19237":3,"19238":4,"19239":4,"19240":3,"19241":4,"19242":2,"19243":4,"19244":3,"19245":3,"19246":2,"19247":2,"19248":2,"19249":1,"19250":4,"19251":2,"19252":4,"19253":3,"19254":3,"19255":4,"19256":4,"19257":5,"19258":2,"19259":5,"19260":2,"19261":4,"19262":4,"19263":4,"19264":5,"19265":3,"19266":3,"19267":2,"19268":5,"19269":5,"19270":3,"19271":3,"19272":4,"19273":1,"19274":2,"19275":4,"19276":4,"19277":1,"19278":4,"19279":2,"19280":4,"19281":4,"19282":3,"19283":3,"19284":4,"19285":3,"19286":2,"19287":3,"19288":2,"19289":4,"19290":4,"19291":3,"19292":3,"19293":4,"19294":1,"19295":2,"19296":3,"19297":3,"19298":2,"19299":3,"19300":4,"19301":2,"19302":4,"19303":4,"19304":5,"19305":4,"19306":2,"19307":2,"19308":2,"19309":2,"19310":2,"19311":3,"19312":2,"19313":5,"19314":3,"19315":4,"19316":4,"19317":3,"19318":3,"19319":4,"19320":3,"19321":3,"19322":2,"19323":3,"19324":3,"19325":3,"19326":4,"19327":5,"19328":2,"19329":2,"19330":3,"19331":2,"19332":5,"19333":3,"19334":3,"19335":3,"19336":2,"19337":4,"19338":3,"19339":2,"19340":3,"19341":3,"19342":2,"19343":5,"19344":3,"19345":2,"19346":2,"19347":3,"19348":3,"19349":3,"19350":4,"19351":1,"19352":2,"19353":3,"19354":3,"19355":3,"19356":1,"19357":4,"19358":4,"19359":4,"19360":1,"19361":4,"19362":2,"19363":3,"19364":3,"19365":3,"19366":2,"19367":3,"19368":2,"19369":1,"19370":4,"19371":1,"19372":4,"19373":5,"19374":5,"19375":2,"19376":3,"19377":3,"19378":3,"19379":2,"19380":1,"19381":1,"19382":4,"19383":5,"19384":5,"19385":3,"19386":3,"19387":1,"19388":2,"19389":3,"19390":2,"19391":1,"19392":1,"19393":1,"19394":1,"19395":3,"19396":2,"19397":1,"19398":3,"19399":1,"19400":5,"19401":4,"19402":4,"19403":3,"19404":3,"19405":5,"19406":3,"19407":3,"19408":4,"19409":1,"19410":2,"19411":5,"19412":4,"19413":5,"19414":3,"19415":4,"19416":2,"19417":4,"19418":2,"19419":3,"19420":3,"19421":4,"19422":2,"19423":4,"19424":4,"19425":4,"19426":1,"19427":3,"19428":2,"19429":2,"19430":4,"19431":2,"19432":2,"19433":4,"19434":3,"19435":3,"19436":1,"19437":4,"19438":3,"19439":5,"19440":5,"19441":3,"19442":3,"19443":5,"19444":5,"19445":3,"19446":2,"19447":3,"19448":1,"19449":3,"19450":4,"19451":4,"19452":2,"19453":3,"19454":1,"19455":3,"19456":4,"19457":3,"19458":4,"19459":3,"19460":3,"19461":4,"19462":2,"19463":3,"19464":3,"19465":2,"19466":2,"19467":4,"19468":5,"19469":3,"19470":4,"19471":5,"19472":3,"19473":5,"19474":1,"19475":2,"19476":1,"19477":1,"19478":1,"19479":2,"19480":4,"19481":3,"19482":5,"19483":2,"19484":2,"19485":2,"19486":3,"19487":1,"19488":4,"19489":1,"19490":5,"19491":4,"19492":2,"19493":2,"19494":2,"19495":2,"19496":2,"19497":2,"19498":5,"19499":4,"19500":4,"19501":2,"19502":3,"19503":2,"19504":3,"19505":4,"19506":2,"19507":3,"19508":4,"19509":2,"19510":4,"19511":3,"19512":1,"19513":2,"19514":3,"19515":4,"19516":1,"19517":3,"19518":3,"19519":4,"19520":2,"19521":1,"19522":1,"19523":1,"19524":3,"19525":3,"19526":2,"19527":2,"19528":4,"19529":1,"19530":4,"19531":4,"19532":4,"19533":3,"19534":3,"19535":4,"19536":3,"19537":3,"19538":3,"19539":2,"19540":1,"19541":3,"19542":4,"19543":4,"19544":3,"19545":3,"19546":1,"19547":4,"19548":2,"19549":3,"19550":1,"19551":3,"19552":3,"19553":4,"19554":3,"19555":4,"19556":3,"19557":4,"19558":2,"19559":3,"19560":2,"19561":4,"19562":3,"19563":2,"19564":4,"19565":3,"19566":1,"19567":5,"19568":2,"19569":2,"19570":4,"19571":4,"19572":5,"19573":4,"19574":4,"19575":4,"19576":1,"19577":1,"19578":2,"19579":3,"19580":3,"19581":2,"19582":1,"19583":3,"19584":4,"19585":2,"19586":3,"19587":3,"19588":3,"19589":3,"19590":3,"19591":3,"19592":2,"19593":2,"19594":3,"19595":1,"19596":5,"19597":1,"19598":3,"19599":4,"19600":2,"19601":3,"19602":1,"19603":4,"19604":4,"19605":2,"19606":3,"19607":4,"19608":3,"19609":3,"19610":2,"19611":2,"19612":2,"19613":3,"19614":1,"19615":3,"19616":2,"19617":1,"19618":3,"19619":3,"19620":3,"19621":2,"19622":5,"19623":5,"19624":2,"19625":3,"19626":3,"19627":1,"19628":2,"19629":3,"19630":4,"19631":4,"19632":4,"19633":4,"19634":3,"19635":1,"19636":3,"19637":5,"19638":2,"19639":2,"19640":2,"19641":4,"19642":5,"19643":4,"19644":1,"19645":2,"19646":4,"19647":3,"19648":2,"19649":4,"19650":4,"19651":1,"19652":3,"19653":3,"19654":3,"19655":4,"19656":3,"19657":2,"19658":3,"19659":3,"19660":3,"19661":4,"19662":4,"19663":3,"19664":3,"19665":2,"19666":3,"19667":4,"19668":3,"19669":2,"19670":2,"19671":3,"19672":2,"19673":3,"19674":3,"19675":3,"19676":4,"19677":2,"19678":2,"19679":3,"19680":3,"19681":3,"19682":3,"19683":4,"19684":1,"19685":5,"19686":3,"19687":3,"19688":3,"19689":2,"19690":2,"19691":2,"19692":4,"19693":4,"19694":3,"19695":4,"19696":2,"19697":2,"19698":3,"19699":3,"19700":3,"19701":4,"19702":2,"19703":4,"19704":3,"19705":3,"19706":2,"19707":2,"19708":3,"19709":3,"19710":5,"19711":1,"19712":3,"19713":4,"19714":2,"19715":3,"19716":4,"19717":3,"19718":3,"19719":3,"19720":3,"19721":3,"19722":1,"19723":1,"19724":4,"19725":2,"19726":4,"19727":3,"19728":4,"19729":2,"19730":2,"19731":2,"19732":2,"19733":1,"19734":1,"19735":2,"19736":3,"19737":3,"19738":5,"19739":3,"19740":2,"19741":2,"19742":4,"19743":3,"19744":4,"19745":3,"19746":1,"19747":3,"19748":4,"19749":2,"19750":3,"19751":3,"19752":4,"19753":4,"19754":2,"19755":3,"19756":4,"19757":4,"19758":3,"19759":2,"19760":2,"19761":1,"19762":4,"19763":1,"19764":3,"19765":3,"19766":2,"19767":3,"19768":3,"19769":5,"19770":1,"19771":3,"19772":2,"19773":1,"19774":2,"19775":2,"19776":2,"19777":3,"19778":3,"19779":3,"19780":3,"19781":3,"19782":2,"19783":5,"19784":1,"19785":3,"19786":2,"19787":3,"19788":1,"19789":1,"19790":4,"19791":5,"19792":3,"19793":3,"19794":3,"19795":1,"19796":2,"19797":4,"19798":1,"19799":4,"19800":2,"19801":5,"19802":1,"19803":3,"19804":5,"19805":4,"19806":5,"19807":4,"19808":4,"19809":3,"19810":3,"19811":2,"19812":3,"19813":2,"19814":3,"19815":4,"19816":4,"19817":4,"19818":3,"19819":2,"19820":1,"19821":2,"19822":1,"19823":3,"19824":3,"19825":1,"19826":4,"19827":2,"19828":3,"19829":4,"19830":2,"19831":2,"19832":2,"19833":2,"19834":3,"19835":5,"19836":4,"19837":3,"19838":4,"19839":1,"19840":1,"19841":4,"19842":4,"19843":3,"19844":3,"19845":5,"19846":2,"19847":4,"19848":4,"19849":1,"19850":2,"19851":3,"19852":3,"19853":4,"19854":3,"19855":2,"19856":2,"19857":3,"19858":3,"19859":3,"19860":4,"19861":3,"19862":4,"19863":5,"19864":2,"19865":5,"19866":3,"19867":2,"19868":2,"19869":3,"19870":3,"19871":4,"19872":3,"19873":1,"19874":3,"19875":3,"19876":3,"19877":1,"19878":5,"19879":3,"19880":3,"19881":3,"19882":1,"19883":4,"19884":3,"19885":4,"19886":3,"19887":4,"19888":3,"19889":5,"19890":5,"19891":3,"19892":5,"19893":3,"19894":3,"19895":2,"19896":4,"19897":3,"19898":1,"19899":3,"19900":3,"19901":2,"19902":1,"19903":2,"19904":3,"19905":4,"19906":3,"19907":1,"19908":2,"19909":2,"19910":2,"19911":3,"19912":3,"19913":2,"19914":5,"19915":4,"19916":3,"19917":3,"19918":4,"19919":1,"19920":3,"19921":3,"19922":4,"19923":3,"19924":3,"19925":2,"19926":1,"19927":3,"19928":2,"19929":3,"19930":3,"19931":3,"19932":4,"19933":4,"19934":3,"19935":4,"19936":2,"19937":3,"19938":4,"19939":2,"19940":4,"19941":2,"19942":3,"19943":3,"19944":3,"19945":3,"19946":2,"19947":2,"19948":3,"19949":3,"19950":2,"19951":4,"19952":2,"19953":3,"19954":1,"19955":3,"19956":3,"19957":4,"19958":3,"19959":1,"19960":3,"19961":3,"19962":3,"19963":2,"19964":2,"19965":2,"19966":3,"19967":5,"19968":5,"19969":2,"19970":1,"19971":3,"19972":2,"19973":3,"19974":5,"19975":4,"19976":4,"19977":3,"19978":3,"19979":3,"19980":2,"19981":3,"19982":3,"19983":5,"19984":3,"19985":4,"19986":4,"19987":3,"19988":3,"19989":3,"19990":2,"19991":5,"19992":2,"19993":3,"19994":4,"19995":3,"19996":3,"19997":1,"19998":2,"19999":3,"20000":2,"20001":2,"20002":3,"20003":3,"20004":2,"20005":3,"20006":3,"20007":3,"20008":3,"20009":3,"20010":2,"20011":1,"20012":2,"20013":5,"20014":4,"20015":4,"20016":2,"20017":4,"20018":4,"20019":3,"20020":3,"20021":3,"20022":4,"20023":4,"20024":3,"20025":4,"20026":1,"20027":3,"20028":5,"20029":2,"20030":3,"20031":5,"20032":3,"20033":3,"20034":1,"20035":2,"20036":3,"20037":2,"20038":4,"20039":3,"20040":2,"20041":3,"20042":2,"20043":4,"20044":2,"20045":2,"20046":1,"20047":2,"20048":4,"20049":5,"20050":5,"20051":4,"20052":3,"20053":4,"20054":1,"20055":3,"20056":3,"20057":5,"20058":4,"20059":4,"20060":2,"20061":3,"20062":3,"20063":2,"20064":2,"20065":2,"20066":4,"20067":4,"20068":5,"20069":5,"20070":2,"20071":2,"20072":5,"20073":3,"20074":3,"20075":3,"20076":4,"20077":1,"20078":1,"20079":4,"20080":3,"20081":3,"20082":3,"20083":3,"20084":3,"20085":4,"20086":3,"20087":4,"20088":2,"20089":3,"20090":3,"20091":2,"20092":3,"20093":2,"20094":4,"20095":3,"20096":1,"20097":2,"20098":4,"20099":5,"20100":3,"20101":2,"20102":1,"20103":2,"20104":4,"20105":4,"20106":4,"20107":4,"20108":3,"20109":2,"20110":4,"20111":2,"20112":4,"20113":3,"20114":3,"20115":2,"20116":3,"20117":3,"20118":1,"20119":3,"20120":3,"20121":4,"20122":1,"20123":3,"20124":4,"20125":5,"20126":2,"20127":4,"20128":3,"20129":3,"20130":3,"20131":3,"20132":3,"20133":3,"20134":3,"20135":4,"20136":4,"20137":5,"20138":3,"20139":3,"20140":4,"20141":3,"20142":4,"20143":4,"20144":1,"20145":3,"20146":2,"20147":1,"20148":3,"20149":3,"20150":2,"20151":4,"20152":3,"20153":5,"20154":3,"20155":4,"20156":3,"20157":4,"20158":4,"20159":4,"20160":3,"20161":4,"20162":4,"20163":2,"20164":2,"20165":3,"20166":4,"20167":3,"20168":4,"20169":3,"20170":2,"20171":3,"20172":4,"20173":1,"20174":4,"20175":3,"20176":2,"20177":5,"20178":4,"20179":4,"20180":1,"20181":2,"20182":3,"20183":3,"20184":3,"20185":5,"20186":3,"20187":4,"20188":1,"20189":3,"20190":2,"20191":1,"20192":4,"20193":4,"20194":3,"20195":4,"20196":3,"20197":4,"20198":2,"20199":3,"20200":2,"20201":3,"20202":3,"20203":1,"20204":4,"20205":3,"20206":5,"20207":2,"20208":3,"20209":4,"20210":3,"20211":3,"20212":3,"20213":4,"20214":4,"20215":4,"20216":3,"20217":4,"20218":2,"20219":5,"20220":3,"20221":2,"20222":4,"20223":5,"20224":2,"20225":3,"20226":3,"20227":4,"20228":4,"20229":3,"20230":2,"20231":2,"20232":3,"20233":2,"20234":3,"20235":1,"20236":1,"20237":3,"20238":2,"20239":2,"20240":2,"20241":3,"20242":4,"20243":5,"20244":3,"20245":3,"20246":3,"20247":3,"20248":5,"20249":1,"20250":3,"20251":3,"20252":2,"20253":1,"20254":2,"20255":4,"20256":3,"20257":5,"20258":2,"20259":3,"20260":3,"20261":3,"20262":4,"20263":3,"20264":2,"20265":2,"20266":4,"20267":1,"20268":3,"20269":2,"20270":3,"20271":1,"20272":3,"20273":3,"20274":2,"20275":1,"20276":4,"20277":2,"20278":4,"20279":5,"20280":2,"20281":2,"20282":2,"20283":4,"20284":3,"20285":2,"20286":3,"20287":3,"20288":1,"20289":5,"20290":2,"20291":3,"20292":4,"20293":3,"20294":3,"20295":3,"20296":2,"20297":2,"20298":3,"20299":4,"20300":1,"20301":4,"20302":3,"20303":2,"20304":4,"20305":4,"20306":4,"20307":3,"20308":3,"20309":3,"20310":3,"20311":3,"20312":3,"20313":3,"20314":3,"20315":1,"20316":4,"20317":4,"20318":3,"20319":3,"20320":3,"20321":3,"20322":3,"20323":1,"20324":1,"20325":3,"20326":3,"20327":1,"20328":1,"20329":4,"20330":3,"20331":2,"20332":4,"20333":5,"20334":4,"20335":5,"20336":2,"20337":1,"20338":5,"20339":3,"20340":3,"20341":2,"20342":2,"20343":1,"20344":4,"20345":2,"20346":4,"20347":5,"20348":4,"20349":3,"20350":4,"20351":4,"20352":1,"20353":5,"20354":2,"20355":4,"20356":3,"20357":5,"20358":4,"20359":2,"20360":1,"20361":3,"20362":4,"20363":3,"20364":3,"20365":3,"20366":4,"20367":1,"20368":1,"20369":4,"20370":3,"20371":4,"20372":3,"20373":4,"20374":4,"20375":4,"20376":1,"20377":2,"20378":3,"20379":3,"20380":3,"20381":3,"20382":2,"20383":3,"20384":2,"20385":3,"20386":4,"20387":4,"20388":3,"20389":4,"20390":2,"20391":2,"20392":1,"20393":5,"20394":4,"20395":2,"20396":3,"20397":3,"20398":2,"20399":4,"20400":2,"20401":3,"20402":3,"20403":5,"20404":4,"20405":3,"20406":4,"20407":4,"20408":4,"20409":1,"20410":4,"20411":3,"20412":3,"20413":3,"20414":2,"20415":2,"20416":4,"20417":3,"20418":3,"20419":1,"20420":3,"20421":1,"20422":5,"20423":3,"20424":3,"20425":2,"20426":3,"20427":3,"20428":2,"20429":4,"20430":2,"20431":2,"20432":3,"20433":2,"20434":4,"20435":2,"20436":3,"20437":2,"20438":4,"20439":3,"20440":4,"20441":5,"20442":3,"20443":2,"20444":3,"20445":5,"20446":3,"20447":5,"20448":3,"20449":4,"20450":3,"20451":1,"20452":4,"20453":3,"20454":2,"20455":3,"20456":3,"20457":3,"20458":2,"20459":1,"20460":3,"20461":5,"20462":3,"20463":4,"20464":4,"20465":2,"20466":3,"20467":2,"20468":2,"20469":5,"20470":3,"20471":1,"20472":3,"20473":3,"20474":4,"20475":4,"20476":2,"20477":3,"20478":3,"20479":2,"20480":4,"20481":2,"20482":2,"20483":1,"20484":2,"20485":2,"20486":2,"20487":3,"20488":3,"20489":1,"20490":1,"20491":2,"20492":5,"20493":3,"20494":3,"20495":2,"20496":1,"20497":1,"20498":3,"20499":1,"20500":2,"20501":3,"20502":3,"20503":4,"20504":3,"20505":4,"20506":4,"20507":3,"20508":4,"20509":1,"20510":3,"20511":3,"20512":3,"20513":3,"20514":2,"20515":3,"20516":4,"20517":3,"20518":4,"20519":2,"20520":2,"20521":3,"20522":1,"20523":1,"20524":3,"20525":3,"20526":2,"20527":2,"20528":3,"20529":3,"20530":3,"20531":2,"20532":4,"20533":2,"20534":3,"20535":1,"20536":2,"20537":5,"20538":4,"20539":3,"20540":3,"20541":3,"20542":4,"20543":4,"20544":2,"20545":4,"20546":5,"20547":4,"20548":3,"20549":3,"20550":5,"20551":4,"20552":2,"20553":3,"20554":2,"20555":2,"20556":3,"20557":2,"20558":3,"20559":3,"20560":3,"20561":2,"20562":3,"20563":2,"20564":3,"20565":3,"20566":2,"20567":4,"20568":1,"20569":3,"20570":3,"20571":4,"20572":4,"20573":2,"20574":4,"20575":1,"20576":4,"20577":4,"20578":4,"20579":3,"20580":3,"20581":3,"20582":3,"20583":4,"20584":4,"20585":5,"20586":4,"20587":1,"20588":4,"20589":4,"20590":3,"20591":2,"20592":3,"20593":3,"20594":1,"20595":3,"20596":3,"20597":3,"20598":1,"20599":2,"20600":5,"20601":3,"20602":1,"20603":3,"20604":2,"20605":3,"20606":4,"20607":4,"20608":3,"20609":4,"20610":3,"20611":2,"20612":3,"20613":1,"20614":3,"20615":2,"20616":1,"20617":4,"20618":3,"20619":2,"20620":4,"20621":4,"20622":3,"20623":4,"20624":2,"20625":2,"20626":3,"20627":2,"20628":3,"20629":3,"20630":3,"20631":4,"20632":5,"20633":3,"20634":1,"20635":5,"20636":3,"20637":5,"20638":3,"20639":4,"20640":3,"20641":3,"20642":4,"20643":4,"20644":4,"20645":3,"20646":4,"20647":2,"20648":4,"20649":1,"20650":3,"20651":4,"20652":4,"20653":4,"20654":3,"20655":3,"20656":2,"20657":3,"20658":2,"20659":2,"20660":4,"20661":1,"20662":3,"20663":3,"20664":3,"20665":3,"20666":2,"20667":2,"20668":3,"20669":3,"20670":3,"20671":2,"20672":1,"20673":3,"20674":3,"20675":1,"20676":3,"20677":1,"20678":2,"20679":3,"20680":3,"20681":4,"20682":3,"20683":5,"20684":3,"20685":4,"20686":5,"20687":3,"20688":3,"20689":1,"20690":1,"20691":2,"20692":2,"20693":3,"20694":5,"20695":3,"20696":5,"20697":2,"20698":4,"20699":2,"20700":1,"20701":2,"20702":4,"20703":2,"20704":4,"20705":1,"20706":2,"20707":3,"20708":2,"20709":5,"20710":2,"20711":5,"20712":3,"20713":4,"20714":1,"20715":4,"20716":3,"20717":3,"20718":3,"20719":3,"20720":2,"20721":3,"20722":2,"20723":3,"20724":4,"20725":1,"20726":3,"20727":2,"20728":2,"20729":2,"20730":4,"20731":2,"20732":3,"20733":2,"20734":3,"20735":5,"20736":4,"20737":3,"20738":2,"20739":4,"20740":2,"20741":4,"20742":2,"20743":3,"20744":4,"20745":4,"20746":3,"20747":3,"20748":3,"20749":3,"20750":3,"20751":5,"20752":4,"20753":2,"20754":3,"20755":3,"20756":1,"20757":3,"20758":1,"20759":1,"20760":4,"20761":3,"20762":3,"20763":4,"20764":2,"20765":4,"20766":5,"20767":3,"20768":4,"20769":3,"20770":4,"20771":3,"20772":5,"20773":3,"20774":3,"20775":3,"20776":3,"20777":5,"20778":4,"20779":3,"20780":5,"20781":3,"20782":1,"20783":1,"20784":3,"20785":2,"20786":4,"20787":3,"20788":2,"20789":2,"20790":4,"20791":3,"20792":1,"20793":3,"20794":3,"20795":1,"20796":3,"20797":2,"20798":3,"20799":3,"20800":4,"20801":3,"20802":2,"20803":3,"20804":3,"20805":1,"20806":5,"20807":2,"20808":3,"20809":2,"20810":3,"20811":3,"20812":3,"20813":3,"20814":4,"20815":4,"20816":2,"20817":3,"20818":2,"20819":3,"20820":2,"20821":2,"20822":3,"20823":3,"20824":4,"20825":2,"20826":3,"20827":3,"20828":3,"20829":3,"20830":3,"20831":1,"20832":2,"20833":3,"20834":3,"20835":3,"20836":3,"20837":1,"20838":4,"20839":2,"20840":4,"20841":4,"20842":3,"20843":2,"20844":3,"20845":3,"20846":4,"20847":3,"20848":3,"20849":4,"20850":2,"20851":3,"20852":3,"20853":2,"20854":4,"20855":3,"20856":3,"20857":4,"20858":3,"20859":3,"20860":3,"20861":2,"20862":5,"20863":4,"20864":2,"20865":3,"20866":3,"20867":3,"20868":4,"20869":4,"20870":2,"20871":2,"20872":4,"20873":3,"20874":4,"20875":1,"20876":3,"20877":4,"20878":2,"20879":3,"20880":3,"20881":2,"20882":3,"20883":3,"20884":3,"20885":1,"20886":3,"20887":3,"20888":2,"20889":3,"20890":2,"20891":4,"20892":3,"20893":4,"20894":3,"20895":3,"20896":5,"20897":4,"20898":2,"20899":3,"20900":5,"20901":4,"20902":4,"20903":3,"20904":3,"20905":2,"20906":4,"20907":3,"20908":4,"20909":2,"20910":4,"20911":2,"20912":3,"20913":4,"20914":4,"20915":3,"20916":3,"20917":2,"20918":3,"20919":4,"20920":4,"20921":4,"20922":3,"20923":1,"20924":4,"20925":3,"20926":1,"20927":3,"20928":1,"20929":3,"20930":3,"20931":4,"20932":3,"20933":4,"20934":4,"20935":3,"20936":2,"20937":3,"20938":3,"20939":2,"20940":4,"20941":3,"20942":2,"20943":5,"20944":3,"20945":4,"20946":3,"20947":5,"20948":3,"20949":4,"20950":3,"20951":4,"20952":4,"20953":1,"20954":2,"20955":3,"20956":5,"20957":5,"20958":5,"20959":1,"20960":4,"20961":2,"20962":4,"20963":3,"20964":3,"20965":4,"20966":1,"20967":2,"20968":3,"20969":3,"20970":3,"20971":1,"20972":5,"20973":1,"20974":1,"20975":3,"20976":1,"20977":3,"20978":3,"20979":5,"20980":3,"20981":4,"20982":3,"20983":3,"20984":4,"20985":5,"20986":5,"20987":3,"20988":2,"20989":2,"20990":3,"20991":2,"20992":1,"20993":4,"20994":3,"20995":3,"20996":4,"20997":4,"20998":4,"20999":3,"21000":4,"21001":4,"21002":3,"21003":1,"21004":2,"21005":3,"21006":2,"21007":3,"21008":5,"21009":3,"21010":3,"21011":5,"21012":4,"21013":3,"21014":3,"21015":4,"21016":3,"21017":2,"21018":1,"21019":5,"21020":2,"21021":5,"21022":4,"21023":3,"21024":3,"21025":5,"21026":2,"21027":5,"21028":3,"21029":4,"21030":5,"21031":3,"21032":3,"21033":4,"21034":2,"21035":3,"21036":1,"21037":5,"21038":2,"21039":3,"21040":3,"21041":3,"21042":4,"21043":1,"21044":4,"21045":1,"21046":4,"21047":5,"21048":4,"21049":4,"21050":4,"21051":2,"21052":2,"21053":3,"21054":1,"21055":3,"21056":2,"21057":4,"21058":4,"21059":3,"21060":3,"21061":2,"21062":2,"21063":4,"21064":4,"21065":1,"21066":5,"21067":2,"21068":2,"21069":4,"21070":5,"21071":4,"21072":2,"21073":3,"21074":2,"21075":3,"21076":2,"21077":3,"21078":2,"21079":3,"21080":2,"21081":2,"21082":4,"21083":4,"21084":5,"21085":3,"21086":4,"21087":3,"21088":2,"21089":3,"21090":2,"21091":3,"21092":1,"21093":5,"21094":2,"21095":3,"21096":1,"21097":3,"21098":2,"21099":1,"21100":4,"21101":3,"21102":3,"21103":3,"21104":2,"21105":3,"21106":3,"21107":2,"21108":2,"21109":1,"21110":3,"21111":2,"21112":2,"21113":3,"21114":2,"21115":1,"21116":3,"21117":3,"21118":2,"21119":1,"21120":3,"21121":4,"21122":4,"21123":3,"21124":4,"21125":3,"21126":5,"21127":3,"21128":2,"21129":5,"21130":1,"21131":4,"21132":4,"21133":2,"21134":3,"21135":4,"21136":5,"21137":3,"21138":2,"21139":1,"21140":4,"21141":1,"21142":4,"21143":2,"21144":3,"21145":1,"21146":3,"21147":2,"21148":5,"21149":1,"21150":4,"21151":3,"21152":2,"21153":2,"21154":4,"21155":3,"21156":2,"21157":2,"21158":3,"21159":2,"21160":2,"21161":1,"21162":4,"21163":4,"21164":3,"21165":2,"21166":4,"21167":2,"21168":3,"21169":3,"21170":3,"21171":3,"21172":1,"21173":4,"21174":3,"21175":4,"21176":4,"21177":4,"21178":5,"21179":2,"21180":3,"21181":3,"21182":3,"21183":4,"21184":3,"21185":4,"21186":3,"21187":1,"21188":5,"21189":3,"21190":3,"21191":3,"21192":3,"21193":5,"21194":4,"21195":2,"21196":4,"21197":4,"21198":1,"21199":3,"21200":5,"21201":2,"21202":3,"21203":3,"21204":3,"21205":1,"21206":1,"21207":2,"21208":1,"21209":3,"21210":5,"21211":3,"21212":3,"21213":1,"21214":4,"21215":3,"21216":4,"21217":2,"21218":4,"21219":2,"21220":3,"21221":3,"21222":2,"21223":2,"21224":5,"21225":2,"21226":3,"21227":5,"21228":4,"21229":3,"21230":2,"21231":3,"21232":4,"21233":3,"21234":1,"21235":4,"21236":5,"21237":4,"21238":4,"21239":3,"21240":2,"21241":2,"21242":2,"21243":2,"21244":4,"21245":3,"21246":4,"21247":2,"21248":2,"21249":4,"21250":5,"21251":4,"21252":4,"21253":3,"21254":3,"21255":2,"21256":3,"21257":4,"21258":1,"21259":3,"21260":2,"21261":2,"21262":3,"21263":2,"21264":4,"21265":4,"21266":3,"21267":4,"21268":2,"21269":1,"21270":4,"21271":2,"21272":1,"21273":4,"21274":2,"21275":4,"21276":3,"21277":2,"21278":4,"21279":5,"21280":4,"21281":4,"21282":3,"21283":4,"21284":3,"21285":3,"21286":2,"21287":3,"21288":3,"21289":3,"21290":1,"21291":3,"21292":1,"21293":1,"21294":3,"21295":2,"21296":3,"21297":4,"21298":4,"21299":3,"21300":3,"21301":4,"21302":2,"21303":2,"21304":2,"21305":4,"21306":1,"21307":2,"21308":2,"21309":3,"21310":5,"21311":1,"21312":3,"21313":2,"21314":3,"21315":2,"21316":2,"21317":4,"21318":2,"21319":4,"21320":1,"21321":4,"21322":2,"21323":4,"21324":2,"21325":2,"21326":2,"21327":4,"21328":3,"21329":2,"21330":3,"21331":3,"21332":1,"21333":5,"21334":2,"21335":3,"21336":1,"21337":2,"21338":4,"21339":3,"21340":2,"21341":3,"21342":3,"21343":2,"21344":4,"21345":3,"21346":3,"21347":2,"21348":3,"21349":1,"21350":2,"21351":2,"21352":4,"21353":4,"21354":4,"21355":4,"21356":4,"21357":4,"21358":4,"21359":3,"21360":2,"21361":1,"21362":4,"21363":4,"21364":4,"21365":5,"21366":4,"21367":3,"21368":2,"21369":3,"21370":5,"21371":4,"21372":2,"21373":4,"21374":4,"21375":2,"21376":3,"21377":3,"21378":2,"21379":3,"21380":3,"21381":3,"21382":5,"21383":3,"21384":3,"21385":3,"21386":4,"21387":1,"21388":4,"21389":3,"21390":5,"21391":3,"21392":3,"21393":3,"21394":5,"21395":3,"21396":2,"21397":4,"21398":3,"21399":4,"21400":3,"21401":4,"21402":3,"21403":4,"21404":3,"21405":3,"21406":3,"21407":3,"21408":4,"21409":4,"21410":2,"21411":2,"21412":3,"21413":4,"21414":1,"21415":3,"21416":5,"21417":3,"21418":5,"21419":4,"21420":2,"21421":2,"21422":1,"21423":4,"21424":1,"21425":4,"21426":4,"21427":3,"21428":4,"21429":3,"21430":1,"21431":4,"21432":3,"21433":2,"21434":4,"21435":2,"21436":1,"21437":3,"21438":5,"21439":4,"21440":4,"21441":3,"21442":4,"21443":3,"21444":1,"21445":3,"21446":3,"21447":1,"21448":3,"21449":2,"21450":1,"21451":2,"21452":3,"21453":2,"21454":2,"21455":2,"21456":4,"21457":5,"21458":5,"21459":2,"21460":5,"21461":2,"21462":3,"21463":4,"21464":4,"21465":2,"21466":3,"21467":3,"21468":1,"21469":1,"21470":2,"21471":3,"21472":3,"21473":3,"21474":3,"21475":4,"21476":2,"21477":3,"21478":3,"21479":3,"21480":3,"21481":4,"21482":2,"21483":3,"21484":5,"21485":2,"21486":3,"21487":4,"21488":4,"21489":4,"21490":3,"21491":2,"21492":4,"21493":4,"21494":4,"21495":2,"21496":3,"21497":4,"21498":3,"21499":5,"21500":1,"21501":2,"21502":4,"21503":5,"21504":4,"21505":2,"21506":2,"21507":4,"21508":3,"21509":3,"21510":5,"21511":1,"21512":3,"21513":3,"21514":4,"21515":5,"21516":4,"21517":4,"21518":2,"21519":3,"21520":5,"21521":3,"21522":4,"21523":4,"21524":5,"21525":3,"21526":4,"21527":4,"21528":3,"21529":4,"21530":4,"21531":3,"21532":1,"21533":3,"21534":3,"21535":1,"21536":4,"21537":4,"21538":4,"21539":1,"21540":3,"21541":3,"21542":5,"21543":4,"21544":5,"21545":3,"21546":5,"21547":3,"21548":4,"21549":4,"21550":3,"21551":3,"21552":4,"21553":3,"21554":5,"21555":1,"21556":3,"21557":5,"21558":4,"21559":3,"21560":3,"21561":4,"21562":5,"21563":3,"21564":3,"21565":3,"21566":4,"21567":3,"21568":3,"21569":1,"21570":2,"21571":3,"21572":2,"21573":3,"21574":4,"21575":2,"21576":4,"21577":3,"21578":2,"21579":3,"21580":5,"21581":3,"21582":1,"21583":2,"21584":4,"21585":5,"21586":3,"21587":4,"21588":2,"21589":4,"21590":2,"21591":5,"21592":5,"21593":3,"21594":3,"21595":4,"21596":3,"21597":2,"21598":2,"21599":5,"21600":3,"21601":3,"21602":5,"21603":3,"21604":3,"21605":4,"21606":3,"21607":2,"21608":2,"21609":4,"21610":3,"21611":2,"21612":3,"21613":4,"21614":3,"21615":3,"21616":1,"21617":5,"21618":4,"21619":4,"21620":2,"21621":1,"21622":1,"21623":3,"21624":3,"21625":4,"21626":2,"21627":3,"21628":4,"21629":3,"21630":2,"21631":2,"21632":3,"21633":4,"21634":4,"21635":4,"21636":1,"21637":2,"21638":5,"21639":2,"21640":2,"21641":2,"21642":3,"21643":4,"21644":3,"21645":4,"21646":1,"21647":2,"21648":1,"21649":4,"21650":4,"21651":1,"21652":2,"21653":2,"21654":3,"21655":3,"21656":3,"21657":4,"21658":4,"21659":3,"21660":3,"21661":2,"21662":5,"21663":3,"21664":4,"21665":2,"21666":3,"21667":3,"21668":2,"21669":2,"21670":3,"21671":3,"21672":2,"21673":2,"21674":3,"21675":5,"21676":1,"21677":3,"21678":3,"21679":2,"21680":3,"21681":3,"21682":3,"21683":5,"21684":4,"21685":3,"21686":2,"21687":1,"21688":4,"21689":3,"21690":4,"21691":4,"21692":4,"21693":2,"21694":2,"21695":2,"21696":3,"21697":3,"21698":3,"21699":3,"21700":2,"21701":1,"21702":1,"21703":3,"21704":4,"21705":3,"21706":3,"21707":1,"21708":1,"21709":2,"21710":3,"21711":5,"21712":3,"21713":4,"21714":4,"21715":1,"21716":3,"21717":3,"21718":3,"21719":2,"21720":3,"21721":3,"21722":3,"21723":3,"21724":4,"21725":2,"21726":3,"21727":3,"21728":3,"21729":4,"21730":1,"21731":4,"21732":2,"21733":4,"21734":4,"21735":1,"21736":2,"21737":3,"21738":2,"21739":3,"21740":1,"21741":3,"21742":4,"21743":3,"21744":4,"21745":2,"21746":1,"21747":2,"21748":2,"21749":2,"21750":5,"21751":3,"21752":5,"21753":4,"21754":3,"21755":4,"21756":1,"21757":2,"21758":3,"21759":3,"21760":1,"21761":4,"21762":2,"21763":3,"21764":5,"21765":4,"21766":3,"21767":5,"21768":3,"21769":3,"21770":1,"21771":3,"21772":3,"21773":3,"21774":1,"21775":1,"21776":3,"21777":3,"21778":4,"21779":2,"21780":3,"21781":4,"21782":3,"21783":3,"21784":1,"21785":1,"21786":2,"21787":4,"21788":3,"21789":2,"21790":4,"21791":3,"21792":2,"21793":2,"21794":3,"21795":2,"21796":3,"21797":3,"21798":2,"21799":3,"21800":2,"21801":3,"21802":3,"21803":3,"21804":1,"21805":5,"21806":2,"21807":4,"21808":3,"21809":3,"21810":1,"21811":1,"21812":3,"21813":3,"21814":3,"21815":2,"21816":3,"21817":5,"21818":4,"21819":3,"21820":1,"21821":4,"21822":3,"21823":4,"21824":3,"21825":4,"21826":2,"21827":4,"21828":3,"21829":4,"21830":4,"21831":3,"21832":3,"21833":4,"21834":3,"21835":4,"21836":5,"21837":3,"21838":3,"21839":4,"21840":3,"21841":3,"21842":4,"21843":5,"21844":3,"21845":3,"21846":4,"21847":3,"21848":2,"21849":2,"21850":2,"21851":3,"21852":3,"21853":3,"21854":3,"21855":1,"21856":2,"21857":1,"21858":3,"21859":1,"21860":2,"21861":3,"21862":1,"21863":3,"21864":2,"21865":3,"21866":4,"21867":2,"21868":5,"21869":4,"21870":3,"21871":4,"21872":3,"21873":4,"21874":4,"21875":3,"21876":3,"21877":2,"21878":2,"21879":5,"21880":1,"21881":1,"21882":2,"21883":3,"21884":3,"21885":2,"21886":4,"21887":4,"21888":3,"21889":5,"21890":3,"21891":4,"21892":2,"21893":4,"21894":3,"21895":3,"21896":3,"21897":2,"21898":4,"21899":5,"21900":3,"21901":4,"21902":1,"21903":1,"21904":4,"21905":1,"21906":3,"21907":2,"21908":3,"21909":2,"21910":3,"21911":4,"21912":3,"21913":2,"21914":2,"21915":3,"21916":2,"21917":3,"21918":2,"21919":5,"21920":3,"21921":1,"21922":3,"21923":4,"21924":2,"21925":2,"21926":3,"21927":4,"21928":5,"21929":3,"21930":2,"21931":3,"21932":3,"21933":1,"21934":1,"21935":1,"21936":3,"21937":1,"21938":3,"21939":3,"21940":5,"21941":1,"21942":4,"21943":1,"21944":1,"21945":4,"21946":4,"21947":2,"21948":3,"21949":3,"21950":3,"21951":3,"21952":4,"21953":2,"21954":3,"21955":2,"21956":3,"21957":3,"21958":1,"21959":4,"21960":2,"21961":3,"21962":2,"21963":2,"21964":3,"21965":2,"21966":1,"21967":3,"21968":1,"21969":5,"21970":3,"21971":3,"21972":5,"21973":3,"21974":1,"21975":3,"21976":1,"21977":4,"21978":4,"21979":4,"21980":4,"21981":4,"21982":2,"21983":2,"21984":3,"21985":1,"21986":4,"21987":4,"21988":2,"21989":5,"21990":3,"21991":3,"21992":1,"21993":4,"21994":3,"21995":5,"21996":3,"21997":2,"21998":4,"21999":2,"22000":4,"22001":3,"22002":5,"22003":4,"22004":4,"22005":4,"22006":3,"22007":4,"22008":2,"22009":2,"22010":3,"22011":2,"22012":1,"22013":1,"22014":3,"22015":4,"22016":4,"22017":5,"22018":2,"22019":4,"22020":3,"22021":2,"22022":1,"22023":2,"22024":5,"22025":1,"22026":1,"22027":3,"22028":3,"22029":1,"22030":1,"22031":3,"22032":2,"22033":2,"22034":3,"22035":4,"22036":3,"22037":4,"22038":3,"22039":2,"22040":1,"22041":2,"22042":3,"22043":2,"22044":2,"22045":4,"22046":5,"22047":3,"22048":2,"22049":3,"22050":4,"22051":4,"22052":3,"22053":4,"22054":4,"22055":4,"22056":1,"22057":4,"22058":2,"22059":2,"22060":3,"22061":4,"22062":5,"22063":2,"22064":3,"22065":3,"22066":3,"22067":1,"22068":4,"22069":3,"22070":4,"22071":3,"22072":4,"22073":3,"22074":3,"22075":1,"22076":1,"22077":4,"22078":3,"22079":4,"22080":3,"22081":4,"22082":2,"22083":4,"22084":1,"22085":2,"22086":3,"22087":1,"22088":5,"22089":3,"22090":3,"22091":3,"22092":2,"22093":1,"22094":1,"22095":2,"22096":3,"22097":2,"22098":3,"22099":3,"22100":4,"22101":4,"22102":3,"22103":2,"22104":2,"22105":2,"22106":3,"22107":5,"22108":4,"22109":3,"22110":4,"22111":5,"22112":1,"22113":4,"22114":1,"22115":4,"22116":4,"22117":4,"22118":3,"22119":5,"22120":4,"22121":3,"22122":3,"22123":3,"22124":4,"22125":4,"22126":5,"22127":2,"22128":4,"22129":3,"22130":3,"22131":1,"22132":1,"22133":4,"22134":3,"22135":4,"22136":3,"22137":5,"22138":3,"22139":2,"22140":2,"22141":3,"22142":2,"22143":3,"22144":2,"22145":2,"22146":4,"22147":2,"22148":2,"22149":2,"22150":3,"22151":4,"22152":1,"22153":3,"22154":2,"22155":4,"22156":5,"22157":4,"22158":3,"22159":3,"22160":3,"22161":1,"22162":2,"22163":2,"22164":4,"22165":4,"22166":1,"22167":3,"22168":3,"22169":1,"22170":3,"22171":3,"22172":2,"22173":3,"22174":4,"22175":4,"22176":1,"22177":4,"22178":5,"22179":1,"22180":3,"22181":2,"22182":1,"22183":4,"22184":3,"22185":4,"22186":3,"22187":4,"22188":5,"22189":3,"22190":4,"22191":3,"22192":4,"22193":4,"22194":3,"22195":2,"22196":1,"22197":1,"22198":4,"22199":4,"22200":1,"22201":4,"22202":3,"22203":3,"22204":3,"22205":4,"22206":4,"22207":3,"22208":3,"22209":3,"22210":4,"22211":2,"22212":3,"22213":2,"22214":1,"22215":3,"22216":4,"22217":3,"22218":3,"22219":2,"22220":3,"22221":2,"22222":3,"22223":2,"22224":1,"22225":2,"22226":2,"22227":4,"22228":2,"22229":3,"22230":1,"22231":3,"22232":5,"22233":2,"22234":3,"22235":4,"22236":3,"22237":4,"22238":3,"22239":2,"22240":3,"22241":2,"22242":1,"22243":2,"22244":4,"22245":2,"22246":1,"22247":1,"22248":3,"22249":3,"22250":1,"22251":2,"22252":3,"22253":4,"22254":5,"22255":3,"22256":3,"22257":4,"22258":2,"22259":2,"22260":2,"22261":1,"22262":2,"22263":2,"22264":2,"22265":4,"22266":5,"22267":4,"22268":5,"22269":2,"22270":5,"22271":2,"22272":3,"22273":3,"22274":3,"22275":4,"22276":3,"22277":3,"22278":4,"22279":2,"22280":2,"22281":3,"22282":5,"22283":3,"22284":4,"22285":2,"22286":4,"22287":2,"22288":4,"22289":3,"22290":3,"22291":1,"22292":1,"22293":3,"22294":3,"22295":3,"22296":3,"22297":2,"22298":1,"22299":3,"22300":3,"22301":4,"22302":4,"22303":3,"22304":3,"22305":3,"22306":4,"22307":2,"22308":4,"22309":3,"22310":4,"22311":4,"22312":3,"22313":4,"22314":4,"22315":5,"22316":1,"22317":4,"22318":1,"22319":1,"22320":3,"22321":1,"22322":1,"22323":3,"22324":5,"22325":3,"22326":4,"22327":2,"22328":4,"22329":4,"22330":4,"22331":4,"22332":3,"22333":3,"22334":1,"22335":4,"22336":4,"22337":2,"22338":2,"22339":3,"22340":4,"22341":4,"22342":2,"22343":3,"22344":5,"22345":4,"22346":3,"22347":3,"22348":2,"22349":1,"22350":2,"22351":4,"22352":4,"22353":4,"22354":3,"22355":3,"22356":3,"22357":2,"22358":5,"22359":3,"22360":3,"22361":4,"22362":4,"22363":4,"22364":4,"22365":1,"22366":2,"22367":2,"22368":3,"22369":2,"22370":1,"22371":2,"22372":1,"22373":5,"22374":3,"22375":3,"22376":3,"22377":2,"22378":2,"22379":4,"22380":2,"22381":5,"22382":4,"22383":1,"22384":4,"22385":3,"22386":2,"22387":2,"22388":3,"22389":4,"22390":1,"22391":2,"22392":2,"22393":1,"22394":2,"22395":3,"22396":3,"22397":4,"22398":4,"22399":3,"22400":4,"22401":3,"22402":3,"22403":4,"22404":5,"22405":3,"22406":3,"22407":3,"22408":2,"22409":5,"22410":3,"22411":2,"22412":3,"22413":2,"22414":3,"22415":2,"22416":2,"22417":3,"22418":1,"22419":4,"22420":4,"22421":3,"22422":3,"22423":4,"22424":3,"22425":3,"22426":2,"22427":1,"22428":3,"22429":3,"22430":4,"22431":2,"22432":3,"22433":3,"22434":2,"22435":2,"22436":3,"22437":4,"22438":3,"22439":1,"22440":3,"22441":2,"22442":3,"22443":4,"22444":3,"22445":3,"22446":3,"22447":3,"22448":1,"22449":3,"22450":3,"22451":4,"22452":4,"22453":3,"22454":2,"22455":3,"22456":2,"22457":1,"22458":4,"22459":4,"22460":2,"22461":3,"22462":4,"22463":1,"22464":2,"22465":3,"22466":3,"22467":2,"22468":5,"22469":3,"22470":3,"22471":3,"22472":5,"22473":3,"22474":1,"22475":2,"22476":2,"22477":2,"22478":3,"22479":3,"22480":4,"22481":3,"22482":3,"22483":5,"22484":3,"22485":2,"22486":4,"22487":2,"22488":3,"22489":2,"22490":2,"22491":3,"22492":4,"22493":3,"22494":2,"22495":2,"22496":3,"22497":1,"22498":4,"22499":3,"22500":4,"22501":4,"22502":2,"22503":4,"22504":3,"22505":5,"22506":2,"22507":3,"22508":4,"22509":3,"22510":5,"22511":4,"22512":3,"22513":3,"22514":3,"22515":4,"22516":1,"22517":3,"22518":3,"22519":3,"22520":3,"22521":3,"22522":4,"22523":4,"22524":1,"22525":2,"22526":4,"22527":2,"22528":1,"22529":4,"22530":3,"22531":3,"22532":4,"22533":4,"22534":2,"22535":4,"22536":2,"22537":3,"22538":4,"22539":4,"22540":3,"22541":4,"22542":4,"22543":4,"22544":2,"22545":3,"22546":1,"22547":3,"22548":4,"22549":4,"22550":3,"22551":5,"22552":2,"22553":2,"22554":3,"22555":2,"22556":4,"22557":2,"22558":3,"22559":4,"22560":3,"22561":1,"22562":4,"22563":4,"22564":2,"22565":2,"22566":2,"22567":2,"22568":3,"22569":2,"22570":3,"22571":2,"22572":3,"22573":2,"22574":2,"22575":5,"22576":5,"22577":5,"22578":2,"22579":2,"22580":4,"22581":4,"22582":1,"22583":1,"22584":2,"22585":4,"22586":3,"22587":4,"22588":2,"22589":4,"22590":3,"22591":2,"22592":4,"22593":3,"22594":5,"22595":5,"22596":4,"22597":3,"22598":1,"22599":1,"22600":2,"22601":4,"22602":2,"22603":1,"22604":3,"22605":4,"22606":4,"22607":1,"22608":3,"22609":2,"22610":4,"22611":2,"22612":2,"22613":3,"22614":3,"22615":4,"22616":3,"22617":4,"22618":1,"22619":4,"22620":3,"22621":2,"22622":2,"22623":4,"22624":3,"22625":3,"22626":2,"22627":3,"22628":1,"22629":4,"22630":2,"22631":1,"22632":3,"22633":3,"22634":4,"22635":1,"22636":4,"22637":5,"22638":5,"22639":1,"22640":1,"22641":2,"22642":1,"22643":3,"22644":2,"22645":4,"22646":2,"22647":4,"22648":5,"22649":5,"22650":3,"22651":2,"22652":1,"22653":3,"22654":4,"22655":1,"22656":4,"22657":3,"22658":4,"22659":4,"22660":3,"22661":4,"22662":2,"22663":3,"22664":2,"22665":4,"22666":2,"22667":2,"22668":2,"22669":2,"22670":2,"22671":2,"22672":3,"22673":4,"22674":1,"22675":4,"22676":2,"22677":4,"22678":3,"22679":5,"22680":3,"22681":2,"22682":3,"22683":3,"22684":3,"22685":3,"22686":1,"22687":3,"22688":4,"22689":4,"22690":5,"22691":1,"22692":4,"22693":4,"22694":4,"22695":4,"22696":3,"22697":4,"22698":2,"22699":3,"22700":4,"22701":4,"22702":2,"22703":1,"22704":2,"22705":4,"22706":3,"22707":2,"22708":4,"22709":3,"22710":3,"22711":3,"22712":4,"22713":4,"22714":3,"22715":3,"22716":3,"22717":4,"22718":4,"22719":3,"22720":4,"22721":3,"22722":4,"22723":4,"22724":3,"22725":2,"22726":3,"22727":3,"22728":3,"22729":3,"22730":4,"22731":3,"22732":3,"22733":3,"22734":3,"22735":2,"22736":4,"22737":4,"22738":3,"22739":2,"22740":1,"22741":4,"22742":5,"22743":3,"22744":3,"22745":2,"22746":4,"22747":2,"22748":3,"22749":3,"22750":1,"22751":2,"22752":4,"22753":2,"22754":3,"22755":4,"22756":3,"22757":1,"22758":2,"22759":4,"22760":3,"22761":2,"22762":4,"22763":3,"22764":4,"22765":1,"22766":3,"22767":4,"22768":3,"22769":4,"22770":1,"22771":3,"22772":1,"22773":3,"22774":4,"22775":4,"22776":3,"22777":3,"22778":4,"22779":4,"22780":3,"22781":2,"22782":3,"22783":3,"22784":2,"22785":3,"22786":2,"22787":3,"22788":2,"22789":5,"22790":2,"22791":4,"22792":2,"22793":3,"22794":4,"22795":2,"22796":3,"22797":3,"22798":3,"22799":4,"22800":4,"22801":2,"22802":4,"22803":4,"22804":5,"22805":3,"22806":1,"22807":2,"22808":3,"22809":4,"22810":3,"22811":4,"22812":3,"22813":3,"22814":2,"22815":1,"22816":3,"22817":4,"22818":4,"22819":1,"22820":5,"22821":3,"22822":3,"22823":3,"22824":4,"22825":4,"22826":2,"22827":1,"22828":1,"22829":2,"22830":3,"22831":2,"22832":3,"22833":4,"22834":3,"22835":5,"22836":3,"22837":4,"22838":3,"22839":5,"22840":4,"22841":2,"22842":2,"22843":1,"22844":2,"22845":3,"22846":3,"22847":5,"22848":4,"22849":3,"22850":3,"22851":4,"22852":4,"22853":1,"22854":2,"22855":3,"22856":4,"22857":3,"22858":1,"22859":4,"22860":1,"22861":3,"22862":4,"22863":3,"22864":3,"22865":5,"22866":2,"22867":2,"22868":2,"22869":4,"22870":5,"22871":2,"22872":4,"22873":4,"22874":3,"22875":2,"22876":4,"22877":4,"22878":3,"22879":2,"22880":3,"22881":3,"22882":3,"22883":3,"22884":4,"22885":2,"22886":2,"22887":2,"22888":3,"22889":2,"22890":3,"22891":5,"22892":3,"22893":4,"22894":2,"22895":3,"22896":2,"22897":3,"22898":4,"22899":4,"22900":4,"22901":4,"22902":3,"22903":3,"22904":4,"22905":4,"22906":4,"22907":3,"22908":3,"22909":3,"22910":2,"22911":2,"22912":4,"22913":1,"22914":3,"22915":2,"22916":3,"22917":2,"22918":3,"22919":2,"22920":1,"22921":3,"22922":3,"22923":4,"22924":4,"22925":3,"22926":4,"22927":3,"22928":4,"22929":4,"22930":2,"22931":3,"22932":4,"22933":2,"22934":1,"22935":3,"22936":2,"22937":3,"22938":3,"22939":2,"22940":4,"22941":3,"22942":4,"22943":2,"22944":3,"22945":2,"22946":3,"22947":1,"22948":4,"22949":4,"22950":3,"22951":4,"22952":3,"22953":3,"22954":2,"22955":3,"22956":3,"22957":4,"22958":3,"22959":4,"22960":1,"22961":3,"22962":5,"22963":2,"22964":4,"22965":2,"22966":4,"22967":2,"22968":3,"22969":1,"22970":4,"22971":2,"22972":5,"22973":5,"22974":5,"22975":1,"22976":2,"22977":3,"22978":4,"22979":2,"22980":3,"22981":3,"22982":3,"22983":2,"22984":5,"22985":2,"22986":3,"22987":2,"22988":2,"22989":2,"22990":4,"22991":4,"22992":4,"22993":3,"22994":4,"22995":2,"22996":2,"22997":3,"22998":1,"22999":3,"23000":2,"23001":2,"23002":4,"23003":2,"23004":3,"23005":1,"23006":1,"23007":4,"23008":3,"23009":3,"23010":4,"23011":4,"23012":2,"23013":3,"23014":2,"23015":1,"23016":3,"23017":5,"23018":3,"23019":2,"23020":3,"23021":4,"23022":2,"23023":2,"23024":3,"23025":1,"23026":3,"23027":4,"23028":4,"23029":3,"23030":4,"23031":3,"23032":3,"23033":4,"23034":2,"23035":4,"23036":1,"23037":3,"23038":4,"23039":1,"23040":1,"23041":2,"23042":3,"23043":3,"23044":4,"23045":1,"23046":4,"23047":3,"23048":2,"23049":2,"23050":1,"23051":1,"23052":2,"23053":3,"23054":5,"23055":2,"23056":4,"23057":5,"23058":3,"23059":3,"23060":4,"23061":4,"23062":3,"23063":1,"23064":1,"23065":5,"23066":3,"23067":3,"23068":2,"23069":3,"23070":2,"23071":4,"23072":3,"23073":4,"23074":1,"23075":1,"23076":5,"23077":5,"23078":2,"23079":1,"23080":3,"23081":5,"23082":2,"23083":3,"23084":2,"23085":2,"23086":3,"23087":2,"23088":1,"23089":1,"23090":3,"23091":5,"23092":2,"23093":1,"23094":3,"23095":2,"23096":3,"23097":2,"23098":1,"23099":5,"23100":2,"23101":3,"23102":4,"23103":3,"23104":2,"23105":5,"23106":3,"23107":3,"23108":4,"23109":2,"23110":3,"23111":4,"23112":3,"23113":2,"23114":2,"23115":5,"23116":5,"23117":2,"23118":3,"23119":1,"23120":2,"23121":1,"23122":3,"23123":2,"23124":1,"23125":1,"23126":4,"23127":3,"23128":3,"23129":4,"23130":2,"23131":4,"23132":4,"23133":3,"23134":2,"23135":3,"23136":3,"23137":5,"23138":3,"23139":5,"23140":5,"23141":3,"23142":4,"23143":1,"23144":4,"23145":4,"23146":3,"23147":4,"23148":1,"23149":1,"23150":1,"23151":2,"23152":2,"23153":3,"23154":3,"23155":5,"23156":1,"23157":4,"23158":4,"23159":3,"23160":3,"23161":3,"23162":5,"23163":3,"23164":2,"23165":4,"23166":1,"23167":4,"23168":3,"23169":3,"23170":2,"23171":2,"23172":3,"23173":2,"23174":2,"23175":4,"23176":1,"23177":2,"23178":3,"23179":2,"23180":3,"23181":4,"23182":3,"23183":4,"23184":4,"23185":2,"23186":3,"23187":2,"23188":5,"23189":1,"23190":2,"23191":3,"23192":4,"23193":5,"23194":2,"23195":3,"23196":3,"23197":3,"23198":3,"23199":1,"23200":2,"23201":1,"23202":2,"23203":2,"23204":3,"23205":3,"23206":3,"23207":5,"23208":4,"23209":2,"23210":3,"23211":3,"23212":3,"23213":3,"23214":4,"23215":3,"23216":3,"23217":3,"23218":3,"23219":1,"23220":3,"23221":1,"23222":4,"23223":3,"23224":3,"23225":2,"23226":1,"23227":5,"23228":3,"23229":2,"23230":3,"23231":3,"23232":4,"23233":2,"23234":4,"23235":3,"23236":2,"23237":4,"23238":2,"23239":3,"23240":4,"23241":4,"23242":4,"23243":3,"23244":3,"23245":2,"23246":3,"23247":4,"23248":4,"23249":1,"23250":3,"23251":2,"23252":3,"23253":3,"23254":4,"23255":2,"23256":5,"23257":2,"23258":4,"23259":4,"23260":4,"23261":5,"23262":4,"23263":5,"23264":4,"23265":4,"23266":4,"23267":3,"23268":3,"23269":5,"23270":4,"23271":2,"23272":2,"23273":2,"23274":3,"23275":2,"23276":2,"23277":5,"23278":5,"23279":2,"23280":3,"23281":2,"23282":4,"23283":1,"23284":2,"23285":1,"23286":3,"23287":2,"23288":1,"23289":3,"23290":3,"23291":3,"23292":1,"23293":3,"23294":4,"23295":5,"23296":3,"23297":3,"23298":2,"23299":4,"23300":3,"23301":3,"23302":1,"23303":2,"23304":3,"23305":3,"23306":3,"23307":3,"23308":3,"23309":1,"23310":3,"23311":5,"23312":3,"23313":4,"23314":3,"23315":5,"23316":3,"23317":3,"23318":4,"23319":4,"23320":1,"23321":3,"23322":4,"23323":2,"23324":4,"23325":3,"23326":3,"23327":3,"23328":5,"23329":1,"23330":2,"23331":4,"23332":4,"23333":1,"23334":3,"23335":5,"23336":1,"23337":2,"23338":3,"23339":3,"23340":2,"23341":4,"23342":3,"23343":4,"23344":2,"23345":5,"23346":2,"23347":2,"23348":2,"23349":4,"23350":2,"23351":4,"23352":3,"23353":3,"23354":3,"23355":3,"23356":4,"23357":3,"23358":4,"23359":3,"23360":3,"23361":3,"23362":2,"23363":5,"23364":2,"23365":1,"23366":2,"23367":2,"23368":2,"23369":4,"23370":1,"23371":4,"23372":4,"23373":2,"23374":4,"23375":1,"23376":1,"23377":4,"23378":1,"23379":3,"23380":3,"23381":3,"23382":3,"23383":3,"23384":2,"23385":3,"23386":4,"23387":3,"23388":3,"23389":4,"23390":3,"23391":3,"23392":2,"23393":3,"23394":4,"23395":2,"23396":3,"23397":5,"23398":2,"23399":4,"23400":2,"23401":3,"23402":1,"23403":1,"23404":3,"23405":3,"23406":1,"23407":3,"23408":3,"23409":5,"23410":2,"23411":2,"23412":4,"23413":5,"23414":4,"23415":3,"23416":2,"23417":3,"23418":4,"23419":1,"23420":4,"23421":3,"23422":1,"23423":5,"23424":3,"23425":4,"23426":4,"23427":3,"23428":3,"23429":5,"23430":4,"23431":3,"23432":3,"23433":4,"23434":4,"23435":4,"23436":2,"23437":5,"23438":2,"23439":3,"23440":2,"23441":5,"23442":5,"23443":2,"23444":3,"23445":3,"23446":5,"23447":1,"23448":5,"23449":1,"23450":3,"23451":4,"23452":4,"23453":4,"23454":3,"23455":2,"23456":3,"23457":5,"23458":5,"23459":2,"23460":2,"23461":3,"23462":4,"23463":3,"23464":1,"23465":3,"23466":4,"23467":4,"23468":2,"23469":3,"23470":3,"23471":3,"23472":4,"23473":3,"23474":3,"23475":2,"23476":2,"23477":4,"23478":2,"23479":3,"23480":4,"23481":1,"23482":2,"23483":4,"23484":3,"23485":3,"23486":2,"23487":2,"23488":2,"23489":2,"23490":4,"23491":4,"23492":5,"23493":1,"23494":3,"23495":2,"23496":3,"23497":5,"23498":2,"23499":3,"23500":2,"23501":5,"23502":3,"23503":3,"23504":4,"23505":4,"23506":3,"23507":2,"23508":2,"23509":3,"23510":3,"23511":2,"23512":2,"23513":3,"23514":4,"23515":3,"23516":1,"23517":1,"23518":2,"23519":3,"23520":4,"23521":2,"23522":4,"23523":1,"23524":3,"23525":2,"23526":4,"23527":3,"23528":4,"23529":2,"23530":3,"23531":2,"23532":2,"23533":3,"23534":1,"23535":3,"23536":2,"23537":4,"23538":5,"23539":2,"23540":4,"23541":2,"23542":3,"23543":2,"23544":3,"23545":2,"23546":4,"23547":3,"23548":3,"23549":2,"23550":4,"23551":3,"23552":3,"23553":2,"23554":3,"23555":3,"23556":4,"23557":2,"23558":5,"23559":2,"23560":3,"23561":3,"23562":3,"23563":3,"23564":4,"23565":4,"23566":4,"23567":3,"23568":3,"23569":5,"23570":1,"23571":3,"23572":3,"23573":5,"23574":4,"23575":3,"23576":4,"23577":4,"23578":4,"23579":4,"23580":4,"23581":4,"23582":3,"23583":3,"23584":2,"23585":2,"23586":1,"23587":3,"23588":1,"23589":3,"23590":3,"23591":5,"23592":2,"23593":3,"23594":3,"23595":4,"23596":3,"23597":3,"23598":3,"23599":4,"23600":4,"23601":5,"23602":5,"23603":2,"23604":4,"23605":4,"23606":3,"23607":3,"23608":3,"23609":2,"23610":2,"23611":3,"23612":3,"23613":3,"23614":2,"23615":2,"23616":4,"23617":2,"23618":3,"23619":3,"23620":3,"23621":2,"23622":4,"23623":2,"23624":5,"23625":4,"23626":2,"23627":4,"23628":4,"23629":4,"23630":4,"23631":3,"23632":3,"23633":4,"23634":3,"23635":4,"23636":4,"23637":3,"23638":4,"23639":3,"23640":3,"23641":3,"23642":3,"23643":2,"23644":2,"23645":3,"23646":4,"23647":2,"23648":3,"23649":5,"23650":4,"23651":3,"23652":1,"23653":4,"23654":5,"23655":1,"23656":3,"23657":4,"23658":5,"23659":3,"23660":4,"23661":2,"23662":1,"23663":3,"23664":3,"23665":4,"23666":3,"23667":2,"23668":1,"23669":3,"23670":4,"23671":2,"23672":2,"23673":3,"23674":4,"23675":3,"23676":3,"23677":3,"23678":4,"23679":3,"23680":2,"23681":3,"23682":4,"23683":3,"23684":2,"23685":4,"23686":4,"23687":2,"23688":4,"23689":4,"23690":4,"23691":3,"23692":4,"23693":3,"23694":4,"23695":1,"23696":1,"23697":3,"23698":3,"23699":3,"23700":1,"23701":4,"23702":3,"23703":3,"23704":4,"23705":2,"23706":2,"23707":2,"23708":1,"23709":3,"23710":4,"23711":3,"23712":2,"23713":2,"23714":3,"23715":5,"23716":4,"23717":4,"23718":3,"23719":1,"23720":2,"23721":3,"23722":4,"23723":4,"23724":2,"23725":4,"23726":3,"23727":4,"23728":2,"23729":1,"23730":4,"23731":2,"23732":1,"23733":4,"23734":3,"23735":5,"23736":2,"23737":2,"23738":4,"23739":3,"23740":5,"23741":4,"23742":2,"23743":4,"23744":4,"23745":3,"23746":3,"23747":4,"23748":3,"23749":2,"23750":4,"23751":1,"23752":2,"23753":2,"23754":2,"23755":4,"23756":2,"23757":4,"23758":4,"23759":3,"23760":2,"23761":4,"23762":1,"23763":2,"23764":4,"23765":4,"23766":4,"23767":4,"23768":3,"23769":4,"23770":3,"23771":1,"23772":1,"23773":3,"23774":4,"23775":3,"23776":3,"23777":4,"23778":3,"23779":3,"23780":4,"23781":3,"23782":5,"23783":3,"23784":2,"23785":3,"23786":4,"23787":3,"23788":3,"23789":4,"23790":4,"23791":2,"23792":4,"23793":3,"23794":4,"23795":5,"23796":3,"23797":4,"23798":1,"23799":2,"23800":4,"23801":2,"23802":4,"23803":3,"23804":3,"23805":2,"23806":3,"23807":2,"23808":5,"23809":3,"23810":3,"23811":2,"23812":1,"23813":3,"23814":2,"23815":3,"23816":4,"23817":4,"23818":3,"23819":1,"23820":3,"23821":4,"23822":2,"23823":5,"23824":3,"23825":3,"23826":5,"23827":3,"23828":3,"23829":3,"23830":2,"23831":4,"23832":5,"23833":4,"23834":4,"23835":3,"23836":4,"23837":3,"23838":4,"23839":4,"23840":4,"23841":4,"23842":4,"23843":4,"23844":4,"23845":3,"23846":2,"23847":4,"23848":4,"23849":5,"23850":1,"23851":4,"23852":4,"23853":4,"23854":1,"23855":4,"23856":3,"23857":2,"23858":4,"23859":3,"23860":4,"23861":2,"23862":3,"23863":1,"23864":5,"23865":5,"23866":3,"23867":3,"23868":4,"23869":3,"23870":4,"23871":4,"23872":2,"23873":3,"23874":2,"23875":3,"23876":1,"23877":1,"23878":4,"23879":3,"23880":3,"23881":2,"23882":2,"23883":3,"23884":5,"23885":1,"23886":5,"23887":3,"23888":2,"23889":3,"23890":5,"23891":2,"23892":1,"23893":3,"23894":2,"23895":3,"23896":2,"23897":3,"23898":3,"23899":3,"23900":2,"23901":5,"23902":3,"23903":3,"23904":2,"23905":3,"23906":4,"23907":3,"23908":3,"23909":3,"23910":2,"23911":3,"23912":4,"23913":3,"23914":4,"23915":3,"23916":1,"23917":3,"23918":4,"23919":2,"23920":2,"23921":4,"23922":4,"23923":1,"23924":5,"23925":2,"23926":3,"23927":2,"23928":5,"23929":4,"23930":5,"23931":4,"23932":4,"23933":3,"23934":3,"23935":1,"23936":3,"23937":3,"23938":2,"23939":3,"23940":2,"23941":4,"23942":3,"23943":2,"23944":3,"23945":4,"23946":3,"23947":3,"23948":3,"23949":5,"23950":1,"23951":5,"23952":4,"23953":2,"23954":3,"23955":2,"23956":2,"23957":1,"23958":4,"23959":3,"23960":2,"23961":3,"23962":1,"23963":3,"23964":3,"23965":2,"23966":2,"23967":3,"23968":2,"23969":4,"23970":4,"23971":4,"23972":4,"23973":3,"23974":3,"23975":1,"23976":4,"23977":4,"23978":4,"23979":3,"23980":4,"23981":3,"23982":2,"23983":4,"23984":3,"23985":5,"23986":2,"23987":2,"23988":1,"23989":3,"23990":4,"23991":3,"23992":2,"23993":4,"23994":4,"23995":2,"23996":4,"23997":4,"23998":2,"23999":2,"24000":3,"24001":3,"24002":3,"24003":4,"24004":2,"24005":3,"24006":2,"24007":3,"24008":3,"24009":3,"24010":4,"24011":1,"24012":3,"24013":3,"24014":3,"24015":1,"24016":3,"24017":2,"24018":3,"24019":2,"24020":3,"24021":3,"24022":4,"24023":1,"24024":3,"24025":2,"24026":3,"24027":3,"24028":1,"24029":4,"24030":3,"24031":1,"24032":4,"24033":2,"24034":4,"24035":2,"24036":5,"24037":4,"24038":2,"24039":4,"24040":3,"24041":2,"24042":2,"24043":1,"24044":1,"24045":4,"24046":3,"24047":3,"24048":4,"24049":3,"24050":4,"24051":1,"24052":3,"24053":3,"24054":5,"24055":4,"24056":3,"24057":2,"24058":2,"24059":5,"24060":2,"24061":2,"24062":3,"24063":4,"24064":2,"24065":2,"24066":5,"24067":2,"24068":1,"24069":3,"24070":1,"24071":3,"24072":2,"24073":4,"24074":4,"24075":5,"24076":3,"24077":4,"24078":3,"24079":1,"24080":4,"24081":4,"24082":3,"24083":4,"24084":2,"24085":3,"24086":3,"24087":5,"24088":5,"24089":5,"24090":2,"24091":2,"24092":2,"24093":4,"24094":2,"24095":3,"24096":3,"24097":3,"24098":2,"24099":4,"24100":4,"24101":3,"24102":2,"24103":2,"24104":1,"24105":2,"24106":3,"24107":2,"24108":3,"24109":5,"24110":4,"24111":1,"24112":2,"24113":2,"24114":2,"24115":3,"24116":3,"24117":4,"24118":1,"24119":3,"24120":4,"24121":3,"24122":4,"24123":3,"24124":4,"24125":5,"24126":4,"24127":5,"24128":2,"24129":1,"24130":2,"24131":3,"24132":3,"24133":2,"24134":5,"24135":5,"24136":4,"24137":1,"24138":3,"24139":4,"24140":4,"24141":3,"24142":4,"24143":4,"24144":1,"24145":3,"24146":3,"24147":2,"24148":3,"24149":3,"24150":4,"24151":4,"24152":4,"24153":2,"24154":3,"24155":4,"24156":4,"24157":3,"24158":3,"24159":5,"24160":4,"24161":4,"24162":3,"24163":4,"24164":3,"24165":2,"24166":4,"24167":2,"24168":2,"24169":3,"24170":2,"24171":3,"24172":5,"24173":2,"24174":3,"24175":3,"24176":2,"24177":3,"24178":2,"24179":4,"24180":2,"24181":4,"24182":4,"24183":2,"24184":4,"24185":2,"24186":4,"24187":4,"24188":3,"24189":2,"24190":4,"24191":1,"24192":4,"24193":3,"24194":3,"24195":4,"24196":4,"24197":3,"24198":2,"24199":3,"24200":5,"24201":2,"24202":3,"24203":3,"24204":5,"24205":2,"24206":5,"24207":3,"24208":3,"24209":3,"24210":3,"24211":4,"24212":2,"24213":2,"24214":3,"24215":1,"24216":5,"24217":4,"24218":2,"24219":2,"24220":3,"24221":3,"24222":5,"24223":4,"24224":3,"24225":5,"24226":3,"24227":4,"24228":3,"24229":2,"24230":4,"24231":1,"24232":2,"24233":3,"24234":4,"24235":2,"24236":4,"24237":3,"24238":1,"24239":1,"24240":3,"24241":1,"24242":3,"24243":3,"24244":3,"24245":3,"24246":3,"24247":1,"24248":4,"24249":2,"24250":4,"24251":4,"24252":1,"24253":1,"24254":4,"24255":1,"24256":4,"24257":4,"24258":5,"24259":2,"24260":1,"24261":3,"24262":3,"24263":5,"24264":3,"24265":2,"24266":1,"24267":2,"24268":5,"24269":4,"24270":5,"24271":2,"24272":3,"24273":3,"24274":4,"24275":4,"24276":1,"24277":3,"24278":4,"24279":4,"24280":2,"24281":4,"24282":1,"24283":2,"24284":1,"24285":2,"24286":3,"24287":3,"24288":3,"24289":5,"24290":4,"24291":4,"24292":4,"24293":2,"24294":2,"24295":1,"24296":4,"24297":4,"24298":4,"24299":3,"24300":3,"24301":4,"24302":3,"24303":2,"24304":5,"24305":4,"24306":3,"24307":4,"24308":3,"24309":2,"24310":4,"24311":2,"24312":4,"24313":4,"24314":3,"24315":5,"24316":2,"24317":2,"24318":3,"24319":1,"24320":2,"24321":2,"24322":2,"24323":1,"24324":4,"24325":4,"24326":2,"24327":3,"24328":4,"24329":3,"24330":3,"24331":4,"24332":2,"24333":1,"24334":3,"24335":4,"24336":1,"24337":4,"24338":3,"24339":2,"24340":4,"24341":3,"24342":1,"24343":5,"24344":2,"24345":5,"24346":3,"24347":4,"24348":2,"24349":3,"24350":2,"24351":4,"24352":5,"24353":3,"24354":2,"24355":5,"24356":4,"24357":4,"24358":3,"24359":2,"24360":2,"24361":4,"24362":3,"24363":3,"24364":2,"24365":4,"24366":2,"24367":4,"24368":2,"24369":3,"24370":3,"24371":3,"24372":3,"24373":3,"24374":2,"24375":3,"24376":4,"24377":4,"24378":3,"24379":2,"24380":2,"24381":1,"24382":1,"24383":3,"24384":3,"24385":2,"24386":2,"24387":2,"24388":4,"24389":4,"24390":3,"24391":3,"24392":3,"24393":3,"24394":1,"24395":5,"24396":2,"24397":4,"24398":4,"24399":4,"24400":4,"24401":4,"24402":4,"24403":1,"24404":4,"24405":2,"24406":3,"24407":1,"24408":3,"24409":4,"24410":1,"24411":3,"24412":1,"24413":3,"24414":3,"24415":4,"24416":2,"24417":4,"24418":3,"24419":3,"24420":1,"24421":3,"24422":2,"24423":5,"24424":2,"24425":2,"24426":4,"24427":2,"24428":5,"24429":3,"24430":3,"24431":3,"24432":3,"24433":4,"24434":4,"24435":4,"24436":4,"24437":3,"24438":2,"24439":4,"24440":3,"24441":3,"24442":2,"24443":4,"24444":4,"24445":4,"24446":2,"24447":3,"24448":3,"24449":1,"24450":4,"24451":1,"24452":1,"24453":3,"24454":2,"24455":2,"24456":4,"24457":4,"24458":3,"24459":2,"24460":3,"24461":4,"24462":3,"24463":4,"24464":3,"24465":4,"24466":4,"24467":3,"24468":2,"24469":3,"24470":4,"24471":4,"24472":2,"24473":4,"24474":3,"24475":3,"24476":3,"24477":2,"24478":2,"24479":4,"24480":3,"24481":3,"24482":4,"24483":4,"24484":3,"24485":3,"24486":3,"24487":3,"24488":3,"24489":3,"24490":3,"24491":5,"24492":1,"24493":4,"24494":2,"24495":4,"24496":2,"24497":4,"24498":5,"24499":3,"24500":2,"24501":2,"24502":4,"24503":3,"24504":4,"24505":1,"24506":3,"24507":4,"24508":4,"24509":4,"24510":3,"24511":2,"24512":4,"24513":2,"24514":3,"24515":4,"24516":2,"24517":2,"24518":3,"24519":4,"24520":3,"24521":1,"24522":4,"24523":4,"24524":5,"24525":4,"24526":1,"24527":2,"24528":4,"24529":5,"24530":4,"24531":2,"24532":4,"24533":3,"24534":4,"24535":1,"24536":3,"24537":3,"24538":3,"24539":1,"24540":3,"24541":3,"24542":3,"24543":2,"24544":4,"24545":5,"24546":4,"24547":2,"24548":4,"24549":4,"24550":3,"24551":3,"24552":3,"24553":3,"24554":4,"24555":4,"24556":4,"24557":4,"24558":3,"24559":4,"24560":2,"24561":3,"24562":4,"24563":3,"24564":4,"24565":4,"24566":3,"24567":4,"24568":4,"24569":2,"24570":3,"24571":4,"24572":3,"24573":4,"24574":1,"24575":4,"24576":4,"24577":3,"24578":3,"24579":4,"24580":2,"24581":5,"24582":2,"24583":3,"24584":4,"24585":4,"24586":4,"24587":1,"24588":2,"24589":5,"24590":3,"24591":4,"24592":2,"24593":3,"24594":4,"24595":1,"24596":2,"24597":3,"24598":2,"24599":4,"24600":1,"24601":2,"24602":3,"24603":3,"24604":2,"24605":3,"24606":3,"24607":3,"24608":2,"24609":2,"24610":3,"24611":5,"24612":4,"24613":4,"24614":2,"24615":3,"24616":3,"24617":3,"24618":1,"24619":1,"24620":5,"24621":2,"24622":2,"24623":1,"24624":1,"24625":4,"24626":4,"24627":4,"24628":4,"24629":1,"24630":3,"24631":1,"24632":5,"24633":3,"24634":1,"24635":3,"24636":1,"24637":1,"24638":4,"24639":1,"24640":4,"24641":2,"24642":2,"24643":3,"24644":1,"24645":2,"24646":4,"24647":2,"24648":4,"24649":4,"24650":3,"24651":4,"24652":3,"24653":3,"24654":2,"24655":3,"24656":3,"24657":2,"24658":3,"24659":2,"24660":3,"24661":4,"24662":3,"24663":2,"24664":3,"24665":5,"24666":4,"24667":4,"24668":3,"24669":1,"24670":2,"24671":2,"24672":4,"24673":3,"24674":2,"24675":4,"24676":2,"24677":3,"24678":3,"24679":1,"24680":4,"24681":3,"24682":3,"24683":4,"24684":3,"24685":3,"24686":3,"24687":3,"24688":2,"24689":3,"24690":3,"24691":4,"24692":3,"24693":4,"24694":3,"24695":5,"24696":1,"24697":4,"24698":4,"24699":4,"24700":3,"24701":3,"24702":4,"24703":2,"24704":4,"24705":4,"24706":3,"24707":2,"24708":5,"24709":3,"24710":2,"24711":3,"24712":4,"24713":2,"24714":4,"24715":3,"24716":2,"24717":4,"24718":2,"24719":4,"24720":3,"24721":4,"24722":3,"24723":4,"24724":3,"24725":5,"24726":3,"24727":3,"24728":2,"24729":3,"24730":3,"24731":1,"24732":5,"24733":4,"24734":2,"24735":1,"24736":4,"24737":3,"24738":3,"24739":4,"24740":3,"24741":3,"24742":3,"24743":5,"24744":1,"24745":4,"24746":2,"24747":3,"24748":3,"24749":1,"24750":4,"24751":4,"24752":3,"24753":4,"24754":3,"24755":3,"24756":4,"24757":4,"24758":2,"24759":1,"24760":3,"24761":1,"24762":3,"24763":3,"24764":4,"24765":1,"24766":4,"24767":4,"24768":3,"24769":4,"24770":2,"24771":2,"24772":4,"24773":3,"24774":3,"24775":4,"24776":4,"24777":3,"24778":2,"24779":3,"24780":3,"24781":4,"24782":5,"24783":1,"24784":4,"24785":4,"24786":5,"24787":3,"24788":4,"24789":3,"24790":4,"24791":3,"24792":3,"24793":4,"24794":1,"24795":1,"24796":4,"24797":2,"24798":3,"24799":3,"24800":3,"24801":4,"24802":3,"24803":5,"24804":2,"24805":2,"24806":5,"24807":2,"24808":3,"24809":3,"24810":3,"24811":2,"24812":4,"24813":1,"24814":3,"24815":1,"24816":4,"24817":1,"24818":4,"24819":4,"24820":3,"24821":4,"24822":2,"24823":1,"24824":3,"24825":4,"24826":3,"24827":3,"24828":5,"24829":3,"24830":3,"24831":4,"24832":3,"24833":2,"24834":3,"24835":3,"24836":2,"24837":2,"24838":3,"24839":2,"24840":4,"24841":3,"24842":1,"24843":2,"24844":5,"24845":4,"24846":2,"24847":2,"24848":1,"24849":1,"24850":1,"24851":2,"24852":4,"24853":1,"24854":2,"24855":3,"24856":4,"24857":3,"24858":4,"24859":2,"24860":3,"24861":3,"24862":3,"24863":2,"24864":2,"24865":4,"24866":2,"24867":2,"24868":4,"24869":5,"24870":3,"24871":1,"24872":3,"24873":2,"24874":3,"24875":3,"24876":3,"24877":4,"24878":4,"24879":2,"24880":1,"24881":2,"24882":4,"24883":3,"24884":5,"24885":3,"24886":3,"24887":4,"24888":3,"24889":4,"24890":3,"24891":1,"24892":2,"24893":4,"24894":3,"24895":2,"24896":5,"24897":2,"24898":3,"24899":4,"24900":2,"24901":3,"24902":5,"24903":1,"24904":3,"24905":1,"24906":1,"24907":4,"24908":5,"24909":4,"24910":4,"24911":3,"24912":5,"24913":4,"24914":2,"24915":1,"24916":3,"24917":2,"24918":2,"24919":3,"24920":3,"24921":2,"24922":3,"24923":4,"24924":1,"24925":3,"24926":5,"24927":4,"24928":4,"24929":4,"24930":2,"24931":3,"24932":3,"24933":3,"24934":2,"24935":2,"24936":1,"24937":4,"24938":3,"24939":3,"24940":1,"24941":1,"24942":2,"24943":2,"24944":3,"24945":3,"24946":2,"24947":1,"24948":4,"24949":2,"24950":3,"24951":2,"24952":3,"24953":4,"24954":2,"24955":2,"24956":5,"24957":3,"24958":2,"24959":2,"24960":4,"24961":3,"24962":1,"24963":2,"24964":4,"24965":2,"24966":5,"24967":3,"24968":2,"24969":4,"24970":3,"24971":4,"24972":2,"24973":3,"24974":2,"24975":3,"24976":4,"24977":3,"24978":4,"24979":2,"24980":3,"24981":3,"24982":1,"24983":2,"24984":4,"24985":4,"24986":2,"24987":3,"24988":3,"24989":3,"24990":4,"24991":2,"24992":3,"24993":2,"24994":2,"24995":3,"24996":4,"24997":2,"24998":2,"24999":3,"25000":2,"25001":3,"25002":4,"25003":4,"25004":3,"25005":4,"25006":4,"25007":4,"25008":4,"25009":4,"25010":3,"25011":3,"25012":2,"25013":3,"25014":3,"25015":2,"25016":1,"25017":5,"25018":4,"25019":2,"25020":3,"25021":5,"25022":3,"25023":2,"25024":3,"25025":2,"25026":1,"25027":2,"25028":2,"25029":1,"25030":2,"25031":3,"25032":4,"25033":2,"25034":4,"25035":3,"25036":2,"25037":4,"25038":4,"25039":3,"25040":2,"25041":2,"25042":4,"25043":5,"25044":3,"25045":2,"25046":2,"25047":4,"25048":3,"25049":2,"25050":2,"25051":3,"25052":3,"25053":2,"25054":4,"25055":4,"25056":2,"25057":5,"25058":3,"25059":1,"25060":3,"25061":1,"25062":3,"25063":3,"25064":3,"25065":3,"25066":4,"25067":4,"25068":3,"25069":4,"25070":1,"25071":4,"25072":4,"25073":3,"25074":1,"25075":2,"25076":3,"25077":4,"25078":4,"25079":4,"25080":3,"25081":4,"25082":3,"25083":3,"25084":2,"25085":4,"25086":3,"25087":4,"25088":3,"25089":2,"25090":5,"25091":3,"25092":5,"25093":1,"25094":3,"25095":4,"25096":5,"25097":3,"25098":4,"25099":3,"25100":2,"25101":4,"25102":2,"25103":4,"25104":3,"25105":2,"25106":4,"25107":3,"25108":2,"25109":1,"25110":3,"25111":1,"25112":2,"25113":3,"25114":4,"25115":3,"25116":4,"25117":4,"25118":1,"25119":3,"25120":2,"25121":2,"25122":1,"25123":3,"25124":4,"25125":4,"25126":4,"25127":1,"25128":2,"25129":2,"25130":1,"25131":3,"25132":1,"25133":1,"25134":4,"25135":3,"25136":3,"25137":4,"25138":2,"25139":2,"25140":3,"25141":1,"25142":3,"25143":4,"25144":2,"25145":4,"25146":2,"25147":4,"25148":2,"25149":2,"25150":4,"25151":1,"25152":2,"25153":2,"25154":3,"25155":2,"25156":3,"25157":4,"25158":4,"25159":4,"25160":1,"25161":2,"25162":2,"25163":3,"25164":3,"25165":4,"25166":3,"25167":2,"25168":3,"25169":4,"25170":4,"25171":2,"25172":2,"25173":2,"25174":4,"25175":5,"25176":4,"25177":2,"25178":3,"25179":4,"25180":2,"25181":3,"25182":5,"25183":2,"25184":2,"25185":3,"25186":2,"25187":4,"25188":2,"25189":5,"25190":2,"25191":3,"25192":5,"25193":4,"25194":3,"25195":4,"25196":2,"25197":4,"25198":4,"25199":3,"25200":4,"25201":2,"25202":2,"25203":3,"25204":2,"25205":1,"25206":4,"25207":4,"25208":3,"25209":1,"25210":4,"25211":2,"25212":3,"25213":3,"25214":4,"25215":1,"25216":1,"25217":4,"25218":4,"25219":3,"25220":5,"25221":4,"25222":4,"25223":2,"25224":2,"25225":5,"25226":1,"25227":4,"25228":4,"25229":3,"25230":2,"25231":3,"25232":2,"25233":4,"25234":5,"25235":2,"25236":4,"25237":3,"25238":3,"25239":4,"25240":2,"25241":2,"25242":3,"25243":3,"25244":3,"25245":5,"25246":2,"25247":4,"25248":4,"25249":4,"25250":2,"25251":3,"25252":3,"25253":4,"25254":3,"25255":3,"25256":3,"25257":3,"25258":2,"25259":3,"25260":4,"25261":4,"25262":5,"25263":3,"25264":3,"25265":2,"25266":3,"25267":3,"25268":4,"25269":4,"25270":2,"25271":4,"25272":1,"25273":3,"25274":4,"25275":2,"25276":4,"25277":5,"25278":2,"25279":3,"25280":1,"25281":4,"25282":3,"25283":4,"25284":4,"25285":3,"25286":2,"25287":3,"25288":3,"25289":3,"25290":3,"25291":3,"25292":3,"25293":3,"25294":3,"25295":3,"25296":4,"25297":3,"25298":1,"25299":3,"25300":4,"25301":3,"25302":3,"25303":2,"25304":4,"25305":3,"25306":5,"25307":2,"25308":2,"25309":4,"25310":4,"25311":2,"25312":1,"25313":3,"25314":1,"25315":5,"25316":2,"25317":2,"25318":5,"25319":4,"25320":4,"25321":1,"25322":3,"25323":3,"25324":3,"25325":5,"25326":1,"25327":3,"25328":1,"25329":4,"25330":2,"25331":2,"25332":3,"25333":3,"25334":3,"25335":2,"25336":4,"25337":4,"25338":4,"25339":4,"25340":2,"25341":4,"25342":3,"25343":3,"25344":2,"25345":2,"25346":1,"25347":3,"25348":4,"25349":4,"25350":3,"25351":2,"25352":2,"25353":3,"25354":4,"25355":3,"25356":4,"25357":3,"25358":4,"25359":2,"25360":4,"25361":4,"25362":4,"25363":4,"25364":3,"25365":3,"25366":3,"25367":3,"25368":2,"25369":1,"25370":4,"25371":5,"25372":5,"25373":4,"25374":4,"25375":3,"25376":1,"25377":1,"25378":5,"25379":4,"25380":3,"25381":2,"25382":3,"25383":4,"25384":2,"25385":4,"25386":1,"25387":2,"25388":5,"25389":4,"25390":3,"25391":2,"25392":2,"25393":3,"25394":4,"25395":3,"25396":1,"25397":3,"25398":4,"25399":5,"25400":2,"25401":2,"25402":2,"25403":4,"25404":2,"25405":3,"25406":3,"25407":2,"25408":3,"25409":4,"25410":4,"25411":3,"25412":3,"25413":2,"25414":4,"25415":1,"25416":2,"25417":1,"25418":1,"25419":2,"25420":1,"25421":2,"25422":2,"25423":3,"25424":2,"25425":3,"25426":3,"25427":3,"25428":1,"25429":2,"25430":5,"25431":4,"25432":3,"25433":5,"25434":1,"25435":4,"25436":1,"25437":4,"25438":4,"25439":2,"25440":2,"25441":2,"25442":3,"25443":3,"25444":4,"25445":3,"25446":3,"25447":2,"25448":1,"25449":2,"25450":5,"25451":3,"25452":3,"25453":3,"25454":4,"25455":4,"25456":1,"25457":2,"25458":2,"25459":3,"25460":3,"25461":3,"25462":3,"25463":3,"25464":3,"25465":4,"25466":5,"25467":5,"25468":3,"25469":3,"25470":1,"25471":3,"25472":3,"25473":4,"25474":5,"25475":3,"25476":3,"25477":2,"25478":3,"25479":2,"25480":3,"25481":3,"25482":3,"25483":4,"25484":4,"25485":3,"25486":2,"25487":5,"25488":1,"25489":4,"25490":3,"25491":2,"25492":2,"25493":2,"25494":2,"25495":3,"25496":3,"25497":1,"25498":4,"25499":3,"25500":4,"25501":2,"25502":2,"25503":4,"25504":4,"25505":2,"25506":2,"25507":2,"25508":3,"25509":4,"25510":3,"25511":1,"25512":3,"25513":1,"25514":4,"25515":1,"25516":3,"25517":4,"25518":3,"25519":2,"25520":3,"25521":4,"25522":4,"25523":3,"25524":3,"25525":2,"25526":3,"25527":4,"25528":4,"25529":1,"25530":5,"25531":4,"25532":2,"25533":3,"25534":3,"25535":3,"25536":1,"25537":4,"25538":4,"25539":3,"25540":3,"25541":4,"25542":3,"25543":3,"25544":4,"25545":4,"25546":5,"25547":4,"25548":2,"25549":4,"25550":2,"25551":1,"25552":3,"25553":2,"25554":3,"25555":4,"25556":5,"25557":2,"25558":3,"25559":5,"25560":2,"25561":3,"25562":4,"25563":3,"25564":2,"25565":4,"25566":3,"25567":3,"25568":4,"25569":4,"25570":4,"25571":4,"25572":4,"25573":4,"25574":5,"25575":5,"25576":1,"25577":4,"25578":5,"25579":4,"25580":2,"25581":3,"25582":4,"25583":2,"25584":1,"25585":2,"25586":3,"25587":4,"25588":4,"25589":1,"25590":4,"25591":4,"25592":1,"25593":2,"25594":3,"25595":4,"25596":2,"25597":2,"25598":1,"25599":3,"25600":4,"25601":2,"25602":4,"25603":4,"25604":3,"25605":1,"25606":4,"25607":4,"25608":3,"25609":5,"25610":1,"25611":3,"25612":2,"25613":5,"25614":3,"25615":3,"25616":2,"25617":4,"25618":3,"25619":1,"25620":3,"25621":1,"25622":3,"25623":4,"25624":3,"25625":3,"25626":2,"25627":2,"25628":2,"25629":4,"25630":4,"25631":2,"25632":3,"25633":5,"25634":2,"25635":3,"25636":2,"25637":3,"25638":3,"25639":3,"25640":1,"25641":3,"25642":4,"25643":3,"25644":1,"25645":3,"25646":3,"25647":3,"25648":2,"25649":4,"25650":2,"25651":5,"25652":5,"25653":2,"25654":1,"25655":5,"25656":4,"25657":5,"25658":2,"25659":4,"25660":3,"25661":4,"25662":2,"25663":2,"25664":3,"25665":5,"25666":3,"25667":4,"25668":2,"25669":4,"25670":3,"25671":4,"25672":1,"25673":1,"25674":4,"25675":4,"25676":5,"25677":4,"25678":3,"25679":4,"25680":2,"25681":4,"25682":3,"25683":3,"25684":2,"25685":2,"25686":4,"25687":3,"25688":3,"25689":3,"25690":1,"25691":3,"25692":3,"25693":4,"25694":4,"25695":4,"25696":5,"25697":4,"25698":4,"25699":3,"25700":1,"25701":4,"25702":2,"25703":3,"25704":4,"25705":2,"25706":3,"25707":1,"25708":3,"25709":3,"25710":4,"25711":3,"25712":2,"25713":3,"25714":2,"25715":3,"25716":1,"25717":3,"25718":2,"25719":3,"25720":1,"25721":3,"25722":3,"25723":3,"25724":2,"25725":3,"25726":3,"25727":3,"25728":3,"25729":2,"25730":1,"25731":3,"25732":4,"25733":5,"25734":3,"25735":5,"25736":3,"25737":3,"25738":2,"25739":3,"25740":2,"25741":4,"25742":4,"25743":4,"25744":4,"25745":1,"25746":4,"25747":1,"25748":2,"25749":4,"25750":3,"25751":3,"25752":2,"25753":3,"25754":3,"25755":4,"25756":3,"25757":2,"25758":2,"25759":2,"25760":3,"25761":2,"25762":4,"25763":2,"25764":2,"25765":3,"25766":2,"25767":4,"25768":2,"25769":4,"25770":4,"25771":4,"25772":2,"25773":1,"25774":2,"25775":3,"25776":2,"25777":5,"25778":3,"25779":3,"25780":2,"25781":4,"25782":3,"25783":4,"25784":2,"25785":3,"25786":1,"25787":4,"25788":4,"25789":3,"25790":2,"25791":3,"25792":3,"25793":3,"25794":4,"25795":3,"25796":1,"25797":5,"25798":1,"25799":2,"25800":2,"25801":2,"25802":4,"25803":2,"25804":3,"25805":4,"25806":3,"25807":3,"25808":2,"25809":4,"25810":4,"25811":3,"25812":3,"25813":4,"25814":3,"25815":4,"25816":2,"25817":3,"25818":3,"25819":2,"25820":3,"25821":2,"25822":5,"25823":1,"25824":3,"25825":4,"25826":4,"25827":5,"25828":4,"25829":4,"25830":3,"25831":3,"25832":4,"25833":4,"25834":5,"25835":3,"25836":4,"25837":4,"25838":4,"25839":4,"25840":4,"25841":3,"25842":3,"25843":3,"25844":1,"25845":3,"25846":3,"25847":5,"25848":4,"25849":1,"25850":3,"25851":3,"25852":4,"25853":3,"25854":4,"25855":2,"25856":4,"25857":3,"25858":2,"25859":5,"25860":2,"25861":4,"25862":3,"25863":4,"25864":1,"25865":4,"25866":3,"25867":4,"25868":3,"25869":4,"25870":2,"25871":4,"25872":4,"25873":3,"25874":4,"25875":3,"25876":3,"25877":2,"25878":4,"25879":3,"25880":2,"25881":3,"25882":3,"25883":3,"25884":1,"25885":5,"25886":2,"25887":4,"25888":3,"25889":3,"25890":3,"25891":3,"25892":3,"25893":4,"25894":2,"25895":4,"25896":4,"25897":3,"25898":3,"25899":2,"25900":2,"25901":5,"25902":1,"25903":2,"25904":4,"25905":3,"25906":5,"25907":3,"25908":3,"25909":1,"25910":2,"25911":3,"25912":3,"25913":5,"25914":3,"25915":3,"25916":3,"25917":4,"25918":3,"25919":3,"25920":3,"25921":2,"25922":5,"25923":3,"25924":3,"25925":4,"25926":2,"25927":4,"25928":4,"25929":3,"25930":3,"25931":4,"25932":3,"25933":3,"25934":4,"25935":2,"25936":3,"25937":2,"25938":2,"25939":3,"25940":3,"25941":2,"25942":2,"25943":1,"25944":1,"25945":2,"25946":3,"25947":3,"25948":2,"25949":3,"25950":5,"25951":4,"25952":3,"25953":3,"25954":4,"25955":3,"25956":3,"25957":2,"25958":3,"25959":4,"25960":1,"25961":4,"25962":1,"25963":3,"25964":3,"25965":2,"25966":3,"25967":3,"25968":5,"25969":3,"25970":2,"25971":3,"25972":3,"25973":3,"25974":2,"25975":1,"25976":5,"25977":3,"25978":5,"25979":3,"25980":1,"25981":3,"25982":3,"25983":1,"25984":4,"25985":2,"25986":1,"25987":4,"25988":3,"25989":2,"25990":3,"25991":2,"25992":4,"25993":1,"25994":3,"25995":3,"25996":3,"25997":3,"25998":2,"25999":3,"26000":4,"26001":5,"26002":2,"26003":4,"26004":4,"26005":4,"26006":4,"26007":3,"26008":4,"26009":3,"26010":3,"26011":4,"26012":3,"26013":1,"26014":2,"26015":4,"26016":3,"26017":3,"26018":3,"26019":1,"26020":4,"26021":3,"26022":5,"26023":3,"26024":5,"26025":3,"26026":2,"26027":1,"26028":3,"26029":2,"26030":1,"26031":2,"26032":2,"26033":2,"26034":2,"26035":3,"26036":2,"26037":4,"26038":2,"26039":4,"26040":2,"26041":3,"26042":1,"26043":3,"26044":3,"26045":3,"26046":4,"26047":2,"26048":5,"26049":2,"26050":4,"26051":3,"26052":3,"26053":3,"26054":2,"26055":4,"26056":4,"26057":3,"26058":3,"26059":4,"26060":5,"26061":3,"26062":3,"26063":3,"26064":2,"26065":1,"26066":2,"26067":5,"26068":4,"26069":3,"26070":4,"26071":2,"26072":3,"26073":4,"26074":4,"26075":5,"26076":3,"26077":3,"26078":3,"26079":4,"26080":4,"26081":4,"26082":3,"26083":2,"26084":3,"26085":3,"26086":2,"26087":1,"26088":2,"26089":3,"26090":3,"26091":4,"26092":4,"26093":2,"26094":3,"26095":5,"26096":2,"26097":1,"26098":5,"26099":3,"26100":3,"26101":4,"26102":3,"26103":4,"26104":3,"26105":4,"26106":3,"26107":2,"26108":4,"26109":2,"26110":4,"26111":5,"26112":3,"26113":4,"26114":1,"26115":2,"26116":2,"26117":3,"26118":1,"26119":4,"26120":3,"26121":2,"26122":3,"26123":4,"26124":2,"26125":2,"26126":2,"26127":3,"26128":1,"26129":2,"26130":3,"26131":2,"26132":2,"26133":4,"26134":4,"26135":3,"26136":2,"26137":3,"26138":4,"26139":3,"26140":2,"26141":2,"26142":4,"26143":3,"26144":2,"26145":3,"26146":3,"26147":4,"26148":4,"26149":3,"26150":5,"26151":4,"26152":2,"26153":3,"26154":5,"26155":3,"26156":3,"26157":3,"26158":3,"26159":4,"26160":3,"26161":2,"26162":4,"26163":4,"26164":1,"26165":3,"26166":3,"26167":3,"26168":4,"26169":4,"26170":5,"26171":4,"26172":2,"26173":4,"26174":3,"26175":5,"26176":1,"26177":1,"26178":5,"26179":3,"26180":4,"26181":3,"26182":1,"26183":1,"26184":1,"26185":2,"26186":3,"26187":3,"26188":1,"26189":3,"26190":4,"26191":3,"26192":2,"26193":3,"26194":1,"26195":3,"26196":3,"26197":4,"26198":3,"26199":3,"26200":3,"26201":1,"26202":3,"26203":3,"26204":3,"26205":3,"26206":5,"26207":3,"26208":4,"26209":5,"26210":2,"26211":3,"26212":3,"26213":3,"26214":4,"26215":4,"26216":2,"26217":5,"26218":2,"26219":2,"26220":1,"26221":2,"26222":3,"26223":4,"26224":3,"26225":3,"26226":1,"26227":5,"26228":4,"26229":3,"26230":3,"26231":4,"26232":3,"26233":2,"26234":1,"26235":4,"26236":3,"26237":3,"26238":4,"26239":3,"26240":2,"26241":3,"26242":3,"26243":3,"26244":2,"26245":4,"26246":3,"26247":3,"26248":4,"26249":2,"26250":2,"26251":2,"26252":1,"26253":1,"26254":2,"26255":1,"26256":4,"26257":1,"26258":3,"26259":3,"26260":2,"26261":4,"26262":2,"26263":2,"26264":3,"26265":5,"26266":2,"26267":1,"26268":2,"26269":1,"26270":3,"26271":2,"26272":2,"26273":2,"26274":3,"26275":2,"26276":5,"26277":4,"26278":4,"26279":2,"26280":4,"26281":4,"26282":4,"26283":2,"26284":2,"26285":4,"26286":4,"26287":3,"26288":4,"26289":5,"26290":2,"26291":2,"26292":4,"26293":2,"26294":3,"26295":3,"26296":3,"26297":3,"26298":1,"26299":2,"26300":3,"26301":2,"26302":3,"26303":3,"26304":4,"26305":4,"26306":1,"26307":4,"26308":4,"26309":3,"26310":3,"26311":2,"26312":3,"26313":1,"26314":1,"26315":4,"26316":3,"26317":3,"26318":1,"26319":3,"26320":3,"26321":3,"26322":4,"26323":1,"26324":3,"26325":4,"26326":1,"26327":3,"26328":5,"26329":3,"26330":1,"26331":3,"26332":4,"26333":2,"26334":3,"26335":3,"26336":3,"26337":4,"26338":3,"26339":4,"26340":5,"26341":3,"26342":5,"26343":3,"26344":4,"26345":3,"26346":3,"26347":2,"26348":2,"26349":3,"26350":3,"26351":5,"26352":4,"26353":4,"26354":5,"26355":4,"26356":2,"26357":4,"26358":3,"26359":3,"26360":2,"26361":2,"26362":4,"26363":1,"26364":3,"26365":3,"26366":3,"26367":3,"26368":2,"26369":4,"26370":4,"26371":3,"26372":4,"26373":1,"26374":4,"26375":1,"26376":3,"26377":2,"26378":5,"26379":5,"26380":4,"26381":4,"26382":4,"26383":3,"26384":1,"26385":4,"26386":2,"26387":2,"26388":5,"26389":4,"26390":1,"26391":2,"26392":1,"26393":4,"26394":2,"26395":3,"26396":1,"26397":3,"26398":2,"26399":3,"26400":2,"26401":3,"26402":3,"26403":2,"26404":5,"26405":4,"26406":3,"26407":2,"26408":4,"26409":1,"26410":1,"26411":3,"26412":3,"26413":3,"26414":4,"26415":4,"26416":2,"26417":4,"26418":3,"26419":3,"26420":3,"26421":2,"26422":3,"26423":1,"26424":4,"26425":2,"26426":2,"26427":1,"26428":2,"26429":1,"26430":4,"26431":2,"26432":4,"26433":3,"26434":3,"26435":3,"26436":4,"26437":2,"26438":1,"26439":3,"26440":3,"26441":2,"26442":3,"26443":4,"26444":2,"26445":4,"26446":2,"26447":3,"26448":4,"26449":2,"26450":3,"26451":4,"26452":4,"26453":3,"26454":3,"26455":1,"26456":3,"26457":4,"26458":1,"26459":3,"26460":3,"26461":3,"26462":3,"26463":2,"26464":3,"26465":3,"26466":2,"26467":2,"26468":3,"26469":3,"26470":1,"26471":2,"26472":4,"26473":3,"26474":2,"26475":2,"26476":4,"26477":4,"26478":3,"26479":4,"26480":1,"26481":3,"26482":2,"26483":4,"26484":2,"26485":2,"26486":1,"26487":1,"26488":4,"26489":5,"26490":3,"26491":3,"26492":3,"26493":2,"26494":3,"26495":4,"26496":4,"26497":3,"26498":4,"26499":2,"26500":3,"26501":2,"26502":3,"26503":3,"26504":3,"26505":3,"26506":5,"26507":2,"26508":5,"26509":4,"26510":2,"26511":4,"26512":2,"26513":1,"26514":4,"26515":3,"26516":2,"26517":4,"26518":2,"26519":3,"26520":4,"26521":2,"26522":3,"26523":3,"26524":3,"26525":3,"26526":4,"26527":3,"26528":4,"26529":3,"26530":5,"26531":4,"26532":1,"26533":2,"26534":2,"26535":4,"26536":2,"26537":3,"26538":2,"26539":3,"26540":1,"26541":3,"26542":4,"26543":2,"26544":4,"26545":3,"26546":2,"26547":3,"26548":5,"26549":4,"26550":4,"26551":4,"26552":3,"26553":4,"26554":3,"26555":3,"26556":2,"26557":3,"26558":2,"26559":3,"26560":4,"26561":4,"26562":4,"26563":4,"26564":4,"26565":3,"26566":3,"26567":2,"26568":2,"26569":2,"26570":2,"26571":5,"26572":1,"26573":3,"26574":3,"26575":5,"26576":3,"26577":3,"26578":4,"26579":2,"26580":5,"26581":4,"26582":3,"26583":3,"26584":4,"26585":4,"26586":3,"26587":5,"26588":5,"26589":4,"26590":2,"26591":1,"26592":2,"26593":3,"26594":3,"26595":2,"26596":2,"26597":1,"26598":4,"26599":5,"26600":3,"26601":3,"26602":1,"26603":3,"26604":2,"26605":2,"26606":3,"26607":3,"26608":2,"26609":2,"26610":3,"26611":3,"26612":3,"26613":5,"26614":2,"26615":1,"26616":2,"26617":4,"26618":2,"26619":5,"26620":3,"26621":3,"26622":1,"26623":2,"26624":2,"26625":3,"26626":4,"26627":1,"26628":3,"26629":4,"26630":2,"26631":4,"26632":1,"26633":1,"26634":2,"26635":2,"26636":4,"26637":1,"26638":2,"26639":2,"26640":4,"26641":2,"26642":4,"26643":4,"26644":2,"26645":2,"26646":1,"26647":4,"26648":2,"26649":4,"26650":2,"26651":5,"26652":3,"26653":1,"26654":2,"26655":2,"26656":4,"26657":4,"26658":2,"26659":3,"26660":1,"26661":5,"26662":2,"26663":3,"26664":5,"26665":1,"26666":5,"26667":3,"26668":2,"26669":4,"26670":1,"26671":4,"26672":1,"26673":2,"26674":4,"26675":2,"26676":2,"26677":3,"26678":4,"26679":3,"26680":4,"26681":3,"26682":4,"26683":4,"26684":1,"26685":2,"26686":3,"26687":3,"26688":3,"26689":5,"26690":1,"26691":4,"26692":2,"26693":3,"26694":1,"26695":4,"26696":3,"26697":1,"26698":1,"26699":4,"26700":2,"26701":2,"26702":2,"26703":2,"26704":2,"26705":3,"26706":3,"26707":2,"26708":2,"26709":4,"26710":4,"26711":2,"26712":2,"26713":2,"26714":4,"26715":3,"26716":3,"26717":2,"26718":2,"26719":3,"26720":1,"26721":4,"26722":4,"26723":3,"26724":2,"26725":4,"26726":3,"26727":2,"26728":3,"26729":2,"26730":3,"26731":3,"26732":4,"26733":3,"26734":4,"26735":3,"26736":4,"26737":3,"26738":5,"26739":3,"26740":4,"26741":2,"26742":1,"26743":1,"26744":2,"26745":2,"26746":3,"26747":1,"26748":2,"26749":5,"26750":3,"26751":2,"26752":4,"26753":3,"26754":3,"26755":4,"26756":2,"26757":3,"26758":2,"26759":5,"26760":4,"26761":2,"26762":3,"26763":5,"26764":4,"26765":4,"26766":4,"26767":4,"26768":4,"26769":3,"26770":4,"26771":2,"26772":3,"26773":5,"26774":3,"26775":4,"26776":3,"26777":4,"26778":5,"26779":2,"26780":2,"26781":3,"26782":1,"26783":2,"26784":1,"26785":2,"26786":4,"26787":4,"26788":4,"26789":2,"26790":4,"26791":2,"26792":3,"26793":2,"26794":2,"26795":3,"26796":4,"26797":1,"26798":3,"26799":4,"26800":2,"26801":2,"26802":2,"26803":2,"26804":4,"26805":4,"26806":2,"26807":3,"26808":3,"26809":3,"26810":4,"26811":1,"26812":3,"26813":1,"26814":3,"26815":3,"26816":3,"26817":2,"26818":4,"26819":4,"26820":2,"26821":1,"26822":1,"26823":4,"26824":2,"26825":3,"26826":3,"26827":4,"26828":5,"26829":3,"26830":4,"26831":4,"26832":4,"26833":5,"26834":4,"26835":2,"26836":3,"26837":4,"26838":3,"26839":3,"26840":3,"26841":3,"26842":3,"26843":4,"26844":1,"26845":2,"26846":3,"26847":2,"26848":3,"26849":2,"26850":1,"26851":4,"26852":2,"26853":3,"26854":2,"26855":4,"26856":1,"26857":4,"26858":4,"26859":2,"26860":2,"26861":3,"26862":2,"26863":2,"26864":1,"26865":1,"26866":2,"26867":1,"26868":5,"26869":1,"26870":4,"26871":2,"26872":3,"26873":4,"26874":2,"26875":1,"26876":5,"26877":3,"26878":2,"26879":2,"26880":3,"26881":2,"26882":3,"26883":3,"26884":1,"26885":2,"26886":2,"26887":3,"26888":1,"26889":2,"26890":5,"26891":3,"26892":2,"26893":3,"26894":3,"26895":4,"26896":1,"26897":3,"26898":3,"26899":2,"26900":1,"26901":1,"26902":2,"26903":4,"26904":2,"26905":2,"26906":4,"26907":1,"26908":4,"26909":3,"26910":2,"26911":2,"26912":4,"26913":3,"26914":3,"26915":4,"26916":3,"26917":3,"26918":2,"26919":4,"26920":4,"26921":3,"26922":3,"26923":2,"26924":2,"26925":3,"26926":3,"26927":1,"26928":4,"26929":3,"26930":2,"26931":3,"26932":4,"26933":2,"26934":2,"26935":4,"26936":2,"26937":3,"26938":5,"26939":3,"26940":4,"26941":2,"26942":4,"26943":2,"26944":2,"26945":2,"26946":3,"26947":3,"26948":2,"26949":3,"26950":3,"26951":3,"26952":3,"26953":3,"26954":2,"26955":3,"26956":4,"26957":3,"26958":2,"26959":4,"26960":1,"26961":3,"26962":3,"26963":4,"26964":3,"26965":4,"26966":1,"26967":1,"26968":2,"26969":1,"26970":2,"26971":3,"26972":4,"26973":2,"26974":4,"26975":4,"26976":2,"26977":4,"26978":1,"26979":4,"26980":3,"26981":4,"26982":4,"26983":2,"26984":3,"26985":4,"26986":4,"26987":4,"26988":3,"26989":4,"26990":4,"26991":1,"26992":1,"26993":3,"26994":2,"26995":3,"26996":5,"26997":4,"26998":4,"26999":2,"27000":3,"27001":5,"27002":2,"27003":4,"27004":5,"27005":4,"27006":4,"27007":5,"27008":2,"27009":3,"27010":3,"27011":3,"27012":2,"27013":4,"27014":4,"27015":3,"27016":2,"27017":4,"27018":3,"27019":3,"27020":4,"27021":3,"27022":2,"27023":2,"27024":4,"27025":2,"27026":3,"27027":1,"27028":2,"27029":1,"27030":4,"27031":4,"27032":2,"27033":3,"27034":3,"27035":4,"27036":4,"27037":4,"27038":3,"27039":2,"27040":4,"27041":4,"27042":3,"27043":3,"27044":2,"27045":4,"27046":4,"27047":2,"27048":3,"27049":3,"27050":3,"27051":1,"27052":5,"27053":4,"27054":2,"27055":4,"27056":4,"27057":4,"27058":2,"27059":2,"27060":3,"27061":1,"27062":4,"27063":3,"27064":3,"27065":3,"27066":2,"27067":4,"27068":5,"27069":3,"27070":3,"27071":2,"27072":2,"27073":4,"27074":3,"27075":3,"27076":1,"27077":3,"27078":5,"27079":3,"27080":3,"27081":3,"27082":5,"27083":2,"27084":5,"27085":2,"27086":4,"27087":3,"27088":3,"27089":2,"27090":1,"27091":3,"27092":2,"27093":5,"27094":3,"27095":2,"27096":3,"27097":3,"27098":2,"27099":3,"27100":2,"27101":3,"27102":3,"27103":4,"27104":4,"27105":4,"27106":2,"27107":2,"27108":2,"27109":3,"27110":3,"27111":2,"27112":3,"27113":3,"27114":3,"27115":1,"27116":3,"27117":4,"27118":1,"27119":4,"27120":2,"27121":4,"27122":3,"27123":3,"27124":4,"27125":2,"27126":3,"27127":3,"27128":3,"27129":4,"27130":3,"27131":2,"27132":3,"27133":3,"27134":3,"27135":4,"27136":3,"27137":2,"27138":2,"27139":4,"27140":3,"27141":3,"27142":2,"27143":2,"27144":5,"27145":1,"27146":4,"27147":2,"27148":4,"27149":3,"27150":2,"27151":3,"27152":5,"27153":2,"27154":2,"27155":5,"27156":2,"27157":2,"27158":3,"27159":3,"27160":5,"27161":3,"27162":3,"27163":4,"27164":2,"27165":2,"27166":4,"27167":3,"27168":2,"27169":1,"27170":2,"27171":4,"27172":4,"27173":1,"27174":4,"27175":4,"27176":5,"27177":4,"27178":2,"27179":3,"27180":2,"27181":2,"27182":3,"27183":3,"27184":2,"27185":4,"27186":2,"27187":2,"27188":3,"27189":2,"27190":4,"27191":4,"27192":3,"27193":4,"27194":1,"27195":3,"27196":1,"27197":3,"27198":4,"27199":2,"27200":2,"27201":4,"27202":2,"27203":3,"27204":1,"27205":2,"27206":4,"27207":4,"27208":3,"27209":4,"27210":3,"27211":3,"27212":5,"27213":4,"27214":3,"27215":4,"27216":4,"27217":2,"27218":4,"27219":3,"27220":4,"27221":4,"27222":4,"27223":3,"27224":2,"27225":2,"27226":2,"27227":2,"27228":3,"27229":3,"27230":2,"27231":4,"27232":4,"27233":3,"27234":3,"27235":2,"27236":2,"27237":2,"27238":3,"27239":3,"27240":3,"27241":4,"27242":2,"27243":4,"27244":3,"27245":1,"27246":1,"27247":2,"27248":3,"27249":5,"27250":2,"27251":3,"27252":4,"27253":4,"27254":5,"27255":4,"27256":2,"27257":2,"27258":4,"27259":1,"27260":5,"27261":4,"27262":2,"27263":1,"27264":3,"27265":2,"27266":3,"27267":3,"27268":1,"27269":1,"27270":5,"27271":3,"27272":3,"27273":2,"27274":1,"27275":3,"27276":4,"27277":3,"27278":4,"27279":3,"27280":2,"27281":3,"27282":2,"27283":2,"27284":3,"27285":4,"27286":2,"27287":3,"27288":3,"27289":5,"27290":2,"27291":2,"27292":3,"27293":3,"27294":2,"27295":3,"27296":3,"27297":3,"27298":3,"27299":2,"27300":3,"27301":3,"27302":2,"27303":3,"27304":1,"27305":4,"27306":4,"27307":1,"27308":3,"27309":2,"27310":2,"27311":4,"27312":3,"27313":4,"27314":4,"27315":5,"27316":5,"27317":2,"27318":3,"27319":2,"27320":4,"27321":3,"27322":5,"27323":3,"27324":3,"27325":1,"27326":4,"27327":3,"27328":3,"27329":4,"27330":3,"27331":1,"27332":4,"27333":1,"27334":3,"27335":1,"27336":4,"27337":3,"27338":3,"27339":1,"27340":3,"27341":2,"27342":4,"27343":3,"27344":5,"27345":3,"27346":3,"27347":3,"27348":5,"27349":1,"27350":3,"27351":2,"27352":1,"27353":4,"27354":2,"27355":4,"27356":1,"27357":1,"27358":3,"27359":3,"27360":1,"27361":1,"27362":4,"27363":2,"27364":4,"27365":4,"27366":4,"27367":3,"27368":5,"27369":4,"27370":4,"27371":3,"27372":2,"27373":3,"27374":3,"27375":5,"27376":5,"27377":3,"27378":2,"27379":2,"27380":2,"27381":3,"27382":3,"27383":2,"27384":2,"27385":3,"27386":3,"27387":2,"27388":4,"27389":2,"27390":1,"27391":3,"27392":2,"27393":3,"27394":2,"27395":5,"27396":3,"27397":1,"27398":2,"27399":2,"27400":4,"27401":3,"27402":4,"27403":5,"27404":4,"27405":4,"27406":3,"27407":3,"27408":4,"27409":3,"27410":3,"27411":3,"27412":2,"27413":3,"27414":2,"27415":4,"27416":4,"27417":4,"27418":5,"27419":3,"27420":4,"27421":4,"27422":3,"27423":3,"27424":2,"27425":1,"27426":2,"27427":3,"27428":3,"27429":3,"27430":3,"27431":2,"27432":5,"27433":4,"27434":2,"27435":3,"27436":4,"27437":3,"27438":2,"27439":3,"27440":3,"27441":3,"27442":5,"27443":4,"27444":2,"27445":5,"27446":3,"27447":3,"27448":2,"27449":3,"27450":3,"27451":3,"27452":2,"27453":3,"27454":3,"27455":3,"27456":3,"27457":3,"27458":2,"27459":2,"27460":3,"27461":4,"27462":2,"27463":4,"27464":4,"27465":4,"27466":2,"27467":4,"27468":1,"27469":4,"27470":3,"27471":5,"27472":1,"27473":1,"27474":3,"27475":3,"27476":3,"27477":2,"27478":2,"27479":3,"27480":2,"27481":4,"27482":2,"27483":4,"27484":4,"27485":5,"27486":3,"27487":4,"27488":3,"27489":1,"27490":4,"27491":4,"27492":4,"27493":5,"27494":4,"27495":4,"27496":4,"27497":1,"27498":3,"27499":3,"27500":1,"27501":1,"27502":3,"27503":5,"27504":5,"27505":2,"27506":4,"27507":3,"27508":3,"27509":3,"27510":2,"27511":4,"27512":3,"27513":4,"27514":5,"27515":4,"27516":2,"27517":5,"27518":2,"27519":1,"27520":3,"27521":4,"27522":4,"27523":3,"27524":4,"27525":3,"27526":2,"27527":3,"27528":1,"27529":3,"27530":4,"27531":1,"27532":2,"27533":1,"27534":4,"27535":3,"27536":3,"27537":4,"27538":2,"27539":4,"27540":3,"27541":1,"27542":3,"27543":3,"27544":3,"27545":5,"27546":2,"27547":2,"27548":2,"27549":4,"27550":3,"27551":3,"27552":4,"27553":1,"27554":3,"27555":3,"27556":4,"27557":3,"27558":2,"27559":2,"27560":4,"27561":5,"27562":1,"27563":3,"27564":1,"27565":3,"27566":3,"27567":5,"27568":1,"27569":3,"27570":2,"27571":3,"27572":2,"27573":2,"27574":5,"27575":2,"27576":3,"27577":4,"27578":2,"27579":4,"27580":1,"27581":3,"27582":4,"27583":1,"27584":2,"27585":3,"27586":3,"27587":3,"27588":2,"27589":3,"27590":2,"27591":1,"27592":2,"27593":4,"27594":4,"27595":4,"27596":5,"27597":4,"27598":1,"27599":3,"27600":3,"27601":4,"27602":3,"27603":4,"27604":4,"27605":4,"27606":3,"27607":3,"27608":2,"27609":4,"27610":1,"27611":1,"27612":3,"27613":4,"27614":3,"27615":3,"27616":3,"27617":2,"27618":4,"27619":2,"27620":3,"27621":4,"27622":4,"27623":2,"27624":5,"27625":2,"27626":1,"27627":3,"27628":3,"27629":1,"27630":2,"27631":3,"27632":5,"27633":3,"27634":4,"27635":2,"27636":3,"27637":4,"27638":2,"27639":5,"27640":4,"27641":5,"27642":3,"27643":1,"27644":2,"27645":3,"27646":2,"27647":5,"27648":1,"27649":3,"27650":4,"27651":3,"27652":2,"27653":4,"27654":5,"27655":1,"27656":3,"27657":2,"27658":2,"27659":2,"27660":3,"27661":1,"27662":3,"27663":3,"27664":3,"27665":1,"27666":4,"27667":1,"27668":2,"27669":2,"27670":4,"27671":3,"27672":4,"27673":4,"27674":3,"27675":4,"27676":3,"27677":3,"27678":2,"27679":1,"27680":3,"27681":4,"27682":2,"27683":3,"27684":2,"27685":2,"27686":3,"27687":4,"27688":1,"27689":4,"27690":2,"27691":4,"27692":4,"27693":3,"27694":3,"27695":3,"27696":2,"27697":2,"27698":4,"27699":2,"27700":3,"27701":4,"27702":5,"27703":3,"27704":4,"27705":4,"27706":3,"27707":2,"27708":2,"27709":4,"27710":3,"27711":2,"27712":1,"27713":4,"27714":4,"27715":5,"27716":4,"27717":1,"27718":3,"27719":3,"27720":1,"27721":4,"27722":1,"27723":2,"27724":3,"27725":4,"27726":3,"27727":3,"27728":5,"27729":4,"27730":1,"27731":1,"27732":4,"27733":4,"27734":4,"27735":3,"27736":3,"27737":2,"27738":4,"27739":2,"27740":4,"27741":4,"27742":4,"27743":5,"27744":3,"27745":3,"27746":3,"27747":1,"27748":4,"27749":4,"27750":3,"27751":3,"27752":2,"27753":2,"27754":3,"27755":2,"27756":2,"27757":2,"27758":1,"27759":2,"27760":5,"27761":4,"27762":4,"27763":4,"27764":1,"27765":4,"27766":1,"27767":3,"27768":3,"27769":3,"27770":5,"27771":1,"27772":3,"27773":3,"27774":4,"27775":4,"27776":2,"27777":2,"27778":4,"27779":3,"27780":1,"27781":2,"27782":2,"27783":4,"27784":4,"27785":1,"27786":4,"27787":4,"27788":4,"27789":3,"27790":3,"27791":4,"27792":4,"27793":5,"27794":2,"27795":2,"27796":5,"27797":4,"27798":4,"27799":2,"27800":4,"27801":2,"27802":3,"27803":4,"27804":3,"27805":3,"27806":2,"27807":2,"27808":4,"27809":3,"27810":2,"27811":5,"27812":2,"27813":2,"27814":4,"27815":2,"27816":2,"27817":2,"27818":3,"27819":3,"27820":2,"27821":1,"27822":5,"27823":4,"27824":3,"27825":2,"27826":3,"27827":4,"27828":4,"27829":2,"27830":2,"27831":4,"27832":4,"27833":2,"27834":2,"27835":5,"27836":1,"27837":2,"27838":1,"27839":2,"27840":3,"27841":3,"27842":3,"27843":3,"27844":2,"27845":4,"27846":3,"27847":2,"27848":4,"27849":2,"27850":1,"27851":1,"27852":2,"27853":2,"27854":2,"27855":4,"27856":5,"27857":4,"27858":3,"27859":3,"27860":2,"27861":3,"27862":4,"27863":5,"27864":3,"27865":5,"27866":3,"27867":3,"27868":3,"27869":4,"27870":3,"27871":3,"27872":2,"27873":2,"27874":2,"27875":3,"27876":4,"27877":1,"27878":2,"27879":4,"27880":2,"27881":3,"27882":2,"27883":3,"27884":3,"27885":4,"27886":2,"27887":1,"27888":4,"27889":1,"27890":4,"27891":4,"27892":5,"27893":3,"27894":2,"27895":3,"27896":3,"27897":3,"27898":3,"27899":1,"27900":3,"27901":3,"27902":3,"27903":3,"27904":4,"27905":3,"27906":3,"27907":5,"27908":3,"27909":3,"27910":3,"27911":3,"27912":1,"27913":3,"27914":3,"27915":2,"27916":3,"27917":4,"27918":4,"27919":1,"27920":2,"27921":4,"27922":3,"27923":3,"27924":4,"27925":4,"27926":5,"27927":3,"27928":5,"27929":1,"27930":2,"27931":4,"27932":3,"27933":1,"27934":4,"27935":2,"27936":3,"27937":4,"27938":4,"27939":4,"27940":2,"27941":2,"27942":3,"27943":3,"27944":2,"27945":3,"27946":1,"27947":5,"27948":4,"27949":3,"27950":2,"27951":2,"27952":1,"27953":3,"27954":3,"27955":2,"27956":2,"27957":1,"27958":3,"27959":2,"27960":3,"27961":2,"27962":3,"27963":3,"27964":3,"27965":3,"27966":2,"27967":2,"27968":1,"27969":3,"27970":3,"27971":4,"27972":2,"27973":4,"27974":3,"27975":4,"27976":4,"27977":3,"27978":3,"27979":3,"27980":3,"27981":3,"27982":4,"27983":4,"27984":3,"27985":2,"27986":3,"27987":3,"27988":3,"27989":1,"27990":2,"27991":2,"27992":3,"27993":2,"27994":2,"27995":3,"27996":3,"27997":1,"27998":1,"27999":3,"28000":4,"28001":3,"28002":3,"28003":3,"28004":2,"28005":1,"28006":3,"28007":3,"28008":4,"28009":4,"28010":2,"28011":3,"28012":3,"28013":4,"28014":3,"28015":2,"28016":4,"28017":1,"28018":3,"28019":4,"28020":3,"28021":3,"28022":2,"28023":3,"28024":2,"28025":3,"28026":4,"28027":4,"28028":4,"28029":5,"28030":5,"28031":1,"28032":3,"28033":3,"28034":3,"28035":3,"28036":4,"28037":4,"28038":5,"28039":2,"28040":3,"28041":3,"28042":2,"28043":3,"28044":4,"28045":2,"28046":1,"28047":4,"28048":5,"28049":2,"28050":3,"28051":2,"28052":3,"28053":3,"28054":5,"28055":4,"28056":3,"28057":2,"28058":3,"28059":3,"28060":5,"28061":3,"28062":1,"28063":3,"28064":2,"28065":3,"28066":3,"28067":1,"28068":4,"28069":4,"28070":2,"28071":5,"28072":2,"28073":3,"28074":3,"28075":3,"28076":4,"28077":3,"28078":4,"28079":2,"28080":5,"28081":4,"28082":2,"28083":2,"28084":4,"28085":4,"28086":4,"28087":4,"28088":1,"28089":3,"28090":3,"28091":1,"28092":4,"28093":3,"28094":2,"28095":2,"28096":2,"28097":5,"28098":4,"28099":3,"28100":3,"28101":3,"28102":2,"28103":3,"28104":5,"28105":1,"28106":2,"28107":4,"28108":2,"28109":2,"28110":2,"28111":3,"28112":4,"28113":2,"28114":3,"28115":2,"28116":4,"28117":4,"28118":3,"28119":3,"28120":2,"28121":2,"28122":3,"28123":3,"28124":4,"28125":4,"28126":4,"28127":1,"28128":3,"28129":3,"28130":1,"28131":1,"28132":3,"28133":2,"28134":1,"28135":3,"28136":2,"28137":2,"28138":2,"28139":1,"28140":3,"28141":2,"28142":2,"28143":2,"28144":3,"28145":3,"28146":2,"28147":2,"28148":3,"28149":3,"28150":4,"28151":4,"28152":2,"28153":2,"28154":3,"28155":3,"28156":3,"28157":3,"28158":4,"28159":2,"28160":3,"28161":3,"28162":3,"28163":4,"28164":3,"28165":4,"28166":1,"28167":2,"28168":3,"28169":2,"28170":3,"28171":1,"28172":4,"28173":3,"28174":5,"28175":1,"28176":1,"28177":2,"28178":4,"28179":4,"28180":4,"28181":4,"28182":3,"28183":3,"28184":3,"28185":3,"28186":3,"28187":4,"28188":5,"28189":4,"28190":4,"28191":2,"28192":4,"28193":3,"28194":4,"28195":2,"28196":3,"28197":5,"28198":4,"28199":3,"28200":4,"28201":3,"28202":2,"28203":2,"28204":2,"28205":3,"28206":4,"28207":5,"28208":3,"28209":1,"28210":5,"28211":2,"28212":3,"28213":4,"28214":2,"28215":3,"28216":4,"28217":2,"28218":2,"28219":4,"28220":3,"28221":2,"28222":1,"28223":3,"28224":3,"28225":4,"28226":2,"28227":2,"28228":2,"28229":2,"28230":1,"28231":3,"28232":5,"28233":5,"28234":3,"28235":1,"28236":1,"28237":2,"28238":2,"28239":3,"28240":2,"28241":3,"28242":3,"28243":1,"28244":2,"28245":2,"28246":3,"28247":4,"28248":2,"28249":2,"28250":3,"28251":4,"28252":3,"28253":5,"28254":5,"28255":4,"28256":3,"28257":1,"28258":2,"28259":2,"28260":2,"28261":3,"28262":2,"28263":3,"28264":3,"28265":5,"28266":2,"28267":3,"28268":4,"28269":4,"28270":4,"28271":3,"28272":3,"28273":3,"28274":5,"28275":4,"28276":4,"28277":1,"28278":2,"28279":4,"28280":4,"28281":3,"28282":4,"28283":3,"28284":5,"28285":3,"28286":1,"28287":1,"28288":4,"28289":3,"28290":4,"28291":3,"28292":4,"28293":2,"28294":1,"28295":3,"28296":4,"28297":2,"28298":3,"28299":3,"28300":3,"28301":2,"28302":2,"28303":2,"28304":4,"28305":2,"28306":4,"28307":3,"28308":3,"28309":3,"28310":2,"28311":3,"28312":4,"28313":4,"28314":2,"28315":3,"28316":3,"28317":1,"28318":4,"28319":4,"28320":2,"28321":2,"28322":3,"28323":2,"28324":2,"28325":3,"28326":1,"28327":4,"28328":4,"28329":3,"28330":4,"28331":3,"28332":5,"28333":3,"28334":3,"28335":1,"28336":3,"28337":3,"28338":1,"28339":4,"28340":5,"28341":4,"28342":2,"28343":4,"28344":2,"28345":4,"28346":4,"28347":4,"28348":5,"28349":2,"28350":2,"28351":3,"28352":2,"28353":3,"28354":2,"28355":2,"28356":4,"28357":3,"28358":3,"28359":4,"28360":2,"28361":2,"28362":4,"28363":1,"28364":2,"28365":2,"28366":2,"28367":4,"28368":4,"28369":5,"28370":2,"28371":2,"28372":2,"28373":2,"28374":2,"28375":4,"28376":2,"28377":5,"28378":4,"28379":3,"28380":4,"28381":4,"28382":1,"28383":2,"28384":2,"28385":2,"28386":4,"28387":4,"28388":3,"28389":4,"28390":3,"28391":2,"28392":3,"28393":3,"28394":4,"28395":2,"28396":4,"28397":2,"28398":5,"28399":4,"28400":3,"28401":4,"28402":3,"28403":1,"28404":3,"28405":4,"28406":1,"28407":3,"28408":5,"28409":3,"28410":3,"28411":1,"28412":3,"28413":3,"28414":3,"28415":4,"28416":3,"28417":3,"28418":1,"28419":3,"28420":3,"28421":4,"28422":1,"28423":2,"28424":3,"28425":4,"28426":1,"28427":3,"28428":1,"28429":5,"28430":3,"28431":2,"28432":4,"28433":1,"28434":3,"28435":4,"28436":2,"28437":4,"28438":5,"28439":3,"28440":4,"28441":1,"28442":2,"28443":4,"28444":5,"28445":3,"28446":1,"28447":3,"28448":2,"28449":3,"28450":3,"28451":2,"28452":3,"28453":4,"28454":4,"28455":1,"28456":4,"28457":3,"28458":3,"28459":4,"28460":2,"28461":2,"28462":1,"28463":2,"28464":4,"28465":5,"28466":2,"28467":2,"28468":3,"28469":3,"28470":3,"28471":4,"28472":3,"28473":3,"28474":4,"28475":5,"28476":4,"28477":1,"28478":3,"28479":3,"28480":3,"28481":3,"28482":2,"28483":3,"28484":2,"28485":5,"28486":2,"28487":3,"28488":5,"28489":4,"28490":1,"28491":5,"28492":3,"28493":3,"28494":3,"28495":3,"28496":2,"28497":4,"28498":3,"28499":2,"28500":3,"28501":2,"28502":4,"28503":2,"28504":1,"28505":4,"28506":2,"28507":1,"28508":2,"28509":4,"28510":2,"28511":2,"28512":4,"28513":2,"28514":4,"28515":2,"28516":3,"28517":2,"28518":2,"28519":3,"28520":2,"28521":3,"28522":3,"28523":3,"28524":3,"28525":5,"28526":3,"28527":5,"28528":3,"28529":3,"28530":2,"28531":3,"28532":2,"28533":4,"28534":1,"28535":4,"28536":2,"28537":1,"28538":3,"28539":2,"28540":3,"28541":2,"28542":4,"28543":3,"28544":3,"28545":4,"28546":3,"28547":2,"28548":3,"28549":4,"28550":3,"28551":2,"28552":4,"28553":3,"28554":3,"28555":3,"28556":4,"28557":2,"28558":3,"28559":4,"28560":5,"28561":3,"28562":3,"28563":4,"28564":1,"28565":3,"28566":4,"28567":3,"28568":4,"28569":1,"28570":5,"28571":4,"28572":4,"28573":4,"28574":2,"28575":3,"28576":3,"28577":3,"28578":3,"28579":2,"28580":2,"28581":4,"28582":3,"28583":4,"28584":2,"28585":4,"28586":5,"28587":4,"28588":3,"28589":1,"28590":4,"28591":4,"28592":5,"28593":3,"28594":4,"28595":2,"28596":1,"28597":2,"28598":2,"28599":2,"28600":3,"28601":4,"28602":4,"28603":2,"28604":4,"28605":3,"28606":3,"28607":3,"28608":4,"28609":3,"28610":3,"28611":2,"28612":4,"28613":2,"28614":5,"28615":4,"28616":4,"28617":3,"28618":5,"28619":1,"28620":4,"28621":3,"28622":3,"28623":3,"28624":4,"28625":2,"28626":1,"28627":2,"28628":2,"28629":3,"28630":2,"28631":3,"28632":2,"28633":3,"28634":2,"28635":2,"28636":3,"28637":4,"28638":2,"28639":4,"28640":3,"28641":2,"28642":4,"28643":4,"28644":3,"28645":2,"28646":4,"28647":2,"28648":1,"28649":3,"28650":3,"28651":2,"28652":4,"28653":3,"28654":3,"28655":2,"28656":3,"28657":4,"28658":4,"28659":3,"28660":3,"28661":5,"28662":1,"28663":3,"28664":3,"28665":3,"28666":2,"28667":1,"28668":4,"28669":4,"28670":4,"28671":4,"28672":4,"28673":4,"28674":4,"28675":3,"28676":4,"28677":4,"28678":2,"28679":3,"28680":3,"28681":1,"28682":3,"28683":2,"28684":1,"28685":4,"28686":4,"28687":1,"28688":3,"28689":3,"28690":2,"28691":1,"28692":3,"28693":4,"28694":4,"28695":3,"28696":4,"28697":3,"28698":3,"28699":3,"28700":4,"28701":5,"28702":4,"28703":3,"28704":4,"28705":4,"28706":3,"28707":3,"28708":3,"28709":3,"28710":4,"28711":3,"28712":3,"28713":4,"28714":4,"28715":4,"28716":4,"28717":2,"28718":2,"28719":5,"28720":2,"28721":3,"28722":5,"28723":2,"28724":3,"28725":3,"28726":3,"28727":3,"28728":3,"28729":4,"28730":4,"28731":4,"28732":3,"28733":3,"28734":2,"28735":3,"28736":3,"28737":2,"28738":3,"28739":4,"28740":4,"28741":3,"28742":5,"28743":4,"28744":3,"28745":2,"28746":2,"28747":5,"28748":2,"28749":4,"28750":3,"28751":2,"28752":3,"28753":4,"28754":2,"28755":2,"28756":5,"28757":4,"28758":2,"28759":2,"28760":2,"28761":4,"28762":3,"28763":3,"28764":3,"28765":3,"28766":3,"28767":3,"28768":1,"28769":4,"28770":1,"28771":4,"28772":4,"28773":3,"28774":4,"28775":5,"28776":3,"28777":3,"28778":5,"28779":2,"28780":3,"28781":3,"28782":3,"28783":4,"28784":4,"28785":2,"28786":3,"28787":4,"28788":2,"28789":3,"28790":4,"28791":3,"28792":3,"28793":3,"28794":2,"28795":3,"28796":3,"28797":1,"28798":3,"28799":3,"28800":3,"28801":2,"28802":2,"28803":2,"28804":3,"28805":2,"28806":3,"28807":4,"28808":3,"28809":5,"28810":3,"28811":3,"28812":4,"28813":2,"28814":4,"28815":2,"28816":3,"28817":3,"28818":2,"28819":4,"28820":4,"28821":2,"28822":3,"28823":1,"28824":3,"28825":3,"28826":3,"28827":4,"28828":5,"28829":2,"28830":1,"28831":5,"28832":3,"28833":4,"28834":5,"28835":1,"28836":3,"28837":3,"28838":3,"28839":3,"28840":1,"28841":3,"28842":2,"28843":2,"28844":3,"28845":3,"28846":4,"28847":3,"28848":3,"28849":3,"28850":4,"28851":3,"28852":4,"28853":3,"28854":4,"28855":3,"28856":5,"28857":4,"28858":4,"28859":3,"28860":5,"28861":2,"28862":3,"28863":2,"28864":2,"28865":1,"28866":5,"28867":4,"28868":2,"28869":3,"28870":4,"28871":2,"28872":5,"28873":1,"28874":4,"28875":3,"28876":3,"28877":3,"28878":3,"28879":3,"28880":1,"28881":1,"28882":4,"28883":3,"28884":2,"28885":2,"28886":2,"28887":4,"28888":2,"28889":4,"28890":4,"28891":4,"28892":3,"28893":3,"28894":4,"28895":4,"28896":3,"28897":5,"28898":4,"28899":3,"28900":3,"28901":5,"28902":2,"28903":4,"28904":4,"28905":2,"28906":2,"28907":4,"28908":2,"28909":1,"28910":3,"28911":4,"28912":2,"28913":3,"28914":4,"28915":3,"28916":3,"28917":1,"28918":5,"28919":2,"28920":1,"28921":3,"28922":4,"28923":3,"28924":4,"28925":1,"28926":3,"28927":3,"28928":1,"28929":3,"28930":4,"28931":4,"28932":4,"28933":2,"28934":2,"28935":3,"28936":3,"28937":3,"28938":3,"28939":3,"28940":4,"28941":3,"28942":3,"28943":3,"28944":2,"28945":5,"28946":2,"28947":2,"28948":4,"28949":2,"28950":3,"28951":3,"28952":2,"28953":3,"28954":5,"28955":4,"28956":2,"28957":2,"28958":1,"28959":4,"28960":4,"28961":3,"28962":3,"28963":3,"28964":3,"28965":1,"28966":5,"28967":3,"28968":1,"28969":1,"28970":2,"28971":4,"28972":3,"28973":3,"28974":3,"28975":2,"28976":4,"28977":4,"28978":1,"28979":4,"28980":2,"28981":2,"28982":5,"28983":3,"28984":3,"28985":4,"28986":2,"28987":5,"28988":2,"28989":1,"28990":4,"28991":3,"28992":4,"28993":3,"28994":2,"28995":4,"28996":2,"28997":5,"28998":3,"28999":3,"29000":4,"29001":4,"29002":4,"29003":1,"29004":4,"29005":5,"29006":3,"29007":3,"29008":1,"29009":3,"29010":4,"29011":2,"29012":3,"29013":3,"29014":2,"29015":3,"29016":2,"29017":5,"29018":2,"29019":4,"29020":4,"29021":2,"29022":2,"29023":3,"29024":4,"29025":5,"29026":4,"29027":3,"29028":4,"29029":4,"29030":3,"29031":4,"29032":2,"29033":2,"29034":3,"29035":5,"29036":4,"29037":5,"29038":4,"29039":4,"29040":2,"29041":3,"29042":2,"29043":5,"29044":3,"29045":5,"29046":4,"29047":1,"29048":1,"29049":5,"29050":3,"29051":3,"29052":2,"29053":1,"29054":3,"29055":2,"29056":2,"29057":3,"29058":4,"29059":2,"29060":4,"29061":3,"29062":1,"29063":3,"29064":5,"29065":3,"29066":1,"29067":3,"29068":5,"29069":4,"29070":4,"29071":2,"29072":3,"29073":2,"29074":3,"29075":4,"29076":1,"29077":3,"29078":1,"29079":2,"29080":4,"29081":4,"29082":4,"29083":4,"29084":2,"29085":2,"29086":5,"29087":3,"29088":5,"29089":2,"29090":2,"29091":3,"29092":1,"29093":4,"29094":2,"29095":2,"29096":3,"29097":3,"29098":3,"29099":2,"29100":1,"29101":3,"29102":2,"29103":2,"29104":4,"29105":3,"29106":3,"29107":4,"29108":2,"29109":2,"29110":4,"29111":2,"29112":2,"29113":3,"29114":1,"29115":4,"29116":3,"29117":3,"29118":5,"29119":5,"29120":2,"29121":5,"29122":3,"29123":2,"29124":2,"29125":4,"29126":3,"29127":4,"29128":1,"29129":3,"29130":5,"29131":3,"29132":4,"29133":1,"29134":2,"29135":4,"29136":2,"29137":1,"29138":4,"29139":3,"29140":3,"29141":2,"29142":3,"29143":3,"29144":4,"29145":4,"29146":3,"29147":3,"29148":2,"29149":2,"29150":5,"29151":2,"29152":2,"29153":3,"29154":2,"29155":1,"29156":4,"29157":2,"29158":3,"29159":3,"29160":4,"29161":3,"29162":1,"29163":4,"29164":2,"29165":2,"29166":4,"29167":3,"29168":3,"29169":2,"29170":5,"29171":4,"29172":3,"29173":4,"29174":2,"29175":3,"29176":1,"29177":2,"29178":3,"29179":2,"29180":2,"29181":3,"29182":3,"29183":1,"29184":3,"29185":2,"29186":4,"29187":1,"29188":2,"29189":3,"29190":2,"29191":3,"29192":1,"29193":3,"29194":5,"29195":1,"29196":3,"29197":3,"29198":3,"29199":5,"29200":3,"29201":1,"29202":2,"29203":4,"29204":5,"29205":4,"29206":2,"29207":3,"29208":2,"29209":2,"29210":4,"29211":3,"29212":3,"29213":1,"29214":2,"29215":1,"29216":1,"29217":2,"29218":1,"29219":4,"29220":3,"29221":3,"29222":1,"29223":3,"29224":3,"29225":1,"29226":3,"29227":5,"29228":4,"29229":2,"29230":3,"29231":2,"29232":3,"29233":2,"29234":1,"29235":1,"29236":4,"29237":3,"29238":3,"29239":1,"29240":3,"29241":4,"29242":3,"29243":4,"29244":2,"29245":1,"29246":2,"29247":3,"29248":2,"29249":3,"29250":3,"29251":2,"29252":2,"29253":3,"29254":4,"29255":4,"29256":1,"29257":3,"29258":3,"29259":4,"29260":4,"29261":1,"29262":5,"29263":2,"29264":4,"29265":4,"29266":2,"29267":2,"29268":1,"29269":3,"29270":2,"29271":5,"29272":4,"29273":3,"29274":1,"29275":3,"29276":4,"29277":2,"29278":5,"29279":4,"29280":3,"29281":3,"29282":2,"29283":3,"29284":3,"29285":3,"29286":1,"29287":2,"29288":5,"29289":3,"29290":3,"29291":2,"29292":2,"29293":3,"29294":5,"29295":2,"29296":3,"29297":3,"29298":3,"29299":4,"29300":2,"29301":2,"29302":3,"29303":1,"29304":3,"29305":3,"29306":3,"29307":3,"29308":4,"29309":2,"29310":3,"29311":3,"29312":3,"29313":4,"29314":4,"29315":4,"29316":5,"29317":4,"29318":3,"29319":3,"29320":3,"29321":2,"29322":5,"29323":4,"29324":4,"29325":1,"29326":2,"29327":2,"29328":3,"29329":3,"29330":3,"29331":3,"29332":5,"29333":1,"29334":5,"29335":2,"29336":3,"29337":3,"29338":3,"29339":2,"29340":3,"29341":2,"29342":4,"29343":3,"29344":4,"29345":3,"29346":3,"29347":3,"29348":4,"29349":2,"29350":3,"29351":2,"29352":2,"29353":2,"29354":3,"29355":3,"29356":2,"29357":3,"29358":3,"29359":1,"29360":4,"29361":3,"29362":3,"29363":3,"29364":2,"29365":2,"29366":1,"29367":1,"29368":5,"29369":3,"29370":5,"29371":5,"29372":4,"29373":4,"29374":2,"29375":2,"29376":3,"29377":2,"29378":2,"29379":2,"29380":5,"29381":5,"29382":4,"29383":1,"29384":2,"29385":4,"29386":4,"29387":3,"29388":4,"29389":4,"29390":3,"29391":3,"29392":4,"29393":4,"29394":3,"29395":1,"29396":2,"29397":3,"29398":3,"29399":3,"29400":5,"29401":4,"29402":5,"29403":4,"29404":1,"29405":2,"29406":4,"29407":3,"29408":2,"29409":3,"29410":2,"29411":3,"29412":3,"29413":4,"29414":2,"29415":2,"29416":3,"29417":4,"29418":3,"29419":3,"29420":5,"29421":2,"29422":1,"29423":3,"29424":3,"29425":4,"29426":2,"29427":1,"29428":2,"29429":3,"29430":3,"29431":3,"29432":4,"29433":3,"29434":3,"29435":3,"29436":3,"29437":3,"29438":4,"29439":3,"29440":2,"29441":4,"29442":3,"29443":3,"29444":1,"29445":2,"29446":1,"29447":1,"29448":3,"29449":3,"29450":2,"29451":3,"29452":3,"29453":4,"29454":1,"29455":4,"29456":3,"29457":4,"29458":2,"29459":5,"29460":2,"29461":3,"29462":2,"29463":3,"29464":3,"29465":1,"29466":2,"29467":3,"29468":4,"29469":4,"29470":2,"29471":4,"29472":2,"29473":3,"29474":5,"29475":3,"29476":3,"29477":2,"29478":2,"29479":4,"29480":3,"29481":3,"29482":3,"29483":3,"29484":3,"29485":3,"29486":2,"29487":3,"29488":3,"29489":4,"29490":4,"29491":3,"29492":5,"29493":3,"29494":1,"29495":4,"29496":5,"29497":3,"29498":2,"29499":4,"29500":2,"29501":4,"29502":4,"29503":2,"29504":4,"29505":1,"29506":2,"29507":3,"29508":3,"29509":3,"29510":2,"29511":4,"29512":4,"29513":3,"29514":3,"29515":3,"29516":1,"29517":3,"29518":4,"29519":3,"29520":1,"29521":1,"29522":3,"29523":4,"29524":3,"29525":3,"29526":4,"29527":2,"29528":1,"29529":1,"29530":4,"29531":3,"29532":2,"29533":2,"29534":3,"29535":2,"29536":5,"29537":5,"29538":2,"29539":3,"29540":3,"29541":5,"29542":1,"29543":4,"29544":3,"29545":3,"29546":4,"29547":3,"29548":2,"29549":4,"29550":3,"29551":3,"29552":2,"29553":4,"29554":3,"29555":3,"29556":5,"29557":5,"29558":2,"29559":3,"29560":2,"29561":3,"29562":3,"29563":2,"29564":4,"29565":3,"29566":3,"29567":4,"29568":5,"29569":3,"29570":5,"29571":4,"29572":1,"29573":3,"29574":1,"29575":2,"29576":3,"29577":4,"29578":5,"29579":2,"29580":3,"29581":2,"29582":4,"29583":5,"29584":2,"29585":4,"29586":4,"29587":3,"29588":2,"29589":3,"29590":3,"29591":2,"29592":1,"29593":3,"29594":4,"29595":3,"29596":1,"29597":2,"29598":3,"29599":4,"29600":2,"29601":2,"29602":3,"29603":3,"29604":3,"29605":2,"29606":2,"29607":4,"29608":2,"29609":4,"29610":4,"29611":2,"29612":5,"29613":5,"29614":2,"29615":2,"29616":3,"29617":5,"29618":3,"29619":3,"29620":3,"29621":4,"29622":3,"29623":3,"29624":2,"29625":2,"29626":4,"29627":2,"29628":5,"29629":5,"29630":2,"29631":3,"29632":4,"29633":4,"29634":2,"29635":1,"29636":3,"29637":3,"29638":3,"29639":2,"29640":5,"29641":2,"29642":2,"29643":3,"29644":3,"29645":3,"29646":4,"29647":4,"29648":4,"29649":3,"29650":4,"29651":1,"29652":3,"29653":4,"29654":3,"29655":3,"29656":2,"29657":2,"29658":3,"29659":1,"29660":2,"29661":2,"29662":3,"29663":3,"29664":4,"29665":3,"29666":2,"29667":2,"29668":2,"29669":4,"29670":3,"29671":4,"29672":4,"29673":3,"29674":3,"29675":3,"29676":4,"29677":3,"29678":2,"29679":4,"29680":3,"29681":3,"29682":2,"29683":4,"29684":2,"29685":4,"29686":3,"29687":3,"29688":3,"29689":1,"29690":5,"29691":2,"29692":3,"29693":4,"29694":3,"29695":1,"29696":4,"29697":4,"29698":2,"29699":2,"29700":4,"29701":1,"29702":3,"29703":4,"29704":5,"29705":4,"29706":3,"29707":1,"29708":2,"29709":4,"29710":1,"29711":3,"29712":4,"29713":2,"29714":1,"29715":4,"29716":3,"29717":5,"29718":2,"29719":2,"29720":4,"29721":3,"29722":3,"29723":3,"29724":3,"29725":3,"29726":3,"29727":5,"29728":3,"29729":3,"29730":2,"29731":4,"29732":4,"29733":3,"29734":3,"29735":3,"29736":1,"29737":3,"29738":3,"29739":3,"29740":3,"29741":3,"29742":3,"29743":3,"29744":4,"29745":2,"29746":3,"29747":4,"29748":2,"29749":4,"29750":4,"29751":3,"29752":3,"29753":4,"29754":4,"29755":4,"29756":3,"29757":2,"29758":2,"29759":3,"29760":3,"29761":1,"29762":3,"29763":4,"29764":3,"29765":3,"29766":3,"29767":1,"29768":5,"29769":3,"29770":4,"29771":3,"29772":3,"29773":2,"29774":4,"29775":3,"29776":2,"29777":4,"29778":3,"29779":4,"29780":2,"29781":5,"29782":5,"29783":5,"29784":4,"29785":3,"29786":3,"29787":3,"29788":4,"29789":3,"29790":1,"29791":3,"29792":4,"29793":2,"29794":5,"29795":4,"29796":4,"29797":4,"29798":1,"29799":1,"29800":3,"29801":3,"29802":3,"29803":3,"29804":1,"29805":3,"29806":3,"29807":4,"29808":3,"29809":3,"29810":4,"29811":3,"29812":1,"29813":4,"29814":3,"29815":1,"29816":2,"29817":3,"29818":2,"29819":3,"29820":4,"29821":2,"29822":4,"29823":2,"29824":3,"29825":4,"29826":3,"29827":3,"29828":2,"29829":2,"29830":4,"29831":3,"29832":4,"29833":5,"29834":3,"29835":2,"29836":4,"29837":3,"29838":3,"29839":4,"29840":2,"29841":1,"29842":5,"29843":2,"29844":4,"29845":5,"29846":1,"29847":4,"29848":1,"29849":4,"29850":2,"29851":2,"29852":3,"29853":4,"29854":3,"29855":2,"29856":1,"29857":5,"29858":4,"29859":2,"29860":2,"29861":4,"29862":3,"29863":3,"29864":4,"29865":2,"29866":4,"29867":5,"29868":1,"29869":4,"29870":4,"29871":4,"29872":3,"29873":2,"29874":2,"29875":2,"29876":4,"29877":1,"29878":3,"29879":4,"29880":3,"29881":3,"29882":3,"29883":4,"29884":2,"29885":3,"29886":3,"29887":3,"29888":4,"29889":4,"29890":5,"29891":4,"29892":3,"29893":5,"29894":2,"29895":2,"29896":4,"29897":2,"29898":3,"29899":5,"29900":4,"29901":4,"29902":4,"29903":1,"29904":3,"29905":4,"29906":3,"29907":3,"29908":3,"29909":4,"29910":5,"29911":3,"29912":2,"29913":4,"29914":4,"29915":4,"29916":3,"29917":3,"29918":5,"29919":4,"29920":1,"29921":3,"29922":2,"29923":2,"29924":2,"29925":3,"29926":3,"29927":1,"29928":4,"29929":2,"29930":1,"29931":1,"29932":4,"29933":3,"29934":5,"29935":2,"29936":5,"29937":4,"29938":3,"29939":4,"29940":2,"29941":3,"29942":2,"29943":4,"29944":2,"29945":3,"29946":4,"29947":2,"29948":2,"29949":3,"29950":4,"29951":4,"29952":3,"29953":1,"29954":2,"29955":3,"29956":5,"29957":5,"29958":4,"29959":3,"29960":2,"29961":5,"29962":3,"29963":1,"29964":4,"29965":3,"29966":2,"29967":5,"29968":2,"29969":1,"29970":2,"29971":3,"29972":3,"29973":3,"29974":2,"29975":4,"29976":2,"29977":3,"29978":2,"29979":4,"29980":2,"29981":2,"29982":2,"29983":3,"29984":4,"29985":3,"29986":2,"29987":5,"29988":5,"29989":1,"29990":3,"29991":3,"29992":5,"29993":3,"29994":3,"29995":4,"29996":3,"29997":3,"29998":2,"29999":2,"30000":3,"30001":5,"30002":4,"30003":2,"30004":3,"30005":2,"30006":3,"30007":3,"30008":1,"30009":4,"30010":5,"30011":3,"30012":3,"30013":5,"30014":4,"30015":4,"30016":4,"30017":1,"30018":2,"30019":5,"30020":3,"30021":3,"30022":3,"30023":1,"30024":3,"30025":5,"30026":4,"30027":3,"30028":1,"30029":5,"30030":2,"30031":4,"30032":2,"30033":3,"30034":4,"30035":3,"30036":4,"30037":2,"30038":2,"30039":2,"30040":2,"30041":3,"30042":4,"30043":1,"30044":4,"30045":3,"30046":3,"30047":4,"30048":4,"30049":3,"30050":3,"30051":3,"30052":2,"30053":4,"30054":2,"30055":4,"30056":3,"30057":4,"30058":2,"30059":4,"30060":3,"30061":3,"30062":3,"30063":3,"30064":2,"30065":3,"30066":5,"30067":3,"30068":1,"30069":3,"30070":3,"30071":3,"30072":2,"30073":4,"30074":3,"30075":2,"30076":3,"30077":2,"30078":3,"30079":4,"30080":3,"30081":3,"30082":3,"30083":1,"30084":3,"30085":4,"30086":3,"30087":2,"30088":3,"30089":4,"30090":3,"30091":2,"30092":2,"30093":3,"30094":4,"30095":5,"30096":4,"30097":4,"30098":3,"30099":5,"30100":4,"30101":3,"30102":5,"30103":3,"30104":3,"30105":3,"30106":1,"30107":4,"30108":1,"30109":3,"30110":1,"30111":1,"30112":4,"30113":2,"30114":1,"30115":3,"30116":4,"30117":4,"30118":2,"30119":3,"30120":3,"30121":2,"30122":2,"30123":3,"30124":3,"30125":2,"30126":3,"30127":5,"30128":3,"30129":2,"30130":1,"30131":1,"30132":3,"30133":1,"30134":2,"30135":3,"30136":4,"30137":4,"30138":4,"30139":3,"30140":4,"30141":3,"30142":3,"30143":2,"30144":1,"30145":3,"30146":3,"30147":3,"30148":1,"30149":2,"30150":2,"30151":4,"30152":4,"30153":3,"30154":2,"30155":5,"30156":4,"30157":2,"30158":1,"30159":3,"30160":3,"30161":2,"30162":3,"30163":4,"30164":4,"30165":2,"30166":3,"30167":3,"30168":3,"30169":5,"30170":3,"30171":3,"30172":4,"30173":4,"30174":2,"30175":3,"30176":5,"30177":3,"30178":2,"30179":2,"30180":4,"30181":2,"30182":3,"30183":1,"30184":4,"30185":5,"30186":4,"30187":4,"30188":3,"30189":5,"30190":4,"30191":2,"30192":3,"30193":5,"30194":3,"30195":3,"30196":3,"30197":2,"30198":3,"30199":4,"30200":4,"30201":2,"30202":3,"30203":4,"30204":5,"30205":3,"30206":4,"30207":1,"30208":2,"30209":3,"30210":1,"30211":5,"30212":3,"30213":5,"30214":2,"30215":3,"30216":4,"30217":4,"30218":4,"30219":3,"30220":3,"30221":4,"30222":3,"30223":4,"30224":3,"30225":3,"30226":4,"30227":2,"30228":2,"30229":3,"30230":2,"30231":2,"30232":3,"30233":2,"30234":3,"30235":4,"30236":3,"30237":4,"30238":1,"30239":3,"30240":4,"30241":3,"30242":1,"30243":3,"30244":3,"30245":4,"30246":5,"30247":3,"30248":3,"30249":3,"30250":2,"30251":5,"30252":3,"30253":1,"30254":4,"30255":2,"30256":5,"30257":2,"30258":3,"30259":3,"30260":4,"30261":3,"30262":3,"30263":3,"30264":5,"30265":4,"30266":3,"30267":4,"30268":2,"30269":2,"30270":1,"30271":2,"30272":1,"30273":4,"30274":3,"30275":4,"30276":2,"30277":3,"30278":4,"30279":3,"30280":3,"30281":2,"30282":1,"30283":3,"30284":2,"30285":2,"30286":5,"30287":3,"30288":5,"30289":3,"30290":3,"30291":5,"30292":4,"30293":4,"30294":2,"30295":3,"30296":3,"30297":3,"30298":2,"30299":3,"30300":2,"30301":5,"30302":3,"30303":4,"30304":3,"30305":1,"30306":3,"30307":1,"30308":4,"30309":2,"30310":3,"30311":2,"30312":1,"30313":2,"30314":4,"30315":2,"30316":5,"30317":1,"30318":3,"30319":2,"30320":4,"30321":3,"30322":5,"30323":2,"30324":4,"30325":3,"30326":4,"30327":4,"30328":2,"30329":3,"30330":3,"30331":1,"30332":3,"30333":2,"30334":3,"30335":3,"30336":2,"30337":2,"30338":3,"30339":4,"30340":5,"30341":4,"30342":4,"30343":3,"30344":3,"30345":4,"30346":4,"30347":3,"30348":3,"30349":4,"30350":2,"30351":4,"30352":4,"30353":1,"30354":4,"30355":2,"30356":4,"30357":4,"30358":3,"30359":4,"30360":2,"30361":4,"30362":2,"30363":3,"30364":3,"30365":4,"30366":4,"30367":3,"30368":4,"30369":2,"30370":3,"30371":2,"30372":3,"30373":4,"30374":4,"30375":4,"30376":2,"30377":5,"30378":5,"30379":3,"30380":4,"30381":3,"30382":1,"30383":3,"30384":3,"30385":3,"30386":3,"30387":1,"30388":4,"30389":5,"30390":3,"30391":5,"30392":3,"30393":3,"30394":3,"30395":4,"30396":1,"30397":3,"30398":2,"30399":4,"30400":2,"30401":4,"30402":3,"30403":2,"30404":5,"30405":1,"30406":3,"30407":4,"30408":2,"30409":4,"30410":2,"30411":3,"30412":5,"30413":3,"30414":2,"30415":1,"30416":4,"30417":4,"30418":4,"30419":2,"30420":3,"30421":2,"30422":3,"30423":3,"30424":5,"30425":4,"30426":3,"30427":2,"30428":2,"30429":1,"30430":2,"30431":3,"30432":1,"30433":4,"30434":3,"30435":3,"30436":2,"30437":3,"30438":2,"30439":3,"30440":2,"30441":2,"30442":4,"30443":4,"30444":3,"30445":3,"30446":3,"30447":5,"30448":4,"30449":1,"30450":4,"30451":3,"30452":3,"30453":5,"30454":3,"30455":4,"30456":2,"30457":4,"30458":4,"30459":3,"30460":2,"30461":3,"30462":3,"30463":3,"30464":2,"30465":3,"30466":2,"30467":4,"30468":2,"30469":3,"30470":4,"30471":5,"30472":3,"30473":3,"30474":1,"30475":1,"30476":4,"30477":4,"30478":3,"30479":4,"30480":3,"30481":4,"30482":2,"30483":4,"30484":1,"30485":5,"30486":3,"30487":1,"30488":4,"30489":3,"30490":1,"30491":2,"30492":2,"30493":4,"30494":3,"30495":4,"30496":1,"30497":5,"30498":4,"30499":4,"30500":3,"30501":4,"30502":4,"30503":3,"30504":1,"30505":3,"30506":3,"30507":3,"30508":3,"30509":3,"30510":3,"30511":5,"30512":4,"30513":4,"30514":2,"30515":3,"30516":4,"30517":2,"30518":3,"30519":5,"30520":3,"30521":3,"30522":3,"30523":4,"30524":1,"30525":3,"30526":3,"30527":2,"30528":3,"30529":4,"30530":1,"30531":3,"30532":2,"30533":4,"30534":3,"30535":3,"30536":4,"30537":2,"30538":4,"30539":3,"30540":1,"30541":4,"30542":3,"30543":4,"30544":1,"30545":4,"30546":2,"30547":4,"30548":4,"30549":3,"30550":4,"30551":1,"30552":2,"30553":1,"30554":1,"30555":3,"30556":4,"30557":4,"30558":5,"30559":3,"30560":3,"30561":1,"30562":3,"30563":1,"30564":3,"30565":4,"30566":3,"30567":2,"30568":2,"30569":1,"30570":2,"30571":1,"30572":4,"30573":2,"30574":3,"30575":4,"30576":4,"30577":1,"30578":4,"30579":2,"30580":2,"30581":1,"30582":3,"30583":1,"30584":2,"30585":4,"30586":4,"30587":3,"30588":5,"30589":2,"30590":1,"30591":3,"30592":2,"30593":4,"30594":3,"30595":2,"30596":3,"30597":4,"30598":5,"30599":3,"30600":4,"30601":2,"30602":2,"30603":3,"30604":2,"30605":4,"30606":3,"30607":2,"30608":1,"30609":2,"30610":3,"30611":3,"30612":4,"30613":2,"30614":2,"30615":5,"30616":4,"30617":3,"30618":4,"30619":3,"30620":2,"30621":3,"30622":3,"30623":4,"30624":2,"30625":4,"30626":3,"30627":2,"30628":3,"30629":1,"30630":3,"30631":4,"30632":1,"30633":3,"30634":2,"30635":3,"30636":3,"30637":3,"30638":3,"30639":3,"30640":4,"30641":2,"30642":2,"30643":4,"30644":4,"30645":2,"30646":1,"30647":2,"30648":2,"30649":2,"30650":3,"30651":1,"30652":5,"30653":2,"30654":4,"30655":3,"30656":5,"30657":3,"30658":4,"30659":4,"30660":4,"30661":4,"30662":3,"30663":3,"30664":3,"30665":3,"30666":4,"30667":2,"30668":4,"30669":3,"30670":2,"30671":4,"30672":3,"30673":4,"30674":4,"30675":2,"30676":3,"30677":2,"30678":3,"30679":2,"30680":2,"30681":3,"30682":3,"30683":3,"30684":5,"30685":4,"30686":1,"30687":3,"30688":1,"30689":4,"30690":3,"30691":2,"30692":4,"30693":3,"30694":3,"30695":3,"30696":5,"30697":4,"30698":4,"30699":4,"30700":2,"30701":2,"30702":1,"30703":2,"30704":3,"30705":1,"30706":3,"30707":3,"30708":3,"30709":3,"30710":4,"30711":2,"30712":2,"30713":1,"30714":3,"30715":4,"30716":3,"30717":4,"30718":3,"30719":5,"30720":5,"30721":3,"30722":2,"30723":3,"30724":4,"30725":1,"30726":1,"30727":2,"30728":3,"30729":4,"30730":3,"30731":2,"30732":2,"30733":4,"30734":2,"30735":2,"30736":1,"30737":2,"30738":4,"30739":2,"30740":1,"30741":4,"30742":3,"30743":4,"30744":3,"30745":3,"30746":5,"30747":3,"30748":2,"30749":4,"30750":1,"30751":3,"30752":3,"30753":2,"30754":5,"30755":4,"30756":3,"30757":1,"30758":4,"30759":5,"30760":2,"30761":2,"30762":2,"30763":4,"30764":4,"30765":3,"30766":1,"30767":4,"30768":4,"30769":3,"30770":1,"30771":4,"30772":2,"30773":4,"30774":4,"30775":1,"30776":4,"30777":2,"30778":4,"30779":2,"30780":4,"30781":4,"30782":3,"30783":3,"30784":2,"30785":3,"30786":4,"30787":4,"30788":4,"30789":2,"30790":3,"30791":5,"30792":5,"30793":3,"30794":3,"30795":4,"30796":1,"30797":4,"30798":3,"30799":3,"30800":5,"30801":1,"30802":4,"30803":3,"30804":4,"30805":3,"30806":1,"30807":1,"30808":3,"30809":1,"30810":1,"30811":3,"30812":4,"30813":4,"30814":5,"30815":1,"30816":2,"30817":3,"30818":3,"30819":4,"30820":5,"30821":3,"30822":4,"30823":4,"30824":2,"30825":2,"30826":2,"30827":2,"30828":2,"30829":4,"30830":3,"30831":3,"30832":2,"30833":4,"30834":3,"30835":3,"30836":1,"30837":3,"30838":3,"30839":3,"30840":3,"30841":1,"30842":1,"30843":4,"30844":5,"30845":2,"30846":2,"30847":3,"30848":2,"30849":3,"30850":3,"30851":4,"30852":3,"30853":3,"30854":2,"30855":1,"30856":4,"30857":4,"30858":2,"30859":2,"30860":1,"30861":3,"30862":3,"30863":3,"30864":5,"30865":3,"30866":5,"30867":3,"30868":3,"30869":3,"30870":4,"30871":3,"30872":3,"30873":3,"30874":5,"30875":5,"30876":3,"30877":5,"30878":3,"30879":2,"30880":3,"30881":4,"30882":3,"30883":3,"30884":1,"30885":2,"30886":2,"30887":2,"30888":2,"30889":4,"30890":4,"30891":2,"30892":2,"30893":2,"30894":3,"30895":4,"30896":2,"30897":4,"30898":1,"30899":3,"30900":3,"30901":3,"30902":3,"30903":2,"30904":4,"30905":4,"30906":3,"30907":1,"30908":3,"30909":3,"30910":3,"30911":3,"30912":3,"30913":4,"30914":3,"30915":4,"30916":2,"30917":3,"30918":2,"30919":3,"30920":3,"30921":4,"30922":4,"30923":2,"30924":2,"30925":3,"30926":4,"30927":5,"30928":2,"30929":5,"30930":3,"30931":4,"30932":2,"30933":3,"30934":3,"30935":4,"30936":3,"30937":2,"30938":5,"30939":2,"30940":1,"30941":3,"30942":1,"30943":5,"30944":2,"30945":3,"30946":1,"30947":5,"30948":4,"30949":3,"30950":2,"30951":3,"30952":4,"30953":4,"30954":4,"30955":1,"30956":4,"30957":3,"30958":2,"30959":4,"30960":2,"30961":3,"30962":4,"30963":2,"30964":3,"30965":3,"30966":2,"30967":1,"30968":2,"30969":1,"30970":1,"30971":2,"30972":3,"30973":2,"30974":4,"30975":3,"30976":3,"30977":2,"30978":1,"30979":3,"30980":3,"30981":3,"30982":1,"30983":2,"30984":3,"30985":4,"30986":3,"30987":2,"30988":4,"30989":4,"30990":3,"30991":2,"30992":2,"30993":3,"30994":4,"30995":3,"30996":4,"30997":4,"30998":4,"30999":4,"31000":3,"31001":5,"31002":4,"31003":3,"31004":2,"31005":2,"31006":2,"31007":3,"31008":1,"31009":4,"31010":5,"31011":3,"31012":4,"31013":3,"31014":3,"31015":3,"31016":4,"31017":4,"31018":2,"31019":4,"31020":3,"31021":4,"31022":2,"31023":2,"31024":2,"31025":5,"31026":2,"31027":5,"31028":4,"31029":4,"31030":3,"31031":3,"31032":4,"31033":2,"31034":4,"31035":2,"31036":4,"31037":2,"31038":3,"31039":1,"31040":3,"31041":3,"31042":4,"31043":4,"31044":4,"31045":2,"31046":3,"31047":1,"31048":2,"31049":3,"31050":2,"31051":3,"31052":3,"31053":5,"31054":3,"31055":2,"31056":3,"31057":3,"31058":1,"31059":3,"31060":2,"31061":4,"31062":4,"31063":2,"31064":4,"31065":4,"31066":3,"31067":4,"31068":3,"31069":2,"31070":3,"31071":3,"31072":2,"31073":1,"31074":2,"31075":2,"31076":3,"31077":3,"31078":2,"31079":2,"31080":2,"31081":2,"31082":2,"31083":3,"31084":2,"31085":5,"31086":2,"31087":1,"31088":2,"31089":2,"31090":3,"31091":4,"31092":2,"31093":3,"31094":2,"31095":5,"31096":2,"31097":2,"31098":3,"31099":3,"31100":4,"31101":4,"31102":4,"31103":3,"31104":2,"31105":3,"31106":5,"31107":4,"31108":3,"31109":3,"31110":4,"31111":3,"31112":2,"31113":2,"31114":2,"31115":2,"31116":2,"31117":2,"31118":3,"31119":2,"31120":5,"31121":2,"31122":1,"31123":1,"31124":2,"31125":4,"31126":3,"31127":5,"31128":2,"31129":4,"31130":5,"31131":3,"31132":5,"31133":1,"31134":1,"31135":2,"31136":5,"31137":5,"31138":2,"31139":3,"31140":1,"31141":2,"31142":5,"31143":3,"31144":3,"31145":5,"31146":5,"31147":3,"31148":3,"31149":3,"31150":2,"31151":5,"31152":1,"31153":2,"31154":3,"31155":4,"31156":4,"31157":2,"31158":2,"31159":3,"31160":4,"31161":4,"31162":4,"31163":4,"31164":4,"31165":3,"31166":3,"31167":4,"31168":2,"31169":1,"31170":2,"31171":4,"31172":3,"31173":2,"31174":4,"31175":2,"31176":2,"31177":5,"31178":4,"31179":5,"31180":1,"31181":3,"31182":4,"31183":2,"31184":2,"31185":2,"31186":1,"31187":3,"31188":4,"31189":4,"31190":3,"31191":3,"31192":4,"31193":3,"31194":3,"31195":3,"31196":3,"31197":3,"31198":3,"31199":5,"31200":2,"31201":4,"31202":4,"31203":4,"31204":3,"31205":4,"31206":2,"31207":4,"31208":4,"31209":4,"31210":4,"31211":2,"31212":4,"31213":2,"31214":3,"31215":4,"31216":2,"31217":1,"31218":1,"31219":2,"31220":3,"31221":5,"31222":3,"31223":1,"31224":3,"31225":2,"31226":2,"31227":4,"31228":3,"31229":4,"31230":4,"31231":4,"31232":3,"31233":3,"31234":5,"31235":1,"31236":4,"31237":4,"31238":3,"31239":1,"31240":2,"31241":2,"31242":4,"31243":2,"31244":3,"31245":4,"31246":2,"31247":4,"31248":3,"31249":3,"31250":3,"31251":2,"31252":4,"31253":4,"31254":4,"31255":1,"31256":3,"31257":4,"31258":3,"31259":4,"31260":4,"31261":4,"31262":4,"31263":2,"31264":4,"31265":5,"31266":3,"31267":2,"31268":1,"31269":3,"31270":3,"31271":2,"31272":3,"31273":4,"31274":4,"31275":4,"31276":4,"31277":2,"31278":1,"31279":3,"31280":1,"31281":1,"31282":3,"31283":1,"31284":2,"31285":4,"31286":3,"31287":3,"31288":2,"31289":3,"31290":4,"31291":2,"31292":3,"31293":2,"31294":4,"31295":4,"31296":1,"31297":2,"31298":3,"31299":3,"31300":3,"31301":4,"31302":3,"31303":3,"31304":3,"31305":3,"31306":2,"31307":5,"31308":1,"31309":3,"31310":1,"31311":2,"31312":4,"31313":4,"31314":5,"31315":1,"31316":4,"31317":1,"31318":3,"31319":2,"31320":4,"31321":1,"31322":2,"31323":4,"31324":1,"31325":3,"31326":3,"31327":4,"31328":4,"31329":2,"31330":2,"31331":1,"31332":5,"31333":2,"31334":4,"31335":4,"31336":2,"31337":3,"31338":2,"31339":3,"31340":2,"31341":4,"31342":5,"31343":2,"31344":3,"31345":2,"31346":4,"31347":2,"31348":5,"31349":3,"31350":4,"31351":3,"31352":3,"31353":3,"31354":3,"31355":1,"31356":1,"31357":3,"31358":4,"31359":3,"31360":5,"31361":3,"31362":2,"31363":3,"31364":5,"31365":3,"31366":2,"31367":5,"31368":2,"31369":2,"31370":3,"31371":1,"31372":3,"31373":2,"31374":3,"31375":1,"31376":4,"31377":2,"31378":4,"31379":3,"31380":3,"31381":4,"31382":4,"31383":3,"31384":5,"31385":3,"31386":2,"31387":4,"31388":2,"31389":2,"31390":3,"31391":4,"31392":4,"31393":2,"31394":3,"31395":5,"31396":2,"31397":4,"31398":5,"31399":3,"31400":1,"31401":4,"31402":4,"31403":4,"31404":3,"31405":2,"31406":4,"31407":2,"31408":4,"31409":5,"31410":5,"31411":4,"31412":4,"31413":4,"31414":5,"31415":1,"31416":4,"31417":2,"31418":4,"31419":1,"31420":1,"31421":4,"31422":5,"31423":3,"31424":5,"31425":1,"31426":2,"31427":3,"31428":5,"31429":2,"31430":4,"31431":2,"31432":3,"31433":3,"31434":4,"31435":4,"31436":3,"31437":4,"31438":2,"31439":2,"31440":4,"31441":2,"31442":5,"31443":4,"31444":4,"31445":3,"31446":4,"31447":1,"31448":3,"31449":3,"31450":3,"31451":2,"31452":3,"31453":3,"31454":3,"31455":3,"31456":3,"31457":2,"31458":2,"31459":2,"31460":3,"31461":4,"31462":3,"31463":5,"31464":3,"31465":1,"31466":3,"31467":3,"31468":1,"31469":1,"31470":4,"31471":3,"31472":3,"31473":3,"31474":3,"31475":1,"31476":3,"31477":4,"31478":3,"31479":1,"31480":1,"31481":1,"31482":3,"31483":2,"31484":3,"31485":2,"31486":3,"31487":3,"31488":3,"31489":2,"31490":4,"31491":3,"31492":4,"31493":1,"31494":2,"31495":4,"31496":4,"31497":2,"31498":1,"31499":3,"31500":5,"31501":2,"31502":3,"31503":2,"31504":1,"31505":3,"31506":3,"31507":5,"31508":4,"31509":2,"31510":2,"31511":3,"31512":2,"31513":3,"31514":2,"31515":2,"31516":3,"31517":2,"31518":3,"31519":1,"31520":5,"31521":3,"31522":5,"31523":5,"31524":3,"31525":2,"31526":2,"31527":3,"31528":5,"31529":5,"31530":4,"31531":2,"31532":5,"31533":2,"31534":4,"31535":2,"31536":3,"31537":4,"31538":2,"31539":4,"31540":4,"31541":1,"31542":2,"31543":2,"31544":4,"31545":2,"31546":3,"31547":3,"31548":2,"31549":2,"31550":1,"31551":3,"31552":3,"31553":4,"31554":3,"31555":4,"31556":2,"31557":2,"31558":4,"31559":3,"31560":3,"31561":5,"31562":3,"31563":3,"31564":2,"31565":4,"31566":3,"31567":3,"31568":1,"31569":1,"31570":4,"31571":3,"31572":3,"31573":4,"31574":2,"31575":1,"31576":3,"31577":2,"31578":5,"31579":3,"31580":2,"31581":3,"31582":1,"31583":3,"31584":5,"31585":3,"31586":5,"31587":3,"31588":2,"31589":3,"31590":3,"31591":3,"31592":2,"31593":3,"31594":2,"31595":4,"31596":3,"31597":3,"31598":4,"31599":4,"31600":4,"31601":3,"31602":4,"31603":3,"31604":2,"31605":3,"31606":4,"31607":3,"31608":2,"31609":2,"31610":2,"31611":3,"31612":1,"31613":1,"31614":4,"31615":3,"31616":2,"31617":2,"31618":3,"31619":4,"31620":3,"31621":2,"31622":4,"31623":1,"31624":2,"31625":4,"31626":1,"31627":4,"31628":2,"31629":4,"31630":2,"31631":5,"31632":4,"31633":3,"31634":2,"31635":4,"31636":3,"31637":2,"31638":1,"31639":4,"31640":3,"31641":4,"31642":2,"31643":2,"31644":4,"31645":3,"31646":5,"31647":5,"31648":3,"31649":4,"31650":3,"31651":3,"31652":2,"31653":3,"31654":5,"31655":2,"31656":2,"31657":3,"31658":3,"31659":2,"31660":3,"31661":3,"31662":1,"31663":2,"31664":2,"31665":1,"31666":3,"31667":3,"31668":2,"31669":4,"31670":4,"31671":1,"31672":5,"31673":3,"31674":2,"31675":4,"31676":4,"31677":3,"31678":1,"31679":4,"31680":3,"31681":4,"31682":3,"31683":4,"31684":4,"31685":3,"31686":3,"31687":1,"31688":5,"31689":4,"31690":4,"31691":3,"31692":4,"31693":3,"31694":3,"31695":4,"31696":3,"31697":3,"31698":4,"31699":5,"31700":3,"31701":4,"31702":3,"31703":5,"31704":4,"31705":2,"31706":3,"31707":2,"31708":3,"31709":2,"31710":5,"31711":3,"31712":4,"31713":1,"31714":4,"31715":4,"31716":4,"31717":2,"31718":3,"31719":3,"31720":2,"31721":3,"31722":3,"31723":2,"31724":2,"31725":5,"31726":1,"31727":1,"31728":2,"31729":5,"31730":2,"31731":4,"31732":5,"31733":4,"31734":3,"31735":1,"31736":3,"31737":1,"31738":1,"31739":3,"31740":2,"31741":2,"31742":1,"31743":4,"31744":2,"31745":3,"31746":3,"31747":4,"31748":2,"31749":4,"31750":1,"31751":3,"31752":4,"31753":3,"31754":4,"31755":5,"31756":1,"31757":2,"31758":3,"31759":4,"31760":3,"31761":3,"31762":5,"31763":2,"31764":3,"31765":3,"31766":2,"31767":4,"31768":1,"31769":3,"31770":3,"31771":3,"31772":2,"31773":3,"31774":3,"31775":2,"31776":4,"31777":3,"31778":5,"31779":4,"31780":3,"31781":2,"31782":4,"31783":2,"31784":4,"31785":3,"31786":1,"31787":4,"31788":4,"31789":3,"31790":4,"31791":4,"31792":2,"31793":2,"31794":3,"31795":3,"31796":3,"31797":3,"31798":2,"31799":4,"31800":4,"31801":3,"31802":2,"31803":4,"31804":2,"31805":3,"31806":3,"31807":3,"31808":4,"31809":3,"31810":2,"31811":5,"31812":4,"31813":2,"31814":2,"31815":4,"31816":1,"31817":3,"31818":3,"31819":4,"31820":3,"31821":2,"31822":2,"31823":3,"31824":2,"31825":1,"31826":2,"31827":2,"31828":4,"31829":2,"31830":2,"31831":4,"31832":3,"31833":4,"31834":3,"31835":3,"31836":1,"31837":2,"31838":3,"31839":3,"31840":1,"31841":1,"31842":4,"31843":2,"31844":2,"31845":1,"31846":5,"31847":3,"31848":1,"31849":2,"31850":2,"31851":4,"31852":1,"31853":2,"31854":3,"31855":4,"31856":5,"31857":4,"31858":4,"31859":3,"31860":4,"31861":1,"31862":4,"31863":3,"31864":2,"31865":4,"31866":5,"31867":4,"31868":5,"31869":3,"31870":4,"31871":4,"31872":3,"31873":2,"31874":3,"31875":4,"31876":4,"31877":4,"31878":3,"31879":4,"31880":2,"31881":1,"31882":2,"31883":3,"31884":2,"31885":4,"31886":3,"31887":1,"31888":4,"31889":3,"31890":3,"31891":2,"31892":4,"31893":2,"31894":5,"31895":3,"31896":3,"31897":4,"31898":2,"31899":3,"31900":3,"31901":4,"31902":3,"31903":3,"31904":3,"31905":2,"31906":4,"31907":2,"31908":3,"31909":3,"31910":3,"31911":2,"31912":3,"31913":3,"31914":3,"31915":4,"31916":5,"31917":3,"31918":2,"31919":5,"31920":1,"31921":1,"31922":3,"31923":5,"31924":5,"31925":3,"31926":3,"31927":4,"31928":4,"31929":4,"31930":3,"31931":2,"31932":2,"31933":5,"31934":5,"31935":4,"31936":3,"31937":1,"31938":4,"31939":3,"31940":4,"31941":3,"31942":3,"31943":2,"31944":2,"31945":3,"31946":2,"31947":4,"31948":4,"31949":2,"31950":2,"31951":2,"31952":4,"31953":4,"31954":4,"31955":4,"31956":3,"31957":5,"31958":2,"31959":4,"31960":3,"31961":4,"31962":2,"31963":1,"31964":2,"31965":3,"31966":1,"31967":2,"31968":2,"31969":3,"31970":2,"31971":2,"31972":1,"31973":3,"31974":4,"31975":4,"31976":3,"31977":3,"31978":3,"31979":1,"31980":5,"31981":4,"31982":4,"31983":4,"31984":3,"31985":2,"31986":3,"31987":3,"31988":4,"31989":1,"31990":5,"31991":4,"31992":3,"31993":4,"31994":1,"31995":5,"31996":4,"31997":4,"31998":4,"31999":3,"32000":3,"32001":1,"32002":5,"32003":2,"32004":1,"32005":4,"32006":3,"32007":3,"32008":3,"32009":5,"32010":5,"32011":3,"32012":3,"32013":2,"32014":2,"32015":2,"32016":4,"32017":5,"32018":5,"32019":2,"32020":1,"32021":3,"32022":4,"32023":1,"32024":4,"32025":1,"32026":3,"32027":2,"32028":5,"32029":4,"32030":3,"32031":2,"32032":2,"32033":2,"32034":3,"32035":4,"32036":3,"32037":4,"32038":3,"32039":2,"32040":4,"32041":4,"32042":2,"32043":2,"32044":3,"32045":4,"32046":3,"32047":4,"32048":4,"32049":2,"32050":5,"32051":3,"32052":3,"32053":4,"32054":2,"32055":1,"32056":4,"32057":4,"32058":2,"32059":5,"32060":4,"32061":1,"32062":3,"32063":3,"32064":2,"32065":4,"32066":2,"32067":3,"32068":2,"32069":4,"32070":3,"32071":5,"32072":1,"32073":3,"32074":4,"32075":1,"32076":3,"32077":2,"32078":1,"32079":4,"32080":3,"32081":4,"32082":3,"32083":4,"32084":2,"32085":4,"32086":4,"32087":3,"32088":3,"32089":4,"32090":4,"32091":4,"32092":3,"32093":2,"32094":1,"32095":4,"32096":2,"32097":3,"32098":3,"32099":5,"32100":3,"32101":4,"32102":4,"32103":4,"32104":3,"32105":4,"32106":4,"32107":4,"32108":3,"32109":2,"32110":4,"32111":3,"32112":4,"32113":4,"32114":2,"32115":2,"32116":4,"32117":1,"32118":1,"32119":3,"32120":4,"32121":3,"32122":3,"32123":2,"32124":3,"32125":2,"32126":1,"32127":3,"32128":4,"32129":4,"32130":4,"32131":1,"32132":2,"32133":4,"32134":5,"32135":4,"32136":3,"32137":1,"32138":3,"32139":4,"32140":5,"32141":3,"32142":2,"32143":4,"32144":3,"32145":3,"32146":3,"32147":4,"32148":1,"32149":2,"32150":2,"32151":2,"32152":2,"32153":4,"32154":4,"32155":2,"32156":4,"32157":3,"32158":3,"32159":3,"32160":3,"32161":2,"32162":2,"32163":4,"32164":3,"32165":4,"32166":2,"32167":2,"32168":2,"32169":3,"32170":4,"32171":2,"32172":3,"32173":4,"32174":2,"32175":2,"32176":3,"32177":2,"32178":3,"32179":2,"32180":1,"32181":5,"32182":3,"32183":3,"32184":4,"32185":4,"32186":3,"32187":2,"32188":3,"32189":3,"32190":2,"32191":3,"32192":4,"32193":4,"32194":1,"32195":2,"32196":3,"32197":1,"32198":3,"32199":1,"32200":1,"32201":1,"32202":3,"32203":3,"32204":2,"32205":2,"32206":2,"32207":3,"32208":4,"32209":4,"32210":3,"32211":2,"32212":3,"32213":4,"32214":4,"32215":5,"32216":3,"32217":3,"32218":2,"32219":4,"32220":3,"32221":3,"32222":3,"32223":1,"32224":4,"32225":4,"32226":3,"32227":1,"32228":3,"32229":3,"32230":2,"32231":1,"32232":2,"32233":3,"32234":5,"32235":3,"32236":3,"32237":3,"32238":2,"32239":4,"32240":2,"32241":2,"32242":2,"32243":3,"32244":3,"32245":2,"32246":3,"32247":4,"32248":3,"32249":1,"32250":3,"32251":2,"32252":3,"32253":3,"32254":2,"32255":3,"32256":5,"32257":2,"32258":5,"32259":3,"32260":4,"32261":4,"32262":5,"32263":3,"32264":2,"32265":3,"32266":3,"32267":2,"32268":3,"32269":2,"32270":3,"32271":2,"32272":3,"32273":4,"32274":4,"32275":3,"32276":3,"32277":3,"32278":3,"32279":3,"32280":3,"32281":3,"32282":4,"32283":3,"32284":5,"32285":3,"32286":3,"32287":1,"32288":1,"32289":3,"32290":3,"32291":3,"32292":3,"32293":4,"32294":1,"32295":4,"32296":4,"32297":4,"32298":3,"32299":4,"32300":2,"32301":3,"32302":2,"32303":3,"32304":5,"32305":2,"32306":3,"32307":3,"32308":3,"32309":2,"32310":3,"32311":4,"32312":3,"32313":3,"32314":3,"32315":2,"32316":2,"32317":1,"32318":4,"32319":2,"32320":3,"32321":2,"32322":3,"32323":4,"32324":3,"32325":1,"32326":4,"32327":4,"32328":1,"32329":1,"32330":3,"32331":3,"32332":1,"32333":3,"32334":1,"32335":2,"32336":4,"32337":3,"32338":3,"32339":1,"32340":2,"32341":4,"32342":3,"32343":3,"32344":3,"32345":3,"32346":2,"32347":4,"32348":4,"32349":3,"32350":2,"32351":5,"32352":3,"32353":4,"32354":3,"32355":3,"32356":3,"32357":3,"32358":4,"32359":3,"32360":3,"32361":5,"32362":2,"32363":2,"32364":1,"32365":2,"32366":2,"32367":2,"32368":5,"32369":4,"32370":3,"32371":2,"32372":3,"32373":3,"32374":5,"32375":4,"32376":5,"32377":2,"32378":4,"32379":3,"32380":2,"32381":1,"32382":2,"32383":4,"32384":4,"32385":3,"32386":4,"32387":4,"32388":4,"32389":3,"32390":1,"32391":5,"32392":2,"32393":2,"32394":3,"32395":2,"32396":2,"32397":3,"32398":3,"32399":3,"32400":3,"32401":4,"32402":3,"32403":4,"32404":4,"32405":3,"32406":2,"32407":2,"32408":5,"32409":4,"32410":4,"32411":3,"32412":1,"32413":4,"32414":3,"32415":3,"32416":1,"32417":3,"32418":5,"32419":2,"32420":4,"32421":2,"32422":3,"32423":3,"32424":4,"32425":3,"32426":1,"32427":4,"32428":2,"32429":4,"32430":1,"32431":1,"32432":2,"32433":5,"32434":3,"32435":3,"32436":4,"32437":3,"32438":3,"32439":5,"32440":3,"32441":3,"32442":4,"32443":3,"32444":2,"32445":4,"32446":1,"32447":4,"32448":5,"32449":4,"32450":2,"32451":3,"32452":3,"32453":2,"32454":2,"32455":2,"32456":2,"32457":1,"32458":4,"32459":3,"32460":4,"32461":3,"32462":3,"32463":2,"32464":3,"32465":2,"32466":2,"32467":3,"32468":4,"32469":3,"32470":1,"32471":2,"32472":3,"32473":4,"32474":3,"32475":4,"32476":5,"32477":3,"32478":4,"32479":3,"32480":1,"32481":5,"32482":3,"32483":2,"32484":4,"32485":3,"32486":1,"32487":1,"32488":3,"32489":4,"32490":3,"32491":3,"32492":1,"32493":3,"32494":2,"32495":2,"32496":4,"32497":3,"32498":4,"32499":4,"32500":4,"32501":2,"32502":2,"32503":3,"32504":2,"32505":4,"32506":1,"32507":3,"32508":2,"32509":2,"32510":1,"32511":4,"32512":5,"32513":3,"32514":4,"32515":3,"32516":2,"32517":2,"32518":4,"32519":3,"32520":2,"32521":1,"32522":2,"32523":2,"32524":1,"32525":3,"32526":1,"32527":2,"32528":2,"32529":5,"32530":2,"32531":3,"32532":4,"32533":3,"32534":4,"32535":3,"32536":4,"32537":4,"32538":3,"32539":4,"32540":4,"32541":2,"32542":3,"32543":2,"32544":4,"32545":3,"32546":1,"32547":3,"32548":4,"32549":1,"32550":4,"32551":2,"32552":3,"32553":2,"32554":3,"32555":4,"32556":2,"32557":4,"32558":4,"32559":1,"32560":2,"32561":3,"32562":4,"32563":3,"32564":3,"32565":4,"32566":5,"32567":3,"32568":3,"32569":2,"32570":3,"32571":5,"32572":3,"32573":4,"32574":4,"32575":3,"32576":4,"32577":4,"32578":2,"32579":4,"32580":5,"32581":4,"32582":2,"32583":1,"32584":1,"32585":3,"32586":4,"32587":3,"32588":1,"32589":2,"32590":2,"32591":5,"32592":1,"32593":1,"32594":5,"32595":3,"32596":1,"32597":2,"32598":2,"32599":3,"32600":3,"32601":5,"32602":3,"32603":4,"32604":3,"32605":4,"32606":4,"32607":2,"32608":3,"32609":4,"32610":2,"32611":3,"32612":4,"32613":2,"32614":3,"32615":3,"32616":4,"32617":3,"32618":2,"32619":3,"32620":4,"32621":3,"32622":4,"32623":1,"32624":2,"32625":2,"32626":2,"32627":5,"32628":4,"32629":1,"32630":2,"32631":3,"32632":2,"32633":4,"32634":4,"32635":4,"32636":4,"32637":4,"32638":1,"32639":3,"32640":3,"32641":5,"32642":1,"32643":2,"32644":3,"32645":1,"32646":3,"32647":3,"32648":4,"32649":3,"32650":3,"32651":2,"32652":2,"32653":3,"32654":3,"32655":5,"32656":2,"32657":2,"32658":4,"32659":3,"32660":3,"32661":3,"32662":4,"32663":3,"32664":4,"32665":3,"32666":2,"32667":4,"32668":2,"32669":4,"32670":4,"32671":3,"32672":3,"32673":3,"32674":3,"32675":4,"32676":4,"32677":2,"32678":3,"32679":2,"32680":2,"32681":1,"32682":2,"32683":4,"32684":5,"32685":4,"32686":1,"32687":2,"32688":3,"32689":1,"32690":4,"32691":5,"32692":4,"32693":1,"32694":3,"32695":5,"32696":4,"32697":3,"32698":2,"32699":2,"32700":4,"32701":2,"32702":3,"32703":3,"32704":3,"32705":2,"32706":3,"32707":2,"32708":2,"32709":3,"32710":3,"32711":3,"32712":2,"32713":4,"32714":2,"32715":5,"32716":3,"32717":1,"32718":2,"32719":3,"32720":4,"32721":3,"32722":5,"32723":3,"32724":4,"32725":3,"32726":4,"32727":4,"32728":3,"32729":2,"32730":3,"32731":4,"32732":3,"32733":4,"32734":3,"32735":2,"32736":4,"32737":2,"32738":3,"32739":4,"32740":3,"32741":3,"32742":5,"32743":4,"32744":2,"32745":2,"32746":2,"32747":2,"32748":4,"32749":4,"32750":3,"32751":2,"32752":1,"32753":3,"32754":2,"32755":3,"32756":4,"32757":2,"32758":3,"32759":2,"32760":3,"32761":5,"32762":4,"32763":4,"32764":2,"32765":3,"32766":2,"32767":3,"32768":5,"32769":3,"32770":2,"32771":3,"32772":2,"32773":1,"32774":4,"32775":3,"32776":3,"32777":4,"32778":3,"32779":3,"32780":3,"32781":2,"32782":4,"32783":3,"32784":4,"32785":5,"32786":4,"32787":3,"32788":4,"32789":3,"32790":2,"32791":2,"32792":3,"32793":3,"32794":4,"32795":3,"32796":2,"32797":3,"32798":3,"32799":3,"32800":4,"32801":4,"32802":4,"32803":3,"32804":4,"32805":2,"32806":3,"32807":2,"32808":4,"32809":2,"32810":4,"32811":4,"32812":3,"32813":4,"32814":3,"32815":3,"32816":2,"32817":4,"32818":4,"32819":3,"32820":3,"32821":4,"32822":3,"32823":4,"32824":4,"32825":3,"32826":5,"32827":3,"32828":4,"32829":4,"32830":1,"32831":3,"32832":4,"32833":3,"32834":3,"32835":4,"32836":2,"32837":2,"32838":3,"32839":5,"32840":4,"32841":3,"32842":3,"32843":3,"32844":3,"32845":5,"32846":4,"32847":5,"32848":4,"32849":2,"32850":4,"32851":4,"32852":5,"32853":2,"32854":1,"32855":2,"32856":4,"32857":1,"32858":2,"32859":2,"32860":4,"32861":4,"32862":3,"32863":4,"32864":3,"32865":3,"32866":4,"32867":1,"32868":4,"32869":3,"32870":3,"32871":3,"32872":1,"32873":5,"32874":1,"32875":2,"32876":3,"32877":2,"32878":5,"32879":3,"32880":5,"32881":1,"32882":3,"32883":2,"32884":4,"32885":2,"32886":5,"32887":1,"32888":4,"32889":3,"32890":2,"32891":2,"32892":1,"32893":3,"32894":3,"32895":2,"32896":5,"32897":3,"32898":3,"32899":2,"32900":3,"32901":3,"32902":5,"32903":4,"32904":5,"32905":4,"32906":3,"32907":2,"32908":4,"32909":4,"32910":3,"32911":3,"32912":4,"32913":3,"32914":4,"32915":5,"32916":4,"32917":2,"32918":5,"32919":2,"32920":2,"32921":2,"32922":3,"32923":5,"32924":2,"32925":2,"32926":3,"32927":3,"32928":3,"32929":4,"32930":1,"32931":3,"32932":3,"32933":3,"32934":2,"32935":3,"32936":4,"32937":2,"32938":4,"32939":2,"32940":2,"32941":4,"32942":4,"32943":3,"32944":1,"32945":3,"32946":3,"32947":4,"32948":1,"32949":2,"32950":3,"32951":4,"32952":3,"32953":4,"32954":2,"32955":1,"32956":4,"32957":4,"32958":3,"32959":2,"32960":3,"32961":3,"32962":5,"32963":2,"32964":3,"32965":3,"32966":4,"32967":2,"32968":1,"32969":2,"32970":4,"32971":3,"32972":5,"32973":5,"32974":1,"32975":1,"32976":4,"32977":1,"32978":4,"32979":3,"32980":1,"32981":3,"32982":2,"32983":4,"32984":4,"32985":4,"32986":2,"32987":2,"32988":3,"32989":3,"32990":2,"32991":1,"32992":2,"32993":2,"32994":5,"32995":3,"32996":4,"32997":2,"32998":3,"32999":4,"33000":3,"33001":3,"33002":3,"33003":1,"33004":5,"33005":4,"33006":4,"33007":3,"33008":3,"33009":2,"33010":3,"33011":2,"33012":4,"33013":4,"33014":1,"33015":2,"33016":4,"33017":4,"33018":4,"33019":1,"33020":4,"33021":3,"33022":4,"33023":2,"33024":1,"33025":4,"33026":4,"33027":1,"33028":5,"33029":4,"33030":5,"33031":2,"33032":4,"33033":2,"33034":4,"33035":5,"33036":3,"33037":3,"33038":4,"33039":2,"33040":5,"33041":2,"33042":4,"33043":1,"33044":4,"33045":2,"33046":5,"33047":3,"33048":4,"33049":3,"33050":2,"33051":2,"33052":2,"33053":2,"33054":2,"33055":4,"33056":2,"33057":3,"33058":3,"33059":4,"33060":4,"33061":3,"33062":4,"33063":3,"33064":2,"33065":3,"33066":4,"33067":4,"33068":2,"33069":5,"33070":3,"33071":4,"33072":2,"33073":1,"33074":3,"33075":3,"33076":3,"33077":3,"33078":4,"33079":5,"33080":3,"33081":3,"33082":1,"33083":3,"33084":3,"33085":4,"33086":2,"33087":2,"33088":4,"33089":3,"33090":3,"33091":3,"33092":4,"33093":3,"33094":4,"33095":4,"33096":3,"33097":3,"33098":1,"33099":2,"33100":3,"33101":1,"33102":3,"33103":2,"33104":3,"33105":4,"33106":3,"33107":3,"33108":3,"33109":3,"33110":3,"33111":2,"33112":4,"33113":3,"33114":2,"33115":3,"33116":3,"33117":4,"33118":1,"33119":5,"33120":5,"33121":4,"33122":2,"33123":3,"33124":5,"33125":4,"33126":3,"33127":3,"33128":2,"33129":2,"33130":2,"33131":2,"33132":2,"33133":1,"33134":2,"33135":4,"33136":2,"33137":4,"33138":2,"33139":2,"33140":2,"33141":4,"33142":3,"33143":3,"33144":3,"33145":2,"33146":4,"33147":3,"33148":2,"33149":5,"33150":1,"33151":5,"33152":4,"33153":3,"33154":4,"33155":2,"33156":2,"33157":4,"33158":2,"33159":3,"33160":4,"33161":4,"33162":3,"33163":4,"33164":4,"33165":3,"33166":2,"33167":3,"33168":3,"33169":3,"33170":2,"33171":4,"33172":4,"33173":3,"33174":3,"33175":4,"33176":4,"33177":4,"33178":1,"33179":4,"33180":2,"33181":1,"33182":4,"33183":1,"33184":2,"33185":2,"33186":3,"33187":4,"33188":3,"33189":1,"33190":2,"33191":3,"33192":3,"33193":5,"33194":2,"33195":4,"33196":2,"33197":2,"33198":2,"33199":2,"33200":2,"33201":3,"33202":3,"33203":2,"33204":3,"33205":4,"33206":2,"33207":2,"33208":2,"33209":3,"33210":2,"33211":3,"33212":3,"33213":5,"33214":3,"33215":3,"33216":3,"33217":3,"33218":1,"33219":2,"33220":4,"33221":4,"33222":2,"33223":2,"33224":1,"33225":3,"33226":2,"33227":2,"33228":1,"33229":1,"33230":4,"33231":3,"33232":4,"33233":4,"33234":3,"33235":1,"33236":1,"33237":3,"33238":3,"33239":4,"33240":3,"33241":3,"33242":4,"33243":4,"33244":5,"33245":5,"33246":4,"33247":3,"33248":4,"33249":3,"33250":4,"33251":2,"33252":5,"33253":3,"33254":4,"33255":3,"33256":3,"33257":3,"33258":3,"33259":3,"33260":3,"33261":4,"33262":2,"33263":3,"33264":2,"33265":2,"33266":2,"33267":1,"33268":5,"33269":3,"33270":1,"33271":3,"33272":3,"33273":4,"33274":3,"33275":2,"33276":4,"33277":1,"33278":3,"33279":2,"33280":5,"33281":3,"33282":3,"33283":4,"33284":2,"33285":2,"33286":3,"33287":4,"33288":2,"33289":4,"33290":5,"33291":1,"33292":2,"33293":3,"33294":3,"33295":4,"33296":3,"33297":4,"33298":3,"33299":1,"33300":2,"33301":3,"33302":2,"33303":1,"33304":2,"33305":2,"33306":4,"33307":5,"33308":3,"33309":5,"33310":1,"33311":4,"33312":2,"33313":2,"33314":4,"33315":2,"33316":3,"33317":2,"33318":2,"33319":4,"33320":4,"33321":3,"33322":5,"33323":3,"33324":4,"33325":2,"33326":4,"33327":2,"33328":2,"33329":5,"33330":4,"33331":5,"33332":3,"33333":2,"33334":3,"33335":2,"33336":4,"33337":3,"33338":2,"33339":3,"33340":4,"33341":2,"33342":3,"33343":1,"33344":3,"33345":2,"33346":3,"33347":4,"33348":3,"33349":4,"33350":1,"33351":4,"33352":1,"33353":2,"33354":2,"33355":2,"33356":3,"33357":4,"33358":4,"33359":5,"33360":1,"33361":2,"33362":2,"33363":3,"33364":1,"33365":2,"33366":2,"33367":4,"33368":3,"33369":4,"33370":4,"33371":5,"33372":3,"33373":3,"33374":4,"33375":3,"33376":2,"33377":4,"33378":3,"33379":4,"33380":3,"33381":3,"33382":4,"33383":4,"33384":2,"33385":5,"33386":2,"33387":5,"33388":3,"33389":1,"33390":3,"33391":2,"33392":2,"33393":3,"33394":2,"33395":4,"33396":4,"33397":5,"33398":4,"33399":4,"33400":2,"33401":3,"33402":3,"33403":3,"33404":1,"33405":1,"33406":2,"33407":5,"33408":3,"33409":1,"33410":4,"33411":5,"33412":3,"33413":2,"33414":2,"33415":5,"33416":3,"33417":3,"33418":3,"33419":3,"33420":5,"33421":1,"33422":2,"33423":2,"33424":4,"33425":3,"33426":3,"33427":2,"33428":3,"33429":3,"33430":4,"33431":2,"33432":4,"33433":2,"33434":5,"33435":2,"33436":1,"33437":3,"33438":4,"33439":2,"33440":3,"33441":4,"33442":5,"33443":1,"33444":3,"33445":4,"33446":2,"33447":3,"33448":2,"33449":4,"33450":2,"33451":2,"33452":2,"33453":3,"33454":4,"33455":3,"33456":4,"33457":3,"33458":4,"33459":3,"33460":2,"33461":3,"33462":4,"33463":3,"33464":2,"33465":2,"33466":2,"33467":3,"33468":3,"33469":2,"33470":2,"33471":4,"33472":3,"33473":3,"33474":4,"33475":3,"33476":3,"33477":2,"33478":3,"33479":3,"33480":4,"33481":5,"33482":4,"33483":3,"33484":4,"33485":1,"33486":1,"33487":2,"33488":2,"33489":4,"33490":3,"33491":3,"33492":3,"33493":4,"33494":2,"33495":3,"33496":3,"33497":2,"33498":5,"33499":4,"33500":3,"33501":2,"33502":4,"33503":4,"33504":3,"33505":3,"33506":4,"33507":1,"33508":2,"33509":4,"33510":3,"33511":3,"33512":1,"33513":3,"33514":3,"33515":4,"33516":5,"33517":2,"33518":2,"33519":3,"33520":2,"33521":3,"33522":2,"33523":3,"33524":1,"33525":3,"33526":5,"33527":3,"33528":2,"33529":4,"33530":4,"33531":3,"33532":3,"33533":2,"33534":2,"33535":4,"33536":1,"33537":3,"33538":4,"33539":4,"33540":3,"33541":4,"33542":4,"33543":5,"33544":4,"33545":2,"33546":2,"33547":4,"33548":3,"33549":2,"33550":2,"33551":4,"33552":2,"33553":1,"33554":3,"33555":3,"33556":3,"33557":2,"33558":3,"33559":3,"33560":2,"33561":3,"33562":4,"33563":3,"33564":3,"33565":3,"33566":2,"33567":3,"33568":4,"33569":3,"33570":4,"33571":2,"33572":2,"33573":4,"33574":2,"33575":4,"33576":2,"33577":1,"33578":1,"33579":4,"33580":3,"33581":1,"33582":3,"33583":3,"33584":3,"33585":2,"33586":4,"33587":4,"33588":2,"33589":3,"33590":2,"33591":5,"33592":3,"33593":3,"33594":3,"33595":2,"33596":3,"33597":3,"33598":4,"33599":2,"33600":5,"33601":4,"33602":3,"33603":3,"33604":1,"33605":5,"33606":4,"33607":4,"33608":3,"33609":4,"33610":3,"33611":3,"33612":5,"33613":1,"33614":3,"33615":5,"33616":5,"33617":1,"33618":5,"33619":2,"33620":5,"33621":3,"33622":3,"33623":4,"33624":5,"33625":4,"33626":3,"33627":2,"33628":4,"33629":4,"33630":2,"33631":4,"33632":3,"33633":4,"33634":3,"33635":4,"33636":5,"33637":2,"33638":4,"33639":2,"33640":3,"33641":5,"33642":4,"33643":4,"33644":3,"33645":4,"33646":4,"33647":4,"33648":4,"33649":3,"33650":2,"33651":3,"33652":1,"33653":3,"33654":4,"33655":3,"33656":3,"33657":2,"33658":3,"33659":2,"33660":2,"33661":1,"33662":3,"33663":2,"33664":3,"33665":1,"33666":2,"33667":4,"33668":2,"33669":3,"33670":2,"33671":3,"33672":3,"33673":3,"33674":1,"33675":3,"33676":3,"33677":3,"33678":1,"33679":2,"33680":1,"33681":5,"33682":3,"33683":5,"33684":4,"33685":5,"33686":3,"33687":3,"33688":2,"33689":4,"33690":4,"33691":2,"33692":4,"33693":2,"33694":2,"33695":2,"33696":3,"33697":2,"33698":4,"33699":1,"33700":5,"33701":2,"33702":3,"33703":2,"33704":5,"33705":5,"33706":2,"33707":4,"33708":2,"33709":1,"33710":3,"33711":3,"33712":4,"33713":4,"33714":3,"33715":4,"33716":1,"33717":3,"33718":3,"33719":2,"33720":5,"33721":3,"33722":3,"33723":2,"33724":2,"33725":4,"33726":2,"33727":2,"33728":5,"33729":4,"33730":4,"33731":3,"33732":1,"33733":4,"33734":2,"33735":4,"33736":2,"33737":1,"33738":4,"33739":1,"33740":1,"33741":2,"33742":3,"33743":3,"33744":4,"33745":4,"33746":5,"33747":1,"33748":2,"33749":3,"33750":3,"33751":2,"33752":3,"33753":3,"33754":3,"33755":3,"33756":1,"33757":3,"33758":4,"33759":3,"33760":2,"33761":3,"33762":4,"33763":3,"33764":3,"33765":1,"33766":3,"33767":2,"33768":2,"33769":2,"33770":1,"33771":4,"33772":3,"33773":3,"33774":4,"33775":3,"33776":1,"33777":2,"33778":4,"33779":2,"33780":2,"33781":2,"33782":2,"33783":3,"33784":3,"33785":5,"33786":3,"33787":3,"33788":4,"33789":4,"33790":3,"33791":4,"33792":2,"33793":5,"33794":2,"33795":1,"33796":4,"33797":1,"33798":4,"33799":1,"33800":4,"33801":1,"33802":5,"33803":2,"33804":4,"33805":1,"33806":3,"33807":2,"33808":4,"33809":3,"33810":3,"33811":3,"33812":3,"33813":1,"33814":1,"33815":2,"33816":2,"33817":1,"33818":2,"33819":3,"33820":3,"33821":3,"33822":2,"33823":4,"33824":4,"33825":2,"33826":3,"33827":3,"33828":5,"33829":4,"33830":4,"33831":1,"33832":4,"33833":4,"33834":3,"33835":3,"33836":4,"33837":4,"33838":3,"33839":3,"33840":2,"33841":2,"33842":1,"33843":4,"33844":3,"33845":3,"33846":5,"33847":3,"33848":3,"33849":5,"33850":2,"33851":3,"33852":1,"33853":2,"33854":3,"33855":3,"33856":3,"33857":3,"33858":4,"33859":5,"33860":3,"33861":4,"33862":3,"33863":2,"33864":3,"33865":4,"33866":2,"33867":3,"33868":2,"33869":4,"33870":4,"33871":3,"33872":1,"33873":3,"33874":3,"33875":4,"33876":2,"33877":1,"33878":3,"33879":1,"33880":3,"33881":3,"33882":3,"33883":2,"33884":2,"33885":2,"33886":4,"33887":3,"33888":4,"33889":4,"33890":3,"33891":2,"33892":5,"33893":5,"33894":4,"33895":4,"33896":2,"33897":3,"33898":4,"33899":3,"33900":3,"33901":3,"33902":3,"33903":4,"33904":2,"33905":3,"33906":4,"33907":2,"33908":2,"33909":3,"33910":4,"33911":3,"33912":4,"33913":2,"33914":4,"33915":1,"33916":4,"33917":2,"33918":4,"33919":3,"33920":3,"33921":5,"33922":4,"33923":3,"33924":3,"33925":3,"33926":3,"33927":4,"33928":5,"33929":2,"33930":4,"33931":2,"33932":2,"33933":4,"33934":3,"33935":4,"33936":5,"33937":5,"33938":3,"33939":3,"33940":2,"33941":3,"33942":3,"33943":3,"33944":4,"33945":3,"33946":1,"33947":2,"33948":3,"33949":2,"33950":1,"33951":3,"33952":5,"33953":2,"33954":4,"33955":1,"33956":2,"33957":2,"33958":3,"33959":1,"33960":2,"33961":4,"33962":4,"33963":3,"33964":3,"33965":4,"33966":4,"33967":1,"33968":5,"33969":1,"33970":2,"33971":1,"33972":2,"33973":2,"33974":2,"33975":2,"33976":3,"33977":1,"33978":5,"33979":2,"33980":4,"33981":2,"33982":3,"33983":3,"33984":3,"33985":3,"33986":2,"33987":4,"33988":3,"33989":3,"33990":4,"33991":3,"33992":2,"33993":4,"33994":4,"33995":4,"33996":3,"33997":4,"33998":2,"33999":2,"34000":1,"34001":5,"34002":2,"34003":4,"34004":3,"34005":3,"34006":1,"34007":5,"34008":5,"34009":2,"34010":3,"34011":1,"34012":2,"34013":3,"34014":1,"34015":5,"34016":3,"34017":3,"34018":3,"34019":4,"34020":1,"34021":3,"34022":3,"34023":3,"34024":2,"34025":3,"34026":2,"34027":3,"34028":2,"34029":1,"34030":1,"34031":2,"34032":3,"34033":1,"34034":4,"34035":3,"34036":3,"34037":2,"34038":5,"34039":2,"34040":4,"34041":1,"34042":3,"34043":1,"34044":3,"34045":3,"34046":2,"34047":1,"34048":4,"34049":5,"34050":4,"34051":4,"34052":2,"34053":5,"34054":5,"34055":4,"34056":1,"34057":3,"34058":3,"34059":2,"34060":5,"34061":4,"34062":2,"34063":3,"34064":1,"34065":2,"34066":3,"34067":3,"34068":2,"34069":4,"34070":3,"34071":3,"34072":3,"34073":3,"34074":4,"34075":1,"34076":2,"34077":3,"34078":3,"34079":2,"34080":3,"34081":2,"34082":2,"34083":2,"34084":4,"34085":2,"34086":5,"34087":5,"34088":3,"34089":4,"34090":1,"34091":4,"34092":3,"34093":2,"34094":1,"34095":3,"34096":2,"34097":4,"34098":4,"34099":4,"34100":1,"34101":3,"34102":4,"34103":4,"34104":4,"34105":4,"34106":3,"34107":3,"34108":4,"34109":3,"34110":2,"34111":2,"34112":4,"34113":3,"34114":4,"34115":2,"34116":3,"34117":4,"34118":2,"34119":2,"34120":4,"34121":2,"34122":2,"34123":2,"34124":3,"34125":3,"34126":4,"34127":4,"34128":5,"34129":3,"34130":3,"34131":4,"34132":3,"34133":2,"34134":3,"34135":4,"34136":4,"34137":2,"34138":2,"34139":2,"34140":4,"34141":4,"34142":3,"34143":3,"34144":2,"34145":3,"34146":3,"34147":4,"34148":1,"34149":1,"34150":3,"34151":3,"34152":1,"34153":4,"34154":4,"34155":3,"34156":5,"34157":1,"34158":4,"34159":5,"34160":3,"34161":2,"34162":3,"34163":2,"34164":3,"34165":4,"34166":3,"34167":4,"34168":4,"34169":1,"34170":4,"34171":4,"34172":4,"34173":3,"34174":4,"34175":2,"34176":3,"34177":2,"34178":3,"34179":2,"34180":1,"34181":2,"34182":4,"34183":3,"34184":1,"34185":2,"34186":3,"34187":3,"34188":2,"34189":2,"34190":4,"34191":5,"34192":1,"34193":3,"34194":4,"34195":3,"34196":2,"34197":3,"34198":3,"34199":2,"34200":4,"34201":1,"34202":3,"34203":5,"34204":4,"34205":3,"34206":4,"34207":4,"34208":4,"34209":4,"34210":4,"34211":3,"34212":3,"34213":3,"34214":3,"34215":4,"34216":4,"34217":2,"34218":4,"34219":3,"34220":2,"34221":4,"34222":3,"34223":3,"34224":2,"34225":3,"34226":5,"34227":3,"34228":2,"34229":4,"34230":2,"34231":3,"34232":3,"34233":5,"34234":3,"34235":3,"34236":3,"34237":2,"34238":3,"34239":4,"34240":3,"34241":4,"34242":1,"34243":4,"34244":3,"34245":3,"34246":2,"34247":5,"34248":3,"34249":3,"34250":2,"34251":2,"34252":3,"34253":4,"34254":3,"34255":5,"34256":3,"34257":2,"34258":3,"34259":5,"34260":4,"34261":4,"34262":2,"34263":5,"34264":4,"34265":1,"34266":2,"34267":4,"34268":3,"34269":1,"34270":3,"34271":3,"34272":3,"34273":3,"34274":2,"34275":4,"34276":3,"34277":1,"34278":4,"34279":2,"34280":2,"34281":4,"34282":2,"34283":3,"34284":2,"34285":3,"34286":3,"34287":2,"34288":4,"34289":2,"34290":1,"34291":3,"34292":4,"34293":2,"34294":3,"34295":2,"34296":2,"34297":3,"34298":5,"34299":3,"34300":4,"34301":3,"34302":2,"34303":2,"34304":4,"34305":4,"34306":3,"34307":3,"34308":3,"34309":5,"34310":3,"34311":2,"34312":4,"34313":4,"34314":1,"34315":2,"34316":5,"34317":2,"34318":3,"34319":1,"34320":2,"34321":3,"34322":5,"34323":2,"34324":3,"34325":4,"34326":1,"34327":3,"34328":4,"34329":4,"34330":2,"34331":2,"34332":1,"34333":2,"34334":5,"34335":2,"34336":4,"34337":2,"34338":4,"34339":3,"34340":3,"34341":3,"34342":4,"34343":2,"34344":4,"34345":3,"34346":4,"34347":2,"34348":5,"34349":3,"34350":4,"34351":2,"34352":4,"34353":3,"34354":4,"34355":2,"34356":2,"34357":3,"34358":3,"34359":4,"34360":4,"34361":1,"34362":3,"34363":3,"34364":3,"34365":4,"34366":4,"34367":4,"34368":3,"34369":5,"34370":4,"34371":3,"34372":5,"34373":4,"34374":5,"34375":3,"34376":4,"34377":3,"34378":3,"34379":2,"34380":2,"34381":2,"34382":4,"34383":4,"34384":4,"34385":3,"34386":2,"34387":2,"34388":2,"34389":3,"34390":3,"34391":1,"34392":4,"34393":4,"34394":1,"34395":4,"34396":3,"34397":1,"34398":3,"34399":2,"34400":4,"34401":3,"34402":3,"34403":2,"34404":3,"34405":3,"34406":2,"34407":4,"34408":4,"34409":4,"34410":3,"34411":3,"34412":3,"34413":3,"34414":4,"34415":3,"34416":2,"34417":3,"34418":2,"34419":1,"34420":5,"34421":5,"34422":3,"34423":3,"34424":5,"34425":3,"34426":2,"34427":3,"34428":4,"34429":4,"34430":3,"34431":3,"34432":4,"34433":4,"34434":1,"34435":3,"34436":4,"34437":4,"34438":2,"34439":2,"34440":3,"34441":2,"34442":4,"34443":5,"34444":2,"34445":3,"34446":3,"34447":3,"34448":4,"34449":3,"34450":2,"34451":4,"34452":4,"34453":4,"34454":3,"34455":4,"34456":1,"34457":3,"34458":3,"34459":2,"34460":5,"34461":3,"34462":4,"34463":3,"34464":3,"34465":2,"34466":4,"34467":2,"34468":3,"34469":2,"34470":2,"34471":3,"34472":2,"34473":2,"34474":4,"34475":1,"34476":4,"34477":4,"34478":3,"34479":3,"34480":3,"34481":4,"34482":3,"34483":2,"34484":3,"34485":2,"34486":3,"34487":2,"34488":3,"34489":2,"34490":3,"34491":1,"34492":1,"34493":3,"34494":2,"34495":3,"34496":4,"34497":2,"34498":1,"34499":3,"34500":4,"34501":3,"34502":3,"34503":4,"34504":4,"34505":3,"34506":2,"34507":4,"34508":4,"34509":5,"34510":1,"34511":2,"34512":3,"34513":3,"34514":2,"34515":3,"34516":3,"34517":5,"34518":2,"34519":3,"34520":3,"34521":4,"34522":2,"34523":1,"34524":4,"34525":4,"34526":3,"34527":3,"34528":1,"34529":3,"34530":4,"34531":2,"34532":3,"34533":1,"34534":3,"34535":2,"34536":3,"34537":3,"34538":4,"34539":4,"34540":4,"34541":2,"34542":4,"34543":4,"34544":5,"34545":4,"34546":4,"34547":2,"34548":4,"34549":3,"34550":4,"34551":3,"34552":3,"34553":2,"34554":2,"34555":4,"34556":3,"34557":4,"34558":1,"34559":4,"34560":4,"34561":4,"34562":3,"34563":2,"34564":4,"34565":4,"34566":1,"34567":5,"34568":3,"34569":3,"34570":3,"34571":4,"34572":5,"34573":4,"34574":2,"34575":4,"34576":3,"34577":3,"34578":4,"34579":5,"34580":4,"34581":3,"34582":2,"34583":3,"34584":3,"34585":4,"34586":4,"34587":5,"34588":1,"34589":4,"34590":1,"34591":5,"34592":3,"34593":4,"34594":4,"34595":3,"34596":4,"34597":3,"34598":3,"34599":3,"34600":3,"34601":3,"34602":3,"34603":5,"34604":3,"34605":5,"34606":4,"34607":4,"34608":2,"34609":1,"34610":3,"34611":3,"34612":3,"34613":3,"34614":4,"34615":5,"34616":1,"34617":5,"34618":1,"34619":3,"34620":3,"34621":3,"34622":3,"34623":3,"34624":4,"34625":3,"34626":4,"34627":4,"34628":3,"34629":1,"34630":3,"34631":3,"34632":4,"34633":1,"34634":3,"34635":3,"34636":2,"34637":3,"34638":3,"34639":2,"34640":5,"34641":5,"34642":4,"34643":2,"34644":3,"34645":4,"34646":3,"34647":4,"34648":4,"34649":1,"34650":2,"34651":2,"34652":4,"34653":3,"34654":3,"34655":4,"34656":3,"34657":3,"34658":3,"34659":1,"34660":4,"34661":2,"34662":1,"34663":2,"34664":3,"34665":4,"34666":3,"34667":4,"34668":3,"34669":4,"34670":3,"34671":1,"34672":2,"34673":2,"34674":3,"34675":2,"34676":4,"34677":3,"34678":3,"34679":3,"34680":4,"34681":4,"34682":4,"34683":1,"34684":2,"34685":5,"34686":4,"34687":2,"34688":2,"34689":3,"34690":3,"34691":5,"34692":4,"34693":3,"34694":4,"34695":3,"34696":2,"34697":5,"34698":3,"34699":4,"34700":1,"34701":3,"34702":3,"34703":3,"34704":2,"34705":2,"34706":3,"34707":3,"34708":2,"34709":3,"34710":4,"34711":3,"34712":2,"34713":5,"34714":2,"34715":5,"34716":4,"34717":2,"34718":4,"34719":1,"34720":3,"34721":4,"34722":5,"34723":1,"34724":4,"34725":2,"34726":4,"34727":3,"34728":4,"34729":2,"34730":1,"34731":1,"34732":2,"34733":3,"34734":3,"34735":3,"34736":4,"34737":3,"34738":1,"34739":3,"34740":2,"34741":4,"34742":4,"34743":4,"34744":4,"34745":4,"34746":3,"34747":2,"34748":4,"34749":2,"34750":4,"34751":3,"34752":3,"34753":3,"34754":3,"34755":3,"34756":3,"34757":2,"34758":3,"34759":2,"34760":4,"34761":2,"34762":5,"34763":3,"34764":2,"34765":4,"34766":4,"34767":2,"34768":4,"34769":3,"34770":3,"34771":4,"34772":2,"34773":3,"34774":3,"34775":2,"34776":4,"34777":2,"34778":4,"34779":3,"34780":3,"34781":5,"34782":4,"34783":3,"34784":2,"34785":4,"34786":1,"34787":3,"34788":1,"34789":3,"34790":4,"34791":4,"34792":3,"34793":3,"34794":3,"34795":3,"34796":3,"34797":4,"34798":4,"34799":4,"34800":4,"34801":3,"34802":4,"34803":4,"34804":4,"34805":2,"34806":5,"34807":3,"34808":1,"34809":4,"34810":5,"34811":2,"34812":2,"34813":4,"34814":3,"34815":4,"34816":3,"34817":5,"34818":4,"34819":1,"34820":3,"34821":3,"34822":4,"34823":4,"34824":3,"34825":4,"34826":3,"34827":2,"34828":5,"34829":3,"34830":4,"34831":4,"34832":1,"34833":4,"34834":4,"34835":4,"34836":4,"34837":5,"34838":2,"34839":3,"34840":3,"34841":3,"34842":1,"34843":3,"34844":3,"34845":2,"34846":3,"34847":3,"34848":5,"34849":4,"34850":4,"34851":3,"34852":3,"34853":3,"34854":1,"34855":4,"34856":2,"34857":2,"34858":4,"34859":2,"34860":2,"34861":4,"34862":4,"34863":3,"34864":2,"34865":2,"34866":1,"34867":3,"34868":4,"34869":2,"34870":4,"34871":4,"34872":4,"34873":4,"34874":3,"34875":2,"34876":3,"34877":1,"34878":2,"34879":2,"34880":4,"34881":3,"34882":3,"34883":2,"34884":3,"34885":3,"34886":1,"34887":2,"34888":3,"34889":4,"34890":5,"34891":2,"34892":4,"34893":5,"34894":2,"34895":2,"34896":4,"34897":2,"34898":4,"34899":2,"34900":2,"34901":4,"34902":4,"34903":4,"34904":4,"34905":3,"34906":4,"34907":4,"34908":4,"34909":3,"34910":1,"34911":4,"34912":4,"34913":4,"34914":5,"34915":1,"34916":4,"34917":2,"34918":5,"34919":3,"34920":1,"34921":2,"34922":3,"34923":3,"34924":3,"34925":3,"34926":2,"34927":4,"34928":2,"34929":3,"34930":4,"34931":3,"34932":3,"34933":3,"34934":3,"34935":2,"34936":4,"34937":1,"34938":2,"34939":4,"34940":3,"34941":3,"34942":5,"34943":2,"34944":2,"34945":3,"34946":3,"34947":2,"34948":3,"34949":4,"34950":3,"34951":5,"34952":4,"34953":5,"34954":2,"34955":3,"34956":2,"34957":4,"34958":3,"34959":2,"34960":2,"34961":1,"34962":2,"34963":4,"34964":4,"34965":3,"34966":3,"34967":4,"34968":4,"34969":3,"34970":3,"34971":2,"34972":5,"34973":1,"34974":4,"34975":3,"34976":3,"34977":4,"34978":3,"34979":2,"34980":3,"34981":2,"34982":5,"34983":2,"34984":4,"34985":4,"34986":5,"34987":1,"34988":4,"34989":5,"34990":3,"34991":3,"34992":1,"34993":4,"34994":3,"34995":2,"34996":2,"34997":1,"34998":3,"34999":2,"35000":3,"35001":3,"35002":2,"35003":2,"35004":3,"35005":2,"35006":3,"35007":5,"35008":1,"35009":2,"35010":3,"35011":3,"35012":3,"35013":3,"35014":3,"35015":4,"35016":1,"35017":3,"35018":4,"35019":3,"35020":4,"35021":1,"35022":3,"35023":5,"35024":3,"35025":3,"35026":2,"35027":3,"35028":5,"35029":3,"35030":3,"35031":3,"35032":3,"35033":4,"35034":3,"35035":4,"35036":4,"35037":4,"35038":2,"35039":1,"35040":2,"35041":4,"35042":2,"35043":3,"35044":4,"35045":5,"35046":1,"35047":3,"35048":2,"35049":2,"35050":4,"35051":4,"35052":5,"35053":3,"35054":2,"35055":1,"35056":2,"35057":2,"35058":4,"35059":2,"35060":3,"35061":2,"35062":4,"35063":5,"35064":3,"35065":5,"35066":3,"35067":5,"35068":3,"35069":2,"35070":4,"35071":4,"35072":4,"35073":4,"35074":2,"35075":3,"35076":3,"35077":4,"35078":4,"35079":4,"35080":4,"35081":1,"35082":2,"35083":3,"35084":3,"35085":2,"35086":3,"35087":3,"35088":3,"35089":3,"35090":3,"35091":1,"35092":2,"35093":2,"35094":3,"35095":4,"35096":2,"35097":4,"35098":2,"35099":2,"35100":5,"35101":5,"35102":3,"35103":1,"35104":3,"35105":2,"35106":3,"35107":4,"35108":2,"35109":2,"35110":1,"35111":4,"35112":4,"35113":3,"35114":2,"35115":2,"35116":4,"35117":2,"35118":4,"35119":4,"35120":2,"35121":4,"35122":3,"35123":4,"35124":2,"35125":3,"35126":2,"35127":2,"35128":3,"35129":3,"35130":4,"35131":3,"35132":4,"35133":2,"35134":3,"35135":2,"35136":5,"35137":3,"35138":3,"35139":2,"35140":3,"35141":3,"35142":3,"35143":3,"35144":2,"35145":3,"35146":4,"35147":1,"35148":2,"35149":3,"35150":2,"35151":3,"35152":4,"35153":3,"35154":4,"35155":4,"35156":5,"35157":2,"35158":3,"35159":3,"35160":2,"35161":2,"35162":3,"35163":3,"35164":4,"35165":1,"35166":4,"35167":1,"35168":2,"35169":4,"35170":5,"35171":5,"35172":5,"35173":4,"35174":1,"35175":3,"35176":2,"35177":3,"35178":3,"35179":4,"35180":4,"35181":2,"35182":4,"35183":4,"35184":4,"35185":5,"35186":2,"35187":2,"35188":2,"35189":4,"35190":2,"35191":4,"35192":4,"35193":1,"35194":1,"35195":4,"35196":3,"35197":3,"35198":2,"35199":3,"35200":2,"35201":4,"35202":1,"35203":2,"35204":1,"35205":3,"35206":4,"35207":4,"35208":3,"35209":2,"35210":4,"35211":2,"35212":3,"35213":2,"35214":2,"35215":4,"35216":2,"35217":2,"35218":3,"35219":5,"35220":1,"35221":1,"35222":4,"35223":3,"35224":3,"35225":1,"35226":5,"35227":3,"35228":3,"35229":2,"35230":3,"35231":3,"35232":5,"35233":3,"35234":4,"35235":4,"35236":3,"35237":3,"35238":4,"35239":2,"35240":3,"35241":3,"35242":2,"35243":5,"35244":3,"35245":2,"35246":3,"35247":3,"35248":1,"35249":3,"35250":4,"35251":4,"35252":4,"35253":4,"35254":4,"35255":3,"35256":2,"35257":3,"35258":3,"35259":4,"35260":4,"35261":5,"35262":2,"35263":4,"35264":2,"35265":2,"35266":3,"35267":3,"35268":1,"35269":4,"35270":3,"35271":2,"35272":3,"35273":2,"35274":4,"35275":2,"35276":4,"35277":1,"35278":1,"35279":2,"35280":1,"35281":4,"35282":3,"35283":3,"35284":2,"35285":2,"35286":5,"35287":3,"35288":4,"35289":3,"35290":2,"35291":3,"35292":4,"35293":2,"35294":2,"35295":2,"35296":2,"35297":3,"35298":3,"35299":1,"35300":3,"35301":4,"35302":5,"35303":1,"35304":3,"35305":1,"35306":3,"35307":2,"35308":3,"35309":4,"35310":4,"35311":4,"35312":4,"35313":2,"35314":4,"35315":2,"35316":3,"35317":4,"35318":4,"35319":1,"35320":5,"35321":2,"35322":3,"35323":4,"35324":1,"35325":1,"35326":3,"35327":4,"35328":3,"35329":4,"35330":4,"35331":1,"35332":4,"35333":3,"35334":5,"35335":3,"35336":3,"35337":3,"35338":3,"35339":3,"35340":3,"35341":3,"35342":3,"35343":1,"35344":3,"35345":1,"35346":4,"35347":3,"35348":3,"35349":5,"35350":2,"35351":3,"35352":4,"35353":2,"35354":2,"35355":4,"35356":5,"35357":1,"35358":3,"35359":2,"35360":3,"35361":4,"35362":2,"35363":4,"35364":2,"35365":2,"35366":2,"35367":2,"35368":4,"35369":3,"35370":2,"35371":2,"35372":4,"35373":4,"35374":2,"35375":1,"35376":3,"35377":2,"35378":3,"35379":2,"35380":3,"35381":3,"35382":4,"35383":4,"35384":4,"35385":5,"35386":4,"35387":3,"35388":3,"35389":2,"35390":4,"35391":2,"35392":4,"35393":1,"35394":1,"35395":2,"35396":2,"35397":2,"35398":4,"35399":1,"35400":1,"35401":3,"35402":3,"35403":2,"35404":5,"35405":2,"35406":2,"35407":3,"35408":3,"35409":1,"35410":1,"35411":5,"35412":2,"35413":3,"35414":3,"35415":1,"35416":5,"35417":3,"35418":4,"35419":4,"35420":3,"35421":4,"35422":1,"35423":4,"35424":3,"35425":3,"35426":3,"35427":2,"35428":5,"35429":3,"35430":4,"35431":4,"35432":4,"35433":3,"35434":1,"35435":4,"35436":4,"35437":3,"35438":3,"35439":3,"35440":1,"35441":2,"35442":4,"35443":1,"35444":4,"35445":4,"35446":4,"35447":2,"35448":3,"35449":2,"35450":3,"35451":3,"35452":4,"35453":4,"35454":4,"35455":4,"35456":5,"35457":3,"35458":4,"35459":3,"35460":4,"35461":4,"35462":1,"35463":3,"35464":3,"35465":4,"35466":4,"35467":1,"35468":3,"35469":5,"35470":2,"35471":5,"35472":1,"35473":3,"35474":5,"35475":2,"35476":4,"35477":3,"35478":3,"35479":4,"35480":3,"35481":1,"35482":5,"35483":2,"35484":2,"35485":2,"35486":4,"35487":3,"35488":2,"35489":3,"35490":3,"35491":3,"35492":5,"35493":2,"35494":4,"35495":2,"35496":5,"35497":1,"35498":2,"35499":3,"35500":3,"35501":4,"35502":2,"35503":4,"35504":1,"35505":2,"35506":4,"35507":4,"35508":4,"35509":1,"35510":1,"35511":1,"35512":1,"35513":4,"35514":2,"35515":4,"35516":4,"35517":3,"35518":2,"35519":3,"35520":3,"35521":2,"35522":3,"35523":4,"35524":3,"35525":3,"35526":2,"35527":1,"35528":2,"35529":4,"35530":3,"35531":2,"35532":4,"35533":3,"35534":4,"35535":3,"35536":3,"35537":4,"35538":3,"35539":1,"35540":3,"35541":4,"35542":3,"35543":3,"35544":2,"35545":4,"35546":3,"35547":3,"35548":4,"35549":2,"35550":3,"35551":3,"35552":3,"35553":3,"35554":1,"35555":2,"35556":4,"35557":3,"35558":1,"35559":2,"35560":4,"35561":2,"35562":3,"35563":3,"35564":5,"35565":3,"35566":1,"35567":4,"35568":4,"35569":3,"35570":3,"35571":2,"35572":4,"35573":2,"35574":2,"35575":3,"35576":4,"35577":3,"35578":3,"35579":3,"35580":2,"35581":5,"35582":3,"35583":3,"35584":2,"35585":2,"35586":4,"35587":3,"35588":3,"35589":4,"35590":2,"35591":5,"35592":1,"35593":2,"35594":1,"35595":4,"35596":2,"35597":5,"35598":4,"35599":3,"35600":4,"35601":3,"35602":1,"35603":4,"35604":1,"35605":3,"35606":3,"35607":2,"35608":3,"35609":4,"35610":1,"35611":3,"35612":1,"35613":4,"35614":3,"35615":2,"35616":4,"35617":4,"35618":4,"35619":3,"35620":5,"35621":1,"35622":3,"35623":4,"35624":3,"35625":3,"35626":3,"35627":3,"35628":4,"35629":2,"35630":5,"35631":1,"35632":2,"35633":3,"35634":3,"35635":4,"35636":4,"35637":2,"35638":2,"35639":4,"35640":3,"35641":2,"35642":3,"35643":2,"35644":2,"35645":3,"35646":3,"35647":3,"35648":4,"35649":2,"35650":3,"35651":3,"35652":3,"35653":3,"35654":3,"35655":3,"35656":2,"35657":3,"35658":1,"35659":3,"35660":2,"35661":2,"35662":2,"35663":3,"35664":3,"35665":5,"35666":4,"35667":3,"35668":3,"35669":2,"35670":3,"35671":2,"35672":1,"35673":5,"35674":1,"35675":3,"35676":3,"35677":3,"35678":4,"35679":2,"35680":1,"35681":3,"35682":4,"35683":4,"35684":2,"35685":4,"35686":1,"35687":4,"35688":5,"35689":3,"35690":2,"35691":3,"35692":2,"35693":1,"35694":3,"35695":1,"35696":3,"35697":2,"35698":2,"35699":3,"35700":1,"35701":2,"35702":2,"35703":2,"35704":5,"35705":4,"35706":4,"35707":3,"35708":3,"35709":3,"35710":4,"35711":5,"35712":1,"35713":4,"35714":3,"35715":3,"35716":2,"35717":3,"35718":2,"35719":4,"35720":3,"35721":3,"35722":5,"35723":3,"35724":2,"35725":4,"35726":4,"35727":2,"35728":3,"35729":4,"35730":1,"35731":2,"35732":3,"35733":2,"35734":4,"35735":5,"35736":4,"35737":1,"35738":4,"35739":4,"35740":4,"35741":4,"35742":3,"35743":1,"35744":3,"35745":2,"35746":3,"35747":4,"35748":3,"35749":3,"35750":4,"35751":3,"35752":5,"35753":3,"35754":3,"35755":2,"35756":4,"35757":3,"35758":3,"35759":4,"35760":4,"35761":1,"35762":3,"35763":2,"35764":4,"35765":2,"35766":2,"35767":2,"35768":3,"35769":1,"35770":3,"35771":2,"35772":2,"35773":3,"35774":3,"35775":3,"35776":2,"35777":3,"35778":3,"35779":3,"35780":5,"35781":4,"35782":3,"35783":3,"35784":2,"35785":4,"35786":1,"35787":3,"35788":4,"35789":3,"35790":2,"35791":3,"35792":2,"35793":4,"35794":5,"35795":2,"35796":1,"35797":3,"35798":4,"35799":4,"35800":5,"35801":3,"35802":4,"35803":4,"35804":3,"35805":3,"35806":3,"35807":3,"35808":2,"35809":4,"35810":2,"35811":4,"35812":4,"35813":1,"35814":3,"35815":3,"35816":4,"35817":2,"35818":3,"35819":4,"35820":3,"35821":2,"35822":3,"35823":3,"35824":3,"35825":4,"35826":4,"35827":3,"35828":1,"35829":3,"35830":3,"35831":4,"35832":3,"35833":3,"35834":2,"35835":4,"35836":3,"35837":3,"35838":4,"35839":4,"35840":1,"35841":1,"35842":3,"35843":1,"35844":3,"35845":4,"35846":1,"35847":4,"35848":2,"35849":5,"35850":3,"35851":4,"35852":3,"35853":3,"35854":5,"35855":3,"35856":4,"35857":3,"35858":1,"35859":4,"35860":1,"35861":3,"35862":4,"35863":2,"35864":3,"35865":3,"35866":2,"35867":4,"35868":2,"35869":2,"35870":2,"35871":2,"35872":2,"35873":4,"35874":2,"35875":4,"35876":1,"35877":5,"35878":4,"35879":2,"35880":5,"35881":3,"35882":3,"35883":4,"35884":4,"35885":3,"35886":4,"35887":3,"35888":2,"35889":2,"35890":2,"35891":3,"35892":2,"35893":2,"35894":1,"35895":1,"35896":3,"35897":5,"35898":3,"35899":4,"35900":3,"35901":3,"35902":1,"35903":4,"35904":2,"35905":3,"35906":3,"35907":5,"35908":3,"35909":3,"35910":3,"35911":3,"35912":5,"35913":1,"35914":4,"35915":2,"35916":2,"35917":3,"35918":4,"35919":1,"35920":3,"35921":4,"35922":3,"35923":4,"35924":4,"35925":4,"35926":2,"35927":3,"35928":2,"35929":4,"35930":1,"35931":3,"35932":4,"35933":5,"35934":5,"35935":4,"35936":3,"35937":2,"35938":3,"35939":3,"35940":1,"35941":4,"35942":3,"35943":2,"35944":3,"35945":3,"35946":4,"35947":4,"35948":3,"35949":2,"35950":1,"35951":3,"35952":2,"35953":1,"35954":2,"35955":2,"35956":4,"35957":2,"35958":3,"35959":1,"35960":3,"35961":3,"35962":3,"35963":3,"35964":4,"35965":4,"35966":3,"35967":3,"35968":3,"35969":4,"35970":4,"35971":2,"35972":3,"35973":3,"35974":3,"35975":4,"35976":5,"35977":3,"35978":2,"35979":3,"35980":5,"35981":4,"35982":4,"35983":4,"35984":4,"35985":3,"35986":4,"35987":3,"35988":5,"35989":3,"35990":4,"35991":3,"35992":2,"35993":4,"35994":2,"35995":3,"35996":4,"35997":4,"35998":3,"35999":2,"36000":2,"36001":3,"36002":4,"36003":1,"36004":4,"36005":4,"36006":5,"36007":4,"36008":3,"36009":3,"36010":4,"36011":1,"36012":3,"36013":3,"36014":2,"36015":3,"36016":2,"36017":2,"36018":5,"36019":4,"36020":4,"36021":5,"36022":3,"36023":2,"36024":5,"36025":2,"36026":1,"36027":1,"36028":4,"36029":2,"36030":4,"36031":2,"36032":4,"36033":1,"36034":3,"36035":1,"36036":3,"36037":3,"36038":3,"36039":5,"36040":3,"36041":2,"36042":3,"36043":5,"36044":5,"36045":4,"36046":2,"36047":4,"36048":4,"36049":4,"36050":4,"36051":3,"36052":3,"36053":4,"36054":1,"36055":4,"36056":3,"36057":3,"36058":4,"36059":2,"36060":2,"36061":4,"36062":2,"36063":2,"36064":5,"36065":2,"36066":4,"36067":2,"36068":4,"36069":1,"36070":4,"36071":4,"36072":3,"36073":4,"36074":3,"36075":4,"36076":3,"36077":4,"36078":5,"36079":3,"36080":3,"36081":3,"36082":2,"36083":4,"36084":4,"36085":4,"36086":5,"36087":3,"36088":3,"36089":2,"36090":4,"36091":4,"36092":2,"36093":1,"36094":3,"36095":3,"36096":3,"36097":2,"36098":4,"36099":4,"36100":3,"36101":4,"36102":3,"36103":2,"36104":4,"36105":1,"36106":3,"36107":2,"36108":5,"36109":4,"36110":3,"36111":2,"36112":4,"36113":3,"36114":1,"36115":4,"36116":3,"36117":4,"36118":3,"36119":2,"36120":3,"36121":3,"36122":3,"36123":3,"36124":2,"36125":2,"36126":4,"36127":3,"36128":1,"36129":4,"36130":4,"36131":2,"36132":3,"36133":4,"36134":2,"36135":3,"36136":2,"36137":3,"36138":1,"36139":4,"36140":2,"36141":5,"36142":4,"36143":3,"36144":4,"36145":4,"36146":3,"36147":3,"36148":4,"36149":2,"36150":4,"36151":3,"36152":2,"36153":2,"36154":4,"36155":2,"36156":5,"36157":3,"36158":3,"36159":3,"36160":2,"36161":3,"36162":1,"36163":2,"36164":2,"36165":4,"36166":4,"36167":4,"36168":2,"36169":3,"36170":2,"36171":2,"36172":3,"36173":4,"36174":1,"36175":4,"36176":3,"36177":3,"36178":2,"36179":4,"36180":3,"36181":3,"36182":3,"36183":4,"36184":3,"36185":1,"36186":3,"36187":1,"36188":4,"36189":4,"36190":2,"36191":4,"36192":1,"36193":4,"36194":4,"36195":3,"36196":3,"36197":4,"36198":4,"36199":2,"36200":4,"36201":3,"36202":5,"36203":4,"36204":5,"36205":5,"36206":4,"36207":2,"36208":1,"36209":4,"36210":4,"36211":2,"36212":4,"36213":1,"36214":2,"36215":3,"36216":2,"36217":3,"36218":1,"36219":4,"36220":1,"36221":4,"36222":4,"36223":5,"36224":2,"36225":2,"36226":4,"36227":3,"36228":4,"36229":5,"36230":4,"36231":4,"36232":2,"36233":1,"36234":2,"36235":2,"36236":1,"36237":3,"36238":3,"36239":2,"36240":4,"36241":4,"36242":2,"36243":3,"36244":5,"36245":4,"36246":2,"36247":3,"36248":4,"36249":4,"36250":3,"36251":3,"36252":3,"36253":2,"36254":4,"36255":3,"36256":3,"36257":3,"36258":3,"36259":1,"36260":1,"36261":2,"36262":2,"36263":3,"36264":3,"36265":4,"36266":3,"36267":1,"36268":3,"36269":2,"36270":5,"36271":4,"36272":1,"36273":5,"36274":4,"36275":2,"36276":3,"36277":4,"36278":4,"36279":2,"36280":3,"36281":3,"36282":5,"36283":4,"36284":2,"36285":4,"36286":4,"36287":3,"36288":4,"36289":3,"36290":5,"36291":4,"36292":5,"36293":3,"36294":4,"36295":3,"36296":3,"36297":4,"36298":3,"36299":4,"36300":5,"36301":3,"36302":4,"36303":4,"36304":1,"36305":4,"36306":1,"36307":3,"36308":4,"36309":3,"36310":2,"36311":3,"36312":2,"36313":3,"36314":5,"36315":3,"36316":2,"36317":2,"36318":3,"36319":3,"36320":3,"36321":3,"36322":4,"36323":4,"36324":2,"36325":5,"36326":3,"36327":3,"36328":2,"36329":3,"36330":2,"36331":2,"36332":1,"36333":2,"36334":2,"36335":2,"36336":3,"36337":4,"36338":3,"36339":5,"36340":5,"36341":4,"36342":3,"36343":4,"36344":4,"36345":3,"36346":3,"36347":2,"36348":3,"36349":2,"36350":4,"36351":3,"36352":5,"36353":1,"36354":2,"36355":4,"36356":2,"36357":3,"36358":4,"36359":3,"36360":1,"36361":1,"36362":3,"36363":4,"36364":2,"36365":4,"36366":2,"36367":1,"36368":4,"36369":3,"36370":4,"36371":3,"36372":1,"36373":2,"36374":3,"36375":3,"36376":4,"36377":3,"36378":3,"36379":3,"36380":4,"36381":3,"36382":3,"36383":2,"36384":4,"36385":2,"36386":3,"36387":2,"36388":3,"36389":1,"36390":2,"36391":4,"36392":5,"36393":2,"36394":3,"36395":3,"36396":3,"36397":1,"36398":5,"36399":1,"36400":2,"36401":4,"36402":2,"36403":1,"36404":3,"36405":3,"36406":2,"36407":3,"36408":2,"36409":4,"36410":3,"36411":4,"36412":5,"36413":3,"36414":5,"36415":5,"36416":1,"36417":3,"36418":4,"36419":4,"36420":3,"36421":2,"36422":3,"36423":4,"36424":2,"36425":3,"36426":4,"36427":2,"36428":1,"36429":3,"36430":5,"36431":2,"36432":3,"36433":4,"36434":2,"36435":4,"36436":3,"36437":4,"36438":3,"36439":2,"36440":2,"36441":3,"36442":1,"36443":4,"36444":4,"36445":2,"36446":2,"36447":3,"36448":3,"36449":2,"36450":3,"36451":2,"36452":4,"36453":3,"36454":4,"36455":4,"36456":2,"36457":1,"36458":4,"36459":3,"36460":4,"36461":4,"36462":2,"36463":3,"36464":4,"36465":3,"36466":5,"36467":4,"36468":3,"36469":5,"36470":3,"36471":3,"36472":5,"36473":2,"36474":3,"36475":2,"36476":3,"36477":4,"36478":1,"36479":1,"36480":3,"36481":2,"36482":2,"36483":3,"36484":2,"36485":3,"36486":4,"36487":2,"36488":1,"36489":3,"36490":4,"36491":3,"36492":1,"36493":2,"36494":5,"36495":1,"36496":3,"36497":2,"36498":3,"36499":4,"36500":1,"36501":1,"36502":3,"36503":2,"36504":2,"36505":3,"36506":5,"36507":3,"36508":2,"36509":3,"36510":3,"36511":3,"36512":4,"36513":4,"36514":4,"36515":3,"36516":3,"36517":1,"36518":4,"36519":4,"36520":2,"36521":4,"36522":3,"36523":3,"36524":1,"36525":2,"36526":2,"36527":4,"36528":5,"36529":5,"36530":3,"36531":2,"36532":3,"36533":3,"36534":4,"36535":4,"36536":2,"36537":5,"36538":1,"36539":2,"36540":3,"36541":4,"36542":4,"36543":2,"36544":4,"36545":1,"36546":3,"36547":2,"36548":2,"36549":1,"36550":3,"36551":3,"36552":2,"36553":3,"36554":2,"36555":3,"36556":4,"36557":4,"36558":5,"36559":5,"36560":2,"36561":4,"36562":1,"36563":4,"36564":4,"36565":3,"36566":5,"36567":4,"36568":5,"36569":1,"36570":5,"36571":4,"36572":2,"36573":3,"36574":4,"36575":2,"36576":2,"36577":4,"36578":2,"36579":3,"36580":4,"36581":3,"36582":3,"36583":2,"36584":4,"36585":4,"36586":5,"36587":1,"36588":5,"36589":2,"36590":1,"36591":3,"36592":4,"36593":3,"36594":2,"36595":2,"36596":2,"36597":2,"36598":2,"36599":2,"36600":3,"36601":4,"36602":1,"36603":3,"36604":3,"36605":2,"36606":3,"36607":4,"36608":2,"36609":3,"36610":1,"36611":5,"36612":2,"36613":2,"36614":4,"36615":2,"36616":3,"36617":4,"36618":2,"36619":3,"36620":1,"36621":4,"36622":5,"36623":1,"36624":4,"36625":4,"36626":2,"36627":4,"36628":3,"36629":3,"36630":4,"36631":2,"36632":1,"36633":3,"36634":4,"36635":2,"36636":2,"36637":4,"36638":3,"36639":1,"36640":1,"36641":5,"36642":3,"36643":4,"36644":3,"36645":3,"36646":2,"36647":4,"36648":3,"36649":1,"36650":4,"36651":4,"36652":2,"36653":4,"36654":4,"36655":4,"36656":2,"36657":2,"36658":3,"36659":2,"36660":3,"36661":3,"36662":3,"36663":2,"36664":4,"36665":2,"36666":4,"36667":4,"36668":3,"36669":3,"36670":4,"36671":4,"36672":1,"36673":2,"36674":3,"36675":3,"36676":1,"36677":3,"36678":2,"36679":3,"36680":3,"36681":4,"36682":4,"36683":1,"36684":4,"36685":3,"36686":2,"36687":1,"36688":5,"36689":2,"36690":1,"36691":3,"36692":3,"36693":4,"36694":5,"36695":1,"36696":4,"36697":3,"36698":2,"36699":4,"36700":4,"36701":2,"36702":2,"36703":2,"36704":3,"36705":2,"36706":3,"36707":2,"36708":4,"36709":4,"36710":3,"36711":1,"36712":4,"36713":3,"36714":2,"36715":2,"36716":3,"36717":2,"36718":2,"36719":2,"36720":2,"36721":3,"36722":1,"36723":4,"36724":1,"36725":1,"36726":3,"36727":5,"36728":3,"36729":1,"36730":2,"36731":3,"36732":4,"36733":5,"36734":4,"36735":4,"36736":2,"36737":1,"36738":2,"36739":4,"36740":2,"36741":5,"36742":3,"36743":1,"36744":4,"36745":3,"36746":4,"36747":2,"36748":5,"36749":2,"36750":3,"36751":3,"36752":3,"36753":3,"36754":2,"36755":4,"36756":2,"36757":5,"36758":2,"36759":3,"36760":4,"36761":5,"36762":2,"36763":1,"36764":1,"36765":3,"36766":3,"36767":4,"36768":4,"36769":3,"36770":3,"36771":3,"36772":3,"36773":3,"36774":2,"36775":2,"36776":4,"36777":3,"36778":1,"36779":5,"36780":3,"36781":5,"36782":4,"36783":2,"36784":4,"36785":3,"36786":2,"36787":3,"36788":2,"36789":5,"36790":3,"36791":3,"36792":4,"36793":3,"36794":2,"36795":4,"36796":4,"36797":4,"36798":5,"36799":3,"36800":3,"36801":4,"36802":1,"36803":2,"36804":3,"36805":3,"36806":3,"36807":1,"36808":3,"36809":3,"36810":3,"36811":2,"36812":3,"36813":1,"36814":4,"36815":2,"36816":5,"36817":2,"36818":4,"36819":4,"36820":4,"36821":2,"36822":4,"36823":3,"36824":4,"36825":2,"36826":2,"36827":4,"36828":1,"36829":5,"36830":3,"36831":5,"36832":5,"36833":4,"36834":1,"36835":3,"36836":3,"36837":5,"36838":3,"36839":1,"36840":3,"36841":4,"36842":2,"36843":4,"36844":4,"36845":2,"36846":5,"36847":4,"36848":5,"36849":3,"36850":2,"36851":2,"36852":2,"36853":5,"36854":3,"36855":3,"36856":1,"36857":3,"36858":4,"36859":2,"36860":2,"36861":3,"36862":3,"36863":3,"36864":3,"36865":3,"36866":2,"36867":2,"36868":4,"36869":3,"36870":4,"36871":5,"36872":1,"36873":3,"36874":4,"36875":3,"36876":5,"36877":3,"36878":3,"36879":4,"36880":3,"36881":2,"36882":4,"36883":2,"36884":4,"36885":3,"36886":1,"36887":5,"36888":2,"36889":1,"36890":4,"36891":3,"36892":4,"36893":4,"36894":2,"36895":3,"36896":3,"36897":4,"36898":4,"36899":3,"36900":4,"36901":1,"36902":4,"36903":3,"36904":2,"36905":3,"36906":3,"36907":4,"36908":2,"36909":2,"36910":3,"36911":2,"36912":2,"36913":3,"36914":3,"36915":4,"36916":2,"36917":3,"36918":3,"36919":3,"36920":3,"36921":4,"36922":3,"36923":1,"36924":2,"36925":2,"36926":3,"36927":3,"36928":3,"36929":3,"36930":2,"36931":4,"36932":3,"36933":4,"36934":2,"36935":3,"36936":3,"36937":4,"36938":3,"36939":4,"36940":1,"36941":3,"36942":3,"36943":5,"36944":3,"36945":1,"36946":2,"36947":3,"36948":3,"36949":3,"36950":3,"36951":3,"36952":4,"36953":5,"36954":4,"36955":3,"36956":4,"36957":2,"36958":1,"36959":2,"36960":3,"36961":4,"36962":3,"36963":3,"36964":5,"36965":2,"36966":5,"36967":4,"36968":5,"36969":2,"36970":5,"36971":2,"36972":3,"36973":5,"36974":4,"36975":3,"36976":3,"36977":2,"36978":4,"36979":2,"36980":3,"36981":3,"36982":2,"36983":4,"36984":2,"36985":5,"36986":4,"36987":2,"36988":4,"36989":3,"36990":4,"36991":2,"36992":4,"36993":2,"36994":2,"36995":2,"36996":3,"36997":4,"36998":4,"36999":5,"37000":5,"37001":2,"37002":3,"37003":4,"37004":2,"37005":3,"37006":4,"37007":2,"37008":4,"37009":2,"37010":3,"37011":3,"37012":4,"37013":4,"37014":3,"37015":5,"37016":2,"37017":3,"37018":1,"37019":2,"37020":4,"37021":3,"37022":1,"37023":5,"37024":5,"37025":3,"37026":2,"37027":4,"37028":3,"37029":2,"37030":4,"37031":2,"37032":4,"37033":4,"37034":3,"37035":3,"37036":2,"37037":4,"37038":3,"37039":3,"37040":3,"37041":3,"37042":4,"37043":4,"37044":1,"37045":2,"37046":3,"37047":2,"37048":3,"37049":5,"37050":2,"37051":1,"37052":3,"37053":4,"37054":3,"37055":4,"37056":2,"37057":3,"37058":4,"37059":3,"37060":2,"37061":3,"37062":4,"37063":4,"37064":4,"37065":1,"37066":2,"37067":4,"37068":2,"37069":3,"37070":4,"37071":2,"37072":3,"37073":4,"37074":3,"37075":3,"37076":1,"37077":4,"37078":3,"37079":5,"37080":3,"37081":2,"37082":3,"37083":2,"37084":5,"37085":3,"37086":3,"37087":4,"37088":4,"37089":4,"37090":4,"37091":4,"37092":4,"37093":4,"37094":1,"37095":3,"37096":4,"37097":2,"37098":3,"37099":3,"37100":3,"37101":3,"37102":3,"37103":4,"37104":4,"37105":3,"37106":3,"37107":4,"37108":1,"37109":5,"37110":4,"37111":2,"37112":4,"37113":4,"37114":4,"37115":5,"37116":3,"37117":3,"37118":4,"37119":2,"37120":1,"37121":4,"37122":4,"37123":2,"37124":2,"37125":3,"37126":4,"37127":2,"37128":5,"37129":3,"37130":4,"37131":3,"37132":3,"37133":4,"37134":3,"37135":3,"37136":3,"37137":2,"37138":4,"37139":4,"37140":3,"37141":3,"37142":4,"37143":3,"37144":4,"37145":2,"37146":4,"37147":2,"37148":3,"37149":3,"37150":4,"37151":3,"37152":2,"37153":3,"37154":4,"37155":4,"37156":1,"37157":2,"37158":4,"37159":4,"37160":3,"37161":4,"37162":3,"37163":3,"37164":4,"37165":3,"37166":4,"37167":3,"37168":4,"37169":3,"37170":4,"37171":1,"37172":1,"37173":4,"37174":4,"37175":3,"37176":2,"37177":2,"37178":2,"37179":1,"37180":5,"37181":4,"37182":3,"37183":1,"37184":2,"37185":4,"37186":3,"37187":4,"37188":3,"37189":2,"37190":5,"37191":5,"37192":5,"37193":5,"37194":4,"37195":5,"37196":1,"37197":2,"37198":2,"37199":2,"37200":3,"37201":4,"37202":3,"37203":3,"37204":5,"37205":3,"37206":4,"37207":4,"37208":3,"37209":1,"37210":3,"37211":2,"37212":4,"37213":3,"37214":2,"37215":3,"37216":4,"37217":3,"37218":3,"37219":1,"37220":3,"37221":4,"37222":2,"37223":3,"37224":2,"37225":2,"37226":4,"37227":4,"37228":5,"37229":4,"37230":4,"37231":2,"37232":3,"37233":1,"37234":1,"37235":2,"37236":3,"37237":4,"37238":4,"37239":3,"37240":2,"37241":4,"37242":2,"37243":3,"37244":3,"37245":4,"37246":2,"37247":4,"37248":3,"37249":3,"37250":2,"37251":2,"37252":2,"37253":3,"37254":4,"37255":4,"37256":3,"37257":4,"37258":3,"37259":2,"37260":3,"37261":2,"37262":3,"37263":3,"37264":4,"37265":1,"37266":4,"37267":2,"37268":3,"37269":4,"37270":1,"37271":5,"37272":3,"37273":3,"37274":1,"37275":4,"37276":4,"37277":2,"37278":1,"37279":3,"37280":4,"37281":5,"37282":4,"37283":3,"37284":3,"37285":3,"37286":3,"37287":2,"37288":2,"37289":2,"37290":4,"37291":2,"37292":3,"37293":2,"37294":5,"37295":1,"37296":4,"37297":3,"37298":4,"37299":1,"37300":2,"37301":3,"37302":2,"37303":4,"37304":4,"37305":3,"37306":2,"37307":3,"37308":3,"37309":2,"37310":2,"37311":2,"37312":2,"37313":3,"37314":3,"37315":4,"37316":3,"37317":2,"37318":4,"37319":4,"37320":2,"37321":1,"37322":4,"37323":3,"37324":3,"37325":2,"37326":1,"37327":3,"37328":3,"37329":2,"37330":1,"37331":4,"37332":2,"37333":4,"37334":1,"37335":4,"37336":4,"37337":3,"37338":2,"37339":4,"37340":1,"37341":2,"37342":4,"37343":2,"37344":2,"37345":2,"37346":3,"37347":4,"37348":3,"37349":1,"37350":3,"37351":2,"37352":4,"37353":4,"37354":4,"37355":4,"37356":4,"37357":5,"37358":1,"37359":2,"37360":2,"37361":3,"37362":5,"37363":3,"37364":4,"37365":3,"37366":3,"37367":4,"37368":3,"37369":1,"37370":2,"37371":5,"37372":3,"37373":1,"37374":3,"37375":4,"37376":3,"37377":4,"37378":4,"37379":3,"37380":3,"37381":3,"37382":3,"37383":2,"37384":3,"37385":4,"37386":3,"37387":2,"37388":4,"37389":5,"37390":1,"37391":4,"37392":3,"37393":4,"37394":3,"37395":4,"37396":1,"37397":2,"37398":3,"37399":2,"37400":4,"37401":3,"37402":2,"37403":2,"37404":2,"37405":3,"37406":4,"37407":2,"37408":3,"37409":5,"37410":2,"37411":3,"37412":3,"37413":5,"37414":2,"37415":3,"37416":1,"37417":4,"37418":2,"37419":3,"37420":2,"37421":4,"37422":2,"37423":1,"37424":1,"37425":1,"37426":3,"37427":4,"37428":5,"37429":5,"37430":2,"37431":3,"37432":2,"37433":5,"37434":1,"37435":1,"37436":4,"37437":4,"37438":3,"37439":2,"37440":3,"37441":4,"37442":5,"37443":2,"37444":2,"37445":4,"37446":4,"37447":3,"37448":4,"37449":2,"37450":3,"37451":3,"37452":4,"37453":2,"37454":4,"37455":4,"37456":4,"37457":2,"37458":2,"37459":3,"37460":2,"37461":3,"37462":3,"37463":4,"37464":4,"37465":4,"37466":3,"37467":3,"37468":4,"37469":2,"37470":3,"37471":3,"37472":2,"37473":4,"37474":3,"37475":3,"37476":2,"37477":2,"37478":5,"37479":4,"37480":5,"37481":1,"37482":3,"37483":4,"37484":2,"37485":2,"37486":5,"37487":1,"37488":3,"37489":5,"37490":4,"37491":2,"37492":3,"37493":1,"37494":4,"37495":3,"37496":1,"37497":5,"37498":3,"37499":3,"37500":4,"37501":3,"37502":3,"37503":2,"37504":3,"37505":2,"37506":2,"37507":3,"37508":1,"37509":4,"37510":4,"37511":2,"37512":2,"37513":2,"37514":3,"37515":4,"37516":4,"37517":3,"37518":5,"37519":3,"37520":3,"37521":3,"37522":1,"37523":3,"37524":5,"37525":4,"37526":1,"37527":4,"37528":3,"37529":1,"37530":4,"37531":4,"37532":2,"37533":1,"37534":3,"37535":4,"37536":4,"37537":5,"37538":3,"37539":1,"37540":1,"37541":4,"37542":3,"37543":3,"37544":3,"37545":3,"37546":3,"37547":4,"37548":3,"37549":2,"37550":3,"37551":2,"37552":3,"37553":3,"37554":4,"37555":2,"37556":4,"37557":5,"37558":2,"37559":2,"37560":2,"37561":4,"37562":1,"37563":3,"37564":3,"37565":3,"37566":3,"37567":3,"37568":5,"37569":4,"37570":3,"37571":4,"37572":1,"37573":3,"37574":3,"37575":2,"37576":1,"37577":4,"37578":3,"37579":4,"37580":2,"37581":4,"37582":5,"37583":3,"37584":5,"37585":2,"37586":3,"37587":1,"37588":4,"37589":3,"37590":4,"37591":2,"37592":1,"37593":1,"37594":5,"37595":3,"37596":2,"37597":4,"37598":3,"37599":1,"37600":3,"37601":4,"37602":1,"37603":2,"37604":4,"37605":2,"37606":4,"37607":3,"37608":4,"37609":4,"37610":4,"37611":4,"37612":1,"37613":3,"37614":3,"37615":1,"37616":3,"37617":3,"37618":3,"37619":2,"37620":4,"37621":2,"37622":2,"37623":2,"37624":3,"37625":3,"37626":4,"37627":3,"37628":2,"37629":4,"37630":3,"37631":3,"37632":2,"37633":2,"37634":2,"37635":1,"37636":3,"37637":1,"37638":2,"37639":3,"37640":4,"37641":4,"37642":3,"37643":4,"37644":1,"37645":5,"37646":2,"37647":2,"37648":3,"37649":2,"37650":5,"37651":5,"37652":2,"37653":4,"37654":2,"37655":1,"37656":2,"37657":3,"37658":5,"37659":3,"37660":4,"37661":3,"37662":2,"37663":3,"37664":4,"37665":3,"37666":2,"37667":3,"37668":4,"37669":3,"37670":2,"37671":1,"37672":1,"37673":2,"37674":3,"37675":3,"37676":5,"37677":3,"37678":3,"37679":4,"37680":4,"37681":2,"37682":3,"37683":3,"37684":3,"37685":1,"37686":2,"37687":2,"37688":4,"37689":4,"37690":4,"37691":3,"37692":3,"37693":4,"37694":4,"37695":5,"37696":4,"37697":5,"37698":3,"37699":1,"37700":2,"37701":4,"37702":3,"37703":5,"37704":3,"37705":4,"37706":2,"37707":3,"37708":3,"37709":1,"37710":4,"37711":3,"37712":2,"37713":2,"37714":4,"37715":3,"37716":4,"37717":3,"37718":2,"37719":1,"37720":4,"37721":4,"37722":3,"37723":3,"37724":2,"37725":2,"37726":3,"37727":4,"37728":4,"37729":3,"37730":3,"37731":1,"37732":4,"37733":4,"37734":3,"37735":2,"37736":3,"37737":2,"37738":1,"37739":1,"37740":4,"37741":3,"37742":3,"37743":4,"37744":2,"37745":4,"37746":3,"37747":4,"37748":1,"37749":5,"37750":2,"37751":4,"37752":3,"37753":2,"37754":3,"37755":4,"37756":1,"37757":3,"37758":4,"37759":5,"37760":1,"37761":5,"37762":3,"37763":3,"37764":3,"37765":3,"37766":5,"37767":2,"37768":1,"37769":2,"37770":2,"37771":4,"37772":5,"37773":1,"37774":3,"37775":3,"37776":3,"37777":2,"37778":3,"37779":4,"37780":3,"37781":3,"37782":4,"37783":3,"37784":3,"37785":3,"37786":4,"37787":4,"37788":2,"37789":4,"37790":3,"37791":4,"37792":3,"37793":2,"37794":5,"37795":3,"37796":2,"37797":3,"37798":4,"37799":2,"37800":4,"37801":4,"37802":3,"37803":4,"37804":3,"37805":4,"37806":3,"37807":4,"37808":3,"37809":2,"37810":5,"37811":2,"37812":3,"37813":2,"37814":3,"37815":3,"37816":1,"37817":2,"37818":3,"37819":3,"37820":2,"37821":4,"37822":4,"37823":4,"37824":4,"37825":2,"37826":3,"37827":5,"37828":3,"37829":3,"37830":4,"37831":5,"37832":3,"37833":4,"37834":2,"37835":2,"37836":3,"37837":1,"37838":4,"37839":4,"37840":2,"37841":5,"37842":3,"37843":4,"37844":3,"37845":3,"37846":1,"37847":3,"37848":4,"37849":2,"37850":2,"37851":3,"37852":2,"37853":3,"37854":3,"37855":2,"37856":3,"37857":4,"37858":2,"37859":2,"37860":3,"37861":4,"37862":3,"37863":2,"37864":3,"37865":3,"37866":1,"37867":3,"37868":4,"37869":4,"37870":3,"37871":3,"37872":4,"37873":3,"37874":4,"37875":2,"37876":3,"37877":1,"37878":4,"37879":3,"37880":4,"37881":3,"37882":4,"37883":2,"37884":2,"37885":2,"37886":4,"37887":5,"37888":4,"37889":3,"37890":3,"37891":2,"37892":4,"37893":4,"37894":4,"37895":4,"37896":4,"37897":1,"37898":4,"37899":2,"37900":2,"37901":1,"37902":3,"37903":1,"37904":3,"37905":3,"37906":2,"37907":3,"37908":2,"37909":4,"37910":2,"37911":4,"37912":4,"37913":2,"37914":4,"37915":3,"37916":2,"37917":2,"37918":1,"37919":4,"37920":2,"37921":2,"37922":5,"37923":3,"37924":4,"37925":4,"37926":1,"37927":3,"37928":4,"37929":2,"37930":3,"37931":3,"37932":3,"37933":4,"37934":3,"37935":4,"37936":1,"37937":4,"37938":2,"37939":4,"37940":4,"37941":1,"37942":2,"37943":3,"37944":4,"37945":4,"37946":3,"37947":3,"37948":5,"37949":2,"37950":4,"37951":5,"37952":1,"37953":3,"37954":4,"37955":5,"37956":3,"37957":3,"37958":4,"37959":2,"37960":1,"37961":2,"37962":4,"37963":3,"37964":4,"37965":3,"37966":4,"37967":3,"37968":3,"37969":2,"37970":4,"37971":5,"37972":3,"37973":3,"37974":4,"37975":3,"37976":3,"37977":3,"37978":3,"37979":3,"37980":3,"37981":4,"37982":5,"37983":2,"37984":3,"37985":5,"37986":3,"37987":2,"37988":1,"37989":3,"37990":2,"37991":3,"37992":2,"37993":4,"37994":5,"37995":4,"37996":3,"37997":2,"37998":1,"37999":3,"38000":2,"38001":2,"38002":1,"38003":2,"38004":5,"38005":3,"38006":3,"38007":2,"38008":3,"38009":2,"38010":2,"38011":4,"38012":3,"38013":2,"38014":4,"38015":4,"38016":2,"38017":2,"38018":1,"38019":4,"38020":1,"38021":4,"38022":3,"38023":3,"38024":3,"38025":5,"38026":5,"38027":3,"38028":4,"38029":2,"38030":3,"38031":5,"38032":1,"38033":4,"38034":4,"38035":4,"38036":3,"38037":3,"38038":2,"38039":3,"38040":3,"38041":2,"38042":4,"38043":3,"38044":4,"38045":2,"38046":3,"38047":2,"38048":4,"38049":2,"38050":3,"38051":1,"38052":3,"38053":4,"38054":3,"38055":2,"38056":4,"38057":3,"38058":3,"38059":3,"38060":3,"38061":4,"38062":5,"38063":4,"38064":5,"38065":2,"38066":4,"38067":2,"38068":3,"38069":4,"38070":3,"38071":2,"38072":4,"38073":3,"38074":4,"38075":3,"38076":4,"38077":3,"38078":1,"38079":3,"38080":3,"38081":2,"38082":1,"38083":4,"38084":3,"38085":3,"38086":1,"38087":5,"38088":1,"38089":3,"38090":3,"38091":3,"38092":4,"38093":2,"38094":4,"38095":3,"38096":3,"38097":3,"38098":3,"38099":2,"38100":2,"38101":5,"38102":1,"38103":1,"38104":3,"38105":4,"38106":3,"38107":4,"38108":4,"38109":5,"38110":3,"38111":4,"38112":2,"38113":3,"38114":3,"38115":1,"38116":5,"38117":2,"38118":4,"38119":3,"38120":3,"38121":4,"38122":1,"38123":3,"38124":5,"38125":4,"38126":5,"38127":2,"38128":3,"38129":5,"38130":4,"38131":3,"38132":3,"38133":1,"38134":5,"38135":5,"38136":2,"38137":4,"38138":3,"38139":3,"38140":3,"38141":4,"38142":3,"38143":1,"38144":3,"38145":5,"38146":4,"38147":5,"38148":3,"38149":4,"38150":3,"38151":4,"38152":3,"38153":4,"38154":3,"38155":5,"38156":4,"38157":2,"38158":4,"38159":4,"38160":5,"38161":3,"38162":3,"38163":3,"38164":2,"38165":4,"38166":3,"38167":4,"38168":2,"38169":5,"38170":4,"38171":3,"38172":3,"38173":3,"38174":4,"38175":3,"38176":4,"38177":2,"38178":2,"38179":2,"38180":3,"38181":4,"38182":3,"38183":3,"38184":4,"38185":3,"38186":5,"38187":3,"38188":3,"38189":4,"38190":2,"38191":2,"38192":4,"38193":1,"38194":2,"38195":3,"38196":2,"38197":3,"38198":2,"38199":2,"38200":1,"38201":1,"38202":3,"38203":4,"38204":4,"38205":2,"38206":2,"38207":4,"38208":3,"38209":2,"38210":2,"38211":3,"38212":4,"38213":3,"38214":4,"38215":2,"38216":4,"38217":1,"38218":4,"38219":1,"38220":2,"38221":3,"38222":3,"38223":3,"38224":4,"38225":5,"38226":3,"38227":4,"38228":2,"38229":1,"38230":2,"38231":4,"38232":4,"38233":3,"38234":4,"38235":2,"38236":3,"38237":2,"38238":3,"38239":1,"38240":3,"38241":2,"38242":2,"38243":4,"38244":3,"38245":4,"38246":4,"38247":2,"38248":3,"38249":2,"38250":3,"38251":3,"38252":4,"38253":5,"38254":4,"38255":4,"38256":3,"38257":4,"38258":3,"38259":2,"38260":3,"38261":3,"38262":4,"38263":3,"38264":3,"38265":3,"38266":2,"38267":1,"38268":4,"38269":2,"38270":4,"38271":4,"38272":4,"38273":3,"38274":4,"38275":3,"38276":4,"38277":3,"38278":3,"38279":4,"38280":4,"38281":2,"38282":2,"38283":3,"38284":5,"38285":4,"38286":2,"38287":3,"38288":3,"38289":4,"38290":4,"38291":3,"38292":4,"38293":4,"38294":3,"38295":4,"38296":1,"38297":4,"38298":3,"38299":3,"38300":4,"38301":4,"38302":3,"38303":1,"38304":4,"38305":2,"38306":1,"38307":2,"38308":2,"38309":1,"38310":5,"38311":3,"38312":2,"38313":2,"38314":2,"38315":3,"38316":2,"38317":3,"38318":2,"38319":4,"38320":3,"38321":5,"38322":4,"38323":3,"38324":2,"38325":3,"38326":5,"38327":3,"38328":5,"38329":5,"38330":3,"38331":2,"38332":4,"38333":4,"38334":1,"38335":3,"38336":4,"38337":1,"38338":2,"38339":3,"38340":4,"38341":3,"38342":1,"38343":3,"38344":2,"38345":3,"38346":3,"38347":5,"38348":3,"38349":2,"38350":5,"38351":1,"38352":2,"38353":5,"38354":3,"38355":1,"38356":3,"38357":3,"38358":4,"38359":2,"38360":3,"38361":2,"38362":5,"38363":2,"38364":3,"38365":2,"38366":2,"38367":4,"38368":5,"38369":4,"38370":2,"38371":3,"38372":5,"38373":3,"38374":5,"38375":2,"38376":3,"38377":3,"38378":4,"38379":3,"38380":3,"38381":3,"38382":2,"38383":1,"38384":2,"38385":3,"38386":2,"38387":4,"38388":2,"38389":3,"38390":5,"38391":1,"38392":4,"38393":2,"38394":2,"38395":4,"38396":4,"38397":3,"38398":4,"38399":3,"38400":1,"38401":3,"38402":4,"38403":4,"38404":2,"38405":4,"38406":4,"38407":2,"38408":3,"38409":3,"38410":2,"38411":3,"38412":4,"38413":3,"38414":4,"38415":3,"38416":4,"38417":3,"38418":2,"38419":3,"38420":4,"38421":2,"38422":3,"38423":2,"38424":4,"38425":2,"38426":3,"38427":2,"38428":2,"38429":4,"38430":2,"38431":4,"38432":2,"38433":3,"38434":4,"38435":3,"38436":1,"38437":2,"38438":1,"38439":2,"38440":2,"38441":2,"38442":2,"38443":3,"38444":5,"38445":5,"38446":4,"38447":2,"38448":1,"38449":2,"38450":1,"38451":4,"38452":4,"38453":3,"38454":5,"38455":4,"38456":4,"38457":5,"38458":4,"38459":3,"38460":3,"38461":2,"38462":2,"38463":3,"38464":3,"38465":4,"38466":4,"38467":2,"38468":4,"38469":3,"38470":5,"38471":3,"38472":2,"38473":3,"38474":3,"38475":2,"38476":2,"38477":3,"38478":3,"38479":2,"38480":3,"38481":4,"38482":3,"38483":3,"38484":3,"38485":4,"38486":3,"38487":3,"38488":4,"38489":5,"38490":1,"38491":2,"38492":2,"38493":3,"38494":5,"38495":5,"38496":3,"38497":5,"38498":2,"38499":4,"38500":3,"38501":2,"38502":5,"38503":4,"38504":5,"38505":3,"38506":3,"38507":3,"38508":4,"38509":2,"38510":3,"38511":4,"38512":1,"38513":2,"38514":4,"38515":3,"38516":2,"38517":1,"38518":3,"38519":3,"38520":3,"38521":3,"38522":1,"38523":2,"38524":1,"38525":3,"38526":5,"38527":3,"38528":3,"38529":4,"38530":2,"38531":3,"38532":3,"38533":3,"38534":3,"38535":4,"38536":4,"38537":4,"38538":2,"38539":3,"38540":2,"38541":4,"38542":3,"38543":5,"38544":3,"38545":2,"38546":4,"38547":4,"38548":4,"38549":2,"38550":3,"38551":1,"38552":3,"38553":4,"38554":2,"38555":1,"38556":4,"38557":2,"38558":3,"38559":5,"38560":1,"38561":2,"38562":3,"38563":4,"38564":2,"38565":4,"38566":2,"38567":4,"38568":4,"38569":2,"38570":4,"38571":2,"38572":3,"38573":3,"38574":2,"38575":3,"38576":3,"38577":3,"38578":3,"38579":4,"38580":4,"38581":3,"38582":3,"38583":3,"38584":3,"38585":3,"38586":5,"38587":2,"38588":4,"38589":4,"38590":2,"38591":5,"38592":4,"38593":3,"38594":5,"38595":1,"38596":4,"38597":1,"38598":4,"38599":2,"38600":3,"38601":4,"38602":4,"38603":3,"38604":1,"38605":3,"38606":2,"38607":1,"38608":3,"38609":2,"38610":5,"38611":2,"38612":2,"38613":3,"38614":3,"38615":3,"38616":2,"38617":4,"38618":4,"38619":2,"38620":5,"38621":3,"38622":2,"38623":5,"38624":3,"38625":3,"38626":1,"38627":4,"38628":4,"38629":1,"38630":4,"38631":2,"38632":2,"38633":2,"38634":5,"38635":3,"38636":3,"38637":2,"38638":4,"38639":3,"38640":3,"38641":2,"38642":2,"38643":4,"38644":3,"38645":3,"38646":3,"38647":3,"38648":3,"38649":4,"38650":4,"38651":1,"38652":1,"38653":4,"38654":5,"38655":4,"38656":3,"38657":3,"38658":2,"38659":2,"38660":1,"38661":3,"38662":4,"38663":1,"38664":4,"38665":5,"38666":2,"38667":1,"38668":2,"38669":5,"38670":4,"38671":3,"38672":2,"38673":3,"38674":2,"38675":2,"38676":1,"38677":2,"38678":4,"38679":2,"38680":1,"38681":3,"38682":4,"38683":2,"38684":2,"38685":2,"38686":2,"38687":1,"38688":3,"38689":5,"38690":4,"38691":1,"38692":3,"38693":4,"38694":4,"38695":2,"38696":5,"38697":2,"38698":4,"38699":3,"38700":2,"38701":4,"38702":4,"38703":3,"38704":3,"38705":3,"38706":3,"38707":1,"38708":3,"38709":3,"38710":5,"38711":1,"38712":2,"38713":3,"38714":4,"38715":1,"38716":3,"38717":4,"38718":4,"38719":2,"38720":2,"38721":4,"38722":2,"38723":2,"38724":5,"38725":3,"38726":3,"38727":2,"38728":3,"38729":3,"38730":2,"38731":3,"38732":2,"38733":4,"38734":2,"38735":3,"38736":1,"38737":3,"38738":5,"38739":4,"38740":3,"38741":3,"38742":5,"38743":5,"38744":1,"38745":3,"38746":2,"38747":4,"38748":4,"38749":1,"38750":2,"38751":3,"38752":3,"38753":4,"38754":3,"38755":1,"38756":2,"38757":3,"38758":2,"38759":3,"38760":1,"38761":5,"38762":4,"38763":1,"38764":4,"38765":2,"38766":3,"38767":3,"38768":2,"38769":3,"38770":2,"38771":2,"38772":4,"38773":2,"38774":2,"38775":4,"38776":4,"38777":2,"38778":5,"38779":4,"38780":4,"38781":2,"38782":3,"38783":4,"38784":2,"38785":4,"38786":1,"38787":3,"38788":3,"38789":3,"38790":3,"38791":3,"38792":4,"38793":2,"38794":2,"38795":3,"38796":4,"38797":4,"38798":2,"38799":5,"38800":4,"38801":4,"38802":4,"38803":4,"38804":5,"38805":2,"38806":2,"38807":1,"38808":3,"38809":3,"38810":4,"38811":2,"38812":4,"38813":2,"38814":2,"38815":4,"38816":1,"38817":4,"38818":1,"38819":3,"38820":1,"38821":3,"38822":4,"38823":2,"38824":1,"38825":5,"38826":4,"38827":2,"38828":3,"38829":4,"38830":3,"38831":2,"38832":1,"38833":3,"38834":3,"38835":2,"38836":4,"38837":3,"38838":4,"38839":5,"38840":3,"38841":2,"38842":3,"38843":5,"38844":3,"38845":5,"38846":2,"38847":3,"38848":3,"38849":4,"38850":5,"38851":5,"38852":4,"38853":3,"38854":2,"38855":3,"38856":3,"38857":2,"38858":2,"38859":3,"38860":3,"38861":4,"38862":2,"38863":3,"38864":4,"38865":3,"38866":2,"38867":3,"38868":4,"38869":2,"38870":4,"38871":4,"38872":2,"38873":3,"38874":5,"38875":4,"38876":2,"38877":2,"38878":1,"38879":4,"38880":3,"38881":4,"38882":4,"38883":2,"38884":3,"38885":4,"38886":4,"38887":3,"38888":3,"38889":3,"38890":3,"38891":5,"38892":4,"38893":2,"38894":4,"38895":2,"38896":3,"38897":1,"38898":4,"38899":3,"38900":3,"38901":4,"38902":1,"38903":4,"38904":4,"38905":1,"38906":5,"38907":3,"38908":3,"38909":4,"38910":4,"38911":3,"38912":4,"38913":2,"38914":3,"38915":5,"38916":1,"38917":2,"38918":5,"38919":3,"38920":2,"38921":3,"38922":4,"38923":3,"38924":1,"38925":3,"38926":4,"38927":4,"38928":3,"38929":3,"38930":1,"38931":3,"38932":5,"38933":2,"38934":4,"38935":3,"38936":3,"38937":3,"38938":4,"38939":2,"38940":3,"38941":3,"38942":2,"38943":3,"38944":4,"38945":4,"38946":3,"38947":3,"38948":3,"38949":5,"38950":4,"38951":2,"38952":4,"38953":4,"38954":3,"38955":2,"38956":2,"38957":1,"38958":3,"38959":1,"38960":2,"38961":2,"38962":4,"38963":5,"38964":2,"38965":2,"38966":2,"38967":4,"38968":1,"38969":4,"38970":4,"38971":4,"38972":3,"38973":2,"38974":4,"38975":4,"38976":3,"38977":3,"38978":5,"38979":3,"38980":2,"38981":2,"38982":2,"38983":3,"38984":3,"38985":2,"38986":3,"38987":2,"38988":2,"38989":3,"38990":3,"38991":3,"38992":1,"38993":3,"38994":4,"38995":4,"38996":2,"38997":3,"38998":4,"38999":5,"39000":3,"39001":2,"39002":1,"39003":2,"39004":2,"39005":3,"39006":4,"39007":1,"39008":3,"39009":2,"39010":3,"39011":3,"39012":2,"39013":2,"39014":3,"39015":3,"39016":3,"39017":2,"39018":3,"39019":3,"39020":2,"39021":4,"39022":3,"39023":4,"39024":3,"39025":3,"39026":5,"39027":1,"39028":3,"39029":4,"39030":4,"39031":4,"39032":3,"39033":4,"39034":2,"39035":4,"39036":3,"39037":3,"39038":4,"39039":3,"39040":5,"39041":4,"39042":3,"39043":1,"39044":1,"39045":4,"39046":4,"39047":4,"39048":4,"39049":2,"39050":2,"39051":4,"39052":1,"39053":3,"39054":4,"39055":2,"39056":2,"39057":3,"39058":4,"39059":4,"39060":1,"39061":3,"39062":4,"39063":3,"39064":2,"39065":2,"39066":4,"39067":4,"39068":1,"39069":4,"39070":3,"39071":3,"39072":5,"39073":2,"39074":3,"39075":3,"39076":5,"39077":3,"39078":4,"39079":3,"39080":3,"39081":3,"39082":4,"39083":3,"39084":2,"39085":4,"39086":2,"39087":4,"39088":4,"39089":3,"39090":5,"39091":4,"39092":2,"39093":4,"39094":5,"39095":3,"39096":4,"39097":4,"39098":4,"39099":2,"39100":2,"39101":3,"39102":4,"39103":4,"39104":3,"39105":5,"39106":4,"39107":2,"39108":4,"39109":5,"39110":4,"39111":4,"39112":2,"39113":4,"39114":4,"39115":2,"39116":4,"39117":4,"39118":3,"39119":1,"39120":5,"39121":2,"39122":3,"39123":2,"39124":4,"39125":4,"39126":3,"39127":1,"39128":3,"39129":1,"39130":4,"39131":4,"39132":3,"39133":2,"39134":4,"39135":2,"39136":4,"39137":3,"39138":3,"39139":3,"39140":4,"39141":4,"39142":2,"39143":1,"39144":2,"39145":2,"39146":3,"39147":4,"39148":4,"39149":4,"39150":1,"39151":2,"39152":5,"39153":3,"39154":1,"39155":3,"39156":1,"39157":3,"39158":4,"39159":5,"39160":4,"39161":2,"39162":4,"39163":3,"39164":3,"39165":2,"39166":3,"39167":3,"39168":1,"39169":3,"39170":4,"39171":4,"39172":3,"39173":4,"39174":3,"39175":2,"39176":5,"39177":2,"39178":3,"39179":4,"39180":2,"39181":3,"39182":2,"39183":4,"39184":5,"39185":2,"39186":3,"39187":1,"39188":1,"39189":1,"39190":4,"39191":2,"39192":3,"39193":1,"39194":4,"39195":4,"39196":2,"39197":5,"39198":2,"39199":3,"39200":2,"39201":4,"39202":1,"39203":2,"39204":2,"39205":3,"39206":4,"39207":3,"39208":4,"39209":4,"39210":3,"39211":4,"39212":3,"39213":4,"39214":2,"39215":2,"39216":4,"39217":3,"39218":4,"39219":3,"39220":1,"39221":1,"39222":1,"39223":3,"39224":1,"39225":3,"39226":3,"39227":3,"39228":3,"39229":4,"39230":3,"39231":4,"39232":3,"39233":4,"39234":3,"39235":4,"39236":1,"39237":3,"39238":2,"39239":3,"39240":2,"39241":3,"39242":5,"39243":3,"39244":2,"39245":4,"39246":1,"39247":3,"39248":2,"39249":5,"39250":4,"39251":3,"39252":4,"39253":2,"39254":2,"39255":3,"39256":3,"39257":2,"39258":3,"39259":3,"39260":2,"39261":3,"39262":5,"39263":5,"39264":4,"39265":4,"39266":3,"39267":4,"39268":3,"39269":3,"39270":4,"39271":1,"39272":3,"39273":2,"39274":2,"39275":1,"39276":2,"39277":4,"39278":4,"39279":5,"39280":4,"39281":3,"39282":5,"39283":2,"39284":2,"39285":3,"39286":3,"39287":3,"39288":3,"39289":4,"39290":4,"39291":4,"39292":3,"39293":2,"39294":3,"39295":3,"39296":4,"39297":2,"39298":3,"39299":1,"39300":3,"39301":3,"39302":1,"39303":1,"39304":3,"39305":2,"39306":3,"39307":3,"39308":2,"39309":2,"39310":3,"39311":4,"39312":4,"39313":3,"39314":2,"39315":2,"39316":2,"39317":3,"39318":3,"39319":1,"39320":4,"39321":3,"39322":2,"39323":2,"39324":3,"39325":1,"39326":2,"39327":2,"39328":3,"39329":2,"39330":3,"39331":4,"39332":2,"39333":3,"39334":3,"39335":4,"39336":4,"39337":4,"39338":2,"39339":2,"39340":4,"39341":5,"39342":5,"39343":2,"39344":4,"39345":3,"39346":2,"39347":3,"39348":5,"39349":2,"39350":4,"39351":3,"39352":2,"39353":4,"39354":2,"39355":3,"39356":5,"39357":3,"39358":3,"39359":2,"39360":2,"39361":4,"39362":5,"39363":2,"39364":3,"39365":2,"39366":2,"39367":5,"39368":3,"39369":3,"39370":4,"39371":3,"39372":3,"39373":4,"39374":2,"39375":3,"39376":4,"39377":3,"39378":3,"39379":3,"39380":2,"39381":2,"39382":3,"39383":5,"39384":3,"39385":3,"39386":4,"39387":4,"39388":3,"39389":2,"39390":3,"39391":4,"39392":4,"39393":5,"39394":3,"39395":3,"39396":1,"39397":4,"39398":1,"39399":3,"39400":3,"39401":3,"39402":3,"39403":2,"39404":3,"39405":5,"39406":2,"39407":1,"39408":3,"39409":2,"39410":1,"39411":3,"39412":4,"39413":3,"39414":4,"39415":2,"39416":3,"39417":3,"39418":4,"39419":3,"39420":2,"39421":3,"39422":4,"39423":1,"39424":3,"39425":3,"39426":4,"39427":1,"39428":5,"39429":4,"39430":2,"39431":5,"39432":1,"39433":3,"39434":3,"39435":4,"39436":2,"39437":2,"39438":3,"39439":3,"39440":1,"39441":1,"39442":1,"39443":3,"39444":2,"39445":4,"39446":3,"39447":1,"39448":4,"39449":4,"39450":2,"39451":1,"39452":3,"39453":4,"39454":3,"39455":4,"39456":3,"39457":5,"39458":2,"39459":2,"39460":4,"39461":1,"39462":2,"39463":5,"39464":4,"39465":3,"39466":3,"39467":2,"39468":3,"39469":4,"39470":3,"39471":3,"39472":4,"39473":3,"39474":3,"39475":3,"39476":4,"39477":3,"39478":5,"39479":5,"39480":4,"39481":2,"39482":3,"39483":3,"39484":3,"39485":3,"39486":3,"39487":3,"39488":3,"39489":3,"39490":2,"39491":3,"39492":4,"39493":3,"39494":4,"39495":3,"39496":3,"39497":5,"39498":2,"39499":4,"39500":4,"39501":3,"39502":4,"39503":4,"39504":5,"39505":3,"39506":2,"39507":2,"39508":4,"39509":4,"39510":3,"39511":4,"39512":1,"39513":5,"39514":3,"39515":4,"39516":1,"39517":3,"39518":3,"39519":2,"39520":3,"39521":3,"39522":4,"39523":3,"39524":2,"39525":2,"39526":2,"39527":2,"39528":3,"39529":5,"39530":2,"39531":3,"39532":3,"39533":4,"39534":2,"39535":4,"39536":3,"39537":3,"39538":3,"39539":4,"39540":5,"39541":5,"39542":2,"39543":1,"39544":1,"39545":3,"39546":2,"39547":3,"39548":3,"39549":2,"39550":4,"39551":4,"39552":4,"39553":3,"39554":3,"39555":5,"39556":3,"39557":3,"39558":2,"39559":4,"39560":1,"39561":5,"39562":2,"39563":4,"39564":4,"39565":2,"39566":4,"39567":3,"39568":4,"39569":1,"39570":3,"39571":3,"39572":3,"39573":3,"39574":2,"39575":4,"39576":2,"39577":1,"39578":4,"39579":4,"39580":4,"39581":1,"39582":2,"39583":3,"39584":5,"39585":3,"39586":4,"39587":1,"39588":2,"39589":4,"39590":2,"39591":2,"39592":3,"39593":3,"39594":5,"39595":4,"39596":3,"39597":3,"39598":5,"39599":4,"39600":4,"39601":2,"39602":2,"39603":4,"39604":4,"39605":3,"39606":5,"39607":2,"39608":2,"39609":3,"39610":3,"39611":4,"39612":2,"39613":4,"39614":3,"39615":2,"39616":3,"39617":5,"39618":5,"39619":4,"39620":3,"39621":2,"39622":3,"39623":5,"39624":2,"39625":1,"39626":3,"39627":4,"39628":3,"39629":3,"39630":2,"39631":3,"39632":1,"39633":3,"39634":5,"39635":3,"39636":3,"39637":2,"39638":2,"39639":1,"39640":4,"39641":3,"39642":2,"39643":5,"39644":3,"39645":2,"39646":4,"39647":2,"39648":4,"39649":4,"39650":1,"39651":3,"39652":4,"39653":3,"39654":1,"39655":2,"39656":3,"39657":2,"39658":4,"39659":5,"39660":2,"39661":3,"39662":1,"39663":4,"39664":3,"39665":1,"39666":4,"39667":1,"39668":1,"39669":2,"39670":4,"39671":2,"39672":4,"39673":4,"39674":3,"39675":2,"39676":1,"39677":2,"39678":3,"39679":5,"39680":2,"39681":4,"39682":1,"39683":2,"39684":2,"39685":3,"39686":4,"39687":4,"39688":1,"39689":3,"39690":3,"39691":4,"39692":2,"39693":4,"39694":3,"39695":3,"39696":2,"39697":3,"39698":4,"39699":3,"39700":3,"39701":2,"39702":3,"39703":3,"39704":3,"39705":4,"39706":3,"39707":4,"39708":4,"39709":3,"39710":3,"39711":4,"39712":3,"39713":4,"39714":3,"39715":3,"39716":2,"39717":3,"39718":4,"39719":4,"39720":4,"39721":3,"39722":2,"39723":5,"39724":4,"39725":3,"39726":4,"39727":4,"39728":2,"39729":4,"39730":3,"39731":4,"39732":2,"39733":2,"39734":3,"39735":4,"39736":3,"39737":5,"39738":3,"39739":1,"39740":1,"39741":3,"39742":5,"39743":1,"39744":3,"39745":3,"39746":2,"39747":4,"39748":5,"39749":4,"39750":5,"39751":2,"39752":3,"39753":2,"39754":3,"39755":1,"39756":4,"39757":2,"39758":3,"39759":3,"39760":2,"39761":3,"39762":2,"39763":4,"39764":4,"39765":4,"39766":3,"39767":1,"39768":3,"39769":5,"39770":3,"39771":2,"39772":3,"39773":2,"39774":2,"39775":4,"39776":2,"39777":4,"39778":3,"39779":3,"39780":4,"39781":2,"39782":2,"39783":1,"39784":1,"39785":4,"39786":4,"39787":3,"39788":2,"39789":4,"39790":3,"39791":2,"39792":4,"39793":4,"39794":3,"39795":3,"39796":4,"39797":2,"39798":3,"39799":5,"39800":2,"39801":2,"39802":4,"39803":1,"39804":2,"39805":2,"39806":4,"39807":5,"39808":2,"39809":3,"39810":1,"39811":4,"39812":3,"39813":1,"39814":3,"39815":3,"39816":3,"39817":4,"39818":2,"39819":3,"39820":3,"39821":3,"39822":4,"39823":5,"39824":3,"39825":4,"39826":3,"39827":2,"39828":2,"39829":3,"39830":2,"39831":2,"39832":4,"39833":3,"39834":2,"39835":4,"39836":2,"39837":3,"39838":3,"39839":4,"39840":5,"39841":4,"39842":3,"39843":3,"39844":3,"39845":4,"39846":1,"39847":4,"39848":3,"39849":4,"39850":2,"39851":4,"39852":2,"39853":3,"39854":2,"39855":4,"39856":4,"39857":3,"39858":4,"39859":3,"39860":2,"39861":1,"39862":2,"39863":2,"39864":3,"39865":3,"39866":4,"39867":3,"39868":2,"39869":3,"39870":3,"39871":2,"39872":3,"39873":1,"39874":4,"39875":2,"39876":4,"39877":3,"39878":3,"39879":3,"39880":3,"39881":4,"39882":4,"39883":2,"39884":3,"39885":3,"39886":3,"39887":2,"39888":2,"39889":4,"39890":4,"39891":4,"39892":3,"39893":2,"39894":4,"39895":4,"39896":3,"39897":4,"39898":2,"39899":4,"39900":1,"39901":4,"39902":1,"39903":1,"39904":1,"39905":1,"39906":1,"39907":4,"39908":3,"39909":3,"39910":3,"39911":3,"39912":2,"39913":3,"39914":4,"39915":2,"39916":3,"39917":4,"39918":1,"39919":4,"39920":3,"39921":4,"39922":1,"39923":3,"39924":3,"39925":2,"39926":2,"39927":3,"39928":3,"39929":5,"39930":3,"39931":4,"39932":4,"39933":5,"39934":3,"39935":3,"39936":3,"39937":1,"39938":1,"39939":2,"39940":3,"39941":3,"39942":4,"39943":2,"39944":4,"39945":2,"39946":3,"39947":2,"39948":2,"39949":4,"39950":4,"39951":3,"39952":5,"39953":5,"39954":5,"39955":5,"39956":4,"39957":2,"39958":5,"39959":3,"39960":2,"39961":3,"39962":3,"39963":3,"39964":2,"39965":2,"39966":1,"39967":1,"39968":4,"39969":4,"39970":3,"39971":3,"39972":4,"39973":4,"39974":1,"39975":3,"39976":1,"39977":3,"39978":5,"39979":4,"39980":2,"39981":3,"39982":2,"39983":1,"39984":1,"39985":3,"39986":1,"39987":3,"39988":3,"39989":4,"39990":2,"39991":3,"39992":2,"39993":2,"39994":3,"39995":4,"39996":3,"39997":3,"39998":2,"39999":1,"40000":4,"40001":3,"40002":2,"40003":4,"40004":3,"40005":4,"40006":5,"40007":4,"40008":2,"40009":3,"40010":1,"40011":5,"40012":4,"40013":4,"40014":3,"40015":3,"40016":3,"40017":4,"40018":2,"40019":3,"40020":3,"40021":4,"40022":3,"40023":2,"40024":4,"40025":2,"40026":1,"40027":4,"40028":3,"40029":4,"40030":3,"40031":3,"40032":4,"40033":3,"40034":4,"40035":3,"40036":3,"40037":3,"40038":5,"40039":4,"40040":3,"40041":3,"40042":3,"40043":4,"40044":3,"40045":4,"40046":3,"40047":3,"40048":1,"40049":2,"40050":2,"40051":4,"40052":5,"40053":1,"40054":5,"40055":3,"40056":3,"40057":1,"40058":1,"40059":3,"40060":4,"40061":5,"40062":2,"40063":4,"40064":3,"40065":4,"40066":3,"40067":2,"40068":3,"40069":2,"40070":2,"40071":5,"40072":3,"40073":2,"40074":3,"40075":3,"40076":4,"40077":5,"40078":5,"40079":1,"40080":4,"40081":2,"40082":4,"40083":2,"40084":4,"40085":3,"40086":2,"40087":3,"40088":3,"40089":3,"40090":4,"40091":3,"40092":2,"40093":5,"40094":2,"40095":1,"40096":2,"40097":1,"40098":2,"40099":5,"40100":4,"40101":4,"40102":3,"40103":3,"40104":1,"40105":4,"40106":4,"40107":2,"40108":4,"40109":3,"40110":3,"40111":3,"40112":5,"40113":5,"40114":2,"40115":4,"40116":5,"40117":3,"40118":4,"40119":5,"40120":3,"40121":3,"40122":3,"40123":3,"40124":3,"40125":3,"40126":3,"40127":2,"40128":3,"40129":4,"40130":5,"40131":2,"40132":3,"40133":3,"40134":4,"40135":3,"40136":3,"40137":4,"40138":2,"40139":5,"40140":3,"40141":4,"40142":3,"40143":2,"40144":3,"40145":3,"40146":5,"40147":3,"40148":2,"40149":4,"40150":2,"40151":5,"40152":4,"40153":3,"40154":2,"40155":1,"40156":5,"40157":1,"40158":4,"40159":2,"40160":2,"40161":2,"40162":1,"40163":1,"40164":4,"40165":4,"40166":3,"40167":4,"40168":3,"40169":3,"40170":3,"40171":2,"40172":3,"40173":1,"40174":3,"40175":4,"40176":2,"40177":4,"40178":3,"40179":2,"40180":2,"40181":3,"40182":4,"40183":4,"40184":2,"40185":4,"40186":2,"40187":4,"40188":1,"40189":2,"40190":3,"40191":4,"40192":3,"40193":3,"40194":3,"40195":3,"40196":2,"40197":4,"40198":4,"40199":4,"40200":2,"40201":3,"40202":3,"40203":3,"40204":1,"40205":3,"40206":3,"40207":4,"40208":4,"40209":3,"40210":2,"40211":2,"40212":2,"40213":1,"40214":1,"40215":2,"40216":3,"40217":3,"40218":3,"40219":1,"40220":3,"40221":1,"40222":5,"40223":4,"40224":4,"40225":4,"40226":1,"40227":3,"40228":3,"40229":2,"40230":3,"40231":3,"40232":5,"40233":3,"40234":2,"40235":3,"40236":4,"40237":3,"40238":1,"40239":1,"40240":3,"40241":3,"40242":2,"40243":4,"40244":2,"40245":5,"40246":4,"40247":3,"40248":3,"40249":2,"40250":4,"40251":3,"40252":4,"40253":3,"40254":4,"40255":4,"40256":4,"40257":1,"40258":1,"40259":3,"40260":3,"40261":3,"40262":4,"40263":2,"40264":2,"40265":1,"40266":1,"40267":3,"40268":4,"40269":3,"40270":3,"40271":2,"40272":3,"40273":3,"40274":3,"40275":4,"40276":5,"40277":4,"40278":2,"40279":4,"40280":4,"40281":2,"40282":3,"40283":2,"40284":1,"40285":4,"40286":5,"40287":3,"40288":2,"40289":1,"40290":3,"40291":4,"40292":4,"40293":1,"40294":4,"40295":3,"40296":3,"40297":3,"40298":4,"40299":5,"40300":3,"40301":3,"40302":4,"40303":2,"40304":3,"40305":2,"40306":2,"40307":4,"40308":3,"40309":4,"40310":4,"40311":3,"40312":4,"40313":3,"40314":2,"40315":4,"40316":2,"40317":5,"40318":3,"40319":3,"40320":4,"40321":4,"40322":1,"40323":3,"40324":3,"40325":5,"40326":2,"40327":4,"40328":3,"40329":3,"40330":1,"40331":3,"40332":3,"40333":2,"40334":3,"40335":2,"40336":3,"40337":4,"40338":2,"40339":3,"40340":2,"40341":4,"40342":3,"40343":1,"40344":5,"40345":4,"40346":1,"40347":5,"40348":4,"40349":3,"40350":1,"40351":4,"40352":4,"40353":5,"40354":3,"40355":3,"40356":3,"40357":4,"40358":4,"40359":4,"40360":4,"40361":2,"40362":5,"40363":2,"40364":3,"40365":2,"40366":2,"40367":2,"40368":3,"40369":4,"40370":3,"40371":2,"40372":2,"40373":3,"40374":5,"40375":3,"40376":1,"40377":3,"40378":4,"40379":3,"40380":3,"40381":2,"40382":2,"40383":4,"40384":3,"40385":2,"40386":3,"40387":4,"40388":2,"40389":2,"40390":4,"40391":3,"40392":2,"40393":3,"40394":3,"40395":2,"40396":3,"40397":4,"40398":2,"40399":4,"40400":3,"40401":2,"40402":3,"40403":5,"40404":4,"40405":3,"40406":5,"40407":3,"40408":5,"40409":4,"40410":3,"40411":2,"40412":5,"40413":3,"40414":2,"40415":4,"40416":3,"40417":1,"40418":3,"40419":5,"40420":4,"40421":5,"40422":1,"40423":3,"40424":3,"40425":3,"40426":3,"40427":1,"40428":4,"40429":4,"40430":4,"40431":1,"40432":2,"40433":1,"40434":2,"40435":1,"40436":2,"40437":4,"40438":2,"40439":4,"40440":2,"40441":4,"40442":1,"40443":3,"40444":3,"40445":3,"40446":2,"40447":2,"40448":3,"40449":4,"40450":4,"40451":2,"40452":1,"40453":3,"40454":2,"40455":1,"40456":2,"40457":4,"40458":2,"40459":3,"40460":4,"40461":5,"40462":3,"40463":3,"40464":3,"40465":3,"40466":3,"40467":4,"40468":2,"40469":2,"40470":5,"40471":3,"40472":2,"40473":4,"40474":1,"40475":3,"40476":1,"40477":4,"40478":2,"40479":1,"40480":4,"40481":4,"40482":5,"40483":5,"40484":4,"40485":3,"40486":1,"40487":5,"40488":4,"40489":3,"40490":3,"40491":2,"40492":5,"40493":3,"40494":3,"40495":2,"40496":2,"40497":2,"40498":3,"40499":3,"40500":2,"40501":3,"40502":5,"40503":2,"40504":5,"40505":3,"40506":4,"40507":4,"40508":3,"40509":3,"40510":3,"40511":2,"40512":3,"40513":1,"40514":4,"40515":4,"40516":2,"40517":4,"40518":5,"40519":4,"40520":5,"40521":2,"40522":2,"40523":3,"40524":5,"40525":3,"40526":3,"40527":1,"40528":1,"40529":2,"40530":3,"40531":3,"40532":3,"40533":4,"40534":3,"40535":3,"40536":3,"40537":3,"40538":3,"40539":2,"40540":1,"40541":4,"40542":4,"40543":2,"40544":3,"40545":1,"40546":5,"40547":3,"40548":3,"40549":4,"40550":3,"40551":1,"40552":2,"40553":4,"40554":3,"40555":1,"40556":4,"40557":3,"40558":4,"40559":3,"40560":1,"40561":1,"40562":3,"40563":3,"40564":5,"40565":2,"40566":3,"40567":3,"40568":3,"40569":5,"40570":2,"40571":2,"40572":4,"40573":3,"40574":2,"40575":3,"40576":3,"40577":1,"40578":3,"40579":5,"40580":3,"40581":1,"40582":3,"40583":3,"40584":3,"40585":1,"40586":2,"40587":2,"40588":3,"40589":1,"40590":3,"40591":2,"40592":3,"40593":4,"40594":4,"40595":4,"40596":2,"40597":3,"40598":5,"40599":3,"40600":2,"40601":2,"40602":3,"40603":1,"40604":3,"40605":3,"40606":2,"40607":4,"40608":4,"40609":2,"40610":2,"40611":3,"40612":3,"40613":1,"40614":1,"40615":3,"40616":3,"40617":2,"40618":2,"40619":3,"40620":3,"40621":4,"40622":3,"40623":2,"40624":4,"40625":4,"40626":4,"40627":2,"40628":2,"40629":4,"40630":4,"40631":2,"40632":3,"40633":3,"40634":3,"40635":2,"40636":3,"40637":3,"40638":3,"40639":1,"40640":3,"40641":3,"40642":3,"40643":4,"40644":4,"40645":3,"40646":3,"40647":3,"40648":3,"40649":5,"40650":5,"40651":2,"40652":3,"40653":3,"40654":2,"40655":2,"40656":2,"40657":4,"40658":3,"40659":2,"40660":3,"40661":4,"40662":3,"40663":4,"40664":3,"40665":3,"40666":2,"40667":4,"40668":3,"40669":3,"40670":3,"40671":3,"40672":3,"40673":2,"40674":3,"40675":2,"40676":3,"40677":5,"40678":4,"40679":1,"40680":4,"40681":3,"40682":1,"40683":3,"40684":3,"40685":4,"40686":3,"40687":3,"40688":3,"40689":3,"40690":3,"40691":3,"40692":3,"40693":3,"40694":2,"40695":3,"40696":3,"40697":2,"40698":4,"40699":3,"40700":2,"40701":1,"40702":2,"40703":3,"40704":2,"40705":4,"40706":5,"40707":3,"40708":3,"40709":3,"40710":4,"40711":3,"40712":3,"40713":3,"40714":5,"40715":3,"40716":3,"40717":2,"40718":1,"40719":1,"40720":3,"40721":3,"40722":4,"40723":3,"40724":2,"40725":4,"40726":2,"40727":3,"40728":1,"40729":2,"40730":2,"40731":4,"40732":2,"40733":4,"40734":1,"40735":2,"40736":4,"40737":2,"40738":3,"40739":1,"40740":2,"40741":4,"40742":5,"40743":3,"40744":5,"40745":3,"40746":3,"40747":3,"40748":2,"40749":3,"40750":2,"40751":3,"40752":3,"40753":1,"40754":1,"40755":4,"40756":5,"40757":4,"40758":1,"40759":2,"40760":4,"40761":3,"40762":3,"40763":4,"40764":4,"40765":1,"40766":3,"40767":4,"40768":4,"40769":5,"40770":4,"40771":4,"40772":4,"40773":2,"40774":4,"40775":4,"40776":3,"40777":4,"40778":2,"40779":3,"40780":4,"40781":2,"40782":3,"40783":2,"40784":3,"40785":1,"40786":3,"40787":2,"40788":3,"40789":4,"40790":1,"40791":1,"40792":2,"40793":3,"40794":3,"40795":2,"40796":3,"40797":2,"40798":3,"40799":4,"40800":3,"40801":3,"40802":1,"40803":1,"40804":4,"40805":2,"40806":3,"40807":3,"40808":3,"40809":2,"40810":3,"40811":4,"40812":4,"40813":3,"40814":4,"40815":2,"40816":2,"40817":2,"40818":3,"40819":3,"40820":1,"40821":3,"40822":4,"40823":3,"40824":2,"40825":5,"40826":3,"40827":5,"40828":3,"40829":1,"40830":3,"40831":2,"40832":5,"40833":3,"40834":3,"40835":3,"40836":4,"40837":3,"40838":3,"40839":4,"40840":4,"40841":4,"40842":2,"40843":1,"40844":5,"40845":1,"40846":3,"40847":2,"40848":5,"40849":2,"40850":2,"40851":4,"40852":3,"40853":2,"40854":3,"40855":1,"40856":4,"40857":4,"40858":2,"40859":4,"40860":2,"40861":4,"40862":3,"40863":4,"40864":4,"40865":2,"40866":3,"40867":5,"40868":5,"40869":1,"40870":2,"40871":3,"40872":3,"40873":3,"40874":4,"40875":3,"40876":3,"40877":3,"40878":3,"40879":3,"40880":3,"40881":2,"40882":4,"40883":3,"40884":2,"40885":3,"40886":2,"40887":3,"40888":2,"40889":3,"40890":3,"40891":3,"40892":4,"40893":2,"40894":4,"40895":1,"40896":3,"40897":3,"40898":4,"40899":1,"40900":4,"40901":4,"40902":4,"40903":2,"40904":1,"40905":3,"40906":4,"40907":5,"40908":3,"40909":2,"40910":3,"40911":2,"40912":1,"40913":3,"40914":5,"40915":2,"40916":2,"40917":3,"40918":2,"40919":3,"40920":3,"40921":2,"40922":2,"40923":2,"40924":4,"40925":3,"40926":4,"40927":3,"40928":3,"40929":3,"40930":3,"40931":2,"40932":2,"40933":1,"40934":4,"40935":1,"40936":2,"40937":2,"40938":4,"40939":3,"40940":2,"40941":2,"40942":1,"40943":3,"40944":5,"40945":3,"40946":5,"40947":3,"40948":3,"40949":2,"40950":3,"40951":2,"40952":3,"40953":4,"40954":4,"40955":3,"40956":1,"40957":4,"40958":4,"40959":1,"40960":2,"40961":3,"40962":3,"40963":5,"40964":3,"40965":3,"40966":3,"40967":3,"40968":2,"40969":1,"40970":2,"40971":3,"40972":3,"40973":2,"40974":2,"40975":4,"40976":1,"40977":1,"40978":4,"40979":3,"40980":3,"40981":4,"40982":3,"40983":4,"40984":2,"40985":2,"40986":3,"40987":2,"40988":3,"40989":4,"40990":4,"40991":3,"40992":3,"40993":3,"40994":4,"40995":4,"40996":4,"40997":3,"40998":4,"40999":3,"41000":1,"41001":2,"41002":5,"41003":2,"41004":3,"41005":3,"41006":2,"41007":1,"41008":2,"41009":4,"41010":3,"41011":2,"41012":4,"41013":4,"41014":3,"41015":1,"41016":5,"41017":4,"41018":2,"41019":3,"41020":4,"41021":2,"41022":3,"41023":3,"41024":5,"41025":2,"41026":2,"41027":2,"41028":3,"41029":2,"41030":3,"41031":3,"41032":1,"41033":4,"41034":3,"41035":4,"41036":3,"41037":5,"41038":4,"41039":1,"41040":3,"41041":3,"41042":5,"41043":4,"41044":3,"41045":4,"41046":1,"41047":4,"41048":4,"41049":3,"41050":4,"41051":4,"41052":1,"41053":4,"41054":4,"41055":4,"41056":3,"41057":4,"41058":3,"41059":1,"41060":3,"41061":3,"41062":3,"41063":2,"41064":2,"41065":1,"41066":4,"41067":2,"41068":4,"41069":3,"41070":5,"41071":2,"41072":2,"41073":3,"41074":3,"41075":3,"41076":3,"41077":2,"41078":3,"41079":3,"41080":3,"41081":4,"41082":4,"41083":3,"41084":2,"41085":3,"41086":5,"41087":2,"41088":4,"41089":4,"41090":4,"41091":5,"41092":4,"41093":3,"41094":4,"41095":3,"41096":1,"41097":2,"41098":4,"41099":4,"41100":4,"41101":3,"41102":3,"41103":4,"41104":3,"41105":3,"41106":2,"41107":1,"41108":2,"41109":5,"41110":3,"41111":5,"41112":4,"41113":3,"41114":3,"41115":4,"41116":4,"41117":3,"41118":3,"41119":2,"41120":4,"41121":3,"41122":2,"41123":3,"41124":3,"41125":3,"41126":4,"41127":2,"41128":3,"41129":5,"41130":4,"41131":4,"41132":3,"41133":4,"41134":2,"41135":3,"41136":3,"41137":2,"41138":2,"41139":5,"41140":3,"41141":3,"41142":3,"41143":3,"41144":3,"41145":4,"41146":4,"41147":4,"41148":3,"41149":4,"41150":2,"41151":2,"41152":4,"41153":5,"41154":4,"41155":5,"41156":3,"41157":2,"41158":5,"41159":4,"41160":1,"41161":2,"41162":2,"41163":3,"41164":3,"41165":3,"41166":2,"41167":3,"41168":4,"41169":4,"41170":2,"41171":1,"41172":3,"41173":3,"41174":3,"41175":1,"41176":3,"41177":2,"41178":4,"41179":2,"41180":4,"41181":2,"41182":1,"41183":3,"41184":3,"41185":2,"41186":3,"41187":4,"41188":5,"41189":3,"41190":4,"41191":5,"41192":3,"41193":2,"41194":3,"41195":2,"41196":3,"41197":2,"41198":3,"41199":4,"41200":3,"41201":3,"41202":4,"41203":3,"41204":3,"41205":3,"41206":5,"41207":4,"41208":3,"41209":1,"41210":3,"41211":2,"41212":3,"41213":3,"41214":4,"41215":4,"41216":3,"41217":3,"41218":4,"41219":4,"41220":2,"41221":4,"41222":1,"41223":5,"41224":4,"41225":5,"41226":3,"41227":3,"41228":3,"41229":3,"41230":3,"41231":3,"41232":2,"41233":4,"41234":3,"41235":2,"41236":1,"41237":3,"41238":4,"41239":2,"41240":5,"41241":4,"41242":4,"41243":2,"41244":3,"41245":3,"41246":1,"41247":5,"41248":3,"41249":3,"41250":4,"41251":4,"41252":2,"41253":3,"41254":2,"41255":3,"41256":1,"41257":4,"41258":2,"41259":4,"41260":3,"41261":4,"41262":2,"41263":4,"41264":2,"41265":3,"41266":2,"41267":4,"41268":3,"41269":1,"41270":3,"41271":3,"41272":3,"41273":2,"41274":2,"41275":2,"41276":2,"41277":4,"41278":2,"41279":3,"41280":3,"41281":4,"41282":3,"41283":4,"41284":5,"41285":3,"41286":1,"41287":3,"41288":1,"41289":3,"41290":3,"41291":2,"41292":4,"41293":4,"41294":4,"41295":2,"41296":3,"41297":3,"41298":2,"41299":4,"41300":4,"41301":1,"41302":4,"41303":4,"41304":3,"41305":4,"41306":3,"41307":3,"41308":1,"41309":4,"41310":1,"41311":4,"41312":2,"41313":3,"41314":1,"41315":3,"41316":2,"41317":3,"41318":5,"41319":4,"41320":3,"41321":4,"41322":5,"41323":4,"41324":3,"41325":5,"41326":3,"41327":2,"41328":2,"41329":2,"41330":3,"41331":2,"41332":3,"41333":3,"41334":2,"41335":2,"41336":1,"41337":5,"41338":4,"41339":5,"41340":4,"41341":1,"41342":3,"41343":3,"41344":4,"41345":3,"41346":4,"41347":3,"41348":3,"41349":4,"41350":2,"41351":2,"41352":3,"41353":3,"41354":2,"41355":1,"41356":5,"41357":1,"41358":4,"41359":2,"41360":2,"41361":2,"41362":3,"41363":1,"41364":2,"41365":3,"41366":2,"41367":4,"41368":5,"41369":2,"41370":1,"41371":3,"41372":1,"41373":2,"41374":5,"41375":5,"41376":2,"41377":5,"41378":3,"41379":1,"41380":3,"41381":3,"41382":2,"41383":1,"41384":4,"41385":2,"41386":1,"41387":3,"41388":3,"41389":3,"41390":2,"41391":2,"41392":5,"41393":3,"41394":2,"41395":2,"41396":3,"41397":4,"41398":4,"41399":2,"41400":4,"41401":4,"41402":4,"41403":4,"41404":4,"41405":3,"41406":3,"41407":5,"41408":3,"41409":3,"41410":3,"41411":3,"41412":3,"41413":5,"41414":4,"41415":3,"41416":3,"41417":2,"41418":1,"41419":2,"41420":3,"41421":3,"41422":3,"41423":4,"41424":2,"41425":1,"41426":2,"41427":4,"41428":1,"41429":5,"41430":2,"41431":4,"41432":3,"41433":1,"41434":4,"41435":3,"41436":2,"41437":3,"41438":4,"41439":3,"41440":3,"41441":3,"41442":4,"41443":2,"41444":2,"41445":2,"41446":4,"41447":3,"41448":5,"41449":2,"41450":3,"41451":1,"41452":2,"41453":4,"41454":3,"41455":3,"41456":4,"41457":1,"41458":3,"41459":2,"41460":1,"41461":3,"41462":4,"41463":3,"41464":3,"41465":4,"41466":3,"41467":4,"41468":2,"41469":2,"41470":3,"41471":5,"41472":2,"41473":3,"41474":3,"41475":2,"41476":3,"41477":3,"41478":5,"41479":4,"41480":5,"41481":4,"41482":1,"41483":3,"41484":5,"41485":3,"41486":4,"41487":5,"41488":4,"41489":4,"41490":4,"41491":3,"41492":3,"41493":2,"41494":4,"41495":3,"41496":3,"41497":3,"41498":3,"41499":3,"41500":4,"41501":2,"41502":2,"41503":4,"41504":3,"41505":4,"41506":4,"41507":2,"41508":3,"41509":3,"41510":3,"41511":1,"41512":3,"41513":5,"41514":2,"41515":5,"41516":3,"41517":4,"41518":3,"41519":2,"41520":3,"41521":4,"41522":3,"41523":4,"41524":4,"41525":4,"41526":3,"41527":3,"41528":2,"41529":3,"41530":2,"41531":4,"41532":2,"41533":4,"41534":4,"41535":3,"41536":4,"41537":2,"41538":4,"41539":4,"41540":3,"41541":2,"41542":2,"41543":3,"41544":5,"41545":3,"41546":3,"41547":3,"41548":4,"41549":2,"41550":1,"41551":2,"41552":3,"41553":1,"41554":4,"41555":4,"41556":3,"41557":3,"41558":2,"41559":5,"41560":2,"41561":3,"41562":3,"41563":4,"41564":2,"41565":4,"41566":1,"41567":5,"41568":3,"41569":3,"41570":2,"41571":3,"41572":2,"41573":5,"41574":3,"41575":2,"41576":2,"41577":2,"41578":4,"41579":1,"41580":4,"41581":4,"41582":3,"41583":2,"41584":4,"41585":2,"41586":1,"41587":3,"41588":5,"41589":3,"41590":2,"41591":2,"41592":1,"41593":3,"41594":1,"41595":3,"41596":2,"41597":3,"41598":4,"41599":2,"41600":2,"41601":3,"41602":2,"41603":3,"41604":3,"41605":3,"41606":5,"41607":3,"41608":3,"41609":3,"41610":3,"41611":2,"41612":4,"41613":4,"41614":3,"41615":3,"41616":3,"41617":3,"41618":2,"41619":4,"41620":3,"41621":4,"41622":3,"41623":3,"41624":2,"41625":3,"41626":2,"41627":2,"41628":2,"41629":4,"41630":1,"41631":3,"41632":2,"41633":3,"41634":4,"41635":5,"41636":1,"41637":4,"41638":5,"41639":3,"41640":3,"41641":2,"41642":3,"41643":1,"41644":2,"41645":4,"41646":3,"41647":4,"41648":4,"41649":2,"41650":3,"41651":5,"41652":1,"41653":4,"41654":2,"41655":3,"41656":3,"41657":2,"41658":4,"41659":3,"41660":2,"41661":2,"41662":3,"41663":2,"41664":4,"41665":2,"41666":2,"41667":3,"41668":3,"41669":3,"41670":4,"41671":2,"41672":1,"41673":2,"41674":3,"41675":4,"41676":2,"41677":2,"41678":4,"41679":2,"41680":3,"41681":4,"41682":4,"41683":3,"41684":2,"41685":1,"41686":3,"41687":4,"41688":1,"41689":3,"41690":4,"41691":4,"41692":1,"41693":1,"41694":3,"41695":2,"41696":3,"41697":5,"41698":5,"41699":1,"41700":4,"41701":5,"41702":1,"41703":4,"41704":2,"41705":2,"41706":4,"41707":3,"41708":2,"41709":1,"41710":1,"41711":4,"41712":1,"41713":4,"41714":1,"41715":3,"41716":4,"41717":3,"41718":2,"41719":3,"41720":2,"41721":2,"41722":4,"41723":4,"41724":5,"41725":3,"41726":3,"41727":3,"41728":3,"41729":4,"41730":4,"41731":4,"41732":3,"41733":2,"41734":5,"41735":1,"41736":3,"41737":4,"41738":3,"41739":3,"41740":1,"41741":4,"41742":5,"41743":2,"41744":3,"41745":2,"41746":4,"41747":2,"41748":2,"41749":2,"41750":3,"41751":3,"41752":5,"41753":3,"41754":2,"41755":3,"41756":1,"41757":4,"41758":3,"41759":1,"41760":2,"41761":4,"41762":1,"41763":4,"41764":2,"41765":2,"41766":3,"41767":2,"41768":1,"41769":3,"41770":4,"41771":4,"41772":2,"41773":3,"41774":3,"41775":2,"41776":3,"41777":3,"41778":2,"41779":4,"41780":4,"41781":3,"41782":2,"41783":1,"41784":3,"41785":3,"41786":3,"41787":4,"41788":4,"41789":5,"41790":4,"41791":4,"41792":4,"41793":3,"41794":2,"41795":3,"41796":2,"41797":3,"41798":4,"41799":4,"41800":3,"41801":3,"41802":3,"41803":2,"41804":5,"41805":4,"41806":5,"41807":3,"41808":3,"41809":2,"41810":3,"41811":4,"41812":4,"41813":2,"41814":4,"41815":4,"41816":3,"41817":3,"41818":3,"41819":2,"41820":2,"41821":3,"41822":4,"41823":2,"41824":2,"41825":2,"41826":2,"41827":4,"41828":4,"41829":2,"41830":1,"41831":3,"41832":3,"41833":3,"41834":4,"41835":3,"41836":3,"41837":3,"41838":2,"41839":1,"41840":2,"41841":2,"41842":3,"41843":3,"41844":2,"41845":3,"41846":3,"41847":3,"41848":2,"41849":2,"41850":3,"41851":2,"41852":4,"41853":4,"41854":4,"41855":1,"41856":2,"41857":3,"41858":3,"41859":2,"41860":5,"41861":5,"41862":5,"41863":1,"41864":3,"41865":2,"41866":2,"41867":3,"41868":2,"41869":4,"41870":4,"41871":4,"41872":4,"41873":2,"41874":3,"41875":5,"41876":5,"41877":2,"41878":5,"41879":3,"41880":4,"41881":4,"41882":3,"41883":1,"41884":2,"41885":2,"41886":1,"41887":4,"41888":4,"41889":3,"41890":3,"41891":2,"41892":3,"41893":3,"41894":2,"41895":4,"41896":1,"41897":3,"41898":3,"41899":2,"41900":4,"41901":2,"41902":1,"41903":1,"41904":4,"41905":2,"41906":1,"41907":3,"41908":2,"41909":4,"41910":3,"41911":1,"41912":4,"41913":4,"41914":3,"41915":2,"41916":4,"41917":3,"41918":5,"41919":2,"41920":3,"41921":5,"41922":5,"41923":2,"41924":4,"41925":4,"41926":3,"41927":4,"41928":3,"41929":3,"41930":3,"41931":4,"41932":4,"41933":2,"41934":4,"41935":3,"41936":2,"41937":4,"41938":3,"41939":4,"41940":1,"41941":2,"41942":2,"41943":2,"41944":1,"41945":3,"41946":4,"41947":3,"41948":2,"41949":2,"41950":2,"41951":3,"41952":2,"41953":3,"41954":2,"41955":4,"41956":3,"41957":2,"41958":2,"41959":2,"41960":3,"41961":3,"41962":2,"41963":3,"41964":4,"41965":2,"41966":4,"41967":2,"41968":2,"41969":3,"41970":3,"41971":3,"41972":4,"41973":3,"41974":2,"41975":4,"41976":4,"41977":5,"41978":5,"41979":3,"41980":2,"41981":1,"41982":4,"41983":3,"41984":2,"41985":3,"41986":2,"41987":4,"41988":3,"41989":3,"41990":1,"41991":1,"41992":5,"41993":3,"41994":2,"41995":3,"41996":3,"41997":2,"41998":3,"41999":3,"42000":4,"42001":3,"42002":2,"42003":2,"42004":1,"42005":4,"42006":4,"42007":4,"42008":3,"42009":4,"42010":3,"42011":4,"42012":4,"42013":4,"42014":3,"42015":3,"42016":2,"42017":3,"42018":4,"42019":2,"42020":2,"42021":3,"42022":4,"42023":2,"42024":3,"42025":3,"42026":5,"42027":3,"42028":2,"42029":5,"42030":3,"42031":3,"42032":3,"42033":2,"42034":3,"42035":3,"42036":3,"42037":2,"42038":3,"42039":2,"42040":2,"42041":3,"42042":2,"42043":4,"42044":4,"42045":3,"42046":4,"42047":2,"42048":4,"42049":2,"42050":2,"42051":2,"42052":3,"42053":3,"42054":3,"42055":3,"42056":4,"42057":5,"42058":3,"42059":2,"42060":3,"42061":4,"42062":3,"42063":2,"42064":3,"42065":2,"42066":5,"42067":2,"42068":1,"42069":3,"42070":3,"42071":4,"42072":2,"42073":5,"42074":2,"42075":3,"42076":2,"42077":4,"42078":4,"42079":2,"42080":2,"42081":2,"42082":3,"42083":1,"42084":3,"42085":3,"42086":2,"42087":4,"42088":4,"42089":1,"42090":5,"42091":3,"42092":3,"42093":4,"42094":1,"42095":5,"42096":1,"42097":3,"42098":2,"42099":2,"42100":3,"42101":2,"42102":4,"42103":4,"42104":1,"42105":1,"42106":4,"42107":1,"42108":3,"42109":2,"42110":2,"42111":1,"42112":3,"42113":5,"42114":3,"42115":5,"42116":4,"42117":2,"42118":5,"42119":3,"42120":2,"42121":3,"42122":2,"42123":2,"42124":2,"42125":3,"42126":1,"42127":2,"42128":5,"42129":3,"42130":1,"42131":3,"42132":4,"42133":3,"42134":2,"42135":2,"42136":4,"42137":4,"42138":1,"42139":5,"42140":3,"42141":2,"42142":4,"42143":1,"42144":5,"42145":2,"42146":2,"42147":3,"42148":4,"42149":3,"42150":2,"42151":1,"42152":3,"42153":2,"42154":2,"42155":3,"42156":2,"42157":5,"42158":2,"42159":2,"42160":2,"42161":1,"42162":3,"42163":3,"42164":1,"42165":4,"42166":4,"42167":5,"42168":3,"42169":2,"42170":2,"42171":3,"42172":1,"42173":4,"42174":3,"42175":3,"42176":3,"42177":3,"42178":3,"42179":2,"42180":3,"42181":4,"42182":3,"42183":3,"42184":2,"42185":3,"42186":3,"42187":4,"42188":3,"42189":2,"42190":3,"42191":3,"42192":4,"42193":3,"42194":3,"42195":4,"42196":2,"42197":2,"42198":2,"42199":4,"42200":4,"42201":2,"42202":3,"42203":2,"42204":3,"42205":3,"42206":3,"42207":4,"42208":2,"42209":3,"42210":3,"42211":3,"42212":3,"42213":3,"42214":3,"42215":3,"42216":2,"42217":2,"42218":4,"42219":1,"42220":3,"42221":3,"42222":3,"42223":4,"42224":1,"42225":3,"42226":3,"42227":3,"42228":4,"42229":5,"42230":1,"42231":4,"42232":2,"42233":4,"42234":4,"42235":3,"42236":4,"42237":2,"42238":3,"42239":3,"42240":2,"42241":3,"42242":5,"42243":2,"42244":1,"42245":3,"42246":2,"42247":4,"42248":3,"42249":4,"42250":3,"42251":3,"42252":3,"42253":3,"42254":3,"42255":2,"42256":3,"42257":5,"42258":2,"42259":3,"42260":4,"42261":2,"42262":3,"42263":2,"42264":3,"42265":3,"42266":3,"42267":1,"42268":3,"42269":3,"42270":2,"42271":1,"42272":4,"42273":2,"42274":2,"42275":1,"42276":4,"42277":4,"42278":4,"42279":4,"42280":4,"42281":4,"42282":3,"42283":1,"42284":5,"42285":3,"42286":4,"42287":4,"42288":3,"42289":2,"42290":4,"42291":1,"42292":3,"42293":2,"42294":4,"42295":4,"42296":2,"42297":3,"42298":3,"42299":4,"42300":3,"42301":3,"42302":3,"42303":2,"42304":3,"42305":3,"42306":2,"42307":3,"42308":3,"42309":2,"42310":4,"42311":1,"42312":2,"42313":4,"42314":4,"42315":2,"42316":3,"42317":2,"42318":2,"42319":1,"42320":1,"42321":3,"42322":3,"42323":2,"42324":3,"42325":2,"42326":3,"42327":5,"42328":3,"42329":4,"42330":2,"42331":3,"42332":4,"42333":3,"42334":5,"42335":4,"42336":3,"42337":2,"42338":3,"42339":2,"42340":5,"42341":4,"42342":3,"42343":4,"42344":3,"42345":4,"42346":3,"42347":4,"42348":3,"42349":3,"42350":3,"42351":3,"42352":4,"42353":3,"42354":4,"42355":4,"42356":1,"42357":4,"42358":3,"42359":4,"42360":4,"42361":2,"42362":2,"42363":2,"42364":2,"42365":3,"42366":4,"42367":4,"42368":4,"42369":2,"42370":3,"42371":5,"42372":5,"42373":2,"42374":2,"42375":3,"42376":3,"42377":4,"42378":4,"42379":3,"42380":2,"42381":5,"42382":1,"42383":3,"42384":4,"42385":2,"42386":3,"42387":5,"42388":4,"42389":4,"42390":4,"42391":3,"42392":2,"42393":4,"42394":4,"42395":3,"42396":3,"42397":5,"42398":5,"42399":2,"42400":3,"42401":4,"42402":4,"42403":4,"42404":3,"42405":4,"42406":5,"42407":4,"42408":3,"42409":2,"42410":2,"42411":4,"42412":3,"42413":4,"42414":2,"42415":3,"42416":4,"42417":2,"42418":3,"42419":4,"42420":4,"42421":2,"42422":2,"42423":3,"42424":4,"42425":5,"42426":2,"42427":5,"42428":2,"42429":4,"42430":1,"42431":4,"42432":4,"42433":4,"42434":5,"42435":2,"42436":3,"42437":4,"42438":4,"42439":3,"42440":4,"42441":2,"42442":3,"42443":3,"42444":3,"42445":2,"42446":3,"42447":2,"42448":3,"42449":3,"42450":4,"42451":2,"42452":3,"42453":2,"42454":4,"42455":1,"42456":1,"42457":4,"42458":2,"42459":2,"42460":1,"42461":1,"42462":3,"42463":4,"42464":2,"42465":4,"42466":4,"42467":2,"42468":3,"42469":4,"42470":4,"42471":3,"42472":3,"42473":3,"42474":3,"42475":4,"42476":3,"42477":4,"42478":4,"42479":5,"42480":4,"42481":2,"42482":3,"42483":3,"42484":5,"42485":3,"42486":2,"42487":1,"42488":2,"42489":1,"42490":3,"42491":4,"42492":3,"42493":5,"42494":1,"42495":2,"42496":3,"42497":2,"42498":3,"42499":3,"42500":2,"42501":2,"42502":4,"42503":2,"42504":3,"42505":3,"42506":4,"42507":2,"42508":2,"42509":3,"42510":2,"42511":2,"42512":2,"42513":5,"42514":5,"42515":1,"42516":4,"42517":4,"42518":4,"42519":4,"42520":3,"42521":4,"42522":4,"42523":3,"42524":3,"42525":4,"42526":1,"42527":1,"42528":4,"42529":3,"42530":3,"42531":3,"42532":3,"42533":4,"42534":2,"42535":4,"42536":4,"42537":4,"42538":2,"42539":3,"42540":4,"42541":3,"42542":2,"42543":4,"42544":4,"42545":4,"42546":4,"42547":2,"42548":3,"42549":4,"42550":2,"42551":3,"42552":3,"42553":3,"42554":2,"42555":3,"42556":3,"42557":1,"42558":2,"42559":4,"42560":5,"42561":2,"42562":2,"42563":3,"42564":4,"42565":3,"42566":4,"42567":5,"42568":4,"42569":3,"42570":2,"42571":4,"42572":3,"42573":1,"42574":5,"42575":4,"42576":3,"42577":5,"42578":4,"42579":4,"42580":3,"42581":2,"42582":3,"42583":4,"42584":3,"42585":2,"42586":4,"42587":3,"42588":4,"42589":3,"42590":4,"42591":2,"42592":4,"42593":4,"42594":3,"42595":3,"42596":4,"42597":4,"42598":3,"42599":3,"42600":4,"42601":3,"42602":3,"42603":2,"42604":3,"42605":3,"42606":3,"42607":2,"42608":5,"42609":3,"42610":1,"42611":4,"42612":1,"42613":4,"42614":4,"42615":4,"42616":4,"42617":4,"42618":2,"42619":2,"42620":3,"42621":4,"42622":4,"42623":3,"42624":2,"42625":2,"42626":4,"42627":2,"42628":3,"42629":4,"42630":3,"42631":2,"42632":3,"42633":3,"42634":4,"42635":2,"42636":2,"42637":1,"42638":4,"42639":5,"42640":2,"42641":2,"42642":4,"42643":2,"42644":2,"42645":4,"42646":3,"42647":1,"42648":2,"42649":1,"42650":4,"42651":2,"42652":2,"42653":3,"42654":5,"42655":3,"42656":3,"42657":4,"42658":3,"42659":5,"42660":3,"42661":3,"42662":3,"42663":1,"42664":3,"42665":3,"42666":4,"42667":1,"42668":3,"42669":3,"42670":3,"42671":1,"42672":1,"42673":2,"42674":5,"42675":4,"42676":3,"42677":4,"42678":4,"42679":4,"42680":1,"42681":4,"42682":3,"42683":2,"42684":5,"42685":1,"42686":1,"42687":3,"42688":2,"42689":4,"42690":4,"42691":2,"42692":3,"42693":1,"42694":2,"42695":4,"42696":2,"42697":3,"42698":2,"42699":1,"42700":4,"42701":2,"42702":4,"42703":5,"42704":3,"42705":1,"42706":2,"42707":4,"42708":3,"42709":4,"42710":2,"42711":3,"42712":4,"42713":3,"42714":3,"42715":5,"42716":1,"42717":3,"42718":4,"42719":4,"42720":3,"42721":3,"42722":2,"42723":3,"42724":4,"42725":2,"42726":4,"42727":4,"42728":3,"42729":2,"42730":4,"42731":2,"42732":3,"42733":4,"42734":3,"42735":4,"42736":4,"42737":3,"42738":5,"42739":1,"42740":2,"42741":1,"42742":3,"42743":2,"42744":3,"42745":5,"42746":4,"42747":3,"42748":1,"42749":2,"42750":2,"42751":2,"42752":3,"42753":3,"42754":3,"42755":1,"42756":3,"42757":4,"42758":2,"42759":1,"42760":2,"42761":2,"42762":1,"42763":3,"42764":3,"42765":4,"42766":2,"42767":5,"42768":3,"42769":1,"42770":3,"42771":3,"42772":2,"42773":1,"42774":4,"42775":3,"42776":2,"42777":2,"42778":3,"42779":5,"42780":2,"42781":3,"42782":3,"42783":3,"42784":2,"42785":3,"42786":4,"42787":2,"42788":4,"42789":3,"42790":4,"42791":4,"42792":3,"42793":3,"42794":2,"42795":4,"42796":2,"42797":3,"42798":3,"42799":2,"42800":4,"42801":3,"42802":4,"42803":4,"42804":2,"42805":2,"42806":3,"42807":1,"42808":4,"42809":4,"42810":1,"42811":3,"42812":3,"42813":2,"42814":2,"42815":2,"42816":4,"42817":2,"42818":2,"42819":4,"42820":5,"42821":2,"42822":4,"42823":2,"42824":2,"42825":3,"42826":3,"42827":3,"42828":3,"42829":2,"42830":3,"42831":2,"42832":3,"42833":5,"42834":4,"42835":4,"42836":2,"42837":3,"42838":2,"42839":4,"42840":4,"42841":1,"42842":4,"42843":3,"42844":3,"42845":1,"42846":3,"42847":3,"42848":4,"42849":3,"42850":2,"42851":2,"42852":3,"42853":4,"42854":4,"42855":3,"42856":2,"42857":4,"42858":4,"42859":1,"42860":3,"42861":3,"42862":3,"42863":2,"42864":3,"42865":3,"42866":5,"42867":3,"42868":4,"42869":3,"42870":3,"42871":3,"42872":3,"42873":2,"42874":4,"42875":4,"42876":2,"42877":4,"42878":2,"42879":3,"42880":3,"42881":3,"42882":4,"42883":3,"42884":4,"42885":2,"42886":5,"42887":2,"42888":3,"42889":4,"42890":4,"42891":3,"42892":4,"42893":3,"42894":3,"42895":4,"42896":3,"42897":3,"42898":4,"42899":1,"42900":4,"42901":2,"42902":3,"42903":2,"42904":3,"42905":3,"42906":2,"42907":3,"42908":3,"42909":2,"42910":2,"42911":3,"42912":1,"42913":2,"42914":4,"42915":3,"42916":3,"42917":3,"42918":3,"42919":3,"42920":2,"42921":5,"42922":3,"42923":3,"42924":3,"42925":2,"42926":3,"42927":2,"42928":3,"42929":4,"42930":4,"42931":3,"42932":1,"42933":3,"42934":3,"42935":1,"42936":3,"42937":3,"42938":4,"42939":5,"42940":4,"42941":3,"42942":4,"42943":3,"42944":3,"42945":3,"42946":3,"42947":5,"42948":2,"42949":1,"42950":4,"42951":3,"42952":4,"42953":2,"42954":2,"42955":2,"42956":3,"42957":2,"42958":3,"42959":1,"42960":4,"42961":2,"42962":3,"42963":3,"42964":2,"42965":3,"42966":3,"42967":1,"42968":4,"42969":1,"42970":5,"42971":2,"42972":4,"42973":2,"42974":4,"42975":5,"42976":4,"42977":4,"42978":2,"42979":2,"42980":2,"42981":2,"42982":5,"42983":2,"42984":5,"42985":2,"42986":3,"42987":1,"42988":2,"42989":5,"42990":4,"42991":2,"42992":4,"42993":3,"42994":3,"42995":3,"42996":3,"42997":3,"42998":3,"42999":4,"43000":4,"43001":4,"43002":1,"43003":4,"43004":2,"43005":1,"43006":2,"43007":2,"43008":1,"43009":1,"43010":5,"43011":3,"43012":3,"43013":3,"43014":1,"43015":2,"43016":5,"43017":1,"43018":1,"43019":4,"43020":4,"43021":4,"43022":3,"43023":1,"43024":3,"43025":2,"43026":3,"43027":3,"43028":1,"43029":3,"43030":2,"43031":3,"43032":1,"43033":3,"43034":1,"43035":2,"43036":2,"43037":2,"43038":2,"43039":3,"43040":2,"43041":3,"43042":4,"43043":3,"43044":4,"43045":3,"43046":5,"43047":3,"43048":3,"43049":4,"43050":3,"43051":5,"43052":4,"43053":1,"43054":3,"43055":3,"43056":2,"43057":3,"43058":4,"43059":3,"43060":3,"43061":3,"43062":3,"43063":4,"43064":4,"43065":3,"43066":1,"43067":1,"43068":3,"43069":4,"43070":4,"43071":5,"43072":2,"43073":1,"43074":4,"43075":2,"43076":2,"43077":2,"43078":3,"43079":2,"43080":1,"43081":4,"43082":5,"43083":2,"43084":3,"43085":3,"43086":1,"43087":4,"43088":3,"43089":1,"43090":2,"43091":3,"43092":3,"43093":4,"43094":1,"43095":4,"43096":3,"43097":3,"43098":4,"43099":4,"43100":2,"43101":1,"43102":4,"43103":2,"43104":4,"43105":4,"43106":3,"43107":3,"43108":2,"43109":3,"43110":2,"43111":4,"43112":3,"43113":3,"43114":2,"43115":1,"43116":4,"43117":5,"43118":2,"43119":4,"43120":5,"43121":3,"43122":3,"43123":2,"43124":3,"43125":2,"43126":2,"43127":3,"43128":2,"43129":4,"43130":4,"43131":1,"43132":2,"43133":1,"43134":4,"43135":1,"43136":3,"43137":1,"43138":4,"43139":2,"43140":2,"43141":2,"43142":5,"43143":4,"43144":3,"43145":3,"43146":3,"43147":2,"43148":4,"43149":4,"43150":3,"43151":3,"43152":3,"43153":3,"43154":4,"43155":4,"43156":5,"43157":5,"43158":4,"43159":3,"43160":4,"43161":1,"43162":3,"43163":2,"43164":5,"43165":3,"43166":1,"43167":2,"43168":4,"43169":3,"43170":1,"43171":1,"43172":2,"43173":1,"43174":3,"43175":4,"43176":4,"43177":2,"43178":3,"43179":2,"43180":3,"43181":4,"43182":2,"43183":4,"43184":1,"43185":3,"43186":3,"43187":1,"43188":1,"43189":2,"43190":1,"43191":3,"43192":1,"43193":2,"43194":3,"43195":2,"43196":3,"43197":2,"43198":4,"43199":4,"43200":4,"43201":5,"43202":3,"43203":1,"43204":3,"43205":1,"43206":3,"43207":3,"43208":1,"43209":4,"43210":4,"43211":2,"43212":3,"43213":1,"43214":4,"43215":2,"43216":3,"43217":2,"43218":1,"43219":4,"43220":3,"43221":4,"43222":3,"43223":3,"43224":3,"43225":1,"43226":3,"43227":3,"43228":2,"43229":3,"43230":1,"43231":3,"43232":3,"43233":4,"43234":4,"43235":3,"43236":2,"43237":2,"43238":4,"43239":2,"43240":1,"43241":2,"43242":3,"43243":2,"43244":2,"43245":3,"43246":4,"43247":4,"43248":1,"43249":4,"43250":4,"43251":3,"43252":3,"43253":4,"43254":2,"43255":2,"43256":1,"43257":3,"43258":2,"43259":5,"43260":3,"43261":3,"43262":3,"43263":2,"43264":2,"43265":2,"43266":3,"43267":4,"43268":1,"43269":1,"43270":5,"43271":3,"43272":3,"43273":3,"43274":4,"43275":1,"43276":2,"43277":3,"43278":5,"43279":2,"43280":5,"43281":1,"43282":3,"43283":2,"43284":5,"43285":2,"43286":4,"43287":3,"43288":3,"43289":5,"43290":3,"43291":3,"43292":3,"43293":3,"43294":4,"43295":2,"43296":4,"43297":3,"43298":3,"43299":3,"43300":4,"43301":2,"43302":2,"43303":4,"43304":5,"43305":4,"43306":3,"43307":4,"43308":4,"43309":1,"43310":2,"43311":2,"43312":4,"43313":2,"43314":1,"43315":3,"43316":3,"43317":3,"43318":2,"43319":4,"43320":5,"43321":4,"43322":2,"43323":1,"43324":4,"43325":2,"43326":3,"43327":3,"43328":3,"43329":2,"43330":1,"43331":2,"43332":3,"43333":3,"43334":3,"43335":3,"43336":3,"43337":3,"43338":3,"43339":4,"43340":3,"43341":2,"43342":4,"43343":1,"43344":3,"43345":2,"43346":3,"43347":4,"43348":3,"43349":1,"43350":2,"43351":3,"43352":5,"43353":1,"43354":4,"43355":4,"43356":4,"43357":4,"43358":1,"43359":3,"43360":3,"43361":5,"43362":3,"43363":4,"43364":3,"43365":5,"43366":3,"43367":3,"43368":3,"43369":4,"43370":2,"43371":3,"43372":2,"43373":2,"43374":3,"43375":4,"43376":4,"43377":1,"43378":3,"43379":3,"43380":2,"43381":2,"43382":4,"43383":3,"43384":3,"43385":3,"43386":3,"43387":2,"43388":4,"43389":1,"43390":4,"43391":4,"43392":3,"43393":4,"43394":2,"43395":4,"43396":2,"43397":3,"43398":3,"43399":3,"43400":4,"43401":3,"43402":2,"43403":5,"43404":5,"43405":2,"43406":4,"43407":2,"43408":2,"43409":4,"43410":2,"43411":4,"43412":3,"43413":4,"43414":3,"43415":2,"43416":3,"43417":3,"43418":4,"43419":3,"43420":4,"43421":3,"43422":5,"43423":3,"43424":4,"43425":5,"43426":2,"43427":2,"43428":2,"43429":2,"43430":2,"43431":2,"43432":3,"43433":1,"43434":4,"43435":3,"43436":3,"43437":2,"43438":4,"43439":3,"43440":5,"43441":3,"43442":4,"43443":2,"43444":2,"43445":3,"43446":4,"43447":2,"43448":5,"43449":5,"43450":3,"43451":4,"43452":4,"43453":2,"43454":3,"43455":2,"43456":3,"43457":3,"43458":3,"43459":3,"43460":4,"43461":2,"43462":2,"43463":3,"43464":3,"43465":1,"43466":4,"43467":4,"43468":2,"43469":4,"43470":4,"43471":3,"43472":2,"43473":2,"43474":5,"43475":3,"43476":3,"43477":3,"43478":1,"43479":3,"43480":3,"43481":3,"43482":3,"43483":4,"43484":3,"43485":2,"43486":3,"43487":4,"43488":5,"43489":4,"43490":3,"43491":4,"43492":4,"43493":2,"43494":2,"43495":2,"43496":2,"43497":2,"43498":1,"43499":2,"43500":3,"43501":5,"43502":2,"43503":5,"43504":2,"43505":2,"43506":2,"43507":3,"43508":3,"43509":1,"43510":3,"43511":3,"43512":4,"43513":2,"43514":4,"43515":4,"43516":2,"43517":4,"43518":3,"43519":4,"43520":4,"43521":3,"43522":3,"43523":3,"43524":1,"43525":3,"43526":4,"43527":4,"43528":4,"43529":1,"43530":3,"43531":4,"43532":4,"43533":3,"43534":3,"43535":4,"43536":3,"43537":3,"43538":3,"43539":2,"43540":2,"43541":3,"43542":3,"43543":4,"43544":3,"43545":3,"43546":4,"43547":4,"43548":3,"43549":3,"43550":3,"43551":4,"43552":4,"43553":5,"43554":4,"43555":2,"43556":1,"43557":4,"43558":2,"43559":3,"43560":4,"43561":2,"43562":1,"43563":3,"43564":2,"43565":2,"43566":3,"43567":4,"43568":4,"43569":3,"43570":4,"43571":2,"43572":3,"43573":4,"43574":2,"43575":5,"43576":4,"43577":3,"43578":1,"43579":2,"43580":3,"43581":3,"43582":1,"43583":3,"43584":4,"43585":4,"43586":2,"43587":5,"43588":3,"43589":5,"43590":3,"43591":5,"43592":2,"43593":3,"43594":3,"43595":3,"43596":3,"43597":3,"43598":3,"43599":2,"43600":2,"43601":3,"43602":2,"43603":1,"43604":2,"43605":1,"43606":5,"43607":2,"43608":1,"43609":4,"43610":2,"43611":3,"43612":1,"43613":3,"43614":3,"43615":4,"43616":2,"43617":3,"43618":3,"43619":2,"43620":2,"43621":5,"43622":4,"43623":2,"43624":3,"43625":1,"43626":2,"43627":5,"43628":3,"43629":4,"43630":4,"43631":2,"43632":3,"43633":3,"43634":3,"43635":2,"43636":3,"43637":3,"43638":4,"43639":4,"43640":1,"43641":2,"43642":3,"43643":4,"43644":3,"43645":2,"43646":3,"43647":2,"43648":2,"43649":2,"43650":3,"43651":3,"43652":4,"43653":5,"43654":3,"43655":4,"43656":5,"43657":1,"43658":2,"43659":4,"43660":3,"43661":4,"43662":2,"43663":3,"43664":5,"43665":4,"43666":3,"43667":1,"43668":3,"43669":4,"43670":1,"43671":4,"43672":2,"43673":4,"43674":1,"43675":3,"43676":2,"43677":3,"43678":1,"43679":1,"43680":4,"43681":4,"43682":3,"43683":2,"43684":2,"43685":2,"43686":2,"43687":2,"43688":2,"43689":4,"43690":4,"43691":2,"43692":2,"43693":4,"43694":1,"43695":3,"43696":4,"43697":1,"43698":4,"43699":3,"43700":2,"43701":3,"43702":2,"43703":3,"43704":3,"43705":5,"43706":4,"43707":4,"43708":1,"43709":4,"43710":4,"43711":5,"43712":4,"43713":2,"43714":4,"43715":4,"43716":2,"43717":2,"43718":4,"43719":2,"43720":3,"43721":2,"43722":4,"43723":2,"43724":3,"43725":5,"43726":2,"43727":3,"43728":3,"43729":4,"43730":1,"43731":2,"43732":4,"43733":5,"43734":2,"43735":3,"43736":1,"43737":5,"43738":4,"43739":4,"43740":3,"43741":1,"43742":3,"43743":5,"43744":2,"43745":3,"43746":2,"43747":2,"43748":2,"43749":2,"43750":4,"43751":3,"43752":1,"43753":1,"43754":2,"43755":4,"43756":3,"43757":4,"43758":3,"43759":3,"43760":3,"43761":1,"43762":2,"43763":2,"43764":2,"43765":4,"43766":4,"43767":1,"43768":3,"43769":3,"43770":3,"43771":3,"43772":2,"43773":4,"43774":3,"43775":1,"43776":4,"43777":2,"43778":3,"43779":4,"43780":3,"43781":3,"43782":4,"43783":4,"43784":4,"43785":3,"43786":1,"43787":1,"43788":5,"43789":5,"43790":3,"43791":4,"43792":1,"43793":3,"43794":5,"43795":3,"43796":3,"43797":2,"43798":1,"43799":3,"43800":3,"43801":5,"43802":3,"43803":3,"43804":3,"43805":2,"43806":4,"43807":4,"43808":1,"43809":3,"43810":2,"43811":2,"43812":2,"43813":2,"43814":4,"43815":2,"43816":3,"43817":2,"43818":4,"43819":3,"43820":4,"43821":4,"43822":4,"43823":3,"43824":2,"43825":4,"43826":4,"43827":3,"43828":3,"43829":3,"43830":3,"43831":2,"43832":2,"43833":4,"43834":2,"43835":3,"43836":3,"43837":5,"43838":3,"43839":4,"43840":3,"43841":2,"43842":3,"43843":4,"43844":3,"43845":3,"43846":3,"43847":2,"43848":4,"43849":3,"43850":3,"43851":3,"43852":2,"43853":3,"43854":2,"43855":3,"43856":2,"43857":2,"43858":4,"43859":3,"43860":3,"43861":3,"43862":3,"43863":5,"43864":2,"43865":2,"43866":4,"43867":3,"43868":4,"43869":2,"43870":3,"43871":1,"43872":3,"43873":3,"43874":3,"43875":4,"43876":1,"43877":4,"43878":2,"43879":4,"43880":4,"43881":4,"43882":4,"43883":3,"43884":2,"43885":1,"43886":1,"43887":1,"43888":2,"43889":1,"43890":2,"43891":4,"43892":3,"43893":2,"43894":2,"43895":3,"43896":5,"43897":3,"43898":4,"43899":4,"43900":4,"43901":2,"43902":3,"43903":3,"43904":2,"43905":5,"43906":4,"43907":4,"43908":3,"43909":2,"43910":2,"43911":4,"43912":2,"43913":3,"43914":4,"43915":2,"43916":3,"43917":2,"43918":3,"43919":3,"43920":2,"43921":2,"43922":3,"43923":4,"43924":2,"43925":1,"43926":3,"43927":2,"43928":4,"43929":4,"43930":3,"43931":1,"43932":3,"43933":4,"43934":4,"43935":3,"43936":2,"43937":4,"43938":4,"43939":4,"43940":4,"43941":2,"43942":4,"43943":2,"43944":2,"43945":4,"43946":3,"43947":4,"43948":2,"43949":3,"43950":3,"43951":2,"43952":5,"43953":2,"43954":2,"43955":5,"43956":4,"43957":3,"43958":2,"43959":2,"43960":3,"43961":3,"43962":5,"43963":5,"43964":3,"43965":1,"43966":5,"43967":3,"43968":1,"43969":2,"43970":3,"43971":3,"43972":2,"43973":4,"43974":4,"43975":4,"43976":2,"43977":2,"43978":3,"43979":3,"43980":5,"43981":4,"43982":2,"43983":3,"43984":4,"43985":3,"43986":3,"43987":3,"43988":2,"43989":2,"43990":4,"43991":4,"43992":3,"43993":3,"43994":2,"43995":3,"43996":4,"43997":5,"43998":4,"43999":4,"44000":4,"44001":2,"44002":2,"44003":1,"44004":3,"44005":3,"44006":3,"44007":3,"44008":3,"44009":2,"44010":2,"44011":2,"44012":4,"44013":3,"44014":3,"44015":3,"44016":4,"44017":3,"44018":1,"44019":2,"44020":3,"44021":4,"44022":4,"44023":3,"44024":1,"44025":3,"44026":4,"44027":3,"44028":1,"44029":5,"44030":5,"44031":4,"44032":4,"44033":3,"44034":3,"44035":4,"44036":3,"44037":1,"44038":4,"44039":4,"44040":4,"44041":2,"44042":3,"44043":4,"44044":3,"44045":3,"44046":3,"44047":4,"44048":1,"44049":3,"44050":1,"44051":3,"44052":2,"44053":4,"44054":3,"44055":4,"44056":3,"44057":3,"44058":4,"44059":3,"44060":3,"44061":3,"44062":3,"44063":4,"44064":3,"44065":3,"44066":2,"44067":2,"44068":4,"44069":5,"44070":3,"44071":3,"44072":2,"44073":3,"44074":2,"44075":4,"44076":3,"44077":4,"44078":2,"44079":1,"44080":2,"44081":3,"44082":4,"44083":2,"44084":3,"44085":4,"44086":2,"44087":2,"44088":2,"44089":4,"44090":3,"44091":4,"44092":1,"44093":3,"44094":3,"44095":3,"44096":3,"44097":4,"44098":3,"44099":4,"44100":5,"44101":5,"44102":5,"44103":3,"44104":3,"44105":1,"44106":4,"44107":5,"44108":4,"44109":1,"44110":3,"44111":3,"44112":4,"44113":3,"44114":4,"44115":2,"44116":2,"44117":5,"44118":4,"44119":4,"44120":3,"44121":5,"44122":2,"44123":4,"44124":3,"44125":4,"44126":4,"44127":1,"44128":4,"44129":3,"44130":3,"44131":4,"44132":4,"44133":3,"44134":2,"44135":2,"44136":1,"44137":1,"44138":4,"44139":3,"44140":3,"44141":4,"44142":2,"44143":2,"44144":4,"44145":2,"44146":1,"44147":5,"44148":4,"44149":3,"44150":2,"44151":3,"44152":4,"44153":3,"44154":3,"44155":3,"44156":3,"44157":4,"44158":2,"44159":2,"44160":3,"44161":3,"44162":3,"44163":4,"44164":3,"44165":1,"44166":4,"44167":4,"44168":2,"44169":3,"44170":3,"44171":5,"44172":2,"44173":3,"44174":2,"44175":2,"44176":4,"44177":2,"44178":4,"44179":3,"44180":3,"44181":3,"44182":1,"44183":4,"44184":3,"44185":3,"44186":3,"44187":2,"44188":4,"44189":4,"44190":2,"44191":3,"44192":4,"44193":2,"44194":1,"44195":2,"44196":3,"44197":4,"44198":3,"44199":4,"44200":2,"44201":1,"44202":2,"44203":2,"44204":4,"44205":3,"44206":3,"44207":4,"44208":3,"44209":5,"44210":3,"44211":4,"44212":2,"44213":3,"44214":3,"44215":3,"44216":4,"44217":3,"44218":3,"44219":3,"44220":4,"44221":3,"44222":3,"44223":2,"44224":4,"44225":3,"44226":2,"44227":3,"44228":4,"44229":5,"44230":4,"44231":4,"44232":2,"44233":3,"44234":4,"44235":5,"44236":3,"44237":3,"44238":3,"44239":1,"44240":2,"44241":2,"44242":5,"44243":5,"44244":3,"44245":2,"44246":4,"44247":4,"44248":2,"44249":2,"44250":2,"44251":3,"44252":4,"44253":4,"44254":2,"44255":5,"44256":2,"44257":4,"44258":3,"44259":3,"44260":4,"44261":3,"44262":4,"44263":4,"44264":3,"44265":2,"44266":3,"44267":5,"44268":1,"44269":4,"44270":4,"44271":4,"44272":1,"44273":3,"44274":4,"44275":2,"44276":2,"44277":4,"44278":4,"44279":5,"44280":3,"44281":3,"44282":1,"44283":4,"44284":4,"44285":4,"44286":4,"44287":5,"44288":3,"44289":3,"44290":4,"44291":2,"44292":3,"44293":3,"44294":4,"44295":3,"44296":1,"44297":4,"44298":3,"44299":4,"44300":2,"44301":2,"44302":4,"44303":2,"44304":1,"44305":4,"44306":3,"44307":3,"44308":4,"44309":4,"44310":3,"44311":2,"44312":4,"44313":1,"44314":2,"44315":4,"44316":2,"44317":3,"44318":3,"44319":2,"44320":2,"44321":4,"44322":1,"44323":2,"44324":1,"44325":4,"44326":1,"44327":4,"44328":4,"44329":3,"44330":2,"44331":3,"44332":3,"44333":2,"44334":3,"44335":3,"44336":4,"44337":1,"44338":2,"44339":4,"44340":5,"44341":2,"44342":3,"44343":4,"44344":3,"44345":1,"44346":3,"44347":1,"44348":3,"44349":2,"44350":4,"44351":4,"44352":3,"44353":3,"44354":1,"44355":1,"44356":4,"44357":3,"44358":2,"44359":4,"44360":3,"44361":2,"44362":3,"44363":3,"44364":3,"44365":4,"44366":5,"44367":3,"44368":1,"44369":3,"44370":2,"44371":2,"44372":3,"44373":2,"44374":3,"44375":5,"44376":2,"44377":3,"44378":4,"44379":3,"44380":3,"44381":4,"44382":3,"44383":4,"44384":2,"44385":3,"44386":5,"44387":3,"44388":4,"44389":3,"44390":4,"44391":4,"44392":2,"44393":4,"44394":5,"44395":4,"44396":3,"44397":4,"44398":4,"44399":4,"44400":3,"44401":4,"44402":4,"44403":2,"44404":4,"44405":4,"44406":2,"44407":4,"44408":1,"44409":3,"44410":4,"44411":5,"44412":4,"44413":3,"44414":3,"44415":5,"44416":5,"44417":1,"44418":2,"44419":2,"44420":1,"44421":3,"44422":3,"44423":2,"44424":4,"44425":3,"44426":3,"44427":4,"44428":3,"44429":3,"44430":3,"44431":4,"44432":2,"44433":3,"44434":2,"44435":5,"44436":4,"44437":3,"44438":5,"44439":2,"44440":3,"44441":2,"44442":2,"44443":3,"44444":4,"44445":3,"44446":3,"44447":4,"44448":3,"44449":3,"44450":2,"44451":3,"44452":1,"44453":1,"44454":3,"44455":1,"44456":4,"44457":3,"44458":5,"44459":4,"44460":1,"44461":4,"44462":2,"44463":1,"44464":3,"44465":1,"44466":4,"44467":3,"44468":4,"44469":4,"44470":4,"44471":3,"44472":1,"44473":4,"44474":2,"44475":3,"44476":3,"44477":3,"44478":2,"44479":1,"44480":3,"44481":2,"44482":4,"44483":2,"44484":3,"44485":4,"44486":4,"44487":3,"44488":3,"44489":3,"44490":5,"44491":2,"44492":5,"44493":2,"44494":5,"44495":3,"44496":2,"44497":3,"44498":2,"44499":4,"44500":2,"44501":3,"44502":4,"44503":3,"44504":4,"44505":3,"44506":3,"44507":3,"44508":3,"44509":4,"44510":3,"44511":3,"44512":2,"44513":4,"44514":5,"44515":2,"44516":4,"44517":2,"44518":3,"44519":5,"44520":1,"44521":2,"44522":3,"44523":3,"44524":2,"44525":3,"44526":2,"44527":3,"44528":4,"44529":3,"44530":4,"44531":4,"44532":5,"44533":2,"44534":5,"44535":2,"44536":3,"44537":2,"44538":3,"44539":1,"44540":2,"44541":2,"44542":1,"44543":3,"44544":4,"44545":2,"44546":2,"44547":3,"44548":2,"44549":3,"44550":4,"44551":3,"44552":5,"44553":5,"44554":4,"44555":3,"44556":3,"44557":4,"44558":3,"44559":2,"44560":2,"44561":4,"44562":5,"44563":2,"44564":5,"44565":2,"44566":4,"44567":4,"44568":2,"44569":4,"44570":3,"44571":4,"44572":2,"44573":5,"44574":3,"44575":2,"44576":3,"44577":2,"44578":4,"44579":5,"44580":4,"44581":3,"44582":2,"44583":3,"44584":2,"44585":2,"44586":4,"44587":4,"44588":1,"44589":3,"44590":4,"44591":2,"44592":3,"44593":3,"44594":3,"44595":2,"44596":3,"44597":5,"44598":2,"44599":2,"44600":3,"44601":3,"44602":2,"44603":1,"44604":3,"44605":4,"44606":4,"44607":3,"44608":3,"44609":2,"44610":3,"44611":4,"44612":3,"44613":4,"44614":2,"44615":2,"44616":3,"44617":5,"44618":4,"44619":2,"44620":2,"44621":4,"44622":3,"44623":3,"44624":3,"44625":3,"44626":3,"44627":3,"44628":2,"44629":1,"44630":4,"44631":3,"44632":5,"44633":2,"44634":3,"44635":3,"44636":4,"44637":4,"44638":3,"44639":3,"44640":2,"44641":2,"44642":3,"44643":4,"44644":3,"44645":4,"44646":2,"44647":3,"44648":3,"44649":4,"44650":3,"44651":2,"44652":3,"44653":4,"44654":3,"44655":3,"44656":2,"44657":4,"44658":3,"44659":2,"44660":5,"44661":2,"44662":4,"44663":2,"44664":2,"44665":3,"44666":5,"44667":3,"44668":2,"44669":3,"44670":3,"44671":3,"44672":2,"44673":1,"44674":4,"44675":3,"44676":3,"44677":3,"44678":3,"44679":3,"44680":3,"44681":2,"44682":3,"44683":3,"44684":3,"44685":2,"44686":1,"44687":2,"44688":3,"44689":3,"44690":2,"44691":5,"44692":2,"44693":2,"44694":4,"44695":2,"44696":4,"44697":5,"44698":2,"44699":2,"44700":1,"44701":3,"44702":1,"44703":3,"44704":1,"44705":3,"44706":3,"44707":3,"44708":3,"44709":1,"44710":4,"44711":1,"44712":2,"44713":5,"44714":2,"44715":4,"44716":3,"44717":3,"44718":3,"44719":2,"44720":4,"44721":3,"44722":3,"44723":1,"44724":3,"44725":4,"44726":4,"44727":3,"44728":4,"44729":5,"44730":2,"44731":3,"44732":2,"44733":1,"44734":1,"44735":4,"44736":2,"44737":3,"44738":3,"44739":4,"44740":3,"44741":4,"44742":3,"44743":3,"44744":4,"44745":5,"44746":2,"44747":2,"44748":4,"44749":3,"44750":4,"44751":1,"44752":3,"44753":2,"44754":4,"44755":2,"44756":3,"44757":2,"44758":4,"44759":3,"44760":3,"44761":4,"44762":3,"44763":1,"44764":3,"44765":4,"44766":5,"44767":4,"44768":2,"44769":3,"44770":4,"44771":3,"44772":3,"44773":3,"44774":3,"44775":2,"44776":3,"44777":3,"44778":2,"44779":2,"44780":2,"44781":2,"44782":3,"44783":5,"44784":5,"44785":1,"44786":5,"44787":3,"44788":3,"44789":1,"44790":3,"44791":2,"44792":3,"44793":5,"44794":4,"44795":2,"44796":3,"44797":1,"44798":1,"44799":2,"44800":2,"44801":2,"44802":2,"44803":4,"44804":4,"44805":3,"44806":4,"44807":4,"44808":1,"44809":3,"44810":4,"44811":1,"44812":4,"44813":3,"44814":4,"44815":2,"44816":1,"44817":4,"44818":4,"44819":3,"44820":2,"44821":5,"44822":3,"44823":4,"44824":3,"44825":3,"44826":3,"44827":4,"44828":3,"44829":4,"44830":3,"44831":4,"44832":3,"44833":3,"44834":4,"44835":4,"44836":2,"44837":1,"44838":4,"44839":4,"44840":3,"44841":2,"44842":3,"44843":4,"44844":2,"44845":5,"44846":2,"44847":2,"44848":2,"44849":2,"44850":3,"44851":3,"44852":3,"44853":4,"44854":2,"44855":4,"44856":1,"44857":2,"44858":4,"44859":5,"44860":2,"44861":4,"44862":3,"44863":2,"44864":1,"44865":2,"44866":3,"44867":4,"44868":4,"44869":2,"44870":5,"44871":2,"44872":4,"44873":3,"44874":3,"44875":2,"44876":3,"44877":4,"44878":2,"44879":3,"44880":3,"44881":2,"44882":3,"44883":4,"44884":4,"44885":5,"44886":3,"44887":3,"44888":3,"44889":4,"44890":4,"44891":3,"44892":3,"44893":2,"44894":1,"44895":4,"44896":3,"44897":2,"44898":3,"44899":3,"44900":4,"44901":1,"44902":2,"44903":4,"44904":2,"44905":3,"44906":4,"44907":2,"44908":3,"44909":1,"44910":2,"44911":2,"44912":3,"44913":3,"44914":4,"44915":3,"44916":5,"44917":4,"44918":2,"44919":4,"44920":3,"44921":2,"44922":2,"44923":4,"44924":3,"44925":2,"44926":3,"44927":3,"44928":4,"44929":1,"44930":3,"44931":4,"44932":4,"44933":4,"44934":1,"44935":4,"44936":2,"44937":1,"44938":3,"44939":3,"44940":3,"44941":4,"44942":4,"44943":3,"44944":5,"44945":3,"44946":4,"44947":3,"44948":3,"44949":3,"44950":3,"44951":3,"44952":3,"44953":3,"44954":1,"44955":4,"44956":3,"44957":4,"44958":2,"44959":3,"44960":4,"44961":2,"44962":3,"44963":1,"44964":2,"44965":3,"44966":4,"44967":5,"44968":4,"44969":2,"44970":4,"44971":3,"44972":4,"44973":2,"44974":3,"44975":3,"44976":4,"44977":4,"44978":2,"44979":4,"44980":1,"44981":4,"44982":2,"44983":3,"44984":3,"44985":3,"44986":3,"44987":1,"44988":3,"44989":2,"44990":2,"44991":2,"44992":4,"44993":2,"44994":4,"44995":2,"44996":4,"44997":2,"44998":3,"44999":4,"45000":1,"45001":4,"45002":3,"45003":3,"45004":4,"45005":4,"45006":3,"45007":5,"45008":3,"45009":4,"45010":2,"45011":3,"45012":2,"45013":1,"45014":4,"45015":3,"45016":3,"45017":2,"45018":2,"45019":4,"45020":3,"45021":2,"45022":4,"45023":3,"45024":2,"45025":3,"45026":4,"45027":4,"45028":3,"45029":4,"45030":4,"45031":2,"45032":3,"45033":2,"45034":2,"45035":5,"45036":3,"45037":3,"45038":1,"45039":2,"45040":3,"45041":2,"45042":4,"45043":4,"45044":4,"45045":2,"45046":1,"45047":2,"45048":3,"45049":2,"45050":3,"45051":3,"45052":4,"45053":4,"45054":1,"45055":4,"45056":1,"45057":3,"45058":4,"45059":1,"45060":1,"45061":3,"45062":2,"45063":5,"45064":3,"45065":5,"45066":2,"45067":1,"45068":4,"45069":1,"45070":4,"45071":5,"45072":3,"45073":4,"45074":2,"45075":1,"45076":3,"45077":3,"45078":1,"45079":4,"45080":3,"45081":3,"45082":3,"45083":4,"45084":4,"45085":5,"45086":4,"45087":1,"45088":2,"45089":3,"45090":3,"45091":3,"45092":3,"45093":3,"45094":5,"45095":2,"45096":4,"45097":4,"45098":3,"45099":2,"45100":4,"45101":2,"45102":3,"45103":3,"45104":4,"45105":3,"45106":4,"45107":1,"45108":4,"45109":5,"45110":4,"45111":3,"45112":2,"45113":4,"45114":3,"45115":2,"45116":3,"45117":3,"45118":4,"45119":3,"45120":1,"45121":4,"45122":3,"45123":3,"45124":3,"45125":3,"45126":2,"45127":3,"45128":4,"45129":3,"45130":4,"45131":2,"45132":3,"45133":3,"45134":3,"45135":3,"45136":2,"45137":3,"45138":3,"45139":4,"45140":3,"45141":3,"45142":3,"45143":1,"45144":2,"45145":1,"45146":3,"45147":3,"45148":3,"45149":2,"45150":4,"45151":1,"45152":3,"45153":4,"45154":2,"45155":5,"45156":2,"45157":3,"45158":4,"45159":4,"45160":2,"45161":5,"45162":3,"45163":3,"45164":2,"45165":1,"45166":5,"45167":1,"45168":4,"45169":1,"45170":3,"45171":2,"45172":3,"45173":2,"45174":3,"45175":2,"45176":3,"45177":3,"45178":1,"45179":3,"45180":4,"45181":3,"45182":1,"45183":3,"45184":2,"45185":2,"45186":1,"45187":5,"45188":4,"45189":2,"45190":2,"45191":3,"45192":2,"45193":4,"45194":2,"45195":4,"45196":4,"45197":5,"45198":4,"45199":5,"45200":1,"45201":4,"45202":3,"45203":2,"45204":3,"45205":3,"45206":2,"45207":4,"45208":3,"45209":3,"45210":1,"45211":4,"45212":4,"45213":4,"45214":4,"45215":3,"45216":4,"45217":3,"45218":3,"45219":3,"45220":3,"45221":4,"45222":3,"45223":3,"45224":3,"45225":2,"45226":1,"45227":2,"45228":5,"45229":2,"45230":2,"45231":4,"45232":5,"45233":1,"45234":4,"45235":4,"45236":4,"45237":4,"45238":4,"45239":5,"45240":3,"45241":3,"45242":4,"45243":2,"45244":4,"45245":2,"45246":4,"45247":3,"45248":5,"45249":4,"45250":1,"45251":4,"45252":2,"45253":2,"45254":2,"45255":2,"45256":2,"45257":3,"45258":4,"45259":3,"45260":3,"45261":2,"45262":2,"45263":3,"45264":3,"45265":4,"45266":2,"45267":4,"45268":3,"45269":3,"45270":1,"45271":2,"45272":4,"45273":3,"45274":3,"45275":4,"45276":2,"45277":3,"45278":2,"45279":3,"45280":5,"45281":3,"45282":3,"45283":3,"45284":3,"45285":3,"45286":2,"45287":1,"45288":4,"45289":4,"45290":3,"45291":3,"45292":4,"45293":4,"45294":4,"45295":4,"45296":4,"45297":3,"45298":3,"45299":3,"45300":3,"45301":4,"45302":2,"45303":2,"45304":2,"45305":3,"45306":3,"45307":3,"45308":5,"45309":3,"45310":3,"45311":3,"45312":2,"45313":2,"45314":3,"45315":2,"45316":2,"45317":3,"45318":3,"45319":2,"45320":3,"45321":4,"45322":4,"45323":3,"45324":4,"45325":4,"45326":2,"45327":3,"45328":2,"45329":4,"45330":4,"45331":3,"45332":2,"45333":4,"45334":3,"45335":3,"45336":1,"45337":2,"45338":3,"45339":1,"45340":3,"45341":4,"45342":4,"45343":3,"45344":2,"45345":4,"45346":3,"45347":3,"45348":5,"45349":5,"45350":4,"45351":2,"45352":4,"45353":3,"45354":3,"45355":3,"45356":3,"45357":3,"45358":2,"45359":3,"45360":4,"45361":3,"45362":3,"45363":4,"45364":3,"45365":2,"45366":4,"45367":3,"45368":3,"45369":4,"45370":3,"45371":4,"45372":3,"45373":4,"45374":1,"45375":2,"45376":4,"45377":2,"45378":3,"45379":2,"45380":1,"45381":4,"45382":3,"45383":1,"45384":3,"45385":3,"45386":3,"45387":5,"45388":4,"45389":4,"45390":1,"45391":1,"45392":2,"45393":4,"45394":2,"45395":4,"45396":4,"45397":3,"45398":3,"45399":2,"45400":3,"45401":3,"45402":3,"45403":5,"45404":4,"45405":5,"45406":3,"45407":2,"45408":2,"45409":2,"45410":4,"45411":2,"45412":4,"45413":4,"45414":2,"45415":1,"45416":2,"45417":4,"45418":1,"45419":5,"45420":3,"45421":4,"45422":4,"45423":3,"45424":3,"45425":2,"45426":4,"45427":1,"45428":3,"45429":3,"45430":2,"45431":4,"45432":3,"45433":4,"45434":3,"45435":2,"45436":4,"45437":3,"45438":1,"45439":2,"45440":5,"45441":2,"45442":3,"45443":3,"45444":5,"45445":2,"45446":3,"45447":4,"45448":5,"45449":3,"45450":5,"45451":2,"45452":2,"45453":5,"45454":3,"45455":4,"45456":4,"45457":4,"45458":3,"45459":2,"45460":2,"45461":1,"45462":3,"45463":3,"45464":2,"45465":1,"45466":3,"45467":4,"45468":4,"45469":4,"45470":3,"45471":1,"45472":2,"45473":4,"45474":3,"45475":4,"45476":3,"45477":2,"45478":2,"45479":1,"45480":3,"45481":2,"45482":4,"45483":1,"45484":2,"45485":3,"45486":2,"45487":3,"45488":2,"45489":3,"45490":4,"45491":2,"45492":3,"45493":4,"45494":3,"45495":4,"45496":4,"45497":2,"45498":2,"45499":4,"45500":4,"45501":3,"45502":4,"45503":5,"45504":5,"45505":4,"45506":3,"45507":4,"45508":2,"45509":3,"45510":2,"45511":4,"45512":3,"45513":4,"45514":2,"45515":1,"45516":2,"45517":5,"45518":3,"45519":3,"45520":2,"45521":3,"45522":4,"45523":3,"45524":3,"45525":3,"45526":3,"45527":5,"45528":4,"45529":4,"45530":4,"45531":3,"45532":5,"45533":3,"45534":3,"45535":2,"45536":3,"45537":4,"45538":4,"45539":1,"45540":4,"45541":2,"45542":4,"45543":4,"45544":3,"45545":4,"45546":4,"45547":3,"45548":4,"45549":3,"45550":3,"45551":5,"45552":4,"45553":1,"45554":3,"45555":3,"45556":4,"45557":1,"45558":3,"45559":5,"45560":4,"45561":4,"45562":2,"45563":3,"45564":5,"45565":3,"45566":3,"45567":4,"45568":3,"45569":4,"45570":1,"45571":4,"45572":2,"45573":2,"45574":5,"45575":3,"45576":3,"45577":3,"45578":3,"45579":3,"45580":3,"45581":1,"45582":2,"45583":2,"45584":5,"45585":3,"45586":2,"45587":3,"45588":1,"45589":2,"45590":1,"45591":3,"45592":4,"45593":4,"45594":3,"45595":2,"45596":4,"45597":3,"45598":2,"45599":4,"45600":3,"45601":2,"45602":2,"45603":3,"45604":2,"45605":3,"45606":3,"45607":4,"45608":3,"45609":1,"45610":3,"45611":4,"45612":2,"45613":2,"45614":4,"45615":4,"45616":3,"45617":1,"45618":3,"45619":3,"45620":3,"45621":3,"45622":2,"45623":4,"45624":4,"45625":4,"45626":2,"45627":5,"45628":5,"45629":3,"45630":2,"45631":4,"45632":2,"45633":2,"45634":3,"45635":3,"45636":4,"45637":4,"45638":5,"45639":3,"45640":3,"45641":3,"45642":2,"45643":4,"45644":3,"45645":3,"45646":4,"45647":2,"45648":3,"45649":4,"45650":3,"45651":4,"45652":4,"45653":2,"45654":4,"45655":2,"45656":3,"45657":1,"45658":2,"45659":1,"45660":1,"45661":4,"45662":4,"45663":3,"45664":5,"45665":3,"45666":2,"45667":3,"45668":4,"45669":2,"45670":3,"45671":4,"45672":1,"45673":3,"45674":2,"45675":3,"45676":2,"45677":3,"45678":1,"45679":3,"45680":2,"45681":4,"45682":5,"45683":2,"45684":2,"45685":3,"45686":3,"45687":2,"45688":1,"45689":5,"45690":5,"45691":1,"45692":3,"45693":2,"45694":4,"45695":1,"45696":3,"45697":3,"45698":3,"45699":4,"45700":4,"45701":4,"45702":1,"45703":2,"45704":2,"45705":2,"45706":2,"45707":3,"45708":3,"45709":3,"45710":4,"45711":2,"45712":4,"45713":4,"45714":3,"45715":1,"45716":3,"45717":5,"45718":1,"45719":4,"45720":4,"45721":1,"45722":2,"45723":3,"45724":2,"45725":2,"45726":3,"45727":2,"45728":2,"45729":4,"45730":4,"45731":4,"45732":4,"45733":4,"45734":4,"45735":5,"45736":4,"45737":3,"45738":3,"45739":5,"45740":2,"45741":4,"45742":1,"45743":4,"45744":3,"45745":2,"45746":4,"45747":4,"45748":2,"45749":1,"45750":3,"45751":2,"45752":3,"45753":3,"45754":2,"45755":3,"45756":2,"45757":4,"45758":2,"45759":2,"45760":1,"45761":2,"45762":3,"45763":2,"45764":4,"45765":4,"45766":2,"45767":2,"45768":5,"45769":2,"45770":4,"45771":1,"45772":4,"45773":3,"45774":3,"45775":5,"45776":4,"45777":2,"45778":3,"45779":2,"45780":2,"45781":3,"45782":3,"45783":4,"45784":3,"45785":1,"45786":3,"45787":3,"45788":2,"45789":3,"45790":4,"45791":3,"45792":4,"45793":4,"45794":3,"45795":3,"45796":5,"45797":2,"45798":4,"45799":4,"45800":3,"45801":3,"45802":2,"45803":2,"45804":1,"45805":3,"45806":5,"45807":4,"45808":3,"45809":2,"45810":3,"45811":3,"45812":4,"45813":2,"45814":2,"45815":1,"45816":4,"45817":4,"45818":4,"45819":5,"45820":5,"45821":2,"45822":1,"45823":2,"45824":3,"45825":5,"45826":3,"45827":3,"45828":1,"45829":2,"45830":4,"45831":2,"45832":3,"45833":4,"45834":4,"45835":3,"45836":4,"45837":4,"45838":2,"45839":4,"45840":3,"45841":5,"45842":3,"45843":2,"45844":3,"45845":3,"45846":4,"45847":3,"45848":2,"45849":1,"45850":1,"45851":4,"45852":4,"45853":3,"45854":2,"45855":2,"45856":3,"45857":5,"45858":3,"45859":4,"45860":4,"45861":2,"45862":3,"45863":1,"45864":1,"45865":2,"45866":5,"45867":3,"45868":3,"45869":2,"45870":4,"45871":3,"45872":3,"45873":2,"45874":3,"45875":4,"45876":3,"45877":4,"45878":2,"45879":3,"45880":3,"45881":3,"45882":4,"45883":2,"45884":3,"45885":2,"45886":3,"45887":3,"45888":1,"45889":4,"45890":3,"45891":3,"45892":2,"45893":2,"45894":2,"45895":3,"45896":2,"45897":3,"45898":3,"45899":4,"45900":3,"45901":4,"45902":1,"45903":4,"45904":2,"45905":4,"45906":3,"45907":2,"45908":2,"45909":4,"45910":4,"45911":4,"45912":3,"45913":3,"45914":1,"45915":5,"45916":3,"45917":4,"45918":2,"45919":5,"45920":2,"45921":2,"45922":4,"45923":3,"45924":2,"45925":4,"45926":4,"45927":3,"45928":5,"45929":3,"45930":2,"45931":4,"45932":3,"45933":4,"45934":4,"45935":3,"45936":1,"45937":4,"45938":3,"45939":4,"45940":1,"45941":1,"45942":3,"45943":3,"45944":3,"45945":3,"45946":3,"45947":4,"45948":2,"45949":3,"45950":3,"45951":3,"45952":4,"45953":1,"45954":3,"45955":2,"45956":3,"45957":3,"45958":3,"45959":1,"45960":2,"45961":4,"45962":2,"45963":3,"45964":5,"45965":5,"45966":4,"45967":2,"45968":3,"45969":3,"45970":5,"45971":2,"45972":1,"45973":2,"45974":3,"45975":3,"45976":3,"45977":2,"45978":3,"45979":3,"45980":3,"45981":3,"45982":4,"45983":3,"45984":1,"45985":5,"45986":3,"45987":4,"45988":3,"45989":3,"45990":3,"45991":4,"45992":2,"45993":1,"45994":3,"45995":3,"45996":3,"45997":5,"45998":4,"45999":2,"46000":3,"46001":4,"46002":4,"46003":2,"46004":3,"46005":4,"46006":2,"46007":3,"46008":3,"46009":2,"46010":3,"46011":3,"46012":1,"46013":4,"46014":3,"46015":1,"46016":2,"46017":3,"46018":2,"46019":3,"46020":2,"46021":5,"46022":4,"46023":1,"46024":3,"46025":3,"46026":3,"46027":2,"46028":3,"46029":1,"46030":5,"46031":2,"46032":3,"46033":1,"46034":3,"46035":2,"46036":4,"46037":3,"46038":3,"46039":3,"46040":3,"46041":3,"46042":4,"46043":4,"46044":5,"46045":2,"46046":2,"46047":5,"46048":4,"46049":3,"46050":2,"46051":2,"46052":2,"46053":4,"46054":4,"46055":3,"46056":2,"46057":4,"46058":3,"46059":2,"46060":5,"46061":3,"46062":3,"46063":2,"46064":2,"46065":4,"46066":2,"46067":2,"46068":4,"46069":3,"46070":2,"46071":3,"46072":3,"46073":3,"46074":3,"46075":5,"46076":2,"46077":1,"46078":3,"46079":5,"46080":3,"46081":3,"46082":1,"46083":5,"46084":4,"46085":4,"46086":4,"46087":5,"46088":3,"46089":1,"46090":1,"46091":4,"46092":1,"46093":3,"46094":2,"46095":4,"46096":3,"46097":2,"46098":4,"46099":4,"46100":2,"46101":4,"46102":1,"46103":3,"46104":2,"46105":2,"46106":4,"46107":4,"46108":4,"46109":2,"46110":3,"46111":1,"46112":4,"46113":4,"46114":5,"46115":4,"46116":3,"46117":3,"46118":3,"46119":2,"46120":1,"46121":1,"46122":2,"46123":5,"46124":4,"46125":2,"46126":4,"46127":3,"46128":3,"46129":4,"46130":2,"46131":5,"46132":2,"46133":4,"46134":3,"46135":3,"46136":3,"46137":3,"46138":2,"46139":4,"46140":2,"46141":2,"46142":3,"46143":2,"46144":3,"46145":3,"46146":4,"46147":3,"46148":3,"46149":4,"46150":3,"46151":1,"46152":3,"46153":1,"46154":4,"46155":4,"46156":2,"46157":3,"46158":2,"46159":3,"46160":3,"46161":1,"46162":3,"46163":4,"46164":4,"46165":1,"46166":1,"46167":4,"46168":3,"46169":2,"46170":2,"46171":2,"46172":2,"46173":2,"46174":4,"46175":2,"46176":3,"46177":2,"46178":2,"46179":2,"46180":3,"46181":2,"46182":2,"46183":4,"46184":2,"46185":3,"46186":4,"46187":3,"46188":3,"46189":2,"46190":1,"46191":1,"46192":2,"46193":3,"46194":3,"46195":4,"46196":1,"46197":3,"46198":3,"46199":2,"46200":3,"46201":3,"46202":2,"46203":1,"46204":4,"46205":1,"46206":2,"46207":5,"46208":4,"46209":1,"46210":4,"46211":2,"46212":4,"46213":4,"46214":4,"46215":2,"46216":3,"46217":3,"46218":3,"46219":5,"46220":5,"46221":5,"46222":2,"46223":3,"46224":2,"46225":3,"46226":2,"46227":1,"46228":4,"46229":3,"46230":2,"46231":2,"46232":4,"46233":3,"46234":4,"46235":4,"46236":4,"46237":5,"46238":3,"46239":4,"46240":3,"46241":1,"46242":1,"46243":2,"46244":1,"46245":4,"46246":1,"46247":1,"46248":4,"46249":4,"46250":3,"46251":3,"46252":2,"46253":4,"46254":3,"46255":3,"46256":2,"46257":4,"46258":3,"46259":2,"46260":3,"46261":3,"46262":3,"46263":3,"46264":4,"46265":5,"46266":3,"46267":3,"46268":4,"46269":2,"46270":4,"46271":4,"46272":3,"46273":4,"46274":1,"46275":2,"46276":2,"46277":3,"46278":3,"46279":3,"46280":4,"46281":3,"46282":3,"46283":4,"46284":4,"46285":3,"46286":2,"46287":2,"46288":4,"46289":2,"46290":1,"46291":3,"46292":4,"46293":4,"46294":4,"46295":4,"46296":3,"46297":2,"46298":3,"46299":4,"46300":4,"46301":3,"46302":3,"46303":5,"46304":4,"46305":2,"46306":4,"46307":3,"46308":5,"46309":2,"46310":5,"46311":5,"46312":4,"46313":3,"46314":3,"46315":2,"46316":3,"46317":4,"46318":2,"46319":1,"46320":4,"46321":3,"46322":2,"46323":4,"46324":2,"46325":4,"46326":1,"46327":2,"46328":3,"46329":1,"46330":5,"46331":3,"46332":5,"46333":5,"46334":2,"46335":4,"46336":3,"46337":3,"46338":1,"46339":1,"46340":2,"46341":4,"46342":1,"46343":2,"46344":4,"46345":1,"46346":4,"46347":2,"46348":2,"46349":1,"46350":2,"46351":4,"46352":3,"46353":4,"46354":4,"46355":2,"46356":3,"46357":3,"46358":1,"46359":5,"46360":1,"46361":5,"46362":2,"46363":3,"46364":3,"46365":3,"46366":2,"46367":2,"46368":3,"46369":1,"46370":3,"46371":3,"46372":4,"46373":1,"46374":2,"46375":3,"46376":3,"46377":4,"46378":3,"46379":3,"46380":2,"46381":4,"46382":4,"46383":2,"46384":4,"46385":4,"46386":2,"46387":3,"46388":2,"46389":1,"46390":4,"46391":3,"46392":3,"46393":4,"46394":2,"46395":4,"46396":4,"46397":5,"46398":3,"46399":1,"46400":5,"46401":2,"46402":4,"46403":3,"46404":4,"46405":4,"46406":4,"46407":3,"46408":2,"46409":5,"46410":3,"46411":4,"46412":1,"46413":2,"46414":3,"46415":3,"46416":1,"46417":2,"46418":4,"46419":3,"46420":1,"46421":2,"46422":3,"46423":3,"46424":3,"46425":4,"46426":2,"46427":4,"46428":2,"46429":3,"46430":4,"46431":3,"46432":3,"46433":1,"46434":4,"46435":3,"46436":4,"46437":4,"46438":1,"46439":3,"46440":4,"46441":3,"46442":1,"46443":2,"46444":2,"46445":2,"46446":3,"46447":3,"46448":4,"46449":3,"46450":3,"46451":3,"46452":3,"46453":4,"46454":2,"46455":5,"46456":3,"46457":4,"46458":2,"46459":2,"46460":3,"46461":3,"46462":4,"46463":3,"46464":2,"46465":2,"46466":3,"46467":4,"46468":3,"46469":4,"46470":1,"46471":4,"46472":2,"46473":1,"46474":3,"46475":3,"46476":4,"46477":3,"46478":1,"46479":3,"46480":4,"46481":2,"46482":3,"46483":3,"46484":4,"46485":5,"46486":4,"46487":3,"46488":3,"46489":2,"46490":4,"46491":5,"46492":1,"46493":3,"46494":1,"46495":3,"46496":3,"46497":4,"46498":4,"46499":2,"46500":4,"46501":1,"46502":3,"46503":5,"46504":2,"46505":1,"46506":1,"46507":5,"46508":2,"46509":1,"46510":3,"46511":2,"46512":3,"46513":2,"46514":3,"46515":1,"46516":2,"46517":2,"46518":3,"46519":4,"46520":2,"46521":3,"46522":3,"46523":3,"46524":4,"46525":5,"46526":4,"46527":4,"46528":1,"46529":4,"46530":4,"46531":2,"46532":1,"46533":4,"46534":2,"46535":1,"46536":2,"46537":2,"46538":5,"46539":1,"46540":1,"46541":4,"46542":3,"46543":2,"46544":1,"46545":4,"46546":2,"46547":5,"46548":4,"46549":3,"46550":2,"46551":5,"46552":1,"46553":3,"46554":3,"46555":3,"46556":2,"46557":1,"46558":3,"46559":2,"46560":3,"46561":2,"46562":2,"46563":2,"46564":1,"46565":4,"46566":4,"46567":3,"46568":1,"46569":3,"46570":2,"46571":1,"46572":3,"46573":2,"46574":3,"46575":1,"46576":2,"46577":4,"46578":3,"46579":3,"46580":3,"46581":3,"46582":1,"46583":2,"46584":1,"46585":3,"46586":2,"46587":5,"46588":3,"46589":4,"46590":4,"46591":1,"46592":2,"46593":4,"46594":3,"46595":4,"46596":3,"46597":3,"46598":3,"46599":1,"46600":3,"46601":2,"46602":2,"46603":5,"46604":2,"46605":3,"46606":3,"46607":2,"46608":3,"46609":3,"46610":3,"46611":4,"46612":1,"46613":5,"46614":3,"46615":1,"46616":3,"46617":4,"46618":2,"46619":4,"46620":2,"46621":4,"46622":5,"46623":1,"46624":1,"46625":1,"46626":1,"46627":2,"46628":3,"46629":5,"46630":3,"46631":3,"46632":5,"46633":3,"46634":4,"46635":4,"46636":3,"46637":3,"46638":3,"46639":3,"46640":5,"46641":3,"46642":4,"46643":4,"46644":4,"46645":2,"46646":3,"46647":3,"46648":4,"46649":1,"46650":1,"46651":4,"46652":3,"46653":1,"46654":2,"46655":5,"46656":1,"46657":4,"46658":2,"46659":2,"46660":3,"46661":3,"46662":2,"46663":3,"46664":5,"46665":3,"46666":4,"46667":3,"46668":3,"46669":4,"46670":3,"46671":2,"46672":2,"46673":3,"46674":3,"46675":4,"46676":2,"46677":3,"46678":4,"46679":4,"46680":4,"46681":2,"46682":3,"46683":2,"46684":2,"46685":3,"46686":2,"46687":1,"46688":3,"46689":4,"46690":3,"46691":4,"46692":3,"46693":3,"46694":5,"46695":4,"46696":1,"46697":3,"46698":2,"46699":1,"46700":2,"46701":3,"46702":3,"46703":4,"46704":2,"46705":2,"46706":1,"46707":3,"46708":2,"46709":4,"46710":3,"46711":4,"46712":3,"46713":4,"46714":3,"46715":3,"46716":3,"46717":2,"46718":3,"46719":4,"46720":2,"46721":3,"46722":3,"46723":3,"46724":3,"46725":3,"46726":3,"46727":1,"46728":4,"46729":4,"46730":5,"46731":3,"46732":4,"46733":2,"46734":2,"46735":2,"46736":4,"46737":4,"46738":2,"46739":3,"46740":1,"46741":3,"46742":4,"46743":4,"46744":2,"46745":3,"46746":1,"46747":3,"46748":2,"46749":3,"46750":2,"46751":5,"46752":2,"46753":3,"46754":3,"46755":5,"46756":2,"46757":3,"46758":4,"46759":3,"46760":3,"46761":1,"46762":4,"46763":4,"46764":2,"46765":2,"46766":4,"46767":1,"46768":3,"46769":4,"46770":2,"46771":3,"46772":4,"46773":5,"46774":1,"46775":2,"46776":4,"46777":4,"46778":2,"46779":1,"46780":2,"46781":3,"46782":2,"46783":4,"46784":4,"46785":5,"46786":3,"46787":2,"46788":5,"46789":5,"46790":3,"46791":4,"46792":3,"46793":4,"46794":4,"46795":2,"46796":3,"46797":3,"46798":2,"46799":3,"46800":2,"46801":4,"46802":3,"46803":4,"46804":4,"46805":2,"46806":2,"46807":2,"46808":3,"46809":1,"46810":2,"46811":1,"46812":2,"46813":4,"46814":1,"46815":1,"46816":2,"46817":2,"46818":4,"46819":4,"46820":2,"46821":3,"46822":1,"46823":2,"46824":4,"46825":2,"46826":2,"46827":3,"46828":3,"46829":2,"46830":1,"46831":3,"46832":3,"46833":3,"46834":2,"46835":2,"46836":3,"46837":5,"46838":3,"46839":4,"46840":3,"46841":3,"46842":1,"46843":4,"46844":2,"46845":2,"46846":5,"46847":3,"46848":2,"46849":3,"46850":2,"46851":5,"46852":5,"46853":4,"46854":2,"46855":3,"46856":4,"46857":4,"46858":4,"46859":3,"46860":3,"46861":3,"46862":1,"46863":4,"46864":3,"46865":3,"46866":3,"46867":1,"46868":3,"46869":4,"46870":3,"46871":1,"46872":1,"46873":2,"46874":4,"46875":3,"46876":4,"46877":4,"46878":3,"46879":2,"46880":3,"46881":4,"46882":3,"46883":4,"46884":2,"46885":4,"46886":3,"46887":2,"46888":3,"46889":3,"46890":4,"46891":3,"46892":3,"46893":4,"46894":4,"46895":3,"46896":3,"46897":3,"46898":2,"46899":4,"46900":3,"46901":1,"46902":1,"46903":4,"46904":3,"46905":1,"46906":4,"46907":4,"46908":4,"46909":1,"46910":3,"46911":3,"46912":4,"46913":3,"46914":3,"46915":3,"46916":3,"46917":3,"46918":3,"46919":3,"46920":4,"46921":3,"46922":5,"46923":2,"46924":3,"46925":4,"46926":3,"46927":3,"46928":2,"46929":4,"46930":3,"46931":3,"46932":4,"46933":3,"46934":1,"46935":5,"46936":2,"46937":2,"46938":4,"46939":3,"46940":2,"46941":4,"46942":5,"46943":2,"46944":2,"46945":2,"46946":1,"46947":3,"46948":3,"46949":2,"46950":4,"46951":2,"46952":3,"46953":4,"46954":5,"46955":4,"46956":3,"46957":2,"46958":3,"46959":1,"46960":4,"46961":3,"46962":4,"46963":3,"46964":3,"46965":3,"46966":4,"46967":1,"46968":5,"46969":3,"46970":4,"46971":4,"46972":2,"46973":4,"46974":4,"46975":4,"46976":2,"46977":3,"46978":2,"46979":4,"46980":4,"46981":3,"46982":4,"46983":3,"46984":4,"46985":3,"46986":4,"46987":2,"46988":2,"46989":1,"46990":3,"46991":2,"46992":2,"46993":1,"46994":3,"46995":3,"46996":1,"46997":2,"46998":3,"46999":2,"47000":3,"47001":3,"47002":2,"47003":5,"47004":3,"47005":3,"47006":4,"47007":2,"47008":3,"47009":5,"47010":3,"47011":3,"47012":1,"47013":3,"47014":4,"47015":3,"47016":1,"47017":4,"47018":4,"47019":3,"47020":4,"47021":4,"47022":4,"47023":3,"47024":3,"47025":1,"47026":3,"47027":3,"47028":3,"47029":2,"47030":1,"47031":5,"47032":3,"47033":1,"47034":3,"47035":4,"47036":2,"47037":3,"47038":2,"47039":3,"47040":3,"47041":1,"47042":3,"47043":2,"47044":5,"47045":2,"47046":2,"47047":3,"47048":3,"47049":2,"47050":5,"47051":1,"47052":4,"47053":4,"47054":1,"47055":3,"47056":1,"47057":4,"47058":1,"47059":3,"47060":1,"47061":3,"47062":2,"47063":2,"47064":4,"47065":3,"47066":3,"47067":3,"47068":3,"47069":4,"47070":3,"47071":1,"47072":2,"47073":4,"47074":3,"47075":2,"47076":4,"47077":3,"47078":3,"47079":4,"47080":4,"47081":2,"47082":2,"47083":2,"47084":4,"47085":3,"47086":3,"47087":4,"47088":4,"47089":3,"47090":2,"47091":2,"47092":3,"47093":1,"47094":2,"47095":4,"47096":3,"47097":4,"47098":2,"47099":4,"47100":2,"47101":2,"47102":3,"47103":2,"47104":3,"47105":2,"47106":2,"47107":1,"47108":3,"47109":3,"47110":3,"47111":4,"47112":3,"47113":3,"47114":2,"47115":3,"47116":3,"47117":4,"47118":2,"47119":4,"47120":4,"47121":3,"47122":2,"47123":1,"47124":1,"47125":3,"47126":2,"47127":2,"47128":1,"47129":3,"47130":4,"47131":2,"47132":4,"47133":5,"47134":3,"47135":3,"47136":4,"47137":2,"47138":3,"47139":2,"47140":2,"47141":2,"47142":2,"47143":3,"47144":3,"47145":3,"47146":2,"47147":1,"47148":4,"47149":2,"47150":2,"47151":1,"47152":2,"47153":3,"47154":3,"47155":4,"47156":4,"47157":2,"47158":3,"47159":4,"47160":2,"47161":3,"47162":1,"47163":3,"47164":2,"47165":1,"47166":2,"47167":1,"47168":3,"47169":1,"47170":2,"47171":3,"47172":3,"47173":2,"47174":1,"47175":4,"47176":3,"47177":1,"47178":2,"47179":5,"47180":4,"47181":4,"47182":3,"47183":4,"47184":3,"47185":4,"47186":4,"47187":4,"47188":5,"47189":2,"47190":4,"47191":2,"47192":2,"47193":4,"47194":2,"47195":2,"47196":1,"47197":3,"47198":5,"47199":4,"47200":4,"47201":3,"47202":3,"47203":4,"47204":2,"47205":3,"47206":3,"47207":5,"47208":2,"47209":3,"47210":1,"47211":3,"47212":3,"47213":2,"47214":5,"47215":2,"47216":2,"47217":4,"47218":3,"47219":1,"47220":2,"47221":2,"47222":4,"47223":1,"47224":2,"47225":3,"47226":2,"47227":3,"47228":2,"47229":3,"47230":3,"47231":1,"47232":1,"47233":1,"47234":3,"47235":1,"47236":3,"47237":2,"47238":3,"47239":2,"47240":2,"47241":3,"47242":3,"47243":2,"47244":3,"47245":4,"47246":3,"47247":5,"47248":2,"47249":1,"47250":3,"47251":4,"47252":3,"47253":3,"47254":2,"47255":4,"47256":4,"47257":2,"47258":2,"47259":1,"47260":2,"47261":3,"47262":4,"47263":2,"47264":2,"47265":1,"47266":1,"47267":4,"47268":2,"47269":4,"47270":3,"47271":5,"47272":3,"47273":1,"47274":4,"47275":1,"47276":2,"47277":3,"47278":3,"47279":4,"47280":4,"47281":5,"47282":5,"47283":4,"47284":4,"47285":4,"47286":3,"47287":4,"47288":2,"47289":3,"47290":2,"47291":3,"47292":3,"47293":2,"47294":5,"47295":3,"47296":3,"47297":4,"47298":2,"47299":4,"47300":3,"47301":4,"47302":4,"47303":3,"47304":2,"47305":3,"47306":3,"47307":3,"47308":3,"47309":5,"47310":3,"47311":4,"47312":4,"47313":3,"47314":5,"47315":3,"47316":3,"47317":1,"47318":2,"47319":2,"47320":1,"47321":3,"47322":4,"47323":3,"47324":2,"47325":3,"47326":3,"47327":4,"47328":2,"47329":3,"47330":3,"47331":1,"47332":3,"47333":2,"47334":4,"47335":2,"47336":2,"47337":4,"47338":3,"47339":4,"47340":2,"47341":5,"47342":4,"47343":3,"47344":4,"47345":3,"47346":5,"47347":3,"47348":1,"47349":5,"47350":5,"47351":2,"47352":2,"47353":2,"47354":2,"47355":5,"47356":2,"47357":1,"47358":4,"47359":4,"47360":3,"47361":5,"47362":3,"47363":3,"47364":4,"47365":4,"47366":4,"47367":3,"47368":4,"47369":3,"47370":3,"47371":3,"47372":3,"47373":3,"47374":4,"47375":3,"47376":3,"47377":1,"47378":3,"47379":2,"47380":5,"47381":3,"47382":5,"47383":2,"47384":3,"47385":4,"47386":2,"47387":2,"47388":3,"47389":3,"47390":4,"47391":1,"47392":3,"47393":1,"47394":4,"47395":3,"47396":4,"47397":3,"47398":3,"47399":4,"47400":2,"47401":2,"47402":1,"47403":2,"47404":2,"47405":2,"47406":3,"47407":2,"47408":2,"47409":5,"47410":3,"47411":4,"47412":4,"47413":1,"47414":3,"47415":3,"47416":2,"47417":3,"47418":2,"47419":2,"47420":4,"47421":2,"47422":2,"47423":3,"47424":2,"47425":1,"47426":4,"47427":4,"47428":2,"47429":4,"47430":3,"47431":5,"47432":2,"47433":3,"47434":5,"47435":4,"47436":3,"47437":3,"47438":4,"47439":3,"47440":5,"47441":4,"47442":4,"47443":3,"47444":2,"47445":3,"47446":4,"47447":3,"47448":4,"47449":4,"47450":4,"47451":4,"47452":2,"47453":3,"47454":5,"47455":1,"47456":3,"47457":4,"47458":1,"47459":3,"47460":1,"47461":2,"47462":4,"47463":4,"47464":4,"47465":1,"47466":3,"47467":4,"47468":3,"47469":3,"47470":2,"47471":2,"47472":3,"47473":4,"47474":3,"47475":1,"47476":4,"47477":3,"47478":3,"47479":5,"47480":3,"47481":2,"47482":2,"47483":4,"47484":4,"47485":4,"47486":3,"47487":2,"47488":4,"47489":3,"47490":3,"47491":4,"47492":2,"47493":4,"47494":3,"47495":3,"47496":5,"47497":4,"47498":4,"47499":3,"47500":1,"47501":2,"47502":5,"47503":3,"47504":2,"47505":3,"47506":4,"47507":4,"47508":3,"47509":2,"47510":5,"47511":2,"47512":3,"47513":2,"47514":3,"47515":2,"47516":3,"47517":4,"47518":3,"47519":3,"47520":3,"47521":4,"47522":5,"47523":1,"47524":2,"47525":3,"47526":4,"47527":2,"47528":1,"47529":3,"47530":4,"47531":4,"47532":3,"47533":3,"47534":3,"47535":3,"47536":4,"47537":3,"47538":2,"47539":1,"47540":2,"47541":1,"47542":5,"47543":5,"47544":3,"47545":4,"47546":3,"47547":4,"47548":3,"47549":2,"47550":2,"47551":2,"47552":4,"47553":3,"47554":3,"47555":3,"47556":2,"47557":4,"47558":3,"47559":2,"47560":4,"47561":3,"47562":2,"47563":3,"47564":2,"47565":4,"47566":4,"47567":3,"47568":5,"47569":2,"47570":3,"47571":3,"47572":2,"47573":4,"47574":2,"47575":2,"47576":3,"47577":4,"47578":3,"47579":2,"47580":2,"47581":5,"47582":3,"47583":3,"47584":3,"47585":4,"47586":3,"47587":5,"47588":4,"47589":1,"47590":4,"47591":2,"47592":3,"47593":3,"47594":4,"47595":2,"47596":3,"47597":5,"47598":3,"47599":2,"47600":4,"47601":4,"47602":4,"47603":4,"47604":2,"47605":3,"47606":2,"47607":4,"47608":3,"47609":4,"47610":4,"47611":1,"47612":2,"47613":3,"47614":2,"47615":1,"47616":4,"47617":3,"47618":5,"47619":4,"47620":3,"47621":4,"47622":5,"47623":1,"47624":3,"47625":3,"47626":2,"47627":5,"47628":3,"47629":5,"47630":4,"47631":2,"47632":4,"47633":4,"47634":3,"47635":5,"47636":2,"47637":2,"47638":4,"47639":3,"47640":3,"47641":4,"47642":2,"47643":2,"47644":4,"47645":4,"47646":5,"47647":5,"47648":1,"47649":2,"47650":4,"47651":3,"47652":4,"47653":4,"47654":3,"47655":4,"47656":4,"47657":3,"47658":5,"47659":4,"47660":2,"47661":1,"47662":3,"47663":3,"47664":3,"47665":3,"47666":2,"47667":4,"47668":2,"47669":4,"47670":4,"47671":2,"47672":2,"47673":3,"47674":4,"47675":5,"47676":3,"47677":3,"47678":1,"47679":3,"47680":5,"47681":5,"47682":5,"47683":3,"47684":5,"47685":3,"47686":5,"47687":5,"47688":4,"47689":2,"47690":4,"47691":1,"47692":4,"47693":4,"47694":2,"47695":4,"47696":3,"47697":4,"47698":3,"47699":3,"47700":2,"47701":2,"47702":1,"47703":3,"47704":2,"47705":2,"47706":4,"47707":5,"47708":4,"47709":4,"47710":3,"47711":2,"47712":2,"47713":3,"47714":3,"47715":4,"47716":2,"47717":1,"47718":1,"47719":5,"47720":3,"47721":4,"47722":5,"47723":2,"47724":3,"47725":4,"47726":3,"47727":2,"47728":4,"47729":3,"47730":3,"47731":5,"47732":2,"47733":3,"47734":4,"47735":2,"47736":4,"47737":4,"47738":3,"47739":2,"47740":2,"47741":4,"47742":5,"47743":3,"47744":4,"47745":3,"47746":3,"47747":4,"47748":3,"47749":1,"47750":3,"47751":3,"47752":3,"47753":3,"47754":3,"47755":4,"47756":3,"47757":2,"47758":3,"47759":5,"47760":1,"47761":3,"47762":3,"47763":3,"47764":5,"47765":5,"47766":4,"47767":1,"47768":4,"47769":4,"47770":2,"47771":1,"47772":3,"47773":4,"47774":1,"47775":3,"47776":1,"47777":3,"47778":4,"47779":4,"47780":1,"47781":3,"47782":5,"47783":2,"47784":3,"47785":3,"47786":3,"47787":4,"47788":3,"47789":2,"47790":4,"47791":4,"47792":3,"47793":4,"47794":4,"47795":2,"47796":1,"47797":3,"47798":2,"47799":4,"47800":3,"47801":3,"47802":4,"47803":3,"47804":1,"47805":3,"47806":1,"47807":2,"47808":3,"47809":3,"47810":2,"47811":3,"47812":1,"47813":2,"47814":3,"47815":1,"47816":5,"47817":5,"47818":4,"47819":3,"47820":3,"47821":3,"47822":2,"47823":3,"47824":4,"47825":1,"47826":4,"47827":2,"47828":3,"47829":4,"47830":1,"47831":4,"47832":2,"47833":1,"47834":4,"47835":2,"47836":3,"47837":4,"47838":3,"47839":1,"47840":4,"47841":5,"47842":1,"47843":2,"47844":5,"47845":2,"47846":3,"47847":3,"47848":1,"47849":3,"47850":4,"47851":3,"47852":4,"47853":5,"47854":2,"47855":3,"47856":1,"47857":4,"47858":1,"47859":3,"47860":4,"47861":4,"47862":5,"47863":4,"47864":5,"47865":3,"47866":1,"47867":4,"47868":3,"47869":4,"47870":3,"47871":1,"47872":3,"47873":4,"47874":5,"47875":4,"47876":4,"47877":5,"47878":2,"47879":1,"47880":4,"47881":3,"47882":2,"47883":4,"47884":2,"47885":3,"47886":5,"47887":4,"47888":5,"47889":3,"47890":2,"47891":2,"47892":3,"47893":4,"47894":2,"47895":3,"47896":2,"47897":1,"47898":4,"47899":4,"47900":4,"47901":4,"47902":3,"47903":3,"47904":1,"47905":3,"47906":2,"47907":2,"47908":4,"47909":3,"47910":2,"47911":4,"47912":3,"47913":3,"47914":3,"47915":5,"47916":2,"47917":4,"47918":2,"47919":4,"47920":3,"47921":2,"47922":4,"47923":3,"47924":3,"47925":5,"47926":4,"47927":1,"47928":3,"47929":2,"47930":3,"47931":4,"47932":1,"47933":2,"47934":3,"47935":3,"47936":4,"47937":2,"47938":4,"47939":1,"47940":2,"47941":2,"47942":2,"47943":3,"47944":4,"47945":2,"47946":3,"47947":4,"47948":3,"47949":3,"47950":2,"47951":5,"47952":4,"47953":3,"47954":4,"47955":4,"47956":5,"47957":4,"47958":3,"47959":5,"47960":2,"47961":3,"47962":3,"47963":3,"47964":3,"47965":3,"47966":3,"47967":4,"47968":4,"47969":1,"47970":3,"47971":4,"47972":2,"47973":4,"47974":3,"47975":3,"47976":4,"47977":3,"47978":4,"47979":4,"47980":2,"47981":2,"47982":2,"47983":3,"47984":3,"47985":3,"47986":3,"47987":3,"47988":1,"47989":3,"47990":1,"47991":1,"47992":3,"47993":2,"47994":3,"47995":3,"47996":3,"47997":4,"47998":1,"47999":5,"48000":2,"48001":4,"48002":5,"48003":3,"48004":2,"48005":3,"48006":3,"48007":5,"48008":3,"48009":3,"48010":2,"48011":2,"48012":3,"48013":3,"48014":1,"48015":1,"48016":4,"48017":3,"48018":1,"48019":4,"48020":4,"48021":5,"48022":4,"48023":1,"48024":5,"48025":1,"48026":3,"48027":3,"48028":2,"48029":3,"48030":3,"48031":3,"48032":3,"48033":3,"48034":3,"48035":3,"48036":2,"48037":3,"48038":2,"48039":3,"48040":3,"48041":1,"48042":4,"48043":2,"48044":5,"48045":4,"48046":3,"48047":3,"48048":2,"48049":2,"48050":3,"48051":4,"48052":3,"48053":2,"48054":3,"48055":2,"48056":3,"48057":3,"48058":4,"48059":2,"48060":4,"48061":4,"48062":4,"48063":3,"48064":4,"48065":2,"48066":4,"48067":3,"48068":4,"48069":3,"48070":4,"48071":5,"48072":2,"48073":3,"48074":1,"48075":3,"48076":3,"48077":3,"48078":3,"48079":4,"48080":1,"48081":4,"48082":3,"48083":3,"48084":2,"48085":4,"48086":3,"48087":1,"48088":3,"48089":2,"48090":3,"48091":4,"48092":3,"48093":4,"48094":2,"48095":3,"48096":2,"48097":2,"48098":3,"48099":2,"48100":1,"48101":4,"48102":4,"48103":2,"48104":5,"48105":3,"48106":4,"48107":3,"48108":3,"48109":3,"48110":3,"48111":4,"48112":3,"48113":4,"48114":2,"48115":2,"48116":3,"48117":4,"48118":4,"48119":3,"48120":5,"48121":2,"48122":5,"48123":5,"48124":3,"48125":4,"48126":1,"48127":3,"48128":3,"48129":3,"48130":3,"48131":1,"48132":4,"48133":3,"48134":2,"48135":3,"48136":5,"48137":3,"48138":3,"48139":1,"48140":4,"48141":5,"48142":1,"48143":2,"48144":3,"48145":3,"48146":4,"48147":1,"48148":4,"48149":1,"48150":3,"48151":3,"48152":2,"48153":5,"48154":3,"48155":4,"48156":3,"48157":2,"48158":5,"48159":3,"48160":4,"48161":2,"48162":3,"48163":3,"48164":2,"48165":4,"48166":2,"48167":1,"48168":4,"48169":4,"48170":3,"48171":1,"48172":1,"48173":1,"48174":4,"48175":3,"48176":2,"48177":4,"48178":1,"48179":1,"48180":2,"48181":4,"48182":2,"48183":3,"48184":4,"48185":3,"48186":2,"48187":2,"48188":5,"48189":5,"48190":2,"48191":2,"48192":3,"48193":4,"48194":2,"48195":4,"48196":4,"48197":4,"48198":1,"48199":4,"48200":4,"48201":4,"48202":2,"48203":3,"48204":3,"48205":2,"48206":2,"48207":2,"48208":1,"48209":2,"48210":1,"48211":3,"48212":4,"48213":5,"48214":4,"48215":2,"48216":4,"48217":3,"48218":3,"48219":3,"48220":2,"48221":4,"48222":3,"48223":3,"48224":2,"48225":3,"48226":3,"48227":3,"48228":2,"48229":3,"48230":3,"48231":3,"48232":3,"48233":5,"48234":4,"48235":1,"48236":3,"48237":1,"48238":4,"48239":4,"48240":3,"48241":2,"48242":3,"48243":2,"48244":1,"48245":1,"48246":5,"48247":5,"48248":4,"48249":4,"48250":2,"48251":3,"48252":4,"48253":3,"48254":1,"48255":2,"48256":2,"48257":2,"48258":2,"48259":2,"48260":3,"48261":4,"48262":4,"48263":3,"48264":4,"48265":3,"48266":3,"48267":4,"48268":4,"48269":4,"48270":4,"48271":5,"48272":5,"48273":2,"48274":2,"48275":2,"48276":2,"48277":1,"48278":2,"48279":5,"48280":3,"48281":3,"48282":4,"48283":3,"48284":2,"48285":3,"48286":4,"48287":2,"48288":4,"48289":5,"48290":2,"48291":2,"48292":2,"48293":3,"48294":3,"48295":3,"48296":3,"48297":2,"48298":4,"48299":3,"48300":5,"48301":2,"48302":3,"48303":3,"48304":4,"48305":1,"48306":3,"48307":4,"48308":4,"48309":2,"48310":3,"48311":2,"48312":3,"48313":4,"48314":3,"48315":4,"48316":1,"48317":1,"48318":2,"48319":1,"48320":2,"48321":3,"48322":3,"48323":3,"48324":2,"48325":4,"48326":1,"48327":3,"48328":3,"48329":2,"48330":1,"48331":4,"48332":2,"48333":3,"48334":3,"48335":3,"48336":4,"48337":3,"48338":5,"48339":4,"48340":2,"48341":3,"48342":2,"48343":4,"48344":2,"48345":2,"48346":1,"48347":4,"48348":4,"48349":4,"48350":3,"48351":3,"48352":2,"48353":3,"48354":3,"48355":3,"48356":2,"48357":3,"48358":3,"48359":3,"48360":4,"48361":1,"48362":3,"48363":2,"48364":1,"48365":1,"48366":1,"48367":4,"48368":1,"48369":2,"48370":3,"48371":4,"48372":2,"48373":2,"48374":1,"48375":1,"48376":1,"48377":5,"48378":3,"48379":2,"48380":3,"48381":2,"48382":2,"48383":2,"48384":3,"48385":2,"48386":4,"48387":3,"48388":2,"48389":5,"48390":4,"48391":3,"48392":4,"48393":3,"48394":3,"48395":4,"48396":1,"48397":4,"48398":2,"48399":1,"48400":3,"48401":4,"48402":3,"48403":2,"48404":4,"48405":3,"48406":4,"48407":4,"48408":1,"48409":2,"48410":3,"48411":5,"48412":4,"48413":2,"48414":3,"48415":2,"48416":5,"48417":1,"48418":2,"48419":5,"48420":3,"48421":1,"48422":4,"48423":4,"48424":4,"48425":4,"48426":2,"48427":4,"48428":3,"48429":4,"48430":2,"48431":2,"48432":5,"48433":2,"48434":3,"48435":2,"48436":3,"48437":3,"48438":3,"48439":3,"48440":3,"48441":4,"48442":3,"48443":4,"48444":4,"48445":3,"48446":3,"48447":4,"48448":5,"48449":3,"48450":3,"48451":3,"48452":1,"48453":4,"48454":3,"48455":3,"48456":5,"48457":5,"48458":4,"48459":1,"48460":1,"48461":3,"48462":4,"48463":2,"48464":2,"48465":5,"48466":3,"48467":4,"48468":2,"48469":3,"48470":3,"48471":2,"48472":3,"48473":4,"48474":3,"48475":3,"48476":4,"48477":4,"48478":4,"48479":4,"48480":4,"48481":2,"48482":4,"48483":3,"48484":5,"48485":2,"48486":4,"48487":4,"48488":4,"48489":3,"48490":2,"48491":4,"48492":3,"48493":4,"48494":5,"48495":4,"48496":4,"48497":5,"48498":1,"48499":1,"48500":1,"48501":2,"48502":2,"48503":1,"48504":2,"48505":2,"48506":2,"48507":2,"48508":2,"48509":5,"48510":5,"48511":5,"48512":1,"48513":1,"48514":2,"48515":1,"48516":4,"48517":2,"48518":2,"48519":2,"48520":4,"48521":2,"48522":2,"48523":5,"48524":4,"48525":1,"48526":3,"48527":1,"48528":2,"48529":3,"48530":1,"48531":3,"48532":2,"48533":2,"48534":4,"48535":4,"48536":2,"48537":2,"48538":1,"48539":1,"48540":4,"48541":1,"48542":4,"48543":3,"48544":3,"48545":4,"48546":2,"48547":3,"48548":3,"48549":4,"48550":2,"48551":3,"48552":3,"48553":2,"48554":1,"48555":4,"48556":4,"48557":1,"48558":3,"48559":3,"48560":4,"48561":2,"48562":4,"48563":3,"48564":3,"48565":3,"48566":3,"48567":1,"48568":3,"48569":5,"48570":2,"48571":3,"48572":5,"48573":3,"48574":4,"48575":2,"48576":4,"48577":3,"48578":2,"48579":1,"48580":4,"48581":4,"48582":2,"48583":2,"48584":3,"48585":5,"48586":4,"48587":5,"48588":3,"48589":4,"48590":2,"48591":5,"48592":3,"48593":2,"48594":3,"48595":3,"48596":3,"48597":4,"48598":2,"48599":3,"48600":2,"48601":4,"48602":3,"48603":5,"48604":4,"48605":3,"48606":1,"48607":3,"48608":3,"48609":4,"48610":3,"48611":5,"48612":3,"48613":4,"48614":2,"48615":2,"48616":3,"48617":4,"48618":2,"48619":4,"48620":1,"48621":4,"48622":3,"48623":1,"48624":5,"48625":2,"48626":2,"48627":2,"48628":4,"48629":2,"48630":3,"48631":2,"48632":3,"48633":2,"48634":4,"48635":5,"48636":3,"48637":3,"48638":4,"48639":4,"48640":2,"48641":4,"48642":2,"48643":3,"48644":3,"48645":2,"48646":4,"48647":4,"48648":4,"48649":4,"48650":3,"48651":3,"48652":1,"48653":3,"48654":5,"48655":3,"48656":2,"48657":5,"48658":1,"48659":2,"48660":3,"48661":3,"48662":4,"48663":3,"48664":4,"48665":4,"48666":2,"48667":3,"48668":3,"48669":4,"48670":4,"48671":3,"48672":1,"48673":2,"48674":4,"48675":2,"48676":5,"48677":3,"48678":3,"48679":1,"48680":3,"48681":5,"48682":2,"48683":2,"48684":2,"48685":5,"48686":5,"48687":3,"48688":4,"48689":4,"48690":3,"48691":4,"48692":2,"48693":2,"48694":3,"48695":3,"48696":4,"48697":5,"48698":3,"48699":4,"48700":4,"48701":2,"48702":2,"48703":3,"48704":5,"48705":5,"48706":3,"48707":4,"48708":4,"48709":4,"48710":3,"48711":4,"48712":5,"48713":3,"48714":3,"48715":3,"48716":3,"48717":1,"48718":4,"48719":4,"48720":3,"48721":1,"48722":4,"48723":3,"48724":3,"48725":4,"48726":2,"48727":2,"48728":2,"48729":2,"48730":2,"48731":4,"48732":3,"48733":5,"48734":4,"48735":3,"48736":4,"48737":1,"48738":1,"48739":1,"48740":3,"48741":5,"48742":2,"48743":2,"48744":5,"48745":5,"48746":3,"48747":3,"48748":2,"48749":2,"48750":1,"48751":4,"48752":3,"48753":4,"48754":3,"48755":5,"48756":1,"48757":4,"48758":3,"48759":4,"48760":4,"48761":3,"48762":3,"48763":3,"48764":3,"48765":4,"48766":5,"48767":4,"48768":2,"48769":5,"48770":4,"48771":3,"48772":5,"48773":2,"48774":3,"48775":1,"48776":3,"48777":3,"48778":2,"48779":4,"48780":3,"48781":3,"48782":2,"48783":1,"48784":2,"48785":2,"48786":4,"48787":2,"48788":1,"48789":3,"48790":4,"48791":3,"48792":5,"48793":2,"48794":2,"48795":3,"48796":3,"48797":2,"48798":1,"48799":2,"48800":4,"48801":5,"48802":3,"48803":3,"48804":5,"48805":3,"48806":3,"48807":5,"48808":2,"48809":3,"48810":3,"48811":2,"48812":3,"48813":4,"48814":1,"48815":3,"48816":2,"48817":3,"48818":3,"48819":4,"48820":4,"48821":2,"48822":2,"48823":2,"48824":3,"48825":5,"48826":4,"48827":1,"48828":3,"48829":3,"48830":5,"48831":2,"48832":3,"48833":2,"48834":4,"48835":3,"48836":3,"48837":1,"48838":1,"48839":3,"48840":3,"48841":4,"48842":3,"48843":3,"48844":2,"48845":4,"48846":3,"48847":3,"48848":4,"48849":3,"48850":4,"48851":4,"48852":4,"48853":3,"48854":4,"48855":2,"48856":3,"48857":3,"48858":4,"48859":3,"48860":3,"48861":3,"48862":2,"48863":3,"48864":3,"48865":1,"48866":4,"48867":4,"48868":4,"48869":4,"48870":2,"48871":4,"48872":3,"48873":2,"48874":2,"48875":2,"48876":3,"48877":1,"48878":3,"48879":1,"48880":2,"48881":5,"48882":3,"48883":4,"48884":1,"48885":4,"48886":3,"48887":5,"48888":4,"48889":3,"48890":3,"48891":3,"48892":4,"48893":4,"48894":2,"48895":3,"48896":3,"48897":4,"48898":3,"48899":4,"48900":3,"48901":3,"48902":2,"48903":4,"48904":2,"48905":3,"48906":4,"48907":4,"48908":1,"48909":4,"48910":4,"48911":3,"48912":3,"48913":1,"48914":2,"48915":4,"48916":1,"48917":2,"48918":2,"48919":4,"48920":5,"48921":4,"48922":4,"48923":3,"48924":4,"48925":3,"48926":2,"48927":4,"48928":3,"48929":2,"48930":2,"48931":3,"48932":2,"48933":4,"48934":2,"48935":4,"48936":5,"48937":4,"48938":3,"48939":2,"48940":1,"48941":3,"48942":3,"48943":4,"48944":3,"48945":2,"48946":3,"48947":4,"48948":2,"48949":4,"48950":5,"48951":3,"48952":3,"48953":5,"48954":3,"48955":2,"48956":1,"48957":3,"48958":2,"48959":2,"48960":3,"48961":3,"48962":3,"48963":2,"48964":3,"48965":2,"48966":2,"48967":3,"48968":4,"48969":2,"48970":3,"48971":1,"48972":3,"48973":3,"48974":2,"48975":5,"48976":2,"48977":5,"48978":3,"48979":4,"48980":1,"48981":2,"48982":4,"48983":2,"48984":2,"48985":3,"48986":5,"48987":4,"48988":4,"48989":5,"48990":3,"48991":3,"48992":4,"48993":2,"48994":3,"48995":3,"48996":3,"48997":3,"48998":2,"48999":3,"49000":4,"49001":3,"49002":2,"49003":4,"49004":3,"49005":3,"49006":5,"49007":3,"49008":1,"49009":2,"49010":5,"49011":4,"49012":2,"49013":3,"49014":4,"49015":3,"49016":3,"49017":3,"49018":4,"49019":5,"49020":2,"49021":2,"49022":3,"49023":3,"49024":4,"49025":3,"49026":3,"49027":4,"49028":2,"49029":3,"49030":2,"49031":3,"49032":3,"49033":4,"49034":5,"49035":5,"49036":4,"49037":4,"49038":3,"49039":3,"49040":5,"49041":1,"49042":3,"49043":4,"49044":4,"49045":2,"49046":3,"49047":2,"49048":3,"49049":3,"49050":2,"49051":2,"49052":4,"49053":1,"49054":3,"49055":2,"49056":3,"49057":4,"49058":3,"49059":5,"49060":2,"49061":1,"49062":5,"49063":3,"49064":4,"49065":3,"49066":2,"49067":2,"49068":5,"49069":3,"49070":4,"49071":4,"49072":1,"49073":3,"49074":2,"49075":1,"49076":5,"49077":5,"49078":5,"49079":4,"49080":2,"49081":3,"49082":2,"49083":5,"49084":2,"49085":4,"49086":2,"49087":2,"49088":3,"49089":5,"49090":1,"49091":1,"49092":4,"49093":4,"49094":2,"49095":1,"49096":3,"49097":2,"49098":3,"49099":3,"49100":3,"49101":3,"49102":4,"49103":2,"49104":2,"49105":4,"49106":2,"49107":3,"49108":1,"49109":3,"49110":3,"49111":3,"49112":2,"49113":3,"49114":1,"49115":3,"49116":2,"49117":2,"49118":4,"49119":5,"49120":3,"49121":2,"49122":4,"49123":4,"49124":2,"49125":5,"49126":2,"49127":3,"49128":3,"49129":3,"49130":2,"49131":1,"49132":3,"49133":2,"49134":3,"49135":3,"49136":4,"49137":4,"49138":3,"49139":4,"49140":3,"49141":4,"49142":2,"49143":2,"49144":4,"49145":3,"49146":2,"49147":3,"49148":2,"49149":3,"49150":1,"49151":4,"49152":3,"49153":4,"49154":4,"49155":3,"49156":3,"49157":2,"49158":3,"49159":1,"49160":3,"49161":3,"49162":3,"49163":3,"49164":3,"49165":4,"49166":4,"49167":3,"49168":3,"49169":3,"49170":2,"49171":4,"49172":3,"49173":3,"49174":4,"49175":3,"49176":2,"49177":4,"49178":1,"49179":5,"49180":3,"49181":3,"49182":3,"49183":2,"49184":2,"49185":4,"49186":2,"49187":2,"49188":2,"49189":4,"49190":1,"49191":4,"49192":3,"49193":3,"49194":3,"49195":3,"49196":3,"49197":4,"49198":3,"49199":1,"49200":3,"49201":4,"49202":4,"49203":3,"49204":2,"49205":3,"49206":3,"49207":3,"49208":4,"49209":1,"49210":3,"49211":4,"49212":5,"49213":4,"49214":3,"49215":4,"49216":3,"49217":4,"49218":4,"49219":2,"49220":4,"49221":4,"49222":5,"49223":3,"49224":3,"49225":4,"49226":4,"49227":4,"49228":3,"49229":3,"49230":3,"49231":1,"49232":3,"49233":3,"49234":3,"49235":3,"49236":3,"49237":5,"49238":5,"49239":2,"49240":3,"49241":3,"49242":4,"49243":2,"49244":1,"49245":3,"49246":2,"49247":5,"49248":3,"49249":3,"49250":3,"49251":4,"49252":2,"49253":3,"49254":3,"49255":4,"49256":3,"49257":3,"49258":4,"49259":2,"49260":4,"49261":5,"49262":4,"49263":2,"49264":3,"49265":1,"49266":2,"49267":3,"49268":4,"49269":2,"49270":2,"49271":5,"49272":1,"49273":4,"49274":3,"49275":1,"49276":3,"49277":3,"49278":5,"49279":2,"49280":4,"49281":2,"49282":3,"49283":1,"49284":2,"49285":1,"49286":2,"49287":3,"49288":3,"49289":5,"49290":1,"49291":3,"49292":3,"49293":4,"49294":3,"49295":4,"49296":5,"49297":4,"49298":3,"49299":4,"49300":1,"49301":1,"49302":5,"49303":3,"49304":3,"49305":2,"49306":3,"49307":2,"49308":5,"49309":3,"49310":4,"49311":4,"49312":3,"49313":1,"49314":3,"49315":5,"49316":4,"49317":1,"49318":4,"49319":2,"49320":2,"49321":3,"49322":4,"49323":4,"49324":4,"49325":4,"49326":4,"49327":1,"49328":3,"49329":3,"49330":4,"49331":4,"49332":2,"49333":3,"49334":3,"49335":4,"49336":2,"49337":2,"49338":3,"49339":2,"49340":4,"49341":4,"49342":4,"49343":3,"49344":2,"49345":2,"49346":3,"49347":1,"49348":4,"49349":2,"49350":3,"49351":3,"49352":1,"49353":4,"49354":3,"49355":3,"49356":2,"49357":2,"49358":5,"49359":3,"49360":4,"49361":2,"49362":2,"49363":5,"49364":3,"49365":5,"49366":3,"49367":4,"49368":2,"49369":2,"49370":3,"49371":4,"49372":3,"49373":3,"49374":2,"49375":3,"49376":5,"49377":1,"49378":2,"49379":4,"49380":5,"49381":4,"49382":4,"49383":3,"49384":3,"49385":2,"49386":1,"49387":2,"49388":3,"49389":4,"49390":4,"49391":5,"49392":2,"49393":3,"49394":3,"49395":3,"49396":1,"49397":1,"49398":3,"49399":3,"49400":2,"49401":1,"49402":4,"49403":3,"49404":2,"49405":2,"49406":3,"49407":2,"49408":4,"49409":2,"49410":4,"49411":3,"49412":2,"49413":1,"49414":2,"49415":3,"49416":4,"49417":5,"49418":3,"49419":3,"49420":5,"49421":4,"49422":4,"49423":3,"49424":4,"49425":3,"49426":3,"49427":3,"49428":2,"49429":3,"49430":2,"49431":2,"49432":4,"49433":4,"49434":3,"49435":3,"49436":2,"49437":3,"49438":1,"49439":3,"49440":5,"49441":2,"49442":3,"49443":3,"49444":3,"49445":3,"49446":3,"49447":2,"49448":2,"49449":1,"49450":4,"49451":4,"49452":3,"49453":2,"49454":4,"49455":3,"49456":5,"49457":4,"49458":3,"49459":4,"49460":4,"49461":2,"49462":3,"49463":3,"49464":5,"49465":4,"49466":2,"49467":3,"49468":2,"49469":3,"49470":3,"49471":5,"49472":4,"49473":4,"49474":1,"49475":3,"49476":4,"49477":2,"49478":2,"49479":4,"49480":4,"49481":4,"49482":3,"49483":3,"49484":2,"49485":4,"49486":2,"49487":4,"49488":3,"49489":3,"49490":3,"49491":4,"49492":3,"49493":3,"49494":1,"49495":4,"49496":2,"49497":2,"49498":4,"49499":4,"49500":3,"49501":2,"49502":4,"49503":2,"49504":3,"49505":2,"49506":3,"49507":2,"49508":2,"49509":2,"49510":1,"49511":4,"49512":2,"49513":3,"49514":4,"49515":4,"49516":3,"49517":4,"49518":4,"49519":4,"49520":2,"49521":3,"49522":5,"49523":3,"49524":3,"49525":5,"49526":3,"49527":2,"49528":4,"49529":2,"49530":4,"49531":5,"49532":4,"49533":3,"49534":4,"49535":5,"49536":4,"49537":1,"49538":5,"49539":4,"49540":4,"49541":2,"49542":3,"49543":3,"49544":1,"49545":3,"49546":2,"49547":4,"49548":3,"49549":4,"49550":2,"49551":3,"49552":2,"49553":1,"49554":3,"49555":4,"49556":2,"49557":1,"49558":2,"49559":1,"49560":3,"49561":2,"49562":3,"49563":5,"49564":5,"49565":2,"49566":5,"49567":2,"49568":3,"49569":4,"49570":2,"49571":2,"49572":4,"49573":3,"49574":2,"49575":1,"49576":3,"49577":2,"49578":4,"49579":4,"49580":3,"49581":5,"49582":3,"49583":3,"49584":4,"49585":4,"49586":4,"49587":3,"49588":3,"49589":2,"49590":3,"49591":3,"49592":3,"49593":1,"49594":4,"49595":4,"49596":1,"49597":3,"49598":2,"49599":4,"49600":5,"49601":2,"49602":1,"49603":3,"49604":3,"49605":3,"49606":3,"49607":2,"49608":4,"49609":3,"49610":2,"49611":2,"49612":3,"49613":5,"49614":3,"49615":3,"49616":4,"49617":2,"49618":4,"49619":4,"49620":3,"49621":3,"49622":2,"49623":3,"49624":2,"49625":1,"49626":3,"49627":3,"49628":3,"49629":2,"49630":2,"49631":3,"49632":3,"49633":4,"49634":3,"49635":3,"49636":2,"49637":3,"49638":4,"49639":4,"49640":3,"49641":2,"49642":2,"49643":2,"49644":1,"49645":3,"49646":4,"49647":4,"49648":2,"49649":3,"49650":5,"49651":5,"49652":5,"49653":2,"49654":2,"49655":3,"49656":1,"49657":2,"49658":2,"49659":4,"49660":3,"49661":5,"49662":3,"49663":4,"49664":3,"49665":3,"49666":5,"49667":3,"49668":2,"49669":4,"49670":3,"49671":4,"49672":3,"49673":2,"49674":2,"49675":3,"49676":4,"49677":3,"49678":1,"49679":3,"49680":3,"49681":3,"49682":4,"49683":4,"49684":3,"49685":5,"49686":2,"49687":4,"49688":2,"49689":4,"49690":2,"49691":4,"49692":4,"49693":2,"49694":3,"49695":2,"49696":4,"49697":2,"49698":2,"49699":5,"49700":5,"49701":3,"49702":3,"49703":3,"49704":3,"49705":3,"49706":4,"49707":3,"49708":2,"49709":3,"49710":3,"49711":4,"49712":3,"49713":5,"49714":1,"49715":4,"49716":5,"49717":3,"49718":4,"49719":4,"49720":4,"49721":3,"49722":2,"49723":4,"49724":3,"49725":2,"49726":3,"49727":2,"49728":1,"49729":3,"49730":2,"49731":3,"49732":2,"49733":3,"49734":4,"49735":4,"49736":4,"49737":4,"49738":4,"49739":5,"49740":3,"49741":3,"49742":3,"49743":4,"49744":2,"49745":3,"49746":1,"49747":3,"49748":3,"49749":4,"49750":4,"49751":2,"49752":4,"49753":2,"49754":2,"49755":3,"49756":3,"49757":2,"49758":1,"49759":3,"49760":5,"49761":3,"49762":4,"49763":5,"49764":4,"49765":4,"49766":4,"49767":5,"49768":4,"49769":2,"49770":2,"49771":5,"49772":4,"49773":5,"49774":3,"49775":5,"49776":3,"49777":3,"49778":3,"49779":3,"49780":2,"49781":3,"49782":3,"49783":3,"49784":2,"49785":2,"49786":3,"49787":5,"49788":1,"49789":2,"49790":5,"49791":2,"49792":2,"49793":3,"49794":2,"49795":1,"49796":3,"49797":3,"49798":3,"49799":3,"49800":3,"49801":4,"49802":3,"49803":1,"49804":5,"49805":3,"49806":1,"49807":2,"49808":3,"49809":1,"49810":2,"49811":3,"49812":3,"49813":4,"49814":3,"49815":5,"49816":2,"49817":3,"49818":5,"49819":1,"49820":3,"49821":4,"49822":3,"49823":2,"49824":4,"49825":4,"49826":2,"49827":5,"49828":2,"49829":5,"49830":2,"49831":1,"49832":3,"49833":3,"49834":4,"49835":1,"49836":1,"49837":3,"49838":1,"49839":3,"49840":3,"49841":2,"49842":2,"49843":3,"49844":3,"49845":3,"49846":2,"49847":5,"49848":3,"49849":3,"49850":3,"49851":3,"49852":3,"49853":2,"49854":3,"49855":3,"49856":2,"49857":3,"49858":2,"49859":3,"49860":3,"49861":2,"49862":3,"49863":2,"49864":1,"49865":5,"49866":3,"49867":4,"49868":4,"49869":3,"49870":3,"49871":4,"49872":2,"49873":3,"49874":4,"49875":2,"49876":2,"49877":2,"49878":2,"49879":3,"49880":3,"49881":5,"49882":5,"49883":2,"49884":3,"49885":4,"49886":4,"49887":2,"49888":3,"49889":4,"49890":3,"49891":2,"49892":2,"49893":3,"49894":3,"49895":2,"49896":1,"49897":3,"49898":2,"49899":3,"49900":1,"49901":3,"49902":4,"49903":4,"49904":2,"49905":2,"49906":3,"49907":2,"49908":3,"49909":3,"49910":3,"49911":1,"49912":3,"49913":2,"49914":2,"49915":3,"49916":2,"49917":4,"49918":4,"49919":2,"49920":1,"49921":4,"49922":3,"49923":3,"49924":1,"49925":1,"49926":4,"49927":3,"49928":3,"49929":3,"49930":1,"49931":1,"49932":3,"49933":4,"49934":2,"49935":2,"49936":4,"49937":3,"49938":4,"49939":2,"49940":2,"49941":3,"49942":3,"49943":3,"49944":2,"49945":3,"49946":4,"49947":1,"49948":4,"49949":1,"49950":4,"49951":2,"49952":3,"49953":3,"49954":4,"49955":2,"49956":5,"49957":5,"49958":3,"49959":1,"49960":4,"49961":3,"49962":3,"49963":2,"49964":1,"49965":3,"49966":2,"49967":3,"49968":2,"49969":3,"49970":3,"49971":3,"49972":5,"49973":1,"49974":2,"49975":4,"49976":3,"49977":3,"49978":4,"49979":3,"49980":2,"49981":1,"49982":1,"49983":3,"49984":4,"49985":4,"49986":1,"49987":2,"49988":1,"49989":2,"49990":1,"49991":3,"49992":1,"49993":1,"49994":1,"49995":2,"49996":4,"49997":2,"49998":2,"49999":3,"50000":2,"50001":3,"50002":3,"50003":3,"50004":3,"50005":2,"50006":4,"50007":3,"50008":1,"50009":3,"50010":4,"50011":1,"50012":2,"50013":3,"50014":3,"50015":1,"50016":3,"50017":4,"50018":5,"50019":2,"50020":3,"50021":2,"50022":4,"50023":2,"50024":3,"50025":4,"50026":3,"50027":3,"50028":2,"50029":3,"50030":3,"50031":1,"50032":5,"50033":1,"50034":4,"50035":2,"50036":1,"50037":2,"50038":3,"50039":3,"50040":3,"50041":4,"50042":2,"50043":4,"50044":3,"50045":2,"50046":3,"50047":2,"50048":2,"50049":3,"50050":3,"50051":3,"50052":3,"50053":4,"50054":3,"50055":3,"50056":3,"50057":4,"50058":5,"50059":3,"50060":4,"50061":2,"50062":2,"50063":3,"50064":4,"50065":4,"50066":3,"50067":4,"50068":1,"50069":3,"50070":2,"50071":3,"50072":4,"50073":4,"50074":3,"50075":1,"50076":3,"50077":3,"50078":3,"50079":3,"50080":4,"50081":3,"50082":3,"50083":4,"50084":3,"50085":3,"50086":4,"50087":4,"50088":4,"50089":2,"50090":4,"50091":3,"50092":2,"50093":3,"50094":3,"50095":3,"50096":1,"50097":1,"50098":2,"50099":4,"50100":2,"50101":3,"50102":1,"50103":3,"50104":3,"50105":3,"50106":3,"50107":3,"50108":1,"50109":1,"50110":2,"50111":2,"50112":2,"50113":2,"50114":4,"50115":5,"50116":3,"50117":4,"50118":2,"50119":2,"50120":4,"50121":1,"50122":2,"50123":4,"50124":3,"50125":3,"50126":5,"50127":4,"50128":3,"50129":4,"50130":4,"50131":2,"50132":3,"50133":3,"50134":4,"50135":3,"50136":4,"50137":3,"50138":2,"50139":5,"50140":2,"50141":4,"50142":2,"50143":5,"50144":1,"50145":3,"50146":3,"50147":2,"50148":2,"50149":2,"50150":3,"50151":2,"50152":3,"50153":1,"50154":2,"50155":4,"50156":4,"50157":2,"50158":2,"50159":3,"50160":4,"50161":3,"50162":3,"50163":3,"50164":1,"50165":3,"50166":3,"50167":2,"50168":3,"50169":2,"50170":3,"50171":3,"50172":3,"50173":3,"50174":2,"50175":4,"50176":5,"50177":4,"50178":3,"50179":3,"50180":4,"50181":1,"50182":2,"50183":2,"50184":5,"50185":2,"50186":4,"50187":3,"50188":3,"50189":3,"50190":4,"50191":1,"50192":4,"50193":4,"50194":4,"50195":4,"50196":2,"50197":2,"50198":3,"50199":3,"50200":3,"50201":4,"50202":4,"50203":3,"50204":4,"50205":3,"50206":2,"50207":2,"50208":3,"50209":3,"50210":5,"50211":3,"50212":4,"50213":1,"50214":2,"50215":4,"50216":5,"50217":4,"50218":2,"50219":1,"50220":1,"50221":3,"50222":5,"50223":3,"50224":5,"50225":2,"50226":4,"50227":3,"50228":4,"50229":1,"50230":2,"50231":4,"50232":4,"50233":1,"50234":2,"50235":5,"50236":1,"50237":3,"50238":4,"50239":3,"50240":4,"50241":4,"50242":5,"50243":3,"50244":2,"50245":3,"50246":2,"50247":5,"50248":1,"50249":3,"50250":5,"50251":2,"50252":4,"50253":2,"50254":3,"50255":3,"50256":5,"50257":3,"50258":4,"50259":5,"50260":1,"50261":4,"50262":4,"50263":3,"50264":5,"50265":2,"50266":1,"50267":4,"50268":2,"50269":4,"50270":3,"50271":3,"50272":3,"50273":2,"50274":3,"50275":1,"50276":4,"50277":2,"50278":4,"50279":1,"50280":4,"50281":3,"50282":2,"50283":3,"50284":2,"50285":5,"50286":2,"50287":5,"50288":1,"50289":2,"50290":3,"50291":3,"50292":4,"50293":3,"50294":2,"50295":3,"50296":2,"50297":5,"50298":5,"50299":1,"50300":5,"50301":3,"50302":4,"50303":4,"50304":1,"50305":5,"50306":3,"50307":2,"50308":2,"50309":3,"50310":4,"50311":1,"50312":2,"50313":5,"50314":3,"50315":4,"50316":4,"50317":2,"50318":4,"50319":4,"50320":4,"50321":2,"50322":3,"50323":3,"50324":2,"50325":3,"50326":1,"50327":4,"50328":2,"50329":4,"50330":3,"50331":1,"50332":4,"50333":2,"50334":2,"50335":2,"50336":3,"50337":3,"50338":4,"50339":4,"50340":1,"50341":1,"50342":1,"50343":4,"50344":3,"50345":4,"50346":4,"50347":2,"50348":3,"50349":4,"50350":3,"50351":2,"50352":3,"50353":4,"50354":4,"50355":2,"50356":4,"50357":5,"50358":4,"50359":5,"50360":2,"50361":3,"50362":2,"50363":2,"50364":3,"50365":2,"50366":3,"50367":4,"50368":3,"50369":3,"50370":1,"50371":3,"50372":2,"50373":5,"50374":3,"50375":4,"50376":2,"50377":4,"50378":1,"50379":3,"50380":3,"50381":2,"50382":2,"50383":3,"50384":3,"50385":4,"50386":3,"50387":1,"50388":4,"50389":3,"50390":3,"50391":5,"50392":3,"50393":5,"50394":3,"50395":4,"50396":5,"50397":3,"50398":3,"50399":3,"50400":3,"50401":4,"50402":4,"50403":3,"50404":2,"50405":3,"50406":3,"50407":2,"50408":3,"50409":3,"50410":2,"50411":4,"50412":3,"50413":4,"50414":4,"50415":2,"50416":3,"50417":4,"50418":4,"50419":4,"50420":2,"50421":3,"50422":3,"50423":2,"50424":2,"50425":5,"50426":4,"50427":3,"50428":2,"50429":1,"50430":4,"50431":3,"50432":3,"50433":2,"50434":2,"50435":5,"50436":4,"50437":1,"50438":2,"50439":2,"50440":3,"50441":4,"50442":1,"50443":2,"50444":4,"50445":2,"50446":3,"50447":5,"50448":4,"50449":4,"50450":3,"50451":3,"50452":2,"50453":1,"50454":2,"50455":4,"50456":4,"50457":3,"50458":2,"50459":2,"50460":1,"50461":4,"50462":4,"50463":2,"50464":5,"50465":1,"50466":3,"50467":3,"50468":4,"50469":2,"50470":2,"50471":3,"50472":3,"50473":3,"50474":5,"50475":2,"50476":1,"50477":3,"50478":2,"50479":1,"50480":3,"50481":3,"50482":4,"50483":2,"50484":3,"50485":1,"50486":2,"50487":2,"50488":3,"50489":1,"50490":5,"50491":5,"50492":3,"50493":4,"50494":3,"50495":4,"50496":2,"50497":1,"50498":3,"50499":5,"50500":3,"50501":2,"50502":5,"50503":2,"50504":2,"50505":2,"50506":4,"50507":3,"50508":3,"50509":3,"50510":4,"50511":3,"50512":2,"50513":3,"50514":3,"50515":5,"50516":3,"50517":4,"50518":4,"50519":2,"50520":3,"50521":3,"50522":2,"50523":5,"50524":3,"50525":3,"50526":3,"50527":1,"50528":2,"50529":4,"50530":5,"50531":2,"50532":2,"50533":2,"50534":4,"50535":3,"50536":3,"50537":2,"50538":4,"50539":4,"50540":3,"50541":3,"50542":1,"50543":3,"50544":3,"50545":2,"50546":2,"50547":3,"50548":2,"50549":2,"50550":4,"50551":3,"50552":2,"50553":2,"50554":5,"50555":2,"50556":2,"50557":3,"50558":3,"50559":3,"50560":3,"50561":4,"50562":4,"50563":3,"50564":1,"50565":4,"50566":2,"50567":3,"50568":2,"50569":3,"50570":2,"50571":4,"50572":4,"50573":4,"50574":3,"50575":3,"50576":5,"50577":1,"50578":3,"50579":3,"50580":3,"50581":3,"50582":2,"50583":1,"50584":3,"50585":2,"50586":3,"50587":2,"50588":4,"50589":3,"50590":2,"50591":2,"50592":2,"50593":3,"50594":3,"50595":4,"50596":3,"50597":4,"50598":3,"50599":3,"50600":1,"50601":1,"50602":4,"50603":2,"50604":4,"50605":4,"50606":2,"50607":4,"50608":1,"50609":2,"50610":3,"50611":2,"50612":3,"50613":3,"50614":4,"50615":4,"50616":4,"50617":1,"50618":2,"50619":3,"50620":2,"50621":1,"50622":3,"50623":3,"50624":3,"50625":3,"50626":4,"50627":4,"50628":1,"50629":1,"50630":5,"50631":3,"50632":4,"50633":2,"50634":4,"50635":2,"50636":3,"50637":3,"50638":2,"50639":5,"50640":4,"50641":3,"50642":2,"50643":2,"50644":2,"50645":4,"50646":5,"50647":3,"50648":4,"50649":3,"50650":1,"50651":3,"50652":1,"50653":4,"50654":3,"50655":4,"50656":3,"50657":4,"50658":3,"50659":3,"50660":2,"50661":4,"50662":3,"50663":3,"50664":2,"50665":4,"50666":1,"50667":4,"50668":5,"50669":3,"50670":4,"50671":3,"50672":3,"50673":3,"50674":2,"50675":4,"50676":3,"50677":1,"50678":5,"50679":2,"50680":3,"50681":4,"50682":4,"50683":2,"50684":4,"50685":3,"50686":2,"50687":4,"50688":1,"50689":3,"50690":3,"50691":4,"50692":3,"50693":1,"50694":3,"50695":4,"50696":3,"50697":4,"50698":4,"50699":5,"50700":1,"50701":3,"50702":2,"50703":2,"50704":3,"50705":1,"50706":4,"50707":3,"50708":3,"50709":2,"50710":4,"50711":2,"50712":4,"50713":4,"50714":1,"50715":3,"50716":4,"50717":3,"50718":3,"50719":2,"50720":4,"50721":1,"50722":2,"50723":4,"50724":3,"50725":3,"50726":2,"50727":3,"50728":2,"50729":2,"50730":2,"50731":3,"50732":2,"50733":4,"50734":4,"50735":4,"50736":3,"50737":3,"50738":3,"50739":2,"50740":2,"50741":2,"50742":3,"50743":4,"50744":2,"50745":3,"50746":4,"50747":4,"50748":3,"50749":1,"50750":2,"50751":4,"50752":5,"50753":1,"50754":2,"50755":3,"50756":1,"50757":1,"50758":3,"50759":3,"50760":3,"50761":1,"50762":2,"50763":2,"50764":3,"50765":2,"50766":3,"50767":3,"50768":3,"50769":4,"50770":3,"50771":4,"50772":4,"50773":5,"50774":2,"50775":5,"50776":3,"50777":2,"50778":3,"50779":4,"50780":3,"50781":2,"50782":4,"50783":4,"50784":4,"50785":2,"50786":5,"50787":2,"50788":4,"50789":1,"50790":3,"50791":2,"50792":3,"50793":1,"50794":4,"50795":3,"50796":3,"50797":4,"50798":4,"50799":4,"50800":4,"50801":4,"50802":2,"50803":3,"50804":1,"50805":2,"50806":4,"50807":5,"50808":3,"50809":3,"50810":3,"50811":3,"50812":2,"50813":1,"50814":4,"50815":4,"50816":2,"50817":4,"50818":3,"50819":2,"50820":4,"50821":1,"50822":4,"50823":4,"50824":4,"50825":2,"50826":3,"50827":4,"50828":2,"50829":1,"50830":4,"50831":3,"50832":3,"50833":1,"50834":3,"50835":2,"50836":3,"50837":3,"50838":4,"50839":4,"50840":4,"50841":3,"50842":2,"50843":2,"50844":3,"50845":4,"50846":2,"50847":5,"50848":4,"50849":1,"50850":3,"50851":1,"50852":3,"50853":3,"50854":3,"50855":3,"50856":3,"50857":1,"50858":5,"50859":4,"50860":4,"50861":2,"50862":1,"50863":5,"50864":3,"50865":4,"50866":4,"50867":2,"50868":2,"50869":4,"50870":5,"50871":3,"50872":4,"50873":2,"50874":3,"50875":2,"50876":4,"50877":4,"50878":2,"50879":4,"50880":2,"50881":2,"50882":2,"50883":3,"50884":3,"50885":2,"50886":4,"50887":3,"50888":2,"50889":3,"50890":3,"50891":2,"50892":2,"50893":3,"50894":2,"50895":4,"50896":3,"50897":3,"50898":2,"50899":3,"50900":4,"50901":4,"50902":4,"50903":4,"50904":1,"50905":3,"50906":2,"50907":3,"50908":4,"50909":4,"50910":2,"50911":3,"50912":5,"50913":3,"50914":3,"50915":3,"50916":5,"50917":3,"50918":3,"50919":2,"50920":4,"50921":5,"50922":5,"50923":4,"50924":2,"50925":5,"50926":3,"50927":4,"50928":4,"50929":4,"50930":3,"50931":2,"50932":3,"50933":2,"50934":2,"50935":2,"50936":2,"50937":3,"50938":4,"50939":4,"50940":4,"50941":4,"50942":1,"50943":4,"50944":2,"50945":3,"50946":4,"50947":1,"50948":3,"50949":3,"50950":4,"50951":3,"50952":3,"50953":4,"50954":2,"50955":5,"50956":2,"50957":4,"50958":3,"50959":1,"50960":2,"50961":3,"50962":3,"50963":3,"50964":4,"50965":3,"50966":3,"50967":4,"50968":2,"50969":4,"50970":5,"50971":4,"50972":3,"50973":3,"50974":3,"50975":5,"50976":2,"50977":4,"50978":1,"50979":4,"50980":1,"50981":1,"50982":3,"50983":3,"50984":2,"50985":3,"50986":1,"50987":4,"50988":2,"50989":4,"50990":2,"50991":3,"50992":4,"50993":4,"50994":3,"50995":2,"50996":5,"50997":5,"50998":4,"50999":3,"51000":3,"51001":4,"51002":4,"51003":3,"51004":1,"51005":4,"51006":2,"51007":3,"51008":3,"51009":4,"51010":2,"51011":4,"51012":3,"51013":2,"51014":2,"51015":3,"51016":1,"51017":2,"51018":3,"51019":3,"51020":3,"51021":1,"51022":1,"51023":3,"51024":3,"51025":3,"51026":3,"51027":1,"51028":4,"51029":3,"51030":4,"51031":3,"51032":4,"51033":4,"51034":3,"51035":3,"51036":3,"51037":4,"51038":4,"51039":3,"51040":4,"51041":3,"51042":3,"51043":3,"51044":3,"51045":4,"51046":5,"51047":3,"51048":3,"51049":3,"51050":1,"51051":2,"51052":3,"51053":4,"51054":2,"51055":2,"51056":3,"51057":3,"51058":4,"51059":4,"51060":1,"51061":1,"51062":2,"51063":4,"51064":1,"51065":3,"51066":3,"51067":5,"51068":2,"51069":2,"51070":4,"51071":3,"51072":1,"51073":3,"51074":2,"51075":2,"51076":3,"51077":2,"51078":1,"51079":4,"51080":1,"51081":3,"51082":3,"51083":3,"51084":3,"51085":2,"51086":3,"51087":4,"51088":3,"51089":2,"51090":5,"51091":2,"51092":3,"51093":4,"51094":4,"51095":2,"51096":3,"51097":4,"51098":3,"51099":2,"51100":1,"51101":3,"51102":2,"51103":3,"51104":2,"51105":3,"51106":4,"51107":1,"51108":1,"51109":3,"51110":4,"51111":4,"51112":3,"51113":2,"51114":3,"51115":3,"51116":2,"51117":3,"51118":4,"51119":2,"51120":4,"51121":4,"51122":3,"51123":2,"51124":3,"51125":1,"51126":2,"51127":3,"51128":3,"51129":2,"51130":3,"51131":3,"51132":2,"51133":3,"51134":3,"51135":4,"51136":3,"51137":5,"51138":2,"51139":2,"51140":2,"51141":3,"51142":3,"51143":1,"51144":3,"51145":5,"51146":1,"51147":4,"51148":2,"51149":3,"51150":4,"51151":3,"51152":1,"51153":4,"51154":3,"51155":2,"51156":5,"51157":3,"51158":3,"51159":3,"51160":5,"51161":3,"51162":4,"51163":2,"51164":5,"51165":2,"51166":2,"51167":5,"51168":3,"51169":4,"51170":2,"51171":4,"51172":1,"51173":3,"51174":1,"51175":1,"51176":4,"51177":4,"51178":3,"51179":3,"51180":3,"51181":4,"51182":4,"51183":3,"51184":3,"51185":3,"51186":4,"51187":4,"51188":3,"51189":2,"51190":5,"51191":4,"51192":4,"51193":3,"51194":1,"51195":4,"51196":1,"51197":2,"51198":3,"51199":2,"51200":3,"51201":3,"51202":1,"51203":1,"51204":3,"51205":3,"51206":2,"51207":2,"51208":5,"51209":3,"51210":2,"51211":4,"51212":4,"51213":2,"51214":1,"51215":2,"51216":3,"51217":2,"51218":4,"51219":3,"51220":3,"51221":2,"51222":1,"51223":3,"51224":4,"51225":3,"51226":2,"51227":3,"51228":3,"51229":3,"51230":3,"51231":3,"51232":3,"51233":1,"51234":3,"51235":3,"51236":2,"51237":2,"51238":4,"51239":4,"51240":1,"51241":5,"51242":2,"51243":4,"51244":1,"51245":3,"51246":3,"51247":2,"51248":2,"51249":4,"51250":5,"51251":5,"51252":1,"51253":1,"51254":3,"51255":2,"51256":4,"51257":2,"51258":2,"51259":3,"51260":3,"51261":3,"51262":2,"51263":3,"51264":4,"51265":1,"51266":1,"51267":3,"51268":2,"51269":5,"51270":1,"51271":3,"51272":3,"51273":2,"51274":4,"51275":4,"51276":2,"51277":3,"51278":4,"51279":3,"51280":3,"51281":3,"51282":3,"51283":3,"51284":3,"51285":4,"51286":4,"51287":1,"51288":4,"51289":3,"51290":3,"51291":2,"51292":4,"51293":4,"51294":4,"51295":1,"51296":1,"51297":4,"51298":4,"51299":4,"51300":5,"51301":3,"51302":4,"51303":4,"51304":2,"51305":3,"51306":4,"51307":4,"51308":2,"51309":1,"51310":1,"51311":3,"51312":3,"51313":3,"51314":3,"51315":4,"51316":3,"51317":3,"51318":2,"51319":4,"51320":5,"51321":2,"51322":3,"51323":2,"51324":1,"51325":1,"51326":5,"51327":2,"51328":4,"51329":3,"51330":2,"51331":4,"51332":3,"51333":4,"51334":3,"51335":4,"51336":4,"51337":2,"51338":3,"51339":3,"51340":4,"51341":2,"51342":4,"51343":4,"51344":2,"51345":2,"51346":2,"51347":5,"51348":2,"51349":4,"51350":3,"51351":3,"51352":1,"51353":4,"51354":3,"51355":2,"51356":3,"51357":3,"51358":5,"51359":4,"51360":1,"51361":5,"51362":4,"51363":5,"51364":1,"51365":1,"51366":1,"51367":1,"51368":3,"51369":1,"51370":3,"51371":5,"51372":5,"51373":5,"51374":4,"51375":3,"51376":3,"51377":2,"51378":3,"51379":2,"51380":2,"51381":4,"51382":3,"51383":3,"51384":5,"51385":3,"51386":1,"51387":4,"51388":3,"51389":3,"51390":3,"51391":3,"51392":4,"51393":2,"51394":4,"51395":4,"51396":2,"51397":3,"51398":3,"51399":3,"51400":3,"51401":2,"51402":5,"51403":3,"51404":2,"51405":4,"51406":4,"51407":4,"51408":2,"51409":1,"51410":3,"51411":3,"51412":4,"51413":3,"51414":4,"51415":4,"51416":4,"51417":3,"51418":1,"51419":3,"51420":4,"51421":1,"51422":2,"51423":3,"51424":3,"51425":3,"51426":3,"51427":3,"51428":5,"51429":3,"51430":3,"51431":4,"51432":4,"51433":2,"51434":4,"51435":3,"51436":3,"51437":3,"51438":4,"51439":2,"51440":2,"51441":3,"51442":5,"51443":3,"51444":1,"51445":4,"51446":3,"51447":3,"51448":4,"51449":2,"51450":4,"51451":2,"51452":3,"51453":2,"51454":2,"51455":3,"51456":2,"51457":3,"51458":4,"51459":4,"51460":2,"51461":3,"51462":2,"51463":4,"51464":2,"51465":3,"51466":3,"51467":1,"51468":2,"51469":1,"51470":2,"51471":4,"51472":4,"51473":5,"51474":4,"51475":5,"51476":3,"51477":3,"51478":1,"51479":5,"51480":2,"51481":4,"51482":3,"51483":4,"51484":3,"51485":2,"51486":4,"51487":5,"51488":2,"51489":3,"51490":4,"51491":4,"51492":1,"51493":2,"51494":2,"51495":3,"51496":4,"51497":2,"51498":2,"51499":3,"51500":4,"51501":4,"51502":2,"51503":4,"51504":3,"51505":4,"51506":4,"51507":4,"51508":4,"51509":2,"51510":4,"51511":2,"51512":2,"51513":3,"51514":2,"51515":5,"51516":4,"51517":5,"51518":1,"51519":3,"51520":1,"51521":3,"51522":2,"51523":3,"51524":5,"51525":3,"51526":3,"51527":4,"51528":3,"51529":3,"51530":3,"51531":2,"51532":2,"51533":3,"51534":1,"51535":4,"51536":2,"51537":1,"51538":3,"51539":3,"51540":3,"51541":3,"51542":5,"51543":4,"51544":2,"51545":4,"51546":4,"51547":2,"51548":2,"51549":1,"51550":3,"51551":2,"51552":5,"51553":4,"51554":2,"51555":4,"51556":1,"51557":3,"51558":1,"51559":3,"51560":2,"51561":2,"51562":4,"51563":2,"51564":3,"51565":4,"51566":4,"51567":4,"51568":4,"51569":1,"51570":2,"51571":4,"51572":5,"51573":5,"51574":2,"51575":3,"51576":3,"51577":3,"51578":3,"51579":2,"51580":4,"51581":4,"51582":2,"51583":3,"51584":2,"51585":5,"51586":3,"51587":4,"51588":2,"51589":2,"51590":2,"51591":3,"51592":4,"51593":3,"51594":4,"51595":4,"51596":3,"51597":4,"51598":4,"51599":2,"51600":4,"51601":4,"51602":3,"51603":1,"51604":3,"51605":3,"51606":4,"51607":3,"51608":4,"51609":4,"51610":2,"51611":2,"51612":5,"51613":3,"51614":5,"51615":4,"51616":3,"51617":5,"51618":3,"51619":2,"51620":3,"51621":3,"51622":4,"51623":5,"51624":1,"51625":3,"51626":3,"51627":2,"51628":2,"51629":5,"51630":4,"51631":3,"51632":2,"51633":2,"51634":4,"51635":1,"51636":3,"51637":4,"51638":4,"51639":5,"51640":4,"51641":2,"51642":3,"51643":4,"51644":3,"51645":3,"51646":3,"51647":3,"51648":4,"51649":1,"51650":4,"51651":4,"51652":2,"51653":1,"51654":2,"51655":2,"51656":2,"51657":3,"51658":2,"51659":4,"51660":4,"51661":2,"51662":2,"51663":2,"51664":2,"51665":2,"51666":2,"51667":1,"51668":5,"51669":3,"51670":2,"51671":2,"51672":5,"51673":3,"51674":2,"51675":1,"51676":2,"51677":3,"51678":3,"51679":3,"51680":2,"51681":3,"51682":3,"51683":4,"51684":5,"51685":3,"51686":3,"51687":2,"51688":4,"51689":4,"51690":4,"51691":2,"51692":4,"51693":3,"51694":3,"51695":2,"51696":1,"51697":3,"51698":3,"51699":1,"51700":3,"51701":1,"51702":3,"51703":4,"51704":2,"51705":4,"51706":2,"51707":3,"51708":2,"51709":3,"51710":3,"51711":3,"51712":4,"51713":3,"51714":2,"51715":3,"51716":3,"51717":3,"51718":3,"51719":1,"51720":2,"51721":5,"51722":4,"51723":3,"51724":2,"51725":2,"51726":4,"51727":2,"51728":2,"51729":2,"51730":4,"51731":4,"51732":3,"51733":3,"51734":2,"51735":3,"51736":4,"51737":3,"51738":2,"51739":1,"51740":3,"51741":4,"51742":4,"51743":2,"51744":3,"51745":4,"51746":2,"51747":2,"51748":3,"51749":3,"51750":4,"51751":3,"51752":2,"51753":1,"51754":5,"51755":4,"51756":3,"51757":4,"51758":3,"51759":4,"51760":3,"51761":1,"51762":4,"51763":2,"51764":4,"51765":2,"51766":3,"51767":4,"51768":4,"51769":1,"51770":2,"51771":2,"51772":3,"51773":4,"51774":2,"51775":3,"51776":4,"51777":5,"51778":3,"51779":3,"51780":4,"51781":4,"51782":3,"51783":2,"51784":4,"51785":5,"51786":4,"51787":5,"51788":3,"51789":5,"51790":4,"51791":3,"51792":2,"51793":3,"51794":5,"51795":4,"51796":3,"51797":3,"51798":3,"51799":4,"51800":2,"51801":2,"51802":3,"51803":3,"51804":3,"51805":3,"51806":2,"51807":3,"51808":4,"51809":3,"51810":3,"51811":4,"51812":4,"51813":4,"51814":3,"51815":4,"51816":3,"51817":1,"51818":3,"51819":1,"51820":3,"51821":3,"51822":4,"51823":4,"51824":3,"51825":3,"51826":3,"51827":4,"51828":2,"51829":1,"51830":3,"51831":4,"51832":5,"51833":4,"51834":3,"51835":1,"51836":2,"51837":2,"51838":3,"51839":4,"51840":3,"51841":4,"51842":3,"51843":3,"51844":5,"51845":5,"51846":3,"51847":1,"51848":2,"51849":2,"51850":2,"51851":1,"51852":3,"51853":3,"51854":4,"51855":3,"51856":4,"51857":5,"51858":1,"51859":3,"51860":4,"51861":1,"51862":4,"51863":2,"51864":2,"51865":3,"51866":3,"51867":5,"51868":2,"51869":2,"51870":3,"51871":3,"51872":3,"51873":1,"51874":1,"51875":2,"51876":3,"51877":2,"51878":5,"51879":1,"51880":4,"51881":4,"51882":3,"51883":3,"51884":1,"51885":2,"51886":3,"51887":3,"51888":5,"51889":3,"51890":4,"51891":4,"51892":4,"51893":4,"51894":4,"51895":2,"51896":3,"51897":2,"51898":2,"51899":4,"51900":2,"51901":2,"51902":4,"51903":3,"51904":2,"51905":3,"51906":2,"51907":3,"51908":2,"51909":1,"51910":4,"51911":3,"51912":3,"51913":2,"51914":3,"51915":3,"51916":3,"51917":4,"51918":3,"51919":4,"51920":1,"51921":4,"51922":2,"51923":3,"51924":3,"51925":2,"51926":5,"51927":5,"51928":4,"51929":4,"51930":1,"51931":4,"51932":3,"51933":5,"51934":3,"51935":3,"51936":2,"51937":3,"51938":3,"51939":4,"51940":3,"51941":5,"51942":1,"51943":1,"51944":3,"51945":4,"51946":2,"51947":3,"51948":2,"51949":3,"51950":3,"51951":3,"51952":4,"51953":3,"51954":5,"51955":2,"51956":3,"51957":3,"51958":5,"51959":1,"51960":2,"51961":2,"51962":3,"51963":3,"51964":2,"51965":3,"51966":4,"51967":3,"51968":3,"51969":2,"51970":2,"51971":3,"51972":3,"51973":3,"51974":1,"51975":4,"51976":4,"51977":3,"51978":3,"51979":5,"51980":3,"51981":4,"51982":5,"51983":4,"51984":2,"51985":5,"51986":3,"51987":3,"51988":3,"51989":3,"51990":3,"51991":4,"51992":4,"51993":2,"51994":4,"51995":1,"51996":5,"51997":2,"51998":2,"51999":3,"52000":2,"52001":3,"52002":4,"52003":1,"52004":5,"52005":3,"52006":4,"52007":2,"52008":3,"52009":4,"52010":3,"52011":1,"52012":5,"52013":5,"52014":2,"52015":3,"52016":3,"52017":5,"52018":4,"52019":2,"52020":2,"52021":3,"52022":1,"52023":3,"52024":3,"52025":4,"52026":3,"52027":2,"52028":2,"52029":3,"52030":1,"52031":3,"52032":3,"52033":4,"52034":2,"52035":2,"52036":2,"52037":2,"52038":3,"52039":4,"52040":2,"52041":3,"52042":2,"52043":3,"52044":4,"52045":4,"52046":4,"52047":4,"52048":3,"52049":3,"52050":3,"52051":2,"52052":4,"52053":4,"52054":1,"52055":2,"52056":2,"52057":3,"52058":1,"52059":4,"52060":2,"52061":3,"52062":1,"52063":2,"52064":4,"52065":3,"52066":1,"52067":1,"52068":2,"52069":3,"52070":3,"52071":4,"52072":2,"52073":2,"52074":2,"52075":4,"52076":4,"52077":2,"52078":4,"52079":1,"52080":4,"52081":1,"52082":2,"52083":1,"52084":4,"52085":3,"52086":3,"52087":3,"52088":2,"52089":4,"52090":5,"52091":4,"52092":2,"52093":5,"52094":3,"52095":1,"52096":3,"52097":3,"52098":2,"52099":4,"52100":4,"52101":4,"52102":1,"52103":3,"52104":1,"52105":4,"52106":2,"52107":2,"52108":2,"52109":4,"52110":4,"52111":2,"52112":4,"52113":3,"52114":4,"52115":2,"52116":2,"52117":3,"52118":2,"52119":2,"52120":5,"52121":2,"52122":3,"52123":2,"52124":3,"52125":3,"52126":3,"52127":3,"52128":3,"52129":5,"52130":4,"52131":2,"52132":4,"52133":5,"52134":4,"52135":4,"52136":4,"52137":4,"52138":2,"52139":4,"52140":1,"52141":4,"52142":2,"52143":4,"52144":5,"52145":1,"52146":5,"52147":4,"52148":4,"52149":2,"52150":2,"52151":3,"52152":3,"52153":1,"52154":4,"52155":3,"52156":3,"52157":2,"52158":4,"52159":4,"52160":1,"52161":3,"52162":4,"52163":4,"52164":3,"52165":5,"52166":2,"52167":5,"52168":5,"52169":2,"52170":3,"52171":4,"52172":3,"52173":2,"52174":2,"52175":4,"52176":4,"52177":3,"52178":3,"52179":4,"52180":4,"52181":3,"52182":1,"52183":4,"52184":4,"52185":4,"52186":2,"52187":3,"52188":2,"52189":2,"52190":3,"52191":1,"52192":3,"52193":3,"52194":4,"52195":5,"52196":3,"52197":3,"52198":3,"52199":4,"52200":1,"52201":5,"52202":1,"52203":3,"52204":4,"52205":2,"52206":2,"52207":1,"52208":1,"52209":3,"52210":5,"52211":5,"52212":3,"52213":2,"52214":4,"52215":2,"52216":2,"52217":2,"52218":2,"52219":2,"52220":3,"52221":5,"52222":2,"52223":4,"52224":3,"52225":3,"52226":3,"52227":2,"52228":3,"52229":3,"52230":2,"52231":2,"52232":3,"52233":1,"52234":3,"52235":3,"52236":2,"52237":2,"52238":3,"52239":5,"52240":4,"52241":1,"52242":5,"52243":3,"52244":4,"52245":3,"52246":1,"52247":1,"52248":4,"52249":2,"52250":3,"52251":3,"52252":2,"52253":3,"52254":4,"52255":5,"52256":3,"52257":3,"52258":5,"52259":3,"52260":5,"52261":3,"52262":3,"52263":3,"52264":3,"52265":3,"52266":3,"52267":2,"52268":4,"52269":3,"52270":2,"52271":4,"52272":3,"52273":2,"52274":4,"52275":3,"52276":1,"52277":3,"52278":4,"52279":3,"52280":2,"52281":3,"52282":2,"52283":2,"52284":3,"52285":3,"52286":2,"52287":4,"52288":2,"52289":3,"52290":4,"52291":4,"52292":2,"52293":4,"52294":3,"52295":3,"52296":3,"52297":2,"52298":4,"52299":4,"52300":3,"52301":4,"52302":5,"52303":3,"52304":3,"52305":4,"52306":3,"52307":4,"52308":4,"52309":4,"52310":2,"52311":4,"52312":4,"52313":2,"52314":2,"52315":3,"52316":3,"52317":2,"52318":3,"52319":4,"52320":5,"52321":3,"52322":5,"52323":3,"52324":3,"52325":5,"52326":2,"52327":1,"52328":3,"52329":2,"52330":3,"52331":3,"52332":3,"52333":3,"52334":2,"52335":4,"52336":3,"52337":4,"52338":4,"52339":5,"52340":3,"52341":2,"52342":3,"52343":4,"52344":5,"52345":1,"52346":2,"52347":2,"52348":3,"52349":3,"52350":3,"52351":2,"52352":3,"52353":3,"52354":2,"52355":4,"52356":3,"52357":2,"52358":4,"52359":3,"52360":1,"52361":5,"52362":2,"52363":5,"52364":4,"52365":2,"52366":1,"52367":4,"52368":3,"52369":4,"52370":3,"52371":2,"52372":3,"52373":2,"52374":3,"52375":4,"52376":2,"52377":3,"52378":2,"52379":4,"52380":2,"52381":4,"52382":2,"52383":2,"52384":3,"52385":4,"52386":4,"52387":4,"52388":2,"52389":5,"52390":4,"52391":2,"52392":2,"52393":2,"52394":5,"52395":3,"52396":3,"52397":3,"52398":3,"52399":5,"52400":2,"52401":4,"52402":3,"52403":5,"52404":2,"52405":1,"52406":3,"52407":3,"52408":4,"52409":4,"52410":3,"52411":3,"52412":3,"52413":5,"52414":3,"52415":4,"52416":3,"52417":3,"52418":1,"52419":4,"52420":3,"52421":2,"52422":2,"52423":3,"52424":5,"52425":1,"52426":2,"52427":4,"52428":4,"52429":3,"52430":3,"52431":4,"52432":3,"52433":5,"52434":3,"52435":4,"52436":4,"52437":4,"52438":4,"52439":2,"52440":4,"52441":3,"52442":2,"52443":2,"52444":4,"52445":4,"52446":1,"52447":3,"52448":2,"52449":2,"52450":2,"52451":3,"52452":1,"52453":2,"52454":4,"52455":1,"52456":1,"52457":3,"52458":4,"52459":3,"52460":3,"52461":5,"52462":3,"52463":2,"52464":4,"52465":3,"52466":3,"52467":4,"52468":3,"52469":3,"52470":4,"52471":4,"52472":3,"52473":2,"52474":2,"52475":1,"52476":3,"52477":1,"52478":4,"52479":3,"52480":5,"52481":3,"52482":4,"52483":3,"52484":3,"52485":3,"52486":2,"52487":4,"52488":3,"52489":4,"52490":2,"52491":3,"52492":4,"52493":5,"52494":4,"52495":2,"52496":2,"52497":4,"52498":4,"52499":2,"52500":4,"52501":2,"52502":4,"52503":4,"52504":4,"52505":5,"52506":3,"52507":2,"52508":2,"52509":3,"52510":5,"52511":3,"52512":3,"52513":4,"52514":3,"52515":3,"52516":3,"52517":4,"52518":2,"52519":5,"52520":2,"52521":3,"52522":2,"52523":2,"52524":5,"52525":4,"52526":3,"52527":4,"52528":3,"52529":2,"52530":3,"52531":3,"52532":1,"52533":1,"52534":5,"52535":4,"52536":3,"52537":2,"52538":3,"52539":2,"52540":1,"52541":2,"52542":5,"52543":1,"52544":5,"52545":4,"52546":4,"52547":1,"52548":4,"52549":4,"52550":1,"52551":3,"52552":2,"52553":4,"52554":3,"52555":2,"52556":3,"52557":1,"52558":4,"52559":5,"52560":4,"52561":3,"52562":2,"52563":3,"52564":4,"52565":4,"52566":3,"52567":4,"52568":4,"52569":5,"52570":3,"52571":3,"52572":4,"52573":4,"52574":4,"52575":2,"52576":4,"52577":4,"52578":3,"52579":4,"52580":2,"52581":3,"52582":4,"52583":2,"52584":3,"52585":4,"52586":4,"52587":1,"52588":3,"52589":2,"52590":3,"52591":3,"52592":4,"52593":3,"52594":1,"52595":4,"52596":2,"52597":2,"52598":3,"52599":3,"52600":4,"52601":3,"52602":4,"52603":3,"52604":3,"52605":3,"52606":3,"52607":2,"52608":3,"52609":5,"52610":3,"52611":4,"52612":4,"52613":1,"52614":2,"52615":1,"52616":3,"52617":5,"52618":4,"52619":1,"52620":2,"52621":3,"52622":3,"52623":4,"52624":2,"52625":3,"52626":3,"52627":3,"52628":3,"52629":2,"52630":3,"52631":3,"52632":3,"52633":1,"52634":2,"52635":3,"52636":2,"52637":3,"52638":3,"52639":2,"52640":2,"52641":3,"52642":4,"52643":3,"52644":4,"52645":4,"52646":2,"52647":4,"52648":4,"52649":3,"52650":2,"52651":2,"52652":3,"52653":2,"52654":3,"52655":4,"52656":3,"52657":3,"52658":4,"52659":3,"52660":4,"52661":5,"52662":2,"52663":5,"52664":2,"52665":1,"52666":2,"52667":4,"52668":3,"52669":5,"52670":4,"52671":4,"52672":4,"52673":3,"52674":3,"52675":3,"52676":2,"52677":2,"52678":3,"52679":3,"52680":2,"52681":2,"52682":3,"52683":4,"52684":2,"52685":1,"52686":4,"52687":5,"52688":1,"52689":1,"52690":3,"52691":3,"52692":3,"52693":3,"52694":3,"52695":2,"52696":3,"52697":4,"52698":2,"52699":3,"52700":3,"52701":2,"52702":4,"52703":3,"52704":2,"52705":3,"52706":3,"52707":5,"52708":3,"52709":3,"52710":4,"52711":4,"52712":4,"52713":1,"52714":3,"52715":1,"52716":1,"52717":1,"52718":4,"52719":4,"52720":3,"52721":3,"52722":1,"52723":4,"52724":4,"52725":4,"52726":3,"52727":1,"52728":3,"52729":5,"52730":2,"52731":3,"52732":3,"52733":3,"52734":4,"52735":5,"52736":2,"52737":4,"52738":2,"52739":4,"52740":1,"52741":4,"52742":4,"52743":1,"52744":4,"52745":2,"52746":3,"52747":3,"52748":3,"52749":3,"52750":3,"52751":2,"52752":3,"52753":1,"52754":4,"52755":2,"52756":2,"52757":2,"52758":3,"52759":4,"52760":4,"52761":3,"52762":2,"52763":3,"52764":2,"52765":4,"52766":5,"52767":3,"52768":3,"52769":2,"52770":4,"52771":2,"52772":4,"52773":3,"52774":5,"52775":2,"52776":4,"52777":2,"52778":3,"52779":4,"52780":3,"52781":2,"52782":2,"52783":3,"52784":3,"52785":3,"52786":4,"52787":2,"52788":5,"52789":4,"52790":3,"52791":2,"52792":5,"52793":1,"52794":4,"52795":2,"52796":1,"52797":4,"52798":5,"52799":3,"52800":3,"52801":4,"52802":3,"52803":4,"52804":4,"52805":2,"52806":3,"52807":3,"52808":3,"52809":3,"52810":1,"52811":4,"52812":3,"52813":1,"52814":3,"52815":3,"52816":3,"52817":2,"52818":4,"52819":3,"52820":2,"52821":3,"52822":3,"52823":1,"52824":3,"52825":3,"52826":2,"52827":1,"52828":4,"52829":4,"52830":3,"52831":4,"52832":4,"52833":3,"52834":2,"52835":2,"52836":3,"52837":4,"52838":2,"52839":2,"52840":5,"52841":3,"52842":2,"52843":5,"52844":2,"52845":2,"52846":3,"52847":4,"52848":1,"52849":3,"52850":2,"52851":3,"52852":2,"52853":4,"52854":4,"52855":3,"52856":3,"52857":3,"52858":4,"52859":2,"52860":4,"52861":3,"52862":3,"52863":2,"52864":4,"52865":2,"52866":3,"52867":3,"52868":4,"52869":4,"52870":3,"52871":3,"52872":4,"52873":2,"52874":1,"52875":5,"52876":5,"52877":4,"52878":2,"52879":4,"52880":2,"52881":2,"52882":1,"52883":5,"52884":4,"52885":5,"52886":2,"52887":2,"52888":4,"52889":4,"52890":3,"52891":3,"52892":2,"52893":3,"52894":5,"52895":4,"52896":4,"52897":4,"52898":2,"52899":3,"52900":5,"52901":3,"52902":3,"52903":3,"52904":4,"52905":2,"52906":2,"52907":3,"52908":2,"52909":4,"52910":2,"52911":2,"52912":1,"52913":4,"52914":5,"52915":1,"52916":3,"52917":4,"52918":3,"52919":2,"52920":3,"52921":3,"52922":3,"52923":3,"52924":2,"52925":2,"52926":3,"52927":3,"52928":4,"52929":4,"52930":3,"52931":1,"52932":4,"52933":2,"52934":3,"52935":2,"52936":3,"52937":4,"52938":4,"52939":2,"52940":3,"52941":4,"52942":3,"52943":1,"52944":2,"52945":2,"52946":1,"52947":3,"52948":3,"52949":1,"52950":3,"52951":1,"52952":4,"52953":3,"52954":4,"52955":2,"52956":3,"52957":5,"52958":4,"52959":4,"52960":3,"52961":2,"52962":4,"52963":4,"52964":3,"52965":3,"52966":2,"52967":4,"52968":2,"52969":4,"52970":3,"52971":1,"52972":3,"52973":4,"52974":1,"52975":4,"52976":4,"52977":4,"52978":4,"52979":3,"52980":3,"52981":2,"52982":2,"52983":4,"52984":3,"52985":4,"52986":2,"52987":2,"52988":3,"52989":3,"52990":2,"52991":4,"52992":3,"52993":2,"52994":3,"52995":4,"52996":3,"52997":4,"52998":1,"52999":1,"53000":4,"53001":3,"53002":4,"53003":3,"53004":2,"53005":2,"53006":3,"53007":2,"53008":3,"53009":3,"53010":5,"53011":5,"53012":4,"53013":3,"53014":3,"53015":2,"53016":3,"53017":3,"53018":3,"53019":3,"53020":5,"53021":2,"53022":1,"53023":3,"53024":4,"53025":3,"53026":3,"53027":2,"53028":3,"53029":3,"53030":3,"53031":3,"53032":4,"53033":3,"53034":5,"53035":5,"53036":3,"53037":2,"53038":5,"53039":4,"53040":1,"53041":1,"53042":2,"53043":3,"53044":4,"53045":2,"53046":2,"53047":2,"53048":1,"53049":3,"53050":3,"53051":1,"53052":2,"53053":3,"53054":2,"53055":2,"53056":3,"53057":4,"53058":2,"53059":4,"53060":3,"53061":2,"53062":4,"53063":5,"53064":4,"53065":1,"53066":4,"53067":3,"53068":2,"53069":2,"53070":3,"53071":4,"53072":4,"53073":3,"53074":2,"53075":3,"53076":1,"53077":3,"53078":4,"53079":2,"53080":3,"53081":1,"53082":4,"53083":3,"53084":3,"53085":3,"53086":4,"53087":4,"53088":4,"53089":2,"53090":1,"53091":3,"53092":1,"53093":4,"53094":3,"53095":2,"53096":4,"53097":2,"53098":4,"53099":2,"53100":4,"53101":4,"53102":3,"53103":5,"53104":5,"53105":3,"53106":3,"53107":3,"53108":5,"53109":4,"53110":4,"53111":3,"53112":3,"53113":2,"53114":1,"53115":5,"53116":4,"53117":3,"53118":2,"53119":5,"53120":4,"53121":1,"53122":3,"53123":2,"53124":1,"53125":4,"53126":3,"53127":5,"53128":1,"53129":1,"53130":1,"53131":4,"53132":3,"53133":1,"53134":2,"53135":4,"53136":2,"53137":2,"53138":2,"53139":1,"53140":2,"53141":4,"53142":3,"53143":1,"53144":2,"53145":2,"53146":1,"53147":2,"53148":4,"53149":2,"53150":2,"53151":3,"53152":4,"53153":2,"53154":4,"53155":2,"53156":3,"53157":4,"53158":4,"53159":5,"53160":1,"53161":4,"53162":4,"53163":5,"53164":4,"53165":3,"53166":3,"53167":1,"53168":4,"53169":3,"53170":5,"53171":4,"53172":5,"53173":3,"53174":3,"53175":1,"53176":4,"53177":2,"53178":3,"53179":5,"53180":3,"53181":3,"53182":3,"53183":4,"53184":4,"53185":4,"53186":3,"53187":4,"53188":2,"53189":2,"53190":1,"53191":4,"53192":3,"53193":4,"53194":2,"53195":2,"53196":2,"53197":2,"53198":5,"53199":1,"53200":3,"53201":4,"53202":3,"53203":4,"53204":4,"53205":3,"53206":4,"53207":3,"53208":3,"53209":4,"53210":5,"53211":1,"53212":4,"53213":4,"53214":2,"53215":3,"53216":4,"53217":4,"53218":4,"53219":3,"53220":2,"53221":1,"53222":3,"53223":2,"53224":3,"53225":3,"53226":2,"53227":3,"53228":1,"53229":3,"53230":1,"53231":4,"53232":1,"53233":3,"53234":2,"53235":1,"53236":3,"53237":4,"53238":3,"53239":3,"53240":4,"53241":1,"53242":3,"53243":4,"53244":2,"53245":2,"53246":4,"53247":2,"53248":4,"53249":3,"53250":2,"53251":4,"53252":3,"53253":3,"53254":3,"53255":3,"53256":3,"53257":3,"53258":3,"53259":2,"53260":2,"53261":2,"53262":2,"53263":3,"53264":3,"53265":4,"53266":3,"53267":2,"53268":4,"53269":3,"53270":2,"53271":3,"53272":4,"53273":2,"53274":3,"53275":3,"53276":2,"53277":2,"53278":3,"53279":5,"53280":3,"53281":4,"53282":1,"53283":1,"53284":3,"53285":5,"53286":1,"53287":3,"53288":2,"53289":2,"53290":3,"53291":2,"53292":4,"53293":3,"53294":3,"53295":4,"53296":4,"53297":4,"53298":2,"53299":2,"53300":4,"53301":2,"53302":3,"53303":3,"53304":2,"53305":1,"53306":3,"53307":3,"53308":2,"53309":5,"53310":2,"53311":5,"53312":5,"53313":2,"53314":2,"53315":3,"53316":2,"53317":2,"53318":2,"53319":1,"53320":3,"53321":1,"53322":3,"53323":3,"53324":3,"53325":3,"53326":4,"53327":3,"53328":2,"53329":5,"53330":2,"53331":2,"53332":4,"53333":2,"53334":3,"53335":3,"53336":2,"53337":3,"53338":5,"53339":3,"53340":3,"53341":3,"53342":3,"53343":2,"53344":2,"53345":1,"53346":4,"53347":5,"53348":3,"53349":1,"53350":5,"53351":3,"53352":2,"53353":4,"53354":2,"53355":3,"53356":5,"53357":4,"53358":3,"53359":2,"53360":1,"53361":1,"53362":4,"53363":2,"53364":3,"53365":2,"53366":3,"53367":3,"53368":4,"53369":3,"53370":4,"53371":1,"53372":4,"53373":4,"53374":4,"53375":4,"53376":2,"53377":4,"53378":4,"53379":4,"53380":3,"53381":2,"53382":4,"53383":4,"53384":2,"53385":3,"53386":3,"53387":4,"53388":3,"53389":4,"53390":2,"53391":2,"53392":2,"53393":3,"53394":3,"53395":4,"53396":5,"53397":4,"53398":5,"53399":3,"53400":3,"53401":4,"53402":2,"53403":2,"53404":2,"53405":2,"53406":3,"53407":3,"53408":2,"53409":3,"53410":2,"53411":4,"53412":3,"53413":3,"53414":3,"53415":2,"53416":4,"53417":4,"53418":1,"53419":3,"53420":2,"53421":5,"53422":5,"53423":3,"53424":4,"53425":2,"53426":2,"53427":4,"53428":4,"53429":3,"53430":2,"53431":1,"53432":2,"53433":2,"53434":4,"53435":4,"53436":3,"53437":2,"53438":2,"53439":3,"53440":3,"53441":4,"53442":3,"53443":4,"53444":1,"53445":4,"53446":5,"53447":1,"53448":4,"53449":4,"53450":1,"53451":3,"53452":3,"53453":3,"53454":3,"53455":3,"53456":4,"53457":2,"53458":4,"53459":2,"53460":2,"53461":3,"53462":3,"53463":2,"53464":4,"53465":5,"53466":4,"53467":2,"53468":4,"53469":3,"53470":3,"53471":2,"53472":3,"53473":1,"53474":4,"53475":4,"53476":4,"53477":2,"53478":2,"53479":4,"53480":2,"53481":4,"53482":3,"53483":4,"53484":3,"53485":2,"53486":4,"53487":4,"53488":4,"53489":1,"53490":3,"53491":4,"53492":3,"53493":3,"53494":5,"53495":4,"53496":3,"53497":4,"53498":2,"53499":4,"53500":4,"53501":4,"53502":1,"53503":3,"53504":2,"53505":3,"53506":4,"53507":5,"53508":3,"53509":3,"53510":1,"53511":3,"53512":5,"53513":4,"53514":3,"53515":4,"53516":2,"53517":3,"53518":4,"53519":4,"53520":3,"53521":4,"53522":5,"53523":4,"53524":2,"53525":5,"53526":3,"53527":4,"53528":2,"53529":2,"53530":4,"53531":2,"53532":3,"53533":3,"53534":2,"53535":2,"53536":2,"53537":3,"53538":3,"53539":2,"53540":3,"53541":4,"53542":4,"53543":3,"53544":3,"53545":4,"53546":2,"53547":4,"53548":2,"53549":1,"53550":4,"53551":4,"53552":3,"53553":3,"53554":3,"53555":2,"53556":4,"53557":4,"53558":2,"53559":3,"53560":2,"53561":4,"53562":3,"53563":3,"53564":3,"53565":5,"53566":5,"53567":3,"53568":4,"53569":3,"53570":4,"53571":3,"53572":3,"53573":2,"53574":2,"53575":4,"53576":3,"53577":3,"53578":3,"53579":1,"53580":3,"53581":5,"53582":3,"53583":4,"53584":2,"53585":1,"53586":2,"53587":2,"53588":4,"53589":3,"53590":2,"53591":3,"53592":3,"53593":5,"53594":4,"53595":1,"53596":2,"53597":5,"53598":3,"53599":4,"53600":3,"53601":3,"53602":5,"53603":2,"53604":3,"53605":4,"53606":1,"53607":2,"53608":5,"53609":4,"53610":3,"53611":3,"53612":4,"53613":3,"53614":2,"53615":2,"53616":3,"53617":3,"53618":1,"53619":3,"53620":1,"53621":5,"53622":2,"53623":5,"53624":1,"53625":2,"53626":5,"53627":3,"53628":3,"53629":2,"53630":2,"53631":3,"53632":4,"53633":4,"53634":3,"53635":3,"53636":4,"53637":4,"53638":3,"53639":4,"53640":3,"53641":5,"53642":1,"53643":3,"53644":4,"53645":2,"53646":5,"53647":4,"53648":5,"53649":2,"53650":2,"53651":3,"53652":5,"53653":2,"53654":5,"53655":3,"53656":3,"53657":5,"53658":2,"53659":4,"53660":2,"53661":2,"53662":4,"53663":4,"53664":4,"53665":4,"53666":4,"53667":3,"53668":2,"53669":3,"53670":3,"53671":4,"53672":3,"53673":4,"53674":3,"53675":3,"53676":3,"53677":4,"53678":4,"53679":1,"53680":5,"53681":4,"53682":3,"53683":4,"53684":3,"53685":4,"53686":2,"53687":5,"53688":3,"53689":3,"53690":2,"53691":1,"53692":2,"53693":3,"53694":2,"53695":5,"53696":4,"53697":4,"53698":3,"53699":3,"53700":2,"53701":3,"53702":4,"53703":3,"53704":2,"53705":4,"53706":3,"53707":4,"53708":3,"53709":3,"53710":2,"53711":2,"53712":2,"53713":3,"53714":4,"53715":2,"53716":4,"53717":2,"53718":1,"53719":3,"53720":1,"53721":4,"53722":2,"53723":4,"53724":5,"53725":1,"53726":4,"53727":2,"53728":3,"53729":4,"53730":3,"53731":2,"53732":2,"53733":5,"53734":3,"53735":4,"53736":4,"53737":3,"53738":4,"53739":4,"53740":3,"53741":4,"53742":2,"53743":4,"53744":3,"53745":4,"53746":4,"53747":1,"53748":4,"53749":2,"53750":2,"53751":4,"53752":2,"53753":1,"53754":3,"53755":4,"53756":2,"53757":5,"53758":2,"53759":3,"53760":4,"53761":2,"53762":3,"53763":2,"53764":4,"53765":4,"53766":2,"53767":2,"53768":3,"53769":3,"53770":1,"53771":5,"53772":5,"53773":4,"53774":3,"53775":3,"53776":3,"53777":2,"53778":3,"53779":4,"53780":4,"53781":5,"53782":4,"53783":2,"53784":4,"53785":2,"53786":4,"53787":3,"53788":3,"53789":1,"53790":3,"53791":3,"53792":3,"53793":5,"53794":4,"53795":1,"53796":2,"53797":2,"53798":4,"53799":3,"53800":3,"53801":1,"53802":2,"53803":4,"53804":1,"53805":2,"53806":3,"53807":4,"53808":2,"53809":1,"53810":3,"53811":4,"53812":1,"53813":4,"53814":3,"53815":2,"53816":2,"53817":4,"53818":2,"53819":2,"53820":1,"53821":3,"53822":3,"53823":4,"53824":2,"53825":1,"53826":4,"53827":4,"53828":2,"53829":1,"53830":1,"53831":3,"53832":2,"53833":4,"53834":3,"53835":4,"53836":5,"53837":2,"53838":4,"53839":1,"53840":3,"53841":1,"53842":3,"53843":4,"53844":2,"53845":4,"53846":3,"53847":1,"53848":3,"53849":4,"53850":3,"53851":3,"53852":3,"53853":1,"53854":2,"53855":4,"53856":3,"53857":4,"53858":3,"53859":4,"53860":4,"53861":2,"53862":1,"53863":2,"53864":4,"53865":4,"53866":3,"53867":3,"53868":3,"53869":3,"53870":4,"53871":4,"53872":3,"53873":4,"53874":4,"53875":3,"53876":3,"53877":2,"53878":4,"53879":2,"53880":2,"53881":2,"53882":4,"53883":2,"53884":5,"53885":3,"53886":2,"53887":4,"53888":3,"53889":4,"53890":3,"53891":2,"53892":4,"53893":3,"53894":5,"53895":4,"53896":3,"53897":4,"53898":3,"53899":3,"53900":3,"53901":3,"53902":2,"53903":4,"53904":3,"53905":2,"53906":1,"53907":3,"53908":2,"53909":4,"53910":3,"53911":3,"53912":4,"53913":3,"53914":5,"53915":3,"53916":4,"53917":3,"53918":4,"53919":2,"53920":2,"53921":3,"53922":2,"53923":2,"53924":3,"53925":4,"53926":2,"53927":5,"53928":2,"53929":3,"53930":5,"53931":3,"53932":4,"53933":3,"53934":4,"53935":2,"53936":3,"53937":3,"53938":2,"53939":3,"53940":2,"53941":3,"53942":3,"53943":2,"53944":5,"53945":3,"53946":3,"53947":4,"53948":4,"53949":4,"53950":4,"53951":4,"53952":2,"53953":2,"53954":1,"53955":2,"53956":3,"53957":3,"53958":2,"53959":4,"53960":3,"53961":4,"53962":3,"53963":5,"53964":5,"53965":4,"53966":4,"53967":3,"53968":1,"53969":4,"53970":3,"53971":3,"53972":2,"53973":4,"53974":4,"53975":3,"53976":4,"53977":4,"53978":4,"53979":3,"53980":1,"53981":4,"53982":4,"53983":4,"53984":2,"53985":2,"53986":2,"53987":4,"53988":2,"53989":1,"53990":3,"53991":4,"53992":4,"53993":3,"53994":2,"53995":4,"53996":3,"53997":3,"53998":3,"53999":2,"54000":4,"54001":3,"54002":4,"54003":3,"54004":4,"54005":4,"54006":4,"54007":4,"54008":5,"54009":2,"54010":3,"54011":3,"54012":3,"54013":3,"54014":3,"54015":4,"54016":2,"54017":3,"54018":2,"54019":4,"54020":2,"54021":3,"54022":2,"54023":3,"54024":2,"54025":3,"54026":1,"54027":3,"54028":3,"54029":1,"54030":3,"54031":3,"54032":4,"54033":2,"54034":5,"54035":4,"54036":3,"54037":4,"54038":2,"54039":3,"54040":3,"54041":3,"54042":3,"54043":5,"54044":3,"54045":3,"54046":1,"54047":3,"54048":3,"54049":5,"54050":3,"54051":3,"54052":4,"54053":3,"54054":1,"54055":2,"54056":3,"54057":3,"54058":3,"54059":2,"54060":3,"54061":3,"54062":1,"54063":4,"54064":2,"54065":3,"54066":3,"54067":5,"54068":3,"54069":1,"54070":3,"54071":2,"54072":2,"54073":2,"54074":2,"54075":1,"54076":1,"54077":4,"54078":1,"54079":3,"54080":3,"54081":4,"54082":3,"54083":3,"54084":3,"54085":3,"54086":4,"54087":4,"54088":3,"54089":4,"54090":3,"54091":4,"54092":3,"54093":3,"54094":4,"54095":2,"54096":5,"54097":2,"54098":2,"54099":1,"54100":1,"54101":3,"54102":3,"54103":3,"54104":5,"54105":5,"54106":2,"54107":2,"54108":4,"54109":1,"54110":5,"54111":3,"54112":3,"54113":5,"54114":1,"54115":3,"54116":3,"54117":2,"54118":3,"54119":3,"54120":1,"54121":5,"54122":4,"54123":2,"54124":1,"54125":2,"54126":2,"54127":3,"54128":3,"54129":4,"54130":4,"54131":3,"54132":3,"54133":5,"54134":3,"54135":2,"54136":2,"54137":4,"54138":1,"54139":2,"54140":1,"54141":2,"54142":4,"54143":1,"54144":4,"54145":4,"54146":2,"54147":2,"54148":4,"54149":3,"54150":4,"54151":2,"54152":1,"54153":2,"54154":5,"54155":4,"54156":1,"54157":4,"54158":2,"54159":3,"54160":4,"54161":3,"54162":2,"54163":3,"54164":2,"54165":2,"54166":3,"54167":3,"54168":2,"54169":4,"54170":5,"54171":2,"54172":4,"54173":3,"54174":4,"54175":4,"54176":4,"54177":4,"54178":1,"54179":2,"54180":2,"54181":3,"54182":2,"54183":2,"54184":3,"54185":3,"54186":1,"54187":2,"54188":1,"54189":3,"54190":2,"54191":2,"54192":5,"54193":5,"54194":2,"54195":2,"54196":3,"54197":5,"54198":2,"54199":4,"54200":3,"54201":3,"54202":2,"54203":5,"54204":3,"54205":2,"54206":2,"54207":2,"54208":2,"54209":3,"54210":4,"54211":4,"54212":3,"54213":3,"54214":2,"54215":3,"54216":4,"54217":3,"54218":2,"54219":4,"54220":3,"54221":3,"54222":3,"54223":4,"54224":5,"54225":4,"54226":4,"54227":1,"54228":1,"54229":1,"54230":2,"54231":2,"54232":1,"54233":4,"54234":1,"54235":4,"54236":3,"54237":4,"54238":5,"54239":3,"54240":3,"54241":4,"54242":4,"54243":3,"54244":2,"54245":4,"54246":4,"54247":3,"54248":4,"54249":2,"54250":3,"54251":4,"54252":5,"54253":3,"54254":1,"54255":4,"54256":4,"54257":1,"54258":3,"54259":3,"54260":3,"54261":4,"54262":4,"54263":3,"54264":2,"54265":3,"54266":3,"54267":3,"54268":2,"54269":2,"54270":2,"54271":2,"54272":4,"54273":2,"54274":1,"54275":2,"54276":3,"54277":3,"54278":2,"54279":2,"54280":3,"54281":4,"54282":3,"54283":2,"54284":3,"54285":4,"54286":5,"54287":4,"54288":4,"54289":2,"54290":3,"54291":4,"54292":3,"54293":2,"54294":4,"54295":5,"54296":4,"54297":5,"54298":3,"54299":2,"54300":1,"54301":3,"54302":4,"54303":3,"54304":3,"54305":5,"54306":4,"54307":3,"54308":1,"54309":1,"54310":3,"54311":3,"54312":3,"54313":3,"54314":5,"54315":3,"54316":1,"54317":4,"54318":3,"54319":3,"54320":3,"54321":4,"54322":4,"54323":3,"54324":4,"54325":4,"54326":2,"54327":5,"54328":2,"54329":4,"54330":3,"54331":2,"54332":1,"54333":1,"54334":5,"54335":1,"54336":3,"54337":2,"54338":4,"54339":3,"54340":3,"54341":4,"54342":4,"54343":3,"54344":3,"54345":2,"54346":4,"54347":1,"54348":4,"54349":3,"54350":2,"54351":2,"54352":4,"54353":3,"54354":3,"54355":2,"54356":1,"54357":3,"54358":2,"54359":4,"54360":3,"54361":3,"54362":1,"54363":3,"54364":5,"54365":3,"54366":1,"54367":1,"54368":4,"54369":5,"54370":3,"54371":3,"54372":5,"54373":1,"54374":3,"54375":3,"54376":4,"54377":1,"54378":4,"54379":2,"54380":2,"54381":3,"54382":4,"54383":4,"54384":2,"54385":3,"54386":4,"54387":4,"54388":2,"54389":1,"54390":3,"54391":1,"54392":3,"54393":3,"54394":5,"54395":3,"54396":3,"54397":2,"54398":1,"54399":4,"54400":4,"54401":2,"54402":2,"54403":3,"54404":2,"54405":3,"54406":4,"54407":4,"54408":3,"54409":3,"54410":1,"54411":3,"54412":2,"54413":1,"54414":3,"54415":4,"54416":4,"54417":3,"54418":2,"54419":2,"54420":5,"54421":2,"54422":5,"54423":3,"54424":4,"54425":4,"54426":3,"54427":3,"54428":2,"54429":1,"54430":3,"54431":2,"54432":2,"54433":3,"54434":4,"54435":5,"54436":2,"54437":2,"54438":5,"54439":3,"54440":3,"54441":4,"54442":5,"54443":3,"54444":1,"54445":3,"54446":3,"54447":4,"54448":4,"54449":3,"54450":3,"54451":4,"54452":3,"54453":3,"54454":5,"54455":4,"54456":2,"54457":2,"54458":3,"54459":3,"54460":4,"54461":2,"54462":2,"54463":3,"54464":3,"54465":4,"54466":2,"54467":3,"54468":5,"54469":3,"54470":4,"54471":5,"54472":5,"54473":3,"54474":2,"54475":2,"54476":4,"54477":1,"54478":2,"54479":2,"54480":1,"54481":2,"54482":1,"54483":3,"54484":5,"54485":2,"54486":3,"54487":4,"54488":4,"54489":4,"54490":4,"54491":5,"54492":4,"54493":4,"54494":3,"54495":4,"54496":3,"54497":3,"54498":3,"54499":3,"54500":2,"54501":3,"54502":1,"54503":3,"54504":2,"54505":3,"54506":3,"54507":3,"54508":3,"54509":5,"54510":3,"54511":3,"54512":4,"54513":1,"54514":2,"54515":2,"54516":3,"54517":1,"54518":3,"54519":1,"54520":4,"54521":3,"54522":3,"54523":4,"54524":2,"54525":2,"54526":4,"54527":4,"54528":2,"54529":4,"54530":1,"54531":4,"54532":2,"54533":5,"54534":4,"54535":2,"54536":3,"54537":4,"54538":2,"54539":2,"54540":3,"54541":3,"54542":3,"54543":5,"54544":1,"54545":3,"54546":3,"54547":5,"54548":3,"54549":3,"54550":3,"54551":2,"54552":2,"54553":3,"54554":3,"54555":3,"54556":3,"54557":2,"54558":5,"54559":4,"54560":4,"54561":3,"54562":4,"54563":3,"54564":3,"54565":4,"54566":4,"54567":3,"54568":2,"54569":3,"54570":5,"54571":3,"54572":4,"54573":3,"54574":4,"54575":1,"54576":2,"54577":5,"54578":3,"54579":2,"54580":3,"54581":2,"54582":2,"54583":3,"54584":4,"54585":4,"54586":4,"54587":2,"54588":4,"54589":4,"54590":2,"54591":4,"54592":4,"54593":1,"54594":4,"54595":3,"54596":2,"54597":3,"54598":4,"54599":2,"54600":1,"54601":4,"54602":3,"54603":2,"54604":3,"54605":2,"54606":4,"54607":3,"54608":3,"54609":2,"54610":3,"54611":4,"54612":3,"54613":3,"54614":3,"54615":4,"54616":5,"54617":5,"54618":2,"54619":2,"54620":2,"54621":2,"54622":1,"54623":2,"54624":2,"54625":3,"54626":2,"54627":3,"54628":3,"54629":4,"54630":3,"54631":2,"54632":4,"54633":5,"54634":4,"54635":2,"54636":3,"54637":3,"54638":2,"54639":2,"54640":3,"54641":3,"54642":2,"54643":1,"54644":3,"54645":3,"54646":5,"54647":3,"54648":4,"54649":3,"54650":5,"54651":4,"54652":5,"54653":2,"54654":3,"54655":4,"54656":3,"54657":3,"54658":3,"54659":3,"54660":4,"54661":3,"54662":4,"54663":1,"54664":4,"54665":3,"54666":3,"54667":2,"54668":4,"54669":5,"54670":2,"54671":4,"54672":4,"54673":4,"54674":5,"54675":4,"54676":2,"54677":2,"54678":2,"54679":3,"54680":4,"54681":2,"54682":2,"54683":3,"54684":1,"54685":4,"54686":2,"54687":4,"54688":5,"54689":2,"54690":3,"54691":4,"54692":3,"54693":2,"54694":3,"54695":3,"54696":2,"54697":4,"54698":3,"54699":3,"54700":1,"54701":4,"54702":4,"54703":3,"54704":2,"54705":2,"54706":4,"54707":4,"54708":2,"54709":2,"54710":4,"54711":2,"54712":3,"54713":4,"54714":2,"54715":3,"54716":1,"54717":3,"54718":4,"54719":2,"54720":3,"54721":3,"54722":2,"54723":1,"54724":3,"54725":4,"54726":4,"54727":4,"54728":2,"54729":5,"54730":2,"54731":2,"54732":3,"54733":3,"54734":2,"54735":4,"54736":3,"54737":3,"54738":5,"54739":2,"54740":3,"54741":4,"54742":3,"54743":2,"54744":2,"54745":2,"54746":3,"54747":4,"54748":3,"54749":3,"54750":4,"54751":3,"54752":2,"54753":2,"54754":4,"54755":3,"54756":1,"54757":2,"54758":3,"54759":2,"54760":5,"54761":1,"54762":3,"54763":3,"54764":4,"54765":2,"54766":2,"54767":3,"54768":2,"54769":3,"54770":2,"54771":3,"54772":2,"54773":1,"54774":4,"54775":2,"54776":3,"54777":1,"54778":1,"54779":4,"54780":3,"54781":3,"54782":3,"54783":3,"54784":2,"54785":1,"54786":3,"54787":2,"54788":4,"54789":2,"54790":2,"54791":3,"54792":2,"54793":3,"54794":4,"54795":5,"54796":2,"54797":4,"54798":4,"54799":3,"54800":2,"54801":4,"54802":3,"54803":5,"54804":2,"54805":3,"54806":3,"54807":2,"54808":1,"54809":4,"54810":2,"54811":1,"54812":4,"54813":1,"54814":5,"54815":2,"54816":3,"54817":4,"54818":2,"54819":5,"54820":1,"54821":2,"54822":5,"54823":3,"54824":1,"54825":3,"54826":5,"54827":5,"54828":2,"54829":5,"54830":3,"54831":3,"54832":3,"54833":2,"54834":2,"54835":4,"54836":2,"54837":2,"54838":3,"54839":4,"54840":2,"54841":4,"54842":4,"54843":3,"54844":4,"54845":1,"54846":3,"54847":3,"54848":2,"54849":5,"54850":3,"54851":3,"54852":3,"54853":4,"54854":3,"54855":2,"54856":5,"54857":2,"54858":2,"54859":3,"54860":3,"54861":3,"54862":3,"54863":3,"54864":3,"54865":3,"54866":3,"54867":5,"54868":1,"54869":3,"54870":4,"54871":2,"54872":4,"54873":1,"54874":2,"54875":3,"54876":3,"54877":3,"54878":3,"54879":2,"54880":4,"54881":2,"54882":3,"54883":1,"54884":3,"54885":1,"54886":4,"54887":4,"54888":4,"54889":3,"54890":1,"54891":4,"54892":2,"54893":3,"54894":2,"54895":5,"54896":2,"54897":1,"54898":3,"54899":4,"54900":4,"54901":5,"54902":1,"54903":3,"54904":4,"54905":3,"54906":3,"54907":2,"54908":5,"54909":3,"54910":3,"54911":1,"54912":3,"54913":4,"54914":4,"54915":2,"54916":2,"54917":4,"54918":3,"54919":3,"54920":3,"54921":1,"54922":4,"54923":1,"54924":4,"54925":4,"54926":3,"54927":3,"54928":3,"54929":3,"54930":2,"54931":1,"54932":2,"54933":3,"54934":1,"54935":2,"54936":3,"54937":3,"54938":2,"54939":4,"54940":4,"54941":4,"54942":4,"54943":3,"54944":2,"54945":3,"54946":3,"54947":5,"54948":3,"54949":3,"54950":5,"54951":4,"54952":4,"54953":4,"54954":3,"54955":3,"54956":4,"54957":3,"54958":5,"54959":3,"54960":1,"54961":3,"54962":2,"54963":3,"54964":2,"54965":3,"54966":3,"54967":4,"54968":2,"54969":2,"54970":3,"54971":3,"54972":5,"54973":5,"54974":5,"54975":4,"54976":4,"54977":3,"54978":1,"54979":3,"54980":2,"54981":3,"54982":5,"54983":3,"54984":2,"54985":5,"54986":5,"54987":3,"54988":3,"54989":3,"54990":2,"54991":3,"54992":3,"54993":3,"54994":1,"54995":1,"54996":3,"54997":2,"54998":2,"54999":3,"55000":3,"55001":4,"55002":3,"55003":3,"55004":2,"55005":2,"55006":2,"55007":3,"55008":2,"55009":2,"55010":4,"55011":3,"55012":3,"55013":3,"55014":3,"55015":3,"55016":4,"55017":3,"55018":3,"55019":3,"55020":3,"55021":2,"55022":4,"55023":1,"55024":4,"55025":3,"55026":2,"55027":2,"55028":2,"55029":3,"55030":4,"55031":2,"55032":1,"55033":1,"55034":3,"55035":2,"55036":4,"55037":1,"55038":2,"55039":3,"55040":3,"55041":4,"55042":4,"55043":3,"55044":1,"55045":2,"55046":4,"55047":2,"55048":2,"55049":4,"55050":3,"55051":3,"55052":5,"55053":3,"55054":3,"55055":4,"55056":3,"55057":3,"55058":3,"55059":3,"55060":3,"55061":3,"55062":2,"55063":4,"55064":3,"55065":3,"55066":5,"55067":2,"55068":2,"55069":2,"55070":4,"55071":3,"55072":3,"55073":1,"55074":4,"55075":3,"55076":3,"55077":2,"55078":3,"55079":3,"55080":3,"55081":4,"55082":4,"55083":3,"55084":3,"55085":4,"55086":4,"55087":2,"55088":1,"55089":4,"55090":2,"55091":4,"55092":2,"55093":3,"55094":2,"55095":2,"55096":3,"55097":3,"55098":1,"55099":3,"55100":1,"55101":4,"55102":4,"55103":2,"55104":3,"55105":3,"55106":2,"55107":2,"55108":3,"55109":3,"55110":5,"55111":3,"55112":4,"55113":2,"55114":5,"55115":4,"55116":3,"55117":4,"55118":4,"55119":3,"55120":4,"55121":4,"55122":1,"55123":3,"55124":5,"55125":1,"55126":4,"55127":4,"55128":4,"55129":4,"55130":3,"55131":3,"55132":5,"55133":3,"55134":3,"55135":4,"55136":2,"55137":2,"55138":3,"55139":4,"55140":1,"55141":3,"55142":3,"55143":2,"55144":1,"55145":3,"55146":2,"55147":4,"55148":3,"55149":3,"55150":5,"55151":3,"55152":5,"55153":1,"55154":2,"55155":3,"55156":3,"55157":3,"55158":1,"55159":3,"55160":2,"55161":3,"55162":1,"55163":2,"55164":3,"55165":3,"55166":4,"55167":3,"55168":2,"55169":2,"55170":2,"55171":2,"55172":3,"55173":2,"55174":4,"55175":3,"55176":1,"55177":4,"55178":2,"55179":2,"55180":3,"55181":3,"55182":3,"55183":3,"55184":2,"55185":1,"55186":5,"55187":4,"55188":2,"55189":2,"55190":3,"55191":2,"55192":2,"55193":2,"55194":3,"55195":3,"55196":1,"55197":4,"55198":3,"55199":2,"55200":3,"55201":2,"55202":4,"55203":2,"55204":3,"55205":3,"55206":2,"55207":2,"55208":4,"55209":3,"55210":4,"55211":2,"55212":3,"55213":3,"55214":4,"55215":2,"55216":1,"55217":3,"55218":4,"55219":2,"55220":4,"55221":2,"55222":4,"55223":2,"55224":1,"55225":1,"55226":4,"55227":4,"55228":2,"55229":3,"55230":4,"55231":4,"55232":2,"55233":4,"55234":2,"55235":4,"55236":2,"55237":5,"55238":3,"55239":2,"55240":4,"55241":2,"55242":4,"55243":4,"55244":5,"55245":4,"55246":1,"55247":4,"55248":2,"55249":3,"55250":3,"55251":3,"55252":3,"55253":4,"55254":3,"55255":4,"55256":3,"55257":4,"55258":4,"55259":3,"55260":2,"55261":4,"55262":1,"55263":3,"55264":5,"55265":3,"55266":2,"55267":3,"55268":2,"55269":3,"55270":2,"55271":3,"55272":3,"55273":3,"55274":2,"55275":4,"55276":2,"55277":3,"55278":1,"55279":1,"55280":1,"55281":2,"55282":2,"55283":1,"55284":2,"55285":4,"55286":3,"55287":5,"55288":3,"55289":3,"55290":2,"55291":5,"55292":3,"55293":5,"55294":2,"55295":3,"55296":3,"55297":3,"55298":4,"55299":1,"55300":4,"55301":2,"55302":3,"55303":4,"55304":2,"55305":3,"55306":3,"55307":3,"55308":3,"55309":3,"55310":2,"55311":4,"55312":5,"55313":3,"55314":3,"55315":4,"55316":3,"55317":4,"55318":2,"55319":1,"55320":4,"55321":3,"55322":4,"55323":3,"55324":3,"55325":3,"55326":2,"55327":3,"55328":2,"55329":1,"55330":3,"55331":4,"55332":3,"55333":1,"55334":2,"55335":3,"55336":3,"55337":3,"55338":2,"55339":3,"55340":2,"55341":1,"55342":4,"55343":3,"55344":3,"55345":3,"55346":3,"55347":4,"55348":2,"55349":1,"55350":4,"55351":2,"55352":1,"55353":1,"55354":3,"55355":3,"55356":5,"55357":5,"55358":4,"55359":4,"55360":1,"55361":4,"55362":4,"55363":3,"55364":2,"55365":3,"55366":2,"55367":2,"55368":5,"55369":2,"55370":4,"55371":4,"55372":4,"55373":3,"55374":3,"55375":3,"55376":2,"55377":4,"55378":4,"55379":2,"55380":4,"55381":1,"55382":4,"55383":3,"55384":4,"55385":4,"55386":3,"55387":4,"55388":1,"55389":1,"55390":4,"55391":3,"55392":5,"55393":4,"55394":2,"55395":3,"55396":3,"55397":1,"55398":4,"55399":3,"55400":4,"55401":3,"55402":2,"55403":3,"55404":2,"55405":3,"55406":2,"55407":2,"55408":3,"55409":2,"55410":4,"55411":1,"55412":2,"55413":3,"55414":3,"55415":5,"55416":3,"55417":2,"55418":2,"55419":4,"55420":4,"55421":3,"55422":4,"55423":3,"55424":5,"55425":2,"55426":3,"55427":3,"55428":3,"55429":5,"55430":3,"55431":3,"55432":2,"55433":3,"55434":2,"55435":2,"55436":3,"55437":2,"55438":3,"55439":5,"55440":2,"55441":3,"55442":3,"55443":1,"55444":2,"55445":3,"55446":4,"55447":5,"55448":5,"55449":2,"55450":3,"55451":3,"55452":2,"55453":5,"55454":1,"55455":4,"55456":4,"55457":2,"55458":2,"55459":3,"55460":3,"55461":4,"55462":3,"55463":3,"55464":3,"55465":4,"55466":1,"55467":4,"55468":2,"55469":3,"55470":2,"55471":3,"55472":2,"55473":4,"55474":5,"55475":3,"55476":3,"55477":2,"55478":1,"55479":3,"55480":2,"55481":3,"55482":1,"55483":1,"55484":3,"55485":3,"55486":2,"55487":4,"55488":4,"55489":2,"55490":2,"55491":2,"55492":3,"55493":3,"55494":3,"55495":3,"55496":2,"55497":3,"55498":3,"55499":1,"55500":3,"55501":4,"55502":2,"55503":2,"55504":2,"55505":3,"55506":3,"55507":3,"55508":3,"55509":1,"55510":1,"55511":4,"55512":3,"55513":4,"55514":3,"55515":2,"55516":4,"55517":4,"55518":3,"55519":2,"55520":4,"55521":2,"55522":3,"55523":3,"55524":4,"55525":3,"55526":3,"55527":2,"55528":2,"55529":1,"55530":4,"55531":3,"55532":4,"55533":3,"55534":1,"55535":2,"55536":5,"55537":3,"55538":4,"55539":3,"55540":3,"55541":4,"55542":3,"55543":3,"55544":3,"55545":3,"55546":3,"55547":1,"55548":1,"55549":1,"55550":3,"55551":3,"55552":3,"55553":1,"55554":3,"55555":4,"55556":2,"55557":4,"55558":3,"55559":3,"55560":4,"55561":3,"55562":2,"55563":4,"55564":3,"55565":4,"55566":4,"55567":2,"55568":4,"55569":2,"55570":3,"55571":2,"55572":4,"55573":4,"55574":4,"55575":1,"55576":3,"55577":3,"55578":4,"55579":3,"55580":3,"55581":4,"55582":3,"55583":4,"55584":3,"55585":3,"55586":3,"55587":4,"55588":2,"55589":3,"55590":3,"55591":1,"55592":4,"55593":2,"55594":3,"55595":2,"55596":5,"55597":3,"55598":3,"55599":2,"55600":3,"55601":3,"55602":5,"55603":1,"55604":3,"55605":5,"55606":4,"55607":3,"55608":1,"55609":3,"55610":3,"55611":4,"55612":3,"55613":2,"55614":4,"55615":2,"55616":4,"55617":2,"55618":3,"55619":2,"55620":1,"55621":3,"55622":4,"55623":2,"55624":3,"55625":4,"55626":3,"55627":3,"55628":3,"55629":1,"55630":3,"55631":2,"55632":4,"55633":2,"55634":3,"55635":5,"55636":1,"55637":3,"55638":4,"55639":4,"55640":4,"55641":3,"55642":2,"55643":5,"55644":4,"55645":2,"55646":3,"55647":2,"55648":2,"55649":4,"55650":3,"55651":1,"55652":2,"55653":3,"55654":4,"55655":3,"55656":4,"55657":4,"55658":1,"55659":3,"55660":1,"55661":2,"55662":4,"55663":1,"55664":5,"55665":3,"55666":4,"55667":4,"55668":3,"55669":4,"55670":4,"55671":3,"55672":5,"55673":3,"55674":4,"55675":2,"55676":2,"55677":1,"55678":5,"55679":2,"55680":4,"55681":4,"55682":3,"55683":3,"55684":4,"55685":5,"55686":5,"55687":3,"55688":4,"55689":4,"55690":4,"55691":3,"55692":4,"55693":4,"55694":3,"55695":1,"55696":3,"55697":3,"55698":5,"55699":4,"55700":3,"55701":4,"55702":1,"55703":1,"55704":4,"55705":4,"55706":3,"55707":5,"55708":3,"55709":3,"55710":3,"55711":1,"55712":4,"55713":3,"55714":4,"55715":3,"55716":3,"55717":3,"55718":3,"55719":3,"55720":4,"55721":3,"55722":3,"55723":3,"55724":5,"55725":4,"55726":3,"55727":3,"55728":2,"55729":2,"55730":1,"55731":3,"55732":2,"55733":1,"55734":2,"55735":2,"55736":4,"55737":2,"55738":4,"55739":3,"55740":5,"55741":3,"55742":4,"55743":1,"55744":2,"55745":3,"55746":4,"55747":5,"55748":2,"55749":3,"55750":2,"55751":4,"55752":3,"55753":3,"55754":5,"55755":3,"55756":5,"55757":3,"55758":4,"55759":3,"55760":3,"55761":3,"55762":4,"55763":4,"55764":2,"55765":3,"55766":3,"55767":4,"55768":4,"55769":2,"55770":2,"55771":2,"55772":4,"55773":4,"55774":5,"55775":4,"55776":4,"55777":3,"55778":2,"55779":2,"55780":2,"55781":5,"55782":1,"55783":4,"55784":4,"55785":4,"55786":5,"55787":3,"55788":2,"55789":5,"55790":3,"55791":2,"55792":3,"55793":2,"55794":2,"55795":4,"55796":3,"55797":2,"55798":5,"55799":3,"55800":1,"55801":4,"55802":1,"55803":3,"55804":4,"55805":1,"55806":4,"55807":4,"55808":3,"55809":3,"55810":4,"55811":5,"55812":3,"55813":3,"55814":3,"55815":4,"55816":2,"55817":3,"55818":5,"55819":3,"55820":4,"55821":3,"55822":2,"55823":4,"55824":5,"55825":3,"55826":2,"55827":5,"55828":4,"55829":5,"55830":3,"55831":1,"55832":4,"55833":3,"55834":3,"55835":5,"55836":3,"55837":3,"55838":5,"55839":3,"55840":3,"55841":2,"55842":4,"55843":3,"55844":2,"55845":3,"55846":4,"55847":2,"55848":4,"55849":2,"55850":2,"55851":4,"55852":4,"55853":3,"55854":2,"55855":2,"55856":3,"55857":2,"55858":3,"55859":3,"55860":3,"55861":3,"55862":3,"55863":2,"55864":3,"55865":3,"55866":4,"55867":4,"55868":2,"55869":3,"55870":2,"55871":5,"55872":3,"55873":2,"55874":2,"55875":2,"55876":1,"55877":2,"55878":4,"55879":2,"55880":4,"55881":1,"55882":1,"55883":3,"55884":5,"55885":2,"55886":3,"55887":1,"55888":3,"55889":2,"55890":3,"55891":2,"55892":3,"55893":4,"55894":3,"55895":3,"55896":1,"55897":2,"55898":3,"55899":3,"55900":4,"55901":1,"55902":4,"55903":2,"55904":4,"55905":3,"55906":3,"55907":1,"55908":3,"55909":3,"55910":2,"55911":2,"55912":2,"55913":4,"55914":1,"55915":3,"55916":4,"55917":3,"55918":3,"55919":4,"55920":3,"55921":3,"55922":2,"55923":4,"55924":4,"55925":5,"55926":4,"55927":2,"55928":3,"55929":2,"55930":3,"55931":2,"55932":2,"55933":2,"55934":2,"55935":4,"55936":1,"55937":3,"55938":3,"55939":4,"55940":3,"55941":3,"55942":4,"55943":4,"55944":2,"55945":3,"55946":4,"55947":4,"55948":1,"55949":1,"55950":4,"55951":5,"55952":3,"55953":5,"55954":5,"55955":3,"55956":2,"55957":5,"55958":2,"55959":4,"55960":3,"55961":1,"55962":2,"55963":3,"55964":3,"55965":3,"55966":4,"55967":3,"55968":3,"55969":1,"55970":2,"55971":3,"55972":3,"55973":3,"55974":3,"55975":3,"55976":4,"55977":1,"55978":3,"55979":1,"55980":4,"55981":3,"55982":3,"55983":2,"55984":4,"55985":4,"55986":1,"55987":3,"55988":2,"55989":3,"55990":4,"55991":1,"55992":2,"55993":3,"55994":3,"55995":4,"55996":3,"55997":3,"55998":5,"55999":3,"56000":3,"56001":3,"56002":4,"56003":4,"56004":2,"56005":2,"56006":2,"56007":5,"56008":2,"56009":3,"56010":3,"56011":3,"56012":2,"56013":1,"56014":2,"56015":3,"56016":4,"56017":4,"56018":5,"56019":3,"56020":1,"56021":2,"56022":4,"56023":2,"56024":3,"56025":3,"56026":3,"56027":2,"56028":1,"56029":2,"56030":3,"56031":3,"56032":1,"56033":2,"56034":3,"56035":3,"56036":2,"56037":3,"56038":4,"56039":2,"56040":4,"56041":5,"56042":1,"56043":5,"56044":3,"56045":5,"56046":1,"56047":5,"56048":1,"56049":4,"56050":2,"56051":2,"56052":4,"56053":2,"56054":3,"56055":2,"56056":2,"56057":5,"56058":4,"56059":2,"56060":4,"56061":5,"56062":4,"56063":1,"56064":4,"56065":2,"56066":2,"56067":4,"56068":3,"56069":4,"56070":2,"56071":5,"56072":3,"56073":5,"56074":1,"56075":1,"56076":1,"56077":4,"56078":2,"56079":3,"56080":5,"56081":2,"56082":3,"56083":5,"56084":2,"56085":4,"56086":4,"56087":4,"56088":3,"56089":2,"56090":3,"56091":3,"56092":1,"56093":4,"56094":2,"56095":1,"56096":2,"56097":2,"56098":3,"56099":4,"56100":4,"56101":4,"56102":3,"56103":4,"56104":3,"56105":1,"56106":5,"56107":4,"56108":1,"56109":2,"56110":3,"56111":3,"56112":3,"56113":2,"56114":2,"56115":2,"56116":3,"56117":1,"56118":1,"56119":5,"56120":2,"56121":3,"56122":3,"56123":3,"56124":4,"56125":3,"56126":2,"56127":3,"56128":3,"56129":4,"56130":5,"56131":1,"56132":2,"56133":2,"56134":1,"56135":3,"56136":1,"56137":1,"56138":5,"56139":1,"56140":3,"56141":3,"56142":5,"56143":4,"56144":5,"56145":1,"56146":2,"56147":1,"56148":3,"56149":4,"56150":4,"56151":2,"56152":2,"56153":2,"56154":3,"56155":3,"56156":3,"56157":4,"56158":3,"56159":5,"56160":3,"56161":4,"56162":3,"56163":1,"56164":1,"56165":5,"56166":5,"56167":3,"56168":2,"56169":2,"56170":3,"56171":4,"56172":2,"56173":1,"56174":4,"56175":1,"56176":2,"56177":1,"56178":1,"56179":4,"56180":3,"56181":3,"56182":4,"56183":5,"56184":3,"56185":5,"56186":3,"56187":2,"56188":1,"56189":3,"56190":2,"56191":3,"56192":3,"56193":2,"56194":4,"56195":2,"56196":2,"56197":3,"56198":4,"56199":2,"56200":3,"56201":2,"56202":2,"56203":5,"56204":5,"56205":4,"56206":4,"56207":2,"56208":3,"56209":2,"56210":4,"56211":2,"56212":5,"56213":4,"56214":4,"56215":1,"56216":4,"56217":3,"56218":2,"56219":4,"56220":2,"56221":3,"56222":4,"56223":2,"56224":4,"56225":2,"56226":3,"56227":3,"56228":4,"56229":3,"56230":4,"56231":3,"56232":1,"56233":3,"56234":2,"56235":4,"56236":4,"56237":2,"56238":2,"56239":4,"56240":3,"56241":4,"56242":5,"56243":5,"56244":3,"56245":4,"56246":4,"56247":3,"56248":3,"56249":2,"56250":3,"56251":3,"56252":3,"56253":5,"56254":4,"56255":3,"56256":4,"56257":4,"56258":3,"56259":2,"56260":1,"56261":2,"56262":2,"56263":2,"56264":3,"56265":4,"56266":4,"56267":1,"56268":2,"56269":3,"56270":4,"56271":3,"56272":2,"56273":3,"56274":3,"56275":4,"56276":5,"56277":3,"56278":4,"56279":1,"56280":2,"56281":4,"56282":2,"56283":3,"56284":3,"56285":2,"56286":3,"56287":4,"56288":3,"56289":1,"56290":4,"56291":3,"56292":5,"56293":1,"56294":2,"56295":5,"56296":4,"56297":2,"56298":2,"56299":1,"56300":2,"56301":2,"56302":1,"56303":2,"56304":4,"56305":2,"56306":4,"56307":4,"56308":2,"56309":1,"56310":1,"56311":3,"56312":4,"56313":4,"56314":2,"56315":4,"56316":5,"56317":2,"56318":3,"56319":3,"56320":2,"56321":3,"56322":4,"56323":4,"56324":3,"56325":3,"56326":5,"56327":3,"56328":2,"56329":2,"56330":1,"56331":3,"56332":4,"56333":1,"56334":3,"56335":3,"56336":2,"56337":5,"56338":2,"56339":4,"56340":4,"56341":2,"56342":3,"56343":3,"56344":4,"56345":1,"56346":2,"56347":3,"56348":3,"56349":3,"56350":2,"56351":4,"56352":4,"56353":2,"56354":1,"56355":3,"56356":4,"56357":3,"56358":2,"56359":2,"56360":4,"56361":1,"56362":1,"56363":3,"56364":4,"56365":3,"56366":4,"56367":4,"56368":3,"56369":4,"56370":4,"56371":3,"56372":3,"56373":2,"56374":3,"56375":3,"56376":3,"56377":3,"56378":5,"56379":5,"56380":3,"56381":2,"56382":4,"56383":1,"56384":3,"56385":3,"56386":3,"56387":4,"56388":3,"56389":3,"56390":4,"56391":2,"56392":3,"56393":3,"56394":4,"56395":2,"56396":1,"56397":2,"56398":3,"56399":2,"56400":3,"56401":2,"56402":3,"56403":2,"56404":2,"56405":4,"56406":5,"56407":2,"56408":3,"56409":1,"56410":1,"56411":3,"56412":4,"56413":2,"56414":3,"56415":2,"56416":2,"56417":3,"56418":1,"56419":5,"56420":4,"56421":2,"56422":3,"56423":4,"56424":3,"56425":4,"56426":3,"56427":3,"56428":4,"56429":2,"56430":4,"56431":4,"56432":3,"56433":1,"56434":4,"56435":4,"56436":5,"56437":2,"56438":5,"56439":1,"56440":4,"56441":4,"56442":4,"56443":3,"56444":2,"56445":2,"56446":2,"56447":2,"56448":3,"56449":3,"56450":2,"56451":4,"56452":4,"56453":2,"56454":5,"56455":2,"56456":5,"56457":4,"56458":2,"56459":3,"56460":3,"56461":3,"56462":5,"56463":4,"56464":4,"56465":1,"56466":3,"56467":3,"56468":4,"56469":2,"56470":3,"56471":5,"56472":3,"56473":3,"56474":4,"56475":3,"56476":4,"56477":1,"56478":4,"56479":1,"56480":5,"56481":3,"56482":2,"56483":4,"56484":4,"56485":5,"56486":2,"56487":3,"56488":4,"56489":4,"56490":3,"56491":3,"56492":4,"56493":3,"56494":3,"56495":5,"56496":1,"56497":3,"56498":3,"56499":2,"56500":3,"56501":4,"56502":4,"56503":5,"56504":4,"56505":2,"56506":2,"56507":4,"56508":4,"56509":3,"56510":3,"56511":4,"56512":3,"56513":2,"56514":3,"56515":3,"56516":3,"56517":4,"56518":4,"56519":2,"56520":3,"56521":3,"56522":3,"56523":4,"56524":4,"56525":1,"56526":4,"56527":4,"56528":2,"56529":3,"56530":4,"56531":4,"56532":3,"56533":5,"56534":4,"56535":4,"56536":5,"56537":2,"56538":2,"56539":1,"56540":1,"56541":3,"56542":3,"56543":1,"56544":2,"56545":4,"56546":4,"56547":3,"56548":3,"56549":3,"56550":2,"56551":4,"56552":1,"56553":1,"56554":4,"56555":2,"56556":2,"56557":3,"56558":3,"56559":5,"56560":2,"56561":2,"56562":3,"56563":1,"56564":2,"56565":2,"56566":3,"56567":3,"56568":3,"56569":1,"56570":4,"56571":4,"56572":3,"56573":4,"56574":4,"56575":5,"56576":1,"56577":3,"56578":1,"56579":5,"56580":2,"56581":3,"56582":2,"56583":2,"56584":3,"56585":5,"56586":1,"56587":3,"56588":2,"56589":3,"56590":3,"56591":3,"56592":2,"56593":3,"56594":3,"56595":3,"56596":3,"56597":4,"56598":2,"56599":2,"56600":1,"56601":3,"56602":3,"56603":4,"56604":3,"56605":4,"56606":2,"56607":2,"56608":4,"56609":3,"56610":2,"56611":2,"56612":2,"56613":3,"56614":3,"56615":3,"56616":5,"56617":3,"56618":1,"56619":3,"56620":4,"56621":2,"56622":4,"56623":5,"56624":3,"56625":4,"56626":1,"56627":2,"56628":4,"56629":3,"56630":4,"56631":3,"56632":2,"56633":2,"56634":4,"56635":3,"56636":2,"56637":3,"56638":4,"56639":1,"56640":4,"56641":2,"56642":2,"56643":3,"56644":3,"56645":3,"56646":3,"56647":2,"56648":3,"56649":4,"56650":2,"56651":2,"56652":4,"56653":4,"56654":3,"56655":2,"56656":3,"56657":3,"56658":1,"56659":3,"56660":3,"56661":1,"56662":3,"56663":3,"56664":2,"56665":2,"56666":4,"56667":2,"56668":5,"56669":2,"56670":1,"56671":2,"56672":3,"56673":5,"56674":2,"56675":3,"56676":4,"56677":2,"56678":3,"56679":1,"56680":2,"56681":4,"56682":4,"56683":4,"56684":3,"56685":1,"56686":1,"56687":4,"56688":4,"56689":2,"56690":4,"56691":4,"56692":2,"56693":4,"56694":3,"56695":4,"56696":3,"56697":3,"56698":3,"56699":3,"56700":3,"56701":4,"56702":2,"56703":5,"56704":4,"56705":2,"56706":4,"56707":4,"56708":3,"56709":2,"56710":2,"56711":1,"56712":3,"56713":5,"56714":2,"56715":2,"56716":3,"56717":3,"56718":4,"56719":3,"56720":3,"56721":3,"56722":1,"56723":3,"56724":4,"56725":4,"56726":2,"56727":4,"56728":1,"56729":1,"56730":2,"56731":1,"56732":5,"56733":3,"56734":3,"56735":3,"56736":5,"56737":2,"56738":4,"56739":4,"56740":3,"56741":3,"56742":3,"56743":4,"56744":3,"56745":3,"56746":2,"56747":4,"56748":3,"56749":1,"56750":2,"56751":3,"56752":4,"56753":4,"56754":2,"56755":2,"56756":4,"56757":3,"56758":3,"56759":1,"56760":1,"56761":3,"56762":3,"56763":2,"56764":1,"56765":3,"56766":4,"56767":3,"56768":4,"56769":4,"56770":1,"56771":4,"56772":2,"56773":5,"56774":2,"56775":3,"56776":4,"56777":4,"56778":4,"56779":3,"56780":4,"56781":3,"56782":5,"56783":4,"56784":3,"56785":2,"56786":3,"56787":2,"56788":4,"56789":3,"56790":3,"56791":3,"56792":3,"56793":4,"56794":4,"56795":2,"56796":4,"56797":4,"56798":4,"56799":5,"56800":3,"56801":3,"56802":4,"56803":4,"56804":3,"56805":4,"56806":4,"56807":2,"56808":4,"56809":4,"56810":1,"56811":4,"56812":4,"56813":3,"56814":4,"56815":1,"56816":3,"56817":3,"56818":1,"56819":1,"56820":3,"56821":4,"56822":2,"56823":4,"56824":2,"56825":3,"56826":4,"56827":1,"56828":2,"56829":4,"56830":4,"56831":2,"56832":3,"56833":3,"56834":3,"56835":4,"56836":2,"56837":3,"56838":3,"56839":5,"56840":4,"56841":4,"56842":4,"56843":4,"56844":3,"56845":4,"56846":3,"56847":2,"56848":3,"56849":1,"56850":1,"56851":4,"56852":2,"56853":4,"56854":2,"56855":2,"56856":5,"56857":4,"56858":2,"56859":3,"56860":2,"56861":2,"56862":2,"56863":2,"56864":3,"56865":2,"56866":3,"56867":2,"56868":5,"56869":3,"56870":2,"56871":3,"56872":3,"56873":4,"56874":3,"56875":5,"56876":3,"56877":4,"56878":3,"56879":3,"56880":4,"56881":4,"56882":4,"56883":3,"56884":1,"56885":2,"56886":2,"56887":3,"56888":2,"56889":3,"56890":4,"56891":1,"56892":2,"56893":4,"56894":4,"56895":4,"56896":4,"56897":3,"56898":4,"56899":2,"56900":1,"56901":3,"56902":2,"56903":4,"56904":3,"56905":2,"56906":2,"56907":3,"56908":3,"56909":3,"56910":2,"56911":4,"56912":3,"56913":4,"56914":2,"56915":3,"56916":4,"56917":5,"56918":3,"56919":3,"56920":2,"56921":3,"56922":2,"56923":4,"56924":3,"56925":2,"56926":3,"56927":3,"56928":4,"56929":3,"56930":3,"56931":4,"56932":4,"56933":3,"56934":1,"56935":2,"56936":2,"56937":3,"56938":4,"56939":4,"56940":2,"56941":3,"56942":2,"56943":1,"56944":4,"56945":3,"56946":2,"56947":3,"56948":4,"56949":3,"56950":2,"56951":3,"56952":3,"56953":2,"56954":3,"56955":4,"56956":5,"56957":4,"56958":2,"56959":1,"56960":3,"56961":4,"56962":1,"56963":3,"56964":2,"56965":5,"56966":4,"56967":3,"56968":2,"56969":3,"56970":4,"56971":5,"56972":3,"56973":2,"56974":4,"56975":5,"56976":2,"56977":2,"56978":3,"56979":3,"56980":3,"56981":2,"56982":5,"56983":3,"56984":1,"56985":4,"56986":3,"56987":3,"56988":2,"56989":1,"56990":4,"56991":2,"56992":2,"56993":4,"56994":4,"56995":2,"56996":3,"56997":2,"56998":1,"56999":1,"57000":3,"57001":4,"57002":2,"57003":2,"57004":1,"57005":4,"57006":4,"57007":4,"57008":3,"57009":3,"57010":2,"57011":3,"57012":5,"57013":1,"57014":3,"57015":3,"57016":4,"57017":2,"57018":3,"57019":1,"57020":4,"57021":1,"57022":2,"57023":4,"57024":2,"57025":4,"57026":5,"57027":2,"57028":1,"57029":3,"57030":3,"57031":4,"57032":3,"57033":4,"57034":3,"57035":3,"57036":3,"57037":5,"57038":2,"57039":3,"57040":2,"57041":4,"57042":4,"57043":3,"57044":3,"57045":2,"57046":4,"57047":3,"57048":2,"57049":1,"57050":2,"57051":4,"57052":2,"57053":2,"57054":3,"57055":2,"57056":3,"57057":1,"57058":3,"57059":4,"57060":3,"57061":1,"57062":2,"57063":3,"57064":4,"57065":4,"57066":1,"57067":2,"57068":3,"57069":2,"57070":3,"57071":2,"57072":3,"57073":2,"57074":3,"57075":3,"57076":2,"57077":2,"57078":3,"57079":1,"57080":3,"57081":3,"57082":3,"57083":2,"57084":1,"57085":1,"57086":4,"57087":1,"57088":2,"57089":4,"57090":1,"57091":2,"57092":1,"57093":2,"57094":2,"57095":4,"57096":3,"57097":5,"57098":3,"57099":4,"57100":2,"57101":3,"57102":3,"57103":2,"57104":3,"57105":5,"57106":1,"57107":4,"57108":4,"57109":3,"57110":4,"57111":4,"57112":4,"57113":4,"57114":2,"57115":2,"57116":4,"57117":4,"57118":3,"57119":3,"57120":4,"57121":4,"57122":3,"57123":3,"57124":3,"57125":3,"57126":2,"57127":4,"57128":3,"57129":3,"57130":3,"57131":3,"57132":4,"57133":1,"57134":3,"57135":2,"57136":4,"57137":3,"57138":4,"57139":2,"57140":3,"57141":4,"57142":3,"57143":4,"57144":3,"57145":3,"57146":3,"57147":2,"57148":3,"57149":2,"57150":4,"57151":1,"57152":3,"57153":3,"57154":2,"57155":3,"57156":2,"57157":4,"57158":3,"57159":3,"57160":3,"57161":2,"57162":3,"57163":1,"57164":4,"57165":4,"57166":2,"57167":4,"57168":5,"57169":1,"57170":2,"57171":3,"57172":5,"57173":2,"57174":3,"57175":4,"57176":4,"57177":2,"57178":4,"57179":4,"57180":1,"57181":3,"57182":4,"57183":4,"57184":4,"57185":4,"57186":3,"57187":3,"57188":2,"57189":4,"57190":4,"57191":3,"57192":3,"57193":4,"57194":1,"57195":3,"57196":2,"57197":4,"57198":4,"57199":3,"57200":5,"57201":4,"57202":3,"57203":5,"57204":3,"57205":2,"57206":4,"57207":3,"57208":4,"57209":5,"57210":5,"57211":3,"57212":3,"57213":4,"57214":2,"57215":3,"57216":2,"57217":3,"57218":4,"57219":4,"57220":5,"57221":4,"57222":5,"57223":4,"57224":2,"57225":3,"57226":4,"57227":4,"57228":3,"57229":4,"57230":3,"57231":1,"57232":4,"57233":4,"57234":4,"57235":3,"57236":2,"57237":2,"57238":3,"57239":2,"57240":1,"57241":3,"57242":3,"57243":4,"57244":4,"57245":3,"57246":3,"57247":1,"57248":1,"57249":3,"57250":5,"57251":4,"57252":5,"57253":4,"57254":3,"57255":2,"57256":3,"57257":4,"57258":5,"57259":3,"57260":3,"57261":5,"57262":2,"57263":5,"57264":3,"57265":3,"57266":3,"57267":3,"57268":2,"57269":1,"57270":3,"57271":4,"57272":2,"57273":4,"57274":1,"57275":4,"57276":3,"57277":3,"57278":2,"57279":3,"57280":2,"57281":4,"57282":3,"57283":1,"57284":3,"57285":1,"57286":2,"57287":3,"57288":2,"57289":3,"57290":3,"57291":4,"57292":4,"57293":4,"57294":3,"57295":3,"57296":3,"57297":3,"57298":4,"57299":3,"57300":3,"57301":3,"57302":2,"57303":3,"57304":1,"57305":3,"57306":4,"57307":4,"57308":5,"57309":2,"57310":3,"57311":3,"57312":4,"57313":3,"57314":2,"57315":3,"57316":4,"57317":3,"57318":4,"57319":4,"57320":2,"57321":4,"57322":3,"57323":2,"57324":2,"57325":2,"57326":4,"57327":2,"57328":3,"57329":4,"57330":2,"57331":2,"57332":1,"57333":4,"57334":3,"57335":3,"57336":1,"57337":3,"57338":1,"57339":3,"57340":2,"57341":4,"57342":3,"57343":2,"57344":3,"57345":1,"57346":3,"57347":2,"57348":3,"57349":2,"57350":3,"57351":3,"57352":1,"57353":3,"57354":3,"57355":4,"57356":3,"57357":3,"57358":1,"57359":3,"57360":1,"57361":1,"57362":4,"57363":4,"57364":4,"57365":1,"57366":3,"57367":3,"57368":4,"57369":3,"57370":3,"57371":3,"57372":2,"57373":2,"57374":4,"57375":2,"57376":3,"57377":3,"57378":3,"57379":1,"57380":2,"57381":3,"57382":3,"57383":1,"57384":3,"57385":1,"57386":2,"57387":2,"57388":3,"57389":2,"57390":3,"57391":3,"57392":4,"57393":2,"57394":4,"57395":4,"57396":3,"57397":5,"57398":3,"57399":4,"57400":4,"57401":2,"57402":5,"57403":2,"57404":2,"57405":3,"57406":3,"57407":2,"57408":4,"57409":3,"57410":4,"57411":2,"57412":2,"57413":3,"57414":3,"57415":2,"57416":1,"57417":2,"57418":2,"57419":2,"57420":4,"57421":3,"57422":4,"57423":3,"57424":2,"57425":3,"57426":2,"57427":2,"57428":4,"57429":4,"57430":2,"57431":4,"57432":3,"57433":3,"57434":2,"57435":2,"57436":4,"57437":5,"57438":3,"57439":3,"57440":2,"57441":1,"57442":4,"57443":3,"57444":3,"57445":4,"57446":3,"57447":2,"57448":5,"57449":3,"57450":2,"57451":1,"57452":5,"57453":1,"57454":4,"57455":2,"57456":3,"57457":5,"57458":5,"57459":2,"57460":5,"57461":3,"57462":3,"57463":2,"57464":2,"57465":2,"57466":3,"57467":2,"57468":5,"57469":3,"57470":2,"57471":3,"57472":2,"57473":3,"57474":3,"57475":2,"57476":3,"57477":1,"57478":2,"57479":4,"57480":3,"57481":3,"57482":3,"57483":2,"57484":3,"57485":2,"57486":2,"57487":3,"57488":1,"57489":4,"57490":3,"57491":3,"57492":4,"57493":1,"57494":4,"57495":3,"57496":4,"57497":4,"57498":4,"57499":3,"57500":3,"57501":2,"57502":4,"57503":1,"57504":2,"57505":2,"57506":1,"57507":3,"57508":3,"57509":4,"57510":2,"57511":2,"57512":4,"57513":1,"57514":2,"57515":3,"57516":3,"57517":3,"57518":1,"57519":4,"57520":3,"57521":3,"57522":4,"57523":3,"57524":3,"57525":2,"57526":4,"57527":5,"57528":3,"57529":4,"57530":5,"57531":1,"57532":3,"57533":3,"57534":5,"57535":4,"57536":1,"57537":3,"57538":4,"57539":5,"57540":4,"57541":1,"57542":2,"57543":1,"57544":3,"57545":1,"57546":2,"57547":3,"57548":3,"57549":5,"57550":3,"57551":4,"57552":5,"57553":2,"57554":1,"57555":3,"57556":4,"57557":3,"57558":3,"57559":4,"57560":2,"57561":3,"57562":3,"57563":1,"57564":4,"57565":3,"57566":3,"57567":1,"57568":3,"57569":3,"57570":2,"57571":3,"57572":1,"57573":5,"57574":4,"57575":5,"57576":1,"57577":2,"57578":2,"57579":3,"57580":3,"57581":1,"57582":2,"57583":3,"57584":3,"57585":1,"57586":3,"57587":5,"57588":1,"57589":3,"57590":3,"57591":4,"57592":4,"57593":3,"57594":3,"57595":3,"57596":1,"57597":2,"57598":3,"57599":2,"57600":4,"57601":5,"57602":4,"57603":4,"57604":2,"57605":2,"57606":4,"57607":5,"57608":2,"57609":3,"57610":5,"57611":4,"57612":3,"57613":4,"57614":2,"57615":3,"57616":2,"57617":2,"57618":3,"57619":3,"57620":3,"57621":1,"57622":4,"57623":2,"57624":2,"57625":3,"57626":3,"57627":3,"57628":4,"57629":4,"57630":3,"57631":2,"57632":3,"57633":4,"57634":3,"57635":3,"57636":1,"57637":2,"57638":5,"57639":1,"57640":2,"57641":5,"57642":1,"57643":2,"57644":1,"57645":2,"57646":3,"57647":3,"57648":2,"57649":2,"57650":2,"57651":3,"57652":2,"57653":3,"57654":2,"57655":3,"57656":1,"57657":4,"57658":3,"57659":3,"57660":2,"57661":3,"57662":3,"57663":3,"57664":3,"57665":1,"57666":3,"57667":1,"57668":5,"57669":4,"57670":2,"57671":3,"57672":2,"57673":5,"57674":3,"57675":1,"57676":2,"57677":4,"57678":3,"57679":1,"57680":3,"57681":3,"57682":2,"57683":2,"57684":1,"57685":2,"57686":1,"57687":4,"57688":5,"57689":4,"57690":1,"57691":3,"57692":3,"57693":4,"57694":3,"57695":4,"57696":3,"57697":3,"57698":1,"57699":3,"57700":3,"57701":1,"57702":3,"57703":3,"57704":3,"57705":4,"57706":4,"57707":4,"57708":3,"57709":2,"57710":4,"57711":2,"57712":1,"57713":4,"57714":3,"57715":1,"57716":5,"57717":1,"57718":1,"57719":4,"57720":3,"57721":2,"57722":4,"57723":2,"57724":4,"57725":5,"57726":2,"57727":4,"57728":1,"57729":2,"57730":2,"57731":3,"57732":3,"57733":5,"57734":3,"57735":1,"57736":4,"57737":4,"57738":3,"57739":1,"57740":5,"57741":3,"57742":1,"57743":4,"57744":2,"57745":2,"57746":3,"57747":3,"57748":5,"57749":4,"57750":4,"57751":1,"57752":2,"57753":2,"57754":2,"57755":3,"57756":3,"57757":3,"57758":4,"57759":3,"57760":4,"57761":5,"57762":2,"57763":2,"57764":3,"57765":4,"57766":3,"57767":3,"57768":2,"57769":1,"57770":5,"57771":1,"57772":3,"57773":3,"57774":3,"57775":3,"57776":3,"57777":2,"57778":2,"57779":3,"57780":3,"57781":2,"57782":3,"57783":1,"57784":2,"57785":2,"57786":1,"57787":3,"57788":5,"57789":3,"57790":3,"57791":2,"57792":4,"57793":5,"57794":4,"57795":3,"57796":4,"57797":4,"57798":3,"57799":1,"57800":3,"57801":5,"57802":3,"57803":2,"57804":3,"57805":3,"57806":4,"57807":3,"57808":2,"57809":4,"57810":3,"57811":4,"57812":3,"57813":3,"57814":3,"57815":4,"57816":5,"57817":3,"57818":4,"57819":4,"57820":5,"57821":2,"57822":2,"57823":1,"57824":2,"57825":3,"57826":4,"57827":1,"57828":4,"57829":4,"57830":4,"57831":3,"57832":1,"57833":3,"57834":4,"57835":1,"57836":3,"57837":3,"57838":3,"57839":4,"57840":1,"57841":3,"57842":3,"57843":3,"57844":3,"57845":2,"57846":1,"57847":3,"57848":4,"57849":3,"57850":5,"57851":4,"57852":3,"57853":1,"57854":3,"57855":3,"57856":4,"57857":3,"57858":3,"57859":3,"57860":3,"57861":2,"57862":3,"57863":3,"57864":3,"57865":1,"57866":3,"57867":4,"57868":3,"57869":4,"57870":4,"57871":5,"57872":2,"57873":2,"57874":3,"57875":4,"57876":3,"57877":1,"57878":3,"57879":2,"57880":4,"57881":4,"57882":4,"57883":4,"57884":3,"57885":4,"57886":3,"57887":4,"57888":3,"57889":2,"57890":3,"57891":4,"57892":5,"57893":1,"57894":1,"57895":3,"57896":4,"57897":4,"57898":3,"57899":4,"57900":4,"57901":4,"57902":4,"57903":1,"57904":3,"57905":3,"57906":1,"57907":3,"57908":4,"57909":4,"57910":4,"57911":3,"57912":5,"57913":3,"57914":4,"57915":3,"57916":3,"57917":3,"57918":4,"57919":2,"57920":3,"57921":2,"57922":1,"57923":4,"57924":4,"57925":3,"57926":2,"57927":4,"57928":2,"57929":2,"57930":4,"57931":2,"57932":4,"57933":2,"57934":5,"57935":4,"57936":2,"57937":3,"57938":1,"57939":2,"57940":3,"57941":1,"57942":1,"57943":3,"57944":3,"57945":3,"57946":2,"57947":4,"57948":4,"57949":1,"57950":4,"57951":2,"57952":3,"57953":2,"57954":3,"57955":2,"57956":3,"57957":4,"57958":4,"57959":1,"57960":3,"57961":2,"57962":3,"57963":2,"57964":4,"57965":4,"57966":5,"57967":4,"57968":5,"57969":2,"57970":1,"57971":3,"57972":4,"57973":1,"57974":3,"57975":2,"57976":3,"57977":4,"57978":2,"57979":3,"57980":2,"57981":2,"57982":2,"57983":1,"57984":4,"57985":5,"57986":4,"57987":3,"57988":4,"57989":3,"57990":2,"57991":3,"57992":2,"57993":3,"57994":3,"57995":2,"57996":4,"57997":2,"57998":2,"57999":4,"58000":3,"58001":2,"58002":3,"58003":2,"58004":3,"58005":2,"58006":1,"58007":4,"58008":3,"58009":4,"58010":3,"58011":3,"58012":4,"58013":1,"58014":2,"58015":2,"58016":4,"58017":3,"58018":3,"58019":2,"58020":4,"58021":4,"58022":3,"58023":4,"58024":1,"58025":4,"58026":4,"58027":1,"58028":4,"58029":2,"58030":3,"58031":3,"58032":4,"58033":1,"58034":3,"58035":3,"58036":3,"58037":1,"58038":4,"58039":5,"58040":3,"58041":2,"58042":4,"58043":5,"58044":4,"58045":3,"58046":2,"58047":3,"58048":3,"58049":4,"58050":1,"58051":3,"58052":4,"58053":2,"58054":3,"58055":4,"58056":4,"58057":3,"58058":4,"58059":5,"58060":2,"58061":4,"58062":3,"58063":2,"58064":1,"58065":2,"58066":4,"58067":1,"58068":1,"58069":1,"58070":4,"58071":1,"58072":3,"58073":3,"58074":3,"58075":4,"58076":3,"58077":4,"58078":3,"58079":4,"58080":1,"58081":5,"58082":2,"58083":2,"58084":1,"58085":1,"58086":4,"58087":4,"58088":4,"58089":2,"58090":3,"58091":4,"58092":2,"58093":3,"58094":3,"58095":4,"58096":3,"58097":5,"58098":5,"58099":4,"58100":3,"58101":3,"58102":3,"58103":3,"58104":3,"58105":3,"58106":3,"58107":4,"58108":3,"58109":4,"58110":3,"58111":4,"58112":3,"58113":1,"58114":3,"58115":3,"58116":4,"58117":4,"58118":4,"58119":3,"58120":3,"58121":4,"58122":4,"58123":3,"58124":5,"58125":2,"58126":4,"58127":3,"58128":4,"58129":3,"58130":4,"58131":3,"58132":2,"58133":4,"58134":3,"58135":4,"58136":3,"58137":4,"58138":3,"58139":1,"58140":4,"58141":2,"58142":2,"58143":4,"58144":4,"58145":2,"58146":4,"58147":2,"58148":3,"58149":3,"58150":5,"58151":3,"58152":3,"58153":3,"58154":5,"58155":3,"58156":3,"58157":2,"58158":4,"58159":3,"58160":1,"58161":3,"58162":3,"58163":3,"58164":2,"58165":4,"58166":1,"58167":2,"58168":3,"58169":2,"58170":4,"58171":1,"58172":2,"58173":3,"58174":4,"58175":2,"58176":3,"58177":3,"58178":5,"58179":2,"58180":1,"58181":3,"58182":4,"58183":4,"58184":3,"58185":1,"58186":3,"58187":4,"58188":3,"58189":3,"58190":3,"58191":2,"58192":3,"58193":3,"58194":3,"58195":2,"58196":3,"58197":4,"58198":4,"58199":4,"58200":3,"58201":5,"58202":1,"58203":4,"58204":2,"58205":1,"58206":2,"58207":4,"58208":3,"58209":1,"58210":3,"58211":2,"58212":2,"58213":4,"58214":4,"58215":5,"58216":2,"58217":3,"58218":4,"58219":4,"58220":3,"58221":3,"58222":3,"58223":2,"58224":1,"58225":5,"58226":4,"58227":4,"58228":3,"58229":4,"58230":4,"58231":2,"58232":1,"58233":3,"58234":2,"58235":2,"58236":4,"58237":4,"58238":4,"58239":3,"58240":5,"58241":3,"58242":3,"58243":3,"58244":2,"58245":2,"58246":4,"58247":4,"58248":4,"58249":1,"58250":4,"58251":2,"58252":3,"58253":1,"58254":2,"58255":4,"58256":3,"58257":1,"58258":2,"58259":1,"58260":5,"58261":4,"58262":5,"58263":2,"58264":4,"58265":3,"58266":5,"58267":3,"58268":2,"58269":4,"58270":4,"58271":3,"58272":4,"58273":4,"58274":4,"58275":4,"58276":2,"58277":4,"58278":3,"58279":3,"58280":2,"58281":2,"58282":4,"58283":2,"58284":1,"58285":1,"58286":2,"58287":2,"58288":3,"58289":4,"58290":2,"58291":4,"58292":3,"58293":4,"58294":2,"58295":1,"58296":4,"58297":4,"58298":1,"58299":5,"58300":3,"58301":4,"58302":2,"58303":4,"58304":4,"58305":1,"58306":1,"58307":3,"58308":3,"58309":5,"58310":4,"58311":2,"58312":3,"58313":3,"58314":3,"58315":2,"58316":2,"58317":1,"58318":5,"58319":3,"58320":3,"58321":4,"58322":2,"58323":5,"58324":3,"58325":2,"58326":3,"58327":2,"58328":3,"58329":4,"58330":4,"58331":1,"58332":3,"58333":3,"58334":1,"58335":4,"58336":4,"58337":4,"58338":2,"58339":3,"58340":1,"58341":5,"58342":5,"58343":3,"58344":2,"58345":1,"58346":3,"58347":3,"58348":4,"58349":3,"58350":1,"58351":1,"58352":3,"58353":2,"58354":2,"58355":5,"58356":2,"58357":3,"58358":2,"58359":3,"58360":3,"58361":3,"58362":4,"58363":3,"58364":3,"58365":2,"58366":3,"58367":3,"58368":3,"58369":3,"58370":5,"58371":3,"58372":2,"58373":3,"58374":3,"58375":3,"58376":3,"58377":3,"58378":2,"58379":3,"58380":2,"58381":4,"58382":2,"58383":4,"58384":3,"58385":3,"58386":4,"58387":2,"58388":3,"58389":4,"58390":3,"58391":4,"58392":4,"58393":4,"58394":4,"58395":3,"58396":4,"58397":4,"58398":2,"58399":3,"58400":3,"58401":3,"58402":3,"58403":4,"58404":2,"58405":2,"58406":4,"58407":2,"58408":1,"58409":4,"58410":4,"58411":4,"58412":2,"58413":2,"58414":5,"58415":5,"58416":5,"58417":3,"58418":3,"58419":1,"58420":3,"58421":5,"58422":5,"58423":5,"58424":4,"58425":2,"58426":4,"58427":5,"58428":3,"58429":3,"58430":3,"58431":1,"58432":1,"58433":3,"58434":4,"58435":3,"58436":1,"58437":3,"58438":1,"58439":3,"58440":5,"58441":4,"58442":3,"58443":1,"58444":2,"58445":4,"58446":3,"58447":5,"58448":2,"58449":3,"58450":3,"58451":3,"58452":2,"58453":4,"58454":2,"58455":3,"58456":4,"58457":3,"58458":3,"58459":3,"58460":3,"58461":3,"58462":2,"58463":2,"58464":3,"58465":3,"58466":2,"58467":4,"58468":5,"58469":2,"58470":2,"58471":3,"58472":2,"58473":3,"58474":2,"58475":3,"58476":4,"58477":4,"58478":3,"58479":4,"58480":5,"58481":2,"58482":3,"58483":4,"58484":3,"58485":2,"58486":5,"58487":3,"58488":2,"58489":1,"58490":1,"58491":1,"58492":1,"58493":4,"58494":4,"58495":5,"58496":3,"58497":3,"58498":2,"58499":1,"58500":2,"58501":1,"58502":2,"58503":4,"58504":2,"58505":3,"58506":3,"58507":3,"58508":3,"58509":3,"58510":2,"58511":2,"58512":3,"58513":1,"58514":5,"58515":1,"58516":4,"58517":3,"58518":3,"58519":4,"58520":3,"58521":4,"58522":3,"58523":1,"58524":3,"58525":1,"58526":3,"58527":4,"58528":4,"58529":2,"58530":3,"58531":4,"58532":2,"58533":2,"58534":1,"58535":4,"58536":3,"58537":1,"58538":2,"58539":3,"58540":1,"58541":2,"58542":2,"58543":4,"58544":4,"58545":3,"58546":4,"58547":3,"58548":3,"58549":3,"58550":3,"58551":4,"58552":2,"58553":5,"58554":3,"58555":5,"58556":2,"58557":3,"58558":3,"58559":3,"58560":2,"58561":3,"58562":2,"58563":3,"58564":2,"58565":2,"58566":3,"58567":3,"58568":3,"58569":5,"58570":4,"58571":4,"58572":3,"58573":4,"58574":3,"58575":3,"58576":3,"58577":3,"58578":4,"58579":4,"58580":3,"58581":2,"58582":5,"58583":4,"58584":1,"58585":2,"58586":3,"58587":4,"58588":1,"58589":1,"58590":2,"58591":4,"58592":5,"58593":4,"58594":3,"58595":2,"58596":4,"58597":4,"58598":4,"58599":2,"58600":1,"58601":4,"58602":3,"58603":3,"58604":4,"58605":4,"58606":5,"58607":4,"58608":3,"58609":4,"58610":2,"58611":3,"58612":1,"58613":1,"58614":4,"58615":4,"58616":3,"58617":2,"58618":4,"58619":3,"58620":3,"58621":3,"58622":2,"58623":3,"58624":1,"58625":2,"58626":3,"58627":1,"58628":5,"58629":3,"58630":2,"58631":4,"58632":1,"58633":2,"58634":3,"58635":5,"58636":3,"58637":4,"58638":2,"58639":4,"58640":1,"58641":4,"58642":3,"58643":2,"58644":5,"58645":4,"58646":3,"58647":3,"58648":4,"58649":4,"58650":2,"58651":4,"58652":4,"58653":2,"58654":3,"58655":4,"58656":2,"58657":4,"58658":3,"58659":2,"58660":3,"58661":4,"58662":5,"58663":2,"58664":4,"58665":3,"58666":4,"58667":2,"58668":2,"58669":2,"58670":1,"58671":4,"58672":5,"58673":3,"58674":2,"58675":2,"58676":2,"58677":4,"58678":4,"58679":3,"58680":2,"58681":3,"58682":2,"58683":2,"58684":3,"58685":2,"58686":2,"58687":4,"58688":2,"58689":3,"58690":3,"58691":4,"58692":2,"58693":5,"58694":3,"58695":2,"58696":5,"58697":1,"58698":5,"58699":1,"58700":3,"58701":2,"58702":3,"58703":2,"58704":3,"58705":4,"58706":2,"58707":3,"58708":2,"58709":4,"58710":3,"58711":2,"58712":2,"58713":2,"58714":3,"58715":4,"58716":2,"58717":3,"58718":4,"58719":4,"58720":3,"58721":3,"58722":3,"58723":3,"58724":5,"58725":2,"58726":3,"58727":5,"58728":3,"58729":2,"58730":1,"58731":4,"58732":3,"58733":2,"58734":2,"58735":2,"58736":2,"58737":3,"58738":3,"58739":3,"58740":4,"58741":1,"58742":4,"58743":3,"58744":2,"58745":1,"58746":2,"58747":3,"58748":4,"58749":4,"58750":3,"58751":4,"58752":3,"58753":3,"58754":2,"58755":3,"58756":3,"58757":4,"58758":4,"58759":3,"58760":4,"58761":1,"58762":3,"58763":5,"58764":3,"58765":3,"58766":3,"58767":1,"58768":4,"58769":3,"58770":3,"58771":3,"58772":5,"58773":4,"58774":3,"58775":4,"58776":2,"58777":4,"58778":4,"58779":1,"58780":4,"58781":2,"58782":1,"58783":4,"58784":4,"58785":3,"58786":2,"58787":3,"58788":2,"58789":2,"58790":4,"58791":3,"58792":2,"58793":1,"58794":4,"58795":4,"58796":5,"58797":4,"58798":3,"58799":4,"58800":3,"58801":5,"58802":3,"58803":3,"58804":3,"58805":3,"58806":1,"58807":4,"58808":4,"58809":3,"58810":4,"58811":2,"58812":5,"58813":2,"58814":3,"58815":4,"58816":4,"58817":4,"58818":3,"58819":5,"58820":3,"58821":4,"58822":5,"58823":3,"58824":4,"58825":3,"58826":4,"58827":5,"58828":1,"58829":4,"58830":4,"58831":3,"58832":3,"58833":3,"58834":3,"58835":4,"58836":3,"58837":3,"58838":3,"58839":1,"58840":2,"58841":1,"58842":5,"58843":4,"58844":4,"58845":2,"58846":3,"58847":3,"58848":4,"58849":5,"58850":2,"58851":3,"58852":2,"58853":3,"58854":4,"58855":4,"58856":2,"58857":1,"58858":3,"58859":2,"58860":2,"58861":2,"58862":3,"58863":4,"58864":2,"58865":1,"58866":3,"58867":3,"58868":3,"58869":2,"58870":5,"58871":4,"58872":3,"58873":3,"58874":3,"58875":3,"58876":3,"58877":3,"58878":2,"58879":4,"58880":3,"58881":4,"58882":1,"58883":4,"58884":2,"58885":4,"58886":4,"58887":1,"58888":3,"58889":2,"58890":4,"58891":3,"58892":1,"58893":2,"58894":2,"58895":3,"58896":4,"58897":5,"58898":3,"58899":3,"58900":3,"58901":4,"58902":5,"58903":1,"58904":3,"58905":1,"58906":3,"58907":4,"58908":3,"58909":3,"58910":3,"58911":3,"58912":3,"58913":3,"58914":4,"58915":2,"58916":3,"58917":2,"58918":3,"58919":3,"58920":3,"58921":4,"58922":2,"58923":2,"58924":4,"58925":3,"58926":5,"58927":3,"58928":5,"58929":1,"58930":4,"58931":3,"58932":3,"58933":4,"58934":2,"58935":1,"58936":2,"58937":3,"58938":5,"58939":3,"58940":5,"58941":3,"58942":2,"58943":3,"58944":3,"58945":2,"58946":2,"58947":3,"58948":4,"58949":1,"58950":3,"58951":3,"58952":3,"58953":4,"58954":3,"58955":2,"58956":5,"58957":3,"58958":3,"58959":2,"58960":3,"58961":2,"58962":3,"58963":1,"58964":3,"58965":1,"58966":5,"58967":5,"58968":4,"58969":4,"58970":3,"58971":1,"58972":2,"58973":4,"58974":5,"58975":2,"58976":2,"58977":4,"58978":4,"58979":4,"58980":3,"58981":2,"58982":4,"58983":3,"58984":3,"58985":2,"58986":4,"58987":2,"58988":4,"58989":1,"58990":2,"58991":3,"58992":1,"58993":3,"58994":1,"58995":3,"58996":3,"58997":5,"58998":1,"58999":3,"59000":3,"59001":2,"59002":2,"59003":2,"59004":1,"59005":3,"59006":4,"59007":4,"59008":4,"59009":4,"59010":2,"59011":3,"59012":2,"59013":4,"59014":2,"59015":3,"59016":3,"59017":4,"59018":5,"59019":2,"59020":4,"59021":4,"59022":2,"59023":4,"59024":3,"59025":3,"59026":2,"59027":1,"59028":2,"59029":3,"59030":3,"59031":3,"59032":3,"59033":5,"59034":4,"59035":2,"59036":4,"59037":4,"59038":5,"59039":3,"59040":4,"59041":1,"59042":3,"59043":4,"59044":4,"59045":4,"59046":4,"59047":5,"59048":1,"59049":4,"59050":2,"59051":4,"59052":2,"59053":3,"59054":3,"59055":3,"59056":1,"59057":3,"59058":5,"59059":4,"59060":2,"59061":2,"59062":2,"59063":3,"59064":2,"59065":2,"59066":2,"59067":4,"59068":1,"59069":2,"59070":3,"59071":4,"59072":3,"59073":4,"59074":3,"59075":3,"59076":4,"59077":4,"59078":3,"59079":2,"59080":4,"59081":4,"59082":3,"59083":5,"59084":3,"59085":3,"59086":4,"59087":2,"59088":2,"59089":3,"59090":3,"59091":2,"59092":3,"59093":1,"59094":5,"59095":3,"59096":2,"59097":1,"59098":5,"59099":2,"59100":3,"59101":3,"59102":1,"59103":4,"59104":3,"59105":4,"59106":4,"59107":3,"59108":3,"59109":3,"59110":3,"59111":4,"59112":1,"59113":4,"59114":1,"59115":1,"59116":4,"59117":2,"59118":2,"59119":2,"59120":3,"59121":3,"59122":3,"59123":3,"59124":3,"59125":4,"59126":3,"59127":1,"59128":2,"59129":1,"59130":3,"59131":1,"59132":3,"59133":4,"59134":2,"59135":4,"59136":3,"59137":4,"59138":3,"59139":5,"59140":2,"59141":2,"59142":4,"59143":2,"59144":1,"59145":4,"59146":4,"59147":3,"59148":4,"59149":3,"59150":4,"59151":1,"59152":2,"59153":3,"59154":3,"59155":2,"59156":3,"59157":2,"59158":3,"59159":4,"59160":4,"59161":5,"59162":5,"59163":3,"59164":3,"59165":4,"59166":4,"59167":4,"59168":1,"59169":4,"59170":4,"59171":3,"59172":3,"59173":2,"59174":4,"59175":2,"59176":1,"59177":3,"59178":3,"59179":2,"59180":2,"59181":3,"59182":4,"59183":3,"59184":4,"59185":4,"59186":3,"59187":3,"59188":4,"59189":3,"59190":3,"59191":3,"59192":4,"59193":1,"59194":4,"59195":2,"59196":1,"59197":2,"59198":2,"59199":5,"59200":3,"59201":5,"59202":1,"59203":2,"59204":4,"59205":4,"59206":3,"59207":2,"59208":2,"59209":1,"59210":3,"59211":4,"59212":3,"59213":3,"59214":2,"59215":4,"59216":3,"59217":1,"59218":2,"59219":2,"59220":1,"59221":4,"59222":3,"59223":4,"59224":3,"59225":2,"59226":3,"59227":2,"59228":3,"59229":3,"59230":2,"59231":4,"59232":4,"59233":2,"59234":2,"59235":4,"59236":3,"59237":4,"59238":2,"59239":3,"59240":4,"59241":3,"59242":3,"59243":3,"59244":4,"59245":1,"59246":3,"59247":3,"59248":5,"59249":4,"59250":1,"59251":3,"59252":3,"59253":3,"59254":1,"59255":4,"59256":2,"59257":2,"59258":3,"59259":2,"59260":2,"59261":2,"59262":3,"59263":3,"59264":4,"59265":2,"59266":2,"59267":2,"59268":3,"59269":2,"59270":3,"59271":1,"59272":1,"59273":4,"59274":2,"59275":5,"59276":4,"59277":3,"59278":2,"59279":2,"59280":2,"59281":4,"59282":3,"59283":4,"59284":2,"59285":3,"59286":3,"59287":2,"59288":4,"59289":3,"59290":3,"59291":2,"59292":4,"59293":4,"59294":4,"59295":2,"59296":3,"59297":3,"59298":4,"59299":4,"59300":1,"59301":4,"59302":3,"59303":4,"59304":3,"59305":3,"59306":5,"59307":3,"59308":4,"59309":2,"59310":5,"59311":2,"59312":4,"59313":2,"59314":1,"59315":2,"59316":2,"59317":3,"59318":4,"59319":4,"59320":3,"59321":4,"59322":3,"59323":3,"59324":3,"59325":3,"59326":2,"59327":3,"59328":3,"59329":3,"59330":2,"59331":3,"59332":2,"59333":4,"59334":3,"59335":3,"59336":4,"59337":3,"59338":4,"59339":3,"59340":2,"59341":4,"59342":3,"59343":4,"59344":3,"59345":1,"59346":4,"59347":1,"59348":4,"59349":3,"59350":3,"59351":1,"59352":3,"59353":4,"59354":4,"59355":3,"59356":2,"59357":3,"59358":3,"59359":2,"59360":4,"59361":5,"59362":3,"59363":3,"59364":3,"59365":4,"59366":3,"59367":2,"59368":4,"59369":1,"59370":4,"59371":2,"59372":4,"59373":3,"59374":3,"59375":3,"59376":4,"59377":1,"59378":4,"59379":3,"59380":5,"59381":3,"59382":3,"59383":4,"59384":3,"59385":3,"59386":3,"59387":3,"59388":3,"59389":3,"59390":3,"59391":4,"59392":2,"59393":3,"59394":4,"59395":4,"59396":3,"59397":3,"59398":1,"59399":3,"59400":2,"59401":2,"59402":2,"59403":1,"59404":4,"59405":2,"59406":2,"59407":3,"59408":4,"59409":4,"59410":3,"59411":4,"59412":3,"59413":3,"59414":4,"59415":5,"59416":2,"59417":4,"59418":3,"59419":4,"59420":3,"59421":3,"59422":2,"59423":3,"59424":3,"59425":3,"59426":3,"59427":1,"59428":2,"59429":4,"59430":1,"59431":3,"59432":3,"59433":3,"59434":5,"59435":1,"59436":3,"59437":1,"59438":1,"59439":4,"59440":2,"59441":3,"59442":4,"59443":2,"59444":4,"59445":2,"59446":4,"59447":3,"59448":3,"59449":4,"59450":2,"59451":4,"59452":3,"59453":3,"59454":5,"59455":3,"59456":4,"59457":3,"59458":2,"59459":2,"59460":2,"59461":4,"59462":2,"59463":5,"59464":3,"59465":2,"59466":4,"59467":3,"59468":1,"59469":3,"59470":3,"59471":2,"59472":3,"59473":4,"59474":3,"59475":1,"59476":3,"59477":3,"59478":3,"59479":3,"59480":3,"59481":3,"59482":3,"59483":2,"59484":5,"59485":4,"59486":3,"59487":3,"59488":4,"59489":5,"59490":3,"59491":3,"59492":1,"59493":2,"59494":4,"59495":2,"59496":3,"59497":4,"59498":2,"59499":3,"59500":4,"59501":1,"59502":3,"59503":3,"59504":5,"59505":4,"59506":3,"59507":4,"59508":3,"59509":3,"59510":2,"59511":5,"59512":4,"59513":2,"59514":3,"59515":2,"59516":3,"59517":1,"59518":4,"59519":1,"59520":2,"59521":2,"59522":2,"59523":2,"59524":3,"59525":3,"59526":4,"59527":3,"59528":2,"59529":4,"59530":2,"59531":3,"59532":1,"59533":3,"59534":4,"59535":3,"59536":5,"59537":4,"59538":3,"59539":2,"59540":4,"59541":5,"59542":4,"59543":4,"59544":4,"59545":3,"59546":2,"59547":4,"59548":3,"59549":3,"59550":2,"59551":2,"59552":5,"59553":4,"59554":1,"59555":3,"59556":3,"59557":3,"59558":3,"59559":3,"59560":2,"59561":2,"59562":1,"59563":3,"59564":2,"59565":2,"59566":2,"59567":2,"59568":4,"59569":2,"59570":3,"59571":4,"59572":1,"59573":1,"59574":2,"59575":3,"59576":4,"59577":3,"59578":4,"59579":2,"59580":3,"59581":1,"59582":4,"59583":4,"59584":4,"59585":2,"59586":5,"59587":4,"59588":3,"59589":3,"59590":4,"59591":1,"59592":5,"59593":4,"59594":4,"59595":3,"59596":5,"59597":4,"59598":3,"59599":4,"59600":1,"59601":2,"59602":3,"59603":2,"59604":3,"59605":4,"59606":2,"59607":3,"59608":3,"59609":3,"59610":3,"59611":2,"59612":4,"59613":4,"59614":3,"59615":4,"59616":3,"59617":3,"59618":4,"59619":3,"59620":4,"59621":4,"59622":3,"59623":3,"59624":2,"59625":3,"59626":2,"59627":4,"59628":4,"59629":2,"59630":1,"59631":2,"59632":1,"59633":2,"59634":2,"59635":3,"59636":2,"59637":1,"59638":4,"59639":3,"59640":3,"59641":3,"59642":3,"59643":2,"59644":4,"59645":3,"59646":3,"59647":3,"59648":3,"59649":3,"59650":2,"59651":2,"59652":2,"59653":1,"59654":2,"59655":4,"59656":4,"59657":3,"59658":4,"59659":3,"59660":3,"59661":4,"59662":3,"59663":4,"59664":5,"59665":2,"59666":2,"59667":3,"59668":2,"59669":4,"59670":3,"59671":4,"59672":3,"59673":3,"59674":3,"59675":3,"59676":5,"59677":3,"59678":3,"59679":4,"59680":2,"59681":3,"59682":5,"59683":3,"59684":3,"59685":2,"59686":3,"59687":4,"59688":4,"59689":1,"59690":2,"59691":3,"59692":5,"59693":4,"59694":4,"59695":1,"59696":3,"59697":2,"59698":4,"59699":4,"59700":3,"59701":3,"59702":1,"59703":3,"59704":4,"59705":1,"59706":4,"59707":3,"59708":3,"59709":3,"59710":2,"59711":5,"59712":4,"59713":4,"59714":4,"59715":4,"59716":2,"59717":3,"59718":4,"59719":2,"59720":3,"59721":4,"59722":5,"59723":2,"59724":4,"59725":4,"59726":1,"59727":5,"59728":4,"59729":1,"59730":4,"59731":3,"59732":5,"59733":5,"59734":2,"59735":2,"59736":3,"59737":2,"59738":4,"59739":4,"59740":5,"59741":1,"59742":3,"59743":3,"59744":2,"59745":5,"59746":5,"59747":3,"59748":3,"59749":3,"59750":1,"59751":2,"59752":3,"59753":4,"59754":3,"59755":3,"59756":3,"59757":4,"59758":3,"59759":4,"59760":3,"59761":2,"59762":4,"59763":3,"59764":3,"59765":3,"59766":5,"59767":2,"59768":2,"59769":4,"59770":4,"59771":4,"59772":1,"59773":4,"59774":4,"59775":1,"59776":3,"59777":3,"59778":1,"59779":3,"59780":4,"59781":5,"59782":4,"59783":4,"59784":3,"59785":4,"59786":3,"59787":3,"59788":4,"59789":2,"59790":3,"59791":4,"59792":5,"59793":1,"59794":4,"59795":3,"59796":5,"59797":2,"59798":3,"59799":3,"59800":2,"59801":5,"59802":3,"59803":3,"59804":1,"59805":2,"59806":3,"59807":4,"59808":3,"59809":4,"59810":3,"59811":2,"59812":2,"59813":4,"59814":1,"59815":2,"59816":3,"59817":3,"59818":2,"59819":2,"59820":2,"59821":4,"59822":3,"59823":3,"59824":4,"59825":5,"59826":3,"59827":2,"59828":2,"59829":2,"59830":4,"59831":4,"59832":2,"59833":2,"59834":2,"59835":4,"59836":5,"59837":5,"59838":1,"59839":4,"59840":2,"59841":1,"59842":3,"59843":3,"59844":4,"59845":3,"59846":1,"59847":3,"59848":3,"59849":3,"59850":4,"59851":4,"59852":4,"59853":4,"59854":3,"59855":4,"59856":4,"59857":2,"59858":4,"59859":5,"59860":5,"59861":4,"59862":5,"59863":4,"59864":4,"59865":2,"59866":3,"59867":2,"59868":5,"59869":3,"59870":1,"59871":2,"59872":3,"59873":3,"59874":3,"59875":4,"59876":1,"59877":3,"59878":4,"59879":4,"59880":4,"59881":1,"59882":3,"59883":4,"59884":3,"59885":3,"59886":3,"59887":4,"59888":3,"59889":1,"59890":3,"59891":4,"59892":2,"59893":2,"59894":4,"59895":2,"59896":1,"59897":2,"59898":1,"59899":4,"59900":4,"59901":3,"59902":3,"59903":3,"59904":3,"59905":4,"59906":4,"59907":4,"59908":5,"59909":5,"59910":3,"59911":3,"59912":2,"59913":4,"59914":3,"59915":4,"59916":3,"59917":1,"59918":4,"59919":3,"59920":4,"59921":4,"59922":3,"59923":2,"59924":1,"59925":3,"59926":1,"59927":4,"59928":4,"59929":3,"59930":3,"59931":3,"59932":2,"59933":1,"59934":3,"59935":4,"59936":4,"59937":2,"59938":3,"59939":4,"59940":5,"59941":3,"59942":3,"59943":4,"59944":3,"59945":4,"59946":2,"59947":1,"59948":2,"59949":4,"59950":2,"59951":3,"59952":4,"59953":2,"59954":3,"59955":3,"59956":3,"59957":4,"59958":3,"59959":4,"59960":5,"59961":2,"59962":4,"59963":3,"59964":2,"59965":2,"59966":4,"59967":2,"59968":4,"59969":4,"59970":2,"59971":3,"59972":3,"59973":3,"59974":4,"59975":1,"59976":4,"59977":3,"59978":3,"59979":4,"59980":3,"59981":3,"59982":2,"59983":2,"59984":4,"59985":4,"59986":4,"59987":4,"59988":4,"59989":3,"59990":4,"59991":5,"59992":5,"59993":3,"59994":5,"59995":2,"59996":3,"59997":4,"59998":3,"59999":3,"60000":4,"60001":2,"60002":1,"60003":4,"60004":4,"60005":3,"60006":2,"60007":3,"60008":3,"60009":1,"60010":3,"60011":3,"60012":1,"60013":3,"60014":4,"60015":2,"60016":4,"60017":3,"60018":2,"60019":5,"60020":4,"60021":5,"60022":4,"60023":4,"60024":2,"60025":1,"60026":2,"60027":3,"60028":3,"60029":2,"60030":2,"60031":4,"60032":3,"60033":3,"60034":3,"60035":3,"60036":2,"60037":4,"60038":4,"60039":4,"60040":3,"60041":3,"60042":2,"60043":4,"60044":5,"60045":2,"60046":2,"60047":5,"60048":4,"60049":3,"60050":2,"60051":2,"60052":4,"60053":2,"60054":3,"60055":2,"60056":2,"60057":3,"60058":4,"60059":4,"60060":3,"60061":5,"60062":4,"60063":4,"60064":3,"60065":4,"60066":5,"60067":2,"60068":3,"60069":3,"60070":5,"60071":3,"60072":4,"60073":2,"60074":2,"60075":2,"60076":2,"60077":2,"60078":2,"60079":3,"60080":3,"60081":5,"60082":3,"60083":1,"60084":3,"60085":3,"60086":2,"60087":1,"60088":4,"60089":3,"60090":4,"60091":3,"60092":3,"60093":3,"60094":3,"60095":1,"60096":1,"60097":3,"60098":3,"60099":3,"60100":3,"60101":2,"60102":5,"60103":2,"60104":3,"60105":2,"60106":1,"60107":3,"60108":3,"60109":3,"60110":5,"60111":2,"60112":1,"60113":3,"60114":4,"60115":3,"60116":3,"60117":1,"60118":3,"60119":4,"60120":3,"60121":3,"60122":4,"60123":2,"60124":3,"60125":3,"60126":3,"60127":3,"60128":4,"60129":3,"60130":5,"60131":4,"60132":4,"60133":3,"60134":3,"60135":5,"60136":4,"60137":3,"60138":2,"60139":2,"60140":1,"60141":3,"60142":1,"60143":2,"60144":2,"60145":5,"60146":2,"60147":3,"60148":1,"60149":3,"60150":5,"60151":1,"60152":3,"60153":2,"60154":4,"60155":3,"60156":5,"60157":2,"60158":3,"60159":3,"60160":5,"60161":2,"60162":5,"60163":1,"60164":3,"60165":4,"60166":1,"60167":3,"60168":4,"60169":2,"60170":2,"60171":4,"60172":4,"60173":2,"60174":4,"60175":3,"60176":3,"60177":1,"60178":2,"60179":3,"60180":5,"60181":4,"60182":4,"60183":3,"60184":3,"60185":3,"60186":3,"60187":2,"60188":3,"60189":2,"60190":3,"60191":3,"60192":3,"60193":2,"60194":3,"60195":3,"60196":3,"60197":2,"60198":3,"60199":1,"60200":3,"60201":3,"60202":1,"60203":3,"60204":2,"60205":1,"60206":1,"60207":3,"60208":3,"60209":3,"60210":4,"60211":3,"60212":2,"60213":2,"60214":3,"60215":4,"60216":1,"60217":2,"60218":4,"60219":4,"60220":3,"60221":3,"60222":2,"60223":4,"60224":3,"60225":2,"60226":4,"60227":3,"60228":3,"60229":1,"60230":3,"60231":3,"60232":2,"60233":3,"60234":1,"60235":3,"60236":3,"60237":4,"60238":5,"60239":2,"60240":1,"60241":3,"60242":3,"60243":4,"60244":2,"60245":5,"60246":4,"60247":2,"60248":2,"60249":3,"60250":4,"60251":1,"60252":3,"60253":2,"60254":1,"60255":3,"60256":3,"60257":3,"60258":2,"60259":2,"60260":4,"60261":4,"60262":5,"60263":2,"60264":5,"60265":4,"60266":2,"60267":3,"60268":2,"60269":2,"60270":3,"60271":3,"60272":1,"60273":2,"60274":3,"60275":2,"60276":4,"60277":2,"60278":5,"60279":2,"60280":5,"60281":2,"60282":3,"60283":3,"60284":5,"60285":5,"60286":3,"60287":3,"60288":2,"60289":4,"60290":3,"60291":3,"60292":5,"60293":3,"60294":3,"60295":4,"60296":2,"60297":3,"60298":2,"60299":2,"60300":5,"60301":4,"60302":3,"60303":4,"60304":3,"60305":4,"60306":1,"60307":4,"60308":4,"60309":3,"60310":3,"60311":4,"60312":4,"60313":2,"60314":2,"60315":2,"60316":3,"60317":3,"60318":4,"60319":4,"60320":3,"60321":4,"60322":4,"60323":5,"60324":1,"60325":4,"60326":4,"60327":3,"60328":4,"60329":1,"60330":3,"60331":3,"60332":2,"60333":4,"60334":1,"60335":3,"60336":4,"60337":4,"60338":4,"60339":5,"60340":1,"60341":1,"60342":3,"60343":5,"60344":3,"60345":5,"60346":4,"60347":2,"60348":2,"60349":4,"60350":3,"60351":1,"60352":2,"60353":4,"60354":2,"60355":3,"60356":3,"60357":2,"60358":3,"60359":3,"60360":3,"60361":4,"60362":2,"60363":5,"60364":2,"60365":3,"60366":4,"60367":4,"60368":3,"60369":3,"60370":4,"60371":1,"60372":3,"60373":1,"60374":4,"60375":1,"60376":5,"60377":4,"60378":4,"60379":3,"60380":3,"60381":5,"60382":2,"60383":2,"60384":1,"60385":2,"60386":1,"60387":3,"60388":4,"60389":3,"60390":4,"60391":3,"60392":4,"60393":1,"60394":3,"60395":5,"60396":3,"60397":3,"60398":4,"60399":3,"60400":3,"60401":4,"60402":2,"60403":4,"60404":1,"60405":2,"60406":5,"60407":3,"60408":3,"60409":4,"60410":4,"60411":2,"60412":4,"60413":1,"60414":5,"60415":4,"60416":2,"60417":3,"60418":3,"60419":3,"60420":4,"60421":3,"60422":3,"60423":2,"60424":1,"60425":3,"60426":3,"60427":3,"60428":1,"60429":5,"60430":3,"60431":2,"60432":2,"60433":2,"60434":4,"60435":2,"60436":4,"60437":3,"60438":5,"60439":2,"60440":4,"60441":3,"60442":3,"60443":4,"60444":3,"60445":1,"60446":3,"60447":3,"60448":3,"60449":3,"60450":3,"60451":2,"60452":3,"60453":4,"60454":5,"60455":3,"60456":2,"60457":2,"60458":5,"60459":3,"60460":2,"60461":2,"60462":3,"60463":5,"60464":3,"60465":5,"60466":3,"60467":3,"60468":4,"60469":4,"60470":3,"60471":3,"60472":3,"60473":3,"60474":5,"60475":3,"60476":3,"60477":3,"60478":4,"60479":4,"60480":3,"60481":4,"60482":3,"60483":3,"60484":4,"60485":4,"60486":4,"60487":3,"60488":3,"60489":2,"60490":3,"60491":1,"60492":3,"60493":1,"60494":2,"60495":3,"60496":4,"60497":2,"60498":1,"60499":2,"60500":3,"60501":4,"60502":4,"60503":3,"60504":3,"60505":3,"60506":3,"60507":3,"60508":3,"60509":2,"60510":1,"60511":2,"60512":2,"60513":4,"60514":2,"60515":4,"60516":4,"60517":4,"60518":3,"60519":3,"60520":2,"60521":4,"60522":2,"60523":2,"60524":2,"60525":3,"60526":2,"60527":4,"60528":2,"60529":3,"60530":3,"60531":3,"60532":3,"60533":4,"60534":4,"60535":1,"60536":1,"60537":2,"60538":3,"60539":1,"60540":4,"60541":3,"60542":4,"60543":3,"60544":4,"60545":4,"60546":4,"60547":5,"60548":3,"60549":4,"60550":3,"60551":1,"60552":3,"60553":3,"60554":4,"60555":3,"60556":3,"60557":3,"60558":3,"60559":2,"60560":3,"60561":3,"60562":4,"60563":2,"60564":4,"60565":2,"60566":2,"60567":3,"60568":4,"60569":3,"60570":2,"60571":2,"60572":3,"60573":1,"60574":3,"60575":3,"60576":4,"60577":3,"60578":3,"60579":3,"60580":2,"60581":4,"60582":2,"60583":3,"60584":3,"60585":3,"60586":4,"60587":3,"60588":3,"60589":4,"60590":2,"60591":2,"60592":2,"60593":2,"60594":3,"60595":3,"60596":2,"60597":1,"60598":5,"60599":3,"60600":3,"60601":3,"60602":3,"60603":1,"60604":2,"60605":2,"60606":3,"60607":2,"60608":3,"60609":3,"60610":5,"60611":3,"60612":2,"60613":3,"60614":3,"60615":5,"60616":2,"60617":2,"60618":1,"60619":4,"60620":3,"60621":3,"60622":5,"60623":4,"60624":3,"60625":4,"60626":3,"60627":2,"60628":3,"60629":4,"60630":1,"60631":4,"60632":1,"60633":5,"60634":4,"60635":3,"60636":3,"60637":3,"60638":3,"60639":3,"60640":3,"60641":2,"60642":1,"60643":4,"60644":4,"60645":3,"60646":2,"60647":2,"60648":4,"60649":2,"60650":5,"60651":3,"60652":4,"60653":1,"60654":3,"60655":4,"60656":3,"60657":3,"60658":3,"60659":1,"60660":3,"60661":2,"60662":4,"60663":4,"60664":2,"60665":3,"60666":1,"60667":5,"60668":4,"60669":4,"60670":4,"60671":3,"60672":2,"60673":1,"60674":2,"60675":5,"60676":2,"60677":4,"60678":5,"60679":5,"60680":5,"60681":4,"60682":2,"60683":2,"60684":5,"60685":5,"60686":3,"60687":1,"60688":3,"60689":1,"60690":5,"60691":3,"60692":3,"60693":3,"60694":4,"60695":3,"60696":2,"60697":3,"60698":3,"60699":2,"60700":5,"60701":3,"60702":5,"60703":2,"60704":3,"60705":4,"60706":2,"60707":4,"60708":3,"60709":3,"60710":2,"60711":3,"60712":3,"60713":4,"60714":2,"60715":3,"60716":4,"60717":2,"60718":4,"60719":2,"60720":2,"60721":3,"60722":2,"60723":1,"60724":2,"60725":4,"60726":3,"60727":1,"60728":3,"60729":4,"60730":3,"60731":3,"60732":2,"60733":2,"60734":2,"60735":1,"60736":4,"60737":3,"60738":4,"60739":2,"60740":4,"60741":2,"60742":4,"60743":4,"60744":3,"60745":1,"60746":1,"60747":3,"60748":5,"60749":4,"60750":3,"60751":2,"60752":3,"60753":5,"60754":3,"60755":2,"60756":1,"60757":3,"60758":1,"60759":3,"60760":2,"60761":3,"60762":3,"60763":4,"60764":3,"60765":2,"60766":1,"60767":3,"60768":4,"60769":3,"60770":3,"60771":3,"60772":3,"60773":4,"60774":2,"60775":5,"60776":4,"60777":1,"60778":3,"60779":3,"60780":2,"60781":3,"60782":5,"60783":1,"60784":2,"60785":3,"60786":4,"60787":4,"60788":3,"60789":5,"60790":2,"60791":1,"60792":4,"60793":3,"60794":3,"60795":3,"60796":2,"60797":1,"60798":5,"60799":3,"60800":2,"60801":4,"60802":1,"60803":3,"60804":4,"60805":4,"60806":5,"60807":4,"60808":4,"60809":4,"60810":3,"60811":3,"60812":5,"60813":3,"60814":3,"60815":5,"60816":2,"60817":3,"60818":4,"60819":2,"60820":3,"60821":3,"60822":3,"60823":3,"60824":3,"60825":5,"60826":4,"60827":1,"60828":4,"60829":3,"60830":3,"60831":4,"60832":2,"60833":2,"60834":3,"60835":2,"60836":3,"60837":2,"60838":1,"60839":3,"60840":2,"60841":2,"60842":4,"60843":5,"60844":2,"60845":3,"60846":3,"60847":3,"60848":3,"60849":4,"60850":1,"60851":3,"60852":5,"60853":3,"60854":2,"60855":2,"60856":1,"60857":4,"60858":5,"60859":1,"60860":3,"60861":5,"60862":4,"60863":5,"60864":2,"60865":2,"60866":2,"60867":4,"60868":4,"60869":3,"60870":3,"60871":5,"60872":3,"60873":2,"60874":3,"60875":4,"60876":2,"60877":2,"60878":2,"60879":3,"60880":4,"60881":4,"60882":2,"60883":2,"60884":1,"60885":1,"60886":2,"60887":2,"60888":2,"60889":4,"60890":3,"60891":5,"60892":3,"60893":3,"60894":1,"60895":3,"60896":3,"60897":4,"60898":5,"60899":3,"60900":1,"60901":1,"60902":3,"60903":4},"head":{"0":0,"1":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":1,"11":1,"12":0,"13":0,"14":1,"15":0,"16":1,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":1,"28":0,"29":1,"30":0,"31":0,"32":1,"33":0,"34":0,"35":0,"36":0,"37":0,"38":1,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":1,"49":1,"50":1,"51":0,"52":1,"53":1,"54":0,"55":0,"56":1,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":1,"66":1,"67":0,"68":0,"69":0,"70":0,"71":1,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":1,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":1,"94":0,"95":0,"96":1,"97":1,"98":0,"99":0,"100":0,"101":1,"102":0,"103":0,"104":1,"105":0,"106":1,"107":1,"108":0,"109":1,"110":0,"111":1,"112":1,"113":0,"114":0,"115":0,"116":0,"117":0,"118":0,"119":0,"120":0,"121":0,"122":0,"123":0,"124":0,"125":1,"126":0,"127":1,"128":0,"129":0,"130":0,"131":0,"132":0,"133":0,"134":0,"135":1,"136":1,"137":0,"138":1,"139":0,"140":0,"141":0,"142":0,"143":0,"144":0,"145":0,"146":0,"147":0,"148":0,"149":0,"150":1,"151":0,"152":0,"153":1,"154":0,"155":0,"156":0,"157":1,"158":1,"159":1,"160":0,"161":0,"162":1,"163":0,"164":0,"165":0,"166":1,"167":0,"168":0,"169":0,"170":0,"171":0,"172":1,"173":0,"174":1,"175":0,"176":0,"177":0,"178":0,"179":0,"180":0,"181":1,"182":0,"183":0,"184":0,"185":0,"186":0,"187":0,"188":0,"189":0,"190":0,"191":0,"192":0,"193":1,"194":0,"195":0,"196":1,"197":0,"198":0,"199":0,"200":0,"201":0,"202":0,"203":0,"204":1,"205":0,"206":0,"207":0,"208":0,"209":0,"210":1,"211":0,"212":1,"213":1,"214":1,"215":0,"216":1,"217":0,"218":0,"219":0,"220":1,"221":1,"222":0,"223":0,"224":0,"225":1,"226":0,"227":0,"228":0,"229":0,"230":1,"231":0,"232":0,"233":1,"234":1,"235":0,"236":0,"237":0,"238":1,"239":0,"240":0,"241":0,"242":0,"243":1,"244":1,"245":0,"246":0,"247":0,"248":0,"249":0,"250":0,"251":0,"252":1,"253":0,"254":0,"255":1,"256":1,"257":0,"258":0,"259":0,"260":0,"261":0,"262":0,"263":1,"264":0,"265":0,"266":0,"267":0,"268":0,"269":0,"270":1,"271":0,"272":0,"273":0,"274":0,"275":0,"276":1,"277":0,"278":0,"279":0,"280":0,"281":0,"282":0,"283":1,"284":0,"285":0,"286":0,"287":1,"288":0,"289":1,"290":0,"291":0,"292":1,"293":0,"294":1,"295":1,"296":0,"297":0,"298":0,"299":1,"300":0,"301":1,"302":0,"303":1,"304":1,"305":1,"306":1,"307":0,"308":0,"309":0,"310":0,"311":0,"312":1,"313":1,"314":0,"315":0,"316":0,"317":1,"318":0,"319":0,"320":1,"321":0,"322":0,"323":0,"324":0,"325":1,"326":1,"327":0,"328":1,"329":1,"330":0,"331":0,"332":0,"333":1,"334":0,"335":0,"336":1,"337":0,"338":0,"339":0,"340":1,"341":1,"342":0,"343":0,"344":0,"345":1,"346":1,"347":0,"348":1,"349":0,"350":0,"351":1,"352":0,"353":1,"354":0,"355":0,"356":0,"357":0,"358":0,"359":0,"360":0,"361":0,"362":0,"363":0,"364":1,"365":1,"366":0,"367":0,"368":0,"369":0,"370":0,"371":0,"372":0,"373":1,"374":0,"375":1,"376":0,"377":0,"378":0,"379":1,"380":0,"381":0,"382":0,"383":0,"384":0,"385":1,"386":0,"387":0,"388":0,"389":1,"390":1,"391":1,"392":0,"393":0,"394":1,"395":0,"396":0,"397":0,"398":0,"399":0,"400":0,"401":0,"402":1,"403":0,"404":0,"405":0,"406":0,"407":0,"408":0,"409":0,"410":0,"411":0,"412":0,"413":0,"414":0,"415":0,"416":0,"417":1,"418":0,"419":0,"420":0,"421":0,"422":0,"423":0,"424":1,"425":1,"426":1,"427":0,"428":0,"429":0,"430":0,"431":1,"432":0,"433":0,"434":1,"435":0,"436":0,"437":0,"438":0,"439":0,"440":0,"441":0,"442":0,"443":0,"444":1,"445":0,"446":1,"447":1,"448":1,"449":0,"450":0,"451":0,"452":1,"453":0,"454":1,"455":1,"456":1,"457":1,"458":0,"459":1,"460":1,"461":0,"462":0,"463":0,"464":1,"465":0,"466":0,"467":0,"468":1,"469":0,"470":0,"471":1,"472":0,"473":0,"474":0,"475":0,"476":0,"477":0,"478":0,"479":1,"480":0,"481":1,"482":0,"483":0,"484":0,"485":0,"486":0,"487":1,"488":1,"489":0,"490":0,"491":0,"492":0,"493":1,"494":0,"495":0,"496":0,"497":0,"498":1,"499":1,"500":0,"501":0,"502":1,"503":1,"504":0,"505":0,"506":1,"507":0,"508":1,"509":0,"510":1,"511":1,"512":1,"513":0,"514":0,"515":0,"516":1,"517":0,"518":0,"519":0,"520":0,"521":0,"522":0,"523":0,"524":1,"525":1,"526":0,"527":0,"528":1,"529":0,"530":0,"531":0,"532":0,"533":0,"534":0,"535":0,"536":0,"537":0,"538":0,"539":0,"540":0,"541":1,"542":1,"543":0,"544":1,"545":0,"546":1,"547":1,"548":0,"549":0,"550":1,"551":1,"552":0,"553":0,"554":0,"555":0,"556":0,"557":0,"558":1,"559":0,"560":1,"561":0,"562":1,"563":0,"564":0,"565":0,"566":0,"567":0,"568":1,"569":0,"570":0,"571":1,"572":1,"573":1,"574":1,"575":0,"576":0,"577":0,"578":1,"579":0,"580":0,"581":1,"582":0,"583":0,"584":0,"585":0,"586":1,"587":0,"588":0,"589":0,"590":1,"591":0,"592":0,"593":0,"594":0,"595":1,"596":0,"597":1,"598":0,"599":1,"600":0,"601":0,"602":0,"603":0,"604":0,"605":0,"606":0,"607":0,"608":0,"609":1,"610":0,"611":0,"612":1,"613":0,"614":0,"615":0,"616":0,"617":1,"618":0,"619":0,"620":1,"621":0,"622":0,"623":1,"624":0,"625":0,"626":0,"627":0,"628":0,"629":0,"630":0,"631":0,"632":0,"633":0,"634":1,"635":0,"636":0,"637":0,"638":0,"639":0,"640":0,"641":1,"642":0,"643":0,"644":0,"645":0,"646":0,"647":0,"648":0,"649":0,"650":0,"651":0,"652":0,"653":1,"654":0,"655":0,"656":0,"657":0,"658":0,"659":1,"660":0,"661":0,"662":0,"663":0,"664":0,"665":0,"666":1,"667":0,"668":0,"669":0,"670":0,"671":0,"672":0,"673":0,"674":0,"675":0,"676":0,"677":0,"678":0,"679":1,"680":1,"681":0,"682":0,"683":0,"684":0,"685":0,"686":0,"687":0,"688":0,"689":1,"690":0,"691":0,"692":0,"693":0,"694":0,"695":0,"696":0,"697":1,"698":0,"699":0,"700":0,"701":0,"702":1,"703":0,"704":1,"705":1,"706":1,"707":1,"708":0,"709":0,"710":0,"711":0,"712":0,"713":0,"714":0,"715":0,"716":0,"717":0,"718":1,"719":1,"720":0,"721":0,"722":0,"723":1,"724":0,"725":1,"726":0,"727":0,"728":1,"729":0,"730":0,"731":0,"732":1,"733":0,"734":0,"735":0,"736":0,"737":0,"738":0,"739":1,"740":0,"741":0,"742":0,"743":1,"744":0,"745":0,"746":0,"747":1,"748":0,"749":0,"750":0,"751":0,"752":0,"753":0,"754":0,"755":0,"756":0,"757":0,"758":0,"759":1,"760":1,"761":0,"762":0,"763":0,"764":1,"765":0,"766":0,"767":1,"768":0,"769":0,"770":0,"771":0,"772":0,"773":0,"774":1,"775":0,"776":0,"777":0,"778":0,"779":0,"780":0,"781":1,"782":0,"783":0,"784":0,"785":1,"786":1,"787":1,"788":0,"789":0,"790":0,"791":0,"792":1,"793":0,"794":0,"795":1,"796":0,"797":0,"798":0,"799":0,"800":0,"801":0,"802":1,"803":1,"804":0,"805":1,"806":0,"807":0,"808":0,"809":1,"810":0,"811":0,"812":0,"813":1,"814":1,"815":0,"816":1,"817":0,"818":0,"819":0,"820":1,"821":0,"822":1,"823":1,"824":0,"825":0,"826":1,"827":0,"828":0,"829":0,"830":0,"831":0,"832":0,"833":0,"834":0,"835":0,"836":0,"837":0,"838":1,"839":0,"840":0,"841":0,"842":0,"843":0,"844":0,"845":0,"846":0,"847":0,"848":1,"849":1,"850":0,"851":0,"852":0,"853":0,"854":0,"855":0,"856":0,"857":0,"858":1,"859":0,"860":0,"861":0,"862":1,"863":0,"864":0,"865":0,"866":1,"867":0,"868":0,"869":1,"870":0,"871":0,"872":0,"873":1,"874":0,"875":0,"876":0,"877":0,"878":0,"879":0,"880":0,"881":0,"882":1,"883":0,"884":0,"885":0,"886":0,"887":0,"888":0,"889":0,"890":0,"891":1,"892":1,"893":0,"894":1,"895":0,"896":0,"897":0,"898":0,"899":0,"900":1,"901":0,"902":0,"903":0,"904":0,"905":1,"906":1,"907":0,"908":0,"909":0,"910":1,"911":0,"912":0,"913":0,"914":0,"915":0,"916":1,"917":0,"918":0,"919":0,"920":1,"921":1,"922":0,"923":1,"924":0,"925":0,"926":0,"927":0,"928":0,"929":0,"930":0,"931":0,"932":1,"933":0,"934":0,"935":0,"936":0,"937":0,"938":0,"939":0,"940":0,"941":0,"942":0,"943":0,"944":1,"945":0,"946":0,"947":0,"948":0,"949":0,"950":1,"951":1,"952":0,"953":0,"954":0,"955":0,"956":1,"957":0,"958":0,"959":1,"960":0,"961":1,"962":0,"963":1,"964":0,"965":1,"966":1,"967":0,"968":1,"969":0,"970":0,"971":0,"972":0,"973":0,"974":0,"975":0,"976":1,"977":0,"978":1,"979":0,"980":0,"981":0,"982":0,"983":0,"984":0,"985":1,"986":0,"987":1,"988":1,"989":1,"990":0,"991":0,"992":0,"993":0,"994":0,"995":0,"996":0,"997":0,"998":0,"999":0,"1000":1,"1001":1,"1002":0,"1003":0,"1004":0,"1005":1,"1006":0,"1007":0,"1008":1,"1009":1,"1010":1,"1011":0,"1012":0,"1013":0,"1014":1,"1015":1,"1016":0,"1017":0,"1018":0,"1019":1,"1020":0,"1021":1,"1022":0,"1023":0,"1024":0,"1025":0,"1026":1,"1027":0,"1028":1,"1029":1,"1030":0,"1031":1,"1032":0,"1033":0,"1034":0,"1035":1,"1036":1,"1037":0,"1038":0,"1039":1,"1040":0,"1041":0,"1042":0,"1043":0,"1044":1,"1045":0,"1046":0,"1047":1,"1048":0,"1049":0,"1050":0,"1051":0,"1052":0,"1053":0,"1054":0,"1055":0,"1056":0,"1057":1,"1058":1,"1059":1,"1060":0,"1061":0,"1062":0,"1063":0,"1064":0,"1065":0,"1066":1,"1067":0,"1068":0,"1069":0,"1070":0,"1071":1,"1072":0,"1073":0,"1074":0,"1075":0,"1076":0,"1077":0,"1078":0,"1079":0,"1080":1,"1081":0,"1082":0,"1083":0,"1084":0,"1085":0,"1086":0,"1087":0,"1088":1,"1089":0,"1090":1,"1091":0,"1092":0,"1093":1,"1094":0,"1095":0,"1096":1,"1097":0,"1098":0,"1099":0,"1100":0,"1101":0,"1102":0,"1103":0,"1104":0,"1105":0,"1106":0,"1107":0,"1108":0,"1109":0,"1110":0,"1111":0,"1112":1,"1113":0,"1114":0,"1115":0,"1116":0,"1117":0,"1118":1,"1119":1,"1120":0,"1121":0,"1122":0,"1123":0,"1124":0,"1125":0,"1126":1,"1127":0,"1128":1,"1129":0,"1130":1,"1131":1,"1132":0,"1133":0,"1134":0,"1135":0,"1136":0,"1137":1,"1138":0,"1139":1,"1140":1,"1141":0,"1142":1,"1143":0,"1144":1,"1145":0,"1146":0,"1147":0,"1148":0,"1149":1,"1150":0,"1151":0,"1152":0,"1153":1,"1154":1,"1155":0,"1156":0,"1157":0,"1158":0,"1159":0,"1160":0,"1161":0,"1162":0,"1163":1,"1164":1,"1165":1,"1166":0,"1167":0,"1168":0,"1169":0,"1170":0,"1171":0,"1172":1,"1173":0,"1174":0,"1175":0,"1176":0,"1177":0,"1178":0,"1179":0,"1180":0,"1181":0,"1182":0,"1183":0,"1184":1,"1185":1,"1186":1,"1187":1,"1188":1,"1189":0,"1190":0,"1191":0,"1192":0,"1193":0,"1194":0,"1195":0,"1196":0,"1197":1,"1198":0,"1199":0,"1200":0,"1201":0,"1202":1,"1203":0,"1204":0,"1205":0,"1206":0,"1207":1,"1208":0,"1209":0,"1210":1,"1211":1,"1212":0,"1213":1,"1214":0,"1215":1,"1216":0,"1217":0,"1218":0,"1219":1,"1220":0,"1221":0,"1222":0,"1223":0,"1224":0,"1225":1,"1226":0,"1227":0,"1228":1,"1229":0,"1230":0,"1231":0,"1232":0,"1233":0,"1234":0,"1235":0,"1236":0,"1237":1,"1238":0,"1239":0,"1240":0,"1241":1,"1242":1,"1243":0,"1244":0,"1245":0,"1246":0,"1247":0,"1248":0,"1249":0,"1250":0,"1251":0,"1252":0,"1253":1,"1254":1,"1255":0,"1256":0,"1257":0,"1258":0,"1259":0,"1260":0,"1261":1,"1262":0,"1263":0,"1264":0,"1265":0,"1266":0,"1267":0,"1268":1,"1269":0,"1270":0,"1271":0,"1272":0,"1273":0,"1274":1,"1275":0,"1276":0,"1277":0,"1278":0,"1279":1,"1280":1,"1281":0,"1282":1,"1283":1,"1284":0,"1285":0,"1286":0,"1287":1,"1288":0,"1289":0,"1290":1,"1291":0,"1292":0,"1293":0,"1294":0,"1295":0,"1296":0,"1297":0,"1298":0,"1299":0,"1300":0,"1301":0,"1302":0,"1303":0,"1304":0,"1305":0,"1306":0,"1307":0,"1308":1,"1309":1,"1310":0,"1311":0,"1312":0,"1313":0,"1314":0,"1315":1,"1316":0,"1317":0,"1318":0,"1319":0,"1320":1,"1321":1,"1322":0,"1323":0,"1324":0,"1325":0,"1326":1,"1327":0,"1328":0,"1329":0,"1330":0,"1331":0,"1332":1,"1333":0,"1334":0,"1335":0,"1336":0,"1337":1,"1338":0,"1339":0,"1340":0,"1341":0,"1342":1,"1343":1,"1344":0,"1345":0,"1346":0,"1347":0,"1348":0,"1349":0,"1350":0,"1351":0,"1352":0,"1353":0,"1354":0,"1355":1,"1356":1,"1357":1,"1358":0,"1359":0,"1360":0,"1361":1,"1362":0,"1363":0,"1364":0,"1365":0,"1366":0,"1367":1,"1368":0,"1369":0,"1370":1,"1371":0,"1372":1,"1373":1,"1374":0,"1375":0,"1376":0,"1377":0,"1378":0,"1379":0,"1380":1,"1381":0,"1382":0,"1383":0,"1384":0,"1385":0,"1386":0,"1387":0,"1388":0,"1389":1,"1390":0,"1391":0,"1392":0,"1393":0,"1394":1,"1395":0,"1396":1,"1397":0,"1398":0,"1399":0,"1400":1,"1401":0,"1402":0,"1403":1,"1404":0,"1405":1,"1406":1,"1407":0,"1408":0,"1409":1,"1410":0,"1411":1,"1412":0,"1413":1,"1414":0,"1415":0,"1416":0,"1417":0,"1418":0,"1419":0,"1420":0,"1421":0,"1422":1,"1423":0,"1424":0,"1425":0,"1426":0,"1427":0,"1428":1,"1429":0,"1430":0,"1431":0,"1432":0,"1433":0,"1434":1,"1435":0,"1436":1,"1437":0,"1438":0,"1439":0,"1440":1,"1441":0,"1442":0,"1443":0,"1444":0,"1445":0,"1446":0,"1447":0,"1448":0,"1449":0,"1450":0,"1451":0,"1452":1,"1453":1,"1454":0,"1455":0,"1456":0,"1457":0,"1458":1,"1459":0,"1460":0,"1461":1,"1462":0,"1463":0,"1464":0,"1465":0,"1466":0,"1467":0,"1468":0,"1469":0,"1470":0,"1471":0,"1472":0,"1473":0,"1474":0,"1475":1,"1476":0,"1477":0,"1478":0,"1479":0,"1480":1,"1481":0,"1482":0,"1483":1,"1484":0,"1485":1,"1486":0,"1487":0,"1488":0,"1489":0,"1490":0,"1491":0,"1492":0,"1493":1,"1494":0,"1495":0,"1496":0,"1497":0,"1498":0,"1499":1,"1500":0,"1501":0,"1502":0,"1503":0,"1504":0,"1505":0,"1506":0,"1507":0,"1508":0,"1509":0,"1510":0,"1511":0,"1512":0,"1513":0,"1514":1,"1515":0,"1516":0,"1517":0,"1518":0,"1519":1,"1520":0,"1521":0,"1522":0,"1523":0,"1524":0,"1525":1,"1526":1,"1527":0,"1528":1,"1529":0,"1530":1,"1531":0,"1532":0,"1533":0,"1534":0,"1535":0,"1536":0,"1537":0,"1538":0,"1539":0,"1540":0,"1541":0,"1542":0,"1543":0,"1544":0,"1545":0,"1546":0,"1547":1,"1548":0,"1549":0,"1550":0,"1551":0,"1552":0,"1553":0,"1554":1,"1555":1,"1556":0,"1557":0,"1558":0,"1559":1,"1560":1,"1561":0,"1562":0,"1563":1,"1564":0,"1565":1,"1566":0,"1567":0,"1568":1,"1569":0,"1570":1,"1571":1,"1572":0,"1573":0,"1574":0,"1575":0,"1576":1,"1577":1,"1578":0,"1579":0,"1580":1,"1581":1,"1582":0,"1583":0,"1584":0,"1585":0,"1586":0,"1587":1,"1588":0,"1589":0,"1590":0,"1591":0,"1592":0,"1593":0,"1594":0,"1595":0,"1596":0,"1597":0,"1598":1,"1599":0,"1600":0,"1601":0,"1602":0,"1603":0,"1604":0,"1605":0,"1606":1,"1607":0,"1608":0,"1609":0,"1610":0,"1611":0,"1612":0,"1613":1,"1614":0,"1615":0,"1616":0,"1617":0,"1618":1,"1619":0,"1620":0,"1621":0,"1622":0,"1623":0,"1624":0,"1625":0,"1626":1,"1627":0,"1628":0,"1629":0,"1630":0,"1631":1,"1632":1,"1633":1,"1634":0,"1635":0,"1636":0,"1637":0,"1638":0,"1639":0,"1640":0,"1641":0,"1642":0,"1643":0,"1644":0,"1645":0,"1646":0,"1647":1,"1648":0,"1649":0,"1650":0,"1651":0,"1652":0,"1653":0,"1654":0,"1655":1,"1656":0,"1657":0,"1658":0,"1659":0,"1660":0,"1661":0,"1662":0,"1663":0,"1664":0,"1665":0,"1666":1,"1667":0,"1668":0,"1669":0,"1670":0,"1671":1,"1672":0,"1673":0,"1674":0,"1675":0,"1676":0,"1677":0,"1678":1,"1679":0,"1680":0,"1681":1,"1682":0,"1683":1,"1684":1,"1685":0,"1686":0,"1687":1,"1688":0,"1689":1,"1690":0,"1691":0,"1692":0,"1693":0,"1694":0,"1695":1,"1696":0,"1697":0,"1698":0,"1699":1,"1700":0,"1701":0,"1702":0,"1703":0,"1704":1,"1705":0,"1706":0,"1707":0,"1708":1,"1709":0,"1710":0,"1711":1,"1712":0,"1713":1,"1714":0,"1715":1,"1716":0,"1717":0,"1718":1,"1719":0,"1720":0,"1721":1,"1722":1,"1723":0,"1724":0,"1725":0,"1726":0,"1727":1,"1728":0,"1729":0,"1730":0,"1731":0,"1732":0,"1733":0,"1734":0,"1735":0,"1736":0,"1737":0,"1738":1,"1739":0,"1740":0,"1741":0,"1742":1,"1743":1,"1744":0,"1745":0,"1746":1,"1747":1,"1748":0,"1749":0,"1750":0,"1751":0,"1752":0,"1753":0,"1754":1,"1755":0,"1756":0,"1757":0,"1758":0,"1759":1,"1760":0,"1761":0,"1762":0,"1763":0,"1764":0,"1765":0,"1766":0,"1767":0,"1768":0,"1769":1,"1770":1,"1771":0,"1772":1,"1773":0,"1774":0,"1775":0,"1776":0,"1777":0,"1778":0,"1779":1,"1780":0,"1781":0,"1782":0,"1783":0,"1784":0,"1785":0,"1786":0,"1787":1,"1788":0,"1789":1,"1790":0,"1791":0,"1792":0,"1793":0,"1794":0,"1795":1,"1796":0,"1797":0,"1798":1,"1799":1,"1800":0,"1801":0,"1802":0,"1803":1,"1804":0,"1805":0,"1806":0,"1807":0,"1808":0,"1809":0,"1810":1,"1811":0,"1812":0,"1813":1,"1814":0,"1815":0,"1816":0,"1817":0,"1818":1,"1819":0,"1820":1,"1821":0,"1822":0,"1823":0,"1824":0,"1825":0,"1826":0,"1827":0,"1828":1,"1829":1,"1830":0,"1831":0,"1832":0,"1833":1,"1834":0,"1835":1,"1836":0,"1837":0,"1838":0,"1839":0,"1840":0,"1841":0,"1842":1,"1843":0,"1844":0,"1845":1,"1846":1,"1847":0,"1848":1,"1849":0,"1850":1,"1851":1,"1852":0,"1853":1,"1854":1,"1855":1,"1856":0,"1857":0,"1858":1,"1859":0,"1860":0,"1861":1,"1862":1,"1863":1,"1864":1,"1865":0,"1866":1,"1867":0,"1868":0,"1869":0,"1870":0,"1871":0,"1872":0,"1873":1,"1874":1,"1875":0,"1876":0,"1877":0,"1878":1,"1879":0,"1880":1,"1881":0,"1882":1,"1883":0,"1884":1,"1885":0,"1886":0,"1887":0,"1888":0,"1889":0,"1890":0,"1891":1,"1892":0,"1893":0,"1894":0,"1895":0,"1896":0,"1897":0,"1898":0,"1899":0,"1900":0,"1901":0,"1902":0,"1903":0,"1904":0,"1905":0,"1906":0,"1907":0,"1908":0,"1909":0,"1910":1,"1911":1,"1912":1,"1913":0,"1914":0,"1915":1,"1916":0,"1917":0,"1918":0,"1919":0,"1920":0,"1921":0,"1922":0,"1923":1,"1924":0,"1925":0,"1926":0,"1927":0,"1928":0,"1929":0,"1930":0,"1931":0,"1932":1,"1933":0,"1934":1,"1935":0,"1936":0,"1937":1,"1938":0,"1939":0,"1940":0,"1941":0,"1942":0,"1943":0,"1944":1,"1945":0,"1946":0,"1947":1,"1948":0,"1949":1,"1950":1,"1951":0,"1952":0,"1953":0,"1954":0,"1955":0,"1956":0,"1957":0,"1958":0,"1959":1,"1960":0,"1961":0,"1962":0,"1963":0,"1964":0,"1965":1,"1966":1,"1967":0,"1968":0,"1969":1,"1970":0,"1971":0,"1972":0,"1973":1,"1974":0,"1975":0,"1976":0,"1977":0,"1978":0,"1979":0,"1980":0,"1981":1,"1982":0,"1983":1,"1984":0,"1985":0,"1986":0,"1987":0,"1988":0,"1989":0,"1990":0,"1991":0,"1992":0,"1993":1,"1994":0,"1995":0,"1996":0,"1997":0,"1998":0,"1999":1,"2000":1,"2001":1,"2002":0,"2003":0,"2004":0,"2005":0,"2006":0,"2007":1,"2008":0,"2009":0,"2010":0,"2011":1,"2012":0,"2013":0,"2014":0,"2015":1,"2016":0,"2017":0,"2018":0,"2019":0,"2020":0,"2021":0,"2022":0,"2023":0,"2024":0,"2025":0,"2026":1,"2027":1,"2028":0,"2029":0,"2030":0,"2031":0,"2032":0,"2033":0,"2034":0,"2035":0,"2036":0,"2037":0,"2038":1,"2039":1,"2040":1,"2041":0,"2042":0,"2043":0,"2044":1,"2045":0,"2046":0,"2047":0,"2048":1,"2049":0,"2050":0,"2051":1,"2052":0,"2053":0,"2054":0,"2055":1,"2056":1,"2057":0,"2058":0,"2059":1,"2060":0,"2061":0,"2062":0,"2063":0,"2064":0,"2065":1,"2066":0,"2067":0,"2068":1,"2069":0,"2070":1,"2071":0,"2072":0,"2073":1,"2074":0,"2075":1,"2076":0,"2077":0,"2078":1,"2079":0,"2080":0,"2081":0,"2082":0,"2083":0,"2084":0,"2085":0,"2086":1,"2087":0,"2088":0,"2089":1,"2090":1,"2091":0,"2092":0,"2093":0,"2094":0,"2095":0,"2096":0,"2097":0,"2098":0,"2099":1,"2100":0,"2101":1,"2102":0,"2103":0,"2104":1,"2105":0,"2106":0,"2107":0,"2108":0,"2109":0,"2110":0,"2111":0,"2112":1,"2113":0,"2114":0,"2115":0,"2116":0,"2117":0,"2118":0,"2119":0,"2120":0,"2121":0,"2122":0,"2123":1,"2124":0,"2125":0,"2126":1,"2127":0,"2128":0,"2129":1,"2130":1,"2131":1,"2132":0,"2133":0,"2134":0,"2135":0,"2136":0,"2137":0,"2138":0,"2139":0,"2140":0,"2141":1,"2142":0,"2143":0,"2144":0,"2145":1,"2146":0,"2147":1,"2148":0,"2149":0,"2150":0,"2151":0,"2152":0,"2153":0,"2154":0,"2155":1,"2156":0,"2157":0,"2158":1,"2159":0,"2160":1,"2161":0,"2162":0,"2163":1,"2164":1,"2165":0,"2166":0,"2167":1,"2168":0,"2169":0,"2170":0,"2171":0,"2172":1,"2173":1,"2174":0,"2175":0,"2176":0,"2177":0,"2178":0,"2179":0,"2180":0,"2181":0,"2182":0,"2183":0,"2184":0,"2185":1,"2186":0,"2187":0,"2188":0,"2189":0,"2190":0,"2191":0,"2192":0,"2193":0,"2194":1,"2195":0,"2196":0,"2197":0,"2198":0,"2199":0,"2200":0,"2201":0,"2202":1,"2203":0,"2204":1,"2205":0,"2206":0,"2207":1,"2208":0,"2209":1,"2210":1,"2211":1,"2212":1,"2213":0,"2214":0,"2215":0,"2216":0,"2217":0,"2218":1,"2219":0,"2220":0,"2221":0,"2222":0,"2223":0,"2224":0,"2225":0,"2226":0,"2227":0,"2228":1,"2229":1,"2230":0,"2231":1,"2232":1,"2233":1,"2234":0,"2235":1,"2236":0,"2237":0,"2238":0,"2239":0,"2240":0,"2241":0,"2242":0,"2243":0,"2244":0,"2245":0,"2246":0,"2247":0,"2248":0,"2249":0,"2250":0,"2251":0,"2252":1,"2253":1,"2254":1,"2255":0,"2256":0,"2257":0,"2258":0,"2259":1,"2260":1,"2261":0,"2262":1,"2263":0,"2264":0,"2265":0,"2266":0,"2267":0,"2268":0,"2269":0,"2270":0,"2271":1,"2272":1,"2273":0,"2274":1,"2275":1,"2276":0,"2277":1,"2278":0,"2279":0,"2280":0,"2281":0,"2282":0,"2283":0,"2284":1,"2285":1,"2286":0,"2287":1,"2288":0,"2289":0,"2290":0,"2291":1,"2292":0,"2293":0,"2294":0,"2295":0,"2296":1,"2297":1,"2298":0,"2299":0,"2300":1,"2301":0,"2302":1,"2303":0,"2304":0,"2305":0,"2306":0,"2307":0,"2308":0,"2309":0,"2310":0,"2311":0,"2312":0,"2313":1,"2314":0,"2315":0,"2316":0,"2317":0,"2318":0,"2319":1,"2320":1,"2321":0,"2322":0,"2323":0,"2324":0,"2325":1,"2326":1,"2327":0,"2328":1,"2329":0,"2330":0,"2331":0,"2332":1,"2333":1,"2334":0,"2335":0,"2336":0,"2337":0,"2338":0,"2339":1,"2340":0,"2341":0,"2342":0,"2343":0,"2344":0,"2345":0,"2346":0,"2347":0,"2348":1,"2349":1,"2350":0,"2351":0,"2352":0,"2353":0,"2354":1,"2355":0,"2356":0,"2357":1,"2358":0,"2359":0,"2360":0,"2361":0,"2362":0,"2363":1,"2364":1,"2365":1,"2366":0,"2367":0,"2368":0,"2369":0,"2370":0,"2371":0,"2372":1,"2373":0,"2374":0,"2375":0,"2376":0,"2377":0,"2378":0,"2379":0,"2380":0,"2381":0,"2382":0,"2383":0,"2384":0,"2385":1,"2386":0,"2387":1,"2388":0,"2389":0,"2390":0,"2391":1,"2392":0,"2393":1,"2394":0,"2395":0,"2396":1,"2397":1,"2398":0,"2399":1,"2400":0,"2401":0,"2402":0,"2403":0,"2404":1,"2405":1,"2406":1,"2407":0,"2408":0,"2409":1,"2410":1,"2411":0,"2412":0,"2413":0,"2414":0,"2415":0,"2416":1,"2417":0,"2418":1,"2419":0,"2420":0,"2421":0,"2422":1,"2423":1,"2424":0,"2425":0,"2426":0,"2427":0,"2428":0,"2429":0,"2430":0,"2431":0,"2432":0,"2433":0,"2434":0,"2435":0,"2436":0,"2437":0,"2438":0,"2439":0,"2440":0,"2441":0,"2442":0,"2443":0,"2444":0,"2445":0,"2446":0,"2447":0,"2448":0,"2449":1,"2450":0,"2451":0,"2452":0,"2453":0,"2454":0,"2455":0,"2456":0,"2457":0,"2458":1,"2459":1,"2460":0,"2461":0,"2462":0,"2463":1,"2464":0,"2465":0,"2466":1,"2467":0,"2468":0,"2469":1,"2470":0,"2471":1,"2472":0,"2473":0,"2474":0,"2475":0,"2476":0,"2477":0,"2478":0,"2479":0,"2480":1,"2481":0,"2482":0,"2483":0,"2484":0,"2485":1,"2486":0,"2487":0,"2488":0,"2489":0,"2490":0,"2491":0,"2492":1,"2493":0,"2494":0,"2495":0,"2496":0,"2497":0,"2498":0,"2499":0,"2500":1,"2501":0,"2502":0,"2503":0,"2504":0,"2505":0,"2506":0,"2507":1,"2508":0,"2509":1,"2510":0,"2511":0,"2512":0,"2513":0,"2514":0,"2515":0,"2516":0,"2517":0,"2518":1,"2519":1,"2520":1,"2521":0,"2522":0,"2523":0,"2524":0,"2525":1,"2526":0,"2527":0,"2528":0,"2529":0,"2530":0,"2531":0,"2532":0,"2533":1,"2534":0,"2535":0,"2536":1,"2537":0,"2538":0,"2539":0,"2540":0,"2541":0,"2542":0,"2543":0,"2544":0,"2545":1,"2546":0,"2547":0,"2548":0,"2549":0,"2550":1,"2551":0,"2552":0,"2553":0,"2554":0,"2555":1,"2556":0,"2557":0,"2558":0,"2559":0,"2560":0,"2561":1,"2562":0,"2563":1,"2564":0,"2565":0,"2566":1,"2567":1,"2568":0,"2569":0,"2570":0,"2571":1,"2572":0,"2573":1,"2574":0,"2575":0,"2576":0,"2577":0,"2578":0,"2579":0,"2580":0,"2581":0,"2582":0,"2583":0,"2584":0,"2585":0,"2586":0,"2587":0,"2588":0,"2589":0,"2590":0,"2591":1,"2592":0,"2593":0,"2594":1,"2595":0,"2596":1,"2597":0,"2598":0,"2599":0,"2600":0,"2601":0,"2602":0,"2603":0,"2604":0,"2605":0,"2606":0,"2607":0,"2608":0,"2609":1,"2610":1,"2611":1,"2612":0,"2613":0,"2614":0,"2615":0,"2616":0,"2617":0,"2618":0,"2619":1,"2620":0,"2621":0,"2622":0,"2623":0,"2624":0,"2625":0,"2626":0,"2627":0,"2628":0,"2629":0,"2630":0,"2631":0,"2632":0,"2633":0,"2634":0,"2635":0,"2636":1,"2637":0,"2638":1,"2639":0,"2640":1,"2641":0,"2642":0,"2643":0,"2644":1,"2645":1,"2646":0,"2647":0,"2648":0,"2649":0,"2650":0,"2651":0,"2652":0,"2653":1,"2654":1,"2655":0,"2656":0,"2657":0,"2658":0,"2659":0,"2660":0,"2661":0,"2662":0,"2663":0,"2664":0,"2665":0,"2666":0,"2667":1,"2668":0,"2669":0,"2670":1,"2671":0,"2672":0,"2673":0,"2674":0,"2675":0,"2676":1,"2677":0,"2678":0,"2679":0,"2680":0,"2681":1,"2682":0,"2683":0,"2684":0,"2685":1,"2686":0,"2687":0,"2688":0,"2689":0,"2690":0,"2691":0,"2692":1,"2693":0,"2694":0,"2695":1,"2696":0,"2697":0,"2698":0,"2699":1,"2700":0,"2701":0,"2702":0,"2703":0,"2704":1,"2705":0,"2706":1,"2707":0,"2708":0,"2709":1,"2710":0,"2711":0,"2712":0,"2713":0,"2714":0,"2715":1,"2716":1,"2717":0,"2718":1,"2719":0,"2720":1,"2721":0,"2722":1,"2723":0,"2724":0,"2725":0,"2726":0,"2727":1,"2728":0,"2729":0,"2730":0,"2731":0,"2732":0,"2733":0,"2734":1,"2735":0,"2736":1,"2737":0,"2738":0,"2739":1,"2740":0,"2741":0,"2742":0,"2743":1,"2744":0,"2745":1,"2746":0,"2747":0,"2748":1,"2749":0,"2750":0,"2751":0,"2752":0,"2753":1,"2754":0,"2755":1,"2756":1,"2757":0,"2758":0,"2759":0,"2760":0,"2761":1,"2762":0,"2763":0,"2764":0,"2765":0,"2766":1,"2767":1,"2768":1,"2769":1,"2770":0,"2771":1,"2772":0,"2773":0,"2774":1,"2775":0,"2776":0,"2777":0,"2778":0,"2779":1,"2780":0,"2781":0,"2782":0,"2783":1,"2784":0,"2785":0,"2786":0,"2787":1,"2788":0,"2789":0,"2790":0,"2791":0,"2792":0,"2793":0,"2794":0,"2795":0,"2796":0,"2797":0,"2798":1,"2799":1,"2800":0,"2801":0,"2802":0,"2803":1,"2804":0,"2805":0,"2806":0,"2807":0,"2808":0,"2809":1,"2810":0,"2811":1,"2812":0,"2813":0,"2814":1,"2815":0,"2816":0,"2817":0,"2818":0,"2819":0,"2820":0,"2821":0,"2822":0,"2823":0,"2824":0,"2825":0,"2826":0,"2827":0,"2828":0,"2829":0,"2830":0,"2831":0,"2832":0,"2833":0,"2834":0,"2835":0,"2836":1,"2837":0,"2838":0,"2839":1,"2840":0,"2841":1,"2842":0,"2843":1,"2844":1,"2845":0,"2846":0,"2847":0,"2848":0,"2849":1,"2850":1,"2851":1,"2852":0,"2853":0,"2854":0,"2855":0,"2856":1,"2857":0,"2858":0,"2859":0,"2860":0,"2861":0,"2862":1,"2863":0,"2864":1,"2865":0,"2866":0,"2867":0,"2868":0,"2869":0,"2870":1,"2871":0,"2872":0,"2873":1,"2874":0,"2875":1,"2876":0,"2877":0,"2878":1,"2879":1,"2880":1,"2881":0,"2882":0,"2883":1,"2884":0,"2885":1,"2886":0,"2887":0,"2888":0,"2889":1,"2890":0,"2891":0,"2892":1,"2893":0,"2894":0,"2895":0,"2896":1,"2897":0,"2898":0,"2899":1,"2900":0,"2901":1,"2902":0,"2903":1,"2904":0,"2905":1,"2906":1,"2907":0,"2908":0,"2909":0,"2910":0,"2911":0,"2912":0,"2913":1,"2914":1,"2915":0,"2916":0,"2917":1,"2918":0,"2919":0,"2920":0,"2921":0,"2922":1,"2923":1,"2924":0,"2925":0,"2926":0,"2927":0,"2928":1,"2929":1,"2930":1,"2931":0,"2932":1,"2933":0,"2934":0,"2935":1,"2936":0,"2937":0,"2938":0,"2939":0,"2940":0,"2941":0,"2942":0,"2943":0,"2944":0,"2945":0,"2946":0,"2947":0,"2948":0,"2949":0,"2950":0,"2951":0,"2952":1,"2953":0,"2954":0,"2955":0,"2956":0,"2957":0,"2958":0,"2959":0,"2960":0,"2961":0,"2962":0,"2963":1,"2964":0,"2965":0,"2966":0,"2967":0,"2968":0,"2969":0,"2970":0,"2971":0,"2972":0,"2973":0,"2974":1,"2975":0,"2976":0,"2977":0,"2978":0,"2979":0,"2980":1,"2981":0,"2982":0,"2983":1,"2984":0,"2985":0,"2986":1,"2987":1,"2988":1,"2989":0,"2990":0,"2991":1,"2992":1,"2993":0,"2994":0,"2995":0,"2996":0,"2997":0,"2998":0,"2999":0,"3000":0,"3001":0,"3002":0,"3003":0,"3004":0,"3005":0,"3006":1,"3007":0,"3008":0,"3009":1,"3010":1,"3011":0,"3012":0,"3013":0,"3014":0,"3015":0,"3016":0,"3017":0,"3018":0,"3019":0,"3020":1,"3021":0,"3022":0,"3023":0,"3024":0,"3025":0,"3026":0,"3027":0,"3028":1,"3029":0,"3030":0,"3031":1,"3032":0,"3033":0,"3034":0,"3035":1,"3036":0,"3037":0,"3038":0,"3039":0,"3040":0,"3041":1,"3042":0,"3043":1,"3044":0,"3045":0,"3046":0,"3047":1,"3048":1,"3049":0,"3050":0,"3051":0,"3052":1,"3053":1,"3054":1,"3055":0,"3056":0,"3057":1,"3058":0,"3059":0,"3060":1,"3061":1,"3062":0,"3063":0,"3064":0,"3065":0,"3066":1,"3067":0,"3068":0,"3069":0,"3070":0,"3071":1,"3072":0,"3073":0,"3074":0,"3075":0,"3076":0,"3077":0,"3078":0,"3079":1,"3080":1,"3081":0,"3082":0,"3083":0,"3084":0,"3085":1,"3086":0,"3087":0,"3088":0,"3089":0,"3090":0,"3091":0,"3092":0,"3093":0,"3094":0,"3095":0,"3096":1,"3097":0,"3098":1,"3099":1,"3100":0,"3101":0,"3102":0,"3103":0,"3104":0,"3105":0,"3106":0,"3107":0,"3108":0,"3109":1,"3110":0,"3111":0,"3112":0,"3113":0,"3114":0,"3115":0,"3116":0,"3117":1,"3118":0,"3119":0,"3120":1,"3121":0,"3122":0,"3123":1,"3124":1,"3125":1,"3126":1,"3127":0,"3128":1,"3129":0,"3130":0,"3131":1,"3132":0,"3133":1,"3134":0,"3135":0,"3136":0,"3137":0,"3138":1,"3139":0,"3140":0,"3141":0,"3142":1,"3143":1,"3144":1,"3145":1,"3146":0,"3147":0,"3148":0,"3149":0,"3150":0,"3151":0,"3152":0,"3153":1,"3154":0,"3155":0,"3156":0,"3157":0,"3158":0,"3159":0,"3160":0,"3161":0,"3162":0,"3163":0,"3164":0,"3165":0,"3166":1,"3167":0,"3168":1,"3169":0,"3170":0,"3171":0,"3172":0,"3173":1,"3174":1,"3175":0,"3176":0,"3177":1,"3178":1,"3179":1,"3180":0,"3181":0,"3182":0,"3183":0,"3184":0,"3185":0,"3186":0,"3187":0,"3188":1,"3189":0,"3190":0,"3191":1,"3192":0,"3193":0,"3194":0,"3195":0,"3196":1,"3197":1,"3198":1,"3199":0,"3200":1,"3201":0,"3202":1,"3203":0,"3204":1,"3205":0,"3206":1,"3207":0,"3208":0,"3209":0,"3210":1,"3211":0,"3212":0,"3213":1,"3214":0,"3215":0,"3216":0,"3217":0,"3218":0,"3219":0,"3220":0,"3221":0,"3222":0,"3223":0,"3224":0,"3225":1,"3226":0,"3227":1,"3228":0,"3229":1,"3230":1,"3231":0,"3232":0,"3233":0,"3234":0,"3235":0,"3236":0,"3237":0,"3238":0,"3239":0,"3240":0,"3241":0,"3242":0,"3243":0,"3244":0,"3245":1,"3246":0,"3247":0,"3248":0,"3249":1,"3250":0,"3251":1,"3252":0,"3253":0,"3254":0,"3255":0,"3256":0,"3257":1,"3258":0,"3259":0,"3260":0,"3261":0,"3262":1,"3263":0,"3264":0,"3265":0,"3266":0,"3267":0,"3268":0,"3269":0,"3270":0,"3271":1,"3272":0,"3273":0,"3274":0,"3275":0,"3276":1,"3277":0,"3278":0,"3279":0,"3280":0,"3281":1,"3282":0,"3283":0,"3284":0,"3285":1,"3286":0,"3287":0,"3288":1,"3289":1,"3290":0,"3291":0,"3292":0,"3293":1,"3294":0,"3295":0,"3296":0,"3297":1,"3298":0,"3299":0,"3300":1,"3301":0,"3302":0,"3303":0,"3304":0,"3305":0,"3306":1,"3307":0,"3308":0,"3309":0,"3310":0,"3311":0,"3312":0,"3313":0,"3314":0,"3315":0,"3316":1,"3317":0,"3318":0,"3319":1,"3320":1,"3321":0,"3322":0,"3323":1,"3324":0,"3325":0,"3326":0,"3327":0,"3328":0,"3329":0,"3330":0,"3331":0,"3332":0,"3333":0,"3334":1,"3335":0,"3336":0,"3337":0,"3338":0,"3339":0,"3340":1,"3341":0,"3342":1,"3343":0,"3344":0,"3345":0,"3346":0,"3347":0,"3348":0,"3349":0,"3350":1,"3351":0,"3352":0,"3353":1,"3354":0,"3355":0,"3356":1,"3357":0,"3358":0,"3359":1,"3360":0,"3361":0,"3362":0,"3363":0,"3364":0,"3365":1,"3366":0,"3367":0,"3368":0,"3369":0,"3370":0,"3371":0,"3372":0,"3373":0,"3374":1,"3375":0,"3376":0,"3377":0,"3378":0,"3379":1,"3380":0,"3381":1,"3382":1,"3383":0,"3384":0,"3385":0,"3386":0,"3387":0,"3388":0,"3389":0,"3390":0,"3391":0,"3392":0,"3393":0,"3394":0,"3395":0,"3396":0,"3397":0,"3398":0,"3399":1,"3400":0,"3401":0,"3402":0,"3403":0,"3404":0,"3405":0,"3406":0,"3407":0,"3408":1,"3409":0,"3410":0,"3411":0,"3412":0,"3413":0,"3414":0,"3415":0,"3416":0,"3417":0,"3418":0,"3419":0,"3420":1,"3421":1,"3422":0,"3423":0,"3424":0,"3425":0,"3426":0,"3427":0,"3428":0,"3429":0,"3430":1,"3431":0,"3432":0,"3433":0,"3434":1,"3435":0,"3436":1,"3437":0,"3438":0,"3439":0,"3440":1,"3441":0,"3442":1,"3443":0,"3444":0,"3445":1,"3446":0,"3447":0,"3448":0,"3449":0,"3450":0,"3451":1,"3452":1,"3453":0,"3454":1,"3455":0,"3456":1,"3457":0,"3458":0,"3459":0,"3460":0,"3461":0,"3462":1,"3463":0,"3464":0,"3465":0,"3466":0,"3467":0,"3468":0,"3469":0,"3470":0,"3471":0,"3472":0,"3473":0,"3474":0,"3475":1,"3476":0,"3477":0,"3478":0,"3479":1,"3480":0,"3481":0,"3482":0,"3483":0,"3484":0,"3485":0,"3486":1,"3487":1,"3488":0,"3489":0,"3490":0,"3491":1,"3492":0,"3493":1,"3494":0,"3495":1,"3496":0,"3497":1,"3498":0,"3499":0,"3500":0,"3501":0,"3502":0,"3503":0,"3504":0,"3505":0,"3506":1,"3507":0,"3508":0,"3509":0,"3510":1,"3511":0,"3512":0,"3513":0,"3514":0,"3515":0,"3516":0,"3517":1,"3518":0,"3519":0,"3520":0,"3521":0,"3522":0,"3523":0,"3524":0,"3525":0,"3526":0,"3527":1,"3528":0,"3529":0,"3530":0,"3531":1,"3532":0,"3533":0,"3534":0,"3535":0,"3536":0,"3537":0,"3538":1,"3539":0,"3540":0,"3541":1,"3542":0,"3543":0,"3544":0,"3545":0,"3546":0,"3547":1,"3548":0,"3549":0,"3550":0,"3551":1,"3552":0,"3553":0,"3554":0,"3555":0,"3556":0,"3557":0,"3558":0,"3559":0,"3560":0,"3561":0,"3562":0,"3563":1,"3564":1,"3565":0,"3566":1,"3567":0,"3568":0,"3569":0,"3570":1,"3571":0,"3572":1,"3573":0,"3574":0,"3575":1,"3576":1,"3577":0,"3578":0,"3579":0,"3580":1,"3581":0,"3582":0,"3583":0,"3584":0,"3585":0,"3586":1,"3587":0,"3588":1,"3589":0,"3590":0,"3591":0,"3592":1,"3593":1,"3594":0,"3595":0,"3596":0,"3597":0,"3598":0,"3599":1,"3600":0,"3601":0,"3602":0,"3603":0,"3604":0,"3605":0,"3606":0,"3607":0,"3608":0,"3609":0,"3610":1,"3611":0,"3612":1,"3613":1,"3614":0,"3615":0,"3616":1,"3617":0,"3618":0,"3619":0,"3620":0,"3621":0,"3622":0,"3623":0,"3624":0,"3625":0,"3626":0,"3627":0,"3628":0,"3629":1,"3630":0,"3631":0,"3632":0,"3633":0,"3634":0,"3635":0,"3636":0,"3637":1,"3638":0,"3639":0,"3640":0,"3641":0,"3642":1,"3643":0,"3644":0,"3645":0,"3646":0,"3647":0,"3648":0,"3649":0,"3650":0,"3651":1,"3652":0,"3653":0,"3654":0,"3655":1,"3656":0,"3657":0,"3658":0,"3659":0,"3660":1,"3661":0,"3662":0,"3663":1,"3664":1,"3665":0,"3666":0,"3667":0,"3668":0,"3669":0,"3670":0,"3671":0,"3672":0,"3673":0,"3674":0,"3675":1,"3676":1,"3677":0,"3678":1,"3679":0,"3680":0,"3681":0,"3682":0,"3683":0,"3684":0,"3685":0,"3686":0,"3687":0,"3688":0,"3689":0,"3690":0,"3691":0,"3692":1,"3693":0,"3694":1,"3695":1,"3696":1,"3697":0,"3698":0,"3699":0,"3700":0,"3701":0,"3702":0,"3703":0,"3704":0,"3705":0,"3706":0,"3707":0,"3708":0,"3709":0,"3710":0,"3711":0,"3712":0,"3713":0,"3714":0,"3715":0,"3716":0,"3717":0,"3718":0,"3719":0,"3720":0,"3721":0,"3722":0,"3723":0,"3724":0,"3725":0,"3726":0,"3727":0,"3728":0,"3729":1,"3730":0,"3731":1,"3732":0,"3733":1,"3734":0,"3735":0,"3736":1,"3737":0,"3738":1,"3739":0,"3740":1,"3741":0,"3742":0,"3743":0,"3744":0,"3745":0,"3746":0,"3747":0,"3748":0,"3749":0,"3750":1,"3751":0,"3752":0,"3753":0,"3754":0,"3755":0,"3756":0,"3757":0,"3758":0,"3759":0,"3760":0,"3761":0,"3762":0,"3763":0,"3764":0,"3765":1,"3766":0,"3767":0,"3768":0,"3769":0,"3770":1,"3771":1,"3772":0,"3773":0,"3774":1,"3775":0,"3776":0,"3777":1,"3778":1,"3779":0,"3780":0,"3781":1,"3782":0,"3783":0,"3784":0,"3785":0,"3786":0,"3787":0,"3788":0,"3789":0,"3790":0,"3791":1,"3792":0,"3793":0,"3794":0,"3795":1,"3796":0,"3797":1,"3798":0,"3799":1,"3800":0,"3801":0,"3802":0,"3803":1,"3804":0,"3805":1,"3806":0,"3807":0,"3808":1,"3809":0,"3810":0,"3811":0,"3812":1,"3813":1,"3814":0,"3815":0,"3816":0,"3817":1,"3818":0,"3819":0,"3820":0,"3821":0,"3822":0,"3823":1,"3824":0,"3825":0,"3826":0,"3827":1,"3828":0,"3829":0,"3830":0,"3831":1,"3832":1,"3833":0,"3834":0,"3835":0,"3836":1,"3837":1,"3838":0,"3839":0,"3840":0,"3841":0,"3842":0,"3843":0,"3844":0,"3845":1,"3846":1,"3847":0,"3848":0,"3849":0,"3850":1,"3851":0,"3852":0,"3853":0,"3854":0,"3855":0,"3856":1,"3857":0,"3858":0,"3859":0,"3860":1,"3861":0,"3862":0,"3863":0,"3864":0,"3865":1,"3866":0,"3867":0,"3868":1,"3869":0,"3870":1,"3871":1,"3872":0,"3873":0,"3874":0,"3875":1,"3876":1,"3877":0,"3878":1,"3879":0,"3880":0,"3881":1,"3882":0,"3883":0,"3884":1,"3885":0,"3886":0,"3887":1,"3888":0,"3889":0,"3890":0,"3891":1,"3892":0,"3893":1,"3894":0,"3895":0,"3896":0,"3897":0,"3898":0,"3899":0,"3900":0,"3901":0,"3902":0,"3903":1,"3904":1,"3905":0,"3906":0,"3907":0,"3908":1,"3909":0,"3910":0,"3911":0,"3912":0,"3913":0,"3914":0,"3915":0,"3916":0,"3917":1,"3918":0,"3919":0,"3920":0,"3921":0,"3922":0,"3923":0,"3924":0,"3925":0,"3926":0,"3927":0,"3928":0,"3929":1,"3930":0,"3931":0,"3932":0,"3933":1,"3934":0,"3935":1,"3936":0,"3937":0,"3938":0,"3939":1,"3940":0,"3941":0,"3942":0,"3943":0,"3944":1,"3945":0,"3946":0,"3947":0,"3948":0,"3949":1,"3950":1,"3951":0,"3952":0,"3953":0,"3954":0,"3955":0,"3956":0,"3957":0,"3958":1,"3959":0,"3960":1,"3961":0,"3962":0,"3963":0,"3964":0,"3965":0,"3966":0,"3967":1,"3968":1,"3969":1,"3970":1,"3971":0,"3972":0,"3973":0,"3974":1,"3975":1,"3976":0,"3977":0,"3978":0,"3979":0,"3980":0,"3981":0,"3982":1,"3983":0,"3984":0,"3985":0,"3986":0,"3987":0,"3988":0,"3989":1,"3990":0,"3991":0,"3992":0,"3993":1,"3994":0,"3995":0,"3996":0,"3997":0,"3998":1,"3999":1,"4000":1,"4001":0,"4002":0,"4003":0,"4004":0,"4005":0,"4006":0,"4007":0,"4008":1,"4009":0,"4010":0,"4011":0,"4012":0,"4013":1,"4014":0,"4015":0,"4016":0,"4017":0,"4018":1,"4019":0,"4020":0,"4021":0,"4022":0,"4023":1,"4024":0,"4025":0,"4026":0,"4027":0,"4028":1,"4029":0,"4030":0,"4031":0,"4032":0,"4033":1,"4034":0,"4035":0,"4036":1,"4037":0,"4038":0,"4039":0,"4040":1,"4041":1,"4042":0,"4043":0,"4044":0,"4045":1,"4046":0,"4047":0,"4048":1,"4049":0,"4050":0,"4051":0,"4052":0,"4053":0,"4054":0,"4055":0,"4056":1,"4057":0,"4058":0,"4059":0,"4060":0,"4061":0,"4062":0,"4063":0,"4064":0,"4065":0,"4066":0,"4067":1,"4068":0,"4069":0,"4070":1,"4071":0,"4072":0,"4073":0,"4074":0,"4075":0,"4076":0,"4077":1,"4078":0,"4079":0,"4080":0,"4081":0,"4082":0,"4083":1,"4084":0,"4085":0,"4086":0,"4087":0,"4088":0,"4089":0,"4090":0,"4091":0,"4092":0,"4093":0,"4094":1,"4095":0,"4096":0,"4097":0,"4098":0,"4099":1,"4100":0,"4101":0,"4102":0,"4103":0,"4104":0,"4105":1,"4106":0,"4107":0,"4108":0,"4109":0,"4110":0,"4111":1,"4112":0,"4113":1,"4114":0,"4115":0,"4116":0,"4117":0,"4118":0,"4119":0,"4120":0,"4121":0,"4122":1,"4123":0,"4124":1,"4125":0,"4126":0,"4127":0,"4128":0,"4129":0,"4130":0,"4131":1,"4132":0,"4133":0,"4134":0,"4135":0,"4136":1,"4137":0,"4138":1,"4139":0,"4140":0,"4141":0,"4142":1,"4143":0,"4144":0,"4145":0,"4146":0,"4147":0,"4148":0,"4149":0,"4150":0,"4151":1,"4152":0,"4153":0,"4154":1,"4155":0,"4156":1,"4157":0,"4158":1,"4159":1,"4160":0,"4161":1,"4162":0,"4163":1,"4164":0,"4165":0,"4166":0,"4167":0,"4168":0,"4169":1,"4170":0,"4171":0,"4172":0,"4173":0,"4174":0,"4175":0,"4176":0,"4177":0,"4178":0,"4179":0,"4180":0,"4181":0,"4182":0,"4183":0,"4184":0,"4185":0,"4186":0,"4187":1,"4188":0,"4189":0,"4190":0,"4191":0,"4192":0,"4193":1,"4194":1,"4195":0,"4196":1,"4197":0,"4198":0,"4199":0,"4200":0,"4201":1,"4202":1,"4203":0,"4204":1,"4205":1,"4206":0,"4207":0,"4208":1,"4209":1,"4210":0,"4211":1,"4212":0,"4213":0,"4214":1,"4215":0,"4216":0,"4217":0,"4218":0,"4219":1,"4220":0,"4221":0,"4222":0,"4223":0,"4224":1,"4225":0,"4226":1,"4227":0,"4228":0,"4229":1,"4230":0,"4231":0,"4232":0,"4233":0,"4234":0,"4235":0,"4236":0,"4237":0,"4238":1,"4239":0,"4240":0,"4241":0,"4242":0,"4243":0,"4244":0,"4245":0,"4246":0,"4247":0,"4248":0,"4249":0,"4250":0,"4251":0,"4252":0,"4253":0,"4254":1,"4255":1,"4256":1,"4257":0,"4258":0,"4259":0,"4260":0,"4261":0,"4262":0,"4263":0,"4264":0,"4265":0,"4266":0,"4267":1,"4268":0,"4269":0,"4270":0,"4271":0,"4272":1,"4273":1,"4274":1,"4275":0,"4276":0,"4277":0,"4278":0,"4279":0,"4280":0,"4281":1,"4282":1,"4283":0,"4284":0,"4285":1,"4286":0,"4287":0,"4288":1,"4289":0,"4290":0,"4291":0,"4292":0,"4293":0,"4294":0,"4295":0,"4296":0,"4297":1,"4298":0,"4299":1,"4300":0,"4301":0,"4302":0,"4303":0,"4304":0,"4305":0,"4306":1,"4307":1,"4308":0,"4309":0,"4310":1,"4311":1,"4312":0,"4313":0,"4314":0,"4315":0,"4316":1,"4317":0,"4318":0,"4319":0,"4320":0,"4321":1,"4322":1,"4323":0,"4324":1,"4325":0,"4326":0,"4327":0,"4328":0,"4329":0,"4330":0,"4331":0,"4332":0,"4333":0,"4334":0,"4335":0,"4336":1,"4337":0,"4338":0,"4339":0,"4340":0,"4341":0,"4342":1,"4343":0,"4344":0,"4345":0,"4346":1,"4347":0,"4348":0,"4349":0,"4350":1,"4351":1,"4352":0,"4353":0,"4354":0,"4355":0,"4356":0,"4357":1,"4358":0,"4359":1,"4360":0,"4361":0,"4362":1,"4363":0,"4364":0,"4365":0,"4366":0,"4367":1,"4368":1,"4369":1,"4370":0,"4371":0,"4372":0,"4373":0,"4374":0,"4375":0,"4376":0,"4377":0,"4378":1,"4379":0,"4380":0,"4381":0,"4382":0,"4383":0,"4384":0,"4385":0,"4386":0,"4387":0,"4388":1,"4389":0,"4390":0,"4391":0,"4392":0,"4393":0,"4394":0,"4395":0,"4396":0,"4397":0,"4398":0,"4399":1,"4400":1,"4401":0,"4402":1,"4403":0,"4404":0,"4405":1,"4406":0,"4407":0,"4408":0,"4409":0,"4410":0,"4411":0,"4412":1,"4413":0,"4414":0,"4415":0,"4416":1,"4417":0,"4418":0,"4419":1,"4420":0,"4421":0,"4422":0,"4423":0,"4424":1,"4425":0,"4426":0,"4427":1,"4428":0,"4429":1,"4430":0,"4431":0,"4432":1,"4433":0,"4434":0,"4435":0,"4436":0,"4437":0,"4438":0,"4439":0,"4440":0,"4441":0,"4442":1,"4443":0,"4444":0,"4445":0,"4446":0,"4447":1,"4448":0,"4449":0,"4450":1,"4451":0,"4452":1,"4453":0,"4454":0,"4455":1,"4456":0,"4457":0,"4458":0,"4459":0,"4460":1,"4461":0,"4462":0,"4463":0,"4464":1,"4465":0,"4466":0,"4467":0,"4468":0,"4469":1,"4470":0,"4471":0,"4472":0,"4473":0,"4474":0,"4475":0,"4476":0,"4477":0,"4478":1,"4479":0,"4480":1,"4481":0,"4482":0,"4483":0,"4484":1,"4485":0,"4486":1,"4487":1,"4488":0,"4489":0,"4490":0,"4491":0,"4492":1,"4493":1,"4494":0,"4495":0,"4496":1,"4497":0,"4498":1,"4499":1,"4500":0,"4501":1,"4502":0,"4503":0,"4504":0,"4505":0,"4506":0,"4507":0,"4508":0,"4509":0,"4510":1,"4511":0,"4512":0,"4513":0,"4514":0,"4515":0,"4516":0,"4517":1,"4518":0,"4519":0,"4520":1,"4521":0,"4522":0,"4523":1,"4524":0,"4525":0,"4526":0,"4527":0,"4528":0,"4529":0,"4530":0,"4531":0,"4532":1,"4533":0,"4534":0,"4535":0,"4536":1,"4537":0,"4538":0,"4539":1,"4540":1,"4541":1,"4542":0,"4543":0,"4544":0,"4545":0,"4546":0,"4547":0,"4548":0,"4549":0,"4550":0,"4551":0,"4552":1,"4553":0,"4554":0,"4555":0,"4556":0,"4557":1,"4558":1,"4559":0,"4560":0,"4561":0,"4562":0,"4563":0,"4564":1,"4565":0,"4566":1,"4567":0,"4568":0,"4569":0,"4570":0,"4571":0,"4572":0,"4573":0,"4574":0,"4575":0,"4576":0,"4577":1,"4578":0,"4579":0,"4580":0,"4581":0,"4582":0,"4583":0,"4584":0,"4585":1,"4586":1,"4587":1,"4588":0,"4589":1,"4590":0,"4591":0,"4592":0,"4593":0,"4594":0,"4595":1,"4596":0,"4597":0,"4598":1,"4599":0,"4600":0,"4601":0,"4602":0,"4603":0,"4604":1,"4605":0,"4606":0,"4607":0,"4608":1,"4609":0,"4610":0,"4611":1,"4612":0,"4613":0,"4614":0,"4615":0,"4616":0,"4617":0,"4618":0,"4619":0,"4620":0,"4621":0,"4622":1,"4623":0,"4624":0,"4625":0,"4626":1,"4627":0,"4628":0,"4629":0,"4630":1,"4631":0,"4632":0,"4633":0,"4634":0,"4635":1,"4636":1,"4637":0,"4638":0,"4639":0,"4640":1,"4641":1,"4642":0,"4643":0,"4644":0,"4645":0,"4646":0,"4647":0,"4648":0,"4649":0,"4650":0,"4651":0,"4652":1,"4653":0,"4654":1,"4655":0,"4656":0,"4657":1,"4658":0,"4659":1,"4660":0,"4661":0,"4662":1,"4663":0,"4664":0,"4665":0,"4666":1,"4667":0,"4668":0,"4669":0,"4670":0,"4671":0,"4672":0,"4673":0,"4674":0,"4675":0,"4676":1,"4677":1,"4678":0,"4679":0,"4680":0,"4681":0,"4682":0,"4683":0,"4684":0,"4685":0,"4686":0,"4687":0,"4688":0,"4689":0,"4690":0,"4691":0,"4692":0,"4693":1,"4694":0,"4695":1,"4696":1,"4697":0,"4698":1,"4699":1,"4700":0,"4701":1,"4702":0,"4703":0,"4704":0,"4705":0,"4706":0,"4707":0,"4708":0,"4709":0,"4710":0,"4711":1,"4712":0,"4713":0,"4714":0,"4715":0,"4716":0,"4717":0,"4718":0,"4719":1,"4720":0,"4721":0,"4722":0,"4723":1,"4724":0,"4725":0,"4726":0,"4727":0,"4728":0,"4729":0,"4730":0,"4731":0,"4732":0,"4733":1,"4734":0,"4735":0,"4736":1,"4737":1,"4738":1,"4739":0,"4740":0,"4741":0,"4742":0,"4743":0,"4744":1,"4745":0,"4746":1,"4747":0,"4748":1,"4749":1,"4750":0,"4751":0,"4752":1,"4753":0,"4754":0,"4755":1,"4756":0,"4757":0,"4758":0,"4759":0,"4760":0,"4761":0,"4762":0,"4763":0,"4764":0,"4765":0,"4766":0,"4767":0,"4768":0,"4769":0,"4770":1,"4771":1,"4772":0,"4773":1,"4774":0,"4775":1,"4776":0,"4777":0,"4778":0,"4779":0,"4780":0,"4781":0,"4782":0,"4783":1,"4784":1,"4785":0,"4786":0,"4787":1,"4788":0,"4789":0,"4790":1,"4791":0,"4792":1,"4793":1,"4794":0,"4795":1,"4796":0,"4797":1,"4798":1,"4799":1,"4800":0,"4801":0,"4802":0,"4803":0,"4804":0,"4805":1,"4806":0,"4807":1,"4808":0,"4809":0,"4810":0,"4811":0,"4812":0,"4813":0,"4814":0,"4815":0,"4816":0,"4817":0,"4818":0,"4819":1,"4820":0,"4821":1,"4822":0,"4823":0,"4824":0,"4825":0,"4826":0,"4827":0,"4828":0,"4829":0,"4830":0,"4831":0,"4832":0,"4833":0,"4834":0,"4835":0,"4836":1,"4837":0,"4838":0,"4839":1,"4840":0,"4841":0,"4842":0,"4843":1,"4844":0,"4845":0,"4846":1,"4847":0,"4848":0,"4849":1,"4850":0,"4851":0,"4852":0,"4853":0,"4854":0,"4855":0,"4856":0,"4857":0,"4858":1,"4859":0,"4860":1,"4861":0,"4862":0,"4863":0,"4864":0,"4865":0,"4866":0,"4867":0,"4868":1,"4869":0,"4870":0,"4871":1,"4872":0,"4873":1,"4874":0,"4875":0,"4876":0,"4877":0,"4878":0,"4879":1,"4880":0,"4881":1,"4882":0,"4883":0,"4884":1,"4885":0,"4886":0,"4887":0,"4888":0,"4889":0,"4890":1,"4891":0,"4892":0,"4893":0,"4894":0,"4895":0,"4896":0,"4897":1,"4898":1,"4899":1,"4900":0,"4901":0,"4902":0,"4903":0,"4904":0,"4905":0,"4906":0,"4907":1,"4908":0,"4909":0,"4910":0,"4911":1,"4912":1,"4913":1,"4914":0,"4915":1,"4916":0,"4917":0,"4918":0,"4919":1,"4920":0,"4921":0,"4922":0,"4923":1,"4924":0,"4925":1,"4926":0,"4927":1,"4928":0,"4929":1,"4930":0,"4931":1,"4932":0,"4933":0,"4934":0,"4935":0,"4936":0,"4937":1,"4938":0,"4939":0,"4940":1,"4941":0,"4942":0,"4943":1,"4944":0,"4945":0,"4946":0,"4947":0,"4948":1,"4949":0,"4950":1,"4951":0,"4952":0,"4953":0,"4954":0,"4955":0,"4956":0,"4957":1,"4958":0,"4959":0,"4960":0,"4961":0,"4962":0,"4963":0,"4964":0,"4965":0,"4966":1,"4967":0,"4968":1,"4969":0,"4970":0,"4971":0,"4972":0,"4973":0,"4974":0,"4975":0,"4976":0,"4977":0,"4978":1,"4979":0,"4980":0,"4981":0,"4982":0,"4983":0,"4984":1,"4985":0,"4986":0,"4987":0,"4988":0,"4989":0,"4990":1,"4991":0,"4992":0,"4993":0,"4994":0,"4995":0,"4996":0,"4997":1,"4998":0,"4999":0,"5000":0,"5001":1,"5002":0,"5003":0,"5004":0,"5005":1,"5006":1,"5007":0,"5008":1,"5009":0,"5010":0,"5011":0,"5012":0,"5013":0,"5014":0,"5015":0,"5016":1,"5017":0,"5018":1,"5019":0,"5020":0,"5021":0,"5022":0,"5023":0,"5024":0,"5025":0,"5026":0,"5027":0,"5028":1,"5029":0,"5030":1,"5031":0,"5032":0,"5033":0,"5034":0,"5035":0,"5036":1,"5037":0,"5038":0,"5039":1,"5040":0,"5041":1,"5042":0,"5043":0,"5044":0,"5045":0,"5046":1,"5047":0,"5048":0,"5049":0,"5050":0,"5051":1,"5052":1,"5053":0,"5054":0,"5055":0,"5056":0,"5057":0,"5058":0,"5059":0,"5060":0,"5061":1,"5062":0,"5063":0,"5064":0,"5065":0,"5066":0,"5067":0,"5068":0,"5069":1,"5070":0,"5071":0,"5072":0,"5073":1,"5074":0,"5075":1,"5076":0,"5077":0,"5078":1,"5079":0,"5080":0,"5081":0,"5082":0,"5083":0,"5084":1,"5085":0,"5086":1,"5087":0,"5088":0,"5089":0,"5090":0,"5091":0,"5092":1,"5093":0,"5094":0,"5095":1,"5096":0,"5097":0,"5098":0,"5099":0,"5100":1,"5101":0,"5102":0,"5103":0,"5104":0,"5105":0,"5106":0,"5107":0,"5108":0,"5109":0,"5110":0,"5111":0,"5112":0,"5113":0,"5114":0,"5115":0,"5116":1,"5117":0,"5118":0,"5119":0,"5120":0,"5121":0,"5122":0,"5123":1,"5124":0,"5125":0,"5126":0,"5127":1,"5128":0,"5129":0,"5130":1,"5131":1,"5132":0,"5133":0,"5134":0,"5135":0,"5136":0,"5137":0,"5138":0,"5139":0,"5140":1,"5141":0,"5142":0,"5143":0,"5144":1,"5145":0,"5146":0,"5147":0,"5148":1,"5149":1,"5150":1,"5151":0,"5152":0,"5153":0,"5154":0,"5155":1,"5156":0,"5157":0,"5158":1,"5159":0,"5160":0,"5161":0,"5162":0,"5163":0,"5164":0,"5165":0,"5166":0,"5167":1,"5168":0,"5169":0,"5170":0,"5171":0,"5172":0,"5173":0,"5174":1,"5175":0,"5176":1,"5177":0,"5178":0,"5179":1,"5180":0,"5181":0,"5182":0,"5183":0,"5184":1,"5185":0,"5186":0,"5187":1,"5188":0,"5189":1,"5190":0,"5191":0,"5192":0,"5193":0,"5194":1,"5195":0,"5196":0,"5197":1,"5198":0,"5199":0,"5200":0,"5201":0,"5202":1,"5203":0,"5204":1,"5205":0,"5206":1,"5207":1,"5208":0,"5209":0,"5210":0,"5211":0,"5212":0,"5213":0,"5214":0,"5215":0,"5216":0,"5217":0,"5218":0,"5219":0,"5220":0,"5221":0,"5222":0,"5223":0,"5224":0,"5225":1,"5226":0,"5227":0,"5228":0,"5229":1,"5230":0,"5231":0,"5232":1,"5233":1,"5234":1,"5235":0,"5236":0,"5237":1,"5238":1,"5239":0,"5240":1,"5241":0,"5242":0,"5243":0,"5244":0,"5245":1,"5246":1,"5247":0,"5248":0,"5249":0,"5250":0,"5251":0,"5252":0,"5253":0,"5254":0,"5255":0,"5256":0,"5257":1,"5258":0,"5259":1,"5260":1,"5261":0,"5262":1,"5263":1,"5264":0,"5265":0,"5266":0,"5267":0,"5268":0,"5269":0,"5270":0,"5271":0,"5272":0,"5273":0,"5274":0,"5275":0,"5276":0,"5277":0,"5278":0,"5279":0,"5280":0,"5281":0,"5282":0,"5283":1,"5284":1,"5285":1,"5286":0,"5287":0,"5288":0,"5289":1,"5290":1,"5291":0,"5292":0,"5293":0,"5294":0,"5295":0,"5296":0,"5297":0,"5298":0,"5299":1,"5300":0,"5301":0,"5302":0,"5303":0,"5304":0,"5305":1,"5306":0,"5307":0,"5308":0,"5309":1,"5310":0,"5311":0,"5312":1,"5313":0,"5314":0,"5315":0,"5316":0,"5317":0,"5318":0,"5319":1,"5320":0,"5321":0,"5322":0,"5323":1,"5324":0,"5325":1,"5326":1,"5327":1,"5328":0,"5329":0,"5330":1,"5331":0,"5332":0,"5333":0,"5334":0,"5335":0,"5336":0,"5337":1,"5338":0,"5339":0,"5340":0,"5341":0,"5342":0,"5343":0,"5344":1,"5345":1,"5346":1,"5347":0,"5348":0,"5349":0,"5350":0,"5351":0,"5352":0,"5353":0,"5354":0,"5355":0,"5356":0,"5357":0,"5358":0,"5359":0,"5360":0,"5361":0,"5362":0,"5363":0,"5364":0,"5365":0,"5366":0,"5367":0,"5368":0,"5369":1,"5370":0,"5371":0,"5372":0,"5373":1,"5374":0,"5375":1,"5376":0,"5377":1,"5378":0,"5379":0,"5380":1,"5381":0,"5382":1,"5383":0,"5384":1,"5385":0,"5386":0,"5387":1,"5388":0,"5389":0,"5390":0,"5391":0,"5392":0,"5393":0,"5394":0,"5395":1,"5396":0,"5397":0,"5398":0,"5399":0,"5400":0,"5401":0,"5402":1,"5403":0,"5404":0,"5405":0,"5406":0,"5407":0,"5408":0,"5409":0,"5410":0,"5411":1,"5412":0,"5413":0,"5414":0,"5415":1,"5416":1,"5417":0,"5418":0,"5419":0,"5420":0,"5421":1,"5422":0,"5423":0,"5424":0,"5425":0,"5426":0,"5427":0,"5428":1,"5429":0,"5430":0,"5431":0,"5432":0,"5433":1,"5434":0,"5435":0,"5436":0,"5437":0,"5438":0,"5439":1,"5440":0,"5441":0,"5442":0,"5443":0,"5444":0,"5445":0,"5446":1,"5447":0,"5448":1,"5449":0,"5450":0,"5451":1,"5452":0,"5453":0,"5454":0,"5455":1,"5456":0,"5457":0,"5458":0,"5459":0,"5460":1,"5461":1,"5462":0,"5463":1,"5464":0,"5465":0,"5466":1,"5467":0,"5468":1,"5469":0,"5470":0,"5471":1,"5472":0,"5473":0,"5474":0,"5475":0,"5476":0,"5477":0,"5478":0,"5479":0,"5480":0,"5481":0,"5482":0,"5483":0,"5484":0,"5485":0,"5486":0,"5487":1,"5488":0,"5489":0,"5490":1,"5491":0,"5492":0,"5493":0,"5494":0,"5495":1,"5496":0,"5497":1,"5498":1,"5499":0,"5500":0,"5501":1,"5502":0,"5503":1,"5504":0,"5505":0,"5506":0,"5507":0,"5508":0,"5509":1,"5510":0,"5511":0,"5512":0,"5513":1,"5514":0,"5515":0,"5516":0,"5517":0,"5518":0,"5519":0,"5520":0,"5521":0,"5522":0,"5523":0,"5524":0,"5525":0,"5526":0,"5527":1,"5528":1,"5529":0,"5530":0,"5531":0,"5532":0,"5533":0,"5534":0,"5535":0,"5536":0,"5537":1,"5538":0,"5539":0,"5540":0,"5541":0,"5542":0,"5543":1,"5544":0,"5545":0,"5546":1,"5547":0,"5548":0,"5549":1,"5550":0,"5551":0,"5552":0,"5553":0,"5554":0,"5555":1,"5556":0,"5557":0,"5558":0,"5559":0,"5560":0,"5561":0,"5562":1,"5563":0,"5564":0,"5565":1,"5566":0,"5567":0,"5568":1,"5569":0,"5570":1,"5571":1,"5572":0,"5573":1,"5574":0,"5575":0,"5576":0,"5577":1,"5578":1,"5579":1,"5580":0,"5581":0,"5582":0,"5583":0,"5584":1,"5585":0,"5586":0,"5587":0,"5588":0,"5589":0,"5590":0,"5591":0,"5592":1,"5593":0,"5594":1,"5595":0,"5596":1,"5597":0,"5598":1,"5599":1,"5600":0,"5601":0,"5602":0,"5603":0,"5604":0,"5605":0,"5606":0,"5607":0,"5608":0,"5609":0,"5610":1,"5611":0,"5612":0,"5613":0,"5614":0,"5615":0,"5616":0,"5617":0,"5618":1,"5619":1,"5620":0,"5621":0,"5622":0,"5623":1,"5624":0,"5625":0,"5626":1,"5627":0,"5628":0,"5629":0,"5630":1,"5631":0,"5632":0,"5633":0,"5634":0,"5635":1,"5636":0,"5637":0,"5638":0,"5639":0,"5640":0,"5641":0,"5642":0,"5643":0,"5644":0,"5645":0,"5646":0,"5647":0,"5648":1,"5649":0,"5650":0,"5651":0,"5652":1,"5653":0,"5654":1,"5655":0,"5656":0,"5657":0,"5658":1,"5659":0,"5660":0,"5661":0,"5662":0,"5663":0,"5664":0,"5665":0,"5666":0,"5667":0,"5668":0,"5669":0,"5670":0,"5671":0,"5672":0,"5673":0,"5674":0,"5675":0,"5676":1,"5677":0,"5678":0,"5679":0,"5680":1,"5681":1,"5682":0,"5683":0,"5684":0,"5685":0,"5686":0,"5687":0,"5688":1,"5689":0,"5690":1,"5691":0,"5692":0,"5693":0,"5694":0,"5695":0,"5696":1,"5697":0,"5698":1,"5699":1,"5700":0,"5701":0,"5702":0,"5703":0,"5704":1,"5705":0,"5706":1,"5707":0,"5708":0,"5709":0,"5710":0,"5711":0,"5712":1,"5713":0,"5714":0,"5715":0,"5716":0,"5717":0,"5718":0,"5719":0,"5720":0,"5721":0,"5722":0,"5723":0,"5724":1,"5725":0,"5726":1,"5727":0,"5728":1,"5729":0,"5730":0,"5731":0,"5732":0,"5733":0,"5734":0,"5735":0,"5736":0,"5737":0,"5738":1,"5739":1,"5740":0,"5741":0,"5742":0,"5743":0,"5744":0,"5745":0,"5746":0,"5747":0,"5748":1,"5749":0,"5750":0,"5751":0,"5752":0,"5753":0,"5754":0,"5755":0,"5756":0,"5757":1,"5758":1,"5759":0,"5760":1,"5761":0,"5762":0,"5763":0,"5764":0,"5765":0,"5766":0,"5767":0,"5768":1,"5769":1,"5770":0,"5771":0,"5772":0,"5773":1,"5774":1,"5775":0,"5776":1,"5777":0,"5778":0,"5779":0,"5780":0,"5781":0,"5782":0,"5783":1,"5784":0,"5785":1,"5786":1,"5787":1,"5788":0,"5789":0,"5790":0,"5791":0,"5792":1,"5793":0,"5794":0,"5795":0,"5796":1,"5797":0,"5798":0,"5799":0,"5800":0,"5801":0,"5802":0,"5803":0,"5804":0,"5805":1,"5806":0,"5807":0,"5808":0,"5809":0,"5810":0,"5811":1,"5812":0,"5813":0,"5814":0,"5815":0,"5816":0,"5817":1,"5818":0,"5819":0,"5820":0,"5821":0,"5822":0,"5823":0,"5824":0,"5825":0,"5826":1,"5827":0,"5828":0,"5829":0,"5830":0,"5831":0,"5832":0,"5833":0,"5834":0,"5835":0,"5836":0,"5837":0,"5838":0,"5839":0,"5840":0,"5841":0,"5842":0,"5843":1,"5844":0,"5845":1,"5846":0,"5847":0,"5848":0,"5849":0,"5850":0,"5851":1,"5852":0,"5853":0,"5854":0,"5855":0,"5856":1,"5857":0,"5858":0,"5859":0,"5860":0,"5861":0,"5862":1,"5863":0,"5864":1,"5865":0,"5866":1,"5867":0,"5868":0,"5869":0,"5870":0,"5871":1,"5872":0,"5873":1,"5874":0,"5875":0,"5876":0,"5877":0,"5878":0,"5879":0,"5880":0,"5881":0,"5882":0,"5883":0,"5884":0,"5885":0,"5886":0,"5887":0,"5888":1,"5889":0,"5890":1,"5891":0,"5892":0,"5893":1,"5894":0,"5895":1,"5896":1,"5897":1,"5898":0,"5899":1,"5900":0,"5901":0,"5902":0,"5903":0,"5904":0,"5905":1,"5906":1,"5907":0,"5908":0,"5909":1,"5910":1,"5911":0,"5912":0,"5913":0,"5914":0,"5915":0,"5916":0,"5917":1,"5918":1,"5919":0,"5920":0,"5921":0,"5922":0,"5923":0,"5924":0,"5925":0,"5926":0,"5927":0,"5928":0,"5929":0,"5930":0,"5931":0,"5932":1,"5933":0,"5934":0,"5935":0,"5936":1,"5937":1,"5938":0,"5939":1,"5940":0,"5941":0,"5942":0,"5943":0,"5944":0,"5945":0,"5946":0,"5947":0,"5948":0,"5949":0,"5950":0,"5951":0,"5952":0,"5953":0,"5954":0,"5955":0,"5956":0,"5957":1,"5958":0,"5959":0,"5960":0,"5961":0,"5962":0,"5963":0,"5964":0,"5965":0,"5966":1,"5967":0,"5968":0,"5969":0,"5970":0,"5971":0,"5972":0,"5973":0,"5974":1,"5975":1,"5976":0,"5977":0,"5978":1,"5979":0,"5980":0,"5981":1,"5982":0,"5983":1,"5984":1,"5985":0,"5986":0,"5987":0,"5988":0,"5989":1,"5990":0,"5991":0,"5992":0,"5993":0,"5994":0,"5995":1,"5996":1,"5997":0,"5998":1,"5999":0,"6000":0,"6001":0,"6002":0,"6003":1,"6004":0,"6005":1,"6006":0,"6007":1,"6008":1,"6009":1,"6010":0,"6011":0,"6012":0,"6013":0,"6014":0,"6015":0,"6016":0,"6017":1,"6018":1,"6019":0,"6020":0,"6021":0,"6022":0,"6023":1,"6024":0,"6025":0,"6026":0,"6027":0,"6028":0,"6029":0,"6030":0,"6031":0,"6032":0,"6033":0,"6034":0,"6035":0,"6036":0,"6037":1,"6038":0,"6039":1,"6040":0,"6041":0,"6042":0,"6043":0,"6044":0,"6045":1,"6046":0,"6047":0,"6048":1,"6049":1,"6050":0,"6051":0,"6052":0,"6053":0,"6054":0,"6055":0,"6056":1,"6057":1,"6058":1,"6059":0,"6060":1,"6061":0,"6062":0,"6063":0,"6064":0,"6065":1,"6066":0,"6067":0,"6068":0,"6069":0,"6070":0,"6071":1,"6072":1,"6073":0,"6074":0,"6075":1,"6076":0,"6077":0,"6078":0,"6079":0,"6080":0,"6081":1,"6082":0,"6083":0,"6084":1,"6085":1,"6086":0,"6087":0,"6088":1,"6089":0,"6090":0,"6091":1,"6092":1,"6093":0,"6094":0,"6095":0,"6096":1,"6097":0,"6098":0,"6099":0,"6100":0,"6101":0,"6102":0,"6103":0,"6104":0,"6105":0,"6106":1,"6107":1,"6108":0,"6109":0,"6110":0,"6111":1,"6112":0,"6113":0,"6114":0,"6115":0,"6116":0,"6117":0,"6118":0,"6119":1,"6120":0,"6121":0,"6122":0,"6123":0,"6124":1,"6125":0,"6126":0,"6127":0,"6128":0,"6129":0,"6130":0,"6131":0,"6132":0,"6133":0,"6134":0,"6135":0,"6136":0,"6137":0,"6138":1,"6139":0,"6140":0,"6141":0,"6142":0,"6143":1,"6144":0,"6145":0,"6146":0,"6147":0,"6148":1,"6149":1,"6150":0,"6151":1,"6152":0,"6153":0,"6154":0,"6155":0,"6156":0,"6157":0,"6158":1,"6159":0,"6160":0,"6161":0,"6162":0,"6163":0,"6164":0,"6165":0,"6166":0,"6167":0,"6168":1,"6169":0,"6170":0,"6171":0,"6172":0,"6173":0,"6174":0,"6175":0,"6176":0,"6177":1,"6178":1,"6179":0,"6180":1,"6181":0,"6182":1,"6183":1,"6184":0,"6185":1,"6186":0,"6187":0,"6188":0,"6189":0,"6190":0,"6191":0,"6192":0,"6193":0,"6194":1,"6195":0,"6196":0,"6197":0,"6198":0,"6199":0,"6200":0,"6201":0,"6202":1,"6203":0,"6204":1,"6205":1,"6206":0,"6207":1,"6208":0,"6209":0,"6210":0,"6211":0,"6212":1,"6213":0,"6214":0,"6215":1,"6216":0,"6217":1,"6218":0,"6219":1,"6220":0,"6221":0,"6222":0,"6223":0,"6224":0,"6225":1,"6226":0,"6227":1,"6228":1,"6229":0,"6230":0,"6231":1,"6232":0,"6233":1,"6234":0,"6235":0,"6236":0,"6237":0,"6238":0,"6239":0,"6240":0,"6241":0,"6242":0,"6243":0,"6244":1,"6245":0,"6246":0,"6247":0,"6248":0,"6249":0,"6250":0,"6251":0,"6252":1,"6253":1,"6254":0,"6255":1,"6256":0,"6257":0,"6258":0,"6259":1,"6260":0,"6261":1,"6262":0,"6263":0,"6264":0,"6265":0,"6266":0,"6267":0,"6268":0,"6269":0,"6270":0,"6271":0,"6272":1,"6273":1,"6274":0,"6275":0,"6276":0,"6277":1,"6278":0,"6279":0,"6280":0,"6281":1,"6282":1,"6283":0,"6284":0,"6285":0,"6286":0,"6287":1,"6288":0,"6289":0,"6290":0,"6291":0,"6292":0,"6293":0,"6294":0,"6295":0,"6296":0,"6297":0,"6298":1,"6299":0,"6300":0,"6301":0,"6302":0,"6303":0,"6304":0,"6305":1,"6306":0,"6307":0,"6308":0,"6309":0,"6310":0,"6311":0,"6312":0,"6313":0,"6314":0,"6315":0,"6316":1,"6317":0,"6318":0,"6319":1,"6320":0,"6321":1,"6322":0,"6323":0,"6324":0,"6325":0,"6326":0,"6327":1,"6328":0,"6329":1,"6330":1,"6331":0,"6332":0,"6333":1,"6334":0,"6335":0,"6336":0,"6337":0,"6338":1,"6339":0,"6340":0,"6341":0,"6342":1,"6343":1,"6344":1,"6345":0,"6346":0,"6347":0,"6348":1,"6349":0,"6350":1,"6351":0,"6352":1,"6353":0,"6354":1,"6355":1,"6356":1,"6357":0,"6358":0,"6359":0,"6360":0,"6361":1,"6362":1,"6363":0,"6364":1,"6365":0,"6366":1,"6367":0,"6368":0,"6369":0,"6370":0,"6371":0,"6372":0,"6373":0,"6374":1,"6375":0,"6376":0,"6377":0,"6378":0,"6379":0,"6380":1,"6381":1,"6382":1,"6383":0,"6384":1,"6385":0,"6386":0,"6387":0,"6388":1,"6389":1,"6390":0,"6391":0,"6392":1,"6393":0,"6394":1,"6395":0,"6396":1,"6397":0,"6398":0,"6399":1,"6400":1,"6401":0,"6402":0,"6403":1,"6404":0,"6405":0,"6406":0,"6407":0,"6408":0,"6409":0,"6410":0,"6411":1,"6412":0,"6413":0,"6414":0,"6415":0,"6416":0,"6417":0,"6418":0,"6419":0,"6420":1,"6421":1,"6422":0,"6423":0,"6424":0,"6425":0,"6426":1,"6427":0,"6428":1,"6429":0,"6430":1,"6431":1,"6432":1,"6433":1,"6434":1,"6435":0,"6436":0,"6437":1,"6438":0,"6439":1,"6440":0,"6441":0,"6442":0,"6443":0,"6444":0,"6445":0,"6446":0,"6447":0,"6448":1,"6449":0,"6450":1,"6451":0,"6452":0,"6453":1,"6454":0,"6455":0,"6456":1,"6457":0,"6458":0,"6459":0,"6460":0,"6461":0,"6462":1,"6463":0,"6464":0,"6465":0,"6466":1,"6467":1,"6468":0,"6469":0,"6470":1,"6471":0,"6472":0,"6473":0,"6474":0,"6475":0,"6476":0,"6477":0,"6478":0,"6479":0,"6480":1,"6481":0,"6482":1,"6483":0,"6484":0,"6485":1,"6486":1,"6487":0,"6488":0,"6489":0,"6490":1,"6491":0,"6492":1,"6493":0,"6494":0,"6495":0,"6496":0,"6497":1,"6498":1,"6499":0,"6500":0,"6501":0,"6502":0,"6503":0,"6504":0,"6505":1,"6506":0,"6507":0,"6508":0,"6509":0,"6510":0,"6511":1,"6512":0,"6513":0,"6514":0,"6515":1,"6516":0,"6517":1,"6518":0,"6519":1,"6520":0,"6521":0,"6522":0,"6523":1,"6524":0,"6525":0,"6526":0,"6527":0,"6528":0,"6529":0,"6530":0,"6531":0,"6532":0,"6533":0,"6534":0,"6535":0,"6536":0,"6537":0,"6538":0,"6539":0,"6540":0,"6541":1,"6542":0,"6543":0,"6544":0,"6545":1,"6546":0,"6547":1,"6548":0,"6549":0,"6550":0,"6551":0,"6552":0,"6553":0,"6554":0,"6555":0,"6556":0,"6557":0,"6558":0,"6559":0,"6560":0,"6561":0,"6562":0,"6563":0,"6564":0,"6565":0,"6566":0,"6567":0,"6568":0,"6569":0,"6570":0,"6571":0,"6572":0,"6573":0,"6574":0,"6575":0,"6576":0,"6577":0,"6578":0,"6579":0,"6580":0,"6581":1,"6582":0,"6583":0,"6584":0,"6585":0,"6586":0,"6587":1,"6588":1,"6589":0,"6590":0,"6591":1,"6592":0,"6593":0,"6594":1,"6595":1,"6596":0,"6597":0,"6598":1,"6599":0,"6600":0,"6601":0,"6602":0,"6603":0,"6604":1,"6605":0,"6606":0,"6607":0,"6608":0,"6609":0,"6610":1,"6611":1,"6612":0,"6613":0,"6614":0,"6615":0,"6616":1,"6617":0,"6618":1,"6619":1,"6620":0,"6621":0,"6622":0,"6623":0,"6624":0,"6625":1,"6626":0,"6627":1,"6628":0,"6629":0,"6630":1,"6631":0,"6632":0,"6633":0,"6634":0,"6635":0,"6636":0,"6637":0,"6638":1,"6639":0,"6640":0,"6641":0,"6642":0,"6643":0,"6644":0,"6645":0,"6646":0,"6647":0,"6648":0,"6649":1,"6650":0,"6651":0,"6652":1,"6653":0,"6654":1,"6655":0,"6656":0,"6657":0,"6658":0,"6659":0,"6660":0,"6661":0,"6662":0,"6663":0,"6664":0,"6665":0,"6666":1,"6667":0,"6668":0,"6669":0,"6670":0,"6671":0,"6672":1,"6673":0,"6674":0,"6675":0,"6676":0,"6677":0,"6678":0,"6679":0,"6680":1,"6681":1,"6682":0,"6683":0,"6684":1,"6685":0,"6686":0,"6687":1,"6688":0,"6689":1,"6690":0,"6691":0,"6692":0,"6693":0,"6694":1,"6695":0,"6696":0,"6697":0,"6698":0,"6699":0,"6700":1,"6701":0,"6702":0,"6703":0,"6704":0,"6705":1,"6706":0,"6707":0,"6708":0,"6709":0,"6710":1,"6711":0,"6712":0,"6713":0,"6714":0,"6715":0,"6716":0,"6717":1,"6718":0,"6719":1,"6720":0,"6721":0,"6722":1,"6723":0,"6724":0,"6725":0,"6726":1,"6727":1,"6728":0,"6729":0,"6730":0,"6731":0,"6732":0,"6733":1,"6734":0,"6735":0,"6736":0,"6737":0,"6738":0,"6739":1,"6740":1,"6741":0,"6742":0,"6743":0,"6744":1,"6745":0,"6746":1,"6747":0,"6748":0,"6749":0,"6750":0,"6751":0,"6752":0,"6753":0,"6754":0,"6755":1,"6756":0,"6757":0,"6758":0,"6759":1,"6760":1,"6761":0,"6762":1,"6763":0,"6764":0,"6765":0,"6766":1,"6767":0,"6768":0,"6769":0,"6770":0,"6771":1,"6772":0,"6773":1,"6774":0,"6775":1,"6776":0,"6777":0,"6778":1,"6779":1,"6780":0,"6781":1,"6782":0,"6783":0,"6784":0,"6785":0,"6786":0,"6787":1,"6788":0,"6789":0,"6790":1,"6791":0,"6792":1,"6793":0,"6794":0,"6795":1,"6796":0,"6797":1,"6798":0,"6799":0,"6800":0,"6801":0,"6802":0,"6803":0,"6804":1,"6805":1,"6806":0,"6807":0,"6808":0,"6809":0,"6810":0,"6811":1,"6812":0,"6813":0,"6814":0,"6815":0,"6816":0,"6817":0,"6818":0,"6819":0,"6820":0,"6821":0,"6822":0,"6823":0,"6824":1,"6825":0,"6826":1,"6827":0,"6828":1,"6829":0,"6830":0,"6831":0,"6832":0,"6833":0,"6834":1,"6835":1,"6836":1,"6837":0,"6838":0,"6839":0,"6840":0,"6841":0,"6842":0,"6843":1,"6844":0,"6845":0,"6846":1,"6847":0,"6848":0,"6849":0,"6850":0,"6851":1,"6852":0,"6853":0,"6854":1,"6855":0,"6856":0,"6857":1,"6858":1,"6859":1,"6860":0,"6861":1,"6862":0,"6863":0,"6864":1,"6865":0,"6866":0,"6867":1,"6868":1,"6869":0,"6870":0,"6871":0,"6872":0,"6873":1,"6874":0,"6875":0,"6876":1,"6877":0,"6878":0,"6879":0,"6880":0,"6881":0,"6882":1,"6883":1,"6884":1,"6885":0,"6886":0,"6887":0,"6888":0,"6889":0,"6890":0,"6891":0,"6892":0,"6893":0,"6894":0,"6895":1,"6896":1,"6897":1,"6898":1,"6899":0,"6900":1,"6901":0,"6902":0,"6903":0,"6904":0,"6905":1,"6906":0,"6907":0,"6908":0,"6909":0,"6910":0,"6911":0,"6912":0,"6913":1,"6914":1,"6915":0,"6916":1,"6917":0,"6918":0,"6919":0,"6920":1,"6921":0,"6922":1,"6923":1,"6924":1,"6925":0,"6926":0,"6927":0,"6928":1,"6929":0,"6930":0,"6931":0,"6932":0,"6933":0,"6934":0,"6935":0,"6936":1,"6937":0,"6938":0,"6939":1,"6940":0,"6941":0,"6942":1,"6943":0,"6944":0,"6945":0,"6946":0,"6947":0,"6948":0,"6949":0,"6950":1,"6951":0,"6952":1,"6953":1,"6954":0,"6955":0,"6956":0,"6957":0,"6958":0,"6959":0,"6960":0,"6961":0,"6962":0,"6963":0,"6964":0,"6965":0,"6966":0,"6967":1,"6968":0,"6969":0,"6970":1,"6971":0,"6972":1,"6973":0,"6974":0,"6975":0,"6976":0,"6977":0,"6978":1,"6979":0,"6980":0,"6981":0,"6982":0,"6983":0,"6984":1,"6985":0,"6986":0,"6987":0,"6988":0,"6989":1,"6990":0,"6991":1,"6992":1,"6993":0,"6994":0,"6995":0,"6996":0,"6997":0,"6998":0,"6999":0,"7000":0,"7001":0,"7002":1,"7003":0,"7004":1,"7005":0,"7006":1,"7007":0,"7008":0,"7009":0,"7010":0,"7011":1,"7012":0,"7013":0,"7014":0,"7015":0,"7016":1,"7017":0,"7018":0,"7019":1,"7020":0,"7021":0,"7022":1,"7023":0,"7024":0,"7025":0,"7026":0,"7027":0,"7028":0,"7029":0,"7030":0,"7031":1,"7032":1,"7033":0,"7034":0,"7035":1,"7036":0,"7037":1,"7038":1,"7039":0,"7040":1,"7041":0,"7042":0,"7043":1,"7044":0,"7045":0,"7046":0,"7047":1,"7048":0,"7049":0,"7050":0,"7051":1,"7052":0,"7053":0,"7054":0,"7055":0,"7056":0,"7057":0,"7058":0,"7059":0,"7060":1,"7061":0,"7062":0,"7063":0,"7064":0,"7065":1,"7066":0,"7067":0,"7068":0,"7069":0,"7070":0,"7071":0,"7072":0,"7073":1,"7074":1,"7075":0,"7076":0,"7077":0,"7078":0,"7079":0,"7080":0,"7081":1,"7082":0,"7083":0,"7084":0,"7085":0,"7086":0,"7087":0,"7088":0,"7089":0,"7090":1,"7091":1,"7092":0,"7093":0,"7094":1,"7095":0,"7096":1,"7097":0,"7098":1,"7099":0,"7100":1,"7101":0,"7102":0,"7103":0,"7104":0,"7105":0,"7106":0,"7107":0,"7108":0,"7109":0,"7110":1,"7111":1,"7112":0,"7113":1,"7114":0,"7115":0,"7116":0,"7117":1,"7118":0,"7119":0,"7120":0,"7121":1,"7122":0,"7123":0,"7124":0,"7125":0,"7126":0,"7127":0,"7128":0,"7129":0,"7130":1,"7131":0,"7132":0,"7133":0,"7134":0,"7135":0,"7136":0,"7137":0,"7138":0,"7139":1,"7140":0,"7141":0,"7142":0,"7143":0,"7144":0,"7145":0,"7146":0,"7147":0,"7148":1,"7149":0,"7150":0,"7151":1,"7152":0,"7153":1,"7154":0,"7155":0,"7156":0,"7157":0,"7158":0,"7159":1,"7160":0,"7161":0,"7162":0,"7163":0,"7164":0,"7165":1,"7166":0,"7167":0,"7168":0,"7169":0,"7170":0,"7171":0,"7172":0,"7173":0,"7174":0,"7175":0,"7176":0,"7177":1,"7178":0,"7179":1,"7180":0,"7181":0,"7182":0,"7183":0,"7184":0,"7185":0,"7186":0,"7187":0,"7188":0,"7189":0,"7190":0,"7191":0,"7192":1,"7193":1,"7194":0,"7195":1,"7196":0,"7197":0,"7198":0,"7199":1,"7200":0,"7201":0,"7202":0,"7203":0,"7204":0,"7205":1,"7206":0,"7207":1,"7208":1,"7209":0,"7210":0,"7211":1,"7212":0,"7213":0,"7214":0,"7215":1,"7216":1,"7217":0,"7218":0,"7219":0,"7220":1,"7221":1,"7222":0,"7223":0,"7224":0,"7225":0,"7226":0,"7227":0,"7228":1,"7229":0,"7230":1,"7231":0,"7232":1,"7233":0,"7234":0,"7235":0,"7236":1,"7237":0,"7238":1,"7239":0,"7240":0,"7241":1,"7242":1,"7243":0,"7244":1,"7245":0,"7246":0,"7247":0,"7248":0,"7249":0,"7250":0,"7251":0,"7252":0,"7253":0,"7254":0,"7255":0,"7256":0,"7257":0,"7258":1,"7259":0,"7260":0,"7261":0,"7262":0,"7263":1,"7264":0,"7265":0,"7266":0,"7267":0,"7268":0,"7269":0,"7270":1,"7271":0,"7272":1,"7273":0,"7274":0,"7275":0,"7276":0,"7277":0,"7278":0,"7279":0,"7280":1,"7281":0,"7282":0,"7283":0,"7284":0,"7285":1,"7286":0,"7287":0,"7288":0,"7289":0,"7290":1,"7291":0,"7292":0,"7293":1,"7294":0,"7295":1,"7296":0,"7297":0,"7298":0,"7299":0,"7300":0,"7301":1,"7302":0,"7303":1,"7304":0,"7305":1,"7306":0,"7307":0,"7308":0,"7309":0,"7310":1,"7311":1,"7312":0,"7313":0,"7314":0,"7315":1,"7316":0,"7317":0,"7318":0,"7319":0,"7320":0,"7321":0,"7322":0,"7323":0,"7324":0,"7325":0,"7326":0,"7327":0,"7328":0,"7329":0,"7330":1,"7331":0,"7332":0,"7333":0,"7334":1,"7335":0,"7336":0,"7337":0,"7338":0,"7339":0,"7340":1,"7341":0,"7342":0,"7343":1,"7344":1,"7345":1,"7346":1,"7347":1,"7348":0,"7349":0,"7350":0,"7351":0,"7352":1,"7353":0,"7354":0,"7355":0,"7356":0,"7357":0,"7358":0,"7359":0,"7360":1,"7361":0,"7362":1,"7363":0,"7364":0,"7365":1,"7366":0,"7367":0,"7368":0,"7369":1,"7370":1,"7371":0,"7372":0,"7373":0,"7374":1,"7375":1,"7376":0,"7377":1,"7378":1,"7379":0,"7380":1,"7381":0,"7382":0,"7383":0,"7384":0,"7385":1,"7386":0,"7387":0,"7388":1,"7389":0,"7390":0,"7391":0,"7392":0,"7393":1,"7394":0,"7395":0,"7396":0,"7397":1,"7398":0,"7399":1,"7400":0,"7401":0,"7402":0,"7403":0,"7404":1,"7405":0,"7406":0,"7407":0,"7408":0,"7409":0,"7410":0,"7411":0,"7412":0,"7413":0,"7414":0,"7415":0,"7416":0,"7417":0,"7418":0,"7419":0,"7420":0,"7421":1,"7422":0,"7423":0,"7424":0,"7425":1,"7426":0,"7427":0,"7428":0,"7429":0,"7430":0,"7431":0,"7432":1,"7433":1,"7434":0,"7435":1,"7436":0,"7437":0,"7438":0,"7439":0,"7440":0,"7441":1,"7442":0,"7443":0,"7444":0,"7445":1,"7446":0,"7447":1,"7448":0,"7449":1,"7450":0,"7451":1,"7452":0,"7453":0,"7454":0,"7455":0,"7456":0,"7457":0,"7458":1,"7459":0,"7460":1,"7461":0,"7462":0,"7463":1,"7464":0,"7465":1,"7466":1,"7467":0,"7468":0,"7469":0,"7470":1,"7471":1,"7472":1,"7473":0,"7474":0,"7475":0,"7476":0,"7477":0,"7478":0,"7479":0,"7480":0,"7481":0,"7482":0,"7483":0,"7484":1,"7485":0,"7486":0,"7487":0,"7488":1,"7489":0,"7490":1,"7491":0,"7492":0,"7493":0,"7494":0,"7495":0,"7496":0,"7497":0,"7498":0,"7499":0,"7500":0,"7501":0,"7502":0,"7503":0,"7504":0,"7505":0,"7506":0,"7507":0,"7508":0,"7509":0,"7510":0,"7511":0,"7512":0,"7513":0,"7514":1,"7515":0,"7516":0,"7517":0,"7518":0,"7519":0,"7520":0,"7521":0,"7522":0,"7523":1,"7524":0,"7525":1,"7526":0,"7527":0,"7528":0,"7529":1,"7530":1,"7531":1,"7532":0,"7533":0,"7534":0,"7535":0,"7536":0,"7537":0,"7538":0,"7539":1,"7540":0,"7541":0,"7542":0,"7543":0,"7544":0,"7545":0,"7546":0,"7547":0,"7548":0,"7549":0,"7550":0,"7551":1,"7552":1,"7553":0,"7554":0,"7555":0,"7556":0,"7557":0,"7558":0,"7559":0,"7560":0,"7561":1,"7562":1,"7563":0,"7564":0,"7565":0,"7566":0,"7567":0,"7568":0,"7569":0,"7570":0,"7571":0,"7572":1,"7573":1,"7574":1,"7575":0,"7576":1,"7577":0,"7578":0,"7579":0,"7580":1,"7581":0,"7582":0,"7583":0,"7584":0,"7585":0,"7586":1,"7587":0,"7588":0,"7589":0,"7590":1,"7591":1,"7592":0,"7593":0,"7594":1,"7595":0,"7596":0,"7597":1,"7598":0,"7599":0,"7600":0,"7601":1,"7602":1,"7603":0,"7604":0,"7605":0,"7606":0,"7607":0,"7608":1,"7609":1,"7610":0,"7611":1,"7612":0,"7613":0,"7614":0,"7615":0,"7616":0,"7617":0,"7618":1,"7619":0,"7620":0,"7621":0,"7622":0,"7623":0,"7624":1,"7625":1,"7626":0,"7627":1,"7628":0,"7629":0,"7630":0,"7631":0,"7632":0,"7633":0,"7634":0,"7635":1,"7636":0,"7637":0,"7638":0,"7639":0,"7640":0,"7641":0,"7642":1,"7643":0,"7644":0,"7645":1,"7646":1,"7647":1,"7648":0,"7649":1,"7650":0,"7651":0,"7652":0,"7653":0,"7654":0,"7655":0,"7656":0,"7657":0,"7658":0,"7659":1,"7660":0,"7661":1,"7662":0,"7663":1,"7664":0,"7665":1,"7666":0,"7667":0,"7668":0,"7669":0,"7670":0,"7671":0,"7672":1,"7673":1,"7674":0,"7675":1,"7676":0,"7677":0,"7678":0,"7679":0,"7680":1,"7681":0,"7682":0,"7683":0,"7684":0,"7685":0,"7686":0,"7687":0,"7688":0,"7689":1,"7690":0,"7691":0,"7692":1,"7693":0,"7694":0,"7695":0,"7696":0,"7697":1,"7698":0,"7699":0,"7700":0,"7701":0,"7702":0,"7703":0,"7704":1,"7705":0,"7706":0,"7707":0,"7708":0,"7709":0,"7710":1,"7711":0,"7712":1,"7713":0,"7714":1,"7715":0,"7716":0,"7717":1,"7718":0,"7719":0,"7720":0,"7721":0,"7722":0,"7723":0,"7724":0,"7725":0,"7726":1,"7727":1,"7728":0,"7729":0,"7730":0,"7731":0,"7732":0,"7733":0,"7734":0,"7735":0,"7736":1,"7737":1,"7738":0,"7739":0,"7740":0,"7741":1,"7742":0,"7743":0,"7744":0,"7745":0,"7746":1,"7747":0,"7748":1,"7749":0,"7750":0,"7751":1,"7752":0,"7753":0,"7754":0,"7755":0,"7756":0,"7757":0,"7758":1,"7759":1,"7760":1,"7761":0,"7762":0,"7763":0,"7764":0,"7765":0,"7766":1,"7767":0,"7768":0,"7769":0,"7770":0,"7771":0,"7772":1,"7773":0,"7774":0,"7775":0,"7776":1,"7777":1,"7778":0,"7779":1,"7780":1,"7781":1,"7782":1,"7783":0,"7784":0,"7785":0,"7786":0,"7787":0,"7788":0,"7789":0,"7790":0,"7791":0,"7792":0,"7793":1,"7794":0,"7795":0,"7796":0,"7797":0,"7798":1,"7799":1,"7800":1,"7801":1,"7802":0,"7803":0,"7804":0,"7805":0,"7806":0,"7807":0,"7808":0,"7809":0,"7810":0,"7811":0,"7812":1,"7813":0,"7814":0,"7815":0,"7816":0,"7817":0,"7818":0,"7819":0,"7820":0,"7821":0,"7822":0,"7823":0,"7824":1,"7825":1,"7826":1,"7827":0,"7828":0,"7829":0,"7830":0,"7831":1,"7832":0,"7833":0,"7834":1,"7835":1,"7836":0,"7837":0,"7838":0,"7839":0,"7840":1,"7841":0,"7842":0,"7843":0,"7844":0,"7845":0,"7846":0,"7847":0,"7848":0,"7849":1,"7850":0,"7851":0,"7852":1,"7853":1,"7854":0,"7855":1,"7856":0,"7857":0,"7858":0,"7859":0,"7860":0,"7861":1,"7862":0,"7863":1,"7864":0,"7865":1,"7866":1,"7867":0,"7868":0,"7869":1,"7870":0,"7871":0,"7872":0,"7873":0,"7874":0,"7875":1,"7876":0,"7877":0,"7878":0,"7879":0,"7880":0,"7881":0,"7882":0,"7883":1,"7884":0,"7885":0,"7886":0,"7887":1,"7888":0,"7889":0,"7890":0,"7891":1,"7892":0,"7893":0,"7894":1,"7895":0,"7896":0,"7897":1,"7898":1,"7899":0,"7900":0,"7901":0,"7902":1,"7903":1,"7904":1,"7905":0,"7906":0,"7907":0,"7908":1,"7909":1,"7910":0,"7911":1,"7912":0,"7913":0,"7914":0,"7915":0,"7916":0,"7917":0,"7918":0,"7919":1,"7920":0,"7921":0,"7922":0,"7923":0,"7924":0,"7925":0,"7926":0,"7927":0,"7928":0,"7929":0,"7930":0,"7931":0,"7932":1,"7933":0,"7934":0,"7935":0,"7936":0,"7937":1,"7938":0,"7939":0,"7940":1,"7941":0,"7942":0,"7943":0,"7944":0,"7945":1,"7946":1,"7947":0,"7948":0,"7949":1,"7950":1,"7951":0,"7952":0,"7953":0,"7954":1,"7955":0,"7956":0,"7957":0,"7958":0,"7959":0,"7960":0,"7961":0,"7962":0,"7963":0,"7964":0,"7965":0,"7966":0,"7967":0,"7968":0,"7969":1,"7970":0,"7971":1,"7972":1,"7973":0,"7974":1,"7975":0,"7976":0,"7977":0,"7978":0,"7979":1,"7980":0,"7981":0,"7982":1,"7983":0,"7984":0,"7985":0,"7986":0,"7987":1,"7988":0,"7989":0,"7990":0,"7991":0,"7992":0,"7993":0,"7994":0,"7995":0,"7996":0,"7997":1,"7998":0,"7999":0,"8000":0,"8001":0,"8002":1,"8003":0,"8004":0,"8005":0,"8006":1,"8007":1,"8008":0,"8009":0,"8010":1,"8011":0,"8012":1,"8013":0,"8014":0,"8015":0,"8016":0,"8017":1,"8018":0,"8019":0,"8020":0,"8021":1,"8022":1,"8023":1,"8024":0,"8025":1,"8026":0,"8027":0,"8028":0,"8029":0,"8030":1,"8031":0,"8032":0,"8033":0,"8034":0,"8035":0,"8036":1,"8037":0,"8038":0,"8039":0,"8040":0,"8041":0,"8042":1,"8043":0,"8044":0,"8045":0,"8046":0,"8047":0,"8048":0,"8049":0,"8050":0,"8051":0,"8052":0,"8053":1,"8054":0,"8055":1,"8056":0,"8057":1,"8058":0,"8059":0,"8060":0,"8061":0,"8062":1,"8063":0,"8064":0,"8065":0,"8066":0,"8067":0,"8068":0,"8069":0,"8070":0,"8071":0,"8072":0,"8073":1,"8074":0,"8075":0,"8076":0,"8077":0,"8078":0,"8079":0,"8080":1,"8081":0,"8082":0,"8083":0,"8084":0,"8085":0,"8086":1,"8087":0,"8088":0,"8089":0,"8090":1,"8091":1,"8092":0,"8093":0,"8094":1,"8095":0,"8096":0,"8097":0,"8098":0,"8099":0,"8100":1,"8101":0,"8102":0,"8103":1,"8104":0,"8105":0,"8106":0,"8107":0,"8108":0,"8109":0,"8110":1,"8111":0,"8112":1,"8113":0,"8114":1,"8115":0,"8116":0,"8117":0,"8118":0,"8119":0,"8120":0,"8121":0,"8122":1,"8123":0,"8124":1,"8125":0,"8126":0,"8127":0,"8128":0,"8129":0,"8130":0,"8131":0,"8132":0,"8133":1,"8134":0,"8135":0,"8136":1,"8137":1,"8138":0,"8139":0,"8140":0,"8141":0,"8142":0,"8143":0,"8144":1,"8145":0,"8146":1,"8147":0,"8148":0,"8149":1,"8150":1,"8151":0,"8152":1,"8153":0,"8154":0,"8155":0,"8156":1,"8157":0,"8158":0,"8159":1,"8160":0,"8161":1,"8162":0,"8163":0,"8164":0,"8165":0,"8166":0,"8167":1,"8168":0,"8169":0,"8170":0,"8171":1,"8172":0,"8173":0,"8174":1,"8175":0,"8176":1,"8177":0,"8178":1,"8179":1,"8180":0,"8181":0,"8182":0,"8183":0,"8184":1,"8185":1,"8186":0,"8187":1,"8188":0,"8189":0,"8190":0,"8191":1,"8192":1,"8193":0,"8194":0,"8195":1,"8196":0,"8197":0,"8198":0,"8199":0,"8200":1,"8201":0,"8202":0,"8203":0,"8204":1,"8205":0,"8206":0,"8207":0,"8208":0,"8209":0,"8210":0,"8211":0,"8212":1,"8213":0,"8214":1,"8215":1,"8216":0,"8217":0,"8218":0,"8219":0,"8220":0,"8221":0,"8222":0,"8223":0,"8224":0,"8225":0,"8226":0,"8227":1,"8228":0,"8229":1,"8230":0,"8231":1,"8232":0,"8233":0,"8234":0,"8235":0,"8236":1,"8237":0,"8238":1,"8239":0,"8240":0,"8241":0,"8242":0,"8243":0,"8244":1,"8245":0,"8246":0,"8247":0,"8248":0,"8249":0,"8250":1,"8251":0,"8252":1,"8253":0,"8254":0,"8255":0,"8256":1,"8257":0,"8258":1,"8259":0,"8260":1,"8261":0,"8262":0,"8263":0,"8264":0,"8265":0,"8266":0,"8267":0,"8268":0,"8269":0,"8270":0,"8271":0,"8272":1,"8273":0,"8274":0,"8275":0,"8276":1,"8277":0,"8278":0,"8279":0,"8280":0,"8281":0,"8282":1,"8283":1,"8284":0,"8285":1,"8286":0,"8287":0,"8288":1,"8289":1,"8290":1,"8291":0,"8292":0,"8293":0,"8294":0,"8295":0,"8296":1,"8297":0,"8298":1,"8299":0,"8300":0,"8301":1,"8302":0,"8303":0,"8304":1,"8305":0,"8306":0,"8307":0,"8308":0,"8309":1,"8310":1,"8311":0,"8312":0,"8313":0,"8314":0,"8315":0,"8316":1,"8317":0,"8318":1,"8319":0,"8320":1,"8321":1,"8322":0,"8323":1,"8324":0,"8325":0,"8326":0,"8327":0,"8328":0,"8329":1,"8330":0,"8331":0,"8332":0,"8333":0,"8334":0,"8335":1,"8336":0,"8337":0,"8338":0,"8339":0,"8340":1,"8341":0,"8342":0,"8343":0,"8344":0,"8345":0,"8346":0,"8347":0,"8348":0,"8349":0,"8350":1,"8351":0,"8352":1,"8353":0,"8354":0,"8355":0,"8356":0,"8357":1,"8358":1,"8359":1,"8360":0,"8361":1,"8362":1,"8363":0,"8364":1,"8365":0,"8366":0,"8367":1,"8368":1,"8369":1,"8370":1,"8371":0,"8372":0,"8373":0,"8374":0,"8375":1,"8376":0,"8377":0,"8378":0,"8379":0,"8380":0,"8381":0,"8382":0,"8383":1,"8384":0,"8385":0,"8386":0,"8387":0,"8388":0,"8389":0,"8390":1,"8391":0,"8392":0,"8393":1,"8394":1,"8395":0,"8396":1,"8397":1,"8398":0,"8399":0,"8400":0,"8401":0,"8402":0,"8403":1,"8404":1,"8405":0,"8406":1,"8407":0,"8408":1,"8409":0,"8410":0,"8411":0,"8412":1,"8413":0,"8414":0,"8415":1,"8416":1,"8417":0,"8418":0,"8419":0,"8420":0,"8421":0,"8422":1,"8423":1,"8424":0,"8425":0,"8426":1,"8427":0,"8428":0,"8429":0,"8430":0,"8431":0,"8432":0,"8433":1,"8434":0,"8435":0,"8436":1,"8437":0,"8438":0,"8439":0,"8440":1,"8441":0,"8442":0,"8443":0,"8444":0,"8445":0,"8446":0,"8447":0,"8448":0,"8449":0,"8450":0,"8451":0,"8452":0,"8453":0,"8454":0,"8455":0,"8456":0,"8457":0,"8458":0,"8459":0,"8460":0,"8461":0,"8462":0,"8463":0,"8464":0,"8465":0,"8466":0,"8467":1,"8468":0,"8469":0,"8470":1,"8471":0,"8472":1,"8473":0,"8474":0,"8475":0,"8476":1,"8477":0,"8478":0,"8479":0,"8480":0,"8481":0,"8482":1,"8483":0,"8484":0,"8485":0,"8486":0,"8487":0,"8488":0,"8489":0,"8490":0,"8491":0,"8492":0,"8493":0,"8494":0,"8495":0,"8496":0,"8497":0,"8498":0,"8499":0,"8500":0,"8501":0,"8502":0,"8503":0,"8504":0,"8505":0,"8506":0,"8507":0,"8508":1,"8509":0,"8510":0,"8511":0,"8512":0,"8513":0,"8514":0,"8515":0,"8516":0,"8517":0,"8518":0,"8519":0,"8520":0,"8521":0,"8522":1,"8523":0,"8524":0,"8525":0,"8526":0,"8527":0,"8528":1,"8529":0,"8530":1,"8531":0,"8532":1,"8533":0,"8534":0,"8535":0,"8536":0,"8537":0,"8538":1,"8539":0,"8540":0,"8541":0,"8542":0,"8543":0,"8544":0,"8545":0,"8546":1,"8547":0,"8548":0,"8549":0,"8550":0,"8551":0,"8552":0,"8553":0,"8554":0,"8555":1,"8556":0,"8557":0,"8558":0,"8559":1,"8560":0,"8561":0,"8562":0,"8563":0,"8564":0,"8565":0,"8566":0,"8567":0,"8568":0,"8569":0,"8570":1,"8571":0,"8572":0,"8573":1,"8574":0,"8575":0,"8576":1,"8577":0,"8578":0,"8579":0,"8580":0,"8581":0,"8582":1,"8583":0,"8584":1,"8585":0,"8586":0,"8587":0,"8588":0,"8589":0,"8590":1,"8591":0,"8592":0,"8593":0,"8594":0,"8595":0,"8596":0,"8597":0,"8598":1,"8599":0,"8600":1,"8601":0,"8602":1,"8603":0,"8604":0,"8605":1,"8606":0,"8607":0,"8608":0,"8609":1,"8610":0,"8611":1,"8612":1,"8613":0,"8614":0,"8615":0,"8616":0,"8617":0,"8618":1,"8619":1,"8620":0,"8621":0,"8622":1,"8623":0,"8624":1,"8625":1,"8626":1,"8627":0,"8628":0,"8629":0,"8630":0,"8631":0,"8632":1,"8633":0,"8634":0,"8635":0,"8636":0,"8637":0,"8638":1,"8639":0,"8640":0,"8641":0,"8642":0,"8643":1,"8644":1,"8645":0,"8646":0,"8647":0,"8648":0,"8649":0,"8650":0,"8651":0,"8652":0,"8653":0,"8654":0,"8655":1,"8656":0,"8657":1,"8658":0,"8659":0,"8660":0,"8661":0,"8662":1,"8663":0,"8664":0,"8665":1,"8666":0,"8667":0,"8668":0,"8669":0,"8670":0,"8671":0,"8672":0,"8673":1,"8674":1,"8675":1,"8676":0,"8677":1,"8678":0,"8679":1,"8680":0,"8681":0,"8682":0,"8683":1,"8684":0,"8685":0,"8686":0,"8687":0,"8688":1,"8689":0,"8690":0,"8691":1,"8692":0,"8693":0,"8694":0,"8695":0,"8696":0,"8697":0,"8698":0,"8699":0,"8700":0,"8701":0,"8702":0,"8703":1,"8704":0,"8705":1,"8706":1,"8707":0,"8708":0,"8709":0,"8710":1,"8711":0,"8712":1,"8713":0,"8714":0,"8715":1,"8716":1,"8717":0,"8718":1,"8719":0,"8720":0,"8721":0,"8722":0,"8723":0,"8724":0,"8725":0,"8726":0,"8727":1,"8728":0,"8729":0,"8730":0,"8731":0,"8732":0,"8733":0,"8734":0,"8735":1,"8736":1,"8737":0,"8738":0,"8739":0,"8740":0,"8741":0,"8742":1,"8743":0,"8744":1,"8745":0,"8746":0,"8747":0,"8748":1,"8749":1,"8750":0,"8751":0,"8752":0,"8753":0,"8754":0,"8755":0,"8756":0,"8757":0,"8758":1,"8759":0,"8760":0,"8761":0,"8762":0,"8763":1,"8764":0,"8765":0,"8766":0,"8767":0,"8768":0,"8769":0,"8770":0,"8771":1,"8772":0,"8773":0,"8774":0,"8775":0,"8776":0,"8777":1,"8778":0,"8779":0,"8780":1,"8781":0,"8782":0,"8783":1,"8784":0,"8785":1,"8786":0,"8787":0,"8788":0,"8789":0,"8790":1,"8791":0,"8792":0,"8793":0,"8794":0,"8795":0,"8796":0,"8797":0,"8798":1,"8799":0,"8800":0,"8801":1,"8802":0,"8803":0,"8804":0,"8805":0,"8806":0,"8807":1,"8808":1,"8809":0,"8810":0,"8811":0,"8812":1,"8813":0,"8814":0,"8815":0,"8816":0,"8817":0,"8818":0,"8819":0,"8820":0,"8821":0,"8822":0,"8823":1,"8824":0,"8825":0,"8826":0,"8827":1,"8828":0,"8829":0,"8830":0,"8831":1,"8832":1,"8833":0,"8834":1,"8835":0,"8836":0,"8837":0,"8838":0,"8839":0,"8840":0,"8841":0,"8842":0,"8843":0,"8844":1,"8845":0,"8846":0,"8847":0,"8848":1,"8849":0,"8850":0,"8851":0,"8852":0,"8853":0,"8854":0,"8855":1,"8856":1,"8857":0,"8858":0,"8859":0,"8860":0,"8861":0,"8862":0,"8863":1,"8864":0,"8865":0,"8866":0,"8867":0,"8868":0,"8869":0,"8870":0,"8871":0,"8872":0,"8873":0,"8874":0,"8875":0,"8876":0,"8877":0,"8878":0,"8879":0,"8880":1,"8881":1,"8882":0,"8883":0,"8884":0,"8885":0,"8886":1,"8887":1,"8888":0,"8889":0,"8890":0,"8891":0,"8892":0,"8893":0,"8894":0,"8895":0,"8896":0,"8897":0,"8898":0,"8899":1,"8900":0,"8901":0,"8902":0,"8903":0,"8904":0,"8905":0,"8906":0,"8907":0,"8908":0,"8909":0,"8910":0,"8911":0,"8912":0,"8913":0,"8914":0,"8915":1,"8916":0,"8917":0,"8918":0,"8919":0,"8920":0,"8921":0,"8922":0,"8923":0,"8924":0,"8925":0,"8926":0,"8927":1,"8928":0,"8929":1,"8930":0,"8931":0,"8932":0,"8933":0,"8934":0,"8935":0,"8936":0,"8937":1,"8938":0,"8939":1,"8940":0,"8941":1,"8942":0,"8943":0,"8944":0,"8945":0,"8946":0,"8947":1,"8948":1,"8949":0,"8950":0,"8951":0,"8952":0,"8953":0,"8954":1,"8955":0,"8956":0,"8957":1,"8958":0,"8959":1,"8960":1,"8961":0,"8962":0,"8963":0,"8964":0,"8965":0,"8966":0,"8967":0,"8968":0,"8969":0,"8970":0,"8971":0,"8972":0,"8973":1,"8974":1,"8975":0,"8976":0,"8977":0,"8978":0,"8979":0,"8980":1,"8981":1,"8982":1,"8983":1,"8984":0,"8985":1,"8986":0,"8987":0,"8988":0,"8989":0,"8990":1,"8991":0,"8992":0,"8993":1,"8994":0,"8995":0,"8996":0,"8997":0,"8998":0,"8999":0,"9000":1,"9001":0,"9002":0,"9003":1,"9004":0,"9005":1,"9006":0,"9007":0,"9008":1,"9009":1,"9010":0,"9011":1,"9012":0,"9013":1,"9014":0,"9015":0,"9016":0,"9017":0,"9018":0,"9019":0,"9020":0,"9021":0,"9022":1,"9023":0,"9024":0,"9025":0,"9026":0,"9027":1,"9028":0,"9029":0,"9030":0,"9031":1,"9032":0,"9033":0,"9034":1,"9035":0,"9036":0,"9037":0,"9038":0,"9039":0,"9040":0,"9041":0,"9042":0,"9043":0,"9044":0,"9045":1,"9046":1,"9047":0,"9048":1,"9049":0,"9050":0,"9051":0,"9052":0,"9053":1,"9054":1,"9055":1,"9056":0,"9057":0,"9058":1,"9059":0,"9060":0,"9061":1,"9062":0,"9063":0,"9064":0,"9065":0,"9066":0,"9067":0,"9068":0,"9069":0,"9070":0,"9071":0,"9072":1,"9073":0,"9074":0,"9075":1,"9076":1,"9077":0,"9078":1,"9079":0,"9080":0,"9081":1,"9082":0,"9083":0,"9084":1,"9085":0,"9086":0,"9087":0,"9088":1,"9089":0,"9090":1,"9091":0,"9092":0,"9093":0,"9094":0,"9095":0,"9096":0,"9097":1,"9098":1,"9099":0,"9100":1,"9101":0,"9102":0,"9103":1,"9104":0,"9105":1,"9106":0,"9107":0,"9108":0,"9109":0,"9110":0,"9111":0,"9112":0,"9113":0,"9114":1,"9115":0,"9116":0,"9117":1,"9118":0,"9119":0,"9120":1,"9121":1,"9122":0,"9123":0,"9124":1,"9125":0,"9126":1,"9127":0,"9128":0,"9129":0,"9130":0,"9131":1,"9132":1,"9133":1,"9134":0,"9135":0,"9136":0,"9137":0,"9138":1,"9139":0,"9140":0,"9141":1,"9142":0,"9143":0,"9144":1,"9145":0,"9146":0,"9147":0,"9148":0,"9149":0,"9150":0,"9151":0,"9152":0,"9153":0,"9154":0,"9155":0,"9156":0,"9157":1,"9158":0,"9159":0,"9160":1,"9161":0,"9162":1,"9163":0,"9164":0,"9165":0,"9166":0,"9167":1,"9168":1,"9169":0,"9170":0,"9171":0,"9172":0,"9173":0,"9174":0,"9175":1,"9176":0,"9177":0,"9178":0,"9179":0,"9180":0,"9181":0,"9182":1,"9183":1,"9184":0,"9185":1,"9186":0,"9187":0,"9188":0,"9189":0,"9190":0,"9191":1,"9192":0,"9193":1,"9194":0,"9195":0,"9196":0,"9197":0,"9198":0,"9199":0,"9200":0,"9201":1,"9202":0,"9203":1,"9204":0,"9205":0,"9206":0,"9207":1,"9208":0,"9209":0,"9210":1,"9211":0,"9212":0,"9213":0,"9214":1,"9215":0,"9216":0,"9217":0,"9218":0,"9219":0,"9220":1,"9221":0,"9222":0,"9223":1,"9224":0,"9225":0,"9226":1,"9227":0,"9228":0,"9229":0,"9230":0,"9231":0,"9232":0,"9233":0,"9234":1,"9235":1,"9236":0,"9237":0,"9238":0,"9239":1,"9240":1,"9241":0,"9242":0,"9243":0,"9244":0,"9245":1,"9246":1,"9247":0,"9248":0,"9249":0,"9250":0,"9251":0,"9252":0,"9253":0,"9254":0,"9255":0,"9256":1,"9257":0,"9258":0,"9259":0,"9260":0,"9261":0,"9262":0,"9263":1,"9264":1,"9265":1,"9266":0,"9267":0,"9268":0,"9269":1,"9270":0,"9271":0,"9272":0,"9273":1,"9274":0,"9275":0,"9276":0,"9277":1,"9278":1,"9279":0,"9280":0,"9281":1,"9282":0,"9283":0,"9284":1,"9285":0,"9286":1,"9287":0,"9288":0,"9289":0,"9290":0,"9291":0,"9292":0,"9293":0,"9294":0,"9295":0,"9296":0,"9297":0,"9298":1,"9299":1,"9300":1,"9301":0,"9302":0,"9303":0,"9304":1,"9305":1,"9306":1,"9307":0,"9308":1,"9309":1,"9310":0,"9311":0,"9312":0,"9313":0,"9314":1,"9315":0,"9316":1,"9317":0,"9318":0,"9319":0,"9320":0,"9321":0,"9322":0,"9323":0,"9324":0,"9325":0,"9326":1,"9327":0,"9328":0,"9329":0,"9330":0,"9331":0,"9332":1,"9333":1,"9334":0,"9335":1,"9336":0,"9337":0,"9338":0,"9339":1,"9340":0,"9341":0,"9342":0,"9343":0,"9344":0,"9345":0,"9346":1,"9347":0,"9348":0,"9349":0,"9350":1,"9351":0,"9352":0,"9353":0,"9354":0,"9355":0,"9356":0,"9357":0,"9358":0,"9359":0,"9360":0,"9361":1,"9362":0,"9363":0,"9364":0,"9365":0,"9366":0,"9367":1,"9368":0,"9369":0,"9370":1,"9371":0,"9372":0,"9373":0,"9374":1,"9375":0,"9376":1,"9377":0,"9378":0,"9379":0,"9380":0,"9381":0,"9382":0,"9383":1,"9384":0,"9385":0,"9386":0,"9387":0,"9388":1,"9389":0,"9390":0,"9391":0,"9392":0,"9393":0,"9394":0,"9395":1,"9396":0,"9397":0,"9398":0,"9399":0,"9400":1,"9401":0,"9402":1,"9403":0,"9404":0,"9405":0,"9406":1,"9407":0,"9408":1,"9409":0,"9410":1,"9411":0,"9412":0,"9413":1,"9414":0,"9415":1,"9416":0,"9417":0,"9418":0,"9419":0,"9420":0,"9421":0,"9422":1,"9423":0,"9424":0,"9425":1,"9426":0,"9427":0,"9428":1,"9429":0,"9430":0,"9431":0,"9432":1,"9433":0,"9434":1,"9435":1,"9436":1,"9437":0,"9438":0,"9439":1,"9440":0,"9441":0,"9442":0,"9443":0,"9444":0,"9445":0,"9446":0,"9447":0,"9448":1,"9449":1,"9450":0,"9451":0,"9452":0,"9453":0,"9454":1,"9455":0,"9456":0,"9457":0,"9458":0,"9459":1,"9460":0,"9461":0,"9462":0,"9463":0,"9464":0,"9465":1,"9466":0,"9467":1,"9468":1,"9469":0,"9470":1,"9471":0,"9472":0,"9473":1,"9474":1,"9475":0,"9476":0,"9477":0,"9478":0,"9479":0,"9480":0,"9481":1,"9482":1,"9483":0,"9484":0,"9485":0,"9486":0,"9487":0,"9488":0,"9489":0,"9490":0,"9491":0,"9492":0,"9493":1,"9494":1,"9495":0,"9496":0,"9497":1,"9498":0,"9499":1,"9500":1,"9501":0,"9502":0,"9503":0,"9504":1,"9505":1,"9506":0,"9507":0,"9508":0,"9509":0,"9510":0,"9511":0,"9512":1,"9513":0,"9514":0,"9515":0,"9516":0,"9517":0,"9518":0,"9519":0,"9520":1,"9521":0,"9522":0,"9523":0,"9524":0,"9525":1,"9526":0,"9527":0,"9528":0,"9529":0,"9530":1,"9531":0,"9532":1,"9533":0,"9534":0,"9535":1,"9536":1,"9537":0,"9538":1,"9539":0,"9540":0,"9541":0,"9542":0,"9543":0,"9544":0,"9545":0,"9546":0,"9547":0,"9548":1,"9549":1,"9550":0,"9551":0,"9552":0,"9553":0,"9554":1,"9555":0,"9556":0,"9557":0,"9558":0,"9559":0,"9560":0,"9561":0,"9562":0,"9563":1,"9564":0,"9565":1,"9566":0,"9567":1,"9568":0,"9569":0,"9570":0,"9571":1,"9572":1,"9573":0,"9574":0,"9575":0,"9576":1,"9577":0,"9578":0,"9579":0,"9580":1,"9581":0,"9582":0,"9583":0,"9584":0,"9585":0,"9586":0,"9587":0,"9588":0,"9589":0,"9590":1,"9591":0,"9592":0,"9593":0,"9594":1,"9595":0,"9596":0,"9597":0,"9598":0,"9599":0,"9600":0,"9601":0,"9602":1,"9603":1,"9604":0,"9605":0,"9606":0,"9607":1,"9608":0,"9609":0,"9610":0,"9611":0,"9612":1,"9613":0,"9614":0,"9615":0,"9616":0,"9617":0,"9618":1,"9619":0,"9620":0,"9621":0,"9622":0,"9623":0,"9624":0,"9625":0,"9626":0,"9627":0,"9628":0,"9629":1,"9630":1,"9631":0,"9632":0,"9633":0,"9634":0,"9635":0,"9636":0,"9637":0,"9638":0,"9639":0,"9640":0,"9641":0,"9642":0,"9643":1,"9644":0,"9645":0,"9646":1,"9647":1,"9648":0,"9649":1,"9650":0,"9651":0,"9652":0,"9653":0,"9654":0,"9655":1,"9656":0,"9657":0,"9658":0,"9659":1,"9660":0,"9661":0,"9662":1,"9663":0,"9664":1,"9665":0,"9666":1,"9667":0,"9668":0,"9669":0,"9670":0,"9671":0,"9672":0,"9673":0,"9674":0,"9675":0,"9676":1,"9677":1,"9678":0,"9679":1,"9680":0,"9681":0,"9682":1,"9683":0,"9684":0,"9685":0,"9686":0,"9687":0,"9688":0,"9689":0,"9690":1,"9691":0,"9692":0,"9693":0,"9694":0,"9695":1,"9696":0,"9697":0,"9698":0,"9699":0,"9700":0,"9701":0,"9702":0,"9703":0,"9704":0,"9705":0,"9706":0,"9707":0,"9708":0,"9709":0,"9710":0,"9711":0,"9712":0,"9713":0,"9714":1,"9715":0,"9716":0,"9717":1,"9718":0,"9719":0,"9720":1,"9721":0,"9722":1,"9723":0,"9724":0,"9725":1,"9726":1,"9727":1,"9728":0,"9729":1,"9730":0,"9731":0,"9732":0,"9733":0,"9734":1,"9735":0,"9736":0,"9737":1,"9738":1,"9739":0,"9740":0,"9741":1,"9742":0,"9743":0,"9744":0,"9745":0,"9746":0,"9747":0,"9748":1,"9749":0,"9750":0,"9751":1,"9752":1,"9753":0,"9754":0,"9755":1,"9756":0,"9757":0,"9758":0,"9759":0,"9760":0,"9761":1,"9762":0,"9763":0,"9764":0,"9765":1,"9766":0,"9767":0,"9768":0,"9769":0,"9770":0,"9771":0,"9772":0,"9773":0,"9774":0,"9775":0,"9776":0,"9777":0,"9778":0,"9779":1,"9780":1,"9781":0,"9782":1,"9783":0,"9784":0,"9785":0,"9786":0,"9787":1,"9788":1,"9789":1,"9790":0,"9791":0,"9792":0,"9793":0,"9794":0,"9795":0,"9796":1,"9797":0,"9798":0,"9799":1,"9800":0,"9801":0,"9802":1,"9803":0,"9804":0,"9805":0,"9806":1,"9807":1,"9808":0,"9809":0,"9810":0,"9811":0,"9812":1,"9813":0,"9814":0,"9815":1,"9816":1,"9817":0,"9818":0,"9819":0,"9820":1,"9821":0,"9822":1,"9823":0,"9824":1,"9825":1,"9826":0,"9827":1,"9828":0,"9829":0,"9830":0,"9831":1,"9832":0,"9833":1,"9834":0,"9835":0,"9836":1,"9837":1,"9838":1,"9839":0,"9840":1,"9841":0,"9842":0,"9843":0,"9844":1,"9845":0,"9846":0,"9847":0,"9848":1,"9849":0,"9850":1,"9851":0,"9852":0,"9853":0,"9854":0,"9855":0,"9856":1,"9857":1,"9858":0,"9859":0,"9860":0,"9861":0,"9862":0,"9863":0,"9864":0,"9865":0,"9866":0,"9867":0,"9868":0,"9869":0,"9870":1,"9871":1,"9872":0,"9873":0,"9874":0,"9875":0,"9876":0,"9877":1,"9878":0,"9879":0,"9880":0,"9881":0,"9882":0,"9883":0,"9884":0,"9885":0,"9886":1,"9887":0,"9888":1,"9889":0,"9890":0,"9891":0,"9892":0,"9893":0,"9894":0,"9895":1,"9896":0,"9897":0,"9898":0,"9899":0,"9900":1,"9901":1,"9902":0,"9903":0,"9904":0,"9905":0,"9906":0,"9907":0,"9908":0,"9909":0,"9910":0,"9911":0,"9912":0,"9913":0,"9914":0,"9915":0,"9916":0,"9917":0,"9918":0,"9919":1,"9920":0,"9921":1,"9922":0,"9923":0,"9924":0,"9925":0,"9926":0,"9927":0,"9928":1,"9929":0,"9930":0,"9931":0,"9932":0,"9933":0,"9934":0,"9935":0,"9936":0,"9937":1,"9938":1,"9939":1,"9940":0,"9941":0,"9942":0,"9943":0,"9944":0,"9945":0,"9946":0,"9947":0,"9948":0,"9949":0,"9950":1,"9951":0,"9952":1,"9953":0,"9954":0,"9955":0,"9956":1,"9957":0,"9958":0,"9959":1,"9960":0,"9961":0,"9962":1,"9963":0,"9964":0,"9965":0,"9966":0,"9967":0,"9968":0,"9969":0,"9970":0,"9971":0,"9972":0,"9973":0,"9974":0,"9975":1,"9976":0,"9977":0,"9978":1,"9979":0,"9980":0,"9981":1,"9982":0,"9983":0,"9984":0,"9985":0,"9986":0,"9987":1,"9988":0,"9989":0,"9990":0,"9991":1,"9992":0,"9993":0,"9994":0,"9995":0,"9996":0,"9997":0,"9998":1,"9999":0,"10000":0,"10001":0,"10002":0,"10003":1,"10004":0,"10005":0,"10006":1,"10007":1,"10008":0,"10009":0,"10010":1,"10011":0,"10012":0,"10013":0,"10014":1,"10015":0,"10016":1,"10017":0,"10018":0,"10019":0,"10020":0,"10021":0,"10022":0,"10023":0,"10024":0,"10025":0,"10026":0,"10027":0,"10028":0,"10029":0,"10030":0,"10031":0,"10032":0,"10033":0,"10034":0,"10035":0,"10036":1,"10037":1,"10038":0,"10039":0,"10040":0,"10041":0,"10042":0,"10043":0,"10044":0,"10045":0,"10046":0,"10047":0,"10048":0,"10049":0,"10050":0,"10051":0,"10052":1,"10053":0,"10054":1,"10055":0,"10056":1,"10057":1,"10058":0,"10059":0,"10060":0,"10061":0,"10062":0,"10063":0,"10064":0,"10065":0,"10066":0,"10067":0,"10068":1,"10069":0,"10070":1,"10071":0,"10072":0,"10073":0,"10074":0,"10075":1,"10076":1,"10077":0,"10078":0,"10079":1,"10080":1,"10081":0,"10082":1,"10083":0,"10084":0,"10085":0,"10086":0,"10087":0,"10088":0,"10089":0,"10090":0,"10091":1,"10092":0,"10093":0,"10094":0,"10095":0,"10096":0,"10097":0,"10098":1,"10099":1,"10100":0,"10101":1,"10102":0,"10103":0,"10104":0,"10105":0,"10106":0,"10107":0,"10108":0,"10109":0,"10110":0,"10111":0,"10112":0,"10113":1,"10114":0,"10115":0,"10116":1,"10117":1,"10118":0,"10119":0,"10120":0,"10121":1,"10122":1,"10123":0,"10124":0,"10125":0,"10126":1,"10127":0,"10128":0,"10129":0,"10130":0,"10131":0,"10132":0,"10133":0,"10134":0,"10135":0,"10136":0,"10137":0,"10138":0,"10139":0,"10140":0,"10141":0,"10142":0,"10143":1,"10144":1,"10145":0,"10146":0,"10147":1,"10148":0,"10149":0,"10150":0,"10151":0,"10152":0,"10153":0,"10154":0,"10155":1,"10156":1,"10157":0,"10158":0,"10159":0,"10160":1,"10161":0,"10162":0,"10163":0,"10164":1,"10165":1,"10166":1,"10167":0,"10168":0,"10169":1,"10170":1,"10171":0,"10172":0,"10173":1,"10174":1,"10175":0,"10176":0,"10177":0,"10178":0,"10179":0,"10180":0,"10181":0,"10182":0,"10183":0,"10184":0,"10185":0,"10186":0,"10187":0,"10188":0,"10189":1,"10190":0,"10191":0,"10192":0,"10193":0,"10194":0,"10195":0,"10196":0,"10197":1,"10198":0,"10199":0,"10200":1,"10201":0,"10202":0,"10203":1,"10204":0,"10205":0,"10206":0,"10207":1,"10208":0,"10209":0,"10210":0,"10211":0,"10212":1,"10213":0,"10214":0,"10215":0,"10216":0,"10217":0,"10218":0,"10219":0,"10220":1,"10221":0,"10222":0,"10223":1,"10224":0,"10225":0,"10226":1,"10227":1,"10228":1,"10229":0,"10230":0,"10231":0,"10232":0,"10233":1,"10234":0,"10235":1,"10236":0,"10237":0,"10238":1,"10239":0,"10240":0,"10241":0,"10242":0,"10243":1,"10244":0,"10245":0,"10246":0,"10247":0,"10248":0,"10249":1,"10250":1,"10251":0,"10252":0,"10253":0,"10254":1,"10255":1,"10256":1,"10257":1,"10258":0,"10259":0,"10260":1,"10261":0,"10262":0,"10263":1,"10264":1,"10265":0,"10266":0,"10267":0,"10268":0,"10269":0,"10270":0,"10271":1,"10272":0,"10273":0,"10274":1,"10275":1,"10276":0,"10277":0,"10278":1,"10279":0,"10280":1,"10281":0,"10282":0,"10283":0,"10284":0,"10285":1,"10286":0,"10287":0,"10288":1,"10289":1,"10290":0,"10291":0,"10292":1,"10293":0,"10294":0,"10295":1,"10296":0,"10297":1,"10298":1,"10299":1,"10300":0,"10301":1,"10302":0,"10303":0,"10304":1,"10305":0,"10306":0,"10307":0,"10308":0,"10309":0,"10310":1,"10311":0,"10312":0,"10313":0,"10314":0,"10315":0,"10316":1,"10317":0,"10318":1,"10319":0,"10320":1,"10321":1,"10322":1,"10323":0,"10324":0,"10325":0,"10326":0,"10327":1,"10328":0,"10329":0,"10330":0,"10331":0,"10332":0,"10333":0,"10334":0,"10335":0,"10336":1,"10337":0,"10338":0,"10339":1,"10340":0,"10341":0,"10342":0,"10343":1,"10344":0,"10345":1,"10346":0,"10347":0,"10348":0,"10349":0,"10350":1,"10351":0,"10352":0,"10353":0,"10354":1,"10355":0,"10356":0,"10357":1,"10358":0,"10359":0,"10360":0,"10361":1,"10362":0,"10363":0,"10364":0,"10365":0,"10366":0,"10367":0,"10368":0,"10369":0,"10370":0,"10371":0,"10372":0,"10373":1,"10374":0,"10375":0,"10376":0,"10377":0,"10378":1,"10379":0,"10380":0,"10381":0,"10382":0,"10383":0,"10384":0,"10385":0,"10386":1,"10387":0,"10388":1,"10389":0,"10390":0,"10391":0,"10392":0,"10393":0,"10394":1,"10395":0,"10396":0,"10397":0,"10398":1,"10399":0,"10400":0,"10401":1,"10402":0,"10403":0,"10404":0,"10405":1,"10406":1,"10407":0,"10408":0,"10409":1,"10410":1,"10411":0,"10412":0,"10413":1,"10414":1,"10415":1,"10416":1,"10417":0,"10418":0,"10419":0,"10420":0,"10421":0,"10422":0,"10423":0,"10424":1,"10425":1,"10426":0,"10427":1,"10428":1,"10429":1,"10430":0,"10431":0,"10432":0,"10433":0,"10434":0,"10435":0,"10436":0,"10437":0,"10438":0,"10439":0,"10440":0,"10441":0,"10442":0,"10443":0,"10444":0,"10445":0,"10446":0,"10447":0,"10448":0,"10449":0,"10450":0,"10451":0,"10452":0,"10453":1,"10454":0,"10455":0,"10456":0,"10457":0,"10458":0,"10459":0,"10460":0,"10461":0,"10462":0,"10463":0,"10464":0,"10465":1,"10466":0,"10467":0,"10468":0,"10469":0,"10470":0,"10471":0,"10472":0,"10473":0,"10474":0,"10475":0,"10476":0,"10477":0,"10478":0,"10479":0,"10480":0,"10481":0,"10482":0,"10483":0,"10484":0,"10485":0,"10486":0,"10487":0,"10488":0,"10489":1,"10490":0,"10491":0,"10492":0,"10493":1,"10494":0,"10495":1,"10496":1,"10497":1,"10498":0,"10499":1,"10500":0,"10501":0,"10502":0,"10503":0,"10504":0,"10505":0,"10506":0,"10507":0,"10508":1,"10509":1,"10510":0,"10511":0,"10512":0,"10513":0,"10514":0,"10515":0,"10516":0,"10517":0,"10518":0,"10519":0,"10520":0,"10521":0,"10522":0,"10523":0,"10524":0,"10525":1,"10526":1,"10527":0,"10528":1,"10529":0,"10530":0,"10531":0,"10532":0,"10533":0,"10534":0,"10535":0,"10536":0,"10537":0,"10538":1,"10539":1,"10540":1,"10541":0,"10542":0,"10543":0,"10544":0,"10545":1,"10546":1,"10547":0,"10548":0,"10549":1,"10550":1,"10551":0,"10552":0,"10553":0,"10554":0,"10555":0,"10556":0,"10557":0,"10558":0,"10559":1,"10560":1,"10561":1,"10562":0,"10563":0,"10564":1,"10565":0,"10566":0,"10567":1,"10568":1,"10569":1,"10570":0,"10571":0,"10572":0,"10573":0,"10574":0,"10575":0,"10576":0,"10577":0,"10578":0,"10579":0,"10580":1,"10581":0,"10582":1,"10583":0,"10584":0,"10585":0,"10586":0,"10587":1,"10588":0,"10589":0,"10590":1,"10591":1,"10592":1,"10593":0,"10594":0,"10595":0,"10596":0,"10597":0,"10598":0,"10599":1,"10600":0,"10601":0,"10602":1,"10603":0,"10604":0,"10605":0,"10606":0,"10607":0,"10608":0,"10609":0,"10610":1,"10611":0,"10612":0,"10613":0,"10614":1,"10615":0,"10616":1,"10617":0,"10618":0,"10619":0,"10620":0,"10621":0,"10622":0,"10623":1,"10624":1,"10625":0,"10626":0,"10627":0,"10628":0,"10629":0,"10630":0,"10631":0,"10632":0,"10633":0,"10634":1,"10635":0,"10636":0,"10637":0,"10638":0,"10639":1,"10640":0,"10641":0,"10642":1,"10643":1,"10644":0,"10645":0,"10646":0,"10647":0,"10648":1,"10649":1,"10650":0,"10651":0,"10652":1,"10653":0,"10654":0,"10655":0,"10656":0,"10657":0,"10658":1,"10659":0,"10660":0,"10661":0,"10662":0,"10663":0,"10664":0,"10665":0,"10666":0,"10667":0,"10668":0,"10669":0,"10670":1,"10671":0,"10672":0,"10673":0,"10674":0,"10675":0,"10676":0,"10677":0,"10678":1,"10679":1,"10680":0,"10681":1,"10682":0,"10683":1,"10684":0,"10685":1,"10686":0,"10687":0,"10688":0,"10689":0,"10690":0,"10691":0,"10692":0,"10693":0,"10694":0,"10695":0,"10696":0,"10697":0,"10698":1,"10699":0,"10700":0,"10701":0,"10702":0,"10703":0,"10704":0,"10705":0,"10706":0,"10707":0,"10708":0,"10709":0,"10710":0,"10711":0,"10712":0,"10713":0,"10714":1,"10715":0,"10716":0,"10717":0,"10718":0,"10719":0,"10720":0,"10721":1,"10722":0,"10723":0,"10724":0,"10725":0,"10726":0,"10727":0,"10728":0,"10729":0,"10730":0,"10731":0,"10732":1,"10733":1,"10734":0,"10735":0,"10736":1,"10737":0,"10738":0,"10739":0,"10740":0,"10741":0,"10742":1,"10743":0,"10744":0,"10745":0,"10746":1,"10747":1,"10748":0,"10749":0,"10750":0,"10751":0,"10752":0,"10753":0,"10754":0,"10755":0,"10756":0,"10757":0,"10758":0,"10759":0,"10760":0,"10761":1,"10762":0,"10763":0,"10764":0,"10765":1,"10766":1,"10767":1,"10768":1,"10769":1,"10770":0,"10771":1,"10772":0,"10773":1,"10774":0,"10775":0,"10776":0,"10777":0,"10778":1,"10779":0,"10780":0,"10781":0,"10782":0,"10783":0,"10784":0,"10785":0,"10786":0,"10787":1,"10788":0,"10789":0,"10790":0,"10791":0,"10792":1,"10793":0,"10794":0,"10795":0,"10796":0,"10797":0,"10798":1,"10799":0,"10800":0,"10801":0,"10802":0,"10803":0,"10804":0,"10805":1,"10806":0,"10807":0,"10808":1,"10809":0,"10810":0,"10811":0,"10812":0,"10813":0,"10814":0,"10815":0,"10816":0,"10817":0,"10818":1,"10819":1,"10820":0,"10821":1,"10822":1,"10823":0,"10824":0,"10825":0,"10826":0,"10827":0,"10828":0,"10829":0,"10830":0,"10831":0,"10832":0,"10833":0,"10834":0,"10835":0,"10836":0,"10837":1,"10838":0,"10839":0,"10840":0,"10841":0,"10842":0,"10843":0,"10844":1,"10845":1,"10846":0,"10847":0,"10848":1,"10849":0,"10850":1,"10851":0,"10852":0,"10853":1,"10854":0,"10855":0,"10856":0,"10857":1,"10858":1,"10859":0,"10860":1,"10861":0,"10862":0,"10863":0,"10864":0,"10865":0,"10866":0,"10867":0,"10868":0,"10869":0,"10870":0,"10871":1,"10872":0,"10873":0,"10874":0,"10875":0,"10876":1,"10877":0,"10878":1,"10879":0,"10880":0,"10881":0,"10882":1,"10883":0,"10884":1,"10885":0,"10886":1,"10887":1,"10888":0,"10889":0,"10890":0,"10891":0,"10892":0,"10893":1,"10894":0,"10895":0,"10896":0,"10897":1,"10898":0,"10899":1,"10900":0,"10901":0,"10902":0,"10903":0,"10904":0,"10905":0,"10906":1,"10907":0,"10908":0,"10909":0,"10910":1,"10911":1,"10912":0,"10913":0,"10914":0,"10915":1,"10916":0,"10917":0,"10918":0,"10919":0,"10920":0,"10921":0,"10922":1,"10923":0,"10924":0,"10925":0,"10926":0,"10927":0,"10928":0,"10929":0,"10930":1,"10931":1,"10932":0,"10933":0,"10934":0,"10935":1,"10936":1,"10937":0,"10938":1,"10939":0,"10940":0,"10941":0,"10942":0,"10943":0,"10944":1,"10945":0,"10946":0,"10947":0,"10948":0,"10949":0,"10950":1,"10951":0,"10952":1,"10953":0,"10954":0,"10955":0,"10956":0,"10957":0,"10958":0,"10959":0,"10960":0,"10961":0,"10962":0,"10963":1,"10964":0,"10965":1,"10966":0,"10967":1,"10968":0,"10969":0,"10970":0,"10971":0,"10972":0,"10973":0,"10974":0,"10975":0,"10976":0,"10977":0,"10978":0,"10979":0,"10980":0,"10981":0,"10982":0,"10983":0,"10984":0,"10985":1,"10986":0,"10987":0,"10988":0,"10989":0,"10990":0,"10991":0,"10992":0,"10993":0,"10994":1,"10995":0,"10996":0,"10997":0,"10998":0,"10999":0,"11000":0,"11001":1,"11002":0,"11003":0,"11004":0,"11005":0,"11006":1,"11007":1,"11008":0,"11009":0,"11010":1,"11011":0,"11012":0,"11013":1,"11014":0,"11015":0,"11016":0,"11017":0,"11018":0,"11019":0,"11020":0,"11021":1,"11022":0,"11023":0,"11024":0,"11025":0,"11026":0,"11027":0,"11028":1,"11029":0,"11030":0,"11031":0,"11032":1,"11033":0,"11034":0,"11035":0,"11036":1,"11037":1,"11038":1,"11039":0,"11040":0,"11041":0,"11042":0,"11043":0,"11044":0,"11045":0,"11046":0,"11047":0,"11048":0,"11049":0,"11050":0,"11051":1,"11052":1,"11053":0,"11054":1,"11055":0,"11056":1,"11057":0,"11058":0,"11059":0,"11060":0,"11061":0,"11062":0,"11063":0,"11064":0,"11065":0,"11066":0,"11067":1,"11068":1,"11069":0,"11070":1,"11071":0,"11072":0,"11073":0,"11074":0,"11075":0,"11076":1,"11077":0,"11078":0,"11079":0,"11080":0,"11081":0,"11082":0,"11083":0,"11084":1,"11085":0,"11086":0,"11087":0,"11088":0,"11089":0,"11090":0,"11091":1,"11092":1,"11093":0,"11094":0,"11095":0,"11096":1,"11097":0,"11098":1,"11099":0,"11100":0,"11101":0,"11102":0,"11103":0,"11104":1,"11105":0,"11106":0,"11107":0,"11108":0,"11109":0,"11110":0,"11111":0,"11112":0,"11113":0,"11114":0,"11115":0,"11116":0,"11117":0,"11118":0,"11119":1,"11120":0,"11121":0,"11122":1,"11123":0,"11124":0,"11125":0,"11126":1,"11127":0,"11128":1,"11129":0,"11130":1,"11131":0,"11132":1,"11133":1,"11134":0,"11135":0,"11136":1,"11137":0,"11138":0,"11139":0,"11140":0,"11141":1,"11142":0,"11143":1,"11144":1,"11145":0,"11146":0,"11147":0,"11148":0,"11149":0,"11150":1,"11151":0,"11152":1,"11153":0,"11154":1,"11155":1,"11156":0,"11157":0,"11158":0,"11159":0,"11160":0,"11161":1,"11162":0,"11163":0,"11164":0,"11165":0,"11166":0,"11167":0,"11168":0,"11169":1,"11170":0,"11171":0,"11172":0,"11173":0,"11174":0,"11175":0,"11176":0,"11177":0,"11178":1,"11179":1,"11180":0,"11181":1,"11182":0,"11183":0,"11184":0,"11185":0,"11186":0,"11187":1,"11188":1,"11189":1,"11190":0,"11191":0,"11192":0,"11193":0,"11194":0,"11195":0,"11196":0,"11197":0,"11198":0,"11199":0,"11200":0,"11201":0,"11202":0,"11203":1,"11204":0,"11205":0,"11206":0,"11207":0,"11208":0,"11209":0,"11210":1,"11211":0,"11212":0,"11213":0,"11214":0,"11215":0,"11216":0,"11217":1,"11218":0,"11219":0,"11220":0,"11221":0,"11222":0,"11223":1,"11224":0,"11225":0,"11226":0,"11227":0,"11228":1,"11229":1,"11230":0,"11231":0,"11232":0,"11233":0,"11234":1,"11235":0,"11236":0,"11237":0,"11238":0,"11239":1,"11240":0,"11241":0,"11242":0,"11243":0,"11244":0,"11245":0,"11246":0,"11247":1,"11248":0,"11249":1,"11250":0,"11251":0,"11252":0,"11253":1,"11254":0,"11255":1,"11256":0,"11257":0,"11258":0,"11259":0,"11260":0,"11261":1,"11262":0,"11263":0,"11264":0,"11265":1,"11266":0,"11267":1,"11268":0,"11269":0,"11270":0,"11271":0,"11272":1,"11273":1,"11274":0,"11275":0,"11276":0,"11277":1,"11278":0,"11279":1,"11280":0,"11281":0,"11282":0,"11283":0,"11284":0,"11285":0,"11286":0,"11287":1,"11288":0,"11289":0,"11290":1,"11291":0,"11292":0,"11293":0,"11294":0,"11295":1,"11296":0,"11297":1,"11298":0,"11299":0,"11300":0,"11301":1,"11302":1,"11303":0,"11304":1,"11305":1,"11306":0,"11307":0,"11308":0,"11309":0,"11310":0,"11311":0,"11312":0,"11313":1,"11314":1,"11315":1,"11316":0,"11317":1,"11318":1,"11319":0,"11320":1,"11321":0,"11322":0,"11323":1,"11324":1,"11325":1,"11326":0,"11327":1,"11328":0,"11329":0,"11330":0,"11331":0,"11332":1,"11333":0,"11334":0,"11335":0,"11336":0,"11337":0,"11338":0,"11339":1,"11340":0,"11341":0,"11342":0,"11343":1,"11344":0,"11345":0,"11346":0,"11347":1,"11348":0,"11349":0,"11350":0,"11351":0,"11352":0,"11353":1,"11354":1,"11355":0,"11356":0,"11357":0,"11358":0,"11359":0,"11360":0,"11361":0,"11362":0,"11363":0,"11364":0,"11365":0,"11366":0,"11367":0,"11368":1,"11369":0,"11370":1,"11371":0,"11372":0,"11373":1,"11374":0,"11375":0,"11376":1,"11377":0,"11378":0,"11379":1,"11380":0,"11381":0,"11382":0,"11383":0,"11384":1,"11385":0,"11386":0,"11387":0,"11388":0,"11389":0,"11390":1,"11391":0,"11392":1,"11393":1,"11394":1,"11395":0,"11396":1,"11397":0,"11398":1,"11399":0,"11400":0,"11401":0,"11402":0,"11403":1,"11404":1,"11405":0,"11406":0,"11407":0,"11408":1,"11409":0,"11410":0,"11411":1,"11412":0,"11413":1,"11414":0,"11415":0,"11416":0,"11417":0,"11418":0,"11419":1,"11420":0,"11421":1,"11422":0,"11423":0,"11424":0,"11425":0,"11426":0,"11427":1,"11428":0,"11429":0,"11430":1,"11431":1,"11432":0,"11433":0,"11434":1,"11435":0,"11436":0,"11437":0,"11438":0,"11439":1,"11440":0,"11441":1,"11442":0,"11443":1,"11444":0,"11445":1,"11446":0,"11447":0,"11448":0,"11449":0,"11450":0,"11451":1,"11452":0,"11453":0,"11454":1,"11455":0,"11456":0,"11457":1,"11458":0,"11459":0,"11460":0,"11461":0,"11462":0,"11463":0,"11464":0,"11465":0,"11466":0,"11467":0,"11468":0,"11469":1,"11470":0,"11471":0,"11472":0,"11473":0,"11474":0,"11475":0,"11476":0,"11477":0,"11478":0,"11479":0,"11480":0,"11481":0,"11482":0,"11483":0,"11484":0,"11485":0,"11486":1,"11487":0,"11488":1,"11489":0,"11490":0,"11491":0,"11492":0,"11493":0,"11494":0,"11495":0,"11496":0,"11497":0,"11498":1,"11499":0,"11500":1,"11501":1,"11502":1,"11503":1,"11504":0,"11505":0,"11506":0,"11507":0,"11508":0,"11509":0,"11510":0,"11511":0,"11512":1,"11513":0,"11514":0,"11515":0,"11516":1,"11517":0,"11518":1,"11519":1,"11520":0,"11521":1,"11522":1,"11523":0,"11524":1,"11525":0,"11526":0,"11527":0,"11528":0,"11529":0,"11530":0,"11531":1,"11532":1,"11533":1,"11534":0,"11535":0,"11536":0,"11537":0,"11538":0,"11539":0,"11540":0,"11541":0,"11542":1,"11543":0,"11544":0,"11545":0,"11546":0,"11547":0,"11548":0,"11549":1,"11550":1,"11551":0,"11552":0,"11553":1,"11554":1,"11555":0,"11556":0,"11557":0,"11558":1,"11559":0,"11560":0,"11561":0,"11562":0,"11563":0,"11564":0,"11565":0,"11566":1,"11567":0,"11568":0,"11569":0,"11570":0,"11571":0,"11572":0,"11573":1,"11574":0,"11575":0,"11576":1,"11577":0,"11578":0,"11579":0,"11580":0,"11581":0,"11582":0,"11583":0,"11584":0,"11585":0,"11586":0,"11587":0,"11588":0,"11589":0,"11590":0,"11591":0,"11592":0,"11593":0,"11594":0,"11595":0,"11596":0,"11597":0,"11598":1,"11599":1,"11600":1,"11601":0,"11602":1,"11603":1,"11604":0,"11605":0,"11606":0,"11607":0,"11608":0,"11609":0,"11610":0,"11611":0,"11612":0,"11613":0,"11614":0,"11615":0,"11616":0,"11617":1,"11618":0,"11619":0,"11620":0,"11621":0,"11622":1,"11623":1,"11624":0,"11625":0,"11626":0,"11627":1,"11628":0,"11629":0,"11630":0,"11631":0,"11632":1,"11633":0,"11634":0,"11635":0,"11636":1,"11637":0,"11638":0,"11639":0,"11640":0,"11641":0,"11642":0,"11643":0,"11644":0,"11645":0,"11646":1,"11647":0,"11648":1,"11649":0,"11650":0,"11651":0,"11652":0,"11653":1,"11654":0,"11655":0,"11656":0,"11657":0,"11658":1,"11659":0,"11660":0,"11661":0,"11662":0,"11663":0,"11664":0,"11665":0,"11666":1,"11667":0,"11668":0,"11669":0,"11670":0,"11671":1,"11672":0,"11673":0,"11674":0,"11675":0,"11676":0,"11677":0,"11678":1,"11679":0,"11680":1,"11681":1,"11682":0,"11683":0,"11684":0,"11685":0,"11686":0,"11687":1,"11688":0,"11689":1,"11690":1,"11691":0,"11692":0,"11693":0,"11694":0,"11695":0,"11696":0,"11697":0,"11698":0,"11699":0,"11700":1,"11701":0,"11702":1,"11703":0,"11704":0,"11705":0,"11706":1,"11707":0,"11708":0,"11709":0,"11710":0,"11711":0,"11712":0,"11713":0,"11714":0,"11715":1,"11716":1,"11717":1,"11718":0,"11719":0,"11720":0,"11721":0,"11722":0,"11723":1,"11724":1,"11725":1,"11726":1,"11727":0,"11728":0,"11729":0,"11730":0,"11731":0,"11732":0,"11733":0,"11734":1,"11735":0,"11736":1,"11737":1,"11738":0,"11739":1,"11740":0,"11741":1,"11742":0,"11743":1,"11744":1,"11745":0,"11746":1,"11747":0,"11748":0,"11749":0,"11750":0,"11751":0,"11752":0,"11753":1,"11754":0,"11755":0,"11756":0,"11757":0,"11758":0,"11759":0,"11760":1,"11761":0,"11762":0,"11763":1,"11764":0,"11765":0,"11766":0,"11767":0,"11768":0,"11769":0,"11770":1,"11771":1,"11772":0,"11773":0,"11774":0,"11775":0,"11776":0,"11777":0,"11778":0,"11779":0,"11780":0,"11781":0,"11782":1,"11783":0,"11784":0,"11785":0,"11786":0,"11787":0,"11788":0,"11789":0,"11790":1,"11791":0,"11792":0,"11793":0,"11794":1,"11795":0,"11796":0,"11797":0,"11798":0,"11799":0,"11800":0,"11801":0,"11802":0,"11803":1,"11804":0,"11805":0,"11806":0,"11807":0,"11808":0,"11809":0,"11810":0,"11811":0,"11812":0,"11813":0,"11814":0,"11815":0,"11816":1,"11817":0,"11818":1,"11819":0,"11820":1,"11821":0,"11822":1,"11823":0,"11824":0,"11825":0,"11826":0,"11827":1,"11828":0,"11829":0,"11830":1,"11831":0,"11832":1,"11833":0,"11834":1,"11835":0,"11836":0,"11837":1,"11838":1,"11839":0,"11840":1,"11841":1,"11842":0,"11843":0,"11844":0,"11845":0,"11846":0,"11847":1,"11848":0,"11849":0,"11850":0,"11851":1,"11852":0,"11853":1,"11854":0,"11855":0,"11856":0,"11857":0,"11858":0,"11859":0,"11860":1,"11861":0,"11862":0,"11863":1,"11864":0,"11865":0,"11866":0,"11867":0,"11868":1,"11869":1,"11870":1,"11871":1,"11872":0,"11873":1,"11874":1,"11875":0,"11876":0,"11877":0,"11878":0,"11879":1,"11880":0,"11881":0,"11882":0,"11883":0,"11884":0,"11885":1,"11886":1,"11887":0,"11888":0,"11889":1,"11890":0,"11891":0,"11892":0,"11893":1,"11894":0,"11895":1,"11896":0,"11897":0,"11898":0,"11899":0,"11900":1,"11901":0,"11902":0,"11903":0,"11904":0,"11905":1,"11906":0,"11907":0,"11908":1,"11909":1,"11910":1,"11911":0,"11912":0,"11913":0,"11914":0,"11915":1,"11916":0,"11917":1,"11918":0,"11919":1,"11920":1,"11921":0,"11922":0,"11923":0,"11924":0,"11925":1,"11926":0,"11927":1,"11928":0,"11929":0,"11930":0,"11931":0,"11932":0,"11933":0,"11934":0,"11935":0,"11936":1,"11937":0,"11938":0,"11939":0,"11940":1,"11941":0,"11942":0,"11943":0,"11944":0,"11945":0,"11946":0,"11947":0,"11948":0,"11949":0,"11950":0,"11951":0,"11952":0,"11953":1,"11954":0,"11955":0,"11956":0,"11957":0,"11958":0,"11959":0,"11960":0,"11961":0,"11962":0,"11963":1,"11964":0,"11965":1,"11966":0,"11967":1,"11968":0,"11969":1,"11970":0,"11971":0,"11972":0,"11973":0,"11974":1,"11975":1,"11976":0,"11977":0,"11978":0,"11979":1,"11980":0,"11981":0,"11982":1,"11983":0,"11984":1,"11985":0,"11986":0,"11987":1,"11988":1,"11989":0,"11990":1,"11991":0,"11992":1,"11993":0,"11994":0,"11995":0,"11996":0,"11997":0,"11998":1,"11999":1,"12000":0,"12001":0,"12002":0,"12003":1,"12004":1,"12005":0,"12006":0,"12007":1,"12008":0,"12009":0,"12010":0,"12011":0,"12012":1,"12013":0,"12014":0,"12015":1,"12016":0,"12017":0,"12018":0,"12019":0,"12020":0,"12021":0,"12022":0,"12023":1,"12024":0,"12025":0,"12026":0,"12027":0,"12028":1,"12029":1,"12030":0,"12031":0,"12032":0,"12033":0,"12034":0,"12035":0,"12036":0,"12037":0,"12038":0,"12039":0,"12040":0,"12041":0,"12042":0,"12043":0,"12044":0,"12045":1,"12046":0,"12047":0,"12048":0,"12049":0,"12050":1,"12051":1,"12052":0,"12053":1,"12054":0,"12055":0,"12056":0,"12057":1,"12058":0,"12059":0,"12060":0,"12061":1,"12062":0,"12063":0,"12064":0,"12065":0,"12066":1,"12067":0,"12068":0,"12069":0,"12070":0,"12071":0,"12072":1,"12073":0,"12074":0,"12075":0,"12076":1,"12077":1,"12078":1,"12079":1,"12080":1,"12081":1,"12082":0,"12083":1,"12084":1,"12085":0,"12086":0,"12087":0,"12088":0,"12089":0,"12090":0,"12091":1,"12092":0,"12093":0,"12094":1,"12095":0,"12096":0,"12097":1,"12098":1,"12099":1,"12100":1,"12101":0,"12102":0,"12103":1,"12104":0,"12105":1,"12106":0,"12107":1,"12108":0,"12109":0,"12110":0,"12111":0,"12112":0,"12113":0,"12114":0,"12115":0,"12116":1,"12117":0,"12118":0,"12119":0,"12120":0,"12121":0,"12122":0,"12123":0,"12124":0,"12125":0,"12126":0,"12127":0,"12128":0,"12129":1,"12130":0,"12131":1,"12132":0,"12133":1,"12134":0,"12135":0,"12136":1,"12137":0,"12138":0,"12139":1,"12140":0,"12141":0,"12142":0,"12143":0,"12144":0,"12145":0,"12146":0,"12147":1,"12148":0,"12149":0,"12150":1,"12151":1,"12152":0,"12153":0,"12154":0,"12155":0,"12156":0,"12157":0,"12158":0,"12159":0,"12160":0,"12161":0,"12162":1,"12163":0,"12164":0,"12165":0,"12166":0,"12167":0,"12168":1,"12169":0,"12170":0,"12171":0,"12172":0,"12173":0,"12174":1,"12175":0,"12176":0,"12177":1,"12178":0,"12179":0,"12180":0,"12181":0,"12182":0,"12183":0,"12184":0,"12185":1,"12186":1,"12187":1,"12188":0,"12189":0,"12190":1,"12191":0,"12192":1,"12193":0,"12194":0,"12195":1,"12196":1,"12197":0,"12198":0,"12199":0,"12200":0,"12201":0,"12202":0,"12203":1,"12204":0,"12205":0,"12206":1,"12207":0,"12208":0,"12209":0,"12210":0,"12211":0,"12212":0,"12213":0,"12214":0,"12215":0,"12216":1,"12217":1,"12218":1,"12219":1,"12220":1,"12221":1,"12222":0,"12223":1,"12224":1,"12225":0,"12226":0,"12227":0,"12228":0,"12229":1,"12230":0,"12231":1,"12232":0,"12233":1,"12234":0,"12235":0,"12236":0,"12237":0,"12238":1,"12239":1,"12240":1,"12241":0,"12242":0,"12243":0,"12244":0,"12245":0,"12246":1,"12247":1,"12248":0,"12249":0,"12250":0,"12251":0,"12252":0,"12253":1,"12254":0,"12255":1,"12256":0,"12257":0,"12258":0,"12259":1,"12260":0,"12261":1,"12262":0,"12263":1,"12264":0,"12265":0,"12266":1,"12267":0,"12268":0,"12269":0,"12270":0,"12271":0,"12272":0,"12273":1,"12274":1,"12275":0,"12276":1,"12277":0,"12278":1,"12279":0,"12280":0,"12281":0,"12282":0,"12283":1,"12284":0,"12285":0,"12286":0,"12287":0,"12288":0,"12289":0,"12290":0,"12291":0,"12292":1,"12293":0,"12294":1,"12295":0,"12296":0,"12297":1,"12298":1,"12299":0,"12300":0,"12301":0,"12302":0,"12303":0,"12304":1,"12305":0,"12306":0,"12307":0,"12308":0,"12309":0,"12310":0,"12311":0,"12312":0,"12313":1,"12314":0,"12315":0,"12316":0,"12317":0,"12318":0,"12319":0,"12320":0,"12321":0,"12322":0,"12323":1,"12324":0,"12325":0,"12326":1,"12327":0,"12328":1,"12329":1,"12330":0,"12331":0,"12332":0,"12333":1,"12334":0,"12335":1,"12336":1,"12337":1,"12338":1,"12339":1,"12340":0,"12341":0,"12342":0,"12343":0,"12344":0,"12345":0,"12346":0,"12347":1,"12348":1,"12349":1,"12350":0,"12351":0,"12352":1,"12353":0,"12354":0,"12355":0,"12356":1,"12357":0,"12358":1,"12359":1,"12360":0,"12361":0,"12362":0,"12363":0,"12364":0,"12365":0,"12366":0,"12367":1,"12368":0,"12369":0,"12370":0,"12371":0,"12372":0,"12373":0,"12374":0,"12375":1,"12376":0,"12377":1,"12378":0,"12379":0,"12380":1,"12381":0,"12382":0,"12383":0,"12384":1,"12385":1,"12386":1,"12387":1,"12388":0,"12389":0,"12390":0,"12391":0,"12392":0,"12393":0,"12394":1,"12395":0,"12396":0,"12397":0,"12398":0,"12399":0,"12400":1,"12401":0,"12402":0,"12403":0,"12404":0,"12405":1,"12406":0,"12407":1,"12408":0,"12409":0,"12410":0,"12411":0,"12412":0,"12413":0,"12414":1,"12415":0,"12416":0,"12417":0,"12418":0,"12419":0,"12420":0,"12421":1,"12422":0,"12423":0,"12424":1,"12425":0,"12426":0,"12427":0,"12428":1,"12429":1,"12430":1,"12431":0,"12432":0,"12433":0,"12434":0,"12435":0,"12436":0,"12437":0,"12438":0,"12439":0,"12440":1,"12441":0,"12442":0,"12443":0,"12444":0,"12445":1,"12446":1,"12447":1,"12448":0,"12449":0,"12450":1,"12451":0,"12452":1,"12453":0,"12454":1,"12455":0,"12456":1,"12457":0,"12458":0,"12459":0,"12460":0,"12461":0,"12462":0,"12463":0,"12464":0,"12465":1,"12466":0,"12467":0,"12468":0,"12469":0,"12470":0,"12471":0,"12472":0,"12473":0,"12474":0,"12475":0,"12476":0,"12477":0,"12478":0,"12479":0,"12480":0,"12481":0,"12482":0,"12483":0,"12484":1,"12485":1,"12486":0,"12487":0,"12488":1,"12489":0,"12490":0,"12491":1,"12492":0,"12493":0,"12494":1,"12495":0,"12496":1,"12497":0,"12498":0,"12499":1,"12500":0,"12501":0,"12502":1,"12503":0,"12504":1,"12505":0,"12506":0,"12507":0,"12508":0,"12509":0,"12510":0,"12511":1,"12512":1,"12513":1,"12514":1,"12515":1,"12516":0,"12517":0,"12518":1,"12519":0,"12520":0,"12521":1,"12522":0,"12523":1,"12524":1,"12525":0,"12526":1,"12527":0,"12528":0,"12529":0,"12530":0,"12531":0,"12532":0,"12533":0,"12534":0,"12535":0,"12536":0,"12537":0,"12538":0,"12539":0,"12540":0,"12541":0,"12542":0,"12543":0,"12544":0,"12545":0,"12546":1,"12547":0,"12548":0,"12549":0,"12550":0,"12551":0,"12552":1,"12553":0,"12554":0,"12555":0,"12556":0,"12557":0,"12558":0,"12559":0,"12560":0,"12561":1,"12562":1,"12563":0,"12564":0,"12565":0,"12566":0,"12567":0,"12568":1,"12569":0,"12570":1,"12571":1,"12572":0,"12573":0,"12574":0,"12575":0,"12576":0,"12577":0,"12578":0,"12579":1,"12580":0,"12581":0,"12582":1,"12583":0,"12584":0,"12585":0,"12586":0,"12587":0,"12588":0,"12589":1,"12590":1,"12591":0,"12592":1,"12593":0,"12594":0,"12595":0,"12596":0,"12597":0,"12598":0,"12599":1,"12600":1,"12601":0,"12602":1,"12603":0,"12604":1,"12605":0,"12606":0,"12607":0,"12608":1,"12609":0,"12610":0,"12611":1,"12612":1,"12613":1,"12614":0,"12615":0,"12616":0,"12617":0,"12618":1,"12619":0,"12620":0,"12621":0,"12622":0,"12623":1,"12624":0,"12625":0,"12626":0,"12627":0,"12628":0,"12629":1,"12630":0,"12631":0,"12632":0,"12633":0,"12634":0,"12635":1,"12636":0,"12637":0,"12638":1,"12639":0,"12640":0,"12641":0,"12642":0,"12643":0,"12644":0,"12645":0,"12646":0,"12647":0,"12648":1,"12649":0,"12650":0,"12651":0,"12652":0,"12653":0,"12654":0,"12655":0,"12656":0,"12657":0,"12658":0,"12659":0,"12660":0,"12661":0,"12662":0,"12663":1,"12664":0,"12665":0,"12666":0,"12667":1,"12668":0,"12669":0,"12670":0,"12671":1,"12672":0,"12673":0,"12674":0,"12675":0,"12676":0,"12677":1,"12678":1,"12679":0,"12680":0,"12681":0,"12682":1,"12683":1,"12684":0,"12685":1,"12686":0,"12687":0,"12688":0,"12689":0,"12690":0,"12691":0,"12692":0,"12693":0,"12694":0,"12695":0,"12696":0,"12697":0,"12698":0,"12699":0,"12700":0,"12701":0,"12702":1,"12703":0,"12704":0,"12705":0,"12706":0,"12707":1,"12708":0,"12709":0,"12710":1,"12711":1,"12712":1,"12713":0,"12714":0,"12715":0,"12716":1,"12717":0,"12718":0,"12719":0,"12720":1,"12721":0,"12722":0,"12723":1,"12724":1,"12725":0,"12726":0,"12727":0,"12728":0,"12729":0,"12730":0,"12731":0,"12732":1,"12733":0,"12734":0,"12735":0,"12736":0,"12737":0,"12738":0,"12739":0,"12740":0,"12741":0,"12742":0,"12743":0,"12744":1,"12745":0,"12746":0,"12747":0,"12748":0,"12749":0,"12750":1,"12751":0,"12752":0,"12753":0,"12754":0,"12755":0,"12756":0,"12757":1,"12758":0,"12759":0,"12760":0,"12761":0,"12762":0,"12763":0,"12764":0,"12765":0,"12766":0,"12767":0,"12768":0,"12769":0,"12770":1,"12771":1,"12772":0,"12773":0,"12774":0,"12775":0,"12776":0,"12777":1,"12778":1,"12779":0,"12780":0,"12781":1,"12782":0,"12783":1,"12784":1,"12785":0,"12786":1,"12787":0,"12788":0,"12789":0,"12790":0,"12791":0,"12792":1,"12793":0,"12794":0,"12795":1,"12796":1,"12797":0,"12798":0,"12799":0,"12800":0,"12801":1,"12802":0,"12803":0,"12804":0,"12805":0,"12806":0,"12807":0,"12808":1,"12809":0,"12810":0,"12811":1,"12812":0,"12813":0,"12814":0,"12815":0,"12816":0,"12817":1,"12818":0,"12819":0,"12820":0,"12821":0,"12822":0,"12823":0,"12824":0,"12825":0,"12826":0,"12827":1,"12828":0,"12829":0,"12830":0,"12831":0,"12832":1,"12833":0,"12834":0,"12835":0,"12836":0,"12837":0,"12838":0,"12839":1,"12840":0,"12841":1,"12842":0,"12843":0,"12844":0,"12845":0,"12846":1,"12847":1,"12848":0,"12849":0,"12850":0,"12851":1,"12852":0,"12853":0,"12854":0,"12855":0,"12856":0,"12857":1,"12858":1,"12859":1,"12860":1,"12861":1,"12862":0,"12863":0,"12864":1,"12865":0,"12866":1,"12867":1,"12868":1,"12869":0,"12870":1,"12871":1,"12872":0,"12873":0,"12874":1,"12875":1,"12876":0,"12877":0,"12878":0,"12879":0,"12880":0,"12881":0,"12882":1,"12883":0,"12884":0,"12885":0,"12886":1,"12887":0,"12888":0,"12889":1,"12890":0,"12891":0,"12892":0,"12893":0,"12894":0,"12895":0,"12896":0,"12897":0,"12898":1,"12899":1,"12900":1,"12901":0,"12902":0,"12903":0,"12904":0,"12905":0,"12906":1,"12907":0,"12908":0,"12909":0,"12910":1,"12911":0,"12912":0,"12913":0,"12914":0,"12915":1,"12916":0,"12917":0,"12918":0,"12919":0,"12920":0,"12921":1,"12922":1,"12923":0,"12924":0,"12925":0,"12926":0,"12927":0,"12928":0,"12929":1,"12930":0,"12931":0,"12932":0,"12933":0,"12934":1,"12935":0,"12936":0,"12937":0,"12938":1,"12939":0,"12940":1,"12941":0,"12942":0,"12943":0,"12944":0,"12945":0,"12946":1,"12947":1,"12948":0,"12949":1,"12950":0,"12951":1,"12952":0,"12953":1,"12954":0,"12955":0,"12956":0,"12957":0,"12958":0,"12959":1,"12960":0,"12961":1,"12962":0,"12963":0,"12964":0,"12965":0,"12966":1,"12967":0,"12968":0,"12969":0,"12970":0,"12971":0,"12972":0,"12973":1,"12974":0,"12975":1,"12976":0,"12977":0,"12978":0,"12979":1,"12980":0,"12981":0,"12982":1,"12983":0,"12984":0,"12985":0,"12986":0,"12987":1,"12988":0,"12989":1,"12990":0,"12991":0,"12992":1,"12993":0,"12994":0,"12995":0,"12996":0,"12997":0,"12998":0,"12999":0,"13000":0,"13001":0,"13002":0,"13003":0,"13004":1,"13005":0,"13006":0,"13007":0,"13008":0,"13009":1,"13010":0,"13011":0,"13012":0,"13013":0,"13014":1,"13015":0,"13016":0,"13017":0,"13018":0,"13019":0,"13020":0,"13021":0,"13022":0,"13023":1,"13024":1,"13025":0,"13026":0,"13027":0,"13028":0,"13029":0,"13030":0,"13031":0,"13032":0,"13033":1,"13034":1,"13035":1,"13036":1,"13037":0,"13038":0,"13039":1,"13040":0,"13041":0,"13042":0,"13043":1,"13044":0,"13045":0,"13046":0,"13047":0,"13048":0,"13049":0,"13050":0,"13051":0,"13052":1,"13053":1,"13054":0,"13055":0,"13056":1,"13057":0,"13058":1,"13059":0,"13060":0,"13061":0,"13062":0,"13063":1,"13064":1,"13065":1,"13066":1,"13067":1,"13068":0,"13069":0,"13070":0,"13071":0,"13072":1,"13073":0,"13074":1,"13075":0,"13076":0,"13077":1,"13078":1,"13079":0,"13080":0,"13081":1,"13082":0,"13083":0,"13084":0,"13085":1,"13086":1,"13087":0,"13088":1,"13089":1,"13090":1,"13091":0,"13092":0,"13093":0,"13094":0,"13095":1,"13096":0,"13097":0,"13098":0,"13099":0,"13100":0,"13101":0,"13102":1,"13103":1,"13104":0,"13105":0,"13106":0,"13107":0,"13108":0,"13109":0,"13110":0,"13111":1,"13112":1,"13113":0,"13114":0,"13115":0,"13116":0,"13117":0,"13118":0,"13119":0,"13120":0,"13121":0,"13122":0,"13123":1,"13124":1,"13125":0,"13126":0,"13127":0,"13128":0,"13129":1,"13130":0,"13131":0,"13132":0,"13133":0,"13134":0,"13135":0,"13136":0,"13137":1,"13138":1,"13139":0,"13140":0,"13141":0,"13142":1,"13143":0,"13144":1,"13145":0,"13146":0,"13147":1,"13148":0,"13149":1,"13150":0,"13151":0,"13152":0,"13153":0,"13154":0,"13155":0,"13156":1,"13157":0,"13158":0,"13159":1,"13160":0,"13161":0,"13162":0,"13163":0,"13164":0,"13165":1,"13166":1,"13167":1,"13168":1,"13169":1,"13170":0,"13171":0,"13172":0,"13173":1,"13174":0,"13175":0,"13176":1,"13177":0,"13178":0,"13179":0,"13180":0,"13181":0,"13182":0,"13183":0,"13184":0,"13185":0,"13186":0,"13187":0,"13188":0,"13189":0,"13190":0,"13191":0,"13192":0,"13193":0,"13194":0,"13195":1,"13196":0,"13197":0,"13198":0,"13199":1,"13200":1,"13201":0,"13202":1,"13203":1,"13204":0,"13205":0,"13206":0,"13207":0,"13208":0,"13209":1,"13210":1,"13211":0,"13212":0,"13213":0,"13214":0,"13215":0,"13216":0,"13217":0,"13218":0,"13219":1,"13220":0,"13221":0,"13222":1,"13223":0,"13224":1,"13225":1,"13226":0,"13227":0,"13228":0,"13229":0,"13230":0,"13231":1,"13232":0,"13233":1,"13234":0,"13235":1,"13236":0,"13237":0,"13238":0,"13239":0,"13240":0,"13241":0,"13242":1,"13243":1,"13244":0,"13245":0,"13246":1,"13247":0,"13248":1,"13249":0,"13250":1,"13251":0,"13252":0,"13253":0,"13254":0,"13255":0,"13256":0,"13257":0,"13258":0,"13259":0,"13260":0,"13261":0,"13262":0,"13263":1,"13264":0,"13265":0,"13266":0,"13267":0,"13268":0,"13269":1,"13270":0,"13271":1,"13272":1,"13273":0,"13274":1,"13275":0,"13276":0,"13277":0,"13278":0,"13279":0,"13280":1,"13281":0,"13282":0,"13283":1,"13284":0,"13285":1,"13286":0,"13287":1,"13288":0,"13289":0,"13290":0,"13291":0,"13292":0,"13293":0,"13294":0,"13295":0,"13296":0,"13297":0,"13298":0,"13299":0,"13300":0,"13301":1,"13302":0,"13303":0,"13304":1,"13305":0,"13306":1,"13307":0,"13308":0,"13309":0,"13310":0,"13311":0,"13312":0,"13313":0,"13314":0,"13315":0,"13316":0,"13317":0,"13318":1,"13319":1,"13320":0,"13321":1,"13322":0,"13323":1,"13324":0,"13325":1,"13326":0,"13327":0,"13328":1,"13329":0,"13330":0,"13331":0,"13332":0,"13333":0,"13334":0,"13335":0,"13336":0,"13337":0,"13338":0,"13339":0,"13340":1,"13341":0,"13342":1,"13343":0,"13344":1,"13345":0,"13346":0,"13347":0,"13348":0,"13349":0,"13350":0,"13351":0,"13352":1,"13353":0,"13354":0,"13355":1,"13356":1,"13357":1,"13358":0,"13359":0,"13360":0,"13361":0,"13362":1,"13363":1,"13364":0,"13365":1,"13366":0,"13367":0,"13368":0,"13369":0,"13370":0,"13371":0,"13372":0,"13373":1,"13374":0,"13375":0,"13376":0,"13377":0,"13378":0,"13379":1,"13380":0,"13381":1,"13382":0,"13383":0,"13384":0,"13385":0,"13386":0,"13387":0,"13388":1,"13389":0,"13390":0,"13391":1,"13392":1,"13393":0,"13394":0,"13395":1,"13396":1,"13397":0,"13398":1,"13399":0,"13400":0,"13401":0,"13402":0,"13403":0,"13404":0,"13405":0,"13406":0,"13407":0,"13408":0,"13409":0,"13410":0,"13411":1,"13412":0,"13413":0,"13414":0,"13415":1,"13416":1,"13417":0,"13418":0,"13419":0,"13420":0,"13421":0,"13422":1,"13423":1,"13424":1,"13425":0,"13426":0,"13427":0,"13428":0,"13429":1,"13430":1,"13431":1,"13432":0,"13433":0,"13434":0,"13435":1,"13436":0,"13437":0,"13438":0,"13439":0,"13440":0,"13441":0,"13442":0,"13443":0,"13444":0,"13445":0,"13446":0,"13447":0,"13448":1,"13449":0,"13450":0,"13451":0,"13452":0,"13453":0,"13454":0,"13455":0,"13456":0,"13457":1,"13458":1,"13459":1,"13460":0,"13461":0,"13462":0,"13463":1,"13464":0,"13465":1,"13466":1,"13467":0,"13468":0,"13469":0,"13470":0,"13471":0,"13472":0,"13473":0,"13474":1,"13475":0,"13476":0,"13477":0,"13478":0,"13479":0,"13480":0,"13481":0,"13482":0,"13483":0,"13484":0,"13485":1,"13486":0,"13487":0,"13488":1,"13489":0,"13490":0,"13491":0,"13492":0,"13493":0,"13494":0,"13495":0,"13496":0,"13497":0,"13498":1,"13499":1,"13500":0,"13501":0,"13502":0,"13503":1,"13504":0,"13505":0,"13506":0,"13507":0,"13508":0,"13509":0,"13510":0,"13511":0,"13512":1,"13513":0,"13514":1,"13515":0,"13516":0,"13517":1,"13518":1,"13519":1,"13520":0,"13521":1,"13522":0,"13523":1,"13524":0,"13525":0,"13526":0,"13527":0,"13528":0,"13529":0,"13530":0,"13531":0,"13532":0,"13533":0,"13534":0,"13535":0,"13536":0,"13537":0,"13538":1,"13539":0,"13540":0,"13541":0,"13542":0,"13543":0,"13544":0,"13545":0,"13546":0,"13547":0,"13548":0,"13549":0,"13550":1,"13551":1,"13552":0,"13553":0,"13554":1,"13555":0,"13556":0,"13557":0,"13558":0,"13559":0,"13560":0,"13561":0,"13562":0,"13563":0,"13564":0,"13565":0,"13566":0,"13567":0,"13568":0,"13569":0,"13570":0,"13571":0,"13572":0,"13573":0,"13574":0,"13575":0,"13576":0,"13577":1,"13578":0,"13579":0,"13580":0,"13581":0,"13582":1,"13583":0,"13584":0,"13585":0,"13586":0,"13587":0,"13588":0,"13589":0,"13590":0,"13591":0,"13592":1,"13593":0,"13594":0,"13595":1,"13596":0,"13597":0,"13598":0,"13599":0,"13600":0,"13601":0,"13602":1,"13603":0,"13604":0,"13605":0,"13606":0,"13607":0,"13608":1,"13609":1,"13610":1,"13611":0,"13612":1,"13613":1,"13614":0,"13615":0,"13616":1,"13617":1,"13618":0,"13619":0,"13620":0,"13621":0,"13622":0,"13623":0,"13624":1,"13625":1,"13626":0,"13627":0,"13628":0,"13629":0,"13630":0,"13631":0,"13632":0,"13633":0,"13634":0,"13635":0,"13636":0,"13637":0,"13638":0,"13639":0,"13640":0,"13641":0,"13642":1,"13643":1,"13644":1,"13645":0,"13646":1,"13647":0,"13648":0,"13649":0,"13650":1,"13651":1,"13652":0,"13653":1,"13654":0,"13655":0,"13656":0,"13657":0,"13658":0,"13659":0,"13660":1,"13661":0,"13662":1,"13663":0,"13664":0,"13665":0,"13666":0,"13667":0,"13668":1,"13669":1,"13670":0,"13671":0,"13672":0,"13673":0,"13674":1,"13675":0,"13676":0,"13677":0,"13678":1,"13679":0,"13680":0,"13681":0,"13682":0,"13683":0,"13684":0,"13685":1,"13686":0,"13687":0,"13688":1,"13689":1,"13690":0,"13691":1,"13692":0,"13693":0,"13694":0,"13695":0,"13696":0,"13697":0,"13698":0,"13699":0,"13700":0,"13701":0,"13702":0,"13703":1,"13704":0,"13705":1,"13706":0,"13707":0,"13708":0,"13709":0,"13710":0,"13711":0,"13712":0,"13713":0,"13714":1,"13715":0,"13716":0,"13717":0,"13718":0,"13719":0,"13720":0,"13721":1,"13722":0,"13723":0,"13724":0,"13725":0,"13726":0,"13727":0,"13728":0,"13729":0,"13730":1,"13731":1,"13732":0,"13733":0,"13734":0,"13735":0,"13736":0,"13737":0,"13738":0,"13739":1,"13740":0,"13741":0,"13742":0,"13743":0,"13744":0,"13745":1,"13746":1,"13747":0,"13748":0,"13749":0,"13750":1,"13751":1,"13752":0,"13753":0,"13754":0,"13755":1,"13756":0,"13757":1,"13758":1,"13759":0,"13760":0,"13761":0,"13762":0,"13763":0,"13764":1,"13765":0,"13766":1,"13767":1,"13768":0,"13769":0,"13770":0,"13771":0,"13772":0,"13773":1,"13774":0,"13775":0,"13776":0,"13777":1,"13778":1,"13779":0,"13780":0,"13781":0,"13782":0,"13783":0,"13784":1,"13785":0,"13786":0,"13787":0,"13788":1,"13789":0,"13790":0,"13791":0,"13792":0,"13793":0,"13794":1,"13795":0,"13796":0,"13797":0,"13798":0,"13799":0,"13800":0,"13801":1,"13802":1,"13803":0,"13804":0,"13805":1,"13806":0,"13807":0,"13808":1,"13809":0,"13810":0,"13811":0,"13812":0,"13813":1,"13814":0,"13815":0,"13816":0,"13817":0,"13818":0,"13819":0,"13820":1,"13821":0,"13822":0,"13823":0,"13824":0,"13825":0,"13826":0,"13827":0,"13828":0,"13829":0,"13830":0,"13831":0,"13832":1,"13833":0,"13834":0,"13835":0,"13836":1,"13837":0,"13838":0,"13839":0,"13840":0,"13841":0,"13842":1,"13843":0,"13844":0,"13845":0,"13846":1,"13847":0,"13848":0,"13849":0,"13850":0,"13851":0,"13852":0,"13853":0,"13854":1,"13855":1,"13856":0,"13857":0,"13858":0,"13859":0,"13860":0,"13861":1,"13862":1,"13863":0,"13864":0,"13865":1,"13866":1,"13867":1,"13868":0,"13869":1,"13870":0,"13871":0,"13872":0,"13873":1,"13874":1,"13875":0,"13876":0,"13877":0,"13878":0,"13879":0,"13880":1,"13881":1,"13882":0,"13883":0,"13884":0,"13885":0,"13886":0,"13887":0,"13888":1,"13889":0,"13890":0,"13891":0,"13892":1,"13893":1,"13894":0,"13895":0,"13896":1,"13897":0,"13898":0,"13899":0,"13900":0,"13901":0,"13902":1,"13903":0,"13904":0,"13905":1,"13906":0,"13907":0,"13908":0,"13909":0,"13910":0,"13911":1,"13912":0,"13913":0,"13914":0,"13915":0,"13916":0,"13917":0,"13918":0,"13919":0,"13920":1,"13921":0,"13922":1,"13923":0,"13924":0,"13925":1,"13926":0,"13927":0,"13928":0,"13929":1,"13930":0,"13931":1,"13932":0,"13933":0,"13934":1,"13935":0,"13936":0,"13937":0,"13938":0,"13939":0,"13940":1,"13941":0,"13942":1,"13943":0,"13944":1,"13945":1,"13946":1,"13947":1,"13948":0,"13949":0,"13950":0,"13951":0,"13952":0,"13953":1,"13954":0,"13955":0,"13956":0,"13957":1,"13958":1,"13959":0,"13960":0,"13961":1,"13962":0,"13963":1,"13964":1,"13965":0,"13966":0,"13967":0,"13968":0,"13969":0,"13970":0,"13971":0,"13972":1,"13973":1,"13974":0,"13975":0,"13976":0,"13977":0,"13978":0,"13979":0,"13980":0,"13981":1,"13982":0,"13983":0,"13984":0,"13985":0,"13986":0,"13987":0,"13988":1,"13989":0,"13990":0,"13991":0,"13992":0,"13993":0,"13994":1,"13995":1,"13996":1,"13997":0,"13998":0,"13999":0,"14000":0,"14001":0,"14002":0,"14003":0,"14004":1,"14005":0,"14006":0,"14007":0,"14008":1,"14009":1,"14010":1,"14011":0,"14012":0,"14013":0,"14014":0,"14015":0,"14016":1,"14017":1,"14018":1,"14019":0,"14020":0,"14021":0,"14022":0,"14023":0,"14024":0,"14025":0,"14026":0,"14027":1,"14028":0,"14029":1,"14030":0,"14031":0,"14032":1,"14033":0,"14034":0,"14035":0,"14036":0,"14037":1,"14038":1,"14039":0,"14040":0,"14041":0,"14042":1,"14043":0,"14044":0,"14045":1,"14046":0,"14047":0,"14048":0,"14049":1,"14050":0,"14051":0,"14052":0,"14053":0,"14054":1,"14055":0,"14056":0,"14057":0,"14058":0,"14059":1,"14060":1,"14061":0,"14062":1,"14063":0,"14064":1,"14065":0,"14066":0,"14067":0,"14068":0,"14069":1,"14070":1,"14071":1,"14072":0,"14073":0,"14074":0,"14075":0,"14076":0,"14077":1,"14078":0,"14079":0,"14080":0,"14081":0,"14082":1,"14083":0,"14084":0,"14085":0,"14086":1,"14087":1,"14088":0,"14089":0,"14090":0,"14091":0,"14092":0,"14093":0,"14094":1,"14095":1,"14096":0,"14097":0,"14098":0,"14099":1,"14100":1,"14101":1,"14102":0,"14103":0,"14104":0,"14105":0,"14106":0,"14107":0,"14108":0,"14109":1,"14110":0,"14111":0,"14112":0,"14113":0,"14114":1,"14115":1,"14116":1,"14117":0,"14118":0,"14119":0,"14120":0,"14121":1,"14122":0,"14123":0,"14124":1,"14125":0,"14126":0,"14127":0,"14128":1,"14129":0,"14130":1,"14131":0,"14132":0,"14133":1,"14134":0,"14135":0,"14136":0,"14137":1,"14138":0,"14139":0,"14140":0,"14141":0,"14142":0,"14143":0,"14144":1,"14145":0,"14146":0,"14147":1,"14148":0,"14149":0,"14150":1,"14151":1,"14152":0,"14153":0,"14154":0,"14155":0,"14156":0,"14157":0,"14158":1,"14159":0,"14160":1,"14161":0,"14162":0,"14163":0,"14164":1,"14165":0,"14166":0,"14167":0,"14168":0,"14169":0,"14170":0,"14171":1,"14172":1,"14173":0,"14174":0,"14175":0,"14176":0,"14177":0,"14178":0,"14179":0,"14180":0,"14181":1,"14182":1,"14183":0,"14184":1,"14185":0,"14186":1,"14187":0,"14188":0,"14189":0,"14190":0,"14191":0,"14192":0,"14193":0,"14194":0,"14195":0,"14196":0,"14197":0,"14198":0,"14199":0,"14200":1,"14201":1,"14202":0,"14203":0,"14204":0,"14205":0,"14206":0,"14207":0,"14208":1,"14209":0,"14210":1,"14211":0,"14212":1,"14213":0,"14214":0,"14215":0,"14216":1,"14217":0,"14218":1,"14219":0,"14220":0,"14221":1,"14222":0,"14223":0,"14224":0,"14225":0,"14226":0,"14227":0,"14228":1,"14229":0,"14230":0,"14231":0,"14232":0,"14233":0,"14234":0,"14235":0,"14236":1,"14237":0,"14238":0,"14239":1,"14240":1,"14241":1,"14242":0,"14243":0,"14244":0,"14245":0,"14246":0,"14247":1,"14248":1,"14249":1,"14250":0,"14251":1,"14252":0,"14253":0,"14254":0,"14255":1,"14256":0,"14257":0,"14258":1,"14259":0,"14260":0,"14261":0,"14262":0,"14263":0,"14264":0,"14265":0,"14266":0,"14267":0,"14268":0,"14269":1,"14270":0,"14271":0,"14272":1,"14273":0,"14274":0,"14275":1,"14276":0,"14277":1,"14278":0,"14279":0,"14280":0,"14281":0,"14282":1,"14283":1,"14284":0,"14285":0,"14286":1,"14287":0,"14288":0,"14289":0,"14290":0,"14291":1,"14292":1,"14293":0,"14294":1,"14295":0,"14296":0,"14297":0,"14298":1,"14299":0,"14300":0,"14301":0,"14302":0,"14303":0,"14304":0,"14305":0,"14306":0,"14307":1,"14308":0,"14309":0,"14310":0,"14311":0,"14312":0,"14313":0,"14314":0,"14315":0,"14316":0,"14317":1,"14318":1,"14319":1,"14320":0,"14321":0,"14322":1,"14323":1,"14324":0,"14325":1,"14326":0,"14327":1,"14328":1,"14329":0,"14330":0,"14331":0,"14332":0,"14333":1,"14334":0,"14335":0,"14336":0,"14337":0,"14338":0,"14339":0,"14340":0,"14341":0,"14342":0,"14343":0,"14344":0,"14345":0,"14346":0,"14347":0,"14348":1,"14349":0,"14350":0,"14351":1,"14352":0,"14353":0,"14354":0,"14355":0,"14356":1,"14357":1,"14358":1,"14359":0,"14360":0,"14361":0,"14362":0,"14363":0,"14364":0,"14365":0,"14366":0,"14367":1,"14368":0,"14369":0,"14370":0,"14371":1,"14372":1,"14373":1,"14374":1,"14375":0,"14376":0,"14377":1,"14378":0,"14379":0,"14380":0,"14381":0,"14382":1,"14383":0,"14384":1,"14385":0,"14386":1,"14387":0,"14388":1,"14389":1,"14390":0,"14391":0,"14392":0,"14393":0,"14394":0,"14395":0,"14396":1,"14397":0,"14398":0,"14399":1,"14400":0,"14401":0,"14402":1,"14403":0,"14404":0,"14405":0,"14406":1,"14407":1,"14408":0,"14409":0,"14410":1,"14411":0,"14412":0,"14413":0,"14414":0,"14415":1,"14416":0,"14417":1,"14418":0,"14419":0,"14420":1,"14421":1,"14422":0,"14423":0,"14424":0,"14425":0,"14426":0,"14427":0,"14428":1,"14429":1,"14430":0,"14431":0,"14432":1,"14433":0,"14434":1,"14435":1,"14436":0,"14437":0,"14438":0,"14439":1,"14440":0,"14441":1,"14442":1,"14443":0,"14444":0,"14445":0,"14446":0,"14447":0,"14448":1,"14449":0,"14450":1,"14451":1,"14452":1,"14453":0,"14454":0,"14455":1,"14456":0,"14457":1,"14458":1,"14459":1,"14460":0,"14461":0,"14462":0,"14463":0,"14464":0,"14465":0,"14466":0,"14467":1,"14468":0,"14469":1,"14470":0,"14471":0,"14472":1,"14473":0,"14474":0,"14475":0,"14476":0,"14477":0,"14478":0,"14479":1,"14480":0,"14481":1,"14482":1,"14483":0,"14484":0,"14485":0,"14486":1,"14487":0,"14488":0,"14489":0,"14490":0,"14491":0,"14492":1,"14493":0,"14494":1,"14495":0,"14496":0,"14497":1,"14498":1,"14499":1,"14500":0,"14501":1,"14502":0,"14503":1,"14504":0,"14505":0,"14506":0,"14507":0,"14508":0,"14509":0,"14510":0,"14511":0,"14512":0,"14513":0,"14514":1,"14515":0,"14516":0,"14517":0,"14518":1,"14519":0,"14520":1,"14521":0,"14522":0,"14523":0,"14524":0,"14525":0,"14526":0,"14527":0,"14528":0,"14529":0,"14530":0,"14531":0,"14532":0,"14533":0,"14534":0,"14535":0,"14536":1,"14537":0,"14538":0,"14539":1,"14540":0,"14541":1,"14542":0,"14543":0,"14544":0,"14545":0,"14546":0,"14547":1,"14548":0,"14549":1,"14550":0,"14551":0,"14552":0,"14553":1,"14554":0,"14555":0,"14556":1,"14557":0,"14558":1,"14559":1,"14560":0,"14561":0,"14562":0,"14563":0,"14564":0,"14565":0,"14566":0,"14567":1,"14568":1,"14569":0,"14570":0,"14571":0,"14572":1,"14573":0,"14574":0,"14575":1,"14576":1,"14577":1,"14578":0,"14579":0,"14580":1,"14581":0,"14582":0,"14583":0,"14584":1,"14585":0,"14586":0,"14587":0,"14588":0,"14589":0,"14590":0,"14591":1,"14592":0,"14593":0,"14594":1,"14595":0,"14596":1,"14597":1,"14598":1,"14599":0,"14600":0,"14601":1,"14602":1,"14603":0,"14604":0,"14605":0,"14606":0,"14607":0,"14608":1,"14609":0,"14610":0,"14611":1,"14612":0,"14613":0,"14614":0,"14615":0,"14616":0,"14617":0,"14618":1,"14619":0,"14620":1,"14621":0,"14622":0,"14623":0,"14624":0,"14625":0,"14626":0,"14627":0,"14628":0,"14629":1,"14630":0,"14631":0,"14632":0,"14633":0,"14634":0,"14635":0,"14636":0,"14637":1,"14638":0,"14639":0,"14640":1,"14641":0,"14642":0,"14643":1,"14644":0,"14645":0,"14646":0,"14647":0,"14648":0,"14649":0,"14650":0,"14651":0,"14652":0,"14653":0,"14654":1,"14655":1,"14656":0,"14657":0,"14658":0,"14659":1,"14660":0,"14661":0,"14662":0,"14663":0,"14664":0,"14665":1,"14666":1,"14667":0,"14668":0,"14669":1,"14670":0,"14671":1,"14672":0,"14673":1,"14674":1,"14675":0,"14676":0,"14677":0,"14678":0,"14679":0,"14680":0,"14681":0,"14682":0,"14683":0,"14684":0,"14685":1,"14686":0,"14687":1,"14688":0,"14689":0,"14690":0,"14691":0,"14692":0,"14693":0,"14694":1,"14695":0,"14696":1,"14697":1,"14698":0,"14699":0,"14700":1,"14701":0,"14702":0,"14703":0,"14704":0,"14705":1,"14706":0,"14707":0,"14708":0,"14709":0,"14710":0,"14711":0,"14712":1,"14713":0,"14714":0,"14715":0,"14716":0,"14717":1,"14718":1,"14719":0,"14720":0,"14721":1,"14722":0,"14723":1,"14724":0,"14725":1,"14726":0,"14727":0,"14728":0,"14729":0,"14730":0,"14731":0,"14732":0,"14733":0,"14734":0,"14735":1,"14736":0,"14737":0,"14738":0,"14739":0,"14740":0,"14741":0,"14742":0,"14743":0,"14744":0,"14745":0,"14746":0,"14747":0,"14748":1,"14749":0,"14750":0,"14751":1,"14752":0,"14753":1,"14754":0,"14755":0,"14756":0,"14757":0,"14758":1,"14759":1,"14760":0,"14761":0,"14762":0,"14763":1,"14764":1,"14765":0,"14766":0,"14767":0,"14768":1,"14769":1,"14770":0,"14771":0,"14772":0,"14773":0,"14774":0,"14775":0,"14776":0,"14777":0,"14778":0,"14779":0,"14780":0,"14781":0,"14782":0,"14783":0,"14784":1,"14785":1,"14786":1,"14787":0,"14788":0,"14789":0,"14790":0,"14791":0,"14792":1,"14793":1,"14794":0,"14795":0,"14796":0,"14797":0,"14798":1,"14799":0,"14800":0,"14801":0,"14802":0,"14803":0,"14804":1,"14805":0,"14806":1,"14807":1,"14808":0,"14809":0,"14810":0,"14811":1,"14812":0,"14813":0,"14814":0,"14815":0,"14816":0,"14817":0,"14818":0,"14819":0,"14820":0,"14821":1,"14822":1,"14823":0,"14824":0,"14825":1,"14826":0,"14827":0,"14828":0,"14829":0,"14830":0,"14831":0,"14832":0,"14833":0,"14834":1,"14835":0,"14836":0,"14837":0,"14838":0,"14839":0,"14840":0,"14841":0,"14842":0,"14843":0,"14844":0,"14845":0,"14846":0,"14847":0,"14848":1,"14849":0,"14850":1,"14851":0,"14852":0,"14853":0,"14854":1,"14855":0,"14856":0,"14857":0,"14858":0,"14859":0,"14860":0,"14861":0,"14862":0,"14863":1,"14864":0,"14865":1,"14866":0,"14867":0,"14868":0,"14869":0,"14870":1,"14871":0,"14872":0,"14873":0,"14874":0,"14875":0,"14876":1,"14877":1,"14878":0,"14879":0,"14880":0,"14881":1,"14882":0,"14883":0,"14884":0,"14885":0,"14886":0,"14887":0,"14888":0,"14889":0,"14890":0,"14891":0,"14892":0,"14893":0,"14894":0,"14895":0,"14896":0,"14897":0,"14898":1,"14899":0,"14900":0,"14901":0,"14902":0,"14903":0,"14904":0,"14905":1,"14906":0,"14907":0,"14908":1,"14909":0,"14910":0,"14911":0,"14912":1,"14913":0,"14914":0,"14915":0,"14916":0,"14917":1,"14918":0,"14919":0,"14920":1,"14921":1,"14922":0,"14923":0,"14924":0,"14925":0,"14926":0,"14927":0,"14928":0,"14929":0,"14930":0,"14931":0,"14932":1,"14933":0,"14934":0,"14935":0,"14936":0,"14937":0,"14938":0,"14939":1,"14940":0,"14941":0,"14942":0,"14943":0,"14944":1,"14945":0,"14946":1,"14947":0,"14948":0,"14949":1,"14950":0,"14951":0,"14952":0,"14953":0,"14954":1,"14955":1,"14956":0,"14957":0,"14958":0,"14959":0,"14960":0,"14961":0,"14962":0,"14963":0,"14964":0,"14965":0,"14966":0,"14967":0,"14968":0,"14969":0,"14970":1,"14971":1,"14972":0,"14973":0,"14974":1,"14975":0,"14976":0,"14977":0,"14978":0,"14979":0,"14980":0,"14981":0,"14982":0,"14983":1,"14984":0,"14985":0,"14986":0,"14987":0,"14988":0,"14989":0,"14990":1,"14991":0,"14992":0,"14993":0,"14994":0,"14995":0,"14996":0,"14997":0,"14998":1,"14999":1,"15000":1,"15001":0,"15002":0,"15003":0,"15004":0,"15005":0,"15006":0,"15007":1,"15008":0,"15009":0,"15010":0,"15011":1,"15012":0,"15013":0,"15014":0,"15015":1,"15016":0,"15017":1,"15018":1,"15019":0,"15020":0,"15021":0,"15022":0,"15023":0,"15024":0,"15025":1,"15026":0,"15027":0,"15028":0,"15029":1,"15030":1,"15031":0,"15032":0,"15033":0,"15034":0,"15035":0,"15036":1,"15037":0,"15038":1,"15039":0,"15040":0,"15041":1,"15042":0,"15043":1,"15044":1,"15045":0,"15046":0,"15047":0,"15048":0,"15049":0,"15050":0,"15051":0,"15052":1,"15053":1,"15054":0,"15055":0,"15056":0,"15057":0,"15058":0,"15059":0,"15060":0,"15061":0,"15062":0,"15063":1,"15064":0,"15065":0,"15066":0,"15067":0,"15068":0,"15069":1,"15070":1,"15071":0,"15072":0,"15073":0,"15074":1,"15075":1,"15076":0,"15077":0,"15078":0,"15079":0,"15080":0,"15081":0,"15082":0,"15083":0,"15084":1,"15085":0,"15086":0,"15087":1,"15088":1,"15089":0,"15090":1,"15091":0,"15092":1,"15093":0,"15094":1,"15095":1,"15096":1,"15097":0,"15098":0,"15099":0,"15100":0,"15101":1,"15102":0,"15103":0,"15104":0,"15105":0,"15106":0,"15107":0,"15108":0,"15109":0,"15110":0,"15111":0,"15112":1,"15113":0,"15114":1,"15115":0,"15116":0,"15117":0,"15118":0,"15119":1,"15120":0,"15121":0,"15122":0,"15123":0,"15124":0,"15125":1,"15126":0,"15127":1,"15128":0,"15129":1,"15130":0,"15131":1,"15132":0,"15133":0,"15134":0,"15135":1,"15136":1,"15137":0,"15138":0,"15139":0,"15140":0,"15141":0,"15142":1,"15143":0,"15144":0,"15145":0,"15146":1,"15147":0,"15148":0,"15149":0,"15150":0,"15151":0,"15152":0,"15153":0,"15154":0,"15155":1,"15156":1,"15157":0,"15158":0,"15159":0,"15160":0,"15161":1,"15162":0,"15163":0,"15164":0,"15165":0,"15166":1,"15167":0,"15168":1,"15169":0,"15170":0,"15171":0,"15172":0,"15173":1,"15174":0,"15175":0,"15176":1,"15177":0,"15178":1,"15179":1,"15180":0,"15181":0,"15182":1,"15183":0,"15184":1,"15185":0,"15186":0,"15187":0,"15188":0,"15189":0,"15190":1,"15191":0,"15192":0,"15193":1,"15194":0,"15195":0,"15196":1,"15197":0,"15198":1,"15199":1,"15200":0,"15201":0,"15202":0,"15203":0,"15204":0,"15205":0,"15206":1,"15207":0,"15208":1,"15209":0,"15210":0,"15211":0,"15212":0,"15213":0,"15214":1,"15215":0,"15216":0,"15217":0,"15218":1,"15219":0,"15220":1,"15221":0,"15222":0,"15223":0,"15224":0,"15225":0,"15226":0,"15227":0,"15228":0,"15229":1,"15230":0,"15231":0,"15232":0,"15233":1,"15234":1,"15235":1,"15236":0,"15237":0,"15238":1,"15239":0,"15240":1,"15241":1,"15242":0,"15243":0,"15244":1,"15245":0,"15246":0,"15247":0,"15248":0,"15249":0,"15250":1,"15251":0,"15252":0,"15253":0,"15254":0,"15255":1,"15256":0,"15257":1,"15258":0,"15259":0,"15260":0,"15261":1,"15262":1,"15263":0,"15264":0,"15265":1,"15266":0,"15267":0,"15268":0,"15269":0,"15270":0,"15271":0,"15272":0,"15273":1,"15274":0,"15275":0,"15276":0,"15277":0,"15278":0,"15279":0,"15280":0,"15281":0,"15282":0,"15283":1,"15284":0,"15285":1,"15286":1,"15287":0,"15288":0,"15289":0,"15290":0,"15291":0,"15292":0,"15293":0,"15294":0,"15295":0,"15296":1,"15297":0,"15298":1,"15299":0,"15300":1,"15301":0,"15302":0,"15303":0,"15304":1,"15305":1,"15306":0,"15307":0,"15308":0,"15309":0,"15310":0,"15311":1,"15312":1,"15313":1,"15314":0,"15315":0,"15316":0,"15317":0,"15318":1,"15319":0,"15320":0,"15321":0,"15322":0,"15323":0,"15324":0,"15325":0,"15326":0,"15327":0,"15328":0,"15329":0,"15330":1,"15331":0,"15332":0,"15333":0,"15334":0,"15335":0,"15336":0,"15337":0,"15338":0,"15339":1,"15340":1,"15341":0,"15342":0,"15343":0,"15344":0,"15345":0,"15346":1,"15347":0,"15348":1,"15349":0,"15350":0,"15351":0,"15352":0,"15353":1,"15354":0,"15355":1,"15356":0,"15357":0,"15358":0,"15359":0,"15360":0,"15361":0,"15362":0,"15363":0,"15364":0,"15365":0,"15366":0,"15367":0,"15368":0,"15369":0,"15370":0,"15371":0,"15372":0,"15373":0,"15374":1,"15375":0,"15376":0,"15377":0,"15378":0,"15379":0,"15380":0,"15381":0,"15382":0,"15383":0,"15384":0,"15385":0,"15386":1,"15387":0,"15388":1,"15389":0,"15390":0,"15391":0,"15392":0,"15393":1,"15394":0,"15395":0,"15396":1,"15397":1,"15398":1,"15399":1,"15400":0,"15401":0,"15402":0,"15403":1,"15404":1,"15405":0,"15406":0,"15407":1,"15408":0,"15409":1,"15410":0,"15411":0,"15412":0,"15413":1,"15414":0,"15415":1,"15416":0,"15417":0,"15418":1,"15419":0,"15420":0,"15421":0,"15422":0,"15423":0,"15424":1,"15425":0,"15426":1,"15427":1,"15428":1,"15429":1,"15430":1,"15431":1,"15432":0,"15433":0,"15434":0,"15435":0,"15436":0,"15437":0,"15438":0,"15439":0,"15440":1,"15441":0,"15442":0,"15443":1,"15444":1,"15445":0,"15446":0,"15447":1,"15448":0,"15449":1,"15450":0,"15451":0,"15452":0,"15453":0,"15454":0,"15455":0,"15456":0,"15457":0,"15458":0,"15459":1,"15460":1,"15461":0,"15462":0,"15463":0,"15464":0,"15465":1,"15466":1,"15467":0,"15468":1,"15469":0,"15470":1,"15471":0,"15472":0,"15473":0,"15474":0,"15475":0,"15476":0,"15477":0,"15478":0,"15479":0,"15480":1,"15481":0,"15482":0,"15483":0,"15484":0,"15485":0,"15486":1,"15487":0,"15488":0,"15489":1,"15490":0,"15491":0,"15492":0,"15493":0,"15494":0,"15495":0,"15496":0,"15497":0,"15498":0,"15499":0,"15500":1,"15501":0,"15502":0,"15503":0,"15504":0,"15505":0,"15506":0,"15507":0,"15508":0,"15509":0,"15510":0,"15511":1,"15512":0,"15513":1,"15514":0,"15515":0,"15516":0,"15517":1,"15518":0,"15519":1,"15520":0,"15521":1,"15522":0,"15523":0,"15524":0,"15525":0,"15526":0,"15527":1,"15528":0,"15529":0,"15530":0,"15531":0,"15532":0,"15533":0,"15534":0,"15535":0,"15536":0,"15537":0,"15538":0,"15539":0,"15540":0,"15541":0,"15542":0,"15543":0,"15544":0,"15545":1,"15546":0,"15547":0,"15548":1,"15549":0,"15550":0,"15551":0,"15552":0,"15553":0,"15554":0,"15555":0,"15556":0,"15557":1,"15558":0,"15559":1,"15560":0,"15561":0,"15562":1,"15563":0,"15564":0,"15565":0,"15566":0,"15567":0,"15568":1,"15569":0,"15570":0,"15571":1,"15572":0,"15573":1,"15574":0,"15575":0,"15576":0,"15577":0,"15578":0,"15579":0,"15580":1,"15581":0,"15582":0,"15583":1,"15584":0,"15585":1,"15586":1,"15587":0,"15588":0,"15589":1,"15590":1,"15591":0,"15592":1,"15593":0,"15594":0,"15595":0,"15596":1,"15597":1,"15598":0,"15599":0,"15600":0,"15601":1,"15602":1,"15603":0,"15604":0,"15605":1,"15606":0,"15607":0,"15608":1,"15609":0,"15610":0,"15611":0,"15612":0,"15613":1,"15614":1,"15615":0,"15616":0,"15617":1,"15618":0,"15619":0,"15620":0,"15621":0,"15622":0,"15623":1,"15624":0,"15625":0,"15626":0,"15627":0,"15628":0,"15629":0,"15630":0,"15631":0,"15632":1,"15633":0,"15634":0,"15635":0,"15636":1,"15637":0,"15638":0,"15639":0,"15640":0,"15641":0,"15642":0,"15643":0,"15644":1,"15645":0,"15646":0,"15647":1,"15648":0,"15649":0,"15650":0,"15651":0,"15652":0,"15653":1,"15654":1,"15655":0,"15656":0,"15657":0,"15658":0,"15659":0,"15660":0,"15661":0,"15662":0,"15663":0,"15664":0,"15665":1,"15666":1,"15667":0,"15668":0,"15669":0,"15670":1,"15671":0,"15672":0,"15673":0,"15674":0,"15675":0,"15676":0,"15677":0,"15678":0,"15679":0,"15680":1,"15681":0,"15682":0,"15683":1,"15684":1,"15685":0,"15686":0,"15687":0,"15688":0,"15689":0,"15690":0,"15691":0,"15692":0,"15693":0,"15694":1,"15695":0,"15696":0,"15697":0,"15698":1,"15699":0,"15700":0,"15701":0,"15702":0,"15703":0,"15704":1,"15705":0,"15706":0,"15707":0,"15708":1,"15709":0,"15710":0,"15711":0,"15712":0,"15713":1,"15714":0,"15715":0,"15716":0,"15717":0,"15718":1,"15719":0,"15720":0,"15721":0,"15722":0,"15723":0,"15724":0,"15725":0,"15726":0,"15727":0,"15728":0,"15729":0,"15730":1,"15731":0,"15732":0,"15733":0,"15734":0,"15735":0,"15736":0,"15737":0,"15738":1,"15739":0,"15740":1,"15741":0,"15742":1,"15743":0,"15744":1,"15745":0,"15746":0,"15747":0,"15748":1,"15749":1,"15750":0,"15751":0,"15752":0,"15753":0,"15754":1,"15755":0,"15756":0,"15757":0,"15758":0,"15759":0,"15760":1,"15761":0,"15762":1,"15763":1,"15764":1,"15765":0,"15766":1,"15767":0,"15768":0,"15769":1,"15770":0,"15771":0,"15772":0,"15773":0,"15774":1,"15775":1,"15776":0,"15777":1,"15778":1,"15779":0,"15780":0,"15781":0,"15782":1,"15783":0,"15784":0,"15785":0,"15786":0,"15787":0,"15788":0,"15789":1,"15790":0,"15791":0,"15792":0,"15793":0,"15794":0,"15795":0,"15796":1,"15797":1,"15798":0,"15799":0,"15800":1,"15801":0,"15802":0,"15803":0,"15804":0,"15805":1,"15806":0,"15807":0,"15808":1,"15809":1,"15810":0,"15811":0,"15812":0,"15813":1,"15814":1,"15815":0,"15816":0,"15817":0,"15818":0,"15819":0,"15820":1,"15821":1,"15822":0,"15823":0,"15824":0,"15825":0,"15826":0,"15827":0,"15828":1,"15829":0,"15830":0,"15831":1,"15832":0,"15833":1,"15834":0,"15835":0,"15836":0,"15837":0,"15838":0,"15839":1,"15840":0,"15841":0,"15842":1,"15843":0,"15844":0,"15845":0,"15846":1,"15847":0,"15848":0,"15849":0,"15850":0,"15851":0,"15852":0,"15853":0,"15854":0,"15855":0,"15856":0,"15857":0,"15858":0,"15859":0,"15860":0,"15861":1,"15862":0,"15863":0,"15864":0,"15865":1,"15866":1,"15867":0,"15868":0,"15869":1,"15870":0,"15871":0,"15872":1,"15873":0,"15874":1,"15875":1,"15876":1,"15877":0,"15878":1,"15879":0,"15880":1,"15881":0,"15882":0,"15883":0,"15884":0,"15885":0,"15886":0,"15887":1,"15888":1,"15889":1,"15890":0,"15891":1,"15892":0,"15893":0,"15894":0,"15895":0,"15896":0,"15897":0,"15898":0,"15899":0,"15900":0,"15901":0,"15902":0,"15903":0,"15904":0,"15905":1,"15906":0,"15907":1,"15908":0,"15909":1,"15910":0,"15911":0,"15912":0,"15913":1,"15914":0,"15915":1,"15916":0,"15917":0,"15918":0,"15919":0,"15920":0,"15921":0,"15922":0,"15923":0,"15924":0,"15925":0,"15926":0,"15927":0,"15928":0,"15929":0,"15930":0,"15931":0,"15932":0,"15933":1,"15934":0,"15935":1,"15936":0,"15937":0,"15938":0,"15939":1,"15940":1,"15941":0,"15942":0,"15943":0,"15944":0,"15945":1,"15946":0,"15947":0,"15948":0,"15949":1,"15950":0,"15951":0,"15952":0,"15953":0,"15954":0,"15955":0,"15956":0,"15957":0,"15958":0,"15959":1,"15960":0,"15961":1,"15962":0,"15963":0,"15964":0,"15965":0,"15966":0,"15967":0,"15968":0,"15969":0,"15970":0,"15971":0,"15972":1,"15973":0,"15974":0,"15975":0,"15976":0,"15977":1,"15978":1,"15979":0,"15980":1,"15981":0,"15982":0,"15983":1,"15984":0,"15985":0,"15986":0,"15987":1,"15988":0,"15989":0,"15990":1,"15991":0,"15992":0,"15993":0,"15994":0,"15995":0,"15996":0,"15997":0,"15998":1,"15999":0,"16000":1,"16001":0,"16002":0,"16003":0,"16004":1,"16005":0,"16006":1,"16007":1,"16008":0,"16009":0,"16010":0,"16011":0,"16012":0,"16013":0,"16014":0,"16015":1,"16016":0,"16017":1,"16018":1,"16019":0,"16020":0,"16021":0,"16022":0,"16023":0,"16024":0,"16025":0,"16026":0,"16027":0,"16028":0,"16029":0,"16030":0,"16031":0,"16032":0,"16033":0,"16034":0,"16035":0,"16036":0,"16037":0,"16038":1,"16039":1,"16040":0,"16041":0,"16042":1,"16043":0,"16044":0,"16045":0,"16046":0,"16047":0,"16048":1,"16049":0,"16050":1,"16051":0,"16052":0,"16053":1,"16054":0,"16055":0,"16056":0,"16057":1,"16058":0,"16059":1,"16060":0,"16061":0,"16062":0,"16063":1,"16064":0,"16065":0,"16066":1,"16067":0,"16068":0,"16069":0,"16070":1,"16071":0,"16072":0,"16073":0,"16074":0,"16075":0,"16076":0,"16077":0,"16078":0,"16079":0,"16080":0,"16081":1,"16082":1,"16083":0,"16084":0,"16085":1,"16086":0,"16087":0,"16088":0,"16089":0,"16090":0,"16091":0,"16092":0,"16093":0,"16094":0,"16095":1,"16096":0,"16097":0,"16098":0,"16099":0,"16100":0,"16101":0,"16102":0,"16103":0,"16104":1,"16105":0,"16106":0,"16107":1,"16108":0,"16109":0,"16110":0,"16111":0,"16112":0,"16113":1,"16114":0,"16115":0,"16116":0,"16117":1,"16118":0,"16119":1,"16120":0,"16121":0,"16122":1,"16123":0,"16124":0,"16125":0,"16126":0,"16127":0,"16128":1,"16129":1,"16130":0,"16131":0,"16132":0,"16133":0,"16134":0,"16135":0,"16136":0,"16137":0,"16138":1,"16139":0,"16140":0,"16141":1,"16142":0,"16143":0,"16144":0,"16145":0,"16146":1,"16147":0,"16148":0,"16149":0,"16150":0,"16151":0,"16152":0,"16153":0,"16154":0,"16155":1,"16156":0,"16157":1,"16158":0,"16159":0,"16160":0,"16161":0,"16162":1,"16163":0,"16164":0,"16165":0,"16166":0,"16167":1,"16168":0,"16169":0,"16170":0,"16171":0,"16172":0,"16173":1,"16174":1,"16175":0,"16176":1,"16177":0,"16178":0,"16179":1,"16180":1,"16181":0,"16182":0,"16183":0,"16184":0,"16185":0,"16186":0,"16187":0,"16188":0,"16189":0,"16190":0,"16191":0,"16192":0,"16193":0,"16194":0,"16195":0,"16196":0,"16197":0,"16198":0,"16199":0,"16200":0,"16201":0,"16202":0,"16203":0,"16204":1,"16205":0,"16206":1,"16207":0,"16208":0,"16209":1,"16210":0,"16211":0,"16212":1,"16213":0,"16214":0,"16215":0,"16216":0,"16217":0,"16218":0,"16219":1,"16220":0,"16221":0,"16222":1,"16223":0,"16224":0,"16225":1,"16226":0,"16227":0,"16228":0,"16229":0,"16230":0,"16231":0,"16232":0,"16233":0,"16234":1,"16235":0,"16236":1,"16237":0,"16238":0,"16239":0,"16240":0,"16241":0,"16242":0,"16243":1,"16244":0,"16245":0,"16246":0,"16247":0,"16248":0,"16249":0,"16250":0,"16251":0,"16252":1,"16253":0,"16254":0,"16255":1,"16256":0,"16257":0,"16258":0,"16259":1,"16260":0,"16261":0,"16262":0,"16263":0,"16264":0,"16265":0,"16266":1,"16267":0,"16268":0,"16269":0,"16270":0,"16271":0,"16272":0,"16273":0,"16274":0,"16275":0,"16276":0,"16277":0,"16278":1,"16279":0,"16280":0,"16281":0,"16282":1,"16283":0,"16284":0,"16285":1,"16286":0,"16287":0,"16288":0,"16289":0,"16290":0,"16291":0,"16292":0,"16293":0,"16294":0,"16295":0,"16296":1,"16297":0,"16298":0,"16299":0,"16300":0,"16301":0,"16302":1,"16303":0,"16304":0,"16305":0,"16306":0,"16307":0,"16308":0,"16309":1,"16310":0,"16311":0,"16312":0,"16313":0,"16314":0,"16315":0,"16316":0,"16317":0,"16318":0,"16319":0,"16320":0,"16321":0,"16322":1,"16323":0,"16324":0,"16325":0,"16326":0,"16327":0,"16328":1,"16329":0,"16330":0,"16331":0,"16332":0,"16333":0,"16334":1,"16335":0,"16336":1,"16337":0,"16338":0,"16339":0,"16340":0,"16341":0,"16342":1,"16343":0,"16344":0,"16345":0,"16346":0,"16347":1,"16348":1,"16349":0,"16350":0,"16351":0,"16352":1,"16353":0,"16354":0,"16355":0,"16356":0,"16357":0,"16358":0,"16359":1,"16360":0,"16361":0,"16362":0,"16363":0,"16364":1,"16365":1,"16366":0,"16367":0,"16368":1,"16369":1,"16370":0,"16371":0,"16372":0,"16373":0,"16374":0,"16375":0,"16376":0,"16377":0,"16378":0,"16379":0,"16380":0,"16381":0,"16382":0,"16383":0,"16384":1,"16385":0,"16386":0,"16387":0,"16388":1,"16389":0,"16390":0,"16391":0,"16392":0,"16393":0,"16394":0,"16395":1,"16396":1,"16397":0,"16398":0,"16399":0,"16400":0,"16401":0,"16402":0,"16403":0,"16404":0,"16405":1,"16406":0,"16407":1,"16408":0,"16409":0,"16410":0,"16411":0,"16412":0,"16413":0,"16414":0,"16415":1,"16416":1,"16417":0,"16418":0,"16419":0,"16420":0,"16421":0,"16422":0,"16423":1,"16424":1,"16425":0,"16426":0,"16427":0,"16428":0,"16429":0,"16430":0,"16431":0,"16432":0,"16433":0,"16434":0,"16435":0,"16436":0,"16437":0,"16438":0,"16439":0,"16440":1,"16441":0,"16442":0,"16443":1,"16444":1,"16445":0,"16446":0,"16447":0,"16448":0,"16449":0,"16450":1,"16451":0,"16452":0,"16453":0,"16454":0,"16455":1,"16456":1,"16457":0,"16458":0,"16459":1,"16460":0,"16461":0,"16462":0,"16463":1,"16464":0,"16465":0,"16466":1,"16467":1,"16468":0,"16469":0,"16470":0,"16471":1,"16472":0,"16473":1,"16474":0,"16475":0,"16476":0,"16477":0,"16478":0,"16479":0,"16480":0,"16481":0,"16482":1,"16483":0,"16484":0,"16485":1,"16486":0,"16487":1,"16488":0,"16489":0,"16490":0,"16491":0,"16492":0,"16493":0,"16494":0,"16495":0,"16496":1,"16497":0,"16498":0,"16499":0,"16500":0,"16501":0,"16502":0,"16503":0,"16504":0,"16505":1,"16506":0,"16507":0,"16508":0,"16509":1,"16510":0,"16511":0,"16512":0,"16513":0,"16514":1,"16515":0,"16516":0,"16517":0,"16518":0,"16519":0,"16520":1,"16521":0,"16522":0,"16523":0,"16524":1,"16525":0,"16526":0,"16527":0,"16528":0,"16529":1,"16530":1,"16531":1,"16532":0,"16533":0,"16534":0,"16535":0,"16536":0,"16537":0,"16538":0,"16539":0,"16540":1,"16541":0,"16542":1,"16543":0,"16544":0,"16545":1,"16546":0,"16547":0,"16548":0,"16549":1,"16550":0,"16551":1,"16552":0,"16553":1,"16554":0,"16555":1,"16556":1,"16557":0,"16558":1,"16559":1,"16560":1,"16561":0,"16562":0,"16563":0,"16564":1,"16565":0,"16566":0,"16567":1,"16568":0,"16569":1,"16570":1,"16571":1,"16572":0,"16573":0,"16574":0,"16575":1,"16576":0,"16577":0,"16578":0,"16579":1,"16580":0,"16581":0,"16582":1,"16583":1,"16584":1,"16585":0,"16586":0,"16587":0,"16588":0,"16589":1,"16590":0,"16591":0,"16592":0,"16593":0,"16594":0,"16595":0,"16596":0,"16597":0,"16598":0,"16599":0,"16600":0,"16601":0,"16602":0,"16603":0,"16604":0,"16605":0,"16606":0,"16607":1,"16608":0,"16609":0,"16610":0,"16611":0,"16612":0,"16613":0,"16614":1,"16615":0,"16616":0,"16617":0,"16618":0,"16619":0,"16620":0,"16621":0,"16622":1,"16623":1,"16624":1,"16625":1,"16626":0,"16627":1,"16628":0,"16629":0,"16630":0,"16631":0,"16632":0,"16633":0,"16634":0,"16635":0,"16636":0,"16637":0,"16638":0,"16639":0,"16640":1,"16641":0,"16642":0,"16643":0,"16644":0,"16645":1,"16646":0,"16647":1,"16648":0,"16649":0,"16650":0,"16651":1,"16652":0,"16653":0,"16654":0,"16655":0,"16656":0,"16657":0,"16658":1,"16659":0,"16660":0,"16661":0,"16662":1,"16663":0,"16664":0,"16665":0,"16666":0,"16667":0,"16668":0,"16669":0,"16670":0,"16671":0,"16672":0,"16673":0,"16674":0,"16675":0,"16676":1,"16677":0,"16678":1,"16679":0,"16680":0,"16681":0,"16682":0,"16683":0,"16684":1,"16685":0,"16686":0,"16687":0,"16688":0,"16689":0,"16690":0,"16691":0,"16692":0,"16693":0,"16694":0,"16695":1,"16696":0,"16697":0,"16698":0,"16699":0,"16700":0,"16701":0,"16702":0,"16703":0,"16704":0,"16705":0,"16706":0,"16707":1,"16708":0,"16709":1,"16710":0,"16711":1,"16712":1,"16713":0,"16714":0,"16715":0,"16716":1,"16717":0,"16718":0,"16719":0,"16720":0,"16721":1,"16722":0,"16723":0,"16724":0,"16725":1,"16726":0,"16727":0,"16728":0,"16729":0,"16730":0,"16731":0,"16732":0,"16733":0,"16734":1,"16735":0,"16736":1,"16737":1,"16738":0,"16739":0,"16740":1,"16741":0,"16742":0,"16743":0,"16744":0,"16745":0,"16746":1,"16747":0,"16748":0,"16749":0,"16750":0,"16751":0,"16752":0,"16753":1,"16754":1,"16755":0,"16756":1,"16757":0,"16758":0,"16759":0,"16760":0,"16761":0,"16762":0,"16763":0,"16764":0,"16765":0,"16766":1,"16767":0,"16768":0,"16769":0,"16770":0,"16771":0,"16772":0,"16773":0,"16774":0,"16775":0,"16776":0,"16777":0,"16778":1,"16779":0,"16780":0,"16781":0,"16782":1,"16783":0,"16784":0,"16785":1,"16786":0,"16787":1,"16788":1,"16789":0,"16790":0,"16791":0,"16792":0,"16793":0,"16794":0,"16795":0,"16796":1,"16797":0,"16798":0,"16799":0,"16800":0,"16801":0,"16802":0,"16803":1,"16804":1,"16805":0,"16806":0,"16807":1,"16808":1,"16809":0,"16810":0,"16811":0,"16812":1,"16813":0,"16814":0,"16815":1,"16816":0,"16817":1,"16818":0,"16819":0,"16820":0,"16821":1,"16822":1,"16823":0,"16824":0,"16825":0,"16826":0,"16827":1,"16828":1,"16829":0,"16830":0,"16831":0,"16832":0,"16833":0,"16834":0,"16835":0,"16836":0,"16837":0,"16838":0,"16839":0,"16840":0,"16841":0,"16842":0,"16843":0,"16844":0,"16845":0,"16846":1,"16847":0,"16848":0,"16849":0,"16850":0,"16851":0,"16852":1,"16853":0,"16854":1,"16855":1,"16856":0,"16857":0,"16858":0,"16859":0,"16860":0,"16861":0,"16862":0,"16863":0,"16864":0,"16865":0,"16866":0,"16867":0,"16868":0,"16869":0,"16870":1,"16871":0,"16872":0,"16873":1,"16874":0,"16875":1,"16876":1,"16877":1,"16878":0,"16879":0,"16880":0,"16881":1,"16882":0,"16883":0,"16884":0,"16885":0,"16886":0,"16887":1,"16888":0,"16889":0,"16890":0,"16891":0,"16892":0,"16893":0,"16894":0,"16895":0,"16896":0,"16897":0,"16898":0,"16899":0,"16900":0,"16901":0,"16902":0,"16903":0,"16904":0,"16905":0,"16906":0,"16907":0,"16908":0,"16909":1,"16910":0,"16911":0,"16912":0,"16913":0,"16914":0,"16915":0,"16916":1,"16917":0,"16918":1,"16919":0,"16920":0,"16921":1,"16922":0,"16923":0,"16924":0,"16925":0,"16926":0,"16927":1,"16928":0,"16929":1,"16930":1,"16931":0,"16932":0,"16933":1,"16934":0,"16935":1,"16936":0,"16937":1,"16938":0,"16939":0,"16940":0,"16941":0,"16942":1,"16943":0,"16944":0,"16945":0,"16946":0,"16947":0,"16948":0,"16949":1,"16950":0,"16951":1,"16952":0,"16953":1,"16954":0,"16955":0,"16956":0,"16957":0,"16958":0,"16959":0,"16960":1,"16961":0,"16962":1,"16963":1,"16964":0,"16965":0,"16966":0,"16967":0,"16968":1,"16969":0,"16970":1,"16971":0,"16972":1,"16973":1,"16974":1,"16975":0,"16976":1,"16977":0,"16978":0,"16979":0,"16980":1,"16981":0,"16982":0,"16983":1,"16984":1,"16985":0,"16986":0,"16987":0,"16988":0,"16989":0,"16990":0,"16991":0,"16992":0,"16993":0,"16994":1,"16995":0,"16996":1,"16997":0,"16998":0,"16999":1,"17000":0,"17001":0,"17002":1,"17003":0,"17004":0,"17005":0,"17006":0,"17007":0,"17008":0,"17009":0,"17010":0,"17011":1,"17012":0,"17013":0,"17014":1,"17015":0,"17016":0,"17017":1,"17018":0,"17019":0,"17020":0,"17021":0,"17022":1,"17023":0,"17024":0,"17025":0,"17026":1,"17027":0,"17028":0,"17029":1,"17030":0,"17031":1,"17032":1,"17033":0,"17034":0,"17035":0,"17036":0,"17037":1,"17038":0,"17039":1,"17040":0,"17041":0,"17042":1,"17043":0,"17044":1,"17045":0,"17046":0,"17047":0,"17048":0,"17049":0,"17050":0,"17051":0,"17052":0,"17053":1,"17054":1,"17055":0,"17056":1,"17057":0,"17058":0,"17059":0,"17060":0,"17061":1,"17062":0,"17063":0,"17064":0,"17065":0,"17066":0,"17067":0,"17068":0,"17069":0,"17070":0,"17071":0,"17072":0,"17073":1,"17074":0,"17075":1,"17076":1,"17077":0,"17078":1,"17079":0,"17080":0,"17081":1,"17082":0,"17083":0,"17084":0,"17085":0,"17086":0,"17087":1,"17088":0,"17089":0,"17090":1,"17091":0,"17092":0,"17093":0,"17094":0,"17095":0,"17096":1,"17097":0,"17098":1,"17099":0,"17100":0,"17101":1,"17102":1,"17103":0,"17104":0,"17105":1,"17106":1,"17107":0,"17108":0,"17109":0,"17110":0,"17111":0,"17112":1,"17113":0,"17114":0,"17115":0,"17116":0,"17117":0,"17118":0,"17119":1,"17120":1,"17121":0,"17122":1,"17123":0,"17124":0,"17125":1,"17126":1,"17127":0,"17128":1,"17129":0,"17130":0,"17131":0,"17132":0,"17133":0,"17134":0,"17135":0,"17136":0,"17137":1,"17138":0,"17139":1,"17140":0,"17141":0,"17142":1,"17143":0,"17144":0,"17145":1,"17146":0,"17147":0,"17148":0,"17149":0,"17150":0,"17151":0,"17152":0,"17153":1,"17154":0,"17155":0,"17156":0,"17157":0,"17158":0,"17159":0,"17160":1,"17161":1,"17162":0,"17163":1,"17164":1,"17165":0,"17166":0,"17167":0,"17168":1,"17169":0,"17170":0,"17171":1,"17172":0,"17173":1,"17174":0,"17175":1,"17176":1,"17177":0,"17178":0,"17179":1,"17180":0,"17181":0,"17182":0,"17183":0,"17184":0,"17185":0,"17186":0,"17187":0,"17188":0,"17189":0,"17190":0,"17191":0,"17192":0,"17193":0,"17194":1,"17195":0,"17196":1,"17197":1,"17198":1,"17199":0,"17200":0,"17201":0,"17202":1,"17203":1,"17204":0,"17205":0,"17206":0,"17207":0,"17208":0,"17209":0,"17210":1,"17211":0,"17212":1,"17213":0,"17214":0,"17215":1,"17216":0,"17217":0,"17218":0,"17219":1,"17220":0,"17221":1,"17222":1,"17223":1,"17224":1,"17225":0,"17226":0,"17227":0,"17228":0,"17229":0,"17230":0,"17231":1,"17232":0,"17233":1,"17234":0,"17235":0,"17236":0,"17237":0,"17238":0,"17239":0,"17240":0,"17241":0,"17242":1,"17243":1,"17244":0,"17245":0,"17246":0,"17247":1,"17248":0,"17249":0,"17250":0,"17251":0,"17252":0,"17253":0,"17254":1,"17255":1,"17256":0,"17257":0,"17258":0,"17259":0,"17260":1,"17261":0,"17262":0,"17263":0,"17264":0,"17265":0,"17266":1,"17267":0,"17268":1,"17269":1,"17270":0,"17271":1,"17272":0,"17273":1,"17274":1,"17275":0,"17276":1,"17277":1,"17278":0,"17279":0,"17280":1,"17281":0,"17282":0,"17283":0,"17284":1,"17285":1,"17286":1,"17287":1,"17288":0,"17289":0,"17290":0,"17291":1,"17292":0,"17293":1,"17294":0,"17295":0,"17296":0,"17297":0,"17298":0,"17299":1,"17300":0,"17301":0,"17302":0,"17303":0,"17304":0,"17305":0,"17306":1,"17307":0,"17308":0,"17309":0,"17310":1,"17311":1,"17312":0,"17313":0,"17314":0,"17315":0,"17316":0,"17317":0,"17318":0,"17319":1,"17320":0,"17321":1,"17322":0,"17323":0,"17324":0,"17325":0,"17326":0,"17327":0,"17328":0,"17329":0,"17330":0,"17331":1,"17332":0,"17333":0,"17334":0,"17335":0,"17336":0,"17337":1,"17338":0,"17339":0,"17340":1,"17341":0,"17342":1,"17343":0,"17344":1,"17345":0,"17346":0,"17347":0,"17348":0,"17349":1,"17350":0,"17351":0,"17352":0,"17353":0,"17354":0,"17355":0,"17356":1,"17357":0,"17358":0,"17359":0,"17360":1,"17361":1,"17362":0,"17363":1,"17364":0,"17365":0,"17366":1,"17367":0,"17368":0,"17369":0,"17370":0,"17371":1,"17372":0,"17373":1,"17374":1,"17375":1,"17376":1,"17377":0,"17378":0,"17379":1,"17380":0,"17381":0,"17382":0,"17383":0,"17384":0,"17385":0,"17386":0,"17387":0,"17388":0,"17389":0,"17390":1,"17391":0,"17392":0,"17393":0,"17394":1,"17395":0,"17396":1,"17397":1,"17398":0,"17399":0,"17400":0,"17401":1,"17402":1,"17403":1,"17404":1,"17405":1,"17406":0,"17407":1,"17408":0,"17409":1,"17410":0,"17411":1,"17412":0,"17413":0,"17414":0,"17415":0,"17416":0,"17417":0,"17418":0,"17419":0,"17420":0,"17421":1,"17422":0,"17423":0,"17424":1,"17425":0,"17426":0,"17427":0,"17428":1,"17429":0,"17430":0,"17431":0,"17432":1,"17433":0,"17434":0,"17435":1,"17436":0,"17437":0,"17438":1,"17439":1,"17440":0,"17441":1,"17442":1,"17443":0,"17444":1,"17445":0,"17446":0,"17447":1,"17448":0,"17449":0,"17450":1,"17451":1,"17452":0,"17453":0,"17454":0,"17455":1,"17456":0,"17457":0,"17458":1,"17459":0,"17460":0,"17461":0,"17462":0,"17463":0,"17464":0,"17465":0,"17466":1,"17467":0,"17468":1,"17469":0,"17470":0,"17471":0,"17472":0,"17473":0,"17474":0,"17475":1,"17476":0,"17477":0,"17478":0,"17479":0,"17480":0,"17481":1,"17482":0,"17483":0,"17484":0,"17485":0,"17486":0,"17487":0,"17488":0,"17489":1,"17490":1,"17491":0,"17492":0,"17493":0,"17494":1,"17495":0,"17496":0,"17497":0,"17498":0,"17499":1,"17500":1,"17501":0,"17502":1,"17503":0,"17504":0,"17505":1,"17506":0,"17507":0,"17508":0,"17509":1,"17510":0,"17511":0,"17512":0,"17513":0,"17514":0,"17515":0,"17516":0,"17517":1,"17518":0,"17519":0,"17520":0,"17521":0,"17522":0,"17523":0,"17524":0,"17525":0,"17526":0,"17527":0,"17528":0,"17529":0,"17530":0,"17531":0,"17532":0,"17533":0,"17534":0,"17535":0,"17536":0,"17537":1,"17538":0,"17539":0,"17540":0,"17541":0,"17542":0,"17543":1,"17544":1,"17545":0,"17546":0,"17547":0,"17548":0,"17549":1,"17550":0,"17551":0,"17552":1,"17553":1,"17554":0,"17555":1,"17556":0,"17557":0,"17558":0,"17559":0,"17560":0,"17561":1,"17562":0,"17563":0,"17564":0,"17565":0,"17566":1,"17567":1,"17568":0,"17569":1,"17570":1,"17571":0,"17572":0,"17573":0,"17574":0,"17575":0,"17576":0,"17577":0,"17578":0,"17579":0,"17580":0,"17581":0,"17582":0,"17583":0,"17584":0,"17585":0,"17586":1,"17587":1,"17588":0,"17589":0,"17590":1,"17591":1,"17592":0,"17593":0,"17594":0,"17595":0,"17596":0,"17597":0,"17598":0,"17599":0,"17600":0,"17601":0,"17602":0,"17603":1,"17604":0,"17605":1,"17606":1,"17607":1,"17608":0,"17609":0,"17610":1,"17611":0,"17612":0,"17613":0,"17614":0,"17615":0,"17616":1,"17617":0,"17618":0,"17619":1,"17620":1,"17621":0,"17622":0,"17623":0,"17624":0,"17625":0,"17626":0,"17627":0,"17628":0,"17629":0,"17630":0,"17631":0,"17632":1,"17633":0,"17634":0,"17635":0,"17636":1,"17637":0,"17638":0,"17639":1,"17640":0,"17641":0,"17642":0,"17643":0,"17644":0,"17645":0,"17646":0,"17647":1,"17648":1,"17649":1,"17650":0,"17651":0,"17652":0,"17653":1,"17654":1,"17655":0,"17656":0,"17657":1,"17658":0,"17659":0,"17660":0,"17661":0,"17662":0,"17663":1,"17664":0,"17665":1,"17666":0,"17667":0,"17668":1,"17669":0,"17670":1,"17671":0,"17672":0,"17673":1,"17674":1,"17675":0,"17676":1,"17677":0,"17678":0,"17679":0,"17680":1,"17681":0,"17682":0,"17683":1,"17684":0,"17685":0,"17686":0,"17687":0,"17688":0,"17689":0,"17690":1,"17691":1,"17692":1,"17693":1,"17694":0,"17695":1,"17696":1,"17697":1,"17698":0,"17699":1,"17700":0,"17701":0,"17702":0,"17703":0,"17704":1,"17705":0,"17706":0,"17707":0,"17708":0,"17709":0,"17710":1,"17711":0,"17712":0,"17713":1,"17714":0,"17715":0,"17716":0,"17717":0,"17718":0,"17719":0,"17720":1,"17721":0,"17722":0,"17723":0,"17724":0,"17725":1,"17726":0,"17727":0,"17728":1,"17729":1,"17730":0,"17731":1,"17732":0,"17733":0,"17734":0,"17735":0,"17736":0,"17737":0,"17738":0,"17739":0,"17740":0,"17741":1,"17742":0,"17743":1,"17744":0,"17745":1,"17746":0,"17747":1,"17748":1,"17749":0,"17750":1,"17751":0,"17752":0,"17753":0,"17754":0,"17755":0,"17756":0,"17757":0,"17758":1,"17759":1,"17760":0,"17761":0,"17762":1,"17763":0,"17764":0,"17765":0,"17766":0,"17767":1,"17768":0,"17769":0,"17770":0,"17771":1,"17772":1,"17773":0,"17774":1,"17775":1,"17776":1,"17777":1,"17778":0,"17779":0,"17780":0,"17781":0,"17782":0,"17783":1,"17784":0,"17785":1,"17786":0,"17787":0,"17788":0,"17789":0,"17790":1,"17791":0,"17792":0,"17793":1,"17794":0,"17795":0,"17796":0,"17797":0,"17798":0,"17799":0,"17800":0,"17801":0,"17802":1,"17803":0,"17804":1,"17805":0,"17806":0,"17807":0,"17808":0,"17809":0,"17810":0,"17811":1,"17812":0,"17813":0,"17814":1,"17815":0,"17816":1,"17817":0,"17818":0,"17819":0,"17820":0,"17821":0,"17822":0,"17823":0,"17824":0,"17825":0,"17826":0,"17827":0,"17828":0,"17829":0,"17830":0,"17831":1,"17832":0,"17833":0,"17834":0,"17835":0,"17836":0,"17837":0,"17838":0,"17839":0,"17840":1,"17841":0,"17842":0,"17843":0,"17844":0,"17845":1,"17846":0,"17847":0,"17848":0,"17849":0,"17850":0,"17851":0,"17852":1,"17853":1,"17854":0,"17855":0,"17856":0,"17857":1,"17858":0,"17859":0,"17860":1,"17861":0,"17862":0,"17863":0,"17864":0,"17865":0,"17866":0,"17867":1,"17868":1,"17869":0,"17870":1,"17871":1,"17872":0,"17873":1,"17874":0,"17875":0,"17876":1,"17877":0,"17878":0,"17879":1,"17880":1,"17881":0,"17882":0,"17883":1,"17884":0,"17885":0,"17886":0,"17887":1,"17888":0,"17889":0,"17890":1,"17891":0,"17892":0,"17893":1,"17894":0,"17895":1,"17896":0,"17897":0,"17898":0,"17899":0,"17900":0,"17901":0,"17902":0,"17903":0,"17904":0,"17905":1,"17906":0,"17907":1,"17908":0,"17909":0,"17910":1,"17911":0,"17912":0,"17913":0,"17914":0,"17915":1,"17916":1,"17917":0,"17918":0,"17919":1,"17920":0,"17921":0,"17922":0,"17923":0,"17924":1,"17925":0,"17926":0,"17927":0,"17928":0,"17929":0,"17930":1,"17931":0,"17932":0,"17933":0,"17934":0,"17935":0,"17936":0,"17937":0,"17938":0,"17939":1,"17940":0,"17941":0,"17942":0,"17943":0,"17944":0,"17945":1,"17946":0,"17947":1,"17948":0,"17949":0,"17950":0,"17951":1,"17952":0,"17953":1,"17954":0,"17955":0,"17956":0,"17957":1,"17958":0,"17959":1,"17960":0,"17961":0,"17962":1,"17963":1,"17964":1,"17965":0,"17966":0,"17967":0,"17968":0,"17969":0,"17970":1,"17971":0,"17972":0,"17973":0,"17974":0,"17975":1,"17976":0,"17977":0,"17978":1,"17979":0,"17980":0,"17981":0,"17982":0,"17983":1,"17984":0,"17985":1,"17986":0,"17987":0,"17988":1,"17989":0,"17990":0,"17991":0,"17992":0,"17993":0,"17994":0,"17995":0,"17996":1,"17997":0,"17998":0,"17999":0,"18000":0,"18001":0,"18002":0,"18003":0,"18004":0,"18005":0,"18006":0,"18007":0,"18008":0,"18009":0,"18010":0,"18011":0,"18012":0,"18013":0,"18014":0,"18015":0,"18016":0,"18017":0,"18018":0,"18019":0,"18020":0,"18021":0,"18022":0,"18023":0,"18024":0,"18025":0,"18026":0,"18027":0,"18028":1,"18029":0,"18030":0,"18031":1,"18032":0,"18033":0,"18034":0,"18035":0,"18036":0,"18037":0,"18038":1,"18039":1,"18040":0,"18041":0,"18042":0,"18043":0,"18044":1,"18045":0,"18046":0,"18047":0,"18048":1,"18049":0,"18050":1,"18051":1,"18052":0,"18053":0,"18054":1,"18055":1,"18056":0,"18057":0,"18058":0,"18059":0,"18060":0,"18061":0,"18062":0,"18063":0,"18064":0,"18065":0,"18066":0,"18067":1,"18068":0,"18069":0,"18070":1,"18071":0,"18072":0,"18073":0,"18074":0,"18075":0,"18076":0,"18077":0,"18078":1,"18079":0,"18080":0,"18081":1,"18082":0,"18083":0,"18084":0,"18085":0,"18086":0,"18087":0,"18088":0,"18089":0,"18090":1,"18091":1,"18092":1,"18093":1,"18094":0,"18095":0,"18096":0,"18097":0,"18098":1,"18099":0,"18100":0,"18101":0,"18102":0,"18103":0,"18104":0,"18105":0,"18106":0,"18107":0,"18108":0,"18109":0,"18110":0,"18111":1,"18112":0,"18113":0,"18114":0,"18115":0,"18116":0,"18117":0,"18118":0,"18119":0,"18120":1,"18121":0,"18122":0,"18123":0,"18124":1,"18125":0,"18126":0,"18127":1,"18128":0,"18129":0,"18130":0,"18131":0,"18132":0,"18133":0,"18134":0,"18135":0,"18136":0,"18137":0,"18138":0,"18139":0,"18140":0,"18141":0,"18142":0,"18143":0,"18144":0,"18145":0,"18146":0,"18147":0,"18148":0,"18149":1,"18150":0,"18151":0,"18152":0,"18153":0,"18154":0,"18155":0,"18156":1,"18157":1,"18158":0,"18159":0,"18160":0,"18161":0,"18162":0,"18163":1,"18164":0,"18165":0,"18166":0,"18167":0,"18168":0,"18169":0,"18170":0,"18171":1,"18172":0,"18173":0,"18174":0,"18175":0,"18176":0,"18177":0,"18178":0,"18179":0,"18180":1,"18181":0,"18182":0,"18183":0,"18184":0,"18185":1,"18186":0,"18187":0,"18188":0,"18189":0,"18190":0,"18191":0,"18192":0,"18193":0,"18194":0,"18195":0,"18196":0,"18197":1,"18198":0,"18199":0,"18200":0,"18201":0,"18202":0,"18203":1,"18204":0,"18205":0,"18206":0,"18207":0,"18208":1,"18209":1,"18210":1,"18211":1,"18212":0,"18213":0,"18214":0,"18215":0,"18216":1,"18217":1,"18218":0,"18219":0,"18220":0,"18221":0,"18222":1,"18223":0,"18224":0,"18225":1,"18226":0,"18227":0,"18228":0,"18229":1,"18230":0,"18231":1,"18232":0,"18233":1,"18234":0,"18235":0,"18236":0,"18237":1,"18238":1,"18239":0,"18240":0,"18241":1,"18242":0,"18243":0,"18244":0,"18245":1,"18246":0,"18247":0,"18248":0,"18249":1,"18250":0,"18251":0,"18252":0,"18253":0,"18254":0,"18255":0,"18256":0,"18257":1,"18258":1,"18259":0,"18260":1,"18261":0,"18262":0,"18263":0,"18264":0,"18265":0,"18266":1,"18267":1,"18268":1,"18269":0,"18270":1,"18271":0,"18272":0,"18273":0,"18274":0,"18275":0,"18276":0,"18277":0,"18278":0,"18279":1,"18280":0,"18281":1,"18282":0,"18283":0,"18284":0,"18285":0,"18286":0,"18287":0,"18288":0,"18289":0,"18290":0,"18291":0,"18292":0,"18293":0,"18294":1,"18295":1,"18296":0,"18297":0,"18298":0,"18299":1,"18300":1,"18301":1,"18302":0,"18303":0,"18304":0,"18305":0,"18306":0,"18307":0,"18308":0,"18309":0,"18310":0,"18311":0,"18312":0,"18313":0,"18314":1,"18315":0,"18316":1,"18317":0,"18318":0,"18319":0,"18320":0,"18321":1,"18322":1,"18323":0,"18324":0,"18325":0,"18326":0,"18327":1,"18328":1,"18329":0,"18330":1,"18331":0,"18332":1,"18333":0,"18334":1,"18335":0,"18336":0,"18337":0,"18338":0,"18339":0,"18340":0,"18341":0,"18342":1,"18343":0,"18344":0,"18345":0,"18346":1,"18347":0,"18348":0,"18349":0,"18350":0,"18351":1,"18352":0,"18353":0,"18354":0,"18355":0,"18356":1,"18357":0,"18358":1,"18359":0,"18360":0,"18361":0,"18362":0,"18363":1,"18364":1,"18365":0,"18366":0,"18367":1,"18368":0,"18369":1,"18370":0,"18371":0,"18372":0,"18373":0,"18374":0,"18375":0,"18376":1,"18377":0,"18378":1,"18379":1,"18380":0,"18381":0,"18382":0,"18383":0,"18384":0,"18385":0,"18386":1,"18387":0,"18388":0,"18389":0,"18390":0,"18391":0,"18392":0,"18393":0,"18394":0,"18395":0,"18396":0,"18397":1,"18398":0,"18399":0,"18400":0,"18401":1,"18402":0,"18403":0,"18404":0,"18405":0,"18406":1,"18407":0,"18408":0,"18409":0,"18410":0,"18411":1,"18412":1,"18413":0,"18414":0,"18415":0,"18416":0,"18417":0,"18418":0,"18419":0,"18420":1,"18421":0,"18422":0,"18423":0,"18424":1,"18425":0,"18426":0,"18427":0,"18428":0,"18429":0,"18430":1,"18431":1,"18432":0,"18433":0,"18434":0,"18435":1,"18436":0,"18437":0,"18438":1,"18439":1,"18440":0,"18441":0,"18442":0,"18443":1,"18444":1,"18445":0,"18446":0,"18447":0,"18448":0,"18449":1,"18450":1,"18451":1,"18452":0,"18453":0,"18454":0,"18455":0,"18456":0,"18457":0,"18458":0,"18459":0,"18460":0,"18461":0,"18462":1,"18463":0,"18464":0,"18465":0,"18466":1,"18467":1,"18468":1,"18469":1,"18470":0,"18471":0,"18472":0,"18473":1,"18474":0,"18475":0,"18476":0,"18477":0,"18478":0,"18479":0,"18480":0,"18481":0,"18482":0,"18483":0,"18484":0,"18485":1,"18486":1,"18487":0,"18488":0,"18489":0,"18490":0,"18491":1,"18492":0,"18493":0,"18494":1,"18495":0,"18496":1,"18497":1,"18498":1,"18499":0,"18500":1,"18501":0,"18502":0,"18503":0,"18504":1,"18505":0,"18506":0,"18507":1,"18508":1,"18509":0,"18510":0,"18511":1,"18512":0,"18513":0,"18514":0,"18515":0,"18516":0,"18517":0,"18518":0,"18519":0,"18520":0,"18521":1,"18522":0,"18523":0,"18524":0,"18525":0,"18526":0,"18527":1,"18528":0,"18529":1,"18530":1,"18531":0,"18532":0,"18533":0,"18534":0,"18535":0,"18536":0,"18537":0,"18538":0,"18539":0,"18540":0,"18541":1,"18542":0,"18543":0,"18544":0,"18545":0,"18546":0,"18547":0,"18548":1,"18549":0,"18550":0,"18551":0,"18552":1,"18553":1,"18554":0,"18555":0,"18556":1,"18557":1,"18558":0,"18559":0,"18560":1,"18561":0,"18562":0,"18563":0,"18564":0,"18565":0,"18566":1,"18567":0,"18568":0,"18569":0,"18570":0,"18571":0,"18572":0,"18573":0,"18574":1,"18575":1,"18576":1,"18577":0,"18578":0,"18579":0,"18580":0,"18581":0,"18582":0,"18583":0,"18584":0,"18585":0,"18586":0,"18587":0,"18588":1,"18589":0,"18590":0,"18591":1,"18592":0,"18593":0,"18594":0,"18595":0,"18596":0,"18597":0,"18598":0,"18599":0,"18600":1,"18601":0,"18602":0,"18603":0,"18604":0,"18605":0,"18606":0,"18607":0,"18608":1,"18609":1,"18610":0,"18611":0,"18612":0,"18613":1,"18614":0,"18615":0,"18616":0,"18617":1,"18618":0,"18619":0,"18620":0,"18621":0,"18622":0,"18623":0,"18624":0,"18625":1,"18626":0,"18627":0,"18628":0,"18629":1,"18630":0,"18631":0,"18632":1,"18633":1,"18634":0,"18635":0,"18636":1,"18637":0,"18638":0,"18639":0,"18640":0,"18641":1,"18642":1,"18643":0,"18644":0,"18645":1,"18646":0,"18647":1,"18648":1,"18649":1,"18650":0,"18651":0,"18652":0,"18653":1,"18654":0,"18655":0,"18656":0,"18657":0,"18658":0,"18659":0,"18660":0,"18661":0,"18662":0,"18663":0,"18664":1,"18665":0,"18666":1,"18667":0,"18668":1,"18669":0,"18670":0,"18671":0,"18672":0,"18673":1,"18674":0,"18675":1,"18676":0,"18677":0,"18678":0,"18679":0,"18680":0,"18681":1,"18682":1,"18683":0,"18684":0,"18685":0,"18686":0,"18687":0,"18688":1,"18689":0,"18690":0,"18691":0,"18692":0,"18693":1,"18694":0,"18695":0,"18696":0,"18697":0,"18698":0,"18699":0,"18700":0,"18701":1,"18702":0,"18703":0,"18704":1,"18705":1,"18706":0,"18707":0,"18708":0,"18709":1,"18710":1,"18711":0,"18712":1,"18713":0,"18714":0,"18715":0,"18716":0,"18717":1,"18718":1,"18719":1,"18720":0,"18721":0,"18722":0,"18723":0,"18724":0,"18725":0,"18726":1,"18727":0,"18728":0,"18729":1,"18730":0,"18731":0,"18732":0,"18733":0,"18734":0,"18735":0,"18736":0,"18737":0,"18738":1,"18739":1,"18740":0,"18741":0,"18742":0,"18743":1,"18744":1,"18745":0,"18746":1,"18747":0,"18748":1,"18749":0,"18750":0,"18751":0,"18752":1,"18753":0,"18754":0,"18755":0,"18756":0,"18757":0,"18758":0,"18759":0,"18760":0,"18761":1,"18762":0,"18763":0,"18764":0,"18765":0,"18766":1,"18767":1,"18768":0,"18769":1,"18770":0,"18771":0,"18772":0,"18773":0,"18774":0,"18775":0,"18776":0,"18777":1,"18778":0,"18779":0,"18780":0,"18781":1,"18782":0,"18783":0,"18784":1,"18785":0,"18786":0,"18787":0,"18788":0,"18789":0,"18790":0,"18791":1,"18792":1,"18793":0,"18794":0,"18795":0,"18796":0,"18797":0,"18798":0,"18799":0,"18800":0,"18801":0,"18802":1,"18803":0,"18804":0,"18805":0,"18806":1,"18807":0,"18808":0,"18809":0,"18810":1,"18811":0,"18812":1,"18813":0,"18814":0,"18815":0,"18816":0,"18817":1,"18818":1,"18819":0,"18820":0,"18821":0,"18822":0,"18823":1,"18824":0,"18825":0,"18826":0,"18827":0,"18828":0,"18829":1,"18830":0,"18831":0,"18832":0,"18833":0,"18834":1,"18835":0,"18836":0,"18837":0,"18838":0,"18839":0,"18840":0,"18841":0,"18842":0,"18843":0,"18844":0,"18845":0,"18846":1,"18847":0,"18848":1,"18849":0,"18850":0,"18851":0,"18852":0,"18853":1,"18854":0,"18855":1,"18856":0,"18857":0,"18858":1,"18859":0,"18860":1,"18861":0,"18862":0,"18863":0,"18864":0,"18865":0,"18866":0,"18867":0,"18868":0,"18869":0,"18870":1,"18871":0,"18872":1,"18873":1,"18874":0,"18875":1,"18876":0,"18877":0,"18878":0,"18879":0,"18880":0,"18881":0,"18882":0,"18883":0,"18884":0,"18885":0,"18886":0,"18887":1,"18888":0,"18889":1,"18890":0,"18891":0,"18892":0,"18893":1,"18894":0,"18895":0,"18896":0,"18897":0,"18898":1,"18899":1,"18900":1,"18901":1,"18902":0,"18903":0,"18904":0,"18905":0,"18906":0,"18907":0,"18908":0,"18909":0,"18910":0,"18911":0,"18912":0,"18913":0,"18914":0,"18915":0,"18916":0,"18917":1,"18918":0,"18919":0,"18920":1,"18921":1,"18922":0,"18923":0,"18924":0,"18925":0,"18926":0,"18927":0,"18928":0,"18929":0,"18930":0,"18931":0,"18932":0,"18933":0,"18934":0,"18935":0,"18936":0,"18937":0,"18938":0,"18939":0,"18940":0,"18941":0,"18942":0,"18943":1,"18944":1,"18945":1,"18946":0,"18947":0,"18948":0,"18949":0,"18950":0,"18951":1,"18952":0,"18953":0,"18954":0,"18955":0,"18956":0,"18957":0,"18958":1,"18959":0,"18960":1,"18961":0,"18962":0,"18963":0,"18964":1,"18965":0,"18966":0,"18967":0,"18968":0,"18969":0,"18970":0,"18971":0,"18972":1,"18973":0,"18974":0,"18975":0,"18976":0,"18977":0,"18978":0,"18979":0,"18980":0,"18981":1,"18982":0,"18983":0,"18984":0,"18985":0,"18986":0,"18987":0,"18988":1,"18989":0,"18990":1,"18991":0,"18992":0,"18993":0,"18994":1,"18995":0,"18996":0,"18997":0,"18998":0,"18999":0,"19000":0,"19001":0,"19002":0,"19003":0,"19004":0,"19005":0,"19006":0,"19007":0,"19008":0,"19009":0,"19010":0,"19011":0,"19012":1,"19013":1,"19014":1,"19015":1,"19016":0,"19017":0,"19018":0,"19019":0,"19020":0,"19021":1,"19022":0,"19023":0,"19024":0,"19025":0,"19026":0,"19027":1,"19028":0,"19029":0,"19030":1,"19031":1,"19032":0,"19033":0,"19034":0,"19035":0,"19036":0,"19037":0,"19038":1,"19039":0,"19040":0,"19041":1,"19042":0,"19043":0,"19044":1,"19045":0,"19046":0,"19047":0,"19048":1,"19049":1,"19050":0,"19051":0,"19052":0,"19053":0,"19054":0,"19055":0,"19056":0,"19057":0,"19058":0,"19059":0,"19060":0,"19061":0,"19062":0,"19063":0,"19064":0,"19065":0,"19066":0,"19067":1,"19068":1,"19069":0,"19070":1,"19071":1,"19072":0,"19073":0,"19074":0,"19075":0,"19076":0,"19077":0,"19078":0,"19079":0,"19080":0,"19081":0,"19082":0,"19083":0,"19084":0,"19085":0,"19086":0,"19087":1,"19088":0,"19089":1,"19090":1,"19091":0,"19092":1,"19093":0,"19094":1,"19095":1,"19096":0,"19097":0,"19098":0,"19099":0,"19100":0,"19101":0,"19102":0,"19103":1,"19104":0,"19105":0,"19106":0,"19107":0,"19108":0,"19109":0,"19110":0,"19111":1,"19112":1,"19113":0,"19114":0,"19115":1,"19116":0,"19117":0,"19118":0,"19119":0,"19120":0,"19121":1,"19122":0,"19123":0,"19124":0,"19125":0,"19126":0,"19127":0,"19128":0,"19129":1,"19130":1,"19131":0,"19132":1,"19133":0,"19134":0,"19135":1,"19136":0,"19137":0,"19138":0,"19139":0,"19140":0,"19141":0,"19142":1,"19143":1,"19144":1,"19145":0,"19146":1,"19147":0,"19148":0,"19149":0,"19150":1,"19151":0,"19152":0,"19153":0,"19154":0,"19155":0,"19156":0,"19157":1,"19158":1,"19159":0,"19160":0,"19161":0,"19162":0,"19163":0,"19164":0,"19165":0,"19166":0,"19167":0,"19168":0,"19169":0,"19170":1,"19171":0,"19172":0,"19173":0,"19174":0,"19175":0,"19176":0,"19177":0,"19178":0,"19179":1,"19180":1,"19181":1,"19182":0,"19183":1,"19184":0,"19185":0,"19186":0,"19187":1,"19188":0,"19189":0,"19190":0,"19191":0,"19192":0,"19193":0,"19194":0,"19195":0,"19196":0,"19197":0,"19198":0,"19199":0,"19200":1,"19201":0,"19202":1,"19203":0,"19204":0,"19205":0,"19206":0,"19207":0,"19208":0,"19209":0,"19210":0,"19211":1,"19212":0,"19213":0,"19214":1,"19215":0,"19216":0,"19217":0,"19218":0,"19219":0,"19220":1,"19221":1,"19222":0,"19223":0,"19224":0,"19225":0,"19226":0,"19227":0,"19228":0,"19229":0,"19230":0,"19231":0,"19232":1,"19233":0,"19234":1,"19235":0,"19236":0,"19237":0,"19238":0,"19239":0,"19240":0,"19241":0,"19242":0,"19243":0,"19244":1,"19245":1,"19246":0,"19247":0,"19248":0,"19249":1,"19250":1,"19251":0,"19252":0,"19253":0,"19254":0,"19255":0,"19256":0,"19257":0,"19258":1,"19259":0,"19260":0,"19261":0,"19262":0,"19263":0,"19264":0,"19265":0,"19266":1,"19267":0,"19268":1,"19269":0,"19270":0,"19271":0,"19272":1,"19273":0,"19274":0,"19275":1,"19276":0,"19277":1,"19278":0,"19279":0,"19280":1,"19281":0,"19282":0,"19283":0,"19284":1,"19285":0,"19286":0,"19287":0,"19288":0,"19289":0,"19290":0,"19291":0,"19292":0,"19293":0,"19294":0,"19295":0,"19296":0,"19297":0,"19298":1,"19299":0,"19300":0,"19301":1,"19302":0,"19303":0,"19304":1,"19305":0,"19306":0,"19307":0,"19308":0,"19309":0,"19310":0,"19311":0,"19312":1,"19313":1,"19314":0,"19315":1,"19316":0,"19317":1,"19318":1,"19319":0,"19320":0,"19321":1,"19322":0,"19323":0,"19324":0,"19325":0,"19326":1,"19327":0,"19328":1,"19329":0,"19330":0,"19331":0,"19332":0,"19333":0,"19334":0,"19335":0,"19336":0,"19337":0,"19338":1,"19339":0,"19340":1,"19341":1,"19342":0,"19343":1,"19344":0,"19345":0,"19346":0,"19347":0,"19348":0,"19349":0,"19350":0,"19351":0,"19352":0,"19353":0,"19354":1,"19355":0,"19356":0,"19357":0,"19358":0,"19359":1,"19360":0,"19361":0,"19362":1,"19363":0,"19364":0,"19365":0,"19366":0,"19367":1,"19368":0,"19369":1,"19370":0,"19371":1,"19372":0,"19373":0,"19374":0,"19375":0,"19376":0,"19377":0,"19378":0,"19379":0,"19380":0,"19381":0,"19382":0,"19383":0,"19384":0,"19385":0,"19386":0,"19387":0,"19388":0,"19389":0,"19390":0,"19391":0,"19392":0,"19393":0,"19394":0,"19395":0,"19396":1,"19397":0,"19398":0,"19399":1,"19400":0,"19401":1,"19402":1,"19403":0,"19404":1,"19405":0,"19406":1,"19407":0,"19408":0,"19409":0,"19410":0,"19411":0,"19412":1,"19413":0,"19414":0,"19415":1,"19416":1,"19417":0,"19418":0,"19419":1,"19420":0,"19421":1,"19422":1,"19423":0,"19424":0,"19425":0,"19426":0,"19427":0,"19428":1,"19429":0,"19430":0,"19431":0,"19432":0,"19433":0,"19434":0,"19435":0,"19436":1,"19437":0,"19438":0,"19439":0,"19440":0,"19441":1,"19442":0,"19443":0,"19444":1,"19445":0,"19446":0,"19447":0,"19448":1,"19449":0,"19450":0,"19451":0,"19452":0,"19453":0,"19454":0,"19455":0,"19456":0,"19457":0,"19458":0,"19459":1,"19460":0,"19461":0,"19462":1,"19463":1,"19464":1,"19465":0,"19466":0,"19467":1,"19468":0,"19469":0,"19470":1,"19471":1,"19472":0,"19473":0,"19474":0,"19475":0,"19476":0,"19477":1,"19478":0,"19479":1,"19480":0,"19481":0,"19482":1,"19483":0,"19484":0,"19485":0,"19486":0,"19487":1,"19488":0,"19489":0,"19490":0,"19491":0,"19492":0,"19493":0,"19494":0,"19495":1,"19496":0,"19497":0,"19498":0,"19499":0,"19500":1,"19501":1,"19502":0,"19503":0,"19504":0,"19505":0,"19506":1,"19507":0,"19508":0,"19509":0,"19510":1,"19511":0,"19512":0,"19513":0,"19514":0,"19515":0,"19516":0,"19517":0,"19518":0,"19519":0,"19520":1,"19521":1,"19522":1,"19523":0,"19524":0,"19525":1,"19526":0,"19527":1,"19528":1,"19529":1,"19530":1,"19531":0,"19532":1,"19533":0,"19534":0,"19535":0,"19536":0,"19537":1,"19538":0,"19539":0,"19540":0,"19541":0,"19542":1,"19543":1,"19544":0,"19545":0,"19546":0,"19547":0,"19548":1,"19549":1,"19550":0,"19551":1,"19552":1,"19553":0,"19554":0,"19555":0,"19556":0,"19557":0,"19558":1,"19559":0,"19560":0,"19561":1,"19562":0,"19563":0,"19564":0,"19565":0,"19566":0,"19567":0,"19568":1,"19569":0,"19570":0,"19571":1,"19572":0,"19573":0,"19574":0,"19575":0,"19576":0,"19577":1,"19578":0,"19579":1,"19580":0,"19581":1,"19582":0,"19583":0,"19584":1,"19585":0,"19586":0,"19587":0,"19588":0,"19589":1,"19590":0,"19591":0,"19592":0,"19593":0,"19594":0,"19595":1,"19596":1,"19597":0,"19598":0,"19599":0,"19600":0,"19601":0,"19602":1,"19603":1,"19604":0,"19605":0,"19606":0,"19607":1,"19608":1,"19609":0,"19610":1,"19611":0,"19612":1,"19613":0,"19614":0,"19615":1,"19616":0,"19617":0,"19618":0,"19619":0,"19620":0,"19621":1,"19622":0,"19623":0,"19624":0,"19625":0,"19626":0,"19627":0,"19628":1,"19629":0,"19630":1,"19631":0,"19632":0,"19633":1,"19634":0,"19635":0,"19636":0,"19637":0,"19638":0,"19639":0,"19640":1,"19641":0,"19642":0,"19643":0,"19644":1,"19645":0,"19646":0,"19647":0,"19648":0,"19649":1,"19650":0,"19651":0,"19652":0,"19653":0,"19654":1,"19655":0,"19656":0,"19657":0,"19658":1,"19659":0,"19660":0,"19661":0,"19662":1,"19663":0,"19664":0,"19665":0,"19666":0,"19667":1,"19668":1,"19669":0,"19670":1,"19671":0,"19672":0,"19673":0,"19674":0,"19675":0,"19676":0,"19677":1,"19678":1,"19679":0,"19680":0,"19681":0,"19682":0,"19683":0,"19684":1,"19685":0,"19686":0,"19687":0,"19688":0,"19689":0,"19690":0,"19691":0,"19692":0,"19693":0,"19694":0,"19695":1,"19696":0,"19697":0,"19698":0,"19699":0,"19700":0,"19701":0,"19702":1,"19703":1,"19704":0,"19705":0,"19706":0,"19707":0,"19708":0,"19709":0,"19710":1,"19711":0,"19712":0,"19713":0,"19714":0,"19715":0,"19716":0,"19717":0,"19718":0,"19719":0,"19720":0,"19721":0,"19722":0,"19723":0,"19724":0,"19725":1,"19726":1,"19727":0,"19728":0,"19729":0,"19730":0,"19731":0,"19732":0,"19733":0,"19734":1,"19735":0,"19736":0,"19737":1,"19738":0,"19739":0,"19740":0,"19741":1,"19742":0,"19743":0,"19744":1,"19745":1,"19746":1,"19747":0,"19748":0,"19749":0,"19750":1,"19751":0,"19752":0,"19753":1,"19754":0,"19755":0,"19756":1,"19757":0,"19758":0,"19759":1,"19760":0,"19761":0,"19762":0,"19763":0,"19764":0,"19765":0,"19766":0,"19767":0,"19768":0,"19769":0,"19770":0,"19771":0,"19772":0,"19773":0,"19774":0,"19775":0,"19776":0,"19777":0,"19778":0,"19779":1,"19780":1,"19781":0,"19782":0,"19783":0,"19784":0,"19785":1,"19786":0,"19787":1,"19788":1,"19789":1,"19790":1,"19791":1,"19792":0,"19793":0,"19794":0,"19795":0,"19796":0,"19797":0,"19798":0,"19799":1,"19800":0,"19801":0,"19802":0,"19803":0,"19804":0,"19805":0,"19806":0,"19807":0,"19808":0,"19809":0,"19810":0,"19811":0,"19812":0,"19813":0,"19814":0,"19815":0,"19816":0,"19817":0,"19818":0,"19819":0,"19820":0,"19821":0,"19822":0,"19823":1,"19824":0,"19825":1,"19826":0,"19827":1,"19828":1,"19829":1,"19830":1,"19831":0,"19832":0,"19833":0,"19834":0,"19835":1,"19836":0,"19837":0,"19838":0,"19839":0,"19840":0,"19841":0,"19842":0,"19843":0,"19844":0,"19845":1,"19846":0,"19847":0,"19848":0,"19849":0,"19850":1,"19851":0,"19852":0,"19853":0,"19854":0,"19855":1,"19856":0,"19857":0,"19858":0,"19859":1,"19860":1,"19861":0,"19862":1,"19863":0,"19864":0,"19865":0,"19866":0,"19867":0,"19868":0,"19869":1,"19870":0,"19871":0,"19872":0,"19873":0,"19874":0,"19875":0,"19876":1,"19877":0,"19878":0,"19879":0,"19880":1,"19881":1,"19882":0,"19883":1,"19884":0,"19885":0,"19886":0,"19887":0,"19888":1,"19889":0,"19890":0,"19891":0,"19892":0,"19893":0,"19894":0,"19895":0,"19896":0,"19897":0,"19898":1,"19899":1,"19900":1,"19901":1,"19902":0,"19903":0,"19904":0,"19905":1,"19906":1,"19907":0,"19908":0,"19909":1,"19910":0,"19911":0,"19912":0,"19913":0,"19914":0,"19915":0,"19916":0,"19917":0,"19918":0,"19919":0,"19920":0,"19921":0,"19922":0,"19923":0,"19924":0,"19925":0,"19926":0,"19927":1,"19928":1,"19929":0,"19930":0,"19931":0,"19932":0,"19933":0,"19934":0,"19935":1,"19936":0,"19937":0,"19938":1,"19939":0,"19940":0,"19941":0,"19942":1,"19943":1,"19944":0,"19945":0,"19946":1,"19947":0,"19948":0,"19949":0,"19950":1,"19951":0,"19952":0,"19953":0,"19954":1,"19955":0,"19956":0,"19957":0,"19958":1,"19959":1,"19960":0,"19961":0,"19962":0,"19963":1,"19964":0,"19965":0,"19966":0,"19967":1,"19968":0,"19969":1,"19970":0,"19971":0,"19972":0,"19973":0,"19974":0,"19975":1,"19976":0,"19977":1,"19978":0,"19979":0,"19980":1,"19981":1,"19982":1,"19983":0,"19984":1,"19985":0,"19986":0,"19987":1,"19988":0,"19989":0,"19990":0,"19991":0,"19992":0,"19993":0,"19994":1,"19995":0,"19996":0,"19997":0,"19998":0,"19999":1,"20000":0,"20001":0,"20002":0,"20003":0,"20004":0,"20005":0,"20006":0,"20007":0,"20008":0,"20009":0,"20010":0,"20011":0,"20012":1,"20013":0,"20014":0,"20015":0,"20016":1,"20017":0,"20018":0,"20019":0,"20020":0,"20021":1,"20022":0,"20023":0,"20024":0,"20025":0,"20026":0,"20027":0,"20028":0,"20029":0,"20030":0,"20031":0,"20032":0,"20033":0,"20034":0,"20035":0,"20036":1,"20037":0,"20038":0,"20039":0,"20040":0,"20041":0,"20042":0,"20043":0,"20044":1,"20045":0,"20046":1,"20047":0,"20048":0,"20049":1,"20050":1,"20051":0,"20052":1,"20053":1,"20054":0,"20055":0,"20056":0,"20057":0,"20058":0,"20059":0,"20060":0,"20061":0,"20062":0,"20063":0,"20064":0,"20065":0,"20066":1,"20067":0,"20068":1,"20069":0,"20070":0,"20071":1,"20072":0,"20073":1,"20074":1,"20075":1,"20076":1,"20077":0,"20078":1,"20079":0,"20080":0,"20081":0,"20082":0,"20083":0,"20084":0,"20085":0,"20086":1,"20087":0,"20088":0,"20089":1,"20090":1,"20091":0,"20092":0,"20093":0,"20094":0,"20095":1,"20096":1,"20097":0,"20098":0,"20099":0,"20100":0,"20101":0,"20102":0,"20103":0,"20104":0,"20105":0,"20106":0,"20107":0,"20108":0,"20109":1,"20110":0,"20111":0,"20112":0,"20113":0,"20114":0,"20115":0,"20116":0,"20117":0,"20118":1,"20119":0,"20120":1,"20121":1,"20122":1,"20123":0,"20124":0,"20125":1,"20126":0,"20127":0,"20128":1,"20129":0,"20130":0,"20131":1,"20132":1,"20133":0,"20134":0,"20135":1,"20136":0,"20137":0,"20138":0,"20139":0,"20140":1,"20141":0,"20142":0,"20143":0,"20144":0,"20145":0,"20146":1,"20147":0,"20148":0,"20149":1,"20150":1,"20151":0,"20152":1,"20153":0,"20154":1,"20155":0,"20156":0,"20157":0,"20158":0,"20159":1,"20160":0,"20161":0,"20162":0,"20163":0,"20164":1,"20165":0,"20166":0,"20167":1,"20168":1,"20169":0,"20170":0,"20171":0,"20172":1,"20173":0,"20174":0,"20175":0,"20176":0,"20177":0,"20178":0,"20179":0,"20180":0,"20181":0,"20182":0,"20183":1,"20184":1,"20185":1,"20186":0,"20187":1,"20188":0,"20189":0,"20190":0,"20191":0,"20192":0,"20193":0,"20194":1,"20195":0,"20196":1,"20197":1,"20198":0,"20199":0,"20200":0,"20201":0,"20202":0,"20203":1,"20204":1,"20205":0,"20206":0,"20207":0,"20208":0,"20209":0,"20210":0,"20211":1,"20212":0,"20213":0,"20214":1,"20215":0,"20216":1,"20217":0,"20218":0,"20219":0,"20220":0,"20221":0,"20222":1,"20223":0,"20224":0,"20225":0,"20226":0,"20227":0,"20228":0,"20229":1,"20230":0,"20231":1,"20232":0,"20233":0,"20234":0,"20235":0,"20236":0,"20237":0,"20238":1,"20239":0,"20240":0,"20241":1,"20242":0,"20243":1,"20244":0,"20245":0,"20246":0,"20247":0,"20248":0,"20249":1,"20250":0,"20251":1,"20252":0,"20253":0,"20254":0,"20255":1,"20256":1,"20257":0,"20258":1,"20259":1,"20260":1,"20261":0,"20262":0,"20263":0,"20264":1,"20265":0,"20266":0,"20267":0,"20268":0,"20269":1,"20270":0,"20271":0,"20272":0,"20273":0,"20274":0,"20275":0,"20276":0,"20277":0,"20278":0,"20279":1,"20280":0,"20281":0,"20282":0,"20283":0,"20284":0,"20285":1,"20286":0,"20287":0,"20288":0,"20289":1,"20290":1,"20291":0,"20292":0,"20293":1,"20294":1,"20295":0,"20296":1,"20297":0,"20298":1,"20299":1,"20300":1,"20301":0,"20302":0,"20303":0,"20304":1,"20305":0,"20306":0,"20307":1,"20308":0,"20309":0,"20310":0,"20311":0,"20312":1,"20313":1,"20314":0,"20315":0,"20316":0,"20317":1,"20318":1,"20319":0,"20320":0,"20321":0,"20322":1,"20323":1,"20324":0,"20325":1,"20326":0,"20327":0,"20328":1,"20329":0,"20330":0,"20331":0,"20332":1,"20333":1,"20334":1,"20335":0,"20336":0,"20337":0,"20338":0,"20339":0,"20340":0,"20341":0,"20342":0,"20343":1,"20344":0,"20345":0,"20346":0,"20347":0,"20348":1,"20349":1,"20350":0,"20351":0,"20352":1,"20353":0,"20354":1,"20355":0,"20356":0,"20357":1,"20358":1,"20359":0,"20360":0,"20361":0,"20362":0,"20363":0,"20364":1,"20365":0,"20366":0,"20367":1,"20368":1,"20369":1,"20370":0,"20371":0,"20372":0,"20373":0,"20374":1,"20375":0,"20376":0,"20377":0,"20378":0,"20379":0,"20380":0,"20381":0,"20382":1,"20383":0,"20384":0,"20385":0,"20386":0,"20387":0,"20388":0,"20389":0,"20390":0,"20391":0,"20392":1,"20393":1,"20394":1,"20395":0,"20396":0,"20397":1,"20398":0,"20399":0,"20400":0,"20401":0,"20402":1,"20403":0,"20404":0,"20405":0,"20406":0,"20407":0,"20408":0,"20409":1,"20410":0,"20411":0,"20412":0,"20413":0,"20414":0,"20415":0,"20416":0,"20417":1,"20418":0,"20419":0,"20420":0,"20421":0,"20422":0,"20423":1,"20424":0,"20425":0,"20426":0,"20427":0,"20428":0,"20429":1,"20430":1,"20431":1,"20432":0,"20433":0,"20434":1,"20435":1,"20436":1,"20437":0,"20438":0,"20439":1,"20440":0,"20441":0,"20442":1,"20443":1,"20444":0,"20445":1,"20446":0,"20447":0,"20448":0,"20449":1,"20450":0,"20451":1,"20452":0,"20453":1,"20454":0,"20455":1,"20456":0,"20457":0,"20458":0,"20459":0,"20460":0,"20461":0,"20462":0,"20463":0,"20464":1,"20465":0,"20466":0,"20467":1,"20468":1,"20469":1,"20470":0,"20471":0,"20472":0,"20473":1,"20474":0,"20475":0,"20476":1,"20477":0,"20478":0,"20479":0,"20480":0,"20481":1,"20482":1,"20483":0,"20484":1,"20485":0,"20486":0,"20487":0,"20488":0,"20489":0,"20490":0,"20491":1,"20492":0,"20493":0,"20494":1,"20495":0,"20496":0,"20497":0,"20498":0,"20499":1,"20500":0,"20501":1,"20502":0,"20503":0,"20504":0,"20505":0,"20506":0,"20507":0,"20508":0,"20509":1,"20510":0,"20511":0,"20512":0,"20513":0,"20514":0,"20515":0,"20516":0,"20517":1,"20518":0,"20519":0,"20520":0,"20521":0,"20522":1,"20523":0,"20524":0,"20525":0,"20526":0,"20527":1,"20528":0,"20529":0,"20530":0,"20531":1,"20532":0,"20533":0,"20534":0,"20535":0,"20536":1,"20537":0,"20538":0,"20539":1,"20540":1,"20541":0,"20542":1,"20543":0,"20544":0,"20545":0,"20546":0,"20547":0,"20548":0,"20549":1,"20550":1,"20551":0,"20552":1,"20553":1,"20554":0,"20555":0,"20556":0,"20557":0,"20558":0,"20559":0,"20560":0,"20561":0,"20562":0,"20563":0,"20564":0,"20565":0,"20566":1,"20567":1,"20568":1,"20569":0,"20570":0,"20571":0,"20572":0,"20573":0,"20574":0,"20575":0,"20576":0,"20577":1,"20578":0,"20579":0,"20580":0,"20581":0,"20582":0,"20583":0,"20584":0,"20585":1,"20586":1,"20587":1,"20588":1,"20589":0,"20590":0,"20591":0,"20592":1,"20593":1,"20594":0,"20595":0,"20596":0,"20597":0,"20598":0,"20599":0,"20600":1,"20601":0,"20602":1,"20603":0,"20604":1,"20605":1,"20606":0,"20607":0,"20608":0,"20609":0,"20610":0,"20611":1,"20612":0,"20613":0,"20614":0,"20615":0,"20616":0,"20617":0,"20618":1,"20619":0,"20620":1,"20621":0,"20622":0,"20623":1,"20624":1,"20625":0,"20626":0,"20627":0,"20628":0,"20629":0,"20630":0,"20631":0,"20632":1,"20633":0,"20634":0,"20635":0,"20636":0,"20637":0,"20638":1,"20639":0,"20640":0,"20641":0,"20642":1,"20643":1,"20644":0,"20645":0,"20646":0,"20647":0,"20648":0,"20649":0,"20650":0,"20651":0,"20652":0,"20653":1,"20654":0,"20655":0,"20656":0,"20657":1,"20658":0,"20659":0,"20660":1,"20661":0,"20662":0,"20663":0,"20664":0,"20665":1,"20666":0,"20667":0,"20668":0,"20669":0,"20670":1,"20671":0,"20672":0,"20673":0,"20674":0,"20675":1,"20676":0,"20677":0,"20678":0,"20679":0,"20680":0,"20681":1,"20682":1,"20683":0,"20684":0,"20685":1,"20686":0,"20687":1,"20688":0,"20689":0,"20690":0,"20691":1,"20692":0,"20693":0,"20694":0,"20695":0,"20696":0,"20697":1,"20698":0,"20699":1,"20700":0,"20701":0,"20702":1,"20703":0,"20704":0,"20705":0,"20706":0,"20707":0,"20708":0,"20709":1,"20710":0,"20711":1,"20712":1,"20713":1,"20714":1,"20715":0,"20716":1,"20717":0,"20718":0,"20719":0,"20720":0,"20721":0,"20722":0,"20723":0,"20724":0,"20725":0,"20726":1,"20727":0,"20728":0,"20729":1,"20730":0,"20731":0,"20732":0,"20733":1,"20734":0,"20735":0,"20736":0,"20737":0,"20738":0,"20739":1,"20740":0,"20741":0,"20742":0,"20743":0,"20744":0,"20745":1,"20746":0,"20747":0,"20748":1,"20749":0,"20750":0,"20751":0,"20752":1,"20753":0,"20754":0,"20755":0,"20756":0,"20757":1,"20758":0,"20759":0,"20760":1,"20761":0,"20762":0,"20763":1,"20764":0,"20765":0,"20766":0,"20767":0,"20768":1,"20769":0,"20770":0,"20771":0,"20772":0,"20773":0,"20774":0,"20775":0,"20776":1,"20777":0,"20778":0,"20779":1,"20780":1,"20781":1,"20782":0,"20783":0,"20784":0,"20785":0,"20786":0,"20787":0,"20788":0,"20789":1,"20790":0,"20791":0,"20792":1,"20793":0,"20794":0,"20795":0,"20796":0,"20797":0,"20798":0,"20799":0,"20800":1,"20801":1,"20802":0,"20803":1,"20804":0,"20805":0,"20806":0,"20807":0,"20808":0,"20809":1,"20810":1,"20811":0,"20812":0,"20813":0,"20814":1,"20815":0,"20816":0,"20817":0,"20818":0,"20819":0,"20820":0,"20821":1,"20822":1,"20823":0,"20824":0,"20825":0,"20826":0,"20827":1,"20828":1,"20829":0,"20830":0,"20831":0,"20832":0,"20833":1,"20834":1,"20835":0,"20836":0,"20837":0,"20838":0,"20839":0,"20840":0,"20841":1,"20842":0,"20843":0,"20844":0,"20845":0,"20846":0,"20847":0,"20848":0,"20849":0,"20850":0,"20851":0,"20852":0,"20853":0,"20854":1,"20855":0,"20856":0,"20857":0,"20858":0,"20859":0,"20860":0,"20861":0,"20862":1,"20863":0,"20864":0,"20865":0,"20866":0,"20867":0,"20868":0,"20869":0,"20870":0,"20871":0,"20872":1,"20873":0,"20874":1,"20875":0,"20876":0,"20877":0,"20878":0,"20879":0,"20880":1,"20881":1,"20882":0,"20883":0,"20884":0,"20885":0,"20886":1,"20887":0,"20888":1,"20889":0,"20890":0,"20891":1,"20892":0,"20893":0,"20894":0,"20895":0,"20896":0,"20897":0,"20898":0,"20899":0,"20900":0,"20901":0,"20902":0,"20903":1,"20904":0,"20905":0,"20906":0,"20907":0,"20908":0,"20909":0,"20910":0,"20911":1,"20912":1,"20913":0,"20914":1,"20915":0,"20916":0,"20917":0,"20918":1,"20919":0,"20920":0,"20921":0,"20922":1,"20923":0,"20924":0,"20925":1,"20926":0,"20927":0,"20928":1,"20929":0,"20930":1,"20931":0,"20932":0,"20933":1,"20934":0,"20935":0,"20936":0,"20937":0,"20938":0,"20939":1,"20940":0,"20941":1,"20942":0,"20943":0,"20944":0,"20945":1,"20946":0,"20947":0,"20948":0,"20949":0,"20950":0,"20951":1,"20952":0,"20953":0,"20954":0,"20955":0,"20956":0,"20957":1,"20958":0,"20959":0,"20960":0,"20961":0,"20962":0,"20963":0,"20964":0,"20965":0,"20966":0,"20967":0,"20968":0,"20969":0,"20970":1,"20971":0,"20972":1,"20973":0,"20974":0,"20975":1,"20976":0,"20977":0,"20978":0,"20979":0,"20980":0,"20981":0,"20982":1,"20983":0,"20984":0,"20985":0,"20986":0,"20987":1,"20988":0,"20989":0,"20990":0,"20991":0,"20992":0,"20993":0,"20994":0,"20995":0,"20996":0,"20997":0,"20998":1,"20999":0,"21000":0,"21001":0,"21002":0,"21003":0,"21004":0,"21005":0,"21006":1,"21007":1,"21008":1,"21009":0,"21010":0,"21011":0,"21012":0,"21013":1,"21014":1,"21015":0,"21016":0,"21017":0,"21018":0,"21019":1,"21020":0,"21021":0,"21022":1,"21023":0,"21024":1,"21025":0,"21026":1,"21027":0,"21028":0,"21029":0,"21030":1,"21031":0,"21032":1,"21033":0,"21034":0,"21035":0,"21036":1,"21037":1,"21038":0,"21039":1,"21040":0,"21041":0,"21042":1,"21043":1,"21044":0,"21045":1,"21046":0,"21047":0,"21048":0,"21049":0,"21050":0,"21051":0,"21052":0,"21053":0,"21054":1,"21055":0,"21056":1,"21057":0,"21058":0,"21059":0,"21060":0,"21061":0,"21062":1,"21063":1,"21064":0,"21065":0,"21066":0,"21067":0,"21068":0,"21069":1,"21070":0,"21071":0,"21072":1,"21073":0,"21074":0,"21075":0,"21076":0,"21077":0,"21078":1,"21079":0,"21080":1,"21081":0,"21082":0,"21083":0,"21084":1,"21085":0,"21086":0,"21087":1,"21088":0,"21089":0,"21090":0,"21091":0,"21092":1,"21093":1,"21094":0,"21095":0,"21096":1,"21097":0,"21098":0,"21099":0,"21100":0,"21101":0,"21102":0,"21103":0,"21104":0,"21105":1,"21106":0,"21107":0,"21108":0,"21109":1,"21110":0,"21111":0,"21112":0,"21113":1,"21114":0,"21115":0,"21116":0,"21117":1,"21118":0,"21119":0,"21120":0,"21121":0,"21122":0,"21123":0,"21124":0,"21125":0,"21126":0,"21127":0,"21128":1,"21129":0,"21130":0,"21131":0,"21132":0,"21133":0,"21134":0,"21135":1,"21136":0,"21137":1,"21138":0,"21139":0,"21140":1,"21141":1,"21142":0,"21143":0,"21144":0,"21145":0,"21146":0,"21147":1,"21148":1,"21149":0,"21150":1,"21151":1,"21152":0,"21153":0,"21154":0,"21155":0,"21156":0,"21157":1,"21158":0,"21159":0,"21160":0,"21161":0,"21162":0,"21163":0,"21164":1,"21165":0,"21166":0,"21167":0,"21168":0,"21169":1,"21170":0,"21171":0,"21172":1,"21173":0,"21174":1,"21175":0,"21176":0,"21177":0,"21178":0,"21179":0,"21180":1,"21181":0,"21182":0,"21183":0,"21184":0,"21185":0,"21186":0,"21187":0,"21188":0,"21189":0,"21190":1,"21191":1,"21192":0,"21193":0,"21194":1,"21195":0,"21196":0,"21197":0,"21198":0,"21199":0,"21200":0,"21201":0,"21202":1,"21203":1,"21204":0,"21205":1,"21206":0,"21207":0,"21208":0,"21209":0,"21210":1,"21211":0,"21212":0,"21213":0,"21214":0,"21215":1,"21216":0,"21217":0,"21218":0,"21219":0,"21220":0,"21221":1,"21222":0,"21223":0,"21224":0,"21225":0,"21226":0,"21227":0,"21228":0,"21229":0,"21230":0,"21231":0,"21232":1,"21233":0,"21234":0,"21235":0,"21236":0,"21237":0,"21238":0,"21239":0,"21240":0,"21241":0,"21242":0,"21243":0,"21244":0,"21245":0,"21246":1,"21247":0,"21248":1,"21249":1,"21250":0,"21251":0,"21252":1,"21253":0,"21254":0,"21255":0,"21256":1,"21257":0,"21258":0,"21259":1,"21260":1,"21261":0,"21262":0,"21263":0,"21264":0,"21265":0,"21266":1,"21267":0,"21268":0,"21269":0,"21270":1,"21271":1,"21272":0,"21273":1,"21274":0,"21275":0,"21276":0,"21277":0,"21278":0,"21279":1,"21280":1,"21281":1,"21282":0,"21283":0,"21284":0,"21285":0,"21286":0,"21287":0,"21288":1,"21289":1,"21290":0,"21291":0,"21292":0,"21293":0,"21294":0,"21295":0,"21296":0,"21297":0,"21298":0,"21299":0,"21300":0,"21301":0,"21302":1,"21303":0,"21304":0,"21305":0,"21306":0,"21307":0,"21308":0,"21309":0,"21310":0,"21311":0,"21312":0,"21313":0,"21314":1,"21315":0,"21316":1,"21317":0,"21318":0,"21319":0,"21320":0,"21321":0,"21322":0,"21323":0,"21324":0,"21325":1,"21326":0,"21327":1,"21328":0,"21329":0,"21330":0,"21331":0,"21332":0,"21333":0,"21334":0,"21335":1,"21336":0,"21337":0,"21338":0,"21339":1,"21340":0,"21341":1,"21342":0,"21343":0,"21344":0,"21345":1,"21346":0,"21347":0,"21348":0,"21349":1,"21350":0,"21351":0,"21352":0,"21353":0,"21354":0,"21355":0,"21356":1,"21357":0,"21358":0,"21359":1,"21360":0,"21361":0,"21362":0,"21363":0,"21364":0,"21365":0,"21366":1,"21367":0,"21368":0,"21369":1,"21370":1,"21371":1,"21372":0,"21373":0,"21374":0,"21375":0,"21376":0,"21377":1,"21378":0,"21379":1,"21380":0,"21381":0,"21382":1,"21383":1,"21384":0,"21385":0,"21386":0,"21387":0,"21388":0,"21389":0,"21390":1,"21391":0,"21392":0,"21393":0,"21394":0,"21395":0,"21396":0,"21397":0,"21398":0,"21399":1,"21400":1,"21401":0,"21402":0,"21403":1,"21404":0,"21405":0,"21406":1,"21407":1,"21408":1,"21409":0,"21410":0,"21411":0,"21412":0,"21413":0,"21414":0,"21415":0,"21416":0,"21417":0,"21418":0,"21419":0,"21420":0,"21421":1,"21422":1,"21423":1,"21424":0,"21425":0,"21426":0,"21427":0,"21428":1,"21429":0,"21430":0,"21431":1,"21432":0,"21433":0,"21434":0,"21435":0,"21436":0,"21437":1,"21438":0,"21439":0,"21440":0,"21441":0,"21442":0,"21443":0,"21444":0,"21445":0,"21446":1,"21447":0,"21448":0,"21449":0,"21450":0,"21451":1,"21452":0,"21453":1,"21454":0,"21455":0,"21456":0,"21457":0,"21458":1,"21459":0,"21460":0,"21461":0,"21462":0,"21463":1,"21464":0,"21465":0,"21466":0,"21467":1,"21468":0,"21469":0,"21470":0,"21471":0,"21472":1,"21473":0,"21474":0,"21475":0,"21476":0,"21477":0,"21478":0,"21479":0,"21480":1,"21481":0,"21482":0,"21483":0,"21484":1,"21485":0,"21486":0,"21487":0,"21488":0,"21489":1,"21490":0,"21491":0,"21492":1,"21493":0,"21494":0,"21495":1,"21496":0,"21497":0,"21498":0,"21499":0,"21500":0,"21501":0,"21502":0,"21503":0,"21504":0,"21505":1,"21506":0,"21507":0,"21508":0,"21509":0,"21510":1,"21511":1,"21512":0,"21513":0,"21514":1,"21515":1,"21516":1,"21517":0,"21518":0,"21519":0,"21520":0,"21521":0,"21522":0,"21523":1,"21524":0,"21525":1,"21526":1,"21527":1,"21528":1,"21529":1,"21530":1,"21531":1,"21532":0,"21533":0,"21534":1,"21535":0,"21536":0,"21537":0,"21538":1,"21539":0,"21540":0,"21541":1,"21542":0,"21543":0,"21544":0,"21545":0,"21546":0,"21547":0,"21548":0,"21549":0,"21550":1,"21551":0,"21552":0,"21553":0,"21554":0,"21555":0,"21556":1,"21557":0,"21558":1,"21559":0,"21560":0,"21561":0,"21562":0,"21563":1,"21564":0,"21565":0,"21566":0,"21567":0,"21568":0,"21569":0,"21570":0,"21571":0,"21572":1,"21573":0,"21574":1,"21575":1,"21576":0,"21577":1,"21578":0,"21579":0,"21580":0,"21581":0,"21582":0,"21583":0,"21584":0,"21585":1,"21586":1,"21587":1,"21588":0,"21589":0,"21590":1,"21591":0,"21592":0,"21593":1,"21594":0,"21595":0,"21596":0,"21597":0,"21598":0,"21599":0,"21600":0,"21601":0,"21602":0,"21603":0,"21604":0,"21605":1,"21606":0,"21607":0,"21608":0,"21609":0,"21610":0,"21611":0,"21612":0,"21613":0,"21614":1,"21615":0,"21616":1,"21617":0,"21618":0,"21619":0,"21620":0,"21621":0,"21622":0,"21623":1,"21624":0,"21625":1,"21626":0,"21627":0,"21628":0,"21629":0,"21630":0,"21631":0,"21632":0,"21633":0,"21634":0,"21635":0,"21636":0,"21637":0,"21638":0,"21639":0,"21640":0,"21641":1,"21642":1,"21643":1,"21644":0,"21645":0,"21646":0,"21647":1,"21648":1,"21649":1,"21650":0,"21651":1,"21652":0,"21653":0,"21654":0,"21655":1,"21656":0,"21657":0,"21658":0,"21659":0,"21660":0,"21661":0,"21662":0,"21663":0,"21664":1,"21665":0,"21666":0,"21667":0,"21668":1,"21669":0,"21670":0,"21671":1,"21672":0,"21673":0,"21674":0,"21675":1,"21676":1,"21677":0,"21678":0,"21679":1,"21680":1,"21681":0,"21682":0,"21683":1,"21684":0,"21685":0,"21686":1,"21687":1,"21688":0,"21689":0,"21690":1,"21691":0,"21692":0,"21693":1,"21694":0,"21695":0,"21696":0,"21697":0,"21698":0,"21699":1,"21700":0,"21701":1,"21702":0,"21703":0,"21704":0,"21705":0,"21706":0,"21707":0,"21708":0,"21709":0,"21710":0,"21711":1,"21712":1,"21713":1,"21714":0,"21715":0,"21716":1,"21717":0,"21718":0,"21719":0,"21720":0,"21721":0,"21722":0,"21723":0,"21724":0,"21725":0,"21726":0,"21727":0,"21728":1,"21729":0,"21730":1,"21731":0,"21732":0,"21733":0,"21734":0,"21735":0,"21736":1,"21737":0,"21738":0,"21739":1,"21740":0,"21741":0,"21742":1,"21743":1,"21744":0,"21745":1,"21746":0,"21747":0,"21748":0,"21749":0,"21750":0,"21751":0,"21752":0,"21753":0,"21754":0,"21755":1,"21756":0,"21757":1,"21758":0,"21759":0,"21760":0,"21761":0,"21762":0,"21763":1,"21764":0,"21765":1,"21766":0,"21767":0,"21768":0,"21769":0,"21770":1,"21771":1,"21772":1,"21773":1,"21774":0,"21775":0,"21776":0,"21777":1,"21778":0,"21779":0,"21780":0,"21781":0,"21782":0,"21783":0,"21784":0,"21785":1,"21786":0,"21787":0,"21788":0,"21789":0,"21790":1,"21791":0,"21792":1,"21793":1,"21794":0,"21795":0,"21796":0,"21797":0,"21798":0,"21799":0,"21800":1,"21801":0,"21802":0,"21803":1,"21804":0,"21805":0,"21806":0,"21807":0,"21808":0,"21809":0,"21810":0,"21811":0,"21812":0,"21813":0,"21814":0,"21815":1,"21816":0,"21817":0,"21818":0,"21819":0,"21820":1,"21821":0,"21822":0,"21823":0,"21824":0,"21825":0,"21826":0,"21827":1,"21828":1,"21829":0,"21830":0,"21831":0,"21832":0,"21833":0,"21834":0,"21835":0,"21836":0,"21837":0,"21838":0,"21839":0,"21840":0,"21841":0,"21842":0,"21843":0,"21844":0,"21845":0,"21846":0,"21847":0,"21848":0,"21849":0,"21850":0,"21851":0,"21852":0,"21853":0,"21854":0,"21855":0,"21856":0,"21857":1,"21858":0,"21859":1,"21860":1,"21861":1,"21862":0,"21863":0,"21864":0,"21865":0,"21866":1,"21867":0,"21868":1,"21869":1,"21870":0,"21871":0,"21872":0,"21873":0,"21874":0,"21875":0,"21876":0,"21877":1,"21878":1,"21879":0,"21880":0,"21881":0,"21882":0,"21883":1,"21884":1,"21885":1,"21886":1,"21887":1,"21888":0,"21889":0,"21890":0,"21891":0,"21892":0,"21893":0,"21894":1,"21895":0,"21896":0,"21897":0,"21898":0,"21899":0,"21900":0,"21901":0,"21902":0,"21903":0,"21904":1,"21905":1,"21906":0,"21907":0,"21908":1,"21909":1,"21910":0,"21911":0,"21912":0,"21913":0,"21914":0,"21915":0,"21916":0,"21917":0,"21918":0,"21919":0,"21920":0,"21921":0,"21922":0,"21923":0,"21924":1,"21925":0,"21926":0,"21927":1,"21928":1,"21929":0,"21930":0,"21931":0,"21932":1,"21933":0,"21934":1,"21935":1,"21936":1,"21937":1,"21938":0,"21939":0,"21940":0,"21941":1,"21942":1,"21943":0,"21944":0,"21945":1,"21946":0,"21947":0,"21948":1,"21949":0,"21950":1,"21951":1,"21952":0,"21953":1,"21954":0,"21955":0,"21956":0,"21957":0,"21958":0,"21959":1,"21960":0,"21961":0,"21962":0,"21963":0,"21964":0,"21965":0,"21966":0,"21967":0,"21968":0,"21969":1,"21970":0,"21971":1,"21972":0,"21973":0,"21974":0,"21975":0,"21976":0,"21977":0,"21978":0,"21979":1,"21980":0,"21981":1,"21982":0,"21983":1,"21984":0,"21985":0,"21986":0,"21987":0,"21988":0,"21989":1,"21990":0,"21991":0,"21992":1,"21993":0,"21994":0,"21995":0,"21996":0,"21997":1,"21998":0,"21999":1,"22000":0,"22001":0,"22002":0,"22003":0,"22004":0,"22005":1,"22006":0,"22007":0,"22008":0,"22009":0,"22010":0,"22011":1,"22012":1,"22013":0,"22014":0,"22015":0,"22016":0,"22017":0,"22018":0,"22019":1,"22020":0,"22021":0,"22022":1,"22023":0,"22024":0,"22025":0,"22026":0,"22027":0,"22028":1,"22029":0,"22030":0,"22031":0,"22032":1,"22033":0,"22034":0,"22035":0,"22036":0,"22037":1,"22038":0,"22039":0,"22040":1,"22041":0,"22042":0,"22043":0,"22044":0,"22045":0,"22046":1,"22047":0,"22048":0,"22049":1,"22050":0,"22051":0,"22052":0,"22053":0,"22054":0,"22055":0,"22056":0,"22057":0,"22058":1,"22059":0,"22060":0,"22061":0,"22062":1,"22063":1,"22064":0,"22065":1,"22066":0,"22067":0,"22068":0,"22069":0,"22070":1,"22071":0,"22072":1,"22073":0,"22074":0,"22075":1,"22076":0,"22077":0,"22078":0,"22079":1,"22080":1,"22081":0,"22082":0,"22083":0,"22084":1,"22085":0,"22086":0,"22087":0,"22088":1,"22089":0,"22090":1,"22091":0,"22092":0,"22093":0,"22094":0,"22095":0,"22096":1,"22097":0,"22098":0,"22099":0,"22100":1,"22101":0,"22102":0,"22103":0,"22104":0,"22105":1,"22106":0,"22107":0,"22108":0,"22109":0,"22110":0,"22111":0,"22112":0,"22113":0,"22114":0,"22115":0,"22116":0,"22117":0,"22118":0,"22119":0,"22120":0,"22121":0,"22122":1,"22123":0,"22124":0,"22125":0,"22126":0,"22127":0,"22128":0,"22129":0,"22130":0,"22131":0,"22132":0,"22133":0,"22134":1,"22135":0,"22136":0,"22137":0,"22138":0,"22139":0,"22140":1,"22141":0,"22142":0,"22143":0,"22144":0,"22145":0,"22146":1,"22147":0,"22148":0,"22149":1,"22150":0,"22151":0,"22152":0,"22153":1,"22154":1,"22155":0,"22156":0,"22157":1,"22158":0,"22159":0,"22160":1,"22161":0,"22162":0,"22163":0,"22164":1,"22165":1,"22166":1,"22167":1,"22168":0,"22169":0,"22170":0,"22171":1,"22172":0,"22173":0,"22174":0,"22175":1,"22176":1,"22177":0,"22178":1,"22179":0,"22180":0,"22181":1,"22182":0,"22183":0,"22184":0,"22185":0,"22186":1,"22187":0,"22188":0,"22189":1,"22190":0,"22191":0,"22192":0,"22193":0,"22194":0,"22195":0,"22196":0,"22197":0,"22198":0,"22199":0,"22200":0,"22201":0,"22202":0,"22203":0,"22204":0,"22205":1,"22206":0,"22207":0,"22208":1,"22209":0,"22210":1,"22211":0,"22212":0,"22213":0,"22214":0,"22215":0,"22216":1,"22217":0,"22218":0,"22219":0,"22220":0,"22221":1,"22222":0,"22223":0,"22224":0,"22225":0,"22226":1,"22227":0,"22228":0,"22229":0,"22230":0,"22231":0,"22232":0,"22233":0,"22234":0,"22235":0,"22236":0,"22237":0,"22238":0,"22239":0,"22240":0,"22241":0,"22242":0,"22243":1,"22244":0,"22245":0,"22246":1,"22247":0,"22248":1,"22249":0,"22250":0,"22251":0,"22252":0,"22253":0,"22254":0,"22255":0,"22256":1,"22257":0,"22258":1,"22259":0,"22260":0,"22261":1,"22262":0,"22263":0,"22264":0,"22265":0,"22266":1,"22267":0,"22268":0,"22269":0,"22270":0,"22271":0,"22272":0,"22273":0,"22274":0,"22275":0,"22276":0,"22277":0,"22278":0,"22279":0,"22280":0,"22281":1,"22282":1,"22283":1,"22284":0,"22285":0,"22286":0,"22287":0,"22288":1,"22289":0,"22290":0,"22291":0,"22292":1,"22293":0,"22294":0,"22295":0,"22296":0,"22297":0,"22298":0,"22299":0,"22300":0,"22301":1,"22302":0,"22303":0,"22304":0,"22305":0,"22306":1,"22307":1,"22308":0,"22309":0,"22310":0,"22311":0,"22312":0,"22313":1,"22314":0,"22315":1,"22316":0,"22317":0,"22318":0,"22319":0,"22320":0,"22321":0,"22322":0,"22323":1,"22324":0,"22325":1,"22326":0,"22327":0,"22328":0,"22329":0,"22330":0,"22331":0,"22332":0,"22333":0,"22334":0,"22335":0,"22336":0,"22337":0,"22338":0,"22339":0,"22340":1,"22341":0,"22342":0,"22343":0,"22344":0,"22345":0,"22346":0,"22347":1,"22348":0,"22349":0,"22350":0,"22351":0,"22352":0,"22353":0,"22354":0,"22355":0,"22356":1,"22357":0,"22358":0,"22359":1,"22360":1,"22361":0,"22362":0,"22363":0,"22364":0,"22365":0,"22366":0,"22367":0,"22368":0,"22369":1,"22370":0,"22371":1,"22372":1,"22373":0,"22374":1,"22375":0,"22376":0,"22377":1,"22378":0,"22379":1,"22380":1,"22381":0,"22382":1,"22383":0,"22384":0,"22385":0,"22386":0,"22387":1,"22388":0,"22389":0,"22390":0,"22391":0,"22392":0,"22393":0,"22394":1,"22395":0,"22396":0,"22397":0,"22398":0,"22399":0,"22400":1,"22401":0,"22402":0,"22403":0,"22404":0,"22405":0,"22406":0,"22407":1,"22408":1,"22409":1,"22410":0,"22411":1,"22412":0,"22413":1,"22414":0,"22415":0,"22416":0,"22417":0,"22418":0,"22419":1,"22420":1,"22421":1,"22422":0,"22423":0,"22424":0,"22425":0,"22426":0,"22427":1,"22428":0,"22429":0,"22430":0,"22431":0,"22432":0,"22433":0,"22434":0,"22435":0,"22436":0,"22437":0,"22438":0,"22439":1,"22440":0,"22441":0,"22442":1,"22443":0,"22444":0,"22445":0,"22446":0,"22447":0,"22448":0,"22449":1,"22450":0,"22451":0,"22452":0,"22453":1,"22454":0,"22455":0,"22456":0,"22457":0,"22458":0,"22459":1,"22460":1,"22461":0,"22462":1,"22463":0,"22464":0,"22465":0,"22466":0,"22467":1,"22468":0,"22469":0,"22470":0,"22471":1,"22472":0,"22473":0,"22474":0,"22475":0,"22476":1,"22477":0,"22478":0,"22479":0,"22480":0,"22481":1,"22482":0,"22483":0,"22484":0,"22485":0,"22486":0,"22487":0,"22488":0,"22489":0,"22490":0,"22491":0,"22492":0,"22493":1,"22494":0,"22495":0,"22496":0,"22497":0,"22498":1,"22499":0,"22500":1,"22501":0,"22502":1,"22503":0,"22504":0,"22505":1,"22506":0,"22507":0,"22508":1,"22509":0,"22510":0,"22511":0,"22512":0,"22513":0,"22514":0,"22515":0,"22516":0,"22517":0,"22518":0,"22519":0,"22520":0,"22521":0,"22522":0,"22523":0,"22524":0,"22525":0,"22526":0,"22527":1,"22528":1,"22529":0,"22530":1,"22531":0,"22532":0,"22533":0,"22534":1,"22535":0,"22536":1,"22537":1,"22538":1,"22539":1,"22540":0,"22541":0,"22542":0,"22543":0,"22544":0,"22545":0,"22546":0,"22547":0,"22548":0,"22549":1,"22550":0,"22551":0,"22552":1,"22553":1,"22554":0,"22555":0,"22556":0,"22557":0,"22558":0,"22559":0,"22560":0,"22561":0,"22562":0,"22563":0,"22564":0,"22565":0,"22566":0,"22567":0,"22568":0,"22569":1,"22570":1,"22571":1,"22572":0,"22573":0,"22574":0,"22575":0,"22576":0,"22577":0,"22578":0,"22579":0,"22580":0,"22581":0,"22582":1,"22583":1,"22584":0,"22585":0,"22586":0,"22587":0,"22588":1,"22589":0,"22590":1,"22591":0,"22592":0,"22593":0,"22594":1,"22595":0,"22596":0,"22597":1,"22598":0,"22599":0,"22600":0,"22601":0,"22602":1,"22603":1,"22604":0,"22605":1,"22606":0,"22607":0,"22608":0,"22609":1,"22610":1,"22611":0,"22612":1,"22613":0,"22614":1,"22615":0,"22616":1,"22617":0,"22618":0,"22619":0,"22620":1,"22621":0,"22622":0,"22623":0,"22624":0,"22625":0,"22626":0,"22627":1,"22628":0,"22629":0,"22630":1,"22631":1,"22632":0,"22633":1,"22634":0,"22635":1,"22636":0,"22637":0,"22638":0,"22639":0,"22640":1,"22641":0,"22642":0,"22643":1,"22644":0,"22645":0,"22646":0,"22647":0,"22648":0,"22649":0,"22650":1,"22651":0,"22652":1,"22653":0,"22654":1,"22655":0,"22656":1,"22657":0,"22658":0,"22659":0,"22660":0,"22661":1,"22662":0,"22663":0,"22664":0,"22665":0,"22666":0,"22667":0,"22668":1,"22669":0,"22670":0,"22671":0,"22672":1,"22673":0,"22674":1,"22675":0,"22676":0,"22677":0,"22678":1,"22679":0,"22680":0,"22681":0,"22682":0,"22683":1,"22684":0,"22685":1,"22686":0,"22687":0,"22688":0,"22689":1,"22690":0,"22691":0,"22692":0,"22693":0,"22694":0,"22695":1,"22696":1,"22697":1,"22698":0,"22699":0,"22700":0,"22701":1,"22702":0,"22703":0,"22704":0,"22705":0,"22706":1,"22707":1,"22708":0,"22709":0,"22710":0,"22711":0,"22712":0,"22713":0,"22714":0,"22715":0,"22716":0,"22717":0,"22718":0,"22719":0,"22720":1,"22721":0,"22722":0,"22723":0,"22724":0,"22725":0,"22726":0,"22727":1,"22728":0,"22729":0,"22730":1,"22731":0,"22732":1,"22733":0,"22734":1,"22735":1,"22736":0,"22737":0,"22738":0,"22739":0,"22740":1,"22741":1,"22742":0,"22743":0,"22744":0,"22745":0,"22746":1,"22747":1,"22748":0,"22749":0,"22750":0,"22751":0,"22752":0,"22753":1,"22754":1,"22755":0,"22756":0,"22757":1,"22758":1,"22759":0,"22760":0,"22761":0,"22762":0,"22763":0,"22764":0,"22765":0,"22766":0,"22767":0,"22768":0,"22769":0,"22770":0,"22771":0,"22772":1,"22773":0,"22774":1,"22775":0,"22776":1,"22777":0,"22778":0,"22779":0,"22780":0,"22781":0,"22782":0,"22783":0,"22784":0,"22785":0,"22786":0,"22787":1,"22788":0,"22789":0,"22790":1,"22791":0,"22792":0,"22793":0,"22794":1,"22795":1,"22796":0,"22797":1,"22798":1,"22799":0,"22800":0,"22801":0,"22802":0,"22803":0,"22804":1,"22805":0,"22806":1,"22807":0,"22808":0,"22809":0,"22810":1,"22811":0,"22812":0,"22813":0,"22814":0,"22815":0,"22816":0,"22817":1,"22818":1,"22819":0,"22820":0,"22821":0,"22822":0,"22823":0,"22824":1,"22825":0,"22826":1,"22827":0,"22828":1,"22829":0,"22830":0,"22831":0,"22832":1,"22833":1,"22834":0,"22835":0,"22836":0,"22837":0,"22838":1,"22839":0,"22840":0,"22841":0,"22842":0,"22843":0,"22844":0,"22845":0,"22846":0,"22847":1,"22848":1,"22849":0,"22850":1,"22851":0,"22852":0,"22853":0,"22854":0,"22855":1,"22856":0,"22857":1,"22858":1,"22859":1,"22860":1,"22861":0,"22862":0,"22863":0,"22864":0,"22865":0,"22866":1,"22867":0,"22868":1,"22869":1,"22870":0,"22871":0,"22872":0,"22873":0,"22874":0,"22875":1,"22876":0,"22877":0,"22878":1,"22879":0,"22880":0,"22881":0,"22882":0,"22883":1,"22884":0,"22885":0,"22886":1,"22887":1,"22888":0,"22889":0,"22890":1,"22891":1,"22892":1,"22893":0,"22894":1,"22895":0,"22896":0,"22897":1,"22898":0,"22899":1,"22900":0,"22901":0,"22902":0,"22903":0,"22904":1,"22905":0,"22906":1,"22907":0,"22908":0,"22909":0,"22910":1,"22911":1,"22912":0,"22913":0,"22914":1,"22915":0,"22916":0,"22917":1,"22918":0,"22919":0,"22920":0,"22921":0,"22922":1,"22923":0,"22924":1,"22925":1,"22926":0,"22927":1,"22928":0,"22929":1,"22930":0,"22931":0,"22932":0,"22933":0,"22934":0,"22935":0,"22936":0,"22937":0,"22938":0,"22939":0,"22940":1,"22941":1,"22942":1,"22943":0,"22944":0,"22945":0,"22946":1,"22947":1,"22948":0,"22949":0,"22950":0,"22951":0,"22952":0,"22953":0,"22954":0,"22955":1,"22956":1,"22957":0,"22958":0,"22959":0,"22960":0,"22961":0,"22962":0,"22963":0,"22964":1,"22965":0,"22966":0,"22967":0,"22968":0,"22969":0,"22970":1,"22971":1,"22972":0,"22973":0,"22974":0,"22975":0,"22976":0,"22977":1,"22978":1,"22979":0,"22980":0,"22981":0,"22982":0,"22983":0,"22984":0,"22985":1,"22986":0,"22987":0,"22988":0,"22989":0,"22990":0,"22991":0,"22992":1,"22993":0,"22994":0,"22995":1,"22996":1,"22997":0,"22998":0,"22999":1,"23000":1,"23001":0,"23002":1,"23003":0,"23004":1,"23005":0,"23006":0,"23007":0,"23008":0,"23009":0,"23010":0,"23011":0,"23012":0,"23013":0,"23014":1,"23015":1,"23016":0,"23017":0,"23018":0,"23019":0,"23020":1,"23021":0,"23022":1,"23023":0,"23024":0,"23025":0,"23026":0,"23027":0,"23028":0,"23029":0,"23030":0,"23031":0,"23032":1,"23033":1,"23034":0,"23035":0,"23036":0,"23037":0,"23038":0,"23039":0,"23040":1,"23041":1,"23042":0,"23043":0,"23044":0,"23045":0,"23046":1,"23047":0,"23048":0,"23049":0,"23050":0,"23051":0,"23052":0,"23053":0,"23054":0,"23055":0,"23056":0,"23057":1,"23058":1,"23059":0,"23060":0,"23061":0,"23062":1,"23063":0,"23064":1,"23065":1,"23066":0,"23067":0,"23068":0,"23069":0,"23070":0,"23071":0,"23072":0,"23073":1,"23074":0,"23075":0,"23076":1,"23077":1,"23078":0,"23079":0,"23080":0,"23081":0,"23082":0,"23083":0,"23084":1,"23085":0,"23086":0,"23087":0,"23088":1,"23089":1,"23090":0,"23091":0,"23092":1,"23093":0,"23094":0,"23095":0,"23096":1,"23097":1,"23098":0,"23099":1,"23100":0,"23101":0,"23102":0,"23103":0,"23104":0,"23105":1,"23106":1,"23107":0,"23108":0,"23109":0,"23110":0,"23111":0,"23112":0,"23113":0,"23114":0,"23115":0,"23116":0,"23117":0,"23118":1,"23119":0,"23120":0,"23121":0,"23122":0,"23123":0,"23124":0,"23125":0,"23126":1,"23127":0,"23128":0,"23129":0,"23130":0,"23131":0,"23132":0,"23133":1,"23134":0,"23135":0,"23136":1,"23137":0,"23138":1,"23139":1,"23140":0,"23141":1,"23142":0,"23143":1,"23144":1,"23145":0,"23146":0,"23147":1,"23148":0,"23149":0,"23150":1,"23151":0,"23152":0,"23153":0,"23154":0,"23155":0,"23156":1,"23157":1,"23158":0,"23159":1,"23160":0,"23161":0,"23162":0,"23163":0,"23164":1,"23165":0,"23166":0,"23167":0,"23168":0,"23169":0,"23170":0,"23171":0,"23172":0,"23173":0,"23174":1,"23175":0,"23176":0,"23177":0,"23178":1,"23179":0,"23180":0,"23181":0,"23182":0,"23183":0,"23184":1,"23185":0,"23186":0,"23187":0,"23188":0,"23189":0,"23190":0,"23191":1,"23192":0,"23193":0,"23194":1,"23195":1,"23196":0,"23197":0,"23198":0,"23199":0,"23200":0,"23201":1,"23202":0,"23203":0,"23204":0,"23205":0,"23206":1,"23207":0,"23208":0,"23209":0,"23210":0,"23211":0,"23212":0,"23213":0,"23214":1,"23215":0,"23216":0,"23217":0,"23218":0,"23219":0,"23220":0,"23221":0,"23222":1,"23223":0,"23224":0,"23225":0,"23226":1,"23227":0,"23228":1,"23229":1,"23230":1,"23231":0,"23232":0,"23233":0,"23234":0,"23235":0,"23236":0,"23237":0,"23238":0,"23239":0,"23240":0,"23241":0,"23242":0,"23243":0,"23244":1,"23245":0,"23246":0,"23247":0,"23248":0,"23249":0,"23250":0,"23251":0,"23252":0,"23253":1,"23254":0,"23255":0,"23256":1,"23257":0,"23258":0,"23259":1,"23260":0,"23261":0,"23262":1,"23263":0,"23264":0,"23265":0,"23266":0,"23267":0,"23268":0,"23269":0,"23270":0,"23271":0,"23272":0,"23273":0,"23274":0,"23275":1,"23276":0,"23277":0,"23278":1,"23279":1,"23280":0,"23281":0,"23282":0,"23283":0,"23284":0,"23285":0,"23286":0,"23287":0,"23288":0,"23289":0,"23290":1,"23291":0,"23292":1,"23293":1,"23294":0,"23295":0,"23296":0,"23297":0,"23298":0,"23299":0,"23300":1,"23301":0,"23302":0,"23303":1,"23304":0,"23305":0,"23306":0,"23307":0,"23308":0,"23309":0,"23310":0,"23311":1,"23312":0,"23313":0,"23314":0,"23315":0,"23316":0,"23317":0,"23318":0,"23319":0,"23320":1,"23321":1,"23322":0,"23323":0,"23324":0,"23325":1,"23326":0,"23327":0,"23328":0,"23329":1,"23330":0,"23331":0,"23332":0,"23333":0,"23334":1,"23335":0,"23336":0,"23337":0,"23338":0,"23339":0,"23340":0,"23341":0,"23342":0,"23343":1,"23344":0,"23345":0,"23346":0,"23347":0,"23348":0,"23349":0,"23350":1,"23351":0,"23352":0,"23353":0,"23354":0,"23355":0,"23356":0,"23357":1,"23358":0,"23359":0,"23360":0,"23361":0,"23362":0,"23363":0,"23364":0,"23365":0,"23366":0,"23367":0,"23368":1,"23369":0,"23370":0,"23371":0,"23372":0,"23373":0,"23374":0,"23375":1,"23376":0,"23377":1,"23378":0,"23379":0,"23380":0,"23381":0,"23382":1,"23383":0,"23384":0,"23385":0,"23386":0,"23387":0,"23388":1,"23389":1,"23390":1,"23391":1,"23392":1,"23393":1,"23394":0,"23395":0,"23396":0,"23397":0,"23398":0,"23399":1,"23400":0,"23401":0,"23402":0,"23403":0,"23404":0,"23405":0,"23406":0,"23407":0,"23408":0,"23409":1,"23410":1,"23411":0,"23412":0,"23413":0,"23414":1,"23415":0,"23416":0,"23417":0,"23418":0,"23419":0,"23420":0,"23421":0,"23422":1,"23423":0,"23424":1,"23425":1,"23426":0,"23427":0,"23428":1,"23429":0,"23430":1,"23431":0,"23432":1,"23433":1,"23434":0,"23435":0,"23436":0,"23437":0,"23438":0,"23439":0,"23440":0,"23441":0,"23442":1,"23443":0,"23444":0,"23445":1,"23446":0,"23447":0,"23448":0,"23449":1,"23450":0,"23451":0,"23452":0,"23453":0,"23454":0,"23455":0,"23456":0,"23457":1,"23458":0,"23459":0,"23460":0,"23461":0,"23462":0,"23463":1,"23464":1,"23465":0,"23466":0,"23467":0,"23468":0,"23469":0,"23470":0,"23471":0,"23472":1,"23473":0,"23474":0,"23475":0,"23476":0,"23477":1,"23478":0,"23479":1,"23480":0,"23481":0,"23482":0,"23483":1,"23484":0,"23485":1,"23486":1,"23487":0,"23488":0,"23489":0,"23490":0,"23491":0,"23492":0,"23493":0,"23494":0,"23495":0,"23496":0,"23497":1,"23498":0,"23499":0,"23500":1,"23501":0,"23502":0,"23503":1,"23504":0,"23505":1,"23506":1,"23507":0,"23508":1,"23509":0,"23510":0,"23511":0,"23512":0,"23513":1,"23514":0,"23515":0,"23516":0,"23517":0,"23518":0,"23519":1,"23520":0,"23521":0,"23522":0,"23523":1,"23524":1,"23525":0,"23526":1,"23527":0,"23528":0,"23529":0,"23530":0,"23531":0,"23532":0,"23533":0,"23534":1,"23535":1,"23536":0,"23537":0,"23538":0,"23539":0,"23540":1,"23541":0,"23542":1,"23543":0,"23544":1,"23545":1,"23546":1,"23547":1,"23548":0,"23549":0,"23550":0,"23551":0,"23552":0,"23553":0,"23554":0,"23555":0,"23556":0,"23557":1,"23558":0,"23559":0,"23560":1,"23561":1,"23562":1,"23563":0,"23564":0,"23565":1,"23566":1,"23567":1,"23568":0,"23569":0,"23570":0,"23571":0,"23572":0,"23573":1,"23574":0,"23575":0,"23576":1,"23577":0,"23578":0,"23579":0,"23580":0,"23581":1,"23582":0,"23583":0,"23584":0,"23585":1,"23586":0,"23587":0,"23588":1,"23589":0,"23590":0,"23591":1,"23592":0,"23593":0,"23594":0,"23595":0,"23596":1,"23597":0,"23598":0,"23599":0,"23600":1,"23601":0,"23602":0,"23603":0,"23604":0,"23605":0,"23606":1,"23607":0,"23608":1,"23609":1,"23610":1,"23611":0,"23612":1,"23613":0,"23614":0,"23615":1,"23616":0,"23617":0,"23618":0,"23619":1,"23620":0,"23621":0,"23622":0,"23623":0,"23624":0,"23625":1,"23626":0,"23627":1,"23628":0,"23629":0,"23630":1,"23631":0,"23632":1,"23633":0,"23634":0,"23635":0,"23636":0,"23637":1,"23638":1,"23639":1,"23640":0,"23641":0,"23642":0,"23643":1,"23644":0,"23645":1,"23646":0,"23647":0,"23648":0,"23649":1,"23650":0,"23651":0,"23652":1,"23653":0,"23654":0,"23655":1,"23656":0,"23657":1,"23658":0,"23659":0,"23660":1,"23661":0,"23662":1,"23663":0,"23664":0,"23665":0,"23666":1,"23667":0,"23668":0,"23669":0,"23670":1,"23671":1,"23672":0,"23673":0,"23674":0,"23675":0,"23676":0,"23677":0,"23678":1,"23679":0,"23680":0,"23681":1,"23682":0,"23683":1,"23684":0,"23685":0,"23686":0,"23687":0,"23688":0,"23689":0,"23690":0,"23691":0,"23692":1,"23693":0,"23694":0,"23695":0,"23696":0,"23697":1,"23698":0,"23699":1,"23700":1,"23701":1,"23702":1,"23703":0,"23704":0,"23705":0,"23706":0,"23707":0,"23708":0,"23709":0,"23710":0,"23711":0,"23712":0,"23713":0,"23714":0,"23715":1,"23716":1,"23717":0,"23718":1,"23719":1,"23720":0,"23721":0,"23722":0,"23723":0,"23724":1,"23725":0,"23726":1,"23727":0,"23728":1,"23729":0,"23730":1,"23731":1,"23732":0,"23733":0,"23734":0,"23735":0,"23736":0,"23737":0,"23738":0,"23739":0,"23740":0,"23741":0,"23742":0,"23743":0,"23744":1,"23745":0,"23746":0,"23747":0,"23748":0,"23749":0,"23750":0,"23751":0,"23752":0,"23753":0,"23754":0,"23755":0,"23756":0,"23757":0,"23758":1,"23759":0,"23760":1,"23761":0,"23762":0,"23763":1,"23764":0,"23765":0,"23766":0,"23767":1,"23768":0,"23769":1,"23770":0,"23771":1,"23772":1,"23773":0,"23774":0,"23775":0,"23776":0,"23777":1,"23778":0,"23779":1,"23780":1,"23781":1,"23782":0,"23783":1,"23784":0,"23785":1,"23786":0,"23787":0,"23788":0,"23789":0,"23790":0,"23791":0,"23792":1,"23793":0,"23794":0,"23795":1,"23796":0,"23797":0,"23798":0,"23799":0,"23800":1,"23801":0,"23802":0,"23803":0,"23804":0,"23805":0,"23806":0,"23807":0,"23808":1,"23809":0,"23810":0,"23811":0,"23812":0,"23813":0,"23814":1,"23815":1,"23816":1,"23817":0,"23818":0,"23819":1,"23820":0,"23821":0,"23822":0,"23823":0,"23824":1,"23825":0,"23826":0,"23827":0,"23828":0,"23829":0,"23830":1,"23831":0,"23832":1,"23833":0,"23834":0,"23835":0,"23836":1,"23837":0,"23838":0,"23839":0,"23840":0,"23841":1,"23842":1,"23843":0,"23844":0,"23845":0,"23846":0,"23847":1,"23848":0,"23849":0,"23850":0,"23851":0,"23852":0,"23853":1,"23854":0,"23855":1,"23856":1,"23857":0,"23858":0,"23859":0,"23860":0,"23861":0,"23862":1,"23863":0,"23864":0,"23865":0,"23866":0,"23867":0,"23868":0,"23869":0,"23870":0,"23871":0,"23872":0,"23873":1,"23874":1,"23875":0,"23876":0,"23877":0,"23878":1,"23879":0,"23880":1,"23881":1,"23882":0,"23883":0,"23884":0,"23885":0,"23886":0,"23887":0,"23888":1,"23889":0,"23890":0,"23891":0,"23892":0,"23893":0,"23894":0,"23895":1,"23896":1,"23897":1,"23898":0,"23899":0,"23900":0,"23901":0,"23902":0,"23903":0,"23904":1,"23905":0,"23906":1,"23907":1,"23908":0,"23909":0,"23910":1,"23911":0,"23912":0,"23913":0,"23914":1,"23915":0,"23916":0,"23917":0,"23918":1,"23919":0,"23920":0,"23921":1,"23922":0,"23923":0,"23924":1,"23925":0,"23926":0,"23927":0,"23928":0,"23929":1,"23930":0,"23931":1,"23932":0,"23933":1,"23934":0,"23935":1,"23936":0,"23937":1,"23938":0,"23939":0,"23940":0,"23941":0,"23942":0,"23943":0,"23944":0,"23945":1,"23946":0,"23947":0,"23948":1,"23949":0,"23950":0,"23951":0,"23952":0,"23953":1,"23954":0,"23955":0,"23956":0,"23957":1,"23958":0,"23959":0,"23960":0,"23961":0,"23962":0,"23963":0,"23964":0,"23965":0,"23966":0,"23967":0,"23968":1,"23969":1,"23970":1,"23971":0,"23972":1,"23973":1,"23974":0,"23975":0,"23976":0,"23977":0,"23978":1,"23979":0,"23980":1,"23981":0,"23982":1,"23983":0,"23984":0,"23985":0,"23986":0,"23987":1,"23988":0,"23989":1,"23990":0,"23991":1,"23992":0,"23993":1,"23994":1,"23995":0,"23996":1,"23997":0,"23998":0,"23999":1,"24000":0,"24001":1,"24002":0,"24003":0,"24004":1,"24005":0,"24006":0,"24007":0,"24008":0,"24009":0,"24010":0,"24011":0,"24012":0,"24013":0,"24014":0,"24015":0,"24016":0,"24017":0,"24018":0,"24019":0,"24020":0,"24021":0,"24022":1,"24023":0,"24024":0,"24025":0,"24026":0,"24027":1,"24028":0,"24029":0,"24030":0,"24031":1,"24032":1,"24033":0,"24034":0,"24035":0,"24036":0,"24037":1,"24038":0,"24039":0,"24040":0,"24041":0,"24042":1,"24043":1,"24044":0,"24045":0,"24046":0,"24047":0,"24048":0,"24049":0,"24050":1,"24051":1,"24052":0,"24053":1,"24054":1,"24055":0,"24056":1,"24057":0,"24058":0,"24059":0,"24060":0,"24061":0,"24062":0,"24063":0,"24064":0,"24065":0,"24066":0,"24067":0,"24068":0,"24069":1,"24070":0,"24071":0,"24072":0,"24073":0,"24074":0,"24075":1,"24076":0,"24077":0,"24078":0,"24079":0,"24080":0,"24081":1,"24082":0,"24083":0,"24084":0,"24085":0,"24086":0,"24087":1,"24088":0,"24089":0,"24090":1,"24091":0,"24092":0,"24093":0,"24094":0,"24095":0,"24096":0,"24097":0,"24098":0,"24099":0,"24100":1,"24101":0,"24102":0,"24103":0,"24104":1,"24105":0,"24106":0,"24107":0,"24108":0,"24109":0,"24110":1,"24111":0,"24112":0,"24113":0,"24114":0,"24115":0,"24116":1,"24117":1,"24118":0,"24119":0,"24120":0,"24121":0,"24122":0,"24123":1,"24124":0,"24125":0,"24126":0,"24127":1,"24128":0,"24129":1,"24130":0,"24131":0,"24132":0,"24133":0,"24134":0,"24135":0,"24136":0,"24137":0,"24138":1,"24139":0,"24140":1,"24141":0,"24142":0,"24143":0,"24144":0,"24145":0,"24146":0,"24147":0,"24148":0,"24149":0,"24150":0,"24151":1,"24152":0,"24153":0,"24154":0,"24155":0,"24156":0,"24157":0,"24158":0,"24159":1,"24160":0,"24161":1,"24162":0,"24163":0,"24164":0,"24165":0,"24166":0,"24167":0,"24168":1,"24169":0,"24170":1,"24171":0,"24172":1,"24173":0,"24174":0,"24175":0,"24176":0,"24177":1,"24178":0,"24179":0,"24180":0,"24181":0,"24182":0,"24183":0,"24184":0,"24185":1,"24186":1,"24187":0,"24188":0,"24189":1,"24190":0,"24191":0,"24192":0,"24193":0,"24194":0,"24195":1,"24196":0,"24197":0,"24198":0,"24199":0,"24200":0,"24201":0,"24202":0,"24203":1,"24204":0,"24205":0,"24206":0,"24207":1,"24208":0,"24209":0,"24210":1,"24211":0,"24212":0,"24213":0,"24214":0,"24215":0,"24216":0,"24217":1,"24218":0,"24219":1,"24220":1,"24221":0,"24222":0,"24223":1,"24224":1,"24225":1,"24226":0,"24227":1,"24228":0,"24229":0,"24230":1,"24231":0,"24232":0,"24233":0,"24234":0,"24235":0,"24236":1,"24237":1,"24238":0,"24239":0,"24240":1,"24241":1,"24242":0,"24243":0,"24244":0,"24245":1,"24246":0,"24247":0,"24248":0,"24249":0,"24250":0,"24251":0,"24252":0,"24253":0,"24254":0,"24255":0,"24256":1,"24257":1,"24258":0,"24259":0,"24260":0,"24261":0,"24262":0,"24263":0,"24264":0,"24265":1,"24266":0,"24267":0,"24268":0,"24269":0,"24270":0,"24271":0,"24272":0,"24273":0,"24274":0,"24275":0,"24276":1,"24277":0,"24278":0,"24279":1,"24280":0,"24281":0,"24282":0,"24283":0,"24284":0,"24285":0,"24286":0,"24287":0,"24288":1,"24289":1,"24290":0,"24291":0,"24292":0,"24293":0,"24294":0,"24295":0,"24296":0,"24297":1,"24298":0,"24299":0,"24300":1,"24301":0,"24302":1,"24303":0,"24304":0,"24305":0,"24306":0,"24307":0,"24308":0,"24309":0,"24310":1,"24311":0,"24312":0,"24313":1,"24314":0,"24315":0,"24316":1,"24317":0,"24318":0,"24319":0,"24320":0,"24321":1,"24322":0,"24323":0,"24324":1,"24325":0,"24326":1,"24327":0,"24328":1,"24329":0,"24330":0,"24331":0,"24332":0,"24333":0,"24334":1,"24335":0,"24336":0,"24337":0,"24338":1,"24339":0,"24340":0,"24341":0,"24342":0,"24343":0,"24344":0,"24345":0,"24346":0,"24347":0,"24348":0,"24349":0,"24350":0,"24351":0,"24352":0,"24353":0,"24354":0,"24355":1,"24356":1,"24357":0,"24358":0,"24359":1,"24360":0,"24361":1,"24362":0,"24363":1,"24364":0,"24365":1,"24366":1,"24367":0,"24368":0,"24369":1,"24370":0,"24371":0,"24372":0,"24373":0,"24374":0,"24375":1,"24376":1,"24377":1,"24378":0,"24379":0,"24380":0,"24381":1,"24382":0,"24383":0,"24384":0,"24385":0,"24386":0,"24387":1,"24388":1,"24389":0,"24390":0,"24391":0,"24392":1,"24393":1,"24394":0,"24395":1,"24396":0,"24397":0,"24398":1,"24399":0,"24400":0,"24401":1,"24402":0,"24403":0,"24404":0,"24405":0,"24406":0,"24407":0,"24408":0,"24409":0,"24410":0,"24411":1,"24412":1,"24413":1,"24414":0,"24415":0,"24416":0,"24417":0,"24418":0,"24419":0,"24420":0,"24421":1,"24422":0,"24423":0,"24424":0,"24425":0,"24426":0,"24427":1,"24428":0,"24429":0,"24430":0,"24431":0,"24432":1,"24433":0,"24434":0,"24435":0,"24436":0,"24437":0,"24438":1,"24439":1,"24440":0,"24441":0,"24442":0,"24443":0,"24444":0,"24445":0,"24446":1,"24447":0,"24448":1,"24449":0,"24450":0,"24451":0,"24452":1,"24453":0,"24454":0,"24455":0,"24456":0,"24457":0,"24458":1,"24459":0,"24460":0,"24461":0,"24462":1,"24463":0,"24464":0,"24465":1,"24466":0,"24467":0,"24468":0,"24469":0,"24470":0,"24471":0,"24472":1,"24473":0,"24474":0,"24475":0,"24476":0,"24477":0,"24478":1,"24479":0,"24480":0,"24481":0,"24482":0,"24483":0,"24484":0,"24485":1,"24486":0,"24487":0,"24488":0,"24489":0,"24490":0,"24491":0,"24492":0,"24493":0,"24494":0,"24495":1,"24496":0,"24497":0,"24498":0,"24499":0,"24500":0,"24501":0,"24502":0,"24503":0,"24504":0,"24505":1,"24506":0,"24507":0,"24508":0,"24509":0,"24510":0,"24511":1,"24512":0,"24513":0,"24514":1,"24515":0,"24516":1,"24517":0,"24518":0,"24519":0,"24520":0,"24521":1,"24522":1,"24523":0,"24524":1,"24525":0,"24526":1,"24527":0,"24528":0,"24529":1,"24530":0,"24531":1,"24532":0,"24533":0,"24534":0,"24535":1,"24536":1,"24537":1,"24538":0,"24539":0,"24540":0,"24541":1,"24542":0,"24543":0,"24544":1,"24545":0,"24546":0,"24547":0,"24548":1,"24549":1,"24550":0,"24551":1,"24552":0,"24553":0,"24554":0,"24555":0,"24556":0,"24557":1,"24558":0,"24559":1,"24560":0,"24561":1,"24562":0,"24563":0,"24564":0,"24565":0,"24566":1,"24567":0,"24568":0,"24569":0,"24570":0,"24571":0,"24572":0,"24573":1,"24574":1,"24575":0,"24576":0,"24577":0,"24578":0,"24579":0,"24580":0,"24581":0,"24582":0,"24583":0,"24584":1,"24585":0,"24586":1,"24587":1,"24588":0,"24589":0,"24590":1,"24591":0,"24592":0,"24593":1,"24594":1,"24595":0,"24596":0,"24597":0,"24598":0,"24599":1,"24600":0,"24601":0,"24602":0,"24603":0,"24604":0,"24605":0,"24606":1,"24607":1,"24608":1,"24609":1,"24610":1,"24611":0,"24612":0,"24613":0,"24614":0,"24615":0,"24616":0,"24617":0,"24618":0,"24619":1,"24620":1,"24621":0,"24622":0,"24623":0,"24624":1,"24625":1,"24626":0,"24627":0,"24628":0,"24629":0,"24630":0,"24631":0,"24632":0,"24633":0,"24634":1,"24635":0,"24636":0,"24637":0,"24638":0,"24639":0,"24640":0,"24641":0,"24642":0,"24643":0,"24644":0,"24645":1,"24646":0,"24647":0,"24648":0,"24649":0,"24650":0,"24651":0,"24652":0,"24653":0,"24654":0,"24655":0,"24656":0,"24657":1,"24658":1,"24659":0,"24660":0,"24661":0,"24662":0,"24663":0,"24664":0,"24665":1,"24666":0,"24667":1,"24668":0,"24669":0,"24670":0,"24671":1,"24672":0,"24673":0,"24674":0,"24675":1,"24676":0,"24677":0,"24678":0,"24679":0,"24680":0,"24681":1,"24682":0,"24683":0,"24684":0,"24685":0,"24686":0,"24687":0,"24688":1,"24689":1,"24690":1,"24691":0,"24692":0,"24693":0,"24694":0,"24695":0,"24696":0,"24697":0,"24698":0,"24699":0,"24700":0,"24701":0,"24702":0,"24703":0,"24704":0,"24705":0,"24706":0,"24707":0,"24708":0,"24709":0,"24710":1,"24711":0,"24712":0,"24713":0,"24714":0,"24715":1,"24716":0,"24717":0,"24718":0,"24719":1,"24720":0,"24721":1,"24722":0,"24723":0,"24724":0,"24725":0,"24726":0,"24727":1,"24728":0,"24729":0,"24730":0,"24731":0,"24732":0,"24733":0,"24734":1,"24735":0,"24736":1,"24737":0,"24738":0,"24739":0,"24740":1,"24741":0,"24742":1,"24743":0,"24744":0,"24745":0,"24746":1,"24747":0,"24748":1,"24749":1,"24750":0,"24751":0,"24752":1,"24753":0,"24754":0,"24755":1,"24756":1,"24757":1,"24758":0,"24759":0,"24760":1,"24761":0,"24762":0,"24763":0,"24764":1,"24765":0,"24766":0,"24767":0,"24768":0,"24769":1,"24770":0,"24771":0,"24772":0,"24773":0,"24774":0,"24775":0,"24776":1,"24777":0,"24778":0,"24779":1,"24780":1,"24781":0,"24782":0,"24783":1,"24784":1,"24785":0,"24786":0,"24787":1,"24788":1,"24789":0,"24790":0,"24791":0,"24792":0,"24793":0,"24794":0,"24795":0,"24796":0,"24797":0,"24798":0,"24799":0,"24800":0,"24801":0,"24802":1,"24803":0,"24804":1,"24805":0,"24806":0,"24807":0,"24808":0,"24809":0,"24810":0,"24811":0,"24812":0,"24813":0,"24814":1,"24815":0,"24816":0,"24817":0,"24818":1,"24819":1,"24820":0,"24821":0,"24822":0,"24823":0,"24824":0,"24825":0,"24826":0,"24827":0,"24828":0,"24829":0,"24830":0,"24831":0,"24832":0,"24833":0,"24834":0,"24835":0,"24836":1,"24837":0,"24838":1,"24839":0,"24840":0,"24841":0,"24842":1,"24843":0,"24844":0,"24845":1,"24846":0,"24847":0,"24848":0,"24849":1,"24850":0,"24851":0,"24852":0,"24853":0,"24854":0,"24855":0,"24856":0,"24857":0,"24858":0,"24859":0,"24860":1,"24861":1,"24862":0,"24863":0,"24864":0,"24865":0,"24866":1,"24867":0,"24868":1,"24869":0,"24870":0,"24871":0,"24872":0,"24873":0,"24874":0,"24875":0,"24876":0,"24877":1,"24878":0,"24879":0,"24880":0,"24881":1,"24882":0,"24883":0,"24884":0,"24885":1,"24886":1,"24887":0,"24888":1,"24889":1,"24890":1,"24891":1,"24892":0,"24893":1,"24894":0,"24895":1,"24896":0,"24897":0,"24898":0,"24899":0,"24900":0,"24901":0,"24902":0,"24903":0,"24904":1,"24905":0,"24906":0,"24907":0,"24908":1,"24909":0,"24910":0,"24911":1,"24912":0,"24913":0,"24914":0,"24915":1,"24916":1,"24917":1,"24918":1,"24919":0,"24920":1,"24921":0,"24922":0,"24923":0,"24924":1,"24925":1,"24926":0,"24927":0,"24928":0,"24929":0,"24930":0,"24931":0,"24932":0,"24933":0,"24934":1,"24935":0,"24936":0,"24937":1,"24938":0,"24939":0,"24940":0,"24941":0,"24942":0,"24943":0,"24944":0,"24945":0,"24946":1,"24947":0,"24948":0,"24949":0,"24950":1,"24951":0,"24952":0,"24953":0,"24954":0,"24955":1,"24956":1,"24957":0,"24958":0,"24959":0,"24960":0,"24961":0,"24962":1,"24963":0,"24964":1,"24965":0,"24966":0,"24967":0,"24968":0,"24969":0,"24970":0,"24971":0,"24972":1,"24973":0,"24974":0,"24975":1,"24976":1,"24977":0,"24978":1,"24979":0,"24980":1,"24981":0,"24982":0,"24983":0,"24984":0,"24985":0,"24986":0,"24987":1,"24988":0,"24989":1,"24990":1,"24991":1,"24992":1,"24993":0,"24994":0,"24995":0,"24996":0,"24997":1,"24998":0,"24999":0,"25000":0,"25001":0,"25002":0,"25003":0,"25004":1,"25005":0,"25006":0,"25007":1,"25008":0,"25009":1,"25010":0,"25011":1,"25012":0,"25013":0,"25014":0,"25015":0,"25016":1,"25017":0,"25018":1,"25019":1,"25020":0,"25021":0,"25022":1,"25023":0,"25024":0,"25025":0,"25026":0,"25027":0,"25028":0,"25029":0,"25030":0,"25031":1,"25032":0,"25033":0,"25034":0,"25035":0,"25036":0,"25037":0,"25038":0,"25039":0,"25040":0,"25041":0,"25042":0,"25043":0,"25044":0,"25045":0,"25046":0,"25047":0,"25048":0,"25049":0,"25050":1,"25051":0,"25052":0,"25053":0,"25054":0,"25055":0,"25056":0,"25057":0,"25058":0,"25059":0,"25060":1,"25061":0,"25062":1,"25063":0,"25064":0,"25065":0,"25066":0,"25067":0,"25068":0,"25069":1,"25070":0,"25071":1,"25072":0,"25073":0,"25074":0,"25075":0,"25076":1,"25077":0,"25078":1,"25079":0,"25080":1,"25081":1,"25082":0,"25083":0,"25084":0,"25085":0,"25086":0,"25087":0,"25088":0,"25089":0,"25090":0,"25091":0,"25092":0,"25093":0,"25094":0,"25095":1,"25096":0,"25097":0,"25098":0,"25099":0,"25100":0,"25101":0,"25102":1,"25103":1,"25104":1,"25105":1,"25106":0,"25107":0,"25108":0,"25109":0,"25110":0,"25111":0,"25112":0,"25113":0,"25114":1,"25115":0,"25116":0,"25117":0,"25118":1,"25119":0,"25120":0,"25121":0,"25122":0,"25123":0,"25124":0,"25125":1,"25126":1,"25127":0,"25128":1,"25129":1,"25130":0,"25131":0,"25132":0,"25133":1,"25134":1,"25135":1,"25136":1,"25137":0,"25138":0,"25139":0,"25140":1,"25141":0,"25142":0,"25143":0,"25144":0,"25145":1,"25146":0,"25147":0,"25148":0,"25149":0,"25150":0,"25151":0,"25152":0,"25153":0,"25154":1,"25155":0,"25156":0,"25157":0,"25158":0,"25159":0,"25160":0,"25161":0,"25162":0,"25163":0,"25164":0,"25165":0,"25166":0,"25167":0,"25168":1,"25169":1,"25170":1,"25171":0,"25172":0,"25173":0,"25174":0,"25175":0,"25176":0,"25177":0,"25178":0,"25179":0,"25180":0,"25181":0,"25182":0,"25183":0,"25184":0,"25185":1,"25186":0,"25187":0,"25188":0,"25189":1,"25190":1,"25191":0,"25192":1,"25193":0,"25194":0,"25195":1,"25196":0,"25197":0,"25198":0,"25199":0,"25200":0,"25201":0,"25202":0,"25203":0,"25204":0,"25205":0,"25206":0,"25207":1,"25208":0,"25209":0,"25210":0,"25211":0,"25212":0,"25213":0,"25214":1,"25215":1,"25216":0,"25217":1,"25218":1,"25219":1,"25220":0,"25221":0,"25222":1,"25223":0,"25224":1,"25225":0,"25226":0,"25227":0,"25228":0,"25229":1,"25230":0,"25231":1,"25232":0,"25233":0,"25234":0,"25235":0,"25236":0,"25237":1,"25238":0,"25239":0,"25240":1,"25241":0,"25242":0,"25243":0,"25244":0,"25245":1,"25246":0,"25247":0,"25248":0,"25249":0,"25250":0,"25251":1,"25252":0,"25253":0,"25254":0,"25255":0,"25256":0,"25257":0,"25258":0,"25259":0,"25260":1,"25261":0,"25262":0,"25263":1,"25264":0,"25265":0,"25266":0,"25267":0,"25268":1,"25269":0,"25270":0,"25271":0,"25272":0,"25273":0,"25274":1,"25275":1,"25276":0,"25277":0,"25278":1,"25279":0,"25280":0,"25281":1,"25282":0,"25283":0,"25284":0,"25285":0,"25286":0,"25287":0,"25288":1,"25289":0,"25290":0,"25291":0,"25292":1,"25293":0,"25294":0,"25295":0,"25296":0,"25297":0,"25298":0,"25299":0,"25300":0,"25301":0,"25302":0,"25303":0,"25304":1,"25305":0,"25306":1,"25307":0,"25308":1,"25309":0,"25310":1,"25311":0,"25312":1,"25313":0,"25314":0,"25315":0,"25316":1,"25317":0,"25318":1,"25319":1,"25320":0,"25321":0,"25322":1,"25323":1,"25324":0,"25325":0,"25326":1,"25327":0,"25328":0,"25329":0,"25330":0,"25331":1,"25332":0,"25333":0,"25334":0,"25335":0,"25336":0,"25337":0,"25338":1,"25339":0,"25340":0,"25341":0,"25342":1,"25343":0,"25344":0,"25345":0,"25346":0,"25347":1,"25348":1,"25349":0,"25350":0,"25351":1,"25352":0,"25353":0,"25354":1,"25355":0,"25356":1,"25357":0,"25358":0,"25359":0,"25360":0,"25361":0,"25362":0,"25363":0,"25364":0,"25365":0,"25366":1,"25367":0,"25368":0,"25369":0,"25370":0,"25371":0,"25372":0,"25373":0,"25374":1,"25375":0,"25376":1,"25377":0,"25378":0,"25379":1,"25380":0,"25381":0,"25382":0,"25383":1,"25384":0,"25385":0,"25386":1,"25387":0,"25388":0,"25389":0,"25390":1,"25391":0,"25392":0,"25393":0,"25394":0,"25395":0,"25396":0,"25397":0,"25398":0,"25399":1,"25400":0,"25401":1,"25402":1,"25403":0,"25404":0,"25405":1,"25406":0,"25407":0,"25408":0,"25409":0,"25410":0,"25411":0,"25412":1,"25413":1,"25414":1,"25415":0,"25416":0,"25417":0,"25418":0,"25419":0,"25420":0,"25421":0,"25422":0,"25423":1,"25424":0,"25425":0,"25426":0,"25427":0,"25428":0,"25429":0,"25430":0,"25431":1,"25432":0,"25433":0,"25434":1,"25435":0,"25436":0,"25437":0,"25438":1,"25439":0,"25440":0,"25441":0,"25442":0,"25443":0,"25444":0,"25445":0,"25446":0,"25447":0,"25448":1,"25449":0,"25450":1,"25451":0,"25452":0,"25453":0,"25454":0,"25455":0,"25456":1,"25457":0,"25458":0,"25459":0,"25460":0,"25461":0,"25462":0,"25463":0,"25464":1,"25465":0,"25466":0,"25467":1,"25468":0,"25469":0,"25470":0,"25471":0,"25472":0,"25473":1,"25474":0,"25475":0,"25476":0,"25477":1,"25478":1,"25479":0,"25480":1,"25481":0,"25482":0,"25483":0,"25484":0,"25485":0,"25486":0,"25487":1,"25488":0,"25489":0,"25490":0,"25491":0,"25492":0,"25493":1,"25494":1,"25495":0,"25496":0,"25497":0,"25498":0,"25499":1,"25500":0,"25501":0,"25502":0,"25503":1,"25504":0,"25505":0,"25506":1,"25507":0,"25508":0,"25509":0,"25510":0,"25511":1,"25512":0,"25513":0,"25514":0,"25515":0,"25516":1,"25517":0,"25518":0,"25519":0,"25520":0,"25521":0,"25522":0,"25523":0,"25524":0,"25525":1,"25526":0,"25527":1,"25528":0,"25529":0,"25530":0,"25531":0,"25532":0,"25533":1,"25534":1,"25535":0,"25536":0,"25537":1,"25538":0,"25539":0,"25540":1,"25541":1,"25542":1,"25543":0,"25544":0,"25545":0,"25546":0,"25547":0,"25548":0,"25549":0,"25550":0,"25551":0,"25552":0,"25553":0,"25554":0,"25555":0,"25556":0,"25557":0,"25558":0,"25559":1,"25560":1,"25561":0,"25562":1,"25563":0,"25564":0,"25565":0,"25566":0,"25567":0,"25568":0,"25569":0,"25570":1,"25571":0,"25572":0,"25573":1,"25574":0,"25575":1,"25576":1,"25577":1,"25578":0,"25579":0,"25580":0,"25581":1,"25582":0,"25583":0,"25584":0,"25585":0,"25586":0,"25587":0,"25588":0,"25589":1,"25590":0,"25591":0,"25592":0,"25593":0,"25594":0,"25595":0,"25596":0,"25597":0,"25598":0,"25599":0,"25600":0,"25601":1,"25602":1,"25603":0,"25604":0,"25605":0,"25606":0,"25607":0,"25608":0,"25609":0,"25610":0,"25611":0,"25612":0,"25613":0,"25614":1,"25615":0,"25616":0,"25617":0,"25618":0,"25619":0,"25620":0,"25621":0,"25622":0,"25623":0,"25624":0,"25625":0,"25626":1,"25627":0,"25628":0,"25629":1,"25630":1,"25631":0,"25632":0,"25633":1,"25634":0,"25635":0,"25636":0,"25637":0,"25638":0,"25639":0,"25640":0,"25641":1,"25642":0,"25643":0,"25644":0,"25645":0,"25646":0,"25647":0,"25648":0,"25649":0,"25650":0,"25651":1,"25652":0,"25653":0,"25654":1,"25655":0,"25656":0,"25657":0,"25658":0,"25659":0,"25660":0,"25661":1,"25662":0,"25663":1,"25664":1,"25665":0,"25666":0,"25667":0,"25668":0,"25669":0,"25670":1,"25671":0,"25672":0,"25673":1,"25674":1,"25675":1,"25676":0,"25677":1,"25678":0,"25679":0,"25680":1,"25681":0,"25682":1,"25683":0,"25684":0,"25685":0,"25686":0,"25687":0,"25688":1,"25689":0,"25690":0,"25691":0,"25692":1,"25693":1,"25694":1,"25695":0,"25696":1,"25697":1,"25698":0,"25699":1,"25700":0,"25701":1,"25702":0,"25703":0,"25704":0,"25705":1,"25706":0,"25707":0,"25708":0,"25709":0,"25710":0,"25711":0,"25712":1,"25713":1,"25714":0,"25715":0,"25716":0,"25717":0,"25718":0,"25719":0,"25720":0,"25721":0,"25722":0,"25723":1,"25724":0,"25725":0,"25726":0,"25727":1,"25728":0,"25729":0,"25730":0,"25731":0,"25732":1,"25733":0,"25734":1,"25735":1,"25736":0,"25737":1,"25738":0,"25739":0,"25740":0,"25741":1,"25742":0,"25743":0,"25744":0,"25745":1,"25746":0,"25747":0,"25748":0,"25749":0,"25750":0,"25751":0,"25752":1,"25753":0,"25754":1,"25755":0,"25756":0,"25757":0,"25758":0,"25759":0,"25760":0,"25761":0,"25762":1,"25763":1,"25764":0,"25765":1,"25766":0,"25767":0,"25768":0,"25769":0,"25770":0,"25771":0,"25772":0,"25773":1,"25774":0,"25775":0,"25776":0,"25777":0,"25778":0,"25779":0,"25780":1,"25781":1,"25782":0,"25783":0,"25784":0,"25785":1,"25786":0,"25787":1,"25788":0,"25789":1,"25790":1,"25791":0,"25792":0,"25793":0,"25794":1,"25795":0,"25796":1,"25797":1,"25798":1,"25799":0,"25800":0,"25801":0,"25802":1,"25803":0,"25804":0,"25805":1,"25806":0,"25807":1,"25808":1,"25809":0,"25810":0,"25811":0,"25812":0,"25813":0,"25814":0,"25815":0,"25816":0,"25817":1,"25818":0,"25819":1,"25820":0,"25821":0,"25822":0,"25823":0,"25824":0,"25825":1,"25826":0,"25827":0,"25828":0,"25829":0,"25830":0,"25831":0,"25832":0,"25833":1,"25834":1,"25835":0,"25836":0,"25837":0,"25838":0,"25839":0,"25840":0,"25841":0,"25842":0,"25843":0,"25844":0,"25845":1,"25846":0,"25847":0,"25848":0,"25849":0,"25850":0,"25851":1,"25852":1,"25853":1,"25854":1,"25855":0,"25856":0,"25857":1,"25858":1,"25859":0,"25860":0,"25861":0,"25862":0,"25863":0,"25864":1,"25865":0,"25866":0,"25867":1,"25868":0,"25869":0,"25870":1,"25871":0,"25872":0,"25873":0,"25874":0,"25875":0,"25876":0,"25877":0,"25878":0,"25879":0,"25880":0,"25881":0,"25882":0,"25883":0,"25884":0,"25885":0,"25886":0,"25887":0,"25888":0,"25889":0,"25890":0,"25891":0,"25892":0,"25893":0,"25894":1,"25895":0,"25896":1,"25897":0,"25898":0,"25899":0,"25900":0,"25901":0,"25902":0,"25903":0,"25904":0,"25905":0,"25906":1,"25907":0,"25908":0,"25909":0,"25910":0,"25911":0,"25912":0,"25913":0,"25914":0,"25915":1,"25916":0,"25917":0,"25918":0,"25919":0,"25920":0,"25921":1,"25922":1,"25923":0,"25924":0,"25925":0,"25926":0,"25927":0,"25928":0,"25929":0,"25930":0,"25931":0,"25932":0,"25933":1,"25934":0,"25935":0,"25936":0,"25937":0,"25938":0,"25939":0,"25940":0,"25941":0,"25942":0,"25943":0,"25944":1,"25945":1,"25946":0,"25947":0,"25948":0,"25949":0,"25950":0,"25951":0,"25952":1,"25953":0,"25954":0,"25955":0,"25956":0,"25957":0,"25958":0,"25959":0,"25960":0,"25961":0,"25962":0,"25963":0,"25964":0,"25965":0,"25966":1,"25967":1,"25968":0,"25969":0,"25970":0,"25971":0,"25972":0,"25973":0,"25974":0,"25975":0,"25976":0,"25977":0,"25978":0,"25979":0,"25980":0,"25981":0,"25982":0,"25983":0,"25984":1,"25985":0,"25986":0,"25987":1,"25988":0,"25989":1,"25990":0,"25991":0,"25992":0,"25993":1,"25994":0,"25995":0,"25996":0,"25997":1,"25998":0,"25999":0,"26000":0,"26001":0,"26002":1,"26003":0,"26004":1,"26005":0,"26006":0,"26007":1,"26008":0,"26009":0,"26010":0,"26011":0,"26012":1,"26013":0,"26014":0,"26015":0,"26016":0,"26017":1,"26018":0,"26019":0,"26020":0,"26021":0,"26022":0,"26023":1,"26024":1,"26025":0,"26026":0,"26027":0,"26028":1,"26029":0,"26030":1,"26031":0,"26032":0,"26033":0,"26034":0,"26035":0,"26036":0,"26037":0,"26038":1,"26039":0,"26040":1,"26041":0,"26042":1,"26043":0,"26044":0,"26045":0,"26046":1,"26047":0,"26048":0,"26049":0,"26050":0,"26051":1,"26052":0,"26053":1,"26054":0,"26055":0,"26056":0,"26057":1,"26058":0,"26059":1,"26060":0,"26061":1,"26062":0,"26063":0,"26064":0,"26065":0,"26066":1,"26067":0,"26068":1,"26069":0,"26070":0,"26071":0,"26072":0,"26073":1,"26074":0,"26075":0,"26076":0,"26077":1,"26078":0,"26079":1,"26080":0,"26081":1,"26082":1,"26083":1,"26084":1,"26085":0,"26086":1,"26087":1,"26088":0,"26089":0,"26090":0,"26091":0,"26092":1,"26093":1,"26094":1,"26095":0,"26096":1,"26097":0,"26098":1,"26099":0,"26100":0,"26101":0,"26102":1,"26103":0,"26104":0,"26105":0,"26106":0,"26107":0,"26108":1,"26109":0,"26110":0,"26111":1,"26112":0,"26113":1,"26114":0,"26115":0,"26116":0,"26117":1,"26118":0,"26119":0,"26120":1,"26121":0,"26122":0,"26123":1,"26124":0,"26125":0,"26126":0,"26127":0,"26128":0,"26129":0,"26130":0,"26131":0,"26132":0,"26133":0,"26134":1,"26135":1,"26136":0,"26137":0,"26138":0,"26139":0,"26140":0,"26141":0,"26142":0,"26143":0,"26144":0,"26145":0,"26146":0,"26147":0,"26148":1,"26149":1,"26150":0,"26151":0,"26152":0,"26153":0,"26154":0,"26155":0,"26156":0,"26157":0,"26158":0,"26159":0,"26160":0,"26161":1,"26162":1,"26163":0,"26164":0,"26165":0,"26166":0,"26167":1,"26168":0,"26169":0,"26170":1,"26171":0,"26172":0,"26173":1,"26174":0,"26175":0,"26176":0,"26177":1,"26178":1,"26179":0,"26180":0,"26181":0,"26182":0,"26183":0,"26184":0,"26185":0,"26186":0,"26187":0,"26188":0,"26189":0,"26190":0,"26191":0,"26192":0,"26193":0,"26194":0,"26195":0,"26196":0,"26197":0,"26198":1,"26199":0,"26200":0,"26201":0,"26202":1,"26203":1,"26204":0,"26205":0,"26206":0,"26207":0,"26208":0,"26209":0,"26210":0,"26211":0,"26212":1,"26213":0,"26214":1,"26215":0,"26216":0,"26217":0,"26218":0,"26219":0,"26220":0,"26221":0,"26222":0,"26223":1,"26224":0,"26225":0,"26226":0,"26227":0,"26228":0,"26229":0,"26230":0,"26231":0,"26232":0,"26233":0,"26234":0,"26235":1,"26236":0,"26237":0,"26238":1,"26239":0,"26240":0,"26241":0,"26242":0,"26243":1,"26244":0,"26245":0,"26246":1,"26247":1,"26248":1,"26249":0,"26250":0,"26251":0,"26252":0,"26253":0,"26254":0,"26255":0,"26256":0,"26257":1,"26258":1,"26259":0,"26260":0,"26261":1,"26262":0,"26263":0,"26264":0,"26265":0,"26266":0,"26267":0,"26268":0,"26269":1,"26270":1,"26271":0,"26272":0,"26273":0,"26274":0,"26275":1,"26276":1,"26277":0,"26278":0,"26279":1,"26280":1,"26281":1,"26282":1,"26283":0,"26284":0,"26285":0,"26286":0,"26287":0,"26288":0,"26289":0,"26290":0,"26291":1,"26292":0,"26293":0,"26294":0,"26295":0,"26296":0,"26297":0,"26298":0,"26299":0,"26300":0,"26301":0,"26302":0,"26303":0,"26304":1,"26305":0,"26306":0,"26307":0,"26308":0,"26309":0,"26310":0,"26311":0,"26312":0,"26313":0,"26314":0,"26315":0,"26316":1,"26317":0,"26318":0,"26319":0,"26320":1,"26321":1,"26322":0,"26323":0,"26324":0,"26325":0,"26326":0,"26327":0,"26328":0,"26329":0,"26330":0,"26331":0,"26332":0,"26333":0,"26334":0,"26335":0,"26336":0,"26337":1,"26338":1,"26339":0,"26340":0,"26341":1,"26342":0,"26343":0,"26344":0,"26345":0,"26346":0,"26347":0,"26348":0,"26349":0,"26350":0,"26351":0,"26352":0,"26353":0,"26354":1,"26355":1,"26356":1,"26357":1,"26358":0,"26359":0,"26360":1,"26361":0,"26362":0,"26363":0,"26364":1,"26365":0,"26366":0,"26367":0,"26368":0,"26369":0,"26370":0,"26371":0,"26372":0,"26373":0,"26374":1,"26375":1,"26376":0,"26377":0,"26378":0,"26379":0,"26380":1,"26381":0,"26382":1,"26383":0,"26384":0,"26385":0,"26386":0,"26387":1,"26388":0,"26389":0,"26390":0,"26391":0,"26392":1,"26393":0,"26394":0,"26395":0,"26396":0,"26397":1,"26398":0,"26399":0,"26400":1,"26401":0,"26402":1,"26403":0,"26404":0,"26405":0,"26406":0,"26407":0,"26408":1,"26409":1,"26410":0,"26411":1,"26412":0,"26413":1,"26414":0,"26415":1,"26416":0,"26417":0,"26418":0,"26419":0,"26420":0,"26421":0,"26422":1,"26423":0,"26424":0,"26425":0,"26426":0,"26427":0,"26428":0,"26429":1,"26430":1,"26431":1,"26432":0,"26433":0,"26434":0,"26435":0,"26436":0,"26437":0,"26438":0,"26439":0,"26440":0,"26441":1,"26442":0,"26443":0,"26444":0,"26445":0,"26446":1,"26447":1,"26448":0,"26449":0,"26450":0,"26451":0,"26452":0,"26453":0,"26454":1,"26455":1,"26456":0,"26457":0,"26458":0,"26459":0,"26460":0,"26461":0,"26462":0,"26463":0,"26464":0,"26465":0,"26466":0,"26467":1,"26468":0,"26469":0,"26470":0,"26471":0,"26472":0,"26473":0,"26474":0,"26475":0,"26476":0,"26477":0,"26478":1,"26479":0,"26480":0,"26481":0,"26482":0,"26483":0,"26484":0,"26485":1,"26486":0,"26487":0,"26488":1,"26489":0,"26490":0,"26491":1,"26492":0,"26493":0,"26494":0,"26495":1,"26496":0,"26497":0,"26498":1,"26499":1,"26500":1,"26501":1,"26502":0,"26503":0,"26504":0,"26505":0,"26506":0,"26507":0,"26508":0,"26509":0,"26510":0,"26511":0,"26512":0,"26513":0,"26514":0,"26515":1,"26516":0,"26517":0,"26518":1,"26519":0,"26520":0,"26521":0,"26522":0,"26523":0,"26524":0,"26525":0,"26526":0,"26527":1,"26528":1,"26529":0,"26530":0,"26531":0,"26532":0,"26533":0,"26534":0,"26535":0,"26536":0,"26537":0,"26538":1,"26539":1,"26540":1,"26541":0,"26542":0,"26543":0,"26544":0,"26545":1,"26546":0,"26547":0,"26548":0,"26549":0,"26550":1,"26551":1,"26552":0,"26553":1,"26554":0,"26555":0,"26556":0,"26557":0,"26558":0,"26559":0,"26560":0,"26561":1,"26562":0,"26563":0,"26564":0,"26565":0,"26566":0,"26567":0,"26568":0,"26569":1,"26570":0,"26571":1,"26572":0,"26573":0,"26574":0,"26575":0,"26576":0,"26577":0,"26578":0,"26579":0,"26580":0,"26581":0,"26582":0,"26583":1,"26584":1,"26585":1,"26586":0,"26587":0,"26588":0,"26589":0,"26590":0,"26591":0,"26592":0,"26593":1,"26594":0,"26595":0,"26596":1,"26597":1,"26598":0,"26599":0,"26600":0,"26601":1,"26602":1,"26603":0,"26604":0,"26605":0,"26606":0,"26607":0,"26608":0,"26609":0,"26610":1,"26611":0,"26612":1,"26613":0,"26614":0,"26615":0,"26616":0,"26617":1,"26618":0,"26619":0,"26620":0,"26621":0,"26622":0,"26623":0,"26624":0,"26625":0,"26626":1,"26627":0,"26628":0,"26629":1,"26630":0,"26631":0,"26632":1,"26633":0,"26634":1,"26635":0,"26636":0,"26637":0,"26638":0,"26639":0,"26640":0,"26641":0,"26642":0,"26643":0,"26644":0,"26645":0,"26646":0,"26647":0,"26648":1,"26649":1,"26650":0,"26651":0,"26652":0,"26653":0,"26654":0,"26655":0,"26656":0,"26657":0,"26658":0,"26659":0,"26660":0,"26661":0,"26662":0,"26663":1,"26664":0,"26665":0,"26666":0,"26667":0,"26668":1,"26669":1,"26670":0,"26671":0,"26672":0,"26673":1,"26674":0,"26675":1,"26676":0,"26677":0,"26678":0,"26679":0,"26680":1,"26681":0,"26682":1,"26683":0,"26684":1,"26685":1,"26686":0,"26687":0,"26688":1,"26689":1,"26690":0,"26691":1,"26692":0,"26693":0,"26694":0,"26695":0,"26696":0,"26697":1,"26698":0,"26699":0,"26700":0,"26701":0,"26702":0,"26703":0,"26704":0,"26705":0,"26706":0,"26707":0,"26708":0,"26709":0,"26710":1,"26711":0,"26712":0,"26713":1,"26714":0,"26715":0,"26716":0,"26717":0,"26718":1,"26719":1,"26720":1,"26721":0,"26722":0,"26723":0,"26724":0,"26725":0,"26726":0,"26727":0,"26728":0,"26729":0,"26730":1,"26731":0,"26732":0,"26733":0,"26734":0,"26735":0,"26736":0,"26737":0,"26738":0,"26739":1,"26740":0,"26741":0,"26742":0,"26743":0,"26744":1,"26745":1,"26746":0,"26747":0,"26748":0,"26749":0,"26750":0,"26751":1,"26752":1,"26753":0,"26754":0,"26755":0,"26756":0,"26757":0,"26758":0,"26759":1,"26760":1,"26761":0,"26762":1,"26763":0,"26764":0,"26765":0,"26766":0,"26767":0,"26768":0,"26769":0,"26770":1,"26771":0,"26772":0,"26773":0,"26774":0,"26775":0,"26776":0,"26777":1,"26778":0,"26779":1,"26780":0,"26781":0,"26782":0,"26783":0,"26784":0,"26785":1,"26786":1,"26787":0,"26788":0,"26789":1,"26790":1,"26791":0,"26792":0,"26793":0,"26794":0,"26795":1,"26796":1,"26797":0,"26798":0,"26799":0,"26800":0,"26801":1,"26802":0,"26803":0,"26804":0,"26805":0,"26806":0,"26807":1,"26808":0,"26809":0,"26810":0,"26811":0,"26812":0,"26813":0,"26814":0,"26815":1,"26816":0,"26817":0,"26818":0,"26819":0,"26820":0,"26821":0,"26822":0,"26823":1,"26824":1,"26825":0,"26826":0,"26827":1,"26828":0,"26829":0,"26830":0,"26831":1,"26832":1,"26833":0,"26834":0,"26835":0,"26836":0,"26837":0,"26838":0,"26839":0,"26840":1,"26841":0,"26842":0,"26843":0,"26844":0,"26845":0,"26846":0,"26847":1,"26848":0,"26849":0,"26850":0,"26851":1,"26852":1,"26853":0,"26854":0,"26855":0,"26856":1,"26857":0,"26858":1,"26859":0,"26860":1,"26861":0,"26862":0,"26863":0,"26864":1,"26865":0,"26866":1,"26867":0,"26868":0,"26869":1,"26870":0,"26871":0,"26872":0,"26873":0,"26874":0,"26875":0,"26876":1,"26877":0,"26878":1,"26879":0,"26880":0,"26881":0,"26882":0,"26883":1,"26884":0,"26885":0,"26886":0,"26887":0,"26888":0,"26889":0,"26890":1,"26891":0,"26892":0,"26893":0,"26894":0,"26895":1,"26896":0,"26897":0,"26898":0,"26899":0,"26900":0,"26901":1,"26902":0,"26903":1,"26904":0,"26905":1,"26906":0,"26907":1,"26908":0,"26909":0,"26910":0,"26911":0,"26912":0,"26913":0,"26914":0,"26915":0,"26916":0,"26917":0,"26918":0,"26919":0,"26920":0,"26921":0,"26922":0,"26923":1,"26924":1,"26925":0,"26926":0,"26927":1,"26928":1,"26929":0,"26930":1,"26931":0,"26932":0,"26933":1,"26934":0,"26935":0,"26936":0,"26937":0,"26938":0,"26939":0,"26940":0,"26941":1,"26942":0,"26943":1,"26944":1,"26945":0,"26946":0,"26947":0,"26948":1,"26949":1,"26950":0,"26951":0,"26952":0,"26953":0,"26954":0,"26955":0,"26956":0,"26957":0,"26958":0,"26959":1,"26960":1,"26961":1,"26962":0,"26963":0,"26964":0,"26965":0,"26966":1,"26967":0,"26968":0,"26969":0,"26970":0,"26971":0,"26972":0,"26973":0,"26974":0,"26975":0,"26976":0,"26977":0,"26978":1,"26979":0,"26980":1,"26981":0,"26982":1,"26983":0,"26984":0,"26985":0,"26986":1,"26987":0,"26988":0,"26989":0,"26990":0,"26991":1,"26992":0,"26993":0,"26994":0,"26995":1,"26996":0,"26997":0,"26998":0,"26999":0,"27000":0,"27001":0,"27002":0,"27003":1,"27004":0,"27005":0,"27006":1,"27007":0,"27008":0,"27009":0,"27010":0,"27011":0,"27012":1,"27013":1,"27014":0,"27015":0,"27016":1,"27017":0,"27018":0,"27019":0,"27020":0,"27021":0,"27022":0,"27023":1,"27024":0,"27025":0,"27026":0,"27027":0,"27028":0,"27029":1,"27030":1,"27031":1,"27032":0,"27033":0,"27034":1,"27035":0,"27036":0,"27037":1,"27038":0,"27039":0,"27040":0,"27041":0,"27042":1,"27043":1,"27044":0,"27045":0,"27046":1,"27047":0,"27048":0,"27049":0,"27050":0,"27051":1,"27052":0,"27053":0,"27054":0,"27055":0,"27056":0,"27057":0,"27058":0,"27059":0,"27060":0,"27061":1,"27062":0,"27063":1,"27064":0,"27065":1,"27066":0,"27067":1,"27068":0,"27069":0,"27070":0,"27071":1,"27072":0,"27073":0,"27074":1,"27075":0,"27076":0,"27077":0,"27078":1,"27079":0,"27080":0,"27081":0,"27082":0,"27083":1,"27084":1,"27085":0,"27086":1,"27087":0,"27088":1,"27089":0,"27090":0,"27091":0,"27092":0,"27093":1,"27094":1,"27095":1,"27096":0,"27097":0,"27098":1,"27099":0,"27100":0,"27101":1,"27102":0,"27103":1,"27104":0,"27105":0,"27106":0,"27107":0,"27108":0,"27109":1,"27110":1,"27111":0,"27112":0,"27113":0,"27114":1,"27115":1,"27116":0,"27117":0,"27118":1,"27119":1,"27120":0,"27121":0,"27122":0,"27123":0,"27124":0,"27125":0,"27126":0,"27127":0,"27128":0,"27129":0,"27130":0,"27131":0,"27132":1,"27133":0,"27134":1,"27135":0,"27136":0,"27137":1,"27138":0,"27139":1,"27140":0,"27141":0,"27142":0,"27143":0,"27144":0,"27145":0,"27146":0,"27147":0,"27148":0,"27149":0,"27150":0,"27151":0,"27152":1,"27153":0,"27154":1,"27155":0,"27156":0,"27157":0,"27158":1,"27159":0,"27160":0,"27161":0,"27162":0,"27163":0,"27164":0,"27165":0,"27166":0,"27167":1,"27168":0,"27169":1,"27170":0,"27171":1,"27172":1,"27173":0,"27174":0,"27175":0,"27176":1,"27177":0,"27178":1,"27179":0,"27180":0,"27181":0,"27182":0,"27183":0,"27184":0,"27185":1,"27186":0,"27187":0,"27188":0,"27189":1,"27190":1,"27191":1,"27192":0,"27193":0,"27194":0,"27195":1,"27196":0,"27197":0,"27198":1,"27199":0,"27200":0,"27201":0,"27202":0,"27203":0,"27204":0,"27205":0,"27206":0,"27207":1,"27208":1,"27209":0,"27210":0,"27211":0,"27212":0,"27213":1,"27214":0,"27215":0,"27216":1,"27217":0,"27218":1,"27219":0,"27220":1,"27221":1,"27222":0,"27223":0,"27224":0,"27225":0,"27226":1,"27227":1,"27228":0,"27229":0,"27230":0,"27231":0,"27232":1,"27233":0,"27234":0,"27235":0,"27236":0,"27237":0,"27238":0,"27239":1,"27240":0,"27241":1,"27242":1,"27243":0,"27244":1,"27245":1,"27246":1,"27247":0,"27248":0,"27249":0,"27250":0,"27251":0,"27252":0,"27253":0,"27254":1,"27255":0,"27256":0,"27257":0,"27258":0,"27259":0,"27260":1,"27261":0,"27262":0,"27263":0,"27264":1,"27265":0,"27266":0,"27267":0,"27268":0,"27269":0,"27270":0,"27271":0,"27272":1,"27273":1,"27274":0,"27275":0,"27276":0,"27277":0,"27278":1,"27279":0,"27280":0,"27281":0,"27282":1,"27283":0,"27284":0,"27285":1,"27286":1,"27287":0,"27288":0,"27289":0,"27290":0,"27291":0,"27292":0,"27293":0,"27294":0,"27295":1,"27296":0,"27297":0,"27298":0,"27299":0,"27300":0,"27301":1,"27302":0,"27303":0,"27304":0,"27305":0,"27306":1,"27307":0,"27308":0,"27309":1,"27310":0,"27311":0,"27312":0,"27313":1,"27314":1,"27315":1,"27316":0,"27317":0,"27318":0,"27319":0,"27320":0,"27321":0,"27322":1,"27323":0,"27324":0,"27325":0,"27326":0,"27327":1,"27328":0,"27329":0,"27330":0,"27331":0,"27332":0,"27333":0,"27334":0,"27335":1,"27336":1,"27337":0,"27338":1,"27339":0,"27340":1,"27341":0,"27342":0,"27343":0,"27344":0,"27345":0,"27346":1,"27347":1,"27348":0,"27349":0,"27350":0,"27351":0,"27352":0,"27353":0,"27354":0,"27355":1,"27356":1,"27357":0,"27358":0,"27359":0,"27360":1,"27361":0,"27362":1,"27363":0,"27364":0,"27365":0,"27366":0,"27367":0,"27368":0,"27369":0,"27370":1,"27371":0,"27372":1,"27373":1,"27374":0,"27375":0,"27376":1,"27377":0,"27378":1,"27379":0,"27380":0,"27381":0,"27382":0,"27383":1,"27384":0,"27385":0,"27386":0,"27387":1,"27388":0,"27389":0,"27390":0,"27391":0,"27392":0,"27393":0,"27394":0,"27395":0,"27396":1,"27397":0,"27398":0,"27399":0,"27400":0,"27401":0,"27402":0,"27403":0,"27404":0,"27405":1,"27406":0,"27407":1,"27408":0,"27409":0,"27410":0,"27411":0,"27412":0,"27413":0,"27414":0,"27415":0,"27416":0,"27417":1,"27418":1,"27419":0,"27420":0,"27421":0,"27422":1,"27423":0,"27424":0,"27425":0,"27426":0,"27427":0,"27428":0,"27429":1,"27430":0,"27431":0,"27432":1,"27433":0,"27434":0,"27435":0,"27436":0,"27437":0,"27438":0,"27439":0,"27440":1,"27441":1,"27442":1,"27443":0,"27444":0,"27445":1,"27446":0,"27447":0,"27448":0,"27449":0,"27450":0,"27451":0,"27452":0,"27453":0,"27454":0,"27455":0,"27456":1,"27457":0,"27458":0,"27459":1,"27460":0,"27461":0,"27462":1,"27463":1,"27464":0,"27465":0,"27466":0,"27467":0,"27468":0,"27469":0,"27470":0,"27471":0,"27472":0,"27473":0,"27474":0,"27475":0,"27476":0,"27477":0,"27478":0,"27479":0,"27480":1,"27481":1,"27482":1,"27483":1,"27484":1,"27485":0,"27486":0,"27487":0,"27488":0,"27489":0,"27490":1,"27491":0,"27492":1,"27493":1,"27494":0,"27495":0,"27496":0,"27497":1,"27498":0,"27499":1,"27500":0,"27501":0,"27502":0,"27503":0,"27504":0,"27505":0,"27506":0,"27507":0,"27508":0,"27509":1,"27510":0,"27511":0,"27512":0,"27513":0,"27514":1,"27515":0,"27516":0,"27517":0,"27518":0,"27519":0,"27520":0,"27521":0,"27522":1,"27523":0,"27524":0,"27525":0,"27526":0,"27527":1,"27528":1,"27529":0,"27530":1,"27531":1,"27532":0,"27533":0,"27534":0,"27535":1,"27536":0,"27537":1,"27538":1,"27539":0,"27540":1,"27541":0,"27542":0,"27543":1,"27544":0,"27545":1,"27546":0,"27547":1,"27548":1,"27549":1,"27550":0,"27551":0,"27552":1,"27553":0,"27554":1,"27555":0,"27556":1,"27557":0,"27558":0,"27559":1,"27560":0,"27561":1,"27562":0,"27563":0,"27564":0,"27565":0,"27566":0,"27567":1,"27568":0,"27569":0,"27570":1,"27571":1,"27572":0,"27573":0,"27574":0,"27575":1,"27576":0,"27577":1,"27578":0,"27579":1,"27580":0,"27581":1,"27582":0,"27583":1,"27584":0,"27585":0,"27586":0,"27587":0,"27588":1,"27589":0,"27590":0,"27591":1,"27592":0,"27593":1,"27594":0,"27595":0,"27596":0,"27597":1,"27598":0,"27599":0,"27600":0,"27601":1,"27602":0,"27603":0,"27604":0,"27605":1,"27606":0,"27607":0,"27608":0,"27609":0,"27610":0,"27611":0,"27612":0,"27613":0,"27614":0,"27615":0,"27616":0,"27617":0,"27618":0,"27619":0,"27620":0,"27621":1,"27622":0,"27623":1,"27624":0,"27625":0,"27626":0,"27627":1,"27628":0,"27629":0,"27630":0,"27631":0,"27632":0,"27633":1,"27634":0,"27635":1,"27636":0,"27637":0,"27638":0,"27639":0,"27640":0,"27641":1,"27642":0,"27643":0,"27644":0,"27645":0,"27646":0,"27647":1,"27648":0,"27649":0,"27650":0,"27651":0,"27652":0,"27653":0,"27654":1,"27655":0,"27656":0,"27657":0,"27658":0,"27659":1,"27660":0,"27661":0,"27662":0,"27663":0,"27664":1,"27665":0,"27666":0,"27667":1,"27668":0,"27669":0,"27670":1,"27671":0,"27672":0,"27673":1,"27674":1,"27675":1,"27676":1,"27677":0,"27678":0,"27679":0,"27680":0,"27681":0,"27682":0,"27683":1,"27684":0,"27685":0,"27686":0,"27687":0,"27688":1,"27689":0,"27690":0,"27691":0,"27692":0,"27693":0,"27694":1,"27695":0,"27696":0,"27697":0,"27698":0,"27699":0,"27700":0,"27701":0,"27702":0,"27703":0,"27704":1,"27705":0,"27706":0,"27707":0,"27708":0,"27709":0,"27710":0,"27711":0,"27712":0,"27713":1,"27714":1,"27715":0,"27716":0,"27717":0,"27718":0,"27719":1,"27720":0,"27721":0,"27722":0,"27723":0,"27724":0,"27725":1,"27726":0,"27727":0,"27728":0,"27729":1,"27730":1,"27731":1,"27732":0,"27733":1,"27734":0,"27735":0,"27736":0,"27737":0,"27738":1,"27739":0,"27740":0,"27741":0,"27742":1,"27743":1,"27744":0,"27745":0,"27746":0,"27747":0,"27748":0,"27749":1,"27750":0,"27751":1,"27752":0,"27753":0,"27754":1,"27755":1,"27756":1,"27757":1,"27758":0,"27759":1,"27760":1,"27761":0,"27762":1,"27763":1,"27764":0,"27765":0,"27766":1,"27767":0,"27768":0,"27769":1,"27770":0,"27771":0,"27772":0,"27773":1,"27774":0,"27775":1,"27776":0,"27777":0,"27778":0,"27779":0,"27780":0,"27781":0,"27782":0,"27783":0,"27784":1,"27785":0,"27786":0,"27787":1,"27788":0,"27789":1,"27790":0,"27791":0,"27792":0,"27793":1,"27794":0,"27795":1,"27796":0,"27797":0,"27798":0,"27799":1,"27800":0,"27801":0,"27802":0,"27803":0,"27804":0,"27805":1,"27806":0,"27807":0,"27808":1,"27809":0,"27810":0,"27811":1,"27812":0,"27813":0,"27814":1,"27815":0,"27816":0,"27817":0,"27818":0,"27819":0,"27820":0,"27821":0,"27822":1,"27823":0,"27824":0,"27825":0,"27826":0,"27827":0,"27828":1,"27829":0,"27830":0,"27831":0,"27832":0,"27833":0,"27834":0,"27835":0,"27836":0,"27837":1,"27838":0,"27839":0,"27840":0,"27841":0,"27842":0,"27843":1,"27844":0,"27845":0,"27846":0,"27847":1,"27848":0,"27849":0,"27850":1,"27851":0,"27852":0,"27853":0,"27854":0,"27855":0,"27856":0,"27857":1,"27858":1,"27859":0,"27860":0,"27861":0,"27862":1,"27863":0,"27864":0,"27865":0,"27866":0,"27867":0,"27868":0,"27869":0,"27870":0,"27871":0,"27872":1,"27873":1,"27874":0,"27875":0,"27876":0,"27877":0,"27878":0,"27879":0,"27880":1,"27881":1,"27882":0,"27883":0,"27884":1,"27885":1,"27886":0,"27887":1,"27888":0,"27889":0,"27890":0,"27891":0,"27892":0,"27893":0,"27894":0,"27895":0,"27896":0,"27897":0,"27898":0,"27899":0,"27900":0,"27901":0,"27902":0,"27903":0,"27904":0,"27905":0,"27906":0,"27907":0,"27908":0,"27909":0,"27910":0,"27911":0,"27912":0,"27913":0,"27914":0,"27915":0,"27916":1,"27917":0,"27918":1,"27919":1,"27920":0,"27921":0,"27922":1,"27923":1,"27924":0,"27925":0,"27926":0,"27927":1,"27928":0,"27929":0,"27930":0,"27931":1,"27932":0,"27933":0,"27934":1,"27935":0,"27936":0,"27937":0,"27938":0,"27939":0,"27940":0,"27941":1,"27942":0,"27943":1,"27944":0,"27945":0,"27946":0,"27947":0,"27948":1,"27949":0,"27950":0,"27951":0,"27952":1,"27953":0,"27954":0,"27955":0,"27956":0,"27957":0,"27958":0,"27959":0,"27960":1,"27961":0,"27962":0,"27963":1,"27964":1,"27965":1,"27966":0,"27967":0,"27968":0,"27969":0,"27970":0,"27971":1,"27972":0,"27973":0,"27974":0,"27975":0,"27976":1,"27977":0,"27978":0,"27979":0,"27980":1,"27981":1,"27982":0,"27983":1,"27984":1,"27985":0,"27986":1,"27987":0,"27988":0,"27989":1,"27990":0,"27991":0,"27992":1,"27993":0,"27994":1,"27995":0,"27996":0,"27997":0,"27998":1,"27999":0,"28000":0,"28001":0,"28002":1,"28003":0,"28004":0,"28005":0,"28006":0,"28007":0,"28008":0,"28009":0,"28010":0,"28011":1,"28012":1,"28013":1,"28014":0,"28015":0,"28016":0,"28017":0,"28018":0,"28019":0,"28020":0,"28021":1,"28022":0,"28023":0,"28024":0,"28025":0,"28026":0,"28027":0,"28028":0,"28029":1,"28030":0,"28031":0,"28032":1,"28033":0,"28034":0,"28035":0,"28036":0,"28037":0,"28038":1,"28039":0,"28040":0,"28041":0,"28042":0,"28043":0,"28044":0,"28045":0,"28046":0,"28047":1,"28048":0,"28049":0,"28050":0,"28051":0,"28052":1,"28053":1,"28054":1,"28055":0,"28056":1,"28057":0,"28058":1,"28059":0,"28060":0,"28061":1,"28062":0,"28063":0,"28064":0,"28065":0,"28066":1,"28067":0,"28068":0,"28069":1,"28070":1,"28071":1,"28072":0,"28073":0,"28074":0,"28075":0,"28076":0,"28077":0,"28078":0,"28079":0,"28080":0,"28081":0,"28082":0,"28083":0,"28084":0,"28085":0,"28086":0,"28087":0,"28088":0,"28089":1,"28090":1,"28091":0,"28092":0,"28093":1,"28094":1,"28095":1,"28096":0,"28097":1,"28098":1,"28099":1,"28100":1,"28101":0,"28102":1,"28103":0,"28104":0,"28105":0,"28106":1,"28107":1,"28108":0,"28109":0,"28110":1,"28111":1,"28112":1,"28113":1,"28114":0,"28115":0,"28116":0,"28117":0,"28118":0,"28119":1,"28120":0,"28121":0,"28122":0,"28123":0,"28124":1,"28125":1,"28126":1,"28127":0,"28128":0,"28129":1,"28130":0,"28131":1,"28132":0,"28133":0,"28134":0,"28135":0,"28136":0,"28137":0,"28138":0,"28139":0,"28140":1,"28141":1,"28142":0,"28143":0,"28144":1,"28145":0,"28146":0,"28147":0,"28148":1,"28149":0,"28150":1,"28151":0,"28152":0,"28153":1,"28154":0,"28155":1,"28156":1,"28157":0,"28158":1,"28159":1,"28160":0,"28161":0,"28162":1,"28163":1,"28164":0,"28165":0,"28166":1,"28167":0,"28168":0,"28169":0,"28170":0,"28171":0,"28172":0,"28173":0,"28174":0,"28175":0,"28176":1,"28177":1,"28178":0,"28179":0,"28180":0,"28181":0,"28182":0,"28183":0,"28184":0,"28185":0,"28186":0,"28187":1,"28188":0,"28189":1,"28190":1,"28191":0,"28192":1,"28193":0,"28194":1,"28195":0,"28196":0,"28197":0,"28198":0,"28199":1,"28200":0,"28201":0,"28202":1,"28203":0,"28204":0,"28205":1,"28206":0,"28207":0,"28208":0,"28209":0,"28210":0,"28211":0,"28212":0,"28213":1,"28214":1,"28215":0,"28216":0,"28217":0,"28218":0,"28219":0,"28220":0,"28221":0,"28222":0,"28223":0,"28224":1,"28225":0,"28226":0,"28227":0,"28228":0,"28229":1,"28230":0,"28231":0,"28232":0,"28233":0,"28234":0,"28235":0,"28236":0,"28237":0,"28238":0,"28239":0,"28240":0,"28241":0,"28242":0,"28243":0,"28244":0,"28245":1,"28246":0,"28247":0,"28248":0,"28249":1,"28250":0,"28251":1,"28252":0,"28253":0,"28254":0,"28255":0,"28256":0,"28257":1,"28258":1,"28259":0,"28260":0,"28261":0,"28262":1,"28263":0,"28264":0,"28265":0,"28266":0,"28267":0,"28268":0,"28269":0,"28270":0,"28271":0,"28272":0,"28273":0,"28274":0,"28275":0,"28276":0,"28277":1,"28278":0,"28279":0,"28280":0,"28281":1,"28282":0,"28283":0,"28284":0,"28285":0,"28286":0,"28287":0,"28288":0,"28289":0,"28290":0,"28291":0,"28292":1,"28293":0,"28294":1,"28295":0,"28296":0,"28297":1,"28298":0,"28299":0,"28300":0,"28301":0,"28302":0,"28303":0,"28304":1,"28305":0,"28306":0,"28307":0,"28308":0,"28309":0,"28310":0,"28311":0,"28312":0,"28313":0,"28314":0,"28315":0,"28316":1,"28317":1,"28318":1,"28319":0,"28320":0,"28321":1,"28322":0,"28323":1,"28324":0,"28325":0,"28326":0,"28327":0,"28328":1,"28329":0,"28330":0,"28331":0,"28332":0,"28333":0,"28334":0,"28335":1,"28336":0,"28337":0,"28338":1,"28339":0,"28340":0,"28341":0,"28342":0,"28343":1,"28344":0,"28345":1,"28346":0,"28347":0,"28348":0,"28349":0,"28350":0,"28351":1,"28352":1,"28353":0,"28354":0,"28355":0,"28356":1,"28357":1,"28358":0,"28359":0,"28360":0,"28361":0,"28362":0,"28363":0,"28364":0,"28365":0,"28366":0,"28367":0,"28368":0,"28369":0,"28370":1,"28371":0,"28372":0,"28373":0,"28374":1,"28375":0,"28376":0,"28377":0,"28378":0,"28379":1,"28380":0,"28381":0,"28382":0,"28383":1,"28384":0,"28385":1,"28386":0,"28387":0,"28388":1,"28389":0,"28390":0,"28391":0,"28392":0,"28393":0,"28394":0,"28395":0,"28396":0,"28397":0,"28398":0,"28399":0,"28400":0,"28401":0,"28402":0,"28403":0,"28404":1,"28405":0,"28406":0,"28407":0,"28408":1,"28409":0,"28410":0,"28411":1,"28412":0,"28413":1,"28414":0,"28415":1,"28416":0,"28417":0,"28418":0,"28419":0,"28420":0,"28421":0,"28422":0,"28423":1,"28424":0,"28425":0,"28426":0,"28427":0,"28428":1,"28429":0,"28430":0,"28431":0,"28432":0,"28433":0,"28434":1,"28435":0,"28436":0,"28437":0,"28438":0,"28439":0,"28440":0,"28441":1,"28442":0,"28443":0,"28444":1,"28445":0,"28446":1,"28447":1,"28448":0,"28449":0,"28450":1,"28451":1,"28452":0,"28453":1,"28454":0,"28455":0,"28456":1,"28457":1,"28458":0,"28459":1,"28460":0,"28461":0,"28462":0,"28463":0,"28464":0,"28465":0,"28466":0,"28467":0,"28468":0,"28469":0,"28470":0,"28471":0,"28472":1,"28473":0,"28474":0,"28475":1,"28476":0,"28477":1,"28478":0,"28479":0,"28480":1,"28481":0,"28482":0,"28483":0,"28484":0,"28485":1,"28486":0,"28487":0,"28488":1,"28489":0,"28490":0,"28491":1,"28492":0,"28493":1,"28494":1,"28495":0,"28496":0,"28497":0,"28498":1,"28499":0,"28500":0,"28501":0,"28502":1,"28503":0,"28504":0,"28505":0,"28506":0,"28507":0,"28508":1,"28509":0,"28510":0,"28511":0,"28512":0,"28513":1,"28514":0,"28515":0,"28516":0,"28517":0,"28518":0,"28519":1,"28520":0,"28521":0,"28522":0,"28523":0,"28524":0,"28525":0,"28526":0,"28527":0,"28528":1,"28529":0,"28530":0,"28531":0,"28532":1,"28533":0,"28534":1,"28535":0,"28536":0,"28537":0,"28538":0,"28539":0,"28540":1,"28541":0,"28542":0,"28543":0,"28544":0,"28545":0,"28546":0,"28547":0,"28548":0,"28549":0,"28550":0,"28551":1,"28552":1,"28553":0,"28554":0,"28555":0,"28556":0,"28557":0,"28558":0,"28559":0,"28560":0,"28561":0,"28562":1,"28563":0,"28564":1,"28565":0,"28566":0,"28567":0,"28568":0,"28569":1,"28570":0,"28571":0,"28572":0,"28573":1,"28574":1,"28575":0,"28576":0,"28577":1,"28578":0,"28579":0,"28580":0,"28581":1,"28582":0,"28583":0,"28584":1,"28585":0,"28586":1,"28587":0,"28588":1,"28589":0,"28590":0,"28591":0,"28592":0,"28593":0,"28594":0,"28595":0,"28596":0,"28597":0,"28598":1,"28599":0,"28600":0,"28601":0,"28602":0,"28603":0,"28604":1,"28605":0,"28606":1,"28607":0,"28608":1,"28609":1,"28610":0,"28611":0,"28612":0,"28613":1,"28614":0,"28615":0,"28616":0,"28617":0,"28618":0,"28619":1,"28620":1,"28621":0,"28622":0,"28623":0,"28624":0,"28625":1,"28626":0,"28627":0,"28628":0,"28629":1,"28630":1,"28631":0,"28632":0,"28633":0,"28634":0,"28635":0,"28636":0,"28637":0,"28638":1,"28639":0,"28640":0,"28641":0,"28642":1,"28643":0,"28644":1,"28645":0,"28646":0,"28647":0,"28648":0,"28649":0,"28650":1,"28651":0,"28652":1,"28653":0,"28654":0,"28655":0,"28656":0,"28657":0,"28658":1,"28659":0,"28660":1,"28661":0,"28662":0,"28663":0,"28664":0,"28665":0,"28666":0,"28667":0,"28668":0,"28669":1,"28670":1,"28671":0,"28672":1,"28673":0,"28674":1,"28675":0,"28676":1,"28677":0,"28678":0,"28679":0,"28680":0,"28681":0,"28682":0,"28683":1,"28684":0,"28685":0,"28686":0,"28687":0,"28688":1,"28689":0,"28690":0,"28691":0,"28692":1,"28693":0,"28694":0,"28695":0,"28696":1,"28697":0,"28698":0,"28699":0,"28700":0,"28701":1,"28702":0,"28703":0,"28704":0,"28705":0,"28706":0,"28707":1,"28708":0,"28709":1,"28710":0,"28711":0,"28712":0,"28713":0,"28714":0,"28715":0,"28716":0,"28717":0,"28718":1,"28719":1,"28720":0,"28721":0,"28722":0,"28723":0,"28724":0,"28725":0,"28726":1,"28727":0,"28728":0,"28729":1,"28730":0,"28731":0,"28732":1,"28733":0,"28734":0,"28735":0,"28736":1,"28737":0,"28738":0,"28739":0,"28740":0,"28741":0,"28742":1,"28743":0,"28744":1,"28745":0,"28746":0,"28747":0,"28748":0,"28749":0,"28750":0,"28751":0,"28752":0,"28753":0,"28754":0,"28755":1,"28756":0,"28757":1,"28758":1,"28759":0,"28760":0,"28761":1,"28762":0,"28763":0,"28764":0,"28765":0,"28766":0,"28767":0,"28768":1,"28769":0,"28770":1,"28771":0,"28772":0,"28773":1,"28774":0,"28775":0,"28776":0,"28777":0,"28778":1,"28779":0,"28780":0,"28781":0,"28782":0,"28783":0,"28784":1,"28785":0,"28786":0,"28787":0,"28788":0,"28789":0,"28790":0,"28791":0,"28792":0,"28793":1,"28794":1,"28795":1,"28796":0,"28797":1,"28798":0,"28799":1,"28800":0,"28801":0,"28802":0,"28803":0,"28804":0,"28805":1,"28806":1,"28807":1,"28808":0,"28809":0,"28810":1,"28811":0,"28812":0,"28813":0,"28814":0,"28815":0,"28816":0,"28817":1,"28818":1,"28819":0,"28820":0,"28821":0,"28822":0,"28823":0,"28824":0,"28825":0,"28826":0,"28827":0,"28828":0,"28829":0,"28830":0,"28831":1,"28832":0,"28833":1,"28834":0,"28835":0,"28836":1,"28837":1,"28838":0,"28839":0,"28840":0,"28841":1,"28842":0,"28843":1,"28844":0,"28845":0,"28846":1,"28847":0,"28848":0,"28849":1,"28850":0,"28851":0,"28852":0,"28853":0,"28854":0,"28855":0,"28856":1,"28857":0,"28858":0,"28859":0,"28860":0,"28861":0,"28862":0,"28863":0,"28864":0,"28865":1,"28866":1,"28867":0,"28868":1,"28869":0,"28870":0,"28871":0,"28872":0,"28873":0,"28874":1,"28875":0,"28876":0,"28877":0,"28878":0,"28879":0,"28880":0,"28881":0,"28882":1,"28883":0,"28884":0,"28885":0,"28886":0,"28887":0,"28888":0,"28889":0,"28890":0,"28891":0,"28892":0,"28893":0,"28894":1,"28895":0,"28896":1,"28897":0,"28898":0,"28899":0,"28900":0,"28901":1,"28902":0,"28903":0,"28904":0,"28905":1,"28906":0,"28907":0,"28908":1,"28909":0,"28910":1,"28911":0,"28912":0,"28913":0,"28914":0,"28915":0,"28916":0,"28917":0,"28918":0,"28919":0,"28920":0,"28921":0,"28922":0,"28923":1,"28924":1,"28925":0,"28926":0,"28927":0,"28928":0,"28929":0,"28930":1,"28931":0,"28932":0,"28933":0,"28934":0,"28935":1,"28936":0,"28937":0,"28938":0,"28939":1,"28940":0,"28941":1,"28942":0,"28943":0,"28944":0,"28945":0,"28946":0,"28947":1,"28948":0,"28949":1,"28950":0,"28951":0,"28952":0,"28953":0,"28954":0,"28955":1,"28956":1,"28957":0,"28958":0,"28959":0,"28960":0,"28961":0,"28962":0,"28963":0,"28964":0,"28965":0,"28966":0,"28967":0,"28968":1,"28969":0,"28970":1,"28971":0,"28972":0,"28973":0,"28974":0,"28975":0,"28976":0,"28977":1,"28978":1,"28979":1,"28980":0,"28981":0,"28982":1,"28983":0,"28984":0,"28985":0,"28986":0,"28987":0,"28988":1,"28989":1,"28990":0,"28991":0,"28992":0,"28993":0,"28994":0,"28995":0,"28996":0,"28997":1,"28998":0,"28999":0,"29000":0,"29001":1,"29002":0,"29003":0,"29004":0,"29005":1,"29006":0,"29007":0,"29008":0,"29009":0,"29010":0,"29011":1,"29012":0,"29013":1,"29014":0,"29015":1,"29016":0,"29017":0,"29018":0,"29019":0,"29020":0,"29021":0,"29022":0,"29023":0,"29024":1,"29025":0,"29026":0,"29027":0,"29028":0,"29029":0,"29030":0,"29031":0,"29032":0,"29033":0,"29034":0,"29035":0,"29036":0,"29037":0,"29038":0,"29039":1,"29040":0,"29041":0,"29042":0,"29043":0,"29044":0,"29045":0,"29046":0,"29047":0,"29048":1,"29049":0,"29050":0,"29051":0,"29052":1,"29053":1,"29054":0,"29055":1,"29056":0,"29057":0,"29058":0,"29059":0,"29060":1,"29061":0,"29062":0,"29063":1,"29064":0,"29065":0,"29066":0,"29067":0,"29068":0,"29069":0,"29070":1,"29071":0,"29072":1,"29073":1,"29074":0,"29075":1,"29076":0,"29077":0,"29078":0,"29079":1,"29080":1,"29081":0,"29082":1,"29083":0,"29084":0,"29085":1,"29086":1,"29087":1,"29088":0,"29089":0,"29090":0,"29091":0,"29092":0,"29093":1,"29094":0,"29095":0,"29096":0,"29097":0,"29098":0,"29099":1,"29100":0,"29101":0,"29102":0,"29103":0,"29104":0,"29105":0,"29106":1,"29107":1,"29108":0,"29109":0,"29110":0,"29111":1,"29112":1,"29113":1,"29114":0,"29115":0,"29116":0,"29117":0,"29118":0,"29119":1,"29120":0,"29121":0,"29122":0,"29123":0,"29124":1,"29125":1,"29126":0,"29127":0,"29128":0,"29129":0,"29130":1,"29131":0,"29132":0,"29133":0,"29134":0,"29135":0,"29136":0,"29137":1,"29138":0,"29139":0,"29140":0,"29141":0,"29142":0,"29143":0,"29144":0,"29145":0,"29146":0,"29147":0,"29148":0,"29149":0,"29150":0,"29151":0,"29152":1,"29153":0,"29154":0,"29155":1,"29156":1,"29157":0,"29158":0,"29159":0,"29160":0,"29161":0,"29162":1,"29163":0,"29164":0,"29165":0,"29166":0,"29167":0,"29168":0,"29169":0,"29170":0,"29171":0,"29172":0,"29173":0,"29174":0,"29175":1,"29176":0,"29177":0,"29178":0,"29179":0,"29180":0,"29181":1,"29182":0,"29183":0,"29184":0,"29185":0,"29186":0,"29187":0,"29188":0,"29189":0,"29190":0,"29191":1,"29192":1,"29193":1,"29194":0,"29195":0,"29196":1,"29197":0,"29198":0,"29199":0,"29200":1,"29201":1,"29202":0,"29203":0,"29204":0,"29205":1,"29206":0,"29207":0,"29208":0,"29209":0,"29210":1,"29211":0,"29212":0,"29213":0,"29214":0,"29215":0,"29216":1,"29217":0,"29218":0,"29219":0,"29220":0,"29221":0,"29222":1,"29223":0,"29224":0,"29225":0,"29226":1,"29227":0,"29228":0,"29229":0,"29230":0,"29231":0,"29232":0,"29233":0,"29234":0,"29235":0,"29236":0,"29237":0,"29238":0,"29239":1,"29240":0,"29241":1,"29242":0,"29243":1,"29244":0,"29245":0,"29246":0,"29247":0,"29248":0,"29249":1,"29250":0,"29251":0,"29252":1,"29253":0,"29254":1,"29255":0,"29256":0,"29257":0,"29258":0,"29259":0,"29260":0,"29261":0,"29262":0,"29263":0,"29264":0,"29265":0,"29266":0,"29267":1,"29268":0,"29269":0,"29270":1,"29271":0,"29272":1,"29273":0,"29274":1,"29275":0,"29276":0,"29277":0,"29278":0,"29279":0,"29280":1,"29281":0,"29282":0,"29283":0,"29284":0,"29285":0,"29286":0,"29287":1,"29288":0,"29289":0,"29290":0,"29291":1,"29292":0,"29293":0,"29294":0,"29295":0,"29296":0,"29297":0,"29298":0,"29299":1,"29300":0,"29301":0,"29302":0,"29303":0,"29304":0,"29305":1,"29306":0,"29307":0,"29308":0,"29309":0,"29310":0,"29311":0,"29312":0,"29313":0,"29314":0,"29315":0,"29316":0,"29317":1,"29318":0,"29319":0,"29320":1,"29321":0,"29322":1,"29323":1,"29324":0,"29325":0,"29326":1,"29327":1,"29328":0,"29329":0,"29330":0,"29331":0,"29332":1,"29333":0,"29334":1,"29335":1,"29336":1,"29337":1,"29338":0,"29339":0,"29340":0,"29341":0,"29342":0,"29343":1,"29344":0,"29345":0,"29346":0,"29347":0,"29348":0,"29349":0,"29350":1,"29351":1,"29352":1,"29353":0,"29354":0,"29355":0,"29356":0,"29357":0,"29358":1,"29359":0,"29360":0,"29361":0,"29362":0,"29363":0,"29364":0,"29365":0,"29366":0,"29367":0,"29368":1,"29369":1,"29370":0,"29371":0,"29372":0,"29373":1,"29374":0,"29375":0,"29376":0,"29377":0,"29378":0,"29379":0,"29380":1,"29381":1,"29382":1,"29383":0,"29384":1,"29385":0,"29386":1,"29387":0,"29388":1,"29389":1,"29390":0,"29391":1,"29392":0,"29393":0,"29394":0,"29395":0,"29396":1,"29397":0,"29398":1,"29399":0,"29400":0,"29401":0,"29402":0,"29403":0,"29404":1,"29405":0,"29406":0,"29407":0,"29408":0,"29409":0,"29410":0,"29411":0,"29412":0,"29413":1,"29414":1,"29415":0,"29416":1,"29417":0,"29418":0,"29419":0,"29420":0,"29421":1,"29422":0,"29423":1,"29424":0,"29425":0,"29426":1,"29427":0,"29428":0,"29429":0,"29430":0,"29431":0,"29432":0,"29433":1,"29434":0,"29435":0,"29436":0,"29437":0,"29438":0,"29439":0,"29440":0,"29441":0,"29442":0,"29443":0,"29444":0,"29445":0,"29446":0,"29447":1,"29448":0,"29449":1,"29450":0,"29451":1,"29452":0,"29453":0,"29454":0,"29455":0,"29456":0,"29457":0,"29458":1,"29459":1,"29460":1,"29461":0,"29462":0,"29463":1,"29464":0,"29465":0,"29466":1,"29467":0,"29468":0,"29469":1,"29470":1,"29471":1,"29472":0,"29473":0,"29474":1,"29475":0,"29476":1,"29477":1,"29478":0,"29479":0,"29480":1,"29481":0,"29482":0,"29483":1,"29484":1,"29485":0,"29486":0,"29487":0,"29488":1,"29489":0,"29490":1,"29491":1,"29492":0,"29493":0,"29494":0,"29495":0,"29496":0,"29497":0,"29498":1,"29499":1,"29500":0,"29501":0,"29502":0,"29503":1,"29504":1,"29505":1,"29506":1,"29507":0,"29508":0,"29509":0,"29510":0,"29511":1,"29512":0,"29513":0,"29514":1,"29515":0,"29516":0,"29517":1,"29518":0,"29519":0,"29520":1,"29521":0,"29522":0,"29523":0,"29524":0,"29525":0,"29526":0,"29527":0,"29528":0,"29529":0,"29530":0,"29531":0,"29532":0,"29533":0,"29534":0,"29535":0,"29536":0,"29537":0,"29538":0,"29539":0,"29540":1,"29541":1,"29542":1,"29543":0,"29544":0,"29545":0,"29546":0,"29547":1,"29548":1,"29549":0,"29550":0,"29551":0,"29552":0,"29553":0,"29554":1,"29555":1,"29556":0,"29557":0,"29558":0,"29559":0,"29560":1,"29561":0,"29562":0,"29563":0,"29564":0,"29565":0,"29566":0,"29567":1,"29568":1,"29569":0,"29570":1,"29571":0,"29572":0,"29573":0,"29574":0,"29575":0,"29576":0,"29577":1,"29578":0,"29579":1,"29580":0,"29581":0,"29582":0,"29583":0,"29584":0,"29585":1,"29586":0,"29587":1,"29588":1,"29589":0,"29590":1,"29591":0,"29592":1,"29593":0,"29594":1,"29595":1,"29596":0,"29597":0,"29598":0,"29599":0,"29600":0,"29601":0,"29602":0,"29603":0,"29604":0,"29605":0,"29606":0,"29607":0,"29608":1,"29609":0,"29610":0,"29611":0,"29612":0,"29613":0,"29614":0,"29615":0,"29616":0,"29617":0,"29618":0,"29619":0,"29620":0,"29621":0,"29622":1,"29623":0,"29624":0,"29625":0,"29626":0,"29627":0,"29628":0,"29629":1,"29630":0,"29631":0,"29632":0,"29633":0,"29634":0,"29635":0,"29636":0,"29637":0,"29638":1,"29639":0,"29640":1,"29641":0,"29642":1,"29643":0,"29644":0,"29645":0,"29646":0,"29647":0,"29648":0,"29649":0,"29650":0,"29651":0,"29652":0,"29653":0,"29654":0,"29655":0,"29656":0,"29657":0,"29658":1,"29659":0,"29660":0,"29661":0,"29662":0,"29663":0,"29664":0,"29665":1,"29666":0,"29667":0,"29668":0,"29669":0,"29670":0,"29671":0,"29672":0,"29673":0,"29674":0,"29675":0,"29676":0,"29677":1,"29678":0,"29679":0,"29680":0,"29681":0,"29682":0,"29683":1,"29684":1,"29685":0,"29686":1,"29687":1,"29688":0,"29689":0,"29690":0,"29691":0,"29692":0,"29693":1,"29694":0,"29695":1,"29696":0,"29697":0,"29698":0,"29699":0,"29700":0,"29701":0,"29702":0,"29703":1,"29704":1,"29705":0,"29706":0,"29707":0,"29708":0,"29709":1,"29710":0,"29711":1,"29712":0,"29713":0,"29714":0,"29715":1,"29716":0,"29717":0,"29718":0,"29719":0,"29720":0,"29721":0,"29722":1,"29723":0,"29724":0,"29725":0,"29726":0,"29727":0,"29728":0,"29729":0,"29730":0,"29731":1,"29732":1,"29733":1,"29734":0,"29735":0,"29736":0,"29737":1,"29738":0,"29739":1,"29740":0,"29741":0,"29742":1,"29743":0,"29744":1,"29745":1,"29746":1,"29747":1,"29748":0,"29749":0,"29750":1,"29751":0,"29752":0,"29753":0,"29754":0,"29755":0,"29756":0,"29757":0,"29758":0,"29759":0,"29760":0,"29761":0,"29762":0,"29763":0,"29764":0,"29765":0,"29766":0,"29767":0,"29768":0,"29769":0,"29770":0,"29771":1,"29772":0,"29773":0,"29774":1,"29775":0,"29776":1,"29777":1,"29778":0,"29779":0,"29780":1,"29781":1,"29782":0,"29783":1,"29784":1,"29785":1,"29786":0,"29787":1,"29788":0,"29789":0,"29790":0,"29791":0,"29792":0,"29793":0,"29794":0,"29795":0,"29796":0,"29797":0,"29798":0,"29799":0,"29800":0,"29801":1,"29802":0,"29803":0,"29804":0,"29805":0,"29806":0,"29807":0,"29808":0,"29809":1,"29810":0,"29811":0,"29812":0,"29813":0,"29814":0,"29815":1,"29816":0,"29817":1,"29818":0,"29819":0,"29820":0,"29821":0,"29822":0,"29823":0,"29824":0,"29825":1,"29826":0,"29827":0,"29828":1,"29829":0,"29830":1,"29831":0,"29832":0,"29833":0,"29834":1,"29835":1,"29836":1,"29837":1,"29838":1,"29839":0,"29840":0,"29841":0,"29842":1,"29843":0,"29844":0,"29845":0,"29846":0,"29847":0,"29848":0,"29849":0,"29850":0,"29851":0,"29852":0,"29853":0,"29854":0,"29855":0,"29856":0,"29857":0,"29858":0,"29859":0,"29860":0,"29861":0,"29862":1,"29863":0,"29864":0,"29865":0,"29866":0,"29867":0,"29868":0,"29869":0,"29870":0,"29871":1,"29872":1,"29873":1,"29874":0,"29875":0,"29876":0,"29877":1,"29878":1,"29879":0,"29880":0,"29881":0,"29882":0,"29883":0,"29884":0,"29885":0,"29886":0,"29887":0,"29888":0,"29889":0,"29890":1,"29891":0,"29892":0,"29893":0,"29894":0,"29895":0,"29896":0,"29897":1,"29898":0,"29899":0,"29900":0,"29901":1,"29902":0,"29903":0,"29904":0,"29905":1,"29906":1,"29907":0,"29908":0,"29909":0,"29910":0,"29911":0,"29912":1,"29913":0,"29914":0,"29915":0,"29916":1,"29917":1,"29918":0,"29919":1,"29920":1,"29921":0,"29922":0,"29923":0,"29924":0,"29925":0,"29926":1,"29927":0,"29928":1,"29929":0,"29930":0,"29931":0,"29932":1,"29933":0,"29934":0,"29935":0,"29936":1,"29937":1,"29938":1,"29939":1,"29940":0,"29941":0,"29942":1,"29943":0,"29944":0,"29945":0,"29946":0,"29947":0,"29948":0,"29949":0,"29950":0,"29951":0,"29952":0,"29953":0,"29954":0,"29955":0,"29956":0,"29957":0,"29958":0,"29959":0,"29960":1,"29961":0,"29962":0,"29963":1,"29964":0,"29965":0,"29966":0,"29967":0,"29968":0,"29969":0,"29970":1,"29971":0,"29972":1,"29973":0,"29974":1,"29975":0,"29976":0,"29977":0,"29978":0,"29979":0,"29980":0,"29981":0,"29982":1,"29983":0,"29984":0,"29985":0,"29986":0,"29987":0,"29988":0,"29989":0,"29990":0,"29991":0,"29992":0,"29993":0,"29994":1,"29995":0,"29996":0,"29997":1,"29998":0,"29999":1,"30000":0,"30001":0,"30002":0,"30003":0,"30004":0,"30005":0,"30006":0,"30007":0,"30008":0,"30009":0,"30010":0,"30011":1,"30012":0,"30013":0,"30014":1,"30015":0,"30016":0,"30017":0,"30018":0,"30019":0,"30020":0,"30021":0,"30022":0,"30023":0,"30024":0,"30025":0,"30026":0,"30027":0,"30028":0,"30029":0,"30030":0,"30031":0,"30032":0,"30033":0,"30034":0,"30035":0,"30036":0,"30037":0,"30038":0,"30039":0,"30040":1,"30041":1,"30042":1,"30043":1,"30044":1,"30045":0,"30046":0,"30047":0,"30048":1,"30049":0,"30050":1,"30051":0,"30052":1,"30053":0,"30054":0,"30055":0,"30056":1,"30057":0,"30058":0,"30059":0,"30060":0,"30061":0,"30062":0,"30063":1,"30064":0,"30065":0,"30066":0,"30067":1,"30068":0,"30069":0,"30070":0,"30071":0,"30072":0,"30073":0,"30074":0,"30075":0,"30076":0,"30077":0,"30078":0,"30079":0,"30080":0,"30081":0,"30082":0,"30083":0,"30084":0,"30085":0,"30086":0,"30087":0,"30088":0,"30089":0,"30090":0,"30091":0,"30092":0,"30093":0,"30094":0,"30095":0,"30096":0,"30097":0,"30098":0,"30099":0,"30100":0,"30101":0,"30102":1,"30103":0,"30104":1,"30105":0,"30106":0,"30107":1,"30108":1,"30109":1,"30110":0,"30111":1,"30112":0,"30113":1,"30114":1,"30115":1,"30116":0,"30117":1,"30118":0,"30119":0,"30120":0,"30121":0,"30122":0,"30123":0,"30124":1,"30125":0,"30126":0,"30127":0,"30128":0,"30129":0,"30130":0,"30131":0,"30132":1,"30133":0,"30134":0,"30135":1,"30136":0,"30137":0,"30138":0,"30139":0,"30140":0,"30141":1,"30142":1,"30143":0,"30144":0,"30145":0,"30146":0,"30147":0,"30148":0,"30149":0,"30150":0,"30151":0,"30152":0,"30153":0,"30154":0,"30155":0,"30156":0,"30157":0,"30158":1,"30159":0,"30160":1,"30161":0,"30162":0,"30163":0,"30164":1,"30165":0,"30166":1,"30167":0,"30168":0,"30169":0,"30170":1,"30171":0,"30172":0,"30173":1,"30174":0,"30175":1,"30176":0,"30177":1,"30178":0,"30179":0,"30180":0,"30181":0,"30182":1,"30183":0,"30184":0,"30185":0,"30186":0,"30187":0,"30188":0,"30189":0,"30190":1,"30191":0,"30192":0,"30193":0,"30194":0,"30195":1,"30196":0,"30197":0,"30198":0,"30199":0,"30200":0,"30201":0,"30202":0,"30203":0,"30204":1,"30205":0,"30206":0,"30207":1,"30208":0,"30209":0,"30210":0,"30211":0,"30212":0,"30213":1,"30214":1,"30215":0,"30216":0,"30217":0,"30218":0,"30219":0,"30220":1,"30221":1,"30222":1,"30223":1,"30224":0,"30225":1,"30226":0,"30227":0,"30228":0,"30229":0,"30230":1,"30231":0,"30232":0,"30233":1,"30234":0,"30235":0,"30236":0,"30237":0,"30238":1,"30239":0,"30240":0,"30241":0,"30242":0,"30243":0,"30244":0,"30245":1,"30246":0,"30247":0,"30248":0,"30249":1,"30250":0,"30251":0,"30252":0,"30253":0,"30254":1,"30255":0,"30256":1,"30257":1,"30258":0,"30259":1,"30260":1,"30261":0,"30262":0,"30263":0,"30264":0,"30265":0,"30266":1,"30267":1,"30268":1,"30269":1,"30270":0,"30271":0,"30272":1,"30273":0,"30274":0,"30275":1,"30276":0,"30277":0,"30278":1,"30279":0,"30280":1,"30281":0,"30282":0,"30283":1,"30284":0,"30285":0,"30286":0,"30287":0,"30288":1,"30289":1,"30290":0,"30291":1,"30292":0,"30293":0,"30294":1,"30295":0,"30296":0,"30297":0,"30298":0,"30299":1,"30300":0,"30301":0,"30302":0,"30303":0,"30304":0,"30305":1,"30306":1,"30307":0,"30308":1,"30309":0,"30310":0,"30311":0,"30312":1,"30313":0,"30314":1,"30315":0,"30316":1,"30317":0,"30318":0,"30319":0,"30320":0,"30321":0,"30322":1,"30323":1,"30324":0,"30325":0,"30326":0,"30327":0,"30328":1,"30329":1,"30330":0,"30331":1,"30332":0,"30333":0,"30334":1,"30335":1,"30336":0,"30337":0,"30338":0,"30339":0,"30340":0,"30341":1,"30342":0,"30343":0,"30344":1,"30345":0,"30346":0,"30347":0,"30348":0,"30349":0,"30350":0,"30351":0,"30352":0,"30353":1,"30354":1,"30355":1,"30356":1,"30357":0,"30358":0,"30359":0,"30360":1,"30361":0,"30362":0,"30363":0,"30364":0,"30365":0,"30366":0,"30367":0,"30368":0,"30369":0,"30370":0,"30371":0,"30372":1,"30373":0,"30374":1,"30375":1,"30376":0,"30377":1,"30378":0,"30379":1,"30380":1,"30381":0,"30382":0,"30383":0,"30384":1,"30385":0,"30386":1,"30387":0,"30388":0,"30389":1,"30390":0,"30391":1,"30392":0,"30393":0,"30394":1,"30395":0,"30396":0,"30397":0,"30398":0,"30399":0,"30400":0,"30401":0,"30402":0,"30403":0,"30404":1,"30405":0,"30406":0,"30407":0,"30408":1,"30409":0,"30410":0,"30411":0,"30412":0,"30413":0,"30414":0,"30415":1,"30416":0,"30417":0,"30418":0,"30419":0,"30420":0,"30421":0,"30422":1,"30423":0,"30424":0,"30425":0,"30426":1,"30427":1,"30428":0,"30429":0,"30430":0,"30431":0,"30432":0,"30433":0,"30434":0,"30435":0,"30436":0,"30437":0,"30438":0,"30439":0,"30440":0,"30441":1,"30442":1,"30443":0,"30444":0,"30445":0,"30446":0,"30447":1,"30448":1,"30449":1,"30450":0,"30451":1,"30452":0,"30453":0,"30454":0,"30455":0,"30456":0,"30457":1,"30458":0,"30459":0,"30460":0,"30461":1,"30462":0,"30463":0,"30464":0,"30465":0,"30466":0,"30467":0,"30468":0,"30469":0,"30470":0,"30471":0,"30472":0,"30473":0,"30474":0,"30475":0,"30476":1,"30477":0,"30478":0,"30479":0,"30480":0,"30481":0,"30482":0,"30483":1,"30484":0,"30485":1,"30486":0,"30487":0,"30488":0,"30489":1,"30490":0,"30491":0,"30492":0,"30493":0,"30494":0,"30495":1,"30496":1,"30497":1,"30498":0,"30499":0,"30500":0,"30501":0,"30502":0,"30503":1,"30504":0,"30505":0,"30506":0,"30507":0,"30508":0,"30509":0,"30510":1,"30511":1,"30512":0,"30513":0,"30514":0,"30515":0,"30516":0,"30517":0,"30518":1,"30519":0,"30520":0,"30521":0,"30522":0,"30523":0,"30524":0,"30525":0,"30526":0,"30527":1,"30528":0,"30529":0,"30530":0,"30531":1,"30532":0,"30533":0,"30534":1,"30535":0,"30536":1,"30537":1,"30538":1,"30539":0,"30540":0,"30541":0,"30542":0,"30543":0,"30544":0,"30545":0,"30546":0,"30547":1,"30548":0,"30549":1,"30550":0,"30551":0,"30552":0,"30553":0,"30554":0,"30555":0,"30556":0,"30557":1,"30558":0,"30559":0,"30560":0,"30561":0,"30562":0,"30563":0,"30564":1,"30565":0,"30566":1,"30567":0,"30568":1,"30569":0,"30570":0,"30571":0,"30572":1,"30573":0,"30574":1,"30575":0,"30576":0,"30577":0,"30578":0,"30579":0,"30580":0,"30581":0,"30582":0,"30583":0,"30584":0,"30585":1,"30586":0,"30587":0,"30588":1,"30589":0,"30590":1,"30591":0,"30592":0,"30593":0,"30594":0,"30595":1,"30596":1,"30597":0,"30598":1,"30599":1,"30600":0,"30601":0,"30602":1,"30603":0,"30604":0,"30605":0,"30606":0,"30607":0,"30608":1,"30609":0,"30610":0,"30611":0,"30612":0,"30613":0,"30614":0,"30615":0,"30616":1,"30617":0,"30618":0,"30619":1,"30620":0,"30621":0,"30622":0,"30623":0,"30624":0,"30625":0,"30626":0,"30627":0,"30628":0,"30629":0,"30630":0,"30631":0,"30632":0,"30633":0,"30634":0,"30635":1,"30636":0,"30637":1,"30638":1,"30639":0,"30640":0,"30641":0,"30642":0,"30643":0,"30644":0,"30645":0,"30646":0,"30647":0,"30648":0,"30649":0,"30650":1,"30651":0,"30652":0,"30653":0,"30654":0,"30655":0,"30656":1,"30657":0,"30658":0,"30659":0,"30660":1,"30661":0,"30662":0,"30663":0,"30664":1,"30665":0,"30666":0,"30667":0,"30668":0,"30669":1,"30670":0,"30671":0,"30672":0,"30673":0,"30674":0,"30675":0,"30676":1,"30677":0,"30678":0,"30679":1,"30680":0,"30681":0,"30682":0,"30683":0,"30684":1,"30685":1,"30686":0,"30687":0,"30688":1,"30689":0,"30690":0,"30691":0,"30692":0,"30693":0,"30694":0,"30695":0,"30696":1,"30697":0,"30698":1,"30699":0,"30700":0,"30701":1,"30702":0,"30703":1,"30704":0,"30705":1,"30706":1,"30707":0,"30708":0,"30709":0,"30710":1,"30711":1,"30712":0,"30713":0,"30714":1,"30715":0,"30716":0,"30717":0,"30718":0,"30719":1,"30720":0,"30721":1,"30722":0,"30723":0,"30724":0,"30725":0,"30726":0,"30727":0,"30728":0,"30729":0,"30730":1,"30731":0,"30732":0,"30733":1,"30734":0,"30735":0,"30736":0,"30737":0,"30738":0,"30739":1,"30740":0,"30741":1,"30742":0,"30743":0,"30744":0,"30745":0,"30746":0,"30747":1,"30748":1,"30749":0,"30750":1,"30751":1,"30752":0,"30753":0,"30754":0,"30755":0,"30756":0,"30757":0,"30758":0,"30759":1,"30760":1,"30761":0,"30762":0,"30763":1,"30764":0,"30765":0,"30766":0,"30767":1,"30768":1,"30769":0,"30770":0,"30771":1,"30772":1,"30773":1,"30774":0,"30775":0,"30776":0,"30777":0,"30778":0,"30779":0,"30780":0,"30781":0,"30782":0,"30783":1,"30784":0,"30785":0,"30786":1,"30787":1,"30788":1,"30789":0,"30790":0,"30791":1,"30792":0,"30793":0,"30794":0,"30795":0,"30796":0,"30797":0,"30798":0,"30799":0,"30800":0,"30801":0,"30802":0,"30803":1,"30804":0,"30805":1,"30806":1,"30807":0,"30808":1,"30809":0,"30810":0,"30811":0,"30812":0,"30813":0,"30814":1,"30815":0,"30816":1,"30817":1,"30818":0,"30819":0,"30820":1,"30821":0,"30822":1,"30823":0,"30824":0,"30825":0,"30826":0,"30827":0,"30828":1,"30829":0,"30830":0,"30831":0,"30832":0,"30833":0,"30834":0,"30835":0,"30836":0,"30837":0,"30838":1,"30839":1,"30840":1,"30841":0,"30842":0,"30843":1,"30844":0,"30845":1,"30846":0,"30847":0,"30848":1,"30849":0,"30850":0,"30851":0,"30852":0,"30853":0,"30854":1,"30855":0,"30856":0,"30857":0,"30858":0,"30859":0,"30860":0,"30861":1,"30862":0,"30863":1,"30864":0,"30865":0,"30866":1,"30867":0,"30868":0,"30869":0,"30870":0,"30871":0,"30872":1,"30873":0,"30874":0,"30875":0,"30876":0,"30877":0,"30878":0,"30879":0,"30880":0,"30881":0,"30882":0,"30883":0,"30884":1,"30885":0,"30886":0,"30887":0,"30888":0,"30889":0,"30890":0,"30891":0,"30892":1,"30893":0,"30894":0,"30895":0,"30896":1,"30897":0,"30898":0,"30899":1,"30900":0,"30901":1,"30902":0,"30903":0,"30904":0,"30905":0,"30906":0,"30907":0,"30908":0,"30909":0,"30910":0,"30911":0,"30912":1,"30913":0,"30914":0,"30915":0,"30916":1,"30917":1,"30918":1,"30919":0,"30920":0,"30921":1,"30922":1,"30923":0,"30924":0,"30925":0,"30926":0,"30927":0,"30928":1,"30929":1,"30930":0,"30931":0,"30932":0,"30933":1,"30934":0,"30935":0,"30936":0,"30937":0,"30938":0,"30939":1,"30940":0,"30941":0,"30942":0,"30943":0,"30944":0,"30945":1,"30946":0,"30947":0,"30948":0,"30949":0,"30950":0,"30951":0,"30952":1,"30953":0,"30954":0,"30955":0,"30956":1,"30957":1,"30958":1,"30959":0,"30960":1,"30961":0,"30962":0,"30963":0,"30964":0,"30965":1,"30966":1,"30967":0,"30968":0,"30969":1,"30970":0,"30971":0,"30972":0,"30973":1,"30974":0,"30975":0,"30976":0,"30977":1,"30978":0,"30979":0,"30980":1,"30981":1,"30982":1,"30983":1,"30984":0,"30985":0,"30986":0,"30987":1,"30988":0,"30989":0,"30990":0,"30991":0,"30992":0,"30993":0,"30994":1,"30995":0,"30996":0,"30997":0,"30998":0,"30999":0,"31000":0,"31001":0,"31002":1,"31003":1,"31004":0,"31005":0,"31006":0,"31007":0,"31008":1,"31009":0,"31010":1,"31011":0,"31012":0,"31013":0,"31014":0,"31015":0,"31016":0,"31017":0,"31018":0,"31019":1,"31020":0,"31021":0,"31022":0,"31023":0,"31024":0,"31025":0,"31026":0,"31027":0,"31028":1,"31029":0,"31030":1,"31031":0,"31032":0,"31033":1,"31034":1,"31035":1,"31036":1,"31037":0,"31038":1,"31039":0,"31040":1,"31041":0,"31042":0,"31043":0,"31044":0,"31045":1,"31046":0,"31047":1,"31048":0,"31049":0,"31050":0,"31051":0,"31052":1,"31053":1,"31054":0,"31055":1,"31056":0,"31057":0,"31058":1,"31059":1,"31060":0,"31061":0,"31062":0,"31063":0,"31064":0,"31065":1,"31066":0,"31067":0,"31068":0,"31069":0,"31070":0,"31071":0,"31072":1,"31073":0,"31074":0,"31075":0,"31076":0,"31077":0,"31078":1,"31079":0,"31080":0,"31081":0,"31082":0,"31083":0,"31084":0,"31085":0,"31086":0,"31087":0,"31088":0,"31089":0,"31090":0,"31091":1,"31092":0,"31093":0,"31094":1,"31095":1,"31096":0,"31097":1,"31098":1,"31099":1,"31100":1,"31101":0,"31102":0,"31103":0,"31104":1,"31105":0,"31106":1,"31107":1,"31108":1,"31109":1,"31110":0,"31111":1,"31112":0,"31113":0,"31114":1,"31115":1,"31116":1,"31117":0,"31118":1,"31119":0,"31120":0,"31121":0,"31122":0,"31123":0,"31124":0,"31125":0,"31126":0,"31127":0,"31128":0,"31129":0,"31130":1,"31131":1,"31132":0,"31133":1,"31134":0,"31135":0,"31136":0,"31137":0,"31138":0,"31139":0,"31140":0,"31141":1,"31142":0,"31143":1,"31144":1,"31145":0,"31146":0,"31147":1,"31148":1,"31149":0,"31150":1,"31151":1,"31152":0,"31153":0,"31154":1,"31155":0,"31156":0,"31157":1,"31158":1,"31159":0,"31160":0,"31161":0,"31162":0,"31163":1,"31164":0,"31165":0,"31166":0,"31167":0,"31168":0,"31169":0,"31170":0,"31171":0,"31172":0,"31173":0,"31174":1,"31175":0,"31176":1,"31177":0,"31178":1,"31179":0,"31180":0,"31181":0,"31182":0,"31183":0,"31184":0,"31185":1,"31186":0,"31187":0,"31188":1,"31189":1,"31190":0,"31191":0,"31192":0,"31193":0,"31194":0,"31195":0,"31196":0,"31197":0,"31198":0,"31199":1,"31200":0,"31201":0,"31202":0,"31203":1,"31204":1,"31205":0,"31206":0,"31207":0,"31208":0,"31209":0,"31210":0,"31211":0,"31212":0,"31213":1,"31214":0,"31215":1,"31216":0,"31217":0,"31218":1,"31219":0,"31220":0,"31221":1,"31222":0,"31223":0,"31224":0,"31225":0,"31226":0,"31227":1,"31228":0,"31229":0,"31230":0,"31231":1,"31232":1,"31233":1,"31234":0,"31235":0,"31236":0,"31237":0,"31238":0,"31239":1,"31240":0,"31241":0,"31242":1,"31243":0,"31244":1,"31245":0,"31246":0,"31247":1,"31248":0,"31249":0,"31250":0,"31251":1,"31252":0,"31253":0,"31254":0,"31255":0,"31256":0,"31257":0,"31258":0,"31259":1,"31260":0,"31261":0,"31262":1,"31263":0,"31264":0,"31265":0,"31266":0,"31267":0,"31268":1,"31269":0,"31270":1,"31271":0,"31272":0,"31273":1,"31274":1,"31275":0,"31276":1,"31277":0,"31278":0,"31279":0,"31280":1,"31281":0,"31282":1,"31283":1,"31284":0,"31285":0,"31286":0,"31287":1,"31288":0,"31289":1,"31290":0,"31291":0,"31292":0,"31293":0,"31294":0,"31295":0,"31296":0,"31297":0,"31298":0,"31299":0,"31300":1,"31301":0,"31302":0,"31303":0,"31304":0,"31305":0,"31306":0,"31307":0,"31308":0,"31309":1,"31310":1,"31311":0,"31312":1,"31313":0,"31314":0,"31315":1,"31316":1,"31317":0,"31318":0,"31319":0,"31320":0,"31321":0,"31322":0,"31323":0,"31324":0,"31325":0,"31326":0,"31327":0,"31328":1,"31329":1,"31330":0,"31331":0,"31332":0,"31333":0,"31334":0,"31335":0,"31336":0,"31337":0,"31338":1,"31339":0,"31340":0,"31341":0,"31342":0,"31343":0,"31344":0,"31345":1,"31346":0,"31347":0,"31348":0,"31349":0,"31350":1,"31351":0,"31352":0,"31353":0,"31354":0,"31355":1,"31356":1,"31357":0,"31358":1,"31359":1,"31360":1,"31361":0,"31362":0,"31363":0,"31364":0,"31365":0,"31366":0,"31367":0,"31368":1,"31369":0,"31370":1,"31371":0,"31372":0,"31373":1,"31374":0,"31375":0,"31376":0,"31377":0,"31378":0,"31379":0,"31380":0,"31381":0,"31382":0,"31383":0,"31384":0,"31385":0,"31386":0,"31387":0,"31388":0,"31389":0,"31390":1,"31391":0,"31392":0,"31393":0,"31394":0,"31395":0,"31396":0,"31397":0,"31398":0,"31399":0,"31400":0,"31401":0,"31402":1,"31403":0,"31404":0,"31405":1,"31406":0,"31407":1,"31408":0,"31409":0,"31410":0,"31411":0,"31412":1,"31413":1,"31414":1,"31415":0,"31416":0,"31417":1,"31418":0,"31419":1,"31420":0,"31421":1,"31422":0,"31423":1,"31424":0,"31425":0,"31426":0,"31427":1,"31428":1,"31429":0,"31430":1,"31431":0,"31432":0,"31433":0,"31434":0,"31435":0,"31436":1,"31437":1,"31438":1,"31439":1,"31440":0,"31441":0,"31442":1,"31443":0,"31444":1,"31445":0,"31446":1,"31447":0,"31448":0,"31449":0,"31450":0,"31451":0,"31452":1,"31453":1,"31454":0,"31455":0,"31456":0,"31457":0,"31458":0,"31459":0,"31460":1,"31461":0,"31462":0,"31463":1,"31464":0,"31465":0,"31466":0,"31467":0,"31468":0,"31469":1,"31470":0,"31471":0,"31472":1,"31473":0,"31474":0,"31475":1,"31476":0,"31477":1,"31478":0,"31479":0,"31480":0,"31481":1,"31482":0,"31483":1,"31484":1,"31485":0,"31486":0,"31487":0,"31488":0,"31489":0,"31490":0,"31491":0,"31492":0,"31493":1,"31494":0,"31495":1,"31496":0,"31497":1,"31498":1,"31499":1,"31500":0,"31501":1,"31502":0,"31503":0,"31504":0,"31505":1,"31506":1,"31507":0,"31508":1,"31509":0,"31510":0,"31511":0,"31512":0,"31513":1,"31514":1,"31515":1,"31516":0,"31517":0,"31518":0,"31519":0,"31520":0,"31521":0,"31522":1,"31523":0,"31524":0,"31525":0,"31526":1,"31527":0,"31528":0,"31529":0,"31530":0,"31531":0,"31532":0,"31533":0,"31534":0,"31535":1,"31536":1,"31537":0,"31538":0,"31539":1,"31540":1,"31541":0,"31542":0,"31543":0,"31544":0,"31545":1,"31546":1,"31547":0,"31548":0,"31549":0,"31550":0,"31551":0,"31552":1,"31553":0,"31554":0,"31555":1,"31556":0,"31557":0,"31558":0,"31559":0,"31560":1,"31561":0,"31562":1,"31563":0,"31564":1,"31565":0,"31566":1,"31567":0,"31568":0,"31569":1,"31570":0,"31571":0,"31572":0,"31573":0,"31574":1,"31575":0,"31576":1,"31577":0,"31578":1,"31579":0,"31580":0,"31581":0,"31582":1,"31583":1,"31584":1,"31585":0,"31586":1,"31587":1,"31588":0,"31589":1,"31590":0,"31591":0,"31592":0,"31593":0,"31594":0,"31595":1,"31596":0,"31597":0,"31598":0,"31599":0,"31600":0,"31601":0,"31602":1,"31603":0,"31604":1,"31605":0,"31606":0,"31607":0,"31608":1,"31609":0,"31610":0,"31611":0,"31612":0,"31613":0,"31614":0,"31615":0,"31616":0,"31617":1,"31618":0,"31619":1,"31620":0,"31621":1,"31622":1,"31623":1,"31624":0,"31625":0,"31626":0,"31627":0,"31628":1,"31629":0,"31630":0,"31631":1,"31632":1,"31633":1,"31634":0,"31635":1,"31636":0,"31637":0,"31638":0,"31639":1,"31640":0,"31641":0,"31642":0,"31643":0,"31644":0,"31645":0,"31646":0,"31647":0,"31648":0,"31649":0,"31650":0,"31651":0,"31652":0,"31653":0,"31654":0,"31655":0,"31656":0,"31657":0,"31658":0,"31659":0,"31660":0,"31661":1,"31662":0,"31663":0,"31664":1,"31665":1,"31666":0,"31667":0,"31668":1,"31669":0,"31670":0,"31671":1,"31672":1,"31673":0,"31674":1,"31675":0,"31676":0,"31677":0,"31678":0,"31679":0,"31680":1,"31681":1,"31682":1,"31683":1,"31684":0,"31685":1,"31686":1,"31687":0,"31688":1,"31689":0,"31690":1,"31691":0,"31692":0,"31693":0,"31694":0,"31695":0,"31696":0,"31697":0,"31698":1,"31699":0,"31700":0,"31701":1,"31702":0,"31703":0,"31704":0,"31705":0,"31706":0,"31707":1,"31708":1,"31709":1,"31710":0,"31711":0,"31712":1,"31713":0,"31714":0,"31715":1,"31716":0,"31717":1,"31718":0,"31719":0,"31720":1,"31721":1,"31722":1,"31723":0,"31724":0,"31725":1,"31726":0,"31727":1,"31728":0,"31729":1,"31730":0,"31731":0,"31732":0,"31733":0,"31734":0,"31735":0,"31736":1,"31737":0,"31738":0,"31739":1,"31740":0,"31741":1,"31742":0,"31743":0,"31744":0,"31745":1,"31746":0,"31747":0,"31748":0,"31749":1,"31750":0,"31751":0,"31752":0,"31753":1,"31754":0,"31755":0,"31756":0,"31757":0,"31758":0,"31759":0,"31760":0,"31761":0,"31762":0,"31763":0,"31764":1,"31765":0,"31766":0,"31767":0,"31768":0,"31769":0,"31770":0,"31771":1,"31772":1,"31773":0,"31774":0,"31775":0,"31776":0,"31777":0,"31778":0,"31779":0,"31780":1,"31781":1,"31782":1,"31783":1,"31784":0,"31785":0,"31786":1,"31787":0,"31788":0,"31789":0,"31790":1,"31791":0,"31792":0,"31793":0,"31794":1,"31795":1,"31796":1,"31797":0,"31798":1,"31799":0,"31800":1,"31801":0,"31802":0,"31803":0,"31804":0,"31805":1,"31806":0,"31807":1,"31808":1,"31809":0,"31810":0,"31811":0,"31812":0,"31813":0,"31814":0,"31815":1,"31816":0,"31817":0,"31818":0,"31819":1,"31820":0,"31821":0,"31822":0,"31823":1,"31824":0,"31825":0,"31826":0,"31827":0,"31828":1,"31829":0,"31830":0,"31831":0,"31832":0,"31833":0,"31834":0,"31835":1,"31836":0,"31837":0,"31838":0,"31839":0,"31840":0,"31841":1,"31842":1,"31843":1,"31844":0,"31845":0,"31846":0,"31847":0,"31848":0,"31849":0,"31850":0,"31851":1,"31852":0,"31853":1,"31854":0,"31855":0,"31856":1,"31857":0,"31858":1,"31859":0,"31860":1,"31861":0,"31862":0,"31863":1,"31864":0,"31865":1,"31866":0,"31867":1,"31868":0,"31869":0,"31870":0,"31871":0,"31872":0,"31873":0,"31874":0,"31875":0,"31876":1,"31877":0,"31878":0,"31879":0,"31880":0,"31881":0,"31882":1,"31883":1,"31884":0,"31885":1,"31886":0,"31887":0,"31888":0,"31889":0,"31890":1,"31891":1,"31892":0,"31893":0,"31894":0,"31895":0,"31896":0,"31897":0,"31898":1,"31899":1,"31900":0,"31901":0,"31902":0,"31903":0,"31904":0,"31905":0,"31906":0,"31907":1,"31908":0,"31909":1,"31910":0,"31911":0,"31912":0,"31913":0,"31914":0,"31915":1,"31916":0,"31917":0,"31918":1,"31919":1,"31920":0,"31921":0,"31922":1,"31923":1,"31924":1,"31925":0,"31926":0,"31927":0,"31928":1,"31929":0,"31930":0,"31931":1,"31932":0,"31933":1,"31934":0,"31935":0,"31936":0,"31937":0,"31938":0,"31939":0,"31940":1,"31941":1,"31942":1,"31943":0,"31944":0,"31945":0,"31946":0,"31947":1,"31948":0,"31949":1,"31950":0,"31951":0,"31952":1,"31953":1,"31954":1,"31955":1,"31956":1,"31957":1,"31958":0,"31959":0,"31960":0,"31961":1,"31962":0,"31963":0,"31964":0,"31965":0,"31966":1,"31967":0,"31968":1,"31969":0,"31970":0,"31971":1,"31972":1,"31973":0,"31974":0,"31975":0,"31976":0,"31977":0,"31978":0,"31979":0,"31980":1,"31981":0,"31982":1,"31983":1,"31984":0,"31985":0,"31986":1,"31987":0,"31988":0,"31989":0,"31990":0,"31991":0,"31992":1,"31993":0,"31994":0,"31995":0,"31996":0,"31997":0,"31998":0,"31999":0,"32000":0,"32001":1,"32002":0,"32003":0,"32004":1,"32005":0,"32006":1,"32007":0,"32008":1,"32009":0,"32010":0,"32011":0,"32012":0,"32013":1,"32014":1,"32015":0,"32016":0,"32017":0,"32018":1,"32019":0,"32020":0,"32021":0,"32022":0,"32023":0,"32024":0,"32025":0,"32026":0,"32027":1,"32028":0,"32029":0,"32030":0,"32031":0,"32032":0,"32033":0,"32034":0,"32035":1,"32036":1,"32037":0,"32038":1,"32039":1,"32040":0,"32041":0,"32042":1,"32043":0,"32044":0,"32045":0,"32046":0,"32047":0,"32048":1,"32049":1,"32050":0,"32051":0,"32052":1,"32053":0,"32054":0,"32055":0,"32056":0,"32057":1,"32058":0,"32059":0,"32060":1,"32061":1,"32062":1,"32063":0,"32064":0,"32065":1,"32066":0,"32067":0,"32068":1,"32069":0,"32070":0,"32071":0,"32072":0,"32073":0,"32074":0,"32075":0,"32076":1,"32077":0,"32078":0,"32079":0,"32080":0,"32081":0,"32082":0,"32083":1,"32084":1,"32085":1,"32086":0,"32087":1,"32088":0,"32089":0,"32090":0,"32091":0,"32092":0,"32093":0,"32094":0,"32095":0,"32096":0,"32097":1,"32098":0,"32099":0,"32100":0,"32101":0,"32102":0,"32103":1,"32104":0,"32105":1,"32106":1,"32107":0,"32108":1,"32109":0,"32110":1,"32111":0,"32112":1,"32113":1,"32114":0,"32115":0,"32116":1,"32117":0,"32118":0,"32119":0,"32120":1,"32121":0,"32122":0,"32123":0,"32124":1,"32125":0,"32126":0,"32127":0,"32128":1,"32129":0,"32130":0,"32131":0,"32132":0,"32133":0,"32134":0,"32135":0,"32136":0,"32137":0,"32138":0,"32139":1,"32140":0,"32141":0,"32142":0,"32143":1,"32144":0,"32145":0,"32146":0,"32147":1,"32148":0,"32149":1,"32150":0,"32151":0,"32152":0,"32153":1,"32154":0,"32155":0,"32156":0,"32157":0,"32158":0,"32159":0,"32160":0,"32161":0,"32162":0,"32163":1,"32164":1,"32165":0,"32166":0,"32167":0,"32168":0,"32169":0,"32170":0,"32171":1,"32172":0,"32173":0,"32174":0,"32175":0,"32176":0,"32177":1,"32178":1,"32179":1,"32180":1,"32181":1,"32182":0,"32183":0,"32184":1,"32185":0,"32186":0,"32187":0,"32188":0,"32189":0,"32190":0,"32191":0,"32192":1,"32193":1,"32194":1,"32195":0,"32196":1,"32197":0,"32198":1,"32199":0,"32200":1,"32201":0,"32202":0,"32203":0,"32204":1,"32205":0,"32206":0,"32207":0,"32208":1,"32209":1,"32210":0,"32211":0,"32212":0,"32213":1,"32214":1,"32215":0,"32216":0,"32217":0,"32218":0,"32219":1,"32220":0,"32221":0,"32222":1,"32223":1,"32224":0,"32225":1,"32226":0,"32227":0,"32228":1,"32229":0,"32230":1,"32231":0,"32232":0,"32233":0,"32234":1,"32235":0,"32236":0,"32237":1,"32238":0,"32239":0,"32240":0,"32241":0,"32242":0,"32243":0,"32244":0,"32245":0,"32246":1,"32247":0,"32248":0,"32249":0,"32250":0,"32251":0,"32252":1,"32253":1,"32254":0,"32255":1,"32256":0,"32257":1,"32258":0,"32259":0,"32260":0,"32261":1,"32262":0,"32263":1,"32264":0,"32265":1,"32266":0,"32267":0,"32268":0,"32269":0,"32270":0,"32271":1,"32272":0,"32273":0,"32274":1,"32275":0,"32276":0,"32277":1,"32278":0,"32279":0,"32280":1,"32281":0,"32282":0,"32283":0,"32284":0,"32285":0,"32286":1,"32287":0,"32288":0,"32289":0,"32290":0,"32291":1,"32292":1,"32293":0,"32294":1,"32295":0,"32296":0,"32297":0,"32298":1,"32299":1,"32300":0,"32301":0,"32302":1,"32303":0,"32304":0,"32305":0,"32306":0,"32307":1,"32308":1,"32309":1,"32310":0,"32311":0,"32312":0,"32313":0,"32314":0,"32315":1,"32316":0,"32317":0,"32318":1,"32319":0,"32320":0,"32321":1,"32322":0,"32323":1,"32324":0,"32325":0,"32326":0,"32327":0,"32328":0,"32329":1,"32330":0,"32331":0,"32332":1,"32333":0,"32334":0,"32335":0,"32336":1,"32337":0,"32338":0,"32339":1,"32340":0,"32341":1,"32342":1,"32343":0,"32344":0,"32345":0,"32346":0,"32347":0,"32348":1,"32349":0,"32350":0,"32351":1,"32352":0,"32353":0,"32354":0,"32355":0,"32356":1,"32357":0,"32358":0,"32359":0,"32360":0,"32361":1,"32362":0,"32363":0,"32364":0,"32365":1,"32366":0,"32367":1,"32368":0,"32369":1,"32370":1,"32371":1,"32372":0,"32373":0,"32374":0,"32375":0,"32376":1,"32377":0,"32378":0,"32379":0,"32380":0,"32381":0,"32382":1,"32383":1,"32384":0,"32385":0,"32386":1,"32387":0,"32388":0,"32389":1,"32390":0,"32391":0,"32392":0,"32393":1,"32394":0,"32395":0,"32396":0,"32397":0,"32398":0,"32399":1,"32400":0,"32401":0,"32402":0,"32403":1,"32404":0,"32405":0,"32406":0,"32407":0,"32408":0,"32409":0,"32410":1,"32411":1,"32412":0,"32413":0,"32414":0,"32415":0,"32416":1,"32417":0,"32418":0,"32419":0,"32420":0,"32421":0,"32422":1,"32423":1,"32424":1,"32425":0,"32426":0,"32427":1,"32428":0,"32429":1,"32430":0,"32431":0,"32432":1,"32433":0,"32434":0,"32435":0,"32436":1,"32437":0,"32438":0,"32439":0,"32440":0,"32441":0,"32442":0,"32443":1,"32444":0,"32445":0,"32446":0,"32447":0,"32448":1,"32449":0,"32450":0,"32451":0,"32452":1,"32453":0,"32454":1,"32455":0,"32456":0,"32457":1,"32458":1,"32459":0,"32460":1,"32461":0,"32462":0,"32463":1,"32464":0,"32465":0,"32466":0,"32467":1,"32468":0,"32469":0,"32470":0,"32471":0,"32472":1,"32473":0,"32474":1,"32475":1,"32476":0,"32477":0,"32478":0,"32479":0,"32480":0,"32481":0,"32482":1,"32483":1,"32484":0,"32485":0,"32486":0,"32487":1,"32488":1,"32489":1,"32490":1,"32491":0,"32492":1,"32493":0,"32494":0,"32495":0,"32496":1,"32497":0,"32498":1,"32499":1,"32500":0,"32501":0,"32502":0,"32503":0,"32504":0,"32505":1,"32506":0,"32507":0,"32508":0,"32509":1,"32510":0,"32511":0,"32512":0,"32513":0,"32514":0,"32515":0,"32516":0,"32517":0,"32518":0,"32519":0,"32520":0,"32521":0,"32522":0,"32523":1,"32524":1,"32525":0,"32526":0,"32527":0,"32528":0,"32529":0,"32530":0,"32531":1,"32532":0,"32533":0,"32534":0,"32535":0,"32536":1,"32537":0,"32538":0,"32539":1,"32540":1,"32541":0,"32542":0,"32543":0,"32544":0,"32545":0,"32546":0,"32547":1,"32548":1,"32549":0,"32550":0,"32551":1,"32552":0,"32553":0,"32554":0,"32555":0,"32556":0,"32557":1,"32558":0,"32559":0,"32560":0,"32561":0,"32562":0,"32563":0,"32564":0,"32565":0,"32566":1,"32567":1,"32568":1,"32569":0,"32570":0,"32571":0,"32572":0,"32573":0,"32574":1,"32575":0,"32576":1,"32577":0,"32578":0,"32579":0,"32580":0,"32581":0,"32582":0,"32583":0,"32584":0,"32585":0,"32586":0,"32587":0,"32588":0,"32589":0,"32590":0,"32591":0,"32592":1,"32593":0,"32594":1,"32595":0,"32596":0,"32597":0,"32598":0,"32599":0,"32600":0,"32601":0,"32602":1,"32603":0,"32604":0,"32605":0,"32606":0,"32607":0,"32608":1,"32609":0,"32610":1,"32611":0,"32612":0,"32613":0,"32614":0,"32615":0,"32616":0,"32617":0,"32618":1,"32619":0,"32620":1,"32621":0,"32622":0,"32623":1,"32624":1,"32625":0,"32626":1,"32627":1,"32628":0,"32629":0,"32630":0,"32631":0,"32632":0,"32633":1,"32634":1,"32635":0,"32636":0,"32637":1,"32638":0,"32639":1,"32640":1,"32641":1,"32642":0,"32643":0,"32644":0,"32645":0,"32646":0,"32647":1,"32648":0,"32649":0,"32650":0,"32651":1,"32652":0,"32653":0,"32654":0,"32655":1,"32656":0,"32657":0,"32658":1,"32659":0,"32660":1,"32661":0,"32662":0,"32663":0,"32664":1,"32665":0,"32666":0,"32667":0,"32668":0,"32669":0,"32670":0,"32671":0,"32672":0,"32673":1,"32674":0,"32675":0,"32676":0,"32677":0,"32678":0,"32679":0,"32680":1,"32681":0,"32682":0,"32683":0,"32684":0,"32685":0,"32686":0,"32687":0,"32688":0,"32689":0,"32690":0,"32691":0,"32692":0,"32693":0,"32694":0,"32695":0,"32696":0,"32697":0,"32698":0,"32699":1,"32700":1,"32701":0,"32702":0,"32703":0,"32704":0,"32705":1,"32706":0,"32707":0,"32708":0,"32709":0,"32710":0,"32711":0,"32712":0,"32713":1,"32714":0,"32715":0,"32716":0,"32717":1,"32718":0,"32719":0,"32720":0,"32721":1,"32722":1,"32723":0,"32724":0,"32725":1,"32726":1,"32727":0,"32728":0,"32729":0,"32730":0,"32731":1,"32732":1,"32733":0,"32734":1,"32735":0,"32736":0,"32737":0,"32738":0,"32739":0,"32740":0,"32741":1,"32742":1,"32743":0,"32744":0,"32745":0,"32746":1,"32747":0,"32748":0,"32749":0,"32750":0,"32751":0,"32752":0,"32753":0,"32754":1,"32755":0,"32756":1,"32757":0,"32758":0,"32759":0,"32760":1,"32761":0,"32762":0,"32763":0,"32764":0,"32765":1,"32766":0,"32767":0,"32768":0,"32769":1,"32770":1,"32771":0,"32772":0,"32773":0,"32774":0,"32775":0,"32776":0,"32777":0,"32778":0,"32779":0,"32780":1,"32781":0,"32782":0,"32783":1,"32784":0,"32785":1,"32786":0,"32787":1,"32788":0,"32789":0,"32790":0,"32791":0,"32792":0,"32793":1,"32794":0,"32795":0,"32796":0,"32797":1,"32798":0,"32799":0,"32800":0,"32801":0,"32802":0,"32803":0,"32804":0,"32805":0,"32806":0,"32807":0,"32808":0,"32809":0,"32810":0,"32811":0,"32812":0,"32813":0,"32814":1,"32815":1,"32816":0,"32817":0,"32818":0,"32819":0,"32820":1,"32821":0,"32822":0,"32823":0,"32824":0,"32825":0,"32826":1,"32827":0,"32828":0,"32829":0,"32830":0,"32831":0,"32832":0,"32833":0,"32834":1,"32835":0,"32836":0,"32837":1,"32838":1,"32839":1,"32840":1,"32841":0,"32842":0,"32843":0,"32844":0,"32845":1,"32846":1,"32847":1,"32848":1,"32849":0,"32850":1,"32851":1,"32852":0,"32853":1,"32854":0,"32855":0,"32856":1,"32857":0,"32858":0,"32859":0,"32860":0,"32861":0,"32862":0,"32863":1,"32864":0,"32865":0,"32866":0,"32867":0,"32868":0,"32869":1,"32870":0,"32871":0,"32872":0,"32873":0,"32874":0,"32875":0,"32876":0,"32877":1,"32878":0,"32879":0,"32880":0,"32881":1,"32882":0,"32883":0,"32884":0,"32885":1,"32886":1,"32887":1,"32888":0,"32889":0,"32890":0,"32891":0,"32892":0,"32893":0,"32894":0,"32895":0,"32896":0,"32897":1,"32898":0,"32899":0,"32900":1,"32901":0,"32902":0,"32903":0,"32904":0,"32905":1,"32906":0,"32907":0,"32908":0,"32909":0,"32910":0,"32911":0,"32912":1,"32913":1,"32914":0,"32915":1,"32916":1,"32917":1,"32918":0,"32919":0,"32920":0,"32921":0,"32922":0,"32923":0,"32924":0,"32925":1,"32926":0,"32927":1,"32928":1,"32929":0,"32930":0,"32931":0,"32932":1,"32933":0,"32934":1,"32935":0,"32936":0,"32937":0,"32938":0,"32939":0,"32940":0,"32941":0,"32942":0,"32943":0,"32944":0,"32945":0,"32946":0,"32947":1,"32948":0,"32949":0,"32950":0,"32951":1,"32952":0,"32953":1,"32954":1,"32955":0,"32956":1,"32957":0,"32958":0,"32959":0,"32960":1,"32961":1,"32962":0,"32963":0,"32964":0,"32965":0,"32966":0,"32967":0,"32968":0,"32969":1,"32970":0,"32971":0,"32972":0,"32973":0,"32974":0,"32975":1,"32976":0,"32977":0,"32978":0,"32979":0,"32980":0,"32981":0,"32982":0,"32983":0,"32984":0,"32985":0,"32986":0,"32987":0,"32988":1,"32989":1,"32990":0,"32991":1,"32992":0,"32993":1,"32994":0,"32995":1,"32996":1,"32997":0,"32998":0,"32999":1,"33000":1,"33001":1,"33002":0,"33003":0,"33004":1,"33005":1,"33006":1,"33007":1,"33008":0,"33009":1,"33010":0,"33011":0,"33012":0,"33013":1,"33014":1,"33015":1,"33016":0,"33017":0,"33018":1,"33019":0,"33020":0,"33021":0,"33022":0,"33023":1,"33024":1,"33025":1,"33026":0,"33027":0,"33028":0,"33029":0,"33030":0,"33031":1,"33032":0,"33033":1,"33034":1,"33035":1,"33036":1,"33037":1,"33038":0,"33039":0,"33040":1,"33041":0,"33042":0,"33043":1,"33044":0,"33045":0,"33046":0,"33047":0,"33048":1,"33049":0,"33050":0,"33051":0,"33052":0,"33053":1,"33054":0,"33055":1,"33056":0,"33057":0,"33058":0,"33059":0,"33060":0,"33061":0,"33062":0,"33063":0,"33064":0,"33065":0,"33066":0,"33067":0,"33068":0,"33069":1,"33070":0,"33071":0,"33072":0,"33073":1,"33074":0,"33075":1,"33076":0,"33077":1,"33078":0,"33079":0,"33080":0,"33081":0,"33082":1,"33083":0,"33084":1,"33085":0,"33086":1,"33087":1,"33088":1,"33089":0,"33090":0,"33091":0,"33092":0,"33093":1,"33094":0,"33095":1,"33096":0,"33097":0,"33098":0,"33099":1,"33100":0,"33101":1,"33102":0,"33103":0,"33104":0,"33105":0,"33106":0,"33107":0,"33108":0,"33109":0,"33110":0,"33111":0,"33112":0,"33113":1,"33114":0,"33115":1,"33116":0,"33117":0,"33118":0,"33119":0,"33120":0,"33121":0,"33122":0,"33123":0,"33124":1,"33125":0,"33126":0,"33127":0,"33128":1,"33129":0,"33130":0,"33131":0,"33132":1,"33133":0,"33134":0,"33135":1,"33136":0,"33137":1,"33138":1,"33139":0,"33140":0,"33141":0,"33142":0,"33143":0,"33144":1,"33145":0,"33146":0,"33147":0,"33148":1,"33149":0,"33150":0,"33151":0,"33152":0,"33153":1,"33154":0,"33155":0,"33156":1,"33157":0,"33158":1,"33159":0,"33160":1,"33161":0,"33162":1,"33163":1,"33164":1,"33165":0,"33166":0,"33167":1,"33168":0,"33169":1,"33170":0,"33171":1,"33172":1,"33173":0,"33174":0,"33175":0,"33176":0,"33177":0,"33178":0,"33179":0,"33180":0,"33181":0,"33182":0,"33183":0,"33184":0,"33185":1,"33186":0,"33187":1,"33188":1,"33189":0,"33190":0,"33191":1,"33192":0,"33193":0,"33194":0,"33195":0,"33196":0,"33197":1,"33198":0,"33199":0,"33200":0,"33201":0,"33202":0,"33203":0,"33204":0,"33205":0,"33206":0,"33207":0,"33208":0,"33209":0,"33210":1,"33211":0,"33212":0,"33213":0,"33214":0,"33215":0,"33216":1,"33217":0,"33218":0,"33219":1,"33220":0,"33221":1,"33222":0,"33223":0,"33224":1,"33225":0,"33226":0,"33227":1,"33228":1,"33229":0,"33230":0,"33231":0,"33232":1,"33233":0,"33234":0,"33235":0,"33236":1,"33237":0,"33238":0,"33239":1,"33240":1,"33241":1,"33242":0,"33243":0,"33244":0,"33245":0,"33246":0,"33247":0,"33248":0,"33249":1,"33250":0,"33251":0,"33252":0,"33253":0,"33254":0,"33255":0,"33256":0,"33257":0,"33258":0,"33259":1,"33260":0,"33261":1,"33262":1,"33263":0,"33264":1,"33265":1,"33266":0,"33267":0,"33268":0,"33269":0,"33270":0,"33271":0,"33272":0,"33273":1,"33274":0,"33275":0,"33276":0,"33277":0,"33278":1,"33279":0,"33280":0,"33281":0,"33282":1,"33283":0,"33284":0,"33285":0,"33286":1,"33287":0,"33288":1,"33289":0,"33290":0,"33291":0,"33292":0,"33293":0,"33294":0,"33295":0,"33296":0,"33297":0,"33298":0,"33299":0,"33300":1,"33301":0,"33302":0,"33303":0,"33304":0,"33305":0,"33306":1,"33307":0,"33308":0,"33309":0,"33310":1,"33311":1,"33312":0,"33313":0,"33314":0,"33315":0,"33316":1,"33317":0,"33318":0,"33319":1,"33320":0,"33321":0,"33322":0,"33323":0,"33324":0,"33325":0,"33326":0,"33327":0,"33328":1,"33329":0,"33330":1,"33331":1,"33332":0,"33333":0,"33334":0,"33335":1,"33336":0,"33337":0,"33338":0,"33339":0,"33340":0,"33341":1,"33342":1,"33343":0,"33344":0,"33345":0,"33346":1,"33347":1,"33348":0,"33349":0,"33350":1,"33351":1,"33352":1,"33353":0,"33354":0,"33355":0,"33356":0,"33357":0,"33358":0,"33359":0,"33360":0,"33361":0,"33362":0,"33363":0,"33364":0,"33365":1,"33366":1,"33367":0,"33368":1,"33369":0,"33370":1,"33371":0,"33372":1,"33373":0,"33374":0,"33375":1,"33376":1,"33377":1,"33378":0,"33379":1,"33380":0,"33381":0,"33382":1,"33383":0,"33384":0,"33385":0,"33386":0,"33387":0,"33388":1,"33389":1,"33390":0,"33391":0,"33392":0,"33393":1,"33394":0,"33395":0,"33396":0,"33397":0,"33398":1,"33399":1,"33400":0,"33401":0,"33402":0,"33403":0,"33404":0,"33405":0,"33406":1,"33407":1,"33408":1,"33409":1,"33410":0,"33411":1,"33412":0,"33413":0,"33414":1,"33415":1,"33416":0,"33417":1,"33418":0,"33419":1,"33420":0,"33421":1,"33422":0,"33423":0,"33424":0,"33425":0,"33426":0,"33427":0,"33428":0,"33429":0,"33430":1,"33431":0,"33432":0,"33433":1,"33434":0,"33435":1,"33436":0,"33437":0,"33438":0,"33439":0,"33440":0,"33441":0,"33442":1,"33443":0,"33444":0,"33445":0,"33446":1,"33447":0,"33448":0,"33449":1,"33450":0,"33451":0,"33452":0,"33453":0,"33454":0,"33455":1,"33456":0,"33457":0,"33458":0,"33459":0,"33460":0,"33461":1,"33462":0,"33463":0,"33464":0,"33465":0,"33466":0,"33467":1,"33468":0,"33469":0,"33470":0,"33471":0,"33472":0,"33473":0,"33474":0,"33475":0,"33476":0,"33477":0,"33478":0,"33479":1,"33480":0,"33481":0,"33482":1,"33483":0,"33484":0,"33485":0,"33486":1,"33487":0,"33488":0,"33489":0,"33490":0,"33491":0,"33492":1,"33493":0,"33494":0,"33495":0,"33496":0,"33497":0,"33498":0,"33499":0,"33500":0,"33501":0,"33502":0,"33503":1,"33504":0,"33505":0,"33506":1,"33507":0,"33508":1,"33509":0,"33510":0,"33511":0,"33512":1,"33513":1,"33514":0,"33515":0,"33516":0,"33517":0,"33518":0,"33519":0,"33520":1,"33521":0,"33522":0,"33523":0,"33524":0,"33525":0,"33526":0,"33527":1,"33528":0,"33529":0,"33530":1,"33531":1,"33532":1,"33533":0,"33534":0,"33535":0,"33536":0,"33537":0,"33538":0,"33539":0,"33540":0,"33541":0,"33542":1,"33543":1,"33544":0,"33545":0,"33546":0,"33547":0,"33548":0,"33549":1,"33550":0,"33551":0,"33552":0,"33553":1,"33554":0,"33555":0,"33556":0,"33557":0,"33558":1,"33559":0,"33560":0,"33561":1,"33562":1,"33563":0,"33564":0,"33565":0,"33566":1,"33567":0,"33568":1,"33569":0,"33570":0,"33571":0,"33572":0,"33573":1,"33574":1,"33575":0,"33576":0,"33577":0,"33578":1,"33579":0,"33580":0,"33581":0,"33582":0,"33583":0,"33584":0,"33585":0,"33586":0,"33587":1,"33588":0,"33589":0,"33590":1,"33591":0,"33592":1,"33593":0,"33594":0,"33595":0,"33596":0,"33597":0,"33598":1,"33599":1,"33600":0,"33601":0,"33602":0,"33603":0,"33604":1,"33605":1,"33606":0,"33607":1,"33608":0,"33609":0,"33610":0,"33611":0,"33612":0,"33613":0,"33614":0,"33615":1,"33616":0,"33617":0,"33618":0,"33619":1,"33620":0,"33621":0,"33622":0,"33623":0,"33624":0,"33625":0,"33626":0,"33627":0,"33628":0,"33629":0,"33630":1,"33631":1,"33632":0,"33633":0,"33634":1,"33635":0,"33636":0,"33637":0,"33638":0,"33639":1,"33640":0,"33641":0,"33642":0,"33643":0,"33644":0,"33645":0,"33646":1,"33647":0,"33648":0,"33649":0,"33650":0,"33651":1,"33652":0,"33653":0,"33654":0,"33655":1,"33656":1,"33657":0,"33658":0,"33659":1,"33660":1,"33661":0,"33662":0,"33663":0,"33664":0,"33665":0,"33666":0,"33667":0,"33668":1,"33669":1,"33670":0,"33671":0,"33672":0,"33673":0,"33674":0,"33675":0,"33676":0,"33677":0,"33678":1,"33679":1,"33680":0,"33681":0,"33682":0,"33683":0,"33684":0,"33685":1,"33686":0,"33687":0,"33688":0,"33689":0,"33690":0,"33691":0,"33692":0,"33693":1,"33694":0,"33695":1,"33696":0,"33697":1,"33698":1,"33699":0,"33700":0,"33701":1,"33702":0,"33703":1,"33704":1,"33705":0,"33706":0,"33707":1,"33708":0,"33709":0,"33710":0,"33711":0,"33712":1,"33713":0,"33714":0,"33715":0,"33716":1,"33717":0,"33718":0,"33719":0,"33720":0,"33721":0,"33722":0,"33723":0,"33724":1,"33725":1,"33726":0,"33727":0,"33728":1,"33729":1,"33730":0,"33731":0,"33732":0,"33733":1,"33734":1,"33735":1,"33736":0,"33737":1,"33738":1,"33739":0,"33740":0,"33741":0,"33742":0,"33743":1,"33744":0,"33745":0,"33746":0,"33747":0,"33748":1,"33749":0,"33750":0,"33751":1,"33752":0,"33753":0,"33754":1,"33755":0,"33756":0,"33757":0,"33758":1,"33759":0,"33760":0,"33761":0,"33762":1,"33763":0,"33764":0,"33765":0,"33766":1,"33767":0,"33768":0,"33769":1,"33770":0,"33771":0,"33772":0,"33773":1,"33774":0,"33775":0,"33776":0,"33777":0,"33778":0,"33779":0,"33780":0,"33781":0,"33782":1,"33783":1,"33784":0,"33785":1,"33786":1,"33787":0,"33788":0,"33789":0,"33790":0,"33791":1,"33792":0,"33793":0,"33794":0,"33795":0,"33796":0,"33797":0,"33798":0,"33799":0,"33800":1,"33801":1,"33802":0,"33803":0,"33804":0,"33805":0,"33806":0,"33807":0,"33808":1,"33809":1,"33810":0,"33811":0,"33812":1,"33813":0,"33814":0,"33815":1,"33816":1,"33817":0,"33818":0,"33819":0,"33820":0,"33821":1,"33822":1,"33823":0,"33824":1,"33825":1,"33826":0,"33827":1,"33828":1,"33829":0,"33830":0,"33831":0,"33832":1,"33833":0,"33834":0,"33835":0,"33836":0,"33837":0,"33838":0,"33839":0,"33840":0,"33841":1,"33842":0,"33843":0,"33844":0,"33845":0,"33846":0,"33847":1,"33848":0,"33849":0,"33850":0,"33851":0,"33852":1,"33853":1,"33854":0,"33855":0,"33856":0,"33857":0,"33858":0,"33859":0,"33860":0,"33861":0,"33862":0,"33863":0,"33864":0,"33865":1,"33866":0,"33867":0,"33868":0,"33869":1,"33870":0,"33871":0,"33872":0,"33873":0,"33874":0,"33875":1,"33876":0,"33877":1,"33878":0,"33879":1,"33880":0,"33881":0,"33882":0,"33883":1,"33884":0,"33885":0,"33886":0,"33887":0,"33888":0,"33889":0,"33890":0,"33891":0,"33892":0,"33893":1,"33894":0,"33895":1,"33896":1,"33897":0,"33898":0,"33899":0,"33900":0,"33901":0,"33902":0,"33903":0,"33904":0,"33905":1,"33906":0,"33907":0,"33908":0,"33909":0,"33910":0,"33911":0,"33912":0,"33913":0,"33914":0,"33915":0,"33916":0,"33917":0,"33918":0,"33919":1,"33920":0,"33921":1,"33922":1,"33923":0,"33924":0,"33925":0,"33926":0,"33927":0,"33928":0,"33929":1,"33930":0,"33931":0,"33932":1,"33933":0,"33934":0,"33935":1,"33936":1,"33937":1,"33938":0,"33939":1,"33940":0,"33941":0,"33942":0,"33943":1,"33944":0,"33945":1,"33946":0,"33947":0,"33948":0,"33949":1,"33950":0,"33951":0,"33952":0,"33953":0,"33954":0,"33955":0,"33956":1,"33957":1,"33958":0,"33959":0,"33960":1,"33961":0,"33962":0,"33963":0,"33964":0,"33965":0,"33966":0,"33967":0,"33968":0,"33969":0,"33970":0,"33971":0,"33972":0,"33973":1,"33974":1,"33975":0,"33976":0,"33977":0,"33978":1,"33979":1,"33980":0,"33981":1,"33982":0,"33983":0,"33984":0,"33985":1,"33986":0,"33987":0,"33988":0,"33989":0,"33990":0,"33991":0,"33992":0,"33993":0,"33994":0,"33995":0,"33996":0,"33997":1,"33998":0,"33999":1,"34000":0,"34001":0,"34002":1,"34003":1,"34004":0,"34005":1,"34006":0,"34007":1,"34008":0,"34009":0,"34010":0,"34011":0,"34012":1,"34013":0,"34014":0,"34015":0,"34016":1,"34017":1,"34018":1,"34019":0,"34020":0,"34021":0,"34022":0,"34023":0,"34024":1,"34025":1,"34026":0,"34027":1,"34028":1,"34029":0,"34030":0,"34031":0,"34032":0,"34033":1,"34034":0,"34035":0,"34036":0,"34037":1,"34038":0,"34039":0,"34040":1,"34041":0,"34042":1,"34043":0,"34044":0,"34045":1,"34046":1,"34047":0,"34048":0,"34049":0,"34050":1,"34051":1,"34052":0,"34053":1,"34054":0,"34055":0,"34056":1,"34057":0,"34058":1,"34059":0,"34060":0,"34061":1,"34062":1,"34063":0,"34064":1,"34065":1,"34066":0,"34067":0,"34068":1,"34069":0,"34070":0,"34071":0,"34072":1,"34073":0,"34074":0,"34075":1,"34076":0,"34077":1,"34078":0,"34079":1,"34080":0,"34081":0,"34082":0,"34083":0,"34084":0,"34085":0,"34086":1,"34087":0,"34088":0,"34089":0,"34090":0,"34091":0,"34092":0,"34093":1,"34094":0,"34095":0,"34096":0,"34097":1,"34098":1,"34099":0,"34100":0,"34101":0,"34102":0,"34103":0,"34104":0,"34105":0,"34106":0,"34107":1,"34108":1,"34109":0,"34110":0,"34111":0,"34112":0,"34113":1,"34114":0,"34115":0,"34116":1,"34117":1,"34118":1,"34119":0,"34120":0,"34121":0,"34122":1,"34123":0,"34124":0,"34125":0,"34126":1,"34127":0,"34128":0,"34129":0,"34130":0,"34131":0,"34132":0,"34133":0,"34134":1,"34135":0,"34136":0,"34137":1,"34138":0,"34139":0,"34140":0,"34141":1,"34142":1,"34143":0,"34144":0,"34145":0,"34146":0,"34147":1,"34148":1,"34149":0,"34150":0,"34151":0,"34152":0,"34153":0,"34154":1,"34155":0,"34156":1,"34157":0,"34158":0,"34159":0,"34160":0,"34161":0,"34162":0,"34163":0,"34164":0,"34165":1,"34166":0,"34167":0,"34168":0,"34169":0,"34170":1,"34171":0,"34172":0,"34173":1,"34174":0,"34175":0,"34176":0,"34177":0,"34178":1,"34179":0,"34180":0,"34181":1,"34182":0,"34183":0,"34184":1,"34185":0,"34186":1,"34187":1,"34188":1,"34189":0,"34190":1,"34191":1,"34192":0,"34193":0,"34194":0,"34195":0,"34196":1,"34197":0,"34198":0,"34199":0,"34200":0,"34201":1,"34202":0,"34203":0,"34204":0,"34205":0,"34206":1,"34207":1,"34208":1,"34209":0,"34210":0,"34211":1,"34212":0,"34213":1,"34214":1,"34215":0,"34216":0,"34217":0,"34218":0,"34219":1,"34220":0,"34221":0,"34222":1,"34223":0,"34224":0,"34225":0,"34226":0,"34227":0,"34228":1,"34229":0,"34230":0,"34231":0,"34232":0,"34233":1,"34234":0,"34235":0,"34236":1,"34237":0,"34238":0,"34239":0,"34240":0,"34241":0,"34242":0,"34243":1,"34244":0,"34245":1,"34246":0,"34247":0,"34248":0,"34249":0,"34250":0,"34251":0,"34252":0,"34253":0,"34254":0,"34255":1,"34256":0,"34257":0,"34258":0,"34259":1,"34260":1,"34261":0,"34262":0,"34263":0,"34264":0,"34265":0,"34266":1,"34267":0,"34268":0,"34269":0,"34270":0,"34271":1,"34272":0,"34273":0,"34274":0,"34275":0,"34276":0,"34277":1,"34278":0,"34279":0,"34280":0,"34281":0,"34282":0,"34283":0,"34284":0,"34285":0,"34286":0,"34287":0,"34288":0,"34289":0,"34290":1,"34291":0,"34292":0,"34293":0,"34294":0,"34295":0,"34296":0,"34297":1,"34298":1,"34299":0,"34300":1,"34301":0,"34302":0,"34303":0,"34304":0,"34305":0,"34306":0,"34307":0,"34308":0,"34309":0,"34310":1,"34311":0,"34312":0,"34313":0,"34314":1,"34315":0,"34316":1,"34317":1,"34318":0,"34319":0,"34320":0,"34321":0,"34322":0,"34323":0,"34324":0,"34325":0,"34326":0,"34327":0,"34328":0,"34329":0,"34330":0,"34331":0,"34332":0,"34333":0,"34334":1,"34335":0,"34336":0,"34337":1,"34338":0,"34339":0,"34340":1,"34341":0,"34342":1,"34343":1,"34344":0,"34345":0,"34346":0,"34347":0,"34348":1,"34349":0,"34350":0,"34351":0,"34352":0,"34353":0,"34354":1,"34355":0,"34356":0,"34357":0,"34358":0,"34359":0,"34360":1,"34361":1,"34362":0,"34363":0,"34364":0,"34365":1,"34366":0,"34367":0,"34368":0,"34369":0,"34370":0,"34371":0,"34372":0,"34373":0,"34374":0,"34375":0,"34376":0,"34377":0,"34378":0,"34379":0,"34380":0,"34381":1,"34382":1,"34383":0,"34384":0,"34385":0,"34386":1,"34387":0,"34388":1,"34389":1,"34390":1,"34391":0,"34392":0,"34393":1,"34394":0,"34395":0,"34396":1,"34397":0,"34398":0,"34399":1,"34400":1,"34401":0,"34402":0,"34403":1,"34404":0,"34405":0,"34406":0,"34407":0,"34408":0,"34409":0,"34410":1,"34411":1,"34412":0,"34413":0,"34414":0,"34415":1,"34416":0,"34417":0,"34418":0,"34419":1,"34420":0,"34421":0,"34422":0,"34423":0,"34424":0,"34425":0,"34426":0,"34427":0,"34428":1,"34429":0,"34430":0,"34431":0,"34432":1,"34433":0,"34434":0,"34435":1,"34436":0,"34437":1,"34438":0,"34439":0,"34440":0,"34441":0,"34442":0,"34443":1,"34444":0,"34445":0,"34446":0,"34447":0,"34448":0,"34449":0,"34450":1,"34451":0,"34452":0,"34453":0,"34454":0,"34455":1,"34456":1,"34457":0,"34458":1,"34459":0,"34460":1,"34461":0,"34462":0,"34463":0,"34464":0,"34465":0,"34466":0,"34467":0,"34468":0,"34469":0,"34470":0,"34471":0,"34472":0,"34473":0,"34474":0,"34475":0,"34476":0,"34477":1,"34478":0,"34479":0,"34480":1,"34481":0,"34482":0,"34483":0,"34484":0,"34485":1,"34486":1,"34487":1,"34488":0,"34489":0,"34490":0,"34491":0,"34492":0,"34493":1,"34494":0,"34495":1,"34496":0,"34497":0,"34498":0,"34499":0,"34500":0,"34501":1,"34502":1,"34503":0,"34504":1,"34505":0,"34506":0,"34507":0,"34508":1,"34509":0,"34510":1,"34511":1,"34512":0,"34513":0,"34514":0,"34515":1,"34516":0,"34517":1,"34518":0,"34519":0,"34520":1,"34521":0,"34522":1,"34523":1,"34524":0,"34525":1,"34526":0,"34527":1,"34528":0,"34529":0,"34530":0,"34531":0,"34532":0,"34533":0,"34534":0,"34535":1,"34536":1,"34537":0,"34538":0,"34539":0,"34540":1,"34541":0,"34542":0,"34543":1,"34544":0,"34545":0,"34546":1,"34547":0,"34548":0,"34549":0,"34550":1,"34551":0,"34552":0,"34553":1,"34554":0,"34555":0,"34556":0,"34557":0,"34558":0,"34559":0,"34560":0,"34561":1,"34562":0,"34563":0,"34564":0,"34565":0,"34566":0,"34567":0,"34568":0,"34569":0,"34570":1,"34571":0,"34572":0,"34573":1,"34574":0,"34575":1,"34576":0,"34577":0,"34578":0,"34579":1,"34580":0,"34581":1,"34582":0,"34583":0,"34584":1,"34585":0,"34586":0,"34587":0,"34588":0,"34589":0,"34590":1,"34591":1,"34592":0,"34593":0,"34594":0,"34595":0,"34596":0,"34597":0,"34598":1,"34599":1,"34600":0,"34601":0,"34602":0,"34603":0,"34604":0,"34605":1,"34606":0,"34607":0,"34608":1,"34609":0,"34610":0,"34611":0,"34612":0,"34613":1,"34614":0,"34615":0,"34616":0,"34617":0,"34618":0,"34619":0,"34620":0,"34621":1,"34622":0,"34623":1,"34624":0,"34625":1,"34626":0,"34627":0,"34628":0,"34629":0,"34630":0,"34631":0,"34632":0,"34633":0,"34634":0,"34635":1,"34636":0,"34637":0,"34638":0,"34639":1,"34640":0,"34641":0,"34642":0,"34643":1,"34644":0,"34645":1,"34646":0,"34647":0,"34648":0,"34649":0,"34650":0,"34651":0,"34652":0,"34653":1,"34654":1,"34655":0,"34656":1,"34657":1,"34658":0,"34659":0,"34660":1,"34661":0,"34662":0,"34663":0,"34664":0,"34665":0,"34666":1,"34667":0,"34668":0,"34669":0,"34670":0,"34671":1,"34672":0,"34673":0,"34674":0,"34675":0,"34676":0,"34677":0,"34678":0,"34679":0,"34680":0,"34681":1,"34682":1,"34683":0,"34684":0,"34685":1,"34686":1,"34687":0,"34688":0,"34689":0,"34690":0,"34691":1,"34692":0,"34693":0,"34694":0,"34695":0,"34696":0,"34697":0,"34698":1,"34699":0,"34700":0,"34701":0,"34702":0,"34703":1,"34704":0,"34705":0,"34706":0,"34707":0,"34708":0,"34709":0,"34710":1,"34711":0,"34712":0,"34713":0,"34714":0,"34715":0,"34716":0,"34717":0,"34718":0,"34719":0,"34720":1,"34721":1,"34722":0,"34723":1,"34724":0,"34725":0,"34726":0,"34727":0,"34728":1,"34729":1,"34730":0,"34731":0,"34732":1,"34733":0,"34734":1,"34735":0,"34736":1,"34737":0,"34738":0,"34739":0,"34740":0,"34741":0,"34742":0,"34743":0,"34744":0,"34745":0,"34746":0,"34747":0,"34748":0,"34749":1,"34750":0,"34751":1,"34752":0,"34753":0,"34754":1,"34755":1,"34756":1,"34757":0,"34758":0,"34759":1,"34760":0,"34761":0,"34762":0,"34763":1,"34764":0,"34765":0,"34766":0,"34767":0,"34768":0,"34769":0,"34770":0,"34771":0,"34772":1,"34773":1,"34774":0,"34775":0,"34776":0,"34777":0,"34778":0,"34779":0,"34780":1,"34781":0,"34782":0,"34783":0,"34784":0,"34785":0,"34786":0,"34787":1,"34788":0,"34789":1,"34790":0,"34791":0,"34792":1,"34793":0,"34794":1,"34795":0,"34796":0,"34797":0,"34798":1,"34799":0,"34800":0,"34801":0,"34802":0,"34803":0,"34804":0,"34805":0,"34806":0,"34807":0,"34808":0,"34809":0,"34810":0,"34811":1,"34812":0,"34813":1,"34814":1,"34815":1,"34816":0,"34817":0,"34818":0,"34819":0,"34820":0,"34821":0,"34822":0,"34823":0,"34824":0,"34825":0,"34826":1,"34827":0,"34828":0,"34829":1,"34830":1,"34831":1,"34832":0,"34833":0,"34834":1,"34835":0,"34836":0,"34837":1,"34838":1,"34839":0,"34840":0,"34841":1,"34842":0,"34843":0,"34844":0,"34845":0,"34846":0,"34847":1,"34848":1,"34849":0,"34850":1,"34851":0,"34852":0,"34853":0,"34854":1,"34855":1,"34856":0,"34857":0,"34858":1,"34859":0,"34860":0,"34861":0,"34862":0,"34863":0,"34864":0,"34865":0,"34866":0,"34867":1,"34868":0,"34869":0,"34870":1,"34871":0,"34872":0,"34873":0,"34874":0,"34875":1,"34876":1,"34877":0,"34878":0,"34879":1,"34880":0,"34881":0,"34882":0,"34883":0,"34884":0,"34885":0,"34886":0,"34887":1,"34888":0,"34889":0,"34890":1,"34891":0,"34892":0,"34893":0,"34894":0,"34895":0,"34896":0,"34897":1,"34898":0,"34899":0,"34900":0,"34901":1,"34902":0,"34903":0,"34904":0,"34905":0,"34906":0,"34907":1,"34908":0,"34909":1,"34910":0,"34911":1,"34912":0,"34913":0,"34914":1,"34915":0,"34916":0,"34917":0,"34918":0,"34919":0,"34920":1,"34921":0,"34922":1,"34923":0,"34924":0,"34925":0,"34926":0,"34927":0,"34928":0,"34929":0,"34930":1,"34931":0,"34932":1,"34933":0,"34934":0,"34935":0,"34936":0,"34937":0,"34938":1,"34939":0,"34940":0,"34941":1,"34942":1,"34943":0,"34944":0,"34945":0,"34946":0,"34947":0,"34948":1,"34949":1,"34950":0,"34951":0,"34952":0,"34953":1,"34954":0,"34955":0,"34956":0,"34957":1,"34958":0,"34959":0,"34960":0,"34961":0,"34962":0,"34963":0,"34964":0,"34965":0,"34966":1,"34967":0,"34968":1,"34969":0,"34970":0,"34971":0,"34972":0,"34973":0,"34974":0,"34975":1,"34976":0,"34977":0,"34978":0,"34979":0,"34980":0,"34981":0,"34982":1,"34983":0,"34984":0,"34985":1,"34986":0,"34987":0,"34988":1,"34989":1,"34990":0,"34991":0,"34992":0,"34993":1,"34994":0,"34995":0,"34996":1,"34997":0,"34998":1,"34999":0,"35000":0,"35001":0,"35002":1,"35003":0,"35004":1,"35005":0,"35006":0,"35007":0,"35008":0,"35009":0,"35010":0,"35011":0,"35012":1,"35013":0,"35014":1,"35015":0,"35016":1,"35017":0,"35018":0,"35019":1,"35020":1,"35021":0,"35022":0,"35023":0,"35024":0,"35025":1,"35026":1,"35027":0,"35028":0,"35029":0,"35030":0,"35031":0,"35032":0,"35033":0,"35034":0,"35035":0,"35036":0,"35037":0,"35038":0,"35039":0,"35040":0,"35041":0,"35042":1,"35043":0,"35044":0,"35045":0,"35046":0,"35047":0,"35048":0,"35049":0,"35050":0,"35051":1,"35052":0,"35053":0,"35054":0,"35055":0,"35056":0,"35057":0,"35058":0,"35059":0,"35060":0,"35061":0,"35062":0,"35063":0,"35064":1,"35065":0,"35066":0,"35067":0,"35068":0,"35069":0,"35070":0,"35071":0,"35072":0,"35073":0,"35074":0,"35075":1,"35076":1,"35077":0,"35078":0,"35079":0,"35080":1,"35081":0,"35082":0,"35083":0,"35084":0,"35085":0,"35086":0,"35087":0,"35088":0,"35089":0,"35090":0,"35091":0,"35092":0,"35093":1,"35094":1,"35095":0,"35096":1,"35097":0,"35098":0,"35099":1,"35100":1,"35101":0,"35102":0,"35103":0,"35104":0,"35105":0,"35106":0,"35107":0,"35108":0,"35109":1,"35110":0,"35111":0,"35112":1,"35113":0,"35114":1,"35115":1,"35116":1,"35117":1,"35118":0,"35119":0,"35120":0,"35121":1,"35122":0,"35123":1,"35124":0,"35125":1,"35126":0,"35127":0,"35128":0,"35129":0,"35130":0,"35131":0,"35132":0,"35133":1,"35134":0,"35135":0,"35136":1,"35137":0,"35138":0,"35139":0,"35140":0,"35141":0,"35142":0,"35143":0,"35144":0,"35145":0,"35146":1,"35147":1,"35148":1,"35149":0,"35150":0,"35151":0,"35152":1,"35153":0,"35154":0,"35155":0,"35156":0,"35157":1,"35158":1,"35159":1,"35160":1,"35161":0,"35162":0,"35163":1,"35164":1,"35165":1,"35166":0,"35167":0,"35168":0,"35169":0,"35170":0,"35171":0,"35172":1,"35173":0,"35174":0,"35175":0,"35176":0,"35177":1,"35178":0,"35179":1,"35180":0,"35181":0,"35182":1,"35183":0,"35184":0,"35185":0,"35186":0,"35187":0,"35188":0,"35189":0,"35190":0,"35191":1,"35192":0,"35193":0,"35194":0,"35195":0,"35196":0,"35197":0,"35198":0,"35199":1,"35200":1,"35201":1,"35202":0,"35203":0,"35204":0,"35205":1,"35206":0,"35207":1,"35208":0,"35209":0,"35210":0,"35211":0,"35212":0,"35213":1,"35214":0,"35215":0,"35216":1,"35217":0,"35218":0,"35219":1,"35220":1,"35221":0,"35222":0,"35223":0,"35224":0,"35225":1,"35226":0,"35227":0,"35228":0,"35229":1,"35230":0,"35231":0,"35232":1,"35233":1,"35234":0,"35235":0,"35236":0,"35237":0,"35238":0,"35239":0,"35240":0,"35241":0,"35242":0,"35243":1,"35244":0,"35245":0,"35246":0,"35247":0,"35248":0,"35249":0,"35250":0,"35251":0,"35252":1,"35253":0,"35254":0,"35255":1,"35256":1,"35257":1,"35258":0,"35259":0,"35260":0,"35261":0,"35262":0,"35263":0,"35264":0,"35265":0,"35266":0,"35267":0,"35268":1,"35269":0,"35270":0,"35271":0,"35272":0,"35273":1,"35274":0,"35275":0,"35276":0,"35277":0,"35278":0,"35279":0,"35280":1,"35281":0,"35282":0,"35283":0,"35284":0,"35285":0,"35286":0,"35287":1,"35288":0,"35289":0,"35290":0,"35291":0,"35292":0,"35293":1,"35294":0,"35295":0,"35296":1,"35297":1,"35298":0,"35299":0,"35300":0,"35301":0,"35302":0,"35303":1,"35304":0,"35305":0,"35306":0,"35307":0,"35308":0,"35309":1,"35310":0,"35311":1,"35312":0,"35313":0,"35314":1,"35315":1,"35316":0,"35317":0,"35318":1,"35319":0,"35320":1,"35321":0,"35322":1,"35323":0,"35324":1,"35325":0,"35326":0,"35327":1,"35328":0,"35329":0,"35330":0,"35331":0,"35332":0,"35333":0,"35334":0,"35335":0,"35336":1,"35337":0,"35338":0,"35339":0,"35340":0,"35341":0,"35342":1,"35343":0,"35344":0,"35345":0,"35346":0,"35347":0,"35348":1,"35349":0,"35350":1,"35351":1,"35352":1,"35353":1,"35354":0,"35355":0,"35356":0,"35357":0,"35358":0,"35359":0,"35360":0,"35361":0,"35362":0,"35363":0,"35364":0,"35365":0,"35366":0,"35367":1,"35368":0,"35369":1,"35370":0,"35371":1,"35372":1,"35373":0,"35374":0,"35375":0,"35376":1,"35377":1,"35378":0,"35379":1,"35380":1,"35381":1,"35382":0,"35383":0,"35384":1,"35385":0,"35386":0,"35387":0,"35388":1,"35389":0,"35390":0,"35391":0,"35392":0,"35393":1,"35394":0,"35395":0,"35396":0,"35397":0,"35398":0,"35399":0,"35400":0,"35401":1,"35402":0,"35403":1,"35404":1,"35405":0,"35406":1,"35407":0,"35408":0,"35409":0,"35410":0,"35411":0,"35412":0,"35413":1,"35414":0,"35415":1,"35416":0,"35417":0,"35418":0,"35419":0,"35420":0,"35421":0,"35422":0,"35423":0,"35424":1,"35425":0,"35426":0,"35427":0,"35428":0,"35429":1,"35430":0,"35431":0,"35432":0,"35433":0,"35434":0,"35435":1,"35436":0,"35437":0,"35438":0,"35439":0,"35440":0,"35441":0,"35442":0,"35443":0,"35444":1,"35445":1,"35446":0,"35447":0,"35448":0,"35449":0,"35450":0,"35451":0,"35452":0,"35453":0,"35454":0,"35455":0,"35456":0,"35457":0,"35458":0,"35459":1,"35460":1,"35461":0,"35462":1,"35463":0,"35464":0,"35465":1,"35466":0,"35467":1,"35468":0,"35469":0,"35470":0,"35471":0,"35472":0,"35473":0,"35474":0,"35475":0,"35476":1,"35477":0,"35478":0,"35479":0,"35480":1,"35481":1,"35482":0,"35483":1,"35484":0,"35485":0,"35486":0,"35487":1,"35488":0,"35489":0,"35490":0,"35491":0,"35492":0,"35493":0,"35494":0,"35495":0,"35496":1,"35497":1,"35498":0,"35499":0,"35500":0,"35501":0,"35502":0,"35503":0,"35504":0,"35505":1,"35506":1,"35507":0,"35508":1,"35509":0,"35510":0,"35511":1,"35512":1,"35513":0,"35514":0,"35515":0,"35516":0,"35517":1,"35518":0,"35519":0,"35520":0,"35521":1,"35522":1,"35523":0,"35524":0,"35525":0,"35526":0,"35527":1,"35528":0,"35529":0,"35530":0,"35531":0,"35532":1,"35533":0,"35534":0,"35535":0,"35536":0,"35537":0,"35538":0,"35539":0,"35540":0,"35541":0,"35542":0,"35543":0,"35544":0,"35545":0,"35546":0,"35547":0,"35548":1,"35549":1,"35550":0,"35551":0,"35552":0,"35553":0,"35554":1,"35555":0,"35556":0,"35557":0,"35558":0,"35559":0,"35560":0,"35561":0,"35562":0,"35563":1,"35564":0,"35565":1,"35566":0,"35567":0,"35568":0,"35569":0,"35570":1,"35571":0,"35572":1,"35573":0,"35574":0,"35575":0,"35576":1,"35577":0,"35578":1,"35579":1,"35580":0,"35581":1,"35582":0,"35583":0,"35584":1,"35585":0,"35586":1,"35587":1,"35588":0,"35589":0,"35590":0,"35591":0,"35592":0,"35593":0,"35594":0,"35595":1,"35596":0,"35597":1,"35598":1,"35599":1,"35600":1,"35601":0,"35602":0,"35603":0,"35604":0,"35605":0,"35606":0,"35607":0,"35608":1,"35609":0,"35610":0,"35611":0,"35612":1,"35613":0,"35614":0,"35615":0,"35616":0,"35617":0,"35618":0,"35619":0,"35620":1,"35621":0,"35622":0,"35623":1,"35624":0,"35625":0,"35626":0,"35627":1,"35628":1,"35629":0,"35630":0,"35631":1,"35632":0,"35633":0,"35634":1,"35635":0,"35636":0,"35637":0,"35638":1,"35639":0,"35640":0,"35641":0,"35642":0,"35643":0,"35644":0,"35645":0,"35646":0,"35647":0,"35648":0,"35649":1,"35650":0,"35651":0,"35652":1,"35653":0,"35654":0,"35655":0,"35656":0,"35657":1,"35658":1,"35659":0,"35660":0,"35661":0,"35662":0,"35663":0,"35664":0,"35665":0,"35666":0,"35667":0,"35668":1,"35669":0,"35670":0,"35671":0,"35672":0,"35673":1,"35674":1,"35675":0,"35676":0,"35677":0,"35678":0,"35679":1,"35680":0,"35681":0,"35682":0,"35683":1,"35684":0,"35685":1,"35686":0,"35687":0,"35688":0,"35689":0,"35690":0,"35691":0,"35692":0,"35693":0,"35694":0,"35695":0,"35696":1,"35697":0,"35698":1,"35699":0,"35700":1,"35701":0,"35702":0,"35703":1,"35704":0,"35705":0,"35706":1,"35707":1,"35708":0,"35709":0,"35710":0,"35711":0,"35712":1,"35713":1,"35714":0,"35715":0,"35716":0,"35717":0,"35718":0,"35719":0,"35720":1,"35721":1,"35722":1,"35723":0,"35724":0,"35725":0,"35726":0,"35727":0,"35728":0,"35729":0,"35730":0,"35731":0,"35732":0,"35733":0,"35734":0,"35735":0,"35736":1,"35737":1,"35738":1,"35739":0,"35740":0,"35741":1,"35742":0,"35743":0,"35744":0,"35745":0,"35746":1,"35747":0,"35748":0,"35749":0,"35750":0,"35751":0,"35752":0,"35753":0,"35754":1,"35755":0,"35756":0,"35757":1,"35758":0,"35759":0,"35760":1,"35761":0,"35762":0,"35763":0,"35764":0,"35765":1,"35766":0,"35767":1,"35768":0,"35769":0,"35770":1,"35771":0,"35772":0,"35773":0,"35774":0,"35775":0,"35776":0,"35777":0,"35778":0,"35779":1,"35780":0,"35781":0,"35782":0,"35783":1,"35784":1,"35785":1,"35786":0,"35787":0,"35788":1,"35789":0,"35790":0,"35791":1,"35792":0,"35793":0,"35794":0,"35795":0,"35796":0,"35797":0,"35798":0,"35799":1,"35800":1,"35801":0,"35802":0,"35803":1,"35804":0,"35805":0,"35806":0,"35807":0,"35808":1,"35809":1,"35810":0,"35811":1,"35812":0,"35813":0,"35814":0,"35815":1,"35816":1,"35817":0,"35818":1,"35819":0,"35820":1,"35821":0,"35822":1,"35823":0,"35824":1,"35825":0,"35826":1,"35827":0,"35828":0,"35829":0,"35830":1,"35831":0,"35832":1,"35833":0,"35834":1,"35835":0,"35836":0,"35837":0,"35838":0,"35839":0,"35840":1,"35841":0,"35842":1,"35843":1,"35844":1,"35845":0,"35846":0,"35847":0,"35848":0,"35849":1,"35850":0,"35851":0,"35852":0,"35853":0,"35854":0,"35855":0,"35856":0,"35857":0,"35858":0,"35859":1,"35860":0,"35861":0,"35862":0,"35863":0,"35864":0,"35865":1,"35866":0,"35867":0,"35868":0,"35869":0,"35870":1,"35871":0,"35872":0,"35873":0,"35874":0,"35875":1,"35876":1,"35877":1,"35878":1,"35879":1,"35880":0,"35881":0,"35882":0,"35883":0,"35884":1,"35885":0,"35886":1,"35887":0,"35888":0,"35889":0,"35890":0,"35891":0,"35892":0,"35893":0,"35894":0,"35895":0,"35896":0,"35897":1,"35898":0,"35899":0,"35900":0,"35901":0,"35902":0,"35903":0,"35904":0,"35905":1,"35906":1,"35907":0,"35908":0,"35909":0,"35910":0,"35911":0,"35912":1,"35913":0,"35914":0,"35915":0,"35916":1,"35917":1,"35918":0,"35919":1,"35920":1,"35921":0,"35922":0,"35923":0,"35924":0,"35925":0,"35926":0,"35927":0,"35928":0,"35929":0,"35930":0,"35931":0,"35932":0,"35933":0,"35934":1,"35935":0,"35936":0,"35937":0,"35938":0,"35939":0,"35940":1,"35941":0,"35942":1,"35943":0,"35944":0,"35945":0,"35946":1,"35947":0,"35948":0,"35949":0,"35950":0,"35951":0,"35952":1,"35953":0,"35954":0,"35955":1,"35956":0,"35957":0,"35958":0,"35959":0,"35960":0,"35961":0,"35962":0,"35963":0,"35964":0,"35965":0,"35966":0,"35967":0,"35968":0,"35969":1,"35970":1,"35971":0,"35972":1,"35973":0,"35974":1,"35975":1,"35976":0,"35977":0,"35978":0,"35979":0,"35980":0,"35981":0,"35982":1,"35983":0,"35984":0,"35985":1,"35986":0,"35987":0,"35988":0,"35989":0,"35990":1,"35991":0,"35992":0,"35993":1,"35994":0,"35995":0,"35996":1,"35997":1,"35998":0,"35999":0,"36000":1,"36001":0,"36002":1,"36003":1,"36004":1,"36005":0,"36006":0,"36007":1,"36008":0,"36009":0,"36010":0,"36011":0,"36012":1,"36013":0,"36014":1,"36015":0,"36016":0,"36017":0,"36018":0,"36019":0,"36020":1,"36021":0,"36022":0,"36023":1,"36024":0,"36025":1,"36026":0,"36027":0,"36028":0,"36029":1,"36030":0,"36031":0,"36032":0,"36033":1,"36034":1,"36035":0,"36036":0,"36037":0,"36038":1,"36039":0,"36040":0,"36041":0,"36042":0,"36043":0,"36044":0,"36045":0,"36046":0,"36047":0,"36048":1,"36049":0,"36050":1,"36051":0,"36052":0,"36053":0,"36054":0,"36055":0,"36056":0,"36057":0,"36058":1,"36059":1,"36060":0,"36061":0,"36062":0,"36063":0,"36064":0,"36065":1,"36066":0,"36067":0,"36068":0,"36069":0,"36070":0,"36071":1,"36072":0,"36073":0,"36074":0,"36075":0,"36076":1,"36077":0,"36078":0,"36079":0,"36080":0,"36081":1,"36082":0,"36083":0,"36084":0,"36085":1,"36086":0,"36087":0,"36088":0,"36089":0,"36090":1,"36091":0,"36092":0,"36093":0,"36094":0,"36095":0,"36096":0,"36097":0,"36098":1,"36099":0,"36100":0,"36101":0,"36102":0,"36103":0,"36104":1,"36105":1,"36106":1,"36107":0,"36108":0,"36109":0,"36110":0,"36111":1,"36112":0,"36113":0,"36114":1,"36115":0,"36116":1,"36117":0,"36118":0,"36119":0,"36120":0,"36121":0,"36122":0,"36123":1,"36124":0,"36125":1,"36126":0,"36127":0,"36128":0,"36129":0,"36130":1,"36131":0,"36132":0,"36133":0,"36134":0,"36135":1,"36136":0,"36137":0,"36138":0,"36139":0,"36140":0,"36141":0,"36142":0,"36143":0,"36144":0,"36145":1,"36146":0,"36147":0,"36148":0,"36149":0,"36150":1,"36151":0,"36152":0,"36153":1,"36154":0,"36155":0,"36156":0,"36157":0,"36158":0,"36159":0,"36160":0,"36161":0,"36162":1,"36163":0,"36164":1,"36165":1,"36166":1,"36167":1,"36168":0,"36169":0,"36170":1,"36171":1,"36172":0,"36173":0,"36174":0,"36175":0,"36176":0,"36177":0,"36178":0,"36179":1,"36180":1,"36181":0,"36182":1,"36183":0,"36184":1,"36185":0,"36186":0,"36187":0,"36188":0,"36189":0,"36190":0,"36191":0,"36192":1,"36193":0,"36194":0,"36195":0,"36196":0,"36197":0,"36198":0,"36199":0,"36200":1,"36201":0,"36202":0,"36203":0,"36204":0,"36205":0,"36206":0,"36207":0,"36208":0,"36209":0,"36210":1,"36211":0,"36212":0,"36213":0,"36214":1,"36215":0,"36216":1,"36217":0,"36218":0,"36219":0,"36220":1,"36221":1,"36222":0,"36223":0,"36224":0,"36225":0,"36226":1,"36227":0,"36228":0,"36229":0,"36230":0,"36231":0,"36232":1,"36233":0,"36234":0,"36235":1,"36236":0,"36237":0,"36238":1,"36239":0,"36240":0,"36241":1,"36242":0,"36243":1,"36244":0,"36245":0,"36246":0,"36247":1,"36248":0,"36249":0,"36250":0,"36251":0,"36252":0,"36253":0,"36254":0,"36255":1,"36256":0,"36257":0,"36258":0,"36259":0,"36260":0,"36261":0,"36262":0,"36263":1,"36264":1,"36265":1,"36266":1,"36267":0,"36268":0,"36269":0,"36270":0,"36271":1,"36272":0,"36273":0,"36274":1,"36275":0,"36276":0,"36277":1,"36278":0,"36279":0,"36280":0,"36281":0,"36282":0,"36283":1,"36284":1,"36285":1,"36286":1,"36287":0,"36288":0,"36289":0,"36290":0,"36291":0,"36292":0,"36293":0,"36294":0,"36295":0,"36296":1,"36297":0,"36298":0,"36299":0,"36300":0,"36301":1,"36302":0,"36303":0,"36304":0,"36305":1,"36306":1,"36307":1,"36308":1,"36309":0,"36310":0,"36311":0,"36312":0,"36313":0,"36314":0,"36315":0,"36316":0,"36317":0,"36318":1,"36319":0,"36320":1,"36321":0,"36322":1,"36323":1,"36324":0,"36325":0,"36326":0,"36327":0,"36328":0,"36329":0,"36330":1,"36331":1,"36332":0,"36333":1,"36334":0,"36335":0,"36336":0,"36337":0,"36338":0,"36339":1,"36340":0,"36341":0,"36342":0,"36343":0,"36344":1,"36345":1,"36346":0,"36347":1,"36348":0,"36349":1,"36350":0,"36351":1,"36352":1,"36353":0,"36354":1,"36355":0,"36356":1,"36357":0,"36358":1,"36359":0,"36360":0,"36361":0,"36362":0,"36363":0,"36364":1,"36365":0,"36366":1,"36367":0,"36368":0,"36369":0,"36370":0,"36371":1,"36372":0,"36373":0,"36374":0,"36375":0,"36376":1,"36377":0,"36378":1,"36379":1,"36380":0,"36381":0,"36382":0,"36383":0,"36384":0,"36385":0,"36386":0,"36387":0,"36388":1,"36389":0,"36390":0,"36391":0,"36392":1,"36393":0,"36394":1,"36395":1,"36396":0,"36397":1,"36398":0,"36399":1,"36400":1,"36401":1,"36402":0,"36403":1,"36404":0,"36405":0,"36406":0,"36407":0,"36408":0,"36409":0,"36410":0,"36411":0,"36412":0,"36413":1,"36414":0,"36415":1,"36416":0,"36417":0,"36418":0,"36419":0,"36420":0,"36421":0,"36422":0,"36423":0,"36424":0,"36425":0,"36426":0,"36427":0,"36428":0,"36429":1,"36430":0,"36431":0,"36432":0,"36433":0,"36434":0,"36435":0,"36436":0,"36437":0,"36438":0,"36439":0,"36440":0,"36441":0,"36442":0,"36443":1,"36444":1,"36445":0,"36446":1,"36447":1,"36448":0,"36449":0,"36450":0,"36451":1,"36452":0,"36453":0,"36454":1,"36455":0,"36456":0,"36457":0,"36458":0,"36459":0,"36460":0,"36461":0,"36462":0,"36463":0,"36464":0,"36465":0,"36466":0,"36467":0,"36468":0,"36469":1,"36470":0,"36471":0,"36472":0,"36473":0,"36474":0,"36475":0,"36476":0,"36477":0,"36478":1,"36479":0,"36480":0,"36481":0,"36482":0,"36483":0,"36484":0,"36485":0,"36486":0,"36487":0,"36488":0,"36489":0,"36490":0,"36491":0,"36492":1,"36493":1,"36494":0,"36495":0,"36496":1,"36497":0,"36498":0,"36499":0,"36500":0,"36501":0,"36502":0,"36503":0,"36504":0,"36505":0,"36506":1,"36507":1,"36508":0,"36509":1,"36510":1,"36511":0,"36512":0,"36513":0,"36514":1,"36515":0,"36516":0,"36517":0,"36518":0,"36519":0,"36520":0,"36521":0,"36522":1,"36523":1,"36524":1,"36525":0,"36526":1,"36527":0,"36528":0,"36529":1,"36530":0,"36531":0,"36532":1,"36533":0,"36534":0,"36535":0,"36536":0,"36537":1,"36538":0,"36539":1,"36540":0,"36541":1,"36542":1,"36543":0,"36544":0,"36545":0,"36546":0,"36547":1,"36548":0,"36549":1,"36550":1,"36551":0,"36552":0,"36553":1,"36554":0,"36555":0,"36556":0,"36557":0,"36558":1,"36559":0,"36560":0,"36561":0,"36562":1,"36563":1,"36564":0,"36565":0,"36566":1,"36567":0,"36568":0,"36569":1,"36570":1,"36571":0,"36572":1,"36573":0,"36574":0,"36575":1,"36576":0,"36577":1,"36578":0,"36579":0,"36580":0,"36581":0,"36582":0,"36583":1,"36584":0,"36585":0,"36586":0,"36587":1,"36588":0,"36589":0,"36590":1,"36591":0,"36592":0,"36593":0,"36594":0,"36595":0,"36596":0,"36597":0,"36598":1,"36599":0,"36600":1,"36601":1,"36602":0,"36603":0,"36604":0,"36605":0,"36606":0,"36607":0,"36608":1,"36609":0,"36610":0,"36611":0,"36612":1,"36613":0,"36614":1,"36615":0,"36616":0,"36617":0,"36618":0,"36619":0,"36620":1,"36621":1,"36622":0,"36623":0,"36624":1,"36625":0,"36626":0,"36627":1,"36628":0,"36629":0,"36630":0,"36631":0,"36632":0,"36633":0,"36634":0,"36635":1,"36636":0,"36637":0,"36638":0,"36639":0,"36640":0,"36641":0,"36642":1,"36643":0,"36644":0,"36645":0,"36646":1,"36647":0,"36648":0,"36649":0,"36650":0,"36651":1,"36652":0,"36653":0,"36654":1,"36655":0,"36656":0,"36657":0,"36658":0,"36659":0,"36660":0,"36661":0,"36662":0,"36663":0,"36664":0,"36665":0,"36666":0,"36667":0,"36668":0,"36669":0,"36670":0,"36671":0,"36672":0,"36673":1,"36674":1,"36675":0,"36676":0,"36677":0,"36678":0,"36679":1,"36680":0,"36681":0,"36682":0,"36683":0,"36684":0,"36685":0,"36686":0,"36687":0,"36688":0,"36689":0,"36690":0,"36691":1,"36692":1,"36693":1,"36694":0,"36695":0,"36696":0,"36697":0,"36698":0,"36699":0,"36700":1,"36701":1,"36702":0,"36703":0,"36704":0,"36705":1,"36706":0,"36707":0,"36708":0,"36709":0,"36710":0,"36711":1,"36712":0,"36713":1,"36714":0,"36715":0,"36716":0,"36717":0,"36718":0,"36719":0,"36720":0,"36721":0,"36722":1,"36723":0,"36724":1,"36725":0,"36726":1,"36727":0,"36728":0,"36729":0,"36730":0,"36731":0,"36732":1,"36733":0,"36734":0,"36735":0,"36736":0,"36737":1,"36738":0,"36739":0,"36740":0,"36741":0,"36742":0,"36743":0,"36744":0,"36745":0,"36746":0,"36747":1,"36748":1,"36749":0,"36750":0,"36751":0,"36752":0,"36753":0,"36754":0,"36755":1,"36756":0,"36757":0,"36758":0,"36759":0,"36760":0,"36761":0,"36762":0,"36763":0,"36764":0,"36765":1,"36766":0,"36767":0,"36768":0,"36769":0,"36770":0,"36771":0,"36772":0,"36773":0,"36774":0,"36775":0,"36776":1,"36777":0,"36778":0,"36779":1,"36780":0,"36781":0,"36782":0,"36783":0,"36784":0,"36785":0,"36786":1,"36787":0,"36788":0,"36789":1,"36790":0,"36791":0,"36792":0,"36793":0,"36794":0,"36795":0,"36796":0,"36797":0,"36798":0,"36799":0,"36800":1,"36801":0,"36802":0,"36803":0,"36804":1,"36805":0,"36806":1,"36807":1,"36808":1,"36809":0,"36810":0,"36811":1,"36812":0,"36813":0,"36814":1,"36815":0,"36816":0,"36817":0,"36818":0,"36819":0,"36820":0,"36821":0,"36822":0,"36823":0,"36824":0,"36825":0,"36826":0,"36827":0,"36828":0,"36829":1,"36830":0,"36831":0,"36832":1,"36833":0,"36834":0,"36835":1,"36836":0,"36837":0,"36838":1,"36839":0,"36840":0,"36841":0,"36842":0,"36843":1,"36844":0,"36845":1,"36846":1,"36847":0,"36848":0,"36849":0,"36850":0,"36851":1,"36852":0,"36853":0,"36854":0,"36855":0,"36856":0,"36857":0,"36858":0,"36859":1,"36860":1,"36861":0,"36862":1,"36863":0,"36864":0,"36865":1,"36866":0,"36867":0,"36868":1,"36869":0,"36870":0,"36871":0,"36872":0,"36873":0,"36874":0,"36875":1,"36876":1,"36877":0,"36878":0,"36879":1,"36880":0,"36881":1,"36882":0,"36883":0,"36884":0,"36885":0,"36886":0,"36887":0,"36888":1,"36889":0,"36890":1,"36891":0,"36892":1,"36893":0,"36894":0,"36895":0,"36896":1,"36897":1,"36898":0,"36899":0,"36900":1,"36901":0,"36902":0,"36903":0,"36904":0,"36905":0,"36906":1,"36907":0,"36908":0,"36909":0,"36910":0,"36911":0,"36912":1,"36913":0,"36914":0,"36915":0,"36916":0,"36917":0,"36918":1,"36919":0,"36920":0,"36921":0,"36922":0,"36923":0,"36924":0,"36925":0,"36926":0,"36927":0,"36928":0,"36929":0,"36930":0,"36931":1,"36932":0,"36933":1,"36934":1,"36935":0,"36936":1,"36937":0,"36938":0,"36939":0,"36940":0,"36941":0,"36942":0,"36943":0,"36944":1,"36945":0,"36946":0,"36947":0,"36948":0,"36949":0,"36950":1,"36951":0,"36952":0,"36953":0,"36954":0,"36955":1,"36956":0,"36957":0,"36958":0,"36959":0,"36960":0,"36961":0,"36962":0,"36963":0,"36964":0,"36965":0,"36966":1,"36967":0,"36968":0,"36969":0,"36970":0,"36971":0,"36972":0,"36973":0,"36974":1,"36975":0,"36976":0,"36977":0,"36978":0,"36979":0,"36980":0,"36981":0,"36982":0,"36983":0,"36984":1,"36985":1,"36986":1,"36987":1,"36988":1,"36989":0,"36990":0,"36991":0,"36992":0,"36993":0,"36994":0,"36995":0,"36996":0,"36997":0,"36998":1,"36999":0,"37000":0,"37001":0,"37002":1,"37003":0,"37004":0,"37005":0,"37006":1,"37007":0,"37008":1,"37009":0,"37010":0,"37011":0,"37012":0,"37013":0,"37014":0,"37015":1,"37016":1,"37017":0,"37018":0,"37019":1,"37020":0,"37021":0,"37022":0,"37023":0,"37024":0,"37025":0,"37026":1,"37027":0,"37028":0,"37029":0,"37030":0,"37031":0,"37032":0,"37033":1,"37034":1,"37035":0,"37036":1,"37037":0,"37038":0,"37039":0,"37040":0,"37041":0,"37042":0,"37043":0,"37044":0,"37045":0,"37046":0,"37047":0,"37048":0,"37049":0,"37050":1,"37051":0,"37052":0,"37053":0,"37054":0,"37055":1,"37056":0,"37057":0,"37058":0,"37059":0,"37060":0,"37061":0,"37062":1,"37063":1,"37064":0,"37065":0,"37066":0,"37067":0,"37068":0,"37069":0,"37070":0,"37071":1,"37072":0,"37073":0,"37074":1,"37075":0,"37076":1,"37077":1,"37078":0,"37079":1,"37080":0,"37081":0,"37082":0,"37083":0,"37084":0,"37085":0,"37086":0,"37087":0,"37088":1,"37089":0,"37090":1,"37091":0,"37092":0,"37093":0,"37094":0,"37095":0,"37096":0,"37097":1,"37098":0,"37099":0,"37100":1,"37101":0,"37102":1,"37103":0,"37104":0,"37105":1,"37106":0,"37107":0,"37108":0,"37109":1,"37110":0,"37111":0,"37112":0,"37113":0,"37114":0,"37115":0,"37116":0,"37117":0,"37118":1,"37119":0,"37120":0,"37121":0,"37122":0,"37123":1,"37124":1,"37125":1,"37126":0,"37127":0,"37128":0,"37129":0,"37130":0,"37131":0,"37132":0,"37133":0,"37134":0,"37135":0,"37136":0,"37137":1,"37138":0,"37139":1,"37140":0,"37141":0,"37142":1,"37143":0,"37144":0,"37145":0,"37146":0,"37147":1,"37148":0,"37149":0,"37150":0,"37151":0,"37152":0,"37153":0,"37154":0,"37155":0,"37156":0,"37157":1,"37158":1,"37159":0,"37160":0,"37161":0,"37162":0,"37163":0,"37164":0,"37165":1,"37166":0,"37167":0,"37168":0,"37169":1,"37170":0,"37171":0,"37172":1,"37173":0,"37174":1,"37175":1,"37176":0,"37177":0,"37178":0,"37179":0,"37180":1,"37181":0,"37182":0,"37183":0,"37184":0,"37185":1,"37186":0,"37187":0,"37188":0,"37189":1,"37190":0,"37191":0,"37192":0,"37193":0,"37194":0,"37195":1,"37196":0,"37197":0,"37198":1,"37199":0,"37200":0,"37201":1,"37202":0,"37203":0,"37204":1,"37205":1,"37206":0,"37207":0,"37208":0,"37209":0,"37210":0,"37211":0,"37212":0,"37213":0,"37214":0,"37215":0,"37216":0,"37217":0,"37218":0,"37219":0,"37220":1,"37221":1,"37222":0,"37223":0,"37224":0,"37225":0,"37226":0,"37227":0,"37228":1,"37229":0,"37230":1,"37231":0,"37232":1,"37233":0,"37234":0,"37235":0,"37236":0,"37237":0,"37238":0,"37239":0,"37240":0,"37241":0,"37242":0,"37243":0,"37244":0,"37245":0,"37246":0,"37247":1,"37248":0,"37249":0,"37250":0,"37251":0,"37252":0,"37253":1,"37254":0,"37255":0,"37256":0,"37257":0,"37258":0,"37259":0,"37260":1,"37261":1,"37262":1,"37263":0,"37264":0,"37265":1,"37266":1,"37267":0,"37268":0,"37269":1,"37270":1,"37271":1,"37272":1,"37273":1,"37274":0,"37275":0,"37276":1,"37277":0,"37278":1,"37279":1,"37280":1,"37281":0,"37282":1,"37283":1,"37284":0,"37285":0,"37286":1,"37287":0,"37288":0,"37289":0,"37290":0,"37291":0,"37292":0,"37293":0,"37294":0,"37295":1,"37296":0,"37297":0,"37298":0,"37299":0,"37300":0,"37301":0,"37302":1,"37303":0,"37304":0,"37305":1,"37306":1,"37307":0,"37308":0,"37309":0,"37310":0,"37311":0,"37312":0,"37313":0,"37314":0,"37315":1,"37316":1,"37317":0,"37318":0,"37319":1,"37320":1,"37321":1,"37322":1,"37323":1,"37324":0,"37325":0,"37326":0,"37327":0,"37328":0,"37329":0,"37330":0,"37331":1,"37332":0,"37333":1,"37334":0,"37335":0,"37336":0,"37337":0,"37338":1,"37339":0,"37340":1,"37341":1,"37342":0,"37343":1,"37344":1,"37345":0,"37346":0,"37347":0,"37348":1,"37349":0,"37350":0,"37351":0,"37352":0,"37353":1,"37354":1,"37355":0,"37356":0,"37357":0,"37358":1,"37359":0,"37360":0,"37361":0,"37362":0,"37363":1,"37364":1,"37365":1,"37366":0,"37367":0,"37368":0,"37369":0,"37370":0,"37371":0,"37372":0,"37373":0,"37374":0,"37375":0,"37376":0,"37377":0,"37378":1,"37379":1,"37380":0,"37381":1,"37382":0,"37383":1,"37384":0,"37385":0,"37386":0,"37387":0,"37388":0,"37389":0,"37390":0,"37391":0,"37392":0,"37393":0,"37394":1,"37395":1,"37396":0,"37397":0,"37398":0,"37399":0,"37400":0,"37401":0,"37402":0,"37403":0,"37404":0,"37405":0,"37406":0,"37407":0,"37408":0,"37409":0,"37410":0,"37411":0,"37412":0,"37413":0,"37414":1,"37415":0,"37416":0,"37417":0,"37418":0,"37419":1,"37420":0,"37421":0,"37422":0,"37423":0,"37424":0,"37425":0,"37426":0,"37427":0,"37428":1,"37429":0,"37430":0,"37431":0,"37432":0,"37433":0,"37434":1,"37435":0,"37436":0,"37437":0,"37438":0,"37439":0,"37440":0,"37441":0,"37442":0,"37443":0,"37444":0,"37445":0,"37446":0,"37447":1,"37448":0,"37449":0,"37450":1,"37451":0,"37452":1,"37453":0,"37454":1,"37455":1,"37456":0,"37457":0,"37458":0,"37459":0,"37460":0,"37461":0,"37462":0,"37463":0,"37464":0,"37465":0,"37466":0,"37467":0,"37468":0,"37469":0,"37470":0,"37471":0,"37472":0,"37473":0,"37474":0,"37475":0,"37476":0,"37477":0,"37478":0,"37479":0,"37480":0,"37481":0,"37482":0,"37483":0,"37484":1,"37485":0,"37486":1,"37487":0,"37488":0,"37489":1,"37490":0,"37491":0,"37492":0,"37493":0,"37494":1,"37495":0,"37496":0,"37497":0,"37498":0,"37499":0,"37500":0,"37501":1,"37502":0,"37503":1,"37504":0,"37505":0,"37506":0,"37507":1,"37508":0,"37509":1,"37510":0,"37511":0,"37512":0,"37513":0,"37514":0,"37515":1,"37516":1,"37517":0,"37518":0,"37519":0,"37520":0,"37521":0,"37522":0,"37523":0,"37524":0,"37525":0,"37526":0,"37527":0,"37528":0,"37529":0,"37530":0,"37531":0,"37532":0,"37533":0,"37534":0,"37535":1,"37536":1,"37537":0,"37538":0,"37539":0,"37540":0,"37541":0,"37542":1,"37543":1,"37544":0,"37545":0,"37546":0,"37547":0,"37548":0,"37549":0,"37550":0,"37551":0,"37552":0,"37553":0,"37554":0,"37555":1,"37556":0,"37557":1,"37558":0,"37559":1,"37560":0,"37561":0,"37562":1,"37563":0,"37564":0,"37565":0,"37566":0,"37567":1,"37568":0,"37569":0,"37570":0,"37571":0,"37572":0,"37573":0,"37574":0,"37575":0,"37576":0,"37577":0,"37578":0,"37579":0,"37580":1,"37581":0,"37582":0,"37583":0,"37584":0,"37585":0,"37586":0,"37587":0,"37588":0,"37589":0,"37590":0,"37591":0,"37592":0,"37593":1,"37594":0,"37595":0,"37596":0,"37597":1,"37598":0,"37599":0,"37600":1,"37601":1,"37602":0,"37603":1,"37604":0,"37605":0,"37606":1,"37607":0,"37608":0,"37609":0,"37610":0,"37611":0,"37612":0,"37613":1,"37614":0,"37615":0,"37616":1,"37617":0,"37618":1,"37619":1,"37620":0,"37621":1,"37622":0,"37623":0,"37624":0,"37625":0,"37626":0,"37627":0,"37628":1,"37629":1,"37630":0,"37631":0,"37632":0,"37633":0,"37634":0,"37635":0,"37636":0,"37637":0,"37638":1,"37639":0,"37640":0,"37641":0,"37642":0,"37643":0,"37644":0,"37645":1,"37646":0,"37647":0,"37648":1,"37649":0,"37650":0,"37651":0,"37652":0,"37653":0,"37654":0,"37655":0,"37656":0,"37657":1,"37658":0,"37659":0,"37660":0,"37661":0,"37662":0,"37663":1,"37664":1,"37665":0,"37666":0,"37667":0,"37668":0,"37669":0,"37670":1,"37671":1,"37672":1,"37673":0,"37674":1,"37675":0,"37676":1,"37677":1,"37678":1,"37679":0,"37680":1,"37681":0,"37682":0,"37683":1,"37684":0,"37685":1,"37686":0,"37687":0,"37688":0,"37689":0,"37690":0,"37691":0,"37692":1,"37693":1,"37694":0,"37695":0,"37696":0,"37697":0,"37698":1,"37699":0,"37700":1,"37701":0,"37702":0,"37703":1,"37704":1,"37705":1,"37706":0,"37707":0,"37708":1,"37709":0,"37710":0,"37711":0,"37712":0,"37713":0,"37714":1,"37715":0,"37716":0,"37717":1,"37718":0,"37719":1,"37720":0,"37721":1,"37722":0,"37723":0,"37724":0,"37725":1,"37726":0,"37727":1,"37728":0,"37729":1,"37730":0,"37731":1,"37732":0,"37733":1,"37734":0,"37735":0,"37736":0,"37737":0,"37738":0,"37739":0,"37740":0,"37741":1,"37742":0,"37743":0,"37744":0,"37745":0,"37746":0,"37747":0,"37748":0,"37749":0,"37750":0,"37751":0,"37752":1,"37753":0,"37754":1,"37755":1,"37756":0,"37757":0,"37758":0,"37759":0,"37760":1,"37761":0,"37762":0,"37763":1,"37764":0,"37765":1,"37766":1,"37767":0,"37768":0,"37769":0,"37770":0,"37771":1,"37772":1,"37773":0,"37774":0,"37775":1,"37776":0,"37777":0,"37778":1,"37779":0,"37780":0,"37781":0,"37782":0,"37783":0,"37784":0,"37785":1,"37786":1,"37787":0,"37788":0,"37789":1,"37790":0,"37791":0,"37792":0,"37793":0,"37794":0,"37795":1,"37796":1,"37797":0,"37798":0,"37799":1,"37800":0,"37801":0,"37802":1,"37803":0,"37804":1,"37805":0,"37806":0,"37807":0,"37808":0,"37809":0,"37810":0,"37811":0,"37812":0,"37813":0,"37814":1,"37815":0,"37816":1,"37817":0,"37818":0,"37819":0,"37820":1,"37821":0,"37822":0,"37823":0,"37824":1,"37825":0,"37826":0,"37827":0,"37828":0,"37829":0,"37830":0,"37831":0,"37832":0,"37833":0,"37834":0,"37835":0,"37836":0,"37837":0,"37838":0,"37839":1,"37840":0,"37841":1,"37842":0,"37843":1,"37844":0,"37845":1,"37846":0,"37847":1,"37848":1,"37849":0,"37850":0,"37851":0,"37852":0,"37853":0,"37854":0,"37855":0,"37856":0,"37857":0,"37858":1,"37859":0,"37860":0,"37861":0,"37862":0,"37863":0,"37864":1,"37865":0,"37866":0,"37867":0,"37868":1,"37869":0,"37870":1,"37871":0,"37872":0,"37873":0,"37874":1,"37875":0,"37876":0,"37877":0,"37878":0,"37879":0,"37880":0,"37881":0,"37882":1,"37883":1,"37884":0,"37885":0,"37886":0,"37887":1,"37888":0,"37889":1,"37890":0,"37891":0,"37892":0,"37893":0,"37894":0,"37895":0,"37896":0,"37897":1,"37898":0,"37899":1,"37900":1,"37901":0,"37902":0,"37903":0,"37904":0,"37905":0,"37906":0,"37907":0,"37908":1,"37909":0,"37910":0,"37911":0,"37912":1,"37913":0,"37914":1,"37915":0,"37916":0,"37917":0,"37918":0,"37919":1,"37920":1,"37921":0,"37922":0,"37923":0,"37924":0,"37925":0,"37926":0,"37927":0,"37928":0,"37929":0,"37930":1,"37931":0,"37932":1,"37933":0,"37934":0,"37935":0,"37936":0,"37937":1,"37938":0,"37939":0,"37940":0,"37941":1,"37942":0,"37943":0,"37944":1,"37945":0,"37946":1,"37947":1,"37948":0,"37949":0,"37950":0,"37951":0,"37952":0,"37953":1,"37954":1,"37955":1,"37956":1,"37957":0,"37958":1,"37959":0,"37960":0,"37961":0,"37962":0,"37963":0,"37964":0,"37965":0,"37966":0,"37967":1,"37968":1,"37969":1,"37970":1,"37971":0,"37972":0,"37973":1,"37974":1,"37975":0,"37976":1,"37977":0,"37978":0,"37979":0,"37980":1,"37981":0,"37982":1,"37983":1,"37984":0,"37985":0,"37986":0,"37987":0,"37988":1,"37989":0,"37990":0,"37991":0,"37992":0,"37993":0,"37994":0,"37995":0,"37996":0,"37997":0,"37998":1,"37999":0,"38000":0,"38001":0,"38002":0,"38003":0,"38004":1,"38005":0,"38006":0,"38007":0,"38008":0,"38009":1,"38010":1,"38011":0,"38012":0,"38013":0,"38014":0,"38015":1,"38016":1,"38017":0,"38018":0,"38019":0,"38020":0,"38021":0,"38022":0,"38023":1,"38024":0,"38025":0,"38026":0,"38027":0,"38028":1,"38029":1,"38030":0,"38031":0,"38032":0,"38033":1,"38034":1,"38035":0,"38036":1,"38037":1,"38038":1,"38039":0,"38040":0,"38041":0,"38042":0,"38043":0,"38044":1,"38045":0,"38046":0,"38047":0,"38048":0,"38049":0,"38050":0,"38051":1,"38052":1,"38053":1,"38054":0,"38055":0,"38056":1,"38057":0,"38058":0,"38059":0,"38060":0,"38061":1,"38062":0,"38063":0,"38064":0,"38065":0,"38066":0,"38067":0,"38068":1,"38069":1,"38070":0,"38071":1,"38072":0,"38073":0,"38074":0,"38075":0,"38076":0,"38077":1,"38078":0,"38079":0,"38080":0,"38081":0,"38082":0,"38083":0,"38084":0,"38085":0,"38086":1,"38087":0,"38088":0,"38089":0,"38090":0,"38091":1,"38092":0,"38093":1,"38094":0,"38095":0,"38096":0,"38097":0,"38098":0,"38099":1,"38100":1,"38101":1,"38102":1,"38103":0,"38104":0,"38105":0,"38106":0,"38107":1,"38108":0,"38109":1,"38110":0,"38111":0,"38112":0,"38113":0,"38114":0,"38115":1,"38116":1,"38117":0,"38118":0,"38119":0,"38120":0,"38121":0,"38122":0,"38123":0,"38124":0,"38125":0,"38126":0,"38127":0,"38128":1,"38129":1,"38130":0,"38131":0,"38132":0,"38133":0,"38134":0,"38135":1,"38136":1,"38137":0,"38138":0,"38139":0,"38140":0,"38141":1,"38142":0,"38143":0,"38144":0,"38145":1,"38146":0,"38147":0,"38148":1,"38149":1,"38150":0,"38151":0,"38152":0,"38153":0,"38154":0,"38155":0,"38156":0,"38157":0,"38158":0,"38159":0,"38160":0,"38161":0,"38162":0,"38163":1,"38164":1,"38165":0,"38166":0,"38167":0,"38168":0,"38169":0,"38170":1,"38171":0,"38172":0,"38173":1,"38174":1,"38175":0,"38176":0,"38177":0,"38178":0,"38179":0,"38180":0,"38181":0,"38182":0,"38183":0,"38184":0,"38185":1,"38186":0,"38187":0,"38188":0,"38189":0,"38190":0,"38191":0,"38192":1,"38193":0,"38194":0,"38195":0,"38196":1,"38197":1,"38198":0,"38199":0,"38200":1,"38201":0,"38202":0,"38203":0,"38204":1,"38205":0,"38206":0,"38207":1,"38208":1,"38209":0,"38210":0,"38211":0,"38212":0,"38213":0,"38214":0,"38215":0,"38216":0,"38217":0,"38218":0,"38219":0,"38220":0,"38221":1,"38222":0,"38223":0,"38224":0,"38225":0,"38226":0,"38227":0,"38228":1,"38229":1,"38230":1,"38231":0,"38232":1,"38233":1,"38234":0,"38235":0,"38236":1,"38237":0,"38238":0,"38239":1,"38240":0,"38241":1,"38242":0,"38243":1,"38244":0,"38245":0,"38246":1,"38247":0,"38248":0,"38249":0,"38250":1,"38251":0,"38252":0,"38253":0,"38254":0,"38255":0,"38256":0,"38257":0,"38258":0,"38259":0,"38260":0,"38261":0,"38262":0,"38263":0,"38264":1,"38265":0,"38266":0,"38267":0,"38268":1,"38269":0,"38270":1,"38271":1,"38272":0,"38273":0,"38274":0,"38275":0,"38276":0,"38277":0,"38278":0,"38279":0,"38280":1,"38281":0,"38282":0,"38283":0,"38284":0,"38285":0,"38286":0,"38287":0,"38288":0,"38289":0,"38290":1,"38291":0,"38292":1,"38293":0,"38294":0,"38295":0,"38296":0,"38297":0,"38298":0,"38299":0,"38300":0,"38301":0,"38302":0,"38303":0,"38304":0,"38305":1,"38306":0,"38307":0,"38308":0,"38309":0,"38310":0,"38311":0,"38312":0,"38313":0,"38314":0,"38315":1,"38316":1,"38317":0,"38318":0,"38319":0,"38320":0,"38321":1,"38322":1,"38323":0,"38324":1,"38325":1,"38326":0,"38327":0,"38328":0,"38329":1,"38330":0,"38331":0,"38332":0,"38333":0,"38334":0,"38335":0,"38336":0,"38337":1,"38338":0,"38339":0,"38340":0,"38341":0,"38342":0,"38343":0,"38344":0,"38345":0,"38346":0,"38347":0,"38348":0,"38349":0,"38350":1,"38351":1,"38352":0,"38353":0,"38354":0,"38355":0,"38356":0,"38357":0,"38358":0,"38359":1,"38360":0,"38361":0,"38362":0,"38363":0,"38364":0,"38365":0,"38366":1,"38367":0,"38368":1,"38369":0,"38370":1,"38371":0,"38372":0,"38373":1,"38374":1,"38375":0,"38376":0,"38377":1,"38378":0,"38379":0,"38380":0,"38381":0,"38382":0,"38383":0,"38384":0,"38385":0,"38386":0,"38387":0,"38388":0,"38389":1,"38390":0,"38391":1,"38392":1,"38393":1,"38394":1,"38395":1,"38396":0,"38397":0,"38398":0,"38399":1,"38400":0,"38401":0,"38402":0,"38403":1,"38404":0,"38405":0,"38406":0,"38407":0,"38408":1,"38409":0,"38410":0,"38411":0,"38412":1,"38413":0,"38414":0,"38415":0,"38416":0,"38417":1,"38418":1,"38419":1,"38420":1,"38421":1,"38422":0,"38423":0,"38424":0,"38425":1,"38426":0,"38427":0,"38428":0,"38429":0,"38430":0,"38431":0,"38432":0,"38433":1,"38434":0,"38435":0,"38436":0,"38437":0,"38438":0,"38439":0,"38440":1,"38441":1,"38442":0,"38443":0,"38444":0,"38445":0,"38446":0,"38447":1,"38448":0,"38449":0,"38450":1,"38451":0,"38452":1,"38453":0,"38454":0,"38455":0,"38456":1,"38457":0,"38458":1,"38459":0,"38460":0,"38461":0,"38462":0,"38463":1,"38464":0,"38465":0,"38466":0,"38467":0,"38468":0,"38469":1,"38470":0,"38471":0,"38472":0,"38473":0,"38474":0,"38475":0,"38476":1,"38477":0,"38478":0,"38479":0,"38480":0,"38481":0,"38482":1,"38483":0,"38484":0,"38485":1,"38486":0,"38487":0,"38488":0,"38489":0,"38490":1,"38491":0,"38492":0,"38493":1,"38494":0,"38495":0,"38496":1,"38497":0,"38498":1,"38499":0,"38500":0,"38501":1,"38502":0,"38503":1,"38504":1,"38505":1,"38506":1,"38507":0,"38508":0,"38509":1,"38510":1,"38511":1,"38512":0,"38513":0,"38514":1,"38515":0,"38516":0,"38517":0,"38518":0,"38519":1,"38520":0,"38521":0,"38522":1,"38523":1,"38524":1,"38525":0,"38526":0,"38527":1,"38528":1,"38529":0,"38530":1,"38531":0,"38532":0,"38533":0,"38534":0,"38535":0,"38536":0,"38537":0,"38538":1,"38539":0,"38540":0,"38541":0,"38542":0,"38543":0,"38544":0,"38545":0,"38546":0,"38547":0,"38548":1,"38549":1,"38550":1,"38551":1,"38552":0,"38553":0,"38554":0,"38555":1,"38556":0,"38557":0,"38558":1,"38559":0,"38560":0,"38561":0,"38562":0,"38563":0,"38564":0,"38565":0,"38566":0,"38567":0,"38568":0,"38569":0,"38570":0,"38571":1,"38572":0,"38573":0,"38574":0,"38575":0,"38576":0,"38577":1,"38578":0,"38579":0,"38580":1,"38581":0,"38582":0,"38583":1,"38584":0,"38585":0,"38586":0,"38587":0,"38588":0,"38589":1,"38590":1,"38591":1,"38592":0,"38593":1,"38594":0,"38595":0,"38596":0,"38597":0,"38598":1,"38599":0,"38600":0,"38601":1,"38602":0,"38603":0,"38604":0,"38605":0,"38606":1,"38607":1,"38608":0,"38609":0,"38610":1,"38611":0,"38612":0,"38613":0,"38614":0,"38615":0,"38616":0,"38617":0,"38618":0,"38619":1,"38620":0,"38621":0,"38622":1,"38623":0,"38624":0,"38625":1,"38626":0,"38627":0,"38628":1,"38629":0,"38630":1,"38631":0,"38632":0,"38633":0,"38634":0,"38635":0,"38636":0,"38637":0,"38638":1,"38639":1,"38640":0,"38641":0,"38642":0,"38643":1,"38644":1,"38645":0,"38646":0,"38647":0,"38648":0,"38649":0,"38650":0,"38651":0,"38652":1,"38653":0,"38654":1,"38655":0,"38656":0,"38657":1,"38658":0,"38659":0,"38660":0,"38661":0,"38662":0,"38663":0,"38664":0,"38665":0,"38666":0,"38667":0,"38668":0,"38669":1,"38670":0,"38671":0,"38672":0,"38673":0,"38674":1,"38675":0,"38676":1,"38677":0,"38678":0,"38679":1,"38680":1,"38681":0,"38682":1,"38683":0,"38684":0,"38685":0,"38686":0,"38687":0,"38688":0,"38689":0,"38690":0,"38691":1,"38692":0,"38693":0,"38694":1,"38695":0,"38696":0,"38697":0,"38698":1,"38699":0,"38700":0,"38701":1,"38702":0,"38703":0,"38704":0,"38705":0,"38706":1,"38707":1,"38708":0,"38709":0,"38710":0,"38711":0,"38712":1,"38713":0,"38714":0,"38715":0,"38716":0,"38717":1,"38718":0,"38719":1,"38720":1,"38721":0,"38722":0,"38723":1,"38724":1,"38725":0,"38726":0,"38727":1,"38728":0,"38729":0,"38730":0,"38731":0,"38732":1,"38733":0,"38734":0,"38735":0,"38736":1,"38737":0,"38738":0,"38739":0,"38740":0,"38741":0,"38742":0,"38743":0,"38744":0,"38745":1,"38746":1,"38747":0,"38748":0,"38749":1,"38750":0,"38751":0,"38752":0,"38753":0,"38754":0,"38755":0,"38756":1,"38757":0,"38758":0,"38759":0,"38760":0,"38761":0,"38762":0,"38763":0,"38764":0,"38765":0,"38766":0,"38767":0,"38768":0,"38769":0,"38770":0,"38771":0,"38772":0,"38773":0,"38774":0,"38775":1,"38776":0,"38777":0,"38778":0,"38779":1,"38780":0,"38781":0,"38782":0,"38783":1,"38784":0,"38785":0,"38786":1,"38787":1,"38788":1,"38789":0,"38790":0,"38791":0,"38792":0,"38793":0,"38794":0,"38795":1,"38796":0,"38797":0,"38798":1,"38799":0,"38800":0,"38801":0,"38802":0,"38803":0,"38804":0,"38805":1,"38806":1,"38807":1,"38808":0,"38809":0,"38810":1,"38811":0,"38812":0,"38813":0,"38814":0,"38815":1,"38816":0,"38817":0,"38818":0,"38819":0,"38820":0,"38821":0,"38822":0,"38823":0,"38824":0,"38825":1,"38826":1,"38827":0,"38828":0,"38829":0,"38830":0,"38831":0,"38832":0,"38833":0,"38834":1,"38835":0,"38836":0,"38837":0,"38838":1,"38839":0,"38840":0,"38841":0,"38842":0,"38843":0,"38844":1,"38845":0,"38846":0,"38847":1,"38848":1,"38849":0,"38850":0,"38851":0,"38852":0,"38853":0,"38854":0,"38855":0,"38856":0,"38857":0,"38858":1,"38859":0,"38860":0,"38861":1,"38862":0,"38863":0,"38864":0,"38865":0,"38866":1,"38867":1,"38868":0,"38869":1,"38870":0,"38871":1,"38872":0,"38873":0,"38874":0,"38875":1,"38876":0,"38877":0,"38878":1,"38879":1,"38880":0,"38881":1,"38882":0,"38883":1,"38884":0,"38885":1,"38886":1,"38887":0,"38888":1,"38889":0,"38890":1,"38891":1,"38892":1,"38893":0,"38894":0,"38895":0,"38896":0,"38897":0,"38898":0,"38899":0,"38900":0,"38901":1,"38902":0,"38903":0,"38904":0,"38905":0,"38906":1,"38907":0,"38908":1,"38909":1,"38910":0,"38911":0,"38912":0,"38913":0,"38914":0,"38915":0,"38916":1,"38917":1,"38918":0,"38919":0,"38920":0,"38921":1,"38922":1,"38923":0,"38924":0,"38925":0,"38926":0,"38927":0,"38928":0,"38929":0,"38930":1,"38931":0,"38932":1,"38933":0,"38934":0,"38935":0,"38936":0,"38937":0,"38938":0,"38939":0,"38940":0,"38941":1,"38942":0,"38943":1,"38944":0,"38945":1,"38946":0,"38947":0,"38948":1,"38949":0,"38950":0,"38951":0,"38952":0,"38953":0,"38954":0,"38955":0,"38956":1,"38957":1,"38958":0,"38959":1,"38960":0,"38961":0,"38962":1,"38963":1,"38964":0,"38965":1,"38966":0,"38967":1,"38968":0,"38969":0,"38970":0,"38971":1,"38972":1,"38973":0,"38974":0,"38975":0,"38976":1,"38977":0,"38978":0,"38979":0,"38980":1,"38981":0,"38982":0,"38983":1,"38984":0,"38985":1,"38986":0,"38987":0,"38988":0,"38989":0,"38990":0,"38991":0,"38992":0,"38993":0,"38994":0,"38995":0,"38996":0,"38997":0,"38998":0,"38999":0,"39000":1,"39001":0,"39002":1,"39003":0,"39004":0,"39005":0,"39006":1,"39007":0,"39008":0,"39009":0,"39010":1,"39011":0,"39012":1,"39013":0,"39014":0,"39015":0,"39016":0,"39017":0,"39018":0,"39019":0,"39020":0,"39021":0,"39022":0,"39023":1,"39024":1,"39025":0,"39026":1,"39027":1,"39028":0,"39029":0,"39030":1,"39031":0,"39032":1,"39033":1,"39034":0,"39035":0,"39036":1,"39037":0,"39038":0,"39039":0,"39040":0,"39041":0,"39042":0,"39043":0,"39044":0,"39045":0,"39046":0,"39047":1,"39048":0,"39049":1,"39050":0,"39051":0,"39052":0,"39053":1,"39054":1,"39055":0,"39056":0,"39057":0,"39058":0,"39059":0,"39060":0,"39061":0,"39062":1,"39063":0,"39064":0,"39065":0,"39066":0,"39067":0,"39068":0,"39069":1,"39070":1,"39071":1,"39072":0,"39073":0,"39074":1,"39075":0,"39076":1,"39077":0,"39078":0,"39079":0,"39080":1,"39081":0,"39082":0,"39083":0,"39084":0,"39085":0,"39086":0,"39087":0,"39088":1,"39089":0,"39090":0,"39091":0,"39092":0,"39093":1,"39094":0,"39095":0,"39096":0,"39097":1,"39098":1,"39099":1,"39100":0,"39101":1,"39102":0,"39103":0,"39104":0,"39105":0,"39106":1,"39107":1,"39108":1,"39109":0,"39110":0,"39111":1,"39112":0,"39113":0,"39114":1,"39115":0,"39116":1,"39117":1,"39118":1,"39119":1,"39120":1,"39121":0,"39122":0,"39123":0,"39124":0,"39125":1,"39126":0,"39127":1,"39128":0,"39129":0,"39130":0,"39131":0,"39132":1,"39133":0,"39134":0,"39135":0,"39136":0,"39137":0,"39138":0,"39139":1,"39140":0,"39141":1,"39142":0,"39143":0,"39144":0,"39145":1,"39146":0,"39147":0,"39148":1,"39149":0,"39150":0,"39151":0,"39152":0,"39153":0,"39154":0,"39155":0,"39156":0,"39157":0,"39158":0,"39159":0,"39160":0,"39161":0,"39162":0,"39163":1,"39164":0,"39165":0,"39166":0,"39167":1,"39168":1,"39169":0,"39170":0,"39171":0,"39172":0,"39173":1,"39174":1,"39175":0,"39176":1,"39177":0,"39178":0,"39179":1,"39180":0,"39181":0,"39182":0,"39183":0,"39184":0,"39185":0,"39186":1,"39187":0,"39188":0,"39189":0,"39190":0,"39191":0,"39192":0,"39193":0,"39194":1,"39195":0,"39196":1,"39197":0,"39198":1,"39199":0,"39200":0,"39201":1,"39202":1,"39203":0,"39204":0,"39205":1,"39206":0,"39207":0,"39208":0,"39209":1,"39210":1,"39211":0,"39212":1,"39213":0,"39214":0,"39215":0,"39216":0,"39217":0,"39218":1,"39219":0,"39220":0,"39221":0,"39222":0,"39223":0,"39224":0,"39225":0,"39226":0,"39227":1,"39228":0,"39229":1,"39230":0,"39231":1,"39232":0,"39233":1,"39234":1,"39235":0,"39236":0,"39237":0,"39238":1,"39239":1,"39240":0,"39241":0,"39242":0,"39243":0,"39244":0,"39245":0,"39246":0,"39247":0,"39248":1,"39249":0,"39250":0,"39251":0,"39252":0,"39253":1,"39254":0,"39255":1,"39256":0,"39257":0,"39258":0,"39259":1,"39260":0,"39261":0,"39262":1,"39263":0,"39264":0,"39265":0,"39266":1,"39267":0,"39268":1,"39269":1,"39270":0,"39271":1,"39272":1,"39273":1,"39274":1,"39275":0,"39276":0,"39277":0,"39278":0,"39279":1,"39280":0,"39281":0,"39282":1,"39283":0,"39284":0,"39285":0,"39286":1,"39287":1,"39288":0,"39289":0,"39290":0,"39291":1,"39292":1,"39293":0,"39294":0,"39295":0,"39296":0,"39297":0,"39298":0,"39299":0,"39300":0,"39301":0,"39302":0,"39303":0,"39304":0,"39305":1,"39306":0,"39307":0,"39308":0,"39309":0,"39310":0,"39311":0,"39312":1,"39313":0,"39314":0,"39315":0,"39316":0,"39317":0,"39318":1,"39319":0,"39320":0,"39321":1,"39322":0,"39323":0,"39324":0,"39325":0,"39326":0,"39327":0,"39328":0,"39329":0,"39330":1,"39331":0,"39332":0,"39333":0,"39334":0,"39335":0,"39336":0,"39337":1,"39338":1,"39339":0,"39340":0,"39341":0,"39342":0,"39343":0,"39344":0,"39345":0,"39346":0,"39347":0,"39348":1,"39349":0,"39350":0,"39351":0,"39352":1,"39353":0,"39354":0,"39355":1,"39356":1,"39357":0,"39358":0,"39359":0,"39360":1,"39361":0,"39362":1,"39363":1,"39364":0,"39365":0,"39366":0,"39367":1,"39368":0,"39369":0,"39370":0,"39371":0,"39372":0,"39373":0,"39374":0,"39375":0,"39376":0,"39377":0,"39378":0,"39379":0,"39380":1,"39381":0,"39382":0,"39383":1,"39384":0,"39385":1,"39386":0,"39387":0,"39388":1,"39389":0,"39390":0,"39391":1,"39392":0,"39393":0,"39394":0,"39395":0,"39396":0,"39397":0,"39398":0,"39399":0,"39400":0,"39401":0,"39402":1,"39403":0,"39404":0,"39405":0,"39406":0,"39407":1,"39408":0,"39409":0,"39410":0,"39411":1,"39412":0,"39413":0,"39414":0,"39415":0,"39416":0,"39417":0,"39418":0,"39419":0,"39420":0,"39421":1,"39422":0,"39423":1,"39424":0,"39425":1,"39426":0,"39427":1,"39428":0,"39429":0,"39430":0,"39431":0,"39432":0,"39433":1,"39434":0,"39435":0,"39436":0,"39437":0,"39438":0,"39439":0,"39440":1,"39441":1,"39442":0,"39443":0,"39444":0,"39445":0,"39446":0,"39447":0,"39448":1,"39449":0,"39450":1,"39451":0,"39452":0,"39453":0,"39454":1,"39455":0,"39456":0,"39457":0,"39458":0,"39459":0,"39460":0,"39461":0,"39462":0,"39463":1,"39464":0,"39465":0,"39466":0,"39467":0,"39468":0,"39469":1,"39470":0,"39471":0,"39472":0,"39473":1,"39474":0,"39475":0,"39476":0,"39477":0,"39478":0,"39479":0,"39480":0,"39481":0,"39482":0,"39483":0,"39484":0,"39485":0,"39486":1,"39487":0,"39488":1,"39489":1,"39490":1,"39491":0,"39492":0,"39493":0,"39494":1,"39495":0,"39496":1,"39497":0,"39498":0,"39499":1,"39500":0,"39501":0,"39502":0,"39503":0,"39504":0,"39505":1,"39506":0,"39507":0,"39508":1,"39509":0,"39510":0,"39511":0,"39512":0,"39513":0,"39514":0,"39515":1,"39516":0,"39517":0,"39518":1,"39519":0,"39520":0,"39521":0,"39522":0,"39523":1,"39524":0,"39525":1,"39526":0,"39527":1,"39528":1,"39529":0,"39530":0,"39531":1,"39532":0,"39533":1,"39534":1,"39535":0,"39536":0,"39537":1,"39538":0,"39539":1,"39540":0,"39541":0,"39542":0,"39543":0,"39544":0,"39545":0,"39546":0,"39547":0,"39548":0,"39549":1,"39550":0,"39551":0,"39552":0,"39553":0,"39554":0,"39555":1,"39556":0,"39557":0,"39558":0,"39559":1,"39560":0,"39561":0,"39562":1,"39563":1,"39564":0,"39565":0,"39566":0,"39567":1,"39568":1,"39569":0,"39570":0,"39571":0,"39572":0,"39573":0,"39574":0,"39575":1,"39576":1,"39577":1,"39578":1,"39579":1,"39580":1,"39581":0,"39582":1,"39583":0,"39584":1,"39585":0,"39586":1,"39587":0,"39588":0,"39589":0,"39590":0,"39591":0,"39592":0,"39593":0,"39594":0,"39595":0,"39596":1,"39597":0,"39598":1,"39599":0,"39600":1,"39601":1,"39602":1,"39603":0,"39604":1,"39605":0,"39606":0,"39607":1,"39608":0,"39609":0,"39610":0,"39611":0,"39612":1,"39613":1,"39614":1,"39615":0,"39616":0,"39617":0,"39618":1,"39619":0,"39620":0,"39621":0,"39622":0,"39623":0,"39624":1,"39625":1,"39626":0,"39627":0,"39628":0,"39629":1,"39630":0,"39631":0,"39632":0,"39633":0,"39634":0,"39635":0,"39636":0,"39637":0,"39638":0,"39639":0,"39640":0,"39641":0,"39642":0,"39643":1,"39644":1,"39645":0,"39646":1,"39647":1,"39648":0,"39649":1,"39650":1,"39651":0,"39652":0,"39653":1,"39654":0,"39655":0,"39656":0,"39657":0,"39658":0,"39659":1,"39660":0,"39661":0,"39662":0,"39663":0,"39664":0,"39665":1,"39666":0,"39667":0,"39668":1,"39669":1,"39670":0,"39671":1,"39672":1,"39673":1,"39674":0,"39675":0,"39676":1,"39677":0,"39678":0,"39679":1,"39680":0,"39681":0,"39682":0,"39683":0,"39684":0,"39685":1,"39686":0,"39687":0,"39688":0,"39689":0,"39690":0,"39691":0,"39692":1,"39693":0,"39694":0,"39695":0,"39696":0,"39697":0,"39698":0,"39699":1,"39700":0,"39701":0,"39702":0,"39703":1,"39704":0,"39705":0,"39706":0,"39707":0,"39708":0,"39709":0,"39710":0,"39711":1,"39712":0,"39713":0,"39714":0,"39715":0,"39716":1,"39717":1,"39718":0,"39719":0,"39720":1,"39721":1,"39722":0,"39723":1,"39724":0,"39725":0,"39726":0,"39727":0,"39728":0,"39729":0,"39730":0,"39731":1,"39732":1,"39733":0,"39734":1,"39735":0,"39736":0,"39737":1,"39738":1,"39739":1,"39740":0,"39741":0,"39742":0,"39743":0,"39744":0,"39745":0,"39746":0,"39747":0,"39748":0,"39749":0,"39750":1,"39751":0,"39752":0,"39753":0,"39754":1,"39755":0,"39756":1,"39757":1,"39758":0,"39759":0,"39760":0,"39761":0,"39762":1,"39763":1,"39764":0,"39765":0,"39766":0,"39767":0,"39768":1,"39769":0,"39770":0,"39771":0,"39772":0,"39773":0,"39774":0,"39775":0,"39776":0,"39777":0,"39778":0,"39779":0,"39780":0,"39781":0,"39782":0,"39783":0,"39784":1,"39785":0,"39786":0,"39787":0,"39788":0,"39789":0,"39790":0,"39791":0,"39792":0,"39793":0,"39794":1,"39795":0,"39796":0,"39797":0,"39798":1,"39799":0,"39800":0,"39801":1,"39802":1,"39803":0,"39804":1,"39805":0,"39806":0,"39807":1,"39808":0,"39809":0,"39810":0,"39811":0,"39812":0,"39813":1,"39814":0,"39815":0,"39816":0,"39817":0,"39818":0,"39819":0,"39820":1,"39821":0,"39822":1,"39823":1,"39824":0,"39825":1,"39826":0,"39827":0,"39828":0,"39829":0,"39830":0,"39831":0,"39832":1,"39833":0,"39834":0,"39835":1,"39836":0,"39837":0,"39838":0,"39839":0,"39840":0,"39841":1,"39842":0,"39843":0,"39844":1,"39845":0,"39846":0,"39847":0,"39848":1,"39849":0,"39850":0,"39851":0,"39852":0,"39853":0,"39854":1,"39855":1,"39856":1,"39857":1,"39858":0,"39859":1,"39860":0,"39861":0,"39862":0,"39863":0,"39864":0,"39865":0,"39866":0,"39867":0,"39868":0,"39869":0,"39870":0,"39871":0,"39872":0,"39873":0,"39874":1,"39875":0,"39876":0,"39877":1,"39878":0,"39879":0,"39880":0,"39881":0,"39882":1,"39883":1,"39884":0,"39885":0,"39886":0,"39887":1,"39888":0,"39889":0,"39890":1,"39891":1,"39892":0,"39893":0,"39894":1,"39895":0,"39896":0,"39897":0,"39898":0,"39899":0,"39900":0,"39901":0,"39902":0,"39903":0,"39904":0,"39905":0,"39906":0,"39907":0,"39908":0,"39909":0,"39910":1,"39911":0,"39912":0,"39913":1,"39914":0,"39915":1,"39916":0,"39917":0,"39918":0,"39919":1,"39920":0,"39921":0,"39922":1,"39923":0,"39924":0,"39925":0,"39926":0,"39927":0,"39928":0,"39929":0,"39930":0,"39931":0,"39932":1,"39933":1,"39934":0,"39935":0,"39936":0,"39937":0,"39938":1,"39939":0,"39940":0,"39941":0,"39942":0,"39943":0,"39944":0,"39945":0,"39946":1,"39947":0,"39948":0,"39949":1,"39950":0,"39951":1,"39952":0,"39953":1,"39954":0,"39955":1,"39956":1,"39957":0,"39958":0,"39959":1,"39960":1,"39961":0,"39962":0,"39963":0,"39964":0,"39965":0,"39966":0,"39967":0,"39968":0,"39969":1,"39970":0,"39971":0,"39972":0,"39973":1,"39974":0,"39975":0,"39976":0,"39977":0,"39978":0,"39979":1,"39980":0,"39981":1,"39982":0,"39983":1,"39984":0,"39985":1,"39986":1,"39987":0,"39988":0,"39989":0,"39990":0,"39991":0,"39992":0,"39993":1,"39994":1,"39995":1,"39996":1,"39997":0,"39998":0,"39999":1,"40000":0,"40001":1,"40002":0,"40003":1,"40004":0,"40005":1,"40006":0,"40007":1,"40008":0,"40009":1,"40010":0,"40011":0,"40012":0,"40013":1,"40014":0,"40015":1,"40016":0,"40017":0,"40018":1,"40019":0,"40020":0,"40021":0,"40022":1,"40023":1,"40024":0,"40025":0,"40026":1,"40027":1,"40028":1,"40029":0,"40030":0,"40031":1,"40032":0,"40033":0,"40034":1,"40035":1,"40036":0,"40037":0,"40038":0,"40039":0,"40040":0,"40041":0,"40042":0,"40043":1,"40044":0,"40045":0,"40046":0,"40047":1,"40048":1,"40049":1,"40050":0,"40051":0,"40052":0,"40053":0,"40054":0,"40055":0,"40056":0,"40057":0,"40058":0,"40059":0,"40060":0,"40061":0,"40062":1,"40063":1,"40064":0,"40065":0,"40066":0,"40067":0,"40068":0,"40069":1,"40070":0,"40071":0,"40072":1,"40073":0,"40074":0,"40075":0,"40076":0,"40077":0,"40078":0,"40079":0,"40080":1,"40081":1,"40082":0,"40083":0,"40084":0,"40085":0,"40086":0,"40087":1,"40088":0,"40089":0,"40090":1,"40091":1,"40092":0,"40093":0,"40094":1,"40095":0,"40096":0,"40097":0,"40098":0,"40099":0,"40100":0,"40101":0,"40102":0,"40103":0,"40104":0,"40105":1,"40106":1,"40107":0,"40108":0,"40109":0,"40110":0,"40111":0,"40112":0,"40113":0,"40114":1,"40115":0,"40116":0,"40117":0,"40118":1,"40119":0,"40120":0,"40121":1,"40122":0,"40123":0,"40124":0,"40125":0,"40126":0,"40127":0,"40128":0,"40129":0,"40130":0,"40131":1,"40132":0,"40133":0,"40134":1,"40135":0,"40136":0,"40137":1,"40138":1,"40139":0,"40140":0,"40141":1,"40142":1,"40143":0,"40144":1,"40145":0,"40146":1,"40147":0,"40148":0,"40149":0,"40150":0,"40151":0,"40152":0,"40153":0,"40154":0,"40155":1,"40156":0,"40157":1,"40158":0,"40159":0,"40160":0,"40161":0,"40162":0,"40163":1,"40164":0,"40165":0,"40166":1,"40167":0,"40168":0,"40169":0,"40170":1,"40171":0,"40172":1,"40173":0,"40174":0,"40175":0,"40176":0,"40177":1,"40178":0,"40179":0,"40180":0,"40181":0,"40182":0,"40183":0,"40184":0,"40185":0,"40186":0,"40187":0,"40188":0,"40189":0,"40190":0,"40191":1,"40192":0,"40193":0,"40194":0,"40195":1,"40196":1,"40197":0,"40198":0,"40199":1,"40200":1,"40201":0,"40202":0,"40203":0,"40204":0,"40205":0,"40206":1,"40207":0,"40208":0,"40209":0,"40210":0,"40211":0,"40212":1,"40213":0,"40214":0,"40215":1,"40216":1,"40217":0,"40218":0,"40219":1,"40220":0,"40221":1,"40222":0,"40223":1,"40224":1,"40225":0,"40226":1,"40227":0,"40228":0,"40229":1,"40230":0,"40231":0,"40232":1,"40233":1,"40234":0,"40235":1,"40236":1,"40237":1,"40238":0,"40239":0,"40240":1,"40241":0,"40242":0,"40243":0,"40244":0,"40245":0,"40246":0,"40247":0,"40248":0,"40249":1,"40250":0,"40251":0,"40252":0,"40253":0,"40254":1,"40255":0,"40256":0,"40257":0,"40258":0,"40259":0,"40260":1,"40261":0,"40262":0,"40263":0,"40264":0,"40265":0,"40266":0,"40267":0,"40268":0,"40269":0,"40270":0,"40271":1,"40272":0,"40273":0,"40274":0,"40275":0,"40276":0,"40277":0,"40278":1,"40279":0,"40280":0,"40281":0,"40282":0,"40283":0,"40284":0,"40285":0,"40286":1,"40287":0,"40288":0,"40289":0,"40290":0,"40291":0,"40292":1,"40293":0,"40294":0,"40295":1,"40296":0,"40297":0,"40298":0,"40299":0,"40300":0,"40301":0,"40302":0,"40303":0,"40304":1,"40305":0,"40306":1,"40307":0,"40308":0,"40309":0,"40310":1,"40311":0,"40312":0,"40313":0,"40314":0,"40315":0,"40316":1,"40317":0,"40318":0,"40319":0,"40320":0,"40321":1,"40322":0,"40323":0,"40324":0,"40325":1,"40326":0,"40327":0,"40328":0,"40329":0,"40330":0,"40331":0,"40332":0,"40333":0,"40334":1,"40335":1,"40336":0,"40337":0,"40338":0,"40339":0,"40340":1,"40341":0,"40342":0,"40343":1,"40344":0,"40345":0,"40346":0,"40347":0,"40348":0,"40349":0,"40350":1,"40351":1,"40352":0,"40353":0,"40354":1,"40355":1,"40356":0,"40357":0,"40358":0,"40359":0,"40360":0,"40361":0,"40362":0,"40363":0,"40364":0,"40365":0,"40366":0,"40367":0,"40368":0,"40369":0,"40370":0,"40371":0,"40372":0,"40373":0,"40374":0,"40375":0,"40376":0,"40377":0,"40378":0,"40379":0,"40380":1,"40381":0,"40382":0,"40383":0,"40384":0,"40385":0,"40386":0,"40387":0,"40388":0,"40389":1,"40390":0,"40391":1,"40392":0,"40393":0,"40394":0,"40395":0,"40396":0,"40397":1,"40398":0,"40399":1,"40400":0,"40401":0,"40402":0,"40403":0,"40404":0,"40405":1,"40406":1,"40407":0,"40408":1,"40409":0,"40410":0,"40411":1,"40412":1,"40413":0,"40414":0,"40415":0,"40416":0,"40417":0,"40418":0,"40419":0,"40420":1,"40421":1,"40422":0,"40423":0,"40424":0,"40425":0,"40426":0,"40427":0,"40428":0,"40429":1,"40430":0,"40431":1,"40432":0,"40433":0,"40434":0,"40435":1,"40436":0,"40437":0,"40438":0,"40439":0,"40440":0,"40441":0,"40442":1,"40443":1,"40444":1,"40445":0,"40446":1,"40447":0,"40448":0,"40449":0,"40450":0,"40451":0,"40452":0,"40453":0,"40454":0,"40455":0,"40456":0,"40457":1,"40458":0,"40459":0,"40460":1,"40461":0,"40462":0,"40463":0,"40464":0,"40465":1,"40466":0,"40467":0,"40468":1,"40469":0,"40470":1,"40471":0,"40472":1,"40473":1,"40474":0,"40475":1,"40476":0,"40477":0,"40478":1,"40479":0,"40480":0,"40481":0,"40482":0,"40483":1,"40484":0,"40485":0,"40486":0,"40487":0,"40488":1,"40489":0,"40490":1,"40491":0,"40492":1,"40493":0,"40494":1,"40495":0,"40496":0,"40497":0,"40498":1,"40499":1,"40500":0,"40501":0,"40502":0,"40503":0,"40504":0,"40505":1,"40506":1,"40507":0,"40508":0,"40509":1,"40510":0,"40511":0,"40512":0,"40513":1,"40514":0,"40515":1,"40516":0,"40517":1,"40518":1,"40519":0,"40520":0,"40521":0,"40522":0,"40523":1,"40524":0,"40525":0,"40526":0,"40527":0,"40528":0,"40529":0,"40530":0,"40531":0,"40532":0,"40533":0,"40534":1,"40535":1,"40536":1,"40537":0,"40538":0,"40539":0,"40540":0,"40541":0,"40542":0,"40543":0,"40544":0,"40545":1,"40546":1,"40547":0,"40548":0,"40549":0,"40550":0,"40551":0,"40552":1,"40553":0,"40554":0,"40555":0,"40556":0,"40557":0,"40558":0,"40559":0,"40560":0,"40561":1,"40562":0,"40563":0,"40564":0,"40565":0,"40566":0,"40567":0,"40568":0,"40569":1,"40570":0,"40571":1,"40572":0,"40573":0,"40574":0,"40575":0,"40576":0,"40577":0,"40578":0,"40579":1,"40580":0,"40581":0,"40582":0,"40583":1,"40584":0,"40585":1,"40586":0,"40587":0,"40588":1,"40589":0,"40590":0,"40591":0,"40592":1,"40593":0,"40594":0,"40595":0,"40596":1,"40597":0,"40598":0,"40599":0,"40600":1,"40601":0,"40602":1,"40603":1,"40604":0,"40605":0,"40606":0,"40607":0,"40608":0,"40609":0,"40610":0,"40611":0,"40612":0,"40613":0,"40614":1,"40615":0,"40616":0,"40617":0,"40618":0,"40619":0,"40620":1,"40621":0,"40622":0,"40623":0,"40624":0,"40625":1,"40626":1,"40627":0,"40628":1,"40629":1,"40630":0,"40631":0,"40632":0,"40633":0,"40634":0,"40635":0,"40636":0,"40637":0,"40638":0,"40639":0,"40640":0,"40641":0,"40642":0,"40643":0,"40644":0,"40645":0,"40646":0,"40647":0,"40648":0,"40649":0,"40650":0,"40651":1,"40652":0,"40653":0,"40654":0,"40655":0,"40656":0,"40657":0,"40658":1,"40659":0,"40660":1,"40661":0,"40662":0,"40663":1,"40664":1,"40665":0,"40666":0,"40667":0,"40668":1,"40669":0,"40670":0,"40671":0,"40672":0,"40673":0,"40674":1,"40675":0,"40676":0,"40677":0,"40678":0,"40679":0,"40680":0,"40681":0,"40682":1,"40683":1,"40684":0,"40685":0,"40686":0,"40687":0,"40688":0,"40689":0,"40690":0,"40691":0,"40692":0,"40693":0,"40694":0,"40695":0,"40696":0,"40697":1,"40698":0,"40699":0,"40700":1,"40701":0,"40702":1,"40703":0,"40704":0,"40705":1,"40706":0,"40707":0,"40708":1,"40709":0,"40710":1,"40711":0,"40712":1,"40713":0,"40714":0,"40715":0,"40716":0,"40717":0,"40718":0,"40719":0,"40720":0,"40721":0,"40722":0,"40723":0,"40724":0,"40725":0,"40726":0,"40727":0,"40728":1,"40729":0,"40730":0,"40731":0,"40732":0,"40733":0,"40734":0,"40735":0,"40736":1,"40737":0,"40738":0,"40739":0,"40740":1,"40741":0,"40742":0,"40743":1,"40744":0,"40745":0,"40746":0,"40747":1,"40748":1,"40749":0,"40750":1,"40751":0,"40752":0,"40753":1,"40754":1,"40755":0,"40756":1,"40757":1,"40758":0,"40759":0,"40760":1,"40761":0,"40762":0,"40763":0,"40764":0,"40765":0,"40766":0,"40767":0,"40768":0,"40769":1,"40770":0,"40771":0,"40772":0,"40773":0,"40774":0,"40775":0,"40776":0,"40777":0,"40778":0,"40779":0,"40780":0,"40781":0,"40782":0,"40783":1,"40784":0,"40785":0,"40786":1,"40787":1,"40788":1,"40789":0,"40790":0,"40791":1,"40792":0,"40793":0,"40794":0,"40795":0,"40796":1,"40797":0,"40798":0,"40799":1,"40800":0,"40801":0,"40802":0,"40803":0,"40804":0,"40805":0,"40806":0,"40807":0,"40808":0,"40809":1,"40810":0,"40811":0,"40812":1,"40813":1,"40814":0,"40815":1,"40816":1,"40817":1,"40818":0,"40819":0,"40820":0,"40821":0,"40822":0,"40823":1,"40824":1,"40825":0,"40826":0,"40827":0,"40828":0,"40829":0,"40830":0,"40831":0,"40832":0,"40833":0,"40834":0,"40835":0,"40836":0,"40837":0,"40838":0,"40839":0,"40840":0,"40841":0,"40842":0,"40843":0,"40844":0,"40845":0,"40846":0,"40847":0,"40848":0,"40849":1,"40850":1,"40851":0,"40852":0,"40853":0,"40854":0,"40855":1,"40856":0,"40857":0,"40858":0,"40859":1,"40860":0,"40861":0,"40862":0,"40863":0,"40864":0,"40865":0,"40866":1,"40867":0,"40868":1,"40869":0,"40870":0,"40871":0,"40872":0,"40873":0,"40874":0,"40875":0,"40876":0,"40877":0,"40878":1,"40879":1,"40880":0,"40881":1,"40882":0,"40883":0,"40884":0,"40885":1,"40886":1,"40887":0,"40888":0,"40889":0,"40890":0,"40891":0,"40892":1,"40893":1,"40894":0,"40895":0,"40896":0,"40897":0,"40898":0,"40899":0,"40900":0,"40901":0,"40902":0,"40903":0,"40904":0,"40905":0,"40906":0,"40907":0,"40908":1,"40909":0,"40910":0,"40911":0,"40912":0,"40913":1,"40914":0,"40915":0,"40916":0,"40917":1,"40918":0,"40919":0,"40920":0,"40921":0,"40922":0,"40923":1,"40924":0,"40925":1,"40926":0,"40927":1,"40928":0,"40929":1,"40930":0,"40931":0,"40932":0,"40933":1,"40934":1,"40935":1,"40936":0,"40937":0,"40938":0,"40939":0,"40940":0,"40941":0,"40942":0,"40943":0,"40944":0,"40945":0,"40946":0,"40947":0,"40948":0,"40949":0,"40950":1,"40951":0,"40952":1,"40953":0,"40954":0,"40955":0,"40956":0,"40957":0,"40958":1,"40959":1,"40960":0,"40961":0,"40962":0,"40963":1,"40964":0,"40965":0,"40966":0,"40967":1,"40968":1,"40969":0,"40970":1,"40971":0,"40972":0,"40973":0,"40974":0,"40975":0,"40976":1,"40977":0,"40978":0,"40979":1,"40980":0,"40981":0,"40982":0,"40983":0,"40984":0,"40985":0,"40986":0,"40987":0,"40988":0,"40989":1,"40990":0,"40991":1,"40992":1,"40993":0,"40994":0,"40995":0,"40996":0,"40997":1,"40998":0,"40999":0,"41000":0,"41001":0,"41002":1,"41003":0,"41004":0,"41005":0,"41006":0,"41007":0,"41008":0,"41009":1,"41010":0,"41011":0,"41012":0,"41013":0,"41014":0,"41015":0,"41016":0,"41017":0,"41018":0,"41019":1,"41020":1,"41021":0,"41022":1,"41023":1,"41024":0,"41025":0,"41026":0,"41027":0,"41028":1,"41029":0,"41030":0,"41031":0,"41032":0,"41033":0,"41034":0,"41035":1,"41036":1,"41037":0,"41038":0,"41039":0,"41040":0,"41041":0,"41042":0,"41043":0,"41044":0,"41045":0,"41046":1,"41047":1,"41048":1,"41049":1,"41050":0,"41051":0,"41052":1,"41053":0,"41054":0,"41055":0,"41056":0,"41057":0,"41058":1,"41059":0,"41060":0,"41061":0,"41062":0,"41063":0,"41064":0,"41065":0,"41066":0,"41067":1,"41068":1,"41069":0,"41070":1,"41071":0,"41072":0,"41073":0,"41074":0,"41075":0,"41076":0,"41077":1,"41078":0,"41079":0,"41080":0,"41081":0,"41082":1,"41083":0,"41084":0,"41085":0,"41086":0,"41087":0,"41088":0,"41089":0,"41090":1,"41091":0,"41092":0,"41093":0,"41094":0,"41095":0,"41096":0,"41097":1,"41098":1,"41099":0,"41100":0,"41101":0,"41102":0,"41103":1,"41104":0,"41105":0,"41106":0,"41107":0,"41108":0,"41109":0,"41110":0,"41111":0,"41112":0,"41113":0,"41114":1,"41115":0,"41116":1,"41117":1,"41118":0,"41119":0,"41120":0,"41121":0,"41122":0,"41123":0,"41124":0,"41125":0,"41126":0,"41127":1,"41128":0,"41129":0,"41130":0,"41131":0,"41132":0,"41133":0,"41134":0,"41135":1,"41136":0,"41137":0,"41138":1,"41139":1,"41140":0,"41141":0,"41142":0,"41143":0,"41144":0,"41145":1,"41146":0,"41147":0,"41148":0,"41149":1,"41150":0,"41151":1,"41152":1,"41153":0,"41154":1,"41155":1,"41156":0,"41157":1,"41158":0,"41159":1,"41160":0,"41161":0,"41162":0,"41163":1,"41164":0,"41165":0,"41166":0,"41167":0,"41168":0,"41169":0,"41170":1,"41171":0,"41172":0,"41173":1,"41174":1,"41175":0,"41176":0,"41177":0,"41178":0,"41179":1,"41180":0,"41181":0,"41182":0,"41183":1,"41184":0,"41185":0,"41186":0,"41187":0,"41188":1,"41189":0,"41190":0,"41191":1,"41192":0,"41193":0,"41194":0,"41195":0,"41196":1,"41197":0,"41198":0,"41199":0,"41200":1,"41201":1,"41202":0,"41203":0,"41204":0,"41205":1,"41206":0,"41207":0,"41208":0,"41209":0,"41210":1,"41211":0,"41212":0,"41213":0,"41214":0,"41215":0,"41216":0,"41217":0,"41218":0,"41219":1,"41220":1,"41221":0,"41222":0,"41223":0,"41224":0,"41225":0,"41226":0,"41227":1,"41228":1,"41229":0,"41230":1,"41231":1,"41232":1,"41233":0,"41234":0,"41235":1,"41236":0,"41237":0,"41238":0,"41239":0,"41240":1,"41241":1,"41242":1,"41243":0,"41244":0,"41245":0,"41246":1,"41247":0,"41248":0,"41249":0,"41250":0,"41251":0,"41252":0,"41253":0,"41254":1,"41255":0,"41256":0,"41257":0,"41258":1,"41259":0,"41260":0,"41261":0,"41262":1,"41263":0,"41264":1,"41265":0,"41266":1,"41267":0,"41268":0,"41269":0,"41270":0,"41271":0,"41272":0,"41273":0,"41274":0,"41275":0,"41276":0,"41277":0,"41278":0,"41279":0,"41280":1,"41281":0,"41282":0,"41283":1,"41284":0,"41285":0,"41286":0,"41287":1,"41288":0,"41289":0,"41290":0,"41291":1,"41292":0,"41293":0,"41294":0,"41295":0,"41296":0,"41297":1,"41298":0,"41299":0,"41300":0,"41301":0,"41302":0,"41303":1,"41304":0,"41305":0,"41306":0,"41307":0,"41308":0,"41309":0,"41310":1,"41311":0,"41312":0,"41313":1,"41314":0,"41315":0,"41316":0,"41317":0,"41318":1,"41319":0,"41320":0,"41321":0,"41322":0,"41323":1,"41324":0,"41325":0,"41326":0,"41327":0,"41328":0,"41329":0,"41330":0,"41331":0,"41332":0,"41333":0,"41334":0,"41335":1,"41336":0,"41337":0,"41338":0,"41339":0,"41340":1,"41341":0,"41342":0,"41343":0,"41344":1,"41345":0,"41346":1,"41347":0,"41348":0,"41349":0,"41350":0,"41351":0,"41352":0,"41353":0,"41354":0,"41355":0,"41356":0,"41357":0,"41358":0,"41359":0,"41360":0,"41361":0,"41362":0,"41363":0,"41364":0,"41365":0,"41366":0,"41367":1,"41368":0,"41369":0,"41370":0,"41371":0,"41372":1,"41373":0,"41374":1,"41375":1,"41376":0,"41377":1,"41378":1,"41379":0,"41380":0,"41381":0,"41382":0,"41383":0,"41384":0,"41385":0,"41386":0,"41387":0,"41388":0,"41389":0,"41390":0,"41391":0,"41392":1,"41393":0,"41394":0,"41395":0,"41396":0,"41397":0,"41398":1,"41399":1,"41400":0,"41401":0,"41402":1,"41403":0,"41404":0,"41405":1,"41406":0,"41407":0,"41408":0,"41409":1,"41410":0,"41411":0,"41412":0,"41413":0,"41414":0,"41415":0,"41416":0,"41417":0,"41418":1,"41419":0,"41420":0,"41421":1,"41422":0,"41423":0,"41424":1,"41425":0,"41426":0,"41427":0,"41428":1,"41429":0,"41430":1,"41431":0,"41432":0,"41433":0,"41434":0,"41435":0,"41436":0,"41437":0,"41438":0,"41439":0,"41440":0,"41441":0,"41442":1,"41443":1,"41444":0,"41445":0,"41446":0,"41447":0,"41448":0,"41449":1,"41450":0,"41451":1,"41452":0,"41453":1,"41454":0,"41455":0,"41456":0,"41457":0,"41458":0,"41459":1,"41460":0,"41461":0,"41462":0,"41463":1,"41464":0,"41465":1,"41466":0,"41467":0,"41468":1,"41469":0,"41470":1,"41471":0,"41472":0,"41473":0,"41474":0,"41475":0,"41476":0,"41477":1,"41478":0,"41479":0,"41480":0,"41481":0,"41482":0,"41483":0,"41484":0,"41485":0,"41486":1,"41487":1,"41488":0,"41489":0,"41490":1,"41491":0,"41492":0,"41493":0,"41494":0,"41495":0,"41496":0,"41497":0,"41498":1,"41499":0,"41500":0,"41501":1,"41502":0,"41503":0,"41504":1,"41505":0,"41506":0,"41507":1,"41508":0,"41509":1,"41510":1,"41511":0,"41512":0,"41513":1,"41514":0,"41515":0,"41516":1,"41517":0,"41518":0,"41519":0,"41520":0,"41521":1,"41522":1,"41523":0,"41524":1,"41525":0,"41526":0,"41527":0,"41528":0,"41529":0,"41530":1,"41531":0,"41532":0,"41533":1,"41534":0,"41535":0,"41536":0,"41537":0,"41538":1,"41539":0,"41540":1,"41541":1,"41542":0,"41543":0,"41544":0,"41545":0,"41546":0,"41547":0,"41548":0,"41549":0,"41550":1,"41551":0,"41552":0,"41553":0,"41554":0,"41555":1,"41556":0,"41557":1,"41558":1,"41559":0,"41560":1,"41561":0,"41562":0,"41563":0,"41564":0,"41565":0,"41566":1,"41567":1,"41568":1,"41569":0,"41570":0,"41571":0,"41572":0,"41573":0,"41574":0,"41575":0,"41576":0,"41577":0,"41578":1,"41579":0,"41580":0,"41581":1,"41582":0,"41583":0,"41584":0,"41585":0,"41586":0,"41587":0,"41588":0,"41589":0,"41590":0,"41591":0,"41592":0,"41593":0,"41594":1,"41595":0,"41596":0,"41597":0,"41598":0,"41599":0,"41600":1,"41601":1,"41602":0,"41603":1,"41604":0,"41605":1,"41606":0,"41607":1,"41608":0,"41609":0,"41610":0,"41611":0,"41612":0,"41613":0,"41614":0,"41615":0,"41616":1,"41617":1,"41618":1,"41619":0,"41620":0,"41621":0,"41622":0,"41623":0,"41624":0,"41625":1,"41626":1,"41627":0,"41628":0,"41629":0,"41630":0,"41631":0,"41632":1,"41633":0,"41634":0,"41635":0,"41636":1,"41637":0,"41638":0,"41639":0,"41640":0,"41641":0,"41642":0,"41643":1,"41644":0,"41645":0,"41646":0,"41647":0,"41648":0,"41649":0,"41650":0,"41651":1,"41652":0,"41653":0,"41654":0,"41655":0,"41656":0,"41657":0,"41658":1,"41659":1,"41660":0,"41661":0,"41662":1,"41663":0,"41664":1,"41665":1,"41666":0,"41667":0,"41668":0,"41669":0,"41670":0,"41671":0,"41672":0,"41673":0,"41674":0,"41675":0,"41676":0,"41677":0,"41678":0,"41679":0,"41680":1,"41681":0,"41682":0,"41683":0,"41684":0,"41685":0,"41686":1,"41687":1,"41688":0,"41689":0,"41690":1,"41691":0,"41692":1,"41693":1,"41694":0,"41695":0,"41696":0,"41697":1,"41698":1,"41699":1,"41700":1,"41701":0,"41702":0,"41703":0,"41704":0,"41705":0,"41706":0,"41707":0,"41708":0,"41709":1,"41710":0,"41711":0,"41712":0,"41713":0,"41714":1,"41715":1,"41716":0,"41717":1,"41718":0,"41719":0,"41720":0,"41721":0,"41722":0,"41723":0,"41724":0,"41725":0,"41726":0,"41727":1,"41728":0,"41729":0,"41730":0,"41731":0,"41732":0,"41733":1,"41734":1,"41735":0,"41736":0,"41737":0,"41738":0,"41739":0,"41740":0,"41741":1,"41742":0,"41743":0,"41744":0,"41745":0,"41746":0,"41747":0,"41748":1,"41749":0,"41750":0,"41751":0,"41752":0,"41753":0,"41754":1,"41755":0,"41756":0,"41757":0,"41758":0,"41759":0,"41760":0,"41761":0,"41762":0,"41763":0,"41764":1,"41765":0,"41766":0,"41767":0,"41768":1,"41769":0,"41770":0,"41771":0,"41772":0,"41773":1,"41774":0,"41775":1,"41776":1,"41777":0,"41778":1,"41779":1,"41780":0,"41781":0,"41782":0,"41783":0,"41784":0,"41785":0,"41786":0,"41787":1,"41788":0,"41789":0,"41790":0,"41791":0,"41792":0,"41793":0,"41794":0,"41795":0,"41796":0,"41797":0,"41798":0,"41799":1,"41800":0,"41801":0,"41802":0,"41803":0,"41804":0,"41805":0,"41806":0,"41807":0,"41808":0,"41809":0,"41810":0,"41811":0,"41812":1,"41813":0,"41814":1,"41815":0,"41816":0,"41817":1,"41818":0,"41819":0,"41820":1,"41821":0,"41822":0,"41823":0,"41824":0,"41825":0,"41826":0,"41827":0,"41828":1,"41829":0,"41830":0,"41831":0,"41832":1,"41833":1,"41834":0,"41835":0,"41836":1,"41837":0,"41838":0,"41839":0,"41840":1,"41841":1,"41842":0,"41843":0,"41844":0,"41845":0,"41846":0,"41847":1,"41848":0,"41849":0,"41850":0,"41851":0,"41852":0,"41853":0,"41854":1,"41855":1,"41856":1,"41857":0,"41858":0,"41859":0,"41860":1,"41861":0,"41862":0,"41863":0,"41864":1,"41865":0,"41866":1,"41867":0,"41868":0,"41869":0,"41870":0,"41871":0,"41872":1,"41873":1,"41874":1,"41875":1,"41876":0,"41877":1,"41878":0,"41879":0,"41880":1,"41881":0,"41882":1,"41883":0,"41884":0,"41885":0,"41886":0,"41887":0,"41888":1,"41889":0,"41890":1,"41891":0,"41892":1,"41893":0,"41894":0,"41895":0,"41896":0,"41897":0,"41898":0,"41899":0,"41900":0,"41901":0,"41902":0,"41903":0,"41904":1,"41905":0,"41906":0,"41907":1,"41908":1,"41909":0,"41910":0,"41911":0,"41912":0,"41913":0,"41914":0,"41915":1,"41916":0,"41917":1,"41918":1,"41919":1,"41920":0,"41921":0,"41922":1,"41923":1,"41924":0,"41925":0,"41926":0,"41927":0,"41928":0,"41929":1,"41930":0,"41931":1,"41932":1,"41933":0,"41934":0,"41935":1,"41936":0,"41937":0,"41938":0,"41939":0,"41940":0,"41941":1,"41942":0,"41943":1,"41944":1,"41945":0,"41946":0,"41947":1,"41948":1,"41949":0,"41950":0,"41951":1,"41952":0,"41953":0,"41954":1,"41955":1,"41956":0,"41957":1,"41958":0,"41959":0,"41960":1,"41961":1,"41962":0,"41963":0,"41964":0,"41965":1,"41966":1,"41967":0,"41968":0,"41969":0,"41970":0,"41971":0,"41972":1,"41973":0,"41974":1,"41975":0,"41976":0,"41977":0,"41978":0,"41979":0,"41980":1,"41981":0,"41982":0,"41983":0,"41984":0,"41985":0,"41986":0,"41987":1,"41988":0,"41989":1,"41990":1,"41991":0,"41992":0,"41993":0,"41994":0,"41995":0,"41996":0,"41997":0,"41998":0,"41999":0,"42000":0,"42001":0,"42002":0,"42003":0,"42004":0,"42005":0,"42006":0,"42007":1,"42008":0,"42009":0,"42010":1,"42011":0,"42012":0,"42013":0,"42014":0,"42015":1,"42016":0,"42017":0,"42018":0,"42019":0,"42020":0,"42021":0,"42022":0,"42023":0,"42024":0,"42025":1,"42026":0,"42027":0,"42028":0,"42029":1,"42030":0,"42031":0,"42032":0,"42033":0,"42034":0,"42035":0,"42036":0,"42037":1,"42038":0,"42039":0,"42040":0,"42041":0,"42042":0,"42043":0,"42044":0,"42045":0,"42046":1,"42047":1,"42048":0,"42049":0,"42050":0,"42051":1,"42052":0,"42053":0,"42054":0,"42055":0,"42056":0,"42057":1,"42058":1,"42059":0,"42060":0,"42061":1,"42062":0,"42063":0,"42064":0,"42065":0,"42066":0,"42067":0,"42068":1,"42069":0,"42070":1,"42071":1,"42072":0,"42073":0,"42074":1,"42075":0,"42076":0,"42077":0,"42078":1,"42079":0,"42080":0,"42081":0,"42082":0,"42083":0,"42084":0,"42085":0,"42086":1,"42087":1,"42088":1,"42089":0,"42090":0,"42091":0,"42092":1,"42093":0,"42094":1,"42095":0,"42096":0,"42097":0,"42098":0,"42099":0,"42100":0,"42101":0,"42102":0,"42103":0,"42104":0,"42105":0,"42106":0,"42107":1,"42108":0,"42109":0,"42110":1,"42111":0,"42112":0,"42113":0,"42114":0,"42115":0,"42116":0,"42117":0,"42118":1,"42119":1,"42120":0,"42121":0,"42122":0,"42123":0,"42124":0,"42125":0,"42126":0,"42127":0,"42128":0,"42129":0,"42130":0,"42131":0,"42132":0,"42133":0,"42134":0,"42135":0,"42136":1,"42137":0,"42138":1,"42139":1,"42140":0,"42141":0,"42142":0,"42143":0,"42144":0,"42145":0,"42146":0,"42147":0,"42148":0,"42149":0,"42150":0,"42151":0,"42152":0,"42153":0,"42154":0,"42155":0,"42156":1,"42157":1,"42158":0,"42159":0,"42160":0,"42161":0,"42162":0,"42163":0,"42164":1,"42165":0,"42166":0,"42167":0,"42168":0,"42169":0,"42170":0,"42171":1,"42172":0,"42173":0,"42174":0,"42175":1,"42176":0,"42177":0,"42178":0,"42179":1,"42180":0,"42181":0,"42182":0,"42183":0,"42184":0,"42185":0,"42186":0,"42187":0,"42188":0,"42189":0,"42190":0,"42191":0,"42192":1,"42193":0,"42194":0,"42195":0,"42196":0,"42197":1,"42198":0,"42199":0,"42200":0,"42201":0,"42202":0,"42203":0,"42204":0,"42205":1,"42206":0,"42207":0,"42208":0,"42209":0,"42210":0,"42211":0,"42212":0,"42213":0,"42214":0,"42215":1,"42216":0,"42217":0,"42218":0,"42219":0,"42220":0,"42221":0,"42222":0,"42223":0,"42224":0,"42225":0,"42226":0,"42227":0,"42228":0,"42229":0,"42230":0,"42231":0,"42232":0,"42233":0,"42234":0,"42235":1,"42236":0,"42237":0,"42238":0,"42239":0,"42240":0,"42241":0,"42242":0,"42243":0,"42244":1,"42245":0,"42246":0,"42247":0,"42248":0,"42249":1,"42250":0,"42251":1,"42252":0,"42253":0,"42254":0,"42255":1,"42256":0,"42257":0,"42258":0,"42259":0,"42260":0,"42261":1,"42262":0,"42263":0,"42264":0,"42265":1,"42266":0,"42267":0,"42268":0,"42269":1,"42270":1,"42271":0,"42272":0,"42273":1,"42274":1,"42275":1,"42276":0,"42277":0,"42278":0,"42279":1,"42280":0,"42281":0,"42282":0,"42283":0,"42284":0,"42285":0,"42286":0,"42287":1,"42288":0,"42289":0,"42290":0,"42291":0,"42292":0,"42293":0,"42294":0,"42295":0,"42296":1,"42297":1,"42298":0,"42299":0,"42300":0,"42301":0,"42302":0,"42303":0,"42304":0,"42305":0,"42306":0,"42307":0,"42308":0,"42309":1,"42310":0,"42311":0,"42312":0,"42313":0,"42314":0,"42315":0,"42316":0,"42317":0,"42318":1,"42319":0,"42320":0,"42321":1,"42322":1,"42323":0,"42324":0,"42325":0,"42326":1,"42327":0,"42328":0,"42329":0,"42330":1,"42331":0,"42332":1,"42333":0,"42334":0,"42335":0,"42336":0,"42337":0,"42338":0,"42339":0,"42340":0,"42341":1,"42342":0,"42343":0,"42344":0,"42345":0,"42346":1,"42347":0,"42348":0,"42349":0,"42350":0,"42351":0,"42352":0,"42353":0,"42354":0,"42355":0,"42356":0,"42357":0,"42358":0,"42359":0,"42360":0,"42361":1,"42362":1,"42363":0,"42364":1,"42365":0,"42366":0,"42367":0,"42368":0,"42369":0,"42370":0,"42371":0,"42372":1,"42373":0,"42374":0,"42375":1,"42376":1,"42377":0,"42378":1,"42379":0,"42380":0,"42381":1,"42382":0,"42383":0,"42384":1,"42385":0,"42386":0,"42387":1,"42388":1,"42389":0,"42390":0,"42391":0,"42392":0,"42393":1,"42394":1,"42395":0,"42396":0,"42397":0,"42398":0,"42399":0,"42400":1,"42401":0,"42402":0,"42403":0,"42404":1,"42405":0,"42406":0,"42407":1,"42408":0,"42409":0,"42410":0,"42411":0,"42412":1,"42413":1,"42414":0,"42415":0,"42416":0,"42417":0,"42418":0,"42419":0,"42420":0,"42421":0,"42422":0,"42423":0,"42424":1,"42425":1,"42426":0,"42427":1,"42428":1,"42429":1,"42430":1,"42431":1,"42432":0,"42433":0,"42434":0,"42435":0,"42436":0,"42437":0,"42438":1,"42439":1,"42440":0,"42441":0,"42442":0,"42443":0,"42444":0,"42445":1,"42446":0,"42447":0,"42448":0,"42449":0,"42450":1,"42451":0,"42452":0,"42453":0,"42454":0,"42455":0,"42456":0,"42457":0,"42458":1,"42459":0,"42460":0,"42461":0,"42462":0,"42463":0,"42464":0,"42465":1,"42466":0,"42467":1,"42468":1,"42469":0,"42470":1,"42471":0,"42472":0,"42473":0,"42474":0,"42475":0,"42476":0,"42477":0,"42478":0,"42479":0,"42480":0,"42481":0,"42482":0,"42483":0,"42484":0,"42485":0,"42486":1,"42487":1,"42488":1,"42489":0,"42490":0,"42491":0,"42492":0,"42493":1,"42494":0,"42495":0,"42496":0,"42497":0,"42498":0,"42499":1,"42500":0,"42501":0,"42502":0,"42503":0,"42504":1,"42505":0,"42506":0,"42507":1,"42508":0,"42509":0,"42510":0,"42511":1,"42512":0,"42513":1,"42514":0,"42515":1,"42516":0,"42517":0,"42518":0,"42519":0,"42520":0,"42521":0,"42522":0,"42523":0,"42524":0,"42525":0,"42526":0,"42527":0,"42528":1,"42529":1,"42530":0,"42531":0,"42532":0,"42533":0,"42534":0,"42535":0,"42536":0,"42537":1,"42538":1,"42539":0,"42540":1,"42541":0,"42542":1,"42543":0,"42544":0,"42545":0,"42546":0,"42547":0,"42548":0,"42549":0,"42550":1,"42551":0,"42552":0,"42553":0,"42554":0,"42555":0,"42556":1,"42557":1,"42558":0,"42559":0,"42560":0,"42561":0,"42562":0,"42563":0,"42564":0,"42565":1,"42566":0,"42567":0,"42568":0,"42569":0,"42570":0,"42571":0,"42572":1,"42573":0,"42574":0,"42575":1,"42576":0,"42577":0,"42578":1,"42579":0,"42580":0,"42581":0,"42582":0,"42583":1,"42584":1,"42585":0,"42586":0,"42587":0,"42588":0,"42589":0,"42590":0,"42591":0,"42592":0,"42593":0,"42594":0,"42595":0,"42596":1,"42597":1,"42598":0,"42599":1,"42600":0,"42601":0,"42602":0,"42603":0,"42604":1,"42605":1,"42606":0,"42607":1,"42608":0,"42609":0,"42610":0,"42611":0,"42612":1,"42613":0,"42614":1,"42615":0,"42616":0,"42617":0,"42618":0,"42619":1,"42620":1,"42621":1,"42622":0,"42623":0,"42624":0,"42625":1,"42626":0,"42627":0,"42628":1,"42629":0,"42630":1,"42631":1,"42632":0,"42633":0,"42634":1,"42635":0,"42636":0,"42637":0,"42638":0,"42639":0,"42640":0,"42641":1,"42642":0,"42643":0,"42644":1,"42645":0,"42646":0,"42647":0,"42648":0,"42649":1,"42650":0,"42651":0,"42652":1,"42653":1,"42654":0,"42655":1,"42656":0,"42657":0,"42658":0,"42659":1,"42660":0,"42661":0,"42662":1,"42663":1,"42664":0,"42665":0,"42666":0,"42667":1,"42668":1,"42669":0,"42670":0,"42671":1,"42672":1,"42673":1,"42674":0,"42675":0,"42676":0,"42677":1,"42678":0,"42679":0,"42680":0,"42681":0,"42682":0,"42683":1,"42684":1,"42685":0,"42686":0,"42687":0,"42688":1,"42689":0,"42690":1,"42691":0,"42692":0,"42693":0,"42694":1,"42695":0,"42696":0,"42697":0,"42698":0,"42699":0,"42700":0,"42701":0,"42702":0,"42703":1,"42704":0,"42705":1,"42706":0,"42707":0,"42708":1,"42709":0,"42710":0,"42711":0,"42712":1,"42713":0,"42714":0,"42715":0,"42716":1,"42717":0,"42718":0,"42719":0,"42720":0,"42721":1,"42722":0,"42723":0,"42724":0,"42725":0,"42726":1,"42727":1,"42728":0,"42729":0,"42730":1,"42731":1,"42732":0,"42733":0,"42734":0,"42735":0,"42736":0,"42737":0,"42738":0,"42739":0,"42740":0,"42741":0,"42742":0,"42743":0,"42744":0,"42745":1,"42746":0,"42747":0,"42748":1,"42749":0,"42750":0,"42751":0,"42752":0,"42753":0,"42754":0,"42755":1,"42756":0,"42757":1,"42758":0,"42759":0,"42760":0,"42761":0,"42762":0,"42763":0,"42764":1,"42765":0,"42766":0,"42767":0,"42768":0,"42769":0,"42770":0,"42771":0,"42772":0,"42773":0,"42774":1,"42775":0,"42776":0,"42777":0,"42778":1,"42779":0,"42780":0,"42781":1,"42782":0,"42783":0,"42784":1,"42785":0,"42786":0,"42787":0,"42788":0,"42789":1,"42790":0,"42791":0,"42792":0,"42793":1,"42794":1,"42795":0,"42796":1,"42797":0,"42798":0,"42799":1,"42800":0,"42801":0,"42802":1,"42803":0,"42804":0,"42805":0,"42806":1,"42807":1,"42808":0,"42809":0,"42810":0,"42811":1,"42812":1,"42813":1,"42814":0,"42815":0,"42816":1,"42817":0,"42818":1,"42819":0,"42820":0,"42821":0,"42822":0,"42823":1,"42824":0,"42825":0,"42826":0,"42827":0,"42828":1,"42829":1,"42830":0,"42831":0,"42832":0,"42833":1,"42834":0,"42835":0,"42836":0,"42837":0,"42838":0,"42839":1,"42840":0,"42841":0,"42842":0,"42843":0,"42844":0,"42845":0,"42846":0,"42847":0,"42848":0,"42849":0,"42850":0,"42851":1,"42852":1,"42853":0,"42854":1,"42855":0,"42856":0,"42857":1,"42858":1,"42859":0,"42860":0,"42861":0,"42862":0,"42863":0,"42864":1,"42865":1,"42866":1,"42867":1,"42868":0,"42869":0,"42870":0,"42871":0,"42872":0,"42873":0,"42874":1,"42875":0,"42876":0,"42877":0,"42878":1,"42879":1,"42880":0,"42881":0,"42882":1,"42883":1,"42884":0,"42885":1,"42886":0,"42887":0,"42888":0,"42889":1,"42890":0,"42891":0,"42892":1,"42893":0,"42894":1,"42895":0,"42896":0,"42897":1,"42898":0,"42899":0,"42900":0,"42901":0,"42902":0,"42903":0,"42904":1,"42905":0,"42906":0,"42907":0,"42908":0,"42909":0,"42910":0,"42911":0,"42912":0,"42913":1,"42914":0,"42915":0,"42916":0,"42917":0,"42918":1,"42919":0,"42920":0,"42921":0,"42922":0,"42923":1,"42924":0,"42925":0,"42926":0,"42927":1,"42928":0,"42929":0,"42930":0,"42931":0,"42932":0,"42933":0,"42934":0,"42935":0,"42936":0,"42937":1,"42938":0,"42939":0,"42940":0,"42941":0,"42942":0,"42943":1,"42944":0,"42945":1,"42946":0,"42947":1,"42948":0,"42949":0,"42950":1,"42951":0,"42952":0,"42953":0,"42954":0,"42955":0,"42956":1,"42957":0,"42958":0,"42959":0,"42960":0,"42961":1,"42962":0,"42963":0,"42964":0,"42965":0,"42966":0,"42967":0,"42968":0,"42969":0,"42970":0,"42971":0,"42972":0,"42973":0,"42974":0,"42975":0,"42976":0,"42977":0,"42978":0,"42979":0,"42980":0,"42981":0,"42982":0,"42983":0,"42984":0,"42985":0,"42986":0,"42987":0,"42988":0,"42989":0,"42990":0,"42991":0,"42992":0,"42993":0,"42994":0,"42995":1,"42996":0,"42997":0,"42998":0,"42999":0,"43000":0,"43001":0,"43002":0,"43003":0,"43004":0,"43005":1,"43006":0,"43007":0,"43008":0,"43009":0,"43010":0,"43011":0,"43012":1,"43013":0,"43014":1,"43015":0,"43016":1,"43017":0,"43018":1,"43019":1,"43020":0,"43021":1,"43022":0,"43023":0,"43024":0,"43025":0,"43026":0,"43027":0,"43028":0,"43029":0,"43030":0,"43031":0,"43032":0,"43033":0,"43034":0,"43035":1,"43036":0,"43037":0,"43038":0,"43039":0,"43040":0,"43041":0,"43042":0,"43043":1,"43044":0,"43045":0,"43046":0,"43047":0,"43048":0,"43049":0,"43050":1,"43051":0,"43052":0,"43053":0,"43054":0,"43055":0,"43056":0,"43057":0,"43058":0,"43059":0,"43060":0,"43061":0,"43062":0,"43063":0,"43064":0,"43065":0,"43066":0,"43067":0,"43068":0,"43069":1,"43070":0,"43071":1,"43072":0,"43073":0,"43074":0,"43075":0,"43076":0,"43077":0,"43078":0,"43079":0,"43080":0,"43081":0,"43082":1,"43083":0,"43084":0,"43085":0,"43086":0,"43087":0,"43088":0,"43089":0,"43090":0,"43091":0,"43092":1,"43093":0,"43094":0,"43095":1,"43096":0,"43097":0,"43098":1,"43099":0,"43100":0,"43101":1,"43102":0,"43103":1,"43104":0,"43105":0,"43106":0,"43107":0,"43108":0,"43109":0,"43110":0,"43111":1,"43112":1,"43113":0,"43114":0,"43115":0,"43116":0,"43117":0,"43118":0,"43119":0,"43120":0,"43121":0,"43122":1,"43123":0,"43124":1,"43125":0,"43126":0,"43127":1,"43128":0,"43129":1,"43130":0,"43131":0,"43132":1,"43133":0,"43134":0,"43135":0,"43136":0,"43137":0,"43138":1,"43139":1,"43140":1,"43141":0,"43142":0,"43143":0,"43144":0,"43145":0,"43146":1,"43147":0,"43148":0,"43149":1,"43150":0,"43151":1,"43152":0,"43153":1,"43154":0,"43155":0,"43156":0,"43157":0,"43158":0,"43159":0,"43160":0,"43161":0,"43162":1,"43163":0,"43164":0,"43165":0,"43166":1,"43167":1,"43168":1,"43169":0,"43170":1,"43171":0,"43172":0,"43173":0,"43174":0,"43175":0,"43176":1,"43177":0,"43178":0,"43179":0,"43180":1,"43181":1,"43182":0,"43183":1,"43184":1,"43185":1,"43186":0,"43187":0,"43188":1,"43189":1,"43190":1,"43191":0,"43192":0,"43193":1,"43194":1,"43195":0,"43196":0,"43197":0,"43198":0,"43199":0,"43200":1,"43201":1,"43202":0,"43203":0,"43204":1,"43205":0,"43206":0,"43207":1,"43208":0,"43209":0,"43210":1,"43211":0,"43212":0,"43213":1,"43214":0,"43215":0,"43216":0,"43217":0,"43218":0,"43219":0,"43220":0,"43221":0,"43222":1,"43223":1,"43224":0,"43225":0,"43226":0,"43227":0,"43228":0,"43229":1,"43230":0,"43231":0,"43232":0,"43233":0,"43234":1,"43235":0,"43236":1,"43237":1,"43238":0,"43239":0,"43240":1,"43241":1,"43242":0,"43243":1,"43244":0,"43245":0,"43246":0,"43247":0,"43248":0,"43249":0,"43250":0,"43251":0,"43252":0,"43253":0,"43254":0,"43255":0,"43256":0,"43257":1,"43258":0,"43259":0,"43260":1,"43261":0,"43262":0,"43263":0,"43264":0,"43265":0,"43266":0,"43267":0,"43268":0,"43269":0,"43270":0,"43271":0,"43272":0,"43273":0,"43274":1,"43275":0,"43276":1,"43277":0,"43278":0,"43279":0,"43280":0,"43281":0,"43282":1,"43283":0,"43284":0,"43285":0,"43286":0,"43287":1,"43288":0,"43289":0,"43290":0,"43291":0,"43292":0,"43293":1,"43294":0,"43295":0,"43296":0,"43297":0,"43298":0,"43299":0,"43300":0,"43301":0,"43302":1,"43303":1,"43304":0,"43305":0,"43306":1,"43307":0,"43308":0,"43309":0,"43310":0,"43311":1,"43312":0,"43313":0,"43314":0,"43315":1,"43316":0,"43317":0,"43318":0,"43319":1,"43320":0,"43321":0,"43322":0,"43323":1,"43324":0,"43325":1,"43326":0,"43327":0,"43328":1,"43329":1,"43330":1,"43331":0,"43332":0,"43333":0,"43334":0,"43335":0,"43336":0,"43337":0,"43338":0,"43339":0,"43340":1,"43341":0,"43342":1,"43343":0,"43344":0,"43345":1,"43346":0,"43347":0,"43348":0,"43349":0,"43350":1,"43351":0,"43352":0,"43353":1,"43354":0,"43355":1,"43356":0,"43357":0,"43358":0,"43359":1,"43360":0,"43361":1,"43362":0,"43363":1,"43364":0,"43365":0,"43366":0,"43367":1,"43368":0,"43369":0,"43370":0,"43371":0,"43372":0,"43373":0,"43374":0,"43375":0,"43376":1,"43377":0,"43378":0,"43379":0,"43380":0,"43381":0,"43382":0,"43383":0,"43384":1,"43385":0,"43386":1,"43387":0,"43388":0,"43389":1,"43390":0,"43391":1,"43392":1,"43393":0,"43394":0,"43395":1,"43396":0,"43397":0,"43398":0,"43399":0,"43400":1,"43401":0,"43402":0,"43403":1,"43404":0,"43405":0,"43406":0,"43407":0,"43408":0,"43409":0,"43410":0,"43411":0,"43412":0,"43413":0,"43414":0,"43415":0,"43416":0,"43417":0,"43418":1,"43419":0,"43420":1,"43421":0,"43422":0,"43423":0,"43424":1,"43425":0,"43426":0,"43427":0,"43428":0,"43429":1,"43430":0,"43431":0,"43432":0,"43433":0,"43434":0,"43435":0,"43436":0,"43437":1,"43438":0,"43439":0,"43440":0,"43441":1,"43442":0,"43443":0,"43444":0,"43445":0,"43446":1,"43447":0,"43448":0,"43449":0,"43450":0,"43451":0,"43452":0,"43453":0,"43454":1,"43455":0,"43456":0,"43457":0,"43458":0,"43459":0,"43460":0,"43461":0,"43462":0,"43463":1,"43464":0,"43465":0,"43466":0,"43467":0,"43468":1,"43469":0,"43470":0,"43471":0,"43472":0,"43473":1,"43474":0,"43475":0,"43476":0,"43477":0,"43478":0,"43479":0,"43480":1,"43481":0,"43482":0,"43483":0,"43484":0,"43485":0,"43486":0,"43487":0,"43488":0,"43489":0,"43490":0,"43491":0,"43492":0,"43493":0,"43494":0,"43495":1,"43496":0,"43497":0,"43498":0,"43499":0,"43500":0,"43501":0,"43502":0,"43503":0,"43504":0,"43505":1,"43506":0,"43507":0,"43508":0,"43509":0,"43510":0,"43511":0,"43512":0,"43513":0,"43514":1,"43515":1,"43516":1,"43517":0,"43518":1,"43519":0,"43520":0,"43521":0,"43522":0,"43523":0,"43524":1,"43525":1,"43526":1,"43527":1,"43528":0,"43529":1,"43530":0,"43531":1,"43532":1,"43533":0,"43534":0,"43535":1,"43536":0,"43537":1,"43538":1,"43539":1,"43540":0,"43541":0,"43542":1,"43543":0,"43544":0,"43545":0,"43546":0,"43547":0,"43548":1,"43549":0,"43550":1,"43551":0,"43552":0,"43553":1,"43554":0,"43555":0,"43556":1,"43557":0,"43558":1,"43559":0,"43560":0,"43561":0,"43562":0,"43563":1,"43564":0,"43565":0,"43566":1,"43567":0,"43568":0,"43569":0,"43570":0,"43571":1,"43572":0,"43573":0,"43574":1,"43575":0,"43576":1,"43577":0,"43578":0,"43579":0,"43580":0,"43581":0,"43582":0,"43583":1,"43584":0,"43585":1,"43586":0,"43587":1,"43588":1,"43589":1,"43590":0,"43591":0,"43592":0,"43593":0,"43594":0,"43595":0,"43596":0,"43597":0,"43598":1,"43599":1,"43600":1,"43601":0,"43602":0,"43603":0,"43604":0,"43605":0,"43606":0,"43607":0,"43608":0,"43609":0,"43610":0,"43611":0,"43612":0,"43613":0,"43614":0,"43615":1,"43616":0,"43617":0,"43618":0,"43619":0,"43620":0,"43621":0,"43622":0,"43623":1,"43624":0,"43625":1,"43626":0,"43627":1,"43628":0,"43629":0,"43630":0,"43631":0,"43632":0,"43633":0,"43634":0,"43635":0,"43636":1,"43637":0,"43638":1,"43639":1,"43640":0,"43641":0,"43642":0,"43643":0,"43644":0,"43645":0,"43646":0,"43647":0,"43648":1,"43649":0,"43650":0,"43651":0,"43652":0,"43653":0,"43654":0,"43655":1,"43656":1,"43657":1,"43658":0,"43659":0,"43660":0,"43661":1,"43662":0,"43663":1,"43664":0,"43665":0,"43666":0,"43667":0,"43668":0,"43669":0,"43670":0,"43671":1,"43672":0,"43673":0,"43674":1,"43675":0,"43676":0,"43677":0,"43678":0,"43679":1,"43680":0,"43681":0,"43682":0,"43683":0,"43684":0,"43685":0,"43686":0,"43687":0,"43688":0,"43689":0,"43690":0,"43691":0,"43692":1,"43693":1,"43694":1,"43695":0,"43696":1,"43697":0,"43698":0,"43699":0,"43700":1,"43701":0,"43702":0,"43703":0,"43704":0,"43705":1,"43706":0,"43707":1,"43708":0,"43709":0,"43710":0,"43711":0,"43712":0,"43713":1,"43714":0,"43715":0,"43716":0,"43717":0,"43718":0,"43719":0,"43720":0,"43721":0,"43722":0,"43723":0,"43724":0,"43725":1,"43726":1,"43727":0,"43728":0,"43729":0,"43730":0,"43731":0,"43732":0,"43733":0,"43734":0,"43735":0,"43736":0,"43737":0,"43738":0,"43739":0,"43740":1,"43741":0,"43742":0,"43743":1,"43744":0,"43745":1,"43746":1,"43747":0,"43748":1,"43749":0,"43750":0,"43751":0,"43752":0,"43753":0,"43754":0,"43755":0,"43756":0,"43757":0,"43758":0,"43759":0,"43760":1,"43761":1,"43762":0,"43763":1,"43764":1,"43765":0,"43766":0,"43767":0,"43768":1,"43769":0,"43770":1,"43771":0,"43772":0,"43773":0,"43774":1,"43775":0,"43776":1,"43777":1,"43778":0,"43779":0,"43780":0,"43781":0,"43782":1,"43783":0,"43784":0,"43785":0,"43786":0,"43787":0,"43788":0,"43789":0,"43790":0,"43791":0,"43792":0,"43793":0,"43794":1,"43795":0,"43796":0,"43797":0,"43798":0,"43799":0,"43800":0,"43801":0,"43802":0,"43803":0,"43804":0,"43805":0,"43806":1,"43807":0,"43808":0,"43809":0,"43810":0,"43811":0,"43812":0,"43813":0,"43814":0,"43815":0,"43816":0,"43817":0,"43818":1,"43819":0,"43820":1,"43821":1,"43822":1,"43823":0,"43824":1,"43825":0,"43826":0,"43827":0,"43828":1,"43829":1,"43830":1,"43831":1,"43832":1,"43833":0,"43834":0,"43835":0,"43836":1,"43837":0,"43838":1,"43839":1,"43840":1,"43841":0,"43842":0,"43843":0,"43844":0,"43845":0,"43846":1,"43847":1,"43848":0,"43849":0,"43850":0,"43851":0,"43852":0,"43853":0,"43854":0,"43855":0,"43856":1,"43857":1,"43858":0,"43859":0,"43860":0,"43861":0,"43862":0,"43863":0,"43864":0,"43865":0,"43866":0,"43867":0,"43868":1,"43869":0,"43870":0,"43871":0,"43872":0,"43873":0,"43874":0,"43875":0,"43876":0,"43877":0,"43878":0,"43879":1,"43880":1,"43881":0,"43882":0,"43883":0,"43884":0,"43885":0,"43886":0,"43887":0,"43888":0,"43889":0,"43890":1,"43891":0,"43892":0,"43893":0,"43894":0,"43895":0,"43896":0,"43897":1,"43898":1,"43899":0,"43900":0,"43901":0,"43902":0,"43903":0,"43904":0,"43905":0,"43906":0,"43907":1,"43908":0,"43909":1,"43910":0,"43911":0,"43912":0,"43913":0,"43914":0,"43915":0,"43916":0,"43917":0,"43918":0,"43919":0,"43920":0,"43921":0,"43922":0,"43923":0,"43924":0,"43925":0,"43926":1,"43927":0,"43928":0,"43929":0,"43930":0,"43931":0,"43932":1,"43933":1,"43934":1,"43935":1,"43936":1,"43937":1,"43938":1,"43939":0,"43940":0,"43941":1,"43942":0,"43943":0,"43944":0,"43945":1,"43946":0,"43947":0,"43948":0,"43949":0,"43950":1,"43951":0,"43952":0,"43953":0,"43954":0,"43955":1,"43956":0,"43957":0,"43958":0,"43959":1,"43960":1,"43961":1,"43962":1,"43963":1,"43964":0,"43965":0,"43966":0,"43967":0,"43968":0,"43969":0,"43970":0,"43971":1,"43972":1,"43973":0,"43974":0,"43975":0,"43976":0,"43977":0,"43978":0,"43979":0,"43980":1,"43981":0,"43982":0,"43983":1,"43984":0,"43985":1,"43986":0,"43987":0,"43988":0,"43989":1,"43990":0,"43991":0,"43992":0,"43993":0,"43994":1,"43995":0,"43996":0,"43997":1,"43998":1,"43999":0,"44000":0,"44001":0,"44002":0,"44003":0,"44004":1,"44005":1,"44006":0,"44007":1,"44008":1,"44009":0,"44010":0,"44011":1,"44012":0,"44013":0,"44014":0,"44015":0,"44016":1,"44017":1,"44018":0,"44019":0,"44020":1,"44021":0,"44022":0,"44023":1,"44024":0,"44025":1,"44026":0,"44027":0,"44028":0,"44029":0,"44030":0,"44031":0,"44032":0,"44033":1,"44034":1,"44035":0,"44036":0,"44037":0,"44038":0,"44039":0,"44040":0,"44041":0,"44042":1,"44043":0,"44044":0,"44045":0,"44046":0,"44047":1,"44048":0,"44049":0,"44050":0,"44051":1,"44052":0,"44053":0,"44054":0,"44055":0,"44056":1,"44057":0,"44058":0,"44059":0,"44060":0,"44061":0,"44062":0,"44063":1,"44064":0,"44065":0,"44066":1,"44067":0,"44068":1,"44069":1,"44070":0,"44071":1,"44072":0,"44073":1,"44074":0,"44075":0,"44076":1,"44077":0,"44078":0,"44079":1,"44080":0,"44081":0,"44082":1,"44083":0,"44084":0,"44085":0,"44086":0,"44087":0,"44088":0,"44089":0,"44090":0,"44091":0,"44092":0,"44093":0,"44094":0,"44095":1,"44096":0,"44097":1,"44098":1,"44099":0,"44100":0,"44101":0,"44102":0,"44103":0,"44104":0,"44105":0,"44106":0,"44107":1,"44108":0,"44109":0,"44110":0,"44111":0,"44112":0,"44113":1,"44114":1,"44115":0,"44116":0,"44117":0,"44118":0,"44119":0,"44120":0,"44121":0,"44122":0,"44123":1,"44124":1,"44125":0,"44126":0,"44127":1,"44128":0,"44129":0,"44130":1,"44131":0,"44132":0,"44133":1,"44134":0,"44135":0,"44136":1,"44137":0,"44138":1,"44139":0,"44140":0,"44141":1,"44142":0,"44143":0,"44144":0,"44145":0,"44146":1,"44147":0,"44148":1,"44149":1,"44150":0,"44151":0,"44152":0,"44153":0,"44154":0,"44155":0,"44156":0,"44157":1,"44158":0,"44159":0,"44160":0,"44161":0,"44162":0,"44163":0,"44164":1,"44165":0,"44166":0,"44167":0,"44168":1,"44169":0,"44170":0,"44171":0,"44172":1,"44173":0,"44174":1,"44175":0,"44176":0,"44177":0,"44178":0,"44179":0,"44180":1,"44181":0,"44182":0,"44183":0,"44184":0,"44185":0,"44186":0,"44187":0,"44188":0,"44189":0,"44190":0,"44191":1,"44192":0,"44193":0,"44194":0,"44195":1,"44196":0,"44197":0,"44198":0,"44199":0,"44200":0,"44201":0,"44202":1,"44203":1,"44204":0,"44205":0,"44206":0,"44207":1,"44208":0,"44209":0,"44210":0,"44211":0,"44212":0,"44213":0,"44214":0,"44215":0,"44216":0,"44217":0,"44218":0,"44219":0,"44220":0,"44221":0,"44222":0,"44223":0,"44224":1,"44225":1,"44226":0,"44227":1,"44228":1,"44229":1,"44230":0,"44231":1,"44232":0,"44233":0,"44234":0,"44235":1,"44236":0,"44237":0,"44238":0,"44239":1,"44240":0,"44241":0,"44242":1,"44243":0,"44244":0,"44245":1,"44246":1,"44247":0,"44248":0,"44249":0,"44250":0,"44251":0,"44252":0,"44253":1,"44254":0,"44255":0,"44256":0,"44257":0,"44258":0,"44259":1,"44260":0,"44261":0,"44262":0,"44263":0,"44264":1,"44265":0,"44266":0,"44267":0,"44268":1,"44269":0,"44270":0,"44271":0,"44272":0,"44273":0,"44274":1,"44275":1,"44276":1,"44277":0,"44278":0,"44279":0,"44280":0,"44281":0,"44282":0,"44283":0,"44284":0,"44285":0,"44286":0,"44287":0,"44288":0,"44289":1,"44290":0,"44291":1,"44292":1,"44293":0,"44294":0,"44295":0,"44296":0,"44297":0,"44298":1,"44299":0,"44300":0,"44301":0,"44302":0,"44303":1,"44304":0,"44305":0,"44306":0,"44307":0,"44308":0,"44309":0,"44310":0,"44311":0,"44312":0,"44313":0,"44314":1,"44315":1,"44316":0,"44317":1,"44318":0,"44319":0,"44320":0,"44321":0,"44322":0,"44323":0,"44324":0,"44325":1,"44326":0,"44327":0,"44328":0,"44329":0,"44330":1,"44331":0,"44332":0,"44333":0,"44334":0,"44335":0,"44336":1,"44337":0,"44338":0,"44339":0,"44340":1,"44341":0,"44342":0,"44343":0,"44344":0,"44345":1,"44346":1,"44347":0,"44348":0,"44349":1,"44350":1,"44351":1,"44352":0,"44353":0,"44354":0,"44355":1,"44356":0,"44357":0,"44358":0,"44359":0,"44360":0,"44361":0,"44362":0,"44363":0,"44364":0,"44365":1,"44366":0,"44367":0,"44368":0,"44369":1,"44370":0,"44371":0,"44372":0,"44373":0,"44374":1,"44375":1,"44376":0,"44377":0,"44378":0,"44379":0,"44380":1,"44381":0,"44382":1,"44383":0,"44384":0,"44385":0,"44386":1,"44387":0,"44388":0,"44389":0,"44390":1,"44391":0,"44392":0,"44393":1,"44394":0,"44395":0,"44396":0,"44397":0,"44398":0,"44399":1,"44400":0,"44401":0,"44402":0,"44403":1,"44404":0,"44405":0,"44406":1,"44407":1,"44408":1,"44409":0,"44410":0,"44411":0,"44412":1,"44413":0,"44414":0,"44415":0,"44416":1,"44417":1,"44418":1,"44419":0,"44420":0,"44421":0,"44422":0,"44423":0,"44424":0,"44425":0,"44426":0,"44427":0,"44428":0,"44429":0,"44430":1,"44431":0,"44432":0,"44433":1,"44434":0,"44435":1,"44436":0,"44437":1,"44438":0,"44439":0,"44440":1,"44441":0,"44442":1,"44443":0,"44444":0,"44445":0,"44446":0,"44447":0,"44448":0,"44449":0,"44450":0,"44451":0,"44452":0,"44453":0,"44454":0,"44455":0,"44456":0,"44457":1,"44458":0,"44459":0,"44460":0,"44461":0,"44462":0,"44463":0,"44464":0,"44465":0,"44466":1,"44467":0,"44468":0,"44469":0,"44470":0,"44471":0,"44472":0,"44473":1,"44474":1,"44475":0,"44476":0,"44477":1,"44478":0,"44479":0,"44480":1,"44481":0,"44482":0,"44483":0,"44484":0,"44485":0,"44486":0,"44487":0,"44488":0,"44489":1,"44490":0,"44491":0,"44492":0,"44493":0,"44494":1,"44495":0,"44496":0,"44497":1,"44498":0,"44499":1,"44500":0,"44501":0,"44502":1,"44503":1,"44504":0,"44505":0,"44506":0,"44507":0,"44508":0,"44509":0,"44510":0,"44511":1,"44512":0,"44513":0,"44514":0,"44515":1,"44516":0,"44517":1,"44518":0,"44519":0,"44520":0,"44521":0,"44522":0,"44523":1,"44524":0,"44525":0,"44526":1,"44527":0,"44528":0,"44529":0,"44530":0,"44531":0,"44532":1,"44533":1,"44534":1,"44535":1,"44536":0,"44537":0,"44538":0,"44539":0,"44540":0,"44541":0,"44542":0,"44543":0,"44544":1,"44545":0,"44546":0,"44547":0,"44548":0,"44549":1,"44550":1,"44551":0,"44552":0,"44553":1,"44554":1,"44555":0,"44556":0,"44557":0,"44558":0,"44559":0,"44560":0,"44561":1,"44562":0,"44563":0,"44564":0,"44565":0,"44566":0,"44567":0,"44568":1,"44569":1,"44570":0,"44571":0,"44572":0,"44573":1,"44574":0,"44575":0,"44576":0,"44577":0,"44578":0,"44579":0,"44580":0,"44581":0,"44582":0,"44583":0,"44584":0,"44585":0,"44586":0,"44587":0,"44588":1,"44589":1,"44590":1,"44591":0,"44592":0,"44593":1,"44594":0,"44595":0,"44596":0,"44597":1,"44598":1,"44599":1,"44600":0,"44601":0,"44602":1,"44603":0,"44604":0,"44605":0,"44606":1,"44607":0,"44608":1,"44609":0,"44610":0,"44611":1,"44612":1,"44613":0,"44614":1,"44615":0,"44616":0,"44617":0,"44618":0,"44619":0,"44620":0,"44621":0,"44622":1,"44623":0,"44624":0,"44625":1,"44626":0,"44627":0,"44628":1,"44629":0,"44630":0,"44631":0,"44632":0,"44633":1,"44634":0,"44635":0,"44636":0,"44637":0,"44638":1,"44639":0,"44640":0,"44641":0,"44642":0,"44643":1,"44644":1,"44645":1,"44646":0,"44647":0,"44648":0,"44649":1,"44650":0,"44651":0,"44652":0,"44653":1,"44654":0,"44655":0,"44656":1,"44657":1,"44658":0,"44659":0,"44660":0,"44661":0,"44662":0,"44663":0,"44664":1,"44665":0,"44666":0,"44667":0,"44668":0,"44669":0,"44670":0,"44671":0,"44672":0,"44673":0,"44674":0,"44675":0,"44676":0,"44677":0,"44678":0,"44679":0,"44680":0,"44681":0,"44682":0,"44683":0,"44684":0,"44685":0,"44686":0,"44687":0,"44688":0,"44689":0,"44690":0,"44691":1,"44692":1,"44693":0,"44694":1,"44695":0,"44696":0,"44697":0,"44698":1,"44699":0,"44700":1,"44701":0,"44702":0,"44703":0,"44704":0,"44705":0,"44706":0,"44707":1,"44708":0,"44709":0,"44710":0,"44711":1,"44712":0,"44713":0,"44714":0,"44715":1,"44716":1,"44717":0,"44718":0,"44719":1,"44720":0,"44721":0,"44722":0,"44723":0,"44724":1,"44725":0,"44726":0,"44727":1,"44728":0,"44729":1,"44730":0,"44731":0,"44732":0,"44733":1,"44734":0,"44735":0,"44736":0,"44737":1,"44738":0,"44739":1,"44740":0,"44741":0,"44742":1,"44743":1,"44744":1,"44745":0,"44746":0,"44747":0,"44748":0,"44749":1,"44750":0,"44751":0,"44752":0,"44753":0,"44754":0,"44755":0,"44756":1,"44757":0,"44758":1,"44759":0,"44760":0,"44761":0,"44762":0,"44763":0,"44764":1,"44765":0,"44766":0,"44767":0,"44768":0,"44769":1,"44770":0,"44771":0,"44772":1,"44773":0,"44774":0,"44775":1,"44776":0,"44777":0,"44778":0,"44779":0,"44780":0,"44781":0,"44782":0,"44783":0,"44784":0,"44785":0,"44786":0,"44787":0,"44788":0,"44789":1,"44790":0,"44791":0,"44792":0,"44793":1,"44794":0,"44795":0,"44796":0,"44797":0,"44798":0,"44799":0,"44800":0,"44801":0,"44802":1,"44803":0,"44804":0,"44805":0,"44806":0,"44807":0,"44808":0,"44809":0,"44810":0,"44811":0,"44812":0,"44813":0,"44814":0,"44815":0,"44816":0,"44817":0,"44818":0,"44819":1,"44820":0,"44821":0,"44822":1,"44823":0,"44824":0,"44825":0,"44826":0,"44827":0,"44828":0,"44829":0,"44830":1,"44831":1,"44832":1,"44833":0,"44834":0,"44835":1,"44836":0,"44837":0,"44838":0,"44839":1,"44840":0,"44841":0,"44842":0,"44843":0,"44844":1,"44845":0,"44846":0,"44847":1,"44848":0,"44849":1,"44850":1,"44851":1,"44852":0,"44853":0,"44854":0,"44855":0,"44856":0,"44857":0,"44858":0,"44859":0,"44860":0,"44861":0,"44862":0,"44863":1,"44864":0,"44865":0,"44866":0,"44867":0,"44868":0,"44869":0,"44870":0,"44871":0,"44872":0,"44873":0,"44874":1,"44875":0,"44876":0,"44877":0,"44878":0,"44879":1,"44880":0,"44881":0,"44882":0,"44883":0,"44884":1,"44885":0,"44886":1,"44887":0,"44888":1,"44889":0,"44890":0,"44891":1,"44892":0,"44893":1,"44894":0,"44895":1,"44896":0,"44897":0,"44898":0,"44899":0,"44900":1,"44901":0,"44902":0,"44903":1,"44904":0,"44905":0,"44906":0,"44907":0,"44908":0,"44909":0,"44910":0,"44911":1,"44912":0,"44913":1,"44914":0,"44915":0,"44916":1,"44917":1,"44918":0,"44919":0,"44920":0,"44921":0,"44922":0,"44923":0,"44924":1,"44925":0,"44926":0,"44927":0,"44928":0,"44929":0,"44930":0,"44931":0,"44932":1,"44933":0,"44934":0,"44935":0,"44936":0,"44937":0,"44938":0,"44939":0,"44940":0,"44941":0,"44942":0,"44943":0,"44944":0,"44945":1,"44946":0,"44947":0,"44948":1,"44949":0,"44950":1,"44951":0,"44952":0,"44953":1,"44954":0,"44955":0,"44956":0,"44957":0,"44958":1,"44959":0,"44960":0,"44961":0,"44962":0,"44963":0,"44964":1,"44965":1,"44966":1,"44967":0,"44968":0,"44969":0,"44970":0,"44971":0,"44972":0,"44973":0,"44974":0,"44975":0,"44976":0,"44977":0,"44978":1,"44979":1,"44980":1,"44981":0,"44982":0,"44983":0,"44984":1,"44985":1,"44986":1,"44987":0,"44988":0,"44989":1,"44990":0,"44991":0,"44992":0,"44993":1,"44994":1,"44995":0,"44996":1,"44997":0,"44998":0,"44999":0,"45000":1,"45001":1,"45002":0,"45003":0,"45004":1,"45005":0,"45006":0,"45007":0,"45008":0,"45009":1,"45010":1,"45011":0,"45012":0,"45013":1,"45014":0,"45015":0,"45016":0,"45017":1,"45018":0,"45019":0,"45020":0,"45021":0,"45022":0,"45023":1,"45024":0,"45025":0,"45026":0,"45027":0,"45028":0,"45029":0,"45030":0,"45031":0,"45032":1,"45033":0,"45034":0,"45035":1,"45036":0,"45037":0,"45038":0,"45039":0,"45040":0,"45041":0,"45042":0,"45043":0,"45044":0,"45045":0,"45046":0,"45047":1,"45048":0,"45049":1,"45050":0,"45051":1,"45052":1,"45053":0,"45054":0,"45055":0,"45056":1,"45057":1,"45058":1,"45059":0,"45060":1,"45061":0,"45062":0,"45063":0,"45064":0,"45065":1,"45066":1,"45067":1,"45068":0,"45069":0,"45070":0,"45071":0,"45072":1,"45073":0,"45074":0,"45075":0,"45076":0,"45077":0,"45078":0,"45079":1,"45080":0,"45081":1,"45082":0,"45083":1,"45084":0,"45085":1,"45086":0,"45087":0,"45088":1,"45089":0,"45090":0,"45091":0,"45092":0,"45093":0,"45094":0,"45095":0,"45096":0,"45097":0,"45098":1,"45099":1,"45100":0,"45101":0,"45102":0,"45103":0,"45104":1,"45105":0,"45106":0,"45107":1,"45108":1,"45109":0,"45110":1,"45111":1,"45112":0,"45113":0,"45114":1,"45115":0,"45116":0,"45117":0,"45118":1,"45119":0,"45120":1,"45121":0,"45122":0,"45123":0,"45124":0,"45125":0,"45126":0,"45127":1,"45128":0,"45129":1,"45130":0,"45131":0,"45132":1,"45133":0,"45134":0,"45135":1,"45136":0,"45137":0,"45138":0,"45139":0,"45140":0,"45141":0,"45142":0,"45143":0,"45144":0,"45145":0,"45146":0,"45147":0,"45148":0,"45149":1,"45150":0,"45151":1,"45152":1,"45153":0,"45154":1,"45155":0,"45156":0,"45157":1,"45158":0,"45159":1,"45160":0,"45161":0,"45162":1,"45163":0,"45164":0,"45165":1,"45166":0,"45167":0,"45168":0,"45169":0,"45170":0,"45171":1,"45172":1,"45173":0,"45174":0,"45175":0,"45176":0,"45177":0,"45178":0,"45179":1,"45180":0,"45181":0,"45182":0,"45183":0,"45184":0,"45185":1,"45186":0,"45187":0,"45188":0,"45189":0,"45190":0,"45191":1,"45192":0,"45193":1,"45194":1,"45195":0,"45196":0,"45197":0,"45198":0,"45199":0,"45200":0,"45201":0,"45202":0,"45203":0,"45204":0,"45205":0,"45206":0,"45207":0,"45208":0,"45209":1,"45210":0,"45211":0,"45212":0,"45213":1,"45214":0,"45215":0,"45216":0,"45217":0,"45218":1,"45219":0,"45220":0,"45221":0,"45222":1,"45223":0,"45224":0,"45225":0,"45226":0,"45227":0,"45228":1,"45229":1,"45230":0,"45231":0,"45232":1,"45233":1,"45234":1,"45235":0,"45236":0,"45237":0,"45238":0,"45239":1,"45240":1,"45241":0,"45242":0,"45243":0,"45244":0,"45245":0,"45246":0,"45247":0,"45248":0,"45249":0,"45250":0,"45251":0,"45252":0,"45253":0,"45254":1,"45255":1,"45256":1,"45257":0,"45258":0,"45259":0,"45260":1,"45261":0,"45262":0,"45263":0,"45264":0,"45265":0,"45266":1,"45267":1,"45268":0,"45269":1,"45270":1,"45271":0,"45272":0,"45273":0,"45274":0,"45275":0,"45276":1,"45277":0,"45278":0,"45279":0,"45280":1,"45281":0,"45282":1,"45283":1,"45284":0,"45285":0,"45286":0,"45287":0,"45288":0,"45289":0,"45290":0,"45291":0,"45292":1,"45293":0,"45294":1,"45295":0,"45296":0,"45297":0,"45298":0,"45299":0,"45300":0,"45301":0,"45302":0,"45303":0,"45304":1,"45305":0,"45306":1,"45307":1,"45308":0,"45309":1,"45310":0,"45311":0,"45312":1,"45313":1,"45314":0,"45315":1,"45316":0,"45317":0,"45318":0,"45319":0,"45320":0,"45321":0,"45322":0,"45323":0,"45324":0,"45325":1,"45326":0,"45327":0,"45328":1,"45329":1,"45330":0,"45331":0,"45332":1,"45333":0,"45334":1,"45335":0,"45336":1,"45337":0,"45338":0,"45339":0,"45340":0,"45341":0,"45342":0,"45343":0,"45344":0,"45345":0,"45346":0,"45347":1,"45348":0,"45349":1,"45350":1,"45351":0,"45352":0,"45353":0,"45354":0,"45355":0,"45356":0,"45357":0,"45358":0,"45359":0,"45360":0,"45361":0,"45362":1,"45363":0,"45364":0,"45365":0,"45366":1,"45367":0,"45368":0,"45369":0,"45370":0,"45371":0,"45372":0,"45373":1,"45374":0,"45375":0,"45376":0,"45377":0,"45378":0,"45379":0,"45380":0,"45381":0,"45382":0,"45383":0,"45384":0,"45385":0,"45386":1,"45387":1,"45388":1,"45389":0,"45390":0,"45391":0,"45392":1,"45393":0,"45394":1,"45395":0,"45396":0,"45397":1,"45398":0,"45399":0,"45400":1,"45401":0,"45402":0,"45403":0,"45404":0,"45405":1,"45406":1,"45407":0,"45408":0,"45409":0,"45410":0,"45411":0,"45412":0,"45413":0,"45414":0,"45415":0,"45416":0,"45417":0,"45418":1,"45419":1,"45420":0,"45421":0,"45422":0,"45423":0,"45424":0,"45425":0,"45426":1,"45427":0,"45428":0,"45429":0,"45430":0,"45431":0,"45432":0,"45433":0,"45434":0,"45435":0,"45436":0,"45437":0,"45438":1,"45439":1,"45440":0,"45441":0,"45442":1,"45443":0,"45444":1,"45445":1,"45446":0,"45447":0,"45448":0,"45449":0,"45450":0,"45451":1,"45452":0,"45453":0,"45454":0,"45455":0,"45456":1,"45457":0,"45458":0,"45459":0,"45460":0,"45461":0,"45462":0,"45463":0,"45464":1,"45465":0,"45466":1,"45467":0,"45468":0,"45469":0,"45470":0,"45471":1,"45472":1,"45473":1,"45474":0,"45475":0,"45476":0,"45477":1,"45478":0,"45479":0,"45480":0,"45481":0,"45482":1,"45483":1,"45484":0,"45485":0,"45486":1,"45487":0,"45488":0,"45489":0,"45490":0,"45491":0,"45492":0,"45493":0,"45494":0,"45495":0,"45496":0,"45497":0,"45498":1,"45499":0,"45500":0,"45501":1,"45502":1,"45503":1,"45504":1,"45505":0,"45506":0,"45507":0,"45508":0,"45509":0,"45510":0,"45511":0,"45512":0,"45513":0,"45514":1,"45515":0,"45516":0,"45517":0,"45518":0,"45519":1,"45520":0,"45521":0,"45522":1,"45523":0,"45524":0,"45525":0,"45526":0,"45527":0,"45528":0,"45529":0,"45530":0,"45531":0,"45532":1,"45533":1,"45534":0,"45535":0,"45536":0,"45537":0,"45538":0,"45539":0,"45540":0,"45541":1,"45542":1,"45543":1,"45544":0,"45545":0,"45546":0,"45547":0,"45548":1,"45549":0,"45550":0,"45551":1,"45552":1,"45553":0,"45554":0,"45555":0,"45556":0,"45557":0,"45558":0,"45559":0,"45560":0,"45561":0,"45562":1,"45563":0,"45564":0,"45565":1,"45566":0,"45567":0,"45568":0,"45569":1,"45570":1,"45571":1,"45572":0,"45573":0,"45574":0,"45575":1,"45576":0,"45577":1,"45578":0,"45579":0,"45580":0,"45581":0,"45582":1,"45583":0,"45584":0,"45585":0,"45586":0,"45587":0,"45588":0,"45589":0,"45590":0,"45591":1,"45592":0,"45593":1,"45594":0,"45595":0,"45596":0,"45597":0,"45598":0,"45599":0,"45600":0,"45601":0,"45602":0,"45603":0,"45604":1,"45605":0,"45606":1,"45607":1,"45608":0,"45609":0,"45610":0,"45611":1,"45612":0,"45613":1,"45614":0,"45615":0,"45616":0,"45617":0,"45618":0,"45619":0,"45620":0,"45621":0,"45622":0,"45623":1,"45624":1,"45625":0,"45626":1,"45627":0,"45628":0,"45629":0,"45630":0,"45631":0,"45632":0,"45633":0,"45634":0,"45635":0,"45636":1,"45637":0,"45638":0,"45639":0,"45640":0,"45641":0,"45642":0,"45643":0,"45644":0,"45645":0,"45646":0,"45647":0,"45648":0,"45649":1,"45650":0,"45651":0,"45652":0,"45653":0,"45654":0,"45655":0,"45656":0,"45657":0,"45658":0,"45659":0,"45660":0,"45661":0,"45662":0,"45663":0,"45664":0,"45665":0,"45666":0,"45667":1,"45668":0,"45669":0,"45670":0,"45671":1,"45672":0,"45673":1,"45674":0,"45675":0,"45676":1,"45677":0,"45678":0,"45679":0,"45680":0,"45681":0,"45682":0,"45683":0,"45684":0,"45685":0,"45686":0,"45687":0,"45688":1,"45689":0,"45690":0,"45691":0,"45692":0,"45693":0,"45694":0,"45695":0,"45696":0,"45697":0,"45698":0,"45699":0,"45700":0,"45701":0,"45702":0,"45703":0,"45704":1,"45705":0,"45706":0,"45707":0,"45708":0,"45709":0,"45710":0,"45711":0,"45712":0,"45713":0,"45714":0,"45715":1,"45716":1,"45717":0,"45718":1,"45719":1,"45720":0,"45721":0,"45722":0,"45723":0,"45724":0,"45725":0,"45726":0,"45727":0,"45728":0,"45729":0,"45730":1,"45731":0,"45732":0,"45733":0,"45734":0,"45735":0,"45736":1,"45737":1,"45738":1,"45739":1,"45740":0,"45741":1,"45742":0,"45743":0,"45744":0,"45745":0,"45746":1,"45747":1,"45748":0,"45749":1,"45750":1,"45751":1,"45752":0,"45753":0,"45754":0,"45755":1,"45756":0,"45757":0,"45758":0,"45759":0,"45760":1,"45761":0,"45762":0,"45763":0,"45764":1,"45765":0,"45766":0,"45767":0,"45768":0,"45769":1,"45770":1,"45771":1,"45772":0,"45773":0,"45774":0,"45775":1,"45776":0,"45777":1,"45778":0,"45779":0,"45780":0,"45781":1,"45782":0,"45783":1,"45784":0,"45785":0,"45786":1,"45787":0,"45788":0,"45789":0,"45790":0,"45791":0,"45792":1,"45793":1,"45794":0,"45795":0,"45796":1,"45797":1,"45798":0,"45799":0,"45800":0,"45801":0,"45802":1,"45803":1,"45804":0,"45805":0,"45806":0,"45807":0,"45808":0,"45809":0,"45810":0,"45811":1,"45812":0,"45813":0,"45814":0,"45815":0,"45816":0,"45817":0,"45818":1,"45819":0,"45820":0,"45821":0,"45822":1,"45823":0,"45824":0,"45825":0,"45826":0,"45827":0,"45828":0,"45829":0,"45830":0,"45831":1,"45832":0,"45833":1,"45834":1,"45835":0,"45836":0,"45837":0,"45838":0,"45839":1,"45840":0,"45841":0,"45842":0,"45843":0,"45844":0,"45845":1,"45846":0,"45847":0,"45848":0,"45849":0,"45850":0,"45851":0,"45852":1,"45853":0,"45854":0,"45855":0,"45856":1,"45857":0,"45858":1,"45859":0,"45860":1,"45861":1,"45862":0,"45863":0,"45864":0,"45865":0,"45866":1,"45867":0,"45868":0,"45869":0,"45870":0,"45871":0,"45872":0,"45873":0,"45874":1,"45875":0,"45876":1,"45877":0,"45878":0,"45879":0,"45880":0,"45881":0,"45882":0,"45883":0,"45884":0,"45885":0,"45886":1,"45887":0,"45888":0,"45889":0,"45890":0,"45891":0,"45892":1,"45893":0,"45894":0,"45895":0,"45896":0,"45897":0,"45898":0,"45899":1,"45900":0,"45901":0,"45902":0,"45903":0,"45904":1,"45905":1,"45906":0,"45907":0,"45908":1,"45909":1,"45910":0,"45911":1,"45912":0,"45913":0,"45914":0,"45915":0,"45916":0,"45917":0,"45918":0,"45919":0,"45920":0,"45921":1,"45922":1,"45923":0,"45924":1,"45925":0,"45926":0,"45927":1,"45928":0,"45929":0,"45930":0,"45931":0,"45932":0,"45933":0,"45934":1,"45935":0,"45936":0,"45937":1,"45938":0,"45939":0,"45940":0,"45941":0,"45942":0,"45943":0,"45944":0,"45945":0,"45946":0,"45947":0,"45948":1,"45949":0,"45950":0,"45951":0,"45952":1,"45953":0,"45954":0,"45955":0,"45956":1,"45957":1,"45958":0,"45959":0,"45960":1,"45961":0,"45962":1,"45963":0,"45964":0,"45965":1,"45966":0,"45967":0,"45968":0,"45969":0,"45970":0,"45971":0,"45972":0,"45973":0,"45974":0,"45975":0,"45976":0,"45977":0,"45978":1,"45979":0,"45980":0,"45981":0,"45982":0,"45983":0,"45984":1,"45985":0,"45986":1,"45987":0,"45988":0,"45989":0,"45990":0,"45991":0,"45992":0,"45993":0,"45994":0,"45995":0,"45996":0,"45997":0,"45998":0,"45999":0,"46000":0,"46001":0,"46002":0,"46003":0,"46004":0,"46005":1,"46006":0,"46007":0,"46008":0,"46009":0,"46010":1,"46011":0,"46012":0,"46013":0,"46014":0,"46015":0,"46016":1,"46017":0,"46018":0,"46019":0,"46020":0,"46021":0,"46022":0,"46023":0,"46024":1,"46025":0,"46026":0,"46027":0,"46028":1,"46029":0,"46030":0,"46031":0,"46032":0,"46033":0,"46034":0,"46035":0,"46036":0,"46037":0,"46038":0,"46039":0,"46040":0,"46041":1,"46042":0,"46043":0,"46044":0,"46045":0,"46046":1,"46047":0,"46048":0,"46049":0,"46050":0,"46051":0,"46052":0,"46053":0,"46054":0,"46055":0,"46056":0,"46057":1,"46058":0,"46059":0,"46060":0,"46061":0,"46062":0,"46063":0,"46064":0,"46065":0,"46066":0,"46067":0,"46068":0,"46069":0,"46070":1,"46071":0,"46072":0,"46073":0,"46074":0,"46075":1,"46076":1,"46077":0,"46078":0,"46079":0,"46080":0,"46081":0,"46082":0,"46083":0,"46084":0,"46085":0,"46086":0,"46087":1,"46088":0,"46089":0,"46090":0,"46091":1,"46092":1,"46093":1,"46094":0,"46095":0,"46096":0,"46097":0,"46098":1,"46099":0,"46100":1,"46101":1,"46102":0,"46103":1,"46104":0,"46105":0,"46106":0,"46107":1,"46108":1,"46109":0,"46110":0,"46111":0,"46112":0,"46113":1,"46114":0,"46115":0,"46116":1,"46117":0,"46118":0,"46119":0,"46120":0,"46121":0,"46122":1,"46123":0,"46124":0,"46125":0,"46126":0,"46127":0,"46128":0,"46129":0,"46130":0,"46131":0,"46132":0,"46133":0,"46134":1,"46135":0,"46136":1,"46137":0,"46138":0,"46139":0,"46140":1,"46141":1,"46142":0,"46143":0,"46144":1,"46145":1,"46146":0,"46147":0,"46148":0,"46149":1,"46150":1,"46151":1,"46152":0,"46153":1,"46154":1,"46155":0,"46156":0,"46157":0,"46158":0,"46159":0,"46160":0,"46161":0,"46162":0,"46163":0,"46164":0,"46165":0,"46166":0,"46167":1,"46168":1,"46169":0,"46170":0,"46171":0,"46172":1,"46173":0,"46174":1,"46175":0,"46176":1,"46177":0,"46178":0,"46179":1,"46180":1,"46181":0,"46182":1,"46183":0,"46184":1,"46185":0,"46186":1,"46187":0,"46188":0,"46189":0,"46190":0,"46191":0,"46192":0,"46193":0,"46194":0,"46195":0,"46196":0,"46197":0,"46198":0,"46199":0,"46200":0,"46201":0,"46202":0,"46203":0,"46204":0,"46205":0,"46206":1,"46207":0,"46208":1,"46209":1,"46210":1,"46211":0,"46212":0,"46213":0,"46214":0,"46215":0,"46216":0,"46217":0,"46218":1,"46219":0,"46220":1,"46221":0,"46222":0,"46223":0,"46224":0,"46225":1,"46226":0,"46227":0,"46228":0,"46229":0,"46230":0,"46231":0,"46232":0,"46233":0,"46234":1,"46235":0,"46236":1,"46237":0,"46238":0,"46239":0,"46240":1,"46241":1,"46242":0,"46243":0,"46244":1,"46245":0,"46246":0,"46247":0,"46248":0,"46249":0,"46250":1,"46251":0,"46252":1,"46253":0,"46254":0,"46255":1,"46256":0,"46257":1,"46258":1,"46259":1,"46260":0,"46261":0,"46262":1,"46263":1,"46264":0,"46265":0,"46266":0,"46267":1,"46268":1,"46269":0,"46270":1,"46271":0,"46272":0,"46273":0,"46274":0,"46275":0,"46276":0,"46277":0,"46278":0,"46279":0,"46280":0,"46281":0,"46282":0,"46283":0,"46284":0,"46285":0,"46286":0,"46287":0,"46288":0,"46289":0,"46290":0,"46291":0,"46292":1,"46293":1,"46294":1,"46295":0,"46296":0,"46297":1,"46298":0,"46299":0,"46300":0,"46301":0,"46302":0,"46303":0,"46304":1,"46305":0,"46306":1,"46307":0,"46308":0,"46309":1,"46310":0,"46311":0,"46312":1,"46313":0,"46314":1,"46315":0,"46316":0,"46317":1,"46318":1,"46319":0,"46320":0,"46321":0,"46322":0,"46323":1,"46324":1,"46325":0,"46326":0,"46327":1,"46328":0,"46329":0,"46330":0,"46331":0,"46332":0,"46333":0,"46334":0,"46335":0,"46336":0,"46337":0,"46338":0,"46339":0,"46340":0,"46341":0,"46342":0,"46343":1,"46344":0,"46345":0,"46346":0,"46347":0,"46348":0,"46349":0,"46350":1,"46351":0,"46352":0,"46353":1,"46354":1,"46355":0,"46356":0,"46357":1,"46358":1,"46359":0,"46360":0,"46361":1,"46362":0,"46363":0,"46364":1,"46365":0,"46366":0,"46367":0,"46368":0,"46369":1,"46370":0,"46371":0,"46372":0,"46373":0,"46374":1,"46375":0,"46376":0,"46377":1,"46378":0,"46379":0,"46380":0,"46381":0,"46382":1,"46383":0,"46384":1,"46385":0,"46386":0,"46387":0,"46388":0,"46389":1,"46390":1,"46391":0,"46392":1,"46393":0,"46394":0,"46395":0,"46396":0,"46397":0,"46398":1,"46399":0,"46400":0,"46401":0,"46402":0,"46403":0,"46404":1,"46405":0,"46406":0,"46407":0,"46408":0,"46409":0,"46410":0,"46411":1,"46412":0,"46413":0,"46414":1,"46415":1,"46416":1,"46417":0,"46418":0,"46419":0,"46420":0,"46421":0,"46422":0,"46423":0,"46424":1,"46425":1,"46426":0,"46427":0,"46428":0,"46429":0,"46430":0,"46431":0,"46432":0,"46433":0,"46434":0,"46435":0,"46436":0,"46437":0,"46438":1,"46439":0,"46440":1,"46441":1,"46442":0,"46443":0,"46444":1,"46445":0,"46446":1,"46447":0,"46448":0,"46449":1,"46450":0,"46451":0,"46452":0,"46453":0,"46454":1,"46455":1,"46456":0,"46457":0,"46458":0,"46459":1,"46460":0,"46461":0,"46462":0,"46463":1,"46464":0,"46465":0,"46466":0,"46467":0,"46468":0,"46469":0,"46470":1,"46471":1,"46472":0,"46473":0,"46474":0,"46475":0,"46476":0,"46477":0,"46478":0,"46479":0,"46480":0,"46481":1,"46482":0,"46483":0,"46484":0,"46485":0,"46486":0,"46487":0,"46488":1,"46489":1,"46490":1,"46491":0,"46492":1,"46493":0,"46494":0,"46495":0,"46496":0,"46497":0,"46498":0,"46499":1,"46500":0,"46501":1,"46502":0,"46503":0,"46504":0,"46505":0,"46506":0,"46507":1,"46508":0,"46509":0,"46510":0,"46511":0,"46512":0,"46513":0,"46514":1,"46515":0,"46516":0,"46517":0,"46518":1,"46519":0,"46520":0,"46521":0,"46522":0,"46523":0,"46524":0,"46525":0,"46526":0,"46527":1,"46528":0,"46529":0,"46530":0,"46531":0,"46532":0,"46533":1,"46534":1,"46535":0,"46536":1,"46537":0,"46538":1,"46539":0,"46540":0,"46541":1,"46542":0,"46543":1,"46544":1,"46545":0,"46546":0,"46547":0,"46548":0,"46549":0,"46550":0,"46551":1,"46552":1,"46553":1,"46554":0,"46555":1,"46556":0,"46557":1,"46558":0,"46559":0,"46560":0,"46561":0,"46562":1,"46563":0,"46564":0,"46565":0,"46566":0,"46567":0,"46568":0,"46569":0,"46570":0,"46571":1,"46572":0,"46573":1,"46574":0,"46575":0,"46576":0,"46577":1,"46578":0,"46579":0,"46580":1,"46581":1,"46582":0,"46583":0,"46584":0,"46585":0,"46586":0,"46587":1,"46588":0,"46589":0,"46590":0,"46591":0,"46592":1,"46593":0,"46594":0,"46595":1,"46596":0,"46597":1,"46598":0,"46599":0,"46600":1,"46601":0,"46602":1,"46603":1,"46604":0,"46605":0,"46606":0,"46607":0,"46608":0,"46609":0,"46610":1,"46611":1,"46612":0,"46613":0,"46614":1,"46615":0,"46616":0,"46617":1,"46618":0,"46619":1,"46620":0,"46621":1,"46622":1,"46623":0,"46624":0,"46625":1,"46626":0,"46627":0,"46628":0,"46629":1,"46630":0,"46631":0,"46632":0,"46633":1,"46634":0,"46635":0,"46636":0,"46637":0,"46638":0,"46639":0,"46640":0,"46641":1,"46642":0,"46643":0,"46644":0,"46645":0,"46646":0,"46647":1,"46648":1,"46649":1,"46650":0,"46651":0,"46652":0,"46653":0,"46654":0,"46655":0,"46656":0,"46657":1,"46658":0,"46659":0,"46660":0,"46661":0,"46662":0,"46663":0,"46664":0,"46665":0,"46666":1,"46667":0,"46668":0,"46669":0,"46670":0,"46671":0,"46672":0,"46673":0,"46674":0,"46675":1,"46676":0,"46677":0,"46678":1,"46679":1,"46680":0,"46681":0,"46682":0,"46683":1,"46684":0,"46685":1,"46686":0,"46687":0,"46688":0,"46689":0,"46690":0,"46691":0,"46692":1,"46693":0,"46694":0,"46695":0,"46696":0,"46697":0,"46698":0,"46699":0,"46700":0,"46701":0,"46702":0,"46703":0,"46704":0,"46705":0,"46706":0,"46707":0,"46708":0,"46709":0,"46710":1,"46711":1,"46712":0,"46713":0,"46714":0,"46715":1,"46716":0,"46717":0,"46718":0,"46719":1,"46720":0,"46721":0,"46722":0,"46723":1,"46724":0,"46725":0,"46726":0,"46727":0,"46728":0,"46729":0,"46730":0,"46731":0,"46732":0,"46733":1,"46734":0,"46735":0,"46736":0,"46737":0,"46738":0,"46739":0,"46740":0,"46741":0,"46742":1,"46743":0,"46744":0,"46745":0,"46746":0,"46747":0,"46748":0,"46749":0,"46750":0,"46751":0,"46752":1,"46753":1,"46754":0,"46755":0,"46756":1,"46757":0,"46758":0,"46759":0,"46760":1,"46761":0,"46762":0,"46763":0,"46764":0,"46765":0,"46766":0,"46767":0,"46768":0,"46769":0,"46770":1,"46771":0,"46772":0,"46773":1,"46774":0,"46775":0,"46776":0,"46777":0,"46778":0,"46779":0,"46780":0,"46781":0,"46782":1,"46783":1,"46784":0,"46785":0,"46786":0,"46787":1,"46788":0,"46789":1,"46790":1,"46791":1,"46792":0,"46793":0,"46794":0,"46795":0,"46796":0,"46797":1,"46798":1,"46799":0,"46800":0,"46801":1,"46802":0,"46803":0,"46804":1,"46805":0,"46806":0,"46807":0,"46808":0,"46809":0,"46810":0,"46811":0,"46812":0,"46813":0,"46814":0,"46815":1,"46816":0,"46817":0,"46818":0,"46819":1,"46820":0,"46821":0,"46822":0,"46823":1,"46824":0,"46825":0,"46826":0,"46827":0,"46828":0,"46829":0,"46830":0,"46831":0,"46832":0,"46833":0,"46834":0,"46835":0,"46836":1,"46837":1,"46838":0,"46839":1,"46840":0,"46841":0,"46842":0,"46843":1,"46844":0,"46845":0,"46846":0,"46847":0,"46848":0,"46849":0,"46850":0,"46851":0,"46852":0,"46853":1,"46854":0,"46855":0,"46856":0,"46857":0,"46858":1,"46859":0,"46860":1,"46861":0,"46862":0,"46863":1,"46864":1,"46865":0,"46866":0,"46867":0,"46868":0,"46869":0,"46870":0,"46871":0,"46872":0,"46873":0,"46874":1,"46875":0,"46876":1,"46877":0,"46878":1,"46879":1,"46880":1,"46881":1,"46882":0,"46883":1,"46884":0,"46885":0,"46886":0,"46887":0,"46888":0,"46889":0,"46890":0,"46891":0,"46892":1,"46893":1,"46894":0,"46895":0,"46896":0,"46897":1,"46898":0,"46899":0,"46900":1,"46901":0,"46902":0,"46903":0,"46904":1,"46905":1,"46906":0,"46907":0,"46908":0,"46909":0,"46910":0,"46911":1,"46912":0,"46913":0,"46914":0,"46915":1,"46916":0,"46917":1,"46918":0,"46919":0,"46920":1,"46921":1,"46922":0,"46923":0,"46924":0,"46925":0,"46926":0,"46927":0,"46928":1,"46929":0,"46930":0,"46931":0,"46932":1,"46933":0,"46934":0,"46935":0,"46936":1,"46937":0,"46938":0,"46939":1,"46940":1,"46941":0,"46942":1,"46943":1,"46944":1,"46945":0,"46946":0,"46947":0,"46948":0,"46949":0,"46950":0,"46951":0,"46952":0,"46953":0,"46954":0,"46955":0,"46956":0,"46957":0,"46958":0,"46959":0,"46960":0,"46961":1,"46962":1,"46963":0,"46964":0,"46965":0,"46966":0,"46967":0,"46968":0,"46969":1,"46970":1,"46971":0,"46972":1,"46973":1,"46974":0,"46975":1,"46976":1,"46977":0,"46978":1,"46979":0,"46980":0,"46981":0,"46982":0,"46983":0,"46984":1,"46985":0,"46986":0,"46987":0,"46988":0,"46989":0,"46990":0,"46991":1,"46992":0,"46993":0,"46994":0,"46995":0,"46996":0,"46997":0,"46998":1,"46999":1,"47000":0,"47001":1,"47002":0,"47003":0,"47004":0,"47005":0,"47006":0,"47007":0,"47008":1,"47009":0,"47010":1,"47011":1,"47012":0,"47013":0,"47014":0,"47015":0,"47016":0,"47017":1,"47018":0,"47019":0,"47020":0,"47021":0,"47022":0,"47023":1,"47024":0,"47025":0,"47026":0,"47027":0,"47028":0,"47029":1,"47030":0,"47031":1,"47032":1,"47033":1,"47034":1,"47035":0,"47036":1,"47037":0,"47038":0,"47039":1,"47040":0,"47041":1,"47042":1,"47043":0,"47044":1,"47045":0,"47046":0,"47047":1,"47048":0,"47049":1,"47050":0,"47051":1,"47052":0,"47053":0,"47054":1,"47055":0,"47056":0,"47057":0,"47058":1,"47059":0,"47060":0,"47061":0,"47062":1,"47063":0,"47064":0,"47065":0,"47066":1,"47067":0,"47068":0,"47069":1,"47070":0,"47071":0,"47072":1,"47073":0,"47074":0,"47075":1,"47076":0,"47077":0,"47078":0,"47079":0,"47080":0,"47081":0,"47082":0,"47083":0,"47084":0,"47085":0,"47086":0,"47087":0,"47088":0,"47089":0,"47090":1,"47091":1,"47092":0,"47093":0,"47094":0,"47095":0,"47096":0,"47097":1,"47098":1,"47099":0,"47100":0,"47101":0,"47102":0,"47103":0,"47104":0,"47105":0,"47106":1,"47107":0,"47108":0,"47109":1,"47110":0,"47111":0,"47112":1,"47113":0,"47114":0,"47115":0,"47116":1,"47117":0,"47118":1,"47119":0,"47120":0,"47121":0,"47122":0,"47123":0,"47124":1,"47125":0,"47126":0,"47127":0,"47128":0,"47129":0,"47130":0,"47131":0,"47132":0,"47133":0,"47134":0,"47135":0,"47136":1,"47137":0,"47138":1,"47139":0,"47140":1,"47141":1,"47142":1,"47143":0,"47144":1,"47145":0,"47146":0,"47147":0,"47148":1,"47149":0,"47150":1,"47151":0,"47152":0,"47153":1,"47154":0,"47155":1,"47156":1,"47157":1,"47158":0,"47159":0,"47160":0,"47161":1,"47162":1,"47163":0,"47164":1,"47165":1,"47166":1,"47167":0,"47168":0,"47169":0,"47170":0,"47171":0,"47172":0,"47173":0,"47174":1,"47175":0,"47176":1,"47177":0,"47178":0,"47179":0,"47180":1,"47181":0,"47182":0,"47183":0,"47184":0,"47185":1,"47186":0,"47187":0,"47188":0,"47189":0,"47190":0,"47191":0,"47192":1,"47193":0,"47194":0,"47195":0,"47196":0,"47197":0,"47198":0,"47199":0,"47200":0,"47201":0,"47202":0,"47203":0,"47204":0,"47205":0,"47206":0,"47207":0,"47208":1,"47209":0,"47210":0,"47211":0,"47212":1,"47213":1,"47214":0,"47215":0,"47216":0,"47217":0,"47218":1,"47219":1,"47220":1,"47221":0,"47222":0,"47223":0,"47224":1,"47225":0,"47226":1,"47227":0,"47228":0,"47229":0,"47230":0,"47231":0,"47232":0,"47233":0,"47234":0,"47235":0,"47236":0,"47237":0,"47238":1,"47239":0,"47240":1,"47241":1,"47242":0,"47243":1,"47244":0,"47245":0,"47246":0,"47247":0,"47248":1,"47249":1,"47250":1,"47251":0,"47252":0,"47253":0,"47254":1,"47255":1,"47256":1,"47257":0,"47258":0,"47259":0,"47260":0,"47261":0,"47262":0,"47263":0,"47264":0,"47265":1,"47266":1,"47267":0,"47268":1,"47269":0,"47270":1,"47271":0,"47272":0,"47273":0,"47274":0,"47275":0,"47276":0,"47277":1,"47278":0,"47279":1,"47280":0,"47281":1,"47282":0,"47283":0,"47284":0,"47285":1,"47286":0,"47287":0,"47288":0,"47289":0,"47290":0,"47291":0,"47292":0,"47293":0,"47294":0,"47295":0,"47296":0,"47297":1,"47298":0,"47299":1,"47300":1,"47301":1,"47302":1,"47303":1,"47304":1,"47305":1,"47306":0,"47307":0,"47308":1,"47309":0,"47310":0,"47311":1,"47312":0,"47313":0,"47314":0,"47315":0,"47316":0,"47317":0,"47318":0,"47319":0,"47320":0,"47321":1,"47322":0,"47323":0,"47324":0,"47325":0,"47326":1,"47327":0,"47328":0,"47329":0,"47330":0,"47331":0,"47332":0,"47333":1,"47334":1,"47335":1,"47336":0,"47337":0,"47338":0,"47339":0,"47340":0,"47341":0,"47342":0,"47343":0,"47344":0,"47345":0,"47346":0,"47347":0,"47348":0,"47349":0,"47350":0,"47351":0,"47352":0,"47353":1,"47354":0,"47355":1,"47356":0,"47357":0,"47358":0,"47359":0,"47360":0,"47361":0,"47362":0,"47363":0,"47364":0,"47365":1,"47366":0,"47367":0,"47368":0,"47369":0,"47370":0,"47371":0,"47372":0,"47373":0,"47374":0,"47375":0,"47376":0,"47377":0,"47378":1,"47379":0,"47380":0,"47381":1,"47382":0,"47383":0,"47384":0,"47385":0,"47386":0,"47387":1,"47388":0,"47389":0,"47390":0,"47391":1,"47392":0,"47393":0,"47394":0,"47395":0,"47396":0,"47397":0,"47398":1,"47399":0,"47400":1,"47401":0,"47402":0,"47403":0,"47404":0,"47405":0,"47406":0,"47407":0,"47408":0,"47409":1,"47410":0,"47411":0,"47412":1,"47413":0,"47414":0,"47415":1,"47416":0,"47417":0,"47418":0,"47419":0,"47420":0,"47421":1,"47422":0,"47423":0,"47424":1,"47425":1,"47426":0,"47427":0,"47428":1,"47429":0,"47430":0,"47431":0,"47432":0,"47433":0,"47434":0,"47435":0,"47436":0,"47437":0,"47438":0,"47439":0,"47440":1,"47441":1,"47442":0,"47443":1,"47444":0,"47445":1,"47446":0,"47447":0,"47448":1,"47449":0,"47450":1,"47451":0,"47452":1,"47453":1,"47454":0,"47455":0,"47456":0,"47457":0,"47458":0,"47459":0,"47460":0,"47461":0,"47462":0,"47463":0,"47464":1,"47465":1,"47466":0,"47467":0,"47468":1,"47469":0,"47470":1,"47471":0,"47472":0,"47473":0,"47474":1,"47475":0,"47476":1,"47477":0,"47478":0,"47479":1,"47480":0,"47481":0,"47482":0,"47483":1,"47484":1,"47485":0,"47486":0,"47487":0,"47488":1,"47489":0,"47490":1,"47491":1,"47492":0,"47493":0,"47494":1,"47495":0,"47496":1,"47497":0,"47498":0,"47499":0,"47500":0,"47501":0,"47502":0,"47503":0,"47504":0,"47505":0,"47506":1,"47507":0,"47508":0,"47509":0,"47510":0,"47511":0,"47512":0,"47513":0,"47514":0,"47515":0,"47516":1,"47517":1,"47518":0,"47519":1,"47520":0,"47521":1,"47522":0,"47523":0,"47524":1,"47525":1,"47526":1,"47527":0,"47528":1,"47529":0,"47530":0,"47531":1,"47532":0,"47533":0,"47534":0,"47535":0,"47536":1,"47537":0,"47538":0,"47539":0,"47540":0,"47541":0,"47542":0,"47543":1,"47544":0,"47545":0,"47546":1,"47547":0,"47548":0,"47549":0,"47550":1,"47551":0,"47552":0,"47553":0,"47554":0,"47555":0,"47556":0,"47557":0,"47558":0,"47559":0,"47560":1,"47561":0,"47562":0,"47563":1,"47564":1,"47565":0,"47566":0,"47567":0,"47568":0,"47569":0,"47570":0,"47571":0,"47572":0,"47573":0,"47574":1,"47575":0,"47576":0,"47577":1,"47578":0,"47579":0,"47580":1,"47581":1,"47582":0,"47583":0,"47584":0,"47585":0,"47586":1,"47587":0,"47588":0,"47589":0,"47590":1,"47591":0,"47592":0,"47593":0,"47594":1,"47595":1,"47596":0,"47597":0,"47598":0,"47599":1,"47600":0,"47601":1,"47602":0,"47603":0,"47604":0,"47605":0,"47606":0,"47607":0,"47608":0,"47609":1,"47610":1,"47611":0,"47612":0,"47613":0,"47614":0,"47615":0,"47616":0,"47617":0,"47618":0,"47619":0,"47620":0,"47621":1,"47622":0,"47623":0,"47624":1,"47625":0,"47626":0,"47627":1,"47628":0,"47629":1,"47630":0,"47631":0,"47632":1,"47633":0,"47634":0,"47635":0,"47636":0,"47637":0,"47638":0,"47639":0,"47640":0,"47641":1,"47642":1,"47643":0,"47644":0,"47645":0,"47646":0,"47647":0,"47648":0,"47649":0,"47650":0,"47651":0,"47652":1,"47653":0,"47654":1,"47655":0,"47656":0,"47657":1,"47658":1,"47659":0,"47660":0,"47661":0,"47662":0,"47663":1,"47664":1,"47665":1,"47666":0,"47667":0,"47668":1,"47669":0,"47670":0,"47671":0,"47672":0,"47673":0,"47674":1,"47675":0,"47676":0,"47677":0,"47678":0,"47679":1,"47680":0,"47681":0,"47682":0,"47683":0,"47684":1,"47685":0,"47686":0,"47687":0,"47688":0,"47689":1,"47690":1,"47691":0,"47692":0,"47693":0,"47694":0,"47695":0,"47696":0,"47697":0,"47698":1,"47699":0,"47700":0,"47701":0,"47702":1,"47703":0,"47704":0,"47705":1,"47706":1,"47707":1,"47708":0,"47709":0,"47710":0,"47711":0,"47712":0,"47713":1,"47714":1,"47715":1,"47716":1,"47717":1,"47718":0,"47719":0,"47720":0,"47721":0,"47722":1,"47723":0,"47724":1,"47725":0,"47726":0,"47727":0,"47728":1,"47729":0,"47730":0,"47731":0,"47732":0,"47733":0,"47734":1,"47735":1,"47736":0,"47737":1,"47738":0,"47739":0,"47740":0,"47741":0,"47742":0,"47743":1,"47744":0,"47745":0,"47746":0,"47747":0,"47748":0,"47749":0,"47750":0,"47751":0,"47752":0,"47753":1,"47754":0,"47755":0,"47756":0,"47757":0,"47758":0,"47759":0,"47760":0,"47761":1,"47762":1,"47763":0,"47764":0,"47765":0,"47766":0,"47767":0,"47768":1,"47769":0,"47770":0,"47771":0,"47772":0,"47773":0,"47774":0,"47775":0,"47776":1,"47777":1,"47778":0,"47779":1,"47780":0,"47781":0,"47782":0,"47783":1,"47784":0,"47785":1,"47786":0,"47787":1,"47788":0,"47789":0,"47790":0,"47791":0,"47792":0,"47793":1,"47794":0,"47795":0,"47796":0,"47797":1,"47798":1,"47799":0,"47800":0,"47801":0,"47802":0,"47803":1,"47804":1,"47805":0,"47806":0,"47807":0,"47808":1,"47809":1,"47810":0,"47811":0,"47812":0,"47813":0,"47814":1,"47815":0,"47816":0,"47817":0,"47818":1,"47819":0,"47820":0,"47821":0,"47822":0,"47823":0,"47824":1,"47825":0,"47826":0,"47827":1,"47828":0,"47829":0,"47830":0,"47831":1,"47832":0,"47833":0,"47834":1,"47835":0,"47836":1,"47837":0,"47838":0,"47839":0,"47840":0,"47841":0,"47842":0,"47843":0,"47844":0,"47845":0,"47846":1,"47847":0,"47848":0,"47849":0,"47850":0,"47851":0,"47852":0,"47853":0,"47854":0,"47855":0,"47856":0,"47857":0,"47858":1,"47859":0,"47860":0,"47861":0,"47862":0,"47863":0,"47864":0,"47865":0,"47866":0,"47867":0,"47868":0,"47869":1,"47870":0,"47871":0,"47872":0,"47873":0,"47874":0,"47875":1,"47876":0,"47877":0,"47878":0,"47879":0,"47880":1,"47881":0,"47882":1,"47883":0,"47884":0,"47885":0,"47886":1,"47887":0,"47888":0,"47889":0,"47890":0,"47891":0,"47892":0,"47893":0,"47894":1,"47895":0,"47896":1,"47897":0,"47898":1,"47899":1,"47900":1,"47901":0,"47902":0,"47903":0,"47904":0,"47905":0,"47906":0,"47907":0,"47908":0,"47909":0,"47910":1,"47911":0,"47912":0,"47913":0,"47914":0,"47915":1,"47916":1,"47917":0,"47918":0,"47919":0,"47920":0,"47921":1,"47922":1,"47923":0,"47924":0,"47925":0,"47926":1,"47927":0,"47928":0,"47929":0,"47930":0,"47931":0,"47932":0,"47933":0,"47934":0,"47935":0,"47936":0,"47937":0,"47938":1,"47939":1,"47940":0,"47941":0,"47942":1,"47943":1,"47944":0,"47945":0,"47946":0,"47947":0,"47948":0,"47949":0,"47950":0,"47951":1,"47952":0,"47953":0,"47954":0,"47955":0,"47956":0,"47957":1,"47958":0,"47959":1,"47960":0,"47961":0,"47962":1,"47963":0,"47964":1,"47965":0,"47966":0,"47967":0,"47968":0,"47969":1,"47970":0,"47971":0,"47972":0,"47973":0,"47974":0,"47975":0,"47976":0,"47977":0,"47978":0,"47979":0,"47980":0,"47981":0,"47982":0,"47983":0,"47984":0,"47985":0,"47986":1,"47987":0,"47988":0,"47989":1,"47990":0,"47991":0,"47992":1,"47993":0,"47994":0,"47995":0,"47996":0,"47997":0,"47998":0,"47999":0,"48000":1,"48001":1,"48002":0,"48003":0,"48004":0,"48005":1,"48006":0,"48007":0,"48008":0,"48009":0,"48010":0,"48011":0,"48012":1,"48013":1,"48014":0,"48015":0,"48016":0,"48017":0,"48018":1,"48019":0,"48020":1,"48021":1,"48022":1,"48023":0,"48024":0,"48025":0,"48026":0,"48027":1,"48028":1,"48029":0,"48030":0,"48031":0,"48032":1,"48033":0,"48034":0,"48035":0,"48036":1,"48037":0,"48038":0,"48039":0,"48040":0,"48041":0,"48042":1,"48043":0,"48044":0,"48045":0,"48046":0,"48047":0,"48048":0,"48049":0,"48050":0,"48051":1,"48052":0,"48053":0,"48054":0,"48055":0,"48056":0,"48057":0,"48058":0,"48059":0,"48060":0,"48061":1,"48062":0,"48063":0,"48064":0,"48065":1,"48066":0,"48067":1,"48068":0,"48069":1,"48070":0,"48071":0,"48072":0,"48073":1,"48074":1,"48075":0,"48076":0,"48077":0,"48078":1,"48079":0,"48080":0,"48081":0,"48082":0,"48083":0,"48084":0,"48085":0,"48086":0,"48087":1,"48088":0,"48089":0,"48090":0,"48091":1,"48092":0,"48093":0,"48094":1,"48095":0,"48096":0,"48097":0,"48098":0,"48099":0,"48100":0,"48101":0,"48102":0,"48103":0,"48104":0,"48105":0,"48106":0,"48107":0,"48108":0,"48109":0,"48110":0,"48111":1,"48112":0,"48113":1,"48114":0,"48115":0,"48116":0,"48117":1,"48118":0,"48119":1,"48120":0,"48121":0,"48122":0,"48123":1,"48124":0,"48125":0,"48126":0,"48127":0,"48128":0,"48129":0,"48130":1,"48131":1,"48132":1,"48133":0,"48134":0,"48135":0,"48136":0,"48137":0,"48138":0,"48139":0,"48140":1,"48141":0,"48142":0,"48143":0,"48144":0,"48145":0,"48146":0,"48147":0,"48148":0,"48149":0,"48150":0,"48151":1,"48152":0,"48153":1,"48154":0,"48155":1,"48156":0,"48157":0,"48158":1,"48159":0,"48160":1,"48161":0,"48162":0,"48163":0,"48164":0,"48165":1,"48166":1,"48167":0,"48168":0,"48169":0,"48170":0,"48171":0,"48172":1,"48173":0,"48174":0,"48175":0,"48176":1,"48177":0,"48178":0,"48179":0,"48180":0,"48181":0,"48182":1,"48183":0,"48184":0,"48185":1,"48186":0,"48187":1,"48188":0,"48189":1,"48190":0,"48191":1,"48192":0,"48193":0,"48194":0,"48195":0,"48196":1,"48197":1,"48198":0,"48199":0,"48200":1,"48201":0,"48202":1,"48203":0,"48204":0,"48205":0,"48206":0,"48207":0,"48208":0,"48209":0,"48210":1,"48211":0,"48212":0,"48213":0,"48214":0,"48215":1,"48216":0,"48217":1,"48218":1,"48219":0,"48220":0,"48221":1,"48222":0,"48223":0,"48224":0,"48225":0,"48226":0,"48227":1,"48228":0,"48229":0,"48230":1,"48231":0,"48232":0,"48233":0,"48234":0,"48235":1,"48236":0,"48237":0,"48238":0,"48239":0,"48240":0,"48241":0,"48242":0,"48243":1,"48244":0,"48245":1,"48246":0,"48247":0,"48248":1,"48249":0,"48250":0,"48251":0,"48252":1,"48253":0,"48254":1,"48255":0,"48256":0,"48257":0,"48258":0,"48259":0,"48260":0,"48261":1,"48262":0,"48263":1,"48264":0,"48265":1,"48266":1,"48267":1,"48268":0,"48269":0,"48270":0,"48271":1,"48272":0,"48273":1,"48274":0,"48275":0,"48276":0,"48277":0,"48278":0,"48279":1,"48280":0,"48281":1,"48282":1,"48283":1,"48284":0,"48285":0,"48286":0,"48287":0,"48288":0,"48289":1,"48290":0,"48291":0,"48292":0,"48293":0,"48294":0,"48295":0,"48296":0,"48297":0,"48298":1,"48299":0,"48300":0,"48301":0,"48302":0,"48303":0,"48304":1,"48305":0,"48306":0,"48307":1,"48308":0,"48309":0,"48310":0,"48311":0,"48312":0,"48313":1,"48314":0,"48315":0,"48316":0,"48317":0,"48318":0,"48319":0,"48320":0,"48321":1,"48322":0,"48323":1,"48324":0,"48325":1,"48326":0,"48327":1,"48328":1,"48329":0,"48330":0,"48331":0,"48332":1,"48333":0,"48334":1,"48335":1,"48336":1,"48337":0,"48338":0,"48339":1,"48340":1,"48341":0,"48342":0,"48343":0,"48344":0,"48345":0,"48346":0,"48347":0,"48348":0,"48349":1,"48350":0,"48351":0,"48352":1,"48353":0,"48354":1,"48355":1,"48356":0,"48357":0,"48358":0,"48359":1,"48360":0,"48361":0,"48362":0,"48363":0,"48364":0,"48365":0,"48366":0,"48367":1,"48368":0,"48369":0,"48370":1,"48371":0,"48372":0,"48373":0,"48374":0,"48375":0,"48376":0,"48377":1,"48378":0,"48379":0,"48380":0,"48381":1,"48382":0,"48383":0,"48384":0,"48385":0,"48386":1,"48387":0,"48388":0,"48389":0,"48390":1,"48391":0,"48392":1,"48393":0,"48394":0,"48395":1,"48396":0,"48397":0,"48398":0,"48399":0,"48400":0,"48401":1,"48402":0,"48403":1,"48404":0,"48405":1,"48406":0,"48407":1,"48408":0,"48409":0,"48410":0,"48411":0,"48412":0,"48413":0,"48414":1,"48415":1,"48416":0,"48417":0,"48418":1,"48419":0,"48420":1,"48421":0,"48422":0,"48423":0,"48424":1,"48425":0,"48426":0,"48427":0,"48428":1,"48429":0,"48430":0,"48431":1,"48432":1,"48433":0,"48434":0,"48435":1,"48436":0,"48437":0,"48438":0,"48439":0,"48440":0,"48441":0,"48442":0,"48443":0,"48444":1,"48445":0,"48446":1,"48447":0,"48448":0,"48449":0,"48450":1,"48451":0,"48452":0,"48453":0,"48454":0,"48455":0,"48456":0,"48457":0,"48458":1,"48459":1,"48460":0,"48461":0,"48462":1,"48463":0,"48464":0,"48465":0,"48466":0,"48467":1,"48468":0,"48469":1,"48470":1,"48471":0,"48472":0,"48473":0,"48474":0,"48475":0,"48476":0,"48477":0,"48478":0,"48479":0,"48480":0,"48481":0,"48482":0,"48483":0,"48484":1,"48485":1,"48486":0,"48487":0,"48488":0,"48489":0,"48490":1,"48491":1,"48492":1,"48493":1,"48494":0,"48495":0,"48496":0,"48497":0,"48498":0,"48499":0,"48500":0,"48501":0,"48502":0,"48503":0,"48504":0,"48505":0,"48506":0,"48507":0,"48508":0,"48509":1,"48510":0,"48511":0,"48512":0,"48513":0,"48514":0,"48515":1,"48516":0,"48517":0,"48518":0,"48519":0,"48520":0,"48521":1,"48522":0,"48523":0,"48524":1,"48525":0,"48526":1,"48527":0,"48528":0,"48529":0,"48530":1,"48531":0,"48532":0,"48533":0,"48534":1,"48535":0,"48536":0,"48537":0,"48538":1,"48539":0,"48540":0,"48541":0,"48542":0,"48543":0,"48544":1,"48545":0,"48546":1,"48547":0,"48548":0,"48549":0,"48550":0,"48551":1,"48552":0,"48553":1,"48554":1,"48555":1,"48556":1,"48557":0,"48558":0,"48559":0,"48560":0,"48561":0,"48562":0,"48563":1,"48564":0,"48565":0,"48566":0,"48567":0,"48568":1,"48569":0,"48570":0,"48571":0,"48572":1,"48573":0,"48574":0,"48575":0,"48576":1,"48577":1,"48578":0,"48579":1,"48580":1,"48581":0,"48582":0,"48583":0,"48584":0,"48585":0,"48586":0,"48587":0,"48588":1,"48589":1,"48590":0,"48591":0,"48592":0,"48593":1,"48594":0,"48595":0,"48596":1,"48597":0,"48598":1,"48599":0,"48600":0,"48601":0,"48602":0,"48603":0,"48604":0,"48605":0,"48606":0,"48607":0,"48608":0,"48609":0,"48610":1,"48611":0,"48612":0,"48613":0,"48614":1,"48615":0,"48616":0,"48617":0,"48618":0,"48619":0,"48620":0,"48621":1,"48622":0,"48623":0,"48624":0,"48625":1,"48626":0,"48627":0,"48628":0,"48629":0,"48630":0,"48631":1,"48632":0,"48633":0,"48634":1,"48635":0,"48636":1,"48637":1,"48638":0,"48639":0,"48640":0,"48641":0,"48642":0,"48643":0,"48644":0,"48645":1,"48646":0,"48647":1,"48648":0,"48649":0,"48650":0,"48651":0,"48652":1,"48653":0,"48654":0,"48655":1,"48656":1,"48657":0,"48658":0,"48659":0,"48660":0,"48661":0,"48662":0,"48663":1,"48664":0,"48665":0,"48666":0,"48667":0,"48668":0,"48669":0,"48670":0,"48671":0,"48672":0,"48673":0,"48674":0,"48675":0,"48676":0,"48677":0,"48678":0,"48679":1,"48680":1,"48681":1,"48682":0,"48683":0,"48684":0,"48685":0,"48686":1,"48687":0,"48688":0,"48689":0,"48690":0,"48691":0,"48692":0,"48693":0,"48694":0,"48695":0,"48696":0,"48697":1,"48698":0,"48699":0,"48700":0,"48701":0,"48702":0,"48703":1,"48704":0,"48705":0,"48706":0,"48707":0,"48708":0,"48709":0,"48710":0,"48711":0,"48712":0,"48713":0,"48714":0,"48715":1,"48716":0,"48717":1,"48718":1,"48719":0,"48720":1,"48721":1,"48722":0,"48723":0,"48724":0,"48725":0,"48726":0,"48727":0,"48728":0,"48729":0,"48730":0,"48731":0,"48732":0,"48733":0,"48734":0,"48735":1,"48736":1,"48737":1,"48738":0,"48739":1,"48740":0,"48741":0,"48742":0,"48743":0,"48744":0,"48745":1,"48746":0,"48747":0,"48748":1,"48749":0,"48750":0,"48751":1,"48752":1,"48753":0,"48754":0,"48755":0,"48756":0,"48757":0,"48758":1,"48759":0,"48760":0,"48761":1,"48762":0,"48763":0,"48764":0,"48765":0,"48766":0,"48767":1,"48768":0,"48769":0,"48770":0,"48771":0,"48772":1,"48773":0,"48774":0,"48775":0,"48776":0,"48777":0,"48778":0,"48779":1,"48780":0,"48781":0,"48782":0,"48783":0,"48784":0,"48785":1,"48786":0,"48787":0,"48788":0,"48789":0,"48790":0,"48791":0,"48792":0,"48793":0,"48794":0,"48795":0,"48796":0,"48797":0,"48798":0,"48799":0,"48800":0,"48801":1,"48802":0,"48803":0,"48804":0,"48805":0,"48806":0,"48807":0,"48808":0,"48809":0,"48810":0,"48811":0,"48812":0,"48813":1,"48814":0,"48815":0,"48816":0,"48817":0,"48818":0,"48819":0,"48820":1,"48821":0,"48822":0,"48823":0,"48824":0,"48825":0,"48826":0,"48827":0,"48828":0,"48829":0,"48830":1,"48831":0,"48832":0,"48833":0,"48834":0,"48835":0,"48836":0,"48837":1,"48838":1,"48839":1,"48840":0,"48841":0,"48842":1,"48843":0,"48844":0,"48845":1,"48846":0,"48847":0,"48848":0,"48849":1,"48850":0,"48851":0,"48852":0,"48853":1,"48854":0,"48855":0,"48856":0,"48857":1,"48858":0,"48859":0,"48860":0,"48861":0,"48862":0,"48863":1,"48864":0,"48865":0,"48866":0,"48867":0,"48868":0,"48869":0,"48870":1,"48871":0,"48872":0,"48873":0,"48874":0,"48875":0,"48876":0,"48877":0,"48878":0,"48879":1,"48880":0,"48881":0,"48882":0,"48883":0,"48884":1,"48885":0,"48886":0,"48887":0,"48888":1,"48889":0,"48890":0,"48891":0,"48892":1,"48893":0,"48894":1,"48895":0,"48896":1,"48897":0,"48898":0,"48899":1,"48900":0,"48901":1,"48902":1,"48903":1,"48904":0,"48905":1,"48906":1,"48907":0,"48908":0,"48909":0,"48910":1,"48911":0,"48912":0,"48913":0,"48914":1,"48915":1,"48916":0,"48917":0,"48918":0,"48919":0,"48920":0,"48921":0,"48922":1,"48923":1,"48924":1,"48925":0,"48926":0,"48927":0,"48928":0,"48929":1,"48930":0,"48931":0,"48932":1,"48933":0,"48934":0,"48935":0,"48936":1,"48937":0,"48938":0,"48939":0,"48940":0,"48941":0,"48942":0,"48943":0,"48944":0,"48945":0,"48946":0,"48947":0,"48948":1,"48949":1,"48950":0,"48951":0,"48952":0,"48953":0,"48954":1,"48955":0,"48956":1,"48957":1,"48958":0,"48959":1,"48960":1,"48961":0,"48962":0,"48963":0,"48964":0,"48965":0,"48966":0,"48967":0,"48968":0,"48969":0,"48970":0,"48971":1,"48972":0,"48973":0,"48974":0,"48975":0,"48976":0,"48977":0,"48978":0,"48979":0,"48980":0,"48981":0,"48982":0,"48983":0,"48984":0,"48985":0,"48986":1,"48987":0,"48988":0,"48989":0,"48990":0,"48991":0,"48992":0,"48993":0,"48994":1,"48995":1,"48996":0,"48997":0,"48998":0,"48999":0,"49000":1,"49001":0,"49002":0,"49003":0,"49004":1,"49005":0,"49006":0,"49007":0,"49008":0,"49009":0,"49010":0,"49011":0,"49012":1,"49013":0,"49014":0,"49015":0,"49016":1,"49017":0,"49018":0,"49019":0,"49020":0,"49021":0,"49022":0,"49023":0,"49024":0,"49025":0,"49026":0,"49027":1,"49028":0,"49029":0,"49030":0,"49031":0,"49032":1,"49033":0,"49034":0,"49035":1,"49036":0,"49037":0,"49038":0,"49039":0,"49040":0,"49041":0,"49042":0,"49043":1,"49044":0,"49045":1,"49046":0,"49047":0,"49048":0,"49049":1,"49050":0,"49051":0,"49052":1,"49053":1,"49054":0,"49055":0,"49056":1,"49057":0,"49058":0,"49059":1,"49060":1,"49061":0,"49062":0,"49063":0,"49064":0,"49065":1,"49066":1,"49067":0,"49068":0,"49069":0,"49070":0,"49071":0,"49072":0,"49073":1,"49074":0,"49075":0,"49076":1,"49077":0,"49078":0,"49079":1,"49080":1,"49081":0,"49082":0,"49083":0,"49084":0,"49085":0,"49086":0,"49087":0,"49088":0,"49089":0,"49090":0,"49091":0,"49092":0,"49093":0,"49094":0,"49095":0,"49096":0,"49097":0,"49098":1,"49099":0,"49100":0,"49101":1,"49102":1,"49103":0,"49104":0,"49105":1,"49106":0,"49107":1,"49108":0,"49109":0,"49110":0,"49111":0,"49112":0,"49113":0,"49114":1,"49115":0,"49116":1,"49117":1,"49118":0,"49119":0,"49120":1,"49121":0,"49122":0,"49123":1,"49124":0,"49125":0,"49126":0,"49127":0,"49128":0,"49129":0,"49130":0,"49131":0,"49132":0,"49133":0,"49134":0,"49135":1,"49136":0,"49137":0,"49138":0,"49139":0,"49140":0,"49141":0,"49142":0,"49143":1,"49144":0,"49145":0,"49146":0,"49147":0,"49148":1,"49149":0,"49150":0,"49151":0,"49152":0,"49153":0,"49154":0,"49155":0,"49156":0,"49157":0,"49158":0,"49159":0,"49160":0,"49161":0,"49162":0,"49163":0,"49164":0,"49165":1,"49166":1,"49167":0,"49168":0,"49169":0,"49170":0,"49171":0,"49172":1,"49173":0,"49174":0,"49175":0,"49176":0,"49177":0,"49178":0,"49179":1,"49180":0,"49181":0,"49182":0,"49183":0,"49184":1,"49185":0,"49186":0,"49187":0,"49188":0,"49189":0,"49190":0,"49191":0,"49192":0,"49193":0,"49194":0,"49195":0,"49196":0,"49197":1,"49198":1,"49199":0,"49200":0,"49201":1,"49202":0,"49203":0,"49204":0,"49205":0,"49206":0,"49207":0,"49208":0,"49209":0,"49210":0,"49211":0,"49212":0,"49213":0,"49214":0,"49215":0,"49216":0,"49217":0,"49218":0,"49219":1,"49220":0,"49221":0,"49222":1,"49223":0,"49224":1,"49225":0,"49226":0,"49227":1,"49228":0,"49229":0,"49230":0,"49231":0,"49232":0,"49233":0,"49234":0,"49235":0,"49236":0,"49237":0,"49238":0,"49239":0,"49240":1,"49241":0,"49242":0,"49243":0,"49244":0,"49245":1,"49246":1,"49247":0,"49248":0,"49249":0,"49250":0,"49251":0,"49252":0,"49253":0,"49254":0,"49255":0,"49256":0,"49257":0,"49258":1,"49259":1,"49260":0,"49261":1,"49262":0,"49263":0,"49264":0,"49265":0,"49266":0,"49267":0,"49268":1,"49269":0,"49270":0,"49271":0,"49272":0,"49273":0,"49274":1,"49275":0,"49276":0,"49277":1,"49278":0,"49279":1,"49280":0,"49281":0,"49282":0,"49283":0,"49284":0,"49285":0,"49286":0,"49287":0,"49288":1,"49289":0,"49290":1,"49291":1,"49292":0,"49293":0,"49294":1,"49295":1,"49296":0,"49297":0,"49298":0,"49299":1,"49300":0,"49301":0,"49302":1,"49303":0,"49304":1,"49305":0,"49306":0,"49307":0,"49308":1,"49309":0,"49310":0,"49311":0,"49312":0,"49313":0,"49314":0,"49315":0,"49316":0,"49317":0,"49318":0,"49319":0,"49320":0,"49321":0,"49322":1,"49323":0,"49324":0,"49325":0,"49326":0,"49327":0,"49328":0,"49329":0,"49330":0,"49331":1,"49332":0,"49333":0,"49334":0,"49335":0,"49336":0,"49337":0,"49338":0,"49339":0,"49340":0,"49341":0,"49342":1,"49343":0,"49344":0,"49345":1,"49346":0,"49347":0,"49348":0,"49349":0,"49350":1,"49351":0,"49352":0,"49353":0,"49354":0,"49355":1,"49356":1,"49357":0,"49358":0,"49359":0,"49360":0,"49361":0,"49362":0,"49363":0,"49364":0,"49365":0,"49366":0,"49367":1,"49368":1,"49369":0,"49370":0,"49371":0,"49372":0,"49373":0,"49374":0,"49375":0,"49376":0,"49377":0,"49378":0,"49379":0,"49380":1,"49381":0,"49382":0,"49383":1,"49384":1,"49385":1,"49386":0,"49387":0,"49388":1,"49389":0,"49390":0,"49391":0,"49392":0,"49393":1,"49394":0,"49395":1,"49396":1,"49397":0,"49398":1,"49399":0,"49400":1,"49401":0,"49402":0,"49403":0,"49404":1,"49405":0,"49406":0,"49407":0,"49408":1,"49409":1,"49410":1,"49411":0,"49412":1,"49413":0,"49414":0,"49415":0,"49416":0,"49417":1,"49418":0,"49419":1,"49420":0,"49421":1,"49422":1,"49423":0,"49424":0,"49425":1,"49426":1,"49427":0,"49428":0,"49429":0,"49430":0,"49431":0,"49432":1,"49433":0,"49434":0,"49435":1,"49436":0,"49437":0,"49438":0,"49439":0,"49440":0,"49441":0,"49442":1,"49443":0,"49444":0,"49445":0,"49446":0,"49447":0,"49448":0,"49449":0,"49450":0,"49451":1,"49452":0,"49453":1,"49454":0,"49455":1,"49456":1,"49457":1,"49458":0,"49459":0,"49460":0,"49461":0,"49462":0,"49463":0,"49464":0,"49465":1,"49466":0,"49467":0,"49468":0,"49469":0,"49470":0,"49471":0,"49472":1,"49473":1,"49474":1,"49475":0,"49476":0,"49477":0,"49478":0,"49479":0,"49480":0,"49481":0,"49482":0,"49483":0,"49484":0,"49485":0,"49486":0,"49487":0,"49488":0,"49489":0,"49490":0,"49491":0,"49492":1,"49493":0,"49494":0,"49495":0,"49496":0,"49497":0,"49498":0,"49499":0,"49500":0,"49501":0,"49502":1,"49503":0,"49504":0,"49505":1,"49506":0,"49507":0,"49508":1,"49509":0,"49510":0,"49511":1,"49512":0,"49513":0,"49514":0,"49515":0,"49516":1,"49517":0,"49518":1,"49519":0,"49520":0,"49521":0,"49522":0,"49523":0,"49524":0,"49525":0,"49526":1,"49527":0,"49528":0,"49529":0,"49530":1,"49531":0,"49532":0,"49533":1,"49534":1,"49535":0,"49536":0,"49537":0,"49538":1,"49539":1,"49540":1,"49541":0,"49542":0,"49543":0,"49544":0,"49545":0,"49546":0,"49547":0,"49548":0,"49549":0,"49550":0,"49551":0,"49552":0,"49553":0,"49554":0,"49555":0,"49556":0,"49557":0,"49558":0,"49559":0,"49560":0,"49561":0,"49562":0,"49563":1,"49564":1,"49565":0,"49566":0,"49567":0,"49568":0,"49569":1,"49570":1,"49571":1,"49572":1,"49573":1,"49574":0,"49575":0,"49576":0,"49577":0,"49578":1,"49579":1,"49580":0,"49581":0,"49582":0,"49583":0,"49584":1,"49585":0,"49586":0,"49587":1,"49588":0,"49589":1,"49590":0,"49591":0,"49592":0,"49593":0,"49594":0,"49595":0,"49596":0,"49597":1,"49598":0,"49599":1,"49600":0,"49601":0,"49602":1,"49603":1,"49604":0,"49605":0,"49606":0,"49607":0,"49608":0,"49609":0,"49610":0,"49611":1,"49612":0,"49613":0,"49614":0,"49615":1,"49616":0,"49617":0,"49618":1,"49619":0,"49620":0,"49621":0,"49622":1,"49623":0,"49624":0,"49625":1,"49626":1,"49627":1,"49628":0,"49629":0,"49630":0,"49631":0,"49632":0,"49633":0,"49634":0,"49635":1,"49636":0,"49637":0,"49638":1,"49639":0,"49640":0,"49641":0,"49642":0,"49643":1,"49644":0,"49645":0,"49646":0,"49647":0,"49648":0,"49649":0,"49650":0,"49651":1,"49652":1,"49653":0,"49654":0,"49655":0,"49656":0,"49657":0,"49658":0,"49659":0,"49660":1,"49661":1,"49662":0,"49663":0,"49664":0,"49665":0,"49666":0,"49667":0,"49668":0,"49669":1,"49670":0,"49671":0,"49672":0,"49673":0,"49674":0,"49675":0,"49676":0,"49677":0,"49678":0,"49679":0,"49680":1,"49681":0,"49682":0,"49683":0,"49684":0,"49685":1,"49686":0,"49687":1,"49688":0,"49689":0,"49690":0,"49691":0,"49692":0,"49693":0,"49694":0,"49695":0,"49696":1,"49697":0,"49698":0,"49699":0,"49700":0,"49701":0,"49702":0,"49703":1,"49704":0,"49705":0,"49706":0,"49707":0,"49708":0,"49709":0,"49710":0,"49711":0,"49712":0,"49713":0,"49714":1,"49715":0,"49716":0,"49717":1,"49718":0,"49719":1,"49720":0,"49721":1,"49722":0,"49723":0,"49724":1,"49725":0,"49726":0,"49727":0,"49728":0,"49729":0,"49730":0,"49731":0,"49732":0,"49733":0,"49734":0,"49735":1,"49736":0,"49737":1,"49738":0,"49739":0,"49740":0,"49741":0,"49742":1,"49743":0,"49744":0,"49745":1,"49746":1,"49747":1,"49748":0,"49749":0,"49750":1,"49751":0,"49752":0,"49753":1,"49754":1,"49755":0,"49756":0,"49757":0,"49758":0,"49759":0,"49760":0,"49761":0,"49762":0,"49763":0,"49764":0,"49765":0,"49766":0,"49767":1,"49768":0,"49769":1,"49770":0,"49771":1,"49772":0,"49773":0,"49774":0,"49775":0,"49776":0,"49777":0,"49778":0,"49779":0,"49780":1,"49781":0,"49782":0,"49783":0,"49784":0,"49785":0,"49786":0,"49787":1,"49788":0,"49789":0,"49790":1,"49791":0,"49792":0,"49793":1,"49794":0,"49795":0,"49796":1,"49797":0,"49798":0,"49799":0,"49800":0,"49801":0,"49802":0,"49803":1,"49804":0,"49805":0,"49806":0,"49807":0,"49808":1,"49809":0,"49810":0,"49811":1,"49812":0,"49813":0,"49814":0,"49815":0,"49816":1,"49817":0,"49818":0,"49819":0,"49820":1,"49821":0,"49822":0,"49823":0,"49824":0,"49825":1,"49826":1,"49827":0,"49828":1,"49829":1,"49830":0,"49831":1,"49832":0,"49833":1,"49834":0,"49835":1,"49836":0,"49837":0,"49838":0,"49839":0,"49840":1,"49841":0,"49842":0,"49843":0,"49844":0,"49845":1,"49846":0,"49847":1,"49848":1,"49849":0,"49850":0,"49851":0,"49852":0,"49853":0,"49854":0,"49855":0,"49856":0,"49857":0,"49858":0,"49859":0,"49860":0,"49861":0,"49862":0,"49863":1,"49864":0,"49865":0,"49866":0,"49867":0,"49868":0,"49869":0,"49870":0,"49871":0,"49872":0,"49873":0,"49874":0,"49875":1,"49876":1,"49877":0,"49878":0,"49879":0,"49880":1,"49881":1,"49882":0,"49883":0,"49884":1,"49885":0,"49886":0,"49887":0,"49888":0,"49889":0,"49890":0,"49891":0,"49892":0,"49893":1,"49894":1,"49895":1,"49896":0,"49897":1,"49898":0,"49899":0,"49900":0,"49901":1,"49902":0,"49903":0,"49904":0,"49905":1,"49906":0,"49907":1,"49908":0,"49909":0,"49910":0,"49911":0,"49912":0,"49913":0,"49914":0,"49915":1,"49916":0,"49917":0,"49918":0,"49919":0,"49920":0,"49921":0,"49922":1,"49923":0,"49924":0,"49925":0,"49926":0,"49927":0,"49928":0,"49929":0,"49930":0,"49931":1,"49932":0,"49933":0,"49934":0,"49935":1,"49936":0,"49937":1,"49938":1,"49939":0,"49940":0,"49941":0,"49942":1,"49943":0,"49944":0,"49945":0,"49946":0,"49947":0,"49948":0,"49949":0,"49950":1,"49951":1,"49952":0,"49953":1,"49954":0,"49955":1,"49956":1,"49957":0,"49958":0,"49959":0,"49960":0,"49961":1,"49962":0,"49963":1,"49964":0,"49965":1,"49966":0,"49967":0,"49968":0,"49969":0,"49970":1,"49971":0,"49972":1,"49973":0,"49974":0,"49975":0,"49976":0,"49977":0,"49978":0,"49979":1,"49980":0,"49981":1,"49982":0,"49983":1,"49984":1,"49985":0,"49986":0,"49987":1,"49988":0,"49989":0,"49990":0,"49991":1,"49992":0,"49993":0,"49994":1,"49995":0,"49996":1,"49997":1,"49998":0,"49999":0,"50000":1,"50001":1,"50002":1,"50003":1,"50004":1,"50005":0,"50006":1,"50007":0,"50008":0,"50009":0,"50010":0,"50011":0,"50012":0,"50013":1,"50014":0,"50015":0,"50016":0,"50017":0,"50018":0,"50019":0,"50020":1,"50021":0,"50022":0,"50023":0,"50024":0,"50025":1,"50026":0,"50027":1,"50028":0,"50029":0,"50030":0,"50031":0,"50032":0,"50033":0,"50034":0,"50035":0,"50036":1,"50037":1,"50038":0,"50039":0,"50040":0,"50041":0,"50042":0,"50043":0,"50044":0,"50045":1,"50046":0,"50047":0,"50048":1,"50049":0,"50050":1,"50051":0,"50052":0,"50053":0,"50054":0,"50055":1,"50056":1,"50057":0,"50058":0,"50059":0,"50060":0,"50061":0,"50062":0,"50063":1,"50064":1,"50065":1,"50066":1,"50067":0,"50068":1,"50069":0,"50070":0,"50071":1,"50072":0,"50073":0,"50074":0,"50075":1,"50076":0,"50077":0,"50078":0,"50079":0,"50080":0,"50081":0,"50082":0,"50083":0,"50084":1,"50085":0,"50086":0,"50087":0,"50088":1,"50089":1,"50090":1,"50091":0,"50092":0,"50093":0,"50094":0,"50095":0,"50096":0,"50097":0,"50098":0,"50099":1,"50100":0,"50101":0,"50102":0,"50103":0,"50104":1,"50105":0,"50106":0,"50107":0,"50108":0,"50109":0,"50110":0,"50111":0,"50112":0,"50113":0,"50114":0,"50115":0,"50116":0,"50117":0,"50118":0,"50119":0,"50120":0,"50121":0,"50122":0,"50123":0,"50124":0,"50125":1,"50126":0,"50127":0,"50128":0,"50129":0,"50130":0,"50131":0,"50132":0,"50133":0,"50134":0,"50135":0,"50136":0,"50137":0,"50138":1,"50139":0,"50140":1,"50141":0,"50142":0,"50143":0,"50144":0,"50145":0,"50146":0,"50147":0,"50148":0,"50149":0,"50150":0,"50151":0,"50152":0,"50153":0,"50154":0,"50155":0,"50156":0,"50157":1,"50158":1,"50159":0,"50160":1,"50161":1,"50162":0,"50163":0,"50164":0,"50165":0,"50166":0,"50167":0,"50168":1,"50169":0,"50170":1,"50171":0,"50172":0,"50173":1,"50174":1,"50175":0,"50176":0,"50177":0,"50178":0,"50179":1,"50180":1,"50181":0,"50182":1,"50183":0,"50184":0,"50185":0,"50186":0,"50187":0,"50188":0,"50189":1,"50190":1,"50191":1,"50192":1,"50193":0,"50194":0,"50195":0,"50196":0,"50197":0,"50198":0,"50199":0,"50200":1,"50201":0,"50202":0,"50203":0,"50204":0,"50205":1,"50206":0,"50207":0,"50208":0,"50209":0,"50210":0,"50211":1,"50212":0,"50213":0,"50214":0,"50215":0,"50216":1,"50217":0,"50218":0,"50219":0,"50220":1,"50221":0,"50222":0,"50223":1,"50224":1,"50225":0,"50226":0,"50227":0,"50228":0,"50229":0,"50230":0,"50231":0,"50232":0,"50233":0,"50234":0,"50235":0,"50236":0,"50237":0,"50238":0,"50239":0,"50240":0,"50241":0,"50242":0,"50243":0,"50244":0,"50245":0,"50246":0,"50247":0,"50248":0,"50249":0,"50250":1,"50251":0,"50252":0,"50253":1,"50254":0,"50255":0,"50256":1,"50257":0,"50258":1,"50259":0,"50260":1,"50261":0,"50262":0,"50263":0,"50264":0,"50265":0,"50266":0,"50267":0,"50268":0,"50269":1,"50270":0,"50271":1,"50272":0,"50273":0,"50274":0,"50275":0,"50276":0,"50277":1,"50278":0,"50279":1,"50280":0,"50281":1,"50282":0,"50283":0,"50284":0,"50285":0,"50286":1,"50287":1,"50288":1,"50289":0,"50290":0,"50291":1,"50292":0,"50293":0,"50294":1,"50295":1,"50296":0,"50297":0,"50298":1,"50299":0,"50300":0,"50301":0,"50302":0,"50303":0,"50304":0,"50305":0,"50306":0,"50307":1,"50308":0,"50309":0,"50310":0,"50311":0,"50312":0,"50313":1,"50314":0,"50315":0,"50316":0,"50317":0,"50318":1,"50319":0,"50320":0,"50321":1,"50322":1,"50323":0,"50324":0,"50325":0,"50326":0,"50327":0,"50328":0,"50329":0,"50330":1,"50331":0,"50332":0,"50333":0,"50334":0,"50335":0,"50336":0,"50337":0,"50338":0,"50339":1,"50340":0,"50341":0,"50342":1,"50343":1,"50344":1,"50345":0,"50346":0,"50347":0,"50348":0,"50349":0,"50350":0,"50351":0,"50352":1,"50353":0,"50354":0,"50355":0,"50356":0,"50357":0,"50358":0,"50359":0,"50360":1,"50361":0,"50362":0,"50363":0,"50364":1,"50365":0,"50366":0,"50367":0,"50368":0,"50369":0,"50370":0,"50371":0,"50372":0,"50373":0,"50374":0,"50375":1,"50376":0,"50377":0,"50378":0,"50379":1,"50380":0,"50381":1,"50382":0,"50383":0,"50384":1,"50385":1,"50386":0,"50387":0,"50388":0,"50389":0,"50390":0,"50391":1,"50392":1,"50393":1,"50394":0,"50395":0,"50396":0,"50397":0,"50398":0,"50399":1,"50400":0,"50401":1,"50402":1,"50403":1,"50404":0,"50405":1,"50406":1,"50407":1,"50408":0,"50409":0,"50410":1,"50411":0,"50412":0,"50413":0,"50414":0,"50415":0,"50416":1,"50417":1,"50418":0,"50419":1,"50420":0,"50421":0,"50422":0,"50423":0,"50424":0,"50425":0,"50426":1,"50427":0,"50428":0,"50429":0,"50430":0,"50431":0,"50432":0,"50433":0,"50434":0,"50435":1,"50436":0,"50437":0,"50438":0,"50439":0,"50440":0,"50441":0,"50442":0,"50443":1,"50444":0,"50445":0,"50446":0,"50447":0,"50448":0,"50449":0,"50450":0,"50451":1,"50452":0,"50453":1,"50454":1,"50455":0,"50456":0,"50457":0,"50458":0,"50459":0,"50460":0,"50461":0,"50462":0,"50463":0,"50464":0,"50465":0,"50466":0,"50467":0,"50468":0,"50469":0,"50470":0,"50471":0,"50472":0,"50473":0,"50474":1,"50475":1,"50476":1,"50477":0,"50478":0,"50479":0,"50480":0,"50481":0,"50482":1,"50483":1,"50484":0,"50485":0,"50486":1,"50487":0,"50488":0,"50489":0,"50490":1,"50491":1,"50492":0,"50493":0,"50494":0,"50495":0,"50496":0,"50497":1,"50498":0,"50499":0,"50500":0,"50501":0,"50502":0,"50503":0,"50504":1,"50505":0,"50506":0,"50507":0,"50508":0,"50509":1,"50510":0,"50511":0,"50512":1,"50513":1,"50514":0,"50515":0,"50516":0,"50517":0,"50518":0,"50519":0,"50520":0,"50521":0,"50522":0,"50523":1,"50524":0,"50525":0,"50526":1,"50527":1,"50528":0,"50529":1,"50530":0,"50531":0,"50532":0,"50533":0,"50534":0,"50535":1,"50536":0,"50537":1,"50538":1,"50539":0,"50540":0,"50541":0,"50542":0,"50543":0,"50544":0,"50545":0,"50546":1,"50547":0,"50548":0,"50549":0,"50550":0,"50551":0,"50552":0,"50553":0,"50554":1,"50555":0,"50556":0,"50557":0,"50558":1,"50559":0,"50560":0,"50561":0,"50562":0,"50563":0,"50564":0,"50565":0,"50566":0,"50567":0,"50568":0,"50569":1,"50570":0,"50571":0,"50572":0,"50573":0,"50574":0,"50575":0,"50576":0,"50577":0,"50578":1,"50579":0,"50580":0,"50581":0,"50582":1,"50583":0,"50584":1,"50585":0,"50586":1,"50587":0,"50588":0,"50589":0,"50590":0,"50591":0,"50592":1,"50593":0,"50594":1,"50595":0,"50596":1,"50597":0,"50598":0,"50599":0,"50600":1,"50601":1,"50602":0,"50603":0,"50604":1,"50605":0,"50606":0,"50607":0,"50608":0,"50609":0,"50610":0,"50611":0,"50612":0,"50613":0,"50614":1,"50615":0,"50616":0,"50617":1,"50618":0,"50619":0,"50620":0,"50621":0,"50622":1,"50623":0,"50624":0,"50625":0,"50626":0,"50627":1,"50628":0,"50629":0,"50630":1,"50631":0,"50632":1,"50633":0,"50634":0,"50635":0,"50636":0,"50637":0,"50638":0,"50639":0,"50640":0,"50641":0,"50642":1,"50643":0,"50644":0,"50645":0,"50646":0,"50647":0,"50648":0,"50649":1,"50650":0,"50651":0,"50652":0,"50653":0,"50654":1,"50655":1,"50656":0,"50657":0,"50658":1,"50659":0,"50660":0,"50661":0,"50662":1,"50663":1,"50664":0,"50665":1,"50666":1,"50667":1,"50668":0,"50669":0,"50670":1,"50671":1,"50672":0,"50673":0,"50674":0,"50675":1,"50676":0,"50677":0,"50678":0,"50679":0,"50680":0,"50681":0,"50682":0,"50683":0,"50684":0,"50685":0,"50686":0,"50687":0,"50688":1,"50689":0,"50690":0,"50691":0,"50692":0,"50693":0,"50694":0,"50695":0,"50696":0,"50697":0,"50698":1,"50699":0,"50700":0,"50701":1,"50702":0,"50703":0,"50704":0,"50705":0,"50706":0,"50707":0,"50708":0,"50709":0,"50710":1,"50711":0,"50712":0,"50713":1,"50714":0,"50715":0,"50716":0,"50717":0,"50718":0,"50719":1,"50720":1,"50721":0,"50722":0,"50723":0,"50724":0,"50725":1,"50726":0,"50727":0,"50728":1,"50729":0,"50730":1,"50731":0,"50732":0,"50733":0,"50734":0,"50735":1,"50736":0,"50737":0,"50738":0,"50739":0,"50740":1,"50741":0,"50742":0,"50743":0,"50744":0,"50745":1,"50746":0,"50747":0,"50748":0,"50749":0,"50750":0,"50751":1,"50752":1,"50753":0,"50754":0,"50755":0,"50756":0,"50757":0,"50758":0,"50759":1,"50760":1,"50761":1,"50762":1,"50763":0,"50764":0,"50765":0,"50766":0,"50767":0,"50768":0,"50769":1,"50770":0,"50771":0,"50772":0,"50773":0,"50774":0,"50775":0,"50776":0,"50777":0,"50778":0,"50779":0,"50780":0,"50781":0,"50782":0,"50783":0,"50784":1,"50785":0,"50786":1,"50787":0,"50788":0,"50789":1,"50790":1,"50791":0,"50792":0,"50793":0,"50794":0,"50795":0,"50796":0,"50797":0,"50798":0,"50799":0,"50800":0,"50801":0,"50802":0,"50803":1,"50804":1,"50805":0,"50806":0,"50807":1,"50808":0,"50809":0,"50810":0,"50811":0,"50812":1,"50813":0,"50814":0,"50815":0,"50816":1,"50817":0,"50818":1,"50819":0,"50820":1,"50821":0,"50822":0,"50823":0,"50824":1,"50825":0,"50826":0,"50827":1,"50828":0,"50829":1,"50830":0,"50831":0,"50832":0,"50833":1,"50834":0,"50835":0,"50836":0,"50837":0,"50838":1,"50839":0,"50840":0,"50841":1,"50842":0,"50843":1,"50844":1,"50845":1,"50846":0,"50847":0,"50848":0,"50849":0,"50850":0,"50851":0,"50852":1,"50853":0,"50854":0,"50855":0,"50856":0,"50857":0,"50858":0,"50859":1,"50860":1,"50861":0,"50862":0,"50863":0,"50864":0,"50865":0,"50866":0,"50867":1,"50868":0,"50869":1,"50870":0,"50871":0,"50872":0,"50873":1,"50874":0,"50875":1,"50876":0,"50877":1,"50878":0,"50879":0,"50880":0,"50881":0,"50882":1,"50883":1,"50884":0,"50885":0,"50886":1,"50887":0,"50888":0,"50889":1,"50890":0,"50891":0,"50892":0,"50893":0,"50894":0,"50895":0,"50896":0,"50897":0,"50898":0,"50899":0,"50900":0,"50901":0,"50902":0,"50903":0,"50904":0,"50905":1,"50906":1,"50907":0,"50908":0,"50909":1,"50910":0,"50911":0,"50912":0,"50913":0,"50914":0,"50915":0,"50916":0,"50917":0,"50918":0,"50919":1,"50920":0,"50921":1,"50922":0,"50923":0,"50924":0,"50925":0,"50926":0,"50927":0,"50928":0,"50929":0,"50930":1,"50931":0,"50932":0,"50933":0,"50934":0,"50935":1,"50936":0,"50937":0,"50938":1,"50939":0,"50940":1,"50941":0,"50942":1,"50943":1,"50944":0,"50945":0,"50946":0,"50947":0,"50948":1,"50949":0,"50950":0,"50951":0,"50952":0,"50953":0,"50954":1,"50955":0,"50956":0,"50957":0,"50958":0,"50959":0,"50960":1,"50961":0,"50962":0,"50963":0,"50964":0,"50965":0,"50966":0,"50967":0,"50968":0,"50969":1,"50970":0,"50971":1,"50972":0,"50973":1,"50974":1,"50975":0,"50976":1,"50977":1,"50978":0,"50979":0,"50980":0,"50981":0,"50982":0,"50983":1,"50984":0,"50985":0,"50986":0,"50987":0,"50988":0,"50989":1,"50990":1,"50991":1,"50992":0,"50993":0,"50994":0,"50995":0,"50996":0,"50997":1,"50998":0,"50999":0,"51000":0,"51001":0,"51002":1,"51003":0,"51004":0,"51005":0,"51006":0,"51007":0,"51008":0,"51009":1,"51010":0,"51011":1,"51012":0,"51013":0,"51014":0,"51015":0,"51016":1,"51017":0,"51018":0,"51019":0,"51020":1,"51021":0,"51022":0,"51023":0,"51024":0,"51025":0,"51026":0,"51027":0,"51028":0,"51029":0,"51030":0,"51031":1,"51032":0,"51033":0,"51034":0,"51035":0,"51036":0,"51037":1,"51038":1,"51039":0,"51040":0,"51041":1,"51042":1,"51043":1,"51044":0,"51045":0,"51046":0,"51047":0,"51048":0,"51049":1,"51050":0,"51051":1,"51052":0,"51053":0,"51054":1,"51055":0,"51056":0,"51057":0,"51058":1,"51059":0,"51060":0,"51061":0,"51062":0,"51063":1,"51064":0,"51065":0,"51066":0,"51067":0,"51068":0,"51069":0,"51070":0,"51071":0,"51072":1,"51073":0,"51074":0,"51075":0,"51076":0,"51077":0,"51078":1,"51079":0,"51080":0,"51081":0,"51082":0,"51083":0,"51084":0,"51085":0,"51086":1,"51087":0,"51088":0,"51089":0,"51090":0,"51091":1,"51092":1,"51093":0,"51094":1,"51095":0,"51096":0,"51097":0,"51098":1,"51099":1,"51100":0,"51101":0,"51102":0,"51103":0,"51104":0,"51105":0,"51106":0,"51107":0,"51108":0,"51109":0,"51110":0,"51111":1,"51112":1,"51113":0,"51114":0,"51115":0,"51116":0,"51117":0,"51118":1,"51119":0,"51120":0,"51121":0,"51122":1,"51123":0,"51124":0,"51125":1,"51126":0,"51127":0,"51128":0,"51129":1,"51130":0,"51131":0,"51132":0,"51133":0,"51134":0,"51135":0,"51136":0,"51137":1,"51138":1,"51139":1,"51140":0,"51141":0,"51142":0,"51143":0,"51144":1,"51145":0,"51146":0,"51147":1,"51148":0,"51149":0,"51150":1,"51151":1,"51152":0,"51153":1,"51154":0,"51155":0,"51156":1,"51157":1,"51158":0,"51159":0,"51160":0,"51161":1,"51162":0,"51163":1,"51164":0,"51165":1,"51166":0,"51167":0,"51168":1,"51169":0,"51170":1,"51171":0,"51172":0,"51173":1,"51174":0,"51175":1,"51176":0,"51177":1,"51178":0,"51179":1,"51180":0,"51181":0,"51182":0,"51183":0,"51184":0,"51185":0,"51186":1,"51187":1,"51188":0,"51189":0,"51190":0,"51191":0,"51192":0,"51193":0,"51194":0,"51195":0,"51196":0,"51197":1,"51198":0,"51199":0,"51200":1,"51201":0,"51202":1,"51203":1,"51204":0,"51205":1,"51206":0,"51207":0,"51208":0,"51209":0,"51210":0,"51211":0,"51212":0,"51213":0,"51214":1,"51215":0,"51216":0,"51217":0,"51218":0,"51219":0,"51220":0,"51221":0,"51222":0,"51223":1,"51224":0,"51225":0,"51226":0,"51227":1,"51228":0,"51229":1,"51230":0,"51231":0,"51232":0,"51233":0,"51234":0,"51235":0,"51236":1,"51237":0,"51238":0,"51239":0,"51240":0,"51241":1,"51242":0,"51243":0,"51244":1,"51245":0,"51246":0,"51247":1,"51248":0,"51249":0,"51250":0,"51251":0,"51252":0,"51253":0,"51254":0,"51255":0,"51256":1,"51257":0,"51258":1,"51259":0,"51260":1,"51261":0,"51262":0,"51263":0,"51264":0,"51265":1,"51266":1,"51267":1,"51268":0,"51269":1,"51270":0,"51271":0,"51272":1,"51273":0,"51274":0,"51275":0,"51276":0,"51277":0,"51278":0,"51279":0,"51280":0,"51281":0,"51282":0,"51283":0,"51284":0,"51285":0,"51286":0,"51287":1,"51288":1,"51289":0,"51290":0,"51291":0,"51292":0,"51293":1,"51294":0,"51295":0,"51296":0,"51297":0,"51298":1,"51299":0,"51300":0,"51301":0,"51302":0,"51303":0,"51304":1,"51305":0,"51306":0,"51307":1,"51308":0,"51309":0,"51310":0,"51311":0,"51312":0,"51313":0,"51314":0,"51315":1,"51316":1,"51317":0,"51318":0,"51319":0,"51320":0,"51321":0,"51322":1,"51323":1,"51324":0,"51325":0,"51326":1,"51327":0,"51328":0,"51329":0,"51330":0,"51331":1,"51332":0,"51333":0,"51334":0,"51335":0,"51336":0,"51337":0,"51338":0,"51339":1,"51340":0,"51341":1,"51342":0,"51343":1,"51344":0,"51345":0,"51346":0,"51347":0,"51348":1,"51349":1,"51350":1,"51351":0,"51352":0,"51353":0,"51354":0,"51355":0,"51356":1,"51357":1,"51358":0,"51359":0,"51360":0,"51361":1,"51362":1,"51363":0,"51364":0,"51365":1,"51366":0,"51367":0,"51368":1,"51369":1,"51370":0,"51371":1,"51372":0,"51373":0,"51374":0,"51375":0,"51376":0,"51377":0,"51378":0,"51379":0,"51380":1,"51381":0,"51382":0,"51383":1,"51384":1,"51385":0,"51386":0,"51387":0,"51388":0,"51389":0,"51390":0,"51391":1,"51392":0,"51393":0,"51394":1,"51395":1,"51396":1,"51397":0,"51398":0,"51399":0,"51400":0,"51401":1,"51402":0,"51403":0,"51404":1,"51405":1,"51406":0,"51407":0,"51408":1,"51409":1,"51410":0,"51411":0,"51412":0,"51413":0,"51414":0,"51415":0,"51416":1,"51417":0,"51418":0,"51419":0,"51420":1,"51421":1,"51422":0,"51423":1,"51424":0,"51425":0,"51426":0,"51427":1,"51428":0,"51429":0,"51430":0,"51431":1,"51432":0,"51433":0,"51434":0,"51435":1,"51436":1,"51437":0,"51438":1,"51439":0,"51440":0,"51441":0,"51442":0,"51443":0,"51444":0,"51445":0,"51446":1,"51447":1,"51448":0,"51449":0,"51450":0,"51451":1,"51452":0,"51453":0,"51454":0,"51455":0,"51456":0,"51457":1,"51458":0,"51459":0,"51460":0,"51461":0,"51462":0,"51463":0,"51464":0,"51465":0,"51466":0,"51467":1,"51468":0,"51469":0,"51470":1,"51471":0,"51472":0,"51473":0,"51474":1,"51475":0,"51476":1,"51477":0,"51478":0,"51479":1,"51480":0,"51481":1,"51482":0,"51483":0,"51484":0,"51485":0,"51486":0,"51487":1,"51488":0,"51489":0,"51490":0,"51491":1,"51492":0,"51493":0,"51494":0,"51495":0,"51496":0,"51497":0,"51498":0,"51499":1,"51500":0,"51501":0,"51502":0,"51503":1,"51504":0,"51505":1,"51506":0,"51507":1,"51508":0,"51509":0,"51510":0,"51511":1,"51512":0,"51513":0,"51514":0,"51515":0,"51516":0,"51517":0,"51518":0,"51519":0,"51520":1,"51521":0,"51522":1,"51523":0,"51524":1,"51525":0,"51526":1,"51527":0,"51528":0,"51529":1,"51530":0,"51531":1,"51532":0,"51533":0,"51534":0,"51535":1,"51536":0,"51537":1,"51538":0,"51539":0,"51540":0,"51541":0,"51542":0,"51543":1,"51544":1,"51545":0,"51546":0,"51547":0,"51548":0,"51549":1,"51550":1,"51551":0,"51552":0,"51553":0,"51554":0,"51555":0,"51556":0,"51557":0,"51558":0,"51559":0,"51560":0,"51561":0,"51562":1,"51563":0,"51564":0,"51565":0,"51566":0,"51567":0,"51568":0,"51569":0,"51570":1,"51571":0,"51572":1,"51573":0,"51574":0,"51575":1,"51576":1,"51577":0,"51578":0,"51579":0,"51580":1,"51581":0,"51582":0,"51583":1,"51584":0,"51585":0,"51586":0,"51587":0,"51588":0,"51589":1,"51590":0,"51591":1,"51592":0,"51593":0,"51594":1,"51595":0,"51596":0,"51597":0,"51598":0,"51599":1,"51600":1,"51601":1,"51602":0,"51603":1,"51604":0,"51605":0,"51606":0,"51607":1,"51608":1,"51609":0,"51610":0,"51611":0,"51612":0,"51613":1,"51614":1,"51615":0,"51616":1,"51617":0,"51618":1,"51619":1,"51620":0,"51621":0,"51622":1,"51623":0,"51624":1,"51625":0,"51626":0,"51627":0,"51628":0,"51629":1,"51630":0,"51631":0,"51632":0,"51633":0,"51634":0,"51635":0,"51636":0,"51637":0,"51638":1,"51639":0,"51640":1,"51641":0,"51642":0,"51643":0,"51644":0,"51645":0,"51646":0,"51647":1,"51648":0,"51649":1,"51650":0,"51651":0,"51652":0,"51653":0,"51654":1,"51655":0,"51656":1,"51657":0,"51658":0,"51659":1,"51660":0,"51661":0,"51662":0,"51663":1,"51664":0,"51665":0,"51666":0,"51667":0,"51668":0,"51669":0,"51670":0,"51671":1,"51672":0,"51673":0,"51674":1,"51675":0,"51676":0,"51677":1,"51678":0,"51679":0,"51680":0,"51681":0,"51682":1,"51683":0,"51684":1,"51685":0,"51686":0,"51687":1,"51688":1,"51689":1,"51690":1,"51691":0,"51692":1,"51693":0,"51694":0,"51695":0,"51696":0,"51697":0,"51698":1,"51699":1,"51700":0,"51701":0,"51702":1,"51703":1,"51704":0,"51705":0,"51706":0,"51707":0,"51708":0,"51709":1,"51710":1,"51711":1,"51712":1,"51713":0,"51714":0,"51715":0,"51716":1,"51717":0,"51718":1,"51719":0,"51720":0,"51721":0,"51722":0,"51723":1,"51724":0,"51725":0,"51726":0,"51727":0,"51728":0,"51729":0,"51730":0,"51731":1,"51732":0,"51733":0,"51734":0,"51735":0,"51736":1,"51737":0,"51738":0,"51739":0,"51740":0,"51741":1,"51742":0,"51743":0,"51744":0,"51745":1,"51746":0,"51747":0,"51748":0,"51749":0,"51750":0,"51751":0,"51752":0,"51753":0,"51754":1,"51755":0,"51756":0,"51757":1,"51758":0,"51759":1,"51760":0,"51761":0,"51762":1,"51763":0,"51764":0,"51765":0,"51766":0,"51767":0,"51768":0,"51769":0,"51770":0,"51771":0,"51772":0,"51773":1,"51774":1,"51775":0,"51776":0,"51777":0,"51778":0,"51779":0,"51780":0,"51781":0,"51782":0,"51783":0,"51784":1,"51785":1,"51786":0,"51787":0,"51788":0,"51789":0,"51790":0,"51791":0,"51792":0,"51793":0,"51794":0,"51795":0,"51796":0,"51797":0,"51798":1,"51799":0,"51800":0,"51801":1,"51802":0,"51803":0,"51804":0,"51805":0,"51806":0,"51807":1,"51808":0,"51809":0,"51810":0,"51811":0,"51812":0,"51813":1,"51814":1,"51815":1,"51816":0,"51817":1,"51818":0,"51819":0,"51820":0,"51821":0,"51822":0,"51823":0,"51824":0,"51825":0,"51826":0,"51827":0,"51828":0,"51829":0,"51830":1,"51831":0,"51832":1,"51833":0,"51834":0,"51835":0,"51836":0,"51837":0,"51838":0,"51839":0,"51840":0,"51841":0,"51842":0,"51843":0,"51844":0,"51845":0,"51846":1,"51847":0,"51848":1,"51849":0,"51850":1,"51851":0,"51852":0,"51853":0,"51854":1,"51855":0,"51856":0,"51857":0,"51858":0,"51859":1,"51860":1,"51861":0,"51862":1,"51863":0,"51864":0,"51865":1,"51866":0,"51867":1,"51868":0,"51869":1,"51870":0,"51871":0,"51872":0,"51873":0,"51874":0,"51875":0,"51876":0,"51877":1,"51878":0,"51879":0,"51880":1,"51881":1,"51882":1,"51883":1,"51884":0,"51885":0,"51886":0,"51887":0,"51888":1,"51889":0,"51890":0,"51891":0,"51892":1,"51893":0,"51894":0,"51895":0,"51896":0,"51897":0,"51898":0,"51899":0,"51900":0,"51901":0,"51902":0,"51903":1,"51904":1,"51905":0,"51906":0,"51907":0,"51908":0,"51909":1,"51910":1,"51911":0,"51912":0,"51913":0,"51914":0,"51915":1,"51916":0,"51917":0,"51918":0,"51919":0,"51920":0,"51921":1,"51922":0,"51923":0,"51924":0,"51925":0,"51926":0,"51927":1,"51928":0,"51929":1,"51930":0,"51931":1,"51932":1,"51933":0,"51934":0,"51935":0,"51936":0,"51937":0,"51938":0,"51939":0,"51940":0,"51941":0,"51942":0,"51943":0,"51944":0,"51945":0,"51946":0,"51947":1,"51948":0,"51949":0,"51950":1,"51951":0,"51952":0,"51953":0,"51954":0,"51955":0,"51956":1,"51957":0,"51958":1,"51959":1,"51960":0,"51961":0,"51962":0,"51963":0,"51964":1,"51965":0,"51966":0,"51967":0,"51968":0,"51969":0,"51970":0,"51971":0,"51972":0,"51973":1,"51974":1,"51975":1,"51976":0,"51977":0,"51978":0,"51979":0,"51980":0,"51981":0,"51982":1,"51983":0,"51984":0,"51985":1,"51986":0,"51987":0,"51988":0,"51989":0,"51990":0,"51991":0,"51992":1,"51993":0,"51994":0,"51995":0,"51996":1,"51997":1,"51998":0,"51999":1,"52000":1,"52001":0,"52002":0,"52003":0,"52004":0,"52005":0,"52006":1,"52007":0,"52008":1,"52009":0,"52010":0,"52011":0,"52012":1,"52013":1,"52014":0,"52015":1,"52016":0,"52017":0,"52018":0,"52019":1,"52020":0,"52021":1,"52022":1,"52023":0,"52024":1,"52025":0,"52026":0,"52027":1,"52028":1,"52029":1,"52030":0,"52031":1,"52032":0,"52033":0,"52034":0,"52035":0,"52036":0,"52037":1,"52038":0,"52039":1,"52040":0,"52041":0,"52042":0,"52043":0,"52044":1,"52045":0,"52046":0,"52047":0,"52048":0,"52049":0,"52050":0,"52051":1,"52052":0,"52053":0,"52054":1,"52055":1,"52056":0,"52057":0,"52058":1,"52059":0,"52060":0,"52061":0,"52062":0,"52063":1,"52064":0,"52065":0,"52066":0,"52067":1,"52068":1,"52069":0,"52070":0,"52071":0,"52072":0,"52073":1,"52074":0,"52075":1,"52076":0,"52077":1,"52078":0,"52079":1,"52080":0,"52081":0,"52082":0,"52083":1,"52084":0,"52085":1,"52086":0,"52087":0,"52088":0,"52089":0,"52090":0,"52091":0,"52092":0,"52093":0,"52094":0,"52095":0,"52096":1,"52097":0,"52098":0,"52099":0,"52100":1,"52101":0,"52102":0,"52103":1,"52104":0,"52105":0,"52106":0,"52107":0,"52108":0,"52109":1,"52110":0,"52111":1,"52112":0,"52113":0,"52114":0,"52115":0,"52116":1,"52117":0,"52118":1,"52119":0,"52120":1,"52121":0,"52122":0,"52123":0,"52124":1,"52125":0,"52126":1,"52127":1,"52128":0,"52129":0,"52130":1,"52131":0,"52132":0,"52133":1,"52134":1,"52135":0,"52136":0,"52137":0,"52138":0,"52139":0,"52140":0,"52141":0,"52142":0,"52143":0,"52144":0,"52145":1,"52146":1,"52147":0,"52148":1,"52149":0,"52150":0,"52151":0,"52152":1,"52153":1,"52154":0,"52155":0,"52156":1,"52157":0,"52158":1,"52159":0,"52160":0,"52161":1,"52162":0,"52163":1,"52164":1,"52165":1,"52166":1,"52167":0,"52168":0,"52169":0,"52170":0,"52171":0,"52172":0,"52173":1,"52174":0,"52175":0,"52176":0,"52177":0,"52178":0,"52179":0,"52180":1,"52181":1,"52182":0,"52183":1,"52184":0,"52185":0,"52186":0,"52187":0,"52188":1,"52189":0,"52190":1,"52191":1,"52192":0,"52193":0,"52194":1,"52195":1,"52196":0,"52197":0,"52198":0,"52199":0,"52200":0,"52201":1,"52202":1,"52203":0,"52204":0,"52205":1,"52206":0,"52207":1,"52208":0,"52209":0,"52210":1,"52211":0,"52212":1,"52213":0,"52214":0,"52215":0,"52216":1,"52217":0,"52218":0,"52219":1,"52220":1,"52221":0,"52222":0,"52223":0,"52224":0,"52225":1,"52226":0,"52227":0,"52228":0,"52229":0,"52230":1,"52231":0,"52232":0,"52233":0,"52234":0,"52235":0,"52236":0,"52237":0,"52238":0,"52239":1,"52240":0,"52241":0,"52242":0,"52243":0,"52244":0,"52245":0,"52246":0,"52247":0,"52248":0,"52249":0,"52250":0,"52251":1,"52252":1,"52253":1,"52254":0,"52255":0,"52256":0,"52257":1,"52258":0,"52259":0,"52260":0,"52261":0,"52262":0,"52263":0,"52264":0,"52265":0,"52266":1,"52267":0,"52268":1,"52269":1,"52270":0,"52271":0,"52272":0,"52273":0,"52274":1,"52275":0,"52276":0,"52277":0,"52278":0,"52279":0,"52280":0,"52281":0,"52282":0,"52283":0,"52284":0,"52285":0,"52286":0,"52287":0,"52288":0,"52289":0,"52290":0,"52291":0,"52292":1,"52293":1,"52294":0,"52295":0,"52296":0,"52297":1,"52298":1,"52299":0,"52300":0,"52301":1,"52302":0,"52303":0,"52304":1,"52305":0,"52306":0,"52307":0,"52308":1,"52309":0,"52310":0,"52311":0,"52312":1,"52313":0,"52314":0,"52315":0,"52316":1,"52317":0,"52318":1,"52319":0,"52320":0,"52321":0,"52322":1,"52323":0,"52324":1,"52325":0,"52326":0,"52327":0,"52328":0,"52329":0,"52330":0,"52331":0,"52332":0,"52333":0,"52334":0,"52335":0,"52336":0,"52337":0,"52338":1,"52339":1,"52340":1,"52341":1,"52342":0,"52343":0,"52344":0,"52345":1,"52346":0,"52347":1,"52348":1,"52349":1,"52350":1,"52351":0,"52352":1,"52353":0,"52354":0,"52355":0,"52356":0,"52357":0,"52358":1,"52359":0,"52360":1,"52361":0,"52362":1,"52363":0,"52364":0,"52365":1,"52366":1,"52367":0,"52368":0,"52369":1,"52370":1,"52371":0,"52372":0,"52373":0,"52374":0,"52375":0,"52376":0,"52377":0,"52378":0,"52379":0,"52380":0,"52381":0,"52382":0,"52383":0,"52384":0,"52385":0,"52386":0,"52387":0,"52388":0,"52389":0,"52390":0,"52391":0,"52392":0,"52393":1,"52394":0,"52395":0,"52396":0,"52397":0,"52398":0,"52399":0,"52400":1,"52401":0,"52402":0,"52403":1,"52404":1,"52405":0,"52406":0,"52407":0,"52408":0,"52409":1,"52410":0,"52411":0,"52412":1,"52413":1,"52414":0,"52415":0,"52416":1,"52417":0,"52418":0,"52419":0,"52420":1,"52421":0,"52422":0,"52423":0,"52424":1,"52425":0,"52426":1,"52427":0,"52428":0,"52429":1,"52430":0,"52431":0,"52432":0,"52433":1,"52434":1,"52435":0,"52436":0,"52437":0,"52438":0,"52439":1,"52440":0,"52441":0,"52442":0,"52443":0,"52444":0,"52445":1,"52446":1,"52447":0,"52448":0,"52449":0,"52450":1,"52451":0,"52452":1,"52453":1,"52454":0,"52455":0,"52456":0,"52457":0,"52458":1,"52459":0,"52460":1,"52461":0,"52462":0,"52463":0,"52464":1,"52465":1,"52466":0,"52467":1,"52468":0,"52469":1,"52470":1,"52471":0,"52472":0,"52473":0,"52474":0,"52475":0,"52476":0,"52477":0,"52478":1,"52479":0,"52480":0,"52481":1,"52482":1,"52483":0,"52484":1,"52485":0,"52486":0,"52487":1,"52488":0,"52489":0,"52490":0,"52491":0,"52492":0,"52493":0,"52494":0,"52495":0,"52496":1,"52497":0,"52498":0,"52499":0,"52500":0,"52501":0,"52502":0,"52503":0,"52504":0,"52505":1,"52506":0,"52507":0,"52508":1,"52509":0,"52510":0,"52511":0,"52512":0,"52513":0,"52514":0,"52515":1,"52516":0,"52517":0,"52518":0,"52519":0,"52520":1,"52521":0,"52522":1,"52523":0,"52524":0,"52525":0,"52526":0,"52527":1,"52528":0,"52529":0,"52530":0,"52531":0,"52532":1,"52533":0,"52534":1,"52535":0,"52536":0,"52537":0,"52538":1,"52539":1,"52540":0,"52541":0,"52542":0,"52543":0,"52544":0,"52545":0,"52546":0,"52547":1,"52548":1,"52549":0,"52550":0,"52551":1,"52552":0,"52553":1,"52554":0,"52555":0,"52556":1,"52557":0,"52558":0,"52559":1,"52560":0,"52561":0,"52562":0,"52563":0,"52564":0,"52565":1,"52566":0,"52567":0,"52568":1,"52569":0,"52570":0,"52571":0,"52572":1,"52573":0,"52574":1,"52575":0,"52576":0,"52577":0,"52578":1,"52579":1,"52580":1,"52581":0,"52582":0,"52583":1,"52584":0,"52585":0,"52586":1,"52587":1,"52588":0,"52589":0,"52590":1,"52591":1,"52592":0,"52593":0,"52594":1,"52595":0,"52596":0,"52597":0,"52598":0,"52599":0,"52600":0,"52601":0,"52602":1,"52603":0,"52604":0,"52605":0,"52606":0,"52607":0,"52608":1,"52609":0,"52610":0,"52611":0,"52612":1,"52613":0,"52614":0,"52615":0,"52616":0,"52617":0,"52618":0,"52619":0,"52620":0,"52621":0,"52622":0,"52623":0,"52624":0,"52625":0,"52626":0,"52627":0,"52628":0,"52629":0,"52630":0,"52631":0,"52632":0,"52633":0,"52634":0,"52635":1,"52636":1,"52637":0,"52638":0,"52639":0,"52640":1,"52641":0,"52642":0,"52643":0,"52644":0,"52645":0,"52646":0,"52647":0,"52648":1,"52649":0,"52650":0,"52651":0,"52652":0,"52653":0,"52654":0,"52655":0,"52656":0,"52657":0,"52658":0,"52659":0,"52660":1,"52661":0,"52662":0,"52663":0,"52664":1,"52665":1,"52666":0,"52667":0,"52668":0,"52669":1,"52670":0,"52671":0,"52672":0,"52673":1,"52674":1,"52675":1,"52676":0,"52677":1,"52678":0,"52679":1,"52680":0,"52681":1,"52682":0,"52683":0,"52684":0,"52685":0,"52686":0,"52687":0,"52688":0,"52689":0,"52690":0,"52691":0,"52692":0,"52693":0,"52694":0,"52695":0,"52696":0,"52697":1,"52698":0,"52699":1,"52700":0,"52701":1,"52702":0,"52703":0,"52704":0,"52705":0,"52706":0,"52707":0,"52708":0,"52709":0,"52710":0,"52711":1,"52712":0,"52713":0,"52714":1,"52715":0,"52716":0,"52717":0,"52718":0,"52719":0,"52720":0,"52721":0,"52722":0,"52723":0,"52724":0,"52725":0,"52726":1,"52727":0,"52728":0,"52729":1,"52730":1,"52731":0,"52732":1,"52733":1,"52734":0,"52735":0,"52736":1,"52737":1,"52738":0,"52739":0,"52740":1,"52741":0,"52742":1,"52743":0,"52744":1,"52745":0,"52746":1,"52747":0,"52748":0,"52749":1,"52750":0,"52751":0,"52752":0,"52753":0,"52754":0,"52755":1,"52756":1,"52757":1,"52758":1,"52759":0,"52760":0,"52761":0,"52762":0,"52763":0,"52764":0,"52765":0,"52766":0,"52767":0,"52768":0,"52769":0,"52770":0,"52771":0,"52772":0,"52773":1,"52774":0,"52775":0,"52776":0,"52777":0,"52778":0,"52779":0,"52780":0,"52781":0,"52782":0,"52783":0,"52784":0,"52785":0,"52786":1,"52787":1,"52788":0,"52789":0,"52790":1,"52791":0,"52792":0,"52793":0,"52794":1,"52795":0,"52796":0,"52797":0,"52798":1,"52799":0,"52800":0,"52801":1,"52802":0,"52803":0,"52804":0,"52805":0,"52806":0,"52807":0,"52808":0,"52809":0,"52810":0,"52811":0,"52812":0,"52813":1,"52814":0,"52815":0,"52816":0,"52817":0,"52818":0,"52819":0,"52820":0,"52821":0,"52822":1,"52823":0,"52824":0,"52825":0,"52826":0,"52827":1,"52828":0,"52829":1,"52830":0,"52831":1,"52832":1,"52833":0,"52834":0,"52835":0,"52836":0,"52837":0,"52838":0,"52839":1,"52840":0,"52841":0,"52842":0,"52843":0,"52844":1,"52845":0,"52846":0,"52847":1,"52848":0,"52849":0,"52850":0,"52851":0,"52852":0,"52853":0,"52854":0,"52855":0,"52856":0,"52857":1,"52858":1,"52859":0,"52860":0,"52861":0,"52862":0,"52863":0,"52864":0,"52865":1,"52866":0,"52867":1,"52868":0,"52869":1,"52870":0,"52871":0,"52872":0,"52873":0,"52874":0,"52875":0,"52876":0,"52877":0,"52878":0,"52879":0,"52880":1,"52881":0,"52882":0,"52883":0,"52884":0,"52885":0,"52886":0,"52887":0,"52888":0,"52889":0,"52890":0,"52891":1,"52892":0,"52893":0,"52894":1,"52895":1,"52896":0,"52897":0,"52898":0,"52899":0,"52900":0,"52901":0,"52902":0,"52903":0,"52904":1,"52905":0,"52906":0,"52907":0,"52908":1,"52909":0,"52910":0,"52911":0,"52912":0,"52913":1,"52914":0,"52915":0,"52916":0,"52917":0,"52918":0,"52919":0,"52920":0,"52921":1,"52922":0,"52923":0,"52924":0,"52925":1,"52926":0,"52927":0,"52928":0,"52929":0,"52930":0,"52931":0,"52932":0,"52933":1,"52934":0,"52935":0,"52936":0,"52937":1,"52938":0,"52939":0,"52940":0,"52941":0,"52942":0,"52943":1,"52944":0,"52945":0,"52946":0,"52947":0,"52948":0,"52949":0,"52950":1,"52951":0,"52952":1,"52953":0,"52954":0,"52955":1,"52956":0,"52957":1,"52958":0,"52959":0,"52960":1,"52961":1,"52962":0,"52963":1,"52964":1,"52965":0,"52966":1,"52967":0,"52968":0,"52969":0,"52970":0,"52971":0,"52972":0,"52973":0,"52974":0,"52975":1,"52976":1,"52977":0,"52978":0,"52979":1,"52980":0,"52981":1,"52982":1,"52983":1,"52984":0,"52985":0,"52986":1,"52987":0,"52988":0,"52989":1,"52990":0,"52991":0,"52992":0,"52993":1,"52994":0,"52995":0,"52996":0,"52997":0,"52998":1,"52999":0,"53000":0,"53001":1,"53002":0,"53003":0,"53004":0,"53005":0,"53006":0,"53007":1,"53008":1,"53009":0,"53010":0,"53011":1,"53012":0,"53013":0,"53014":0,"53015":0,"53016":0,"53017":0,"53018":1,"53019":1,"53020":0,"53021":1,"53022":0,"53023":0,"53024":1,"53025":0,"53026":0,"53027":0,"53028":0,"53029":0,"53030":0,"53031":0,"53032":1,"53033":1,"53034":0,"53035":0,"53036":0,"53037":1,"53038":0,"53039":0,"53040":0,"53041":0,"53042":0,"53043":0,"53044":1,"53045":0,"53046":0,"53047":0,"53048":1,"53049":0,"53050":0,"53051":0,"53052":1,"53053":1,"53054":0,"53055":0,"53056":1,"53057":1,"53058":1,"53059":0,"53060":0,"53061":0,"53062":1,"53063":0,"53064":0,"53065":0,"53066":0,"53067":0,"53068":1,"53069":0,"53070":0,"53071":0,"53072":0,"53073":1,"53074":0,"53075":0,"53076":0,"53077":1,"53078":0,"53079":0,"53080":0,"53081":0,"53082":0,"53083":0,"53084":0,"53085":0,"53086":1,"53087":0,"53088":0,"53089":0,"53090":0,"53091":0,"53092":1,"53093":0,"53094":1,"53095":0,"53096":0,"53097":0,"53098":0,"53099":0,"53100":0,"53101":1,"53102":0,"53103":1,"53104":1,"53105":1,"53106":0,"53107":1,"53108":0,"53109":0,"53110":0,"53111":0,"53112":0,"53113":0,"53114":0,"53115":0,"53116":0,"53117":0,"53118":0,"53119":0,"53120":0,"53121":0,"53122":0,"53123":0,"53124":0,"53125":0,"53126":0,"53127":1,"53128":0,"53129":0,"53130":0,"53131":1,"53132":0,"53133":1,"53134":0,"53135":0,"53136":0,"53137":0,"53138":0,"53139":0,"53140":1,"53141":0,"53142":0,"53143":0,"53144":0,"53145":0,"53146":0,"53147":1,"53148":0,"53149":0,"53150":0,"53151":0,"53152":1,"53153":0,"53154":1,"53155":0,"53156":0,"53157":1,"53158":0,"53159":0,"53160":0,"53161":1,"53162":1,"53163":0,"53164":0,"53165":1,"53166":0,"53167":0,"53168":0,"53169":0,"53170":0,"53171":0,"53172":0,"53173":0,"53174":1,"53175":0,"53176":0,"53177":1,"53178":1,"53179":0,"53180":0,"53181":1,"53182":0,"53183":0,"53184":1,"53185":1,"53186":0,"53187":1,"53188":1,"53189":0,"53190":0,"53191":0,"53192":1,"53193":0,"53194":0,"53195":1,"53196":0,"53197":0,"53198":1,"53199":0,"53200":0,"53201":0,"53202":0,"53203":0,"53204":1,"53205":1,"53206":0,"53207":0,"53208":0,"53209":1,"53210":0,"53211":0,"53212":0,"53213":0,"53214":1,"53215":0,"53216":1,"53217":0,"53218":0,"53219":0,"53220":1,"53221":0,"53222":1,"53223":0,"53224":1,"53225":1,"53226":0,"53227":0,"53228":0,"53229":0,"53230":0,"53231":1,"53232":1,"53233":0,"53234":0,"53235":0,"53236":0,"53237":0,"53238":0,"53239":0,"53240":1,"53241":1,"53242":0,"53243":0,"53244":0,"53245":0,"53246":0,"53247":1,"53248":1,"53249":1,"53250":0,"53251":0,"53252":1,"53253":0,"53254":0,"53255":0,"53256":1,"53257":1,"53258":0,"53259":0,"53260":1,"53261":0,"53262":0,"53263":1,"53264":0,"53265":0,"53266":0,"53267":0,"53268":0,"53269":0,"53270":0,"53271":0,"53272":0,"53273":0,"53274":0,"53275":1,"53276":0,"53277":0,"53278":1,"53279":0,"53280":1,"53281":0,"53282":0,"53283":0,"53284":0,"53285":0,"53286":0,"53287":0,"53288":1,"53289":0,"53290":0,"53291":1,"53292":0,"53293":0,"53294":1,"53295":0,"53296":0,"53297":1,"53298":0,"53299":0,"53300":0,"53301":0,"53302":0,"53303":0,"53304":1,"53305":0,"53306":0,"53307":0,"53308":0,"53309":1,"53310":1,"53311":1,"53312":0,"53313":1,"53314":1,"53315":0,"53316":0,"53317":0,"53318":1,"53319":0,"53320":0,"53321":0,"53322":0,"53323":0,"53324":0,"53325":0,"53326":0,"53327":0,"53328":0,"53329":0,"53330":0,"53331":0,"53332":0,"53333":0,"53334":0,"53335":0,"53336":0,"53337":0,"53338":0,"53339":1,"53340":1,"53341":1,"53342":0,"53343":0,"53344":0,"53345":0,"53346":0,"53347":0,"53348":0,"53349":0,"53350":0,"53351":0,"53352":0,"53353":0,"53354":0,"53355":1,"53356":0,"53357":1,"53358":1,"53359":0,"53360":0,"53361":1,"53362":0,"53363":0,"53364":0,"53365":0,"53366":1,"53367":0,"53368":1,"53369":0,"53370":1,"53371":0,"53372":0,"53373":1,"53374":0,"53375":0,"53376":1,"53377":1,"53378":1,"53379":1,"53380":0,"53381":0,"53382":1,"53383":0,"53384":0,"53385":0,"53386":1,"53387":0,"53388":0,"53389":1,"53390":0,"53391":1,"53392":1,"53393":1,"53394":0,"53395":0,"53396":0,"53397":0,"53398":0,"53399":0,"53400":0,"53401":1,"53402":1,"53403":1,"53404":1,"53405":0,"53406":0,"53407":1,"53408":0,"53409":1,"53410":0,"53411":1,"53412":0,"53413":0,"53414":0,"53415":0,"53416":0,"53417":0,"53418":0,"53419":0,"53420":0,"53421":0,"53422":0,"53423":0,"53424":0,"53425":0,"53426":0,"53427":0,"53428":0,"53429":0,"53430":1,"53431":0,"53432":0,"53433":1,"53434":0,"53435":0,"53436":0,"53437":0,"53438":1,"53439":0,"53440":0,"53441":1,"53442":0,"53443":1,"53444":1,"53445":0,"53446":1,"53447":0,"53448":0,"53449":1,"53450":0,"53451":0,"53452":0,"53453":0,"53454":0,"53455":0,"53456":0,"53457":0,"53458":0,"53459":0,"53460":0,"53461":1,"53462":0,"53463":0,"53464":0,"53465":1,"53466":0,"53467":0,"53468":0,"53469":1,"53470":0,"53471":0,"53472":0,"53473":0,"53474":0,"53475":0,"53476":1,"53477":0,"53478":0,"53479":1,"53480":0,"53481":0,"53482":0,"53483":0,"53484":0,"53485":0,"53486":0,"53487":0,"53488":0,"53489":1,"53490":0,"53491":0,"53492":0,"53493":0,"53494":1,"53495":1,"53496":0,"53497":0,"53498":0,"53499":0,"53500":0,"53501":0,"53502":1,"53503":0,"53504":0,"53505":0,"53506":0,"53507":0,"53508":0,"53509":0,"53510":0,"53511":1,"53512":0,"53513":0,"53514":0,"53515":0,"53516":0,"53517":0,"53518":1,"53519":0,"53520":0,"53521":0,"53522":0,"53523":1,"53524":0,"53525":0,"53526":0,"53527":0,"53528":0,"53529":0,"53530":0,"53531":0,"53532":0,"53533":0,"53534":0,"53535":1,"53536":1,"53537":0,"53538":0,"53539":0,"53540":0,"53541":0,"53542":1,"53543":1,"53544":0,"53545":1,"53546":0,"53547":1,"53548":1,"53549":1,"53550":1,"53551":1,"53552":1,"53553":0,"53554":0,"53555":1,"53556":0,"53557":0,"53558":1,"53559":0,"53560":0,"53561":0,"53562":0,"53563":1,"53564":0,"53565":1,"53566":0,"53567":0,"53568":1,"53569":0,"53570":1,"53571":0,"53572":0,"53573":0,"53574":1,"53575":0,"53576":0,"53577":1,"53578":1,"53579":0,"53580":1,"53581":0,"53582":1,"53583":0,"53584":0,"53585":0,"53586":0,"53587":0,"53588":0,"53589":1,"53590":0,"53591":1,"53592":0,"53593":1,"53594":1,"53595":0,"53596":0,"53597":0,"53598":0,"53599":1,"53600":1,"53601":0,"53602":1,"53603":1,"53604":0,"53605":1,"53606":1,"53607":0,"53608":0,"53609":0,"53610":0,"53611":1,"53612":0,"53613":0,"53614":0,"53615":0,"53616":0,"53617":0,"53618":0,"53619":0,"53620":1,"53621":0,"53622":1,"53623":1,"53624":0,"53625":0,"53626":1,"53627":0,"53628":0,"53629":0,"53630":0,"53631":1,"53632":1,"53633":1,"53634":1,"53635":0,"53636":1,"53637":0,"53638":0,"53639":0,"53640":0,"53641":1,"53642":0,"53643":1,"53644":1,"53645":0,"53646":0,"53647":0,"53648":0,"53649":0,"53650":0,"53651":0,"53652":1,"53653":0,"53654":1,"53655":0,"53656":1,"53657":0,"53658":0,"53659":1,"53660":0,"53661":0,"53662":0,"53663":0,"53664":0,"53665":0,"53666":0,"53667":0,"53668":0,"53669":0,"53670":0,"53671":0,"53672":0,"53673":0,"53674":1,"53675":0,"53676":0,"53677":0,"53678":1,"53679":0,"53680":1,"53681":0,"53682":1,"53683":1,"53684":0,"53685":0,"53686":1,"53687":1,"53688":0,"53689":1,"53690":0,"53691":0,"53692":0,"53693":1,"53694":1,"53695":0,"53696":0,"53697":0,"53698":0,"53699":0,"53700":0,"53701":1,"53702":0,"53703":0,"53704":0,"53705":0,"53706":0,"53707":0,"53708":0,"53709":1,"53710":0,"53711":0,"53712":1,"53713":0,"53714":0,"53715":1,"53716":0,"53717":0,"53718":0,"53719":0,"53720":0,"53721":1,"53722":0,"53723":0,"53724":0,"53725":0,"53726":0,"53727":0,"53728":0,"53729":0,"53730":0,"53731":1,"53732":0,"53733":0,"53734":0,"53735":1,"53736":0,"53737":0,"53738":0,"53739":0,"53740":0,"53741":0,"53742":0,"53743":0,"53744":0,"53745":0,"53746":0,"53747":0,"53748":0,"53749":0,"53750":0,"53751":0,"53752":1,"53753":0,"53754":1,"53755":1,"53756":0,"53757":0,"53758":0,"53759":1,"53760":1,"53761":0,"53762":0,"53763":1,"53764":0,"53765":0,"53766":0,"53767":0,"53768":0,"53769":0,"53770":0,"53771":0,"53772":0,"53773":0,"53774":1,"53775":1,"53776":0,"53777":0,"53778":0,"53779":0,"53780":1,"53781":0,"53782":0,"53783":1,"53784":0,"53785":0,"53786":1,"53787":0,"53788":0,"53789":0,"53790":0,"53791":1,"53792":0,"53793":0,"53794":1,"53795":0,"53796":1,"53797":0,"53798":1,"53799":0,"53800":0,"53801":1,"53802":0,"53803":1,"53804":0,"53805":0,"53806":0,"53807":0,"53808":0,"53809":1,"53810":0,"53811":1,"53812":0,"53813":1,"53814":0,"53815":0,"53816":0,"53817":0,"53818":0,"53819":1,"53820":1,"53821":1,"53822":0,"53823":0,"53824":0,"53825":1,"53826":1,"53827":0,"53828":0,"53829":0,"53830":0,"53831":0,"53832":0,"53833":0,"53834":1,"53835":0,"53836":0,"53837":0,"53838":0,"53839":0,"53840":0,"53841":1,"53842":1,"53843":0,"53844":0,"53845":1,"53846":0,"53847":0,"53848":0,"53849":1,"53850":0,"53851":0,"53852":0,"53853":0,"53854":0,"53855":0,"53856":0,"53857":0,"53858":0,"53859":0,"53860":0,"53861":0,"53862":0,"53863":0,"53864":0,"53865":0,"53866":1,"53867":0,"53868":1,"53869":0,"53870":0,"53871":0,"53872":0,"53873":1,"53874":0,"53875":0,"53876":0,"53877":0,"53878":0,"53879":0,"53880":0,"53881":0,"53882":0,"53883":1,"53884":1,"53885":0,"53886":1,"53887":0,"53888":0,"53889":0,"53890":0,"53891":0,"53892":0,"53893":0,"53894":1,"53895":0,"53896":0,"53897":0,"53898":1,"53899":0,"53900":0,"53901":1,"53902":0,"53903":0,"53904":0,"53905":1,"53906":0,"53907":0,"53908":0,"53909":1,"53910":1,"53911":1,"53912":0,"53913":0,"53914":0,"53915":0,"53916":1,"53917":0,"53918":0,"53919":0,"53920":0,"53921":0,"53922":0,"53923":0,"53924":0,"53925":0,"53926":0,"53927":0,"53928":0,"53929":0,"53930":0,"53931":0,"53932":0,"53933":1,"53934":1,"53935":0,"53936":0,"53937":0,"53938":0,"53939":0,"53940":0,"53941":0,"53942":1,"53943":1,"53944":1,"53945":0,"53946":0,"53947":1,"53948":1,"53949":0,"53950":0,"53951":0,"53952":0,"53953":0,"53954":0,"53955":0,"53956":0,"53957":1,"53958":0,"53959":0,"53960":0,"53961":0,"53962":0,"53963":0,"53964":1,"53965":1,"53966":0,"53967":0,"53968":1,"53969":1,"53970":0,"53971":0,"53972":0,"53973":0,"53974":0,"53975":0,"53976":0,"53977":0,"53978":1,"53979":1,"53980":1,"53981":1,"53982":0,"53983":0,"53984":0,"53985":1,"53986":1,"53987":0,"53988":0,"53989":0,"53990":0,"53991":1,"53992":0,"53993":0,"53994":1,"53995":0,"53996":1,"53997":0,"53998":0,"53999":0,"54000":0,"54001":1,"54002":0,"54003":0,"54004":1,"54005":1,"54006":0,"54007":0,"54008":1,"54009":1,"54010":0,"54011":0,"54012":1,"54013":0,"54014":1,"54015":1,"54016":0,"54017":0,"54018":0,"54019":0,"54020":0,"54021":1,"54022":0,"54023":0,"54024":0,"54025":0,"54026":0,"54027":0,"54028":0,"54029":0,"54030":1,"54031":0,"54032":0,"54033":0,"54034":0,"54035":0,"54036":0,"54037":0,"54038":0,"54039":0,"54040":1,"54041":0,"54042":1,"54043":0,"54044":0,"54045":1,"54046":0,"54047":0,"54048":1,"54049":0,"54050":0,"54051":0,"54052":0,"54053":0,"54054":0,"54055":0,"54056":0,"54057":0,"54058":1,"54059":0,"54060":0,"54061":1,"54062":1,"54063":1,"54064":0,"54065":0,"54066":1,"54067":1,"54068":0,"54069":0,"54070":0,"54071":1,"54072":0,"54073":1,"54074":0,"54075":1,"54076":0,"54077":0,"54078":0,"54079":0,"54080":0,"54081":0,"54082":0,"54083":0,"54084":0,"54085":0,"54086":0,"54087":0,"54088":0,"54089":1,"54090":0,"54091":0,"54092":0,"54093":0,"54094":0,"54095":0,"54096":0,"54097":0,"54098":0,"54099":0,"54100":0,"54101":0,"54102":0,"54103":0,"54104":0,"54105":0,"54106":0,"54107":0,"54108":1,"54109":1,"54110":1,"54111":1,"54112":1,"54113":0,"54114":1,"54115":0,"54116":0,"54117":0,"54118":0,"54119":0,"54120":1,"54121":1,"54122":0,"54123":0,"54124":0,"54125":1,"54126":0,"54127":0,"54128":1,"54129":1,"54130":1,"54131":0,"54132":0,"54133":0,"54134":1,"54135":1,"54136":0,"54137":0,"54138":1,"54139":1,"54140":0,"54141":0,"54142":0,"54143":0,"54144":0,"54145":0,"54146":0,"54147":1,"54148":0,"54149":0,"54150":0,"54151":1,"54152":0,"54153":0,"54154":0,"54155":1,"54156":0,"54157":0,"54158":0,"54159":0,"54160":0,"54161":1,"54162":0,"54163":0,"54164":1,"54165":0,"54166":0,"54167":0,"54168":0,"54169":0,"54170":0,"54171":0,"54172":0,"54173":0,"54174":1,"54175":0,"54176":0,"54177":0,"54178":1,"54179":0,"54180":0,"54181":1,"54182":0,"54183":1,"54184":0,"54185":0,"54186":0,"54187":0,"54188":0,"54189":0,"54190":0,"54191":0,"54192":0,"54193":0,"54194":1,"54195":0,"54196":0,"54197":0,"54198":0,"54199":0,"54200":0,"54201":0,"54202":0,"54203":0,"54204":0,"54205":0,"54206":1,"54207":0,"54208":0,"54209":0,"54210":1,"54211":1,"54212":0,"54213":0,"54214":0,"54215":0,"54216":0,"54217":1,"54218":1,"54219":1,"54220":1,"54221":0,"54222":0,"54223":0,"54224":1,"54225":0,"54226":0,"54227":0,"54228":0,"54229":0,"54230":0,"54231":0,"54232":0,"54233":1,"54234":0,"54235":0,"54236":1,"54237":0,"54238":0,"54239":0,"54240":0,"54241":1,"54242":0,"54243":0,"54244":0,"54245":1,"54246":0,"54247":0,"54248":0,"54249":0,"54250":0,"54251":0,"54252":0,"54253":0,"54254":0,"54255":0,"54256":0,"54257":0,"54258":0,"54259":1,"54260":0,"54261":0,"54262":0,"54263":0,"54264":0,"54265":0,"54266":0,"54267":0,"54268":0,"54269":1,"54270":0,"54271":0,"54272":0,"54273":1,"54274":0,"54275":0,"54276":0,"54277":0,"54278":1,"54279":0,"54280":0,"54281":0,"54282":0,"54283":0,"54284":0,"54285":1,"54286":0,"54287":0,"54288":0,"54289":0,"54290":0,"54291":1,"54292":0,"54293":1,"54294":1,"54295":1,"54296":0,"54297":1,"54298":0,"54299":0,"54300":0,"54301":0,"54302":0,"54303":1,"54304":0,"54305":1,"54306":0,"54307":0,"54308":0,"54309":0,"54310":0,"54311":0,"54312":0,"54313":0,"54314":1,"54315":0,"54316":0,"54317":0,"54318":0,"54319":0,"54320":1,"54321":0,"54322":0,"54323":1,"54324":0,"54325":0,"54326":1,"54327":0,"54328":0,"54329":0,"54330":0,"54331":0,"54332":1,"54333":0,"54334":0,"54335":0,"54336":1,"54337":0,"54338":0,"54339":0,"54340":0,"54341":0,"54342":1,"54343":0,"54344":0,"54345":0,"54346":1,"54347":1,"54348":0,"54349":0,"54350":1,"54351":0,"54352":0,"54353":0,"54354":0,"54355":0,"54356":0,"54357":0,"54358":0,"54359":0,"54360":0,"54361":1,"54362":0,"54363":0,"54364":1,"54365":0,"54366":1,"54367":0,"54368":0,"54369":0,"54370":0,"54371":0,"54372":0,"54373":0,"54374":1,"54375":0,"54376":0,"54377":1,"54378":0,"54379":0,"54380":0,"54381":1,"54382":0,"54383":0,"54384":0,"54385":0,"54386":1,"54387":1,"54388":0,"54389":0,"54390":0,"54391":0,"54392":1,"54393":0,"54394":0,"54395":0,"54396":0,"54397":0,"54398":0,"54399":0,"54400":0,"54401":1,"54402":0,"54403":0,"54404":0,"54405":0,"54406":0,"54407":0,"54408":1,"54409":0,"54410":0,"54411":0,"54412":0,"54413":0,"54414":0,"54415":1,"54416":0,"54417":0,"54418":0,"54419":0,"54420":0,"54421":1,"54422":0,"54423":1,"54424":0,"54425":0,"54426":0,"54427":0,"54428":0,"54429":0,"54430":1,"54431":0,"54432":0,"54433":1,"54434":0,"54435":0,"54436":0,"54437":0,"54438":0,"54439":0,"54440":0,"54441":1,"54442":0,"54443":0,"54444":0,"54445":1,"54446":0,"54447":1,"54448":0,"54449":1,"54450":0,"54451":0,"54452":0,"54453":0,"54454":1,"54455":1,"54456":1,"54457":0,"54458":0,"54459":0,"54460":1,"54461":0,"54462":0,"54463":0,"54464":0,"54465":0,"54466":1,"54467":0,"54468":1,"54469":0,"54470":0,"54471":1,"54472":0,"54473":0,"54474":0,"54475":1,"54476":0,"54477":0,"54478":0,"54479":0,"54480":0,"54481":0,"54482":0,"54483":0,"54484":0,"54485":0,"54486":1,"54487":0,"54488":0,"54489":0,"54490":0,"54491":1,"54492":0,"54493":0,"54494":0,"54495":0,"54496":0,"54497":0,"54498":0,"54499":0,"54500":0,"54501":0,"54502":0,"54503":1,"54504":1,"54505":0,"54506":0,"54507":0,"54508":0,"54509":0,"54510":0,"54511":1,"54512":0,"54513":0,"54514":0,"54515":0,"54516":1,"54517":0,"54518":0,"54519":0,"54520":0,"54521":0,"54522":0,"54523":0,"54524":0,"54525":1,"54526":0,"54527":0,"54528":0,"54529":0,"54530":1,"54531":0,"54532":0,"54533":0,"54534":0,"54535":0,"54536":0,"54537":1,"54538":0,"54539":1,"54540":0,"54541":0,"54542":0,"54543":0,"54544":0,"54545":0,"54546":0,"54547":0,"54548":0,"54549":0,"54550":1,"54551":0,"54552":1,"54553":1,"54554":0,"54555":0,"54556":0,"54557":0,"54558":0,"54559":0,"54560":1,"54561":0,"54562":0,"54563":0,"54564":0,"54565":0,"54566":0,"54567":0,"54568":0,"54569":1,"54570":0,"54571":0,"54572":0,"54573":0,"54574":1,"54575":0,"54576":0,"54577":0,"54578":0,"54579":0,"54580":1,"54581":0,"54582":0,"54583":0,"54584":0,"54585":1,"54586":0,"54587":0,"54588":1,"54589":0,"54590":0,"54591":0,"54592":0,"54593":1,"54594":0,"54595":0,"54596":0,"54597":0,"54598":0,"54599":0,"54600":0,"54601":0,"54602":1,"54603":0,"54604":0,"54605":1,"54606":0,"54607":1,"54608":0,"54609":0,"54610":0,"54611":0,"54612":0,"54613":0,"54614":0,"54615":0,"54616":0,"54617":0,"54618":0,"54619":0,"54620":0,"54621":0,"54622":1,"54623":1,"54624":0,"54625":0,"54626":0,"54627":0,"54628":1,"54629":1,"54630":0,"54631":0,"54632":0,"54633":1,"54634":0,"54635":0,"54636":0,"54637":1,"54638":0,"54639":0,"54640":0,"54641":0,"54642":1,"54643":0,"54644":0,"54645":0,"54646":0,"54647":0,"54648":1,"54649":1,"54650":0,"54651":0,"54652":1,"54653":0,"54654":1,"54655":1,"54656":0,"54657":0,"54658":1,"54659":0,"54660":0,"54661":0,"54662":0,"54663":1,"54664":0,"54665":0,"54666":0,"54667":1,"54668":0,"54669":0,"54670":0,"54671":0,"54672":0,"54673":0,"54674":0,"54675":0,"54676":0,"54677":0,"54678":0,"54679":0,"54680":0,"54681":1,"54682":0,"54683":0,"54684":0,"54685":0,"54686":0,"54687":0,"54688":0,"54689":1,"54690":0,"54691":0,"54692":0,"54693":0,"54694":1,"54695":0,"54696":1,"54697":1,"54698":0,"54699":0,"54700":1,"54701":1,"54702":0,"54703":0,"54704":0,"54705":1,"54706":0,"54707":1,"54708":0,"54709":1,"54710":1,"54711":0,"54712":0,"54713":0,"54714":0,"54715":0,"54716":0,"54717":1,"54718":0,"54719":0,"54720":0,"54721":0,"54722":0,"54723":0,"54724":0,"54725":0,"54726":1,"54727":0,"54728":0,"54729":1,"54730":0,"54731":0,"54732":0,"54733":0,"54734":0,"54735":1,"54736":1,"54737":0,"54738":0,"54739":0,"54740":1,"54741":1,"54742":0,"54743":0,"54744":0,"54745":0,"54746":0,"54747":0,"54748":0,"54749":0,"54750":0,"54751":0,"54752":1,"54753":0,"54754":1,"54755":0,"54756":0,"54757":0,"54758":0,"54759":0,"54760":0,"54761":1,"54762":0,"54763":0,"54764":0,"54765":0,"54766":0,"54767":0,"54768":0,"54769":0,"54770":0,"54771":1,"54772":1,"54773":0,"54774":0,"54775":0,"54776":0,"54777":0,"54778":0,"54779":1,"54780":1,"54781":0,"54782":1,"54783":0,"54784":0,"54785":0,"54786":0,"54787":1,"54788":0,"54789":0,"54790":0,"54791":1,"54792":1,"54793":0,"54794":0,"54795":1,"54796":0,"54797":0,"54798":0,"54799":1,"54800":0,"54801":0,"54802":1,"54803":0,"54804":0,"54805":0,"54806":0,"54807":0,"54808":0,"54809":0,"54810":0,"54811":0,"54812":0,"54813":0,"54814":0,"54815":0,"54816":0,"54817":0,"54818":0,"54819":1,"54820":0,"54821":0,"54822":0,"54823":0,"54824":0,"54825":0,"54826":0,"54827":1,"54828":0,"54829":0,"54830":0,"54831":0,"54832":0,"54833":0,"54834":0,"54835":0,"54836":0,"54837":0,"54838":0,"54839":1,"54840":0,"54841":0,"54842":0,"54843":0,"54844":0,"54845":1,"54846":1,"54847":0,"54848":1,"54849":0,"54850":0,"54851":0,"54852":0,"54853":0,"54854":1,"54855":0,"54856":0,"54857":0,"54858":1,"54859":1,"54860":0,"54861":1,"54862":1,"54863":0,"54864":1,"54865":0,"54866":0,"54867":1,"54868":1,"54869":1,"54870":1,"54871":0,"54872":0,"54873":1,"54874":1,"54875":0,"54876":0,"54877":1,"54878":0,"54879":1,"54880":1,"54881":0,"54882":1,"54883":0,"54884":0,"54885":0,"54886":0,"54887":0,"54888":0,"54889":0,"54890":0,"54891":0,"54892":0,"54893":0,"54894":0,"54895":0,"54896":0,"54897":0,"54898":0,"54899":1,"54900":0,"54901":0,"54902":1,"54903":1,"54904":1,"54905":0,"54906":0,"54907":0,"54908":0,"54909":0,"54910":0,"54911":0,"54912":1,"54913":0,"54914":0,"54915":0,"54916":0,"54917":0,"54918":1,"54919":0,"54920":0,"54921":1,"54922":1,"54923":1,"54924":1,"54925":0,"54926":0,"54927":0,"54928":1,"54929":0,"54930":1,"54931":1,"54932":0,"54933":0,"54934":0,"54935":0,"54936":0,"54937":0,"54938":1,"54939":1,"54940":0,"54941":0,"54942":0,"54943":0,"54944":0,"54945":1,"54946":0,"54947":1,"54948":0,"54949":0,"54950":0,"54951":0,"54952":1,"54953":0,"54954":1,"54955":0,"54956":0,"54957":1,"54958":1,"54959":0,"54960":0,"54961":0,"54962":0,"54963":1,"54964":0,"54965":0,"54966":1,"54967":0,"54968":0,"54969":0,"54970":1,"54971":0,"54972":0,"54973":0,"54974":0,"54975":1,"54976":1,"54977":0,"54978":0,"54979":0,"54980":1,"54981":0,"54982":0,"54983":0,"54984":0,"54985":0,"54986":1,"54987":0,"54988":0,"54989":1,"54990":0,"54991":0,"54992":0,"54993":0,"54994":0,"54995":0,"54996":1,"54997":0,"54998":0,"54999":0,"55000":0,"55001":0,"55002":1,"55003":0,"55004":0,"55005":0,"55006":0,"55007":0,"55008":0,"55009":0,"55010":1,"55011":0,"55012":0,"55013":0,"55014":0,"55015":1,"55016":0,"55017":0,"55018":0,"55019":0,"55020":0,"55021":0,"55022":0,"55023":0,"55024":0,"55025":1,"55026":1,"55027":0,"55028":0,"55029":1,"55030":1,"55031":1,"55032":0,"55033":1,"55034":1,"55035":0,"55036":0,"55037":0,"55038":0,"55039":0,"55040":0,"55041":0,"55042":0,"55043":0,"55044":0,"55045":1,"55046":1,"55047":0,"55048":0,"55049":1,"55050":0,"55051":0,"55052":1,"55053":0,"55054":1,"55055":0,"55056":0,"55057":0,"55058":0,"55059":1,"55060":0,"55061":0,"55062":0,"55063":0,"55064":0,"55065":0,"55066":0,"55067":0,"55068":0,"55069":1,"55070":0,"55071":0,"55072":1,"55073":1,"55074":0,"55075":1,"55076":0,"55077":0,"55078":1,"55079":0,"55080":0,"55081":0,"55082":1,"55083":0,"55084":0,"55085":1,"55086":1,"55087":0,"55088":0,"55089":1,"55090":0,"55091":0,"55092":0,"55093":0,"55094":0,"55095":1,"55096":0,"55097":0,"55098":1,"55099":0,"55100":0,"55101":0,"55102":0,"55103":0,"55104":0,"55105":0,"55106":0,"55107":1,"55108":1,"55109":1,"55110":0,"55111":0,"55112":0,"55113":0,"55114":1,"55115":0,"55116":0,"55117":1,"55118":0,"55119":0,"55120":1,"55121":0,"55122":0,"55123":0,"55124":0,"55125":0,"55126":0,"55127":0,"55128":0,"55129":1,"55130":0,"55131":1,"55132":0,"55133":0,"55134":1,"55135":1,"55136":1,"55137":0,"55138":0,"55139":1,"55140":0,"55141":0,"55142":0,"55143":0,"55144":0,"55145":0,"55146":0,"55147":1,"55148":0,"55149":1,"55150":0,"55151":0,"55152":0,"55153":1,"55154":0,"55155":0,"55156":1,"55157":0,"55158":1,"55159":0,"55160":0,"55161":0,"55162":0,"55163":1,"55164":0,"55165":0,"55166":1,"55167":0,"55168":0,"55169":0,"55170":0,"55171":0,"55172":0,"55173":0,"55174":0,"55175":1,"55176":1,"55177":0,"55178":0,"55179":0,"55180":1,"55181":0,"55182":1,"55183":0,"55184":0,"55185":0,"55186":1,"55187":0,"55188":0,"55189":1,"55190":0,"55191":0,"55192":0,"55193":1,"55194":0,"55195":0,"55196":1,"55197":0,"55198":0,"55199":1,"55200":0,"55201":0,"55202":0,"55203":0,"55204":0,"55205":0,"55206":0,"55207":0,"55208":0,"55209":0,"55210":0,"55211":0,"55212":0,"55213":0,"55214":0,"55215":0,"55216":1,"55217":0,"55218":0,"55219":1,"55220":0,"55221":1,"55222":0,"55223":0,"55224":1,"55225":0,"55226":1,"55227":0,"55228":0,"55229":0,"55230":0,"55231":0,"55232":0,"55233":0,"55234":0,"55235":0,"55236":0,"55237":0,"55238":1,"55239":0,"55240":0,"55241":0,"55242":1,"55243":0,"55244":0,"55245":0,"55246":0,"55247":0,"55248":0,"55249":0,"55250":0,"55251":0,"55252":0,"55253":0,"55254":0,"55255":0,"55256":0,"55257":1,"55258":0,"55259":1,"55260":0,"55261":0,"55262":0,"55263":0,"55264":1,"55265":0,"55266":0,"55267":0,"55268":0,"55269":0,"55270":0,"55271":1,"55272":0,"55273":0,"55274":1,"55275":1,"55276":0,"55277":0,"55278":0,"55279":0,"55280":1,"55281":0,"55282":0,"55283":0,"55284":0,"55285":1,"55286":1,"55287":0,"55288":0,"55289":0,"55290":1,"55291":1,"55292":0,"55293":0,"55294":0,"55295":0,"55296":0,"55297":1,"55298":0,"55299":1,"55300":0,"55301":1,"55302":0,"55303":0,"55304":0,"55305":0,"55306":0,"55307":0,"55308":0,"55309":0,"55310":0,"55311":0,"55312":0,"55313":0,"55314":0,"55315":0,"55316":0,"55317":1,"55318":1,"55319":0,"55320":0,"55321":0,"55322":0,"55323":1,"55324":0,"55325":0,"55326":0,"55327":1,"55328":0,"55329":0,"55330":0,"55331":0,"55332":1,"55333":0,"55334":0,"55335":0,"55336":0,"55337":1,"55338":0,"55339":1,"55340":0,"55341":0,"55342":0,"55343":1,"55344":1,"55345":0,"55346":1,"55347":1,"55348":0,"55349":0,"55350":1,"55351":0,"55352":0,"55353":0,"55354":0,"55355":0,"55356":0,"55357":0,"55358":0,"55359":0,"55360":0,"55361":0,"55362":0,"55363":0,"55364":0,"55365":0,"55366":1,"55367":0,"55368":0,"55369":0,"55370":1,"55371":1,"55372":1,"55373":0,"55374":1,"55375":0,"55376":0,"55377":1,"55378":0,"55379":0,"55380":0,"55381":0,"55382":1,"55383":0,"55384":0,"55385":0,"55386":0,"55387":0,"55388":0,"55389":0,"55390":0,"55391":1,"55392":1,"55393":1,"55394":1,"55395":1,"55396":1,"55397":0,"55398":1,"55399":1,"55400":0,"55401":0,"55402":0,"55403":1,"55404":0,"55405":0,"55406":0,"55407":0,"55408":1,"55409":0,"55410":0,"55411":1,"55412":1,"55413":0,"55414":0,"55415":0,"55416":0,"55417":0,"55418":0,"55419":0,"55420":0,"55421":0,"55422":1,"55423":0,"55424":0,"55425":0,"55426":0,"55427":0,"55428":0,"55429":1,"55430":0,"55431":0,"55432":0,"55433":1,"55434":0,"55435":0,"55436":0,"55437":0,"55438":0,"55439":0,"55440":0,"55441":1,"55442":0,"55443":1,"55444":0,"55445":0,"55446":0,"55447":1,"55448":1,"55449":0,"55450":1,"55451":0,"55452":0,"55453":0,"55454":0,"55455":0,"55456":0,"55457":0,"55458":0,"55459":0,"55460":0,"55461":0,"55462":1,"55463":1,"55464":0,"55465":0,"55466":1,"55467":0,"55468":0,"55469":0,"55470":1,"55471":0,"55472":0,"55473":1,"55474":0,"55475":0,"55476":0,"55477":0,"55478":0,"55479":0,"55480":0,"55481":0,"55482":0,"55483":0,"55484":0,"55485":0,"55486":0,"55487":0,"55488":0,"55489":0,"55490":1,"55491":0,"55492":1,"55493":0,"55494":0,"55495":0,"55496":0,"55497":0,"55498":0,"55499":1,"55500":0,"55501":0,"55502":0,"55503":0,"55504":1,"55505":0,"55506":0,"55507":1,"55508":1,"55509":0,"55510":0,"55511":0,"55512":0,"55513":1,"55514":0,"55515":0,"55516":1,"55517":0,"55518":1,"55519":0,"55520":0,"55521":1,"55522":0,"55523":0,"55524":0,"55525":0,"55526":0,"55527":0,"55528":0,"55529":1,"55530":0,"55531":0,"55532":0,"55533":0,"55534":0,"55535":0,"55536":0,"55537":1,"55538":1,"55539":1,"55540":0,"55541":0,"55542":0,"55543":0,"55544":0,"55545":1,"55546":0,"55547":0,"55548":1,"55549":0,"55550":0,"55551":0,"55552":0,"55553":0,"55554":1,"55555":1,"55556":0,"55557":0,"55558":1,"55559":0,"55560":1,"55561":0,"55562":0,"55563":0,"55564":0,"55565":0,"55566":1,"55567":0,"55568":0,"55569":0,"55570":0,"55571":0,"55572":0,"55573":0,"55574":0,"55575":0,"55576":0,"55577":1,"55578":1,"55579":0,"55580":0,"55581":1,"55582":0,"55583":1,"55584":1,"55585":0,"55586":1,"55587":0,"55588":0,"55589":0,"55590":1,"55591":1,"55592":1,"55593":0,"55594":0,"55595":1,"55596":1,"55597":0,"55598":1,"55599":0,"55600":0,"55601":1,"55602":1,"55603":0,"55604":0,"55605":0,"55606":0,"55607":1,"55608":0,"55609":0,"55610":0,"55611":1,"55612":0,"55613":1,"55614":0,"55615":1,"55616":1,"55617":0,"55618":0,"55619":0,"55620":1,"55621":0,"55622":0,"55623":0,"55624":1,"55625":0,"55626":0,"55627":0,"55628":1,"55629":0,"55630":0,"55631":0,"55632":0,"55633":0,"55634":0,"55635":0,"55636":0,"55637":0,"55638":0,"55639":1,"55640":0,"55641":0,"55642":0,"55643":0,"55644":0,"55645":0,"55646":0,"55647":1,"55648":1,"55649":1,"55650":1,"55651":1,"55652":0,"55653":1,"55654":0,"55655":0,"55656":1,"55657":0,"55658":0,"55659":0,"55660":0,"55661":0,"55662":0,"55663":0,"55664":0,"55665":1,"55666":0,"55667":0,"55668":0,"55669":0,"55670":0,"55671":1,"55672":0,"55673":0,"55674":1,"55675":0,"55676":0,"55677":0,"55678":0,"55679":1,"55680":0,"55681":0,"55682":1,"55683":0,"55684":0,"55685":0,"55686":1,"55687":1,"55688":0,"55689":0,"55690":0,"55691":0,"55692":1,"55693":0,"55694":1,"55695":0,"55696":0,"55697":0,"55698":0,"55699":0,"55700":0,"55701":1,"55702":0,"55703":0,"55704":1,"55705":0,"55706":0,"55707":0,"55708":0,"55709":0,"55710":0,"55711":0,"55712":0,"55713":0,"55714":0,"55715":0,"55716":1,"55717":0,"55718":0,"55719":1,"55720":0,"55721":0,"55722":0,"55723":0,"55724":0,"55725":0,"55726":0,"55727":0,"55728":0,"55729":0,"55730":0,"55731":1,"55732":0,"55733":1,"55734":0,"55735":0,"55736":0,"55737":0,"55738":0,"55739":0,"55740":1,"55741":0,"55742":0,"55743":0,"55744":0,"55745":0,"55746":0,"55747":0,"55748":0,"55749":0,"55750":0,"55751":0,"55752":1,"55753":0,"55754":0,"55755":0,"55756":0,"55757":1,"55758":0,"55759":1,"55760":0,"55761":0,"55762":1,"55763":0,"55764":0,"55765":0,"55766":0,"55767":0,"55768":0,"55769":0,"55770":0,"55771":0,"55772":0,"55773":0,"55774":1,"55775":0,"55776":0,"55777":0,"55778":0,"55779":0,"55780":0,"55781":0,"55782":0,"55783":1,"55784":0,"55785":0,"55786":0,"55787":0,"55788":0,"55789":1,"55790":0,"55791":0,"55792":1,"55793":0,"55794":0,"55795":0,"55796":1,"55797":0,"55798":1,"55799":1,"55800":0,"55801":0,"55802":0,"55803":1,"55804":0,"55805":1,"55806":0,"55807":0,"55808":1,"55809":0,"55810":1,"55811":1,"55812":0,"55813":0,"55814":0,"55815":0,"55816":0,"55817":0,"55818":0,"55819":0,"55820":0,"55821":0,"55822":0,"55823":0,"55824":0,"55825":0,"55826":0,"55827":0,"55828":0,"55829":0,"55830":0,"55831":0,"55832":0,"55833":0,"55834":0,"55835":1,"55836":0,"55837":0,"55838":1,"55839":0,"55840":1,"55841":0,"55842":1,"55843":0,"55844":0,"55845":0,"55846":1,"55847":1,"55848":0,"55849":0,"55850":1,"55851":0,"55852":0,"55853":0,"55854":0,"55855":0,"55856":0,"55857":0,"55858":1,"55859":0,"55860":0,"55861":0,"55862":0,"55863":0,"55864":0,"55865":0,"55866":0,"55867":0,"55868":1,"55869":0,"55870":1,"55871":0,"55872":0,"55873":0,"55874":0,"55875":0,"55876":0,"55877":0,"55878":1,"55879":1,"55880":0,"55881":0,"55882":0,"55883":1,"55884":1,"55885":0,"55886":0,"55887":0,"55888":0,"55889":0,"55890":1,"55891":0,"55892":0,"55893":1,"55894":0,"55895":1,"55896":0,"55897":0,"55898":0,"55899":1,"55900":0,"55901":0,"55902":1,"55903":1,"55904":0,"55905":0,"55906":1,"55907":0,"55908":0,"55909":0,"55910":0,"55911":0,"55912":1,"55913":1,"55914":0,"55915":0,"55916":0,"55917":1,"55918":0,"55919":0,"55920":0,"55921":1,"55922":0,"55923":0,"55924":0,"55925":0,"55926":0,"55927":0,"55928":1,"55929":1,"55930":1,"55931":0,"55932":1,"55933":0,"55934":0,"55935":0,"55936":0,"55937":0,"55938":0,"55939":0,"55940":0,"55941":1,"55942":0,"55943":0,"55944":1,"55945":0,"55946":0,"55947":0,"55948":1,"55949":1,"55950":0,"55951":0,"55952":0,"55953":0,"55954":1,"55955":0,"55956":1,"55957":0,"55958":0,"55959":0,"55960":0,"55961":0,"55962":0,"55963":0,"55964":0,"55965":0,"55966":0,"55967":0,"55968":0,"55969":0,"55970":0,"55971":0,"55972":0,"55973":1,"55974":0,"55975":0,"55976":0,"55977":0,"55978":0,"55979":0,"55980":0,"55981":0,"55982":0,"55983":0,"55984":0,"55985":0,"55986":1,"55987":0,"55988":0,"55989":1,"55990":1,"55991":1,"55992":0,"55993":0,"55994":0,"55995":0,"55996":0,"55997":0,"55998":0,"55999":0,"56000":0,"56001":0,"56002":0,"56003":0,"56004":0,"56005":1,"56006":0,"56007":0,"56008":0,"56009":0,"56010":0,"56011":0,"56012":0,"56013":0,"56014":0,"56015":1,"56016":1,"56017":0,"56018":0,"56019":0,"56020":1,"56021":0,"56022":1,"56023":0,"56024":0,"56025":1,"56026":0,"56027":0,"56028":0,"56029":0,"56030":0,"56031":0,"56032":0,"56033":0,"56034":1,"56035":0,"56036":0,"56037":1,"56038":0,"56039":0,"56040":0,"56041":0,"56042":1,"56043":0,"56044":0,"56045":0,"56046":0,"56047":0,"56048":1,"56049":0,"56050":0,"56051":0,"56052":0,"56053":0,"56054":0,"56055":0,"56056":0,"56057":1,"56058":0,"56059":0,"56060":1,"56061":1,"56062":1,"56063":1,"56064":0,"56065":0,"56066":0,"56067":0,"56068":0,"56069":1,"56070":0,"56071":0,"56072":0,"56073":1,"56074":0,"56075":0,"56076":0,"56077":1,"56078":0,"56079":0,"56080":0,"56081":0,"56082":0,"56083":0,"56084":1,"56085":0,"56086":0,"56087":0,"56088":1,"56089":0,"56090":0,"56091":0,"56092":1,"56093":0,"56094":0,"56095":0,"56096":0,"56097":0,"56098":1,"56099":1,"56100":0,"56101":1,"56102":0,"56103":0,"56104":0,"56105":1,"56106":0,"56107":0,"56108":0,"56109":1,"56110":0,"56111":0,"56112":0,"56113":0,"56114":0,"56115":1,"56116":1,"56117":1,"56118":1,"56119":1,"56120":1,"56121":0,"56122":0,"56123":0,"56124":1,"56125":0,"56126":0,"56127":0,"56128":0,"56129":0,"56130":1,"56131":1,"56132":0,"56133":0,"56134":0,"56135":0,"56136":0,"56137":0,"56138":1,"56139":1,"56140":0,"56141":0,"56142":0,"56143":0,"56144":0,"56145":1,"56146":1,"56147":1,"56148":0,"56149":0,"56150":0,"56151":0,"56152":0,"56153":0,"56154":0,"56155":0,"56156":0,"56157":0,"56158":0,"56159":1,"56160":0,"56161":1,"56162":0,"56163":1,"56164":0,"56165":1,"56166":0,"56167":0,"56168":0,"56169":0,"56170":0,"56171":1,"56172":0,"56173":1,"56174":0,"56175":1,"56176":0,"56177":0,"56178":1,"56179":0,"56180":0,"56181":0,"56182":0,"56183":0,"56184":0,"56185":0,"56186":0,"56187":0,"56188":0,"56189":0,"56190":0,"56191":0,"56192":0,"56193":0,"56194":0,"56195":0,"56196":0,"56197":1,"56198":0,"56199":0,"56200":0,"56201":0,"56202":1,"56203":0,"56204":1,"56205":1,"56206":0,"56207":0,"56208":0,"56209":1,"56210":1,"56211":0,"56212":0,"56213":0,"56214":0,"56215":0,"56216":0,"56217":0,"56218":0,"56219":0,"56220":0,"56221":0,"56222":0,"56223":0,"56224":0,"56225":0,"56226":1,"56227":0,"56228":0,"56229":0,"56230":1,"56231":0,"56232":0,"56233":0,"56234":0,"56235":0,"56236":0,"56237":0,"56238":1,"56239":0,"56240":0,"56241":1,"56242":1,"56243":1,"56244":0,"56245":0,"56246":0,"56247":1,"56248":0,"56249":1,"56250":0,"56251":0,"56252":0,"56253":0,"56254":1,"56255":0,"56256":0,"56257":0,"56258":0,"56259":0,"56260":0,"56261":0,"56262":0,"56263":0,"56264":1,"56265":0,"56266":0,"56267":0,"56268":0,"56269":1,"56270":1,"56271":0,"56272":0,"56273":0,"56274":1,"56275":1,"56276":1,"56277":1,"56278":0,"56279":1,"56280":0,"56281":1,"56282":1,"56283":1,"56284":0,"56285":1,"56286":0,"56287":0,"56288":1,"56289":0,"56290":1,"56291":0,"56292":0,"56293":0,"56294":0,"56295":0,"56296":1,"56297":0,"56298":0,"56299":0,"56300":0,"56301":0,"56302":1,"56303":0,"56304":1,"56305":0,"56306":0,"56307":1,"56308":0,"56309":0,"56310":0,"56311":0,"56312":0,"56313":0,"56314":0,"56315":0,"56316":1,"56317":0,"56318":0,"56319":0,"56320":0,"56321":0,"56322":0,"56323":1,"56324":0,"56325":0,"56326":0,"56327":0,"56328":1,"56329":0,"56330":0,"56331":0,"56332":0,"56333":0,"56334":0,"56335":0,"56336":0,"56337":0,"56338":1,"56339":0,"56340":0,"56341":0,"56342":0,"56343":0,"56344":1,"56345":0,"56346":0,"56347":0,"56348":0,"56349":1,"56350":1,"56351":0,"56352":0,"56353":0,"56354":0,"56355":1,"56356":0,"56357":1,"56358":0,"56359":0,"56360":0,"56361":0,"56362":0,"56363":0,"56364":0,"56365":1,"56366":0,"56367":0,"56368":0,"56369":0,"56370":0,"56371":0,"56372":0,"56373":0,"56374":1,"56375":0,"56376":0,"56377":0,"56378":0,"56379":1,"56380":0,"56381":0,"56382":0,"56383":1,"56384":1,"56385":1,"56386":0,"56387":1,"56388":1,"56389":0,"56390":0,"56391":0,"56392":0,"56393":1,"56394":0,"56395":0,"56396":0,"56397":0,"56398":1,"56399":1,"56400":0,"56401":0,"56402":0,"56403":1,"56404":0,"56405":0,"56406":0,"56407":0,"56408":0,"56409":0,"56410":0,"56411":0,"56412":0,"56413":0,"56414":0,"56415":1,"56416":0,"56417":0,"56418":0,"56419":1,"56420":0,"56421":0,"56422":0,"56423":0,"56424":0,"56425":0,"56426":0,"56427":0,"56428":1,"56429":0,"56430":0,"56431":0,"56432":0,"56433":0,"56434":0,"56435":0,"56436":1,"56437":0,"56438":1,"56439":0,"56440":0,"56441":0,"56442":1,"56443":0,"56444":0,"56445":0,"56446":0,"56447":0,"56448":0,"56449":0,"56450":0,"56451":0,"56452":1,"56453":1,"56454":0,"56455":0,"56456":0,"56457":0,"56458":1,"56459":0,"56460":1,"56461":0,"56462":0,"56463":0,"56464":0,"56465":0,"56466":0,"56467":0,"56468":1,"56469":0,"56470":1,"56471":1,"56472":0,"56473":0,"56474":0,"56475":0,"56476":0,"56477":0,"56478":0,"56479":0,"56480":1,"56481":0,"56482":0,"56483":0,"56484":0,"56485":1,"56486":0,"56487":1,"56488":0,"56489":0,"56490":0,"56491":0,"56492":1,"56493":0,"56494":0,"56495":0,"56496":0,"56497":0,"56498":0,"56499":0,"56500":0,"56501":0,"56502":0,"56503":0,"56504":0,"56505":0,"56506":0,"56507":0,"56508":0,"56509":0,"56510":0,"56511":0,"56512":0,"56513":1,"56514":1,"56515":1,"56516":1,"56517":1,"56518":1,"56519":0,"56520":1,"56521":0,"56522":0,"56523":0,"56524":0,"56525":0,"56526":0,"56527":0,"56528":0,"56529":0,"56530":0,"56531":0,"56532":0,"56533":1,"56534":1,"56535":0,"56536":0,"56537":0,"56538":0,"56539":0,"56540":0,"56541":0,"56542":1,"56543":0,"56544":0,"56545":0,"56546":1,"56547":1,"56548":0,"56549":1,"56550":0,"56551":0,"56552":1,"56553":0,"56554":0,"56555":1,"56556":1,"56557":1,"56558":0,"56559":1,"56560":0,"56561":0,"56562":0,"56563":0,"56564":0,"56565":0,"56566":0,"56567":0,"56568":0,"56569":0,"56570":0,"56571":0,"56572":0,"56573":0,"56574":1,"56575":0,"56576":1,"56577":1,"56578":0,"56579":1,"56580":0,"56581":0,"56582":0,"56583":0,"56584":0,"56585":0,"56586":0,"56587":0,"56588":0,"56589":0,"56590":0,"56591":0,"56592":0,"56593":0,"56594":1,"56595":0,"56596":0,"56597":1,"56598":0,"56599":0,"56600":0,"56601":0,"56602":0,"56603":1,"56604":0,"56605":0,"56606":0,"56607":0,"56608":0,"56609":1,"56610":1,"56611":0,"56612":0,"56613":1,"56614":0,"56615":0,"56616":0,"56617":0,"56618":0,"56619":0,"56620":1,"56621":0,"56622":0,"56623":0,"56624":0,"56625":1,"56626":0,"56627":1,"56628":0,"56629":0,"56630":0,"56631":0,"56632":1,"56633":0,"56634":0,"56635":0,"56636":0,"56637":0,"56638":0,"56639":0,"56640":0,"56641":0,"56642":0,"56643":0,"56644":0,"56645":1,"56646":0,"56647":1,"56648":0,"56649":1,"56650":0,"56651":0,"56652":0,"56653":0,"56654":0,"56655":0,"56656":0,"56657":0,"56658":0,"56659":0,"56660":1,"56661":0,"56662":0,"56663":1,"56664":0,"56665":0,"56666":0,"56667":1,"56668":0,"56669":0,"56670":0,"56671":0,"56672":0,"56673":0,"56674":1,"56675":1,"56676":0,"56677":1,"56678":0,"56679":1,"56680":1,"56681":0,"56682":0,"56683":0,"56684":0,"56685":1,"56686":0,"56687":0,"56688":0,"56689":0,"56690":1,"56691":0,"56692":0,"56693":1,"56694":0,"56695":0,"56696":0,"56697":1,"56698":0,"56699":0,"56700":0,"56701":0,"56702":1,"56703":1,"56704":0,"56705":0,"56706":1,"56707":0,"56708":0,"56709":0,"56710":0,"56711":0,"56712":0,"56713":1,"56714":0,"56715":1,"56716":1,"56717":0,"56718":0,"56719":0,"56720":1,"56721":1,"56722":0,"56723":1,"56724":0,"56725":0,"56726":0,"56727":0,"56728":1,"56729":0,"56730":1,"56731":0,"56732":0,"56733":0,"56734":0,"56735":1,"56736":0,"56737":0,"56738":0,"56739":0,"56740":1,"56741":0,"56742":1,"56743":0,"56744":1,"56745":0,"56746":0,"56747":1,"56748":0,"56749":0,"56750":1,"56751":0,"56752":0,"56753":0,"56754":0,"56755":0,"56756":0,"56757":0,"56758":1,"56759":0,"56760":0,"56761":0,"56762":1,"56763":0,"56764":0,"56765":0,"56766":0,"56767":0,"56768":1,"56769":1,"56770":0,"56771":0,"56772":1,"56773":0,"56774":1,"56775":0,"56776":1,"56777":0,"56778":0,"56779":0,"56780":0,"56781":1,"56782":0,"56783":1,"56784":0,"56785":0,"56786":0,"56787":0,"56788":0,"56789":0,"56790":1,"56791":0,"56792":1,"56793":1,"56794":0,"56795":0,"56796":0,"56797":0,"56798":0,"56799":1,"56800":0,"56801":1,"56802":0,"56803":0,"56804":0,"56805":0,"56806":0,"56807":0,"56808":0,"56809":0,"56810":0,"56811":0,"56812":1,"56813":1,"56814":0,"56815":1,"56816":0,"56817":0,"56818":0,"56819":0,"56820":0,"56821":0,"56822":0,"56823":0,"56824":0,"56825":0,"56826":0,"56827":1,"56828":0,"56829":0,"56830":0,"56831":0,"56832":0,"56833":0,"56834":0,"56835":1,"56836":0,"56837":0,"56838":0,"56839":0,"56840":1,"56841":0,"56842":1,"56843":0,"56844":0,"56845":0,"56846":0,"56847":0,"56848":0,"56849":0,"56850":0,"56851":0,"56852":0,"56853":0,"56854":0,"56855":0,"56856":0,"56857":0,"56858":0,"56859":0,"56860":1,"56861":0,"56862":0,"56863":0,"56864":0,"56865":0,"56866":1,"56867":0,"56868":0,"56869":1,"56870":0,"56871":1,"56872":0,"56873":0,"56874":1,"56875":0,"56876":0,"56877":1,"56878":1,"56879":0,"56880":1,"56881":0,"56882":0,"56883":0,"56884":1,"56885":0,"56886":0,"56887":0,"56888":0,"56889":0,"56890":0,"56891":0,"56892":1,"56893":0,"56894":0,"56895":0,"56896":0,"56897":0,"56898":0,"56899":0,"56900":0,"56901":0,"56902":1,"56903":0,"56904":0,"56905":1,"56906":1,"56907":1,"56908":0,"56909":0,"56910":0,"56911":1,"56912":0,"56913":0,"56914":0,"56915":0,"56916":1,"56917":1,"56918":0,"56919":0,"56920":0,"56921":0,"56922":0,"56923":0,"56924":0,"56925":0,"56926":0,"56927":0,"56928":0,"56929":0,"56930":0,"56931":1,"56932":1,"56933":1,"56934":0,"56935":0,"56936":0,"56937":0,"56938":0,"56939":0,"56940":0,"56941":0,"56942":1,"56943":1,"56944":0,"56945":1,"56946":0,"56947":0,"56948":1,"56949":1,"56950":0,"56951":0,"56952":0,"56953":0,"56954":0,"56955":1,"56956":0,"56957":0,"56958":0,"56959":0,"56960":0,"56961":0,"56962":0,"56963":0,"56964":0,"56965":0,"56966":0,"56967":0,"56968":0,"56969":0,"56970":0,"56971":1,"56972":1,"56973":0,"56974":0,"56975":1,"56976":0,"56977":0,"56978":0,"56979":0,"56980":0,"56981":0,"56982":0,"56983":0,"56984":0,"56985":0,"56986":0,"56987":1,"56988":0,"56989":0,"56990":1,"56991":0,"56992":0,"56993":0,"56994":1,"56995":0,"56996":0,"56997":0,"56998":0,"56999":0,"57000":0,"57001":0,"57002":0,"57003":0,"57004":0,"57005":0,"57006":0,"57007":0,"57008":0,"57009":0,"57010":1,"57011":0,"57012":0,"57013":0,"57014":0,"57015":0,"57016":1,"57017":0,"57018":0,"57019":0,"57020":1,"57021":0,"57022":0,"57023":0,"57024":0,"57025":0,"57026":0,"57027":0,"57028":0,"57029":0,"57030":0,"57031":0,"57032":0,"57033":0,"57034":1,"57035":1,"57036":0,"57037":1,"57038":1,"57039":0,"57040":0,"57041":0,"57042":0,"57043":1,"57044":0,"57045":0,"57046":0,"57047":0,"57048":0,"57049":0,"57050":0,"57051":0,"57052":0,"57053":0,"57054":1,"57055":1,"57056":0,"57057":1,"57058":0,"57059":1,"57060":0,"57061":0,"57062":1,"57063":1,"57064":0,"57065":0,"57066":0,"57067":1,"57068":0,"57069":0,"57070":0,"57071":0,"57072":0,"57073":1,"57074":0,"57075":1,"57076":0,"57077":1,"57078":0,"57079":0,"57080":0,"57081":0,"57082":0,"57083":1,"57084":1,"57085":1,"57086":0,"57087":0,"57088":0,"57089":0,"57090":0,"57091":1,"57092":1,"57093":0,"57094":0,"57095":0,"57096":0,"57097":0,"57098":0,"57099":0,"57100":1,"57101":0,"57102":0,"57103":1,"57104":0,"57105":0,"57106":1,"57107":1,"57108":0,"57109":1,"57110":1,"57111":0,"57112":0,"57113":1,"57114":1,"57115":0,"57116":0,"57117":0,"57118":0,"57119":1,"57120":1,"57121":1,"57122":0,"57123":1,"57124":0,"57125":0,"57126":0,"57127":0,"57128":0,"57129":0,"57130":1,"57131":0,"57132":1,"57133":1,"57134":0,"57135":0,"57136":1,"57137":0,"57138":0,"57139":1,"57140":0,"57141":0,"57142":0,"57143":0,"57144":0,"57145":0,"57146":0,"57147":0,"57148":0,"57149":1,"57150":0,"57151":0,"57152":0,"57153":1,"57154":0,"57155":0,"57156":0,"57157":0,"57158":0,"57159":0,"57160":0,"57161":0,"57162":1,"57163":0,"57164":0,"57165":0,"57166":1,"57167":0,"57168":0,"57169":1,"57170":0,"57171":1,"57172":1,"57173":0,"57174":0,"57175":0,"57176":0,"57177":0,"57178":1,"57179":0,"57180":0,"57181":0,"57182":0,"57183":0,"57184":0,"57185":0,"57186":0,"57187":0,"57188":0,"57189":0,"57190":1,"57191":0,"57192":1,"57193":1,"57194":0,"57195":1,"57196":1,"57197":1,"57198":0,"57199":0,"57200":0,"57201":1,"57202":0,"57203":1,"57204":0,"57205":1,"57206":1,"57207":0,"57208":1,"57209":0,"57210":0,"57211":0,"57212":0,"57213":0,"57214":0,"57215":0,"57216":0,"57217":0,"57218":0,"57219":0,"57220":1,"57221":0,"57222":0,"57223":0,"57224":0,"57225":0,"57226":0,"57227":0,"57228":0,"57229":0,"57230":0,"57231":0,"57232":0,"57233":0,"57234":0,"57235":0,"57236":0,"57237":1,"57238":0,"57239":1,"57240":0,"57241":1,"57242":0,"57243":1,"57244":1,"57245":0,"57246":0,"57247":0,"57248":0,"57249":0,"57250":0,"57251":0,"57252":1,"57253":0,"57254":0,"57255":1,"57256":0,"57257":0,"57258":0,"57259":0,"57260":1,"57261":0,"57262":0,"57263":0,"57264":0,"57265":1,"57266":0,"57267":0,"57268":1,"57269":0,"57270":0,"57271":0,"57272":0,"57273":0,"57274":0,"57275":0,"57276":0,"57277":0,"57278":0,"57279":0,"57280":0,"57281":1,"57282":0,"57283":0,"57284":0,"57285":0,"57286":0,"57287":0,"57288":0,"57289":0,"57290":0,"57291":0,"57292":0,"57293":0,"57294":0,"57295":0,"57296":0,"57297":0,"57298":0,"57299":0,"57300":0,"57301":0,"57302":0,"57303":0,"57304":0,"57305":0,"57306":0,"57307":0,"57308":0,"57309":0,"57310":0,"57311":0,"57312":1,"57313":0,"57314":0,"57315":0,"57316":0,"57317":0,"57318":0,"57319":0,"57320":0,"57321":0,"57322":0,"57323":0,"57324":0,"57325":0,"57326":0,"57327":0,"57328":0,"57329":1,"57330":0,"57331":1,"57332":0,"57333":0,"57334":0,"57335":0,"57336":0,"57337":0,"57338":0,"57339":0,"57340":1,"57341":0,"57342":0,"57343":1,"57344":1,"57345":1,"57346":1,"57347":0,"57348":0,"57349":0,"57350":1,"57351":1,"57352":1,"57353":0,"57354":0,"57355":0,"57356":1,"57357":0,"57358":1,"57359":0,"57360":0,"57361":0,"57362":0,"57363":0,"57364":0,"57365":0,"57366":0,"57367":0,"57368":1,"57369":0,"57370":0,"57371":0,"57372":0,"57373":0,"57374":0,"57375":0,"57376":1,"57377":1,"57378":0,"57379":0,"57380":0,"57381":0,"57382":0,"57383":0,"57384":0,"57385":0,"57386":1,"57387":0,"57388":0,"57389":0,"57390":0,"57391":0,"57392":0,"57393":0,"57394":0,"57395":0,"57396":0,"57397":0,"57398":0,"57399":0,"57400":0,"57401":0,"57402":0,"57403":1,"57404":0,"57405":0,"57406":0,"57407":0,"57408":1,"57409":1,"57410":1,"57411":1,"57412":0,"57413":0,"57414":1,"57415":0,"57416":1,"57417":0,"57418":0,"57419":0,"57420":0,"57421":0,"57422":0,"57423":1,"57424":1,"57425":0,"57426":1,"57427":0,"57428":0,"57429":0,"57430":1,"57431":1,"57432":0,"57433":1,"57434":1,"57435":1,"57436":1,"57437":0,"57438":0,"57439":0,"57440":0,"57441":0,"57442":0,"57443":0,"57444":1,"57445":0,"57446":0,"57447":0,"57448":0,"57449":1,"57450":1,"57451":0,"57452":0,"57453":0,"57454":1,"57455":0,"57456":0,"57457":0,"57458":0,"57459":0,"57460":0,"57461":0,"57462":0,"57463":0,"57464":0,"57465":1,"57466":0,"57467":0,"57468":0,"57469":0,"57470":0,"57471":0,"57472":0,"57473":0,"57474":0,"57475":0,"57476":0,"57477":0,"57478":0,"57479":0,"57480":0,"57481":0,"57482":0,"57483":1,"57484":0,"57485":0,"57486":0,"57487":0,"57488":0,"57489":1,"57490":0,"57491":0,"57492":0,"57493":1,"57494":0,"57495":1,"57496":0,"57497":1,"57498":1,"57499":0,"57500":0,"57501":0,"57502":1,"57503":0,"57504":0,"57505":0,"57506":0,"57507":1,"57508":0,"57509":1,"57510":1,"57511":1,"57512":0,"57513":0,"57514":0,"57515":1,"57516":0,"57517":0,"57518":1,"57519":0,"57520":1,"57521":0,"57522":0,"57523":0,"57524":0,"57525":1,"57526":0,"57527":1,"57528":1,"57529":0,"57530":1,"57531":1,"57532":0,"57533":0,"57534":0,"57535":0,"57536":1,"57537":0,"57538":0,"57539":1,"57540":0,"57541":0,"57542":0,"57543":1,"57544":0,"57545":0,"57546":0,"57547":0,"57548":0,"57549":0,"57550":0,"57551":0,"57552":0,"57553":1,"57554":0,"57555":0,"57556":0,"57557":0,"57558":0,"57559":0,"57560":0,"57561":1,"57562":1,"57563":0,"57564":0,"57565":0,"57566":0,"57567":0,"57568":0,"57569":0,"57570":1,"57571":0,"57572":0,"57573":0,"57574":0,"57575":1,"57576":0,"57577":0,"57578":0,"57579":0,"57580":0,"57581":1,"57582":0,"57583":0,"57584":0,"57585":0,"57586":0,"57587":0,"57588":0,"57589":1,"57590":1,"57591":0,"57592":0,"57593":1,"57594":0,"57595":0,"57596":0,"57597":0,"57598":0,"57599":0,"57600":0,"57601":0,"57602":0,"57603":0,"57604":0,"57605":0,"57606":0,"57607":0,"57608":1,"57609":0,"57610":0,"57611":0,"57612":0,"57613":1,"57614":0,"57615":0,"57616":0,"57617":0,"57618":0,"57619":1,"57620":0,"57621":1,"57622":0,"57623":0,"57624":0,"57625":1,"57626":0,"57627":0,"57628":0,"57629":0,"57630":0,"57631":0,"57632":1,"57633":0,"57634":0,"57635":0,"57636":0,"57637":0,"57638":0,"57639":0,"57640":0,"57641":0,"57642":0,"57643":1,"57644":0,"57645":0,"57646":0,"57647":1,"57648":0,"57649":1,"57650":0,"57651":1,"57652":0,"57653":0,"57654":1,"57655":0,"57656":1,"57657":0,"57658":0,"57659":0,"57660":0,"57661":0,"57662":1,"57663":0,"57664":0,"57665":1,"57666":1,"57667":0,"57668":0,"57669":1,"57670":0,"57671":0,"57672":0,"57673":1,"57674":1,"57675":1,"57676":0,"57677":1,"57678":0,"57679":0,"57680":0,"57681":1,"57682":0,"57683":0,"57684":0,"57685":0,"57686":0,"57687":0,"57688":1,"57689":0,"57690":1,"57691":0,"57692":0,"57693":0,"57694":0,"57695":0,"57696":0,"57697":0,"57698":0,"57699":1,"57700":0,"57701":0,"57702":0,"57703":0,"57704":0,"57705":1,"57706":0,"57707":1,"57708":0,"57709":0,"57710":0,"57711":0,"57712":0,"57713":1,"57714":0,"57715":0,"57716":0,"57717":0,"57718":0,"57719":0,"57720":1,"57721":0,"57722":0,"57723":0,"57724":0,"57725":0,"57726":0,"57727":0,"57728":1,"57729":0,"57730":0,"57731":1,"57732":0,"57733":0,"57734":0,"57735":0,"57736":0,"57737":0,"57738":0,"57739":0,"57740":1,"57741":1,"57742":0,"57743":0,"57744":0,"57745":0,"57746":1,"57747":0,"57748":0,"57749":0,"57750":0,"57751":0,"57752":0,"57753":0,"57754":0,"57755":0,"57756":0,"57757":0,"57758":0,"57759":0,"57760":0,"57761":1,"57762":0,"57763":0,"57764":0,"57765":0,"57766":1,"57767":0,"57768":0,"57769":1,"57770":1,"57771":0,"57772":0,"57773":0,"57774":0,"57775":0,"57776":0,"57777":0,"57778":0,"57779":1,"57780":1,"57781":0,"57782":0,"57783":0,"57784":0,"57785":0,"57786":1,"57787":0,"57788":0,"57789":0,"57790":0,"57791":0,"57792":1,"57793":0,"57794":0,"57795":0,"57796":0,"57797":0,"57798":1,"57799":0,"57800":0,"57801":0,"57802":1,"57803":0,"57804":0,"57805":0,"57806":0,"57807":0,"57808":0,"57809":0,"57810":0,"57811":0,"57812":0,"57813":0,"57814":0,"57815":0,"57816":0,"57817":0,"57818":0,"57819":0,"57820":1,"57821":0,"57822":0,"57823":0,"57824":0,"57825":1,"57826":1,"57827":1,"57828":0,"57829":0,"57830":0,"57831":0,"57832":0,"57833":0,"57834":0,"57835":0,"57836":0,"57837":0,"57838":0,"57839":0,"57840":0,"57841":1,"57842":1,"57843":0,"57844":1,"57845":0,"57846":0,"57847":1,"57848":0,"57849":0,"57850":0,"57851":0,"57852":0,"57853":1,"57854":0,"57855":0,"57856":1,"57857":0,"57858":1,"57859":0,"57860":0,"57861":0,"57862":0,"57863":0,"57864":0,"57865":0,"57866":0,"57867":0,"57868":0,"57869":0,"57870":0,"57871":0,"57872":0,"57873":1,"57874":0,"57875":1,"57876":0,"57877":0,"57878":0,"57879":1,"57880":1,"57881":0,"57882":0,"57883":1,"57884":1,"57885":0,"57886":0,"57887":1,"57888":1,"57889":0,"57890":1,"57891":1,"57892":0,"57893":0,"57894":0,"57895":0,"57896":0,"57897":1,"57898":0,"57899":0,"57900":0,"57901":0,"57902":0,"57903":0,"57904":0,"57905":0,"57906":0,"57907":0,"57908":0,"57909":0,"57910":0,"57911":0,"57912":0,"57913":0,"57914":0,"57915":0,"57916":0,"57917":1,"57918":0,"57919":0,"57920":0,"57921":0,"57922":0,"57923":0,"57924":0,"57925":0,"57926":0,"57927":0,"57928":0,"57929":0,"57930":1,"57931":0,"57932":1,"57933":0,"57934":1,"57935":0,"57936":0,"57937":0,"57938":1,"57939":1,"57940":0,"57941":0,"57942":1,"57943":0,"57944":0,"57945":0,"57946":1,"57947":1,"57948":0,"57949":1,"57950":0,"57951":0,"57952":0,"57953":0,"57954":0,"57955":0,"57956":0,"57957":1,"57958":0,"57959":1,"57960":0,"57961":0,"57962":1,"57963":0,"57964":0,"57965":0,"57966":0,"57967":0,"57968":0,"57969":1,"57970":0,"57971":1,"57972":0,"57973":0,"57974":0,"57975":0,"57976":0,"57977":0,"57978":0,"57979":0,"57980":0,"57981":0,"57982":0,"57983":1,"57984":0,"57985":0,"57986":0,"57987":0,"57988":0,"57989":1,"57990":1,"57991":1,"57992":0,"57993":0,"57994":0,"57995":0,"57996":0,"57997":0,"57998":0,"57999":0,"58000":0,"58001":0,"58002":0,"58003":0,"58004":1,"58005":0,"58006":0,"58007":1,"58008":0,"58009":0,"58010":0,"58011":1,"58012":0,"58013":0,"58014":0,"58015":1,"58016":0,"58017":0,"58018":0,"58019":0,"58020":0,"58021":0,"58022":0,"58023":1,"58024":0,"58025":0,"58026":1,"58027":0,"58028":0,"58029":0,"58030":0,"58031":0,"58032":0,"58033":1,"58034":0,"58035":0,"58036":0,"58037":0,"58038":0,"58039":0,"58040":0,"58041":0,"58042":0,"58043":0,"58044":0,"58045":0,"58046":1,"58047":0,"58048":0,"58049":0,"58050":0,"58051":0,"58052":0,"58053":0,"58054":0,"58055":0,"58056":0,"58057":1,"58058":0,"58059":0,"58060":1,"58061":0,"58062":0,"58063":0,"58064":0,"58065":1,"58066":0,"58067":0,"58068":0,"58069":1,"58070":0,"58071":0,"58072":0,"58073":0,"58074":1,"58075":0,"58076":0,"58077":1,"58078":0,"58079":0,"58080":0,"58081":0,"58082":1,"58083":1,"58084":1,"58085":0,"58086":0,"58087":0,"58088":0,"58089":1,"58090":1,"58091":1,"58092":0,"58093":0,"58094":1,"58095":0,"58096":0,"58097":0,"58098":0,"58099":0,"58100":1,"58101":0,"58102":0,"58103":1,"58104":0,"58105":0,"58106":0,"58107":0,"58108":0,"58109":0,"58110":1,"58111":0,"58112":0,"58113":0,"58114":1,"58115":1,"58116":1,"58117":1,"58118":1,"58119":0,"58120":0,"58121":1,"58122":0,"58123":0,"58124":0,"58125":1,"58126":0,"58127":1,"58128":0,"58129":1,"58130":1,"58131":0,"58132":0,"58133":0,"58134":0,"58135":0,"58136":1,"58137":0,"58138":1,"58139":0,"58140":0,"58141":0,"58142":0,"58143":0,"58144":0,"58145":1,"58146":0,"58147":0,"58148":0,"58149":1,"58150":1,"58151":0,"58152":1,"58153":0,"58154":0,"58155":0,"58156":0,"58157":1,"58158":0,"58159":1,"58160":0,"58161":1,"58162":0,"58163":0,"58164":0,"58165":1,"58166":0,"58167":0,"58168":1,"58169":1,"58170":0,"58171":1,"58172":0,"58173":0,"58174":0,"58175":0,"58176":0,"58177":1,"58178":1,"58179":0,"58180":1,"58181":0,"58182":1,"58183":0,"58184":0,"58185":0,"58186":1,"58187":0,"58188":1,"58189":0,"58190":0,"58191":0,"58192":0,"58193":0,"58194":1,"58195":0,"58196":0,"58197":0,"58198":1,"58199":1,"58200":0,"58201":0,"58202":0,"58203":0,"58204":1,"58205":0,"58206":0,"58207":1,"58208":0,"58209":1,"58210":1,"58211":0,"58212":1,"58213":0,"58214":0,"58215":1,"58216":0,"58217":0,"58218":1,"58219":0,"58220":0,"58221":0,"58222":0,"58223":1,"58224":1,"58225":0,"58226":0,"58227":0,"58228":0,"58229":0,"58230":1,"58231":1,"58232":0,"58233":0,"58234":1,"58235":1,"58236":0,"58237":1,"58238":0,"58239":0,"58240":0,"58241":0,"58242":0,"58243":0,"58244":0,"58245":1,"58246":0,"58247":1,"58248":0,"58249":1,"58250":0,"58251":1,"58252":0,"58253":0,"58254":1,"58255":1,"58256":0,"58257":0,"58258":0,"58259":0,"58260":0,"58261":1,"58262":0,"58263":0,"58264":0,"58265":0,"58266":0,"58267":0,"58268":0,"58269":0,"58270":0,"58271":0,"58272":0,"58273":0,"58274":1,"58275":0,"58276":0,"58277":0,"58278":0,"58279":0,"58280":0,"58281":0,"58282":1,"58283":0,"58284":0,"58285":1,"58286":0,"58287":0,"58288":0,"58289":0,"58290":0,"58291":0,"58292":0,"58293":0,"58294":0,"58295":0,"58296":0,"58297":0,"58298":0,"58299":1,"58300":0,"58301":0,"58302":0,"58303":1,"58304":0,"58305":1,"58306":0,"58307":0,"58308":0,"58309":0,"58310":0,"58311":0,"58312":0,"58313":0,"58314":0,"58315":0,"58316":0,"58317":0,"58318":0,"58319":0,"58320":0,"58321":1,"58322":0,"58323":0,"58324":0,"58325":1,"58326":1,"58327":1,"58328":0,"58329":0,"58330":0,"58331":0,"58332":0,"58333":0,"58334":0,"58335":0,"58336":0,"58337":0,"58338":0,"58339":0,"58340":0,"58341":0,"58342":0,"58343":0,"58344":0,"58345":0,"58346":0,"58347":0,"58348":0,"58349":0,"58350":1,"58351":1,"58352":0,"58353":0,"58354":0,"58355":0,"58356":1,"58357":0,"58358":0,"58359":1,"58360":1,"58361":1,"58362":1,"58363":1,"58364":0,"58365":1,"58366":1,"58367":0,"58368":0,"58369":0,"58370":1,"58371":0,"58372":1,"58373":0,"58374":1,"58375":1,"58376":0,"58377":0,"58378":0,"58379":0,"58380":1,"58381":1,"58382":0,"58383":0,"58384":0,"58385":0,"58386":0,"58387":0,"58388":1,"58389":0,"58390":1,"58391":0,"58392":0,"58393":0,"58394":1,"58395":0,"58396":0,"58397":0,"58398":0,"58399":0,"58400":0,"58401":0,"58402":0,"58403":0,"58404":0,"58405":0,"58406":0,"58407":1,"58408":0,"58409":1,"58410":1,"58411":0,"58412":0,"58413":0,"58414":0,"58415":0,"58416":0,"58417":1,"58418":0,"58419":0,"58420":0,"58421":0,"58422":1,"58423":0,"58424":0,"58425":0,"58426":0,"58427":0,"58428":0,"58429":1,"58430":0,"58431":0,"58432":0,"58433":0,"58434":0,"58435":0,"58436":1,"58437":0,"58438":0,"58439":0,"58440":1,"58441":0,"58442":0,"58443":1,"58444":0,"58445":1,"58446":0,"58447":0,"58448":0,"58449":0,"58450":1,"58451":0,"58452":1,"58453":1,"58454":0,"58455":0,"58456":1,"58457":1,"58458":0,"58459":0,"58460":0,"58461":0,"58462":0,"58463":0,"58464":0,"58465":0,"58466":1,"58467":1,"58468":0,"58469":0,"58470":1,"58471":0,"58472":0,"58473":1,"58474":0,"58475":0,"58476":0,"58477":1,"58478":0,"58479":0,"58480":0,"58481":1,"58482":0,"58483":1,"58484":0,"58485":0,"58486":1,"58487":0,"58488":0,"58489":0,"58490":0,"58491":0,"58492":0,"58493":0,"58494":1,"58495":1,"58496":0,"58497":1,"58498":1,"58499":0,"58500":1,"58501":1,"58502":1,"58503":0,"58504":0,"58505":0,"58506":1,"58507":1,"58508":0,"58509":0,"58510":0,"58511":0,"58512":0,"58513":0,"58514":0,"58515":0,"58516":0,"58517":0,"58518":0,"58519":0,"58520":1,"58521":0,"58522":0,"58523":0,"58524":0,"58525":0,"58526":1,"58527":0,"58528":0,"58529":0,"58530":0,"58531":1,"58532":0,"58533":1,"58534":0,"58535":0,"58536":0,"58537":0,"58538":0,"58539":0,"58540":0,"58541":0,"58542":0,"58543":0,"58544":0,"58545":0,"58546":1,"58547":0,"58548":0,"58549":0,"58550":0,"58551":1,"58552":0,"58553":0,"58554":0,"58555":1,"58556":0,"58557":0,"58558":0,"58559":0,"58560":0,"58561":1,"58562":0,"58563":0,"58564":1,"58565":0,"58566":0,"58567":0,"58568":0,"58569":0,"58570":1,"58571":0,"58572":0,"58573":0,"58574":0,"58575":0,"58576":1,"58577":0,"58578":1,"58579":0,"58580":0,"58581":1,"58582":0,"58583":0,"58584":1,"58585":0,"58586":0,"58587":0,"58588":0,"58589":0,"58590":0,"58591":0,"58592":1,"58593":0,"58594":0,"58595":0,"58596":0,"58597":0,"58598":0,"58599":0,"58600":0,"58601":0,"58602":0,"58603":0,"58604":0,"58605":0,"58606":1,"58607":1,"58608":0,"58609":0,"58610":0,"58611":0,"58612":0,"58613":0,"58614":0,"58615":0,"58616":1,"58617":0,"58618":0,"58619":0,"58620":0,"58621":1,"58622":0,"58623":0,"58624":0,"58625":0,"58626":1,"58627":0,"58628":1,"58629":1,"58630":0,"58631":1,"58632":0,"58633":0,"58634":0,"58635":0,"58636":0,"58637":0,"58638":1,"58639":0,"58640":0,"58641":0,"58642":0,"58643":0,"58644":0,"58645":0,"58646":0,"58647":1,"58648":0,"58649":0,"58650":1,"58651":0,"58652":0,"58653":0,"58654":0,"58655":0,"58656":0,"58657":0,"58658":1,"58659":1,"58660":0,"58661":1,"58662":0,"58663":1,"58664":1,"58665":0,"58666":0,"58667":0,"58668":0,"58669":0,"58670":0,"58671":0,"58672":1,"58673":0,"58674":1,"58675":0,"58676":0,"58677":1,"58678":0,"58679":1,"58680":0,"58681":0,"58682":0,"58683":1,"58684":0,"58685":0,"58686":1,"58687":0,"58688":0,"58689":0,"58690":0,"58691":0,"58692":0,"58693":0,"58694":1,"58695":1,"58696":1,"58697":0,"58698":1,"58699":0,"58700":0,"58701":1,"58702":0,"58703":1,"58704":1,"58705":0,"58706":0,"58707":1,"58708":0,"58709":0,"58710":1,"58711":0,"58712":0,"58713":0,"58714":0,"58715":0,"58716":0,"58717":1,"58718":1,"58719":1,"58720":0,"58721":0,"58722":0,"58723":0,"58724":0,"58725":0,"58726":0,"58727":0,"58728":0,"58729":0,"58730":1,"58731":0,"58732":0,"58733":0,"58734":0,"58735":1,"58736":0,"58737":0,"58738":0,"58739":0,"58740":1,"58741":0,"58742":0,"58743":0,"58744":1,"58745":0,"58746":1,"58747":0,"58748":0,"58749":1,"58750":0,"58751":1,"58752":0,"58753":0,"58754":0,"58755":0,"58756":0,"58757":0,"58758":0,"58759":0,"58760":1,"58761":0,"58762":0,"58763":1,"58764":0,"58765":0,"58766":0,"58767":0,"58768":1,"58769":0,"58770":0,"58771":0,"58772":0,"58773":0,"58774":0,"58775":0,"58776":0,"58777":0,"58778":0,"58779":0,"58780":0,"58781":0,"58782":1,"58783":0,"58784":0,"58785":1,"58786":0,"58787":0,"58788":0,"58789":1,"58790":0,"58791":1,"58792":0,"58793":0,"58794":1,"58795":0,"58796":1,"58797":0,"58798":0,"58799":1,"58800":0,"58801":1,"58802":1,"58803":0,"58804":0,"58805":1,"58806":0,"58807":0,"58808":0,"58809":0,"58810":1,"58811":0,"58812":0,"58813":0,"58814":0,"58815":0,"58816":1,"58817":0,"58818":0,"58819":1,"58820":0,"58821":0,"58822":0,"58823":0,"58824":0,"58825":0,"58826":1,"58827":0,"58828":0,"58829":0,"58830":0,"58831":0,"58832":0,"58833":1,"58834":1,"58835":0,"58836":0,"58837":0,"58838":0,"58839":0,"58840":0,"58841":0,"58842":1,"58843":0,"58844":0,"58845":0,"58846":0,"58847":0,"58848":0,"58849":1,"58850":1,"58851":0,"58852":1,"58853":0,"58854":0,"58855":0,"58856":0,"58857":0,"58858":0,"58859":1,"58860":1,"58861":0,"58862":0,"58863":0,"58864":0,"58865":0,"58866":1,"58867":0,"58868":0,"58869":0,"58870":0,"58871":0,"58872":1,"58873":1,"58874":0,"58875":1,"58876":0,"58877":0,"58878":1,"58879":0,"58880":0,"58881":0,"58882":0,"58883":0,"58884":0,"58885":1,"58886":0,"58887":0,"58888":0,"58889":0,"58890":0,"58891":0,"58892":0,"58893":0,"58894":0,"58895":0,"58896":1,"58897":0,"58898":0,"58899":0,"58900":0,"58901":0,"58902":0,"58903":0,"58904":0,"58905":1,"58906":0,"58907":1,"58908":1,"58909":0,"58910":0,"58911":0,"58912":0,"58913":0,"58914":0,"58915":0,"58916":0,"58917":0,"58918":0,"58919":0,"58920":0,"58921":0,"58922":1,"58923":1,"58924":0,"58925":0,"58926":1,"58927":0,"58928":0,"58929":0,"58930":0,"58931":1,"58932":0,"58933":0,"58934":1,"58935":1,"58936":0,"58937":0,"58938":1,"58939":0,"58940":1,"58941":0,"58942":0,"58943":0,"58944":0,"58945":0,"58946":0,"58947":0,"58948":0,"58949":0,"58950":0,"58951":0,"58952":0,"58953":0,"58954":0,"58955":0,"58956":0,"58957":0,"58958":0,"58959":1,"58960":0,"58961":0,"58962":0,"58963":0,"58964":0,"58965":1,"58966":0,"58967":1,"58968":0,"58969":0,"58970":0,"58971":0,"58972":0,"58973":1,"58974":0,"58975":0,"58976":1,"58977":0,"58978":0,"58979":0,"58980":0,"58981":0,"58982":0,"58983":0,"58984":0,"58985":0,"58986":0,"58987":0,"58988":1,"58989":0,"58990":0,"58991":1,"58992":0,"58993":0,"58994":1,"58995":0,"58996":0,"58997":1,"58998":0,"58999":1,"59000":1,"59001":0,"59002":0,"59003":1,"59004":0,"59005":1,"59006":1,"59007":0,"59008":0,"59009":0,"59010":0,"59011":0,"59012":0,"59013":0,"59014":0,"59015":0,"59016":0,"59017":0,"59018":0,"59019":1,"59020":1,"59021":0,"59022":1,"59023":1,"59024":0,"59025":0,"59026":1,"59027":1,"59028":0,"59029":1,"59030":0,"59031":0,"59032":0,"59033":1,"59034":0,"59035":0,"59036":0,"59037":0,"59038":0,"59039":0,"59040":0,"59041":0,"59042":0,"59043":1,"59044":0,"59045":0,"59046":0,"59047":1,"59048":0,"59049":1,"59050":0,"59051":0,"59052":1,"59053":0,"59054":0,"59055":0,"59056":1,"59057":0,"59058":0,"59059":1,"59060":0,"59061":0,"59062":1,"59063":0,"59064":0,"59065":0,"59066":0,"59067":0,"59068":0,"59069":0,"59070":1,"59071":0,"59072":0,"59073":0,"59074":0,"59075":0,"59076":1,"59077":0,"59078":0,"59079":0,"59080":0,"59081":0,"59082":0,"59083":0,"59084":0,"59085":1,"59086":0,"59087":0,"59088":1,"59089":0,"59090":1,"59091":0,"59092":0,"59093":1,"59094":0,"59095":1,"59096":0,"59097":0,"59098":0,"59099":0,"59100":0,"59101":0,"59102":1,"59103":1,"59104":0,"59105":0,"59106":0,"59107":1,"59108":0,"59109":0,"59110":0,"59111":0,"59112":1,"59113":0,"59114":0,"59115":0,"59116":0,"59117":0,"59118":0,"59119":0,"59120":1,"59121":0,"59122":0,"59123":0,"59124":0,"59125":0,"59126":0,"59127":0,"59128":0,"59129":0,"59130":0,"59131":0,"59132":0,"59133":0,"59134":1,"59135":1,"59136":0,"59137":0,"59138":0,"59139":0,"59140":0,"59141":0,"59142":0,"59143":1,"59144":0,"59145":0,"59146":0,"59147":1,"59148":0,"59149":1,"59150":0,"59151":0,"59152":0,"59153":1,"59154":1,"59155":0,"59156":0,"59157":0,"59158":0,"59159":0,"59160":0,"59161":0,"59162":1,"59163":0,"59164":0,"59165":0,"59166":1,"59167":0,"59168":1,"59169":0,"59170":1,"59171":0,"59172":0,"59173":0,"59174":0,"59175":0,"59176":0,"59177":0,"59178":0,"59179":1,"59180":0,"59181":1,"59182":1,"59183":0,"59184":1,"59185":0,"59186":0,"59187":0,"59188":0,"59189":0,"59190":0,"59191":0,"59192":0,"59193":0,"59194":0,"59195":0,"59196":1,"59197":1,"59198":0,"59199":0,"59200":1,"59201":0,"59202":0,"59203":0,"59204":0,"59205":1,"59206":1,"59207":0,"59208":0,"59209":1,"59210":0,"59211":1,"59212":0,"59213":0,"59214":0,"59215":0,"59216":0,"59217":0,"59218":1,"59219":0,"59220":1,"59221":1,"59222":0,"59223":1,"59224":0,"59225":0,"59226":0,"59227":0,"59228":0,"59229":0,"59230":1,"59231":1,"59232":1,"59233":1,"59234":0,"59235":0,"59236":0,"59237":0,"59238":0,"59239":0,"59240":0,"59241":0,"59242":0,"59243":0,"59244":0,"59245":0,"59246":0,"59247":0,"59248":1,"59249":1,"59250":1,"59251":0,"59252":1,"59253":0,"59254":1,"59255":0,"59256":0,"59257":0,"59258":0,"59259":0,"59260":0,"59261":0,"59262":0,"59263":1,"59264":0,"59265":1,"59266":0,"59267":1,"59268":1,"59269":0,"59270":0,"59271":1,"59272":0,"59273":1,"59274":1,"59275":0,"59276":0,"59277":0,"59278":0,"59279":0,"59280":0,"59281":1,"59282":0,"59283":0,"59284":1,"59285":1,"59286":0,"59287":0,"59288":0,"59289":0,"59290":1,"59291":0,"59292":1,"59293":0,"59294":1,"59295":0,"59296":0,"59297":0,"59298":0,"59299":0,"59300":0,"59301":1,"59302":0,"59303":0,"59304":0,"59305":0,"59306":0,"59307":0,"59308":0,"59309":0,"59310":0,"59311":0,"59312":0,"59313":0,"59314":0,"59315":0,"59316":1,"59317":0,"59318":0,"59319":0,"59320":1,"59321":0,"59322":0,"59323":0,"59324":1,"59325":0,"59326":0,"59327":1,"59328":0,"59329":0,"59330":0,"59331":1,"59332":0,"59333":0,"59334":0,"59335":0,"59336":1,"59337":1,"59338":1,"59339":0,"59340":0,"59341":0,"59342":0,"59343":0,"59344":1,"59345":0,"59346":1,"59347":0,"59348":0,"59349":0,"59350":0,"59351":0,"59352":0,"59353":0,"59354":0,"59355":0,"59356":1,"59357":0,"59358":1,"59359":0,"59360":0,"59361":0,"59362":0,"59363":1,"59364":0,"59365":0,"59366":0,"59367":0,"59368":0,"59369":1,"59370":1,"59371":0,"59372":0,"59373":0,"59374":0,"59375":0,"59376":0,"59377":0,"59378":0,"59379":0,"59380":0,"59381":0,"59382":0,"59383":1,"59384":0,"59385":0,"59386":0,"59387":0,"59388":0,"59389":0,"59390":0,"59391":0,"59392":0,"59393":0,"59394":0,"59395":0,"59396":0,"59397":1,"59398":0,"59399":0,"59400":0,"59401":1,"59402":0,"59403":0,"59404":0,"59405":0,"59406":0,"59407":1,"59408":0,"59409":0,"59410":1,"59411":0,"59412":0,"59413":0,"59414":0,"59415":1,"59416":0,"59417":0,"59418":1,"59419":0,"59420":0,"59421":0,"59422":0,"59423":0,"59424":1,"59425":0,"59426":0,"59427":0,"59428":0,"59429":0,"59430":0,"59431":0,"59432":0,"59433":0,"59434":0,"59435":1,"59436":1,"59437":0,"59438":0,"59439":0,"59440":0,"59441":0,"59442":1,"59443":1,"59444":1,"59445":0,"59446":0,"59447":0,"59448":0,"59449":0,"59450":0,"59451":0,"59452":1,"59453":1,"59454":0,"59455":0,"59456":1,"59457":1,"59458":1,"59459":1,"59460":0,"59461":0,"59462":0,"59463":0,"59464":0,"59465":0,"59466":0,"59467":0,"59468":0,"59469":0,"59470":0,"59471":0,"59472":0,"59473":0,"59474":0,"59475":1,"59476":0,"59477":0,"59478":0,"59479":0,"59480":0,"59481":1,"59482":0,"59483":0,"59484":0,"59485":0,"59486":0,"59487":0,"59488":1,"59489":0,"59490":0,"59491":1,"59492":1,"59493":0,"59494":0,"59495":0,"59496":0,"59497":0,"59498":0,"59499":0,"59500":1,"59501":0,"59502":1,"59503":1,"59504":0,"59505":0,"59506":0,"59507":0,"59508":1,"59509":1,"59510":1,"59511":0,"59512":0,"59513":0,"59514":0,"59515":0,"59516":0,"59517":0,"59518":0,"59519":1,"59520":0,"59521":0,"59522":0,"59523":1,"59524":0,"59525":0,"59526":0,"59527":0,"59528":0,"59529":1,"59530":1,"59531":0,"59532":0,"59533":0,"59534":1,"59535":0,"59536":0,"59537":1,"59538":0,"59539":1,"59540":0,"59541":0,"59542":0,"59543":0,"59544":0,"59545":0,"59546":0,"59547":0,"59548":0,"59549":1,"59550":0,"59551":0,"59552":0,"59553":0,"59554":0,"59555":0,"59556":0,"59557":0,"59558":1,"59559":0,"59560":1,"59561":0,"59562":1,"59563":0,"59564":0,"59565":0,"59566":0,"59567":0,"59568":1,"59569":1,"59570":0,"59571":1,"59572":1,"59573":0,"59574":1,"59575":0,"59576":0,"59577":1,"59578":0,"59579":0,"59580":0,"59581":0,"59582":0,"59583":1,"59584":0,"59585":0,"59586":1,"59587":0,"59588":0,"59589":0,"59590":1,"59591":0,"59592":0,"59593":1,"59594":1,"59595":0,"59596":0,"59597":1,"59598":0,"59599":0,"59600":0,"59601":0,"59602":0,"59603":0,"59604":1,"59605":1,"59606":0,"59607":0,"59608":0,"59609":0,"59610":0,"59611":1,"59612":0,"59613":1,"59614":0,"59615":1,"59616":0,"59617":0,"59618":0,"59619":0,"59620":0,"59621":1,"59622":0,"59623":0,"59624":0,"59625":0,"59626":0,"59627":0,"59628":1,"59629":0,"59630":0,"59631":0,"59632":0,"59633":0,"59634":1,"59635":1,"59636":0,"59637":0,"59638":0,"59639":0,"59640":0,"59641":0,"59642":0,"59643":0,"59644":0,"59645":0,"59646":1,"59647":0,"59648":0,"59649":1,"59650":1,"59651":0,"59652":0,"59653":1,"59654":0,"59655":1,"59656":0,"59657":0,"59658":1,"59659":0,"59660":0,"59661":0,"59662":0,"59663":0,"59664":0,"59665":1,"59666":0,"59667":0,"59668":0,"59669":1,"59670":0,"59671":0,"59672":0,"59673":1,"59674":1,"59675":0,"59676":0,"59677":1,"59678":0,"59679":0,"59680":0,"59681":1,"59682":0,"59683":0,"59684":0,"59685":0,"59686":0,"59687":1,"59688":0,"59689":1,"59690":0,"59691":0,"59692":0,"59693":0,"59694":0,"59695":0,"59696":0,"59697":1,"59698":0,"59699":0,"59700":1,"59701":0,"59702":1,"59703":0,"59704":1,"59705":0,"59706":0,"59707":0,"59708":0,"59709":0,"59710":0,"59711":0,"59712":1,"59713":0,"59714":0,"59715":0,"59716":0,"59717":0,"59718":0,"59719":0,"59720":0,"59721":1,"59722":0,"59723":0,"59724":1,"59725":0,"59726":0,"59727":0,"59728":0,"59729":0,"59730":1,"59731":0,"59732":0,"59733":0,"59734":0,"59735":0,"59736":0,"59737":0,"59738":0,"59739":1,"59740":0,"59741":0,"59742":0,"59743":0,"59744":0,"59745":1,"59746":0,"59747":0,"59748":0,"59749":1,"59750":0,"59751":0,"59752":0,"59753":0,"59754":0,"59755":0,"59756":0,"59757":0,"59758":0,"59759":0,"59760":1,"59761":0,"59762":0,"59763":0,"59764":0,"59765":1,"59766":0,"59767":0,"59768":0,"59769":0,"59770":0,"59771":1,"59772":0,"59773":1,"59774":0,"59775":0,"59776":1,"59777":0,"59778":1,"59779":1,"59780":0,"59781":0,"59782":0,"59783":0,"59784":1,"59785":0,"59786":0,"59787":0,"59788":0,"59789":1,"59790":0,"59791":0,"59792":1,"59793":0,"59794":0,"59795":0,"59796":1,"59797":0,"59798":0,"59799":0,"59800":0,"59801":0,"59802":1,"59803":0,"59804":0,"59805":0,"59806":0,"59807":0,"59808":0,"59809":1,"59810":0,"59811":0,"59812":0,"59813":0,"59814":0,"59815":0,"59816":1,"59817":0,"59818":0,"59819":0,"59820":0,"59821":1,"59822":0,"59823":0,"59824":1,"59825":1,"59826":1,"59827":0,"59828":1,"59829":0,"59830":1,"59831":0,"59832":0,"59833":0,"59834":1,"59835":0,"59836":0,"59837":0,"59838":1,"59839":1,"59840":0,"59841":1,"59842":0,"59843":0,"59844":0,"59845":0,"59846":0,"59847":0,"59848":0,"59849":0,"59850":0,"59851":1,"59852":0,"59853":0,"59854":0,"59855":0,"59856":1,"59857":0,"59858":1,"59859":0,"59860":0,"59861":0,"59862":1,"59863":0,"59864":1,"59865":0,"59866":1,"59867":1,"59868":0,"59869":0,"59870":1,"59871":0,"59872":0,"59873":0,"59874":0,"59875":0,"59876":0,"59877":0,"59878":0,"59879":0,"59880":0,"59881":0,"59882":0,"59883":1,"59884":1,"59885":0,"59886":0,"59887":1,"59888":0,"59889":0,"59890":0,"59891":0,"59892":1,"59893":1,"59894":1,"59895":0,"59896":0,"59897":1,"59898":1,"59899":0,"59900":1,"59901":0,"59902":0,"59903":1,"59904":1,"59905":1,"59906":0,"59907":1,"59908":0,"59909":0,"59910":0,"59911":1,"59912":0,"59913":0,"59914":1,"59915":1,"59916":0,"59917":0,"59918":1,"59919":0,"59920":0,"59921":0,"59922":0,"59923":1,"59924":0,"59925":0,"59926":0,"59927":0,"59928":0,"59929":0,"59930":0,"59931":0,"59932":1,"59933":0,"59934":0,"59935":0,"59936":1,"59937":0,"59938":0,"59939":1,"59940":1,"59941":0,"59942":0,"59943":0,"59944":0,"59945":0,"59946":0,"59947":1,"59948":0,"59949":1,"59950":0,"59951":0,"59952":0,"59953":0,"59954":0,"59955":0,"59956":0,"59957":0,"59958":0,"59959":0,"59960":0,"59961":1,"59962":1,"59963":0,"59964":0,"59965":1,"59966":0,"59967":0,"59968":0,"59969":0,"59970":0,"59971":0,"59972":0,"59973":0,"59974":0,"59975":0,"59976":0,"59977":0,"59978":0,"59979":1,"59980":0,"59981":0,"59982":0,"59983":0,"59984":0,"59985":0,"59986":0,"59987":0,"59988":1,"59989":0,"59990":0,"59991":0,"59992":0,"59993":0,"59994":1,"59995":0,"59996":0,"59997":0,"59998":1,"59999":0,"60000":0,"60001":1,"60002":0,"60003":0,"60004":0,"60005":0,"60006":0,"60007":0,"60008":1,"60009":0,"60010":0,"60011":0,"60012":0,"60013":1,"60014":1,"60015":0,"60016":1,"60017":1,"60018":0,"60019":1,"60020":0,"60021":0,"60022":0,"60023":1,"60024":0,"60025":0,"60026":0,"60027":0,"60028":1,"60029":0,"60030":0,"60031":0,"60032":0,"60033":0,"60034":0,"60035":0,"60036":1,"60037":0,"60038":0,"60039":0,"60040":0,"60041":0,"60042":0,"60043":0,"60044":0,"60045":0,"60046":0,"60047":0,"60048":0,"60049":0,"60050":0,"60051":0,"60052":1,"60053":0,"60054":0,"60055":1,"60056":0,"60057":0,"60058":1,"60059":0,"60060":0,"60061":0,"60062":1,"60063":0,"60064":0,"60065":0,"60066":0,"60067":0,"60068":0,"60069":1,"60070":0,"60071":0,"60072":0,"60073":0,"60074":1,"60075":0,"60076":0,"60077":1,"60078":0,"60079":0,"60080":0,"60081":0,"60082":1,"60083":1,"60084":0,"60085":0,"60086":0,"60087":0,"60088":0,"60089":0,"60090":0,"60091":1,"60092":1,"60093":0,"60094":0,"60095":0,"60096":0,"60097":0,"60098":0,"60099":0,"60100":0,"60101":0,"60102":0,"60103":1,"60104":0,"60105":0,"60106":0,"60107":0,"60108":0,"60109":0,"60110":1,"60111":1,"60112":0,"60113":0,"60114":1,"60115":0,"60116":1,"60117":0,"60118":0,"60119":0,"60120":1,"60121":0,"60122":1,"60123":0,"60124":1,"60125":1,"60126":0,"60127":1,"60128":0,"60129":0,"60130":1,"60131":1,"60132":0,"60133":0,"60134":0,"60135":0,"60136":0,"60137":0,"60138":1,"60139":0,"60140":0,"60141":0,"60142":0,"60143":0,"60144":0,"60145":0,"60146":0,"60147":0,"60148":0,"60149":0,"60150":0,"60151":0,"60152":0,"60153":0,"60154":0,"60155":0,"60156":1,"60157":0,"60158":0,"60159":0,"60160":0,"60161":0,"60162":0,"60163":0,"60164":1,"60165":0,"60166":0,"60167":0,"60168":0,"60169":0,"60170":0,"60171":0,"60172":0,"60173":0,"60174":0,"60175":0,"60176":0,"60177":1,"60178":0,"60179":0,"60180":1,"60181":0,"60182":0,"60183":1,"60184":0,"60185":0,"60186":0,"60187":0,"60188":0,"60189":1,"60190":0,"60191":0,"60192":1,"60193":0,"60194":0,"60195":0,"60196":0,"60197":0,"60198":0,"60199":0,"60200":0,"60201":0,"60202":1,"60203":0,"60204":0,"60205":0,"60206":1,"60207":0,"60208":0,"60209":0,"60210":1,"60211":1,"60212":0,"60213":0,"60214":0,"60215":1,"60216":0,"60217":0,"60218":0,"60219":0,"60220":1,"60221":0,"60222":0,"60223":0,"60224":0,"60225":0,"60226":1,"60227":1,"60228":0,"60229":0,"60230":0,"60231":0,"60232":1,"60233":0,"60234":0,"60235":0,"60236":0,"60237":1,"60238":1,"60239":0,"60240":0,"60241":0,"60242":1,"60243":1,"60244":0,"60245":1,"60246":0,"60247":0,"60248":0,"60249":0,"60250":0,"60251":0,"60252":0,"60253":0,"60254":0,"60255":1,"60256":0,"60257":0,"60258":1,"60259":0,"60260":1,"60261":0,"60262":1,"60263":0,"60264":0,"60265":0,"60266":1,"60267":0,"60268":0,"60269":1,"60270":0,"60271":0,"60272":0,"60273":0,"60274":0,"60275":0,"60276":0,"60277":0,"60278":0,"60279":0,"60280":1,"60281":0,"60282":1,"60283":0,"60284":1,"60285":0,"60286":0,"60287":0,"60288":1,"60289":0,"60290":0,"60291":0,"60292":0,"60293":0,"60294":1,"60295":0,"60296":0,"60297":0,"60298":0,"60299":0,"60300":0,"60301":0,"60302":0,"60303":0,"60304":1,"60305":0,"60306":0,"60307":0,"60308":0,"60309":1,"60310":0,"60311":0,"60312":1,"60313":1,"60314":0,"60315":0,"60316":1,"60317":0,"60318":0,"60319":0,"60320":0,"60321":0,"60322":0,"60323":1,"60324":0,"60325":1,"60326":0,"60327":1,"60328":0,"60329":1,"60330":0,"60331":0,"60332":0,"60333":0,"60334":0,"60335":1,"60336":0,"60337":0,"60338":0,"60339":1,"60340":1,"60341":0,"60342":0,"60343":1,"60344":1,"60345":1,"60346":0,"60347":0,"60348":0,"60349":0,"60350":0,"60351":0,"60352":0,"60353":1,"60354":0,"60355":0,"60356":0,"60357":0,"60358":0,"60359":0,"60360":0,"60361":0,"60362":0,"60363":0,"60364":0,"60365":0,"60366":0,"60367":0,"60368":0,"60369":0,"60370":1,"60371":1,"60372":0,"60373":0,"60374":0,"60375":0,"60376":0,"60377":1,"60378":1,"60379":0,"60380":0,"60381":0,"60382":1,"60383":0,"60384":0,"60385":1,"60386":0,"60387":0,"60388":1,"60389":0,"60390":1,"60391":0,"60392":1,"60393":0,"60394":0,"60395":0,"60396":0,"60397":0,"60398":0,"60399":0,"60400":0,"60401":0,"60402":0,"60403":0,"60404":0,"60405":1,"60406":0,"60407":0,"60408":1,"60409":0,"60410":0,"60411":0,"60412":0,"60413":1,"60414":0,"60415":0,"60416":1,"60417":0,"60418":0,"60419":0,"60420":0,"60421":0,"60422":0,"60423":1,"60424":0,"60425":0,"60426":1,"60427":0,"60428":0,"60429":1,"60430":0,"60431":0,"60432":0,"60433":0,"60434":1,"60435":1,"60436":1,"60437":1,"60438":0,"60439":0,"60440":0,"60441":0,"60442":1,"60443":0,"60444":1,"60445":0,"60446":0,"60447":1,"60448":0,"60449":0,"60450":0,"60451":0,"60452":0,"60453":0,"60454":0,"60455":0,"60456":0,"60457":0,"60458":0,"60459":0,"60460":0,"60461":1,"60462":0,"60463":0,"60464":1,"60465":0,"60466":0,"60467":0,"60468":1,"60469":0,"60470":0,"60471":0,"60472":0,"60473":1,"60474":0,"60475":1,"60476":0,"60477":1,"60478":0,"60479":0,"60480":0,"60481":0,"60482":1,"60483":1,"60484":0,"60485":1,"60486":0,"60487":1,"60488":0,"60489":0,"60490":1,"60491":0,"60492":0,"60493":1,"60494":0,"60495":0,"60496":0,"60497":0,"60498":0,"60499":0,"60500":1,"60501":0,"60502":0,"60503":0,"60504":0,"60505":0,"60506":0,"60507":0,"60508":0,"60509":0,"60510":0,"60511":1,"60512":0,"60513":0,"60514":0,"60515":0,"60516":1,"60517":0,"60518":0,"60519":0,"60520":0,"60521":1,"60522":1,"60523":0,"60524":1,"60525":0,"60526":0,"60527":0,"60528":0,"60529":1,"60530":1,"60531":0,"60532":1,"60533":0,"60534":1,"60535":0,"60536":0,"60537":0,"60538":0,"60539":0,"60540":0,"60541":0,"60542":0,"60543":0,"60544":0,"60545":0,"60546":0,"60547":0,"60548":0,"60549":1,"60550":0,"60551":0,"60552":0,"60553":0,"60554":0,"60555":0,"60556":0,"60557":0,"60558":0,"60559":0,"60560":0,"60561":0,"60562":0,"60563":0,"60564":0,"60565":1,"60566":0,"60567":1,"60568":1,"60569":0,"60570":0,"60571":0,"60572":1,"60573":0,"60574":0,"60575":0,"60576":0,"60577":0,"60578":0,"60579":1,"60580":0,"60581":0,"60582":1,"60583":0,"60584":1,"60585":0,"60586":0,"60587":1,"60588":0,"60589":1,"60590":0,"60591":0,"60592":0,"60593":0,"60594":0,"60595":0,"60596":1,"60597":0,"60598":1,"60599":0,"60600":0,"60601":0,"60602":0,"60603":1,"60604":1,"60605":1,"60606":0,"60607":1,"60608":1,"60609":1,"60610":1,"60611":0,"60612":0,"60613":0,"60614":0,"60615":0,"60616":0,"60617":0,"60618":0,"60619":0,"60620":0,"60621":0,"60622":0,"60623":0,"60624":0,"60625":0,"60626":0,"60627":0,"60628":0,"60629":0,"60630":0,"60631":0,"60632":1,"60633":0,"60634":0,"60635":0,"60636":0,"60637":0,"60638":1,"60639":0,"60640":0,"60641":0,"60642":1,"60643":0,"60644":0,"60645":0,"60646":0,"60647":1,"60648":1,"60649":0,"60650":1,"60651":1,"60652":1,"60653":0,"60654":1,"60655":0,"60656":1,"60657":0,"60658":1,"60659":0,"60660":0,"60661":0,"60662":0,"60663":0,"60664":0,"60665":0,"60666":0,"60667":0,"60668":0,"60669":0,"60670":0,"60671":0,"60672":0,"60673":0,"60674":0,"60675":1,"60676":0,"60677":0,"60678":0,"60679":0,"60680":1,"60681":0,"60682":0,"60683":1,"60684":0,"60685":0,"60686":0,"60687":0,"60688":0,"60689":0,"60690":0,"60691":0,"60692":0,"60693":1,"60694":0,"60695":0,"60696":0,"60697":0,"60698":0,"60699":1,"60700":1,"60701":0,"60702":0,"60703":1,"60704":0,"60705":0,"60706":1,"60707":1,"60708":0,"60709":0,"60710":0,"60711":0,"60712":0,"60713":0,"60714":0,"60715":1,"60716":0,"60717":0,"60718":0,"60719":0,"60720":0,"60721":0,"60722":1,"60723":1,"60724":0,"60725":1,"60726":0,"60727":0,"60728":1,"60729":1,"60730":0,"60731":1,"60732":0,"60733":1,"60734":0,"60735":0,"60736":0,"60737":0,"60738":0,"60739":0,"60740":1,"60741":1,"60742":0,"60743":0,"60744":0,"60745":0,"60746":0,"60747":0,"60748":0,"60749":0,"60750":0,"60751":0,"60752":0,"60753":0,"60754":0,"60755":0,"60756":1,"60757":0,"60758":1,"60759":0,"60760":1,"60761":1,"60762":0,"60763":0,"60764":0,"60765":0,"60766":1,"60767":0,"60768":0,"60769":0,"60770":0,"60771":0,"60772":0,"60773":0,"60774":0,"60775":0,"60776":0,"60777":0,"60778":0,"60779":0,"60780":0,"60781":0,"60782":0,"60783":1,"60784":1,"60785":1,"60786":0,"60787":1,"60788":0,"60789":0,"60790":0,"60791":0,"60792":0,"60793":0,"60794":0,"60795":0,"60796":0,"60797":0,"60798":0,"60799":0,"60800":1,"60801":1,"60802":1,"60803":0,"60804":0,"60805":1,"60806":1,"60807":1,"60808":0,"60809":0,"60810":0,"60811":0,"60812":0,"60813":0,"60814":0,"60815":0,"60816":1,"60817":1,"60818":0,"60819":0,"60820":0,"60821":0,"60822":0,"60823":0,"60824":1,"60825":1,"60826":1,"60827":0,"60828":1,"60829":0,"60830":0,"60831":0,"60832":0,"60833":0,"60834":0,"60835":0,"60836":0,"60837":0,"60838":1,"60839":0,"60840":0,"60841":0,"60842":0,"60843":0,"60844":0,"60845":0,"60846":0,"60847":0,"60848":0,"60849":1,"60850":0,"60851":0,"60852":1,"60853":0,"60854":0,"60855":1,"60856":0,"60857":0,"60858":0,"60859":1,"60860":1,"60861":0,"60862":0,"60863":0,"60864":1,"60865":0,"60866":0,"60867":1,"60868":0,"60869":0,"60870":0,"60871":0,"60872":0,"60873":0,"60874":1,"60875":0,"60876":0,"60877":0,"60878":0,"60879":0,"60880":0,"60881":0,"60882":0,"60883":0,"60884":0,"60885":0,"60886":1,"60887":1,"60888":0,"60889":0,"60890":1,"60891":0,"60892":0,"60893":1,"60894":0,"60895":0,"60896":0,"60897":0,"60898":0,"60899":0,"60900":0,"60901":0,"60902":0,"60903":0},"indivfacid_1":{"0":-1,"1":-1,"2":-1,"3":-1,"4":-1,"5":0,"6":-1,"7":-1,"8":-1,"9":-1,"10":-1,"11":-1,"12":-1,"13":-1,"14":-1,"15":4065,"16":-1,"17":-1,"18":-1,"19":4066,"20":4065,"21":0,"22":-1,"23":4067,"24":-1,"25":-1,"26":-1,"27":-1,"28":-1,"29":-1,"30":-1,"31":-1,"32":-1,"33":4064,"34":4066,"35":-1,"36":-1,"37":-1,"38":-1,"39":4065,"40":-1,"41":-1,"42":-1,"43":-1,"44":-1,"45":-1,"46":-1,"47":4067,"48":-1,"49":-1,"50":-1,"51":-1,"52":-1,"53":-1,"54":-1,"55":-1,"56":-1,"57":4064,"58":-1,"59":-1,"60":-1,"61":4064,"62":-1,"63":-1,"64":-1,"65":-1,"66":-1,"67":-1,"68":-1,"69":-1,"70":-1,"71":-1,"72":4067,"73":-1,"74":-1,"75":-1,"76":-1,"77":-1,"78":-1,"79":-1,"80":-1,"81":-1,"82":-1,"83":-1,"84":-1,"85":-1,"86":-1,"87":4064,"88":0,"89":-1,"90":4066,"91":-1,"92":-1,"93":-1,"94":4064,"95":-1,"96":-1,"97":-1,"98":-1,"99":-1,"100":-1,"101":-1,"102":-1,"103":-1,"104":-1,"105":-1,"106":-1,"107":-1,"108":-1,"109":-1,"110":-1,"111":-1,"112":-1,"113":-1,"114":-1,"115":-1,"116":0,"117":-1,"118":-1,"119":-1,"120":-1,"121":-1,"122":-1,"123":-1,"124":4067,"125":-1,"126":-1,"127":-1,"128":4068,"129":0,"130":4064,"131":4063,"132":4065,"133":-1,"134":4065,"135":-1,"136":-1,"137":-1,"138":-1,"139":-1,"140":-1,"141":4064,"142":-1,"143":-1,"144":-1,"145":-1,"146":-1,"147":-1,"148":-1,"149":4064,"150":-1,"151":-1,"152":-1,"153":-1,"154":-1,"155":-1,"156":-1,"157":-1,"158":-1,"159":-1,"160":-1,"161":-1,"162":-1,"163":-1,"164":4065,"165":4064,"166":-1,"167":-1,"168":-1,"169":-1,"170":-1,"171":-1,"172":-1,"173":0,"174":-1,"175":0,"176":-1,"177":-1,"178":4065,"179":4067,"180":-1,"181":-1,"182":-1,"183":-1,"184":4065,"185":-1,"186":-1,"187":-1,"188":4066,"189":0,"190":-1,"191":-1,"192":-1,"193":-1,"194":-1,"195":-1,"196":-1,"197":-1,"198":-1,"199":4067,"200":-1,"201":-1,"202":-1,"203":-1,"204":-1,"205":4068,"206":-1,"207":-1,"208":-1,"209":-1,"210":-1,"211":-1,"212":-1,"213":-1,"214":-1,"215":-1,"216":-1,"217":4064,"218":4065,"219":4066,"220":-1,"221":-1,"222":-1,"223":-1,"224":-1,"225":-1,"226":-1,"227":-1,"228":-1,"229":-1,"230":-1,"231":-1,"232":-1,"233":-1,"234":-1,"235":-1,"236":-1,"237":4067,"238":-1,"239":-1,"240":-1,"241":-1,"242":-1,"243":-1,"244":-1,"245":4065,"246":4066,"247":0,"248":-1,"249":-1,"250":-1,"251":-1,"252":-1,"253":-1,"254":-1,"255":-1,"256":-1,"257":-1,"258":-1,"259":-1,"260":-1,"261":-1,"262":-1,"263":-1,"264":-1,"265":-1,"266":-1,"267":4064,"268":4065,"269":-1,"270":-1,"271":-1,"272":4065,"273":-1,"274":-1,"275":-1,"276":-1,"277":4064,"278":-1,"279":-1,"280":-1,"281":-1,"282":4066,"283":-1,"284":-1,"285":-1,"286":-1,"287":-1,"288":-1,"289":-1,"290":-1,"291":-1,"292":-1,"293":-1,"294":-1,"295":-1,"296":-1,"297":-1,"298":-1,"299":-1,"300":-1,"301":-1,"302":-1,"303":-1,"304":-1,"305":-1,"306":-1,"307":0,"308":4068,"309":-1,"310":-1,"311":-1,"312":-1,"313":-1,"314":-1,"315":-1,"316":-1,"317":-1,"318":-1,"319":-1,"320":-1,"321":-1,"322":4065,"323":-1,"324":-1,"325":-1,"326":-1,"327":0,"328":-1,"329":-1,"330":-1,"331":4067,"332":4064,"333":-1,"334":4064,"335":-1,"336":-1,"337":-1,"338":-1,"339":4066,"340":-1,"341":-1,"342":4065,"343":-1,"344":-1,"345":-1,"346":-1,"347":-1,"348":-1,"349":-1,"350":-1,"351":-1,"352":-1,"353":-1,"354":-1,"355":-1,"356":-1,"357":4063,"358":-1,"359":-1,"360":-1,"361":-1,"362":-1,"363":-1,"364":-1,"365":-1,"366":-1,"367":-1,"368":-1,"369":4065,"370":-1,"371":-1,"372":-1,"373":-1,"374":4066,"375":-1,"376":-1,"377":-1,"378":-1,"379":-1,"380":-1,"381":-1,"382":-1,"383":-1,"384":4065,"385":-1,"386":-1,"387":4067,"388":-1,"389":-1,"390":-1,"391":-1,"392":4064,"393":-1,"394":-1,"395":-1,"396":-1,"397":-1,"398":-1,"399":-1,"400":-1,"401":-1,"402":-1,"403":-1,"404":-1,"405":-1,"406":4066,"407":-1,"408":-1,"409":-1,"410":-1,"411":-1,"412":-1,"413":-1,"414":-1,"415":-1,"416":4063,"417":-1,"418":-1,"419":-1,"420":-1,"421":4065,"422":-1,"423":-1,"424":-1,"425":-1,"426":-1,"427":-1,"428":-1,"429":4065,"430":-1,"431":-1,"432":-1,"433":4065,"434":-1,"435":4067,"436":-1,"437":-1,"438":-1,"439":-1,"440":-1,"441":0,"442":-1,"443":-1,"444":-1,"445":-1,"446":-1,"447":-1,"448":-1,"449":-1,"450":4065,"451":-1,"452":-1,"453":-1,"454":-1,"455":-1,"456":-1,"457":-1,"458":-1,"459":-1,"460":-1,"461":-1,"462":-1,"463":-1,"464":-1,"465":-1,"466":-1,"467":-1,"468":-1,"469":-1,"470":-1,"471":-1,"472":4066,"473":-1,"474":-1,"475":-1,"476":-1,"477":4064,"478":-1,"479":-1,"480":4066,"481":-1,"482":-1,"483":-1,"484":-1,"485":-1,"486":-1,"487":-1,"488":-1,"489":-1,"490":4063,"491":-1,"492":-1,"493":-1,"494":-1,"495":-1,"496":-1,"497":-1,"498":-1,"499":-1,"500":-1,"501":-1,"502":-1,"503":-1,"504":0,"505":4067,"506":-1,"507":-1,"508":-1,"509":-1,"510":-1,"511":-1,"512":-1,"513":4064,"514":-1,"515":-1,"516":-1,"517":-1,"518":-1,"519":4065,"520":-1,"521":-1,"522":4065,"523":-1,"524":-1,"525":-1,"526":-1,"527":-1,"528":-1,"529":-1,"530":-1,"531":4066,"532":-1,"533":-1,"534":-1,"535":4066,"536":-1,"537":-1,"538":-1,"539":-1,"540":0,"541":-1,"542":-1,"543":-1,"544":-1,"545":-1,"546":-1,"547":-1,"548":4067,"549":4067,"550":-1,"551":-1,"552":-1,"553":0,"554":-1,"555":-1,"556":-1,"557":-1,"558":-1,"559":-1,"560":-1,"561":-1,"562":-1,"563":-1,"564":-1,"565":-1,"566":-1,"567":-1,"568":-1,"569":-1,"570":-1,"571":-1,"572":-1,"573":-1,"574":-1,"575":-1,"576":4067,"577":-1,"578":-1,"579":-1,"580":-1,"581":-1,"582":4064,"583":-1,"584":-1,"585":-1,"586":-1,"587":-1,"588":-1,"589":-1,"590":-1,"591":-1,"592":-1,"593":4064,"594":4064,"595":-1,"596":4068,"597":-1,"598":4065,"599":-1,"600":-1,"601":-1,"602":-1,"603":-1,"604":-1,"605":-1,"606":4065,"607":4064,"608":-1,"609":-1,"610":-1,"611":4065,"612":-1,"613":-1,"614":-1,"615":-1,"616":-1,"617":-1,"618":-1,"619":-1,"620":-1,"621":-1,"622":-1,"623":-1,"624":-1,"625":-1,"626":-1,"627":-1,"628":-1,"629":-1,"630":-1,"631":-1,"632":-1,"633":-1,"634":-1,"635":-1,"636":4067,"637":4063,"638":-1,"639":4065,"640":-1,"641":-1,"642":-1,"643":-1,"644":-1,"645":-1,"646":-1,"647":0,"648":4067,"649":-1,"650":-1,"651":-1,"652":-1,"653":-1,"654":-1,"655":-1,"656":-1,"657":-1,"658":-1,"659":-1,"660":-1,"661":-1,"662":-1,"663":-1,"664":-1,"665":0,"666":-1,"667":-1,"668":-1,"669":-1,"670":-1,"671":-1,"672":-1,"673":-1,"674":-1,"675":4063,"676":-1,"677":4068,"678":4068,"679":-1,"680":-1,"681":-1,"682":-1,"683":-1,"684":-1,"685":-1,"686":-1,"687":-1,"688":-1,"689":-1,"690":-1,"691":-1,"692":-1,"693":-1,"694":-1,"695":-1,"696":-1,"697":-1,"698":-1,"699":-1,"700":-1,"701":-1,"702":-1,"703":-1,"704":-1,"705":-1,"706":-1,"707":-1,"708":-1,"709":-1,"710":4067,"711":-1,"712":-1,"713":-1,"714":-1,"715":-1,"716":-1,"717":-1,"718":-1,"719":-1,"720":-1,"721":0,"722":-1,"723":-1,"724":-1,"725":-1,"726":-1,"727":-1,"728":-1,"729":0,"730":-1,"731":-1,"732":-1,"733":-1,"734":-1,"735":-1,"736":4063,"737":-1,"738":-1,"739":-1,"740":-1,"741":-1,"742":-1,"743":-1,"744":4064,"745":-1,"746":-1,"747":-1,"748":-1,"749":-1,"750":4067,"751":-1,"752":-1,"753":-1,"754":-1,"755":-1,"756":-1,"757":0,"758":0,"759":-1,"760":-1,"761":4064,"762":-1,"763":-1,"764":-1,"765":-1,"766":-1,"767":-1,"768":-1,"769":0,"770":-1,"771":4065,"772":-1,"773":-1,"774":-1,"775":-1,"776":-1,"777":-1,"778":-1,"779":4065,"780":-1,"781":-1,"782":-1,"783":-1,"784":-1,"785":-1,"786":-1,"787":-1,"788":-1,"789":-1,"790":-1,"791":-1,"792":-1,"793":-1,"794":4068,"795":-1,"796":-1,"797":-1,"798":4064,"799":-1,"800":-1,"801":-1,"802":-1,"803":-1,"804":-1,"805":-1,"806":-1,"807":-1,"808":-1,"809":-1,"810":-1,"811":4065,"812":-1,"813":-1,"814":-1,"815":4065,"816":-1,"817":-1,"818":4064,"819":-1,"820":-1,"821":-1,"822":-1,"823":-1,"824":-1,"825":-1,"826":-1,"827":-1,"828":-1,"829":-1,"830":-1,"831":-1,"832":-1,"833":0,"834":4067,"835":-1,"836":-1,"837":-1,"838":-1,"839":-1,"840":-1,"841":-1,"842":4064,"843":-1,"844":-1,"845":4065,"846":-1,"847":-1,"848":-1,"849":-1,"850":-1,"851":-1,"852":-1,"853":-1,"854":-1,"855":-1,"856":-1,"857":-1,"858":-1,"859":-1,"860":-1,"861":4065,"862":-1,"863":-1,"864":-1,"865":4066,"866":-1,"867":-1,"868":-1,"869":-1,"870":-1,"871":-1,"872":4066,"873":-1,"874":-1,"875":-1,"876":-1,"877":-1,"878":-1,"879":-1,"880":4067,"881":4064,"882":-1,"883":-1,"884":-1,"885":-1,"886":4064,"887":4066,"888":-1,"889":4066,"890":4067,"891":-1,"892":-1,"893":-1,"894":-1,"895":-1,"896":4067,"897":-1,"898":4066,"899":-1,"900":-1,"901":-1,"902":-1,"903":-1,"904":-1,"905":-1,"906":-1,"907":0,"908":-1,"909":-1,"910":-1,"911":-1,"912":-1,"913":0,"914":4066,"915":-1,"916":-1,"917":-1,"918":-1,"919":4064,"920":-1,"921":-1,"922":4065,"923":-1,"924":-1,"925":0,"926":-1,"927":-1,"928":-1,"929":-1,"930":-1,"931":-1,"932":-1,"933":0,"934":4064,"935":-1,"936":-1,"937":-1,"938":-1,"939":-1,"940":-1,"941":-1,"942":-1,"943":0,"944":-1,"945":4065,"946":-1,"947":-1,"948":-1,"949":-1,"950":-1,"951":-1,"952":-1,"953":4065,"954":4065,"955":4068,"956":-1,"957":-1,"958":4064,"959":-1,"960":-1,"961":-1,"962":-1,"963":-1,"964":-1,"965":-1,"966":-1,"967":-1,"968":-1,"969":-1,"970":-1,"971":-1,"972":4067,"973":-1,"974":-1,"975":-1,"976":-1,"977":4068,"978":-1,"979":4063,"980":-1,"981":-1,"982":4067,"983":-1,"984":0,"985":-1,"986":-1,"987":-1,"988":-1,"989":-1,"990":-1,"991":4067,"992":4064,"993":-1,"994":-1,"995":-1,"996":4067,"997":-1,"998":4064,"999":4065,"1000":-1,"1001":-1,"1002":-1,"1003":-1,"1004":4064,"1005":-1,"1006":-1,"1007":-1,"1008":-1,"1009":-1,"1010":-1,"1011":-1,"1012":-1,"1013":-1,"1014":-1,"1015":-1,"1016":-1,"1017":-1,"1018":-1,"1019":-1,"1020":-1,"1021":-1,"1022":-1,"1023":-1,"1024":-1,"1025":-1,"1026":-1,"1027":4068,"1028":-1,"1029":-1,"1030":-1,"1031":-1,"1032":-1,"1033":-1,"1034":-1,"1035":-1,"1036":-1,"1037":-1,"1038":-1,"1039":-1,"1040":-1,"1041":4066,"1042":4065,"1043":-1,"1044":-1,"1045":-1,"1046":-1,"1047":-1,"1048":-1,"1049":-1,"1050":-1,"1051":0,"1052":-1,"1053":-1,"1054":-1,"1055":-1,"1056":-1,"1057":-1,"1058":-1,"1059":-1,"1060":-1,"1061":-1,"1062":-1,"1063":4065,"1064":-1,"1065":-1,"1066":-1,"1067":-1,"1068":-1,"1069":-1,"1070":-1,"1071":-1,"1072":0,"1073":-1,"1074":4064,"1075":-1,"1076":-1,"1077":-1,"1078":0,"1079":-1,"1080":-1,"1081":-1,"1082":-1,"1083":-1,"1084":-1,"1085":-1,"1086":-1,"1087":-1,"1088":-1,"1089":-1,"1090":-1,"1091":-1,"1092":-1,"1093":-1,"1094":-1,"1095":4063,"1096":-1,"1097":-1,"1098":-1,"1099":-1,"1100":-1,"1101":-1,"1102":-1,"1103":-1,"1104":4063,"1105":0,"1106":-1,"1107":4064,"1108":-1,"1109":-1,"1110":-1,"1111":-1,"1112":-1,"1113":0,"1114":-1,"1115":-1,"1116":-1,"1117":-1,"1118":-1,"1119":-1,"1120":-1,"1121":-1,"1122":-1,"1123":4066,"1124":-1,"1125":-1,"1126":-1,"1127":-1,"1128":-1,"1129":-1,"1130":-1,"1131":-1,"1132":-1,"1133":-1,"1134":-1,"1135":-1,"1136":-1,"1137":-1,"1138":-1,"1139":-1,"1140":-1,"1141":-1,"1142":-1,"1143":4065,"1144":-1,"1145":4067,"1146":-1,"1147":-1,"1148":-1,"1149":-1,"1150":-1,"1151":4064,"1152":-1,"1153":-1,"1154":-1,"1155":-1,"1156":4065,"1157":-1,"1158":-1,"1159":-1,"1160":-1,"1161":-1,"1162":4065,"1163":-1,"1164":-1,"1165":-1,"1166":4063,"1167":-1,"1168":-1,"1169":-1,"1170":-1,"1171":-1,"1172":-1,"1173":-1,"1174":-1,"1175":-1,"1176":4068,"1177":-1,"1178":-1,"1179":-1,"1180":-1,"1181":-1,"1182":-1,"1183":4064,"1184":-1,"1185":-1,"1186":-1,"1187":-1,"1188":-1,"1189":-1,"1190":-1,"1191":-1,"1192":-1,"1193":-1,"1194":-1,"1195":0,"1196":-1,"1197":-1,"1198":4066,"1199":-1,"1200":-1,"1201":-1,"1202":-1,"1203":-1,"1204":4066,"1205":-1,"1206":-1,"1207":-1,"1208":-1,"1209":4067,"1210":-1,"1211":-1,"1212":4065,"1213":-1,"1214":-1,"1215":-1,"1216":-1,"1217":4064,"1218":-1,"1219":-1,"1220":-1,"1221":-1,"1222":-1,"1223":-1,"1224":-1,"1225":-1,"1226":-1,"1227":-1,"1228":-1,"1229":-1,"1230":-1,"1231":-1,"1232":-1,"1233":-1,"1234":4066,"1235":-1,"1236":-1,"1237":-1,"1238":4064,"1239":-1,"1240":-1,"1241":-1,"1242":-1,"1243":-1,"1244":4065,"1245":-1,"1246":-1,"1247":-1,"1248":0,"1249":-1,"1250":-1,"1251":4067,"1252":-1,"1253":-1,"1254":-1,"1255":-1,"1256":-1,"1257":-1,"1258":4068,"1259":0,"1260":-1,"1261":-1,"1262":-1,"1263":-1,"1264":-1,"1265":4066,"1266":4065,"1267":-1,"1268":-1,"1269":4065,"1270":-1,"1271":-1,"1272":4066,"1273":-1,"1274":-1,"1275":-1,"1276":-1,"1277":-1,"1278":-1,"1279":-1,"1280":-1,"1281":-1,"1282":-1,"1283":-1,"1284":-1,"1285":-1,"1286":-1,"1287":-1,"1288":-1,"1289":-1,"1290":-1,"1291":-1,"1292":4068,"1293":4066,"1294":-1,"1295":-1,"1296":-1,"1297":-1,"1298":-1,"1299":-1,"1300":-1,"1301":-1,"1302":-1,"1303":-1,"1304":0,"1305":-1,"1306":-1,"1307":4064,"1308":-1,"1309":-1,"1310":-1,"1311":-1,"1312":-1,"1313":-1,"1314":-1,"1315":-1,"1316":4065,"1317":-1,"1318":-1,"1319":-1,"1320":-1,"1321":-1,"1322":0,"1323":-1,"1324":-1,"1325":-1,"1326":-1,"1327":-1,"1328":-1,"1329":-1,"1330":-1,"1331":-1,"1332":-1,"1333":4064,"1334":-1,"1335":-1,"1336":4066,"1337":-1,"1338":-1,"1339":-1,"1340":-1,"1341":4065,"1342":-1,"1343":-1,"1344":-1,"1345":-1,"1346":-1,"1347":-1,"1348":-1,"1349":0,"1350":-1,"1351":4068,"1352":4065,"1353":-1,"1354":-1,"1355":-1,"1356":-1,"1357":-1,"1358":4065,"1359":-1,"1360":-1,"1361":-1,"1362":-1,"1363":-1,"1364":4066,"1365":-1,"1366":-1,"1367":-1,"1368":-1,"1369":4065,"1370":-1,"1371":-1,"1372":-1,"1373":-1,"1374":-1,"1375":4068,"1376":-1,"1377":-1,"1378":-1,"1379":-1,"1380":-1,"1381":-1,"1382":4066,"1383":-1,"1384":-1,"1385":-1,"1386":-1,"1387":-1,"1388":-1,"1389":-1,"1390":4066,"1391":-1,"1392":-1,"1393":-1,"1394":-1,"1395":4065,"1396":-1,"1397":-1,"1398":-1,"1399":4068,"1400":-1,"1401":-1,"1402":4065,"1403":-1,"1404":4063,"1405":-1,"1406":-1,"1407":-1,"1408":-1,"1409":-1,"1410":-1,"1411":-1,"1412":-1,"1413":-1,"1414":-1,"1415":-1,"1416":-1,"1417":-1,"1418":-1,"1419":-1,"1420":-1,"1421":-1,"1422":-1,"1423":-1,"1424":-1,"1425":-1,"1426":-1,"1427":-1,"1428":-1,"1429":-1,"1430":-1,"1431":-1,"1432":-1,"1433":-1,"1434":-1,"1435":-1,"1436":-1,"1437":-1,"1438":-1,"1439":4063,"1440":-1,"1441":-1,"1442":-1,"1443":-1,"1444":-1,"1445":-1,"1446":-1,"1447":4064,"1448":-1,"1449":-1,"1450":-1,"1451":-1,"1452":-1,"1453":-1,"1454":-1,"1455":-1,"1456":-1,"1457":-1,"1458":-1,"1459":-1,"1460":-1,"1461":-1,"1462":-1,"1463":-1,"1464":-1,"1465":-1,"1466":4067,"1467":-1,"1468":-1,"1469":-1,"1470":-1,"1471":-1,"1472":-1,"1473":-1,"1474":-1,"1475":-1,"1476":-1,"1477":-1,"1478":-1,"1479":-1,"1480":-1,"1481":-1,"1482":-1,"1483":-1,"1484":-1,"1485":-1,"1486":-1,"1487":-1,"1488":-1,"1489":4066,"1490":-1,"1491":-1,"1492":-1,"1493":-1,"1494":4064,"1495":-1,"1496":-1,"1497":4065,"1498":-1,"1499":-1,"1500":-1,"1501":4068,"1502":-1,"1503":-1,"1504":-1,"1505":-1,"1506":-1,"1507":-1,"1508":-1,"1509":-1,"1510":4067,"1511":4065,"1512":-1,"1513":-1,"1514":-1,"1515":-1,"1516":-1,"1517":-1,"1518":-1,"1519":-1,"1520":-1,"1521":-1,"1522":-1,"1523":-1,"1524":0,"1525":-1,"1526":-1,"1527":-1,"1528":-1,"1529":-1,"1530":-1,"1531":4066,"1532":-1,"1533":-1,"1534":-1,"1535":0,"1536":-1,"1537":-1,"1538":4063,"1539":-1,"1540":4067,"1541":-1,"1542":4067,"1543":-1,"1544":-1,"1545":-1,"1546":0,"1547":-1,"1548":-1,"1549":-1,"1550":-1,"1551":-1,"1552":-1,"1553":4065,"1554":-1,"1555":-1,"1556":-1,"1557":-1,"1558":-1,"1559":-1,"1560":-1,"1561":-1,"1562":-1,"1563":-1,"1564":-1,"1565":-1,"1566":-1,"1567":-1,"1568":-1,"1569":-1,"1570":-1,"1571":-1,"1572":-1,"1573":-1,"1574":4066,"1575":-1,"1576":-1,"1577":-1,"1578":-1,"1579":-1,"1580":-1,"1581":-1,"1582":-1,"1583":-1,"1584":-1,"1585":4065,"1586":-1,"1587":-1,"1588":-1,"1589":-1,"1590":-1,"1591":4064,"1592":-1,"1593":-1,"1594":-1,"1595":-1,"1596":-1,"1597":-1,"1598":-1,"1599":-1,"1600":-1,"1601":-1,"1602":-1,"1603":4065,"1604":-1,"1605":-1,"1606":-1,"1607":-1,"1608":-1,"1609":-1,"1610":-1,"1611":-1,"1612":-1,"1613":-1,"1614":-1,"1615":4067,"1616":-1,"1617":-1,"1618":-1,"1619":-1,"1620":4066,"1621":-1,"1622":-1,"1623":-1,"1624":-1,"1625":4063,"1626":-1,"1627":-1,"1628":-1,"1629":-1,"1630":-1,"1631":-1,"1632":-1,"1633":-1,"1634":0,"1635":-1,"1636":0,"1637":-1,"1638":-1,"1639":-1,"1640":-1,"1641":-1,"1642":-1,"1643":-1,"1644":-1,"1645":-1,"1646":0,"1647":-1,"1648":-1,"1649":4067,"1650":-1,"1651":-1,"1652":-1,"1653":-1,"1654":-1,"1655":-1,"1656":4065,"1657":4064,"1658":0,"1659":-1,"1660":-1,"1661":-1,"1662":4063,"1663":-1,"1664":-1,"1665":-1,"1666":-1,"1667":-1,"1668":-1,"1669":-1,"1670":-1,"1671":-1,"1672":4066,"1673":-1,"1674":-1,"1675":-1,"1676":-1,"1677":-1,"1678":-1,"1679":-1,"1680":4064,"1681":-1,"1682":-1,"1683":-1,"1684":-1,"1685":-1,"1686":-1,"1687":-1,"1688":-1,"1689":-1,"1690":-1,"1691":4068,"1692":0,"1693":-1,"1694":0,"1695":-1,"1696":4067,"1697":4067,"1698":4068,"1699":-1,"1700":-1,"1701":-1,"1702":-1,"1703":-1,"1704":-1,"1705":-1,"1706":-1,"1707":0,"1708":-1,"1709":-1,"1710":-1,"1711":-1,"1712":-1,"1713":-1,"1714":-1,"1715":-1,"1716":-1,"1717":-1,"1718":-1,"1719":4066,"1720":-1,"1721":-1,"1722":-1,"1723":4068,"1724":-1,"1725":-1,"1726":-1,"1727":-1,"1728":4066,"1729":4064,"1730":-1,"1731":-1,"1732":-1,"1733":-1,"1734":-1,"1735":-1,"1736":-1,"1737":-1,"1738":-1,"1739":0,"1740":-1,"1741":-1,"1742":-1,"1743":-1,"1744":-1,"1745":-1,"1746":-1,"1747":-1,"1748":-1,"1749":-1,"1750":-1,"1751":0,"1752":-1,"1753":4064,"1754":-1,"1755":-1,"1756":-1,"1757":-1,"1758":-1,"1759":-1,"1760":-1,"1761":-1,"1762":0,"1763":-1,"1764":-1,"1765":-1,"1766":4066,"1767":-1,"1768":-1,"1769":-1,"1770":-1,"1771":-1,"1772":-1,"1773":-1,"1774":-1,"1775":-1,"1776":-1,"1777":-1,"1778":-1,"1779":-1,"1780":-1,"1781":-1,"1782":4064,"1783":-1,"1784":-1,"1785":-1,"1786":4063,"1787":-1,"1788":4066,"1789":-1,"1790":-1,"1791":-1,"1792":-1,"1793":4067,"1794":4066,"1795":-1,"1796":4068,"1797":-1,"1798":-1,"1799":-1,"1800":-1,"1801":-1,"1802":-1,"1803":-1,"1804":-1,"1805":4063,"1806":-1,"1807":-1,"1808":4066,"1809":4067,"1810":-1,"1811":-1,"1812":-1,"1813":-1,"1814":-1,"1815":-1,"1816":-1,"1817":-1,"1818":-1,"1819":4064,"1820":-1,"1821":-1,"1822":-1,"1823":-1,"1824":-1,"1825":-1,"1826":-1,"1827":-1,"1828":-1,"1829":-1,"1830":-1,"1831":-1,"1832":-1,"1833":-1,"1834":-1,"1835":-1,"1836":-1,"1837":-1,"1838":-1,"1839":4067,"1840":-1,"1841":-1,"1842":-1,"1843":-1,"1844":0,"1845":-1,"1846":-1,"1847":0,"1848":-1,"1849":-1,"1850":-1,"1851":-1,"1852":-1,"1853":-1,"1854":-1,"1855":-1,"1856":-1,"1857":-1,"1858":-1,"1859":-1,"1860":-1,"1861":-1,"1862":-1,"1863":-1,"1864":-1,"1865":-1,"1866":-1,"1867":-1,"1868":-1,"1869":4065,"1870":-1,"1871":-1,"1872":-1,"1873":-1,"1874":-1,"1875":-1,"1876":-1,"1877":-1,"1878":-1,"1879":4064,"1880":-1,"1881":0,"1882":-1,"1883":-1,"1884":-1,"1885":0,"1886":4064,"1887":-1,"1888":4066,"1889":-1,"1890":-1,"1891":-1,"1892":-1,"1893":0,"1894":0,"1895":-1,"1896":-1,"1897":4068,"1898":-1,"1899":-1,"1900":-1,"1901":0,"1902":-1,"1903":-1,"1904":-1,"1905":-1,"1906":-1,"1907":-1,"1908":4066,"1909":4068,"1910":-1,"1911":-1,"1912":-1,"1913":4064,"1914":-1,"1915":-1,"1916":-1,"1917":-1,"1918":4064,"1919":-1,"1920":-1,"1921":-1,"1922":-1,"1923":-1,"1924":-1,"1925":-1,"1926":-1,"1927":0,"1928":-1,"1929":-1,"1930":-1,"1931":-1,"1932":-1,"1933":-1,"1934":-1,"1935":-1,"1936":-1,"1937":-1,"1938":-1,"1939":-1,"1940":4066,"1941":-1,"1942":-1,"1943":-1,"1944":-1,"1945":-1,"1946":-1,"1947":-1,"1948":-1,"1949":-1,"1950":-1,"1951":-1,"1952":-1,"1953":4064,"1954":-1,"1955":-1,"1956":-1,"1957":-1,"1958":-1,"1959":-1,"1960":-1,"1961":-1,"1962":-1,"1963":-1,"1964":-1,"1965":-1,"1966":-1,"1967":-1,"1968":-1,"1969":-1,"1970":4068,"1971":-1,"1972":-1,"1973":-1,"1974":-1,"1975":-1,"1976":-1,"1977":-1,"1978":-1,"1979":-1,"1980":-1,"1981":-1,"1982":-1,"1983":-1,"1984":-1,"1985":-1,"1986":-1,"1987":4068,"1988":4067,"1989":-1,"1990":-1,"1991":4067,"1992":-1,"1993":-1,"1994":-1,"1995":-1,"1996":-1,"1997":-1,"1998":-1,"1999":-1,"2000":-1,"2001":-1,"2002":4066,"2003":-1,"2004":-1,"2005":-1,"2006":-1,"2007":-1,"2008":-1,"2009":-1,"2010":-1,"2011":-1,"2012":-1,"2013":4064,"2014":-1,"2015":-1,"2016":4065,"2017":-1,"2018":-1,"2019":-1,"2020":-1,"2021":-1,"2022":-1,"2023":4065,"2024":-1,"2025":-1,"2026":-1,"2027":-1,"2028":0,"2029":-1,"2030":-1,"2031":-1,"2032":4067,"2033":-1,"2034":-1,"2035":-1,"2036":-1,"2037":-1,"2038":-1,"2039":-1,"2040":-1,"2041":4066,"2042":-1,"2043":-1,"2044":-1,"2045":-1,"2046":4067,"2047":4066,"2048":-1,"2049":-1,"2050":-1,"2051":-1,"2052":-1,"2053":-1,"2054":-1,"2055":-1,"2056":-1,"2057":-1,"2058":-1,"2059":-1,"2060":4066,"2061":-1,"2062":-1,"2063":-1,"2064":-1,"2065":-1,"2066":-1,"2067":-1,"2068":-1,"2069":-1,"2070":-1,"2071":-1,"2072":-1,"2073":-1,"2074":-1,"2075":-1,"2076":-1,"2077":-1,"2078":-1,"2079":-1,"2080":-1,"2081":4067,"2082":-1,"2083":-1,"2084":-1,"2085":-1,"2086":-1,"2087":-1,"2088":-1,"2089":-1,"2090":-1,"2091":-1,"2092":-1,"2093":-1,"2094":-1,"2095":-1,"2096":-1,"2097":-1,"2098":-1,"2099":-1,"2100":4068,"2101":-1,"2102":-1,"2103":-1,"2104":-1,"2105":-1,"2106":-1,"2107":-1,"2108":4064,"2109":-1,"2110":0,"2111":-1,"2112":-1,"2113":-1,"2114":4067,"2115":-1,"2116":-1,"2117":4063,"2118":-1,"2119":-1,"2120":-1,"2121":4063,"2122":-1,"2123":-1,"2124":-1,"2125":-1,"2126":-1,"2127":4067,"2128":4065,"2129":-1,"2130":-1,"2131":-1,"2132":-1,"2133":-1,"2134":-1,"2135":4063,"2136":-1,"2137":-1,"2138":4065,"2139":-1,"2140":-1,"2141":-1,"2142":-1,"2143":-1,"2144":-1,"2145":-1,"2146":-1,"2147":-1,"2148":4065,"2149":-1,"2150":-1,"2151":-1,"2152":-1,"2153":-1,"2154":-1,"2155":-1,"2156":4063,"2157":-1,"2158":-1,"2159":-1,"2160":-1,"2161":-1,"2162":-1,"2163":-1,"2164":-1,"2165":-1,"2166":-1,"2167":-1,"2168":-1,"2169":-1,"2170":-1,"2171":-1,"2172":-1,"2173":-1,"2174":-1,"2175":-1,"2176":4066,"2177":4066,"2178":-1,"2179":-1,"2180":-1,"2181":-1,"2182":-1,"2183":0,"2184":-1,"2185":-1,"2186":0,"2187":4066,"2188":-1,"2189":-1,"2190":-1,"2191":-1,"2192":-1,"2193":-1,"2194":-1,"2195":-1,"2196":4064,"2197":-1,"2198":-1,"2199":-1,"2200":-1,"2201":-1,"2202":-1,"2203":-1,"2204":-1,"2205":4067,"2206":-1,"2207":-1,"2208":-1,"2209":-1,"2210":-1,"2211":-1,"2212":-1,"2213":-1,"2214":-1,"2215":-1,"2216":4064,"2217":-1,"2218":-1,"2219":-1,"2220":-1,"2221":-1,"2222":4065,"2223":4065,"2224":-1,"2225":-1,"2226":-1,"2227":-1,"2228":-1,"2229":-1,"2230":-1,"2231":-1,"2232":-1,"2233":-1,"2234":-1,"2235":-1,"2236":-1,"2237":-1,"2238":-1,"2239":-1,"2240":-1,"2241":-1,"2242":4068,"2243":-1,"2244":-1,"2245":-1,"2246":-1,"2247":-1,"2248":4067,"2249":4066,"2250":-1,"2251":-1,"2252":-1,"2253":-1,"2254":-1,"2255":-1,"2256":-1,"2257":-1,"2258":-1,"2259":-1,"2260":-1,"2261":-1,"2262":-1,"2263":-1,"2264":-1,"2265":-1,"2266":-1,"2267":-1,"2268":4067,"2269":4067,"2270":-1,"2271":-1,"2272":-1,"2273":-1,"2274":-1,"2275":-1,"2276":-1,"2277":-1,"2278":0,"2279":-1,"2280":4064,"2281":-1,"2282":-1,"2283":4064,"2284":-1,"2285":-1,"2286":-1,"2287":-1,"2288":-1,"2289":-1,"2290":-1,"2291":-1,"2292":-1,"2293":-1,"2294":-1,"2295":-1,"2296":-1,"2297":-1,"2298":-1,"2299":4066,"2300":-1,"2301":-1,"2302":-1,"2303":-1,"2304":0,"2305":-1,"2306":-1,"2307":-1,"2308":4066,"2309":4065,"2310":-1,"2311":-1,"2312":-1,"2313":-1,"2314":4066,"2315":-1,"2316":-1,"2317":-1,"2318":-1,"2319":-1,"2320":-1,"2321":-1,"2322":-1,"2323":-1,"2324":-1,"2325":-1,"2326":-1,"2327":-1,"2328":-1,"2329":-1,"2330":-1,"2331":-1,"2332":-1,"2333":-1,"2334":-1,"2335":-1,"2336":-1,"2337":4065,"2338":-1,"2339":-1,"2340":-1,"2341":-1,"2342":-1,"2343":-1,"2344":-1,"2345":-1,"2346":-1,"2347":-1,"2348":-1,"2349":-1,"2350":4067,"2351":-1,"2352":-1,"2353":-1,"2354":-1,"2355":-1,"2356":-1,"2357":-1,"2358":-1,"2359":-1,"2360":-1,"2361":-1,"2362":-1,"2363":-1,"2364":-1,"2365":-1,"2366":-1,"2367":-1,"2368":-1,"2369":4068,"2370":-1,"2371":-1,"2372":-1,"2373":-1,"2374":4065,"2375":-1,"2376":-1,"2377":-1,"2378":-1,"2379":-1,"2380":-1,"2381":-1,"2382":-1,"2383":0,"2384":-1,"2385":-1,"2386":-1,"2387":-1,"2388":-1,"2389":-1,"2390":-1,"2391":-1,"2392":-1,"2393":-1,"2394":-1,"2395":-1,"2396":-1,"2397":-1,"2398":4065,"2399":-1,"2400":-1,"2401":-1,"2402":0,"2403":-1,"2404":-1,"2405":-1,"2406":-1,"2407":-1,"2408":4068,"2409":-1,"2410":-1,"2411":-1,"2412":-1,"2413":-1,"2414":4067,"2415":-1,"2416":-1,"2417":4066,"2418":-1,"2419":4068,"2420":-1,"2421":-1,"2422":-1,"2423":-1,"2424":-1,"2425":-1,"2426":-1,"2427":-1,"2428":-1,"2429":-1,"2430":-1,"2431":-1,"2432":0,"2433":-1,"2434":0,"2435":-1,"2436":4067,"2437":-1,"2438":4065,"2439":-1,"2440":-1,"2441":-1,"2442":-1,"2443":4064,"2444":-1,"2445":-1,"2446":-1,"2447":-1,"2448":-1,"2449":-1,"2450":-1,"2451":-1,"2452":-1,"2453":-1,"2454":-1,"2455":-1,"2456":-1,"2457":-1,"2458":-1,"2459":-1,"2460":0,"2461":-1,"2462":-1,"2463":-1,"2464":-1,"2465":-1,"2466":-1,"2467":-1,"2468":-1,"2469":-1,"2470":-1,"2471":-1,"2472":4067,"2473":4063,"2474":-1,"2475":-1,"2476":-1,"2477":4065,"2478":-1,"2479":-1,"2480":-1,"2481":-1,"2482":-1,"2483":-1,"2484":-1,"2485":-1,"2486":0,"2487":-1,"2488":-1,"2489":-1,"2490":-1,"2491":-1,"2492":-1,"2493":-1,"2494":-1,"2495":4067,"2496":4067,"2497":-1,"2498":-1,"2499":-1,"2500":-1,"2501":-1,"2502":-1,"2503":-1,"2504":-1,"2505":-1,"2506":-1,"2507":-1,"2508":-1,"2509":-1,"2510":-1,"2511":4064,"2512":-1,"2513":-1,"2514":-1,"2515":-1,"2516":-1,"2517":-1,"2518":-1,"2519":-1,"2520":-1,"2521":-1,"2522":4065,"2523":-1,"2524":-1,"2525":-1,"2526":-1,"2527":-1,"2528":-1,"2529":-1,"2530":-1,"2531":-1,"2532":-1,"2533":-1,"2534":-1,"2535":0,"2536":-1,"2537":-1,"2538":-1,"2539":-1,"2540":4067,"2541":4067,"2542":-1,"2543":-1,"2544":-1,"2545":-1,"2546":-1,"2547":-1,"2548":4065,"2549":-1,"2550":-1,"2551":-1,"2552":-1,"2553":-1,"2554":0,"2555":-1,"2556":-1,"2557":-1,"2558":4064,"2559":-1,"2560":-1,"2561":-1,"2562":-1,"2563":-1,"2564":-1,"2565":-1,"2566":-1,"2567":-1,"2568":-1,"2569":-1,"2570":-1,"2571":-1,"2572":4068,"2573":-1,"2574":-1,"2575":-1,"2576":-1,"2577":4064,"2578":4068,"2579":-1,"2580":-1,"2581":-1,"2582":4067,"2583":-1,"2584":4065,"2585":-1,"2586":-1,"2587":-1,"2588":-1,"2589":-1,"2590":-1,"2591":-1,"2592":-1,"2593":-1,"2594":-1,"2595":-1,"2596":-1,"2597":-1,"2598":-1,"2599":4064,"2600":4064,"2601":-1,"2602":-1,"2603":-1,"2604":-1,"2605":-1,"2606":0,"2607":4064,"2608":-1,"2609":-1,"2610":-1,"2611":-1,"2612":-1,"2613":0,"2614":-1,"2615":-1,"2616":-1,"2617":-1,"2618":-1,"2619":-1,"2620":-1,"2621":4067,"2622":-1,"2623":-1,"2624":-1,"2625":-1,"2626":-1,"2627":4064,"2628":-1,"2629":-1,"2630":-1,"2631":-1,"2632":-1,"2633":-1,"2634":-1,"2635":-1,"2636":-1,"2637":-1,"2638":-1,"2639":-1,"2640":-1,"2641":-1,"2642":-1,"2643":-1,"2644":-1,"2645":-1,"2646":0,"2647":-1,"2648":-1,"2649":0,"2650":-1,"2651":-1,"2652":-1,"2653":-1,"2654":-1,"2655":-1,"2656":4067,"2657":4066,"2658":-1,"2659":-1,"2660":4067,"2661":-1,"2662":0,"2663":-1,"2664":4068,"2665":4067,"2666":-1,"2667":-1,"2668":-1,"2669":-1,"2670":-1,"2671":-1,"2672":4065,"2673":-1,"2674":-1,"2675":4064,"2676":-1,"2677":4066,"2678":-1,"2679":-1,"2680":-1,"2681":-1,"2682":4068,"2683":0,"2684":-1,"2685":-1,"2686":-1,"2687":-1,"2688":-1,"2689":4064,"2690":-1,"2691":-1,"2692":-1,"2693":-1,"2694":-1,"2695":-1,"2696":-1,"2697":-1,"2698":4065,"2699":-1,"2700":-1,"2701":-1,"2702":4064,"2703":-1,"2704":-1,"2705":0,"2706":-1,"2707":-1,"2708":-1,"2709":-1,"2710":-1,"2711":-1,"2712":-1,"2713":-1,"2714":-1,"2715":-1,"2716":-1,"2717":-1,"2718":-1,"2719":-1,"2720":-1,"2721":-1,"2722":-1,"2723":-1,"2724":-1,"2725":-1,"2726":-1,"2727":-1,"2728":4064,"2729":-1,"2730":4067,"2731":-1,"2732":-1,"2733":4067,"2734":-1,"2735":-1,"2736":-1,"2737":-1,"2738":-1,"2739":-1,"2740":-1,"2741":-1,"2742":-1,"2743":-1,"2744":4065,"2745":-1,"2746":4063,"2747":-1,"2748":-1,"2749":0,"2750":-1,"2751":-1,"2752":-1,"2753":-1,"2754":4068,"2755":-1,"2756":-1,"2757":-1,"2758":-1,"2759":-1,"2760":0,"2761":-1,"2762":-1,"2763":-1,"2764":-1,"2765":4066,"2766":-1,"2767":-1,"2768":-1,"2769":-1,"2770":-1,"2771":-1,"2772":-1,"2773":-1,"2774":-1,"2775":-1,"2776":-1,"2777":-1,"2778":-1,"2779":-1,"2780":-1,"2781":-1,"2782":-1,"2783":-1,"2784":-1,"2785":-1,"2786":-1,"2787":-1,"2788":0,"2789":-1,"2790":-1,"2791":-1,"2792":-1,"2793":4068,"2794":-1,"2795":4067,"2796":-1,"2797":-1,"2798":-1,"2799":-1,"2800":-1,"2801":-1,"2802":-1,"2803":-1,"2804":-1,"2805":-1,"2806":-1,"2807":4064,"2808":-1,"2809":-1,"2810":-1,"2811":-1,"2812":-1,"2813":-1,"2814":-1,"2815":4063,"2816":-1,"2817":-1,"2818":-1,"2819":-1,"2820":-1,"2821":-1,"2822":-1,"2823":4068,"2824":4067,"2825":-1,"2826":-1,"2827":-1,"2828":-1,"2829":-1,"2830":-1,"2831":4065,"2832":-1,"2833":-1,"2834":-1,"2835":-1,"2836":-1,"2837":-1,"2838":-1,"2839":-1,"2840":-1,"2841":-1,"2842":-1,"2843":-1,"2844":-1,"2845":-1,"2846":-1,"2847":-1,"2848":-1,"2849":-1,"2850":-1,"2851":-1,"2852":0,"2853":4064,"2854":-1,"2855":-1,"2856":-1,"2857":-1,"2858":-1,"2859":-1,"2860":4068,"2861":-1,"2862":-1,"2863":-1,"2864":-1,"2865":-1,"2866":-1,"2867":-1,"2868":4064,"2869":-1,"2870":-1,"2871":4068,"2872":-1,"2873":-1,"2874":-1,"2875":-1,"2876":-1,"2877":-1,"2878":-1,"2879":-1,"2880":-1,"2881":-1,"2882":-1,"2883":-1,"2884":-1,"2885":-1,"2886":-1,"2887":-1,"2888":-1,"2889":-1,"2890":-1,"2891":-1,"2892":-1,"2893":-1,"2894":-1,"2895":-1,"2896":-1,"2897":-1,"2898":-1,"2899":-1,"2900":-1,"2901":-1,"2902":-1,"2903":-1,"2904":-1,"2905":-1,"2906":-1,"2907":-1,"2908":-1,"2909":-1,"2910":-1,"2911":-1,"2912":-1,"2913":-1,"2914":-1,"2915":-1,"2916":-1,"2917":-1,"2918":-1,"2919":-1,"2920":-1,"2921":-1,"2922":-1,"2923":-1,"2924":-1,"2925":-1,"2926":-1,"2927":4067,"2928":-1,"2929":-1,"2930":-1,"2931":-1,"2932":-1,"2933":-1,"2934":-1,"2935":-1,"2936":-1,"2937":4067,"2938":-1,"2939":-1,"2940":4066,"2941":-1,"2942":-1,"2943":-1,"2944":-1,"2945":-1,"2946":-1,"2947":-1,"2948":4065,"2949":-1,"2950":-1,"2951":-1,"2952":-1,"2953":-1,"2954":-1,"2955":-1,"2956":-1,"2957":0,"2958":-1,"2959":-1,"2960":-1,"2961":-1,"2962":-1,"2963":-1,"2964":-1,"2965":-1,"2966":4067,"2967":-1,"2968":-1,"2969":4066,"2970":-1,"2971":-1,"2972":-1,"2973":-1,"2974":-1,"2975":-1,"2976":-1,"2977":-1,"2978":4065,"2979":-1,"2980":-1,"2981":-1,"2982":-1,"2983":-1,"2984":-1,"2985":-1,"2986":-1,"2987":-1,"2988":-1,"2989":-1,"2990":-1,"2991":-1,"2992":-1,"2993":-1,"2994":-1,"2995":-1,"2996":-1,"2997":4067,"2998":4068,"2999":-1,"3000":-1,"3001":-1,"3002":4067,"3003":-1,"3004":-1,"3005":-1,"3006":-1,"3007":4067,"3008":-1,"3009":-1,"3010":-1,"3011":4066,"3012":-1,"3013":-1,"3014":-1,"3015":4065,"3016":-1,"3017":-1,"3018":0,"3019":-1,"3020":-1,"3021":-1,"3022":-1,"3023":-1,"3024":-1,"3025":-1,"3026":-1,"3027":4065,"3028":-1,"3029":-1,"3030":-1,"3031":-1,"3032":-1,"3033":-1,"3034":-1,"3035":-1,"3036":-1,"3037":-1,"3038":-1,"3039":-1,"3040":-1,"3041":-1,"3042":-1,"3043":-1,"3044":-1,"3045":-1,"3046":-1,"3047":-1,"3048":-1,"3049":-1,"3050":0,"3051":-1,"3052":-1,"3053":-1,"3054":-1,"3055":-1,"3056":4064,"3057":-1,"3058":-1,"3059":-1,"3060":-1,"3061":-1,"3062":-1,"3063":0,"3064":-1,"3065":4067,"3066":-1,"3067":-1,"3068":-1,"3069":-1,"3070":-1,"3071":-1,"3072":4064,"3073":-1,"3074":-1,"3075":-1,"3076":-1,"3077":-1,"3078":-1,"3079":-1,"3080":-1,"3081":4067,"3082":-1,"3083":-1,"3084":-1,"3085":-1,"3086":-1,"3087":-1,"3088":0,"3089":-1,"3090":-1,"3091":-1,"3092":-1,"3093":-1,"3094":-1,"3095":-1,"3096":-1,"3097":-1,"3098":-1,"3099":-1,"3100":-1,"3101":4063,"3102":-1,"3103":-1,"3104":4066,"3105":-1,"3106":-1,"3107":0,"3108":-1,"3109":-1,"3110":4067,"3111":4067,"3112":-1,"3113":-1,"3114":-1,"3115":-1,"3116":4065,"3117":-1,"3118":-1,"3119":4065,"3120":-1,"3121":-1,"3122":-1,"3123":-1,"3124":-1,"3125":-1,"3126":-1,"3127":-1,"3128":-1,"3129":0,"3130":4066,"3131":-1,"3132":-1,"3133":-1,"3134":-1,"3135":-1,"3136":-1,"3137":-1,"3138":-1,"3139":-1,"3140":-1,"3141":-1,"3142":-1,"3143":-1,"3144":-1,"3145":-1,"3146":4065,"3147":-1,"3148":4064,"3149":-1,"3150":-1,"3151":-1,"3152":4065,"3153":-1,"3154":-1,"3155":4068,"3156":-1,"3157":-1,"3158":-1,"3159":4065,"3160":4068,"3161":-1,"3162":-1,"3163":-1,"3164":-1,"3165":-1,"3166":-1,"3167":-1,"3168":-1,"3169":4068,"3170":4068,"3171":-1,"3172":-1,"3173":-1,"3174":-1,"3175":-1,"3176":4067,"3177":-1,"3178":-1,"3179":-1,"3180":-1,"3181":-1,"3182":4065,"3183":-1,"3184":-1,"3185":-1,"3186":4067,"3187":4066,"3188":-1,"3189":-1,"3190":-1,"3191":-1,"3192":0,"3193":-1,"3194":-1,"3195":4063,"3196":-1,"3197":-1,"3198":-1,"3199":0,"3200":-1,"3201":4063,"3202":-1,"3203":-1,"3204":-1,"3205":-1,"3206":-1,"3207":-1,"3208":-1,"3209":-1,"3210":-1,"3211":-1,"3212":0,"3213":-1,"3214":-1,"3215":-1,"3216":-1,"3217":-1,"3218":-1,"3219":-1,"3220":-1,"3221":-1,"3222":4065,"3223":-1,"3224":-1,"3225":-1,"3226":-1,"3227":-1,"3228":-1,"3229":-1,"3230":-1,"3231":-1,"3232":-1,"3233":-1,"3234":-1,"3235":-1,"3236":-1,"3237":-1,"3238":-1,"3239":-1,"3240":-1,"3241":-1,"3242":-1,"3243":-1,"3244":-1,"3245":-1,"3246":-1,"3247":-1,"3248":-1,"3249":-1,"3250":4067,"3251":-1,"3252":-1,"3253":-1,"3254":-1,"3255":-1,"3256":0,"3257":-1,"3258":-1,"3259":-1,"3260":-1,"3261":-1,"3262":-1,"3263":-1,"3264":-1,"3265":-1,"3266":-1,"3267":-1,"3268":-1,"3269":-1,"3270":-1,"3271":-1,"3272":-1,"3273":-1,"3274":4066,"3275":4068,"3276":-1,"3277":4066,"3278":0,"3279":-1,"3280":-1,"3281":-1,"3282":-1,"3283":4067,"3284":-1,"3285":-1,"3286":-1,"3287":-1,"3288":-1,"3289":-1,"3290":-1,"3291":4064,"3292":4064,"3293":-1,"3294":-1,"3295":-1,"3296":-1,"3297":-1,"3298":-1,"3299":-1,"3300":-1,"3301":4063,"3302":-1,"3303":-1,"3304":-1,"3305":-1,"3306":-1,"3307":-1,"3308":-1,"3309":-1,"3310":-1,"3311":-1,"3312":-1,"3313":-1,"3314":-1,"3315":0,"3316":-1,"3317":0,"3318":-1,"3319":-1,"3320":-1,"3321":-1,"3322":-1,"3323":-1,"3324":0,"3325":4067,"3326":4065,"3327":0,"3328":-1,"3329":-1,"3330":-1,"3331":-1,"3332":4066,"3333":0,"3334":-1,"3335":4065,"3336":4066,"3337":-1,"3338":4065,"3339":-1,"3340":-1,"3341":-1,"3342":-1,"3343":-1,"3344":-1,"3345":-1,"3346":-1,"3347":-1,"3348":-1,"3349":-1,"3350":-1,"3351":4066,"3352":-1,"3353":-1,"3354":4065,"3355":-1,"3356":-1,"3357":-1,"3358":-1,"3359":-1,"3360":-1,"3361":-1,"3362":-1,"3363":4064,"3364":-1,"3365":-1,"3366":-1,"3367":-1,"3368":-1,"3369":-1,"3370":-1,"3371":-1,"3372":-1,"3373":4066,"3374":-1,"3375":-1,"3376":-1,"3377":-1,"3378":-1,"3379":-1,"3380":-1,"3381":-1,"3382":-1,"3383":-1,"3384":-1,"3385":-1,"3386":-1,"3387":0,"3388":-1,"3389":-1,"3390":-1,"3391":-1,"3392":-1,"3393":-1,"3394":-1,"3395":-1,"3396":4068,"3397":-1,"3398":-1,"3399":-1,"3400":-1,"3401":4064,"3402":-1,"3403":4067,"3404":-1,"3405":-1,"3406":-1,"3407":-1,"3408":-1,"3409":-1,"3410":-1,"3411":-1,"3412":-1,"3413":-1,"3414":-1,"3415":-1,"3416":-1,"3417":-1,"3418":-1,"3419":-1,"3420":-1,"3421":-1,"3422":-1,"3423":-1,"3424":-1,"3425":-1,"3426":-1,"3427":-1,"3428":-1,"3429":4067,"3430":-1,"3431":4064,"3432":4064,"3433":-1,"3434":-1,"3435":0,"3436":-1,"3437":-1,"3438":-1,"3439":-1,"3440":-1,"3441":-1,"3442":-1,"3443":4067,"3444":-1,"3445":-1,"3446":-1,"3447":4068,"3448":-1,"3449":-1,"3450":-1,"3451":-1,"3452":-1,"3453":4064,"3454":-1,"3455":-1,"3456":-1,"3457":-1,"3458":-1,"3459":-1,"3460":-1,"3461":-1,"3462":-1,"3463":-1,"3464":-1,"3465":-1,"3466":-1,"3467":-1,"3468":4067,"3469":-1,"3470":-1,"3471":-1,"3472":4063,"3473":-1,"3474":-1,"3475":-1,"3476":-1,"3477":-1,"3478":-1,"3479":-1,"3480":-1,"3481":-1,"3482":4064,"3483":-1,"3484":-1,"3485":-1,"3486":-1,"3487":-1,"3488":-1,"3489":-1,"3490":-1,"3491":-1,"3492":-1,"3493":-1,"3494":4067,"3495":-1,"3496":-1,"3497":-1,"3498":-1,"3499":-1,"3500":-1,"3501":4067,"3502":-1,"3503":-1,"3504":-1,"3505":-1,"3506":-1,"3507":-1,"3508":-1,"3509":-1,"3510":-1,"3511":-1,"3512":-1,"3513":-1,"3514":-1,"3515":4066,"3516":-1,"3517":-1,"3518":-1,"3519":-1,"3520":-1,"3521":4067,"3522":-1,"3523":-1,"3524":-1,"3525":4064,"3526":-1,"3527":-1,"3528":-1,"3529":-1,"3530":-1,"3531":-1,"3532":-1,"3533":4066,"3534":4067,"3535":-1,"3536":-1,"3537":-1,"3538":-1,"3539":-1,"3540":-1,"3541":-1,"3542":0,"3543":-1,"3544":-1,"3545":-1,"3546":4064,"3547":-1,"3548":4067,"3549":-1,"3550":-1,"3551":-1,"3552":-1,"3553":-1,"3554":-1,"3555":4066,"3556":-1,"3557":-1,"3558":4063,"3559":-1,"3560":-1,"3561":-1,"3562":-1,"3563":-1,"3564":-1,"3565":-1,"3566":-1,"3567":-1,"3568":4064,"3569":-1,"3570":-1,"3571":-1,"3572":-1,"3573":-1,"3574":4067,"3575":-1,"3576":-1,"3577":4066,"3578":-1,"3579":-1,"3580":-1,"3581":-1,"3582":-1,"3583":-1,"3584":-1,"3585":4067,"3586":-1,"3587":4065,"3588":-1,"3589":-1,"3590":-1,"3591":4066,"3592":-1,"3593":-1,"3594":-1,"3595":-1,"3596":4068,"3597":-1,"3598":-1,"3599":-1,"3600":-1,"3601":-1,"3602":-1,"3603":-1,"3604":4066,"3605":-1,"3606":-1,"3607":-1,"3608":-1,"3609":4066,"3610":-1,"3611":-1,"3612":-1,"3613":-1,"3614":-1,"3615":-1,"3616":-1,"3617":4066,"3618":-1,"3619":-1,"3620":4064,"3621":-1,"3622":-1,"3623":-1,"3624":-1,"3625":0,"3626":-1,"3627":0,"3628":-1,"3629":-1,"3630":-1,"3631":-1,"3632":-1,"3633":-1,"3634":-1,"3635":4067,"3636":-1,"3637":-1,"3638":-1,"3639":0,"3640":-1,"3641":-1,"3642":-1,"3643":-1,"3644":-1,"3645":-1,"3646":-1,"3647":-1,"3648":-1,"3649":-1,"3650":-1,"3651":-1,"3652":-1,"3653":-1,"3654":-1,"3655":-1,"3656":-1,"3657":-1,"3658":-1,"3659":-1,"3660":-1,"3661":-1,"3662":-1,"3663":-1,"3664":-1,"3665":-1,"3666":4063,"3667":-1,"3668":-1,"3669":4066,"3670":-1,"3671":4065,"3672":-1,"3673":-1,"3674":4065,"3675":-1,"3676":-1,"3677":4068,"3678":-1,"3679":-1,"3680":4065,"3681":4066,"3682":4066,"3683":-1,"3684":-1,"3685":-1,"3686":-1,"3687":-1,"3688":-1,"3689":-1,"3690":-1,"3691":-1,"3692":-1,"3693":0,"3694":-1,"3695":-1,"3696":-1,"3697":4067,"3698":-1,"3699":-1,"3700":-1,"3701":-1,"3702":-1,"3703":-1,"3704":-1,"3705":-1,"3706":-1,"3707":-1,"3708":-1,"3709":4065,"3710":-1,"3711":-1,"3712":-1,"3713":-1,"3714":-1,"3715":-1,"3716":-1,"3717":-1,"3718":-1,"3719":0,"3720":-1,"3721":-1,"3722":-1,"3723":-1,"3724":0,"3725":-1,"3726":-1,"3727":-1,"3728":4067,"3729":-1,"3730":-1,"3731":-1,"3732":-1,"3733":-1,"3734":-1,"3735":4065,"3736":-1,"3737":4066,"3738":-1,"3739":4063,"3740":-1,"3741":-1,"3742":-1,"3743":-1,"3744":-1,"3745":-1,"3746":0,"3747":-1,"3748":-1,"3749":-1,"3750":-1,"3751":-1,"3752":-1,"3753":-1,"3754":4064,"3755":4068,"3756":-1,"3757":-1,"3758":-1,"3759":4064,"3760":-1,"3761":-1,"3762":-1,"3763":4065,"3764":-1,"3765":-1,"3766":-1,"3767":-1,"3768":-1,"3769":-1,"3770":-1,"3771":-1,"3772":-1,"3773":-1,"3774":-1,"3775":-1,"3776":-1,"3777":-1,"3778":-1,"3779":4066,"3780":-1,"3781":-1,"3782":-1,"3783":-1,"3784":-1,"3785":-1,"3786":4066,"3787":-1,"3788":-1,"3789":4066,"3790":-1,"3791":-1,"3792":-1,"3793":4067,"3794":4063,"3795":-1,"3796":4066,"3797":-1,"3798":-1,"3799":-1,"3800":-1,"3801":4066,"3802":-1,"3803":-1,"3804":-1,"3805":-1,"3806":-1,"3807":-1,"3808":-1,"3809":-1,"3810":-1,"3811":-1,"3812":-1,"3813":-1,"3814":-1,"3815":-1,"3816":-1,"3817":-1,"3818":-1,"3819":-1,"3820":-1,"3821":-1,"3822":-1,"3823":-1,"3824":-1,"3825":-1,"3826":-1,"3827":-1,"3828":-1,"3829":-1,"3830":-1,"3831":-1,"3832":-1,"3833":-1,"3834":-1,"3835":4064,"3836":-1,"3837":-1,"3838":-1,"3839":4067,"3840":-1,"3841":4068,"3842":-1,"3843":-1,"3844":-1,"3845":-1,"3846":-1,"3847":-1,"3848":4064,"3849":-1,"3850":-1,"3851":-1,"3852":4064,"3853":-1,"3854":-1,"3855":-1,"3856":-1,"3857":4063,"3858":-1,"3859":-1,"3860":-1,"3861":-1,"3862":-1,"3863":-1,"3864":-1,"3865":-1,"3866":-1,"3867":-1,"3868":-1,"3869":-1,"3870":-1,"3871":-1,"3872":-1,"3873":-1,"3874":-1,"3875":-1,"3876":-1,"3877":-1,"3878":-1,"3879":-1,"3880":4063,"3881":-1,"3882":-1,"3883":-1,"3884":-1,"3885":4067,"3886":-1,"3887":-1,"3888":-1,"3889":-1,"3890":-1,"3891":-1,"3892":4063,"3893":-1,"3894":-1,"3895":-1,"3896":-1,"3897":-1,"3898":-1,"3899":-1,"3900":-1,"3901":-1,"3902":-1,"3903":-1,"3904":-1,"3905":-1,"3906":-1,"3907":-1,"3908":-1,"3909":-1,"3910":-1,"3911":-1,"3912":4065,"3913":-1,"3914":-1,"3915":-1,"3916":-1,"3917":-1,"3918":-1,"3919":-1,"3920":-1,"3921":4065,"3922":-1,"3923":0,"3924":0,"3925":-1,"3926":-1,"3927":4064,"3928":-1,"3929":-1,"3930":-1,"3931":-1,"3932":4065,"3933":-1,"3934":-1,"3935":-1,"3936":-1,"3937":-1,"3938":-1,"3939":-1,"3940":4065,"3941":-1,"3942":-1,"3943":-1,"3944":-1,"3945":-1,"3946":-1,"3947":-1,"3948":-1,"3949":-1,"3950":-1,"3951":-1,"3952":-1,"3953":4065,"3954":-1,"3955":-1,"3956":-1,"3957":-1,"3958":-1,"3959":-1,"3960":-1,"3961":-1,"3962":-1,"3963":-1,"3964":-1,"3965":-1,"3966":-1,"3967":-1,"3968":-1,"3969":-1,"3970":-1,"3971":-1,"3972":-1,"3973":-1,"3974":-1,"3975":-1,"3976":-1,"3977":-1,"3978":-1,"3979":-1,"3980":-1,"3981":4068,"3982":-1,"3983":-1,"3984":-1,"3985":4065,"3986":4066,"3987":-1,"3988":-1,"3989":-1,"3990":-1,"3991":-1,"3992":-1,"3993":-1,"3994":-1,"3995":-1,"3996":-1,"3997":-1,"3998":-1,"3999":-1,"4000":-1,"4001":-1,"4002":-1,"4003":4066,"4004":-1,"4005":-1,"4006":-1,"4007":-1,"4008":-1,"4009":-1,"4010":-1,"4011":-1,"4012":-1,"4013":-1,"4014":-1,"4015":-1,"4016":-1,"4017":-1,"4018":-1,"4019":-1,"4020":-1,"4021":-1,"4022":-1,"4023":-1,"4024":-1,"4025":-1,"4026":-1,"4027":-1,"4028":-1,"4029":-1,"4030":4063,"4031":-1,"4032":-1,"4033":-1,"4034":4063,"4035":-1,"4036":-1,"4037":-1,"4038":-1,"4039":-1,"4040":-1,"4041":-1,"4042":-1,"4043":-1,"4044":-1,"4045":-1,"4046":4066,"4047":4068,"4048":-1,"4049":-1,"4050":-1,"4051":4067,"4052":-1,"4053":-1,"4054":-1,"4055":-1,"4056":-1,"4057":-1,"4058":4066,"4059":-1,"4060":-1,"4061":-1,"4062":-1,"4063":-1,"4064":-1,"4065":-1,"4066":0,"4067":-1,"4068":-1,"4069":-1,"4070":-1,"4071":-1,"4072":-1,"4073":-1,"4074":-1,"4075":0,"4076":-1,"4077":-1,"4078":0,"4079":-1,"4080":-1,"4081":-1,"4082":-1,"4083":-1,"4084":-1,"4085":-1,"4086":-1,"4087":-1,"4088":-1,"4089":4068,"4090":-1,"4091":4066,"4092":-1,"4093":-1,"4094":-1,"4095":4064,"4096":-1,"4097":4063,"4098":-1,"4099":-1,"4100":-1,"4101":-1,"4102":-1,"4103":0,"4104":0,"4105":-1,"4106":-1,"4107":4068,"4108":-1,"4109":4064,"4110":-1,"4111":-1,"4112":-1,"4113":-1,"4114":-1,"4115":-1,"4116":-1,"4117":-1,"4118":-1,"4119":-1,"4120":-1,"4121":-1,"4122":-1,"4123":-1,"4124":-1,"4125":-1,"4126":4066,"4127":-1,"4128":-1,"4129":-1,"4130":-1,"4131":-1,"4132":4066,"4133":-1,"4134":4068,"4135":-1,"4136":-1,"4137":4065,"4138":-1,"4139":-1,"4140":-1,"4141":-1,"4142":-1,"4143":-1,"4144":-1,"4145":-1,"4146":-1,"4147":-1,"4148":-1,"4149":-1,"4150":-1,"4151":-1,"4152":-1,"4153":4068,"4154":-1,"4155":-1,"4156":-1,"4157":0,"4158":-1,"4159":-1,"4160":-1,"4161":-1,"4162":4064,"4163":-1,"4164":4066,"4165":4064,"4166":-1,"4167":0,"4168":4065,"4169":-1,"4170":4067,"4171":-1,"4172":0,"4173":-1,"4174":4067,"4175":4064,"4176":-1,"4177":-1,"4178":-1,"4179":-1,"4180":4065,"4181":-1,"4182":-1,"4183":-1,"4184":4064,"4185":4068,"4186":-1,"4187":-1,"4188":-1,"4189":-1,"4190":-1,"4191":-1,"4192":-1,"4193":-1,"4194":-1,"4195":-1,"4196":-1,"4197":-1,"4198":-1,"4199":4068,"4200":4066,"4201":-1,"4202":-1,"4203":-1,"4204":-1,"4205":-1,"4206":-1,"4207":4063,"4208":-1,"4209":-1,"4210":-1,"4211":-1,"4212":4066,"4213":-1,"4214":-1,"4215":-1,"4216":4065,"4217":4065,"4218":-1,"4219":-1,"4220":-1,"4221":-1,"4222":-1,"4223":-1,"4224":-1,"4225":0,"4226":-1,"4227":-1,"4228":0,"4229":-1,"4230":-1,"4231":-1,"4232":-1,"4233":-1,"4234":-1,"4235":-1,"4236":-1,"4237":-1,"4238":-1,"4239":-1,"4240":-1,"4241":-1,"4242":-1,"4243":-1,"4244":-1,"4245":4068,"4246":-1,"4247":-1,"4248":-1,"4249":-1,"4250":4063,"4251":-1,"4252":4065,"4253":-1,"4254":-1,"4255":-1,"4256":-1,"4257":4067,"4258":-1,"4259":4067,"4260":-1,"4261":-1,"4262":-1,"4263":-1,"4264":-1,"4265":-1,"4266":-1,"4267":-1,"4268":-1,"4269":4066,"4270":-1,"4271":-1,"4272":-1,"4273":-1,"4274":-1,"4275":-1,"4276":4066,"4277":-1,"4278":0,"4279":4067,"4280":-1,"4281":-1,"4282":-1,"4283":-1,"4284":-1,"4285":-1,"4286":-1,"4287":-1,"4288":-1,"4289":-1,"4290":-1,"4291":-1,"4292":-1,"4293":-1,"4294":-1,"4295":-1,"4296":-1,"4297":-1,"4298":-1,"4299":-1,"4300":-1,"4301":-1,"4302":-1,"4303":-1,"4304":-1,"4305":-1,"4306":-1,"4307":-1,"4308":0,"4309":-1,"4310":-1,"4311":-1,"4312":4064,"4313":-1,"4314":4067,"4315":-1,"4316":-1,"4317":4068,"4318":-1,"4319":-1,"4320":-1,"4321":-1,"4322":-1,"4323":-1,"4324":-1,"4325":-1,"4326":4067,"4327":-1,"4328":-1,"4329":-1,"4330":-1,"4331":4064,"4332":-1,"4333":-1,"4334":4066,"4335":4065,"4336":-1,"4337":-1,"4338":-1,"4339":-1,"4340":-1,"4341":-1,"4342":-1,"4343":-1,"4344":4065,"4345":-1,"4346":-1,"4347":-1,"4348":-1,"4349":-1,"4350":-1,"4351":-1,"4352":4068,"4353":-1,"4354":-1,"4355":-1,"4356":-1,"4357":-1,"4358":-1,"4359":-1,"4360":-1,"4361":-1,"4362":-1,"4363":-1,"4364":-1,"4365":-1,"4366":-1,"4367":-1,"4368":-1,"4369":-1,"4370":-1,"4371":-1,"4372":-1,"4373":-1,"4374":-1,"4375":-1,"4376":-1,"4377":-1,"4378":-1,"4379":-1,"4380":-1,"4381":-1,"4382":-1,"4383":-1,"4384":-1,"4385":-1,"4386":-1,"4387":-1,"4388":-1,"4389":-1,"4390":0,"4391":-1,"4392":-1,"4393":-1,"4394":-1,"4395":-1,"4396":-1,"4397":-1,"4398":-1,"4399":-1,"4400":-1,"4401":4068,"4402":-1,"4403":-1,"4404":-1,"4405":-1,"4406":-1,"4407":-1,"4408":-1,"4409":-1,"4410":4067,"4411":0,"4412":-1,"4413":-1,"4414":-1,"4415":-1,"4416":-1,"4417":-1,"4418":4064,"4419":-1,"4420":4063,"4421":4065,"4422":-1,"4423":-1,"4424":-1,"4425":-1,"4426":-1,"4427":-1,"4428":-1,"4429":-1,"4430":-1,"4431":0,"4432":-1,"4433":-1,"4434":4066,"4435":4066,"4436":-1,"4437":-1,"4438":-1,"4439":-1,"4440":-1,"4441":-1,"4442":-1,"4443":-1,"4444":-1,"4445":-1,"4446":-1,"4447":-1,"4448":4067,"4449":0,"4450":-1,"4451":-1,"4452":-1,"4453":-1,"4454":-1,"4455":-1,"4456":-1,"4457":-1,"4458":-1,"4459":-1,"4460":-1,"4461":-1,"4462":4066,"4463":-1,"4464":-1,"4465":0,"4466":-1,"4467":-1,"4468":-1,"4469":-1,"4470":-1,"4471":4068,"4472":-1,"4473":-1,"4474":-1,"4475":-1,"4476":-1,"4477":4067,"4478":-1,"4479":-1,"4480":-1,"4481":4068,"4482":-1,"4483":-1,"4484":-1,"4485":-1,"4486":-1,"4487":-1,"4488":-1,"4489":-1,"4490":-1,"4491":-1,"4492":-1,"4493":-1,"4494":-1,"4495":-1,"4496":-1,"4497":0,"4498":-1,"4499":-1,"4500":4067,"4501":-1,"4502":-1,"4503":-1,"4504":-1,"4505":4063,"4506":-1,"4507":-1,"4508":4066,"4509":-1,"4510":-1,"4511":-1,"4512":-1,"4513":-1,"4514":-1,"4515":-1,"4516":-1,"4517":-1,"4518":-1,"4519":-1,"4520":-1,"4521":4067,"4522":-1,"4523":-1,"4524":-1,"4525":-1,"4526":-1,"4527":-1,"4528":-1,"4529":-1,"4530":-1,"4531":-1,"4532":-1,"4533":-1,"4534":0,"4535":-1,"4536":-1,"4537":-1,"4538":-1,"4539":-1,"4540":-1,"4541":-1,"4542":4068,"4543":-1,"4544":-1,"4545":-1,"4546":-1,"4547":-1,"4548":4068,"4549":-1,"4550":-1,"4551":-1,"4552":-1,"4553":-1,"4554":-1,"4555":-1,"4556":-1,"4557":-1,"4558":-1,"4559":-1,"4560":4068,"4561":-1,"4562":-1,"4563":-1,"4564":-1,"4565":-1,"4566":-1,"4567":-1,"4568":-1,"4569":-1,"4570":-1,"4571":-1,"4572":-1,"4573":-1,"4574":-1,"4575":-1,"4576":-1,"4577":-1,"4578":4065,"4579":0,"4580":-1,"4581":-1,"4582":-1,"4583":-1,"4584":-1,"4585":-1,"4586":-1,"4587":-1,"4588":-1,"4589":-1,"4590":-1,"4591":4064,"4592":-1,"4593":4065,"4594":-1,"4595":-1,"4596":-1,"4597":-1,"4598":-1,"4599":-1,"4600":-1,"4601":-1,"4602":-1,"4603":-1,"4604":-1,"4605":-1,"4606":-1,"4607":-1,"4608":-1,"4609":-1,"4610":-1,"4611":-1,"4612":-1,"4613":-1,"4614":-1,"4615":-1,"4616":-1,"4617":-1,"4618":4067,"4619":-1,"4620":0,"4621":-1,"4622":-1,"4623":-1,"4624":-1,"4625":-1,"4626":-1,"4627":-1,"4628":-1,"4629":-1,"4630":-1,"4631":-1,"4632":-1,"4633":-1,"4634":-1,"4635":-1,"4636":-1,"4637":4066,"4638":4067,"4639":-1,"4640":-1,"4641":-1,"4642":4066,"4643":4066,"4644":-1,"4645":4068,"4646":-1,"4647":-1,"4648":-1,"4649":-1,"4650":-1,"4651":-1,"4652":-1,"4653":4064,"4654":-1,"4655":-1,"4656":-1,"4657":-1,"4658":-1,"4659":-1,"4660":4063,"4661":-1,"4662":-1,"4663":-1,"4664":-1,"4665":-1,"4666":-1,"4667":-1,"4668":-1,"4669":-1,"4670":-1,"4671":-1,"4672":4068,"4673":4065,"4674":-1,"4675":4063,"4676":-1,"4677":-1,"4678":-1,"4679":-1,"4680":-1,"4681":-1,"4682":-1,"4683":-1,"4684":-1,"4685":-1,"4686":-1,"4687":-1,"4688":4067,"4689":-1,"4690":-1,"4691":-1,"4692":-1,"4693":-1,"4694":-1,"4695":-1,"4696":-1,"4697":4065,"4698":-1,"4699":-1,"4700":4064,"4701":-1,"4702":-1,"4703":-1,"4704":-1,"4705":-1,"4706":-1,"4707":-1,"4708":-1,"4709":-1,"4710":4068,"4711":-1,"4712":4065,"4713":0,"4714":4066,"4715":-1,"4716":-1,"4717":-1,"4718":0,"4719":-1,"4720":4064,"4721":-1,"4722":-1,"4723":-1,"4724":-1,"4725":-1,"4726":-1,"4727":-1,"4728":-1,"4729":-1,"4730":-1,"4731":0,"4732":-1,"4733":-1,"4734":-1,"4735":-1,"4736":-1,"4737":-1,"4738":-1,"4739":0,"4740":-1,"4741":-1,"4742":-1,"4743":-1,"4744":-1,"4745":-1,"4746":-1,"4747":-1,"4748":-1,"4749":-1,"4750":-1,"4751":4067,"4752":-1,"4753":-1,"4754":-1,"4755":-1,"4756":4068,"4757":-1,"4758":-1,"4759":-1,"4760":4065,"4761":-1,"4762":-1,"4763":4065,"4764":-1,"4765":-1,"4766":-1,"4767":-1,"4768":-1,"4769":-1,"4770":-1,"4771":-1,"4772":-1,"4773":-1,"4774":-1,"4775":-1,"4776":-1,"4777":-1,"4778":-1,"4779":4065,"4780":-1,"4781":-1,"4782":-1,"4783":-1,"4784":-1,"4785":-1,"4786":-1,"4787":-1,"4788":-1,"4789":-1,"4790":-1,"4791":-1,"4792":-1,"4793":-1,"4794":4068,"4795":-1,"4796":-1,"4797":-1,"4798":-1,"4799":-1,"4800":-1,"4801":-1,"4802":-1,"4803":-1,"4804":-1,"4805":-1,"4806":-1,"4807":-1,"4808":-1,"4809":-1,"4810":-1,"4811":-1,"4812":-1,"4813":-1,"4814":-1,"4815":-1,"4816":-1,"4817":-1,"4818":-1,"4819":-1,"4820":-1,"4821":-1,"4822":-1,"4823":-1,"4824":-1,"4825":-1,"4826":-1,"4827":-1,"4828":-1,"4829":-1,"4830":-1,"4831":4066,"4832":-1,"4833":-1,"4834":-1,"4835":4065,"4836":-1,"4837":-1,"4838":-1,"4839":-1,"4840":-1,"4841":-1,"4842":-1,"4843":-1,"4844":-1,"4845":0,"4846":-1,"4847":-1,"4848":-1,"4849":-1,"4850":-1,"4851":-1,"4852":4064,"4853":-1,"4854":-1,"4855":-1,"4856":-1,"4857":0,"4858":-1,"4859":-1,"4860":-1,"4861":-1,"4862":-1,"4863":-1,"4864":-1,"4865":4067,"4866":-1,"4867":-1,"4868":-1,"4869":-1,"4870":-1,"4871":-1,"4872":-1,"4873":-1,"4874":-1,"4875":-1,"4876":-1,"4877":-1,"4878":-1,"4879":-1,"4880":4063,"4881":-1,"4882":-1,"4883":4067,"4884":-1,"4885":-1,"4886":-1,"4887":4067,"4888":-1,"4889":-1,"4890":-1,"4891":-1,"4892":-1,"4893":-1,"4894":-1,"4895":-1,"4896":-1,"4897":-1,"4898":-1,"4899":-1,"4900":-1,"4901":-1,"4902":4068,"4903":-1,"4904":-1,"4905":-1,"4906":-1,"4907":-1,"4908":-1,"4909":-1,"4910":-1,"4911":-1,"4912":-1,"4913":-1,"4914":-1,"4915":-1,"4916":4065,"4917":-1,"4918":4065,"4919":-1,"4920":-1,"4921":-1,"4922":-1,"4923":-1,"4924":-1,"4925":-1,"4926":-1,"4927":-1,"4928":-1,"4929":-1,"4930":-1,"4931":-1,"4932":-1,"4933":-1,"4934":-1,"4935":-1,"4936":-1,"4937":-1,"4938":-1,"4939":-1,"4940":-1,"4941":-1,"4942":-1,"4943":-1,"4944":-1,"4945":-1,"4946":-1,"4947":-1,"4948":-1,"4949":-1,"4950":-1,"4951":-1,"4952":-1,"4953":-1,"4954":-1,"4955":-1,"4956":-1,"4957":-1,"4958":-1,"4959":-1,"4960":-1,"4961":-1,"4962":-1,"4963":-1,"4964":4063,"4965":-1,"4966":-1,"4967":-1,"4968":-1,"4969":-1,"4970":-1,"4971":-1,"4972":-1,"4973":4066,"4974":4067,"4975":-1,"4976":-1,"4977":-1,"4978":-1,"4979":-1,"4980":-1,"4981":-1,"4982":4066,"4983":-1,"4984":-1,"4985":-1,"4986":0,"4987":4065,"4988":-1,"4989":-1,"4990":-1,"4991":-1,"4992":-1,"4993":-1,"4994":-1,"4995":-1,"4996":-1,"4997":-1,"4998":-1,"4999":-1,"5000":-1,"5001":-1,"5002":-1,"5003":-1,"5004":4063,"5005":-1,"5006":-1,"5007":-1,"5008":-1,"5009":-1,"5010":4068,"5011":-1,"5012":-1,"5013":-1,"5014":4063,"5015":-1,"5016":-1,"5017":-1,"5018":-1,"5019":-1,"5020":-1,"5021":-1,"5022":-1,"5023":-1,"5024":-1,"5025":-1,"5026":-1,"5027":-1,"5028":-1,"5029":-1,"5030":-1,"5031":-1,"5032":-1,"5033":-1,"5034":-1,"5035":-1,"5036":-1,"5037":4064,"5038":-1,"5039":-1,"5040":-1,"5041":-1,"5042":-1,"5043":-1,"5044":-1,"5045":-1,"5046":-1,"5047":-1,"5048":-1,"5049":-1,"5050":4068,"5051":-1,"5052":-1,"5053":-1,"5054":-1,"5055":4064,"5056":-1,"5057":-1,"5058":-1,"5059":4065,"5060":-1,"5061":-1,"5062":-1,"5063":-1,"5064":-1,"5065":-1,"5066":0,"5067":0,"5068":-1,"5069":-1,"5070":-1,"5071":-1,"5072":-1,"5073":-1,"5074":-1,"5075":-1,"5076":-1,"5077":-1,"5078":-1,"5079":-1,"5080":-1,"5081":4067,"5082":-1,"5083":-1,"5084":-1,"5085":4066,"5086":-1,"5087":-1,"5088":4068,"5089":-1,"5090":4067,"5091":-1,"5092":-1,"5093":-1,"5094":-1,"5095":-1,"5096":-1,"5097":-1,"5098":-1,"5099":-1,"5100":-1,"5101":-1,"5102":-1,"5103":4066,"5104":-1,"5105":4067,"5106":-1,"5107":-1,"5108":-1,"5109":-1,"5110":-1,"5111":-1,"5112":-1,"5113":-1,"5114":-1,"5115":-1,"5116":-1,"5117":4067,"5118":-1,"5119":-1,"5120":-1,"5121":-1,"5122":-1,"5123":-1,"5124":4066,"5125":-1,"5126":-1,"5127":-1,"5128":4065,"5129":-1,"5130":-1,"5131":-1,"5132":-1,"5133":4064,"5134":-1,"5135":-1,"5136":-1,"5137":-1,"5138":-1,"5139":-1,"5140":-1,"5141":-1,"5142":-1,"5143":-1,"5144":-1,"5145":-1,"5146":-1,"5147":0,"5148":-1,"5149":-1,"5150":-1,"5151":4064,"5152":-1,"5153":-1,"5154":-1,"5155":-1,"5156":-1,"5157":0,"5158":-1,"5159":-1,"5160":4066,"5161":-1,"5162":-1,"5163":-1,"5164":-1,"5165":-1,"5166":4067,"5167":-1,"5168":4067,"5169":-1,"5170":-1,"5171":-1,"5172":-1,"5173":4064,"5174":-1,"5175":-1,"5176":-1,"5177":-1,"5178":-1,"5179":-1,"5180":-1,"5181":-1,"5182":-1,"5183":4066,"5184":-1,"5185":4068,"5186":-1,"5187":-1,"5188":-1,"5189":-1,"5190":-1,"5191":-1,"5192":-1,"5193":-1,"5194":-1,"5195":-1,"5196":4067,"5197":-1,"5198":-1,"5199":0,"5200":4063,"5201":-1,"5202":-1,"5203":-1,"5204":-1,"5205":-1,"5206":-1,"5207":-1,"5208":-1,"5209":-1,"5210":4068,"5211":4065,"5212":-1,"5213":4064,"5214":-1,"5215":-1,"5216":-1,"5217":-1,"5218":-1,"5219":-1,"5220":-1,"5221":-1,"5222":4065,"5223":-1,"5224":-1,"5225":-1,"5226":-1,"5227":-1,"5228":-1,"5229":-1,"5230":-1,"5231":-1,"5232":-1,"5233":-1,"5234":-1,"5235":4064,"5236":-1,"5237":-1,"5238":-1,"5239":-1,"5240":-1,"5241":-1,"5242":-1,"5243":4063,"5244":-1,"5245":-1,"5246":-1,"5247":-1,"5248":-1,"5249":-1,"5250":-1,"5251":-1,"5252":4063,"5253":-1,"5254":-1,"5255":-1,"5256":-1,"5257":-1,"5258":0,"5259":-1,"5260":-1,"5261":-1,"5262":-1,"5263":-1,"5264":-1,"5265":-1,"5266":-1,"5267":-1,"5268":4066,"5269":-1,"5270":-1,"5271":-1,"5272":-1,"5273":4063,"5274":-1,"5275":4065,"5276":4066,"5277":-1,"5278":-1,"5279":4066,"5280":-1,"5281":4066,"5282":-1,"5283":-1,"5284":-1,"5285":-1,"5286":-1,"5287":-1,"5288":-1,"5289":-1,"5290":-1,"5291":-1,"5292":-1,"5293":-1,"5294":-1,"5295":-1,"5296":-1,"5297":-1,"5298":-1,"5299":-1,"5300":4063,"5301":-1,"5302":-1,"5303":-1,"5304":-1,"5305":-1,"5306":-1,"5307":-1,"5308":-1,"5309":-1,"5310":-1,"5311":-1,"5312":-1,"5313":-1,"5314":-1,"5315":-1,"5316":4064,"5317":-1,"5318":-1,"5319":-1,"5320":-1,"5321":-1,"5322":-1,"5323":-1,"5324":4064,"5325":-1,"5326":-1,"5327":-1,"5328":-1,"5329":-1,"5330":-1,"5331":-1,"5332":-1,"5333":-1,"5334":0,"5335":4064,"5336":-1,"5337":-1,"5338":-1,"5339":-1,"5340":-1,"5341":4067,"5342":-1,"5343":-1,"5344":-1,"5345":-1,"5346":-1,"5347":-1,"5348":-1,"5349":-1,"5350":-1,"5351":-1,"5352":-1,"5353":-1,"5354":-1,"5355":-1,"5356":-1,"5357":-1,"5358":-1,"5359":-1,"5360":4063,"5361":-1,"5362":-1,"5363":-1,"5364":-1,"5365":4067,"5366":-1,"5367":-1,"5368":-1,"5369":-1,"5370":-1,"5371":-1,"5372":-1,"5373":-1,"5374":-1,"5375":-1,"5376":-1,"5377":-1,"5378":-1,"5379":-1,"5380":-1,"5381":-1,"5382":-1,"5383":4068,"5384":-1,"5385":0,"5386":-1,"5387":-1,"5388":-1,"5389":-1,"5390":-1,"5391":-1,"5392":-1,"5393":-1,"5394":0,"5395":-1,"5396":4063,"5397":-1,"5398":4064,"5399":-1,"5400":-1,"5401":-1,"5402":-1,"5403":-1,"5404":-1,"5405":4068,"5406":0,"5407":-1,"5408":-1,"5409":0,"5410":-1,"5411":-1,"5412":-1,"5413":4065,"5414":-1,"5415":-1,"5416":-1,"5417":-1,"5418":-1,"5419":-1,"5420":-1,"5421":-1,"5422":4065,"5423":-1,"5424":4065,"5425":-1,"5426":-1,"5427":4066,"5428":-1,"5429":-1,"5430":-1,"5431":-1,"5432":-1,"5433":-1,"5434":-1,"5435":-1,"5436":-1,"5437":4065,"5438":-1,"5439":-1,"5440":-1,"5441":-1,"5442":-1,"5443":4067,"5444":4067,"5445":-1,"5446":-1,"5447":0,"5448":-1,"5449":-1,"5450":-1,"5451":-1,"5452":-1,"5453":4067,"5454":-1,"5455":-1,"5456":-1,"5457":-1,"5458":-1,"5459":-1,"5460":-1,"5461":-1,"5462":-1,"5463":-1,"5464":4067,"5465":4068,"5466":-1,"5467":4064,"5468":-1,"5469":-1,"5470":-1,"5471":-1,"5472":4064,"5473":-1,"5474":-1,"5475":-1,"5476":-1,"5477":-1,"5478":-1,"5479":-1,"5480":4063,"5481":-1,"5482":-1,"5483":0,"5484":-1,"5485":-1,"5486":-1,"5487":-1,"5488":4063,"5489":-1,"5490":-1,"5491":-1,"5492":4067,"5493":4066,"5494":-1,"5495":-1,"5496":-1,"5497":-1,"5498":-1,"5499":-1,"5500":4066,"5501":-1,"5502":4068,"5503":-1,"5504":-1,"5505":4066,"5506":-1,"5507":-1,"5508":-1,"5509":-1,"5510":-1,"5511":-1,"5512":-1,"5513":-1,"5514":-1,"5515":-1,"5516":-1,"5517":0,"5518":-1,"5519":0,"5520":-1,"5521":-1,"5522":-1,"5523":-1,"5524":-1,"5525":-1,"5526":4067,"5527":-1,"5528":-1,"5529":-1,"5530":-1,"5531":-1,"5532":4066,"5533":-1,"5534":-1,"5535":-1,"5536":-1,"5537":-1,"5538":-1,"5539":0,"5540":-1,"5541":-1,"5542":-1,"5543":-1,"5544":-1,"5545":-1,"5546":-1,"5547":4065,"5548":4064,"5549":-1,"5550":0,"5551":-1,"5552":4064,"5553":-1,"5554":-1,"5555":-1,"5556":0,"5557":-1,"5558":-1,"5559":-1,"5560":-1,"5561":-1,"5562":-1,"5563":-1,"5564":-1,"5565":-1,"5566":-1,"5567":-1,"5568":-1,"5569":-1,"5570":-1,"5571":-1,"5572":4067,"5573":-1,"5574":-1,"5575":-1,"5576":4064,"5577":-1,"5578":-1,"5579":-1,"5580":-1,"5581":4063,"5582":-1,"5583":-1,"5584":-1,"5585":-1,"5586":0,"5587":-1,"5588":-1,"5589":-1,"5590":-1,"5591":-1,"5592":-1,"5593":-1,"5594":-1,"5595":-1,"5596":-1,"5597":4064,"5598":-1,"5599":-1,"5600":-1,"5601":-1,"5602":4067,"5603":-1,"5604":-1,"5605":4065,"5606":-1,"5607":-1,"5608":-1,"5609":-1,"5610":-1,"5611":-1,"5612":4064,"5613":-1,"5614":4065,"5615":0,"5616":-1,"5617":-1,"5618":-1,"5619":-1,"5620":-1,"5621":-1,"5622":-1,"5623":-1,"5624":-1,"5625":0,"5626":-1,"5627":-1,"5628":-1,"5629":-1,"5630":-1,"5631":-1,"5632":-1,"5633":-1,"5634":-1,"5635":-1,"5636":-1,"5637":-1,"5638":-1,"5639":-1,"5640":4063,"5641":-1,"5642":-1,"5643":-1,"5644":-1,"5645":4066,"5646":-1,"5647":4067,"5648":-1,"5649":-1,"5650":-1,"5651":-1,"5652":-1,"5653":4068,"5654":-1,"5655":4065,"5656":4068,"5657":-1,"5658":-1,"5659":-1,"5660":4064,"5661":-1,"5662":-1,"5663":-1,"5664":4067,"5665":-1,"5666":-1,"5667":-1,"5668":-1,"5669":4065,"5670":-1,"5671":-1,"5672":-1,"5673":4066,"5674":4065,"5675":-1,"5676":-1,"5677":-1,"5678":-1,"5679":-1,"5680":-1,"5681":-1,"5682":-1,"5683":-1,"5684":-1,"5685":-1,"5686":-1,"5687":4063,"5688":-1,"5689":-1,"5690":-1,"5691":-1,"5692":-1,"5693":-1,"5694":-1,"5695":-1,"5696":-1,"5697":-1,"5698":-1,"5699":-1,"5700":-1,"5701":-1,"5702":-1,"5703":-1,"5704":-1,"5705":-1,"5706":-1,"5707":-1,"5708":-1,"5709":-1,"5710":-1,"5711":-1,"5712":-1,"5713":-1,"5714":0,"5715":4068,"5716":-1,"5717":0,"5718":-1,"5719":-1,"5720":-1,"5721":-1,"5722":4063,"5723":-1,"5724":-1,"5725":4066,"5726":-1,"5727":-1,"5728":-1,"5729":-1,"5730":-1,"5731":-1,"5732":-1,"5733":4066,"5734":-1,"5735":-1,"5736":-1,"5737":-1,"5738":-1,"5739":-1,"5740":4063,"5741":-1,"5742":-1,"5743":4065,"5744":4063,"5745":-1,"5746":-1,"5747":-1,"5748":-1,"5749":-1,"5750":-1,"5751":-1,"5752":-1,"5753":-1,"5754":4067,"5755":4066,"5756":4064,"5757":-1,"5758":-1,"5759":-1,"5760":-1,"5761":-1,"5762":-1,"5763":-1,"5764":4066,"5765":-1,"5766":-1,"5767":4065,"5768":-1,"5769":-1,"5770":-1,"5771":-1,"5772":-1,"5773":-1,"5774":-1,"5775":-1,"5776":-1,"5777":-1,"5778":0,"5779":-1,"5780":-1,"5781":-1,"5782":-1,"5783":-1,"5784":-1,"5785":-1,"5786":-1,"5787":-1,"5788":-1,"5789":-1,"5790":-1,"5791":-1,"5792":-1,"5793":-1,"5794":-1,"5795":-1,"5796":-1,"5797":-1,"5798":-1,"5799":-1,"5800":-1,"5801":0,"5802":-1,"5803":-1,"5804":-1,"5805":-1,"5806":-1,"5807":4065,"5808":-1,"5809":4067,"5810":-1,"5811":-1,"5812":-1,"5813":4067,"5814":-1,"5815":-1,"5816":-1,"5817":-1,"5818":-1,"5819":-1,"5820":-1,"5821":4068,"5822":-1,"5823":-1,"5824":-1,"5825":-1,"5826":-1,"5827":-1,"5828":-1,"5829":-1,"5830":-1,"5831":4065,"5832":0,"5833":-1,"5834":-1,"5835":-1,"5836":-1,"5837":4068,"5838":-1,"5839":-1,"5840":0,"5841":-1,"5842":-1,"5843":-1,"5844":-1,"5845":-1,"5846":-1,"5847":-1,"5848":-1,"5849":-1,"5850":4064,"5851":-1,"5852":4063,"5853":-1,"5854":4066,"5855":-1,"5856":-1,"5857":-1,"5858":-1,"5859":-1,"5860":-1,"5861":-1,"5862":-1,"5863":4067,"5864":-1,"5865":4064,"5866":-1,"5867":-1,"5868":-1,"5869":-1,"5870":-1,"5871":-1,"5872":-1,"5873":-1,"5874":4068,"5875":-1,"5876":-1,"5877":-1,"5878":-1,"5879":-1,"5880":4066,"5881":-1,"5882":-1,"5883":-1,"5884":-1,"5885":4065,"5886":0,"5887":-1,"5888":-1,"5889":-1,"5890":-1,"5891":-1,"5892":-1,"5893":-1,"5894":-1,"5895":-1,"5896":-1,"5897":-1,"5898":-1,"5899":-1,"5900":0,"5901":4063,"5902":-1,"5903":-1,"5904":-1,"5905":-1,"5906":-1,"5907":-1,"5908":-1,"5909":-1,"5910":-1,"5911":-1,"5912":-1,"5913":-1,"5914":-1,"5915":-1,"5916":4065,"5917":-1,"5918":-1,"5919":-1,"5920":-1,"5921":-1,"5922":-1,"5923":-1,"5924":-1,"5925":4067,"5926":-1,"5927":-1,"5928":-1,"5929":-1,"5930":-1,"5931":0,"5932":-1,"5933":-1,"5934":-1,"5935":0,"5936":-1,"5937":-1,"5938":-1,"5939":-1,"5940":-1,"5941":4068,"5942":-1,"5943":-1,"5944":-1,"5945":-1,"5946":-1,"5947":-1,"5948":4065,"5949":-1,"5950":-1,"5951":-1,"5952":-1,"5953":-1,"5954":0,"5955":-1,"5956":-1,"5957":-1,"5958":-1,"5959":4066,"5960":4065,"5961":-1,"5962":-1,"5963":-1,"5964":0,"5965":-1,"5966":-1,"5967":-1,"5968":-1,"5969":4064,"5970":-1,"5971":-1,"5972":-1,"5973":-1,"5974":-1,"5975":-1,"5976":4064,"5977":-1,"5978":-1,"5979":-1,"5980":-1,"5981":-1,"5982":4068,"5983":-1,"5984":-1,"5985":-1,"5986":4063,"5987":-1,"5988":-1,"5989":-1,"5990":-1,"5991":-1,"5992":-1,"5993":-1,"5994":-1,"5995":-1,"5996":-1,"5997":-1,"5998":-1,"5999":-1,"6000":-1,"6001":-1,"6002":-1,"6003":-1,"6004":-1,"6005":-1,"6006":-1,"6007":-1,"6008":-1,"6009":-1,"6010":-1,"6011":-1,"6012":-1,"6013":-1,"6014":-1,"6015":-1,"6016":4067,"6017":-1,"6018":-1,"6019":4067,"6020":0,"6021":-1,"6022":-1,"6023":-1,"6024":-1,"6025":-1,"6026":4066,"6027":-1,"6028":-1,"6029":-1,"6030":-1,"6031":-1,"6032":-1,"6033":-1,"6034":4064,"6035":-1,"6036":-1,"6037":-1,"6038":-1,"6039":-1,"6040":-1,"6041":-1,"6042":4063,"6043":-1,"6044":-1,"6045":-1,"6046":-1,"6047":-1,"6048":-1,"6049":-1,"6050":-1,"6051":-1,"6052":4064,"6053":-1,"6054":4064,"6055":-1,"6056":-1,"6057":-1,"6058":-1,"6059":-1,"6060":-1,"6061":-1,"6062":-1,"6063":4063,"6064":4066,"6065":-1,"6066":4067,"6067":4066,"6068":-1,"6069":-1,"6070":-1,"6071":-1,"6072":-1,"6073":4066,"6074":-1,"6075":-1,"6076":-1,"6077":-1,"6078":-1,"6079":-1,"6080":-1,"6081":-1,"6082":-1,"6083":0,"6084":-1,"6085":-1,"6086":-1,"6087":4066,"6088":-1,"6089":-1,"6090":-1,"6091":-1,"6092":-1,"6093":-1,"6094":-1,"6095":-1,"6096":-1,"6097":-1,"6098":-1,"6099":-1,"6100":4065,"6101":0,"6102":-1,"6103":-1,"6104":-1,"6105":-1,"6106":-1,"6107":-1,"6108":4067,"6109":-1,"6110":-1,"6111":-1,"6112":-1,"6113":-1,"6114":-1,"6115":-1,"6116":-1,"6117":0,"6118":-1,"6119":-1,"6120":-1,"6121":-1,"6122":-1,"6123":-1,"6124":-1,"6125":-1,"6126":-1,"6127":-1,"6128":4066,"6129":-1,"6130":-1,"6131":4067,"6132":4063,"6133":-1,"6134":-1,"6135":4066,"6136":-1,"6137":4068,"6138":-1,"6139":-1,"6140":0,"6141":4066,"6142":-1,"6143":-1,"6144":-1,"6145":-1,"6146":-1,"6147":-1,"6148":-1,"6149":-1,"6150":-1,"6151":-1,"6152":0,"6153":-1,"6154":-1,"6155":-1,"6156":4065,"6157":-1,"6158":-1,"6159":-1,"6160":-1,"6161":-1,"6162":-1,"6163":-1,"6164":-1,"6165":-1,"6166":-1,"6167":-1,"6168":-1,"6169":4068,"6170":-1,"6171":-1,"6172":-1,"6173":-1,"6174":-1,"6175":-1,"6176":-1,"6177":-1,"6178":-1,"6179":-1,"6180":-1,"6181":-1,"6182":-1,"6183":-1,"6184":-1,"6185":-1,"6186":-1,"6187":4064,"6188":-1,"6189":-1,"6190":-1,"6191":-1,"6192":4067,"6193":-1,"6194":-1,"6195":-1,"6196":-1,"6197":4065,"6198":-1,"6199":-1,"6200":-1,"6201":-1,"6202":-1,"6203":-1,"6204":-1,"6205":-1,"6206":-1,"6207":-1,"6208":-1,"6209":-1,"6210":-1,"6211":-1,"6212":-1,"6213":-1,"6214":4065,"6215":-1,"6216":4065,"6217":-1,"6218":-1,"6219":-1,"6220":4064,"6221":4064,"6222":-1,"6223":-1,"6224":-1,"6225":-1,"6226":4064,"6227":-1,"6228":-1,"6229":-1,"6230":-1,"6231":-1,"6232":-1,"6233":-1,"6234":-1,"6235":-1,"6236":4066,"6237":-1,"6238":-1,"6239":-1,"6240":4065,"6241":-1,"6242":-1,"6243":-1,"6244":-1,"6245":-1,"6246":-1,"6247":-1,"6248":4064,"6249":-1,"6250":-1,"6251":-1,"6252":-1,"6253":-1,"6254":-1,"6255":-1,"6256":-1,"6257":0,"6258":4064,"6259":-1,"6260":-1,"6261":-1,"6262":-1,"6263":-1,"6264":-1,"6265":-1,"6266":-1,"6267":-1,"6268":-1,"6269":-1,"6270":-1,"6271":-1,"6272":-1,"6273":-1,"6274":-1,"6275":-1,"6276":-1,"6277":-1,"6278":-1,"6279":-1,"6280":-1,"6281":-1,"6282":-1,"6283":-1,"6284":-1,"6285":-1,"6286":-1,"6287":-1,"6288":-1,"6289":4064,"6290":-1,"6291":-1,"6292":-1,"6293":-1,"6294":-1,"6295":-1,"6296":0,"6297":-1,"6298":-1,"6299":-1,"6300":-1,"6301":4066,"6302":-1,"6303":-1,"6304":-1,"6305":-1,"6306":-1,"6307":-1,"6308":4064,"6309":-1,"6310":-1,"6311":-1,"6312":4065,"6313":-1,"6314":-1,"6315":-1,"6316":-1,"6317":-1,"6318":4065,"6319":-1,"6320":-1,"6321":-1,"6322":-1,"6323":-1,"6324":-1,"6325":4065,"6326":-1,"6327":-1,"6328":-1,"6329":-1,"6330":-1,"6331":-1,"6332":-1,"6333":-1,"6334":-1,"6335":-1,"6336":-1,"6337":-1,"6338":-1,"6339":4066,"6340":4065,"6341":-1,"6342":-1,"6343":-1,"6344":-1,"6345":-1,"6346":-1,"6347":-1,"6348":-1,"6349":4067,"6350":-1,"6351":-1,"6352":-1,"6353":-1,"6354":-1,"6355":-1,"6356":-1,"6357":-1,"6358":-1,"6359":-1,"6360":-1,"6361":-1,"6362":-1,"6363":-1,"6364":-1,"6365":-1,"6366":-1,"6367":4064,"6368":-1,"6369":-1,"6370":-1,"6371":-1,"6372":4064,"6373":-1,"6374":-1,"6375":-1,"6376":-1,"6377":4065,"6378":-1,"6379":-1,"6380":-1,"6381":-1,"6382":-1,"6383":4067,"6384":-1,"6385":-1,"6386":-1,"6387":-1,"6388":-1,"6389":-1,"6390":-1,"6391":-1,"6392":-1,"6393":-1,"6394":-1,"6395":-1,"6396":-1,"6397":-1,"6398":4063,"6399":-1,"6400":-1,"6401":-1,"6402":-1,"6403":-1,"6404":-1,"6405":-1,"6406":-1,"6407":-1,"6408":-1,"6409":-1,"6410":-1,"6411":-1,"6412":-1,"6413":-1,"6414":-1,"6415":-1,"6416":-1,"6417":-1,"6418":4067,"6419":-1,"6420":-1,"6421":-1,"6422":-1,"6423":-1,"6424":-1,"6425":4068,"6426":-1,"6427":-1,"6428":-1,"6429":4065,"6430":-1,"6431":-1,"6432":-1,"6433":-1,"6434":-1,"6435":-1,"6436":-1,"6437":-1,"6438":-1,"6439":-1,"6440":-1,"6441":4063,"6442":4068,"6443":0,"6444":-1,"6445":-1,"6446":4065,"6447":-1,"6448":-1,"6449":-1,"6450":-1,"6451":-1,"6452":4065,"6453":-1,"6454":-1,"6455":-1,"6456":-1,"6457":-1,"6458":-1,"6459":-1,"6460":-1,"6461":-1,"6462":-1,"6463":-1,"6464":-1,"6465":-1,"6466":-1,"6467":-1,"6468":4067,"6469":-1,"6470":-1,"6471":4064,"6472":-1,"6473":-1,"6474":4067,"6475":-1,"6476":-1,"6477":-1,"6478":-1,"6479":-1,"6480":-1,"6481":4067,"6482":-1,"6483":4064,"6484":-1,"6485":-1,"6486":-1,"6487":-1,"6488":-1,"6489":-1,"6490":-1,"6491":-1,"6492":-1,"6493":-1,"6494":0,"6495":4063,"6496":-1,"6497":-1,"6498":-1,"6499":-1,"6500":-1,"6501":-1,"6502":-1,"6503":-1,"6504":-1,"6505":-1,"6506":-1,"6507":-1,"6508":-1,"6509":-1,"6510":-1,"6511":-1,"6512":4065,"6513":-1,"6514":-1,"6515":-1,"6516":4065,"6517":-1,"6518":4065,"6519":-1,"6520":-1,"6521":4065,"6522":-1,"6523":-1,"6524":4064,"6525":-1,"6526":-1,"6527":-1,"6528":4066,"6529":0,"6530":-1,"6531":-1,"6532":4067,"6533":-1,"6534":-1,"6535":-1,"6536":0,"6537":-1,"6538":-1,"6539":-1,"6540":4068,"6541":-1,"6542":-1,"6543":-1,"6544":4063,"6545":-1,"6546":-1,"6547":-1,"6548":-1,"6549":-1,"6550":-1,"6551":-1,"6552":-1,"6553":-1,"6554":-1,"6555":-1,"6556":-1,"6557":-1,"6558":0,"6559":-1,"6560":-1,"6561":-1,"6562":-1,"6563":-1,"6564":-1,"6565":-1,"6566":-1,"6567":-1,"6568":-1,"6569":-1,"6570":-1,"6571":-1,"6572":4066,"6573":-1,"6574":-1,"6575":-1,"6576":-1,"6577":-1,"6578":-1,"6579":-1,"6580":-1,"6581":-1,"6582":-1,"6583":-1,"6584":4067,"6585":-1,"6586":-1,"6587":-1,"6588":-1,"6589":-1,"6590":-1,"6591":-1,"6592":-1,"6593":-1,"6594":-1,"6595":-1,"6596":-1,"6597":-1,"6598":-1,"6599":-1,"6600":-1,"6601":4067,"6602":-1,"6603":4064,"6604":-1,"6605":-1,"6606":-1,"6607":-1,"6608":-1,"6609":-1,"6610":-1,"6611":-1,"6612":-1,"6613":-1,"6614":-1,"6615":-1,"6616":-1,"6617":-1,"6618":-1,"6619":-1,"6620":-1,"6621":4068,"6622":-1,"6623":4066,"6624":-1,"6625":-1,"6626":-1,"6627":-1,"6628":4067,"6629":-1,"6630":-1,"6631":-1,"6632":-1,"6633":-1,"6634":-1,"6635":-1,"6636":-1,"6637":-1,"6638":-1,"6639":-1,"6640":0,"6641":-1,"6642":4063,"6643":-1,"6644":0,"6645":-1,"6646":-1,"6647":-1,"6648":4068,"6649":-1,"6650":4067,"6651":-1,"6652":-1,"6653":4063,"6654":-1,"6655":4063,"6656":-1,"6657":-1,"6658":-1,"6659":-1,"6660":-1,"6661":4064,"6662":4066,"6663":-1,"6664":-1,"6665":-1,"6666":-1,"6667":4065,"6668":-1,"6669":0,"6670":-1,"6671":4064,"6672":-1,"6673":-1,"6674":-1,"6675":-1,"6676":-1,"6677":-1,"6678":-1,"6679":-1,"6680":-1,"6681":-1,"6682":-1,"6683":4064,"6684":-1,"6685":-1,"6686":4066,"6687":-1,"6688":-1,"6689":-1,"6690":-1,"6691":-1,"6692":-1,"6693":-1,"6694":-1,"6695":-1,"6696":-1,"6697":-1,"6698":-1,"6699":-1,"6700":-1,"6701":-1,"6702":-1,"6703":-1,"6704":-1,"6705":-1,"6706":-1,"6707":-1,"6708":-1,"6709":-1,"6710":-1,"6711":4065,"6712":-1,"6713":-1,"6714":4067,"6715":4065,"6716":-1,"6717":-1,"6718":-1,"6719":-1,"6720":-1,"6721":-1,"6722":-1,"6723":-1,"6724":4064,"6725":-1,"6726":-1,"6727":-1,"6728":-1,"6729":-1,"6730":-1,"6731":4066,"6732":0,"6733":-1,"6734":-1,"6735":4066,"6736":-1,"6737":-1,"6738":-1,"6739":-1,"6740":-1,"6741":4064,"6742":-1,"6743":0,"6744":-1,"6745":0,"6746":-1,"6747":4065,"6748":-1,"6749":-1,"6750":0,"6751":-1,"6752":4064,"6753":-1,"6754":-1,"6755":-1,"6756":4064,"6757":-1,"6758":-1,"6759":-1,"6760":-1,"6761":-1,"6762":-1,"6763":4066,"6764":-1,"6765":-1,"6766":-1,"6767":-1,"6768":-1,"6769":-1,"6770":-1,"6771":-1,"6772":-1,"6773":-1,"6774":-1,"6775":-1,"6776":4066,"6777":-1,"6778":-1,"6779":-1,"6780":-1,"6781":-1,"6782":-1,"6783":-1,"6784":-1,"6785":-1,"6786":-1,"6787":-1,"6788":-1,"6789":-1,"6790":-1,"6791":-1,"6792":-1,"6793":-1,"6794":-1,"6795":-1,"6796":-1,"6797":-1,"6798":4067,"6799":4066,"6800":-1,"6801":4063,"6802":-1,"6803":-1,"6804":-1,"6805":-1,"6806":-1,"6807":-1,"6808":4064,"6809":-1,"6810":-1,"6811":-1,"6812":-1,"6813":4066,"6814":-1,"6815":-1,"6816":4067,"6817":-1,"6818":-1,"6819":-1,"6820":-1,"6821":4066,"6822":4068,"6823":4065,"6824":-1,"6825":4065,"6826":-1,"6827":4063,"6828":-1,"6829":-1,"6830":0,"6831":-1,"6832":-1,"6833":-1,"6834":-1,"6835":-1,"6836":-1,"6837":-1,"6838":-1,"6839":-1,"6840":-1,"6841":-1,"6842":-1,"6843":-1,"6844":-1,"6845":-1,"6846":-1,"6847":4067,"6848":-1,"6849":-1,"6850":-1,"6851":-1,"6852":-1,"6853":-1,"6854":-1,"6855":-1,"6856":-1,"6857":-1,"6858":-1,"6859":-1,"6860":4067,"6861":-1,"6862":-1,"6863":-1,"6864":-1,"6865":-1,"6866":-1,"6867":-1,"6868":-1,"6869":-1,"6870":-1,"6871":-1,"6872":-1,"6873":-1,"6874":-1,"6875":4063,"6876":-1,"6877":-1,"6878":-1,"6879":-1,"6880":-1,"6881":-1,"6882":-1,"6883":-1,"6884":-1,"6885":-1,"6886":-1,"6887":-1,"6888":-1,"6889":-1,"6890":-1,"6891":0,"6892":-1,"6893":-1,"6894":-1,"6895":-1,"6896":-1,"6897":-1,"6898":-1,"6899":4066,"6900":-1,"6901":-1,"6902":-1,"6903":-1,"6904":-1,"6905":-1,"6906":-1,"6907":-1,"6908":-1,"6909":-1,"6910":-1,"6911":-1,"6912":-1,"6913":-1,"6914":-1,"6915":-1,"6916":-1,"6917":-1,"6918":4064,"6919":-1,"6920":-1,"6921":-1,"6922":-1,"6923":-1,"6924":-1,"6925":-1,"6926":-1,"6927":-1,"6928":-1,"6929":-1,"6930":-1,"6931":-1,"6932":-1,"6933":-1,"6934":-1,"6935":4067,"6936":-1,"6937":-1,"6938":-1,"6939":-1,"6940":-1,"6941":4068,"6942":-1,"6943":4065,"6944":-1,"6945":-1,"6946":-1,"6947":-1,"6948":-1,"6949":-1,"6950":-1,"6951":-1,"6952":-1,"6953":-1,"6954":-1,"6955":-1,"6956":-1,"6957":-1,"6958":-1,"6959":-1,"6960":-1,"6961":4067,"6962":4065,"6963":-1,"6964":-1,"6965":-1,"6966":4067,"6967":-1,"6968":4065,"6969":-1,"6970":-1,"6971":-1,"6972":-1,"6973":-1,"6974":-1,"6975":-1,"6976":4066,"6977":-1,"6978":-1,"6979":0,"6980":-1,"6981":-1,"6982":-1,"6983":-1,"6984":-1,"6985":-1,"6986":0,"6987":-1,"6988":-1,"6989":-1,"6990":-1,"6991":-1,"6992":-1,"6993":-1,"6994":-1,"6995":-1,"6996":-1,"6997":4065,"6998":-1,"6999":4064,"7000":-1,"7001":-1,"7002":-1,"7003":-1,"7004":-1,"7005":-1,"7006":-1,"7007":4064,"7008":-1,"7009":-1,"7010":4064,"7011":-1,"7012":-1,"7013":0,"7014":4067,"7015":-1,"7016":-1,"7017":-1,"7018":-1,"7019":-1,"7020":0,"7021":4065,"7022":-1,"7023":-1,"7024":-1,"7025":-1,"7026":-1,"7027":4063,"7028":-1,"7029":-1,"7030":-1,"7031":-1,"7032":-1,"7033":-1,"7034":0,"7035":-1,"7036":-1,"7037":-1,"7038":-1,"7039":0,"7040":-1,"7041":-1,"7042":-1,"7043":-1,"7044":-1,"7045":4064,"7046":-1,"7047":-1,"7048":-1,"7049":-1,"7050":4066,"7051":-1,"7052":-1,"7053":-1,"7054":-1,"7055":-1,"7056":0,"7057":-1,"7058":-1,"7059":-1,"7060":-1,"7061":-1,"7062":-1,"7063":4065,"7064":-1,"7065":-1,"7066":-1,"7067":-1,"7068":-1,"7069":-1,"7070":-1,"7071":-1,"7072":-1,"7073":-1,"7074":-1,"7075":-1,"7076":-1,"7077":4065,"7078":-1,"7079":-1,"7080":-1,"7081":-1,"7082":-1,"7083":-1,"7084":4064,"7085":-1,"7086":-1,"7087":-1,"7088":-1,"7089":-1,"7090":-1,"7091":-1,"7092":-1,"7093":-1,"7094":-1,"7095":-1,"7096":-1,"7097":-1,"7098":-1,"7099":-1,"7100":-1,"7101":-1,"7102":-1,"7103":4063,"7104":-1,"7105":-1,"7106":-1,"7107":-1,"7108":-1,"7109":-1,"7110":-1,"7111":-1,"7112":-1,"7113":-1,"7114":4066,"7115":-1,"7116":-1,"7117":-1,"7118":-1,"7119":-1,"7120":-1,"7121":-1,"7122":0,"7123":4065,"7124":-1,"7125":-1,"7126":-1,"7127":-1,"7128":4068,"7129":4066,"7130":-1,"7131":-1,"7132":-1,"7133":-1,"7134":-1,"7135":-1,"7136":-1,"7137":-1,"7138":-1,"7139":-1,"7140":-1,"7141":4064,"7142":-1,"7143":-1,"7144":-1,"7145":-1,"7146":4063,"7147":-1,"7148":-1,"7149":-1,"7150":-1,"7151":-1,"7152":4067,"7153":-1,"7154":-1,"7155":-1,"7156":-1,"7157":-1,"7158":-1,"7159":-1,"7160":-1,"7161":-1,"7162":-1,"7163":-1,"7164":-1,"7165":-1,"7166":4065,"7167":4066,"7168":-1,"7169":-1,"7170":0,"7171":-1,"7172":4064,"7173":-1,"7174":-1,"7175":-1,"7176":-1,"7177":-1,"7178":-1,"7179":-1,"7180":-1,"7181":-1,"7182":-1,"7183":-1,"7184":-1,"7185":4063,"7186":-1,"7187":-1,"7188":-1,"7189":-1,"7190":4064,"7191":-1,"7192":-1,"7193":-1,"7194":-1,"7195":-1,"7196":-1,"7197":-1,"7198":4063,"7199":-1,"7200":-1,"7201":-1,"7202":-1,"7203":-1,"7204":-1,"7205":-1,"7206":-1,"7207":-1,"7208":-1,"7209":-1,"7210":-1,"7211":-1,"7212":-1,"7213":-1,"7214":4066,"7215":-1,"7216":-1,"7217":-1,"7218":-1,"7219":-1,"7220":-1,"7221":-1,"7222":-1,"7223":-1,"7224":-1,"7225":-1,"7226":-1,"7227":-1,"7228":-1,"7229":-1,"7230":-1,"7231":4066,"7232":-1,"7233":-1,"7234":4066,"7235":-1,"7236":-1,"7237":-1,"7238":-1,"7239":-1,"7240":-1,"7241":-1,"7242":-1,"7243":-1,"7244":-1,"7245":0,"7246":-1,"7247":-1,"7248":4065,"7249":-1,"7250":-1,"7251":4065,"7252":-1,"7253":-1,"7254":4068,"7255":-1,"7256":4066,"7257":-1,"7258":-1,"7259":-1,"7260":-1,"7261":-1,"7262":-1,"7263":-1,"7264":-1,"7265":-1,"7266":-1,"7267":-1,"7268":-1,"7269":4065,"7270":-1,"7271":4063,"7272":-1,"7273":-1,"7274":-1,"7275":-1,"7276":-1,"7277":-1,"7278":4066,"7279":-1,"7280":-1,"7281":4066,"7282":-1,"7283":-1,"7284":-1,"7285":-1,"7286":-1,"7287":-1,"7288":4068,"7289":4068,"7290":-1,"7291":-1,"7292":-1,"7293":-1,"7294":-1,"7295":-1,"7296":0,"7297":-1,"7298":-1,"7299":-1,"7300":-1,"7301":-1,"7302":0,"7303":-1,"7304":-1,"7305":-1,"7306":-1,"7307":-1,"7308":-1,"7309":-1,"7310":-1,"7311":-1,"7312":-1,"7313":-1,"7314":-1,"7315":-1,"7316":-1,"7317":-1,"7318":-1,"7319":-1,"7320":-1,"7321":-1,"7322":4068,"7323":-1,"7324":-1,"7325":-1,"7326":-1,"7327":4067,"7328":-1,"7329":-1,"7330":-1,"7331":-1,"7332":4066,"7333":4068,"7334":-1,"7335":-1,"7336":-1,"7337":-1,"7338":-1,"7339":4067,"7340":-1,"7341":-1,"7342":-1,"7343":-1,"7344":-1,"7345":-1,"7346":-1,"7347":-1,"7348":-1,"7349":-1,"7350":-1,"7351":-1,"7352":-1,"7353":-1,"7354":4064,"7355":-1,"7356":-1,"7357":-1,"7358":-1,"7359":0,"7360":-1,"7361":4066,"7362":-1,"7363":-1,"7364":4067,"7365":-1,"7366":-1,"7367":0,"7368":4066,"7369":-1,"7370":-1,"7371":-1,"7372":-1,"7373":-1,"7374":-1,"7375":-1,"7376":-1,"7377":-1,"7378":-1,"7379":-1,"7380":-1,"7381":-1,"7382":-1,"7383":-1,"7384":4066,"7385":-1,"7386":4064,"7387":-1,"7388":-1,"7389":-1,"7390":-1,"7391":-1,"7392":-1,"7393":-1,"7394":-1,"7395":-1,"7396":-1,"7397":-1,"7398":4067,"7399":-1,"7400":-1,"7401":-1,"7402":-1,"7403":4063,"7404":-1,"7405":-1,"7406":-1,"7407":-1,"7408":-1,"7409":-1,"7410":4065,"7411":4066,"7412":-1,"7413":0,"7414":-1,"7415":-1,"7416":-1,"7417":-1,"7418":-1,"7419":-1,"7420":4063,"7421":-1,"7422":-1,"7423":-1,"7424":-1,"7425":-1,"7426":4064,"7427":4066,"7428":-1,"7429":0,"7430":0,"7431":-1,"7432":-1,"7433":-1,"7434":-1,"7435":-1,"7436":-1,"7437":-1,"7438":-1,"7439":-1,"7440":-1,"7441":-1,"7442":4064,"7443":-1,"7444":-1,"7445":-1,"7446":-1,"7447":-1,"7448":-1,"7449":-1,"7450":-1,"7451":-1,"7452":-1,"7453":-1,"7454":-1,"7455":4067,"7456":-1,"7457":-1,"7458":-1,"7459":-1,"7460":-1,"7461":-1,"7462":4065,"7463":-1,"7464":-1,"7465":-1,"7466":-1,"7467":4066,"7468":-1,"7469":-1,"7470":-1,"7471":-1,"7472":-1,"7473":-1,"7474":-1,"7475":-1,"7476":-1,"7477":4065,"7478":4066,"7479":-1,"7480":-1,"7481":-1,"7482":-1,"7483":-1,"7484":-1,"7485":4064,"7486":4065,"7487":4068,"7488":-1,"7489":0,"7490":-1,"7491":-1,"7492":-1,"7493":-1,"7494":-1,"7495":4063,"7496":-1,"7497":4065,"7498":-1,"7499":-1,"7500":-1,"7501":-1,"7502":-1,"7503":-1,"7504":-1,"7505":4064,"7506":-1,"7507":4065,"7508":-1,"7509":-1,"7510":-1,"7511":-1,"7512":-1,"7513":-1,"7514":-1,"7515":-1,"7516":4067,"7517":-1,"7518":0,"7519":-1,"7520":-1,"7521":-1,"7522":4064,"7523":-1,"7524":-1,"7525":-1,"7526":-1,"7527":-1,"7528":-1,"7529":-1,"7530":-1,"7531":-1,"7532":-1,"7533":-1,"7534":-1,"7535":4065,"7536":-1,"7537":-1,"7538":-1,"7539":-1,"7540":-1,"7541":-1,"7542":-1,"7543":-1,"7544":4066,"7545":-1,"7546":-1,"7547":-1,"7548":-1,"7549":-1,"7550":-1,"7551":-1,"7552":-1,"7553":-1,"7554":4068,"7555":-1,"7556":-1,"7557":-1,"7558":-1,"7559":4064,"7560":-1,"7561":-1,"7562":-1,"7563":-1,"7564":-1,"7565":4068,"7566":-1,"7567":-1,"7568":-1,"7569":-1,"7570":-1,"7571":-1,"7572":-1,"7573":-1,"7574":-1,"7575":-1,"7576":-1,"7577":4064,"7578":-1,"7579":-1,"7580":-1,"7581":-1,"7582":-1,"7583":-1,"7584":-1,"7585":-1,"7586":-1,"7587":-1,"7588":-1,"7589":-1,"7590":-1,"7591":-1,"7592":-1,"7593":-1,"7594":-1,"7595":-1,"7596":-1,"7597":-1,"7598":4065,"7599":4067,"7600":-1,"7601":-1,"7602":-1,"7603":-1,"7604":-1,"7605":-1,"7606":-1,"7607":-1,"7608":-1,"7609":-1,"7610":-1,"7611":-1,"7612":-1,"7613":4067,"7614":-1,"7615":-1,"7616":4066,"7617":-1,"7618":-1,"7619":-1,"7620":-1,"7621":-1,"7622":-1,"7623":-1,"7624":-1,"7625":-1,"7626":-1,"7627":-1,"7628":-1,"7629":0,"7630":-1,"7631":-1,"7632":-1,"7633":-1,"7634":-1,"7635":-1,"7636":-1,"7637":-1,"7638":-1,"7639":-1,"7640":-1,"7641":-1,"7642":-1,"7643":-1,"7644":-1,"7645":-1,"7646":-1,"7647":-1,"7648":-1,"7649":-1,"7650":-1,"7651":-1,"7652":-1,"7653":-1,"7654":4067,"7655":-1,"7656":-1,"7657":-1,"7658":-1,"7659":-1,"7660":-1,"7661":-1,"7662":-1,"7663":-1,"7664":-1,"7665":-1,"7666":4064,"7667":-1,"7668":0,"7669":4065,"7670":-1,"7671":-1,"7672":-1,"7673":-1,"7674":-1,"7675":-1,"7676":-1,"7677":-1,"7678":-1,"7679":-1,"7680":-1,"7681":4063,"7682":-1,"7683":4067,"7684":-1,"7685":-1,"7686":-1,"7687":-1,"7688":-1,"7689":-1,"7690":-1,"7691":-1,"7692":-1,"7693":-1,"7694":-1,"7695":-1,"7696":-1,"7697":-1,"7698":4063,"7699":-1,"7700":-1,"7701":-1,"7702":-1,"7703":-1,"7704":-1,"7705":4063,"7706":4066,"7707":-1,"7708":-1,"7709":-1,"7710":-1,"7711":0,"7712":-1,"7713":0,"7714":-1,"7715":4064,"7716":-1,"7717":-1,"7718":-1,"7719":4067,"7720":-1,"7721":-1,"7722":0,"7723":-1,"7724":4065,"7725":-1,"7726":-1,"7727":-1,"7728":-1,"7729":-1,"7730":-1,"7731":-1,"7732":0,"7733":-1,"7734":-1,"7735":4067,"7736":-1,"7737":-1,"7738":-1,"7739":4064,"7740":4065,"7741":-1,"7742":-1,"7743":-1,"7744":-1,"7745":-1,"7746":-1,"7747":-1,"7748":-1,"7749":-1,"7750":4068,"7751":-1,"7752":-1,"7753":-1,"7754":-1,"7755":-1,"7756":-1,"7757":-1,"7758":-1,"7759":-1,"7760":-1,"7761":-1,"7762":-1,"7763":-1,"7764":4067,"7765":-1,"7766":-1,"7767":4067,"7768":4064,"7769":-1,"7770":-1,"7771":-1,"7772":-1,"7773":-1,"7774":-1,"7775":4068,"7776":-1,"7777":-1,"7778":-1,"7779":-1,"7780":-1,"7781":-1,"7782":-1,"7783":-1,"7784":-1,"7785":-1,"7786":-1,"7787":-1,"7788":-1,"7789":-1,"7790":4065,"7791":-1,"7792":-1,"7793":-1,"7794":-1,"7795":-1,"7796":-1,"7797":-1,"7798":-1,"7799":-1,"7800":-1,"7801":-1,"7802":-1,"7803":4065,"7804":-1,"7805":-1,"7806":-1,"7807":-1,"7808":4064,"7809":-1,"7810":-1,"7811":-1,"7812":-1,"7813":-1,"7814":4064,"7815":-1,"7816":-1,"7817":-1,"7818":4066,"7819":0,"7820":-1,"7821":-1,"7822":4065,"7823":-1,"7824":-1,"7825":-1,"7826":-1,"7827":-1,"7828":-1,"7829":4066,"7830":-1,"7831":-1,"7832":-1,"7833":-1,"7834":-1,"7835":-1,"7836":-1,"7837":-1,"7838":-1,"7839":-1,"7840":-1,"7841":4065,"7842":-1,"7843":-1,"7844":-1,"7845":4064,"7846":-1,"7847":-1,"7848":-1,"7849":-1,"7850":-1,"7851":4066,"7852":-1,"7853":-1,"7854":-1,"7855":-1,"7856":4065,"7857":-1,"7858":-1,"7859":-1,"7860":-1,"7861":-1,"7862":-1,"7863":-1,"7864":-1,"7865":-1,"7866":-1,"7867":-1,"7868":-1,"7869":-1,"7870":-1,"7871":4063,"7872":-1,"7873":-1,"7874":-1,"7875":-1,"7876":-1,"7877":4068,"7878":-1,"7879":4068,"7880":4065,"7881":-1,"7882":-1,"7883":-1,"7884":-1,"7885":4065,"7886":-1,"7887":-1,"7888":-1,"7889":-1,"7890":-1,"7891":-1,"7892":0,"7893":-1,"7894":-1,"7895":-1,"7896":-1,"7897":-1,"7898":-1,"7899":4066,"7900":-1,"7901":-1,"7902":-1,"7903":-1,"7904":-1,"7905":-1,"7906":-1,"7907":-1,"7908":-1,"7909":-1,"7910":-1,"7911":-1,"7912":-1,"7913":-1,"7914":-1,"7915":-1,"7916":0,"7917":-1,"7918":-1,"7919":-1,"7920":-1,"7921":-1,"7922":-1,"7923":4067,"7924":4063,"7925":-1,"7926":4064,"7927":-1,"7928":-1,"7929":0,"7930":-1,"7931":0,"7932":-1,"7933":-1,"7934":4065,"7935":4068,"7936":-1,"7937":-1,"7938":-1,"7939":-1,"7940":-1,"7941":-1,"7942":4065,"7943":-1,"7944":-1,"7945":-1,"7946":-1,"7947":-1,"7948":-1,"7949":-1,"7950":-1,"7951":-1,"7952":-1,"7953":-1,"7954":-1,"7955":-1,"7956":-1,"7957":-1,"7958":-1,"7959":-1,"7960":-1,"7961":-1,"7962":4066,"7963":-1,"7964":-1,"7965":4067,"7966":-1,"7967":-1,"7968":-1,"7969":-1,"7970":-1,"7971":-1,"7972":-1,"7973":-1,"7974":-1,"7975":4065,"7976":-1,"7977":-1,"7978":-1,"7979":-1,"7980":-1,"7981":-1,"7982":-1,"7983":-1,"7984":-1,"7985":-1,"7986":-1,"7987":-1,"7988":-1,"7989":-1,"7990":-1,"7991":-1,"7992":-1,"7993":-1,"7994":-1,"7995":-1,"7996":-1,"7997":-1,"7998":-1,"7999":-1,"8000":-1,"8001":-1,"8002":-1,"8003":0,"8004":-1,"8005":-1,"8006":-1,"8007":-1,"8008":-1,"8009":-1,"8010":-1,"8011":4063,"8012":-1,"8013":4066,"8014":-1,"8015":4067,"8016":-1,"8017":-1,"8018":-1,"8019":0,"8020":-1,"8021":-1,"8022":-1,"8023":-1,"8024":-1,"8025":-1,"8026":-1,"8027":-1,"8028":-1,"8029":-1,"8030":-1,"8031":-1,"8032":-1,"8033":-1,"8034":-1,"8035":-1,"8036":-1,"8037":-1,"8038":-1,"8039":-1,"8040":-1,"8041":-1,"8042":-1,"8043":4068,"8044":-1,"8045":-1,"8046":-1,"8047":-1,"8048":4065,"8049":-1,"8050":-1,"8051":-1,"8052":-1,"8053":-1,"8054":-1,"8055":-1,"8056":-1,"8057":-1,"8058":4066,"8059":-1,"8060":4064,"8061":-1,"8062":-1,"8063":-1,"8064":-1,"8065":-1,"8066":4067,"8067":-1,"8068":-1,"8069":4068,"8070":-1,"8071":-1,"8072":-1,"8073":-1,"8074":-1,"8075":-1,"8076":-1,"8077":0,"8078":-1,"8079":4068,"8080":-1,"8081":-1,"8082":-1,"8083":-1,"8084":-1,"8085":-1,"8086":-1,"8087":-1,"8088":-1,"8089":-1,"8090":-1,"8091":-1,"8092":4067,"8093":-1,"8094":-1,"8095":4065,"8096":4065,"8097":-1,"8098":-1,"8099":-1,"8100":-1,"8101":-1,"8102":-1,"8103":-1,"8104":-1,"8105":-1,"8106":4066,"8107":-1,"8108":-1,"8109":-1,"8110":-1,"8111":-1,"8112":-1,"8113":-1,"8114":-1,"8115":-1,"8116":4064,"8117":-1,"8118":-1,"8119":-1,"8120":-1,"8121":4066,"8122":-1,"8123":-1,"8124":-1,"8125":-1,"8126":4066,"8127":-1,"8128":-1,"8129":4065,"8130":-1,"8131":-1,"8132":-1,"8133":-1,"8134":-1,"8135":-1,"8136":-1,"8137":-1,"8138":-1,"8139":-1,"8140":4064,"8141":4066,"8142":-1,"8143":0,"8144":-1,"8145":-1,"8146":-1,"8147":-1,"8148":-1,"8149":-1,"8150":-1,"8151":-1,"8152":-1,"8153":-1,"8154":-1,"8155":-1,"8156":-1,"8157":-1,"8158":-1,"8159":-1,"8160":-1,"8161":-1,"8162":-1,"8163":-1,"8164":-1,"8165":-1,"8166":4065,"8167":-1,"8168":-1,"8169":-1,"8170":-1,"8171":-1,"8172":4066,"8173":-1,"8174":-1,"8175":-1,"8176":-1,"8177":-1,"8178":-1,"8179":-1,"8180":-1,"8181":4068,"8182":-1,"8183":-1,"8184":-1,"8185":-1,"8186":4067,"8187":-1,"8188":4064,"8189":-1,"8190":-1,"8191":-1,"8192":-1,"8193":-1,"8194":-1,"8195":-1,"8196":-1,"8197":4065,"8198":-1,"8199":-1,"8200":-1,"8201":-1,"8202":-1,"8203":-1,"8204":-1,"8205":4065,"8206":-1,"8207":-1,"8208":-1,"8209":-1,"8210":-1,"8211":-1,"8212":-1,"8213":-1,"8214":-1,"8215":-1,"8216":-1,"8217":4068,"8218":-1,"8219":-1,"8220":4067,"8221":-1,"8222":-1,"8223":-1,"8224":-1,"8225":-1,"8226":-1,"8227":-1,"8228":-1,"8229":-1,"8230":-1,"8231":-1,"8232":4065,"8233":-1,"8234":-1,"8235":-1,"8236":-1,"8237":-1,"8238":-1,"8239":-1,"8240":-1,"8241":-1,"8242":-1,"8243":-1,"8244":-1,"8245":4065,"8246":-1,"8247":-1,"8248":-1,"8249":-1,"8250":-1,"8251":-1,"8252":-1,"8253":0,"8254":4064,"8255":4064,"8256":-1,"8257":-1,"8258":-1,"8259":-1,"8260":-1,"8261":4064,"8262":-1,"8263":-1,"8264":4066,"8265":-1,"8266":4068,"8267":4064,"8268":4064,"8269":-1,"8270":-1,"8271":-1,"8272":-1,"8273":-1,"8274":-1,"8275":4066,"8276":-1,"8277":-1,"8278":-1,"8279":-1,"8280":-1,"8281":-1,"8282":-1,"8283":-1,"8284":-1,"8285":-1,"8286":-1,"8287":4064,"8288":-1,"8289":-1,"8290":-1,"8291":-1,"8292":-1,"8293":4066,"8294":-1,"8295":-1,"8296":-1,"8297":-1,"8298":-1,"8299":4064,"8300":-1,"8301":-1,"8302":0,"8303":-1,"8304":-1,"8305":-1,"8306":-1,"8307":-1,"8308":-1,"8309":-1,"8310":-1,"8311":-1,"8312":-1,"8313":4067,"8314":-1,"8315":-1,"8316":-1,"8317":-1,"8318":-1,"8319":4067,"8320":-1,"8321":-1,"8322":-1,"8323":-1,"8324":4066,"8325":-1,"8326":-1,"8327":0,"8328":-1,"8329":-1,"8330":-1,"8331":-1,"8332":-1,"8333":4067,"8334":-1,"8335":-1,"8336":0,"8337":-1,"8338":-1,"8339":4065,"8340":-1,"8341":4067,"8342":-1,"8343":-1,"8344":-1,"8345":-1,"8346":-1,"8347":-1,"8348":4065,"8349":-1,"8350":-1,"8351":-1,"8352":-1,"8353":-1,"8354":-1,"8355":-1,"8356":-1,"8357":-1,"8358":-1,"8359":-1,"8360":-1,"8361":-1,"8362":-1,"8363":-1,"8364":-1,"8365":-1,"8366":4064,"8367":-1,"8368":-1,"8369":-1,"8370":-1,"8371":-1,"8372":-1,"8373":4068,"8374":4065,"8375":-1,"8376":-1,"8377":-1,"8378":-1,"8379":-1,"8380":-1,"8381":0,"8382":4067,"8383":-1,"8384":-1,"8385":-1,"8386":4064,"8387":-1,"8388":-1,"8389":-1,"8390":-1,"8391":-1,"8392":-1,"8393":-1,"8394":-1,"8395":-1,"8396":-1,"8397":-1,"8398":-1,"8399":-1,"8400":-1,"8401":4064,"8402":-1,"8403":-1,"8404":-1,"8405":4065,"8406":-1,"8407":-1,"8408":-1,"8409":-1,"8410":-1,"8411":4065,"8412":-1,"8413":-1,"8414":4068,"8415":-1,"8416":-1,"8417":-1,"8418":-1,"8419":-1,"8420":-1,"8421":-1,"8422":-1,"8423":-1,"8424":-1,"8425":4063,"8426":-1,"8427":-1,"8428":-1,"8429":-1,"8430":-1,"8431":-1,"8432":-1,"8433":-1,"8434":-1,"8435":4065,"8436":-1,"8437":4065,"8438":-1,"8439":-1,"8440":-1,"8441":-1,"8442":-1,"8443":-1,"8444":4067,"8445":4067,"8446":-1,"8447":-1,"8448":-1,"8449":-1,"8450":-1,"8451":-1,"8452":-1,"8453":-1,"8454":-1,"8455":-1,"8456":-1,"8457":-1,"8458":-1,"8459":-1,"8460":-1,"8461":-1,"8462":4064,"8463":4066,"8464":-1,"8465":-1,"8466":-1,"8467":-1,"8468":-1,"8469":-1,"8470":-1,"8471":-1,"8472":-1,"8473":-1,"8474":-1,"8475":-1,"8476":-1,"8477":-1,"8478":-1,"8479":4063,"8480":-1,"8481":4065,"8482":-1,"8483":-1,"8484":-1,"8485":-1,"8486":-1,"8487":-1,"8488":-1,"8489":-1,"8490":4067,"8491":-1,"8492":-1,"8493":-1,"8494":-1,"8495":0,"8496":4066,"8497":-1,"8498":4063,"8499":-1,"8500":-1,"8501":-1,"8502":-1,"8503":-1,"8504":-1,"8505":-1,"8506":4064,"8507":-1,"8508":-1,"8509":-1,"8510":-1,"8511":-1,"8512":-1,"8513":-1,"8514":-1,"8515":4063,"8516":-1,"8517":0,"8518":-1,"8519":4063,"8520":4066,"8521":-1,"8522":-1,"8523":4065,"8524":4066,"8525":-1,"8526":4065,"8527":-1,"8528":-1,"8529":-1,"8530":-1,"8531":-1,"8532":-1,"8533":-1,"8534":-1,"8535":-1,"8536":4066,"8537":4068,"8538":-1,"8539":-1,"8540":-1,"8541":-1,"8542":-1,"8543":4063,"8544":4064,"8545":-1,"8546":-1,"8547":4067,"8548":-1,"8549":4066,"8550":-1,"8551":-1,"8552":4064,"8553":-1,"8554":-1,"8555":-1,"8556":-1,"8557":-1,"8558":4067,"8559":-1,"8560":-1,"8561":-1,"8562":-1,"8563":-1,"8564":-1,"8565":-1,"8566":-1,"8567":-1,"8568":-1,"8569":-1,"8570":-1,"8571":-1,"8572":-1,"8573":-1,"8574":-1,"8575":-1,"8576":-1,"8577":-1,"8578":4067,"8579":-1,"8580":-1,"8581":-1,"8582":-1,"8583":4066,"8584":-1,"8585":4064,"8586":0,"8587":-1,"8588":-1,"8589":-1,"8590":-1,"8591":4067,"8592":-1,"8593":-1,"8594":-1,"8595":-1,"8596":-1,"8597":4066,"8598":-1,"8599":-1,"8600":-1,"8601":-1,"8602":-1,"8603":-1,"8604":-1,"8605":-1,"8606":-1,"8607":-1,"8608":-1,"8609":-1,"8610":-1,"8611":-1,"8612":-1,"8613":-1,"8614":4064,"8615":-1,"8616":-1,"8617":-1,"8618":-1,"8619":-1,"8620":4066,"8621":-1,"8622":-1,"8623":-1,"8624":-1,"8625":-1,"8626":-1,"8627":4066,"8628":-1,"8629":-1,"8630":-1,"8631":-1,"8632":-1,"8633":-1,"8634":-1,"8635":-1,"8636":-1,"8637":-1,"8638":-1,"8639":-1,"8640":-1,"8641":-1,"8642":4066,"8643":-1,"8644":-1,"8645":-1,"8646":-1,"8647":-1,"8648":-1,"8649":4063,"8650":-1,"8651":-1,"8652":0,"8653":4068,"8654":-1,"8655":-1,"8656":-1,"8657":-1,"8658":0,"8659":-1,"8660":-1,"8661":4067,"8662":-1,"8663":-1,"8664":-1,"8665":-1,"8666":-1,"8667":0,"8668":-1,"8669":-1,"8670":-1,"8671":-1,"8672":-1,"8673":-1,"8674":-1,"8675":-1,"8676":-1,"8677":-1,"8678":-1,"8679":-1,"8680":-1,"8681":4068,"8682":4067,"8683":-1,"8684":-1,"8685":4066,"8686":-1,"8687":-1,"8688":-1,"8689":-1,"8690":-1,"8691":-1,"8692":-1,"8693":-1,"8694":-1,"8695":-1,"8696":-1,"8697":-1,"8698":-1,"8699":-1,"8700":-1,"8701":4067,"8702":-1,"8703":-1,"8704":-1,"8705":-1,"8706":-1,"8707":4063,"8708":-1,"8709":0,"8710":-1,"8711":-1,"8712":-1,"8713":4066,"8714":-1,"8715":-1,"8716":-1,"8717":-1,"8718":-1,"8719":-1,"8720":-1,"8721":-1,"8722":-1,"8723":0,"8724":-1,"8725":-1,"8726":-1,"8727":-1,"8728":-1,"8729":-1,"8730":-1,"8731":-1,"8732":-1,"8733":-1,"8734":4066,"8735":-1,"8736":-1,"8737":-1,"8738":-1,"8739":-1,"8740":-1,"8741":-1,"8742":-1,"8743":-1,"8744":-1,"8745":-1,"8746":-1,"8747":-1,"8748":-1,"8749":-1,"8750":-1,"8751":-1,"8752":4065,"8753":-1,"8754":4067,"8755":-1,"8756":-1,"8757":4067,"8758":-1,"8759":-1,"8760":-1,"8761":-1,"8762":-1,"8763":-1,"8764":-1,"8765":-1,"8766":-1,"8767":-1,"8768":-1,"8769":-1,"8770":4063,"8771":-1,"8772":-1,"8773":-1,"8774":-1,"8775":-1,"8776":-1,"8777":-1,"8778":-1,"8779":-1,"8780":-1,"8781":4063,"8782":-1,"8783":-1,"8784":-1,"8785":-1,"8786":-1,"8787":-1,"8788":-1,"8789":-1,"8790":-1,"8791":-1,"8792":-1,"8793":-1,"8794":-1,"8795":-1,"8796":-1,"8797":-1,"8798":-1,"8799":-1,"8800":-1,"8801":-1,"8802":-1,"8803":-1,"8804":-1,"8805":-1,"8806":4068,"8807":-1,"8808":-1,"8809":-1,"8810":-1,"8811":-1,"8812":-1,"8813":4064,"8814":-1,"8815":4066,"8816":-1,"8817":-1,"8818":-1,"8819":-1,"8820":4068,"8821":-1,"8822":-1,"8823":-1,"8824":4066,"8825":0,"8826":-1,"8827":-1,"8828":-1,"8829":-1,"8830":-1,"8831":-1,"8832":-1,"8833":-1,"8834":-1,"8835":-1,"8836":4064,"8837":-1,"8838":-1,"8839":-1,"8840":-1,"8841":4068,"8842":4065,"8843":-1,"8844":-1,"8845":-1,"8846":-1,"8847":-1,"8848":-1,"8849":4065,"8850":-1,"8851":4067,"8852":-1,"8853":-1,"8854":-1,"8855":-1,"8856":-1,"8857":-1,"8858":-1,"8859":-1,"8860":-1,"8861":-1,"8862":-1,"8863":-1,"8864":4067,"8865":4066,"8866":-1,"8867":-1,"8868":-1,"8869":-1,"8870":-1,"8871":0,"8872":0,"8873":-1,"8874":-1,"8875":-1,"8876":-1,"8877":4066,"8878":4063,"8879":-1,"8880":-1,"8881":-1,"8882":4065,"8883":-1,"8884":-1,"8885":-1,"8886":-1,"8887":-1,"8888":-1,"8889":0,"8890":-1,"8891":-1,"8892":4064,"8893":-1,"8894":-1,"8895":4063,"8896":4067,"8897":-1,"8898":4065,"8899":-1,"8900":-1,"8901":-1,"8902":-1,"8903":0,"8904":4065,"8905":4064,"8906":0,"8907":-1,"8908":-1,"8909":4065,"8910":-1,"8911":-1,"8912":-1,"8913":4063,"8914":-1,"8915":-1,"8916":4063,"8917":-1,"8918":0,"8919":-1,"8920":-1,"8921":4063,"8922":4064,"8923":-1,"8924":-1,"8925":-1,"8926":4063,"8927":-1,"8928":-1,"8929":-1,"8930":-1,"8931":0,"8932":4068,"8933":0,"8934":-1,"8935":-1,"8936":-1,"8937":-1,"8938":4068,"8939":-1,"8940":4064,"8941":-1,"8942":4063,"8943":-1,"8944":-1,"8945":-1,"8946":-1,"8947":-1,"8948":-1,"8949":-1,"8950":-1,"8951":-1,"8952":-1,"8953":-1,"8954":-1,"8955":-1,"8956":-1,"8957":-1,"8958":-1,"8959":-1,"8960":-1,"8961":-1,"8962":-1,"8963":-1,"8964":-1,"8965":-1,"8966":-1,"8967":-1,"8968":-1,"8969":-1,"8970":-1,"8971":-1,"8972":4066,"8973":-1,"8974":-1,"8975":-1,"8976":-1,"8977":0,"8978":-1,"8979":4065,"8980":-1,"8981":-1,"8982":-1,"8983":-1,"8984":4063,"8985":-1,"8986":-1,"8987":-1,"8988":-1,"8989":-1,"8990":-1,"8991":-1,"8992":-1,"8993":-1,"8994":-1,"8995":4066,"8996":-1,"8997":-1,"8998":-1,"8999":-1,"9000":-1,"9001":-1,"9002":-1,"9003":-1,"9004":-1,"9005":-1,"9006":4068,"9007":-1,"9008":-1,"9009":-1,"9010":-1,"9011":-1,"9012":0,"9013":-1,"9014":-1,"9015":-1,"9016":-1,"9017":-1,"9018":-1,"9019":-1,"9020":-1,"9021":4063,"9022":-1,"9023":-1,"9024":-1,"9025":-1,"9026":0,"9027":-1,"9028":-1,"9029":4066,"9030":-1,"9031":-1,"9032":-1,"9033":-1,"9034":-1,"9035":-1,"9036":-1,"9037":4063,"9038":0,"9039":-1,"9040":4065,"9041":4064,"9042":-1,"9043":4066,"9044":-1,"9045":-1,"9046":-1,"9047":4066,"9048":-1,"9049":-1,"9050":4067,"9051":-1,"9052":-1,"9053":-1,"9054":-1,"9055":-1,"9056":4067,"9057":-1,"9058":-1,"9059":-1,"9060":-1,"9061":-1,"9062":-1,"9063":-1,"9064":-1,"9065":-1,"9066":4065,"9067":4065,"9068":-1,"9069":-1,"9070":-1,"9071":-1,"9072":-1,"9073":-1,"9074":-1,"9075":-1,"9076":-1,"9077":0,"9078":-1,"9079":-1,"9080":4067,"9081":-1,"9082":-1,"9083":-1,"9084":-1,"9085":-1,"9086":-1,"9087":4067,"9088":-1,"9089":-1,"9090":-1,"9091":-1,"9092":-1,"9093":-1,"9094":-1,"9095":-1,"9096":-1,"9097":-1,"9098":-1,"9099":-1,"9100":-1,"9101":-1,"9102":-1,"9103":-1,"9104":-1,"9105":-1,"9106":-1,"9107":4063,"9108":-1,"9109":-1,"9110":-1,"9111":-1,"9112":4068,"9113":4064,"9114":-1,"9115":4068,"9116":-1,"9117":-1,"9118":-1,"9119":-1,"9120":-1,"9121":-1,"9122":-1,"9123":-1,"9124":-1,"9125":4067,"9126":-1,"9127":-1,"9128":-1,"9129":-1,"9130":-1,"9131":-1,"9132":-1,"9133":-1,"9134":-1,"9135":-1,"9136":-1,"9137":4067,"9138":-1,"9139":4064,"9140":4067,"9141":-1,"9142":-1,"9143":-1,"9144":-1,"9145":-1,"9146":-1,"9147":-1,"9148":-1,"9149":-1,"9150":-1,"9151":-1,"9152":-1,"9153":-1,"9154":-1,"9155":-1,"9156":4064,"9157":-1,"9158":-1,"9159":4065,"9160":-1,"9161":-1,"9162":-1,"9163":-1,"9164":-1,"9165":4068,"9166":-1,"9167":-1,"9168":-1,"9169":-1,"9170":-1,"9171":-1,"9172":-1,"9173":0,"9174":-1,"9175":-1,"9176":-1,"9177":-1,"9178":-1,"9179":-1,"9180":4065,"9181":-1,"9182":-1,"9183":-1,"9184":-1,"9185":-1,"9186":0,"9187":-1,"9188":-1,"9189":-1,"9190":0,"9191":-1,"9192":-1,"9193":-1,"9194":-1,"9195":0,"9196":-1,"9197":-1,"9198":-1,"9199":-1,"9200":-1,"9201":-1,"9202":-1,"9203":-1,"9204":-1,"9205":-1,"9206":-1,"9207":-1,"9208":-1,"9209":4064,"9210":-1,"9211":-1,"9212":-1,"9213":-1,"9214":-1,"9215":-1,"9216":-1,"9217":-1,"9218":-1,"9219":-1,"9220":-1,"9221":-1,"9222":-1,"9223":-1,"9224":-1,"9225":0,"9226":-1,"9227":-1,"9228":-1,"9229":-1,"9230":4063,"9231":-1,"9232":-1,"9233":-1,"9234":-1,"9235":-1,"9236":-1,"9237":-1,"9238":0,"9239":-1,"9240":-1,"9241":-1,"9242":0,"9243":-1,"9244":-1,"9245":-1,"9246":-1,"9247":-1,"9248":-1,"9249":-1,"9250":-1,"9251":-1,"9252":-1,"9253":-1,"9254":-1,"9255":-1,"9256":-1,"9257":-1,"9258":-1,"9259":4066,"9260":-1,"9261":-1,"9262":-1,"9263":-1,"9264":-1,"9265":-1,"9266":4063,"9267":-1,"9268":-1,"9269":-1,"9270":-1,"9271":-1,"9272":-1,"9273":-1,"9274":-1,"9275":-1,"9276":4066,"9277":-1,"9278":-1,"9279":-1,"9280":-1,"9281":-1,"9282":-1,"9283":0,"9284":-1,"9285":-1,"9286":-1,"9287":-1,"9288":-1,"9289":-1,"9290":-1,"9291":-1,"9292":-1,"9293":-1,"9294":-1,"9295":-1,"9296":-1,"9297":-1,"9298":-1,"9299":-1,"9300":-1,"9301":-1,"9302":-1,"9303":-1,"9304":-1,"9305":-1,"9306":-1,"9307":-1,"9308":-1,"9309":-1,"9310":4064,"9311":-1,"9312":-1,"9313":-1,"9314":-1,"9315":-1,"9316":-1,"9317":4063,"9318":4065,"9319":-1,"9320":4065,"9321":-1,"9322":-1,"9323":-1,"9324":-1,"9325":-1,"9326":-1,"9327":0,"9328":-1,"9329":-1,"9330":4066,"9331":-1,"9332":-1,"9333":-1,"9334":-1,"9335":-1,"9336":-1,"9337":-1,"9338":-1,"9339":-1,"9340":-1,"9341":-1,"9342":-1,"9343":-1,"9344":-1,"9345":0,"9346":-1,"9347":-1,"9348":-1,"9349":-1,"9350":-1,"9351":-1,"9352":-1,"9353":-1,"9354":-1,"9355":-1,"9356":-1,"9357":-1,"9358":-1,"9359":4066,"9360":-1,"9361":-1,"9362":-1,"9363":-1,"9364":-1,"9365":-1,"9366":-1,"9367":-1,"9368":-1,"9369":-1,"9370":-1,"9371":-1,"9372":-1,"9373":4067,"9374":-1,"9375":-1,"9376":-1,"9377":-1,"9378":-1,"9379":-1,"9380":4065,"9381":-1,"9382":-1,"9383":-1,"9384":-1,"9385":-1,"9386":-1,"9387":-1,"9388":-1,"9389":-1,"9390":-1,"9391":-1,"9392":-1,"9393":-1,"9394":-1,"9395":-1,"9396":-1,"9397":-1,"9398":-1,"9399":-1,"9400":-1,"9401":-1,"9402":-1,"9403":-1,"9404":-1,"9405":-1,"9406":-1,"9407":-1,"9408":-1,"9409":-1,"9410":-1,"9411":-1,"9412":4064,"9413":-1,"9414":-1,"9415":-1,"9416":-1,"9417":4067,"9418":-1,"9419":-1,"9420":4065,"9421":-1,"9422":-1,"9423":-1,"9424":4066,"9425":-1,"9426":-1,"9427":-1,"9428":-1,"9429":-1,"9430":0,"9431":-1,"9432":-1,"9433":-1,"9434":-1,"9435":-1,"9436":-1,"9437":4068,"9438":-1,"9439":-1,"9440":4063,"9441":-1,"9442":-1,"9443":4065,"9444":-1,"9445":0,"9446":-1,"9447":-1,"9448":-1,"9449":-1,"9450":-1,"9451":-1,"9452":-1,"9453":4067,"9454":-1,"9455":-1,"9456":-1,"9457":-1,"9458":-1,"9459":-1,"9460":-1,"9461":-1,"9462":-1,"9463":4067,"9464":4065,"9465":-1,"9466":4066,"9467":-1,"9468":-1,"9469":-1,"9470":-1,"9471":-1,"9472":-1,"9473":-1,"9474":-1,"9475":-1,"9476":-1,"9477":-1,"9478":-1,"9479":-1,"9480":-1,"9481":-1,"9482":-1,"9483":-1,"9484":4064,"9485":-1,"9486":-1,"9487":-1,"9488":4066,"9489":4067,"9490":-1,"9491":4066,"9492":-1,"9493":-1,"9494":-1,"9495":-1,"9496":-1,"9497":-1,"9498":-1,"9499":-1,"9500":-1,"9501":4063,"9502":4067,"9503":-1,"9504":-1,"9505":-1,"9506":-1,"9507":4065,"9508":-1,"9509":-1,"9510":-1,"9511":-1,"9512":-1,"9513":-1,"9514":-1,"9515":-1,"9516":0,"9517":4063,"9518":0,"9519":-1,"9520":-1,"9521":-1,"9522":-1,"9523":-1,"9524":-1,"9525":-1,"9526":-1,"9527":-1,"9528":-1,"9529":-1,"9530":-1,"9531":-1,"9532":-1,"9533":-1,"9534":-1,"9535":-1,"9536":-1,"9537":-1,"9538":-1,"9539":-1,"9540":-1,"9541":-1,"9542":-1,"9543":-1,"9544":-1,"9545":-1,"9546":4065,"9547":4066,"9548":-1,"9549":-1,"9550":-1,"9551":-1,"9552":0,"9553":-1,"9554":-1,"9555":-1,"9556":-1,"9557":-1,"9558":-1,"9559":-1,"9560":4067,"9561":-1,"9562":-1,"9563":-1,"9564":-1,"9565":-1,"9566":-1,"9567":-1,"9568":-1,"9569":-1,"9570":-1,"9571":-1,"9572":-1,"9573":-1,"9574":-1,"9575":-1,"9576":-1,"9577":-1,"9578":4066,"9579":-1,"9580":-1,"9581":-1,"9582":-1,"9583":-1,"9584":4066,"9585":-1,"9586":-1,"9587":-1,"9588":-1,"9589":-1,"9590":-1,"9591":-1,"9592":0,"9593":4063,"9594":-1,"9595":-1,"9596":4068,"9597":4065,"9598":0,"9599":4065,"9600":-1,"9601":4066,"9602":-1,"9603":-1,"9604":4064,"9605":-1,"9606":-1,"9607":-1,"9608":-1,"9609":-1,"9610":0,"9611":-1,"9612":-1,"9613":-1,"9614":-1,"9615":-1,"9616":-1,"9617":-1,"9618":-1,"9619":-1,"9620":-1,"9621":-1,"9622":-1,"9623":-1,"9624":4067,"9625":-1,"9626":4063,"9627":-1,"9628":4068,"9629":-1,"9630":-1,"9631":-1,"9632":4066,"9633":-1,"9634":-1,"9635":-1,"9636":-1,"9637":-1,"9638":-1,"9639":0,"9640":-1,"9641":-1,"9642":-1,"9643":-1,"9644":-1,"9645":-1,"9646":-1,"9647":-1,"9648":4067,"9649":-1,"9650":-1,"9651":-1,"9652":-1,"9653":-1,"9654":0,"9655":-1,"9656":-1,"9657":-1,"9658":4064,"9659":-1,"9660":4065,"9661":-1,"9662":-1,"9663":-1,"9664":-1,"9665":-1,"9666":-1,"9667":-1,"9668":-1,"9669":-1,"9670":-1,"9671":-1,"9672":-1,"9673":-1,"9674":-1,"9675":-1,"9676":-1,"9677":-1,"9678":-1,"9679":-1,"9680":-1,"9681":-1,"9682":-1,"9683":4066,"9684":4067,"9685":-1,"9686":-1,"9687":4064,"9688":-1,"9689":4063,"9690":-1,"9691":-1,"9692":4065,"9693":-1,"9694":-1,"9695":-1,"9696":-1,"9697":-1,"9698":-1,"9699":-1,"9700":-1,"9701":-1,"9702":-1,"9703":-1,"9704":-1,"9705":4066,"9706":0,"9707":-1,"9708":-1,"9709":-1,"9710":-1,"9711":0,"9712":-1,"9713":0,"9714":-1,"9715":-1,"9716":0,"9717":-1,"9718":4063,"9719":4064,"9720":-1,"9721":-1,"9722":-1,"9723":-1,"9724":-1,"9725":-1,"9726":-1,"9727":-1,"9728":-1,"9729":-1,"9730":-1,"9731":-1,"9732":-1,"9733":-1,"9734":-1,"9735":-1,"9736":-1,"9737":-1,"9738":-1,"9739":-1,"9740":-1,"9741":-1,"9742":-1,"9743":-1,"9744":4063,"9745":-1,"9746":-1,"9747":-1,"9748":-1,"9749":-1,"9750":-1,"9751":-1,"9752":-1,"9753":-1,"9754":-1,"9755":-1,"9756":-1,"9757":-1,"9758":-1,"9759":-1,"9760":-1,"9761":-1,"9762":-1,"9763":4065,"9764":-1,"9765":-1,"9766":-1,"9767":-1,"9768":-1,"9769":-1,"9770":-1,"9771":-1,"9772":-1,"9773":-1,"9774":4065,"9775":0,"9776":4065,"9777":-1,"9778":-1,"9779":-1,"9780":-1,"9781":4067,"9782":-1,"9783":4063,"9784":-1,"9785":4065,"9786":-1,"9787":-1,"9788":-1,"9789":-1,"9790":-1,"9791":-1,"9792":-1,"9793":-1,"9794":-1,"9795":-1,"9796":-1,"9797":4063,"9798":-1,"9799":-1,"9800":-1,"9801":4067,"9802":-1,"9803":4066,"9804":-1,"9805":4066,"9806":-1,"9807":-1,"9808":-1,"9809":-1,"9810":-1,"9811":-1,"9812":-1,"9813":-1,"9814":-1,"9815":-1,"9816":-1,"9817":-1,"9818":-1,"9819":-1,"9820":-1,"9821":-1,"9822":-1,"9823":-1,"9824":-1,"9825":-1,"9826":-1,"9827":-1,"9828":-1,"9829":-1,"9830":-1,"9831":-1,"9832":-1,"9833":-1,"9834":-1,"9835":-1,"9836":-1,"9837":-1,"9838":-1,"9839":-1,"9840":-1,"9841":-1,"9842":-1,"9843":-1,"9844":-1,"9845":-1,"9846":-1,"9847":0,"9848":-1,"9849":-1,"9850":-1,"9851":-1,"9852":-1,"9853":-1,"9854":-1,"9855":-1,"9856":-1,"9857":-1,"9858":4067,"9859":-1,"9860":-1,"9861":-1,"9862":-1,"9863":-1,"9864":-1,"9865":-1,"9866":-1,"9867":-1,"9868":-1,"9869":-1,"9870":-1,"9871":-1,"9872":0,"9873":4065,"9874":4065,"9875":-1,"9876":-1,"9877":-1,"9878":4066,"9879":-1,"9880":-1,"9881":-1,"9882":-1,"9883":4064,"9884":-1,"9885":4066,"9886":-1,"9887":-1,"9888":-1,"9889":-1,"9890":-1,"9891":0,"9892":-1,"9893":-1,"9894":-1,"9895":-1,"9896":-1,"9897":-1,"9898":-1,"9899":-1,"9900":-1,"9901":-1,"9902":-1,"9903":-1,"9904":-1,"9905":-1,"9906":-1,"9907":-1,"9908":-1,"9909":-1,"9910":-1,"9911":4065,"9912":-1,"9913":-1,"9914":-1,"9915":-1,"9916":-1,"9917":-1,"9918":-1,"9919":-1,"9920":4068,"9921":-1,"9922":-1,"9923":-1,"9924":-1,"9925":4067,"9926":4066,"9927":-1,"9928":-1,"9929":4067,"9930":-1,"9931":-1,"9932":-1,"9933":-1,"9934":-1,"9935":-1,"9936":4064,"9937":-1,"9938":-1,"9939":-1,"9940":-1,"9941":-1,"9942":-1,"9943":-1,"9944":-1,"9945":-1,"9946":4064,"9947":-1,"9948":-1,"9949":4067,"9950":-1,"9951":-1,"9952":-1,"9953":-1,"9954":-1,"9955":-1,"9956":-1,"9957":-1,"9958":-1,"9959":-1,"9960":-1,"9961":4068,"9962":-1,"9963":-1,"9964":-1,"9965":-1,"9966":0,"9967":4066,"9968":4065,"9969":-1,"9970":-1,"9971":-1,"9972":-1,"9973":-1,"9974":-1,"9975":-1,"9976":-1,"9977":0,"9978":-1,"9979":-1,"9980":-1,"9981":-1,"9982":-1,"9983":4066,"9984":4068,"9985":-1,"9986":-1,"9987":-1,"9988":-1,"9989":-1,"9990":4067,"9991":-1,"9992":-1,"9993":-1,"9994":-1,"9995":0,"9996":-1,"9997":-1,"9998":-1,"9999":-1,"10000":-1,"10001":-1,"10002":-1,"10003":-1,"10004":0,"10005":-1,"10006":-1,"10007":-1,"10008":-1,"10009":-1,"10010":-1,"10011":-1,"10012":-1,"10013":-1,"10014":-1,"10015":-1,"10016":-1,"10017":-1,"10018":-1,"10019":-1,"10020":-1,"10021":-1,"10022":0,"10023":-1,"10024":0,"10025":4066,"10026":-1,"10027":-1,"10028":-1,"10029":-1,"10030":4065,"10031":-1,"10032":-1,"10033":-1,"10034":-1,"10035":-1,"10036":-1,"10037":-1,"10038":-1,"10039":-1,"10040":4066,"10041":-1,"10042":-1,"10043":-1,"10044":-1,"10045":-1,"10046":-1,"10047":-1,"10048":-1,"10049":-1,"10050":-1,"10051":4066,"10052":-1,"10053":-1,"10054":-1,"10055":-1,"10056":-1,"10057":-1,"10058":-1,"10059":-1,"10060":-1,"10061":-1,"10062":4063,"10063":-1,"10064":-1,"10065":-1,"10066":-1,"10067":4066,"10068":-1,"10069":-1,"10070":-1,"10071":-1,"10072":0,"10073":-1,"10074":-1,"10075":-1,"10076":-1,"10077":-1,"10078":-1,"10079":-1,"10080":-1,"10081":-1,"10082":-1,"10083":-1,"10084":-1,"10085":-1,"10086":-1,"10087":-1,"10088":4065,"10089":-1,"10090":-1,"10091":-1,"10092":0,"10093":-1,"10094":0,"10095":-1,"10096":4068,"10097":-1,"10098":-1,"10099":-1,"10100":-1,"10101":-1,"10102":-1,"10103":-1,"10104":-1,"10105":-1,"10106":-1,"10107":4067,"10108":-1,"10109":-1,"10110":-1,"10111":-1,"10112":-1,"10113":-1,"10114":-1,"10115":-1,"10116":-1,"10117":-1,"10118":-1,"10119":-1,"10120":-1,"10121":-1,"10122":-1,"10123":4066,"10124":-1,"10125":-1,"10126":-1,"10127":-1,"10128":0,"10129":-1,"10130":-1,"10131":-1,"10132":-1,"10133":4067,"10134":-1,"10135":-1,"10136":4067,"10137":0,"10138":-1,"10139":-1,"10140":-1,"10141":-1,"10142":4065,"10143":-1,"10144":-1,"10145":-1,"10146":-1,"10147":-1,"10148":-1,"10149":-1,"10150":-1,"10151":4068,"10152":-1,"10153":-1,"10154":-1,"10155":-1,"10156":-1,"10157":-1,"10158":-1,"10159":-1,"10160":-1,"10161":-1,"10162":-1,"10163":-1,"10164":-1,"10165":-1,"10166":-1,"10167":-1,"10168":4066,"10169":-1,"10170":-1,"10171":-1,"10172":4067,"10173":-1,"10174":-1,"10175":-1,"10176":-1,"10177":-1,"10178":-1,"10179":4064,"10180":-1,"10181":-1,"10182":-1,"10183":-1,"10184":4064,"10185":-1,"10186":-1,"10187":-1,"10188":-1,"10189":-1,"10190":-1,"10191":4064,"10192":-1,"10193":-1,"10194":-1,"10195":-1,"10196":-1,"10197":-1,"10198":-1,"10199":-1,"10200":-1,"10201":-1,"10202":4067,"10203":-1,"10204":-1,"10205":-1,"10206":-1,"10207":-1,"10208":-1,"10209":-1,"10210":-1,"10211":-1,"10212":-1,"10213":-1,"10214":-1,"10215":-1,"10216":-1,"10217":-1,"10218":-1,"10219":-1,"10220":-1,"10221":-1,"10222":-1,"10223":-1,"10224":4067,"10225":4067,"10226":-1,"10227":-1,"10228":-1,"10229":-1,"10230":-1,"10231":-1,"10232":-1,"10233":-1,"10234":4065,"10235":-1,"10236":-1,"10237":-1,"10238":-1,"10239":4064,"10240":4068,"10241":-1,"10242":-1,"10243":-1,"10244":-1,"10245":-1,"10246":-1,"10247":-1,"10248":4068,"10249":-1,"10250":-1,"10251":-1,"10252":-1,"10253":-1,"10254":-1,"10255":-1,"10256":-1,"10257":-1,"10258":-1,"10259":0,"10260":-1,"10261":4068,"10262":-1,"10263":-1,"10264":-1,"10265":4065,"10266":-1,"10267":-1,"10268":4063,"10269":-1,"10270":-1,"10271":-1,"10272":-1,"10273":-1,"10274":-1,"10275":-1,"10276":4066,"10277":-1,"10278":-1,"10279":-1,"10280":-1,"10281":-1,"10282":-1,"10283":-1,"10284":-1,"10285":-1,"10286":-1,"10287":-1,"10288":-1,"10289":-1,"10290":-1,"10291":-1,"10292":-1,"10293":-1,"10294":-1,"10295":-1,"10296":-1,"10297":-1,"10298":-1,"10299":-1,"10300":-1,"10301":-1,"10302":-1,"10303":-1,"10304":-1,"10305":4064,"10306":-1,"10307":-1,"10308":-1,"10309":-1,"10310":-1,"10311":-1,"10312":-1,"10313":-1,"10314":-1,"10315":4067,"10316":-1,"10317":4064,"10318":-1,"10319":4065,"10320":-1,"10321":-1,"10322":-1,"10323":-1,"10324":4065,"10325":-1,"10326":-1,"10327":-1,"10328":4066,"10329":-1,"10330":4067,"10331":-1,"10332":-1,"10333":-1,"10334":4065,"10335":-1,"10336":-1,"10337":-1,"10338":-1,"10339":-1,"10340":-1,"10341":-1,"10342":-1,"10343":-1,"10344":4063,"10345":-1,"10346":-1,"10347":4067,"10348":-1,"10349":-1,"10350":-1,"10351":4065,"10352":-1,"10353":-1,"10354":-1,"10355":-1,"10356":-1,"10357":-1,"10358":-1,"10359":4064,"10360":-1,"10361":-1,"10362":-1,"10363":-1,"10364":-1,"10365":-1,"10366":-1,"10367":-1,"10368":-1,"10369":-1,"10370":-1,"10371":-1,"10372":-1,"10373":-1,"10374":-1,"10375":-1,"10376":-1,"10377":-1,"10378":-1,"10379":-1,"10380":-1,"10381":-1,"10382":-1,"10383":-1,"10384":-1,"10385":-1,"10386":-1,"10387":-1,"10388":-1,"10389":-1,"10390":-1,"10391":-1,"10392":-1,"10393":-1,"10394":-1,"10395":0,"10396":-1,"10397":0,"10398":-1,"10399":4067,"10400":-1,"10401":-1,"10402":-1,"10403":-1,"10404":-1,"10405":-1,"10406":-1,"10407":-1,"10408":-1,"10409":-1,"10410":-1,"10411":-1,"10412":-1,"10413":-1,"10414":-1,"10415":-1,"10416":-1,"10417":-1,"10418":-1,"10419":4065,"10420":-1,"10421":-1,"10422":-1,"10423":-1,"10424":-1,"10425":-1,"10426":4068,"10427":-1,"10428":-1,"10429":-1,"10430":-1,"10431":-1,"10432":-1,"10433":-1,"10434":-1,"10435":-1,"10436":-1,"10437":-1,"10438":-1,"10439":-1,"10440":-1,"10441":-1,"10442":-1,"10443":4065,"10444":-1,"10445":-1,"10446":4064,"10447":-1,"10448":-1,"10449":-1,"10450":-1,"10451":4066,"10452":-1,"10453":-1,"10454":4064,"10455":-1,"10456":-1,"10457":-1,"10458":-1,"10459":-1,"10460":-1,"10461":-1,"10462":-1,"10463":-1,"10464":-1,"10465":-1,"10466":4064,"10467":-1,"10468":-1,"10469":-1,"10470":-1,"10471":-1,"10472":-1,"10473":-1,"10474":-1,"10475":4068,"10476":-1,"10477":4065,"10478":-1,"10479":-1,"10480":-1,"10481":-1,"10482":-1,"10483":-1,"10484":4065,"10485":-1,"10486":-1,"10487":4063,"10488":-1,"10489":-1,"10490":-1,"10491":-1,"10492":-1,"10493":-1,"10494":-1,"10495":-1,"10496":-1,"10497":-1,"10498":0,"10499":-1,"10500":-1,"10501":-1,"10502":-1,"10503":-1,"10504":-1,"10505":-1,"10506":-1,"10507":-1,"10508":-1,"10509":-1,"10510":4064,"10511":-1,"10512":-1,"10513":-1,"10514":0,"10515":-1,"10516":-1,"10517":-1,"10518":-1,"10519":-1,"10520":-1,"10521":-1,"10522":-1,"10523":-1,"10524":-1,"10525":-1,"10526":-1,"10527":4065,"10528":-1,"10529":-1,"10530":-1,"10531":-1,"10532":-1,"10533":-1,"10534":-1,"10535":0,"10536":-1,"10537":-1,"10538":-1,"10539":-1,"10540":-1,"10541":-1,"10542":4068,"10543":-1,"10544":-1,"10545":-1,"10546":-1,"10547":-1,"10548":-1,"10549":-1,"10550":-1,"10551":-1,"10552":4067,"10553":4066,"10554":-1,"10555":-1,"10556":-1,"10557":4064,"10558":-1,"10559":-1,"10560":-1,"10561":-1,"10562":-1,"10563":4068,"10564":-1,"10565":-1,"10566":-1,"10567":-1,"10568":-1,"10569":-1,"10570":4064,"10571":-1,"10572":-1,"10573":-1,"10574":4067,"10575":-1,"10576":-1,"10577":-1,"10578":-1,"10579":4066,"10580":-1,"10581":-1,"10582":-1,"10583":4066,"10584":4067,"10585":4063,"10586":4068,"10587":-1,"10588":-1,"10589":4063,"10590":-1,"10591":-1,"10592":-1,"10593":-1,"10594":-1,"10595":4067,"10596":-1,"10597":-1,"10598":4064,"10599":-1,"10600":-1,"10601":-1,"10602":-1,"10603":-1,"10604":-1,"10605":4064,"10606":-1,"10607":-1,"10608":0,"10609":-1,"10610":-1,"10611":0,"10612":-1,"10613":-1,"10614":-1,"10615":-1,"10616":-1,"10617":4066,"10618":-1,"10619":-1,"10620":-1,"10621":-1,"10622":-1,"10623":-1,"10624":-1,"10625":-1,"10626":-1,"10627":-1,"10628":-1,"10629":-1,"10630":-1,"10631":4064,"10632":-1,"10633":-1,"10634":-1,"10635":-1,"10636":-1,"10637":-1,"10638":-1,"10639":-1,"10640":-1,"10641":-1,"10642":-1,"10643":-1,"10644":4063,"10645":4066,"10646":-1,"10647":-1,"10648":-1,"10649":-1,"10650":-1,"10651":-1,"10652":-1,"10653":-1,"10654":4064,"10655":-1,"10656":-1,"10657":-1,"10658":-1,"10659":-1,"10660":-1,"10661":4064,"10662":-1,"10663":-1,"10664":-1,"10665":4065,"10666":4066,"10667":4063,"10668":-1,"10669":-1,"10670":-1,"10671":4067,"10672":4068,"10673":-1,"10674":-1,"10675":4064,"10676":-1,"10677":4064,"10678":-1,"10679":-1,"10680":-1,"10681":-1,"10682":4064,"10683":-1,"10684":-1,"10685":-1,"10686":-1,"10687":-1,"10688":-1,"10689":-1,"10690":-1,"10691":-1,"10692":-1,"10693":-1,"10694":-1,"10695":-1,"10696":-1,"10697":-1,"10698":-1,"10699":-1,"10700":0,"10701":4065,"10702":-1,"10703":-1,"10704":-1,"10705":0,"10706":-1,"10707":-1,"10708":-1,"10709":-1,"10710":-1,"10711":-1,"10712":0,"10713":4068,"10714":-1,"10715":-1,"10716":-1,"10717":-1,"10718":-1,"10719":-1,"10720":-1,"10721":-1,"10722":-1,"10723":-1,"10724":-1,"10725":-1,"10726":-1,"10727":4066,"10728":-1,"10729":-1,"10730":-1,"10731":-1,"10732":-1,"10733":-1,"10734":-1,"10735":-1,"10736":-1,"10737":-1,"10738":-1,"10739":-1,"10740":-1,"10741":-1,"10742":-1,"10743":-1,"10744":4064,"10745":-1,"10746":-1,"10747":-1,"10748":4066,"10749":-1,"10750":-1,"10751":4065,"10752":-1,"10753":-1,"10754":-1,"10755":-1,"10756":-1,"10757":-1,"10758":-1,"10759":-1,"10760":-1,"10761":-1,"10762":-1,"10763":0,"10764":-1,"10765":-1,"10766":-1,"10767":-1,"10768":-1,"10769":-1,"10770":4068,"10771":-1,"10772":-1,"10773":-1,"10774":-1,"10775":4068,"10776":-1,"10777":4065,"10778":-1,"10779":-1,"10780":-1,"10781":-1,"10782":-1,"10783":-1,"10784":-1,"10785":-1,"10786":-1,"10787":-1,"10788":-1,"10789":-1,"10790":4068,"10791":-1,"10792":-1,"10793":-1,"10794":-1,"10795":4063,"10796":-1,"10797":-1,"10798":-1,"10799":4067,"10800":-1,"10801":-1,"10802":4065,"10803":-1,"10804":4067,"10805":-1,"10806":-1,"10807":-1,"10808":-1,"10809":-1,"10810":-1,"10811":0,"10812":-1,"10813":-1,"10814":-1,"10815":-1,"10816":-1,"10817":-1,"10818":-1,"10819":-1,"10820":-1,"10821":-1,"10822":-1,"10823":-1,"10824":4066,"10825":-1,"10826":-1,"10827":4065,"10828":-1,"10829":-1,"10830":4068,"10831":-1,"10832":-1,"10833":-1,"10834":-1,"10835":-1,"10836":0,"10837":-1,"10838":-1,"10839":0,"10840":-1,"10841":-1,"10842":-1,"10843":-1,"10844":-1,"10845":-1,"10846":-1,"10847":-1,"10848":-1,"10849":4064,"10850":-1,"10851":-1,"10852":4066,"10853":-1,"10854":-1,"10855":-1,"10856":-1,"10857":-1,"10858":-1,"10859":-1,"10860":-1,"10861":4065,"10862":4065,"10863":-1,"10864":-1,"10865":-1,"10866":-1,"10867":-1,"10868":-1,"10869":4065,"10870":-1,"10871":-1,"10872":4065,"10873":-1,"10874":-1,"10875":-1,"10876":-1,"10877":-1,"10878":-1,"10879":-1,"10880":-1,"10881":0,"10882":-1,"10883":-1,"10884":-1,"10885":-1,"10886":-1,"10887":-1,"10888":4064,"10889":4066,"10890":-1,"10891":-1,"10892":-1,"10893":-1,"10894":4067,"10895":-1,"10896":-1,"10897":-1,"10898":4067,"10899":-1,"10900":-1,"10901":-1,"10902":-1,"10903":-1,"10904":-1,"10905":4063,"10906":-1,"10907":-1,"10908":-1,"10909":4068,"10910":-1,"10911":-1,"10912":-1,"10913":0,"10914":-1,"10915":-1,"10916":-1,"10917":4065,"10918":-1,"10919":-1,"10920":-1,"10921":-1,"10922":-1,"10923":-1,"10924":4068,"10925":4068,"10926":-1,"10927":-1,"10928":-1,"10929":-1,"10930":-1,"10931":-1,"10932":-1,"10933":-1,"10934":-1,"10935":-1,"10936":-1,"10937":-1,"10938":-1,"10939":-1,"10940":0,"10941":-1,"10942":-1,"10943":-1,"10944":-1,"10945":-1,"10946":-1,"10947":-1,"10948":-1,"10949":-1,"10950":-1,"10951":-1,"10952":-1,"10953":4067,"10954":-1,"10955":4066,"10956":-1,"10957":-1,"10958":-1,"10959":-1,"10960":-1,"10961":4068,"10962":-1,"10963":-1,"10964":4064,"10965":-1,"10966":4066,"10967":-1,"10968":-1,"10969":-1,"10970":-1,"10971":-1,"10972":4068,"10973":4066,"10974":4065,"10975":-1,"10976":4066,"10977":-1,"10978":4067,"10979":-1,"10980":-1,"10981":-1,"10982":-1,"10983":-1,"10984":-1,"10985":-1,"10986":-1,"10987":-1,"10988":-1,"10989":-1,"10990":-1,"10991":-1,"10992":-1,"10993":-1,"10994":-1,"10995":4066,"10996":-1,"10997":0,"10998":-1,"10999":-1,"11000":-1,"11001":-1,"11002":-1,"11003":4066,"11004":-1,"11005":4064,"11006":-1,"11007":-1,"11008":-1,"11009":-1,"11010":-1,"11011":-1,"11012":-1,"11013":-1,"11014":4066,"11015":-1,"11016":-1,"11017":-1,"11018":-1,"11019":-1,"11020":4068,"11021":-1,"11022":-1,"11023":-1,"11024":-1,"11025":4065,"11026":-1,"11027":-1,"11028":-1,"11029":4064,"11030":-1,"11031":4067,"11032":-1,"11033":-1,"11034":-1,"11035":-1,"11036":-1,"11037":-1,"11038":-1,"11039":-1,"11040":-1,"11041":-1,"11042":-1,"11043":-1,"11044":4063,"11045":-1,"11046":-1,"11047":4063,"11048":4068,"11049":-1,"11050":-1,"11051":-1,"11052":-1,"11053":-1,"11054":-1,"11055":-1,"11056":-1,"11057":-1,"11058":-1,"11059":-1,"11060":-1,"11061":-1,"11062":0,"11063":4066,"11064":4067,"11065":-1,"11066":-1,"11067":-1,"11068":-1,"11069":4066,"11070":-1,"11071":-1,"11072":-1,"11073":-1,"11074":-1,"11075":-1,"11076":-1,"11077":-1,"11078":0,"11079":4068,"11080":-1,"11081":-1,"11082":-1,"11083":-1,"11084":-1,"11085":4065,"11086":-1,"11087":-1,"11088":-1,"11089":4066,"11090":4067,"11091":-1,"11092":-1,"11093":-1,"11094":-1,"11095":-1,"11096":-1,"11097":-1,"11098":-1,"11099":-1,"11100":-1,"11101":-1,"11102":-1,"11103":-1,"11104":-1,"11105":4066,"11106":-1,"11107":-1,"11108":-1,"11109":-1,"11110":-1,"11111":-1,"11112":-1,"11113":-1,"11114":-1,"11115":-1,"11116":-1,"11117":-1,"11118":-1,"11119":-1,"11120":-1,"11121":0,"11122":-1,"11123":-1,"11124":-1,"11125":-1,"11126":-1,"11127":-1,"11128":-1,"11129":-1,"11130":-1,"11131":-1,"11132":-1,"11133":-1,"11134":-1,"11135":-1,"11136":-1,"11137":-1,"11138":-1,"11139":-1,"11140":4067,"11141":-1,"11142":-1,"11143":-1,"11144":-1,"11145":-1,"11146":-1,"11147":-1,"11148":-1,"11149":-1,"11150":-1,"11151":-1,"11152":-1,"11153":-1,"11154":-1,"11155":-1,"11156":-1,"11157":-1,"11158":-1,"11159":-1,"11160":-1,"11161":-1,"11162":-1,"11163":-1,"11164":-1,"11165":-1,"11166":4066,"11167":-1,"11168":-1,"11169":-1,"11170":4066,"11171":-1,"11172":-1,"11173":4068,"11174":-1,"11175":-1,"11176":-1,"11177":-1,"11178":-1,"11179":-1,"11180":-1,"11181":-1,"11182":4066,"11183":4064,"11184":-1,"11185":-1,"11186":4066,"11187":-1,"11188":-1,"11189":-1,"11190":-1,"11191":-1,"11192":4068,"11193":-1,"11194":4064,"11195":-1,"11196":-1,"11197":-1,"11198":4064,"11199":-1,"11200":-1,"11201":4066,"11202":-1,"11203":-1,"11204":-1,"11205":-1,"11206":-1,"11207":0,"11208":-1,"11209":-1,"11210":-1,"11211":-1,"11212":-1,"11213":0,"11214":-1,"11215":4065,"11216":-1,"11217":-1,"11218":-1,"11219":-1,"11220":-1,"11221":-1,"11222":-1,"11223":-1,"11224":-1,"11225":-1,"11226":-1,"11227":4065,"11228":-1,"11229":-1,"11230":-1,"11231":-1,"11232":-1,"11233":-1,"11234":-1,"11235":-1,"11236":-1,"11237":-1,"11238":-1,"11239":-1,"11240":-1,"11241":-1,"11242":-1,"11243":-1,"11244":-1,"11245":-1,"11246":-1,"11247":-1,"11248":-1,"11249":-1,"11250":-1,"11251":-1,"11252":-1,"11253":-1,"11254":4064,"11255":-1,"11256":0,"11257":-1,"11258":-1,"11259":-1,"11260":-1,"11261":-1,"11262":-1,"11263":-1,"11264":-1,"11265":-1,"11266":4064,"11267":-1,"11268":4065,"11269":-1,"11270":0,"11271":-1,"11272":-1,"11273":-1,"11274":4065,"11275":-1,"11276":-1,"11277":-1,"11278":-1,"11279":-1,"11280":-1,"11281":-1,"11282":-1,"11283":-1,"11284":-1,"11285":-1,"11286":-1,"11287":-1,"11288":-1,"11289":-1,"11290":-1,"11291":4067,"11292":-1,"11293":-1,"11294":-1,"11295":-1,"11296":4067,"11297":-1,"11298":-1,"11299":-1,"11300":-1,"11301":-1,"11302":-1,"11303":-1,"11304":-1,"11305":-1,"11306":-1,"11307":4064,"11308":4065,"11309":-1,"11310":-1,"11311":-1,"11312":-1,"11313":-1,"11314":-1,"11315":-1,"11316":-1,"11317":-1,"11318":-1,"11319":-1,"11320":-1,"11321":0,"11322":-1,"11323":-1,"11324":-1,"11325":-1,"11326":-1,"11327":-1,"11328":0,"11329":0,"11330":-1,"11331":-1,"11332":-1,"11333":-1,"11334":-1,"11335":4065,"11336":4066,"11337":4068,"11338":-1,"11339":-1,"11340":-1,"11341":4068,"11342":-1,"11343":-1,"11344":-1,"11345":-1,"11346":-1,"11347":-1,"11348":-1,"11349":4065,"11350":0,"11351":-1,"11352":-1,"11353":-1,"11354":-1,"11355":-1,"11356":-1,"11357":-1,"11358":-1,"11359":-1,"11360":4064,"11361":-1,"11362":-1,"11363":-1,"11364":-1,"11365":-1,"11366":-1,"11367":-1,"11368":-1,"11369":-1,"11370":-1,"11371":-1,"11372":-1,"11373":-1,"11374":-1,"11375":-1,"11376":-1,"11377":-1,"11378":-1,"11379":-1,"11380":-1,"11381":-1,"11382":-1,"11383":-1,"11384":-1,"11385":-1,"11386":-1,"11387":-1,"11388":-1,"11389":-1,"11390":-1,"11391":-1,"11392":-1,"11393":-1,"11394":-1,"11395":4065,"11396":-1,"11397":-1,"11398":-1,"11399":-1,"11400":-1,"11401":-1,"11402":4067,"11403":-1,"11404":-1,"11405":-1,"11406":-1,"11407":-1,"11408":-1,"11409":0,"11410":4067,"11411":-1,"11412":-1,"11413":-1,"11414":4066,"11415":-1,"11416":-1,"11417":-1,"11418":-1,"11419":-1,"11420":-1,"11421":-1,"11422":-1,"11423":-1,"11424":4067,"11425":-1,"11426":4066,"11427":-1,"11428":4065,"11429":-1,"11430":-1,"11431":-1,"11432":-1,"11433":-1,"11434":-1,"11435":-1,"11436":-1,"11437":0,"11438":-1,"11439":-1,"11440":-1,"11441":-1,"11442":-1,"11443":-1,"11444":-1,"11445":-1,"11446":4068,"11447":-1,"11448":-1,"11449":-1,"11450":-1,"11451":-1,"11452":-1,"11453":-1,"11454":-1,"11455":-1,"11456":-1,"11457":-1,"11458":-1,"11459":-1,"11460":-1,"11461":-1,"11462":4066,"11463":-1,"11464":-1,"11465":-1,"11466":-1,"11467":-1,"11468":-1,"11469":-1,"11470":4067,"11471":4066,"11472":4064,"11473":4067,"11474":4065,"11475":-1,"11476":-1,"11477":-1,"11478":-1,"11479":-1,"11480":-1,"11481":-1,"11482":-1,"11483":-1,"11484":-1,"11485":4063,"11486":-1,"11487":-1,"11488":-1,"11489":-1,"11490":-1,"11491":-1,"11492":-1,"11493":-1,"11494":-1,"11495":-1,"11496":-1,"11497":-1,"11498":-1,"11499":-1,"11500":-1,"11501":-1,"11502":-1,"11503":-1,"11504":-1,"11505":-1,"11506":-1,"11507":-1,"11508":-1,"11509":4064,"11510":-1,"11511":4063,"11512":-1,"11513":-1,"11514":-1,"11515":-1,"11516":-1,"11517":4065,"11518":-1,"11519":-1,"11520":4066,"11521":-1,"11522":-1,"11523":-1,"11524":-1,"11525":-1,"11526":4066,"11527":-1,"11528":0,"11529":-1,"11530":-1,"11531":-1,"11532":-1,"11533":-1,"11534":-1,"11535":-1,"11536":4063,"11537":-1,"11538":-1,"11539":-1,"11540":-1,"11541":-1,"11542":-1,"11543":-1,"11544":-1,"11545":-1,"11546":4064,"11547":-1,"11548":-1,"11549":-1,"11550":-1,"11551":-1,"11552":-1,"11553":-1,"11554":-1,"11555":4067,"11556":-1,"11557":-1,"11558":-1,"11559":-1,"11560":-1,"11561":4065,"11562":-1,"11563":-1,"11564":4067,"11565":-1,"11566":-1,"11567":-1,"11568":-1,"11569":-1,"11570":-1,"11571":-1,"11572":-1,"11573":-1,"11574":-1,"11575":-1,"11576":-1,"11577":4064,"11578":-1,"11579":-1,"11580":-1,"11581":-1,"11582":4066,"11583":-1,"11584":-1,"11585":-1,"11586":-1,"11587":-1,"11588":-1,"11589":-1,"11590":-1,"11591":-1,"11592":-1,"11593":-1,"11594":-1,"11595":-1,"11596":-1,"11597":-1,"11598":-1,"11599":-1,"11600":-1,"11601":-1,"11602":-1,"11603":-1,"11604":-1,"11605":-1,"11606":-1,"11607":-1,"11608":4066,"11609":-1,"11610":-1,"11611":-1,"11612":0,"11613":4065,"11614":4063,"11615":-1,"11616":-1,"11617":-1,"11618":-1,"11619":4063,"11620":-1,"11621":-1,"11622":-1,"11623":-1,"11624":4066,"11625":4065,"11626":4067,"11627":-1,"11628":4067,"11629":-1,"11630":0,"11631":-1,"11632":-1,"11633":-1,"11634":-1,"11635":-1,"11636":-1,"11637":-1,"11638":-1,"11639":-1,"11640":4064,"11641":-1,"11642":-1,"11643":-1,"11644":-1,"11645":4065,"11646":-1,"11647":4067,"11648":-1,"11649":-1,"11650":-1,"11651":-1,"11652":-1,"11653":-1,"11654":-1,"11655":-1,"11656":-1,"11657":-1,"11658":-1,"11659":-1,"11660":4067,"11661":-1,"11662":-1,"11663":-1,"11664":-1,"11665":-1,"11666":-1,"11667":4065,"11668":4063,"11669":4065,"11670":-1,"11671":-1,"11672":0,"11673":-1,"11674":-1,"11675":-1,"11676":4067,"11677":-1,"11678":-1,"11679":-1,"11680":-1,"11681":-1,"11682":-1,"11683":-1,"11684":-1,"11685":-1,"11686":-1,"11687":-1,"11688":-1,"11689":-1,"11690":-1,"11691":-1,"11692":4063,"11693":4067,"11694":-1,"11695":4066,"11696":-1,"11697":4067,"11698":-1,"11699":-1,"11700":-1,"11701":-1,"11702":-1,"11703":-1,"11704":-1,"11705":-1,"11706":-1,"11707":4068,"11708":4068,"11709":4063,"11710":-1,"11711":-1,"11712":4066,"11713":-1,"11714":-1,"11715":-1,"11716":-1,"11717":-1,"11718":-1,"11719":-1,"11720":4063,"11721":-1,"11722":-1,"11723":-1,"11724":-1,"11725":-1,"11726":-1,"11727":-1,"11728":4065,"11729":4064,"11730":-1,"11731":-1,"11732":4067,"11733":-1,"11734":-1,"11735":-1,"11736":-1,"11737":-1,"11738":-1,"11739":-1,"11740":-1,"11741":-1,"11742":-1,"11743":-1,"11744":-1,"11745":-1,"11746":-1,"11747":-1,"11748":-1,"11749":4065,"11750":-1,"11751":4067,"11752":-1,"11753":-1,"11754":-1,"11755":-1,"11756":0,"11757":-1,"11758":-1,"11759":-1,"11760":-1,"11761":-1,"11762":-1,"11763":-1,"11764":4065,"11765":-1,"11766":-1,"11767":0,"11768":-1,"11769":-1,"11770":-1,"11771":-1,"11772":-1,"11773":-1,"11774":-1,"11775":4064,"11776":-1,"11777":0,"11778":-1,"11779":-1,"11780":-1,"11781":-1,"11782":-1,"11783":-1,"11784":4066,"11785":4066,"11786":-1,"11787":4068,"11788":-1,"11789":0,"11790":-1,"11791":-1,"11792":-1,"11793":-1,"11794":-1,"11795":-1,"11796":-1,"11797":-1,"11798":4067,"11799":-1,"11800":-1,"11801":-1,"11802":-1,"11803":-1,"11804":-1,"11805":-1,"11806":-1,"11807":-1,"11808":-1,"11809":-1,"11810":-1,"11811":4064,"11812":4067,"11813":-1,"11814":-1,"11815":-1,"11816":-1,"11817":-1,"11818":-1,"11819":-1,"11820":-1,"11821":-1,"11822":-1,"11823":-1,"11824":-1,"11825":-1,"11826":-1,"11827":-1,"11828":-1,"11829":-1,"11830":-1,"11831":4068,"11832":-1,"11833":-1,"11834":-1,"11835":4067,"11836":-1,"11837":-1,"11838":-1,"11839":-1,"11840":-1,"11841":-1,"11842":-1,"11843":4064,"11844":-1,"11845":-1,"11846":4067,"11847":-1,"11848":4064,"11849":-1,"11850":-1,"11851":-1,"11852":-1,"11853":-1,"11854":-1,"11855":-1,"11856":-1,"11857":-1,"11858":4063,"11859":-1,"11860":-1,"11861":-1,"11862":4067,"11863":-1,"11864":-1,"11865":-1,"11866":-1,"11867":-1,"11868":-1,"11869":-1,"11870":-1,"11871":-1,"11872":-1,"11873":-1,"11874":-1,"11875":4068,"11876":4067,"11877":4068,"11878":0,"11879":-1,"11880":-1,"11881":-1,"11882":-1,"11883":-1,"11884":-1,"11885":-1,"11886":-1,"11887":4067,"11888":-1,"11889":-1,"11890":-1,"11891":-1,"11892":-1,"11893":-1,"11894":4067,"11895":-1,"11896":-1,"11897":-1,"11898":0,"11899":-1,"11900":-1,"11901":-1,"11902":4065,"11903":-1,"11904":-1,"11905":-1,"11906":4067,"11907":-1,"11908":-1,"11909":-1,"11910":-1,"11911":-1,"11912":-1,"11913":4066,"11914":-1,"11915":-1,"11916":-1,"11917":-1,"11918":-1,"11919":-1,"11920":-1,"11921":-1,"11922":-1,"11923":0,"11924":-1,"11925":-1,"11926":-1,"11927":-1,"11928":-1,"11929":4066,"11930":-1,"11931":4065,"11932":-1,"11933":4066,"11934":-1,"11935":4065,"11936":-1,"11937":-1,"11938":-1,"11939":4064,"11940":-1,"11941":-1,"11942":4068,"11943":-1,"11944":-1,"11945":-1,"11946":-1,"11947":-1,"11948":0,"11949":-1,"11950":4065,"11951":-1,"11952":-1,"11953":-1,"11954":-1,"11955":-1,"11956":-1,"11957":-1,"11958":-1,"11959":0,"11960":-1,"11961":0,"11962":-1,"11963":-1,"11964":-1,"11965":-1,"11966":-1,"11967":-1,"11968":-1,"11969":-1,"11970":-1,"11971":-1,"11972":4063,"11973":-1,"11974":-1,"11975":-1,"11976":-1,"11977":-1,"11978":-1,"11979":-1,"11980":-1,"11981":4066,"11982":-1,"11983":-1,"11984":-1,"11985":-1,"11986":-1,"11987":-1,"11988":-1,"11989":-1,"11990":-1,"11991":0,"11992":-1,"11993":-1,"11994":-1,"11995":-1,"11996":-1,"11997":-1,"11998":-1,"11999":-1,"12000":-1,"12001":-1,"12002":-1,"12003":-1,"12004":-1,"12005":-1,"12006":-1,"12007":-1,"12008":-1,"12009":-1,"12010":-1,"12011":-1,"12012":-1,"12013":-1,"12014":4068,"12015":-1,"12016":-1,"12017":-1,"12018":0,"12019":-1,"12020":-1,"12021":-1,"12022":-1,"12023":-1,"12024":4063,"12025":-1,"12026":-1,"12027":-1,"12028":-1,"12029":-1,"12030":-1,"12031":-1,"12032":-1,"12033":-1,"12034":-1,"12035":-1,"12036":-1,"12037":-1,"12038":-1,"12039":-1,"12040":-1,"12041":-1,"12042":-1,"12043":-1,"12044":-1,"12045":-1,"12046":-1,"12047":4063,"12048":-1,"12049":-1,"12050":-1,"12051":-1,"12052":-1,"12053":-1,"12054":4066,"12055":-1,"12056":4063,"12057":-1,"12058":-1,"12059":-1,"12060":-1,"12061":-1,"12062":-1,"12063":-1,"12064":-1,"12065":-1,"12066":-1,"12067":-1,"12068":-1,"12069":-1,"12070":-1,"12071":-1,"12072":-1,"12073":-1,"12074":-1,"12075":-1,"12076":-1,"12077":-1,"12078":-1,"12079":-1,"12080":-1,"12081":-1,"12082":4064,"12083":-1,"12084":-1,"12085":-1,"12086":4067,"12087":-1,"12088":-1,"12089":-1,"12090":-1,"12091":-1,"12092":4067,"12093":-1,"12094":-1,"12095":-1,"12096":-1,"12097":-1,"12098":-1,"12099":-1,"12100":-1,"12101":-1,"12102":0,"12103":-1,"12104":-1,"12105":-1,"12106":4068,"12107":-1,"12108":-1,"12109":-1,"12110":-1,"12111":-1,"12112":-1,"12113":-1,"12114":-1,"12115":-1,"12116":-1,"12117":-1,"12118":0,"12119":-1,"12120":4063,"12121":-1,"12122":-1,"12123":4065,"12124":-1,"12125":-1,"12126":-1,"12127":4066,"12128":-1,"12129":-1,"12130":-1,"12131":-1,"12132":-1,"12133":-1,"12134":-1,"12135":-1,"12136":-1,"12137":4065,"12138":-1,"12139":-1,"12140":0,"12141":-1,"12142":-1,"12143":-1,"12144":-1,"12145":-1,"12146":-1,"12147":-1,"12148":-1,"12149":-1,"12150":-1,"12151":-1,"12152":-1,"12153":-1,"12154":-1,"12155":4064,"12156":-1,"12157":-1,"12158":-1,"12159":-1,"12160":-1,"12161":4066,"12162":-1,"12163":-1,"12164":-1,"12165":-1,"12166":4064,"12167":-1,"12168":-1,"12169":-1,"12170":-1,"12171":-1,"12172":0,"12173":4067,"12174":-1,"12175":-1,"12176":-1,"12177":-1,"12178":-1,"12179":-1,"12180":4065,"12181":-1,"12182":-1,"12183":-1,"12184":4064,"12185":-1,"12186":-1,"12187":-1,"12188":-1,"12189":-1,"12190":-1,"12191":4066,"12192":-1,"12193":-1,"12194":-1,"12195":-1,"12196":-1,"12197":-1,"12198":0,"12199":-1,"12200":-1,"12201":-1,"12202":4064,"12203":-1,"12204":-1,"12205":4066,"12206":-1,"12207":-1,"12208":-1,"12209":-1,"12210":-1,"12211":-1,"12212":-1,"12213":4063,"12214":-1,"12215":-1,"12216":-1,"12217":-1,"12218":-1,"12219":-1,"12220":-1,"12221":-1,"12222":-1,"12223":-1,"12224":-1,"12225":-1,"12226":-1,"12227":-1,"12228":-1,"12229":-1,"12230":-1,"12231":-1,"12232":-1,"12233":-1,"12234":-1,"12235":-1,"12236":-1,"12237":-1,"12238":-1,"12239":-1,"12240":-1,"12241":-1,"12242":-1,"12243":-1,"12244":-1,"12245":4064,"12246":-1,"12247":-1,"12248":-1,"12249":-1,"12250":-1,"12251":-1,"12252":-1,"12253":-1,"12254":-1,"12255":-1,"12256":-1,"12257":-1,"12258":-1,"12259":-1,"12260":-1,"12261":-1,"12262":-1,"12263":-1,"12264":-1,"12265":-1,"12266":-1,"12267":-1,"12268":-1,"12269":-1,"12270":-1,"12271":-1,"12272":-1,"12273":-1,"12274":-1,"12275":-1,"12276":-1,"12277":4067,"12278":-1,"12279":-1,"12280":-1,"12281":0,"12282":-1,"12283":-1,"12284":-1,"12285":-1,"12286":-1,"12287":-1,"12288":0,"12289":-1,"12290":-1,"12291":-1,"12292":-1,"12293":-1,"12294":-1,"12295":-1,"12296":-1,"12297":-1,"12298":-1,"12299":-1,"12300":4067,"12301":-1,"12302":-1,"12303":-1,"12304":-1,"12305":-1,"12306":-1,"12307":-1,"12308":-1,"12309":-1,"12310":-1,"12311":-1,"12312":-1,"12313":-1,"12314":-1,"12315":-1,"12316":-1,"12317":0,"12318":-1,"12319":-1,"12320":-1,"12321":4064,"12322":-1,"12323":-1,"12324":-1,"12325":4067,"12326":-1,"12327":-1,"12328":-1,"12329":-1,"12330":-1,"12331":-1,"12332":-1,"12333":-1,"12334":-1,"12335":-1,"12336":-1,"12337":-1,"12338":-1,"12339":-1,"12340":-1,"12341":-1,"12342":-1,"12343":-1,"12344":0,"12345":-1,"12346":-1,"12347":-1,"12348":-1,"12349":-1,"12350":-1,"12351":4066,"12352":-1,"12353":-1,"12354":-1,"12355":-1,"12356":-1,"12357":-1,"12358":-1,"12359":-1,"12360":-1,"12361":-1,"12362":4068,"12363":4066,"12364":-1,"12365":-1,"12366":4065,"12367":-1,"12368":4063,"12369":4066,"12370":-1,"12371":4065,"12372":-1,"12373":-1,"12374":0,"12375":-1,"12376":0,"12377":-1,"12378":-1,"12379":-1,"12380":-1,"12381":-1,"12382":-1,"12383":-1,"12384":-1,"12385":-1,"12386":-1,"12387":-1,"12388":-1,"12389":-1,"12390":-1,"12391":-1,"12392":-1,"12393":-1,"12394":-1,"12395":-1,"12396":-1,"12397":-1,"12398":-1,"12399":4066,"12400":-1,"12401":4065,"12402":-1,"12403":-1,"12404":-1,"12405":-1,"12406":-1,"12407":-1,"12408":-1,"12409":-1,"12410":4067,"12411":-1,"12412":-1,"12413":-1,"12414":-1,"12415":-1,"12416":-1,"12417":-1,"12418":-1,"12419":-1,"12420":-1,"12421":-1,"12422":-1,"12423":-1,"12424":-1,"12425":-1,"12426":-1,"12427":-1,"12428":-1,"12429":-1,"12430":-1,"12431":0,"12432":4065,"12433":-1,"12434":-1,"12435":-1,"12436":-1,"12437":-1,"12438":-1,"12439":-1,"12440":-1,"12441":4063,"12442":-1,"12443":4064,"12444":-1,"12445":-1,"12446":-1,"12447":-1,"12448":-1,"12449":-1,"12450":-1,"12451":-1,"12452":-1,"12453":-1,"12454":-1,"12455":4066,"12456":-1,"12457":4068,"12458":-1,"12459":4063,"12460":-1,"12461":-1,"12462":-1,"12463":-1,"12464":-1,"12465":-1,"12466":4063,"12467":4063,"12468":-1,"12469":-1,"12470":-1,"12471":-1,"12472":-1,"12473":-1,"12474":-1,"12475":-1,"12476":-1,"12477":-1,"12478":-1,"12479":-1,"12480":-1,"12481":-1,"12482":4065,"12483":-1,"12484":-1,"12485":-1,"12486":-1,"12487":-1,"12488":-1,"12489":-1,"12490":4064,"12491":-1,"12492":-1,"12493":-1,"12494":-1,"12495":-1,"12496":-1,"12497":-1,"12498":-1,"12499":-1,"12500":-1,"12501":-1,"12502":-1,"12503":-1,"12504":-1,"12505":-1,"12506":-1,"12507":-1,"12508":-1,"12509":-1,"12510":-1,"12511":-1,"12512":-1,"12513":-1,"12514":-1,"12515":-1,"12516":-1,"12517":-1,"12518":-1,"12519":-1,"12520":-1,"12521":-1,"12522":4064,"12523":-1,"12524":-1,"12525":-1,"12526":-1,"12527":-1,"12528":-1,"12529":4067,"12530":-1,"12531":0,"12532":-1,"12533":-1,"12534":-1,"12535":-1,"12536":4065,"12537":-1,"12538":-1,"12539":4065,"12540":-1,"12541":-1,"12542":-1,"12543":-1,"12544":4064,"12545":-1,"12546":-1,"12547":-1,"12548":-1,"12549":-1,"12550":-1,"12551":-1,"12552":-1,"12553":-1,"12554":4063,"12555":-1,"12556":-1,"12557":4066,"12558":-1,"12559":-1,"12560":-1,"12561":-1,"12562":-1,"12563":-1,"12564":-1,"12565":4064,"12566":-1,"12567":-1,"12568":-1,"12569":4066,"12570":-1,"12571":-1,"12572":-1,"12573":-1,"12574":-1,"12575":-1,"12576":-1,"12577":-1,"12578":-1,"12579":-1,"12580":-1,"12581":-1,"12582":-1,"12583":-1,"12584":4066,"12585":-1,"12586":4065,"12587":-1,"12588":-1,"12589":-1,"12590":-1,"12591":-1,"12592":-1,"12593":4066,"12594":4068,"12595":-1,"12596":-1,"12597":-1,"12598":-1,"12599":-1,"12600":-1,"12601":-1,"12602":-1,"12603":-1,"12604":-1,"12605":4067,"12606":-1,"12607":-1,"12608":-1,"12609":0,"12610":-1,"12611":-1,"12612":-1,"12613":-1,"12614":-1,"12615":-1,"12616":-1,"12617":-1,"12618":-1,"12619":4067,"12620":-1,"12621":-1,"12622":4066,"12623":-1,"12624":-1,"12625":-1,"12626":-1,"12627":-1,"12628":-1,"12629":-1,"12630":4063,"12631":0,"12632":-1,"12633":-1,"12634":-1,"12635":-1,"12636":-1,"12637":-1,"12638":-1,"12639":-1,"12640":-1,"12641":-1,"12642":-1,"12643":-1,"12644":-1,"12645":-1,"12646":-1,"12647":-1,"12648":-1,"12649":-1,"12650":4065,"12651":-1,"12652":4065,"12653":-1,"12654":-1,"12655":-1,"12656":-1,"12657":-1,"12658":4066,"12659":4065,"12660":-1,"12661":-1,"12662":0,"12663":-1,"12664":4068,"12665":-1,"12666":-1,"12667":-1,"12668":4067,"12669":0,"12670":-1,"12671":-1,"12672":-1,"12673":-1,"12674":4067,"12675":-1,"12676":-1,"12677":-1,"12678":-1,"12679":-1,"12680":-1,"12681":-1,"12682":-1,"12683":-1,"12684":-1,"12685":-1,"12686":4064,"12687":-1,"12688":-1,"12689":-1,"12690":-1,"12691":-1,"12692":-1,"12693":4065,"12694":-1,"12695":-1,"12696":-1,"12697":-1,"12698":-1,"12699":-1,"12700":4063,"12701":-1,"12702":-1,"12703":-1,"12704":-1,"12705":-1,"12706":-1,"12707":-1,"12708":0,"12709":-1,"12710":-1,"12711":-1,"12712":-1,"12713":-1,"12714":-1,"12715":0,"12716":-1,"12717":-1,"12718":-1,"12719":-1,"12720":-1,"12721":-1,"12722":4068,"12723":-1,"12724":-1,"12725":-1,"12726":-1,"12727":-1,"12728":4064,"12729":0,"12730":-1,"12731":0,"12732":-1,"12733":-1,"12734":-1,"12735":-1,"12736":-1,"12737":-1,"12738":-1,"12739":-1,"12740":0,"12741":-1,"12742":0,"12743":-1,"12744":-1,"12745":4067,"12746":-1,"12747":-1,"12748":-1,"12749":4067,"12750":-1,"12751":-1,"12752":-1,"12753":-1,"12754":0,"12755":-1,"12756":-1,"12757":-1,"12758":-1,"12759":4065,"12760":-1,"12761":-1,"12762":4067,"12763":-1,"12764":4066,"12765":-1,"12766":-1,"12767":-1,"12768":-1,"12769":4065,"12770":-1,"12771":-1,"12772":-1,"12773":-1,"12774":-1,"12775":-1,"12776":4064,"12777":-1,"12778":-1,"12779":4063,"12780":-1,"12781":-1,"12782":-1,"12783":-1,"12784":-1,"12785":-1,"12786":-1,"12787":-1,"12788":-1,"12789":-1,"12790":-1,"12791":-1,"12792":-1,"12793":-1,"12794":4064,"12795":-1,"12796":-1,"12797":4064,"12798":-1,"12799":-1,"12800":-1,"12801":-1,"12802":-1,"12803":4067,"12804":-1,"12805":-1,"12806":4067,"12807":-1,"12808":-1,"12809":-1,"12810":4066,"12811":-1,"12812":-1,"12813":-1,"12814":4067,"12815":-1,"12816":0,"12817":-1,"12818":-1,"12819":-1,"12820":-1,"12821":-1,"12822":4063,"12823":4064,"12824":-1,"12825":-1,"12826":-1,"12827":-1,"12828":-1,"12829":-1,"12830":-1,"12831":-1,"12832":-1,"12833":4067,"12834":-1,"12835":-1,"12836":-1,"12837":0,"12838":-1,"12839":-1,"12840":-1,"12841":-1,"12842":-1,"12843":-1,"12844":4068,"12845":-1,"12846":-1,"12847":-1,"12848":-1,"12849":4068,"12850":0,"12851":-1,"12852":4067,"12853":-1,"12854":-1,"12855":-1,"12856":-1,"12857":-1,"12858":-1,"12859":-1,"12860":-1,"12861":-1,"12862":-1,"12863":-1,"12864":-1,"12865":-1,"12866":-1,"12867":-1,"12868":-1,"12869":-1,"12870":-1,"12871":-1,"12872":-1,"12873":-1,"12874":-1,"12875":-1,"12876":-1,"12877":-1,"12878":-1,"12879":0,"12880":-1,"12881":-1,"12882":-1,"12883":-1,"12884":-1,"12885":4064,"12886":-1,"12887":-1,"12888":-1,"12889":-1,"12890":4064,"12891":-1,"12892":-1,"12893":-1,"12894":-1,"12895":-1,"12896":-1,"12897":-1,"12898":-1,"12899":-1,"12900":-1,"12901":-1,"12902":-1,"12903":-1,"12904":-1,"12905":4067,"12906":-1,"12907":-1,"12908":-1,"12909":-1,"12910":-1,"12911":-1,"12912":-1,"12913":-1,"12914":-1,"12915":-1,"12916":-1,"12917":0,"12918":-1,"12919":-1,"12920":4065,"12921":-1,"12922":-1,"12923":-1,"12924":4066,"12925":-1,"12926":4068,"12927":-1,"12928":-1,"12929":-1,"12930":-1,"12931":-1,"12932":-1,"12933":-1,"12934":-1,"12935":-1,"12936":-1,"12937":-1,"12938":-1,"12939":-1,"12940":-1,"12941":-1,"12942":-1,"12943":-1,"12944":-1,"12945":-1,"12946":-1,"12947":-1,"12948":-1,"12949":-1,"12950":4066,"12951":-1,"12952":0,"12953":-1,"12954":-1,"12955":-1,"12956":-1,"12957":4066,"12958":-1,"12959":-1,"12960":-1,"12961":-1,"12962":-1,"12963":-1,"12964":-1,"12965":-1,"12966":-1,"12967":-1,"12968":-1,"12969":-1,"12970":-1,"12971":4066,"12972":0,"12973":-1,"12974":4065,"12975":-1,"12976":-1,"12977":-1,"12978":-1,"12979":-1,"12980":-1,"12981":-1,"12982":-1,"12983":-1,"12984":-1,"12985":4067,"12986":4067,"12987":-1,"12988":-1,"12989":-1,"12990":-1,"12991":4064,"12992":-1,"12993":-1,"12994":-1,"12995":0,"12996":-1,"12997":-1,"12998":-1,"12999":-1,"13000":-1,"13001":4067,"13002":-1,"13003":4067,"13004":-1,"13005":-1,"13006":-1,"13007":-1,"13008":4066,"13009":-1,"13010":-1,"13011":-1,"13012":-1,"13013":-1,"13014":-1,"13015":-1,"13016":-1,"13017":-1,"13018":0,"13019":-1,"13020":4065,"13021":-1,"13022":0,"13023":-1,"13024":-1,"13025":-1,"13026":-1,"13027":-1,"13028":4065,"13029":0,"13030":-1,"13031":4065,"13032":-1,"13033":-1,"13034":-1,"13035":-1,"13036":-1,"13037":-1,"13038":-1,"13039":-1,"13040":-1,"13041":4067,"13042":-1,"13043":-1,"13044":0,"13045":-1,"13046":-1,"13047":-1,"13048":-1,"13049":-1,"13050":-1,"13051":-1,"13052":-1,"13053":-1,"13054":4064,"13055":-1,"13056":-1,"13057":-1,"13058":-1,"13059":-1,"13060":-1,"13061":-1,"13062":-1,"13063":-1,"13064":-1,"13065":-1,"13066":-1,"13067":-1,"13068":-1,"13069":0,"13070":-1,"13071":4066,"13072":-1,"13073":-1,"13074":-1,"13075":4063,"13076":-1,"13077":-1,"13078":-1,"13079":4064,"13080":4065,"13081":-1,"13082":-1,"13083":-1,"13084":-1,"13085":-1,"13086":-1,"13087":-1,"13088":-1,"13089":-1,"13090":-1,"13091":-1,"13092":-1,"13093":-1,"13094":-1,"13095":-1,"13096":-1,"13097":-1,"13098":4066,"13099":-1,"13100":-1,"13101":-1,"13102":-1,"13103":-1,"13104":-1,"13105":-1,"13106":-1,"13107":-1,"13108":4067,"13109":-1,"13110":4064,"13111":-1,"13112":-1,"13113":-1,"13114":-1,"13115":-1,"13116":-1,"13117":-1,"13118":-1,"13119":-1,"13120":-1,"13121":-1,"13122":-1,"13123":-1,"13124":-1,"13125":-1,"13126":-1,"13127":-1,"13128":0,"13129":-1,"13130":-1,"13131":-1,"13132":4066,"13133":4068,"13134":-1,"13135":4063,"13136":4067,"13137":-1,"13138":-1,"13139":4065,"13140":4067,"13141":-1,"13142":-1,"13143":-1,"13144":-1,"13145":-1,"13146":0,"13147":-1,"13148":-1,"13149":-1,"13150":4066,"13151":-1,"13152":-1,"13153":-1,"13154":-1,"13155":-1,"13156":-1,"13157":-1,"13158":-1,"13159":-1,"13160":-1,"13161":-1,"13162":-1,"13163":-1,"13164":-1,"13165":-1,"13166":-1,"13167":-1,"13168":-1,"13169":-1,"13170":-1,"13171":-1,"13172":4066,"13173":-1,"13174":-1,"13175":-1,"13176":-1,"13177":4067,"13178":-1,"13179":-1,"13180":4066,"13181":4066,"13182":4063,"13183":-1,"13184":-1,"13185":-1,"13186":0,"13187":4064,"13188":-1,"13189":-1,"13190":-1,"13191":-1,"13192":4063,"13193":-1,"13194":4067,"13195":-1,"13196":0,"13197":-1,"13198":-1,"13199":-1,"13200":-1,"13201":-1,"13202":-1,"13203":-1,"13204":-1,"13205":4067,"13206":-1,"13207":4064,"13208":4067,"13209":-1,"13210":-1,"13211":-1,"13212":-1,"13213":-1,"13214":-1,"13215":-1,"13216":-1,"13217":4065,"13218":-1,"13219":-1,"13220":-1,"13221":-1,"13222":-1,"13223":-1,"13224":-1,"13225":-1,"13226":4068,"13227":-1,"13228":-1,"13229":-1,"13230":-1,"13231":-1,"13232":-1,"13233":-1,"13234":-1,"13235":-1,"13236":-1,"13237":-1,"13238":-1,"13239":-1,"13240":-1,"13241":-1,"13242":-1,"13243":-1,"13244":-1,"13245":-1,"13246":-1,"13247":-1,"13248":-1,"13249":-1,"13250":-1,"13251":4066,"13252":-1,"13253":-1,"13254":-1,"13255":4063,"13256":-1,"13257":-1,"13258":-1,"13259":-1,"13260":-1,"13261":-1,"13262":-1,"13263":-1,"13264":-1,"13265":-1,"13266":-1,"13267":4068,"13268":-1,"13269":-1,"13270":4067,"13271":-1,"13272":-1,"13273":-1,"13274":-1,"13275":-1,"13276":-1,"13277":-1,"13278":-1,"13279":4064,"13280":-1,"13281":-1,"13282":-1,"13283":-1,"13284":-1,"13285":-1,"13286":-1,"13287":-1,"13288":-1,"13289":-1,"13290":4066,"13291":-1,"13292":-1,"13293":-1,"13294":0,"13295":4066,"13296":4066,"13297":-1,"13298":-1,"13299":-1,"13300":-1,"13301":-1,"13302":-1,"13303":-1,"13304":-1,"13305":-1,"13306":-1,"13307":-1,"13308":-1,"13309":-1,"13310":-1,"13311":4068,"13312":-1,"13313":-1,"13314":-1,"13315":-1,"13316":4064,"13317":-1,"13318":-1,"13319":-1,"13320":4065,"13321":-1,"13322":4065,"13323":-1,"13324":-1,"13325":-1,"13326":-1,"13327":-1,"13328":-1,"13329":4065,"13330":-1,"13331":-1,"13332":4067,"13333":-1,"13334":-1,"13335":-1,"13336":-1,"13337":4067,"13338":4067,"13339":-1,"13340":-1,"13341":-1,"13342":-1,"13343":4065,"13344":-1,"13345":4068,"13346":-1,"13347":-1,"13348":4065,"13349":-1,"13350":-1,"13351":0,"13352":-1,"13353":-1,"13354":-1,"13355":-1,"13356":-1,"13357":-1,"13358":-1,"13359":0,"13360":-1,"13361":-1,"13362":-1,"13363":-1,"13364":4064,"13365":-1,"13366":-1,"13367":-1,"13368":-1,"13369":4067,"13370":-1,"13371":-1,"13372":4065,"13373":-1,"13374":-1,"13375":4064,"13376":4067,"13377":-1,"13378":4065,"13379":-1,"13380":-1,"13381":-1,"13382":4066,"13383":-1,"13384":-1,"13385":-1,"13386":-1,"13387":-1,"13388":-1,"13389":4063,"13390":-1,"13391":-1,"13392":-1,"13393":-1,"13394":-1,"13395":-1,"13396":-1,"13397":-1,"13398":-1,"13399":-1,"13400":0,"13401":-1,"13402":-1,"13403":-1,"13404":-1,"13405":-1,"13406":-1,"13407":4065,"13408":-1,"13409":-1,"13410":-1,"13411":-1,"13412":-1,"13413":-1,"13414":-1,"13415":-1,"13416":-1,"13417":0,"13418":-1,"13419":0,"13420":-1,"13421":-1,"13422":-1,"13423":-1,"13424":-1,"13425":-1,"13426":-1,"13427":-1,"13428":-1,"13429":-1,"13430":-1,"13431":-1,"13432":4067,"13433":-1,"13434":-1,"13435":-1,"13436":-1,"13437":-1,"13438":-1,"13439":-1,"13440":4066,"13441":-1,"13442":4065,"13443":-1,"13444":-1,"13445":-1,"13446":-1,"13447":-1,"13448":-1,"13449":-1,"13450":-1,"13451":-1,"13452":-1,"13453":-1,"13454":-1,"13455":-1,"13456":-1,"13457":-1,"13458":-1,"13459":-1,"13460":-1,"13461":4067,"13462":-1,"13463":-1,"13464":-1,"13465":-1,"13466":-1,"13467":-1,"13468":-1,"13469":-1,"13470":-1,"13471":0,"13472":-1,"13473":-1,"13474":-1,"13475":-1,"13476":-1,"13477":-1,"13478":-1,"13479":-1,"13480":0,"13481":4064,"13482":4064,"13483":-1,"13484":-1,"13485":-1,"13486":4067,"13487":4067,"13488":-1,"13489":-1,"13490":-1,"13491":-1,"13492":-1,"13493":-1,"13494":-1,"13495":0,"13496":-1,"13497":-1,"13498":-1,"13499":-1,"13500":-1,"13501":-1,"13502":-1,"13503":-1,"13504":-1,"13505":-1,"13506":-1,"13507":-1,"13508":-1,"13509":-1,"13510":-1,"13511":-1,"13512":-1,"13513":-1,"13514":-1,"13515":-1,"13516":-1,"13517":-1,"13518":-1,"13519":-1,"13520":4067,"13521":-1,"13522":-1,"13523":-1,"13524":-1,"13525":-1,"13526":-1,"13527":-1,"13528":-1,"13529":-1,"13530":-1,"13531":-1,"13532":-1,"13533":4067,"13534":4065,"13535":-1,"13536":-1,"13537":-1,"13538":-1,"13539":-1,"13540":4065,"13541":-1,"13542":-1,"13543":-1,"13544":0,"13545":-1,"13546":-1,"13547":-1,"13548":-1,"13549":-1,"13550":-1,"13551":-1,"13552":-1,"13553":-1,"13554":-1,"13555":-1,"13556":-1,"13557":-1,"13558":-1,"13559":-1,"13560":-1,"13561":-1,"13562":-1,"13563":-1,"13564":0,"13565":4067,"13566":-1,"13567":-1,"13568":-1,"13569":-1,"13570":4064,"13571":-1,"13572":-1,"13573":4067,"13574":-1,"13575":4068,"13576":4068,"13577":-1,"13578":4064,"13579":-1,"13580":-1,"13581":-1,"13582":-1,"13583":-1,"13584":-1,"13585":-1,"13586":-1,"13587":-1,"13588":-1,"13589":-1,"13590":4063,"13591":-1,"13592":-1,"13593":-1,"13594":-1,"13595":-1,"13596":-1,"13597":4064,"13598":4063,"13599":-1,"13600":4063,"13601":-1,"13602":-1,"13603":-1,"13604":-1,"13605":-1,"13606":-1,"13607":4066,"13608":-1,"13609":-1,"13610":-1,"13611":-1,"13612":-1,"13613":-1,"13614":-1,"13615":-1,"13616":-1,"13617":-1,"13618":-1,"13619":-1,"13620":-1,"13621":-1,"13622":4064,"13623":-1,"13624":-1,"13625":-1,"13626":-1,"13627":-1,"13628":-1,"13629":-1,"13630":-1,"13631":-1,"13632":4064,"13633":-1,"13634":-1,"13635":-1,"13636":-1,"13637":4068,"13638":-1,"13639":-1,"13640":4067,"13641":-1,"13642":-1,"13643":-1,"13644":-1,"13645":-1,"13646":-1,"13647":-1,"13648":-1,"13649":-1,"13650":-1,"13651":-1,"13652":-1,"13653":-1,"13654":-1,"13655":4065,"13656":-1,"13657":-1,"13658":-1,"13659":-1,"13660":-1,"13661":4065,"13662":-1,"13663":-1,"13664":-1,"13665":-1,"13666":-1,"13667":-1,"13668":-1,"13669":-1,"13670":-1,"13671":-1,"13672":-1,"13673":4067,"13674":-1,"13675":-1,"13676":-1,"13677":-1,"13678":-1,"13679":4067,"13680":-1,"13681":-1,"13682":-1,"13683":-1,"13684":-1,"13685":-1,"13686":-1,"13687":-1,"13688":-1,"13689":-1,"13690":-1,"13691":-1,"13692":-1,"13693":-1,"13694":-1,"13695":0,"13696":-1,"13697":-1,"13698":-1,"13699":-1,"13700":-1,"13701":-1,"13702":-1,"13703":-1,"13704":-1,"13705":-1,"13706":-1,"13707":-1,"13708":0,"13709":-1,"13710":4064,"13711":-1,"13712":-1,"13713":-1,"13714":-1,"13715":-1,"13716":-1,"13717":-1,"13718":-1,"13719":-1,"13720":-1,"13721":-1,"13722":4065,"13723":4068,"13724":-1,"13725":-1,"13726":-1,"13727":-1,"13728":-1,"13729":4067,"13730":-1,"13731":-1,"13732":-1,"13733":-1,"13734":-1,"13735":-1,"13736":-1,"13737":4063,"13738":-1,"13739":-1,"13740":-1,"13741":-1,"13742":-1,"13743":-1,"13744":-1,"13745":-1,"13746":-1,"13747":-1,"13748":-1,"13749":-1,"13750":-1,"13751":-1,"13752":4068,"13753":-1,"13754":-1,"13755":-1,"13756":-1,"13757":-1,"13758":-1,"13759":-1,"13760":4065,"13761":-1,"13762":-1,"13763":-1,"13764":-1,"13765":-1,"13766":-1,"13767":-1,"13768":-1,"13769":-1,"13770":4067,"13771":-1,"13772":4066,"13773":-1,"13774":4066,"13775":-1,"13776":-1,"13777":-1,"13778":-1,"13779":-1,"13780":4065,"13781":-1,"13782":4067,"13783":-1,"13784":-1,"13785":-1,"13786":-1,"13787":-1,"13788":-1,"13789":4065,"13790":-1,"13791":-1,"13792":4064,"13793":-1,"13794":-1,"13795":-1,"13796":-1,"13797":-1,"13798":-1,"13799":4065,"13800":-1,"13801":-1,"13802":-1,"13803":-1,"13804":-1,"13805":-1,"13806":4064,"13807":-1,"13808":-1,"13809":-1,"13810":-1,"13811":-1,"13812":-1,"13813":-1,"13814":0,"13815":-1,"13816":-1,"13817":-1,"13818":-1,"13819":-1,"13820":-1,"13821":-1,"13822":4067,"13823":4063,"13824":-1,"13825":-1,"13826":-1,"13827":-1,"13828":-1,"13829":-1,"13830":-1,"13831":-1,"13832":-1,"13833":-1,"13834":-1,"13835":-1,"13836":-1,"13837":-1,"13838":-1,"13839":-1,"13840":-1,"13841":-1,"13842":-1,"13843":0,"13844":-1,"13845":0,"13846":-1,"13847":4063,"13848":-1,"13849":-1,"13850":-1,"13851":-1,"13852":4065,"13853":-1,"13854":-1,"13855":-1,"13856":-1,"13857":4066,"13858":4068,"13859":4067,"13860":4063,"13861":-1,"13862":-1,"13863":4067,"13864":-1,"13865":-1,"13866":-1,"13867":-1,"13868":-1,"13869":-1,"13870":-1,"13871":4066,"13872":-1,"13873":-1,"13874":-1,"13875":-1,"13876":-1,"13877":4065,"13878":-1,"13879":4067,"13880":-1,"13881":-1,"13882":-1,"13883":0,"13884":0,"13885":-1,"13886":-1,"13887":-1,"13888":-1,"13889":-1,"13890":-1,"13891":-1,"13892":-1,"13893":-1,"13894":4066,"13895":-1,"13896":-1,"13897":-1,"13898":-1,"13899":-1,"13900":-1,"13901":-1,"13902":-1,"13903":-1,"13904":-1,"13905":-1,"13906":4065,"13907":-1,"13908":-1,"13909":-1,"13910":-1,"13911":-1,"13912":-1,"13913":-1,"13914":-1,"13915":-1,"13916":-1,"13917":-1,"13918":-1,"13919":0,"13920":-1,"13921":4064,"13922":-1,"13923":-1,"13924":-1,"13925":-1,"13926":-1,"13927":-1,"13928":-1,"13929":-1,"13930":-1,"13931":-1,"13932":-1,"13933":-1,"13934":-1,"13935":4065,"13936":-1,"13937":-1,"13938":-1,"13939":-1,"13940":-1,"13941":-1,"13942":-1,"13943":-1,"13944":-1,"13945":-1,"13946":-1,"13947":-1,"13948":-1,"13949":-1,"13950":0,"13951":-1,"13952":-1,"13953":-1,"13954":-1,"13955":4066,"13956":-1,"13957":-1,"13958":-1,"13959":-1,"13960":-1,"13961":-1,"13962":-1,"13963":-1,"13964":-1,"13965":-1,"13966":-1,"13967":-1,"13968":-1,"13969":-1,"13970":-1,"13971":-1,"13972":-1,"13973":-1,"13974":-1,"13975":-1,"13976":-1,"13977":-1,"13978":4063,"13979":-1,"13980":4067,"13981":-1,"13982":-1,"13983":-1,"13984":-1,"13985":-1,"13986":-1,"13987":-1,"13988":-1,"13989":-1,"13990":-1,"13991":0,"13992":-1,"13993":0,"13994":-1,"13995":-1,"13996":-1,"13997":-1,"13998":-1,"13999":-1,"14000":-1,"14001":-1,"14002":4066,"14003":-1,"14004":-1,"14005":-1,"14006":-1,"14007":-1,"14008":-1,"14009":-1,"14010":-1,"14011":4065,"14012":-1,"14013":-1,"14014":-1,"14015":-1,"14016":-1,"14017":-1,"14018":-1,"14019":4065,"14020":-1,"14021":-1,"14022":-1,"14023":-1,"14024":-1,"14025":-1,"14026":-1,"14027":-1,"14028":4066,"14029":-1,"14030":-1,"14031":-1,"14032":-1,"14033":-1,"14034":-1,"14035":-1,"14036":-1,"14037":-1,"14038":-1,"14039":4068,"14040":4066,"14041":-1,"14042":-1,"14043":-1,"14044":-1,"14045":-1,"14046":-1,"14047":4064,"14048":-1,"14049":-1,"14050":4066,"14051":-1,"14052":-1,"14053":-1,"14054":-1,"14055":-1,"14056":-1,"14057":-1,"14058":4066,"14059":-1,"14060":-1,"14061":-1,"14062":-1,"14063":4064,"14064":-1,"14065":-1,"14066":-1,"14067":-1,"14068":-1,"14069":-1,"14070":-1,"14071":-1,"14072":-1,"14073":-1,"14074":-1,"14075":-1,"14076":4064,"14077":-1,"14078":-1,"14079":-1,"14080":4064,"14081":-1,"14082":-1,"14083":-1,"14084":0,"14085":-1,"14086":-1,"14087":-1,"14088":-1,"14089":-1,"14090":-1,"14091":-1,"14092":4068,"14093":-1,"14094":-1,"14095":-1,"14096":-1,"14097":-1,"14098":-1,"14099":-1,"14100":-1,"14101":-1,"14102":4065,"14103":-1,"14104":-1,"14105":-1,"14106":-1,"14107":-1,"14108":-1,"14109":-1,"14110":4067,"14111":-1,"14112":4068,"14113":-1,"14114":-1,"14115":-1,"14116":-1,"14117":-1,"14118":-1,"14119":4065,"14120":-1,"14121":-1,"14122":-1,"14123":-1,"14124":-1,"14125":-1,"14126":-1,"14127":-1,"14128":-1,"14129":-1,"14130":-1,"14131":-1,"14132":-1,"14133":-1,"14134":4067,"14135":-1,"14136":-1,"14137":-1,"14138":-1,"14139":4067,"14140":-1,"14141":-1,"14142":-1,"14143":-1,"14144":-1,"14145":-1,"14146":-1,"14147":-1,"14148":-1,"14149":-1,"14150":-1,"14151":-1,"14152":0,"14153":-1,"14154":-1,"14155":-1,"14156":-1,"14157":-1,"14158":-1,"14159":-1,"14160":-1,"14161":-1,"14162":-1,"14163":-1,"14164":-1,"14165":-1,"14166":-1,"14167":-1,"14168":4064,"14169":-1,"14170":-1,"14171":-1,"14172":-1,"14173":-1,"14174":4065,"14175":-1,"14176":-1,"14177":-1,"14178":0,"14179":-1,"14180":-1,"14181":-1,"14182":-1,"14183":-1,"14184":-1,"14185":-1,"14186":-1,"14187":0,"14188":-1,"14189":-1,"14190":-1,"14191":-1,"14192":-1,"14193":-1,"14194":-1,"14195":-1,"14196":-1,"14197":-1,"14198":-1,"14199":-1,"14200":-1,"14201":-1,"14202":-1,"14203":-1,"14204":-1,"14205":-1,"14206":-1,"14207":-1,"14208":-1,"14209":-1,"14210":-1,"14211":-1,"14212":-1,"14213":-1,"14214":-1,"14215":-1,"14216":-1,"14217":4064,"14218":-1,"14219":-1,"14220":-1,"14221":-1,"14222":-1,"14223":-1,"14224":-1,"14225":-1,"14226":-1,"14227":-1,"14228":-1,"14229":-1,"14230":-1,"14231":-1,"14232":-1,"14233":-1,"14234":-1,"14235":4067,"14236":-1,"14237":-1,"14238":-1,"14239":-1,"14240":-1,"14241":-1,"14242":4068,"14243":4066,"14244":-1,"14245":-1,"14246":-1,"14247":-1,"14248":-1,"14249":-1,"14250":-1,"14251":-1,"14252":-1,"14253":-1,"14254":-1,"14255":-1,"14256":-1,"14257":-1,"14258":-1,"14259":-1,"14260":0,"14261":-1,"14262":-1,"14263":4064,"14264":-1,"14265":-1,"14266":4068,"14267":-1,"14268":-1,"14269":-1,"14270":-1,"14271":-1,"14272":-1,"14273":-1,"14274":-1,"14275":-1,"14276":4063,"14277":-1,"14278":4066,"14279":-1,"14280":-1,"14281":-1,"14282":-1,"14283":-1,"14284":-1,"14285":-1,"14286":-1,"14287":-1,"14288":-1,"14289":-1,"14290":-1,"14291":-1,"14292":-1,"14293":-1,"14294":-1,"14295":-1,"14296":-1,"14297":0,"14298":-1,"14299":-1,"14300":-1,"14301":-1,"14302":-1,"14303":-1,"14304":-1,"14305":-1,"14306":-1,"14307":-1,"14308":-1,"14309":4063,"14310":-1,"14311":-1,"14312":-1,"14313":4065,"14314":-1,"14315":-1,"14316":-1,"14317":-1,"14318":-1,"14319":-1,"14320":-1,"14321":-1,"14322":-1,"14323":-1,"14324":-1,"14325":-1,"14326":0,"14327":-1,"14328":-1,"14329":-1,"14330":-1,"14331":-1,"14332":-1,"14333":-1,"14334":-1,"14335":-1,"14336":-1,"14337":-1,"14338":-1,"14339":-1,"14340":-1,"14341":-1,"14342":-1,"14343":0,"14344":4065,"14345":-1,"14346":-1,"14347":-1,"14348":-1,"14349":-1,"14350":-1,"14351":-1,"14352":4064,"14353":-1,"14354":-1,"14355":-1,"14356":-1,"14357":-1,"14358":-1,"14359":-1,"14360":-1,"14361":-1,"14362":-1,"14363":4066,"14364":-1,"14365":-1,"14366":-1,"14367":-1,"14368":-1,"14369":4068,"14370":-1,"14371":-1,"14372":-1,"14373":-1,"14374":-1,"14375":-1,"14376":-1,"14377":-1,"14378":-1,"14379":4066,"14380":-1,"14381":-1,"14382":-1,"14383":-1,"14384":-1,"14385":-1,"14386":-1,"14387":-1,"14388":-1,"14389":-1,"14390":-1,"14391":-1,"14392":4065,"14393":-1,"14394":-1,"14395":4068,"14396":-1,"14397":-1,"14398":0,"14399":-1,"14400":-1,"14401":-1,"14402":-1,"14403":-1,"14404":-1,"14405":-1,"14406":-1,"14407":-1,"14408":-1,"14409":-1,"14410":-1,"14411":-1,"14412":-1,"14413":4067,"14414":-1,"14415":-1,"14416":-1,"14417":-1,"14418":-1,"14419":-1,"14420":-1,"14421":-1,"14422":-1,"14423":-1,"14424":0,"14425":-1,"14426":4066,"14427":-1,"14428":-1,"14429":-1,"14430":-1,"14431":-1,"14432":-1,"14433":-1,"14434":-1,"14435":-1,"14436":-1,"14437":-1,"14438":-1,"14439":-1,"14440":-1,"14441":-1,"14442":-1,"14443":4066,"14444":4067,"14445":-1,"14446":-1,"14447":4066,"14448":-1,"14449":-1,"14450":-1,"14451":-1,"14452":-1,"14453":-1,"14454":-1,"14455":-1,"14456":-1,"14457":-1,"14458":-1,"14459":-1,"14460":-1,"14461":-1,"14462":-1,"14463":4068,"14464":-1,"14465":-1,"14466":-1,"14467":-1,"14468":-1,"14469":-1,"14470":4064,"14471":-1,"14472":-1,"14473":-1,"14474":-1,"14475":4065,"14476":-1,"14477":4065,"14478":4068,"14479":-1,"14480":-1,"14481":-1,"14482":-1,"14483":-1,"14484":4066,"14485":4066,"14486":-1,"14487":-1,"14488":-1,"14489":-1,"14490":-1,"14491":4067,"14492":-1,"14493":-1,"14494":-1,"14495":-1,"14496":-1,"14497":-1,"14498":-1,"14499":-1,"14500":-1,"14501":-1,"14502":-1,"14503":-1,"14504":-1,"14505":-1,"14506":-1,"14507":4066,"14508":4066,"14509":-1,"14510":-1,"14511":-1,"14512":-1,"14513":4068,"14514":-1,"14515":-1,"14516":-1,"14517":-1,"14518":-1,"14519":4063,"14520":-1,"14521":4066,"14522":-1,"14523":-1,"14524":-1,"14525":4065,"14526":-1,"14527":-1,"14528":-1,"14529":-1,"14530":-1,"14531":-1,"14532":0,"14533":4063,"14534":-1,"14535":0,"14536":-1,"14537":-1,"14538":-1,"14539":-1,"14540":-1,"14541":-1,"14542":-1,"14543":-1,"14544":-1,"14545":-1,"14546":-1,"14547":-1,"14548":-1,"14549":-1,"14550":4067,"14551":-1,"14552":-1,"14553":-1,"14554":-1,"14555":-1,"14556":-1,"14557":-1,"14558":-1,"14559":-1,"14560":4064,"14561":4066,"14562":4065,"14563":-1,"14564":-1,"14565":-1,"14566":-1,"14567":-1,"14568":-1,"14569":-1,"14570":-1,"14571":4064,"14572":-1,"14573":-1,"14574":-1,"14575":-1,"14576":-1,"14577":-1,"14578":-1,"14579":-1,"14580":-1,"14581":-1,"14582":-1,"14583":-1,"14584":-1,"14585":-1,"14586":4066,"14587":-1,"14588":-1,"14589":-1,"14590":-1,"14591":-1,"14592":-1,"14593":-1,"14594":-1,"14595":-1,"14596":-1,"14597":-1,"14598":-1,"14599":-1,"14600":-1,"14601":-1,"14602":-1,"14603":-1,"14604":4066,"14605":4067,"14606":-1,"14607":4068,"14608":-1,"14609":-1,"14610":-1,"14611":-1,"14612":-1,"14613":-1,"14614":-1,"14615":-1,"14616":-1,"14617":-1,"14618":-1,"14619":-1,"14620":-1,"14621":-1,"14622":-1,"14623":-1,"14624":4063,"14625":-1,"14626":-1,"14627":-1,"14628":-1,"14629":-1,"14630":4065,"14631":0,"14632":-1,"14633":4064,"14634":-1,"14635":-1,"14636":-1,"14637":-1,"14638":-1,"14639":-1,"14640":-1,"14641":-1,"14642":4065,"14643":-1,"14644":-1,"14645":-1,"14646":4064,"14647":-1,"14648":-1,"14649":-1,"14650":-1,"14651":4064,"14652":4063,"14653":-1,"14654":-1,"14655":-1,"14656":-1,"14657":-1,"14658":-1,"14659":-1,"14660":-1,"14661":-1,"14662":-1,"14663":-1,"14664":4065,"14665":-1,"14666":-1,"14667":-1,"14668":-1,"14669":-1,"14670":-1,"14671":-1,"14672":-1,"14673":-1,"14674":-1,"14675":-1,"14676":4066,"14677":-1,"14678":-1,"14679":-1,"14680":4065,"14681":-1,"14682":-1,"14683":4065,"14684":-1,"14685":-1,"14686":-1,"14687":-1,"14688":-1,"14689":-1,"14690":-1,"14691":-1,"14692":-1,"14693":-1,"14694":-1,"14695":-1,"14696":-1,"14697":-1,"14698":4066,"14699":-1,"14700":-1,"14701":-1,"14702":0,"14703":-1,"14704":-1,"14705":-1,"14706":-1,"14707":-1,"14708":-1,"14709":0,"14710":-1,"14711":-1,"14712":-1,"14713":-1,"14714":4067,"14715":4064,"14716":4068,"14717":-1,"14718":-1,"14719":-1,"14720":-1,"14721":-1,"14722":-1,"14723":-1,"14724":-1,"14725":-1,"14726":-1,"14727":-1,"14728":-1,"14729":-1,"14730":-1,"14731":-1,"14732":-1,"14733":-1,"14734":-1,"14735":-1,"14736":-1,"14737":-1,"14738":4064,"14739":-1,"14740":-1,"14741":0,"14742":4066,"14743":-1,"14744":-1,"14745":-1,"14746":-1,"14747":-1,"14748":-1,"14749":-1,"14750":-1,"14751":-1,"14752":-1,"14753":-1,"14754":4066,"14755":-1,"14756":4066,"14757":0,"14758":-1,"14759":-1,"14760":-1,"14761":-1,"14762":4064,"14763":-1,"14764":-1,"14765":-1,"14766":4066,"14767":0,"14768":-1,"14769":-1,"14770":-1,"14771":-1,"14772":-1,"14773":-1,"14774":-1,"14775":-1,"14776":4065,"14777":-1,"14778":0,"14779":4067,"14780":-1,"14781":-1,"14782":-1,"14783":-1,"14784":-1,"14785":-1,"14786":-1,"14787":-1,"14788":-1,"14789":-1,"14790":-1,"14791":-1,"14792":-1,"14793":-1,"14794":-1,"14795":4066,"14796":-1,"14797":-1,"14798":-1,"14799":-1,"14800":-1,"14801":-1,"14802":-1,"14803":-1,"14804":-1,"14805":-1,"14806":-1,"14807":-1,"14808":-1,"14809":-1,"14810":-1,"14811":-1,"14812":-1,"14813":-1,"14814":-1,"14815":4067,"14816":-1,"14817":4066,"14818":0,"14819":-1,"14820":-1,"14821":-1,"14822":-1,"14823":-1,"14824":-1,"14825":-1,"14826":-1,"14827":-1,"14828":-1,"14829":4064,"14830":-1,"14831":-1,"14832":-1,"14833":-1,"14834":-1,"14835":-1,"14836":-1,"14837":-1,"14838":-1,"14839":-1,"14840":-1,"14841":-1,"14842":-1,"14843":4066,"14844":-1,"14845":-1,"14846":-1,"14847":-1,"14848":-1,"14849":-1,"14850":-1,"14851":-1,"14852":4066,"14853":-1,"14854":-1,"14855":-1,"14856":4066,"14857":-1,"14858":-1,"14859":4067,"14860":-1,"14861":0,"14862":-1,"14863":-1,"14864":4064,"14865":-1,"14866":-1,"14867":-1,"14868":-1,"14869":-1,"14870":-1,"14871":-1,"14872":-1,"14873":-1,"14874":-1,"14875":-1,"14876":-1,"14877":-1,"14878":-1,"14879":-1,"14880":4067,"14881":-1,"14882":-1,"14883":-1,"14884":-1,"14885":4063,"14886":-1,"14887":-1,"14888":-1,"14889":-1,"14890":-1,"14891":4063,"14892":-1,"14893":4066,"14894":-1,"14895":4064,"14896":-1,"14897":0,"14898":-1,"14899":4064,"14900":-1,"14901":-1,"14902":-1,"14903":-1,"14904":4066,"14905":-1,"14906":-1,"14907":-1,"14908":-1,"14909":-1,"14910":-1,"14911":4063,"14912":-1,"14913":-1,"14914":-1,"14915":4067,"14916":-1,"14917":-1,"14918":-1,"14919":-1,"14920":-1,"14921":-1,"14922":-1,"14923":-1,"14924":-1,"14925":-1,"14926":-1,"14927":-1,"14928":-1,"14929":-1,"14930":-1,"14931":-1,"14932":-1,"14933":-1,"14934":-1,"14935":4068,"14936":-1,"14937":-1,"14938":-1,"14939":-1,"14940":-1,"14941":-1,"14942":-1,"14943":-1,"14944":-1,"14945":-1,"14946":-1,"14947":-1,"14948":-1,"14949":-1,"14950":-1,"14951":-1,"14952":-1,"14953":-1,"14954":-1,"14955":-1,"14956":-1,"14957":-1,"14958":4065,"14959":-1,"14960":-1,"14961":-1,"14962":-1,"14963":-1,"14964":-1,"14965":4065,"14966":-1,"14967":4064,"14968":-1,"14969":-1,"14970":-1,"14971":-1,"14972":-1,"14973":-1,"14974":-1,"14975":-1,"14976":-1,"14977":-1,"14978":-1,"14979":4063,"14980":4068,"14981":0,"14982":-1,"14983":-1,"14984":4065,"14985":-1,"14986":-1,"14987":-1,"14988":4067,"14989":-1,"14990":-1,"14991":-1,"14992":-1,"14993":0,"14994":4068,"14995":-1,"14996":-1,"14997":-1,"14998":-1,"14999":-1,"15000":-1,"15001":4064,"15002":-1,"15003":-1,"15004":-1,"15005":4067,"15006":-1,"15007":-1,"15008":-1,"15009":-1,"15010":-1,"15011":-1,"15012":0,"15013":-1,"15014":-1,"15015":-1,"15016":-1,"15017":-1,"15018":-1,"15019":-1,"15020":-1,"15021":-1,"15022":-1,"15023":4067,"15024":-1,"15025":-1,"15026":-1,"15027":-1,"15028":-1,"15029":-1,"15030":-1,"15031":-1,"15032":0,"15033":4063,"15034":-1,"15035":4066,"15036":-1,"15037":-1,"15038":-1,"15039":-1,"15040":-1,"15041":-1,"15042":0,"15043":-1,"15044":-1,"15045":0,"15046":-1,"15047":-1,"15048":-1,"15049":-1,"15050":-1,"15051":-1,"15052":-1,"15053":-1,"15054":0,"15055":-1,"15056":4067,"15057":-1,"15058":-1,"15059":4065,"15060":-1,"15061":4063,"15062":-1,"15063":-1,"15064":-1,"15065":-1,"15066":-1,"15067":-1,"15068":-1,"15069":-1,"15070":-1,"15071":-1,"15072":-1,"15073":-1,"15074":-1,"15075":-1,"15076":-1,"15077":-1,"15078":-1,"15079":4068,"15080":-1,"15081":-1,"15082":-1,"15083":4067,"15084":-1,"15085":-1,"15086":-1,"15087":-1,"15088":-1,"15089":-1,"15090":-1,"15091":-1,"15092":-1,"15093":-1,"15094":-1,"15095":-1,"15096":-1,"15097":4065,"15098":-1,"15099":-1,"15100":-1,"15101":-1,"15102":-1,"15103":-1,"15104":-1,"15105":-1,"15106":-1,"15107":0,"15108":4067,"15109":-1,"15110":-1,"15111":4067,"15112":-1,"15113":-1,"15114":-1,"15115":4066,"15116":-1,"15117":-1,"15118":-1,"15119":-1,"15120":-1,"15121":-1,"15122":-1,"15123":4064,"15124":-1,"15125":-1,"15126":-1,"15127":-1,"15128":4066,"15129":-1,"15130":-1,"15131":-1,"15132":4067,"15133":-1,"15134":-1,"15135":-1,"15136":-1,"15137":-1,"15138":-1,"15139":-1,"15140":-1,"15141":4065,"15142":-1,"15143":-1,"15144":-1,"15145":-1,"15146":-1,"15147":-1,"15148":-1,"15149":4065,"15150":-1,"15151":-1,"15152":-1,"15153":-1,"15154":-1,"15155":-1,"15156":-1,"15157":-1,"15158":-1,"15159":4066,"15160":-1,"15161":-1,"15162":-1,"15163":-1,"15164":-1,"15165":0,"15166":-1,"15167":4064,"15168":-1,"15169":-1,"15170":-1,"15171":4066,"15172":-1,"15173":-1,"15174":-1,"15175":-1,"15176":-1,"15177":-1,"15178":-1,"15179":-1,"15180":-1,"15181":-1,"15182":-1,"15183":4065,"15184":-1,"15185":-1,"15186":-1,"15187":-1,"15188":-1,"15189":4066,"15190":-1,"15191":-1,"15192":4065,"15193":-1,"15194":-1,"15195":4067,"15196":-1,"15197":-1,"15198":-1,"15199":-1,"15200":-1,"15201":-1,"15202":-1,"15203":-1,"15204":-1,"15205":-1,"15206":-1,"15207":-1,"15208":-1,"15209":-1,"15210":-1,"15211":0,"15212":-1,"15213":-1,"15214":-1,"15215":-1,"15216":-1,"15217":-1,"15218":-1,"15219":-1,"15220":-1,"15221":-1,"15222":-1,"15223":-1,"15224":0,"15225":4066,"15226":-1,"15227":-1,"15228":-1,"15229":-1,"15230":-1,"15231":-1,"15232":-1,"15233":-1,"15234":-1,"15235":-1,"15236":-1,"15237":-1,"15238":-1,"15239":-1,"15240":-1,"15241":-1,"15242":-1,"15243":-1,"15244":-1,"15245":-1,"15246":-1,"15247":-1,"15248":-1,"15249":-1,"15250":-1,"15251":-1,"15252":4065,"15253":-1,"15254":4068,"15255":-1,"15256":4066,"15257":-1,"15258":-1,"15259":-1,"15260":-1,"15261":-1,"15262":-1,"15263":4065,"15264":4065,"15265":-1,"15266":-1,"15267":-1,"15268":-1,"15269":-1,"15270":-1,"15271":-1,"15272":-1,"15273":-1,"15274":-1,"15275":-1,"15276":4064,"15277":-1,"15278":-1,"15279":-1,"15280":-1,"15281":-1,"15282":4066,"15283":-1,"15284":-1,"15285":-1,"15286":-1,"15287":4066,"15288":-1,"15289":0,"15290":-1,"15291":-1,"15292":4068,"15293":-1,"15294":-1,"15295":-1,"15296":-1,"15297":-1,"15298":-1,"15299":-1,"15300":-1,"15301":-1,"15302":-1,"15303":-1,"15304":-1,"15305":-1,"15306":-1,"15307":-1,"15308":4064,"15309":-1,"15310":-1,"15311":-1,"15312":-1,"15313":-1,"15314":-1,"15315":0,"15316":-1,"15317":-1,"15318":-1,"15319":4066,"15320":-1,"15321":-1,"15322":-1,"15323":-1,"15324":-1,"15325":4064,"15326":-1,"15327":-1,"15328":-1,"15329":-1,"15330":-1,"15331":-1,"15332":-1,"15333":-1,"15334":-1,"15335":4066,"15336":-1,"15337":-1,"15338":-1,"15339":-1,"15340":-1,"15341":-1,"15342":4066,"15343":-1,"15344":4065,"15345":-1,"15346":-1,"15347":-1,"15348":-1,"15349":-1,"15350":-1,"15351":-1,"15352":-1,"15353":-1,"15354":-1,"15355":-1,"15356":-1,"15357":4065,"15358":-1,"15359":0,"15360":-1,"15361":-1,"15362":-1,"15363":-1,"15364":-1,"15365":-1,"15366":4065,"15367":-1,"15368":-1,"15369":-1,"15370":-1,"15371":-1,"15372":-1,"15373":-1,"15374":-1,"15375":-1,"15376":4065,"15377":-1,"15378":4065,"15379":-1,"15380":-1,"15381":4066,"15382":-1,"15383":4067,"15384":-1,"15385":-1,"15386":-1,"15387":4065,"15388":-1,"15389":4068,"15390":-1,"15391":-1,"15392":-1,"15393":-1,"15394":-1,"15395":-1,"15396":-1,"15397":-1,"15398":-1,"15399":-1,"15400":4063,"15401":-1,"15402":-1,"15403":-1,"15404":-1,"15405":-1,"15406":4067,"15407":-1,"15408":-1,"15409":-1,"15410":4065,"15411":-1,"15412":-1,"15413":-1,"15414":-1,"15415":-1,"15416":-1,"15417":4063,"15418":-1,"15419":-1,"15420":4066,"15421":-1,"15422":-1,"15423":-1,"15424":-1,"15425":-1,"15426":-1,"15427":-1,"15428":-1,"15429":-1,"15430":-1,"15431":-1,"15432":-1,"15433":-1,"15434":-1,"15435":-1,"15436":4065,"15437":4064,"15438":-1,"15439":-1,"15440":-1,"15441":-1,"15442":-1,"15443":-1,"15444":-1,"15445":4067,"15446":4067,"15447":-1,"15448":-1,"15449":-1,"15450":-1,"15451":-1,"15452":-1,"15453":-1,"15454":4065,"15455":-1,"15456":-1,"15457":-1,"15458":-1,"15459":-1,"15460":-1,"15461":-1,"15462":4067,"15463":-1,"15464":4067,"15465":-1,"15466":-1,"15467":-1,"15468":-1,"15469":-1,"15470":-1,"15471":-1,"15472":-1,"15473":-1,"15474":4063,"15475":4064,"15476":-1,"15477":-1,"15478":0,"15479":-1,"15480":-1,"15481":4064,"15482":-1,"15483":-1,"15484":-1,"15485":4068,"15486":-1,"15487":0,"15488":-1,"15489":-1,"15490":-1,"15491":-1,"15492":-1,"15493":-1,"15494":-1,"15495":4064,"15496":-1,"15497":4067,"15498":4064,"15499":-1,"15500":-1,"15501":-1,"15502":-1,"15503":-1,"15504":-1,"15505":-1,"15506":-1,"15507":-1,"15508":-1,"15509":-1,"15510":-1,"15511":-1,"15512":-1,"15513":-1,"15514":-1,"15515":4067,"15516":-1,"15517":-1,"15518":-1,"15519":-1,"15520":-1,"15521":-1,"15522":-1,"15523":4067,"15524":-1,"15525":4067,"15526":-1,"15527":-1,"15528":-1,"15529":4068,"15530":-1,"15531":4065,"15532":-1,"15533":-1,"15534":-1,"15535":-1,"15536":-1,"15537":-1,"15538":-1,"15539":-1,"15540":-1,"15541":-1,"15542":-1,"15543":-1,"15544":-1,"15545":-1,"15546":-1,"15547":4064,"15548":-1,"15549":-1,"15550":0,"15551":-1,"15552":-1,"15553":-1,"15554":4067,"15555":-1,"15556":-1,"15557":-1,"15558":-1,"15559":-1,"15560":4068,"15561":-1,"15562":-1,"15563":-1,"15564":-1,"15565":4066,"15566":-1,"15567":-1,"15568":-1,"15569":-1,"15570":4067,"15571":-1,"15572":0,"15573":-1,"15574":-1,"15575":-1,"15576":-1,"15577":-1,"15578":-1,"15579":-1,"15580":-1,"15581":-1,"15582":-1,"15583":-1,"15584":-1,"15585":-1,"15586":-1,"15587":4065,"15588":-1,"15589":-1,"15590":-1,"15591":4067,"15592":-1,"15593":-1,"15594":-1,"15595":-1,"15596":-1,"15597":-1,"15598":-1,"15599":-1,"15600":-1,"15601":-1,"15602":-1,"15603":-1,"15604":-1,"15605":-1,"15606":-1,"15607":4064,"15608":-1,"15609":-1,"15610":-1,"15611":-1,"15612":-1,"15613":-1,"15614":-1,"15615":0,"15616":4067,"15617":-1,"15618":-1,"15619":-1,"15620":4063,"15621":4064,"15622":-1,"15623":-1,"15624":-1,"15625":4065,"15626":-1,"15627":-1,"15628":4068,"15629":4067,"15630":-1,"15631":-1,"15632":-1,"15633":-1,"15634":-1,"15635":-1,"15636":-1,"15637":-1,"15638":-1,"15639":-1,"15640":-1,"15641":-1,"15642":-1,"15643":-1,"15644":-1,"15645":-1,"15646":-1,"15647":-1,"15648":-1,"15649":-1,"15650":-1,"15651":-1,"15652":4065,"15653":-1,"15654":-1,"15655":-1,"15656":4064,"15657":-1,"15658":-1,"15659":-1,"15660":-1,"15661":-1,"15662":-1,"15663":4065,"15664":-1,"15665":-1,"15666":-1,"15667":-1,"15668":-1,"15669":-1,"15670":-1,"15671":4064,"15672":4065,"15673":-1,"15674":-1,"15675":-1,"15676":-1,"15677":-1,"15678":-1,"15679":-1,"15680":-1,"15681":-1,"15682":-1,"15683":-1,"15684":-1,"15685":-1,"15686":-1,"15687":-1,"15688":-1,"15689":-1,"15690":-1,"15691":-1,"15692":-1,"15693":-1,"15694":-1,"15695":-1,"15696":-1,"15697":-1,"15698":-1,"15699":4066,"15700":-1,"15701":-1,"15702":-1,"15703":4067,"15704":-1,"15705":-1,"15706":-1,"15707":-1,"15708":-1,"15709":-1,"15710":-1,"15711":4067,"15712":-1,"15713":-1,"15714":-1,"15715":4065,"15716":-1,"15717":-1,"15718":-1,"15719":-1,"15720":-1,"15721":0,"15722":-1,"15723":4063,"15724":-1,"15725":4066,"15726":-1,"15727":-1,"15728":-1,"15729":-1,"15730":-1,"15731":4065,"15732":-1,"15733":4066,"15734":-1,"15735":-1,"15736":-1,"15737":-1,"15738":-1,"15739":-1,"15740":-1,"15741":4066,"15742":-1,"15743":-1,"15744":-1,"15745":-1,"15746":-1,"15747":-1,"15748":-1,"15749":-1,"15750":-1,"15751":-1,"15752":-1,"15753":-1,"15754":-1,"15755":-1,"15756":4064,"15757":-1,"15758":-1,"15759":-1,"15760":-1,"15761":-1,"15762":-1,"15763":-1,"15764":-1,"15765":-1,"15766":-1,"15767":-1,"15768":-1,"15769":-1,"15770":-1,"15771":-1,"15772":-1,"15773":-1,"15774":-1,"15775":-1,"15776":4064,"15777":-1,"15778":-1,"15779":-1,"15780":-1,"15781":-1,"15782":-1,"15783":4064,"15784":-1,"15785":-1,"15786":-1,"15787":-1,"15788":-1,"15789":-1,"15790":-1,"15791":-1,"15792":0,"15793":-1,"15794":4067,"15795":4068,"15796":-1,"15797":-1,"15798":-1,"15799":-1,"15800":-1,"15801":-1,"15802":-1,"15803":-1,"15804":-1,"15805":-1,"15806":0,"15807":-1,"15808":-1,"15809":-1,"15810":-1,"15811":-1,"15812":-1,"15813":-1,"15814":-1,"15815":-1,"15816":-1,"15817":-1,"15818":-1,"15819":-1,"15820":-1,"15821":-1,"15822":0,"15823":4067,"15824":-1,"15825":-1,"15826":-1,"15827":-1,"15828":-1,"15829":-1,"15830":-1,"15831":-1,"15832":-1,"15833":-1,"15834":0,"15835":-1,"15836":-1,"15837":-1,"15838":-1,"15839":-1,"15840":-1,"15841":4066,"15842":-1,"15843":-1,"15844":-1,"15845":4067,"15846":-1,"15847":-1,"15848":-1,"15849":-1,"15850":-1,"15851":-1,"15852":-1,"15853":-1,"15854":-1,"15855":-1,"15856":-1,"15857":-1,"15858":-1,"15859":-1,"15860":-1,"15861":-1,"15862":4064,"15863":-1,"15864":-1,"15865":-1,"15866":-1,"15867":4066,"15868":-1,"15869":-1,"15870":-1,"15871":-1,"15872":-1,"15873":-1,"15874":-1,"15875":-1,"15876":-1,"15877":-1,"15878":-1,"15879":-1,"15880":-1,"15881":-1,"15882":4068,"15883":-1,"15884":-1,"15885":-1,"15886":-1,"15887":-1,"15888":-1,"15889":-1,"15890":-1,"15891":-1,"15892":-1,"15893":-1,"15894":-1,"15895":-1,"15896":-1,"15897":-1,"15898":-1,"15899":-1,"15900":-1,"15901":-1,"15902":4066,"15903":-1,"15904":-1,"15905":-1,"15906":0,"15907":-1,"15908":-1,"15909":-1,"15910":-1,"15911":-1,"15912":4064,"15913":-1,"15914":-1,"15915":-1,"15916":-1,"15917":-1,"15918":4066,"15919":4065,"15920":-1,"15921":-1,"15922":-1,"15923":-1,"15924":-1,"15925":-1,"15926":-1,"15927":0,"15928":-1,"15929":0,"15930":-1,"15931":4065,"15932":-1,"15933":-1,"15934":-1,"15935":-1,"15936":-1,"15937":-1,"15938":-1,"15939":-1,"15940":-1,"15941":-1,"15942":4066,"15943":-1,"15944":-1,"15945":-1,"15946":-1,"15947":4067,"15948":4067,"15949":-1,"15950":4064,"15951":-1,"15952":-1,"15953":0,"15954":-1,"15955":-1,"15956":-1,"15957":4066,"15958":-1,"15959":-1,"15960":-1,"15961":-1,"15962":-1,"15963":-1,"15964":-1,"15965":-1,"15966":-1,"15967":-1,"15968":-1,"15969":-1,"15970":-1,"15971":-1,"15972":-1,"15973":-1,"15974":-1,"15975":-1,"15976":-1,"15977":-1,"15978":-1,"15979":-1,"15980":-1,"15981":-1,"15982":4066,"15983":-1,"15984":4064,"15985":-1,"15986":-1,"15987":-1,"15988":-1,"15989":-1,"15990":-1,"15991":-1,"15992":-1,"15993":-1,"15994":4068,"15995":4063,"15996":4066,"15997":-1,"15998":-1,"15999":-1,"16000":-1,"16001":-1,"16002":-1,"16003":0,"16004":-1,"16005":-1,"16006":-1,"16007":-1,"16008":-1,"16009":-1,"16010":-1,"16011":4066,"16012":-1,"16013":-1,"16014":4067,"16015":-1,"16016":-1,"16017":-1,"16018":-1,"16019":-1,"16020":-1,"16021":4063,"16022":4065,"16023":4064,"16024":-1,"16025":-1,"16026":-1,"16027":4067,"16028":-1,"16029":-1,"16030":-1,"16031":-1,"16032":-1,"16033":-1,"16034":-1,"16035":-1,"16036":-1,"16037":-1,"16038":-1,"16039":-1,"16040":-1,"16041":-1,"16042":-1,"16043":4064,"16044":-1,"16045":-1,"16046":-1,"16047":-1,"16048":-1,"16049":-1,"16050":-1,"16051":4065,"16052":-1,"16053":-1,"16054":-1,"16055":-1,"16056":-1,"16057":-1,"16058":-1,"16059":-1,"16060":-1,"16061":-1,"16062":-1,"16063":-1,"16064":-1,"16065":4065,"16066":-1,"16067":-1,"16068":-1,"16069":-1,"16070":-1,"16071":-1,"16072":-1,"16073":-1,"16074":-1,"16075":-1,"16076":-1,"16077":-1,"16078":-1,"16079":-1,"16080":-1,"16081":-1,"16082":-1,"16083":-1,"16084":4066,"16085":-1,"16086":4064,"16087":-1,"16088":0,"16089":-1,"16090":-1,"16091":-1,"16092":-1,"16093":-1,"16094":-1,"16095":-1,"16096":-1,"16097":-1,"16098":4067,"16099":4068,"16100":-1,"16101":-1,"16102":-1,"16103":-1,"16104":-1,"16105":-1,"16106":-1,"16107":-1,"16108":-1,"16109":-1,"16110":-1,"16111":-1,"16112":-1,"16113":-1,"16114":-1,"16115":-1,"16116":-1,"16117":-1,"16118":-1,"16119":-1,"16120":-1,"16121":4068,"16122":-1,"16123":4067,"16124":4065,"16125":-1,"16126":0,"16127":-1,"16128":-1,"16129":-1,"16130":-1,"16131":-1,"16132":-1,"16133":-1,"16134":-1,"16135":-1,"16136":-1,"16137":-1,"16138":-1,"16139":4067,"16140":-1,"16141":-1,"16142":-1,"16143":-1,"16144":-1,"16145":-1,"16146":-1,"16147":-1,"16148":4066,"16149":0,"16150":-1,"16151":-1,"16152":-1,"16153":-1,"16154":4064,"16155":-1,"16156":-1,"16157":-1,"16158":-1,"16159":-1,"16160":4065,"16161":-1,"16162":-1,"16163":-1,"16164":-1,"16165":-1,"16166":-1,"16167":-1,"16168":-1,"16169":-1,"16170":-1,"16171":-1,"16172":-1,"16173":-1,"16174":-1,"16175":-1,"16176":-1,"16177":-1,"16178":4065,"16179":-1,"16180":-1,"16181":-1,"16182":-1,"16183":4067,"16184":-1,"16185":4066,"16186":-1,"16187":-1,"16188":-1,"16189":-1,"16190":-1,"16191":4066,"16192":-1,"16193":-1,"16194":0,"16195":-1,"16196":-1,"16197":-1,"16198":-1,"16199":-1,"16200":4068,"16201":-1,"16202":-1,"16203":-1,"16204":-1,"16205":-1,"16206":-1,"16207":-1,"16208":-1,"16209":-1,"16210":0,"16211":-1,"16212":-1,"16213":-1,"16214":-1,"16215":-1,"16216":-1,"16217":4068,"16218":-1,"16219":-1,"16220":4065,"16221":-1,"16222":-1,"16223":-1,"16224":-1,"16225":-1,"16226":0,"16227":-1,"16228":0,"16229":4067,"16230":-1,"16231":-1,"16232":-1,"16233":-1,"16234":-1,"16235":-1,"16236":-1,"16237":4063,"16238":-1,"16239":-1,"16240":0,"16241":-1,"16242":-1,"16243":-1,"16244":-1,"16245":-1,"16246":-1,"16247":-1,"16248":4067,"16249":-1,"16250":-1,"16251":-1,"16252":-1,"16253":-1,"16254":4063,"16255":-1,"16256":-1,"16257":-1,"16258":-1,"16259":-1,"16260":-1,"16261":-1,"16262":-1,"16263":-1,"16264":4066,"16265":-1,"16266":-1,"16267":-1,"16268":-1,"16269":-1,"16270":-1,"16271":-1,"16272":-1,"16273":-1,"16274":-1,"16275":-1,"16276":4064,"16277":4066,"16278":-1,"16279":4066,"16280":-1,"16281":-1,"16282":-1,"16283":-1,"16284":-1,"16285":-1,"16286":-1,"16287":-1,"16288":-1,"16289":-1,"16290":-1,"16291":-1,"16292":4063,"16293":-1,"16294":-1,"16295":-1,"16296":-1,"16297":4064,"16298":4066,"16299":4065,"16300":-1,"16301":-1,"16302":-1,"16303":-1,"16304":-1,"16305":-1,"16306":-1,"16307":4063,"16308":-1,"16309":-1,"16310":-1,"16311":-1,"16312":4063,"16313":-1,"16314":-1,"16315":-1,"16316":4066,"16317":-1,"16318":-1,"16319":-1,"16320":-1,"16321":-1,"16322":-1,"16323":-1,"16324":-1,"16325":-1,"16326":4066,"16327":4064,"16328":-1,"16329":4066,"16330":-1,"16331":-1,"16332":-1,"16333":-1,"16334":-1,"16335":-1,"16336":-1,"16337":-1,"16338":-1,"16339":-1,"16340":-1,"16341":-1,"16342":-1,"16343":-1,"16344":-1,"16345":-1,"16346":-1,"16347":-1,"16348":-1,"16349":0,"16350":-1,"16351":-1,"16352":-1,"16353":-1,"16354":-1,"16355":-1,"16356":-1,"16357":-1,"16358":-1,"16359":-1,"16360":-1,"16361":-1,"16362":-1,"16363":-1,"16364":-1,"16365":-1,"16366":-1,"16367":-1,"16368":-1,"16369":-1,"16370":-1,"16371":-1,"16372":-1,"16373":-1,"16374":-1,"16375":-1,"16376":-1,"16377":-1,"16378":-1,"16379":-1,"16380":-1,"16381":4064,"16382":-1,"16383":-1,"16384":-1,"16385":-1,"16386":-1,"16387":-1,"16388":-1,"16389":-1,"16390":-1,"16391":0,"16392":-1,"16393":-1,"16394":-1,"16395":-1,"16396":-1,"16397":-1,"16398":-1,"16399":-1,"16400":-1,"16401":0,"16402":4067,"16403":-1,"16404":-1,"16405":-1,"16406":-1,"16407":-1,"16408":-1,"16409":-1,"16410":-1,"16411":-1,"16412":4066,"16413":0,"16414":-1,"16415":-1,"16416":-1,"16417":-1,"16418":-1,"16419":-1,"16420":-1,"16421":-1,"16422":-1,"16423":-1,"16424":-1,"16425":0,"16426":-1,"16427":-1,"16428":-1,"16429":4065,"16430":-1,"16431":-1,"16432":-1,"16433":-1,"16434":-1,"16435":-1,"16436":-1,"16437":-1,"16438":-1,"16439":-1,"16440":-1,"16441":-1,"16442":0,"16443":-1,"16444":-1,"16445":0,"16446":-1,"16447":-1,"16448":-1,"16449":-1,"16450":-1,"16451":-1,"16452":-1,"16453":-1,"16454":-1,"16455":-1,"16456":-1,"16457":-1,"16458":-1,"16459":-1,"16460":-1,"16461":-1,"16462":-1,"16463":-1,"16464":-1,"16465":-1,"16466":-1,"16467":-1,"16468":-1,"16469":-1,"16470":0,"16471":-1,"16472":0,"16473":-1,"16474":-1,"16475":-1,"16476":-1,"16477":-1,"16478":-1,"16479":-1,"16480":4064,"16481":-1,"16482":-1,"16483":-1,"16484":4064,"16485":-1,"16486":-1,"16487":-1,"16488":-1,"16489":4063,"16490":-1,"16491":-1,"16492":-1,"16493":-1,"16494":4065,"16495":-1,"16496":-1,"16497":4063,"16498":4064,"16499":-1,"16500":4066,"16501":-1,"16502":-1,"16503":-1,"16504":-1,"16505":-1,"16506":0,"16507":-1,"16508":-1,"16509":-1,"16510":4064,"16511":-1,"16512":4065,"16513":-1,"16514":-1,"16515":-1,"16516":-1,"16517":-1,"16518":-1,"16519":-1,"16520":-1,"16521":-1,"16522":-1,"16523":-1,"16524":-1,"16525":-1,"16526":-1,"16527":-1,"16528":-1,"16529":-1,"16530":-1,"16531":-1,"16532":-1,"16533":-1,"16534":0,"16535":-1,"16536":-1,"16537":-1,"16538":-1,"16539":-1,"16540":-1,"16541":-1,"16542":-1,"16543":-1,"16544":-1,"16545":-1,"16546":4066,"16547":-1,"16548":-1,"16549":-1,"16550":-1,"16551":-1,"16552":-1,"16553":-1,"16554":-1,"16555":-1,"16556":-1,"16557":-1,"16558":-1,"16559":-1,"16560":-1,"16561":-1,"16562":-1,"16563":-1,"16564":-1,"16565":-1,"16566":-1,"16567":-1,"16568":-1,"16569":-1,"16570":-1,"16571":-1,"16572":-1,"16573":-1,"16574":-1,"16575":-1,"16576":4066,"16577":-1,"16578":-1,"16579":-1,"16580":-1,"16581":-1,"16582":-1,"16583":-1,"16584":-1,"16585":4064,"16586":4065,"16587":-1,"16588":-1,"16589":-1,"16590":-1,"16591":-1,"16592":-1,"16593":-1,"16594":-1,"16595":-1,"16596":-1,"16597":-1,"16598":-1,"16599":-1,"16600":-1,"16601":-1,"16602":-1,"16603":-1,"16604":-1,"16605":-1,"16606":0,"16607":-1,"16608":-1,"16609":-1,"16610":0,"16611":-1,"16612":-1,"16613":-1,"16614":-1,"16615":-1,"16616":-1,"16617":-1,"16618":-1,"16619":-1,"16620":-1,"16621":-1,"16622":-1,"16623":-1,"16624":-1,"16625":-1,"16626":-1,"16627":-1,"16628":-1,"16629":-1,"16630":-1,"16631":-1,"16632":-1,"16633":-1,"16634":-1,"16635":-1,"16636":-1,"16637":4063,"16638":-1,"16639":-1,"16640":-1,"16641":-1,"16642":-1,"16643":-1,"16644":-1,"16645":-1,"16646":-1,"16647":-1,"16648":-1,"16649":-1,"16650":-1,"16651":-1,"16652":-1,"16653":-1,"16654":-1,"16655":-1,"16656":4065,"16657":4068,"16658":-1,"16659":-1,"16660":-1,"16661":-1,"16662":-1,"16663":-1,"16664":-1,"16665":-1,"16666":-1,"16667":-1,"16668":-1,"16669":-1,"16670":4066,"16671":-1,"16672":-1,"16673":-1,"16674":-1,"16675":-1,"16676":-1,"16677":-1,"16678":-1,"16679":-1,"16680":-1,"16681":-1,"16682":-1,"16683":-1,"16684":-1,"16685":-1,"16686":4064,"16687":-1,"16688":-1,"16689":-1,"16690":-1,"16691":4064,"16692":-1,"16693":-1,"16694":-1,"16695":-1,"16696":-1,"16697":-1,"16698":-1,"16699":4065,"16700":-1,"16701":-1,"16702":-1,"16703":-1,"16704":-1,"16705":-1,"16706":-1,"16707":-1,"16708":4064,"16709":-1,"16710":-1,"16711":-1,"16712":-1,"16713":4066,"16714":-1,"16715":-1,"16716":-1,"16717":-1,"16718":-1,"16719":-1,"16720":-1,"16721":-1,"16722":4068,"16723":4067,"16724":-1,"16725":-1,"16726":-1,"16727":-1,"16728":0,"16729":-1,"16730":-1,"16731":-1,"16732":-1,"16733":-1,"16734":-1,"16735":-1,"16736":-1,"16737":-1,"16738":-1,"16739":-1,"16740":-1,"16741":-1,"16742":-1,"16743":4067,"16744":-1,"16745":-1,"16746":-1,"16747":-1,"16748":-1,"16749":-1,"16750":-1,"16751":-1,"16752":-1,"16753":-1,"16754":-1,"16755":-1,"16756":-1,"16757":-1,"16758":-1,"16759":-1,"16760":4067,"16761":4066,"16762":-1,"16763":-1,"16764":-1,"16765":0,"16766":-1,"16767":-1,"16768":-1,"16769":-1,"16770":-1,"16771":4063,"16772":4067,"16773":-1,"16774":-1,"16775":-1,"16776":-1,"16777":-1,"16778":-1,"16779":-1,"16780":4066,"16781":-1,"16782":-1,"16783":-1,"16784":-1,"16785":-1,"16786":4067,"16787":-1,"16788":-1,"16789":-1,"16790":-1,"16791":-1,"16792":-1,"16793":4067,"16794":-1,"16795":-1,"16796":-1,"16797":-1,"16798":-1,"16799":-1,"16800":-1,"16801":4066,"16802":-1,"16803":-1,"16804":-1,"16805":-1,"16806":-1,"16807":-1,"16808":-1,"16809":-1,"16810":-1,"16811":4068,"16812":-1,"16813":-1,"16814":-1,"16815":-1,"16816":4063,"16817":-1,"16818":-1,"16819":0,"16820":-1,"16821":-1,"16822":-1,"16823":-1,"16824":-1,"16825":-1,"16826":4065,"16827":-1,"16828":-1,"16829":4064,"16830":-1,"16831":-1,"16832":-1,"16833":-1,"16834":-1,"16835":-1,"16836":-1,"16837":-1,"16838":-1,"16839":-1,"16840":-1,"16841":-1,"16842":-1,"16843":-1,"16844":-1,"16845":-1,"16846":-1,"16847":-1,"16848":-1,"16849":-1,"16850":-1,"16851":-1,"16852":-1,"16853":-1,"16854":-1,"16855":-1,"16856":-1,"16857":-1,"16858":-1,"16859":-1,"16860":-1,"16861":-1,"16862":-1,"16863":-1,"16864":4066,"16865":-1,"16866":-1,"16867":-1,"16868":-1,"16869":0,"16870":-1,"16871":-1,"16872":-1,"16873":-1,"16874":-1,"16875":-1,"16876":-1,"16877":-1,"16878":-1,"16879":-1,"16880":-1,"16881":-1,"16882":-1,"16883":-1,"16884":4066,"16885":-1,"16886":-1,"16887":-1,"16888":-1,"16889":-1,"16890":-1,"16891":-1,"16892":-1,"16893":0,"16894":0,"16895":0,"16896":-1,"16897":4063,"16898":-1,"16899":-1,"16900":-1,"16901":4067,"16902":4065,"16903":-1,"16904":-1,"16905":-1,"16906":-1,"16907":-1,"16908":4064,"16909":-1,"16910":-1,"16911":-1,"16912":-1,"16913":-1,"16914":0,"16915":-1,"16916":-1,"16917":-1,"16918":-1,"16919":-1,"16920":-1,"16921":-1,"16922":-1,"16923":-1,"16924":-1,"16925":4066,"16926":-1,"16927":-1,"16928":-1,"16929":-1,"16930":-1,"16931":-1,"16932":-1,"16933":-1,"16934":-1,"16935":-1,"16936":4064,"16937":-1,"16938":-1,"16939":4067,"16940":0,"16941":-1,"16942":-1,"16943":-1,"16944":4063,"16945":-1,"16946":-1,"16947":-1,"16948":-1,"16949":-1,"16950":-1,"16951":-1,"16952":-1,"16953":-1,"16954":4066,"16955":-1,"16956":-1,"16957":-1,"16958":0,"16959":-1,"16960":-1,"16961":4064,"16962":-1,"16963":-1,"16964":-1,"16965":4068,"16966":4066,"16967":0,"16968":-1,"16969":-1,"16970":-1,"16971":-1,"16972":-1,"16973":-1,"16974":-1,"16975":-1,"16976":-1,"16977":4066,"16978":4063,"16979":4067,"16980":-1,"16981":-1,"16982":-1,"16983":-1,"16984":-1,"16985":0,"16986":-1,"16987":-1,"16988":-1,"16989":-1,"16990":-1,"16991":-1,"16992":4067,"16993":-1,"16994":-1,"16995":-1,"16996":-1,"16997":-1,"16998":-1,"16999":-1,"17000":4063,"17001":4064,"17002":-1,"17003":-1,"17004":-1,"17005":-1,"17006":-1,"17007":0,"17008":-1,"17009":4065,"17010":-1,"17011":-1,"17012":-1,"17013":-1,"17014":-1,"17015":0,"17016":-1,"17017":-1,"17018":-1,"17019":-1,"17020":4066,"17021":-1,"17022":-1,"17023":-1,"17024":-1,"17025":-1,"17026":-1,"17027":-1,"17028":-1,"17029":-1,"17030":-1,"17031":-1,"17032":-1,"17033":0,"17034":4066,"17035":-1,"17036":4066,"17037":-1,"17038":-1,"17039":-1,"17040":4063,"17041":-1,"17042":-1,"17043":-1,"17044":-1,"17045":-1,"17046":-1,"17047":4064,"17048":-1,"17049":-1,"17050":-1,"17051":-1,"17052":-1,"17053":-1,"17054":-1,"17055":-1,"17056":-1,"17057":-1,"17058":-1,"17059":-1,"17060":-1,"17061":-1,"17062":-1,"17063":-1,"17064":-1,"17065":-1,"17066":4065,"17067":-1,"17068":-1,"17069":-1,"17070":-1,"17071":-1,"17072":4068,"17073":-1,"17074":-1,"17075":-1,"17076":-1,"17077":-1,"17078":-1,"17079":-1,"17080":-1,"17081":-1,"17082":-1,"17083":-1,"17084":-1,"17085":-1,"17086":-1,"17087":-1,"17088":-1,"17089":-1,"17090":-1,"17091":-1,"17092":-1,"17093":-1,"17094":-1,"17095":-1,"17096":-1,"17097":-1,"17098":-1,"17099":-1,"17100":-1,"17101":-1,"17102":-1,"17103":-1,"17104":-1,"17105":-1,"17106":-1,"17107":-1,"17108":-1,"17109":-1,"17110":-1,"17111":-1,"17112":-1,"17113":-1,"17114":4065,"17115":-1,"17116":-1,"17117":-1,"17118":-1,"17119":-1,"17120":-1,"17121":4067,"17122":-1,"17123":-1,"17124":-1,"17125":-1,"17126":-1,"17127":-1,"17128":-1,"17129":-1,"17130":-1,"17131":-1,"17132":4066,"17133":4063,"17134":-1,"17135":0,"17136":-1,"17137":-1,"17138":-1,"17139":-1,"17140":-1,"17141":-1,"17142":-1,"17143":-1,"17144":-1,"17145":-1,"17146":-1,"17147":-1,"17148":-1,"17149":-1,"17150":4063,"17151":4066,"17152":-1,"17153":-1,"17154":-1,"17155":4066,"17156":-1,"17157":-1,"17158":4064,"17159":-1,"17160":-1,"17161":-1,"17162":-1,"17163":-1,"17164":-1,"17165":4066,"17166":-1,"17167":0,"17168":-1,"17169":-1,"17170":-1,"17171":-1,"17172":0,"17173":-1,"17174":-1,"17175":-1,"17176":-1,"17177":-1,"17178":-1,"17179":-1,"17180":-1,"17181":-1,"17182":-1,"17183":-1,"17184":-1,"17185":-1,"17186":-1,"17187":-1,"17188":-1,"17189":4066,"17190":4065,"17191":4065,"17192":-1,"17193":-1,"17194":-1,"17195":4065,"17196":-1,"17197":-1,"17198":-1,"17199":-1,"17200":-1,"17201":-1,"17202":-1,"17203":-1,"17204":-1,"17205":-1,"17206":-1,"17207":-1,"17208":-1,"17209":-1,"17210":-1,"17211":-1,"17212":-1,"17213":-1,"17214":-1,"17215":-1,"17216":-1,"17217":-1,"17218":-1,"17219":-1,"17220":-1,"17221":-1,"17222":-1,"17223":-1,"17224":-1,"17225":-1,"17226":-1,"17227":-1,"17228":-1,"17229":-1,"17230":-1,"17231":-1,"17232":-1,"17233":-1,"17234":4064,"17235":4065,"17236":-1,"17237":-1,"17238":4068,"17239":-1,"17240":0,"17241":4066,"17242":-1,"17243":-1,"17244":-1,"17245":0,"17246":-1,"17247":-1,"17248":-1,"17249":-1,"17250":-1,"17251":-1,"17252":-1,"17253":-1,"17254":-1,"17255":-1,"17256":-1,"17257":4068,"17258":4064,"17259":-1,"17260":-1,"17261":-1,"17262":-1,"17263":-1,"17264":-1,"17265":-1,"17266":-1,"17267":4066,"17268":-1,"17269":-1,"17270":-1,"17271":-1,"17272":-1,"17273":-1,"17274":-1,"17275":-1,"17276":-1,"17277":-1,"17278":-1,"17279":-1,"17280":-1,"17281":-1,"17282":-1,"17283":-1,"17284":-1,"17285":-1,"17286":-1,"17287":-1,"17288":4064,"17289":-1,"17290":-1,"17291":-1,"17292":4066,"17293":-1,"17294":-1,"17295":-1,"17296":-1,"17297":-1,"17298":-1,"17299":-1,"17300":-1,"17301":-1,"17302":-1,"17303":4064,"17304":4064,"17305":-1,"17306":-1,"17307":-1,"17308":-1,"17309":-1,"17310":-1,"17311":-1,"17312":4065,"17313":-1,"17314":4064,"17315":-1,"17316":-1,"17317":-1,"17318":-1,"17319":-1,"17320":-1,"17321":-1,"17322":-1,"17323":-1,"17324":-1,"17325":4067,"17326":4066,"17327":-1,"17328":-1,"17329":-1,"17330":-1,"17331":-1,"17332":0,"17333":4066,"17334":-1,"17335":-1,"17336":-1,"17337":-1,"17338":-1,"17339":-1,"17340":-1,"17341":-1,"17342":-1,"17343":-1,"17344":-1,"17345":-1,"17346":-1,"17347":-1,"17348":4065,"17349":-1,"17350":-1,"17351":-1,"17352":-1,"17353":4067,"17354":4065,"17355":4066,"17356":-1,"17357":-1,"17358":-1,"17359":-1,"17360":-1,"17361":-1,"17362":-1,"17363":-1,"17364":4065,"17365":-1,"17366":-1,"17367":4063,"17368":-1,"17369":-1,"17370":-1,"17371":-1,"17372":-1,"17373":-1,"17374":-1,"17375":-1,"17376":-1,"17377":-1,"17378":4066,"17379":-1,"17380":4067,"17381":-1,"17382":-1,"17383":-1,"17384":-1,"17385":-1,"17386":-1,"17387":4066,"17388":-1,"17389":-1,"17390":-1,"17391":-1,"17392":-1,"17393":-1,"17394":-1,"17395":0,"17396":-1,"17397":-1,"17398":-1,"17399":4064,"17400":-1,"17401":-1,"17402":-1,"17403":-1,"17404":-1,"17405":-1,"17406":4065,"17407":-1,"17408":0,"17409":-1,"17410":-1,"17411":-1,"17412":-1,"17413":-1,"17414":-1,"17415":4067,"17416":-1,"17417":4066,"17418":-1,"17419":-1,"17420":4068,"17421":-1,"17422":-1,"17423":-1,"17424":-1,"17425":-1,"17426":-1,"17427":-1,"17428":-1,"17429":-1,"17430":0,"17431":-1,"17432":-1,"17433":-1,"17434":-1,"17435":-1,"17436":-1,"17437":-1,"17438":-1,"17439":-1,"17440":-1,"17441":-1,"17442":-1,"17443":4063,"17444":-1,"17445":-1,"17446":-1,"17447":-1,"17448":-1,"17449":4064,"17450":-1,"17451":-1,"17452":-1,"17453":-1,"17454":-1,"17455":-1,"17456":4066,"17457":-1,"17458":-1,"17459":-1,"17460":-1,"17461":-1,"17462":-1,"17463":-1,"17464":4063,"17465":-1,"17466":-1,"17467":-1,"17468":-1,"17469":-1,"17470":-1,"17471":-1,"17472":4066,"17473":-1,"17474":-1,"17475":-1,"17476":4064,"17477":-1,"17478":-1,"17479":-1,"17480":-1,"17481":-1,"17482":-1,"17483":-1,"17484":4067,"17485":-1,"17486":4067,"17487":-1,"17488":-1,"17489":-1,"17490":-1,"17491":-1,"17492":-1,"17493":4066,"17494":-1,"17495":-1,"17496":-1,"17497":-1,"17498":-1,"17499":-1,"17500":-1,"17501":-1,"17502":-1,"17503":4064,"17504":4068,"17505":-1,"17506":-1,"17507":-1,"17508":-1,"17509":-1,"17510":-1,"17511":-1,"17512":-1,"17513":-1,"17514":-1,"17515":-1,"17516":-1,"17517":-1,"17518":-1,"17519":-1,"17520":-1,"17521":4065,"17522":-1,"17523":4066,"17524":4064,"17525":-1,"17526":-1,"17527":-1,"17528":-1,"17529":0,"17530":-1,"17531":-1,"17532":-1,"17533":-1,"17534":-1,"17535":0,"17536":4065,"17537":-1,"17538":4067,"17539":-1,"17540":0,"17541":-1,"17542":4067,"17543":-1,"17544":-1,"17545":-1,"17546":4066,"17547":4066,"17548":-1,"17549":-1,"17550":-1,"17551":-1,"17552":-1,"17553":-1,"17554":4067,"17555":-1,"17556":-1,"17557":-1,"17558":4065,"17559":4063,"17560":-1,"17561":-1,"17562":-1,"17563":4067,"17564":-1,"17565":-1,"17566":-1,"17567":-1,"17568":-1,"17569":-1,"17570":-1,"17571":-1,"17572":-1,"17573":-1,"17574":-1,"17575":-1,"17576":-1,"17577":-1,"17578":-1,"17579":-1,"17580":0,"17581":-1,"17582":-1,"17583":4065,"17584":-1,"17585":-1,"17586":-1,"17587":-1,"17588":-1,"17589":-1,"17590":-1,"17591":-1,"17592":-1,"17593":-1,"17594":-1,"17595":4067,"17596":-1,"17597":-1,"17598":-1,"17599":-1,"17600":-1,"17601":-1,"17602":4063,"17603":-1,"17604":-1,"17605":-1,"17606":-1,"17607":-1,"17608":-1,"17609":-1,"17610":-1,"17611":-1,"17612":-1,"17613":0,"17614":-1,"17615":4064,"17616":-1,"17617":-1,"17618":-1,"17619":-1,"17620":-1,"17621":-1,"17622":-1,"17623":-1,"17624":4065,"17625":4064,"17626":-1,"17627":-1,"17628":-1,"17629":4067,"17630":-1,"17631":-1,"17632":-1,"17633":4064,"17634":0,"17635":-1,"17636":-1,"17637":-1,"17638":-1,"17639":-1,"17640":-1,"17641":4067,"17642":-1,"17643":-1,"17644":-1,"17645":-1,"17646":-1,"17647":-1,"17648":-1,"17649":-1,"17650":-1,"17651":-1,"17652":-1,"17653":-1,"17654":-1,"17655":-1,"17656":4065,"17657":-1,"17658":-1,"17659":-1,"17660":4066,"17661":-1,"17662":-1,"17663":-1,"17664":-1,"17665":-1,"17666":4064,"17667":-1,"17668":-1,"17669":4068,"17670":-1,"17671":-1,"17672":-1,"17673":-1,"17674":-1,"17675":-1,"17676":-1,"17677":-1,"17678":-1,"17679":-1,"17680":-1,"17681":4067,"17682":4066,"17683":-1,"17684":-1,"17685":-1,"17686":-1,"17687":4065,"17688":-1,"17689":-1,"17690":-1,"17691":-1,"17692":-1,"17693":-1,"17694":-1,"17695":-1,"17696":-1,"17697":-1,"17698":4064,"17699":-1,"17700":-1,"17701":-1,"17702":4066,"17703":-1,"17704":-1,"17705":4065,"17706":-1,"17707":4063,"17708":-1,"17709":-1,"17710":-1,"17711":-1,"17712":0,"17713":-1,"17714":-1,"17715":-1,"17716":-1,"17717":-1,"17718":-1,"17719":-1,"17720":-1,"17721":-1,"17722":-1,"17723":-1,"17724":-1,"17725":-1,"17726":-1,"17727":-1,"17728":-1,"17729":-1,"17730":-1,"17731":-1,"17732":0,"17733":-1,"17734":0,"17735":-1,"17736":-1,"17737":-1,"17738":-1,"17739":4065,"17740":-1,"17741":-1,"17742":-1,"17743":-1,"17744":-1,"17745":-1,"17746":-1,"17747":-1,"17748":-1,"17749":-1,"17750":-1,"17751":-1,"17752":-1,"17753":-1,"17754":-1,"17755":-1,"17756":-1,"17757":-1,"17758":-1,"17759":-1,"17760":-1,"17761":4065,"17762":-1,"17763":-1,"17764":-1,"17765":-1,"17766":4064,"17767":-1,"17768":4066,"17769":-1,"17770":-1,"17771":-1,"17772":-1,"17773":-1,"17774":-1,"17775":-1,"17776":-1,"17777":-1,"17778":-1,"17779":-1,"17780":0,"17781":-1,"17782":-1,"17783":-1,"17784":-1,"17785":-1,"17786":-1,"17787":-1,"17788":-1,"17789":-1,"17790":-1,"17791":4065,"17792":-1,"17793":-1,"17794":-1,"17795":-1,"17796":4065,"17797":-1,"17798":-1,"17799":-1,"17800":-1,"17801":-1,"17802":-1,"17803":-1,"17804":-1,"17805":-1,"17806":-1,"17807":-1,"17808":0,"17809":-1,"17810":4065,"17811":-1,"17812":-1,"17813":-1,"17814":-1,"17815":-1,"17816":-1,"17817":-1,"17818":-1,"17819":-1,"17820":-1,"17821":-1,"17822":-1,"17823":-1,"17824":0,"17825":-1,"17826":4065,"17827":-1,"17828":-1,"17829":-1,"17830":-1,"17831":-1,"17832":-1,"17833":-1,"17834":4063,"17835":4067,"17836":-1,"17837":-1,"17838":-1,"17839":-1,"17840":-1,"17841":-1,"17842":-1,"17843":-1,"17844":-1,"17845":-1,"17846":4063,"17847":-1,"17848":-1,"17849":-1,"17850":-1,"17851":-1,"17852":-1,"17853":-1,"17854":4066,"17855":-1,"17856":-1,"17857":-1,"17858":4068,"17859":-1,"17860":-1,"17861":4065,"17862":4066,"17863":-1,"17864":-1,"17865":-1,"17866":4068,"17867":-1,"17868":-1,"17869":-1,"17870":-1,"17871":-1,"17872":4066,"17873":-1,"17874":-1,"17875":-1,"17876":-1,"17877":-1,"17878":-1,"17879":-1,"17880":-1,"17881":-1,"17882":-1,"17883":-1,"17884":4066,"17885":-1,"17886":4063,"17887":-1,"17888":-1,"17889":-1,"17890":-1,"17891":-1,"17892":-1,"17893":-1,"17894":-1,"17895":-1,"17896":-1,"17897":-1,"17898":-1,"17899":0,"17900":-1,"17901":-1,"17902":4064,"17903":-1,"17904":-1,"17905":-1,"17906":-1,"17907":-1,"17908":-1,"17909":0,"17910":-1,"17911":4066,"17912":-1,"17913":4067,"17914":-1,"17915":-1,"17916":-1,"17917":-1,"17918":4068,"17919":-1,"17920":-1,"17921":4063,"17922":-1,"17923":-1,"17924":-1,"17925":4067,"17926":-1,"17927":4066,"17928":-1,"17929":-1,"17930":-1,"17931":-1,"17932":-1,"17933":-1,"17934":4064,"17935":-1,"17936":4067,"17937":4068,"17938":-1,"17939":-1,"17940":4067,"17941":4065,"17942":0,"17943":-1,"17944":-1,"17945":-1,"17946":4063,"17947":-1,"17948":-1,"17949":-1,"17950":-1,"17951":-1,"17952":4064,"17953":-1,"17954":-1,"17955":-1,"17956":-1,"17957":-1,"17958":-1,"17959":-1,"17960":-1,"17961":-1,"17962":-1,"17963":-1,"17964":-1,"17965":-1,"17966":-1,"17967":-1,"17968":-1,"17969":-1,"17970":-1,"17971":-1,"17972":4068,"17973":-1,"17974":-1,"17975":-1,"17976":-1,"17977":-1,"17978":-1,"17979":4065,"17980":4065,"17981":-1,"17982":4064,"17983":-1,"17984":-1,"17985":-1,"17986":-1,"17987":-1,"17988":-1,"17989":-1,"17990":-1,"17991":-1,"17992":-1,"17993":-1,"17994":-1,"17995":-1,"17996":-1,"17997":-1,"17998":-1,"17999":-1,"18000":-1,"18001":4067,"18002":-1,"18003":-1,"18004":0,"18005":4068,"18006":-1,"18007":-1,"18008":-1,"18009":-1,"18010":-1,"18011":-1,"18012":-1,"18013":-1,"18014":-1,"18015":-1,"18016":-1,"18017":-1,"18018":-1,"18019":-1,"18020":-1,"18021":-1,"18022":0,"18023":-1,"18024":-1,"18025":-1,"18026":-1,"18027":-1,"18028":-1,"18029":-1,"18030":-1,"18031":-1,"18032":-1,"18033":4063,"18034":-1,"18035":0,"18036":-1,"18037":-1,"18038":-1,"18039":-1,"18040":-1,"18041":-1,"18042":-1,"18043":-1,"18044":-1,"18045":-1,"18046":-1,"18047":-1,"18048":-1,"18049":-1,"18050":-1,"18051":-1,"18052":4064,"18053":-1,"18054":-1,"18055":-1,"18056":-1,"18057":-1,"18058":-1,"18059":-1,"18060":0,"18061":-1,"18062":-1,"18063":4067,"18064":-1,"18065":-1,"18066":-1,"18067":-1,"18068":-1,"18069":-1,"18070":-1,"18071":-1,"18072":-1,"18073":-1,"18074":-1,"18075":-1,"18076":-1,"18077":4064,"18078":-1,"18079":-1,"18080":-1,"18081":-1,"18082":-1,"18083":-1,"18084":-1,"18085":4063,"18086":-1,"18087":-1,"18088":-1,"18089":-1,"18090":-1,"18091":-1,"18092":-1,"18093":-1,"18094":4065,"18095":-1,"18096":0,"18097":-1,"18098":-1,"18099":-1,"18100":-1,"18101":-1,"18102":4066,"18103":-1,"18104":0,"18105":-1,"18106":-1,"18107":4067,"18108":-1,"18109":4066,"18110":-1,"18111":-1,"18112":4066,"18113":-1,"18114":-1,"18115":4064,"18116":-1,"18117":-1,"18118":-1,"18119":-1,"18120":-1,"18121":-1,"18122":-1,"18123":-1,"18124":-1,"18125":0,"18126":-1,"18127":-1,"18128":-1,"18129":-1,"18130":4064,"18131":4066,"18132":-1,"18133":-1,"18134":-1,"18135":4066,"18136":-1,"18137":-1,"18138":-1,"18139":-1,"18140":-1,"18141":-1,"18142":-1,"18143":-1,"18144":4067,"18145":4063,"18146":4065,"18147":-1,"18148":-1,"18149":-1,"18150":-1,"18151":-1,"18152":-1,"18153":0,"18154":-1,"18155":-1,"18156":-1,"18157":-1,"18158":-1,"18159":4065,"18160":-1,"18161":4068,"18162":-1,"18163":-1,"18164":-1,"18165":-1,"18166":4067,"18167":-1,"18168":4068,"18169":4067,"18170":-1,"18171":-1,"18172":4063,"18173":4067,"18174":-1,"18175":-1,"18176":0,"18177":-1,"18178":-1,"18179":-1,"18180":-1,"18181":-1,"18182":-1,"18183":-1,"18184":-1,"18185":-1,"18186":-1,"18187":-1,"18188":-1,"18189":-1,"18190":-1,"18191":4064,"18192":-1,"18193":4067,"18194":-1,"18195":-1,"18196":-1,"18197":-1,"18198":4066,"18199":-1,"18200":4065,"18201":-1,"18202":-1,"18203":-1,"18204":-1,"18205":-1,"18206":-1,"18207":-1,"18208":-1,"18209":-1,"18210":-1,"18211":-1,"18212":-1,"18213":-1,"18214":-1,"18215":-1,"18216":-1,"18217":-1,"18218":-1,"18219":4066,"18220":-1,"18221":4065,"18222":-1,"18223":4066,"18224":-1,"18225":-1,"18226":4066,"18227":-1,"18228":-1,"18229":-1,"18230":-1,"18231":-1,"18232":-1,"18233":-1,"18234":-1,"18235":-1,"18236":0,"18237":-1,"18238":-1,"18239":-1,"18240":-1,"18241":-1,"18242":-1,"18243":-1,"18244":-1,"18245":-1,"18246":-1,"18247":-1,"18248":-1,"18249":-1,"18250":-1,"18251":-1,"18252":-1,"18253":-1,"18254":-1,"18255":-1,"18256":-1,"18257":-1,"18258":-1,"18259":-1,"18260":-1,"18261":-1,"18262":4063,"18263":-1,"18264":-1,"18265":-1,"18266":-1,"18267":-1,"18268":-1,"18269":-1,"18270":-1,"18271":0,"18272":4063,"18273":-1,"18274":-1,"18275":-1,"18276":-1,"18277":4063,"18278":-1,"18279":-1,"18280":-1,"18281":-1,"18282":4066,"18283":-1,"18284":-1,"18285":-1,"18286":-1,"18287":-1,"18288":-1,"18289":-1,"18290":4064,"18291":-1,"18292":4067,"18293":-1,"18294":-1,"18295":-1,"18296":-1,"18297":-1,"18298":-1,"18299":-1,"18300":-1,"18301":-1,"18302":-1,"18303":-1,"18304":4067,"18305":-1,"18306":-1,"18307":-1,"18308":-1,"18309":-1,"18310":-1,"18311":-1,"18312":-1,"18313":-1,"18314":-1,"18315":-1,"18316":-1,"18317":-1,"18318":-1,"18319":4065,"18320":4067,"18321":-1,"18322":-1,"18323":-1,"18324":-1,"18325":-1,"18326":-1,"18327":-1,"18328":-1,"18329":-1,"18330":-1,"18331":-1,"18332":-1,"18333":-1,"18334":-1,"18335":0,"18336":4065,"18337":4068,"18338":-1,"18339":-1,"18340":-1,"18341":4068,"18342":-1,"18343":-1,"18344":-1,"18345":-1,"18346":-1,"18347":4068,"18348":-1,"18349":-1,"18350":-1,"18351":-1,"18352":-1,"18353":-1,"18354":-1,"18355":-1,"18356":-1,"18357":-1,"18358":-1,"18359":-1,"18360":-1,"18361":-1,"18362":-1,"18363":-1,"18364":-1,"18365":-1,"18366":-1,"18367":-1,"18368":-1,"18369":-1,"18370":4063,"18371":-1,"18372":-1,"18373":-1,"18374":-1,"18375":-1,"18376":-1,"18377":-1,"18378":-1,"18379":-1,"18380":-1,"18381":-1,"18382":-1,"18383":-1,"18384":-1,"18385":-1,"18386":-1,"18387":-1,"18388":4066,"18389":-1,"18390":4067,"18391":-1,"18392":-1,"18393":-1,"18394":-1,"18395":-1,"18396":-1,"18397":-1,"18398":-1,"18399":-1,"18400":-1,"18401":-1,"18402":-1,"18403":4063,"18404":-1,"18405":-1,"18406":-1,"18407":-1,"18408":4067,"18409":-1,"18410":-1,"18411":-1,"18412":-1,"18413":-1,"18414":4066,"18415":-1,"18416":-1,"18417":-1,"18418":4064,"18419":-1,"18420":-1,"18421":-1,"18422":-1,"18423":-1,"18424":-1,"18425":-1,"18426":-1,"18427":-1,"18428":-1,"18429":-1,"18430":-1,"18431":-1,"18432":4064,"18433":4066,"18434":-1,"18435":-1,"18436":-1,"18437":-1,"18438":-1,"18439":-1,"18440":-1,"18441":-1,"18442":-1,"18443":-1,"18444":-1,"18445":-1,"18446":-1,"18447":-1,"18448":4064,"18449":-1,"18450":-1,"18451":-1,"18452":-1,"18453":-1,"18454":-1,"18455":4067,"18456":-1,"18457":-1,"18458":-1,"18459":-1,"18460":4066,"18461":-1,"18462":-1,"18463":-1,"18464":-1,"18465":-1,"18466":-1,"18467":-1,"18468":-1,"18469":-1,"18470":-1,"18471":-1,"18472":-1,"18473":-1,"18474":-1,"18475":-1,"18476":-1,"18477":-1,"18478":-1,"18479":-1,"18480":-1,"18481":4067,"18482":-1,"18483":-1,"18484":-1,"18485":-1,"18486":-1,"18487":-1,"18488":4063,"18489":-1,"18490":-1,"18491":-1,"18492":-1,"18493":-1,"18494":-1,"18495":-1,"18496":-1,"18497":-1,"18498":-1,"18499":-1,"18500":-1,"18501":-1,"18502":-1,"18503":4067,"18504":-1,"18505":-1,"18506":-1,"18507":-1,"18508":-1,"18509":-1,"18510":-1,"18511":-1,"18512":-1,"18513":-1,"18514":-1,"18515":-1,"18516":-1,"18517":-1,"18518":-1,"18519":-1,"18520":4067,"18521":-1,"18522":4064,"18523":-1,"18524":-1,"18525":-1,"18526":-1,"18527":-1,"18528":-1,"18529":-1,"18530":-1,"18531":-1,"18532":-1,"18533":4066,"18534":4066,"18535":-1,"18536":-1,"18537":0,"18538":4064,"18539":-1,"18540":-1,"18541":-1,"18542":-1,"18543":-1,"18544":-1,"18545":-1,"18546":-1,"18547":-1,"18548":-1,"18549":-1,"18550":-1,"18551":4067,"18552":-1,"18553":-1,"18554":-1,"18555":4068,"18556":-1,"18557":-1,"18558":-1,"18559":-1,"18560":-1,"18561":4063,"18562":-1,"18563":-1,"18564":-1,"18565":-1,"18566":-1,"18567":0,"18568":-1,"18569":-1,"18570":-1,"18571":-1,"18572":-1,"18573":-1,"18574":-1,"18575":-1,"18576":-1,"18577":-1,"18578":-1,"18579":4065,"18580":-1,"18581":4065,"18582":-1,"18583":-1,"18584":-1,"18585":-1,"18586":4065,"18587":-1,"18588":-1,"18589":4065,"18590":-1,"18591":-1,"18592":-1,"18593":-1,"18594":-1,"18595":-1,"18596":-1,"18597":4066,"18598":-1,"18599":-1,"18600":-1,"18601":-1,"18602":-1,"18603":-1,"18604":-1,"18605":-1,"18606":-1,"18607":-1,"18608":-1,"18609":-1,"18610":-1,"18611":-1,"18612":4064,"18613":-1,"18614":-1,"18615":4064,"18616":0,"18617":-1,"18618":-1,"18619":-1,"18620":-1,"18621":-1,"18622":4066,"18623":-1,"18624":-1,"18625":-1,"18626":-1,"18627":-1,"18628":-1,"18629":-1,"18630":4068,"18631":-1,"18632":-1,"18633":-1,"18634":-1,"18635":4065,"18636":-1,"18637":4065,"18638":-1,"18639":-1,"18640":-1,"18641":-1,"18642":-1,"18643":-1,"18644":4064,"18645":-1,"18646":-1,"18647":-1,"18648":-1,"18649":-1,"18650":4066,"18651":-1,"18652":-1,"18653":-1,"18654":-1,"18655":-1,"18656":-1,"18657":-1,"18658":4067,"18659":-1,"18660":-1,"18661":-1,"18662":-1,"18663":-1,"18664":-1,"18665":-1,"18666":-1,"18667":-1,"18668":-1,"18669":-1,"18670":-1,"18671":-1,"18672":-1,"18673":-1,"18674":-1,"18675":-1,"18676":-1,"18677":-1,"18678":-1,"18679":-1,"18680":-1,"18681":-1,"18682":-1,"18683":-1,"18684":-1,"18685":-1,"18686":-1,"18687":-1,"18688":-1,"18689":-1,"18690":-1,"18691":-1,"18692":-1,"18693":-1,"18694":-1,"18695":-1,"18696":4064,"18697":-1,"18698":4065,"18699":-1,"18700":-1,"18701":-1,"18702":0,"18703":-1,"18704":-1,"18705":-1,"18706":-1,"18707":4066,"18708":-1,"18709":-1,"18710":-1,"18711":-1,"18712":-1,"18713":4065,"18714":-1,"18715":0,"18716":-1,"18717":-1,"18718":-1,"18719":-1,"18720":-1,"18721":-1,"18722":-1,"18723":-1,"18724":-1,"18725":4065,"18726":-1,"18727":-1,"18728":-1,"18729":-1,"18730":-1,"18731":-1,"18732":-1,"18733":-1,"18734":4066,"18735":0,"18736":-1,"18737":-1,"18738":-1,"18739":-1,"18740":-1,"18741":-1,"18742":-1,"18743":-1,"18744":-1,"18745":-1,"18746":-1,"18747":-1,"18748":-1,"18749":-1,"18750":-1,"18751":-1,"18752":-1,"18753":-1,"18754":-1,"18755":-1,"18756":-1,"18757":4066,"18758":-1,"18759":4066,"18760":-1,"18761":-1,"18762":-1,"18763":-1,"18764":-1,"18765":-1,"18766":-1,"18767":-1,"18768":-1,"18769":-1,"18770":-1,"18771":-1,"18772":-1,"18773":4065,"18774":-1,"18775":-1,"18776":-1,"18777":-1,"18778":-1,"18779":-1,"18780":4067,"18781":-1,"18782":-1,"18783":-1,"18784":-1,"18785":-1,"18786":4065,"18787":4064,"18788":-1,"18789":-1,"18790":-1,"18791":-1,"18792":-1,"18793":-1,"18794":0,"18795":-1,"18796":-1,"18797":-1,"18798":-1,"18799":-1,"18800":-1,"18801":-1,"18802":-1,"18803":4064,"18804":-1,"18805":-1,"18806":-1,"18807":-1,"18808":4065,"18809":-1,"18810":-1,"18811":-1,"18812":-1,"18813":-1,"18814":-1,"18815":-1,"18816":4066,"18817":-1,"18818":-1,"18819":-1,"18820":-1,"18821":-1,"18822":-1,"18823":-1,"18824":4068,"18825":-1,"18826":-1,"18827":0,"18828":4068,"18829":-1,"18830":-1,"18831":-1,"18832":-1,"18833":0,"18834":-1,"18835":-1,"18836":-1,"18837":4067,"18838":-1,"18839":4066,"18840":-1,"18841":-1,"18842":-1,"18843":-1,"18844":-1,"18845":4063,"18846":-1,"18847":-1,"18848":-1,"18849":-1,"18850":-1,"18851":-1,"18852":-1,"18853":-1,"18854":4064,"18855":-1,"18856":-1,"18857":-1,"18858":-1,"18859":-1,"18860":-1,"18861":-1,"18862":-1,"18863":-1,"18864":4066,"18865":-1,"18866":4065,"18867":-1,"18868":-1,"18869":-1,"18870":-1,"18871":-1,"18872":-1,"18873":-1,"18874":4068,"18875":-1,"18876":-1,"18877":-1,"18878":0,"18879":-1,"18880":-1,"18881":-1,"18882":4064,"18883":4064,"18884":-1,"18885":0,"18886":4068,"18887":-1,"18888":-1,"18889":-1,"18890":-1,"18891":-1,"18892":4066,"18893":-1,"18894":-1,"18895":-1,"18896":-1,"18897":-1,"18898":-1,"18899":-1,"18900":-1,"18901":-1,"18902":-1,"18903":-1,"18904":-1,"18905":-1,"18906":-1,"18907":4065,"18908":-1,"18909":4066,"18910":0,"18911":-1,"18912":-1,"18913":-1,"18914":0,"18915":-1,"18916":4066,"18917":-1,"18918":-1,"18919":-1,"18920":-1,"18921":-1,"18922":-1,"18923":-1,"18924":-1,"18925":-1,"18926":4064,"18927":-1,"18928":-1,"18929":-1,"18930":-1,"18931":-1,"18932":-1,"18933":-1,"18934":-1,"18935":-1,"18936":-1,"18937":-1,"18938":-1,"18939":-1,"18940":4067,"18941":-1,"18942":-1,"18943":-1,"18944":-1,"18945":-1,"18946":-1,"18947":-1,"18948":-1,"18949":-1,"18950":-1,"18951":-1,"18952":-1,"18953":-1,"18954":4067,"18955":-1,"18956":-1,"18957":-1,"18958":-1,"18959":-1,"18960":-1,"18961":-1,"18962":4064,"18963":-1,"18964":-1,"18965":-1,"18966":4063,"18967":-1,"18968":-1,"18969":-1,"18970":-1,"18971":-1,"18972":-1,"18973":-1,"18974":-1,"18975":-1,"18976":0,"18977":-1,"18978":-1,"18979":-1,"18980":-1,"18981":-1,"18982":-1,"18983":-1,"18984":4065,"18985":-1,"18986":-1,"18987":-1,"18988":-1,"18989":-1,"18990":-1,"18991":-1,"18992":-1,"18993":-1,"18994":-1,"18995":-1,"18996":-1,"18997":-1,"18998":-1,"18999":4068,"19000":-1,"19001":-1,"19002":-1,"19003":-1,"19004":-1,"19005":-1,"19006":-1,"19007":0,"19008":-1,"19009":-1,"19010":-1,"19011":-1,"19012":-1,"19013":-1,"19014":-1,"19015":-1,"19016":-1,"19017":-1,"19018":4067,"19019":0,"19020":-1,"19021":-1,"19022":-1,"19023":4067,"19024":4068,"19025":-1,"19026":-1,"19027":-1,"19028":-1,"19029":-1,"19030":-1,"19031":-1,"19032":-1,"19033":-1,"19034":-1,"19035":-1,"19036":4067,"19037":-1,"19038":-1,"19039":-1,"19040":0,"19041":-1,"19042":-1,"19043":-1,"19044":-1,"19045":-1,"19046":-1,"19047":-1,"19048":-1,"19049":-1,"19050":-1,"19051":-1,"19052":-1,"19053":-1,"19054":4064,"19055":-1,"19056":4065,"19057":-1,"19058":-1,"19059":-1,"19060":-1,"19061":-1,"19062":-1,"19063":-1,"19064":-1,"19065":-1,"19066":-1,"19067":-1,"19068":-1,"19069":-1,"19070":-1,"19071":-1,"19072":-1,"19073":-1,"19074":-1,"19075":-1,"19076":-1,"19077":-1,"19078":-1,"19079":-1,"19080":-1,"19081":-1,"19082":-1,"19083":-1,"19084":4064,"19085":-1,"19086":-1,"19087":-1,"19088":-1,"19089":-1,"19090":-1,"19091":-1,"19092":-1,"19093":-1,"19094":-1,"19095":-1,"19096":4067,"19097":-1,"19098":4063,"19099":-1,"19100":-1,"19101":0,"19102":-1,"19103":-1,"19104":-1,"19105":4064,"19106":-1,"19107":4064,"19108":4068,"19109":-1,"19110":-1,"19111":-1,"19112":-1,"19113":-1,"19114":-1,"19115":-1,"19116":-1,"19117":-1,"19118":4063,"19119":-1,"19120":-1,"19121":-1,"19122":-1,"19123":0,"19124":4064,"19125":-1,"19126":-1,"19127":4067,"19128":-1,"19129":-1,"19130":-1,"19131":-1,"19132":-1,"19133":-1,"19134":-1,"19135":-1,"19136":-1,"19137":0,"19138":4065,"19139":-1,"19140":-1,"19141":4065,"19142":-1,"19143":-1,"19144":-1,"19145":-1,"19146":-1,"19147":-1,"19148":-1,"19149":-1,"19150":-1,"19151":4064,"19152":-1,"19153":-1,"19154":-1,"19155":4064,"19156":0,"19157":-1,"19158":-1,"19159":-1,"19160":0,"19161":-1,"19162":4068,"19163":-1,"19164":-1,"19165":4063,"19166":-1,"19167":-1,"19168":-1,"19169":-1,"19170":-1,"19171":-1,"19172":-1,"19173":-1,"19174":-1,"19175":-1,"19176":-1,"19177":-1,"19178":-1,"19179":-1,"19180":-1,"19181":-1,"19182":0,"19183":-1,"19184":-1,"19185":-1,"19186":-1,"19187":-1,"19188":-1,"19189":-1,"19190":-1,"19191":-1,"19192":4068,"19193":-1,"19194":-1,"19195":4064,"19196":-1,"19197":-1,"19198":-1,"19199":-1,"19200":-1,"19201":-1,"19202":-1,"19203":-1,"19204":-1,"19205":-1,"19206":4067,"19207":-1,"19208":-1,"19209":-1,"19210":-1,"19211":-1,"19212":-1,"19213":-1,"19214":-1,"19215":-1,"19216":4067,"19217":-1,"19218":-1,"19219":-1,"19220":-1,"19221":-1,"19222":-1,"19223":-1,"19224":-1,"19225":-1,"19226":-1,"19227":4066,"19228":-1,"19229":0,"19230":-1,"19231":-1,"19232":-1,"19233":0,"19234":-1,"19235":4063,"19236":-1,"19237":-1,"19238":-1,"19239":-1,"19240":-1,"19241":4065,"19242":-1,"19243":-1,"19244":-1,"19245":-1,"19246":-1,"19247":-1,"19248":4066,"19249":-1,"19250":-1,"19251":-1,"19252":-1,"19253":4064,"19254":-1,"19255":-1,"19256":-1,"19257":-1,"19258":-1,"19259":-1,"19260":-1,"19261":0,"19262":4068,"19263":4064,"19264":-1,"19265":-1,"19266":-1,"19267":0,"19268":-1,"19269":-1,"19270":4067,"19271":-1,"19272":-1,"19273":-1,"19274":4067,"19275":-1,"19276":-1,"19277":-1,"19278":-1,"19279":-1,"19280":-1,"19281":-1,"19282":-1,"19283":-1,"19284":-1,"19285":-1,"19286":-1,"19287":-1,"19288":-1,"19289":0,"19290":-1,"19291":-1,"19292":-1,"19293":-1,"19294":-1,"19295":-1,"19296":-1,"19297":4067,"19298":-1,"19299":-1,"19300":0,"19301":-1,"19302":-1,"19303":4066,"19304":-1,"19305":-1,"19306":-1,"19307":4067,"19308":-1,"19309":-1,"19310":-1,"19311":-1,"19312":-1,"19313":-1,"19314":-1,"19315":-1,"19316":-1,"19317":-1,"19318":-1,"19319":-1,"19320":4065,"19321":-1,"19322":-1,"19323":4065,"19324":-1,"19325":-1,"19326":-1,"19327":-1,"19328":-1,"19329":-1,"19330":-1,"19331":-1,"19332":-1,"19333":4065,"19334":-1,"19335":-1,"19336":-1,"19337":4065,"19338":-1,"19339":-1,"19340":-1,"19341":-1,"19342":-1,"19343":-1,"19344":-1,"19345":0,"19346":-1,"19347":4067,"19348":4066,"19349":-1,"19350":-1,"19351":0,"19352":0,"19353":-1,"19354":-1,"19355":4064,"19356":-1,"19357":-1,"19358":-1,"19359":-1,"19360":-1,"19361":-1,"19362":-1,"19363":4068,"19364":-1,"19365":-1,"19366":-1,"19367":-1,"19368":-1,"19369":-1,"19370":4068,"19371":-1,"19372":-1,"19373":-1,"19374":-1,"19375":-1,"19376":-1,"19377":-1,"19378":-1,"19379":-1,"19380":4066,"19381":-1,"19382":-1,"19383":-1,"19384":4063,"19385":-1,"19386":-1,"19387":-1,"19388":-1,"19389":-1,"19390":4065,"19391":-1,"19392":-1,"19393":4063,"19394":-1,"19395":-1,"19396":-1,"19397":-1,"19398":-1,"19399":-1,"19400":-1,"19401":-1,"19402":-1,"19403":-1,"19404":-1,"19405":-1,"19406":-1,"19407":-1,"19408":0,"19409":-1,"19410":-1,"19411":-1,"19412":-1,"19413":-1,"19414":0,"19415":-1,"19416":-1,"19417":-1,"19418":-1,"19419":-1,"19420":-1,"19421":-1,"19422":-1,"19423":-1,"19424":-1,"19425":-1,"19426":-1,"19427":-1,"19428":-1,"19429":0,"19430":-1,"19431":-1,"19432":-1,"19433":-1,"19434":-1,"19435":-1,"19436":-1,"19437":-1,"19438":0,"19439":-1,"19440":-1,"19441":-1,"19442":-1,"19443":-1,"19444":-1,"19445":-1,"19446":-1,"19447":-1,"19448":-1,"19449":-1,"19450":-1,"19451":-1,"19452":-1,"19453":-1,"19454":0,"19455":-1,"19456":-1,"19457":-1,"19458":-1,"19459":-1,"19460":-1,"19461":4063,"19462":-1,"19463":-1,"19464":-1,"19465":-1,"19466":-1,"19467":-1,"19468":-1,"19469":-1,"19470":-1,"19471":-1,"19472":-1,"19473":-1,"19474":-1,"19475":4064,"19476":-1,"19477":-1,"19478":4067,"19479":-1,"19480":-1,"19481":-1,"19482":-1,"19483":4064,"19484":4067,"19485":-1,"19486":-1,"19487":-1,"19488":-1,"19489":-1,"19490":4063,"19491":-1,"19492":-1,"19493":4066,"19494":-1,"19495":-1,"19496":-1,"19497":-1,"19498":0,"19499":4066,"19500":-1,"19501":-1,"19502":4063,"19503":-1,"19504":-1,"19505":-1,"19506":-1,"19507":-1,"19508":-1,"19509":-1,"19510":-1,"19511":-1,"19512":-1,"19513":-1,"19514":-1,"19515":-1,"19516":-1,"19517":-1,"19518":-1,"19519":-1,"19520":-1,"19521":-1,"19522":-1,"19523":-1,"19524":4065,"19525":-1,"19526":-1,"19527":-1,"19528":-1,"19529":-1,"19530":-1,"19531":-1,"19532":-1,"19533":-1,"19534":-1,"19535":-1,"19536":-1,"19537":-1,"19538":-1,"19539":-1,"19540":4068,"19541":-1,"19542":-1,"19543":-1,"19544":-1,"19545":4067,"19546":-1,"19547":-1,"19548":-1,"19549":-1,"19550":-1,"19551":-1,"19552":-1,"19553":-1,"19554":-1,"19555":-1,"19556":-1,"19557":-1,"19558":-1,"19559":-1,"19560":-1,"19561":-1,"19562":-1,"19563":-1,"19564":-1,"19565":4065,"19566":-1,"19567":4068,"19568":-1,"19569":-1,"19570":-1,"19571":-1,"19572":-1,"19573":-1,"19574":4064,"19575":-1,"19576":-1,"19577":-1,"19578":-1,"19579":-1,"19580":-1,"19581":-1,"19582":-1,"19583":-1,"19584":-1,"19585":4066,"19586":4068,"19587":-1,"19588":-1,"19589":-1,"19590":4065,"19591":-1,"19592":-1,"19593":0,"19594":-1,"19595":-1,"19596":-1,"19597":-1,"19598":-1,"19599":-1,"19600":-1,"19601":-1,"19602":-1,"19603":-1,"19604":-1,"19605":-1,"19606":4065,"19607":-1,"19608":-1,"19609":-1,"19610":-1,"19611":-1,"19612":-1,"19613":-1,"19614":-1,"19615":-1,"19616":-1,"19617":-1,"19618":-1,"19619":4064,"19620":4063,"19621":-1,"19622":-1,"19623":4068,"19624":-1,"19625":-1,"19626":-1,"19627":-1,"19628":-1,"19629":-1,"19630":-1,"19631":-1,"19632":-1,"19633":-1,"19634":-1,"19635":-1,"19636":-1,"19637":-1,"19638":-1,"19639":-1,"19640":-1,"19641":-1,"19642":-1,"19643":-1,"19644":-1,"19645":-1,"19646":-1,"19647":-1,"19648":-1,"19649":-1,"19650":4063,"19651":-1,"19652":-1,"19653":-1,"19654":-1,"19655":4066,"19656":-1,"19657":0,"19658":-1,"19659":-1,"19660":-1,"19661":4067,"19662":-1,"19663":-1,"19664":-1,"19665":-1,"19666":-1,"19667":-1,"19668":-1,"19669":4064,"19670":-1,"19671":-1,"19672":4065,"19673":-1,"19674":4068,"19675":-1,"19676":-1,"19677":-1,"19678":-1,"19679":4067,"19680":-1,"19681":-1,"19682":4065,"19683":-1,"19684":-1,"19685":-1,"19686":-1,"19687":-1,"19688":-1,"19689":-1,"19690":-1,"19691":-1,"19692":-1,"19693":-1,"19694":-1,"19695":-1,"19696":-1,"19697":-1,"19698":-1,"19699":-1,"19700":-1,"19701":-1,"19702":-1,"19703":-1,"19704":-1,"19705":4066,"19706":4068,"19707":4068,"19708":4065,"19709":-1,"19710":-1,"19711":-1,"19712":-1,"19713":-1,"19714":-1,"19715":-1,"19716":-1,"19717":-1,"19718":-1,"19719":-1,"19720":-1,"19721":-1,"19722":-1,"19723":-1,"19724":-1,"19725":-1,"19726":-1,"19727":-1,"19728":-1,"19729":-1,"19730":4068,"19731":4063,"19732":-1,"19733":-1,"19734":-1,"19735":-1,"19736":-1,"19737":-1,"19738":-1,"19739":-1,"19740":-1,"19741":-1,"19742":-1,"19743":-1,"19744":-1,"19745":-1,"19746":-1,"19747":-1,"19748":-1,"19749":-1,"19750":-1,"19751":4064,"19752":-1,"19753":-1,"19754":-1,"19755":-1,"19756":-1,"19757":-1,"19758":4066,"19759":-1,"19760":-1,"19761":-1,"19762":-1,"19763":4067,"19764":-1,"19765":4066,"19766":-1,"19767":-1,"19768":4068,"19769":-1,"19770":-1,"19771":-1,"19772":4064,"19773":-1,"19774":-1,"19775":-1,"19776":4068,"19777":-1,"19778":-1,"19779":-1,"19780":-1,"19781":-1,"19782":0,"19783":-1,"19784":-1,"19785":-1,"19786":-1,"19787":-1,"19788":-1,"19789":-1,"19790":-1,"19791":-1,"19792":-1,"19793":-1,"19794":-1,"19795":-1,"19796":-1,"19797":-1,"19798":-1,"19799":-1,"19800":-1,"19801":-1,"19802":-1,"19803":-1,"19804":-1,"19805":-1,"19806":4063,"19807":-1,"19808":-1,"19809":-1,"19810":-1,"19811":-1,"19812":-1,"19813":-1,"19814":-1,"19815":0,"19816":-1,"19817":-1,"19818":4063,"19819":-1,"19820":-1,"19821":-1,"19822":-1,"19823":-1,"19824":-1,"19825":-1,"19826":-1,"19827":-1,"19828":-1,"19829":-1,"19830":-1,"19831":-1,"19832":0,"19833":-1,"19834":-1,"19835":-1,"19836":-1,"19837":-1,"19838":-1,"19839":4065,"19840":-1,"19841":4067,"19842":4067,"19843":-1,"19844":-1,"19845":-1,"19846":-1,"19847":-1,"19848":-1,"19849":-1,"19850":-1,"19851":-1,"19852":-1,"19853":-1,"19854":-1,"19855":-1,"19856":-1,"19857":-1,"19858":4067,"19859":-1,"19860":-1,"19861":-1,"19862":-1,"19863":4067,"19864":-1,"19865":-1,"19866":-1,"19867":-1,"19868":4068,"19869":-1,"19870":-1,"19871":-1,"19872":0,"19873":-1,"19874":-1,"19875":-1,"19876":-1,"19877":-1,"19878":-1,"19879":-1,"19880":-1,"19881":-1,"19882":-1,"19883":-1,"19884":-1,"19885":-1,"19886":-1,"19887":0,"19888":-1,"19889":-1,"19890":-1,"19891":4066,"19892":-1,"19893":-1,"19894":-1,"19895":-1,"19896":-1,"19897":-1,"19898":-1,"19899":-1,"19900":-1,"19901":-1,"19902":-1,"19903":-1,"19904":-1,"19905":-1,"19906":-1,"19907":-1,"19908":-1,"19909":-1,"19910":-1,"19911":4063,"19912":-1,"19913":-1,"19914":-1,"19915":-1,"19916":-1,"19917":-1,"19918":-1,"19919":-1,"19920":-1,"19921":-1,"19922":-1,"19923":4063,"19924":-1,"19925":-1,"19926":-1,"19927":-1,"19928":-1,"19929":-1,"19930":-1,"19931":-1,"19932":-1,"19933":-1,"19934":-1,"19935":-1,"19936":-1,"19937":-1,"19938":-1,"19939":-1,"19940":-1,"19941":-1,"19942":-1,"19943":-1,"19944":-1,"19945":4066,"19946":-1,"19947":-1,"19948":-1,"19949":-1,"19950":-1,"19951":-1,"19952":-1,"19953":-1,"19954":-1,"19955":-1,"19956":-1,"19957":-1,"19958":-1,"19959":-1,"19960":0,"19961":4064,"19962":4064,"19963":-1,"19964":-1,"19965":-1,"19966":-1,"19967":-1,"19968":-1,"19969":-1,"19970":-1,"19971":-1,"19972":-1,"19973":-1,"19974":4066,"19975":-1,"19976":-1,"19977":-1,"19978":4064,"19979":-1,"19980":-1,"19981":-1,"19982":-1,"19983":4063,"19984":-1,"19985":-1,"19986":-1,"19987":-1,"19988":-1,"19989":-1,"19990":-1,"19991":-1,"19992":4065,"19993":-1,"19994":-1,"19995":4067,"19996":4066,"19997":-1,"19998":-1,"19999":-1,"20000":-1,"20001":-1,"20002":-1,"20003":-1,"20004":-1,"20005":-1,"20006":-1,"20007":-1,"20008":-1,"20009":-1,"20010":4067,"20011":4064,"20012":-1,"20013":-1,"20014":0,"20015":-1,"20016":-1,"20017":4064,"20018":-1,"20019":-1,"20020":-1,"20021":-1,"20022":-1,"20023":4067,"20024":-1,"20025":-1,"20026":-1,"20027":0,"20028":-1,"20029":4066,"20030":-1,"20031":-1,"20032":4064,"20033":-1,"20034":4065,"20035":4067,"20036":-1,"20037":-1,"20038":4065,"20039":-1,"20040":-1,"20041":-1,"20042":4064,"20043":-1,"20044":-1,"20045":-1,"20046":-1,"20047":-1,"20048":-1,"20049":-1,"20050":-1,"20051":-1,"20052":-1,"20053":-1,"20054":-1,"20055":-1,"20056":-1,"20057":-1,"20058":-1,"20059":-1,"20060":-1,"20061":-1,"20062":-1,"20063":-1,"20064":-1,"20065":-1,"20066":-1,"20067":-1,"20068":-1,"20069":4063,"20070":-1,"20071":-1,"20072":-1,"20073":-1,"20074":-1,"20075":-1,"20076":-1,"20077":-1,"20078":-1,"20079":-1,"20080":4065,"20081":-1,"20082":-1,"20083":4067,"20084":-1,"20085":-1,"20086":-1,"20087":4064,"20088":4066,"20089":-1,"20090":-1,"20091":4067,"20092":-1,"20093":-1,"20094":4065,"20095":-1,"20096":-1,"20097":-1,"20098":-1,"20099":4067,"20100":-1,"20101":-1,"20102":-1,"20103":-1,"20104":-1,"20105":4064,"20106":-1,"20107":-1,"20108":-1,"20109":-1,"20110":-1,"20111":-1,"20112":-1,"20113":-1,"20114":-1,"20115":-1,"20116":4067,"20117":4064,"20118":-1,"20119":4065,"20120":-1,"20121":-1,"20122":-1,"20123":-1,"20124":-1,"20125":-1,"20126":-1,"20127":-1,"20128":-1,"20129":-1,"20130":-1,"20131":-1,"20132":-1,"20133":-1,"20134":-1,"20135":-1,"20136":-1,"20137":-1,"20138":-1,"20139":-1,"20140":-1,"20141":-1,"20142":4063,"20143":-1,"20144":-1,"20145":4065,"20146":-1,"20147":4064,"20148":-1,"20149":-1,"20150":-1,"20151":-1,"20152":-1,"20153":-1,"20154":-1,"20155":-1,"20156":4066,"20157":4067,"20158":-1,"20159":-1,"20160":-1,"20161":4067,"20162":4067,"20163":-1,"20164":-1,"20165":-1,"20166":4066,"20167":-1,"20168":-1,"20169":0,"20170":-1,"20171":-1,"20172":-1,"20173":-1,"20174":0,"20175":-1,"20176":-1,"20177":-1,"20178":-1,"20179":-1,"20180":-1,"20181":-1,"20182":-1,"20183":-1,"20184":-1,"20185":-1,"20186":-1,"20187":-1,"20188":-1,"20189":-1,"20190":-1,"20191":-1,"20192":4066,"20193":4067,"20194":-1,"20195":-1,"20196":-1,"20197":-1,"20198":-1,"20199":-1,"20200":-1,"20201":-1,"20202":-1,"20203":-1,"20204":-1,"20205":-1,"20206":0,"20207":-1,"20208":-1,"20209":-1,"20210":-1,"20211":-1,"20212":-1,"20213":-1,"20214":-1,"20215":4065,"20216":-1,"20217":0,"20218":-1,"20219":-1,"20220":-1,"20221":-1,"20222":-1,"20223":-1,"20224":4067,"20225":-1,"20226":4067,"20227":-1,"20228":-1,"20229":-1,"20230":4064,"20231":-1,"20232":-1,"20233":-1,"20234":-1,"20235":-1,"20236":-1,"20237":-1,"20238":-1,"20239":-1,"20240":-1,"20241":-1,"20242":-1,"20243":-1,"20244":-1,"20245":-1,"20246":4067,"20247":4064,"20248":-1,"20249":-1,"20250":-1,"20251":-1,"20252":-1,"20253":-1,"20254":-1,"20255":-1,"20256":-1,"20257":-1,"20258":-1,"20259":-1,"20260":-1,"20261":-1,"20262":-1,"20263":-1,"20264":-1,"20265":-1,"20266":4064,"20267":-1,"20268":-1,"20269":-1,"20270":4065,"20271":-1,"20272":-1,"20273":-1,"20274":-1,"20275":-1,"20276":4066,"20277":-1,"20278":-1,"20279":-1,"20280":-1,"20281":-1,"20282":4064,"20283":-1,"20284":0,"20285":-1,"20286":-1,"20287":-1,"20288":4066,"20289":-1,"20290":-1,"20291":-1,"20292":-1,"20293":-1,"20294":-1,"20295":4063,"20296":-1,"20297":0,"20298":-1,"20299":-1,"20300":-1,"20301":-1,"20302":-1,"20303":-1,"20304":-1,"20305":-1,"20306":-1,"20307":-1,"20308":-1,"20309":-1,"20310":-1,"20311":4065,"20312":-1,"20313":-1,"20314":-1,"20315":-1,"20316":4063,"20317":-1,"20318":-1,"20319":4066,"20320":4063,"20321":-1,"20322":-1,"20323":-1,"20324":-1,"20325":-1,"20326":-1,"20327":-1,"20328":-1,"20329":-1,"20330":-1,"20331":4064,"20332":-1,"20333":-1,"20334":-1,"20335":-1,"20336":-1,"20337":0,"20338":-1,"20339":-1,"20340":-1,"20341":-1,"20342":0,"20343":-1,"20344":-1,"20345":-1,"20346":4065,"20347":-1,"20348":-1,"20349":-1,"20350":-1,"20351":-1,"20352":-1,"20353":4065,"20354":-1,"20355":-1,"20356":-1,"20357":-1,"20358":-1,"20359":-1,"20360":-1,"20361":-1,"20362":-1,"20363":-1,"20364":-1,"20365":-1,"20366":-1,"20367":-1,"20368":-1,"20369":-1,"20370":4065,"20371":-1,"20372":-1,"20373":-1,"20374":-1,"20375":0,"20376":-1,"20377":4065,"20378":-1,"20379":-1,"20380":4065,"20381":-1,"20382":-1,"20383":-1,"20384":-1,"20385":-1,"20386":-1,"20387":-1,"20388":0,"20389":-1,"20390":-1,"20391":-1,"20392":-1,"20393":-1,"20394":-1,"20395":-1,"20396":-1,"20397":-1,"20398":4067,"20399":-1,"20400":-1,"20401":-1,"20402":-1,"20403":-1,"20404":-1,"20405":-1,"20406":-1,"20407":-1,"20408":-1,"20409":-1,"20410":-1,"20411":-1,"20412":-1,"20413":-1,"20414":4064,"20415":-1,"20416":-1,"20417":-1,"20418":0,"20419":-1,"20420":-1,"20421":-1,"20422":-1,"20423":-1,"20424":-1,"20425":-1,"20426":-1,"20427":-1,"20428":-1,"20429":-1,"20430":-1,"20431":-1,"20432":-1,"20433":4066,"20434":-1,"20435":-1,"20436":-1,"20437":-1,"20438":-1,"20439":-1,"20440":-1,"20441":-1,"20442":-1,"20443":-1,"20444":-1,"20445":-1,"20446":4067,"20447":-1,"20448":-1,"20449":-1,"20450":-1,"20451":-1,"20452":-1,"20453":-1,"20454":-1,"20455":-1,"20456":-1,"20457":-1,"20458":-1,"20459":-1,"20460":-1,"20461":-1,"20462":-1,"20463":-1,"20464":-1,"20465":-1,"20466":-1,"20467":-1,"20468":-1,"20469":-1,"20470":-1,"20471":-1,"20472":-1,"20473":-1,"20474":-1,"20475":-1,"20476":-1,"20477":-1,"20478":-1,"20479":-1,"20480":-1,"20481":-1,"20482":-1,"20483":-1,"20484":-1,"20485":-1,"20486":-1,"20487":-1,"20488":0,"20489":-1,"20490":-1,"20491":-1,"20492":4064,"20493":-1,"20494":-1,"20495":-1,"20496":-1,"20497":4063,"20498":-1,"20499":-1,"20500":-1,"20501":-1,"20502":-1,"20503":4064,"20504":4064,"20505":-1,"20506":-1,"20507":-1,"20508":-1,"20509":-1,"20510":-1,"20511":-1,"20512":-1,"20513":-1,"20514":-1,"20515":-1,"20516":-1,"20517":-1,"20518":-1,"20519":-1,"20520":-1,"20521":-1,"20522":-1,"20523":-1,"20524":-1,"20525":-1,"20526":-1,"20527":-1,"20528":-1,"20529":-1,"20530":0,"20531":-1,"20532":-1,"20533":-1,"20534":-1,"20535":-1,"20536":-1,"20537":4067,"20538":-1,"20539":-1,"20540":-1,"20541":-1,"20542":-1,"20543":-1,"20544":-1,"20545":-1,"20546":-1,"20547":-1,"20548":-1,"20549":-1,"20550":-1,"20551":-1,"20552":-1,"20553":-1,"20554":-1,"20555":4068,"20556":-1,"20557":-1,"20558":-1,"20559":-1,"20560":4064,"20561":-1,"20562":-1,"20563":-1,"20564":-1,"20565":-1,"20566":-1,"20567":-1,"20568":-1,"20569":-1,"20570":-1,"20571":-1,"20572":-1,"20573":-1,"20574":0,"20575":-1,"20576":-1,"20577":-1,"20578":-1,"20579":-1,"20580":-1,"20581":4065,"20582":-1,"20583":-1,"20584":-1,"20585":-1,"20586":-1,"20587":-1,"20588":-1,"20589":-1,"20590":-1,"20591":-1,"20592":-1,"20593":-1,"20594":-1,"20595":-1,"20596":-1,"20597":-1,"20598":0,"20599":-1,"20600":-1,"20601":4068,"20602":-1,"20603":-1,"20604":-1,"20605":-1,"20606":4066,"20607":-1,"20608":-1,"20609":-1,"20610":-1,"20611":-1,"20612":-1,"20613":-1,"20614":-1,"20615":4064,"20616":-1,"20617":-1,"20618":-1,"20619":-1,"20620":-1,"20621":-1,"20622":4064,"20623":-1,"20624":-1,"20625":-1,"20626":-1,"20627":-1,"20628":-1,"20629":-1,"20630":-1,"20631":-1,"20632":-1,"20633":-1,"20634":-1,"20635":4068,"20636":-1,"20637":-1,"20638":-1,"20639":0,"20640":-1,"20641":-1,"20642":-1,"20643":-1,"20644":4064,"20645":-1,"20646":-1,"20647":-1,"20648":-1,"20649":0,"20650":-1,"20651":-1,"20652":-1,"20653":-1,"20654":-1,"20655":-1,"20656":-1,"20657":-1,"20658":-1,"20659":-1,"20660":-1,"20661":-1,"20662":-1,"20663":4067,"20664":-1,"20665":-1,"20666":4066,"20667":-1,"20668":4066,"20669":-1,"20670":-1,"20671":-1,"20672":-1,"20673":-1,"20674":-1,"20675":-1,"20676":-1,"20677":-1,"20678":-1,"20679":-1,"20680":-1,"20681":-1,"20682":-1,"20683":-1,"20684":0,"20685":-1,"20686":-1,"20687":-1,"20688":-1,"20689":-1,"20690":-1,"20691":-1,"20692":-1,"20693":-1,"20694":4065,"20695":-1,"20696":0,"20697":-1,"20698":-1,"20699":-1,"20700":-1,"20701":-1,"20702":-1,"20703":-1,"20704":-1,"20705":4066,"20706":-1,"20707":-1,"20708":-1,"20709":-1,"20710":-1,"20711":-1,"20712":-1,"20713":-1,"20714":-1,"20715":-1,"20716":-1,"20717":-1,"20718":-1,"20719":-1,"20720":-1,"20721":0,"20722":-1,"20723":4065,"20724":4065,"20725":4065,"20726":-1,"20727":4064,"20728":-1,"20729":-1,"20730":-1,"20731":4066,"20732":-1,"20733":-1,"20734":-1,"20735":-1,"20736":0,"20737":4066,"20738":4064,"20739":-1,"20740":4066,"20741":-1,"20742":-1,"20743":-1,"20744":-1,"20745":-1,"20746":-1,"20747":-1,"20748":-1,"20749":-1,"20750":0,"20751":-1,"20752":-1,"20753":0,"20754":-1,"20755":-1,"20756":4064,"20757":-1,"20758":-1,"20759":-1,"20760":-1,"20761":-1,"20762":-1,"20763":-1,"20764":-1,"20765":-1,"20766":-1,"20767":-1,"20768":-1,"20769":-1,"20770":-1,"20771":-1,"20772":-1,"20773":-1,"20774":-1,"20775":4063,"20776":-1,"20777":0,"20778":-1,"20779":-1,"20780":-1,"20781":-1,"20782":-1,"20783":4066,"20784":-1,"20785":4067,"20786":-1,"20787":-1,"20788":-1,"20789":-1,"20790":-1,"20791":-1,"20792":-1,"20793":-1,"20794":-1,"20795":-1,"20796":0,"20797":-1,"20798":-1,"20799":4066,"20800":-1,"20801":-1,"20802":-1,"20803":-1,"20804":4065,"20805":-1,"20806":-1,"20807":-1,"20808":-1,"20809":-1,"20810":-1,"20811":-1,"20812":-1,"20813":-1,"20814":-1,"20815":-1,"20816":0,"20817":4067,"20818":-1,"20819":-1,"20820":-1,"20821":-1,"20822":-1,"20823":4065,"20824":4068,"20825":-1,"20826":-1,"20827":-1,"20828":-1,"20829":-1,"20830":-1,"20831":-1,"20832":-1,"20833":-1,"20834":-1,"20835":-1,"20836":-1,"20837":-1,"20838":-1,"20839":-1,"20840":-1,"20841":-1,"20842":4063,"20843":-1,"20844":-1,"20845":-1,"20846":-1,"20847":-1,"20848":-1,"20849":0,"20850":4065,"20851":-1,"20852":-1,"20853":-1,"20854":-1,"20855":-1,"20856":-1,"20857":-1,"20858":-1,"20859":-1,"20860":-1,"20861":4065,"20862":-1,"20863":4066,"20864":-1,"20865":4066,"20866":-1,"20867":-1,"20868":-1,"20869":4064,"20870":-1,"20871":-1,"20872":-1,"20873":-1,"20874":-1,"20875":-1,"20876":-1,"20877":-1,"20878":-1,"20879":-1,"20880":-1,"20881":-1,"20882":0,"20883":0,"20884":-1,"20885":-1,"20886":-1,"20887":-1,"20888":-1,"20889":-1,"20890":4066,"20891":-1,"20892":4067,"20893":4063,"20894":4066,"20895":-1,"20896":-1,"20897":-1,"20898":4067,"20899":-1,"20900":-1,"20901":-1,"20902":-1,"20903":-1,"20904":-1,"20905":4067,"20906":4067,"20907":-1,"20908":-1,"20909":-1,"20910":-1,"20911":-1,"20912":-1,"20913":-1,"20914":-1,"20915":-1,"20916":4064,"20917":-1,"20918":-1,"20919":4065,"20920":-1,"20921":-1,"20922":-1,"20923":-1,"20924":-1,"20925":-1,"20926":-1,"20927":-1,"20928":-1,"20929":-1,"20930":-1,"20931":-1,"20932":-1,"20933":-1,"20934":-1,"20935":-1,"20936":-1,"20937":4064,"20938":-1,"20939":-1,"20940":-1,"20941":-1,"20942":-1,"20943":-1,"20944":-1,"20945":-1,"20946":-1,"20947":-1,"20948":4067,"20949":4064,"20950":-1,"20951":-1,"20952":-1,"20953":-1,"20954":-1,"20955":-1,"20956":4063,"20957":-1,"20958":4065,"20959":-1,"20960":-1,"20961":-1,"20962":-1,"20963":-1,"20964":-1,"20965":-1,"20966":-1,"20967":-1,"20968":4065,"20969":-1,"20970":-1,"20971":-1,"20972":-1,"20973":0,"20974":-1,"20975":-1,"20976":-1,"20977":-1,"20978":-1,"20979":-1,"20980":-1,"20981":4065,"20982":-1,"20983":-1,"20984":4067,"20985":4067,"20986":-1,"20987":-1,"20988":4064,"20989":4067,"20990":-1,"20991":-1,"20992":-1,"20993":-1,"20994":-1,"20995":4065,"20996":-1,"20997":-1,"20998":-1,"20999":-1,"21000":-1,"21001":-1,"21002":-1,"21003":4068,"21004":4064,"21005":-1,"21006":-1,"21007":-1,"21008":-1,"21009":-1,"21010":-1,"21011":-1,"21012":-1,"21013":-1,"21014":-1,"21015":-1,"21016":-1,"21017":-1,"21018":-1,"21019":-1,"21020":4064,"21021":-1,"21022":-1,"21023":-1,"21024":-1,"21025":-1,"21026":-1,"21027":-1,"21028":-1,"21029":-1,"21030":-1,"21031":-1,"21032":-1,"21033":-1,"21034":-1,"21035":-1,"21036":-1,"21037":-1,"21038":-1,"21039":-1,"21040":4064,"21041":-1,"21042":-1,"21043":-1,"21044":-1,"21045":-1,"21046":-1,"21047":-1,"21048":-1,"21049":4066,"21050":4065,"21051":-1,"21052":0,"21053":-1,"21054":-1,"21055":-1,"21056":-1,"21057":-1,"21058":-1,"21059":-1,"21060":-1,"21061":-1,"21062":-1,"21063":-1,"21064":4066,"21065":-1,"21066":-1,"21067":4066,"21068":-1,"21069":-1,"21070":-1,"21071":4066,"21072":-1,"21073":4068,"21074":-1,"21075":4064,"21076":-1,"21077":4066,"21078":-1,"21079":-1,"21080":-1,"21081":0,"21082":0,"21083":-1,"21084":-1,"21085":-1,"21086":-1,"21087":-1,"21088":4065,"21089":-1,"21090":-1,"21091":-1,"21092":-1,"21093":-1,"21094":-1,"21095":-1,"21096":-1,"21097":4068,"21098":-1,"21099":-1,"21100":-1,"21101":-1,"21102":-1,"21103":4068,"21104":-1,"21105":-1,"21106":-1,"21107":4067,"21108":-1,"21109":-1,"21110":-1,"21111":-1,"21112":-1,"21113":-1,"21114":-1,"21115":-1,"21116":-1,"21117":-1,"21118":-1,"21119":-1,"21120":-1,"21121":-1,"21122":4066,"21123":-1,"21124":-1,"21125":-1,"21126":4066,"21127":4063,"21128":-1,"21129":-1,"21130":-1,"21131":-1,"21132":-1,"21133":-1,"21134":-1,"21135":-1,"21136":-1,"21137":-1,"21138":4068,"21139":-1,"21140":-1,"21141":-1,"21142":-1,"21143":-1,"21144":-1,"21145":-1,"21146":-1,"21147":-1,"21148":-1,"21149":-1,"21150":-1,"21151":-1,"21152":4066,"21153":-1,"21154":4064,"21155":-1,"21156":4063,"21157":-1,"21158":-1,"21159":-1,"21160":-1,"21161":-1,"21162":4064,"21163":0,"21164":-1,"21165":4064,"21166":-1,"21167":-1,"21168":-1,"21169":-1,"21170":-1,"21171":-1,"21172":-1,"21173":-1,"21174":-1,"21175":-1,"21176":-1,"21177":-1,"21178":-1,"21179":-1,"21180":-1,"21181":4066,"21182":4067,"21183":4064,"21184":-1,"21185":-1,"21186":-1,"21187":-1,"21188":-1,"21189":-1,"21190":-1,"21191":-1,"21192":-1,"21193":4065,"21194":-1,"21195":-1,"21196":-1,"21197":-1,"21198":-1,"21199":-1,"21200":-1,"21201":-1,"21202":-1,"21203":-1,"21204":0,"21205":-1,"21206":-1,"21207":-1,"21208":-1,"21209":-1,"21210":-1,"21211":-1,"21212":-1,"21213":4065,"21214":4063,"21215":-1,"21216":-1,"21217":-1,"21218":4066,"21219":-1,"21220":-1,"21221":-1,"21222":4068,"21223":-1,"21224":-1,"21225":4064,"21226":-1,"21227":-1,"21228":4064,"21229":4067,"21230":-1,"21231":-1,"21232":-1,"21233":-1,"21234":-1,"21235":-1,"21236":-1,"21237":-1,"21238":-1,"21239":-1,"21240":-1,"21241":0,"21242":-1,"21243":-1,"21244":4067,"21245":-1,"21246":-1,"21247":-1,"21248":-1,"21249":-1,"21250":-1,"21251":-1,"21252":-1,"21253":-1,"21254":-1,"21255":-1,"21256":-1,"21257":4063,"21258":-1,"21259":-1,"21260":-1,"21261":-1,"21262":-1,"21263":-1,"21264":-1,"21265":-1,"21266":-1,"21267":-1,"21268":-1,"21269":-1,"21270":-1,"21271":-1,"21272":0,"21273":-1,"21274":-1,"21275":-1,"21276":-1,"21277":-1,"21278":-1,"21279":-1,"21280":-1,"21281":-1,"21282":-1,"21283":-1,"21284":-1,"21285":-1,"21286":-1,"21287":0,"21288":-1,"21289":-1,"21290":4064,"21291":0,"21292":-1,"21293":4066,"21294":-1,"21295":4064,"21296":-1,"21297":-1,"21298":-1,"21299":4067,"21300":0,"21301":4063,"21302":-1,"21303":-1,"21304":-1,"21305":-1,"21306":-1,"21307":-1,"21308":0,"21309":4065,"21310":4067,"21311":-1,"21312":-1,"21313":-1,"21314":-1,"21315":-1,"21316":-1,"21317":-1,"21318":0,"21319":0,"21320":-1,"21321":-1,"21322":-1,"21323":-1,"21324":4068,"21325":-1,"21326":-1,"21327":-1,"21328":-1,"21329":-1,"21330":-1,"21331":-1,"21332":-1,"21333":-1,"21334":4063,"21335":-1,"21336":-1,"21337":4064,"21338":-1,"21339":-1,"21340":0,"21341":-1,"21342":-1,"21343":4064,"21344":-1,"21345":-1,"21346":-1,"21347":-1,"21348":-1,"21349":-1,"21350":-1,"21351":-1,"21352":-1,"21353":-1,"21354":-1,"21355":0,"21356":-1,"21357":-1,"21358":4065,"21359":-1,"21360":-1,"21361":4064,"21362":0,"21363":-1,"21364":-1,"21365":-1,"21366":-1,"21367":-1,"21368":4067,"21369":-1,"21370":-1,"21371":-1,"21372":-1,"21373":-1,"21374":-1,"21375":-1,"21376":-1,"21377":-1,"21378":4066,"21379":-1,"21380":-1,"21381":-1,"21382":-1,"21383":-1,"21384":-1,"21385":-1,"21386":-1,"21387":-1,"21388":-1,"21389":4067,"21390":-1,"21391":-1,"21392":4068,"21393":-1,"21394":-1,"21395":-1,"21396":-1,"21397":4068,"21398":-1,"21399":-1,"21400":-1,"21401":-1,"21402":-1,"21403":-1,"21404":-1,"21405":-1,"21406":-1,"21407":-1,"21408":-1,"21409":-1,"21410":-1,"21411":-1,"21412":-1,"21413":-1,"21414":4067,"21415":-1,"21416":4063,"21417":-1,"21418":-1,"21419":4068,"21420":4068,"21421":-1,"21422":-1,"21423":-1,"21424":-1,"21425":-1,"21426":4066,"21427":-1,"21428":-1,"21429":-1,"21430":-1,"21431":-1,"21432":-1,"21433":4065,"21434":-1,"21435":-1,"21436":-1,"21437":-1,"21438":-1,"21439":-1,"21440":-1,"21441":-1,"21442":-1,"21443":-1,"21444":-1,"21445":-1,"21446":-1,"21447":4066,"21448":0,"21449":4065,"21450":-1,"21451":-1,"21452":4064,"21453":-1,"21454":-1,"21455":-1,"21456":-1,"21457":-1,"21458":-1,"21459":-1,"21460":-1,"21461":-1,"21462":-1,"21463":-1,"21464":4068,"21465":-1,"21466":-1,"21467":-1,"21468":-1,"21469":-1,"21470":4063,"21471":-1,"21472":-1,"21473":-1,"21474":-1,"21475":-1,"21476":4067,"21477":4068,"21478":-1,"21479":-1,"21480":-1,"21481":0,"21482":-1,"21483":4068,"21484":-1,"21485":-1,"21486":-1,"21487":4065,"21488":4066,"21489":-1,"21490":-1,"21491":-1,"21492":-1,"21493":-1,"21494":-1,"21495":-1,"21496":-1,"21497":4067,"21498":-1,"21499":-1,"21500":-1,"21501":-1,"21502":-1,"21503":-1,"21504":-1,"21505":-1,"21506":-1,"21507":-1,"21508":4063,"21509":-1,"21510":-1,"21511":-1,"21512":-1,"21513":-1,"21514":-1,"21515":-1,"21516":-1,"21517":-1,"21518":-1,"21519":-1,"21520":-1,"21521":-1,"21522":-1,"21523":-1,"21524":-1,"21525":-1,"21526":-1,"21527":-1,"21528":-1,"21529":-1,"21530":-1,"21531":-1,"21532":-1,"21533":4067,"21534":-1,"21535":0,"21536":-1,"21537":-1,"21538":-1,"21539":-1,"21540":-1,"21541":-1,"21542":-1,"21543":4066,"21544":-1,"21545":-1,"21546":-1,"21547":-1,"21548":-1,"21549":4066,"21550":-1,"21551":-1,"21552":-1,"21553":4067,"21554":-1,"21555":-1,"21556":-1,"21557":-1,"21558":-1,"21559":-1,"21560":-1,"21561":-1,"21562":-1,"21563":-1,"21564":-1,"21565":4065,"21566":-1,"21567":4065,"21568":-1,"21569":-1,"21570":0,"21571":-1,"21572":-1,"21573":-1,"21574":-1,"21575":-1,"21576":4063,"21577":-1,"21578":0,"21579":-1,"21580":4065,"21581":-1,"21582":4063,"21583":-1,"21584":4067,"21585":-1,"21586":-1,"21587":-1,"21588":-1,"21589":-1,"21590":-1,"21591":-1,"21592":4067,"21593":-1,"21594":-1,"21595":-1,"21596":-1,"21597":-1,"21598":-1,"21599":-1,"21600":-1,"21601":4068,"21602":-1,"21603":-1,"21604":-1,"21605":-1,"21606":-1,"21607":4067,"21608":-1,"21609":-1,"21610":-1,"21611":4065,"21612":-1,"21613":-1,"21614":-1,"21615":-1,"21616":-1,"21617":-1,"21618":4066,"21619":4067,"21620":-1,"21621":-1,"21622":4063,"21623":-1,"21624":4067,"21625":-1,"21626":0,"21627":4066,"21628":-1,"21629":4067,"21630":0,"21631":-1,"21632":-1,"21633":0,"21634":-1,"21635":-1,"21636":-1,"21637":-1,"21638":4066,"21639":4063,"21640":-1,"21641":-1,"21642":-1,"21643":-1,"21644":-1,"21645":-1,"21646":4065,"21647":-1,"21648":-1,"21649":-1,"21650":-1,"21651":-1,"21652":0,"21653":-1,"21654":-1,"21655":-1,"21656":-1,"21657":-1,"21658":4066,"21659":4065,"21660":0,"21661":-1,"21662":-1,"21663":-1,"21664":-1,"21665":-1,"21666":4065,"21667":-1,"21668":-1,"21669":-1,"21670":-1,"21671":-1,"21672":-1,"21673":-1,"21674":-1,"21675":-1,"21676":-1,"21677":-1,"21678":-1,"21679":-1,"21680":-1,"21681":4064,"21682":-1,"21683":-1,"21684":-1,"21685":-1,"21686":-1,"21687":-1,"21688":-1,"21689":-1,"21690":-1,"21691":-1,"21692":-1,"21693":-1,"21694":-1,"21695":-1,"21696":4064,"21697":-1,"21698":-1,"21699":-1,"21700":-1,"21701":-1,"21702":0,"21703":4068,"21704":-1,"21705":4064,"21706":-1,"21707":-1,"21708":-1,"21709":-1,"21710":-1,"21711":-1,"21712":-1,"21713":-1,"21714":4067,"21715":-1,"21716":-1,"21717":-1,"21718":-1,"21719":-1,"21720":4066,"21721":4064,"21722":-1,"21723":-1,"21724":-1,"21725":-1,"21726":-1,"21727":-1,"21728":-1,"21729":-1,"21730":-1,"21731":-1,"21732":4067,"21733":4065,"21734":-1,"21735":-1,"21736":-1,"21737":4064,"21738":-1,"21739":-1,"21740":-1,"21741":-1,"21742":-1,"21743":-1,"21744":-1,"21745":-1,"21746":-1,"21747":-1,"21748":-1,"21749":0,"21750":4066,"21751":-1,"21752":-1,"21753":-1,"21754":-1,"21755":-1,"21756":-1,"21757":-1,"21758":4064,"21759":-1,"21760":-1,"21761":-1,"21762":-1,"21763":-1,"21764":4065,"21765":-1,"21766":-1,"21767":-1,"21768":-1,"21769":-1,"21770":-1,"21771":-1,"21772":-1,"21773":-1,"21774":-1,"21775":-1,"21776":-1,"21777":-1,"21778":-1,"21779":-1,"21780":0,"21781":-1,"21782":4066,"21783":-1,"21784":4067,"21785":-1,"21786":-1,"21787":-1,"21788":-1,"21789":-1,"21790":-1,"21791":-1,"21792":-1,"21793":-1,"21794":4064,"21795":-1,"21796":4065,"21797":4068,"21798":-1,"21799":0,"21800":-1,"21801":-1,"21802":-1,"21803":-1,"21804":-1,"21805":-1,"21806":-1,"21807":-1,"21808":-1,"21809":-1,"21810":-1,"21811":-1,"21812":-1,"21813":-1,"21814":-1,"21815":-1,"21816":-1,"21817":4068,"21818":-1,"21819":-1,"21820":-1,"21821":-1,"21822":-1,"21823":-1,"21824":-1,"21825":-1,"21826":-1,"21827":-1,"21828":-1,"21829":-1,"21830":-1,"21831":-1,"21832":-1,"21833":-1,"21834":-1,"21835":-1,"21836":-1,"21837":-1,"21838":-1,"21839":-1,"21840":-1,"21841":-1,"21842":4063,"21843":-1,"21844":-1,"21845":-1,"21846":4063,"21847":-1,"21848":-1,"21849":-1,"21850":-1,"21851":-1,"21852":-1,"21853":-1,"21854":-1,"21855":-1,"21856":-1,"21857":-1,"21858":0,"21859":-1,"21860":-1,"21861":-1,"21862":-1,"21863":-1,"21864":-1,"21865":-1,"21866":-1,"21867":-1,"21868":-1,"21869":-1,"21870":-1,"21871":0,"21872":-1,"21873":-1,"21874":4064,"21875":-1,"21876":-1,"21877":-1,"21878":-1,"21879":-1,"21880":-1,"21881":-1,"21882":-1,"21883":-1,"21884":-1,"21885":-1,"21886":-1,"21887":-1,"21888":0,"21889":-1,"21890":-1,"21891":4065,"21892":-1,"21893":-1,"21894":-1,"21895":-1,"21896":-1,"21897":4066,"21898":-1,"21899":4065,"21900":-1,"21901":-1,"21902":-1,"21903":-1,"21904":-1,"21905":-1,"21906":0,"21907":-1,"21908":-1,"21909":-1,"21910":-1,"21911":4065,"21912":-1,"21913":-1,"21914":-1,"21915":-1,"21916":-1,"21917":-1,"21918":-1,"21919":-1,"21920":-1,"21921":4066,"21922":4067,"21923":-1,"21924":-1,"21925":4067,"21926":-1,"21927":-1,"21928":-1,"21929":4068,"21930":-1,"21931":-1,"21932":-1,"21933":-1,"21934":-1,"21935":-1,"21936":-1,"21937":-1,"21938":4067,"21939":-1,"21940":4066,"21941":-1,"21942":-1,"21943":-1,"21944":-1,"21945":-1,"21946":-1,"21947":-1,"21948":-1,"21949":-1,"21950":-1,"21951":-1,"21952":-1,"21953":-1,"21954":4064,"21955":4065,"21956":0,"21957":0,"21958":-1,"21959":-1,"21960":-1,"21961":-1,"21962":-1,"21963":4066,"21964":-1,"21965":-1,"21966":-1,"21967":-1,"21968":-1,"21969":-1,"21970":4067,"21971":-1,"21972":0,"21973":-1,"21974":-1,"21975":-1,"21976":-1,"21977":4068,"21978":-1,"21979":-1,"21980":4066,"21981":-1,"21982":-1,"21983":-1,"21984":-1,"21985":-1,"21986":-1,"21987":0,"21988":-1,"21989":-1,"21990":-1,"21991":-1,"21992":-1,"21993":-1,"21994":4063,"21995":-1,"21996":4065,"21997":-1,"21998":-1,"21999":-1,"22000":-1,"22001":-1,"22002":4065,"22003":-1,"22004":-1,"22005":-1,"22006":-1,"22007":-1,"22008":-1,"22009":-1,"22010":-1,"22011":-1,"22012":-1,"22013":4064,"22014":-1,"22015":4066,"22016":4068,"22017":-1,"22018":-1,"22019":-1,"22020":-1,"22021":-1,"22022":-1,"22023":0,"22024":4066,"22025":-1,"22026":-1,"22027":-1,"22028":-1,"22029":-1,"22030":-1,"22031":-1,"22032":-1,"22033":-1,"22034":-1,"22035":-1,"22036":-1,"22037":-1,"22038":-1,"22039":-1,"22040":-1,"22041":-1,"22042":-1,"22043":-1,"22044":-1,"22045":-1,"22046":-1,"22047":-1,"22048":4064,"22049":-1,"22050":-1,"22051":-1,"22052":4064,"22053":0,"22054":4068,"22055":-1,"22056":-1,"22057":4064,"22058":-1,"22059":-1,"22060":4066,"22061":-1,"22062":-1,"22063":-1,"22064":4064,"22065":-1,"22066":-1,"22067":-1,"22068":-1,"22069":-1,"22070":-1,"22071":-1,"22072":-1,"22073":-1,"22074":-1,"22075":-1,"22076":4065,"22077":-1,"22078":-1,"22079":-1,"22080":-1,"22081":4064,"22082":-1,"22083":4064,"22084":-1,"22085":-1,"22086":-1,"22087":-1,"22088":-1,"22089":4065,"22090":-1,"22091":-1,"22092":-1,"22093":4064,"22094":-1,"22095":-1,"22096":-1,"22097":-1,"22098":-1,"22099":-1,"22100":-1,"22101":4065,"22102":-1,"22103":-1,"22104":-1,"22105":-1,"22106":-1,"22107":-1,"22108":-1,"22109":-1,"22110":-1,"22111":-1,"22112":-1,"22113":-1,"22114":-1,"22115":-1,"22116":-1,"22117":-1,"22118":-1,"22119":-1,"22120":-1,"22121":-1,"22122":-1,"22123":-1,"22124":-1,"22125":-1,"22126":-1,"22127":-1,"22128":4067,"22129":-1,"22130":-1,"22131":-1,"22132":-1,"22133":4063,"22134":-1,"22135":-1,"22136":-1,"22137":0,"22138":-1,"22139":-1,"22140":-1,"22141":-1,"22142":-1,"22143":-1,"22144":-1,"22145":-1,"22146":-1,"22147":-1,"22148":-1,"22149":-1,"22150":4066,"22151":-1,"22152":4064,"22153":-1,"22154":-1,"22155":-1,"22156":-1,"22157":-1,"22158":-1,"22159":-1,"22160":-1,"22161":-1,"22162":-1,"22163":-1,"22164":-1,"22165":-1,"22166":-1,"22167":-1,"22168":4065,"22169":-1,"22170":-1,"22171":-1,"22172":-1,"22173":-1,"22174":4063,"22175":-1,"22176":-1,"22177":-1,"22178":-1,"22179":-1,"22180":-1,"22181":-1,"22182":-1,"22183":-1,"22184":4066,"22185":-1,"22186":-1,"22187":-1,"22188":4064,"22189":-1,"22190":4064,"22191":-1,"22192":-1,"22193":-1,"22194":4068,"22195":4064,"22196":0,"22197":-1,"22198":-1,"22199":-1,"22200":-1,"22201":4068,"22202":0,"22203":4066,"22204":-1,"22205":-1,"22206":-1,"22207":-1,"22208":-1,"22209":4067,"22210":-1,"22211":-1,"22212":-1,"22213":-1,"22214":-1,"22215":-1,"22216":-1,"22217":-1,"22218":4063,"22219":-1,"22220":-1,"22221":-1,"22222":-1,"22223":-1,"22224":-1,"22225":-1,"22226":-1,"22227":-1,"22228":-1,"22229":-1,"22230":4063,"22231":-1,"22232":-1,"22233":-1,"22234":-1,"22235":-1,"22236":-1,"22237":-1,"22238":-1,"22239":-1,"22240":-1,"22241":4066,"22242":-1,"22243":-1,"22244":4067,"22245":-1,"22246":-1,"22247":-1,"22248":-1,"22249":4064,"22250":-1,"22251":-1,"22252":-1,"22253":-1,"22254":-1,"22255":-1,"22256":-1,"22257":-1,"22258":-1,"22259":-1,"22260":0,"22261":-1,"22262":-1,"22263":-1,"22264":4064,"22265":-1,"22266":-1,"22267":-1,"22268":0,"22269":-1,"22270":-1,"22271":-1,"22272":-1,"22273":-1,"22274":-1,"22275":4066,"22276":4067,"22277":-1,"22278":-1,"22279":-1,"22280":4068,"22281":-1,"22282":-1,"22283":-1,"22284":-1,"22285":-1,"22286":-1,"22287":4063,"22288":-1,"22289":-1,"22290":-1,"22291":-1,"22292":-1,"22293":-1,"22294":-1,"22295":-1,"22296":-1,"22297":-1,"22298":-1,"22299":-1,"22300":-1,"22301":-1,"22302":-1,"22303":-1,"22304":-1,"22305":-1,"22306":-1,"22307":-1,"22308":4063,"22309":-1,"22310":0,"22311":-1,"22312":-1,"22313":-1,"22314":-1,"22315":-1,"22316":-1,"22317":-1,"22318":-1,"22319":-1,"22320":-1,"22321":-1,"22322":-1,"22323":-1,"22324":4066,"22325":-1,"22326":-1,"22327":-1,"22328":-1,"22329":-1,"22330":4066,"22331":-1,"22332":-1,"22333":4064,"22334":4066,"22335":-1,"22336":-1,"22337":4068,"22338":-1,"22339":4064,"22340":-1,"22341":4066,"22342":-1,"22343":-1,"22344":-1,"22345":-1,"22346":-1,"22347":-1,"22348":-1,"22349":-1,"22350":0,"22351":-1,"22352":-1,"22353":-1,"22354":-1,"22355":4065,"22356":-1,"22357":-1,"22358":-1,"22359":-1,"22360":-1,"22361":-1,"22362":4065,"22363":-1,"22364":-1,"22365":4068,"22366":-1,"22367":-1,"22368":4064,"22369":-1,"22370":-1,"22371":-1,"22372":-1,"22373":-1,"22374":-1,"22375":-1,"22376":4064,"22377":-1,"22378":-1,"22379":-1,"22380":-1,"22381":4064,"22382":-1,"22383":-1,"22384":-1,"22385":-1,"22386":-1,"22387":-1,"22388":-1,"22389":-1,"22390":-1,"22391":4066,"22392":4065,"22393":-1,"22394":-1,"22395":-1,"22396":-1,"22397":-1,"22398":-1,"22399":-1,"22400":-1,"22401":-1,"22402":-1,"22403":-1,"22404":4066,"22405":-1,"22406":-1,"22407":-1,"22408":-1,"22409":-1,"22410":-1,"22411":-1,"22412":-1,"22413":-1,"22414":-1,"22415":-1,"22416":4063,"22417":-1,"22418":-1,"22419":-1,"22420":-1,"22421":-1,"22422":-1,"22423":-1,"22424":-1,"22425":-1,"22426":-1,"22427":-1,"22428":-1,"22429":-1,"22430":-1,"22431":-1,"22432":-1,"22433":-1,"22434":4065,"22435":-1,"22436":-1,"22437":-1,"22438":-1,"22439":-1,"22440":-1,"22441":0,"22442":-1,"22443":-1,"22444":4065,"22445":-1,"22446":-1,"22447":4064,"22448":-1,"22449":-1,"22450":-1,"22451":-1,"22452":-1,"22453":-1,"22454":-1,"22455":-1,"22456":-1,"22457":-1,"22458":-1,"22459":-1,"22460":-1,"22461":-1,"22462":-1,"22463":4067,"22464":-1,"22465":-1,"22466":-1,"22467":-1,"22468":-1,"22469":-1,"22470":-1,"22471":-1,"22472":4067,"22473":0,"22474":4064,"22475":-1,"22476":-1,"22477":-1,"22478":-1,"22479":4065,"22480":-1,"22481":-1,"22482":-1,"22483":-1,"22484":-1,"22485":-1,"22486":0,"22487":0,"22488":-1,"22489":-1,"22490":-1,"22491":-1,"22492":-1,"22493":-1,"22494":-1,"22495":4065,"22496":-1,"22497":-1,"22498":-1,"22499":-1,"22500":-1,"22501":-1,"22502":-1,"22503":4066,"22504":-1,"22505":-1,"22506":-1,"22507":-1,"22508":-1,"22509":-1,"22510":4067,"22511":-1,"22512":-1,"22513":-1,"22514":-1,"22515":-1,"22516":-1,"22517":4064,"22518":4066,"22519":-1,"22520":-1,"22521":-1,"22522":-1,"22523":0,"22524":-1,"22525":4065,"22526":4064,"22527":-1,"22528":-1,"22529":-1,"22530":-1,"22531":0,"22532":-1,"22533":-1,"22534":-1,"22535":-1,"22536":-1,"22537":-1,"22538":-1,"22539":-1,"22540":-1,"22541":4065,"22542":4067,"22543":-1,"22544":-1,"22545":-1,"22546":-1,"22547":-1,"22548":-1,"22549":-1,"22550":-1,"22551":-1,"22552":-1,"22553":-1,"22554":-1,"22555":-1,"22556":-1,"22557":-1,"22558":-1,"22559":-1,"22560":4064,"22561":0,"22562":-1,"22563":-1,"22564":-1,"22565":-1,"22566":-1,"22567":-1,"22568":-1,"22569":-1,"22570":-1,"22571":-1,"22572":-1,"22573":-1,"22574":-1,"22575":-1,"22576":-1,"22577":-1,"22578":-1,"22579":-1,"22580":-1,"22581":4066,"22582":-1,"22583":-1,"22584":-1,"22585":-1,"22586":-1,"22587":-1,"22588":-1,"22589":4066,"22590":-1,"22591":-1,"22592":0,"22593":-1,"22594":-1,"22595":-1,"22596":-1,"22597":-1,"22598":-1,"22599":-1,"22600":-1,"22601":-1,"22602":-1,"22603":-1,"22604":4066,"22605":-1,"22606":-1,"22607":0,"22608":-1,"22609":-1,"22610":-1,"22611":-1,"22612":-1,"22613":-1,"22614":-1,"22615":-1,"22616":-1,"22617":-1,"22618":-1,"22619":-1,"22620":-1,"22621":-1,"22622":4068,"22623":-1,"22624":-1,"22625":-1,"22626":-1,"22627":-1,"22628":-1,"22629":0,"22630":-1,"22631":-1,"22632":-1,"22633":-1,"22634":-1,"22635":-1,"22636":-1,"22637":4065,"22638":-1,"22639":4067,"22640":-1,"22641":-1,"22642":-1,"22643":-1,"22644":-1,"22645":-1,"22646":-1,"22647":-1,"22648":-1,"22649":-1,"22650":-1,"22651":-1,"22652":-1,"22653":-1,"22654":-1,"22655":-1,"22656":-1,"22657":-1,"22658":-1,"22659":-1,"22660":-1,"22661":-1,"22662":-1,"22663":-1,"22664":-1,"22665":-1,"22666":-1,"22667":-1,"22668":-1,"22669":-1,"22670":-1,"22671":-1,"22672":-1,"22673":-1,"22674":-1,"22675":-1,"22676":-1,"22677":-1,"22678":-1,"22679":-1,"22680":-1,"22681":-1,"22682":4067,"22683":-1,"22684":4063,"22685":-1,"22686":-1,"22687":-1,"22688":-1,"22689":-1,"22690":-1,"22691":-1,"22692":4067,"22693":-1,"22694":-1,"22695":-1,"22696":-1,"22697":-1,"22698":-1,"22699":-1,"22700":-1,"22701":-1,"22702":-1,"22703":-1,"22704":-1,"22705":-1,"22706":-1,"22707":-1,"22708":-1,"22709":-1,"22710":-1,"22711":-1,"22712":-1,"22713":-1,"22714":-1,"22715":-1,"22716":-1,"22717":-1,"22718":-1,"22719":-1,"22720":-1,"22721":-1,"22722":-1,"22723":-1,"22724":-1,"22725":-1,"22726":4065,"22727":-1,"22728":-1,"22729":-1,"22730":-1,"22731":-1,"22732":-1,"22733":-1,"22734":-1,"22735":-1,"22736":-1,"22737":0,"22738":-1,"22739":-1,"22740":-1,"22741":-1,"22742":-1,"22743":-1,"22744":-1,"22745":-1,"22746":-1,"22747":-1,"22748":-1,"22749":-1,"22750":-1,"22751":-1,"22752":-1,"22753":-1,"22754":-1,"22755":-1,"22756":-1,"22757":-1,"22758":-1,"22759":-1,"22760":-1,"22761":-1,"22762":-1,"22763":4063,"22764":4066,"22765":-1,"22766":4064,"22767":-1,"22768":-1,"22769":4065,"22770":-1,"22771":-1,"22772":-1,"22773":-1,"22774":-1,"22775":-1,"22776":-1,"22777":-1,"22778":-1,"22779":-1,"22780":-1,"22781":-1,"22782":-1,"22783":-1,"22784":-1,"22785":-1,"22786":-1,"22787":-1,"22788":4064,"22789":-1,"22790":-1,"22791":-1,"22792":-1,"22793":-1,"22794":-1,"22795":-1,"22796":-1,"22797":-1,"22798":-1,"22799":-1,"22800":-1,"22801":-1,"22802":-1,"22803":-1,"22804":-1,"22805":-1,"22806":-1,"22807":-1,"22808":0,"22809":-1,"22810":-1,"22811":-1,"22812":-1,"22813":-1,"22814":-1,"22815":-1,"22816":-1,"22817":-1,"22818":-1,"22819":-1,"22820":4065,"22821":-1,"22822":-1,"22823":-1,"22824":-1,"22825":-1,"22826":-1,"22827":-1,"22828":-1,"22829":4065,"22830":4067,"22831":-1,"22832":-1,"22833":-1,"22834":4064,"22835":-1,"22836":4065,"22837":-1,"22838":-1,"22839":4066,"22840":0,"22841":-1,"22842":-1,"22843":-1,"22844":4067,"22845":-1,"22846":-1,"22847":-1,"22848":-1,"22849":-1,"22850":-1,"22851":0,"22852":-1,"22853":-1,"22854":-1,"22855":-1,"22856":-1,"22857":-1,"22858":-1,"22859":-1,"22860":-1,"22861":4066,"22862":4065,"22863":4065,"22864":-1,"22865":4067,"22866":-1,"22867":-1,"22868":-1,"22869":-1,"22870":-1,"22871":-1,"22872":-1,"22873":0,"22874":-1,"22875":-1,"22876":-1,"22877":4066,"22878":-1,"22879":-1,"22880":-1,"22881":-1,"22882":0,"22883":-1,"22884":-1,"22885":-1,"22886":-1,"22887":-1,"22888":-1,"22889":-1,"22890":-1,"22891":-1,"22892":-1,"22893":-1,"22894":-1,"22895":-1,"22896":-1,"22897":-1,"22898":-1,"22899":-1,"22900":4065,"22901":-1,"22902":4065,"22903":-1,"22904":-1,"22905":4067,"22906":-1,"22907":0,"22908":-1,"22909":-1,"22910":-1,"22911":-1,"22912":-1,"22913":4066,"22914":-1,"22915":-1,"22916":-1,"22917":-1,"22918":4065,"22919":-1,"22920":-1,"22921":0,"22922":-1,"22923":-1,"22924":-1,"22925":-1,"22926":-1,"22927":-1,"22928":4064,"22929":-1,"22930":-1,"22931":4067,"22932":-1,"22933":4064,"22934":-1,"22935":4066,"22936":-1,"22937":-1,"22938":-1,"22939":-1,"22940":-1,"22941":-1,"22942":-1,"22943":-1,"22944":-1,"22945":-1,"22946":-1,"22947":-1,"22948":-1,"22949":-1,"22950":-1,"22951":4067,"22952":-1,"22953":4065,"22954":-1,"22955":-1,"22956":-1,"22957":-1,"22958":-1,"22959":-1,"22960":-1,"22961":4065,"22962":-1,"22963":-1,"22964":-1,"22965":4066,"22966":-1,"22967":-1,"22968":-1,"22969":4063,"22970":-1,"22971":-1,"22972":-1,"22973":-1,"22974":4064,"22975":-1,"22976":4065,"22977":-1,"22978":-1,"22979":-1,"22980":-1,"22981":-1,"22982":-1,"22983":-1,"22984":-1,"22985":-1,"22986":-1,"22987":-1,"22988":-1,"22989":-1,"22990":-1,"22991":-1,"22992":-1,"22993":-1,"22994":-1,"22995":-1,"22996":-1,"22997":-1,"22998":-1,"22999":-1,"23000":-1,"23001":-1,"23002":-1,"23003":4064,"23004":-1,"23005":-1,"23006":-1,"23007":-1,"23008":-1,"23009":-1,"23010":4067,"23011":-1,"23012":-1,"23013":4066,"23014":-1,"23015":-1,"23016":-1,"23017":4066,"23018":-1,"23019":-1,"23020":-1,"23021":-1,"23022":-1,"23023":-1,"23024":-1,"23025":-1,"23026":-1,"23027":-1,"23028":-1,"23029":4065,"23030":-1,"23031":-1,"23032":-1,"23033":-1,"23034":-1,"23035":-1,"23036":-1,"23037":-1,"23038":-1,"23039":4065,"23040":-1,"23041":-1,"23042":-1,"23043":-1,"23044":-1,"23045":-1,"23046":-1,"23047":-1,"23048":-1,"23049":-1,"23050":-1,"23051":-1,"23052":-1,"23053":-1,"23054":-1,"23055":-1,"23056":-1,"23057":-1,"23058":-1,"23059":-1,"23060":-1,"23061":-1,"23062":-1,"23063":4064,"23064":-1,"23065":-1,"23066":4065,"23067":-1,"23068":4064,"23069":-1,"23070":-1,"23071":-1,"23072":-1,"23073":-1,"23074":-1,"23075":-1,"23076":-1,"23077":-1,"23078":-1,"23079":-1,"23080":-1,"23081":-1,"23082":-1,"23083":-1,"23084":-1,"23085":-1,"23086":-1,"23087":-1,"23088":-1,"23089":-1,"23090":-1,"23091":4063,"23092":-1,"23093":-1,"23094":-1,"23095":-1,"23096":-1,"23097":-1,"23098":-1,"23099":-1,"23100":-1,"23101":0,"23102":4066,"23103":-1,"23104":-1,"23105":-1,"23106":-1,"23107":-1,"23108":-1,"23109":-1,"23110":-1,"23111":-1,"23112":4063,"23113":-1,"23114":-1,"23115":-1,"23116":-1,"23117":-1,"23118":-1,"23119":-1,"23120":-1,"23121":-1,"23122":4064,"23123":-1,"23124":-1,"23125":-1,"23126":-1,"23127":-1,"23128":-1,"23129":-1,"23130":-1,"23131":-1,"23132":-1,"23133":-1,"23134":4063,"23135":-1,"23136":-1,"23137":-1,"23138":-1,"23139":-1,"23140":-1,"23141":-1,"23142":-1,"23143":-1,"23144":-1,"23145":-1,"23146":-1,"23147":-1,"23148":-1,"23149":-1,"23150":-1,"23151":-1,"23152":4068,"23153":-1,"23154":4064,"23155":0,"23156":-1,"23157":-1,"23158":-1,"23159":-1,"23160":-1,"23161":-1,"23162":4066,"23163":-1,"23164":-1,"23165":-1,"23166":-1,"23167":-1,"23168":4063,"23169":-1,"23170":-1,"23171":-1,"23172":-1,"23173":-1,"23174":-1,"23175":-1,"23176":-1,"23177":-1,"23178":-1,"23179":-1,"23180":-1,"23181":-1,"23182":-1,"23183":-1,"23184":-1,"23185":-1,"23186":-1,"23187":-1,"23188":-1,"23189":4067,"23190":0,"23191":-1,"23192":-1,"23193":-1,"23194":-1,"23195":-1,"23196":0,"23197":-1,"23198":-1,"23199":-1,"23200":-1,"23201":-1,"23202":4067,"23203":-1,"23204":-1,"23205":-1,"23206":-1,"23207":-1,"23208":4064,"23209":-1,"23210":-1,"23211":-1,"23212":-1,"23213":-1,"23214":-1,"23215":4065,"23216":4066,"23217":-1,"23218":-1,"23219":-1,"23220":-1,"23221":-1,"23222":-1,"23223":4065,"23224":-1,"23225":4066,"23226":-1,"23227":-1,"23228":-1,"23229":-1,"23230":-1,"23231":-1,"23232":-1,"23233":4066,"23234":4065,"23235":-1,"23236":4068,"23237":-1,"23238":-1,"23239":-1,"23240":-1,"23241":-1,"23242":-1,"23243":-1,"23244":-1,"23245":-1,"23246":-1,"23247":-1,"23248":-1,"23249":-1,"23250":-1,"23251":-1,"23252":-1,"23253":-1,"23254":-1,"23255":-1,"23256":-1,"23257":-1,"23258":-1,"23259":-1,"23260":0,"23261":-1,"23262":-1,"23263":-1,"23264":4067,"23265":-1,"23266":-1,"23267":-1,"23268":-1,"23269":-1,"23270":-1,"23271":4067,"23272":-1,"23273":-1,"23274":-1,"23275":-1,"23276":-1,"23277":-1,"23278":-1,"23279":-1,"23280":-1,"23281":-1,"23282":-1,"23283":-1,"23284":0,"23285":-1,"23286":-1,"23287":-1,"23288":-1,"23289":-1,"23290":-1,"23291":0,"23292":-1,"23293":-1,"23294":-1,"23295":-1,"23296":-1,"23297":-1,"23298":4066,"23299":-1,"23300":-1,"23301":-1,"23302":-1,"23303":-1,"23304":0,"23305":-1,"23306":-1,"23307":-1,"23308":-1,"23309":-1,"23310":-1,"23311":-1,"23312":-1,"23313":-1,"23314":-1,"23315":-1,"23316":4067,"23317":0,"23318":0,"23319":-1,"23320":-1,"23321":-1,"23322":-1,"23323":4065,"23324":-1,"23325":-1,"23326":4063,"23327":-1,"23328":-1,"23329":-1,"23330":-1,"23331":4063,"23332":-1,"23333":-1,"23334":-1,"23335":4067,"23336":-1,"23337":-1,"23338":-1,"23339":4065,"23340":-1,"23341":-1,"23342":-1,"23343":-1,"23344":4067,"23345":-1,"23346":-1,"23347":4066,"23348":-1,"23349":-1,"23350":-1,"23351":0,"23352":-1,"23353":-1,"23354":4065,"23355":-1,"23356":-1,"23357":-1,"23358":-1,"23359":-1,"23360":4067,"23361":-1,"23362":4065,"23363":-1,"23364":-1,"23365":-1,"23366":-1,"23367":-1,"23368":-1,"23369":4067,"23370":-1,"23371":-1,"23372":4065,"23373":-1,"23374":-1,"23375":-1,"23376":-1,"23377":-1,"23378":-1,"23379":-1,"23380":-1,"23381":-1,"23382":-1,"23383":-1,"23384":4068,"23385":-1,"23386":-1,"23387":4063,"23388":-1,"23389":-1,"23390":-1,"23391":-1,"23392":-1,"23393":-1,"23394":-1,"23395":4067,"23396":-1,"23397":-1,"23398":-1,"23399":-1,"23400":4067,"23401":-1,"23402":4063,"23403":-1,"23404":-1,"23405":-1,"23406":-1,"23407":-1,"23408":4066,"23409":-1,"23410":-1,"23411":-1,"23412":4068,"23413":-1,"23414":-1,"23415":-1,"23416":-1,"23417":-1,"23418":-1,"23419":0,"23420":-1,"23421":-1,"23422":-1,"23423":4066,"23424":-1,"23425":-1,"23426":-1,"23427":-1,"23428":-1,"23429":-1,"23430":-1,"23431":-1,"23432":-1,"23433":-1,"23434":-1,"23435":4066,"23436":-1,"23437":-1,"23438":-1,"23439":-1,"23440":-1,"23441":4064,"23442":-1,"23443":-1,"23444":-1,"23445":-1,"23446":-1,"23447":0,"23448":4065,"23449":-1,"23450":-1,"23451":-1,"23452":-1,"23453":4068,"23454":-1,"23455":-1,"23456":-1,"23457":-1,"23458":4064,"23459":-1,"23460":4066,"23461":-1,"23462":-1,"23463":-1,"23464":-1,"23465":-1,"23466":-1,"23467":4064,"23468":-1,"23469":-1,"23470":4064,"23471":-1,"23472":-1,"23473":-1,"23474":-1,"23475":-1,"23476":-1,"23477":-1,"23478":-1,"23479":-1,"23480":-1,"23481":-1,"23482":-1,"23483":-1,"23484":4064,"23485":-1,"23486":-1,"23487":-1,"23488":-1,"23489":-1,"23490":4067,"23491":-1,"23492":-1,"23493":4066,"23494":-1,"23495":-1,"23496":-1,"23497":-1,"23498":-1,"23499":-1,"23500":-1,"23501":-1,"23502":-1,"23503":-1,"23504":-1,"23505":-1,"23506":-1,"23507":-1,"23508":-1,"23509":0,"23510":-1,"23511":4065,"23512":4064,"23513":-1,"23514":-1,"23515":4065,"23516":4063,"23517":-1,"23518":-1,"23519":-1,"23520":0,"23521":-1,"23522":-1,"23523":-1,"23524":-1,"23525":-1,"23526":-1,"23527":4066,"23528":-1,"23529":-1,"23530":-1,"23531":0,"23532":-1,"23533":-1,"23534":-1,"23535":-1,"23536":-1,"23537":-1,"23538":-1,"23539":-1,"23540":-1,"23541":4068,"23542":-1,"23543":-1,"23544":-1,"23545":-1,"23546":-1,"23547":-1,"23548":-1,"23549":4067,"23550":-1,"23551":-1,"23552":-1,"23553":-1,"23554":-1,"23555":-1,"23556":-1,"23557":-1,"23558":-1,"23559":-1,"23560":-1,"23561":-1,"23562":-1,"23563":-1,"23564":4066,"23565":-1,"23566":-1,"23567":-1,"23568":4067,"23569":4067,"23570":-1,"23571":-1,"23572":-1,"23573":-1,"23574":-1,"23575":0,"23576":-1,"23577":-1,"23578":-1,"23579":-1,"23580":-1,"23581":-1,"23582":-1,"23583":-1,"23584":-1,"23585":-1,"23586":-1,"23587":4067,"23588":-1,"23589":4064,"23590":-1,"23591":-1,"23592":-1,"23593":-1,"23594":-1,"23595":-1,"23596":-1,"23597":-1,"23598":-1,"23599":-1,"23600":-1,"23601":-1,"23602":-1,"23603":-1,"23604":-1,"23605":-1,"23606":-1,"23607":-1,"23608":-1,"23609":-1,"23610":-1,"23611":0,"23612":-1,"23613":-1,"23614":-1,"23615":-1,"23616":-1,"23617":-1,"23618":4068,"23619":-1,"23620":-1,"23621":-1,"23622":-1,"23623":-1,"23624":-1,"23625":-1,"23626":4066,"23627":-1,"23628":-1,"23629":-1,"23630":-1,"23631":-1,"23632":-1,"23633":-1,"23634":4067,"23635":-1,"23636":-1,"23637":-1,"23638":-1,"23639":-1,"23640":-1,"23641":-1,"23642":4066,"23643":-1,"23644":-1,"23645":-1,"23646":-1,"23647":-1,"23648":-1,"23649":-1,"23650":-1,"23651":-1,"23652":-1,"23653":-1,"23654":-1,"23655":-1,"23656":-1,"23657":-1,"23658":-1,"23659":4067,"23660":-1,"23661":-1,"23662":-1,"23663":-1,"23664":-1,"23665":-1,"23666":-1,"23667":-1,"23668":-1,"23669":-1,"23670":-1,"23671":-1,"23672":-1,"23673":-1,"23674":-1,"23675":-1,"23676":4066,"23677":4065,"23678":-1,"23679":-1,"23680":4065,"23681":-1,"23682":-1,"23683":-1,"23684":-1,"23685":-1,"23686":4065,"23687":-1,"23688":-1,"23689":-1,"23690":-1,"23691":-1,"23692":-1,"23693":-1,"23694":-1,"23695":-1,"23696":4068,"23697":-1,"23698":-1,"23699":-1,"23700":-1,"23701":-1,"23702":-1,"23703":-1,"23704":-1,"23705":4063,"23706":-1,"23707":-1,"23708":-1,"23709":4065,"23710":-1,"23711":0,"23712":-1,"23713":-1,"23714":-1,"23715":-1,"23716":-1,"23717":-1,"23718":-1,"23719":-1,"23720":-1,"23721":-1,"23722":-1,"23723":-1,"23724":-1,"23725":-1,"23726":-1,"23727":-1,"23728":-1,"23729":-1,"23730":-1,"23731":-1,"23732":0,"23733":-1,"23734":-1,"23735":-1,"23736":-1,"23737":-1,"23738":-1,"23739":-1,"23740":-1,"23741":-1,"23742":-1,"23743":-1,"23744":-1,"23745":4067,"23746":4067,"23747":-1,"23748":4067,"23749":-1,"23750":-1,"23751":-1,"23752":-1,"23753":4067,"23754":-1,"23755":-1,"23756":-1,"23757":-1,"23758":-1,"23759":-1,"23760":-1,"23761":-1,"23762":-1,"23763":-1,"23764":-1,"23765":-1,"23766":-1,"23767":-1,"23768":-1,"23769":-1,"23770":-1,"23771":-1,"23772":-1,"23773":-1,"23774":-1,"23775":-1,"23776":-1,"23777":-1,"23778":4064,"23779":-1,"23780":-1,"23781":-1,"23782":-1,"23783":-1,"23784":-1,"23785":-1,"23786":-1,"23787":-1,"23788":-1,"23789":4065,"23790":-1,"23791":4066,"23792":-1,"23793":-1,"23794":4066,"23795":-1,"23796":-1,"23797":4067,"23798":4065,"23799":-1,"23800":-1,"23801":-1,"23802":-1,"23803":-1,"23804":-1,"23805":-1,"23806":-1,"23807":4066,"23808":-1,"23809":-1,"23810":0,"23811":-1,"23812":-1,"23813":-1,"23814":-1,"23815":-1,"23816":-1,"23817":4066,"23818":-1,"23819":-1,"23820":-1,"23821":4065,"23822":-1,"23823":4067,"23824":-1,"23825":-1,"23826":-1,"23827":-1,"23828":4067,"23829":-1,"23830":-1,"23831":4065,"23832":-1,"23833":-1,"23834":-1,"23835":-1,"23836":-1,"23837":-1,"23838":-1,"23839":-1,"23840":-1,"23841":-1,"23842":-1,"23843":-1,"23844":-1,"23845":-1,"23846":-1,"23847":-1,"23848":-1,"23849":-1,"23850":4067,"23851":4064,"23852":-1,"23853":-1,"23854":-1,"23855":-1,"23856":-1,"23857":-1,"23858":-1,"23859":-1,"23860":4066,"23861":-1,"23862":-1,"23863":-1,"23864":-1,"23865":-1,"23866":-1,"23867":-1,"23868":-1,"23869":-1,"23870":-1,"23871":-1,"23872":-1,"23873":-1,"23874":-1,"23875":-1,"23876":4066,"23877":-1,"23878":-1,"23879":-1,"23880":-1,"23881":-1,"23882":-1,"23883":-1,"23884":4066,"23885":-1,"23886":4065,"23887":-1,"23888":-1,"23889":4064,"23890":-1,"23891":-1,"23892":-1,"23893":-1,"23894":-1,"23895":-1,"23896":-1,"23897":-1,"23898":-1,"23899":-1,"23900":-1,"23901":-1,"23902":-1,"23903":0,"23904":-1,"23905":-1,"23906":-1,"23907":-1,"23908":-1,"23909":4063,"23910":-1,"23911":-1,"23912":-1,"23913":-1,"23914":-1,"23915":-1,"23916":-1,"23917":-1,"23918":-1,"23919":4065,"23920":4064,"23921":-1,"23922":4067,"23923":-1,"23924":-1,"23925":-1,"23926":-1,"23927":-1,"23928":-1,"23929":-1,"23930":-1,"23931":-1,"23932":-1,"23933":-1,"23934":-1,"23935":-1,"23936":-1,"23937":-1,"23938":-1,"23939":-1,"23940":-1,"23941":-1,"23942":-1,"23943":-1,"23944":-1,"23945":-1,"23946":4066,"23947":-1,"23948":-1,"23949":-1,"23950":4067,"23951":4065,"23952":-1,"23953":-1,"23954":-1,"23955":-1,"23956":-1,"23957":-1,"23958":-1,"23959":-1,"23960":-1,"23961":-1,"23962":-1,"23963":-1,"23964":-1,"23965":-1,"23966":4066,"23967":0,"23968":-1,"23969":-1,"23970":-1,"23971":-1,"23972":-1,"23973":-1,"23974":-1,"23975":-1,"23976":0,"23977":-1,"23978":-1,"23979":-1,"23980":-1,"23981":-1,"23982":-1,"23983":-1,"23984":-1,"23985":-1,"23986":-1,"23987":-1,"23988":-1,"23989":-1,"23990":-1,"23991":-1,"23992":-1,"23993":-1,"23994":-1,"23995":-1,"23996":-1,"23997":4066,"23998":0,"23999":-1,"24000":-1,"24001":-1,"24002":-1,"24003":-1,"24004":-1,"24005":4068,"24006":-1,"24007":-1,"24008":-1,"24009":-1,"24010":-1,"24011":4064,"24012":4066,"24013":-1,"24014":-1,"24015":0,"24016":-1,"24017":-1,"24018":-1,"24019":4066,"24020":-1,"24021":-1,"24022":-1,"24023":-1,"24024":-1,"24025":-1,"24026":-1,"24027":-1,"24028":-1,"24029":-1,"24030":-1,"24031":-1,"24032":-1,"24033":-1,"24034":-1,"24035":-1,"24036":-1,"24037":-1,"24038":-1,"24039":-1,"24040":-1,"24041":-1,"24042":-1,"24043":-1,"24044":-1,"24045":-1,"24046":4068,"24047":-1,"24048":-1,"24049":-1,"24050":-1,"24051":-1,"24052":-1,"24053":-1,"24054":-1,"24055":-1,"24056":-1,"24057":-1,"24058":-1,"24059":-1,"24060":-1,"24061":-1,"24062":-1,"24063":4066,"24064":4065,"24065":-1,"24066":-1,"24067":-1,"24068":-1,"24069":-1,"24070":-1,"24071":-1,"24072":-1,"24073":-1,"24074":-1,"24075":-1,"24076":-1,"24077":-1,"24078":-1,"24079":-1,"24080":4064,"24081":-1,"24082":-1,"24083":-1,"24084":-1,"24085":-1,"24086":-1,"24087":-1,"24088":4068,"24089":-1,"24090":-1,"24091":-1,"24092":-1,"24093":-1,"24094":-1,"24095":4068,"24096":-1,"24097":-1,"24098":-1,"24099":-1,"24100":-1,"24101":0,"24102":-1,"24103":-1,"24104":-1,"24105":-1,"24106":-1,"24107":-1,"24108":-1,"24109":-1,"24110":-1,"24111":-1,"24112":-1,"24113":-1,"24114":-1,"24115":-1,"24116":-1,"24117":-1,"24118":-1,"24119":-1,"24120":-1,"24121":-1,"24122":-1,"24123":-1,"24124":-1,"24125":4066,"24126":-1,"24127":-1,"24128":-1,"24129":-1,"24130":4065,"24131":4067,"24132":4067,"24133":-1,"24134":-1,"24135":-1,"24136":-1,"24137":-1,"24138":-1,"24139":0,"24140":-1,"24141":4063,"24142":4068,"24143":-1,"24144":-1,"24145":4067,"24146":4065,"24147":-1,"24148":-1,"24149":-1,"24150":-1,"24151":-1,"24152":-1,"24153":4067,"24154":4064,"24155":-1,"24156":-1,"24157":0,"24158":0,"24159":-1,"24160":4067,"24161":-1,"24162":-1,"24163":-1,"24164":-1,"24165":-1,"24166":0,"24167":-1,"24168":-1,"24169":0,"24170":-1,"24171":-1,"24172":-1,"24173":-1,"24174":-1,"24175":4066,"24176":-1,"24177":-1,"24178":-1,"24179":-1,"24180":-1,"24181":0,"24182":-1,"24183":-1,"24184":4067,"24185":-1,"24186":-1,"24187":-1,"24188":-1,"24189":-1,"24190":-1,"24191":-1,"24192":-1,"24193":-1,"24194":-1,"24195":-1,"24196":-1,"24197":-1,"24198":-1,"24199":-1,"24200":4064,"24201":-1,"24202":-1,"24203":-1,"24204":-1,"24205":-1,"24206":4063,"24207":-1,"24208":-1,"24209":-1,"24210":-1,"24211":-1,"24212":-1,"24213":4063,"24214":-1,"24215":-1,"24216":-1,"24217":-1,"24218":-1,"24219":-1,"24220":-1,"24221":-1,"24222":-1,"24223":-1,"24224":-1,"24225":-1,"24226":-1,"24227":-1,"24228":-1,"24229":-1,"24230":-1,"24231":-1,"24232":-1,"24233":4064,"24234":-1,"24235":-1,"24236":-1,"24237":-1,"24238":-1,"24239":-1,"24240":-1,"24241":-1,"24242":-1,"24243":4068,"24244":-1,"24245":-1,"24246":4068,"24247":4067,"24248":4067,"24249":4063,"24250":-1,"24251":-1,"24252":-1,"24253":-1,"24254":-1,"24255":-1,"24256":-1,"24257":-1,"24258":-1,"24259":4066,"24260":-1,"24261":4068,"24262":4066,"24263":-1,"24264":-1,"24265":-1,"24266":-1,"24267":-1,"24268":-1,"24269":4066,"24270":-1,"24271":-1,"24272":-1,"24273":-1,"24274":4064,"24275":-1,"24276":-1,"24277":-1,"24278":-1,"24279":-1,"24280":-1,"24281":-1,"24282":-1,"24283":4066,"24284":4067,"24285":-1,"24286":-1,"24287":-1,"24288":-1,"24289":-1,"24290":-1,"24291":-1,"24292":-1,"24293":-1,"24294":-1,"24295":-1,"24296":4064,"24297":-1,"24298":-1,"24299":-1,"24300":-1,"24301":0,"24302":-1,"24303":-1,"24304":4067,"24305":-1,"24306":-1,"24307":-1,"24308":4064,"24309":-1,"24310":-1,"24311":-1,"24312":-1,"24313":-1,"24314":-1,"24315":4065,"24316":-1,"24317":-1,"24318":-1,"24319":-1,"24320":-1,"24321":-1,"24322":4066,"24323":-1,"24324":-1,"24325":4064,"24326":-1,"24327":-1,"24328":-1,"24329":-1,"24330":-1,"24331":-1,"24332":-1,"24333":-1,"24334":-1,"24335":-1,"24336":-1,"24337":-1,"24338":-1,"24339":-1,"24340":-1,"24341":-1,"24342":4063,"24343":-1,"24344":-1,"24345":-1,"24346":4065,"24347":-1,"24348":-1,"24349":-1,"24350":-1,"24351":-1,"24352":-1,"24353":-1,"24354":-1,"24355":-1,"24356":-1,"24357":-1,"24358":-1,"24359":-1,"24360":-1,"24361":-1,"24362":-1,"24363":-1,"24364":4064,"24365":-1,"24366":-1,"24367":-1,"24368":4066,"24369":-1,"24370":-1,"24371":-1,"24372":-1,"24373":-1,"24374":4067,"24375":-1,"24376":-1,"24377":-1,"24378":-1,"24379":-1,"24380":-1,"24381":-1,"24382":-1,"24383":-1,"24384":-1,"24385":-1,"24386":-1,"24387":-1,"24388":-1,"24389":-1,"24390":-1,"24391":-1,"24392":-1,"24393":-1,"24394":4064,"24395":-1,"24396":-1,"24397":4066,"24398":-1,"24399":-1,"24400":-1,"24401":-1,"24402":4067,"24403":-1,"24404":-1,"24405":-1,"24406":0,"24407":-1,"24408":-1,"24409":-1,"24410":-1,"24411":-1,"24412":-1,"24413":-1,"24414":0,"24415":-1,"24416":4065,"24417":-1,"24418":-1,"24419":-1,"24420":-1,"24421":-1,"24422":-1,"24423":-1,"24424":-1,"24425":-1,"24426":-1,"24427":-1,"24428":-1,"24429":4063,"24430":-1,"24431":4063,"24432":-1,"24433":-1,"24434":-1,"24435":-1,"24436":-1,"24437":-1,"24438":-1,"24439":-1,"24440":-1,"24441":-1,"24442":-1,"24443":-1,"24444":-1,"24445":-1,"24446":-1,"24447":-1,"24448":-1,"24449":4063,"24450":-1,"24451":-1,"24452":-1,"24453":-1,"24454":4068,"24455":-1,"24456":-1,"24457":-1,"24458":-1,"24459":4064,"24460":-1,"24461":-1,"24462":-1,"24463":-1,"24464":0,"24465":-1,"24466":-1,"24467":-1,"24468":4067,"24469":4064,"24470":-1,"24471":-1,"24472":-1,"24473":-1,"24474":-1,"24475":-1,"24476":-1,"24477":-1,"24478":-1,"24479":4065,"24480":-1,"24481":4067,"24482":-1,"24483":-1,"24484":-1,"24485":-1,"24486":-1,"24487":-1,"24488":-1,"24489":-1,"24490":4064,"24491":-1,"24492":4066,"24493":4066,"24494":-1,"24495":-1,"24496":-1,"24497":-1,"24498":-1,"24499":-1,"24500":0,"24501":-1,"24502":-1,"24503":-1,"24504":4065,"24505":-1,"24506":-1,"24507":-1,"24508":4066,"24509":-1,"24510":-1,"24511":-1,"24512":-1,"24513":-1,"24514":-1,"24515":-1,"24516":-1,"24517":-1,"24518":4067,"24519":-1,"24520":-1,"24521":-1,"24522":-1,"24523":-1,"24524":-1,"24525":-1,"24526":-1,"24527":-1,"24528":4067,"24529":-1,"24530":4064,"24531":-1,"24532":-1,"24533":-1,"24534":-1,"24535":-1,"24536":-1,"24537":-1,"24538":-1,"24539":4064,"24540":-1,"24541":-1,"24542":-1,"24543":-1,"24544":-1,"24545":-1,"24546":-1,"24547":-1,"24548":-1,"24549":-1,"24550":-1,"24551":-1,"24552":-1,"24553":4065,"24554":4067,"24555":-1,"24556":4065,"24557":-1,"24558":-1,"24559":-1,"24560":-1,"24561":-1,"24562":-1,"24563":0,"24564":-1,"24565":-1,"24566":-1,"24567":-1,"24568":-1,"24569":-1,"24570":4064,"24571":-1,"24572":4066,"24573":-1,"24574":-1,"24575":-1,"24576":-1,"24577":-1,"24578":-1,"24579":-1,"24580":4068,"24581":-1,"24582":-1,"24583":-1,"24584":-1,"24585":-1,"24586":-1,"24587":-1,"24588":4065,"24589":-1,"24590":-1,"24591":4068,"24592":-1,"24593":-1,"24594":-1,"24595":-1,"24596":-1,"24597":-1,"24598":4067,"24599":-1,"24600":-1,"24601":4068,"24602":4067,"24603":-1,"24604":-1,"24605":-1,"24606":-1,"24607":-1,"24608":-1,"24609":-1,"24610":-1,"24611":-1,"24612":4067,"24613":-1,"24614":-1,"24615":-1,"24616":-1,"24617":-1,"24618":-1,"24619":-1,"24620":-1,"24621":-1,"24622":-1,"24623":-1,"24624":-1,"24625":-1,"24626":4065,"24627":-1,"24628":-1,"24629":-1,"24630":-1,"24631":-1,"24632":-1,"24633":4066,"24634":-1,"24635":-1,"24636":-1,"24637":-1,"24638":-1,"24639":-1,"24640":-1,"24641":-1,"24642":-1,"24643":-1,"24644":-1,"24645":-1,"24646":-1,"24647":-1,"24648":-1,"24649":-1,"24650":-1,"24651":-1,"24652":-1,"24653":-1,"24654":-1,"24655":-1,"24656":-1,"24657":-1,"24658":-1,"24659":-1,"24660":-1,"24661":-1,"24662":-1,"24663":0,"24664":-1,"24665":-1,"24666":-1,"24667":-1,"24668":-1,"24669":-1,"24670":-1,"24671":-1,"24672":-1,"24673":4068,"24674":-1,"24675":-1,"24676":-1,"24677":-1,"24678":0,"24679":-1,"24680":-1,"24681":-1,"24682":-1,"24683":-1,"24684":4066,"24685":-1,"24686":-1,"24687":-1,"24688":-1,"24689":-1,"24690":-1,"24691":-1,"24692":-1,"24693":-1,"24694":0,"24695":-1,"24696":4067,"24697":-1,"24698":-1,"24699":-1,"24700":-1,"24701":-1,"24702":-1,"24703":-1,"24704":4067,"24705":-1,"24706":-1,"24707":-1,"24708":-1,"24709":4067,"24710":-1,"24711":-1,"24712":0,"24713":-1,"24714":-1,"24715":-1,"24716":-1,"24717":-1,"24718":-1,"24719":-1,"24720":-1,"24721":-1,"24722":-1,"24723":-1,"24724":-1,"24725":4064,"24726":-1,"24727":-1,"24728":4067,"24729":-1,"24730":-1,"24731":-1,"24732":-1,"24733":-1,"24734":-1,"24735":-1,"24736":-1,"24737":-1,"24738":-1,"24739":-1,"24740":-1,"24741":-1,"24742":-1,"24743":-1,"24744":-1,"24745":-1,"24746":-1,"24747":-1,"24748":-1,"24749":-1,"24750":-1,"24751":-1,"24752":-1,"24753":-1,"24754":-1,"24755":-1,"24756":-1,"24757":-1,"24758":-1,"24759":-1,"24760":-1,"24761":4064,"24762":-1,"24763":4065,"24764":-1,"24765":-1,"24766":-1,"24767":-1,"24768":-1,"24769":-1,"24770":-1,"24771":-1,"24772":-1,"24773":4065,"24774":-1,"24775":-1,"24776":-1,"24777":-1,"24778":-1,"24779":-1,"24780":-1,"24781":-1,"24782":4067,"24783":-1,"24784":-1,"24785":-1,"24786":-1,"24787":-1,"24788":-1,"24789":-1,"24790":4063,"24791":-1,"24792":-1,"24793":-1,"24794":-1,"24795":-1,"24796":-1,"24797":-1,"24798":-1,"24799":-1,"24800":4067,"24801":-1,"24802":-1,"24803":-1,"24804":-1,"24805":-1,"24806":-1,"24807":-1,"24808":-1,"24809":-1,"24810":-1,"24811":-1,"24812":-1,"24813":-1,"24814":-1,"24815":4066,"24816":-1,"24817":-1,"24818":-1,"24819":-1,"24820":-1,"24821":-1,"24822":-1,"24823":-1,"24824":-1,"24825":4068,"24826":-1,"24827":-1,"24828":-1,"24829":-1,"24830":-1,"24831":-1,"24832":-1,"24833":-1,"24834":0,"24835":-1,"24836":-1,"24837":-1,"24838":-1,"24839":0,"24840":-1,"24841":-1,"24842":-1,"24843":-1,"24844":-1,"24845":-1,"24846":-1,"24847":-1,"24848":-1,"24849":-1,"24850":-1,"24851":4066,"24852":-1,"24853":-1,"24854":4064,"24855":-1,"24856":0,"24857":-1,"24858":-1,"24859":-1,"24860":-1,"24861":-1,"24862":-1,"24863":-1,"24864":-1,"24865":-1,"24866":-1,"24867":-1,"24868":-1,"24869":-1,"24870":-1,"24871":-1,"24872":4065,"24873":-1,"24874":-1,"24875":-1,"24876":4064,"24877":-1,"24878":-1,"24879":-1,"24880":-1,"24881":-1,"24882":-1,"24883":-1,"24884":-1,"24885":-1,"24886":-1,"24887":-1,"24888":-1,"24889":-1,"24890":-1,"24891":-1,"24892":-1,"24893":-1,"24894":-1,"24895":-1,"24896":-1,"24897":-1,"24898":-1,"24899":-1,"24900":-1,"24901":-1,"24902":-1,"24903":-1,"24904":-1,"24905":-1,"24906":-1,"24907":-1,"24908":-1,"24909":-1,"24910":-1,"24911":-1,"24912":-1,"24913":-1,"24914":-1,"24915":-1,"24916":-1,"24917":-1,"24918":-1,"24919":4067,"24920":-1,"24921":-1,"24922":-1,"24923":-1,"24924":-1,"24925":-1,"24926":0,"24927":4065,"24928":4066,"24929":-1,"24930":-1,"24931":-1,"24932":-1,"24933":-1,"24934":-1,"24935":-1,"24936":-1,"24937":-1,"24938":-1,"24939":4064,"24940":-1,"24941":-1,"24942":-1,"24943":0,"24944":-1,"24945":-1,"24946":-1,"24947":-1,"24948":-1,"24949":-1,"24950":-1,"24951":-1,"24952":-1,"24953":-1,"24954":-1,"24955":-1,"24956":-1,"24957":-1,"24958":-1,"24959":-1,"24960":4064,"24961":-1,"24962":-1,"24963":-1,"24964":-1,"24965":-1,"24966":-1,"24967":-1,"24968":4068,"24969":-1,"24970":-1,"24971":-1,"24972":-1,"24973":-1,"24974":-1,"24975":-1,"24976":-1,"24977":-1,"24978":-1,"24979":-1,"24980":-1,"24981":0,"24982":4067,"24983":0,"24984":-1,"24985":-1,"24986":-1,"24987":-1,"24988":-1,"24989":-1,"24990":-1,"24991":-1,"24992":-1,"24993":-1,"24994":4065,"24995":-1,"24996":0,"24997":-1,"24998":-1,"24999":4066,"25000":-1,"25001":-1,"25002":-1,"25003":-1,"25004":-1,"25005":-1,"25006":4064,"25007":-1,"25008":-1,"25009":-1,"25010":-1,"25011":-1,"25012":-1,"25013":4065,"25014":-1,"25015":-1,"25016":-1,"25017":4067,"25018":-1,"25019":-1,"25020":4067,"25021":-1,"25022":-1,"25023":4063,"25024":-1,"25025":-1,"25026":-1,"25027":-1,"25028":-1,"25029":-1,"25030":-1,"25031":-1,"25032":-1,"25033":-1,"25034":-1,"25035":-1,"25036":4066,"25037":-1,"25038":4063,"25039":-1,"25040":-1,"25041":-1,"25042":4064,"25043":-1,"25044":-1,"25045":-1,"25046":-1,"25047":-1,"25048":-1,"25049":4067,"25050":-1,"25051":-1,"25052":-1,"25053":-1,"25054":4067,"25055":-1,"25056":-1,"25057":4063,"25058":4065,"25059":-1,"25060":-1,"25061":4066,"25062":-1,"25063":-1,"25064":-1,"25065":4064,"25066":4067,"25067":4064,"25068":-1,"25069":-1,"25070":-1,"25071":-1,"25072":-1,"25073":-1,"25074":-1,"25075":-1,"25076":-1,"25077":0,"25078":-1,"25079":-1,"25080":-1,"25081":-1,"25082":-1,"25083":-1,"25084":-1,"25085":-1,"25086":-1,"25087":4065,"25088":-1,"25089":-1,"25090":-1,"25091":0,"25092":-1,"25093":-1,"25094":4066,"25095":-1,"25096":4067,"25097":-1,"25098":4067,"25099":-1,"25100":-1,"25101":-1,"25102":-1,"25103":-1,"25104":-1,"25105":-1,"25106":-1,"25107":-1,"25108":-1,"25109":4064,"25110":-1,"25111":-1,"25112":-1,"25113":-1,"25114":-1,"25115":-1,"25116":-1,"25117":-1,"25118":-1,"25119":-1,"25120":-1,"25121":4068,"25122":4068,"25123":-1,"25124":-1,"25125":-1,"25126":-1,"25127":4066,"25128":-1,"25129":-1,"25130":-1,"25131":-1,"25132":-1,"25133":-1,"25134":-1,"25135":-1,"25136":-1,"25137":-1,"25138":0,"25139":-1,"25140":-1,"25141":-1,"25142":-1,"25143":4065,"25144":-1,"25145":-1,"25146":-1,"25147":-1,"25148":-1,"25149":-1,"25150":4067,"25151":-1,"25152":-1,"25153":-1,"25154":-1,"25155":4063,"25156":-1,"25157":-1,"25158":4066,"25159":-1,"25160":-1,"25161":-1,"25162":-1,"25163":0,"25164":-1,"25165":-1,"25166":-1,"25167":-1,"25168":-1,"25169":-1,"25170":-1,"25171":-1,"25172":0,"25173":-1,"25174":-1,"25175":0,"25176":-1,"25177":-1,"25178":-1,"25179":-1,"25180":-1,"25181":4067,"25182":-1,"25183":-1,"25184":-1,"25185":-1,"25186":0,"25187":-1,"25188":-1,"25189":-1,"25190":-1,"25191":-1,"25192":-1,"25193":4066,"25194":-1,"25195":-1,"25196":-1,"25197":-1,"25198":-1,"25199":-1,"25200":4066,"25201":-1,"25202":-1,"25203":-1,"25204":-1,"25205":-1,"25206":4065,"25207":-1,"25208":-1,"25209":-1,"25210":4065,"25211":-1,"25212":4066,"25213":-1,"25214":-1,"25215":-1,"25216":-1,"25217":-1,"25218":-1,"25219":-1,"25220":-1,"25221":-1,"25222":-1,"25223":-1,"25224":-1,"25225":4064,"25226":4067,"25227":4065,"25228":-1,"25229":-1,"25230":-1,"25231":-1,"25232":-1,"25233":-1,"25234":-1,"25235":4066,"25236":-1,"25237":-1,"25238":0,"25239":-1,"25240":-1,"25241":-1,"25242":4067,"25243":-1,"25244":4063,"25245":-1,"25246":-1,"25247":0,"25248":-1,"25249":-1,"25250":-1,"25251":-1,"25252":-1,"25253":4067,"25254":-1,"25255":-1,"25256":-1,"25257":-1,"25258":-1,"25259":-1,"25260":-1,"25261":-1,"25262":-1,"25263":-1,"25264":-1,"25265":-1,"25266":-1,"25267":4068,"25268":-1,"25269":-1,"25270":-1,"25271":-1,"25272":-1,"25273":4067,"25274":-1,"25275":-1,"25276":-1,"25277":-1,"25278":-1,"25279":-1,"25280":-1,"25281":-1,"25282":4064,"25283":4064,"25284":-1,"25285":-1,"25286":4067,"25287":-1,"25288":-1,"25289":-1,"25290":-1,"25291":-1,"25292":-1,"25293":-1,"25294":-1,"25295":4066,"25296":-1,"25297":0,"25298":-1,"25299":-1,"25300":-1,"25301":-1,"25302":4067,"25303":-1,"25304":-1,"25305":-1,"25306":-1,"25307":-1,"25308":-1,"25309":-1,"25310":-1,"25311":-1,"25312":-1,"25313":-1,"25314":-1,"25315":-1,"25316":-1,"25317":4065,"25318":-1,"25319":-1,"25320":4064,"25321":-1,"25322":-1,"25323":-1,"25324":-1,"25325":4063,"25326":-1,"25327":-1,"25328":-1,"25329":-1,"25330":0,"25331":-1,"25332":-1,"25333":0,"25334":-1,"25335":4067,"25336":-1,"25337":-1,"25338":-1,"25339":-1,"25340":-1,"25341":4068,"25342":-1,"25343":-1,"25344":-1,"25345":4066,"25346":-1,"25347":-1,"25348":-1,"25349":-1,"25350":-1,"25351":-1,"25352":-1,"25353":-1,"25354":-1,"25355":-1,"25356":-1,"25357":-1,"25358":-1,"25359":0,"25360":-1,"25361":0,"25362":4066,"25363":-1,"25364":-1,"25365":-1,"25366":-1,"25367":-1,"25368":4065,"25369":-1,"25370":-1,"25371":-1,"25372":-1,"25373":-1,"25374":-1,"25375":4064,"25376":-1,"25377":0,"25378":4067,"25379":-1,"25380":-1,"25381":-1,"25382":-1,"25383":-1,"25384":-1,"25385":-1,"25386":-1,"25387":-1,"25388":-1,"25389":4064,"25390":-1,"25391":-1,"25392":-1,"25393":-1,"25394":-1,"25395":-1,"25396":-1,"25397":-1,"25398":-1,"25399":-1,"25400":-1,"25401":-1,"25402":-1,"25403":-1,"25404":4067,"25405":-1,"25406":4068,"25407":-1,"25408":0,"25409":-1,"25410":-1,"25411":4068,"25412":-1,"25413":-1,"25414":-1,"25415":4065,"25416":-1,"25417":-1,"25418":-1,"25419":-1,"25420":-1,"25421":-1,"25422":4067,"25423":-1,"25424":4065,"25425":-1,"25426":-1,"25427":-1,"25428":-1,"25429":-1,"25430":4065,"25431":-1,"25432":-1,"25433":-1,"25434":-1,"25435":-1,"25436":-1,"25437":-1,"25438":-1,"25439":-1,"25440":-1,"25441":-1,"25442":-1,"25443":4067,"25444":4067,"25445":-1,"25446":-1,"25447":-1,"25448":-1,"25449":4066,"25450":-1,"25451":-1,"25452":-1,"25453":-1,"25454":-1,"25455":-1,"25456":-1,"25457":-1,"25458":-1,"25459":-1,"25460":-1,"25461":-1,"25462":-1,"25463":-1,"25464":-1,"25465":-1,"25466":-1,"25467":-1,"25468":-1,"25469":-1,"25470":-1,"25471":4064,"25472":-1,"25473":-1,"25474":4064,"25475":-1,"25476":-1,"25477":-1,"25478":-1,"25479":0,"25480":-1,"25481":-1,"25482":-1,"25483":-1,"25484":-1,"25485":4065,"25486":4067,"25487":-1,"25488":-1,"25489":4065,"25490":-1,"25491":-1,"25492":-1,"25493":-1,"25494":-1,"25495":-1,"25496":-1,"25497":4065,"25498":-1,"25499":-1,"25500":-1,"25501":4068,"25502":-1,"25503":-1,"25504":-1,"25505":-1,"25506":-1,"25507":-1,"25508":-1,"25509":-1,"25510":-1,"25511":-1,"25512":-1,"25513":-1,"25514":0,"25515":4068,"25516":-1,"25517":0,"25518":-1,"25519":-1,"25520":-1,"25521":-1,"25522":-1,"25523":-1,"25524":-1,"25525":-1,"25526":-1,"25527":-1,"25528":-1,"25529":-1,"25530":-1,"25531":4065,"25532":-1,"25533":-1,"25534":-1,"25535":-1,"25536":-1,"25537":-1,"25538":-1,"25539":-1,"25540":-1,"25541":-1,"25542":-1,"25543":-1,"25544":0,"25545":-1,"25546":-1,"25547":-1,"25548":-1,"25549":-1,"25550":-1,"25551":-1,"25552":-1,"25553":-1,"25554":-1,"25555":4067,"25556":-1,"25557":4063,"25558":-1,"25559":-1,"25560":-1,"25561":4066,"25562":-1,"25563":-1,"25564":-1,"25565":-1,"25566":-1,"25567":-1,"25568":-1,"25569":-1,"25570":-1,"25571":-1,"25572":0,"25573":-1,"25574":-1,"25575":-1,"25576":-1,"25577":-1,"25578":0,"25579":-1,"25580":-1,"25581":-1,"25582":-1,"25583":-1,"25584":-1,"25585":4066,"25586":-1,"25587":0,"25588":-1,"25589":-1,"25590":-1,"25591":-1,"25592":4065,"25593":0,"25594":4065,"25595":-1,"25596":-1,"25597":-1,"25598":-1,"25599":4064,"25600":-1,"25601":-1,"25602":-1,"25603":-1,"25604":-1,"25605":-1,"25606":-1,"25607":-1,"25608":-1,"25609":-1,"25610":-1,"25611":-1,"25612":4064,"25613":-1,"25614":-1,"25615":-1,"25616":-1,"25617":-1,"25618":-1,"25619":-1,"25620":-1,"25621":-1,"25622":-1,"25623":-1,"25624":-1,"25625":4063,"25626":-1,"25627":-1,"25628":-1,"25629":-1,"25630":-1,"25631":-1,"25632":-1,"25633":-1,"25634":-1,"25635":-1,"25636":4067,"25637":-1,"25638":0,"25639":-1,"25640":-1,"25641":-1,"25642":-1,"25643":-1,"25644":-1,"25645":0,"25646":-1,"25647":-1,"25648":-1,"25649":-1,"25650":-1,"25651":-1,"25652":-1,"25653":-1,"25654":-1,"25655":-1,"25656":-1,"25657":-1,"25658":-1,"25659":4068,"25660":-1,"25661":-1,"25662":-1,"25663":-1,"25664":-1,"25665":-1,"25666":-1,"25667":-1,"25668":-1,"25669":-1,"25670":-1,"25671":-1,"25672":-1,"25673":-1,"25674":-1,"25675":-1,"25676":-1,"25677":-1,"25678":4067,"25679":-1,"25680":-1,"25681":-1,"25682":-1,"25683":-1,"25684":-1,"25685":-1,"25686":-1,"25687":-1,"25688":-1,"25689":-1,"25690":-1,"25691":-1,"25692":-1,"25693":-1,"25694":-1,"25695":-1,"25696":-1,"25697":-1,"25698":0,"25699":-1,"25700":-1,"25701":-1,"25702":-1,"25703":-1,"25704":-1,"25705":-1,"25706":-1,"25707":-1,"25708":-1,"25709":-1,"25710":-1,"25711":-1,"25712":-1,"25713":-1,"25714":-1,"25715":-1,"25716":-1,"25717":4067,"25718":-1,"25719":-1,"25720":-1,"25721":-1,"25722":-1,"25723":-1,"25724":-1,"25725":-1,"25726":-1,"25727":-1,"25728":-1,"25729":-1,"25730":4066,"25731":-1,"25732":-1,"25733":-1,"25734":-1,"25735":-1,"25736":-1,"25737":-1,"25738":-1,"25739":-1,"25740":-1,"25741":-1,"25742":-1,"25743":-1,"25744":-1,"25745":-1,"25746":-1,"25747":-1,"25748":-1,"25749":-1,"25750":-1,"25751":-1,"25752":-1,"25753":-1,"25754":-1,"25755":-1,"25756":-1,"25757":-1,"25758":-1,"25759":-1,"25760":-1,"25761":-1,"25762":-1,"25763":-1,"25764":-1,"25765":-1,"25766":-1,"25767":-1,"25768":-1,"25769":-1,"25770":-1,"25771":-1,"25772":-1,"25773":-1,"25774":-1,"25775":-1,"25776":-1,"25777":4066,"25778":-1,"25779":-1,"25780":-1,"25781":-1,"25782":-1,"25783":-1,"25784":4066,"25785":-1,"25786":-1,"25787":-1,"25788":-1,"25789":-1,"25790":-1,"25791":-1,"25792":-1,"25793":-1,"25794":-1,"25795":-1,"25796":-1,"25797":-1,"25798":-1,"25799":-1,"25800":-1,"25801":4068,"25802":-1,"25803":-1,"25804":4068,"25805":-1,"25806":-1,"25807":-1,"25808":-1,"25809":-1,"25810":-1,"25811":0,"25812":0,"25813":-1,"25814":-1,"25815":-1,"25816":-1,"25817":-1,"25818":-1,"25819":-1,"25820":-1,"25821":-1,"25822":-1,"25823":4067,"25824":-1,"25825":-1,"25826":4065,"25827":-1,"25828":-1,"25829":-1,"25830":-1,"25831":4064,"25832":-1,"25833":-1,"25834":-1,"25835":-1,"25836":-1,"25837":-1,"25838":-1,"25839":4063,"25840":-1,"25841":-1,"25842":-1,"25843":-1,"25844":-1,"25845":-1,"25846":-1,"25847":4066,"25848":-1,"25849":-1,"25850":-1,"25851":-1,"25852":-1,"25853":-1,"25854":-1,"25855":-1,"25856":-1,"25857":-1,"25858":-1,"25859":-1,"25860":-1,"25861":-1,"25862":-1,"25863":4065,"25864":-1,"25865":4065,"25866":-1,"25867":-1,"25868":4063,"25869":4065,"25870":-1,"25871":4066,"25872":-1,"25873":-1,"25874":-1,"25875":-1,"25876":-1,"25877":-1,"25878":-1,"25879":-1,"25880":-1,"25881":-1,"25882":-1,"25883":-1,"25884":-1,"25885":-1,"25886":-1,"25887":-1,"25888":0,"25889":4068,"25890":-1,"25891":4065,"25892":4064,"25893":4067,"25894":-1,"25895":-1,"25896":-1,"25897":-1,"25898":-1,"25899":-1,"25900":-1,"25901":-1,"25902":4067,"25903":-1,"25904":-1,"25905":-1,"25906":-1,"25907":-1,"25908":0,"25909":-1,"25910":-1,"25911":-1,"25912":-1,"25913":4067,"25914":-1,"25915":-1,"25916":-1,"25917":-1,"25918":-1,"25919":-1,"25920":-1,"25921":-1,"25922":-1,"25923":4067,"25924":-1,"25925":-1,"25926":-1,"25927":-1,"25928":-1,"25929":0,"25930":-1,"25931":-1,"25932":0,"25933":-1,"25934":-1,"25935":-1,"25936":4067,"25937":-1,"25938":4067,"25939":-1,"25940":-1,"25941":-1,"25942":-1,"25943":4066,"25944":-1,"25945":-1,"25946":4064,"25947":-1,"25948":0,"25949":-1,"25950":0,"25951":-1,"25952":-1,"25953":-1,"25954":-1,"25955":-1,"25956":-1,"25957":4067,"25958":-1,"25959":-1,"25960":-1,"25961":-1,"25962":-1,"25963":-1,"25964":-1,"25965":0,"25966":-1,"25967":-1,"25968":-1,"25969":-1,"25970":4064,"25971":4067,"25972":-1,"25973":-1,"25974":-1,"25975":-1,"25976":-1,"25977":-1,"25978":-1,"25979":4064,"25980":-1,"25981":-1,"25982":-1,"25983":-1,"25984":-1,"25985":-1,"25986":-1,"25987":-1,"25988":4065,"25989":-1,"25990":-1,"25991":-1,"25992":4064,"25993":-1,"25994":-1,"25995":-1,"25996":-1,"25997":-1,"25998":-1,"25999":-1,"26000":-1,"26001":-1,"26002":-1,"26003":4067,"26004":-1,"26005":4068,"26006":-1,"26007":-1,"26008":-1,"26009":-1,"26010":-1,"26011":4063,"26012":-1,"26013":-1,"26014":-1,"26015":-1,"26016":-1,"26017":-1,"26018":-1,"26019":-1,"26020":-1,"26021":-1,"26022":-1,"26023":-1,"26024":-1,"26025":-1,"26026":-1,"26027":4068,"26028":-1,"26029":0,"26030":-1,"26031":-1,"26032":-1,"26033":-1,"26034":4066,"26035":-1,"26036":-1,"26037":-1,"26038":-1,"26039":-1,"26040":-1,"26041":-1,"26042":-1,"26043":4063,"26044":-1,"26045":-1,"26046":-1,"26047":-1,"26048":-1,"26049":-1,"26050":-1,"26051":-1,"26052":-1,"26053":-1,"26054":-1,"26055":-1,"26056":-1,"26057":-1,"26058":4065,"26059":-1,"26060":-1,"26061":-1,"26062":-1,"26063":-1,"26064":-1,"26065":-1,"26066":-1,"26067":-1,"26068":-1,"26069":-1,"26070":-1,"26071":4065,"26072":4066,"26073":-1,"26074":-1,"26075":-1,"26076":-1,"26077":-1,"26078":0,"26079":-1,"26080":-1,"26081":-1,"26082":-1,"26083":-1,"26084":-1,"26085":-1,"26086":-1,"26087":-1,"26088":-1,"26089":-1,"26090":-1,"26091":-1,"26092":-1,"26093":-1,"26094":-1,"26095":-1,"26096":-1,"26097":4065,"26098":-1,"26099":-1,"26100":4064,"26101":-1,"26102":-1,"26103":-1,"26104":-1,"26105":-1,"26106":-1,"26107":-1,"26108":-1,"26109":-1,"26110":-1,"26111":-1,"26112":-1,"26113":-1,"26114":-1,"26115":-1,"26116":-1,"26117":-1,"26118":-1,"26119":-1,"26120":-1,"26121":-1,"26122":-1,"26123":-1,"26124":-1,"26125":-1,"26126":-1,"26127":-1,"26128":-1,"26129":-1,"26130":-1,"26131":-1,"26132":4064,"26133":4065,"26134":-1,"26135":-1,"26136":-1,"26137":-1,"26138":-1,"26139":-1,"26140":-1,"26141":-1,"26142":-1,"26143":-1,"26144":-1,"26145":-1,"26146":4066,"26147":4068,"26148":-1,"26149":-1,"26150":4064,"26151":0,"26152":-1,"26153":-1,"26154":4065,"26155":4068,"26156":4067,"26157":4068,"26158":-1,"26159":-1,"26160":-1,"26161":-1,"26162":-1,"26163":-1,"26164":4065,"26165":4063,"26166":-1,"26167":-1,"26168":-1,"26169":4065,"26170":-1,"26171":4067,"26172":-1,"26173":-1,"26174":-1,"26175":-1,"26176":4064,"26177":-1,"26178":-1,"26179":0,"26180":-1,"26181":4065,"26182":-1,"26183":-1,"26184":-1,"26185":-1,"26186":-1,"26187":-1,"26188":-1,"26189":4067,"26190":-1,"26191":4065,"26192":-1,"26193":-1,"26194":-1,"26195":-1,"26196":-1,"26197":-1,"26198":-1,"26199":-1,"26200":-1,"26201":-1,"26202":-1,"26203":-1,"26204":-1,"26205":0,"26206":-1,"26207":-1,"26208":4066,"26209":-1,"26210":-1,"26211":-1,"26212":-1,"26213":-1,"26214":-1,"26215":-1,"26216":0,"26217":-1,"26218":-1,"26219":0,"26220":-1,"26221":4067,"26222":-1,"26223":-1,"26224":-1,"26225":-1,"26226":-1,"26227":-1,"26228":-1,"26229":4064,"26230":0,"26231":-1,"26232":-1,"26233":0,"26234":-1,"26235":-1,"26236":4064,"26237":-1,"26238":-1,"26239":-1,"26240":-1,"26241":-1,"26242":-1,"26243":-1,"26244":-1,"26245":-1,"26246":-1,"26247":-1,"26248":-1,"26249":-1,"26250":-1,"26251":4067,"26252":4067,"26253":-1,"26254":-1,"26255":-1,"26256":4067,"26257":-1,"26258":-1,"26259":-1,"26260":-1,"26261":-1,"26262":-1,"26263":-1,"26264":-1,"26265":-1,"26266":-1,"26267":-1,"26268":-1,"26269":-1,"26270":-1,"26271":4068,"26272":-1,"26273":-1,"26274":-1,"26275":-1,"26276":-1,"26277":-1,"26278":-1,"26279":-1,"26280":-1,"26281":-1,"26282":-1,"26283":-1,"26284":-1,"26285":-1,"26286":-1,"26287":-1,"26288":-1,"26289":-1,"26290":-1,"26291":-1,"26292":-1,"26293":-1,"26294":-1,"26295":-1,"26296":-1,"26297":-1,"26298":-1,"26299":-1,"26300":-1,"26301":-1,"26302":-1,"26303":4067,"26304":-1,"26305":-1,"26306":-1,"26307":-1,"26308":-1,"26309":0,"26310":-1,"26311":-1,"26312":-1,"26313":-1,"26314":-1,"26315":-1,"26316":-1,"26317":-1,"26318":4065,"26319":-1,"26320":-1,"26321":-1,"26322":-1,"26323":-1,"26324":-1,"26325":-1,"26326":-1,"26327":-1,"26328":4065,"26329":-1,"26330":-1,"26331":4068,"26332":-1,"26333":-1,"26334":-1,"26335":4063,"26336":-1,"26337":-1,"26338":-1,"26339":-1,"26340":-1,"26341":-1,"26342":-1,"26343":4068,"26344":-1,"26345":-1,"26346":-1,"26347":-1,"26348":-1,"26349":-1,"26350":-1,"26351":-1,"26352":-1,"26353":-1,"26354":-1,"26355":-1,"26356":-1,"26357":-1,"26358":0,"26359":-1,"26360":-1,"26361":-1,"26362":4064,"26363":-1,"26364":-1,"26365":-1,"26366":4066,"26367":-1,"26368":-1,"26369":-1,"26370":-1,"26371":4064,"26372":-1,"26373":-1,"26374":-1,"26375":-1,"26376":4064,"26377":-1,"26378":-1,"26379":-1,"26380":-1,"26381":-1,"26382":-1,"26383":-1,"26384":4065,"26385":-1,"26386":-1,"26387":-1,"26388":-1,"26389":4063,"26390":4067,"26391":-1,"26392":-1,"26393":-1,"26394":-1,"26395":-1,"26396":4066,"26397":-1,"26398":-1,"26399":-1,"26400":-1,"26401":-1,"26402":-1,"26403":-1,"26404":-1,"26405":-1,"26406":-1,"26407":-1,"26408":-1,"26409":-1,"26410":-1,"26411":-1,"26412":4065,"26413":-1,"26414":-1,"26415":-1,"26416":-1,"26417":-1,"26418":-1,"26419":-1,"26420":-1,"26421":0,"26422":-1,"26423":-1,"26424":4063,"26425":-1,"26426":-1,"26427":-1,"26428":-1,"26429":-1,"26430":-1,"26431":-1,"26432":-1,"26433":-1,"26434":-1,"26435":-1,"26436":-1,"26437":-1,"26438":-1,"26439":4066,"26440":-1,"26441":-1,"26442":-1,"26443":-1,"26444":-1,"26445":-1,"26446":-1,"26447":-1,"26448":-1,"26449":-1,"26450":4064,"26451":0,"26452":4067,"26453":4066,"26454":-1,"26455":-1,"26456":-1,"26457":-1,"26458":4064,"26459":-1,"26460":-1,"26461":-1,"26462":4065,"26463":-1,"26464":-1,"26465":-1,"26466":-1,"26467":-1,"26468":-1,"26469":-1,"26470":-1,"26471":-1,"26472":-1,"26473":-1,"26474":-1,"26475":-1,"26476":-1,"26477":4065,"26478":-1,"26479":-1,"26480":-1,"26481":-1,"26482":4068,"26483":4065,"26484":-1,"26485":-1,"26486":4065,"26487":-1,"26488":-1,"26489":-1,"26490":-1,"26491":-1,"26492":4065,"26493":-1,"26494":-1,"26495":-1,"26496":4064,"26497":-1,"26498":-1,"26499":-1,"26500":-1,"26501":-1,"26502":-1,"26503":-1,"26504":4063,"26505":-1,"26506":4066,"26507":-1,"26508":-1,"26509":0,"26510":-1,"26511":-1,"26512":-1,"26513":-1,"26514":-1,"26515":-1,"26516":4066,"26517":4064,"26518":-1,"26519":4065,"26520":-1,"26521":-1,"26522":-1,"26523":-1,"26524":0,"26525":-1,"26526":-1,"26527":-1,"26528":-1,"26529":-1,"26530":-1,"26531":-1,"26532":-1,"26533":-1,"26534":4063,"26535":-1,"26536":-1,"26537":-1,"26538":-1,"26539":-1,"26540":-1,"26541":-1,"26542":4064,"26543":-1,"26544":-1,"26545":-1,"26546":4063,"26547":-1,"26548":-1,"26549":0,"26550":-1,"26551":-1,"26552":-1,"26553":-1,"26554":4067,"26555":-1,"26556":-1,"26557":-1,"26558":-1,"26559":4065,"26560":-1,"26561":-1,"26562":-1,"26563":-1,"26564":-1,"26565":-1,"26566":4067,"26567":-1,"26568":-1,"26569":-1,"26570":4067,"26571":-1,"26572":-1,"26573":-1,"26574":-1,"26575":-1,"26576":-1,"26577":-1,"26578":-1,"26579":-1,"26580":-1,"26581":-1,"26582":-1,"26583":-1,"26584":-1,"26585":-1,"26586":-1,"26587":-1,"26588":4066,"26589":-1,"26590":-1,"26591":-1,"26592":-1,"26593":-1,"26594":-1,"26595":-1,"26596":-1,"26597":-1,"26598":-1,"26599":-1,"26600":-1,"26601":-1,"26602":-1,"26603":-1,"26604":-1,"26605":4064,"26606":4064,"26607":-1,"26608":-1,"26609":0,"26610":-1,"26611":-1,"26612":-1,"26613":-1,"26614":-1,"26615":-1,"26616":4064,"26617":-1,"26618":-1,"26619":-1,"26620":-1,"26621":-1,"26622":4065,"26623":-1,"26624":4068,"26625":-1,"26626":-1,"26627":-1,"26628":-1,"26629":-1,"26630":0,"26631":-1,"26632":-1,"26633":-1,"26634":-1,"26635":-1,"26636":-1,"26637":4067,"26638":-1,"26639":-1,"26640":4065,"26641":-1,"26642":-1,"26643":-1,"26644":-1,"26645":-1,"26646":-1,"26647":0,"26648":-1,"26649":-1,"26650":-1,"26651":-1,"26652":-1,"26653":0,"26654":-1,"26655":-1,"26656":-1,"26657":4065,"26658":-1,"26659":-1,"26660":4065,"26661":0,"26662":-1,"26663":-1,"26664":-1,"26665":-1,"26666":4066,"26667":-1,"26668":-1,"26669":-1,"26670":-1,"26671":-1,"26672":-1,"26673":-1,"26674":-1,"26675":-1,"26676":-1,"26677":-1,"26678":-1,"26679":-1,"26680":-1,"26681":-1,"26682":-1,"26683":-1,"26684":-1,"26685":-1,"26686":-1,"26687":-1,"26688":-1,"26689":-1,"26690":-1,"26691":-1,"26692":-1,"26693":-1,"26694":-1,"26695":-1,"26696":-1,"26697":-1,"26698":-1,"26699":-1,"26700":4068,"26701":-1,"26702":-1,"26703":-1,"26704":-1,"26705":-1,"26706":-1,"26707":-1,"26708":-1,"26709":-1,"26710":-1,"26711":-1,"26712":-1,"26713":-1,"26714":-1,"26715":-1,"26716":-1,"26717":-1,"26718":-1,"26719":-1,"26720":-1,"26721":-1,"26722":4064,"26723":-1,"26724":0,"26725":-1,"26726":-1,"26727":-1,"26728":-1,"26729":-1,"26730":-1,"26731":-1,"26732":-1,"26733":-1,"26734":4066,"26735":4063,"26736":-1,"26737":-1,"26738":-1,"26739":-1,"26740":-1,"26741":-1,"26742":-1,"26743":-1,"26744":-1,"26745":-1,"26746":-1,"26747":-1,"26748":-1,"26749":-1,"26750":-1,"26751":-1,"26752":-1,"26753":-1,"26754":0,"26755":4067,"26756":4064,"26757":-1,"26758":-1,"26759":-1,"26760":-1,"26761":-1,"26762":-1,"26763":4067,"26764":0,"26765":-1,"26766":-1,"26767":-1,"26768":-1,"26769":-1,"26770":-1,"26771":4067,"26772":-1,"26773":-1,"26774":-1,"26775":-1,"26776":-1,"26777":-1,"26778":-1,"26779":-1,"26780":-1,"26781":-1,"26782":-1,"26783":-1,"26784":-1,"26785":-1,"26786":-1,"26787":-1,"26788":-1,"26789":-1,"26790":-1,"26791":-1,"26792":4067,"26793":-1,"26794":4065,"26795":-1,"26796":-1,"26797":-1,"26798":-1,"26799":-1,"26800":-1,"26801":-1,"26802":-1,"26803":-1,"26804":-1,"26805":-1,"26806":-1,"26807":-1,"26808":-1,"26809":-1,"26810":4068,"26811":-1,"26812":0,"26813":0,"26814":4065,"26815":-1,"26816":-1,"26817":-1,"26818":-1,"26819":-1,"26820":-1,"26821":-1,"26822":-1,"26823":-1,"26824":-1,"26825":4065,"26826":-1,"26827":-1,"26828":0,"26829":-1,"26830":-1,"26831":-1,"26832":-1,"26833":-1,"26834":-1,"26835":-1,"26836":-1,"26837":4064,"26838":-1,"26839":-1,"26840":-1,"26841":-1,"26842":-1,"26843":-1,"26844":-1,"26845":-1,"26846":-1,"26847":-1,"26848":-1,"26849":-1,"26850":-1,"26851":-1,"26852":-1,"26853":-1,"26854":-1,"26855":-1,"26856":-1,"26857":-1,"26858":-1,"26859":-1,"26860":-1,"26861":-1,"26862":4068,"26863":4066,"26864":-1,"26865":-1,"26866":-1,"26867":-1,"26868":-1,"26869":-1,"26870":-1,"26871":-1,"26872":-1,"26873":-1,"26874":-1,"26875":-1,"26876":-1,"26877":-1,"26878":-1,"26879":-1,"26880":-1,"26881":-1,"26882":-1,"26883":-1,"26884":-1,"26885":4067,"26886":4065,"26887":4064,"26888":-1,"26889":4066,"26890":-1,"26891":-1,"26892":-1,"26893":4064,"26894":-1,"26895":-1,"26896":0,"26897":-1,"26898":-1,"26899":-1,"26900":-1,"26901":-1,"26902":-1,"26903":-1,"26904":-1,"26905":-1,"26906":4066,"26907":-1,"26908":4065,"26909":-1,"26910":-1,"26911":-1,"26912":-1,"26913":4064,"26914":0,"26915":-1,"26916":-1,"26917":-1,"26918":-1,"26919":4066,"26920":0,"26921":0,"26922":-1,"26923":-1,"26924":-1,"26925":-1,"26926":4064,"26927":-1,"26928":-1,"26929":-1,"26930":-1,"26931":-1,"26932":-1,"26933":-1,"26934":-1,"26935":-1,"26936":-1,"26937":-1,"26938":4065,"26939":-1,"26940":-1,"26941":-1,"26942":4065,"26943":-1,"26944":-1,"26945":-1,"26946":-1,"26947":-1,"26948":-1,"26949":-1,"26950":-1,"26951":4064,"26952":4065,"26953":-1,"26954":-1,"26955":4068,"26956":4067,"26957":-1,"26958":-1,"26959":-1,"26960":-1,"26961":-1,"26962":-1,"26963":-1,"26964":-1,"26965":-1,"26966":-1,"26967":-1,"26968":4063,"26969":0,"26970":-1,"26971":-1,"26972":4065,"26973":4067,"26974":4064,"26975":-1,"26976":-1,"26977":-1,"26978":-1,"26979":-1,"26980":-1,"26981":4068,"26982":-1,"26983":4067,"26984":-1,"26985":-1,"26986":-1,"26987":-1,"26988":-1,"26989":0,"26990":-1,"26991":-1,"26992":-1,"26993":-1,"26994":4066,"26995":-1,"26996":-1,"26997":-1,"26998":-1,"26999":4064,"27000":-1,"27001":-1,"27002":-1,"27003":-1,"27004":-1,"27005":-1,"27006":-1,"27007":-1,"27008":-1,"27009":-1,"27010":-1,"27011":-1,"27012":-1,"27013":-1,"27014":-1,"27015":-1,"27016":-1,"27017":-1,"27018":4067,"27019":-1,"27020":-1,"27021":-1,"27022":-1,"27023":-1,"27024":-1,"27025":-1,"27026":4063,"27027":4067,"27028":-1,"27029":-1,"27030":-1,"27031":-1,"27032":-1,"27033":-1,"27034":-1,"27035":4067,"27036":-1,"27037":-1,"27038":-1,"27039":-1,"27040":-1,"27041":-1,"27042":-1,"27043":-1,"27044":0,"27045":-1,"27046":-1,"27047":-1,"27048":-1,"27049":-1,"27050":-1,"27051":-1,"27052":-1,"27053":-1,"27054":0,"27055":-1,"27056":-1,"27057":4063,"27058":4068,"27059":-1,"27060":0,"27061":-1,"27062":-1,"27063":-1,"27064":4065,"27065":-1,"27066":-1,"27067":-1,"27068":-1,"27069":-1,"27070":-1,"27071":-1,"27072":-1,"27073":-1,"27074":-1,"27075":-1,"27076":-1,"27077":4068,"27078":-1,"27079":-1,"27080":-1,"27081":4066,"27082":4067,"27083":-1,"27084":-1,"27085":0,"27086":-1,"27087":-1,"27088":-1,"27089":-1,"27090":4065,"27091":-1,"27092":-1,"27093":-1,"27094":-1,"27095":-1,"27096":-1,"27097":-1,"27098":-1,"27099":-1,"27100":4068,"27101":-1,"27102":-1,"27103":-1,"27104":4064,"27105":4065,"27106":-1,"27107":-1,"27108":-1,"27109":-1,"27110":-1,"27111":-1,"27112":4065,"27113":-1,"27114":-1,"27115":-1,"27116":-1,"27117":-1,"27118":-1,"27119":-1,"27120":-1,"27121":-1,"27122":-1,"27123":-1,"27124":-1,"27125":-1,"27126":-1,"27127":-1,"27128":-1,"27129":-1,"27130":4063,"27131":-1,"27132":-1,"27133":-1,"27134":-1,"27135":-1,"27136":-1,"27137":-1,"27138":-1,"27139":-1,"27140":-1,"27141":-1,"27142":-1,"27143":-1,"27144":-1,"27145":-1,"27146":-1,"27147":-1,"27148":-1,"27149":-1,"27150":-1,"27151":-1,"27152":-1,"27153":-1,"27154":-1,"27155":-1,"27156":-1,"27157":-1,"27158":-1,"27159":4068,"27160":-1,"27161":-1,"27162":4064,"27163":4064,"27164":-1,"27165":-1,"27166":-1,"27167":-1,"27168":-1,"27169":-1,"27170":-1,"27171":-1,"27172":-1,"27173":-1,"27174":-1,"27175":-1,"27176":-1,"27177":-1,"27178":-1,"27179":-1,"27180":-1,"27181":-1,"27182":-1,"27183":-1,"27184":-1,"27185":-1,"27186":4064,"27187":-1,"27188":-1,"27189":-1,"27190":-1,"27191":-1,"27192":-1,"27193":-1,"27194":-1,"27195":-1,"27196":-1,"27197":-1,"27198":-1,"27199":-1,"27200":-1,"27201":-1,"27202":4065,"27203":-1,"27204":-1,"27205":-1,"27206":-1,"27207":-1,"27208":-1,"27209":-1,"27210":-1,"27211":-1,"27212":-1,"27213":-1,"27214":-1,"27215":-1,"27216":-1,"27217":-1,"27218":-1,"27219":-1,"27220":-1,"27221":-1,"27222":4063,"27223":-1,"27224":-1,"27225":4068,"27226":-1,"27227":-1,"27228":-1,"27229":-1,"27230":-1,"27231":-1,"27232":-1,"27233":-1,"27234":4063,"27235":-1,"27236":-1,"27237":-1,"27238":-1,"27239":-1,"27240":4068,"27241":-1,"27242":-1,"27243":-1,"27244":-1,"27245":-1,"27246":-1,"27247":-1,"27248":-1,"27249":-1,"27250":-1,"27251":-1,"27252":-1,"27253":-1,"27254":-1,"27255":-1,"27256":-1,"27257":-1,"27258":-1,"27259":4067,"27260":-1,"27261":-1,"27262":-1,"27263":4066,"27264":-1,"27265":4064,"27266":-1,"27267":-1,"27268":-1,"27269":-1,"27270":-1,"27271":-1,"27272":-1,"27273":-1,"27274":-1,"27275":4065,"27276":-1,"27277":-1,"27278":-1,"27279":-1,"27280":-1,"27281":-1,"27282":-1,"27283":-1,"27284":-1,"27285":-1,"27286":-1,"27287":0,"27288":-1,"27289":-1,"27290":-1,"27291":4063,"27292":-1,"27293":-1,"27294":-1,"27295":-1,"27296":-1,"27297":-1,"27298":-1,"27299":-1,"27300":4064,"27301":-1,"27302":4066,"27303":4065,"27304":-1,"27305":-1,"27306":-1,"27307":-1,"27308":-1,"27309":-1,"27310":-1,"27311":-1,"27312":-1,"27313":-1,"27314":-1,"27315":-1,"27316":4063,"27317":-1,"27318":-1,"27319":-1,"27320":4065,"27321":-1,"27322":-1,"27323":-1,"27324":-1,"27325":-1,"27326":-1,"27327":-1,"27328":-1,"27329":4064,"27330":-1,"27331":-1,"27332":-1,"27333":-1,"27334":-1,"27335":-1,"27336":-1,"27337":-1,"27338":-1,"27339":-1,"27340":-1,"27341":4068,"27342":4063,"27343":-1,"27344":-1,"27345":-1,"27346":-1,"27347":-1,"27348":-1,"27349":-1,"27350":-1,"27351":-1,"27352":-1,"27353":-1,"27354":4067,"27355":-1,"27356":-1,"27357":-1,"27358":-1,"27359":-1,"27360":-1,"27361":-1,"27362":-1,"27363":-1,"27364":0,"27365":-1,"27366":4067,"27367":-1,"27368":4068,"27369":-1,"27370":-1,"27371":0,"27372":-1,"27373":-1,"27374":-1,"27375":-1,"27376":-1,"27377":-1,"27378":-1,"27379":4066,"27380":-1,"27381":0,"27382":-1,"27383":-1,"27384":-1,"27385":-1,"27386":-1,"27387":-1,"27388":-1,"27389":-1,"27390":4064,"27391":4067,"27392":-1,"27393":-1,"27394":-1,"27395":-1,"27396":-1,"27397":-1,"27398":-1,"27399":-1,"27400":-1,"27401":0,"27402":-1,"27403":-1,"27404":-1,"27405":-1,"27406":-1,"27407":-1,"27408":-1,"27409":-1,"27410":-1,"27411":-1,"27412":-1,"27413":-1,"27414":4067,"27415":4063,"27416":-1,"27417":-1,"27418":-1,"27419":-1,"27420":-1,"27421":-1,"27422":-1,"27423":-1,"27424":-1,"27425":-1,"27426":4064,"27427":0,"27428":-1,"27429":-1,"27430":-1,"27431":-1,"27432":-1,"27433":-1,"27434":-1,"27435":4063,"27436":-1,"27437":-1,"27438":-1,"27439":4063,"27440":-1,"27441":-1,"27442":-1,"27443":-1,"27444":-1,"27445":-1,"27446":-1,"27447":-1,"27448":-1,"27449":-1,"27450":-1,"27451":-1,"27452":-1,"27453":-1,"27454":-1,"27455":-1,"27456":-1,"27457":-1,"27458":-1,"27459":-1,"27460":-1,"27461":-1,"27462":-1,"27463":-1,"27464":-1,"27465":-1,"27466":-1,"27467":4067,"27468":0,"27469":-1,"27470":-1,"27471":-1,"27472":-1,"27473":4064,"27474":-1,"27475":-1,"27476":-1,"27477":-1,"27478":-1,"27479":-1,"27480":-1,"27481":-1,"27482":-1,"27483":-1,"27484":-1,"27485":-1,"27486":4065,"27487":4068,"27488":-1,"27489":-1,"27490":-1,"27491":-1,"27492":-1,"27493":-1,"27494":-1,"27495":-1,"27496":-1,"27497":-1,"27498":-1,"27499":-1,"27500":-1,"27501":-1,"27502":-1,"27503":-1,"27504":-1,"27505":-1,"27506":-1,"27507":4067,"27508":-1,"27509":-1,"27510":4066,"27511":-1,"27512":-1,"27513":-1,"27514":-1,"27515":-1,"27516":-1,"27517":-1,"27518":-1,"27519":4063,"27520":-1,"27521":-1,"27522":-1,"27523":-1,"27524":-1,"27525":-1,"27526":4067,"27527":-1,"27528":-1,"27529":0,"27530":-1,"27531":-1,"27532":-1,"27533":-1,"27534":-1,"27535":-1,"27536":-1,"27537":-1,"27538":-1,"27539":-1,"27540":-1,"27541":-1,"27542":-1,"27543":-1,"27544":-1,"27545":-1,"27546":4065,"27547":-1,"27548":-1,"27549":-1,"27550":-1,"27551":-1,"27552":-1,"27553":-1,"27554":-1,"27555":-1,"27556":-1,"27557":-1,"27558":4066,"27559":-1,"27560":-1,"27561":-1,"27562":4065,"27563":-1,"27564":-1,"27565":-1,"27566":4066,"27567":-1,"27568":-1,"27569":-1,"27570":-1,"27571":-1,"27572":-1,"27573":-1,"27574":-1,"27575":-1,"27576":0,"27577":-1,"27578":-1,"27579":-1,"27580":-1,"27581":-1,"27582":4066,"27583":-1,"27584":-1,"27585":-1,"27586":-1,"27587":-1,"27588":-1,"27589":-1,"27590":-1,"27591":-1,"27592":-1,"27593":-1,"27594":-1,"27595":-1,"27596":-1,"27597":-1,"27598":-1,"27599":-1,"27600":-1,"27601":-1,"27602":4066,"27603":-1,"27604":-1,"27605":-1,"27606":-1,"27607":-1,"27608":-1,"27609":-1,"27610":-1,"27611":4064,"27612":-1,"27613":4066,"27614":-1,"27615":-1,"27616":-1,"27617":-1,"27618":0,"27619":-1,"27620":-1,"27621":-1,"27622":-1,"27623":-1,"27624":-1,"27625":-1,"27626":-1,"27627":-1,"27628":0,"27629":4063,"27630":-1,"27631":-1,"27632":-1,"27633":-1,"27634":-1,"27635":-1,"27636":-1,"27637":-1,"27638":4063,"27639":-1,"27640":-1,"27641":-1,"27642":4064,"27643":-1,"27644":-1,"27645":-1,"27646":-1,"27647":-1,"27648":-1,"27649":4068,"27650":-1,"27651":0,"27652":-1,"27653":-1,"27654":-1,"27655":-1,"27656":-1,"27657":-1,"27658":-1,"27659":-1,"27660":-1,"27661":-1,"27662":-1,"27663":0,"27664":-1,"27665":-1,"27666":-1,"27667":-1,"27668":-1,"27669":-1,"27670":-1,"27671":4066,"27672":-1,"27673":-1,"27674":-1,"27675":-1,"27676":-1,"27677":-1,"27678":-1,"27679":4067,"27680":-1,"27681":-1,"27682":0,"27683":-1,"27684":-1,"27685":-1,"27686":-1,"27687":-1,"27688":-1,"27689":-1,"27690":-1,"27691":-1,"27692":-1,"27693":-1,"27694":-1,"27695":-1,"27696":-1,"27697":-1,"27698":4064,"27699":-1,"27700":4066,"27701":-1,"27702":-1,"27703":-1,"27704":-1,"27705":0,"27706":-1,"27707":-1,"27708":-1,"27709":-1,"27710":4063,"27711":4066,"27712":-1,"27713":-1,"27714":-1,"27715":-1,"27716":-1,"27717":-1,"27718":-1,"27719":-1,"27720":4067,"27721":-1,"27722":-1,"27723":-1,"27724":0,"27725":-1,"27726":-1,"27727":-1,"27728":-1,"27729":-1,"27730":-1,"27731":-1,"27732":-1,"27733":-1,"27734":-1,"27735":4067,"27736":4065,"27737":-1,"27738":-1,"27739":-1,"27740":-1,"27741":-1,"27742":-1,"27743":-1,"27744":-1,"27745":-1,"27746":-1,"27747":4063,"27748":-1,"27749":-1,"27750":-1,"27751":-1,"27752":-1,"27753":-1,"27754":-1,"27755":-1,"27756":-1,"27757":-1,"27758":-1,"27759":-1,"27760":-1,"27761":-1,"27762":-1,"27763":-1,"27764":-1,"27765":4067,"27766":-1,"27767":-1,"27768":-1,"27769":-1,"27770":-1,"27771":4065,"27772":-1,"27773":-1,"27774":4068,"27775":-1,"27776":-1,"27777":-1,"27778":-1,"27779":-1,"27780":-1,"27781":4066,"27782":-1,"27783":-1,"27784":-1,"27785":-1,"27786":-1,"27787":-1,"27788":-1,"27789":-1,"27790":4064,"27791":4065,"27792":-1,"27793":-1,"27794":-1,"27795":-1,"27796":-1,"27797":-1,"27798":-1,"27799":-1,"27800":-1,"27801":-1,"27802":4065,"27803":-1,"27804":-1,"27805":-1,"27806":4067,"27807":-1,"27808":-1,"27809":4063,"27810":-1,"27811":-1,"27812":4067,"27813":-1,"27814":-1,"27815":4067,"27816":-1,"27817":-1,"27818":-1,"27819":-1,"27820":-1,"27821":-1,"27822":-1,"27823":-1,"27824":-1,"27825":-1,"27826":-1,"27827":-1,"27828":-1,"27829":-1,"27830":-1,"27831":-1,"27832":-1,"27833":-1,"27834":0,"27835":-1,"27836":-1,"27837":-1,"27838":4067,"27839":0,"27840":-1,"27841":4066,"27842":-1,"27843":-1,"27844":-1,"27845":4065,"27846":0,"27847":-1,"27848":4067,"27849":-1,"27850":-1,"27851":-1,"27852":-1,"27853":-1,"27854":-1,"27855":-1,"27856":-1,"27857":-1,"27858":-1,"27859":-1,"27860":4067,"27861":-1,"27862":-1,"27863":-1,"27864":-1,"27865":-1,"27866":-1,"27867":-1,"27868":-1,"27869":-1,"27870":0,"27871":-1,"27872":-1,"27873":-1,"27874":-1,"27875":-1,"27876":-1,"27877":-1,"27878":-1,"27879":0,"27880":-1,"27881":-1,"27882":-1,"27883":4068,"27884":-1,"27885":-1,"27886":-1,"27887":-1,"27888":-1,"27889":-1,"27890":4065,"27891":0,"27892":4066,"27893":-1,"27894":-1,"27895":-1,"27896":-1,"27897":4066,"27898":-1,"27899":-1,"27900":-1,"27901":-1,"27902":0,"27903":4068,"27904":-1,"27905":-1,"27906":-1,"27907":-1,"27908":-1,"27909":-1,"27910":-1,"27911":-1,"27912":-1,"27913":0,"27914":-1,"27915":-1,"27916":-1,"27917":-1,"27918":-1,"27919":-1,"27920":-1,"27921":-1,"27922":-1,"27923":-1,"27924":-1,"27925":-1,"27926":-1,"27927":-1,"27928":-1,"27929":-1,"27930":-1,"27931":-1,"27932":-1,"27933":-1,"27934":-1,"27935":-1,"27936":4066,"27937":-1,"27938":-1,"27939":0,"27940":-1,"27941":-1,"27942":-1,"27943":-1,"27944":-1,"27945":0,"27946":-1,"27947":-1,"27948":-1,"27949":4063,"27950":4066,"27951":-1,"27952":-1,"27953":-1,"27954":-1,"27955":-1,"27956":-1,"27957":-1,"27958":-1,"27959":-1,"27960":-1,"27961":4066,"27962":-1,"27963":-1,"27964":-1,"27965":-1,"27966":-1,"27967":-1,"27968":-1,"27969":-1,"27970":-1,"27971":-1,"27972":-1,"27973":-1,"27974":-1,"27975":-1,"27976":-1,"27977":-1,"27978":-1,"27979":-1,"27980":-1,"27981":-1,"27982":4066,"27983":-1,"27984":-1,"27985":-1,"27986":-1,"27987":-1,"27988":-1,"27989":-1,"27990":4066,"27991":4065,"27992":-1,"27993":-1,"27994":-1,"27995":-1,"27996":-1,"27997":-1,"27998":-1,"27999":-1,"28000":-1,"28001":-1,"28002":-1,"28003":-1,"28004":-1,"28005":-1,"28006":-1,"28007":-1,"28008":0,"28009":-1,"28010":-1,"28011":-1,"28012":-1,"28013":-1,"28014":-1,"28015":-1,"28016":-1,"28017":-1,"28018":-1,"28019":0,"28020":-1,"28021":-1,"28022":-1,"28023":-1,"28024":-1,"28025":-1,"28026":-1,"28027":-1,"28028":4066,"28029":-1,"28030":-1,"28031":-1,"28032":-1,"28033":-1,"28034":4064,"28035":-1,"28036":-1,"28037":-1,"28038":-1,"28039":-1,"28040":-1,"28041":4064,"28042":-1,"28043":-1,"28044":4063,"28045":-1,"28046":-1,"28047":-1,"28048":-1,"28049":-1,"28050":4065,"28051":-1,"28052":-1,"28053":-1,"28054":-1,"28055":-1,"28056":-1,"28057":-1,"28058":-1,"28059":-1,"28060":-1,"28061":-1,"28062":4064,"28063":-1,"28064":-1,"28065":-1,"28066":-1,"28067":4064,"28068":4064,"28069":-1,"28070":-1,"28071":-1,"28072":-1,"28073":-1,"28074":-1,"28075":-1,"28076":-1,"28077":-1,"28078":-1,"28079":-1,"28080":-1,"28081":-1,"28082":4065,"28083":-1,"28084":-1,"28085":-1,"28086":-1,"28087":4063,"28088":-1,"28089":-1,"28090":-1,"28091":-1,"28092":-1,"28093":-1,"28094":-1,"28095":-1,"28096":4064,"28097":-1,"28098":-1,"28099":-1,"28100":-1,"28101":4064,"28102":-1,"28103":0,"28104":-1,"28105":-1,"28106":-1,"28107":-1,"28108":-1,"28109":0,"28110":-1,"28111":-1,"28112":-1,"28113":-1,"28114":4066,"28115":4064,"28116":0,"28117":4064,"28118":-1,"28119":-1,"28120":-1,"28121":-1,"28122":-1,"28123":-1,"28124":-1,"28125":-1,"28126":-1,"28127":-1,"28128":4066,"28129":-1,"28130":-1,"28131":-1,"28132":-1,"28133":-1,"28134":-1,"28135":-1,"28136":4065,"28137":-1,"28138":-1,"28139":-1,"28140":-1,"28141":-1,"28142":-1,"28143":-1,"28144":-1,"28145":-1,"28146":4065,"28147":-1,"28148":-1,"28149":-1,"28150":-1,"28151":-1,"28152":-1,"28153":-1,"28154":-1,"28155":-1,"28156":-1,"28157":-1,"28158":-1,"28159":-1,"28160":-1,"28161":-1,"28162":-1,"28163":-1,"28164":-1,"28165":-1,"28166":-1,"28167":-1,"28168":-1,"28169":-1,"28170":-1,"28171":-1,"28172":-1,"28173":4066,"28174":0,"28175":-1,"28176":-1,"28177":-1,"28178":-1,"28179":-1,"28180":-1,"28181":-1,"28182":-1,"28183":4066,"28184":4065,"28185":-1,"28186":-1,"28187":-1,"28188":-1,"28189":-1,"28190":-1,"28191":-1,"28192":-1,"28193":-1,"28194":-1,"28195":-1,"28196":4064,"28197":4064,"28198":-1,"28199":-1,"28200":-1,"28201":-1,"28202":-1,"28203":-1,"28204":0,"28205":-1,"28206":-1,"28207":-1,"28208":4068,"28209":-1,"28210":-1,"28211":-1,"28212":-1,"28213":-1,"28214":-1,"28215":-1,"28216":-1,"28217":-1,"28218":-1,"28219":-1,"28220":-1,"28221":-1,"28222":-1,"28223":-1,"28224":-1,"28225":-1,"28226":4064,"28227":0,"28228":-1,"28229":-1,"28230":4065,"28231":-1,"28232":-1,"28233":-1,"28234":-1,"28235":-1,"28236":-1,"28237":-1,"28238":4066,"28239":-1,"28240":-1,"28241":-1,"28242":-1,"28243":-1,"28244":-1,"28245":-1,"28246":-1,"28247":-1,"28248":-1,"28249":-1,"28250":-1,"28251":-1,"28252":-1,"28253":-1,"28254":-1,"28255":4064,"28256":-1,"28257":-1,"28258":-1,"28259":-1,"28260":-1,"28261":-1,"28262":-1,"28263":-1,"28264":-1,"28265":-1,"28266":-1,"28267":-1,"28268":-1,"28269":-1,"28270":-1,"28271":-1,"28272":-1,"28273":-1,"28274":-1,"28275":-1,"28276":-1,"28277":-1,"28278":-1,"28279":-1,"28280":-1,"28281":-1,"28282":4066,"28283":-1,"28284":-1,"28285":4064,"28286":-1,"28287":-1,"28288":-1,"28289":4063,"28290":-1,"28291":0,"28292":-1,"28293":-1,"28294":-1,"28295":-1,"28296":-1,"28297":-1,"28298":4065,"28299":-1,"28300":-1,"28301":-1,"28302":-1,"28303":-1,"28304":-1,"28305":-1,"28306":-1,"28307":-1,"28308":-1,"28309":-1,"28310":-1,"28311":-1,"28312":-1,"28313":-1,"28314":-1,"28315":-1,"28316":-1,"28317":-1,"28318":-1,"28319":-1,"28320":-1,"28321":-1,"28322":-1,"28323":-1,"28324":-1,"28325":-1,"28326":4064,"28327":4064,"28328":-1,"28329":-1,"28330":-1,"28331":-1,"28332":4066,"28333":-1,"28334":4067,"28335":-1,"28336":-1,"28337":-1,"28338":-1,"28339":-1,"28340":4064,"28341":-1,"28342":-1,"28343":-1,"28344":-1,"28345":-1,"28346":-1,"28347":-1,"28348":-1,"28349":0,"28350":-1,"28351":-1,"28352":-1,"28353":4064,"28354":-1,"28355":-1,"28356":-1,"28357":-1,"28358":-1,"28359":4064,"28360":-1,"28361":-1,"28362":-1,"28363":-1,"28364":-1,"28365":-1,"28366":-1,"28367":-1,"28368":4065,"28369":-1,"28370":-1,"28371":-1,"28372":-1,"28373":-1,"28374":-1,"28375":-1,"28376":-1,"28377":-1,"28378":-1,"28379":-1,"28380":-1,"28381":4065,"28382":4065,"28383":-1,"28384":-1,"28385":-1,"28386":-1,"28387":-1,"28388":-1,"28389":-1,"28390":-1,"28391":-1,"28392":4068,"28393":-1,"28394":4067,"28395":-1,"28396":-1,"28397":-1,"28398":4067,"28399":4064,"28400":-1,"28401":-1,"28402":-1,"28403":-1,"28404":-1,"28405":0,"28406":-1,"28407":-1,"28408":-1,"28409":-1,"28410":-1,"28411":-1,"28412":-1,"28413":-1,"28414":4063,"28415":-1,"28416":-1,"28417":-1,"28418":4068,"28419":0,"28420":-1,"28421":4066,"28422":-1,"28423":-1,"28424":-1,"28425":-1,"28426":4064,"28427":-1,"28428":-1,"28429":-1,"28430":-1,"28431":-1,"28432":-1,"28433":4067,"28434":-1,"28435":-1,"28436":-1,"28437":-1,"28438":0,"28439":4063,"28440":-1,"28441":-1,"28442":-1,"28443":0,"28444":-1,"28445":-1,"28446":-1,"28447":-1,"28448":-1,"28449":-1,"28450":-1,"28451":-1,"28452":-1,"28453":-1,"28454":-1,"28455":4065,"28456":-1,"28457":-1,"28458":4063,"28459":-1,"28460":-1,"28461":4065,"28462":4066,"28463":-1,"28464":-1,"28465":-1,"28466":-1,"28467":-1,"28468":4067,"28469":0,"28470":-1,"28471":4064,"28472":-1,"28473":-1,"28474":0,"28475":-1,"28476":4065,"28477":-1,"28478":-1,"28479":-1,"28480":-1,"28481":-1,"28482":-1,"28483":-1,"28484":-1,"28485":-1,"28486":-1,"28487":-1,"28488":-1,"28489":4066,"28490":-1,"28491":-1,"28492":-1,"28493":-1,"28494":-1,"28495":-1,"28496":-1,"28497":-1,"28498":-1,"28499":-1,"28500":-1,"28501":-1,"28502":-1,"28503":4063,"28504":-1,"28505":-1,"28506":-1,"28507":-1,"28508":-1,"28509":-1,"28510":-1,"28511":-1,"28512":-1,"28513":-1,"28514":-1,"28515":4068,"28516":4068,"28517":-1,"28518":-1,"28519":-1,"28520":-1,"28521":-1,"28522":-1,"28523":-1,"28524":-1,"28525":-1,"28526":-1,"28527":4067,"28528":-1,"28529":0,"28530":-1,"28531":4067,"28532":-1,"28533":-1,"28534":-1,"28535":-1,"28536":0,"28537":4064,"28538":4066,"28539":-1,"28540":-1,"28541":-1,"28542":-1,"28543":-1,"28544":-1,"28545":-1,"28546":-1,"28547":-1,"28548":-1,"28549":4068,"28550":4065,"28551":-1,"28552":-1,"28553":-1,"28554":-1,"28555":-1,"28556":-1,"28557":4063,"28558":-1,"28559":-1,"28560":-1,"28561":-1,"28562":-1,"28563":-1,"28564":-1,"28565":-1,"28566":4064,"28567":-1,"28568":-1,"28569":-1,"28570":-1,"28571":4063,"28572":-1,"28573":-1,"28574":-1,"28575":-1,"28576":-1,"28577":-1,"28578":-1,"28579":-1,"28580":-1,"28581":-1,"28582":-1,"28583":-1,"28584":-1,"28585":-1,"28586":-1,"28587":-1,"28588":-1,"28589":-1,"28590":-1,"28591":-1,"28592":-1,"28593":4063,"28594":-1,"28595":-1,"28596":-1,"28597":-1,"28598":-1,"28599":-1,"28600":4064,"28601":-1,"28602":-1,"28603":-1,"28604":-1,"28605":-1,"28606":-1,"28607":4066,"28608":-1,"28609":-1,"28610":-1,"28611":4064,"28612":-1,"28613":-1,"28614":4066,"28615":-1,"28616":-1,"28617":-1,"28618":-1,"28619":-1,"28620":-1,"28621":-1,"28622":-1,"28623":0,"28624":-1,"28625":-1,"28626":-1,"28627":-1,"28628":-1,"28629":-1,"28630":-1,"28631":-1,"28632":-1,"28633":-1,"28634":-1,"28635":-1,"28636":4064,"28637":-1,"28638":-1,"28639":0,"28640":4068,"28641":-1,"28642":-1,"28643":-1,"28644":-1,"28645":4068,"28646":-1,"28647":-1,"28648":-1,"28649":-1,"28650":-1,"28651":-1,"28652":-1,"28653":-1,"28654":-1,"28655":0,"28656":-1,"28657":-1,"28658":-1,"28659":-1,"28660":-1,"28661":-1,"28662":-1,"28663":4068,"28664":-1,"28665":4063,"28666":-1,"28667":-1,"28668":-1,"28669":-1,"28670":-1,"28671":-1,"28672":-1,"28673":4065,"28674":-1,"28675":-1,"28676":-1,"28677":0,"28678":-1,"28679":-1,"28680":-1,"28681":-1,"28682":0,"28683":-1,"28684":-1,"28685":-1,"28686":-1,"28687":-1,"28688":-1,"28689":4064,"28690":-1,"28691":-1,"28692":-1,"28693":-1,"28694":4068,"28695":-1,"28696":-1,"28697":-1,"28698":4067,"28699":-1,"28700":-1,"28701":-1,"28702":-1,"28703":-1,"28704":-1,"28705":0,"28706":-1,"28707":-1,"28708":-1,"28709":-1,"28710":-1,"28711":-1,"28712":-1,"28713":-1,"28714":-1,"28715":-1,"28716":-1,"28717":-1,"28718":-1,"28719":-1,"28720":-1,"28721":-1,"28722":0,"28723":4066,"28724":-1,"28725":4064,"28726":-1,"28727":4064,"28728":4064,"28729":-1,"28730":-1,"28731":-1,"28732":-1,"28733":-1,"28734":-1,"28735":-1,"28736":-1,"28737":0,"28738":-1,"28739":4067,"28740":-1,"28741":4066,"28742":-1,"28743":-1,"28744":-1,"28745":-1,"28746":-1,"28747":4063,"28748":-1,"28749":-1,"28750":-1,"28751":-1,"28752":-1,"28753":-1,"28754":-1,"28755":-1,"28756":-1,"28757":-1,"28758":-1,"28759":4065,"28760":-1,"28761":-1,"28762":-1,"28763":4065,"28764":-1,"28765":4067,"28766":4067,"28767":-1,"28768":-1,"28769":-1,"28770":-1,"28771":-1,"28772":-1,"28773":-1,"28774":4066,"28775":-1,"28776":-1,"28777":-1,"28778":-1,"28779":-1,"28780":-1,"28781":-1,"28782":-1,"28783":4063,"28784":-1,"28785":-1,"28786":-1,"28787":-1,"28788":-1,"28789":-1,"28790":-1,"28791":-1,"28792":-1,"28793":-1,"28794":-1,"28795":-1,"28796":-1,"28797":-1,"28798":-1,"28799":-1,"28800":-1,"28801":-1,"28802":-1,"28803":-1,"28804":-1,"28805":-1,"28806":-1,"28807":-1,"28808":-1,"28809":-1,"28810":-1,"28811":-1,"28812":-1,"28813":-1,"28814":-1,"28815":4068,"28816":0,"28817":-1,"28818":-1,"28819":-1,"28820":-1,"28821":-1,"28822":-1,"28823":-1,"28824":-1,"28825":-1,"28826":-1,"28827":-1,"28828":4065,"28829":-1,"28830":-1,"28831":-1,"28832":-1,"28833":-1,"28834":-1,"28835":4064,"28836":-1,"28837":-1,"28838":-1,"28839":-1,"28840":-1,"28841":-1,"28842":-1,"28843":-1,"28844":0,"28845":-1,"28846":-1,"28847":-1,"28848":-1,"28849":-1,"28850":4068,"28851":-1,"28852":-1,"28853":-1,"28854":-1,"28855":-1,"28856":-1,"28857":-1,"28858":-1,"28859":-1,"28860":-1,"28861":-1,"28862":-1,"28863":-1,"28864":0,"28865":-1,"28866":-1,"28867":-1,"28868":-1,"28869":-1,"28870":4066,"28871":4064,"28872":-1,"28873":-1,"28874":-1,"28875":0,"28876":-1,"28877":4064,"28878":-1,"28879":-1,"28880":-1,"28881":4064,"28882":-1,"28883":4066,"28884":-1,"28885":4065,"28886":-1,"28887":-1,"28888":4067,"28889":-1,"28890":4068,"28891":-1,"28892":-1,"28893":-1,"28894":-1,"28895":4067,"28896":-1,"28897":-1,"28898":-1,"28899":-1,"28900":-1,"28901":-1,"28902":4063,"28903":-1,"28904":-1,"28905":-1,"28906":-1,"28907":-1,"28908":-1,"28909":-1,"28910":-1,"28911":-1,"28912":-1,"28913":-1,"28914":-1,"28915":-1,"28916":-1,"28917":-1,"28918":-1,"28919":4064,"28920":-1,"28921":-1,"28922":-1,"28923":-1,"28924":-1,"28925":-1,"28926":-1,"28927":-1,"28928":0,"28929":4068,"28930":-1,"28931":-1,"28932":-1,"28933":-1,"28934":-1,"28935":-1,"28936":4063,"28937":-1,"28938":-1,"28939":-1,"28940":-1,"28941":-1,"28942":-1,"28943":-1,"28944":-1,"28945":4067,"28946":-1,"28947":-1,"28948":-1,"28949":-1,"28950":-1,"28951":4066,"28952":-1,"28953":-1,"28954":4067,"28955":-1,"28956":-1,"28957":-1,"28958":-1,"28959":-1,"28960":-1,"28961":4064,"28962":-1,"28963":0,"28964":-1,"28965":-1,"28966":-1,"28967":-1,"28968":-1,"28969":4066,"28970":-1,"28971":4066,"28972":4064,"28973":-1,"28974":-1,"28975":-1,"28976":-1,"28977":-1,"28978":-1,"28979":-1,"28980":-1,"28981":-1,"28982":-1,"28983":-1,"28984":-1,"28985":-1,"28986":-1,"28987":-1,"28988":-1,"28989":-1,"28990":-1,"28991":4065,"28992":4066,"28993":-1,"28994":-1,"28995":-1,"28996":-1,"28997":-1,"28998":-1,"28999":-1,"29000":-1,"29001":-1,"29002":-1,"29003":4067,"29004":-1,"29005":-1,"29006":-1,"29007":4064,"29008":-1,"29009":-1,"29010":-1,"29011":-1,"29012":-1,"29013":-1,"29014":-1,"29015":-1,"29016":-1,"29017":-1,"29018":-1,"29019":0,"29020":-1,"29021":4068,"29022":-1,"29023":-1,"29024":-1,"29025":-1,"29026":-1,"29027":-1,"29028":4067,"29029":-1,"29030":-1,"29031":-1,"29032":4066,"29033":0,"29034":-1,"29035":-1,"29036":4064,"29037":-1,"29038":4066,"29039":-1,"29040":-1,"29041":4067,"29042":-1,"29043":-1,"29044":-1,"29045":4068,"29046":-1,"29047":-1,"29048":-1,"29049":-1,"29050":4064,"29051":-1,"29052":-1,"29053":-1,"29054":-1,"29055":-1,"29056":-1,"29057":-1,"29058":-1,"29059":-1,"29060":-1,"29061":-1,"29062":4064,"29063":-1,"29064":-1,"29065":-1,"29066":4067,"29067":-1,"29068":-1,"29069":-1,"29070":-1,"29071":-1,"29072":-1,"29073":-1,"29074":-1,"29075":-1,"29076":4064,"29077":-1,"29078":-1,"29079":-1,"29080":-1,"29081":4065,"29082":-1,"29083":4065,"29084":-1,"29085":-1,"29086":-1,"29087":-1,"29088":-1,"29089":-1,"29090":0,"29091":-1,"29092":-1,"29093":-1,"29094":-1,"29095":0,"29096":-1,"29097":-1,"29098":-1,"29099":-1,"29100":-1,"29101":-1,"29102":4067,"29103":4068,"29104":4067,"29105":-1,"29106":-1,"29107":-1,"29108":-1,"29109":-1,"29110":-1,"29111":-1,"29112":-1,"29113":-1,"29114":-1,"29115":-1,"29116":4066,"29117":4063,"29118":4066,"29119":-1,"29120":-1,"29121":-1,"29122":-1,"29123":-1,"29124":-1,"29125":-1,"29126":-1,"29127":-1,"29128":-1,"29129":-1,"29130":-1,"29131":0,"29132":4068,"29133":4064,"29134":-1,"29135":-1,"29136":4065,"29137":-1,"29138":-1,"29139":-1,"29140":-1,"29141":-1,"29142":-1,"29143":-1,"29144":-1,"29145":-1,"29146":0,"29147":-1,"29148":-1,"29149":-1,"29150":4068,"29151":-1,"29152":-1,"29153":-1,"29154":-1,"29155":-1,"29156":-1,"29157":-1,"29158":-1,"29159":-1,"29160":-1,"29161":-1,"29162":-1,"29163":-1,"29164":-1,"29165":-1,"29166":-1,"29167":4065,"29168":4064,"29169":-1,"29170":-1,"29171":-1,"29172":-1,"29173":-1,"29174":-1,"29175":-1,"29176":-1,"29177":-1,"29178":-1,"29179":-1,"29180":-1,"29181":-1,"29182":-1,"29183":-1,"29184":-1,"29185":-1,"29186":-1,"29187":-1,"29188":-1,"29189":4066,"29190":-1,"29191":-1,"29192":-1,"29193":-1,"29194":-1,"29195":4066,"29196":-1,"29197":4065,"29198":-1,"29199":4067,"29200":-1,"29201":-1,"29202":-1,"29203":-1,"29204":-1,"29205":-1,"29206":4067,"29207":-1,"29208":-1,"29209":4063,"29210":-1,"29211":-1,"29212":-1,"29213":-1,"29214":-1,"29215":-1,"29216":-1,"29217":-1,"29218":-1,"29219":-1,"29220":-1,"29221":-1,"29222":-1,"29223":-1,"29224":4063,"29225":-1,"29226":-1,"29227":-1,"29228":-1,"29229":4064,"29230":-1,"29231":-1,"29232":-1,"29233":-1,"29234":-1,"29235":-1,"29236":-1,"29237":-1,"29238":-1,"29239":-1,"29240":-1,"29241":-1,"29242":-1,"29243":-1,"29244":4066,"29245":4064,"29246":-1,"29247":-1,"29248":-1,"29249":-1,"29250":-1,"29251":-1,"29252":-1,"29253":-1,"29254":-1,"29255":-1,"29256":4067,"29257":-1,"29258":-1,"29259":-1,"29260":-1,"29261":-1,"29262":-1,"29263":-1,"29264":-1,"29265":-1,"29266":-1,"29267":-1,"29268":-1,"29269":4067,"29270":-1,"29271":-1,"29272":-1,"29273":-1,"29274":-1,"29275":-1,"29276":-1,"29277":-1,"29278":-1,"29279":-1,"29280":-1,"29281":-1,"29282":-1,"29283":-1,"29284":-1,"29285":-1,"29286":-1,"29287":-1,"29288":-1,"29289":4068,"29290":0,"29291":-1,"29292":4064,"29293":4067,"29294":4066,"29295":-1,"29296":4066,"29297":-1,"29298":-1,"29299":-1,"29300":4064,"29301":4063,"29302":-1,"29303":-1,"29304":-1,"29305":-1,"29306":-1,"29307":-1,"29308":-1,"29309":-1,"29310":-1,"29311":-1,"29312":-1,"29313":-1,"29314":4066,"29315":-1,"29316":0,"29317":-1,"29318":-1,"29319":-1,"29320":-1,"29321":4066,"29322":-1,"29323":-1,"29324":-1,"29325":-1,"29326":-1,"29327":-1,"29328":-1,"29329":4064,"29330":4065,"29331":-1,"29332":-1,"29333":-1,"29334":-1,"29335":-1,"29336":-1,"29337":-1,"29338":-1,"29339":-1,"29340":4064,"29341":0,"29342":4065,"29343":-1,"29344":-1,"29345":-1,"29346":-1,"29347":-1,"29348":-1,"29349":-1,"29350":-1,"29351":-1,"29352":-1,"29353":-1,"29354":-1,"29355":4065,"29356":-1,"29357":-1,"29358":-1,"29359":-1,"29360":-1,"29361":-1,"29362":4064,"29363":-1,"29364":-1,"29365":-1,"29366":-1,"29367":-1,"29368":-1,"29369":-1,"29370":4065,"29371":-1,"29372":-1,"29373":-1,"29374":-1,"29375":-1,"29376":-1,"29377":-1,"29378":4067,"29379":-1,"29380":-1,"29381":-1,"29382":-1,"29383":0,"29384":-1,"29385":4067,"29386":-1,"29387":-1,"29388":-1,"29389":-1,"29390":-1,"29391":-1,"29392":-1,"29393":-1,"29394":-1,"29395":-1,"29396":-1,"29397":-1,"29398":-1,"29399":-1,"29400":-1,"29401":-1,"29402":-1,"29403":0,"29404":-1,"29405":-1,"29406":-1,"29407":-1,"29408":-1,"29409":-1,"29410":-1,"29411":-1,"29412":-1,"29413":-1,"29414":-1,"29415":-1,"29416":-1,"29417":-1,"29418":-1,"29419":-1,"29420":-1,"29421":-1,"29422":-1,"29423":-1,"29424":-1,"29425":-1,"29426":-1,"29427":-1,"29428":-1,"29429":-1,"29430":-1,"29431":-1,"29432":4064,"29433":-1,"29434":-1,"29435":-1,"29436":-1,"29437":-1,"29438":-1,"29439":-1,"29440":-1,"29441":-1,"29442":-1,"29443":-1,"29444":-1,"29445":-1,"29446":-1,"29447":-1,"29448":-1,"29449":-1,"29450":-1,"29451":-1,"29452":-1,"29453":4066,"29454":-1,"29455":4067,"29456":4063,"29457":-1,"29458":-1,"29459":-1,"29460":-1,"29461":-1,"29462":-1,"29463":-1,"29464":-1,"29465":-1,"29466":-1,"29467":0,"29468":-1,"29469":-1,"29470":-1,"29471":-1,"29472":-1,"29473":-1,"29474":-1,"29475":-1,"29476":-1,"29477":-1,"29478":-1,"29479":-1,"29480":-1,"29481":4065,"29482":-1,"29483":-1,"29484":-1,"29485":-1,"29486":-1,"29487":-1,"29488":-1,"29489":-1,"29490":-1,"29491":-1,"29492":-1,"29493":-1,"29494":-1,"29495":-1,"29496":-1,"29497":-1,"29498":-1,"29499":-1,"29500":4066,"29501":4064,"29502":-1,"29503":-1,"29504":-1,"29505":-1,"29506":-1,"29507":-1,"29508":-1,"29509":-1,"29510":-1,"29511":-1,"29512":-1,"29513":-1,"29514":-1,"29515":4065,"29516":-1,"29517":-1,"29518":-1,"29519":-1,"29520":-1,"29521":4067,"29522":-1,"29523":4067,"29524":-1,"29525":-1,"29526":-1,"29527":4067,"29528":-1,"29529":-1,"29530":4065,"29531":-1,"29532":4064,"29533":-1,"29534":4064,"29535":-1,"29536":-1,"29537":-1,"29538":-1,"29539":-1,"29540":-1,"29541":-1,"29542":-1,"29543":-1,"29544":-1,"29545":-1,"29546":-1,"29547":-1,"29548":-1,"29549":-1,"29550":-1,"29551":-1,"29552":-1,"29553":-1,"29554":-1,"29555":-1,"29556":4065,"29557":-1,"29558":-1,"29559":-1,"29560":-1,"29561":-1,"29562":-1,"29563":-1,"29564":-1,"29565":-1,"29566":-1,"29567":-1,"29568":-1,"29569":-1,"29570":-1,"29571":-1,"29572":-1,"29573":-1,"29574":0,"29575":-1,"29576":-1,"29577":-1,"29578":-1,"29579":-1,"29580":-1,"29581":-1,"29582":-1,"29583":-1,"29584":-1,"29585":-1,"29586":0,"29587":-1,"29588":-1,"29589":-1,"29590":-1,"29591":-1,"29592":-1,"29593":-1,"29594":-1,"29595":-1,"29596":-1,"29597":-1,"29598":-1,"29599":4063,"29600":-1,"29601":-1,"29602":-1,"29603":-1,"29604":-1,"29605":-1,"29606":4067,"29607":-1,"29608":-1,"29609":-1,"29610":-1,"29611":-1,"29612":-1,"29613":-1,"29614":-1,"29615":-1,"29616":-1,"29617":-1,"29618":-1,"29619":-1,"29620":-1,"29621":-1,"29622":-1,"29623":-1,"29624":-1,"29625":-1,"29626":-1,"29627":4065,"29628":-1,"29629":-1,"29630":-1,"29631":-1,"29632":-1,"29633":-1,"29634":-1,"29635":-1,"29636":4068,"29637":-1,"29638":-1,"29639":-1,"29640":-1,"29641":-1,"29642":-1,"29643":-1,"29644":-1,"29645":-1,"29646":-1,"29647":4068,"29648":-1,"29649":-1,"29650":-1,"29651":-1,"29652":-1,"29653":-1,"29654":4063,"29655":4066,"29656":-1,"29657":-1,"29658":-1,"29659":-1,"29660":-1,"29661":-1,"29662":-1,"29663":-1,"29664":4065,"29665":-1,"29666":-1,"29667":0,"29668":-1,"29669":-1,"29670":-1,"29671":-1,"29672":-1,"29673":-1,"29674":4068,"29675":-1,"29676":-1,"29677":-1,"29678":-1,"29679":4064,"29680":-1,"29681":-1,"29682":-1,"29683":-1,"29684":-1,"29685":-1,"29686":-1,"29687":-1,"29688":-1,"29689":-1,"29690":4063,"29691":-1,"29692":4065,"29693":-1,"29694":-1,"29695":-1,"29696":-1,"29697":-1,"29698":-1,"29699":-1,"29700":4065,"29701":4064,"29702":4067,"29703":-1,"29704":-1,"29705":-1,"29706":-1,"29707":-1,"29708":-1,"29709":-1,"29710":-1,"29711":-1,"29712":4066,"29713":-1,"29714":4066,"29715":-1,"29716":-1,"29717":-1,"29718":-1,"29719":-1,"29720":-1,"29721":-1,"29722":-1,"29723":-1,"29724":-1,"29725":-1,"29726":-1,"29727":-1,"29728":-1,"29729":-1,"29730":4066,"29731":-1,"29732":-1,"29733":-1,"29734":-1,"29735":-1,"29736":-1,"29737":-1,"29738":-1,"29739":-1,"29740":-1,"29741":-1,"29742":-1,"29743":-1,"29744":-1,"29745":-1,"29746":-1,"29747":-1,"29748":-1,"29749":-1,"29750":-1,"29751":4065,"29752":-1,"29753":-1,"29754":-1,"29755":4067,"29756":4063,"29757":-1,"29758":4063,"29759":-1,"29760":-1,"29761":-1,"29762":-1,"29763":-1,"29764":0,"29765":-1,"29766":-1,"29767":-1,"29768":-1,"29769":-1,"29770":-1,"29771":-1,"29772":-1,"29773":-1,"29774":-1,"29775":-1,"29776":-1,"29777":-1,"29778":-1,"29779":-1,"29780":-1,"29781":-1,"29782":-1,"29783":-1,"29784":-1,"29785":-1,"29786":4066,"29787":-1,"29788":-1,"29789":-1,"29790":-1,"29791":-1,"29792":4063,"29793":-1,"29794":-1,"29795":-1,"29796":-1,"29797":-1,"29798":-1,"29799":-1,"29800":-1,"29801":-1,"29802":-1,"29803":-1,"29804":-1,"29805":-1,"29806":-1,"29807":-1,"29808":-1,"29809":-1,"29810":-1,"29811":4064,"29812":-1,"29813":-1,"29814":-1,"29815":-1,"29816":-1,"29817":-1,"29818":-1,"29819":4066,"29820":-1,"29821":4068,"29822":-1,"29823":-1,"29824":4065,"29825":-1,"29826":-1,"29827":-1,"29828":-1,"29829":-1,"29830":-1,"29831":-1,"29832":-1,"29833":-1,"29834":-1,"29835":-1,"29836":-1,"29837":-1,"29838":-1,"29839":-1,"29840":4064,"29841":-1,"29842":-1,"29843":-1,"29844":-1,"29845":-1,"29846":-1,"29847":-1,"29848":-1,"29849":-1,"29850":0,"29851":-1,"29852":-1,"29853":-1,"29854":4065,"29855":-1,"29856":-1,"29857":4067,"29858":-1,"29859":-1,"29860":-1,"29861":-1,"29862":-1,"29863":-1,"29864":-1,"29865":-1,"29866":0,"29867":-1,"29868":-1,"29869":-1,"29870":-1,"29871":-1,"29872":-1,"29873":-1,"29874":-1,"29875":-1,"29876":-1,"29877":-1,"29878":-1,"29879":-1,"29880":-1,"29881":-1,"29882":-1,"29883":-1,"29884":-1,"29885":-1,"29886":4066,"29887":-1,"29888":-1,"29889":-1,"29890":-1,"29891":-1,"29892":-1,"29893":-1,"29894":4065,"29895":-1,"29896":4067,"29897":-1,"29898":-1,"29899":-1,"29900":-1,"29901":-1,"29902":-1,"29903":-1,"29904":-1,"29905":-1,"29906":-1,"29907":-1,"29908":-1,"29909":-1,"29910":4066,"29911":-1,"29912":-1,"29913":-1,"29914":-1,"29915":4064,"29916":-1,"29917":-1,"29918":-1,"29919":-1,"29920":-1,"29921":-1,"29922":-1,"29923":-1,"29924":-1,"29925":-1,"29926":-1,"29927":-1,"29928":-1,"29929":-1,"29930":-1,"29931":4068,"29932":-1,"29933":-1,"29934":-1,"29935":4066,"29936":-1,"29937":-1,"29938":-1,"29939":-1,"29940":-1,"29941":-1,"29942":-1,"29943":4067,"29944":-1,"29945":-1,"29946":-1,"29947":-1,"29948":-1,"29949":-1,"29950":4064,"29951":-1,"29952":-1,"29953":4064,"29954":-1,"29955":-1,"29956":-1,"29957":-1,"29958":4067,"29959":-1,"29960":-1,"29961":-1,"29962":-1,"29963":-1,"29964":4067,"29965":-1,"29966":-1,"29967":-1,"29968":-1,"29969":-1,"29970":-1,"29971":-1,"29972":-1,"29973":-1,"29974":-1,"29975":4064,"29976":-1,"29977":-1,"29978":-1,"29979":-1,"29980":-1,"29981":-1,"29982":-1,"29983":-1,"29984":-1,"29985":-1,"29986":-1,"29987":-1,"29988":-1,"29989":-1,"29990":-1,"29991":0,"29992":-1,"29993":4067,"29994":-1,"29995":4064,"29996":-1,"29997":-1,"29998":-1,"29999":-1,"30000":-1,"30001":-1,"30002":-1,"30003":-1,"30004":4066,"30005":-1,"30006":-1,"30007":0,"30008":-1,"30009":-1,"30010":-1,"30011":-1,"30012":-1,"30013":-1,"30014":-1,"30015":-1,"30016":-1,"30017":4065,"30018":-1,"30019":-1,"30020":4063,"30021":4064,"30022":-1,"30023":-1,"30024":-1,"30025":-1,"30026":0,"30027":-1,"30028":-1,"30029":-1,"30030":-1,"30031":-1,"30032":-1,"30033":-1,"30034":-1,"30035":-1,"30036":-1,"30037":-1,"30038":-1,"30039":-1,"30040":-1,"30041":-1,"30042":-1,"30043":-1,"30044":-1,"30045":-1,"30046":4067,"30047":-1,"30048":-1,"30049":-1,"30050":-1,"30051":4065,"30052":-1,"30053":-1,"30054":-1,"30055":-1,"30056":-1,"30057":4066,"30058":4066,"30059":-1,"30060":-1,"30061":-1,"30062":-1,"30063":-1,"30064":-1,"30065":-1,"30066":-1,"30067":-1,"30068":-1,"30069":4066,"30070":-1,"30071":-1,"30072":4067,"30073":-1,"30074":4064,"30075":4064,"30076":-1,"30077":-1,"30078":-1,"30079":-1,"30080":-1,"30081":-1,"30082":-1,"30083":-1,"30084":-1,"30085":-1,"30086":-1,"30087":-1,"30088":-1,"30089":-1,"30090":4067,"30091":-1,"30092":-1,"30093":4068,"30094":-1,"30095":-1,"30096":4067,"30097":4067,"30098":-1,"30099":-1,"30100":-1,"30101":-1,"30102":-1,"30103":-1,"30104":-1,"30105":4066,"30106":4066,"30107":-1,"30108":-1,"30109":-1,"30110":-1,"30111":-1,"30112":4066,"30113":-1,"30114":-1,"30115":-1,"30116":-1,"30117":-1,"30118":-1,"30119":4067,"30120":-1,"30121":-1,"30122":-1,"30123":-1,"30124":-1,"30125":-1,"30126":-1,"30127":-1,"30128":4065,"30129":-1,"30130":-1,"30131":0,"30132":-1,"30133":-1,"30134":-1,"30135":-1,"30136":-1,"30137":-1,"30138":-1,"30139":0,"30140":-1,"30141":-1,"30142":-1,"30143":-1,"30144":-1,"30145":4066,"30146":-1,"30147":-1,"30148":4067,"30149":-1,"30150":-1,"30151":-1,"30152":-1,"30153":-1,"30154":4063,"30155":-1,"30156":-1,"30157":-1,"30158":-1,"30159":-1,"30160":-1,"30161":-1,"30162":-1,"30163":-1,"30164":-1,"30165":-1,"30166":-1,"30167":4066,"30168":4065,"30169":-1,"30170":-1,"30171":-1,"30172":0,"30173":-1,"30174":-1,"30175":-1,"30176":-1,"30177":-1,"30178":-1,"30179":-1,"30180":4066,"30181":4066,"30182":-1,"30183":-1,"30184":-1,"30185":-1,"30186":4063,"30187":-1,"30188":4065,"30189":-1,"30190":-1,"30191":4067,"30192":-1,"30193":-1,"30194":-1,"30195":-1,"30196":-1,"30197":4068,"30198":-1,"30199":-1,"30200":-1,"30201":-1,"30202":-1,"30203":-1,"30204":-1,"30205":-1,"30206":-1,"30207":-1,"30208":-1,"30209":-1,"30210":-1,"30211":-1,"30212":-1,"30213":-1,"30214":-1,"30215":4067,"30216":-1,"30217":-1,"30218":4067,"30219":-1,"30220":-1,"30221":-1,"30222":-1,"30223":-1,"30224":-1,"30225":-1,"30226":-1,"30227":-1,"30228":4068,"30229":-1,"30230":-1,"30231":4066,"30232":-1,"30233":-1,"30234":-1,"30235":-1,"30236":-1,"30237":-1,"30238":-1,"30239":-1,"30240":-1,"30241":4068,"30242":0,"30243":-1,"30244":-1,"30245":-1,"30246":-1,"30247":-1,"30248":-1,"30249":-1,"30250":-1,"30251":-1,"30252":-1,"30253":-1,"30254":-1,"30255":-1,"30256":-1,"30257":-1,"30258":-1,"30259":-1,"30260":-1,"30261":-1,"30262":-1,"30263":-1,"30264":-1,"30265":4064,"30266":-1,"30267":-1,"30268":-1,"30269":-1,"30270":-1,"30271":-1,"30272":-1,"30273":-1,"30274":-1,"30275":-1,"30276":-1,"30277":-1,"30278":-1,"30279":-1,"30280":-1,"30281":4066,"30282":0,"30283":-1,"30284":-1,"30285":-1,"30286":-1,"30287":4067,"30288":-1,"30289":-1,"30290":-1,"30291":-1,"30292":-1,"30293":-1,"30294":-1,"30295":-1,"30296":-1,"30297":-1,"30298":-1,"30299":-1,"30300":-1,"30301":-1,"30302":-1,"30303":4064,"30304":-1,"30305":-1,"30306":-1,"30307":-1,"30308":-1,"30309":4063,"30310":-1,"30311":-1,"30312":-1,"30313":-1,"30314":-1,"30315":4068,"30316":-1,"30317":-1,"30318":-1,"30319":4066,"30320":-1,"30321":-1,"30322":-1,"30323":-1,"30324":-1,"30325":-1,"30326":-1,"30327":4066,"30328":-1,"30329":-1,"30330":-1,"30331":-1,"30332":-1,"30333":-1,"30334":-1,"30335":-1,"30336":4066,"30337":-1,"30338":-1,"30339":-1,"30340":-1,"30341":-1,"30342":-1,"30343":-1,"30344":-1,"30345":4066,"30346":4068,"30347":-1,"30348":-1,"30349":4064,"30350":-1,"30351":0,"30352":-1,"30353":-1,"30354":-1,"30355":-1,"30356":-1,"30357":-1,"30358":4066,"30359":-1,"30360":-1,"30361":-1,"30362":4066,"30363":0,"30364":-1,"30365":-1,"30366":-1,"30367":-1,"30368":0,"30369":0,"30370":-1,"30371":4066,"30372":-1,"30373":-1,"30374":-1,"30375":-1,"30376":-1,"30377":-1,"30378":-1,"30379":-1,"30380":-1,"30381":-1,"30382":-1,"30383":-1,"30384":-1,"30385":-1,"30386":-1,"30387":-1,"30388":-1,"30389":-1,"30390":-1,"30391":-1,"30392":-1,"30393":-1,"30394":-1,"30395":4063,"30396":4064,"30397":-1,"30398":-1,"30399":0,"30400":-1,"30401":4064,"30402":-1,"30403":-1,"30404":-1,"30405":4063,"30406":-1,"30407":-1,"30408":-1,"30409":4066,"30410":-1,"30411":-1,"30412":-1,"30413":-1,"30414":-1,"30415":-1,"30416":-1,"30417":-1,"30418":-1,"30419":4066,"30420":-1,"30421":-1,"30422":-1,"30423":-1,"30424":-1,"30425":4066,"30426":-1,"30427":-1,"30428":-1,"30429":-1,"30430":-1,"30431":-1,"30432":0,"30433":-1,"30434":-1,"30435":-1,"30436":-1,"30437":-1,"30438":-1,"30439":-1,"30440":-1,"30441":-1,"30442":-1,"30443":-1,"30444":-1,"30445":0,"30446":-1,"30447":-1,"30448":-1,"30449":-1,"30450":4064,"30451":-1,"30452":-1,"30453":-1,"30454":-1,"30455":-1,"30456":-1,"30457":-1,"30458":-1,"30459":-1,"30460":4064,"30461":-1,"30462":-1,"30463":4064,"30464":-1,"30465":-1,"30466":-1,"30467":4067,"30468":-1,"30469":-1,"30470":-1,"30471":-1,"30472":-1,"30473":-1,"30474":-1,"30475":4064,"30476":-1,"30477":-1,"30478":4066,"30479":-1,"30480":-1,"30481":-1,"30482":-1,"30483":-1,"30484":-1,"30485":-1,"30486":4067,"30487":-1,"30488":-1,"30489":-1,"30490":0,"30491":-1,"30492":-1,"30493":-1,"30494":4064,"30495":-1,"30496":-1,"30497":-1,"30498":4064,"30499":-1,"30500":-1,"30501":-1,"30502":-1,"30503":-1,"30504":-1,"30505":-1,"30506":4064,"30507":4067,"30508":-1,"30509":-1,"30510":-1,"30511":-1,"30512":-1,"30513":4064,"30514":4065,"30515":-1,"30516":0,"30517":4063,"30518":-1,"30519":-1,"30520":-1,"30521":-1,"30522":-1,"30523":-1,"30524":4066,"30525":-1,"30526":-1,"30527":-1,"30528":-1,"30529":4065,"30530":-1,"30531":-1,"30532":-1,"30533":4065,"30534":-1,"30535":-1,"30536":-1,"30537":-1,"30538":-1,"30539":-1,"30540":-1,"30541":-1,"30542":-1,"30543":-1,"30544":4066,"30545":4065,"30546":-1,"30547":-1,"30548":4067,"30549":-1,"30550":4068,"30551":4065,"30552":-1,"30553":-1,"30554":-1,"30555":-1,"30556":-1,"30557":-1,"30558":-1,"30559":-1,"30560":4067,"30561":-1,"30562":-1,"30563":-1,"30564":-1,"30565":4068,"30566":-1,"30567":-1,"30568":-1,"30569":-1,"30570":-1,"30571":4067,"30572":-1,"30573":0,"30574":-1,"30575":-1,"30576":-1,"30577":-1,"30578":-1,"30579":-1,"30580":-1,"30581":-1,"30582":-1,"30583":-1,"30584":-1,"30585":-1,"30586":-1,"30587":-1,"30588":-1,"30589":-1,"30590":-1,"30591":-1,"30592":-1,"30593":-1,"30594":-1,"30595":-1,"30596":-1,"30597":-1,"30598":-1,"30599":-1,"30600":-1,"30601":-1,"30602":-1,"30603":4064,"30604":-1,"30605":-1,"30606":-1,"30607":-1,"30608":-1,"30609":-1,"30610":-1,"30611":-1,"30612":-1,"30613":-1,"30614":-1,"30615":-1,"30616":-1,"30617":-1,"30618":-1,"30619":-1,"30620":-1,"30621":-1,"30622":4064,"30623":4067,"30624":-1,"30625":-1,"30626":-1,"30627":-1,"30628":-1,"30629":-1,"30630":-1,"30631":-1,"30632":-1,"30633":-1,"30634":4066,"30635":-1,"30636":0,"30637":-1,"30638":-1,"30639":-1,"30640":-1,"30641":-1,"30642":-1,"30643":-1,"30644":-1,"30645":-1,"30646":-1,"30647":-1,"30648":-1,"30649":4065,"30650":-1,"30651":-1,"30652":4066,"30653":-1,"30654":-1,"30655":-1,"30656":-1,"30657":-1,"30658":-1,"30659":4067,"30660":-1,"30661":-1,"30662":-1,"30663":-1,"30664":-1,"30665":-1,"30666":-1,"30667":-1,"30668":-1,"30669":-1,"30670":4066,"30671":4067,"30672":-1,"30673":-1,"30674":4068,"30675":-1,"30676":-1,"30677":-1,"30678":-1,"30679":-1,"30680":-1,"30681":-1,"30682":-1,"30683":-1,"30684":-1,"30685":-1,"30686":-1,"30687":-1,"30688":-1,"30689":-1,"30690":-1,"30691":-1,"30692":-1,"30693":-1,"30694":-1,"30695":-1,"30696":-1,"30697":4065,"30698":-1,"30699":-1,"30700":-1,"30701":-1,"30702":4064,"30703":-1,"30704":-1,"30705":-1,"30706":-1,"30707":-1,"30708":-1,"30709":-1,"30710":-1,"30711":-1,"30712":-1,"30713":-1,"30714":-1,"30715":-1,"30716":-1,"30717":-1,"30718":-1,"30719":-1,"30720":-1,"30721":-1,"30722":-1,"30723":-1,"30724":-1,"30725":-1,"30726":-1,"30727":-1,"30728":-1,"30729":-1,"30730":-1,"30731":4066,"30732":-1,"30733":-1,"30734":-1,"30735":-1,"30736":4065,"30737":-1,"30738":-1,"30739":-1,"30740":-1,"30741":-1,"30742":4065,"30743":-1,"30744":4066,"30745":-1,"30746":-1,"30747":-1,"30748":-1,"30749":-1,"30750":-1,"30751":-1,"30752":-1,"30753":-1,"30754":-1,"30755":-1,"30756":4066,"30757":-1,"30758":-1,"30759":-1,"30760":-1,"30761":4068,"30762":-1,"30763":-1,"30764":-1,"30765":-1,"30766":-1,"30767":-1,"30768":-1,"30769":-1,"30770":-1,"30771":-1,"30772":-1,"30773":-1,"30774":-1,"30775":-1,"30776":-1,"30777":-1,"30778":4067,"30779":-1,"30780":-1,"30781":4067,"30782":4067,"30783":-1,"30784":-1,"30785":-1,"30786":-1,"30787":-1,"30788":-1,"30789":-1,"30790":-1,"30791":-1,"30792":-1,"30793":4064,"30794":-1,"30795":-1,"30796":-1,"30797":-1,"30798":-1,"30799":0,"30800":-1,"30801":-1,"30802":-1,"30803":-1,"30804":-1,"30805":-1,"30806":-1,"30807":4065,"30808":-1,"30809":-1,"30810":-1,"30811":4064,"30812":-1,"30813":4066,"30814":-1,"30815":-1,"30816":-1,"30817":-1,"30818":-1,"30819":-1,"30820":-1,"30821":-1,"30822":-1,"30823":-1,"30824":-1,"30825":-1,"30826":-1,"30827":-1,"30828":-1,"30829":4067,"30830":-1,"30831":-1,"30832":-1,"30833":-1,"30834":-1,"30835":-1,"30836":-1,"30837":0,"30838":-1,"30839":-1,"30840":-1,"30841":4064,"30842":4068,"30843":-1,"30844":-1,"30845":-1,"30846":-1,"30847":-1,"30848":-1,"30849":-1,"30850":-1,"30851":-1,"30852":-1,"30853":-1,"30854":-1,"30855":-1,"30856":-1,"30857":4067,"30858":-1,"30859":4064,"30860":-1,"30861":-1,"30862":-1,"30863":-1,"30864":4067,"30865":-1,"30866":-1,"30867":-1,"30868":-1,"30869":-1,"30870":-1,"30871":-1,"30872":-1,"30873":-1,"30874":-1,"30875":-1,"30876":-1,"30877":-1,"30878":-1,"30879":-1,"30880":-1,"30881":-1,"30882":4066,"30883":-1,"30884":-1,"30885":-1,"30886":-1,"30887":-1,"30888":-1,"30889":0,"30890":-1,"30891":-1,"30892":-1,"30893":0,"30894":-1,"30895":-1,"30896":-1,"30897":0,"30898":-1,"30899":-1,"30900":4067,"30901":-1,"30902":4066,"30903":-1,"30904":-1,"30905":-1,"30906":-1,"30907":-1,"30908":-1,"30909":-1,"30910":4063,"30911":4065,"30912":-1,"30913":4067,"30914":0,"30915":-1,"30916":-1,"30917":-1,"30918":-1,"30919":-1,"30920":-1,"30921":-1,"30922":-1,"30923":-1,"30924":4066,"30925":-1,"30926":4065,"30927":-1,"30928":-1,"30929":-1,"30930":-1,"30931":-1,"30932":-1,"30933":-1,"30934":-1,"30935":-1,"30936":-1,"30937":-1,"30938":-1,"30939":-1,"30940":-1,"30941":-1,"30942":-1,"30943":-1,"30944":-1,"30945":-1,"30946":4065,"30947":-1,"30948":4065,"30949":4063,"30950":-1,"30951":-1,"30952":-1,"30953":-1,"30954":4066,"30955":4066,"30956":-1,"30957":-1,"30958":-1,"30959":4068,"30960":-1,"30961":-1,"30962":0,"30963":-1,"30964":-1,"30965":-1,"30966":-1,"30967":-1,"30968":-1,"30969":-1,"30970":4066,"30971":4068,"30972":-1,"30973":-1,"30974":-1,"30975":-1,"30976":-1,"30977":-1,"30978":-1,"30979":-1,"30980":-1,"30981":-1,"30982":-1,"30983":-1,"30984":-1,"30985":-1,"30986":-1,"30987":-1,"30988":-1,"30989":4066,"30990":-1,"30991":4065,"30992":-1,"30993":4065,"30994":-1,"30995":4067,"30996":-1,"30997":-1,"30998":-1,"30999":-1,"31000":-1,"31001":4064,"31002":-1,"31003":-1,"31004":4065,"31005":-1,"31006":-1,"31007":4065,"31008":-1,"31009":-1,"31010":-1,"31011":-1,"31012":-1,"31013":-1,"31014":-1,"31015":-1,"31016":-1,"31017":4065,"31018":4067,"31019":-1,"31020":-1,"31021":-1,"31022":-1,"31023":-1,"31024":-1,"31025":4066,"31026":-1,"31027":-1,"31028":-1,"31029":-1,"31030":-1,"31031":-1,"31032":-1,"31033":-1,"31034":-1,"31035":-1,"31036":-1,"31037":-1,"31038":-1,"31039":-1,"31040":-1,"31041":-1,"31042":-1,"31043":-1,"31044":-1,"31045":-1,"31046":-1,"31047":-1,"31048":-1,"31049":-1,"31050":-1,"31051":4067,"31052":-1,"31053":-1,"31054":-1,"31055":-1,"31056":-1,"31057":-1,"31058":-1,"31059":-1,"31060":-1,"31061":-1,"31062":-1,"31063":-1,"31064":4064,"31065":-1,"31066":0,"31067":-1,"31068":-1,"31069":-1,"31070":-1,"31071":-1,"31072":-1,"31073":-1,"31074":4063,"31075":-1,"31076":4067,"31077":-1,"31078":-1,"31079":-1,"31080":-1,"31081":-1,"31082":-1,"31083":-1,"31084":-1,"31085":-1,"31086":-1,"31087":-1,"31088":-1,"31089":-1,"31090":4067,"31091":-1,"31092":-1,"31093":4068,"31094":-1,"31095":-1,"31096":-1,"31097":-1,"31098":-1,"31099":-1,"31100":-1,"31101":4065,"31102":-1,"31103":-1,"31104":-1,"31105":4064,"31106":-1,"31107":-1,"31108":-1,"31109":-1,"31110":-1,"31111":-1,"31112":-1,"31113":4064,"31114":-1,"31115":-1,"31116":-1,"31117":-1,"31118":-1,"31119":-1,"31120":4066,"31121":-1,"31122":-1,"31123":-1,"31124":-1,"31125":4068,"31126":-1,"31127":-1,"31128":-1,"31129":4064,"31130":-1,"31131":-1,"31132":-1,"31133":-1,"31134":-1,"31135":-1,"31136":-1,"31137":4065,"31138":-1,"31139":-1,"31140":4064,"31141":-1,"31142":-1,"31143":-1,"31144":-1,"31145":-1,"31146":4064,"31147":-1,"31148":-1,"31149":-1,"31150":-1,"31151":-1,"31152":4065,"31153":-1,"31154":-1,"31155":-1,"31156":-1,"31157":-1,"31158":-1,"31159":-1,"31160":-1,"31161":4066,"31162":-1,"31163":-1,"31164":-1,"31165":-1,"31166":-1,"31167":-1,"31168":-1,"31169":-1,"31170":-1,"31171":-1,"31172":-1,"31173":-1,"31174":-1,"31175":-1,"31176":-1,"31177":-1,"31178":-1,"31179":-1,"31180":4066,"31181":-1,"31182":-1,"31183":-1,"31184":-1,"31185":-1,"31186":-1,"31187":-1,"31188":-1,"31189":-1,"31190":-1,"31191":-1,"31192":-1,"31193":-1,"31194":-1,"31195":-1,"31196":-1,"31197":-1,"31198":-1,"31199":-1,"31200":4067,"31201":4066,"31202":-1,"31203":-1,"31204":-1,"31205":4065,"31206":-1,"31207":-1,"31208":-1,"31209":-1,"31210":-1,"31211":0,"31212":-1,"31213":-1,"31214":4067,"31215":-1,"31216":-1,"31217":4064,"31218":-1,"31219":-1,"31220":-1,"31221":-1,"31222":-1,"31223":-1,"31224":-1,"31225":-1,"31226":-1,"31227":-1,"31228":-1,"31229":-1,"31230":-1,"31231":-1,"31232":-1,"31233":-1,"31234":-1,"31235":-1,"31236":-1,"31237":4066,"31238":-1,"31239":-1,"31240":-1,"31241":4068,"31242":-1,"31243":-1,"31244":-1,"31245":-1,"31246":-1,"31247":-1,"31248":-1,"31249":-1,"31250":-1,"31251":-1,"31252":-1,"31253":-1,"31254":-1,"31255":-1,"31256":4066,"31257":-1,"31258":-1,"31259":-1,"31260":-1,"31261":0,"31262":-1,"31263":-1,"31264":0,"31265":-1,"31266":-1,"31267":-1,"31268":-1,"31269":-1,"31270":-1,"31271":-1,"31272":4067,"31273":-1,"31274":-1,"31275":4064,"31276":-1,"31277":4065,"31278":-1,"31279":-1,"31280":-1,"31281":-1,"31282":-1,"31283":-1,"31284":-1,"31285":-1,"31286":0,"31287":-1,"31288":-1,"31289":-1,"31290":4066,"31291":4066,"31292":-1,"31293":-1,"31294":-1,"31295":-1,"31296":-1,"31297":-1,"31298":0,"31299":-1,"31300":-1,"31301":-1,"31302":-1,"31303":-1,"31304":-1,"31305":-1,"31306":-1,"31307":-1,"31308":0,"31309":-1,"31310":-1,"31311":-1,"31312":-1,"31313":-1,"31314":-1,"31315":-1,"31316":-1,"31317":-1,"31318":-1,"31319":-1,"31320":-1,"31321":-1,"31322":-1,"31323":4067,"31324":-1,"31325":-1,"31326":-1,"31327":-1,"31328":-1,"31329":-1,"31330":-1,"31331":4067,"31332":-1,"31333":-1,"31334":-1,"31335":-1,"31336":4065,"31337":-1,"31338":-1,"31339":-1,"31340":-1,"31341":-1,"31342":-1,"31343":-1,"31344":-1,"31345":-1,"31346":-1,"31347":-1,"31348":-1,"31349":-1,"31350":-1,"31351":-1,"31352":-1,"31353":-1,"31354":-1,"31355":-1,"31356":-1,"31357":4067,"31358":-1,"31359":-1,"31360":-1,"31361":4063,"31362":-1,"31363":-1,"31364":-1,"31365":-1,"31366":-1,"31367":-1,"31368":-1,"31369":4065,"31370":-1,"31371":-1,"31372":-1,"31373":-1,"31374":-1,"31375":-1,"31376":-1,"31377":0,"31378":-1,"31379":-1,"31380":-1,"31381":-1,"31382":-1,"31383":-1,"31384":-1,"31385":-1,"31386":-1,"31387":4067,"31388":-1,"31389":-1,"31390":-1,"31391":-1,"31392":4067,"31393":4068,"31394":-1,"31395":-1,"31396":-1,"31397":-1,"31398":-1,"31399":-1,"31400":-1,"31401":-1,"31402":-1,"31403":-1,"31404":-1,"31405":-1,"31406":-1,"31407":-1,"31408":-1,"31409":-1,"31410":-1,"31411":-1,"31412":-1,"31413":-1,"31414":-1,"31415":0,"31416":-1,"31417":-1,"31418":-1,"31419":-1,"31420":-1,"31421":-1,"31422":-1,"31423":-1,"31424":-1,"31425":-1,"31426":-1,"31427":-1,"31428":-1,"31429":-1,"31430":-1,"31431":-1,"31432":-1,"31433":4065,"31434":-1,"31435":-1,"31436":-1,"31437":-1,"31438":-1,"31439":-1,"31440":-1,"31441":4067,"31442":-1,"31443":-1,"31444":-1,"31445":-1,"31446":-1,"31447":-1,"31448":-1,"31449":-1,"31450":-1,"31451":4063,"31452":-1,"31453":-1,"31454":-1,"31455":-1,"31456":-1,"31457":-1,"31458":-1,"31459":0,"31460":-1,"31461":-1,"31462":-1,"31463":-1,"31464":-1,"31465":-1,"31466":-1,"31467":-1,"31468":4066,"31469":-1,"31470":-1,"31471":-1,"31472":-1,"31473":-1,"31474":-1,"31475":-1,"31476":-1,"31477":-1,"31478":-1,"31479":4065,"31480":-1,"31481":-1,"31482":-1,"31483":-1,"31484":-1,"31485":-1,"31486":-1,"31487":-1,"31488":-1,"31489":-1,"31490":-1,"31491":4066,"31492":-1,"31493":-1,"31494":-1,"31495":-1,"31496":-1,"31497":-1,"31498":-1,"31499":-1,"31500":-1,"31501":-1,"31502":4065,"31503":0,"31504":-1,"31505":-1,"31506":-1,"31507":-1,"31508":-1,"31509":4063,"31510":4066,"31511":4064,"31512":-1,"31513":-1,"31514":-1,"31515":-1,"31516":-1,"31517":4066,"31518":-1,"31519":-1,"31520":-1,"31521":-1,"31522":-1,"31523":-1,"31524":-1,"31525":4067,"31526":-1,"31527":-1,"31528":-1,"31529":-1,"31530":-1,"31531":-1,"31532":-1,"31533":-1,"31534":-1,"31535":-1,"31536":-1,"31537":-1,"31538":-1,"31539":-1,"31540":-1,"31541":-1,"31542":-1,"31543":-1,"31544":0,"31545":-1,"31546":-1,"31547":-1,"31548":4064,"31549":-1,"31550":-1,"31551":-1,"31552":-1,"31553":-1,"31554":-1,"31555":-1,"31556":-1,"31557":-1,"31558":-1,"31559":4066,"31560":-1,"31561":-1,"31562":-1,"31563":-1,"31564":-1,"31565":-1,"31566":-1,"31567":4065,"31568":4065,"31569":-1,"31570":-1,"31571":-1,"31572":-1,"31573":-1,"31574":-1,"31575":0,"31576":-1,"31577":-1,"31578":-1,"31579":4064,"31580":4064,"31581":-1,"31582":-1,"31583":-1,"31584":-1,"31585":-1,"31586":-1,"31587":-1,"31588":-1,"31589":-1,"31590":-1,"31591":4067,"31592":-1,"31593":-1,"31594":4068,"31595":-1,"31596":-1,"31597":0,"31598":-1,"31599":-1,"31600":-1,"31601":-1,"31602":-1,"31603":-1,"31604":-1,"31605":-1,"31606":4063,"31607":-1,"31608":-1,"31609":4068,"31610":-1,"31611":-1,"31612":-1,"31613":-1,"31614":-1,"31615":-1,"31616":-1,"31617":-1,"31618":-1,"31619":-1,"31620":4066,"31621":-1,"31622":-1,"31623":-1,"31624":-1,"31625":-1,"31626":-1,"31627":-1,"31628":-1,"31629":-1,"31630":4064,"31631":-1,"31632":-1,"31633":-1,"31634":-1,"31635":-1,"31636":-1,"31637":4064,"31638":0,"31639":-1,"31640":-1,"31641":-1,"31642":-1,"31643":-1,"31644":-1,"31645":-1,"31646":-1,"31647":4067,"31648":-1,"31649":-1,"31650":4064,"31651":-1,"31652":4065,"31653":-1,"31654":-1,"31655":4067,"31656":-1,"31657":-1,"31658":-1,"31659":-1,"31660":-1,"31661":-1,"31662":-1,"31663":-1,"31664":-1,"31665":-1,"31666":-1,"31667":-1,"31668":-1,"31669":-1,"31670":-1,"31671":-1,"31672":-1,"31673":-1,"31674":-1,"31675":4066,"31676":-1,"31677":-1,"31678":-1,"31679":-1,"31680":-1,"31681":-1,"31682":-1,"31683":-1,"31684":4065,"31685":-1,"31686":-1,"31687":-1,"31688":-1,"31689":-1,"31690":-1,"31691":-1,"31692":-1,"31693":-1,"31694":4065,"31695":-1,"31696":-1,"31697":-1,"31698":-1,"31699":4066,"31700":-1,"31701":-1,"31702":-1,"31703":-1,"31704":-1,"31705":-1,"31706":-1,"31707":-1,"31708":-1,"31709":-1,"31710":-1,"31711":-1,"31712":-1,"31713":-1,"31714":-1,"31715":-1,"31716":-1,"31717":-1,"31718":-1,"31719":-1,"31720":-1,"31721":-1,"31722":-1,"31723":4065,"31724":-1,"31725":-1,"31726":4063,"31727":-1,"31728":4068,"31729":-1,"31730":-1,"31731":-1,"31732":-1,"31733":-1,"31734":-1,"31735":-1,"31736":-1,"31737":-1,"31738":-1,"31739":-1,"31740":-1,"31741":-1,"31742":-1,"31743":-1,"31744":-1,"31745":-1,"31746":4068,"31747":-1,"31748":-1,"31749":-1,"31750":-1,"31751":-1,"31752":-1,"31753":-1,"31754":-1,"31755":4066,"31756":-1,"31757":4065,"31758":-1,"31759":-1,"31760":-1,"31761":-1,"31762":-1,"31763":-1,"31764":-1,"31765":-1,"31766":-1,"31767":-1,"31768":4067,"31769":-1,"31770":-1,"31771":-1,"31772":-1,"31773":4064,"31774":4064,"31775":4066,"31776":-1,"31777":-1,"31778":-1,"31779":-1,"31780":-1,"31781":-1,"31782":-1,"31783":-1,"31784":-1,"31785":4066,"31786":-1,"31787":4067,"31788":-1,"31789":4064,"31790":-1,"31791":-1,"31792":-1,"31793":-1,"31794":-1,"31795":-1,"31796":-1,"31797":-1,"31798":-1,"31799":-1,"31800":-1,"31801":-1,"31802":-1,"31803":-1,"31804":-1,"31805":-1,"31806":4068,"31807":-1,"31808":-1,"31809":-1,"31810":-1,"31811":-1,"31812":-1,"31813":-1,"31814":4066,"31815":-1,"31816":-1,"31817":0,"31818":-1,"31819":-1,"31820":-1,"31821":4066,"31822":-1,"31823":-1,"31824":-1,"31825":4064,"31826":-1,"31827":-1,"31828":-1,"31829":-1,"31830":-1,"31831":4066,"31832":-1,"31833":4065,"31834":-1,"31835":-1,"31836":-1,"31837":-1,"31838":-1,"31839":-1,"31840":-1,"31841":-1,"31842":-1,"31843":-1,"31844":-1,"31845":-1,"31846":-1,"31847":-1,"31848":-1,"31849":4066,"31850":-1,"31851":-1,"31852":4068,"31853":-1,"31854":-1,"31855":-1,"31856":-1,"31857":-1,"31858":-1,"31859":-1,"31860":-1,"31861":-1,"31862":4066,"31863":-1,"31864":-1,"31865":-1,"31866":-1,"31867":-1,"31868":4065,"31869":-1,"31870":-1,"31871":4067,"31872":-1,"31873":-1,"31874":-1,"31875":-1,"31876":-1,"31877":4067,"31878":-1,"31879":-1,"31880":-1,"31881":-1,"31882":-1,"31883":-1,"31884":4064,"31885":-1,"31886":-1,"31887":-1,"31888":-1,"31889":-1,"31890":-1,"31891":-1,"31892":-1,"31893":-1,"31894":-1,"31895":-1,"31896":-1,"31897":-1,"31898":-1,"31899":-1,"31900":-1,"31901":-1,"31902":-1,"31903":-1,"31904":-1,"31905":-1,"31906":-1,"31907":-1,"31908":-1,"31909":-1,"31910":-1,"31911":-1,"31912":-1,"31913":-1,"31914":-1,"31915":-1,"31916":0,"31917":-1,"31918":-1,"31919":-1,"31920":-1,"31921":-1,"31922":-1,"31923":-1,"31924":-1,"31925":-1,"31926":-1,"31927":4067,"31928":-1,"31929":-1,"31930":4066,"31931":-1,"31932":-1,"31933":-1,"31934":4064,"31935":-1,"31936":-1,"31937":-1,"31938":-1,"31939":-1,"31940":-1,"31941":-1,"31942":-1,"31943":-1,"31944":-1,"31945":-1,"31946":-1,"31947":-1,"31948":-1,"31949":-1,"31950":0,"31951":4063,"31952":-1,"31953":-1,"31954":-1,"31955":-1,"31956":-1,"31957":-1,"31958":-1,"31959":4067,"31960":-1,"31961":-1,"31962":-1,"31963":-1,"31964":-1,"31965":4063,"31966":-1,"31967":-1,"31968":-1,"31969":-1,"31970":-1,"31971":-1,"31972":-1,"31973":4067,"31974":-1,"31975":4066,"31976":-1,"31977":-1,"31978":-1,"31979":-1,"31980":-1,"31981":-1,"31982":-1,"31983":-1,"31984":4064,"31985":-1,"31986":-1,"31987":-1,"31988":4065,"31989":-1,"31990":-1,"31991":-1,"31992":-1,"31993":4064,"31994":-1,"31995":-1,"31996":-1,"31997":-1,"31998":4066,"31999":-1,"32000":-1,"32001":-1,"32002":-1,"32003":4065,"32004":-1,"32005":-1,"32006":-1,"32007":-1,"32008":-1,"32009":-1,"32010":-1,"32011":-1,"32012":-1,"32013":-1,"32014":-1,"32015":-1,"32016":-1,"32017":-1,"32018":-1,"32019":-1,"32020":-1,"32021":-1,"32022":-1,"32023":-1,"32024":4068,"32025":-1,"32026":4065,"32027":-1,"32028":-1,"32029":-1,"32030":-1,"32031":-1,"32032":-1,"32033":4063,"32034":-1,"32035":-1,"32036":-1,"32037":-1,"32038":-1,"32039":-1,"32040":-1,"32041":4064,"32042":-1,"32043":4068,"32044":-1,"32045":-1,"32046":-1,"32047":-1,"32048":-1,"32049":-1,"32050":-1,"32051":-1,"32052":-1,"32053":-1,"32054":-1,"32055":-1,"32056":-1,"32057":-1,"32058":-1,"32059":4063,"32060":-1,"32061":-1,"32062":-1,"32063":4065,"32064":-1,"32065":-1,"32066":-1,"32067":-1,"32068":-1,"32069":-1,"32070":-1,"32071":-1,"32072":-1,"32073":-1,"32074":-1,"32075":-1,"32076":-1,"32077":4064,"32078":-1,"32079":-1,"32080":-1,"32081":4068,"32082":-1,"32083":-1,"32084":-1,"32085":-1,"32086":4065,"32087":-1,"32088":-1,"32089":-1,"32090":-1,"32091":-1,"32092":-1,"32093":-1,"32094":-1,"32095":-1,"32096":-1,"32097":-1,"32098":-1,"32099":-1,"32100":-1,"32101":-1,"32102":-1,"32103":-1,"32104":-1,"32105":-1,"32106":-1,"32107":-1,"32108":-1,"32109":-1,"32110":-1,"32111":-1,"32112":-1,"32113":-1,"32114":-1,"32115":4064,"32116":-1,"32117":-1,"32118":-1,"32119":4067,"32120":-1,"32121":-1,"32122":-1,"32123":0,"32124":-1,"32125":-1,"32126":4066,"32127":4064,"32128":-1,"32129":-1,"32130":-1,"32131":-1,"32132":-1,"32133":-1,"32134":4065,"32135":-1,"32136":-1,"32137":-1,"32138":-1,"32139":-1,"32140":-1,"32141":-1,"32142":-1,"32143":-1,"32144":-1,"32145":-1,"32146":-1,"32147":-1,"32148":-1,"32149":-1,"32150":-1,"32151":-1,"32152":-1,"32153":-1,"32154":-1,"32155":-1,"32156":-1,"32157":-1,"32158":-1,"32159":-1,"32160":-1,"32161":-1,"32162":-1,"32163":-1,"32164":-1,"32165":-1,"32166":-1,"32167":-1,"32168":-1,"32169":-1,"32170":-1,"32171":-1,"32172":-1,"32173":-1,"32174":-1,"32175":0,"32176":4067,"32177":-1,"32178":-1,"32179":-1,"32180":-1,"32181":-1,"32182":4067,"32183":-1,"32184":-1,"32185":-1,"32186":-1,"32187":-1,"32188":-1,"32189":-1,"32190":-1,"32191":4064,"32192":-1,"32193":-1,"32194":-1,"32195":-1,"32196":-1,"32197":-1,"32198":-1,"32199":-1,"32200":-1,"32201":-1,"32202":4066,"32203":-1,"32204":-1,"32205":-1,"32206":0,"32207":-1,"32208":-1,"32209":-1,"32210":-1,"32211":-1,"32212":-1,"32213":-1,"32214":-1,"32215":-1,"32216":-1,"32217":-1,"32218":-1,"32219":-1,"32220":0,"32221":-1,"32222":-1,"32223":-1,"32224":-1,"32225":-1,"32226":-1,"32227":-1,"32228":-1,"32229":-1,"32230":-1,"32231":-1,"32232":-1,"32233":-1,"32234":-1,"32235":4065,"32236":-1,"32237":-1,"32238":-1,"32239":-1,"32240":-1,"32241":-1,"32242":4067,"32243":4066,"32244":0,"32245":4063,"32246":-1,"32247":-1,"32248":-1,"32249":-1,"32250":0,"32251":-1,"32252":-1,"32253":-1,"32254":-1,"32255":-1,"32256":-1,"32257":-1,"32258":-1,"32259":-1,"32260":-1,"32261":-1,"32262":-1,"32263":-1,"32264":-1,"32265":-1,"32266":-1,"32267":-1,"32268":-1,"32269":4067,"32270":-1,"32271":-1,"32272":-1,"32273":-1,"32274":-1,"32275":-1,"32276":-1,"32277":-1,"32278":-1,"32279":-1,"32280":-1,"32281":-1,"32282":-1,"32283":-1,"32284":4065,"32285":-1,"32286":-1,"32287":-1,"32288":-1,"32289":-1,"32290":4065,"32291":-1,"32292":-1,"32293":-1,"32294":-1,"32295":4065,"32296":-1,"32297":-1,"32298":-1,"32299":-1,"32300":4066,"32301":-1,"32302":-1,"32303":-1,"32304":-1,"32305":-1,"32306":-1,"32307":-1,"32308":-1,"32309":-1,"32310":-1,"32311":-1,"32312":-1,"32313":-1,"32314":-1,"32315":-1,"32316":-1,"32317":-1,"32318":-1,"32319":-1,"32320":-1,"32321":-1,"32322":-1,"32323":-1,"32324":-1,"32325":4065,"32326":-1,"32327":0,"32328":-1,"32329":-1,"32330":-1,"32331":-1,"32332":-1,"32333":4064,"32334":-1,"32335":4064,"32336":-1,"32337":-1,"32338":4067,"32339":-1,"32340":-1,"32341":-1,"32342":-1,"32343":-1,"32344":-1,"32345":-1,"32346":-1,"32347":4066,"32348":-1,"32349":-1,"32350":-1,"32351":-1,"32352":-1,"32353":4064,"32354":-1,"32355":-1,"32356":-1,"32357":-1,"32358":4065,"32359":-1,"32360":-1,"32361":-1,"32362":-1,"32363":-1,"32364":-1,"32365":-1,"32366":-1,"32367":-1,"32368":-1,"32369":-1,"32370":-1,"32371":-1,"32372":-1,"32373":-1,"32374":-1,"32375":-1,"32376":-1,"32377":-1,"32378":4067,"32379":4067,"32380":-1,"32381":-1,"32382":-1,"32383":-1,"32384":-1,"32385":-1,"32386":-1,"32387":-1,"32388":-1,"32389":-1,"32390":-1,"32391":-1,"32392":0,"32393":-1,"32394":-1,"32395":-1,"32396":4066,"32397":-1,"32398":4063,"32399":-1,"32400":-1,"32401":-1,"32402":-1,"32403":-1,"32404":-1,"32405":-1,"32406":-1,"32407":-1,"32408":-1,"32409":-1,"32410":-1,"32411":-1,"32412":-1,"32413":-1,"32414":-1,"32415":-1,"32416":-1,"32417":-1,"32418":-1,"32419":-1,"32420":-1,"32421":-1,"32422":-1,"32423":-1,"32424":-1,"32425":-1,"32426":-1,"32427":-1,"32428":4065,"32429":-1,"32430":4067,"32431":4064,"32432":-1,"32433":0,"32434":-1,"32435":-1,"32436":-1,"32437":4067,"32438":-1,"32439":-1,"32440":4067,"32441":-1,"32442":4064,"32443":-1,"32444":-1,"32445":-1,"32446":-1,"32447":-1,"32448":-1,"32449":-1,"32450":-1,"32451":-1,"32452":-1,"32453":-1,"32454":-1,"32455":-1,"32456":-1,"32457":-1,"32458":-1,"32459":0,"32460":-1,"32461":-1,"32462":-1,"32463":-1,"32464":-1,"32465":0,"32466":-1,"32467":-1,"32468":-1,"32469":-1,"32470":-1,"32471":-1,"32472":-1,"32473":-1,"32474":-1,"32475":-1,"32476":-1,"32477":-1,"32478":-1,"32479":4064,"32480":-1,"32481":4065,"32482":-1,"32483":-1,"32484":-1,"32485":-1,"32486":4065,"32487":-1,"32488":-1,"32489":-1,"32490":-1,"32491":-1,"32492":-1,"32493":-1,"32494":-1,"32495":-1,"32496":-1,"32497":-1,"32498":-1,"32499":-1,"32500":-1,"32501":-1,"32502":4066,"32503":-1,"32504":-1,"32505":-1,"32506":-1,"32507":-1,"32508":-1,"32509":-1,"32510":-1,"32511":4066,"32512":4065,"32513":-1,"32514":-1,"32515":-1,"32516":-1,"32517":-1,"32518":-1,"32519":-1,"32520":-1,"32521":-1,"32522":-1,"32523":-1,"32524":-1,"32525":4064,"32526":-1,"32527":-1,"32528":-1,"32529":-1,"32530":-1,"32531":-1,"32532":-1,"32533":-1,"32534":-1,"32535":-1,"32536":-1,"32537":-1,"32538":-1,"32539":-1,"32540":-1,"32541":-1,"32542":-1,"32543":4067,"32544":-1,"32545":4064,"32546":-1,"32547":-1,"32548":-1,"32549":-1,"32550":-1,"32551":-1,"32552":-1,"32553":-1,"32554":-1,"32555":-1,"32556":-1,"32557":-1,"32558":-1,"32559":-1,"32560":-1,"32561":-1,"32562":-1,"32563":-1,"32564":-1,"32565":-1,"32566":-1,"32567":-1,"32568":-1,"32569":-1,"32570":-1,"32571":4065,"32572":-1,"32573":-1,"32574":-1,"32575":-1,"32576":-1,"32577":-1,"32578":-1,"32579":-1,"32580":-1,"32581":-1,"32582":4065,"32583":-1,"32584":-1,"32585":-1,"32586":-1,"32587":-1,"32588":-1,"32589":4067,"32590":-1,"32591":-1,"32592":-1,"32593":-1,"32594":-1,"32595":4068,"32596":-1,"32597":-1,"32598":-1,"32599":0,"32600":-1,"32601":-1,"32602":-1,"32603":4067,"32604":4064,"32605":-1,"32606":-1,"32607":-1,"32608":-1,"32609":-1,"32610":-1,"32611":-1,"32612":-1,"32613":4067,"32614":-1,"32615":-1,"32616":-1,"32617":4066,"32618":-1,"32619":-1,"32620":-1,"32621":-1,"32622":-1,"32623":-1,"32624":-1,"32625":-1,"32626":-1,"32627":-1,"32628":-1,"32629":-1,"32630":-1,"32631":-1,"32632":-1,"32633":-1,"32634":-1,"32635":-1,"32636":0,"32637":-1,"32638":-1,"32639":-1,"32640":-1,"32641":-1,"32642":-1,"32643":4068,"32644":-1,"32645":-1,"32646":-1,"32647":-1,"32648":-1,"32649":-1,"32650":-1,"32651":-1,"32652":-1,"32653":-1,"32654":4068,"32655":-1,"32656":4063,"32657":-1,"32658":-1,"32659":-1,"32660":-1,"32661":-1,"32662":-1,"32663":-1,"32664":-1,"32665":-1,"32666":-1,"32667":-1,"32668":-1,"32669":-1,"32670":-1,"32671":-1,"32672":0,"32673":-1,"32674":4066,"32675":-1,"32676":-1,"32677":-1,"32678":-1,"32679":-1,"32680":-1,"32681":4065,"32682":-1,"32683":-1,"32684":-1,"32685":-1,"32686":-1,"32687":-1,"32688":-1,"32689":4064,"32690":-1,"32691":-1,"32692":-1,"32693":-1,"32694":-1,"32695":4067,"32696":-1,"32697":-1,"32698":-1,"32699":-1,"32700":-1,"32701":-1,"32702":0,"32703":-1,"32704":-1,"32705":-1,"32706":-1,"32707":-1,"32708":-1,"32709":-1,"32710":-1,"32711":-1,"32712":-1,"32713":-1,"32714":-1,"32715":-1,"32716":-1,"32717":-1,"32718":-1,"32719":-1,"32720":-1,"32721":-1,"32722":-1,"32723":-1,"32724":-1,"32725":-1,"32726":-1,"32727":-1,"32728":-1,"32729":-1,"32730":-1,"32731":-1,"32732":-1,"32733":-1,"32734":-1,"32735":-1,"32736":-1,"32737":-1,"32738":4065,"32739":-1,"32740":-1,"32741":-1,"32742":-1,"32743":0,"32744":0,"32745":-1,"32746":-1,"32747":-1,"32748":4067,"32749":-1,"32750":-1,"32751":-1,"32752":-1,"32753":-1,"32754":-1,"32755":-1,"32756":-1,"32757":-1,"32758":-1,"32759":-1,"32760":-1,"32761":-1,"32762":-1,"32763":4065,"32764":-1,"32765":-1,"32766":-1,"32767":-1,"32768":-1,"32769":-1,"32770":-1,"32771":-1,"32772":-1,"32773":-1,"32774":-1,"32775":-1,"32776":-1,"32777":-1,"32778":-1,"32779":4066,"32780":-1,"32781":-1,"32782":-1,"32783":-1,"32784":-1,"32785":-1,"32786":-1,"32787":-1,"32788":-1,"32789":-1,"32790":4067,"32791":-1,"32792":-1,"32793":-1,"32794":-1,"32795":-1,"32796":-1,"32797":-1,"32798":-1,"32799":-1,"32800":-1,"32801":-1,"32802":-1,"32803":-1,"32804":-1,"32805":-1,"32806":-1,"32807":-1,"32808":-1,"32809":-1,"32810":-1,"32811":4067,"32812":-1,"32813":4064,"32814":-1,"32815":-1,"32816":-1,"32817":-1,"32818":-1,"32819":-1,"32820":-1,"32821":-1,"32822":-1,"32823":-1,"32824":-1,"32825":-1,"32826":-1,"32827":-1,"32828":-1,"32829":-1,"32830":-1,"32831":-1,"32832":-1,"32833":0,"32834":-1,"32835":-1,"32836":-1,"32837":-1,"32838":-1,"32839":-1,"32840":-1,"32841":-1,"32842":-1,"32843":4065,"32844":-1,"32845":-1,"32846":-1,"32847":-1,"32848":-1,"32849":-1,"32850":-1,"32851":-1,"32852":-1,"32853":-1,"32854":4067,"32855":-1,"32856":-1,"32857":-1,"32858":4064,"32859":-1,"32860":-1,"32861":-1,"32862":-1,"32863":-1,"32864":4064,"32865":-1,"32866":-1,"32867":-1,"32868":4064,"32869":-1,"32870":-1,"32871":-1,"32872":-1,"32873":-1,"32874":-1,"32875":4064,"32876":-1,"32877":-1,"32878":-1,"32879":-1,"32880":-1,"32881":-1,"32882":-1,"32883":-1,"32884":-1,"32885":-1,"32886":-1,"32887":-1,"32888":0,"32889":-1,"32890":-1,"32891":-1,"32892":4067,"32893":-1,"32894":-1,"32895":-1,"32896":-1,"32897":-1,"32898":-1,"32899":-1,"32900":-1,"32901":4066,"32902":-1,"32903":-1,"32904":-1,"32905":-1,"32906":-1,"32907":-1,"32908":4066,"32909":-1,"32910":-1,"32911":-1,"32912":-1,"32913":-1,"32914":4066,"32915":-1,"32916":-1,"32917":-1,"32918":-1,"32919":-1,"32920":-1,"32921":-1,"32922":-1,"32923":4066,"32924":-1,"32925":-1,"32926":-1,"32927":-1,"32928":-1,"32929":-1,"32930":4066,"32931":-1,"32932":-1,"32933":-1,"32934":-1,"32935":-1,"32936":-1,"32937":-1,"32938":-1,"32939":-1,"32940":-1,"32941":-1,"32942":-1,"32943":4068,"32944":-1,"32945":-1,"32946":-1,"32947":-1,"32948":-1,"32949":4066,"32950":-1,"32951":-1,"32952":-1,"32953":-1,"32954":-1,"32955":4066,"32956":-1,"32957":-1,"32958":-1,"32959":-1,"32960":-1,"32961":-1,"32962":-1,"32963":-1,"32964":-1,"32965":-1,"32966":-1,"32967":4064,"32968":-1,"32969":-1,"32970":-1,"32971":-1,"32972":0,"32973":-1,"32974":4066,"32975":-1,"32976":-1,"32977":-1,"32978":-1,"32979":-1,"32980":-1,"32981":4067,"32982":-1,"32983":-1,"32984":-1,"32985":-1,"32986":-1,"32987":-1,"32988":-1,"32989":-1,"32990":-1,"32991":-1,"32992":-1,"32993":-1,"32994":-1,"32995":-1,"32996":-1,"32997":-1,"32998":-1,"32999":-1,"33000":-1,"33001":-1,"33002":-1,"33003":-1,"33004":-1,"33005":-1,"33006":-1,"33007":-1,"33008":4065,"33009":-1,"33010":-1,"33011":4067,"33012":-1,"33013":-1,"33014":-1,"33015":-1,"33016":-1,"33017":0,"33018":-1,"33019":-1,"33020":-1,"33021":-1,"33022":-1,"33023":-1,"33024":-1,"33025":-1,"33026":-1,"33027":-1,"33028":0,"33029":4068,"33030":-1,"33031":-1,"33032":-1,"33033":-1,"33034":-1,"33035":-1,"33036":-1,"33037":-1,"33038":-1,"33039":-1,"33040":-1,"33041":-1,"33042":-1,"33043":-1,"33044":-1,"33045":4066,"33046":-1,"33047":-1,"33048":-1,"33049":4067,"33050":-1,"33051":-1,"33052":-1,"33053":-1,"33054":-1,"33055":-1,"33056":4064,"33057":-1,"33058":-1,"33059":-1,"33060":-1,"33061":-1,"33062":-1,"33063":-1,"33064":-1,"33065":-1,"33066":-1,"33067":4065,"33068":4067,"33069":-1,"33070":-1,"33071":-1,"33072":-1,"33073":-1,"33074":-1,"33075":-1,"33076":-1,"33077":-1,"33078":-1,"33079":-1,"33080":-1,"33081":-1,"33082":-1,"33083":-1,"33084":-1,"33085":-1,"33086":-1,"33087":-1,"33088":-1,"33089":4065,"33090":-1,"33091":-1,"33092":4065,"33093":-1,"33094":-1,"33095":-1,"33096":-1,"33097":-1,"33098":4063,"33099":-1,"33100":4066,"33101":-1,"33102":4067,"33103":-1,"33104":-1,"33105":4068,"33106":-1,"33107":-1,"33108":-1,"33109":-1,"33110":-1,"33111":-1,"33112":-1,"33113":-1,"33114":-1,"33115":-1,"33116":-1,"33117":-1,"33118":0,"33119":-1,"33120":-1,"33121":-1,"33122":4065,"33123":-1,"33124":-1,"33125":-1,"33126":-1,"33127":-1,"33128":-1,"33129":-1,"33130":-1,"33131":-1,"33132":-1,"33133":4065,"33134":4065,"33135":-1,"33136":-1,"33137":-1,"33138":-1,"33139":-1,"33140":-1,"33141":0,"33142":0,"33143":-1,"33144":-1,"33145":-1,"33146":-1,"33147":-1,"33148":-1,"33149":-1,"33150":-1,"33151":-1,"33152":-1,"33153":-1,"33154":-1,"33155":-1,"33156":-1,"33157":-1,"33158":-1,"33159":-1,"33160":-1,"33161":-1,"33162":-1,"33163":-1,"33164":-1,"33165":-1,"33166":-1,"33167":-1,"33168":-1,"33169":-1,"33170":-1,"33171":-1,"33172":-1,"33173":-1,"33174":-1,"33175":-1,"33176":-1,"33177":-1,"33178":-1,"33179":-1,"33180":-1,"33181":-1,"33182":-1,"33183":4064,"33184":0,"33185":-1,"33186":-1,"33187":-1,"33188":-1,"33189":-1,"33190":-1,"33191":-1,"33192":4067,"33193":-1,"33194":-1,"33195":-1,"33196":-1,"33197":-1,"33198":-1,"33199":-1,"33200":-1,"33201":-1,"33202":-1,"33203":-1,"33204":-1,"33205":-1,"33206":-1,"33207":-1,"33208":-1,"33209":-1,"33210":-1,"33211":-1,"33212":-1,"33213":-1,"33214":-1,"33215":-1,"33216":-1,"33217":-1,"33218":-1,"33219":-1,"33220":4064,"33221":-1,"33222":4067,"33223":-1,"33224":-1,"33225":-1,"33226":4064,"33227":-1,"33228":-1,"33229":-1,"33230":-1,"33231":-1,"33232":-1,"33233":4066,"33234":-1,"33235":0,"33236":-1,"33237":-1,"33238":4064,"33239":-1,"33240":-1,"33241":-1,"33242":4066,"33243":-1,"33244":4066,"33245":-1,"33246":-1,"33247":-1,"33248":-1,"33249":-1,"33250":-1,"33251":-1,"33252":-1,"33253":-1,"33254":0,"33255":-1,"33256":-1,"33257":-1,"33258":4065,"33259":-1,"33260":0,"33261":-1,"33262":-1,"33263":-1,"33264":-1,"33265":-1,"33266":-1,"33267":-1,"33268":-1,"33269":0,"33270":4063,"33271":-1,"33272":-1,"33273":-1,"33274":-1,"33275":-1,"33276":-1,"33277":0,"33278":-1,"33279":-1,"33280":-1,"33281":4068,"33282":-1,"33283":-1,"33284":-1,"33285":-1,"33286":-1,"33287":-1,"33288":-1,"33289":-1,"33290":-1,"33291":4064,"33292":4068,"33293":-1,"33294":-1,"33295":-1,"33296":4064,"33297":-1,"33298":-1,"33299":-1,"33300":-1,"33301":-1,"33302":-1,"33303":-1,"33304":-1,"33305":-1,"33306":-1,"33307":4065,"33308":-1,"33309":-1,"33310":-1,"33311":-1,"33312":4066,"33313":-1,"33314":-1,"33315":0,"33316":-1,"33317":-1,"33318":-1,"33319":-1,"33320":-1,"33321":-1,"33322":-1,"33323":-1,"33324":-1,"33325":0,"33326":-1,"33327":-1,"33328":-1,"33329":-1,"33330":-1,"33331":-1,"33332":-1,"33333":-1,"33334":-1,"33335":-1,"33336":-1,"33337":-1,"33338":-1,"33339":-1,"33340":4064,"33341":-1,"33342":-1,"33343":-1,"33344":-1,"33345":0,"33346":-1,"33347":-1,"33348":0,"33349":0,"33350":-1,"33351":-1,"33352":-1,"33353":-1,"33354":-1,"33355":-1,"33356":-1,"33357":-1,"33358":-1,"33359":-1,"33360":-1,"33361":-1,"33362":-1,"33363":-1,"33364":-1,"33365":-1,"33366":-1,"33367":4063,"33368":-1,"33369":-1,"33370":-1,"33371":4064,"33372":-1,"33373":4068,"33374":-1,"33375":-1,"33376":-1,"33377":-1,"33378":-1,"33379":-1,"33380":-1,"33381":-1,"33382":-1,"33383":-1,"33384":0,"33385":-1,"33386":-1,"33387":-1,"33388":-1,"33389":-1,"33390":4068,"33391":4064,"33392":-1,"33393":-1,"33394":-1,"33395":-1,"33396":-1,"33397":-1,"33398":-1,"33399":-1,"33400":-1,"33401":-1,"33402":0,"33403":-1,"33404":-1,"33405":-1,"33406":-1,"33407":-1,"33408":-1,"33409":-1,"33410":-1,"33411":-1,"33412":-1,"33413":-1,"33414":-1,"33415":-1,"33416":-1,"33417":-1,"33418":-1,"33419":-1,"33420":-1,"33421":-1,"33422":-1,"33423":-1,"33424":4067,"33425":-1,"33426":4066,"33427":-1,"33428":-1,"33429":-1,"33430":-1,"33431":-1,"33432":4065,"33433":-1,"33434":0,"33435":-1,"33436":4066,"33437":-1,"33438":4064,"33439":-1,"33440":4065,"33441":-1,"33442":-1,"33443":4066,"33444":-1,"33445":-1,"33446":-1,"33447":-1,"33448":-1,"33449":-1,"33450":-1,"33451":-1,"33452":-1,"33453":-1,"33454":-1,"33455":-1,"33456":-1,"33457":-1,"33458":-1,"33459":-1,"33460":4068,"33461":-1,"33462":-1,"33463":-1,"33464":4065,"33465":-1,"33466":-1,"33467":-1,"33468":-1,"33469":4067,"33470":-1,"33471":-1,"33472":-1,"33473":4066,"33474":-1,"33475":-1,"33476":-1,"33477":-1,"33478":-1,"33479":-1,"33480":-1,"33481":-1,"33482":-1,"33483":-1,"33484":-1,"33485":-1,"33486":-1,"33487":-1,"33488":-1,"33489":4066,"33490":-1,"33491":-1,"33492":-1,"33493":-1,"33494":-1,"33495":-1,"33496":-1,"33497":-1,"33498":-1,"33499":-1,"33500":-1,"33501":4064,"33502":-1,"33503":-1,"33504":-1,"33505":-1,"33506":-1,"33507":-1,"33508":-1,"33509":-1,"33510":-1,"33511":-1,"33512":-1,"33513":-1,"33514":4065,"33515":-1,"33516":-1,"33517":-1,"33518":-1,"33519":-1,"33520":-1,"33521":-1,"33522":-1,"33523":-1,"33524":-1,"33525":-1,"33526":4066,"33527":-1,"33528":4063,"33529":-1,"33530":-1,"33531":-1,"33532":-1,"33533":4068,"33534":-1,"33535":-1,"33536":0,"33537":4064,"33538":4066,"33539":-1,"33540":-1,"33541":4066,"33542":-1,"33543":-1,"33544":-1,"33545":-1,"33546":-1,"33547":-1,"33548":-1,"33549":-1,"33550":-1,"33551":-1,"33552":-1,"33553":-1,"33554":-1,"33555":-1,"33556":-1,"33557":-1,"33558":-1,"33559":-1,"33560":-1,"33561":-1,"33562":-1,"33563":-1,"33564":4065,"33565":-1,"33566":-1,"33567":4066,"33568":-1,"33569":4066,"33570":-1,"33571":-1,"33572":0,"33573":-1,"33574":-1,"33575":0,"33576":-1,"33577":-1,"33578":-1,"33579":-1,"33580":4064,"33581":4068,"33582":4066,"33583":-1,"33584":-1,"33585":-1,"33586":-1,"33587":-1,"33588":-1,"33589":-1,"33590":-1,"33591":4067,"33592":-1,"33593":0,"33594":-1,"33595":-1,"33596":-1,"33597":-1,"33598":-1,"33599":-1,"33600":0,"33601":-1,"33602":-1,"33603":-1,"33604":-1,"33605":-1,"33606":-1,"33607":-1,"33608":-1,"33609":0,"33610":-1,"33611":-1,"33612":-1,"33613":-1,"33614":-1,"33615":-1,"33616":-1,"33617":4063,"33618":-1,"33619":-1,"33620":4064,"33621":-1,"33622":-1,"33623":-1,"33624":-1,"33625":-1,"33626":-1,"33627":-1,"33628":-1,"33629":-1,"33630":-1,"33631":-1,"33632":-1,"33633":-1,"33634":-1,"33635":-1,"33636":0,"33637":-1,"33638":-1,"33639":-1,"33640":-1,"33641":-1,"33642":-1,"33643":-1,"33644":-1,"33645":4063,"33646":-1,"33647":-1,"33648":-1,"33649":-1,"33650":-1,"33651":-1,"33652":-1,"33653":-1,"33654":-1,"33655":-1,"33656":-1,"33657":-1,"33658":-1,"33659":-1,"33660":-1,"33661":-1,"33662":-1,"33663":-1,"33664":-1,"33665":-1,"33666":-1,"33667":4063,"33668":-1,"33669":-1,"33670":4064,"33671":-1,"33672":4063,"33673":-1,"33674":-1,"33675":-1,"33676":-1,"33677":-1,"33678":-1,"33679":-1,"33680":-1,"33681":4063,"33682":-1,"33683":-1,"33684":-1,"33685":-1,"33686":-1,"33687":-1,"33688":-1,"33689":0,"33690":-1,"33691":-1,"33692":4067,"33693":-1,"33694":-1,"33695":-1,"33696":-1,"33697":-1,"33698":-1,"33699":4066,"33700":-1,"33701":-1,"33702":4067,"33703":-1,"33704":-1,"33705":-1,"33706":-1,"33707":-1,"33708":-1,"33709":-1,"33710":-1,"33711":-1,"33712":-1,"33713":-1,"33714":-1,"33715":-1,"33716":-1,"33717":4066,"33718":4065,"33719":-1,"33720":4066,"33721":-1,"33722":0,"33723":-1,"33724":-1,"33725":-1,"33726":-1,"33727":0,"33728":-1,"33729":-1,"33730":4065,"33731":-1,"33732":-1,"33733":-1,"33734":-1,"33735":-1,"33736":-1,"33737":-1,"33738":-1,"33739":-1,"33740":-1,"33741":-1,"33742":-1,"33743":-1,"33744":-1,"33745":-1,"33746":-1,"33747":-1,"33748":-1,"33749":-1,"33750":-1,"33751":-1,"33752":4064,"33753":-1,"33754":-1,"33755":-1,"33756":-1,"33757":4065,"33758":-1,"33759":4067,"33760":0,"33761":-1,"33762":-1,"33763":-1,"33764":-1,"33765":-1,"33766":-1,"33767":-1,"33768":-1,"33769":-1,"33770":-1,"33771":-1,"33772":0,"33773":-1,"33774":-1,"33775":4063,"33776":-1,"33777":-1,"33778":-1,"33779":-1,"33780":-1,"33781":-1,"33782":-1,"33783":-1,"33784":-1,"33785":-1,"33786":-1,"33787":-1,"33788":4067,"33789":-1,"33790":0,"33791":-1,"33792":4063,"33793":-1,"33794":0,"33795":-1,"33796":-1,"33797":-1,"33798":-1,"33799":-1,"33800":-1,"33801":-1,"33802":-1,"33803":-1,"33804":-1,"33805":-1,"33806":-1,"33807":-1,"33808":-1,"33809":-1,"33810":-1,"33811":-1,"33812":-1,"33813":-1,"33814":-1,"33815":-1,"33816":-1,"33817":4063,"33818":-1,"33819":-1,"33820":-1,"33821":-1,"33822":-1,"33823":-1,"33824":-1,"33825":-1,"33826":-1,"33827":-1,"33828":-1,"33829":-1,"33830":-1,"33831":-1,"33832":-1,"33833":-1,"33834":-1,"33835":4067,"33836":-1,"33837":-1,"33838":-1,"33839":-1,"33840":-1,"33841":-1,"33842":-1,"33843":-1,"33844":0,"33845":-1,"33846":4063,"33847":-1,"33848":4065,"33849":-1,"33850":-1,"33851":-1,"33852":-1,"33853":-1,"33854":4064,"33855":4063,"33856":-1,"33857":-1,"33858":-1,"33859":-1,"33860":-1,"33861":-1,"33862":4064,"33863":-1,"33864":-1,"33865":-1,"33866":4064,"33867":4063,"33868":-1,"33869":-1,"33870":-1,"33871":-1,"33872":-1,"33873":-1,"33874":-1,"33875":-1,"33876":-1,"33877":-1,"33878":-1,"33879":-1,"33880":4067,"33881":-1,"33882":-1,"33883":-1,"33884":-1,"33885":4065,"33886":-1,"33887":-1,"33888":-1,"33889":-1,"33890":-1,"33891":-1,"33892":-1,"33893":-1,"33894":-1,"33895":-1,"33896":-1,"33897":-1,"33898":4066,"33899":-1,"33900":-1,"33901":4063,"33902":-1,"33903":-1,"33904":-1,"33905":-1,"33906":-1,"33907":-1,"33908":-1,"33909":-1,"33910":-1,"33911":-1,"33912":-1,"33913":-1,"33914":-1,"33915":-1,"33916":-1,"33917":-1,"33918":-1,"33919":-1,"33920":-1,"33921":-1,"33922":-1,"33923":0,"33924":-1,"33925":4064,"33926":-1,"33927":-1,"33928":-1,"33929":-1,"33930":-1,"33931":-1,"33932":-1,"33933":-1,"33934":4064,"33935":-1,"33936":-1,"33937":-1,"33938":-1,"33939":-1,"33940":0,"33941":-1,"33942":-1,"33943":-1,"33944":4065,"33945":-1,"33946":-1,"33947":-1,"33948":-1,"33949":-1,"33950":-1,"33951":4065,"33952":-1,"33953":-1,"33954":-1,"33955":-1,"33956":-1,"33957":-1,"33958":4067,"33959":-1,"33960":-1,"33961":-1,"33962":-1,"33963":-1,"33964":4066,"33965":-1,"33966":-1,"33967":-1,"33968":-1,"33969":-1,"33970":0,"33971":-1,"33972":-1,"33973":-1,"33974":-1,"33975":-1,"33976":0,"33977":-1,"33978":-1,"33979":-1,"33980":-1,"33981":-1,"33982":-1,"33983":-1,"33984":-1,"33985":-1,"33986":-1,"33987":-1,"33988":-1,"33989":4065,"33990":4067,"33991":4065,"33992":-1,"33993":-1,"33994":-1,"33995":-1,"33996":-1,"33997":-1,"33998":-1,"33999":-1,"34000":-1,"34001":-1,"34002":-1,"34003":-1,"34004":4068,"34005":-1,"34006":4066,"34007":-1,"34008":-1,"34009":-1,"34010":-1,"34011":-1,"34012":-1,"34013":-1,"34014":-1,"34015":0,"34016":-1,"34017":-1,"34018":-1,"34019":-1,"34020":-1,"34021":0,"34022":-1,"34023":0,"34024":-1,"34025":-1,"34026":-1,"34027":-1,"34028":-1,"34029":-1,"34030":-1,"34031":-1,"34032":-1,"34033":-1,"34034":-1,"34035":-1,"34036":-1,"34037":-1,"34038":-1,"34039":-1,"34040":-1,"34041":-1,"34042":-1,"34043":-1,"34044":-1,"34045":-1,"34046":-1,"34047":-1,"34048":-1,"34049":-1,"34050":-1,"34051":-1,"34052":-1,"34053":-1,"34054":-1,"34055":-1,"34056":-1,"34057":-1,"34058":-1,"34059":-1,"34060":-1,"34061":-1,"34062":-1,"34063":-1,"34064":-1,"34065":-1,"34066":-1,"34067":-1,"34068":-1,"34069":-1,"34070":4064,"34071":-1,"34072":-1,"34073":-1,"34074":-1,"34075":-1,"34076":-1,"34077":-1,"34078":-1,"34079":-1,"34080":4065,"34081":-1,"34082":-1,"34083":4063,"34084":4063,"34085":-1,"34086":-1,"34087":4067,"34088":-1,"34089":-1,"34090":-1,"34091":-1,"34092":-1,"34093":-1,"34094":-1,"34095":-1,"34096":-1,"34097":-1,"34098":-1,"34099":4064,"34100":-1,"34101":-1,"34102":-1,"34103":4066,"34104":-1,"34105":-1,"34106":-1,"34107":-1,"34108":-1,"34109":-1,"34110":-1,"34111":-1,"34112":-1,"34113":-1,"34114":-1,"34115":4067,"34116":-1,"34117":-1,"34118":-1,"34119":-1,"34120":-1,"34121":-1,"34122":-1,"34123":0,"34124":-1,"34125":-1,"34126":-1,"34127":-1,"34128":4064,"34129":-1,"34130":-1,"34131":-1,"34132":-1,"34133":4065,"34134":-1,"34135":-1,"34136":-1,"34137":-1,"34138":-1,"34139":0,"34140":-1,"34141":-1,"34142":-1,"34143":4067,"34144":4067,"34145":-1,"34146":-1,"34147":-1,"34148":-1,"34149":-1,"34150":-1,"34151":-1,"34152":-1,"34153":-1,"34154":-1,"34155":4067,"34156":-1,"34157":-1,"34158":-1,"34159":-1,"34160":4067,"34161":-1,"34162":-1,"34163":-1,"34164":-1,"34165":-1,"34166":-1,"34167":-1,"34168":-1,"34169":-1,"34170":-1,"34171":-1,"34172":4066,"34173":-1,"34174":-1,"34175":-1,"34176":-1,"34177":-1,"34178":-1,"34179":-1,"34180":-1,"34181":-1,"34182":-1,"34183":-1,"34184":-1,"34185":-1,"34186":-1,"34187":-1,"34188":-1,"34189":0,"34190":-1,"34191":-1,"34192":0,"34193":-1,"34194":-1,"34195":4068,"34196":-1,"34197":-1,"34198":-1,"34199":-1,"34200":-1,"34201":-1,"34202":4066,"34203":4065,"34204":-1,"34205":4064,"34206":-1,"34207":-1,"34208":-1,"34209":-1,"34210":-1,"34211":-1,"34212":-1,"34213":-1,"34214":-1,"34215":-1,"34216":-1,"34217":-1,"34218":-1,"34219":-1,"34220":-1,"34221":-1,"34222":-1,"34223":4068,"34224":4066,"34225":-1,"34226":-1,"34227":-1,"34228":-1,"34229":-1,"34230":-1,"34231":-1,"34232":-1,"34233":-1,"34234":4066,"34235":4067,"34236":-1,"34237":-1,"34238":4063,"34239":-1,"34240":4065,"34241":-1,"34242":-1,"34243":-1,"34244":-1,"34245":-1,"34246":-1,"34247":-1,"34248":-1,"34249":4068,"34250":-1,"34251":-1,"34252":-1,"34253":-1,"34254":-1,"34255":-1,"34256":-1,"34257":-1,"34258":-1,"34259":-1,"34260":-1,"34261":-1,"34262":4064,"34263":4065,"34264":-1,"34265":-1,"34266":-1,"34267":-1,"34268":-1,"34269":-1,"34270":-1,"34271":-1,"34272":4065,"34273":0,"34274":-1,"34275":-1,"34276":-1,"34277":-1,"34278":4067,"34279":-1,"34280":-1,"34281":-1,"34282":-1,"34283":-1,"34284":-1,"34285":-1,"34286":-1,"34287":-1,"34288":-1,"34289":-1,"34290":-1,"34291":-1,"34292":-1,"34293":-1,"34294":4063,"34295":4064,"34296":-1,"34297":-1,"34298":-1,"34299":0,"34300":-1,"34301":-1,"34302":4064,"34303":-1,"34304":-1,"34305":-1,"34306":-1,"34307":-1,"34308":-1,"34309":-1,"34310":-1,"34311":-1,"34312":4066,"34313":-1,"34314":-1,"34315":0,"34316":-1,"34317":-1,"34318":-1,"34319":-1,"34320":-1,"34321":-1,"34322":-1,"34323":-1,"34324":-1,"34325":-1,"34326":4063,"34327":-1,"34328":-1,"34329":-1,"34330":-1,"34331":-1,"34332":-1,"34333":4066,"34334":-1,"34335":-1,"34336":-1,"34337":-1,"34338":-1,"34339":0,"34340":-1,"34341":-1,"34342":-1,"34343":-1,"34344":-1,"34345":-1,"34346":-1,"34347":-1,"34348":-1,"34349":4068,"34350":-1,"34351":-1,"34352":-1,"34353":-1,"34354":-1,"34355":-1,"34356":0,"34357":-1,"34358":4065,"34359":-1,"34360":-1,"34361":-1,"34362":-1,"34363":-1,"34364":-1,"34365":-1,"34366":-1,"34367":-1,"34368":4064,"34369":-1,"34370":-1,"34371":-1,"34372":-1,"34373":-1,"34374":-1,"34375":-1,"34376":-1,"34377":-1,"34378":-1,"34379":-1,"34380":-1,"34381":-1,"34382":-1,"34383":-1,"34384":-1,"34385":0,"34386":-1,"34387":-1,"34388":-1,"34389":-1,"34390":-1,"34391":-1,"34392":-1,"34393":-1,"34394":-1,"34395":-1,"34396":-1,"34397":-1,"34398":4063,"34399":-1,"34400":-1,"34401":-1,"34402":-1,"34403":-1,"34404":-1,"34405":-1,"34406":-1,"34407":-1,"34408":4066,"34409":-1,"34410":-1,"34411":-1,"34412":-1,"34413":-1,"34414":4064,"34415":-1,"34416":-1,"34417":4067,"34418":-1,"34419":-1,"34420":-1,"34421":-1,"34422":-1,"34423":-1,"34424":0,"34425":-1,"34426":-1,"34427":-1,"34428":-1,"34429":-1,"34430":-1,"34431":-1,"34432":-1,"34433":-1,"34434":-1,"34435":-1,"34436":-1,"34437":-1,"34438":-1,"34439":-1,"34440":-1,"34441":-1,"34442":-1,"34443":-1,"34444":-1,"34445":-1,"34446":-1,"34447":-1,"34448":4064,"34449":-1,"34450":-1,"34451":-1,"34452":-1,"34453":-1,"34454":-1,"34455":-1,"34456":-1,"34457":-1,"34458":-1,"34459":-1,"34460":-1,"34461":4063,"34462":4067,"34463":0,"34464":4065,"34465":-1,"34466":4065,"34467":-1,"34468":-1,"34469":-1,"34470":-1,"34471":-1,"34472":-1,"34473":-1,"34474":4068,"34475":-1,"34476":-1,"34477":-1,"34478":-1,"34479":4066,"34480":-1,"34481":-1,"34482":-1,"34483":-1,"34484":4064,"34485":-1,"34486":-1,"34487":-1,"34488":-1,"34489":-1,"34490":-1,"34491":-1,"34492":-1,"34493":-1,"34494":-1,"34495":-1,"34496":-1,"34497":4068,"34498":-1,"34499":4063,"34500":-1,"34501":-1,"34502":-1,"34503":-1,"34504":-1,"34505":4067,"34506":-1,"34507":-1,"34508":-1,"34509":-1,"34510":-1,"34511":-1,"34512":-1,"34513":4066,"34514":-1,"34515":-1,"34516":-1,"34517":-1,"34518":-1,"34519":4065,"34520":-1,"34521":-1,"34522":-1,"34523":-1,"34524":-1,"34525":-1,"34526":-1,"34527":-1,"34528":-1,"34529":-1,"34530":-1,"34531":-1,"34532":0,"34533":-1,"34534":-1,"34535":-1,"34536":-1,"34537":-1,"34538":-1,"34539":-1,"34540":-1,"34541":-1,"34542":-1,"34543":-1,"34544":4066,"34545":4064,"34546":-1,"34547":-1,"34548":-1,"34549":4063,"34550":-1,"34551":4066,"34552":-1,"34553":-1,"34554":-1,"34555":-1,"34556":-1,"34557":-1,"34558":0,"34559":-1,"34560":-1,"34561":-1,"34562":-1,"34563":-1,"34564":-1,"34565":-1,"34566":-1,"34567":0,"34568":4064,"34569":4065,"34570":-1,"34571":-1,"34572":-1,"34573":-1,"34574":4066,"34575":-1,"34576":-1,"34577":-1,"34578":-1,"34579":-1,"34580":-1,"34581":-1,"34582":-1,"34583":-1,"34584":-1,"34585":-1,"34586":-1,"34587":-1,"34588":4066,"34589":-1,"34590":-1,"34591":-1,"34592":-1,"34593":-1,"34594":-1,"34595":4067,"34596":-1,"34597":-1,"34598":-1,"34599":-1,"34600":-1,"34601":-1,"34602":-1,"34603":-1,"34604":-1,"34605":-1,"34606":-1,"34607":-1,"34608":-1,"34609":4066,"34610":4066,"34611":4065,"34612":4068,"34613":-1,"34614":-1,"34615":-1,"34616":-1,"34617":-1,"34618":-1,"34619":-1,"34620":-1,"34621":-1,"34622":4065,"34623":-1,"34624":-1,"34625":-1,"34626":-1,"34627":-1,"34628":-1,"34629":-1,"34630":-1,"34631":-1,"34632":-1,"34633":-1,"34634":-1,"34635":-1,"34636":-1,"34637":-1,"34638":-1,"34639":-1,"34640":4065,"34641":-1,"34642":-1,"34643":-1,"34644":-1,"34645":-1,"34646":-1,"34647":-1,"34648":-1,"34649":4067,"34650":-1,"34651":0,"34652":-1,"34653":-1,"34654":-1,"34655":-1,"34656":-1,"34657":-1,"34658":-1,"34659":-1,"34660":-1,"34661":-1,"34662":-1,"34663":4068,"34664":-1,"34665":4065,"34666":-1,"34667":4063,"34668":-1,"34669":-1,"34670":-1,"34671":-1,"34672":-1,"34673":0,"34674":-1,"34675":-1,"34676":-1,"34677":-1,"34678":-1,"34679":-1,"34680":4064,"34681":-1,"34682":-1,"34683":-1,"34684":-1,"34685":-1,"34686":-1,"34687":-1,"34688":-1,"34689":-1,"34690":-1,"34691":-1,"34692":-1,"34693":-1,"34694":4067,"34695":-1,"34696":4064,"34697":-1,"34698":-1,"34699":4068,"34700":-1,"34701":0,"34702":-1,"34703":-1,"34704":-1,"34705":-1,"34706":-1,"34707":-1,"34708":4065,"34709":-1,"34710":-1,"34711":-1,"34712":-1,"34713":-1,"34714":-1,"34715":-1,"34716":-1,"34717":-1,"34718":-1,"34719":-1,"34720":-1,"34721":-1,"34722":-1,"34723":-1,"34724":-1,"34725":-1,"34726":-1,"34727":-1,"34728":-1,"34729":-1,"34730":-1,"34731":-1,"34732":-1,"34733":-1,"34734":-1,"34735":-1,"34736":-1,"34737":-1,"34738":4063,"34739":-1,"34740":-1,"34741":-1,"34742":-1,"34743":-1,"34744":4065,"34745":-1,"34746":-1,"34747":-1,"34748":-1,"34749":-1,"34750":-1,"34751":-1,"34752":-1,"34753":-1,"34754":-1,"34755":-1,"34756":-1,"34757":0,"34758":-1,"34759":-1,"34760":-1,"34761":-1,"34762":-1,"34763":-1,"34764":-1,"34765":4063,"34766":-1,"34767":4066,"34768":-1,"34769":-1,"34770":-1,"34771":-1,"34772":-1,"34773":-1,"34774":-1,"34775":-1,"34776":-1,"34777":-1,"34778":-1,"34779":-1,"34780":-1,"34781":-1,"34782":-1,"34783":-1,"34784":-1,"34785":-1,"34786":-1,"34787":-1,"34788":4064,"34789":-1,"34790":-1,"34791":-1,"34792":-1,"34793":-1,"34794":-1,"34795":-1,"34796":-1,"34797":-1,"34798":-1,"34799":-1,"34800":-1,"34801":-1,"34802":-1,"34803":-1,"34804":4063,"34805":4066,"34806":-1,"34807":-1,"34808":-1,"34809":-1,"34810":-1,"34811":-1,"34812":-1,"34813":-1,"34814":-1,"34815":-1,"34816":-1,"34817":-1,"34818":-1,"34819":-1,"34820":-1,"34821":4067,"34822":-1,"34823":-1,"34824":-1,"34825":-1,"34826":-1,"34827":-1,"34828":-1,"34829":-1,"34830":-1,"34831":-1,"34832":-1,"34833":4067,"34834":-1,"34835":-1,"34836":-1,"34837":-1,"34838":-1,"34839":-1,"34840":-1,"34841":-1,"34842":-1,"34843":-1,"34844":-1,"34845":-1,"34846":-1,"34847":-1,"34848":-1,"34849":-1,"34850":-1,"34851":-1,"34852":-1,"34853":-1,"34854":-1,"34855":-1,"34856":-1,"34857":-1,"34858":-1,"34859":0,"34860":-1,"34861":0,"34862":-1,"34863":-1,"34864":-1,"34865":-1,"34866":4065,"34867":-1,"34868":0,"34869":-1,"34870":-1,"34871":-1,"34872":-1,"34873":-1,"34874":-1,"34875":-1,"34876":-1,"34877":-1,"34878":-1,"34879":-1,"34880":4064,"34881":-1,"34882":-1,"34883":-1,"34884":4067,"34885":-1,"34886":-1,"34887":-1,"34888":-1,"34889":4064,"34890":-1,"34891":-1,"34892":-1,"34893":-1,"34894":-1,"34895":-1,"34896":-1,"34897":-1,"34898":-1,"34899":-1,"34900":-1,"34901":-1,"34902":-1,"34903":4067,"34904":-1,"34905":-1,"34906":-1,"34907":-1,"34908":-1,"34909":-1,"34910":-1,"34911":-1,"34912":-1,"34913":0,"34914":-1,"34915":-1,"34916":-1,"34917":0,"34918":-1,"34919":-1,"34920":-1,"34921":-1,"34922":-1,"34923":4065,"34924":4065,"34925":-1,"34926":-1,"34927":-1,"34928":-1,"34929":-1,"34930":-1,"34931":-1,"34932":-1,"34933":-1,"34934":-1,"34935":-1,"34936":-1,"34937":-1,"34938":-1,"34939":4067,"34940":-1,"34941":-1,"34942":-1,"34943":4064,"34944":-1,"34945":0,"34946":-1,"34947":0,"34948":-1,"34949":-1,"34950":-1,"34951":-1,"34952":-1,"34953":-1,"34954":4065,"34955":4064,"34956":-1,"34957":-1,"34958":-1,"34959":-1,"34960":-1,"34961":-1,"34962":-1,"34963":-1,"34964":-1,"34965":-1,"34966":-1,"34967":-1,"34968":-1,"34969":-1,"34970":-1,"34971":-1,"34972":-1,"34973":4066,"34974":-1,"34975":-1,"34976":-1,"34977":-1,"34978":4065,"34979":-1,"34980":-1,"34981":-1,"34982":-1,"34983":-1,"34984":-1,"34985":-1,"34986":-1,"34987":-1,"34988":-1,"34989":-1,"34990":-1,"34991":-1,"34992":-1,"34993":-1,"34994":-1,"34995":-1,"34996":-1,"34997":-1,"34998":-1,"34999":-1,"35000":-1,"35001":0,"35002":-1,"35003":-1,"35004":-1,"35005":-1,"35006":-1,"35007":4065,"35008":-1,"35009":-1,"35010":0,"35011":0,"35012":-1,"35013":-1,"35014":-1,"35015":-1,"35016":-1,"35017":0,"35018":-1,"35019":-1,"35020":-1,"35021":-1,"35022":-1,"35023":-1,"35024":-1,"35025":-1,"35026":-1,"35027":-1,"35028":-1,"35029":4064,"35030":-1,"35031":-1,"35032":-1,"35033":-1,"35034":-1,"35035":-1,"35036":-1,"35037":-1,"35038":-1,"35039":-1,"35040":-1,"35041":-1,"35042":-1,"35043":4066,"35044":-1,"35045":-1,"35046":-1,"35047":-1,"35048":-1,"35049":-1,"35050":-1,"35051":-1,"35052":-1,"35053":-1,"35054":-1,"35055":-1,"35056":-1,"35057":4064,"35058":-1,"35059":-1,"35060":-1,"35061":-1,"35062":-1,"35063":4065,"35064":-1,"35065":-1,"35066":0,"35067":-1,"35068":4064,"35069":4066,"35070":-1,"35071":-1,"35072":4067,"35073":-1,"35074":-1,"35075":-1,"35076":-1,"35077":-1,"35078":-1,"35079":4064,"35080":-1,"35081":-1,"35082":-1,"35083":-1,"35084":-1,"35085":-1,"35086":-1,"35087":-1,"35088":-1,"35089":-1,"35090":-1,"35091":-1,"35092":-1,"35093":-1,"35094":-1,"35095":0,"35096":-1,"35097":-1,"35098":-1,"35099":-1,"35100":-1,"35101":4065,"35102":4067,"35103":4064,"35104":-1,"35105":-1,"35106":-1,"35107":-1,"35108":-1,"35109":-1,"35110":-1,"35111":-1,"35112":-1,"35113":-1,"35114":-1,"35115":-1,"35116":-1,"35117":-1,"35118":-1,"35119":-1,"35120":-1,"35121":-1,"35122":-1,"35123":-1,"35124":-1,"35125":-1,"35126":4065,"35127":-1,"35128":4064,"35129":4066,"35130":0,"35131":-1,"35132":-1,"35133":-1,"35134":-1,"35135":-1,"35136":-1,"35137":-1,"35138":-1,"35139":-1,"35140":-1,"35141":-1,"35142":-1,"35143":-1,"35144":-1,"35145":4066,"35146":-1,"35147":-1,"35148":-1,"35149":-1,"35150":4063,"35151":-1,"35152":-1,"35153":-1,"35154":-1,"35155":-1,"35156":-1,"35157":-1,"35158":-1,"35159":-1,"35160":-1,"35161":-1,"35162":0,"35163":-1,"35164":-1,"35165":-1,"35166":-1,"35167":-1,"35168":-1,"35169":-1,"35170":-1,"35171":-1,"35172":-1,"35173":-1,"35174":-1,"35175":-1,"35176":-1,"35177":-1,"35178":-1,"35179":-1,"35180":-1,"35181":-1,"35182":-1,"35183":-1,"35184":-1,"35185":-1,"35186":-1,"35187":-1,"35188":-1,"35189":-1,"35190":-1,"35191":-1,"35192":-1,"35193":-1,"35194":-1,"35195":-1,"35196":-1,"35197":4067,"35198":0,"35199":-1,"35200":-1,"35201":-1,"35202":-1,"35203":-1,"35204":4068,"35205":-1,"35206":4067,"35207":-1,"35208":-1,"35209":-1,"35210":-1,"35211":-1,"35212":-1,"35213":-1,"35214":-1,"35215":-1,"35216":-1,"35217":-1,"35218":-1,"35219":-1,"35220":-1,"35221":-1,"35222":-1,"35223":0,"35224":-1,"35225":-1,"35226":-1,"35227":4063,"35228":-1,"35229":-1,"35230":-1,"35231":-1,"35232":-1,"35233":-1,"35234":-1,"35235":-1,"35236":-1,"35237":-1,"35238":-1,"35239":-1,"35240":-1,"35241":-1,"35242":4067,"35243":-1,"35244":-1,"35245":-1,"35246":-1,"35247":-1,"35248":0,"35249":-1,"35250":-1,"35251":-1,"35252":-1,"35253":0,"35254":-1,"35255":-1,"35256":-1,"35257":-1,"35258":4063,"35259":-1,"35260":-1,"35261":-1,"35262":-1,"35263":4067,"35264":-1,"35265":-1,"35266":-1,"35267":-1,"35268":-1,"35269":-1,"35270":-1,"35271":-1,"35272":-1,"35273":-1,"35274":4063,"35275":-1,"35276":-1,"35277":-1,"35278":4065,"35279":-1,"35280":-1,"35281":4063,"35282":-1,"35283":-1,"35284":4068,"35285":-1,"35286":4064,"35287":-1,"35288":-1,"35289":-1,"35290":-1,"35291":-1,"35292":-1,"35293":-1,"35294":-1,"35295":0,"35296":-1,"35297":-1,"35298":-1,"35299":-1,"35300":0,"35301":-1,"35302":-1,"35303":-1,"35304":-1,"35305":-1,"35306":-1,"35307":-1,"35308":-1,"35309":-1,"35310":-1,"35311":-1,"35312":-1,"35313":-1,"35314":-1,"35315":-1,"35316":-1,"35317":4068,"35318":-1,"35319":-1,"35320":-1,"35321":-1,"35322":-1,"35323":4067,"35324":-1,"35325":-1,"35326":-1,"35327":-1,"35328":-1,"35329":-1,"35330":-1,"35331":-1,"35332":4065,"35333":4064,"35334":-1,"35335":-1,"35336":-1,"35337":-1,"35338":-1,"35339":-1,"35340":-1,"35341":-1,"35342":-1,"35343":4063,"35344":4064,"35345":-1,"35346":4067,"35347":4067,"35348":-1,"35349":-1,"35350":-1,"35351":-1,"35352":-1,"35353":-1,"35354":-1,"35355":-1,"35356":0,"35357":-1,"35358":-1,"35359":-1,"35360":-1,"35361":-1,"35362":-1,"35363":0,"35364":-1,"35365":-1,"35366":-1,"35367":-1,"35368":-1,"35369":-1,"35370":-1,"35371":-1,"35372":-1,"35373":0,"35374":-1,"35375":4066,"35376":-1,"35377":-1,"35378":-1,"35379":-1,"35380":-1,"35381":-1,"35382":-1,"35383":-1,"35384":-1,"35385":-1,"35386":-1,"35387":-1,"35388":-1,"35389":-1,"35390":-1,"35391":-1,"35392":-1,"35393":-1,"35394":-1,"35395":-1,"35396":-1,"35397":-1,"35398":-1,"35399":4067,"35400":-1,"35401":-1,"35402":-1,"35403":-1,"35404":-1,"35405":-1,"35406":-1,"35407":4067,"35408":-1,"35409":-1,"35410":4067,"35411":-1,"35412":-1,"35413":-1,"35414":-1,"35415":-1,"35416":-1,"35417":0,"35418":-1,"35419":-1,"35420":4067,"35421":-1,"35422":4067,"35423":4066,"35424":-1,"35425":0,"35426":4063,"35427":-1,"35428":-1,"35429":-1,"35430":-1,"35431":-1,"35432":-1,"35433":-1,"35434":-1,"35435":-1,"35436":-1,"35437":-1,"35438":-1,"35439":-1,"35440":4068,"35441":-1,"35442":-1,"35443":-1,"35444":-1,"35445":-1,"35446":-1,"35447":-1,"35448":4066,"35449":-1,"35450":-1,"35451":-1,"35452":-1,"35453":-1,"35454":4064,"35455":0,"35456":-1,"35457":0,"35458":-1,"35459":-1,"35460":-1,"35461":-1,"35462":-1,"35463":-1,"35464":4067,"35465":-1,"35466":-1,"35467":-1,"35468":-1,"35469":-1,"35470":-1,"35471":-1,"35472":-1,"35473":-1,"35474":-1,"35475":4065,"35476":-1,"35477":0,"35478":-1,"35479":-1,"35480":-1,"35481":-1,"35482":0,"35483":-1,"35484":-1,"35485":-1,"35486":-1,"35487":-1,"35488":-1,"35489":-1,"35490":-1,"35491":-1,"35492":0,"35493":-1,"35494":-1,"35495":4067,"35496":-1,"35497":-1,"35498":-1,"35499":-1,"35500":-1,"35501":-1,"35502":-1,"35503":-1,"35504":4063,"35505":-1,"35506":-1,"35507":-1,"35508":-1,"35509":-1,"35510":-1,"35511":-1,"35512":-1,"35513":-1,"35514":-1,"35515":0,"35516":-1,"35517":-1,"35518":-1,"35519":-1,"35520":-1,"35521":-1,"35522":-1,"35523":-1,"35524":-1,"35525":-1,"35526":4065,"35527":-1,"35528":-1,"35529":-1,"35530":-1,"35531":-1,"35532":-1,"35533":-1,"35534":-1,"35535":-1,"35536":4063,"35537":-1,"35538":-1,"35539":-1,"35540":-1,"35541":4067,"35542":4066,"35543":-1,"35544":-1,"35545":0,"35546":-1,"35547":-1,"35548":-1,"35549":-1,"35550":-1,"35551":-1,"35552":-1,"35553":-1,"35554":-1,"35555":4067,"35556":-1,"35557":-1,"35558":-1,"35559":4065,"35560":-1,"35561":-1,"35562":-1,"35563":-1,"35564":-1,"35565":-1,"35566":-1,"35567":-1,"35568":4064,"35569":-1,"35570":-1,"35571":-1,"35572":-1,"35573":-1,"35574":-1,"35575":-1,"35576":-1,"35577":-1,"35578":-1,"35579":-1,"35580":-1,"35581":-1,"35582":-1,"35583":4064,"35584":-1,"35585":4067,"35586":-1,"35587":-1,"35588":-1,"35589":-1,"35590":-1,"35591":-1,"35592":0,"35593":4068,"35594":-1,"35595":-1,"35596":-1,"35597":-1,"35598":-1,"35599":-1,"35600":-1,"35601":-1,"35602":-1,"35603":-1,"35604":4064,"35605":-1,"35606":-1,"35607":-1,"35608":-1,"35609":-1,"35610":4065,"35611":4066,"35612":-1,"35613":-1,"35614":-1,"35615":4068,"35616":-1,"35617":-1,"35618":-1,"35619":-1,"35620":-1,"35621":-1,"35622":4064,"35623":-1,"35624":4064,"35625":-1,"35626":-1,"35627":-1,"35628":-1,"35629":-1,"35630":-1,"35631":-1,"35632":4064,"35633":-1,"35634":-1,"35635":-1,"35636":-1,"35637":-1,"35638":-1,"35639":-1,"35640":4065,"35641":-1,"35642":-1,"35643":-1,"35644":4067,"35645":-1,"35646":4066,"35647":4065,"35648":-1,"35649":-1,"35650":-1,"35651":-1,"35652":-1,"35653":-1,"35654":-1,"35655":0,"35656":-1,"35657":-1,"35658":-1,"35659":-1,"35660":-1,"35661":-1,"35662":-1,"35663":-1,"35664":-1,"35665":-1,"35666":-1,"35667":-1,"35668":-1,"35669":-1,"35670":-1,"35671":-1,"35672":-1,"35673":-1,"35674":-1,"35675":-1,"35676":-1,"35677":4064,"35678":-1,"35679":-1,"35680":4065,"35681":-1,"35682":-1,"35683":-1,"35684":-1,"35685":-1,"35686":-1,"35687":-1,"35688":0,"35689":-1,"35690":-1,"35691":-1,"35692":-1,"35693":4064,"35694":-1,"35695":-1,"35696":-1,"35697":-1,"35698":-1,"35699":-1,"35700":-1,"35701":4063,"35702":-1,"35703":-1,"35704":-1,"35705":-1,"35706":-1,"35707":-1,"35708":-1,"35709":-1,"35710":-1,"35711":-1,"35712":-1,"35713":-1,"35714":-1,"35715":-1,"35716":-1,"35717":-1,"35718":-1,"35719":-1,"35720":-1,"35721":-1,"35722":-1,"35723":-1,"35724":-1,"35725":4065,"35726":-1,"35727":-1,"35728":-1,"35729":-1,"35730":-1,"35731":4067,"35732":-1,"35733":-1,"35734":-1,"35735":4067,"35736":-1,"35737":-1,"35738":-1,"35739":0,"35740":-1,"35741":-1,"35742":-1,"35743":-1,"35744":-1,"35745":-1,"35746":-1,"35747":-1,"35748":-1,"35749":-1,"35750":-1,"35751":-1,"35752":-1,"35753":-1,"35754":-1,"35755":-1,"35756":-1,"35757":-1,"35758":-1,"35759":-1,"35760":-1,"35761":-1,"35762":-1,"35763":0,"35764":-1,"35765":-1,"35766":-1,"35767":-1,"35768":-1,"35769":-1,"35770":-1,"35771":-1,"35772":-1,"35773":-1,"35774":-1,"35775":-1,"35776":-1,"35777":-1,"35778":-1,"35779":-1,"35780":-1,"35781":-1,"35782":4065,"35783":-1,"35784":-1,"35785":-1,"35786":-1,"35787":-1,"35788":-1,"35789":-1,"35790":4064,"35791":-1,"35792":-1,"35793":-1,"35794":-1,"35795":4067,"35796":-1,"35797":0,"35798":-1,"35799":-1,"35800":-1,"35801":-1,"35802":-1,"35803":-1,"35804":-1,"35805":-1,"35806":-1,"35807":-1,"35808":-1,"35809":-1,"35810":-1,"35811":-1,"35812":4064,"35813":-1,"35814":-1,"35815":-1,"35816":-1,"35817":-1,"35818":-1,"35819":-1,"35820":-1,"35821":-1,"35822":-1,"35823":-1,"35824":-1,"35825":-1,"35826":-1,"35827":-1,"35828":-1,"35829":-1,"35830":-1,"35831":-1,"35832":-1,"35833":-1,"35834":-1,"35835":-1,"35836":-1,"35837":-1,"35838":4065,"35839":-1,"35840":-1,"35841":-1,"35842":-1,"35843":-1,"35844":-1,"35845":-1,"35846":-1,"35847":-1,"35848":-1,"35849":-1,"35850":-1,"35851":4067,"35852":0,"35853":0,"35854":-1,"35855":-1,"35856":4067,"35857":-1,"35858":-1,"35859":-1,"35860":-1,"35861":-1,"35862":-1,"35863":-1,"35864":4067,"35865":-1,"35866":-1,"35867":-1,"35868":-1,"35869":-1,"35870":-1,"35871":-1,"35872":-1,"35873":-1,"35874":-1,"35875":-1,"35876":-1,"35877":-1,"35878":-1,"35879":-1,"35880":-1,"35881":0,"35882":-1,"35883":-1,"35884":-1,"35885":-1,"35886":-1,"35887":-1,"35888":-1,"35889":-1,"35890":-1,"35891":-1,"35892":-1,"35893":4068,"35894":0,"35895":-1,"35896":-1,"35897":-1,"35898":-1,"35899":-1,"35900":-1,"35901":4063,"35902":-1,"35903":4063,"35904":4068,"35905":-1,"35906":-1,"35907":-1,"35908":-1,"35909":0,"35910":-1,"35911":4065,"35912":-1,"35913":-1,"35914":-1,"35915":-1,"35916":-1,"35917":-1,"35918":-1,"35919":-1,"35920":-1,"35921":-1,"35922":-1,"35923":4066,"35924":-1,"35925":-1,"35926":-1,"35927":4068,"35928":-1,"35929":-1,"35930":0,"35931":-1,"35932":-1,"35933":4067,"35934":-1,"35935":-1,"35936":4066,"35937":-1,"35938":-1,"35939":-1,"35940":-1,"35941":4068,"35942":-1,"35943":-1,"35944":4066,"35945":-1,"35946":-1,"35947":4067,"35948":-1,"35949":-1,"35950":4067,"35951":4064,"35952":-1,"35953":-1,"35954":-1,"35955":-1,"35956":-1,"35957":0,"35958":-1,"35959":-1,"35960":-1,"35961":4063,"35962":-1,"35963":-1,"35964":0,"35965":-1,"35966":-1,"35967":-1,"35968":-1,"35969":-1,"35970":-1,"35971":-1,"35972":-1,"35973":-1,"35974":-1,"35975":-1,"35976":-1,"35977":-1,"35978":-1,"35979":0,"35980":4065,"35981":4066,"35982":-1,"35983":-1,"35984":4065,"35985":-1,"35986":4067,"35987":-1,"35988":-1,"35989":-1,"35990":-1,"35991":-1,"35992":-1,"35993":-1,"35994":4067,"35995":-1,"35996":-1,"35997":-1,"35998":-1,"35999":0,"36000":-1,"36001":-1,"36002":-1,"36003":-1,"36004":-1,"36005":4066,"36006":4063,"36007":-1,"36008":-1,"36009":-1,"36010":-1,"36011":-1,"36012":-1,"36013":4067,"36014":-1,"36015":-1,"36016":-1,"36017":-1,"36018":-1,"36019":-1,"36020":-1,"36021":-1,"36022":-1,"36023":-1,"36024":-1,"36025":-1,"36026":-1,"36027":-1,"36028":4063,"36029":-1,"36030":-1,"36031":-1,"36032":-1,"36033":-1,"36034":-1,"36035":-1,"36036":-1,"36037":-1,"36038":-1,"36039":-1,"36040":0,"36041":-1,"36042":4063,"36043":-1,"36044":4068,"36045":-1,"36046":-1,"36047":-1,"36048":-1,"36049":-1,"36050":-1,"36051":-1,"36052":-1,"36053":-1,"36054":-1,"36055":-1,"36056":-1,"36057":-1,"36058":-1,"36059":-1,"36060":-1,"36061":4065,"36062":-1,"36063":4067,"36064":-1,"36065":-1,"36066":-1,"36067":4067,"36068":4067,"36069":-1,"36070":4067,"36071":-1,"36072":-1,"36073":-1,"36074":4064,"36075":-1,"36076":-1,"36077":4068,"36078":-1,"36079":-1,"36080":-1,"36081":-1,"36082":-1,"36083":4066,"36084":-1,"36085":-1,"36086":-1,"36087":-1,"36088":-1,"36089":-1,"36090":-1,"36091":-1,"36092":-1,"36093":-1,"36094":-1,"36095":4066,"36096":4065,"36097":-1,"36098":-1,"36099":-1,"36100":4066,"36101":-1,"36102":-1,"36103":-1,"36104":-1,"36105":-1,"36106":-1,"36107":-1,"36108":-1,"36109":-1,"36110":-1,"36111":-1,"36112":-1,"36113":-1,"36114":-1,"36115":4068,"36116":-1,"36117":-1,"36118":-1,"36119":-1,"36120":-1,"36121":-1,"36122":4067,"36123":-1,"36124":-1,"36125":-1,"36126":-1,"36127":-1,"36128":-1,"36129":0,"36130":-1,"36131":-1,"36132":-1,"36133":-1,"36134":-1,"36135":-1,"36136":-1,"36137":-1,"36138":-1,"36139":-1,"36140":-1,"36141":-1,"36142":-1,"36143":-1,"36144":4067,"36145":-1,"36146":-1,"36147":-1,"36148":-1,"36149":-1,"36150":-1,"36151":-1,"36152":4063,"36153":-1,"36154":-1,"36155":-1,"36156":4063,"36157":4064,"36158":0,"36159":4066,"36160":-1,"36161":-1,"36162":-1,"36163":4065,"36164":-1,"36165":-1,"36166":-1,"36167":-1,"36168":-1,"36169":-1,"36170":-1,"36171":-1,"36172":-1,"36173":-1,"36174":4064,"36175":-1,"36176":-1,"36177":4067,"36178":-1,"36179":-1,"36180":-1,"36181":0,"36182":-1,"36183":-1,"36184":-1,"36185":-1,"36186":-1,"36187":-1,"36188":0,"36189":-1,"36190":-1,"36191":-1,"36192":-1,"36193":-1,"36194":-1,"36195":-1,"36196":-1,"36197":-1,"36198":-1,"36199":0,"36200":-1,"36201":4065,"36202":4065,"36203":-1,"36204":-1,"36205":-1,"36206":-1,"36207":-1,"36208":-1,"36209":-1,"36210":-1,"36211":-1,"36212":4068,"36213":0,"36214":-1,"36215":-1,"36216":-1,"36217":-1,"36218":-1,"36219":-1,"36220":-1,"36221":-1,"36222":-1,"36223":-1,"36224":-1,"36225":-1,"36226":-1,"36227":-1,"36228":-1,"36229":0,"36230":-1,"36231":-1,"36232":-1,"36233":-1,"36234":-1,"36235":-1,"36236":0,"36237":-1,"36238":-1,"36239":-1,"36240":-1,"36241":-1,"36242":-1,"36243":-1,"36244":-1,"36245":4066,"36246":-1,"36247":-1,"36248":-1,"36249":-1,"36250":-1,"36251":-1,"36252":-1,"36253":-1,"36254":4064,"36255":-1,"36256":4065,"36257":4066,"36258":-1,"36259":-1,"36260":-1,"36261":-1,"36262":-1,"36263":-1,"36264":-1,"36265":-1,"36266":-1,"36267":-1,"36268":4068,"36269":-1,"36270":-1,"36271":-1,"36272":-1,"36273":-1,"36274":-1,"36275":-1,"36276":4064,"36277":-1,"36278":-1,"36279":-1,"36280":-1,"36281":4063,"36282":4065,"36283":-1,"36284":-1,"36285":-1,"36286":-1,"36287":-1,"36288":-1,"36289":-1,"36290":4064,"36291":4066,"36292":-1,"36293":-1,"36294":-1,"36295":-1,"36296":-1,"36297":-1,"36298":4065,"36299":-1,"36300":-1,"36301":-1,"36302":-1,"36303":-1,"36304":-1,"36305":-1,"36306":-1,"36307":-1,"36308":-1,"36309":-1,"36310":-1,"36311":-1,"36312":-1,"36313":-1,"36314":-1,"36315":-1,"36316":-1,"36317":4064,"36318":-1,"36319":-1,"36320":-1,"36321":-1,"36322":-1,"36323":-1,"36324":4068,"36325":-1,"36326":-1,"36327":-1,"36328":4067,"36329":-1,"36330":-1,"36331":-1,"36332":-1,"36333":-1,"36334":-1,"36335":-1,"36336":-1,"36337":-1,"36338":-1,"36339":-1,"36340":0,"36341":-1,"36342":-1,"36343":-1,"36344":-1,"36345":-1,"36346":-1,"36347":-1,"36348":-1,"36349":-1,"36350":-1,"36351":-1,"36352":-1,"36353":-1,"36354":-1,"36355":-1,"36356":-1,"36357":-1,"36358":-1,"36359":-1,"36360":-1,"36361":4068,"36362":-1,"36363":-1,"36364":-1,"36365":-1,"36366":-1,"36367":0,"36368":-1,"36369":-1,"36370":-1,"36371":-1,"36372":4063,"36373":-1,"36374":-1,"36375":-1,"36376":-1,"36377":-1,"36378":-1,"36379":-1,"36380":-1,"36381":-1,"36382":-1,"36383":-1,"36384":-1,"36385":-1,"36386":-1,"36387":-1,"36388":-1,"36389":4066,"36390":-1,"36391":-1,"36392":-1,"36393":-1,"36394":-1,"36395":-1,"36396":-1,"36397":-1,"36398":0,"36399":-1,"36400":-1,"36401":-1,"36402":-1,"36403":-1,"36404":-1,"36405":-1,"36406":0,"36407":-1,"36408":-1,"36409":-1,"36410":-1,"36411":-1,"36412":-1,"36413":-1,"36414":4067,"36415":-1,"36416":-1,"36417":-1,"36418":4067,"36419":-1,"36420":-1,"36421":-1,"36422":-1,"36423":4065,"36424":4066,"36425":-1,"36426":-1,"36427":-1,"36428":4063,"36429":-1,"36430":-1,"36431":-1,"36432":-1,"36433":-1,"36434":-1,"36435":-1,"36436":-1,"36437":-1,"36438":-1,"36439":-1,"36440":-1,"36441":-1,"36442":4066,"36443":-1,"36444":-1,"36445":-1,"36446":-1,"36447":-1,"36448":-1,"36449":-1,"36450":-1,"36451":-1,"36452":-1,"36453":-1,"36454":-1,"36455":-1,"36456":-1,"36457":-1,"36458":4065,"36459":-1,"36460":-1,"36461":-1,"36462":-1,"36463":-1,"36464":-1,"36465":-1,"36466":4064,"36467":-1,"36468":4068,"36469":-1,"36470":-1,"36471":-1,"36472":-1,"36473":-1,"36474":-1,"36475":-1,"36476":-1,"36477":-1,"36478":-1,"36479":0,"36480":-1,"36481":-1,"36482":4063,"36483":4063,"36484":-1,"36485":4063,"36486":-1,"36487":-1,"36488":-1,"36489":-1,"36490":-1,"36491":0,"36492":-1,"36493":-1,"36494":-1,"36495":-1,"36496":-1,"36497":-1,"36498":-1,"36499":0,"36500":-1,"36501":0,"36502":-1,"36503":-1,"36504":-1,"36505":-1,"36506":-1,"36507":-1,"36508":4063,"36509":-1,"36510":-1,"36511":-1,"36512":-1,"36513":-1,"36514":-1,"36515":-1,"36516":4064,"36517":-1,"36518":-1,"36519":-1,"36520":-1,"36521":4067,"36522":-1,"36523":-1,"36524":-1,"36525":-1,"36526":-1,"36527":-1,"36528":4066,"36529":-1,"36530":-1,"36531":4065,"36532":-1,"36533":-1,"36534":-1,"36535":-1,"36536":-1,"36537":-1,"36538":4067,"36539":-1,"36540":-1,"36541":-1,"36542":-1,"36543":4065,"36544":-1,"36545":-1,"36546":-1,"36547":-1,"36548":-1,"36549":-1,"36550":-1,"36551":4068,"36552":-1,"36553":-1,"36554":-1,"36555":-1,"36556":-1,"36557":-1,"36558":-1,"36559":-1,"36560":4065,"36561":-1,"36562":-1,"36563":-1,"36564":0,"36565":0,"36566":-1,"36567":-1,"36568":-1,"36569":-1,"36570":-1,"36571":-1,"36572":-1,"36573":-1,"36574":-1,"36575":-1,"36576":0,"36577":-1,"36578":4064,"36579":-1,"36580":-1,"36581":-1,"36582":-1,"36583":-1,"36584":0,"36585":0,"36586":-1,"36587":-1,"36588":4066,"36589":-1,"36590":-1,"36591":4066,"36592":4066,"36593":-1,"36594":-1,"36595":4067,"36596":-1,"36597":-1,"36598":-1,"36599":-1,"36600":-1,"36601":-1,"36602":-1,"36603":4064,"36604":-1,"36605":-1,"36606":-1,"36607":4065,"36608":-1,"36609":-1,"36610":-1,"36611":-1,"36612":-1,"36613":-1,"36614":-1,"36615":-1,"36616":-1,"36617":-1,"36618":-1,"36619":-1,"36620":-1,"36621":-1,"36622":-1,"36623":-1,"36624":-1,"36625":4067,"36626":-1,"36627":-1,"36628":-1,"36629":-1,"36630":-1,"36631":-1,"36632":4068,"36633":-1,"36634":-1,"36635":-1,"36636":-1,"36637":-1,"36638":0,"36639":-1,"36640":-1,"36641":4065,"36642":-1,"36643":-1,"36644":-1,"36645":-1,"36646":-1,"36647":-1,"36648":-1,"36649":4064,"36650":-1,"36651":-1,"36652":4064,"36653":-1,"36654":-1,"36655":-1,"36656":-1,"36657":-1,"36658":4067,"36659":-1,"36660":-1,"36661":4067,"36662":-1,"36663":-1,"36664":-1,"36665":-1,"36666":4065,"36667":-1,"36668":-1,"36669":-1,"36670":-1,"36671":-1,"36672":-1,"36673":-1,"36674":-1,"36675":-1,"36676":-1,"36677":-1,"36678":-1,"36679":-1,"36680":-1,"36681":-1,"36682":4064,"36683":4065,"36684":-1,"36685":-1,"36686":4063,"36687":-1,"36688":-1,"36689":-1,"36690":4065,"36691":-1,"36692":-1,"36693":-1,"36694":-1,"36695":-1,"36696":-1,"36697":-1,"36698":-1,"36699":-1,"36700":-1,"36701":-1,"36702":-1,"36703":-1,"36704":4064,"36705":-1,"36706":4066,"36707":-1,"36708":-1,"36709":-1,"36710":-1,"36711":-1,"36712":0,"36713":-1,"36714":-1,"36715":-1,"36716":-1,"36717":-1,"36718":-1,"36719":-1,"36720":-1,"36721":-1,"36722":-1,"36723":-1,"36724":-1,"36725":-1,"36726":-1,"36727":-1,"36728":-1,"36729":-1,"36730":-1,"36731":-1,"36732":-1,"36733":-1,"36734":-1,"36735":-1,"36736":-1,"36737":-1,"36738":4067,"36739":-1,"36740":-1,"36741":-1,"36742":-1,"36743":-1,"36744":-1,"36745":-1,"36746":-1,"36747":-1,"36748":-1,"36749":-1,"36750":4064,"36751":-1,"36752":4068,"36753":-1,"36754":-1,"36755":-1,"36756":-1,"36757":-1,"36758":-1,"36759":4066,"36760":-1,"36761":-1,"36762":4065,"36763":-1,"36764":4065,"36765":-1,"36766":-1,"36767":-1,"36768":-1,"36769":-1,"36770":4066,"36771":-1,"36772":-1,"36773":-1,"36774":-1,"36775":-1,"36776":-1,"36777":-1,"36778":-1,"36779":-1,"36780":4067,"36781":-1,"36782":-1,"36783":-1,"36784":-1,"36785":-1,"36786":-1,"36787":-1,"36788":-1,"36789":-1,"36790":-1,"36791":-1,"36792":-1,"36793":0,"36794":-1,"36795":0,"36796":0,"36797":-1,"36798":-1,"36799":-1,"36800":-1,"36801":-1,"36802":-1,"36803":-1,"36804":-1,"36805":-1,"36806":-1,"36807":-1,"36808":-1,"36809":-1,"36810":0,"36811":-1,"36812":-1,"36813":4064,"36814":-1,"36815":-1,"36816":-1,"36817":-1,"36818":-1,"36819":4064,"36820":-1,"36821":-1,"36822":-1,"36823":4067,"36824":-1,"36825":-1,"36826":-1,"36827":-1,"36828":-1,"36829":-1,"36830":-1,"36831":-1,"36832":-1,"36833":-1,"36834":-1,"36835":-1,"36836":4066,"36837":-1,"36838":-1,"36839":-1,"36840":-1,"36841":-1,"36842":-1,"36843":-1,"36844":-1,"36845":-1,"36846":-1,"36847":-1,"36848":4068,"36849":-1,"36850":-1,"36851":-1,"36852":-1,"36853":-1,"36854":4067,"36855":-1,"36856":4067,"36857":-1,"36858":-1,"36859":-1,"36860":-1,"36861":-1,"36862":-1,"36863":-1,"36864":-1,"36865":-1,"36866":-1,"36867":0,"36868":-1,"36869":4066,"36870":-1,"36871":-1,"36872":-1,"36873":-1,"36874":4065,"36875":-1,"36876":-1,"36877":-1,"36878":4067,"36879":-1,"36880":4068,"36881":-1,"36882":-1,"36883":4066,"36884":0,"36885":-1,"36886":-1,"36887":-1,"36888":-1,"36889":4065,"36890":-1,"36891":-1,"36892":-1,"36893":-1,"36894":4068,"36895":-1,"36896":-1,"36897":-1,"36898":-1,"36899":-1,"36900":-1,"36901":-1,"36902":-1,"36903":-1,"36904":-1,"36905":-1,"36906":-1,"36907":-1,"36908":-1,"36909":-1,"36910":-1,"36911":-1,"36912":-1,"36913":-1,"36914":-1,"36915":-1,"36916":-1,"36917":-1,"36918":-1,"36919":-1,"36920":4063,"36921":-1,"36922":-1,"36923":-1,"36924":-1,"36925":-1,"36926":-1,"36927":4065,"36928":-1,"36929":-1,"36930":-1,"36931":-1,"36932":0,"36933":-1,"36934":-1,"36935":-1,"36936":-1,"36937":0,"36938":-1,"36939":-1,"36940":-1,"36941":4065,"36942":-1,"36943":4065,"36944":-1,"36945":4063,"36946":-1,"36947":-1,"36948":-1,"36949":4064,"36950":-1,"36951":4067,"36952":4067,"36953":4066,"36954":-1,"36955":-1,"36956":-1,"36957":-1,"36958":-1,"36959":-1,"36960":4066,"36961":-1,"36962":-1,"36963":-1,"36964":-1,"36965":4065,"36966":-1,"36967":-1,"36968":-1,"36969":-1,"36970":-1,"36971":-1,"36972":4065,"36973":4065,"36974":-1,"36975":-1,"36976":-1,"36977":-1,"36978":-1,"36979":-1,"36980":-1,"36981":4064,"36982":-1,"36983":-1,"36984":-1,"36985":-1,"36986":-1,"36987":-1,"36988":-1,"36989":4067,"36990":-1,"36991":-1,"36992":-1,"36993":-1,"36994":-1,"36995":4067,"36996":4067,"36997":4068,"36998":-1,"36999":-1,"37000":-1,"37001":-1,"37002":-1,"37003":-1,"37004":-1,"37005":-1,"37006":-1,"37007":-1,"37008":-1,"37009":-1,"37010":4067,"37011":-1,"37012":-1,"37013":-1,"37014":0,"37015":-1,"37016":-1,"37017":-1,"37018":-1,"37019":-1,"37020":4064,"37021":-1,"37022":-1,"37023":-1,"37024":-1,"37025":-1,"37026":-1,"37027":-1,"37028":4064,"37029":4066,"37030":-1,"37031":-1,"37032":-1,"37033":-1,"37034":-1,"37035":-1,"37036":-1,"37037":-1,"37038":4067,"37039":-1,"37040":-1,"37041":4066,"37042":-1,"37043":-1,"37044":-1,"37045":4067,"37046":-1,"37047":-1,"37048":4065,"37049":4065,"37050":-1,"37051":-1,"37052":-1,"37053":-1,"37054":-1,"37055":-1,"37056":-1,"37057":-1,"37058":-1,"37059":4067,"37060":-1,"37061":4064,"37062":-1,"37063":-1,"37064":-1,"37065":0,"37066":4066,"37067":-1,"37068":-1,"37069":-1,"37070":-1,"37071":-1,"37072":-1,"37073":-1,"37074":-1,"37075":4066,"37076":-1,"37077":-1,"37078":-1,"37079":-1,"37080":-1,"37081":-1,"37082":-1,"37083":-1,"37084":-1,"37085":-1,"37086":0,"37087":-1,"37088":-1,"37089":-1,"37090":-1,"37091":-1,"37092":4068,"37093":4064,"37094":4065,"37095":4065,"37096":4067,"37097":-1,"37098":-1,"37099":-1,"37100":-1,"37101":-1,"37102":-1,"37103":-1,"37104":-1,"37105":-1,"37106":-1,"37107":-1,"37108":-1,"37109":-1,"37110":-1,"37111":4068,"37112":-1,"37113":-1,"37114":-1,"37115":-1,"37116":-1,"37117":-1,"37118":-1,"37119":-1,"37120":-1,"37121":-1,"37122":-1,"37123":-1,"37124":-1,"37125":-1,"37126":-1,"37127":4064,"37128":-1,"37129":-1,"37130":-1,"37131":-1,"37132":-1,"37133":-1,"37134":-1,"37135":-1,"37136":-1,"37137":-1,"37138":-1,"37139":-1,"37140":-1,"37141":-1,"37142":-1,"37143":-1,"37144":-1,"37145":-1,"37146":-1,"37147":-1,"37148":4066,"37149":4063,"37150":-1,"37151":4065,"37152":-1,"37153":-1,"37154":-1,"37155":4068,"37156":-1,"37157":-1,"37158":-1,"37159":-1,"37160":-1,"37161":-1,"37162":4067,"37163":-1,"37164":-1,"37165":-1,"37166":4064,"37167":4064,"37168":-1,"37169":-1,"37170":-1,"37171":-1,"37172":-1,"37173":-1,"37174":-1,"37175":-1,"37176":-1,"37177":-1,"37178":-1,"37179":-1,"37180":-1,"37181":-1,"37182":-1,"37183":-1,"37184":-1,"37185":-1,"37186":-1,"37187":4064,"37188":-1,"37189":-1,"37190":-1,"37191":-1,"37192":4064,"37193":4065,"37194":-1,"37195":-1,"37196":-1,"37197":-1,"37198":-1,"37199":-1,"37200":-1,"37201":-1,"37202":0,"37203":4065,"37204":-1,"37205":-1,"37206":-1,"37207":-1,"37208":4065,"37209":-1,"37210":-1,"37211":4066,"37212":-1,"37213":-1,"37214":-1,"37215":-1,"37216":4068,"37217":-1,"37218":-1,"37219":-1,"37220":-1,"37221":-1,"37222":4064,"37223":-1,"37224":-1,"37225":-1,"37226":-1,"37227":-1,"37228":-1,"37229":4067,"37230":-1,"37231":-1,"37232":-1,"37233":-1,"37234":-1,"37235":4066,"37236":4067,"37237":-1,"37238":-1,"37239":-1,"37240":-1,"37241":4066,"37242":-1,"37243":-1,"37244":-1,"37245":-1,"37246":-1,"37247":-1,"37248":-1,"37249":-1,"37250":-1,"37251":-1,"37252":-1,"37253":-1,"37254":-1,"37255":-1,"37256":-1,"37257":-1,"37258":-1,"37259":-1,"37260":-1,"37261":-1,"37262":-1,"37263":-1,"37264":-1,"37265":-1,"37266":-1,"37267":-1,"37268":-1,"37269":-1,"37270":-1,"37271":-1,"37272":-1,"37273":-1,"37274":-1,"37275":-1,"37276":-1,"37277":-1,"37278":-1,"37279":-1,"37280":-1,"37281":-1,"37282":-1,"37283":-1,"37284":-1,"37285":-1,"37286":-1,"37287":-1,"37288":4066,"37289":-1,"37290":-1,"37291":-1,"37292":-1,"37293":0,"37294":-1,"37295":-1,"37296":-1,"37297":-1,"37298":4064,"37299":-1,"37300":-1,"37301":-1,"37302":-1,"37303":-1,"37304":-1,"37305":-1,"37306":-1,"37307":4066,"37308":-1,"37309":-1,"37310":4065,"37311":4067,"37312":-1,"37313":-1,"37314":-1,"37315":-1,"37316":-1,"37317":-1,"37318":-1,"37319":-1,"37320":-1,"37321":-1,"37322":-1,"37323":-1,"37324":4065,"37325":-1,"37326":-1,"37327":-1,"37328":-1,"37329":-1,"37330":-1,"37331":-1,"37332":-1,"37333":-1,"37334":-1,"37335":4067,"37336":-1,"37337":-1,"37338":-1,"37339":4064,"37340":-1,"37341":-1,"37342":-1,"37343":-1,"37344":-1,"37345":-1,"37346":-1,"37347":-1,"37348":-1,"37349":-1,"37350":-1,"37351":4067,"37352":4064,"37353":-1,"37354":-1,"37355":-1,"37356":-1,"37357":-1,"37358":-1,"37359":-1,"37360":4066,"37361":-1,"37362":-1,"37363":-1,"37364":-1,"37365":-1,"37366":-1,"37367":-1,"37368":4064,"37369":-1,"37370":-1,"37371":4068,"37372":-1,"37373":-1,"37374":-1,"37375":4065,"37376":-1,"37377":4064,"37378":-1,"37379":-1,"37380":-1,"37381":-1,"37382":-1,"37383":-1,"37384":-1,"37385":-1,"37386":-1,"37387":-1,"37388":-1,"37389":4066,"37390":-1,"37391":-1,"37392":-1,"37393":-1,"37394":-1,"37395":-1,"37396":-1,"37397":-1,"37398":-1,"37399":-1,"37400":4066,"37401":-1,"37402":-1,"37403":0,"37404":-1,"37405":-1,"37406":-1,"37407":-1,"37408":-1,"37409":-1,"37410":-1,"37411":-1,"37412":4064,"37413":4063,"37414":-1,"37415":-1,"37416":-1,"37417":4064,"37418":-1,"37419":-1,"37420":-1,"37421":-1,"37422":-1,"37423":-1,"37424":-1,"37425":-1,"37426":-1,"37427":-1,"37428":-1,"37429":4066,"37430":-1,"37431":-1,"37432":-1,"37433":-1,"37434":-1,"37435":-1,"37436":-1,"37437":4065,"37438":-1,"37439":4063,"37440":-1,"37441":-1,"37442":-1,"37443":4068,"37444":4064,"37445":-1,"37446":-1,"37447":-1,"37448":-1,"37449":-1,"37450":-1,"37451":-1,"37452":-1,"37453":-1,"37454":-1,"37455":-1,"37456":-1,"37457":-1,"37458":-1,"37459":4066,"37460":4064,"37461":-1,"37462":-1,"37463":-1,"37464":-1,"37465":-1,"37466":-1,"37467":-1,"37468":-1,"37469":4065,"37470":-1,"37471":-1,"37472":-1,"37473":-1,"37474":-1,"37475":-1,"37476":-1,"37477":-1,"37478":-1,"37479":-1,"37480":-1,"37481":-1,"37482":-1,"37483":-1,"37484":-1,"37485":-1,"37486":-1,"37487":-1,"37488":-1,"37489":-1,"37490":-1,"37491":-1,"37492":-1,"37493":-1,"37494":-1,"37495":4067,"37496":0,"37497":-1,"37498":4065,"37499":0,"37500":-1,"37501":-1,"37502":-1,"37503":-1,"37504":-1,"37505":-1,"37506":4067,"37507":-1,"37508":4064,"37509":-1,"37510":-1,"37511":-1,"37512":-1,"37513":-1,"37514":-1,"37515":-1,"37516":-1,"37517":0,"37518":4065,"37519":-1,"37520":-1,"37521":-1,"37522":-1,"37523":-1,"37524":-1,"37525":-1,"37526":-1,"37527":-1,"37528":-1,"37529":-1,"37530":0,"37531":4063,"37532":-1,"37533":-1,"37534":-1,"37535":-1,"37536":-1,"37537":-1,"37538":-1,"37539":-1,"37540":-1,"37541":-1,"37542":-1,"37543":-1,"37544":-1,"37545":-1,"37546":4066,"37547":4063,"37548":-1,"37549":-1,"37550":-1,"37551":-1,"37552":-1,"37553":-1,"37554":4066,"37555":-1,"37556":-1,"37557":-1,"37558":-1,"37559":-1,"37560":-1,"37561":-1,"37562":-1,"37563":-1,"37564":-1,"37565":-1,"37566":-1,"37567":-1,"37568":-1,"37569":-1,"37570":-1,"37571":-1,"37572":4066,"37573":4066,"37574":-1,"37575":0,"37576":-1,"37577":4066,"37578":-1,"37579":-1,"37580":-1,"37581":-1,"37582":-1,"37583":-1,"37584":-1,"37585":-1,"37586":-1,"37587":-1,"37588":-1,"37589":4066,"37590":-1,"37591":-1,"37592":4065,"37593":-1,"37594":-1,"37595":-1,"37596":-1,"37597":-1,"37598":-1,"37599":-1,"37600":-1,"37601":-1,"37602":-1,"37603":-1,"37604":-1,"37605":4064,"37606":-1,"37607":-1,"37608":-1,"37609":-1,"37610":-1,"37611":-1,"37612":-1,"37613":-1,"37614":-1,"37615":4066,"37616":-1,"37617":-1,"37618":-1,"37619":-1,"37620":-1,"37621":-1,"37622":-1,"37623":-1,"37624":-1,"37625":-1,"37626":-1,"37627":-1,"37628":-1,"37629":-1,"37630":-1,"37631":-1,"37632":-1,"37633":-1,"37634":-1,"37635":-1,"37636":-1,"37637":-1,"37638":-1,"37639":-1,"37640":4067,"37641":-1,"37642":-1,"37643":4064,"37644":4066,"37645":-1,"37646":-1,"37647":-1,"37648":-1,"37649":-1,"37650":4064,"37651":-1,"37652":-1,"37653":-1,"37654":-1,"37655":-1,"37656":-1,"37657":-1,"37658":4063,"37659":-1,"37660":-1,"37661":-1,"37662":-1,"37663":-1,"37664":-1,"37665":-1,"37666":-1,"37667":-1,"37668":-1,"37669":-1,"37670":-1,"37671":-1,"37672":-1,"37673":-1,"37674":-1,"37675":4064,"37676":-1,"37677":-1,"37678":-1,"37679":-1,"37680":-1,"37681":-1,"37682":-1,"37683":-1,"37684":-1,"37685":-1,"37686":4066,"37687":4064,"37688":-1,"37689":-1,"37690":-1,"37691":-1,"37692":-1,"37693":-1,"37694":-1,"37695":-1,"37696":4063,"37697":-1,"37698":-1,"37699":-1,"37700":-1,"37701":-1,"37702":4066,"37703":-1,"37704":-1,"37705":-1,"37706":-1,"37707":-1,"37708":-1,"37709":4065,"37710":-1,"37711":-1,"37712":-1,"37713":4066,"37714":-1,"37715":-1,"37716":-1,"37717":-1,"37718":-1,"37719":-1,"37720":-1,"37721":-1,"37722":-1,"37723":-1,"37724":-1,"37725":-1,"37726":-1,"37727":-1,"37728":0,"37729":-1,"37730":-1,"37731":-1,"37732":-1,"37733":-1,"37734":-1,"37735":-1,"37736":-1,"37737":-1,"37738":-1,"37739":-1,"37740":-1,"37741":-1,"37742":-1,"37743":-1,"37744":-1,"37745":-1,"37746":-1,"37747":-1,"37748":-1,"37749":-1,"37750":-1,"37751":-1,"37752":-1,"37753":4065,"37754":-1,"37755":-1,"37756":-1,"37757":-1,"37758":-1,"37759":-1,"37760":-1,"37761":-1,"37762":-1,"37763":-1,"37764":-1,"37765":-1,"37766":-1,"37767":-1,"37768":-1,"37769":-1,"37770":-1,"37771":-1,"37772":-1,"37773":-1,"37774":-1,"37775":-1,"37776":-1,"37777":-1,"37778":-1,"37779":-1,"37780":-1,"37781":-1,"37782":-1,"37783":0,"37784":-1,"37785":-1,"37786":-1,"37787":-1,"37788":-1,"37789":-1,"37790":-1,"37791":4064,"37792":-1,"37793":-1,"37794":4066,"37795":-1,"37796":-1,"37797":-1,"37798":-1,"37799":-1,"37800":4067,"37801":4065,"37802":-1,"37803":-1,"37804":-1,"37805":-1,"37806":-1,"37807":-1,"37808":4066,"37809":-1,"37810":-1,"37811":-1,"37812":4066,"37813":-1,"37814":-1,"37815":-1,"37816":-1,"37817":-1,"37818":-1,"37819":-1,"37820":-1,"37821":-1,"37822":-1,"37823":-1,"37824":-1,"37825":-1,"37826":-1,"37827":-1,"37828":-1,"37829":-1,"37830":-1,"37831":-1,"37832":-1,"37833":-1,"37834":-1,"37835":-1,"37836":-1,"37837":-1,"37838":-1,"37839":-1,"37840":-1,"37841":-1,"37842":-1,"37843":-1,"37844":-1,"37845":-1,"37846":-1,"37847":-1,"37848":-1,"37849":-1,"37850":-1,"37851":0,"37852":-1,"37853":-1,"37854":-1,"37855":-1,"37856":-1,"37857":-1,"37858":-1,"37859":-1,"37860":-1,"37861":-1,"37862":-1,"37863":4067,"37864":-1,"37865":-1,"37866":-1,"37867":-1,"37868":-1,"37869":-1,"37870":-1,"37871":-1,"37872":4066,"37873":-1,"37874":-1,"37875":-1,"37876":-1,"37877":-1,"37878":-1,"37879":4065,"37880":-1,"37881":-1,"37882":-1,"37883":-1,"37884":-1,"37885":-1,"37886":4064,"37887":-1,"37888":-1,"37889":-1,"37890":-1,"37891":-1,"37892":-1,"37893":4064,"37894":-1,"37895":-1,"37896":4064,"37897":-1,"37898":-1,"37899":-1,"37900":-1,"37901":-1,"37902":-1,"37903":-1,"37904":-1,"37905":-1,"37906":-1,"37907":-1,"37908":-1,"37909":-1,"37910":-1,"37911":-1,"37912":-1,"37913":4064,"37914":-1,"37915":4065,"37916":-1,"37917":-1,"37918":-1,"37919":-1,"37920":-1,"37921":-1,"37922":-1,"37923":-1,"37924":-1,"37925":-1,"37926":-1,"37927":-1,"37928":-1,"37929":0,"37930":-1,"37931":4066,"37932":-1,"37933":-1,"37934":-1,"37935":-1,"37936":-1,"37937":-1,"37938":-1,"37939":-1,"37940":-1,"37941":-1,"37942":-1,"37943":4065,"37944":-1,"37945":-1,"37946":-1,"37947":-1,"37948":-1,"37949":-1,"37950":4065,"37951":-1,"37952":0,"37953":-1,"37954":-1,"37955":-1,"37956":-1,"37957":-1,"37958":-1,"37959":-1,"37960":0,"37961":0,"37962":-1,"37963":0,"37964":-1,"37965":-1,"37966":-1,"37967":-1,"37968":-1,"37969":-1,"37970":-1,"37971":-1,"37972":-1,"37973":-1,"37974":-1,"37975":4063,"37976":-1,"37977":-1,"37978":-1,"37979":-1,"37980":-1,"37981":-1,"37982":-1,"37983":-1,"37984":-1,"37985":4065,"37986":-1,"37987":0,"37988":-1,"37989":-1,"37990":-1,"37991":4065,"37992":-1,"37993":-1,"37994":-1,"37995":-1,"37996":4065,"37997":-1,"37998":-1,"37999":-1,"38000":-1,"38001":-1,"38002":-1,"38003":-1,"38004":-1,"38005":-1,"38006":-1,"38007":-1,"38008":-1,"38009":-1,"38010":-1,"38011":4066,"38012":-1,"38013":4064,"38014":-1,"38015":-1,"38016":-1,"38017":-1,"38018":4064,"38019":-1,"38020":-1,"38021":-1,"38022":4063,"38023":-1,"38024":4067,"38025":-1,"38026":-1,"38027":-1,"38028":-1,"38029":-1,"38030":-1,"38031":4068,"38032":4067,"38033":-1,"38034":-1,"38035":-1,"38036":-1,"38037":-1,"38038":-1,"38039":-1,"38040":-1,"38041":-1,"38042":0,"38043":-1,"38044":-1,"38045":4067,"38046":-1,"38047":-1,"38048":-1,"38049":4065,"38050":0,"38051":-1,"38052":-1,"38053":-1,"38054":-1,"38055":-1,"38056":-1,"38057":4064,"38058":0,"38059":4065,"38060":4066,"38061":-1,"38062":-1,"38063":-1,"38064":0,"38065":-1,"38066":-1,"38067":-1,"38068":-1,"38069":-1,"38070":-1,"38071":-1,"38072":-1,"38073":4067,"38074":-1,"38075":-1,"38076":4064,"38077":-1,"38078":-1,"38079":-1,"38080":-1,"38081":-1,"38082":4066,"38083":-1,"38084":-1,"38085":-1,"38086":-1,"38087":0,"38088":-1,"38089":-1,"38090":-1,"38091":-1,"38092":-1,"38093":-1,"38094":4068,"38095":-1,"38096":-1,"38097":-1,"38098":0,"38099":-1,"38100":-1,"38101":-1,"38102":-1,"38103":-1,"38104":0,"38105":-1,"38106":-1,"38107":-1,"38108":-1,"38109":-1,"38110":-1,"38111":-1,"38112":-1,"38113":4066,"38114":-1,"38115":-1,"38116":-1,"38117":-1,"38118":-1,"38119":-1,"38120":-1,"38121":-1,"38122":-1,"38123":-1,"38124":4064,"38125":-1,"38126":-1,"38127":0,"38128":-1,"38129":-1,"38130":4063,"38131":-1,"38132":-1,"38133":-1,"38134":4066,"38135":-1,"38136":-1,"38137":-1,"38138":-1,"38139":-1,"38140":-1,"38141":-1,"38142":4067,"38143":-1,"38144":-1,"38145":-1,"38146":4066,"38147":-1,"38148":-1,"38149":-1,"38150":4067,"38151":4066,"38152":4063,"38153":-1,"38154":-1,"38155":4067,"38156":-1,"38157":-1,"38158":4065,"38159":4066,"38160":-1,"38161":-1,"38162":-1,"38163":-1,"38164":-1,"38165":4064,"38166":0,"38167":-1,"38168":-1,"38169":-1,"38170":-1,"38171":-1,"38172":-1,"38173":-1,"38174":-1,"38175":-1,"38176":-1,"38177":4064,"38178":-1,"38179":-1,"38180":-1,"38181":-1,"38182":-1,"38183":-1,"38184":4065,"38185":-1,"38186":-1,"38187":-1,"38188":4064,"38189":-1,"38190":-1,"38191":-1,"38192":-1,"38193":-1,"38194":-1,"38195":-1,"38196":-1,"38197":-1,"38198":-1,"38199":-1,"38200":-1,"38201":-1,"38202":-1,"38203":-1,"38204":-1,"38205":4067,"38206":4067,"38207":-1,"38208":-1,"38209":-1,"38210":-1,"38211":-1,"38212":0,"38213":-1,"38214":-1,"38215":-1,"38216":-1,"38217":-1,"38218":-1,"38219":-1,"38220":-1,"38221":-1,"38222":4066,"38223":-1,"38224":-1,"38225":-1,"38226":4066,"38227":-1,"38228":-1,"38229":-1,"38230":-1,"38231":4066,"38232":-1,"38233":-1,"38234":0,"38235":-1,"38236":-1,"38237":4067,"38238":-1,"38239":-1,"38240":-1,"38241":-1,"38242":4068,"38243":-1,"38244":4068,"38245":-1,"38246":-1,"38247":4065,"38248":-1,"38249":-1,"38250":-1,"38251":-1,"38252":0,"38253":-1,"38254":-1,"38255":-1,"38256":-1,"38257":-1,"38258":-1,"38259":-1,"38260":-1,"38261":-1,"38262":-1,"38263":-1,"38264":-1,"38265":-1,"38266":-1,"38267":-1,"38268":-1,"38269":-1,"38270":-1,"38271":-1,"38272":-1,"38273":-1,"38274":-1,"38275":-1,"38276":-1,"38277":-1,"38278":-1,"38279":4064,"38280":-1,"38281":-1,"38282":4066,"38283":-1,"38284":-1,"38285":-1,"38286":-1,"38287":-1,"38288":-1,"38289":-1,"38290":-1,"38291":-1,"38292":-1,"38293":-1,"38294":-1,"38295":-1,"38296":0,"38297":-1,"38298":-1,"38299":-1,"38300":-1,"38301":-1,"38302":-1,"38303":-1,"38304":-1,"38305":-1,"38306":-1,"38307":-1,"38308":-1,"38309":-1,"38310":4066,"38311":-1,"38312":-1,"38313":-1,"38314":4066,"38315":-1,"38316":-1,"38317":-1,"38318":-1,"38319":4066,"38320":-1,"38321":-1,"38322":-1,"38323":4063,"38324":-1,"38325":-1,"38326":0,"38327":-1,"38328":-1,"38329":-1,"38330":-1,"38331":-1,"38332":-1,"38333":4065,"38334":-1,"38335":-1,"38336":-1,"38337":-1,"38338":4066,"38339":-1,"38340":-1,"38341":-1,"38342":4065,"38343":-1,"38344":4063,"38345":-1,"38346":4063,"38347":-1,"38348":-1,"38349":-1,"38350":-1,"38351":-1,"38352":4066,"38353":-1,"38354":-1,"38355":-1,"38356":-1,"38357":-1,"38358":-1,"38359":-1,"38360":-1,"38361":-1,"38362":-1,"38363":-1,"38364":-1,"38365":-1,"38366":-1,"38367":-1,"38368":-1,"38369":-1,"38370":-1,"38371":-1,"38372":-1,"38373":-1,"38374":-1,"38375":-1,"38376":-1,"38377":-1,"38378":-1,"38379":-1,"38380":-1,"38381":-1,"38382":4067,"38383":-1,"38384":0,"38385":-1,"38386":-1,"38387":-1,"38388":4065,"38389":-1,"38390":4064,"38391":-1,"38392":-1,"38393":-1,"38394":-1,"38395":-1,"38396":4064,"38397":-1,"38398":-1,"38399":-1,"38400":-1,"38401":4064,"38402":-1,"38403":-1,"38404":-1,"38405":0,"38406":4064,"38407":-1,"38408":-1,"38409":-1,"38410":4066,"38411":-1,"38412":-1,"38413":-1,"38414":4065,"38415":-1,"38416":-1,"38417":-1,"38418":-1,"38419":-1,"38420":-1,"38421":-1,"38422":-1,"38423":-1,"38424":-1,"38425":-1,"38426":-1,"38427":-1,"38428":4065,"38429":-1,"38430":-1,"38431":-1,"38432":4067,"38433":-1,"38434":-1,"38435":4063,"38436":-1,"38437":-1,"38438":-1,"38439":-1,"38440":-1,"38441":-1,"38442":-1,"38443":0,"38444":0,"38445":-1,"38446":4068,"38447":-1,"38448":-1,"38449":-1,"38450":-1,"38451":-1,"38452":-1,"38453":4065,"38454":-1,"38455":-1,"38456":-1,"38457":-1,"38458":-1,"38459":-1,"38460":-1,"38461":-1,"38462":4067,"38463":-1,"38464":-1,"38465":-1,"38466":4065,"38467":-1,"38468":-1,"38469":-1,"38470":-1,"38471":0,"38472":-1,"38473":-1,"38474":-1,"38475":-1,"38476":-1,"38477":4067,"38478":-1,"38479":-1,"38480":4065,"38481":4067,"38482":-1,"38483":-1,"38484":-1,"38485":-1,"38486":-1,"38487":-1,"38488":-1,"38489":-1,"38490":-1,"38491":-1,"38492":4067,"38493":-1,"38494":-1,"38495":-1,"38496":-1,"38497":-1,"38498":-1,"38499":4067,"38500":-1,"38501":-1,"38502":-1,"38503":-1,"38504":-1,"38505":-1,"38506":-1,"38507":-1,"38508":-1,"38509":-1,"38510":-1,"38511":-1,"38512":-1,"38513":-1,"38514":-1,"38515":-1,"38516":-1,"38517":-1,"38518":4064,"38519":-1,"38520":-1,"38521":-1,"38522":-1,"38523":-1,"38524":-1,"38525":4065,"38526":-1,"38527":-1,"38528":-1,"38529":-1,"38530":-1,"38531":-1,"38532":0,"38533":4066,"38534":-1,"38535":-1,"38536":-1,"38537":-1,"38538":-1,"38539":-1,"38540":-1,"38541":-1,"38542":-1,"38543":-1,"38544":-1,"38545":-1,"38546":-1,"38547":-1,"38548":-1,"38549":-1,"38550":-1,"38551":-1,"38552":-1,"38553":4063,"38554":-1,"38555":-1,"38556":-1,"38557":-1,"38558":-1,"38559":-1,"38560":-1,"38561":-1,"38562":-1,"38563":4064,"38564":4064,"38565":-1,"38566":-1,"38567":-1,"38568":4067,"38569":-1,"38570":4065,"38571":-1,"38572":-1,"38573":-1,"38574":-1,"38575":-1,"38576":-1,"38577":-1,"38578":-1,"38579":4063,"38580":-1,"38581":-1,"38582":-1,"38583":-1,"38584":-1,"38585":-1,"38586":-1,"38587":-1,"38588":-1,"38589":-1,"38590":-1,"38591":-1,"38592":-1,"38593":-1,"38594":-1,"38595":-1,"38596":-1,"38597":4064,"38598":-1,"38599":-1,"38600":-1,"38601":-1,"38602":-1,"38603":-1,"38604":-1,"38605":-1,"38606":-1,"38607":-1,"38608":-1,"38609":-1,"38610":-1,"38611":-1,"38612":-1,"38613":-1,"38614":-1,"38615":-1,"38616":4066,"38617":0,"38618":-1,"38619":-1,"38620":-1,"38621":-1,"38622":-1,"38623":-1,"38624":-1,"38625":-1,"38626":-1,"38627":-1,"38628":-1,"38629":-1,"38630":-1,"38631":-1,"38632":-1,"38633":0,"38634":-1,"38635":-1,"38636":4064,"38637":4067,"38638":-1,"38639":-1,"38640":-1,"38641":4067,"38642":-1,"38643":-1,"38644":-1,"38645":-1,"38646":-1,"38647":-1,"38648":-1,"38649":-1,"38650":-1,"38651":4065,"38652":-1,"38653":-1,"38654":-1,"38655":-1,"38656":-1,"38657":-1,"38658":0,"38659":0,"38660":-1,"38661":4064,"38662":-1,"38663":-1,"38664":-1,"38665":-1,"38666":-1,"38667":-1,"38668":-1,"38669":-1,"38670":-1,"38671":-1,"38672":-1,"38673":-1,"38674":-1,"38675":-1,"38676":-1,"38677":-1,"38678":-1,"38679":-1,"38680":-1,"38681":4066,"38682":-1,"38683":-1,"38684":-1,"38685":-1,"38686":-1,"38687":-1,"38688":-1,"38689":4063,"38690":0,"38691":-1,"38692":-1,"38693":-1,"38694":-1,"38695":-1,"38696":0,"38697":-1,"38698":-1,"38699":-1,"38700":-1,"38701":-1,"38702":-1,"38703":-1,"38704":-1,"38705":-1,"38706":-1,"38707":-1,"38708":-1,"38709":-1,"38710":-1,"38711":-1,"38712":-1,"38713":4066,"38714":-1,"38715":-1,"38716":-1,"38717":-1,"38718":-1,"38719":-1,"38720":-1,"38721":0,"38722":-1,"38723":-1,"38724":-1,"38725":-1,"38726":-1,"38727":-1,"38728":-1,"38729":-1,"38730":-1,"38731":-1,"38732":-1,"38733":-1,"38734":-1,"38735":-1,"38736":-1,"38737":-1,"38738":-1,"38739":-1,"38740":-1,"38741":0,"38742":-1,"38743":-1,"38744":-1,"38745":-1,"38746":-1,"38747":-1,"38748":-1,"38749":-1,"38750":-1,"38751":0,"38752":-1,"38753":-1,"38754":-1,"38755":-1,"38756":-1,"38757":-1,"38758":-1,"38759":-1,"38760":-1,"38761":-1,"38762":-1,"38763":-1,"38764":-1,"38765":-1,"38766":-1,"38767":-1,"38768":-1,"38769":-1,"38770":-1,"38771":-1,"38772":-1,"38773":-1,"38774":-1,"38775":-1,"38776":4066,"38777":-1,"38778":-1,"38779":-1,"38780":4067,"38781":-1,"38782":-1,"38783":-1,"38784":4067,"38785":-1,"38786":-1,"38787":-1,"38788":-1,"38789":-1,"38790":-1,"38791":4066,"38792":-1,"38793":-1,"38794":-1,"38795":-1,"38796":4063,"38797":-1,"38798":-1,"38799":-1,"38800":-1,"38801":-1,"38802":4065,"38803":-1,"38804":-1,"38805":-1,"38806":-1,"38807":-1,"38808":4067,"38809":-1,"38810":-1,"38811":-1,"38812":-1,"38813":-1,"38814":-1,"38815":-1,"38816":-1,"38817":-1,"38818":-1,"38819":-1,"38820":-1,"38821":-1,"38822":-1,"38823":-1,"38824":-1,"38825":-1,"38826":-1,"38827":-1,"38828":-1,"38829":0,"38830":-1,"38831":-1,"38832":-1,"38833":-1,"38834":-1,"38835":-1,"38836":-1,"38837":-1,"38838":-1,"38839":-1,"38840":-1,"38841":-1,"38842":-1,"38843":-1,"38844":-1,"38845":-1,"38846":-1,"38847":-1,"38848":-1,"38849":-1,"38850":-1,"38851":-1,"38852":-1,"38853":-1,"38854":-1,"38855":-1,"38856":4066,"38857":-1,"38858":-1,"38859":-1,"38860":4063,"38861":-1,"38862":-1,"38863":-1,"38864":4064,"38865":-1,"38866":-1,"38867":-1,"38868":-1,"38869":-1,"38870":-1,"38871":-1,"38872":-1,"38873":-1,"38874":-1,"38875":-1,"38876":-1,"38877":-1,"38878":-1,"38879":-1,"38880":-1,"38881":-1,"38882":-1,"38883":-1,"38884":-1,"38885":-1,"38886":-1,"38887":4068,"38888":-1,"38889":-1,"38890":-1,"38891":-1,"38892":-1,"38893":-1,"38894":-1,"38895":-1,"38896":-1,"38897":4063,"38898":-1,"38899":0,"38900":-1,"38901":-1,"38902":4064,"38903":-1,"38904":-1,"38905":-1,"38906":-1,"38907":4068,"38908":-1,"38909":-1,"38910":4067,"38911":-1,"38912":-1,"38913":-1,"38914":-1,"38915":-1,"38916":-1,"38917":-1,"38918":-1,"38919":-1,"38920":-1,"38921":-1,"38922":-1,"38923":-1,"38924":-1,"38925":4066,"38926":-1,"38927":-1,"38928":-1,"38929":0,"38930":-1,"38931":-1,"38932":-1,"38933":-1,"38934":-1,"38935":-1,"38936":4064,"38937":-1,"38938":-1,"38939":-1,"38940":-1,"38941":-1,"38942":-1,"38943":-1,"38944":-1,"38945":-1,"38946":-1,"38947":-1,"38948":-1,"38949":-1,"38950":-1,"38951":4066,"38952":-1,"38953":-1,"38954":-1,"38955":-1,"38956":-1,"38957":-1,"38958":-1,"38959":-1,"38960":-1,"38961":-1,"38962":-1,"38963":-1,"38964":-1,"38965":-1,"38966":-1,"38967":-1,"38968":-1,"38969":-1,"38970":-1,"38971":-1,"38972":-1,"38973":-1,"38974":-1,"38975":4063,"38976":-1,"38977":-1,"38978":-1,"38979":-1,"38980":-1,"38981":-1,"38982":-1,"38983":-1,"38984":-1,"38985":-1,"38986":-1,"38987":-1,"38988":-1,"38989":-1,"38990":-1,"38991":-1,"38992":-1,"38993":-1,"38994":-1,"38995":-1,"38996":-1,"38997":4065,"38998":4065,"38999":0,"39000":-1,"39001":-1,"39002":-1,"39003":4067,"39004":-1,"39005":-1,"39006":-1,"39007":4065,"39008":-1,"39009":-1,"39010":-1,"39011":-1,"39012":-1,"39013":4067,"39014":-1,"39015":4067,"39016":-1,"39017":-1,"39018":-1,"39019":-1,"39020":-1,"39021":-1,"39022":-1,"39023":-1,"39024":-1,"39025":-1,"39026":-1,"39027":-1,"39028":-1,"39029":-1,"39030":-1,"39031":-1,"39032":-1,"39033":-1,"39034":-1,"39035":-1,"39036":-1,"39037":-1,"39038":-1,"39039":-1,"39040":-1,"39041":4067,"39042":-1,"39043":4064,"39044":4064,"39045":-1,"39046":-1,"39047":-1,"39048":-1,"39049":-1,"39050":4064,"39051":4063,"39052":-1,"39053":-1,"39054":-1,"39055":-1,"39056":4064,"39057":-1,"39058":-1,"39059":-1,"39060":-1,"39061":-1,"39062":-1,"39063":-1,"39064":-1,"39065":-1,"39066":-1,"39067":-1,"39068":4066,"39069":-1,"39070":-1,"39071":-1,"39072":-1,"39073":-1,"39074":-1,"39075":-1,"39076":-1,"39077":0,"39078":-1,"39079":4067,"39080":-1,"39081":-1,"39082":-1,"39083":-1,"39084":-1,"39085":-1,"39086":-1,"39087":4064,"39088":-1,"39089":-1,"39090":4066,"39091":4065,"39092":-1,"39093":-1,"39094":-1,"39095":-1,"39096":-1,"39097":-1,"39098":-1,"39099":-1,"39100":-1,"39101":-1,"39102":-1,"39103":-1,"39104":-1,"39105":-1,"39106":-1,"39107":-1,"39108":-1,"39109":-1,"39110":-1,"39111":-1,"39112":-1,"39113":0,"39114":-1,"39115":-1,"39116":-1,"39117":-1,"39118":-1,"39119":-1,"39120":-1,"39121":-1,"39122":-1,"39123":-1,"39124":-1,"39125":-1,"39126":-1,"39127":-1,"39128":-1,"39129":0,"39130":0,"39131":-1,"39132":-1,"39133":-1,"39134":-1,"39135":0,"39136":-1,"39137":4063,"39138":-1,"39139":-1,"39140":-1,"39141":-1,"39142":-1,"39143":-1,"39144":4064,"39145":-1,"39146":-1,"39147":-1,"39148":-1,"39149":-1,"39150":0,"39151":-1,"39152":0,"39153":4066,"39154":-1,"39155":-1,"39156":-1,"39157":-1,"39158":-1,"39159":-1,"39160":-1,"39161":-1,"39162":-1,"39163":-1,"39164":-1,"39165":-1,"39166":-1,"39167":-1,"39168":-1,"39169":-1,"39170":-1,"39171":4064,"39172":-1,"39173":-1,"39174":-1,"39175":-1,"39176":-1,"39177":-1,"39178":-1,"39179":-1,"39180":0,"39181":4065,"39182":-1,"39183":4064,"39184":-1,"39185":-1,"39186":-1,"39187":-1,"39188":-1,"39189":-1,"39190":-1,"39191":-1,"39192":-1,"39193":-1,"39194":-1,"39195":0,"39196":-1,"39197":-1,"39198":-1,"39199":-1,"39200":-1,"39201":-1,"39202":-1,"39203":4064,"39204":-1,"39205":-1,"39206":-1,"39207":-1,"39208":-1,"39209":-1,"39210":-1,"39211":-1,"39212":-1,"39213":-1,"39214":-1,"39215":0,"39216":4066,"39217":-1,"39218":-1,"39219":-1,"39220":-1,"39221":-1,"39222":-1,"39223":-1,"39224":-1,"39225":-1,"39226":-1,"39227":-1,"39228":-1,"39229":-1,"39230":-1,"39231":-1,"39232":-1,"39233":-1,"39234":-1,"39235":-1,"39236":4067,"39237":-1,"39238":-1,"39239":-1,"39240":0,"39241":-1,"39242":4064,"39243":-1,"39244":-1,"39245":4064,"39246":4068,"39247":4065,"39248":-1,"39249":-1,"39250":-1,"39251":-1,"39252":0,"39253":-1,"39254":-1,"39255":-1,"39256":-1,"39257":-1,"39258":-1,"39259":-1,"39260":-1,"39261":-1,"39262":-1,"39263":-1,"39264":-1,"39265":4064,"39266":-1,"39267":-1,"39268":-1,"39269":-1,"39270":-1,"39271":-1,"39272":-1,"39273":-1,"39274":-1,"39275":-1,"39276":4066,"39277":4065,"39278":4068,"39279":-1,"39280":-1,"39281":-1,"39282":-1,"39283":-1,"39284":-1,"39285":4064,"39286":-1,"39287":-1,"39288":-1,"39289":-1,"39290":-1,"39291":-1,"39292":-1,"39293":-1,"39294":4065,"39295":-1,"39296":-1,"39297":-1,"39298":-1,"39299":-1,"39300":-1,"39301":-1,"39302":-1,"39303":4068,"39304":-1,"39305":-1,"39306":-1,"39307":4064,"39308":4066,"39309":-1,"39310":-1,"39311":-1,"39312":-1,"39313":-1,"39314":-1,"39315":0,"39316":-1,"39317":-1,"39318":-1,"39319":-1,"39320":0,"39321":-1,"39322":-1,"39323":0,"39324":-1,"39325":-1,"39326":-1,"39327":4067,"39328":-1,"39329":-1,"39330":-1,"39331":-1,"39332":-1,"39333":-1,"39334":-1,"39335":-1,"39336":0,"39337":-1,"39338":-1,"39339":-1,"39340":4063,"39341":-1,"39342":-1,"39343":-1,"39344":-1,"39345":-1,"39346":-1,"39347":-1,"39348":-1,"39349":-1,"39350":-1,"39351":-1,"39352":-1,"39353":4066,"39354":-1,"39355":-1,"39356":-1,"39357":-1,"39358":-1,"39359":-1,"39360":-1,"39361":-1,"39362":-1,"39363":-1,"39364":-1,"39365":-1,"39366":-1,"39367":-1,"39368":-1,"39369":-1,"39370":-1,"39371":4065,"39372":4063,"39373":-1,"39374":-1,"39375":-1,"39376":-1,"39377":4065,"39378":4063,"39379":-1,"39380":-1,"39381":-1,"39382":-1,"39383":-1,"39384":-1,"39385":-1,"39386":-1,"39387":-1,"39388":-1,"39389":4064,"39390":0,"39391":-1,"39392":4068,"39393":-1,"39394":-1,"39395":-1,"39396":-1,"39397":4065,"39398":-1,"39399":-1,"39400":4067,"39401":-1,"39402":-1,"39403":-1,"39404":0,"39405":-1,"39406":-1,"39407":-1,"39408":-1,"39409":4064,"39410":-1,"39411":-1,"39412":-1,"39413":-1,"39414":-1,"39415":-1,"39416":-1,"39417":-1,"39418":-1,"39419":-1,"39420":-1,"39421":-1,"39422":-1,"39423":-1,"39424":-1,"39425":-1,"39426":-1,"39427":-1,"39428":-1,"39429":4065,"39430":0,"39431":4065,"39432":-1,"39433":-1,"39434":4064,"39435":-1,"39436":4065,"39437":-1,"39438":-1,"39439":-1,"39440":-1,"39441":-1,"39442":0,"39443":-1,"39444":-1,"39445":-1,"39446":-1,"39447":-1,"39448":-1,"39449":-1,"39450":-1,"39451":-1,"39452":4067,"39453":-1,"39454":-1,"39455":-1,"39456":-1,"39457":-1,"39458":-1,"39459":-1,"39460":-1,"39461":-1,"39462":-1,"39463":-1,"39464":-1,"39465":-1,"39466":-1,"39467":4065,"39468":4067,"39469":-1,"39470":4065,"39471":-1,"39472":4065,"39473":-1,"39474":-1,"39475":-1,"39476":-1,"39477":-1,"39478":4064,"39479":-1,"39480":-1,"39481":-1,"39482":4065,"39483":4065,"39484":-1,"39485":-1,"39486":-1,"39487":-1,"39488":-1,"39489":-1,"39490":-1,"39491":-1,"39492":-1,"39493":-1,"39494":-1,"39495":-1,"39496":-1,"39497":-1,"39498":-1,"39499":-1,"39500":-1,"39501":4067,"39502":4064,"39503":-1,"39504":-1,"39505":-1,"39506":0,"39507":-1,"39508":-1,"39509":-1,"39510":-1,"39511":-1,"39512":-1,"39513":-1,"39514":-1,"39515":-1,"39516":-1,"39517":-1,"39518":-1,"39519":-1,"39520":-1,"39521":-1,"39522":-1,"39523":-1,"39524":-1,"39525":-1,"39526":-1,"39527":-1,"39528":-1,"39529":4064,"39530":-1,"39531":-1,"39532":-1,"39533":-1,"39534":-1,"39535":-1,"39536":-1,"39537":-1,"39538":-1,"39539":-1,"39540":0,"39541":4068,"39542":-1,"39543":-1,"39544":-1,"39545":-1,"39546":4064,"39547":-1,"39548":0,"39549":-1,"39550":-1,"39551":-1,"39552":-1,"39553":-1,"39554":4064,"39555":-1,"39556":-1,"39557":4064,"39558":-1,"39559":-1,"39560":4065,"39561":-1,"39562":-1,"39563":-1,"39564":-1,"39565":4064,"39566":4066,"39567":-1,"39568":-1,"39569":4066,"39570":-1,"39571":-1,"39572":-1,"39573":4065,"39574":4063,"39575":-1,"39576":-1,"39577":-1,"39578":-1,"39579":-1,"39580":-1,"39581":-1,"39582":-1,"39583":-1,"39584":-1,"39585":-1,"39586":-1,"39587":-1,"39588":-1,"39589":-1,"39590":-1,"39591":4065,"39592":-1,"39593":-1,"39594":-1,"39595":0,"39596":-1,"39597":-1,"39598":-1,"39599":-1,"39600":-1,"39601":-1,"39602":-1,"39603":-1,"39604":-1,"39605":4063,"39606":-1,"39607":-1,"39608":4067,"39609":-1,"39610":-1,"39611":4064,"39612":-1,"39613":-1,"39614":-1,"39615":-1,"39616":4067,"39617":0,"39618":-1,"39619":4067,"39620":-1,"39621":-1,"39622":-1,"39623":-1,"39624":-1,"39625":-1,"39626":-1,"39627":-1,"39628":-1,"39629":-1,"39630":-1,"39631":-1,"39632":-1,"39633":-1,"39634":-1,"39635":-1,"39636":-1,"39637":0,"39638":4067,"39639":4064,"39640":-1,"39641":-1,"39642":-1,"39643":-1,"39644":-1,"39645":0,"39646":-1,"39647":-1,"39648":-1,"39649":-1,"39650":-1,"39651":-1,"39652":-1,"39653":-1,"39654":-1,"39655":4066,"39656":-1,"39657":-1,"39658":-1,"39659":-1,"39660":-1,"39661":4067,"39662":-1,"39663":-1,"39664":4066,"39665":-1,"39666":-1,"39667":-1,"39668":-1,"39669":-1,"39670":-1,"39671":-1,"39672":-1,"39673":-1,"39674":-1,"39675":4066,"39676":-1,"39677":4067,"39678":4067,"39679":-1,"39680":-1,"39681":-1,"39682":-1,"39683":-1,"39684":-1,"39685":-1,"39686":-1,"39687":-1,"39688":-1,"39689":-1,"39690":-1,"39691":-1,"39692":-1,"39693":-1,"39694":-1,"39695":4067,"39696":-1,"39697":-1,"39698":-1,"39699":-1,"39700":-1,"39701":4066,"39702":-1,"39703":-1,"39704":4064,"39705":-1,"39706":-1,"39707":-1,"39708":4066,"39709":4064,"39710":-1,"39711":-1,"39712":-1,"39713":-1,"39714":-1,"39715":4066,"39716":-1,"39717":-1,"39718":-1,"39719":-1,"39720":-1,"39721":-1,"39722":-1,"39723":-1,"39724":-1,"39725":-1,"39726":-1,"39727":-1,"39728":4063,"39729":-1,"39730":-1,"39731":-1,"39732":-1,"39733":4068,"39734":-1,"39735":-1,"39736":-1,"39737":-1,"39738":-1,"39739":-1,"39740":-1,"39741":4067,"39742":4067,"39743":-1,"39744":-1,"39745":-1,"39746":-1,"39747":-1,"39748":-1,"39749":-1,"39750":-1,"39751":-1,"39752":4064,"39753":4065,"39754":-1,"39755":-1,"39756":-1,"39757":-1,"39758":-1,"39759":-1,"39760":-1,"39761":-1,"39762":-1,"39763":-1,"39764":-1,"39765":-1,"39766":0,"39767":-1,"39768":-1,"39769":-1,"39770":-1,"39771":4065,"39772":-1,"39773":4067,"39774":-1,"39775":-1,"39776":-1,"39777":4067,"39778":-1,"39779":4068,"39780":0,"39781":0,"39782":-1,"39783":-1,"39784":-1,"39785":-1,"39786":-1,"39787":-1,"39788":-1,"39789":4064,"39790":4066,"39791":-1,"39792":4065,"39793":-1,"39794":-1,"39795":-1,"39796":-1,"39797":-1,"39798":-1,"39799":-1,"39800":-1,"39801":-1,"39802":-1,"39803":-1,"39804":-1,"39805":-1,"39806":4063,"39807":-1,"39808":4063,"39809":-1,"39810":-1,"39811":-1,"39812":0,"39813":-1,"39814":-1,"39815":-1,"39816":-1,"39817":-1,"39818":-1,"39819":-1,"39820":-1,"39821":-1,"39822":-1,"39823":-1,"39824":-1,"39825":-1,"39826":-1,"39827":4066,"39828":-1,"39829":-1,"39830":-1,"39831":-1,"39832":-1,"39833":-1,"39834":-1,"39835":-1,"39836":-1,"39837":-1,"39838":-1,"39839":-1,"39840":-1,"39841":-1,"39842":-1,"39843":4068,"39844":-1,"39845":-1,"39846":-1,"39847":-1,"39848":-1,"39849":-1,"39850":-1,"39851":-1,"39852":-1,"39853":4066,"39854":-1,"39855":-1,"39856":-1,"39857":-1,"39858":-1,"39859":-1,"39860":-1,"39861":-1,"39862":4067,"39863":4067,"39864":-1,"39865":-1,"39866":-1,"39867":0,"39868":-1,"39869":-1,"39870":-1,"39871":-1,"39872":-1,"39873":-1,"39874":-1,"39875":-1,"39876":-1,"39877":-1,"39878":-1,"39879":-1,"39880":-1,"39881":-1,"39882":-1,"39883":-1,"39884":4066,"39885":-1,"39886":-1,"39887":-1,"39888":-1,"39889":-1,"39890":-1,"39891":-1,"39892":-1,"39893":-1,"39894":-1,"39895":-1,"39896":0,"39897":-1,"39898":-1,"39899":-1,"39900":-1,"39901":-1,"39902":-1,"39903":-1,"39904":-1,"39905":-1,"39906":4063,"39907":-1,"39908":-1,"39909":4064,"39910":-1,"39911":-1,"39912":-1,"39913":-1,"39914":0,"39915":-1,"39916":-1,"39917":-1,"39918":-1,"39919":-1,"39920":-1,"39921":4067,"39922":-1,"39923":-1,"39924":-1,"39925":4063,"39926":-1,"39927":-1,"39928":-1,"39929":4065,"39930":-1,"39931":4064,"39932":-1,"39933":-1,"39934":4066,"39935":4064,"39936":-1,"39937":-1,"39938":-1,"39939":-1,"39940":-1,"39941":-1,"39942":-1,"39943":-1,"39944":-1,"39945":-1,"39946":-1,"39947":-1,"39948":-1,"39949":-1,"39950":-1,"39951":-1,"39952":0,"39953":-1,"39954":-1,"39955":-1,"39956":-1,"39957":-1,"39958":-1,"39959":-1,"39960":-1,"39961":-1,"39962":-1,"39963":-1,"39964":-1,"39965":0,"39966":4066,"39967":4065,"39968":-1,"39969":-1,"39970":-1,"39971":-1,"39972":4068,"39973":-1,"39974":-1,"39975":-1,"39976":-1,"39977":-1,"39978":-1,"39979":-1,"39980":-1,"39981":-1,"39982":4066,"39983":-1,"39984":-1,"39985":-1,"39986":-1,"39987":-1,"39988":-1,"39989":-1,"39990":-1,"39991":-1,"39992":-1,"39993":-1,"39994":-1,"39995":-1,"39996":-1,"39997":4066,"39998":4068,"39999":-1,"40000":-1,"40001":-1,"40002":-1,"40003":-1,"40004":-1,"40005":-1,"40006":-1,"40007":-1,"40008":-1,"40009":-1,"40010":-1,"40011":0,"40012":-1,"40013":-1,"40014":-1,"40015":-1,"40016":4068,"40017":-1,"40018":-1,"40019":-1,"40020":4068,"40021":-1,"40022":-1,"40023":-1,"40024":-1,"40025":-1,"40026":-1,"40027":-1,"40028":-1,"40029":0,"40030":-1,"40031":-1,"40032":-1,"40033":-1,"40034":-1,"40035":-1,"40036":-1,"40037":-1,"40038":-1,"40039":-1,"40040":-1,"40041":-1,"40042":0,"40043":-1,"40044":-1,"40045":-1,"40046":-1,"40047":-1,"40048":-1,"40049":-1,"40050":-1,"40051":4066,"40052":-1,"40053":-1,"40054":-1,"40055":-1,"40056":-1,"40057":0,"40058":-1,"40059":4068,"40060":-1,"40061":-1,"40062":-1,"40063":-1,"40064":-1,"40065":-1,"40066":-1,"40067":-1,"40068":-1,"40069":-1,"40070":-1,"40071":-1,"40072":-1,"40073":-1,"40074":-1,"40075":-1,"40076":-1,"40077":0,"40078":-1,"40079":-1,"40080":-1,"40081":-1,"40082":-1,"40083":-1,"40084":-1,"40085":-1,"40086":4064,"40087":-1,"40088":-1,"40089":-1,"40090":-1,"40091":-1,"40092":-1,"40093":-1,"40094":-1,"40095":-1,"40096":-1,"40097":-1,"40098":-1,"40099":-1,"40100":-1,"40101":0,"40102":-1,"40103":0,"40104":-1,"40105":-1,"40106":-1,"40107":-1,"40108":-1,"40109":-1,"40110":0,"40111":4066,"40112":-1,"40113":-1,"40114":-1,"40115":-1,"40116":-1,"40117":-1,"40118":-1,"40119":4065,"40120":-1,"40121":-1,"40122":-1,"40123":-1,"40124":-1,"40125":0,"40126":4065,"40127":-1,"40128":-1,"40129":-1,"40130":-1,"40131":-1,"40132":-1,"40133":-1,"40134":-1,"40135":-1,"40136":-1,"40137":-1,"40138":-1,"40139":-1,"40140":-1,"40141":-1,"40142":-1,"40143":-1,"40144":-1,"40145":-1,"40146":-1,"40147":0,"40148":-1,"40149":-1,"40150":-1,"40151":-1,"40152":-1,"40153":-1,"40154":-1,"40155":-1,"40156":-1,"40157":-1,"40158":-1,"40159":4064,"40160":-1,"40161":-1,"40162":-1,"40163":-1,"40164":-1,"40165":-1,"40166":-1,"40167":-1,"40168":4066,"40169":-1,"40170":-1,"40171":-1,"40172":-1,"40173":-1,"40174":-1,"40175":-1,"40176":-1,"40177":-1,"40178":4068,"40179":-1,"40180":-1,"40181":4067,"40182":4066,"40183":4065,"40184":-1,"40185":-1,"40186":-1,"40187":-1,"40188":-1,"40189":-1,"40190":4065,"40191":-1,"40192":-1,"40193":-1,"40194":-1,"40195":-1,"40196":-1,"40197":-1,"40198":-1,"40199":-1,"40200":-1,"40201":4067,"40202":-1,"40203":-1,"40204":4065,"40205":-1,"40206":-1,"40207":-1,"40208":4063,"40209":-1,"40210":-1,"40211":-1,"40212":-1,"40213":4066,"40214":-1,"40215":-1,"40216":-1,"40217":4065,"40218":-1,"40219":-1,"40220":4068,"40221":-1,"40222":4067,"40223":-1,"40224":-1,"40225":-1,"40226":-1,"40227":4067,"40228":-1,"40229":-1,"40230":-1,"40231":4068,"40232":-1,"40233":-1,"40234":4064,"40235":-1,"40236":-1,"40237":-1,"40238":-1,"40239":-1,"40240":-1,"40241":-1,"40242":-1,"40243":0,"40244":-1,"40245":-1,"40246":-1,"40247":-1,"40248":-1,"40249":-1,"40250":-1,"40251":-1,"40252":4066,"40253":-1,"40254":-1,"40255":4064,"40256":-1,"40257":-1,"40258":-1,"40259":-1,"40260":-1,"40261":-1,"40262":-1,"40263":-1,"40264":-1,"40265":-1,"40266":0,"40267":-1,"40268":-1,"40269":-1,"40270":4066,"40271":-1,"40272":4065,"40273":4065,"40274":-1,"40275":-1,"40276":-1,"40277":-1,"40278":-1,"40279":-1,"40280":-1,"40281":-1,"40282":-1,"40283":4067,"40284":-1,"40285":-1,"40286":-1,"40287":4065,"40288":-1,"40289":4067,"40290":4066,"40291":-1,"40292":-1,"40293":-1,"40294":-1,"40295":-1,"40296":-1,"40297":-1,"40298":-1,"40299":-1,"40300":-1,"40301":-1,"40302":-1,"40303":-1,"40304":-1,"40305":4065,"40306":-1,"40307":-1,"40308":-1,"40309":4066,"40310":-1,"40311":-1,"40312":-1,"40313":-1,"40314":-1,"40315":-1,"40316":-1,"40317":-1,"40318":-1,"40319":-1,"40320":-1,"40321":-1,"40322":0,"40323":4065,"40324":-1,"40325":-1,"40326":-1,"40327":-1,"40328":-1,"40329":-1,"40330":-1,"40331":-1,"40332":4064,"40333":-1,"40334":-1,"40335":-1,"40336":-1,"40337":-1,"40338":-1,"40339":-1,"40340":-1,"40341":4064,"40342":-1,"40343":-1,"40344":-1,"40345":-1,"40346":-1,"40347":-1,"40348":-1,"40349":4066,"40350":-1,"40351":-1,"40352":-1,"40353":-1,"40354":-1,"40355":-1,"40356":-1,"40357":-1,"40358":-1,"40359":-1,"40360":4065,"40361":-1,"40362":-1,"40363":-1,"40364":-1,"40365":4065,"40366":-1,"40367":-1,"40368":4066,"40369":-1,"40370":-1,"40371":-1,"40372":4066,"40373":-1,"40374":-1,"40375":-1,"40376":-1,"40377":-1,"40378":-1,"40379":-1,"40380":-1,"40381":-1,"40382":4067,"40383":-1,"40384":-1,"40385":-1,"40386":-1,"40387":4068,"40388":-1,"40389":-1,"40390":-1,"40391":-1,"40392":-1,"40393":-1,"40394":-1,"40395":4063,"40396":-1,"40397":-1,"40398":-1,"40399":-1,"40400":-1,"40401":-1,"40402":-1,"40403":-1,"40404":-1,"40405":-1,"40406":-1,"40407":-1,"40408":-1,"40409":-1,"40410":-1,"40411":-1,"40412":-1,"40413":-1,"40414":-1,"40415":-1,"40416":-1,"40417":-1,"40418":-1,"40419":-1,"40420":-1,"40421":-1,"40422":-1,"40423":-1,"40424":-1,"40425":-1,"40426":-1,"40427":-1,"40428":-1,"40429":-1,"40430":-1,"40431":-1,"40432":-1,"40433":-1,"40434":4067,"40435":-1,"40436":-1,"40437":-1,"40438":4063,"40439":-1,"40440":4063,"40441":4068,"40442":-1,"40443":-1,"40444":-1,"40445":-1,"40446":-1,"40447":-1,"40448":0,"40449":-1,"40450":-1,"40451":-1,"40452":4068,"40453":-1,"40454":-1,"40455":-1,"40456":4066,"40457":-1,"40458":-1,"40459":-1,"40460":-1,"40461":-1,"40462":0,"40463":-1,"40464":-1,"40465":-1,"40466":-1,"40467":-1,"40468":-1,"40469":-1,"40470":-1,"40471":4067,"40472":-1,"40473":-1,"40474":-1,"40475":-1,"40476":-1,"40477":-1,"40478":-1,"40479":-1,"40480":-1,"40481":-1,"40482":-1,"40483":-1,"40484":-1,"40485":-1,"40486":-1,"40487":-1,"40488":-1,"40489":-1,"40490":-1,"40491":4066,"40492":-1,"40493":-1,"40494":-1,"40495":-1,"40496":4068,"40497":-1,"40498":-1,"40499":-1,"40500":-1,"40501":-1,"40502":-1,"40503":4064,"40504":-1,"40505":-1,"40506":-1,"40507":-1,"40508":-1,"40509":-1,"40510":4067,"40511":-1,"40512":-1,"40513":-1,"40514":4067,"40515":-1,"40516":-1,"40517":-1,"40518":-1,"40519":-1,"40520":-1,"40521":4064,"40522":-1,"40523":-1,"40524":-1,"40525":-1,"40526":-1,"40527":-1,"40528":-1,"40529":-1,"40530":-1,"40531":-1,"40532":4066,"40533":-1,"40534":-1,"40535":-1,"40536":-1,"40537":-1,"40538":-1,"40539":-1,"40540":-1,"40541":-1,"40542":4066,"40543":-1,"40544":-1,"40545":-1,"40546":-1,"40547":4067,"40548":-1,"40549":-1,"40550":-1,"40551":4064,"40552":-1,"40553":-1,"40554":-1,"40555":-1,"40556":-1,"40557":0,"40558":-1,"40559":-1,"40560":-1,"40561":-1,"40562":-1,"40563":-1,"40564":-1,"40565":-1,"40566":-1,"40567":4066,"40568":-1,"40569":-1,"40570":-1,"40571":-1,"40572":4064,"40573":-1,"40574":-1,"40575":-1,"40576":-1,"40577":0,"40578":-1,"40579":-1,"40580":-1,"40581":-1,"40582":-1,"40583":-1,"40584":4064,"40585":-1,"40586":-1,"40587":-1,"40588":-1,"40589":4065,"40590":-1,"40591":-1,"40592":-1,"40593":-1,"40594":-1,"40595":4063,"40596":-1,"40597":4064,"40598":4064,"40599":4066,"40600":-1,"40601":4064,"40602":-1,"40603":-1,"40604":-1,"40605":-1,"40606":4064,"40607":-1,"40608":-1,"40609":-1,"40610":4065,"40611":-1,"40612":-1,"40613":-1,"40614":-1,"40615":-1,"40616":-1,"40617":-1,"40618":-1,"40619":4063,"40620":-1,"40621":-1,"40622":-1,"40623":0,"40624":-1,"40625":-1,"40626":-1,"40627":-1,"40628":-1,"40629":-1,"40630":-1,"40631":4066,"40632":-1,"40633":-1,"40634":-1,"40635":-1,"40636":-1,"40637":-1,"40638":-1,"40639":4066,"40640":4066,"40641":-1,"40642":-1,"40643":-1,"40644":-1,"40645":-1,"40646":-1,"40647":4065,"40648":-1,"40649":-1,"40650":-1,"40651":-1,"40652":-1,"40653":-1,"40654":-1,"40655":-1,"40656":-1,"40657":-1,"40658":-1,"40659":-1,"40660":-1,"40661":-1,"40662":-1,"40663":-1,"40664":-1,"40665":-1,"40666":-1,"40667":4065,"40668":-1,"40669":-1,"40670":-1,"40671":-1,"40672":-1,"40673":-1,"40674":-1,"40675":-1,"40676":4068,"40677":-1,"40678":-1,"40679":-1,"40680":-1,"40681":-1,"40682":-1,"40683":-1,"40684":-1,"40685":4065,"40686":-1,"40687":-1,"40688":-1,"40689":-1,"40690":-1,"40691":-1,"40692":-1,"40693":4065,"40694":-1,"40695":-1,"40696":-1,"40697":-1,"40698":-1,"40699":-1,"40700":-1,"40701":-1,"40702":-1,"40703":-1,"40704":-1,"40705":-1,"40706":-1,"40707":-1,"40708":-1,"40709":-1,"40710":-1,"40711":-1,"40712":-1,"40713":-1,"40714":4067,"40715":-1,"40716":-1,"40717":-1,"40718":-1,"40719":-1,"40720":-1,"40721":-1,"40722":-1,"40723":-1,"40724":-1,"40725":4066,"40726":-1,"40727":-1,"40728":-1,"40729":-1,"40730":-1,"40731":-1,"40732":-1,"40733":-1,"40734":4067,"40735":4065,"40736":-1,"40737":-1,"40738":4066,"40739":-1,"40740":-1,"40741":-1,"40742":-1,"40743":-1,"40744":-1,"40745":-1,"40746":-1,"40747":-1,"40748":-1,"40749":4066,"40750":-1,"40751":-1,"40752":-1,"40753":-1,"40754":-1,"40755":-1,"40756":-1,"40757":-1,"40758":4066,"40759":-1,"40760":-1,"40761":-1,"40762":4065,"40763":-1,"40764":-1,"40765":-1,"40766":-1,"40767":-1,"40768":0,"40769":-1,"40770":-1,"40771":-1,"40772":-1,"40773":-1,"40774":-1,"40775":4066,"40776":-1,"40777":-1,"40778":-1,"40779":-1,"40780":-1,"40781":-1,"40782":4067,"40783":-1,"40784":4066,"40785":-1,"40786":-1,"40787":-1,"40788":-1,"40789":4066,"40790":-1,"40791":-1,"40792":-1,"40793":-1,"40794":-1,"40795":-1,"40796":-1,"40797":-1,"40798":-1,"40799":-1,"40800":-1,"40801":-1,"40802":-1,"40803":-1,"40804":-1,"40805":-1,"40806":0,"40807":-1,"40808":-1,"40809":-1,"40810":4068,"40811":0,"40812":-1,"40813":-1,"40814":-1,"40815":-1,"40816":-1,"40817":-1,"40818":-1,"40819":-1,"40820":-1,"40821":-1,"40822":-1,"40823":-1,"40824":-1,"40825":-1,"40826":-1,"40827":-1,"40828":-1,"40829":-1,"40830":4064,"40831":-1,"40832":-1,"40833":-1,"40834":-1,"40835":-1,"40836":4064,"40837":-1,"40838":-1,"40839":-1,"40840":4065,"40841":4063,"40842":-1,"40843":-1,"40844":-1,"40845":-1,"40846":-1,"40847":-1,"40848":-1,"40849":-1,"40850":-1,"40851":-1,"40852":0,"40853":-1,"40854":-1,"40855":-1,"40856":-1,"40857":-1,"40858":-1,"40859":-1,"40860":4063,"40861":-1,"40862":-1,"40863":-1,"40864":0,"40865":-1,"40866":-1,"40867":4066,"40868":-1,"40869":-1,"40870":-1,"40871":-1,"40872":-1,"40873":-1,"40874":4065,"40875":-1,"40876":-1,"40877":4064,"40878":-1,"40879":-1,"40880":-1,"40881":-1,"40882":-1,"40883":4065,"40884":-1,"40885":-1,"40886":-1,"40887":-1,"40888":-1,"40889":-1,"40890":4065,"40891":-1,"40892":-1,"40893":-1,"40894":-1,"40895":-1,"40896":4064,"40897":-1,"40898":-1,"40899":-1,"40900":-1,"40901":-1,"40902":-1,"40903":-1,"40904":-1,"40905":-1,"40906":4066,"40907":-1,"40908":-1,"40909":-1,"40910":-1,"40911":-1,"40912":4063,"40913":-1,"40914":4068,"40915":4066,"40916":-1,"40917":-1,"40918":-1,"40919":-1,"40920":-1,"40921":-1,"40922":4068,"40923":-1,"40924":-1,"40925":-1,"40926":0,"40927":-1,"40928":0,"40929":-1,"40930":-1,"40931":0,"40932":-1,"40933":-1,"40934":-1,"40935":-1,"40936":-1,"40937":-1,"40938":-1,"40939":-1,"40940":-1,"40941":-1,"40942":-1,"40943":-1,"40944":4063,"40945":-1,"40946":-1,"40947":4064,"40948":-1,"40949":-1,"40950":-1,"40951":-1,"40952":-1,"40953":-1,"40954":4067,"40955":4068,"40956":-1,"40957":-1,"40958":-1,"40959":-1,"40960":-1,"40961":-1,"40962":-1,"40963":-1,"40964":-1,"40965":-1,"40966":-1,"40967":-1,"40968":-1,"40969":-1,"40970":-1,"40971":-1,"40972":4064,"40973":-1,"40974":-1,"40975":-1,"40976":-1,"40977":-1,"40978":-1,"40979":-1,"40980":-1,"40981":4063,"40982":-1,"40983":-1,"40984":-1,"40985":-1,"40986":-1,"40987":-1,"40988":-1,"40989":-1,"40990":4067,"40991":-1,"40992":-1,"40993":-1,"40994":4067,"40995":-1,"40996":-1,"40997":-1,"40998":-1,"40999":4064,"41000":4067,"41001":0,"41002":-1,"41003":-1,"41004":-1,"41005":4066,"41006":-1,"41007":-1,"41008":4066,"41009":-1,"41010":-1,"41011":4066,"41012":-1,"41013":0,"41014":-1,"41015":-1,"41016":-1,"41017":-1,"41018":-1,"41019":-1,"41020":-1,"41021":-1,"41022":-1,"41023":-1,"41024":-1,"41025":4066,"41026":-1,"41027":-1,"41028":-1,"41029":-1,"41030":-1,"41031":-1,"41032":-1,"41033":-1,"41034":0,"41035":-1,"41036":-1,"41037":-1,"41038":-1,"41039":-1,"41040":-1,"41041":-1,"41042":-1,"41043":-1,"41044":-1,"41045":-1,"41046":-1,"41047":-1,"41048":-1,"41049":-1,"41050":-1,"41051":-1,"41052":-1,"41053":-1,"41054":-1,"41055":-1,"41056":-1,"41057":4065,"41058":-1,"41059":-1,"41060":-1,"41061":-1,"41062":-1,"41063":-1,"41064":-1,"41065":-1,"41066":-1,"41067":-1,"41068":-1,"41069":-1,"41070":-1,"41071":-1,"41072":-1,"41073":-1,"41074":-1,"41075":-1,"41076":-1,"41077":-1,"41078":-1,"41079":-1,"41080":-1,"41081":-1,"41082":-1,"41083":4064,"41084":-1,"41085":4065,"41086":-1,"41087":4066,"41088":-1,"41089":-1,"41090":-1,"41091":-1,"41092":-1,"41093":0,"41094":4065,"41095":-1,"41096":-1,"41097":-1,"41098":-1,"41099":-1,"41100":-1,"41101":4067,"41102":0,"41103":-1,"41104":-1,"41105":0,"41106":-1,"41107":-1,"41108":4064,"41109":-1,"41110":-1,"41111":-1,"41112":-1,"41113":-1,"41114":-1,"41115":-1,"41116":-1,"41117":-1,"41118":-1,"41119":-1,"41120":-1,"41121":-1,"41122":-1,"41123":-1,"41124":-1,"41125":-1,"41126":-1,"41127":-1,"41128":-1,"41129":-1,"41130":-1,"41131":-1,"41132":-1,"41133":-1,"41134":4063,"41135":-1,"41136":-1,"41137":-1,"41138":-1,"41139":-1,"41140":-1,"41141":-1,"41142":-1,"41143":4066,"41144":-1,"41145":-1,"41146":-1,"41147":-1,"41148":4064,"41149":-1,"41150":-1,"41151":-1,"41152":-1,"41153":-1,"41154":-1,"41155":-1,"41156":-1,"41157":-1,"41158":-1,"41159":-1,"41160":-1,"41161":-1,"41162":-1,"41163":-1,"41164":-1,"41165":4064,"41166":-1,"41167":4063,"41168":-1,"41169":4063,"41170":-1,"41171":-1,"41172":-1,"41173":-1,"41174":-1,"41175":0,"41176":-1,"41177":-1,"41178":-1,"41179":-1,"41180":-1,"41181":-1,"41182":-1,"41183":-1,"41184":-1,"41185":4065,"41186":4064,"41187":-1,"41188":-1,"41189":-1,"41190":-1,"41191":-1,"41192":-1,"41193":-1,"41194":0,"41195":4066,"41196":-1,"41197":-1,"41198":-1,"41199":4066,"41200":-1,"41201":-1,"41202":-1,"41203":-1,"41204":-1,"41205":-1,"41206":-1,"41207":4068,"41208":-1,"41209":-1,"41210":-1,"41211":-1,"41212":-1,"41213":-1,"41214":-1,"41215":-1,"41216":-1,"41217":4066,"41218":-1,"41219":-1,"41220":-1,"41221":-1,"41222":-1,"41223":-1,"41224":4064,"41225":4066,"41226":-1,"41227":-1,"41228":-1,"41229":-1,"41230":-1,"41231":-1,"41232":-1,"41233":-1,"41234":-1,"41235":-1,"41236":-1,"41237":-1,"41238":4064,"41239":-1,"41240":-1,"41241":-1,"41242":-1,"41243":-1,"41244":-1,"41245":-1,"41246":-1,"41247":-1,"41248":-1,"41249":-1,"41250":-1,"41251":-1,"41252":4066,"41253":4067,"41254":-1,"41255":-1,"41256":-1,"41257":4065,"41258":-1,"41259":-1,"41260":-1,"41261":-1,"41262":-1,"41263":0,"41264":-1,"41265":-1,"41266":-1,"41267":-1,"41268":-1,"41269":-1,"41270":-1,"41271":4064,"41272":-1,"41273":-1,"41274":-1,"41275":-1,"41276":-1,"41277":-1,"41278":-1,"41279":-1,"41280":-1,"41281":-1,"41282":-1,"41283":-1,"41284":-1,"41285":-1,"41286":-1,"41287":-1,"41288":-1,"41289":-1,"41290":4065,"41291":-1,"41292":-1,"41293":-1,"41294":-1,"41295":-1,"41296":0,"41297":-1,"41298":4066,"41299":-1,"41300":-1,"41301":-1,"41302":-1,"41303":-1,"41304":-1,"41305":0,"41306":0,"41307":-1,"41308":-1,"41309":4064,"41310":-1,"41311":-1,"41312":-1,"41313":-1,"41314":-1,"41315":4065,"41316":4067,"41317":4064,"41318":-1,"41319":-1,"41320":-1,"41321":-1,"41322":-1,"41323":-1,"41324":-1,"41325":-1,"41326":-1,"41327":-1,"41328":4067,"41329":-1,"41330":-1,"41331":4068,"41332":4064,"41333":-1,"41334":-1,"41335":-1,"41336":-1,"41337":-1,"41338":-1,"41339":-1,"41340":-1,"41341":-1,"41342":-1,"41343":-1,"41344":-1,"41345":-1,"41346":-1,"41347":-1,"41348":-1,"41349":-1,"41350":-1,"41351":-1,"41352":-1,"41353":-1,"41354":-1,"41355":-1,"41356":-1,"41357":-1,"41358":-1,"41359":-1,"41360":-1,"41361":-1,"41362":0,"41363":-1,"41364":-1,"41365":-1,"41366":-1,"41367":-1,"41368":4065,"41369":-1,"41370":-1,"41371":-1,"41372":-1,"41373":4066,"41374":-1,"41375":-1,"41376":-1,"41377":-1,"41378":-1,"41379":-1,"41380":-1,"41381":-1,"41382":0,"41383":-1,"41384":-1,"41385":4065,"41386":4064,"41387":-1,"41388":-1,"41389":-1,"41390":-1,"41391":-1,"41392":-1,"41393":-1,"41394":-1,"41395":4066,"41396":-1,"41397":-1,"41398":-1,"41399":-1,"41400":4067,"41401":-1,"41402":-1,"41403":-1,"41404":-1,"41405":-1,"41406":4067,"41407":0,"41408":-1,"41409":-1,"41410":-1,"41411":-1,"41412":-1,"41413":-1,"41414":-1,"41415":4065,"41416":4066,"41417":4066,"41418":-1,"41419":-1,"41420":4065,"41421":-1,"41422":-1,"41423":-1,"41424":-1,"41425":-1,"41426":-1,"41427":-1,"41428":-1,"41429":-1,"41430":-1,"41431":-1,"41432":-1,"41433":4067,"41434":-1,"41435":-1,"41436":-1,"41437":-1,"41438":-1,"41439":-1,"41440":4064,"41441":-1,"41442":-1,"41443":-1,"41444":-1,"41445":-1,"41446":-1,"41447":-1,"41448":-1,"41449":-1,"41450":-1,"41451":-1,"41452":4067,"41453":-1,"41454":-1,"41455":-1,"41456":-1,"41457":4065,"41458":-1,"41459":-1,"41460":-1,"41461":-1,"41462":4066,"41463":-1,"41464":-1,"41465":-1,"41466":-1,"41467":4063,"41468":-1,"41469":-1,"41470":-1,"41471":-1,"41472":-1,"41473":-1,"41474":-1,"41475":-1,"41476":-1,"41477":-1,"41478":-1,"41479":4066,"41480":-1,"41481":-1,"41482":-1,"41483":-1,"41484":-1,"41485":-1,"41486":-1,"41487":-1,"41488":-1,"41489":4064,"41490":-1,"41491":-1,"41492":-1,"41493":-1,"41494":4065,"41495":-1,"41496":-1,"41497":-1,"41498":-1,"41499":-1,"41500":4067,"41501":-1,"41502":-1,"41503":-1,"41504":-1,"41505":-1,"41506":-1,"41507":-1,"41508":-1,"41509":-1,"41510":-1,"41511":4063,"41512":-1,"41513":-1,"41514":-1,"41515":-1,"41516":-1,"41517":0,"41518":-1,"41519":-1,"41520":-1,"41521":-1,"41522":-1,"41523":4066,"41524":-1,"41525":-1,"41526":-1,"41527":4065,"41528":0,"41529":-1,"41530":-1,"41531":-1,"41532":4068,"41533":-1,"41534":-1,"41535":-1,"41536":-1,"41537":-1,"41538":-1,"41539":-1,"41540":-1,"41541":-1,"41542":-1,"41543":4068,"41544":-1,"41545":-1,"41546":-1,"41547":0,"41548":-1,"41549":4066,"41550":-1,"41551":-1,"41552":-1,"41553":4067,"41554":-1,"41555":-1,"41556":-1,"41557":-1,"41558":-1,"41559":0,"41560":-1,"41561":-1,"41562":-1,"41563":-1,"41564":-1,"41565":4066,"41566":-1,"41567":-1,"41568":-1,"41569":-1,"41570":-1,"41571":0,"41572":-1,"41573":-1,"41574":-1,"41575":-1,"41576":-1,"41577":-1,"41578":-1,"41579":4067,"41580":-1,"41581":-1,"41582":4067,"41583":-1,"41584":-1,"41585":4066,"41586":-1,"41587":4064,"41588":-1,"41589":-1,"41590":-1,"41591":4066,"41592":-1,"41593":-1,"41594":-1,"41595":-1,"41596":-1,"41597":-1,"41598":-1,"41599":-1,"41600":-1,"41601":-1,"41602":-1,"41603":-1,"41604":4065,"41605":-1,"41606":-1,"41607":-1,"41608":-1,"41609":-1,"41610":-1,"41611":4063,"41612":4064,"41613":-1,"41614":-1,"41615":-1,"41616":-1,"41617":-1,"41618":-1,"41619":4066,"41620":-1,"41621":-1,"41622":-1,"41623":-1,"41624":-1,"41625":-1,"41626":-1,"41627":-1,"41628":-1,"41629":-1,"41630":-1,"41631":-1,"41632":-1,"41633":-1,"41634":-1,"41635":-1,"41636":-1,"41637":-1,"41638":-1,"41639":4065,"41640":4064,"41641":-1,"41642":4065,"41643":-1,"41644":-1,"41645":-1,"41646":4067,"41647":-1,"41648":-1,"41649":0,"41650":-1,"41651":-1,"41652":4063,"41653":-1,"41654":-1,"41655":4065,"41656":4066,"41657":-1,"41658":-1,"41659":-1,"41660":-1,"41661":-1,"41662":-1,"41663":-1,"41664":-1,"41665":-1,"41666":-1,"41667":-1,"41668":-1,"41669":-1,"41670":-1,"41671":-1,"41672":-1,"41673":-1,"41674":-1,"41675":-1,"41676":-1,"41677":4064,"41678":-1,"41679":-1,"41680":-1,"41681":-1,"41682":0,"41683":4064,"41684":-1,"41685":-1,"41686":-1,"41687":-1,"41688":-1,"41689":0,"41690":-1,"41691":-1,"41692":-1,"41693":-1,"41694":-1,"41695":4065,"41696":4064,"41697":-1,"41698":-1,"41699":-1,"41700":-1,"41701":-1,"41702":-1,"41703":-1,"41704":-1,"41705":-1,"41706":-1,"41707":-1,"41708":4065,"41709":-1,"41710":-1,"41711":-1,"41712":-1,"41713":4067,"41714":-1,"41715":-1,"41716":-1,"41717":-1,"41718":-1,"41719":-1,"41720":-1,"41721":4066,"41722":-1,"41723":-1,"41724":-1,"41725":-1,"41726":-1,"41727":-1,"41728":4063,"41729":-1,"41730":-1,"41731":4066,"41732":4068,"41733":-1,"41734":-1,"41735":-1,"41736":-1,"41737":-1,"41738":-1,"41739":-1,"41740":-1,"41741":-1,"41742":-1,"41743":-1,"41744":-1,"41745":-1,"41746":-1,"41747":4064,"41748":-1,"41749":-1,"41750":-1,"41751":4065,"41752":4067,"41753":-1,"41754":-1,"41755":-1,"41756":-1,"41757":-1,"41758":-1,"41759":-1,"41760":4067,"41761":-1,"41762":-1,"41763":-1,"41764":-1,"41765":-1,"41766":-1,"41767":-1,"41768":-1,"41769":4064,"41770":-1,"41771":-1,"41772":4064,"41773":-1,"41774":-1,"41775":-1,"41776":-1,"41777":4065,"41778":-1,"41779":-1,"41780":-1,"41781":-1,"41782":-1,"41783":-1,"41784":-1,"41785":-1,"41786":-1,"41787":-1,"41788":0,"41789":-1,"41790":-1,"41791":4065,"41792":-1,"41793":-1,"41794":-1,"41795":-1,"41796":-1,"41797":-1,"41798":-1,"41799":-1,"41800":-1,"41801":4066,"41802":-1,"41803":-1,"41804":-1,"41805":-1,"41806":-1,"41807":-1,"41808":-1,"41809":-1,"41810":-1,"41811":-1,"41812":-1,"41813":-1,"41814":-1,"41815":-1,"41816":-1,"41817":-1,"41818":-1,"41819":-1,"41820":-1,"41821":-1,"41822":4066,"41823":-1,"41824":-1,"41825":-1,"41826":-1,"41827":-1,"41828":-1,"41829":-1,"41830":-1,"41831":-1,"41832":-1,"41833":-1,"41834":-1,"41835":-1,"41836":-1,"41837":-1,"41838":-1,"41839":-1,"41840":-1,"41841":-1,"41842":-1,"41843":0,"41844":-1,"41845":4066,"41846":-1,"41847":-1,"41848":-1,"41849":-1,"41850":0,"41851":-1,"41852":4063,"41853":-1,"41854":-1,"41855":-1,"41856":-1,"41857":4066,"41858":4064,"41859":-1,"41860":-1,"41861":-1,"41862":0,"41863":4064,"41864":-1,"41865":-1,"41866":-1,"41867":-1,"41868":-1,"41869":-1,"41870":0,"41871":4066,"41872":-1,"41873":-1,"41874":-1,"41875":-1,"41876":-1,"41877":-1,"41878":4064,"41879":4064,"41880":-1,"41881":-1,"41882":-1,"41883":-1,"41884":-1,"41885":-1,"41886":-1,"41887":-1,"41888":-1,"41889":-1,"41890":-1,"41891":-1,"41892":-1,"41893":4066,"41894":-1,"41895":-1,"41896":-1,"41897":4063,"41898":4065,"41899":-1,"41900":4064,"41901":-1,"41902":4068,"41903":-1,"41904":-1,"41905":-1,"41906":-1,"41907":-1,"41908":-1,"41909":-1,"41910":-1,"41911":-1,"41912":4065,"41913":-1,"41914":-1,"41915":-1,"41916":-1,"41917":-1,"41918":-1,"41919":-1,"41920":-1,"41921":-1,"41922":-1,"41923":-1,"41924":-1,"41925":-1,"41926":-1,"41927":4064,"41928":-1,"41929":-1,"41930":-1,"41931":-1,"41932":-1,"41933":4065,"41934":-1,"41935":-1,"41936":-1,"41937":-1,"41938":4066,"41939":-1,"41940":-1,"41941":-1,"41942":-1,"41943":-1,"41944":-1,"41945":-1,"41946":4068,"41947":-1,"41948":-1,"41949":-1,"41950":-1,"41951":-1,"41952":-1,"41953":4067,"41954":-1,"41955":-1,"41956":-1,"41957":-1,"41958":-1,"41959":-1,"41960":-1,"41961":-1,"41962":-1,"41963":-1,"41964":-1,"41965":-1,"41966":-1,"41967":-1,"41968":-1,"41969":-1,"41970":4068,"41971":-1,"41972":-1,"41973":-1,"41974":-1,"41975":-1,"41976":-1,"41977":4064,"41978":-1,"41979":-1,"41980":-1,"41981":-1,"41982":-1,"41983":-1,"41984":4064,"41985":-1,"41986":-1,"41987":-1,"41988":-1,"41989":-1,"41990":-1,"41991":-1,"41992":4063,"41993":4065,"41994":-1,"41995":-1,"41996":-1,"41997":-1,"41998":-1,"41999":-1,"42000":4066,"42001":-1,"42002":-1,"42003":-1,"42004":-1,"42005":0,"42006":4065,"42007":-1,"42008":-1,"42009":-1,"42010":-1,"42011":4066,"42012":-1,"42013":-1,"42014":-1,"42015":-1,"42016":-1,"42017":-1,"42018":-1,"42019":-1,"42020":4067,"42021":-1,"42022":-1,"42023":-1,"42024":4065,"42025":-1,"42026":-1,"42027":-1,"42028":-1,"42029":-1,"42030":-1,"42031":0,"42032":4067,"42033":-1,"42034":-1,"42035":-1,"42036":-1,"42037":-1,"42038":-1,"42039":-1,"42040":-1,"42041":4067,"42042":-1,"42043":-1,"42044":-1,"42045":0,"42046":-1,"42047":-1,"42048":-1,"42049":-1,"42050":4067,"42051":-1,"42052":-1,"42053":-1,"42054":-1,"42055":-1,"42056":-1,"42057":-1,"42058":-1,"42059":-1,"42060":-1,"42061":-1,"42062":-1,"42063":-1,"42064":-1,"42065":4065,"42066":4064,"42067":-1,"42068":-1,"42069":4068,"42070":-1,"42071":-1,"42072":4064,"42073":-1,"42074":-1,"42075":-1,"42076":-1,"42077":-1,"42078":-1,"42079":-1,"42080":4067,"42081":-1,"42082":-1,"42083":4064,"42084":-1,"42085":4066,"42086":-1,"42087":-1,"42088":-1,"42089":-1,"42090":-1,"42091":4067,"42092":-1,"42093":-1,"42094":-1,"42095":4067,"42096":-1,"42097":4063,"42098":4065,"42099":4067,"42100":4065,"42101":4064,"42102":-1,"42103":-1,"42104":4067,"42105":-1,"42106":-1,"42107":-1,"42108":-1,"42109":4063,"42110":-1,"42111":-1,"42112":-1,"42113":-1,"42114":-1,"42115":-1,"42116":4068,"42117":-1,"42118":-1,"42119":-1,"42120":-1,"42121":4064,"42122":-1,"42123":-1,"42124":-1,"42125":-1,"42126":-1,"42127":-1,"42128":-1,"42129":-1,"42130":-1,"42131":4066,"42132":4064,"42133":4064,"42134":-1,"42135":-1,"42136":-1,"42137":-1,"42138":-1,"42139":-1,"42140":-1,"42141":-1,"42142":-1,"42143":-1,"42144":-1,"42145":-1,"42146":-1,"42147":4063,"42148":-1,"42149":-1,"42150":-1,"42151":-1,"42152":-1,"42153":4065,"42154":-1,"42155":-1,"42156":-1,"42157":-1,"42158":-1,"42159":-1,"42160":-1,"42161":0,"42162":-1,"42163":-1,"42164":-1,"42165":4068,"42166":4063,"42167":-1,"42168":-1,"42169":-1,"42170":4065,"42171":-1,"42172":-1,"42173":-1,"42174":-1,"42175":-1,"42176":-1,"42177":-1,"42178":4065,"42179":-1,"42180":-1,"42181":4066,"42182":-1,"42183":-1,"42184":-1,"42185":-1,"42186":-1,"42187":-1,"42188":-1,"42189":-1,"42190":-1,"42191":-1,"42192":-1,"42193":-1,"42194":-1,"42195":-1,"42196":-1,"42197":-1,"42198":-1,"42199":-1,"42200":-1,"42201":-1,"42202":-1,"42203":-1,"42204":-1,"42205":-1,"42206":-1,"42207":-1,"42208":-1,"42209":-1,"42210":-1,"42211":-1,"42212":-1,"42213":-1,"42214":-1,"42215":-1,"42216":-1,"42217":-1,"42218":0,"42219":-1,"42220":-1,"42221":-1,"42222":-1,"42223":-1,"42224":-1,"42225":-1,"42226":-1,"42227":-1,"42228":-1,"42229":-1,"42230":-1,"42231":-1,"42232":-1,"42233":-1,"42234":-1,"42235":-1,"42236":-1,"42237":-1,"42238":-1,"42239":-1,"42240":-1,"42241":-1,"42242":-1,"42243":4068,"42244":-1,"42245":-1,"42246":-1,"42247":-1,"42248":-1,"42249":-1,"42250":-1,"42251":-1,"42252":-1,"42253":-1,"42254":-1,"42255":-1,"42256":-1,"42257":-1,"42258":-1,"42259":4068,"42260":4066,"42261":-1,"42262":-1,"42263":-1,"42264":4065,"42265":-1,"42266":0,"42267":-1,"42268":-1,"42269":-1,"42270":-1,"42271":4064,"42272":-1,"42273":-1,"42274":-1,"42275":-1,"42276":-1,"42277":-1,"42278":-1,"42279":-1,"42280":-1,"42281":-1,"42282":-1,"42283":-1,"42284":-1,"42285":-1,"42286":-1,"42287":-1,"42288":0,"42289":-1,"42290":-1,"42291":-1,"42292":-1,"42293":-1,"42294":4065,"42295":0,"42296":-1,"42297":-1,"42298":-1,"42299":-1,"42300":-1,"42301":-1,"42302":-1,"42303":4068,"42304":-1,"42305":-1,"42306":-1,"42307":0,"42308":0,"42309":-1,"42310":4067,"42311":-1,"42312":-1,"42313":-1,"42314":4065,"42315":-1,"42316":-1,"42317":-1,"42318":-1,"42319":-1,"42320":-1,"42321":-1,"42322":-1,"42323":-1,"42324":-1,"42325":0,"42326":-1,"42327":-1,"42328":-1,"42329":-1,"42330":-1,"42331":-1,"42332":-1,"42333":-1,"42334":-1,"42335":-1,"42336":-1,"42337":4064,"42338":-1,"42339":-1,"42340":-1,"42341":-1,"42342":-1,"42343":4065,"42344":4064,"42345":-1,"42346":-1,"42347":-1,"42348":-1,"42349":4066,"42350":-1,"42351":-1,"42352":-1,"42353":4066,"42354":-1,"42355":-1,"42356":4066,"42357":-1,"42358":-1,"42359":0,"42360":-1,"42361":-1,"42362":-1,"42363":4066,"42364":-1,"42365":-1,"42366":-1,"42367":-1,"42368":-1,"42369":-1,"42370":-1,"42371":0,"42372":-1,"42373":-1,"42374":-1,"42375":-1,"42376":-1,"42377":-1,"42378":-1,"42379":-1,"42380":-1,"42381":-1,"42382":-1,"42383":-1,"42384":-1,"42385":-1,"42386":-1,"42387":-1,"42388":-1,"42389":-1,"42390":-1,"42391":-1,"42392":-1,"42393":-1,"42394":-1,"42395":4068,"42396":-1,"42397":-1,"42398":-1,"42399":-1,"42400":-1,"42401":-1,"42402":-1,"42403":-1,"42404":-1,"42405":-1,"42406":4065,"42407":-1,"42408":-1,"42409":-1,"42410":-1,"42411":-1,"42412":-1,"42413":-1,"42414":-1,"42415":-1,"42416":-1,"42417":-1,"42418":-1,"42419":-1,"42420":-1,"42421":-1,"42422":-1,"42423":-1,"42424":-1,"42425":-1,"42426":-1,"42427":-1,"42428":-1,"42429":-1,"42430":-1,"42431":-1,"42432":-1,"42433":-1,"42434":4067,"42435":-1,"42436":0,"42437":-1,"42438":-1,"42439":-1,"42440":4065,"42441":-1,"42442":-1,"42443":-1,"42444":-1,"42445":-1,"42446":-1,"42447":4067,"42448":-1,"42449":-1,"42450":-1,"42451":-1,"42452":-1,"42453":-1,"42454":-1,"42455":-1,"42456":-1,"42457":-1,"42458":-1,"42459":-1,"42460":4064,"42461":-1,"42462":-1,"42463":-1,"42464":-1,"42465":-1,"42466":-1,"42467":-1,"42468":-1,"42469":-1,"42470":-1,"42471":-1,"42472":-1,"42473":4064,"42474":-1,"42475":-1,"42476":-1,"42477":4064,"42478":-1,"42479":-1,"42480":-1,"42481":4067,"42482":-1,"42483":-1,"42484":-1,"42485":4068,"42486":-1,"42487":-1,"42488":-1,"42489":0,"42490":-1,"42491":-1,"42492":-1,"42493":-1,"42494":-1,"42495":-1,"42496":-1,"42497":-1,"42498":-1,"42499":-1,"42500":-1,"42501":-1,"42502":-1,"42503":-1,"42504":-1,"42505":-1,"42506":-1,"42507":-1,"42508":-1,"42509":-1,"42510":4066,"42511":-1,"42512":-1,"42513":-1,"42514":-1,"42515":-1,"42516":4068,"42517":4067,"42518":-1,"42519":-1,"42520":-1,"42521":-1,"42522":-1,"42523":-1,"42524":-1,"42525":-1,"42526":4064,"42527":-1,"42528":-1,"42529":-1,"42530":4067,"42531":-1,"42532":0,"42533":4067,"42534":-1,"42535":-1,"42536":-1,"42537":-1,"42538":-1,"42539":-1,"42540":-1,"42541":-1,"42542":-1,"42543":4065,"42544":-1,"42545":4063,"42546":-1,"42547":-1,"42548":-1,"42549":0,"42550":-1,"42551":-1,"42552":-1,"42553":-1,"42554":-1,"42555":-1,"42556":-1,"42557":-1,"42558":-1,"42559":-1,"42560":-1,"42561":-1,"42562":-1,"42563":-1,"42564":4063,"42565":-1,"42566":-1,"42567":-1,"42568":-1,"42569":4064,"42570":-1,"42571":-1,"42572":-1,"42573":-1,"42574":-1,"42575":-1,"42576":-1,"42577":-1,"42578":-1,"42579":-1,"42580":-1,"42581":-1,"42582":-1,"42583":-1,"42584":-1,"42585":-1,"42586":4063,"42587":-1,"42588":-1,"42589":-1,"42590":4066,"42591":4065,"42592":4064,"42593":-1,"42594":-1,"42595":0,"42596":-1,"42597":-1,"42598":-1,"42599":-1,"42600":-1,"42601":-1,"42602":4065,"42603":-1,"42604":-1,"42605":-1,"42606":-1,"42607":-1,"42608":-1,"42609":-1,"42610":-1,"42611":-1,"42612":-1,"42613":0,"42614":-1,"42615":-1,"42616":-1,"42617":-1,"42618":-1,"42619":-1,"42620":-1,"42621":-1,"42622":-1,"42623":-1,"42624":-1,"42625":-1,"42626":4066,"42627":-1,"42628":-1,"42629":-1,"42630":-1,"42631":-1,"42632":0,"42633":-1,"42634":-1,"42635":-1,"42636":0,"42637":-1,"42638":-1,"42639":-1,"42640":-1,"42641":-1,"42642":-1,"42643":4065,"42644":-1,"42645":-1,"42646":4065,"42647":4066,"42648":-1,"42649":-1,"42650":-1,"42651":-1,"42652":-1,"42653":-1,"42654":-1,"42655":-1,"42656":-1,"42657":-1,"42658":-1,"42659":-1,"42660":-1,"42661":-1,"42662":-1,"42663":-1,"42664":-1,"42665":-1,"42666":-1,"42667":-1,"42668":-1,"42669":-1,"42670":-1,"42671":-1,"42672":-1,"42673":-1,"42674":-1,"42675":-1,"42676":-1,"42677":-1,"42678":-1,"42679":-1,"42680":-1,"42681":-1,"42682":-1,"42683":-1,"42684":-1,"42685":-1,"42686":-1,"42687":-1,"42688":-1,"42689":-1,"42690":-1,"42691":-1,"42692":-1,"42693":-1,"42694":-1,"42695":-1,"42696":-1,"42697":-1,"42698":-1,"42699":-1,"42700":-1,"42701":-1,"42702":-1,"42703":-1,"42704":-1,"42705":-1,"42706":-1,"42707":-1,"42708":-1,"42709":-1,"42710":4067,"42711":-1,"42712":-1,"42713":-1,"42714":-1,"42715":-1,"42716":-1,"42717":-1,"42718":-1,"42719":-1,"42720":4064,"42721":-1,"42722":-1,"42723":-1,"42724":-1,"42725":4067,"42726":-1,"42727":-1,"42728":4064,"42729":-1,"42730":-1,"42731":-1,"42732":-1,"42733":4065,"42734":4066,"42735":-1,"42736":-1,"42737":4065,"42738":-1,"42739":-1,"42740":0,"42741":-1,"42742":4065,"42743":4065,"42744":4065,"42745":-1,"42746":-1,"42747":-1,"42748":-1,"42749":4063,"42750":-1,"42751":-1,"42752":-1,"42753":-1,"42754":-1,"42755":-1,"42756":-1,"42757":-1,"42758":-1,"42759":4065,"42760":-1,"42761":-1,"42762":0,"42763":-1,"42764":-1,"42765":-1,"42766":-1,"42767":-1,"42768":-1,"42769":-1,"42770":-1,"42771":-1,"42772":-1,"42773":-1,"42774":-1,"42775":-1,"42776":4065,"42777":-1,"42778":-1,"42779":-1,"42780":-1,"42781":-1,"42782":-1,"42783":-1,"42784":-1,"42785":-1,"42786":-1,"42787":-1,"42788":4064,"42789":-1,"42790":4068,"42791":-1,"42792":-1,"42793":-1,"42794":-1,"42795":-1,"42796":-1,"42797":-1,"42798":-1,"42799":-1,"42800":4065,"42801":-1,"42802":-1,"42803":4065,"42804":-1,"42805":4066,"42806":-1,"42807":-1,"42808":4068,"42809":-1,"42810":-1,"42811":-1,"42812":-1,"42813":-1,"42814":-1,"42815":-1,"42816":-1,"42817":-1,"42818":-1,"42819":-1,"42820":-1,"42821":-1,"42822":-1,"42823":-1,"42824":-1,"42825":-1,"42826":-1,"42827":-1,"42828":-1,"42829":-1,"42830":-1,"42831":-1,"42832":-1,"42833":-1,"42834":4064,"42835":4068,"42836":-1,"42837":4066,"42838":-1,"42839":-1,"42840":4065,"42841":-1,"42842":-1,"42843":4066,"42844":4064,"42845":-1,"42846":4063,"42847":-1,"42848":-1,"42849":-1,"42850":-1,"42851":-1,"42852":-1,"42853":4065,"42854":-1,"42855":4064,"42856":-1,"42857":-1,"42858":-1,"42859":-1,"42860":-1,"42861":-1,"42862":-1,"42863":-1,"42864":-1,"42865":-1,"42866":-1,"42867":-1,"42868":-1,"42869":-1,"42870":4065,"42871":-1,"42872":4063,"42873":0,"42874":-1,"42875":-1,"42876":-1,"42877":-1,"42878":-1,"42879":-1,"42880":4068,"42881":-1,"42882":-1,"42883":-1,"42884":-1,"42885":-1,"42886":-1,"42887":-1,"42888":-1,"42889":-1,"42890":-1,"42891":4065,"42892":-1,"42893":-1,"42894":-1,"42895":4063,"42896":-1,"42897":-1,"42898":-1,"42899":-1,"42900":4064,"42901":-1,"42902":-1,"42903":-1,"42904":-1,"42905":-1,"42906":-1,"42907":4063,"42908":-1,"42909":-1,"42910":-1,"42911":-1,"42912":-1,"42913":-1,"42914":-1,"42915":-1,"42916":-1,"42917":-1,"42918":-1,"42919":-1,"42920":4064,"42921":-1,"42922":-1,"42923":-1,"42924":-1,"42925":4067,"42926":-1,"42927":-1,"42928":-1,"42929":4068,"42930":-1,"42931":-1,"42932":4065,"42933":-1,"42934":-1,"42935":4066,"42936":-1,"42937":-1,"42938":4066,"42939":-1,"42940":-1,"42941":-1,"42942":-1,"42943":-1,"42944":4067,"42945":-1,"42946":-1,"42947":-1,"42948":-1,"42949":-1,"42950":-1,"42951":0,"42952":-1,"42953":-1,"42954":-1,"42955":4063,"42956":-1,"42957":-1,"42958":4067,"42959":-1,"42960":-1,"42961":-1,"42962":-1,"42963":-1,"42964":-1,"42965":-1,"42966":4066,"42967":-1,"42968":-1,"42969":-1,"42970":0,"42971":-1,"42972":-1,"42973":4063,"42974":-1,"42975":-1,"42976":-1,"42977":-1,"42978":-1,"42979":-1,"42980":-1,"42981":-1,"42982":-1,"42983":-1,"42984":4064,"42985":-1,"42986":-1,"42987":-1,"42988":-1,"42989":-1,"42990":-1,"42991":4067,"42992":-1,"42993":-1,"42994":-1,"42995":-1,"42996":-1,"42997":-1,"42998":-1,"42999":-1,"43000":-1,"43001":-1,"43002":-1,"43003":-1,"43004":-1,"43005":-1,"43006":-1,"43007":-1,"43008":-1,"43009":-1,"43010":-1,"43011":-1,"43012":-1,"43013":0,"43014":-1,"43015":-1,"43016":-1,"43017":-1,"43018":-1,"43019":-1,"43020":-1,"43021":-1,"43022":-1,"43023":-1,"43024":-1,"43025":-1,"43026":-1,"43027":-1,"43028":-1,"43029":-1,"43030":-1,"43031":4067,"43032":-1,"43033":-1,"43034":0,"43035":-1,"43036":4067,"43037":-1,"43038":-1,"43039":-1,"43040":-1,"43041":-1,"43042":-1,"43043":-1,"43044":-1,"43045":-1,"43046":-1,"43047":4065,"43048":-1,"43049":-1,"43050":-1,"43051":4065,"43052":-1,"43053":-1,"43054":0,"43055":4066,"43056":4065,"43057":-1,"43058":-1,"43059":-1,"43060":4064,"43061":4068,"43062":-1,"43063":-1,"43064":-1,"43065":4066,"43066":-1,"43067":-1,"43068":-1,"43069":-1,"43070":-1,"43071":-1,"43072":-1,"43073":0,"43074":-1,"43075":4066,"43076":-1,"43077":4066,"43078":0,"43079":-1,"43080":-1,"43081":-1,"43082":-1,"43083":-1,"43084":4067,"43085":4068,"43086":-1,"43087":-1,"43088":-1,"43089":-1,"43090":-1,"43091":-1,"43092":-1,"43093":-1,"43094":4066,"43095":-1,"43096":4064,"43097":-1,"43098":-1,"43099":-1,"43100":-1,"43101":-1,"43102":-1,"43103":-1,"43104":-1,"43105":4066,"43106":-1,"43107":-1,"43108":-1,"43109":-1,"43110":-1,"43111":-1,"43112":-1,"43113":-1,"43114":-1,"43115":4063,"43116":-1,"43117":-1,"43118":-1,"43119":0,"43120":0,"43121":-1,"43122":-1,"43123":-1,"43124":-1,"43125":-1,"43126":-1,"43127":-1,"43128":-1,"43129":-1,"43130":4066,"43131":4067,"43132":-1,"43133":-1,"43134":-1,"43135":-1,"43136":-1,"43137":-1,"43138":-1,"43139":-1,"43140":-1,"43141":-1,"43142":-1,"43143":-1,"43144":-1,"43145":-1,"43146":-1,"43147":-1,"43148":-1,"43149":-1,"43150":0,"43151":-1,"43152":-1,"43153":-1,"43154":-1,"43155":-1,"43156":-1,"43157":-1,"43158":-1,"43159":-1,"43160":-1,"43161":-1,"43162":-1,"43163":4066,"43164":-1,"43165":-1,"43166":-1,"43167":-1,"43168":-1,"43169":-1,"43170":-1,"43171":-1,"43172":-1,"43173":0,"43174":-1,"43175":4068,"43176":-1,"43177":-1,"43178":-1,"43179":-1,"43180":-1,"43181":-1,"43182":4065,"43183":-1,"43184":-1,"43185":-1,"43186":-1,"43187":-1,"43188":-1,"43189":-1,"43190":-1,"43191":0,"43192":-1,"43193":-1,"43194":-1,"43195":-1,"43196":-1,"43197":-1,"43198":-1,"43199":-1,"43200":-1,"43201":-1,"43202":-1,"43203":-1,"43204":-1,"43205":-1,"43206":-1,"43207":-1,"43208":-1,"43209":4067,"43210":-1,"43211":0,"43212":-1,"43213":-1,"43214":-1,"43215":0,"43216":-1,"43217":-1,"43218":4066,"43219":-1,"43220":-1,"43221":-1,"43222":-1,"43223":-1,"43224":-1,"43225":-1,"43226":-1,"43227":-1,"43228":-1,"43229":-1,"43230":-1,"43231":-1,"43232":-1,"43233":-1,"43234":-1,"43235":-1,"43236":-1,"43237":-1,"43238":-1,"43239":-1,"43240":-1,"43241":-1,"43242":-1,"43243":-1,"43244":-1,"43245":4068,"43246":-1,"43247":-1,"43248":-1,"43249":-1,"43250":-1,"43251":-1,"43252":4067,"43253":-1,"43254":-1,"43255":-1,"43256":-1,"43257":-1,"43258":4064,"43259":-1,"43260":-1,"43261":-1,"43262":4065,"43263":-1,"43264":-1,"43265":4063,"43266":-1,"43267":-1,"43268":4064,"43269":4067,"43270":-1,"43271":-1,"43272":-1,"43273":-1,"43274":-1,"43275":-1,"43276":-1,"43277":-1,"43278":-1,"43279":-1,"43280":-1,"43281":-1,"43282":-1,"43283":-1,"43284":4068,"43285":-1,"43286":-1,"43287":-1,"43288":-1,"43289":4064,"43290":-1,"43291":-1,"43292":-1,"43293":-1,"43294":4066,"43295":0,"43296":-1,"43297":-1,"43298":-1,"43299":-1,"43300":-1,"43301":-1,"43302":-1,"43303":-1,"43304":-1,"43305":-1,"43306":-1,"43307":-1,"43308":-1,"43309":-1,"43310":-1,"43311":-1,"43312":-1,"43313":-1,"43314":-1,"43315":-1,"43316":-1,"43317":4066,"43318":4066,"43319":-1,"43320":-1,"43321":-1,"43322":-1,"43323":-1,"43324":4065,"43325":-1,"43326":0,"43327":-1,"43328":-1,"43329":-1,"43330":-1,"43331":-1,"43332":-1,"43333":-1,"43334":-1,"43335":-1,"43336":-1,"43337":-1,"43338":-1,"43339":-1,"43340":-1,"43341":-1,"43342":-1,"43343":-1,"43344":-1,"43345":-1,"43346":-1,"43347":-1,"43348":-1,"43349":-1,"43350":-1,"43351":-1,"43352":-1,"43353":-1,"43354":-1,"43355":-1,"43356":-1,"43357":-1,"43358":4063,"43359":-1,"43360":-1,"43361":-1,"43362":-1,"43363":-1,"43364":-1,"43365":-1,"43366":-1,"43367":-1,"43368":-1,"43369":-1,"43370":-1,"43371":-1,"43372":-1,"43373":-1,"43374":4066,"43375":-1,"43376":-1,"43377":-1,"43378":-1,"43379":-1,"43380":-1,"43381":-1,"43382":0,"43383":-1,"43384":-1,"43385":-1,"43386":-1,"43387":-1,"43388":4067,"43389":-1,"43390":-1,"43391":-1,"43392":-1,"43393":4065,"43394":-1,"43395":-1,"43396":-1,"43397":-1,"43398":-1,"43399":-1,"43400":-1,"43401":-1,"43402":-1,"43403":-1,"43404":-1,"43405":4066,"43406":4064,"43407":0,"43408":-1,"43409":-1,"43410":-1,"43411":4065,"43412":-1,"43413":4064,"43414":-1,"43415":-1,"43416":4067,"43417":0,"43418":-1,"43419":4063,"43420":-1,"43421":-1,"43422":-1,"43423":-1,"43424":-1,"43425":-1,"43426":-1,"43427":-1,"43428":-1,"43429":-1,"43430":-1,"43431":-1,"43432":4064,"43433":-1,"43434":4064,"43435":-1,"43436":-1,"43437":-1,"43438":0,"43439":-1,"43440":-1,"43441":-1,"43442":-1,"43443":-1,"43444":4065,"43445":4063,"43446":-1,"43447":-1,"43448":-1,"43449":-1,"43450":-1,"43451":-1,"43452":-1,"43453":-1,"43454":-1,"43455":-1,"43456":4065,"43457":4064,"43458":-1,"43459":-1,"43460":4066,"43461":-1,"43462":-1,"43463":-1,"43464":-1,"43465":-1,"43466":-1,"43467":-1,"43468":-1,"43469":-1,"43470":4067,"43471":0,"43472":-1,"43473":-1,"43474":-1,"43475":-1,"43476":-1,"43477":4065,"43478":-1,"43479":4064,"43480":-1,"43481":-1,"43482":-1,"43483":-1,"43484":-1,"43485":-1,"43486":-1,"43487":-1,"43488":-1,"43489":-1,"43490":-1,"43491":-1,"43492":-1,"43493":-1,"43494":-1,"43495":-1,"43496":-1,"43497":-1,"43498":4068,"43499":-1,"43500":-1,"43501":-1,"43502":-1,"43503":4064,"43504":4065,"43505":-1,"43506":-1,"43507":4067,"43508":-1,"43509":-1,"43510":-1,"43511":-1,"43512":-1,"43513":-1,"43514":-1,"43515":-1,"43516":-1,"43517":-1,"43518":-1,"43519":-1,"43520":-1,"43521":4065,"43522":4068,"43523":4064,"43524":-1,"43525":-1,"43526":-1,"43527":-1,"43528":-1,"43529":-1,"43530":4067,"43531":-1,"43532":-1,"43533":-1,"43534":-1,"43535":-1,"43536":-1,"43537":-1,"43538":-1,"43539":-1,"43540":-1,"43541":-1,"43542":-1,"43543":-1,"43544":0,"43545":-1,"43546":-1,"43547":-1,"43548":-1,"43549":0,"43550":-1,"43551":-1,"43552":-1,"43553":-1,"43554":-1,"43555":4065,"43556":-1,"43557":-1,"43558":-1,"43559":4064,"43560":-1,"43561":4065,"43562":-1,"43563":-1,"43564":-1,"43565":-1,"43566":-1,"43567":-1,"43568":-1,"43569":-1,"43570":0,"43571":-1,"43572":4063,"43573":-1,"43574":-1,"43575":-1,"43576":-1,"43577":-1,"43578":-1,"43579":-1,"43580":-1,"43581":-1,"43582":-1,"43583":-1,"43584":-1,"43585":-1,"43586":-1,"43587":-1,"43588":-1,"43589":-1,"43590":-1,"43591":-1,"43592":-1,"43593":-1,"43594":4063,"43595":-1,"43596":0,"43597":0,"43598":-1,"43599":-1,"43600":-1,"43601":4063,"43602":-1,"43603":-1,"43604":-1,"43605":-1,"43606":-1,"43607":4067,"43608":0,"43609":-1,"43610":-1,"43611":-1,"43612":-1,"43613":4068,"43614":-1,"43615":-1,"43616":-1,"43617":-1,"43618":4065,"43619":-1,"43620":4067,"43621":-1,"43622":-1,"43623":-1,"43624":4066,"43625":-1,"43626":-1,"43627":-1,"43628":-1,"43629":-1,"43630":-1,"43631":0,"43632":-1,"43633":-1,"43634":4067,"43635":-1,"43636":-1,"43637":-1,"43638":-1,"43639":-1,"43640":-1,"43641":-1,"43642":-1,"43643":4066,"43644":-1,"43645":-1,"43646":-1,"43647":4064,"43648":-1,"43649":4067,"43650":4064,"43651":4064,"43652":4066,"43653":-1,"43654":-1,"43655":-1,"43656":-1,"43657":-1,"43658":-1,"43659":-1,"43660":-1,"43661":-1,"43662":-1,"43663":-1,"43664":-1,"43665":-1,"43666":4064,"43667":-1,"43668":-1,"43669":-1,"43670":-1,"43671":-1,"43672":-1,"43673":-1,"43674":-1,"43675":-1,"43676":4067,"43677":-1,"43678":-1,"43679":-1,"43680":-1,"43681":-1,"43682":0,"43683":-1,"43684":4064,"43685":-1,"43686":-1,"43687":-1,"43688":-1,"43689":-1,"43690":-1,"43691":4066,"43692":-1,"43693":-1,"43694":-1,"43695":-1,"43696":-1,"43697":-1,"43698":-1,"43699":-1,"43700":-1,"43701":-1,"43702":-1,"43703":-1,"43704":-1,"43705":-1,"43706":-1,"43707":-1,"43708":-1,"43709":-1,"43710":-1,"43711":-1,"43712":-1,"43713":-1,"43714":-1,"43715":-1,"43716":-1,"43717":-1,"43718":-1,"43719":-1,"43720":-1,"43721":-1,"43722":-1,"43723":-1,"43724":-1,"43725":-1,"43726":-1,"43727":-1,"43728":4064,"43729":0,"43730":-1,"43731":-1,"43732":-1,"43733":-1,"43734":-1,"43735":-1,"43736":-1,"43737":-1,"43738":-1,"43739":0,"43740":-1,"43741":-1,"43742":4064,"43743":-1,"43744":-1,"43745":-1,"43746":-1,"43747":-1,"43748":-1,"43749":4067,"43750":-1,"43751":-1,"43752":4064,"43753":4066,"43754":4065,"43755":-1,"43756":-1,"43757":-1,"43758":-1,"43759":-1,"43760":-1,"43761":-1,"43762":-1,"43763":-1,"43764":-1,"43765":-1,"43766":-1,"43767":-1,"43768":-1,"43769":4067,"43770":-1,"43771":-1,"43772":-1,"43773":-1,"43774":-1,"43775":-1,"43776":-1,"43777":-1,"43778":4063,"43779":-1,"43780":-1,"43781":-1,"43782":-1,"43783":4063,"43784":-1,"43785":-1,"43786":-1,"43787":-1,"43788":-1,"43789":-1,"43790":-1,"43791":-1,"43792":-1,"43793":-1,"43794":-1,"43795":0,"43796":-1,"43797":-1,"43798":-1,"43799":-1,"43800":-1,"43801":-1,"43802":-1,"43803":-1,"43804":-1,"43805":4068,"43806":-1,"43807":-1,"43808":-1,"43809":-1,"43810":4066,"43811":-1,"43812":-1,"43813":0,"43814":-1,"43815":4063,"43816":-1,"43817":-1,"43818":-1,"43819":4063,"43820":-1,"43821":-1,"43822":-1,"43823":-1,"43824":-1,"43825":-1,"43826":0,"43827":-1,"43828":-1,"43829":-1,"43830":-1,"43831":-1,"43832":-1,"43833":-1,"43834":-1,"43835":-1,"43836":-1,"43837":-1,"43838":-1,"43839":-1,"43840":-1,"43841":-1,"43842":-1,"43843":4067,"43844":4064,"43845":-1,"43846":-1,"43847":-1,"43848":4065,"43849":-1,"43850":-1,"43851":-1,"43852":4065,"43853":-1,"43854":-1,"43855":4066,"43856":-1,"43857":-1,"43858":4068,"43859":-1,"43860":-1,"43861":0,"43862":-1,"43863":-1,"43864":-1,"43865":-1,"43866":4067,"43867":-1,"43868":-1,"43869":0,"43870":-1,"43871":0,"43872":-1,"43873":0,"43874":-1,"43875":-1,"43876":-1,"43877":-1,"43878":-1,"43879":-1,"43880":-1,"43881":4065,"43882":-1,"43883":4065,"43884":-1,"43885":-1,"43886":-1,"43887":4066,"43888":-1,"43889":-1,"43890":-1,"43891":-1,"43892":4063,"43893":-1,"43894":0,"43895":-1,"43896":-1,"43897":-1,"43898":-1,"43899":-1,"43900":-1,"43901":-1,"43902":0,"43903":4066,"43904":-1,"43905":4064,"43906":4066,"43907":-1,"43908":4066,"43909":-1,"43910":-1,"43911":-1,"43912":-1,"43913":-1,"43914":-1,"43915":-1,"43916":4066,"43917":4068,"43918":4068,"43919":4067,"43920":-1,"43921":-1,"43922":-1,"43923":-1,"43924":-1,"43925":-1,"43926":-1,"43927":-1,"43928":-1,"43929":-1,"43930":-1,"43931":-1,"43932":-1,"43933":-1,"43934":-1,"43935":-1,"43936":-1,"43937":-1,"43938":-1,"43939":-1,"43940":4066,"43941":-1,"43942":4064,"43943":4064,"43944":-1,"43945":-1,"43946":-1,"43947":-1,"43948":-1,"43949":-1,"43950":-1,"43951":-1,"43952":-1,"43953":-1,"43954":-1,"43955":-1,"43956":-1,"43957":-1,"43958":-1,"43959":-1,"43960":-1,"43961":-1,"43962":-1,"43963":-1,"43964":-1,"43965":-1,"43966":-1,"43967":-1,"43968":-1,"43969":0,"43970":-1,"43971":-1,"43972":-1,"43973":-1,"43974":-1,"43975":-1,"43976":-1,"43977":-1,"43978":-1,"43979":-1,"43980":-1,"43981":-1,"43982":-1,"43983":-1,"43984":-1,"43985":-1,"43986":-1,"43987":4066,"43988":4068,"43989":-1,"43990":-1,"43991":-1,"43992":-1,"43993":-1,"43994":-1,"43995":-1,"43996":-1,"43997":-1,"43998":-1,"43999":-1,"44000":-1,"44001":-1,"44002":-1,"44003":4068,"44004":-1,"44005":-1,"44006":4066,"44007":-1,"44008":-1,"44009":4064,"44010":-1,"44011":-1,"44012":4064,"44013":-1,"44014":-1,"44015":-1,"44016":-1,"44017":-1,"44018":-1,"44019":-1,"44020":-1,"44021":4067,"44022":-1,"44023":-1,"44024":4066,"44025":-1,"44026":-1,"44027":-1,"44028":-1,"44029":4067,"44030":-1,"44031":4066,"44032":-1,"44033":-1,"44034":-1,"44035":-1,"44036":-1,"44037":-1,"44038":-1,"44039":-1,"44040":-1,"44041":-1,"44042":-1,"44043":-1,"44044":-1,"44045":-1,"44046":-1,"44047":-1,"44048":-1,"44049":-1,"44050":-1,"44051":-1,"44052":4065,"44053":-1,"44054":-1,"44055":4067,"44056":-1,"44057":-1,"44058":-1,"44059":-1,"44060":-1,"44061":-1,"44062":4068,"44063":-1,"44064":4066,"44065":-1,"44066":-1,"44067":-1,"44068":-1,"44069":-1,"44070":-1,"44071":-1,"44072":0,"44073":-1,"44074":-1,"44075":-1,"44076":-1,"44077":-1,"44078":-1,"44079":-1,"44080":-1,"44081":-1,"44082":-1,"44083":-1,"44084":-1,"44085":4067,"44086":-1,"44087":-1,"44088":-1,"44089":-1,"44090":-1,"44091":-1,"44092":-1,"44093":-1,"44094":4067,"44095":-1,"44096":-1,"44097":-1,"44098":-1,"44099":-1,"44100":-1,"44101":-1,"44102":4064,"44103":-1,"44104":-1,"44105":-1,"44106":-1,"44107":-1,"44108":0,"44109":-1,"44110":-1,"44111":-1,"44112":-1,"44113":-1,"44114":-1,"44115":4065,"44116":-1,"44117":-1,"44118":-1,"44119":4068,"44120":-1,"44121":-1,"44122":4067,"44123":-1,"44124":-1,"44125":-1,"44126":-1,"44127":-1,"44128":4063,"44129":-1,"44130":-1,"44131":-1,"44132":-1,"44133":-1,"44134":-1,"44135":-1,"44136":-1,"44137":-1,"44138":-1,"44139":-1,"44140":-1,"44141":-1,"44142":-1,"44143":-1,"44144":-1,"44145":4067,"44146":-1,"44147":-1,"44148":-1,"44149":-1,"44150":4064,"44151":-1,"44152":-1,"44153":-1,"44154":-1,"44155":4066,"44156":-1,"44157":-1,"44158":4064,"44159":-1,"44160":-1,"44161":-1,"44162":-1,"44163":-1,"44164":-1,"44165":0,"44166":-1,"44167":-1,"44168":-1,"44169":-1,"44170":-1,"44171":-1,"44172":-1,"44173":-1,"44174":-1,"44175":-1,"44176":-1,"44177":-1,"44178":4064,"44179":-1,"44180":-1,"44181":-1,"44182":-1,"44183":4067,"44184":4064,"44185":-1,"44186":-1,"44187":4064,"44188":-1,"44189":0,"44190":-1,"44191":-1,"44192":0,"44193":4067,"44194":-1,"44195":-1,"44196":-1,"44197":-1,"44198":-1,"44199":-1,"44200":4064,"44201":4063,"44202":-1,"44203":-1,"44204":-1,"44205":-1,"44206":4067,"44207":-1,"44208":-1,"44209":-1,"44210":-1,"44211":-1,"44212":-1,"44213":-1,"44214":-1,"44215":-1,"44216":0,"44217":-1,"44218":-1,"44219":-1,"44220":0,"44221":-1,"44222":-1,"44223":-1,"44224":-1,"44225":-1,"44226":4068,"44227":-1,"44228":-1,"44229":-1,"44230":-1,"44231":-1,"44232":4067,"44233":-1,"44234":0,"44235":-1,"44236":-1,"44237":-1,"44238":-1,"44239":-1,"44240":-1,"44241":-1,"44242":-1,"44243":-1,"44244":-1,"44245":-1,"44246":-1,"44247":-1,"44248":-1,"44249":-1,"44250":4068,"44251":-1,"44252":-1,"44253":-1,"44254":-1,"44255":4066,"44256":-1,"44257":-1,"44258":0,"44259":-1,"44260":-1,"44261":-1,"44262":-1,"44263":4067,"44264":-1,"44265":-1,"44266":-1,"44267":-1,"44268":-1,"44269":-1,"44270":-1,"44271":-1,"44272":-1,"44273":-1,"44274":-1,"44275":-1,"44276":-1,"44277":-1,"44278":4063,"44279":-1,"44280":-1,"44281":0,"44282":-1,"44283":-1,"44284":-1,"44285":-1,"44286":-1,"44287":-1,"44288":4064,"44289":-1,"44290":-1,"44291":-1,"44292":-1,"44293":-1,"44294":4064,"44295":-1,"44296":-1,"44297":-1,"44298":-1,"44299":-1,"44300":-1,"44301":-1,"44302":-1,"44303":-1,"44304":-1,"44305":-1,"44306":0,"44307":-1,"44308":-1,"44309":-1,"44310":-1,"44311":-1,"44312":-1,"44313":4068,"44314":-1,"44315":-1,"44316":-1,"44317":-1,"44318":-1,"44319":-1,"44320":-1,"44321":-1,"44322":-1,"44323":-1,"44324":-1,"44325":-1,"44326":-1,"44327":4068,"44328":-1,"44329":0,"44330":-1,"44331":-1,"44332":4063,"44333":-1,"44334":4067,"44335":-1,"44336":-1,"44337":-1,"44338":-1,"44339":-1,"44340":-1,"44341":-1,"44342":-1,"44343":-1,"44344":-1,"44345":-1,"44346":-1,"44347":-1,"44348":4068,"44349":-1,"44350":-1,"44351":-1,"44352":-1,"44353":-1,"44354":-1,"44355":-1,"44356":-1,"44357":-1,"44358":4063,"44359":-1,"44360":4064,"44361":4068,"44362":-1,"44363":4065,"44364":-1,"44365":-1,"44366":-1,"44367":-1,"44368":-1,"44369":-1,"44370":-1,"44371":-1,"44372":4064,"44373":-1,"44374":-1,"44375":-1,"44376":4066,"44377":-1,"44378":-1,"44379":-1,"44380":-1,"44381":4064,"44382":-1,"44383":-1,"44384":4067,"44385":-1,"44386":-1,"44387":-1,"44388":-1,"44389":-1,"44390":-1,"44391":-1,"44392":-1,"44393":-1,"44394":0,"44395":4067,"44396":-1,"44397":-1,"44398":4068,"44399":-1,"44400":-1,"44401":-1,"44402":-1,"44403":-1,"44404":-1,"44405":-1,"44406":-1,"44407":-1,"44408":-1,"44409":-1,"44410":-1,"44411":-1,"44412":-1,"44413":-1,"44414":-1,"44415":-1,"44416":-1,"44417":-1,"44418":-1,"44419":-1,"44420":4064,"44421":-1,"44422":-1,"44423":-1,"44424":-1,"44425":-1,"44426":4068,"44427":-1,"44428":-1,"44429":-1,"44430":-1,"44431":-1,"44432":4063,"44433":-1,"44434":-1,"44435":-1,"44436":-1,"44437":-1,"44438":4066,"44439":4066,"44440":-1,"44441":-1,"44442":-1,"44443":-1,"44444":4064,"44445":-1,"44446":4066,"44447":-1,"44448":-1,"44449":-1,"44450":-1,"44451":-1,"44452":-1,"44453":4067,"44454":-1,"44455":-1,"44456":-1,"44457":-1,"44458":-1,"44459":-1,"44460":-1,"44461":-1,"44462":4066,"44463":-1,"44464":-1,"44465":-1,"44466":-1,"44467":-1,"44468":-1,"44469":-1,"44470":-1,"44471":-1,"44472":-1,"44473":-1,"44474":-1,"44475":-1,"44476":-1,"44477":-1,"44478":-1,"44479":0,"44480":-1,"44481":-1,"44482":-1,"44483":-1,"44484":-1,"44485":-1,"44486":-1,"44487":-1,"44488":-1,"44489":-1,"44490":-1,"44491":-1,"44492":-1,"44493":-1,"44494":-1,"44495":-1,"44496":-1,"44497":-1,"44498":4064,"44499":-1,"44500":-1,"44501":4065,"44502":-1,"44503":-1,"44504":4067,"44505":-1,"44506":-1,"44507":-1,"44508":4065,"44509":-1,"44510":-1,"44511":-1,"44512":-1,"44513":-1,"44514":-1,"44515":-1,"44516":-1,"44517":-1,"44518":-1,"44519":-1,"44520":-1,"44521":4064,"44522":-1,"44523":-1,"44524":-1,"44525":-1,"44526":-1,"44527":4065,"44528":-1,"44529":4063,"44530":-1,"44531":-1,"44532":-1,"44533":-1,"44534":-1,"44535":-1,"44536":-1,"44537":-1,"44538":-1,"44539":-1,"44540":-1,"44541":-1,"44542":-1,"44543":4067,"44544":-1,"44545":-1,"44546":-1,"44547":-1,"44548":-1,"44549":-1,"44550":-1,"44551":-1,"44552":-1,"44553":-1,"44554":-1,"44555":-1,"44556":-1,"44557":-1,"44558":-1,"44559":-1,"44560":-1,"44561":-1,"44562":-1,"44563":-1,"44564":4067,"44565":-1,"44566":-1,"44567":4067,"44568":-1,"44569":-1,"44570":-1,"44571":4065,"44572":-1,"44573":-1,"44574":-1,"44575":-1,"44576":4066,"44577":-1,"44578":4066,"44579":-1,"44580":-1,"44581":-1,"44582":-1,"44583":-1,"44584":-1,"44585":4063,"44586":-1,"44587":-1,"44588":-1,"44589":-1,"44590":-1,"44591":-1,"44592":-1,"44593":-1,"44594":-1,"44595":4067,"44596":-1,"44597":-1,"44598":-1,"44599":-1,"44600":-1,"44601":-1,"44602":-1,"44603":-1,"44604":-1,"44605":-1,"44606":-1,"44607":-1,"44608":-1,"44609":4064,"44610":-1,"44611":-1,"44612":-1,"44613":-1,"44614":-1,"44615":-1,"44616":-1,"44617":-1,"44618":-1,"44619":-1,"44620":-1,"44621":-1,"44622":-1,"44623":-1,"44624":4064,"44625":-1,"44626":-1,"44627":-1,"44628":-1,"44629":-1,"44630":4067,"44631":-1,"44632":-1,"44633":-1,"44634":-1,"44635":0,"44636":-1,"44637":-1,"44638":-1,"44639":-1,"44640":0,"44641":-1,"44642":-1,"44643":-1,"44644":-1,"44645":-1,"44646":-1,"44647":0,"44648":-1,"44649":-1,"44650":-1,"44651":4063,"44652":-1,"44653":-1,"44654":-1,"44655":4066,"44656":-1,"44657":-1,"44658":-1,"44659":-1,"44660":-1,"44661":-1,"44662":4064,"44663":-1,"44664":-1,"44665":4068,"44666":4065,"44667":-1,"44668":-1,"44669":-1,"44670":-1,"44671":-1,"44672":-1,"44673":-1,"44674":0,"44675":-1,"44676":-1,"44677":4067,"44678":-1,"44679":4064,"44680":4066,"44681":-1,"44682":-1,"44683":4067,"44684":-1,"44685":0,"44686":-1,"44687":-1,"44688":-1,"44689":-1,"44690":0,"44691":-1,"44692":-1,"44693":0,"44694":-1,"44695":-1,"44696":-1,"44697":-1,"44698":-1,"44699":-1,"44700":-1,"44701":-1,"44702":4064,"44703":-1,"44704":-1,"44705":-1,"44706":-1,"44707":-1,"44708":-1,"44709":-1,"44710":-1,"44711":-1,"44712":0,"44713":-1,"44714":-1,"44715":-1,"44716":-1,"44717":-1,"44718":4065,"44719":-1,"44720":-1,"44721":-1,"44722":-1,"44723":0,"44724":-1,"44725":-1,"44726":-1,"44727":-1,"44728":4067,"44729":-1,"44730":-1,"44731":-1,"44732":-1,"44733":-1,"44734":-1,"44735":-1,"44736":-1,"44737":-1,"44738":-1,"44739":-1,"44740":-1,"44741":0,"44742":-1,"44743":-1,"44744":-1,"44745":-1,"44746":-1,"44747":-1,"44748":-1,"44749":-1,"44750":-1,"44751":0,"44752":-1,"44753":-1,"44754":-1,"44755":-1,"44756":-1,"44757":-1,"44758":-1,"44759":-1,"44760":-1,"44761":-1,"44762":-1,"44763":-1,"44764":-1,"44765":-1,"44766":4065,"44767":-1,"44768":-1,"44769":-1,"44770":-1,"44771":-1,"44772":-1,"44773":-1,"44774":-1,"44775":-1,"44776":-1,"44777":4066,"44778":-1,"44779":4064,"44780":4065,"44781":-1,"44782":-1,"44783":-1,"44784":-1,"44785":-1,"44786":-1,"44787":-1,"44788":-1,"44789":-1,"44790":4067,"44791":-1,"44792":-1,"44793":-1,"44794":-1,"44795":-1,"44796":-1,"44797":-1,"44798":-1,"44799":-1,"44800":4066,"44801":-1,"44802":-1,"44803":4067,"44804":-1,"44805":-1,"44806":-1,"44807":-1,"44808":-1,"44809":-1,"44810":-1,"44811":-1,"44812":-1,"44813":-1,"44814":-1,"44815":-1,"44816":-1,"44817":-1,"44818":4066,"44819":-1,"44820":-1,"44821":-1,"44822":-1,"44823":-1,"44824":-1,"44825":4063,"44826":-1,"44827":0,"44828":-1,"44829":-1,"44830":-1,"44831":-1,"44832":-1,"44833":-1,"44834":-1,"44835":-1,"44836":-1,"44837":-1,"44838":-1,"44839":-1,"44840":-1,"44841":-1,"44842":-1,"44843":-1,"44844":-1,"44845":4063,"44846":0,"44847":-1,"44848":-1,"44849":-1,"44850":-1,"44851":-1,"44852":4064,"44853":-1,"44854":-1,"44855":-1,"44856":-1,"44857":-1,"44858":-1,"44859":4067,"44860":-1,"44861":-1,"44862":-1,"44863":-1,"44864":4067,"44865":0,"44866":-1,"44867":4064,"44868":-1,"44869":-1,"44870":-1,"44871":-1,"44872":-1,"44873":-1,"44874":-1,"44875":-1,"44876":-1,"44877":-1,"44878":-1,"44879":-1,"44880":0,"44881":-1,"44882":4065,"44883":-1,"44884":-1,"44885":4065,"44886":-1,"44887":-1,"44888":-1,"44889":-1,"44890":4065,"44891":-1,"44892":4065,"44893":-1,"44894":-1,"44895":-1,"44896":-1,"44897":-1,"44898":4066,"44899":-1,"44900":-1,"44901":-1,"44902":-1,"44903":-1,"44904":-1,"44905":-1,"44906":-1,"44907":-1,"44908":-1,"44909":-1,"44910":-1,"44911":-1,"44912":-1,"44913":-1,"44914":-1,"44915":4063,"44916":-1,"44917":-1,"44918":-1,"44919":4065,"44920":0,"44921":-1,"44922":4067,"44923":-1,"44924":-1,"44925":0,"44926":-1,"44927":4064,"44928":-1,"44929":-1,"44930":4067,"44931":4068,"44932":-1,"44933":-1,"44934":4066,"44935":0,"44936":-1,"44937":-1,"44938":-1,"44939":4063,"44940":4064,"44941":-1,"44942":-1,"44943":-1,"44944":-1,"44945":-1,"44946":-1,"44947":4067,"44948":-1,"44949":0,"44950":-1,"44951":0,"44952":-1,"44953":-1,"44954":-1,"44955":-1,"44956":0,"44957":-1,"44958":-1,"44959":-1,"44960":-1,"44961":-1,"44962":-1,"44963":-1,"44964":-1,"44965":-1,"44966":-1,"44967":-1,"44968":4068,"44969":-1,"44970":-1,"44971":-1,"44972":-1,"44973":4065,"44974":-1,"44975":-1,"44976":-1,"44977":-1,"44978":-1,"44979":-1,"44980":-1,"44981":4066,"44982":-1,"44983":4068,"44984":-1,"44985":-1,"44986":-1,"44987":0,"44988":-1,"44989":-1,"44990":-1,"44991":-1,"44992":-1,"44993":-1,"44994":-1,"44995":-1,"44996":-1,"44997":-1,"44998":4065,"44999":-1,"45000":-1,"45001":-1,"45002":-1,"45003":-1,"45004":-1,"45005":-1,"45006":4067,"45007":4067,"45008":-1,"45009":-1,"45010":-1,"45011":-1,"45012":-1,"45013":-1,"45014":4064,"45015":4068,"45016":-1,"45017":-1,"45018":4067,"45019":-1,"45020":4066,"45021":-1,"45022":-1,"45023":-1,"45024":-1,"45025":-1,"45026":-1,"45027":4064,"45028":-1,"45029":-1,"45030":-1,"45031":-1,"45032":-1,"45033":4064,"45034":-1,"45035":-1,"45036":-1,"45037":-1,"45038":-1,"45039":-1,"45040":-1,"45041":-1,"45042":-1,"45043":4066,"45044":4066,"45045":-1,"45046":-1,"45047":-1,"45048":-1,"45049":-1,"45050":4065,"45051":-1,"45052":-1,"45053":-1,"45054":4065,"45055":4065,"45056":-1,"45057":-1,"45058":-1,"45059":-1,"45060":-1,"45061":4066,"45062":-1,"45063":0,"45064":4067,"45065":-1,"45066":-1,"45067":-1,"45068":-1,"45069":4067,"45070":-1,"45071":-1,"45072":-1,"45073":4067,"45074":-1,"45075":4068,"45076":4067,"45077":-1,"45078":-1,"45079":-1,"45080":-1,"45081":-1,"45082":-1,"45083":-1,"45084":-1,"45085":-1,"45086":-1,"45087":-1,"45088":-1,"45089":-1,"45090":-1,"45091":-1,"45092":-1,"45093":-1,"45094":-1,"45095":4068,"45096":4064,"45097":-1,"45098":-1,"45099":-1,"45100":4064,"45101":4066,"45102":-1,"45103":-1,"45104":-1,"45105":-1,"45106":-1,"45107":-1,"45108":-1,"45109":-1,"45110":-1,"45111":-1,"45112":-1,"45113":-1,"45114":-1,"45115":4064,"45116":-1,"45117":-1,"45118":-1,"45119":-1,"45120":-1,"45121":4068,"45122":-1,"45123":-1,"45124":-1,"45125":-1,"45126":-1,"45127":-1,"45128":-1,"45129":-1,"45130":0,"45131":-1,"45132":-1,"45133":-1,"45134":-1,"45135":-1,"45136":-1,"45137":-1,"45138":-1,"45139":-1,"45140":-1,"45141":-1,"45142":-1,"45143":-1,"45144":4066,"45145":-1,"45146":-1,"45147":-1,"45148":4064,"45149":-1,"45150":-1,"45151":-1,"45152":-1,"45153":-1,"45154":-1,"45155":-1,"45156":4065,"45157":-1,"45158":-1,"45159":-1,"45160":-1,"45161":-1,"45162":-1,"45163":-1,"45164":-1,"45165":-1,"45166":-1,"45167":-1,"45168":0,"45169":-1,"45170":4067,"45171":-1,"45172":-1,"45173":-1,"45174":-1,"45175":-1,"45176":-1,"45177":-1,"45178":-1,"45179":-1,"45180":-1,"45181":-1,"45182":-1,"45183":-1,"45184":0,"45185":-1,"45186":0,"45187":-1,"45188":4065,"45189":-1,"45190":-1,"45191":-1,"45192":4067,"45193":-1,"45194":-1,"45195":-1,"45196":-1,"45197":-1,"45198":-1,"45199":-1,"45200":4066,"45201":-1,"45202":-1,"45203":-1,"45204":-1,"45205":4067,"45206":-1,"45207":4065,"45208":-1,"45209":-1,"45210":-1,"45211":4066,"45212":-1,"45213":-1,"45214":-1,"45215":-1,"45216":-1,"45217":-1,"45218":-1,"45219":-1,"45220":0,"45221":-1,"45222":-1,"45223":-1,"45224":0,"45225":4066,"45226":-1,"45227":-1,"45228":-1,"45229":-1,"45230":-1,"45231":-1,"45232":-1,"45233":-1,"45234":-1,"45235":-1,"45236":-1,"45237":-1,"45238":-1,"45239":-1,"45240":-1,"45241":-1,"45242":4065,"45243":-1,"45244":-1,"45245":-1,"45246":-1,"45247":-1,"45248":-1,"45249":-1,"45250":-1,"45251":-1,"45252":-1,"45253":-1,"45254":-1,"45255":-1,"45256":-1,"45257":-1,"45258":4066,"45259":-1,"45260":-1,"45261":-1,"45262":-1,"45263":-1,"45264":-1,"45265":-1,"45266":-1,"45267":-1,"45268":-1,"45269":-1,"45270":-1,"45271":-1,"45272":-1,"45273":-1,"45274":-1,"45275":-1,"45276":-1,"45277":4064,"45278":-1,"45279":4064,"45280":-1,"45281":-1,"45282":-1,"45283":-1,"45284":-1,"45285":-1,"45286":-1,"45287":-1,"45288":-1,"45289":-1,"45290":-1,"45291":-1,"45292":-1,"45293":4065,"45294":-1,"45295":-1,"45296":-1,"45297":-1,"45298":-1,"45299":-1,"45300":-1,"45301":-1,"45302":-1,"45303":-1,"45304":-1,"45305":-1,"45306":-1,"45307":-1,"45308":-1,"45309":-1,"45310":4065,"45311":-1,"45312":-1,"45313":-1,"45314":-1,"45315":-1,"45316":-1,"45317":4065,"45318":-1,"45319":4066,"45320":-1,"45321":-1,"45322":-1,"45323":-1,"45324":-1,"45325":-1,"45326":-1,"45327":-1,"45328":-1,"45329":-1,"45330":-1,"45331":-1,"45332":-1,"45333":-1,"45334":-1,"45335":4064,"45336":-1,"45337":-1,"45338":-1,"45339":-1,"45340":-1,"45341":4065,"45342":-1,"45343":-1,"45344":-1,"45345":4066,"45346":-1,"45347":-1,"45348":-1,"45349":-1,"45350":-1,"45351":-1,"45352":-1,"45353":-1,"45354":-1,"45355":-1,"45356":-1,"45357":-1,"45358":-1,"45359":-1,"45360":-1,"45361":-1,"45362":-1,"45363":-1,"45364":-1,"45365":-1,"45366":-1,"45367":4066,"45368":-1,"45369":4063,"45370":4067,"45371":-1,"45372":-1,"45373":-1,"45374":-1,"45375":4067,"45376":4063,"45377":-1,"45378":-1,"45379":-1,"45380":4066,"45381":-1,"45382":-1,"45383":-1,"45384":-1,"45385":-1,"45386":-1,"45387":-1,"45388":-1,"45389":-1,"45390":-1,"45391":0,"45392":-1,"45393":-1,"45394":-1,"45395":-1,"45396":-1,"45397":-1,"45398":4067,"45399":4067,"45400":-1,"45401":-1,"45402":-1,"45403":-1,"45404":-1,"45405":-1,"45406":-1,"45407":-1,"45408":-1,"45409":-1,"45410":4066,"45411":4066,"45412":-1,"45413":-1,"45414":-1,"45415":-1,"45416":-1,"45417":-1,"45418":-1,"45419":-1,"45420":-1,"45421":-1,"45422":-1,"45423":0,"45424":0,"45425":4064,"45426":-1,"45427":-1,"45428":-1,"45429":4064,"45430":-1,"45431":-1,"45432":-1,"45433":-1,"45434":-1,"45435":-1,"45436":-1,"45437":-1,"45438":-1,"45439":-1,"45440":0,"45441":-1,"45442":-1,"45443":-1,"45444":-1,"45445":-1,"45446":-1,"45447":4065,"45448":-1,"45449":-1,"45450":-1,"45451":-1,"45452":-1,"45453":-1,"45454":-1,"45455":4065,"45456":-1,"45457":-1,"45458":-1,"45459":-1,"45460":4063,"45461":-1,"45462":-1,"45463":-1,"45464":-1,"45465":-1,"45466":-1,"45467":-1,"45468":-1,"45469":-1,"45470":-1,"45471":-1,"45472":-1,"45473":-1,"45474":-1,"45475":4068,"45476":-1,"45477":-1,"45478":-1,"45479":-1,"45480":-1,"45481":-1,"45482":-1,"45483":-1,"45484":-1,"45485":-1,"45486":-1,"45487":-1,"45488":-1,"45489":-1,"45490":-1,"45491":-1,"45492":4063,"45493":-1,"45494":-1,"45495":4064,"45496":-1,"45497":-1,"45498":-1,"45499":-1,"45500":-1,"45501":-1,"45502":-1,"45503":-1,"45504":-1,"45505":-1,"45506":4067,"45507":4067,"45508":-1,"45509":-1,"45510":-1,"45511":-1,"45512":-1,"45513":4066,"45514":-1,"45515":-1,"45516":-1,"45517":-1,"45518":-1,"45519":-1,"45520":-1,"45521":-1,"45522":-1,"45523":-1,"45524":4068,"45525":-1,"45526":-1,"45527":-1,"45528":-1,"45529":-1,"45530":-1,"45531":-1,"45532":-1,"45533":-1,"45534":-1,"45535":-1,"45536":-1,"45537":-1,"45538":-1,"45539":-1,"45540":-1,"45541":-1,"45542":-1,"45543":-1,"45544":-1,"45545":-1,"45546":-1,"45547":-1,"45548":-1,"45549":-1,"45550":-1,"45551":-1,"45552":-1,"45553":-1,"45554":-1,"45555":-1,"45556":4066,"45557":-1,"45558":4064,"45559":-1,"45560":-1,"45561":-1,"45562":-1,"45563":-1,"45564":-1,"45565":-1,"45566":0,"45567":4067,"45568":-1,"45569":-1,"45570":-1,"45571":-1,"45572":-1,"45573":0,"45574":-1,"45575":-1,"45576":-1,"45577":-1,"45578":-1,"45579":-1,"45580":-1,"45581":4063,"45582":-1,"45583":-1,"45584":-1,"45585":-1,"45586":-1,"45587":4064,"45588":4065,"45589":4065,"45590":-1,"45591":-1,"45592":-1,"45593":-1,"45594":-1,"45595":-1,"45596":-1,"45597":-1,"45598":4067,"45599":-1,"45600":-1,"45601":-1,"45602":-1,"45603":-1,"45604":-1,"45605":-1,"45606":-1,"45607":-1,"45608":-1,"45609":-1,"45610":4066,"45611":-1,"45612":-1,"45613":-1,"45614":4067,"45615":-1,"45616":-1,"45617":-1,"45618":-1,"45619":-1,"45620":-1,"45621":-1,"45622":-1,"45623":-1,"45624":-1,"45625":-1,"45626":-1,"45627":4068,"45628":-1,"45629":-1,"45630":4068,"45631":-1,"45632":-1,"45633":-1,"45634":4066,"45635":-1,"45636":-1,"45637":-1,"45638":-1,"45639":4066,"45640":-1,"45641":-1,"45642":-1,"45643":-1,"45644":-1,"45645":-1,"45646":-1,"45647":-1,"45648":-1,"45649":-1,"45650":-1,"45651":0,"45652":-1,"45653":-1,"45654":-1,"45655":-1,"45656":-1,"45657":-1,"45658":-1,"45659":-1,"45660":-1,"45661":-1,"45662":-1,"45663":-1,"45664":-1,"45665":4064,"45666":-1,"45667":-1,"45668":-1,"45669":-1,"45670":-1,"45671":-1,"45672":-1,"45673":-1,"45674":-1,"45675":-1,"45676":-1,"45677":-1,"45678":-1,"45679":4066,"45680":-1,"45681":-1,"45682":-1,"45683":-1,"45684":-1,"45685":-1,"45686":-1,"45687":-1,"45688":-1,"45689":-1,"45690":-1,"45691":-1,"45692":-1,"45693":-1,"45694":-1,"45695":-1,"45696":-1,"45697":-1,"45698":-1,"45699":-1,"45700":4065,"45701":-1,"45702":-1,"45703":-1,"45704":-1,"45705":-1,"45706":-1,"45707":-1,"45708":-1,"45709":-1,"45710":4066,"45711":-1,"45712":-1,"45713":-1,"45714":-1,"45715":-1,"45716":-1,"45717":-1,"45718":-1,"45719":-1,"45720":-1,"45721":4066,"45722":-1,"45723":-1,"45724":-1,"45725":-1,"45726":-1,"45727":-1,"45728":-1,"45729":-1,"45730":-1,"45731":-1,"45732":-1,"45733":4068,"45734":-1,"45735":-1,"45736":-1,"45737":-1,"45738":-1,"45739":-1,"45740":-1,"45741":-1,"45742":-1,"45743":4067,"45744":-1,"45745":-1,"45746":-1,"45747":-1,"45748":-1,"45749":-1,"45750":-1,"45751":-1,"45752":4065,"45753":-1,"45754":4064,"45755":-1,"45756":-1,"45757":-1,"45758":-1,"45759":-1,"45760":-1,"45761":-1,"45762":4065,"45763":-1,"45764":-1,"45765":-1,"45766":4067,"45767":-1,"45768":4064,"45769":-1,"45770":-1,"45771":-1,"45772":4067,"45773":-1,"45774":4064,"45775":-1,"45776":-1,"45777":-1,"45778":-1,"45779":-1,"45780":4067,"45781":-1,"45782":-1,"45783":-1,"45784":-1,"45785":-1,"45786":-1,"45787":4065,"45788":-1,"45789":-1,"45790":4066,"45791":-1,"45792":-1,"45793":-1,"45794":4064,"45795":-1,"45796":-1,"45797":-1,"45798":-1,"45799":4067,"45800":-1,"45801":-1,"45802":-1,"45803":-1,"45804":-1,"45805":-1,"45806":-1,"45807":-1,"45808":-1,"45809":-1,"45810":-1,"45811":-1,"45812":-1,"45813":-1,"45814":-1,"45815":-1,"45816":-1,"45817":0,"45818":-1,"45819":-1,"45820":-1,"45821":-1,"45822":-1,"45823":-1,"45824":-1,"45825":-1,"45826":-1,"45827":-1,"45828":4064,"45829":-1,"45830":-1,"45831":-1,"45832":0,"45833":-1,"45834":-1,"45835":-1,"45836":-1,"45837":-1,"45838":-1,"45839":-1,"45840":-1,"45841":-1,"45842":-1,"45843":-1,"45844":-1,"45845":-1,"45846":-1,"45847":-1,"45848":4068,"45849":-1,"45850":-1,"45851":-1,"45852":-1,"45853":-1,"45854":-1,"45855":-1,"45856":-1,"45857":-1,"45858":-1,"45859":-1,"45860":-1,"45861":-1,"45862":-1,"45863":-1,"45864":-1,"45865":-1,"45866":-1,"45867":-1,"45868":-1,"45869":4063,"45870":4064,"45871":-1,"45872":-1,"45873":-1,"45874":-1,"45875":-1,"45876":-1,"45877":-1,"45878":-1,"45879":-1,"45880":-1,"45881":-1,"45882":-1,"45883":-1,"45884":-1,"45885":4068,"45886":-1,"45887":-1,"45888":-1,"45889":4064,"45890":-1,"45891":-1,"45892":-1,"45893":-1,"45894":-1,"45895":-1,"45896":4065,"45897":-1,"45898":-1,"45899":-1,"45900":-1,"45901":4065,"45902":4065,"45903":4064,"45904":-1,"45905":-1,"45906":-1,"45907":-1,"45908":-1,"45909":-1,"45910":4063,"45911":-1,"45912":-1,"45913":-1,"45914":-1,"45915":-1,"45916":-1,"45917":-1,"45918":-1,"45919":-1,"45920":-1,"45921":-1,"45922":-1,"45923":-1,"45924":-1,"45925":-1,"45926":-1,"45927":-1,"45928":-1,"45929":-1,"45930":4064,"45931":4065,"45932":-1,"45933":-1,"45934":-1,"45935":-1,"45936":-1,"45937":-1,"45938":-1,"45939":-1,"45940":-1,"45941":-1,"45942":-1,"45943":-1,"45944":-1,"45945":-1,"45946":4066,"45947":4067,"45948":-1,"45949":-1,"45950":-1,"45951":-1,"45952":-1,"45953":-1,"45954":-1,"45955":0,"45956":-1,"45957":-1,"45958":-1,"45959":4066,"45960":-1,"45961":4067,"45962":-1,"45963":-1,"45964":-1,"45965":-1,"45966":4067,"45967":4065,"45968":-1,"45969":-1,"45970":4066,"45971":-1,"45972":-1,"45973":-1,"45974":-1,"45975":-1,"45976":4068,"45977":-1,"45978":-1,"45979":-1,"45980":-1,"45981":-1,"45982":-1,"45983":-1,"45984":-1,"45985":-1,"45986":-1,"45987":-1,"45988":-1,"45989":-1,"45990":4066,"45991":-1,"45992":-1,"45993":4065,"45994":-1,"45995":4066,"45996":4066,"45997":-1,"45998":4065,"45999":-1,"46000":0,"46001":-1,"46002":4064,"46003":-1,"46004":-1,"46005":-1,"46006":4063,"46007":-1,"46008":-1,"46009":-1,"46010":-1,"46011":-1,"46012":-1,"46013":-1,"46014":-1,"46015":4067,"46016":-1,"46017":-1,"46018":-1,"46019":-1,"46020":4064,"46021":-1,"46022":-1,"46023":-1,"46024":-1,"46025":-1,"46026":-1,"46027":-1,"46028":-1,"46029":-1,"46030":-1,"46031":-1,"46032":-1,"46033":-1,"46034":-1,"46035":4068,"46036":0,"46037":4064,"46038":-1,"46039":-1,"46040":-1,"46041":-1,"46042":4067,"46043":-1,"46044":4067,"46045":-1,"46046":-1,"46047":-1,"46048":-1,"46049":-1,"46050":-1,"46051":-1,"46052":-1,"46053":-1,"46054":-1,"46055":-1,"46056":-1,"46057":-1,"46058":-1,"46059":-1,"46060":0,"46061":-1,"46062":-1,"46063":-1,"46064":-1,"46065":-1,"46066":4068,"46067":-1,"46068":4067,"46069":-1,"46070":-1,"46071":4066,"46072":-1,"46073":-1,"46074":-1,"46075":-1,"46076":-1,"46077":-1,"46078":4064,"46079":-1,"46080":4067,"46081":-1,"46082":-1,"46083":-1,"46084":4068,"46085":-1,"46086":-1,"46087":-1,"46088":-1,"46089":-1,"46090":4064,"46091":-1,"46092":-1,"46093":-1,"46094":4066,"46095":4064,"46096":-1,"46097":-1,"46098":-1,"46099":-1,"46100":-1,"46101":-1,"46102":-1,"46103":-1,"46104":0,"46105":-1,"46106":0,"46107":-1,"46108":-1,"46109":-1,"46110":-1,"46111":0,"46112":-1,"46113":-1,"46114":-1,"46115":-1,"46116":-1,"46117":-1,"46118":-1,"46119":4066,"46120":-1,"46121":-1,"46122":-1,"46123":0,"46124":-1,"46125":-1,"46126":4066,"46127":-1,"46128":0,"46129":-1,"46130":-1,"46131":-1,"46132":-1,"46133":-1,"46134":-1,"46135":4064,"46136":-1,"46137":-1,"46138":-1,"46139":-1,"46140":-1,"46141":-1,"46142":-1,"46143":-1,"46144":-1,"46145":-1,"46146":-1,"46147":-1,"46148":4067,"46149":-1,"46150":-1,"46151":-1,"46152":-1,"46153":-1,"46154":-1,"46155":4063,"46156":-1,"46157":-1,"46158":4065,"46159":-1,"46160":-1,"46161":-1,"46162":-1,"46163":-1,"46164":-1,"46165":-1,"46166":-1,"46167":-1,"46168":-1,"46169":-1,"46170":4067,"46171":-1,"46172":-1,"46173":-1,"46174":-1,"46175":-1,"46176":-1,"46177":-1,"46178":-1,"46179":-1,"46180":-1,"46181":4064,"46182":-1,"46183":4067,"46184":-1,"46185":-1,"46186":-1,"46187":4064,"46188":-1,"46189":4063,"46190":-1,"46191":-1,"46192":4065,"46193":-1,"46194":-1,"46195":4063,"46196":-1,"46197":-1,"46198":4067,"46199":-1,"46200":-1,"46201":-1,"46202":-1,"46203":-1,"46204":-1,"46205":-1,"46206":-1,"46207":-1,"46208":-1,"46209":-1,"46210":-1,"46211":-1,"46212":-1,"46213":-1,"46214":-1,"46215":-1,"46216":-1,"46217":-1,"46218":-1,"46219":-1,"46220":-1,"46221":4066,"46222":0,"46223":-1,"46224":-1,"46225":-1,"46226":-1,"46227":-1,"46228":-1,"46229":-1,"46230":-1,"46231":-1,"46232":-1,"46233":-1,"46234":-1,"46235":4063,"46236":-1,"46237":-1,"46238":-1,"46239":-1,"46240":-1,"46241":-1,"46242":-1,"46243":-1,"46244":-1,"46245":-1,"46246":-1,"46247":-1,"46248":-1,"46249":-1,"46250":-1,"46251":-1,"46252":-1,"46253":-1,"46254":4068,"46255":-1,"46256":-1,"46257":-1,"46258":-1,"46259":-1,"46260":-1,"46261":-1,"46262":-1,"46263":-1,"46264":4067,"46265":-1,"46266":-1,"46267":-1,"46268":-1,"46269":-1,"46270":-1,"46271":-1,"46272":-1,"46273":-1,"46274":-1,"46275":-1,"46276":-1,"46277":-1,"46278":4064,"46279":-1,"46280":4065,"46281":-1,"46282":-1,"46283":-1,"46284":-1,"46285":-1,"46286":4067,"46287":-1,"46288":-1,"46289":-1,"46290":-1,"46291":-1,"46292":-1,"46293":-1,"46294":-1,"46295":-1,"46296":-1,"46297":-1,"46298":-1,"46299":-1,"46300":-1,"46301":-1,"46302":-1,"46303":-1,"46304":-1,"46305":-1,"46306":-1,"46307":-1,"46308":-1,"46309":-1,"46310":-1,"46311":4066,"46312":-1,"46313":-1,"46314":-1,"46315":-1,"46316":0,"46317":-1,"46318":-1,"46319":-1,"46320":-1,"46321":-1,"46322":-1,"46323":-1,"46324":-1,"46325":-1,"46326":-1,"46327":-1,"46328":4064,"46329":-1,"46330":-1,"46331":0,"46332":-1,"46333":-1,"46334":0,"46335":-1,"46336":-1,"46337":4064,"46338":-1,"46339":-1,"46340":-1,"46341":-1,"46342":-1,"46343":-1,"46344":-1,"46345":-1,"46346":-1,"46347":-1,"46348":4066,"46349":-1,"46350":-1,"46351":-1,"46352":-1,"46353":-1,"46354":-1,"46355":4066,"46356":-1,"46357":-1,"46358":-1,"46359":0,"46360":-1,"46361":-1,"46362":-1,"46363":-1,"46364":-1,"46365":-1,"46366":-1,"46367":-1,"46368":-1,"46369":-1,"46370":-1,"46371":-1,"46372":-1,"46373":4066,"46374":-1,"46375":0,"46376":-1,"46377":-1,"46378":-1,"46379":-1,"46380":-1,"46381":-1,"46382":-1,"46383":0,"46384":-1,"46385":-1,"46386":-1,"46387":4067,"46388":-1,"46389":-1,"46390":-1,"46391":-1,"46392":-1,"46393":-1,"46394":-1,"46395":-1,"46396":-1,"46397":-1,"46398":-1,"46399":4064,"46400":-1,"46401":-1,"46402":-1,"46403":-1,"46404":-1,"46405":-1,"46406":-1,"46407":-1,"46408":-1,"46409":-1,"46410":-1,"46411":-1,"46412":0,"46413":-1,"46414":-1,"46415":-1,"46416":-1,"46417":0,"46418":-1,"46419":4063,"46420":-1,"46421":-1,"46422":-1,"46423":-1,"46424":-1,"46425":-1,"46426":-1,"46427":-1,"46428":-1,"46429":-1,"46430":4067,"46431":-1,"46432":-1,"46433":-1,"46434":-1,"46435":-1,"46436":4065,"46437":-1,"46438":-1,"46439":-1,"46440":-1,"46441":-1,"46442":-1,"46443":-1,"46444":-1,"46445":4064,"46446":-1,"46447":4066,"46448":-1,"46449":-1,"46450":-1,"46451":-1,"46452":-1,"46453":4066,"46454":-1,"46455":-1,"46456":4064,"46457":-1,"46458":-1,"46459":-1,"46460":-1,"46461":-1,"46462":-1,"46463":-1,"46464":-1,"46465":-1,"46466":-1,"46467":-1,"46468":-1,"46469":4066,"46470":-1,"46471":-1,"46472":-1,"46473":-1,"46474":4068,"46475":-1,"46476":-1,"46477":-1,"46478":-1,"46479":-1,"46480":-1,"46481":-1,"46482":-1,"46483":-1,"46484":-1,"46485":0,"46486":-1,"46487":-1,"46488":-1,"46489":-1,"46490":-1,"46491":-1,"46492":-1,"46493":-1,"46494":-1,"46495":-1,"46496":-1,"46497":-1,"46498":-1,"46499":-1,"46500":-1,"46501":-1,"46502":-1,"46503":-1,"46504":-1,"46505":-1,"46506":-1,"46507":-1,"46508":-1,"46509":-1,"46510":-1,"46511":-1,"46512":-1,"46513":-1,"46514":-1,"46515":-1,"46516":-1,"46517":-1,"46518":-1,"46519":-1,"46520":-1,"46521":-1,"46522":-1,"46523":-1,"46524":-1,"46525":4067,"46526":-1,"46527":-1,"46528":-1,"46529":-1,"46530":-1,"46531":-1,"46532":-1,"46533":-1,"46534":-1,"46535":4066,"46536":-1,"46537":-1,"46538":-1,"46539":4064,"46540":-1,"46541":-1,"46542":-1,"46543":-1,"46544":-1,"46545":-1,"46546":-1,"46547":-1,"46548":4064,"46549":-1,"46550":-1,"46551":-1,"46552":-1,"46553":-1,"46554":4064,"46555":-1,"46556":4064,"46557":-1,"46558":4065,"46559":-1,"46560":-1,"46561":-1,"46562":-1,"46563":-1,"46564":-1,"46565":-1,"46566":4066,"46567":-1,"46568":-1,"46569":-1,"46570":-1,"46571":-1,"46572":-1,"46573":-1,"46574":-1,"46575":4063,"46576":-1,"46577":-1,"46578":-1,"46579":-1,"46580":-1,"46581":-1,"46582":-1,"46583":-1,"46584":-1,"46585":-1,"46586":-1,"46587":-1,"46588":-1,"46589":-1,"46590":-1,"46591":4067,"46592":-1,"46593":4068,"46594":-1,"46595":-1,"46596":-1,"46597":-1,"46598":-1,"46599":-1,"46600":-1,"46601":-1,"46602":-1,"46603":-1,"46604":-1,"46605":-1,"46606":4066,"46607":-1,"46608":0,"46609":-1,"46610":-1,"46611":-1,"46612":0,"46613":-1,"46614":-1,"46615":-1,"46616":-1,"46617":-1,"46618":-1,"46619":-1,"46620":-1,"46621":-1,"46622":-1,"46623":-1,"46624":-1,"46625":-1,"46626":-1,"46627":-1,"46628":4064,"46629":-1,"46630":-1,"46631":-1,"46632":-1,"46633":-1,"46634":-1,"46635":-1,"46636":-1,"46637":-1,"46638":-1,"46639":-1,"46640":-1,"46641":-1,"46642":-1,"46643":4063,"46644":4068,"46645":-1,"46646":4065,"46647":-1,"46648":-1,"46649":-1,"46650":-1,"46651":-1,"46652":-1,"46653":-1,"46654":-1,"46655":-1,"46656":-1,"46657":-1,"46658":-1,"46659":-1,"46660":4067,"46661":-1,"46662":-1,"46663":-1,"46664":4067,"46665":-1,"46666":-1,"46667":-1,"46668":-1,"46669":-1,"46670":-1,"46671":-1,"46672":-1,"46673":4067,"46674":-1,"46675":-1,"46676":-1,"46677":4063,"46678":-1,"46679":-1,"46680":4064,"46681":-1,"46682":-1,"46683":-1,"46684":-1,"46685":-1,"46686":-1,"46687":4066,"46688":-1,"46689":4068,"46690":-1,"46691":-1,"46692":-1,"46693":-1,"46694":-1,"46695":-1,"46696":-1,"46697":-1,"46698":4066,"46699":0,"46700":-1,"46701":-1,"46702":-1,"46703":-1,"46704":-1,"46705":-1,"46706":-1,"46707":-1,"46708":-1,"46709":-1,"46710":-1,"46711":-1,"46712":-1,"46713":-1,"46714":-1,"46715":-1,"46716":4065,"46717":-1,"46718":-1,"46719":-1,"46720":-1,"46721":-1,"46722":-1,"46723":-1,"46724":-1,"46725":-1,"46726":-1,"46727":-1,"46728":4066,"46729":-1,"46730":4064,"46731":-1,"46732":-1,"46733":-1,"46734":-1,"46735":-1,"46736":4067,"46737":-1,"46738":-1,"46739":0,"46740":-1,"46741":-1,"46742":-1,"46743":-1,"46744":-1,"46745":-1,"46746":-1,"46747":-1,"46748":-1,"46749":-1,"46750":-1,"46751":-1,"46752":-1,"46753":-1,"46754":-1,"46755":-1,"46756":-1,"46757":4065,"46758":-1,"46759":4063,"46760":-1,"46761":-1,"46762":4063,"46763":-1,"46764":-1,"46765":-1,"46766":4064,"46767":0,"46768":0,"46769":-1,"46770":-1,"46771":-1,"46772":-1,"46773":-1,"46774":-1,"46775":0,"46776":-1,"46777":-1,"46778":-1,"46779":-1,"46780":-1,"46781":-1,"46782":-1,"46783":-1,"46784":-1,"46785":4064,"46786":-1,"46787":-1,"46788":4067,"46789":-1,"46790":-1,"46791":-1,"46792":0,"46793":0,"46794":-1,"46795":-1,"46796":4066,"46797":-1,"46798":-1,"46799":-1,"46800":4067,"46801":-1,"46802":-1,"46803":-1,"46804":-1,"46805":-1,"46806":-1,"46807":-1,"46808":-1,"46809":-1,"46810":4063,"46811":-1,"46812":-1,"46813":-1,"46814":4064,"46815":-1,"46816":-1,"46817":-1,"46818":4065,"46819":-1,"46820":-1,"46821":-1,"46822":-1,"46823":-1,"46824":-1,"46825":-1,"46826":-1,"46827":-1,"46828":4068,"46829":-1,"46830":-1,"46831":4065,"46832":-1,"46833":-1,"46834":-1,"46835":-1,"46836":-1,"46837":-1,"46838":-1,"46839":-1,"46840":-1,"46841":-1,"46842":-1,"46843":-1,"46844":-1,"46845":-1,"46846":-1,"46847":-1,"46848":-1,"46849":4064,"46850":0,"46851":-1,"46852":-1,"46853":-1,"46854":-1,"46855":-1,"46856":-1,"46857":-1,"46858":-1,"46859":-1,"46860":-1,"46861":-1,"46862":-1,"46863":-1,"46864":-1,"46865":-1,"46866":4066,"46867":-1,"46868":-1,"46869":0,"46870":-1,"46871":-1,"46872":-1,"46873":-1,"46874":-1,"46875":-1,"46876":-1,"46877":4066,"46878":-1,"46879":-1,"46880":-1,"46881":-1,"46882":-1,"46883":-1,"46884":4065,"46885":-1,"46886":4065,"46887":-1,"46888":-1,"46889":-1,"46890":-1,"46891":4068,"46892":-1,"46893":-1,"46894":4064,"46895":-1,"46896":-1,"46897":-1,"46898":4063,"46899":4063,"46900":-1,"46901":-1,"46902":-1,"46903":-1,"46904":-1,"46905":-1,"46906":-1,"46907":-1,"46908":-1,"46909":-1,"46910":-1,"46911":-1,"46912":-1,"46913":4064,"46914":-1,"46915":-1,"46916":-1,"46917":-1,"46918":-1,"46919":-1,"46920":-1,"46921":-1,"46922":-1,"46923":0,"46924":-1,"46925":-1,"46926":-1,"46927":-1,"46928":-1,"46929":4067,"46930":-1,"46931":4064,"46932":-1,"46933":-1,"46934":-1,"46935":-1,"46936":-1,"46937":-1,"46938":-1,"46939":-1,"46940":-1,"46941":-1,"46942":-1,"46943":-1,"46944":-1,"46945":-1,"46946":-1,"46947":-1,"46948":-1,"46949":-1,"46950":4064,"46951":-1,"46952":-1,"46953":-1,"46954":-1,"46955":4065,"46956":4066,"46957":-1,"46958":-1,"46959":-1,"46960":-1,"46961":-1,"46962":-1,"46963":-1,"46964":-1,"46965":-1,"46966":-1,"46967":-1,"46968":-1,"46969":-1,"46970":-1,"46971":-1,"46972":-1,"46973":-1,"46974":-1,"46975":-1,"46976":-1,"46977":-1,"46978":-1,"46979":-1,"46980":4065,"46981":-1,"46982":4065,"46983":-1,"46984":-1,"46985":-1,"46986":4063,"46987":-1,"46988":4067,"46989":4067,"46990":-1,"46991":-1,"46992":4065,"46993":-1,"46994":-1,"46995":-1,"46996":-1,"46997":-1,"46998":-1,"46999":-1,"47000":-1,"47001":-1,"47002":-1,"47003":-1,"47004":-1,"47005":-1,"47006":-1,"47007":-1,"47008":-1,"47009":-1,"47010":-1,"47011":-1,"47012":-1,"47013":-1,"47014":-1,"47015":-1,"47016":-1,"47017":-1,"47018":-1,"47019":-1,"47020":-1,"47021":-1,"47022":4066,"47023":-1,"47024":-1,"47025":-1,"47026":4063,"47027":-1,"47028":-1,"47029":-1,"47030":-1,"47031":-1,"47032":-1,"47033":-1,"47034":-1,"47035":-1,"47036":-1,"47037":-1,"47038":0,"47039":-1,"47040":4064,"47041":-1,"47042":-1,"47043":4063,"47044":-1,"47045":-1,"47046":-1,"47047":-1,"47048":4063,"47049":-1,"47050":-1,"47051":-1,"47052":4063,"47053":-1,"47054":-1,"47055":-1,"47056":4066,"47057":-1,"47058":-1,"47059":-1,"47060":-1,"47061":-1,"47062":-1,"47063":-1,"47064":4066,"47065":-1,"47066":-1,"47067":-1,"47068":-1,"47069":-1,"47070":4068,"47071":-1,"47072":-1,"47073":-1,"47074":-1,"47075":-1,"47076":-1,"47077":-1,"47078":-1,"47079":-1,"47080":-1,"47081":-1,"47082":-1,"47083":-1,"47084":-1,"47085":-1,"47086":4064,"47087":0,"47088":-1,"47089":-1,"47090":-1,"47091":-1,"47092":-1,"47093":4064,"47094":-1,"47095":0,"47096":-1,"47097":-1,"47098":-1,"47099":-1,"47100":-1,"47101":-1,"47102":-1,"47103":-1,"47104":-1,"47105":-1,"47106":-1,"47107":-1,"47108":-1,"47109":-1,"47110":-1,"47111":-1,"47112":-1,"47113":-1,"47114":-1,"47115":-1,"47116":-1,"47117":4063,"47118":-1,"47119":-1,"47120":-1,"47121":-1,"47122":4066,"47123":4067,"47124":-1,"47125":4067,"47126":-1,"47127":-1,"47128":0,"47129":4065,"47130":-1,"47131":-1,"47132":-1,"47133":-1,"47134":4065,"47135":-1,"47136":-1,"47137":-1,"47138":-1,"47139":-1,"47140":-1,"47141":-1,"47142":-1,"47143":-1,"47144":-1,"47145":-1,"47146":-1,"47147":-1,"47148":-1,"47149":4066,"47150":-1,"47151":-1,"47152":-1,"47153":-1,"47154":4067,"47155":-1,"47156":-1,"47157":-1,"47158":-1,"47159":-1,"47160":-1,"47161":-1,"47162":-1,"47163":-1,"47164":-1,"47165":-1,"47166":-1,"47167":-1,"47168":-1,"47169":-1,"47170":-1,"47171":-1,"47172":-1,"47173":-1,"47174":-1,"47175":-1,"47176":-1,"47177":-1,"47178":-1,"47179":4065,"47180":-1,"47181":-1,"47182":-1,"47183":-1,"47184":-1,"47185":-1,"47186":-1,"47187":4068,"47188":4063,"47189":-1,"47190":4065,"47191":4068,"47192":-1,"47193":-1,"47194":-1,"47195":4065,"47196":-1,"47197":-1,"47198":4067,"47199":-1,"47200":4065,"47201":-1,"47202":-1,"47203":-1,"47204":-1,"47205":-1,"47206":4068,"47207":-1,"47208":-1,"47209":-1,"47210":-1,"47211":4067,"47212":-1,"47213":-1,"47214":-1,"47215":-1,"47216":-1,"47217":-1,"47218":-1,"47219":-1,"47220":-1,"47221":-1,"47222":-1,"47223":-1,"47224":-1,"47225":-1,"47226":-1,"47227":-1,"47228":-1,"47229":4065,"47230":-1,"47231":-1,"47232":4065,"47233":-1,"47234":-1,"47235":4064,"47236":-1,"47237":-1,"47238":-1,"47239":4064,"47240":-1,"47241":-1,"47242":-1,"47243":-1,"47244":-1,"47245":-1,"47246":-1,"47247":-1,"47248":-1,"47249":-1,"47250":-1,"47251":-1,"47252":4064,"47253":4067,"47254":-1,"47255":-1,"47256":-1,"47257":-1,"47258":-1,"47259":-1,"47260":-1,"47261":4066,"47262":4064,"47263":-1,"47264":-1,"47265":-1,"47266":-1,"47267":4066,"47268":-1,"47269":-1,"47270":-1,"47271":-1,"47272":-1,"47273":-1,"47274":-1,"47275":-1,"47276":-1,"47277":-1,"47278":-1,"47279":-1,"47280":0,"47281":-1,"47282":-1,"47283":-1,"47284":-1,"47285":-1,"47286":-1,"47287":-1,"47288":-1,"47289":-1,"47290":4063,"47291":-1,"47292":-1,"47293":-1,"47294":-1,"47295":-1,"47296":-1,"47297":-1,"47298":0,"47299":-1,"47300":-1,"47301":-1,"47302":-1,"47303":-1,"47304":-1,"47305":-1,"47306":-1,"47307":-1,"47308":-1,"47309":4066,"47310":-1,"47311":-1,"47312":-1,"47313":-1,"47314":4066,"47315":4067,"47316":-1,"47317":-1,"47318":-1,"47319":-1,"47320":-1,"47321":-1,"47322":-1,"47323":-1,"47324":-1,"47325":-1,"47326":-1,"47327":-1,"47328":-1,"47329":-1,"47330":-1,"47331":-1,"47332":4064,"47333":-1,"47334":-1,"47335":-1,"47336":4064,"47337":-1,"47338":-1,"47339":-1,"47340":4067,"47341":-1,"47342":-1,"47343":-1,"47344":-1,"47345":4063,"47346":4065,"47347":4063,"47348":0,"47349":-1,"47350":4066,"47351":-1,"47352":-1,"47353":-1,"47354":-1,"47355":-1,"47356":-1,"47357":-1,"47358":-1,"47359":4066,"47360":-1,"47361":4067,"47362":-1,"47363":4065,"47364":-1,"47365":-1,"47366":-1,"47367":4065,"47368":-1,"47369":-1,"47370":-1,"47371":4067,"47372":-1,"47373":-1,"47374":-1,"47375":-1,"47376":-1,"47377":4063,"47378":-1,"47379":-1,"47380":-1,"47381":-1,"47382":-1,"47383":-1,"47384":-1,"47385":-1,"47386":-1,"47387":-1,"47388":-1,"47389":-1,"47390":-1,"47391":-1,"47392":-1,"47393":-1,"47394":-1,"47395":-1,"47396":-1,"47397":-1,"47398":-1,"47399":4066,"47400":-1,"47401":-1,"47402":-1,"47403":-1,"47404":4065,"47405":-1,"47406":-1,"47407":4064,"47408":0,"47409":-1,"47410":-1,"47411":-1,"47412":-1,"47413":-1,"47414":-1,"47415":-1,"47416":-1,"47417":4064,"47418":4065,"47419":0,"47420":-1,"47421":-1,"47422":-1,"47423":-1,"47424":-1,"47425":-1,"47426":-1,"47427":4065,"47428":-1,"47429":-1,"47430":-1,"47431":-1,"47432":-1,"47433":-1,"47434":4063,"47435":-1,"47436":4067,"47437":-1,"47438":-1,"47439":-1,"47440":-1,"47441":-1,"47442":4064,"47443":-1,"47444":-1,"47445":-1,"47446":0,"47447":-1,"47448":-1,"47449":-1,"47450":-1,"47451":-1,"47452":-1,"47453":-1,"47454":-1,"47455":-1,"47456":-1,"47457":4067,"47458":0,"47459":-1,"47460":-1,"47461":-1,"47462":-1,"47463":4068,"47464":-1,"47465":-1,"47466":-1,"47467":4065,"47468":-1,"47469":-1,"47470":-1,"47471":-1,"47472":-1,"47473":-1,"47474":-1,"47475":0,"47476":-1,"47477":-1,"47478":-1,"47479":-1,"47480":-1,"47481":4066,"47482":-1,"47483":-1,"47484":-1,"47485":-1,"47486":-1,"47487":-1,"47488":-1,"47489":-1,"47490":-1,"47491":-1,"47492":-1,"47493":4063,"47494":-1,"47495":-1,"47496":-1,"47497":-1,"47498":4065,"47499":-1,"47500":-1,"47501":-1,"47502":-1,"47503":-1,"47504":-1,"47505":-1,"47506":-1,"47507":-1,"47508":-1,"47509":-1,"47510":0,"47511":4068,"47512":-1,"47513":-1,"47514":0,"47515":-1,"47516":-1,"47517":-1,"47518":-1,"47519":-1,"47520":-1,"47521":-1,"47522":-1,"47523":4065,"47524":-1,"47525":-1,"47526":-1,"47527":-1,"47528":-1,"47529":-1,"47530":-1,"47531":-1,"47532":-1,"47533":-1,"47534":-1,"47535":-1,"47536":-1,"47537":-1,"47538":-1,"47539":-1,"47540":-1,"47541":0,"47542":-1,"47543":-1,"47544":-1,"47545":-1,"47546":-1,"47547":4064,"47548":-1,"47549":-1,"47550":-1,"47551":-1,"47552":-1,"47553":-1,"47554":-1,"47555":-1,"47556":-1,"47557":-1,"47558":-1,"47559":-1,"47560":-1,"47561":-1,"47562":-1,"47563":-1,"47564":-1,"47565":-1,"47566":-1,"47567":-1,"47568":-1,"47569":-1,"47570":-1,"47571":-1,"47572":-1,"47573":-1,"47574":-1,"47575":4066,"47576":-1,"47577":-1,"47578":-1,"47579":-1,"47580":-1,"47581":-1,"47582":-1,"47583":-1,"47584":-1,"47585":-1,"47586":-1,"47587":-1,"47588":-1,"47589":-1,"47590":-1,"47591":-1,"47592":-1,"47593":-1,"47594":-1,"47595":-1,"47596":-1,"47597":4068,"47598":-1,"47599":-1,"47600":-1,"47601":-1,"47602":-1,"47603":4066,"47604":-1,"47605":-1,"47606":4067,"47607":-1,"47608":-1,"47609":-1,"47610":-1,"47611":0,"47612":-1,"47613":-1,"47614":-1,"47615":4066,"47616":-1,"47617":-1,"47618":-1,"47619":-1,"47620":-1,"47621":-1,"47622":-1,"47623":4066,"47624":-1,"47625":-1,"47626":-1,"47627":-1,"47628":-1,"47629":-1,"47630":-1,"47631":-1,"47632":-1,"47633":-1,"47634":-1,"47635":4066,"47636":-1,"47637":-1,"47638":0,"47639":-1,"47640":4067,"47641":-1,"47642":-1,"47643":-1,"47644":-1,"47645":-1,"47646":-1,"47647":-1,"47648":-1,"47649":-1,"47650":-1,"47651":-1,"47652":-1,"47653":4066,"47654":-1,"47655":-1,"47656":-1,"47657":-1,"47658":-1,"47659":-1,"47660":4066,"47661":-1,"47662":-1,"47663":-1,"47664":-1,"47665":-1,"47666":-1,"47667":4067,"47668":-1,"47669":-1,"47670":-1,"47671":-1,"47672":-1,"47673":-1,"47674":-1,"47675":-1,"47676":-1,"47677":-1,"47678":-1,"47679":-1,"47680":4066,"47681":-1,"47682":-1,"47683":-1,"47684":-1,"47685":-1,"47686":4064,"47687":-1,"47688":-1,"47689":-1,"47690":-1,"47691":-1,"47692":0,"47693":-1,"47694":-1,"47695":-1,"47696":-1,"47697":-1,"47698":-1,"47699":-1,"47700":-1,"47701":-1,"47702":-1,"47703":4065,"47704":-1,"47705":-1,"47706":-1,"47707":-1,"47708":-1,"47709":4066,"47710":4064,"47711":-1,"47712":-1,"47713":-1,"47714":-1,"47715":-1,"47716":-1,"47717":-1,"47718":-1,"47719":4064,"47720":-1,"47721":-1,"47722":-1,"47723":-1,"47724":-1,"47725":4066,"47726":-1,"47727":-1,"47728":-1,"47729":-1,"47730":-1,"47731":-1,"47732":-1,"47733":-1,"47734":-1,"47735":-1,"47736":-1,"47737":-1,"47738":-1,"47739":-1,"47740":-1,"47741":-1,"47742":-1,"47743":-1,"47744":-1,"47745":4067,"47746":-1,"47747":-1,"47748":-1,"47749":-1,"47750":-1,"47751":-1,"47752":-1,"47753":-1,"47754":-1,"47755":4067,"47756":4066,"47757":-1,"47758":-1,"47759":-1,"47760":-1,"47761":-1,"47762":-1,"47763":-1,"47764":-1,"47765":-1,"47766":-1,"47767":-1,"47768":-1,"47769":-1,"47770":-1,"47771":-1,"47772":-1,"47773":-1,"47774":-1,"47775":-1,"47776":-1,"47777":-1,"47778":-1,"47779":-1,"47780":-1,"47781":4066,"47782":-1,"47783":-1,"47784":-1,"47785":-1,"47786":-1,"47787":-1,"47788":-1,"47789":-1,"47790":-1,"47791":-1,"47792":-1,"47793":-1,"47794":-1,"47795":-1,"47796":-1,"47797":-1,"47798":-1,"47799":-1,"47800":-1,"47801":-1,"47802":0,"47803":-1,"47804":-1,"47805":-1,"47806":-1,"47807":-1,"47808":-1,"47809":-1,"47810":-1,"47811":-1,"47812":-1,"47813":-1,"47814":-1,"47815":-1,"47816":-1,"47817":-1,"47818":-1,"47819":-1,"47820":-1,"47821":-1,"47822":-1,"47823":-1,"47824":-1,"47825":-1,"47826":-1,"47827":-1,"47828":-1,"47829":-1,"47830":-1,"47831":-1,"47832":-1,"47833":4065,"47834":-1,"47835":-1,"47836":-1,"47837":-1,"47838":-1,"47839":-1,"47840":-1,"47841":-1,"47842":-1,"47843":-1,"47844":4063,"47845":-1,"47846":-1,"47847":0,"47848":-1,"47849":-1,"47850":-1,"47851":4064,"47852":-1,"47853":-1,"47854":-1,"47855":-1,"47856":4064,"47857":-1,"47858":-1,"47859":4064,"47860":-1,"47861":-1,"47862":-1,"47863":-1,"47864":4063,"47865":-1,"47866":-1,"47867":4063,"47868":-1,"47869":-1,"47870":-1,"47871":-1,"47872":-1,"47873":-1,"47874":-1,"47875":-1,"47876":-1,"47877":-1,"47878":4064,"47879":-1,"47880":-1,"47881":-1,"47882":-1,"47883":-1,"47884":4066,"47885":-1,"47886":-1,"47887":-1,"47888":4068,"47889":-1,"47890":-1,"47891":-1,"47892":-1,"47893":4067,"47894":-1,"47895":0,"47896":-1,"47897":-1,"47898":-1,"47899":-1,"47900":-1,"47901":-1,"47902":-1,"47903":-1,"47904":-1,"47905":-1,"47906":-1,"47907":0,"47908":-1,"47909":-1,"47910":-1,"47911":-1,"47912":-1,"47913":4064,"47914":-1,"47915":-1,"47916":-1,"47917":-1,"47918":-1,"47919":-1,"47920":-1,"47921":-1,"47922":-1,"47923":-1,"47924":-1,"47925":-1,"47926":-1,"47927":0,"47928":-1,"47929":4065,"47930":-1,"47931":-1,"47932":-1,"47933":-1,"47934":-1,"47935":-1,"47936":4065,"47937":-1,"47938":-1,"47939":-1,"47940":4065,"47941":-1,"47942":-1,"47943":-1,"47944":4063,"47945":-1,"47946":-1,"47947":-1,"47948":-1,"47949":-1,"47950":-1,"47951":-1,"47952":-1,"47953":-1,"47954":-1,"47955":-1,"47956":-1,"47957":-1,"47958":-1,"47959":-1,"47960":-1,"47961":-1,"47962":-1,"47963":-1,"47964":-1,"47965":-1,"47966":-1,"47967":-1,"47968":4063,"47969":-1,"47970":-1,"47971":-1,"47972":-1,"47973":-1,"47974":-1,"47975":-1,"47976":-1,"47977":4064,"47978":-1,"47979":4064,"47980":-1,"47981":-1,"47982":-1,"47983":-1,"47984":-1,"47985":4065,"47986":-1,"47987":-1,"47988":4065,"47989":-1,"47990":-1,"47991":-1,"47992":-1,"47993":-1,"47994":-1,"47995":-1,"47996":-1,"47997":-1,"47998":-1,"47999":-1,"48000":-1,"48001":-1,"48002":-1,"48003":4063,"48004":-1,"48005":-1,"48006":-1,"48007":-1,"48008":-1,"48009":-1,"48010":-1,"48011":-1,"48012":-1,"48013":-1,"48014":-1,"48015":-1,"48016":-1,"48017":-1,"48018":-1,"48019":-1,"48020":-1,"48021":-1,"48022":-1,"48023":-1,"48024":-1,"48025":-1,"48026":-1,"48027":-1,"48028":-1,"48029":-1,"48030":-1,"48031":-1,"48032":-1,"48033":-1,"48034":-1,"48035":-1,"48036":-1,"48037":-1,"48038":-1,"48039":-1,"48040":-1,"48041":-1,"48042":-1,"48043":-1,"48044":4063,"48045":4064,"48046":-1,"48047":-1,"48048":-1,"48049":-1,"48050":-1,"48051":-1,"48052":4066,"48053":-1,"48054":-1,"48055":-1,"48056":-1,"48057":0,"48058":-1,"48059":4067,"48060":-1,"48061":-1,"48062":-1,"48063":-1,"48064":-1,"48065":-1,"48066":-1,"48067":-1,"48068":-1,"48069":-1,"48070":-1,"48071":-1,"48072":-1,"48073":-1,"48074":-1,"48075":4065,"48076":-1,"48077":4065,"48078":-1,"48079":-1,"48080":-1,"48081":-1,"48082":4063,"48083":-1,"48084":-1,"48085":-1,"48086":-1,"48087":-1,"48088":-1,"48089":-1,"48090":-1,"48091":-1,"48092":4065,"48093":-1,"48094":-1,"48095":-1,"48096":-1,"48097":-1,"48098":-1,"48099":-1,"48100":-1,"48101":-1,"48102":-1,"48103":-1,"48104":-1,"48105":4066,"48106":-1,"48107":-1,"48108":-1,"48109":-1,"48110":-1,"48111":-1,"48112":0,"48113":-1,"48114":4064,"48115":-1,"48116":-1,"48117":-1,"48118":-1,"48119":-1,"48120":-1,"48121":4065,"48122":-1,"48123":-1,"48124":-1,"48125":-1,"48126":-1,"48127":-1,"48128":-1,"48129":-1,"48130":-1,"48131":-1,"48132":-1,"48133":-1,"48134":-1,"48135":-1,"48136":-1,"48137":-1,"48138":-1,"48139":4068,"48140":-1,"48141":4067,"48142":-1,"48143":4067,"48144":4065,"48145":-1,"48146":-1,"48147":-1,"48148":-1,"48149":-1,"48150":-1,"48151":-1,"48152":-1,"48153":-1,"48154":-1,"48155":-1,"48156":0,"48157":-1,"48158":-1,"48159":-1,"48160":-1,"48161":-1,"48162":-1,"48163":-1,"48164":-1,"48165":-1,"48166":-1,"48167":-1,"48168":-1,"48169":-1,"48170":-1,"48171":-1,"48172":-1,"48173":-1,"48174":-1,"48175":-1,"48176":-1,"48177":-1,"48178":-1,"48179":-1,"48180":4068,"48181":-1,"48182":-1,"48183":-1,"48184":-1,"48185":-1,"48186":-1,"48187":-1,"48188":-1,"48189":-1,"48190":-1,"48191":-1,"48192":4064,"48193":-1,"48194":-1,"48195":-1,"48196":-1,"48197":-1,"48198":-1,"48199":-1,"48200":-1,"48201":-1,"48202":-1,"48203":-1,"48204":-1,"48205":4066,"48206":-1,"48207":-1,"48208":-1,"48209":-1,"48210":-1,"48211":-1,"48212":-1,"48213":0,"48214":-1,"48215":-1,"48216":-1,"48217":-1,"48218":-1,"48219":-1,"48220":-1,"48221":-1,"48222":-1,"48223":-1,"48224":-1,"48225":-1,"48226":-1,"48227":-1,"48228":-1,"48229":4067,"48230":-1,"48231":-1,"48232":4064,"48233":-1,"48234":-1,"48235":-1,"48236":-1,"48237":-1,"48238":-1,"48239":-1,"48240":-1,"48241":-1,"48242":-1,"48243":-1,"48244":0,"48245":-1,"48246":-1,"48247":-1,"48248":-1,"48249":-1,"48250":4063,"48251":-1,"48252":-1,"48253":-1,"48254":-1,"48255":-1,"48256":-1,"48257":-1,"48258":-1,"48259":-1,"48260":4064,"48261":-1,"48262":-1,"48263":-1,"48264":-1,"48265":-1,"48266":-1,"48267":-1,"48268":-1,"48269":-1,"48270":-1,"48271":-1,"48272":-1,"48273":-1,"48274":-1,"48275":-1,"48276":-1,"48277":-1,"48278":-1,"48279":-1,"48280":-1,"48281":-1,"48282":-1,"48283":-1,"48284":-1,"48285":-1,"48286":-1,"48287":4065,"48288":-1,"48289":-1,"48290":-1,"48291":-1,"48292":-1,"48293":-1,"48294":-1,"48295":-1,"48296":-1,"48297":-1,"48298":-1,"48299":-1,"48300":0,"48301":-1,"48302":-1,"48303":-1,"48304":-1,"48305":-1,"48306":-1,"48307":-1,"48308":-1,"48309":-1,"48310":-1,"48311":-1,"48312":-1,"48313":-1,"48314":0,"48315":-1,"48316":-1,"48317":-1,"48318":-1,"48319":-1,"48320":-1,"48321":-1,"48322":-1,"48323":-1,"48324":-1,"48325":-1,"48326":-1,"48327":-1,"48328":-1,"48329":4066,"48330":-1,"48331":-1,"48332":-1,"48333":-1,"48334":-1,"48335":-1,"48336":-1,"48337":4066,"48338":4067,"48339":-1,"48340":-1,"48341":-1,"48342":0,"48343":-1,"48344":-1,"48345":4068,"48346":4064,"48347":-1,"48348":-1,"48349":-1,"48350":4067,"48351":0,"48352":-1,"48353":-1,"48354":-1,"48355":-1,"48356":4064,"48357":4064,"48358":-1,"48359":-1,"48360":-1,"48361":-1,"48362":-1,"48363":-1,"48364":-1,"48365":4067,"48366":-1,"48367":-1,"48368":-1,"48369":-1,"48370":-1,"48371":-1,"48372":-1,"48373":-1,"48374":-1,"48375":-1,"48376":-1,"48377":-1,"48378":-1,"48379":-1,"48380":-1,"48381":-1,"48382":-1,"48383":4064,"48384":4064,"48385":-1,"48386":-1,"48387":-1,"48388":-1,"48389":-1,"48390":-1,"48391":0,"48392":-1,"48393":-1,"48394":-1,"48395":-1,"48396":-1,"48397":-1,"48398":-1,"48399":-1,"48400":-1,"48401":-1,"48402":4068,"48403":-1,"48404":-1,"48405":-1,"48406":-1,"48407":-1,"48408":-1,"48409":-1,"48410":-1,"48411":-1,"48412":-1,"48413":-1,"48414":-1,"48415":-1,"48416":-1,"48417":4067,"48418":-1,"48419":-1,"48420":-1,"48421":4066,"48422":-1,"48423":4066,"48424":-1,"48425":-1,"48426":4066,"48427":-1,"48428":-1,"48429":-1,"48430":4068,"48431":-1,"48432":-1,"48433":-1,"48434":-1,"48435":-1,"48436":-1,"48437":-1,"48438":-1,"48439":-1,"48440":-1,"48441":-1,"48442":-1,"48443":4063,"48444":-1,"48445":-1,"48446":-1,"48447":-1,"48448":-1,"48449":-1,"48450":-1,"48451":-1,"48452":-1,"48453":-1,"48454":-1,"48455":-1,"48456":0,"48457":-1,"48458":-1,"48459":-1,"48460":-1,"48461":-1,"48462":-1,"48463":4064,"48464":4064,"48465":-1,"48466":-1,"48467":-1,"48468":-1,"48469":-1,"48470":-1,"48471":-1,"48472":-1,"48473":4064,"48474":-1,"48475":4063,"48476":-1,"48477":-1,"48478":0,"48479":-1,"48480":-1,"48481":-1,"48482":-1,"48483":-1,"48484":-1,"48485":-1,"48486":-1,"48487":0,"48488":-1,"48489":4066,"48490":-1,"48491":-1,"48492":-1,"48493":-1,"48494":-1,"48495":-1,"48496":-1,"48497":-1,"48498":-1,"48499":-1,"48500":-1,"48501":-1,"48502":-1,"48503":-1,"48504":-1,"48505":-1,"48506":-1,"48507":-1,"48508":-1,"48509":-1,"48510":-1,"48511":-1,"48512":-1,"48513":-1,"48514":0,"48515":-1,"48516":-1,"48517":0,"48518":-1,"48519":-1,"48520":-1,"48521":-1,"48522":-1,"48523":-1,"48524":-1,"48525":4067,"48526":-1,"48527":4067,"48528":-1,"48529":-1,"48530":-1,"48531":-1,"48532":4065,"48533":-1,"48534":-1,"48535":-1,"48536":-1,"48537":-1,"48538":-1,"48539":0,"48540":-1,"48541":0,"48542":4064,"48543":-1,"48544":-1,"48545":-1,"48546":-1,"48547":-1,"48548":-1,"48549":-1,"48550":-1,"48551":-1,"48552":-1,"48553":-1,"48554":-1,"48555":-1,"48556":-1,"48557":4064,"48558":-1,"48559":4067,"48560":-1,"48561":4068,"48562":-1,"48563":-1,"48564":4063,"48565":4067,"48566":0,"48567":-1,"48568":-1,"48569":-1,"48570":-1,"48571":-1,"48572":-1,"48573":-1,"48574":-1,"48575":-1,"48576":-1,"48577":-1,"48578":-1,"48579":-1,"48580":-1,"48581":4066,"48582":4067,"48583":-1,"48584":4067,"48585":4067,"48586":-1,"48587":-1,"48588":-1,"48589":-1,"48590":-1,"48591":-1,"48592":-1,"48593":-1,"48594":-1,"48595":-1,"48596":-1,"48597":-1,"48598":-1,"48599":4064,"48600":-1,"48601":4066,"48602":4065,"48603":-1,"48604":4066,"48605":-1,"48606":-1,"48607":-1,"48608":-1,"48609":4066,"48610":-1,"48611":-1,"48612":-1,"48613":4065,"48614":-1,"48615":-1,"48616":-1,"48617":-1,"48618":-1,"48619":-1,"48620":-1,"48621":-1,"48622":-1,"48623":4065,"48624":-1,"48625":-1,"48626":-1,"48627":-1,"48628":-1,"48629":-1,"48630":-1,"48631":-1,"48632":-1,"48633":4067,"48634":-1,"48635":4065,"48636":-1,"48637":-1,"48638":-1,"48639":4065,"48640":-1,"48641":4068,"48642":4064,"48643":-1,"48644":-1,"48645":-1,"48646":-1,"48647":-1,"48648":-1,"48649":-1,"48650":-1,"48651":-1,"48652":-1,"48653":-1,"48654":-1,"48655":-1,"48656":-1,"48657":-1,"48658":-1,"48659":-1,"48660":-1,"48661":4067,"48662":-1,"48663":-1,"48664":-1,"48665":-1,"48666":-1,"48667":0,"48668":-1,"48669":4065,"48670":-1,"48671":-1,"48672":-1,"48673":4065,"48674":-1,"48675":-1,"48676":-1,"48677":-1,"48678":-1,"48679":-1,"48680":-1,"48681":-1,"48682":-1,"48683":-1,"48684":-1,"48685":-1,"48686":-1,"48687":-1,"48688":-1,"48689":-1,"48690":-1,"48691":-1,"48692":-1,"48693":-1,"48694":-1,"48695":-1,"48696":-1,"48697":-1,"48698":-1,"48699":-1,"48700":-1,"48701":-1,"48702":4065,"48703":-1,"48704":-1,"48705":-1,"48706":-1,"48707":-1,"48708":-1,"48709":-1,"48710":-1,"48711":-1,"48712":-1,"48713":-1,"48714":-1,"48715":-1,"48716":-1,"48717":-1,"48718":-1,"48719":-1,"48720":-1,"48721":-1,"48722":4064,"48723":-1,"48724":-1,"48725":-1,"48726":-1,"48727":-1,"48728":-1,"48729":-1,"48730":-1,"48731":-1,"48732":-1,"48733":-1,"48734":-1,"48735":-1,"48736":-1,"48737":-1,"48738":-1,"48739":-1,"48740":-1,"48741":4063,"48742":-1,"48743":-1,"48744":-1,"48745":-1,"48746":-1,"48747":0,"48748":-1,"48749":-1,"48750":4067,"48751":-1,"48752":-1,"48753":-1,"48754":-1,"48755":-1,"48756":4065,"48757":-1,"48758":-1,"48759":-1,"48760":-1,"48761":-1,"48762":-1,"48763":-1,"48764":-1,"48765":4064,"48766":-1,"48767":-1,"48768":-1,"48769":-1,"48770":-1,"48771":-1,"48772":-1,"48773":-1,"48774":0,"48775":-1,"48776":-1,"48777":-1,"48778":-1,"48779":-1,"48780":-1,"48781":-1,"48782":-1,"48783":-1,"48784":-1,"48785":-1,"48786":-1,"48787":-1,"48788":-1,"48789":-1,"48790":-1,"48791":-1,"48792":-1,"48793":-1,"48794":-1,"48795":0,"48796":-1,"48797":-1,"48798":4067,"48799":-1,"48800":4066,"48801":-1,"48802":-1,"48803":-1,"48804":-1,"48805":-1,"48806":0,"48807":-1,"48808":-1,"48809":-1,"48810":-1,"48811":-1,"48812":4068,"48813":-1,"48814":-1,"48815":-1,"48816":4067,"48817":-1,"48818":-1,"48819":-1,"48820":-1,"48821":-1,"48822":-1,"48823":-1,"48824":-1,"48825":-1,"48826":-1,"48827":-1,"48828":-1,"48829":-1,"48830":-1,"48831":-1,"48832":-1,"48833":-1,"48834":-1,"48835":-1,"48836":4066,"48837":-1,"48838":-1,"48839":-1,"48840":4065,"48841":-1,"48842":-1,"48843":-1,"48844":4064,"48845":-1,"48846":-1,"48847":-1,"48848":-1,"48849":-1,"48850":0,"48851":4067,"48852":4064,"48853":-1,"48854":-1,"48855":-1,"48856":-1,"48857":-1,"48858":0,"48859":-1,"48860":-1,"48861":4065,"48862":4065,"48863":-1,"48864":-1,"48865":-1,"48866":-1,"48867":-1,"48868":4063,"48869":-1,"48870":-1,"48871":-1,"48872":-1,"48873":-1,"48874":-1,"48875":-1,"48876":4066,"48877":4065,"48878":4066,"48879":-1,"48880":4064,"48881":4063,"48882":-1,"48883":-1,"48884":-1,"48885":-1,"48886":4063,"48887":-1,"48888":-1,"48889":-1,"48890":-1,"48891":-1,"48892":-1,"48893":-1,"48894":-1,"48895":-1,"48896":-1,"48897":4063,"48898":0,"48899":-1,"48900":-1,"48901":-1,"48902":-1,"48903":-1,"48904":0,"48905":-1,"48906":-1,"48907":-1,"48908":-1,"48909":4066,"48910":-1,"48911":-1,"48912":-1,"48913":-1,"48914":-1,"48915":-1,"48916":-1,"48917":-1,"48918":4064,"48919":-1,"48920":4067,"48921":-1,"48922":-1,"48923":-1,"48924":-1,"48925":-1,"48926":4067,"48927":4067,"48928":-1,"48929":-1,"48930":-1,"48931":-1,"48932":-1,"48933":-1,"48934":-1,"48935":-1,"48936":-1,"48937":-1,"48938":-1,"48939":-1,"48940":-1,"48941":4064,"48942":-1,"48943":-1,"48944":-1,"48945":-1,"48946":0,"48947":-1,"48948":-1,"48949":-1,"48950":-1,"48951":-1,"48952":4068,"48953":-1,"48954":-1,"48955":-1,"48956":-1,"48957":-1,"48958":-1,"48959":-1,"48960":-1,"48961":-1,"48962":-1,"48963":4068,"48964":-1,"48965":-1,"48966":-1,"48967":-1,"48968":-1,"48969":-1,"48970":-1,"48971":-1,"48972":-1,"48973":-1,"48974":-1,"48975":-1,"48976":4068,"48977":-1,"48978":-1,"48979":0,"48980":-1,"48981":4063,"48982":-1,"48983":4065,"48984":-1,"48985":-1,"48986":-1,"48987":-1,"48988":-1,"48989":-1,"48990":-1,"48991":4066,"48992":-1,"48993":-1,"48994":-1,"48995":-1,"48996":-1,"48997":-1,"48998":-1,"48999":-1,"49000":-1,"49001":-1,"49002":-1,"49003":0,"49004":-1,"49005":-1,"49006":-1,"49007":-1,"49008":4067,"49009":-1,"49010":0,"49011":-1,"49012":-1,"49013":-1,"49014":-1,"49015":-1,"49016":-1,"49017":4067,"49018":-1,"49019":4065,"49020":-1,"49021":-1,"49022":-1,"49023":-1,"49024":-1,"49025":-1,"49026":4066,"49027":-1,"49028":4064,"49029":-1,"49030":-1,"49031":4066,"49032":-1,"49033":-1,"49034":4068,"49035":-1,"49036":4067,"49037":-1,"49038":-1,"49039":-1,"49040":-1,"49041":-1,"49042":-1,"49043":-1,"49044":-1,"49045":-1,"49046":-1,"49047":-1,"49048":-1,"49049":-1,"49050":-1,"49051":-1,"49052":-1,"49053":-1,"49054":-1,"49055":-1,"49056":-1,"49057":-1,"49058":-1,"49059":-1,"49060":-1,"49061":-1,"49062":0,"49063":-1,"49064":-1,"49065":-1,"49066":-1,"49067":-1,"49068":-1,"49069":-1,"49070":-1,"49071":4064,"49072":-1,"49073":-1,"49074":-1,"49075":-1,"49076":-1,"49077":0,"49078":-1,"49079":-1,"49080":-1,"49081":-1,"49082":4067,"49083":0,"49084":-1,"49085":-1,"49086":-1,"49087":-1,"49088":4063,"49089":-1,"49090":4065,"49091":-1,"49092":-1,"49093":-1,"49094":-1,"49095":-1,"49096":-1,"49097":-1,"49098":-1,"49099":-1,"49100":-1,"49101":-1,"49102":-1,"49103":4063,"49104":4065,"49105":-1,"49106":-1,"49107":-1,"49108":-1,"49109":-1,"49110":4063,"49111":-1,"49112":-1,"49113":-1,"49114":-1,"49115":-1,"49116":-1,"49117":-1,"49118":-1,"49119":-1,"49120":-1,"49121":-1,"49122":-1,"49123":-1,"49124":0,"49125":-1,"49126":-1,"49127":-1,"49128":-1,"49129":4066,"49130":-1,"49131":-1,"49132":-1,"49133":-1,"49134":-1,"49135":-1,"49136":-1,"49137":-1,"49138":-1,"49139":4068,"49140":-1,"49141":-1,"49142":-1,"49143":-1,"49144":-1,"49145":-1,"49146":-1,"49147":-1,"49148":-1,"49149":-1,"49150":-1,"49151":4064,"49152":-1,"49153":-1,"49154":-1,"49155":4065,"49156":-1,"49157":-1,"49158":-1,"49159":-1,"49160":-1,"49161":-1,"49162":-1,"49163":-1,"49164":-1,"49165":-1,"49166":-1,"49167":-1,"49168":-1,"49169":-1,"49170":-1,"49171":-1,"49172":-1,"49173":0,"49174":-1,"49175":4065,"49176":-1,"49177":-1,"49178":-1,"49179":-1,"49180":-1,"49181":4065,"49182":-1,"49183":4067,"49184":-1,"49185":-1,"49186":4066,"49187":-1,"49188":-1,"49189":-1,"49190":-1,"49191":-1,"49192":4066,"49193":4068,"49194":-1,"49195":4066,"49196":4066,"49197":-1,"49198":-1,"49199":-1,"49200":-1,"49201":-1,"49202":-1,"49203":-1,"49204":-1,"49205":-1,"49206":4063,"49207":-1,"49208":-1,"49209":-1,"49210":-1,"49211":4064,"49212":-1,"49213":-1,"49214":-1,"49215":4064,"49216":-1,"49217":-1,"49218":-1,"49219":-1,"49220":-1,"49221":-1,"49222":-1,"49223":-1,"49224":-1,"49225":-1,"49226":-1,"49227":-1,"49228":-1,"49229":-1,"49230":-1,"49231":4066,"49232":-1,"49233":-1,"49234":-1,"49235":-1,"49236":-1,"49237":-1,"49238":-1,"49239":4066,"49240":-1,"49241":-1,"49242":-1,"49243":-1,"49244":-1,"49245":-1,"49246":-1,"49247":-1,"49248":-1,"49249":4065,"49250":-1,"49251":-1,"49252":-1,"49253":-1,"49254":-1,"49255":4067,"49256":4066,"49257":4068,"49258":-1,"49259":-1,"49260":-1,"49261":-1,"49262":-1,"49263":4064,"49264":4064,"49265":4068,"49266":-1,"49267":-1,"49268":-1,"49269":-1,"49270":-1,"49271":-1,"49272":-1,"49273":-1,"49274":-1,"49275":-1,"49276":-1,"49277":-1,"49278":-1,"49279":-1,"49280":-1,"49281":4068,"49282":-1,"49283":-1,"49284":4065,"49285":-1,"49286":-1,"49287":4068,"49288":-1,"49289":-1,"49290":-1,"49291":-1,"49292":-1,"49293":-1,"49294":-1,"49295":-1,"49296":-1,"49297":-1,"49298":-1,"49299":-1,"49300":-1,"49301":-1,"49302":-1,"49303":-1,"49304":-1,"49305":-1,"49306":-1,"49307":-1,"49308":-1,"49309":0,"49310":-1,"49311":-1,"49312":-1,"49313":-1,"49314":-1,"49315":-1,"49316":-1,"49317":4065,"49318":-1,"49319":4066,"49320":-1,"49321":-1,"49322":-1,"49323":4065,"49324":-1,"49325":-1,"49326":-1,"49327":-1,"49328":-1,"49329":-1,"49330":-1,"49331":-1,"49332":-1,"49333":-1,"49334":-1,"49335":-1,"49336":4068,"49337":-1,"49338":-1,"49339":-1,"49340":-1,"49341":-1,"49342":-1,"49343":-1,"49344":4067,"49345":-1,"49346":-1,"49347":-1,"49348":-1,"49349":-1,"49350":-1,"49351":-1,"49352":-1,"49353":-1,"49354":-1,"49355":-1,"49356":-1,"49357":-1,"49358":-1,"49359":4067,"49360":-1,"49361":0,"49362":-1,"49363":-1,"49364":-1,"49365":-1,"49366":-1,"49367":-1,"49368":-1,"49369":-1,"49370":-1,"49371":-1,"49372":-1,"49373":-1,"49374":-1,"49375":-1,"49376":-1,"49377":-1,"49378":-1,"49379":0,"49380":-1,"49381":-1,"49382":-1,"49383":-1,"49384":-1,"49385":-1,"49386":-1,"49387":4066,"49388":-1,"49389":4063,"49390":-1,"49391":-1,"49392":-1,"49393":-1,"49394":-1,"49395":-1,"49396":-1,"49397":-1,"49398":-1,"49399":4067,"49400":-1,"49401":-1,"49402":-1,"49403":-1,"49404":-1,"49405":-1,"49406":-1,"49407":-1,"49408":-1,"49409":-1,"49410":-1,"49411":-1,"49412":-1,"49413":-1,"49414":-1,"49415":-1,"49416":-1,"49417":-1,"49418":-1,"49419":-1,"49420":-1,"49421":-1,"49422":-1,"49423":-1,"49424":-1,"49425":-1,"49426":-1,"49427":4067,"49428":-1,"49429":-1,"49430":-1,"49431":-1,"49432":-1,"49433":-1,"49434":4065,"49435":-1,"49436":-1,"49437":-1,"49438":-1,"49439":-1,"49440":-1,"49441":-1,"49442":-1,"49443":-1,"49444":-1,"49445":-1,"49446":0,"49447":4067,"49448":-1,"49449":4063,"49450":-1,"49451":-1,"49452":-1,"49453":-1,"49454":-1,"49455":-1,"49456":-1,"49457":-1,"49458":-1,"49459":4066,"49460":-1,"49461":-1,"49462":-1,"49463":0,"49464":-1,"49465":-1,"49466":-1,"49467":4064,"49468":4068,"49469":-1,"49470":-1,"49471":4065,"49472":-1,"49473":-1,"49474":-1,"49475":-1,"49476":-1,"49477":-1,"49478":-1,"49479":-1,"49480":4064,"49481":-1,"49482":4067,"49483":-1,"49484":-1,"49485":-1,"49486":-1,"49487":-1,"49488":4064,"49489":4064,"49490":-1,"49491":-1,"49492":-1,"49493":-1,"49494":-1,"49495":-1,"49496":-1,"49497":-1,"49498":-1,"49499":-1,"49500":-1,"49501":4068,"49502":-1,"49503":-1,"49504":-1,"49505":-1,"49506":4065,"49507":4064,"49508":-1,"49509":-1,"49510":-1,"49511":-1,"49512":-1,"49513":-1,"49514":-1,"49515":4063,"49516":-1,"49517":4064,"49518":-1,"49519":-1,"49520":-1,"49521":-1,"49522":0,"49523":-1,"49524":-1,"49525":-1,"49526":-1,"49527":-1,"49528":-1,"49529":-1,"49530":-1,"49531":-1,"49532":-1,"49533":-1,"49534":-1,"49535":-1,"49536":-1,"49537":-1,"49538":-1,"49539":-1,"49540":-1,"49541":-1,"49542":4065,"49543":-1,"49544":4066,"49545":-1,"49546":-1,"49547":4067,"49548":-1,"49549":-1,"49550":-1,"49551":-1,"49552":-1,"49553":4065,"49554":-1,"49555":-1,"49556":-1,"49557":-1,"49558":-1,"49559":-1,"49560":-1,"49561":-1,"49562":-1,"49563":-1,"49564":-1,"49565":-1,"49566":-1,"49567":-1,"49568":-1,"49569":-1,"49570":-1,"49571":-1,"49572":-1,"49573":-1,"49574":-1,"49575":-1,"49576":-1,"49577":-1,"49578":-1,"49579":-1,"49580":-1,"49581":-1,"49582":-1,"49583":-1,"49584":-1,"49585":-1,"49586":-1,"49587":-1,"49588":-1,"49589":-1,"49590":-1,"49591":-1,"49592":-1,"49593":-1,"49594":4067,"49595":-1,"49596":-1,"49597":-1,"49598":-1,"49599":-1,"49600":-1,"49601":-1,"49602":-1,"49603":-1,"49604":4065,"49605":-1,"49606":4065,"49607":-1,"49608":-1,"49609":-1,"49610":-1,"49611":-1,"49612":-1,"49613":-1,"49614":4064,"49615":-1,"49616":-1,"49617":-1,"49618":-1,"49619":-1,"49620":-1,"49621":-1,"49622":-1,"49623":-1,"49624":-1,"49625":-1,"49626":-1,"49627":-1,"49628":-1,"49629":-1,"49630":-1,"49631":4067,"49632":-1,"49633":-1,"49634":-1,"49635":-1,"49636":-1,"49637":-1,"49638":-1,"49639":-1,"49640":-1,"49641":4067,"49642":-1,"49643":-1,"49644":-1,"49645":-1,"49646":-1,"49647":-1,"49648":0,"49649":-1,"49650":0,"49651":-1,"49652":-1,"49653":-1,"49654":-1,"49655":-1,"49656":4066,"49657":-1,"49658":-1,"49659":4064,"49660":-1,"49661":-1,"49662":-1,"49663":-1,"49664":-1,"49665":-1,"49666":-1,"49667":-1,"49668":-1,"49669":-1,"49670":-1,"49671":-1,"49672":-1,"49673":-1,"49674":-1,"49675":-1,"49676":-1,"49677":-1,"49678":4064,"49679":-1,"49680":-1,"49681":-1,"49682":-1,"49683":4065,"49684":-1,"49685":-1,"49686":-1,"49687":-1,"49688":-1,"49689":-1,"49690":-1,"49691":-1,"49692":-1,"49693":4064,"49694":-1,"49695":-1,"49696":-1,"49697":-1,"49698":4066,"49699":-1,"49700":-1,"49701":-1,"49702":-1,"49703":-1,"49704":-1,"49705":4067,"49706":-1,"49707":-1,"49708":-1,"49709":-1,"49710":4066,"49711":-1,"49712":4067,"49713":-1,"49714":-1,"49715":-1,"49716":-1,"49717":-1,"49718":-1,"49719":-1,"49720":-1,"49721":-1,"49722":4066,"49723":-1,"49724":-1,"49725":-1,"49726":-1,"49727":-1,"49728":-1,"49729":-1,"49730":-1,"49731":-1,"49732":-1,"49733":-1,"49734":-1,"49735":-1,"49736":-1,"49737":-1,"49738":-1,"49739":-1,"49740":-1,"49741":4066,"49742":-1,"49743":4068,"49744":-1,"49745":-1,"49746":-1,"49747":-1,"49748":-1,"49749":-1,"49750":-1,"49751":-1,"49752":-1,"49753":-1,"49754":-1,"49755":-1,"49756":4066,"49757":-1,"49758":-1,"49759":4067,"49760":-1,"49761":-1,"49762":-1,"49763":-1,"49764":-1,"49765":4064,"49766":4063,"49767":-1,"49768":4063,"49769":-1,"49770":-1,"49771":-1,"49772":-1,"49773":-1,"49774":-1,"49775":-1,"49776":-1,"49777":4067,"49778":4067,"49779":-1,"49780":-1,"49781":-1,"49782":-1,"49783":-1,"49784":-1,"49785":-1,"49786":-1,"49787":-1,"49788":-1,"49789":-1,"49790":-1,"49791":-1,"49792":-1,"49793":-1,"49794":4065,"49795":-1,"49796":-1,"49797":4064,"49798":-1,"49799":-1,"49800":4067,"49801":-1,"49802":-1,"49803":-1,"49804":4065,"49805":-1,"49806":-1,"49807":4063,"49808":-1,"49809":-1,"49810":-1,"49811":-1,"49812":4065,"49813":4064,"49814":-1,"49815":4067,"49816":-1,"49817":-1,"49818":-1,"49819":-1,"49820":-1,"49821":-1,"49822":-1,"49823":-1,"49824":-1,"49825":-1,"49826":-1,"49827":-1,"49828":-1,"49829":-1,"49830":0,"49831":-1,"49832":-1,"49833":-1,"49834":-1,"49835":-1,"49836":0,"49837":-1,"49838":-1,"49839":0,"49840":-1,"49841":-1,"49842":4065,"49843":-1,"49844":-1,"49845":-1,"49846":-1,"49847":-1,"49848":-1,"49849":-1,"49850":-1,"49851":-1,"49852":-1,"49853":-1,"49854":-1,"49855":-1,"49856":-1,"49857":-1,"49858":-1,"49859":-1,"49860":-1,"49861":-1,"49862":-1,"49863":-1,"49864":-1,"49865":-1,"49866":-1,"49867":-1,"49868":-1,"49869":-1,"49870":-1,"49871":-1,"49872":4066,"49873":-1,"49874":-1,"49875":-1,"49876":-1,"49877":-1,"49878":-1,"49879":-1,"49880":-1,"49881":-1,"49882":-1,"49883":4068,"49884":-1,"49885":-1,"49886":-1,"49887":-1,"49888":4068,"49889":0,"49890":-1,"49891":-1,"49892":-1,"49893":-1,"49894":-1,"49895":-1,"49896":-1,"49897":-1,"49898":-1,"49899":-1,"49900":-1,"49901":-1,"49902":-1,"49903":-1,"49904":4067,"49905":-1,"49906":-1,"49907":-1,"49908":-1,"49909":4064,"49910":-1,"49911":-1,"49912":-1,"49913":-1,"49914":-1,"49915":-1,"49916":-1,"49917":-1,"49918":-1,"49919":-1,"49920":4065,"49921":-1,"49922":-1,"49923":-1,"49924":-1,"49925":-1,"49926":4064,"49927":-1,"49928":-1,"49929":-1,"49930":-1,"49931":-1,"49932":-1,"49933":-1,"49934":-1,"49935":-1,"49936":4067,"49937":-1,"49938":-1,"49939":-1,"49940":-1,"49941":0,"49942":-1,"49943":0,"49944":-1,"49945":-1,"49946":-1,"49947":-1,"49948":-1,"49949":-1,"49950":-1,"49951":-1,"49952":-1,"49953":-1,"49954":-1,"49955":-1,"49956":-1,"49957":-1,"49958":-1,"49959":-1,"49960":-1,"49961":-1,"49962":4065,"49963":-1,"49964":-1,"49965":-1,"49966":-1,"49967":-1,"49968":-1,"49969":-1,"49970":-1,"49971":-1,"49972":-1,"49973":-1,"49974":4068,"49975":-1,"49976":-1,"49977":-1,"49978":-1,"49979":-1,"49980":0,"49981":-1,"49982":0,"49983":-1,"49984":-1,"49985":4067,"49986":-1,"49987":-1,"49988":-1,"49989":-1,"49990":-1,"49991":-1,"49992":4064,"49993":-1,"49994":-1,"49995":-1,"49996":-1,"49997":-1,"49998":-1,"49999":-1,"50000":-1,"50001":-1,"50002":-1,"50003":-1,"50004":-1,"50005":4066,"50006":-1,"50007":4063,"50008":-1,"50009":-1,"50010":-1,"50011":-1,"50012":-1,"50013":-1,"50014":-1,"50015":-1,"50016":-1,"50017":-1,"50018":-1,"50019":4068,"50020":-1,"50021":-1,"50022":-1,"50023":-1,"50024":-1,"50025":-1,"50026":-1,"50027":-1,"50028":-1,"50029":-1,"50030":0,"50031":-1,"50032":4065,"50033":-1,"50034":-1,"50035":-1,"50036":-1,"50037":-1,"50038":4067,"50039":4065,"50040":-1,"50041":4066,"50042":4065,"50043":-1,"50044":-1,"50045":-1,"50046":-1,"50047":-1,"50048":-1,"50049":-1,"50050":-1,"50051":-1,"50052":-1,"50053":-1,"50054":-1,"50055":-1,"50056":-1,"50057":-1,"50058":-1,"50059":4066,"50060":-1,"50061":-1,"50062":-1,"50063":-1,"50064":-1,"50065":-1,"50066":-1,"50067":-1,"50068":-1,"50069":-1,"50070":-1,"50071":-1,"50072":-1,"50073":-1,"50074":-1,"50075":-1,"50076":-1,"50077":4066,"50078":-1,"50079":4065,"50080":4066,"50081":-1,"50082":-1,"50083":-1,"50084":-1,"50085":-1,"50086":-1,"50087":-1,"50088":-1,"50089":-1,"50090":-1,"50091":4068,"50092":-1,"50093":-1,"50094":-1,"50095":4063,"50096":-1,"50097":-1,"50098":-1,"50099":-1,"50100":-1,"50101":-1,"50102":-1,"50103":-1,"50104":-1,"50105":4068,"50106":-1,"50107":-1,"50108":-1,"50109":-1,"50110":4063,"50111":-1,"50112":4065,"50113":-1,"50114":-1,"50115":-1,"50116":-1,"50117":0,"50118":4066,"50119":-1,"50120":-1,"50121":-1,"50122":-1,"50123":4067,"50124":-1,"50125":-1,"50126":4066,"50127":4064,"50128":-1,"50129":-1,"50130":-1,"50131":-1,"50132":-1,"50133":-1,"50134":-1,"50135":-1,"50136":4065,"50137":-1,"50138":-1,"50139":-1,"50140":-1,"50141":-1,"50142":-1,"50143":-1,"50144":-1,"50145":-1,"50146":-1,"50147":-1,"50148":-1,"50149":-1,"50150":4068,"50151":-1,"50152":-1,"50153":-1,"50154":-1,"50155":0,"50156":-1,"50157":-1,"50158":-1,"50159":4066,"50160":-1,"50161":-1,"50162":-1,"50163":4063,"50164":4064,"50165":4066,"50166":-1,"50167":-1,"50168":-1,"50169":4067,"50170":-1,"50171":-1,"50172":-1,"50173":-1,"50174":-1,"50175":-1,"50176":-1,"50177":-1,"50178":-1,"50179":-1,"50180":-1,"50181":4067,"50182":-1,"50183":-1,"50184":-1,"50185":-1,"50186":4066,"50187":-1,"50188":-1,"50189":-1,"50190":-1,"50191":-1,"50192":-1,"50193":-1,"50194":-1,"50195":-1,"50196":-1,"50197":0,"50198":-1,"50199":-1,"50200":-1,"50201":4064,"50202":-1,"50203":-1,"50204":-1,"50205":-1,"50206":-1,"50207":-1,"50208":-1,"50209":-1,"50210":-1,"50211":-1,"50212":4066,"50213":-1,"50214":4066,"50215":-1,"50216":-1,"50217":-1,"50218":-1,"50219":4065,"50220":-1,"50221":-1,"50222":-1,"50223":-1,"50224":-1,"50225":-1,"50226":-1,"50227":-1,"50228":-1,"50229":-1,"50230":-1,"50231":-1,"50232":-1,"50233":-1,"50234":4065,"50235":-1,"50236":-1,"50237":-1,"50238":-1,"50239":-1,"50240":-1,"50241":-1,"50242":-1,"50243":4065,"50244":-1,"50245":-1,"50246":-1,"50247":-1,"50248":4066,"50249":-1,"50250":-1,"50251":-1,"50252":4065,"50253":-1,"50254":-1,"50255":-1,"50256":-1,"50257":-1,"50258":-1,"50259":-1,"50260":-1,"50261":-1,"50262":-1,"50263":-1,"50264":4068,"50265":-1,"50266":-1,"50267":4066,"50268":4065,"50269":-1,"50270":-1,"50271":-1,"50272":-1,"50273":-1,"50274":-1,"50275":-1,"50276":-1,"50277":-1,"50278":-1,"50279":-1,"50280":-1,"50281":-1,"50282":-1,"50283":-1,"50284":-1,"50285":-1,"50286":-1,"50287":-1,"50288":-1,"50289":-1,"50290":-1,"50291":-1,"50292":-1,"50293":0,"50294":-1,"50295":-1,"50296":-1,"50297":-1,"50298":-1,"50299":-1,"50300":4067,"50301":-1,"50302":-1,"50303":-1,"50304":4065,"50305":-1,"50306":-1,"50307":-1,"50308":-1,"50309":-1,"50310":0,"50311":-1,"50312":-1,"50313":-1,"50314":-1,"50315":-1,"50316":4064,"50317":-1,"50318":-1,"50319":-1,"50320":-1,"50321":-1,"50322":-1,"50323":-1,"50324":-1,"50325":-1,"50326":4063,"50327":4066,"50328":-1,"50329":4064,"50330":-1,"50331":-1,"50332":-1,"50333":-1,"50334":-1,"50335":-1,"50336":-1,"50337":-1,"50338":-1,"50339":-1,"50340":-1,"50341":-1,"50342":-1,"50343":-1,"50344":-1,"50345":-1,"50346":-1,"50347":-1,"50348":-1,"50349":-1,"50350":-1,"50351":-1,"50352":-1,"50353":-1,"50354":4066,"50355":-1,"50356":-1,"50357":-1,"50358":-1,"50359":-1,"50360":-1,"50361":-1,"50362":4067,"50363":-1,"50364":-1,"50365":-1,"50366":-1,"50367":-1,"50368":-1,"50369":-1,"50370":-1,"50371":4066,"50372":-1,"50373":-1,"50374":4064,"50375":-1,"50376":-1,"50377":4068,"50378":-1,"50379":-1,"50380":-1,"50381":-1,"50382":-1,"50383":4066,"50384":-1,"50385":-1,"50386":-1,"50387":-1,"50388":-1,"50389":-1,"50390":4066,"50391":-1,"50392":-1,"50393":-1,"50394":-1,"50395":-1,"50396":-1,"50397":-1,"50398":-1,"50399":-1,"50400":-1,"50401":-1,"50402":-1,"50403":-1,"50404":-1,"50405":-1,"50406":-1,"50407":-1,"50408":0,"50409":-1,"50410":-1,"50411":-1,"50412":-1,"50413":-1,"50414":4064,"50415":4065,"50416":-1,"50417":-1,"50418":-1,"50419":-1,"50420":-1,"50421":-1,"50422":0,"50423":-1,"50424":-1,"50425":-1,"50426":-1,"50427":-1,"50428":4063,"50429":-1,"50430":-1,"50431":-1,"50432":-1,"50433":4063,"50434":-1,"50435":-1,"50436":-1,"50437":-1,"50438":4066,"50439":-1,"50440":-1,"50441":-1,"50442":-1,"50443":-1,"50444":-1,"50445":4068,"50446":-1,"50447":-1,"50448":4067,"50449":-1,"50450":-1,"50451":-1,"50452":4067,"50453":-1,"50454":-1,"50455":-1,"50456":4067,"50457":-1,"50458":-1,"50459":-1,"50460":-1,"50461":-1,"50462":4064,"50463":-1,"50464":4066,"50465":-1,"50466":0,"50467":-1,"50468":-1,"50469":-1,"50470":-1,"50471":-1,"50472":4067,"50473":-1,"50474":-1,"50475":-1,"50476":-1,"50477":-1,"50478":-1,"50479":-1,"50480":-1,"50481":-1,"50482":-1,"50483":-1,"50484":-1,"50485":-1,"50486":-1,"50487":0,"50488":-1,"50489":-1,"50490":-1,"50491":-1,"50492":-1,"50493":-1,"50494":-1,"50495":-1,"50496":-1,"50497":-1,"50498":0,"50499":-1,"50500":-1,"50501":0,"50502":4067,"50503":-1,"50504":-1,"50505":-1,"50506":-1,"50507":4064,"50508":-1,"50509":-1,"50510":-1,"50511":-1,"50512":-1,"50513":-1,"50514":-1,"50515":-1,"50516":4064,"50517":4063,"50518":-1,"50519":-1,"50520":-1,"50521":-1,"50522":-1,"50523":-1,"50524":4063,"50525":-1,"50526":-1,"50527":-1,"50528":-1,"50529":-1,"50530":4068,"50531":-1,"50532":-1,"50533":-1,"50534":4067,"50535":-1,"50536":4063,"50537":-1,"50538":-1,"50539":-1,"50540":-1,"50541":-1,"50542":-1,"50543":-1,"50544":-1,"50545":-1,"50546":-1,"50547":-1,"50548":4067,"50549":-1,"50550":0,"50551":-1,"50552":4068,"50553":-1,"50554":-1,"50555":-1,"50556":-1,"50557":-1,"50558":-1,"50559":4063,"50560":4067,"50561":-1,"50562":-1,"50563":-1,"50564":-1,"50565":-1,"50566":4067,"50567":-1,"50568":-1,"50569":-1,"50570":-1,"50571":-1,"50572":-1,"50573":-1,"50574":4066,"50575":-1,"50576":-1,"50577":-1,"50578":-1,"50579":-1,"50580":-1,"50581":-1,"50582":-1,"50583":-1,"50584":-1,"50585":4065,"50586":-1,"50587":4064,"50588":4068,"50589":4066,"50590":-1,"50591":-1,"50592":-1,"50593":-1,"50594":-1,"50595":-1,"50596":-1,"50597":-1,"50598":-1,"50599":0,"50600":-1,"50601":-1,"50602":-1,"50603":-1,"50604":-1,"50605":-1,"50606":-1,"50607":-1,"50608":-1,"50609":-1,"50610":-1,"50611":0,"50612":-1,"50613":0,"50614":-1,"50615":4065,"50616":-1,"50617":-1,"50618":-1,"50619":0,"50620":-1,"50621":4067,"50622":-1,"50623":4065,"50624":-1,"50625":-1,"50626":-1,"50627":-1,"50628":4068,"50629":-1,"50630":-1,"50631":-1,"50632":-1,"50633":-1,"50634":0,"50635":4068,"50636":-1,"50637":-1,"50638":-1,"50639":-1,"50640":-1,"50641":-1,"50642":-1,"50643":-1,"50644":-1,"50645":-1,"50646":-1,"50647":0,"50648":-1,"50649":-1,"50650":-1,"50651":-1,"50652":-1,"50653":-1,"50654":-1,"50655":-1,"50656":-1,"50657":-1,"50658":-1,"50659":-1,"50660":-1,"50661":-1,"50662":-1,"50663":-1,"50664":4064,"50665":-1,"50666":-1,"50667":-1,"50668":4068,"50669":4065,"50670":-1,"50671":-1,"50672":4067,"50673":-1,"50674":4064,"50675":-1,"50676":-1,"50677":-1,"50678":-1,"50679":-1,"50680":-1,"50681":-1,"50682":-1,"50683":-1,"50684":-1,"50685":4067,"50686":-1,"50687":-1,"50688":-1,"50689":-1,"50690":-1,"50691":-1,"50692":-1,"50693":-1,"50694":-1,"50695":-1,"50696":-1,"50697":-1,"50698":-1,"50699":-1,"50700":-1,"50701":-1,"50702":4063,"50703":4068,"50704":-1,"50705":-1,"50706":-1,"50707":-1,"50708":-1,"50709":-1,"50710":-1,"50711":-1,"50712":-1,"50713":-1,"50714":-1,"50715":-1,"50716":-1,"50717":4063,"50718":-1,"50719":-1,"50720":-1,"50721":-1,"50722":-1,"50723":-1,"50724":-1,"50725":-1,"50726":4065,"50727":-1,"50728":-1,"50729":4064,"50730":-1,"50731":-1,"50732":-1,"50733":4067,"50734":4065,"50735":-1,"50736":-1,"50737":-1,"50738":4064,"50739":-1,"50740":-1,"50741":4065,"50742":4064,"50743":-1,"50744":4067,"50745":-1,"50746":-1,"50747":4063,"50748":-1,"50749":-1,"50750":-1,"50751":-1,"50752":-1,"50753":-1,"50754":4066,"50755":4064,"50756":-1,"50757":-1,"50758":-1,"50759":-1,"50760":-1,"50761":-1,"50762":-1,"50763":-1,"50764":-1,"50765":-1,"50766":-1,"50767":-1,"50768":-1,"50769":-1,"50770":-1,"50771":4065,"50772":0,"50773":4067,"50774":-1,"50775":-1,"50776":-1,"50777":-1,"50778":0,"50779":-1,"50780":-1,"50781":0,"50782":-1,"50783":4067,"50784":-1,"50785":-1,"50786":-1,"50787":-1,"50788":-1,"50789":-1,"50790":-1,"50791":-1,"50792":-1,"50793":-1,"50794":-1,"50795":-1,"50796":-1,"50797":-1,"50798":-1,"50799":-1,"50800":4066,"50801":-1,"50802":-1,"50803":-1,"50804":-1,"50805":-1,"50806":-1,"50807":-1,"50808":-1,"50809":-1,"50810":-1,"50811":4065,"50812":-1,"50813":-1,"50814":-1,"50815":-1,"50816":-1,"50817":-1,"50818":-1,"50819":-1,"50820":-1,"50821":-1,"50822":-1,"50823":-1,"50824":-1,"50825":-1,"50826":-1,"50827":-1,"50828":-1,"50829":-1,"50830":-1,"50831":-1,"50832":4064,"50833":-1,"50834":-1,"50835":-1,"50836":-1,"50837":-1,"50838":-1,"50839":-1,"50840":-1,"50841":-1,"50842":-1,"50843":-1,"50844":-1,"50845":-1,"50846":-1,"50847":-1,"50848":4067,"50849":-1,"50850":-1,"50851":4065,"50852":-1,"50853":-1,"50854":-1,"50855":-1,"50856":-1,"50857":-1,"50858":-1,"50859":-1,"50860":-1,"50861":-1,"50862":-1,"50863":-1,"50864":-1,"50865":-1,"50866":-1,"50867":-1,"50868":-1,"50869":-1,"50870":4065,"50871":-1,"50872":4066,"50873":-1,"50874":-1,"50875":-1,"50876":-1,"50877":-1,"50878":-1,"50879":-1,"50880":-1,"50881":-1,"50882":-1,"50883":-1,"50884":4066,"50885":-1,"50886":-1,"50887":-1,"50888":-1,"50889":-1,"50890":-1,"50891":-1,"50892":4066,"50893":-1,"50894":-1,"50895":-1,"50896":4067,"50897":-1,"50898":-1,"50899":-1,"50900":-1,"50901":-1,"50902":4064,"50903":-1,"50904":-1,"50905":-1,"50906":-1,"50907":-1,"50908":-1,"50909":-1,"50910":-1,"50911":-1,"50912":-1,"50913":-1,"50914":4067,"50915":-1,"50916":-1,"50917":-1,"50918":-1,"50919":-1,"50920":-1,"50921":-1,"50922":0,"50923":-1,"50924":-1,"50925":-1,"50926":-1,"50927":-1,"50928":-1,"50929":-1,"50930":-1,"50931":-1,"50932":-1,"50933":-1,"50934":-1,"50935":-1,"50936":-1,"50937":-1,"50938":-1,"50939":4065,"50940":-1,"50941":-1,"50942":-1,"50943":-1,"50944":-1,"50945":4067,"50946":-1,"50947":-1,"50948":-1,"50949":4067,"50950":-1,"50951":-1,"50952":-1,"50953":-1,"50954":-1,"50955":4066,"50956":-1,"50957":0,"50958":4067,"50959":-1,"50960":-1,"50961":-1,"50962":-1,"50963":-1,"50964":4066,"50965":0,"50966":-1,"50967":-1,"50968":-1,"50969":-1,"50970":-1,"50971":-1,"50972":-1,"50973":-1,"50974":-1,"50975":-1,"50976":-1,"50977":-1,"50978":-1,"50979":-1,"50980":-1,"50981":-1,"50982":-1,"50983":-1,"50984":-1,"50985":-1,"50986":-1,"50987":-1,"50988":-1,"50989":-1,"50990":-1,"50991":-1,"50992":-1,"50993":-1,"50994":-1,"50995":-1,"50996":4064,"50997":-1,"50998":-1,"50999":0,"51000":-1,"51001":-1,"51002":-1,"51003":-1,"51004":-1,"51005":0,"51006":-1,"51007":-1,"51008":-1,"51009":-1,"51010":-1,"51011":-1,"51012":4066,"51013":-1,"51014":-1,"51015":-1,"51016":-1,"51017":0,"51018":-1,"51019":-1,"51020":-1,"51021":-1,"51022":4064,"51023":-1,"51024":-1,"51025":-1,"51026":-1,"51027":-1,"51028":-1,"51029":4064,"51030":-1,"51031":-1,"51032":-1,"51033":-1,"51034":-1,"51035":-1,"51036":4066,"51037":-1,"51038":-1,"51039":-1,"51040":-1,"51041":-1,"51042":-1,"51043":-1,"51044":-1,"51045":-1,"51046":-1,"51047":-1,"51048":-1,"51049":-1,"51050":4064,"51051":-1,"51052":4063,"51053":-1,"51054":-1,"51055":-1,"51056":-1,"51057":-1,"51058":-1,"51059":-1,"51060":-1,"51061":-1,"51062":-1,"51063":-1,"51064":-1,"51065":-1,"51066":-1,"51067":4067,"51068":-1,"51069":0,"51070":-1,"51071":-1,"51072":-1,"51073":-1,"51074":4064,"51075":-1,"51076":-1,"51077":-1,"51078":-1,"51079":-1,"51080":-1,"51081":4065,"51082":4065,"51083":-1,"51084":-1,"51085":4065,"51086":-1,"51087":-1,"51088":-1,"51089":-1,"51090":-1,"51091":-1,"51092":-1,"51093":4064,"51094":-1,"51095":-1,"51096":4063,"51097":4068,"51098":-1,"51099":-1,"51100":-1,"51101":-1,"51102":-1,"51103":-1,"51104":-1,"51105":-1,"51106":-1,"51107":-1,"51108":-1,"51109":-1,"51110":-1,"51111":-1,"51112":-1,"51113":-1,"51114":-1,"51115":-1,"51116":-1,"51117":-1,"51118":-1,"51119":-1,"51120":-1,"51121":-1,"51122":-1,"51123":4066,"51124":-1,"51125":-1,"51126":4067,"51127":-1,"51128":4064,"51129":-1,"51130":-1,"51131":4068,"51132":-1,"51133":-1,"51134":-1,"51135":-1,"51136":-1,"51137":-1,"51138":-1,"51139":-1,"51140":-1,"51141":0,"51142":-1,"51143":-1,"51144":-1,"51145":-1,"51146":-1,"51147":-1,"51148":-1,"51149":-1,"51150":-1,"51151":-1,"51152":-1,"51153":-1,"51154":-1,"51155":-1,"51156":-1,"51157":-1,"51158":4067,"51159":-1,"51160":-1,"51161":-1,"51162":-1,"51163":-1,"51164":-1,"51165":-1,"51166":-1,"51167":-1,"51168":-1,"51169":4065,"51170":-1,"51171":-1,"51172":-1,"51173":-1,"51174":-1,"51175":-1,"51176":-1,"51177":-1,"51178":-1,"51179":-1,"51180":0,"51181":4065,"51182":4064,"51183":4065,"51184":-1,"51185":-1,"51186":-1,"51187":-1,"51188":-1,"51189":-1,"51190":-1,"51191":-1,"51192":4063,"51193":4067,"51194":-1,"51195":-1,"51196":-1,"51197":-1,"51198":-1,"51199":-1,"51200":-1,"51201":-1,"51202":-1,"51203":-1,"51204":-1,"51205":-1,"51206":-1,"51207":-1,"51208":-1,"51209":-1,"51210":-1,"51211":-1,"51212":-1,"51213":4068,"51214":-1,"51215":-1,"51216":-1,"51217":-1,"51218":-1,"51219":-1,"51220":-1,"51221":-1,"51222":-1,"51223":-1,"51224":4068,"51225":-1,"51226":-1,"51227":-1,"51228":-1,"51229":-1,"51230":-1,"51231":-1,"51232":-1,"51233":-1,"51234":-1,"51235":-1,"51236":-1,"51237":-1,"51238":4063,"51239":4067,"51240":-1,"51241":-1,"51242":-1,"51243":-1,"51244":-1,"51245":-1,"51246":-1,"51247":-1,"51248":4063,"51249":-1,"51250":-1,"51251":-1,"51252":-1,"51253":-1,"51254":4065,"51255":-1,"51256":-1,"51257":-1,"51258":-1,"51259":-1,"51260":-1,"51261":-1,"51262":4068,"51263":-1,"51264":-1,"51265":-1,"51266":-1,"51267":-1,"51268":-1,"51269":-1,"51270":4066,"51271":4064,"51272":-1,"51273":-1,"51274":-1,"51275":-1,"51276":-1,"51277":4066,"51278":-1,"51279":0,"51280":-1,"51281":4066,"51282":4065,"51283":-1,"51284":-1,"51285":-1,"51286":-1,"51287":-1,"51288":-1,"51289":-1,"51290":-1,"51291":4065,"51292":-1,"51293":-1,"51294":-1,"51295":4066,"51296":-1,"51297":-1,"51298":-1,"51299":-1,"51300":-1,"51301":4066,"51302":-1,"51303":-1,"51304":-1,"51305":-1,"51306":-1,"51307":-1,"51308":0,"51309":4063,"51310":-1,"51311":-1,"51312":-1,"51313":-1,"51314":-1,"51315":-1,"51316":-1,"51317":-1,"51318":-1,"51319":-1,"51320":-1,"51321":4066,"51322":-1,"51323":-1,"51324":-1,"51325":-1,"51326":-1,"51327":-1,"51328":-1,"51329":-1,"51330":-1,"51331":-1,"51332":-1,"51333":-1,"51334":-1,"51335":4064,"51336":-1,"51337":-1,"51338":-1,"51339":-1,"51340":4064,"51341":-1,"51342":-1,"51343":-1,"51344":-1,"51345":-1,"51346":4068,"51347":-1,"51348":-1,"51349":-1,"51350":-1,"51351":4064,"51352":-1,"51353":-1,"51354":4067,"51355":-1,"51356":-1,"51357":-1,"51358":-1,"51359":-1,"51360":4067,"51361":-1,"51362":-1,"51363":-1,"51364":-1,"51365":-1,"51366":-1,"51367":-1,"51368":-1,"51369":-1,"51370":-1,"51371":-1,"51372":-1,"51373":-1,"51374":-1,"51375":-1,"51376":4065,"51377":-1,"51378":-1,"51379":4066,"51380":-1,"51381":-1,"51382":4066,"51383":-1,"51384":-1,"51385":-1,"51386":-1,"51387":-1,"51388":-1,"51389":0,"51390":4064,"51391":-1,"51392":-1,"51393":0,"51394":-1,"51395":-1,"51396":-1,"51397":-1,"51398":-1,"51399":-1,"51400":-1,"51401":-1,"51402":-1,"51403":-1,"51404":-1,"51405":-1,"51406":-1,"51407":4065,"51408":-1,"51409":-1,"51410":-1,"51411":-1,"51412":4065,"51413":-1,"51414":-1,"51415":-1,"51416":-1,"51417":-1,"51418":-1,"51419":-1,"51420":-1,"51421":-1,"51422":-1,"51423":-1,"51424":-1,"51425":4068,"51426":-1,"51427":-1,"51428":-1,"51429":-1,"51430":-1,"51431":-1,"51432":4066,"51433":-1,"51434":-1,"51435":-1,"51436":-1,"51437":-1,"51438":-1,"51439":-1,"51440":-1,"51441":4063,"51442":-1,"51443":-1,"51444":-1,"51445":-1,"51446":-1,"51447":-1,"51448":-1,"51449":-1,"51450":-1,"51451":-1,"51452":-1,"51453":4065,"51454":-1,"51455":-1,"51456":-1,"51457":-1,"51458":-1,"51459":-1,"51460":-1,"51461":-1,"51462":4063,"51463":-1,"51464":-1,"51465":-1,"51466":-1,"51467":-1,"51468":-1,"51469":-1,"51470":-1,"51471":0,"51472":-1,"51473":-1,"51474":-1,"51475":-1,"51476":-1,"51477":-1,"51478":4064,"51479":-1,"51480":-1,"51481":-1,"51482":-1,"51483":4064,"51484":-1,"51485":-1,"51486":-1,"51487":-1,"51488":-1,"51489":-1,"51490":4068,"51491":-1,"51492":4065,"51493":-1,"51494":-1,"51495":-1,"51496":-1,"51497":-1,"51498":4066,"51499":-1,"51500":4068,"51501":-1,"51502":-1,"51503":-1,"51504":-1,"51505":-1,"51506":-1,"51507":-1,"51508":-1,"51509":-1,"51510":-1,"51511":-1,"51512":-1,"51513":-1,"51514":-1,"51515":-1,"51516":4063,"51517":-1,"51518":-1,"51519":-1,"51520":-1,"51521":-1,"51522":-1,"51523":-1,"51524":-1,"51525":-1,"51526":-1,"51527":-1,"51528":-1,"51529":-1,"51530":4065,"51531":-1,"51532":-1,"51533":-1,"51534":4065,"51535":-1,"51536":-1,"51537":-1,"51538":4065,"51539":-1,"51540":-1,"51541":4068,"51542":-1,"51543":-1,"51544":-1,"51545":-1,"51546":-1,"51547":4064,"51548":4065,"51549":-1,"51550":-1,"51551":-1,"51552":-1,"51553":-1,"51554":-1,"51555":0,"51556":4066,"51557":-1,"51558":-1,"51559":4065,"51560":-1,"51561":4063,"51562":-1,"51563":-1,"51564":-1,"51565":-1,"51566":-1,"51567":-1,"51568":4067,"51569":-1,"51570":-1,"51571":4067,"51572":-1,"51573":-1,"51574":-1,"51575":-1,"51576":-1,"51577":-1,"51578":-1,"51579":-1,"51580":-1,"51581":-1,"51582":-1,"51583":-1,"51584":-1,"51585":-1,"51586":-1,"51587":-1,"51588":0,"51589":-1,"51590":-1,"51591":-1,"51592":-1,"51593":-1,"51594":-1,"51595":-1,"51596":-1,"51597":-1,"51598":-1,"51599":-1,"51600":-1,"51601":-1,"51602":-1,"51603":-1,"51604":-1,"51605":-1,"51606":-1,"51607":-1,"51608":-1,"51609":4064,"51610":-1,"51611":-1,"51612":-1,"51613":-1,"51614":-1,"51615":4065,"51616":-1,"51617":-1,"51618":-1,"51619":-1,"51620":-1,"51621":-1,"51622":-1,"51623":-1,"51624":-1,"51625":-1,"51626":-1,"51627":-1,"51628":-1,"51629":-1,"51630":0,"51631":-1,"51632":-1,"51633":-1,"51634":0,"51635":-1,"51636":-1,"51637":-1,"51638":-1,"51639":-1,"51640":-1,"51641":-1,"51642":-1,"51643":-1,"51644":-1,"51645":-1,"51646":-1,"51647":-1,"51648":-1,"51649":-1,"51650":-1,"51651":-1,"51652":-1,"51653":-1,"51654":-1,"51655":-1,"51656":-1,"51657":-1,"51658":-1,"51659":-1,"51660":-1,"51661":-1,"51662":4067,"51663":-1,"51664":4066,"51665":4063,"51666":-1,"51667":-1,"51668":-1,"51669":-1,"51670":-1,"51671":-1,"51672":-1,"51673":-1,"51674":-1,"51675":-1,"51676":-1,"51677":-1,"51678":-1,"51679":4066,"51680":-1,"51681":-1,"51682":-1,"51683":-1,"51684":-1,"51685":-1,"51686":-1,"51687":-1,"51688":-1,"51689":-1,"51690":-1,"51691":4065,"51692":-1,"51693":4065,"51694":-1,"51695":-1,"51696":4066,"51697":-1,"51698":-1,"51699":-1,"51700":-1,"51701":-1,"51702":-1,"51703":-1,"51704":-1,"51705":-1,"51706":-1,"51707":-1,"51708":-1,"51709":-1,"51710":-1,"51711":-1,"51712":-1,"51713":4067,"51714":-1,"51715":-1,"51716":-1,"51717":-1,"51718":-1,"51719":-1,"51720":-1,"51721":-1,"51722":4067,"51723":-1,"51724":-1,"51725":-1,"51726":-1,"51727":-1,"51728":-1,"51729":-1,"51730":-1,"51731":-1,"51732":4066,"51733":-1,"51734":-1,"51735":4067,"51736":-1,"51737":-1,"51738":-1,"51739":-1,"51740":-1,"51741":-1,"51742":-1,"51743":4066,"51744":4063,"51745":-1,"51746":4065,"51747":-1,"51748":-1,"51749":-1,"51750":-1,"51751":4066,"51752":0,"51753":-1,"51754":-1,"51755":-1,"51756":4067,"51757":-1,"51758":-1,"51759":-1,"51760":4067,"51761":-1,"51762":-1,"51763":-1,"51764":-1,"51765":-1,"51766":-1,"51767":4063,"51768":0,"51769":-1,"51770":-1,"51771":-1,"51772":-1,"51773":-1,"51774":-1,"51775":4068,"51776":-1,"51777":-1,"51778":-1,"51779":-1,"51780":4064,"51781":-1,"51782":-1,"51783":4063,"51784":-1,"51785":-1,"51786":4064,"51787":-1,"51788":-1,"51789":-1,"51790":-1,"51791":-1,"51792":-1,"51793":-1,"51794":-1,"51795":-1,"51796":-1,"51797":-1,"51798":-1,"51799":0,"51800":4063,"51801":-1,"51802":-1,"51803":4065,"51804":-1,"51805":-1,"51806":-1,"51807":-1,"51808":4066,"51809":-1,"51810":-1,"51811":-1,"51812":-1,"51813":-1,"51814":-1,"51815":-1,"51816":-1,"51817":-1,"51818":4063,"51819":0,"51820":-1,"51821":-1,"51822":-1,"51823":4066,"51824":4064,"51825":-1,"51826":-1,"51827":-1,"51828":-1,"51829":0,"51830":-1,"51831":-1,"51832":-1,"51833":-1,"51834":4067,"51835":-1,"51836":-1,"51837":-1,"51838":-1,"51839":-1,"51840":-1,"51841":-1,"51842":-1,"51843":0,"51844":-1,"51845":-1,"51846":-1,"51847":-1,"51848":-1,"51849":-1,"51850":-1,"51851":-1,"51852":-1,"51853":-1,"51854":-1,"51855":-1,"51856":-1,"51857":-1,"51858":4066,"51859":-1,"51860":-1,"51861":-1,"51862":-1,"51863":-1,"51864":-1,"51865":-1,"51866":-1,"51867":-1,"51868":-1,"51869":-1,"51870":-1,"51871":-1,"51872":0,"51873":-1,"51874":-1,"51875":-1,"51876":-1,"51877":-1,"51878":-1,"51879":-1,"51880":-1,"51881":-1,"51882":-1,"51883":-1,"51884":-1,"51885":-1,"51886":-1,"51887":-1,"51888":-1,"51889":-1,"51890":-1,"51891":-1,"51892":-1,"51893":4065,"51894":-1,"51895":-1,"51896":-1,"51897":-1,"51898":-1,"51899":-1,"51900":-1,"51901":-1,"51902":-1,"51903":-1,"51904":-1,"51905":4067,"51906":-1,"51907":-1,"51908":0,"51909":-1,"51910":-1,"51911":-1,"51912":-1,"51913":4065,"51914":-1,"51915":-1,"51916":-1,"51917":4067,"51918":4065,"51919":-1,"51920":-1,"51921":-1,"51922":-1,"51923":-1,"51924":-1,"51925":4065,"51926":4067,"51927":-1,"51928":-1,"51929":-1,"51930":-1,"51931":-1,"51932":-1,"51933":-1,"51934":-1,"51935":-1,"51936":4064,"51937":4064,"51938":4067,"51939":-1,"51940":-1,"51941":-1,"51942":-1,"51943":-1,"51944":-1,"51945":-1,"51946":-1,"51947":-1,"51948":-1,"51949":-1,"51950":-1,"51951":-1,"51952":-1,"51953":4065,"51954":-1,"51955":-1,"51956":-1,"51957":4065,"51958":-1,"51959":-1,"51960":-1,"51961":-1,"51962":4067,"51963":-1,"51964":-1,"51965":-1,"51966":-1,"51967":-1,"51968":4068,"51969":-1,"51970":-1,"51971":-1,"51972":4064,"51973":-1,"51974":-1,"51975":-1,"51976":-1,"51977":-1,"51978":-1,"51979":-1,"51980":-1,"51981":0,"51982":-1,"51983":4068,"51984":-1,"51985":-1,"51986":-1,"51987":-1,"51988":-1,"51989":-1,"51990":-1,"51991":4065,"51992":-1,"51993":-1,"51994":4065,"51995":-1,"51996":-1,"51997":-1,"51998":-1,"51999":-1,"52000":-1,"52001":-1,"52002":-1,"52003":0,"52004":-1,"52005":0,"52006":-1,"52007":0,"52008":-1,"52009":-1,"52010":-1,"52011":-1,"52012":-1,"52013":-1,"52014":-1,"52015":-1,"52016":-1,"52017":-1,"52018":4067,"52019":-1,"52020":-1,"52021":-1,"52022":-1,"52023":-1,"52024":-1,"52025":-1,"52026":4068,"52027":-1,"52028":-1,"52029":-1,"52030":-1,"52031":-1,"52032":-1,"52033":-1,"52034":-1,"52035":-1,"52036":4066,"52037":-1,"52038":0,"52039":-1,"52040":4066,"52041":-1,"52042":4066,"52043":-1,"52044":-1,"52045":4067,"52046":-1,"52047":-1,"52048":4066,"52049":-1,"52050":-1,"52051":-1,"52052":-1,"52053":-1,"52054":-1,"52055":-1,"52056":-1,"52057":-1,"52058":-1,"52059":-1,"52060":4068,"52061":4064,"52062":-1,"52063":-1,"52064":4067,"52065":-1,"52066":-1,"52067":-1,"52068":-1,"52069":-1,"52070":-1,"52071":-1,"52072":-1,"52073":-1,"52074":-1,"52075":-1,"52076":-1,"52077":-1,"52078":-1,"52079":-1,"52080":-1,"52081":-1,"52082":-1,"52083":-1,"52084":-1,"52085":-1,"52086":-1,"52087":-1,"52088":4067,"52089":0,"52090":-1,"52091":-1,"52092":-1,"52093":-1,"52094":-1,"52095":-1,"52096":-1,"52097":-1,"52098":-1,"52099":-1,"52100":-1,"52101":-1,"52102":0,"52103":-1,"52104":4065,"52105":4066,"52106":-1,"52107":-1,"52108":-1,"52109":-1,"52110":4068,"52111":-1,"52112":-1,"52113":-1,"52114":-1,"52115":-1,"52116":-1,"52117":-1,"52118":-1,"52119":-1,"52120":-1,"52121":-1,"52122":-1,"52123":-1,"52124":-1,"52125":-1,"52126":-1,"52127":-1,"52128":-1,"52129":-1,"52130":-1,"52131":-1,"52132":-1,"52133":-1,"52134":-1,"52135":-1,"52136":-1,"52137":-1,"52138":-1,"52139":4064,"52140":-1,"52141":-1,"52142":-1,"52143":-1,"52144":-1,"52145":-1,"52146":-1,"52147":-1,"52148":-1,"52149":-1,"52150":4065,"52151":-1,"52152":-1,"52153":-1,"52154":-1,"52155":4063,"52156":-1,"52157":-1,"52158":-1,"52159":-1,"52160":-1,"52161":-1,"52162":-1,"52163":-1,"52164":-1,"52165":-1,"52166":-1,"52167":-1,"52168":4067,"52169":-1,"52170":-1,"52171":4066,"52172":-1,"52173":-1,"52174":-1,"52175":-1,"52176":-1,"52177":4065,"52178":-1,"52179":-1,"52180":-1,"52181":-1,"52182":-1,"52183":-1,"52184":-1,"52185":-1,"52186":-1,"52187":-1,"52188":-1,"52189":-1,"52190":-1,"52191":-1,"52192":-1,"52193":-1,"52194":-1,"52195":-1,"52196":4065,"52197":-1,"52198":-1,"52199":-1,"52200":-1,"52201":-1,"52202":-1,"52203":0,"52204":-1,"52205":-1,"52206":0,"52207":-1,"52208":0,"52209":-1,"52210":-1,"52211":-1,"52212":-1,"52213":-1,"52214":-1,"52215":-1,"52216":-1,"52217":-1,"52218":-1,"52219":-1,"52220":-1,"52221":4063,"52222":-1,"52223":-1,"52224":4067,"52225":-1,"52226":-1,"52227":-1,"52228":0,"52229":4068,"52230":-1,"52231":-1,"52232":-1,"52233":-1,"52234":4066,"52235":-1,"52236":-1,"52237":-1,"52238":-1,"52239":-1,"52240":-1,"52241":-1,"52242":4063,"52243":-1,"52244":4067,"52245":-1,"52246":-1,"52247":0,"52248":-1,"52249":-1,"52250":-1,"52251":-1,"52252":-1,"52253":-1,"52254":4064,"52255":-1,"52256":4067,"52257":-1,"52258":-1,"52259":-1,"52260":-1,"52261":4064,"52262":-1,"52263":0,"52264":-1,"52265":-1,"52266":-1,"52267":4066,"52268":-1,"52269":-1,"52270":-1,"52271":4066,"52272":-1,"52273":-1,"52274":-1,"52275":-1,"52276":-1,"52277":-1,"52278":-1,"52279":-1,"52280":4064,"52281":4068,"52282":-1,"52283":-1,"52284":4066,"52285":4068,"52286":-1,"52287":-1,"52288":-1,"52289":-1,"52290":-1,"52291":-1,"52292":-1,"52293":-1,"52294":-1,"52295":4065,"52296":4068,"52297":-1,"52298":-1,"52299":-1,"52300":-1,"52301":-1,"52302":0,"52303":-1,"52304":-1,"52305":-1,"52306":-1,"52307":-1,"52308":-1,"52309":-1,"52310":4064,"52311":-1,"52312":-1,"52313":-1,"52314":-1,"52315":-1,"52316":-1,"52317":-1,"52318":-1,"52319":-1,"52320":-1,"52321":-1,"52322":-1,"52323":-1,"52324":-1,"52325":0,"52326":-1,"52327":4065,"52328":-1,"52329":-1,"52330":4064,"52331":-1,"52332":-1,"52333":4066,"52334":4065,"52335":-1,"52336":-1,"52337":4065,"52338":-1,"52339":-1,"52340":-1,"52341":-1,"52342":-1,"52343":4067,"52344":4066,"52345":-1,"52346":-1,"52347":-1,"52348":-1,"52349":-1,"52350":-1,"52351":-1,"52352":-1,"52353":-1,"52354":4066,"52355":-1,"52356":-1,"52357":-1,"52358":-1,"52359":-1,"52360":-1,"52361":-1,"52362":-1,"52363":-1,"52364":-1,"52365":-1,"52366":-1,"52367":-1,"52368":-1,"52369":-1,"52370":-1,"52371":-1,"52372":0,"52373":4065,"52374":-1,"52375":4063,"52376":4067,"52377":-1,"52378":-1,"52379":-1,"52380":-1,"52381":-1,"52382":-1,"52383":4066,"52384":-1,"52385":-1,"52386":-1,"52387":-1,"52388":-1,"52389":-1,"52390":4068,"52391":-1,"52392":-1,"52393":-1,"52394":-1,"52395":-1,"52396":-1,"52397":-1,"52398":0,"52399":-1,"52400":-1,"52401":-1,"52402":-1,"52403":-1,"52404":-1,"52405":-1,"52406":-1,"52407":4068,"52408":4064,"52409":-1,"52410":-1,"52411":-1,"52412":-1,"52413":-1,"52414":-1,"52415":4067,"52416":-1,"52417":4068,"52418":4066,"52419":-1,"52420":-1,"52421":0,"52422":4065,"52423":-1,"52424":-1,"52425":4066,"52426":-1,"52427":4064,"52428":-1,"52429":-1,"52430":4067,"52431":-1,"52432":-1,"52433":-1,"52434":-1,"52435":0,"52436":-1,"52437":-1,"52438":-1,"52439":-1,"52440":4063,"52441":0,"52442":-1,"52443":-1,"52444":4067,"52445":-1,"52446":-1,"52447":4067,"52448":-1,"52449":-1,"52450":-1,"52451":4067,"52452":-1,"52453":-1,"52454":-1,"52455":-1,"52456":-1,"52457":-1,"52458":-1,"52459":-1,"52460":-1,"52461":-1,"52462":-1,"52463":-1,"52464":-1,"52465":-1,"52466":4065,"52467":-1,"52468":4066,"52469":-1,"52470":-1,"52471":-1,"52472":-1,"52473":-1,"52474":-1,"52475":-1,"52476":-1,"52477":-1,"52478":-1,"52479":-1,"52480":-1,"52481":-1,"52482":-1,"52483":-1,"52484":-1,"52485":-1,"52486":-1,"52487":-1,"52488":-1,"52489":4065,"52490":-1,"52491":-1,"52492":-1,"52493":-1,"52494":-1,"52495":0,"52496":-1,"52497":4063,"52498":-1,"52499":-1,"52500":-1,"52501":-1,"52502":-1,"52503":-1,"52504":-1,"52505":-1,"52506":-1,"52507":-1,"52508":-1,"52509":-1,"52510":-1,"52511":-1,"52512":-1,"52513":-1,"52514":-1,"52515":-1,"52516":-1,"52517":-1,"52518":-1,"52519":-1,"52520":-1,"52521":-1,"52522":-1,"52523":-1,"52524":-1,"52525":4064,"52526":4064,"52527":-1,"52528":-1,"52529":-1,"52530":-1,"52531":-1,"52532":-1,"52533":-1,"52534":-1,"52535":-1,"52536":-1,"52537":4065,"52538":-1,"52539":-1,"52540":-1,"52541":-1,"52542":-1,"52543":-1,"52544":-1,"52545":0,"52546":-1,"52547":-1,"52548":-1,"52549":4065,"52550":-1,"52551":-1,"52552":-1,"52553":-1,"52554":-1,"52555":-1,"52556":-1,"52557":4068,"52558":4066,"52559":-1,"52560":-1,"52561":-1,"52562":-1,"52563":-1,"52564":-1,"52565":-1,"52566":4066,"52567":4066,"52568":-1,"52569":4064,"52570":-1,"52571":-1,"52572":-1,"52573":4063,"52574":-1,"52575":-1,"52576":-1,"52577":-1,"52578":-1,"52579":-1,"52580":-1,"52581":-1,"52582":-1,"52583":-1,"52584":-1,"52585":-1,"52586":-1,"52587":-1,"52588":-1,"52589":-1,"52590":-1,"52591":-1,"52592":-1,"52593":4065,"52594":-1,"52595":-1,"52596":4066,"52597":-1,"52598":-1,"52599":-1,"52600":4065,"52601":-1,"52602":-1,"52603":4065,"52604":4068,"52605":-1,"52606":-1,"52607":-1,"52608":-1,"52609":-1,"52610":-1,"52611":4066,"52612":-1,"52613":0,"52614":-1,"52615":0,"52616":-1,"52617":-1,"52618":4068,"52619":-1,"52620":-1,"52621":-1,"52622":-1,"52623":-1,"52624":-1,"52625":4064,"52626":-1,"52627":-1,"52628":-1,"52629":-1,"52630":-1,"52631":-1,"52632":-1,"52633":-1,"52634":-1,"52635":-1,"52636":-1,"52637":-1,"52638":-1,"52639":-1,"52640":-1,"52641":-1,"52642":-1,"52643":4063,"52644":-1,"52645":-1,"52646":-1,"52647":-1,"52648":-1,"52649":-1,"52650":-1,"52651":-1,"52652":4067,"52653":-1,"52654":-1,"52655":-1,"52656":-1,"52657":-1,"52658":-1,"52659":4065,"52660":-1,"52661":-1,"52662":-1,"52663":4068,"52664":-1,"52665":-1,"52666":-1,"52667":-1,"52668":-1,"52669":-1,"52670":-1,"52671":4063,"52672":4064,"52673":-1,"52674":-1,"52675":-1,"52676":-1,"52677":-1,"52678":-1,"52679":-1,"52680":-1,"52681":-1,"52682":-1,"52683":-1,"52684":4066,"52685":-1,"52686":-1,"52687":-1,"52688":-1,"52689":-1,"52690":-1,"52691":-1,"52692":4065,"52693":-1,"52694":-1,"52695":-1,"52696":-1,"52697":-1,"52698":-1,"52699":-1,"52700":-1,"52701":-1,"52702":-1,"52703":4066,"52704":-1,"52705":-1,"52706":-1,"52707":-1,"52708":-1,"52709":-1,"52710":-1,"52711":-1,"52712":-1,"52713":-1,"52714":-1,"52715":4066,"52716":-1,"52717":-1,"52718":4065,"52719":-1,"52720":-1,"52721":-1,"52722":4065,"52723":0,"52724":-1,"52725":-1,"52726":-1,"52727":-1,"52728":-1,"52729":-1,"52730":-1,"52731":4066,"52732":-1,"52733":-1,"52734":-1,"52735":-1,"52736":-1,"52737":-1,"52738":-1,"52739":-1,"52740":-1,"52741":4063,"52742":-1,"52743":-1,"52744":-1,"52745":-1,"52746":-1,"52747":-1,"52748":-1,"52749":-1,"52750":-1,"52751":-1,"52752":-1,"52753":-1,"52754":-1,"52755":-1,"52756":-1,"52757":-1,"52758":-1,"52759":-1,"52760":4065,"52761":-1,"52762":4067,"52763":-1,"52764":-1,"52765":-1,"52766":-1,"52767":-1,"52768":-1,"52769":4066,"52770":-1,"52771":-1,"52772":-1,"52773":-1,"52774":-1,"52775":4066,"52776":4068,"52777":4066,"52778":0,"52779":-1,"52780":-1,"52781":-1,"52782":-1,"52783":0,"52784":-1,"52785":-1,"52786":-1,"52787":-1,"52788":-1,"52789":-1,"52790":-1,"52791":-1,"52792":-1,"52793":4064,"52794":-1,"52795":-1,"52796":0,"52797":-1,"52798":-1,"52799":4066,"52800":4067,"52801":-1,"52802":-1,"52803":4065,"52804":-1,"52805":4066,"52806":-1,"52807":-1,"52808":-1,"52809":-1,"52810":-1,"52811":4067,"52812":-1,"52813":-1,"52814":-1,"52815":4068,"52816":-1,"52817":4066,"52818":-1,"52819":-1,"52820":-1,"52821":-1,"52822":-1,"52823":-1,"52824":-1,"52825":4067,"52826":4063,"52827":-1,"52828":4067,"52829":-1,"52830":-1,"52831":-1,"52832":-1,"52833":-1,"52834":-1,"52835":-1,"52836":-1,"52837":-1,"52838":-1,"52839":-1,"52840":-1,"52841":-1,"52842":-1,"52843":-1,"52844":-1,"52845":-1,"52846":-1,"52847":-1,"52848":-1,"52849":-1,"52850":-1,"52851":-1,"52852":-1,"52853":-1,"52854":-1,"52855":-1,"52856":-1,"52857":-1,"52858":-1,"52859":4066,"52860":-1,"52861":0,"52862":-1,"52863":-1,"52864":-1,"52865":-1,"52866":-1,"52867":-1,"52868":-1,"52869":-1,"52870":-1,"52871":-1,"52872":-1,"52873":-1,"52874":-1,"52875":-1,"52876":-1,"52877":-1,"52878":-1,"52879":-1,"52880":-1,"52881":-1,"52882":-1,"52883":-1,"52884":-1,"52885":-1,"52886":-1,"52887":-1,"52888":-1,"52889":-1,"52890":-1,"52891":-1,"52892":4066,"52893":-1,"52894":-1,"52895":-1,"52896":-1,"52897":-1,"52898":-1,"52899":-1,"52900":-1,"52901":-1,"52902":-1,"52903":-1,"52904":-1,"52905":-1,"52906":-1,"52907":-1,"52908":-1,"52909":4065,"52910":-1,"52911":-1,"52912":-1,"52913":-1,"52914":-1,"52915":-1,"52916":-1,"52917":-1,"52918":-1,"52919":-1,"52920":-1,"52921":-1,"52922":-1,"52923":-1,"52924":-1,"52925":-1,"52926":-1,"52927":-1,"52928":-1,"52929":-1,"52930":-1,"52931":-1,"52932":0,"52933":-1,"52934":-1,"52935":-1,"52936":4064,"52937":-1,"52938":-1,"52939":-1,"52940":-1,"52941":-1,"52942":-1,"52943":-1,"52944":-1,"52945":4065,"52946":4064,"52947":-1,"52948":-1,"52949":-1,"52950":-1,"52951":-1,"52952":-1,"52953":-1,"52954":-1,"52955":-1,"52956":-1,"52957":-1,"52958":4068,"52959":-1,"52960":-1,"52961":-1,"52962":-1,"52963":-1,"52964":-1,"52965":4067,"52966":-1,"52967":-1,"52968":-1,"52969":-1,"52970":4063,"52971":-1,"52972":-1,"52973":-1,"52974":-1,"52975":-1,"52976":-1,"52977":4065,"52978":-1,"52979":-1,"52980":-1,"52981":-1,"52982":-1,"52983":-1,"52984":-1,"52985":-1,"52986":-1,"52987":4067,"52988":-1,"52989":-1,"52990":-1,"52991":4065,"52992":-1,"52993":-1,"52994":-1,"52995":-1,"52996":-1,"52997":-1,"52998":-1,"52999":-1,"53000":4066,"53001":-1,"53002":-1,"53003":4067,"53004":-1,"53005":4065,"53006":-1,"53007":-1,"53008":-1,"53009":-1,"53010":-1,"53011":-1,"53012":-1,"53013":-1,"53014":-1,"53015":-1,"53016":4065,"53017":0,"53018":-1,"53019":-1,"53020":0,"53021":-1,"53022":-1,"53023":4067,"53024":-1,"53025":-1,"53026":4064,"53027":-1,"53028":-1,"53029":-1,"53030":-1,"53031":-1,"53032":-1,"53033":-1,"53034":-1,"53035":0,"53036":-1,"53037":-1,"53038":4067,"53039":-1,"53040":4063,"53041":4068,"53042":-1,"53043":-1,"53044":-1,"53045":-1,"53046":-1,"53047":-1,"53048":-1,"53049":-1,"53050":-1,"53051":-1,"53052":-1,"53053":-1,"53054":-1,"53055":-1,"53056":-1,"53057":-1,"53058":-1,"53059":-1,"53060":-1,"53061":-1,"53062":-1,"53063":4064,"53064":-1,"53065":-1,"53066":-1,"53067":0,"53068":-1,"53069":-1,"53070":-1,"53071":-1,"53072":-1,"53073":-1,"53074":-1,"53075":-1,"53076":4067,"53077":-1,"53078":-1,"53079":-1,"53080":-1,"53081":-1,"53082":4067,"53083":-1,"53084":-1,"53085":-1,"53086":-1,"53087":-1,"53088":-1,"53089":-1,"53090":-1,"53091":-1,"53092":-1,"53093":-1,"53094":-1,"53095":-1,"53096":4065,"53097":4066,"53098":-1,"53099":-1,"53100":-1,"53101":-1,"53102":4064,"53103":-1,"53104":-1,"53105":-1,"53106":-1,"53107":-1,"53108":-1,"53109":-1,"53110":-1,"53111":-1,"53112":-1,"53113":-1,"53114":-1,"53115":-1,"53116":-1,"53117":0,"53118":4066,"53119":-1,"53120":4067,"53121":-1,"53122":-1,"53123":-1,"53124":-1,"53125":-1,"53126":-1,"53127":-1,"53128":4065,"53129":4066,"53130":-1,"53131":-1,"53132":-1,"53133":-1,"53134":4063,"53135":-1,"53136":4064,"53137":-1,"53138":-1,"53139":-1,"53140":-1,"53141":-1,"53142":-1,"53143":-1,"53144":-1,"53145":-1,"53146":-1,"53147":-1,"53148":-1,"53149":-1,"53150":-1,"53151":-1,"53152":-1,"53153":-1,"53154":-1,"53155":4064,"53156":-1,"53157":-1,"53158":-1,"53159":-1,"53160":-1,"53161":-1,"53162":-1,"53163":-1,"53164":-1,"53165":-1,"53166":4065,"53167":-1,"53168":-1,"53169":-1,"53170":-1,"53171":-1,"53172":-1,"53173":0,"53174":-1,"53175":-1,"53176":-1,"53177":-1,"53178":-1,"53179":-1,"53180":4068,"53181":-1,"53182":-1,"53183":4068,"53184":-1,"53185":-1,"53186":-1,"53187":-1,"53188":-1,"53189":-1,"53190":-1,"53191":-1,"53192":-1,"53193":4065,"53194":-1,"53195":-1,"53196":-1,"53197":4065,"53198":-1,"53199":4068,"53200":4064,"53201":-1,"53202":-1,"53203":4064,"53204":-1,"53205":-1,"53206":-1,"53207":-1,"53208":-1,"53209":-1,"53210":-1,"53211":4066,"53212":-1,"53213":-1,"53214":-1,"53215":-1,"53216":-1,"53217":-1,"53218":-1,"53219":-1,"53220":-1,"53221":0,"53222":-1,"53223":0,"53224":-1,"53225":-1,"53226":-1,"53227":-1,"53228":-1,"53229":4064,"53230":4064,"53231":-1,"53232":-1,"53233":4067,"53234":-1,"53235":-1,"53236":-1,"53237":-1,"53238":-1,"53239":-1,"53240":-1,"53241":-1,"53242":-1,"53243":-1,"53244":-1,"53245":-1,"53246":-1,"53247":-1,"53248":-1,"53249":-1,"53250":-1,"53251":-1,"53252":-1,"53253":-1,"53254":-1,"53255":-1,"53256":-1,"53257":-1,"53258":4067,"53259":-1,"53260":-1,"53261":4066,"53262":-1,"53263":-1,"53264":-1,"53265":-1,"53266":-1,"53267":4066,"53268":-1,"53269":-1,"53270":-1,"53271":-1,"53272":-1,"53273":-1,"53274":-1,"53275":-1,"53276":4066,"53277":-1,"53278":-1,"53279":-1,"53280":-1,"53281":-1,"53282":-1,"53283":-1,"53284":-1,"53285":-1,"53286":-1,"53287":-1,"53288":-1,"53289":4067,"53290":0,"53291":-1,"53292":4064,"53293":-1,"53294":-1,"53295":4067,"53296":-1,"53297":-1,"53298":-1,"53299":-1,"53300":4066,"53301":-1,"53302":-1,"53303":4065,"53304":-1,"53305":-1,"53306":-1,"53307":-1,"53308":-1,"53309":-1,"53310":-1,"53311":-1,"53312":-1,"53313":-1,"53314":-1,"53315":-1,"53316":4067,"53317":-1,"53318":-1,"53319":-1,"53320":-1,"53321":-1,"53322":-1,"53323":-1,"53324":-1,"53325":4067,"53326":4065,"53327":-1,"53328":-1,"53329":-1,"53330":4065,"53331":-1,"53332":4066,"53333":-1,"53334":-1,"53335":-1,"53336":-1,"53337":-1,"53338":4067,"53339":-1,"53340":-1,"53341":-1,"53342":-1,"53343":-1,"53344":-1,"53345":-1,"53346":-1,"53347":0,"53348":-1,"53349":-1,"53350":-1,"53351":-1,"53352":-1,"53353":0,"53354":-1,"53355":-1,"53356":-1,"53357":-1,"53358":-1,"53359":-1,"53360":-1,"53361":-1,"53362":4068,"53363":-1,"53364":4068,"53365":4068,"53366":-1,"53367":-1,"53368":-1,"53369":4067,"53370":-1,"53371":-1,"53372":-1,"53373":-1,"53374":4063,"53375":4065,"53376":-1,"53377":-1,"53378":-1,"53379":-1,"53380":4067,"53381":-1,"53382":-1,"53383":-1,"53384":-1,"53385":-1,"53386":-1,"53387":-1,"53388":-1,"53389":-1,"53390":-1,"53391":-1,"53392":-1,"53393":-1,"53394":-1,"53395":4066,"53396":0,"53397":-1,"53398":-1,"53399":-1,"53400":-1,"53401":-1,"53402":-1,"53403":-1,"53404":-1,"53405":0,"53406":-1,"53407":-1,"53408":-1,"53409":-1,"53410":-1,"53411":-1,"53412":-1,"53413":-1,"53414":-1,"53415":-1,"53416":-1,"53417":-1,"53418":-1,"53419":-1,"53420":-1,"53421":-1,"53422":4063,"53423":-1,"53424":4063,"53425":-1,"53426":-1,"53427":-1,"53428":-1,"53429":4067,"53430":-1,"53431":-1,"53432":4065,"53433":-1,"53434":-1,"53435":-1,"53436":0,"53437":-1,"53438":-1,"53439":-1,"53440":-1,"53441":-1,"53442":-1,"53443":-1,"53444":-1,"53445":-1,"53446":-1,"53447":-1,"53448":0,"53449":-1,"53450":-1,"53451":4067,"53452":-1,"53453":-1,"53454":-1,"53455":4063,"53456":4067,"53457":-1,"53458":4065,"53459":-1,"53460":-1,"53461":-1,"53462":-1,"53463":-1,"53464":-1,"53465":-1,"53466":-1,"53467":4065,"53468":-1,"53469":-1,"53470":-1,"53471":4067,"53472":-1,"53473":-1,"53474":-1,"53475":-1,"53476":-1,"53477":-1,"53478":-1,"53479":-1,"53480":-1,"53481":-1,"53482":-1,"53483":-1,"53484":-1,"53485":-1,"53486":-1,"53487":-1,"53488":-1,"53489":-1,"53490":-1,"53491":-1,"53492":-1,"53493":4067,"53494":-1,"53495":-1,"53496":4064,"53497":-1,"53498":-1,"53499":-1,"53500":4063,"53501":4066,"53502":-1,"53503":-1,"53504":-1,"53505":-1,"53506":-1,"53507":-1,"53508":-1,"53509":-1,"53510":-1,"53511":-1,"53512":-1,"53513":-1,"53514":-1,"53515":-1,"53516":-1,"53517":-1,"53518":-1,"53519":-1,"53520":-1,"53521":-1,"53522":-1,"53523":-1,"53524":-1,"53525":-1,"53526":-1,"53527":0,"53528":-1,"53529":-1,"53530":-1,"53531":-1,"53532":-1,"53533":4065,"53534":-1,"53535":-1,"53536":-1,"53537":-1,"53538":-1,"53539":-1,"53540":-1,"53541":-1,"53542":-1,"53543":-1,"53544":-1,"53545":-1,"53546":4064,"53547":-1,"53548":-1,"53549":-1,"53550":-1,"53551":-1,"53552":-1,"53553":-1,"53554":-1,"53555":-1,"53556":-1,"53557":-1,"53558":-1,"53559":-1,"53560":-1,"53561":-1,"53562":-1,"53563":-1,"53564":-1,"53565":-1,"53566":-1,"53567":-1,"53568":-1,"53569":-1,"53570":-1,"53571":0,"53572":-1,"53573":-1,"53574":-1,"53575":-1,"53576":-1,"53577":-1,"53578":-1,"53579":-1,"53580":-1,"53581":-1,"53582":-1,"53583":-1,"53584":-1,"53585":4064,"53586":-1,"53587":-1,"53588":-1,"53589":-1,"53590":-1,"53591":-1,"53592":4068,"53593":-1,"53594":-1,"53595":-1,"53596":-1,"53597":4067,"53598":-1,"53599":-1,"53600":-1,"53601":-1,"53602":-1,"53603":-1,"53604":-1,"53605":-1,"53606":-1,"53607":-1,"53608":0,"53609":-1,"53610":-1,"53611":-1,"53612":-1,"53613":4067,"53614":-1,"53615":-1,"53616":-1,"53617":4066,"53618":-1,"53619":-1,"53620":-1,"53621":-1,"53622":-1,"53623":-1,"53624":-1,"53625":4067,"53626":-1,"53627":-1,"53628":-1,"53629":-1,"53630":-1,"53631":-1,"53632":-1,"53633":-1,"53634":-1,"53635":-1,"53636":-1,"53637":-1,"53638":-1,"53639":4064,"53640":-1,"53641":-1,"53642":-1,"53643":-1,"53644":-1,"53645":-1,"53646":4067,"53647":-1,"53648":-1,"53649":-1,"53650":-1,"53651":4067,"53652":-1,"53653":-1,"53654":-1,"53655":-1,"53656":-1,"53657":-1,"53658":-1,"53659":-1,"53660":-1,"53661":-1,"53662":-1,"53663":-1,"53664":4064,"53665":0,"53666":-1,"53667":0,"53668":-1,"53669":-1,"53670":-1,"53671":-1,"53672":-1,"53673":-1,"53674":-1,"53675":-1,"53676":-1,"53677":-1,"53678":-1,"53679":4067,"53680":-1,"53681":-1,"53682":-1,"53683":-1,"53684":-1,"53685":4068,"53686":-1,"53687":-1,"53688":4067,"53689":-1,"53690":-1,"53691":4066,"53692":-1,"53693":-1,"53694":-1,"53695":-1,"53696":4066,"53697":-1,"53698":-1,"53699":4067,"53700":-1,"53701":-1,"53702":-1,"53703":-1,"53704":-1,"53705":-1,"53706":4064,"53707":-1,"53708":-1,"53709":-1,"53710":-1,"53711":4068,"53712":-1,"53713":-1,"53714":4065,"53715":-1,"53716":-1,"53717":-1,"53718":-1,"53719":-1,"53720":4066,"53721":-1,"53722":-1,"53723":-1,"53724":-1,"53725":-1,"53726":4064,"53727":-1,"53728":-1,"53729":-1,"53730":-1,"53731":-1,"53732":0,"53733":0,"53734":-1,"53735":-1,"53736":-1,"53737":-1,"53738":-1,"53739":4068,"53740":-1,"53741":-1,"53742":-1,"53743":-1,"53744":-1,"53745":-1,"53746":-1,"53747":-1,"53748":-1,"53749":-1,"53750":-1,"53751":-1,"53752":-1,"53753":-1,"53754":-1,"53755":-1,"53756":-1,"53757":-1,"53758":-1,"53759":-1,"53760":-1,"53761":-1,"53762":-1,"53763":-1,"53764":-1,"53765":-1,"53766":0,"53767":-1,"53768":4067,"53769":4067,"53770":-1,"53771":-1,"53772":-1,"53773":-1,"53774":-1,"53775":-1,"53776":-1,"53777":-1,"53778":-1,"53779":-1,"53780":-1,"53781":-1,"53782":-1,"53783":-1,"53784":-1,"53785":0,"53786":-1,"53787":0,"53788":-1,"53789":-1,"53790":-1,"53791":-1,"53792":-1,"53793":-1,"53794":-1,"53795":-1,"53796":-1,"53797":4065,"53798":-1,"53799":0,"53800":-1,"53801":-1,"53802":4067,"53803":-1,"53804":-1,"53805":-1,"53806":-1,"53807":-1,"53808":4067,"53809":-1,"53810":-1,"53811":-1,"53812":-1,"53813":-1,"53814":4068,"53815":-1,"53816":-1,"53817":4065,"53818":-1,"53819":-1,"53820":-1,"53821":-1,"53822":-1,"53823":4064,"53824":-1,"53825":-1,"53826":-1,"53827":-1,"53828":-1,"53829":-1,"53830":0,"53831":4067,"53832":-1,"53833":-1,"53834":-1,"53835":-1,"53836":-1,"53837":-1,"53838":-1,"53839":4067,"53840":-1,"53841":-1,"53842":-1,"53843":-1,"53844":-1,"53845":-1,"53846":-1,"53847":-1,"53848":-1,"53849":-1,"53850":-1,"53851":-1,"53852":4066,"53853":-1,"53854":-1,"53855":-1,"53856":-1,"53857":-1,"53858":-1,"53859":-1,"53860":-1,"53861":0,"53862":-1,"53863":-1,"53864":-1,"53865":4067,"53866":-1,"53867":-1,"53868":-1,"53869":-1,"53870":-1,"53871":-1,"53872":-1,"53873":-1,"53874":-1,"53875":4064,"53876":-1,"53877":-1,"53878":-1,"53879":-1,"53880":-1,"53881":4066,"53882":-1,"53883":-1,"53884":-1,"53885":-1,"53886":-1,"53887":4064,"53888":-1,"53889":4064,"53890":-1,"53891":-1,"53892":-1,"53893":-1,"53894":-1,"53895":-1,"53896":-1,"53897":4064,"53898":-1,"53899":-1,"53900":-1,"53901":-1,"53902":-1,"53903":-1,"53904":4065,"53905":-1,"53906":4068,"53907":-1,"53908":-1,"53909":-1,"53910":-1,"53911":-1,"53912":-1,"53913":-1,"53914":-1,"53915":-1,"53916":-1,"53917":-1,"53918":-1,"53919":-1,"53920":-1,"53921":-1,"53922":-1,"53923":-1,"53924":-1,"53925":-1,"53926":-1,"53927":4065,"53928":-1,"53929":-1,"53930":-1,"53931":-1,"53932":-1,"53933":-1,"53934":-1,"53935":-1,"53936":-1,"53937":-1,"53938":-1,"53939":-1,"53940":-1,"53941":-1,"53942":-1,"53943":-1,"53944":-1,"53945":-1,"53946":-1,"53947":-1,"53948":-1,"53949":-1,"53950":4065,"53951":-1,"53952":0,"53953":-1,"53954":-1,"53955":-1,"53956":-1,"53957":-1,"53958":-1,"53959":-1,"53960":-1,"53961":-1,"53962":-1,"53963":-1,"53964":-1,"53965":-1,"53966":4067,"53967":-1,"53968":-1,"53969":-1,"53970":-1,"53971":-1,"53972":-1,"53973":-1,"53974":4064,"53975":-1,"53976":-1,"53977":-1,"53978":-1,"53979":-1,"53980":-1,"53981":-1,"53982":-1,"53983":-1,"53984":4064,"53985":-1,"53986":-1,"53987":-1,"53988":-1,"53989":4066,"53990":-1,"53991":-1,"53992":-1,"53993":-1,"53994":-1,"53995":-1,"53996":-1,"53997":-1,"53998":-1,"53999":4065,"54000":-1,"54001":-1,"54002":4063,"54003":-1,"54004":-1,"54005":-1,"54006":-1,"54007":0,"54008":-1,"54009":-1,"54010":-1,"54011":-1,"54012":-1,"54013":-1,"54014":-1,"54015":-1,"54016":-1,"54017":-1,"54018":-1,"54019":-1,"54020":0,"54021":-1,"54022":-1,"54023":-1,"54024":-1,"54025":-1,"54026":-1,"54027":4064,"54028":-1,"54029":-1,"54030":-1,"54031":-1,"54032":-1,"54033":-1,"54034":-1,"54035":-1,"54036":-1,"54037":-1,"54038":-1,"54039":-1,"54040":-1,"54041":-1,"54042":-1,"54043":-1,"54044":-1,"54045":-1,"54046":-1,"54047":-1,"54048":-1,"54049":-1,"54050":-1,"54051":-1,"54052":-1,"54053":-1,"54054":-1,"54055":-1,"54056":-1,"54057":-1,"54058":-1,"54059":-1,"54060":-1,"54061":-1,"54062":-1,"54063":-1,"54064":-1,"54065":-1,"54066":-1,"54067":-1,"54068":-1,"54069":-1,"54070":-1,"54071":-1,"54072":0,"54073":-1,"54074":4068,"54075":-1,"54076":-1,"54077":4065,"54078":-1,"54079":-1,"54080":-1,"54081":-1,"54082":-1,"54083":-1,"54084":0,"54085":-1,"54086":-1,"54087":-1,"54088":-1,"54089":-1,"54090":4067,"54091":-1,"54092":-1,"54093":-1,"54094":-1,"54095":-1,"54096":-1,"54097":-1,"54098":-1,"54099":0,"54100":-1,"54101":-1,"54102":-1,"54103":-1,"54104":-1,"54105":-1,"54106":-1,"54107":-1,"54108":-1,"54109":-1,"54110":-1,"54111":-1,"54112":-1,"54113":4066,"54114":-1,"54115":-1,"54116":-1,"54117":0,"54118":4065,"54119":-1,"54120":-1,"54121":-1,"54122":0,"54123":-1,"54124":-1,"54125":-1,"54126":-1,"54127":-1,"54128":-1,"54129":-1,"54130":-1,"54131":4064,"54132":-1,"54133":-1,"54134":-1,"54135":-1,"54136":-1,"54137":4063,"54138":-1,"54139":-1,"54140":-1,"54141":-1,"54142":-1,"54143":-1,"54144":-1,"54145":-1,"54146":-1,"54147":-1,"54148":-1,"54149":-1,"54150":-1,"54151":-1,"54152":-1,"54153":-1,"54154":-1,"54155":-1,"54156":-1,"54157":-1,"54158":4064,"54159":-1,"54160":-1,"54161":-1,"54162":-1,"54163":-1,"54164":-1,"54165":-1,"54166":-1,"54167":-1,"54168":4066,"54169":-1,"54170":-1,"54171":-1,"54172":-1,"54173":-1,"54174":-1,"54175":-1,"54176":4063,"54177":4063,"54178":-1,"54179":-1,"54180":-1,"54181":-1,"54182":-1,"54183":-1,"54184":-1,"54185":4063,"54186":-1,"54187":4067,"54188":-1,"54189":4064,"54190":-1,"54191":-1,"54192":-1,"54193":-1,"54194":-1,"54195":4065,"54196":4065,"54197":-1,"54198":-1,"54199":-1,"54200":-1,"54201":-1,"54202":-1,"54203":-1,"54204":-1,"54205":-1,"54206":-1,"54207":-1,"54208":-1,"54209":-1,"54210":-1,"54211":-1,"54212":-1,"54213":-1,"54214":4066,"54215":-1,"54216":-1,"54217":-1,"54218":-1,"54219":-1,"54220":-1,"54221":-1,"54222":-1,"54223":-1,"54224":-1,"54225":-1,"54226":-1,"54227":-1,"54228":-1,"54229":-1,"54230":-1,"54231":-1,"54232":-1,"54233":-1,"54234":-1,"54235":-1,"54236":-1,"54237":-1,"54238":-1,"54239":-1,"54240":-1,"54241":-1,"54242":-1,"54243":4065,"54244":4067,"54245":-1,"54246":-1,"54247":4064,"54248":4064,"54249":-1,"54250":-1,"54251":-1,"54252":-1,"54253":-1,"54254":-1,"54255":-1,"54256":-1,"54257":-1,"54258":4067,"54259":-1,"54260":-1,"54261":0,"54262":-1,"54263":-1,"54264":-1,"54265":-1,"54266":-1,"54267":-1,"54268":4067,"54269":-1,"54270":-1,"54271":-1,"54272":-1,"54273":-1,"54274":-1,"54275":4065,"54276":-1,"54277":-1,"54278":-1,"54279":-1,"54280":-1,"54281":-1,"54282":-1,"54283":4067,"54284":-1,"54285":-1,"54286":-1,"54287":-1,"54288":0,"54289":-1,"54290":-1,"54291":-1,"54292":-1,"54293":-1,"54294":-1,"54295":-1,"54296":-1,"54297":-1,"54298":-1,"54299":-1,"54300":-1,"54301":-1,"54302":4067,"54303":-1,"54304":-1,"54305":-1,"54306":-1,"54307":-1,"54308":-1,"54309":-1,"54310":-1,"54311":-1,"54312":0,"54313":4063,"54314":-1,"54315":-1,"54316":4067,"54317":-1,"54318":-1,"54319":-1,"54320":-1,"54321":-1,"54322":4064,"54323":-1,"54324":4064,"54325":-1,"54326":-1,"54327":4067,"54328":-1,"54329":-1,"54330":-1,"54331":4064,"54332":-1,"54333":4065,"54334":-1,"54335":-1,"54336":-1,"54337":-1,"54338":-1,"54339":-1,"54340":-1,"54341":-1,"54342":-1,"54343":4067,"54344":-1,"54345":-1,"54346":-1,"54347":-1,"54348":-1,"54349":4064,"54350":-1,"54351":-1,"54352":0,"54353":-1,"54354":-1,"54355":-1,"54356":-1,"54357":-1,"54358":-1,"54359":4066,"54360":-1,"54361":-1,"54362":-1,"54363":0,"54364":-1,"54365":4065,"54366":-1,"54367":-1,"54368":-1,"54369":0,"54370":-1,"54371":-1,"54372":-1,"54373":-1,"54374":-1,"54375":-1,"54376":-1,"54377":-1,"54378":0,"54379":-1,"54380":-1,"54381":-1,"54382":-1,"54383":-1,"54384":-1,"54385":-1,"54386":-1,"54387":-1,"54388":-1,"54389":-1,"54390":-1,"54391":-1,"54392":-1,"54393":4067,"54394":-1,"54395":-1,"54396":-1,"54397":-1,"54398":-1,"54399":4063,"54400":-1,"54401":-1,"54402":-1,"54403":-1,"54404":-1,"54405":-1,"54406":4066,"54407":0,"54408":-1,"54409":-1,"54410":-1,"54411":-1,"54412":-1,"54413":-1,"54414":-1,"54415":-1,"54416":4066,"54417":-1,"54418":-1,"54419":-1,"54420":-1,"54421":-1,"54422":-1,"54423":-1,"54424":-1,"54425":-1,"54426":-1,"54427":-1,"54428":-1,"54429":-1,"54430":-1,"54431":-1,"54432":-1,"54433":-1,"54434":-1,"54435":-1,"54436":-1,"54437":-1,"54438":-1,"54439":-1,"54440":-1,"54441":-1,"54442":-1,"54443":-1,"54444":-1,"54445":-1,"54446":-1,"54447":-1,"54448":-1,"54449":-1,"54450":-1,"54451":-1,"54452":-1,"54453":-1,"54454":-1,"54455":-1,"54456":-1,"54457":-1,"54458":-1,"54459":-1,"54460":-1,"54461":4064,"54462":-1,"54463":-1,"54464":-1,"54465":-1,"54466":-1,"54467":-1,"54468":-1,"54469":-1,"54470":-1,"54471":-1,"54472":-1,"54473":-1,"54474":-1,"54475":-1,"54476":-1,"54477":-1,"54478":0,"54479":-1,"54480":4068,"54481":0,"54482":-1,"54483":4067,"54484":-1,"54485":-1,"54486":-1,"54487":-1,"54488":-1,"54489":-1,"54490":-1,"54491":-1,"54492":-1,"54493":-1,"54494":-1,"54495":-1,"54496":-1,"54497":-1,"54498":-1,"54499":-1,"54500":-1,"54501":-1,"54502":-1,"54503":-1,"54504":-1,"54505":-1,"54506":-1,"54507":-1,"54508":-1,"54509":-1,"54510":-1,"54511":-1,"54512":-1,"54513":-1,"54514":-1,"54515":-1,"54516":-1,"54517":-1,"54518":-1,"54519":4068,"54520":-1,"54521":-1,"54522":-1,"54523":-1,"54524":-1,"54525":-1,"54526":0,"54527":-1,"54528":-1,"54529":-1,"54530":-1,"54531":-1,"54532":4064,"54533":4066,"54534":0,"54535":-1,"54536":-1,"54537":-1,"54538":-1,"54539":-1,"54540":4067,"54541":-1,"54542":4063,"54543":-1,"54544":-1,"54545":-1,"54546":-1,"54547":-1,"54548":4065,"54549":-1,"54550":-1,"54551":-1,"54552":-1,"54553":-1,"54554":-1,"54555":-1,"54556":-1,"54557":4063,"54558":4065,"54559":-1,"54560":-1,"54561":-1,"54562":4067,"54563":4063,"54564":-1,"54565":0,"54566":0,"54567":-1,"54568":-1,"54569":-1,"54570":0,"54571":-1,"54572":0,"54573":-1,"54574":-1,"54575":-1,"54576":-1,"54577":-1,"54578":-1,"54579":-1,"54580":-1,"54581":-1,"54582":-1,"54583":-1,"54584":4068,"54585":-1,"54586":-1,"54587":-1,"54588":-1,"54589":-1,"54590":-1,"54591":4065,"54592":4064,"54593":-1,"54594":-1,"54595":-1,"54596":-1,"54597":-1,"54598":-1,"54599":-1,"54600":-1,"54601":-1,"54602":-1,"54603":4067,"54604":-1,"54605":-1,"54606":-1,"54607":-1,"54608":-1,"54609":-1,"54610":-1,"54611":-1,"54612":-1,"54613":4065,"54614":-1,"54615":-1,"54616":-1,"54617":4064,"54618":-1,"54619":-1,"54620":-1,"54621":-1,"54622":-1,"54623":-1,"54624":-1,"54625":-1,"54626":-1,"54627":4068,"54628":-1,"54629":-1,"54630":-1,"54631":-1,"54632":-1,"54633":-1,"54634":-1,"54635":-1,"54636":-1,"54637":-1,"54638":-1,"54639":-1,"54640":4064,"54641":-1,"54642":-1,"54643":4065,"54644":-1,"54645":-1,"54646":4063,"54647":-1,"54648":-1,"54649":-1,"54650":-1,"54651":-1,"54652":-1,"54653":-1,"54654":-1,"54655":-1,"54656":-1,"54657":-1,"54658":-1,"54659":-1,"54660":-1,"54661":-1,"54662":-1,"54663":-1,"54664":-1,"54665":-1,"54666":4065,"54667":-1,"54668":-1,"54669":-1,"54670":0,"54671":-1,"54672":-1,"54673":-1,"54674":-1,"54675":-1,"54676":-1,"54677":-1,"54678":-1,"54679":-1,"54680":-1,"54681":-1,"54682":4067,"54683":-1,"54684":-1,"54685":4067,"54686":-1,"54687":-1,"54688":-1,"54689":-1,"54690":-1,"54691":-1,"54692":-1,"54693":-1,"54694":-1,"54695":-1,"54696":-1,"54697":-1,"54698":-1,"54699":-1,"54700":-1,"54701":-1,"54702":4064,"54703":-1,"54704":-1,"54705":-1,"54706":-1,"54707":-1,"54708":-1,"54709":-1,"54710":-1,"54711":-1,"54712":-1,"54713":-1,"54714":-1,"54715":-1,"54716":-1,"54717":-1,"54718":-1,"54719":-1,"54720":-1,"54721":-1,"54722":0,"54723":-1,"54724":-1,"54725":-1,"54726":-1,"54727":4064,"54728":-1,"54729":-1,"54730":-1,"54731":4067,"54732":-1,"54733":4064,"54734":4064,"54735":-1,"54736":-1,"54737":-1,"54738":-1,"54739":-1,"54740":-1,"54741":-1,"54742":-1,"54743":-1,"54744":-1,"54745":-1,"54746":-1,"54747":4065,"54748":-1,"54749":-1,"54750":-1,"54751":4066,"54752":-1,"54753":-1,"54754":-1,"54755":-1,"54756":-1,"54757":0,"54758":-1,"54759":-1,"54760":-1,"54761":-1,"54762":-1,"54763":-1,"54764":-1,"54765":4064,"54766":-1,"54767":0,"54768":0,"54769":-1,"54770":-1,"54771":-1,"54772":-1,"54773":-1,"54774":-1,"54775":-1,"54776":-1,"54777":-1,"54778":-1,"54779":-1,"54780":-1,"54781":4065,"54782":-1,"54783":-1,"54784":-1,"54785":-1,"54786":4067,"54787":-1,"54788":-1,"54789":-1,"54790":-1,"54791":-1,"54792":-1,"54793":4065,"54794":-1,"54795":-1,"54796":4063,"54797":4066,"54798":-1,"54799":-1,"54800":-1,"54801":4066,"54802":-1,"54803":-1,"54804":-1,"54805":-1,"54806":-1,"54807":-1,"54808":-1,"54809":-1,"54810":-1,"54811":-1,"54812":-1,"54813":-1,"54814":4068,"54815":-1,"54816":-1,"54817":-1,"54818":-1,"54819":-1,"54820":-1,"54821":-1,"54822":-1,"54823":-1,"54824":-1,"54825":-1,"54826":-1,"54827":-1,"54828":4064,"54829":-1,"54830":-1,"54831":-1,"54832":-1,"54833":-1,"54834":-1,"54835":-1,"54836":-1,"54837":4065,"54838":-1,"54839":-1,"54840":4064,"54841":-1,"54842":-1,"54843":-1,"54844":-1,"54845":-1,"54846":-1,"54847":-1,"54848":-1,"54849":-1,"54850":-1,"54851":-1,"54852":-1,"54853":-1,"54854":-1,"54855":-1,"54856":-1,"54857":-1,"54858":-1,"54859":-1,"54860":0,"54861":-1,"54862":-1,"54863":-1,"54864":-1,"54865":-1,"54866":-1,"54867":-1,"54868":-1,"54869":-1,"54870":-1,"54871":-1,"54872":-1,"54873":-1,"54874":-1,"54875":-1,"54876":0,"54877":-1,"54878":-1,"54879":-1,"54880":-1,"54881":-1,"54882":-1,"54883":4065,"54884":-1,"54885":-1,"54886":-1,"54887":-1,"54888":-1,"54889":-1,"54890":-1,"54891":-1,"54892":-1,"54893":-1,"54894":-1,"54895":-1,"54896":-1,"54897":-1,"54898":-1,"54899":-1,"54900":4068,"54901":-1,"54902":-1,"54903":-1,"54904":-1,"54905":-1,"54906":-1,"54907":-1,"54908":-1,"54909":-1,"54910":4063,"54911":-1,"54912":-1,"54913":-1,"54914":4063,"54915":-1,"54916":4066,"54917":-1,"54918":-1,"54919":-1,"54920":-1,"54921":-1,"54922":-1,"54923":-1,"54924":-1,"54925":-1,"54926":4068,"54927":-1,"54928":-1,"54929":-1,"54930":-1,"54931":-1,"54932":-1,"54933":-1,"54934":-1,"54935":-1,"54936":-1,"54937":0,"54938":-1,"54939":-1,"54940":-1,"54941":-1,"54942":-1,"54943":0,"54944":0,"54945":-1,"54946":-1,"54947":-1,"54948":-1,"54949":-1,"54950":-1,"54951":4065,"54952":-1,"54953":-1,"54954":-1,"54955":-1,"54956":-1,"54957":-1,"54958":-1,"54959":-1,"54960":-1,"54961":4066,"54962":-1,"54963":-1,"54964":-1,"54965":-1,"54966":-1,"54967":-1,"54968":-1,"54969":4067,"54970":-1,"54971":-1,"54972":-1,"54973":-1,"54974":-1,"54975":-1,"54976":-1,"54977":-1,"54978":-1,"54979":-1,"54980":-1,"54981":4064,"54982":-1,"54983":-1,"54984":-1,"54985":-1,"54986":-1,"54987":-1,"54988":-1,"54989":-1,"54990":-1,"54991":-1,"54992":-1,"54993":-1,"54994":-1,"54995":-1,"54996":-1,"54997":4067,"54998":-1,"54999":0,"55000":-1,"55001":-1,"55002":-1,"55003":-1,"55004":-1,"55005":-1,"55006":-1,"55007":-1,"55008":-1,"55009":-1,"55010":-1,"55011":-1,"55012":-1,"55013":4067,"55014":-1,"55015":-1,"55016":-1,"55017":4066,"55018":-1,"55019":4065,"55020":-1,"55021":-1,"55022":-1,"55023":-1,"55024":0,"55025":-1,"55026":-1,"55027":4068,"55028":-1,"55029":-1,"55030":-1,"55031":-1,"55032":4066,"55033":-1,"55034":-1,"55035":-1,"55036":4065,"55037":4064,"55038":-1,"55039":-1,"55040":-1,"55041":-1,"55042":-1,"55043":-1,"55044":-1,"55045":-1,"55046":-1,"55047":-1,"55048":-1,"55049":-1,"55050":-1,"55051":-1,"55052":-1,"55053":-1,"55054":-1,"55055":0,"55056":-1,"55057":-1,"55058":4063,"55059":-1,"55060":-1,"55061":-1,"55062":-1,"55063":-1,"55064":-1,"55065":-1,"55066":0,"55067":-1,"55068":0,"55069":-1,"55070":-1,"55071":4067,"55072":-1,"55073":-1,"55074":-1,"55075":-1,"55076":-1,"55077":-1,"55078":-1,"55079":-1,"55080":-1,"55081":-1,"55082":-1,"55083":-1,"55084":-1,"55085":-1,"55086":-1,"55087":-1,"55088":-1,"55089":-1,"55090":-1,"55091":-1,"55092":-1,"55093":-1,"55094":4064,"55095":-1,"55096":-1,"55097":-1,"55098":-1,"55099":-1,"55100":-1,"55101":-1,"55102":-1,"55103":-1,"55104":-1,"55105":4064,"55106":-1,"55107":-1,"55108":-1,"55109":-1,"55110":-1,"55111":-1,"55112":-1,"55113":-1,"55114":-1,"55115":-1,"55116":-1,"55117":-1,"55118":-1,"55119":-1,"55120":-1,"55121":-1,"55122":-1,"55123":-1,"55124":-1,"55125":4068,"55126":-1,"55127":-1,"55128":4066,"55129":-1,"55130":4065,"55131":-1,"55132":-1,"55133":-1,"55134":-1,"55135":-1,"55136":-1,"55137":-1,"55138":-1,"55139":-1,"55140":-1,"55141":-1,"55142":-1,"55143":-1,"55144":4064,"55145":-1,"55146":4067,"55147":-1,"55148":-1,"55149":-1,"55150":4068,"55151":-1,"55152":-1,"55153":-1,"55154":-1,"55155":-1,"55156":-1,"55157":-1,"55158":-1,"55159":-1,"55160":-1,"55161":0,"55162":4067,"55163":-1,"55164":-1,"55165":-1,"55166":-1,"55167":-1,"55168":4065,"55169":-1,"55170":-1,"55171":4064,"55172":-1,"55173":-1,"55174":0,"55175":-1,"55176":-1,"55177":-1,"55178":-1,"55179":-1,"55180":-1,"55181":-1,"55182":-1,"55183":-1,"55184":-1,"55185":-1,"55186":-1,"55187":-1,"55188":-1,"55189":-1,"55190":-1,"55191":-1,"55192":-1,"55193":-1,"55194":4063,"55195":-1,"55196":-1,"55197":-1,"55198":-1,"55199":-1,"55200":-1,"55201":-1,"55202":-1,"55203":-1,"55204":-1,"55205":-1,"55206":-1,"55207":-1,"55208":4066,"55209":-1,"55210":-1,"55211":-1,"55212":4067,"55213":-1,"55214":-1,"55215":-1,"55216":-1,"55217":-1,"55218":-1,"55219":-1,"55220":-1,"55221":-1,"55222":-1,"55223":4067,"55224":-1,"55225":-1,"55226":-1,"55227":-1,"55228":4067,"55229":4065,"55230":-1,"55231":-1,"55232":-1,"55233":-1,"55234":-1,"55235":-1,"55236":-1,"55237":-1,"55238":-1,"55239":-1,"55240":-1,"55241":-1,"55242":-1,"55243":-1,"55244":4064,"55245":-1,"55246":-1,"55247":-1,"55248":-1,"55249":-1,"55250":4066,"55251":-1,"55252":-1,"55253":-1,"55254":-1,"55255":-1,"55256":-1,"55257":-1,"55258":4066,"55259":-1,"55260":-1,"55261":-1,"55262":-1,"55263":-1,"55264":-1,"55265":-1,"55266":-1,"55267":-1,"55268":-1,"55269":-1,"55270":0,"55271":-1,"55272":-1,"55273":-1,"55274":-1,"55275":-1,"55276":0,"55277":-1,"55278":-1,"55279":-1,"55280":-1,"55281":-1,"55282":-1,"55283":-1,"55284":-1,"55285":-1,"55286":-1,"55287":-1,"55288":-1,"55289":-1,"55290":-1,"55291":-1,"55292":-1,"55293":-1,"55294":-1,"55295":-1,"55296":0,"55297":-1,"55298":-1,"55299":-1,"55300":4065,"55301":-1,"55302":-1,"55303":-1,"55304":0,"55305":-1,"55306":-1,"55307":-1,"55308":-1,"55309":-1,"55310":-1,"55311":-1,"55312":-1,"55313":-1,"55314":-1,"55315":-1,"55316":-1,"55317":-1,"55318":-1,"55319":-1,"55320":-1,"55321":-1,"55322":4063,"55323":-1,"55324":-1,"55325":-1,"55326":-1,"55327":-1,"55328":-1,"55329":-1,"55330":-1,"55331":-1,"55332":-1,"55333":0,"55334":-1,"55335":-1,"55336":-1,"55337":-1,"55338":-1,"55339":-1,"55340":-1,"55341":-1,"55342":4063,"55343":-1,"55344":-1,"55345":-1,"55346":-1,"55347":-1,"55348":-1,"55349":-1,"55350":-1,"55351":4065,"55352":-1,"55353":4063,"55354":0,"55355":-1,"55356":0,"55357":-1,"55358":-1,"55359":0,"55360":-1,"55361":-1,"55362":-1,"55363":-1,"55364":-1,"55365":-1,"55366":-1,"55367":-1,"55368":4064,"55369":-1,"55370":-1,"55371":-1,"55372":-1,"55373":-1,"55374":-1,"55375":-1,"55376":-1,"55377":-1,"55378":-1,"55379":4064,"55380":-1,"55381":-1,"55382":-1,"55383":-1,"55384":-1,"55385":-1,"55386":-1,"55387":4068,"55388":-1,"55389":-1,"55390":-1,"55391":-1,"55392":-1,"55393":-1,"55394":-1,"55395":-1,"55396":-1,"55397":-1,"55398":-1,"55399":-1,"55400":4065,"55401":-1,"55402":4066,"55403":-1,"55404":4064,"55405":-1,"55406":-1,"55407":-1,"55408":-1,"55409":-1,"55410":-1,"55411":-1,"55412":-1,"55413":4067,"55414":0,"55415":-1,"55416":4065,"55417":-1,"55418":-1,"55419":0,"55420":4066,"55421":-1,"55422":-1,"55423":-1,"55424":-1,"55425":-1,"55426":-1,"55427":-1,"55428":-1,"55429":-1,"55430":-1,"55431":-1,"55432":-1,"55433":-1,"55434":-1,"55435":-1,"55436":4065,"55437":-1,"55438":4063,"55439":-1,"55440":0,"55441":-1,"55442":-1,"55443":-1,"55444":-1,"55445":-1,"55446":-1,"55447":-1,"55448":-1,"55449":0,"55450":-1,"55451":-1,"55452":-1,"55453":-1,"55454":-1,"55455":-1,"55456":-1,"55457":-1,"55458":4067,"55459":-1,"55460":-1,"55461":-1,"55462":-1,"55463":-1,"55464":-1,"55465":-1,"55466":-1,"55467":-1,"55468":-1,"55469":-1,"55470":-1,"55471":-1,"55472":-1,"55473":-1,"55474":-1,"55475":-1,"55476":-1,"55477":-1,"55478":-1,"55479":-1,"55480":-1,"55481":-1,"55482":4065,"55483":0,"55484":-1,"55485":-1,"55486":4065,"55487":-1,"55488":4064,"55489":-1,"55490":-1,"55491":-1,"55492":-1,"55493":-1,"55494":0,"55495":4064,"55496":-1,"55497":-1,"55498":-1,"55499":-1,"55500":-1,"55501":-1,"55502":-1,"55503":-1,"55504":-1,"55505":-1,"55506":4066,"55507":-1,"55508":-1,"55509":-1,"55510":0,"55511":-1,"55512":-1,"55513":-1,"55514":4063,"55515":-1,"55516":-1,"55517":-1,"55518":-1,"55519":-1,"55520":-1,"55521":-1,"55522":-1,"55523":-1,"55524":4068,"55525":-1,"55526":-1,"55527":-1,"55528":-1,"55529":-1,"55530":-1,"55531":-1,"55532":-1,"55533":4066,"55534":-1,"55535":-1,"55536":4066,"55537":-1,"55538":-1,"55539":-1,"55540":-1,"55541":-1,"55542":-1,"55543":-1,"55544":-1,"55545":-1,"55546":4067,"55547":4066,"55548":-1,"55549":-1,"55550":-1,"55551":-1,"55552":4067,"55553":4064,"55554":-1,"55555":-1,"55556":-1,"55557":-1,"55558":-1,"55559":-1,"55560":-1,"55561":-1,"55562":-1,"55563":-1,"55564":-1,"55565":-1,"55566":-1,"55567":-1,"55568":-1,"55569":4065,"55570":-1,"55571":4064,"55572":0,"55573":4067,"55574":-1,"55575":-1,"55576":-1,"55577":-1,"55578":-1,"55579":-1,"55580":-1,"55581":-1,"55582":-1,"55583":-1,"55584":-1,"55585":0,"55586":-1,"55587":-1,"55588":-1,"55589":4063,"55590":-1,"55591":-1,"55592":-1,"55593":4067,"55594":-1,"55595":-1,"55596":-1,"55597":-1,"55598":-1,"55599":-1,"55600":-1,"55601":-1,"55602":-1,"55603":-1,"55604":4063,"55605":-1,"55606":4063,"55607":-1,"55608":4067,"55609":-1,"55610":4063,"55611":-1,"55612":-1,"55613":-1,"55614":-1,"55615":-1,"55616":-1,"55617":-1,"55618":-1,"55619":-1,"55620":-1,"55621":-1,"55622":-1,"55623":-1,"55624":-1,"55625":-1,"55626":-1,"55627":-1,"55628":-1,"55629":-1,"55630":-1,"55631":-1,"55632":-1,"55633":-1,"55634":4066,"55635":-1,"55636":-1,"55637":-1,"55638":-1,"55639":-1,"55640":4066,"55641":-1,"55642":-1,"55643":-1,"55644":-1,"55645":-1,"55646":-1,"55647":-1,"55648":-1,"55649":-1,"55650":-1,"55651":-1,"55652":4068,"55653":-1,"55654":-1,"55655":-1,"55656":-1,"55657":-1,"55658":-1,"55659":4067,"55660":-1,"55661":-1,"55662":-1,"55663":-1,"55664":-1,"55665":-1,"55666":-1,"55667":-1,"55668":-1,"55669":-1,"55670":-1,"55671":-1,"55672":4066,"55673":-1,"55674":-1,"55675":4066,"55676":-1,"55677":-1,"55678":-1,"55679":-1,"55680":4063,"55681":4068,"55682":-1,"55683":-1,"55684":-1,"55685":-1,"55686":-1,"55687":-1,"55688":0,"55689":4066,"55690":-1,"55691":-1,"55692":-1,"55693":4064,"55694":-1,"55695":-1,"55696":-1,"55697":-1,"55698":-1,"55699":-1,"55700":-1,"55701":-1,"55702":-1,"55703":4065,"55704":-1,"55705":-1,"55706":-1,"55707":-1,"55708":-1,"55709":4066,"55710":-1,"55711":4064,"55712":-1,"55713":-1,"55714":-1,"55715":-1,"55716":-1,"55717":-1,"55718":-1,"55719":-1,"55720":-1,"55721":-1,"55722":-1,"55723":4066,"55724":-1,"55725":-1,"55726":-1,"55727":-1,"55728":-1,"55729":-1,"55730":4064,"55731":-1,"55732":0,"55733":-1,"55734":-1,"55735":-1,"55736":-1,"55737":-1,"55738":-1,"55739":-1,"55740":-1,"55741":-1,"55742":-1,"55743":4064,"55744":-1,"55745":-1,"55746":-1,"55747":-1,"55748":4065,"55749":-1,"55750":-1,"55751":-1,"55752":-1,"55753":-1,"55754":0,"55755":-1,"55756":-1,"55757":-1,"55758":-1,"55759":-1,"55760":-1,"55761":-1,"55762":-1,"55763":-1,"55764":-1,"55765":4067,"55766":-1,"55767":-1,"55768":-1,"55769":-1,"55770":-1,"55771":-1,"55772":-1,"55773":-1,"55774":-1,"55775":-1,"55776":-1,"55777":-1,"55778":-1,"55779":-1,"55780":-1,"55781":0,"55782":-1,"55783":-1,"55784":-1,"55785":4066,"55786":-1,"55787":-1,"55788":-1,"55789":-1,"55790":4064,"55791":-1,"55792":-1,"55793":-1,"55794":-1,"55795":-1,"55796":-1,"55797":4063,"55798":-1,"55799":-1,"55800":-1,"55801":-1,"55802":-1,"55803":-1,"55804":-1,"55805":-1,"55806":-1,"55807":-1,"55808":-1,"55809":4064,"55810":-1,"55811":-1,"55812":-1,"55813":-1,"55814":-1,"55815":-1,"55816":-1,"55817":0,"55818":-1,"55819":-1,"55820":-1,"55821":-1,"55822":-1,"55823":4064,"55824":-1,"55825":-1,"55826":-1,"55827":-1,"55828":-1,"55829":-1,"55830":-1,"55831":-1,"55832":-1,"55833":-1,"55834":-1,"55835":-1,"55836":-1,"55837":-1,"55838":-1,"55839":-1,"55840":-1,"55841":-1,"55842":-1,"55843":4065,"55844":-1,"55845":-1,"55846":-1,"55847":-1,"55848":-1,"55849":-1,"55850":-1,"55851":-1,"55852":-1,"55853":-1,"55854":-1,"55855":-1,"55856":-1,"55857":-1,"55858":-1,"55859":-1,"55860":-1,"55861":4066,"55862":-1,"55863":-1,"55864":4065,"55865":-1,"55866":-1,"55867":4064,"55868":-1,"55869":-1,"55870":-1,"55871":-1,"55872":-1,"55873":4065,"55874":-1,"55875":-1,"55876":-1,"55877":-1,"55878":-1,"55879":-1,"55880":-1,"55881":-1,"55882":-1,"55883":-1,"55884":-1,"55885":4064,"55886":4068,"55887":4066,"55888":-1,"55889":4064,"55890":-1,"55891":4065,"55892":-1,"55893":-1,"55894":-1,"55895":-1,"55896":-1,"55897":-1,"55898":0,"55899":-1,"55900":-1,"55901":4068,"55902":-1,"55903":-1,"55904":-1,"55905":-1,"55906":-1,"55907":-1,"55908":-1,"55909":-1,"55910":-1,"55911":-1,"55912":-1,"55913":-1,"55914":-1,"55915":-1,"55916":4065,"55917":-1,"55918":4066,"55919":-1,"55920":0,"55921":-1,"55922":-1,"55923":-1,"55924":-1,"55925":-1,"55926":-1,"55927":-1,"55928":-1,"55929":-1,"55930":-1,"55931":4067,"55932":-1,"55933":-1,"55934":-1,"55935":-1,"55936":-1,"55937":-1,"55938":-1,"55939":-1,"55940":-1,"55941":-1,"55942":-1,"55943":4065,"55944":-1,"55945":4066,"55946":-1,"55947":-1,"55948":-1,"55949":-1,"55950":-1,"55951":0,"55952":4067,"55953":-1,"55954":-1,"55955":-1,"55956":-1,"55957":-1,"55958":-1,"55959":-1,"55960":-1,"55961":-1,"55962":-1,"55963":-1,"55964":-1,"55965":-1,"55966":-1,"55967":-1,"55968":-1,"55969":-1,"55970":-1,"55971":-1,"55972":-1,"55973":-1,"55974":-1,"55975":-1,"55976":4065,"55977":-1,"55978":-1,"55979":-1,"55980":-1,"55981":-1,"55982":-1,"55983":4063,"55984":-1,"55985":-1,"55986":-1,"55987":-1,"55988":-1,"55989":-1,"55990":-1,"55991":-1,"55992":-1,"55993":-1,"55994":4065,"55995":-1,"55996":-1,"55997":-1,"55998":-1,"55999":-1,"56000":-1,"56001":0,"56002":-1,"56003":-1,"56004":-1,"56005":-1,"56006":-1,"56007":-1,"56008":-1,"56009":-1,"56010":-1,"56011":-1,"56012":0,"56013":-1,"56014":-1,"56015":-1,"56016":-1,"56017":-1,"56018":-1,"56019":0,"56020":-1,"56021":4066,"56022":-1,"56023":-1,"56024":-1,"56025":-1,"56026":-1,"56027":-1,"56028":-1,"56029":-1,"56030":-1,"56031":-1,"56032":-1,"56033":-1,"56034":-1,"56035":0,"56036":-1,"56037":-1,"56038":-1,"56039":-1,"56040":4064,"56041":-1,"56042":-1,"56043":-1,"56044":-1,"56045":4066,"56046":-1,"56047":-1,"56048":-1,"56049":4063,"56050":-1,"56051":-1,"56052":-1,"56053":-1,"56054":-1,"56055":-1,"56056":-1,"56057":-1,"56058":-1,"56059":4066,"56060":-1,"56061":-1,"56062":-1,"56063":-1,"56064":-1,"56065":-1,"56066":4065,"56067":-1,"56068":-1,"56069":-1,"56070":-1,"56071":-1,"56072":4063,"56073":-1,"56074":-1,"56075":4065,"56076":-1,"56077":-1,"56078":4066,"56079":-1,"56080":-1,"56081":-1,"56082":-1,"56083":0,"56084":-1,"56085":-1,"56086":-1,"56087":-1,"56088":-1,"56089":-1,"56090":0,"56091":4067,"56092":-1,"56093":-1,"56094":-1,"56095":-1,"56096":0,"56097":-1,"56098":-1,"56099":-1,"56100":-1,"56101":-1,"56102":-1,"56103":-1,"56104":-1,"56105":-1,"56106":4067,"56107":4066,"56108":-1,"56109":-1,"56110":-1,"56111":-1,"56112":-1,"56113":-1,"56114":-1,"56115":-1,"56116":-1,"56117":-1,"56118":-1,"56119":-1,"56120":-1,"56121":0,"56122":-1,"56123":-1,"56124":-1,"56125":-1,"56126":-1,"56127":-1,"56128":-1,"56129":4066,"56130":-1,"56131":-1,"56132":-1,"56133":4068,"56134":-1,"56135":-1,"56136":-1,"56137":-1,"56138":-1,"56139":-1,"56140":-1,"56141":-1,"56142":-1,"56143":-1,"56144":-1,"56145":-1,"56146":-1,"56147":-1,"56148":-1,"56149":-1,"56150":4066,"56151":-1,"56152":-1,"56153":-1,"56154":4067,"56155":-1,"56156":-1,"56157":-1,"56158":-1,"56159":-1,"56160":-1,"56161":-1,"56162":-1,"56163":-1,"56164":-1,"56165":-1,"56166":-1,"56167":4066,"56168":4064,"56169":-1,"56170":-1,"56171":-1,"56172":-1,"56173":-1,"56174":0,"56175":-1,"56176":-1,"56177":-1,"56178":-1,"56179":-1,"56180":-1,"56181":-1,"56182":-1,"56183":-1,"56184":-1,"56185":-1,"56186":-1,"56187":4066,"56188":-1,"56189":-1,"56190":-1,"56191":-1,"56192":-1,"56193":-1,"56194":-1,"56195":-1,"56196":-1,"56197":-1,"56198":-1,"56199":-1,"56200":-1,"56201":0,"56202":-1,"56203":-1,"56204":-1,"56205":-1,"56206":-1,"56207":-1,"56208":-1,"56209":-1,"56210":-1,"56211":-1,"56212":-1,"56213":-1,"56214":-1,"56215":-1,"56216":4068,"56217":-1,"56218":-1,"56219":4065,"56220":-1,"56221":-1,"56222":-1,"56223":4064,"56224":4067,"56225":-1,"56226":-1,"56227":-1,"56228":4064,"56229":-1,"56230":-1,"56231":4066,"56232":4066,"56233":-1,"56234":-1,"56235":-1,"56236":-1,"56237":-1,"56238":-1,"56239":-1,"56240":-1,"56241":-1,"56242":-1,"56243":-1,"56244":-1,"56245":4068,"56246":4067,"56247":-1,"56248":-1,"56249":-1,"56250":-1,"56251":-1,"56252":-1,"56253":4064,"56254":-1,"56255":-1,"56256":-1,"56257":0,"56258":0,"56259":-1,"56260":-1,"56261":4066,"56262":-1,"56263":-1,"56264":-1,"56265":4065,"56266":-1,"56267":-1,"56268":-1,"56269":-1,"56270":-1,"56271":-1,"56272":-1,"56273":0,"56274":-1,"56275":-1,"56276":-1,"56277":-1,"56278":-1,"56279":-1,"56280":-1,"56281":-1,"56282":-1,"56283":-1,"56284":-1,"56285":-1,"56286":-1,"56287":4065,"56288":-1,"56289":4066,"56290":-1,"56291":-1,"56292":4068,"56293":4064,"56294":-1,"56295":-1,"56296":-1,"56297":-1,"56298":-1,"56299":-1,"56300":-1,"56301":-1,"56302":-1,"56303":4068,"56304":-1,"56305":-1,"56306":4066,"56307":-1,"56308":-1,"56309":-1,"56310":4063,"56311":-1,"56312":-1,"56313":-1,"56314":-1,"56315":4067,"56316":-1,"56317":-1,"56318":4066,"56319":4067,"56320":-1,"56321":-1,"56322":-1,"56323":-1,"56324":-1,"56325":-1,"56326":0,"56327":-1,"56328":-1,"56329":-1,"56330":-1,"56331":-1,"56332":-1,"56333":-1,"56334":4065,"56335":0,"56336":-1,"56337":4064,"56338":-1,"56339":-1,"56340":-1,"56341":4066,"56342":-1,"56343":-1,"56344":-1,"56345":-1,"56346":0,"56347":-1,"56348":-1,"56349":-1,"56350":-1,"56351":-1,"56352":-1,"56353":-1,"56354":-1,"56355":-1,"56356":-1,"56357":-1,"56358":-1,"56359":0,"56360":4063,"56361":0,"56362":-1,"56363":-1,"56364":-1,"56365":-1,"56366":-1,"56367":0,"56368":4064,"56369":-1,"56370":4065,"56371":-1,"56372":-1,"56373":4067,"56374":-1,"56375":-1,"56376":4065,"56377":0,"56378":-1,"56379":-1,"56380":-1,"56381":-1,"56382":-1,"56383":-1,"56384":-1,"56385":-1,"56386":-1,"56387":-1,"56388":-1,"56389":-1,"56390":-1,"56391":-1,"56392":-1,"56393":-1,"56394":-1,"56395":4068,"56396":-1,"56397":-1,"56398":-1,"56399":-1,"56400":-1,"56401":-1,"56402":-1,"56403":-1,"56404":4063,"56405":4064,"56406":4065,"56407":-1,"56408":-1,"56409":-1,"56410":4067,"56411":4067,"56412":-1,"56413":-1,"56414":-1,"56415":-1,"56416":-1,"56417":-1,"56418":-1,"56419":-1,"56420":4067,"56421":-1,"56422":4068,"56423":-1,"56424":-1,"56425":-1,"56426":-1,"56427":-1,"56428":-1,"56429":-1,"56430":-1,"56431":-1,"56432":-1,"56433":4067,"56434":4066,"56435":-1,"56436":-1,"56437":-1,"56438":-1,"56439":-1,"56440":-1,"56441":-1,"56442":-1,"56443":-1,"56444":-1,"56445":-1,"56446":-1,"56447":-1,"56448":-1,"56449":-1,"56450":-1,"56451":-1,"56452":-1,"56453":-1,"56454":-1,"56455":-1,"56456":-1,"56457":-1,"56458":-1,"56459":-1,"56460":-1,"56461":-1,"56462":-1,"56463":-1,"56464":-1,"56465":-1,"56466":-1,"56467":-1,"56468":-1,"56469":-1,"56470":-1,"56471":-1,"56472":4063,"56473":-1,"56474":-1,"56475":-1,"56476":-1,"56477":-1,"56478":-1,"56479":-1,"56480":-1,"56481":-1,"56482":-1,"56483":-1,"56484":-1,"56485":-1,"56486":-1,"56487":-1,"56488":-1,"56489":-1,"56490":-1,"56491":-1,"56492":-1,"56493":-1,"56494":-1,"56495":0,"56496":-1,"56497":-1,"56498":-1,"56499":-1,"56500":-1,"56501":-1,"56502":4066,"56503":-1,"56504":-1,"56505":4067,"56506":-1,"56507":4063,"56508":-1,"56509":4066,"56510":-1,"56511":-1,"56512":-1,"56513":-1,"56514":-1,"56515":-1,"56516":-1,"56517":-1,"56518":-1,"56519":-1,"56520":-1,"56521":-1,"56522":-1,"56523":-1,"56524":-1,"56525":-1,"56526":-1,"56527":0,"56528":-1,"56529":-1,"56530":4068,"56531":-1,"56532":-1,"56533":-1,"56534":-1,"56535":-1,"56536":4067,"56537":-1,"56538":-1,"56539":-1,"56540":-1,"56541":-1,"56542":-1,"56543":0,"56544":-1,"56545":-1,"56546":-1,"56547":-1,"56548":-1,"56549":-1,"56550":-1,"56551":-1,"56552":-1,"56553":-1,"56554":0,"56555":-1,"56556":-1,"56557":-1,"56558":-1,"56559":-1,"56560":-1,"56561":-1,"56562":-1,"56563":-1,"56564":-1,"56565":-1,"56566":-1,"56567":-1,"56568":-1,"56569":-1,"56570":-1,"56571":-1,"56572":4065,"56573":-1,"56574":-1,"56575":-1,"56576":-1,"56577":-1,"56578":4068,"56579":-1,"56580":-1,"56581":-1,"56582":-1,"56583":-1,"56584":4063,"56585":4066,"56586":-1,"56587":-1,"56588":-1,"56589":-1,"56590":-1,"56591":4066,"56592":-1,"56593":-1,"56594":-1,"56595":4063,"56596":-1,"56597":-1,"56598":-1,"56599":4065,"56600":-1,"56601":-1,"56602":-1,"56603":-1,"56604":4064,"56605":-1,"56606":-1,"56607":-1,"56608":-1,"56609":-1,"56610":-1,"56611":-1,"56612":-1,"56613":-1,"56614":-1,"56615":4068,"56616":4065,"56617":-1,"56618":-1,"56619":0,"56620":-1,"56621":-1,"56622":-1,"56623":-1,"56624":-1,"56625":-1,"56626":4065,"56627":-1,"56628":-1,"56629":-1,"56630":4065,"56631":-1,"56632":-1,"56633":-1,"56634":-1,"56635":-1,"56636":-1,"56637":-1,"56638":-1,"56639":-1,"56640":-1,"56641":-1,"56642":-1,"56643":-1,"56644":0,"56645":-1,"56646":-1,"56647":-1,"56648":-1,"56649":-1,"56650":-1,"56651":-1,"56652":-1,"56653":-1,"56654":-1,"56655":-1,"56656":-1,"56657":-1,"56658":-1,"56659":-1,"56660":-1,"56661":4064,"56662":-1,"56663":-1,"56664":-1,"56665":4066,"56666":-1,"56667":-1,"56668":-1,"56669":-1,"56670":-1,"56671":-1,"56672":-1,"56673":-1,"56674":-1,"56675":-1,"56676":-1,"56677":-1,"56678":-1,"56679":-1,"56680":-1,"56681":-1,"56682":-1,"56683":-1,"56684":-1,"56685":-1,"56686":-1,"56687":-1,"56688":-1,"56689":-1,"56690":-1,"56691":-1,"56692":-1,"56693":-1,"56694":-1,"56695":-1,"56696":4065,"56697":-1,"56698":-1,"56699":4067,"56700":-1,"56701":4067,"56702":-1,"56703":-1,"56704":-1,"56705":0,"56706":-1,"56707":4063,"56708":4067,"56709":-1,"56710":-1,"56711":-1,"56712":-1,"56713":-1,"56714":-1,"56715":-1,"56716":-1,"56717":4063,"56718":-1,"56719":-1,"56720":-1,"56721":-1,"56722":-1,"56723":-1,"56724":-1,"56725":-1,"56726":-1,"56727":-1,"56728":-1,"56729":-1,"56730":-1,"56731":4067,"56732":4064,"56733":-1,"56734":-1,"56735":-1,"56736":-1,"56737":-1,"56738":4065,"56739":-1,"56740":-1,"56741":-1,"56742":-1,"56743":4067,"56744":-1,"56745":-1,"56746":-1,"56747":-1,"56748":-1,"56749":-1,"56750":-1,"56751":-1,"56752":-1,"56753":-1,"56754":-1,"56755":-1,"56756":-1,"56757":-1,"56758":-1,"56759":4064,"56760":-1,"56761":-1,"56762":-1,"56763":-1,"56764":-1,"56765":-1,"56766":-1,"56767":4065,"56768":-1,"56769":-1,"56770":-1,"56771":-1,"56772":-1,"56773":-1,"56774":-1,"56775":-1,"56776":-1,"56777":-1,"56778":-1,"56779":4064,"56780":-1,"56781":-1,"56782":-1,"56783":-1,"56784":-1,"56785":-1,"56786":0,"56787":0,"56788":4067,"56789":-1,"56790":-1,"56791":-1,"56792":-1,"56793":-1,"56794":4063,"56795":-1,"56796":-1,"56797":-1,"56798":-1,"56799":-1,"56800":4064,"56801":-1,"56802":-1,"56803":-1,"56804":-1,"56805":-1,"56806":-1,"56807":-1,"56808":4063,"56809":-1,"56810":-1,"56811":4064,"56812":-1,"56813":-1,"56814":-1,"56815":-1,"56816":-1,"56817":-1,"56818":-1,"56819":-1,"56820":-1,"56821":-1,"56822":-1,"56823":-1,"56824":4068,"56825":-1,"56826":4067,"56827":-1,"56828":-1,"56829":-1,"56830":4067,"56831":-1,"56832":4067,"56833":-1,"56834":-1,"56835":-1,"56836":-1,"56837":-1,"56838":-1,"56839":4065,"56840":-1,"56841":0,"56842":-1,"56843":-1,"56844":-1,"56845":-1,"56846":-1,"56847":0,"56848":-1,"56849":4065,"56850":-1,"56851":-1,"56852":-1,"56853":-1,"56854":-1,"56855":-1,"56856":-1,"56857":-1,"56858":-1,"56859":-1,"56860":-1,"56861":-1,"56862":-1,"56863":-1,"56864":-1,"56865":-1,"56866":-1,"56867":-1,"56868":-1,"56869":-1,"56870":-1,"56871":-1,"56872":-1,"56873":4064,"56874":-1,"56875":-1,"56876":4066,"56877":-1,"56878":-1,"56879":-1,"56880":-1,"56881":-1,"56882":4063,"56883":-1,"56884":-1,"56885":-1,"56886":-1,"56887":-1,"56888":-1,"56889":-1,"56890":-1,"56891":-1,"56892":-1,"56893":4065,"56894":-1,"56895":-1,"56896":-1,"56897":-1,"56898":4067,"56899":-1,"56900":-1,"56901":-1,"56902":-1,"56903":4067,"56904":-1,"56905":-1,"56906":-1,"56907":-1,"56908":-1,"56909":-1,"56910":-1,"56911":-1,"56912":-1,"56913":-1,"56914":-1,"56915":-1,"56916":-1,"56917":-1,"56918":-1,"56919":-1,"56920":-1,"56921":-1,"56922":0,"56923":-1,"56924":-1,"56925":-1,"56926":-1,"56927":-1,"56928":-1,"56929":-1,"56930":-1,"56931":-1,"56932":-1,"56933":-1,"56934":-1,"56935":-1,"56936":-1,"56937":-1,"56938":4067,"56939":0,"56940":-1,"56941":-1,"56942":-1,"56943":-1,"56944":-1,"56945":-1,"56946":4066,"56947":-1,"56948":-1,"56949":-1,"56950":-1,"56951":-1,"56952":-1,"56953":-1,"56954":-1,"56955":-1,"56956":-1,"56957":-1,"56958":-1,"56959":-1,"56960":-1,"56961":4064,"56962":-1,"56963":-1,"56964":-1,"56965":-1,"56966":-1,"56967":-1,"56968":-1,"56969":-1,"56970":-1,"56971":-1,"56972":-1,"56973":-1,"56974":-1,"56975":-1,"56976":-1,"56977":4065,"56978":-1,"56979":4067,"56980":-1,"56981":-1,"56982":-1,"56983":-1,"56984":-1,"56985":-1,"56986":4065,"56987":-1,"56988":-1,"56989":-1,"56990":-1,"56991":-1,"56992":-1,"56993":-1,"56994":-1,"56995":-1,"56996":-1,"56997":-1,"56998":-1,"56999":0,"57000":0,"57001":-1,"57002":-1,"57003":4065,"57004":-1,"57005":-1,"57006":-1,"57007":-1,"57008":-1,"57009":-1,"57010":-1,"57011":-1,"57012":-1,"57013":-1,"57014":4068,"57015":4066,"57016":-1,"57017":-1,"57018":4064,"57019":-1,"57020":-1,"57021":4064,"57022":-1,"57023":-1,"57024":-1,"57025":0,"57026":4066,"57027":-1,"57028":4067,"57029":4067,"57030":-1,"57031":-1,"57032":-1,"57033":-1,"57034":-1,"57035":-1,"57036":4063,"57037":-1,"57038":-1,"57039":-1,"57040":4067,"57041":4065,"57042":-1,"57043":-1,"57044":-1,"57045":-1,"57046":-1,"57047":-1,"57048":4066,"57049":4068,"57050":-1,"57051":-1,"57052":-1,"57053":4063,"57054":-1,"57055":-1,"57056":-1,"57057":-1,"57058":-1,"57059":-1,"57060":-1,"57061":-1,"57062":-1,"57063":-1,"57064":-1,"57065":-1,"57066":-1,"57067":-1,"57068":-1,"57069":-1,"57070":-1,"57071":-1,"57072":-1,"57073":-1,"57074":-1,"57075":-1,"57076":4064,"57077":-1,"57078":-1,"57079":-1,"57080":-1,"57081":4067,"57082":-1,"57083":-1,"57084":-1,"57085":-1,"57086":-1,"57087":-1,"57088":-1,"57089":-1,"57090":-1,"57091":-1,"57092":-1,"57093":-1,"57094":-1,"57095":-1,"57096":-1,"57097":-1,"57098":0,"57099":-1,"57100":-1,"57101":-1,"57102":-1,"57103":-1,"57104":-1,"57105":-1,"57106":-1,"57107":-1,"57108":-1,"57109":-1,"57110":-1,"57111":-1,"57112":-1,"57113":-1,"57114":-1,"57115":-1,"57116":-1,"57117":-1,"57118":-1,"57119":-1,"57120":-1,"57121":-1,"57122":-1,"57123":-1,"57124":-1,"57125":-1,"57126":-1,"57127":-1,"57128":4063,"57129":-1,"57130":-1,"57131":-1,"57132":-1,"57133":-1,"57134":-1,"57135":4067,"57136":-1,"57137":-1,"57138":4063,"57139":-1,"57140":-1,"57141":-1,"57142":-1,"57143":-1,"57144":-1,"57145":-1,"57146":4067,"57147":-1,"57148":-1,"57149":-1,"57150":4065,"57151":-1,"57152":-1,"57153":-1,"57154":-1,"57155":4065,"57156":-1,"57157":-1,"57158":-1,"57159":-1,"57160":-1,"57161":-1,"57162":-1,"57163":-1,"57164":-1,"57165":-1,"57166":-1,"57167":4063,"57168":-1,"57169":-1,"57170":-1,"57171":-1,"57172":-1,"57173":-1,"57174":-1,"57175":-1,"57176":-1,"57177":-1,"57178":-1,"57179":-1,"57180":-1,"57181":-1,"57182":-1,"57183":-1,"57184":-1,"57185":4066,"57186":-1,"57187":-1,"57188":-1,"57189":-1,"57190":-1,"57191":-1,"57192":-1,"57193":-1,"57194":4063,"57195":-1,"57196":-1,"57197":-1,"57198":4064,"57199":0,"57200":4067,"57201":-1,"57202":-1,"57203":-1,"57204":-1,"57205":-1,"57206":-1,"57207":-1,"57208":-1,"57209":-1,"57210":-1,"57211":-1,"57212":4067,"57213":4068,"57214":-1,"57215":-1,"57216":-1,"57217":-1,"57218":-1,"57219":-1,"57220":-1,"57221":-1,"57222":-1,"57223":-1,"57224":-1,"57225":-1,"57226":-1,"57227":-1,"57228":4064,"57229":-1,"57230":-1,"57231":-1,"57232":-1,"57233":-1,"57234":-1,"57235":4067,"57236":-1,"57237":-1,"57238":-1,"57239":-1,"57240":-1,"57241":-1,"57242":-1,"57243":-1,"57244":-1,"57245":4066,"57246":4064,"57247":4064,"57248":-1,"57249":-1,"57250":-1,"57251":4065,"57252":-1,"57253":-1,"57254":-1,"57255":-1,"57256":-1,"57257":-1,"57258":-1,"57259":-1,"57260":-1,"57261":-1,"57262":-1,"57263":-1,"57264":-1,"57265":-1,"57266":-1,"57267":4067,"57268":-1,"57269":4064,"57270":-1,"57271":-1,"57272":-1,"57273":-1,"57274":-1,"57275":-1,"57276":-1,"57277":-1,"57278":-1,"57279":4067,"57280":4065,"57281":-1,"57282":-1,"57283":-1,"57284":-1,"57285":-1,"57286":4063,"57287":4064,"57288":-1,"57289":-1,"57290":-1,"57291":4065,"57292":-1,"57293":-1,"57294":-1,"57295":-1,"57296":-1,"57297":-1,"57298":-1,"57299":4067,"57300":-1,"57301":-1,"57302":-1,"57303":4064,"57304":-1,"57305":-1,"57306":-1,"57307":-1,"57308":-1,"57309":-1,"57310":-1,"57311":-1,"57312":-1,"57313":-1,"57314":4065,"57315":-1,"57316":-1,"57317":-1,"57318":-1,"57319":-1,"57320":4064,"57321":-1,"57322":-1,"57323":-1,"57324":4064,"57325":-1,"57326":-1,"57327":-1,"57328":-1,"57329":-1,"57330":-1,"57331":-1,"57332":-1,"57333":-1,"57334":4066,"57335":-1,"57336":-1,"57337":-1,"57338":-1,"57339":-1,"57340":-1,"57341":-1,"57342":-1,"57343":-1,"57344":-1,"57345":-1,"57346":-1,"57347":-1,"57348":-1,"57349":0,"57350":-1,"57351":-1,"57352":-1,"57353":-1,"57354":-1,"57355":-1,"57356":-1,"57357":4066,"57358":-1,"57359":4063,"57360":-1,"57361":-1,"57362":4064,"57363":-1,"57364":-1,"57365":4065,"57366":-1,"57367":-1,"57368":-1,"57369":-1,"57370":-1,"57371":-1,"57372":-1,"57373":4064,"57374":-1,"57375":-1,"57376":-1,"57377":-1,"57378":-1,"57379":-1,"57380":-1,"57381":4065,"57382":-1,"57383":-1,"57384":-1,"57385":-1,"57386":-1,"57387":-1,"57388":-1,"57389":-1,"57390":-1,"57391":-1,"57392":-1,"57393":-1,"57394":-1,"57395":-1,"57396":-1,"57397":4066,"57398":-1,"57399":-1,"57400":-1,"57401":-1,"57402":-1,"57403":-1,"57404":4065,"57405":-1,"57406":-1,"57407":-1,"57408":-1,"57409":-1,"57410":-1,"57411":-1,"57412":-1,"57413":-1,"57414":-1,"57415":-1,"57416":-1,"57417":-1,"57418":4067,"57419":4067,"57420":-1,"57421":-1,"57422":-1,"57423":-1,"57424":-1,"57425":-1,"57426":-1,"57427":-1,"57428":4063,"57429":4065,"57430":-1,"57431":-1,"57432":-1,"57433":-1,"57434":-1,"57435":-1,"57436":-1,"57437":-1,"57438":-1,"57439":-1,"57440":-1,"57441":-1,"57442":-1,"57443":-1,"57444":-1,"57445":-1,"57446":-1,"57447":0,"57448":-1,"57449":-1,"57450":-1,"57451":-1,"57452":4067,"57453":-1,"57454":-1,"57455":4065,"57456":-1,"57457":-1,"57458":-1,"57459":-1,"57460":-1,"57461":-1,"57462":4067,"57463":4064,"57464":-1,"57465":-1,"57466":4065,"57467":-1,"57468":-1,"57469":-1,"57470":-1,"57471":-1,"57472":-1,"57473":-1,"57474":-1,"57475":-1,"57476":-1,"57477":-1,"57478":4068,"57479":-1,"57480":-1,"57481":-1,"57482":4067,"57483":-1,"57484":-1,"57485":-1,"57486":-1,"57487":-1,"57488":-1,"57489":-1,"57490":-1,"57491":-1,"57492":0,"57493":-1,"57494":-1,"57495":-1,"57496":-1,"57497":-1,"57498":-1,"57499":-1,"57500":-1,"57501":4066,"57502":-1,"57503":4068,"57504":-1,"57505":-1,"57506":-1,"57507":-1,"57508":-1,"57509":-1,"57510":-1,"57511":-1,"57512":-1,"57513":-1,"57514":-1,"57515":-1,"57516":-1,"57517":4066,"57518":-1,"57519":-1,"57520":-1,"57521":-1,"57522":-1,"57523":0,"57524":4065,"57525":-1,"57526":-1,"57527":-1,"57528":-1,"57529":-1,"57530":-1,"57531":-1,"57532":-1,"57533":0,"57534":-1,"57535":4067,"57536":-1,"57537":-1,"57538":-1,"57539":-1,"57540":-1,"57541":4067,"57542":-1,"57543":-1,"57544":-1,"57545":-1,"57546":-1,"57547":-1,"57548":-1,"57549":4064,"57550":4063,"57551":-1,"57552":-1,"57553":-1,"57554":4064,"57555":-1,"57556":-1,"57557":-1,"57558":-1,"57559":-1,"57560":-1,"57561":-1,"57562":-1,"57563":-1,"57564":-1,"57565":-1,"57566":-1,"57567":-1,"57568":4064,"57569":4065,"57570":-1,"57571":-1,"57572":-1,"57573":-1,"57574":-1,"57575":-1,"57576":-1,"57577":-1,"57578":-1,"57579":-1,"57580":4064,"57581":-1,"57582":-1,"57583":-1,"57584":-1,"57585":-1,"57586":-1,"57587":-1,"57588":-1,"57589":-1,"57590":-1,"57591":-1,"57592":-1,"57593":-1,"57594":-1,"57595":-1,"57596":-1,"57597":4065,"57598":-1,"57599":-1,"57600":4063,"57601":-1,"57602":-1,"57603":-1,"57604":-1,"57605":-1,"57606":4068,"57607":-1,"57608":-1,"57609":4064,"57610":-1,"57611":4066,"57612":-1,"57613":-1,"57614":-1,"57615":4064,"57616":-1,"57617":-1,"57618":0,"57619":-1,"57620":4063,"57621":-1,"57622":-1,"57623":-1,"57624":-1,"57625":-1,"57626":-1,"57627":-1,"57628":4064,"57629":-1,"57630":-1,"57631":4065,"57632":-1,"57633":-1,"57634":-1,"57635":-1,"57636":-1,"57637":-1,"57638":4064,"57639":-1,"57640":4067,"57641":0,"57642":-1,"57643":-1,"57644":-1,"57645":-1,"57646":-1,"57647":-1,"57648":4065,"57649":-1,"57650":0,"57651":-1,"57652":-1,"57653":-1,"57654":-1,"57655":-1,"57656":-1,"57657":-1,"57658":-1,"57659":-1,"57660":4067,"57661":-1,"57662":-1,"57663":-1,"57664":-1,"57665":-1,"57666":-1,"57667":-1,"57668":-1,"57669":-1,"57670":-1,"57671":-1,"57672":-1,"57673":-1,"57674":-1,"57675":-1,"57676":-1,"57677":-1,"57678":-1,"57679":-1,"57680":-1,"57681":-1,"57682":-1,"57683":-1,"57684":-1,"57685":-1,"57686":-1,"57687":-1,"57688":-1,"57689":4066,"57690":-1,"57691":4066,"57692":-1,"57693":4066,"57694":-1,"57695":-1,"57696":-1,"57697":-1,"57698":-1,"57699":-1,"57700":-1,"57701":-1,"57702":-1,"57703":-1,"57704":-1,"57705":-1,"57706":-1,"57707":-1,"57708":-1,"57709":-1,"57710":4066,"57711":-1,"57712":-1,"57713":-1,"57714":-1,"57715":-1,"57716":-1,"57717":-1,"57718":-1,"57719":-1,"57720":-1,"57721":-1,"57722":-1,"57723":-1,"57724":-1,"57725":-1,"57726":0,"57727":-1,"57728":-1,"57729":-1,"57730":-1,"57731":-1,"57732":-1,"57733":-1,"57734":-1,"57735":-1,"57736":-1,"57737":4066,"57738":-1,"57739":-1,"57740":-1,"57741":-1,"57742":-1,"57743":-1,"57744":-1,"57745":-1,"57746":-1,"57747":-1,"57748":-1,"57749":-1,"57750":-1,"57751":-1,"57752":0,"57753":-1,"57754":-1,"57755":-1,"57756":-1,"57757":-1,"57758":-1,"57759":4066,"57760":-1,"57761":-1,"57762":4068,"57763":-1,"57764":4067,"57765":-1,"57766":-1,"57767":-1,"57768":-1,"57769":-1,"57770":-1,"57771":-1,"57772":-1,"57773":-1,"57774":-1,"57775":-1,"57776":0,"57777":-1,"57778":-1,"57779":-1,"57780":-1,"57781":-1,"57782":4065,"57783":-1,"57784":-1,"57785":-1,"57786":-1,"57787":-1,"57788":-1,"57789":4063,"57790":-1,"57791":-1,"57792":-1,"57793":4065,"57794":4066,"57795":-1,"57796":4067,"57797":-1,"57798":-1,"57799":-1,"57800":-1,"57801":-1,"57802":-1,"57803":-1,"57804":-1,"57805":-1,"57806":4066,"57807":-1,"57808":4067,"57809":-1,"57810":4063,"57811":-1,"57812":-1,"57813":-1,"57814":-1,"57815":-1,"57816":-1,"57817":-1,"57818":-1,"57819":-1,"57820":-1,"57821":-1,"57822":-1,"57823":4064,"57824":-1,"57825":-1,"57826":-1,"57827":-1,"57828":-1,"57829":-1,"57830":-1,"57831":-1,"57832":-1,"57833":-1,"57834":-1,"57835":-1,"57836":-1,"57837":-1,"57838":-1,"57839":4068,"57840":-1,"57841":-1,"57842":-1,"57843":-1,"57844":-1,"57845":-1,"57846":0,"57847":-1,"57848":-1,"57849":-1,"57850":-1,"57851":-1,"57852":-1,"57853":-1,"57854":-1,"57855":-1,"57856":-1,"57857":-1,"57858":-1,"57859":4066,"57860":-1,"57861":-1,"57862":4068,"57863":-1,"57864":4066,"57865":-1,"57866":4068,"57867":-1,"57868":4066,"57869":-1,"57870":-1,"57871":-1,"57872":-1,"57873":-1,"57874":-1,"57875":-1,"57876":-1,"57877":-1,"57878":-1,"57879":-1,"57880":-1,"57881":-1,"57882":-1,"57883":-1,"57884":-1,"57885":-1,"57886":-1,"57887":-1,"57888":-1,"57889":4066,"57890":-1,"57891":-1,"57892":-1,"57893":-1,"57894":4067,"57895":-1,"57896":-1,"57897":-1,"57898":-1,"57899":-1,"57900":-1,"57901":-1,"57902":-1,"57903":-1,"57904":4066,"57905":-1,"57906":-1,"57907":-1,"57908":4063,"57909":-1,"57910":-1,"57911":-1,"57912":-1,"57913":0,"57914":4066,"57915":-1,"57916":-1,"57917":-1,"57918":-1,"57919":-1,"57920":-1,"57921":-1,"57922":-1,"57923":-1,"57924":-1,"57925":-1,"57926":-1,"57927":-1,"57928":4066,"57929":-1,"57930":-1,"57931":-1,"57932":-1,"57933":-1,"57934":-1,"57935":-1,"57936":4065,"57937":-1,"57938":-1,"57939":-1,"57940":4068,"57941":4066,"57942":-1,"57943":-1,"57944":0,"57945":-1,"57946":-1,"57947":-1,"57948":4065,"57949":-1,"57950":4065,"57951":4064,"57952":-1,"57953":-1,"57954":0,"57955":-1,"57956":-1,"57957":-1,"57958":-1,"57959":-1,"57960":-1,"57961":-1,"57962":-1,"57963":4065,"57964":-1,"57965":-1,"57966":-1,"57967":-1,"57968":-1,"57969":-1,"57970":-1,"57971":-1,"57972":-1,"57973":-1,"57974":-1,"57975":-1,"57976":4064,"57977":-1,"57978":-1,"57979":4065,"57980":-1,"57981":-1,"57982":-1,"57983":-1,"57984":-1,"57985":-1,"57986":-1,"57987":-1,"57988":-1,"57989":-1,"57990":-1,"57991":-1,"57992":-1,"57993":-1,"57994":-1,"57995":-1,"57996":-1,"57997":-1,"57998":-1,"57999":0,"58000":-1,"58001":-1,"58002":-1,"58003":-1,"58004":-1,"58005":-1,"58006":-1,"58007":-1,"58008":-1,"58009":-1,"58010":4067,"58011":-1,"58012":-1,"58013":4066,"58014":-1,"58015":-1,"58016":-1,"58017":4068,"58018":-1,"58019":-1,"58020":4065,"58021":-1,"58022":-1,"58023":-1,"58024":-1,"58025":-1,"58026":-1,"58027":4065,"58028":-1,"58029":-1,"58030":-1,"58031":-1,"58032":-1,"58033":-1,"58034":-1,"58035":-1,"58036":0,"58037":4067,"58038":4066,"58039":4064,"58040":-1,"58041":-1,"58042":-1,"58043":-1,"58044":-1,"58045":4063,"58046":-1,"58047":-1,"58048":-1,"58049":0,"58050":-1,"58051":4065,"58052":-1,"58053":-1,"58054":-1,"58055":-1,"58056":4064,"58057":-1,"58058":-1,"58059":-1,"58060":-1,"58061":-1,"58062":-1,"58063":-1,"58064":4067,"58065":-1,"58066":-1,"58067":-1,"58068":0,"58069":-1,"58070":-1,"58071":-1,"58072":-1,"58073":-1,"58074":-1,"58075":4067,"58076":-1,"58077":-1,"58078":-1,"58079":-1,"58080":-1,"58081":-1,"58082":-1,"58083":-1,"58084":-1,"58085":-1,"58086":4068,"58087":4066,"58088":-1,"58089":-1,"58090":-1,"58091":-1,"58092":-1,"58093":-1,"58094":-1,"58095":-1,"58096":-1,"58097":-1,"58098":-1,"58099":-1,"58100":-1,"58101":-1,"58102":-1,"58103":-1,"58104":4066,"58105":-1,"58106":-1,"58107":-1,"58108":-1,"58109":-1,"58110":-1,"58111":-1,"58112":-1,"58113":-1,"58114":-1,"58115":-1,"58116":-1,"58117":-1,"58118":-1,"58119":-1,"58120":4063,"58121":-1,"58122":-1,"58123":-1,"58124":-1,"58125":-1,"58126":-1,"58127":-1,"58128":-1,"58129":-1,"58130":-1,"58131":-1,"58132":-1,"58133":-1,"58134":-1,"58135":-1,"58136":-1,"58137":-1,"58138":-1,"58139":4068,"58140":-1,"58141":4068,"58142":4065,"58143":-1,"58144":-1,"58145":-1,"58146":-1,"58147":-1,"58148":-1,"58149":-1,"58150":-1,"58151":4066,"58152":-1,"58153":-1,"58154":-1,"58155":-1,"58156":-1,"58157":-1,"58158":-1,"58159":-1,"58160":-1,"58161":-1,"58162":-1,"58163":-1,"58164":-1,"58165":-1,"58166":-1,"58167":-1,"58168":-1,"58169":-1,"58170":-1,"58171":-1,"58172":-1,"58173":4068,"58174":-1,"58175":-1,"58176":4067,"58177":-1,"58178":-1,"58179":4066,"58180":-1,"58181":-1,"58182":-1,"58183":-1,"58184":-1,"58185":-1,"58186":-1,"58187":-1,"58188":-1,"58189":-1,"58190":-1,"58191":4066,"58192":4064,"58193":-1,"58194":-1,"58195":-1,"58196":-1,"58197":-1,"58198":-1,"58199":-1,"58200":-1,"58201":-1,"58202":-1,"58203":-1,"58204":-1,"58205":4065,"58206":-1,"58207":-1,"58208":-1,"58209":-1,"58210":-1,"58211":4067,"58212":-1,"58213":-1,"58214":-1,"58215":-1,"58216":-1,"58217":-1,"58218":-1,"58219":4068,"58220":-1,"58221":-1,"58222":-1,"58223":-1,"58224":-1,"58225":-1,"58226":-1,"58227":4065,"58228":-1,"58229":-1,"58230":-1,"58231":-1,"58232":-1,"58233":-1,"58234":-1,"58235":-1,"58236":-1,"58237":-1,"58238":-1,"58239":-1,"58240":-1,"58241":4065,"58242":4067,"58243":-1,"58244":-1,"58245":-1,"58246":-1,"58247":-1,"58248":-1,"58249":-1,"58250":-1,"58251":-1,"58252":-1,"58253":-1,"58254":-1,"58255":-1,"58256":-1,"58257":-1,"58258":4066,"58259":0,"58260":-1,"58261":-1,"58262":-1,"58263":4064,"58264":-1,"58265":-1,"58266":-1,"58267":4065,"58268":-1,"58269":-1,"58270":-1,"58271":-1,"58272":-1,"58273":4067,"58274":-1,"58275":-1,"58276":4063,"58277":-1,"58278":-1,"58279":4063,"58280":4063,"58281":-1,"58282":-1,"58283":-1,"58284":-1,"58285":-1,"58286":-1,"58287":-1,"58288":4065,"58289":-1,"58290":-1,"58291":4067,"58292":-1,"58293":0,"58294":-1,"58295":-1,"58296":-1,"58297":-1,"58298":4064,"58299":-1,"58300":-1,"58301":-1,"58302":-1,"58303":-1,"58304":-1,"58305":-1,"58306":-1,"58307":-1,"58308":-1,"58309":-1,"58310":4063,"58311":-1,"58312":-1,"58313":-1,"58314":-1,"58315":-1,"58316":-1,"58317":-1,"58318":-1,"58319":-1,"58320":4067,"58321":-1,"58322":-1,"58323":-1,"58324":-1,"58325":-1,"58326":-1,"58327":-1,"58328":-1,"58329":-1,"58330":-1,"58331":0,"58332":-1,"58333":-1,"58334":-1,"58335":-1,"58336":-1,"58337":-1,"58338":-1,"58339":-1,"58340":-1,"58341":0,"58342":-1,"58343":4063,"58344":-1,"58345":-1,"58346":-1,"58347":-1,"58348":-1,"58349":-1,"58350":-1,"58351":-1,"58352":-1,"58353":-1,"58354":-1,"58355":-1,"58356":-1,"58357":-1,"58358":4068,"58359":-1,"58360":-1,"58361":-1,"58362":-1,"58363":-1,"58364":4067,"58365":-1,"58366":-1,"58367":-1,"58368":-1,"58369":-1,"58370":-1,"58371":-1,"58372":-1,"58373":4063,"58374":-1,"58375":-1,"58376":-1,"58377":-1,"58378":-1,"58379":4066,"58380":-1,"58381":-1,"58382":-1,"58383":-1,"58384":-1,"58385":-1,"58386":0,"58387":-1,"58388":-1,"58389":4064,"58390":-1,"58391":-1,"58392":-1,"58393":-1,"58394":-1,"58395":-1,"58396":4066,"58397":-1,"58398":4066,"58399":-1,"58400":-1,"58401":-1,"58402":-1,"58403":-1,"58404":-1,"58405":4063,"58406":-1,"58407":-1,"58408":-1,"58409":-1,"58410":-1,"58411":4065,"58412":4067,"58413":-1,"58414":-1,"58415":-1,"58416":4063,"58417":-1,"58418":-1,"58419":-1,"58420":-1,"58421":-1,"58422":-1,"58423":4065,"58424":-1,"58425":-1,"58426":-1,"58427":-1,"58428":4063,"58429":-1,"58430":-1,"58431":-1,"58432":-1,"58433":4067,"58434":-1,"58435":-1,"58436":-1,"58437":-1,"58438":-1,"58439":-1,"58440":-1,"58441":-1,"58442":-1,"58443":-1,"58444":-1,"58445":-1,"58446":-1,"58447":-1,"58448":4065,"58449":-1,"58450":-1,"58451":-1,"58452":-1,"58453":-1,"58454":-1,"58455":-1,"58456":-1,"58457":-1,"58458":-1,"58459":-1,"58460":-1,"58461":-1,"58462":-1,"58463":4065,"58464":-1,"58465":-1,"58466":-1,"58467":-1,"58468":-1,"58469":-1,"58470":-1,"58471":4068,"58472":-1,"58473":-1,"58474":-1,"58475":-1,"58476":-1,"58477":-1,"58478":-1,"58479":4067,"58480":-1,"58481":-1,"58482":-1,"58483":-1,"58484":-1,"58485":-1,"58486":-1,"58487":4067,"58488":-1,"58489":-1,"58490":4064,"58491":4065,"58492":-1,"58493":-1,"58494":-1,"58495":-1,"58496":-1,"58497":-1,"58498":-1,"58499":0,"58500":-1,"58501":-1,"58502":-1,"58503":-1,"58504":-1,"58505":4065,"58506":-1,"58507":-1,"58508":4067,"58509":-1,"58510":-1,"58511":4067,"58512":-1,"58513":-1,"58514":0,"58515":4065,"58516":4068,"58517":-1,"58518":4068,"58519":-1,"58520":-1,"58521":-1,"58522":-1,"58523":4068,"58524":-1,"58525":-1,"58526":-1,"58527":-1,"58528":-1,"58529":-1,"58530":-1,"58531":-1,"58532":-1,"58533":-1,"58534":-1,"58535":-1,"58536":-1,"58537":-1,"58538":-1,"58539":-1,"58540":0,"58541":-1,"58542":4067,"58543":-1,"58544":4067,"58545":-1,"58546":-1,"58547":-1,"58548":-1,"58549":-1,"58550":-1,"58551":-1,"58552":-1,"58553":-1,"58554":4068,"58555":-1,"58556":-1,"58557":4064,"58558":-1,"58559":4064,"58560":-1,"58561":-1,"58562":-1,"58563":-1,"58564":-1,"58565":-1,"58566":-1,"58567":-1,"58568":-1,"58569":-1,"58570":-1,"58571":-1,"58572":-1,"58573":-1,"58574":-1,"58575":4064,"58576":-1,"58577":0,"58578":-1,"58579":4067,"58580":-1,"58581":-1,"58582":-1,"58583":-1,"58584":-1,"58585":-1,"58586":4063,"58587":-1,"58588":4065,"58589":-1,"58590":-1,"58591":-1,"58592":-1,"58593":0,"58594":-1,"58595":-1,"58596":-1,"58597":4064,"58598":4063,"58599":-1,"58600":-1,"58601":-1,"58602":0,"58603":-1,"58604":-1,"58605":-1,"58606":-1,"58607":-1,"58608":-1,"58609":-1,"58610":-1,"58611":4067,"58612":-1,"58613":-1,"58614":-1,"58615":-1,"58616":-1,"58617":4066,"58618":-1,"58619":0,"58620":-1,"58621":-1,"58622":-1,"58623":-1,"58624":-1,"58625":-1,"58626":-1,"58627":-1,"58628":-1,"58629":-1,"58630":-1,"58631":-1,"58632":-1,"58633":-1,"58634":-1,"58635":4067,"58636":-1,"58637":-1,"58638":-1,"58639":-1,"58640":-1,"58641":-1,"58642":-1,"58643":-1,"58644":-1,"58645":-1,"58646":-1,"58647":-1,"58648":-1,"58649":-1,"58650":-1,"58651":-1,"58652":-1,"58653":-1,"58654":-1,"58655":-1,"58656":-1,"58657":-1,"58658":-1,"58659":-1,"58660":-1,"58661":-1,"58662":-1,"58663":-1,"58664":-1,"58665":-1,"58666":-1,"58667":-1,"58668":-1,"58669":-1,"58670":-1,"58671":-1,"58672":-1,"58673":4066,"58674":-1,"58675":4067,"58676":-1,"58677":-1,"58678":-1,"58679":-1,"58680":-1,"58681":4067,"58682":0,"58683":-1,"58684":-1,"58685":-1,"58686":-1,"58687":-1,"58688":-1,"58689":4064,"58690":-1,"58691":-1,"58692":4066,"58693":4065,"58694":-1,"58695":-1,"58696":-1,"58697":4067,"58698":-1,"58699":-1,"58700":-1,"58701":-1,"58702":-1,"58703":-1,"58704":-1,"58705":-1,"58706":-1,"58707":-1,"58708":-1,"58709":-1,"58710":-1,"58711":4066,"58712":-1,"58713":-1,"58714":-1,"58715":-1,"58716":-1,"58717":-1,"58718":-1,"58719":-1,"58720":-1,"58721":-1,"58722":-1,"58723":-1,"58724":-1,"58725":-1,"58726":4064,"58727":-1,"58728":-1,"58729":-1,"58730":-1,"58731":4068,"58732":0,"58733":4066,"58734":-1,"58735":-1,"58736":0,"58737":-1,"58738":-1,"58739":-1,"58740":-1,"58741":-1,"58742":-1,"58743":-1,"58744":-1,"58745":-1,"58746":-1,"58747":-1,"58748":-1,"58749":-1,"58750":-1,"58751":-1,"58752":-1,"58753":-1,"58754":-1,"58755":-1,"58756":-1,"58757":-1,"58758":-1,"58759":-1,"58760":-1,"58761":-1,"58762":-1,"58763":-1,"58764":-1,"58765":-1,"58766":4063,"58767":-1,"58768":-1,"58769":-1,"58770":-1,"58771":-1,"58772":-1,"58773":-1,"58774":-1,"58775":-1,"58776":-1,"58777":-1,"58778":-1,"58779":-1,"58780":-1,"58781":-1,"58782":-1,"58783":-1,"58784":-1,"58785":-1,"58786":-1,"58787":4063,"58788":-1,"58789":-1,"58790":0,"58791":-1,"58792":-1,"58793":4063,"58794":-1,"58795":-1,"58796":-1,"58797":-1,"58798":4066,"58799":-1,"58800":-1,"58801":-1,"58802":-1,"58803":-1,"58804":-1,"58805":-1,"58806":4068,"58807":-1,"58808":-1,"58809":-1,"58810":-1,"58811":-1,"58812":-1,"58813":-1,"58814":4064,"58815":4063,"58816":-1,"58817":-1,"58818":-1,"58819":-1,"58820":-1,"58821":-1,"58822":-1,"58823":-1,"58824":4067,"58825":4065,"58826":-1,"58827":4066,"58828":-1,"58829":4066,"58830":-1,"58831":-1,"58832":-1,"58833":-1,"58834":-1,"58835":4066,"58836":-1,"58837":-1,"58838":-1,"58839":-1,"58840":-1,"58841":4065,"58842":-1,"58843":4065,"58844":-1,"58845":4063,"58846":4064,"58847":-1,"58848":-1,"58849":-1,"58850":-1,"58851":4064,"58852":-1,"58853":-1,"58854":4066,"58855":-1,"58856":-1,"58857":-1,"58858":-1,"58859":-1,"58860":-1,"58861":-1,"58862":4066,"58863":-1,"58864":-1,"58865":-1,"58866":-1,"58867":-1,"58868":4065,"58869":-1,"58870":4065,"58871":-1,"58872":-1,"58873":-1,"58874":4066,"58875":-1,"58876":-1,"58877":-1,"58878":-1,"58879":-1,"58880":-1,"58881":-1,"58882":4064,"58883":-1,"58884":-1,"58885":-1,"58886":-1,"58887":-1,"58888":-1,"58889":-1,"58890":-1,"58891":-1,"58892":-1,"58893":4068,"58894":-1,"58895":-1,"58896":-1,"58897":-1,"58898":-1,"58899":-1,"58900":-1,"58901":4066,"58902":-1,"58903":-1,"58904":-1,"58905":-1,"58906":-1,"58907":-1,"58908":-1,"58909":-1,"58910":4063,"58911":-1,"58912":4064,"58913":4067,"58914":-1,"58915":-1,"58916":-1,"58917":-1,"58918":-1,"58919":4064,"58920":4067,"58921":-1,"58922":-1,"58923":-1,"58924":4067,"58925":-1,"58926":-1,"58927":-1,"58928":-1,"58929":-1,"58930":-1,"58931":-1,"58932":-1,"58933":4065,"58934":-1,"58935":-1,"58936":-1,"58937":-1,"58938":-1,"58939":-1,"58940":-1,"58941":-1,"58942":-1,"58943":-1,"58944":-1,"58945":-1,"58946":-1,"58947":-1,"58948":0,"58949":-1,"58950":-1,"58951":4067,"58952":-1,"58953":-1,"58954":-1,"58955":-1,"58956":-1,"58957":-1,"58958":-1,"58959":-1,"58960":-1,"58961":-1,"58962":4067,"58963":-1,"58964":-1,"58965":-1,"58966":-1,"58967":-1,"58968":-1,"58969":-1,"58970":-1,"58971":-1,"58972":-1,"58973":-1,"58974":4067,"58975":0,"58976":-1,"58977":-1,"58978":-1,"58979":-1,"58980":-1,"58981":-1,"58982":-1,"58983":-1,"58984":-1,"58985":-1,"58986":-1,"58987":-1,"58988":-1,"58989":4064,"58990":-1,"58991":-1,"58992":-1,"58993":-1,"58994":-1,"58995":-1,"58996":4066,"58997":-1,"58998":-1,"58999":-1,"59000":-1,"59001":-1,"59002":4068,"59003":-1,"59004":-1,"59005":-1,"59006":-1,"59007":-1,"59008":-1,"59009":-1,"59010":-1,"59011":-1,"59012":-1,"59013":0,"59014":-1,"59015":-1,"59016":-1,"59017":-1,"59018":-1,"59019":-1,"59020":-1,"59021":-1,"59022":-1,"59023":-1,"59024":4066,"59025":-1,"59026":-1,"59027":-1,"59028":-1,"59029":-1,"59030":-1,"59031":-1,"59032":-1,"59033":-1,"59034":4068,"59035":4066,"59036":4065,"59037":-1,"59038":-1,"59039":-1,"59040":-1,"59041":4064,"59042":-1,"59043":-1,"59044":-1,"59045":-1,"59046":-1,"59047":-1,"59048":4066,"59049":-1,"59050":-1,"59051":-1,"59052":-1,"59053":-1,"59054":0,"59055":-1,"59056":-1,"59057":-1,"59058":-1,"59059":-1,"59060":-1,"59061":-1,"59062":-1,"59063":-1,"59064":-1,"59065":-1,"59066":0,"59067":4067,"59068":-1,"59069":4063,"59070":-1,"59071":-1,"59072":-1,"59073":-1,"59074":-1,"59075":-1,"59076":-1,"59077":-1,"59078":-1,"59079":-1,"59080":-1,"59081":-1,"59082":-1,"59083":-1,"59084":-1,"59085":-1,"59086":-1,"59087":-1,"59088":-1,"59089":-1,"59090":-1,"59091":4067,"59092":-1,"59093":-1,"59094":-1,"59095":-1,"59096":-1,"59097":-1,"59098":4063,"59099":0,"59100":-1,"59101":-1,"59102":-1,"59103":-1,"59104":-1,"59105":-1,"59106":4066,"59107":-1,"59108":-1,"59109":-1,"59110":-1,"59111":-1,"59112":-1,"59113":-1,"59114":-1,"59115":4064,"59116":4067,"59117":-1,"59118":-1,"59119":0,"59120":-1,"59121":-1,"59122":-1,"59123":-1,"59124":-1,"59125":0,"59126":-1,"59127":-1,"59128":-1,"59129":-1,"59130":-1,"59131":-1,"59132":-1,"59133":-1,"59134":-1,"59135":-1,"59136":-1,"59137":-1,"59138":-1,"59139":-1,"59140":-1,"59141":-1,"59142":4065,"59143":-1,"59144":-1,"59145":-1,"59146":-1,"59147":-1,"59148":-1,"59149":-1,"59150":-1,"59151":-1,"59152":0,"59153":-1,"59154":-1,"59155":-1,"59156":-1,"59157":-1,"59158":-1,"59159":-1,"59160":-1,"59161":4067,"59162":-1,"59163":-1,"59164":4065,"59165":-1,"59166":-1,"59167":-1,"59168":-1,"59169":-1,"59170":-1,"59171":-1,"59172":-1,"59173":-1,"59174":-1,"59175":-1,"59176":4065,"59177":4066,"59178":4063,"59179":-1,"59180":-1,"59181":-1,"59182":-1,"59183":4068,"59184":-1,"59185":4067,"59186":-1,"59187":-1,"59188":-1,"59189":-1,"59190":4067,"59191":-1,"59192":-1,"59193":4067,"59194":-1,"59195":4065,"59196":-1,"59197":-1,"59198":-1,"59199":-1,"59200":-1,"59201":-1,"59202":-1,"59203":-1,"59204":-1,"59205":-1,"59206":-1,"59207":-1,"59208":-1,"59209":-1,"59210":-1,"59211":-1,"59212":-1,"59213":-1,"59214":-1,"59215":-1,"59216":-1,"59217":-1,"59218":-1,"59219":-1,"59220":-1,"59221":-1,"59222":-1,"59223":-1,"59224":-1,"59225":-1,"59226":-1,"59227":-1,"59228":-1,"59229":-1,"59230":-1,"59231":-1,"59232":-1,"59233":-1,"59234":-1,"59235":-1,"59236":-1,"59237":-1,"59238":4068,"59239":-1,"59240":-1,"59241":-1,"59242":4065,"59243":-1,"59244":-1,"59245":4065,"59246":-1,"59247":4064,"59248":-1,"59249":-1,"59250":-1,"59251":-1,"59252":-1,"59253":-1,"59254":-1,"59255":-1,"59256":-1,"59257":-1,"59258":-1,"59259":-1,"59260":-1,"59261":-1,"59262":-1,"59263":-1,"59264":-1,"59265":-1,"59266":0,"59267":-1,"59268":-1,"59269":-1,"59270":4066,"59271":-1,"59272":-1,"59273":-1,"59274":-1,"59275":-1,"59276":-1,"59277":-1,"59278":-1,"59279":-1,"59280":4065,"59281":-1,"59282":-1,"59283":-1,"59284":-1,"59285":-1,"59286":-1,"59287":-1,"59288":-1,"59289":-1,"59290":-1,"59291":-1,"59292":-1,"59293":-1,"59294":-1,"59295":-1,"59296":-1,"59297":-1,"59298":-1,"59299":-1,"59300":-1,"59301":-1,"59302":-1,"59303":4067,"59304":-1,"59305":-1,"59306":-1,"59307":-1,"59308":-1,"59309":-1,"59310":-1,"59311":-1,"59312":-1,"59313":-1,"59314":-1,"59315":-1,"59316":-1,"59317":4065,"59318":-1,"59319":-1,"59320":-1,"59321":-1,"59322":-1,"59323":-1,"59324":-1,"59325":-1,"59326":-1,"59327":-1,"59328":-1,"59329":4064,"59330":-1,"59331":-1,"59332":-1,"59333":4067,"59334":-1,"59335":-1,"59336":-1,"59337":-1,"59338":-1,"59339":4065,"59340":-1,"59341":-1,"59342":0,"59343":-1,"59344":-1,"59345":-1,"59346":-1,"59347":-1,"59348":-1,"59349":-1,"59350":-1,"59351":4066,"59352":-1,"59353":-1,"59354":-1,"59355":-1,"59356":-1,"59357":-1,"59358":-1,"59359":-1,"59360":4064,"59361":-1,"59362":-1,"59363":-1,"59364":-1,"59365":-1,"59366":-1,"59367":-1,"59368":-1,"59369":-1,"59370":-1,"59371":-1,"59372":4065,"59373":4064,"59374":-1,"59375":-1,"59376":-1,"59377":-1,"59378":4067,"59379":-1,"59380":-1,"59381":-1,"59382":-1,"59383":-1,"59384":-1,"59385":4067,"59386":4065,"59387":-1,"59388":-1,"59389":4064,"59390":-1,"59391":0,"59392":-1,"59393":-1,"59394":4065,"59395":-1,"59396":-1,"59397":-1,"59398":-1,"59399":-1,"59400":4066,"59401":-1,"59402":-1,"59403":-1,"59404":-1,"59405":-1,"59406":-1,"59407":-1,"59408":-1,"59409":-1,"59410":-1,"59411":-1,"59412":-1,"59413":-1,"59414":-1,"59415":-1,"59416":-1,"59417":-1,"59418":-1,"59419":-1,"59420":4064,"59421":-1,"59422":-1,"59423":-1,"59424":-1,"59425":-1,"59426":-1,"59427":-1,"59428":-1,"59429":0,"59430":-1,"59431":-1,"59432":-1,"59433":-1,"59434":0,"59435":-1,"59436":-1,"59437":-1,"59438":-1,"59439":-1,"59440":4068,"59441":-1,"59442":-1,"59443":-1,"59444":-1,"59445":4068,"59446":-1,"59447":-1,"59448":4064,"59449":-1,"59450":-1,"59451":-1,"59452":-1,"59453":-1,"59454":-1,"59455":-1,"59456":-1,"59457":-1,"59458":-1,"59459":-1,"59460":4064,"59461":-1,"59462":-1,"59463":4067,"59464":-1,"59465":-1,"59466":-1,"59467":-1,"59468":-1,"59469":-1,"59470":-1,"59471":-1,"59472":-1,"59473":-1,"59474":-1,"59475":-1,"59476":-1,"59477":-1,"59478":4067,"59479":-1,"59480":-1,"59481":-1,"59482":-1,"59483":-1,"59484":4065,"59485":-1,"59486":-1,"59487":-1,"59488":-1,"59489":-1,"59490":4065,"59491":-1,"59492":-1,"59493":4064,"59494":-1,"59495":-1,"59496":4064,"59497":-1,"59498":-1,"59499":-1,"59500":-1,"59501":-1,"59502":-1,"59503":-1,"59504":-1,"59505":4065,"59506":0,"59507":-1,"59508":-1,"59509":-1,"59510":-1,"59511":-1,"59512":-1,"59513":4064,"59514":-1,"59515":-1,"59516":-1,"59517":-1,"59518":-1,"59519":-1,"59520":-1,"59521":-1,"59522":-1,"59523":-1,"59524":-1,"59525":-1,"59526":-1,"59527":-1,"59528":-1,"59529":-1,"59530":-1,"59531":4066,"59532":-1,"59533":-1,"59534":-1,"59535":-1,"59536":4065,"59537":-1,"59538":-1,"59539":-1,"59540":-1,"59541":-1,"59542":-1,"59543":4063,"59544":-1,"59545":-1,"59546":-1,"59547":-1,"59548":4064,"59549":-1,"59550":-1,"59551":-1,"59552":-1,"59553":-1,"59554":4067,"59555":-1,"59556":4067,"59557":4064,"59558":-1,"59559":-1,"59560":-1,"59561":-1,"59562":-1,"59563":-1,"59564":-1,"59565":-1,"59566":-1,"59567":-1,"59568":-1,"59569":-1,"59570":-1,"59571":-1,"59572":-1,"59573":-1,"59574":-1,"59575":-1,"59576":-1,"59577":-1,"59578":4064,"59579":-1,"59580":-1,"59581":-1,"59582":-1,"59583":-1,"59584":-1,"59585":-1,"59586":-1,"59587":-1,"59588":-1,"59589":-1,"59590":-1,"59591":-1,"59592":-1,"59593":-1,"59594":-1,"59595":-1,"59596":-1,"59597":-1,"59598":4065,"59599":4064,"59600":4068,"59601":-1,"59602":-1,"59603":-1,"59604":-1,"59605":-1,"59606":4064,"59607":-1,"59608":-1,"59609":-1,"59610":0,"59611":-1,"59612":-1,"59613":-1,"59614":-1,"59615":-1,"59616":0,"59617":-1,"59618":-1,"59619":4065,"59620":-1,"59621":-1,"59622":4067,"59623":-1,"59624":-1,"59625":-1,"59626":4066,"59627":-1,"59628":-1,"59629":-1,"59630":-1,"59631":-1,"59632":-1,"59633":4065,"59634":-1,"59635":-1,"59636":-1,"59637":0,"59638":-1,"59639":-1,"59640":-1,"59641":-1,"59642":-1,"59643":-1,"59644":-1,"59645":-1,"59646":-1,"59647":-1,"59648":-1,"59649":-1,"59650":-1,"59651":-1,"59652":4068,"59653":-1,"59654":-1,"59655":-1,"59656":-1,"59657":-1,"59658":-1,"59659":-1,"59660":-1,"59661":-1,"59662":4067,"59663":4064,"59664":4063,"59665":-1,"59666":-1,"59667":-1,"59668":-1,"59669":-1,"59670":-1,"59671":-1,"59672":-1,"59673":-1,"59674":-1,"59675":4064,"59676":0,"59677":-1,"59678":4067,"59679":-1,"59680":-1,"59681":-1,"59682":-1,"59683":-1,"59684":-1,"59685":-1,"59686":-1,"59687":-1,"59688":4065,"59689":-1,"59690":-1,"59691":0,"59692":-1,"59693":-1,"59694":-1,"59695":-1,"59696":0,"59697":-1,"59698":-1,"59699":-1,"59700":-1,"59701":4065,"59702":-1,"59703":-1,"59704":-1,"59705":-1,"59706":-1,"59707":4066,"59708":-1,"59709":0,"59710":-1,"59711":-1,"59712":-1,"59713":-1,"59714":-1,"59715":-1,"59716":-1,"59717":-1,"59718":-1,"59719":-1,"59720":-1,"59721":-1,"59722":-1,"59723":-1,"59724":-1,"59725":-1,"59726":-1,"59727":-1,"59728":-1,"59729":4067,"59730":-1,"59731":-1,"59732":-1,"59733":0,"59734":-1,"59735":-1,"59736":-1,"59737":4066,"59738":-1,"59739":-1,"59740":-1,"59741":-1,"59742":-1,"59743":-1,"59744":-1,"59745":-1,"59746":-1,"59747":-1,"59748":-1,"59749":-1,"59750":-1,"59751":-1,"59752":-1,"59753":-1,"59754":-1,"59755":-1,"59756":4065,"59757":-1,"59758":-1,"59759":4066,"59760":-1,"59761":-1,"59762":4064,"59763":-1,"59764":-1,"59765":-1,"59766":4063,"59767":-1,"59768":-1,"59769":-1,"59770":-1,"59771":-1,"59772":-1,"59773":-1,"59774":-1,"59775":4068,"59776":-1,"59777":-1,"59778":-1,"59779":-1,"59780":-1,"59781":-1,"59782":-1,"59783":4068,"59784":-1,"59785":-1,"59786":-1,"59787":-1,"59788":-1,"59789":-1,"59790":-1,"59791":-1,"59792":-1,"59793":4066,"59794":-1,"59795":-1,"59796":-1,"59797":-1,"59798":-1,"59799":-1,"59800":-1,"59801":4066,"59802":-1,"59803":-1,"59804":-1,"59805":0,"59806":-1,"59807":-1,"59808":-1,"59809":-1,"59810":4064,"59811":-1,"59812":-1,"59813":-1,"59814":-1,"59815":-1,"59816":-1,"59817":4064,"59818":-1,"59819":-1,"59820":-1,"59821":-1,"59822":-1,"59823":-1,"59824":-1,"59825":-1,"59826":-1,"59827":-1,"59828":-1,"59829":-1,"59830":-1,"59831":-1,"59832":-1,"59833":-1,"59834":-1,"59835":-1,"59836":0,"59837":-1,"59838":-1,"59839":-1,"59840":0,"59841":-1,"59842":-1,"59843":4064,"59844":-1,"59845":-1,"59846":-1,"59847":-1,"59848":4066,"59849":-1,"59850":-1,"59851":-1,"59852":-1,"59853":-1,"59854":0,"59855":-1,"59856":-1,"59857":-1,"59858":-1,"59859":-1,"59860":-1,"59861":-1,"59862":-1,"59863":4067,"59864":-1,"59865":-1,"59866":-1,"59867":-1,"59868":-1,"59869":-1,"59870":-1,"59871":-1,"59872":-1,"59873":-1,"59874":-1,"59875":-1,"59876":-1,"59877":-1,"59878":-1,"59879":-1,"59880":4065,"59881":-1,"59882":-1,"59883":-1,"59884":-1,"59885":-1,"59886":-1,"59887":-1,"59888":-1,"59889":4065,"59890":-1,"59891":-1,"59892":-1,"59893":-1,"59894":-1,"59895":-1,"59896":-1,"59897":-1,"59898":-1,"59899":4065,"59900":-1,"59901":-1,"59902":0,"59903":-1,"59904":-1,"59905":-1,"59906":-1,"59907":-1,"59908":-1,"59909":-1,"59910":4066,"59911":-1,"59912":-1,"59913":-1,"59914":-1,"59915":-1,"59916":-1,"59917":4066,"59918":-1,"59919":-1,"59920":-1,"59921":-1,"59922":-1,"59923":-1,"59924":-1,"59925":-1,"59926":-1,"59927":-1,"59928":4064,"59929":4063,"59930":-1,"59931":-1,"59932":-1,"59933":-1,"59934":-1,"59935":4066,"59936":-1,"59937":-1,"59938":-1,"59939":-1,"59940":-1,"59941":-1,"59942":-1,"59943":-1,"59944":4064,"59945":-1,"59946":-1,"59947":-1,"59948":-1,"59949":-1,"59950":-1,"59951":4067,"59952":-1,"59953":0,"59954":4065,"59955":-1,"59956":-1,"59957":-1,"59958":-1,"59959":-1,"59960":-1,"59961":-1,"59962":-1,"59963":4068,"59964":-1,"59965":-1,"59966":-1,"59967":-1,"59968":-1,"59969":-1,"59970":0,"59971":-1,"59972":-1,"59973":-1,"59974":4064,"59975":-1,"59976":-1,"59977":-1,"59978":-1,"59979":-1,"59980":4066,"59981":4066,"59982":-1,"59983":-1,"59984":4063,"59985":0,"59986":-1,"59987":-1,"59988":-1,"59989":-1,"59990":-1,"59991":-1,"59992":-1,"59993":-1,"59994":-1,"59995":-1,"59996":-1,"59997":-1,"59998":-1,"59999":4067,"60000":-1,"60001":-1,"60002":-1,"60003":0,"60004":0,"60005":-1,"60006":-1,"60007":-1,"60008":-1,"60009":-1,"60010":-1,"60011":-1,"60012":-1,"60013":-1,"60014":-1,"60015":-1,"60016":-1,"60017":-1,"60018":-1,"60019":-1,"60020":-1,"60021":-1,"60022":4066,"60023":-1,"60024":-1,"60025":-1,"60026":-1,"60027":-1,"60028":-1,"60029":-1,"60030":-1,"60031":-1,"60032":-1,"60033":-1,"60034":-1,"60035":-1,"60036":-1,"60037":-1,"60038":-1,"60039":4064,"60040":0,"60041":-1,"60042":-1,"60043":-1,"60044":-1,"60045":-1,"60046":-1,"60047":-1,"60048":4065,"60049":-1,"60050":-1,"60051":4064,"60052":-1,"60053":0,"60054":-1,"60055":-1,"60056":-1,"60057":-1,"60058":-1,"60059":-1,"60060":-1,"60061":-1,"60062":-1,"60063":-1,"60064":-1,"60065":-1,"60066":4068,"60067":-1,"60068":-1,"60069":-1,"60070":-1,"60071":-1,"60072":-1,"60073":-1,"60074":-1,"60075":-1,"60076":-1,"60077":-1,"60078":-1,"60079":4067,"60080":-1,"60081":-1,"60082":-1,"60083":-1,"60084":4065,"60085":-1,"60086":-1,"60087":0,"60088":-1,"60089":-1,"60090":-1,"60091":-1,"60092":-1,"60093":0,"60094":4064,"60095":-1,"60096":-1,"60097":-1,"60098":0,"60099":-1,"60100":4065,"60101":-1,"60102":4064,"60103":-1,"60104":-1,"60105":-1,"60106":-1,"60107":-1,"60108":-1,"60109":-1,"60110":-1,"60111":-1,"60112":-1,"60113":-1,"60114":-1,"60115":4063,"60116":-1,"60117":-1,"60118":-1,"60119":4066,"60120":-1,"60121":-1,"60122":-1,"60123":4068,"60124":-1,"60125":-1,"60126":-1,"60127":-1,"60128":4066,"60129":-1,"60130":-1,"60131":-1,"60132":4066,"60133":0,"60134":-1,"60135":-1,"60136":4066,"60137":-1,"60138":-1,"60139":-1,"60140":-1,"60141":-1,"60142":-1,"60143":-1,"60144":-1,"60145":-1,"60146":-1,"60147":4068,"60148":-1,"60149":4067,"60150":4065,"60151":-1,"60152":-1,"60153":-1,"60154":-1,"60155":-1,"60156":-1,"60157":-1,"60158":-1,"60159":4065,"60160":4065,"60161":-1,"60162":-1,"60163":-1,"60164":-1,"60165":4067,"60166":-1,"60167":-1,"60168":-1,"60169":-1,"60170":-1,"60171":-1,"60172":4065,"60173":-1,"60174":-1,"60175":-1,"60176":-1,"60177":-1,"60178":-1,"60179":-1,"60180":-1,"60181":-1,"60182":-1,"60183":-1,"60184":-1,"60185":-1,"60186":-1,"60187":-1,"60188":-1,"60189":-1,"60190":-1,"60191":-1,"60192":-1,"60193":-1,"60194":-1,"60195":-1,"60196":-1,"60197":-1,"60198":-1,"60199":4068,"60200":-1,"60201":-1,"60202":-1,"60203":-1,"60204":-1,"60205":4066,"60206":-1,"60207":-1,"60208":-1,"60209":4064,"60210":-1,"60211":-1,"60212":4067,"60213":-1,"60214":-1,"60215":-1,"60216":-1,"60217":-1,"60218":-1,"60219":4068,"60220":-1,"60221":-1,"60222":-1,"60223":4065,"60224":-1,"60225":-1,"60226":-1,"60227":-1,"60228":4064,"60229":4068,"60230":4065,"60231":-1,"60232":-1,"60233":-1,"60234":-1,"60235":-1,"60236":-1,"60237":-1,"60238":-1,"60239":-1,"60240":-1,"60241":-1,"60242":-1,"60243":-1,"60244":-1,"60245":-1,"60246":4065,"60247":-1,"60248":-1,"60249":-1,"60250":-1,"60251":-1,"60252":-1,"60253":-1,"60254":-1,"60255":-1,"60256":-1,"60257":-1,"60258":-1,"60259":-1,"60260":-1,"60261":-1,"60262":-1,"60263":-1,"60264":0,"60265":4063,"60266":-1,"60267":-1,"60268":-1,"60269":-1,"60270":-1,"60271":-1,"60272":-1,"60273":4064,"60274":-1,"60275":-1,"60276":-1,"60277":-1,"60278":-1,"60279":-1,"60280":-1,"60281":-1,"60282":-1,"60283":-1,"60284":-1,"60285":4064,"60286":-1,"60287":-1,"60288":-1,"60289":-1,"60290":-1,"60291":0,"60292":-1,"60293":4065,"60294":-1,"60295":-1,"60296":-1,"60297":-1,"60298":-1,"60299":4067,"60300":-1,"60301":-1,"60302":4065,"60303":-1,"60304":-1,"60305":-1,"60306":-1,"60307":4064,"60308":-1,"60309":-1,"60310":-1,"60311":-1,"60312":-1,"60313":-1,"60314":-1,"60315":4066,"60316":-1,"60317":-1,"60318":-1,"60319":-1,"60320":-1,"60321":4068,"60322":-1,"60323":-1,"60324":0,"60325":-1,"60326":-1,"60327":-1,"60328":-1,"60329":-1,"60330":-1,"60331":4064,"60332":-1,"60333":-1,"60334":-1,"60335":-1,"60336":-1,"60337":-1,"60338":4068,"60339":-1,"60340":-1,"60341":-1,"60342":-1,"60343":-1,"60344":-1,"60345":-1,"60346":-1,"60347":-1,"60348":-1,"60349":-1,"60350":4066,"60351":-1,"60352":-1,"60353":-1,"60354":-1,"60355":-1,"60356":4066,"60357":-1,"60358":4065,"60359":-1,"60360":-1,"60361":-1,"60362":-1,"60363":4065,"60364":-1,"60365":-1,"60366":-1,"60367":0,"60368":-1,"60369":-1,"60370":-1,"60371":-1,"60372":-1,"60373":-1,"60374":4066,"60375":-1,"60376":-1,"60377":-1,"60378":-1,"60379":4066,"60380":4067,"60381":-1,"60382":-1,"60383":-1,"60384":-1,"60385":-1,"60386":-1,"60387":-1,"60388":-1,"60389":-1,"60390":-1,"60391":-1,"60392":-1,"60393":-1,"60394":-1,"60395":4066,"60396":-1,"60397":4065,"60398":4064,"60399":-1,"60400":-1,"60401":4066,"60402":-1,"60403":-1,"60404":-1,"60405":-1,"60406":-1,"60407":4064,"60408":-1,"60409":-1,"60410":-1,"60411":-1,"60412":-1,"60413":-1,"60414":-1,"60415":-1,"60416":-1,"60417":-1,"60418":4066,"60419":4067,"60420":-1,"60421":4067,"60422":-1,"60423":-1,"60424":-1,"60425":-1,"60426":-1,"60427":-1,"60428":4066,"60429":-1,"60430":4065,"60431":-1,"60432":-1,"60433":-1,"60434":-1,"60435":-1,"60436":-1,"60437":-1,"60438":-1,"60439":0,"60440":-1,"60441":-1,"60442":-1,"60443":-1,"60444":-1,"60445":4064,"60446":-1,"60447":-1,"60448":-1,"60449":-1,"60450":-1,"60451":-1,"60452":-1,"60453":-1,"60454":-1,"60455":-1,"60456":-1,"60457":-1,"60458":4067,"60459":-1,"60460":-1,"60461":-1,"60462":-1,"60463":0,"60464":-1,"60465":4067,"60466":-1,"60467":-1,"60468":-1,"60469":-1,"60470":-1,"60471":-1,"60472":-1,"60473":-1,"60474":-1,"60475":-1,"60476":4065,"60477":-1,"60478":-1,"60479":-1,"60480":-1,"60481":-1,"60482":-1,"60483":-1,"60484":-1,"60485":-1,"60486":-1,"60487":-1,"60488":-1,"60489":4067,"60490":-1,"60491":-1,"60492":4064,"60493":-1,"60494":-1,"60495":-1,"60496":4064,"60497":-1,"60498":0,"60499":-1,"60500":-1,"60501":4066,"60502":0,"60503":-1,"60504":4065,"60505":-1,"60506":-1,"60507":4068,"60508":-1,"60509":-1,"60510":-1,"60511":-1,"60512":4065,"60513":-1,"60514":-1,"60515":-1,"60516":-1,"60517":-1,"60518":-1,"60519":-1,"60520":4063,"60521":-1,"60522":-1,"60523":-1,"60524":-1,"60525":-1,"60526":4065,"60527":0,"60528":-1,"60529":-1,"60530":-1,"60531":4068,"60532":-1,"60533":-1,"60534":-1,"60535":-1,"60536":4063,"60537":-1,"60538":4066,"60539":4067,"60540":-1,"60541":-1,"60542":-1,"60543":-1,"60544":-1,"60545":-1,"60546":-1,"60547":-1,"60548":-1,"60549":-1,"60550":-1,"60551":4067,"60552":-1,"60553":-1,"60554":-1,"60555":-1,"60556":-1,"60557":4065,"60558":-1,"60559":-1,"60560":-1,"60561":-1,"60562":-1,"60563":-1,"60564":-1,"60565":-1,"60566":-1,"60567":-1,"60568":-1,"60569":-1,"60570":-1,"60571":-1,"60572":-1,"60573":-1,"60574":-1,"60575":-1,"60576":-1,"60577":-1,"60578":-1,"60579":-1,"60580":-1,"60581":-1,"60582":-1,"60583":-1,"60584":-1,"60585":-1,"60586":-1,"60587":-1,"60588":-1,"60589":-1,"60590":-1,"60591":-1,"60592":-1,"60593":4065,"60594":-1,"60595":-1,"60596":-1,"60597":-1,"60598":-1,"60599":-1,"60600":-1,"60601":-1,"60602":-1,"60603":-1,"60604":-1,"60605":-1,"60606":-1,"60607":-1,"60608":-1,"60609":-1,"60610":-1,"60611":-1,"60612":-1,"60613":0,"60614":-1,"60615":-1,"60616":-1,"60617":4064,"60618":4067,"60619":-1,"60620":-1,"60621":-1,"60622":-1,"60623":-1,"60624":-1,"60625":-1,"60626":-1,"60627":-1,"60628":-1,"60629":-1,"60630":-1,"60631":-1,"60632":-1,"60633":-1,"60634":-1,"60635":-1,"60636":4065,"60637":-1,"60638":-1,"60639":-1,"60640":-1,"60641":-1,"60642":-1,"60643":-1,"60644":-1,"60645":-1,"60646":4065,"60647":-1,"60648":-1,"60649":-1,"60650":-1,"60651":-1,"60652":-1,"60653":-1,"60654":-1,"60655":-1,"60656":-1,"60657":-1,"60658":-1,"60659":-1,"60660":-1,"60661":-1,"60662":-1,"60663":-1,"60664":-1,"60665":-1,"60666":-1,"60667":-1,"60668":-1,"60669":-1,"60670":-1,"60671":-1,"60672":-1,"60673":-1,"60674":-1,"60675":-1,"60676":4066,"60677":-1,"60678":-1,"60679":-1,"60680":-1,"60681":-1,"60682":-1,"60683":-1,"60684":-1,"60685":-1,"60686":-1,"60687":0,"60688":-1,"60689":-1,"60690":0,"60691":-1,"60692":-1,"60693":-1,"60694":-1,"60695":-1,"60696":4066,"60697":-1,"60698":-1,"60699":-1,"60700":-1,"60701":4067,"60702":-1,"60703":-1,"60704":-1,"60705":4067,"60706":-1,"60707":-1,"60708":-1,"60709":-1,"60710":4064,"60711":-1,"60712":-1,"60713":-1,"60714":-1,"60715":-1,"60716":4066,"60717":4064,"60718":-1,"60719":-1,"60720":-1,"60721":-1,"60722":-1,"60723":-1,"60724":-1,"60725":-1,"60726":-1,"60727":-1,"60728":-1,"60729":-1,"60730":4065,"60731":-1,"60732":-1,"60733":-1,"60734":-1,"60735":-1,"60736":-1,"60737":-1,"60738":-1,"60739":-1,"60740":-1,"60741":-1,"60742":0,"60743":4065,"60744":0,"60745":-1,"60746":-1,"60747":-1,"60748":-1,"60749":-1,"60750":4067,"60751":-1,"60752":0,"60753":-1,"60754":-1,"60755":-1,"60756":-1,"60757":-1,"60758":-1,"60759":-1,"60760":-1,"60761":-1,"60762":4064,"60763":-1,"60764":4067,"60765":4067,"60766":-1,"60767":-1,"60768":-1,"60769":-1,"60770":-1,"60771":-1,"60772":4064,"60773":-1,"60774":-1,"60775":4066,"60776":-1,"60777":-1,"60778":4067,"60779":-1,"60780":-1,"60781":-1,"60782":-1,"60783":-1,"60784":-1,"60785":-1,"60786":4064,"60787":-1,"60788":-1,"60789":4066,"60790":-1,"60791":-1,"60792":-1,"60793":-1,"60794":0,"60795":4065,"60796":-1,"60797":4067,"60798":-1,"60799":-1,"60800":-1,"60801":-1,"60802":-1,"60803":-1,"60804":-1,"60805":-1,"60806":-1,"60807":-1,"60808":-1,"60809":-1,"60810":-1,"60811":4067,"60812":-1,"60813":-1,"60814":4066,"60815":4064,"60816":-1,"60817":-1,"60818":-1,"60819":-1,"60820":-1,"60821":-1,"60822":-1,"60823":-1,"60824":-1,"60825":-1,"60826":-1,"60827":4064,"60828":-1,"60829":0,"60830":-1,"60831":-1,"60832":-1,"60833":-1,"60834":-1,"60835":-1,"60836":-1,"60837":-1,"60838":-1,"60839":-1,"60840":4067,"60841":-1,"60842":-1,"60843":-1,"60844":4067,"60845":-1,"60846":4068,"60847":-1,"60848":-1,"60849":-1,"60850":-1,"60851":-1,"60852":-1,"60853":-1,"60854":-1,"60855":-1,"60856":-1,"60857":-1,"60858":4064,"60859":-1,"60860":-1,"60861":-1,"60862":-1,"60863":-1,"60864":-1,"60865":-1,"60866":4068,"60867":-1,"60868":-1,"60869":-1,"60870":-1,"60871":-1,"60872":-1,"60873":4067,"60874":-1,"60875":-1,"60876":-1,"60877":-1,"60878":-1,"60879":4063,"60880":-1,"60881":4064,"60882":4066,"60883":-1,"60884":-1,"60885":-1,"60886":-1,"60887":-1,"60888":-1,"60889":4064,"60890":-1,"60891":-1,"60892":4064,"60893":-1,"60894":-1,"60895":-1,"60896":4064,"60897":-1,"60898":-1,"60899":4064,"60900":-1,"60901":-1,"60902":-1,"60903":-1},"indivfacid_2":{"0":0,"1":0,"2":2907,"3":0,"4":0,"5":-1,"6":0,"7":0,"8":-1,"9":0,"10":2335,"11":163,"12":1947,"13":0,"14":3630,"15":-1,"16":0,"17":3658,"18":0,"19":-1,"20":-1,"21":-1,"22":3036,"23":-1,"24":-1,"25":-1,"26":0,"27":0,"28":2231,"29":0,"30":0,"31":0,"32":0,"33":-1,"34":-1,"35":0,"36":0,"37":0,"38":2264,"39":-1,"40":2525,"41":3540,"42":3762,"43":1882,"44":0,"45":0,"46":3261,"47":-1,"48":1775,"49":1783,"50":3576,"51":0,"52":0,"53":3272,"54":0,"55":2628,"56":3290,"57":-1,"58":3864,"59":0,"60":0,"61":-1,"62":-1,"63":3804,"64":0,"65":2528,"66":2117,"67":-1,"68":1979,"69":0,"70":-1,"71":0,"72":-1,"73":0,"74":0,"75":0,"76":-1,"77":3697,"78":-1,"79":0,"80":0,"81":-1,"82":2548,"83":0,"84":0,"85":2752,"86":3890,"87":-1,"88":-1,"89":0,"90":-1,"91":2083,"92":-1,"93":3992,"94":-1,"95":0,"96":0,"97":0,"98":0,"99":-1,"100":-1,"101":261,"102":2938,"103":0,"104":0,"105":-1,"106":0,"107":3127,"108":3727,"109":0,"110":0,"111":-1,"112":2282,"113":0,"114":2795,"115":0,"116":-1,"117":-1,"118":3098,"119":-1,"120":0,"121":0,"122":0,"123":0,"124":-1,"125":2183,"126":0,"127":0,"128":-1,"129":-1,"130":-1,"131":-1,"132":-1,"133":3730,"134":-1,"135":0,"136":0,"137":2568,"138":0,"139":0,"140":0,"141":-1,"142":0,"143":-1,"144":2214,"145":0,"146":0,"147":-1,"148":-1,"149":-1,"150":2048,"151":0,"152":-1,"153":0,"154":-1,"155":0,"156":1911,"157":0,"158":0,"159":3306,"160":0,"161":3794,"162":0,"163":2110,"164":-1,"165":-1,"166":0,"167":0,"168":2613,"169":3148,"170":0,"171":0,"172":3791,"173":-1,"174":0,"175":-1,"176":-1,"177":0,"178":-1,"179":-1,"180":0,"181":2266,"182":3885,"183":0,"184":-1,"185":0,"186":0,"187":-1,"188":-1,"189":-1,"190":-1,"191":0,"192":-1,"193":2294,"194":0,"195":0,"196":1950,"197":0,"198":0,"199":-1,"200":2714,"201":0,"202":0,"203":0,"204":0,"205":-1,"206":0,"207":0,"208":2131,"209":0,"210":0,"211":0,"212":2725,"213":0,"214":0,"215":0,"216":1815,"217":-1,"218":-1,"219":-1,"220":0,"221":2597,"222":0,"223":0,"224":0,"225":2784,"226":2236,"227":0,"228":3718,"229":0,"230":0,"231":-1,"232":-1,"233":2864,"234":3722,"235":0,"236":2134,"237":-1,"238":0,"239":-1,"240":3860,"241":-1,"242":-1,"243":0,"244":0,"245":-1,"246":-1,"247":-1,"248":-1,"249":-1,"250":80,"251":2013,"252":0,"253":0,"254":0,"255":0,"256":2619,"257":0,"258":4041,"259":0,"260":0,"261":4018,"262":4024,"263":0,"264":1900,"265":0,"266":0,"267":-1,"268":-1,"269":-1,"270":463,"271":-1,"272":-1,"273":0,"274":0,"275":0,"276":0,"277":-1,"278":1847,"279":0,"280":2309,"281":0,"282":-1,"283":0,"284":0,"285":2878,"286":0,"287":0,"288":0,"289":2991,"290":0,"291":0,"292":3073,"293":114,"294":-1,"295":2368,"296":0,"297":-1,"298":-1,"299":3357,"300":1810,"301":2929,"302":0,"303":3873,"304":3083,"305":153,"306":3913,"307":-1,"308":-1,"309":0,"310":-1,"311":3850,"312":0,"313":1794,"314":0,"315":-1,"316":0,"317":0,"318":0,"319":0,"320":-1,"321":2743,"322":-1,"323":3586,"324":-1,"325":2681,"326":-1,"327":-1,"328":0,"329":2355,"330":0,"331":-1,"332":-1,"333":0,"334":-1,"335":0,"336":150,"337":-1,"338":0,"339":-1,"340":91,"341":-1,"342":-1,"343":0,"344":0,"345":3220,"346":0,"347":2952,"348":0,"349":125,"350":2516,"351":3976,"352":0,"353":0,"354":-1,"355":-1,"356":0,"357":-1,"358":2942,"359":3414,"360":0,"361":0,"362":0,"363":0,"364":2668,"365":2448,"366":0,"367":-1,"368":0,"369":-1,"370":386,"371":-1,"372":0,"373":2229,"374":-1,"375":0,"376":0,"377":0,"378":0,"379":0,"380":0,"381":-1,"382":0,"383":2595,"384":-1,"385":191,"386":0,"387":-1,"388":0,"389":2709,"390":3036,"391":0,"392":-1,"393":-1,"394":2320,"395":0,"396":2428,"397":0,"398":0,"399":0,"400":-1,"401":-1,"402":0,"403":0,"404":0,"405":0,"406":-1,"407":-1,"408":0,"409":0,"410":3346,"411":0,"412":2402,"413":-1,"414":2318,"415":0,"416":-1,"417":0,"418":0,"419":-1,"420":2089,"421":-1,"422":3909,"423":-1,"424":2944,"425":2478,"426":3544,"427":0,"428":-1,"429":-1,"430":0,"431":-1,"432":-1,"433":-1,"434":0,"435":-1,"436":2179,"437":0,"438":2268,"439":0,"440":0,"441":-1,"442":0,"443":0,"444":0,"445":0,"446":481,"447":242,"448":-1,"449":0,"450":-1,"451":-1,"452":0,"453":0,"454":323,"455":0,"456":0,"457":3788,"458":4059,"459":2015,"460":0,"461":2367,"462":-1,"463":0,"464":0,"465":0,"466":0,"467":0,"468":0,"469":-1,"470":2848,"471":0,"472":-1,"473":3727,"474":3633,"475":-1,"476":0,"477":-1,"478":0,"479":2014,"480":-1,"481":0,"482":2535,"483":0,"484":-1,"485":1913,"486":0,"487":-1,"488":3608,"489":0,"490":-1,"491":2681,"492":0,"493":3502,"494":0,"495":3254,"496":3030,"497":261,"498":0,"499":1923,"500":0,"501":0,"502":-1,"503":3418,"504":-1,"505":-1,"506":2714,"507":0,"508":2897,"509":0,"510":0,"511":0,"512":3490,"513":-1,"514":0,"515":0,"516":2921,"517":0,"518":3117,"519":-1,"520":0,"521":-1,"522":-1,"523":2830,"524":0,"525":0,"526":-1,"527":0,"528":212,"529":-1,"530":365,"531":-1,"532":0,"533":0,"534":0,"535":-1,"536":2225,"537":0,"538":0,"539":-1,"540":-1,"541":0,"542":0,"543":0,"544":0,"545":0,"546":2831,"547":2662,"548":-1,"549":-1,"550":0,"551":0,"552":0,"553":-1,"554":0,"555":0,"556":0,"557":-1,"558":0,"559":0,"560":2921,"561":0,"562":0,"563":0,"564":3604,"565":0,"566":-1,"567":-1,"568":0,"569":2179,"570":-1,"571":3421,"572":270,"573":0,"574":2205,"575":0,"576":-1,"577":12,"578":2429,"579":2212,"580":0,"581":0,"582":-1,"583":0,"584":151,"585":0,"586":3074,"587":0,"588":0,"589":3514,"590":2731,"591":2870,"592":3089,"593":-1,"594":-1,"595":0,"596":-1,"597":0,"598":-1,"599":2514,"600":0,"601":0,"602":-1,"603":-1,"604":1819,"605":0,"606":-1,"607":-1,"608":0,"609":2692,"610":-1,"611":-1,"612":0,"613":-1,"614":-1,"615":0,"616":0,"617":3028,"618":-1,"619":2017,"620":3506,"621":0,"622":0,"623":0,"624":0,"625":0,"626":2824,"627":-1,"628":0,"629":0,"630":-1,"631":0,"632":3593,"633":-1,"634":2544,"635":0,"636":-1,"637":-1,"638":3621,"639":-1,"640":0,"641":0,"642":-1,"643":0,"644":0,"645":-1,"646":-1,"647":-1,"648":-1,"649":0,"650":0,"651":0,"652":0,"653":-1,"654":315,"655":0,"656":0,"657":-1,"658":-1,"659":0,"660":0,"661":0,"662":3263,"663":0,"664":0,"665":-1,"666":1909,"667":0,"668":-1,"669":0,"670":0,"671":-1,"672":411,"673":0,"674":2798,"675":-1,"676":0,"677":-1,"678":-1,"679":2761,"680":0,"681":-1,"682":0,"683":4025,"684":0,"685":0,"686":2009,"687":0,"688":0,"689":0,"690":0,"691":0,"692":0,"693":-1,"694":3472,"695":1988,"696":-1,"697":59,"698":-1,"699":320,"700":0,"701":2448,"702":2976,"703":-1,"704":109,"705":2895,"706":3135,"707":2077,"708":2535,"709":0,"710":-1,"711":0,"712":0,"713":0,"714":3115,"715":0,"716":-1,"717":0,"718":3820,"719":3771,"720":2915,"721":-1,"722":-1,"723":0,"724":0,"725":-1,"726":0,"727":0,"728":0,"729":-1,"730":-1,"731":-1,"732":0,"733":-1,"734":271,"735":0,"736":-1,"737":2972,"738":2572,"739":3574,"740":0,"741":0,"742":-1,"743":3960,"744":-1,"745":-1,"746":0,"747":-1,"748":0,"749":2741,"750":-1,"751":3875,"752":0,"753":0,"754":0,"755":0,"756":-1,"757":-1,"758":-1,"759":3920,"760":2231,"761":-1,"762":-1,"763":0,"764":0,"765":0,"766":0,"767":0,"768":-1,"769":-1,"770":-1,"771":-1,"772":-1,"773":0,"774":3086,"775":0,"776":0,"777":-1,"778":0,"779":-1,"780":2052,"781":2325,"782":0,"783":0,"784":-1,"785":2631,"786":0,"787":0,"788":-1,"789":-1,"790":0,"791":3288,"792":0,"793":-1,"794":-1,"795":0,"796":-1,"797":0,"798":-1,"799":0,"800":0,"801":0,"802":0,"803":0,"804":-1,"805":0,"806":-1,"807":2692,"808":2017,"809":3267,"810":0,"811":-1,"812":0,"813":-1,"814":3020,"815":-1,"816":0,"817":3471,"818":-1,"819":67,"820":0,"821":4032,"822":0,"823":0,"824":-1,"825":0,"826":0,"827":2658,"828":0,"829":0,"830":-1,"831":-1,"832":0,"833":-1,"834":-1,"835":2801,"836":0,"837":0,"838":3352,"839":-1,"840":0,"841":-1,"842":-1,"843":0,"844":3732,"845":-1,"846":0,"847":-1,"848":-1,"849":2872,"850":0,"851":0,"852":519,"853":0,"854":-1,"855":-1,"856":-1,"857":0,"858":2279,"859":-1,"860":-1,"861":-1,"862":-1,"863":2255,"864":3355,"865":-1,"866":0,"867":0,"868":-1,"869":2193,"870":-1,"871":1854,"872":-1,"873":0,"874":0,"875":0,"876":0,"877":3178,"878":0,"879":0,"880":-1,"881":-1,"882":3171,"883":-1,"884":-1,"885":317,"886":-1,"887":-1,"888":2683,"889":-1,"890":-1,"891":0,"892":142,"893":3690,"894":0,"895":0,"896":-1,"897":-1,"898":-1,"899":0,"900":-1,"901":3063,"902":-1,"903":-1,"904":0,"905":337,"906":0,"907":-1,"908":0,"909":3268,"910":3223,"911":2479,"912":0,"913":-1,"914":-1,"915":0,"916":3073,"917":0,"918":0,"919":-1,"920":-1,"921":2760,"922":-1,"923":0,"924":0,"925":-1,"926":0,"927":3038,"928":2661,"929":0,"930":407,"931":0,"932":0,"933":-1,"934":-1,"935":3081,"936":0,"937":0,"938":0,"939":268,"940":3058,"941":-1,"942":0,"943":-1,"944":0,"945":-1,"946":3074,"947":0,"948":2320,"949":0,"950":1993,"951":2809,"952":0,"953":-1,"954":-1,"955":-1,"956":0,"957":0,"958":-1,"959":2473,"960":0,"961":3116,"962":2846,"963":0,"964":-1,"965":0,"966":3059,"967":0,"968":2285,"969":0,"970":2733,"971":0,"972":-1,"973":0,"974":0,"975":-1,"976":0,"977":-1,"978":0,"979":-1,"980":0,"981":0,"982":-1,"983":3680,"984":-1,"985":0,"986":0,"987":0,"988":-1,"989":0,"990":2121,"991":-1,"992":-1,"993":-1,"994":-1,"995":-1,"996":-1,"997":0,"998":-1,"999":-1,"1000":0,"1001":0,"1002":0,"1003":0,"1004":-1,"1005":0,"1006":0,"1007":-1,"1008":0,"1009":3893,"1010":3780,"1011":2683,"1012":0,"1013":0,"1014":0,"1015":2367,"1016":0,"1017":0,"1018":-1,"1019":0,"1020":0,"1021":0,"1022":2143,"1023":-1,"1024":3125,"1025":-1,"1026":0,"1027":-1,"1028":3575,"1029":0,"1030":0,"1031":0,"1032":0,"1033":0,"1034":-1,"1035":0,"1036":0,"1037":0,"1038":0,"1039":3400,"1040":-1,"1041":-1,"1042":-1,"1043":-1,"1044":3626,"1045":0,"1046":0,"1047":1813,"1048":0,"1049":0,"1050":2750,"1051":-1,"1052":3445,"1053":0,"1054":-1,"1055":0,"1056":-1,"1057":0,"1058":0,"1059":0,"1060":3622,"1061":0,"1062":0,"1063":-1,"1064":0,"1065":0,"1066":3439,"1067":304,"1068":2904,"1069":2331,"1070":0,"1071":0,"1072":-1,"1073":-1,"1074":-1,"1075":0,"1076":3086,"1077":0,"1078":-1,"1079":-1,"1080":0,"1081":0,"1082":0,"1083":1927,"1084":2061,"1085":0,"1086":0,"1087":0,"1088":0,"1089":3508,"1090":0,"1091":0,"1092":-1,"1093":0,"1094":0,"1095":-1,"1096":-1,"1097":2458,"1098":0,"1099":0,"1100":0,"1101":-1,"1102":0,"1103":-1,"1104":-1,"1105":-1,"1106":0,"1107":-1,"1108":2743,"1109":0,"1110":0,"1111":3739,"1112":0,"1113":-1,"1114":0,"1115":405,"1116":-1,"1117":0,"1118":289,"1119":3651,"1120":2959,"1121":0,"1122":0,"1123":-1,"1124":0,"1125":3185,"1126":0,"1127":0,"1128":0,"1129":0,"1130":-1,"1131":4014,"1132":0,"1133":0,"1134":0,"1135":0,"1136":0,"1137":0,"1138":0,"1139":2300,"1140":0,"1141":-1,"1142":0,"1143":-1,"1144":3641,"1145":-1,"1146":3533,"1147":-1,"1148":0,"1149":0,"1150":0,"1151":-1,"1152":-1,"1153":0,"1154":3968,"1155":0,"1156":-1,"1157":3677,"1158":-1,"1159":0,"1160":3317,"1161":0,"1162":-1,"1163":3188,"1164":0,"1165":0,"1166":-1,"1167":-1,"1168":3241,"1169":0,"1170":0,"1171":2655,"1172":2613,"1173":0,"1174":0,"1175":-1,"1176":-1,"1177":30,"1178":2148,"1179":-1,"1180":0,"1181":371,"1182":0,"1183":-1,"1184":0,"1185":2136,"1186":2838,"1187":0,"1188":0,"1189":-1,"1190":0,"1191":3680,"1192":-1,"1193":-1,"1194":-1,"1195":-1,"1196":-1,"1197":0,"1198":-1,"1199":3333,"1200":0,"1201":0,"1202":0,"1203":0,"1204":-1,"1205":3463,"1206":3279,"1207":-1,"1208":0,"1209":-1,"1210":2485,"1211":0,"1212":-1,"1213":2083,"1214":3062,"1215":-1,"1216":0,"1217":-1,"1218":3528,"1219":-1,"1220":0,"1221":0,"1222":0,"1223":-1,"1224":0,"1225":0,"1226":-1,"1227":2804,"1228":0,"1229":0,"1230":4061,"1231":0,"1232":0,"1233":0,"1234":-1,"1235":0,"1236":0,"1237":318,"1238":-1,"1239":0,"1240":0,"1241":3736,"1242":0,"1243":33,"1244":-1,"1245":-1,"1246":2279,"1247":3369,"1248":-1,"1249":0,"1250":-1,"1251":-1,"1252":0,"1253":3594,"1254":3089,"1255":-1,"1256":0,"1257":0,"1258":-1,"1259":-1,"1260":3782,"1261":2982,"1262":3345,"1263":0,"1264":0,"1265":-1,"1266":-1,"1267":3202,"1268":3520,"1269":-1,"1270":0,"1271":-1,"1272":-1,"1273":0,"1274":0,"1275":0,"1276":4006,"1277":-1,"1278":0,"1279":0,"1280":3646,"1281":-1,"1282":3807,"1283":508,"1284":0,"1285":1985,"1286":0,"1287":0,"1288":0,"1289":137,"1290":0,"1291":0,"1292":-1,"1293":-1,"1294":0,"1295":0,"1296":0,"1297":0,"1298":-1,"1299":0,"1300":2870,"1301":1989,"1302":0,"1303":2282,"1304":-1,"1305":0,"1306":0,"1307":-1,"1308":386,"1309":271,"1310":0,"1311":-1,"1312":0,"1313":3988,"1314":0,"1315":2185,"1316":-1,"1317":0,"1318":0,"1319":2004,"1320":0,"1321":0,"1322":-1,"1323":0,"1324":457,"1325":0,"1326":-1,"1327":-1,"1328":-1,"1329":0,"1330":117,"1331":-1,"1332":-1,"1333":-1,"1334":0,"1335":-1,"1336":-1,"1337":394,"1338":0,"1339":0,"1340":2234,"1341":-1,"1342":0,"1343":0,"1344":3122,"1345":-1,"1346":0,"1347":-1,"1348":3362,"1349":-1,"1350":-1,"1351":-1,"1352":-1,"1353":0,"1354":3244,"1355":0,"1356":2214,"1357":3893,"1358":-1,"1359":0,"1360":-1,"1361":3268,"1362":3385,"1363":0,"1364":-1,"1365":-1,"1366":2788,"1367":0,"1368":0,"1369":-1,"1370":0,"1371":-1,"1372":0,"1373":3701,"1374":0,"1375":-1,"1376":2417,"1377":2119,"1378":0,"1379":-1,"1380":2167,"1381":0,"1382":-1,"1383":-1,"1384":0,"1385":0,"1386":-1,"1387":0,"1388":3243,"1389":0,"1390":-1,"1391":1820,"1392":3656,"1393":3548,"1394":3181,"1395":-1,"1396":2103,"1397":0,"1398":0,"1399":-1,"1400":3824,"1401":0,"1402":-1,"1403":-1,"1404":-1,"1405":2493,"1406":3949,"1407":3335,"1408":0,"1409":3736,"1410":-1,"1411":453,"1412":3254,"1413":2926,"1414":0,"1415":3350,"1416":1923,"1417":0,"1418":-1,"1419":-1,"1420":-1,"1421":0,"1422":2339,"1423":2207,"1424":3579,"1425":-1,"1426":0,"1427":3810,"1428":0,"1429":-1,"1430":0,"1431":-1,"1432":3479,"1433":0,"1434":0,"1435":0,"1436":3045,"1437":1899,"1438":-1,"1439":-1,"1440":2665,"1441":0,"1442":-1,"1443":0,"1444":0,"1445":0,"1446":0,"1447":-1,"1448":0,"1449":0,"1450":3856,"1451":-1,"1452":2664,"1453":1957,"1454":0,"1455":3664,"1456":0,"1457":0,"1458":0,"1459":3880,"1460":0,"1461":2443,"1462":-1,"1463":2112,"1464":255,"1465":0,"1466":-1,"1467":3736,"1468":0,"1469":-1,"1470":0,"1471":0,"1472":2132,"1473":0,"1474":2298,"1475":2484,"1476":3496,"1477":0,"1478":0,"1479":0,"1480":3514,"1481":0,"1482":0,"1483":0,"1484":0,"1485":3739,"1486":0,"1487":0,"1488":0,"1489":-1,"1490":0,"1491":3330,"1492":0,"1493":3610,"1494":-1,"1495":-1,"1496":0,"1497":-1,"1498":0,"1499":2244,"1500":3441,"1501":-1,"1502":0,"1503":3124,"1504":-1,"1505":0,"1506":3842,"1507":0,"1508":-1,"1509":2045,"1510":-1,"1511":-1,"1512":3529,"1513":3251,"1514":2317,"1515":-1,"1516":-1,"1517":-1,"1518":0,"1519":0,"1520":-1,"1521":2855,"1522":3326,"1523":0,"1524":-1,"1525":0,"1526":0,"1527":0,"1528":4012,"1529":4039,"1530":0,"1531":-1,"1532":-1,"1533":109,"1534":226,"1535":-1,"1536":0,"1537":-1,"1538":-1,"1539":3651,"1540":-1,"1541":0,"1542":-1,"1543":-1,"1544":4023,"1545":0,"1546":-1,"1547":0,"1548":-1,"1549":3479,"1550":1887,"1551":0,"1552":0,"1553":-1,"1554":0,"1555":0,"1556":0,"1557":0,"1558":298,"1559":0,"1560":0,"1561":0,"1562":2538,"1563":0,"1564":0,"1565":0,"1566":3851,"1567":2253,"1568":0,"1569":0,"1570":3422,"1571":3183,"1572":0,"1573":0,"1574":-1,"1575":-1,"1576":0,"1577":240,"1578":-1,"1579":0,"1580":2936,"1581":441,"1582":0,"1583":0,"1584":239,"1585":-1,"1586":-1,"1587":3229,"1588":0,"1589":0,"1590":3768,"1591":-1,"1592":-1,"1593":119,"1594":-1,"1595":0,"1596":-1,"1597":1978,"1598":0,"1599":0,"1600":0,"1601":0,"1602":1797,"1603":-1,"1604":0,"1605":0,"1606":0,"1607":-1,"1608":2753,"1609":0,"1610":0,"1611":0,"1612":3017,"1613":0,"1614":0,"1615":-1,"1616":-1,"1617":3969,"1618":0,"1619":0,"1620":-1,"1621":2247,"1622":0,"1623":0,"1624":-1,"1625":-1,"1626":0,"1627":3728,"1628":2803,"1629":0,"1630":0,"1631":0,"1632":3278,"1633":3804,"1634":-1,"1635":-1,"1636":-1,"1637":-1,"1638":-1,"1639":0,"1640":0,"1641":-1,"1642":-1,"1643":-1,"1644":-1,"1645":0,"1646":-1,"1647":3691,"1648":0,"1649":-1,"1650":2278,"1651":-1,"1652":271,"1653":0,"1654":3993,"1655":188,"1656":-1,"1657":-1,"1658":-1,"1659":-1,"1660":-1,"1661":-1,"1662":-1,"1663":0,"1664":0,"1665":0,"1666":0,"1667":2519,"1668":-1,"1669":-1,"1670":0,"1671":0,"1672":-1,"1673":0,"1674":0,"1675":0,"1676":-1,"1677":-1,"1678":2657,"1679":0,"1680":-1,"1681":464,"1682":0,"1683":0,"1684":3948,"1685":3394,"1686":3292,"1687":3692,"1688":0,"1689":0,"1690":0,"1691":-1,"1692":-1,"1693":3542,"1694":-1,"1695":3380,"1696":-1,"1697":-1,"1698":-1,"1699":0,"1700":3003,"1701":2024,"1702":-1,"1703":0,"1704":0,"1705":2243,"1706":0,"1707":-1,"1708":0,"1709":3345,"1710":0,"1711":3872,"1712":-1,"1713":0,"1714":0,"1715":-1,"1716":3685,"1717":-1,"1718":3735,"1719":-1,"1720":-1,"1721":0,"1722":2771,"1723":-1,"1724":-1,"1725":0,"1726":150,"1727":2655,"1728":-1,"1729":-1,"1730":0,"1731":0,"1732":0,"1733":0,"1734":0,"1735":3011,"1736":7,"1737":0,"1738":0,"1739":-1,"1740":0,"1741":-1,"1742":3934,"1743":0,"1744":-1,"1745":0,"1746":3671,"1747":2660,"1748":0,"1749":0,"1750":1876,"1751":-1,"1752":3434,"1753":-1,"1754":3084,"1755":0,"1756":-1,"1757":0,"1758":-1,"1759":2552,"1760":-1,"1761":-1,"1762":-1,"1763":0,"1764":0,"1765":0,"1766":-1,"1767":0,"1768":0,"1769":0,"1770":0,"1771":0,"1772":0,"1773":-1,"1774":0,"1775":0,"1776":0,"1777":1888,"1778":0,"1779":0,"1780":0,"1781":0,"1782":-1,"1783":0,"1784":0,"1785":2202,"1786":-1,"1787":0,"1788":-1,"1789":2051,"1790":-1,"1791":0,"1792":2967,"1793":-1,"1794":-1,"1795":2755,"1796":-1,"1797":0,"1798":3714,"1799":2143,"1800":0,"1801":0,"1802":0,"1803":256,"1804":-1,"1805":-1,"1806":0,"1807":351,"1808":-1,"1809":-1,"1810":2683,"1811":0,"1812":0,"1813":0,"1814":0,"1815":3260,"1816":0,"1817":0,"1818":0,"1819":-1,"1820":0,"1821":3720,"1822":2809,"1823":0,"1824":-1,"1825":4003,"1826":0,"1827":2384,"1828":0,"1829":32,"1830":0,"1831":4043,"1832":-1,"1833":239,"1834":0,"1835":3921,"1836":3981,"1837":2991,"1838":-1,"1839":-1,"1840":0,"1841":0,"1842":0,"1843":0,"1844":-1,"1845":0,"1846":0,"1847":-1,"1848":3030,"1849":0,"1850":0,"1851":2180,"1852":3634,"1853":0,"1854":0,"1855":2259,"1856":-1,"1857":0,"1858":0,"1859":-1,"1860":0,"1861":0,"1862":2571,"1863":3920,"1864":3055,"1865":-1,"1866":0,"1867":0,"1868":2073,"1869":-1,"1870":-1,"1871":0,"1872":-1,"1873":0,"1874":3633,"1875":-1,"1876":0,"1877":0,"1878":0,"1879":-1,"1880":0,"1881":-1,"1882":0,"1883":-1,"1884":26,"1885":-1,"1886":-1,"1887":3013,"1888":-1,"1889":-1,"1890":0,"1891":1961,"1892":-1,"1893":-1,"1894":-1,"1895":0,"1896":4018,"1897":-1,"1898":0,"1899":0,"1900":0,"1901":-1,"1902":3878,"1903":0,"1904":0,"1905":0,"1906":-1,"1907":0,"1908":-1,"1909":-1,"1910":2522,"1911":3137,"1912":3157,"1913":-1,"1914":0,"1915":0,"1916":0,"1917":-1,"1918":-1,"1919":0,"1920":0,"1921":0,"1922":0,"1923":2476,"1924":0,"1925":-1,"1926":0,"1927":-1,"1928":0,"1929":0,"1930":0,"1931":0,"1932":0,"1933":1905,"1934":0,"1935":0,"1936":0,"1937":0,"1938":0,"1939":0,"1940":-1,"1941":2216,"1942":0,"1943":2293,"1944":0,"1945":0,"1946":0,"1947":3679,"1948":0,"1949":2155,"1950":0,"1951":2005,"1952":0,"1953":-1,"1954":3122,"1955":3735,"1956":2040,"1957":0,"1958":-1,"1959":0,"1960":-1,"1961":0,"1962":3024,"1963":0,"1964":-1,"1965":3802,"1966":0,"1967":0,"1968":3855,"1969":2295,"1970":-1,"1971":0,"1972":0,"1973":2707,"1974":0,"1975":0,"1976":3423,"1977":0,"1978":-1,"1979":3924,"1980":0,"1981":3129,"1982":0,"1983":-1,"1984":3626,"1985":0,"1986":0,"1987":-1,"1988":-1,"1989":0,"1990":0,"1991":-1,"1992":0,"1993":2750,"1994":0,"1995":-1,"1996":3523,"1997":2209,"1998":2391,"1999":0,"2000":0,"2001":2061,"2002":-1,"2003":1922,"2004":-1,"2005":3941,"2006":0,"2007":2635,"2008":0,"2009":0,"2010":0,"2011":-1,"2012":0,"2013":-1,"2014":-1,"2015":3170,"2016":-1,"2017":0,"2018":0,"2019":0,"2020":138,"2021":0,"2022":-1,"2023":-1,"2024":0,"2025":-1,"2026":3536,"2027":1785,"2028":-1,"2029":0,"2030":0,"2031":0,"2032":-1,"2033":3964,"2034":0,"2035":0,"2036":-1,"2037":3211,"2038":111,"2039":3259,"2040":0,"2041":-1,"2042":0,"2043":0,"2044":1917,"2045":0,"2046":-1,"2047":-1,"2048":0,"2049":0,"2050":-1,"2051":0,"2052":0,"2053":0,"2054":0,"2055":2961,"2056":0,"2057":0,"2058":-1,"2059":2348,"2060":-1,"2061":2702,"2062":0,"2063":0,"2064":-1,"2065":3191,"2066":2180,"2067":1834,"2068":2777,"2069":0,"2070":2848,"2071":-1,"2072":0,"2073":127,"2074":2285,"2075":2148,"2076":-1,"2077":1996,"2078":0,"2079":0,"2080":0,"2081":-1,"2082":0,"2083":0,"2084":0,"2085":0,"2086":-1,"2087":0,"2088":0,"2089":0,"2090":2172,"2091":0,"2092":3025,"2093":-1,"2094":0,"2095":0,"2096":0,"2097":0,"2098":158,"2099":-1,"2100":-1,"2101":0,"2102":0,"2103":1872,"2104":2695,"2105":0,"2106":0,"2107":0,"2108":-1,"2109":0,"2110":-1,"2111":-1,"2112":3035,"2113":0,"2114":-1,"2115":0,"2116":0,"2117":-1,"2118":-1,"2119":-1,"2120":2929,"2121":-1,"2122":0,"2123":-1,"2124":0,"2125":0,"2126":2472,"2127":-1,"2128":-1,"2129":2753,"2130":0,"2131":0,"2132":0,"2133":0,"2134":-1,"2135":-1,"2136":0,"2137":-1,"2138":-1,"2139":0,"2140":0,"2141":3366,"2142":0,"2143":0,"2144":0,"2145":0,"2146":0,"2147":2635,"2148":-1,"2149":-1,"2150":472,"2151":0,"2152":0,"2153":0,"2154":0,"2155":0,"2156":-1,"2157":3340,"2158":-1,"2159":0,"2160":0,"2161":0,"2162":-1,"2163":0,"2164":0,"2165":0,"2166":2913,"2167":309,"2168":0,"2169":0,"2170":0,"2171":0,"2172":2594,"2173":0,"2174":0,"2175":0,"2176":-1,"2177":-1,"2178":0,"2179":-1,"2180":0,"2181":0,"2182":0,"2183":-1,"2184":0,"2185":0,"2186":-1,"2187":-1,"2188":0,"2189":3295,"2190":0,"2191":0,"2192":3935,"2193":0,"2194":3974,"2195":0,"2196":-1,"2197":2410,"2198":2372,"2199":2039,"2200":1834,"2201":3989,"2202":0,"2203":-1,"2204":2848,"2205":-1,"2206":0,"2207":1842,"2208":2789,"2209":198,"2210":2040,"2211":0,"2212":0,"2213":0,"2214":94,"2215":0,"2216":-1,"2217":0,"2218":33,"2219":0,"2220":0,"2221":2022,"2222":-1,"2223":-1,"2224":-1,"2225":0,"2226":3067,"2227":-1,"2228":0,"2229":58,"2230":3395,"2231":-1,"2232":3971,"2233":0,"2234":1908,"2235":174,"2236":0,"2237":0,"2238":3407,"2239":-1,"2240":0,"2241":-1,"2242":-1,"2243":0,"2244":3335,"2245":0,"2246":252,"2247":-1,"2248":-1,"2249":-1,"2250":0,"2251":-1,"2252":0,"2253":2828,"2254":0,"2255":2314,"2256":0,"2257":0,"2258":0,"2259":0,"2260":-1,"2261":0,"2262":0,"2263":-1,"2264":0,"2265":0,"2266":1828,"2267":0,"2268":-1,"2269":-1,"2270":2409,"2271":0,"2272":2574,"2273":0,"2274":3363,"2275":1974,"2276":0,"2277":1951,"2278":-1,"2279":0,"2280":-1,"2281":0,"2282":2787,"2283":-1,"2284":0,"2285":0,"2286":2305,"2287":0,"2288":-1,"2289":3396,"2290":0,"2291":1968,"2292":3510,"2293":0,"2294":0,"2295":0,"2296":0,"2297":2651,"2298":0,"2299":-1,"2300":0,"2301":3200,"2302":3041,"2303":0,"2304":-1,"2305":-1,"2306":2026,"2307":0,"2308":-1,"2309":-1,"2310":0,"2311":-1,"2312":-1,"2313":3805,"2314":-1,"2315":-1,"2316":0,"2317":-1,"2318":0,"2319":0,"2320":3024,"2321":0,"2322":-1,"2323":66,"2324":-1,"2325":3360,"2326":2886,"2327":503,"2328":0,"2329":0,"2330":0,"2331":0,"2332":0,"2333":2654,"2334":-1,"2335":256,"2336":2304,"2337":-1,"2338":0,"2339":0,"2340":0,"2341":154,"2342":0,"2343":0,"2344":146,"2345":0,"2346":0,"2347":-1,"2348":0,"2349":229,"2350":-1,"2351":2332,"2352":-1,"2353":-1,"2354":0,"2355":-1,"2356":0,"2357":2224,"2358":0,"2359":0,"2360":-1,"2361":2150,"2362":0,"2363":-1,"2364":2494,"2365":0,"2366":0,"2367":0,"2368":-1,"2369":-1,"2370":-1,"2371":0,"2372":0,"2373":0,"2374":-1,"2375":0,"2376":0,"2377":2479,"2378":3011,"2379":0,"2380":0,"2381":3980,"2382":3239,"2383":-1,"2384":0,"2385":2495,"2386":0,"2387":0,"2388":-1,"2389":0,"2390":255,"2391":409,"2392":0,"2393":0,"2394":-1,"2395":397,"2396":3270,"2397":2748,"2398":-1,"2399":3492,"2400":-1,"2401":3517,"2402":-1,"2403":0,"2404":205,"2405":0,"2406":3174,"2407":0,"2408":-1,"2409":2027,"2410":2047,"2411":-1,"2412":0,"2413":-1,"2414":-1,"2415":316,"2416":-1,"2417":-1,"2418":3057,"2419":-1,"2420":3511,"2421":0,"2422":3233,"2423":77,"2424":0,"2425":0,"2426":0,"2427":0,"2428":2984,"2429":0,"2430":-1,"2431":0,"2432":-1,"2433":3046,"2434":-1,"2435":1853,"2436":-1,"2437":3794,"2438":-1,"2439":3676,"2440":0,"2441":0,"2442":-1,"2443":-1,"2444":0,"2445":0,"2446":-1,"2447":0,"2448":0,"2449":2666,"2450":0,"2451":0,"2452":0,"2453":3692,"2454":3228,"2455":3160,"2456":-1,"2457":0,"2458":2430,"2459":3214,"2460":-1,"2461":2741,"2462":3071,"2463":0,"2464":-1,"2465":0,"2466":3831,"2467":0,"2468":0,"2469":0,"2470":0,"2471":0,"2472":-1,"2473":-1,"2474":0,"2475":0,"2476":0,"2477":-1,"2478":0,"2479":0,"2480":2533,"2481":0,"2482":3385,"2483":-1,"2484":2928,"2485":0,"2486":-1,"2487":0,"2488":0,"2489":2762,"2490":3208,"2491":0,"2492":0,"2493":3756,"2494":315,"2495":-1,"2496":-1,"2497":0,"2498":3074,"2499":0,"2500":0,"2501":2771,"2502":-1,"2503":-1,"2504":-1,"2505":0,"2506":3880,"2507":0,"2508":3210,"2509":-1,"2510":-1,"2511":-1,"2512":0,"2513":0,"2514":69,"2515":2029,"2516":0,"2517":0,"2518":3518,"2519":264,"2520":-1,"2521":2709,"2522":-1,"2523":0,"2524":3663,"2525":1902,"2526":0,"2527":0,"2528":0,"2529":0,"2530":-1,"2531":-1,"2532":-1,"2533":0,"2534":-1,"2535":-1,"2536":0,"2537":0,"2538":0,"2539":2007,"2540":-1,"2541":-1,"2542":-1,"2543":2569,"2544":0,"2545":0,"2546":-1,"2547":0,"2548":-1,"2549":-1,"2550":2951,"2551":0,"2552":-1,"2553":-1,"2554":-1,"2555":2561,"2556":-1,"2557":251,"2558":-1,"2559":0,"2560":0,"2561":0,"2562":0,"2563":3454,"2564":0,"2565":0,"2566":0,"2567":0,"2568":0,"2569":261,"2570":-1,"2571":0,"2572":-1,"2573":0,"2574":0,"2575":0,"2576":0,"2577":-1,"2578":-1,"2579":0,"2580":0,"2581":-1,"2582":-1,"2583":0,"2584":-1,"2585":0,"2586":2078,"2587":0,"2588":0,"2589":152,"2590":0,"2591":2504,"2592":0,"2593":0,"2594":2314,"2595":2406,"2596":0,"2597":3687,"2598":0,"2599":-1,"2600":-1,"2601":0,"2602":3044,"2603":0,"2604":-1,"2605":0,"2606":-1,"2607":-1,"2608":-1,"2609":490,"2610":0,"2611":-1,"2612":0,"2613":-1,"2614":282,"2615":0,"2616":0,"2617":0,"2618":0,"2619":0,"2620":-1,"2621":-1,"2622":-1,"2623":0,"2624":0,"2625":0,"2626":3779,"2627":-1,"2628":3223,"2629":15,"2630":-1,"2631":0,"2632":0,"2633":0,"2634":-1,"2635":393,"2636":3684,"2637":0,"2638":0,"2639":0,"2640":4022,"2641":-1,"2642":0,"2643":0,"2644":-1,"2645":-1,"2646":-1,"2647":0,"2648":0,"2649":-1,"2650":0,"2651":3551,"2652":-1,"2653":282,"2654":0,"2655":0,"2656":-1,"2657":-1,"2658":-1,"2659":0,"2660":-1,"2661":406,"2662":-1,"2663":0,"2664":-1,"2665":-1,"2666":-1,"2667":0,"2668":3247,"2669":-1,"2670":2780,"2671":4016,"2672":-1,"2673":-1,"2674":-1,"2675":-1,"2676":0,"2677":-1,"2678":-1,"2679":-1,"2680":-1,"2681":369,"2682":-1,"2683":-1,"2684":0,"2685":2780,"2686":0,"2687":2408,"2688":3926,"2689":-1,"2690":0,"2691":-1,"2692":-1,"2693":0,"2694":4017,"2695":0,"2696":0,"2697":3464,"2698":-1,"2699":2105,"2700":0,"2701":0,"2702":-1,"2703":2133,"2704":0,"2705":-1,"2706":0,"2707":-1,"2708":-1,"2709":2907,"2710":0,"2711":3090,"2712":-1,"2713":0,"2714":0,"2715":412,"2716":0,"2717":0,"2718":-1,"2719":0,"2720":2003,"2721":0,"2722":3279,"2723":3549,"2724":0,"2725":-1,"2726":290,"2727":0,"2728":-1,"2729":-1,"2730":-1,"2731":0,"2732":-1,"2733":-1,"2734":0,"2735":0,"2736":3995,"2737":0,"2738":0,"2739":3408,"2740":0,"2741":0,"2742":-1,"2743":0,"2744":-1,"2745":0,"2746":-1,"2747":0,"2748":0,"2749":-1,"2750":0,"2751":0,"2752":0,"2753":0,"2754":-1,"2755":-1,"2756":0,"2757":-1,"2758":0,"2759":319,"2760":-1,"2761":0,"2762":0,"2763":0,"2764":3929,"2765":-1,"2766":0,"2767":373,"2768":-1,"2769":18,"2770":0,"2771":2508,"2772":3024,"2773":-1,"2774":0,"2775":0,"2776":0,"2777":0,"2778":0,"2779":0,"2780":0,"2781":2991,"2782":0,"2783":3021,"2784":2984,"2785":0,"2786":0,"2787":0,"2788":-1,"2789":0,"2790":3804,"2791":4031,"2792":0,"2793":-1,"2794":-1,"2795":-1,"2796":0,"2797":-1,"2798":-1,"2799":0,"2800":4014,"2801":-1,"2802":0,"2803":0,"2804":0,"2805":0,"2806":-1,"2807":-1,"2808":0,"2809":0,"2810":0,"2811":3442,"2812":0,"2813":-1,"2814":0,"2815":-1,"2816":-1,"2817":0,"2818":-1,"2819":0,"2820":0,"2821":3272,"2822":3758,"2823":-1,"2824":-1,"2825":0,"2826":-1,"2827":0,"2828":0,"2829":205,"2830":0,"2831":-1,"2832":2886,"2833":2844,"2834":0,"2835":-1,"2836":-1,"2837":-1,"2838":0,"2839":2727,"2840":-1,"2841":0,"2842":0,"2843":0,"2844":0,"2845":-1,"2846":-1,"2847":489,"2848":3473,"2849":0,"2850":2850,"2851":0,"2852":-1,"2853":-1,"2854":0,"2855":2249,"2856":0,"2857":0,"2858":-1,"2859":0,"2860":-1,"2861":-1,"2862":0,"2863":3366,"2864":0,"2865":0,"2866":0,"2867":0,"2868":-1,"2869":0,"2870":0,"2871":-1,"2872":130,"2873":0,"2874":1835,"2875":0,"2876":0,"2877":0,"2878":0,"2879":0,"2880":2140,"2881":3860,"2882":-1,"2883":3419,"2884":0,"2885":0,"2886":0,"2887":3950,"2888":3648,"2889":0,"2890":-1,"2891":-1,"2892":514,"2893":0,"2894":0,"2895":0,"2896":3985,"2897":2821,"2898":-1,"2899":0,"2900":0,"2901":-1,"2902":0,"2903":2493,"2904":0,"2905":0,"2906":2028,"2907":-1,"2908":2676,"2909":3093,"2910":0,"2911":0,"2912":0,"2913":358,"2914":0,"2915":0,"2916":-1,"2917":0,"2918":0,"2919":0,"2920":-1,"2921":-1,"2922":0,"2923":-1,"2924":0,"2925":3544,"2926":3988,"2927":-1,"2928":3764,"2929":0,"2930":263,"2931":0,"2932":3689,"2933":0,"2934":0,"2935":0,"2936":0,"2937":-1,"2938":0,"2939":0,"2940":-1,"2941":0,"2942":0,"2943":-1,"2944":3274,"2945":0,"2946":0,"2947":0,"2948":-1,"2949":-1,"2950":0,"2951":0,"2952":-1,"2953":2042,"2954":0,"2955":3197,"2956":0,"2957":-1,"2958":2327,"2959":0,"2960":0,"2961":0,"2962":0,"2963":2643,"2964":0,"2965":2520,"2966":-1,"2967":-1,"2968":2263,"2969":-1,"2970":0,"2971":0,"2972":2794,"2973":0,"2974":1997,"2975":-1,"2976":0,"2977":0,"2978":-1,"2979":0,"2980":3810,"2981":0,"2982":0,"2983":0,"2984":0,"2985":0,"2986":0,"2987":0,"2988":2593,"2989":2354,"2990":-1,"2991":2646,"2992":0,"2993":-1,"2994":0,"2995":-1,"2996":2299,"2997":-1,"2998":-1,"2999":3461,"3000":3194,"3001":0,"3002":-1,"3003":78,"3004":3190,"3005":0,"3006":0,"3007":-1,"3008":-1,"3009":3304,"3010":3243,"3011":-1,"3012":0,"3013":0,"3014":0,"3015":-1,"3016":-1,"3017":3943,"3018":-1,"3019":-1,"3020":2690,"3021":0,"3022":-1,"3023":0,"3024":-1,"3025":0,"3026":0,"3027":-1,"3028":0,"3029":-1,"3030":0,"3031":0,"3032":-1,"3033":4006,"3034":119,"3035":0,"3036":1807,"3037":0,"3038":-1,"3039":0,"3040":0,"3041":1863,"3042":0,"3043":94,"3044":504,"3045":-1,"3046":-1,"3047":0,"3048":-1,"3049":-1,"3050":-1,"3051":2958,"3052":0,"3053":1864,"3054":2309,"3055":0,"3056":-1,"3057":2967,"3058":-1,"3059":0,"3060":2992,"3061":3846,"3062":2092,"3063":-1,"3064":0,"3065":-1,"3066":2879,"3067":2676,"3068":-1,"3069":0,"3070":0,"3071":2371,"3072":-1,"3073":3362,"3074":3537,"3075":0,"3076":0,"3077":0,"3078":2324,"3079":69,"3080":1916,"3081":-1,"3082":2836,"3083":0,"3084":3643,"3085":2763,"3086":0,"3087":-1,"3088":-1,"3089":-1,"3090":0,"3091":-1,"3092":0,"3093":0,"3094":-1,"3095":-1,"3096":0,"3097":0,"3098":0,"3099":4034,"3100":-1,"3101":-1,"3102":0,"3103":0,"3104":-1,"3105":0,"3106":0,"3107":-1,"3108":-1,"3109":0,"3110":-1,"3111":-1,"3112":316,"3113":3247,"3114":0,"3115":65,"3116":-1,"3117":425,"3118":2373,"3119":-1,"3120":248,"3121":0,"3122":0,"3123":0,"3124":0,"3125":2390,"3126":74,"3127":0,"3128":0,"3129":-1,"3130":-1,"3131":0,"3132":-1,"3133":0,"3134":0,"3135":3929,"3136":0,"3137":1957,"3138":0,"3139":0,"3140":-1,"3141":0,"3142":2919,"3143":0,"3144":-1,"3145":0,"3146":-1,"3147":0,"3148":-1,"3149":0,"3150":2565,"3151":1952,"3152":-1,"3153":0,"3154":-1,"3155":-1,"3156":-1,"3157":0,"3158":1924,"3159":-1,"3160":-1,"3161":0,"3162":-1,"3163":0,"3164":0,"3165":0,"3166":-1,"3167":-1,"3168":2041,"3169":-1,"3170":-1,"3171":0,"3172":0,"3173":474,"3174":3377,"3175":-1,"3176":-1,"3177":2221,"3178":-1,"3179":2157,"3180":1939,"3181":2303,"3182":-1,"3183":3484,"3184":2722,"3185":0,"3186":-1,"3187":-1,"3188":0,"3189":-1,"3190":-1,"3191":0,"3192":-1,"3193":-1,"3194":2781,"3195":-1,"3196":3473,"3197":3096,"3198":4013,"3199":-1,"3200":2664,"3201":-1,"3202":0,"3203":0,"3204":-1,"3205":3623,"3206":398,"3207":0,"3208":1859,"3209":0,"3210":3078,"3211":0,"3212":-1,"3213":1856,"3214":2037,"3215":0,"3216":3416,"3217":0,"3218":0,"3219":2307,"3220":0,"3221":0,"3222":-1,"3223":3789,"3224":-1,"3225":3894,"3226":0,"3227":48,"3228":0,"3229":0,"3230":-1,"3231":-1,"3232":331,"3233":0,"3234":3826,"3235":0,"3236":0,"3237":2505,"3238":2171,"3239":0,"3240":-1,"3241":443,"3242":1960,"3243":-1,"3244":0,"3245":2817,"3246":0,"3247":0,"3248":0,"3249":0,"3250":-1,"3251":0,"3252":0,"3253":2173,"3254":0,"3255":0,"3256":-1,"3257":2686,"3258":3317,"3259":3305,"3260":0,"3261":0,"3262":0,"3263":0,"3264":2360,"3265":-1,"3266":0,"3267":0,"3268":0,"3269":0,"3270":173,"3271":0,"3272":-1,"3273":-1,"3274":-1,"3275":-1,"3276":0,"3277":-1,"3278":-1,"3279":0,"3280":-1,"3281":0,"3282":0,"3283":-1,"3284":0,"3285":2089,"3286":0,"3287":-1,"3288":3470,"3289":3285,"3290":-1,"3291":-1,"3292":-1,"3293":1795,"3294":0,"3295":0,"3296":0,"3297":2930,"3298":0,"3299":0,"3300":0,"3301":-1,"3302":1868,"3303":0,"3304":-1,"3305":2742,"3306":3222,"3307":2825,"3308":0,"3309":0,"3310":-1,"3311":0,"3312":-1,"3313":0,"3314":-1,"3315":-1,"3316":0,"3317":-1,"3318":39,"3319":0,"3320":2134,"3321":-1,"3322":-1,"3323":0,"3324":-1,"3325":-1,"3326":-1,"3327":-1,"3328":2675,"3329":0,"3330":0,"3331":0,"3332":-1,"3333":-1,"3334":2925,"3335":-1,"3336":-1,"3337":2755,"3338":-1,"3339":-1,"3340":3404,"3341":0,"3342":3114,"3343":-1,"3344":0,"3345":0,"3346":0,"3347":0,"3348":0,"3349":3785,"3350":3715,"3351":-1,"3352":-1,"3353":-1,"3354":-1,"3355":0,"3356":3394,"3357":-1,"3358":-1,"3359":280,"3360":0,"3361":-1,"3362":2163,"3363":-1,"3364":0,"3365":0,"3366":0,"3367":0,"3368":1965,"3369":-1,"3370":0,"3371":0,"3372":0,"3373":-1,"3374":1999,"3375":-1,"3376":0,"3377":-1,"3378":280,"3379":335,"3380":-1,"3381":0,"3382":0,"3383":-1,"3384":-1,"3385":-1,"3386":0,"3387":-1,"3388":3052,"3389":0,"3390":3858,"3391":0,"3392":-1,"3393":2313,"3394":3939,"3395":-1,"3396":-1,"3397":0,"3398":0,"3399":0,"3400":-1,"3401":-1,"3402":-1,"3403":-1,"3404":-1,"3405":0,"3406":0,"3407":260,"3408":3593,"3409":4046,"3410":0,"3411":0,"3412":0,"3413":2942,"3414":3164,"3415":2414,"3416":0,"3417":0,"3418":0,"3419":0,"3420":0,"3421":3359,"3422":-1,"3423":0,"3424":0,"3425":0,"3426":2984,"3427":0,"3428":-1,"3429":-1,"3430":2962,"3431":-1,"3432":-1,"3433":3029,"3434":2478,"3435":-1,"3436":89,"3437":2161,"3438":0,"3439":-1,"3440":2443,"3441":-1,"3442":3893,"3443":-1,"3444":0,"3445":2295,"3446":-1,"3447":-1,"3448":0,"3449":0,"3450":0,"3451":0,"3452":3225,"3453":-1,"3454":0,"3455":0,"3456":3025,"3457":0,"3458":0,"3459":0,"3460":3739,"3461":2619,"3462":345,"3463":-1,"3464":0,"3465":3712,"3466":0,"3467":-1,"3468":-1,"3469":0,"3470":3023,"3471":3228,"3472":-1,"3473":0,"3474":0,"3475":473,"3476":0,"3477":0,"3478":1807,"3479":0,"3480":2793,"3481":2108,"3482":-1,"3483":3645,"3484":2987,"3485":0,"3486":2796,"3487":126,"3488":0,"3489":3366,"3490":0,"3491":0,"3492":3268,"3493":1782,"3494":-1,"3495":2552,"3496":0,"3497":0,"3498":0,"3499":0,"3500":-1,"3501":-1,"3502":3013,"3503":-1,"3504":-1,"3505":3366,"3506":2418,"3507":0,"3508":-1,"3509":0,"3510":1851,"3511":-1,"3512":0,"3513":3095,"3514":3519,"3515":-1,"3516":0,"3517":0,"3518":1841,"3519":2892,"3520":-1,"3521":-1,"3522":330,"3523":0,"3524":131,"3525":-1,"3526":0,"3527":316,"3528":0,"3529":0,"3530":0,"3531":2247,"3532":3217,"3533":-1,"3534":-1,"3535":0,"3536":0,"3537":-1,"3538":0,"3539":0,"3540":2413,"3541":0,"3542":-1,"3543":-1,"3544":-1,"3545":0,"3546":-1,"3547":2061,"3548":-1,"3549":30,"3550":0,"3551":0,"3552":-1,"3553":-1,"3554":501,"3555":-1,"3556":0,"3557":3107,"3558":-1,"3559":3546,"3560":0,"3561":0,"3562":0,"3563":-1,"3564":0,"3565":-1,"3566":2228,"3567":0,"3568":-1,"3569":0,"3570":-1,"3571":-1,"3572":-1,"3573":298,"3574":-1,"3575":0,"3576":0,"3577":-1,"3578":2953,"3579":-1,"3580":327,"3581":3427,"3582":0,"3583":1858,"3584":0,"3585":-1,"3586":0,"3587":-1,"3588":2396,"3589":0,"3590":0,"3591":-1,"3592":3617,"3593":0,"3594":0,"3595":0,"3596":-1,"3597":3979,"3598":1914,"3599":3719,"3600":0,"3601":0,"3602":0,"3603":3533,"3604":-1,"3605":-1,"3606":0,"3607":1928,"3608":-1,"3609":-1,"3610":-1,"3611":0,"3612":0,"3613":0,"3614":0,"3615":-1,"3616":415,"3617":-1,"3618":0,"3619":0,"3620":-1,"3621":2035,"3622":0,"3623":-1,"3624":0,"3625":-1,"3626":2347,"3627":-1,"3628":0,"3629":0,"3630":0,"3631":0,"3632":0,"3633":-1,"3634":4000,"3635":-1,"3636":0,"3637":0,"3638":3805,"3639":-1,"3640":2630,"3641":1829,"3642":2216,"3643":0,"3644":-1,"3645":2591,"3646":-1,"3647":-1,"3648":-1,"3649":3424,"3650":0,"3651":0,"3652":0,"3653":0,"3654":0,"3655":0,"3656":0,"3657":0,"3658":0,"3659":0,"3660":3202,"3661":-1,"3662":0,"3663":0,"3664":27,"3665":0,"3666":-1,"3667":0,"3668":0,"3669":-1,"3670":-1,"3671":-1,"3672":-1,"3673":0,"3674":-1,"3675":3866,"3676":3315,"3677":-1,"3678":0,"3679":0,"3680":-1,"3681":-1,"3682":-1,"3683":-1,"3684":-1,"3685":0,"3686":252,"3687":0,"3688":0,"3689":3447,"3690":-1,"3691":2089,"3692":0,"3693":-1,"3694":0,"3695":0,"3696":0,"3697":-1,"3698":0,"3699":0,"3700":3277,"3701":0,"3702":0,"3703":0,"3704":0,"3705":-1,"3706":3236,"3707":-1,"3708":3909,"3709":-1,"3710":0,"3711":0,"3712":0,"3713":214,"3714":-1,"3715":1859,"3716":0,"3717":2432,"3718":0,"3719":-1,"3720":0,"3721":0,"3722":0,"3723":-1,"3724":-1,"3725":-1,"3726":0,"3727":0,"3728":-1,"3729":0,"3730":196,"3731":3666,"3732":0,"3733":0,"3734":0,"3735":-1,"3736":3906,"3737":-1,"3738":2444,"3739":-1,"3740":3617,"3741":0,"3742":0,"3743":72,"3744":3577,"3745":0,"3746":-1,"3747":-1,"3748":3950,"3749":0,"3750":0,"3751":-1,"3752":3373,"3753":0,"3754":-1,"3755":-1,"3756":3938,"3757":0,"3758":0,"3759":-1,"3760":0,"3761":0,"3762":0,"3763":-1,"3764":-1,"3765":1986,"3766":0,"3767":0,"3768":0,"3769":-1,"3770":3796,"3771":3613,"3772":3210,"3773":3183,"3774":2750,"3775":-1,"3776":-1,"3777":2137,"3778":0,"3779":-1,"3780":85,"3781":3237,"3782":0,"3783":3197,"3784":-1,"3785":0,"3786":-1,"3787":0,"3788":3556,"3789":-1,"3790":0,"3791":2099,"3792":3830,"3793":-1,"3794":-1,"3795":250,"3796":-1,"3797":3431,"3798":0,"3799":0,"3800":0,"3801":-1,"3802":2829,"3803":0,"3804":2160,"3805":0,"3806":2465,"3807":3180,"3808":0,"3809":0,"3810":3838,"3811":-1,"3812":0,"3813":0,"3814":0,"3815":-1,"3816":0,"3817":0,"3818":16,"3819":-1,"3820":0,"3821":-1,"3822":3035,"3823":0,"3824":-1,"3825":3185,"3826":0,"3827":3235,"3828":0,"3829":-1,"3830":0,"3831":2993,"3832":0,"3833":-1,"3834":-1,"3835":-1,"3836":0,"3837":0,"3838":126,"3839":-1,"3840":0,"3841":-1,"3842":-1,"3843":3010,"3844":3040,"3845":-1,"3846":4039,"3847":0,"3848":-1,"3849":-1,"3850":1785,"3851":0,"3852":-1,"3853":0,"3854":0,"3855":0,"3856":2636,"3857":-1,"3858":-1,"3859":0,"3860":2283,"3861":0,"3862":-1,"3863":0,"3864":-1,"3865":3788,"3866":0,"3867":0,"3868":0,"3869":-1,"3870":0,"3871":3061,"3872":-1,"3873":0,"3874":0,"3875":0,"3876":2785,"3877":-1,"3878":0,"3879":297,"3880":-1,"3881":0,"3882":0,"3883":2936,"3884":0,"3885":-1,"3886":0,"3887":0,"3888":-1,"3889":-1,"3890":0,"3891":3799,"3892":-1,"3893":0,"3894":0,"3895":-1,"3896":0,"3897":0,"3898":0,"3899":2178,"3900":0,"3901":0,"3902":1974,"3903":148,"3904":0,"3905":0,"3906":3496,"3907":0,"3908":516,"3909":289,"3910":0,"3911":0,"3912":-1,"3913":-1,"3914":0,"3915":-1,"3916":0,"3917":410,"3918":-1,"3919":3181,"3920":0,"3921":-1,"3922":2193,"3923":-1,"3924":-1,"3925":0,"3926":-1,"3927":-1,"3928":-1,"3929":0,"3930":2349,"3931":0,"3932":-1,"3933":0,"3934":-1,"3935":2616,"3936":4017,"3937":143,"3938":0,"3939":89,"3940":-1,"3941":0,"3942":-1,"3943":2323,"3944":3646,"3945":2712,"3946":2090,"3947":0,"3948":-1,"3949":15,"3950":3873,"3951":-1,"3952":0,"3953":-1,"3954":0,"3955":4052,"3956":3217,"3957":0,"3958":2302,"3959":0,"3960":2675,"3961":0,"3962":0,"3963":85,"3964":3005,"3965":-1,"3966":-1,"3967":0,"3968":2661,"3969":317,"3970":0,"3971":0,"3972":0,"3973":517,"3974":1988,"3975":2978,"3976":0,"3977":0,"3978":1824,"3979":-1,"3980":9,"3981":-1,"3982":0,"3983":0,"3984":-1,"3985":-1,"3986":-1,"3987":2592,"3988":2908,"3989":2007,"3990":-1,"3991":0,"3992":0,"3993":3758,"3994":0,"3995":109,"3996":0,"3997":3240,"3998":1818,"3999":0,"4000":3468,"4001":0,"4002":0,"4003":-1,"4004":0,"4005":0,"4006":0,"4007":0,"4008":0,"4009":0,"4010":0,"4011":0,"4012":3879,"4013":0,"4014":0,"4015":-1,"4016":0,"4017":0,"4018":1791,"4019":0,"4020":-1,"4021":0,"4022":0,"4023":1903,"4024":2769,"4025":0,"4026":3337,"4027":0,"4028":-1,"4029":0,"4030":-1,"4031":0,"4032":2805,"4033":1972,"4034":-1,"4035":3364,"4036":0,"4037":0,"4038":3789,"4039":3291,"4040":2868,"4041":2671,"4042":3194,"4043":0,"4044":0,"4045":-1,"4046":-1,"4047":-1,"4048":0,"4049":0,"4050":0,"4051":-1,"4052":-1,"4053":0,"4054":0,"4055":0,"4056":3787,"4057":188,"4058":-1,"4059":0,"4060":0,"4061":0,"4062":0,"4063":0,"4064":0,"4065":-1,"4066":-1,"4067":0,"4068":0,"4069":0,"4070":0,"4071":-1,"4072":2847,"4073":0,"4074":0,"4075":-1,"4076":0,"4077":2220,"4078":-1,"4079":125,"4080":0,"4081":-1,"4082":2916,"4083":0,"4084":0,"4085":0,"4086":0,"4087":-1,"4088":0,"4089":-1,"4090":-1,"4091":-1,"4092":2434,"4093":305,"4094":0,"4095":-1,"4096":-1,"4097":-1,"4098":79,"4099":0,"4100":-1,"4101":0,"4102":-1,"4103":-1,"4104":-1,"4105":0,"4106":0,"4107":-1,"4108":0,"4109":-1,"4110":271,"4111":-1,"4112":-1,"4113":3322,"4114":-1,"4115":0,"4116":-1,"4117":2012,"4118":2263,"4119":2818,"4120":-1,"4121":0,"4122":249,"4123":2783,"4124":0,"4125":0,"4126":-1,"4127":-1,"4128":2117,"4129":0,"4130":335,"4131":0,"4132":-1,"4133":0,"4134":-1,"4135":-1,"4136":0,"4137":-1,"4138":0,"4139":0,"4140":-1,"4141":3275,"4142":0,"4143":0,"4144":0,"4145":-1,"4146":-1,"4147":0,"4148":2960,"4149":-1,"4150":2635,"4151":2507,"4152":-1,"4153":-1,"4154":0,"4155":-1,"4156":0,"4157":-1,"4158":4045,"4159":2238,"4160":0,"4161":2176,"4162":-1,"4163":0,"4164":-1,"4165":-1,"4166":-1,"4167":-1,"4168":-1,"4169":0,"4170":-1,"4171":0,"4172":-1,"4173":-1,"4174":-1,"4175":-1,"4176":3308,"4177":0,"4178":0,"4179":2903,"4180":-1,"4181":0,"4182":3567,"4183":326,"4184":-1,"4185":-1,"4186":0,"4187":3287,"4188":2206,"4189":0,"4190":-1,"4191":0,"4192":-1,"4193":5,"4194":0,"4195":0,"4196":0,"4197":-1,"4198":0,"4199":-1,"4200":-1,"4201":3585,"4202":3753,"4203":0,"4204":0,"4205":0,"4206":-1,"4207":-1,"4208":3746,"4209":0,"4210":-1,"4211":-1,"4212":-1,"4213":-1,"4214":0,"4215":-1,"4216":-1,"4217":-1,"4218":-1,"4219":0,"4220":0,"4221":3970,"4222":-1,"4223":357,"4224":-1,"4225":-1,"4226":-1,"4227":-1,"4228":-1,"4229":202,"4230":-1,"4231":0,"4232":0,"4233":-1,"4234":3377,"4235":2625,"4236":-1,"4237":2725,"4238":2218,"4239":0,"4240":-1,"4241":0,"4242":0,"4243":2116,"4244":0,"4245":-1,"4246":0,"4247":-1,"4248":-1,"4249":54,"4250":-1,"4251":508,"4252":-1,"4253":0,"4254":3030,"4255":2364,"4256":2499,"4257":-1,"4258":0,"4259":-1,"4260":0,"4261":-1,"4262":0,"4263":0,"4264":0,"4265":-1,"4266":0,"4267":3739,"4268":0,"4269":-1,"4270":2475,"4271":0,"4272":3464,"4273":0,"4274":19,"4275":0,"4276":-1,"4277":0,"4278":-1,"4279":-1,"4280":0,"4281":0,"4282":3597,"4283":3598,"4284":2060,"4285":2280,"4286":0,"4287":0,"4288":-1,"4289":0,"4290":0,"4291":-1,"4292":-1,"4293":0,"4294":-1,"4295":0,"4296":-1,"4297":2408,"4298":3926,"4299":2422,"4300":224,"4301":0,"4302":3328,"4303":0,"4304":0,"4305":0,"4306":424,"4307":2484,"4308":-1,"4309":0,"4310":-1,"4311":3912,"4312":-1,"4313":0,"4314":-1,"4315":0,"4316":0,"4317":-1,"4318":0,"4319":0,"4320":0,"4321":0,"4322":0,"4323":3770,"4324":0,"4325":0,"4326":-1,"4327":-1,"4328":0,"4329":0,"4330":0,"4331":-1,"4332":-1,"4333":0,"4334":-1,"4335":-1,"4336":2945,"4337":0,"4338":0,"4339":0,"4340":3772,"4341":0,"4342":0,"4343":0,"4344":-1,"4345":0,"4346":0,"4347":281,"4348":0,"4349":3802,"4350":3990,"4351":0,"4352":-1,"4353":-1,"4354":0,"4355":-1,"4356":0,"4357":2264,"4358":3629,"4359":0,"4360":0,"4361":2036,"4362":-1,"4363":0,"4364":0,"4365":0,"4366":0,"4367":3657,"4368":0,"4369":446,"4370":-1,"4371":0,"4372":2842,"4373":-1,"4374":3780,"4375":-1,"4376":433,"4377":0,"4378":2337,"4379":0,"4380":0,"4381":0,"4382":0,"4383":3246,"4384":0,"4385":-1,"4386":472,"4387":-1,"4388":0,"4389":2015,"4390":-1,"4391":-1,"4392":-1,"4393":0,"4394":0,"4395":0,"4396":0,"4397":0,"4398":0,"4399":0,"4400":3561,"4401":-1,"4402":1819,"4403":0,"4404":0,"4405":0,"4406":-1,"4407":-1,"4408":3941,"4409":0,"4410":-1,"4411":-1,"4412":0,"4413":0,"4414":0,"4415":2271,"4416":0,"4417":0,"4418":-1,"4419":0,"4420":-1,"4421":-1,"4422":289,"4423":2434,"4424":186,"4425":3631,"4426":-1,"4427":0,"4428":-1,"4429":-1,"4430":0,"4431":-1,"4432":2542,"4433":3963,"4434":-1,"4435":-1,"4436":-1,"4437":0,"4438":-1,"4439":3309,"4440":0,"4441":3255,"4442":0,"4443":-1,"4444":-1,"4445":2405,"4446":-1,"4447":0,"4448":-1,"4449":-1,"4450":3184,"4451":0,"4452":2469,"4453":0,"4454":-1,"4455":124,"4456":355,"4457":3382,"4458":3821,"4459":-1,"4460":2369,"4461":1835,"4462":-1,"4463":269,"4464":3456,"4465":-1,"4466":0,"4467":-1,"4468":-1,"4469":2665,"4470":-1,"4471":-1,"4472":0,"4473":0,"4474":-1,"4475":0,"4476":0,"4477":-1,"4478":1971,"4479":2273,"4480":0,"4481":-1,"4482":0,"4483":0,"4484":2399,"4485":0,"4486":3419,"4487":0,"4488":0,"4489":0,"4490":3490,"4491":0,"4492":0,"4493":0,"4494":0,"4495":2609,"4496":0,"4497":-1,"4498":2011,"4499":0,"4500":-1,"4501":3679,"4502":4048,"4503":-1,"4504":0,"4505":-1,"4506":0,"4507":-1,"4508":-1,"4509":0,"4510":133,"4511":0,"4512":0,"4513":0,"4514":0,"4515":-1,"4516":0,"4517":0,"4518":0,"4519":-1,"4520":12,"4521":-1,"4522":0,"4523":2283,"4524":-1,"4525":-1,"4526":2878,"4527":0,"4528":-1,"4529":0,"4530":3297,"4531":-1,"4532":0,"4533":-1,"4534":-1,"4535":-1,"4536":0,"4537":-1,"4538":0,"4539":2524,"4540":0,"4541":2678,"4542":-1,"4543":0,"4544":3529,"4545":0,"4546":3264,"4547":3348,"4548":-1,"4549":0,"4550":0,"4551":36,"4552":-1,"4553":3153,"4554":0,"4555":0,"4556":0,"4557":0,"4558":2176,"4559":37,"4560":-1,"4561":-1,"4562":0,"4563":0,"4564":0,"4565":0,"4566":0,"4567":0,"4568":0,"4569":0,"4570":0,"4571":-1,"4572":0,"4573":0,"4574":0,"4575":-1,"4576":0,"4577":0,"4578":-1,"4579":-1,"4580":0,"4581":0,"4582":0,"4583":3221,"4584":350,"4585":70,"4586":0,"4587":3208,"4588":0,"4589":0,"4590":0,"4591":-1,"4592":3727,"4593":-1,"4594":0,"4595":0,"4596":0,"4597":-1,"4598":219,"4599":2632,"4600":2338,"4601":2588,"4602":0,"4603":3959,"4604":3629,"4605":3063,"4606":46,"4607":0,"4608":0,"4609":0,"4610":0,"4611":0,"4612":0,"4613":0,"4614":0,"4615":0,"4616":0,"4617":-1,"4618":-1,"4619":3165,"4620":-1,"4621":0,"4622":2260,"4623":2556,"4624":-1,"4625":0,"4626":0,"4627":3831,"4628":0,"4629":0,"4630":0,"4631":385,"4632":0,"4633":0,"4634":-1,"4635":2852,"4636":3417,"4637":-1,"4638":-1,"4639":0,"4640":0,"4641":3710,"4642":-1,"4643":-1,"4644":3024,"4645":-1,"4646":0,"4647":0,"4648":0,"4649":0,"4650":0,"4651":-1,"4652":0,"4653":-1,"4654":-1,"4655":0,"4656":-1,"4657":2351,"4658":-1,"4659":2097,"4660":-1,"4661":2400,"4662":0,"4663":2968,"4664":0,"4665":0,"4666":0,"4667":-1,"4668":0,"4669":3332,"4670":0,"4671":3882,"4672":-1,"4673":-1,"4674":0,"4675":-1,"4676":3893,"4677":0,"4678":3165,"4679":0,"4680":0,"4681":0,"4682":-1,"4683":-1,"4684":-1,"4685":0,"4686":-1,"4687":0,"4688":-1,"4689":3984,"4690":0,"4691":0,"4692":0,"4693":0,"4694":3434,"4695":0,"4696":2653,"4697":-1,"4698":3798,"4699":-1,"4700":-1,"4701":183,"4702":0,"4703":2788,"4704":0,"4705":0,"4706":0,"4707":1930,"4708":2265,"4709":0,"4710":-1,"4711":494,"4712":-1,"4713":-1,"4714":-1,"4715":2973,"4716":0,"4717":0,"4718":-1,"4719":2242,"4720":-1,"4721":0,"4722":0,"4723":2613,"4724":2435,"4725":1943,"4726":-1,"4727":0,"4728":-1,"4729":-1,"4730":0,"4731":-1,"4732":-1,"4733":0,"4734":-1,"4735":0,"4736":3425,"4737":-1,"4738":0,"4739":-1,"4740":-1,"4741":0,"4742":0,"4743":3549,"4744":0,"4745":3291,"4746":3517,"4747":0,"4748":3816,"4749":200,"4750":0,"4751":-1,"4752":-1,"4753":0,"4754":0,"4755":0,"4756":-1,"4757":0,"4758":0,"4759":0,"4760":-1,"4761":2737,"4762":1943,"4763":-1,"4764":0,"4765":2984,"4766":0,"4767":3024,"4768":0,"4769":0,"4770":0,"4771":0,"4772":-1,"4773":100,"4774":-1,"4775":0,"4776":0,"4777":-1,"4778":0,"4779":-1,"4780":-1,"4781":2307,"4782":-1,"4783":0,"4784":0,"4785":-1,"4786":0,"4787":1803,"4788":0,"4789":0,"4790":2523,"4791":2915,"4792":103,"4793":2126,"4794":-1,"4795":0,"4796":3004,"4797":-1,"4798":120,"4799":0,"4800":2591,"4801":0,"4802":-1,"4803":0,"4804":0,"4805":-1,"4806":-1,"4807":3219,"4808":0,"4809":-1,"4810":0,"4811":0,"4812":0,"4813":2262,"4814":0,"4815":0,"4816":0,"4817":0,"4818":0,"4819":0,"4820":-1,"4821":0,"4822":-1,"4823":4,"4824":-1,"4825":-1,"4826":0,"4827":0,"4828":0,"4829":94,"4830":0,"4831":-1,"4832":0,"4833":3634,"4834":0,"4835":-1,"4836":2250,"4837":-1,"4838":2559,"4839":0,"4840":0,"4841":2604,"4842":0,"4843":2040,"4844":2364,"4845":-1,"4846":4003,"4847":-1,"4848":0,"4849":3898,"4850":0,"4851":0,"4852":-1,"4853":0,"4854":0,"4855":0,"4856":0,"4857":-1,"4858":298,"4859":0,"4860":0,"4861":-1,"4862":3959,"4863":-1,"4864":-1,"4865":-1,"4866":285,"4867":0,"4868":1875,"4869":-1,"4870":0,"4871":0,"4872":-1,"4873":478,"4874":2593,"4875":-1,"4876":80,"4877":482,"4878":27,"4879":0,"4880":-1,"4881":0,"4882":-1,"4883":-1,"4884":3369,"4885":-1,"4886":2881,"4887":-1,"4888":2640,"4889":0,"4890":0,"4891":0,"4892":0,"4893":0,"4894":0,"4895":-1,"4896":438,"4897":2331,"4898":3752,"4899":3110,"4900":0,"4901":0,"4902":-1,"4903":0,"4904":0,"4905":0,"4906":0,"4907":0,"4908":1943,"4909":-1,"4910":271,"4911":405,"4912":2548,"4913":4024,"4914":2865,"4915":0,"4916":-1,"4917":-1,"4918":-1,"4919":0,"4920":-1,"4921":0,"4922":0,"4923":0,"4924":0,"4925":2348,"4926":-1,"4927":0,"4928":0,"4929":3223,"4930":0,"4931":3408,"4932":-1,"4933":2821,"4934":0,"4935":-1,"4936":0,"4937":0,"4938":3330,"4939":0,"4940":0,"4941":-1,"4942":-1,"4943":0,"4944":-1,"4945":-1,"4946":3417,"4947":3544,"4948":3740,"4949":1997,"4950":0,"4951":0,"4952":2927,"4953":0,"4954":0,"4955":-1,"4956":-1,"4957":0,"4958":130,"4959":0,"4960":-1,"4961":0,"4962":0,"4963":0,"4964":-1,"4965":0,"4966":0,"4967":-1,"4968":3216,"4969":-1,"4970":-1,"4971":0,"4972":-1,"4973":-1,"4974":-1,"4975":2764,"4976":0,"4977":3688,"4978":-1,"4979":-1,"4980":0,"4981":-1,"4982":-1,"4983":0,"4984":0,"4985":0,"4986":-1,"4987":-1,"4988":0,"4989":0,"4990":0,"4991":-1,"4992":141,"4993":0,"4994":0,"4995":0,"4996":0,"4997":0,"4998":2403,"4999":0,"5000":3182,"5001":2243,"5002":2837,"5003":0,"5004":-1,"5005":2964,"5006":2189,"5007":2860,"5008":0,"5009":0,"5010":-1,"5011":1880,"5012":-1,"5013":0,"5014":-1,"5015":-1,"5016":0,"5017":0,"5018":2178,"5019":0,"5020":-1,"5021":-1,"5022":-1,"5023":3578,"5024":0,"5025":2227,"5026":0,"5027":3795,"5028":1941,"5029":-1,"5030":279,"5031":0,"5032":0,"5033":0,"5034":-1,"5035":0,"5036":0,"5037":-1,"5038":0,"5039":3243,"5040":0,"5041":0,"5042":2097,"5043":0,"5044":0,"5045":-1,"5046":427,"5047":0,"5048":0,"5049":0,"5050":-1,"5051":3865,"5052":0,"5053":-1,"5054":0,"5055":-1,"5056":0,"5057":0,"5058":2044,"5059":-1,"5060":0,"5061":362,"5062":2567,"5063":0,"5064":0,"5065":0,"5066":-1,"5067":-1,"5068":1880,"5069":273,"5070":0,"5071":0,"5072":2493,"5073":-1,"5074":3090,"5075":0,"5076":0,"5077":3731,"5078":0,"5079":-1,"5080":316,"5081":-1,"5082":0,"5083":-1,"5084":0,"5085":-1,"5086":0,"5087":0,"5088":-1,"5089":0,"5090":-1,"5091":0,"5092":0,"5093":-1,"5094":-1,"5095":0,"5096":0,"5097":0,"5098":1785,"5099":0,"5100":0,"5101":2967,"5102":3309,"5103":-1,"5104":20,"5105":-1,"5106":0,"5107":2882,"5108":3379,"5109":0,"5110":3720,"5111":0,"5112":3844,"5113":3134,"5114":0,"5115":0,"5116":0,"5117":-1,"5118":276,"5119":3944,"5120":0,"5121":0,"5122":-1,"5123":0,"5124":-1,"5125":0,"5126":-1,"5127":0,"5128":-1,"5129":-1,"5130":0,"5131":3720,"5132":212,"5133":-1,"5134":-1,"5135":0,"5136":0,"5137":-1,"5138":2782,"5139":0,"5140":3666,"5141":0,"5142":-1,"5143":-1,"5144":2500,"5145":0,"5146":0,"5147":-1,"5148":0,"5149":3066,"5150":3918,"5151":-1,"5152":0,"5153":0,"5154":0,"5155":0,"5156":501,"5157":-1,"5158":132,"5159":-1,"5160":-1,"5161":0,"5162":-1,"5163":-1,"5164":3025,"5165":0,"5166":-1,"5167":0,"5168":-1,"5169":-1,"5170":4007,"5171":-1,"5172":0,"5173":-1,"5174":0,"5175":0,"5176":0,"5177":1883,"5178":0,"5179":0,"5180":0,"5181":0,"5182":0,"5183":-1,"5184":0,"5185":-1,"5186":2253,"5187":1901,"5188":3055,"5189":-1,"5190":0,"5191":-1,"5192":163,"5193":0,"5194":91,"5195":-1,"5196":-1,"5197":2470,"5198":0,"5199":-1,"5200":-1,"5201":0,"5202":0,"5203":0,"5204":3414,"5205":0,"5206":0,"5207":0,"5208":-1,"5209":-1,"5210":-1,"5211":-1,"5212":0,"5213":-1,"5214":-1,"5215":0,"5216":0,"5217":0,"5218":0,"5219":0,"5220":0,"5221":0,"5222":-1,"5223":0,"5224":2800,"5225":2482,"5226":0,"5227":0,"5228":-1,"5229":3691,"5230":0,"5231":-1,"5232":3955,"5233":180,"5234":2255,"5235":-1,"5236":0,"5237":2803,"5238":0,"5239":0,"5240":3090,"5241":-1,"5242":2952,"5243":-1,"5244":-1,"5245":0,"5246":2532,"5247":-1,"5248":151,"5249":-1,"5250":0,"5251":0,"5252":-1,"5253":0,"5254":3926,"5255":0,"5256":0,"5257":3291,"5258":-1,"5259":2594,"5260":0,"5261":0,"5262":3510,"5263":-1,"5264":-1,"5265":3474,"5266":2768,"5267":0,"5268":-1,"5269":2360,"5270":0,"5271":3832,"5272":444,"5273":-1,"5274":-1,"5275":-1,"5276":-1,"5277":0,"5278":0,"5279":-1,"5280":2774,"5281":-1,"5282":3357,"5283":2248,"5284":0,"5285":-1,"5286":0,"5287":2817,"5288":0,"5289":0,"5290":0,"5291":0,"5292":0,"5293":3082,"5294":0,"5295":1817,"5296":-1,"5297":0,"5298":-1,"5299":0,"5300":-1,"5301":-1,"5302":3598,"5303":0,"5304":0,"5305":0,"5306":0,"5307":0,"5308":0,"5309":0,"5310":0,"5311":-1,"5312":3980,"5313":95,"5314":418,"5315":0,"5316":-1,"5317":-1,"5318":2492,"5319":0,"5320":0,"5321":-1,"5322":-1,"5323":363,"5324":-1,"5325":1851,"5326":0,"5327":0,"5328":2709,"5329":3151,"5330":2896,"5331":0,"5332":0,"5333":2839,"5334":-1,"5335":-1,"5336":0,"5337":0,"5338":3298,"5339":-1,"5340":0,"5341":-1,"5342":0,"5343":-1,"5344":0,"5345":3549,"5346":2437,"5347":0,"5348":0,"5349":2688,"5350":0,"5351":0,"5352":0,"5353":-1,"5354":0,"5355":0,"5356":-1,"5357":0,"5358":0,"5359":-1,"5360":-1,"5361":0,"5362":0,"5363":0,"5364":0,"5365":-1,"5366":0,"5367":-1,"5368":2737,"5369":3968,"5370":-1,"5371":0,"5372":-1,"5373":2586,"5374":0,"5375":2127,"5376":0,"5377":1881,"5378":0,"5379":0,"5380":3074,"5381":-1,"5382":0,"5383":-1,"5384":2793,"5385":-1,"5386":0,"5387":-1,"5388":0,"5389":0,"5390":3849,"5391":0,"5392":-1,"5393":0,"5394":-1,"5395":0,"5396":-1,"5397":0,"5398":-1,"5399":0,"5400":0,"5401":0,"5402":0,"5403":3285,"5404":0,"5405":-1,"5406":-1,"5407":0,"5408":0,"5409":-1,"5410":-1,"5411":0,"5412":0,"5413":-1,"5414":0,"5415":3617,"5416":1894,"5417":-1,"5418":0,"5419":444,"5420":0,"5421":0,"5422":-1,"5423":0,"5424":-1,"5425":-1,"5426":3957,"5427":-1,"5428":3478,"5429":0,"5430":2226,"5431":0,"5432":0,"5433":-1,"5434":0,"5435":1824,"5436":0,"5437":-1,"5438":0,"5439":2657,"5440":0,"5441":0,"5442":-1,"5443":-1,"5444":-1,"5445":364,"5446":1989,"5447":-1,"5448":114,"5449":-1,"5450":0,"5451":3580,"5452":-1,"5453":-1,"5454":-1,"5455":3578,"5456":478,"5457":-1,"5458":0,"5459":-1,"5460":2562,"5461":456,"5462":-1,"5463":3980,"5464":-1,"5465":-1,"5466":0,"5467":-1,"5468":0,"5469":2492,"5470":0,"5471":2448,"5472":-1,"5473":-1,"5474":-1,"5475":0,"5476":3373,"5477":0,"5478":0,"5479":0,"5480":-1,"5481":0,"5482":2527,"5483":-1,"5484":-1,"5485":0,"5486":0,"5487":-1,"5488":-1,"5489":0,"5490":0,"5491":0,"5492":-1,"5493":-1,"5494":0,"5495":1869,"5496":2499,"5497":0,"5498":0,"5499":0,"5500":-1,"5501":-1,"5502":-1,"5503":0,"5504":3866,"5505":-1,"5506":0,"5507":0,"5508":448,"5509":1908,"5510":0,"5511":3002,"5512":0,"5513":0,"5514":2722,"5515":0,"5516":-1,"5517":-1,"5518":0,"5519":-1,"5520":2441,"5521":2079,"5522":190,"5523":3741,"5524":0,"5525":2798,"5526":-1,"5527":0,"5528":374,"5529":-1,"5530":0,"5531":-1,"5532":-1,"5533":29,"5534":0,"5535":0,"5536":2706,"5537":2264,"5538":2389,"5539":-1,"5540":0,"5541":3475,"5542":2563,"5543":0,"5544":-1,"5545":2776,"5546":175,"5547":-1,"5548":-1,"5549":3929,"5550":-1,"5551":0,"5552":-1,"5553":0,"5554":0,"5555":0,"5556":-1,"5557":0,"5558":0,"5559":3822,"5560":0,"5561":0,"5562":3674,"5563":0,"5564":0,"5565":166,"5566":-1,"5567":0,"5568":0,"5569":0,"5570":0,"5571":0,"5572":-1,"5573":2484,"5574":0,"5575":0,"5576":-1,"5577":3364,"5578":0,"5579":0,"5580":0,"5581":-1,"5582":0,"5583":-1,"5584":0,"5585":0,"5586":-1,"5587":0,"5588":0,"5589":0,"5590":66,"5591":0,"5592":0,"5593":-1,"5594":2742,"5595":-1,"5596":0,"5597":-1,"5598":3693,"5599":0,"5600":0,"5601":0,"5602":-1,"5603":-1,"5604":0,"5605":-1,"5606":0,"5607":0,"5608":0,"5609":2632,"5610":0,"5611":-1,"5612":-1,"5613":0,"5614":-1,"5615":-1,"5616":0,"5617":-1,"5618":3201,"5619":0,"5620":126,"5621":2984,"5622":0,"5623":3338,"5624":0,"5625":-1,"5626":0,"5627":2109,"5628":0,"5629":2164,"5630":0,"5631":0,"5632":3810,"5633":-1,"5634":0,"5635":0,"5636":2563,"5637":-1,"5638":0,"5639":-1,"5640":-1,"5641":0,"5642":-1,"5643":1796,"5644":0,"5645":-1,"5646":0,"5647":-1,"5648":0,"5649":0,"5650":0,"5651":-1,"5652":0,"5653":-1,"5654":0,"5655":-1,"5656":-1,"5657":3024,"5658":0,"5659":2667,"5660":-1,"5661":0,"5662":2013,"5663":0,"5664":-1,"5665":0,"5666":0,"5667":0,"5668":0,"5669":-1,"5670":0,"5671":1904,"5672":0,"5673":-1,"5674":-1,"5675":3483,"5676":0,"5677":0,"5678":0,"5679":-1,"5680":-1,"5681":-1,"5682":-1,"5683":-1,"5684":0,"5685":1917,"5686":0,"5687":-1,"5688":0,"5689":-1,"5690":1869,"5691":0,"5692":-1,"5693":0,"5694":3076,"5695":0,"5696":-1,"5697":-1,"5698":0,"5699":0,"5700":3179,"5701":0,"5702":-1,"5703":0,"5704":0,"5705":3824,"5706":0,"5707":-1,"5708":0,"5709":0,"5710":4036,"5711":3221,"5712":0,"5713":-1,"5714":-1,"5715":-1,"5716":2141,"5717":-1,"5718":0,"5719":0,"5720":-1,"5721":0,"5722":-1,"5723":-1,"5724":0,"5725":-1,"5726":261,"5727":0,"5728":3831,"5729":-1,"5730":-1,"5731":0,"5732":4026,"5733":-1,"5734":-1,"5735":3016,"5736":0,"5737":2717,"5738":2,"5739":0,"5740":-1,"5741":2012,"5742":0,"5743":-1,"5744":-1,"5745":0,"5746":2724,"5747":0,"5748":0,"5749":3437,"5750":3235,"5751":-1,"5752":0,"5753":-1,"5754":-1,"5755":-1,"5756":-1,"5757":3914,"5758":150,"5759":0,"5760":-1,"5761":3794,"5762":0,"5763":2948,"5764":-1,"5765":3572,"5766":-1,"5767":-1,"5768":0,"5769":190,"5770":0,"5771":-1,"5772":0,"5773":0,"5774":2303,"5775":0,"5776":0,"5777":0,"5778":-1,"5779":0,"5780":-1,"5781":0,"5782":0,"5783":3564,"5784":0,"5785":0,"5786":2364,"5787":0,"5788":0,"5789":0,"5790":0,"5791":0,"5792":0,"5793":3261,"5794":3337,"5795":0,"5796":2632,"5797":-1,"5798":-1,"5799":133,"5800":0,"5801":-1,"5802":0,"5803":0,"5804":3130,"5805":0,"5806":3500,"5807":-1,"5808":0,"5809":-1,"5810":1967,"5811":0,"5812":0,"5813":-1,"5814":0,"5815":2399,"5816":0,"5817":0,"5818":0,"5819":1877,"5820":0,"5821":-1,"5822":3755,"5823":-1,"5824":-1,"5825":0,"5826":0,"5827":-1,"5828":0,"5829":0,"5830":-1,"5831":-1,"5832":-1,"5833":0,"5834":3628,"5835":0,"5836":1933,"5837":-1,"5838":0,"5839":0,"5840":-1,"5841":48,"5842":0,"5843":4047,"5844":2195,"5845":-1,"5846":2344,"5847":2672,"5848":0,"5849":2656,"5850":-1,"5851":-1,"5852":-1,"5853":-1,"5854":-1,"5855":0,"5856":-1,"5857":-1,"5858":2338,"5859":0,"5860":0,"5861":0,"5862":3942,"5863":-1,"5864":0,"5865":-1,"5866":-1,"5867":2495,"5868":-1,"5869":0,"5870":0,"5871":206,"5872":3557,"5873":0,"5874":-1,"5875":0,"5876":0,"5877":-1,"5878":0,"5879":0,"5880":-1,"5881":0,"5882":0,"5883":0,"5884":0,"5885":-1,"5886":-1,"5887":2899,"5888":2192,"5889":3269,"5890":0,"5891":0,"5892":-1,"5893":2098,"5894":-1,"5895":3030,"5896":0,"5897":0,"5898":-1,"5899":0,"5900":-1,"5901":-1,"5902":-1,"5903":0,"5904":0,"5905":-1,"5906":0,"5907":0,"5908":0,"5909":4015,"5910":2334,"5911":192,"5912":0,"5913":3017,"5914":367,"5915":-1,"5916":-1,"5917":2382,"5918":516,"5919":0,"5920":0,"5921":2063,"5922":0,"5923":-1,"5924":0,"5925":-1,"5926":-1,"5927":0,"5928":190,"5929":0,"5930":-1,"5931":-1,"5932":0,"5933":0,"5934":0,"5935":-1,"5936":3041,"5937":3436,"5938":0,"5939":2025,"5940":0,"5941":-1,"5942":3226,"5943":0,"5944":0,"5945":3069,"5946":-1,"5947":0,"5948":-1,"5949":0,"5950":2421,"5951":0,"5952":0,"5953":0,"5954":-1,"5955":0,"5956":-1,"5957":2146,"5958":0,"5959":-1,"5960":-1,"5961":0,"5962":-1,"5963":0,"5964":-1,"5965":0,"5966":0,"5967":0,"5968":3567,"5969":-1,"5970":3046,"5971":0,"5972":0,"5973":222,"5974":2804,"5975":0,"5976":-1,"5977":0,"5978":298,"5979":-1,"5980":0,"5981":0,"5982":-1,"5983":-1,"5984":1788,"5985":0,"5986":-1,"5987":0,"5988":-1,"5989":2227,"5990":-1,"5991":2890,"5992":62,"5993":0,"5994":3756,"5995":524,"5996":2969,"5997":3035,"5998":2200,"5999":3683,"6000":-1,"6001":-1,"6002":2641,"6003":3474,"6004":0,"6005":0,"6006":0,"6007":1983,"6008":0,"6009":2954,"6010":0,"6011":0,"6012":-1,"6013":0,"6014":0,"6015":-1,"6016":-1,"6017":-1,"6018":0,"6019":-1,"6020":-1,"6021":0,"6022":3294,"6023":3204,"6024":-1,"6025":0,"6026":-1,"6027":0,"6028":0,"6029":1790,"6030":0,"6031":2416,"6032":2560,"6033":0,"6034":-1,"6035":0,"6036":-1,"6037":-1,"6038":398,"6039":2897,"6040":0,"6041":2101,"6042":-1,"6043":-1,"6044":3953,"6045":3726,"6046":13,"6047":0,"6048":2578,"6049":59,"6050":-1,"6051":0,"6052":-1,"6053":-1,"6054":-1,"6055":2650,"6056":2081,"6057":0,"6058":3277,"6059":0,"6060":0,"6061":-1,"6062":-1,"6063":-1,"6064":-1,"6065":0,"6066":-1,"6067":-1,"6068":0,"6069":0,"6070":0,"6071":-1,"6072":2105,"6073":-1,"6074":3183,"6075":-1,"6076":0,"6077":0,"6078":0,"6079":0,"6080":0,"6081":0,"6082":0,"6083":-1,"6084":129,"6085":0,"6086":0,"6087":-1,"6088":0,"6089":0,"6090":3942,"6091":1954,"6092":0,"6093":-1,"6094":0,"6095":-1,"6096":2897,"6097":0,"6098":0,"6099":0,"6100":-1,"6101":-1,"6102":-1,"6103":0,"6104":-1,"6105":481,"6106":0,"6107":2303,"6108":-1,"6109":-1,"6110":-1,"6111":0,"6112":0,"6113":0,"6114":-1,"6115":0,"6116":-1,"6117":-1,"6118":0,"6119":1961,"6120":2541,"6121":3055,"6122":-1,"6123":3024,"6124":-1,"6125":0,"6126":357,"6127":1986,"6128":-1,"6129":2057,"6130":3225,"6131":-1,"6132":-1,"6133":2703,"6134":0,"6135":-1,"6136":0,"6137":-1,"6138":2262,"6139":0,"6140":-1,"6141":-1,"6142":-1,"6143":4024,"6144":0,"6145":0,"6146":-1,"6147":0,"6148":0,"6149":0,"6150":2335,"6151":3326,"6152":-1,"6153":0,"6154":-1,"6155":0,"6156":-1,"6157":0,"6158":0,"6159":0,"6160":0,"6161":0,"6162":283,"6163":0,"6164":-1,"6165":2581,"6166":3664,"6167":429,"6168":0,"6169":-1,"6170":-1,"6171":0,"6172":3210,"6173":-1,"6174":-1,"6175":0,"6176":0,"6177":0,"6178":4061,"6179":2749,"6180":2537,"6181":0,"6182":0,"6183":306,"6184":0,"6185":0,"6186":-1,"6187":-1,"6188":3158,"6189":0,"6190":290,"6191":-1,"6192":-1,"6193":0,"6194":0,"6195":-1,"6196":2950,"6197":-1,"6198":0,"6199":0,"6200":0,"6201":0,"6202":2446,"6203":0,"6204":0,"6205":0,"6206":0,"6207":0,"6208":0,"6209":319,"6210":0,"6211":2757,"6212":0,"6213":0,"6214":-1,"6215":2725,"6216":-1,"6217":0,"6218":0,"6219":3430,"6220":-1,"6221":-1,"6222":3868,"6223":0,"6224":0,"6225":3971,"6226":-1,"6227":0,"6228":224,"6229":-1,"6230":0,"6231":0,"6232":2909,"6233":2476,"6234":0,"6235":0,"6236":-1,"6237":-1,"6238":0,"6239":0,"6240":-1,"6241":0,"6242":2030,"6243":0,"6244":4021,"6245":0,"6246":0,"6247":443,"6248":-1,"6249":2658,"6250":71,"6251":2642,"6252":1951,"6253":2999,"6254":0,"6255":3428,"6256":0,"6257":-1,"6258":-1,"6259":3929,"6260":3102,"6261":0,"6262":0,"6263":0,"6264":-1,"6265":0,"6266":0,"6267":0,"6268":0,"6269":0,"6270":0,"6271":0,"6272":0,"6273":3045,"6274":0,"6275":2954,"6276":98,"6277":3356,"6278":0,"6279":0,"6280":0,"6281":1924,"6282":0,"6283":0,"6284":0,"6285":0,"6286":2130,"6287":0,"6288":0,"6289":-1,"6290":-1,"6291":0,"6292":29,"6293":0,"6294":0,"6295":0,"6296":-1,"6297":-1,"6298":0,"6299":0,"6300":1803,"6301":-1,"6302":3467,"6303":-1,"6304":0,"6305":3849,"6306":2272,"6307":0,"6308":-1,"6309":0,"6310":0,"6311":0,"6312":-1,"6313":-1,"6314":0,"6315":-1,"6316":2303,"6317":0,"6318":-1,"6319":0,"6320":2792,"6321":63,"6322":2391,"6323":-1,"6324":4027,"6325":-1,"6326":0,"6327":0,"6328":0,"6329":0,"6330":2000,"6331":0,"6332":0,"6333":0,"6334":-1,"6335":2842,"6336":3594,"6337":0,"6338":0,"6339":-1,"6340":-1,"6341":0,"6342":2622,"6343":3544,"6344":0,"6345":3622,"6346":0,"6347":0,"6348":3646,"6349":-1,"6350":3350,"6351":0,"6352":0,"6353":-1,"6354":0,"6355":3853,"6356":0,"6357":3082,"6358":0,"6359":3058,"6360":-1,"6361":-1,"6362":1976,"6363":-1,"6364":0,"6365":2737,"6366":2363,"6367":-1,"6368":-1,"6369":-1,"6370":0,"6371":-1,"6372":-1,"6373":0,"6374":0,"6375":0,"6376":-1,"6377":-1,"6378":3886,"6379":-1,"6380":0,"6381":0,"6382":3225,"6383":-1,"6384":0,"6385":-1,"6386":0,"6387":0,"6388":0,"6389":0,"6390":0,"6391":0,"6392":0,"6393":0,"6394":0,"6395":2794,"6396":2836,"6397":0,"6398":-1,"6399":0,"6400":0,"6401":0,"6402":0,"6403":-1,"6404":35,"6405":236,"6406":0,"6407":-1,"6408":0,"6409":241,"6410":0,"6411":3104,"6412":0,"6413":0,"6414":173,"6415":0,"6416":0,"6417":0,"6418":-1,"6419":-1,"6420":2790,"6421":0,"6422":-1,"6423":-1,"6424":453,"6425":-1,"6426":0,"6427":0,"6428":2712,"6429":-1,"6430":0,"6431":0,"6432":0,"6433":4038,"6434":2677,"6435":0,"6436":0,"6437":0,"6438":0,"6439":2103,"6440":0,"6441":-1,"6442":-1,"6443":-1,"6444":0,"6445":0,"6446":-1,"6447":4056,"6448":2066,"6449":171,"6450":0,"6451":0,"6452":-1,"6453":3878,"6454":2852,"6455":0,"6456":3200,"6457":-1,"6458":2018,"6459":0,"6460":-1,"6461":2953,"6462":3107,"6463":3973,"6464":0,"6465":-1,"6466":3552,"6467":-1,"6468":-1,"6469":0,"6470":367,"6471":-1,"6472":-1,"6473":0,"6474":-1,"6475":0,"6476":0,"6477":0,"6478":0,"6479":1910,"6480":2800,"6481":-1,"6482":0,"6483":-1,"6484":-1,"6485":-1,"6486":1943,"6487":0,"6488":450,"6489":2674,"6490":3787,"6491":-1,"6492":0,"6493":0,"6494":-1,"6495":-1,"6496":0,"6497":2996,"6498":0,"6499":0,"6500":-1,"6501":167,"6502":3393,"6503":0,"6504":-1,"6505":3161,"6506":498,"6507":4007,"6508":2289,"6509":1849,"6510":0,"6511":3664,"6512":-1,"6513":-1,"6514":0,"6515":2260,"6516":-1,"6517":0,"6518":-1,"6519":0,"6520":0,"6521":-1,"6522":0,"6523":3430,"6524":-1,"6525":0,"6526":3564,"6527":0,"6528":-1,"6529":-1,"6530":1869,"6531":2573,"6532":-1,"6533":0,"6534":0,"6535":-1,"6536":-1,"6537":-1,"6538":0,"6539":3277,"6540":-1,"6541":3672,"6542":0,"6543":0,"6544":-1,"6545":0,"6546":0,"6547":4038,"6548":2880,"6549":1950,"6550":0,"6551":0,"6552":2615,"6553":2111,"6554":0,"6555":0,"6556":-1,"6557":0,"6558":-1,"6559":0,"6560":0,"6561":0,"6562":0,"6563":0,"6564":-1,"6565":0,"6566":3984,"6567":0,"6568":2032,"6569":0,"6570":0,"6571":-1,"6572":-1,"6573":-1,"6574":0,"6575":1908,"6576":0,"6577":0,"6578":0,"6579":2931,"6580":2106,"6581":3557,"6582":0,"6583":0,"6584":-1,"6585":0,"6586":0,"6587":480,"6588":2886,"6589":0,"6590":-1,"6591":0,"6592":-1,"6593":0,"6594":3719,"6595":0,"6596":0,"6597":0,"6598":0,"6599":-1,"6600":0,"6601":-1,"6602":206,"6603":-1,"6604":0,"6605":0,"6606":3508,"6607":0,"6608":-1,"6609":-1,"6610":2259,"6611":2918,"6612":0,"6613":-1,"6614":0,"6615":-1,"6616":1964,"6617":2154,"6618":-1,"6619":2730,"6620":-1,"6621":-1,"6622":0,"6623":-1,"6624":-1,"6625":4058,"6626":0,"6627":2607,"6628":-1,"6629":-1,"6630":3877,"6631":0,"6632":0,"6633":0,"6634":3614,"6635":0,"6636":-1,"6637":0,"6638":2292,"6639":2864,"6640":-1,"6641":0,"6642":-1,"6643":2646,"6644":-1,"6645":0,"6646":2236,"6647":0,"6648":-1,"6649":0,"6650":-1,"6651":0,"6652":0,"6653":-1,"6654":0,"6655":-1,"6656":-1,"6657":0,"6658":243,"6659":0,"6660":0,"6661":-1,"6662":-1,"6663":-1,"6664":3454,"6665":2410,"6666":0,"6667":-1,"6668":0,"6669":-1,"6670":0,"6671":-1,"6672":2553,"6673":0,"6674":0,"6675":0,"6676":-1,"6677":0,"6678":0,"6679":0,"6680":4004,"6681":3749,"6682":-1,"6683":-1,"6684":0,"6685":245,"6686":-1,"6687":3629,"6688":0,"6689":0,"6690":0,"6691":0,"6692":-1,"6693":0,"6694":0,"6695":-1,"6696":0,"6697":0,"6698":0,"6699":0,"6700":2650,"6701":-1,"6702":0,"6703":0,"6704":512,"6705":2806,"6706":0,"6707":-1,"6708":-1,"6709":0,"6710":3627,"6711":-1,"6712":0,"6713":0,"6714":-1,"6715":-1,"6716":-1,"6717":2084,"6718":-1,"6719":3896,"6720":0,"6721":0,"6722":0,"6723":-1,"6724":-1,"6725":0,"6726":-1,"6727":2620,"6728":0,"6729":-1,"6730":2864,"6731":-1,"6732":-1,"6733":2069,"6734":-1,"6735":-1,"6736":-1,"6737":0,"6738":-1,"6739":3335,"6740":-1,"6741":-1,"6742":0,"6743":-1,"6744":2890,"6745":-1,"6746":0,"6747":-1,"6748":0,"6749":0,"6750":-1,"6751":-1,"6752":-1,"6753":0,"6754":3769,"6755":0,"6756":-1,"6757":0,"6758":347,"6759":304,"6760":186,"6761":0,"6762":504,"6763":-1,"6764":0,"6765":0,"6766":0,"6767":0,"6768":0,"6769":0,"6770":0,"6771":2042,"6772":3207,"6773":2638,"6774":0,"6775":-1,"6776":-1,"6777":0,"6778":0,"6779":3334,"6780":-1,"6781":2788,"6782":0,"6783":0,"6784":0,"6785":2061,"6786":3027,"6787":0,"6788":-1,"6789":-1,"6790":0,"6791":0,"6792":0,"6793":-1,"6794":148,"6795":2133,"6796":2083,"6797":0,"6798":-1,"6799":-1,"6800":1779,"6801":-1,"6802":0,"6803":0,"6804":3861,"6805":3143,"6806":-1,"6807":-1,"6808":-1,"6809":-1,"6810":0,"6811":-1,"6812":-1,"6813":-1,"6814":0,"6815":0,"6816":-1,"6817":-1,"6818":505,"6819":0,"6820":0,"6821":-1,"6822":-1,"6823":-1,"6824":0,"6825":-1,"6826":2354,"6827":-1,"6828":2186,"6829":0,"6830":-1,"6831":2554,"6832":0,"6833":2886,"6834":0,"6835":0,"6836":3788,"6837":2710,"6838":0,"6839":-1,"6840":0,"6841":-1,"6842":0,"6843":117,"6844":0,"6845":0,"6846":0,"6847":-1,"6848":3479,"6849":-1,"6850":-1,"6851":0,"6852":1900,"6853":0,"6854":332,"6855":146,"6856":-1,"6857":3935,"6858":0,"6859":2779,"6860":-1,"6861":0,"6862":0,"6863":0,"6864":0,"6865":0,"6866":0,"6867":3426,"6868":-1,"6869":0,"6870":165,"6871":-1,"6872":0,"6873":0,"6874":-1,"6875":-1,"6876":0,"6877":1849,"6878":-1,"6879":-1,"6880":0,"6881":3763,"6882":320,"6883":3498,"6884":3979,"6885":0,"6886":0,"6887":-1,"6888":-1,"6889":0,"6890":0,"6891":-1,"6892":0,"6893":-1,"6894":0,"6895":0,"6896":154,"6897":2762,"6898":3744,"6899":-1,"6900":3397,"6901":-1,"6902":0,"6903":0,"6904":2195,"6905":272,"6906":-1,"6907":3500,"6908":-1,"6909":0,"6910":0,"6911":2378,"6912":0,"6913":3838,"6914":3348,"6915":0,"6916":2256,"6917":0,"6918":-1,"6919":-1,"6920":-1,"6921":3604,"6922":0,"6923":0,"6924":0,"6925":0,"6926":0,"6927":0,"6928":0,"6929":-1,"6930":-1,"6931":0,"6932":-1,"6933":0,"6934":-1,"6935":-1,"6936":4036,"6937":0,"6938":3601,"6939":0,"6940":0,"6941":-1,"6942":0,"6943":-1,"6944":0,"6945":3217,"6946":-1,"6947":0,"6948":-1,"6949":0,"6950":2707,"6951":-1,"6952":0,"6953":0,"6954":0,"6955":2170,"6956":3732,"6957":0,"6958":0,"6959":2682,"6960":-1,"6961":-1,"6962":-1,"6963":0,"6964":0,"6965":0,"6966":-1,"6967":3691,"6968":-1,"6969":0,"6970":0,"6971":0,"6972":3292,"6973":0,"6974":1934,"6975":2986,"6976":-1,"6977":-1,"6978":2528,"6979":-1,"6980":3164,"6981":0,"6982":0,"6983":0,"6984":0,"6985":0,"6986":-1,"6987":-1,"6988":0,"6989":0,"6990":2174,"6991":2730,"6992":1818,"6993":-1,"6994":3739,"6995":-1,"6996":-1,"6997":-1,"6998":0,"6999":-1,"7000":0,"7001":0,"7002":2352,"7003":3601,"7004":2862,"7005":-1,"7006":0,"7007":-1,"7008":3599,"7009":-1,"7010":-1,"7011":1949,"7012":0,"7013":-1,"7014":-1,"7015":0,"7016":0,"7017":0,"7018":-1,"7019":0,"7020":-1,"7021":-1,"7022":4024,"7023":0,"7024":0,"7025":-1,"7026":-1,"7027":-1,"7028":0,"7029":3134,"7030":0,"7031":-1,"7032":3677,"7033":0,"7034":-1,"7035":2510,"7036":-1,"7037":0,"7038":0,"7039":-1,"7040":0,"7041":-1,"7042":124,"7043":3640,"7044":0,"7045":-1,"7046":0,"7047":362,"7048":2779,"7049":2707,"7050":-1,"7051":3956,"7052":-1,"7053":0,"7054":-1,"7055":-1,"7056":-1,"7057":3667,"7058":-1,"7059":3267,"7060":3450,"7061":-1,"7062":2258,"7063":-1,"7064":0,"7065":2136,"7066":0,"7067":0,"7068":-1,"7069":0,"7070":0,"7071":-1,"7072":0,"7073":0,"7074":156,"7075":-1,"7076":-1,"7077":-1,"7078":0,"7079":0,"7080":-1,"7081":3402,"7082":0,"7083":341,"7084":-1,"7085":-1,"7086":0,"7087":-1,"7088":-1,"7089":0,"7090":0,"7091":0,"7092":-1,"7093":0,"7094":0,"7095":3663,"7096":0,"7097":2120,"7098":3009,"7099":0,"7100":3769,"7101":-1,"7102":0,"7103":-1,"7104":0,"7105":0,"7106":0,"7107":1976,"7108":2114,"7109":0,"7110":3589,"7111":3087,"7112":-1,"7113":0,"7114":-1,"7115":0,"7116":0,"7117":3656,"7118":3801,"7119":-1,"7120":0,"7121":2896,"7122":-1,"7123":-1,"7124":-1,"7125":0,"7126":0,"7127":-1,"7128":-1,"7129":-1,"7130":2673,"7131":-1,"7132":0,"7133":0,"7134":0,"7135":0,"7136":309,"7137":0,"7138":0,"7139":-1,"7140":-1,"7141":-1,"7142":-1,"7143":0,"7144":0,"7145":2968,"7146":-1,"7147":410,"7148":0,"7149":0,"7150":-1,"7151":-1,"7152":-1,"7153":3883,"7154":-1,"7155":216,"7156":0,"7157":0,"7158":-1,"7159":3880,"7160":0,"7161":3016,"7162":-1,"7163":0,"7164":0,"7165":85,"7166":-1,"7167":-1,"7168":0,"7169":-1,"7170":-1,"7171":3053,"7172":-1,"7173":0,"7174":0,"7175":3562,"7176":0,"7177":0,"7178":0,"7179":3187,"7180":0,"7181":3447,"7182":0,"7183":1860,"7184":0,"7185":-1,"7186":-1,"7187":0,"7188":-1,"7189":459,"7190":-1,"7191":0,"7192":2535,"7193":0,"7194":0,"7195":0,"7196":-1,"7197":0,"7198":-1,"7199":0,"7200":0,"7201":1891,"7202":-1,"7203":0,"7204":2569,"7205":3291,"7206":441,"7207":0,"7208":0,"7209":0,"7210":0,"7211":0,"7212":-1,"7213":-1,"7214":-1,"7215":0,"7216":2923,"7217":0,"7218":0,"7219":0,"7220":2954,"7221":0,"7222":-1,"7223":0,"7224":3473,"7225":0,"7226":83,"7227":0,"7228":0,"7229":6,"7230":237,"7231":-1,"7232":0,"7233":3312,"7234":-1,"7235":0,"7236":3969,"7237":-1,"7238":2478,"7239":0,"7240":3637,"7241":3236,"7242":3715,"7243":-1,"7244":0,"7245":-1,"7246":-1,"7247":3507,"7248":-1,"7249":-1,"7250":-1,"7251":-1,"7252":0,"7253":0,"7254":-1,"7255":207,"7256":-1,"7257":-1,"7258":2824,"7259":0,"7260":2046,"7261":0,"7262":0,"7263":0,"7264":-1,"7265":3400,"7266":3308,"7267":-1,"7268":0,"7269":-1,"7270":3157,"7271":-1,"7272":0,"7273":-1,"7274":0,"7275":0,"7276":-1,"7277":0,"7278":-1,"7279":0,"7280":0,"7281":-1,"7282":-1,"7283":-1,"7284":0,"7285":2875,"7286":-1,"7287":-1,"7288":-1,"7289":-1,"7290":3489,"7291":-1,"7292":0,"7293":429,"7294":3362,"7295":0,"7296":-1,"7297":0,"7298":2992,"7299":0,"7300":3415,"7301":2568,"7302":-1,"7303":-1,"7304":2150,"7305":3804,"7306":0,"7307":285,"7308":0,"7309":0,"7310":0,"7311":2853,"7312":0,"7313":0,"7314":0,"7315":0,"7316":0,"7317":0,"7318":369,"7319":388,"7320":0,"7321":0,"7322":-1,"7323":-1,"7324":0,"7325":0,"7326":0,"7327":-1,"7328":3277,"7329":-1,"7330":2724,"7331":-1,"7332":-1,"7333":-1,"7334":2560,"7335":0,"7336":0,"7337":-1,"7338":0,"7339":-1,"7340":3949,"7341":2966,"7342":0,"7343":2373,"7344":3153,"7345":2498,"7346":0,"7347":0,"7348":-1,"7349":-1,"7350":3487,"7351":1825,"7352":2254,"7353":-1,"7354":-1,"7355":0,"7356":2142,"7357":1998,"7358":-1,"7359":-1,"7360":0,"7361":-1,"7362":0,"7363":0,"7364":-1,"7365":3027,"7366":0,"7367":-1,"7368":-1,"7369":0,"7370":3683,"7371":0,"7372":-1,"7373":-1,"7374":3784,"7375":0,"7376":-1,"7377":0,"7378":0,"7379":0,"7380":0,"7381":-1,"7382":0,"7383":-1,"7384":-1,"7385":2547,"7386":-1,"7387":0,"7388":-1,"7389":0,"7390":3968,"7391":3484,"7392":0,"7393":3010,"7394":3209,"7395":0,"7396":0,"7397":3735,"7398":-1,"7399":3144,"7400":0,"7401":2070,"7402":0,"7403":-1,"7404":74,"7405":3219,"7406":0,"7407":-1,"7408":3973,"7409":2379,"7410":-1,"7411":-1,"7412":-1,"7413":-1,"7414":-1,"7415":3053,"7416":0,"7417":0,"7418":3378,"7419":-1,"7420":-1,"7421":0,"7422":0,"7423":-1,"7424":0,"7425":3193,"7426":-1,"7427":-1,"7428":0,"7429":-1,"7430":-1,"7431":2838,"7432":0,"7433":0,"7434":-1,"7435":0,"7436":-1,"7437":-1,"7438":310,"7439":0,"7440":3419,"7441":3938,"7442":-1,"7443":216,"7444":-1,"7445":2683,"7446":0,"7447":-1,"7448":0,"7449":0,"7450":43,"7451":2230,"7452":-1,"7453":-1,"7454":0,"7455":-1,"7456":-1,"7457":3695,"7458":2746,"7459":0,"7460":0,"7461":0,"7462":-1,"7463":28,"7464":3452,"7465":0,"7466":3058,"7467":-1,"7468":0,"7469":2322,"7470":0,"7471":2479,"7472":1865,"7473":-1,"7474":0,"7475":-1,"7476":0,"7477":-1,"7478":-1,"7479":0,"7480":0,"7481":2731,"7482":0,"7483":234,"7484":11,"7485":-1,"7486":-1,"7487":-1,"7488":0,"7489":-1,"7490":2816,"7491":-1,"7492":-1,"7493":0,"7494":0,"7495":-1,"7496":0,"7497":-1,"7498":-1,"7499":0,"7500":-1,"7501":-1,"7502":0,"7503":2409,"7504":220,"7505":-1,"7506":0,"7507":-1,"7508":0,"7509":0,"7510":3478,"7511":0,"7512":2690,"7513":0,"7514":0,"7515":2482,"7516":-1,"7517":0,"7518":-1,"7519":3365,"7520":111,"7521":0,"7522":-1,"7523":347,"7524":0,"7525":3630,"7526":-1,"7527":3372,"7528":0,"7529":1918,"7530":1912,"7531":152,"7532":-1,"7533":0,"7534":1843,"7535":-1,"7536":0,"7537":0,"7538":0,"7539":3995,"7540":0,"7541":-1,"7542":-1,"7543":3422,"7544":-1,"7545":-1,"7546":-1,"7547":0,"7548":0,"7549":0,"7550":2826,"7551":0,"7552":0,"7553":2019,"7554":-1,"7555":0,"7556":0,"7557":0,"7558":-1,"7559":-1,"7560":0,"7561":0,"7562":69,"7563":0,"7564":0,"7565":-1,"7566":0,"7567":-1,"7568":-1,"7569":2312,"7570":0,"7571":-1,"7572":3903,"7573":67,"7574":0,"7575":2802,"7576":3480,"7577":-1,"7578":0,"7579":0,"7580":2230,"7581":0,"7582":2268,"7583":0,"7584":0,"7585":3790,"7586":0,"7587":-1,"7588":-1,"7589":0,"7590":2636,"7591":0,"7592":0,"7593":3784,"7594":0,"7595":0,"7596":2167,"7597":0,"7598":-1,"7599":-1,"7600":-1,"7601":0,"7602":2933,"7603":512,"7604":2907,"7605":2912,"7606":0,"7607":0,"7608":3782,"7609":2445,"7610":-1,"7611":0,"7612":0,"7613":-1,"7614":2274,"7615":4051,"7616":-1,"7617":23,"7618":0,"7619":0,"7620":0,"7621":257,"7622":3334,"7623":0,"7624":2334,"7625":3297,"7626":0,"7627":0,"7628":1986,"7629":-1,"7630":-1,"7631":0,"7632":3460,"7633":-1,"7634":2296,"7635":2714,"7636":1881,"7637":3965,"7638":0,"7639":0,"7640":-1,"7641":0,"7642":0,"7643":3456,"7644":-1,"7645":0,"7646":3310,"7647":4035,"7648":0,"7649":0,"7650":0,"7651":0,"7652":2691,"7653":0,"7654":-1,"7655":0,"7656":2123,"7657":0,"7658":2362,"7659":77,"7660":1827,"7661":2253,"7662":2291,"7663":3095,"7664":0,"7665":3392,"7666":-1,"7667":0,"7668":-1,"7669":-1,"7670":-1,"7671":0,"7672":3680,"7673":2589,"7674":2402,"7675":0,"7676":0,"7677":3526,"7678":0,"7679":0,"7680":0,"7681":-1,"7682":0,"7683":-1,"7684":3731,"7685":3248,"7686":0,"7687":0,"7688":0,"7689":3914,"7690":234,"7691":-1,"7692":0,"7693":-1,"7694":3953,"7695":0,"7696":0,"7697":2402,"7698":-1,"7699":0,"7700":0,"7701":-1,"7702":108,"7703":0,"7704":0,"7705":-1,"7706":-1,"7707":0,"7708":3856,"7709":0,"7710":0,"7711":-1,"7712":3576,"7713":-1,"7714":3418,"7715":-1,"7716":0,"7717":0,"7718":0,"7719":-1,"7720":0,"7721":2587,"7722":-1,"7723":-1,"7724":-1,"7725":0,"7726":0,"7727":0,"7728":3455,"7729":4042,"7730":-1,"7731":-1,"7732":-1,"7733":3711,"7734":0,"7735":-1,"7736":0,"7737":0,"7738":0,"7739":-1,"7740":-1,"7741":0,"7742":-1,"7743":-1,"7744":3142,"7745":0,"7746":0,"7747":-1,"7748":0,"7749":0,"7750":-1,"7751":3978,"7752":2752,"7753":-1,"7754":0,"7755":0,"7756":-1,"7757":2146,"7758":3905,"7759":3645,"7760":3034,"7761":-1,"7762":289,"7763":0,"7764":-1,"7765":-1,"7766":0,"7767":-1,"7768":-1,"7769":-1,"7770":0,"7771":0,"7772":0,"7773":0,"7774":0,"7775":-1,"7776":2289,"7777":378,"7778":0,"7779":3037,"7780":3911,"7781":0,"7782":3550,"7783":-1,"7784":-1,"7785":1938,"7786":0,"7787":0,"7788":0,"7789":71,"7790":-1,"7791":0,"7792":-1,"7793":0,"7794":508,"7795":-1,"7796":0,"7797":-1,"7798":3800,"7799":0,"7800":0,"7801":0,"7802":0,"7803":-1,"7804":0,"7805":1987,"7806":0,"7807":0,"7808":-1,"7809":0,"7810":2760,"7811":0,"7812":2704,"7813":0,"7814":-1,"7815":-1,"7816":0,"7817":0,"7818":-1,"7819":-1,"7820":49,"7821":0,"7822":-1,"7823":0,"7824":0,"7825":0,"7826":2543,"7827":0,"7828":0,"7829":-1,"7830":-1,"7831":2467,"7832":0,"7833":0,"7834":0,"7835":0,"7836":-1,"7837":-1,"7838":2973,"7839":2658,"7840":0,"7841":-1,"7842":0,"7843":-1,"7844":0,"7845":-1,"7846":-1,"7847":0,"7848":-1,"7849":0,"7850":0,"7851":-1,"7852":2067,"7853":2391,"7854":494,"7855":3133,"7856":-1,"7857":0,"7858":0,"7859":0,"7860":0,"7861":-1,"7862":3289,"7863":2505,"7864":0,"7865":3516,"7866":2011,"7867":0,"7868":-1,"7869":0,"7870":2371,"7871":-1,"7872":3008,"7873":0,"7874":0,"7875":3341,"7876":0,"7877":-1,"7878":0,"7879":-1,"7880":-1,"7881":0,"7882":0,"7883":0,"7884":2252,"7885":-1,"7886":0,"7887":0,"7888":0,"7889":-1,"7890":0,"7891":0,"7892":-1,"7893":2146,"7894":3347,"7895":2163,"7896":0,"7897":0,"7898":3660,"7899":-1,"7900":0,"7901":-1,"7902":0,"7903":0,"7904":150,"7905":1946,"7906":0,"7907":0,"7908":1869,"7909":1913,"7910":0,"7911":2238,"7912":196,"7913":0,"7914":0,"7915":-1,"7916":-1,"7917":3406,"7918":-1,"7919":3731,"7920":0,"7921":0,"7922":0,"7923":-1,"7924":-1,"7925":0,"7926":-1,"7927":2278,"7928":0,"7929":-1,"7930":0,"7931":-1,"7932":0,"7933":-1,"7934":-1,"7935":-1,"7936":-1,"7937":3777,"7938":0,"7939":2312,"7940":0,"7941":2821,"7942":-1,"7943":0,"7944":3785,"7945":424,"7946":0,"7947":0,"7948":-1,"7949":2421,"7950":0,"7951":2515,"7952":-1,"7953":-1,"7954":0,"7955":0,"7956":0,"7957":-1,"7958":-1,"7959":-1,"7960":0,"7961":0,"7962":-1,"7963":-1,"7964":2872,"7965":-1,"7966":0,"7967":0,"7968":4061,"7969":0,"7970":0,"7971":0,"7972":0,"7973":-1,"7974":307,"7975":-1,"7976":0,"7977":-1,"7978":0,"7979":0,"7980":0,"7981":0,"7982":3568,"7983":-1,"7984":0,"7985":0,"7986":402,"7987":0,"7988":0,"7989":-1,"7990":0,"7991":2116,"7992":0,"7993":3632,"7994":0,"7995":0,"7996":0,"7997":519,"7998":-1,"7999":0,"8000":0,"8001":-1,"8002":2536,"8003":-1,"8004":358,"8005":2481,"8006":0,"8007":4027,"8008":2246,"8009":0,"8010":0,"8011":-1,"8012":3965,"8013":-1,"8014":0,"8015":-1,"8016":2066,"8017":0,"8018":-1,"8019":-1,"8020":0,"8021":2534,"8022":3768,"8023":0,"8024":2716,"8025":0,"8026":0,"8027":0,"8028":0,"8029":0,"8030":0,"8031":-1,"8032":3460,"8033":-1,"8034":0,"8035":3890,"8036":0,"8037":0,"8038":-1,"8039":73,"8040":0,"8041":62,"8042":2574,"8043":-1,"8044":-1,"8045":0,"8046":0,"8047":-1,"8048":-1,"8049":0,"8050":0,"8051":-1,"8052":0,"8053":3733,"8054":0,"8055":3398,"8056":0,"8057":0,"8058":-1,"8059":0,"8060":-1,"8061":2073,"8062":0,"8063":0,"8064":-1,"8065":0,"8066":-1,"8067":0,"8068":0,"8069":-1,"8070":108,"8071":-1,"8072":0,"8073":0,"8074":226,"8075":3452,"8076":0,"8077":-1,"8078":0,"8079":-1,"8080":73,"8081":-1,"8082":0,"8083":0,"8084":0,"8085":0,"8086":0,"8087":214,"8088":0,"8089":0,"8090":0,"8091":0,"8092":-1,"8093":-1,"8094":-1,"8095":-1,"8096":-1,"8097":0,"8098":0,"8099":-1,"8100":1844,"8101":-1,"8102":-1,"8103":1943,"8104":2004,"8105":2420,"8106":-1,"8107":3846,"8108":-1,"8109":2522,"8110":0,"8111":-1,"8112":0,"8113":0,"8114":0,"8115":0,"8116":-1,"8117":0,"8118":0,"8119":0,"8120":-1,"8121":-1,"8122":0,"8123":0,"8124":-1,"8125":0,"8126":-1,"8127":-1,"8128":-1,"8129":-1,"8130":0,"8131":0,"8132":0,"8133":3349,"8134":0,"8135":-1,"8136":3744,"8137":310,"8138":0,"8139":2508,"8140":-1,"8141":-1,"8142":-1,"8143":-1,"8144":0,"8145":2778,"8146":4039,"8147":0,"8148":-1,"8149":3224,"8150":3171,"8151":0,"8152":0,"8153":0,"8154":3111,"8155":-1,"8156":2164,"8157":0,"8158":0,"8159":0,"8160":0,"8161":0,"8162":3787,"8163":3361,"8164":0,"8165":3784,"8166":-1,"8167":0,"8168":3398,"8169":-1,"8170":0,"8171":0,"8172":-1,"8173":2757,"8174":0,"8175":-1,"8176":-1,"8177":0,"8178":0,"8179":-1,"8180":-1,"8181":-1,"8182":0,"8183":2422,"8184":0,"8185":4046,"8186":-1,"8187":0,"8188":-1,"8189":0,"8190":0,"8191":3584,"8192":156,"8193":-1,"8194":0,"8195":3311,"8196":0,"8197":-1,"8198":2889,"8199":-1,"8200":2485,"8201":-1,"8202":0,"8203":0,"8204":452,"8205":-1,"8206":0,"8207":-1,"8208":-1,"8209":2875,"8210":-1,"8211":-1,"8212":0,"8213":0,"8214":0,"8215":0,"8216":-1,"8217":-1,"8218":2033,"8219":0,"8220":-1,"8221":0,"8222":-1,"8223":2847,"8224":2678,"8225":0,"8226":0,"8227":-1,"8228":0,"8229":0,"8230":0,"8231":0,"8232":-1,"8233":-1,"8234":-1,"8235":2638,"8236":0,"8237":2779,"8238":0,"8239":-1,"8240":-1,"8241":-1,"8242":2512,"8243":-1,"8244":2060,"8245":-1,"8246":0,"8247":0,"8248":1905,"8249":2877,"8250":0,"8251":0,"8252":2991,"8253":-1,"8254":-1,"8255":-1,"8256":3099,"8257":0,"8258":3648,"8259":2903,"8260":0,"8261":-1,"8262":3806,"8263":0,"8264":-1,"8265":2715,"8266":-1,"8267":-1,"8268":-1,"8269":0,"8270":3188,"8271":460,"8272":0,"8273":-1,"8274":0,"8275":-1,"8276":0,"8277":0,"8278":-1,"8279":0,"8280":2246,"8281":0,"8282":2616,"8283":0,"8284":2508,"8285":0,"8286":0,"8287":-1,"8288":0,"8289":2418,"8290":1923,"8291":0,"8292":0,"8293":-1,"8294":0,"8295":0,"8296":0,"8297":0,"8298":3004,"8299":-1,"8300":0,"8301":0,"8302":-1,"8303":0,"8304":3034,"8305":-1,"8306":2199,"8307":0,"8308":0,"8309":3736,"8310":0,"8311":0,"8312":0,"8313":-1,"8314":0,"8315":0,"8316":-1,"8317":-1,"8318":3631,"8319":-1,"8320":-1,"8321":0,"8322":421,"8323":2158,"8324":-1,"8325":-1,"8326":-1,"8327":-1,"8328":-1,"8329":-1,"8330":-1,"8331":0,"8332":-1,"8333":-1,"8334":0,"8335":0,"8336":-1,"8337":2783,"8338":2865,"8339":-1,"8340":0,"8341":-1,"8342":2192,"8343":0,"8344":0,"8345":0,"8346":0,"8347":0,"8348":-1,"8349":3838,"8350":0,"8351":-1,"8352":0,"8353":0,"8354":0,"8355":0,"8356":0,"8357":3719,"8358":0,"8359":-1,"8360":-1,"8361":3907,"8362":0,"8363":0,"8364":0,"8365":-1,"8366":-1,"8367":-1,"8368":0,"8369":2584,"8370":0,"8371":0,"8372":140,"8373":-1,"8374":-1,"8375":0,"8376":0,"8377":2930,"8378":0,"8379":-1,"8380":3285,"8381":-1,"8382":-1,"8383":2490,"8384":3722,"8385":0,"8386":-1,"8387":0,"8388":0,"8389":0,"8390":0,"8391":-1,"8392":0,"8393":0,"8394":3207,"8395":0,"8396":256,"8397":2247,"8398":-1,"8399":-1,"8400":-1,"8401":-1,"8402":-1,"8403":-1,"8404":1987,"8405":-1,"8406":0,"8407":-1,"8408":0,"8409":-1,"8410":0,"8411":-1,"8412":0,"8413":-1,"8414":-1,"8415":3931,"8416":374,"8417":-1,"8418":3708,"8419":3063,"8420":0,"8421":-1,"8422":0,"8423":3779,"8424":0,"8425":-1,"8426":3803,"8427":3884,"8428":2761,"8429":0,"8430":-1,"8431":197,"8432":3629,"8433":191,"8434":0,"8435":-1,"8436":3602,"8437":-1,"8438":0,"8439":0,"8440":2356,"8441":1855,"8442":3326,"8443":0,"8444":-1,"8445":-1,"8446":3219,"8447":0,"8448":0,"8449":-1,"8450":0,"8451":0,"8452":-1,"8453":3956,"8454":0,"8455":0,"8456":0,"8457":-1,"8458":0,"8459":0,"8460":316,"8461":0,"8462":-1,"8463":-1,"8464":0,"8465":0,"8466":-1,"8467":0,"8468":0,"8469":1796,"8470":3113,"8471":0,"8472":320,"8473":-1,"8474":0,"8475":58,"8476":3911,"8477":0,"8478":2990,"8479":-1,"8480":0,"8481":-1,"8482":0,"8483":0,"8484":0,"8485":-1,"8486":0,"8487":-1,"8488":-1,"8489":0,"8490":-1,"8491":271,"8492":0,"8493":0,"8494":0,"8495":-1,"8496":-1,"8497":3642,"8498":-1,"8499":-1,"8500":3860,"8501":2741,"8502":-1,"8503":0,"8504":-1,"8505":-1,"8506":-1,"8507":0,"8508":0,"8509":0,"8510":0,"8511":-1,"8512":3076,"8513":0,"8514":0,"8515":-1,"8516":2896,"8517":-1,"8518":-1,"8519":-1,"8520":-1,"8521":0,"8522":0,"8523":-1,"8524":-1,"8525":0,"8526":-1,"8527":2916,"8528":94,"8529":-1,"8530":3835,"8531":0,"8532":0,"8533":0,"8534":-1,"8535":0,"8536":-1,"8537":-1,"8538":0,"8539":0,"8540":1813,"8541":0,"8542":-1,"8543":-1,"8544":-1,"8545":0,"8546":0,"8547":-1,"8548":-1,"8549":-1,"8550":-1,"8551":0,"8552":-1,"8553":0,"8554":-1,"8555":0,"8556":-1,"8557":0,"8558":-1,"8559":2783,"8560":3972,"8561":0,"8562":0,"8563":0,"8564":121,"8565":0,"8566":0,"8567":2436,"8568":2955,"8569":2989,"8570":0,"8571":-1,"8572":0,"8573":3954,"8574":3773,"8575":-1,"8576":4047,"8577":-1,"8578":-1,"8579":0,"8580":0,"8581":0,"8582":3919,"8583":-1,"8584":2650,"8585":-1,"8586":-1,"8587":114,"8588":0,"8589":0,"8590":0,"8591":-1,"8592":-1,"8593":0,"8594":0,"8595":0,"8596":-1,"8597":-1,"8598":-1,"8599":3128,"8600":0,"8601":0,"8602":0,"8603":-1,"8604":0,"8605":-1,"8606":0,"8607":-1,"8608":-1,"8609":0,"8610":-1,"8611":0,"8612":179,"8613":0,"8614":-1,"8615":2140,"8616":0,"8617":0,"8618":1796,"8619":0,"8620":-1,"8621":0,"8622":0,"8623":0,"8624":0,"8625":0,"8626":0,"8627":-1,"8628":-1,"8629":0,"8630":0,"8631":-1,"8632":2616,"8633":0,"8634":-1,"8635":0,"8636":-1,"8637":-1,"8638":2534,"8639":0,"8640":3258,"8641":0,"8642":-1,"8643":0,"8644":3403,"8645":0,"8646":-1,"8647":0,"8648":-1,"8649":-1,"8650":0,"8651":0,"8652":-1,"8653":-1,"8654":0,"8655":1914,"8656":0,"8657":338,"8658":-1,"8659":3635,"8660":0,"8661":-1,"8662":0,"8663":0,"8664":0,"8665":0,"8666":-1,"8667":-1,"8668":2795,"8669":0,"8670":0,"8671":0,"8672":0,"8673":3025,"8674":0,"8675":0,"8676":-1,"8677":1872,"8678":0,"8679":0,"8680":486,"8681":-1,"8682":-1,"8683":0,"8684":0,"8685":-1,"8686":0,"8687":-1,"8688":0,"8689":0,"8690":0,"8691":0,"8692":0,"8693":0,"8694":3585,"8695":2916,"8696":0,"8697":0,"8698":0,"8699":0,"8700":-1,"8701":-1,"8702":0,"8703":3846,"8704":-1,"8705":130,"8706":0,"8707":-1,"8708":0,"8709":-1,"8710":140,"8711":-1,"8712":0,"8713":-1,"8714":3066,"8715":2966,"8716":0,"8717":3826,"8718":0,"8719":-1,"8720":-1,"8721":2744,"8722":2564,"8723":-1,"8724":-1,"8725":-1,"8726":0,"8727":-1,"8728":0,"8729":3153,"8730":0,"8731":-1,"8732":2881,"8733":0,"8734":-1,"8735":0,"8736":0,"8737":0,"8738":1823,"8739":0,"8740":-1,"8741":0,"8742":0,"8743":3842,"8744":3181,"8745":3431,"8746":2181,"8747":-1,"8748":259,"8749":-1,"8750":0,"8751":0,"8752":-1,"8753":0,"8754":-1,"8755":0,"8756":0,"8757":-1,"8758":0,"8759":-1,"8760":0,"8761":0,"8762":0,"8763":-1,"8764":2720,"8765":0,"8766":0,"8767":0,"8768":2574,"8769":1990,"8770":-1,"8771":0,"8772":3648,"8773":0,"8774":-1,"8775":-1,"8776":0,"8777":2515,"8778":0,"8779":0,"8780":0,"8781":-1,"8782":0,"8783":0,"8784":-1,"8785":0,"8786":0,"8787":0,"8788":3805,"8789":409,"8790":0,"8791":0,"8792":0,"8793":2919,"8794":0,"8795":252,"8796":0,"8797":0,"8798":0,"8799":-1,"8800":0,"8801":302,"8802":3429,"8803":0,"8804":-1,"8805":0,"8806":-1,"8807":0,"8808":3218,"8809":-1,"8810":0,"8811":2249,"8812":2882,"8813":-1,"8814":0,"8815":-1,"8816":0,"8817":0,"8818":2503,"8819":-1,"8820":-1,"8821":3701,"8822":0,"8823":3098,"8824":-1,"8825":-1,"8826":-1,"8827":3408,"8828":-1,"8829":0,"8830":0,"8831":3340,"8832":2957,"8833":443,"8834":3438,"8835":0,"8836":-1,"8837":0,"8838":0,"8839":0,"8840":-1,"8841":-1,"8842":-1,"8843":0,"8844":2703,"8845":1997,"8846":-1,"8847":0,"8848":-1,"8849":-1,"8850":3920,"8851":-1,"8852":0,"8853":3950,"8854":0,"8855":0,"8856":445,"8857":131,"8858":3379,"8859":156,"8860":0,"8861":0,"8862":0,"8863":497,"8864":-1,"8865":-1,"8866":-1,"8867":-1,"8868":0,"8869":-1,"8870":302,"8871":-1,"8872":-1,"8873":0,"8874":2773,"8875":0,"8876":3862,"8877":-1,"8878":-1,"8879":-1,"8880":2087,"8881":116,"8882":-1,"8883":0,"8884":2395,"8885":3475,"8886":2409,"8887":0,"8888":0,"8889":-1,"8890":4045,"8891":0,"8892":-1,"8893":192,"8894":0,"8895":-1,"8896":-1,"8897":-1,"8898":-1,"8899":-1,"8900":0,"8901":127,"8902":0,"8903":-1,"8904":-1,"8905":-1,"8906":-1,"8907":0,"8908":0,"8909":-1,"8910":0,"8911":0,"8912":-1,"8913":-1,"8914":2865,"8915":2228,"8916":-1,"8917":0,"8918":-1,"8919":0,"8920":0,"8921":-1,"8922":-1,"8923":0,"8924":0,"8925":0,"8926":-1,"8927":1990,"8928":-1,"8929":0,"8930":0,"8931":-1,"8932":-1,"8933":-1,"8934":-1,"8935":2780,"8936":0,"8937":2186,"8938":-1,"8939":0,"8940":-1,"8941":0,"8942":-1,"8943":0,"8944":2935,"8945":-1,"8946":-1,"8947":2179,"8948":2298,"8949":-1,"8950":3411,"8951":0,"8952":0,"8953":-1,"8954":2108,"8955":472,"8956":2744,"8957":0,"8958":0,"8959":2105,"8960":2770,"8961":-1,"8962":0,"8963":3760,"8964":0,"8965":3819,"8966":0,"8967":346,"8968":0,"8969":0,"8970":3626,"8971":0,"8972":-1,"8973":0,"8974":0,"8975":-1,"8976":0,"8977":-1,"8978":2480,"8979":-1,"8980":3801,"8981":0,"8982":4003,"8983":2800,"8984":-1,"8985":-1,"8986":0,"8987":0,"8988":0,"8989":0,"8990":310,"8991":2178,"8992":0,"8993":0,"8994":179,"8995":-1,"8996":0,"8997":0,"8998":0,"8999":-1,"9000":0,"9001":0,"9002":3551,"9003":2485,"9004":0,"9005":3102,"9006":-1,"9007":0,"9008":2196,"9009":0,"9010":-1,"9011":2659,"9012":-1,"9013":0,"9014":3305,"9015":0,"9016":-1,"9017":3363,"9018":-1,"9019":-1,"9020":116,"9021":-1,"9022":3803,"9023":-1,"9024":0,"9025":2442,"9026":-1,"9027":0,"9028":0,"9029":-1,"9030":0,"9031":0,"9032":-1,"9033":0,"9034":0,"9035":0,"9036":0,"9037":-1,"9038":-1,"9039":-1,"9040":-1,"9041":-1,"9042":-1,"9043":-1,"9044":0,"9045":-1,"9046":3964,"9047":-1,"9048":-1,"9049":0,"9050":-1,"9051":-1,"9052":3851,"9053":2068,"9054":283,"9055":115,"9056":-1,"9057":0,"9058":2750,"9059":-1,"9060":-1,"9061":2224,"9062":0,"9063":0,"9064":0,"9065":0,"9066":-1,"9067":-1,"9068":-1,"9069":0,"9070":-1,"9071":2331,"9072":4001,"9073":0,"9074":4016,"9075":2632,"9076":0,"9077":-1,"9078":0,"9079":0,"9080":-1,"9081":0,"9082":0,"9083":0,"9084":2388,"9085":0,"9086":-1,"9087":-1,"9088":0,"9089":-1,"9090":3393,"9091":0,"9092":0,"9093":0,"9094":0,"9095":0,"9096":143,"9097":3176,"9098":2941,"9099":0,"9100":0,"9101":2173,"9102":0,"9103":0,"9104":-1,"9105":2837,"9106":337,"9107":-1,"9108":0,"9109":0,"9110":3513,"9111":3521,"9112":-1,"9113":-1,"9114":-1,"9115":-1,"9116":0,"9117":3303,"9118":0,"9119":0,"9120":0,"9121":0,"9122":0,"9123":-1,"9124":0,"9125":-1,"9126":0,"9127":2751,"9128":0,"9129":0,"9130":0,"9131":0,"9132":0,"9133":0,"9134":0,"9135":0,"9136":2406,"9137":-1,"9138":2490,"9139":-1,"9140":-1,"9141":3367,"9142":1958,"9143":0,"9144":-1,"9145":0,"9146":-1,"9147":0,"9148":2713,"9149":0,"9150":0,"9151":2708,"9152":0,"9153":1780,"9154":-1,"9155":0,"9156":-1,"9157":1943,"9158":-1,"9159":-1,"9160":0,"9161":0,"9162":2222,"9163":0,"9164":0,"9165":-1,"9166":-1,"9167":0,"9168":0,"9169":0,"9170":0,"9171":0,"9172":2570,"9173":-1,"9174":0,"9175":2643,"9176":0,"9177":0,"9178":0,"9179":4039,"9180":-1,"9181":3166,"9182":0,"9183":0,"9184":429,"9185":3897,"9186":-1,"9187":0,"9188":0,"9189":-1,"9190":-1,"9191":269,"9192":0,"9193":0,"9194":0,"9195":-1,"9196":0,"9197":0,"9198":0,"9199":-1,"9200":0,"9201":349,"9202":3644,"9203":0,"9204":0,"9205":0,"9206":2358,"9207":3702,"9208":0,"9209":-1,"9210":0,"9211":0,"9212":221,"9213":0,"9214":3910,"9215":-1,"9216":0,"9217":0,"9218":-1,"9219":-1,"9220":80,"9221":2478,"9222":0,"9223":0,"9224":-1,"9225":-1,"9226":0,"9227":1973,"9228":-1,"9229":0,"9230":-1,"9231":0,"9232":0,"9233":-1,"9234":3982,"9235":2098,"9236":2107,"9237":0,"9238":-1,"9239":3568,"9240":2701,"9241":0,"9242":-1,"9243":-1,"9244":-1,"9245":0,"9246":0,"9247":0,"9248":2271,"9249":1896,"9250":285,"9251":0,"9252":0,"9253":0,"9254":0,"9255":1837,"9256":3435,"9257":-1,"9258":-1,"9259":-1,"9260":0,"9261":3825,"9262":0,"9263":0,"9264":0,"9265":2280,"9266":-1,"9267":0,"9268":0,"9269":0,"9270":-1,"9271":-1,"9272":-1,"9273":0,"9274":2782,"9275":0,"9276":-1,"9277":0,"9278":0,"9279":-1,"9280":2345,"9281":-1,"9282":-1,"9283":-1,"9284":0,"9285":2152,"9286":0,"9287":0,"9288":2688,"9289":0,"9290":341,"9291":3083,"9292":-1,"9293":0,"9294":-1,"9295":2331,"9296":-1,"9297":0,"9298":-1,"9299":0,"9300":0,"9301":2371,"9302":0,"9303":3851,"9304":2158,"9305":0,"9306":2457,"9307":-1,"9308":3661,"9309":345,"9310":-1,"9311":-1,"9312":0,"9313":-1,"9314":321,"9315":-1,"9316":0,"9317":-1,"9318":-1,"9319":-1,"9320":-1,"9321":-1,"9322":0,"9323":3443,"9324":49,"9325":-1,"9326":3019,"9327":-1,"9328":3772,"9329":0,"9330":-1,"9331":0,"9332":2667,"9333":3387,"9334":0,"9335":0,"9336":0,"9337":-1,"9338":0,"9339":0,"9340":-1,"9341":0,"9342":-1,"9343":-1,"9344":3553,"9345":-1,"9346":0,"9347":0,"9348":0,"9349":260,"9350":0,"9351":0,"9352":0,"9353":0,"9354":0,"9355":0,"9356":0,"9357":0,"9358":2490,"9359":-1,"9360":0,"9361":0,"9362":0,"9363":2922,"9364":0,"9365":0,"9366":0,"9367":2365,"9368":0,"9369":0,"9370":0,"9371":3867,"9372":2739,"9373":-1,"9374":0,"9375":-1,"9376":497,"9377":0,"9378":0,"9379":-1,"9380":-1,"9381":0,"9382":0,"9383":-1,"9384":-1,"9385":0,"9386":0,"9387":0,"9388":2015,"9389":0,"9390":2503,"9391":0,"9392":-1,"9393":0,"9394":-1,"9395":3144,"9396":0,"9397":0,"9398":-1,"9399":-1,"9400":2792,"9401":-1,"9402":364,"9403":0,"9404":0,"9405":0,"9406":3256,"9407":-1,"9408":2826,"9409":-1,"9410":-1,"9411":0,"9412":-1,"9413":0,"9414":-1,"9415":0,"9416":-1,"9417":-1,"9418":2477,"9419":3390,"9420":-1,"9421":1806,"9422":3468,"9423":0,"9424":-1,"9425":3879,"9426":-1,"9427":0,"9428":-1,"9429":0,"9430":-1,"9431":0,"9432":0,"9433":0,"9434":0,"9435":419,"9436":0,"9437":-1,"9438":-1,"9439":3027,"9440":-1,"9441":-1,"9442":0,"9443":-1,"9444":3494,"9445":-1,"9446":2959,"9447":2488,"9448":0,"9449":232,"9450":0,"9451":0,"9452":-1,"9453":-1,"9454":0,"9455":-1,"9456":0,"9457":0,"9458":-1,"9459":4033,"9460":0,"9461":-1,"9462":0,"9463":-1,"9464":-1,"9465":3436,"9466":-1,"9467":2654,"9468":0,"9469":0,"9470":59,"9471":3064,"9472":0,"9473":0,"9474":0,"9475":-1,"9476":0,"9477":-1,"9478":0,"9479":-1,"9480":0,"9481":2075,"9482":0,"9483":1906,"9484":-1,"9485":0,"9486":3743,"9487":0,"9488":-1,"9489":-1,"9490":0,"9491":-1,"9492":0,"9493":4060,"9494":2945,"9495":-1,"9496":-1,"9497":438,"9498":0,"9499":0,"9500":-1,"9501":-1,"9502":-1,"9503":0,"9504":-1,"9505":0,"9506":0,"9507":-1,"9508":3424,"9509":0,"9510":0,"9511":0,"9512":-1,"9513":268,"9514":0,"9515":2708,"9516":-1,"9517":-1,"9518":-1,"9519":4007,"9520":3554,"9521":0,"9522":0,"9523":0,"9524":2477,"9525":0,"9526":0,"9527":0,"9528":2127,"9529":3450,"9530":-1,"9531":-1,"9532":0,"9533":0,"9534":0,"9535":204,"9536":0,"9537":0,"9538":3403,"9539":0,"9540":0,"9541":0,"9542":0,"9543":0,"9544":0,"9545":0,"9546":-1,"9547":-1,"9548":4011,"9549":0,"9550":0,"9551":-1,"9552":-1,"9553":0,"9554":0,"9555":0,"9556":0,"9557":0,"9558":0,"9559":0,"9560":-1,"9561":0,"9562":0,"9563":239,"9564":0,"9565":265,"9566":0,"9567":0,"9568":-1,"9569":2232,"9570":2719,"9571":335,"9572":3670,"9573":2985,"9574":0,"9575":0,"9576":0,"9577":0,"9578":-1,"9579":0,"9580":0,"9581":-1,"9582":-1,"9583":-1,"9584":-1,"9585":0,"9586":3000,"9587":0,"9588":0,"9589":-1,"9590":340,"9591":0,"9592":-1,"9593":-1,"9594":3346,"9595":0,"9596":-1,"9597":-1,"9598":-1,"9599":-1,"9600":0,"9601":-1,"9602":0,"9603":0,"9604":-1,"9605":0,"9606":0,"9607":0,"9608":0,"9609":0,"9610":-1,"9611":0,"9612":0,"9613":0,"9614":0,"9615":3210,"9616":0,"9617":3270,"9618":0,"9619":0,"9620":0,"9621":-1,"9622":0,"9623":0,"9624":-1,"9625":-1,"9626":-1,"9627":0,"9628":-1,"9629":0,"9630":0,"9631":0,"9632":-1,"9633":0,"9634":0,"9635":0,"9636":-1,"9637":0,"9638":0,"9639":-1,"9640":0,"9641":-1,"9642":-1,"9643":2763,"9644":3066,"9645":2279,"9646":0,"9647":23,"9648":-1,"9649":0,"9650":0,"9651":0,"9652":3317,"9653":0,"9654":-1,"9655":0,"9656":0,"9657":-1,"9658":-1,"9659":0,"9660":-1,"9661":-1,"9662":2246,"9663":0,"9664":3827,"9665":-1,"9666":412,"9667":-1,"9668":0,"9669":2856,"9670":3056,"9671":0,"9672":-1,"9673":0,"9674":0,"9675":0,"9676":3759,"9677":0,"9678":3232,"9679":-1,"9680":-1,"9681":1910,"9682":0,"9683":-1,"9684":-1,"9685":3237,"9686":4023,"9687":-1,"9688":0,"9689":-1,"9690":0,"9691":3899,"9692":-1,"9693":2386,"9694":4020,"9695":2833,"9696":0,"9697":3250,"9698":0,"9699":0,"9700":0,"9701":1801,"9702":2731,"9703":0,"9704":-1,"9705":-1,"9706":-1,"9707":0,"9708":0,"9709":0,"9710":-1,"9711":-1,"9712":0,"9713":-1,"9714":4015,"9715":0,"9716":-1,"9717":3039,"9718":-1,"9719":-1,"9720":3560,"9721":-1,"9722":3166,"9723":0,"9724":0,"9725":1856,"9726":0,"9727":3374,"9728":3538,"9729":3819,"9730":0,"9731":0,"9732":-1,"9733":0,"9734":0,"9735":0,"9736":0,"9737":3895,"9738":0,"9739":0,"9740":2254,"9741":3060,"9742":3959,"9743":0,"9744":-1,"9745":0,"9746":2505,"9747":2156,"9748":3233,"9749":-1,"9750":0,"9751":0,"9752":0,"9753":0,"9754":0,"9755":0,"9756":2239,"9757":0,"9758":-1,"9759":0,"9760":0,"9761":2649,"9762":0,"9763":-1,"9764":0,"9765":-1,"9766":174,"9767":0,"9768":0,"9769":-1,"9770":-1,"9771":3944,"9772":3978,"9773":2901,"9774":-1,"9775":-1,"9776":-1,"9777":-1,"9778":1812,"9779":0,"9780":0,"9781":-1,"9782":3527,"9783":-1,"9784":-1,"9785":-1,"9786":-1,"9787":3550,"9788":0,"9789":0,"9790":2380,"9791":0,"9792":0,"9793":-1,"9794":0,"9795":0,"9796":4020,"9797":-1,"9798":0,"9799":3563,"9800":3735,"9801":-1,"9802":2361,"9803":-1,"9804":0,"9805":-1,"9806":1861,"9807":0,"9808":1821,"9809":0,"9810":0,"9811":0,"9812":1986,"9813":0,"9814":2732,"9815":175,"9816":3355,"9817":2129,"9818":0,"9819":3442,"9820":0,"9821":0,"9822":0,"9823":0,"9824":2578,"9825":2795,"9826":-1,"9827":1782,"9828":0,"9829":0,"9830":-1,"9831":2755,"9832":1894,"9833":3746,"9834":3642,"9835":-1,"9836":2050,"9837":-1,"9838":3279,"9839":2426,"9840":0,"9841":0,"9842":0,"9843":0,"9844":0,"9845":0,"9846":-1,"9847":-1,"9848":2217,"9849":0,"9850":0,"9851":-1,"9852":2767,"9853":-1,"9854":0,"9855":0,"9856":3105,"9857":2229,"9858":-1,"9859":0,"9860":0,"9861":-1,"9862":0,"9863":0,"9864":0,"9865":0,"9866":0,"9867":-1,"9868":-1,"9869":0,"9870":3970,"9871":3298,"9872":-1,"9873":-1,"9874":-1,"9875":184,"9876":0,"9877":108,"9878":-1,"9879":0,"9880":0,"9881":0,"9882":3001,"9883":-1,"9884":4061,"9885":-1,"9886":2997,"9887":0,"9888":3363,"9889":0,"9890":0,"9891":-1,"9892":0,"9893":0,"9894":-1,"9895":0,"9896":-1,"9897":-1,"9898":0,"9899":0,"9900":3661,"9901":-1,"9902":0,"9903":-1,"9904":0,"9905":-1,"9906":-1,"9907":0,"9908":0,"9909":0,"9910":-1,"9911":-1,"9912":-1,"9913":0,"9914":333,"9915":0,"9916":1935,"9917":0,"9918":0,"9919":0,"9920":-1,"9921":2417,"9922":309,"9923":2110,"9924":-1,"9925":-1,"9926":-1,"9927":0,"9928":0,"9929":-1,"9930":-1,"9931":0,"9932":-1,"9933":0,"9934":0,"9935":0,"9936":-1,"9937":3677,"9938":-1,"9939":-1,"9940":2858,"9941":0,"9942":0,"9943":-1,"9944":3700,"9945":3523,"9946":-1,"9947":4034,"9948":-1,"9949":-1,"9950":2892,"9951":165,"9952":-1,"9953":0,"9954":-1,"9955":-1,"9956":2228,"9957":0,"9958":0,"9959":0,"9960":0,"9961":-1,"9962":0,"9963":3074,"9964":0,"9965":0,"9966":-1,"9967":-1,"9968":-1,"9969":0,"9970":-1,"9971":-1,"9972":0,"9973":3052,"9974":0,"9975":0,"9976":2648,"9977":-1,"9978":-1,"9979":0,"9980":0,"9981":2721,"9982":-1,"9983":-1,"9984":-1,"9985":0,"9986":-1,"9987":0,"9988":-1,"9989":0,"9990":-1,"9991":0,"9992":3666,"9993":-1,"9994":-1,"9995":-1,"9996":-1,"9997":0,"9998":0,"9999":0,"10000":0,"10001":-1,"10002":0,"10003":0,"10004":-1,"10005":0,"10006":0,"10007":0,"10008":0,"10009":0,"10010":0,"10011":1925,"10012":-1,"10013":2625,"10014":-1,"10015":0,"10016":2873,"10017":0,"10018":2961,"10019":0,"10020":0,"10021":0,"10022":-1,"10023":3505,"10024":-1,"10025":-1,"10026":0,"10027":0,"10028":0,"10029":0,"10030":-1,"10031":-1,"10032":-1,"10033":0,"10034":0,"10035":0,"10036":416,"10037":204,"10038":0,"10039":2051,"10040":-1,"10041":2281,"10042":0,"10043":-1,"10044":0,"10045":0,"10046":0,"10047":-1,"10048":0,"10049":2676,"10050":0,"10051":-1,"10052":505,"10053":2405,"10054":114,"10055":-1,"10056":1803,"10057":0,"10058":0,"10059":0,"10060":0,"10061":460,"10062":-1,"10063":0,"10064":0,"10065":0,"10066":0,"10067":-1,"10068":0,"10069":2996,"10070":1849,"10071":3525,"10072":-1,"10073":0,"10074":-1,"10075":3349,"10076":0,"10077":-1,"10078":0,"10079":3545,"10080":0,"10081":0,"10082":2125,"10083":-1,"10084":-1,"10085":0,"10086":0,"10087":183,"10088":-1,"10089":2627,"10090":0,"10091":3386,"10092":-1,"10093":0,"10094":-1,"10095":0,"10096":-1,"10097":-1,"10098":2965,"10099":0,"10100":-1,"10101":0,"10102":0,"10103":0,"10104":0,"10105":0,"10106":-1,"10107":-1,"10108":0,"10109":0,"10110":1825,"10111":3312,"10112":416,"10113":0,"10114":0,"10115":-1,"10116":2617,"10117":2534,"10118":-1,"10119":3291,"10120":3402,"10121":0,"10122":0,"10123":-1,"10124":2679,"10125":-1,"10126":2575,"10127":0,"10128":-1,"10129":0,"10130":2886,"10131":0,"10132":3844,"10133":-1,"10134":0,"10135":0,"10136":-1,"10137":-1,"10138":-1,"10139":0,"10140":280,"10141":0,"10142":-1,"10143":0,"10144":93,"10145":0,"10146":0,"10147":0,"10148":0,"10149":2875,"10150":0,"10151":-1,"10152":0,"10153":-1,"10154":-1,"10155":3169,"10156":0,"10157":-1,"10158":-1,"10159":-1,"10160":0,"10161":0,"10162":0,"10163":-1,"10164":0,"10165":3997,"10166":0,"10167":0,"10168":-1,"10169":3246,"10170":211,"10171":0,"10172":-1,"10173":0,"10174":3604,"10175":0,"10176":-1,"10177":0,"10178":0,"10179":-1,"10180":-1,"10181":-1,"10182":0,"10183":2684,"10184":-1,"10185":2755,"10186":-1,"10187":0,"10188":0,"10189":-1,"10190":1945,"10191":-1,"10192":0,"10193":-1,"10194":0,"10195":0,"10196":0,"10197":-1,"10198":0,"10199":409,"10200":3547,"10201":0,"10202":-1,"10203":3897,"10204":0,"10205":0,"10206":2579,"10207":2141,"10208":0,"10209":0,"10210":0,"10211":0,"10212":-1,"10213":3765,"10214":3589,"10215":-1,"10216":0,"10217":0,"10218":0,"10219":-1,"10220":2413,"10221":0,"10222":-1,"10223":3105,"10224":-1,"10225":-1,"10226":0,"10227":0,"10228":2588,"10229":0,"10230":0,"10231":0,"10232":0,"10233":0,"10234":-1,"10235":3042,"10236":0,"10237":3641,"10238":0,"10239":-1,"10240":-1,"10241":0,"10242":0,"10243":0,"10244":0,"10245":0,"10246":2968,"10247":0,"10248":-1,"10249":3540,"10250":3107,"10251":0,"10252":3930,"10253":0,"10254":2046,"10255":2902,"10256":0,"10257":0,"10258":2220,"10259":-1,"10260":2351,"10261":-1,"10262":2861,"10263":3421,"10264":0,"10265":-1,"10266":1923,"10267":0,"10268":-1,"10269":0,"10270":-1,"10271":2906,"10272":0,"10273":0,"10274":4009,"10275":0,"10276":-1,"10277":0,"10278":0,"10279":-1,"10280":0,"10281":-1,"10282":0,"10283":0,"10284":3789,"10285":2252,"10286":0,"10287":3980,"10288":2500,"10289":0,"10290":2493,"10291":2774,"10292":2885,"10293":2753,"10294":0,"10295":195,"10296":-1,"10297":0,"10298":0,"10299":3920,"10300":2157,"10301":0,"10302":0,"10303":3361,"10304":2951,"10305":-1,"10306":0,"10307":0,"10308":0,"10309":0,"10310":3013,"10311":3904,"10312":-1,"10313":0,"10314":0,"10315":-1,"10316":3948,"10317":-1,"10318":0,"10319":-1,"10320":0,"10321":0,"10322":0,"10323":0,"10324":-1,"10325":-1,"10326":0,"10327":0,"10328":-1,"10329":0,"10330":-1,"10331":0,"10332":0,"10333":0,"10334":-1,"10335":0,"10336":0,"10337":0,"10338":256,"10339":2246,"10340":0,"10341":-1,"10342":0,"10343":-1,"10344":-1,"10345":3301,"10346":0,"10347":-1,"10348":-1,"10349":3666,"10350":0,"10351":-1,"10352":0,"10353":0,"10354":3327,"10355":0,"10356":0,"10357":0,"10358":-1,"10359":-1,"10360":0,"10361":340,"10362":3769,"10363":0,"10364":0,"10365":-1,"10366":-1,"10367":3236,"10368":-1,"10369":0,"10370":0,"10371":0,"10372":-1,"10373":3223,"10374":0,"10375":-1,"10376":-1,"10377":-1,"10378":1777,"10379":3234,"10380":-1,"10381":0,"10382":0,"10383":0,"10384":-1,"10385":3929,"10386":3491,"10387":0,"10388":3211,"10389":0,"10390":-1,"10391":0,"10392":-1,"10393":-1,"10394":2097,"10395":-1,"10396":2514,"10397":-1,"10398":0,"10399":-1,"10400":3924,"10401":0,"10402":0,"10403":0,"10404":0,"10405":0,"10406":0,"10407":0,"10408":0,"10409":2098,"10410":0,"10411":0,"10412":0,"10413":0,"10414":2197,"10415":0,"10416":497,"10417":3914,"10418":0,"10419":-1,"10420":0,"10421":2780,"10422":235,"10423":0,"10424":2633,"10425":0,"10426":-1,"10427":-1,"10428":0,"10429":2558,"10430":3868,"10431":306,"10432":0,"10433":-1,"10434":2779,"10435":0,"10436":0,"10437":0,"10438":-1,"10439":-1,"10440":0,"10441":0,"10442":3226,"10443":-1,"10444":0,"10445":-1,"10446":-1,"10447":315,"10448":-1,"10449":-1,"10450":2234,"10451":-1,"10452":2107,"10453":0,"10454":-1,"10455":0,"10456":0,"10457":-1,"10458":-1,"10459":0,"10460":2737,"10461":-1,"10462":0,"10463":0,"10464":0,"10465":0,"10466":-1,"10467":144,"10468":0,"10469":-1,"10470":0,"10471":2800,"10472":0,"10473":0,"10474":0,"10475":-1,"10476":1811,"10477":-1,"10478":0,"10479":0,"10480":1973,"10481":-1,"10482":0,"10483":3323,"10484":-1,"10485":0,"10486":-1,"10487":-1,"10488":0,"10489":1886,"10490":0,"10491":-1,"10492":0,"10493":0,"10494":-1,"10495":-1,"10496":0,"10497":0,"10498":-1,"10499":3607,"10500":0,"10501":0,"10502":0,"10503":0,"10504":3934,"10505":2571,"10506":0,"10507":1999,"10508":3969,"10509":-1,"10510":-1,"10511":0,"10512":3820,"10513":-1,"10514":-1,"10515":0,"10516":0,"10517":-1,"10518":-1,"10519":0,"10520":0,"10521":3499,"10522":-1,"10523":130,"10524":-1,"10525":0,"10526":3961,"10527":-1,"10528":2034,"10529":2199,"10530":-1,"10531":3717,"10532":0,"10533":-1,"10534":0,"10535":-1,"10536":3657,"10537":0,"10538":4024,"10539":85,"10540":0,"10541":-1,"10542":-1,"10543":2320,"10544":-1,"10545":2230,"10546":0,"10547":3147,"10548":2244,"10549":4036,"10550":0,"10551":2283,"10552":-1,"10553":-1,"10554":0,"10555":2126,"10556":2155,"10557":-1,"10558":0,"10559":259,"10560":0,"10561":0,"10562":0,"10563":-1,"10564":-1,"10565":0,"10566":0,"10567":2760,"10568":0,"10569":0,"10570":-1,"10571":2090,"10572":0,"10573":0,"10574":-1,"10575":0,"10576":0,"10577":0,"10578":0,"10579":-1,"10580":-1,"10581":139,"10582":-1,"10583":-1,"10584":-1,"10585":-1,"10586":-1,"10587":2465,"10588":2457,"10589":-1,"10590":3526,"10591":0,"10592":0,"10593":-1,"10594":0,"10595":-1,"10596":0,"10597":0,"10598":-1,"10599":0,"10600":-1,"10601":0,"10602":0,"10603":3051,"10604":-1,"10605":-1,"10606":2587,"10607":0,"10608":-1,"10609":3738,"10610":0,"10611":-1,"10612":3663,"10613":0,"10614":0,"10615":0,"10616":3012,"10617":-1,"10618":2108,"10619":0,"10620":0,"10621":0,"10622":0,"10623":-1,"10624":2115,"10625":-1,"10626":0,"10627":0,"10628":0,"10629":0,"10630":0,"10631":-1,"10632":0,"10633":2082,"10634":0,"10635":0,"10636":-1,"10637":2065,"10638":0,"10639":3143,"10640":2356,"10641":0,"10642":3056,"10643":2527,"10644":-1,"10645":-1,"10646":0,"10647":0,"10648":-1,"10649":0,"10650":0,"10651":0,"10652":0,"10653":-1,"10654":-1,"10655":0,"10656":-1,"10657":3714,"10658":-1,"10659":0,"10660":2989,"10661":-1,"10662":2524,"10663":441,"10664":0,"10665":-1,"10666":-1,"10667":-1,"10668":0,"10669":0,"10670":3903,"10671":-1,"10672":-1,"10673":0,"10674":0,"10675":-1,"10676":0,"10677":-1,"10678":3703,"10679":2646,"10680":-1,"10681":0,"10682":-1,"10683":1880,"10684":-1,"10685":0,"10686":0,"10687":2461,"10688":3610,"10689":0,"10690":-1,"10691":-1,"10692":-1,"10693":-1,"10694":0,"10695":2458,"10696":0,"10697":-1,"10698":-1,"10699":1794,"10700":-1,"10701":-1,"10702":0,"10703":214,"10704":0,"10705":-1,"10706":0,"10707":-1,"10708":0,"10709":0,"10710":0,"10711":0,"10712":-1,"10713":-1,"10714":0,"10715":-1,"10716":0,"10717":0,"10718":0,"10719":-1,"10720":2025,"10721":0,"10722":4011,"10723":0,"10724":-1,"10725":2032,"10726":0,"10727":-1,"10728":-1,"10729":2621,"10730":-1,"10731":0,"10732":0,"10733":0,"10734":2957,"10735":0,"10736":3094,"10737":-1,"10738":0,"10739":0,"10740":3159,"10741":0,"10742":0,"10743":2079,"10744":-1,"10745":-1,"10746":0,"10747":3615,"10748":-1,"10749":3568,"10750":0,"10751":-1,"10752":3070,"10753":16,"10754":3551,"10755":3106,"10756":3196,"10757":-1,"10758":3571,"10759":0,"10760":0,"10761":0,"10762":0,"10763":-1,"10764":2163,"10765":3089,"10766":2997,"10767":2168,"10768":366,"10769":3479,"10770":-1,"10771":2939,"10772":2579,"10773":3967,"10774":0,"10775":-1,"10776":2870,"10777":-1,"10778":0,"10779":3815,"10780":0,"10781":-1,"10782":2144,"10783":0,"10784":-1,"10785":-1,"10786":2892,"10787":2061,"10788":3134,"10789":-1,"10790":-1,"10791":0,"10792":0,"10793":0,"10794":-1,"10795":-1,"10796":-1,"10797":0,"10798":2087,"10799":-1,"10800":0,"10801":-1,"10802":-1,"10803":0,"10804":-1,"10805":1880,"10806":0,"10807":0,"10808":0,"10809":-1,"10810":0,"10811":-1,"10812":0,"10813":-1,"10814":3205,"10815":-1,"10816":2208,"10817":0,"10818":0,"10819":0,"10820":-1,"10821":0,"10822":2815,"10823":0,"10824":-1,"10825":0,"10826":-1,"10827":-1,"10828":273,"10829":-1,"10830":-1,"10831":0,"10832":0,"10833":0,"10834":-1,"10835":-1,"10836":-1,"10837":142,"10838":-1,"10839":-1,"10840":0,"10841":0,"10842":-1,"10843":3307,"10844":3920,"10845":3563,"10846":0,"10847":-1,"10848":0,"10849":-1,"10850":2326,"10851":43,"10852":-1,"10853":0,"10854":-1,"10855":0,"10856":0,"10857":3460,"10858":3325,"10859":-1,"10860":0,"10861":-1,"10862":-1,"10863":0,"10864":41,"10865":0,"10866":-1,"10867":0,"10868":4014,"10869":-1,"10870":0,"10871":3887,"10872":-1,"10873":0,"10874":3459,"10875":-1,"10876":0,"10877":2547,"10878":2470,"10879":-1,"10880":0,"10881":-1,"10882":0,"10883":0,"10884":0,"10885":0,"10886":1954,"10887":0,"10888":-1,"10889":-1,"10890":0,"10891":216,"10892":3122,"10893":3814,"10894":-1,"10895":0,"10896":2650,"10897":3070,"10898":-1,"10899":0,"10900":0,"10901":0,"10902":0,"10903":3782,"10904":0,"10905":-1,"10906":0,"10907":0,"10908":0,"10909":-1,"10910":0,"10911":2918,"10912":-1,"10913":-1,"10914":0,"10915":0,"10916":-1,"10917":-1,"10918":0,"10919":0,"10920":3572,"10921":0,"10922":0,"10923":290,"10924":-1,"10925":-1,"10926":76,"10927":2040,"10928":-1,"10929":-1,"10930":0,"10931":0,"10932":0,"10933":-1,"10934":0,"10935":409,"10936":3756,"10937":1816,"10938":0,"10939":0,"10940":-1,"10941":3696,"10942":2030,"10943":1792,"10944":0,"10945":-1,"10946":0,"10947":0,"10948":0,"10949":0,"10950":0,"10951":3314,"10952":0,"10953":-1,"10954":0,"10955":-1,"10956":2881,"10957":0,"10958":-1,"10959":-1,"10960":0,"10961":-1,"10962":2676,"10963":2349,"10964":-1,"10965":3499,"10966":-1,"10967":0,"10968":-1,"10969":-1,"10970":2240,"10971":-1,"10972":-1,"10973":-1,"10974":-1,"10975":0,"10976":-1,"10977":-1,"10978":-1,"10979":0,"10980":2459,"10981":-1,"10982":4018,"10983":0,"10984":0,"10985":-1,"10986":0,"10987":243,"10988":0,"10989":2432,"10990":-1,"10991":-1,"10992":2326,"10993":0,"10994":0,"10995":-1,"10996":0,"10997":-1,"10998":2980,"10999":-1,"11000":0,"11001":29,"11002":3376,"11003":-1,"11004":0,"11005":-1,"11006":0,"11007":-1,"11008":0,"11009":0,"11010":3409,"11011":-1,"11012":0,"11013":0,"11014":-1,"11015":0,"11016":2314,"11017":-1,"11018":340,"11019":0,"11020":-1,"11021":1962,"11022":0,"11023":0,"11024":-1,"11025":-1,"11026":-1,"11027":0,"11028":2353,"11029":-1,"11030":0,"11031":-1,"11032":2230,"11033":0,"11034":-1,"11035":112,"11036":0,"11037":0,"11038":34,"11039":0,"11040":-1,"11041":-1,"11042":-1,"11043":2362,"11044":-1,"11045":191,"11046":307,"11047":-1,"11048":-1,"11049":0,"11050":-1,"11051":0,"11052":3765,"11053":3021,"11054":202,"11055":-1,"11056":2430,"11057":-1,"11058":-1,"11059":-1,"11060":3878,"11061":-1,"11062":-1,"11063":-1,"11064":-1,"11065":0,"11066":-1,"11067":0,"11068":1840,"11069":-1,"11070":0,"11071":-1,"11072":-1,"11073":0,"11074":3063,"11075":0,"11076":2503,"11077":2544,"11078":-1,"11079":-1,"11080":115,"11081":-1,"11082":0,"11083":-1,"11084":-1,"11085":-1,"11086":0,"11087":-1,"11088":0,"11089":-1,"11090":-1,"11091":0,"11092":3088,"11093":0,"11094":-1,"11095":0,"11096":-1,"11097":0,"11098":0,"11099":-1,"11100":0,"11101":336,"11102":-1,"11103":3391,"11104":-1,"11105":-1,"11106":105,"11107":0,"11108":0,"11109":2235,"11110":3432,"11111":3588,"11112":-1,"11113":0,"11114":-1,"11115":-1,"11116":2417,"11117":3371,"11118":-1,"11119":3062,"11120":0,"11121":-1,"11122":0,"11123":0,"11124":0,"11125":0,"11126":-1,"11127":0,"11128":3938,"11129":-1,"11130":410,"11131":0,"11132":2189,"11133":0,"11134":0,"11135":0,"11136":3957,"11137":3367,"11138":0,"11139":0,"11140":-1,"11141":0,"11142":-1,"11143":2368,"11144":0,"11145":0,"11146":0,"11147":2518,"11148":0,"11149":-1,"11150":1844,"11151":0,"11152":3290,"11153":0,"11154":3844,"11155":3038,"11156":-1,"11157":0,"11158":0,"11159":-1,"11160":0,"11161":0,"11162":0,"11163":-1,"11164":0,"11165":0,"11166":-1,"11167":0,"11168":0,"11169":0,"11170":-1,"11171":0,"11172":0,"11173":-1,"11174":2056,"11175":3782,"11176":-1,"11177":2995,"11178":3915,"11179":2344,"11180":0,"11181":2342,"11182":-1,"11183":-1,"11184":0,"11185":0,"11186":-1,"11187":3809,"11188":3870,"11189":0,"11190":1930,"11191":90,"11192":-1,"11193":-1,"11194":-1,"11195":3025,"11196":0,"11197":0,"11198":-1,"11199":0,"11200":-1,"11201":-1,"11202":0,"11203":0,"11204":2810,"11205":122,"11206":0,"11207":-1,"11208":0,"11209":2490,"11210":2195,"11211":0,"11212":0,"11213":-1,"11214":-1,"11215":-1,"11216":-1,"11217":0,"11218":3616,"11219":-1,"11220":0,"11221":0,"11222":0,"11223":98,"11224":2674,"11225":0,"11226":0,"11227":-1,"11228":0,"11229":-1,"11230":2864,"11231":3861,"11232":0,"11233":2542,"11234":0,"11235":0,"11236":-1,"11237":2947,"11238":0,"11239":0,"11240":0,"11241":0,"11242":-1,"11243":-1,"11244":0,"11245":0,"11246":2412,"11247":0,"11248":-1,"11249":307,"11250":-1,"11251":0,"11252":0,"11253":0,"11254":-1,"11255":3357,"11256":-1,"11257":3501,"11258":-1,"11259":0,"11260":0,"11261":0,"11262":0,"11263":0,"11264":0,"11265":2113,"11266":-1,"11267":2156,"11268":-1,"11269":0,"11270":-1,"11271":0,"11272":-1,"11273":2178,"11274":-1,"11275":3009,"11276":0,"11277":-1,"11278":-1,"11279":0,"11280":-1,"11281":0,"11282":-1,"11283":3977,"11284":0,"11285":-1,"11286":-1,"11287":2036,"11288":0,"11289":0,"11290":0,"11291":-1,"11292":3873,"11293":0,"11294":2889,"11295":3171,"11296":-1,"11297":-1,"11298":0,"11299":-1,"11300":0,"11301":2290,"11302":0,"11303":2385,"11304":0,"11305":3205,"11306":0,"11307":-1,"11308":-1,"11309":3969,"11310":-1,"11311":-1,"11312":0,"11313":3521,"11314":2159,"11315":-1,"11316":3543,"11317":0,"11318":0,"11319":0,"11320":0,"11321":-1,"11322":0,"11323":2773,"11324":-1,"11325":2547,"11326":-1,"11327":0,"11328":-1,"11329":-1,"11330":0,"11331":139,"11332":72,"11333":2653,"11334":0,"11335":-1,"11336":-1,"11337":-1,"11338":0,"11339":-1,"11340":0,"11341":-1,"11342":-1,"11343":3463,"11344":0,"11345":2789,"11346":0,"11347":2505,"11348":0,"11349":-1,"11350":-1,"11351":0,"11352":361,"11353":0,"11354":3076,"11355":0,"11356":0,"11357":0,"11358":0,"11359":0,"11360":-1,"11361":-1,"11362":0,"11363":0,"11364":0,"11365":0,"11366":0,"11367":2783,"11368":0,"11369":0,"11370":1828,"11371":0,"11372":0,"11373":0,"11374":0,"11375":-1,"11376":3182,"11377":3210,"11378":0,"11379":0,"11380":-1,"11381":3972,"11382":-1,"11383":1990,"11384":2255,"11385":0,"11386":0,"11387":0,"11388":-1,"11389":-1,"11390":0,"11391":0,"11392":1972,"11393":2364,"11394":3653,"11395":-1,"11396":0,"11397":3342,"11398":0,"11399":0,"11400":303,"11401":2107,"11402":-1,"11403":0,"11404":0,"11405":3582,"11406":0,"11407":-1,"11408":3486,"11409":-1,"11410":-1,"11411":0,"11412":3514,"11413":2331,"11414":-1,"11415":-1,"11416":0,"11417":0,"11418":0,"11419":2683,"11420":0,"11421":0,"11422":0,"11423":0,"11424":-1,"11425":0,"11426":-1,"11427":3167,"11428":-1,"11429":347,"11430":0,"11431":3592,"11432":0,"11433":2541,"11434":0,"11435":3380,"11436":2486,"11437":-1,"11438":-1,"11439":0,"11440":2531,"11441":3163,"11442":-1,"11443":2736,"11444":-1,"11445":0,"11446":-1,"11447":0,"11448":0,"11449":2040,"11450":3292,"11451":-1,"11452":0,"11453":-1,"11454":0,"11455":0,"11456":-1,"11457":0,"11458":2986,"11459":3631,"11460":0,"11461":0,"11462":-1,"11463":0,"11464":3034,"11465":0,"11466":0,"11467":0,"11468":0,"11469":0,"11470":-1,"11471":-1,"11472":-1,"11473":-1,"11474":-1,"11475":3116,"11476":87,"11477":0,"11478":0,"11479":186,"11480":0,"11481":0,"11482":-1,"11483":0,"11484":0,"11485":-1,"11486":0,"11487":252,"11488":1872,"11489":0,"11490":-1,"11491":-1,"11492":0,"11493":-1,"11494":0,"11495":2060,"11496":453,"11497":0,"11498":0,"11499":1969,"11500":0,"11501":1925,"11502":0,"11503":0,"11504":3369,"11505":0,"11506":0,"11507":0,"11508":3485,"11509":-1,"11510":3600,"11511":-1,"11512":3070,"11513":204,"11514":0,"11515":-1,"11516":0,"11517":-1,"11518":3539,"11519":0,"11520":-1,"11521":0,"11522":0,"11523":2440,"11524":0,"11525":0,"11526":-1,"11527":0,"11528":-1,"11529":0,"11530":3683,"11531":2869,"11532":2391,"11533":0,"11534":-1,"11535":0,"11536":-1,"11537":3190,"11538":-1,"11539":3123,"11540":0,"11541":-1,"11542":0,"11543":3041,"11544":-1,"11545":3013,"11546":-1,"11547":0,"11548":0,"11549":0,"11550":0,"11551":0,"11552":0,"11553":0,"11554":0,"11555":-1,"11556":0,"11557":454,"11558":393,"11559":0,"11560":1866,"11561":-1,"11562":0,"11563":-1,"11564":-1,"11565":-1,"11566":0,"11567":-1,"11568":0,"11569":0,"11570":3490,"11571":2689,"11572":0,"11573":3754,"11574":-1,"11575":-1,"11576":0,"11577":-1,"11578":0,"11579":0,"11580":0,"11581":2291,"11582":-1,"11583":0,"11584":-1,"11585":-1,"11586":2994,"11587":3104,"11588":-1,"11589":7,"11590":0,"11591":0,"11592":-1,"11593":-1,"11594":-1,"11595":0,"11596":3063,"11597":-1,"11598":0,"11599":0,"11600":3707,"11601":0,"11602":0,"11603":2913,"11604":-1,"11605":3106,"11606":0,"11607":0,"11608":-1,"11609":0,"11610":0,"11611":2863,"11612":-1,"11613":-1,"11614":-1,"11615":0,"11616":0,"11617":2394,"11618":0,"11619":-1,"11620":0,"11621":0,"11622":222,"11623":3305,"11624":-1,"11625":-1,"11626":-1,"11627":4021,"11628":-1,"11629":0,"11630":-1,"11631":3206,"11632":1981,"11633":0,"11634":3988,"11635":3677,"11636":2025,"11637":0,"11638":0,"11639":0,"11640":-1,"11641":0,"11642":2751,"11643":0,"11644":0,"11645":-1,"11646":2924,"11647":-1,"11648":0,"11649":0,"11650":-1,"11651":0,"11652":0,"11653":0,"11654":-1,"11655":0,"11656":0,"11657":0,"11658":0,"11659":-1,"11660":-1,"11661":0,"11662":0,"11663":0,"11664":-1,"11665":0,"11666":0,"11667":-1,"11668":-1,"11669":-1,"11670":-1,"11671":0,"11672":-1,"11673":-1,"11674":0,"11675":441,"11676":-1,"11677":0,"11678":3478,"11679":0,"11680":2886,"11681":0,"11682":0,"11683":0,"11684":0,"11685":-1,"11686":3542,"11687":-1,"11688":-1,"11689":0,"11690":2302,"11691":0,"11692":-1,"11693":-1,"11694":0,"11695":-1,"11696":2542,"11697":-1,"11698":0,"11699":2602,"11700":0,"11701":-1,"11702":1835,"11703":0,"11704":0,"11705":0,"11706":3484,"11707":-1,"11708":-1,"11709":-1,"11710":0,"11711":0,"11712":-1,"11713":0,"11714":2988,"11715":0,"11716":2239,"11717":0,"11718":-1,"11719":0,"11720":-1,"11721":2278,"11722":3808,"11723":2395,"11724":290,"11725":0,"11726":0,"11727":0,"11728":-1,"11729":-1,"11730":0,"11731":-1,"11732":-1,"11733":0,"11734":3200,"11735":-1,"11736":2234,"11737":3281,"11738":1776,"11739":0,"11740":-1,"11741":0,"11742":-1,"11743":0,"11744":488,"11745":0,"11746":3100,"11747":0,"11748":0,"11749":-1,"11750":0,"11751":-1,"11752":2982,"11753":2808,"11754":0,"11755":315,"11756":-1,"11757":3222,"11758":0,"11759":-1,"11760":0,"11761":-1,"11762":0,"11763":292,"11764":-1,"11765":0,"11766":0,"11767":-1,"11768":-1,"11769":0,"11770":0,"11771":0,"11772":0,"11773":0,"11774":0,"11775":-1,"11776":-1,"11777":-1,"11778":0,"11779":0,"11780":0,"11781":-1,"11782":2090,"11783":0,"11784":-1,"11785":-1,"11786":-1,"11787":-1,"11788":0,"11789":-1,"11790":2952,"11791":3181,"11792":0,"11793":0,"11794":0,"11795":3403,"11796":0,"11797":0,"11798":-1,"11799":-1,"11800":3485,"11801":-1,"11802":0,"11803":0,"11804":0,"11805":-1,"11806":0,"11807":2052,"11808":0,"11809":-1,"11810":0,"11811":-1,"11812":-1,"11813":-1,"11814":3240,"11815":-1,"11816":1967,"11817":341,"11818":-1,"11819":0,"11820":0,"11821":3155,"11822":3269,"11823":0,"11824":3333,"11825":500,"11826":0,"11827":0,"11828":0,"11829":0,"11830":310,"11831":-1,"11832":0,"11833":480,"11834":0,"11835":-1,"11836":0,"11837":3563,"11838":3608,"11839":0,"11840":3236,"11841":0,"11842":0,"11843":-1,"11844":0,"11845":168,"11846":-1,"11847":2365,"11848":-1,"11849":0,"11850":3991,"11851":0,"11852":0,"11853":2791,"11854":0,"11855":0,"11856":0,"11857":2725,"11858":-1,"11859":3530,"11860":-1,"11861":-1,"11862":-1,"11863":0,"11864":0,"11865":0,"11866":0,"11867":-1,"11868":3511,"11869":3731,"11870":3073,"11871":-1,"11872":3092,"11873":2502,"11874":1793,"11875":-1,"11876":-1,"11877":-1,"11878":-1,"11879":0,"11880":-1,"11881":0,"11882":0,"11883":-1,"11884":-1,"11885":0,"11886":0,"11887":-1,"11888":3639,"11889":3762,"11890":-1,"11891":3064,"11892":-1,"11893":0,"11894":-1,"11895":0,"11896":0,"11897":-1,"11898":-1,"11899":-1,"11900":3769,"11901":0,"11902":-1,"11903":-1,"11904":2218,"11905":0,"11906":-1,"11907":-1,"11908":-1,"11909":3686,"11910":281,"11911":0,"11912":0,"11913":-1,"11914":0,"11915":-1,"11916":3184,"11917":314,"11918":-1,"11919":0,"11920":1849,"11921":0,"11922":308,"11923":-1,"11924":0,"11925":1875,"11926":0,"11927":0,"11928":0,"11929":-1,"11930":0,"11931":-1,"11932":0,"11933":-1,"11934":3883,"11935":-1,"11936":0,"11937":0,"11938":0,"11939":-1,"11940":0,"11941":0,"11942":-1,"11943":325,"11944":2566,"11945":2786,"11946":0,"11947":0,"11948":-1,"11949":0,"11950":-1,"11951":-1,"11952":0,"11953":393,"11954":0,"11955":0,"11956":0,"11957":0,"11958":-1,"11959":-1,"11960":0,"11961":-1,"11962":0,"11963":2585,"11964":-1,"11965":238,"11966":0,"11967":3345,"11968":-1,"11969":-1,"11970":9,"11971":0,"11972":-1,"11973":3077,"11974":219,"11975":0,"11976":0,"11977":-1,"11978":0,"11979":2572,"11980":3000,"11981":-1,"11982":3395,"11983":0,"11984":0,"11985":-1,"11986":0,"11987":3792,"11988":3942,"11989":-1,"11990":0,"11991":-1,"11992":0,"11993":0,"11994":-1,"11995":0,"11996":0,"11997":0,"11998":3043,"11999":3479,"12000":-1,"12001":-1,"12002":-1,"12003":3677,"12004":0,"12005":0,"12006":0,"12007":1884,"12008":2586,"12009":3943,"12010":0,"12011":0,"12012":0,"12013":2155,"12014":-1,"12015":1830,"12016":0,"12017":3541,"12018":-1,"12019":-1,"12020":3636,"12021":0,"12022":2843,"12023":0,"12024":-1,"12025":2402,"12026":-1,"12027":0,"12028":0,"12029":0,"12030":-1,"12031":0,"12032":0,"12033":-1,"12034":0,"12035":-1,"12036":-1,"12037":0,"12038":2274,"12039":0,"12040":0,"12041":3193,"12042":2842,"12043":0,"12044":0,"12045":2298,"12046":-1,"12047":-1,"12048":-1,"12049":-1,"12050":3305,"12051":0,"12052":0,"12053":2615,"12054":-1,"12055":3937,"12056":-1,"12057":0,"12058":2326,"12059":0,"12060":0,"12061":0,"12062":3252,"12063":0,"12064":0,"12065":-1,"12066":0,"12067":-1,"12068":-1,"12069":0,"12070":3030,"12071":0,"12072":3612,"12073":2479,"12074":0,"12075":0,"12076":0,"12077":0,"12078":46,"12079":3032,"12080":3341,"12081":0,"12082":-1,"12083":0,"12084":3427,"12085":0,"12086":-1,"12087":-1,"12088":-1,"12089":0,"12090":0,"12091":3783,"12092":-1,"12093":0,"12094":-1,"12095":-1,"12096":-1,"12097":0,"12098":0,"12099":-1,"12100":3076,"12101":-1,"12102":-1,"12103":0,"12104":-1,"12105":3642,"12106":-1,"12107":3435,"12108":0,"12109":3263,"12110":-1,"12111":0,"12112":0,"12113":-1,"12114":0,"12115":0,"12116":0,"12117":0,"12118":-1,"12119":0,"12120":-1,"12121":-1,"12122":0,"12123":-1,"12124":3340,"12125":170,"12126":0,"12127":-1,"12128":-1,"12129":1883,"12130":0,"12131":-1,"12132":110,"12133":0,"12134":-1,"12135":0,"12136":0,"12137":-1,"12138":0,"12139":3778,"12140":-1,"12141":0,"12142":2560,"12143":0,"12144":-1,"12145":0,"12146":-1,"12147":0,"12148":0,"12149":2689,"12150":3572,"12151":0,"12152":-1,"12153":-1,"12154":0,"12155":-1,"12156":3297,"12157":-1,"12158":0,"12159":0,"12160":0,"12161":-1,"12162":3145,"12163":0,"12164":2922,"12165":0,"12166":-1,"12167":0,"12168":2476,"12169":-1,"12170":2823,"12171":0,"12172":-1,"12173":-1,"12174":0,"12175":0,"12176":0,"12177":0,"12178":0,"12179":0,"12180":-1,"12181":3607,"12182":0,"12183":3784,"12184":-1,"12185":0,"12186":3125,"12187":3114,"12188":0,"12189":-1,"12190":1787,"12191":-1,"12192":1991,"12193":-1,"12194":0,"12195":2405,"12196":-1,"12197":-1,"12198":-1,"12199":0,"12200":-1,"12201":3628,"12202":-1,"12203":0,"12204":3706,"12205":-1,"12206":1993,"12207":0,"12208":0,"12209":-1,"12210":0,"12211":0,"12212":-1,"12213":-1,"12214":0,"12215":-1,"12216":0,"12217":2159,"12218":2430,"12219":0,"12220":0,"12221":0,"12222":2268,"12223":0,"12224":0,"12225":0,"12226":2776,"12227":-1,"12228":2057,"12229":3737,"12230":0,"12231":0,"12232":3565,"12233":-1,"12234":0,"12235":270,"12236":0,"12237":0,"12238":0,"12239":0,"12240":0,"12241":0,"12242":0,"12243":0,"12244":2287,"12245":-1,"12246":3299,"12247":0,"12248":3103,"12249":-1,"12250":3165,"12251":0,"12252":2043,"12253":3501,"12254":0,"12255":0,"12256":-1,"12257":230,"12258":4007,"12259":0,"12260":0,"12261":0,"12262":0,"12263":2163,"12264":0,"12265":0,"12266":3242,"12267":-1,"12268":-1,"12269":-1,"12270":1841,"12271":310,"12272":-1,"12273":0,"12274":2793,"12275":316,"12276":0,"12277":-1,"12278":503,"12279":-1,"12280":-1,"12281":-1,"12282":-1,"12283":0,"12284":-1,"12285":0,"12286":0,"12287":498,"12288":-1,"12289":3398,"12290":0,"12291":3686,"12292":3910,"12293":-1,"12294":91,"12295":-1,"12296":2487,"12297":2628,"12298":3233,"12299":0,"12300":-1,"12301":3543,"12302":0,"12303":0,"12304":2987,"12305":0,"12306":1892,"12307":0,"12308":134,"12309":3938,"12310":0,"12311":0,"12312":-1,"12313":2533,"12314":0,"12315":0,"12316":0,"12317":-1,"12318":-1,"12319":-1,"12320":0,"12321":-1,"12322":-1,"12323":0,"12324":-1,"12325":-1,"12326":3453,"12327":2515,"12328":0,"12329":3449,"12330":0,"12331":0,"12332":0,"12333":-1,"12334":0,"12335":0,"12336":0,"12337":-1,"12338":0,"12339":318,"12340":3063,"12341":0,"12342":1906,"12343":3490,"12344":-1,"12345":2359,"12346":0,"12347":2026,"12348":0,"12349":3271,"12350":0,"12351":-1,"12352":0,"12353":286,"12354":0,"12355":0,"12356":0,"12357":1959,"12358":3647,"12359":2913,"12360":0,"12361":0,"12362":-1,"12363":-1,"12364":2921,"12365":1780,"12366":-1,"12367":3808,"12368":-1,"12369":-1,"12370":3126,"12371":-1,"12372":0,"12373":0,"12374":-1,"12375":1970,"12376":-1,"12377":2249,"12378":0,"12379":-1,"12380":1964,"12381":3523,"12382":-1,"12383":0,"12384":0,"12385":0,"12386":3055,"12387":0,"12388":-1,"12389":0,"12390":-1,"12391":0,"12392":0,"12393":3640,"12394":0,"12395":-1,"12396":0,"12397":0,"12398":3241,"12399":-1,"12400":0,"12401":-1,"12402":0,"12403":-1,"12404":0,"12405":25,"12406":-1,"12407":0,"12408":2803,"12409":-1,"12410":-1,"12411":0,"12412":0,"12413":0,"12414":1909,"12415":0,"12416":-1,"12417":2046,"12418":3422,"12419":-1,"12420":2995,"12421":0,"12422":0,"12423":0,"12424":3473,"12425":-1,"12426":0,"12427":0,"12428":2139,"12429":177,"12430":81,"12431":-1,"12432":-1,"12433":0,"12434":0,"12435":0,"12436":0,"12437":3735,"12438":3323,"12439":2837,"12440":0,"12441":-1,"12442":-1,"12443":-1,"12444":0,"12445":0,"12446":3434,"12447":-1,"12448":-1,"12449":0,"12450":0,"12451":3866,"12452":3086,"12453":-1,"12454":3050,"12455":-1,"12456":156,"12457":-1,"12458":-1,"12459":-1,"12460":2842,"12461":0,"12462":4026,"12463":-1,"12464":0,"12465":3776,"12466":-1,"12467":-1,"12468":0,"12469":0,"12470":0,"12471":0,"12472":0,"12473":-1,"12474":3794,"12475":2156,"12476":-1,"12477":0,"12478":-1,"12479":0,"12480":2273,"12481":0,"12482":-1,"12483":-1,"12484":0,"12485":0,"12486":2730,"12487":2360,"12488":3949,"12489":0,"12490":-1,"12491":0,"12492":0,"12493":0,"12494":2721,"12495":0,"12496":0,"12497":0,"12498":3813,"12499":0,"12500":-1,"12501":2512,"12502":334,"12503":0,"12504":0,"12505":0,"12506":0,"12507":0,"12508":0,"12509":478,"12510":-1,"12511":-1,"12512":0,"12513":0,"12514":2866,"12515":0,"12516":-1,"12517":0,"12518":0,"12519":0,"12520":-1,"12521":132,"12522":-1,"12523":459,"12524":0,"12525":2692,"12526":2294,"12527":0,"12528":0,"12529":-1,"12530":3915,"12531":-1,"12532":-1,"12533":0,"12534":0,"12535":0,"12536":-1,"12537":0,"12538":0,"12539":-1,"12540":0,"12541":0,"12542":0,"12543":3453,"12544":-1,"12545":2363,"12546":-1,"12547":1975,"12548":0,"12549":0,"12550":3288,"12551":0,"12552":0,"12553":0,"12554":-1,"12555":0,"12556":-1,"12557":-1,"12558":-1,"12559":-1,"12560":0,"12561":2454,"12562":0,"12563":3289,"12564":0,"12565":-1,"12566":2588,"12567":77,"12568":0,"12569":-1,"12570":-1,"12571":0,"12572":-1,"12573":0,"12574":0,"12575":2541,"12576":-1,"12577":3366,"12578":0,"12579":2380,"12580":222,"12581":0,"12582":0,"12583":3877,"12584":-1,"12585":0,"12586":-1,"12587":3183,"12588":1965,"12589":1876,"12590":-1,"12591":2290,"12592":2748,"12593":-1,"12594":-1,"12595":0,"12596":-1,"12597":2996,"12598":0,"12599":3403,"12600":-1,"12601":2394,"12602":0,"12603":2275,"12604":3597,"12605":-1,"12606":0,"12607":0,"12608":2057,"12609":-1,"12610":0,"12611":3098,"12612":0,"12613":0,"12614":0,"12615":2137,"12616":0,"12617":0,"12618":324,"12619":-1,"12620":0,"12621":0,"12622":-1,"12623":-1,"12624":0,"12625":0,"12626":0,"12627":-1,"12628":3664,"12629":0,"12630":-1,"12631":-1,"12632":374,"12633":-1,"12634":0,"12635":0,"12636":0,"12637":2528,"12638":4029,"12639":0,"12640":0,"12641":0,"12642":0,"12643":3194,"12644":0,"12645":-1,"12646":0,"12647":0,"12648":0,"12649":0,"12650":-1,"12651":2584,"12652":-1,"12653":0,"12654":0,"12655":0,"12656":3184,"12657":3048,"12658":-1,"12659":-1,"12660":0,"12661":0,"12662":-1,"12663":2572,"12664":-1,"12665":0,"12666":-1,"12667":0,"12668":-1,"12669":-1,"12670":0,"12671":3,"12672":-1,"12673":0,"12674":-1,"12675":3627,"12676":0,"12677":3843,"12678":-1,"12679":-1,"12680":0,"12681":0,"12682":0,"12683":0,"12684":0,"12685":140,"12686":-1,"12687":0,"12688":0,"12689":0,"12690":0,"12691":-1,"12692":-1,"12693":-1,"12694":0,"12695":0,"12696":-1,"12697":-1,"12698":0,"12699":2378,"12700":-1,"12701":0,"12702":1822,"12703":2043,"12704":-1,"12705":0,"12706":-1,"12707":234,"12708":-1,"12709":0,"12710":0,"12711":0,"12712":0,"12713":3688,"12714":0,"12715":-1,"12716":0,"12717":0,"12718":3710,"12719":0,"12720":0,"12721":-1,"12722":-1,"12723":0,"12724":0,"12725":2606,"12726":0,"12727":-1,"12728":-1,"12729":-1,"12730":-1,"12731":-1,"12732":3868,"12733":2375,"12734":0,"12735":3817,"12736":0,"12737":-1,"12738":0,"12739":0,"12740":-1,"12741":0,"12742":-1,"12743":-1,"12744":3824,"12745":-1,"12746":0,"12747":0,"12748":-1,"12749":-1,"12750":-1,"12751":-1,"12752":0,"12753":2084,"12754":-1,"12755":0,"12756":3600,"12757":0,"12758":0,"12759":-1,"12760":-1,"12761":0,"12762":-1,"12763":-1,"12764":-1,"12765":-1,"12766":0,"12767":-1,"12768":-1,"12769":-1,"12770":-1,"12771":0,"12772":0,"12773":3053,"12774":0,"12775":0,"12776":-1,"12777":3666,"12778":2135,"12779":-1,"12780":-1,"12781":3271,"12782":0,"12783":0,"12784":492,"12785":0,"12786":0,"12787":0,"12788":-1,"12789":3765,"12790":0,"12791":0,"12792":3407,"12793":0,"12794":-1,"12795":0,"12796":0,"12797":-1,"12798":-1,"12799":3553,"12800":0,"12801":0,"12802":323,"12803":-1,"12804":0,"12805":0,"12806":-1,"12807":0,"12808":2518,"12809":0,"12810":-1,"12811":0,"12812":0,"12813":0,"12814":-1,"12815":0,"12816":-1,"12817":0,"12818":0,"12819":-1,"12820":0,"12821":0,"12822":-1,"12823":-1,"12824":3376,"12825":0,"12826":-1,"12827":0,"12828":2729,"12829":0,"12830":0,"12831":-1,"12832":148,"12833":-1,"12834":0,"12835":-1,"12836":189,"12837":-1,"12838":0,"12839":0,"12840":3849,"12841":4012,"12842":0,"12843":0,"12844":-1,"12845":2831,"12846":0,"12847":0,"12848":-1,"12849":-1,"12850":-1,"12851":2019,"12852":-1,"12853":0,"12854":0,"12855":0,"12856":0,"12857":0,"12858":186,"12859":2525,"12860":2605,"12861":3497,"12862":61,"12863":-1,"12864":0,"12865":254,"12866":0,"12867":3916,"12868":3715,"12869":0,"12870":2314,"12871":0,"12872":0,"12873":0,"12874":4007,"12875":0,"12876":0,"12877":0,"12878":275,"12879":-1,"12880":0,"12881":0,"12882":0,"12883":-1,"12884":0,"12885":-1,"12886":0,"12887":-1,"12888":0,"12889":0,"12890":-1,"12891":-1,"12892":0,"12893":0,"12894":0,"12895":0,"12896":0,"12897":-1,"12898":3333,"12899":0,"12900":0,"12901":0,"12902":-1,"12903":0,"12904":-1,"12905":-1,"12906":0,"12907":2652,"12908":0,"12909":0,"12910":0,"12911":-1,"12912":-1,"12913":0,"12914":2673,"12915":3060,"12916":-1,"12917":-1,"12918":0,"12919":0,"12920":-1,"12921":3286,"12922":0,"12923":1916,"12924":-1,"12925":3376,"12926":-1,"12927":0,"12928":-1,"12929":2334,"12930":3541,"12931":-1,"12932":0,"12933":0,"12934":-1,"12935":0,"12936":0,"12937":0,"12938":0,"12939":0,"12940":0,"12941":0,"12942":0,"12943":-1,"12944":0,"12945":2216,"12946":0,"12947":0,"12948":0,"12949":0,"12950":-1,"12951":2524,"12952":-1,"12953":330,"12954":0,"12955":2214,"12956":0,"12957":-1,"12958":-1,"12959":0,"12960":0,"12961":0,"12962":2167,"12963":0,"12964":2731,"12965":0,"12966":4018,"12967":503,"12968":0,"12969":0,"12970":3257,"12971":-1,"12972":-1,"12973":0,"12974":-1,"12975":0,"12976":351,"12977":0,"12978":-1,"12979":0,"12980":0,"12981":0,"12982":0,"12983":0,"12984":0,"12985":-1,"12986":-1,"12987":0,"12988":-1,"12989":0,"12990":0,"12991":-1,"12992":0,"12993":0,"12994":415,"12995":-1,"12996":0,"12997":0,"12998":0,"12999":0,"13000":-1,"13001":-1,"13002":20,"13003":-1,"13004":0,"13005":2361,"13006":0,"13007":133,"13008":-1,"13009":0,"13010":2449,"13011":0,"13012":0,"13013":2117,"13014":0,"13015":0,"13016":0,"13017":2474,"13018":-1,"13019":0,"13020":-1,"13021":-1,"13022":-1,"13023":0,"13024":3124,"13025":0,"13026":1847,"13027":0,"13028":-1,"13029":-1,"13030":0,"13031":-1,"13032":3638,"13033":0,"13034":0,"13035":3119,"13036":0,"13037":2707,"13038":2404,"13039":0,"13040":0,"13041":-1,"13042":0,"13043":0,"13044":-1,"13045":2427,"13046":0,"13047":0,"13048":-1,"13049":2066,"13050":0,"13051":-1,"13052":2756,"13053":0,"13054":-1,"13055":-1,"13056":0,"13057":0,"13058":0,"13059":-1,"13060":0,"13061":0,"13062":170,"13063":0,"13064":0,"13065":1925,"13066":2605,"13067":0,"13068":0,"13069":-1,"13070":2016,"13071":-1,"13072":0,"13073":2122,"13074":3861,"13075":-1,"13076":2902,"13077":187,"13078":0,"13079":-1,"13080":-1,"13081":0,"13082":-1,"13083":0,"13084":0,"13085":0,"13086":2738,"13087":0,"13088":2581,"13089":0,"13090":2861,"13091":0,"13092":497,"13093":0,"13094":0,"13095":3712,"13096":1995,"13097":2293,"13098":-1,"13099":0,"13100":2091,"13101":2727,"13102":2484,"13103":2120,"13104":0,"13105":-1,"13106":0,"13107":0,"13108":-1,"13109":0,"13110":-1,"13111":3645,"13112":3463,"13113":0,"13114":0,"13115":2944,"13116":2525,"13117":-1,"13118":0,"13119":3636,"13120":0,"13121":-1,"13122":-1,"13123":2380,"13124":2386,"13125":0,"13126":3098,"13127":0,"13128":-1,"13129":2856,"13130":0,"13131":0,"13132":-1,"13133":-1,"13134":3111,"13135":-1,"13136":-1,"13137":2801,"13138":0,"13139":-1,"13140":-1,"13141":3144,"13142":3938,"13143":2816,"13144":0,"13145":0,"13146":-1,"13147":-1,"13148":-1,"13149":0,"13150":-1,"13151":0,"13152":-1,"13153":-1,"13154":4027,"13155":0,"13156":2645,"13157":-1,"13158":0,"13159":0,"13160":0,"13161":0,"13162":0,"13163":0,"13164":0,"13165":236,"13166":1889,"13167":3918,"13168":2260,"13169":0,"13170":-1,"13171":0,"13172":-1,"13173":0,"13174":0,"13175":2447,"13176":0,"13177":-1,"13178":2819,"13179":0,"13180":-1,"13181":-1,"13182":-1,"13183":-1,"13184":2262,"13185":139,"13186":-1,"13187":-1,"13188":82,"13189":0,"13190":1939,"13191":-1,"13192":-1,"13193":2492,"13194":-1,"13195":0,"13196":-1,"13197":-1,"13198":0,"13199":0,"13200":3821,"13201":0,"13202":0,"13203":0,"13204":1889,"13205":-1,"13206":0,"13207":-1,"13208":-1,"13209":0,"13210":2390,"13211":0,"13212":0,"13213":337,"13214":0,"13215":-1,"13216":-1,"13217":-1,"13218":478,"13219":60,"13220":-1,"13221":0,"13222":0,"13223":3994,"13224":3759,"13225":0,"13226":-1,"13227":3769,"13228":0,"13229":-1,"13230":2200,"13231":3791,"13232":4052,"13233":-1,"13234":0,"13235":0,"13236":0,"13237":3742,"13238":0,"13239":2129,"13240":0,"13241":-1,"13242":2005,"13243":0,"13244":0,"13245":0,"13246":1888,"13247":3286,"13248":0,"13249":0,"13250":0,"13251":-1,"13252":0,"13253":0,"13254":0,"13255":-1,"13256":-1,"13257":-1,"13258":-1,"13259":0,"13260":3560,"13261":0,"13262":1907,"13263":0,"13264":-1,"13265":0,"13266":0,"13267":-1,"13268":-1,"13269":2886,"13270":-1,"13271":3786,"13272":0,"13273":0,"13274":0,"13275":2429,"13276":0,"13277":144,"13278":0,"13279":-1,"13280":2883,"13281":-1,"13282":0,"13283":2659,"13284":0,"13285":0,"13286":-1,"13287":0,"13288":-1,"13289":0,"13290":-1,"13291":0,"13292":0,"13293":2872,"13294":-1,"13295":-1,"13296":-1,"13297":-1,"13298":-1,"13299":3515,"13300":3128,"13301":0,"13302":-1,"13303":0,"13304":0,"13305":0,"13306":0,"13307":3449,"13308":-1,"13309":0,"13310":0,"13311":-1,"13312":3673,"13313":-1,"13314":0,"13315":0,"13316":-1,"13317":2445,"13318":3165,"13319":366,"13320":-1,"13321":2886,"13322":-1,"13323":2448,"13324":0,"13325":0,"13326":2470,"13327":0,"13328":0,"13329":-1,"13330":0,"13331":0,"13332":-1,"13333":-1,"13334":0,"13335":0,"13336":0,"13337":-1,"13338":-1,"13339":0,"13340":1915,"13341":0,"13342":3052,"13343":-1,"13344":0,"13345":-1,"13346":2476,"13347":-1,"13348":-1,"13349":-1,"13350":0,"13351":-1,"13352":-1,"13353":0,"13354":193,"13355":2930,"13356":2594,"13357":0,"13358":0,"13359":-1,"13360":0,"13361":0,"13362":3725,"13363":1824,"13364":-1,"13365":3854,"13366":-1,"13367":-1,"13368":364,"13369":-1,"13370":-1,"13371":-1,"13372":-1,"13373":112,"13374":0,"13375":-1,"13376":-1,"13377":0,"13378":-1,"13379":2150,"13380":1810,"13381":0,"13382":-1,"13383":0,"13384":462,"13385":0,"13386":0,"13387":0,"13388":0,"13389":-1,"13390":3679,"13391":0,"13392":0,"13393":0,"13394":-1,"13395":2385,"13396":2535,"13397":-1,"13398":0,"13399":0,"13400":-1,"13401":-1,"13402":0,"13403":0,"13404":4010,"13405":0,"13406":3187,"13407":-1,"13408":0,"13409":0,"13410":1856,"13411":-1,"13412":0,"13413":0,"13414":0,"13415":0,"13416":-1,"13417":-1,"13418":0,"13419":-1,"13420":1854,"13421":-1,"13422":0,"13423":-1,"13424":3887,"13425":0,"13426":0,"13427":429,"13428":-1,"13429":0,"13430":3821,"13431":0,"13432":-1,"13433":2577,"13434":-1,"13435":0,"13436":2982,"13437":3969,"13438":-1,"13439":2238,"13440":-1,"13441":0,"13442":-1,"13443":0,"13444":0,"13445":-1,"13446":0,"13447":0,"13448":3830,"13449":3152,"13450":-1,"13451":-1,"13452":0,"13453":0,"13454":4002,"13455":0,"13456":0,"13457":70,"13458":0,"13459":3818,"13460":3522,"13461":-1,"13462":-1,"13463":0,"13464":0,"13465":0,"13466":0,"13467":2455,"13468":0,"13469":2535,"13470":-1,"13471":-1,"13472":0,"13473":0,"13474":0,"13475":0,"13476":0,"13477":0,"13478":0,"13479":0,"13480":-1,"13481":-1,"13482":-1,"13483":0,"13484":36,"13485":0,"13486":-1,"13487":-1,"13488":2428,"13489":-1,"13490":0,"13491":0,"13492":0,"13493":0,"13494":0,"13495":-1,"13496":0,"13497":0,"13498":0,"13499":0,"13500":2976,"13501":-1,"13502":2087,"13503":0,"13504":1962,"13505":-1,"13506":0,"13507":3831,"13508":-1,"13509":2580,"13510":3957,"13511":2094,"13512":0,"13513":0,"13514":238,"13515":3562,"13516":0,"13517":2367,"13518":232,"13519":-1,"13520":-1,"13521":0,"13522":3383,"13523":3939,"13524":0,"13525":-1,"13526":0,"13527":0,"13528":0,"13529":0,"13530":-1,"13531":1811,"13532":-1,"13533":-1,"13534":-1,"13535":-1,"13536":0,"13537":0,"13538":3729,"13539":0,"13540":-1,"13541":-1,"13542":285,"13543":0,"13544":-1,"13545":4061,"13546":0,"13547":0,"13548":0,"13549":0,"13550":0,"13551":0,"13552":-1,"13553":0,"13554":0,"13555":0,"13556":-1,"13557":-1,"13558":0,"13559":2058,"13560":0,"13561":0,"13562":134,"13563":-1,"13564":-1,"13565":-1,"13566":0,"13567":0,"13568":-1,"13569":-1,"13570":-1,"13571":-1,"13572":-1,"13573":-1,"13574":0,"13575":-1,"13576":-1,"13577":200,"13578":-1,"13579":264,"13580":0,"13581":2856,"13582":1974,"13583":0,"13584":0,"13585":3649,"13586":0,"13587":0,"13588":0,"13589":-1,"13590":-1,"13591":-1,"13592":3974,"13593":17,"13594":0,"13595":127,"13596":0,"13597":-1,"13598":-1,"13599":3809,"13600":-1,"13601":0,"13602":0,"13603":-1,"13604":0,"13605":1940,"13606":0,"13607":-1,"13608":2770,"13609":3250,"13610":185,"13611":0,"13612":194,"13613":182,"13614":0,"13615":-1,"13616":0,"13617":0,"13618":0,"13619":0,"13620":2490,"13621":2447,"13622":-1,"13623":0,"13624":2012,"13625":2628,"13626":0,"13627":0,"13628":3486,"13629":0,"13630":0,"13631":0,"13632":-1,"13633":0,"13634":0,"13635":0,"13636":3457,"13637":-1,"13638":0,"13639":3182,"13640":-1,"13641":-1,"13642":3848,"13643":161,"13644":2004,"13645":-1,"13646":0,"13647":0,"13648":0,"13649":0,"13650":209,"13651":-1,"13652":0,"13653":0,"13654":0,"13655":-1,"13656":-1,"13657":3028,"13658":0,"13659":464,"13660":0,"13661":-1,"13662":0,"13663":-1,"13664":0,"13665":0,"13666":2165,"13667":0,"13668":-1,"13669":1797,"13670":-1,"13671":1892,"13672":-1,"13673":-1,"13674":2904,"13675":3467,"13676":0,"13677":3274,"13678":0,"13679":-1,"13680":0,"13681":1997,"13682":0,"13683":3460,"13684":-1,"13685":0,"13686":0,"13687":0,"13688":3953,"13689":2565,"13690":3042,"13691":0,"13692":-1,"13693":-1,"13694":3970,"13695":-1,"13696":0,"13697":-1,"13698":3,"13699":-1,"13700":0,"13701":0,"13702":-1,"13703":3809,"13704":-1,"13705":0,"13706":0,"13707":0,"13708":-1,"13709":-1,"13710":-1,"13711":0,"13712":1775,"13713":94,"13714":3856,"13715":-1,"13716":0,"13717":0,"13718":-1,"13719":3982,"13720":2131,"13721":325,"13722":-1,"13723":-1,"13724":4032,"13725":47,"13726":-1,"13727":-1,"13728":0,"13729":-1,"13730":0,"13731":-1,"13732":-1,"13733":0,"13734":7,"13735":0,"13736":-1,"13737":-1,"13738":0,"13739":3142,"13740":0,"13741":0,"13742":-1,"13743":0,"13744":-1,"13745":0,"13746":0,"13747":0,"13748":0,"13749":-1,"13750":3967,"13751":-1,"13752":-1,"13753":0,"13754":-1,"13755":0,"13756":0,"13757":0,"13758":3636,"13759":-1,"13760":-1,"13761":-1,"13762":0,"13763":0,"13764":0,"13765":0,"13766":0,"13767":3170,"13768":0,"13769":-1,"13770":-1,"13771":0,"13772":-1,"13773":0,"13774":-1,"13775":3149,"13776":-1,"13777":0,"13778":0,"13779":0,"13780":-1,"13781":0,"13782":-1,"13783":-1,"13784":3963,"13785":0,"13786":0,"13787":-1,"13788":1953,"13789":-1,"13790":0,"13791":0,"13792":-1,"13793":1873,"13794":0,"13795":0,"13796":3228,"13797":0,"13798":0,"13799":-1,"13800":0,"13801":2254,"13802":2294,"13803":3141,"13804":-1,"13805":0,"13806":-1,"13807":-1,"13808":0,"13809":2027,"13810":0,"13811":0,"13812":0,"13813":3523,"13814":-1,"13815":-1,"13816":2928,"13817":0,"13818":2889,"13819":3769,"13820":3550,"13821":-1,"13822":-1,"13823":-1,"13824":-1,"13825":0,"13826":-1,"13827":-1,"13828":-1,"13829":-1,"13830":0,"13831":0,"13832":0,"13833":2545,"13834":0,"13835":0,"13836":350,"13837":0,"13838":2613,"13839":-1,"13840":0,"13841":0,"13842":1983,"13843":-1,"13844":0,"13845":-1,"13846":-1,"13847":-1,"13848":-1,"13849":3276,"13850":3600,"13851":0,"13852":-1,"13853":0,"13854":2227,"13855":2448,"13856":3981,"13857":-1,"13858":-1,"13859":-1,"13860":-1,"13861":3812,"13862":-1,"13863":-1,"13864":0,"13865":500,"13866":3186,"13867":-1,"13868":0,"13869":0,"13870":0,"13871":-1,"13872":3195,"13873":1826,"13874":2299,"13875":3629,"13876":1831,"13877":-1,"13878":-1,"13879":-1,"13880":0,"13881":0,"13882":292,"13883":-1,"13884":-1,"13885":0,"13886":3643,"13887":0,"13888":0,"13889":124,"13890":0,"13891":0,"13892":3543,"13893":0,"13894":-1,"13895":2992,"13896":1969,"13897":3946,"13898":0,"13899":3504,"13900":0,"13901":3960,"13902":3051,"13903":0,"13904":0,"13905":0,"13906":-1,"13907":0,"13908":-1,"13909":-1,"13910":-1,"13911":0,"13912":-1,"13913":0,"13914":-1,"13915":0,"13916":0,"13917":0,"13918":-1,"13919":-1,"13920":0,"13921":-1,"13922":466,"13923":0,"13924":0,"13925":0,"13926":0,"13927":2082,"13928":-1,"13929":-1,"13930":2381,"13931":0,"13932":2355,"13933":3071,"13934":0,"13935":-1,"13936":-1,"13937":0,"13938":-1,"13939":-1,"13940":0,"13941":-1,"13942":0,"13943":0,"13944":0,"13945":0,"13946":3911,"13947":2921,"13948":0,"13949":0,"13950":-1,"13951":0,"13952":-1,"13953":0,"13954":0,"13955":-1,"13956":-1,"13957":2129,"13958":2634,"13959":488,"13960":0,"13961":0,"13962":0,"13963":0,"13964":2752,"13965":0,"13966":-1,"13967":0,"13968":0,"13969":0,"13970":0,"13971":-1,"13972":3284,"13973":0,"13974":0,"13975":0,"13976":2423,"13977":0,"13978":-1,"13979":330,"13980":-1,"13981":3791,"13982":0,"13983":0,"13984":0,"13985":0,"13986":0,"13987":0,"13988":15,"13989":-1,"13990":3038,"13991":-1,"13992":0,"13993":-1,"13994":3541,"13995":0,"13996":0,"13997":-1,"13998":0,"13999":2111,"14000":0,"14001":0,"14002":-1,"14003":0,"14004":-1,"14005":-1,"14006":0,"14007":-1,"14008":2415,"14009":0,"14010":0,"14011":-1,"14012":0,"14013":-1,"14014":0,"14015":2280,"14016":83,"14017":124,"14018":2417,"14019":-1,"14020":0,"14021":-1,"14022":0,"14023":0,"14024":0,"14025":2544,"14026":2237,"14027":0,"14028":-1,"14029":0,"14030":2537,"14031":0,"14032":-1,"14033":0,"14034":2103,"14035":3919,"14036":-1,"14037":0,"14038":1805,"14039":-1,"14040":-1,"14041":0,"14042":0,"14043":0,"14044":-1,"14045":2362,"14046":0,"14047":-1,"14048":3297,"14049":2838,"14050":-1,"14051":0,"14052":0,"14053":0,"14054":0,"14055":0,"14056":0,"14057":0,"14058":-1,"14059":3053,"14060":0,"14061":0,"14062":0,"14063":-1,"14064":-1,"14065":2319,"14066":0,"14067":0,"14068":0,"14069":3631,"14070":0,"14071":0,"14072":0,"14073":0,"14074":-1,"14075":3190,"14076":-1,"14077":0,"14078":2708,"14079":0,"14080":-1,"14081":0,"14082":2656,"14083":0,"14084":-1,"14085":3330,"14086":0,"14087":3550,"14088":-1,"14089":2026,"14090":-1,"14091":0,"14092":-1,"14093":0,"14094":0,"14095":0,"14096":0,"14097":1795,"14098":0,"14099":3511,"14100":3196,"14101":2810,"14102":-1,"14103":0,"14104":0,"14105":0,"14106":3108,"14107":3865,"14108":0,"14109":0,"14110":-1,"14111":0,"14112":-1,"14113":0,"14114":2673,"14115":3497,"14116":0,"14117":1781,"14118":0,"14119":-1,"14120":0,"14121":0,"14122":0,"14123":-1,"14124":0,"14125":0,"14126":0,"14127":2815,"14128":1866,"14129":0,"14130":207,"14131":2952,"14132":240,"14133":406,"14134":-1,"14135":0,"14136":-1,"14137":1935,"14138":4008,"14139":-1,"14140":0,"14141":3929,"14142":2421,"14143":0,"14144":3896,"14145":0,"14146":1795,"14147":-1,"14148":0,"14149":0,"14150":2785,"14151":1920,"14152":-1,"14153":0,"14154":0,"14155":0,"14156":0,"14157":0,"14158":0,"14159":0,"14160":0,"14161":445,"14162":0,"14163":0,"14164":1982,"14165":0,"14166":-1,"14167":0,"14168":-1,"14169":3674,"14170":0,"14171":505,"14172":2336,"14173":0,"14174":-1,"14175":-1,"14176":0,"14177":-1,"14178":-1,"14179":-1,"14180":3848,"14181":3861,"14182":2169,"14183":0,"14184":0,"14185":0,"14186":0,"14187":-1,"14188":0,"14189":0,"14190":0,"14191":0,"14192":0,"14193":0,"14194":0,"14195":-1,"14196":0,"14197":0,"14198":0,"14199":-1,"14200":3745,"14201":2052,"14202":0,"14203":111,"14204":-1,"14205":0,"14206":-1,"14207":-1,"14208":3701,"14209":4017,"14210":0,"14211":2423,"14212":0,"14213":-1,"14214":0,"14215":3897,"14216":2714,"14217":-1,"14218":0,"14219":0,"14220":0,"14221":3240,"14222":17,"14223":0,"14224":2320,"14225":0,"14226":1800,"14227":0,"14228":0,"14229":0,"14230":-1,"14231":0,"14232":-1,"14233":0,"14234":0,"14235":-1,"14236":0,"14237":0,"14238":0,"14239":2941,"14240":511,"14241":0,"14242":-1,"14243":-1,"14244":3842,"14245":0,"14246":0,"14247":0,"14248":2126,"14249":0,"14250":0,"14251":0,"14252":0,"14253":0,"14254":-1,"14255":3127,"14256":0,"14257":0,"14258":0,"14259":-1,"14260":-1,"14261":-1,"14262":3965,"14263":-1,"14264":-1,"14265":-1,"14266":-1,"14267":-1,"14268":0,"14269":0,"14270":2630,"14271":0,"14272":3182,"14273":0,"14274":0,"14275":0,"14276":-1,"14277":0,"14278":-1,"14279":0,"14280":-1,"14281":0,"14282":90,"14283":2084,"14284":0,"14285":-1,"14286":114,"14287":0,"14288":0,"14289":0,"14290":2682,"14291":357,"14292":3,"14293":3757,"14294":3913,"14295":0,"14296":0,"14297":-1,"14298":-1,"14299":0,"14300":0,"14301":0,"14302":0,"14303":0,"14304":-1,"14305":-1,"14306":2002,"14307":0,"14308":0,"14309":-1,"14310":0,"14311":0,"14312":-1,"14313":-1,"14314":0,"14315":0,"14316":0,"14317":2936,"14318":3031,"14319":0,"14320":-1,"14321":-1,"14322":0,"14323":0,"14324":2355,"14325":0,"14326":-1,"14327":0,"14328":3276,"14329":2446,"14330":0,"14331":1949,"14332":2293,"14333":2209,"14334":0,"14335":3508,"14336":-1,"14337":2826,"14338":0,"14339":-1,"14340":-1,"14341":2828,"14342":0,"14343":-1,"14344":-1,"14345":0,"14346":0,"14347":109,"14348":336,"14349":0,"14350":0,"14351":3916,"14352":-1,"14353":0,"14354":0,"14355":2914,"14356":0,"14357":0,"14358":0,"14359":0,"14360":0,"14361":0,"14362":-1,"14363":-1,"14364":0,"14365":-1,"14366":0,"14367":2971,"14368":-1,"14369":-1,"14370":0,"14371":0,"14372":2030,"14373":2996,"14374":2239,"14375":-1,"14376":0,"14377":2354,"14378":-1,"14379":-1,"14380":0,"14381":0,"14382":33,"14383":-1,"14384":-1,"14385":0,"14386":0,"14387":2616,"14388":-1,"14389":0,"14390":0,"14391":0,"14392":-1,"14393":-1,"14394":0,"14395":-1,"14396":3225,"14397":-1,"14398":-1,"14399":4021,"14400":-1,"14401":0,"14402":0,"14403":2158,"14404":3883,"14405":-1,"14406":0,"14407":1899,"14408":213,"14409":-1,"14410":2831,"14411":0,"14412":2605,"14413":-1,"14414":0,"14415":0,"14416":-1,"14417":378,"14418":0,"14419":0,"14420":0,"14421":2305,"14422":3774,"14423":0,"14424":-1,"14425":0,"14426":-1,"14427":3730,"14428":0,"14429":-1,"14430":1869,"14431":-1,"14432":0,"14433":0,"14434":3690,"14435":3902,"14436":0,"14437":-1,"14438":2432,"14439":0,"14440":-1,"14441":2472,"14442":0,"14443":-1,"14444":-1,"14445":3891,"14446":0,"14447":-1,"14448":3025,"14449":0,"14450":0,"14451":2843,"14452":2448,"14453":2635,"14454":2979,"14455":3372,"14456":0,"14457":4024,"14458":0,"14459":362,"14460":0,"14461":1919,"14462":0,"14463":-1,"14464":0,"14465":2725,"14466":0,"14467":0,"14468":0,"14469":0,"14470":-1,"14471":-1,"14472":2761,"14473":0,"14474":0,"14475":-1,"14476":0,"14477":-1,"14478":-1,"14479":0,"14480":-1,"14481":2390,"14482":2695,"14483":2134,"14484":-1,"14485":-1,"14486":2095,"14487":-1,"14488":0,"14489":3343,"14490":-1,"14491":-1,"14492":2827,"14493":3694,"14494":143,"14495":0,"14496":0,"14497":2458,"14498":1995,"14499":-1,"14500":0,"14501":0,"14502":0,"14503":-1,"14504":-1,"14505":0,"14506":0,"14507":-1,"14508":-1,"14509":0,"14510":-1,"14511":-1,"14512":-1,"14513":-1,"14514":2195,"14515":-1,"14516":0,"14517":2963,"14518":0,"14519":-1,"14520":2701,"14521":-1,"14522":0,"14523":-1,"14524":0,"14525":-1,"14526":0,"14527":0,"14528":410,"14529":-1,"14530":0,"14531":-1,"14532":-1,"14533":-1,"14534":0,"14535":-1,"14536":0,"14537":2444,"14538":0,"14539":2646,"14540":0,"14541":0,"14542":2286,"14543":-1,"14544":0,"14545":-1,"14546":0,"14547":1972,"14548":3122,"14549":2852,"14550":-1,"14551":0,"14552":-1,"14553":0,"14554":0,"14555":-1,"14556":3751,"14557":3442,"14558":0,"14559":0,"14560":-1,"14561":-1,"14562":-1,"14563":-1,"14564":0,"14565":3462,"14566":0,"14567":2908,"14568":3174,"14569":1818,"14570":-1,"14571":-1,"14572":3036,"14573":-1,"14574":2515,"14575":3755,"14576":0,"14577":0,"14578":248,"14579":0,"14580":0,"14581":0,"14582":0,"14583":0,"14584":-1,"14585":2541,"14586":-1,"14587":3996,"14588":0,"14589":0,"14590":0,"14591":283,"14592":0,"14593":3494,"14594":2768,"14595":-1,"14596":2891,"14597":3128,"14598":0,"14599":0,"14600":0,"14601":2591,"14602":0,"14603":0,"14604":-1,"14605":-1,"14606":0,"14607":-1,"14608":0,"14609":0,"14610":2307,"14611":0,"14612":0,"14613":0,"14614":0,"14615":2679,"14616":-1,"14617":3466,"14618":0,"14619":0,"14620":0,"14621":2411,"14622":-1,"14623":0,"14624":-1,"14625":0,"14626":-1,"14627":0,"14628":0,"14629":0,"14630":-1,"14631":-1,"14632":1904,"14633":-1,"14634":-1,"14635":-1,"14636":0,"14637":0,"14638":4026,"14639":0,"14640":0,"14641":0,"14642":-1,"14643":3840,"14644":-1,"14645":0,"14646":-1,"14647":243,"14648":0,"14649":0,"14650":0,"14651":-1,"14652":-1,"14653":0,"14654":0,"14655":0,"14656":0,"14657":0,"14658":3539,"14659":2773,"14660":0,"14661":0,"14662":3525,"14663":-1,"14664":-1,"14665":2251,"14666":0,"14667":0,"14668":0,"14669":1787,"14670":-1,"14671":3138,"14672":-1,"14673":0,"14674":0,"14675":0,"14676":-1,"14677":0,"14678":3581,"14679":0,"14680":-1,"14681":0,"14682":1802,"14683":-1,"14684":-1,"14685":0,"14686":-1,"14687":0,"14688":0,"14689":0,"14690":496,"14691":3503,"14692":-1,"14693":4010,"14694":1874,"14695":0,"14696":209,"14697":0,"14698":-1,"14699":0,"14700":0,"14701":0,"14702":-1,"14703":0,"14704":2564,"14705":0,"14706":-1,"14707":-1,"14708":0,"14709":-1,"14710":0,"14711":0,"14712":1992,"14713":2191,"14714":-1,"14715":-1,"14716":-1,"14717":0,"14718":0,"14719":2227,"14720":338,"14721":0,"14722":0,"14723":2119,"14724":3733,"14725":3241,"14726":-1,"14727":0,"14728":0,"14729":-1,"14730":-1,"14731":-1,"14732":-1,"14733":0,"14734":2212,"14735":2467,"14736":0,"14737":0,"14738":-1,"14739":0,"14740":0,"14741":-1,"14742":-1,"14743":0,"14744":0,"14745":-1,"14746":0,"14747":-1,"14748":0,"14749":0,"14750":-1,"14751":2463,"14752":1955,"14753":0,"14754":-1,"14755":-1,"14756":-1,"14757":-1,"14758":-1,"14759":-1,"14760":0,"14761":2023,"14762":-1,"14763":197,"14764":0,"14765":-1,"14766":-1,"14767":-1,"14768":-1,"14769":-1,"14770":2803,"14771":0,"14772":0,"14773":2329,"14774":-1,"14775":0,"14776":-1,"14777":0,"14778":-1,"14779":-1,"14780":0,"14781":2635,"14782":-1,"14783":114,"14784":0,"14785":255,"14786":1812,"14787":-1,"14788":0,"14789":0,"14790":0,"14791":0,"14792":0,"14793":1971,"14794":0,"14795":-1,"14796":0,"14797":0,"14798":2256,"14799":0,"14800":0,"14801":-1,"14802":3312,"14803":0,"14804":0,"14805":0,"14806":2124,"14807":2541,"14808":-1,"14809":0,"14810":424,"14811":3012,"14812":4057,"14813":0,"14814":0,"14815":-1,"14816":-1,"14817":-1,"14818":-1,"14819":0,"14820":0,"14821":3949,"14822":1813,"14823":283,"14824":4061,"14825":2611,"14826":-1,"14827":0,"14828":3480,"14829":-1,"14830":0,"14831":2198,"14832":3575,"14833":0,"14834":0,"14835":0,"14836":2495,"14837":3899,"14838":-1,"14839":0,"14840":-1,"14841":0,"14842":1903,"14843":-1,"14844":0,"14845":1920,"14846":0,"14847":0,"14848":0,"14849":-1,"14850":3087,"14851":0,"14852":-1,"14853":0,"14854":-1,"14855":2707,"14856":-1,"14857":-1,"14858":-1,"14859":-1,"14860":0,"14861":-1,"14862":2609,"14863":2289,"14864":-1,"14865":2163,"14866":0,"14867":2204,"14868":-1,"14869":-1,"14870":0,"14871":0,"14872":0,"14873":-1,"14874":0,"14875":0,"14876":2304,"14877":0,"14878":0,"14879":0,"14880":-1,"14881":0,"14882":2147,"14883":-1,"14884":-1,"14885":-1,"14886":0,"14887":0,"14888":0,"14889":0,"14890":0,"14891":-1,"14892":0,"14893":-1,"14894":116,"14895":-1,"14896":0,"14897":-1,"14898":0,"14899":-1,"14900":0,"14901":0,"14902":0,"14903":0,"14904":-1,"14905":3260,"14906":0,"14907":3583,"14908":1898,"14909":0,"14910":1990,"14911":-1,"14912":0,"14913":-1,"14914":0,"14915":-1,"14916":0,"14917":2303,"14918":0,"14919":-1,"14920":2424,"14921":0,"14922":0,"14923":0,"14924":0,"14925":0,"14926":2001,"14927":0,"14928":0,"14929":-1,"14930":3116,"14931":0,"14932":2587,"14933":1775,"14934":0,"14935":-1,"14936":-1,"14937":0,"14938":0,"14939":0,"14940":-1,"14941":2090,"14942":1808,"14943":0,"14944":0,"14945":0,"14946":1929,"14947":0,"14948":-1,"14949":0,"14950":2230,"14951":-1,"14952":3782,"14953":3242,"14954":3034,"14955":3986,"14956":-1,"14957":0,"14958":-1,"14959":0,"14960":0,"14961":0,"14962":0,"14963":3266,"14964":1934,"14965":-1,"14966":-1,"14967":-1,"14968":0,"14969":2395,"14970":-1,"14971":0,"14972":-1,"14973":-1,"14974":-1,"14975":3949,"14976":375,"14977":0,"14978":0,"14979":-1,"14980":-1,"14981":-1,"14982":499,"14983":4005,"14984":-1,"14985":-1,"14986":2864,"14987":1859,"14988":-1,"14989":0,"14990":343,"14991":0,"14992":1927,"14993":-1,"14994":-1,"14995":2565,"14996":0,"14997":-1,"14998":117,"14999":2704,"15000":0,"15001":-1,"15002":0,"15003":3357,"15004":-1,"15005":-1,"15006":0,"15007":-1,"15008":-1,"15009":-1,"15010":-1,"15011":3116,"15012":-1,"15013":-1,"15014":0,"15015":27,"15016":2339,"15017":1927,"15018":0,"15019":185,"15020":0,"15021":2187,"15022":0,"15023":-1,"15024":0,"15025":0,"15026":0,"15027":0,"15028":0,"15029":0,"15030":2894,"15031":159,"15032":-1,"15033":-1,"15034":3059,"15035":-1,"15036":0,"15037":0,"15038":0,"15039":0,"15040":-1,"15041":0,"15042":-1,"15043":0,"15044":0,"15045":-1,"15046":0,"15047":0,"15048":-1,"15049":2495,"15050":-1,"15051":0,"15052":0,"15053":0,"15054":-1,"15055":0,"15056":-1,"15057":303,"15058":1782,"15059":-1,"15060":0,"15061":-1,"15062":-1,"15063":3181,"15064":96,"15065":0,"15066":1831,"15067":-1,"15068":3375,"15069":3125,"15070":0,"15071":3913,"15072":0,"15073":-1,"15074":3757,"15075":0,"15076":0,"15077":-1,"15078":3361,"15079":-1,"15080":0,"15081":-1,"15082":0,"15083":-1,"15084":1848,"15085":0,"15086":0,"15087":0,"15088":2555,"15089":0,"15090":81,"15091":0,"15092":0,"15093":0,"15094":2292,"15095":3082,"15096":0,"15097":-1,"15098":0,"15099":387,"15100":-1,"15101":0,"15102":3686,"15103":0,"15104":3481,"15105":0,"15106":-1,"15107":-1,"15108":-1,"15109":-1,"15110":3602,"15111":-1,"15112":2171,"15113":0,"15114":1944,"15115":-1,"15116":3675,"15117":0,"15118":3934,"15119":0,"15120":0,"15121":0,"15122":-1,"15123":-1,"15124":3206,"15125":2268,"15126":0,"15127":0,"15128":-1,"15129":4027,"15130":2526,"15131":0,"15132":-1,"15133":506,"15134":2341,"15135":2569,"15136":0,"15137":2705,"15138":1885,"15139":2174,"15140":-1,"15141":-1,"15142":0,"15143":3654,"15144":-1,"15145":-1,"15146":2498,"15147":2621,"15148":0,"15149":-1,"15150":0,"15151":0,"15152":0,"15153":-1,"15154":-1,"15155":0,"15156":0,"15157":0,"15158":0,"15159":-1,"15160":2381,"15161":2299,"15162":124,"15163":0,"15164":0,"15165":-1,"15166":2506,"15167":-1,"15168":1864,"15169":2322,"15170":0,"15171":-1,"15172":2440,"15173":316,"15174":-1,"15175":0,"15176":0,"15177":0,"15178":2494,"15179":2026,"15180":0,"15181":0,"15182":23,"15183":-1,"15184":0,"15185":0,"15186":-1,"15187":3538,"15188":-1,"15189":-1,"15190":0,"15191":0,"15192":-1,"15193":0,"15194":171,"15195":-1,"15196":1784,"15197":-1,"15198":3277,"15199":0,"15200":2921,"15201":-1,"15202":3437,"15203":0,"15204":0,"15205":0,"15206":0,"15207":0,"15208":3715,"15209":3288,"15210":0,"15211":-1,"15212":-1,"15213":0,"15214":0,"15215":0,"15216":-1,"15217":0,"15218":3608,"15219":-1,"15220":3370,"15221":-1,"15222":0,"15223":-1,"15224":-1,"15225":-1,"15226":0,"15227":2605,"15228":0,"15229":-1,"15230":-1,"15231":2723,"15232":0,"15233":174,"15234":259,"15235":18,"15236":1824,"15237":0,"15238":0,"15239":1810,"15240":331,"15241":2194,"15242":-1,"15243":0,"15244":4041,"15245":0,"15246":0,"15247":-1,"15248":0,"15249":-1,"15250":-1,"15251":-1,"15252":-1,"15253":-1,"15254":-1,"15255":1984,"15256":-1,"15257":3410,"15258":-1,"15259":2549,"15260":-1,"15261":2836,"15262":2422,"15263":-1,"15264":-1,"15265":3243,"15266":0,"15267":0,"15268":0,"15269":-1,"15270":2800,"15271":0,"15272":0,"15273":0,"15274":0,"15275":0,"15276":-1,"15277":3800,"15278":0,"15279":0,"15280":0,"15281":-1,"15282":-1,"15283":0,"15284":0,"15285":0,"15286":3703,"15287":-1,"15288":2648,"15289":-1,"15290":-1,"15291":3299,"15292":-1,"15293":-1,"15294":0,"15295":-1,"15296":3906,"15297":0,"15298":2145,"15299":0,"15300":0,"15301":2679,"15302":-1,"15303":0,"15304":0,"15305":0,"15306":0,"15307":3072,"15308":-1,"15309":-1,"15310":0,"15311":0,"15312":82,"15313":278,"15314":-1,"15315":-1,"15316":0,"15317":0,"15318":2088,"15319":-1,"15320":0,"15321":0,"15322":0,"15323":3607,"15324":3414,"15325":-1,"15326":0,"15327":0,"15328":3793,"15329":0,"15330":0,"15331":0,"15332":0,"15333":0,"15334":-1,"15335":-1,"15336":0,"15337":-1,"15338":0,"15339":0,"15340":0,"15341":0,"15342":-1,"15343":0,"15344":-1,"15345":0,"15346":3783,"15347":-1,"15348":3682,"15349":0,"15350":0,"15351":0,"15352":0,"15353":3994,"15354":2234,"15355":0,"15356":0,"15357":-1,"15358":0,"15359":-1,"15360":-1,"15361":0,"15362":-1,"15363":0,"15364":2719,"15365":0,"15366":-1,"15367":0,"15368":0,"15369":0,"15370":0,"15371":-1,"15372":0,"15373":-1,"15374":0,"15375":-1,"15376":-1,"15377":0,"15378":-1,"15379":0,"15380":0,"15381":-1,"15382":197,"15383":-1,"15384":0,"15385":0,"15386":2166,"15387":-1,"15388":28,"15389":-1,"15390":0,"15391":-1,"15392":0,"15393":3833,"15394":0,"15395":-1,"15396":3252,"15397":-1,"15398":0,"15399":2357,"15400":-1,"15401":0,"15402":0,"15403":2102,"15404":3024,"15405":275,"15406":-1,"15407":167,"15408":0,"15409":0,"15410":-1,"15411":-1,"15412":0,"15413":325,"15414":-1,"15415":0,"15416":0,"15417":-1,"15418":1904,"15419":0,"15420":-1,"15421":0,"15422":2106,"15423":2942,"15424":0,"15425":2046,"15426":0,"15427":2249,"15428":-1,"15429":0,"15430":2088,"15431":2544,"15432":-1,"15433":0,"15434":-1,"15435":-1,"15436":-1,"15437":-1,"15438":2859,"15439":-1,"15440":0,"15441":2693,"15442":0,"15443":285,"15444":3791,"15445":-1,"15446":-1,"15447":3628,"15448":0,"15449":0,"15450":0,"15451":2789,"15452":2416,"15453":3087,"15454":-1,"15455":0,"15456":-1,"15457":3077,"15458":2277,"15459":3615,"15460":-1,"15461":2313,"15462":-1,"15463":3564,"15464":-1,"15465":2103,"15466":100,"15467":-1,"15468":2701,"15469":2020,"15470":0,"15471":0,"15472":3220,"15473":-1,"15474":-1,"15475":-1,"15476":-1,"15477":0,"15478":-1,"15479":-1,"15480":157,"15481":-1,"15482":3862,"15483":0,"15484":-1,"15485":-1,"15486":143,"15487":-1,"15488":0,"15489":0,"15490":-1,"15491":-1,"15492":0,"15493":0,"15494":0,"15495":-1,"15496":0,"15497":-1,"15498":-1,"15499":-1,"15500":2527,"15501":1857,"15502":2182,"15503":0,"15504":0,"15505":-1,"15506":0,"15507":0,"15508":0,"15509":-1,"15510":0,"15511":45,"15512":-1,"15513":0,"15514":1945,"15515":-1,"15516":7,"15517":2915,"15518":0,"15519":1805,"15520":-1,"15521":0,"15522":0,"15523":-1,"15524":0,"15525":-1,"15526":0,"15527":0,"15528":2474,"15529":-1,"15530":0,"15531":-1,"15532":3261,"15533":0,"15534":3125,"15535":456,"15536":-1,"15537":0,"15538":0,"15539":0,"15540":2677,"15541":3363,"15542":3259,"15543":-1,"15544":0,"15545":0,"15546":0,"15547":-1,"15548":0,"15549":0,"15550":-1,"15551":277,"15552":3708,"15553":2397,"15554":-1,"15555":0,"15556":0,"15557":3582,"15558":0,"15559":0,"15560":-1,"15561":45,"15562":4006,"15563":2829,"15564":390,"15565":-1,"15566":0,"15567":0,"15568":0,"15569":0,"15570":-1,"15571":3998,"15572":-1,"15573":3135,"15574":3798,"15575":0,"15576":3174,"15577":3248,"15578":2788,"15579":-1,"15580":0,"15581":-1,"15582":0,"15583":3408,"15584":0,"15585":-1,"15586":488,"15587":-1,"15588":2568,"15589":1989,"15590":3813,"15591":-1,"15592":0,"15593":0,"15594":426,"15595":0,"15596":-1,"15597":0,"15598":0,"15599":3223,"15600":0,"15601":0,"15602":0,"15603":-1,"15604":2859,"15605":0,"15606":0,"15607":-1,"15608":1945,"15609":0,"15610":0,"15611":0,"15612":-1,"15613":-1,"15614":3658,"15615":-1,"15616":-1,"15617":3879,"15618":0,"15619":0,"15620":-1,"15621":-1,"15622":0,"15623":0,"15624":3431,"15625":-1,"15626":0,"15627":-1,"15628":-1,"15629":-1,"15630":0,"15631":0,"15632":2209,"15633":0,"15634":-1,"15635":0,"15636":3997,"15637":-1,"15638":0,"15639":-1,"15640":0,"15641":2579,"15642":2607,"15643":0,"15644":0,"15645":0,"15646":-1,"15647":0,"15648":0,"15649":0,"15650":0,"15651":0,"15652":-1,"15653":0,"15654":3807,"15655":2047,"15656":-1,"15657":2788,"15658":3097,"15659":0,"15660":-1,"15661":0,"15662":0,"15663":-1,"15664":2900,"15665":0,"15666":0,"15667":0,"15668":0,"15669":323,"15670":0,"15671":-1,"15672":-1,"15673":0,"15674":0,"15675":48,"15676":3289,"15677":0,"15678":0,"15679":0,"15680":0,"15681":0,"15682":0,"15683":0,"15684":0,"15685":0,"15686":0,"15687":0,"15688":-1,"15689":0,"15690":0,"15691":-1,"15692":0,"15693":0,"15694":2758,"15695":-1,"15696":0,"15697":0,"15698":0,"15699":-1,"15700":0,"15701":-1,"15702":-1,"15703":-1,"15704":412,"15705":-1,"15706":3356,"15707":0,"15708":0,"15709":-1,"15710":453,"15711":-1,"15712":0,"15713":3437,"15714":2817,"15715":-1,"15716":-1,"15717":-1,"15718":0,"15719":-1,"15720":0,"15721":-1,"15722":0,"15723":-1,"15724":0,"15725":-1,"15726":480,"15727":0,"15728":0,"15729":0,"15730":0,"15731":-1,"15732":0,"15733":-1,"15734":3127,"15735":2662,"15736":0,"15737":0,"15738":1938,"15739":0,"15740":0,"15741":-1,"15742":3587,"15743":-1,"15744":300,"15745":0,"15746":2835,"15747":0,"15748":0,"15749":0,"15750":2593,"15751":0,"15752":0,"15753":0,"15754":2851,"15755":3273,"15756":-1,"15757":2408,"15758":-1,"15759":0,"15760":0,"15761":338,"15762":2446,"15763":0,"15764":0,"15765":-1,"15766":0,"15767":0,"15768":516,"15769":3332,"15770":1876,"15771":-1,"15772":-1,"15773":0,"15774":393,"15775":0,"15776":-1,"15777":0,"15778":0,"15779":-1,"15780":0,"15781":0,"15782":1856,"15783":-1,"15784":-1,"15785":0,"15786":0,"15787":0,"15788":3501,"15789":0,"15790":3052,"15791":0,"15792":-1,"15793":-1,"15794":-1,"15795":-1,"15796":0,"15797":0,"15798":-1,"15799":3337,"15800":3893,"15801":0,"15802":3174,"15803":0,"15804":0,"15805":2374,"15806":-1,"15807":-1,"15808":0,"15809":94,"15810":253,"15811":0,"15812":0,"15813":3822,"15814":3711,"15815":3597,"15816":0,"15817":0,"15818":70,"15819":-1,"15820":394,"15821":0,"15822":-1,"15823":-1,"15824":0,"15825":0,"15826":0,"15827":0,"15828":0,"15829":0,"15830":-1,"15831":2698,"15832":3611,"15833":0,"15834":-1,"15835":0,"15836":-1,"15837":0,"15838":0,"15839":-1,"15840":0,"15841":-1,"15842":0,"15843":2618,"15844":-1,"15845":-1,"15846":0,"15847":3386,"15848":-1,"15849":-1,"15850":0,"15851":0,"15852":3340,"15853":0,"15854":2400,"15855":3409,"15856":0,"15857":0,"15858":-1,"15859":0,"15860":-1,"15861":2598,"15862":-1,"15863":2802,"15864":-1,"15865":0,"15866":0,"15867":-1,"15868":-1,"15869":1857,"15870":0,"15871":-1,"15872":0,"15873":-1,"15874":0,"15875":0,"15876":242,"15877":0,"15878":0,"15879":0,"15880":0,"15881":0,"15882":-1,"15883":0,"15884":0,"15885":2669,"15886":-1,"15887":122,"15888":3266,"15889":245,"15890":0,"15891":2868,"15892":3550,"15893":176,"15894":-1,"15895":0,"15896":0,"15897":0,"15898":0,"15899":0,"15900":3111,"15901":-1,"15902":-1,"15903":0,"15904":-1,"15905":3012,"15906":-1,"15907":1846,"15908":-1,"15909":2267,"15910":0,"15911":0,"15912":-1,"15913":0,"15914":0,"15915":0,"15916":-1,"15917":0,"15918":-1,"15919":-1,"15920":-1,"15921":0,"15922":2935,"15923":0,"15924":0,"15925":0,"15926":0,"15927":-1,"15928":0,"15929":-1,"15930":458,"15931":-1,"15932":2229,"15933":2446,"15934":0,"15935":2365,"15936":0,"15937":-1,"15938":0,"15939":3923,"15940":0,"15941":-1,"15942":-1,"15943":0,"15944":0,"15945":0,"15946":0,"15947":-1,"15948":-1,"15949":446,"15950":-1,"15951":0,"15952":3441,"15953":-1,"15954":0,"15955":2982,"15956":0,"15957":-1,"15958":0,"15959":0,"15960":0,"15961":0,"15962":0,"15963":0,"15964":0,"15965":-1,"15966":-1,"15967":-1,"15968":0,"15969":0,"15970":-1,"15971":-1,"15972":0,"15973":0,"15974":0,"15975":0,"15976":0,"15977":0,"15978":1925,"15979":0,"15980":0,"15981":-1,"15982":-1,"15983":-1,"15984":-1,"15985":-1,"15986":0,"15987":0,"15988":0,"15989":0,"15990":0,"15991":0,"15992":3396,"15993":0,"15994":-1,"15995":-1,"15996":-1,"15997":-1,"15998":-1,"15999":0,"16000":0,"16001":0,"16002":0,"16003":-1,"16004":-1,"16005":0,"16006":0,"16007":2789,"16008":0,"16009":3361,"16010":3108,"16011":-1,"16012":0,"16013":302,"16014":-1,"16015":0,"16016":3477,"16017":2429,"16018":2692,"16019":3354,"16020":-1,"16021":-1,"16022":-1,"16023":-1,"16024":0,"16025":0,"16026":2243,"16027":-1,"16028":3099,"16029":2970,"16030":-1,"16031":0,"16032":0,"16033":0,"16034":0,"16035":2367,"16036":0,"16037":0,"16038":-1,"16039":0,"16040":3087,"16041":0,"16042":0,"16043":-1,"16044":-1,"16045":0,"16046":0,"16047":0,"16048":0,"16049":0,"16050":3375,"16051":-1,"16052":2195,"16053":273,"16054":1890,"16055":0,"16056":3961,"16057":0,"16058":3040,"16059":2063,"16060":-1,"16061":0,"16062":2563,"16063":3764,"16064":2284,"16065":-1,"16066":49,"16067":-1,"16068":3964,"16069":3815,"16070":3074,"16071":-1,"16072":0,"16073":3931,"16074":-1,"16075":0,"16076":0,"16077":0,"16078":0,"16079":0,"16080":3618,"16081":2882,"16082":0,"16083":0,"16084":-1,"16085":3513,"16086":-1,"16087":0,"16088":-1,"16089":0,"16090":0,"16091":0,"16092":59,"16093":0,"16094":0,"16095":0,"16096":0,"16097":0,"16098":-1,"16099":-1,"16100":0,"16101":0,"16102":0,"16103":0,"16104":-1,"16105":0,"16106":0,"16107":3736,"16108":-1,"16109":0,"16110":0,"16111":0,"16112":0,"16113":0,"16114":255,"16115":0,"16116":0,"16117":0,"16118":2210,"16119":0,"16120":0,"16121":-1,"16122":3059,"16123":-1,"16124":-1,"16125":0,"16126":-1,"16127":3877,"16128":-1,"16129":0,"16130":-1,"16131":0,"16132":3603,"16133":-1,"16134":142,"16135":0,"16136":0,"16137":0,"16138":2349,"16139":-1,"16140":0,"16141":0,"16142":-1,"16143":316,"16144":0,"16145":0,"16146":3372,"16147":2049,"16148":-1,"16149":-1,"16150":0,"16151":-1,"16152":0,"16153":-1,"16154":-1,"16155":0,"16156":17,"16157":0,"16158":0,"16159":0,"16160":-1,"16161":0,"16162":0,"16163":1951,"16164":2514,"16165":-1,"16166":-1,"16167":0,"16168":2287,"16169":0,"16170":0,"16171":-1,"16172":0,"16173":2713,"16174":350,"16175":-1,"16176":2412,"16177":0,"16178":-1,"16179":62,"16180":0,"16181":3861,"16182":-1,"16183":-1,"16184":0,"16185":-1,"16186":0,"16187":-1,"16188":0,"16189":0,"16190":-1,"16191":-1,"16192":0,"16193":0,"16194":-1,"16195":0,"16196":0,"16197":0,"16198":-1,"16199":2464,"16200":-1,"16201":0,"16202":0,"16203":-1,"16204":407,"16205":-1,"16206":3287,"16207":0,"16208":-1,"16209":277,"16210":-1,"16211":0,"16212":0,"16213":0,"16214":-1,"16215":0,"16216":0,"16217":-1,"16218":0,"16219":1857,"16220":-1,"16221":3800,"16222":0,"16223":0,"16224":0,"16225":524,"16226":-1,"16227":0,"16228":-1,"16229":-1,"16230":282,"16231":0,"16232":3762,"16233":3552,"16234":0,"16235":0,"16236":0,"16237":-1,"16238":-1,"16239":0,"16240":-1,"16241":0,"16242":3142,"16243":2540,"16244":-1,"16245":0,"16246":-1,"16247":2689,"16248":-1,"16249":-1,"16250":0,"16251":0,"16252":0,"16253":0,"16254":-1,"16255":2103,"16256":0,"16257":0,"16258":0,"16259":3620,"16260":0,"16261":-1,"16262":0,"16263":-1,"16264":-1,"16265":467,"16266":-1,"16267":0,"16268":0,"16269":4048,"16270":0,"16271":0,"16272":0,"16273":0,"16274":0,"16275":0,"16276":-1,"16277":-1,"16278":259,"16279":-1,"16280":0,"16281":0,"16282":3131,"16283":0,"16284":0,"16285":180,"16286":-1,"16287":0,"16288":1994,"16289":-1,"16290":0,"16291":0,"16292":-1,"16293":0,"16294":-1,"16295":3703,"16296":0,"16297":-1,"16298":-1,"16299":-1,"16300":0,"16301":-1,"16302":2168,"16303":3409,"16304":-1,"16305":0,"16306":0,"16307":-1,"16308":-1,"16309":2151,"16310":0,"16311":0,"16312":-1,"16313":1822,"16314":3124,"16315":-1,"16316":-1,"16317":0,"16318":0,"16319":0,"16320":-1,"16321":0,"16322":3134,"16323":-1,"16324":0,"16325":3459,"16326":-1,"16327":-1,"16328":0,"16329":-1,"16330":0,"16331":2269,"16332":0,"16333":0,"16334":0,"16335":2095,"16336":2978,"16337":0,"16338":120,"16339":4053,"16340":0,"16341":0,"16342":-1,"16343":0,"16344":1783,"16345":2310,"16346":-1,"16347":0,"16348":3849,"16349":-1,"16350":-1,"16351":0,"16352":0,"16353":3659,"16354":2777,"16355":-1,"16356":0,"16357":0,"16358":0,"16359":0,"16360":0,"16361":0,"16362":-1,"16363":0,"16364":2819,"16365":1857,"16366":-1,"16367":-1,"16368":2430,"16369":0,"16370":0,"16371":3790,"16372":0,"16373":0,"16374":2557,"16375":0,"16376":3158,"16377":-1,"16378":-1,"16379":-1,"16380":3279,"16381":-1,"16382":3684,"16383":0,"16384":3009,"16385":-1,"16386":0,"16387":0,"16388":0,"16389":0,"16390":4001,"16391":-1,"16392":-1,"16393":2468,"16394":3058,"16395":2542,"16396":0,"16397":-1,"16398":0,"16399":0,"16400":0,"16401":-1,"16402":-1,"16403":4012,"16404":0,"16405":3209,"16406":0,"16407":2651,"16408":-1,"16409":-1,"16410":0,"16411":0,"16412":-1,"16413":-1,"16414":3786,"16415":2761,"16416":0,"16417":-1,"16418":0,"16419":-1,"16420":0,"16421":2213,"16422":-1,"16423":0,"16424":3278,"16425":-1,"16426":0,"16427":-1,"16428":0,"16429":-1,"16430":191,"16431":0,"16432":2461,"16433":0,"16434":0,"16435":-1,"16436":3606,"16437":2304,"16438":0,"16439":-1,"16440":0,"16441":0,"16442":-1,"16443":0,"16444":0,"16445":-1,"16446":0,"16447":3101,"16448":0,"16449":0,"16450":0,"16451":-1,"16452":-1,"16453":0,"16454":0,"16455":0,"16456":2293,"16457":3094,"16458":2780,"16459":2074,"16460":0,"16461":0,"16462":0,"16463":3800,"16464":0,"16465":0,"16466":3735,"16467":4013,"16468":3545,"16469":-1,"16470":-1,"16471":3393,"16472":-1,"16473":0,"16474":0,"16475":-1,"16476":0,"16477":0,"16478":0,"16479":0,"16480":-1,"16481":0,"16482":3146,"16483":0,"16484":-1,"16485":119,"16486":2459,"16487":3902,"16488":0,"16489":-1,"16490":2106,"16491":0,"16492":0,"16493":0,"16494":-1,"16495":0,"16496":-1,"16497":-1,"16498":-1,"16499":-1,"16500":-1,"16501":0,"16502":0,"16503":2786,"16504":508,"16505":0,"16506":-1,"16507":0,"16508":-1,"16509":1826,"16510":-1,"16511":0,"16512":-1,"16513":0,"16514":473,"16515":0,"16516":0,"16517":0,"16518":0,"16519":0,"16520":3650,"16521":0,"16522":0,"16523":0,"16524":3166,"16525":-1,"16526":0,"16527":321,"16528":-1,"16529":2675,"16530":0,"16531":0,"16532":-1,"16533":161,"16534":-1,"16535":3148,"16536":2903,"16537":2387,"16538":-1,"16539":0,"16540":458,"16541":0,"16542":0,"16543":3733,"16544":1872,"16545":466,"16546":-1,"16547":0,"16548":0,"16549":3120,"16550":0,"16551":2679,"16552":0,"16553":0,"16554":2308,"16555":445,"16556":27,"16557":0,"16558":0,"16559":0,"16560":0,"16561":0,"16562":0,"16563":0,"16564":0,"16565":0,"16566":3570,"16567":3880,"16568":-1,"16569":3784,"16570":0,"16571":3978,"16572":0,"16573":3444,"16574":-1,"16575":199,"16576":-1,"16577":0,"16578":0,"16579":0,"16580":0,"16581":94,"16582":0,"16583":2813,"16584":-1,"16585":-1,"16586":-1,"16587":0,"16588":0,"16589":3873,"16590":0,"16591":-1,"16592":-1,"16593":0,"16594":-1,"16595":0,"16596":0,"16597":0,"16598":3201,"16599":0,"16600":0,"16601":-1,"16602":0,"16603":0,"16604":-1,"16605":0,"16606":-1,"16607":0,"16608":2041,"16609":-1,"16610":-1,"16611":0,"16612":1886,"16613":-1,"16614":0,"16615":0,"16616":0,"16617":2384,"16618":0,"16619":0,"16620":0,"16621":0,"16622":3784,"16623":0,"16624":0,"16625":0,"16626":0,"16627":3202,"16628":0,"16629":0,"16630":0,"16631":-1,"16632":-1,"16633":0,"16634":0,"16635":3176,"16636":-1,"16637":-1,"16638":-1,"16639":2798,"16640":0,"16641":0,"16642":0,"16643":2729,"16644":0,"16645":465,"16646":2384,"16647":2548,"16648":3705,"16649":0,"16650":3783,"16651":1981,"16652":3720,"16653":0,"16654":-1,"16655":0,"16656":-1,"16657":-1,"16658":2665,"16659":-1,"16660":0,"16661":2316,"16662":0,"16663":-1,"16664":0,"16665":0,"16666":0,"16667":0,"16668":476,"16669":3443,"16670":-1,"16671":0,"16672":0,"16673":3491,"16674":0,"16675":0,"16676":2156,"16677":2571,"16678":0,"16679":-1,"16680":0,"16681":0,"16682":0,"16683":0,"16684":3599,"16685":2926,"16686":-1,"16687":246,"16688":0,"16689":-1,"16690":-1,"16691":-1,"16692":0,"16693":0,"16694":1901,"16695":1789,"16696":-1,"16697":3094,"16698":-1,"16699":-1,"16700":-1,"16701":2368,"16702":1818,"16703":0,"16704":0,"16705":1876,"16706":-1,"16707":466,"16708":-1,"16709":0,"16710":0,"16711":-1,"16712":3254,"16713":-1,"16714":-1,"16715":2617,"16716":2169,"16717":-1,"16718":0,"16719":0,"16720":-1,"16721":-1,"16722":-1,"16723":-1,"16724":0,"16725":0,"16726":3937,"16727":0,"16728":-1,"16729":-1,"16730":0,"16731":0,"16732":2453,"16733":-1,"16734":3267,"16735":0,"16736":-1,"16737":-1,"16738":0,"16739":0,"16740":3034,"16741":0,"16742":0,"16743":-1,"16744":0,"16745":-1,"16746":3472,"16747":3752,"16748":2393,"16749":0,"16750":1908,"16751":0,"16752":0,"16753":2372,"16754":0,"16755":0,"16756":0,"16757":0,"16758":0,"16759":0,"16760":-1,"16761":-1,"16762":0,"16763":0,"16764":0,"16765":-1,"16766":2909,"16767":-1,"16768":-1,"16769":-1,"16770":0,"16771":-1,"16772":-1,"16773":0,"16774":-1,"16775":0,"16776":3600,"16777":0,"16778":3978,"16779":0,"16780":-1,"16781":-1,"16782":-1,"16783":0,"16784":2730,"16785":0,"16786":-1,"16787":0,"16788":-1,"16789":0,"16790":0,"16791":0,"16792":-1,"16793":-1,"16794":355,"16795":0,"16796":3670,"16797":0,"16798":-1,"16799":0,"16800":4010,"16801":-1,"16802":2147,"16803":3306,"16804":0,"16805":-1,"16806":-1,"16807":0,"16808":0,"16809":0,"16810":0,"16811":-1,"16812":2330,"16813":3756,"16814":-1,"16815":0,"16816":-1,"16817":3536,"16818":0,"16819":-1,"16820":0,"16821":2214,"16822":0,"16823":0,"16824":2624,"16825":0,"16826":-1,"16827":0,"16828":0,"16829":-1,"16830":-1,"16831":-1,"16832":-1,"16833":-1,"16834":-1,"16835":-1,"16836":-1,"16837":154,"16838":0,"16839":0,"16840":0,"16841":-1,"16842":-1,"16843":0,"16844":-1,"16845":0,"16846":3460,"16847":3857,"16848":0,"16849":2437,"16850":2677,"16851":0,"16852":0,"16853":1884,"16854":2392,"16855":3648,"16856":0,"16857":0,"16858":2779,"16859":0,"16860":0,"16861":0,"16862":2919,"16863":-1,"16864":-1,"16865":0,"16866":2504,"16867":0,"16868":0,"16869":-1,"16870":0,"16871":0,"16872":-1,"16873":0,"16874":3143,"16875":3599,"16876":0,"16877":3052,"16878":0,"16879":1799,"16880":0,"16881":0,"16882":0,"16883":0,"16884":-1,"16885":2897,"16886":0,"16887":0,"16888":2910,"16889":-1,"16890":0,"16891":0,"16892":0,"16893":-1,"16894":-1,"16895":-1,"16896":-1,"16897":-1,"16898":-1,"16899":3800,"16900":3638,"16901":-1,"16902":-1,"16903":-1,"16904":0,"16905":-1,"16906":-1,"16907":0,"16908":-1,"16909":0,"16910":0,"16911":0,"16912":2988,"16913":2966,"16914":-1,"16915":0,"16916":3175,"16917":0,"16918":3813,"16919":0,"16920":2518,"16921":0,"16922":-1,"16923":0,"16924":0,"16925":-1,"16926":0,"16927":-1,"16928":-1,"16929":3445,"16930":227,"16931":0,"16932":0,"16933":0,"16934":-1,"16935":-1,"16936":-1,"16937":64,"16938":-1,"16939":-1,"16940":-1,"16941":0,"16942":2271,"16943":0,"16944":-1,"16945":3855,"16946":365,"16947":0,"16948":-1,"16949":2530,"16950":0,"16951":0,"16952":0,"16953":2020,"16954":-1,"16955":0,"16956":0,"16957":3302,"16958":-1,"16959":-1,"16960":0,"16961":-1,"16962":0,"16963":0,"16964":0,"16965":-1,"16966":-1,"16967":-1,"16968":2329,"16969":-1,"16970":0,"16971":0,"16972":2735,"16973":214,"16974":3228,"16975":0,"16976":0,"16977":-1,"16978":-1,"16979":-1,"16980":0,"16981":3853,"16982":-1,"16983":3113,"16984":0,"16985":-1,"16986":0,"16987":0,"16988":0,"16989":0,"16990":-1,"16991":0,"16992":-1,"16993":-1,"16994":3637,"16995":3160,"16996":0,"16997":1800,"16998":0,"16999":3096,"17000":-1,"17001":-1,"17002":2020,"17003":0,"17004":0,"17005":0,"17006":-1,"17007":-1,"17008":-1,"17009":-1,"17010":0,"17011":0,"17012":0,"17013":2883,"17014":0,"17015":-1,"17016":-1,"17017":-1,"17018":-1,"17019":0,"17020":-1,"17021":387,"17022":3147,"17023":-1,"17024":0,"17025":0,"17026":0,"17027":3978,"17028":3064,"17029":4028,"17030":0,"17031":3637,"17032":2512,"17033":-1,"17034":-1,"17035":0,"17036":-1,"17037":3024,"17038":3923,"17039":0,"17040":-1,"17041":3279,"17042":2224,"17043":0,"17044":2941,"17045":-1,"17046":0,"17047":-1,"17048":0,"17049":0,"17050":0,"17051":-1,"17052":0,"17053":0,"17054":2262,"17055":0,"17056":0,"17057":-1,"17058":-1,"17059":-1,"17060":54,"17061":2439,"17062":0,"17063":0,"17064":0,"17065":0,"17066":-1,"17067":0,"17068":0,"17069":1879,"17070":2851,"17071":0,"17072":-1,"17073":0,"17074":0,"17075":3965,"17076":3987,"17077":-1,"17078":2450,"17079":0,"17080":-1,"17081":3104,"17082":0,"17083":2473,"17084":0,"17085":192,"17086":3435,"17087":0,"17088":2504,"17089":0,"17090":0,"17091":0,"17092":0,"17093":2136,"17094":0,"17095":3026,"17096":0,"17097":3109,"17098":4024,"17099":-1,"17100":0,"17101":1839,"17102":1980,"17103":0,"17104":0,"17105":491,"17106":0,"17107":-1,"17108":0,"17109":0,"17110":-1,"17111":0,"17112":0,"17113":319,"17114":-1,"17115":0,"17116":-1,"17117":-1,"17118":0,"17119":0,"17120":4003,"17121":-1,"17122":0,"17123":0,"17124":-1,"17125":0,"17126":0,"17127":3838,"17128":2613,"17129":3797,"17130":0,"17131":147,"17132":-1,"17133":-1,"17134":-1,"17135":-1,"17136":0,"17137":0,"17138":-1,"17139":0,"17140":-1,"17141":0,"17142":317,"17143":0,"17144":0,"17145":0,"17146":0,"17147":0,"17148":0,"17149":0,"17150":-1,"17151":-1,"17152":1894,"17153":0,"17154":3876,"17155":-1,"17156":507,"17157":0,"17158":-1,"17159":0,"17160":0,"17161":2113,"17162":2378,"17163":3332,"17164":0,"17165":-1,"17166":0,"17167":-1,"17168":502,"17169":0,"17170":3422,"17171":0,"17172":-1,"17173":2521,"17174":0,"17175":264,"17176":-1,"17177":0,"17178":0,"17179":3875,"17180":0,"17181":2430,"17182":0,"17183":0,"17184":0,"17185":0,"17186":0,"17187":0,"17188":0,"17189":-1,"17190":-1,"17191":-1,"17192":-1,"17193":0,"17194":0,"17195":-1,"17196":3483,"17197":0,"17198":0,"17199":0,"17200":1971,"17201":0,"17202":2397,"17203":0,"17204":0,"17205":3351,"17206":0,"17207":3344,"17208":0,"17209":2145,"17210":3327,"17211":0,"17212":0,"17213":2240,"17214":0,"17215":0,"17216":67,"17217":-1,"17218":-1,"17219":182,"17220":0,"17221":0,"17222":1780,"17223":2776,"17224":0,"17225":-1,"17226":-1,"17227":0,"17228":0,"17229":0,"17230":0,"17231":2116,"17232":-1,"17233":0,"17234":-1,"17235":-1,"17236":-1,"17237":0,"17238":-1,"17239":0,"17240":-1,"17241":-1,"17242":3934,"17243":0,"17244":0,"17245":-1,"17246":0,"17247":2916,"17248":0,"17249":2830,"17250":-1,"17251":0,"17252":0,"17253":0,"17254":3059,"17255":3532,"17256":0,"17257":-1,"17258":-1,"17259":0,"17260":0,"17261":0,"17262":0,"17263":0,"17264":-1,"17265":2057,"17266":32,"17267":-1,"17268":0,"17269":2433,"17270":-1,"17271":3215,"17272":-1,"17273":-1,"17274":0,"17275":0,"17276":0,"17277":3367,"17278":-1,"17279":0,"17280":0,"17281":-1,"17282":0,"17283":0,"17284":2532,"17285":0,"17286":-1,"17287":-1,"17288":-1,"17289":3463,"17290":0,"17291":0,"17292":-1,"17293":2861,"17294":0,"17295":3894,"17296":0,"17297":-1,"17298":0,"17299":3782,"17300":0,"17301":3558,"17302":0,"17303":-1,"17304":-1,"17305":-1,"17306":3177,"17307":0,"17308":-1,"17309":0,"17310":0,"17311":0,"17312":-1,"17313":0,"17314":-1,"17315":0,"17316":0,"17317":0,"17318":2592,"17319":-1,"17320":0,"17321":-1,"17322":0,"17323":0,"17324":2934,"17325":-1,"17326":-1,"17327":0,"17328":0,"17329":0,"17330":2718,"17331":130,"17332":-1,"17333":-1,"17334":0,"17335":0,"17336":0,"17337":0,"17338":3171,"17339":0,"17340":0,"17341":-1,"17342":3093,"17343":0,"17344":2926,"17345":0,"17346":-1,"17347":0,"17348":-1,"17349":2811,"17350":-1,"17351":0,"17352":0,"17353":-1,"17354":-1,"17355":-1,"17356":3322,"17357":-1,"17358":0,"17359":0,"17360":3351,"17361":0,"17362":0,"17363":3283,"17364":-1,"17365":0,"17366":0,"17367":-1,"17368":2448,"17369":-1,"17370":0,"17371":0,"17372":0,"17373":0,"17374":3100,"17375":0,"17376":0,"17377":0,"17378":-1,"17379":0,"17380":-1,"17381":-1,"17382":-1,"17383":0,"17384":3136,"17385":0,"17386":0,"17387":-1,"17388":2965,"17389":-1,"17390":4053,"17391":3712,"17392":3578,"17393":0,"17394":0,"17395":-1,"17396":0,"17397":0,"17398":-1,"17399":-1,"17400":0,"17401":3955,"17402":0,"17403":0,"17404":1822,"17405":4054,"17406":-1,"17407":3819,"17408":-1,"17409":113,"17410":1794,"17411":0,"17412":1777,"17413":0,"17414":3007,"17415":-1,"17416":0,"17417":-1,"17418":0,"17419":-1,"17420":-1,"17421":4014,"17422":1810,"17423":0,"17424":33,"17425":2555,"17426":472,"17427":0,"17428":3676,"17429":3696,"17430":-1,"17431":-1,"17432":3949,"17433":3838,"17434":0,"17435":0,"17436":-1,"17437":0,"17438":-1,"17439":3900,"17440":-1,"17441":2963,"17442":0,"17443":-1,"17444":0,"17445":2227,"17446":3854,"17447":-1,"17448":0,"17449":-1,"17450":0,"17451":0,"17452":0,"17453":-1,"17454":0,"17455":2512,"17456":-1,"17457":0,"17458":-1,"17459":0,"17460":0,"17461":0,"17462":0,"17463":2726,"17464":-1,"17465":3125,"17466":2577,"17467":0,"17468":3130,"17469":0,"17470":0,"17471":-1,"17472":-1,"17473":-1,"17474":0,"17475":3821,"17476":-1,"17477":2274,"17478":-1,"17479":2410,"17480":0,"17481":69,"17482":-1,"17483":2524,"17484":-1,"17485":0,"17486":-1,"17487":0,"17488":3008,"17489":0,"17490":32,"17491":0,"17492":0,"17493":-1,"17494":0,"17495":0,"17496":0,"17497":0,"17498":0,"17499":0,"17500":0,"17501":0,"17502":-1,"17503":-1,"17504":-1,"17505":269,"17506":441,"17507":2859,"17508":2709,"17509":0,"17510":-1,"17511":327,"17512":0,"17513":3349,"17514":0,"17515":0,"17516":0,"17517":2421,"17518":0,"17519":0,"17520":-1,"17521":-1,"17522":0,"17523":-1,"17524":-1,"17525":3520,"17526":0,"17527":0,"17528":-1,"17529":-1,"17530":0,"17531":10,"17532":-1,"17533":0,"17534":0,"17535":-1,"17536":-1,"17537":2841,"17538":-1,"17539":0,"17540":-1,"17541":0,"17542":-1,"17543":14,"17544":3447,"17545":0,"17546":-1,"17547":-1,"17548":-1,"17549":3245,"17550":3908,"17551":-1,"17552":0,"17553":459,"17554":-1,"17555":3020,"17556":-1,"17557":0,"17558":-1,"17559":-1,"17560":0,"17561":0,"17562":1977,"17563":-1,"17564":0,"17565":0,"17566":2479,"17567":0,"17568":0,"17569":3712,"17570":2556,"17571":0,"17572":-1,"17573":0,"17574":2022,"17575":-1,"17576":2692,"17577":3742,"17578":0,"17579":0,"17580":-1,"17581":0,"17582":0,"17583":-1,"17584":-1,"17585":0,"17586":0,"17587":0,"17588":0,"17589":2529,"17590":0,"17591":-1,"17592":0,"17593":-1,"17594":-1,"17595":-1,"17596":0,"17597":2558,"17598":-1,"17599":0,"17600":0,"17601":-1,"17602":-1,"17603":0,"17604":0,"17605":0,"17606":213,"17607":0,"17608":-1,"17609":0,"17610":40,"17611":0,"17612":2161,"17613":-1,"17614":0,"17615":-1,"17616":0,"17617":0,"17618":0,"17619":67,"17620":1836,"17621":-1,"17622":0,"17623":0,"17624":-1,"17625":-1,"17626":0,"17627":-1,"17628":-1,"17629":-1,"17630":-1,"17631":2536,"17632":3992,"17633":-1,"17634":-1,"17635":3963,"17636":0,"17637":0,"17638":2551,"17639":0,"17640":-1,"17641":-1,"17642":0,"17643":0,"17644":2863,"17645":0,"17646":0,"17647":0,"17648":3785,"17649":3037,"17650":0,"17651":-1,"17652":0,"17653":0,"17654":275,"17655":-1,"17656":-1,"17657":3652,"17658":3449,"17659":197,"17660":-1,"17661":-1,"17662":0,"17663":2509,"17664":0,"17665":-1,"17666":-1,"17667":-1,"17668":3663,"17669":-1,"17670":0,"17671":0,"17672":-1,"17673":0,"17674":0,"17675":0,"17676":2710,"17677":2634,"17678":-1,"17679":-1,"17680":0,"17681":-1,"17682":-1,"17683":2078,"17684":2446,"17685":3673,"17686":3168,"17687":-1,"17688":-1,"17689":2211,"17690":0,"17691":2670,"17692":0,"17693":368,"17694":0,"17695":3782,"17696":0,"17697":-1,"17698":-1,"17699":0,"17700":-1,"17701":-1,"17702":-1,"17703":2724,"17704":0,"17705":-1,"17706":0,"17707":-1,"17708":-1,"17709":0,"17710":2570,"17711":0,"17712":-1,"17713":217,"17714":-1,"17715":0,"17716":0,"17717":0,"17718":0,"17719":0,"17720":1788,"17721":0,"17722":0,"17723":0,"17724":0,"17725":2853,"17726":3684,"17727":0,"17728":0,"17729":514,"17730":-1,"17731":3689,"17732":-1,"17733":3290,"17734":-1,"17735":3413,"17736":3340,"17737":0,"17738":2321,"17739":-1,"17740":0,"17741":0,"17742":0,"17743":0,"17744":3937,"17745":0,"17746":0,"17747":70,"17748":2729,"17749":0,"17750":230,"17751":0,"17752":2521,"17753":3684,"17754":0,"17755":0,"17756":0,"17757":3003,"17758":0,"17759":0,"17760":-1,"17761":-1,"17762":3385,"17763":-1,"17764":0,"17765":59,"17766":-1,"17767":0,"17768":-1,"17769":0,"17770":-1,"17771":0,"17772":2289,"17773":-1,"17774":2444,"17775":1790,"17776":2560,"17777":0,"17778":3977,"17779":0,"17780":-1,"17781":2245,"17782":3933,"17783":0,"17784":0,"17785":2604,"17786":-1,"17787":0,"17788":0,"17789":0,"17790":4001,"17791":-1,"17792":1869,"17793":0,"17794":0,"17795":0,"17796":-1,"17797":0,"17798":0,"17799":-1,"17800":0,"17801":0,"17802":-1,"17803":2936,"17804":2467,"17805":0,"17806":0,"17807":0,"17808":-1,"17809":0,"17810":-1,"17811":0,"17812":0,"17813":0,"17814":3960,"17815":0,"17816":0,"17817":0,"17818":0,"17819":3789,"17820":0,"17821":0,"17822":0,"17823":2284,"17824":-1,"17825":-1,"17826":-1,"17827":0,"17828":0,"17829":0,"17830":0,"17831":3774,"17832":2142,"17833":3052,"17834":-1,"17835":-1,"17836":-1,"17837":0,"17838":2769,"17839":0,"17840":4017,"17841":-1,"17842":1973,"17843":0,"17844":0,"17845":0,"17846":-1,"17847":0,"17848":0,"17849":0,"17850":-1,"17851":0,"17852":2070,"17853":0,"17854":-1,"17855":0,"17856":1825,"17857":305,"17858":-1,"17859":-1,"17860":0,"17861":-1,"17862":-1,"17863":100,"17864":-1,"17865":177,"17866":-1,"17867":2359,"17868":0,"17869":-1,"17870":0,"17871":9,"17872":-1,"17873":-1,"17874":-1,"17875":0,"17876":1991,"17877":3030,"17878":122,"17879":3315,"17880":25,"17881":0,"17882":1985,"17883":2734,"17884":-1,"17885":-1,"17886":-1,"17887":0,"17888":0,"17889":2295,"17890":0,"17891":0,"17892":0,"17893":0,"17894":1956,"17895":1837,"17896":0,"17897":0,"17898":0,"17899":-1,"17900":-1,"17901":3296,"17902":-1,"17903":-1,"17904":27,"17905":2791,"17906":-1,"17907":3944,"17908":0,"17909":-1,"17910":433,"17911":-1,"17912":-1,"17913":-1,"17914":0,"17915":2653,"17916":0,"17917":0,"17918":-1,"17919":488,"17920":-1,"17921":-1,"17922":0,"17923":-1,"17924":2448,"17925":-1,"17926":0,"17927":-1,"17928":-1,"17929":0,"17930":2962,"17931":0,"17932":-1,"17933":0,"17934":-1,"17935":0,"17936":-1,"17937":-1,"17938":0,"17939":2101,"17940":-1,"17941":-1,"17942":-1,"17943":3832,"17944":-1,"17945":0,"17946":-1,"17947":3338,"17948":-1,"17949":2027,"17950":0,"17951":0,"17952":-1,"17953":2472,"17954":0,"17955":-1,"17956":0,"17957":2484,"17958":0,"17959":2358,"17960":0,"17961":0,"17962":0,"17963":0,"17964":0,"17965":-1,"17966":2403,"17967":0,"17968":0,"17969":2207,"17970":2952,"17971":2754,"17972":-1,"17973":0,"17974":0,"17975":0,"17976":-1,"17977":1881,"17978":0,"17979":-1,"17980":-1,"17981":2355,"17982":-1,"17983":3473,"17984":0,"17985":3461,"17986":1845,"17987":0,"17988":0,"17989":1848,"17990":-1,"17991":0,"17992":-1,"17993":0,"17994":-1,"17995":229,"17996":0,"17997":0,"17998":0,"17999":-1,"18000":0,"18001":-1,"18002":0,"18003":46,"18004":-1,"18005":-1,"18006":0,"18007":0,"18008":0,"18009":0,"18010":2257,"18011":514,"18012":0,"18013":0,"18014":-1,"18015":0,"18016":2869,"18017":0,"18018":0,"18019":-1,"18020":0,"18021":0,"18022":-1,"18023":0,"18024":0,"18025":0,"18026":2375,"18027":-1,"18028":0,"18029":0,"18030":-1,"18031":0,"18032":0,"18033":-1,"18034":0,"18035":-1,"18036":0,"18037":0,"18038":1971,"18039":-1,"18040":3402,"18041":-1,"18042":0,"18043":3110,"18044":2064,"18045":-1,"18046":248,"18047":1812,"18048":0,"18049":0,"18050":1972,"18051":-1,"18052":-1,"18053":0,"18054":3530,"18055":0,"18056":3149,"18057":0,"18058":-1,"18059":3836,"18060":-1,"18061":2856,"18062":-1,"18063":-1,"18064":-1,"18065":0,"18066":0,"18067":0,"18068":-1,"18069":2681,"18070":264,"18071":-1,"18072":0,"18073":0,"18074":0,"18075":0,"18076":0,"18077":-1,"18078":0,"18079":0,"18080":0,"18081":2195,"18082":0,"18083":0,"18084":0,"18085":-1,"18086":505,"18087":0,"18088":0,"18089":3015,"18090":0,"18091":2270,"18092":0,"18093":1973,"18094":-1,"18095":0,"18096":-1,"18097":0,"18098":505,"18099":0,"18100":0,"18101":0,"18102":-1,"18103":-1,"18104":-1,"18105":2684,"18106":3801,"18107":-1,"18108":1999,"18109":-1,"18110":0,"18111":0,"18112":-1,"18113":0,"18114":0,"18115":-1,"18116":0,"18117":0,"18118":0,"18119":0,"18120":2853,"18121":0,"18122":-1,"18123":1859,"18124":3649,"18125":-1,"18126":0,"18127":1939,"18128":-1,"18129":0,"18130":-1,"18131":-1,"18132":0,"18133":0,"18134":0,"18135":-1,"18136":-1,"18137":-1,"18138":3191,"18139":138,"18140":0,"18141":-1,"18142":0,"18143":-1,"18144":-1,"18145":-1,"18146":-1,"18147":-1,"18148":-1,"18149":0,"18150":0,"18151":0,"18152":0,"18153":-1,"18154":-1,"18155":0,"18156":2019,"18157":0,"18158":0,"18159":-1,"18160":0,"18161":-1,"18162":-1,"18163":-1,"18164":3706,"18165":-1,"18166":-1,"18167":0,"18168":-1,"18169":-1,"18170":-1,"18171":0,"18172":-1,"18173":-1,"18174":2943,"18175":0,"18176":-1,"18177":3185,"18178":0,"18179":3289,"18180":0,"18181":0,"18182":-1,"18183":0,"18184":-1,"18185":0,"18186":3929,"18187":0,"18188":0,"18189":0,"18190":0,"18191":-1,"18192":0,"18193":-1,"18194":0,"18195":2879,"18196":0,"18197":0,"18198":-1,"18199":0,"18200":-1,"18201":0,"18202":0,"18203":0,"18204":-1,"18205":3470,"18206":0,"18207":0,"18208":2603,"18209":0,"18210":2723,"18211":3808,"18212":2669,"18213":-1,"18214":0,"18215":0,"18216":0,"18217":0,"18218":2432,"18219":-1,"18220":0,"18221":-1,"18222":3113,"18223":-1,"18224":0,"18225":0,"18226":-1,"18227":-1,"18228":3799,"18229":0,"18230":0,"18231":2874,"18232":-1,"18233":348,"18234":3852,"18235":0,"18236":-1,"18237":0,"18238":0,"18239":0,"18240":0,"18241":2196,"18242":0,"18243":0,"18244":-1,"18245":-1,"18246":0,"18247":-1,"18248":0,"18249":0,"18250":0,"18251":0,"18252":0,"18253":-1,"18254":0,"18255":0,"18256":0,"18257":0,"18258":0,"18259":0,"18260":0,"18261":2741,"18262":-1,"18263":0,"18264":0,"18265":0,"18266":0,"18267":2145,"18268":2384,"18269":3057,"18270":0,"18271":-1,"18272":-1,"18273":3650,"18274":0,"18275":-1,"18276":0,"18277":-1,"18278":3399,"18279":-1,"18280":0,"18281":3968,"18282":-1,"18283":2636,"18284":-1,"18285":-1,"18286":2594,"18287":0,"18288":0,"18289":0,"18290":-1,"18291":0,"18292":-1,"18293":-1,"18294":0,"18295":163,"18296":2528,"18297":0,"18298":343,"18299":-1,"18300":0,"18301":1904,"18302":2716,"18303":0,"18304":-1,"18305":0,"18306":-1,"18307":2920,"18308":0,"18309":0,"18310":0,"18311":-1,"18312":0,"18313":0,"18314":-1,"18315":-1,"18316":0,"18317":0,"18318":-1,"18319":-1,"18320":-1,"18321":0,"18322":0,"18323":4034,"18324":0,"18325":-1,"18326":-1,"18327":2047,"18328":2021,"18329":0,"18330":0,"18331":3825,"18332":2390,"18333":-1,"18334":0,"18335":-1,"18336":-1,"18337":-1,"18338":-1,"18339":0,"18340":3968,"18341":-1,"18342":0,"18343":-1,"18344":0,"18345":4026,"18346":2713,"18347":-1,"18348":393,"18349":-1,"18350":-1,"18351":0,"18352":0,"18353":0,"18354":0,"18355":0,"18356":0,"18357":3067,"18358":2050,"18359":1814,"18360":-1,"18361":0,"18362":0,"18363":0,"18364":2534,"18365":0,"18366":0,"18367":-1,"18368":0,"18369":3842,"18370":-1,"18371":0,"18372":0,"18373":-1,"18374":-1,"18375":0,"18376":-1,"18377":0,"18378":0,"18379":0,"18380":0,"18381":-1,"18382":0,"18383":0,"18384":0,"18385":0,"18386":2002,"18387":0,"18388":-1,"18389":0,"18390":-1,"18391":0,"18392":-1,"18393":421,"18394":-1,"18395":0,"18396":0,"18397":2679,"18398":3938,"18399":0,"18400":0,"18401":2277,"18402":0,"18403":-1,"18404":0,"18405":-1,"18406":0,"18407":0,"18408":-1,"18409":0,"18410":3064,"18411":2415,"18412":2110,"18413":251,"18414":-1,"18415":0,"18416":-1,"18417":0,"18418":-1,"18419":0,"18420":3253,"18421":3193,"18422":0,"18423":0,"18424":374,"18425":0,"18426":2164,"18427":-1,"18428":0,"18429":0,"18430":0,"18431":0,"18432":-1,"18433":-1,"18434":2876,"18435":3352,"18436":0,"18437":0,"18438":4014,"18439":0,"18440":0,"18441":0,"18442":0,"18443":0,"18444":3905,"18445":0,"18446":2358,"18447":0,"18448":-1,"18449":0,"18450":2012,"18451":1833,"18452":-1,"18453":0,"18454":70,"18455":-1,"18456":0,"18457":-1,"18458":0,"18459":-1,"18460":-1,"18461":-1,"18462":0,"18463":0,"18464":0,"18465":0,"18466":0,"18467":0,"18468":2310,"18469":-1,"18470":462,"18471":1834,"18472":-1,"18473":-1,"18474":3918,"18475":3874,"18476":0,"18477":-1,"18478":0,"18479":-1,"18480":3203,"18481":-1,"18482":504,"18483":0,"18484":-1,"18485":0,"18486":0,"18487":0,"18488":-1,"18489":-1,"18490":0,"18491":0,"18492":0,"18493":0,"18494":0,"18495":0,"18496":0,"18497":0,"18498":2060,"18499":1781,"18500":109,"18501":0,"18502":21,"18503":-1,"18504":0,"18505":0,"18506":2511,"18507":237,"18508":3555,"18509":0,"18510":-1,"18511":0,"18512":-1,"18513":0,"18514":-1,"18515":0,"18516":0,"18517":-1,"18518":2883,"18519":0,"18520":-1,"18521":3551,"18522":-1,"18523":0,"18524":0,"18525":3167,"18526":0,"18527":0,"18528":0,"18529":0,"18530":2015,"18531":0,"18532":0,"18533":-1,"18534":-1,"18535":0,"18536":2663,"18537":-1,"18538":-1,"18539":-1,"18540":0,"18541":0,"18542":0,"18543":0,"18544":3671,"18545":-1,"18546":112,"18547":0,"18548":0,"18549":0,"18550":0,"18551":-1,"18552":0,"18553":0,"18554":0,"18555":-1,"18556":-1,"18557":0,"18558":215,"18559":3043,"18560":0,"18561":-1,"18562":4053,"18563":3621,"18564":-1,"18565":-1,"18566":2542,"18567":-1,"18568":2175,"18569":-1,"18570":0,"18571":2374,"18572":0,"18573":1980,"18574":180,"18575":123,"18576":3835,"18577":2807,"18578":3776,"18579":-1,"18580":0,"18581":-1,"18582":0,"18583":-1,"18584":0,"18585":-1,"18586":-1,"18587":0,"18588":4014,"18589":-1,"18590":-1,"18591":0,"18592":2475,"18593":0,"18594":0,"18595":3568,"18596":3004,"18597":-1,"18598":3851,"18599":1791,"18600":0,"18601":0,"18602":-1,"18603":0,"18604":0,"18605":2682,"18606":0,"18607":0,"18608":1908,"18609":39,"18610":-1,"18611":3110,"18612":-1,"18613":1830,"18614":0,"18615":-1,"18616":-1,"18617":2568,"18618":0,"18619":2876,"18620":-1,"18621":-1,"18622":-1,"18623":0,"18624":3539,"18625":3504,"18626":-1,"18627":0,"18628":0,"18629":3707,"18630":-1,"18631":0,"18632":2634,"18633":3454,"18634":2429,"18635":-1,"18636":0,"18637":-1,"18638":250,"18639":0,"18640":0,"18641":0,"18642":3460,"18643":3561,"18644":-1,"18645":3462,"18646":0,"18647":4031,"18648":1832,"18649":2419,"18650":-1,"18651":-1,"18652":-1,"18653":2108,"18654":0,"18655":0,"18656":0,"18657":0,"18658":-1,"18659":-1,"18660":0,"18661":-1,"18662":-1,"18663":0,"18664":0,"18665":0,"18666":0,"18667":0,"18668":2887,"18669":0,"18670":2149,"18671":0,"18672":0,"18673":99,"18674":0,"18675":0,"18676":-1,"18677":0,"18678":0,"18679":-1,"18680":-1,"18681":3477,"18682":2378,"18683":0,"18684":2426,"18685":0,"18686":-1,"18687":0,"18688":3204,"18689":0,"18690":0,"18691":2074,"18692":2520,"18693":0,"18694":0,"18695":0,"18696":-1,"18697":0,"18698":-1,"18699":0,"18700":-1,"18701":0,"18702":-1,"18703":1793,"18704":3196,"18705":2128,"18706":0,"18707":-1,"18708":-1,"18709":0,"18710":0,"18711":0,"18712":0,"18713":-1,"18714":0,"18715":-1,"18716":0,"18717":0,"18718":2812,"18719":0,"18720":0,"18721":3447,"18722":0,"18723":0,"18724":-1,"18725":-1,"18726":3367,"18727":0,"18728":0,"18729":2839,"18730":0,"18731":0,"18732":0,"18733":-1,"18734":-1,"18735":-1,"18736":-1,"18737":0,"18738":3751,"18739":2602,"18740":-1,"18741":0,"18742":-1,"18743":0,"18744":0,"18745":-1,"18746":3075,"18747":0,"18748":497,"18749":3091,"18750":0,"18751":0,"18752":3623,"18753":0,"18754":0,"18755":1869,"18756":1972,"18757":-1,"18758":0,"18759":-1,"18760":0,"18761":3882,"18762":3464,"18763":2725,"18764":3158,"18765":0,"18766":0,"18767":0,"18768":3080,"18769":0,"18770":-1,"18771":3733,"18772":2903,"18773":-1,"18774":0,"18775":1882,"18776":0,"18777":-1,"18778":0,"18779":332,"18780":-1,"18781":-1,"18782":0,"18783":-1,"18784":0,"18785":2008,"18786":-1,"18787":-1,"18788":-1,"18789":0,"18790":-1,"18791":293,"18792":0,"18793":187,"18794":-1,"18795":0,"18796":0,"18797":0,"18798":3169,"18799":2393,"18800":0,"18801":0,"18802":1960,"18803":-1,"18804":0,"18805":0,"18806":0,"18807":-1,"18808":-1,"18809":2841,"18810":0,"18811":0,"18812":2755,"18813":0,"18814":-1,"18815":-1,"18816":-1,"18817":0,"18818":3288,"18819":0,"18820":-1,"18821":0,"18822":0,"18823":2886,"18824":-1,"18825":0,"18826":0,"18827":-1,"18828":-1,"18829":3053,"18830":-1,"18831":-1,"18832":2467,"18833":-1,"18834":2532,"18835":-1,"18836":0,"18837":-1,"18838":0,"18839":-1,"18840":-1,"18841":-1,"18842":-1,"18843":0,"18844":-1,"18845":-1,"18846":0,"18847":-1,"18848":-1,"18849":-1,"18850":-1,"18851":2543,"18852":0,"18853":0,"18854":-1,"18855":0,"18856":3716,"18857":339,"18858":3886,"18859":0,"18860":2188,"18861":0,"18862":0,"18863":-1,"18864":-1,"18865":0,"18866":-1,"18867":0,"18868":0,"18869":0,"18870":0,"18871":0,"18872":-1,"18873":174,"18874":-1,"18875":0,"18876":-1,"18877":0,"18878":-1,"18879":3251,"18880":0,"18881":0,"18882":-1,"18883":-1,"18884":-1,"18885":-1,"18886":-1,"18887":0,"18888":2203,"18889":0,"18890":0,"18891":1961,"18892":-1,"18893":2904,"18894":0,"18895":0,"18896":-1,"18897":0,"18898":2792,"18899":0,"18900":4020,"18901":1965,"18902":0,"18903":0,"18904":0,"18905":-1,"18906":2860,"18907":-1,"18908":0,"18909":-1,"18910":-1,"18911":-1,"18912":0,"18913":2581,"18914":-1,"18915":0,"18916":-1,"18917":3213,"18918":0,"18919":0,"18920":0,"18921":2999,"18922":0,"18923":-1,"18924":0,"18925":-1,"18926":-1,"18927":0,"18928":2518,"18929":0,"18930":-1,"18931":336,"18932":-1,"18933":0,"18934":-1,"18935":-1,"18936":1889,"18937":-1,"18938":0,"18939":-1,"18940":-1,"18941":0,"18942":0,"18943":0,"18944":2772,"18945":0,"18946":-1,"18947":0,"18948":-1,"18949":0,"18950":113,"18951":1922,"18952":1883,"18953":0,"18954":-1,"18955":0,"18956":3592,"18957":2796,"18958":226,"18959":0,"18960":2278,"18961":0,"18962":-1,"18963":0,"18964":0,"18965":-1,"18966":-1,"18967":0,"18968":0,"18969":2191,"18970":0,"18971":-1,"18972":-1,"18973":-1,"18974":0,"18975":0,"18976":-1,"18977":-1,"18978":-1,"18979":0,"18980":3765,"18981":0,"18982":-1,"18983":0,"18984":-1,"18985":0,"18986":0,"18987":3763,"18988":3507,"18989":0,"18990":0,"18991":0,"18992":-1,"18993":0,"18994":297,"18995":-1,"18996":0,"18997":0,"18998":-1,"18999":-1,"19000":-1,"19001":-1,"19002":204,"19003":0,"19004":0,"19005":0,"19006":0,"19007":-1,"19008":0,"19009":2390,"19010":0,"19011":0,"19012":0,"19013":0,"19014":0,"19015":-1,"19016":2379,"19017":-1,"19018":-1,"19019":-1,"19020":-1,"19021":-1,"19022":0,"19023":-1,"19024":-1,"19025":0,"19026":0,"19027":-1,"19028":307,"19029":3265,"19030":0,"19031":0,"19032":0,"19033":0,"19034":1834,"19035":0,"19036":-1,"19037":-1,"19038":0,"19039":0,"19040":-1,"19041":2310,"19042":-1,"19043":0,"19044":1904,"19045":0,"19046":0,"19047":2296,"19048":3980,"19049":2144,"19050":-1,"19051":-1,"19052":2328,"19053":0,"19054":-1,"19055":0,"19056":-1,"19057":2076,"19058":-1,"19059":0,"19060":-1,"19061":0,"19062":1969,"19063":-1,"19064":0,"19065":0,"19066":0,"19067":2974,"19068":0,"19069":2071,"19070":341,"19071":0,"19072":-1,"19073":134,"19074":256,"19075":-1,"19076":-1,"19077":2425,"19078":-1,"19079":0,"19080":0,"19081":0,"19082":0,"19083":0,"19084":-1,"19085":-1,"19086":3432,"19087":0,"19088":3716,"19089":0,"19090":339,"19091":-1,"19092":2175,"19093":2005,"19094":3678,"19095":116,"19096":-1,"19097":0,"19098":-1,"19099":2911,"19100":3621,"19101":-1,"19102":0,"19103":2737,"19104":0,"19105":-1,"19106":0,"19107":-1,"19108":-1,"19109":0,"19110":-1,"19111":3763,"19112":2266,"19113":0,"19114":0,"19115":0,"19116":4029,"19117":-1,"19118":-1,"19119":-1,"19120":0,"19121":0,"19122":0,"19123":-1,"19124":-1,"19125":-1,"19126":-1,"19127":-1,"19128":-1,"19129":3667,"19130":1837,"19131":0,"19132":0,"19133":0,"19134":2007,"19135":0,"19136":0,"19137":-1,"19138":-1,"19139":0,"19140":3240,"19141":-1,"19142":0,"19143":0,"19144":0,"19145":0,"19146":1890,"19147":0,"19148":0,"19149":0,"19150":0,"19151":-1,"19152":0,"19153":-1,"19154":0,"19155":-1,"19156":-1,"19157":0,"19158":3166,"19159":0,"19160":-1,"19161":280,"19162":-1,"19163":0,"19164":2360,"19165":-1,"19166":0,"19167":0,"19168":0,"19169":-1,"19170":0,"19171":3699,"19172":0,"19173":-1,"19174":0,"19175":-1,"19176":41,"19177":2697,"19178":-1,"19179":3557,"19180":0,"19181":0,"19182":-1,"19183":0,"19184":0,"19185":-1,"19186":0,"19187":0,"19188":0,"19189":0,"19190":0,"19191":0,"19192":-1,"19193":3031,"19194":0,"19195":-1,"19196":100,"19197":0,"19198":0,"19199":-1,"19200":2110,"19201":-1,"19202":0,"19203":2348,"19204":3696,"19205":3098,"19206":-1,"19207":0,"19208":0,"19209":0,"19210":0,"19211":0,"19212":4051,"19213":0,"19214":0,"19215":3536,"19216":-1,"19217":0,"19218":0,"19219":-1,"19220":0,"19221":0,"19222":3703,"19223":3664,"19224":0,"19225":0,"19226":0,"19227":-1,"19228":0,"19229":-1,"19230":-1,"19231":0,"19232":0,"19233":-1,"19234":0,"19235":-1,"19236":0,"19237":0,"19238":0,"19239":206,"19240":-1,"19241":-1,"19242":-1,"19243":1987,"19244":404,"19245":31,"19246":0,"19247":-1,"19248":-1,"19249":3095,"19250":0,"19251":0,"19252":-1,"19253":-1,"19254":-1,"19255":378,"19256":2448,"19257":-1,"19258":0,"19259":-1,"19260":0,"19261":-1,"19262":-1,"19263":-1,"19264":3295,"19265":0,"19266":0,"19267":-1,"19268":0,"19269":76,"19270":-1,"19271":0,"19272":0,"19273":3222,"19274":-1,"19275":0,"19276":-1,"19277":3004,"19278":2436,"19279":0,"19280":0,"19281":0,"19282":4057,"19283":0,"19284":3276,"19285":351,"19286":3193,"19287":3579,"19288":2897,"19289":-1,"19290":0,"19291":2712,"19292":0,"19293":4036,"19294":0,"19295":0,"19296":2408,"19297":-1,"19298":0,"19299":237,"19300":-1,"19301":2767,"19302":0,"19303":-1,"19304":2912,"19305":0,"19306":0,"19307":-1,"19308":0,"19309":-1,"19310":0,"19311":0,"19312":0,"19313":3808,"19314":3398,"19315":0,"19316":-1,"19317":339,"19318":1817,"19319":0,"19320":-1,"19321":0,"19322":0,"19323":-1,"19324":2732,"19325":0,"19326":2399,"19327":-1,"19328":0,"19329":0,"19330":0,"19331":0,"19332":-1,"19333":-1,"19334":0,"19335":-1,"19336":0,"19337":-1,"19338":0,"19339":0,"19340":0,"19341":-1,"19342":0,"19343":2740,"19344":0,"19345":-1,"19346":0,"19347":-1,"19348":-1,"19349":-1,"19350":3907,"19351":-1,"19352":-1,"19353":-1,"19354":2947,"19355":-1,"19356":0,"19357":2866,"19358":0,"19359":3582,"19360":2836,"19361":-1,"19362":0,"19363":-1,"19364":0,"19365":3356,"19366":87,"19367":501,"19368":0,"19369":1835,"19370":-1,"19371":3423,"19372":2799,"19373":-1,"19374":0,"19375":2188,"19376":0,"19377":0,"19378":-1,"19379":0,"19380":-1,"19381":1969,"19382":0,"19383":0,"19384":-1,"19385":0,"19386":0,"19387":3059,"19388":0,"19389":0,"19390":-1,"19391":0,"19392":0,"19393":-1,"19394":3344,"19395":0,"19396":2200,"19397":-1,"19398":-1,"19399":0,"19400":0,"19401":4048,"19402":2462,"19403":-1,"19404":0,"19405":0,"19406":0,"19407":2692,"19408":-1,"19409":3173,"19410":-1,"19411":0,"19412":0,"19413":0,"19414":-1,"19415":3738,"19416":2422,"19417":145,"19418":0,"19419":0,"19420":0,"19421":2265,"19422":0,"19423":-1,"19424":0,"19425":0,"19426":0,"19427":0,"19428":0,"19429":-1,"19430":0,"19431":0,"19432":0,"19433":0,"19434":0,"19435":-1,"19436":3029,"19437":2167,"19438":-1,"19439":0,"19440":2239,"19441":0,"19442":0,"19443":3753,"19444":-1,"19445":0,"19446":0,"19447":0,"19448":0,"19449":0,"19450":0,"19451":0,"19452":1834,"19453":0,"19454":-1,"19455":0,"19456":2081,"19457":-1,"19458":2205,"19459":2856,"19460":0,"19461":-1,"19462":0,"19463":4020,"19464":1871,"19465":0,"19466":0,"19467":3763,"19468":-1,"19469":-1,"19470":2203,"19471":2539,"19472":0,"19473":2034,"19474":0,"19475":-1,"19476":0,"19477":67,"19478":-1,"19479":433,"19480":-1,"19481":0,"19482":2490,"19483":-1,"19484":-1,"19485":0,"19486":0,"19487":2156,"19488":0,"19489":-1,"19490":-1,"19491":0,"19492":0,"19493":-1,"19494":-1,"19495":3852,"19496":0,"19497":0,"19498":-1,"19499":-1,"19500":0,"19501":0,"19502":-1,"19503":-1,"19504":2410,"19505":-1,"19506":0,"19507":0,"19508":0,"19509":0,"19510":0,"19511":0,"19512":2744,"19513":-1,"19514":409,"19515":0,"19516":-1,"19517":1972,"19518":1971,"19519":0,"19520":2213,"19521":0,"19522":0,"19523":53,"19524":-1,"19525":3265,"19526":0,"19527":-1,"19528":3387,"19529":-1,"19530":0,"19531":-1,"19532":1875,"19533":0,"19534":0,"19535":0,"19536":-1,"19537":0,"19538":-1,"19539":2590,"19540":-1,"19541":0,"19542":0,"19543":3781,"19544":3354,"19545":-1,"19546":0,"19547":-1,"19548":3411,"19549":0,"19550":0,"19551":2134,"19552":2725,"19553":-1,"19554":2287,"19555":0,"19556":0,"19557":0,"19558":3476,"19559":0,"19560":0,"19561":0,"19562":0,"19563":2455,"19564":-1,"19565":-1,"19566":-1,"19567":-1,"19568":0,"19569":3454,"19570":0,"19571":0,"19572":0,"19573":0,"19574":-1,"19575":0,"19576":-1,"19577":0,"19578":-1,"19579":3697,"19580":0,"19581":3271,"19582":0,"19583":2731,"19584":-1,"19585":-1,"19586":-1,"19587":3777,"19588":0,"19589":0,"19590":-1,"19591":0,"19592":0,"19593":-1,"19594":-1,"19595":453,"19596":0,"19597":0,"19598":0,"19599":-1,"19600":0,"19601":0,"19602":0,"19603":129,"19604":0,"19605":-1,"19606":-1,"19607":3794,"19608":0,"19609":0,"19610":0,"19611":0,"19612":0,"19613":0,"19614":0,"19615":-1,"19616":-1,"19617":-1,"19618":-1,"19619":-1,"19620":-1,"19621":3842,"19622":0,"19623":-1,"19624":0,"19625":0,"19626":3162,"19627":-1,"19628":2853,"19629":-1,"19630":0,"19631":0,"19632":0,"19633":0,"19634":0,"19635":3577,"19636":0,"19637":2633,"19638":0,"19639":0,"19640":3747,"19641":-1,"19642":0,"19643":3402,"19644":2377,"19645":0,"19646":2614,"19647":-1,"19648":0,"19649":3153,"19650":-1,"19651":0,"19652":0,"19653":2608,"19654":0,"19655":-1,"19656":0,"19657":-1,"19658":2555,"19659":0,"19660":0,"19661":-1,"19662":508,"19663":0,"19664":0,"19665":0,"19666":-1,"19667":3750,"19668":0,"19669":-1,"19670":0,"19671":-1,"19672":-1,"19673":-1,"19674":-1,"19675":3110,"19676":3065,"19677":2998,"19678":0,"19679":-1,"19680":-1,"19681":0,"19682":-1,"19683":-1,"19684":3275,"19685":0,"19686":0,"19687":-1,"19688":0,"19689":-1,"19690":-1,"19691":0,"19692":3902,"19693":2241,"19694":2926,"19695":2877,"19696":0,"19697":-1,"19698":1941,"19699":-1,"19700":0,"19701":0,"19702":2054,"19703":0,"19704":0,"19705":-1,"19706":-1,"19707":-1,"19708":-1,"19709":0,"19710":1873,"19711":-1,"19712":0,"19713":-1,"19714":-1,"19715":0,"19716":-1,"19717":0,"19718":35,"19719":3427,"19720":-1,"19721":0,"19722":0,"19723":-1,"19724":-1,"19725":3592,"19726":213,"19727":0,"19728":3573,"19729":-1,"19730":-1,"19731":-1,"19732":0,"19733":-1,"19734":0,"19735":3360,"19736":0,"19737":2274,"19738":0,"19739":0,"19740":2798,"19741":0,"19742":3734,"19743":0,"19744":2890,"19745":3646,"19746":0,"19747":-1,"19748":-1,"19749":0,"19750":2996,"19751":-1,"19752":-1,"19753":-1,"19754":0,"19755":0,"19756":0,"19757":0,"19758":-1,"19759":0,"19760":-1,"19761":-1,"19762":0,"19763":-1,"19764":0,"19765":-1,"19766":2993,"19767":-1,"19768":-1,"19769":3262,"19770":2022,"19771":0,"19772":-1,"19773":-1,"19774":2487,"19775":-1,"19776":-1,"19777":0,"19778":0,"19779":0,"19780":8,"19781":0,"19782":-1,"19783":-1,"19784":0,"19785":2658,"19786":-1,"19787":2608,"19788":0,"19789":-1,"19790":0,"19791":0,"19792":339,"19793":200,"19794":0,"19795":0,"19796":0,"19797":-1,"19798":-1,"19799":0,"19800":0,"19801":0,"19802":-1,"19803":-1,"19804":0,"19805":0,"19806":-1,"19807":0,"19808":0,"19809":3480,"19810":-1,"19811":0,"19812":0,"19813":3990,"19814":0,"19815":-1,"19816":222,"19817":3764,"19818":-1,"19819":0,"19820":0,"19821":0,"19822":0,"19823":3147,"19824":-1,"19825":0,"19826":1976,"19827":2690,"19828":-1,"19829":0,"19830":2915,"19831":0,"19832":-1,"19833":449,"19834":-1,"19835":0,"19836":0,"19837":0,"19838":-1,"19839":-1,"19840":0,"19841":-1,"19842":-1,"19843":2590,"19844":0,"19845":0,"19846":-1,"19847":0,"19848":3525,"19849":0,"19850":217,"19851":3626,"19852":0,"19853":2519,"19854":0,"19855":0,"19856":0,"19857":0,"19858":-1,"19859":1868,"19860":-1,"19861":2698,"19862":2657,"19863":-1,"19864":0,"19865":0,"19866":0,"19867":-1,"19868":-1,"19869":3862,"19870":0,"19871":-1,"19872":-1,"19873":0,"19874":0,"19875":0,"19876":3065,"19877":2487,"19878":3118,"19879":0,"19880":0,"19881":0,"19882":2004,"19883":1949,"19884":0,"19885":0,"19886":0,"19887":-1,"19888":0,"19889":2198,"19890":3247,"19891":-1,"19892":-1,"19893":0,"19894":0,"19895":0,"19896":-1,"19897":0,"19898":3775,"19899":0,"19900":3228,"19901":2753,"19902":0,"19903":0,"19904":0,"19905":0,"19906":0,"19907":3527,"19908":0,"19909":0,"19910":2718,"19911":-1,"19912":0,"19913":-1,"19914":-1,"19915":2691,"19916":-1,"19917":3166,"19918":0,"19919":0,"19920":0,"19921":0,"19922":3268,"19923":-1,"19924":0,"19925":3107,"19926":-1,"19927":0,"19928":0,"19929":0,"19930":0,"19931":0,"19932":0,"19933":0,"19934":0,"19935":0,"19936":-1,"19937":-1,"19938":3103,"19939":0,"19940":0,"19941":2942,"19942":490,"19943":2041,"19944":0,"19945":-1,"19946":3016,"19947":0,"19948":0,"19949":0,"19950":-1,"19951":-1,"19952":-1,"19953":416,"19954":3483,"19955":0,"19956":0,"19957":0,"19958":0,"19959":0,"19960":-1,"19961":-1,"19962":-1,"19963":0,"19964":-1,"19965":-1,"19966":0,"19967":0,"19968":3871,"19969":0,"19970":0,"19971":0,"19972":-1,"19973":-1,"19974":-1,"19975":-1,"19976":0,"19977":0,"19978":-1,"19979":0,"19980":0,"19981":0,"19982":0,"19983":-1,"19984":2518,"19985":0,"19986":-1,"19987":4010,"19988":3732,"19989":0,"19990":-1,"19991":2911,"19992":-1,"19993":0,"19994":0,"19995":-1,"19996":-1,"19997":3184,"19998":0,"19999":0,"20000":-1,"20001":197,"20002":0,"20003":3430,"20004":54,"20005":0,"20006":0,"20007":0,"20008":0,"20009":3475,"20010":-1,"20011":-1,"20012":0,"20013":0,"20014":-1,"20015":0,"20016":0,"20017":-1,"20018":0,"20019":0,"20020":0,"20021":2101,"20022":0,"20023":-1,"20024":0,"20025":0,"20026":-1,"20027":-1,"20028":3934,"20029":-1,"20030":0,"20031":0,"20032":-1,"20033":0,"20034":-1,"20035":-1,"20036":0,"20037":0,"20038":-1,"20039":229,"20040":0,"20041":0,"20042":-1,"20043":0,"20044":2222,"20045":0,"20046":0,"20047":0,"20048":0,"20049":3024,"20050":2274,"20051":0,"20052":2229,"20053":0,"20054":3905,"20055":50,"20056":0,"20057":0,"20058":0,"20059":0,"20060":0,"20061":3595,"20062":0,"20063":3009,"20064":0,"20065":243,"20066":1824,"20067":-1,"20068":309,"20069":-1,"20070":2372,"20071":3768,"20072":3430,"20073":0,"20074":0,"20075":0,"20076":0,"20077":0,"20078":367,"20079":3613,"20080":-1,"20081":0,"20082":2560,"20083":-1,"20084":0,"20085":0,"20086":0,"20087":-1,"20088":-1,"20089":0,"20090":0,"20091":-1,"20092":2569,"20093":0,"20094":-1,"20095":3788,"20096":0,"20097":0,"20098":0,"20099":-1,"20100":-1,"20101":2228,"20102":0,"20103":0,"20104":0,"20105":-1,"20106":0,"20107":-1,"20108":-1,"20109":-1,"20110":3570,"20111":2498,"20112":2319,"20113":0,"20114":-1,"20115":0,"20116":-1,"20117":-1,"20118":1934,"20119":-1,"20120":0,"20121":3367,"20122":0,"20123":0,"20124":-1,"20125":345,"20126":3113,"20127":0,"20128":0,"20129":2345,"20130":0,"20131":0,"20132":3277,"20133":239,"20134":0,"20135":0,"20136":3341,"20137":-1,"20138":0,"20139":0,"20140":2571,"20141":0,"20142":-1,"20143":0,"20144":0,"20145":-1,"20146":0,"20147":-1,"20148":4053,"20149":0,"20150":2863,"20151":0,"20152":100,"20153":-1,"20154":3057,"20155":0,"20156":-1,"20157":-1,"20158":-1,"20159":3735,"20160":0,"20161":-1,"20162":-1,"20163":-1,"20164":2402,"20165":2524,"20166":-1,"20167":0,"20168":3647,"20169":-1,"20170":2443,"20171":0,"20172":0,"20173":0,"20174":-1,"20175":0,"20176":0,"20177":3068,"20178":0,"20179":2432,"20180":0,"20181":0,"20182":0,"20183":0,"20184":3503,"20185":3538,"20186":0,"20187":-1,"20188":0,"20189":0,"20190":2523,"20191":0,"20192":-1,"20193":-1,"20194":0,"20195":-1,"20196":2256,"20197":3932,"20198":0,"20199":0,"20200":0,"20201":0,"20202":-1,"20203":2682,"20204":0,"20205":0,"20206":-1,"20207":505,"20208":0,"20209":2172,"20210":0,"20211":0,"20212":0,"20213":2145,"20214":0,"20215":-1,"20216":0,"20217":-1,"20218":0,"20219":0,"20220":-1,"20221":0,"20222":3739,"20223":0,"20224":-1,"20225":0,"20226":-1,"20227":-1,"20228":0,"20229":-1,"20230":-1,"20231":3029,"20232":-1,"20233":-1,"20234":0,"20235":0,"20236":2580,"20237":0,"20238":0,"20239":-1,"20240":0,"20241":144,"20242":0,"20243":3244,"20244":0,"20245":0,"20246":-1,"20247":-1,"20248":0,"20249":3534,"20250":-1,"20251":0,"20252":0,"20253":0,"20254":2835,"20255":0,"20256":-1,"20257":-1,"20258":0,"20259":3831,"20260":0,"20261":3440,"20262":2570,"20263":0,"20264":0,"20265":3126,"20266":-1,"20267":2493,"20268":0,"20269":0,"20270":-1,"20271":-1,"20272":0,"20273":0,"20274":0,"20275":-1,"20276":-1,"20277":0,"20278":0,"20279":-1,"20280":0,"20281":0,"20282":-1,"20283":3369,"20284":-1,"20285":1806,"20286":-1,"20287":3906,"20288":-1,"20289":2837,"20290":0,"20291":-1,"20292":0,"20293":-1,"20294":377,"20295":-1,"20296":0,"20297":-1,"20298":2626,"20299":3402,"20300":357,"20301":0,"20302":0,"20303":0,"20304":1871,"20305":3533,"20306":0,"20307":1811,"20308":2465,"20309":-1,"20310":0,"20311":-1,"20312":0,"20313":0,"20314":0,"20315":0,"20316":-1,"20317":2798,"20318":3876,"20319":-1,"20320":-1,"20321":0,"20322":3432,"20323":-1,"20324":-1,"20325":2954,"20326":-1,"20327":0,"20328":0,"20329":-1,"20330":0,"20331":-1,"20332":2156,"20333":2278,"20334":2317,"20335":0,"20336":3116,"20337":-1,"20338":-1,"20339":0,"20340":0,"20341":0,"20342":-1,"20343":0,"20344":3675,"20345":3303,"20346":-1,"20347":2694,"20348":476,"20349":2307,"20350":0,"20351":0,"20352":0,"20353":-1,"20354":0,"20355":0,"20356":-1,"20357":0,"20358":0,"20359":0,"20360":3680,"20361":0,"20362":3744,"20363":3692,"20364":0,"20365":3222,"20366":0,"20367":-1,"20368":-1,"20369":0,"20370":-1,"20371":0,"20372":0,"20373":-1,"20374":0,"20375":-1,"20376":0,"20377":-1,"20378":-1,"20379":0,"20380":-1,"20381":0,"20382":0,"20383":-1,"20384":3641,"20385":0,"20386":-1,"20387":2210,"20388":-1,"20389":-1,"20390":0,"20391":-1,"20392":0,"20393":2292,"20394":-1,"20395":2243,"20396":0,"20397":2414,"20398":-1,"20399":-1,"20400":0,"20401":0,"20402":3064,"20403":0,"20404":0,"20405":0,"20406":0,"20407":137,"20408":0,"20409":3243,"20410":0,"20411":0,"20412":0,"20413":0,"20414":-1,"20415":1979,"20416":-1,"20417":2399,"20418":-1,"20419":472,"20420":3683,"20421":1882,"20422":0,"20423":0,"20424":0,"20425":295,"20426":0,"20427":0,"20428":-1,"20429":2446,"20430":0,"20431":3166,"20432":-1,"20433":-1,"20434":69,"20435":3265,"20436":0,"20437":0,"20438":-1,"20439":0,"20440":0,"20441":0,"20442":1979,"20443":3668,"20444":205,"20445":-1,"20446":-1,"20447":0,"20448":0,"20449":0,"20450":0,"20451":0,"20452":2491,"20453":0,"20454":0,"20455":0,"20456":0,"20457":0,"20458":2388,"20459":-1,"20460":0,"20461":0,"20462":-1,"20463":2105,"20464":1833,"20465":0,"20466":2948,"20467":3973,"20468":2295,"20469":2134,"20470":0,"20471":2180,"20472":0,"20473":3137,"20474":0,"20475":0,"20476":0,"20477":0,"20478":276,"20479":-1,"20480":2839,"20481":2107,"20482":0,"20483":0,"20484":3108,"20485":0,"20486":1899,"20487":-1,"20488":-1,"20489":0,"20490":3142,"20491":0,"20492":-1,"20493":0,"20494":31,"20495":2086,"20496":-1,"20497":-1,"20498":0,"20499":3728,"20500":0,"20501":0,"20502":2137,"20503":-1,"20504":-1,"20505":0,"20506":-1,"20507":0,"20508":0,"20509":1930,"20510":0,"20511":2150,"20512":0,"20513":0,"20514":0,"20515":0,"20516":-1,"20517":0,"20518":0,"20519":0,"20520":0,"20521":4035,"20522":0,"20523":-1,"20524":3193,"20525":2968,"20526":3591,"20527":0,"20528":0,"20529":0,"20530":-1,"20531":0,"20532":0,"20533":0,"20534":0,"20535":0,"20536":302,"20537":-1,"20538":0,"20539":-1,"20540":0,"20541":0,"20542":0,"20543":-1,"20544":0,"20545":-1,"20546":-1,"20547":17,"20548":-1,"20549":2512,"20550":-1,"20551":0,"20552":2002,"20553":0,"20554":0,"20555":-1,"20556":0,"20557":-1,"20558":450,"20559":2394,"20560":-1,"20561":0,"20562":0,"20563":-1,"20564":0,"20565":3629,"20566":4000,"20567":2580,"20568":0,"20569":-1,"20570":-1,"20571":-1,"20572":0,"20573":0,"20574":-1,"20575":0,"20576":0,"20577":0,"20578":0,"20579":3950,"20580":0,"20581":-1,"20582":0,"20583":0,"20584":0,"20585":0,"20586":67,"20587":0,"20588":0,"20589":0,"20590":3280,"20591":2936,"20592":3848,"20593":2572,"20594":3482,"20595":2994,"20596":-1,"20597":0,"20598":-1,"20599":2808,"20600":0,"20601":-1,"20602":141,"20603":-1,"20604":0,"20605":484,"20606":-1,"20607":0,"20608":421,"20609":0,"20610":-1,"20611":3553,"20612":0,"20613":0,"20614":0,"20615":-1,"20616":-1,"20617":0,"20618":0,"20619":-1,"20620":2804,"20621":2591,"20622":-1,"20623":0,"20624":0,"20625":2194,"20626":0,"20627":-1,"20628":-1,"20629":-1,"20630":0,"20631":0,"20632":0,"20633":-1,"20634":0,"20635":-1,"20636":0,"20637":0,"20638":496,"20639":-1,"20640":0,"20641":0,"20642":278,"20643":0,"20644":-1,"20645":3281,"20646":0,"20647":0,"20648":0,"20649":-1,"20650":-1,"20651":0,"20652":-1,"20653":-1,"20654":0,"20655":-1,"20656":0,"20657":2719,"20658":-1,"20659":0,"20660":0,"20661":0,"20662":0,"20663":-1,"20664":0,"20665":3968,"20666":-1,"20667":0,"20668":-1,"20669":0,"20670":3280,"20671":2116,"20672":0,"20673":3256,"20674":0,"20675":2513,"20676":-1,"20677":0,"20678":2693,"20679":3029,"20680":0,"20681":-1,"20682":0,"20683":2819,"20684":-1,"20685":0,"20686":2373,"20687":2041,"20688":0,"20689":0,"20690":0,"20691":3370,"20692":-1,"20693":0,"20694":-1,"20695":0,"20696":-1,"20697":0,"20698":3754,"20699":0,"20700":2218,"20701":0,"20702":0,"20703":0,"20704":0,"20705":-1,"20706":-1,"20707":-1,"20708":0,"20709":-1,"20710":0,"20711":-1,"20712":0,"20713":3620,"20714":0,"20715":0,"20716":0,"20717":0,"20718":0,"20719":0,"20720":-1,"20721":-1,"20722":474,"20723":-1,"20724":-1,"20725":-1,"20726":0,"20727":-1,"20728":-1,"20729":2139,"20730":-1,"20731":-1,"20732":1791,"20733":3756,"20734":3261,"20735":-1,"20736":-1,"20737":-1,"20738":-1,"20739":0,"20740":-1,"20741":109,"20742":0,"20743":0,"20744":-1,"20745":2546,"20746":0,"20747":0,"20748":2231,"20749":0,"20750":-1,"20751":-1,"20752":3221,"20753":-1,"20754":-1,"20755":0,"20756":-1,"20757":3932,"20758":2644,"20759":-1,"20760":0,"20761":0,"20762":-1,"20763":0,"20764":0,"20765":2484,"20766":-1,"20767":0,"20768":1947,"20769":0,"20770":-1,"20771":0,"20772":0,"20773":1993,"20774":0,"20775":-1,"20776":2558,"20777":-1,"20778":-1,"20779":0,"20780":3028,"20781":0,"20782":0,"20783":-1,"20784":0,"20785":-1,"20786":0,"20787":0,"20788":3834,"20789":397,"20790":0,"20791":0,"20792":-1,"20793":0,"20794":-1,"20795":0,"20796":-1,"20797":0,"20798":0,"20799":-1,"20800":0,"20801":0,"20802":0,"20803":199,"20804":-1,"20805":3086,"20806":0,"20807":0,"20808":0,"20809":3940,"20810":-1,"20811":0,"20812":0,"20813":0,"20814":0,"20815":0,"20816":-1,"20817":-1,"20818":0,"20819":0,"20820":0,"20821":0,"20822":0,"20823":-1,"20824":-1,"20825":3599,"20826":-1,"20827":0,"20828":0,"20829":-1,"20830":-1,"20831":0,"20832":0,"20833":0,"20834":0,"20835":0,"20836":2265,"20837":0,"20838":0,"20839":0,"20840":0,"20841":2486,"20842":-1,"20843":4035,"20844":0,"20845":2525,"20846":-1,"20847":0,"20848":2396,"20849":-1,"20850":-1,"20851":0,"20852":-1,"20853":0,"20854":0,"20855":2525,"20856":421,"20857":0,"20858":0,"20859":0,"20860":2946,"20861":-1,"20862":3947,"20863":-1,"20864":0,"20865":-1,"20866":-1,"20867":0,"20868":0,"20869":-1,"20870":-1,"20871":-1,"20872":0,"20873":3875,"20874":3910,"20875":0,"20876":-1,"20877":0,"20878":0,"20879":0,"20880":0,"20881":0,"20882":-1,"20883":-1,"20884":-1,"20885":0,"20886":0,"20887":0,"20888":0,"20889":0,"20890":-1,"20891":0,"20892":-1,"20893":-1,"20894":-1,"20895":0,"20896":0,"20897":0,"20898":-1,"20899":0,"20900":3920,"20901":-1,"20902":0,"20903":3499,"20904":0,"20905":-1,"20906":-1,"20907":3498,"20908":0,"20909":-1,"20910":0,"20911":2733,"20912":3258,"20913":0,"20914":0,"20915":3099,"20916":-1,"20917":0,"20918":3569,"20919":-1,"20920":0,"20921":0,"20922":3613,"20923":-1,"20924":-1,"20925":2593,"20926":-1,"20927":3459,"20928":0,"20929":0,"20930":-1,"20931":2350,"20932":0,"20933":3176,"20934":-1,"20935":0,"20936":0,"20937":-1,"20938":0,"20939":0,"20940":3931,"20941":0,"20942":0,"20943":3663,"20944":-1,"20945":2615,"20946":0,"20947":300,"20948":-1,"20949":-1,"20950":432,"20951":2064,"20952":3998,"20953":0,"20954":0,"20955":148,"20956":-1,"20957":2236,"20958":-1,"20959":0,"20960":0,"20961":0,"20962":0,"20963":2151,"20964":-1,"20965":4047,"20966":0,"20967":0,"20968":-1,"20969":3415,"20970":2315,"20971":0,"20972":0,"20973":-1,"20974":1789,"20975":3915,"20976":0,"20977":2780,"20978":3706,"20979":0,"20980":0,"20981":-1,"20982":143,"20983":0,"20984":-1,"20985":-1,"20986":3477,"20987":0,"20988":-1,"20989":-1,"20990":0,"20991":3668,"20992":0,"20993":2120,"20994":-1,"20995":-1,"20996":0,"20997":0,"20998":0,"20999":3973,"21000":0,"21001":-1,"21002":0,"21003":-1,"21004":-1,"21005":0,"21006":0,"21007":0,"21008":0,"21009":0,"21010":3359,"21011":2862,"21012":2859,"21013":3747,"21014":407,"21015":0,"21016":0,"21017":0,"21018":0,"21019":3410,"21020":-1,"21021":-1,"21022":0,"21023":3933,"21024":-1,"21025":3226,"21026":-1,"21027":2218,"21028":0,"21029":1922,"21030":0,"21031":0,"21032":0,"21033":-1,"21034":0,"21035":0,"21036":0,"21037":3282,"21038":0,"21039":-1,"21040":-1,"21041":0,"21042":426,"21043":0,"21044":2733,"21045":0,"21046":0,"21047":0,"21048":0,"21049":-1,"21050":-1,"21051":2074,"21052":-1,"21053":0,"21054":2239,"21055":3476,"21056":0,"21057":0,"21058":0,"21059":-1,"21060":0,"21061":3331,"21062":0,"21063":0,"21064":-1,"21065":-1,"21066":0,"21067":-1,"21068":3074,"21069":4048,"21070":0,"21071":-1,"21072":74,"21073":-1,"21074":-1,"21075":-1,"21076":0,"21077":-1,"21078":2673,"21079":0,"21080":2034,"21081":-1,"21082":-1,"21083":0,"21084":3847,"21085":-1,"21086":3899,"21087":2548,"21088":-1,"21089":3862,"21090":-1,"21091":-1,"21092":0,"21093":2850,"21094":0,"21095":0,"21096":-1,"21097":-1,"21098":0,"21099":3906,"21100":0,"21101":0,"21102":0,"21103":-1,"21104":261,"21105":267,"21106":0,"21107":-1,"21108":0,"21109":3226,"21110":3025,"21111":2137,"21112":-1,"21113":0,"21114":0,"21115":0,"21116":-1,"21117":0,"21118":0,"21119":0,"21120":0,"21121":0,"21122":-1,"21123":-1,"21124":-1,"21125":2067,"21126":-1,"21127":-1,"21128":0,"21129":-1,"21130":3759,"21131":0,"21132":147,"21133":0,"21134":-1,"21135":-1,"21136":0,"21137":0,"21138":-1,"21139":3032,"21140":-1,"21141":109,"21142":0,"21143":0,"21144":0,"21145":2386,"21146":3653,"21147":0,"21148":0,"21149":-1,"21150":0,"21151":0,"21152":-1,"21153":3984,"21154":-1,"21155":0,"21156":-1,"21157":0,"21158":3219,"21159":0,"21160":-1,"21161":0,"21162":-1,"21163":-1,"21164":3232,"21165":-1,"21166":3624,"21167":0,"21168":0,"21169":0,"21170":0,"21171":-1,"21172":0,"21173":3890,"21174":0,"21175":0,"21176":0,"21177":2974,"21178":-1,"21179":0,"21180":0,"21181":-1,"21182":-1,"21183":-1,"21184":0,"21185":253,"21186":-1,"21187":0,"21188":0,"21189":0,"21190":3485,"21191":0,"21192":0,"21193":-1,"21194":3752,"21195":0,"21196":-1,"21197":0,"21198":0,"21199":0,"21200":0,"21201":0,"21202":2500,"21203":-1,"21204":-1,"21205":0,"21206":0,"21207":0,"21208":3501,"21209":-1,"21210":0,"21211":0,"21212":-1,"21213":-1,"21214":-1,"21215":2809,"21216":3155,"21217":37,"21218":-1,"21219":3442,"21220":-1,"21221":2657,"21222":-1,"21223":0,"21224":0,"21225":-1,"21226":0,"21227":2996,"21228":-1,"21229":-1,"21230":-1,"21231":-1,"21232":-1,"21233":-1,"21234":0,"21235":-1,"21236":0,"21237":-1,"21238":3709,"21239":1948,"21240":139,"21241":-1,"21242":0,"21243":3697,"21244":-1,"21245":0,"21246":0,"21247":-1,"21248":-1,"21249":0,"21250":2872,"21251":3934,"21252":3555,"21253":0,"21254":-1,"21255":-1,"21256":0,"21257":-1,"21258":116,"21259":0,"21260":2125,"21261":0,"21262":-1,"21263":3953,"21264":0,"21265":-1,"21266":0,"21267":1942,"21268":2000,"21269":0,"21270":0,"21271":2054,"21272":-1,"21273":2974,"21274":-1,"21275":0,"21276":0,"21277":2238,"21278":306,"21279":79,"21280":0,"21281":-1,"21282":0,"21283":-1,"21284":0,"21285":0,"21286":-1,"21287":-1,"21288":1924,"21289":3583,"21290":-1,"21291":-1,"21292":0,"21293":-1,"21294":0,"21295":-1,"21296":-1,"21297":0,"21298":0,"21299":-1,"21300":-1,"21301":-1,"21302":0,"21303":0,"21304":4026,"21305":0,"21306":-1,"21307":2843,"21308":-1,"21309":-1,"21310":-1,"21311":0,"21312":0,"21313":-1,"21314":0,"21315":-1,"21316":0,"21317":0,"21318":-1,"21319":-1,"21320":0,"21321":0,"21322":0,"21323":-1,"21324":-1,"21325":2616,"21326":0,"21327":0,"21328":-1,"21329":0,"21330":0,"21331":0,"21332":0,"21333":0,"21334":-1,"21335":0,"21336":0,"21337":-1,"21338":3085,"21339":3061,"21340":-1,"21341":0,"21342":2117,"21343":-1,"21344":2757,"21345":2870,"21346":-1,"21347":0,"21348":0,"21349":0,"21350":3186,"21351":0,"21352":-1,"21353":0,"21354":-1,"21355":-1,"21356":0,"21357":-1,"21358":-1,"21359":0,"21360":0,"21361":-1,"21362":-1,"21363":1964,"21364":3744,"21365":0,"21366":2031,"21367":222,"21368":-1,"21369":0,"21370":2730,"21371":0,"21372":0,"21373":0,"21374":-1,"21375":0,"21376":0,"21377":1796,"21378":-1,"21379":2605,"21380":0,"21381":0,"21382":-1,"21383":0,"21384":48,"21385":0,"21386":0,"21387":4001,"21388":-1,"21389":-1,"21390":157,"21391":0,"21392":-1,"21393":0,"21394":-1,"21395":0,"21396":3826,"21397":-1,"21398":0,"21399":2815,"21400":0,"21401":0,"21402":0,"21403":0,"21404":0,"21405":-1,"21406":0,"21407":2946,"21408":2615,"21409":-1,"21410":-1,"21411":2356,"21412":0,"21413":2782,"21414":-1,"21415":-1,"21416":-1,"21417":-1,"21418":0,"21419":-1,"21420":-1,"21421":0,"21422":118,"21423":4005,"21424":0,"21425":0,"21426":-1,"21427":0,"21428":0,"21429":0,"21430":0,"21431":0,"21432":0,"21433":-1,"21434":-1,"21435":0,"21436":-1,"21437":0,"21438":-1,"21439":2905,"21440":3830,"21441":0,"21442":3521,"21443":0,"21444":0,"21445":0,"21446":1927,"21447":-1,"21448":-1,"21449":-1,"21450":0,"21451":2067,"21452":-1,"21453":0,"21454":3551,"21455":0,"21456":-1,"21457":-1,"21458":3619,"21459":1999,"21460":0,"21461":0,"21462":0,"21463":2655,"21464":-1,"21465":0,"21466":0,"21467":0,"21468":0,"21469":0,"21470":-1,"21471":0,"21472":3845,"21473":327,"21474":0,"21475":0,"21476":-1,"21477":-1,"21478":0,"21479":0,"21480":0,"21481":-1,"21482":4049,"21483":-1,"21484":2285,"21485":276,"21486":0,"21487":-1,"21488":-1,"21489":0,"21490":0,"21491":0,"21492":0,"21493":-1,"21494":0,"21495":209,"21496":0,"21497":-1,"21498":0,"21499":0,"21500":0,"21501":-1,"21502":0,"21503":-1,"21504":2650,"21505":3608,"21506":-1,"21507":-1,"21508":-1,"21509":0,"21510":0,"21511":0,"21512":0,"21513":0,"21514":3045,"21515":162,"21516":-1,"21517":0,"21518":0,"21519":494,"21520":0,"21521":0,"21522":-1,"21523":4058,"21524":2208,"21525":2830,"21526":3614,"21527":2727,"21528":204,"21529":2787,"21530":0,"21531":0,"21532":-1,"21533":-1,"21534":3625,"21535":-1,"21536":0,"21537":0,"21538":3872,"21539":0,"21540":-1,"21541":3106,"21542":3115,"21543":-1,"21544":1941,"21545":0,"21546":268,"21547":0,"21548":3423,"21549":-1,"21550":0,"21551":0,"21552":-1,"21553":-1,"21554":0,"21555":1882,"21556":3414,"21557":2348,"21558":0,"21559":3771,"21560":0,"21561":0,"21562":0,"21563":2596,"21564":0,"21565":-1,"21566":4004,"21567":-1,"21568":3438,"21569":0,"21570":-1,"21571":-1,"21572":0,"21573":-1,"21574":2498,"21575":0,"21576":-1,"21577":0,"21578":-1,"21579":0,"21580":-1,"21581":0,"21582":-1,"21583":0,"21584":-1,"21585":3819,"21586":0,"21587":-1,"21588":0,"21589":0,"21590":0,"21591":0,"21592":-1,"21593":0,"21594":-1,"21595":0,"21596":3163,"21597":2002,"21598":0,"21599":-1,"21600":0,"21601":-1,"21602":3961,"21603":-1,"21604":2246,"21605":0,"21606":0,"21607":-1,"21608":2316,"21609":3605,"21610":0,"21611":-1,"21612":0,"21613":0,"21614":0,"21615":0,"21616":3790,"21617":251,"21618":-1,"21619":-1,"21620":-1,"21621":0,"21622":-1,"21623":0,"21624":-1,"21625":0,"21626":-1,"21627":-1,"21628":2546,"21629":-1,"21630":-1,"21631":0,"21632":3305,"21633":-1,"21634":0,"21635":-1,"21636":0,"21637":2884,"21638":-1,"21639":-1,"21640":3028,"21641":298,"21642":0,"21643":0,"21644":0,"21645":0,"21646":-1,"21647":-1,"21648":0,"21649":0,"21650":2108,"21651":0,"21652":-1,"21653":0,"21654":0,"21655":0,"21656":0,"21657":-1,"21658":-1,"21659":-1,"21660":-1,"21661":0,"21662":1988,"21663":192,"21664":1939,"21665":0,"21666":-1,"21667":-1,"21668":3645,"21669":0,"21670":0,"21671":2583,"21672":0,"21673":-1,"21674":0,"21675":0,"21676":2132,"21677":0,"21678":0,"21679":0,"21680":3162,"21681":-1,"21682":-1,"21683":2922,"21684":-1,"21685":-1,"21686":2983,"21687":-1,"21688":2521,"21689":0,"21690":32,"21691":-1,"21692":3253,"21693":0,"21694":0,"21695":0,"21696":-1,"21697":0,"21698":0,"21699":0,"21700":0,"21701":2954,"21702":-1,"21703":-1,"21704":4037,"21705":-1,"21706":-1,"21707":0,"21708":0,"21709":0,"21710":0,"21711":3065,"21712":0,"21713":0,"21714":-1,"21715":0,"21716":3012,"21717":0,"21718":0,"21719":0,"21720":-1,"21721":-1,"21722":0,"21723":-1,"21724":0,"21725":0,"21726":0,"21727":0,"21728":2194,"21729":-1,"21730":364,"21731":3497,"21732":-1,"21733":-1,"21734":0,"21735":-1,"21736":3043,"21737":-1,"21738":-1,"21739":0,"21740":2518,"21741":0,"21742":2599,"21743":3291,"21744":0,"21745":3156,"21746":0,"21747":0,"21748":2403,"21749":-1,"21750":-1,"21751":3605,"21752":3974,"21753":1901,"21754":-1,"21755":2543,"21756":0,"21757":307,"21758":-1,"21759":0,"21760":3729,"21761":3874,"21762":0,"21763":0,"21764":-1,"21765":2125,"21766":0,"21767":0,"21768":-1,"21769":0,"21770":0,"21771":0,"21772":2478,"21773":0,"21774":-1,"21775":-1,"21776":163,"21777":0,"21778":-1,"21779":0,"21780":-1,"21781":2768,"21782":-1,"21783":0,"21784":-1,"21785":0,"21786":3958,"21787":-1,"21788":0,"21789":-1,"21790":1872,"21791":3387,"21792":3770,"21793":3908,"21794":-1,"21795":3803,"21796":-1,"21797":-1,"21798":-1,"21799":-1,"21800":0,"21801":0,"21802":2842,"21803":0,"21804":-1,"21805":0,"21806":2988,"21807":249,"21808":0,"21809":0,"21810":0,"21811":3262,"21812":0,"21813":0,"21814":3093,"21815":0,"21816":0,"21817":-1,"21818":137,"21819":303,"21820":2898,"21821":0,"21822":2397,"21823":0,"21824":0,"21825":0,"21826":0,"21827":2014,"21828":2601,"21829":-1,"21830":3406,"21831":0,"21832":-1,"21833":0,"21834":-1,"21835":0,"21836":-1,"21837":1884,"21838":0,"21839":-1,"21840":0,"21841":0,"21842":-1,"21843":3556,"21844":2542,"21845":0,"21846":-1,"21847":2680,"21848":0,"21849":-1,"21850":0,"21851":3217,"21852":-1,"21853":0,"21854":0,"21855":0,"21856":-1,"21857":436,"21858":-1,"21859":0,"21860":3282,"21861":0,"21862":0,"21863":0,"21864":2527,"21865":0,"21866":79,"21867":0,"21868":122,"21869":0,"21870":-1,"21871":-1,"21872":0,"21873":1945,"21874":-1,"21875":0,"21876":-1,"21877":3748,"21878":0,"21879":3396,"21880":0,"21881":0,"21882":2401,"21883":452,"21884":3860,"21885":0,"21886":0,"21887":0,"21888":-1,"21889":3624,"21890":-1,"21891":-1,"21892":0,"21893":0,"21894":25,"21895":0,"21896":-1,"21897":-1,"21898":-1,"21899":-1,"21900":-1,"21901":3724,"21902":0,"21903":3682,"21904":0,"21905":2862,"21906":-1,"21907":1874,"21908":0,"21909":0,"21910":0,"21911":-1,"21912":-1,"21913":3941,"21914":-1,"21915":-1,"21916":-1,"21917":2700,"21918":0,"21919":-1,"21920":0,"21921":-1,"21922":-1,"21923":2933,"21924":146,"21925":-1,"21926":0,"21927":3738,"21928":2295,"21929":-1,"21930":0,"21931":0,"21932":3703,"21933":0,"21934":2509,"21935":0,"21936":3563,"21937":0,"21938":-1,"21939":0,"21940":-1,"21941":2985,"21942":0,"21943":0,"21944":2985,"21945":0,"21946":-1,"21947":2320,"21948":3454,"21949":3407,"21950":0,"21951":0,"21952":0,"21953":0,"21954":-1,"21955":-1,"21956":-1,"21957":-1,"21958":0,"21959":0,"21960":2601,"21961":-1,"21962":0,"21963":-1,"21964":0,"21965":0,"21966":-1,"21967":0,"21968":0,"21969":0,"21970":-1,"21971":0,"21972":-1,"21973":0,"21974":-1,"21975":0,"21976":2253,"21977":-1,"21978":99,"21979":0,"21980":-1,"21981":3571,"21982":0,"21983":3186,"21984":0,"21985":0,"21986":0,"21987":-1,"21988":0,"21989":401,"21990":2109,"21991":0,"21992":-1,"21993":0,"21994":-1,"21995":0,"21996":-1,"21997":0,"21998":0,"21999":0,"22000":-1,"22001":-1,"22002":-1,"22003":3448,"22004":2664,"22005":133,"22006":-1,"22007":319,"22008":0,"22009":1789,"22010":-1,"22011":0,"22012":0,"22013":-1,"22014":0,"22015":-1,"22016":-1,"22017":0,"22018":2246,"22019":2230,"22020":0,"22021":0,"22022":3166,"22023":-1,"22024":-1,"22025":0,"22026":0,"22027":0,"22028":0,"22029":0,"22030":0,"22031":-1,"22032":313,"22033":0,"22034":0,"22035":2618,"22036":0,"22037":0,"22038":0,"22039":2035,"22040":0,"22041":-1,"22042":0,"22043":402,"22044":3057,"22045":0,"22046":498,"22047":-1,"22048":-1,"22049":0,"22050":3773,"22051":0,"22052":-1,"22053":-1,"22054":-1,"22055":-1,"22056":0,"22057":-1,"22058":511,"22059":0,"22060":-1,"22061":-1,"22062":1860,"22063":133,"22064":-1,"22065":3488,"22066":0,"22067":0,"22068":0,"22069":-1,"22070":3916,"22071":0,"22072":0,"22073":1908,"22074":0,"22075":3485,"22076":-1,"22077":0,"22078":0,"22079":-1,"22080":3643,"22081":-1,"22082":-1,"22083":-1,"22084":0,"22085":-1,"22086":0,"22087":-1,"22088":0,"22089":-1,"22090":-1,"22091":2765,"22092":0,"22093":-1,"22094":2777,"22095":-1,"22096":0,"22097":0,"22098":0,"22099":0,"22100":2433,"22101":-1,"22102":-1,"22103":0,"22104":2652,"22105":0,"22106":80,"22107":3199,"22108":3142,"22109":0,"22110":-1,"22111":35,"22112":3847,"22113":2185,"22114":2800,"22115":0,"22116":3723,"22117":-1,"22118":0,"22119":2485,"22120":0,"22121":0,"22122":0,"22123":0,"22124":3590,"22125":3416,"22126":0,"22127":2900,"22128":-1,"22129":0,"22130":0,"22131":469,"22132":-1,"22133":-1,"22134":0,"22135":0,"22136":-1,"22137":-1,"22138":0,"22139":0,"22140":2448,"22141":2010,"22142":100,"22143":2459,"22144":-1,"22145":0,"22146":3269,"22147":0,"22148":3951,"22149":0,"22150":-1,"22151":-1,"22152":-1,"22153":0,"22154":0,"22155":0,"22156":-1,"22157":-1,"22158":0,"22159":0,"22160":-1,"22161":0,"22162":0,"22163":0,"22164":174,"22165":2601,"22166":0,"22167":3949,"22168":-1,"22169":2769,"22170":0,"22171":0,"22172":0,"22173":-1,"22174":-1,"22175":3634,"22176":3267,"22177":-1,"22178":3092,"22179":-1,"22180":-1,"22181":3074,"22182":0,"22183":2639,"22184":-1,"22185":-1,"22186":4013,"22187":0,"22188":-1,"22189":464,"22190":-1,"22191":0,"22192":0,"22193":-1,"22194":-1,"22195":-1,"22196":-1,"22197":0,"22198":-1,"22199":0,"22200":95,"22201":-1,"22202":-1,"22203":-1,"22204":0,"22205":2912,"22206":0,"22207":0,"22208":0,"22209":-1,"22210":165,"22211":2836,"22212":0,"22213":0,"22214":0,"22215":0,"22216":0,"22217":0,"22218":-1,"22219":0,"22220":0,"22221":142,"22222":0,"22223":0,"22224":0,"22225":-1,"22226":0,"22227":0,"22228":0,"22229":0,"22230":-1,"22231":0,"22232":0,"22233":0,"22234":0,"22235":3686,"22236":-1,"22237":-1,"22238":0,"22239":0,"22240":2765,"22241":-1,"22242":0,"22243":2623,"22244":-1,"22245":305,"22246":3859,"22247":2779,"22248":0,"22249":-1,"22250":-1,"22251":-1,"22252":0,"22253":-1,"22254":-1,"22255":3252,"22256":0,"22257":0,"22258":0,"22259":0,"22260":-1,"22261":-1,"22262":0,"22263":0,"22264":-1,"22265":110,"22266":6,"22267":4033,"22268":-1,"22269":0,"22270":0,"22271":0,"22272":0,"22273":0,"22274":0,"22275":-1,"22276":-1,"22277":3740,"22278":2540,"22279":0,"22280":-1,"22281":2202,"22282":0,"22283":3941,"22284":0,"22285":2298,"22286":3429,"22287":-1,"22288":3484,"22289":0,"22290":3972,"22291":-1,"22292":0,"22293":0,"22294":-1,"22295":-1,"22296":-1,"22297":0,"22298":1913,"22299":0,"22300":0,"22301":0,"22302":0,"22303":0,"22304":0,"22305":0,"22306":0,"22307":0,"22308":-1,"22309":0,"22310":-1,"22311":0,"22312":1910,"22313":366,"22314":0,"22315":3571,"22316":3413,"22317":0,"22318":-1,"22319":-1,"22320":3892,"22321":0,"22322":0,"22323":3983,"22324":-1,"22325":0,"22326":-1,"22327":0,"22328":3644,"22329":3900,"22330":-1,"22331":-1,"22332":3198,"22333":-1,"22334":-1,"22335":0,"22336":0,"22337":-1,"22338":0,"22339":-1,"22340":3631,"22341":-1,"22342":0,"22343":0,"22344":2425,"22345":0,"22346":-1,"22347":2917,"22348":-1,"22349":3581,"22350":-1,"22351":59,"22352":0,"22353":2435,"22354":0,"22355":-1,"22356":2975,"22357":0,"22358":0,"22359":0,"22360":0,"22361":0,"22362":-1,"22363":-1,"22364":-1,"22365":-1,"22366":0,"22367":0,"22368":-1,"22369":0,"22370":0,"22371":3827,"22372":0,"22373":0,"22374":0,"22375":3142,"22376":-1,"22377":178,"22378":349,"22379":3520,"22380":0,"22381":-1,"22382":0,"22383":0,"22384":0,"22385":3985,"22386":0,"22387":2956,"22388":3167,"22389":0,"22390":3047,"22391":-1,"22392":-1,"22393":0,"22394":2912,"22395":2979,"22396":0,"22397":0,"22398":3778,"22399":0,"22400":0,"22401":0,"22402":0,"22403":0,"22404":-1,"22405":0,"22406":-1,"22407":0,"22408":0,"22409":0,"22410":0,"22411":1988,"22412":-1,"22413":0,"22414":0,"22415":3965,"22416":-1,"22417":79,"22418":0,"22419":1855,"22420":1793,"22421":0,"22422":0,"22423":0,"22424":-1,"22425":0,"22426":2726,"22427":0,"22428":0,"22429":0,"22430":2770,"22431":0,"22432":3028,"22433":2146,"22434":-1,"22435":-1,"22436":0,"22437":2977,"22438":-1,"22439":0,"22440":0,"22441":-1,"22442":2388,"22443":1945,"22444":-1,"22445":0,"22446":-1,"22447":-1,"22448":0,"22449":0,"22450":1776,"22451":-1,"22452":0,"22453":0,"22454":0,"22455":0,"22456":0,"22457":2479,"22458":0,"22459":0,"22460":3371,"22461":0,"22462":2708,"22463":-1,"22464":-1,"22465":0,"22466":0,"22467":0,"22468":0,"22469":0,"22470":2471,"22471":0,"22472":-1,"22473":-1,"22474":-1,"22475":0,"22476":0,"22477":2853,"22478":2905,"22479":-1,"22480":0,"22481":2835,"22482":0,"22483":-1,"22484":3072,"22485":0,"22486":-1,"22487":-1,"22488":425,"22489":0,"22490":0,"22491":-1,"22492":2292,"22493":2436,"22494":0,"22495":-1,"22496":0,"22497":446,"22498":3707,"22499":3339,"22500":325,"22501":1855,"22502":514,"22503":-1,"22504":0,"22505":0,"22506":0,"22507":3935,"22508":0,"22509":0,"22510":-1,"22511":3912,"22512":2798,"22513":0,"22514":-1,"22515":0,"22516":0,"22517":-1,"22518":-1,"22519":0,"22520":0,"22521":3431,"22522":-1,"22523":-1,"22524":3878,"22525":-1,"22526":-1,"22527":3607,"22528":0,"22529":3982,"22530":3922,"22531":-1,"22532":0,"22533":-1,"22534":0,"22535":2694,"22536":3602,"22537":0,"22538":193,"22539":-1,"22540":0,"22541":-1,"22542":-1,"22543":0,"22544":0,"22545":-1,"22546":0,"22547":0,"22548":3954,"22549":0,"22550":0,"22551":0,"22552":0,"22553":0,"22554":2289,"22555":0,"22556":-1,"22557":3780,"22558":-1,"22559":-1,"22560":-1,"22561":-1,"22562":0,"22563":4042,"22564":0,"22565":3882,"22566":-1,"22567":-1,"22568":-1,"22569":3274,"22570":3166,"22571":3835,"22572":-1,"22573":-1,"22574":-1,"22575":-1,"22576":0,"22577":0,"22578":0,"22579":-1,"22580":2718,"22581":-1,"22582":0,"22583":2501,"22584":0,"22585":0,"22586":0,"22587":0,"22588":83,"22589":-1,"22590":219,"22591":-1,"22592":-1,"22593":0,"22594":-1,"22595":3448,"22596":0,"22597":0,"22598":2794,"22599":-1,"22600":0,"22601":3300,"22602":0,"22603":3112,"22604":-1,"22605":2550,"22606":3217,"22607":-1,"22608":0,"22609":0,"22610":3018,"22611":0,"22612":-1,"22613":-1,"22614":0,"22615":0,"22616":478,"22617":0,"22618":0,"22619":0,"22620":0,"22621":0,"22622":-1,"22623":3265,"22624":0,"22625":-1,"22626":0,"22627":0,"22628":-1,"22629":-1,"22630":2895,"22631":127,"22632":0,"22633":3893,"22634":0,"22635":2921,"22636":0,"22637":-1,"22638":0,"22639":-1,"22640":2178,"22641":0,"22642":0,"22643":-1,"22644":0,"22645":-1,"22646":-1,"22647":222,"22648":-1,"22649":3476,"22650":2487,"22651":1878,"22652":2672,"22653":196,"22654":0,"22655":0,"22656":-1,"22657":0,"22658":0,"22659":2235,"22660":0,"22661":0,"22662":0,"22663":0,"22664":1966,"22665":0,"22666":0,"22667":-1,"22668":0,"22669":0,"22670":-1,"22671":205,"22672":1898,"22673":-1,"22674":2010,"22675":2953,"22676":0,"22677":-1,"22678":2500,"22679":469,"22680":0,"22681":0,"22682":-1,"22683":1980,"22684":-1,"22685":0,"22686":-1,"22687":2299,"22688":-1,"22689":0,"22690":0,"22691":0,"22692":-1,"22693":2045,"22694":0,"22695":3009,"22696":0,"22697":2278,"22698":0,"22699":0,"22700":0,"22701":0,"22702":0,"22703":3501,"22704":-1,"22705":2753,"22706":-1,"22707":-1,"22708":0,"22709":0,"22710":0,"22711":0,"22712":0,"22713":0,"22714":0,"22715":0,"22716":0,"22717":0,"22718":0,"22719":-1,"22720":309,"22721":-1,"22722":3421,"22723":0,"22724":2378,"22725":0,"22726":-1,"22727":3101,"22728":0,"22729":-1,"22730":-1,"22731":-1,"22732":2109,"22733":0,"22734":0,"22735":0,"22736":-1,"22737":-1,"22738":2672,"22739":0,"22740":0,"22741":0,"22742":-1,"22743":0,"22744":0,"22745":0,"22746":1775,"22747":3595,"22748":0,"22749":-1,"22750":0,"22751":0,"22752":2536,"22753":2341,"22754":2694,"22755":-1,"22756":0,"22757":0,"22758":2108,"22759":-1,"22760":0,"22761":-1,"22762":0,"22763":-1,"22764":-1,"22765":-1,"22766":-1,"22767":3878,"22768":0,"22769":-1,"22770":0,"22771":3579,"22772":2235,"22773":-1,"22774":0,"22775":2035,"22776":3756,"22777":0,"22778":-1,"22779":0,"22780":-1,"22781":0,"22782":0,"22783":0,"22784":0,"22785":-1,"22786":0,"22787":3916,"22788":-1,"22789":4057,"22790":3255,"22791":0,"22792":0,"22793":0,"22794":0,"22795":-1,"22796":2058,"22797":0,"22798":2420,"22799":-1,"22800":0,"22801":0,"22802":0,"22803":321,"22804":0,"22805":-1,"22806":0,"22807":-1,"22808":-1,"22809":-1,"22810":0,"22811":-1,"22812":344,"22813":3857,"22814":-1,"22815":0,"22816":3831,"22817":0,"22818":3740,"22819":0,"22820":-1,"22821":0,"22822":0,"22823":3342,"22824":0,"22825":0,"22826":-1,"22827":-1,"22828":100,"22829":-1,"22830":-1,"22831":0,"22832":0,"22833":3295,"22834":-1,"22835":3011,"22836":-1,"22837":3003,"22838":2871,"22839":-1,"22840":-1,"22841":0,"22842":-1,"22843":285,"22844":-1,"22845":-1,"22846":3836,"22847":0,"22848":-1,"22849":0,"22850":0,"22851":-1,"22852":0,"22853":0,"22854":0,"22855":0,"22856":-1,"22857":0,"22858":2594,"22859":2951,"22860":3746,"22861":-1,"22862":-1,"22863":-1,"22864":0,"22865":-1,"22866":0,"22867":85,"22868":261,"22869":0,"22870":98,"22871":0,"22872":-1,"22873":-1,"22874":-1,"22875":2167,"22876":2255,"22877":-1,"22878":0,"22879":0,"22880":2012,"22881":0,"22882":-1,"22883":3955,"22884":0,"22885":-1,"22886":2399,"22887":3379,"22888":0,"22889":0,"22890":216,"22891":0,"22892":3202,"22893":0,"22894":0,"22895":-1,"22896":-1,"22897":0,"22898":0,"22899":0,"22900":-1,"22901":-1,"22902":-1,"22903":-1,"22904":1800,"22905":-1,"22906":0,"22907":-1,"22908":0,"22909":0,"22910":0,"22911":3076,"22912":3188,"22913":-1,"22914":484,"22915":0,"22916":-1,"22917":0,"22918":-1,"22919":2025,"22920":0,"22921":-1,"22922":0,"22923":3011,"22924":1991,"22925":0,"22926":0,"22927":0,"22928":-1,"22929":0,"22930":0,"22931":-1,"22932":0,"22933":-1,"22934":-1,"22935":-1,"22936":0,"22937":3923,"22938":2003,"22939":0,"22940":0,"22941":2585,"22942":3012,"22943":0,"22944":2786,"22945":0,"22946":0,"22947":354,"22948":0,"22949":0,"22950":-1,"22951":-1,"22952":0,"22953":-1,"22954":-1,"22955":0,"22956":76,"22957":2784,"22958":0,"22959":3506,"22960":-1,"22961":-1,"22962":-1,"22963":0,"22964":2529,"22965":-1,"22966":0,"22967":3787,"22968":0,"22969":-1,"22970":2068,"22971":0,"22972":-1,"22973":3673,"22974":-1,"22975":0,"22976":-1,"22977":0,"22978":3964,"22979":0,"22980":-1,"22981":0,"22982":0,"22983":-1,"22984":2720,"22985":-1,"22986":171,"22987":0,"22988":0,"22989":48,"22990":-1,"22991":1857,"22992":0,"22993":0,"22994":0,"22995":2184,"22996":0,"22997":0,"22998":3737,"22999":0,"23000":0,"23001":0,"23002":0,"23003":-1,"23004":2733,"23005":-1,"23006":1906,"23007":-1,"23008":-1,"23009":0,"23010":-1,"23011":3419,"23012":0,"23013":-1,"23014":0,"23015":0,"23016":-1,"23017":-1,"23018":-1,"23019":0,"23020":416,"23021":2946,"23022":3215,"23023":0,"23024":0,"23025":-1,"23026":3368,"23027":3045,"23028":3492,"23029":-1,"23030":0,"23031":0,"23032":2940,"23033":0,"23034":0,"23035":0,"23036":-1,"23037":3301,"23038":-1,"23039":-1,"23040":1937,"23041":0,"23042":160,"23043":0,"23044":-1,"23045":3473,"23046":0,"23047":0,"23048":-1,"23049":-1,"23050":0,"23051":0,"23052":0,"23053":0,"23054":0,"23055":0,"23056":3326,"23057":410,"23058":0,"23059":0,"23060":0,"23061":1816,"23062":0,"23063":-1,"23064":2103,"23065":4049,"23066":-1,"23067":0,"23068":-1,"23069":0,"23070":0,"23071":3782,"23072":0,"23073":3579,"23074":0,"23075":-1,"23076":0,"23077":2637,"23078":0,"23079":0,"23080":0,"23081":3039,"23082":-1,"23083":-1,"23084":0,"23085":0,"23086":0,"23087":-1,"23088":0,"23089":313,"23090":0,"23091":-1,"23092":0,"23093":-1,"23094":0,"23095":-1,"23096":0,"23097":0,"23098":0,"23099":3152,"23100":3184,"23101":-1,"23102":-1,"23103":0,"23104":0,"23105":-1,"23106":2148,"23107":-1,"23108":78,"23109":-1,"23110":0,"23111":0,"23112":-1,"23113":2815,"23114":0,"23115":2957,"23116":0,"23117":0,"23118":3502,"23119":0,"23120":0,"23121":80,"23122":-1,"23123":-1,"23124":2678,"23125":0,"23126":2802,"23127":0,"23128":0,"23129":0,"23130":-1,"23131":-1,"23132":-1,"23133":2773,"23134":-1,"23135":0,"23136":0,"23137":2518,"23138":0,"23139":188,"23140":1911,"23141":0,"23142":2494,"23143":0,"23144":3844,"23145":2818,"23146":0,"23147":3319,"23148":0,"23149":0,"23150":0,"23151":0,"23152":-1,"23153":0,"23154":-1,"23155":-1,"23156":0,"23157":0,"23158":0,"23159":502,"23160":0,"23161":26,"23162":-1,"23163":0,"23164":-1,"23165":3067,"23166":0,"23167":0,"23168":-1,"23169":-1,"23170":3810,"23171":0,"23172":0,"23173":0,"23174":-1,"23175":0,"23176":-1,"23177":0,"23178":-1,"23179":0,"23180":0,"23181":-1,"23182":3853,"23183":0,"23184":2337,"23185":2638,"23186":0,"23187":0,"23188":2785,"23189":-1,"23190":-1,"23191":3198,"23192":0,"23193":155,"23194":0,"23195":3622,"23196":-1,"23197":0,"23198":1924,"23199":0,"23200":0,"23201":0,"23202":-1,"23203":-1,"23204":3998,"23205":0,"23206":3381,"23207":-1,"23208":-1,"23209":3336,"23210":-1,"23211":-1,"23212":0,"23213":0,"23214":3382,"23215":-1,"23216":-1,"23217":0,"23218":-1,"23219":0,"23220":0,"23221":0,"23222":0,"23223":-1,"23224":-1,"23225":-1,"23226":313,"23227":0,"23228":304,"23229":2655,"23230":0,"23231":3414,"23232":-1,"23233":-1,"23234":-1,"23235":0,"23236":-1,"23237":-1,"23238":2407,"23239":2747,"23240":0,"23241":-1,"23242":0,"23243":-1,"23244":4002,"23245":0,"23246":0,"23247":0,"23248":-1,"23249":0,"23250":0,"23251":4024,"23252":0,"23253":1932,"23254":0,"23255":3441,"23256":0,"23257":0,"23258":0,"23259":3214,"23260":-1,"23261":-1,"23262":0,"23263":3704,"23264":-1,"23265":0,"23266":217,"23267":0,"23268":0,"23269":0,"23270":0,"23271":-1,"23272":0,"23273":0,"23274":2664,"23275":0,"23276":-1,"23277":0,"23278":3028,"23279":0,"23280":-1,"23281":0,"23282":205,"23283":0,"23284":-1,"23285":0,"23286":0,"23287":-1,"23288":-1,"23289":0,"23290":3464,"23291":-1,"23292":95,"23293":-1,"23294":0,"23295":3578,"23296":0,"23297":0,"23298":-1,"23299":0,"23300":0,"23301":0,"23302":0,"23303":3938,"23304":-1,"23305":0,"23306":0,"23307":0,"23308":0,"23309":3048,"23310":0,"23311":503,"23312":0,"23313":0,"23314":0,"23315":0,"23316":-1,"23317":-1,"23318":-1,"23319":2253,"23320":0,"23321":0,"23322":1921,"23323":-1,"23324":0,"23325":3747,"23326":-1,"23327":2291,"23328":-1,"23329":0,"23330":0,"23331":-1,"23332":0,"23333":0,"23334":0,"23335":-1,"23336":1999,"23337":-1,"23338":3701,"23339":-1,"23340":0,"23341":-1,"23342":0,"23343":0,"23344":-1,"23345":0,"23346":3558,"23347":-1,"23348":0,"23349":0,"23350":0,"23351":-1,"23352":0,"23353":0,"23354":-1,"23355":0,"23356":-1,"23357":2452,"23358":2627,"23359":3191,"23360":-1,"23361":2269,"23362":-1,"23363":458,"23364":0,"23365":-1,"23366":-1,"23367":0,"23368":0,"23369":-1,"23370":3484,"23371":3441,"23372":-1,"23373":2069,"23374":0,"23375":0,"23376":0,"23377":-1,"23378":-1,"23379":-1,"23380":0,"23381":-1,"23382":143,"23383":0,"23384":-1,"23385":2436,"23386":0,"23387":-1,"23388":-1,"23389":0,"23390":0,"23391":-1,"23392":136,"23393":0,"23394":-1,"23395":-1,"23396":-1,"23397":-1,"23398":0,"23399":2936,"23400":-1,"23401":0,"23402":-1,"23403":0,"23404":0,"23405":0,"23406":0,"23407":0,"23408":-1,"23409":0,"23410":0,"23411":0,"23412":-1,"23413":0,"23414":3561,"23415":0,"23416":-1,"23417":3025,"23418":2451,"23419":-1,"23420":0,"23421":0,"23422":2329,"23423":-1,"23424":1828,"23425":2724,"23426":0,"23427":-1,"23428":334,"23429":-1,"23430":0,"23431":-1,"23432":0,"23433":0,"23434":-1,"23435":-1,"23436":0,"23437":-1,"23438":0,"23439":-1,"23440":0,"23441":-1,"23442":0,"23443":3945,"23444":0,"23445":2058,"23446":0,"23447":-1,"23448":-1,"23449":0,"23450":0,"23451":0,"23452":3095,"23453":-1,"23454":-1,"23455":-1,"23456":0,"23457":0,"23458":-1,"23459":0,"23460":-1,"23461":2668,"23462":-1,"23463":-1,"23464":45,"23465":-1,"23466":-1,"23467":-1,"23468":0,"23469":0,"23470":-1,"23471":0,"23472":2642,"23473":-1,"23474":0,"23475":0,"23476":0,"23477":0,"23478":3089,"23479":3949,"23480":0,"23481":306,"23482":1856,"23483":1995,"23484":-1,"23485":0,"23486":3116,"23487":-1,"23488":0,"23489":0,"23490":-1,"23491":-1,"23492":-1,"23493":-1,"23494":0,"23495":1909,"23496":0,"23497":3350,"23498":0,"23499":-1,"23500":3314,"23501":0,"23502":0,"23503":1873,"23504":0,"23505":2651,"23506":2768,"23507":0,"23508":0,"23509":-1,"23510":2338,"23511":-1,"23512":-1,"23513":0,"23514":0,"23515":-1,"23516":-1,"23517":2884,"23518":0,"23519":3012,"23520":-1,"23521":0,"23522":0,"23523":3551,"23524":3078,"23525":-1,"23526":0,"23527":-1,"23528":-1,"23529":3845,"23530":0,"23531":-1,"23532":385,"23533":0,"23534":0,"23535":254,"23536":-1,"23537":2850,"23538":-1,"23539":0,"23540":93,"23541":-1,"23542":3882,"23543":1923,"23544":-1,"23545":0,"23546":1949,"23547":133,"23548":3897,"23549":-1,"23550":-1,"23551":0,"23552":-1,"23553":-1,"23554":0,"23555":0,"23556":-1,"23557":2739,"23558":-1,"23559":0,"23560":0,"23561":0,"23562":0,"23563":0,"23564":-1,"23565":4049,"23566":-1,"23567":3946,"23568":-1,"23569":-1,"23570":3299,"23571":-1,"23572":0,"23573":3117,"23574":2336,"23575":-1,"23576":261,"23577":-1,"23578":0,"23579":3408,"23580":-1,"23581":0,"23582":0,"23583":-1,"23584":0,"23585":0,"23586":0,"23587":-1,"23588":0,"23589":-1,"23590":95,"23591":0,"23592":-1,"23593":0,"23594":-1,"23595":-1,"23596":0,"23597":3266,"23598":0,"23599":0,"23600":3016,"23601":3711,"23602":3666,"23603":-1,"23604":2098,"23605":0,"23606":3397,"23607":3262,"23608":-1,"23609":118,"23610":2507,"23611":-1,"23612":0,"23613":-1,"23614":0,"23615":0,"23616":0,"23617":-1,"23618":-1,"23619":0,"23620":0,"23621":0,"23622":-1,"23623":-1,"23624":0,"23625":2781,"23626":-1,"23627":0,"23628":-1,"23629":53,"23630":0,"23631":0,"23632":2045,"23633":0,"23634":-1,"23635":2213,"23636":3273,"23637":2509,"23638":0,"23639":0,"23640":0,"23641":-1,"23642":-1,"23643":-1,"23644":-1,"23645":185,"23646":131,"23647":0,"23648":0,"23649":2890,"23650":0,"23651":-1,"23652":0,"23653":0,"23654":325,"23655":3063,"23656":0,"23657":0,"23658":2508,"23659":-1,"23660":3019,"23661":0,"23662":-1,"23663":2793,"23664":0,"23665":2553,"23666":0,"23667":2634,"23668":0,"23669":3471,"23670":0,"23671":0,"23672":-1,"23673":0,"23674":0,"23675":341,"23676":-1,"23677":-1,"23678":-1,"23679":-1,"23680":-1,"23681":0,"23682":374,"23683":3040,"23684":0,"23685":0,"23686":-1,"23687":0,"23688":-1,"23689":0,"23690":-1,"23691":-1,"23692":3304,"23693":0,"23694":0,"23695":2208,"23696":-1,"23697":0,"23698":0,"23699":3678,"23700":3717,"23701":416,"23702":3078,"23703":-1,"23704":3862,"23705":-1,"23706":0,"23707":-1,"23708":0,"23709":-1,"23710":359,"23711":-1,"23712":-1,"23713":3109,"23714":0,"23715":2322,"23716":2601,"23717":0,"23718":2633,"23719":0,"23720":0,"23721":0,"23722":3614,"23723":-1,"23724":2625,"23725":0,"23726":2263,"23727":0,"23728":67,"23729":152,"23730":0,"23731":3539,"23732":-1,"23733":0,"23734":0,"23735":0,"23736":2822,"23737":2198,"23738":4022,"23739":0,"23740":0,"23741":-1,"23742":0,"23743":0,"23744":0,"23745":-1,"23746":-1,"23747":0,"23748":-1,"23749":0,"23750":0,"23751":0,"23752":3763,"23753":-1,"23754":0,"23755":0,"23756":2546,"23757":0,"23758":0,"23759":-1,"23760":0,"23761":-1,"23762":-1,"23763":3854,"23764":-1,"23765":0,"23766":0,"23767":0,"23768":0,"23769":2643,"23770":3531,"23771":0,"23772":2493,"23773":0,"23774":-1,"23775":3737,"23776":-1,"23777":-1,"23778":-1,"23779":3286,"23780":0,"23781":410,"23782":0,"23783":2020,"23784":0,"23785":-1,"23786":0,"23787":0,"23788":0,"23789":-1,"23790":-1,"23791":-1,"23792":0,"23793":-1,"23794":-1,"23795":1934,"23796":0,"23797":-1,"23798":-1,"23799":0,"23800":0,"23801":0,"23802":0,"23803":0,"23804":0,"23805":0,"23806":0,"23807":-1,"23808":0,"23809":2689,"23810":-1,"23811":0,"23812":0,"23813":-1,"23814":3704,"23815":1991,"23816":0,"23817":-1,"23818":0,"23819":0,"23820":-1,"23821":-1,"23822":3008,"23823":-1,"23824":0,"23825":0,"23826":3024,"23827":-1,"23828":-1,"23829":0,"23830":0,"23831":-1,"23832":3088,"23833":118,"23834":-1,"23835":0,"23836":3041,"23837":0,"23838":-1,"23839":309,"23840":0,"23841":0,"23842":3919,"23843":-1,"23844":-1,"23845":0,"23846":-1,"23847":-1,"23848":-1,"23849":0,"23850":-1,"23851":-1,"23852":-1,"23853":0,"23854":0,"23855":2762,"23856":-1,"23857":-1,"23858":0,"23859":0,"23860":-1,"23861":0,"23862":4052,"23863":0,"23864":3189,"23865":0,"23866":0,"23867":-1,"23868":0,"23869":0,"23870":0,"23871":0,"23872":0,"23873":-1,"23874":0,"23875":3491,"23876":-1,"23877":3305,"23878":0,"23879":0,"23880":4013,"23881":3029,"23882":-1,"23883":-1,"23884":-1,"23885":186,"23886":-1,"23887":0,"23888":0,"23889":-1,"23890":0,"23891":-1,"23892":0,"23893":-1,"23894":-1,"23895":0,"23896":0,"23897":0,"23898":0,"23899":0,"23900":2162,"23901":0,"23902":0,"23903":-1,"23904":450,"23905":0,"23906":3784,"23907":0,"23908":0,"23909":-1,"23910":2249,"23911":0,"23912":0,"23913":-1,"23914":0,"23915":-1,"23916":0,"23917":3051,"23918":0,"23919":-1,"23920":-1,"23921":-1,"23922":-1,"23923":0,"23924":2933,"23925":0,"23926":-1,"23927":0,"23928":2627,"23929":0,"23930":-1,"23931":508,"23932":0,"23933":0,"23934":3920,"23935":0,"23936":0,"23937":2868,"23938":3531,"23939":-1,"23940":0,"23941":-1,"23942":0,"23943":-1,"23944":-1,"23945":0,"23946":-1,"23947":0,"23948":0,"23949":2913,"23950":-1,"23951":-1,"23952":0,"23953":3330,"23954":0,"23955":0,"23956":0,"23957":3706,"23958":-1,"23959":-1,"23960":0,"23961":0,"23962":3501,"23963":0,"23964":0,"23965":0,"23966":-1,"23967":-1,"23968":0,"23969":2500,"23970":0,"23971":0,"23972":0,"23973":0,"23974":0,"23975":0,"23976":-1,"23977":-1,"23978":3787,"23979":3517,"23980":0,"23981":0,"23982":353,"23983":0,"23984":-1,"23985":3178,"23986":1999,"23987":0,"23988":0,"23989":0,"23990":-1,"23991":2275,"23992":3552,"23993":0,"23994":0,"23995":-1,"23996":3291,"23997":-1,"23998":-1,"23999":1844,"24000":0,"24001":462,"24002":0,"24003":0,"24004":0,"24005":-1,"24006":0,"24007":0,"24008":0,"24009":232,"24010":3848,"24011":-1,"24012":-1,"24013":3263,"24014":0,"24015":-1,"24016":3556,"24017":-1,"24018":-1,"24019":-1,"24020":0,"24021":3778,"24022":0,"24023":0,"24024":0,"24025":0,"24026":0,"24027":192,"24028":-1,"24029":0,"24030":2684,"24031":0,"24032":0,"24033":-1,"24034":0,"24035":2120,"24036":-1,"24037":0,"24038":0,"24039":-1,"24040":0,"24041":0,"24042":3456,"24043":2315,"24044":-1,"24045":0,"24046":-1,"24047":2165,"24048":-1,"24049":0,"24050":2226,"24051":0,"24052":-1,"24053":-1,"24054":0,"24055":0,"24056":0,"24057":0,"24058":-1,"24059":0,"24060":163,"24061":0,"24062":0,"24063":-1,"24064":-1,"24065":0,"24066":0,"24067":0,"24068":0,"24069":2709,"24070":0,"24071":2733,"24072":0,"24073":3132,"24074":2671,"24075":2913,"24076":0,"24077":-1,"24078":0,"24079":0,"24080":-1,"24081":0,"24082":0,"24083":1839,"24084":0,"24085":0,"24086":-1,"24087":0,"24088":-1,"24089":3259,"24090":3811,"24091":2882,"24092":-1,"24093":0,"24094":2019,"24095":-1,"24096":0,"24097":0,"24098":-1,"24099":-1,"24100":0,"24101":-1,"24102":3155,"24103":0,"24104":2456,"24105":0,"24106":0,"24107":0,"24108":3185,"24109":0,"24110":0,"24111":0,"24112":0,"24113":2779,"24114":0,"24115":0,"24116":80,"24117":0,"24118":0,"24119":0,"24120":0,"24121":2766,"24122":0,"24123":0,"24124":0,"24125":-1,"24126":-1,"24127":2044,"24128":0,"24129":3795,"24130":-1,"24131":-1,"24132":-1,"24133":0,"24134":-1,"24135":2163,"24136":-1,"24137":0,"24138":-1,"24139":-1,"24140":0,"24141":-1,"24142":-1,"24143":0,"24144":39,"24145":-1,"24146":-1,"24147":-1,"24148":-1,"24149":0,"24150":0,"24151":2486,"24152":0,"24153":-1,"24154":-1,"24155":0,"24156":358,"24157":-1,"24158":-1,"24159":2408,"24160":-1,"24161":0,"24162":0,"24163":0,"24164":0,"24165":3117,"24166":-1,"24167":-1,"24168":-1,"24169":-1,"24170":0,"24171":3557,"24172":0,"24173":-1,"24174":0,"24175":-1,"24176":2390,"24177":-1,"24178":-1,"24179":3747,"24180":0,"24181":-1,"24182":2808,"24183":0,"24184":-1,"24185":-1,"24186":2168,"24187":0,"24188":236,"24189":0,"24190":-1,"24191":-1,"24192":292,"24193":2744,"24194":0,"24195":1876,"24196":2456,"24197":4,"24198":0,"24199":2810,"24200":-1,"24201":0,"24202":0,"24203":-1,"24204":-1,"24205":2910,"24206":-1,"24207":0,"24208":0,"24209":1811,"24210":0,"24211":3935,"24212":0,"24213":-1,"24214":3246,"24215":-1,"24216":2456,"24217":3634,"24218":-1,"24219":-1,"24220":3818,"24221":0,"24222":-1,"24223":0,"24224":-1,"24225":0,"24226":0,"24227":0,"24228":-1,"24229":3571,"24230":0,"24231":-1,"24232":0,"24233":-1,"24234":0,"24235":0,"24236":0,"24237":1895,"24238":55,"24239":-1,"24240":2367,"24241":0,"24242":3590,"24243":-1,"24244":-1,"24245":3087,"24246":-1,"24247":-1,"24248":-1,"24249":-1,"24250":0,"24251":2335,"24252":3083,"24253":3305,"24254":0,"24255":2063,"24256":3376,"24257":2065,"24258":3956,"24259":-1,"24260":0,"24261":-1,"24262":-1,"24263":-1,"24264":-1,"24265":0,"24266":-1,"24267":0,"24268":3120,"24269":-1,"24270":0,"24271":0,"24272":0,"24273":-1,"24274":-1,"24275":0,"24276":2605,"24277":496,"24278":3308,"24279":473,"24280":-1,"24281":3592,"24282":0,"24283":-1,"24284":-1,"24285":-1,"24286":0,"24287":-1,"24288":0,"24289":-1,"24290":3151,"24291":2375,"24292":0,"24293":202,"24294":0,"24295":0,"24296":-1,"24297":2369,"24298":0,"24299":-1,"24300":-1,"24301":-1,"24302":2336,"24303":-1,"24304":-1,"24305":-1,"24306":0,"24307":-1,"24308":-1,"24309":-1,"24310":0,"24311":2087,"24312":-1,"24313":3059,"24314":0,"24315":-1,"24316":3753,"24317":0,"24318":3048,"24319":0,"24320":-1,"24321":-1,"24322":-1,"24323":2436,"24324":3344,"24325":-1,"24326":-1,"24327":0,"24328":0,"24329":3993,"24330":0,"24331":0,"24332":-1,"24333":-1,"24334":0,"24335":-1,"24336":0,"24337":0,"24338":0,"24339":0,"24340":0,"24341":0,"24342":-1,"24343":3439,"24344":0,"24345":0,"24346":-1,"24347":2081,"24348":0,"24349":0,"24350":0,"24351":0,"24352":0,"24353":-1,"24354":2437,"24355":0,"24356":0,"24357":0,"24358":0,"24359":2510,"24360":3329,"24361":0,"24362":0,"24363":0,"24364":-1,"24365":0,"24366":0,"24367":0,"24368":-1,"24369":0,"24370":2996,"24371":2328,"24372":0,"24373":-1,"24374":-1,"24375":2705,"24376":3917,"24377":0,"24378":0,"24379":-1,"24380":3573,"24381":2920,"24382":0,"24383":0,"24384":2432,"24385":0,"24386":0,"24387":345,"24388":-1,"24389":-1,"24390":0,"24391":0,"24392":3566,"24393":0,"24394":-1,"24395":3302,"24396":0,"24397":-1,"24398":3914,"24399":0,"24400":-1,"24401":3951,"24402":-1,"24403":0,"24404":409,"24405":0,"24406":-1,"24407":0,"24408":0,"24409":0,"24410":2986,"24411":16,"24412":0,"24413":3219,"24414":-1,"24415":0,"24416":-1,"24417":-1,"24418":0,"24419":-1,"24420":0,"24421":1979,"24422":3014,"24423":0,"24424":0,"24425":-1,"24426":0,"24427":0,"24428":0,"24429":-1,"24430":-1,"24431":-1,"24432":3339,"24433":2578,"24434":-1,"24435":2670,"24436":222,"24437":0,"24438":0,"24439":1781,"24440":0,"24441":0,"24442":2201,"24443":2159,"24444":3276,"24445":-1,"24446":0,"24447":-1,"24448":0,"24449":-1,"24450":-1,"24451":0,"24452":0,"24453":-1,"24454":-1,"24455":0,"24456":0,"24457":0,"24458":2732,"24459":-1,"24460":0,"24461":-1,"24462":0,"24463":0,"24464":-1,"24465":2200,"24466":0,"24467":0,"24468":-1,"24469":-1,"24470":-1,"24471":0,"24472":2499,"24473":0,"24474":-1,"24475":-1,"24476":0,"24477":-1,"24478":0,"24479":-1,"24480":2002,"24481":-1,"24482":0,"24483":0,"24484":-1,"24485":2805,"24486":-1,"24487":0,"24488":-1,"24489":0,"24490":-1,"24491":-1,"24492":-1,"24493":-1,"24494":0,"24495":0,"24496":0,"24497":3195,"24498":0,"24499":-1,"24500":-1,"24501":0,"24502":3411,"24503":-1,"24504":-1,"24505":2191,"24506":0,"24507":-1,"24508":-1,"24509":0,"24510":3803,"24511":-1,"24512":0,"24513":0,"24514":0,"24515":0,"24516":2168,"24517":-1,"24518":-1,"24519":-1,"24520":0,"24521":3877,"24522":2740,"24523":0,"24524":3310,"24525":0,"24526":0,"24527":484,"24528":-1,"24529":0,"24530":-1,"24531":0,"24532":-1,"24533":0,"24534":0,"24535":3199,"24536":0,"24537":0,"24538":-1,"24539":-1,"24540":-1,"24541":0,"24542":0,"24543":0,"24544":0,"24545":1778,"24546":0,"24547":3365,"24548":1968,"24549":3603,"24550":0,"24551":3432,"24552":0,"24553":-1,"24554":-1,"24555":0,"24556":-1,"24557":2894,"24558":0,"24559":3983,"24560":1965,"24561":0,"24562":108,"24563":-1,"24564":3625,"24565":2726,"24566":-1,"24567":-1,"24568":-1,"24569":-1,"24570":-1,"24571":0,"24572":-1,"24573":0,"24574":0,"24575":0,"24576":3623,"24577":3757,"24578":0,"24579":-1,"24580":-1,"24581":0,"24582":0,"24583":0,"24584":3732,"24585":0,"24586":0,"24587":0,"24588":-1,"24589":0,"24590":170,"24591":-1,"24592":0,"24593":0,"24594":2916,"24595":3449,"24596":3122,"24597":0,"24598":-1,"24599":464,"24600":-1,"24601":-1,"24602":-1,"24603":0,"24604":0,"24605":0,"24606":0,"24607":0,"24608":0,"24609":2310,"24610":2003,"24611":0,"24612":-1,"24613":3732,"24614":-1,"24615":-1,"24616":3145,"24617":3335,"24618":0,"24619":0,"24620":2026,"24621":0,"24622":172,"24623":-1,"24624":0,"24625":-1,"24626":-1,"24627":-1,"24628":2699,"24629":2488,"24630":0,"24631":0,"24632":0,"24633":-1,"24634":0,"24635":0,"24636":0,"24637":3579,"24638":0,"24639":-1,"24640":-1,"24641":0,"24642":-1,"24643":0,"24644":0,"24645":0,"24646":0,"24647":245,"24648":0,"24649":-1,"24650":-1,"24651":0,"24652":0,"24653":0,"24654":-1,"24655":0,"24656":0,"24657":0,"24658":166,"24659":1998,"24660":0,"24661":0,"24662":-1,"24663":-1,"24664":0,"24665":2713,"24666":0,"24667":0,"24668":0,"24669":0,"24670":0,"24671":0,"24672":0,"24673":-1,"24674":0,"24675":0,"24676":0,"24677":-1,"24678":-1,"24679":2302,"24680":-1,"24681":3649,"24682":3974,"24683":0,"24684":-1,"24685":0,"24686":0,"24687":0,"24688":14,"24689":0,"24690":0,"24691":0,"24692":-1,"24693":0,"24694":-1,"24695":-1,"24696":-1,"24697":-1,"24698":-1,"24699":-1,"24700":0,"24701":0,"24702":2617,"24703":0,"24704":-1,"24705":0,"24706":2584,"24707":0,"24708":0,"24709":-1,"24710":1967,"24711":3037,"24712":-1,"24713":3233,"24714":2317,"24715":0,"24716":3273,"24717":-1,"24718":0,"24719":-1,"24720":0,"24721":2340,"24722":3251,"24723":3526,"24724":3191,"24725":-1,"24726":0,"24727":0,"24728":-1,"24729":0,"24730":3260,"24731":3815,"24732":0,"24733":0,"24734":2796,"24735":-1,"24736":0,"24737":0,"24738":-1,"24739":0,"24740":0,"24741":0,"24742":0,"24743":0,"24744":0,"24745":0,"24746":3258,"24747":0,"24748":2925,"24749":0,"24750":0,"24751":0,"24752":0,"24753":-1,"24754":0,"24755":0,"24756":-1,"24757":0,"24758":0,"24759":-1,"24760":0,"24761":-1,"24762":0,"24763":-1,"24764":2010,"24765":0,"24766":-1,"24767":0,"24768":0,"24769":0,"24770":-1,"24771":0,"24772":3593,"24773":-1,"24774":0,"24775":0,"24776":2242,"24777":2975,"24778":0,"24779":2952,"24780":0,"24781":0,"24782":-1,"24783":0,"24784":2853,"24785":0,"24786":0,"24787":3004,"24788":-1,"24789":2960,"24790":-1,"24791":0,"24792":2608,"24793":2471,"24794":0,"24795":-1,"24796":0,"24797":0,"24798":0,"24799":3899,"24800":-1,"24801":0,"24802":1876,"24803":0,"24804":0,"24805":-1,"24806":0,"24807":0,"24808":-1,"24809":3715,"24810":2261,"24811":2761,"24812":0,"24813":0,"24814":0,"24815":-1,"24816":-1,"24817":0,"24818":3582,"24819":2780,"24820":0,"24821":0,"24822":-1,"24823":0,"24824":0,"24825":-1,"24826":0,"24827":0,"24828":0,"24829":0,"24830":1892,"24831":-1,"24832":2484,"24833":-1,"24834":-1,"24835":0,"24836":49,"24837":0,"24838":0,"24839":-1,"24840":3035,"24841":0,"24842":335,"24843":0,"24844":0,"24845":-1,"24846":0,"24847":-1,"24848":-1,"24849":2244,"24850":4029,"24851":-1,"24852":-1,"24853":0,"24854":-1,"24855":-1,"24856":-1,"24857":0,"24858":0,"24859":341,"24860":0,"24861":0,"24862":-1,"24863":-1,"24864":3180,"24865":0,"24866":0,"24867":0,"24868":0,"24869":2458,"24870":1903,"24871":0,"24872":-1,"24873":0,"24874":3606,"24875":0,"24876":-1,"24877":2066,"24878":-1,"24879":154,"24880":2304,"24881":2141,"24882":0,"24883":2711,"24884":0,"24885":321,"24886":3296,"24887":0,"24888":0,"24889":2333,"24890":0,"24891":232,"24892":2420,"24893":3801,"24894":-1,"24895":0,"24896":0,"24897":-1,"24898":2640,"24899":0,"24900":0,"24901":3305,"24902":0,"24903":0,"24904":-1,"24905":2998,"24906":-1,"24907":-1,"24908":2358,"24909":3922,"24910":-1,"24911":2162,"24912":0,"24913":0,"24914":0,"24915":3585,"24916":2284,"24917":2410,"24918":0,"24919":-1,"24920":2830,"24921":-1,"24922":0,"24923":-1,"24924":0,"24925":3055,"24926":-1,"24927":-1,"24928":-1,"24929":-1,"24930":3652,"24931":2494,"24932":2224,"24933":0,"24934":0,"24935":0,"24936":3404,"24937":0,"24938":0,"24939":-1,"24940":0,"24941":3968,"24942":0,"24943":-1,"24944":2902,"24945":0,"24946":371,"24947":3573,"24948":0,"24949":0,"24950":3443,"24951":3954,"24952":4052,"24953":-1,"24954":-1,"24955":2608,"24956":2306,"24957":3888,"24958":-1,"24959":-1,"24960":-1,"24961":0,"24962":2630,"24963":286,"24964":2328,"24965":0,"24966":-1,"24967":426,"24968":-1,"24969":0,"24970":2312,"24971":4018,"24972":0,"24973":-1,"24974":0,"24975":0,"24976":377,"24977":0,"24978":0,"24979":0,"24980":-1,"24981":-1,"24982":-1,"24983":-1,"24984":0,"24985":-1,"24986":2144,"24987":2485,"24988":-1,"24989":0,"24990":2814,"24991":1986,"24992":0,"24993":0,"24994":-1,"24995":-1,"24996":-1,"24997":3378,"24998":0,"24999":-1,"25000":0,"25001":-1,"25002":0,"25003":0,"25004":3225,"25005":0,"25006":-1,"25007":0,"25008":0,"25009":0,"25010":-1,"25011":2886,"25012":-1,"25013":-1,"25014":3154,"25015":3594,"25016":0,"25017":-1,"25018":2444,"25019":0,"25020":-1,"25021":0,"25022":-1,"25023":-1,"25024":-1,"25025":-1,"25026":-1,"25027":0,"25028":0,"25029":0,"25030":80,"25031":1840,"25032":-1,"25033":0,"25034":1926,"25035":-1,"25036":-1,"25037":-1,"25038":-1,"25039":0,"25040":0,"25041":0,"25042":-1,"25043":-1,"25044":-1,"25045":0,"25046":0,"25047":0,"25048":-1,"25049":-1,"25050":0,"25051":-1,"25052":-1,"25053":0,"25054":-1,"25055":60,"25056":0,"25057":-1,"25058":-1,"25059":0,"25060":2849,"25061":-1,"25062":0,"25063":-1,"25064":0,"25065":-1,"25066":-1,"25067":-1,"25068":0,"25069":460,"25070":0,"25071":3721,"25072":-1,"25073":0,"25074":-1,"25075":-1,"25076":2848,"25077":-1,"25078":2578,"25079":3414,"25080":0,"25081":3554,"25082":0,"25083":0,"25084":0,"25085":0,"25086":2734,"25087":-1,"25088":-1,"25089":0,"25090":2142,"25091":-1,"25092":0,"25093":0,"25094":-1,"25095":1899,"25096":-1,"25097":0,"25098":-1,"25099":0,"25100":-1,"25101":0,"25102":3633,"25103":332,"25104":0,"25105":0,"25106":0,"25107":-1,"25108":3713,"25109":-1,"25110":-1,"25111":0,"25112":0,"25113":0,"25114":-1,"25115":0,"25116":3564,"25117":-1,"25118":0,"25119":0,"25120":0,"25121":-1,"25122":-1,"25123":0,"25124":-1,"25125":305,"25126":0,"25127":-1,"25128":0,"25129":2655,"25130":-1,"25131":0,"25132":-1,"25133":-1,"25134":0,"25135":0,"25136":0,"25137":2255,"25138":-1,"25139":0,"25140":2593,"25141":-1,"25142":0,"25143":-1,"25144":0,"25145":0,"25146":0,"25147":0,"25148":82,"25149":-1,"25150":-1,"25151":-1,"25152":2175,"25153":0,"25154":0,"25155":-1,"25156":0,"25157":-1,"25158":-1,"25159":3385,"25160":3879,"25161":0,"25162":-1,"25163":-1,"25164":0,"25165":0,"25166":2342,"25167":0,"25168":0,"25169":3166,"25170":3523,"25171":0,"25172":-1,"25173":0,"25174":3768,"25175":-1,"25176":-1,"25177":0,"25178":-1,"25179":-1,"25180":0,"25181":-1,"25182":0,"25183":-1,"25184":0,"25185":0,"25186":-1,"25187":0,"25188":350,"25189":0,"25190":0,"25191":-1,"25192":1819,"25193":-1,"25194":0,"25195":3899,"25196":3411,"25197":0,"25198":0,"25199":0,"25200":-1,"25201":0,"25202":-1,"25203":0,"25204":0,"25205":-1,"25206":-1,"25207":0,"25208":3144,"25209":0,"25210":-1,"25211":0,"25212":-1,"25213":0,"25214":0,"25215":2990,"25216":-1,"25217":-1,"25218":3223,"25219":0,"25220":1854,"25221":0,"25222":2368,"25223":-1,"25224":2117,"25225":-1,"25226":-1,"25227":-1,"25228":0,"25229":0,"25230":0,"25231":2643,"25232":3684,"25233":2646,"25234":2164,"25235":-1,"25236":-1,"25237":1983,"25238":-1,"25239":3,"25240":0,"25241":-1,"25242":-1,"25243":0,"25244":-1,"25245":0,"25246":0,"25247":-1,"25248":0,"25249":3174,"25250":-1,"25251":3471,"25252":-1,"25253":-1,"25254":0,"25255":0,"25256":1933,"25257":-1,"25258":0,"25259":-1,"25260":0,"25261":-1,"25262":0,"25263":2003,"25264":0,"25265":-1,"25266":-1,"25267":-1,"25268":3377,"25269":2176,"25270":0,"25271":0,"25272":0,"25273":-1,"25274":0,"25275":0,"25276":254,"25277":2206,"25278":0,"25279":0,"25280":0,"25281":-1,"25282":-1,"25283":-1,"25284":0,"25285":-1,"25286":-1,"25287":2157,"25288":139,"25289":0,"25290":3156,"25291":-1,"25292":3135,"25293":0,"25294":2372,"25295":-1,"25296":-1,"25297":-1,"25298":0,"25299":0,"25300":-1,"25301":2288,"25302":-1,"25303":2246,"25304":0,"25305":4060,"25306":0,"25307":2923,"25308":2168,"25309":0,"25310":0,"25311":0,"25312":1965,"25313":0,"25314":0,"25315":0,"25316":2421,"25317":-1,"25318":-1,"25319":0,"25320":-1,"25321":0,"25322":364,"25323":2994,"25324":-1,"25325":-1,"25326":0,"25327":2013,"25328":0,"25329":0,"25330":-1,"25331":141,"25332":0,"25333":-1,"25334":0,"25335":-1,"25336":-1,"25337":-1,"25338":117,"25339":0,"25340":0,"25341":-1,"25342":3236,"25343":0,"25344":-1,"25345":-1,"25346":0,"25347":0,"25348":0,"25349":0,"25350":2520,"25351":0,"25352":-1,"25353":0,"25354":1841,"25355":0,"25356":-1,"25357":2157,"25358":-1,"25359":-1,"25360":0,"25361":-1,"25362":-1,"25363":-1,"25364":0,"25365":0,"25366":0,"25367":0,"25368":-1,"25369":0,"25370":0,"25371":0,"25372":0,"25373":2489,"25374":0,"25375":-1,"25376":-1,"25377":-1,"25378":-1,"25379":2173,"25380":0,"25381":-1,"25382":0,"25383":3402,"25384":-1,"25385":-1,"25386":3718,"25387":-1,"25388":-1,"25389":-1,"25390":0,"25391":0,"25392":-1,"25393":0,"25394":-1,"25395":336,"25396":1978,"25397":-1,"25398":0,"25399":0,"25400":219,"25401":3089,"25402":3572,"25403":-1,"25404":-1,"25405":0,"25406":-1,"25407":0,"25408":-1,"25409":3180,"25410":3811,"25411":-1,"25412":0,"25413":248,"25414":0,"25415":-1,"25416":0,"25417":-1,"25418":0,"25419":-1,"25420":0,"25421":-1,"25422":-1,"25423":0,"25424":-1,"25425":0,"25426":-1,"25427":0,"25428":0,"25429":225,"25430":-1,"25431":0,"25432":-1,"25433":-1,"25434":2198,"25435":2045,"25436":-1,"25437":0,"25438":0,"25439":0,"25440":0,"25441":-1,"25442":3288,"25443":-1,"25444":-1,"25445":-1,"25446":-1,"25447":2970,"25448":0,"25449":-1,"25450":2192,"25451":0,"25452":-1,"25453":0,"25454":2895,"25455":-1,"25456":2622,"25457":0,"25458":0,"25459":-1,"25460":0,"25461":2609,"25462":-1,"25463":0,"25464":0,"25465":2972,"25466":0,"25467":2866,"25468":0,"25469":-1,"25470":3301,"25471":-1,"25472":0,"25473":-1,"25474":-1,"25475":0,"25476":0,"25477":133,"25478":147,"25479":-1,"25480":0,"25481":3252,"25482":0,"25483":0,"25484":0,"25485":-1,"25486":-1,"25487":2783,"25488":0,"25489":-1,"25490":0,"25491":-1,"25492":0,"25493":0,"25494":3248,"25495":0,"25496":0,"25497":-1,"25498":-1,"25499":0,"25500":0,"25501":-1,"25502":0,"25503":2008,"25504":-1,"25505":-1,"25506":-1,"25507":0,"25508":0,"25509":-1,"25510":0,"25511":2165,"25512":1816,"25513":0,"25514":-1,"25515":-1,"25516":0,"25517":-1,"25518":0,"25519":-1,"25520":0,"25521":-1,"25522":0,"25523":0,"25524":0,"25525":0,"25526":0,"25527":3355,"25528":0,"25529":-1,"25530":2717,"25531":-1,"25532":-1,"25533":0,"25534":0,"25535":0,"25536":0,"25537":3066,"25538":3354,"25539":0,"25540":0,"25541":0,"25542":0,"25543":0,"25544":-1,"25545":2760,"25546":0,"25547":0,"25548":0,"25549":0,"25550":-1,"25551":229,"25552":2004,"25553":0,"25554":0,"25555":-1,"25556":0,"25557":-1,"25558":3051,"25559":0,"25560":0,"25561":-1,"25562":3198,"25563":2974,"25564":0,"25565":-1,"25566":0,"25567":2328,"25568":0,"25569":229,"25570":0,"25571":-1,"25572":-1,"25573":3203,"25574":2529,"25575":3800,"25576":2206,"25577":0,"25578":-1,"25579":-1,"25580":-1,"25581":0,"25582":2233,"25583":0,"25584":-1,"25585":-1,"25586":0,"25587":-1,"25588":-1,"25589":1833,"25590":0,"25591":0,"25592":-1,"25593":-1,"25594":-1,"25595":-1,"25596":0,"25597":0,"25598":-1,"25599":-1,"25600":-1,"25601":0,"25602":0,"25603":0,"25604":-1,"25605":-1,"25606":-1,"25607":0,"25608":0,"25609":0,"25610":0,"25611":0,"25612":-1,"25613":0,"25614":0,"25615":3005,"25616":3901,"25617":-1,"25618":-1,"25619":0,"25620":0,"25621":-1,"25622":0,"25623":0,"25624":213,"25625":-1,"25626":2277,"25627":3558,"25628":0,"25629":153,"25630":3041,"25631":3880,"25632":0,"25633":433,"25634":1834,"25635":0,"25636":-1,"25637":0,"25638":-1,"25639":0,"25640":0,"25641":0,"25642":2282,"25643":-1,"25644":-1,"25645":-1,"25646":0,"25647":0,"25648":333,"25649":-1,"25650":-1,"25651":0,"25652":2109,"25653":2389,"25654":2797,"25655":412,"25656":0,"25657":0,"25658":0,"25659":-1,"25660":0,"25661":3780,"25662":0,"25663":0,"25664":0,"25665":0,"25666":1895,"25667":0,"25668":-1,"25669":0,"25670":0,"25671":-1,"25672":-1,"25673":0,"25674":0,"25675":0,"25676":0,"25677":3268,"25678":-1,"25679":-1,"25680":0,"25681":-1,"25682":-1,"25683":0,"25684":0,"25685":0,"25686":0,"25687":0,"25688":0,"25689":0,"25690":0,"25691":2605,"25692":2367,"25693":3204,"25694":0,"25695":-1,"25696":0,"25697":0,"25698":-1,"25699":0,"25700":-1,"25701":-1,"25702":2679,"25703":3999,"25704":0,"25705":0,"25706":-1,"25707":3619,"25708":0,"25709":2849,"25710":0,"25711":337,"25712":3443,"25713":0,"25714":0,"25715":2399,"25716":0,"25717":-1,"25718":0,"25719":0,"25720":0,"25721":0,"25722":0,"25723":246,"25724":0,"25725":3324,"25726":0,"25727":3895,"25728":2501,"25729":1853,"25730":-1,"25731":-1,"25732":2007,"25733":3923,"25734":0,"25735":2879,"25736":-1,"25737":0,"25738":0,"25739":-1,"25740":3030,"25741":0,"25742":0,"25743":3765,"25744":-1,"25745":0,"25746":0,"25747":0,"25748":0,"25749":1992,"25750":-1,"25751":2321,"25752":-1,"25753":-1,"25754":0,"25755":0,"25756":0,"25757":-1,"25758":0,"25759":0,"25760":0,"25761":0,"25762":3478,"25763":0,"25764":0,"25765":0,"25766":-1,"25767":0,"25768":0,"25769":-1,"25770":0,"25771":-1,"25772":0,"25773":3527,"25774":0,"25775":3357,"25776":-1,"25777":-1,"25778":0,"25779":0,"25780":2077,"25781":3185,"25782":-1,"25783":0,"25784":-1,"25785":0,"25786":0,"25787":2746,"25788":-1,"25789":0,"25790":3469,"25791":0,"25792":0,"25793":-1,"25794":1777,"25795":0,"25796":0,"25797":2456,"25798":3976,"25799":0,"25800":0,"25801":-1,"25802":0,"25803":0,"25804":-1,"25805":2679,"25806":-1,"25807":2148,"25808":0,"25809":-1,"25810":3896,"25811":-1,"25812":-1,"25813":0,"25814":-1,"25815":-1,"25816":0,"25817":2072,"25818":3514,"25819":0,"25820":-1,"25821":0,"25822":3348,"25823":-1,"25824":0,"25825":2746,"25826":-1,"25827":-1,"25828":-1,"25829":-1,"25830":489,"25831":-1,"25832":-1,"25833":0,"25834":0,"25835":2259,"25836":1789,"25837":3398,"25838":0,"25839":-1,"25840":0,"25841":-1,"25842":0,"25843":0,"25844":2149,"25845":0,"25846":0,"25847":-1,"25848":-1,"25849":-1,"25850":0,"25851":0,"25852":3095,"25853":0,"25854":0,"25855":-1,"25856":0,"25857":0,"25858":0,"25859":0,"25860":3722,"25861":0,"25862":-1,"25863":-1,"25864":1812,"25865":-1,"25866":0,"25867":177,"25868":-1,"25869":-1,"25870":0,"25871":-1,"25872":2557,"25873":0,"25874":497,"25875":0,"25876":0,"25877":0,"25878":-1,"25879":2151,"25880":0,"25881":0,"25882":-1,"25883":0,"25884":0,"25885":3838,"25886":0,"25887":0,"25888":-1,"25889":-1,"25890":0,"25891":-1,"25892":-1,"25893":-1,"25894":0,"25895":2222,"25896":361,"25897":0,"25898":-1,"25899":0,"25900":-1,"25901":0,"25902":-1,"25903":0,"25904":-1,"25905":-1,"25906":0,"25907":0,"25908":-1,"25909":0,"25910":3611,"25911":3579,"25912":0,"25913":-1,"25914":0,"25915":0,"25916":0,"25917":3487,"25918":-1,"25919":0,"25920":0,"25921":1865,"25922":2146,"25923":-1,"25924":2542,"25925":1899,"25926":-1,"25927":0,"25928":-1,"25929":-1,"25930":0,"25931":-1,"25932":-1,"25933":2277,"25934":0,"25935":-1,"25936":-1,"25937":-1,"25938":-1,"25939":3859,"25940":2087,"25941":0,"25942":0,"25943":-1,"25944":2733,"25945":3063,"25946":-1,"25947":1840,"25948":-1,"25949":0,"25950":-1,"25951":1954,"25952":0,"25953":-1,"25954":0,"25955":-1,"25956":0,"25957":-1,"25958":2549,"25959":0,"25960":0,"25961":-1,"25962":0,"25963":3388,"25964":0,"25965":-1,"25966":2026,"25967":0,"25968":418,"25969":0,"25970":-1,"25971":-1,"25972":0,"25973":-1,"25974":0,"25975":40,"25976":-1,"25977":0,"25978":0,"25979":-1,"25980":0,"25981":0,"25982":0,"25983":3472,"25984":2859,"25985":2576,"25986":140,"25987":179,"25988":-1,"25989":0,"25990":3302,"25991":2988,"25992":-1,"25993":0,"25994":-1,"25995":0,"25996":1789,"25997":-1,"25998":0,"25999":0,"26000":0,"26001":0,"26002":-1,"26003":-1,"26004":2786,"26005":-1,"26006":2373,"26007":2884,"26008":-1,"26009":0,"26010":0,"26011":-1,"26012":2491,"26013":0,"26014":0,"26015":-1,"26016":2119,"26017":0,"26018":0,"26019":0,"26020":2582,"26021":0,"26022":0,"26023":0,"26024":2930,"26025":-1,"26026":0,"26027":-1,"26028":257,"26029":-1,"26030":0,"26031":-1,"26032":0,"26033":-1,"26034":-1,"26035":0,"26036":3448,"26037":341,"26038":0,"26039":-1,"26040":2726,"26041":0,"26042":2253,"26043":-1,"26044":0,"26045":0,"26046":0,"26047":0,"26048":-1,"26049":-1,"26050":2056,"26051":-1,"26052":-1,"26053":0,"26054":0,"26055":0,"26056":310,"26057":0,"26058":-1,"26059":0,"26060":-1,"26061":0,"26062":0,"26063":0,"26064":3595,"26065":0,"26066":0,"26067":0,"26068":0,"26069":2178,"26070":-1,"26071":-1,"26072":-1,"26073":0,"26074":-1,"26075":0,"26076":3843,"26077":0,"26078":-1,"26079":2801,"26080":3484,"26081":0,"26082":0,"26083":0,"26084":2246,"26085":0,"26086":3003,"26087":0,"26088":0,"26089":0,"26090":0,"26091":0,"26092":3649,"26093":0,"26094":0,"26095":3005,"26096":2464,"26097":-1,"26098":0,"26099":2869,"26100":-1,"26101":2055,"26102":-1,"26103":2612,"26104":0,"26105":0,"26106":0,"26107":-1,"26108":0,"26109":0,"26110":279,"26111":0,"26112":-1,"26113":0,"26114":0,"26115":-1,"26116":-1,"26117":0,"26118":-1,"26119":3762,"26120":0,"26121":0,"26122":0,"26123":3451,"26124":0,"26125":-1,"26126":0,"26127":-1,"26128":0,"26129":0,"26130":0,"26131":0,"26132":-1,"26133":-1,"26134":3042,"26135":-1,"26136":-1,"26137":0,"26138":0,"26139":-1,"26140":-1,"26141":415,"26142":-1,"26143":3563,"26144":0,"26145":2290,"26146":-1,"26147":-1,"26148":3390,"26149":0,"26150":-1,"26151":-1,"26152":0,"26153":2871,"26154":-1,"26155":-1,"26156":-1,"26157":-1,"26158":-1,"26159":0,"26160":0,"26161":0,"26162":135,"26163":-1,"26164":-1,"26165":-1,"26166":0,"26167":3419,"26168":0,"26169":-1,"26170":3941,"26171":-1,"26172":0,"26173":73,"26174":-1,"26175":0,"26176":-1,"26177":2805,"26178":3669,"26179":-1,"26180":-1,"26181":-1,"26182":0,"26183":-1,"26184":0,"26185":0,"26186":-1,"26187":0,"26188":0,"26189":-1,"26190":-1,"26191":-1,"26192":3850,"26193":1887,"26194":2436,"26195":3325,"26196":0,"26197":3764,"26198":3630,"26199":0,"26200":2416,"26201":0,"26202":0,"26203":250,"26204":4050,"26205":-1,"26206":0,"26207":0,"26208":-1,"26209":-1,"26210":2601,"26211":2241,"26212":0,"26213":0,"26214":3413,"26215":1849,"26216":-1,"26217":0,"26218":-1,"26219":-1,"26220":-1,"26221":-1,"26222":0,"26223":0,"26224":0,"26225":0,"26226":2055,"26227":0,"26228":2593,"26229":-1,"26230":-1,"26231":139,"26232":0,"26233":-1,"26234":0,"26235":-1,"26236":-1,"26237":2331,"26238":2255,"26239":0,"26240":0,"26241":3737,"26242":0,"26243":0,"26244":0,"26245":1937,"26246":-1,"26247":2672,"26248":0,"26249":3549,"26250":0,"26251":-1,"26252":-1,"26253":2529,"26254":0,"26255":2926,"26256":-1,"26257":0,"26258":1934,"26259":1812,"26260":-1,"26261":2900,"26262":2895,"26263":-1,"26264":0,"26265":0,"26266":0,"26267":0,"26268":0,"26269":2209,"26270":0,"26271":-1,"26272":-1,"26273":-1,"26274":2707,"26275":0,"26276":0,"26277":-1,"26278":-1,"26279":2184,"26280":2071,"26281":2297,"26282":0,"26283":0,"26284":0,"26285":0,"26286":0,"26287":0,"26288":-1,"26289":2520,"26290":0,"26291":0,"26292":-1,"26293":0,"26294":0,"26295":0,"26296":0,"26297":0,"26298":143,"26299":0,"26300":0,"26301":3943,"26302":2607,"26303":-1,"26304":0,"26305":0,"26306":-1,"26307":0,"26308":2829,"26309":-1,"26310":0,"26311":0,"26312":0,"26313":-1,"26314":-1,"26315":1959,"26316":0,"26317":-1,"26318":-1,"26319":0,"26320":394,"26321":0,"26322":-1,"26323":0,"26324":-1,"26325":0,"26326":2278,"26327":-1,"26328":-1,"26329":0,"26330":3123,"26331":-1,"26332":0,"26333":-1,"26334":3860,"26335":-1,"26336":2048,"26337":0,"26338":3321,"26339":0,"26340":0,"26341":0,"26342":0,"26343":-1,"26344":0,"26345":-1,"26346":3482,"26347":0,"26348":0,"26349":0,"26350":0,"26351":0,"26352":3259,"26353":0,"26354":0,"26355":3807,"26356":0,"26357":2821,"26358":-1,"26359":0,"26360":3416,"26361":-1,"26362":-1,"26363":-1,"26364":0,"26365":0,"26366":-1,"26367":0,"26368":-1,"26369":-1,"26370":0,"26371":-1,"26372":-1,"26373":3214,"26374":2594,"26375":3989,"26376":-1,"26377":0,"26378":0,"26379":2060,"26380":-1,"26381":-1,"26382":3154,"26383":0,"26384":-1,"26385":3989,"26386":-1,"26387":3325,"26388":-1,"26389":-1,"26390":-1,"26391":0,"26392":3003,"26393":0,"26394":-1,"26395":0,"26396":-1,"26397":245,"26398":0,"26399":0,"26400":342,"26401":0,"26402":0,"26403":2574,"26404":0,"26405":0,"26406":0,"26407":0,"26408":0,"26409":0,"26410":0,"26411":1780,"26412":-1,"26413":0,"26414":0,"26415":0,"26416":0,"26417":0,"26418":0,"26419":0,"26420":-1,"26421":-1,"26422":0,"26423":0,"26424":-1,"26425":0,"26426":0,"26427":0,"26428":0,"26429":317,"26430":-1,"26431":-1,"26432":0,"26433":0,"26434":0,"26435":3107,"26436":2957,"26437":-1,"26438":0,"26439":-1,"26440":0,"26441":2863,"26442":2609,"26443":0,"26444":0,"26445":0,"26446":0,"26447":0,"26448":2588,"26449":3265,"26450":-1,"26451":-1,"26452":-1,"26453":-1,"26454":0,"26455":2351,"26456":-1,"26457":2365,"26458":-1,"26459":0,"26460":0,"26461":0,"26462":-1,"26463":0,"26464":0,"26465":0,"26466":0,"26467":8,"26468":0,"26469":0,"26470":0,"26471":0,"26472":0,"26473":0,"26474":0,"26475":0,"26476":2060,"26477":-1,"26478":2258,"26479":0,"26480":0,"26481":2977,"26482":-1,"26483":-1,"26484":0,"26485":2810,"26486":-1,"26487":0,"26488":0,"26489":0,"26490":3952,"26491":3766,"26492":-1,"26493":-1,"26494":0,"26495":0,"26496":-1,"26497":-1,"26498":0,"26499":3503,"26500":3277,"26501":0,"26502":2572,"26503":3510,"26504":-1,"26505":3656,"26506":-1,"26507":0,"26508":0,"26509":-1,"26510":0,"26511":0,"26512":0,"26513":3759,"26514":0,"26515":0,"26516":-1,"26517":-1,"26518":0,"26519":-1,"26520":-1,"26521":-1,"26522":0,"26523":0,"26524":-1,"26525":0,"26526":-1,"26527":0,"26528":3642,"26529":3918,"26530":0,"26531":0,"26532":0,"26533":0,"26534":-1,"26535":3936,"26536":0,"26537":1832,"26538":2073,"26539":0,"26540":0,"26541":0,"26542":-1,"26543":-1,"26544":2307,"26545":-1,"26546":-1,"26547":0,"26548":2257,"26549":-1,"26550":44,"26551":349,"26552":0,"26553":3118,"26554":-1,"26555":170,"26556":0,"26557":0,"26558":2500,"26559":-1,"26560":0,"26561":0,"26562":0,"26563":0,"26564":3077,"26565":-1,"26566":-1,"26567":0,"26568":0,"26569":2960,"26570":-1,"26571":0,"26572":0,"26573":0,"26574":0,"26575":0,"26576":0,"26577":-1,"26578":0,"26579":0,"26580":0,"26581":0,"26582":0,"26583":3552,"26584":3816,"26585":0,"26586":0,"26587":-1,"26588":-1,"26589":-1,"26590":0,"26591":-1,"26592":0,"26593":0,"26594":3435,"26595":0,"26596":2773,"26597":223,"26598":14,"26599":2453,"26600":0,"26601":2611,"26602":0,"26603":-1,"26604":-1,"26605":-1,"26606":-1,"26607":2333,"26608":0,"26609":-1,"26610":127,"26611":0,"26612":0,"26613":0,"26614":0,"26615":0,"26616":-1,"26617":0,"26618":0,"26619":519,"26620":0,"26621":-1,"26622":-1,"26623":0,"26624":-1,"26625":0,"26626":2336,"26627":52,"26628":0,"26629":2246,"26630":-1,"26631":385,"26632":2425,"26633":0,"26634":0,"26635":2792,"26636":0,"26637":-1,"26638":0,"26639":3929,"26640":-1,"26641":-1,"26642":0,"26643":0,"26644":0,"26645":0,"26646":0,"26647":-1,"26648":139,"26649":2249,"26650":-1,"26651":0,"26652":-1,"26653":-1,"26654":0,"26655":0,"26656":0,"26657":-1,"26658":0,"26659":2524,"26660":-1,"26661":-1,"26662":-1,"26663":0,"26664":0,"26665":0,"26666":-1,"26667":0,"26668":0,"26669":2898,"26670":73,"26671":3194,"26672":-1,"26673":0,"26674":267,"26675":0,"26676":0,"26677":0,"26678":0,"26679":0,"26680":3660,"26681":0,"26682":0,"26683":1902,"26684":162,"26685":2729,"26686":0,"26687":0,"26688":0,"26689":3596,"26690":0,"26691":0,"26692":0,"26693":350,"26694":3909,"26695":-1,"26696":0,"26697":0,"26698":3753,"26699":0,"26700":-1,"26701":0,"26702":0,"26703":0,"26704":3895,"26705":486,"26706":-1,"26707":3288,"26708":2282,"26709":2042,"26710":2819,"26711":0,"26712":0,"26713":0,"26714":3059,"26715":1973,"26716":0,"26717":0,"26718":3729,"26719":0,"26720":0,"26721":-1,"26722":-1,"26723":-1,"26724":-1,"26725":3570,"26726":-1,"26727":2082,"26728":1881,"26729":-1,"26730":0,"26731":-1,"26732":2058,"26733":0,"26734":-1,"26735":-1,"26736":0,"26737":0,"26738":-1,"26739":2229,"26740":0,"26741":0,"26742":3350,"26743":0,"26744":0,"26745":0,"26746":1948,"26747":0,"26748":-1,"26749":-1,"26750":0,"26751":3520,"26752":2843,"26753":2742,"26754":-1,"26755":-1,"26756":-1,"26757":3601,"26758":2185,"26759":0,"26760":3309,"26761":3455,"26762":3722,"26763":-1,"26764":-1,"26765":3091,"26766":3928,"26767":0,"26768":0,"26769":0,"26770":4053,"26771":-1,"26772":0,"26773":-1,"26774":0,"26775":-1,"26776":0,"26777":1800,"26778":-1,"26779":2489,"26780":3641,"26781":-1,"26782":-1,"26783":0,"26784":-1,"26785":2987,"26786":0,"26787":198,"26788":0,"26789":2189,"26790":3016,"26791":0,"26792":-1,"26793":0,"26794":-1,"26795":2041,"26796":2521,"26797":0,"26798":3735,"26799":0,"26800":3023,"26801":0,"26802":0,"26803":0,"26804":0,"26805":-1,"26806":0,"26807":0,"26808":0,"26809":3492,"26810":-1,"26811":0,"26812":-1,"26813":-1,"26814":-1,"26815":-1,"26816":-1,"26817":0,"26818":3962,"26819":1877,"26820":0,"26821":2313,"26822":0,"26823":3902,"26824":13,"26825":-1,"26826":2446,"26827":240,"26828":-1,"26829":0,"26830":-1,"26831":0,"26832":0,"26833":-1,"26834":0,"26835":0,"26836":1970,"26837":-1,"26838":-1,"26839":-1,"26840":0,"26841":2558,"26842":-1,"26843":3202,"26844":0,"26845":0,"26846":0,"26847":-1,"26848":-1,"26849":0,"26850":0,"26851":3558,"26852":-1,"26853":2385,"26854":1878,"26855":-1,"26856":2571,"26857":0,"26858":305,"26859":3225,"26860":2333,"26861":0,"26862":-1,"26863":-1,"26864":364,"26865":3247,"26866":0,"26867":1962,"26868":0,"26869":3530,"26870":3444,"26871":-1,"26872":467,"26873":0,"26874":2562,"26875":0,"26876":2639,"26877":0,"26878":0,"26879":1899,"26880":0,"26881":3690,"26882":0,"26883":3523,"26884":0,"26885":-1,"26886":-1,"26887":-1,"26888":2438,"26889":-1,"26890":0,"26891":0,"26892":0,"26893":-1,"26894":0,"26895":3540,"26896":-1,"26897":3110,"26898":0,"26899":-1,"26900":0,"26901":453,"26902":-1,"26903":2594,"26904":-1,"26905":-1,"26906":-1,"26907":-1,"26908":-1,"26909":0,"26910":2365,"26911":0,"26912":3903,"26913":-1,"26914":-1,"26915":-1,"26916":0,"26917":0,"26918":0,"26919":-1,"26920":-1,"26921":-1,"26922":0,"26923":-1,"26924":0,"26925":0,"26926":-1,"26927":508,"26928":246,"26929":0,"26930":2662,"26931":0,"26932":0,"26933":0,"26934":-1,"26935":0,"26936":1970,"26937":0,"26938":-1,"26939":0,"26940":0,"26941":0,"26942":-1,"26943":3793,"26944":0,"26945":0,"26946":3194,"26947":-1,"26948":0,"26949":0,"26950":0,"26951":-1,"26952":-1,"26953":0,"26954":0,"26955":-1,"26956":-1,"26957":0,"26958":0,"26959":3451,"26960":0,"26961":2564,"26962":-1,"26963":0,"26964":-1,"26965":0,"26966":3869,"26967":0,"26968":-1,"26969":-1,"26970":0,"26971":-1,"26972":-1,"26973":-1,"26974":-1,"26975":0,"26976":0,"26977":0,"26978":0,"26979":0,"26980":0,"26981":-1,"26982":2831,"26983":-1,"26984":3392,"26985":0,"26986":0,"26987":0,"26988":-1,"26989":-1,"26990":3726,"26991":0,"26992":-1,"26993":2689,"26994":-1,"26995":2334,"26996":-1,"26997":326,"26998":0,"26999":-1,"27000":2876,"27001":2597,"27002":0,"27003":0,"27004":211,"27005":0,"27006":190,"27007":2357,"27008":0,"27009":0,"27010":0,"27011":3580,"27012":0,"27013":-1,"27014":0,"27015":0,"27016":3873,"27017":-1,"27018":-1,"27019":3831,"27020":2469,"27021":0,"27022":2171,"27023":0,"27024":0,"27025":0,"27026":-1,"27027":-1,"27028":0,"27029":0,"27030":0,"27031":0,"27032":0,"27033":0,"27034":0,"27035":-1,"27036":54,"27037":0,"27038":-1,"27039":0,"27040":2232,"27041":0,"27042":0,"27043":466,"27044":-1,"27045":0,"27046":489,"27047":-1,"27048":0,"27049":3046,"27050":0,"27051":0,"27052":0,"27053":0,"27054":-1,"27055":2312,"27056":2584,"27057":-1,"27058":-1,"27059":-1,"27060":-1,"27061":3101,"27062":2529,"27063":0,"27064":-1,"27065":2537,"27066":0,"27067":3506,"27068":-1,"27069":0,"27070":0,"27071":0,"27072":-1,"27073":0,"27074":0,"27075":0,"27076":2114,"27077":-1,"27078":0,"27079":-1,"27080":0,"27081":-1,"27082":-1,"27083":3159,"27084":1778,"27085":-1,"27086":3308,"27087":-1,"27088":0,"27089":-1,"27090":-1,"27091":0,"27092":-1,"27093":0,"27094":0,"27095":2164,"27096":0,"27097":-1,"27098":0,"27099":1836,"27100":-1,"27101":0,"27102":0,"27103":2075,"27104":-1,"27105":-1,"27106":0,"27107":1980,"27108":3293,"27109":4057,"27110":0,"27111":2244,"27112":-1,"27113":0,"27114":0,"27115":0,"27116":0,"27117":0,"27118":0,"27119":2202,"27120":-1,"27121":4032,"27122":-1,"27123":0,"27124":0,"27125":0,"27126":0,"27127":0,"27128":-1,"27129":0,"27130":-1,"27131":-1,"27132":0,"27133":-1,"27134":0,"27135":0,"27136":0,"27137":0,"27138":0,"27139":-1,"27140":-1,"27141":0,"27142":297,"27143":0,"27144":0,"27145":2195,"27146":-1,"27147":0,"27148":3988,"27149":2485,"27150":367,"27151":0,"27152":259,"27153":0,"27154":96,"27155":-1,"27156":-1,"27157":-1,"27158":3195,"27159":-1,"27160":0,"27161":230,"27162":-1,"27163":-1,"27164":3474,"27165":-1,"27166":-1,"27167":0,"27168":0,"27169":436,"27170":0,"27171":-1,"27172":0,"27173":0,"27174":0,"27175":0,"27176":0,"27177":2861,"27178":-1,"27179":-1,"27180":3241,"27181":-1,"27182":0,"27183":2413,"27184":2885,"27185":-1,"27186":-1,"27187":0,"27188":0,"27189":-1,"27190":0,"27191":0,"27192":0,"27193":1983,"27194":2204,"27195":3473,"27196":-1,"27197":0,"27198":2900,"27199":0,"27200":0,"27201":-1,"27202":-1,"27203":0,"27204":3551,"27205":0,"27206":0,"27207":11,"27208":3890,"27209":-1,"27210":2032,"27211":0,"27212":0,"27213":3589,"27214":0,"27215":0,"27216":-1,"27217":0,"27218":3657,"27219":0,"27220":0,"27221":3729,"27222":-1,"27223":0,"27224":0,"27225":-1,"27226":2021,"27227":-1,"27228":3473,"27229":2249,"27230":3921,"27231":2645,"27232":3674,"27233":-1,"27234":-1,"27235":0,"27236":2830,"27237":0,"27238":-1,"27239":2836,"27240":-1,"27241":2878,"27242":3901,"27243":-1,"27244":0,"27245":-1,"27246":2413,"27247":0,"27248":-1,"27249":0,"27250":0,"27251":2829,"27252":0,"27253":0,"27254":0,"27255":0,"27256":0,"27257":-1,"27258":0,"27259":-1,"27260":-1,"27261":2813,"27262":0,"27263":-1,"27264":4004,"27265":-1,"27266":0,"27267":0,"27268":-1,"27269":2014,"27270":1898,"27271":-1,"27272":3290,"27273":2245,"27274":0,"27275":-1,"27276":0,"27277":-1,"27278":1798,"27279":0,"27280":0,"27281":-1,"27282":0,"27283":-1,"27284":-1,"27285":3103,"27286":0,"27287":-1,"27288":2050,"27289":0,"27290":-1,"27291":-1,"27292":398,"27293":0,"27294":3354,"27295":-1,"27296":0,"27297":0,"27298":0,"27299":0,"27300":-1,"27301":0,"27302":-1,"27303":-1,"27304":0,"27305":0,"27306":2760,"27307":2909,"27308":-1,"27309":3510,"27310":2423,"27311":3032,"27312":-1,"27313":0,"27314":0,"27315":0,"27316":-1,"27317":0,"27318":0,"27319":0,"27320":-1,"27321":0,"27322":3677,"27323":2110,"27324":0,"27325":0,"27326":2398,"27327":0,"27328":-1,"27329":-1,"27330":2670,"27331":0,"27332":0,"27333":0,"27334":0,"27335":3987,"27336":3734,"27337":0,"27338":4000,"27339":0,"27340":348,"27341":-1,"27342":-1,"27343":0,"27344":0,"27345":0,"27346":0,"27347":0,"27348":-1,"27349":2221,"27350":0,"27351":0,"27352":0,"27353":-1,"27354":-1,"27355":2628,"27356":2998,"27357":444,"27358":0,"27359":393,"27360":0,"27361":0,"27362":514,"27363":2440,"27364":-1,"27365":2491,"27366":-1,"27367":0,"27368":-1,"27369":4029,"27370":0,"27371":-1,"27372":-1,"27373":0,"27374":0,"27375":0,"27376":-1,"27377":0,"27378":0,"27379":-1,"27380":0,"27381":-1,"27382":0,"27383":3911,"27384":2449,"27385":0,"27386":0,"27387":2489,"27388":3357,"27389":2777,"27390":-1,"27391":-1,"27392":0,"27393":0,"27394":-1,"27395":-1,"27396":3988,"27397":-1,"27398":0,"27399":0,"27400":0,"27401":-1,"27402":0,"27403":3014,"27404":-1,"27405":49,"27406":0,"27407":0,"27408":0,"27409":-1,"27410":0,"27411":134,"27412":0,"27413":0,"27414":-1,"27415":-1,"27416":0,"27417":3255,"27418":12,"27419":0,"27420":0,"27421":0,"27422":3710,"27423":0,"27424":0,"27425":519,"27426":-1,"27427":-1,"27428":0,"27429":0,"27430":0,"27431":0,"27432":0,"27433":0,"27434":0,"27435":-1,"27436":-1,"27437":0,"27438":-1,"27439":-1,"27440":2702,"27441":2751,"27442":3201,"27443":2235,"27444":2344,"27445":2785,"27446":-1,"27447":1896,"27448":0,"27449":0,"27450":0,"27451":-1,"27452":113,"27453":3256,"27454":0,"27455":80,"27456":3092,"27457":0,"27458":3377,"27459":0,"27460":0,"27461":3764,"27462":0,"27463":2052,"27464":16,"27465":2270,"27466":0,"27467":-1,"27468":-1,"27469":0,"27470":0,"27471":0,"27472":0,"27473":-1,"27474":0,"27475":-1,"27476":0,"27477":-1,"27478":0,"27479":0,"27480":0,"27481":0,"27482":0,"27483":-1,"27484":0,"27485":0,"27486":-1,"27487":-1,"27488":0,"27489":0,"27490":-1,"27491":0,"27492":0,"27493":0,"27494":3452,"27495":-1,"27496":-1,"27497":0,"27498":0,"27499":0,"27500":-1,"27501":-1,"27502":-1,"27503":2793,"27504":0,"27505":0,"27506":0,"27507":-1,"27508":-1,"27509":0,"27510":-1,"27511":0,"27512":0,"27513":0,"27514":2154,"27515":0,"27516":0,"27517":-1,"27518":0,"27519":-1,"27520":0,"27521":3609,"27522":0,"27523":3374,"27524":-1,"27525":0,"27526":-1,"27527":2693,"27528":3730,"27529":-1,"27530":0,"27531":504,"27532":-1,"27533":0,"27534":0,"27535":0,"27536":-1,"27537":0,"27538":161,"27539":-1,"27540":2184,"27541":0,"27542":0,"27543":0,"27544":0,"27545":348,"27546":-1,"27547":54,"27548":3287,"27549":0,"27550":3406,"27551":-1,"27552":0,"27553":-1,"27554":0,"27555":2729,"27556":3344,"27557":3508,"27558":-1,"27559":3952,"27560":-1,"27561":0,"27562":-1,"27563":0,"27564":-1,"27565":0,"27566":-1,"27567":0,"27568":0,"27569":-1,"27570":2195,"27571":0,"27572":0,"27573":-1,"27574":0,"27575":0,"27576":-1,"27577":-1,"27578":0,"27579":0,"27580":0,"27581":2237,"27582":-1,"27583":0,"27584":0,"27585":2663,"27586":0,"27587":0,"27588":0,"27589":-1,"27590":1860,"27591":0,"27592":-1,"27593":2211,"27594":0,"27595":-1,"27596":0,"27597":0,"27598":1884,"27599":0,"27600":0,"27601":0,"27602":-1,"27603":0,"27604":1799,"27605":2552,"27606":0,"27607":2716,"27608":0,"27609":0,"27610":0,"27611":-1,"27612":0,"27613":-1,"27614":366,"27615":0,"27616":0,"27617":0,"27618":-1,"27619":1793,"27620":0,"27621":44,"27622":0,"27623":0,"27624":0,"27625":0,"27626":0,"27627":391,"27628":-1,"27629":-1,"27630":1921,"27631":-1,"27632":0,"27633":3934,"27634":0,"27635":0,"27636":3397,"27637":2409,"27638":-1,"27639":0,"27640":2047,"27641":0,"27642":-1,"27643":-1,"27644":0,"27645":0,"27646":3952,"27647":0,"27648":0,"27649":-1,"27650":-1,"27651":-1,"27652":-1,"27653":0,"27654":2666,"27655":0,"27656":0,"27657":0,"27658":0,"27659":0,"27660":0,"27661":3945,"27662":-1,"27663":-1,"27664":3336,"27665":0,"27666":-1,"27667":0,"27668":0,"27669":0,"27670":0,"27671":-1,"27672":0,"27673":3156,"27674":0,"27675":2509,"27676":2976,"27677":265,"27678":1966,"27679":-1,"27680":0,"27681":-1,"27682":-1,"27683":-1,"27684":-1,"27685":-1,"27686":3350,"27687":0,"27688":2316,"27689":155,"27690":0,"27691":3399,"27692":0,"27693":0,"27694":-1,"27695":-1,"27696":0,"27697":0,"27698":-1,"27699":0,"27700":-1,"27701":0,"27702":0,"27703":2330,"27704":0,"27705":-1,"27706":-1,"27707":484,"27708":-1,"27709":0,"27710":-1,"27711":-1,"27712":377,"27713":1855,"27714":-1,"27715":0,"27716":0,"27717":-1,"27718":-1,"27719":3706,"27720":-1,"27721":0,"27722":0,"27723":0,"27724":-1,"27725":-1,"27726":0,"27727":0,"27728":2597,"27729":0,"27730":1787,"27731":3294,"27732":0,"27733":1793,"27734":3435,"27735":-1,"27736":-1,"27737":0,"27738":0,"27739":0,"27740":-1,"27741":78,"27742":0,"27743":0,"27744":3278,"27745":0,"27746":3864,"27747":-1,"27748":-1,"27749":3873,"27750":0,"27751":2334,"27752":-1,"27753":0,"27754":4041,"27755":2443,"27756":2926,"27757":3808,"27758":2959,"27759":2026,"27760":1847,"27761":3410,"27762":-1,"27763":2628,"27764":-1,"27765":-1,"27766":2250,"27767":-1,"27768":0,"27769":2939,"27770":0,"27771":-1,"27772":0,"27773":2974,"27774":-1,"27775":3996,"27776":0,"27777":0,"27778":2244,"27779":108,"27780":0,"27781":-1,"27782":20,"27783":0,"27784":3844,"27785":0,"27786":0,"27787":0,"27788":-1,"27789":-1,"27790":-1,"27791":-1,"27792":-1,"27793":3597,"27794":0,"27795":443,"27796":0,"27797":0,"27798":0,"27799":2606,"27800":0,"27801":412,"27802":-1,"27803":0,"27804":-1,"27805":0,"27806":-1,"27807":0,"27808":0,"27809":-1,"27810":3693,"27811":-1,"27812":-1,"27813":0,"27814":0,"27815":-1,"27816":-1,"27817":0,"27818":0,"27819":-1,"27820":0,"27821":0,"27822":0,"27823":0,"27824":0,"27825":0,"27826":3620,"27827":0,"27828":13,"27829":0,"27830":-1,"27831":0,"27832":2202,"27833":2886,"27834":-1,"27835":-1,"27836":0,"27837":0,"27838":-1,"27839":-1,"27840":2630,"27841":-1,"27842":0,"27843":0,"27844":0,"27845":-1,"27846":-1,"27847":0,"27848":-1,"27849":0,"27850":-1,"27851":-1,"27852":0,"27853":-1,"27854":0,"27855":0,"27856":0,"27857":0,"27858":3190,"27859":0,"27860":-1,"27861":2119,"27862":0,"27863":0,"27864":-1,"27865":-1,"27866":0,"27867":0,"27868":0,"27869":2734,"27870":-1,"27871":0,"27872":-1,"27873":0,"27874":0,"27875":0,"27876":0,"27877":-1,"27878":-1,"27879":-1,"27880":2738,"27881":418,"27882":0,"27883":-1,"27884":2808,"27885":0,"27886":0,"27887":1837,"27888":0,"27889":0,"27890":-1,"27891":-1,"27892":-1,"27893":0,"27894":63,"27895":0,"27896":0,"27897":-1,"27898":3092,"27899":3210,"27900":3057,"27901":0,"27902":-1,"27903":-1,"27904":-1,"27905":0,"27906":-1,"27907":0,"27908":0,"27909":0,"27910":3131,"27911":3238,"27912":260,"27913":-1,"27914":0,"27915":0,"27916":0,"27917":0,"27918":349,"27919":0,"27920":178,"27921":2470,"27922":2434,"27923":-1,"27924":2963,"27925":-1,"27926":-1,"27927":3923,"27928":0,"27929":0,"27930":0,"27931":3941,"27932":-1,"27933":0,"27934":0,"27935":-1,"27936":-1,"27937":0,"27938":0,"27939":-1,"27940":-1,"27941":2754,"27942":-1,"27943":2468,"27944":0,"27945":-1,"27946":3109,"27947":-1,"27948":0,"27949":-1,"27950":-1,"27951":0,"27952":0,"27953":0,"27954":0,"27955":366,"27956":0,"27957":0,"27958":-1,"27959":0,"27960":2796,"27961":-1,"27962":3271,"27963":280,"27964":0,"27965":2536,"27966":0,"27967":0,"27968":0,"27969":0,"27970":-1,"27971":2486,"27972":0,"27973":0,"27974":0,"27975":2389,"27976":0,"27977":3104,"27978":0,"27979":-1,"27980":0,"27981":166,"27982":-1,"27983":0,"27984":0,"27985":0,"27986":0,"27987":0,"27988":0,"27989":0,"27990":-1,"27991":-1,"27992":2491,"27993":-1,"27994":0,"27995":0,"27996":0,"27997":0,"27998":0,"27999":0,"28000":0,"28001":0,"28002":0,"28003":310,"28004":0,"28005":0,"28006":2128,"28007":0,"28008":-1,"28009":-1,"28010":2773,"28011":0,"28012":0,"28013":0,"28014":-1,"28015":2278,"28016":0,"28017":-1,"28018":0,"28019":-1,"28020":-1,"28021":0,"28022":-1,"28023":0,"28024":3747,"28025":0,"28026":0,"28027":0,"28028":-1,"28029":-1,"28030":2316,"28031":0,"28032":3967,"28033":442,"28034":-1,"28035":-1,"28036":-1,"28037":-1,"28038":3288,"28039":0,"28040":0,"28041":-1,"28042":0,"28043":0,"28044":-1,"28045":0,"28046":0,"28047":2488,"28048":3118,"28049":0,"28050":-1,"28051":0,"28052":0,"28053":0,"28054":3729,"28055":0,"28056":3905,"28057":100,"28058":2919,"28059":0,"28060":0,"28061":-1,"28062":-1,"28063":0,"28064":0,"28065":0,"28066":0,"28067":-1,"28068":-1,"28069":0,"28070":0,"28071":316,"28072":4048,"28073":-1,"28074":0,"28075":-1,"28076":0,"28077":0,"28078":-1,"28079":-1,"28080":-1,"28081":0,"28082":-1,"28083":0,"28084":0,"28085":0,"28086":0,"28087":-1,"28088":0,"28089":0,"28090":0,"28091":-1,"28092":0,"28093":0,"28094":0,"28095":0,"28096":-1,"28097":2307,"28098":3457,"28099":0,"28100":1819,"28101":-1,"28102":3056,"28103":-1,"28104":3287,"28105":3988,"28106":0,"28107":0,"28108":0,"28109":-1,"28110":0,"28111":0,"28112":-1,"28113":2615,"28114":-1,"28115":-1,"28116":-1,"28117":-1,"28118":0,"28119":0,"28120":0,"28121":0,"28122":0,"28123":0,"28124":2055,"28125":0,"28126":-1,"28127":0,"28128":-1,"28129":464,"28130":0,"28131":0,"28132":0,"28133":0,"28134":-1,"28135":1806,"28136":-1,"28137":0,"28138":0,"28139":0,"28140":2010,"28141":427,"28142":3830,"28143":-1,"28144":3334,"28145":0,"28146":-1,"28147":0,"28148":2308,"28149":-1,"28150":0,"28151":0,"28152":0,"28153":0,"28154":0,"28155":-1,"28156":3424,"28157":-1,"28158":0,"28159":0,"28160":0,"28161":0,"28162":2370,"28163":0,"28164":-1,"28165":-1,"28166":2016,"28167":0,"28168":0,"28169":0,"28170":0,"28171":-1,"28172":0,"28173":-1,"28174":-1,"28175":-1,"28176":3797,"28177":0,"28178":-1,"28179":-1,"28180":-1,"28181":-1,"28182":0,"28183":-1,"28184":-1,"28185":-1,"28186":0,"28187":-1,"28188":0,"28189":0,"28190":0,"28191":0,"28192":2629,"28193":-1,"28194":0,"28195":0,"28196":-1,"28197":-1,"28198":3103,"28199":3403,"28200":2970,"28201":0,"28202":0,"28203":0,"28204":-1,"28205":3620,"28206":-1,"28207":0,"28208":-1,"28209":0,"28210":0,"28211":0,"28212":-1,"28213":2322,"28214":1811,"28215":-1,"28216":3303,"28217":0,"28218":0,"28219":0,"28220":-1,"28221":0,"28222":0,"28223":0,"28224":-1,"28225":0,"28226":-1,"28227":-1,"28228":0,"28229":1852,"28230":-1,"28231":0,"28232":-1,"28233":0,"28234":0,"28235":-1,"28236":0,"28237":0,"28238":-1,"28239":0,"28240":2708,"28241":-1,"28242":0,"28243":-1,"28244":0,"28245":0,"28246":-1,"28247":-1,"28248":0,"28249":0,"28250":216,"28251":0,"28252":0,"28253":0,"28254":0,"28255":-1,"28256":1939,"28257":117,"28258":0,"28259":0,"28260":0,"28261":-1,"28262":2548,"28263":0,"28264":0,"28265":-1,"28266":0,"28267":0,"28268":0,"28269":0,"28270":-1,"28271":-1,"28272":0,"28273":0,"28274":0,"28275":-1,"28276":-1,"28277":0,"28278":0,"28279":3055,"28280":0,"28281":0,"28282":-1,"28283":0,"28284":0,"28285":-1,"28286":-1,"28287":0,"28288":-1,"28289":-1,"28290":0,"28291":-1,"28292":3098,"28293":0,"28294":2867,"28295":-1,"28296":123,"28297":2405,"28298":-1,"28299":3130,"28300":-1,"28301":0,"28302":0,"28303":0,"28304":0,"28305":0,"28306":0,"28307":0,"28308":-1,"28309":0,"28310":148,"28311":-1,"28312":3233,"28313":0,"28314":-1,"28315":0,"28316":3122,"28317":0,"28318":0,"28319":0,"28320":2058,"28321":0,"28322":-1,"28323":0,"28324":0,"28325":0,"28326":-1,"28327":-1,"28328":2444,"28329":-1,"28330":0,"28331":0,"28332":-1,"28333":-1,"28334":-1,"28335":3597,"28336":0,"28337":0,"28338":-1,"28339":-1,"28340":-1,"28341":2824,"28342":0,"28343":1830,"28344":3269,"28345":3257,"28346":0,"28347":2295,"28348":-1,"28349":-1,"28350":2430,"28351":-1,"28352":0,"28353":-1,"28354":0,"28355":-1,"28356":2121,"28357":2911,"28358":0,"28359":-1,"28360":0,"28361":2031,"28362":3683,"28363":0,"28364":3821,"28365":0,"28366":0,"28367":-1,"28368":-1,"28369":0,"28370":0,"28371":0,"28372":0,"28373":0,"28374":3553,"28375":0,"28376":0,"28377":3981,"28378":0,"28379":0,"28380":2679,"28381":-1,"28382":-1,"28383":2860,"28384":3397,"28385":0,"28386":-1,"28387":-1,"28388":2194,"28389":2517,"28390":3245,"28391":0,"28392":-1,"28393":-1,"28394":-1,"28395":-1,"28396":0,"28397":0,"28398":-1,"28399":-1,"28400":0,"28401":2280,"28402":0,"28403":0,"28404":3249,"28405":-1,"28406":0,"28407":0,"28408":2150,"28409":2798,"28410":-1,"28411":2210,"28412":2288,"28413":2890,"28414":-1,"28415":0,"28416":0,"28417":2665,"28418":-1,"28419":-1,"28420":0,"28421":-1,"28422":-1,"28423":0,"28424":0,"28425":0,"28426":-1,"28427":0,"28428":3368,"28429":0,"28430":0,"28431":0,"28432":3448,"28433":-1,"28434":0,"28435":0,"28436":0,"28437":0,"28438":-1,"28439":-1,"28440":0,"28441":3363,"28442":127,"28443":-1,"28444":0,"28445":3138,"28446":3178,"28447":0,"28448":0,"28449":2252,"28450":0,"28451":0,"28452":72,"28453":1886,"28454":0,"28455":-1,"28456":2012,"28457":0,"28458":-1,"28459":2788,"28460":0,"28461":-1,"28462":-1,"28463":0,"28464":-1,"28465":2854,"28466":0,"28467":-1,"28468":-1,"28469":-1,"28470":-1,"28471":-1,"28472":0,"28473":-1,"28474":-1,"28475":3407,"28476":-1,"28477":0,"28478":1998,"28479":-1,"28480":0,"28481":3997,"28482":0,"28483":0,"28484":2583,"28485":0,"28486":0,"28487":0,"28488":2456,"28489":-1,"28490":0,"28491":195,"28492":0,"28493":48,"28494":0,"28495":0,"28496":3274,"28497":0,"28498":2472,"28499":0,"28500":0,"28501":-1,"28502":0,"28503":-1,"28504":0,"28505":0,"28506":-1,"28507":2554,"28508":2714,"28509":-1,"28510":0,"28511":0,"28512":0,"28513":2762,"28514":0,"28515":-1,"28516":-1,"28517":0,"28518":0,"28519":2283,"28520":1891,"28521":-1,"28522":0,"28523":3242,"28524":0,"28525":3137,"28526":0,"28527":-1,"28528":-1,"28529":-1,"28530":0,"28531":-1,"28532":0,"28533":0,"28534":0,"28535":0,"28536":-1,"28537":-1,"28538":-1,"28539":339,"28540":2098,"28541":2957,"28542":-1,"28543":-1,"28544":-1,"28545":-1,"28546":0,"28547":0,"28548":0,"28549":-1,"28550":-1,"28551":3077,"28552":2665,"28553":-1,"28554":0,"28555":0,"28556":-1,"28557":-1,"28558":0,"28559":2681,"28560":-1,"28561":-1,"28562":3083,"28563":0,"28564":2303,"28565":-1,"28566":-1,"28567":-1,"28568":0,"28569":3989,"28570":0,"28571":-1,"28572":0,"28573":2209,"28574":0,"28575":3395,"28576":0,"28577":3722,"28578":-1,"28579":-1,"28580":0,"28581":0,"28582":-1,"28583":-1,"28584":0,"28585":2093,"28586":-1,"28587":-1,"28588":0,"28589":0,"28590":-1,"28591":-1,"28592":0,"28593":-1,"28594":0,"28595":0,"28596":2229,"28597":-1,"28598":0,"28599":0,"28600":-1,"28601":0,"28602":43,"28603":0,"28604":0,"28605":-1,"28606":-1,"28607":-1,"28608":2770,"28609":2102,"28610":0,"28611":-1,"28612":-1,"28613":-1,"28614":-1,"28615":-1,"28616":-1,"28617":0,"28618":-1,"28619":0,"28620":3491,"28621":3199,"28622":1882,"28623":-1,"28624":0,"28625":0,"28626":4011,"28627":2671,"28628":0,"28629":0,"28630":0,"28631":0,"28632":0,"28633":0,"28634":0,"28635":0,"28636":-1,"28637":0,"28638":-1,"28639":-1,"28640":-1,"28641":0,"28642":-1,"28643":3822,"28644":3143,"28645":-1,"28646":0,"28647":0,"28648":2996,"28649":0,"28650":0,"28651":0,"28652":2150,"28653":0,"28654":3301,"28655":-1,"28656":-1,"28657":-1,"28658":0,"28659":-1,"28660":0,"28661":-1,"28662":0,"28663":-1,"28664":0,"28665":-1,"28666":0,"28667":0,"28668":0,"28669":3296,"28670":0,"28671":0,"28672":0,"28673":-1,"28674":0,"28675":0,"28676":0,"28677":-1,"28678":0,"28679":0,"28680":0,"28681":0,"28682":-1,"28683":0,"28684":-1,"28685":0,"28686":-1,"28687":2547,"28688":2998,"28689":-1,"28690":0,"28691":0,"28692":3039,"28693":0,"28694":-1,"28695":0,"28696":0,"28697":0,"28698":-1,"28699":-1,"28700":0,"28701":373,"28702":-1,"28703":-1,"28704":3753,"28705":-1,"28706":3756,"28707":-1,"28708":-1,"28709":1951,"28710":0,"28711":-1,"28712":-1,"28713":0,"28714":-1,"28715":0,"28716":-1,"28717":0,"28718":3230,"28719":2382,"28720":-1,"28721":0,"28722":-1,"28723":-1,"28724":0,"28725":-1,"28726":118,"28727":-1,"28728":-1,"28729":2979,"28730":0,"28731":0,"28732":3116,"28733":0,"28734":3705,"28735":2756,"28736":0,"28737":-1,"28738":0,"28739":-1,"28740":0,"28741":-1,"28742":0,"28743":-1,"28744":2689,"28745":1872,"28746":2237,"28747":-1,"28748":0,"28749":-1,"28750":0,"28751":0,"28752":-1,"28753":148,"28754":-1,"28755":2532,"28756":0,"28757":2886,"28758":3105,"28759":-1,"28760":0,"28761":1991,"28762":0,"28763":-1,"28764":-1,"28765":-1,"28766":-1,"28767":0,"28768":0,"28769":-1,"28770":1856,"28771":2110,"28772":-1,"28773":0,"28774":-1,"28775":0,"28776":0,"28777":-1,"28778":0,"28779":-1,"28780":-1,"28781":-1,"28782":0,"28783":-1,"28784":0,"28785":0,"28786":0,"28787":2949,"28788":-1,"28789":0,"28790":37,"28791":0,"28792":0,"28793":153,"28794":3114,"28795":28,"28796":0,"28797":0,"28798":0,"28799":3489,"28800":-1,"28801":0,"28802":-1,"28803":0,"28804":-1,"28805":0,"28806":0,"28807":0,"28808":0,"28809":2808,"28810":67,"28811":0,"28812":0,"28813":0,"28814":0,"28815":-1,"28816":-1,"28817":0,"28818":0,"28819":-1,"28820":-1,"28821":-1,"28822":0,"28823":0,"28824":0,"28825":-1,"28826":0,"28827":191,"28828":-1,"28829":0,"28830":-1,"28831":0,"28832":0,"28833":0,"28834":289,"28835":-1,"28836":0,"28837":2720,"28838":0,"28839":0,"28840":-1,"28841":0,"28842":0,"28843":0,"28844":-1,"28845":3257,"28846":0,"28847":-1,"28848":-1,"28849":0,"28850":-1,"28851":0,"28852":0,"28853":0,"28854":0,"28855":-1,"28856":3110,"28857":0,"28858":0,"28859":0,"28860":0,"28861":348,"28862":3180,"28863":0,"28864":-1,"28865":0,"28866":2812,"28867":2028,"28868":0,"28869":0,"28870":-1,"28871":-1,"28872":0,"28873":0,"28874":0,"28875":-1,"28876":0,"28877":-1,"28878":-1,"28879":-1,"28880":-1,"28881":-1,"28882":-1,"28883":-1,"28884":3412,"28885":-1,"28886":3315,"28887":0,"28888":-1,"28889":0,"28890":-1,"28891":-1,"28892":-1,"28893":3374,"28894":0,"28895":-1,"28896":3564,"28897":424,"28898":2422,"28899":0,"28900":0,"28901":0,"28902":-1,"28903":0,"28904":0,"28905":2776,"28906":-1,"28907":3779,"28908":0,"28909":0,"28910":3956,"28911":0,"28912":-1,"28913":-1,"28914":0,"28915":0,"28916":0,"28917":1929,"28918":-1,"28919":-1,"28920":-1,"28921":0,"28922":3637,"28923":0,"28924":280,"28925":3575,"28926":0,"28927":0,"28928":-1,"28929":-1,"28930":2465,"28931":-1,"28932":0,"28933":-1,"28934":0,"28935":0,"28936":-1,"28937":0,"28938":2056,"28939":357,"28940":-1,"28941":2580,"28942":0,"28943":0,"28944":0,"28945":-1,"28946":0,"28947":3416,"28948":0,"28949":0,"28950":-1,"28951":-1,"28952":0,"28953":0,"28954":-1,"28955":0,"28956":2670,"28957":0,"28958":0,"28959":0,"28960":3808,"28961":-1,"28962":2579,"28963":-1,"28964":-1,"28965":0,"28966":2597,"28967":3511,"28968":283,"28969":-1,"28970":3201,"28971":-1,"28972":-1,"28973":0,"28974":0,"28975":343,"28976":0,"28977":0,"28978":0,"28979":3173,"28980":0,"28981":0,"28982":3088,"28983":0,"28984":3816,"28985":-1,"28986":0,"28987":-1,"28988":0,"28989":0,"28990":0,"28991":-1,"28992":-1,"28993":3658,"28994":0,"28995":-1,"28996":-1,"28997":50,"28998":0,"28999":0,"29000":-1,"29001":-1,"29002":415,"29003":-1,"29004":2225,"29005":167,"29006":2553,"29007":-1,"29008":0,"29009":0,"29010":0,"29011":0,"29012":0,"29013":0,"29014":-1,"29015":0,"29016":-1,"29017":0,"29018":-1,"29019":-1,"29020":-1,"29021":-1,"29022":156,"29023":1942,"29024":0,"29025":3293,"29026":3032,"29027":-1,"29028":-1,"29029":-1,"29030":-1,"29031":0,"29032":-1,"29033":-1,"29034":486,"29035":0,"29036":-1,"29037":-1,"29038":-1,"29039":2948,"29040":2173,"29041":-1,"29042":-1,"29043":0,"29044":0,"29045":-1,"29046":0,"29047":0,"29048":0,"29049":0,"29050":-1,"29051":2173,"29052":0,"29053":3888,"29054":-1,"29055":0,"29056":3838,"29057":0,"29058":0,"29059":0,"29060":0,"29061":3857,"29062":-1,"29063":303,"29064":-1,"29065":0,"29066":-1,"29067":0,"29068":0,"29069":3631,"29070":2444,"29071":-1,"29072":0,"29073":2121,"29074":0,"29075":0,"29076":-1,"29077":0,"29078":0,"29079":29,"29080":0,"29081":-1,"29082":3390,"29083":-1,"29084":0,"29085":2796,"29086":3091,"29087":2373,"29088":0,"29089":3792,"29090":-1,"29091":2599,"29092":0,"29093":1795,"29094":0,"29095":-1,"29096":-1,"29097":0,"29098":0,"29099":0,"29100":0,"29101":3387,"29102":-1,"29103":-1,"29104":-1,"29105":0,"29106":1981,"29107":0,"29108":3162,"29109":0,"29110":0,"29111":-1,"29112":-1,"29113":2458,"29114":2686,"29115":-1,"29116":-1,"29117":-1,"29118":-1,"29119":0,"29120":1796,"29121":0,"29122":0,"29123":-1,"29124":0,"29125":2311,"29126":0,"29127":11,"29128":0,"29129":0,"29130":0,"29131":-1,"29132":-1,"29133":-1,"29134":0,"29135":0,"29136":-1,"29137":2035,"29138":-1,"29139":0,"29140":0,"29141":-1,"29142":2713,"29143":0,"29144":3509,"29145":3605,"29146":-1,"29147":-1,"29148":-1,"29149":0,"29150":-1,"29151":-1,"29152":3283,"29153":0,"29154":0,"29155":459,"29156":2726,"29157":2162,"29158":-1,"29159":0,"29160":0,"29161":2101,"29162":1886,"29163":0,"29164":168,"29165":120,"29166":0,"29167":-1,"29168":-1,"29169":-1,"29170":2101,"29171":0,"29172":0,"29173":-1,"29174":0,"29175":3307,"29176":2963,"29177":1855,"29178":0,"29179":3541,"29180":0,"29181":0,"29182":81,"29183":-1,"29184":0,"29185":0,"29186":0,"29187":0,"29188":0,"29189":-1,"29190":-1,"29191":2705,"29192":0,"29193":3111,"29194":2569,"29195":-1,"29196":3195,"29197":-1,"29198":0,"29199":-1,"29200":0,"29201":2078,"29202":-1,"29203":0,"29204":0,"29205":0,"29206":-1,"29207":0,"29208":3636,"29209":-1,"29210":0,"29211":0,"29212":0,"29213":1889,"29214":0,"29215":2374,"29216":500,"29217":0,"29218":0,"29219":0,"29220":0,"29221":0,"29222":3746,"29223":-1,"29224":-1,"29225":0,"29226":0,"29227":0,"29228":3937,"29229":-1,"29230":0,"29231":3028,"29232":-1,"29233":0,"29234":0,"29235":0,"29236":0,"29237":0,"29238":0,"29239":0,"29240":-1,"29241":0,"29242":0,"29243":3170,"29244":-1,"29245":-1,"29246":0,"29247":0,"29248":0,"29249":0,"29250":0,"29251":2237,"29252":-1,"29253":2796,"29254":3485,"29255":0,"29256":-1,"29257":0,"29258":0,"29259":411,"29260":-1,"29261":0,"29262":2479,"29263":-1,"29264":-1,"29265":0,"29266":3953,"29267":0,"29268":0,"29269":-1,"29270":3372,"29271":3200,"29272":0,"29273":-1,"29274":0,"29275":-1,"29276":0,"29277":-1,"29278":-1,"29279":2123,"29280":0,"29281":0,"29282":0,"29283":0,"29284":0,"29285":3504,"29286":0,"29287":0,"29288":3870,"29289":-1,"29290":-1,"29291":3278,"29292":-1,"29293":-1,"29294":-1,"29295":0,"29296":-1,"29297":2124,"29298":0,"29299":0,"29300":-1,"29301":-1,"29302":-1,"29303":2094,"29304":0,"29305":2846,"29306":3001,"29307":0,"29308":3985,"29309":-1,"29310":-1,"29311":0,"29312":-1,"29313":-1,"29314":-1,"29315":0,"29316":-1,"29317":0,"29318":0,"29319":0,"29320":-1,"29321":-1,"29322":3242,"29323":211,"29324":0,"29325":-1,"29326":2191,"29327":378,"29328":0,"29329":-1,"29330":-1,"29331":3071,"29332":3684,"29333":0,"29334":0,"29335":0,"29336":0,"29337":-1,"29338":174,"29339":0,"29340":-1,"29341":-1,"29342":-1,"29343":0,"29344":-1,"29345":3153,"29346":0,"29347":0,"29348":-1,"29349":0,"29350":3919,"29351":-1,"29352":0,"29353":0,"29354":-1,"29355":-1,"29356":0,"29357":0,"29358":-1,"29359":0,"29360":219,"29361":2832,"29362":-1,"29363":-1,"29364":-1,"29365":0,"29366":0,"29367":0,"29368":3018,"29369":3397,"29370":-1,"29371":0,"29372":119,"29373":3586,"29374":-1,"29375":406,"29376":362,"29377":0,"29378":-1,"29379":-1,"29380":3709,"29381":3284,"29382":0,"29383":-1,"29384":0,"29385":-1,"29386":2797,"29387":0,"29388":0,"29389":3107,"29390":0,"29391":0,"29392":0,"29393":2711,"29394":0,"29395":0,"29396":0,"29397":0,"29398":0,"29399":2414,"29400":3765,"29401":0,"29402":0,"29403":-1,"29404":28,"29405":1775,"29406":-1,"29407":0,"29408":216,"29409":0,"29410":3446,"29411":-1,"29412":0,"29413":446,"29414":3905,"29415":3842,"29416":0,"29417":0,"29418":0,"29419":154,"29420":0,"29421":136,"29422":0,"29423":0,"29424":0,"29425":2624,"29426":3675,"29427":-1,"29428":3434,"29429":-1,"29430":-1,"29431":0,"29432":-1,"29433":492,"29434":0,"29435":-1,"29436":3605,"29437":0,"29438":0,"29439":0,"29440":0,"29441":0,"29442":3472,"29443":0,"29444":3537,"29445":0,"29446":0,"29447":508,"29448":0,"29449":0,"29450":0,"29451":2999,"29452":0,"29453":-1,"29454":-1,"29455":-1,"29456":-1,"29457":0,"29458":0,"29459":3493,"29460":3431,"29461":43,"29462":0,"29463":2224,"29464":0,"29465":0,"29466":0,"29467":-1,"29468":3648,"29469":0,"29470":3833,"29471":0,"29472":0,"29473":0,"29474":1915,"29475":-1,"29476":1916,"29477":3705,"29478":0,"29479":3062,"29480":0,"29481":-1,"29482":0,"29483":2269,"29484":0,"29485":-1,"29486":-1,"29487":0,"29488":2529,"29489":-1,"29490":3649,"29491":0,"29492":0,"29493":0,"29494":0,"29495":3111,"29496":0,"29497":2064,"29498":3173,"29499":-1,"29500":-1,"29501":-1,"29502":0,"29503":0,"29504":-1,"29505":0,"29506":0,"29507":206,"29508":-1,"29509":0,"29510":-1,"29511":2956,"29512":-1,"29513":0,"29514":0,"29515":-1,"29516":-1,"29517":133,"29518":-1,"29519":0,"29520":0,"29521":-1,"29522":-1,"29523":-1,"29524":0,"29525":0,"29526":-1,"29527":-1,"29528":0,"29529":-1,"29530":-1,"29531":3809,"29532":-1,"29533":271,"29534":-1,"29535":0,"29536":-1,"29537":0,"29538":0,"29539":219,"29540":-1,"29541":0,"29542":0,"29543":281,"29544":0,"29545":2819,"29546":0,"29547":1996,"29548":0,"29549":-1,"29550":0,"29551":0,"29552":0,"29553":0,"29554":0,"29555":0,"29556":-1,"29557":0,"29558":0,"29559":0,"29560":0,"29561":2150,"29562":0,"29563":-1,"29564":0,"29565":2733,"29566":2665,"29567":3282,"29568":-1,"29569":0,"29570":0,"29571":0,"29572":0,"29573":119,"29574":-1,"29575":0,"29576":0,"29577":0,"29578":-1,"29579":2432,"29580":4048,"29581":0,"29582":0,"29583":0,"29584":-1,"29585":465,"29586":-1,"29587":0,"29588":0,"29589":0,"29590":0,"29591":-1,"29592":0,"29593":0,"29594":3675,"29595":3904,"29596":0,"29597":0,"29598":-1,"29599":-1,"29600":2976,"29601":106,"29602":0,"29603":0,"29604":2615,"29605":0,"29606":-1,"29607":2335,"29608":3381,"29609":0,"29610":0,"29611":0,"29612":236,"29613":-1,"29614":0,"29615":-1,"29616":-1,"29617":0,"29618":0,"29619":0,"29620":3067,"29621":-1,"29622":0,"29623":0,"29624":0,"29625":-1,"29626":2155,"29627":-1,"29628":0,"29629":0,"29630":0,"29631":0,"29632":-1,"29633":3921,"29634":0,"29635":0,"29636":-1,"29637":0,"29638":0,"29639":2203,"29640":3674,"29641":0,"29642":-1,"29643":3747,"29644":0,"29645":3481,"29646":0,"29647":-1,"29648":-1,"29649":0,"29650":3840,"29651":-1,"29652":0,"29653":-1,"29654":-1,"29655":-1,"29656":0,"29657":3213,"29658":-1,"29659":-1,"29660":-1,"29661":0,"29662":0,"29663":0,"29664":-1,"29665":-1,"29666":-1,"29667":-1,"29668":4008,"29669":-1,"29670":0,"29671":2326,"29672":3106,"29673":0,"29674":-1,"29675":0,"29676":0,"29677":3015,"29678":0,"29679":-1,"29680":0,"29681":0,"29682":0,"29683":3199,"29684":2149,"29685":0,"29686":2795,"29687":10,"29688":2321,"29689":0,"29690":-1,"29691":-1,"29692":-1,"29693":2622,"29694":0,"29695":1998,"29696":2881,"29697":0,"29698":-1,"29699":3008,"29700":-1,"29701":-1,"29702":-1,"29703":3374,"29704":2468,"29705":0,"29706":-1,"29707":-1,"29708":0,"29709":0,"29710":0,"29711":-1,"29712":-1,"29713":3077,"29714":-1,"29715":1867,"29716":0,"29717":2005,"29718":0,"29719":-1,"29720":-1,"29721":0,"29722":0,"29723":0,"29724":3254,"29725":-1,"29726":-1,"29727":-1,"29728":-1,"29729":0,"29730":-1,"29731":0,"29732":2972,"29733":0,"29734":0,"29735":-1,"29736":-1,"29737":0,"29738":0,"29739":3893,"29740":0,"29741":0,"29742":0,"29743":-1,"29744":3049,"29745":3857,"29746":0,"29747":-1,"29748":0,"29749":476,"29750":0,"29751":-1,"29752":3959,"29753":0,"29754":0,"29755":-1,"29756":-1,"29757":0,"29758":-1,"29759":0,"29760":0,"29761":0,"29762":-1,"29763":-1,"29764":-1,"29765":0,"29766":0,"29767":0,"29768":211,"29769":0,"29770":0,"29771":1787,"29772":2536,"29773":0,"29774":0,"29775":-1,"29776":0,"29777":2535,"29778":0,"29779":0,"29780":2957,"29781":0,"29782":2538,"29783":2333,"29784":3790,"29785":0,"29786":-1,"29787":204,"29788":0,"29789":0,"29790":0,"29791":-1,"29792":-1,"29793":0,"29794":0,"29795":0,"29796":-1,"29797":0,"29798":-1,"29799":-1,"29800":0,"29801":3788,"29802":-1,"29803":-1,"29804":-1,"29805":0,"29806":0,"29807":0,"29808":0,"29809":3826,"29810":2029,"29811":-1,"29812":0,"29813":3670,"29814":0,"29815":0,"29816":3785,"29817":2713,"29818":0,"29819":-1,"29820":2922,"29821":-1,"29822":-1,"29823":1881,"29824":-1,"29825":3210,"29826":0,"29827":-1,"29828":0,"29829":0,"29830":3145,"29831":2192,"29832":0,"29833":-1,"29834":0,"29835":0,"29836":4032,"29837":0,"29838":0,"29839":-1,"29840":-1,"29841":0,"29842":0,"29843":-1,"29844":0,"29845":2931,"29846":-1,"29847":3022,"29848":0,"29849":-1,"29850":-1,"29851":-1,"29852":3089,"29853":0,"29854":-1,"29855":0,"29856":0,"29857":-1,"29858":0,"29859":0,"29860":-1,"29861":3849,"29862":3994,"29863":0,"29864":0,"29865":-1,"29866":-1,"29867":-1,"29868":45,"29869":0,"29870":0,"29871":-1,"29872":0,"29873":0,"29874":0,"29875":0,"29876":3112,"29877":0,"29878":3788,"29879":0,"29880":0,"29881":-1,"29882":0,"29883":0,"29884":-1,"29885":0,"29886":-1,"29887":3270,"29888":0,"29889":0,"29890":3913,"29891":0,"29892":2907,"29893":1995,"29894":-1,"29895":0,"29896":-1,"29897":0,"29898":2,"29899":2030,"29900":0,"29901":2046,"29902":-1,"29903":0,"29904":-1,"29905":3643,"29906":0,"29907":0,"29908":204,"29909":-1,"29910":-1,"29911":3921,"29912":2827,"29913":1800,"29914":0,"29915":-1,"29916":0,"29917":2726,"29918":0,"29919":242,"29920":0,"29921":-1,"29922":-1,"29923":-1,"29924":-1,"29925":-1,"29926":0,"29927":2841,"29928":2262,"29929":0,"29930":-1,"29931":-1,"29932":0,"29933":0,"29934":2337,"29935":-1,"29936":2747,"29937":3272,"29938":0,"29939":0,"29940":3277,"29941":0,"29942":0,"29943":-1,"29944":-1,"29945":-1,"29946":-1,"29947":0,"29948":-1,"29949":0,"29950":-1,"29951":0,"29952":-1,"29953":-1,"29954":0,"29955":-1,"29956":2045,"29957":4000,"29958":-1,"29959":0,"29960":1944,"29961":0,"29962":0,"29963":-1,"29964":-1,"29965":0,"29966":0,"29967":0,"29968":0,"29969":0,"29970":0,"29971":11,"29972":0,"29973":3138,"29974":0,"29975":-1,"29976":0,"29977":0,"29978":3216,"29979":0,"29980":0,"29981":0,"29982":0,"29983":0,"29984":-1,"29985":2947,"29986":-1,"29987":-1,"29988":3043,"29989":0,"29990":0,"29991":-1,"29992":2731,"29993":-1,"29994":0,"29995":-1,"29996":0,"29997":-1,"29998":0,"29999":0,"30000":0,"30001":2879,"30002":0,"30003":0,"30004":-1,"30005":3081,"30006":-1,"30007":-1,"30008":0,"30009":2209,"30010":-1,"30011":0,"30012":-1,"30013":0,"30014":3411,"30015":319,"30016":0,"30017":-1,"30018":0,"30019":63,"30020":-1,"30021":-1,"30022":-1,"30023":0,"30024":0,"30025":0,"30026":-1,"30027":0,"30028":0,"30029":0,"30030":3427,"30031":-1,"30032":0,"30033":-1,"30034":0,"30035":-1,"30036":-1,"30037":0,"30038":0,"30039":0,"30040":0,"30041":0,"30042":2480,"30043":259,"30044":0,"30045":2183,"30046":-1,"30047":0,"30048":0,"30049":-1,"30050":2008,"30051":-1,"30052":0,"30053":0,"30054":0,"30055":-1,"30056":0,"30057":-1,"30058":-1,"30059":0,"30060":-1,"30061":0,"30062":0,"30063":-1,"30064":4032,"30065":0,"30066":1825,"30067":165,"30068":0,"30069":-1,"30070":0,"30071":-1,"30072":-1,"30073":0,"30074":-1,"30075":-1,"30076":0,"30077":2815,"30078":-1,"30079":0,"30080":2003,"30081":0,"30082":0,"30083":0,"30084":0,"30085":53,"30086":0,"30087":0,"30088":3199,"30089":2273,"30090":-1,"30091":0,"30092":2817,"30093":-1,"30094":0,"30095":0,"30096":-1,"30097":-1,"30098":0,"30099":0,"30100":0,"30101":0,"30102":0,"30103":0,"30104":3104,"30105":-1,"30106":-1,"30107":3786,"30108":0,"30109":0,"30110":0,"30111":2578,"30112":-1,"30113":2995,"30114":-1,"30115":3665,"30116":214,"30117":0,"30118":-1,"30119":-1,"30120":-1,"30121":3598,"30122":-1,"30123":-1,"30124":0,"30125":0,"30126":-1,"30127":0,"30128":-1,"30129":0,"30130":125,"30131":-1,"30132":0,"30133":0,"30134":3162,"30135":0,"30136":0,"30137":295,"30138":1914,"30139":-1,"30140":2397,"30141":0,"30142":355,"30143":0,"30144":0,"30145":-1,"30146":-1,"30147":3938,"30148":-1,"30149":3068,"30150":0,"30151":0,"30152":3030,"30153":-1,"30154":-1,"30155":3169,"30156":-1,"30157":0,"30158":3742,"30159":0,"30160":286,"30161":0,"30162":3888,"30163":0,"30164":4038,"30165":0,"30166":0,"30167":-1,"30168":-1,"30169":-1,"30170":0,"30171":-1,"30172":-1,"30173":0,"30174":3309,"30175":74,"30176":214,"30177":0,"30178":-1,"30179":-1,"30180":-1,"30181":-1,"30182":-1,"30183":0,"30184":0,"30185":0,"30186":-1,"30187":1838,"30188":-1,"30189":0,"30190":0,"30191":-1,"30192":0,"30193":2200,"30194":-1,"30195":1990,"30196":3939,"30197":-1,"30198":0,"30199":-1,"30200":0,"30201":0,"30202":3641,"30203":0,"30204":2446,"30205":-1,"30206":-1,"30207":2774,"30208":0,"30209":0,"30210":0,"30211":2926,"30212":2891,"30213":0,"30214":3585,"30215":-1,"30216":-1,"30217":2229,"30218":-1,"30219":0,"30220":-1,"30221":0,"30222":0,"30223":-1,"30224":0,"30225":0,"30226":0,"30227":0,"30228":-1,"30229":0,"30230":4020,"30231":-1,"30232":-1,"30233":2428,"30234":0,"30235":0,"30236":0,"30237":0,"30238":-1,"30239":0,"30240":0,"30241":-1,"30242":-1,"30243":0,"30244":0,"30245":3607,"30246":3725,"30247":0,"30248":-1,"30249":-1,"30250":-1,"30251":0,"30252":-1,"30253":0,"30254":0,"30255":0,"30256":-1,"30257":0,"30258":0,"30259":0,"30260":0,"30261":0,"30262":0,"30263":0,"30264":3111,"30265":-1,"30266":2730,"30267":-1,"30268":2488,"30269":0,"30270":1790,"30271":-1,"30272":0,"30273":-1,"30274":0,"30275":0,"30276":-1,"30277":0,"30278":0,"30279":0,"30280":-1,"30281":-1,"30282":-1,"30283":0,"30284":0,"30285":0,"30286":0,"30287":-1,"30288":3182,"30289":0,"30290":0,"30291":19,"30292":98,"30293":-1,"30294":1810,"30295":0,"30296":0,"30297":0,"30298":3189,"30299":358,"30300":86,"30301":0,"30302":-1,"30303":-1,"30304":0,"30305":4051,"30306":4026,"30307":0,"30308":0,"30309":-1,"30310":478,"30311":3849,"30312":3833,"30313":0,"30314":2708,"30315":-1,"30316":0,"30317":0,"30318":2568,"30319":-1,"30320":0,"30321":-1,"30322":3577,"30323":0,"30324":-1,"30325":0,"30326":3320,"30327":-1,"30328":0,"30329":2837,"30330":3580,"30331":0,"30332":0,"30333":-1,"30334":0,"30335":3617,"30336":-1,"30337":0,"30338":0,"30339":0,"30340":0,"30341":0,"30342":3445,"30343":0,"30344":0,"30345":-1,"30346":-1,"30347":2081,"30348":2531,"30349":-1,"30350":0,"30351":-1,"30352":-1,"30353":0,"30354":3293,"30355":3852,"30356":0,"30357":1797,"30358":-1,"30359":0,"30360":3016,"30361":0,"30362":-1,"30363":-1,"30364":0,"30365":3016,"30366":2310,"30367":0,"30368":-1,"30369":-1,"30370":-1,"30371":-1,"30372":0,"30373":0,"30374":3608,"30375":0,"30376":0,"30377":57,"30378":-1,"30379":3899,"30380":2449,"30381":0,"30382":-1,"30383":-1,"30384":300,"30385":0,"30386":0,"30387":0,"30388":0,"30389":-1,"30390":0,"30391":-1,"30392":0,"30393":0,"30394":0,"30395":-1,"30396":-1,"30397":0,"30398":0,"30399":-1,"30400":0,"30401":-1,"30402":0,"30403":-1,"30404":3929,"30405":-1,"30406":285,"30407":2305,"30408":0,"30409":-1,"30410":0,"30411":2620,"30412":-1,"30413":-1,"30414":0,"30415":293,"30416":3554,"30417":0,"30418":415,"30419":-1,"30420":0,"30421":2121,"30422":0,"30423":3104,"30424":0,"30425":-1,"30426":0,"30427":2802,"30428":0,"30429":0,"30430":0,"30431":0,"30432":-1,"30433":0,"30434":0,"30435":0,"30436":4053,"30437":0,"30438":3373,"30439":0,"30440":0,"30441":0,"30442":0,"30443":0,"30444":2400,"30445":-1,"30446":3094,"30447":1980,"30448":2697,"30449":2566,"30450":-1,"30451":0,"30452":0,"30453":0,"30454":1984,"30455":2993,"30456":2612,"30457":3265,"30458":3141,"30459":0,"30460":-1,"30461":1954,"30462":2916,"30463":-1,"30464":2955,"30465":0,"30466":-1,"30467":-1,"30468":0,"30469":-1,"30470":2777,"30471":-1,"30472":0,"30473":0,"30474":0,"30475":-1,"30476":0,"30477":-1,"30478":-1,"30479":0,"30480":0,"30481":3390,"30482":2256,"30483":0,"30484":0,"30485":0,"30486":-1,"30487":0,"30488":242,"30489":4054,"30490":-1,"30491":0,"30492":20,"30493":0,"30494":-1,"30495":3831,"30496":0,"30497":3908,"30498":-1,"30499":0,"30500":0,"30501":-1,"30502":0,"30503":-1,"30504":2770,"30505":0,"30506":-1,"30507":-1,"30508":2657,"30509":3054,"30510":-1,"30511":0,"30512":94,"30513":-1,"30514":-1,"30515":0,"30516":-1,"30517":-1,"30518":2946,"30519":0,"30520":0,"30521":0,"30522":0,"30523":2754,"30524":-1,"30525":0,"30526":0,"30527":3097,"30528":0,"30529":-1,"30530":0,"30531":0,"30532":0,"30533":-1,"30534":0,"30535":0,"30536":2868,"30537":355,"30538":2429,"30539":-1,"30540":0,"30541":3998,"30542":2804,"30543":0,"30544":-1,"30545":-1,"30546":2787,"30547":-1,"30548":-1,"30549":0,"30550":-1,"30551":-1,"30552":3567,"30553":0,"30554":0,"30555":-1,"30556":0,"30557":0,"30558":-1,"30559":0,"30560":-1,"30561":0,"30562":0,"30563":0,"30564":2234,"30565":-1,"30566":0,"30567":0,"30568":0,"30569":0,"30570":2125,"30571":-1,"30572":3662,"30573":-1,"30574":2899,"30575":0,"30576":0,"30577":-1,"30578":248,"30579":3200,"30580":2293,"30581":-1,"30582":0,"30583":0,"30584":0,"30585":0,"30586":0,"30587":0,"30588":0,"30589":0,"30590":3861,"30591":3688,"30592":2223,"30593":3103,"30594":0,"30595":-1,"30596":1804,"30597":-1,"30598":3650,"30599":0,"30600":421,"30601":3433,"30602":0,"30603":-1,"30604":2714,"30605":0,"30606":2091,"30607":0,"30608":0,"30609":0,"30610":81,"30611":3600,"30612":-1,"30613":-1,"30614":0,"30615":-1,"30616":0,"30617":-1,"30618":2032,"30619":195,"30620":-1,"30621":-1,"30622":-1,"30623":-1,"30624":-1,"30625":3559,"30626":0,"30627":0,"30628":2648,"30629":0,"30630":-1,"30631":0,"30632":2948,"30633":0,"30634":-1,"30635":0,"30636":-1,"30637":-1,"30638":0,"30639":-1,"30640":-1,"30641":0,"30642":0,"30643":-1,"30644":0,"30645":0,"30646":2046,"30647":3597,"30648":0,"30649":-1,"30650":0,"30651":0,"30652":-1,"30653":0,"30654":2433,"30655":0,"30656":0,"30657":0,"30658":0,"30659":-1,"30660":0,"30661":1865,"30662":-1,"30663":-1,"30664":-1,"30665":0,"30666":0,"30667":0,"30668":2452,"30669":3818,"30670":-1,"30671":-1,"30672":3560,"30673":0,"30674":-1,"30675":0,"30676":415,"30677":-1,"30678":0,"30679":0,"30680":0,"30681":0,"30682":0,"30683":0,"30684":3255,"30685":2813,"30686":0,"30687":0,"30688":3206,"30689":-1,"30690":0,"30691":0,"30692":-1,"30693":0,"30694":0,"30695":0,"30696":0,"30697":-1,"30698":2652,"30699":-1,"30700":-1,"30701":1889,"30702":-1,"30703":-1,"30704":3740,"30705":3282,"30706":0,"30707":0,"30708":0,"30709":0,"30710":411,"30711":0,"30712":0,"30713":0,"30714":3448,"30715":0,"30716":484,"30717":245,"30718":0,"30719":0,"30720":3590,"30721":0,"30722":-1,"30723":-1,"30724":3464,"30725":3247,"30726":0,"30727":-1,"30728":0,"30729":3671,"30730":0,"30731":-1,"30732":-1,"30733":0,"30734":-1,"30735":0,"30736":-1,"30737":0,"30738":3268,"30739":3345,"30740":-1,"30741":3363,"30742":-1,"30743":0,"30744":-1,"30745":0,"30746":112,"30747":2605,"30748":2692,"30749":0,"30750":0,"30751":-1,"30752":0,"30753":0,"30754":0,"30755":41,"30756":-1,"30757":-1,"30758":2869,"30759":3449,"30760":2526,"30761":-1,"30762":-1,"30763":449,"30764":0,"30765":-1,"30766":3190,"30767":262,"30768":2567,"30769":2869,"30770":3671,"30771":0,"30772":0,"30773":0,"30774":0,"30775":-1,"30776":0,"30777":0,"30778":-1,"30779":0,"30780":0,"30781":-1,"30782":-1,"30783":0,"30784":0,"30785":0,"30786":0,"30787":0,"30788":2167,"30789":474,"30790":-1,"30791":13,"30792":-1,"30793":-1,"30794":-1,"30795":0,"30796":0,"30797":2074,"30798":0,"30799":-1,"30800":1986,"30801":-1,"30802":3985,"30803":0,"30804":-1,"30805":4035,"30806":0,"30807":-1,"30808":3172,"30809":0,"30810":3498,"30811":-1,"30812":-1,"30813":-1,"30814":0,"30815":1985,"30816":0,"30817":2386,"30818":0,"30819":-1,"30820":0,"30821":0,"30822":46,"30823":2656,"30824":0,"30825":0,"30826":351,"30827":0,"30828":4053,"30829":-1,"30830":275,"30831":0,"30832":0,"30833":73,"30834":0,"30835":0,"30836":506,"30837":-1,"30838":4038,"30839":3192,"30840":-1,"30841":-1,"30842":-1,"30843":0,"30844":-1,"30845":3896,"30846":-1,"30847":3499,"30848":3722,"30849":0,"30850":0,"30851":0,"30852":0,"30853":3863,"30854":0,"30855":2430,"30856":2209,"30857":-1,"30858":0,"30859":-1,"30860":365,"30861":0,"30862":0,"30863":1784,"30864":-1,"30865":3090,"30866":3747,"30867":0,"30868":-1,"30869":0,"30870":-1,"30871":-1,"30872":0,"30873":0,"30874":1809,"30875":-1,"30876":3646,"30877":-1,"30878":0,"30879":-1,"30880":0,"30881":-1,"30882":-1,"30883":0,"30884":2203,"30885":0,"30886":0,"30887":0,"30888":0,"30889":-1,"30890":0,"30891":-1,"30892":0,"30893":-1,"30894":-1,"30895":0,"30896":0,"30897":-1,"30898":3427,"30899":310,"30900":-1,"30901":120,"30902":-1,"30903":-1,"30904":2727,"30905":0,"30906":3091,"30907":-1,"30908":-1,"30909":0,"30910":-1,"30911":-1,"30912":3245,"30913":-1,"30914":-1,"30915":0,"30916":-1,"30917":2350,"30918":0,"30919":0,"30920":-1,"30921":0,"30922":2428,"30923":-1,"30924":-1,"30925":0,"30926":-1,"30927":2018,"30928":2709,"30929":0,"30930":-1,"30931":0,"30932":-1,"30933":0,"30934":0,"30935":3467,"30936":0,"30937":0,"30938":44,"30939":0,"30940":-1,"30941":0,"30942":0,"30943":0,"30944":-1,"30945":3618,"30946":-1,"30947":-1,"30948":-1,"30949":-1,"30950":3303,"30951":0,"30952":1942,"30953":0,"30954":-1,"30955":-1,"30956":3640,"30957":-1,"30958":3740,"30959":-1,"30960":0,"30961":0,"30962":-1,"30963":-1,"30964":0,"30965":2826,"30966":2646,"30967":0,"30968":0,"30969":0,"30970":-1,"30971":-1,"30972":0,"30973":0,"30974":0,"30975":3954,"30976":-1,"30977":0,"30978":-1,"30979":-1,"30980":2619,"30981":16,"30982":0,"30983":3841,"30984":-1,"30985":3397,"30986":0,"30987":46,"30988":2568,"30989":-1,"30990":3407,"30991":-1,"30992":490,"30993":-1,"30994":0,"30995":-1,"30996":0,"30997":0,"30998":3444,"30999":0,"31000":0,"31001":-1,"31002":3297,"31003":0,"31004":-1,"31005":0,"31006":0,"31007":-1,"31008":0,"31009":0,"31010":65,"31011":2742,"31012":3199,"31013":0,"31014":3204,"31015":0,"31016":0,"31017":-1,"31018":-1,"31019":3298,"31020":0,"31021":149,"31022":2446,"31023":2555,"31024":-1,"31025":-1,"31026":0,"31027":-1,"31028":0,"31029":0,"31030":3493,"31031":0,"31032":-1,"31033":0,"31034":0,"31035":0,"31036":0,"31037":0,"31038":0,"31039":-1,"31040":0,"31041":0,"31042":-1,"31043":0,"31044":0,"31045":0,"31046":0,"31047":0,"31048":-1,"31049":0,"31050":0,"31051":-1,"31052":0,"31053":0,"31054":0,"31055":0,"31056":0,"31057":6,"31058":2295,"31059":-1,"31060":-1,"31061":0,"31062":0,"31063":-1,"31064":-1,"31065":3147,"31066":-1,"31067":0,"31068":0,"31069":0,"31070":0,"31071":0,"31072":0,"31073":0,"31074":-1,"31075":3777,"31076":-1,"31077":-1,"31078":3585,"31079":0,"31080":484,"31081":3222,"31082":0,"31083":0,"31084":0,"31085":3820,"31086":2029,"31087":0,"31088":0,"31089":0,"31090":-1,"31091":224,"31092":0,"31093":-1,"31094":3224,"31095":4041,"31096":2567,"31097":3171,"31098":3024,"31099":0,"31100":3578,"31101":-1,"31102":1785,"31103":0,"31104":0,"31105":-1,"31106":2285,"31107":3756,"31108":226,"31109":1784,"31110":3753,"31111":2144,"31112":-1,"31113":-1,"31114":2664,"31115":3563,"31116":0,"31117":0,"31118":0,"31119":0,"31120":-1,"31121":0,"31122":3983,"31123":0,"31124":0,"31125":-1,"31126":3684,"31127":0,"31128":-1,"31129":-1,"31130":3199,"31131":0,"31132":1950,"31133":0,"31134":3692,"31135":0,"31136":0,"31137":-1,"31138":0,"31139":0,"31140":-1,"31141":2468,"31142":3448,"31143":0,"31144":3460,"31145":0,"31146":-1,"31147":0,"31148":0,"31149":0,"31150":2484,"31151":2715,"31152":-1,"31153":-1,"31154":0,"31155":-1,"31156":3905,"31157":0,"31158":0,"31159":-1,"31160":0,"31161":-1,"31162":0,"31163":1850,"31164":-1,"31165":3245,"31166":0,"31167":0,"31168":0,"31169":3945,"31170":0,"31171":2003,"31172":0,"31173":339,"31174":0,"31175":0,"31176":0,"31177":0,"31178":0,"31179":-1,"31180":-1,"31181":0,"31182":0,"31183":0,"31184":-1,"31185":0,"31186":0,"31187":0,"31188":0,"31189":407,"31190":-1,"31191":0,"31192":-1,"31193":0,"31194":-1,"31195":0,"31196":0,"31197":2094,"31198":0,"31199":-1,"31200":-1,"31201":-1,"31202":0,"31203":0,"31204":0,"31205":-1,"31206":-1,"31207":0,"31208":-1,"31209":0,"31210":0,"31211":-1,"31212":0,"31213":3613,"31214":-1,"31215":3282,"31216":-1,"31217":-1,"31218":1807,"31219":0,"31220":2814,"31221":-1,"31222":-1,"31223":0,"31224":0,"31225":1782,"31226":-1,"31227":0,"31228":0,"31229":0,"31230":0,"31231":2649,"31232":0,"31233":0,"31234":0,"31235":-1,"31236":2573,"31237":-1,"31238":-1,"31239":473,"31240":3519,"31241":-1,"31242":3098,"31243":2967,"31244":2177,"31245":0,"31246":0,"31247":0,"31248":-1,"31249":216,"31250":-1,"31251":0,"31252":2920,"31253":0,"31254":-1,"31255":0,"31256":-1,"31257":3171,"31258":-1,"31259":3605,"31260":3004,"31261":-1,"31262":3398,"31263":0,"31264":-1,"31265":0,"31266":-1,"31267":0,"31268":3932,"31269":0,"31270":-1,"31271":0,"31272":-1,"31273":41,"31274":3128,"31275":-1,"31276":2081,"31277":-1,"31278":0,"31279":-1,"31280":3768,"31281":0,"31282":-1,"31283":1847,"31284":-1,"31285":2510,"31286":-1,"31287":3702,"31288":0,"31289":172,"31290":-1,"31291":-1,"31292":0,"31293":0,"31294":0,"31295":0,"31296":0,"31297":8,"31298":-1,"31299":3842,"31300":2431,"31301":0,"31302":0,"31303":0,"31304":0,"31305":0,"31306":-1,"31307":-1,"31308":-1,"31309":3238,"31310":0,"31311":0,"31312":0,"31313":2224,"31314":3270,"31315":2055,"31316":129,"31317":0,"31318":2150,"31319":1978,"31320":-1,"31321":-1,"31322":2431,"31323":-1,"31324":-1,"31325":0,"31326":0,"31327":0,"31328":-1,"31329":0,"31330":-1,"31331":-1,"31332":3890,"31333":0,"31334":0,"31335":0,"31336":-1,"31337":0,"31338":502,"31339":0,"31340":0,"31341":0,"31342":-1,"31343":0,"31344":0,"31345":3829,"31346":0,"31347":0,"31348":0,"31349":2384,"31350":0,"31351":0,"31352":177,"31353":0,"31354":0,"31355":3782,"31356":-1,"31357":-1,"31358":-1,"31359":27,"31360":0,"31361":-1,"31362":0,"31363":0,"31364":0,"31365":0,"31366":0,"31367":0,"31368":0,"31369":-1,"31370":0,"31371":0,"31372":-1,"31373":35,"31374":0,"31375":2240,"31376":3189,"31377":-1,"31378":3645,"31379":1869,"31380":0,"31381":2171,"31382":0,"31383":-1,"31384":0,"31385":2253,"31386":3647,"31387":-1,"31388":3596,"31389":0,"31390":0,"31391":0,"31392":-1,"31393":-1,"31394":0,"31395":-1,"31396":0,"31397":0,"31398":0,"31399":-1,"31400":-1,"31401":2324,"31402":0,"31403":0,"31404":0,"31405":3525,"31406":0,"31407":0,"31408":0,"31409":2443,"31410":0,"31411":0,"31412":0,"31413":2743,"31414":2927,"31415":-1,"31416":0,"31417":0,"31418":-1,"31419":2371,"31420":-1,"31421":0,"31422":0,"31423":0,"31424":0,"31425":-1,"31426":-1,"31427":2435,"31428":2724,"31429":-1,"31430":0,"31431":3271,"31432":0,"31433":-1,"31434":3317,"31435":0,"31436":0,"31437":0,"31438":0,"31439":2968,"31440":3888,"31441":-1,"31442":1925,"31443":3771,"31444":2488,"31445":478,"31446":0,"31447":0,"31448":0,"31449":0,"31450":0,"31451":-1,"31452":0,"31453":2691,"31454":0,"31455":0,"31456":0,"31457":0,"31458":0,"31459":-1,"31460":3024,"31461":0,"31462":2206,"31463":2332,"31464":-1,"31465":0,"31466":0,"31467":0,"31468":-1,"31469":0,"31470":0,"31471":0,"31472":2898,"31473":0,"31474":3994,"31475":297,"31476":0,"31477":2233,"31478":-1,"31479":-1,"31480":0,"31481":2704,"31482":0,"31483":2681,"31484":0,"31485":-1,"31486":0,"31487":0,"31488":-1,"31489":2883,"31490":-1,"31491":-1,"31492":0,"31493":3521,"31494":0,"31495":65,"31496":-1,"31497":2780,"31498":2729,"31499":0,"31500":0,"31501":2768,"31502":-1,"31503":-1,"31504":0,"31505":0,"31506":3444,"31507":3885,"31508":3482,"31509":-1,"31510":-1,"31511":-1,"31512":0,"31513":2546,"31514":0,"31515":2835,"31516":0,"31517":-1,"31518":-1,"31519":2832,"31520":3146,"31521":0,"31522":2179,"31523":2639,"31524":0,"31525":-1,"31526":3206,"31527":-1,"31528":2285,"31529":-1,"31530":3278,"31531":2107,"31532":0,"31533":0,"31534":3878,"31535":4053,"31536":2165,"31537":-1,"31538":0,"31539":173,"31540":0,"31541":4025,"31542":0,"31543":0,"31544":-1,"31545":0,"31546":0,"31547":-1,"31548":-1,"31549":0,"31550":0,"31551":-1,"31552":-1,"31553":0,"31554":0,"31555":0,"31556":0,"31557":-1,"31558":3597,"31559":-1,"31560":212,"31561":-1,"31562":2475,"31563":2119,"31564":3175,"31565":0,"31566":0,"31567":-1,"31568":-1,"31569":-1,"31570":0,"31571":0,"31572":0,"31573":3896,"31574":0,"31575":-1,"31576":0,"31577":0,"31578":3291,"31579":-1,"31580":-1,"31581":0,"31582":0,"31583":2279,"31584":2236,"31585":144,"31586":0,"31587":1907,"31588":2185,"31589":2137,"31590":0,"31591":-1,"31592":-1,"31593":1961,"31594":-1,"31595":2766,"31596":-1,"31597":-1,"31598":3494,"31599":0,"31600":2579,"31601":-1,"31602":4061,"31603":0,"31604":-1,"31605":-1,"31606":-1,"31607":0,"31608":0,"31609":-1,"31610":0,"31611":0,"31612":0,"31613":0,"31614":0,"31615":2570,"31616":-1,"31617":0,"31618":0,"31619":2346,"31620":-1,"31621":3586,"31622":3405,"31623":0,"31624":3107,"31625":0,"31626":0,"31627":-1,"31628":3765,"31629":-1,"31630":-1,"31631":0,"31632":2542,"31633":1787,"31634":0,"31635":0,"31636":-1,"31637":-1,"31638":-1,"31639":0,"31640":2196,"31641":263,"31642":0,"31643":-1,"31644":-1,"31645":2723,"31646":-1,"31647":-1,"31648":-1,"31649":0,"31650":-1,"31651":0,"31652":-1,"31653":0,"31654":2940,"31655":-1,"31656":0,"31657":0,"31658":0,"31659":2354,"31660":0,"31661":3554,"31662":0,"31663":-1,"31664":0,"31665":3737,"31666":0,"31667":0,"31668":0,"31669":3624,"31670":-1,"31671":0,"31672":1863,"31673":3299,"31674":0,"31675":-1,"31676":0,"31677":-1,"31678":0,"31679":0,"31680":2017,"31681":3054,"31682":0,"31683":3685,"31684":-1,"31685":2114,"31686":2083,"31687":0,"31688":0,"31689":0,"31690":3713,"31691":0,"31692":-1,"31693":0,"31694":-1,"31695":3649,"31696":-1,"31697":0,"31698":452,"31699":-1,"31700":-1,"31701":0,"31702":2377,"31703":0,"31704":-1,"31705":-1,"31706":3512,"31707":0,"31708":3418,"31709":2193,"31710":-1,"31711":-1,"31712":1939,"31713":0,"31714":0,"31715":3098,"31716":-1,"31717":0,"31718":0,"31719":3184,"31720":2317,"31721":0,"31722":0,"31723":-1,"31724":144,"31725":0,"31726":-1,"31727":0,"31728":-1,"31729":0,"31730":2918,"31731":254,"31732":-1,"31733":0,"31734":0,"31735":-1,"31736":3272,"31737":-1,"31738":2491,"31739":0,"31740":2959,"31741":2838,"31742":107,"31743":0,"31744":-1,"31745":145,"31746":-1,"31747":0,"31748":0,"31749":3961,"31750":0,"31751":0,"31752":0,"31753":2137,"31754":-1,"31755":-1,"31756":0,"31757":-1,"31758":0,"31759":0,"31760":0,"31761":0,"31762":1796,"31763":0,"31764":0,"31765":0,"31766":0,"31767":3901,"31768":-1,"31769":0,"31770":0,"31771":3661,"31772":0,"31773":-1,"31774":-1,"31775":-1,"31776":0,"31777":0,"31778":154,"31779":0,"31780":0,"31781":3435,"31782":0,"31783":2465,"31784":-1,"31785":-1,"31786":2279,"31787":-1,"31788":0,"31789":-1,"31790":0,"31791":2029,"31792":0,"31793":0,"31794":0,"31795":3663,"31796":-1,"31797":0,"31798":2696,"31799":0,"31800":0,"31801":-1,"31802":-1,"31803":3783,"31804":0,"31805":1821,"31806":-1,"31807":3436,"31808":3841,"31809":0,"31810":0,"31811":0,"31812":0,"31813":0,"31814":-1,"31815":12,"31816":0,"31817":-1,"31818":1841,"31819":-1,"31820":-1,"31821":-1,"31822":0,"31823":0,"31824":0,"31825":-1,"31826":0,"31827":0,"31828":0,"31829":0,"31830":0,"31831":-1,"31832":2636,"31833":-1,"31834":2463,"31835":0,"31836":0,"31837":-1,"31838":0,"31839":0,"31840":0,"31841":0,"31842":0,"31843":0,"31844":-1,"31845":0,"31846":2296,"31847":0,"31848":0,"31849":-1,"31850":3066,"31851":0,"31852":-1,"31853":3592,"31854":0,"31855":429,"31856":3152,"31857":2324,"31858":425,"31859":-1,"31860":2305,"31861":0,"31862":-1,"31863":-1,"31864":0,"31865":0,"31866":0,"31867":2086,"31868":-1,"31869":0,"31870":1895,"31871":-1,"31872":0,"31873":360,"31874":0,"31875":0,"31876":0,"31877":-1,"31878":37,"31879":1943,"31880":489,"31881":0,"31882":-1,"31883":0,"31884":-1,"31885":0,"31886":0,"31887":-1,"31888":0,"31889":-1,"31890":3660,"31891":3042,"31892":-1,"31893":-1,"31894":-1,"31895":0,"31896":463,"31897":0,"31898":3058,"31899":0,"31900":0,"31901":0,"31902":0,"31903":2483,"31904":0,"31905":-1,"31906":3087,"31907":-1,"31908":0,"31909":100,"31910":0,"31911":0,"31912":-1,"31913":3278,"31914":3832,"31915":2131,"31916":-1,"31917":0,"31918":3193,"31919":0,"31920":-1,"31921":-1,"31922":1923,"31923":2509,"31924":1933,"31925":2577,"31926":-1,"31927":-1,"31928":0,"31929":159,"31930":-1,"31931":0,"31932":0,"31933":1805,"31934":-1,"31935":0,"31936":0,"31937":0,"31938":416,"31939":0,"31940":0,"31941":-1,"31942":0,"31943":2740,"31944":0,"31945":0,"31946":0,"31947":0,"31948":-1,"31949":0,"31950":-1,"31951":-1,"31952":3689,"31953":2402,"31954":2579,"31955":0,"31956":0,"31957":2914,"31958":0,"31959":-1,"31960":-1,"31961":3906,"31962":368,"31963":0,"31964":0,"31965":-1,"31966":2687,"31967":0,"31968":2174,"31969":0,"31970":2394,"31971":0,"31972":257,"31973":-1,"31974":2999,"31975":-1,"31976":133,"31977":-1,"31978":-1,"31979":0,"31980":209,"31981":-1,"31982":30,"31983":4023,"31984":-1,"31985":-1,"31986":2914,"31987":-1,"31988":-1,"31989":-1,"31990":0,"31991":-1,"31992":0,"31993":-1,"31994":-1,"31995":-1,"31996":-1,"31997":0,"31998":-1,"31999":0,"32000":-1,"32001":2496,"32002":0,"32003":-1,"32004":3131,"32005":0,"32006":-1,"32007":2101,"32008":-1,"32009":0,"32010":271,"32011":0,"32012":0,"32013":-1,"32014":3739,"32015":2922,"32016":0,"32017":2833,"32018":0,"32019":-1,"32020":0,"32021":2595,"32022":0,"32023":282,"32024":-1,"32025":0,"32026":-1,"32027":74,"32028":-1,"32029":3813,"32030":-1,"32031":0,"32032":0,"32033":-1,"32034":0,"32035":0,"32036":0,"32037":0,"32038":1903,"32039":0,"32040":-1,"32041":-1,"32042":3726,"32043":-1,"32044":0,"32045":-1,"32046":0,"32047":1897,"32048":0,"32049":0,"32050":0,"32051":0,"32052":3269,"32053":0,"32054":0,"32055":0,"32056":-1,"32057":0,"32058":0,"32059":-1,"32060":1848,"32061":3504,"32062":2150,"32063":-1,"32064":-1,"32065":0,"32066":-1,"32067":0,"32068":0,"32069":0,"32070":0,"32071":0,"32072":0,"32073":-1,"32074":1837,"32075":4020,"32076":3731,"32077":-1,"32078":0,"32079":-1,"32080":-1,"32081":-1,"32082":-1,"32083":0,"32084":3947,"32085":2013,"32086":-1,"32087":0,"32088":-1,"32089":2600,"32090":0,"32091":-1,"32092":0,"32093":0,"32094":-1,"32095":3053,"32096":0,"32097":0,"32098":-1,"32099":2598,"32100":3091,"32101":0,"32102":3982,"32103":2129,"32104":-1,"32105":2403,"32106":2376,"32107":0,"32108":0,"32109":-1,"32110":0,"32111":3867,"32112":0,"32113":0,"32114":0,"32115":-1,"32116":337,"32117":0,"32118":-1,"32119":-1,"32120":0,"32121":0,"32122":1920,"32123":-1,"32124":2898,"32125":0,"32126":-1,"32127":-1,"32128":3054,"32129":0,"32130":0,"32131":0,"32132":-1,"32133":2908,"32134":-1,"32135":-1,"32136":3922,"32137":0,"32138":0,"32139":0,"32140":-1,"32141":0,"32142":0,"32143":0,"32144":0,"32145":0,"32146":2638,"32147":0,"32148":-1,"32149":0,"32150":0,"32151":0,"32152":-1,"32153":0,"32154":2323,"32155":0,"32156":0,"32157":0,"32158":0,"32159":2884,"32160":0,"32161":-1,"32162":3210,"32163":3104,"32164":0,"32165":0,"32166":3017,"32167":3066,"32168":1846,"32169":0,"32170":0,"32171":0,"32172":0,"32173":0,"32174":0,"32175":-1,"32176":-1,"32177":0,"32178":3096,"32179":3685,"32180":3829,"32181":0,"32182":-1,"32183":0,"32184":6,"32185":-1,"32186":-1,"32187":0,"32188":2794,"32189":0,"32190":0,"32191":-1,"32192":1916,"32193":310,"32194":1879,"32195":3625,"32196":2970,"32197":0,"32198":0,"32199":-1,"32200":-1,"32201":-1,"32202":-1,"32203":0,"32204":0,"32205":-1,"32206":-1,"32207":-1,"32208":2303,"32209":0,"32210":-1,"32211":0,"32212":0,"32213":19,"32214":2664,"32215":0,"32216":0,"32217":-1,"32218":-1,"32219":2854,"32220":-1,"32221":0,"32222":0,"32223":0,"32224":0,"32225":3150,"32226":2560,"32227":3868,"32228":0,"32229":0,"32230":2001,"32231":0,"32232":3824,"32233":0,"32234":3891,"32235":-1,"32236":2839,"32237":2751,"32238":0,"32239":-1,"32240":0,"32241":0,"32242":-1,"32243":-1,"32244":-1,"32245":-1,"32246":0,"32247":-1,"32248":0,"32249":0,"32250":-1,"32251":-1,"32252":0,"32253":3764,"32254":0,"32255":0,"32256":2680,"32257":0,"32258":-1,"32259":0,"32260":4043,"32261":2970,"32262":0,"32263":0,"32264":3365,"32265":0,"32266":0,"32267":0,"32268":0,"32269":-1,"32270":0,"32271":0,"32272":0,"32273":3477,"32274":0,"32275":0,"32276":1829,"32277":0,"32278":3182,"32279":0,"32280":2612,"32281":0,"32282":0,"32283":0,"32284":-1,"32285":-1,"32286":0,"32287":0,"32288":-1,"32289":2822,"32290":-1,"32291":0,"32292":2648,"32293":-1,"32294":2353,"32295":-1,"32296":-1,"32297":2800,"32298":-1,"32299":3266,"32300":-1,"32301":-1,"32302":3789,"32303":3821,"32304":0,"32305":-1,"32306":0,"32307":265,"32308":-1,"32309":1792,"32310":0,"32311":0,"32312":0,"32313":3780,"32314":0,"32315":2485,"32316":0,"32317":-1,"32318":0,"32319":3192,"32320":0,"32321":0,"32322":0,"32323":-1,"32324":4033,"32325":-1,"32326":0,"32327":-1,"32328":0,"32329":1803,"32330":0,"32331":2607,"32332":250,"32333":-1,"32334":0,"32335":-1,"32336":2439,"32337":480,"32338":-1,"32339":0,"32340":0,"32341":0,"32342":0,"32343":0,"32344":-1,"32345":0,"32346":-1,"32347":-1,"32348":2404,"32349":0,"32350":0,"32351":3493,"32352":-1,"32353":-1,"32354":-1,"32355":3516,"32356":0,"32357":0,"32358":-1,"32359":0,"32360":-1,"32361":3701,"32362":3324,"32363":0,"32364":77,"32365":0,"32366":2642,"32367":1943,"32368":-1,"32369":3012,"32370":0,"32371":0,"32372":-1,"32373":2506,"32374":-1,"32375":0,"32376":0,"32377":0,"32378":-1,"32379":-1,"32380":0,"32381":4028,"32382":0,"32383":0,"32384":-1,"32385":0,"32386":3405,"32387":-1,"32388":-1,"32389":0,"32390":0,"32391":0,"32392":-1,"32393":0,"32394":0,"32395":216,"32396":-1,"32397":0,"32398":-1,"32399":0,"32400":0,"32401":0,"32402":0,"32403":1847,"32404":-1,"32405":0,"32406":1984,"32407":0,"32408":2362,"32409":3791,"32410":-1,"32411":-1,"32412":-1,"32413":1923,"32414":-1,"32415":0,"32416":0,"32417":0,"32418":0,"32419":0,"32420":0,"32421":0,"32422":3652,"32423":1955,"32424":0,"32425":0,"32426":0,"32427":4007,"32428":-1,"32429":450,"32430":-1,"32431":-1,"32432":3330,"32433":-1,"32434":-1,"32435":0,"32436":0,"32437":-1,"32438":2177,"32439":0,"32440":-1,"32441":0,"32442":-1,"32443":-1,"32444":-1,"32445":0,"32446":0,"32447":110,"32448":0,"32449":3147,"32450":2256,"32451":0,"32452":0,"32453":0,"32454":278,"32455":-1,"32456":0,"32457":0,"32458":0,"32459":-1,"32460":3495,"32461":2533,"32462":0,"32463":255,"32464":0,"32465":-1,"32466":0,"32467":0,"32468":0,"32469":-1,"32470":0,"32471":-1,"32472":0,"32473":2914,"32474":2821,"32475":2964,"32476":3513,"32477":-1,"32478":3893,"32479":-1,"32480":0,"32481":-1,"32482":2141,"32483":0,"32484":-1,"32485":0,"32486":-1,"32487":0,"32488":-1,"32489":-1,"32490":0,"32491":0,"32492":0,"32493":0,"32494":2256,"32495":0,"32496":-1,"32497":-1,"32498":3868,"32499":0,"32500":343,"32501":-1,"32502":-1,"32503":71,"32504":-1,"32505":0,"32506":-1,"32507":0,"32508":0,"32509":0,"32510":3310,"32511":-1,"32512":-1,"32513":2834,"32514":0,"32515":-1,"32516":-1,"32517":0,"32518":-1,"32519":0,"32520":0,"32521":0,"32522":0,"32523":0,"32524":3524,"32525":-1,"32526":0,"32527":0,"32528":0,"32529":-1,"32530":2133,"32531":360,"32532":3070,"32533":0,"32534":0,"32535":0,"32536":3755,"32537":3932,"32538":2160,"32539":3170,"32540":2606,"32541":0,"32542":-1,"32543":-1,"32544":1964,"32545":-1,"32546":0,"32547":0,"32548":3944,"32549":0,"32550":0,"32551":3176,"32552":0,"32553":0,"32554":-1,"32555":-1,"32556":-1,"32557":3299,"32558":2722,"32559":-1,"32560":0,"32561":0,"32562":1877,"32563":1817,"32564":0,"32565":3209,"32566":0,"32567":3601,"32568":0,"32569":0,"32570":3411,"32571":-1,"32572":3931,"32573":0,"32574":0,"32575":337,"32576":3487,"32577":-1,"32578":-1,"32579":3134,"32580":-1,"32581":0,"32582":-1,"32583":0,"32584":0,"32585":0,"32586":0,"32587":0,"32588":0,"32589":-1,"32590":0,"32591":0,"32592":0,"32593":0,"32594":3149,"32595":-1,"32596":0,"32597":2508,"32598":3581,"32599":-1,"32600":340,"32601":-1,"32602":2696,"32603":-1,"32604":-1,"32605":-1,"32606":0,"32607":2407,"32608":1820,"32609":0,"32610":0,"32611":0,"32612":0,"32613":-1,"32614":3363,"32615":0,"32616":-1,"32617":-1,"32618":2860,"32619":-1,"32620":0,"32621":0,"32622":0,"32623":0,"32624":3587,"32625":2041,"32626":0,"32627":0,"32628":3841,"32629":0,"32630":0,"32631":0,"32632":0,"32633":3036,"32634":-1,"32635":3146,"32636":-1,"32637":0,"32638":0,"32639":3206,"32640":3937,"32641":3641,"32642":0,"32643":-1,"32644":-1,"32645":0,"32646":3625,"32647":0,"32648":1863,"32649":0,"32650":0,"32651":2510,"32652":0,"32653":0,"32654":-1,"32655":3753,"32656":-1,"32657":2609,"32658":3206,"32659":0,"32660":0,"32661":0,"32662":-1,"32663":-1,"32664":0,"32665":0,"32666":0,"32667":0,"32668":-1,"32669":0,"32670":-1,"32671":0,"32672":-1,"32673":0,"32674":-1,"32675":-1,"32676":-1,"32677":2317,"32678":517,"32679":0,"32680":-1,"32681":-1,"32682":0,"32683":0,"32684":-1,"32685":0,"32686":-1,"32687":0,"32688":0,"32689":-1,"32690":0,"32691":0,"32692":0,"32693":-1,"32694":0,"32695":-1,"32696":3123,"32697":0,"32698":0,"32699":3234,"32700":0,"32701":-1,"32702":-1,"32703":0,"32704":0,"32705":2852,"32706":0,"32707":3781,"32708":0,"32709":0,"32710":0,"32711":499,"32712":2332,"32713":3408,"32714":0,"32715":0,"32716":0,"32717":0,"32718":-1,"32719":-1,"32720":-1,"32721":0,"32722":0,"32723":-1,"32724":445,"32725":3405,"32726":0,"32727":0,"32728":0,"32729":0,"32730":-1,"32731":466,"32732":-1,"32733":0,"32734":2743,"32735":0,"32736":0,"32737":0,"32738":-1,"32739":2376,"32740":0,"32741":0,"32742":0,"32743":-1,"32744":-1,"32745":0,"32746":0,"32747":0,"32748":-1,"32749":-1,"32750":0,"32751":0,"32752":-1,"32753":3399,"32754":0,"32755":0,"32756":0,"32757":0,"32758":3571,"32759":-1,"32760":1847,"32761":159,"32762":2465,"32763":-1,"32764":0,"32765":92,"32766":0,"32767":0,"32768":0,"32769":3838,"32770":0,"32771":0,"32772":0,"32773":0,"32774":0,"32775":0,"32776":-1,"32777":0,"32778":0,"32779":-1,"32780":0,"32781":3145,"32782":3532,"32783":0,"32784":-1,"32785":2320,"32786":-1,"32787":2540,"32788":504,"32789":1995,"32790":-1,"32791":0,"32792":0,"32793":0,"32794":0,"32795":3228,"32796":0,"32797":3293,"32798":0,"32799":2808,"32800":0,"32801":0,"32802":0,"32803":0,"32804":3311,"32805":0,"32806":2312,"32807":2362,"32808":2259,"32809":-1,"32810":-1,"32811":-1,"32812":-1,"32813":-1,"32814":0,"32815":3067,"32816":1789,"32817":1826,"32818":0,"32819":3483,"32820":0,"32821":0,"32822":0,"32823":0,"32824":-1,"32825":0,"32826":1825,"32827":0,"32828":0,"32829":3161,"32830":2295,"32831":0,"32832":0,"32833":-1,"32834":3836,"32835":0,"32836":0,"32837":2896,"32838":0,"32839":3283,"32840":4025,"32841":499,"32842":0,"32843":-1,"32844":-1,"32845":2786,"32846":3283,"32847":0,"32848":0,"32849":-1,"32850":0,"32851":0,"32852":-1,"32853":2056,"32854":-1,"32855":0,"32856":0,"32857":0,"32858":-1,"32859":0,"32860":-1,"32861":0,"32862":3203,"32863":2576,"32864":-1,"32865":0,"32866":0,"32867":0,"32868":-1,"32869":0,"32870":0,"32871":0,"32872":3177,"32873":2156,"32874":1810,"32875":-1,"32876":-1,"32877":0,"32878":-1,"32879":0,"32880":-1,"32881":3289,"32882":0,"32883":3380,"32884":0,"32885":0,"32886":0,"32887":1854,"32888":-1,"32889":1813,"32890":0,"32891":0,"32892":-1,"32893":0,"32894":-1,"32895":-1,"32896":3189,"32897":0,"32898":0,"32899":3714,"32900":0,"32901":-1,"32902":0,"32903":215,"32904":0,"32905":0,"32906":0,"32907":0,"32908":-1,"32909":-1,"32910":0,"32911":-1,"32912":0,"32913":0,"32914":-1,"32915":3160,"32916":2398,"32917":0,"32918":-1,"32919":1911,"32920":0,"32921":-1,"32922":0,"32923":-1,"32924":-1,"32925":2523,"32926":0,"32927":0,"32928":296,"32929":0,"32930":-1,"32931":0,"32932":0,"32933":3327,"32934":494,"32935":3967,"32936":1795,"32937":-1,"32938":-1,"32939":2605,"32940":0,"32941":-1,"32942":0,"32943":-1,"32944":0,"32945":0,"32946":0,"32947":0,"32948":0,"32949":-1,"32950":2282,"32951":3458,"32952":0,"32953":0,"32954":0,"32955":-1,"32956":3523,"32957":-1,"32958":0,"32959":0,"32960":364,"32961":232,"32962":0,"32963":2858,"32964":2837,"32965":0,"32966":0,"32967":-1,"32968":0,"32969":10,"32970":-1,"32971":-1,"32972":-1,"32973":1812,"32974":-1,"32975":2771,"32976":0,"32977":0,"32978":0,"32979":2917,"32980":-1,"32981":-1,"32982":0,"32983":3010,"32984":3408,"32985":0,"32986":-1,"32987":-1,"32988":0,"32989":0,"32990":0,"32991":0,"32992":3436,"32993":3972,"32994":0,"32995":280,"32996":2314,"32997":0,"32998":0,"32999":3430,"33000":232,"33001":0,"33002":57,"33003":0,"33004":0,"33005":388,"33006":0,"33007":0,"33008":-1,"33009":2114,"33010":0,"33011":-1,"33012":0,"33013":0,"33014":3272,"33015":0,"33016":0,"33017":-1,"33018":0,"33019":3325,"33020":0,"33021":0,"33022":-1,"33023":105,"33024":0,"33025":2575,"33026":-1,"33027":0,"33028":-1,"33029":-1,"33030":3174,"33031":2964,"33032":0,"33033":0,"33034":3380,"33035":265,"33036":0,"33037":0,"33038":0,"33039":-1,"33040":0,"33041":0,"33042":0,"33043":2168,"33044":0,"33045":-1,"33046":7,"33047":0,"33048":363,"33049":-1,"33050":3682,"33051":0,"33052":0,"33053":2917,"33054":0,"33055":2751,"33056":-1,"33057":1840,"33058":-1,"33059":-1,"33060":-1,"33061":0,"33062":0,"33063":0,"33064":0,"33065":-1,"33066":2339,"33067":-1,"33068":-1,"33069":464,"33070":2863,"33071":2140,"33072":0,"33073":0,"33074":0,"33075":-1,"33076":0,"33077":0,"33078":397,"33079":0,"33080":0,"33081":0,"33082":0,"33083":-1,"33084":-1,"33085":0,"33086":0,"33087":3817,"33088":1805,"33089":-1,"33090":0,"33091":0,"33092":-1,"33093":476,"33094":0,"33095":3314,"33096":0,"33097":0,"33098":-1,"33099":0,"33100":-1,"33101":0,"33102":-1,"33103":-1,"33104":-1,"33105":-1,"33106":-1,"33107":0,"33108":-1,"33109":-1,"33110":0,"33111":0,"33112":0,"33113":3105,"33114":-1,"33115":0,"33116":0,"33117":0,"33118":-1,"33119":3284,"33120":-1,"33121":-1,"33122":-1,"33123":0,"33124":51,"33125":0,"33126":0,"33127":-1,"33128":237,"33129":0,"33130":0,"33131":0,"33132":4018,"33133":-1,"33134":-1,"33135":-1,"33136":254,"33137":3600,"33138":0,"33139":0,"33140":0,"33141":-1,"33142":-1,"33143":3594,"33144":2358,"33145":0,"33146":0,"33147":-1,"33148":0,"33149":0,"33150":0,"33151":0,"33152":-1,"33153":0,"33154":0,"33155":-1,"33156":3205,"33157":0,"33158":3176,"33159":0,"33160":0,"33161":0,"33162":0,"33163":3061,"33164":3084,"33165":0,"33166":3611,"33167":3908,"33168":0,"33169":0,"33170":0,"33171":2233,"33172":2803,"33173":0,"33174":0,"33175":259,"33176":3662,"33177":3507,"33178":-1,"33179":0,"33180":-1,"33181":-1,"33182":2471,"33183":-1,"33184":-1,"33185":0,"33186":0,"33187":0,"33188":-1,"33189":0,"33190":-1,"33191":421,"33192":-1,"33193":1816,"33194":0,"33195":0,"33196":0,"33197":0,"33198":3512,"33199":-1,"33200":-1,"33201":-1,"33202":2833,"33203":201,"33204":456,"33205":0,"33206":-1,"33207":0,"33208":0,"33209":3539,"33210":3860,"33211":0,"33212":0,"33213":-1,"33214":0,"33215":3681,"33216":2618,"33217":2617,"33218":-1,"33219":0,"33220":-1,"33221":421,"33222":-1,"33223":0,"33224":0,"33225":-1,"33226":-1,"33227":0,"33228":0,"33229":401,"33230":3799,"33231":0,"33232":3860,"33233":-1,"33234":0,"33235":-1,"33236":0,"33237":0,"33238":-1,"33239":0,"33240":3789,"33241":3175,"33242":-1,"33243":0,"33244":-1,"33245":0,"33246":3483,"33247":0,"33248":2929,"33249":0,"33250":315,"33251":-1,"33252":0,"33253":0,"33254":-1,"33255":-1,"33256":0,"33257":0,"33258":-1,"33259":0,"33260":-1,"33261":3433,"33262":358,"33263":0,"33264":3043,"33265":3238,"33266":3976,"33267":0,"33268":0,"33269":-1,"33270":-1,"33271":-1,"33272":2186,"33273":3155,"33274":0,"33275":2703,"33276":3570,"33277":-1,"33278":0,"33279":73,"33280":-1,"33281":-1,"33282":0,"33283":0,"33284":1841,"33285":0,"33286":285,"33287":-1,"33288":2716,"33289":0,"33290":-1,"33291":-1,"33292":-1,"33293":0,"33294":0,"33295":0,"33296":-1,"33297":0,"33298":0,"33299":-1,"33300":1789,"33301":-1,"33302":0,"33303":0,"33304":0,"33305":0,"33306":0,"33307":-1,"33308":0,"33309":3885,"33310":269,"33311":3945,"33312":-1,"33313":3125,"33314":136,"33315":-1,"33316":0,"33317":-1,"33318":0,"33319":2936,"33320":0,"33321":3036,"33322":3533,"33323":-1,"33324":0,"33325":-1,"33326":418,"33327":-1,"33328":2592,"33329":2466,"33330":1856,"33331":0,"33332":0,"33333":0,"33334":0,"33335":2184,"33336":0,"33337":0,"33338":2512,"33339":505,"33340":-1,"33341":2179,"33342":442,"33343":0,"33344":-1,"33345":-1,"33346":0,"33347":0,"33348":-1,"33349":-1,"33350":0,"33351":2122,"33352":-1,"33353":-1,"33354":3105,"33355":0,"33356":-1,"33357":0,"33358":0,"33359":-1,"33360":3964,"33361":0,"33362":2106,"33363":-1,"33364":2468,"33365":0,"33366":0,"33367":-1,"33368":0,"33369":0,"33370":-1,"33371":-1,"33372":71,"33373":-1,"33374":2268,"33375":3709,"33376":0,"33377":0,"33378":0,"33379":0,"33380":3542,"33381":2887,"33382":3299,"33383":-1,"33384":-1,"33385":0,"33386":0,"33387":0,"33388":2656,"33389":0,"33390":-1,"33391":-1,"33392":-1,"33393":193,"33394":0,"33395":0,"33396":2476,"33397":0,"33398":0,"33399":3474,"33400":0,"33401":0,"33402":-1,"33403":313,"33404":0,"33405":-1,"33406":-1,"33407":0,"33408":0,"33409":3143,"33410":-1,"33411":0,"33412":0,"33413":-1,"33414":-1,"33415":315,"33416":3309,"33417":3012,"33418":154,"33419":3643,"33420":3696,"33421":-1,"33422":0,"33423":-1,"33424":-1,"33425":-1,"33426":-1,"33427":0,"33428":-1,"33429":0,"33430":0,"33431":0,"33432":-1,"33433":2725,"33434":-1,"33435":2945,"33436":-1,"33437":0,"33438":-1,"33439":0,"33440":-1,"33441":0,"33442":358,"33443":-1,"33444":0,"33445":-1,"33446":-1,"33447":-1,"33448":0,"33449":371,"33450":0,"33451":-1,"33452":0,"33453":-1,"33454":2105,"33455":3894,"33456":0,"33457":3430,"33458":0,"33459":-1,"33460":-1,"33461":-1,"33462":0,"33463":2069,"33464":-1,"33465":2104,"33466":2009,"33467":0,"33468":2643,"33469":-1,"33470":0,"33471":0,"33472":0,"33473":-1,"33474":0,"33475":2299,"33476":0,"33477":3814,"33478":0,"33479":0,"33480":0,"33481":0,"33482":0,"33483":2348,"33484":-1,"33485":0,"33486":2017,"33487":241,"33488":0,"33489":-1,"33490":0,"33491":60,"33492":2066,"33493":0,"33494":0,"33495":119,"33496":2736,"33497":0,"33498":-1,"33499":3485,"33500":1994,"33501":-1,"33502":0,"33503":0,"33504":-1,"33505":3174,"33506":2690,"33507":0,"33508":0,"33509":0,"33510":2255,"33511":-1,"33512":2449,"33513":236,"33514":-1,"33515":0,"33516":0,"33517":0,"33518":0,"33519":318,"33520":3081,"33521":0,"33522":3249,"33523":0,"33524":0,"33525":0,"33526":-1,"33527":0,"33528":-1,"33529":0,"33530":3583,"33531":0,"33532":0,"33533":-1,"33534":0,"33535":0,"33536":-1,"33537":-1,"33538":-1,"33539":0,"33540":-1,"33541":-1,"33542":2351,"33543":2751,"33544":0,"33545":-1,"33546":-1,"33547":0,"33548":0,"33549":1975,"33550":-1,"33551":0,"33552":3416,"33553":0,"33554":0,"33555":0,"33556":2918,"33557":-1,"33558":3461,"33559":0,"33560":2968,"33561":3356,"33562":0,"33563":0,"33564":-1,"33565":3639,"33566":3441,"33567":-1,"33568":-1,"33569":-1,"33570":2603,"33571":0,"33572":-1,"33573":0,"33574":3109,"33575":-1,"33576":0,"33577":0,"33578":3570,"33579":0,"33580":-1,"33581":-1,"33582":-1,"33583":0,"33584":0,"33585":0,"33586":0,"33587":3826,"33588":0,"33589":-1,"33590":2061,"33591":-1,"33592":3360,"33593":-1,"33594":0,"33595":0,"33596":3851,"33597":0,"33598":0,"33599":0,"33600":-1,"33601":0,"33602":0,"33603":-1,"33604":3249,"33605":0,"33606":2051,"33607":3323,"33608":0,"33609":-1,"33610":508,"33611":0,"33612":355,"33613":0,"33614":271,"33615":1894,"33616":173,"33617":-1,"33618":1970,"33619":3117,"33620":-1,"33621":-1,"33622":0,"33623":305,"33624":0,"33625":0,"33626":-1,"33627":3729,"33628":0,"33629":4030,"33630":2366,"33631":3792,"33632":0,"33633":-1,"33634":3329,"33635":2895,"33636":-1,"33637":0,"33638":0,"33639":2421,"33640":2481,"33641":0,"33642":3163,"33643":427,"33644":-1,"33645":-1,"33646":3280,"33647":0,"33648":0,"33649":0,"33650":0,"33651":0,"33652":-1,"33653":0,"33654":-1,"33655":0,"33656":1791,"33657":-1,"33658":-1,"33659":0,"33660":0,"33661":0,"33662":0,"33663":2034,"33664":-1,"33665":0,"33666":2718,"33667":-1,"33668":341,"33669":-1,"33670":-1,"33671":0,"33672":-1,"33673":397,"33674":0,"33675":3528,"33676":-1,"33677":3740,"33678":0,"33679":149,"33680":0,"33681":-1,"33682":1873,"33683":224,"33684":2750,"33685":188,"33686":3843,"33687":0,"33688":0,"33689":-1,"33690":0,"33691":-1,"33692":-1,"33693":-1,"33694":0,"33695":0,"33696":3041,"33697":0,"33698":0,"33699":-1,"33700":-1,"33701":0,"33702":-1,"33703":511,"33704":0,"33705":-1,"33706":0,"33707":3324,"33708":3638,"33709":0,"33710":398,"33711":0,"33712":2376,"33713":-1,"33714":0,"33715":0,"33716":279,"33717":-1,"33718":-1,"33719":-1,"33720":-1,"33721":0,"33722":-1,"33723":0,"33724":3257,"33725":2930,"33726":0,"33727":-1,"33728":0,"33729":3849,"33730":-1,"33731":0,"33732":2561,"33733":3773,"33734":0,"33735":-1,"33736":193,"33737":3030,"33738":2911,"33739":-1,"33740":255,"33741":0,"33742":0,"33743":2399,"33744":2966,"33745":1809,"33746":0,"33747":0,"33748":1866,"33749":-1,"33750":0,"33751":0,"33752":-1,"33753":0,"33754":117,"33755":-1,"33756":0,"33757":-1,"33758":3594,"33759":-1,"33760":-1,"33761":-1,"33762":2949,"33763":-1,"33764":0,"33765":0,"33766":0,"33767":0,"33768":0,"33769":0,"33770":-1,"33771":0,"33772":-1,"33773":-1,"33774":0,"33775":-1,"33776":2648,"33777":3160,"33778":0,"33779":-1,"33780":0,"33781":-1,"33782":-1,"33783":3229,"33784":0,"33785":195,"33786":-1,"33787":-1,"33788":-1,"33789":0,"33790":-1,"33791":9,"33792":-1,"33793":0,"33794":-1,"33795":0,"33796":0,"33797":-1,"33798":0,"33799":0,"33800":2596,"33801":0,"33802":0,"33803":0,"33804":3817,"33805":2732,"33806":-1,"33807":0,"33808":3733,"33809":0,"33810":0,"33811":-1,"33812":2692,"33813":0,"33814":0,"33815":0,"33816":3221,"33817":-1,"33818":0,"33819":0,"33820":-1,"33821":-1,"33822":2285,"33823":0,"33824":256,"33825":0,"33826":0,"33827":461,"33828":3859,"33829":0,"33830":0,"33831":353,"33832":0,"33833":0,"33834":0,"33835":-1,"33836":3544,"33837":0,"33838":0,"33839":-1,"33840":0,"33841":0,"33842":0,"33843":3662,"33844":-1,"33845":0,"33846":-1,"33847":409,"33848":-1,"33849":-1,"33850":0,"33851":-1,"33852":-1,"33853":0,"33854":-1,"33855":-1,"33856":0,"33857":0,"33858":-1,"33859":-1,"33860":0,"33861":0,"33862":-1,"33863":-1,"33864":2725,"33865":0,"33866":-1,"33867":-1,"33868":-1,"33869":2240,"33870":0,"33871":3715,"33872":0,"33873":2748,"33874":-1,"33875":0,"33876":-1,"33877":0,"33878":0,"33879":86,"33880":-1,"33881":-1,"33882":3637,"33883":0,"33884":-1,"33885":-1,"33886":0,"33887":0,"33888":0,"33889":0,"33890":0,"33891":0,"33892":0,"33893":3490,"33894":0,"33895":3619,"33896":0,"33897":0,"33898":-1,"33899":0,"33900":2985,"33901":-1,"33902":-1,"33903":0,"33904":-1,"33905":0,"33906":2020,"33907":0,"33908":0,"33909":0,"33910":4058,"33911":0,"33912":0,"33913":-1,"33914":0,"33915":0,"33916":0,"33917":0,"33918":3094,"33919":15,"33920":0,"33921":0,"33922":0,"33923":-1,"33924":0,"33925":-1,"33926":0,"33927":249,"33928":-1,"33929":0,"33930":0,"33931":0,"33932":0,"33933":0,"33934":-1,"33935":0,"33936":3798,"33937":0,"33938":0,"33939":0,"33940":-1,"33941":0,"33942":0,"33943":3650,"33944":-1,"33945":0,"33946":0,"33947":0,"33948":0,"33949":0,"33950":0,"33951":-1,"33952":2901,"33953":0,"33954":225,"33955":3627,"33956":0,"33957":0,"33958":-1,"33959":2798,"33960":0,"33961":0,"33962":3291,"33963":0,"33964":-1,"33965":-1,"33966":-1,"33967":0,"33968":3071,"33969":-1,"33970":-1,"33971":0,"33972":-1,"33973":3274,"33974":3754,"33975":0,"33976":-1,"33977":2390,"33978":3151,"33979":1894,"33980":0,"33981":2930,"33982":-1,"33983":-1,"33984":-1,"33985":0,"33986":0,"33987":0,"33988":0,"33989":-1,"33990":-1,"33991":-1,"33992":0,"33993":0,"33994":0,"33995":3274,"33996":-1,"33997":465,"33998":2720,"33999":0,"34000":1838,"34001":0,"34002":-1,"34003":0,"34004":-1,"34005":2750,"34006":-1,"34007":3514,"34008":3084,"34009":1954,"34010":-1,"34011":-1,"34012":1871,"34013":0,"34014":0,"34015":-1,"34016":2881,"34017":464,"34018":0,"34019":3944,"34020":0,"34021":-1,"34022":-1,"34023":-1,"34024":0,"34025":2988,"34026":0,"34027":0,"34028":2514,"34029":-1,"34030":0,"34031":-1,"34032":-1,"34033":0,"34034":0,"34035":0,"34036":-1,"34037":0,"34038":2634,"34039":0,"34040":0,"34041":2308,"34042":4017,"34043":0,"34044":-1,"34045":0,"34046":0,"34047":0,"34048":2676,"34049":-1,"34050":151,"34051":0,"34052":3174,"34053":2536,"34054":-1,"34055":0,"34056":0,"34057":0,"34058":2610,"34059":-1,"34060":2545,"34061":0,"34062":3875,"34063":0,"34064":0,"34065":0,"34066":0,"34067":-1,"34068":3452,"34069":0,"34070":-1,"34071":3264,"34072":2258,"34073":0,"34074":2201,"34075":0,"34076":0,"34077":3291,"34078":-1,"34079":2860,"34080":-1,"34081":0,"34082":0,"34083":-1,"34084":-1,"34085":0,"34086":2961,"34087":-1,"34088":-1,"34089":0,"34090":-1,"34091":0,"34092":0,"34093":-1,"34094":3093,"34095":0,"34096":0,"34097":0,"34098":0,"34099":-1,"34100":-1,"34101":0,"34102":0,"34103":-1,"34104":3013,"34105":2131,"34106":0,"34107":0,"34108":0,"34109":0,"34110":0,"34111":0,"34112":-1,"34113":1981,"34114":1786,"34115":-1,"34116":2451,"34117":2376,"34118":0,"34119":0,"34120":0,"34121":-1,"34122":2182,"34123":-1,"34124":-1,"34125":-1,"34126":2394,"34127":0,"34128":-1,"34129":-1,"34130":0,"34131":3055,"34132":0,"34133":-1,"34134":3206,"34135":2101,"34136":0,"34137":3621,"34138":0,"34139":-1,"34140":0,"34141":-1,"34142":0,"34143":-1,"34144":-1,"34145":0,"34146":-1,"34147":3969,"34148":0,"34149":2089,"34150":0,"34151":-1,"34152":-1,"34153":3013,"34154":2273,"34155":-1,"34156":0,"34157":222,"34158":0,"34159":-1,"34160":-1,"34161":-1,"34162":2200,"34163":0,"34164":0,"34165":508,"34166":-1,"34167":0,"34168":-1,"34169":0,"34170":3316,"34171":0,"34172":-1,"34173":0,"34174":2383,"34175":2235,"34176":0,"34177":0,"34178":-1,"34179":0,"34180":0,"34181":3107,"34182":0,"34183":-1,"34184":397,"34185":0,"34186":2428,"34187":2079,"34188":2679,"34189":-1,"34190":329,"34191":0,"34192":-1,"34193":0,"34194":0,"34195":-1,"34196":0,"34197":2721,"34198":2463,"34199":-1,"34200":0,"34201":0,"34202":-1,"34203":-1,"34204":3190,"34205":-1,"34206":0,"34207":2732,"34208":89,"34209":0,"34210":-1,"34211":0,"34212":0,"34213":2088,"34214":3177,"34215":-1,"34216":0,"34217":0,"34218":2493,"34219":0,"34220":2599,"34221":2929,"34222":0,"34223":-1,"34224":-1,"34225":0,"34226":0,"34227":2789,"34228":3304,"34229":83,"34230":-1,"34231":3181,"34232":0,"34233":0,"34234":-1,"34235":-1,"34236":0,"34237":0,"34238":-1,"34239":3840,"34240":-1,"34241":0,"34242":2459,"34243":0,"34244":0,"34245":3165,"34246":123,"34247":0,"34248":2907,"34249":-1,"34250":0,"34251":2263,"34252":0,"34253":3996,"34254":3222,"34255":2906,"34256":0,"34257":-1,"34258":2381,"34259":3849,"34260":136,"34261":2889,"34262":-1,"34263":-1,"34264":0,"34265":3098,"34266":3617,"34267":1830,"34268":0,"34269":-1,"34270":2557,"34271":2355,"34272":-1,"34273":-1,"34274":-1,"34275":3577,"34276":0,"34277":2716,"34278":-1,"34279":0,"34280":0,"34281":3681,"34282":3180,"34283":0,"34284":-1,"34285":0,"34286":0,"34287":-1,"34288":0,"34289":0,"34290":-1,"34291":0,"34292":-1,"34293":0,"34294":-1,"34295":-1,"34296":-1,"34297":3741,"34298":2745,"34299":-1,"34300":3668,"34301":2804,"34302":-1,"34303":1820,"34304":0,"34305":1812,"34306":0,"34307":0,"34308":2456,"34309":0,"34310":3059,"34311":-1,"34312":-1,"34313":2168,"34314":0,"34315":-1,"34316":0,"34317":3019,"34318":0,"34319":0,"34320":0,"34321":0,"34322":0,"34323":0,"34324":0,"34325":-1,"34326":-1,"34327":0,"34328":0,"34329":-1,"34330":0,"34331":-1,"34332":0,"34333":-1,"34334":0,"34335":3612,"34336":0,"34337":0,"34338":-1,"34339":-1,"34340":2736,"34341":0,"34342":445,"34343":2047,"34344":0,"34345":-1,"34346":0,"34347":321,"34348":3880,"34349":-1,"34350":2436,"34351":0,"34352":3791,"34353":0,"34354":3080,"34355":3832,"34356":-1,"34357":0,"34358":-1,"34359":0,"34360":0,"34361":1863,"34362":0,"34363":0,"34364":0,"34365":0,"34366":411,"34367":2631,"34368":-1,"34369":3964,"34370":0,"34371":0,"34372":0,"34373":0,"34374":-1,"34375":0,"34376":-1,"34377":0,"34378":0,"34379":0,"34380":1810,"34381":0,"34382":2335,"34383":0,"34384":0,"34385":-1,"34386":0,"34387":0,"34388":0,"34389":0,"34390":0,"34391":0,"34392":0,"34393":3998,"34394":3726,"34395":0,"34396":2306,"34397":-1,"34398":-1,"34399":3624,"34400":3254,"34401":0,"34402":-1,"34403":0,"34404":0,"34405":-1,"34406":0,"34407":0,"34408":-1,"34409":-1,"34410":173,"34411":0,"34412":72,"34413":-1,"34414":-1,"34415":0,"34416":-1,"34417":-1,"34418":0,"34419":3027,"34420":0,"34421":0,"34422":-1,"34423":-1,"34424":-1,"34425":2794,"34426":-1,"34427":-1,"34428":3671,"34429":1808,"34430":-1,"34431":2321,"34432":3411,"34433":0,"34434":-1,"34435":0,"34436":3815,"34437":0,"34438":0,"34439":0,"34440":3294,"34441":2330,"34442":0,"34443":4056,"34444":0,"34445":0,"34446":2933,"34447":0,"34448":-1,"34449":0,"34450":0,"34451":0,"34452":0,"34453":0,"34454":-1,"34455":3824,"34456":260,"34457":0,"34458":0,"34459":0,"34460":3721,"34461":-1,"34462":-1,"34463":-1,"34464":-1,"34465":0,"34466":-1,"34467":0,"34468":2499,"34469":0,"34470":0,"34471":0,"34472":0,"34473":0,"34474":-1,"34475":0,"34476":2209,"34477":0,"34478":-1,"34479":-1,"34480":0,"34481":2038,"34482":0,"34483":245,"34484":-1,"34485":166,"34486":-1,"34487":0,"34488":0,"34489":0,"34490":-1,"34491":3619,"34492":0,"34493":0,"34494":-1,"34495":0,"34496":0,"34497":-1,"34498":0,"34499":-1,"34500":0,"34501":-1,"34502":0,"34503":0,"34504":0,"34505":-1,"34506":0,"34507":272,"34508":2017,"34509":0,"34510":4019,"34511":3647,"34512":-1,"34513":-1,"34514":0,"34515":1928,"34516":-1,"34517":0,"34518":-1,"34519":-1,"34520":0,"34521":0,"34522":2679,"34523":0,"34524":3896,"34525":0,"34526":-1,"34527":1984,"34528":3585,"34529":0,"34530":-1,"34531":0,"34532":-1,"34533":2957,"34534":0,"34535":3552,"34536":0,"34537":0,"34538":3324,"34539":2853,"34540":3509,"34541":0,"34542":-1,"34543":0,"34544":-1,"34545":-1,"34546":66,"34547":0,"34548":-1,"34549":-1,"34550":3180,"34551":-1,"34552":2382,"34553":0,"34554":0,"34555":444,"34556":3326,"34557":250,"34558":-1,"34559":-1,"34560":0,"34561":-1,"34562":-1,"34563":-1,"34564":0,"34565":3751,"34566":0,"34567":-1,"34568":-1,"34569":-1,"34570":0,"34571":0,"34572":0,"34573":2409,"34574":-1,"34575":-1,"34576":0,"34577":0,"34578":3081,"34579":0,"34580":0,"34581":0,"34582":0,"34583":-1,"34584":3053,"34585":2811,"34586":0,"34587":0,"34588":-1,"34589":0,"34590":37,"34591":4004,"34592":-1,"34593":3173,"34594":0,"34595":-1,"34596":0,"34597":0,"34598":0,"34599":241,"34600":3673,"34601":0,"34602":-1,"34603":2697,"34604":0,"34605":2461,"34606":2297,"34607":-1,"34608":2138,"34609":-1,"34610":-1,"34611":-1,"34612":-1,"34613":0,"34614":-1,"34615":2568,"34616":0,"34617":-1,"34618":3201,"34619":3518,"34620":-1,"34621":3410,"34622":-1,"34623":0,"34624":-1,"34625":2030,"34626":0,"34627":0,"34628":0,"34629":0,"34630":0,"34631":0,"34632":0,"34633":2802,"34634":3169,"34635":0,"34636":0,"34637":3343,"34638":2709,"34639":0,"34640":-1,"34641":0,"34642":2922,"34643":347,"34644":0,"34645":0,"34646":-1,"34647":3543,"34648":-1,"34649":-1,"34650":-1,"34651":-1,"34652":3388,"34653":73,"34654":0,"34655":0,"34656":3652,"34657":0,"34658":0,"34659":0,"34660":1972,"34661":-1,"34662":-1,"34663":-1,"34664":0,"34665":-1,"34666":0,"34667":-1,"34668":0,"34669":0,"34670":0,"34671":0,"34672":2696,"34673":-1,"34674":3326,"34675":0,"34676":-1,"34677":0,"34678":0,"34679":0,"34680":-1,"34681":0,"34682":2797,"34683":0,"34684":0,"34685":2418,"34686":0,"34687":0,"34688":0,"34689":-1,"34690":0,"34691":124,"34692":0,"34693":0,"34694":-1,"34695":-1,"34696":-1,"34697":155,"34698":3101,"34699":-1,"34700":0,"34701":-1,"34702":0,"34703":2021,"34704":0,"34705":345,"34706":0,"34707":0,"34708":-1,"34709":2142,"34710":2405,"34711":0,"34712":4049,"34713":0,"34714":0,"34715":3367,"34716":318,"34717":2052,"34718":0,"34719":0,"34720":3892,"34721":-1,"34722":0,"34723":1928,"34724":0,"34725":-1,"34726":0,"34727":0,"34728":0,"34729":443,"34730":3724,"34731":-1,"34732":3300,"34733":-1,"34734":3673,"34735":0,"34736":1848,"34737":0,"34738":-1,"34739":-1,"34740":0,"34741":4002,"34742":0,"34743":0,"34744":-1,"34745":0,"34746":3453,"34747":-1,"34748":2056,"34749":0,"34750":2441,"34751":178,"34752":0,"34753":519,"34754":2191,"34755":2532,"34756":3338,"34757":-1,"34758":0,"34759":3759,"34760":-1,"34761":3374,"34762":2831,"34763":-1,"34764":252,"34765":-1,"34766":2670,"34767":-1,"34768":0,"34769":0,"34770":-1,"34771":-1,"34772":0,"34773":2536,"34774":-1,"34775":3168,"34776":0,"34777":0,"34778":3441,"34779":0,"34780":0,"34781":-1,"34782":0,"34783":2066,"34784":0,"34785":0,"34786":0,"34787":2615,"34788":-1,"34789":1846,"34790":0,"34791":0,"34792":0,"34793":0,"34794":0,"34795":2241,"34796":0,"34797":0,"34798":3583,"34799":0,"34800":-1,"34801":-1,"34802":-1,"34803":0,"34804":-1,"34805":-1,"34806":0,"34807":0,"34808":2843,"34809":-1,"34810":-1,"34811":0,"34812":0,"34813":2266,"34814":2654,"34815":0,"34816":0,"34817":2404,"34818":3190,"34819":0,"34820":-1,"34821":-1,"34822":-1,"34823":0,"34824":0,"34825":0,"34826":3056,"34827":0,"34828":-1,"34829":3358,"34830":0,"34831":0,"34832":0,"34833":-1,"34834":1958,"34835":0,"34836":2482,"34837":-1,"34838":3743,"34839":0,"34840":-1,"34841":0,"34842":0,"34843":0,"34844":0,"34845":0,"34846":1929,"34847":0,"34848":0,"34849":0,"34850":1993,"34851":-1,"34852":0,"34853":0,"34854":3832,"34855":3166,"34856":0,"34857":0,"34858":0,"34859":-1,"34860":-1,"34861":-1,"34862":-1,"34863":0,"34864":0,"34865":0,"34866":-1,"34867":0,"34868":-1,"34869":0,"34870":3517,"34871":-1,"34872":3318,"34873":0,"34874":0,"34875":3531,"34876":3332,"34877":0,"34878":3289,"34879":115,"34880":-1,"34881":-1,"34882":0,"34883":-1,"34884":-1,"34885":0,"34886":3053,"34887":0,"34888":66,"34889":-1,"34890":2069,"34891":0,"34892":-1,"34893":0,"34894":3215,"34895":0,"34896":3530,"34897":3075,"34898":2269,"34899":0,"34900":3025,"34901":0,"34902":2961,"34903":-1,"34904":-1,"34905":3774,"34906":0,"34907":0,"34908":3473,"34909":0,"34910":0,"34911":0,"34912":-1,"34913":-1,"34914":3826,"34915":0,"34916":0,"34917":-1,"34918":0,"34919":3975,"34920":2475,"34921":-1,"34922":0,"34923":-1,"34924":-1,"34925":0,"34926":0,"34927":0,"34928":-1,"34929":0,"34930":490,"34931":2255,"34932":2089,"34933":0,"34934":3135,"34935":0,"34936":-1,"34937":0,"34938":1782,"34939":-1,"34940":0,"34941":0,"34942":2427,"34943":-1,"34944":0,"34945":-1,"34946":0,"34947":-1,"34948":0,"34949":0,"34950":0,"34951":0,"34952":-1,"34953":0,"34954":-1,"34955":-1,"34956":-1,"34957":2677,"34958":-1,"34959":0,"34960":0,"34961":-1,"34962":2349,"34963":3857,"34964":0,"34965":-1,"34966":0,"34967":3331,"34968":0,"34969":2587,"34970":0,"34971":2148,"34972":0,"34973":-1,"34974":0,"34975":0,"34976":0,"34977":-1,"34978":-1,"34979":187,"34980":0,"34981":0,"34982":0,"34983":0,"34984":0,"34985":0,"34986":150,"34987":0,"34988":0,"34989":0,"34990":-1,"34991":0,"34992":1822,"34993":3442,"34994":-1,"34995":2755,"34996":0,"34997":0,"34998":1897,"34999":152,"35000":-1,"35001":-1,"35002":320,"35003":3915,"35004":0,"35005":0,"35006":0,"35007":-1,"35008":-1,"35009":0,"35010":-1,"35011":-1,"35012":0,"35013":2373,"35014":3090,"35015":3664,"35016":225,"35017":-1,"35018":0,"35019":0,"35020":0,"35021":0,"35022":0,"35023":1789,"35024":-1,"35025":0,"35026":0,"35027":0,"35028":2049,"35029":-1,"35030":0,"35031":3033,"35032":0,"35033":321,"35034":-1,"35035":0,"35036":0,"35037":3135,"35038":0,"35039":-1,"35040":-1,"35041":0,"35042":-1,"35043":-1,"35044":0,"35045":1882,"35046":300,"35047":4024,"35048":-1,"35049":0,"35050":0,"35051":0,"35052":-1,"35053":3256,"35054":0,"35055":3744,"35056":-1,"35057":-1,"35058":4046,"35059":-1,"35060":0,"35061":-1,"35062":82,"35063":-1,"35064":0,"35065":3858,"35066":-1,"35067":0,"35068":-1,"35069":-1,"35070":3299,"35071":0,"35072":-1,"35073":0,"35074":0,"35075":0,"35076":0,"35077":0,"35078":-1,"35079":-1,"35080":142,"35081":0,"35082":0,"35083":2679,"35084":-1,"35085":0,"35086":-1,"35087":-1,"35088":0,"35089":0,"35090":3234,"35091":0,"35092":0,"35093":-1,"35094":0,"35095":-1,"35096":3613,"35097":-1,"35098":-1,"35099":0,"35100":388,"35101":-1,"35102":-1,"35103":-1,"35104":0,"35105":-1,"35106":0,"35107":0,"35108":0,"35109":0,"35110":-1,"35111":0,"35112":0,"35113":0,"35114":3251,"35115":2373,"35116":1892,"35117":0,"35118":-1,"35119":0,"35120":2179,"35121":0,"35122":-1,"35123":0,"35124":-1,"35125":0,"35126":-1,"35127":0,"35128":-1,"35129":-1,"35130":-1,"35131":2283,"35132":0,"35133":0,"35134":-1,"35135":-1,"35136":3132,"35137":0,"35138":1901,"35139":0,"35140":-1,"35141":3965,"35142":0,"35143":0,"35144":0,"35145":-1,"35146":0,"35147":2478,"35148":-1,"35149":0,"35150":-1,"35151":1973,"35152":3337,"35153":0,"35154":0,"35155":0,"35156":0,"35157":0,"35158":0,"35159":0,"35160":2083,"35161":3200,"35162":-1,"35163":2419,"35164":2594,"35165":0,"35166":0,"35167":0,"35168":0,"35169":-1,"35170":0,"35171":-1,"35172":0,"35173":0,"35174":-1,"35175":0,"35176":0,"35177":3991,"35178":1961,"35179":3074,"35180":0,"35181":0,"35182":0,"35183":0,"35184":0,"35185":0,"35186":0,"35187":0,"35188":0,"35189":0,"35190":3070,"35191":0,"35192":-1,"35193":-1,"35194":3093,"35195":0,"35196":0,"35197":-1,"35198":-1,"35199":317,"35200":0,"35201":1812,"35202":3920,"35203":91,"35204":-1,"35205":-1,"35206":-1,"35207":2564,"35208":-1,"35209":2755,"35210":0,"35211":3060,"35212":0,"35213":0,"35214":-1,"35215":0,"35216":3124,"35217":0,"35218":0,"35219":0,"35220":2560,"35221":0,"35222":0,"35223":-1,"35224":0,"35225":0,"35226":2105,"35227":-1,"35228":0,"35229":0,"35230":0,"35231":2005,"35232":2597,"35233":0,"35234":0,"35235":3091,"35236":-1,"35237":3054,"35238":0,"35239":-1,"35240":2542,"35241":-1,"35242":-1,"35243":0,"35244":0,"35245":0,"35246":0,"35247":0,"35248":-1,"35249":0,"35250":0,"35251":0,"35252":2116,"35253":-1,"35254":0,"35255":0,"35256":0,"35257":-1,"35258":-1,"35259":0,"35260":-1,"35261":0,"35262":0,"35263":-1,"35264":0,"35265":3166,"35266":0,"35267":0,"35268":277,"35269":0,"35270":0,"35271":0,"35272":0,"35273":257,"35274":-1,"35275":2235,"35276":-1,"35277":2209,"35278":-1,"35279":0,"35280":-1,"35281":-1,"35282":0,"35283":0,"35284":-1,"35285":-1,"35286":-1,"35287":0,"35288":0,"35289":-1,"35290":3698,"35291":-1,"35292":-1,"35293":0,"35294":-1,"35295":-1,"35296":0,"35297":3137,"35298":0,"35299":3898,"35300":-1,"35301":0,"35302":3760,"35303":3633,"35304":0,"35305":-1,"35306":2906,"35307":3194,"35308":0,"35309":3291,"35310":-1,"35311":0,"35312":-1,"35313":0,"35314":-1,"35315":2276,"35316":0,"35317":-1,"35318":1784,"35319":0,"35320":0,"35321":0,"35322":3646,"35323":-1,"35324":3092,"35325":3781,"35326":2667,"35327":361,"35328":0,"35329":0,"35330":0,"35331":267,"35332":-1,"35333":-1,"35334":-1,"35335":3061,"35336":2645,"35337":-1,"35338":0,"35339":-1,"35340":0,"35341":-1,"35342":0,"35343":-1,"35344":-1,"35345":-1,"35346":-1,"35347":-1,"35348":61,"35349":3481,"35350":0,"35351":-1,"35352":2786,"35353":219,"35354":0,"35355":2974,"35356":-1,"35357":0,"35358":2599,"35359":280,"35360":-1,"35361":1846,"35362":0,"35363":-1,"35364":0,"35365":0,"35366":2428,"35367":-1,"35368":3098,"35369":3326,"35370":0,"35371":0,"35372":2548,"35373":-1,"35374":0,"35375":-1,"35376":378,"35377":0,"35378":214,"35379":2584,"35380":3352,"35381":0,"35382":0,"35383":2090,"35384":0,"35385":0,"35386":2677,"35387":0,"35388":459,"35389":0,"35390":0,"35391":283,"35392":0,"35393":0,"35394":0,"35395":0,"35396":0,"35397":-1,"35398":0,"35399":-1,"35400":-1,"35401":0,"35402":0,"35403":4003,"35404":0,"35405":0,"35406":0,"35407":-1,"35408":0,"35409":0,"35410":-1,"35411":0,"35412":0,"35413":1958,"35414":0,"35415":-1,"35416":3282,"35417":-1,"35418":3170,"35419":2825,"35420":-1,"35421":0,"35422":-1,"35423":-1,"35424":0,"35425":-1,"35426":-1,"35427":0,"35428":0,"35429":3696,"35430":0,"35431":0,"35432":0,"35433":2471,"35434":-1,"35435":0,"35436":0,"35437":0,"35438":0,"35439":0,"35440":-1,"35441":0,"35442":-1,"35443":0,"35444":3750,"35445":-1,"35446":0,"35447":0,"35448":-1,"35449":0,"35450":0,"35451":0,"35452":0,"35453":0,"35454":-1,"35455":-1,"35456":0,"35457":-1,"35458":0,"35459":83,"35460":0,"35461":0,"35462":3407,"35463":374,"35464":-1,"35465":0,"35466":0,"35467":1789,"35468":3552,"35469":185,"35470":3046,"35471":3851,"35472":0,"35473":0,"35474":0,"35475":-1,"35476":0,"35477":-1,"35478":0,"35479":-1,"35480":2178,"35481":0,"35482":-1,"35483":0,"35484":0,"35485":0,"35486":-1,"35487":2025,"35488":-1,"35489":0,"35490":0,"35491":2821,"35492":-1,"35493":0,"35494":2673,"35495":-1,"35496":3467,"35497":367,"35498":0,"35499":0,"35500":0,"35501":0,"35502":-1,"35503":2980,"35504":-1,"35505":2758,"35506":-1,"35507":3238,"35508":-1,"35509":0,"35510":0,"35511":0,"35512":2091,"35513":0,"35514":0,"35515":-1,"35516":127,"35517":0,"35518":0,"35519":0,"35520":0,"35521":0,"35522":0,"35523":-1,"35524":0,"35525":0,"35526":-1,"35527":0,"35528":-1,"35529":3157,"35530":3716,"35531":3978,"35532":2331,"35533":0,"35534":3107,"35535":3107,"35536":-1,"35537":3815,"35538":0,"35539":3692,"35540":0,"35541":-1,"35542":-1,"35543":-1,"35544":2105,"35545":-1,"35546":0,"35547":0,"35548":-1,"35549":2398,"35550":506,"35551":0,"35552":3409,"35553":0,"35554":0,"35555":-1,"35556":2929,"35557":2179,"35558":0,"35559":-1,"35560":3170,"35561":0,"35562":3227,"35563":2705,"35564":3205,"35565":2433,"35566":3442,"35567":0,"35568":-1,"35569":0,"35570":0,"35571":0,"35572":0,"35573":0,"35574":-1,"35575":0,"35576":352,"35577":0,"35578":0,"35579":2720,"35580":0,"35581":0,"35582":121,"35583":-1,"35584":0,"35585":-1,"35586":0,"35587":-1,"35588":0,"35589":0,"35590":0,"35591":2991,"35592":-1,"35593":-1,"35594":2265,"35595":3898,"35596":-1,"35597":0,"35598":2668,"35599":-1,"35600":0,"35601":398,"35602":0,"35603":0,"35604":-1,"35605":0,"35606":-1,"35607":2038,"35608":0,"35609":0,"35610":-1,"35611":-1,"35612":3273,"35613":0,"35614":143,"35615":-1,"35616":-1,"35617":0,"35618":3828,"35619":3600,"35620":0,"35621":0,"35622":-1,"35623":3079,"35624":-1,"35625":0,"35626":0,"35627":0,"35628":-1,"35629":0,"35630":0,"35631":3793,"35632":-1,"35633":0,"35634":0,"35635":0,"35636":0,"35637":0,"35638":0,"35639":60,"35640":-1,"35641":0,"35642":-1,"35643":0,"35644":-1,"35645":-1,"35646":-1,"35647":-1,"35648":-1,"35649":0,"35650":-1,"35651":-1,"35652":23,"35653":3095,"35654":-1,"35655":-1,"35656":3740,"35657":2137,"35658":0,"35659":279,"35660":0,"35661":0,"35662":0,"35663":0,"35664":3115,"35665":0,"35666":0,"35667":-1,"35668":0,"35669":-1,"35670":0,"35671":0,"35672":0,"35673":225,"35674":0,"35675":-1,"35676":0,"35677":-1,"35678":0,"35679":3548,"35680":-1,"35681":0,"35682":0,"35683":3399,"35684":0,"35685":0,"35686":0,"35687":2069,"35688":-1,"35689":0,"35690":0,"35691":-1,"35692":0,"35693":-1,"35694":0,"35695":0,"35696":0,"35697":3331,"35698":0,"35699":0,"35700":0,"35701":-1,"35702":0,"35703":3922,"35704":0,"35705":0,"35706":2756,"35707":0,"35708":-1,"35709":-1,"35710":-1,"35711":2701,"35712":0,"35713":0,"35714":0,"35715":3918,"35716":-1,"35717":0,"35718":0,"35719":-1,"35720":0,"35721":2622,"35722":0,"35723":1912,"35724":0,"35725":-1,"35726":0,"35727":-1,"35728":404,"35729":4061,"35730":0,"35731":-1,"35732":-1,"35733":0,"35734":0,"35735":-1,"35736":2447,"35737":2206,"35738":3413,"35739":-1,"35740":1927,"35741":0,"35742":0,"35743":-1,"35744":0,"35745":-1,"35746":0,"35747":217,"35748":2573,"35749":0,"35750":3610,"35751":-1,"35752":0,"35753":-1,"35754":0,"35755":0,"35756":0,"35757":2943,"35758":0,"35759":0,"35760":0,"35761":0,"35762":2416,"35763":-1,"35764":-1,"35765":4051,"35766":0,"35767":0,"35768":0,"35769":2484,"35770":0,"35771":0,"35772":0,"35773":0,"35774":0,"35775":0,"35776":0,"35777":0,"35778":0,"35779":1926,"35780":-1,"35781":0,"35782":-1,"35783":0,"35784":0,"35785":0,"35786":-1,"35787":0,"35788":2950,"35789":2855,"35790":-1,"35791":0,"35792":3309,"35793":-1,"35794":0,"35795":-1,"35796":0,"35797":-1,"35798":0,"35799":0,"35800":0,"35801":0,"35802":4026,"35803":-1,"35804":0,"35805":-1,"35806":-1,"35807":0,"35808":0,"35809":3850,"35810":0,"35811":0,"35812":-1,"35813":-1,"35814":0,"35815":2617,"35816":3013,"35817":2266,"35818":0,"35819":1786,"35820":0,"35821":0,"35822":0,"35823":-1,"35824":0,"35825":-1,"35826":0,"35827":0,"35828":3241,"35829":-1,"35830":2396,"35831":-1,"35832":-1,"35833":0,"35834":0,"35835":-1,"35836":-1,"35837":0,"35838":-1,"35839":0,"35840":0,"35841":0,"35842":0,"35843":2912,"35844":0,"35845":0,"35846":2039,"35847":2771,"35848":0,"35849":0,"35850":0,"35851":-1,"35852":-1,"35853":-1,"35854":-1,"35855":0,"35856":-1,"35857":2955,"35858":0,"35859":2457,"35860":0,"35861":-1,"35862":0,"35863":0,"35864":-1,"35865":0,"35866":-1,"35867":-1,"35868":0,"35869":0,"35870":3989,"35871":0,"35872":0,"35873":3562,"35874":0,"35875":3884,"35876":251,"35877":2136,"35878":0,"35879":0,"35880":0,"35881":-1,"35882":0,"35883":0,"35884":0,"35885":0,"35886":278,"35887":404,"35888":0,"35889":0,"35890":-1,"35891":0,"35892":0,"35893":-1,"35894":-1,"35895":-1,"35896":2340,"35897":0,"35898":4056,"35899":2382,"35900":-1,"35901":-1,"35902":0,"35903":-1,"35904":-1,"35905":0,"35906":0,"35907":-1,"35908":0,"35909":-1,"35910":0,"35911":-1,"35912":0,"35913":2597,"35914":0,"35915":0,"35916":252,"35917":0,"35918":-1,"35919":2158,"35920":2298,"35921":0,"35922":-1,"35923":-1,"35924":0,"35925":0,"35926":3065,"35927":-1,"35928":-1,"35929":3101,"35930":-1,"35931":4061,"35932":0,"35933":-1,"35934":0,"35935":-1,"35936":-1,"35937":3150,"35938":0,"35939":0,"35940":126,"35941":-1,"35942":-1,"35943":0,"35944":-1,"35945":0,"35946":2291,"35947":-1,"35948":0,"35949":3204,"35950":-1,"35951":-1,"35952":0,"35953":0,"35954":-1,"35955":2681,"35956":0,"35957":-1,"35958":-1,"35959":0,"35960":0,"35961":-1,"35962":0,"35963":1821,"35964":-1,"35965":363,"35966":0,"35967":0,"35968":2181,"35969":0,"35970":3345,"35971":0,"35972":163,"35973":0,"35974":3835,"35975":0,"35976":0,"35977":0,"35978":2819,"35979":-1,"35980":-1,"35981":-1,"35982":0,"35983":0,"35984":-1,"35985":0,"35986":-1,"35987":3795,"35988":0,"35989":-1,"35990":4016,"35991":0,"35992":0,"35993":0,"35994":-1,"35995":0,"35996":2954,"35997":0,"35998":0,"35999":-1,"36000":0,"36001":2469,"36002":0,"36003":0,"36004":0,"36005":-1,"36006":-1,"36007":0,"36008":0,"36009":0,"36010":-1,"36011":2800,"36012":2513,"36013":-1,"36014":0,"36015":0,"36016":0,"36017":0,"36018":2152,"36019":0,"36020":0,"36021":1986,"36022":0,"36023":2019,"36024":0,"36025":3321,"36026":-1,"36027":0,"36028":-1,"36029":0,"36030":0,"36031":0,"36032":-1,"36033":0,"36034":-1,"36035":0,"36036":-1,"36037":0,"36038":-1,"36039":-1,"36040":-1,"36041":360,"36042":-1,"36043":-1,"36044":-1,"36045":0,"36046":0,"36047":0,"36048":0,"36049":0,"36050":0,"36051":2308,"36052":-1,"36053":-1,"36054":2283,"36055":2469,"36056":0,"36057":0,"36058":0,"36059":0,"36060":0,"36061":-1,"36062":3252,"36063":-1,"36064":-1,"36065":3496,"36066":0,"36067":-1,"36068":-1,"36069":0,"36070":-1,"36071":134,"36072":0,"36073":0,"36074":-1,"36075":0,"36076":0,"36077":-1,"36078":-1,"36079":0,"36080":0,"36081":2657,"36082":2098,"36083":-1,"36084":0,"36085":0,"36086":-1,"36087":-1,"36088":2358,"36089":2221,"36090":3968,"36091":-1,"36092":-1,"36093":0,"36094":-1,"36095":-1,"36096":-1,"36097":-1,"36098":3571,"36099":0,"36100":-1,"36101":3073,"36102":0,"36103":1892,"36104":2956,"36105":11,"36106":2135,"36107":-1,"36108":3625,"36109":0,"36110":0,"36111":0,"36112":0,"36113":0,"36114":0,"36115":-1,"36116":0,"36117":0,"36118":3726,"36119":1815,"36120":0,"36121":-1,"36122":-1,"36123":3555,"36124":0,"36125":2904,"36126":0,"36127":0,"36128":0,"36129":-1,"36130":3593,"36131":0,"36132":-1,"36133":464,"36134":0,"36135":0,"36136":0,"36137":-1,"36138":0,"36139":0,"36140":-1,"36141":0,"36142":-1,"36143":2272,"36144":-1,"36145":0,"36146":-1,"36147":0,"36148":2945,"36149":0,"36150":0,"36151":-1,"36152":-1,"36153":0,"36154":0,"36155":0,"36156":-1,"36157":-1,"36158":-1,"36159":-1,"36160":0,"36161":0,"36162":2371,"36163":-1,"36164":3843,"36165":3970,"36166":2088,"36167":254,"36168":0,"36169":0,"36170":0,"36171":237,"36172":0,"36173":0,"36174":-1,"36175":0,"36176":2396,"36177":-1,"36178":0,"36179":34,"36180":3120,"36181":-1,"36182":2594,"36183":2524,"36184":0,"36185":0,"36186":2223,"36187":-1,"36188":-1,"36189":0,"36190":0,"36191":2356,"36192":0,"36193":3413,"36194":3909,"36195":0,"36196":0,"36197":1876,"36198":406,"36199":-1,"36200":2628,"36201":-1,"36202":-1,"36203":-1,"36204":-1,"36205":-1,"36206":-1,"36207":1997,"36208":0,"36209":0,"36210":0,"36211":-1,"36212":-1,"36213":-1,"36214":222,"36215":-1,"36216":3259,"36217":0,"36218":0,"36219":-1,"36220":0,"36221":166,"36222":3437,"36223":-1,"36224":4025,"36225":0,"36226":327,"36227":-1,"36228":0,"36229":-1,"36230":0,"36231":3135,"36232":2974,"36233":0,"36234":0,"36235":39,"36236":-1,"36237":-1,"36238":2212,"36239":-1,"36240":-1,"36241":3796,"36242":3023,"36243":0,"36244":-1,"36245":-1,"36246":0,"36247":2750,"36248":367,"36249":313,"36250":-1,"36251":0,"36252":0,"36253":0,"36254":-1,"36255":0,"36256":-1,"36257":-1,"36258":-1,"36259":516,"36260":0,"36261":2542,"36262":0,"36263":2734,"36264":4015,"36265":0,"36266":2957,"36267":-1,"36268":-1,"36269":-1,"36270":-1,"36271":0,"36272":0,"36273":0,"36274":0,"36275":2342,"36276":-1,"36277":0,"36278":0,"36279":0,"36280":0,"36281":-1,"36282":-1,"36283":0,"36284":0,"36285":0,"36286":0,"36287":3419,"36288":-1,"36289":2451,"36290":-1,"36291":-1,"36292":0,"36293":0,"36294":-1,"36295":0,"36296":0,"36297":-1,"36298":-1,"36299":0,"36300":116,"36301":0,"36302":0,"36303":0,"36304":0,"36305":0,"36306":1897,"36307":0,"36308":0,"36309":0,"36310":0,"36311":2120,"36312":0,"36313":0,"36314":0,"36315":-1,"36316":3415,"36317":-1,"36318":0,"36319":0,"36320":0,"36321":0,"36322":0,"36323":48,"36324":-1,"36325":3709,"36326":-1,"36327":0,"36328":-1,"36329":0,"36330":2828,"36331":4014,"36332":-1,"36333":0,"36334":-1,"36335":0,"36336":0,"36337":-1,"36338":-1,"36339":2681,"36340":-1,"36341":0,"36342":0,"36343":0,"36344":2428,"36345":0,"36346":0,"36347":2204,"36348":0,"36349":0,"36350":-1,"36351":0,"36352":3565,"36353":0,"36354":16,"36355":-1,"36356":2445,"36357":0,"36358":3353,"36359":3775,"36360":0,"36361":-1,"36362":0,"36363":3149,"36364":4027,"36365":0,"36366":0,"36367":-1,"36368":3217,"36369":0,"36370":0,"36371":2816,"36372":-1,"36373":0,"36374":3486,"36375":0,"36376":341,"36377":-1,"36378":2961,"36379":1821,"36380":0,"36381":0,"36382":-1,"36383":3103,"36384":82,"36385":0,"36386":2971,"36387":0,"36388":2958,"36389":-1,"36390":0,"36391":0,"36392":129,"36393":0,"36394":3541,"36395":0,"36396":-1,"36397":3463,"36398":-1,"36399":2986,"36400":276,"36401":-1,"36402":0,"36403":0,"36404":0,"36405":59,"36406":-1,"36407":0,"36408":0,"36409":3649,"36410":-1,"36411":-1,"36412":-1,"36413":0,"36414":-1,"36415":0,"36416":0,"36417":0,"36418":-1,"36419":0,"36420":0,"36421":0,"36422":0,"36423":-1,"36424":-1,"36425":0,"36426":0,"36427":0,"36428":-1,"36429":0,"36430":1782,"36431":-1,"36432":0,"36433":0,"36434":0,"36435":0,"36436":2107,"36437":0,"36438":0,"36439":0,"36440":0,"36441":0,"36442":-1,"36443":0,"36444":1929,"36445":-1,"36446":0,"36447":2373,"36448":0,"36449":-1,"36450":-1,"36451":2358,"36452":-1,"36453":0,"36454":3224,"36455":-1,"36456":-1,"36457":0,"36458":-1,"36459":-1,"36460":3038,"36461":0,"36462":0,"36463":0,"36464":0,"36465":4005,"36466":-1,"36467":0,"36468":-1,"36469":3341,"36470":1877,"36471":0,"36472":0,"36473":0,"36474":1782,"36475":-1,"36476":0,"36477":0,"36478":0,"36479":-1,"36480":0,"36481":-1,"36482":-1,"36483":-1,"36484":0,"36485":-1,"36486":0,"36487":2097,"36488":0,"36489":0,"36490":0,"36491":-1,"36492":0,"36493":2098,"36494":2085,"36495":-1,"36496":2098,"36497":0,"36498":-1,"36499":-1,"36500":0,"36501":-1,"36502":0,"36503":-1,"36504":0,"36505":-1,"36506":0,"36507":1843,"36508":-1,"36509":0,"36510":0,"36511":0,"36512":0,"36513":0,"36514":2361,"36515":-1,"36516":-1,"36517":0,"36518":0,"36519":0,"36520":0,"36521":-1,"36522":3022,"36523":0,"36524":9,"36525":0,"36526":2492,"36527":2589,"36528":-1,"36529":2586,"36530":0,"36531":-1,"36532":0,"36533":2790,"36534":3528,"36535":0,"36536":0,"36537":3367,"36538":-1,"36539":0,"36540":2659,"36541":2662,"36542":0,"36543":-1,"36544":0,"36545":0,"36546":3731,"36547":0,"36548":0,"36549":3815,"36550":-1,"36551":-1,"36552":0,"36553":2845,"36554":0,"36555":-1,"36556":83,"36557":-1,"36558":0,"36559":0,"36560":-1,"36561":2894,"36562":0,"36563":0,"36564":-1,"36565":-1,"36566":0,"36567":2862,"36568":0,"36569":0,"36570":0,"36571":-1,"36572":-1,"36573":-1,"36574":2732,"36575":3891,"36576":-1,"36577":3738,"36578":-1,"36579":0,"36580":3027,"36581":-1,"36582":0,"36583":0,"36584":-1,"36585":-1,"36586":2487,"36587":3632,"36588":-1,"36589":2117,"36590":4053,"36591":-1,"36592":-1,"36593":0,"36594":3786,"36595":-1,"36596":3049,"36597":0,"36598":3270,"36599":0,"36600":-1,"36601":-1,"36602":-1,"36603":-1,"36604":0,"36605":-1,"36606":0,"36607":-1,"36608":0,"36609":0,"36610":0,"36611":0,"36612":0,"36613":0,"36614":0,"36615":0,"36616":0,"36617":2529,"36618":-1,"36619":345,"36620":0,"36621":2596,"36622":0,"36623":0,"36624":3314,"36625":-1,"36626":0,"36627":76,"36628":-1,"36629":-1,"36630":2322,"36631":0,"36632":-1,"36633":2241,"36634":0,"36635":0,"36636":-1,"36637":0,"36638":-1,"36639":0,"36640":0,"36641":-1,"36642":0,"36643":0,"36644":0,"36645":0,"36646":3195,"36647":0,"36648":-1,"36649":-1,"36650":1978,"36651":2134,"36652":-1,"36653":436,"36654":0,"36655":0,"36656":0,"36657":0,"36658":-1,"36659":0,"36660":0,"36661":-1,"36662":3650,"36663":126,"36664":1951,"36665":-1,"36666":-1,"36667":1843,"36668":-1,"36669":2069,"36670":0,"36671":0,"36672":0,"36673":0,"36674":4059,"36675":0,"36676":0,"36677":0,"36678":-1,"36679":0,"36680":-1,"36681":0,"36682":-1,"36683":-1,"36684":0,"36685":0,"36686":-1,"36687":0,"36688":0,"36689":0,"36690":-1,"36691":176,"36692":-1,"36693":2831,"36694":0,"36695":0,"36696":-1,"36697":3097,"36698":85,"36699":0,"36700":2050,"36701":334,"36702":0,"36703":-1,"36704":-1,"36705":3953,"36706":-1,"36707":0,"36708":0,"36709":-1,"36710":0,"36711":160,"36712":-1,"36713":0,"36714":0,"36715":0,"36716":0,"36717":2772,"36718":0,"36719":0,"36720":-1,"36721":0,"36722":0,"36723":-1,"36724":3832,"36725":3558,"36726":3763,"36727":0,"36728":-1,"36729":0,"36730":0,"36731":-1,"36732":3430,"36733":-1,"36734":0,"36735":0,"36736":3505,"36737":2187,"36738":-1,"36739":-1,"36740":-1,"36741":2168,"36742":0,"36743":3337,"36744":0,"36745":0,"36746":0,"36747":0,"36748":0,"36749":2879,"36750":-1,"36751":2359,"36752":-1,"36753":0,"36754":0,"36755":0,"36756":-1,"36757":0,"36758":0,"36759":-1,"36760":7,"36761":-1,"36762":-1,"36763":2204,"36764":-1,"36765":0,"36766":0,"36767":0,"36768":3474,"36769":0,"36770":-1,"36771":0,"36772":-1,"36773":0,"36774":-1,"36775":0,"36776":227,"36777":0,"36778":-1,"36779":3282,"36780":-1,"36781":1860,"36782":-1,"36783":-1,"36784":0,"36785":-1,"36786":0,"36787":-1,"36788":-1,"36789":2481,"36790":0,"36791":0,"36792":0,"36793":-1,"36794":0,"36795":-1,"36796":-1,"36797":0,"36798":0,"36799":0,"36800":0,"36801":-1,"36802":0,"36803":-1,"36804":2648,"36805":0,"36806":452,"36807":1820,"36808":2970,"36809":0,"36810":-1,"36811":0,"36812":0,"36813":-1,"36814":2070,"36815":0,"36816":0,"36817":0,"36818":3281,"36819":-1,"36820":2467,"36821":0,"36822":0,"36823":-1,"36824":2167,"36825":0,"36826":0,"36827":0,"36828":-1,"36829":0,"36830":-1,"36831":0,"36832":3550,"36833":3492,"36834":-1,"36835":0,"36836":-1,"36837":-1,"36838":0,"36839":-1,"36840":0,"36841":0,"36842":4056,"36843":2550,"36844":0,"36845":0,"36846":2942,"36847":0,"36848":-1,"36849":0,"36850":0,"36851":1778,"36852":0,"36853":1796,"36854":-1,"36855":0,"36856":-1,"36857":2348,"36858":3417,"36859":2687,"36860":0,"36861":0,"36862":2675,"36863":-1,"36864":0,"36865":0,"36866":497,"36867":-1,"36868":2742,"36869":-1,"36870":2720,"36871":-1,"36872":2416,"36873":0,"36874":-1,"36875":0,"36876":3910,"36877":0,"36878":-1,"36879":0,"36880":-1,"36881":1881,"36882":0,"36883":-1,"36884":-1,"36885":0,"36886":0,"36887":0,"36888":0,"36889":-1,"36890":-1,"36891":-1,"36892":0,"36893":-1,"36894":-1,"36895":-1,"36896":2732,"36897":2619,"36898":3339,"36899":-1,"36900":0,"36901":289,"36902":0,"36903":63,"36904":0,"36905":462,"36906":0,"36907":1806,"36908":0,"36909":0,"36910":0,"36911":0,"36912":2694,"36913":2263,"36914":0,"36915":0,"36916":-1,"36917":2074,"36918":2690,"36919":0,"36920":-1,"36921":0,"36922":-1,"36923":3166,"36924":2846,"36925":-1,"36926":-1,"36927":-1,"36928":-1,"36929":3816,"36930":0,"36931":2274,"36932":-1,"36933":0,"36934":3237,"36935":0,"36936":0,"36937":-1,"36938":2706,"36939":2610,"36940":-1,"36941":-1,"36942":-1,"36943":-1,"36944":0,"36945":-1,"36946":-1,"36947":0,"36948":0,"36949":-1,"36950":0,"36951":-1,"36952":-1,"36953":-1,"36954":-1,"36955":3110,"36956":2910,"36957":0,"36958":3166,"36959":0,"36960":-1,"36961":0,"36962":-1,"36963":-1,"36964":0,"36965":-1,"36966":3352,"36967":221,"36968":-1,"36969":-1,"36970":-1,"36971":2396,"36972":-1,"36973":-1,"36974":0,"36975":0,"36976":3665,"36977":0,"36978":-1,"36979":-1,"36980":3307,"36981":-1,"36982":0,"36983":0,"36984":3659,"36985":0,"36986":2257,"36987":2925,"36988":0,"36989":-1,"36990":-1,"36991":3543,"36992":0,"36993":-1,"36994":0,"36995":-1,"36996":-1,"36997":-1,"36998":34,"36999":3530,"37000":0,"37001":0,"37002":0,"37003":-1,"37004":0,"37005":-1,"37006":136,"37007":0,"37008":0,"37009":2967,"37010":-1,"37011":0,"37012":0,"37013":0,"37014":-1,"37015":2574,"37016":1986,"37017":0,"37018":0,"37019":0,"37020":-1,"37021":0,"37022":0,"37023":-1,"37024":0,"37025":0,"37026":0,"37027":0,"37028":-1,"37029":-1,"37030":3529,"37031":-1,"37032":0,"37033":0,"37034":409,"37035":0,"37036":0,"37037":0,"37038":-1,"37039":0,"37040":0,"37041":-1,"37042":0,"37043":2752,"37044":-1,"37045":-1,"37046":0,"37047":0,"37048":-1,"37049":-1,"37050":187,"37051":0,"37052":0,"37053":-1,"37054":0,"37055":0,"37056":-1,"37057":-1,"37058":2471,"37059":-1,"37060":-1,"37061":-1,"37062":2156,"37063":302,"37064":-1,"37065":-1,"37066":-1,"37067":2225,"37068":0,"37069":0,"37070":-1,"37071":1972,"37072":0,"37073":-1,"37074":0,"37075":-1,"37076":2267,"37077":3492,"37078":-1,"37079":3964,"37080":0,"37081":119,"37082":0,"37083":320,"37084":0,"37085":0,"37086":-1,"37087":0,"37088":507,"37089":4049,"37090":2281,"37091":0,"37092":-1,"37093":-1,"37094":-1,"37095":-1,"37096":-1,"37097":3766,"37098":2341,"37099":0,"37100":0,"37101":0,"37102":0,"37103":2530,"37104":2724,"37105":3829,"37106":0,"37107":0,"37108":0,"37109":2901,"37110":2963,"37111":-1,"37112":-1,"37113":0,"37114":1883,"37115":0,"37116":-1,"37117":0,"37118":2887,"37119":-1,"37120":0,"37121":0,"37122":2360,"37123":2976,"37124":2881,"37125":0,"37126":0,"37127":-1,"37128":0,"37129":-1,"37130":0,"37131":0,"37132":0,"37133":2358,"37134":-1,"37135":0,"37136":1989,"37137":3108,"37138":-1,"37139":2021,"37140":3716,"37141":0,"37142":2661,"37143":-1,"37144":0,"37145":0,"37146":0,"37147":3355,"37148":-1,"37149":-1,"37150":0,"37151":-1,"37152":0,"37153":0,"37154":280,"37155":-1,"37156":0,"37157":0,"37158":0,"37159":2716,"37160":20,"37161":2829,"37162":-1,"37163":-1,"37164":-1,"37165":2140,"37166":-1,"37167":-1,"37168":309,"37169":0,"37170":0,"37171":-1,"37172":0,"37173":0,"37174":0,"37175":1999,"37176":-1,"37177":0,"37178":-1,"37179":0,"37180":-1,"37181":0,"37182":0,"37183":0,"37184":0,"37185":0,"37186":0,"37187":-1,"37188":0,"37189":0,"37190":0,"37191":-1,"37192":-1,"37193":-1,"37194":3887,"37195":0,"37196":-1,"37197":0,"37198":0,"37199":0,"37200":0,"37201":0,"37202":-1,"37203":-1,"37204":0,"37205":2706,"37206":4058,"37207":302,"37208":-1,"37209":444,"37210":2103,"37211":-1,"37212":-1,"37213":3343,"37214":-1,"37215":0,"37216":-1,"37217":425,"37218":0,"37219":0,"37220":2008,"37221":3415,"37222":-1,"37223":0,"37224":3968,"37225":-1,"37226":3111,"37227":-1,"37228":0,"37229":-1,"37230":0,"37231":0,"37232":-1,"37233":0,"37234":2111,"37235":-1,"37236":-1,"37237":0,"37238":0,"37239":0,"37240":0,"37241":-1,"37242":2448,"37243":3219,"37244":0,"37245":4024,"37246":3229,"37247":0,"37248":0,"37249":-1,"37250":0,"37251":0,"37252":2401,"37253":-1,"37254":3579,"37255":0,"37256":0,"37257":0,"37258":-1,"37259":-1,"37260":0,"37261":2024,"37262":-1,"37263":0,"37264":0,"37265":0,"37266":3071,"37267":0,"37268":-1,"37269":0,"37270":0,"37271":-1,"37272":2645,"37273":3433,"37274":0,"37275":3507,"37276":2223,"37277":0,"37278":0,"37279":1955,"37280":2874,"37281":-1,"37282":3912,"37283":0,"37284":0,"37285":0,"37286":2417,"37287":0,"37288":-1,"37289":2423,"37290":0,"37291":0,"37292":0,"37293":-1,"37294":0,"37295":0,"37296":0,"37297":-1,"37298":-1,"37299":0,"37300":-1,"37301":0,"37302":2677,"37303":0,"37304":142,"37305":3858,"37306":0,"37307":-1,"37308":3406,"37309":-1,"37310":-1,"37311":-1,"37312":0,"37313":-1,"37314":0,"37315":-1,"37316":3947,"37317":3343,"37318":0,"37319":2092,"37320":0,"37321":3637,"37322":1793,"37323":4048,"37324":-1,"37325":0,"37326":-1,"37327":-1,"37328":429,"37329":0,"37330":0,"37331":0,"37332":0,"37333":0,"37334":0,"37335":-1,"37336":0,"37337":0,"37338":0,"37339":-1,"37340":3035,"37341":0,"37342":0,"37343":3430,"37344":3558,"37345":0,"37346":-1,"37347":0,"37348":0,"37349":0,"37350":0,"37351":-1,"37352":-1,"37353":2863,"37354":3885,"37355":-1,"37356":2215,"37357":0,"37358":3703,"37359":-1,"37360":-1,"37361":3217,"37362":-1,"37363":3613,"37364":3379,"37365":0,"37366":0,"37367":3843,"37368":-1,"37369":-1,"37370":0,"37371":-1,"37372":-1,"37373":0,"37374":0,"37375":-1,"37376":1873,"37377":-1,"37378":0,"37379":239,"37380":0,"37381":0,"37382":0,"37383":424,"37384":0,"37385":0,"37386":113,"37387":3687,"37388":0,"37389":-1,"37390":0,"37391":2325,"37392":0,"37393":0,"37394":0,"37395":0,"37396":-1,"37397":0,"37398":-1,"37399":0,"37400":-1,"37401":0,"37402":-1,"37403":-1,"37404":2236,"37405":0,"37406":0,"37407":0,"37408":0,"37409":0,"37410":-1,"37411":-1,"37412":-1,"37413":-1,"37414":0,"37415":0,"37416":35,"37417":-1,"37418":0,"37419":2645,"37420":3262,"37421":0,"37422":-1,"37423":-1,"37424":0,"37425":15,"37426":0,"37427":4023,"37428":3576,"37429":-1,"37430":0,"37431":0,"37432":0,"37433":0,"37434":232,"37435":0,"37436":-1,"37437":-1,"37438":0,"37439":-1,"37440":0,"37441":-1,"37442":0,"37443":-1,"37444":-1,"37445":446,"37446":418,"37447":0,"37448":0,"37449":269,"37450":0,"37451":-1,"37452":0,"37453":-1,"37454":0,"37455":2875,"37456":0,"37457":0,"37458":0,"37459":-1,"37460":-1,"37461":0,"37462":0,"37463":3835,"37464":0,"37465":3306,"37466":0,"37467":2140,"37468":2824,"37469":-1,"37470":427,"37471":0,"37472":0,"37473":0,"37474":-1,"37475":119,"37476":0,"37477":0,"37478":-1,"37479":3589,"37480":0,"37481":0,"37482":0,"37483":-1,"37484":2757,"37485":0,"37486":2314,"37487":3546,"37488":0,"37489":3385,"37490":2376,"37491":0,"37492":0,"37493":3811,"37494":0,"37495":-1,"37496":-1,"37497":-1,"37498":-1,"37499":-1,"37500":0,"37501":0,"37502":-1,"37503":2584,"37504":4028,"37505":2825,"37506":-1,"37507":-1,"37508":-1,"37509":2345,"37510":-1,"37511":-1,"37512":333,"37513":0,"37514":-1,"37515":3715,"37516":0,"37517":-1,"37518":-1,"37519":0,"37520":-1,"37521":3139,"37522":0,"37523":0,"37524":0,"37525":3094,"37526":0,"37527":0,"37528":0,"37529":416,"37530":-1,"37531":-1,"37532":0,"37533":2010,"37534":0,"37535":0,"37536":0,"37537":0,"37538":0,"37539":0,"37540":0,"37541":2475,"37542":28,"37543":40,"37544":-1,"37545":2279,"37546":-1,"37547":-1,"37548":478,"37549":0,"37550":0,"37551":0,"37552":134,"37553":0,"37554":-1,"37555":0,"37556":0,"37557":4049,"37558":0,"37559":0,"37560":-1,"37561":2833,"37562":2304,"37563":0,"37564":-1,"37565":3627,"37566":0,"37567":3468,"37568":-1,"37569":3144,"37570":-1,"37571":1871,"37572":-1,"37573":-1,"37574":0,"37575":-1,"37576":0,"37577":-1,"37578":0,"37579":0,"37580":0,"37581":-1,"37582":0,"37583":-1,"37584":0,"37585":0,"37586":0,"37587":0,"37588":0,"37589":-1,"37590":0,"37591":0,"37592":-1,"37593":3699,"37594":0,"37595":47,"37596":2277,"37597":0,"37598":0,"37599":3357,"37600":0,"37601":-1,"37602":0,"37603":3907,"37604":0,"37605":-1,"37606":-1,"37607":-1,"37608":-1,"37609":3784,"37610":-1,"37611":0,"37612":-1,"37613":3016,"37614":-1,"37615":-1,"37616":-1,"37617":0,"37618":3711,"37619":2118,"37620":0,"37621":2467,"37622":0,"37623":0,"37624":-1,"37625":388,"37626":0,"37627":2817,"37628":0,"37629":2250,"37630":-1,"37631":145,"37632":-1,"37633":0,"37634":0,"37635":0,"37636":0,"37637":0,"37638":3335,"37639":0,"37640":-1,"37641":0,"37642":0,"37643":-1,"37644":-1,"37645":0,"37646":0,"37647":-1,"37648":3833,"37649":0,"37650":-1,"37651":-1,"37652":0,"37653":-1,"37654":0,"37655":2393,"37656":0,"37657":0,"37658":-1,"37659":-1,"37660":-1,"37661":3242,"37662":1869,"37663":0,"37664":0,"37665":3715,"37666":0,"37667":3871,"37668":3868,"37669":0,"37670":2813,"37671":1818,"37672":4017,"37673":2775,"37674":2778,"37675":-1,"37676":2096,"37677":2331,"37678":4021,"37679":0,"37680":0,"37681":2422,"37682":0,"37683":0,"37684":0,"37685":3539,"37686":-1,"37687":-1,"37688":-1,"37689":-1,"37690":-1,"37691":0,"37692":2920,"37693":47,"37694":110,"37695":-1,"37696":-1,"37697":-1,"37698":0,"37699":0,"37700":0,"37701":0,"37702":-1,"37703":3197,"37704":0,"37705":2405,"37706":0,"37707":-1,"37708":2888,"37709":-1,"37710":2965,"37711":-1,"37712":0,"37713":-1,"37714":2468,"37715":0,"37716":0,"37717":0,"37718":1783,"37719":0,"37720":3512,"37721":0,"37722":0,"37723":0,"37724":0,"37725":0,"37726":0,"37727":1895,"37728":-1,"37729":2116,"37730":0,"37731":4044,"37732":3244,"37733":3983,"37734":0,"37735":0,"37736":0,"37737":0,"37738":0,"37739":-1,"37740":2395,"37741":-1,"37742":0,"37743":0,"37744":0,"37745":3258,"37746":0,"37747":0,"37748":170,"37749":0,"37750":3175,"37751":-1,"37752":3747,"37753":-1,"37754":2526,"37755":2352,"37756":0,"37757":-1,"37758":0,"37759":0,"37760":0,"37761":1987,"37762":0,"37763":0,"37764":0,"37765":0,"37766":2157,"37767":0,"37768":0,"37769":0,"37770":0,"37771":2415,"37772":364,"37773":0,"37774":0,"37775":0,"37776":0,"37777":0,"37778":0,"37779":0,"37780":0,"37781":-1,"37782":-1,"37783":-1,"37784":0,"37785":0,"37786":67,"37787":0,"37788":1831,"37789":2289,"37790":0,"37791":-1,"37792":0,"37793":0,"37794":-1,"37795":0,"37796":0,"37797":-1,"37798":-1,"37799":2815,"37800":-1,"37801":-1,"37802":108,"37803":294,"37804":-1,"37805":0,"37806":0,"37807":0,"37808":-1,"37809":0,"37810":2708,"37811":-1,"37812":-1,"37813":0,"37814":0,"37815":0,"37816":0,"37817":0,"37818":-1,"37819":-1,"37820":0,"37821":2376,"37822":0,"37823":-1,"37824":0,"37825":-1,"37826":0,"37827":0,"37828":0,"37829":-1,"37830":0,"37831":1938,"37832":0,"37833":3944,"37834":-1,"37835":3693,"37836":0,"37837":1899,"37838":3302,"37839":136,"37840":-1,"37841":2464,"37842":-1,"37843":3593,"37844":0,"37845":80,"37846":-1,"37847":3681,"37848":3379,"37849":-1,"37850":-1,"37851":-1,"37852":0,"37853":0,"37854":0,"37855":0,"37856":0,"37857":0,"37858":0,"37859":0,"37860":-1,"37861":0,"37862":0,"37863":-1,"37864":0,"37865":0,"37866":3015,"37867":0,"37868":0,"37869":0,"37870":3878,"37871":0,"37872":-1,"37873":0,"37874":-1,"37875":0,"37876":-1,"37877":0,"37878":3587,"37879":-1,"37880":0,"37881":1928,"37882":4012,"37883":2096,"37884":0,"37885":0,"37886":-1,"37887":3084,"37888":-1,"37889":0,"37890":2797,"37891":0,"37892":0,"37893":-1,"37894":0,"37895":-1,"37896":-1,"37897":2104,"37898":3607,"37899":2771,"37900":0,"37901":3176,"37902":0,"37903":0,"37904":0,"37905":0,"37906":0,"37907":0,"37908":0,"37909":2585,"37910":0,"37911":0,"37912":3574,"37913":-1,"37914":0,"37915":-1,"37916":4055,"37917":0,"37918":3064,"37919":2724,"37920":0,"37921":0,"37922":2014,"37923":0,"37924":3028,"37925":3443,"37926":0,"37927":-1,"37928":-1,"37929":-1,"37930":0,"37931":-1,"37932":0,"37933":2670,"37934":2331,"37935":0,"37936":-1,"37937":3965,"37938":3262,"37939":3541,"37940":0,"37941":0,"37942":0,"37943":-1,"37944":0,"37945":0,"37946":0,"37947":2253,"37948":1910,"37949":0,"37950":-1,"37951":2851,"37952":-1,"37953":3456,"37954":3126,"37955":12,"37956":-1,"37957":2177,"37958":0,"37959":0,"37960":-1,"37961":-1,"37962":-1,"37963":-1,"37964":-1,"37965":0,"37966":163,"37967":0,"37968":0,"37969":0,"37970":0,"37971":0,"37972":-1,"37973":0,"37974":2404,"37975":-1,"37976":0,"37977":0,"37978":0,"37979":0,"37980":2531,"37981":0,"37982":3268,"37983":2828,"37984":-1,"37985":-1,"37986":0,"37987":-1,"37988":3716,"37989":0,"37990":226,"37991":-1,"37992":222,"37993":-1,"37994":0,"37995":0,"37996":-1,"37997":-1,"37998":204,"37999":3611,"38000":0,"38001":3103,"38002":0,"38003":3269,"38004":0,"38005":0,"38006":3854,"38007":2961,"38008":1958,"38009":0,"38010":2442,"38011":-1,"38012":0,"38013":-1,"38014":3772,"38015":0,"38016":-1,"38017":0,"38018":-1,"38019":0,"38020":0,"38021":0,"38022":-1,"38023":2697,"38024":-1,"38025":-1,"38026":0,"38027":0,"38028":4014,"38029":0,"38030":0,"38031":-1,"38032":-1,"38033":2208,"38034":18,"38035":-1,"38036":0,"38037":0,"38038":0,"38039":0,"38040":0,"38041":-1,"38042":-1,"38043":0,"38044":0,"38045":-1,"38046":0,"38047":0,"38048":0,"38049":-1,"38050":-1,"38051":0,"38052":3945,"38053":0,"38054":0,"38055":0,"38056":0,"38057":-1,"38058":-1,"38059":-1,"38060":-1,"38061":2370,"38062":0,"38063":3873,"38064":-1,"38065":-1,"38066":0,"38067":-1,"38068":0,"38069":0,"38070":3519,"38071":2528,"38072":-1,"38073":-1,"38074":3158,"38075":0,"38076":-1,"38077":0,"38078":2018,"38079":0,"38080":-1,"38081":0,"38082":-1,"38083":2537,"38084":-1,"38085":0,"38086":2662,"38087":-1,"38088":2778,"38089":0,"38090":-1,"38091":2381,"38092":0,"38093":2035,"38094":-1,"38095":-1,"38096":0,"38097":2029,"38098":-1,"38099":0,"38100":2942,"38101":0,"38102":3031,"38103":0,"38104":-1,"38105":-1,"38106":3779,"38107":0,"38108":3206,"38109":0,"38110":0,"38111":-1,"38112":0,"38113":-1,"38114":0,"38115":0,"38116":385,"38117":0,"38118":2122,"38119":0,"38120":0,"38121":2495,"38122":0,"38123":-1,"38124":-1,"38125":0,"38126":0,"38127":-1,"38128":3173,"38129":4025,"38130":-1,"38131":-1,"38132":0,"38133":386,"38134":-1,"38135":-1,"38136":3247,"38137":0,"38138":0,"38139":-1,"38140":-1,"38141":0,"38142":-1,"38143":0,"38144":0,"38145":2215,"38146":-1,"38147":2037,"38148":0,"38149":0,"38150":-1,"38151":-1,"38152":-1,"38153":0,"38154":2488,"38155":-1,"38156":0,"38157":3062,"38158":-1,"38159":-1,"38160":0,"38161":-1,"38162":0,"38163":0,"38164":0,"38165":-1,"38166":-1,"38167":0,"38168":2497,"38169":0,"38170":-1,"38171":2789,"38172":0,"38173":3887,"38174":2539,"38175":0,"38176":0,"38177":-1,"38178":0,"38179":0,"38180":0,"38181":0,"38182":0,"38183":146,"38184":-1,"38185":2097,"38186":0,"38187":0,"38188":-1,"38189":3027,"38190":0,"38191":0,"38192":0,"38193":0,"38194":0,"38195":2270,"38196":2749,"38197":2860,"38198":394,"38199":0,"38200":3097,"38201":-1,"38202":0,"38203":0,"38204":0,"38205":-1,"38206":-1,"38207":0,"38208":2514,"38209":1882,"38210":3523,"38211":3114,"38212":-1,"38213":-1,"38214":0,"38215":0,"38216":0,"38217":3391,"38218":0,"38219":0,"38220":3199,"38221":0,"38222":-1,"38223":2692,"38224":348,"38225":0,"38226":-1,"38227":0,"38228":2750,"38229":2545,"38230":373,"38231":-1,"38232":0,"38233":1810,"38234":-1,"38235":460,"38236":0,"38237":-1,"38238":0,"38239":0,"38240":-1,"38241":1900,"38242":-1,"38243":0,"38244":-1,"38245":-1,"38246":-1,"38247":-1,"38248":0,"38249":0,"38250":-1,"38251":0,"38252":-1,"38253":3606,"38254":3448,"38255":2743,"38256":1931,"38257":0,"38258":0,"38259":0,"38260":0,"38261":-1,"38262":0,"38263":0,"38264":0,"38265":-1,"38266":1971,"38267":3909,"38268":3742,"38269":0,"38270":0,"38271":-1,"38272":0,"38273":0,"38274":0,"38275":-1,"38276":-1,"38277":0,"38278":2557,"38279":-1,"38280":2,"38281":0,"38282":-1,"38283":0,"38284":2388,"38285":0,"38286":-1,"38287":2001,"38288":2063,"38289":3404,"38290":0,"38291":0,"38292":43,"38293":0,"38294":-1,"38295":0,"38296":-1,"38297":0,"38298":0,"38299":0,"38300":2621,"38301":0,"38302":3335,"38303":0,"38304":401,"38305":-1,"38306":0,"38307":1905,"38308":0,"38309":2393,"38310":-1,"38311":-1,"38312":3100,"38313":0,"38314":-1,"38315":0,"38316":0,"38317":0,"38318":-1,"38319":-1,"38320":-1,"38321":2332,"38322":119,"38323":-1,"38324":484,"38325":0,"38326":-1,"38327":0,"38328":-1,"38329":0,"38330":0,"38331":-1,"38332":0,"38333":-1,"38334":-1,"38335":3848,"38336":3469,"38337":0,"38338":-1,"38339":-1,"38340":3293,"38341":0,"38342":-1,"38343":2883,"38344":-1,"38345":0,"38346":-1,"38347":4043,"38348":289,"38349":0,"38350":2130,"38351":394,"38352":-1,"38353":3323,"38354":0,"38355":0,"38356":489,"38357":0,"38358":-1,"38359":3867,"38360":3795,"38361":0,"38362":0,"38363":-1,"38364":0,"38365":0,"38366":0,"38367":0,"38368":3660,"38369":0,"38370":2853,"38371":2300,"38372":3231,"38373":0,"38374":2855,"38375":0,"38376":-1,"38377":0,"38378":0,"38379":0,"38380":0,"38381":3043,"38382":-1,"38383":0,"38384":-1,"38385":0,"38386":0,"38387":386,"38388":-1,"38389":-1,"38390":-1,"38391":276,"38392":0,"38393":1883,"38394":3359,"38395":0,"38396":-1,"38397":0,"38398":0,"38399":2088,"38400":0,"38401":-1,"38402":2959,"38403":0,"38404":3189,"38405":-1,"38406":-1,"38407":-1,"38408":0,"38409":0,"38410":-1,"38411":-1,"38412":0,"38413":1921,"38414":-1,"38415":0,"38416":3300,"38417":3625,"38418":1859,"38419":0,"38420":0,"38421":0,"38422":0,"38423":0,"38424":0,"38425":0,"38426":0,"38427":0,"38428":-1,"38429":-1,"38430":-1,"38431":-1,"38432":-1,"38433":0,"38434":-1,"38435":-1,"38436":0,"38437":3316,"38438":253,"38439":0,"38440":-1,"38441":4047,"38442":13,"38443":-1,"38444":-1,"38445":0,"38446":-1,"38447":0,"38448":0,"38449":0,"38450":0,"38451":0,"38452":2037,"38453":-1,"38454":-1,"38455":-1,"38456":0,"38457":0,"38458":3334,"38459":0,"38460":-1,"38461":2994,"38462":-1,"38463":0,"38464":3763,"38465":0,"38466":-1,"38467":0,"38468":0,"38469":-1,"38470":-1,"38471":-1,"38472":0,"38473":-1,"38474":0,"38475":3805,"38476":-1,"38477":-1,"38478":0,"38479":2085,"38480":-1,"38481":-1,"38482":0,"38483":2682,"38484":0,"38485":3776,"38486":-1,"38487":2365,"38488":0,"38489":61,"38490":0,"38491":0,"38492":-1,"38493":3068,"38494":0,"38495":2496,"38496":0,"38497":2756,"38498":2346,"38499":-1,"38500":325,"38501":2546,"38502":0,"38503":-1,"38504":0,"38505":2508,"38506":1997,"38507":-1,"38508":0,"38509":0,"38510":3579,"38511":0,"38512":-1,"38513":256,"38514":0,"38515":0,"38516":0,"38517":0,"38518":-1,"38519":0,"38520":0,"38521":-1,"38522":502,"38523":0,"38524":2228,"38525":-1,"38526":0,"38527":2815,"38528":0,"38529":-1,"38530":0,"38531":0,"38532":-1,"38533":-1,"38534":0,"38535":0,"38536":0,"38537":-1,"38538":2080,"38539":3945,"38540":0,"38541":-1,"38542":-1,"38543":3462,"38544":0,"38545":0,"38546":0,"38547":0,"38548":25,"38549":0,"38550":3278,"38551":0,"38552":0,"38553":-1,"38554":-1,"38555":327,"38556":3206,"38557":0,"38558":0,"38559":-1,"38560":0,"38561":-1,"38562":-1,"38563":-1,"38564":-1,"38565":0,"38566":2476,"38567":0,"38568":-1,"38569":0,"38570":-1,"38571":502,"38572":0,"38573":0,"38574":0,"38575":-1,"38576":0,"38577":0,"38578":0,"38579":-1,"38580":0,"38581":0,"38582":0,"38583":3068,"38584":0,"38585":0,"38586":0,"38587":0,"38588":0,"38589":0,"38590":0,"38591":-1,"38592":2269,"38593":2766,"38594":0,"38595":1889,"38596":0,"38597":-1,"38598":2823,"38599":0,"38600":0,"38601":-1,"38602":3277,"38603":-1,"38604":0,"38605":0,"38606":0,"38607":-1,"38608":0,"38609":0,"38610":0,"38611":0,"38612":-1,"38613":0,"38614":3696,"38615":-1,"38616":-1,"38617":-1,"38618":0,"38619":2659,"38620":0,"38621":-1,"38622":0,"38623":329,"38624":0,"38625":123,"38626":2789,"38627":0,"38628":0,"38629":0,"38630":333,"38631":-1,"38632":0,"38633":-1,"38634":0,"38635":0,"38636":-1,"38637":-1,"38638":0,"38639":0,"38640":0,"38641":-1,"38642":0,"38643":3594,"38644":0,"38645":0,"38646":-1,"38647":-1,"38648":0,"38649":-1,"38650":0,"38651":-1,"38652":0,"38653":-1,"38654":3063,"38655":0,"38656":0,"38657":2604,"38658":-1,"38659":-1,"38660":-1,"38661":-1,"38662":0,"38663":3914,"38664":2162,"38665":4008,"38666":0,"38667":0,"38668":-1,"38669":0,"38670":0,"38671":-1,"38672":0,"38673":1987,"38674":0,"38675":0,"38676":3115,"38677":0,"38678":0,"38679":0,"38680":0,"38681":-1,"38682":2472,"38683":3138,"38684":-1,"38685":-1,"38686":2736,"38687":0,"38688":0,"38689":-1,"38690":-1,"38691":3090,"38692":0,"38693":0,"38694":0,"38695":0,"38696":-1,"38697":-1,"38698":-1,"38699":0,"38700":1901,"38701":3746,"38702":-1,"38703":0,"38704":2039,"38705":2027,"38706":3432,"38707":2214,"38708":-1,"38709":-1,"38710":2497,"38711":3245,"38712":50,"38713":-1,"38714":-1,"38715":0,"38716":0,"38717":2860,"38718":0,"38719":0,"38720":0,"38721":-1,"38722":0,"38723":0,"38724":2339,"38725":0,"38726":2054,"38727":0,"38728":-1,"38729":0,"38730":3616,"38731":0,"38732":1934,"38733":0,"38734":-1,"38735":0,"38736":2383,"38737":0,"38738":115,"38739":0,"38740":0,"38741":-1,"38742":0,"38743":1827,"38744":-1,"38745":3153,"38746":0,"38747":-1,"38748":-1,"38749":0,"38750":0,"38751":-1,"38752":3826,"38753":0,"38754":0,"38755":2994,"38756":0,"38757":-1,"38758":0,"38759":2766,"38760":-1,"38761":0,"38762":3764,"38763":0,"38764":-1,"38765":-1,"38766":4000,"38767":-1,"38768":0,"38769":0,"38770":-1,"38771":0,"38772":0,"38773":0,"38774":0,"38775":2308,"38776":-1,"38777":3706,"38778":0,"38779":126,"38780":-1,"38781":-1,"38782":0,"38783":2155,"38784":-1,"38785":0,"38786":0,"38787":0,"38788":0,"38789":-1,"38790":0,"38791":-1,"38792":2288,"38793":-1,"38794":2913,"38795":3567,"38796":-1,"38797":0,"38798":0,"38799":0,"38800":0,"38801":0,"38802":-1,"38803":3304,"38804":1851,"38805":3520,"38806":0,"38807":0,"38808":-1,"38809":0,"38810":-1,"38811":0,"38812":-1,"38813":0,"38814":0,"38815":3447,"38816":0,"38817":-1,"38818":2753,"38819":0,"38820":0,"38821":-1,"38822":0,"38823":0,"38824":0,"38825":3619,"38826":0,"38827":-1,"38828":-1,"38829":-1,"38830":-1,"38831":0,"38832":3359,"38833":0,"38834":3435,"38835":0,"38836":438,"38837":2520,"38838":516,"38839":2326,"38840":0,"38841":0,"38842":4044,"38843":3309,"38844":2541,"38845":3304,"38846":2739,"38847":2978,"38848":0,"38849":2331,"38850":0,"38851":0,"38852":0,"38853":-1,"38854":0,"38855":0,"38856":-1,"38857":1929,"38858":2326,"38859":0,"38860":-1,"38861":3879,"38862":0,"38863":0,"38864":-1,"38865":0,"38866":-1,"38867":0,"38868":0,"38869":2550,"38870":0,"38871":2408,"38872":0,"38873":2126,"38874":-1,"38875":0,"38876":0,"38877":-1,"38878":0,"38879":-1,"38880":3347,"38881":2414,"38882":-1,"38883":2549,"38884":0,"38885":0,"38886":3083,"38887":-1,"38888":0,"38889":0,"38890":3909,"38891":2790,"38892":0,"38893":0,"38894":0,"38895":0,"38896":0,"38897":-1,"38898":3640,"38899":-1,"38900":0,"38901":0,"38902":-1,"38903":0,"38904":3954,"38905":3743,"38906":2478,"38907":-1,"38908":0,"38909":0,"38910":-1,"38911":274,"38912":-1,"38913":0,"38914":0,"38915":0,"38916":2485,"38917":0,"38918":0,"38919":0,"38920":0,"38921":0,"38922":0,"38923":-1,"38924":3464,"38925":-1,"38926":0,"38927":145,"38928":3190,"38929":-1,"38930":0,"38931":-1,"38932":0,"38933":-1,"38934":0,"38935":3141,"38936":-1,"38937":0,"38938":0,"38939":0,"38940":0,"38941":2791,"38942":0,"38943":3805,"38944":0,"38945":2059,"38946":0,"38947":0,"38948":2732,"38949":-1,"38950":-1,"38951":-1,"38952":0,"38953":0,"38954":-1,"38955":-1,"38956":3957,"38957":0,"38958":0,"38959":3944,"38960":-1,"38961":0,"38962":2927,"38963":2883,"38964":0,"38965":0,"38966":2005,"38967":0,"38968":0,"38969":2202,"38970":-1,"38971":0,"38972":0,"38973":0,"38974":0,"38975":-1,"38976":0,"38977":0,"38978":0,"38979":0,"38980":0,"38981":0,"38982":-1,"38983":42,"38984":0,"38985":2984,"38986":1839,"38987":0,"38988":-1,"38989":0,"38990":-1,"38991":3821,"38992":-1,"38993":1817,"38994":0,"38995":3951,"38996":364,"38997":-1,"38998":-1,"38999":-1,"39000":0,"39001":-1,"39002":2967,"39003":-1,"39004":-1,"39005":-1,"39006":2350,"39007":-1,"39008":0,"39009":0,"39010":0,"39011":0,"39012":0,"39013":-1,"39014":-1,"39015":-1,"39016":0,"39017":0,"39018":0,"39019":0,"39020":0,"39021":0,"39022":0,"39023":0,"39024":54,"39025":3634,"39026":0,"39027":0,"39028":0,"39029":-1,"39030":2,"39031":0,"39032":-1,"39033":0,"39034":2973,"39035":0,"39036":3883,"39037":0,"39038":-1,"39039":0,"39040":0,"39041":-1,"39042":0,"39043":-1,"39044":-1,"39045":2537,"39046":0,"39047":0,"39048":-1,"39049":3129,"39050":-1,"39051":-1,"39052":0,"39053":2390,"39054":2498,"39055":0,"39056":-1,"39057":-1,"39058":2910,"39059":3687,"39060":0,"39061":-1,"39062":0,"39063":0,"39064":2870,"39065":3138,"39066":0,"39067":0,"39068":-1,"39069":0,"39070":0,"39071":0,"39072":0,"39073":-1,"39074":0,"39075":-1,"39076":0,"39077":-1,"39078":-1,"39079":-1,"39080":0,"39081":3207,"39082":0,"39083":0,"39084":0,"39085":0,"39086":2231,"39087":-1,"39088":1996,"39089":0,"39090":-1,"39091":-1,"39092":0,"39093":0,"39094":-1,"39095":455,"39096":0,"39097":2165,"39098":2096,"39099":3826,"39100":0,"39101":-1,"39102":0,"39103":-1,"39104":0,"39105":501,"39106":0,"39107":0,"39108":0,"39109":0,"39110":0,"39111":0,"39112":0,"39113":-1,"39114":2240,"39115":0,"39116":4052,"39117":2508,"39118":3320,"39119":3910,"39120":0,"39121":3657,"39122":0,"39123":0,"39124":0,"39125":-1,"39126":-1,"39127":3773,"39128":0,"39129":-1,"39130":-1,"39131":0,"39132":3245,"39133":473,"39134":1960,"39135":-1,"39136":2198,"39137":-1,"39138":2508,"39139":494,"39140":2286,"39141":0,"39142":0,"39143":0,"39144":-1,"39145":1978,"39146":-1,"39147":0,"39148":3254,"39149":2514,"39150":-1,"39151":3626,"39152":-1,"39153":-1,"39154":0,"39155":3277,"39156":0,"39157":0,"39158":3971,"39159":0,"39160":2548,"39161":2303,"39162":0,"39163":-1,"39164":0,"39165":0,"39166":0,"39167":0,"39168":0,"39169":0,"39170":-1,"39171":-1,"39172":0,"39173":0,"39174":0,"39175":3974,"39176":0,"39177":0,"39178":3560,"39179":2912,"39180":-1,"39181":-1,"39182":2447,"39183":-1,"39184":2641,"39185":1936,"39186":3590,"39187":-1,"39188":0,"39189":-1,"39190":0,"39191":0,"39192":0,"39193":0,"39194":0,"39195":-1,"39196":3833,"39197":-1,"39198":3178,"39199":-1,"39200":0,"39201":3963,"39202":0,"39203":-1,"39204":0,"39205":3480,"39206":0,"39207":0,"39208":0,"39209":3094,"39210":3584,"39211":2562,"39212":3805,"39213":-1,"39214":3712,"39215":-1,"39216":-1,"39217":3046,"39218":0,"39219":0,"39220":0,"39221":0,"39222":0,"39223":0,"39224":0,"39225":0,"39226":0,"39227":1787,"39228":-1,"39229":0,"39230":-1,"39231":3064,"39232":-1,"39233":0,"39234":0,"39235":3286,"39236":-1,"39237":0,"39238":0,"39239":0,"39240":-1,"39241":-1,"39242":-1,"39243":-1,"39244":-1,"39245":-1,"39246":-1,"39247":-1,"39248":0,"39249":0,"39250":-1,"39251":0,"39252":-1,"39253":1866,"39254":0,"39255":0,"39256":0,"39257":3524,"39258":3466,"39259":0,"39260":0,"39261":3048,"39262":0,"39263":-1,"39264":3165,"39265":-1,"39266":0,"39267":3299,"39268":1869,"39269":0,"39270":0,"39271":32,"39272":0,"39273":3987,"39274":3772,"39275":3832,"39276":-1,"39277":-1,"39278":-1,"39279":0,"39280":0,"39281":0,"39282":2911,"39283":0,"39284":-1,"39285":-1,"39286":0,"39287":115,"39288":0,"39289":2256,"39290":-1,"39291":0,"39292":0,"39293":-1,"39294":-1,"39295":0,"39296":0,"39297":-1,"39298":0,"39299":0,"39300":0,"39301":2327,"39302":-1,"39303":-1,"39304":0,"39305":0,"39306":-1,"39307":-1,"39308":-1,"39309":0,"39310":0,"39311":0,"39312":114,"39313":-1,"39314":-1,"39315":-1,"39316":0,"39317":0,"39318":0,"39319":-1,"39320":-1,"39321":1973,"39322":0,"39323":-1,"39324":0,"39325":2526,"39326":0,"39327":-1,"39328":2868,"39329":-1,"39330":2617,"39331":0,"39332":-1,"39333":-1,"39334":0,"39335":0,"39336":-1,"39337":0,"39338":2679,"39339":-1,"39340":-1,"39341":2968,"39342":-1,"39343":0,"39344":2853,"39345":0,"39346":0,"39347":0,"39348":0,"39349":0,"39350":2540,"39351":0,"39352":0,"39353":-1,"39354":0,"39355":3079,"39356":0,"39357":-1,"39358":-1,"39359":2218,"39360":0,"39361":-1,"39362":2696,"39363":3287,"39364":0,"39365":0,"39366":0,"39367":-1,"39368":-1,"39369":0,"39370":0,"39371":-1,"39372":-1,"39373":3476,"39374":0,"39375":-1,"39376":-1,"39377":-1,"39378":-1,"39379":-1,"39380":-1,"39381":-1,"39382":0,"39383":2441,"39384":192,"39385":3591,"39386":73,"39387":0,"39388":3238,"39389":-1,"39390":-1,"39391":2912,"39392":-1,"39393":0,"39394":0,"39395":-1,"39396":0,"39397":-1,"39398":-1,"39399":-1,"39400":-1,"39401":0,"39402":0,"39403":3615,"39404":-1,"39405":-1,"39406":2472,"39407":3159,"39408":-1,"39409":-1,"39410":0,"39411":2371,"39412":-1,"39413":-1,"39414":0,"39415":0,"39416":0,"39417":0,"39418":0,"39419":-1,"39420":0,"39421":0,"39422":3150,"39423":0,"39424":3868,"39425":1867,"39426":2886,"39427":3285,"39428":0,"39429":-1,"39430":-1,"39431":-1,"39432":-1,"39433":141,"39434":-1,"39435":0,"39436":-1,"39437":2389,"39438":-1,"39439":-1,"39440":0,"39441":3274,"39442":-1,"39443":-1,"39444":-1,"39445":0,"39446":0,"39447":0,"39448":2464,"39449":-1,"39450":0,"39451":0,"39452":-1,"39453":2008,"39454":0,"39455":0,"39456":52,"39457":0,"39458":0,"39459":0,"39460":0,"39461":0,"39462":-1,"39463":0,"39464":-1,"39465":2114,"39466":0,"39467":-1,"39468":-1,"39469":4042,"39470":-1,"39471":-1,"39472":-1,"39473":3444,"39474":0,"39475":0,"39476":0,"39477":3480,"39478":-1,"39479":3421,"39480":-1,"39481":0,"39482":-1,"39483":-1,"39484":2639,"39485":-1,"39486":2472,"39487":2993,"39488":3875,"39489":3520,"39490":0,"39491":0,"39492":0,"39493":3636,"39494":0,"39495":2521,"39496":0,"39497":0,"39498":216,"39499":0,"39500":-1,"39501":-1,"39502":-1,"39503":0,"39504":-1,"39505":0,"39506":-1,"39507":0,"39508":-1,"39509":0,"39510":0,"39511":2173,"39512":0,"39513":-1,"39514":1959,"39515":2575,"39516":0,"39517":0,"39518":217,"39519":0,"39520":-1,"39521":-1,"39522":3966,"39523":2859,"39524":-1,"39525":3021,"39526":0,"39527":2002,"39528":0,"39529":-1,"39530":0,"39531":0,"39532":0,"39533":0,"39534":-1,"39535":0,"39536":3475,"39537":3112,"39538":-1,"39539":-1,"39540":-1,"39541":-1,"39542":0,"39543":0,"39544":2995,"39545":0,"39546":-1,"39547":0,"39548":-1,"39549":3429,"39550":0,"39551":2905,"39552":0,"39553":0,"39554":-1,"39555":0,"39556":2913,"39557":-1,"39558":0,"39559":2813,"39560":-1,"39561":0,"39562":3828,"39563":0,"39564":2961,"39565":-1,"39566":-1,"39567":1873,"39568":0,"39569":-1,"39570":-1,"39571":-1,"39572":2588,"39573":-1,"39574":-1,"39575":0,"39576":0,"39577":0,"39578":3747,"39579":0,"39580":2968,"39581":-1,"39582":-1,"39583":-1,"39584":0,"39585":0,"39586":-1,"39587":0,"39588":0,"39589":0,"39590":3471,"39591":-1,"39592":0,"39593":2802,"39594":-1,"39595":-1,"39596":-1,"39597":0,"39598":0,"39599":0,"39600":131,"39601":0,"39602":3523,"39603":0,"39604":0,"39605":-1,"39606":0,"39607":2367,"39608":-1,"39609":2017,"39610":0,"39611":-1,"39612":411,"39613":213,"39614":0,"39615":2848,"39616":-1,"39617":-1,"39618":2154,"39619":-1,"39620":-1,"39621":0,"39622":0,"39623":3162,"39624":2945,"39625":0,"39626":0,"39627":0,"39628":2480,"39629":0,"39630":2595,"39631":0,"39632":0,"39633":0,"39634":-1,"39635":-1,"39636":-1,"39637":-1,"39638":-1,"39639":-1,"39640":3176,"39641":0,"39642":0,"39643":-1,"39644":201,"39645":-1,"39646":0,"39647":0,"39648":-1,"39649":12,"39650":0,"39651":0,"39652":0,"39653":452,"39654":0,"39655":-1,"39656":0,"39657":0,"39658":-1,"39659":0,"39660":0,"39661":-1,"39662":-1,"39663":0,"39664":-1,"39665":0,"39666":0,"39667":3733,"39668":0,"39669":0,"39670":0,"39671":3411,"39672":-1,"39673":-1,"39674":2300,"39675":-1,"39676":0,"39677":-1,"39678":-1,"39679":2036,"39680":2387,"39681":-1,"39682":0,"39683":0,"39684":0,"39685":0,"39686":0,"39687":0,"39688":1886,"39689":3929,"39690":0,"39691":0,"39692":0,"39693":0,"39694":0,"39695":-1,"39696":0,"39697":0,"39698":0,"39699":2060,"39700":3368,"39701":-1,"39702":2714,"39703":2974,"39704":-1,"39705":0,"39706":-1,"39707":2049,"39708":-1,"39709":-1,"39710":0,"39711":-1,"39712":0,"39713":0,"39714":0,"39715":-1,"39716":2963,"39717":0,"39718":-1,"39719":0,"39720":1847,"39721":3829,"39722":0,"39723":1900,"39724":0,"39725":-1,"39726":0,"39727":0,"39728":-1,"39729":3353,"39730":0,"39731":2253,"39732":2809,"39733":-1,"39734":3932,"39735":0,"39736":3425,"39737":1808,"39738":1849,"39739":1889,"39740":3105,"39741":-1,"39742":-1,"39743":-1,"39744":-1,"39745":-1,"39746":-1,"39747":-1,"39748":0,"39749":0,"39750":0,"39751":0,"39752":-1,"39753":-1,"39754":0,"39755":0,"39756":0,"39757":0,"39758":0,"39759":0,"39760":3323,"39761":0,"39762":0,"39763":3732,"39764":0,"39765":0,"39766":-1,"39767":0,"39768":3976,"39769":0,"39770":0,"39771":-1,"39772":0,"39773":-1,"39774":3419,"39775":110,"39776":0,"39777":-1,"39778":0,"39779":-1,"39780":-1,"39781":-1,"39782":0,"39783":0,"39784":3496,"39785":0,"39786":-1,"39787":0,"39788":3073,"39789":-1,"39790":-1,"39791":0,"39792":-1,"39793":323,"39794":0,"39795":2437,"39796":-1,"39797":0,"39798":2890,"39799":0,"39800":0,"39801":3441,"39802":2872,"39803":-1,"39804":3146,"39805":0,"39806":-1,"39807":-1,"39808":-1,"39809":0,"39810":0,"39811":3258,"39812":-1,"39813":0,"39814":0,"39815":0,"39816":0,"39817":-1,"39818":418,"39819":0,"39820":1840,"39821":3312,"39822":0,"39823":0,"39824":4012,"39825":3788,"39826":0,"39827":-1,"39828":0,"39829":0,"39830":0,"39831":-1,"39832":3271,"39833":2411,"39834":0,"39835":1912,"39836":0,"39837":3755,"39838":3896,"39839":3199,"39840":0,"39841":4,"39842":0,"39843":-1,"39844":0,"39845":-1,"39846":0,"39847":-1,"39848":0,"39849":2496,"39850":-1,"39851":0,"39852":0,"39853":-1,"39854":1967,"39855":492,"39856":0,"39857":-1,"39858":3376,"39859":0,"39860":72,"39861":0,"39862":-1,"39863":-1,"39864":0,"39865":0,"39866":-1,"39867":-1,"39868":-1,"39869":0,"39870":0,"39871":2245,"39872":0,"39873":2429,"39874":-1,"39875":0,"39876":0,"39877":499,"39878":0,"39879":0,"39880":0,"39881":0,"39882":0,"39883":2835,"39884":-1,"39885":0,"39886":-1,"39887":0,"39888":0,"39889":-1,"39890":3069,"39891":3346,"39892":3562,"39893":3367,"39894":3605,"39895":-1,"39896":-1,"39897":0,"39898":0,"39899":0,"39900":2413,"39901":2809,"39902":-1,"39903":0,"39904":0,"39905":3099,"39906":-1,"39907":-1,"39908":-1,"39909":-1,"39910":0,"39911":0,"39912":0,"39913":3044,"39914":-1,"39915":0,"39916":2722,"39917":2841,"39918":-1,"39919":3301,"39920":0,"39921":-1,"39922":0,"39923":2268,"39924":0,"39925":-1,"39926":-1,"39927":0,"39928":0,"39929":-1,"39930":0,"39931":-1,"39932":2723,"39933":150,"39934":-1,"39935":-1,"39936":2065,"39937":0,"39938":0,"39939":2750,"39940":0,"39941":2296,"39942":0,"39943":1922,"39944":3373,"39945":0,"39946":0,"39947":0,"39948":-1,"39949":0,"39950":0,"39951":3964,"39952":-1,"39953":0,"39954":0,"39955":3627,"39956":1864,"39957":0,"39958":0,"39959":0,"39960":0,"39961":-1,"39962":0,"39963":0,"39964":-1,"39965":-1,"39966":-1,"39967":-1,"39968":0,"39969":276,"39970":0,"39971":0,"39972":-1,"39973":3669,"39974":0,"39975":0,"39976":0,"39977":0,"39978":0,"39979":0,"39980":2000,"39981":433,"39982":-1,"39983":1957,"39984":0,"39985":3087,"39986":1813,"39987":0,"39988":-1,"39989":2854,"39990":3720,"39991":-1,"39992":0,"39993":2134,"39994":-1,"39995":0,"39996":3752,"39997":-1,"39998":-1,"39999":0,"40000":0,"40001":0,"40002":3694,"40003":2519,"40004":127,"40005":3809,"40006":-1,"40007":2320,"40008":0,"40009":3160,"40010":0,"40011":-1,"40012":3926,"40013":3634,"40014":0,"40015":0,"40016":-1,"40017":0,"40018":0,"40019":0,"40020":-1,"40021":0,"40022":265,"40023":0,"40024":2683,"40025":0,"40026":0,"40027":433,"40028":0,"40029":-1,"40030":-1,"40031":0,"40032":0,"40033":-1,"40034":0,"40035":0,"40036":0,"40037":-1,"40038":2758,"40039":0,"40040":0,"40041":3749,"40042":-1,"40043":3679,"40044":0,"40045":2761,"40046":-1,"40047":1859,"40048":0,"40049":78,"40050":0,"40051":-1,"40052":0,"40053":1950,"40054":0,"40055":0,"40056":0,"40057":-1,"40058":0,"40059":-1,"40060":0,"40061":0,"40062":0,"40063":3781,"40064":0,"40065":0,"40066":2582,"40067":0,"40068":0,"40069":3696,"40070":-1,"40071":0,"40072":3911,"40073":3343,"40074":0,"40075":0,"40076":-1,"40077":-1,"40078":3466,"40079":0,"40080":7,"40081":0,"40082":-1,"40083":-1,"40084":2574,"40085":0,"40086":-1,"40087":0,"40088":0,"40089":2565,"40090":2558,"40091":0,"40092":2730,"40093":0,"40094":0,"40095":3664,"40096":0,"40097":0,"40098":2898,"40099":1998,"40100":3410,"40101":-1,"40102":-1,"40103":-1,"40104":3705,"40105":3069,"40106":3205,"40107":0,"40108":-1,"40109":4023,"40110":-1,"40111":-1,"40112":426,"40113":0,"40114":0,"40115":0,"40116":0,"40117":0,"40118":2517,"40119":-1,"40120":2327,"40121":438,"40122":0,"40123":0,"40124":-1,"40125":-1,"40126":-1,"40127":0,"40128":0,"40129":0,"40130":2036,"40131":3154,"40132":0,"40133":0,"40134":3417,"40135":-1,"40136":-1,"40137":2840,"40138":0,"40139":0,"40140":-1,"40141":0,"40142":3935,"40143":1778,"40144":2006,"40145":0,"40146":0,"40147":-1,"40148":-1,"40149":4026,"40150":0,"40151":0,"40152":0,"40153":249,"40154":0,"40155":0,"40156":2865,"40157":0,"40158":0,"40159":-1,"40160":0,"40161":0,"40162":-1,"40163":0,"40164":2186,"40165":0,"40166":3793,"40167":0,"40168":-1,"40169":3209,"40170":365,"40171":0,"40172":2652,"40173":0,"40174":0,"40175":0,"40176":3167,"40177":3971,"40178":-1,"40179":0,"40180":0,"40181":-1,"40182":-1,"40183":-1,"40184":0,"40185":0,"40186":0,"40187":-1,"40188":0,"40189":0,"40190":-1,"40191":0,"40192":-1,"40193":0,"40194":0,"40195":0,"40196":2614,"40197":2630,"40198":0,"40199":3240,"40200":0,"40201":-1,"40202":-1,"40203":0,"40204":-1,"40205":1851,"40206":0,"40207":0,"40208":-1,"40209":3305,"40210":0,"40211":0,"40212":2562,"40213":-1,"40214":-1,"40215":0,"40216":3414,"40217":-1,"40218":2687,"40219":-1,"40220":-1,"40221":-1,"40222":-1,"40223":364,"40224":0,"40225":0,"40226":2217,"40227":-1,"40228":-1,"40229":0,"40230":494,"40231":-1,"40232":0,"40233":131,"40234":-1,"40235":0,"40236":0,"40237":0,"40238":0,"40239":-1,"40240":3709,"40241":0,"40242":-1,"40243":-1,"40244":0,"40245":0,"40246":-1,"40247":0,"40248":0,"40249":-1,"40250":-1,"40251":0,"40252":-1,"40253":0,"40254":3621,"40255":-1,"40256":-1,"40257":0,"40258":0,"40259":2435,"40260":3525,"40261":0,"40262":0,"40263":0,"40264":2538,"40265":0,"40266":-1,"40267":-1,"40268":-1,"40269":0,"40270":-1,"40271":3730,"40272":-1,"40273":-1,"40274":0,"40275":0,"40276":0,"40277":367,"40278":0,"40279":2985,"40280":-1,"40281":0,"40282":2713,"40283":-1,"40284":0,"40285":-1,"40286":2981,"40287":-1,"40288":0,"40289":-1,"40290":-1,"40291":0,"40292":0,"40293":0,"40294":-1,"40295":-1,"40296":0,"40297":0,"40298":-1,"40299":0,"40300":3930,"40301":0,"40302":0,"40303":4030,"40304":0,"40305":-1,"40306":0,"40307":-1,"40308":0,"40309":-1,"40310":2896,"40311":0,"40312":-1,"40313":0,"40314":0,"40315":-1,"40316":2688,"40317":-1,"40318":0,"40319":0,"40320":-1,"40321":0,"40322":-1,"40323":-1,"40324":0,"40325":2128,"40326":0,"40327":0,"40328":0,"40329":-1,"40330":0,"40331":-1,"40332":-1,"40333":-1,"40334":0,"40335":202,"40336":3340,"40337":3322,"40338":-1,"40339":0,"40340":0,"40341":-1,"40342":0,"40343":3223,"40344":0,"40345":-1,"40346":-1,"40347":-1,"40348":0,"40349":-1,"40350":3777,"40351":3199,"40352":3649,"40353":0,"40354":0,"40355":2864,"40356":0,"40357":-1,"40358":3824,"40359":0,"40360":-1,"40361":-1,"40362":0,"40363":0,"40364":-1,"40365":-1,"40366":0,"40367":0,"40368":-1,"40369":2981,"40370":0,"40371":0,"40372":-1,"40373":0,"40374":-1,"40375":0,"40376":1932,"40377":3596,"40378":0,"40379":0,"40380":0,"40381":-1,"40382":-1,"40383":-1,"40384":0,"40385":0,"40386":-1,"40387":-1,"40388":0,"40389":0,"40390":3840,"40391":0,"40392":0,"40393":3028,"40394":0,"40395":-1,"40396":0,"40397":198,"40398":0,"40399":222,"40400":0,"40401":3425,"40402":0,"40403":0,"40404":0,"40405":3412,"40406":1872,"40407":0,"40408":0,"40409":0,"40410":0,"40411":0,"40412":3751,"40413":0,"40414":3364,"40415":2953,"40416":-1,"40417":0,"40418":397,"40419":100,"40420":0,"40421":3335,"40422":320,"40423":-1,"40424":3887,"40425":3565,"40426":2098,"40427":2199,"40428":0,"40429":3248,"40430":-1,"40431":0,"40432":0,"40433":-1,"40434":-1,"40435":2963,"40436":2309,"40437":0,"40438":-1,"40439":3677,"40440":-1,"40441":-1,"40442":0,"40443":0,"40444":0,"40445":0,"40446":3485,"40447":0,"40448":-1,"40449":0,"40450":0,"40451":0,"40452":-1,"40453":0,"40454":2284,"40455":-1,"40456":-1,"40457":3661,"40458":0,"40459":0,"40460":0,"40461":0,"40462":-1,"40463":-1,"40464":-1,"40465":0,"40466":2034,"40467":0,"40468":0,"40469":0,"40470":0,"40471":-1,"40472":0,"40473":0,"40474":0,"40475":3012,"40476":0,"40477":0,"40478":0,"40479":-1,"40480":0,"40481":0,"40482":2225,"40483":0,"40484":3040,"40485":0,"40486":0,"40487":0,"40488":2695,"40489":0,"40490":0,"40491":-1,"40492":3266,"40493":-1,"40494":2750,"40495":3933,"40496":-1,"40497":240,"40498":2995,"40499":4005,"40500":0,"40501":313,"40502":0,"40503":-1,"40504":0,"40505":2918,"40506":-1,"40507":3217,"40508":0,"40509":2432,"40510":-1,"40511":-1,"40512":0,"40513":0,"40514":-1,"40515":0,"40516":0,"40517":3844,"40518":-1,"40519":-1,"40520":3224,"40521":-1,"40522":0,"40523":-1,"40524":0,"40525":0,"40526":0,"40527":-1,"40528":0,"40529":0,"40530":3784,"40531":0,"40532":-1,"40533":0,"40534":1983,"40535":0,"40536":0,"40537":0,"40538":1915,"40539":0,"40540":0,"40541":0,"40542":-1,"40543":2456,"40544":243,"40545":0,"40546":2673,"40547":-1,"40548":0,"40549":0,"40550":0,"40551":-1,"40552":3727,"40553":0,"40554":105,"40555":0,"40556":0,"40557":-1,"40558":-1,"40559":-1,"40560":3160,"40561":0,"40562":0,"40563":0,"40564":0,"40565":0,"40566":-1,"40567":-1,"40568":0,"40569":0,"40570":-1,"40571":0,"40572":-1,"40573":226,"40574":0,"40575":0,"40576":0,"40577":-1,"40578":0,"40579":0,"40580":3570,"40581":2273,"40582":-1,"40583":0,"40584":-1,"40585":0,"40586":-1,"40587":-1,"40588":0,"40589":-1,"40590":2508,"40591":0,"40592":2489,"40593":456,"40594":-1,"40595":-1,"40596":2618,"40597":-1,"40598":-1,"40599":-1,"40600":0,"40601":-1,"40602":-1,"40603":0,"40604":2560,"40605":0,"40606":-1,"40607":0,"40608":0,"40609":0,"40610":-1,"40611":0,"40612":227,"40613":0,"40614":0,"40615":0,"40616":3490,"40617":0,"40618":0,"40619":-1,"40620":0,"40621":0,"40622":-1,"40623":-1,"40624":2094,"40625":3176,"40626":0,"40627":2085,"40628":0,"40629":2719,"40630":0,"40631":-1,"40632":3421,"40633":0,"40634":0,"40635":-1,"40636":0,"40637":-1,"40638":-1,"40639":-1,"40640":-1,"40641":0,"40642":-1,"40643":3664,"40644":-1,"40645":0,"40646":-1,"40647":-1,"40648":2603,"40649":0,"40650":-1,"40651":-1,"40652":0,"40653":0,"40654":0,"40655":0,"40656":-1,"40657":0,"40658":-1,"40659":0,"40660":0,"40661":0,"40662":0,"40663":2080,"40664":0,"40665":-1,"40666":0,"40667":-1,"40668":0,"40669":-1,"40670":-1,"40671":2140,"40672":-1,"40673":0,"40674":0,"40675":3452,"40676":-1,"40677":0,"40678":2353,"40679":0,"40680":0,"40681":0,"40682":2807,"40683":3894,"40684":0,"40685":-1,"40686":0,"40687":0,"40688":0,"40689":0,"40690":0,"40691":0,"40692":0,"40693":-1,"40694":3273,"40695":0,"40696":0,"40697":3973,"40698":0,"40699":-1,"40700":0,"40701":-1,"40702":2166,"40703":2286,"40704":0,"40705":2628,"40706":0,"40707":-1,"40708":0,"40709":2708,"40710":501,"40711":2401,"40712":0,"40713":0,"40714":-1,"40715":-1,"40716":0,"40717":0,"40718":-1,"40719":0,"40720":0,"40721":-1,"40722":2168,"40723":0,"40724":0,"40725":-1,"40726":325,"40727":0,"40728":2378,"40729":0,"40730":3625,"40731":3837,"40732":2162,"40733":-1,"40734":-1,"40735":-1,"40736":2972,"40737":-1,"40738":-1,"40739":-1,"40740":0,"40741":0,"40742":0,"40743":0,"40744":-1,"40745":0,"40746":0,"40747":1960,"40748":0,"40749":-1,"40750":0,"40751":0,"40752":2605,"40753":2128,"40754":0,"40755":0,"40756":0,"40757":0,"40758":-1,"40759":0,"40760":0,"40761":0,"40762":-1,"40763":2381,"40764":201,"40765":0,"40766":0,"40767":0,"40768":-1,"40769":3212,"40770":3708,"40771":-1,"40772":0,"40773":0,"40774":3077,"40775":-1,"40776":-1,"40777":476,"40778":0,"40779":0,"40780":3730,"40781":0,"40782":-1,"40783":246,"40784":-1,"40785":0,"40786":2202,"40787":3908,"40788":2644,"40789":-1,"40790":0,"40791":139,"40792":-1,"40793":0,"40794":0,"40795":0,"40796":0,"40797":0,"40798":0,"40799":2954,"40800":0,"40801":0,"40802":0,"40803":0,"40804":-1,"40805":-1,"40806":-1,"40807":2835,"40808":0,"40809":3708,"40810":-1,"40811":-1,"40812":3899,"40813":3240,"40814":-1,"40815":196,"40816":3499,"40817":0,"40818":0,"40819":0,"40820":0,"40821":3702,"40822":0,"40823":2506,"40824":0,"40825":0,"40826":0,"40827":0,"40828":0,"40829":0,"40830":-1,"40831":-1,"40832":0,"40833":0,"40834":0,"40835":1943,"40836":-1,"40837":0,"40838":3232,"40839":0,"40840":-1,"40841":-1,"40842":3642,"40843":0,"40844":0,"40845":-1,"40846":0,"40847":-1,"40848":0,"40849":0,"40850":0,"40851":0,"40852":-1,"40853":0,"40854":0,"40855":2492,"40856":-1,"40857":0,"40858":0,"40859":0,"40860":-1,"40861":0,"40862":0,"40863":-1,"40864":-1,"40865":-1,"40866":0,"40867":-1,"40868":1788,"40869":0,"40870":0,"40871":0,"40872":0,"40873":-1,"40874":-1,"40875":0,"40876":-1,"40877":-1,"40878":0,"40879":0,"40880":0,"40881":1858,"40882":-1,"40883":-1,"40884":3439,"40885":3205,"40886":2313,"40887":2238,"40888":512,"40889":0,"40890":-1,"40891":-1,"40892":2393,"40893":3903,"40894":0,"40895":0,"40896":-1,"40897":-1,"40898":3788,"40899":0,"40900":-1,"40901":2576,"40902":-1,"40903":0,"40904":0,"40905":-1,"40906":-1,"40907":0,"40908":0,"40909":3476,"40910":0,"40911":0,"40912":-1,"40913":0,"40914":-1,"40915":-1,"40916":0,"40917":0,"40918":-1,"40919":2389,"40920":0,"40921":0,"40922":-1,"40923":0,"40924":100,"40925":0,"40926":-1,"40927":-1,"40928":-1,"40929":0,"40930":2210,"40931":-1,"40932":1781,"40933":0,"40934":0,"40935":0,"40936":0,"40937":0,"40938":0,"40939":460,"40940":0,"40941":0,"40942":3512,"40943":0,"40944":-1,"40945":0,"40946":3996,"40947":-1,"40948":0,"40949":0,"40950":-1,"40951":-1,"40952":3292,"40953":-1,"40954":-1,"40955":-1,"40956":0,"40957":-1,"40958":0,"40959":3686,"40960":2662,"40961":0,"40962":0,"40963":2171,"40964":0,"40965":2174,"40966":0,"40967":0,"40968":-1,"40969":0,"40970":-1,"40971":0,"40972":-1,"40973":0,"40974":1820,"40975":-1,"40976":0,"40977":0,"40978":-1,"40979":0,"40980":-1,"40981":-1,"40982":0,"40983":0,"40984":0,"40985":3848,"40986":0,"40987":0,"40988":2281,"40989":0,"40990":-1,"40991":0,"40992":0,"40993":-1,"40994":-1,"40995":0,"40996":0,"40997":-1,"40998":0,"40999":-1,"41000":-1,"41001":-1,"41002":2255,"41003":0,"41004":0,"41005":-1,"41006":0,"41007":0,"41008":-1,"41009":0,"41010":3569,"41011":-1,"41012":0,"41013":-1,"41014":-1,"41015":1889,"41016":0,"41017":-1,"41018":-1,"41019":-1,"41020":0,"41021":132,"41022":0,"41023":-1,"41024":-1,"41025":-1,"41026":-1,"41027":-1,"41028":3436,"41029":2745,"41030":-1,"41031":2258,"41032":2134,"41033":0,"41034":-1,"41035":0,"41036":0,"41037":2944,"41038":0,"41039":2706,"41040":0,"41041":0,"41042":3098,"41043":0,"41044":0,"41045":0,"41046":0,"41047":-1,"41048":0,"41049":0,"41050":0,"41051":-1,"41052":0,"41053":0,"41054":0,"41055":0,"41056":-1,"41057":-1,"41058":1841,"41059":3010,"41060":0,"41061":-1,"41062":-1,"41063":3737,"41064":0,"41065":1899,"41066":0,"41067":0,"41068":503,"41069":0,"41070":2187,"41071":-1,"41072":-1,"41073":1983,"41074":308,"41075":2409,"41076":0,"41077":325,"41078":159,"41079":0,"41080":0,"41081":0,"41082":95,"41083":-1,"41084":2420,"41085":-1,"41086":0,"41087":-1,"41088":0,"41089":3353,"41090":0,"41091":371,"41092":0,"41093":-1,"41094":-1,"41095":0,"41096":3026,"41097":0,"41098":3629,"41099":0,"41100":-1,"41101":-1,"41102":-1,"41103":0,"41104":0,"41105":-1,"41106":0,"41107":0,"41108":-1,"41109":3617,"41110":0,"41111":3561,"41112":2691,"41113":1793,"41114":0,"41115":0,"41116":35,"41117":3401,"41118":0,"41119":2418,"41120":0,"41121":0,"41122":-1,"41123":0,"41124":-1,"41125":0,"41126":0,"41127":0,"41128":0,"41129":0,"41130":0,"41131":0,"41132":0,"41133":3337,"41134":-1,"41135":-1,"41136":0,"41137":3691,"41138":3356,"41139":3216,"41140":0,"41141":1782,"41142":0,"41143":-1,"41144":282,"41145":0,"41146":0,"41147":41,"41148":-1,"41149":0,"41150":0,"41151":0,"41152":3768,"41153":-1,"41154":0,"41155":2366,"41156":1862,"41157":0,"41158":0,"41159":0,"41160":3209,"41161":-1,"41162":2943,"41163":255,"41164":0,"41165":-1,"41166":0,"41167":-1,"41168":2441,"41169":-1,"41170":2028,"41171":1855,"41172":461,"41173":0,"41174":2616,"41175":-1,"41176":2904,"41177":0,"41178":0,"41179":0,"41180":0,"41181":3858,"41182":0,"41183":0,"41184":-1,"41185":-1,"41186":-1,"41187":0,"41188":0,"41189":1797,"41190":3812,"41191":279,"41192":0,"41193":0,"41194":-1,"41195":-1,"41196":0,"41197":-1,"41198":0,"41199":-1,"41200":0,"41201":0,"41202":0,"41203":3879,"41204":142,"41205":0,"41206":2327,"41207":-1,"41208":2591,"41209":2577,"41210":0,"41211":0,"41212":0,"41213":0,"41214":-1,"41215":446,"41216":289,"41217":-1,"41218":126,"41219":0,"41220":2349,"41221":-1,"41222":-1,"41223":-1,"41224":-1,"41225":-1,"41226":-1,"41227":3401,"41228":2075,"41229":0,"41230":16,"41231":456,"41232":0,"41233":-1,"41234":0,"41235":-1,"41236":-1,"41237":0,"41238":-1,"41239":0,"41240":3691,"41241":3710,"41242":0,"41243":-1,"41244":0,"41245":2503,"41246":0,"41247":3243,"41248":0,"41249":3653,"41250":0,"41251":0,"41252":-1,"41253":-1,"41254":2317,"41255":0,"41256":0,"41257":-1,"41258":-1,"41259":0,"41260":2538,"41261":0,"41262":0,"41263":-1,"41264":0,"41265":0,"41266":2863,"41267":2369,"41268":-1,"41269":0,"41270":0,"41271":-1,"41272":3170,"41273":0,"41274":0,"41275":0,"41276":0,"41277":2670,"41278":0,"41279":0,"41280":3279,"41281":0,"41282":3752,"41283":3224,"41284":2527,"41285":2619,"41286":0,"41287":398,"41288":0,"41289":-1,"41290":-1,"41291":3208,"41292":-1,"41293":0,"41294":0,"41295":2658,"41296":-1,"41297":0,"41298":-1,"41299":0,"41300":3416,"41301":-1,"41302":0,"41303":346,"41304":0,"41305":-1,"41306":-1,"41307":0,"41308":2641,"41309":-1,"41310":0,"41311":1990,"41312":-1,"41313":3133,"41314":2028,"41315":-1,"41316":-1,"41317":-1,"41318":-1,"41319":-1,"41320":3047,"41321":3526,"41322":-1,"41323":0,"41324":0,"41325":0,"41326":0,"41327":0,"41328":-1,"41329":0,"41330":0,"41331":-1,"41332":-1,"41333":0,"41334":0,"41335":3481,"41336":2820,"41337":-1,"41338":-1,"41339":1993,"41340":443,"41341":62,"41342":-1,"41343":2414,"41344":3629,"41345":2776,"41346":3730,"41347":-1,"41348":0,"41349":0,"41350":0,"41351":0,"41352":0,"41353":0,"41354":-1,"41355":0,"41356":2862,"41357":2742,"41358":-1,"41359":0,"41360":3397,"41361":0,"41362":-1,"41363":0,"41364":2601,"41365":0,"41366":0,"41367":0,"41368":-1,"41369":0,"41370":3520,"41371":-1,"41372":0,"41373":-1,"41374":2678,"41375":250,"41376":2279,"41377":2043,"41378":0,"41379":0,"41380":-1,"41381":0,"41382":-1,"41383":0,"41384":0,"41385":-1,"41386":-1,"41387":0,"41388":-1,"41389":0,"41390":0,"41391":-1,"41392":3746,"41393":1835,"41394":0,"41395":-1,"41396":0,"41397":2640,"41398":0,"41399":3789,"41400":-1,"41401":0,"41402":0,"41403":-1,"41404":-1,"41405":0,"41406":-1,"41407":-1,"41408":3033,"41409":0,"41410":0,"41411":0,"41412":0,"41413":0,"41414":2702,"41415":-1,"41416":-1,"41417":-1,"41418":4046,"41419":0,"41420":-1,"41421":0,"41422":0,"41423":1991,"41424":0,"41425":-1,"41426":-1,"41427":0,"41428":0,"41429":0,"41430":0,"41431":0,"41432":0,"41433":-1,"41434":0,"41435":-1,"41436":-1,"41437":0,"41438":0,"41439":-1,"41440":-1,"41441":3027,"41442":0,"41443":1894,"41444":2826,"41445":353,"41446":0,"41447":-1,"41448":0,"41449":0,"41450":0,"41451":-1,"41452":-1,"41453":0,"41454":131,"41455":0,"41456":-1,"41457":-1,"41458":3350,"41459":0,"41460":0,"41461":1882,"41462":-1,"41463":2798,"41464":0,"41465":0,"41466":0,"41467":-1,"41468":0,"41469":0,"41470":0,"41471":-1,"41472":0,"41473":2387,"41474":-1,"41475":0,"41476":0,"41477":3719,"41478":-1,"41479":-1,"41480":0,"41481":-1,"41482":508,"41483":0,"41484":3351,"41485":0,"41486":0,"41487":3004,"41488":-1,"41489":-1,"41490":3180,"41491":0,"41492":0,"41493":-1,"41494":-1,"41495":0,"41496":0,"41497":-1,"41498":0,"41499":-1,"41500":-1,"41501":0,"41502":2572,"41503":2590,"41504":0,"41505":0,"41506":3649,"41507":0,"41508":0,"41509":0,"41510":2458,"41511":-1,"41512":0,"41513":0,"41514":2276,"41515":0,"41516":0,"41517":-1,"41518":0,"41519":0,"41520":-1,"41521":3594,"41522":0,"41523":-1,"41524":0,"41525":0,"41526":0,"41527":-1,"41528":-1,"41529":0,"41530":2183,"41531":0,"41532":-1,"41533":3761,"41534":-1,"41535":-1,"41536":-1,"41537":0,"41538":0,"41539":0,"41540":2846,"41541":0,"41542":0,"41543":-1,"41544":2619,"41545":-1,"41546":0,"41547":-1,"41548":0,"41549":-1,"41550":3207,"41551":1920,"41552":2086,"41553":-1,"41554":0,"41555":0,"41556":0,"41557":0,"41558":0,"41559":-1,"41560":0,"41561":-1,"41562":0,"41563":2168,"41564":0,"41565":-1,"41566":0,"41567":3272,"41568":0,"41569":0,"41570":-1,"41571":-1,"41572":-1,"41573":0,"41574":0,"41575":-1,"41576":0,"41577":0,"41578":3892,"41579":-1,"41580":0,"41581":26,"41582":-1,"41583":0,"41584":3723,"41585":-1,"41586":0,"41587":-1,"41588":0,"41589":0,"41590":0,"41591":-1,"41592":3671,"41593":3109,"41594":2323,"41595":-1,"41596":-1,"41597":0,"41598":-1,"41599":0,"41600":-1,"41601":2312,"41602":-1,"41603":0,"41604":-1,"41605":0,"41606":3632,"41607":0,"41608":0,"41609":2705,"41610":0,"41611":-1,"41612":-1,"41613":2238,"41614":0,"41615":0,"41616":2337,"41617":0,"41618":-1,"41619":-1,"41620":-1,"41621":3343,"41622":269,"41623":0,"41624":-1,"41625":480,"41626":0,"41627":2939,"41628":-1,"41629":2060,"41630":0,"41631":3475,"41632":2788,"41633":-1,"41634":0,"41635":2345,"41636":0,"41637":0,"41638":0,"41639":-1,"41640":-1,"41641":-1,"41642":-1,"41643":0,"41644":2035,"41645":0,"41646":-1,"41647":-1,"41648":0,"41649":-1,"41650":0,"41651":119,"41652":-1,"41653":0,"41654":0,"41655":-1,"41656":-1,"41657":0,"41658":0,"41659":-1,"41660":0,"41661":3694,"41662":0,"41663":-1,"41664":2585,"41665":3961,"41666":0,"41667":2273,"41668":3943,"41669":0,"41670":0,"41671":0,"41672":0,"41673":2031,"41674":-1,"41675":2941,"41676":0,"41677":-1,"41678":0,"41679":0,"41680":0,"41681":0,"41682":-1,"41683":-1,"41684":0,"41685":2209,"41686":0,"41687":3704,"41688":0,"41689":-1,"41690":2124,"41691":436,"41692":-1,"41693":3110,"41694":0,"41695":-1,"41696":-1,"41697":3003,"41698":2084,"41699":0,"41700":464,"41701":0,"41702":3243,"41703":-1,"41704":0,"41705":-1,"41706":-1,"41707":-1,"41708":-1,"41709":2336,"41710":0,"41711":2156,"41712":0,"41713":-1,"41714":0,"41715":0,"41716":3688,"41717":31,"41718":0,"41719":0,"41720":0,"41721":-1,"41722":0,"41723":-1,"41724":0,"41725":0,"41726":199,"41727":0,"41728":-1,"41729":3210,"41730":0,"41731":-1,"41732":-1,"41733":3441,"41734":3798,"41735":0,"41736":0,"41737":0,"41738":143,"41739":0,"41740":0,"41741":0,"41742":0,"41743":0,"41744":-1,"41745":0,"41746":0,"41747":-1,"41748":0,"41749":3790,"41750":0,"41751":-1,"41752":-1,"41753":465,"41754":-1,"41755":-1,"41756":0,"41757":452,"41758":203,"41759":-1,"41760":-1,"41761":3242,"41762":0,"41763":0,"41764":0,"41765":-1,"41766":0,"41767":0,"41768":2635,"41769":-1,"41770":-1,"41771":2865,"41772":-1,"41773":0,"41774":1871,"41775":295,"41776":0,"41777":-1,"41778":0,"41779":0,"41780":90,"41781":2333,"41782":0,"41783":1884,"41784":0,"41785":0,"41786":0,"41787":-1,"41788":-1,"41789":2511,"41790":-1,"41791":-1,"41792":2927,"41793":0,"41794":2442,"41795":2064,"41796":-1,"41797":2693,"41798":-1,"41799":-1,"41800":0,"41801":-1,"41802":-1,"41803":0,"41804":0,"41805":-1,"41806":-1,"41807":2715,"41808":0,"41809":-1,"41810":-1,"41811":2741,"41812":0,"41813":0,"41814":3098,"41815":-1,"41816":0,"41817":0,"41818":0,"41819":2045,"41820":0,"41821":0,"41822":-1,"41823":-1,"41824":1963,"41825":0,"41826":0,"41827":0,"41828":3411,"41829":0,"41830":0,"41831":0,"41832":3780,"41833":0,"41834":2235,"41835":-1,"41836":0,"41837":-1,"41838":2479,"41839":-1,"41840":2794,"41841":1881,"41842":0,"41843":-1,"41844":0,"41845":-1,"41846":0,"41847":0,"41848":-1,"41849":0,"41850":-1,"41851":-1,"41852":-1,"41853":0,"41854":3176,"41855":0,"41856":-1,"41857":-1,"41858":-1,"41859":0,"41860":0,"41861":-1,"41862":-1,"41863":-1,"41864":314,"41865":2386,"41866":2445,"41867":0,"41868":0,"41869":-1,"41870":-1,"41871":-1,"41872":3264,"41873":0,"41874":3997,"41875":0,"41876":0,"41877":0,"41878":-1,"41879":-1,"41880":3453,"41881":-1,"41882":2471,"41883":-1,"41884":0,"41885":25,"41886":-1,"41887":0,"41888":2323,"41889":2140,"41890":0,"41891":0,"41892":2385,"41893":-1,"41894":-1,"41895":-1,"41896":0,"41897":-1,"41898":-1,"41899":0,"41900":-1,"41901":-1,"41902":-1,"41903":-1,"41904":19,"41905":0,"41906":0,"41907":2862,"41908":0,"41909":0,"41910":-1,"41911":-1,"41912":-1,"41913":2499,"41914":0,"41915":3297,"41916":-1,"41917":-1,"41918":0,"41919":1862,"41920":-1,"41921":0,"41922":0,"41923":2059,"41924":2559,"41925":1852,"41926":0,"41927":-1,"41928":-1,"41929":0,"41930":0,"41931":0,"41932":0,"41933":-1,"41934":1923,"41935":2922,"41936":2279,"41937":0,"41938":-1,"41939":0,"41940":-1,"41941":0,"41942":0,"41943":0,"41944":-1,"41945":-1,"41946":-1,"41947":-1,"41948":3725,"41949":3570,"41950":3540,"41951":2951,"41952":0,"41953":-1,"41954":17,"41955":0,"41956":0,"41957":0,"41958":0,"41959":2888,"41960":2397,"41961":0,"41962":3053,"41963":0,"41964":0,"41965":156,"41966":2157,"41967":-1,"41968":0,"41969":2241,"41970":-1,"41971":70,"41972":3651,"41973":0,"41974":2106,"41975":0,"41976":3716,"41977":-1,"41978":0,"41979":-1,"41980":280,"41981":-1,"41982":-1,"41983":0,"41984":-1,"41985":-1,"41986":0,"41987":3624,"41988":0,"41989":0,"41990":2148,"41991":3495,"41992":-1,"41993":-1,"41994":0,"41995":0,"41996":18,"41997":0,"41998":0,"41999":3775,"42000":-1,"42001":-1,"42002":0,"42003":0,"42004":3484,"42005":-1,"42006":-1,"42007":3992,"42008":0,"42009":0,"42010":0,"42011":-1,"42012":0,"42013":-1,"42014":-1,"42015":324,"42016":0,"42017":0,"42018":0,"42019":0,"42020":-1,"42021":0,"42022":-1,"42023":2124,"42024":-1,"42025":2013,"42026":-1,"42027":3053,"42028":0,"42029":3238,"42030":0,"42031":-1,"42032":-1,"42033":2805,"42034":0,"42035":0,"42036":0,"42037":0,"42038":1785,"42039":0,"42040":0,"42041":-1,"42042":-1,"42043":0,"42044":0,"42045":-1,"42046":60,"42047":2372,"42048":0,"42049":0,"42050":-1,"42051":3055,"42052":0,"42053":0,"42054":3451,"42055":0,"42056":0,"42057":3911,"42058":0,"42059":0,"42060":-1,"42061":0,"42062":0,"42063":-1,"42064":0,"42065":-1,"42066":-1,"42067":0,"42068":2306,"42069":-1,"42070":1878,"42071":2558,"42072":-1,"42073":2115,"42074":2447,"42075":3253,"42076":0,"42077":0,"42078":0,"42079":0,"42080":-1,"42081":-1,"42082":0,"42083":-1,"42084":0,"42085":-1,"42086":0,"42087":397,"42088":3920,"42089":154,"42090":0,"42091":-1,"42092":0,"42093":-1,"42094":2002,"42095":-1,"42096":0,"42097":-1,"42098":-1,"42099":-1,"42100":-1,"42101":-1,"42102":0,"42103":0,"42104":-1,"42105":3986,"42106":0,"42107":0,"42108":-1,"42109":-1,"42110":3412,"42111":0,"42112":3455,"42113":0,"42114":3872,"42115":0,"42116":-1,"42117":0,"42118":-1,"42119":3922,"42120":0,"42121":-1,"42122":-1,"42123":0,"42124":0,"42125":1991,"42126":13,"42127":-1,"42128":3503,"42129":3706,"42130":0,"42131":-1,"42132":-1,"42133":-1,"42134":0,"42135":0,"42136":0,"42137":3812,"42138":0,"42139":-1,"42140":0,"42141":66,"42142":0,"42143":-1,"42144":0,"42145":3390,"42146":-1,"42147":-1,"42148":0,"42149":0,"42150":2370,"42151":-1,"42152":3590,"42153":-1,"42154":0,"42155":0,"42156":0,"42157":2226,"42158":4057,"42159":0,"42160":0,"42161":-1,"42162":1925,"42163":0,"42164":2444,"42165":-1,"42166":-1,"42167":0,"42168":-1,"42169":0,"42170":-1,"42171":3856,"42172":3152,"42173":0,"42174":0,"42175":3077,"42176":-1,"42177":0,"42178":-1,"42179":1836,"42180":2830,"42181":-1,"42182":0,"42183":0,"42184":2877,"42185":0,"42186":360,"42187":0,"42188":-1,"42189":0,"42190":2185,"42191":-1,"42192":2253,"42193":3351,"42194":0,"42195":0,"42196":0,"42197":2544,"42198":1959,"42199":0,"42200":0,"42201":2896,"42202":0,"42203":3130,"42204":0,"42205":0,"42206":0,"42207":266,"42208":-1,"42209":2699,"42210":0,"42211":3121,"42212":-1,"42213":0,"42214":0,"42215":0,"42216":0,"42217":0,"42218":-1,"42219":0,"42220":0,"42221":0,"42222":0,"42223":0,"42224":0,"42225":0,"42226":-1,"42227":2180,"42228":0,"42229":2371,"42230":0,"42231":3914,"42232":-1,"42233":2836,"42234":-1,"42235":0,"42236":0,"42237":4025,"42238":-1,"42239":2477,"42240":-1,"42241":0,"42242":-1,"42243":-1,"42244":2224,"42245":0,"42246":0,"42247":0,"42248":0,"42249":2689,"42250":0,"42251":0,"42252":0,"42253":-1,"42254":0,"42255":3201,"42256":0,"42257":-1,"42258":3245,"42259":-1,"42260":-1,"42261":3665,"42262":0,"42263":0,"42264":-1,"42265":137,"42266":-1,"42267":-1,"42268":0,"42269":0,"42270":2798,"42271":-1,"42272":0,"42273":3061,"42274":2755,"42275":2436,"42276":0,"42277":-1,"42278":0,"42279":3928,"42280":3576,"42281":2158,"42282":345,"42283":0,"42284":0,"42285":-1,"42286":-1,"42287":283,"42288":-1,"42289":-1,"42290":0,"42291":2531,"42292":2042,"42293":0,"42294":-1,"42295":-1,"42296":0,"42297":0,"42298":-1,"42299":0,"42300":0,"42301":0,"42302":0,"42303":-1,"42304":0,"42305":-1,"42306":293,"42307":-1,"42308":-1,"42309":2266,"42310":-1,"42311":0,"42312":3665,"42313":4010,"42314":-1,"42315":3248,"42316":-1,"42317":2682,"42318":3259,"42319":0,"42320":0,"42321":-1,"42322":0,"42323":0,"42324":-1,"42325":-1,"42326":280,"42327":1792,"42328":1852,"42329":-1,"42330":-1,"42331":0,"42332":0,"42333":0,"42334":-1,"42335":2034,"42336":-1,"42337":-1,"42338":0,"42339":3024,"42340":3971,"42341":0,"42342":0,"42343":-1,"42344":-1,"42345":0,"42346":0,"42347":2476,"42348":2137,"42349":-1,"42350":2854,"42351":-1,"42352":0,"42353":-1,"42354":0,"42355":0,"42356":-1,"42357":2186,"42358":3990,"42359":-1,"42360":221,"42361":0,"42362":0,"42363":-1,"42364":0,"42365":3341,"42366":0,"42367":-1,"42368":0,"42369":2097,"42370":-1,"42371":-1,"42372":2831,"42373":2332,"42374":0,"42375":2450,"42376":0,"42377":4045,"42378":2405,"42379":0,"42380":236,"42381":2503,"42382":2009,"42383":0,"42384":2434,"42385":0,"42386":3336,"42387":3246,"42388":2845,"42389":0,"42390":0,"42391":-1,"42392":3515,"42393":0,"42394":3876,"42395":-1,"42396":-1,"42397":0,"42398":0,"42399":1958,"42400":3769,"42401":2439,"42402":368,"42403":2551,"42404":0,"42405":-1,"42406":-1,"42407":0,"42408":0,"42409":0,"42410":0,"42411":2483,"42412":0,"42413":4042,"42414":-1,"42415":0,"42416":3218,"42417":3331,"42418":-1,"42419":3011,"42420":2554,"42421":-1,"42422":3913,"42423":0,"42424":3246,"42425":3314,"42426":0,"42427":-1,"42428":2003,"42429":3943,"42430":1941,"42431":3231,"42432":-1,"42433":3356,"42434":-1,"42435":0,"42436":-1,"42437":2261,"42438":0,"42439":3330,"42440":-1,"42441":-1,"42442":2164,"42443":0,"42444":-1,"42445":2914,"42446":0,"42447":-1,"42448":0,"42449":450,"42450":0,"42451":-1,"42452":0,"42453":0,"42454":-1,"42455":0,"42456":-1,"42457":0,"42458":0,"42459":0,"42460":-1,"42461":3615,"42462":1973,"42463":0,"42464":0,"42465":2899,"42466":0,"42467":3617,"42468":2038,"42469":4013,"42470":0,"42471":3658,"42472":0,"42473":-1,"42474":0,"42475":0,"42476":-1,"42477":-1,"42478":-1,"42479":-1,"42480":3650,"42481":-1,"42482":-1,"42483":0,"42484":0,"42485":-1,"42486":3770,"42487":0,"42488":0,"42489":-1,"42490":2771,"42491":-1,"42492":3881,"42493":0,"42494":0,"42495":0,"42496":0,"42497":0,"42498":-1,"42499":0,"42500":-1,"42501":0,"42502":0,"42503":353,"42504":0,"42505":0,"42506":3871,"42507":2512,"42508":2210,"42509":0,"42510":-1,"42511":3148,"42512":0,"42513":3883,"42514":1876,"42515":99,"42516":-1,"42517":-1,"42518":3886,"42519":0,"42520":0,"42521":0,"42522":0,"42523":-1,"42524":0,"42525":3012,"42526":-1,"42527":0,"42528":0,"42529":0,"42530":-1,"42531":0,"42532":-1,"42533":-1,"42534":2744,"42535":3693,"42536":-1,"42537":0,"42538":0,"42539":0,"42540":177,"42541":0,"42542":0,"42543":-1,"42544":2459,"42545":-1,"42546":0,"42547":0,"42548":0,"42549":-1,"42550":3399,"42551":-1,"42552":-1,"42553":0,"42554":2961,"42555":-1,"42556":2727,"42557":0,"42558":-1,"42559":0,"42560":0,"42561":0,"42562":0,"42563":0,"42564":-1,"42565":0,"42566":-1,"42567":1796,"42568":-1,"42569":-1,"42570":2961,"42571":0,"42572":0,"42573":0,"42574":0,"42575":2741,"42576":0,"42577":2656,"42578":1799,"42579":2879,"42580":-1,"42581":0,"42582":0,"42583":3024,"42584":0,"42585":3048,"42586":-1,"42587":0,"42588":-1,"42589":0,"42590":-1,"42591":-1,"42592":-1,"42593":2794,"42594":159,"42595":-1,"42596":0,"42597":3663,"42598":0,"42599":0,"42600":-1,"42601":0,"42602":-1,"42603":0,"42604":136,"42605":2398,"42606":0,"42607":0,"42608":0,"42609":-1,"42610":-1,"42611":0,"42612":0,"42613":-1,"42614":0,"42615":0,"42616":1814,"42617":0,"42618":-1,"42619":0,"42620":0,"42621":0,"42622":0,"42623":-1,"42624":-1,"42625":3753,"42626":-1,"42627":0,"42628":2667,"42629":2692,"42630":0,"42631":3389,"42632":-1,"42633":0,"42634":0,"42635":1850,"42636":-1,"42637":-1,"42638":-1,"42639":0,"42640":0,"42641":0,"42642":2768,"42643":-1,"42644":2281,"42645":0,"42646":-1,"42647":-1,"42648":-1,"42649":0,"42650":2096,"42651":0,"42652":3543,"42653":3463,"42654":0,"42655":0,"42656":0,"42657":0,"42658":0,"42659":2839,"42660":4038,"42661":0,"42662":0,"42663":0,"42664":2229,"42665":-1,"42666":-1,"42667":0,"42668":2717,"42669":2752,"42670":0,"42671":0,"42672":2454,"42673":0,"42674":0,"42675":0,"42676":-1,"42677":1899,"42678":0,"42679":0,"42680":0,"42681":0,"42682":-1,"42683":3666,"42684":0,"42685":2289,"42686":2119,"42687":-1,"42688":2301,"42689":0,"42690":-1,"42691":0,"42692":0,"42693":-1,"42694":3517,"42695":0,"42696":-1,"42697":-1,"42698":0,"42699":-1,"42700":0,"42701":0,"42702":-1,"42703":0,"42704":0,"42705":2831,"42706":0,"42707":3448,"42708":2586,"42709":0,"42710":-1,"42711":3422,"42712":0,"42713":0,"42714":438,"42715":-1,"42716":2808,"42717":-1,"42718":-1,"42719":0,"42720":-1,"42721":3520,"42722":-1,"42723":0,"42724":0,"42725":-1,"42726":30,"42727":3388,"42728":-1,"42729":0,"42730":2545,"42731":0,"42732":-1,"42733":-1,"42734":-1,"42735":0,"42736":2532,"42737":-1,"42738":0,"42739":-1,"42740":-1,"42741":2082,"42742":-1,"42743":-1,"42744":-1,"42745":-1,"42746":0,"42747":0,"42748":0,"42749":-1,"42750":0,"42751":0,"42752":0,"42753":-1,"42754":0,"42755":2361,"42756":-1,"42757":3762,"42758":0,"42759":-1,"42760":3920,"42761":0,"42762":-1,"42763":0,"42764":0,"42765":0,"42766":0,"42767":0,"42768":0,"42769":0,"42770":0,"42771":0,"42772":-1,"42773":0,"42774":406,"42775":-1,"42776":-1,"42777":-1,"42778":0,"42779":3470,"42780":3517,"42781":0,"42782":0,"42783":-1,"42784":2204,"42785":1776,"42786":0,"42787":83,"42788":-1,"42789":2240,"42790":-1,"42791":2667,"42792":-1,"42793":2015,"42794":-1,"42795":0,"42796":0,"42797":2418,"42798":3176,"42799":0,"42800":-1,"42801":2415,"42802":0,"42803":-1,"42804":3830,"42805":-1,"42806":0,"42807":0,"42808":-1,"42809":0,"42810":0,"42811":3873,"42812":0,"42813":-1,"42814":229,"42815":0,"42816":3665,"42817":363,"42818":0,"42819":-1,"42820":0,"42821":2240,"42822":3085,"42823":2664,"42824":-1,"42825":0,"42826":0,"42827":0,"42828":140,"42829":3989,"42830":3714,"42831":-1,"42832":3398,"42833":0,"42834":-1,"42835":-1,"42836":0,"42837":-1,"42838":0,"42839":0,"42840":-1,"42841":0,"42842":0,"42843":-1,"42844":-1,"42845":2586,"42846":-1,"42847":-1,"42848":0,"42849":2674,"42850":0,"42851":0,"42852":2633,"42853":-1,"42854":3199,"42855":-1,"42856":-1,"42857":1893,"42858":-1,"42859":0,"42860":-1,"42861":0,"42862":2278,"42863":0,"42864":0,"42865":3865,"42866":0,"42867":2899,"42868":2024,"42869":-1,"42870":-1,"42871":-1,"42872":-1,"42873":-1,"42874":7,"42875":0,"42876":2359,"42877":0,"42878":2399,"42879":2852,"42880":-1,"42881":2792,"42882":0,"42883":2095,"42884":2508,"42885":64,"42886":0,"42887":0,"42888":0,"42889":3583,"42890":3037,"42891":-1,"42892":0,"42893":-1,"42894":2672,"42895":-1,"42896":-1,"42897":-1,"42898":0,"42899":-1,"42900":-1,"42901":-1,"42902":-1,"42903":0,"42904":0,"42905":0,"42906":0,"42907":-1,"42908":0,"42909":0,"42910":-1,"42911":3935,"42912":-1,"42913":1782,"42914":-1,"42915":0,"42916":0,"42917":0,"42918":2326,"42919":0,"42920":-1,"42921":-1,"42922":2822,"42923":2008,"42924":-1,"42925":-1,"42926":-1,"42927":0,"42928":-1,"42929":-1,"42930":0,"42931":0,"42932":-1,"42933":0,"42934":3785,"42935":-1,"42936":2221,"42937":2476,"42938":-1,"42939":-1,"42940":2956,"42941":-1,"42942":2789,"42943":-1,"42944":-1,"42945":0,"42946":0,"42947":0,"42948":19,"42949":1926,"42950":3367,"42951":-1,"42952":0,"42953":3016,"42954":0,"42955":-1,"42956":0,"42957":0,"42958":-1,"42959":0,"42960":-1,"42961":3429,"42962":3140,"42963":3934,"42964":0,"42965":-1,"42966":-1,"42967":3746,"42968":3779,"42969":0,"42970":-1,"42971":-1,"42972":0,"42973":-1,"42974":0,"42975":0,"42976":0,"42977":-1,"42978":-1,"42979":0,"42980":0,"42981":136,"42982":0,"42983":0,"42984":-1,"42985":3279,"42986":0,"42987":-1,"42988":4016,"42989":-1,"42990":0,"42991":-1,"42992":0,"42993":2611,"42994":2889,"42995":1865,"42996":0,"42997":0,"42998":0,"42999":2585,"43000":342,"43001":-1,"43002":0,"43003":0,"43004":0,"43005":2704,"43006":0,"43007":0,"43008":0,"43009":0,"43010":0,"43011":0,"43012":52,"43013":-1,"43014":-1,"43015":0,"43016":2330,"43017":0,"43018":161,"43019":-1,"43020":0,"43021":2067,"43022":0,"43023":-1,"43024":3793,"43025":0,"43026":0,"43027":2985,"43028":0,"43029":0,"43030":3183,"43031":-1,"43032":0,"43033":0,"43034":-1,"43035":135,"43036":-1,"43037":0,"43038":2727,"43039":0,"43040":-1,"43041":0,"43042":3716,"43043":0,"43044":0,"43045":0,"43046":0,"43047":-1,"43048":-1,"43049":0,"43050":0,"43051":-1,"43052":3826,"43053":0,"43054":-1,"43055":-1,"43056":-1,"43057":-1,"43058":164,"43059":0,"43060":-1,"43061":-1,"43062":-1,"43063":0,"43064":0,"43065":-1,"43066":-1,"43067":341,"43068":0,"43069":0,"43070":-1,"43071":2256,"43072":0,"43073":-1,"43074":-1,"43075":-1,"43076":0,"43077":-1,"43078":-1,"43079":-1,"43080":0,"43081":-1,"43082":2911,"43083":0,"43084":-1,"43085":-1,"43086":0,"43087":3729,"43088":2668,"43089":-1,"43090":0,"43091":0,"43092":2524,"43093":-1,"43094":-1,"43095":359,"43096":-1,"43097":0,"43098":296,"43099":-1,"43100":0,"43101":0,"43102":0,"43103":0,"43104":0,"43105":-1,"43106":0,"43107":-1,"43108":2858,"43109":0,"43110":0,"43111":0,"43112":2934,"43113":0,"43114":0,"43115":-1,"43116":0,"43117":-1,"43118":-1,"43119":-1,"43120":-1,"43121":0,"43122":0,"43123":-1,"43124":2569,"43125":0,"43126":0,"43127":0,"43128":-1,"43129":0,"43130":-1,"43131":-1,"43132":0,"43133":3241,"43134":-1,"43135":-1,"43136":0,"43137":0,"43138":-1,"43139":3294,"43140":-1,"43141":-1,"43142":0,"43143":3599,"43144":0,"43145":0,"43146":3906,"43147":0,"43148":273,"43149":0,"43150":-1,"43151":0,"43152":-1,"43153":0,"43154":0,"43155":0,"43156":0,"43157":0,"43158":0,"43159":-1,"43160":3099,"43161":0,"43162":2881,"43163":-1,"43164":0,"43165":2482,"43166":2640,"43167":126,"43168":0,"43169":0,"43170":0,"43171":0,"43172":-1,"43173":-1,"43174":0,"43175":-1,"43176":0,"43177":-1,"43178":0,"43179":0,"43180":0,"43181":2855,"43182":-1,"43183":0,"43184":0,"43185":3314,"43186":0,"43187":-1,"43188":3580,"43189":2245,"43190":2922,"43191":-1,"43192":0,"43193":0,"43194":0,"43195":0,"43196":-1,"43197":2896,"43198":-1,"43199":-1,"43200":2983,"43201":0,"43202":0,"43203":2285,"43204":0,"43205":0,"43206":223,"43207":2033,"43208":-1,"43209":-1,"43210":0,"43211":-1,"43212":0,"43213":3507,"43214":-1,"43215":-1,"43216":0,"43217":228,"43218":-1,"43219":-1,"43220":0,"43221":-1,"43222":-1,"43223":0,"43224":-1,"43225":0,"43226":0,"43227":0,"43228":0,"43229":0,"43230":0,"43231":2953,"43232":-1,"43233":-1,"43234":0,"43235":2989,"43236":0,"43237":0,"43238":0,"43239":0,"43240":2959,"43241":0,"43242":0,"43243":0,"43244":-1,"43245":-1,"43246":0,"43247":0,"43248":0,"43249":-1,"43250":-1,"43251":0,"43252":-1,"43253":0,"43254":-1,"43255":0,"43256":-1,"43257":3189,"43258":-1,"43259":0,"43260":3194,"43261":0,"43262":-1,"43263":0,"43264":-1,"43265":-1,"43266":0,"43267":0,"43268":-1,"43269":-1,"43270":0,"43271":0,"43272":-1,"43273":-1,"43274":0,"43275":-1,"43276":1781,"43277":2668,"43278":2247,"43279":0,"43280":-1,"43281":0,"43282":0,"43283":0,"43284":-1,"43285":0,"43286":100,"43287":2381,"43288":-1,"43289":-1,"43290":-1,"43291":3069,"43292":-1,"43293":2588,"43294":-1,"43295":-1,"43296":3257,"43297":-1,"43298":-1,"43299":0,"43300":-1,"43301":0,"43302":2884,"43303":0,"43304":0,"43305":0,"43306":0,"43307":2410,"43308":-1,"43309":-1,"43310":505,"43311":197,"43312":3015,"43313":-1,"43314":-1,"43315":0,"43316":-1,"43317":-1,"43318":-1,"43319":2254,"43320":0,"43321":-1,"43322":-1,"43323":3266,"43324":-1,"43325":0,"43326":-1,"43327":0,"43328":-1,"43329":0,"43330":3449,"43331":0,"43332":0,"43333":0,"43334":0,"43335":259,"43336":4002,"43337":3670,"43338":-1,"43339":443,"43340":2973,"43341":-1,"43342":0,"43343":-1,"43344":3854,"43345":2711,"43346":0,"43347":0,"43348":0,"43349":0,"43350":0,"43351":0,"43352":-1,"43353":0,"43354":-1,"43355":0,"43356":0,"43357":0,"43358":-1,"43359":318,"43360":0,"43361":3234,"43362":0,"43363":0,"43364":-1,"43365":0,"43366":0,"43367":0,"43368":-1,"43369":0,"43370":0,"43371":2982,"43372":-1,"43373":0,"43374":-1,"43375":-1,"43376":3190,"43377":3999,"43378":0,"43379":0,"43380":0,"43381":0,"43382":-1,"43383":424,"43384":0,"43385":0,"43386":2374,"43387":-1,"43388":-1,"43389":462,"43390":3567,"43391":0,"43392":3194,"43393":-1,"43394":-1,"43395":3132,"43396":0,"43397":0,"43398":0,"43399":489,"43400":0,"43401":0,"43402":2043,"43403":0,"43404":80,"43405":-1,"43406":-1,"43407":-1,"43408":-1,"43409":3070,"43410":0,"43411":-1,"43412":-1,"43413":-1,"43414":3324,"43415":-1,"43416":-1,"43417":-1,"43418":0,"43419":-1,"43420":0,"43421":3403,"43422":2236,"43423":0,"43424":524,"43425":-1,"43426":0,"43427":0,"43428":0,"43429":2267,"43430":0,"43431":3771,"43432":-1,"43433":0,"43434":-1,"43435":3079,"43436":0,"43437":2795,"43438":-1,"43439":0,"43440":0,"43441":0,"43442":3853,"43443":0,"43444":-1,"43445":-1,"43446":418,"43447":-1,"43448":-1,"43449":-1,"43450":0,"43451":0,"43452":-1,"43453":0,"43454":0,"43455":0,"43456":-1,"43457":-1,"43458":0,"43459":0,"43460":-1,"43461":-1,"43462":0,"43463":2436,"43464":0,"43465":0,"43466":0,"43467":-1,"43468":2612,"43469":0,"43470":-1,"43471":-1,"43472":3175,"43473":0,"43474":-1,"43475":0,"43476":0,"43477":-1,"43478":2332,"43479":-1,"43480":3146,"43481":-1,"43482":3530,"43483":0,"43484":0,"43485":-1,"43486":2813,"43487":0,"43488":2468,"43489":2370,"43490":0,"43491":2759,"43492":-1,"43493":-1,"43494":-1,"43495":0,"43496":0,"43497":0,"43498":-1,"43499":0,"43500":3499,"43501":3780,"43502":0,"43503":-1,"43504":-1,"43505":0,"43506":-1,"43507":-1,"43508":3259,"43509":1885,"43510":330,"43511":0,"43512":2442,"43513":0,"43514":0,"43515":1848,"43516":0,"43517":0,"43518":0,"43519":3539,"43520":1958,"43521":-1,"43522":-1,"43523":-1,"43524":3014,"43525":-1,"43526":3213,"43527":-1,"43528":-1,"43529":0,"43530":-1,"43531":2307,"43532":0,"43533":142,"43534":0,"43535":0,"43536":-1,"43537":0,"43538":2044,"43539":0,"43540":0,"43541":0,"43542":3736,"43543":0,"43544":-1,"43545":325,"43546":2322,"43547":2480,"43548":2299,"43549":-1,"43550":0,"43551":-1,"43552":0,"43553":2860,"43554":0,"43555":-1,"43556":0,"43557":-1,"43558":4020,"43559":-1,"43560":2364,"43561":-1,"43562":0,"43563":-1,"43564":0,"43565":0,"43566":0,"43567":0,"43568":0,"43569":0,"43570":-1,"43571":-1,"43572":-1,"43573":2348,"43574":3403,"43575":0,"43576":0,"43577":0,"43578":391,"43579":-1,"43580":0,"43581":-1,"43582":0,"43583":0,"43584":0,"43585":0,"43586":0,"43587":0,"43588":3954,"43589":55,"43590":0,"43591":0,"43592":0,"43593":0,"43594":-1,"43595":3619,"43596":-1,"43597":-1,"43598":3413,"43599":0,"43600":2824,"43601":-1,"43602":0,"43603":0,"43604":-1,"43605":3524,"43606":0,"43607":-1,"43608":-1,"43609":0,"43610":0,"43611":-1,"43612":-1,"43613":-1,"43614":0,"43615":0,"43616":2537,"43617":3348,"43618":-1,"43619":2465,"43620":-1,"43621":0,"43622":0,"43623":0,"43624":-1,"43625":1970,"43626":-1,"43627":-1,"43628":0,"43629":0,"43630":-1,"43631":-1,"43632":0,"43633":-1,"43634":-1,"43635":-1,"43636":0,"43637":0,"43638":2144,"43639":2766,"43640":0,"43641":-1,"43642":3376,"43643":-1,"43644":-1,"43645":0,"43646":0,"43647":-1,"43648":0,"43649":-1,"43650":-1,"43651":-1,"43652":-1,"43653":0,"43654":0,"43655":2850,"43656":3835,"43657":2814,"43658":0,"43659":0,"43660":0,"43661":30,"43662":3168,"43663":1848,"43664":-1,"43665":1824,"43666":-1,"43667":-1,"43668":0,"43669":2317,"43670":-1,"43671":0,"43672":0,"43673":0,"43674":0,"43675":0,"43676":-1,"43677":1862,"43678":-1,"43679":0,"43680":2169,"43681":0,"43682":-1,"43683":-1,"43684":-1,"43685":0,"43686":2213,"43687":347,"43688":0,"43689":-1,"43690":0,"43691":-1,"43692":0,"43693":0,"43694":0,"43695":0,"43696":0,"43697":0,"43698":-1,"43699":0,"43700":0,"43701":0,"43702":0,"43703":-1,"43704":0,"43705":0,"43706":3809,"43707":0,"43708":-1,"43709":0,"43710":3123,"43711":0,"43712":0,"43713":0,"43714":0,"43715":0,"43716":0,"43717":0,"43718":197,"43719":0,"43720":0,"43721":2508,"43722":-1,"43723":0,"43724":0,"43725":-1,"43726":277,"43727":-1,"43728":-1,"43729":-1,"43730":0,"43731":-1,"43732":0,"43733":0,"43734":2511,"43735":0,"43736":2113,"43737":0,"43738":0,"43739":-1,"43740":3638,"43741":0,"43742":-1,"43743":0,"43744":-1,"43745":0,"43746":0,"43747":0,"43748":0,"43749":-1,"43750":0,"43751":0,"43752":-1,"43753":-1,"43754":-1,"43755":-1,"43756":0,"43757":3438,"43758":3792,"43759":0,"43760":213,"43761":0,"43762":0,"43763":0,"43764":0,"43765":0,"43766":0,"43767":0,"43768":3136,"43769":-1,"43770":0,"43771":0,"43772":0,"43773":0,"43774":3546,"43775":249,"43776":0,"43777":0,"43778":-1,"43779":1989,"43780":0,"43781":0,"43782":0,"43783":-1,"43784":0,"43785":0,"43786":0,"43787":3613,"43788":0,"43789":2095,"43790":0,"43791":-1,"43792":0,"43793":2718,"43794":2988,"43795":-1,"43796":0,"43797":-1,"43798":3044,"43799":2838,"43800":-1,"43801":-1,"43802":-1,"43803":0,"43804":2161,"43805":-1,"43806":2528,"43807":-1,"43808":0,"43809":0,"43810":-1,"43811":0,"43812":-1,"43813":-1,"43814":0,"43815":-1,"43816":2231,"43817":0,"43818":3559,"43819":-1,"43820":2687,"43821":0,"43822":0,"43823":0,"43824":73,"43825":0,"43826":-1,"43827":0,"43828":2426,"43829":3953,"43830":0,"43831":0,"43832":2155,"43833":0,"43834":0,"43835":-1,"43836":-1,"43837":0,"43838":0,"43839":4035,"43840":2844,"43841":378,"43842":2301,"43843":-1,"43844":-1,"43845":-1,"43846":116,"43847":3214,"43848":-1,"43849":0,"43850":0,"43851":0,"43852":-1,"43853":-1,"43854":0,"43855":-1,"43856":2948,"43857":2270,"43858":-1,"43859":-1,"43860":0,"43861":-1,"43862":29,"43863":0,"43864":255,"43865":0,"43866":-1,"43867":-1,"43868":0,"43869":-1,"43870":-1,"43871":-1,"43872":0,"43873":-1,"43874":0,"43875":0,"43876":0,"43877":-1,"43878":0,"43879":-1,"43880":165,"43881":-1,"43882":0,"43883":-1,"43884":0,"43885":3530,"43886":0,"43887":-1,"43888":-1,"43889":0,"43890":0,"43891":-1,"43892":-1,"43893":1969,"43894":-1,"43895":-1,"43896":2404,"43897":0,"43898":0,"43899":4018,"43900":1997,"43901":506,"43902":-1,"43903":-1,"43904":0,"43905":-1,"43906":-1,"43907":0,"43908":-1,"43909":2330,"43910":-1,"43911":0,"43912":0,"43913":-1,"43914":-1,"43915":0,"43916":-1,"43917":-1,"43918":-1,"43919":-1,"43920":-1,"43921":0,"43922":-1,"43923":0,"43924":0,"43925":0,"43926":0,"43927":0,"43928":0,"43929":-1,"43930":0,"43931":0,"43932":0,"43933":0,"43934":1929,"43935":2095,"43936":0,"43937":2466,"43938":0,"43939":0,"43940":-1,"43941":3560,"43942":-1,"43943":-1,"43944":3200,"43945":0,"43946":-1,"43947":0,"43948":3392,"43949":0,"43950":0,"43951":0,"43952":0,"43953":0,"43954":-1,"43955":2391,"43956":0,"43957":0,"43958":0,"43959":0,"43960":1814,"43961":0,"43962":83,"43963":0,"43964":2564,"43965":-1,"43966":0,"43967":0,"43968":0,"43969":-1,"43970":0,"43971":0,"43972":0,"43973":0,"43974":2915,"43975":0,"43976":-1,"43977":-1,"43978":0,"43979":0,"43980":2550,"43981":0,"43982":0,"43983":4036,"43984":0,"43985":0,"43986":0,"43987":-1,"43988":-1,"43989":3907,"43990":-1,"43991":3652,"43992":3150,"43993":0,"43994":0,"43995":0,"43996":-1,"43997":2092,"43998":-1,"43999":0,"44000":-1,"44001":-1,"44002":0,"44003":-1,"44004":3766,"44005":0,"44006":-1,"44007":0,"44008":0,"44009":-1,"44010":3652,"44011":-1,"44012":-1,"44013":3892,"44014":0,"44015":1811,"44016":3282,"44017":2636,"44018":2683,"44019":-1,"44020":0,"44021":-1,"44022":0,"44023":0,"44024":-1,"44025":3345,"44026":-1,"44027":0,"44028":0,"44029":-1,"44030":0,"44031":-1,"44032":0,"44033":3613,"44034":0,"44035":0,"44036":-1,"44037":0,"44038":1791,"44039":-1,"44040":0,"44041":0,"44042":0,"44043":0,"44044":2838,"44045":0,"44046":-1,"44047":1778,"44048":0,"44049":-1,"44050":-1,"44051":0,"44052":-1,"44053":0,"44054":3068,"44055":-1,"44056":0,"44057":-1,"44058":3921,"44059":0,"44060":2413,"44061":-1,"44062":-1,"44063":0,"44064":-1,"44065":0,"44066":0,"44067":0,"44068":3078,"44069":3932,"44070":0,"44071":3973,"44072":-1,"44073":0,"44074":0,"44075":0,"44076":3054,"44077":-1,"44078":0,"44079":2595,"44080":0,"44081":0,"44082":0,"44083":478,"44084":0,"44085":-1,"44086":0,"44087":-1,"44088":0,"44089":0,"44090":0,"44091":2001,"44092":0,"44093":0,"44094":-1,"44095":0,"44096":0,"44097":0,"44098":2308,"44099":0,"44100":0,"44101":0,"44102":-1,"44103":-1,"44104":-1,"44105":-1,"44106":0,"44107":0,"44108":-1,"44109":269,"44110":3170,"44111":0,"44112":-1,"44113":4025,"44114":0,"44115":-1,"44116":-1,"44117":0,"44118":0,"44119":-1,"44120":-1,"44121":-1,"44122":-1,"44123":2139,"44124":2911,"44125":0,"44126":1962,"44127":0,"44128":-1,"44129":0,"44130":0,"44131":0,"44132":-1,"44133":3415,"44134":2871,"44135":0,"44136":0,"44137":0,"44138":-1,"44139":0,"44140":-1,"44141":0,"44142":0,"44143":0,"44144":-1,"44145":-1,"44146":238,"44147":0,"44148":0,"44149":3239,"44150":-1,"44151":-1,"44152":3293,"44153":0,"44154":0,"44155":-1,"44156":0,"44157":-1,"44158":-1,"44159":0,"44160":-1,"44161":-1,"44162":2112,"44163":-1,"44164":0,"44165":-1,"44166":-1,"44167":-1,"44168":3302,"44169":0,"44170":0,"44171":2280,"44172":0,"44173":0,"44174":0,"44175":0,"44176":191,"44177":-1,"44178":-1,"44179":0,"44180":4044,"44181":0,"44182":0,"44183":-1,"44184":-1,"44185":0,"44186":1959,"44187":-1,"44188":0,"44189":-1,"44190":0,"44191":3043,"44192":-1,"44193":-1,"44194":3982,"44195":0,"44196":2764,"44197":0,"44198":2533,"44199":3425,"44200":-1,"44201":-1,"44202":2317,"44203":0,"44204":0,"44205":0,"44206":-1,"44207":0,"44208":0,"44209":0,"44210":0,"44211":0,"44212":0,"44213":0,"44214":0,"44215":3106,"44216":-1,"44217":3939,"44218":-1,"44219":0,"44220":-1,"44221":0,"44222":0,"44223":0,"44224":2709,"44225":0,"44226":-1,"44227":2129,"44228":0,"44229":0,"44230":2289,"44231":0,"44232":-1,"44233":3284,"44234":-1,"44235":337,"44236":0,"44237":-1,"44238":0,"44239":3182,"44240":0,"44241":3710,"44242":3044,"44243":-1,"44244":0,"44245":0,"44246":2860,"44247":0,"44248":0,"44249":3075,"44250":-1,"44251":0,"44252":0,"44253":0,"44254":0,"44255":-1,"44256":0,"44257":362,"44258":-1,"44259":0,"44260":3697,"44261":0,"44262":0,"44263":-1,"44264":0,"44265":297,"44266":0,"44267":0,"44268":3935,"44269":0,"44270":0,"44271":0,"44272":2688,"44273":3592,"44274":0,"44275":3251,"44276":0,"44277":0,"44278":-1,"44279":-1,"44280":2579,"44281":-1,"44282":3835,"44283":0,"44284":0,"44285":0,"44286":0,"44287":0,"44288":-1,"44289":0,"44290":-1,"44291":2712,"44292":3808,"44293":0,"44294":-1,"44295":1889,"44296":0,"44297":2244,"44298":144,"44299":0,"44300":0,"44301":0,"44302":-1,"44303":3555,"44304":0,"44305":0,"44306":-1,"44307":-1,"44308":0,"44309":-1,"44310":0,"44311":3725,"44312":0,"44313":-1,"44314":0,"44315":2836,"44316":0,"44317":0,"44318":1922,"44319":0,"44320":-1,"44321":136,"44322":0,"44323":0,"44324":0,"44325":0,"44326":2230,"44327":-1,"44328":0,"44329":-1,"44330":2219,"44331":0,"44332":-1,"44333":0,"44334":-1,"44335":0,"44336":3033,"44337":-1,"44338":0,"44339":2074,"44340":0,"44341":3561,"44342":0,"44343":0,"44344":-1,"44345":1784,"44346":0,"44347":0,"44348":-1,"44349":300,"44350":0,"44351":0,"44352":-1,"44353":-1,"44354":0,"44355":3878,"44356":-1,"44357":0,"44358":-1,"44359":0,"44360":-1,"44361":-1,"44362":0,"44363":-1,"44364":-1,"44365":0,"44366":0,"44367":3987,"44368":0,"44369":137,"44370":2315,"44371":0,"44372":-1,"44373":-1,"44374":122,"44375":0,"44376":-1,"44377":-1,"44378":0,"44379":0,"44380":0,"44381":-1,"44382":2341,"44383":-1,"44384":-1,"44385":2950,"44386":2807,"44387":-1,"44388":0,"44389":0,"44390":3669,"44391":-1,"44392":0,"44393":0,"44394":-1,"44395":-1,"44396":3630,"44397":0,"44398":-1,"44399":0,"44400":-1,"44401":0,"44402":0,"44403":0,"44404":59,"44405":0,"44406":0,"44407":0,"44408":3591,"44409":0,"44410":-1,"44411":0,"44412":2158,"44413":0,"44414":-1,"44415":0,"44416":2186,"44417":-1,"44418":3581,"44419":0,"44420":-1,"44421":-1,"44422":0,"44423":-1,"44424":0,"44425":0,"44426":-1,"44427":0,"44428":0,"44429":0,"44430":0,"44431":3348,"44432":-1,"44433":0,"44434":112,"44435":-1,"44436":3517,"44437":446,"44438":-1,"44439":-1,"44440":0,"44441":0,"44442":3667,"44443":-1,"44444":-1,"44445":-1,"44446":-1,"44447":0,"44448":3064,"44449":3207,"44450":0,"44451":0,"44452":450,"44453":-1,"44454":0,"44455":-1,"44456":1964,"44457":0,"44458":0,"44459":-1,"44460":0,"44461":0,"44462":-1,"44463":3029,"44464":0,"44465":0,"44466":2682,"44467":3536,"44468":0,"44469":0,"44470":0,"44471":0,"44472":-1,"44473":3474,"44474":2769,"44475":0,"44476":0,"44477":0,"44478":-1,"44479":-1,"44480":3893,"44481":2162,"44482":0,"44483":0,"44484":0,"44485":0,"44486":512,"44487":3082,"44488":0,"44489":2677,"44490":0,"44491":0,"44492":3496,"44493":0,"44494":-1,"44495":-1,"44496":-1,"44497":1830,"44498":-1,"44499":0,"44500":505,"44501":-1,"44502":3500,"44503":191,"44504":-1,"44505":0,"44506":-1,"44507":-1,"44508":-1,"44509":0,"44510":0,"44511":2294,"44512":0,"44513":0,"44514":124,"44515":0,"44516":2614,"44517":2554,"44518":0,"44519":-1,"44520":-1,"44521":-1,"44522":0,"44523":-1,"44524":2074,"44525":3916,"44526":0,"44527":-1,"44528":0,"44529":-1,"44530":-1,"44531":2400,"44532":0,"44533":3656,"44534":2063,"44535":0,"44536":0,"44537":0,"44538":0,"44539":0,"44540":0,"44541":0,"44542":0,"44543":-1,"44544":2985,"44545":0,"44546":3346,"44547":0,"44548":-1,"44549":0,"44550":0,"44551":0,"44552":0,"44553":3967,"44554":2365,"44555":455,"44556":0,"44557":0,"44558":0,"44559":2036,"44560":-1,"44561":3559,"44562":0,"44563":0,"44564":-1,"44565":0,"44566":-1,"44567":-1,"44568":-1,"44569":0,"44570":0,"44571":-1,"44572":3619,"44573":0,"44574":0,"44575":0,"44576":-1,"44577":3073,"44578":-1,"44579":0,"44580":0,"44581":0,"44582":-1,"44583":3445,"44584":0,"44585":-1,"44586":0,"44587":0,"44588":0,"44589":0,"44590":-1,"44591":0,"44592":96,"44593":0,"44594":3207,"44595":-1,"44596":0,"44597":2957,"44598":3450,"44599":0,"44600":2648,"44601":0,"44602":415,"44603":0,"44604":0,"44605":0,"44606":-1,"44607":3982,"44608":-1,"44609":-1,"44610":-1,"44611":0,"44612":3798,"44613":2382,"44614":0,"44615":0,"44616":0,"44617":0,"44618":0,"44619":0,"44620":2631,"44621":4058,"44622":-1,"44623":3164,"44624":-1,"44625":3765,"44626":-1,"44627":2319,"44628":0,"44629":0,"44630":-1,"44631":0,"44632":0,"44633":2443,"44634":-1,"44635":-1,"44636":2155,"44637":0,"44638":5,"44639":3212,"44640":-1,"44641":0,"44642":-1,"44643":0,"44644":1898,"44645":0,"44646":0,"44647":-1,"44648":2918,"44649":2886,"44650":0,"44651":-1,"44652":0,"44653":3562,"44654":3282,"44655":-1,"44656":0,"44657":0,"44658":0,"44659":0,"44660":2800,"44661":2092,"44662":-1,"44663":0,"44664":3919,"44665":-1,"44666":-1,"44667":-1,"44668":-1,"44669":0,"44670":1806,"44671":0,"44672":2739,"44673":0,"44674":-1,"44675":-1,"44676":0,"44677":-1,"44678":4031,"44679":-1,"44680":-1,"44681":0,"44682":0,"44683":-1,"44684":2625,"44685":-1,"44686":0,"44687":-1,"44688":3818,"44689":0,"44690":-1,"44691":0,"44692":2082,"44693":-1,"44694":0,"44695":0,"44696":0,"44697":0,"44698":0,"44699":3008,"44700":3540,"44701":1827,"44702":-1,"44703":1881,"44704":0,"44705":4058,"44706":-1,"44707":0,"44708":0,"44709":0,"44710":0,"44711":0,"44712":-1,"44713":0,"44714":2037,"44715":0,"44716":3530,"44717":-1,"44718":-1,"44719":2703,"44720":0,"44721":0,"44722":-1,"44723":-1,"44724":67,"44725":0,"44726":0,"44727":371,"44728":-1,"44729":3487,"44730":0,"44731":0,"44732":2207,"44733":0,"44734":0,"44735":0,"44736":-1,"44737":0,"44738":0,"44739":0,"44740":0,"44741":-1,"44742":0,"44743":0,"44744":3628,"44745":0,"44746":0,"44747":4013,"44748":-1,"44749":0,"44750":2591,"44751":-1,"44752":0,"44753":-1,"44754":0,"44755":0,"44756":0,"44757":0,"44758":3422,"44759":0,"44760":0,"44761":0,"44762":3541,"44763":3734,"44764":3253,"44765":-1,"44766":-1,"44767":0,"44768":2785,"44769":248,"44770":-1,"44771":0,"44772":-1,"44773":0,"44774":0,"44775":3131,"44776":3988,"44777":-1,"44778":3404,"44779":-1,"44780":-1,"44781":0,"44782":0,"44783":0,"44784":-1,"44785":3454,"44786":2108,"44787":0,"44788":0,"44789":3081,"44790":-1,"44791":0,"44792":-1,"44793":2919,"44794":0,"44795":0,"44796":-1,"44797":-1,"44798":0,"44799":0,"44800":-1,"44801":0,"44802":0,"44803":-1,"44804":3060,"44805":52,"44806":0,"44807":207,"44808":0,"44809":0,"44810":0,"44811":0,"44812":0,"44813":0,"44814":0,"44815":0,"44816":0,"44817":2794,"44818":-1,"44819":0,"44820":2619,"44821":2224,"44822":-1,"44823":2413,"44824":0,"44825":-1,"44826":0,"44827":-1,"44828":0,"44829":3813,"44830":0,"44831":2333,"44832":0,"44833":2937,"44834":1834,"44835":2906,"44836":0,"44837":0,"44838":-1,"44839":333,"44840":0,"44841":2008,"44842":-1,"44843":2942,"44844":0,"44845":-1,"44846":-1,"44847":3824,"44848":3136,"44849":1914,"44850":2650,"44851":2513,"44852":-1,"44853":441,"44854":-1,"44855":-1,"44856":0,"44857":0,"44858":-1,"44859":-1,"44860":0,"44861":2925,"44862":0,"44863":0,"44864":-1,"44865":-1,"44866":0,"44867":-1,"44868":0,"44869":0,"44870":-1,"44871":0,"44872":0,"44873":0,"44874":1938,"44875":0,"44876":0,"44877":-1,"44878":0,"44879":0,"44880":-1,"44881":0,"44882":-1,"44883":0,"44884":1897,"44885":-1,"44886":1929,"44887":-1,"44888":3858,"44889":2023,"44890":-1,"44891":0,"44892":-1,"44893":0,"44894":0,"44895":3994,"44896":0,"44897":3635,"44898":-1,"44899":216,"44900":1910,"44901":80,"44902":0,"44903":0,"44904":0,"44905":0,"44906":1952,"44907":0,"44908":0,"44909":-1,"44910":1862,"44911":0,"44912":-1,"44913":0,"44914":3773,"44915":-1,"44916":-1,"44917":0,"44918":0,"44919":-1,"44920":-1,"44921":0,"44922":-1,"44923":3398,"44924":2080,"44925":-1,"44926":-1,"44927":-1,"44928":-1,"44929":0,"44930":-1,"44931":-1,"44932":0,"44933":0,"44934":-1,"44935":-1,"44936":-1,"44937":0,"44938":2932,"44939":-1,"44940":-1,"44941":0,"44942":0,"44943":3467,"44944":-1,"44945":0,"44946":0,"44947":-1,"44948":3360,"44949":-1,"44950":3142,"44951":-1,"44952":-1,"44953":2897,"44954":0,"44955":-1,"44956":-1,"44957":0,"44958":2343,"44959":2036,"44960":-1,"44961":0,"44962":89,"44963":0,"44964":-1,"44965":-1,"44966":0,"44967":-1,"44968":-1,"44969":286,"44970":0,"44971":-1,"44972":0,"44973":-1,"44974":0,"44975":0,"44976":-1,"44977":-1,"44978":2756,"44979":2040,"44980":0,"44981":-1,"44982":0,"44983":-1,"44984":157,"44985":2181,"44986":0,"44987":-1,"44988":0,"44989":0,"44990":0,"44991":-1,"44992":-1,"44993":3220,"44994":0,"44995":3754,"44996":2389,"44997":0,"44998":-1,"44999":2756,"45000":1793,"45001":2311,"45002":2178,"45003":0,"45004":72,"45005":0,"45006":-1,"45007":-1,"45008":-1,"45009":3130,"45010":0,"45011":-1,"45012":0,"45013":2260,"45014":-1,"45015":-1,"45016":3821,"45017":1888,"45018":-1,"45019":3760,"45020":-1,"45021":0,"45022":0,"45023":0,"45024":0,"45025":0,"45026":-1,"45027":-1,"45028":-1,"45029":2048,"45030":0,"45031":2334,"45032":-1,"45033":-1,"45034":2966,"45035":0,"45036":0,"45037":0,"45038":-1,"45039":-1,"45040":-1,"45041":0,"45042":3018,"45043":-1,"45044":-1,"45045":0,"45046":0,"45047":172,"45048":1843,"45049":2222,"45050":-1,"45051":0,"45052":0,"45053":0,"45054":-1,"45055":-1,"45056":2840,"45057":0,"45058":2745,"45059":0,"45060":2718,"45061":-1,"45062":0,"45063":-1,"45064":-1,"45065":2641,"45066":2484,"45067":2813,"45068":2338,"45069":-1,"45070":0,"45071":-1,"45072":2986,"45073":-1,"45074":-1,"45075":-1,"45076":-1,"45077":2280,"45078":0,"45079":3825,"45080":0,"45081":-1,"45082":0,"45083":0,"45084":0,"45085":2555,"45086":0,"45087":0,"45088":419,"45089":0,"45090":0,"45091":79,"45092":3152,"45093":0,"45094":3379,"45095":-1,"45096":-1,"45097":0,"45098":3026,"45099":0,"45100":-1,"45101":-1,"45102":0,"45103":0,"45104":0,"45105":3885,"45106":0,"45107":2187,"45108":3692,"45109":3107,"45110":2385,"45111":171,"45112":2704,"45113":-1,"45114":-1,"45115":-1,"45116":-1,"45117":-1,"45118":0,"45119":0,"45120":0,"45121":-1,"45122":0,"45123":2313,"45124":0,"45125":452,"45126":0,"45127":3855,"45128":0,"45129":2236,"45130":-1,"45131":-1,"45132":0,"45133":-1,"45134":0,"45135":2436,"45136":-1,"45137":-1,"45138":0,"45139":0,"45140":-1,"45141":0,"45142":0,"45143":-1,"45144":-1,"45145":-1,"45146":0,"45147":0,"45148":-1,"45149":0,"45150":-1,"45151":0,"45152":0,"45153":0,"45154":0,"45155":-1,"45156":-1,"45157":0,"45158":0,"45159":0,"45160":0,"45161":0,"45162":-1,"45163":-1,"45164":-1,"45165":3922,"45166":3496,"45167":2602,"45168":-1,"45169":-1,"45170":-1,"45171":0,"45172":2472,"45173":503,"45174":0,"45175":0,"45176":0,"45177":3697,"45178":3874,"45179":3678,"45180":0,"45181":0,"45182":0,"45183":0,"45184":-1,"45185":0,"45186":-1,"45187":0,"45188":-1,"45189":0,"45190":-1,"45191":2305,"45192":-1,"45193":2659,"45194":1831,"45195":3408,"45196":2790,"45197":0,"45198":3169,"45199":0,"45200":-1,"45201":2139,"45202":0,"45203":0,"45204":0,"45205":-1,"45206":0,"45207":-1,"45208":-1,"45209":3731,"45210":-1,"45211":-1,"45212":0,"45213":0,"45214":0,"45215":-1,"45216":-1,"45217":0,"45218":2316,"45219":3833,"45220":-1,"45221":0,"45222":3709,"45223":0,"45224":-1,"45225":-1,"45226":0,"45227":0,"45228":3276,"45229":0,"45230":2495,"45231":0,"45232":0,"45233":2558,"45234":0,"45235":0,"45236":-1,"45237":0,"45238":-1,"45239":3676,"45240":3681,"45241":0,"45242":-1,"45243":0,"45244":3888,"45245":0,"45246":3376,"45247":0,"45248":0,"45249":3074,"45250":0,"45251":0,"45252":3304,"45253":-1,"45254":2108,"45255":3149,"45256":2095,"45257":2491,"45258":-1,"45259":-1,"45260":0,"45261":0,"45262":0,"45263":0,"45264":0,"45265":0,"45266":0,"45267":0,"45268":0,"45269":0,"45270":0,"45271":-1,"45272":-1,"45273":0,"45274":0,"45275":2785,"45276":0,"45277":-1,"45278":0,"45279":-1,"45280":0,"45281":0,"45282":0,"45283":0,"45284":0,"45285":188,"45286":0,"45287":0,"45288":0,"45289":-1,"45290":0,"45291":0,"45292":0,"45293":-1,"45294":4022,"45295":0,"45296":3053,"45297":0,"45298":-1,"45299":0,"45300":0,"45301":-1,"45302":0,"45303":0,"45304":3754,"45305":0,"45306":2239,"45307":0,"45308":0,"45309":2387,"45310":-1,"45311":3909,"45312":0,"45313":0,"45314":3637,"45315":0,"45316":0,"45317":-1,"45318":0,"45319":-1,"45320":2826,"45321":3640,"45322":0,"45323":0,"45324":2743,"45325":2811,"45326":-1,"45327":0,"45328":0,"45329":0,"45330":0,"45331":3629,"45332":2250,"45333":0,"45334":2040,"45335":-1,"45336":0,"45337":0,"45338":0,"45339":2106,"45340":0,"45341":-1,"45342":0,"45343":0,"45344":2476,"45345":-1,"45346":0,"45347":3071,"45348":0,"45349":3489,"45350":-1,"45351":0,"45352":-1,"45353":-1,"45354":3031,"45355":0,"45356":0,"45357":0,"45358":0,"45359":0,"45360":-1,"45361":4054,"45362":3002,"45363":0,"45364":0,"45365":-1,"45366":3018,"45367":-1,"45368":-1,"45369":-1,"45370":-1,"45371":3073,"45372":-1,"45373":2717,"45374":1949,"45375":-1,"45376":-1,"45377":0,"45378":0,"45379":0,"45380":-1,"45381":0,"45382":59,"45383":0,"45384":0,"45385":0,"45386":0,"45387":0,"45388":0,"45389":0,"45390":2493,"45391":-1,"45392":0,"45393":0,"45394":3993,"45395":-1,"45396":39,"45397":3533,"45398":-1,"45399":-1,"45400":3071,"45401":0,"45402":0,"45403":0,"45404":-1,"45405":1888,"45406":0,"45407":-1,"45408":3809,"45409":0,"45410":-1,"45411":-1,"45412":3434,"45413":-1,"45414":-1,"45415":-1,"45416":3284,"45417":-1,"45418":278,"45419":3055,"45420":0,"45421":0,"45422":-1,"45423":-1,"45424":-1,"45425":-1,"45426":-1,"45427":-1,"45428":-1,"45429":-1,"45430":-1,"45431":0,"45432":0,"45433":0,"45434":-1,"45435":2042,"45436":0,"45437":0,"45438":3681,"45439":1799,"45440":-1,"45441":3805,"45442":2101,"45443":0,"45444":2420,"45445":-1,"45446":1949,"45447":-1,"45448":0,"45449":0,"45450":3161,"45451":122,"45452":-1,"45453":0,"45454":3540,"45455":-1,"45456":3124,"45457":-1,"45458":0,"45459":-1,"45460":-1,"45461":0,"45462":0,"45463":-1,"45464":296,"45465":0,"45466":0,"45467":-1,"45468":-1,"45469":-1,"45470":0,"45471":3351,"45472":0,"45473":0,"45474":2239,"45475":-1,"45476":3839,"45477":0,"45478":-1,"45479":0,"45480":1823,"45481":0,"45482":-1,"45483":0,"45484":2179,"45485":3032,"45486":0,"45487":0,"45488":0,"45489":0,"45490":0,"45491":-1,"45492":-1,"45493":0,"45494":0,"45495":-1,"45496":3294,"45497":0,"45498":2513,"45499":0,"45500":0,"45501":0,"45502":2789,"45503":0,"45504":489,"45505":-1,"45506":-1,"45507":-1,"45508":0,"45509":2242,"45510":0,"45511":0,"45512":0,"45513":-1,"45514":2166,"45515":0,"45516":2417,"45517":0,"45518":0,"45519":0,"45520":0,"45521":-1,"45522":0,"45523":0,"45524":-1,"45525":0,"45526":0,"45527":-1,"45528":3091,"45529":276,"45530":-1,"45531":0,"45532":2818,"45533":0,"45534":3190,"45535":0,"45536":0,"45537":0,"45538":0,"45539":0,"45540":0,"45541":0,"45542":3488,"45543":0,"45544":0,"45545":0,"45546":-1,"45547":0,"45548":3667,"45549":-1,"45550":0,"45551":0,"45552":3921,"45553":0,"45554":0,"45555":-1,"45556":-1,"45557":0,"45558":-1,"45559":0,"45560":-1,"45561":-1,"45562":2322,"45563":0,"45564":2246,"45565":0,"45566":-1,"45567":-1,"45568":2300,"45569":3246,"45570":0,"45571":1924,"45572":0,"45573":-1,"45574":0,"45575":0,"45576":0,"45577":0,"45578":0,"45579":2077,"45580":0,"45581":-1,"45582":0,"45583":1781,"45584":2732,"45585":0,"45586":0,"45587":-1,"45588":-1,"45589":-1,"45590":-1,"45591":3238,"45592":1796,"45593":0,"45594":0,"45595":0,"45596":2022,"45597":0,"45598":-1,"45599":0,"45600":0,"45601":-1,"45602":0,"45603":-1,"45604":2611,"45605":-1,"45606":2594,"45607":192,"45608":0,"45609":-1,"45610":-1,"45611":2404,"45612":-1,"45613":0,"45614":-1,"45615":0,"45616":0,"45617":0,"45618":0,"45619":2076,"45620":-1,"45621":3475,"45622":0,"45623":0,"45624":161,"45625":0,"45626":3359,"45627":-1,"45628":0,"45629":0,"45630":-1,"45631":-1,"45632":0,"45633":-1,"45634":-1,"45635":-1,"45636":0,"45637":0,"45638":-1,"45639":-1,"45640":-1,"45641":0,"45642":-1,"45643":0,"45644":0,"45645":3814,"45646":0,"45647":0,"45648":0,"45649":2770,"45650":0,"45651":-1,"45652":-1,"45653":-1,"45654":-1,"45655":2986,"45656":0,"45657":150,"45658":0,"45659":2553,"45660":0,"45661":3768,"45662":3722,"45663":0,"45664":0,"45665":-1,"45666":0,"45667":0,"45668":0,"45669":0,"45670":0,"45671":0,"45672":0,"45673":0,"45674":0,"45675":0,"45676":0,"45677":0,"45678":0,"45679":-1,"45680":2494,"45681":202,"45682":-1,"45683":0,"45684":2686,"45685":0,"45686":0,"45687":0,"45688":3186,"45689":3360,"45690":0,"45691":3114,"45692":-1,"45693":0,"45694":0,"45695":0,"45696":265,"45697":0,"45698":-1,"45699":-1,"45700":-1,"45701":0,"45702":0,"45703":0,"45704":411,"45705":0,"45706":-1,"45707":-1,"45708":0,"45709":-1,"45710":-1,"45711":0,"45712":0,"45713":0,"45714":0,"45715":0,"45716":0,"45717":-1,"45718":-1,"45719":0,"45720":0,"45721":-1,"45722":0,"45723":0,"45724":-1,"45725":0,"45726":0,"45727":0,"45728":0,"45729":0,"45730":217,"45731":3733,"45732":-1,"45733":-1,"45734":-1,"45735":0,"45736":0,"45737":3396,"45738":153,"45739":0,"45740":0,"45741":0,"45742":0,"45743":-1,"45744":0,"45745":2614,"45746":2856,"45747":150,"45748":0,"45749":0,"45750":0,"45751":0,"45752":-1,"45753":-1,"45754":-1,"45755":2947,"45756":-1,"45757":2245,"45758":3027,"45759":0,"45760":262,"45761":1855,"45762":-1,"45763":-1,"45764":0,"45765":2357,"45766":-1,"45767":-1,"45768":-1,"45769":0,"45770":2707,"45771":0,"45772":-1,"45773":2629,"45774":-1,"45775":2092,"45776":0,"45777":-1,"45778":-1,"45779":0,"45780":-1,"45781":2411,"45782":0,"45783":0,"45784":0,"45785":0,"45786":-1,"45787":-1,"45788":354,"45789":0,"45790":-1,"45791":0,"45792":0,"45793":3726,"45794":-1,"45795":-1,"45796":0,"45797":0,"45798":3252,"45799":-1,"45800":0,"45801":0,"45802":-1,"45803":0,"45804":194,"45805":0,"45806":0,"45807":0,"45808":-1,"45809":-1,"45810":-1,"45811":3724,"45812":2990,"45813":133,"45814":0,"45815":-1,"45816":2648,"45817":-1,"45818":0,"45819":0,"45820":0,"45821":-1,"45822":-1,"45823":0,"45824":3788,"45825":0,"45826":0,"45827":2369,"45828":-1,"45829":0,"45830":363,"45831":0,"45832":-1,"45833":220,"45834":0,"45835":0,"45836":-1,"45837":304,"45838":2925,"45839":-1,"45840":0,"45841":3376,"45842":2095,"45843":0,"45844":0,"45845":2186,"45846":2867,"45847":1882,"45848":-1,"45849":0,"45850":2364,"45851":0,"45852":0,"45853":-1,"45854":0,"45855":0,"45856":0,"45857":0,"45858":3275,"45859":463,"45860":2683,"45861":3827,"45862":0,"45863":-1,"45864":3454,"45865":0,"45866":3230,"45867":-1,"45868":0,"45869":-1,"45870":-1,"45871":0,"45872":0,"45873":0,"45874":281,"45875":3480,"45876":0,"45877":0,"45878":0,"45879":304,"45880":2404,"45881":3281,"45882":3453,"45883":-1,"45884":0,"45885":-1,"45886":331,"45887":0,"45888":0,"45889":-1,"45890":0,"45891":-1,"45892":3790,"45893":-1,"45894":0,"45895":0,"45896":-1,"45897":-1,"45898":334,"45899":3686,"45900":-1,"45901":-1,"45902":-1,"45903":-1,"45904":0,"45905":0,"45906":0,"45907":0,"45908":0,"45909":0,"45910":-1,"45911":3342,"45912":0,"45913":2582,"45914":-1,"45915":0,"45916":0,"45917":-1,"45918":-1,"45919":494,"45920":0,"45921":0,"45922":3814,"45923":-1,"45924":3437,"45925":-1,"45926":158,"45927":2673,"45928":0,"45929":-1,"45930":-1,"45931":-1,"45932":1811,"45933":0,"45934":0,"45935":-1,"45936":-1,"45937":0,"45938":-1,"45939":0,"45940":0,"45941":0,"45942":3120,"45943":0,"45944":0,"45945":0,"45946":-1,"45947":-1,"45948":0,"45949":-1,"45950":0,"45951":0,"45952":0,"45953":-1,"45954":2482,"45955":-1,"45956":1927,"45957":0,"45958":0,"45959":-1,"45960":0,"45961":-1,"45962":0,"45963":-1,"45964":0,"45965":3416,"45966":-1,"45967":-1,"45968":0,"45969":3285,"45970":-1,"45971":0,"45972":0,"45973":3594,"45974":0,"45975":-1,"45976":-1,"45977":0,"45978":0,"45979":0,"45980":4048,"45981":4061,"45982":0,"45983":0,"45984":0,"45985":0,"45986":4041,"45987":0,"45988":0,"45989":0,"45990":-1,"45991":0,"45992":-1,"45993":-1,"45994":0,"45995":-1,"45996":-1,"45997":0,"45998":-1,"45999":0,"46000":-1,"46001":2827,"46002":-1,"46003":-1,"46004":-1,"46005":0,"46006":-1,"46007":0,"46008":-1,"46009":-1,"46010":0,"46011":0,"46012":-1,"46013":0,"46014":0,"46015":-1,"46016":0,"46017":0,"46018":0,"46019":-1,"46020":-1,"46021":-1,"46022":0,"46023":0,"46024":0,"46025":3118,"46026":-1,"46027":-1,"46028":0,"46029":0,"46030":-1,"46031":-1,"46032":0,"46033":0,"46034":-1,"46035":-1,"46036":-1,"46037":-1,"46038":-1,"46039":0,"46040":0,"46041":0,"46042":-1,"46043":0,"46044":-1,"46045":412,"46046":0,"46047":3380,"46048":0,"46049":2179,"46050":0,"46051":-1,"46052":80,"46053":0,"46054":-1,"46055":0,"46056":0,"46057":0,"46058":0,"46059":0,"46060":-1,"46061":-1,"46062":0,"46063":-1,"46064":0,"46065":0,"46066":-1,"46067":0,"46068":-1,"46069":139,"46070":0,"46071":-1,"46072":2390,"46073":-1,"46074":0,"46075":0,"46076":0,"46077":0,"46078":-1,"46079":0,"46080":-1,"46081":2110,"46082":0,"46083":2889,"46084":-1,"46085":-1,"46086":0,"46087":0,"46088":-1,"46089":2521,"46090":-1,"46091":0,"46092":0,"46093":0,"46094":-1,"46095":-1,"46096":0,"46097":0,"46098":3268,"46099":0,"46100":0,"46101":3468,"46102":0,"46103":3101,"46104":-1,"46105":0,"46106":-1,"46107":0,"46108":-1,"46109":3935,"46110":3376,"46111":-1,"46112":0,"46113":-1,"46114":0,"46115":0,"46116":203,"46117":3288,"46118":0,"46119":-1,"46120":0,"46121":-1,"46122":0,"46123":-1,"46124":3175,"46125":-1,"46126":-1,"46127":0,"46128":-1,"46129":0,"46130":0,"46131":0,"46132":0,"46133":0,"46134":2883,"46135":-1,"46136":0,"46137":0,"46138":-1,"46139":0,"46140":3504,"46141":0,"46142":-1,"46143":0,"46144":0,"46145":0,"46146":-1,"46147":2627,"46148":-1,"46149":0,"46150":2917,"46151":3461,"46152":0,"46153":0,"46154":0,"46155":-1,"46156":0,"46157":-1,"46158":-1,"46159":0,"46160":0,"46161":3694,"46162":-1,"46163":0,"46164":0,"46165":-1,"46166":-1,"46167":1822,"46168":177,"46169":0,"46170":-1,"46171":3884,"46172":3725,"46173":0,"46174":-1,"46175":0,"46176":2975,"46177":3672,"46178":0,"46179":0,"46180":0,"46181":-1,"46182":3758,"46183":-1,"46184":0,"46185":0,"46186":0,"46187":-1,"46188":1783,"46189":-1,"46190":0,"46191":0,"46192":-1,"46193":0,"46194":0,"46195":-1,"46196":0,"46197":-1,"46198":-1,"46199":-1,"46200":0,"46201":0,"46202":0,"46203":-1,"46204":0,"46205":0,"46206":0,"46207":-1,"46208":2774,"46209":2147,"46210":0,"46211":0,"46212":0,"46213":-1,"46214":-1,"46215":0,"46216":-1,"46217":0,"46218":3366,"46219":-1,"46220":2555,"46221":-1,"46222":-1,"46223":-1,"46224":-1,"46225":3179,"46226":3873,"46227":2871,"46228":2339,"46229":0,"46230":0,"46231":0,"46232":0,"46233":-1,"46234":0,"46235":-1,"46236":2217,"46237":1952,"46238":0,"46239":1939,"46240":0,"46241":0,"46242":2713,"46243":1860,"46244":0,"46245":-1,"46246":0,"46247":0,"46248":2564,"46249":-1,"46250":3679,"46251":-1,"46252":3370,"46253":2940,"46254":-1,"46255":-1,"46256":-1,"46257":3379,"46258":89,"46259":0,"46260":3481,"46261":0,"46262":0,"46263":1879,"46264":-1,"46265":-1,"46266":0,"46267":0,"46268":3820,"46269":0,"46270":0,"46271":260,"46272":0,"46273":0,"46274":0,"46275":0,"46276":0,"46277":0,"46278":-1,"46279":3772,"46280":-1,"46281":0,"46282":-1,"46283":0,"46284":2961,"46285":-1,"46286":-1,"46287":0,"46288":3895,"46289":3154,"46290":0,"46291":0,"46292":20,"46293":0,"46294":0,"46295":0,"46296":0,"46297":0,"46298":0,"46299":0,"46300":0,"46301":-1,"46302":3971,"46303":0,"46304":2958,"46305":2543,"46306":2134,"46307":-1,"46308":0,"46309":0,"46310":-1,"46311":-1,"46312":0,"46313":0,"46314":0,"46315":0,"46316":-1,"46317":-1,"46318":0,"46319":-1,"46320":2909,"46321":0,"46322":0,"46323":2529,"46324":0,"46325":0,"46326":-1,"46327":2851,"46328":-1,"46329":0,"46330":-1,"46331":-1,"46332":2709,"46333":0,"46334":-1,"46335":0,"46336":0,"46337":-1,"46338":0,"46339":2816,"46340":2762,"46341":279,"46342":0,"46343":0,"46344":0,"46345":2284,"46346":0,"46347":-1,"46348":-1,"46349":1878,"46350":275,"46351":2663,"46352":2936,"46353":3203,"46354":0,"46355":-1,"46356":0,"46357":0,"46358":0,"46359":-1,"46360":0,"46361":32,"46362":0,"46363":3691,"46364":3452,"46365":0,"46366":-1,"46367":0,"46368":0,"46369":3996,"46370":0,"46371":0,"46372":0,"46373":-1,"46374":-1,"46375":-1,"46376":0,"46377":0,"46378":0,"46379":0,"46380":46,"46381":-1,"46382":-1,"46383":-1,"46384":2652,"46385":0,"46386":0,"46387":-1,"46388":-1,"46389":3183,"46390":2362,"46391":0,"46392":3695,"46393":0,"46394":2084,"46395":3207,"46396":-1,"46397":0,"46398":0,"46399":-1,"46400":2343,"46401":-1,"46402":3716,"46403":0,"46404":3316,"46405":0,"46406":0,"46407":3537,"46408":2188,"46409":0,"46410":0,"46411":222,"46412":-1,"46413":0,"46414":0,"46415":3838,"46416":0,"46417":-1,"46418":-1,"46419":-1,"46420":-1,"46421":0,"46422":-1,"46423":0,"46424":3933,"46425":0,"46426":0,"46427":-1,"46428":0,"46429":-1,"46430":-1,"46431":0,"46432":0,"46433":0,"46434":0,"46435":0,"46436":-1,"46437":-1,"46438":0,"46439":-1,"46440":3850,"46441":2029,"46442":-1,"46443":0,"46444":2931,"46445":-1,"46446":3243,"46447":-1,"46448":0,"46449":2767,"46450":-1,"46451":-1,"46452":0,"46453":-1,"46454":0,"46455":0,"46456":-1,"46457":0,"46458":3328,"46459":0,"46460":3854,"46461":0,"46462":-1,"46463":-1,"46464":0,"46465":-1,"46466":0,"46467":0,"46468":0,"46469":-1,"46470":-1,"46471":3842,"46472":0,"46473":0,"46474":-1,"46475":3,"46476":0,"46477":3606,"46478":0,"46479":-1,"46480":2064,"46481":-1,"46482":3323,"46483":363,"46484":-1,"46485":-1,"46486":3085,"46487":0,"46488":198,"46489":0,"46490":3056,"46491":0,"46492":-1,"46493":2136,"46494":0,"46495":-1,"46496":0,"46497":-1,"46498":-1,"46499":0,"46500":0,"46501":0,"46502":-1,"46503":0,"46504":0,"46505":-1,"46506":0,"46507":-1,"46508":-1,"46509":0,"46510":3165,"46511":0,"46512":3136,"46513":-1,"46514":0,"46515":3720,"46516":0,"46517":2896,"46518":0,"46519":0,"46520":0,"46521":0,"46522":0,"46523":0,"46524":2083,"46525":-1,"46526":0,"46527":3469,"46528":-1,"46529":-1,"46530":0,"46531":0,"46532":2008,"46533":2277,"46534":0,"46535":-1,"46536":0,"46537":0,"46538":4003,"46539":-1,"46540":2707,"46541":62,"46542":4032,"46543":1882,"46544":0,"46545":0,"46546":0,"46547":-1,"46548":-1,"46549":0,"46550":0,"46551":0,"46552":0,"46553":0,"46554":-1,"46555":3699,"46556":-1,"46557":0,"46558":-1,"46559":0,"46560":-1,"46561":0,"46562":204,"46563":0,"46564":0,"46565":0,"46566":-1,"46567":0,"46568":-1,"46569":0,"46570":0,"46571":2470,"46572":-1,"46573":0,"46574":0,"46575":-1,"46576":-1,"46577":1824,"46578":0,"46579":0,"46580":0,"46581":0,"46582":-1,"46583":0,"46584":3789,"46585":-1,"46586":0,"46587":2237,"46588":2983,"46589":2137,"46590":0,"46591":-1,"46592":0,"46593":-1,"46594":0,"46595":0,"46596":3696,"46597":3118,"46598":2151,"46599":-1,"46600":2945,"46601":0,"46602":0,"46603":2109,"46604":3720,"46605":0,"46606":-1,"46607":0,"46608":-1,"46609":0,"46610":0,"46611":0,"46612":-1,"46613":3519,"46614":3636,"46615":0,"46616":0,"46617":0,"46618":0,"46619":2945,"46620":0,"46621":0,"46622":0,"46623":0,"46624":0,"46625":1947,"46626":0,"46627":0,"46628":-1,"46629":2190,"46630":-1,"46631":3710,"46632":3656,"46633":3698,"46634":246,"46635":0,"46636":0,"46637":0,"46638":0,"46639":3852,"46640":-1,"46641":0,"46642":3498,"46643":-1,"46644":-1,"46645":0,"46646":-1,"46647":-1,"46648":0,"46649":2176,"46650":0,"46651":-1,"46652":3702,"46653":0,"46654":180,"46655":0,"46656":-1,"46657":0,"46658":0,"46659":0,"46660":-1,"46661":0,"46662":-1,"46663":0,"46664":-1,"46665":0,"46666":1870,"46667":-1,"46668":0,"46669":0,"46670":0,"46671":0,"46672":0,"46673":-1,"46674":0,"46675":0,"46676":3313,"46677":-1,"46678":3934,"46679":0,"46680":-1,"46681":2436,"46682":0,"46683":0,"46684":-1,"46685":0,"46686":0,"46687":-1,"46688":2090,"46689":-1,"46690":55,"46691":0,"46692":3484,"46693":0,"46694":2885,"46695":0,"46696":0,"46697":0,"46698":-1,"46699":-1,"46700":0,"46701":0,"46702":0,"46703":0,"46704":-1,"46705":0,"46706":0,"46707":-1,"46708":0,"46709":0,"46710":2201,"46711":2261,"46712":-1,"46713":0,"46714":0,"46715":2673,"46716":-1,"46717":-1,"46718":3539,"46719":0,"46720":0,"46721":0,"46722":0,"46723":0,"46724":0,"46725":0,"46726":0,"46727":0,"46728":-1,"46729":2691,"46730":-1,"46731":0,"46732":0,"46733":0,"46734":3430,"46735":-1,"46736":-1,"46737":3620,"46738":3254,"46739":-1,"46740":0,"46741":-1,"46742":0,"46743":-1,"46744":0,"46745":0,"46746":0,"46747":0,"46748":0,"46749":3394,"46750":0,"46751":0,"46752":0,"46753":0,"46754":-1,"46755":0,"46756":-1,"46757":-1,"46758":0,"46759":-1,"46760":0,"46761":-1,"46762":-1,"46763":163,"46764":-1,"46765":-1,"46766":-1,"46767":-1,"46768":-1,"46769":0,"46770":3649,"46771":2566,"46772":-1,"46773":3889,"46774":0,"46775":-1,"46776":0,"46777":3483,"46778":2907,"46779":0,"46780":0,"46781":0,"46782":2836,"46783":2410,"46784":-1,"46785":-1,"46786":2580,"46787":1900,"46788":-1,"46789":0,"46790":0,"46791":0,"46792":-1,"46793":-1,"46794":-1,"46795":4017,"46796":-1,"46797":2209,"46798":0,"46799":1927,"46800":-1,"46801":0,"46802":0,"46803":0,"46804":2503,"46805":0,"46806":0,"46807":0,"46808":0,"46809":0,"46810":-1,"46811":3954,"46812":0,"46813":0,"46814":-1,"46815":0,"46816":2999,"46817":-1,"46818":-1,"46819":0,"46820":0,"46821":0,"46822":373,"46823":-1,"46824":0,"46825":3899,"46826":-1,"46827":0,"46828":-1,"46829":-1,"46830":-1,"46831":-1,"46832":0,"46833":0,"46834":0,"46835":0,"46836":0,"46837":2703,"46838":0,"46839":3251,"46840":-1,"46841":0,"46842":0,"46843":0,"46844":3450,"46845":0,"46846":2795,"46847":0,"46848":-1,"46849":-1,"46850":-1,"46851":0,"46852":2095,"46853":3533,"46854":0,"46855":2976,"46856":0,"46857":0,"46858":0,"46859":2275,"46860":2408,"46861":-1,"46862":0,"46863":0,"46864":2647,"46865":0,"46866":-1,"46867":2545,"46868":3310,"46869":-1,"46870":0,"46871":0,"46872":-1,"46873":3963,"46874":3396,"46875":0,"46876":-1,"46877":-1,"46878":0,"46879":0,"46880":2187,"46881":0,"46882":0,"46883":262,"46884":-1,"46885":-1,"46886":-1,"46887":0,"46888":0,"46889":0,"46890":2,"46891":-1,"46892":346,"46893":0,"46894":-1,"46895":3711,"46896":0,"46897":2966,"46898":-1,"46899":-1,"46900":404,"46901":-1,"46902":0,"46903":3624,"46904":3988,"46905":0,"46906":0,"46907":0,"46908":0,"46909":0,"46910":-1,"46911":0,"46912":2940,"46913":-1,"46914":0,"46915":2898,"46916":3904,"46917":3464,"46918":0,"46919":0,"46920":0,"46921":0,"46922":0,"46923":-1,"46924":-1,"46925":0,"46926":0,"46927":-1,"46928":3287,"46929":-1,"46930":0,"46931":-1,"46932":4051,"46933":0,"46934":2799,"46935":2358,"46936":0,"46937":-1,"46938":2972,"46939":1879,"46940":0,"46941":-1,"46942":2043,"46943":3146,"46944":3889,"46945":0,"46946":0,"46947":0,"46948":0,"46949":0,"46950":-1,"46951":2445,"46952":0,"46953":0,"46954":3080,"46955":-1,"46956":-1,"46957":-1,"46958":-1,"46959":0,"46960":0,"46961":3267,"46962":3944,"46963":0,"46964":0,"46965":0,"46966":0,"46967":0,"46968":0,"46969":3064,"46970":0,"46971":-1,"46972":3530,"46973":3841,"46974":-1,"46975":0,"46976":3094,"46977":0,"46978":3467,"46979":0,"46980":-1,"46981":0,"46982":-1,"46983":0,"46984":3912,"46985":0,"46986":-1,"46987":1842,"46988":-1,"46989":-1,"46990":0,"46991":0,"46992":-1,"46993":3722,"46994":-1,"46995":0,"46996":2437,"46997":0,"46998":3149,"46999":3984,"47000":-1,"47001":0,"47002":-1,"47003":3748,"47004":0,"47005":2811,"47006":3604,"47007":0,"47008":-1,"47009":0,"47010":2406,"47011":0,"47012":0,"47013":3810,"47014":-1,"47015":0,"47016":0,"47017":3684,"47018":2797,"47019":2055,"47020":-1,"47021":0,"47022":-1,"47023":0,"47024":0,"47025":-1,"47026":-1,"47027":3327,"47028":0,"47029":504,"47030":3454,"47031":0,"47032":-1,"47033":3388,"47034":3353,"47035":0,"47036":2419,"47037":-1,"47038":-1,"47039":3457,"47040":-1,"47041":-1,"47042":2857,"47043":-1,"47044":2754,"47045":0,"47046":0,"47047":3218,"47048":-1,"47049":2759,"47050":2311,"47051":1978,"47052":-1,"47053":0,"47054":2126,"47055":-1,"47056":-1,"47057":0,"47058":0,"47059":-1,"47060":-1,"47061":-1,"47062":0,"47063":0,"47064":-1,"47065":0,"47066":0,"47067":0,"47068":0,"47069":3358,"47070":-1,"47071":3696,"47072":0,"47073":0,"47074":0,"47075":332,"47076":3668,"47077":472,"47078":2450,"47079":0,"47080":0,"47081":0,"47082":3864,"47083":0,"47084":-1,"47085":-1,"47086":-1,"47087":-1,"47088":0,"47089":0,"47090":0,"47091":2859,"47092":2553,"47093":-1,"47094":0,"47095":-1,"47096":-1,"47097":0,"47098":-1,"47099":0,"47100":0,"47101":0,"47102":0,"47103":0,"47104":449,"47105":0,"47106":3200,"47107":0,"47108":3986,"47109":364,"47110":0,"47111":0,"47112":0,"47113":0,"47114":3392,"47115":0,"47116":3231,"47117":-1,"47118":3032,"47119":1839,"47120":0,"47121":0,"47122":-1,"47123":-1,"47124":0,"47125":-1,"47126":0,"47127":-1,"47128":-1,"47129":-1,"47130":459,"47131":0,"47132":-1,"47133":0,"47134":-1,"47135":0,"47136":-1,"47137":0,"47138":-1,"47139":227,"47140":0,"47141":0,"47142":248,"47143":0,"47144":3786,"47145":0,"47146":0,"47147":0,"47148":0,"47149":-1,"47150":0,"47151":1817,"47152":0,"47153":0,"47154":-1,"47155":0,"47156":0,"47157":0,"47158":-1,"47159":0,"47160":0,"47161":2935,"47162":0,"47163":0,"47164":2650,"47165":0,"47166":3791,"47167":0,"47168":2640,"47169":456,"47170":0,"47171":0,"47172":0,"47173":0,"47174":0,"47175":142,"47176":0,"47177":0,"47178":-1,"47179":-1,"47180":1839,"47181":-1,"47182":0,"47183":0,"47184":0,"47185":0,"47186":0,"47187":-1,"47188":-1,"47189":0,"47190":-1,"47191":-1,"47192":0,"47193":-1,"47194":0,"47195":-1,"47196":0,"47197":3171,"47198":-1,"47199":0,"47200":-1,"47201":-1,"47202":0,"47203":-1,"47204":0,"47205":0,"47206":-1,"47207":0,"47208":218,"47209":0,"47210":-1,"47211":-1,"47212":2677,"47213":2215,"47214":1953,"47215":2347,"47216":0,"47217":3938,"47218":2483,"47219":3011,"47220":0,"47221":0,"47222":0,"47223":-1,"47224":3948,"47225":0,"47226":0,"47227":0,"47228":-1,"47229":-1,"47230":2245,"47231":-1,"47232":-1,"47233":-1,"47234":-1,"47235":-1,"47236":-1,"47237":3787,"47238":46,"47239":-1,"47240":2429,"47241":2840,"47242":0,"47243":2433,"47244":0,"47245":-1,"47246":0,"47247":3045,"47248":2678,"47249":-1,"47250":0,"47251":-1,"47252":-1,"47253":-1,"47254":2045,"47255":-1,"47256":0,"47257":0,"47258":-1,"47259":-1,"47260":0,"47261":-1,"47262":-1,"47263":-1,"47264":330,"47265":0,"47266":3323,"47267":-1,"47268":3415,"47269":-1,"47270":0,"47271":-1,"47272":-1,"47273":0,"47274":0,"47275":0,"47276":1876,"47277":309,"47278":-1,"47279":2497,"47280":-1,"47281":0,"47282":0,"47283":1859,"47284":1931,"47285":0,"47286":3389,"47287":0,"47288":-1,"47289":0,"47290":-1,"47291":0,"47292":-1,"47293":0,"47294":0,"47295":0,"47296":0,"47297":0,"47298":-1,"47299":149,"47300":0,"47301":0,"47302":3172,"47303":0,"47304":2515,"47305":0,"47306":0,"47307":1826,"47308":3573,"47309":-1,"47310":0,"47311":0,"47312":0,"47313":-1,"47314":-1,"47315":-1,"47316":0,"47317":-1,"47318":0,"47319":0,"47320":0,"47321":3855,"47322":0,"47323":-1,"47324":-1,"47325":-1,"47326":-1,"47327":0,"47328":0,"47329":0,"47330":0,"47331":0,"47332":-1,"47333":-1,"47334":0,"47335":3229,"47336":-1,"47337":0,"47338":0,"47339":-1,"47340":-1,"47341":0,"47342":2473,"47343":-1,"47344":2344,"47345":-1,"47346":-1,"47347":-1,"47348":-1,"47349":-1,"47350":-1,"47351":-1,"47352":0,"47353":0,"47354":3425,"47355":0,"47356":0,"47357":0,"47358":46,"47359":-1,"47360":0,"47361":-1,"47362":0,"47363":-1,"47364":-1,"47365":3147,"47366":3372,"47367":-1,"47368":0,"47369":0,"47370":-1,"47371":-1,"47372":0,"47373":2903,"47374":0,"47375":0,"47376":0,"47377":-1,"47378":21,"47379":0,"47380":3417,"47381":0,"47382":0,"47383":0,"47384":0,"47385":-1,"47386":366,"47387":2530,"47388":2260,"47389":-1,"47390":0,"47391":1975,"47392":0,"47393":0,"47394":-1,"47395":1891,"47396":4033,"47397":-1,"47398":0,"47399":-1,"47400":0,"47401":0,"47402":0,"47403":0,"47404":-1,"47405":0,"47406":-1,"47407":-1,"47408":-1,"47409":2074,"47410":-1,"47411":-1,"47412":3191,"47413":0,"47414":0,"47415":3670,"47416":0,"47417":-1,"47418":-1,"47419":-1,"47420":0,"47421":3277,"47422":0,"47423":3479,"47424":0,"47425":0,"47426":0,"47427":-1,"47428":0,"47429":0,"47430":0,"47431":-1,"47432":3367,"47433":-1,"47434":-1,"47435":0,"47436":-1,"47437":452,"47438":-1,"47439":2846,"47440":3227,"47441":-1,"47442":-1,"47443":0,"47444":3992,"47445":2864,"47446":-1,"47447":0,"47448":3650,"47449":-1,"47450":0,"47451":0,"47452":2737,"47453":2738,"47454":0,"47455":0,"47456":0,"47457":-1,"47458":-1,"47459":0,"47460":0,"47461":3018,"47462":0,"47463":-1,"47464":3431,"47465":0,"47466":2158,"47467":-1,"47468":397,"47469":2702,"47470":0,"47471":3081,"47472":0,"47473":3644,"47474":0,"47475":-1,"47476":0,"47477":-1,"47478":-1,"47479":2642,"47480":3092,"47481":-1,"47482":0,"47483":1791,"47484":3549,"47485":-1,"47486":0,"47487":-1,"47488":2056,"47489":0,"47490":3963,"47491":2795,"47492":3082,"47493":-1,"47494":3576,"47495":-1,"47496":270,"47497":-1,"47498":-1,"47499":0,"47500":3042,"47501":0,"47502":-1,"47503":2311,"47504":0,"47505":0,"47506":2779,"47507":0,"47508":0,"47509":0,"47510":-1,"47511":-1,"47512":2860,"47513":0,"47514":-1,"47515":3353,"47516":467,"47517":-1,"47518":0,"47519":-1,"47520":0,"47521":3984,"47522":0,"47523":-1,"47524":3537,"47525":3970,"47526":0,"47527":0,"47528":3987,"47529":3283,"47530":2256,"47531":3219,"47532":-1,"47533":-1,"47534":-1,"47535":0,"47536":342,"47537":3788,"47538":4058,"47539":0,"47540":0,"47541":-1,"47542":-1,"47543":3412,"47544":-1,"47545":-1,"47546":3304,"47547":-1,"47548":2637,"47549":-1,"47550":-1,"47551":-1,"47552":0,"47553":2066,"47554":0,"47555":0,"47556":0,"47557":0,"47558":-1,"47559":286,"47560":0,"47561":0,"47562":0,"47563":0,"47564":3648,"47565":0,"47566":-1,"47567":0,"47568":-1,"47569":0,"47570":0,"47571":0,"47572":0,"47573":-1,"47574":1957,"47575":-1,"47576":0,"47577":0,"47578":1978,"47579":-1,"47580":0,"47581":0,"47582":2486,"47583":1865,"47584":0,"47585":-1,"47586":0,"47587":0,"47588":-1,"47589":-1,"47590":-1,"47591":3595,"47592":-1,"47593":0,"47594":2181,"47595":3340,"47596":0,"47597":-1,"47598":0,"47599":0,"47600":4037,"47601":330,"47602":0,"47603":-1,"47604":0,"47605":2397,"47606":-1,"47607":-1,"47608":0,"47609":2468,"47610":0,"47611":-1,"47612":0,"47613":3554,"47614":0,"47615":-1,"47616":0,"47617":-1,"47618":0,"47619":3987,"47620":0,"47621":2298,"47622":-1,"47623":-1,"47624":-1,"47625":0,"47626":0,"47627":2586,"47628":3531,"47629":2992,"47630":-1,"47631":2428,"47632":0,"47633":2759,"47634":0,"47635":-1,"47636":0,"47637":-1,"47638":-1,"47639":-1,"47640":-1,"47641":2257,"47642":0,"47643":0,"47644":0,"47645":-1,"47646":0,"47647":0,"47648":0,"47649":0,"47650":2322,"47651":-1,"47652":3412,"47653":-1,"47654":0,"47655":2499,"47656":2079,"47657":3617,"47658":0,"47659":1855,"47660":-1,"47661":-1,"47662":-1,"47663":0,"47664":0,"47665":0,"47666":-1,"47667":-1,"47668":0,"47669":-1,"47670":0,"47671":0,"47672":-1,"47673":-1,"47674":0,"47675":0,"47676":0,"47677":-1,"47678":-1,"47679":2707,"47680":-1,"47681":-1,"47682":3783,"47683":0,"47684":0,"47685":209,"47686":-1,"47687":0,"47688":0,"47689":0,"47690":2254,"47691":13,"47692":-1,"47693":0,"47694":-1,"47695":-1,"47696":0,"47697":0,"47698":-1,"47699":-1,"47700":-1,"47701":3191,"47702":-1,"47703":-1,"47704":3429,"47705":0,"47706":0,"47707":2461,"47708":-1,"47709":-1,"47710":-1,"47711":0,"47712":0,"47713":-1,"47714":0,"47715":0,"47716":4017,"47717":3869,"47718":337,"47719":-1,"47720":0,"47721":0,"47722":3826,"47723":3243,"47724":2234,"47725":-1,"47726":0,"47727":0,"47728":3736,"47729":-1,"47730":0,"47731":2169,"47732":3093,"47733":0,"47734":2355,"47735":0,"47736":0,"47737":2018,"47738":-1,"47739":0,"47740":3688,"47741":0,"47742":0,"47743":0,"47744":0,"47745":-1,"47746":-1,"47747":398,"47748":0,"47749":-1,"47750":2958,"47751":0,"47752":-1,"47753":0,"47754":2276,"47755":-1,"47756":-1,"47757":3624,"47758":2336,"47759":0,"47760":0,"47761":4033,"47762":0,"47763":2560,"47764":0,"47765":2712,"47766":0,"47767":0,"47768":2580,"47769":-1,"47770":3556,"47771":-1,"47772":0,"47773":2167,"47774":-1,"47775":0,"47776":0,"47777":3850,"47778":2626,"47779":2156,"47780":0,"47781":-1,"47782":297,"47783":0,"47784":0,"47785":1892,"47786":0,"47787":0,"47788":0,"47789":2008,"47790":0,"47791":0,"47792":-1,"47793":0,"47794":3187,"47795":2412,"47796":0,"47797":3517,"47798":212,"47799":217,"47800":0,"47801":0,"47802":-1,"47803":-1,"47804":0,"47805":2699,"47806":3908,"47807":-1,"47808":1807,"47809":0,"47810":-1,"47811":0,"47812":0,"47813":0,"47814":0,"47815":1799,"47816":2097,"47817":3490,"47818":319,"47819":-1,"47820":-1,"47821":0,"47822":450,"47823":2542,"47824":3871,"47825":0,"47826":-1,"47827":-1,"47828":-1,"47829":3681,"47830":-1,"47831":2516,"47832":0,"47833":-1,"47834":170,"47835":-1,"47836":3636,"47837":-1,"47838":3845,"47839":3484,"47840":0,"47841":3506,"47842":-1,"47843":3344,"47844":-1,"47845":-1,"47846":0,"47847":-1,"47848":3839,"47849":-1,"47850":0,"47851":-1,"47852":0,"47853":2841,"47854":0,"47855":-1,"47856":-1,"47857":0,"47858":0,"47859":-1,"47860":0,"47861":-1,"47862":-1,"47863":0,"47864":-1,"47865":0,"47866":-1,"47867":-1,"47868":265,"47869":2034,"47870":-1,"47871":0,"47872":-1,"47873":0,"47874":2338,"47875":253,"47876":-1,"47877":0,"47878":-1,"47879":0,"47880":0,"47881":0,"47882":0,"47883":0,"47884":-1,"47885":3566,"47886":3561,"47887":-1,"47888":-1,"47889":0,"47890":-1,"47891":0,"47892":-1,"47893":-1,"47894":43,"47895":-1,"47896":3304,"47897":0,"47898":0,"47899":3500,"47900":1989,"47901":0,"47902":-1,"47903":3110,"47904":2284,"47905":0,"47906":0,"47907":-1,"47908":2379,"47909":-1,"47910":-1,"47911":-1,"47912":0,"47913":-1,"47914":3678,"47915":0,"47916":2424,"47917":0,"47918":0,"47919":0,"47920":-1,"47921":2945,"47922":3347,"47923":-1,"47924":0,"47925":0,"47926":3782,"47927":-1,"47928":3422,"47929":-1,"47930":2910,"47931":-1,"47932":3965,"47933":-1,"47934":0,"47935":25,"47936":-1,"47937":0,"47938":0,"47939":0,"47940":-1,"47941":0,"47942":2237,"47943":0,"47944":-1,"47945":0,"47946":-1,"47947":-1,"47948":2163,"47949":0,"47950":0,"47951":0,"47952":0,"47953":2342,"47954":0,"47955":-1,"47956":34,"47957":98,"47958":0,"47959":3951,"47960":0,"47961":0,"47962":461,"47963":0,"47964":0,"47965":0,"47966":2448,"47967":0,"47968":-1,"47969":0,"47970":0,"47971":-1,"47972":0,"47973":0,"47974":0,"47975":-1,"47976":0,"47977":-1,"47978":-1,"47979":-1,"47980":-1,"47981":0,"47982":424,"47983":0,"47984":0,"47985":-1,"47986":0,"47987":-1,"47988":-1,"47989":0,"47990":2784,"47991":2121,"47992":0,"47993":0,"47994":0,"47995":0,"47996":0,"47997":0,"47998":155,"47999":-1,"48000":0,"48001":3899,"48002":-1,"48003":-1,"48004":0,"48005":2401,"48006":2049,"48007":3766,"48008":3230,"48009":0,"48010":0,"48011":0,"48012":2140,"48013":2057,"48014":0,"48015":-1,"48016":-1,"48017":-1,"48018":2448,"48019":-1,"48020":3941,"48021":0,"48022":-1,"48023":0,"48024":0,"48025":-1,"48026":0,"48027":0,"48028":0,"48029":0,"48030":-1,"48031":0,"48032":0,"48033":2783,"48034":0,"48035":3039,"48036":2203,"48037":0,"48038":0,"48039":0,"48040":0,"48041":0,"48042":0,"48043":0,"48044":-1,"48045":-1,"48046":-1,"48047":-1,"48048":-1,"48049":3864,"48050":-1,"48051":3795,"48052":-1,"48053":0,"48054":-1,"48055":0,"48056":0,"48057":-1,"48058":-1,"48059":-1,"48060":0,"48061":0,"48062":2542,"48063":-1,"48064":-1,"48065":0,"48066":0,"48067":0,"48068":3414,"48069":0,"48070":0,"48071":0,"48072":0,"48073":0,"48074":3506,"48075":-1,"48076":0,"48077":-1,"48078":3737,"48079":0,"48080":0,"48081":-1,"48082":-1,"48083":0,"48084":0,"48085":0,"48086":2369,"48087":0,"48088":0,"48089":2258,"48090":0,"48091":0,"48092":-1,"48093":0,"48094":3204,"48095":0,"48096":-1,"48097":0,"48098":0,"48099":0,"48100":-1,"48101":3677,"48102":0,"48103":-1,"48104":-1,"48105":-1,"48106":3859,"48107":-1,"48108":2112,"48109":0,"48110":0,"48111":1781,"48112":-1,"48113":3542,"48114":-1,"48115":0,"48116":-1,"48117":0,"48118":-1,"48119":0,"48120":-1,"48121":-1,"48122":-1,"48123":3814,"48124":0,"48125":0,"48126":-1,"48127":0,"48128":0,"48129":0,"48130":3863,"48131":0,"48132":0,"48133":0,"48134":0,"48135":0,"48136":-1,"48137":0,"48138":0,"48139":-1,"48140":0,"48141":-1,"48142":0,"48143":-1,"48144":-1,"48145":0,"48146":-1,"48147":2845,"48148":0,"48149":0,"48150":0,"48151":484,"48152":3435,"48153":0,"48154":3212,"48155":21,"48156":-1,"48157":0,"48158":2063,"48159":0,"48160":0,"48161":-1,"48162":0,"48163":0,"48164":0,"48165":3618,"48166":0,"48167":0,"48168":0,"48169":0,"48170":0,"48171":2889,"48172":1995,"48173":3279,"48174":-1,"48175":-1,"48176":2427,"48177":0,"48178":0,"48179":0,"48180":-1,"48181":3133,"48182":2783,"48183":3366,"48184":-1,"48185":0,"48186":3529,"48187":3916,"48188":0,"48189":0,"48190":1897,"48191":2744,"48192":-1,"48193":0,"48194":3617,"48195":322,"48196":1941,"48197":0,"48198":-1,"48199":0,"48200":0,"48201":-1,"48202":204,"48203":0,"48204":-1,"48205":-1,"48206":-1,"48207":0,"48208":360,"48209":-1,"48210":2357,"48211":0,"48212":0,"48213":-1,"48214":0,"48215":1998,"48216":0,"48217":-1,"48218":48,"48219":0,"48220":1854,"48221":3933,"48222":0,"48223":2444,"48224":2114,"48225":-1,"48226":0,"48227":0,"48228":0,"48229":-1,"48230":2578,"48231":0,"48232":-1,"48233":3530,"48234":454,"48235":-1,"48236":0,"48237":0,"48238":0,"48239":0,"48240":2392,"48241":0,"48242":-1,"48243":0,"48244":-1,"48245":0,"48246":-1,"48247":0,"48248":0,"48249":0,"48250":-1,"48251":-1,"48252":3471,"48253":2609,"48254":0,"48255":472,"48256":0,"48257":-1,"48258":0,"48259":3277,"48260":-1,"48261":2825,"48262":3236,"48263":0,"48264":0,"48265":2811,"48266":404,"48267":4012,"48268":3923,"48269":2122,"48270":0,"48271":0,"48272":0,"48273":3291,"48274":0,"48275":0,"48276":448,"48277":0,"48278":-1,"48279":3829,"48280":0,"48281":0,"48282":2716,"48283":2994,"48284":0,"48285":0,"48286":223,"48287":-1,"48288":1886,"48289":3152,"48290":0,"48291":-1,"48292":-1,"48293":2493,"48294":0,"48295":0,"48296":2714,"48297":0,"48298":2780,"48299":2697,"48300":-1,"48301":1933,"48302":0,"48303":0,"48304":0,"48305":0,"48306":-1,"48307":3676,"48308":3419,"48309":-1,"48310":0,"48311":-1,"48312":2846,"48313":0,"48314":-1,"48315":0,"48316":-1,"48317":0,"48318":0,"48319":0,"48320":0,"48321":2601,"48322":-1,"48323":0,"48324":0,"48325":0,"48326":0,"48327":2726,"48328":0,"48329":-1,"48330":-1,"48331":3732,"48332":0,"48333":-1,"48334":361,"48335":0,"48336":0,"48337":-1,"48338":-1,"48339":3199,"48340":4057,"48341":0,"48342":-1,"48343":-1,"48344":0,"48345":-1,"48346":-1,"48347":4011,"48348":0,"48349":3594,"48350":-1,"48351":-1,"48352":0,"48353":0,"48354":0,"48355":0,"48356":-1,"48357":-1,"48358":0,"48359":4033,"48360":-1,"48361":0,"48362":-1,"48363":0,"48364":-1,"48365":-1,"48366":-1,"48367":2211,"48368":-1,"48369":2235,"48370":2005,"48371":4044,"48372":-1,"48373":0,"48374":0,"48375":135,"48376":0,"48377":0,"48378":0,"48379":0,"48380":-1,"48381":48,"48382":0,"48383":-1,"48384":-1,"48385":2385,"48386":3354,"48387":-1,"48388":-1,"48389":-1,"48390":0,"48391":-1,"48392":2908,"48393":0,"48394":0,"48395":-1,"48396":0,"48397":3777,"48398":0,"48399":2939,"48400":0,"48401":3853,"48402":-1,"48403":-1,"48404":0,"48405":1851,"48406":0,"48407":0,"48408":0,"48409":-1,"48410":0,"48411":1835,"48412":-1,"48413":0,"48414":2572,"48415":0,"48416":3560,"48417":-1,"48418":0,"48419":0,"48420":-1,"48421":-1,"48422":-1,"48423":-1,"48424":134,"48425":0,"48426":-1,"48427":3429,"48428":1900,"48429":1904,"48430":-1,"48431":0,"48432":0,"48433":-1,"48434":0,"48435":0,"48436":0,"48437":-1,"48438":-1,"48439":0,"48440":-1,"48441":-1,"48442":-1,"48443":-1,"48444":0,"48445":-1,"48446":1862,"48447":0,"48448":-1,"48449":0,"48450":0,"48451":-1,"48452":0,"48453":0,"48454":2048,"48455":2983,"48456":-1,"48457":0,"48458":0,"48459":0,"48460":0,"48461":2036,"48462":2273,"48463":-1,"48464":-1,"48465":1819,"48466":0,"48467":2348,"48468":2707,"48469":0,"48470":0,"48471":0,"48472":-1,"48473":-1,"48474":-1,"48475":-1,"48476":-1,"48477":-1,"48478":-1,"48479":0,"48480":3641,"48481":1949,"48482":-1,"48483":3429,"48484":2836,"48485":-1,"48486":-1,"48487":-1,"48488":-1,"48489":-1,"48490":3845,"48491":0,"48492":0,"48493":3764,"48494":0,"48495":2972,"48496":0,"48497":0,"48498":-1,"48499":-1,"48500":-1,"48501":0,"48502":0,"48503":0,"48504":496,"48505":0,"48506":-1,"48507":0,"48508":0,"48509":2008,"48510":0,"48511":3026,"48512":0,"48513":-1,"48514":-1,"48515":3228,"48516":0,"48517":-1,"48518":0,"48519":-1,"48520":2147,"48521":0,"48522":-1,"48523":0,"48524":0,"48525":-1,"48526":0,"48527":-1,"48528":0,"48529":0,"48530":3036,"48531":-1,"48532":-1,"48533":-1,"48534":-1,"48535":3255,"48536":243,"48537":0,"48538":2991,"48539":-1,"48540":-1,"48541":-1,"48542":-1,"48543":0,"48544":2399,"48545":0,"48546":0,"48547":0,"48548":0,"48549":0,"48550":0,"48551":0,"48552":-1,"48553":3443,"48554":0,"48555":3279,"48556":0,"48557":-1,"48558":0,"48559":-1,"48560":0,"48561":-1,"48562":-1,"48563":0,"48564":-1,"48565":-1,"48566":-1,"48567":0,"48568":0,"48569":2251,"48570":0,"48571":0,"48572":1863,"48573":0,"48574":0,"48575":3478,"48576":2119,"48577":2342,"48578":0,"48579":0,"48580":3365,"48581":-1,"48582":-1,"48583":2037,"48584":-1,"48585":-1,"48586":-1,"48587":0,"48588":2512,"48589":2396,"48590":0,"48591":0,"48592":0,"48593":1972,"48594":2214,"48595":0,"48596":0,"48597":0,"48598":333,"48599":-1,"48600":0,"48601":-1,"48602":-1,"48603":0,"48604":-1,"48605":0,"48606":-1,"48607":3200,"48608":0,"48609":-1,"48610":0,"48611":-1,"48612":0,"48613":-1,"48614":0,"48615":3445,"48616":0,"48617":-1,"48618":0,"48619":-1,"48620":3271,"48621":3779,"48622":-1,"48623":-1,"48624":-1,"48625":0,"48626":-1,"48627":-1,"48628":0,"48629":2702,"48630":0,"48631":0,"48632":0,"48633":-1,"48634":474,"48635":-1,"48636":0,"48637":0,"48638":0,"48639":-1,"48640":0,"48641":-1,"48642":-1,"48643":-1,"48644":0,"48645":3425,"48646":-1,"48647":0,"48648":0,"48649":508,"48650":0,"48651":0,"48652":0,"48653":0,"48654":4001,"48655":2477,"48656":0,"48657":0,"48658":130,"48659":0,"48660":-1,"48661":-1,"48662":-1,"48663":3919,"48664":0,"48665":0,"48666":-1,"48667":-1,"48668":0,"48669":-1,"48670":2237,"48671":3383,"48672":0,"48673":-1,"48674":-1,"48675":0,"48676":3516,"48677":0,"48678":0,"48679":-1,"48680":0,"48681":3174,"48682":0,"48683":-1,"48684":0,"48685":-1,"48686":2603,"48687":0,"48688":3569,"48689":-1,"48690":0,"48691":0,"48692":1821,"48693":0,"48694":0,"48695":0,"48696":-1,"48697":3029,"48698":0,"48699":-1,"48700":2673,"48701":0,"48702":-1,"48703":3181,"48704":-1,"48705":-1,"48706":2761,"48707":3485,"48708":3465,"48709":-1,"48710":-1,"48711":3422,"48712":0,"48713":0,"48714":0,"48715":0,"48716":266,"48717":-1,"48718":2086,"48719":3355,"48720":0,"48721":0,"48722":-1,"48723":3571,"48724":2371,"48725":3513,"48726":3441,"48727":0,"48728":0,"48729":0,"48730":0,"48731":-1,"48732":0,"48733":0,"48734":0,"48735":-1,"48736":3440,"48737":2117,"48738":0,"48739":2039,"48740":-1,"48741":-1,"48742":0,"48743":0,"48744":2430,"48745":1828,"48746":3692,"48747":-1,"48748":0,"48749":0,"48750":-1,"48751":2083,"48752":1920,"48753":0,"48754":0,"48755":2291,"48756":-1,"48757":-1,"48758":0,"48759":2898,"48760":3945,"48761":0,"48762":0,"48763":0,"48764":2209,"48765":-1,"48766":3680,"48767":0,"48768":0,"48769":0,"48770":2419,"48771":0,"48772":2939,"48773":23,"48774":-1,"48775":-1,"48776":2631,"48777":0,"48778":0,"48779":0,"48780":0,"48781":0,"48782":499,"48783":0,"48784":0,"48785":1793,"48786":-1,"48787":-1,"48788":3472,"48789":0,"48790":-1,"48791":3153,"48792":3041,"48793":0,"48794":3171,"48795":-1,"48796":-1,"48797":1874,"48798":-1,"48799":0,"48800":-1,"48801":0,"48802":0,"48803":-1,"48804":0,"48805":0,"48806":-1,"48807":0,"48808":0,"48809":3576,"48810":65,"48811":0,"48812":-1,"48813":2399,"48814":-1,"48815":-1,"48816":-1,"48817":-1,"48818":-1,"48819":0,"48820":2974,"48821":0,"48822":0,"48823":-1,"48824":-1,"48825":-1,"48826":2197,"48827":0,"48828":0,"48829":-1,"48830":0,"48831":2322,"48832":453,"48833":1818,"48834":0,"48835":0,"48836":-1,"48837":0,"48838":171,"48839":0,"48840":-1,"48841":-1,"48842":2991,"48843":0,"48844":-1,"48845":-1,"48846":0,"48847":0,"48848":0,"48849":-1,"48850":-1,"48851":-1,"48852":-1,"48853":-1,"48854":0,"48855":48,"48856":0,"48857":0,"48858":-1,"48859":-1,"48860":0,"48861":-1,"48862":-1,"48863":1912,"48864":0,"48865":0,"48866":0,"48867":0,"48868":-1,"48869":0,"48870":0,"48871":2001,"48872":0,"48873":0,"48874":-1,"48875":0,"48876":-1,"48877":-1,"48878":-1,"48879":2431,"48880":-1,"48881":-1,"48882":3506,"48883":-1,"48884":2984,"48885":0,"48886":-1,"48887":0,"48888":2218,"48889":2752,"48890":-1,"48891":0,"48892":0,"48893":1832,"48894":2179,"48895":0,"48896":0,"48897":-1,"48898":-1,"48899":0,"48900":110,"48901":3469,"48902":426,"48903":2704,"48904":-1,"48905":0,"48906":2954,"48907":-1,"48908":0,"48909":-1,"48910":-1,"48911":0,"48912":-1,"48913":0,"48914":3885,"48915":502,"48916":-1,"48917":0,"48918":-1,"48919":0,"48920":-1,"48921":-1,"48922":2806,"48923":47,"48924":0,"48925":0,"48926":-1,"48927":-1,"48928":0,"48929":0,"48930":0,"48931":0,"48932":3603,"48933":-1,"48934":0,"48935":-1,"48936":0,"48937":0,"48938":0,"48939":96,"48940":0,"48941":-1,"48942":0,"48943":-1,"48944":0,"48945":-1,"48946":-1,"48947":3716,"48948":0,"48949":0,"48950":272,"48951":0,"48952":-1,"48953":-1,"48954":1834,"48955":3888,"48956":2444,"48957":0,"48958":0,"48959":0,"48960":0,"48961":3269,"48962":0,"48963":-1,"48964":0,"48965":-1,"48966":0,"48967":0,"48968":1865,"48969":-1,"48970":-1,"48971":0,"48972":2415,"48973":1879,"48974":0,"48975":-1,"48976":-1,"48977":3810,"48978":273,"48979":-1,"48980":0,"48981":-1,"48982":3095,"48983":-1,"48984":0,"48985":2925,"48986":0,"48987":0,"48988":0,"48989":2822,"48990":0,"48991":-1,"48992":0,"48993":0,"48994":0,"48995":3466,"48996":407,"48997":4058,"48998":0,"48999":0,"49000":0,"49001":0,"49002":-1,"49003":-1,"49004":0,"49005":3821,"49006":-1,"49007":0,"49008":-1,"49009":1775,"49010":-1,"49011":-1,"49012":0,"49013":-1,"49014":2973,"49015":0,"49016":0,"49017":-1,"49018":2154,"49019":-1,"49020":0,"49021":0,"49022":2161,"49023":0,"49024":-1,"49025":1944,"49026":-1,"49027":2191,"49028":-1,"49029":0,"49030":0,"49031":-1,"49032":0,"49033":-1,"49034":-1,"49035":0,"49036":-1,"49037":73,"49038":122,"49039":0,"49040":3400,"49041":3411,"49042":0,"49043":3589,"49044":0,"49045":3616,"49046":-1,"49047":2060,"49048":0,"49049":1999,"49050":-1,"49051":0,"49052":0,"49053":0,"49054":0,"49055":0,"49056":0,"49057":-1,"49058":0,"49059":2012,"49060":0,"49061":0,"49062":-1,"49063":0,"49064":3996,"49065":3365,"49066":2365,"49067":0,"49068":0,"49069":3518,"49070":2613,"49071":-1,"49072":0,"49073":3761,"49074":0,"49075":-1,"49076":0,"49077":-1,"49078":0,"49079":1859,"49080":0,"49081":-1,"49082":-1,"49083":-1,"49084":0,"49085":0,"49086":-1,"49087":-1,"49088":-1,"49089":0,"49090":-1,"49091":0,"49092":-1,"49093":2022,"49094":0,"49095":0,"49096":0,"49097":-1,"49098":0,"49099":0,"49100":0,"49101":3174,"49102":0,"49103":-1,"49104":-1,"49105":2133,"49106":0,"49107":-1,"49108":3354,"49109":93,"49110":-1,"49111":-1,"49112":70,"49113":0,"49114":0,"49115":0,"49116":0,"49117":0,"49118":3409,"49119":2871,"49120":0,"49121":3092,"49122":0,"49123":-1,"49124":-1,"49125":-1,"49126":-1,"49127":2858,"49128":0,"49129":-1,"49130":0,"49131":2997,"49132":-1,"49133":-1,"49134":0,"49135":190,"49136":-1,"49137":0,"49138":2579,"49139":-1,"49140":2590,"49141":-1,"49142":-1,"49143":334,"49144":0,"49145":-1,"49146":3408,"49147":3669,"49148":0,"49149":0,"49150":0,"49151":-1,"49152":3273,"49153":3657,"49154":-1,"49155":-1,"49156":0,"49157":0,"49158":-1,"49159":0,"49160":0,"49161":3743,"49162":0,"49163":2922,"49164":0,"49165":2536,"49166":3942,"49167":0,"49168":-1,"49169":0,"49170":0,"49171":0,"49172":0,"49173":-1,"49174":0,"49175":-1,"49176":0,"49177":0,"49178":0,"49179":3417,"49180":-1,"49181":-1,"49182":0,"49183":-1,"49184":2734,"49185":2745,"49186":-1,"49187":0,"49188":2773,"49189":-1,"49190":-1,"49191":1983,"49192":-1,"49193":-1,"49194":-1,"49195":-1,"49196":-1,"49197":0,"49198":3677,"49199":-1,"49200":0,"49201":1829,"49202":-1,"49203":-1,"49204":405,"49205":2451,"49206":-1,"49207":0,"49208":0,"49209":0,"49210":3257,"49211":-1,"49212":-1,"49213":0,"49214":-1,"49215":-1,"49216":0,"49217":0,"49218":0,"49219":279,"49220":2837,"49221":0,"49222":-1,"49223":0,"49224":281,"49225":-1,"49226":0,"49227":0,"49228":-1,"49229":-1,"49230":0,"49231":-1,"49232":0,"49233":0,"49234":0,"49235":2171,"49236":3867,"49237":2146,"49238":3501,"49239":-1,"49240":-1,"49241":0,"49242":0,"49243":-1,"49244":0,"49245":0,"49246":1911,"49247":0,"49248":0,"49249":-1,"49250":3984,"49251":0,"49252":0,"49253":0,"49254":-1,"49255":-1,"49256":-1,"49257":-1,"49258":1787,"49259":0,"49260":0,"49261":3223,"49262":-1,"49263":-1,"49264":-1,"49265":-1,"49266":-1,"49267":0,"49268":0,"49269":0,"49270":3436,"49271":0,"49272":-1,"49273":0,"49274":2101,"49275":0,"49276":0,"49277":3655,"49278":3366,"49279":0,"49280":3429,"49281":-1,"49282":0,"49283":0,"49284":-1,"49285":248,"49286":0,"49287":-1,"49288":2084,"49289":-1,"49290":0,"49291":0,"49292":-1,"49293":3925,"49294":0,"49295":107,"49296":2924,"49297":-1,"49298":2224,"49299":2690,"49300":0,"49301":0,"49302":0,"49303":0,"49304":3604,"49305":-1,"49306":0,"49307":0,"49308":0,"49309":-1,"49310":2895,"49311":-1,"49312":0,"49313":0,"49314":-1,"49315":3046,"49316":-1,"49317":-1,"49318":2152,"49319":-1,"49320":-1,"49321":0,"49322":0,"49323":-1,"49324":1913,"49325":0,"49326":-1,"49327":-1,"49328":3094,"49329":0,"49330":2289,"49331":3341,"49332":-1,"49333":-1,"49334":-1,"49335":-1,"49336":-1,"49337":3570,"49338":2645,"49339":0,"49340":0,"49341":-1,"49342":2979,"49343":0,"49344":-1,"49345":2870,"49346":0,"49347":0,"49348":0,"49349":0,"49350":2798,"49351":0,"49352":3246,"49353":0,"49354":0,"49355":0,"49356":0,"49357":506,"49358":3844,"49359":-1,"49360":-1,"49361":-1,"49362":0,"49363":0,"49364":0,"49365":0,"49366":3069,"49367":0,"49368":0,"49369":0,"49370":3620,"49371":1821,"49372":0,"49373":-1,"49374":0,"49375":0,"49376":-1,"49377":2193,"49378":0,"49379":-1,"49380":3293,"49381":2777,"49382":-1,"49383":3790,"49384":2781,"49385":3486,"49386":0,"49387":-1,"49388":0,"49389":-1,"49390":2015,"49391":1842,"49392":0,"49393":2407,"49394":0,"49395":0,"49396":0,"49397":1992,"49398":0,"49399":-1,"49400":0,"49401":-1,"49402":-1,"49403":-1,"49404":2626,"49405":3094,"49406":-1,"49407":0,"49408":0,"49409":3268,"49410":194,"49411":0,"49412":2962,"49413":3597,"49414":-1,"49415":0,"49416":-1,"49417":0,"49418":0,"49419":1851,"49420":2957,"49421":-1,"49422":0,"49423":2173,"49424":3915,"49425":0,"49426":0,"49427":-1,"49428":0,"49429":0,"49430":-1,"49431":0,"49432":2141,"49433":0,"49434":-1,"49435":0,"49436":3612,"49437":2030,"49438":0,"49439":0,"49440":3820,"49441":0,"49442":2887,"49443":-1,"49444":0,"49445":3291,"49446":-1,"49447":-1,"49448":2007,"49449":-1,"49450":3578,"49451":0,"49452":0,"49453":0,"49454":0,"49455":1955,"49456":3401,"49457":0,"49458":0,"49459":-1,"49460":-1,"49461":0,"49462":-1,"49463":-1,"49464":0,"49465":-1,"49466":-1,"49467":-1,"49468":-1,"49469":0,"49470":-1,"49471":-1,"49472":1844,"49473":2890,"49474":2220,"49475":3187,"49476":-1,"49477":0,"49478":0,"49479":0,"49480":-1,"49481":0,"49482":-1,"49483":1965,"49484":0,"49485":0,"49486":-1,"49487":0,"49488":-1,"49489":-1,"49490":-1,"49491":1916,"49492":3723,"49493":0,"49494":0,"49495":3890,"49496":-1,"49497":0,"49498":0,"49499":242,"49500":0,"49501":-1,"49502":3716,"49503":-1,"49504":-1,"49505":0,"49506":-1,"49507":-1,"49508":260,"49509":0,"49510":0,"49511":0,"49512":0,"49513":0,"49514":0,"49515":-1,"49516":0,"49517":-1,"49518":3825,"49519":0,"49520":0,"49521":-1,"49522":-1,"49523":0,"49524":0,"49525":-1,"49526":165,"49527":-1,"49528":-1,"49529":0,"49530":-1,"49531":-1,"49532":0,"49533":0,"49534":2408,"49535":2187,"49536":0,"49537":1877,"49538":0,"49539":404,"49540":2336,"49541":0,"49542":-1,"49543":0,"49544":-1,"49545":0,"49546":2764,"49547":-1,"49548":0,"49549":0,"49550":2178,"49551":0,"49552":0,"49553":-1,"49554":0,"49555":0,"49556":0,"49557":0,"49558":0,"49559":0,"49560":2533,"49561":2593,"49562":0,"49563":64,"49564":0,"49565":0,"49566":0,"49567":-1,"49568":2469,"49569":0,"49570":-1,"49571":0,"49572":-1,"49573":3460,"49574":2170,"49575":154,"49576":0,"49577":-1,"49578":3908,"49579":3419,"49580":0,"49581":3361,"49582":0,"49583":-1,"49584":1801,"49585":-1,"49586":-1,"49587":0,"49588":0,"49589":2029,"49590":4031,"49591":2343,"49592":0,"49593":0,"49594":-1,"49595":0,"49596":0,"49597":0,"49598":0,"49599":0,"49600":2526,"49601":0,"49602":1900,"49603":90,"49604":-1,"49605":0,"49606":-1,"49607":0,"49608":3554,"49609":0,"49610":0,"49611":0,"49612":0,"49613":-1,"49614":-1,"49615":3136,"49616":-1,"49617":0,"49618":0,"49619":-1,"49620":3891,"49621":-1,"49622":66,"49623":0,"49624":3683,"49625":3004,"49626":-1,"49627":2780,"49628":0,"49629":0,"49630":0,"49631":-1,"49632":0,"49633":0,"49634":0,"49635":2321,"49636":3547,"49637":0,"49638":0,"49639":0,"49640":0,"49641":-1,"49642":0,"49643":2002,"49644":2875,"49645":0,"49646":0,"49647":2116,"49648":-1,"49649":3515,"49650":-1,"49651":0,"49652":3991,"49653":3971,"49654":0,"49655":3375,"49656":-1,"49657":-1,"49658":3860,"49659":-1,"49660":0,"49661":0,"49662":0,"49663":3847,"49664":3164,"49665":2186,"49666":3107,"49667":0,"49668":-1,"49669":0,"49670":2758,"49671":0,"49672":0,"49673":0,"49674":3582,"49675":464,"49676":0,"49677":-1,"49678":-1,"49679":0,"49680":0,"49681":0,"49682":3272,"49683":-1,"49684":0,"49685":0,"49686":0,"49687":0,"49688":0,"49689":0,"49690":2015,"49691":0,"49692":0,"49693":-1,"49694":0,"49695":0,"49696":3623,"49697":2701,"49698":-1,"49699":-1,"49700":3869,"49701":-1,"49702":0,"49703":0,"49704":0,"49705":-1,"49706":0,"49707":-1,"49708":0,"49709":-1,"49710":-1,"49711":0,"49712":-1,"49713":2785,"49714":0,"49715":0,"49716":-1,"49717":0,"49718":-1,"49719":0,"49720":-1,"49721":0,"49722":-1,"49723":0,"49724":-1,"49725":0,"49726":0,"49727":1992,"49728":-1,"49729":-1,"49730":3115,"49731":-1,"49732":2937,"49733":-1,"49734":0,"49735":206,"49736":0,"49737":2291,"49738":114,"49739":0,"49740":3977,"49741":-1,"49742":0,"49743":-1,"49744":-1,"49745":0,"49746":2398,"49747":345,"49748":-1,"49749":-1,"49750":0,"49751":0,"49752":3143,"49753":0,"49754":0,"49755":0,"49756":-1,"49757":0,"49758":0,"49759":-1,"49760":0,"49761":0,"49762":0,"49763":2515,"49764":-1,"49765":-1,"49766":-1,"49767":0,"49768":-1,"49769":0,"49770":0,"49771":-1,"49772":0,"49773":0,"49774":0,"49775":2319,"49776":-1,"49777":-1,"49778":-1,"49779":0,"49780":0,"49781":0,"49782":0,"49783":0,"49784":0,"49785":0,"49786":3876,"49787":2974,"49788":3996,"49789":3803,"49790":254,"49791":-1,"49792":0,"49793":96,"49794":-1,"49795":2068,"49796":2724,"49797":-1,"49798":0,"49799":-1,"49800":-1,"49801":0,"49802":0,"49803":-1,"49804":-1,"49805":3584,"49806":-1,"49807":-1,"49808":377,"49809":0,"49810":0,"49811":0,"49812":-1,"49813":-1,"49814":0,"49815":-1,"49816":0,"49817":0,"49818":2083,"49819":2923,"49820":3521,"49821":0,"49822":0,"49823":-1,"49824":0,"49825":-1,"49826":0,"49827":-1,"49828":2784,"49829":0,"49830":-1,"49831":3570,"49832":2571,"49833":0,"49834":0,"49835":2034,"49836":-1,"49837":-1,"49838":0,"49839":-1,"49840":2911,"49841":0,"49842":-1,"49843":0,"49844":0,"49845":0,"49846":0,"49847":0,"49848":3946,"49849":0,"49850":0,"49851":-1,"49852":2736,"49853":0,"49854":-1,"49855":0,"49856":-1,"49857":0,"49858":0,"49859":0,"49860":2729,"49861":2179,"49862":-1,"49863":223,"49864":0,"49865":0,"49866":0,"49867":0,"49868":0,"49869":0,"49870":-1,"49871":1906,"49872":-1,"49873":0,"49874":3199,"49875":0,"49876":3387,"49877":3372,"49878":42,"49879":-1,"49880":2602,"49881":0,"49882":3193,"49883":-1,"49884":0,"49885":0,"49886":3414,"49887":-1,"49888":-1,"49889":-1,"49890":0,"49891":0,"49892":0,"49893":2969,"49894":0,"49895":2191,"49896":0,"49897":0,"49898":2538,"49899":192,"49900":0,"49901":0,"49902":0,"49903":0,"49904":-1,"49905":0,"49906":-1,"49907":0,"49908":0,"49909":-1,"49910":2704,"49911":0,"49912":0,"49913":3752,"49914":3048,"49915":3918,"49916":3988,"49917":3975,"49918":3281,"49919":-1,"49920":-1,"49921":2151,"49922":0,"49923":-1,"49924":0,"49925":0,"49926":-1,"49927":0,"49928":0,"49929":0,"49930":0,"49931":0,"49932":-1,"49933":2779,"49934":-1,"49935":1981,"49936":-1,"49937":-1,"49938":0,"49939":0,"49940":0,"49941":-1,"49942":0,"49943":-1,"49944":0,"49945":0,"49946":0,"49947":0,"49948":0,"49949":-1,"49950":86,"49951":-1,"49952":0,"49953":3364,"49954":0,"49955":209,"49956":3454,"49957":-1,"49958":0,"49959":0,"49960":-1,"49961":63,"49962":-1,"49963":0,"49964":-1,"49965":0,"49966":-1,"49967":3562,"49968":2470,"49969":0,"49970":0,"49971":-1,"49972":3505,"49973":0,"49974":-1,"49975":3813,"49976":-1,"49977":0,"49978":3603,"49979":349,"49980":-1,"49981":0,"49982":-1,"49983":2244,"49984":3525,"49985":-1,"49986":0,"49987":0,"49988":-1,"49989":0,"49990":0,"49991":-1,"49992":-1,"49993":-1,"49994":3153,"49995":0,"49996":2100,"49997":3475,"49998":-1,"49999":0,"50000":0,"50001":3456,"50002":3775,"50003":0,"50004":0,"50005":-1,"50006":3651,"50007":-1,"50008":0,"50009":0,"50010":0,"50011":1904,"50012":0,"50013":3822,"50014":0,"50015":1790,"50016":0,"50017":0,"50018":0,"50019":-1,"50020":0,"50021":-1,"50022":-1,"50023":0,"50024":-1,"50025":0,"50026":0,"50027":0,"50028":0,"50029":0,"50030":-1,"50031":4021,"50032":-1,"50033":0,"50034":0,"50035":2365,"50036":0,"50037":263,"50038":-1,"50039":-1,"50040":0,"50041":-1,"50042":-1,"50043":-1,"50044":0,"50045":159,"50046":0,"50047":0,"50048":1943,"50049":-1,"50050":0,"50051":0,"50052":0,"50053":3942,"50054":0,"50055":3548,"50056":261,"50057":0,"50058":0,"50059":-1,"50060":0,"50061":0,"50062":0,"50063":3075,"50064":0,"50065":3451,"50066":0,"50067":0,"50068":-1,"50069":0,"50070":0,"50071":0,"50072":-1,"50073":-1,"50074":0,"50075":2407,"50076":0,"50077":-1,"50078":1833,"50079":-1,"50080":-1,"50081":1873,"50082":0,"50083":-1,"50084":-1,"50085":-1,"50086":0,"50087":-1,"50088":73,"50089":2404,"50090":3605,"50091":-1,"50092":3983,"50093":-1,"50094":448,"50095":-1,"50096":0,"50097":-1,"50098":0,"50099":0,"50100":1999,"50101":0,"50102":0,"50103":-1,"50104":2623,"50105":-1,"50106":-1,"50107":0,"50108":-1,"50109":3339,"50110":-1,"50111":-1,"50112":-1,"50113":-1,"50114":0,"50115":0,"50116":0,"50117":-1,"50118":-1,"50119":0,"50120":0,"50121":0,"50122":-1,"50123":-1,"50124":-1,"50125":3234,"50126":-1,"50127":-1,"50128":0,"50129":0,"50130":0,"50131":3761,"50132":-1,"50133":3804,"50134":-1,"50135":-1,"50136":-1,"50137":-1,"50138":0,"50139":3662,"50140":0,"50141":-1,"50142":0,"50143":3228,"50144":0,"50145":3792,"50146":48,"50147":0,"50148":0,"50149":0,"50150":-1,"50151":0,"50152":-1,"50153":-1,"50154":0,"50155":-1,"50156":0,"50157":3894,"50158":1990,"50159":-1,"50160":2546,"50161":2108,"50162":2692,"50163":-1,"50164":-1,"50165":-1,"50166":0,"50167":3580,"50168":0,"50169":-1,"50170":2163,"50171":264,"50172":3525,"50173":2504,"50174":0,"50175":-1,"50176":0,"50177":-1,"50178":2564,"50179":0,"50180":2317,"50181":-1,"50182":0,"50183":-1,"50184":-1,"50185":0,"50186":-1,"50187":0,"50188":3083,"50189":3856,"50190":-1,"50191":3788,"50192":163,"50193":0,"50194":0,"50195":2926,"50196":3399,"50197":-1,"50198":-1,"50199":2774,"50200":0,"50201":-1,"50202":-1,"50203":0,"50204":0,"50205":1796,"50206":3424,"50207":0,"50208":-1,"50209":3649,"50210":0,"50211":0,"50212":-1,"50213":0,"50214":-1,"50215":0,"50216":1812,"50217":2260,"50218":0,"50219":-1,"50220":0,"50221":-1,"50222":0,"50223":0,"50224":0,"50225":0,"50226":0,"50227":0,"50228":-1,"50229":0,"50230":0,"50231":0,"50232":0,"50233":3571,"50234":-1,"50235":0,"50236":0,"50237":0,"50238":0,"50239":0,"50240":-1,"50241":0,"50242":2074,"50243":-1,"50244":2546,"50245":-1,"50246":199,"50247":2915,"50248":-1,"50249":0,"50250":2530,"50251":3558,"50252":-1,"50253":3313,"50254":0,"50255":0,"50256":3149,"50257":0,"50258":0,"50259":-1,"50260":0,"50261":0,"50262":0,"50263":0,"50264":-1,"50265":-1,"50266":0,"50267":-1,"50268":-1,"50269":-1,"50270":0,"50271":0,"50272":-1,"50273":0,"50274":0,"50275":1821,"50276":2337,"50277":0,"50278":473,"50279":0,"50280":1801,"50281":0,"50282":3216,"50283":4051,"50284":0,"50285":2649,"50286":3623,"50287":0,"50288":2874,"50289":0,"50290":83,"50291":-1,"50292":0,"50293":-1,"50294":0,"50295":0,"50296":-1,"50297":3391,"50298":0,"50299":-1,"50300":-1,"50301":0,"50302":0,"50303":0,"50304":-1,"50305":0,"50306":0,"50307":0,"50308":3343,"50309":-1,"50310":-1,"50311":0,"50312":-1,"50313":1962,"50314":0,"50315":0,"50316":-1,"50317":4009,"50318":2900,"50319":0,"50320":0,"50321":0,"50322":2225,"50323":0,"50324":0,"50325":0,"50326":-1,"50327":-1,"50328":0,"50329":-1,"50330":3553,"50331":0,"50332":0,"50333":-1,"50334":-1,"50335":3507,"50336":-1,"50337":3549,"50338":-1,"50339":2931,"50340":0,"50341":-1,"50342":0,"50343":2954,"50344":0,"50345":0,"50346":2938,"50347":0,"50348":-1,"50349":-1,"50350":0,"50351":0,"50352":2528,"50353":-1,"50354":-1,"50355":143,"50356":0,"50357":0,"50358":-1,"50359":3834,"50360":0,"50361":0,"50362":-1,"50363":2086,"50364":51,"50365":0,"50366":0,"50367":-1,"50368":0,"50369":-1,"50370":0,"50371":-1,"50372":-1,"50373":0,"50374":-1,"50375":3471,"50376":0,"50377":-1,"50378":0,"50379":0,"50380":-1,"50381":0,"50382":0,"50383":-1,"50384":0,"50385":0,"50386":2812,"50387":3586,"50388":42,"50389":0,"50390":-1,"50391":3335,"50392":3588,"50393":3673,"50394":0,"50395":3362,"50396":0,"50397":-1,"50398":0,"50399":2547,"50400":0,"50401":0,"50402":-1,"50403":2360,"50404":0,"50405":0,"50406":0,"50407":-1,"50408":-1,"50409":1786,"50410":2639,"50411":-1,"50412":3208,"50413":-1,"50414":-1,"50415":-1,"50416":0,"50417":0,"50418":3964,"50419":3814,"50420":0,"50421":0,"50422":-1,"50423":0,"50424":0,"50425":0,"50426":3013,"50427":0,"50428":-1,"50429":0,"50430":0,"50431":57,"50432":0,"50433":-1,"50434":0,"50435":0,"50436":2357,"50437":0,"50438":-1,"50439":2489,"50440":0,"50441":3352,"50442":0,"50443":3889,"50444":0,"50445":-1,"50446":302,"50447":3788,"50448":-1,"50449":2911,"50450":0,"50451":0,"50452":-1,"50453":2673,"50454":0,"50455":0,"50456":-1,"50457":0,"50458":0,"50459":0,"50460":3577,"50461":0,"50462":-1,"50463":0,"50464":-1,"50465":0,"50466":-1,"50467":2241,"50468":0,"50469":3793,"50470":-1,"50471":0,"50472":-1,"50473":0,"50474":3287,"50475":2478,"50476":2265,"50477":2788,"50478":0,"50479":0,"50480":0,"50481":1814,"50482":3585,"50483":1960,"50484":2379,"50485":0,"50486":0,"50487":-1,"50488":0,"50489":0,"50490":0,"50491":0,"50492":0,"50493":1880,"50494":0,"50495":0,"50496":-1,"50497":2466,"50498":-1,"50499":-1,"50500":0,"50501":-1,"50502":-1,"50503":-1,"50504":3882,"50505":-1,"50506":-1,"50507":-1,"50508":0,"50509":2770,"50510":0,"50511":0,"50512":0,"50513":2882,"50514":0,"50515":0,"50516":-1,"50517":-1,"50518":0,"50519":0,"50520":0,"50521":-1,"50522":2170,"50523":3081,"50524":-1,"50525":0,"50526":1821,"50527":2207,"50528":0,"50529":0,"50530":-1,"50531":0,"50532":0,"50533":2378,"50534":-1,"50535":2844,"50536":-1,"50537":3197,"50538":0,"50539":2858,"50540":0,"50541":0,"50542":388,"50543":0,"50544":0,"50545":0,"50546":0,"50547":0,"50548":-1,"50549":0,"50550":-1,"50551":-1,"50552":-1,"50553":0,"50554":3905,"50555":0,"50556":0,"50557":0,"50558":2494,"50559":-1,"50560":-1,"50561":0,"50562":0,"50563":2440,"50564":1933,"50565":-1,"50566":-1,"50567":0,"50568":4061,"50569":2218,"50570":-1,"50571":-1,"50572":0,"50573":2772,"50574":-1,"50575":160,"50576":0,"50577":0,"50578":0,"50579":0,"50580":-1,"50581":0,"50582":0,"50583":3003,"50584":2590,"50585":-1,"50586":0,"50587":-1,"50588":-1,"50589":-1,"50590":0,"50591":2693,"50592":0,"50593":0,"50594":2905,"50595":0,"50596":0,"50597":2212,"50598":0,"50599":-1,"50600":0,"50601":3543,"50602":0,"50603":0,"50604":3002,"50605":0,"50606":0,"50607":0,"50608":0,"50609":0,"50610":0,"50611":-1,"50612":0,"50613":-1,"50614":2685,"50615":-1,"50616":-1,"50617":0,"50618":2056,"50619":-1,"50620":0,"50621":-1,"50622":4000,"50623":-1,"50624":3021,"50625":0,"50626":0,"50627":0,"50628":-1,"50629":-1,"50630":2325,"50631":0,"50632":2752,"50633":0,"50634":-1,"50635":-1,"50636":0,"50637":0,"50638":1949,"50639":0,"50640":3132,"50641":0,"50642":0,"50643":214,"50644":0,"50645":0,"50646":0,"50647":-1,"50648":0,"50649":0,"50650":0,"50651":0,"50652":3487,"50653":227,"50654":0,"50655":433,"50656":0,"50657":-1,"50658":2775,"50659":0,"50660":3059,"50661":3470,"50662":217,"50663":58,"50664":-1,"50665":-1,"50666":0,"50667":0,"50668":-1,"50669":-1,"50670":1870,"50671":-1,"50672":-1,"50673":0,"50674":-1,"50675":0,"50676":-1,"50677":0,"50678":0,"50679":3646,"50680":0,"50681":0,"50682":0,"50683":0,"50684":0,"50685":-1,"50686":0,"50687":0,"50688":313,"50689":-1,"50690":0,"50691":0,"50692":0,"50693":0,"50694":0,"50695":0,"50696":0,"50697":2300,"50698":360,"50699":-1,"50700":0,"50701":2262,"50702":-1,"50703":-1,"50704":0,"50705":0,"50706":-1,"50707":3921,"50708":0,"50709":0,"50710":2411,"50711":-1,"50712":0,"50713":2274,"50714":3357,"50715":-1,"50716":0,"50717":-1,"50718":-1,"50719":3963,"50720":2690,"50721":0,"50722":0,"50723":0,"50724":-1,"50725":3446,"50726":-1,"50727":0,"50728":0,"50729":-1,"50730":2701,"50731":0,"50732":0,"50733":-1,"50734":-1,"50735":1986,"50736":0,"50737":3187,"50738":-1,"50739":0,"50740":2821,"50741":-1,"50742":-1,"50743":0,"50744":-1,"50745":2665,"50746":0,"50747":-1,"50748":0,"50749":0,"50750":-1,"50751":2984,"50752":-1,"50753":3719,"50754":-1,"50755":-1,"50756":0,"50757":0,"50758":0,"50759":0,"50760":0,"50761":4018,"50762":3414,"50763":0,"50764":0,"50765":3945,"50766":0,"50767":3120,"50768":0,"50769":3357,"50770":0,"50771":-1,"50772":-1,"50773":-1,"50774":0,"50775":-1,"50776":0,"50777":0,"50778":-1,"50779":0,"50780":-1,"50781":-1,"50782":0,"50783":-1,"50784":0,"50785":0,"50786":1817,"50787":247,"50788":-1,"50789":0,"50790":0,"50791":0,"50792":-1,"50793":137,"50794":0,"50795":-1,"50796":0,"50797":0,"50798":0,"50799":0,"50800":-1,"50801":0,"50802":0,"50803":3740,"50804":0,"50805":-1,"50806":0,"50807":-1,"50808":0,"50809":0,"50810":0,"50811":-1,"50812":0,"50813":-1,"50814":32,"50815":0,"50816":1888,"50817":0,"50818":3250,"50819":0,"50820":0,"50821":0,"50822":0,"50823":0,"50824":2632,"50825":-1,"50826":-1,"50827":0,"50828":0,"50829":0,"50830":-1,"50831":0,"50832":-1,"50833":2471,"50834":0,"50835":-1,"50836":-1,"50837":0,"50838":2434,"50839":0,"50840":0,"50841":2612,"50842":0,"50843":2013,"50844":0,"50845":2301,"50846":0,"50847":0,"50848":-1,"50849":-1,"50850":0,"50851":-1,"50852":0,"50853":0,"50854":0,"50855":0,"50856":2145,"50857":-1,"50858":146,"50859":0,"50860":2904,"50861":1882,"50862":0,"50863":0,"50864":-1,"50865":0,"50866":0,"50867":0,"50868":2877,"50869":2462,"50870":-1,"50871":2864,"50872":-1,"50873":-1,"50874":2335,"50875":1834,"50876":3148,"50877":0,"50878":0,"50879":3818,"50880":0,"50881":-1,"50882":-1,"50883":2076,"50884":-1,"50885":0,"50886":0,"50887":0,"50888":0,"50889":2607,"50890":0,"50891":0,"50892":-1,"50893":0,"50894":2751,"50895":0,"50896":-1,"50897":-1,"50898":0,"50899":0,"50900":0,"50901":0,"50902":-1,"50903":-1,"50904":0,"50905":0,"50906":512,"50907":0,"50908":0,"50909":0,"50910":-1,"50911":0,"50912":0,"50913":0,"50914":-1,"50915":-1,"50916":-1,"50917":4038,"50918":3090,"50919":0,"50920":0,"50921":0,"50922":-1,"50923":-1,"50924":0,"50925":-1,"50926":-1,"50927":0,"50928":-1,"50929":-1,"50930":0,"50931":2856,"50932":1,"50933":-1,"50934":-1,"50935":0,"50936":-1,"50937":0,"50938":0,"50939":-1,"50940":2452,"50941":185,"50942":2710,"50943":3327,"50944":0,"50945":-1,"50946":219,"50947":2335,"50948":3348,"50949":-1,"50950":2106,"50951":0,"50952":187,"50953":0,"50954":0,"50955":-1,"50956":0,"50957":-1,"50958":-1,"50959":3240,"50960":230,"50961":0,"50962":3848,"50963":0,"50964":-1,"50965":-1,"50966":2433,"50967":2613,"50968":3865,"50969":1889,"50970":3616,"50971":3249,"50972":491,"50973":2504,"50974":0,"50975":2524,"50976":0,"50977":0,"50978":2788,"50979":0,"50980":3654,"50981":0,"50982":1813,"50983":0,"50984":-1,"50985":-1,"50986":0,"50987":0,"50988":2702,"50989":3802,"50990":0,"50991":2581,"50992":-1,"50993":-1,"50994":1963,"50995":0,"50996":-1,"50997":0,"50998":0,"50999":-1,"51000":-1,"51001":2081,"51002":0,"51003":0,"51004":0,"51005":-1,"51006":2417,"51007":0,"51008":0,"51009":0,"51010":0,"51011":17,"51012":-1,"51013":0,"51014":0,"51015":0,"51016":3522,"51017":-1,"51018":0,"51019":0,"51020":0,"51021":3911,"51022":-1,"51023":0,"51024":-1,"51025":0,"51026":0,"51027":2948,"51028":0,"51029":-1,"51030":0,"51031":0,"51032":0,"51033":0,"51034":2797,"51035":0,"51036":-1,"51037":0,"51038":3591,"51039":-1,"51040":-1,"51041":2492,"51042":-1,"51043":3191,"51044":0,"51045":3712,"51046":0,"51047":0,"51048":-1,"51049":-1,"51050":-1,"51051":368,"51052":-1,"51053":0,"51054":2643,"51055":0,"51056":0,"51057":0,"51058":0,"51059":0,"51060":0,"51061":-1,"51062":0,"51063":143,"51064":0,"51065":-1,"51066":-1,"51067":-1,"51068":0,"51069":-1,"51070":-1,"51071":0,"51072":0,"51073":0,"51074":-1,"51075":3610,"51076":3067,"51077":0,"51078":0,"51079":0,"51080":3215,"51081":-1,"51082":-1,"51083":-1,"51084":0,"51085":-1,"51086":0,"51087":0,"51088":0,"51089":0,"51090":0,"51091":0,"51092":0,"51093":-1,"51094":0,"51095":-1,"51096":-1,"51097":-1,"51098":469,"51099":0,"51100":2346,"51101":0,"51102":0,"51103":-1,"51104":2566,"51105":0,"51106":3794,"51107":-1,"51108":27,"51109":3127,"51110":0,"51111":-1,"51112":3353,"51113":0,"51114":0,"51115":0,"51116":0,"51117":0,"51118":3955,"51119":3670,"51120":-1,"51121":3354,"51122":476,"51123":-1,"51124":-1,"51125":0,"51126":-1,"51127":-1,"51128":-1,"51129":2315,"51130":-1,"51131":-1,"51132":-1,"51133":0,"51134":0,"51135":0,"51136":-1,"51137":0,"51138":0,"51139":-1,"51140":0,"51141":-1,"51142":3989,"51143":0,"51144":3602,"51145":2588,"51146":0,"51147":0,"51148":0,"51149":2617,"51150":3190,"51151":0,"51152":3158,"51153":3890,"51154":0,"51155":0,"51156":0,"51157":0,"51158":-1,"51159":0,"51160":2627,"51161":0,"51162":2533,"51163":-1,"51164":0,"51165":0,"51166":0,"51167":0,"51168":2700,"51169":-1,"51170":3557,"51171":0,"51172":0,"51173":0,"51174":-1,"51175":2031,"51176":0,"51177":3903,"51178":0,"51179":3653,"51180":-1,"51181":-1,"51182":-1,"51183":-1,"51184":1848,"51185":0,"51186":0,"51187":0,"51188":0,"51189":0,"51190":0,"51191":0,"51192":-1,"51193":-1,"51194":0,"51195":0,"51196":0,"51197":1807,"51198":0,"51199":1936,"51200":2507,"51201":0,"51202":0,"51203":0,"51204":0,"51205":0,"51206":0,"51207":0,"51208":3959,"51209":0,"51210":0,"51211":-1,"51212":3937,"51213":-1,"51214":2694,"51215":212,"51216":0,"51217":2441,"51218":3998,"51219":0,"51220":0,"51221":0,"51222":0,"51223":3269,"51224":-1,"51225":-1,"51226":-1,"51227":0,"51228":0,"51229":0,"51230":3029,"51231":0,"51232":0,"51233":0,"51234":0,"51235":0,"51236":0,"51237":3620,"51238":-1,"51239":-1,"51240":0,"51241":2332,"51242":0,"51243":3917,"51244":2276,"51245":246,"51246":-1,"51247":135,"51248":-1,"51249":-1,"51250":-1,"51251":0,"51252":0,"51253":-1,"51254":-1,"51255":-1,"51256":1983,"51257":0,"51258":0,"51259":-1,"51260":0,"51261":2602,"51262":-1,"51263":-1,"51264":2305,"51265":0,"51266":0,"51267":0,"51268":3740,"51269":419,"51270":-1,"51271":-1,"51272":0,"51273":-1,"51274":0,"51275":0,"51276":0,"51277":-1,"51278":0,"51279":-1,"51280":3690,"51281":-1,"51282":-1,"51283":0,"51284":3264,"51285":0,"51286":0,"51287":4,"51288":0,"51289":0,"51290":0,"51291":-1,"51292":0,"51293":0,"51294":0,"51295":-1,"51296":3546,"51297":0,"51298":0,"51299":-1,"51300":2625,"51301":-1,"51302":360,"51303":3487,"51304":0,"51305":0,"51306":0,"51307":1929,"51308":-1,"51309":-1,"51310":0,"51311":0,"51312":-1,"51313":0,"51314":0,"51315":-1,"51316":0,"51317":0,"51318":0,"51319":-1,"51320":0,"51321":-1,"51322":0,"51323":2135,"51324":3838,"51325":0,"51326":0,"51327":3607,"51328":0,"51329":0,"51330":0,"51331":3688,"51332":-1,"51333":0,"51334":0,"51335":-1,"51336":1863,"51337":-1,"51338":2129,"51339":0,"51340":-1,"51341":0,"51342":0,"51343":3010,"51344":0,"51345":125,"51346":-1,"51347":0,"51348":0,"51349":0,"51350":2050,"51351":-1,"51352":-1,"51353":0,"51354":-1,"51355":0,"51356":0,"51357":0,"51358":3336,"51359":-1,"51360":-1,"51361":3233,"51362":0,"51363":0,"51364":2600,"51365":0,"51366":0,"51367":1879,"51368":-1,"51369":2018,"51370":0,"51371":3929,"51372":0,"51373":0,"51374":1911,"51375":0,"51376":-1,"51377":-1,"51378":-1,"51379":-1,"51380":-1,"51381":0,"51382":-1,"51383":0,"51384":2448,"51385":-1,"51386":0,"51387":2517,"51388":0,"51389":-1,"51390":-1,"51391":3868,"51392":0,"51393":-1,"51394":140,"51395":2437,"51396":91,"51397":-1,"51398":0,"51399":0,"51400":0,"51401":0,"51402":-1,"51403":0,"51404":2062,"51405":474,"51406":3191,"51407":-1,"51408":-1,"51409":3891,"51410":-1,"51411":-1,"51412":-1,"51413":96,"51414":-1,"51415":-1,"51416":3547,"51417":167,"51418":0,"51419":3935,"51420":160,"51421":-1,"51422":0,"51423":2285,"51424":-1,"51425":-1,"51426":0,"51427":452,"51428":2310,"51429":0,"51430":0,"51431":0,"51432":-1,"51433":-1,"51434":0,"51435":3666,"51436":2947,"51437":-1,"51438":0,"51439":-1,"51440":0,"51441":-1,"51442":0,"51443":0,"51444":336,"51445":-1,"51446":3102,"51447":3770,"51448":0,"51449":0,"51450":-1,"51451":0,"51452":0,"51453":-1,"51454":0,"51455":0,"51456":0,"51457":0,"51458":-1,"51459":3956,"51460":0,"51461":3004,"51462":-1,"51463":367,"51464":0,"51465":0,"51466":-1,"51467":65,"51468":-1,"51469":0,"51470":1825,"51471":-1,"51472":0,"51473":3124,"51474":3115,"51475":0,"51476":2863,"51477":0,"51478":-1,"51479":3416,"51480":0,"51481":2375,"51482":0,"51483":-1,"51484":2425,"51485":-1,"51486":2162,"51487":3233,"51488":2579,"51489":3261,"51490":-1,"51491":0,"51492":-1,"51493":-1,"51494":-1,"51495":0,"51496":0,"51497":-1,"51498":-1,"51499":3147,"51500":-1,"51501":3396,"51502":0,"51503":3298,"51504":0,"51505":3754,"51506":0,"51507":3741,"51508":0,"51509":-1,"51510":302,"51511":0,"51512":0,"51513":0,"51514":0,"51515":-1,"51516":-1,"51517":-1,"51518":0,"51519":0,"51520":0,"51521":-1,"51522":2169,"51523":-1,"51524":245,"51525":0,"51526":0,"51527":0,"51528":-1,"51529":0,"51530":-1,"51531":0,"51532":2852,"51533":0,"51534":-1,"51535":0,"51536":0,"51537":0,"51538":-1,"51539":0,"51540":-1,"51541":-1,"51542":-1,"51543":2113,"51544":3763,"51545":0,"51546":0,"51547":-1,"51548":-1,"51549":2290,"51550":0,"51551":-1,"51552":0,"51553":0,"51554":0,"51555":-1,"51556":-1,"51557":-1,"51558":0,"51559":-1,"51560":-1,"51561":-1,"51562":-1,"51563":4012,"51564":0,"51565":0,"51566":0,"51567":0,"51568":-1,"51569":-1,"51570":252,"51571":-1,"51572":-1,"51573":-1,"51574":0,"51575":0,"51576":0,"51577":0,"51578":2699,"51579":-1,"51580":0,"51581":0,"51582":0,"51583":-1,"51584":3283,"51585":0,"51586":0,"51587":0,"51588":-1,"51589":0,"51590":-1,"51591":3760,"51592":-1,"51593":0,"51594":3674,"51595":0,"51596":0,"51597":0,"51598":3421,"51599":0,"51600":0,"51601":1929,"51602":0,"51603":0,"51604":0,"51605":0,"51606":0,"51607":0,"51608":0,"51609":-1,"51610":0,"51611":0,"51612":3304,"51613":0,"51614":0,"51615":-1,"51616":0,"51617":-1,"51618":0,"51619":0,"51620":-1,"51621":-1,"51622":-1,"51623":2392,"51624":3091,"51625":306,"51626":0,"51627":-1,"51628":0,"51629":0,"51630":-1,"51631":379,"51632":0,"51633":0,"51634":-1,"51635":3993,"51636":-1,"51637":0,"51638":3511,"51639":0,"51640":0,"51641":-1,"51642":1913,"51643":-1,"51644":0,"51645":3603,"51646":0,"51647":407,"51648":3171,"51649":3819,"51650":2667,"51651":0,"51652":-1,"51653":0,"51654":119,"51655":1937,"51656":3147,"51657":-1,"51658":0,"51659":3391,"51660":2821,"51661":0,"51662":-1,"51663":0,"51664":-1,"51665":-1,"51666":0,"51667":0,"51668":-1,"51669":3268,"51670":-1,"51671":2634,"51672":3455,"51673":0,"51674":0,"51675":-1,"51676":-1,"51677":2883,"51678":0,"51679":-1,"51680":0,"51681":-1,"51682":0,"51683":0,"51684":0,"51685":3853,"51686":0,"51687":0,"51688":0,"51689":0,"51690":0,"51691":-1,"51692":2842,"51693":-1,"51694":0,"51695":0,"51696":-1,"51697":-1,"51698":3345,"51699":0,"51700":0,"51701":-1,"51702":3475,"51703":2694,"51704":0,"51705":2111,"51706":0,"51707":0,"51708":0,"51709":1867,"51710":0,"51711":3419,"51712":-1,"51713":-1,"51714":0,"51715":0,"51716":1828,"51717":67,"51718":0,"51719":-1,"51720":0,"51721":0,"51722":-1,"51723":0,"51724":3390,"51725":98,"51726":0,"51727":3780,"51728":0,"51729":0,"51730":-1,"51731":0,"51732":-1,"51733":0,"51734":0,"51735":-1,"51736":-1,"51737":2952,"51738":3305,"51739":0,"51740":0,"51741":0,"51742":0,"51743":-1,"51744":-1,"51745":2353,"51746":-1,"51747":0,"51748":3685,"51749":2375,"51750":0,"51751":-1,"51752":-1,"51753":0,"51754":3136,"51755":1795,"51756":-1,"51757":0,"51758":0,"51759":207,"51760":-1,"51761":0,"51762":3287,"51763":0,"51764":-1,"51765":2861,"51766":378,"51767":-1,"51768":-1,"51769":0,"51770":-1,"51771":2867,"51772":0,"51773":0,"51774":0,"51775":-1,"51776":-1,"51777":-1,"51778":0,"51779":0,"51780":-1,"51781":-1,"51782":2164,"51783":-1,"51784":478,"51785":3947,"51786":-1,"51787":0,"51788":-1,"51789":0,"51790":0,"51791":275,"51792":0,"51793":0,"51794":0,"51795":-1,"51796":2135,"51797":0,"51798":182,"51799":-1,"51800":-1,"51801":2680,"51802":0,"51803":-1,"51804":-1,"51805":219,"51806":0,"51807":3828,"51808":-1,"51809":0,"51810":0,"51811":0,"51812":0,"51813":0,"51814":256,"51815":3484,"51816":0,"51817":0,"51818":-1,"51819":-1,"51820":0,"51821":0,"51822":2540,"51823":-1,"51824":-1,"51825":0,"51826":0,"51827":0,"51828":0,"51829":-1,"51830":3939,"51831":0,"51832":-1,"51833":2677,"51834":-1,"51835":0,"51836":0,"51837":0,"51838":0,"51839":3864,"51840":0,"51841":0,"51842":-1,"51843":-1,"51844":0,"51845":0,"51846":0,"51847":2006,"51848":-1,"51849":0,"51850":2801,"51851":0,"51852":3814,"51853":0,"51854":-1,"51855":-1,"51856":-1,"51857":0,"51858":-1,"51859":2089,"51860":0,"51861":2931,"51862":-1,"51863":0,"51864":3022,"51865":0,"51866":0,"51867":2032,"51868":-1,"51869":0,"51870":3149,"51871":3140,"51872":-1,"51873":3966,"51874":3947,"51875":-1,"51876":2438,"51877":3026,"51878":0,"51879":0,"51880":0,"51881":0,"51882":0,"51883":0,"51884":0,"51885":0,"51886":2501,"51887":2973,"51888":1996,"51889":2444,"51890":0,"51891":0,"51892":0,"51893":-1,"51894":0,"51895":0,"51896":-1,"51897":-1,"51898":0,"51899":0,"51900":2784,"51901":-1,"51902":-1,"51903":0,"51904":0,"51905":-1,"51906":0,"51907":0,"51908":-1,"51909":-1,"51910":-1,"51911":0,"51912":-1,"51913":-1,"51914":4020,"51915":2931,"51916":0,"51917":-1,"51918":-1,"51919":0,"51920":3264,"51921":0,"51922":1846,"51923":0,"51924":0,"51925":-1,"51926":-1,"51927":3349,"51928":0,"51929":0,"51930":-1,"51931":2285,"51932":0,"51933":0,"51934":0,"51935":0,"51936":-1,"51937":-1,"51938":-1,"51939":0,"51940":0,"51941":0,"51942":-1,"51943":-1,"51944":-1,"51945":0,"51946":0,"51947":0,"51948":388,"51949":0,"51950":2723,"51951":0,"51952":-1,"51953":-1,"51954":0,"51955":2061,"51956":3930,"51957":-1,"51958":-1,"51959":0,"51960":0,"51961":-1,"51962":-1,"51963":0,"51964":0,"51965":0,"51966":-1,"51967":-1,"51968":-1,"51969":-1,"51970":-1,"51971":0,"51972":-1,"51973":0,"51974":-1,"51975":3835,"51976":2499,"51977":-1,"51978":0,"51979":0,"51980":3891,"51981":-1,"51982":-1,"51983":-1,"51984":0,"51985":2061,"51986":-1,"51987":0,"51988":1951,"51989":-1,"51990":0,"51991":-1,"51992":445,"51993":0,"51994":-1,"51995":1842,"51996":0,"51997":0,"51998":-1,"51999":0,"52000":0,"52001":-1,"52002":-1,"52003":-1,"52004":0,"52005":-1,"52006":0,"52007":-1,"52008":0,"52009":0,"52010":0,"52011":0,"52012":0,"52013":2941,"52014":1994,"52015":3411,"52016":0,"52017":0,"52018":-1,"52019":3930,"52020":0,"52021":0,"52022":0,"52023":0,"52024":0,"52025":416,"52026":-1,"52027":0,"52028":2224,"52029":3031,"52030":0,"52031":0,"52032":3984,"52033":0,"52034":0,"52035":0,"52036":-1,"52037":0,"52038":-1,"52039":0,"52040":-1,"52041":-1,"52042":-1,"52043":350,"52044":2479,"52045":-1,"52046":0,"52047":63,"52048":-1,"52049":0,"52050":0,"52051":3505,"52052":0,"52053":0,"52054":0,"52055":3026,"52056":3442,"52057":0,"52058":0,"52059":3203,"52060":-1,"52061":-1,"52062":0,"52063":0,"52064":-1,"52065":3544,"52066":0,"52067":2612,"52068":0,"52069":0,"52070":-1,"52071":-1,"52072":0,"52073":-1,"52074":-1,"52075":0,"52076":0,"52077":3123,"52078":2020,"52079":491,"52080":0,"52081":-1,"52082":85,"52083":442,"52084":-1,"52085":2206,"52086":-1,"52087":0,"52088":-1,"52089":-1,"52090":-1,"52091":-1,"52092":0,"52093":-1,"52094":0,"52095":-1,"52096":32,"52097":0,"52098":57,"52099":2090,"52100":3094,"52101":0,"52102":-1,"52103":2141,"52104":-1,"52105":-1,"52106":-1,"52107":0,"52108":0,"52109":0,"52110":-1,"52111":0,"52112":3688,"52113":0,"52114":2289,"52115":0,"52116":2739,"52117":3814,"52118":0,"52119":0,"52120":0,"52121":0,"52122":0,"52123":0,"52124":2017,"52125":0,"52126":0,"52127":0,"52128":-1,"52129":3947,"52130":3419,"52131":0,"52132":-1,"52133":2995,"52134":3630,"52135":0,"52136":161,"52137":0,"52138":-1,"52139":-1,"52140":0,"52141":0,"52142":0,"52143":0,"52144":-1,"52145":220,"52146":4026,"52147":0,"52148":0,"52149":3554,"52150":-1,"52151":-1,"52152":0,"52153":0,"52154":0,"52155":-1,"52156":13,"52157":10,"52158":3179,"52159":0,"52160":0,"52161":-1,"52162":0,"52163":-1,"52164":99,"52165":2877,"52166":3717,"52167":1998,"52168":-1,"52169":0,"52170":0,"52171":-1,"52172":-1,"52173":3918,"52174":0,"52175":0,"52176":-1,"52177":-1,"52178":0,"52179":2016,"52180":391,"52181":2217,"52182":0,"52183":0,"52184":-1,"52185":3319,"52186":0,"52187":0,"52188":3418,"52189":-1,"52190":3717,"52191":0,"52192":0,"52193":-1,"52194":0,"52195":-1,"52196":-1,"52197":0,"52198":0,"52199":3686,"52200":-1,"52201":2842,"52202":292,"52203":-1,"52204":0,"52205":-1,"52206":-1,"52207":0,"52208":-1,"52209":0,"52210":2738,"52211":-1,"52212":2468,"52213":0,"52214":0,"52215":0,"52216":1958,"52217":0,"52218":0,"52219":4013,"52220":219,"52221":-1,"52222":0,"52223":0,"52224":-1,"52225":0,"52226":-1,"52227":-1,"52228":-1,"52229":-1,"52230":0,"52231":0,"52232":2280,"52233":-1,"52234":-1,"52235":0,"52236":3939,"52237":0,"52238":0,"52239":0,"52240":0,"52241":3087,"52242":-1,"52243":-1,"52244":-1,"52245":0,"52246":0,"52247":-1,"52248":-1,"52249":0,"52250":3534,"52251":0,"52252":1790,"52253":0,"52254":-1,"52255":0,"52256":-1,"52257":0,"52258":0,"52259":0,"52260":0,"52261":-1,"52262":0,"52263":-1,"52264":2359,"52265":2982,"52266":4056,"52267":-1,"52268":0,"52269":2790,"52270":3667,"52271":-1,"52272":0,"52273":0,"52274":2126,"52275":-1,"52276":-1,"52277":3908,"52278":0,"52279":-1,"52280":-1,"52281":-1,"52282":0,"52283":0,"52284":-1,"52285":-1,"52286":2327,"52287":0,"52288":3683,"52289":2581,"52290":0,"52291":3435,"52292":0,"52293":2890,"52294":-1,"52295":-1,"52296":-1,"52297":313,"52298":0,"52299":0,"52300":0,"52301":3209,"52302":-1,"52303":0,"52304":0,"52305":0,"52306":1887,"52307":0,"52308":2467,"52309":0,"52310":-1,"52311":-1,"52312":0,"52313":0,"52314":-1,"52315":0,"52316":0,"52317":0,"52318":0,"52319":0,"52320":0,"52321":0,"52322":0,"52323":0,"52324":0,"52325":-1,"52326":2737,"52327":-1,"52328":0,"52329":-1,"52330":-1,"52331":0,"52332":0,"52333":-1,"52334":-1,"52335":3740,"52336":-1,"52337":-1,"52338":3503,"52339":3862,"52340":0,"52341":3721,"52342":0,"52343":-1,"52344":-1,"52345":3911,"52346":193,"52347":0,"52348":2475,"52349":0,"52350":0,"52351":0,"52352":3189,"52353":0,"52354":-1,"52355":0,"52356":2821,"52357":-1,"52358":0,"52359":0,"52360":0,"52361":0,"52362":-1,"52363":3129,"52364":0,"52365":2400,"52366":1799,"52367":-1,"52368":-1,"52369":3629,"52370":2800,"52371":0,"52372":-1,"52373":-1,"52374":263,"52375":-1,"52376":-1,"52377":0,"52378":0,"52379":0,"52380":0,"52381":0,"52382":3642,"52383":-1,"52384":0,"52385":2569,"52386":0,"52387":-1,"52388":0,"52389":0,"52390":-1,"52391":0,"52392":2709,"52393":3302,"52394":2611,"52395":2186,"52396":0,"52397":-1,"52398":-1,"52399":0,"52400":0,"52401":0,"52402":-1,"52403":-1,"52404":1928,"52405":0,"52406":0,"52407":-1,"52408":-1,"52409":446,"52410":2007,"52411":0,"52412":1842,"52413":0,"52414":0,"52415":-1,"52416":0,"52417":-1,"52418":-1,"52419":-1,"52420":0,"52421":-1,"52422":-1,"52423":0,"52424":2479,"52425":-1,"52426":0,"52427":-1,"52428":-1,"52429":2032,"52430":-1,"52431":0,"52432":0,"52433":0,"52434":0,"52435":-1,"52436":30,"52437":0,"52438":3580,"52439":0,"52440":-1,"52441":-1,"52442":0,"52443":-1,"52444":-1,"52445":0,"52446":0,"52447":-1,"52448":-1,"52449":0,"52450":0,"52451":-1,"52452":0,"52453":-1,"52454":0,"52455":0,"52456":0,"52457":0,"52458":3112,"52459":-1,"52460":0,"52461":-1,"52462":2020,"52463":0,"52464":1923,"52465":3211,"52466":-1,"52467":0,"52468":-1,"52469":0,"52470":2507,"52471":0,"52472":-1,"52473":0,"52474":-1,"52475":2115,"52476":0,"52477":3182,"52478":342,"52479":3627,"52480":29,"52481":0,"52482":0,"52483":0,"52484":0,"52485":0,"52486":-1,"52487":2684,"52488":-1,"52489":-1,"52490":-1,"52491":3468,"52492":0,"52493":0,"52494":0,"52495":-1,"52496":2737,"52497":-1,"52498":276,"52499":0,"52500":2958,"52501":3036,"52502":0,"52503":0,"52504":-1,"52505":2253,"52506":4024,"52507":92,"52508":3068,"52509":0,"52510":0,"52511":2395,"52512":0,"52513":-1,"52514":1881,"52515":0,"52516":-1,"52517":-1,"52518":0,"52519":0,"52520":407,"52521":-1,"52522":2735,"52523":0,"52524":4057,"52525":-1,"52526":-1,"52527":-1,"52528":-1,"52529":0,"52530":0,"52531":0,"52532":0,"52533":3449,"52534":0,"52535":-1,"52536":99,"52537":-1,"52538":0,"52539":0,"52540":0,"52541":2840,"52542":3423,"52543":0,"52544":3711,"52545":-1,"52546":-1,"52547":3038,"52548":0,"52549":-1,"52550":99,"52551":0,"52552":0,"52553":0,"52554":0,"52555":0,"52556":0,"52557":-1,"52558":-1,"52559":2132,"52560":0,"52561":0,"52562":0,"52563":0,"52564":0,"52565":122,"52566":-1,"52567":-1,"52568":0,"52569":-1,"52570":0,"52571":359,"52572":0,"52573":-1,"52574":0,"52575":2994,"52576":-1,"52577":-1,"52578":3477,"52579":0,"52580":-1,"52581":4005,"52582":0,"52583":2963,"52584":3301,"52585":2506,"52586":0,"52587":2848,"52588":0,"52589":343,"52590":2962,"52591":0,"52592":0,"52593":-1,"52594":4051,"52595":0,"52596":-1,"52597":0,"52598":0,"52599":197,"52600":-1,"52601":3794,"52602":0,"52603":-1,"52604":-1,"52605":2902,"52606":0,"52607":463,"52608":0,"52609":-1,"52610":0,"52611":-1,"52612":0,"52613":-1,"52614":0,"52615":-1,"52616":-1,"52617":0,"52618":-1,"52619":0,"52620":0,"52621":2676,"52622":0,"52623":2136,"52624":0,"52625":-1,"52626":0,"52627":0,"52628":0,"52629":2263,"52630":0,"52631":230,"52632":0,"52633":0,"52634":4031,"52635":3461,"52636":2029,"52637":0,"52638":462,"52639":-1,"52640":3800,"52641":0,"52642":0,"52643":-1,"52644":0,"52645":0,"52646":0,"52647":0,"52648":0,"52649":0,"52650":0,"52651":2655,"52652":-1,"52653":-1,"52654":2128,"52655":0,"52656":212,"52657":3959,"52658":0,"52659":-1,"52660":3624,"52661":0,"52662":1904,"52663":-1,"52664":0,"52665":1867,"52666":0,"52667":-1,"52668":-1,"52669":3820,"52670":-1,"52671":-1,"52672":-1,"52673":0,"52674":0,"52675":0,"52676":0,"52677":0,"52678":0,"52679":1835,"52680":-1,"52681":111,"52682":4,"52683":-1,"52684":-1,"52685":0,"52686":0,"52687":0,"52688":0,"52689":0,"52690":0,"52691":0,"52692":-1,"52693":0,"52694":0,"52695":3307,"52696":2292,"52697":0,"52698":2136,"52699":3476,"52700":-1,"52701":499,"52702":506,"52703":-1,"52704":2610,"52705":-1,"52706":0,"52707":0,"52708":-1,"52709":0,"52710":0,"52711":1884,"52712":0,"52713":1968,"52714":3209,"52715":-1,"52716":3739,"52717":0,"52718":-1,"52719":0,"52720":157,"52721":0,"52722":-1,"52723":-1,"52724":-1,"52725":0,"52726":0,"52727":0,"52728":0,"52729":-1,"52730":0,"52731":-1,"52732":4040,"52733":-1,"52734":2089,"52735":0,"52736":1803,"52737":1887,"52738":3306,"52739":-1,"52740":0,"52741":-1,"52742":2476,"52743":0,"52744":0,"52745":-1,"52746":351,"52747":0,"52748":-1,"52749":0,"52750":-1,"52751":0,"52752":0,"52753":0,"52754":0,"52755":0,"52756":0,"52757":0,"52758":0,"52759":-1,"52760":-1,"52761":-1,"52762":-1,"52763":-1,"52764":0,"52765":0,"52766":-1,"52767":0,"52768":0,"52769":-1,"52770":0,"52771":-1,"52772":-1,"52773":0,"52774":3254,"52775":-1,"52776":-1,"52777":-1,"52778":-1,"52779":2259,"52780":0,"52781":0,"52782":0,"52783":-1,"52784":0,"52785":3156,"52786":1981,"52787":3092,"52788":-1,"52789":0,"52790":3851,"52791":0,"52792":123,"52793":-1,"52794":0,"52795":0,"52796":-1,"52797":0,"52798":0,"52799":-1,"52800":-1,"52801":4033,"52802":3033,"52803":-1,"52804":3332,"52805":-1,"52806":-1,"52807":0,"52808":2032,"52809":2197,"52810":0,"52811":-1,"52812":-1,"52813":3448,"52814":0,"52815":-1,"52816":0,"52817":-1,"52818":3839,"52819":-1,"52820":2228,"52821":0,"52822":0,"52823":0,"52824":0,"52825":-1,"52826":-1,"52827":0,"52828":-1,"52829":3398,"52830":0,"52831":0,"52832":-1,"52833":0,"52834":3307,"52835":0,"52836":2356,"52837":3567,"52838":0,"52839":0,"52840":2707,"52841":0,"52842":0,"52843":0,"52844":0,"52845":0,"52846":0,"52847":130,"52848":0,"52849":0,"52850":-1,"52851":0,"52852":1801,"52853":0,"52854":-1,"52855":0,"52856":2870,"52857":0,"52858":3881,"52859":-1,"52860":-1,"52861":-1,"52862":1897,"52863":0,"52864":2288,"52865":2585,"52866":3023,"52867":0,"52868":328,"52869":3242,"52870":0,"52871":0,"52872":-1,"52873":0,"52874":0,"52875":0,"52876":0,"52877":0,"52878":1809,"52879":-1,"52880":0,"52881":2273,"52882":0,"52883":0,"52884":-1,"52885":0,"52886":100,"52887":-1,"52888":0,"52889":0,"52890":0,"52891":2031,"52892":-1,"52893":0,"52894":4005,"52895":3900,"52896":0,"52897":0,"52898":0,"52899":0,"52900":0,"52901":0,"52902":0,"52903":0,"52904":0,"52905":0,"52906":0,"52907":2623,"52908":-1,"52909":-1,"52910":1879,"52911":0,"52912":-1,"52913":0,"52914":-1,"52915":-1,"52916":-1,"52917":-1,"52918":0,"52919":269,"52920":0,"52921":2444,"52922":-1,"52923":-1,"52924":0,"52925":3063,"52926":92,"52927":-1,"52928":0,"52929":0,"52930":0,"52931":0,"52932":-1,"52933":3969,"52934":0,"52935":0,"52936":-1,"52937":2058,"52938":0,"52939":0,"52940":3537,"52941":2220,"52942":0,"52943":0,"52944":65,"52945":-1,"52946":-1,"52947":0,"52948":0,"52949":0,"52950":0,"52951":0,"52952":0,"52953":0,"52954":-1,"52955":0,"52956":-1,"52957":0,"52958":-1,"52959":-1,"52960":0,"52961":352,"52962":0,"52963":3713,"52964":3508,"52965":-1,"52966":0,"52967":0,"52968":0,"52969":0,"52970":-1,"52971":-1,"52972":0,"52973":-1,"52974":0,"52975":0,"52976":3932,"52977":-1,"52978":3384,"52979":4032,"52980":0,"52981":0,"52982":3600,"52983":0,"52984":0,"52985":-1,"52986":0,"52987":-1,"52988":-1,"52989":0,"52990":0,"52991":-1,"52992":410,"52993":1895,"52994":-1,"52995":0,"52996":0,"52997":0,"52998":0,"52999":2275,"53000":-1,"53001":2343,"53002":-1,"53003":-1,"53004":0,"53005":-1,"53006":3497,"53007":335,"53008":3555,"53009":-1,"53010":-1,"53011":0,"53012":-1,"53013":0,"53014":3127,"53015":-1,"53016":-1,"53017":-1,"53018":0,"53019":0,"53020":-1,"53021":0,"53022":-1,"53023":-1,"53024":3373,"53025":0,"53026":-1,"53027":124,"53028":0,"53029":2704,"53030":-1,"53031":-1,"53032":0,"53033":3886,"53034":0,"53035":-1,"53036":0,"53037":0,"53038":-1,"53039":0,"53040":-1,"53041":-1,"53042":-1,"53043":0,"53044":0,"53045":0,"53046":0,"53047":0,"53048":0,"53049":2202,"53050":0,"53051":2642,"53052":0,"53053":0,"53054":0,"53055":-1,"53056":2119,"53057":-1,"53058":3438,"53059":0,"53060":0,"53061":397,"53062":0,"53063":-1,"53064":0,"53065":0,"53066":0,"53067":-1,"53068":0,"53069":54,"53070":0,"53071":0,"53072":136,"53073":0,"53074":2287,"53075":0,"53076":-1,"53077":0,"53078":4055,"53079":0,"53080":-1,"53081":0,"53082":-1,"53083":0,"53084":0,"53085":2522,"53086":2225,"53087":2491,"53088":1914,"53089":0,"53090":0,"53091":-1,"53092":0,"53093":0,"53094":3005,"53095":-1,"53096":-1,"53097":-1,"53098":3075,"53099":0,"53100":0,"53101":0,"53102":-1,"53103":2165,"53104":3232,"53105":2521,"53106":0,"53107":0,"53108":0,"53109":0,"53110":0,"53111":0,"53112":0,"53113":0,"53114":0,"53115":-1,"53116":2467,"53117":-1,"53118":-1,"53119":-1,"53120":-1,"53121":2914,"53122":-1,"53123":4040,"53124":0,"53125":0,"53126":0,"53127":0,"53128":-1,"53129":-1,"53130":2276,"53131":2629,"53132":2436,"53133":2564,"53134":-1,"53135":-1,"53136":-1,"53137":0,"53138":0,"53139":-1,"53140":274,"53141":0,"53142":-1,"53143":0,"53144":3554,"53145":-1,"53146":0,"53147":0,"53148":2885,"53149":0,"53150":3425,"53151":2112,"53152":202,"53153":-1,"53154":4008,"53155":-1,"53156":0,"53157":0,"53158":0,"53159":-1,"53160":0,"53161":129,"53162":0,"53163":0,"53164":0,"53165":2377,"53166":-1,"53167":0,"53168":0,"53169":-1,"53170":0,"53171":3903,"53172":0,"53173":-1,"53174":3327,"53175":2130,"53176":-1,"53177":2046,"53178":0,"53179":0,"53180":-1,"53181":155,"53182":0,"53183":-1,"53184":0,"53185":224,"53186":0,"53187":3672,"53188":0,"53189":0,"53190":0,"53191":0,"53192":3359,"53193":-1,"53194":0,"53195":2609,"53196":3586,"53197":-1,"53198":0,"53199":-1,"53200":-1,"53201":0,"53202":0,"53203":-1,"53204":0,"53205":0,"53206":3685,"53207":0,"53208":-1,"53209":0,"53210":0,"53211":-1,"53212":2476,"53213":0,"53214":1777,"53215":2994,"53216":0,"53217":-1,"53218":0,"53219":0,"53220":0,"53221":-1,"53222":0,"53223":-1,"53224":0,"53225":0,"53226":-1,"53227":1894,"53228":0,"53229":-1,"53230":-1,"53231":0,"53232":0,"53233":-1,"53234":3103,"53235":-1,"53236":2925,"53237":2480,"53238":0,"53239":220,"53240":3558,"53241":3083,"53242":2668,"53243":-1,"53244":2743,"53245":-1,"53246":0,"53247":1869,"53248":3004,"53249":0,"53250":2179,"53251":2181,"53252":0,"53253":-1,"53254":4,"53255":453,"53256":-1,"53257":0,"53258":-1,"53259":0,"53260":2822,"53261":-1,"53262":0,"53263":0,"53264":0,"53265":0,"53266":0,"53267":-1,"53268":-1,"53269":0,"53270":0,"53271":0,"53272":-1,"53273":0,"53274":0,"53275":0,"53276":-1,"53277":-1,"53278":0,"53279":-1,"53280":4023,"53281":0,"53282":0,"53283":0,"53284":0,"53285":151,"53286":-1,"53287":0,"53288":147,"53289":-1,"53290":-1,"53291":0,"53292":-1,"53293":0,"53294":0,"53295":-1,"53296":0,"53297":0,"53298":2462,"53299":2093,"53300":-1,"53301":1840,"53302":4014,"53303":-1,"53304":0,"53305":0,"53306":0,"53307":0,"53308":2566,"53309":0,"53310":2336,"53311":0,"53312":0,"53313":3009,"53314":0,"53315":0,"53316":-1,"53317":0,"53318":0,"53319":0,"53320":-1,"53321":-1,"53322":-1,"53323":3713,"53324":0,"53325":-1,"53326":-1,"53327":0,"53328":0,"53329":3867,"53330":-1,"53331":0,"53332":-1,"53333":2596,"53334":0,"53335":3190,"53336":-1,"53337":2750,"53338":-1,"53339":465,"53340":2579,"53341":184,"53342":116,"53343":-1,"53344":0,"53345":-1,"53346":0,"53347":-1,"53348":0,"53349":0,"53350":-1,"53351":0,"53352":0,"53353":-1,"53354":0,"53355":0,"53356":-1,"53357":0,"53358":321,"53359":0,"53360":0,"53361":3470,"53362":-1,"53363":0,"53364":-1,"53365":-1,"53366":0,"53367":2766,"53368":0,"53369":-1,"53370":0,"53371":3697,"53372":-1,"53373":3959,"53374":-1,"53375":-1,"53376":3130,"53377":0,"53378":0,"53379":3699,"53380":-1,"53381":1901,"53382":0,"53383":-1,"53384":-1,"53385":0,"53386":3357,"53387":0,"53388":0,"53389":2250,"53390":-1,"53391":3450,"53392":0,"53393":3096,"53394":-1,"53395":-1,"53396":-1,"53397":0,"53398":0,"53399":2143,"53400":0,"53401":-1,"53402":2961,"53403":0,"53404":-1,"53405":-1,"53406":3360,"53407":3334,"53408":-1,"53409":0,"53410":0,"53411":2022,"53412":0,"53413":1926,"53414":2862,"53415":0,"53416":0,"53417":2462,"53418":0,"53419":0,"53420":-1,"53421":0,"53422":-1,"53423":2136,"53424":-1,"53425":-1,"53426":0,"53427":0,"53428":223,"53429":-1,"53430":0,"53431":438,"53432":-1,"53433":2086,"53434":-1,"53435":3326,"53436":-1,"53437":-1,"53438":0,"53439":3809,"53440":0,"53441":0,"53442":0,"53443":1943,"53444":0,"53445":2444,"53446":0,"53447":0,"53448":-1,"53449":2197,"53450":0,"53451":-1,"53452":0,"53453":0,"53454":409,"53455":-1,"53456":-1,"53457":0,"53458":-1,"53459":0,"53460":0,"53461":2722,"53462":-1,"53463":0,"53464":0,"53465":0,"53466":0,"53467":-1,"53468":-1,"53469":0,"53470":0,"53471":-1,"53472":2711,"53473":-1,"53474":0,"53475":0,"53476":0,"53477":-1,"53478":-1,"53479":3367,"53480":0,"53481":0,"53482":0,"53483":3225,"53484":0,"53485":0,"53486":0,"53487":-1,"53488":2047,"53489":0,"53490":-1,"53491":0,"53492":0,"53493":-1,"53494":0,"53495":0,"53496":-1,"53497":4034,"53498":0,"53499":0,"53500":-1,"53501":-1,"53502":1983,"53503":2463,"53504":0,"53505":0,"53506":0,"53507":1945,"53508":0,"53509":0,"53510":-1,"53511":3940,"53512":2480,"53513":0,"53514":0,"53515":-1,"53516":0,"53517":0,"53518":3191,"53519":0,"53520":3935,"53521":0,"53522":-1,"53523":524,"53524":0,"53525":3188,"53526":2806,"53527":-1,"53528":0,"53529":0,"53530":0,"53531":4056,"53532":0,"53533":-1,"53534":3495,"53535":4008,"53536":-1,"53537":0,"53538":3759,"53539":3097,"53540":-1,"53541":0,"53542":0,"53543":0,"53544":1899,"53545":-1,"53546":-1,"53547":2488,"53548":2265,"53549":2018,"53550":0,"53551":0,"53552":0,"53553":0,"53554":0,"53555":0,"53556":0,"53557":0,"53558":0,"53559":2408,"53560":0,"53561":0,"53562":243,"53563":0,"53564":3316,"53565":3533,"53566":-1,"53567":0,"53568":3519,"53569":0,"53570":0,"53571":-1,"53572":0,"53573":0,"53574":3833,"53575":0,"53576":0,"53577":62,"53578":2779,"53579":0,"53580":0,"53581":-1,"53582":0,"53583":2009,"53584":0,"53585":-1,"53586":0,"53587":-1,"53588":366,"53589":2784,"53590":0,"53591":0,"53592":-1,"53593":4049,"53594":3362,"53595":0,"53596":0,"53597":-1,"53598":3486,"53599":-1,"53600":3256,"53601":0,"53602":0,"53603":0,"53604":3558,"53605":-1,"53606":0,"53607":0,"53608":-1,"53609":0,"53610":0,"53611":3512,"53612":3817,"53613":-1,"53614":0,"53615":-1,"53616":-1,"53617":-1,"53618":0,"53619":0,"53620":0,"53621":-1,"53622":2597,"53623":0,"53624":-1,"53625":-1,"53626":2574,"53627":0,"53628":0,"53629":0,"53630":0,"53631":3750,"53632":0,"53633":1900,"53634":19,"53635":0,"53636":1904,"53637":0,"53638":3802,"53639":-1,"53640":-1,"53641":3033,"53642":0,"53643":3146,"53644":0,"53645":0,"53646":-1,"53647":0,"53648":255,"53649":-1,"53650":-1,"53651":-1,"53652":-1,"53653":0,"53654":2851,"53655":-1,"53656":3066,"53657":-1,"53658":3765,"53659":3390,"53660":0,"53661":0,"53662":-1,"53663":0,"53664":-1,"53665":-1,"53666":0,"53667":-1,"53668":0,"53669":0,"53670":0,"53671":-1,"53672":0,"53673":-1,"53674":0,"53675":1936,"53676":3427,"53677":2077,"53678":1829,"53679":-1,"53680":3517,"53681":0,"53682":0,"53683":3290,"53684":0,"53685":-1,"53686":0,"53687":2271,"53688":-1,"53689":2444,"53690":0,"53691":-1,"53692":-1,"53693":3153,"53694":0,"53695":2368,"53696":-1,"53697":-1,"53698":-1,"53699":-1,"53700":0,"53701":2663,"53702":2024,"53703":0,"53704":0,"53705":0,"53706":-1,"53707":-1,"53708":0,"53709":366,"53710":0,"53711":-1,"53712":0,"53713":-1,"53714":-1,"53715":0,"53716":3331,"53717":3722,"53718":0,"53719":0,"53720":-1,"53721":346,"53722":0,"53723":0,"53724":-1,"53725":0,"53726":-1,"53727":3772,"53728":0,"53729":0,"53730":0,"53731":373,"53732":-1,"53733":-1,"53734":2634,"53735":0,"53736":2027,"53737":-1,"53738":0,"53739":-1,"53740":0,"53741":1918,"53742":0,"53743":0,"53744":0,"53745":0,"53746":-1,"53747":-1,"53748":0,"53749":0,"53750":0,"53751":0,"53752":0,"53753":0,"53754":2356,"53755":0,"53756":-1,"53757":-1,"53758":-1,"53759":2378,"53760":0,"53761":0,"53762":129,"53763":0,"53764":0,"53765":-1,"53766":-1,"53767":2426,"53768":-1,"53769":-1,"53770":0,"53771":2000,"53772":0,"53773":4029,"53774":0,"53775":0,"53776":-1,"53777":-1,"53778":0,"53779":3050,"53780":3683,"53781":0,"53782":3932,"53783":0,"53784":0,"53785":-1,"53786":2491,"53787":-1,"53788":0,"53789":0,"53790":0,"53791":0,"53792":0,"53793":-1,"53794":3481,"53795":0,"53796":2121,"53797":-1,"53798":2549,"53799":-1,"53800":2050,"53801":0,"53802":-1,"53803":0,"53804":-1,"53805":3598,"53806":0,"53807":0,"53808":-1,"53809":0,"53810":0,"53811":3121,"53812":0,"53813":0,"53814":-1,"53815":0,"53816":0,"53817":-1,"53818":-1,"53819":3476,"53820":0,"53821":3923,"53822":0,"53823":-1,"53824":3619,"53825":0,"53826":3542,"53827":0,"53828":0,"53829":-1,"53830":-1,"53831":-1,"53832":3501,"53833":0,"53834":484,"53835":0,"53836":3313,"53837":0,"53838":3196,"53839":-1,"53840":0,"53841":0,"53842":3975,"53843":0,"53844":-1,"53845":0,"53846":0,"53847":0,"53848":0,"53849":2184,"53850":0,"53851":386,"53852":-1,"53853":0,"53854":0,"53855":0,"53856":0,"53857":-1,"53858":2591,"53859":-1,"53860":122,"53861":-1,"53862":2374,"53863":0,"53864":-1,"53865":-1,"53866":248,"53867":-1,"53868":3229,"53869":0,"53870":0,"53871":-1,"53872":0,"53873":-1,"53874":212,"53875":-1,"53876":3109,"53877":-1,"53878":72,"53879":0,"53880":-1,"53881":-1,"53882":-1,"53883":2967,"53884":3055,"53885":0,"53886":2632,"53887":-1,"53888":0,"53889":-1,"53890":0,"53891":0,"53892":0,"53893":3043,"53894":2451,"53895":0,"53896":2417,"53897":-1,"53898":4023,"53899":0,"53900":3814,"53901":3967,"53902":0,"53903":0,"53904":-1,"53905":0,"53906":-1,"53907":2116,"53908":0,"53909":94,"53910":2197,"53911":0,"53912":0,"53913":0,"53914":0,"53915":0,"53916":0,"53917":0,"53918":-1,"53919":1920,"53920":0,"53921":-1,"53922":0,"53923":0,"53924":0,"53925":0,"53926":-1,"53927":-1,"53928":0,"53929":-1,"53930":2043,"53931":0,"53932":0,"53933":2399,"53934":2101,"53935":2301,"53936":0,"53937":3726,"53938":0,"53939":0,"53940":-1,"53941":0,"53942":-1,"53943":-1,"53944":3570,"53945":0,"53946":95,"53947":0,"53948":41,"53949":-1,"53950":-1,"53951":232,"53952":-1,"53953":0,"53954":2037,"53955":0,"53956":-1,"53957":2971,"53958":0,"53959":0,"53960":0,"53961":0,"53962":0,"53963":3903,"53964":229,"53965":-1,"53966":-1,"53967":0,"53968":1791,"53969":-1,"53970":-1,"53971":0,"53972":3688,"53973":-1,"53974":-1,"53975":-1,"53976":0,"53977":0,"53978":0,"53979":3457,"53980":0,"53981":4030,"53982":3060,"53983":0,"53984":-1,"53985":476,"53986":0,"53987":0,"53988":0,"53989":-1,"53990":-1,"53991":0,"53992":177,"53993":0,"53994":0,"53995":0,"53996":2204,"53997":-1,"53998":0,"53999":-1,"54000":0,"54001":0,"54002":-1,"54003":-1,"54004":0,"54005":-1,"54006":0,"54007":-1,"54008":-1,"54009":3739,"54010":0,"54011":-1,"54012":0,"54013":2897,"54014":0,"54015":0,"54016":0,"54017":2655,"54018":0,"54019":0,"54020":-1,"54021":2362,"54022":-1,"54023":0,"54024":0,"54025":0,"54026":0,"54027":-1,"54028":1951,"54029":0,"54030":0,"54031":2279,"54032":2047,"54033":0,"54034":-1,"54035":-1,"54036":456,"54037":-1,"54038":0,"54039":0,"54040":0,"54041":0,"54042":3765,"54043":303,"54044":-1,"54045":-1,"54046":0,"54047":2517,"54048":2280,"54049":-1,"54050":31,"54051":-1,"54052":3706,"54053":0,"54054":0,"54055":1936,"54056":0,"54057":-1,"54058":0,"54059":0,"54060":2819,"54061":0,"54062":2526,"54063":0,"54064":3420,"54065":2723,"54066":0,"54067":0,"54068":0,"54069":2793,"54070":0,"54071":0,"54072":-1,"54073":0,"54074":-1,"54075":0,"54076":0,"54077":-1,"54078":0,"54079":3760,"54080":0,"54081":2412,"54082":0,"54083":0,"54084":-1,"54085":-1,"54086":465,"54087":0,"54088":0,"54089":247,"54090":-1,"54091":0,"54092":0,"54093":-1,"54094":0,"54095":494,"54096":0,"54097":2420,"54098":0,"54099":-1,"54100":2732,"54101":0,"54102":-1,"54103":3901,"54104":0,"54105":3146,"54106":0,"54107":1915,"54108":3823,"54109":0,"54110":0,"54111":3035,"54112":0,"54113":-1,"54114":0,"54115":0,"54116":0,"54117":-1,"54118":-1,"54119":0,"54120":1993,"54121":1974,"54122":-1,"54123":-1,"54124":0,"54125":2349,"54126":-1,"54127":0,"54128":0,"54129":0,"54130":0,"54131":-1,"54132":-1,"54133":0,"54134":2548,"54135":3749,"54136":1949,"54137":-1,"54138":0,"54139":2395,"54140":0,"54141":-1,"54142":3731,"54143":-1,"54144":3267,"54145":3608,"54146":0,"54147":-1,"54148":0,"54149":-1,"54150":0,"54151":0,"54152":0,"54153":0,"54154":0,"54155":0,"54156":0,"54157":1807,"54158":-1,"54159":0,"54160":366,"54161":0,"54162":2230,"54163":0,"54164":0,"54165":0,"54166":-1,"54167":-1,"54168":-1,"54169":2169,"54170":0,"54171":-1,"54172":2001,"54173":0,"54174":2757,"54175":0,"54176":-1,"54177":-1,"54178":0,"54179":0,"54180":3464,"54181":0,"54182":0,"54183":2424,"54184":0,"54185":-1,"54186":0,"54187":-1,"54188":409,"54189":-1,"54190":0,"54191":-1,"54192":0,"54193":0,"54194":3097,"54195":-1,"54196":-1,"54197":3948,"54198":3774,"54199":0,"54200":0,"54201":0,"54202":0,"54203":0,"54204":-1,"54205":0,"54206":2862,"54207":0,"54208":0,"54209":4006,"54210":3185,"54211":507,"54212":0,"54213":0,"54214":-1,"54215":0,"54216":0,"54217":3055,"54218":2209,"54219":4037,"54220":1860,"54221":0,"54222":-1,"54223":0,"54224":0,"54225":0,"54226":-1,"54227":0,"54228":0,"54229":0,"54230":0,"54231":1796,"54232":0,"54233":0,"54234":-1,"54235":-1,"54236":0,"54237":-1,"54238":3568,"54239":0,"54240":3050,"54241":0,"54242":0,"54243":-1,"54244":-1,"54245":115,"54246":-1,"54247":-1,"54248":-1,"54249":0,"54250":3065,"54251":3236,"54252":0,"54253":2477,"54254":-1,"54255":0,"54256":-1,"54257":3830,"54258":-1,"54259":0,"54260":0,"54261":-1,"54262":0,"54263":1986,"54264":-1,"54265":2940,"54266":0,"54267":-1,"54268":-1,"54269":0,"54270":0,"54271":0,"54272":0,"54273":89,"54274":-1,"54275":-1,"54276":0,"54277":0,"54278":0,"54279":0,"54280":-1,"54281":0,"54282":0,"54283":-1,"54284":-1,"54285":2088,"54286":0,"54287":-1,"54288":-1,"54289":-1,"54290":0,"54291":0,"54292":0,"54293":2126,"54294":0,"54295":-1,"54296":2684,"54297":2896,"54298":3299,"54299":2057,"54300":-1,"54301":0,"54302":-1,"54303":2100,"54304":0,"54305":0,"54306":0,"54307":213,"54308":0,"54309":0,"54310":0,"54311":0,"54312":-1,"54313":-1,"54314":2546,"54315":0,"54316":-1,"54317":2512,"54318":2024,"54319":-1,"54320":2532,"54321":0,"54322":-1,"54323":4036,"54324":-1,"54325":362,"54326":3432,"54327":-1,"54328":0,"54329":3107,"54330":-1,"54331":-1,"54332":0,"54333":-1,"54334":-1,"54335":2728,"54336":0,"54337":0,"54338":0,"54339":0,"54340":0,"54341":0,"54342":0,"54343":-1,"54344":2927,"54345":2327,"54346":2752,"54347":0,"54348":-1,"54349":-1,"54350":0,"54351":0,"54352":-1,"54353":-1,"54354":2859,"54355":-1,"54356":0,"54357":0,"54358":0,"54359":-1,"54360":0,"54361":0,"54362":-1,"54363":-1,"54364":3763,"54365":-1,"54366":0,"54367":0,"54368":0,"54369":-1,"54370":0,"54371":0,"54372":-1,"54373":-1,"54374":3835,"54375":-1,"54376":0,"54377":0,"54378":-1,"54379":0,"54380":0,"54381":-1,"54382":0,"54383":0,"54384":0,"54385":0,"54386":186,"54387":2749,"54388":1997,"54389":-1,"54390":-1,"54391":0,"54392":2328,"54393":-1,"54394":0,"54395":-1,"54396":0,"54397":0,"54398":0,"54399":-1,"54400":-1,"54401":0,"54402":-1,"54403":-1,"54404":3325,"54405":-1,"54406":-1,"54407":-1,"54408":1918,"54409":0,"54410":0,"54411":2816,"54412":2168,"54413":-1,"54414":0,"54415":0,"54416":-1,"54417":3116,"54418":3978,"54419":0,"54420":0,"54421":3179,"54422":0,"54423":1917,"54424":3938,"54425":0,"54426":0,"54427":0,"54428":0,"54429":0,"54430":406,"54431":0,"54432":0,"54433":-1,"54434":0,"54435":248,"54436":-1,"54437":3863,"54438":2217,"54439":0,"54440":0,"54441":0,"54442":0,"54443":0,"54444":0,"54445":0,"54446":0,"54447":2193,"54448":-1,"54449":0,"54450":3337,"54451":0,"54452":0,"54453":2646,"54454":-1,"54455":0,"54456":0,"54457":2714,"54458":0,"54459":-1,"54460":294,"54461":-1,"54462":-1,"54463":0,"54464":0,"54465":0,"54466":0,"54467":0,"54468":2685,"54469":0,"54470":324,"54471":0,"54472":12,"54473":3963,"54474":0,"54475":3111,"54476":-1,"54477":3873,"54478":-1,"54479":0,"54480":-1,"54481":-1,"54482":0,"54483":-1,"54484":2784,"54485":0,"54486":2060,"54487":-1,"54488":3823,"54489":0,"54490":-1,"54491":2124,"54492":2361,"54493":-1,"54494":0,"54495":0,"54496":-1,"54497":0,"54498":0,"54499":3628,"54500":0,"54501":0,"54502":-1,"54503":3814,"54504":0,"54505":0,"54506":-1,"54507":0,"54508":0,"54509":0,"54510":0,"54511":0,"54512":-1,"54513":0,"54514":0,"54515":0,"54516":0,"54517":0,"54518":0,"54519":-1,"54520":0,"54521":443,"54522":3287,"54523":0,"54524":0,"54525":0,"54526":-1,"54527":0,"54528":0,"54529":-1,"54530":0,"54531":41,"54532":-1,"54533":-1,"54534":-1,"54535":-1,"54536":0,"54537":2478,"54538":0,"54539":-1,"54540":-1,"54541":3460,"54542":-1,"54543":0,"54544":1955,"54545":0,"54546":0,"54547":0,"54548":-1,"54549":0,"54550":0,"54551":0,"54552":1944,"54553":285,"54554":0,"54555":0,"54556":-1,"54557":-1,"54558":-1,"54559":0,"54560":-1,"54561":0,"54562":-1,"54563":-1,"54564":3696,"54565":-1,"54566":-1,"54567":3699,"54568":-1,"54569":2289,"54570":-1,"54571":0,"54572":-1,"54573":2007,"54574":3479,"54575":0,"54576":0,"54577":0,"54578":0,"54579":2044,"54580":0,"54581":3292,"54582":-1,"54583":0,"54584":-1,"54585":0,"54586":-1,"54587":93,"54588":-1,"54589":0,"54590":0,"54591":-1,"54592":-1,"54593":0,"54594":0,"54595":0,"54596":0,"54597":2394,"54598":390,"54599":3073,"54600":0,"54601":0,"54602":0,"54603":-1,"54604":53,"54605":0,"54606":0,"54607":0,"54608":3344,"54609":0,"54610":0,"54611":-1,"54612":0,"54613":-1,"54614":0,"54615":0,"54616":-1,"54617":-1,"54618":2244,"54619":0,"54620":-1,"54621":0,"54622":3300,"54623":2654,"54624":170,"54625":0,"54626":3173,"54627":-1,"54628":0,"54629":305,"54630":1978,"54631":0,"54632":0,"54633":3031,"54634":-1,"54635":2773,"54636":0,"54637":2612,"54638":-1,"54639":0,"54640":-1,"54641":2047,"54642":0,"54643":-1,"54644":0,"54645":0,"54646":-1,"54647":0,"54648":0,"54649":0,"54650":0,"54651":0,"54652":0,"54653":3544,"54654":0,"54655":2717,"54656":0,"54657":0,"54658":2792,"54659":0,"54660":0,"54661":-1,"54662":-1,"54663":0,"54664":0,"54665":3933,"54666":-1,"54667":2305,"54668":0,"54669":9,"54670":-1,"54671":0,"54672":0,"54673":-1,"54674":3518,"54675":2775,"54676":0,"54677":-1,"54678":0,"54679":0,"54680":0,"54681":-1,"54682":-1,"54683":0,"54684":3684,"54685":-1,"54686":0,"54687":0,"54688":0,"54689":0,"54690":0,"54691":2717,"54692":199,"54693":-1,"54694":3753,"54695":0,"54696":3185,"54697":2541,"54698":0,"54699":-1,"54700":0,"54701":3653,"54702":-1,"54703":0,"54704":0,"54705":0,"54706":0,"54707":0,"54708":4054,"54709":1779,"54710":0,"54711":-1,"54712":0,"54713":0,"54714":0,"54715":2483,"54716":0,"54717":0,"54718":0,"54719":-1,"54720":0,"54721":-1,"54722":-1,"54723":0,"54724":-1,"54725":0,"54726":0,"54727":-1,"54728":2274,"54729":3895,"54730":-1,"54731":-1,"54732":0,"54733":-1,"54734":-1,"54735":0,"54736":3701,"54737":0,"54738":0,"54739":-1,"54740":3560,"54741":0,"54742":0,"54743":2152,"54744":0,"54745":-1,"54746":0,"54747":-1,"54748":0,"54749":-1,"54750":-1,"54751":-1,"54752":3994,"54753":-1,"54754":1981,"54755":0,"54756":0,"54757":-1,"54758":2632,"54759":0,"54760":-1,"54761":0,"54762":0,"54763":0,"54764":0,"54765":-1,"54766":0,"54767":-1,"54768":-1,"54769":-1,"54770":0,"54771":251,"54772":0,"54773":0,"54774":23,"54775":2581,"54776":0,"54777":0,"54778":379,"54779":3536,"54780":0,"54781":-1,"54782":2817,"54783":0,"54784":-1,"54785":0,"54786":-1,"54787":2783,"54788":0,"54789":476,"54790":-1,"54791":328,"54792":0,"54793":-1,"54794":0,"54795":0,"54796":-1,"54797":-1,"54798":0,"54799":0,"54800":0,"54801":-1,"54802":0,"54803":0,"54804":2602,"54805":0,"54806":-1,"54807":-1,"54808":-1,"54809":0,"54810":0,"54811":0,"54812":0,"54813":-1,"54814":-1,"54815":0,"54816":0,"54817":0,"54818":-1,"54819":2446,"54820":0,"54821":-1,"54822":2859,"54823":1943,"54824":0,"54825":-1,"54826":3850,"54827":255,"54828":-1,"54829":3400,"54830":0,"54831":0,"54832":0,"54833":-1,"54834":11,"54835":0,"54836":0,"54837":-1,"54838":0,"54839":0,"54840":-1,"54841":0,"54842":2025,"54843":0,"54844":0,"54845":0,"54846":0,"54847":-1,"54848":285,"54849":1794,"54850":0,"54851":0,"54852":0,"54853":0,"54854":2053,"54855":-1,"54856":3117,"54857":-1,"54858":0,"54859":3885,"54860":-1,"54861":0,"54862":2304,"54863":0,"54864":0,"54865":-1,"54866":0,"54867":-1,"54868":0,"54869":0,"54870":3291,"54871":2181,"54872":0,"54873":-1,"54874":3434,"54875":0,"54876":-1,"54877":0,"54878":0,"54879":3423,"54880":-1,"54881":0,"54882":0,"54883":-1,"54884":0,"54885":33,"54886":0,"54887":0,"54888":2379,"54889":0,"54890":2048,"54891":2979,"54892":0,"54893":0,"54894":0,"54895":2672,"54896":3026,"54897":2566,"54898":0,"54899":0,"54900":-1,"54901":-1,"54902":1971,"54903":0,"54904":2405,"54905":0,"54906":-1,"54907":0,"54908":192,"54909":3053,"54910":-1,"54911":-1,"54912":0,"54913":0,"54914":-1,"54915":0,"54916":-1,"54917":3185,"54918":170,"54919":-1,"54920":-1,"54921":0,"54922":0,"54923":0,"54924":1800,"54925":2514,"54926":-1,"54927":-1,"54928":2508,"54929":3614,"54930":0,"54931":0,"54932":0,"54933":0,"54934":-1,"54935":-1,"54936":0,"54937":-1,"54938":2931,"54939":-1,"54940":-1,"54941":2295,"54942":0,"54943":-1,"54944":-1,"54945":0,"54946":0,"54947":-1,"54948":-1,"54949":0,"54950":2695,"54951":-1,"54952":0,"54953":2886,"54954":0,"54955":0,"54956":0,"54957":0,"54958":2654,"54959":2923,"54960":0,"54961":-1,"54962":-1,"54963":0,"54964":-1,"54965":-1,"54966":3915,"54967":3548,"54968":3480,"54969":-1,"54970":0,"54971":2026,"54972":-1,"54973":-1,"54974":-1,"54975":0,"54976":0,"54977":0,"54978":0,"54979":-1,"54980":0,"54981":-1,"54982":0,"54983":2708,"54984":2945,"54985":0,"54986":0,"54987":0,"54988":3448,"54989":0,"54990":3928,"54991":2105,"54992":151,"54993":2085,"54994":2265,"54995":-1,"54996":1856,"54997":-1,"54998":145,"54999":-1,"55000":2584,"55001":-1,"55002":3967,"55003":0,"55004":0,"55005":0,"55006":0,"55007":0,"55008":-1,"55009":-1,"55010":0,"55011":0,"55012":0,"55013":-1,"55014":-1,"55015":0,"55016":0,"55017":-1,"55018":0,"55019":-1,"55020":0,"55021":3615,"55022":3803,"55023":0,"55024":-1,"55025":3567,"55026":0,"55027":-1,"55028":0,"55029":85,"55030":2119,"55031":0,"55032":-1,"55033":2270,"55034":0,"55035":0,"55036":-1,"55037":-1,"55038":0,"55039":0,"55040":255,"55041":3685,"55042":0,"55043":0,"55044":0,"55045":0,"55046":3116,"55047":0,"55048":0,"55049":2236,"55050":0,"55051":0,"55052":2321,"55053":3229,"55054":366,"55055":-1,"55056":0,"55057":2011,"55058":-1,"55059":0,"55060":0,"55061":0,"55062":0,"55063":-1,"55064":3289,"55065":0,"55066":-1,"55067":-1,"55068":-1,"55069":0,"55070":3434,"55071":-1,"55072":0,"55073":0,"55074":-1,"55075":0,"55076":3017,"55077":0,"55078":0,"55079":-1,"55080":0,"55081":0,"55082":3056,"55083":0,"55084":2923,"55085":0,"55086":3614,"55087":3430,"55088":2444,"55089":0,"55090":-1,"55091":0,"55092":453,"55093":0,"55094":-1,"55095":3618,"55096":0,"55097":-1,"55098":3642,"55099":1998,"55100":0,"55101":-1,"55102":-1,"55103":0,"55104":2835,"55105":-1,"55106":0,"55107":0,"55108":0,"55109":0,"55110":-1,"55111":-1,"55112":-1,"55113":0,"55114":219,"55115":-1,"55116":3344,"55117":0,"55118":0,"55119":2226,"55120":0,"55121":-1,"55122":2077,"55123":0,"55124":-1,"55125":-1,"55126":0,"55127":-1,"55128":-1,"55129":0,"55130":-1,"55131":0,"55132":0,"55133":0,"55134":-1,"55135":0,"55136":2091,"55137":0,"55138":3385,"55139":2800,"55140":0,"55141":0,"55142":0,"55143":0,"55144":-1,"55145":0,"55146":-1,"55147":2336,"55148":0,"55149":0,"55150":-1,"55151":0,"55152":-1,"55153":3306,"55154":3394,"55155":0,"55156":43,"55157":3721,"55158":3601,"55159":0,"55160":-1,"55161":-1,"55162":-1,"55163":0,"55164":0,"55165":0,"55166":2597,"55167":0,"55168":-1,"55169":0,"55170":0,"55171":-1,"55172":0,"55173":3342,"55174":-1,"55175":2585,"55176":0,"55177":0,"55178":0,"55179":0,"55180":0,"55181":2289,"55182":2906,"55183":0,"55184":0,"55185":0,"55186":2697,"55187":-1,"55188":-1,"55189":2641,"55190":-1,"55191":3255,"55192":0,"55193":1875,"55194":-1,"55195":0,"55196":2659,"55197":0,"55198":0,"55199":2780,"55200":0,"55201":0,"55202":341,"55203":0,"55204":0,"55205":0,"55206":0,"55207":3836,"55208":-1,"55209":0,"55210":3465,"55211":2778,"55212":-1,"55213":0,"55214":-1,"55215":3555,"55216":0,"55217":-1,"55218":2995,"55219":3122,"55220":0,"55221":2831,"55222":351,"55223":-1,"55224":0,"55225":-1,"55226":2141,"55227":2844,"55228":-1,"55229":-1,"55230":-1,"55231":174,"55232":0,"55233":0,"55234":0,"55235":220,"55236":-1,"55237":0,"55238":0,"55239":3180,"55240":-1,"55241":0,"55242":3168,"55243":0,"55244":-1,"55245":12,"55246":0,"55247":-1,"55248":0,"55249":3782,"55250":-1,"55251":0,"55252":-1,"55253":0,"55254":0,"55255":0,"55256":-1,"55257":2287,"55258":-1,"55259":3198,"55260":0,"55261":2248,"55262":0,"55263":-1,"55264":79,"55265":0,"55266":3554,"55267":0,"55268":0,"55269":0,"55270":-1,"55271":0,"55272":0,"55273":0,"55274":0,"55275":3702,"55276":-1,"55277":0,"55278":-1,"55279":0,"55280":3765,"55281":0,"55282":-1,"55283":-1,"55284":1869,"55285":0,"55286":2257,"55287":-1,"55288":0,"55289":0,"55290":0,"55291":3619,"55292":0,"55293":0,"55294":2760,"55295":0,"55296":-1,"55297":0,"55298":3418,"55299":0,"55300":-1,"55301":365,"55302":3176,"55303":-1,"55304":-1,"55305":3902,"55306":-1,"55307":0,"55308":0,"55309":0,"55310":0,"55311":-1,"55312":0,"55313":0,"55314":0,"55315":0,"55316":3600,"55317":2279,"55318":3036,"55319":2648,"55320":0,"55321":3348,"55322":-1,"55323":0,"55324":0,"55325":2002,"55326":0,"55327":3600,"55328":0,"55329":517,"55330":0,"55331":2936,"55332":0,"55333":-1,"55334":0,"55335":3501,"55336":-1,"55337":0,"55338":0,"55339":3102,"55340":-1,"55341":-1,"55342":-1,"55343":3486,"55344":187,"55345":0,"55346":0,"55347":2909,"55348":426,"55349":2844,"55350":0,"55351":-1,"55352":-1,"55353":-1,"55354":-1,"55355":-1,"55356":-1,"55357":2524,"55358":0,"55359":-1,"55360":-1,"55361":2285,"55362":-1,"55363":0,"55364":0,"55365":-1,"55366":0,"55367":2306,"55368":-1,"55369":0,"55370":0,"55371":0,"55372":0,"55373":174,"55374":0,"55375":-1,"55376":0,"55377":3556,"55378":-1,"55379":-1,"55380":0,"55381":0,"55382":0,"55383":473,"55384":3435,"55385":160,"55386":0,"55387":-1,"55388":0,"55389":122,"55390":-1,"55391":-1,"55392":0,"55393":0,"55394":2814,"55395":0,"55396":3501,"55397":0,"55398":189,"55399":3493,"55400":-1,"55401":0,"55402":-1,"55403":1930,"55404":-1,"55405":0,"55406":0,"55407":0,"55408":54,"55409":0,"55410":3139,"55411":0,"55412":0,"55413":-1,"55414":-1,"55415":0,"55416":-1,"55417":0,"55418":0,"55419":-1,"55420":-1,"55421":0,"55422":3029,"55423":3863,"55424":0,"55425":0,"55426":0,"55427":0,"55428":0,"55429":-1,"55430":-1,"55431":0,"55432":-1,"55433":3216,"55434":-1,"55435":0,"55436":-1,"55437":-1,"55438":-1,"55439":0,"55440":-1,"55441":0,"55442":0,"55443":26,"55444":0,"55445":0,"55446":-1,"55447":2559,"55448":0,"55449":-1,"55450":0,"55451":0,"55452":0,"55453":-1,"55454":-1,"55455":0,"55456":-1,"55457":-1,"55458":-1,"55459":-1,"55460":0,"55461":3184,"55462":0,"55463":0,"55464":-1,"55465":0,"55466":0,"55467":0,"55468":0,"55469":0,"55470":0,"55471":0,"55472":3148,"55473":0,"55474":0,"55475":0,"55476":3409,"55477":0,"55478":0,"55479":0,"55480":-1,"55481":3960,"55482":-1,"55483":-1,"55484":0,"55485":0,"55486":-1,"55487":-1,"55488":-1,"55489":-1,"55490":-1,"55491":0,"55492":64,"55493":0,"55494":-1,"55495":-1,"55496":4035,"55497":0,"55498":0,"55499":2692,"55500":-1,"55501":0,"55502":0,"55503":0,"55504":3015,"55505":0,"55506":-1,"55507":2558,"55508":0,"55509":0,"55510":-1,"55511":0,"55512":2298,"55513":453,"55514":-1,"55515":0,"55516":2876,"55517":0,"55518":0,"55519":0,"55520":3915,"55521":3072,"55522":-1,"55523":0,"55524":-1,"55525":-1,"55526":4001,"55527":-1,"55528":2382,"55529":0,"55530":0,"55531":0,"55532":0,"55533":-1,"55534":3522,"55535":0,"55536":-1,"55537":0,"55538":0,"55539":0,"55540":-1,"55541":-1,"55542":-1,"55543":0,"55544":0,"55545":2121,"55546":-1,"55547":-1,"55548":3975,"55549":-1,"55550":-1,"55551":-1,"55552":-1,"55553":-1,"55554":1807,"55555":0,"55556":-1,"55557":0,"55558":3156,"55559":1902,"55560":0,"55561":-1,"55562":0,"55563":-1,"55564":3014,"55565":2563,"55566":0,"55567":-1,"55568":2420,"55569":-1,"55570":0,"55571":-1,"55572":-1,"55573":-1,"55574":3565,"55575":1800,"55576":-1,"55577":0,"55578":0,"55579":3282,"55580":0,"55581":0,"55582":0,"55583":0,"55584":463,"55585":-1,"55586":0,"55587":3931,"55588":0,"55589":-1,"55590":0,"55591":0,"55592":0,"55593":-1,"55594":0,"55595":463,"55596":4036,"55597":0,"55598":0,"55599":2953,"55600":0,"55601":0,"55602":0,"55603":-1,"55604":-1,"55605":0,"55606":-1,"55607":2711,"55608":-1,"55609":3607,"55610":-1,"55611":0,"55612":0,"55613":0,"55614":-1,"55615":0,"55616":0,"55617":-1,"55618":4034,"55619":308,"55620":2856,"55621":3164,"55622":-1,"55623":-1,"55624":2747,"55625":2078,"55626":0,"55627":-1,"55628":2687,"55629":0,"55630":3463,"55631":-1,"55632":-1,"55633":0,"55634":-1,"55635":1854,"55636":0,"55637":0,"55638":-1,"55639":0,"55640":-1,"55641":0,"55642":0,"55643":2567,"55644":65,"55645":1975,"55646":3381,"55647":3036,"55648":0,"55649":275,"55650":0,"55651":-1,"55652":-1,"55653":3307,"55654":0,"55655":3261,"55656":-1,"55657":0,"55658":0,"55659":-1,"55660":0,"55661":-1,"55662":0,"55663":0,"55664":105,"55665":2774,"55666":-1,"55667":0,"55668":0,"55669":-1,"55670":3996,"55671":0,"55672":-1,"55673":0,"55674":-1,"55675":-1,"55676":0,"55677":0,"55678":0,"55679":0,"55680":-1,"55681":-1,"55682":0,"55683":1776,"55684":0,"55685":-1,"55686":3031,"55687":4040,"55688":-1,"55689":-1,"55690":-1,"55691":0,"55692":2837,"55693":-1,"55694":0,"55695":-1,"55696":3895,"55697":-1,"55698":2682,"55699":245,"55700":0,"55701":3409,"55702":0,"55703":-1,"55704":0,"55705":2228,"55706":0,"55707":-1,"55708":1843,"55709":-1,"55710":0,"55711":-1,"55712":2462,"55713":0,"55714":-1,"55715":0,"55716":2718,"55717":2142,"55718":3898,"55719":2267,"55720":3388,"55721":0,"55722":0,"55723":-1,"55724":0,"55725":3230,"55726":-1,"55727":0,"55728":0,"55729":-1,"55730":-1,"55731":2271,"55732":-1,"55733":3084,"55734":3773,"55735":0,"55736":0,"55737":0,"55738":0,"55739":0,"55740":0,"55741":-1,"55742":0,"55743":-1,"55744":0,"55745":0,"55746":-1,"55747":-1,"55748":-1,"55749":-1,"55750":2896,"55751":0,"55752":223,"55753":0,"55754":-1,"55755":0,"55756":3271,"55757":0,"55758":2650,"55759":0,"55760":-1,"55761":0,"55762":0,"55763":0,"55764":0,"55765":-1,"55766":0,"55767":0,"55768":-1,"55769":0,"55770":4056,"55771":-1,"55772":3894,"55773":0,"55774":4014,"55775":0,"55776":0,"55777":0,"55778":3310,"55779":0,"55780":0,"55781":-1,"55782":0,"55783":3086,"55784":0,"55785":-1,"55786":2609,"55787":0,"55788":0,"55789":0,"55790":-1,"55791":0,"55792":0,"55793":-1,"55794":20,"55795":2403,"55796":2352,"55797":-1,"55798":0,"55799":0,"55800":0,"55801":3745,"55802":-1,"55803":0,"55804":503,"55805":0,"55806":-1,"55807":0,"55808":0,"55809":-1,"55810":3002,"55811":3909,"55812":0,"55813":-1,"55814":0,"55815":-1,"55816":0,"55817":-1,"55818":3302,"55819":3808,"55820":115,"55821":0,"55822":0,"55823":-1,"55824":-1,"55825":-1,"55826":0,"55827":2131,"55828":3010,"55829":0,"55830":-1,"55831":36,"55832":0,"55833":3345,"55834":0,"55835":0,"55836":0,"55837":0,"55838":0,"55839":1804,"55840":0,"55841":0,"55842":0,"55843":-1,"55844":2581,"55845":0,"55846":0,"55847":481,"55848":0,"55849":0,"55850":0,"55851":0,"55852":0,"55853":221,"55854":1986,"55855":-1,"55856":0,"55857":28,"55858":0,"55859":-1,"55860":0,"55861":-1,"55862":3610,"55863":0,"55864":-1,"55865":0,"55866":0,"55867":-1,"55868":3825,"55869":2120,"55870":0,"55871":0,"55872":3513,"55873":-1,"55874":-1,"55875":0,"55876":-1,"55877":0,"55878":0,"55879":0,"55880":3442,"55881":3424,"55882":2856,"55883":0,"55884":0,"55885":-1,"55886":-1,"55887":-1,"55888":3231,"55889":-1,"55890":2889,"55891":-1,"55892":0,"55893":-1,"55894":0,"55895":0,"55896":-1,"55897":0,"55898":-1,"55899":3602,"55900":-1,"55901":-1,"55902":0,"55903":0,"55904":3560,"55905":-1,"55906":0,"55907":-1,"55908":-1,"55909":-1,"55910":0,"55911":0,"55912":3031,"55913":0,"55914":458,"55915":0,"55916":-1,"55917":0,"55918":-1,"55919":3830,"55920":-1,"55921":2197,"55922":0,"55923":0,"55924":-1,"55925":-1,"55926":2572,"55927":-1,"55928":2855,"55929":2008,"55930":0,"55931":-1,"55932":0,"55933":94,"55934":0,"55935":0,"55936":-1,"55937":3800,"55938":-1,"55939":3675,"55940":0,"55941":0,"55942":-1,"55943":-1,"55944":3515,"55945":-1,"55946":3768,"55947":0,"55948":0,"55949":3510,"55950":3724,"55951":-1,"55952":-1,"55953":0,"55954":185,"55955":0,"55956":3138,"55957":0,"55958":-1,"55959":-1,"55960":-1,"55961":0,"55962":3817,"55963":0,"55964":-1,"55965":0,"55966":0,"55967":0,"55968":0,"55969":0,"55970":0,"55971":0,"55972":-1,"55973":3317,"55974":-1,"55975":3582,"55976":-1,"55977":0,"55978":0,"55979":0,"55980":0,"55981":0,"55982":0,"55983":-1,"55984":0,"55985":3142,"55986":2771,"55987":0,"55988":0,"55989":0,"55990":3112,"55991":0,"55992":0,"55993":-1,"55994":-1,"55995":2921,"55996":-1,"55997":0,"55998":-1,"55999":0,"56000":0,"56001":-1,"56002":-1,"56003":0,"56004":0,"56005":0,"56006":0,"56007":3398,"56008":2381,"56009":-1,"56010":197,"56011":-1,"56012":-1,"56013":0,"56014":0,"56015":0,"56016":0,"56017":0,"56018":-1,"56019":-1,"56020":79,"56021":-1,"56022":0,"56023":0,"56024":0,"56025":0,"56026":0,"56027":0,"56028":3230,"56029":0,"56030":0,"56031":0,"56032":2013,"56033":0,"56034":2707,"56035":-1,"56036":-1,"56037":2523,"56038":2001,"56039":0,"56040":-1,"56041":-1,"56042":3018,"56043":0,"56044":0,"56045":-1,"56046":-1,"56047":2852,"56048":3183,"56049":-1,"56050":0,"56051":-1,"56052":4029,"56053":4,"56054":0,"56055":3680,"56056":-1,"56057":2443,"56058":3298,"56059":-1,"56060":0,"56061":0,"56062":0,"56063":0,"56064":0,"56065":2903,"56066":-1,"56067":-1,"56068":0,"56069":0,"56070":0,"56071":-1,"56072":-1,"56073":0,"56074":64,"56075":-1,"56076":-1,"56077":0,"56078":-1,"56079":3600,"56080":436,"56081":0,"56082":-1,"56083":-1,"56084":-1,"56085":1987,"56086":0,"56087":0,"56088":0,"56089":2738,"56090":-1,"56091":-1,"56092":3287,"56093":0,"56094":0,"56095":-1,"56096":-1,"56097":-1,"56098":0,"56099":0,"56100":-1,"56101":2532,"56102":0,"56103":0,"56104":0,"56105":0,"56106":-1,"56107":-1,"56108":0,"56109":3451,"56110":3457,"56111":-1,"56112":0,"56113":0,"56114":0,"56115":0,"56116":0,"56117":0,"56118":0,"56119":2413,"56120":1962,"56121":-1,"56122":-1,"56123":0,"56124":-1,"56125":3654,"56126":-1,"56127":0,"56128":3615,"56129":-1,"56130":-1,"56131":0,"56132":0,"56133":-1,"56134":-1,"56135":0,"56136":0,"56137":-1,"56138":2022,"56139":1927,"56140":0,"56141":-1,"56142":-1,"56143":0,"56144":3334,"56145":0,"56146":0,"56147":0,"56148":0,"56149":-1,"56150":-1,"56151":0,"56152":-1,"56153":-1,"56154":-1,"56155":-1,"56156":0,"56157":3951,"56158":145,"56159":2531,"56160":-1,"56161":3418,"56162":0,"56163":0,"56164":0,"56165":-1,"56166":-1,"56167":-1,"56168":-1,"56169":0,"56170":2557,"56171":0,"56172":2747,"56173":0,"56174":-1,"56175":-1,"56176":-1,"56177":3753,"56178":0,"56179":2057,"56180":0,"56181":0,"56182":3215,"56183":0,"56184":0,"56185":-1,"56186":0,"56187":-1,"56188":2229,"56189":0,"56190":0,"56191":0,"56192":-1,"56193":0,"56194":0,"56195":0,"56196":0,"56197":2267,"56198":-1,"56199":0,"56200":480,"56201":-1,"56202":0,"56203":3283,"56204":0,"56205":517,"56206":-1,"56207":0,"56208":0,"56209":16,"56210":0,"56211":333,"56212":0,"56213":-1,"56214":2602,"56215":-1,"56216":-1,"56217":3753,"56218":-1,"56219":-1,"56220":-1,"56221":-1,"56222":0,"56223":-1,"56224":-1,"56225":0,"56226":3213,"56227":-1,"56228":-1,"56229":0,"56230":0,"56231":-1,"56232":-1,"56233":0,"56234":0,"56235":0,"56236":0,"56237":0,"56238":3580,"56239":0,"56240":441,"56241":0,"56242":0,"56243":-1,"56244":0,"56245":-1,"56246":-1,"56247":3487,"56248":-1,"56249":3993,"56250":0,"56251":-1,"56252":0,"56253":-1,"56254":2800,"56255":0,"56256":2980,"56257":-1,"56258":-1,"56259":-1,"56260":-1,"56261":-1,"56262":3391,"56263":0,"56264":0,"56265":-1,"56266":-1,"56267":-1,"56268":3765,"56269":0,"56270":0,"56271":2590,"56272":3855,"56273":-1,"56274":3876,"56275":0,"56276":0,"56277":0,"56278":0,"56279":3291,"56280":2117,"56281":3358,"56282":2721,"56283":0,"56284":-1,"56285":0,"56286":-1,"56287":-1,"56288":0,"56289":-1,"56290":0,"56291":0,"56292":-1,"56293":-1,"56294":0,"56295":0,"56296":0,"56297":0,"56298":0,"56299":0,"56300":3753,"56301":0,"56302":3772,"56303":-1,"56304":3642,"56305":2124,"56306":-1,"56307":3114,"56308":0,"56309":0,"56310":-1,"56311":3517,"56312":-1,"56313":-1,"56314":0,"56315":-1,"56316":0,"56317":-1,"56318":-1,"56319":-1,"56320":0,"56321":2305,"56322":2823,"56323":0,"56324":3454,"56325":122,"56326":-1,"56327":-1,"56328":2417,"56329":0,"56330":-1,"56331":0,"56332":-1,"56333":0,"56334":-1,"56335":-1,"56336":1848,"56337":-1,"56338":0,"56339":0,"56340":3044,"56341":-1,"56342":0,"56343":-1,"56344":2841,"56345":0,"56346":-1,"56347":0,"56348":0,"56349":0,"56350":0,"56351":0,"56352":0,"56353":-1,"56354":0,"56355":188,"56356":0,"56357":364,"56358":-1,"56359":-1,"56360":-1,"56361":-1,"56362":0,"56363":0,"56364":0,"56365":3109,"56366":0,"56367":-1,"56368":-1,"56369":-1,"56370":-1,"56371":0,"56372":0,"56373":-1,"56374":50,"56375":0,"56376":-1,"56377":-1,"56378":0,"56379":0,"56380":0,"56381":0,"56382":0,"56383":0,"56384":2818,"56385":2590,"56386":0,"56387":2976,"56388":0,"56389":0,"56390":191,"56391":3652,"56392":39,"56393":0,"56394":-1,"56395":-1,"56396":3048,"56397":0,"56398":-1,"56399":3024,"56400":0,"56401":3968,"56402":2108,"56403":2188,"56404":-1,"56405":-1,"56406":-1,"56407":1968,"56408":-1,"56409":3837,"56410":-1,"56411":-1,"56412":0,"56413":-1,"56414":-1,"56415":0,"56416":118,"56417":0,"56418":3373,"56419":2587,"56420":-1,"56421":393,"56422":-1,"56423":0,"56424":-1,"56425":0,"56426":-1,"56427":358,"56428":3400,"56429":2084,"56430":-1,"56431":-1,"56432":0,"56433":-1,"56434":-1,"56435":0,"56436":0,"56437":0,"56438":2815,"56439":0,"56440":0,"56441":0,"56442":0,"56443":461,"56444":3403,"56445":0,"56446":2369,"56447":0,"56448":0,"56449":0,"56450":2843,"56451":-1,"56452":2404,"56453":0,"56454":0,"56455":248,"56456":0,"56457":3381,"56458":2651,"56459":-1,"56460":0,"56461":-1,"56462":45,"56463":-1,"56464":0,"56465":0,"56466":0,"56467":0,"56468":375,"56469":0,"56470":452,"56471":0,"56472":-1,"56473":-1,"56474":-1,"56475":0,"56476":3977,"56477":2034,"56478":-1,"56479":-1,"56480":0,"56481":0,"56482":-1,"56483":2044,"56484":-1,"56485":3051,"56486":0,"56487":0,"56488":-1,"56489":0,"56490":0,"56491":0,"56492":-1,"56493":-1,"56494":0,"56495":-1,"56496":2257,"56497":0,"56498":0,"56499":0,"56500":316,"56501":0,"56502":-1,"56503":0,"56504":0,"56505":-1,"56506":-1,"56507":-1,"56508":-1,"56509":-1,"56510":0,"56511":3073,"56512":0,"56513":0,"56514":3930,"56515":0,"56516":-1,"56517":2340,"56518":0,"56519":-1,"56520":1914,"56521":0,"56522":0,"56523":-1,"56524":3942,"56525":-1,"56526":0,"56527":-1,"56528":1985,"56529":2404,"56530":-1,"56531":-1,"56532":0,"56533":2585,"56534":-1,"56535":3506,"56536":-1,"56537":-1,"56538":3196,"56539":0,"56540":-1,"56541":0,"56542":2953,"56543":-1,"56544":0,"56545":0,"56546":2992,"56547":0,"56548":0,"56549":0,"56550":34,"56551":-1,"56552":2334,"56553":3004,"56554":-1,"56555":0,"56556":0,"56557":3800,"56558":0,"56559":0,"56560":0,"56561":-1,"56562":0,"56563":393,"56564":2701,"56565":0,"56566":0,"56567":2664,"56568":0,"56569":0,"56570":0,"56571":0,"56572":-1,"56573":0,"56574":3313,"56575":-1,"56576":0,"56577":0,"56578":-1,"56579":3829,"56580":-1,"56581":0,"56582":2636,"56583":0,"56584":-1,"56585":-1,"56586":0,"56587":0,"56588":3588,"56589":-1,"56590":-1,"56591":-1,"56592":0,"56593":0,"56594":3619,"56595":-1,"56596":3847,"56597":0,"56598":0,"56599":-1,"56600":0,"56601":3777,"56602":0,"56603":0,"56604":-1,"56605":0,"56606":0,"56607":-1,"56608":0,"56609":0,"56610":3152,"56611":0,"56612":0,"56613":0,"56614":0,"56615":-1,"56616":-1,"56617":0,"56618":1798,"56619":-1,"56620":0,"56621":-1,"56622":-1,"56623":0,"56624":2799,"56625":0,"56626":-1,"56627":3005,"56628":-1,"56629":2030,"56630":-1,"56631":0,"56632":0,"56633":-1,"56634":-1,"56635":-1,"56636":0,"56637":0,"56638":-1,"56639":0,"56640":0,"56641":3841,"56642":2389,"56643":0,"56644":-1,"56645":3161,"56646":0,"56647":2852,"56648":-1,"56649":0,"56650":-1,"56651":0,"56652":3654,"56653":164,"56654":0,"56655":0,"56656":0,"56657":-1,"56658":2969,"56659":3382,"56660":3103,"56661":-1,"56662":0,"56663":2494,"56664":-1,"56665":-1,"56666":0,"56667":0,"56668":0,"56669":0,"56670":0,"56671":3626,"56672":-1,"56673":-1,"56674":0,"56675":0,"56676":0,"56677":2640,"56678":0,"56679":2841,"56680":2744,"56681":0,"56682":0,"56683":-1,"56684":-1,"56685":1888,"56686":-1,"56687":-1,"56688":0,"56689":2200,"56690":2122,"56691":-1,"56692":0,"56693":2839,"56694":3247,"56695":-1,"56696":-1,"56697":3672,"56698":0,"56699":-1,"56700":-1,"56701":-1,"56702":0,"56703":0,"56704":0,"56705":-1,"56706":2026,"56707":-1,"56708":-1,"56709":0,"56710":0,"56711":0,"56712":0,"56713":0,"56714":-1,"56715":0,"56716":0,"56717":-1,"56718":-1,"56719":-1,"56720":0,"56721":324,"56722":134,"56723":2445,"56724":3466,"56725":0,"56726":426,"56727":0,"56728":2843,"56729":3267,"56730":2581,"56731":-1,"56732":-1,"56733":0,"56734":0,"56735":0,"56736":3224,"56737":-1,"56738":-1,"56739":2243,"56740":3239,"56741":0,"56742":-1,"56743":-1,"56744":0,"56745":0,"56746":0,"56747":0,"56748":2520,"56749":0,"56750":2594,"56751":0,"56752":3036,"56753":3680,"56754":1856,"56755":0,"56756":3638,"56757":-1,"56758":1937,"56759":-1,"56760":-1,"56761":3978,"56762":0,"56763":0,"56764":2524,"56765":-1,"56766":3311,"56767":-1,"56768":0,"56769":0,"56770":-1,"56771":0,"56772":2640,"56773":3205,"56774":72,"56775":2518,"56776":0,"56777":0,"56778":0,"56779":-1,"56780":0,"56781":251,"56782":0,"56783":3161,"56784":-1,"56785":2032,"56786":-1,"56787":-1,"56788":-1,"56789":2468,"56790":0,"56791":0,"56792":0,"56793":3205,"56794":-1,"56795":0,"56796":0,"56797":0,"56798":0,"56799":0,"56800":-1,"56801":109,"56802":2727,"56803":0,"56804":0,"56805":3653,"56806":0,"56807":0,"56808":-1,"56809":-1,"56810":0,"56811":-1,"56812":2341,"56813":0,"56814":133,"56815":0,"56816":0,"56817":0,"56818":0,"56819":0,"56820":0,"56821":0,"56822":-1,"56823":-1,"56824":-1,"56825":-1,"56826":-1,"56827":78,"56828":0,"56829":3364,"56830":-1,"56831":1899,"56832":-1,"56833":0,"56834":-1,"56835":0,"56836":2254,"56837":205,"56838":3645,"56839":-1,"56840":0,"56841":-1,"56842":0,"56843":2757,"56844":0,"56845":0,"56846":0,"56847":-1,"56848":0,"56849":-1,"56850":-1,"56851":0,"56852":2883,"56853":-1,"56854":0,"56855":-1,"56856":0,"56857":2964,"56858":3719,"56859":-1,"56860":0,"56861":0,"56862":-1,"56863":0,"56864":-1,"56865":0,"56866":2788,"56867":0,"56868":0,"56869":0,"56870":0,"56871":0,"56872":0,"56873":-1,"56874":4054,"56875":-1,"56876":-1,"56877":0,"56878":2941,"56879":1974,"56880":0,"56881":0,"56882":-1,"56883":0,"56884":3874,"56885":0,"56886":0,"56887":0,"56888":0,"56889":0,"56890":0,"56891":0,"56892":2190,"56893":-1,"56894":0,"56895":-1,"56896":0,"56897":0,"56898":-1,"56899":0,"56900":0,"56901":0,"56902":3221,"56903":-1,"56904":-1,"56905":1917,"56906":2492,"56907":0,"56908":0,"56909":0,"56910":-1,"56911":0,"56912":0,"56913":-1,"56914":-1,"56915":0,"56916":0,"56917":134,"56918":120,"56919":0,"56920":0,"56921":2808,"56922":-1,"56923":0,"56924":-1,"56925":0,"56926":0,"56927":0,"56928":0,"56929":0,"56930":0,"56931":2481,"56932":2495,"56933":3697,"56934":-1,"56935":-1,"56936":-1,"56937":0,"56938":-1,"56939":-1,"56940":3542,"56941":-1,"56942":3,"56943":3179,"56944":2795,"56945":3532,"56946":-1,"56947":0,"56948":0,"56949":-1,"56950":0,"56951":2823,"56952":0,"56953":0,"56954":429,"56955":0,"56956":3566,"56957":0,"56958":-1,"56959":3717,"56960":0,"56961":-1,"56962":0,"56963":0,"56964":2609,"56965":0,"56966":3016,"56967":0,"56968":0,"56969":0,"56970":329,"56971":0,"56972":3210,"56973":0,"56974":0,"56975":2308,"56976":2274,"56977":-1,"56978":-1,"56979":-1,"56980":0,"56981":4011,"56982":-1,"56983":3847,"56984":0,"56985":-1,"56986":-1,"56987":0,"56988":0,"56989":0,"56990":3154,"56991":-1,"56992":-1,"56993":0,"56994":0,"56995":0,"56996":-1,"56997":0,"56998":0,"56999":-1,"57000":-1,"57001":0,"57002":-1,"57003":-1,"57004":0,"57005":0,"57006":1986,"57007":-1,"57008":-1,"57009":-1,"57010":2267,"57011":32,"57012":3029,"57013":0,"57014":-1,"57015":-1,"57016":3930,"57017":2745,"57018":-1,"57019":0,"57020":507,"57021":-1,"57022":0,"57023":0,"57024":-1,"57025":-1,"57026":-1,"57027":0,"57028":-1,"57029":-1,"57030":0,"57031":-1,"57032":0,"57033":0,"57034":3903,"57035":-1,"57036":-1,"57037":-1,"57038":3950,"57039":0,"57040":-1,"57041":-1,"57042":0,"57043":3487,"57044":-1,"57045":0,"57046":0,"57047":0,"57048":-1,"57049":-1,"57050":0,"57051":-1,"57052":1817,"57053":-1,"57054":0,"57055":2978,"57056":-1,"57057":0,"57058":0,"57059":-1,"57060":0,"57061":-1,"57062":3761,"57063":0,"57064":0,"57065":0,"57066":-1,"57067":44,"57068":0,"57069":3064,"57070":223,"57071":0,"57072":0,"57073":1930,"57074":1991,"57075":0,"57076":-1,"57077":2150,"57078":0,"57079":0,"57080":-1,"57081":-1,"57082":-1,"57083":1800,"57084":0,"57085":1829,"57086":0,"57087":0,"57088":0,"57089":0,"57090":-1,"57091":0,"57092":2850,"57093":-1,"57094":2159,"57095":0,"57096":0,"57097":0,"57098":-1,"57099":0,"57100":2905,"57101":0,"57102":385,"57103":3602,"57104":0,"57105":-1,"57106":0,"57107":0,"57108":-1,"57109":0,"57110":0,"57111":0,"57112":0,"57113":3211,"57114":0,"57115":-1,"57116":0,"57117":0,"57118":-1,"57119":2129,"57120":323,"57121":0,"57122":0,"57123":3495,"57124":2867,"57125":0,"57126":0,"57127":-1,"57128":-1,"57129":3119,"57130":0,"57131":0,"57132":3536,"57133":0,"57134":0,"57135":-1,"57136":0,"57137":209,"57138":-1,"57139":0,"57140":0,"57141":-1,"57142":2282,"57143":0,"57144":0,"57145":3946,"57146":-1,"57147":0,"57148":0,"57149":0,"57150":-1,"57151":1805,"57152":-1,"57153":0,"57154":3135,"57155":-1,"57156":2157,"57157":-1,"57158":0,"57159":0,"57160":0,"57161":3298,"57162":2448,"57163":0,"57164":-1,"57165":-1,"57166":0,"57167":-1,"57168":-1,"57169":0,"57170":-1,"57171":159,"57172":3748,"57173":0,"57174":0,"57175":0,"57176":4009,"57177":0,"57178":2950,"57179":2783,"57180":0,"57181":0,"57182":0,"57183":0,"57184":1926,"57185":-1,"57186":1832,"57187":2335,"57188":0,"57189":3960,"57190":3089,"57191":0,"57192":3645,"57193":-1,"57194":-1,"57195":0,"57196":-1,"57197":-1,"57198":-1,"57199":-1,"57200":-1,"57201":2845,"57202":32,"57203":0,"57204":0,"57205":4041,"57206":1777,"57207":0,"57208":0,"57209":3044,"57210":0,"57211":0,"57212":-1,"57213":-1,"57214":0,"57215":-1,"57216":0,"57217":2085,"57218":0,"57219":0,"57220":0,"57221":0,"57222":-1,"57223":-1,"57224":0,"57225":-1,"57226":-1,"57227":0,"57228":-1,"57229":2638,"57230":0,"57231":0,"57232":198,"57233":3298,"57234":-1,"57235":-1,"57236":0,"57237":3763,"57238":0,"57239":0,"57240":0,"57241":2487,"57242":2532,"57243":0,"57244":0,"57245":-1,"57246":-1,"57247":-1,"57248":0,"57249":0,"57250":398,"57251":-1,"57252":3841,"57253":0,"57254":-1,"57255":0,"57256":415,"57257":2664,"57258":0,"57259":-1,"57260":3431,"57261":0,"57262":0,"57263":0,"57264":-1,"57265":0,"57266":317,"57267":-1,"57268":2168,"57269":-1,"57270":0,"57271":0,"57272":0,"57273":0,"57274":0,"57275":0,"57276":0,"57277":3369,"57278":0,"57279":-1,"57280":-1,"57281":69,"57282":3300,"57283":2708,"57284":0,"57285":0,"57286":-1,"57287":-1,"57288":-1,"57289":-1,"57290":-1,"57291":-1,"57292":0,"57293":0,"57294":0,"57295":2424,"57296":-1,"57297":0,"57298":0,"57299":-1,"57300":0,"57301":0,"57302":3773,"57303":-1,"57304":0,"57305":0,"57306":0,"57307":2659,"57308":0,"57309":348,"57310":-1,"57311":2776,"57312":0,"57313":0,"57314":-1,"57315":1932,"57316":0,"57317":0,"57318":0,"57319":-1,"57320":-1,"57321":0,"57322":0,"57323":0,"57324":-1,"57325":0,"57326":-1,"57327":-1,"57328":0,"57329":0,"57330":-1,"57331":2239,"57332":0,"57333":0,"57334":-1,"57335":2507,"57336":0,"57337":-1,"57338":-1,"57339":0,"57340":194,"57341":0,"57342":-1,"57343":44,"57344":1927,"57345":0,"57346":0,"57347":0,"57348":0,"57349":-1,"57350":0,"57351":3222,"57352":-1,"57353":-1,"57354":0,"57355":0,"57356":0,"57357":-1,"57358":0,"57359":-1,"57360":0,"57361":0,"57362":-1,"57363":0,"57364":0,"57365":-1,"57366":-1,"57367":0,"57368":0,"57369":0,"57370":0,"57371":0,"57372":0,"57373":-1,"57374":3358,"57375":0,"57376":3928,"57377":2445,"57378":0,"57379":0,"57380":-1,"57381":-1,"57382":2433,"57383":0,"57384":0,"57385":3226,"57386":2305,"57387":0,"57388":0,"57389":3776,"57390":0,"57391":0,"57392":0,"57393":0,"57394":2686,"57395":3049,"57396":0,"57397":-1,"57398":0,"57399":3518,"57400":7,"57401":0,"57402":0,"57403":0,"57404":-1,"57405":-1,"57406":0,"57407":-1,"57408":0,"57409":0,"57410":3165,"57411":0,"57412":0,"57413":2260,"57414":0,"57415":0,"57416":0,"57417":2335,"57418":-1,"57419":-1,"57420":-1,"57421":3640,"57422":3093,"57423":0,"57424":0,"57425":3153,"57426":0,"57427":0,"57428":-1,"57429":-1,"57430":0,"57431":3247,"57432":-1,"57433":458,"57434":0,"57435":0,"57436":0,"57437":-1,"57438":3279,"57439":0,"57440":-1,"57441":-1,"57442":-1,"57443":2421,"57444":0,"57445":0,"57446":0,"57447":-1,"57448":0,"57449":-1,"57450":2914,"57451":0,"57452":-1,"57453":0,"57454":0,"57455":-1,"57456":0,"57457":0,"57458":0,"57459":1932,"57460":2575,"57461":0,"57462":-1,"57463":-1,"57464":0,"57465":0,"57466":-1,"57467":0,"57468":0,"57469":0,"57470":0,"57471":-1,"57472":0,"57473":0,"57474":0,"57475":2497,"57476":2627,"57477":-1,"57478":-1,"57479":3730,"57480":0,"57481":-1,"57482":-1,"57483":1998,"57484":0,"57485":0,"57486":3772,"57487":0,"57488":1979,"57489":-1,"57490":42,"57491":-1,"57492":-1,"57493":-1,"57494":0,"57495":4045,"57496":0,"57497":3871,"57498":0,"57499":-1,"57500":0,"57501":-1,"57502":0,"57503":-1,"57504":-1,"57505":0,"57506":3708,"57507":0,"57508":0,"57509":0,"57510":3873,"57511":3363,"57512":-1,"57513":0,"57514":-1,"57515":0,"57516":0,"57517":-1,"57518":2883,"57519":-1,"57520":0,"57521":0,"57522":2301,"57523":-1,"57524":-1,"57525":0,"57526":0,"57527":-1,"57528":1993,"57529":30,"57530":0,"57531":1828,"57532":456,"57533":-1,"57534":0,"57535":-1,"57536":0,"57537":2044,"57538":3951,"57539":180,"57540":-1,"57541":-1,"57542":-1,"57543":362,"57544":0,"57545":3558,"57546":3943,"57547":0,"57548":0,"57549":-1,"57550":-1,"57551":1977,"57552":3780,"57553":0,"57554":-1,"57555":2257,"57556":0,"57557":0,"57558":0,"57559":0,"57560":3045,"57561":-1,"57562":3210,"57563":0,"57564":0,"57565":-1,"57566":-1,"57567":0,"57568":-1,"57569":-1,"57570":98,"57571":-1,"57572":0,"57573":2543,"57574":0,"57575":1927,"57576":0,"57577":3757,"57578":0,"57579":0,"57580":-1,"57581":-1,"57582":0,"57583":-1,"57584":2086,"57585":-1,"57586":0,"57587":2547,"57588":0,"57589":1976,"57590":0,"57591":-1,"57592":0,"57593":0,"57594":0,"57595":0,"57596":0,"57597":-1,"57598":3276,"57599":-1,"57600":-1,"57601":-1,"57602":3991,"57603":-1,"57604":0,"57605":0,"57606":-1,"57607":315,"57608":502,"57609":-1,"57610":2282,"57611":-1,"57612":0,"57613":0,"57614":0,"57615":-1,"57616":-1,"57617":0,"57618":-1,"57619":4031,"57620":-1,"57621":3327,"57622":-1,"57623":-1,"57624":0,"57625":3005,"57626":0,"57627":0,"57628":-1,"57629":0,"57630":0,"57631":-1,"57632":3693,"57633":0,"57634":0,"57635":0,"57636":2583,"57637":-1,"57638":-1,"57639":410,"57640":-1,"57641":-1,"57642":-1,"57643":4016,"57644":0,"57645":-1,"57646":0,"57647":512,"57648":-1,"57649":84,"57650":-1,"57651":0,"57652":0,"57653":0,"57654":0,"57655":3560,"57656":2723,"57657":3704,"57658":0,"57659":0,"57660":-1,"57661":2477,"57662":-1,"57663":0,"57664":-1,"57665":0,"57666":3886,"57667":0,"57668":419,"57669":0,"57670":0,"57671":3363,"57672":-1,"57673":3180,"57674":3437,"57675":2910,"57676":180,"57677":0,"57678":0,"57679":0,"57680":0,"57681":2171,"57682":0,"57683":0,"57684":-1,"57685":0,"57686":3445,"57687":3060,"57688":1930,"57689":-1,"57690":0,"57691":-1,"57692":-1,"57693":-1,"57694":444,"57695":309,"57696":0,"57697":-1,"57698":0,"57699":2807,"57700":0,"57701":0,"57702":2003,"57703":0,"57704":0,"57705":3927,"57706":-1,"57707":3171,"57708":0,"57709":0,"57710":-1,"57711":2277,"57712":0,"57713":0,"57714":0,"57715":0,"57716":0,"57717":0,"57718":0,"57719":-1,"57720":3617,"57721":2731,"57722":0,"57723":2611,"57724":1964,"57725":-1,"57726":-1,"57727":0,"57728":436,"57729":0,"57730":-1,"57731":0,"57732":0,"57733":-1,"57734":0,"57735":-1,"57736":0,"57737":-1,"57738":0,"57739":-1,"57740":3544,"57741":-1,"57742":394,"57743":2935,"57744":0,"57745":-1,"57746":3892,"57747":2618,"57748":1889,"57749":0,"57750":0,"57751":0,"57752":-1,"57753":3143,"57754":3062,"57755":-1,"57756":0,"57757":0,"57758":-1,"57759":-1,"57760":0,"57761":0,"57762":-1,"57763":0,"57764":-1,"57765":-1,"57766":2317,"57767":0,"57768":-1,"57769":4015,"57770":0,"57771":-1,"57772":0,"57773":0,"57774":0,"57775":0,"57776":-1,"57777":0,"57778":3589,"57779":3828,"57780":2787,"57781":0,"57782":-1,"57783":0,"57784":0,"57785":0,"57786":2688,"57787":0,"57788":0,"57789":-1,"57790":0,"57791":-1,"57792":0,"57793":-1,"57794":-1,"57795":0,"57796":-1,"57797":3222,"57798":2317,"57799":-1,"57800":0,"57801":-1,"57802":0,"57803":-1,"57804":425,"57805":0,"57806":-1,"57807":0,"57808":-1,"57809":3749,"57810":-1,"57811":0,"57812":0,"57813":0,"57814":0,"57815":-1,"57816":0,"57817":2129,"57818":2088,"57819":0,"57820":0,"57821":-1,"57822":317,"57823":-1,"57824":0,"57825":3875,"57826":0,"57827":2266,"57828":-1,"57829":176,"57830":0,"57831":0,"57832":2863,"57833":83,"57834":0,"57835":0,"57836":3700,"57837":0,"57838":0,"57839":-1,"57840":2607,"57841":2927,"57842":0,"57843":0,"57844":0,"57845":0,"57846":-1,"57847":3731,"57848":0,"57849":0,"57850":3832,"57851":0,"57852":0,"57853":2763,"57854":0,"57855":3363,"57856":0,"57857":1863,"57858":0,"57859":-1,"57860":0,"57861":278,"57862":-1,"57863":0,"57864":-1,"57865":-1,"57866":-1,"57867":0,"57868":-1,"57869":-1,"57870":0,"57871":0,"57872":-1,"57873":3491,"57874":2889,"57875":3454,"57876":0,"57877":-1,"57878":0,"57879":2226,"57880":0,"57881":-1,"57882":0,"57883":0,"57884":0,"57885":0,"57886":1872,"57887":0,"57888":0,"57889":-1,"57890":196,"57891":0,"57892":0,"57893":2963,"57894":-1,"57895":0,"57896":2419,"57897":3162,"57898":0,"57899":-1,"57900":0,"57901":2070,"57902":0,"57903":3217,"57904":-1,"57905":-1,"57906":-1,"57907":386,"57908":-1,"57909":-1,"57910":0,"57911":0,"57912":-1,"57913":-1,"57914":-1,"57915":-1,"57916":0,"57917":0,"57918":-1,"57919":-1,"57920":0,"57921":1999,"57922":2283,"57923":3529,"57924":-1,"57925":0,"57926":2762,"57927":2440,"57928":-1,"57929":0,"57930":0,"57931":4039,"57932":1848,"57933":0,"57934":0,"57935":3564,"57936":-1,"57937":0,"57938":0,"57939":2065,"57940":-1,"57941":-1,"57942":0,"57943":0,"57944":-1,"57945":-1,"57946":0,"57947":0,"57948":-1,"57949":2911,"57950":-1,"57951":-1,"57952":0,"57953":3893,"57954":-1,"57955":0,"57956":-1,"57957":0,"57958":-1,"57959":0,"57960":0,"57961":0,"57962":3775,"57963":-1,"57964":-1,"57965":0,"57966":4018,"57967":-1,"57968":-1,"57969":-1,"57970":0,"57971":0,"57972":0,"57973":0,"57974":-1,"57975":1897,"57976":-1,"57977":0,"57978":0,"57979":-1,"57980":-1,"57981":-1,"57982":2162,"57983":0,"57984":58,"57985":0,"57986":2086,"57987":0,"57988":0,"57989":3996,"57990":2068,"57991":0,"57992":0,"57993":1984,"57994":0,"57995":-1,"57996":0,"57997":-1,"57998":0,"57999":-1,"58000":-1,"58001":0,"58002":0,"58003":0,"58004":2777,"58005":0,"58006":127,"58007":0,"58008":0,"58009":0,"58010":-1,"58011":412,"58012":-1,"58013":-1,"58014":0,"58015":47,"58016":0,"58017":-1,"58018":0,"58019":0,"58020":-1,"58021":3953,"58022":0,"58023":-1,"58024":-1,"58025":3359,"58026":1899,"58027":-1,"58028":0,"58029":0,"58030":0,"58031":-1,"58032":2014,"58033":0,"58034":0,"58035":0,"58036":-1,"58037":-1,"58038":-1,"58039":-1,"58040":3110,"58041":0,"58042":0,"58043":0,"58044":0,"58045":-1,"58046":0,"58047":44,"58048":-1,"58049":-1,"58050":2338,"58051":-1,"58052":2460,"58053":0,"58054":3883,"58055":0,"58056":-1,"58057":445,"58058":469,"58059":-1,"58060":0,"58061":-1,"58062":3174,"58063":-1,"58064":-1,"58065":2572,"58066":0,"58067":-1,"58068":-1,"58069":3023,"58070":0,"58071":0,"58072":0,"58073":-1,"58074":0,"58075":-1,"58076":2387,"58077":2551,"58078":0,"58079":2753,"58080":0,"58081":0,"58082":0,"58083":2968,"58084":387,"58085":0,"58086":-1,"58087":-1,"58088":2757,"58089":0,"58090":2595,"58091":3887,"58092":1810,"58093":0,"58094":2614,"58095":0,"58096":0,"58097":449,"58098":2024,"58099":0,"58100":-1,"58101":0,"58102":0,"58103":0,"58104":-1,"58105":-1,"58106":1808,"58107":-1,"58108":0,"58109":1828,"58110":0,"58111":0,"58112":0,"58113":2667,"58114":0,"58115":0,"58116":0,"58117":276,"58118":0,"58119":0,"58120":-1,"58121":2499,"58122":-1,"58123":2,"58124":0,"58125":3611,"58126":-1,"58127":3915,"58128":-1,"58129":0,"58130":0,"58131":3179,"58132":0,"58133":-1,"58134":344,"58135":0,"58136":0,"58137":2895,"58138":0,"58139":-1,"58140":3094,"58141":-1,"58142":-1,"58143":0,"58144":2999,"58145":242,"58146":0,"58147":0,"58148":172,"58149":0,"58150":250,"58151":-1,"58152":0,"58153":0,"58154":0,"58155":-1,"58156":0,"58157":429,"58158":2254,"58159":240,"58160":0,"58161":3712,"58162":3469,"58163":0,"58164":0,"58165":2443,"58166":-1,"58167":0,"58168":3381,"58169":0,"58170":3267,"58171":0,"58172":-1,"58173":-1,"58174":3888,"58175":0,"58176":-1,"58177":0,"58178":3020,"58179":-1,"58180":324,"58181":0,"58182":0,"58183":0,"58184":-1,"58185":0,"58186":0,"58187":0,"58188":3568,"58189":0,"58190":-1,"58191":-1,"58192":-1,"58193":0,"58194":2598,"58195":0,"58196":2864,"58197":-1,"58198":2176,"58199":2276,"58200":3482,"58201":175,"58202":0,"58203":0,"58204":2017,"58205":-1,"58206":-1,"58207":0,"58208":3147,"58209":-1,"58210":2356,"58211":-1,"58212":0,"58213":2024,"58214":0,"58215":3890,"58216":0,"58217":0,"58218":0,"58219":-1,"58220":3409,"58221":-1,"58222":3313,"58223":0,"58224":0,"58225":0,"58226":0,"58227":-1,"58228":0,"58229":3752,"58230":0,"58231":0,"58232":0,"58233":-1,"58234":2414,"58235":0,"58236":2075,"58237":3391,"58238":294,"58239":0,"58240":2909,"58241":-1,"58242":-1,"58243":3643,"58244":-1,"58245":0,"58246":0,"58247":98,"58248":2549,"58249":0,"58250":0,"58251":147,"58252":0,"58253":0,"58254":2092,"58255":2312,"58256":-1,"58257":3919,"58258":-1,"58259":-1,"58260":0,"58261":3451,"58262":3474,"58263":-1,"58264":-1,"58265":0,"58266":-1,"58267":-1,"58268":0,"58269":0,"58270":0,"58271":0,"58272":0,"58273":-1,"58274":204,"58275":0,"58276":-1,"58277":0,"58278":0,"58279":-1,"58280":-1,"58281":3810,"58282":2804,"58283":-1,"58284":-1,"58285":0,"58286":2427,"58287":0,"58288":-1,"58289":-1,"58290":0,"58291":-1,"58292":0,"58293":-1,"58294":0,"58295":-1,"58296":0,"58297":0,"58298":-1,"58299":0,"58300":-1,"58301":3517,"58302":-1,"58303":0,"58304":0,"58305":3250,"58306":-1,"58307":0,"58308":0,"58309":0,"58310":-1,"58311":70,"58312":-1,"58313":-1,"58314":0,"58315":0,"58316":-1,"58317":0,"58318":-1,"58319":2161,"58320":-1,"58321":3272,"58322":2457,"58323":460,"58324":0,"58325":0,"58326":3481,"58327":0,"58328":3575,"58329":3549,"58330":0,"58331":-1,"58332":-1,"58333":2584,"58334":0,"58335":0,"58336":2585,"58337":0,"58338":0,"58339":0,"58340":-1,"58341":-1,"58342":0,"58343":-1,"58344":-1,"58345":0,"58346":0,"58347":0,"58348":3144,"58349":3697,"58350":-1,"58351":3744,"58352":-1,"58353":0,"58354":0,"58355":0,"58356":0,"58357":0,"58358":-1,"58359":0,"58360":-1,"58361":2627,"58362":2460,"58363":0,"58364":-1,"58365":3127,"58366":391,"58367":0,"58368":-1,"58369":0,"58370":0,"58371":0,"58372":2281,"58373":-1,"58374":0,"58375":3928,"58376":0,"58377":0,"58378":0,"58379":-1,"58380":124,"58381":1935,"58382":-1,"58383":0,"58384":-1,"58385":3647,"58386":-1,"58387":2510,"58388":0,"58389":-1,"58390":3138,"58391":-1,"58392":2784,"58393":3500,"58394":0,"58395":3147,"58396":-1,"58397":-1,"58398":-1,"58399":0,"58400":-1,"58401":3762,"58402":0,"58403":433,"58404":0,"58405":-1,"58406":2610,"58407":0,"58408":0,"58409":179,"58410":0,"58411":-1,"58412":-1,"58413":0,"58414":-1,"58415":0,"58416":-1,"58417":0,"58418":0,"58419":0,"58420":2219,"58421":0,"58422":0,"58423":-1,"58424":2274,"58425":0,"58426":2525,"58427":0,"58428":-1,"58429":1800,"58430":0,"58431":0,"58432":-1,"58433":-1,"58434":3426,"58435":0,"58436":3184,"58437":0,"58438":-1,"58439":0,"58440":0,"58441":0,"58442":2761,"58443":0,"58444":0,"58445":0,"58446":0,"58447":-1,"58448":-1,"58449":0,"58450":3422,"58451":0,"58452":0,"58453":0,"58454":-1,"58455":0,"58456":0,"58457":-1,"58458":3585,"58459":0,"58460":0,"58461":0,"58462":0,"58463":-1,"58464":0,"58465":0,"58466":2584,"58467":-1,"58468":-1,"58469":2485,"58470":4031,"58471":-1,"58472":0,"58473":2445,"58474":-1,"58475":0,"58476":-1,"58477":0,"58478":0,"58479":-1,"58480":0,"58481":0,"58482":2401,"58483":173,"58484":0,"58485":223,"58486":0,"58487":-1,"58488":-1,"58489":-1,"58490":-1,"58491":-1,"58492":253,"58493":105,"58494":0,"58495":4030,"58496":0,"58497":0,"58498":3509,"58499":-1,"58500":3153,"58501":0,"58502":1861,"58503":3987,"58504":0,"58505":-1,"58506":3205,"58507":0,"58508":-1,"58509":-1,"58510":-1,"58511":-1,"58512":0,"58513":0,"58514":-1,"58515":-1,"58516":-1,"58517":0,"58518":-1,"58519":0,"58520":0,"58521":91,"58522":2767,"58523":-1,"58524":0,"58525":-1,"58526":2404,"58527":2478,"58528":-1,"58529":-1,"58530":0,"58531":0,"58532":-1,"58533":0,"58534":0,"58535":410,"58536":-1,"58537":0,"58538":0,"58539":-1,"58540":-1,"58541":2665,"58542":-1,"58543":0,"58544":-1,"58545":0,"58546":0,"58547":0,"58548":0,"58549":0,"58550":0,"58551":1998,"58552":100,"58553":2477,"58554":-1,"58555":0,"58556":0,"58557":-1,"58558":0,"58559":-1,"58560":0,"58561":0,"58562":0,"58563":0,"58564":2959,"58565":2216,"58566":-1,"58567":330,"58568":0,"58569":0,"58570":0,"58571":-1,"58572":0,"58573":0,"58574":1781,"58575":-1,"58576":0,"58577":-1,"58578":2430,"58579":-1,"58580":0,"58581":0,"58582":0,"58583":0,"58584":0,"58585":-1,"58586":-1,"58587":-1,"58588":-1,"58589":0,"58590":-1,"58591":0,"58592":0,"58593":-1,"58594":0,"58595":-1,"58596":-1,"58597":-1,"58598":-1,"58599":2972,"58600":0,"58601":0,"58602":-1,"58603":0,"58604":2225,"58605":0,"58606":0,"58607":3335,"58608":0,"58609":-1,"58610":2752,"58611":-1,"58612":3849,"58613":2819,"58614":0,"58615":0,"58616":0,"58617":-1,"58618":0,"58619":-1,"58620":-1,"58621":-1,"58622":-1,"58623":3121,"58624":0,"58625":0,"58626":0,"58627":3222,"58628":3611,"58629":0,"58630":-1,"58631":0,"58632":0,"58633":0,"58634":0,"58635":-1,"58636":0,"58637":2006,"58638":-1,"58639":2761,"58640":-1,"58641":-1,"58642":0,"58643":-1,"58644":0,"58645":0,"58646":0,"58647":362,"58648":-1,"58649":-1,"58650":0,"58651":0,"58652":-1,"58653":3142,"58654":0,"58655":3702,"58656":3011,"58657":-1,"58658":2081,"58659":0,"58660":18,"58661":0,"58662":0,"58663":0,"58664":0,"58665":0,"58666":0,"58667":0,"58668":3049,"58669":0,"58670":3806,"58671":3240,"58672":0,"58673":-1,"58674":0,"58675":-1,"58676":-1,"58677":307,"58678":3901,"58679":0,"58680":0,"58681":-1,"58682":-1,"58683":0,"58684":1930,"58685":0,"58686":2234,"58687":0,"58688":0,"58689":-1,"58690":2957,"58691":2011,"58692":-1,"58693":-1,"58694":335,"58695":0,"58696":0,"58697":-1,"58698":272,"58699":2364,"58700":3553,"58701":0,"58702":-1,"58703":0,"58704":0,"58705":0,"58706":-1,"58707":0,"58708":0,"58709":0,"58710":418,"58711":-1,"58712":-1,"58713":2432,"58714":-1,"58715":0,"58716":216,"58717":0,"58718":-1,"58719":0,"58720":2317,"58721":0,"58722":1802,"58723":-1,"58724":-1,"58725":3693,"58726":-1,"58727":0,"58728":0,"58729":-1,"58730":129,"58731":-1,"58732":-1,"58733":-1,"58734":0,"58735":3779,"58736":-1,"58737":0,"58738":3451,"58739":3157,"58740":3503,"58741":0,"58742":3264,"58743":0,"58744":0,"58745":0,"58746":0,"58747":0,"58748":0,"58749":2437,"58750":3318,"58751":1962,"58752":1890,"58753":1984,"58754":0,"58755":-1,"58756":0,"58757":3675,"58758":-1,"58759":0,"58760":1906,"58761":328,"58762":0,"58763":0,"58764":0,"58765":-1,"58766":-1,"58767":-1,"58768":0,"58769":2562,"58770":0,"58771":0,"58772":0,"58773":1940,"58774":2717,"58775":0,"58776":0,"58777":3910,"58778":3635,"58779":0,"58780":2125,"58781":0,"58782":2248,"58783":0,"58784":333,"58785":338,"58786":0,"58787":-1,"58788":3805,"58789":0,"58790":-1,"58791":3824,"58792":0,"58793":-1,"58794":1831,"58795":0,"58796":2911,"58797":-1,"58798":-1,"58799":2330,"58800":0,"58801":3031,"58802":4003,"58803":0,"58804":0,"58805":0,"58806":-1,"58807":-1,"58808":0,"58809":0,"58810":0,"58811":0,"58812":0,"58813":0,"58814":-1,"58815":-1,"58816":0,"58817":0,"58818":2649,"58819":0,"58820":0,"58821":-1,"58822":3375,"58823":2607,"58824":-1,"58825":-1,"58826":2418,"58827":-1,"58828":-1,"58829":-1,"58830":-1,"58831":0,"58832":4032,"58833":-1,"58834":0,"58835":-1,"58836":0,"58837":1852,"58838":0,"58839":0,"58840":-1,"58841":-1,"58842":-1,"58843":-1,"58844":0,"58845":-1,"58846":-1,"58847":0,"58848":0,"58849":3622,"58850":0,"58851":-1,"58852":489,"58853":0,"58854":-1,"58855":0,"58856":2232,"58857":0,"58858":-1,"58859":2821,"58860":0,"58861":0,"58862":-1,"58863":1822,"58864":0,"58865":0,"58866":1929,"58867":-1,"58868":-1,"58869":0,"58870":-1,"58871":0,"58872":221,"58873":2282,"58874":-1,"58875":3469,"58876":0,"58877":3461,"58878":3345,"58879":-1,"58880":0,"58881":-1,"58882":-1,"58883":0,"58884":0,"58885":72,"58886":3621,"58887":0,"58888":0,"58889":0,"58890":2867,"58891":0,"58892":1957,"58893":-1,"58894":0,"58895":0,"58896":2518,"58897":-1,"58898":0,"58899":-1,"58900":3339,"58901":-1,"58902":0,"58903":-1,"58904":0,"58905":3335,"58906":0,"58907":3847,"58908":0,"58909":4058,"58910":-1,"58911":0,"58912":-1,"58913":-1,"58914":0,"58915":0,"58916":3275,"58917":0,"58918":3446,"58919":-1,"58920":-1,"58921":2796,"58922":0,"58923":0,"58924":-1,"58925":3404,"58926":2856,"58927":0,"58928":-1,"58929":0,"58930":0,"58931":0,"58932":0,"58933":-1,"58934":2829,"58935":0,"58936":0,"58937":0,"58938":-1,"58939":0,"58940":-1,"58941":0,"58942":0,"58943":241,"58944":0,"58945":3120,"58946":0,"58947":0,"58948":-1,"58949":-1,"58950":27,"58951":-1,"58952":0,"58953":-1,"58954":0,"58955":-1,"58956":-1,"58957":2421,"58958":-1,"58959":3087,"58960":-1,"58961":-1,"58962":-1,"58963":3440,"58964":-1,"58965":247,"58966":1890,"58967":-1,"58968":0,"58969":-1,"58970":0,"58971":2554,"58972":0,"58973":3434,"58974":-1,"58975":-1,"58976":0,"58977":-1,"58978":81,"58979":0,"58980":-1,"58981":-1,"58982":0,"58983":0,"58984":-1,"58985":2639,"58986":0,"58987":3596,"58988":-1,"58989":-1,"58990":2219,"58991":0,"58992":0,"58993":-1,"58994":0,"58995":0,"58996":-1,"58997":192,"58998":203,"58999":0,"59000":0,"59001":0,"59002":-1,"59003":2956,"59004":0,"59005":180,"59006":0,"59007":2822,"59008":-1,"59009":0,"59010":259,"59011":3667,"59012":0,"59013":-1,"59014":-1,"59015":-1,"59016":0,"59017":0,"59018":0,"59019":3352,"59020":2993,"59021":-1,"59022":0,"59023":3659,"59024":-1,"59025":0,"59026":2235,"59027":0,"59028":2899,"59029":277,"59030":0,"59031":3868,"59032":0,"59033":0,"59034":-1,"59035":-1,"59036":-1,"59037":3087,"59038":-1,"59039":0,"59040":0,"59041":-1,"59042":0,"59043":2028,"59044":3540,"59045":-1,"59046":0,"59047":272,"59048":-1,"59049":0,"59050":-1,"59051":3474,"59052":2194,"59053":0,"59054":-1,"59055":-1,"59056":2766,"59057":2377,"59058":-1,"59059":3228,"59060":-1,"59061":-1,"59062":0,"59063":0,"59064":2429,"59065":0,"59066":-1,"59067":-1,"59068":0,"59069":-1,"59070":0,"59071":-1,"59072":0,"59073":2884,"59074":0,"59075":-1,"59076":0,"59077":0,"59078":0,"59079":-1,"59080":-1,"59081":3592,"59082":332,"59083":0,"59084":0,"59085":3998,"59086":0,"59087":0,"59088":3357,"59089":0,"59090":3434,"59091":-1,"59092":-1,"59093":0,"59094":0,"59095":0,"59096":0,"59097":0,"59098":-1,"59099":-1,"59100":0,"59101":3387,"59102":2857,"59103":0,"59104":0,"59105":2142,"59106":-1,"59107":2394,"59108":2143,"59109":0,"59110":0,"59111":-1,"59112":0,"59113":164,"59114":3957,"59115":-1,"59116":-1,"59117":0,"59118":3561,"59119":-1,"59120":0,"59121":1915,"59122":0,"59123":0,"59124":-1,"59125":-1,"59126":-1,"59127":-1,"59128":-1,"59129":2451,"59130":0,"59131":2313,"59132":0,"59133":0,"59134":306,"59135":0,"59136":-1,"59137":0,"59138":-1,"59139":-1,"59140":0,"59141":0,"59142":-1,"59143":-1,"59144":0,"59145":3314,"59146":0,"59147":0,"59148":-1,"59149":0,"59150":2308,"59151":0,"59152":-1,"59153":0,"59154":-1,"59155":0,"59156":-1,"59157":-1,"59158":0,"59159":0,"59160":0,"59161":-1,"59162":3520,"59163":-1,"59164":-1,"59165":0,"59166":-1,"59167":0,"59168":0,"59169":0,"59170":3003,"59171":0,"59172":-1,"59173":0,"59174":2584,"59175":-1,"59176":-1,"59177":-1,"59178":-1,"59179":2485,"59180":0,"59181":202,"59182":0,"59183":-1,"59184":0,"59185":-1,"59186":0,"59187":0,"59188":0,"59189":-1,"59190":-1,"59191":-1,"59192":-1,"59193":-1,"59194":0,"59195":-1,"59196":0,"59197":0,"59198":2533,"59199":0,"59200":-1,"59201":0,"59202":0,"59203":0,"59204":0,"59205":0,"59206":0,"59207":0,"59208":0,"59209":0,"59210":3204,"59211":0,"59212":2708,"59213":-1,"59214":-1,"59215":0,"59216":3822,"59217":0,"59218":3537,"59219":0,"59220":189,"59221":2773,"59222":2681,"59223":3779,"59224":-1,"59225":0,"59226":3774,"59227":3408,"59228":0,"59229":2261,"59230":1913,"59231":0,"59232":0,"59233":3787,"59234":0,"59235":-1,"59236":-1,"59237":0,"59238":-1,"59239":429,"59240":0,"59241":0,"59242":-1,"59243":0,"59244":-1,"59245":-1,"59246":0,"59247":-1,"59248":0,"59249":2271,"59250":225,"59251":-1,"59252":2289,"59253":0,"59254":0,"59255":-1,"59256":0,"59257":3428,"59258":2095,"59259":2874,"59260":-1,"59261":0,"59262":0,"59263":0,"59264":-1,"59265":3137,"59266":-1,"59267":0,"59268":3962,"59269":1910,"59270":-1,"59271":0,"59272":0,"59273":2958,"59274":2238,"59275":3271,"59276":-1,"59277":-1,"59278":0,"59279":0,"59280":-1,"59281":3761,"59282":0,"59283":0,"59284":2673,"59285":3632,"59286":0,"59287":2787,"59288":0,"59289":-1,"59290":0,"59291":0,"59292":2688,"59293":433,"59294":0,"59295":0,"59296":-1,"59297":0,"59298":-1,"59299":-1,"59300":159,"59301":0,"59302":-1,"59303":-1,"59304":-1,"59305":4036,"59306":0,"59307":0,"59308":-1,"59309":0,"59310":374,"59311":0,"59312":-1,"59313":3408,"59314":0,"59315":202,"59316":0,"59317":-1,"59318":4038,"59319":-1,"59320":3095,"59321":2522,"59322":0,"59323":3523,"59324":3734,"59325":-1,"59326":0,"59327":0,"59328":-1,"59329":-1,"59330":0,"59331":0,"59332":0,"59333":-1,"59334":0,"59335":0,"59336":-1,"59337":0,"59338":2012,"59339":-1,"59340":0,"59341":-1,"59342":-1,"59343":-1,"59344":0,"59345":0,"59346":1908,"59347":0,"59348":2550,"59349":3114,"59350":-1,"59351":-1,"59352":0,"59353":0,"59354":0,"59355":3297,"59356":2161,"59357":-1,"59358":1814,"59359":0,"59360":-1,"59361":0,"59362":0,"59363":2316,"59364":0,"59365":-1,"59366":0,"59367":0,"59368":0,"59369":117,"59370":4041,"59371":0,"59372":-1,"59373":-1,"59374":0,"59375":0,"59376":3837,"59377":0,"59378":-1,"59379":-1,"59380":0,"59381":0,"59382":0,"59383":-1,"59384":3758,"59385":-1,"59386":-1,"59387":0,"59388":1800,"59389":-1,"59390":0,"59391":-1,"59392":2778,"59393":0,"59394":-1,"59395":198,"59396":0,"59397":0,"59398":3791,"59399":-1,"59400":-1,"59401":3371,"59402":0,"59403":0,"59404":1841,"59405":2956,"59406":0,"59407":0,"59408":2820,"59409":-1,"59410":0,"59411":3687,"59412":-1,"59413":0,"59414":3844,"59415":1937,"59416":131,"59417":3388,"59418":0,"59419":0,"59420":-1,"59421":0,"59422":3453,"59423":0,"59424":-1,"59425":0,"59426":0,"59427":2768,"59428":3779,"59429":-1,"59430":124,"59431":0,"59432":-1,"59433":-1,"59434":-1,"59435":3990,"59436":0,"59437":0,"59438":0,"59439":-1,"59440":-1,"59441":0,"59442":2788,"59443":281,"59444":2361,"59445":-1,"59446":344,"59447":0,"59448":-1,"59449":0,"59450":0,"59451":0,"59452":0,"59453":2451,"59454":2004,"59455":0,"59456":-1,"59457":0,"59458":2439,"59459":0,"59460":-1,"59461":3228,"59462":0,"59463":-1,"59464":0,"59465":0,"59466":3260,"59467":2158,"59468":-1,"59469":0,"59470":0,"59471":0,"59472":-1,"59473":0,"59474":0,"59475":1960,"59476":2072,"59477":0,"59478":-1,"59479":-1,"59480":0,"59481":0,"59482":3811,"59483":0,"59484":-1,"59485":0,"59486":0,"59487":2321,"59488":0,"59489":0,"59490":-1,"59491":0,"59492":-1,"59493":-1,"59494":250,"59495":-1,"59496":-1,"59497":-1,"59498":0,"59499":0,"59500":0,"59501":3551,"59502":0,"59503":0,"59504":0,"59505":-1,"59506":-1,"59507":0,"59508":0,"59509":0,"59510":1972,"59511":2646,"59512":2017,"59513":-1,"59514":0,"59515":3860,"59516":0,"59517":0,"59518":-1,"59519":0,"59520":0,"59521":0,"59522":0,"59523":0,"59524":0,"59525":0,"59526":-1,"59527":0,"59528":0,"59529":0,"59530":46,"59531":-1,"59532":-1,"59533":0,"59534":3439,"59535":0,"59536":-1,"59537":2778,"59538":0,"59539":2758,"59540":0,"59541":0,"59542":0,"59543":-1,"59544":-1,"59545":0,"59546":0,"59547":3695,"59548":-1,"59549":2701,"59550":1809,"59551":-1,"59552":0,"59553":0,"59554":-1,"59555":3993,"59556":-1,"59557":-1,"59558":0,"59559":0,"59560":2416,"59561":-1,"59562":3918,"59563":0,"59564":0,"59565":-1,"59566":0,"59567":-1,"59568":2340,"59569":0,"59570":-1,"59571":0,"59572":0,"59573":0,"59574":-1,"59575":3597,"59576":0,"59577":0,"59578":-1,"59579":3031,"59580":-1,"59581":3088,"59582":-1,"59583":3243,"59584":0,"59585":0,"59586":0,"59587":0,"59588":0,"59589":0,"59590":0,"59591":0,"59592":2468,"59593":0,"59594":92,"59595":0,"59596":0,"59597":0,"59598":-1,"59599":-1,"59600":-1,"59601":1863,"59602":0,"59603":-1,"59604":3909,"59605":0,"59606":-1,"59607":0,"59608":0,"59609":0,"59610":-1,"59611":2737,"59612":0,"59613":2481,"59614":0,"59615":3184,"59616":-1,"59617":0,"59618":0,"59619":-1,"59620":0,"59621":0,"59622":-1,"59623":0,"59624":2462,"59625":2791,"59626":-1,"59627":0,"59628":3908,"59629":-1,"59630":0,"59631":0,"59632":3872,"59633":-1,"59634":0,"59635":0,"59636":3127,"59637":-1,"59638":0,"59639":-1,"59640":0,"59641":0,"59642":0,"59643":0,"59644":-1,"59645":4041,"59646":-1,"59647":0,"59648":0,"59649":2251,"59650":0,"59651":0,"59652":-1,"59653":0,"59654":-1,"59655":2873,"59656":0,"59657":-1,"59658":0,"59659":0,"59660":0,"59661":-1,"59662":-1,"59663":-1,"59664":-1,"59665":3246,"59666":-1,"59667":0,"59668":0,"59669":0,"59670":2772,"59671":-1,"59672":0,"59673":3828,"59674":2574,"59675":-1,"59676":-1,"59677":1778,"59678":-1,"59679":2347,"59680":0,"59681":2419,"59682":2292,"59683":466,"59684":0,"59685":-1,"59686":0,"59687":3713,"59688":-1,"59689":0,"59690":0,"59691":-1,"59692":0,"59693":3950,"59694":446,"59695":-1,"59696":-1,"59697":45,"59698":-1,"59699":398,"59700":1931,"59701":-1,"59702":3210,"59703":0,"59704":-1,"59705":0,"59706":0,"59707":-1,"59708":0,"59709":-1,"59710":-1,"59711":-1,"59712":3552,"59713":0,"59714":3686,"59715":-1,"59716":0,"59717":0,"59718":0,"59719":-1,"59720":0,"59721":0,"59722":3489,"59723":-1,"59724":0,"59725":-1,"59726":0,"59727":-1,"59728":0,"59729":-1,"59730":3951,"59731":0,"59732":0,"59733":-1,"59734":-1,"59735":0,"59736":0,"59737":-1,"59738":94,"59739":254,"59740":2123,"59741":0,"59742":0,"59743":0,"59744":0,"59745":2301,"59746":2097,"59747":0,"59748":0,"59749":0,"59750":0,"59751":0,"59752":0,"59753":0,"59754":2345,"59755":2591,"59756":-1,"59757":0,"59758":0,"59759":-1,"59760":0,"59761":3699,"59762":-1,"59763":-1,"59764":0,"59765":2288,"59766":-1,"59767":0,"59768":3276,"59769":0,"59770":0,"59771":0,"59772":-1,"59773":2609,"59774":2478,"59775":-1,"59776":2637,"59777":0,"59778":2565,"59779":168,"59780":-1,"59781":0,"59782":3145,"59783":-1,"59784":3006,"59785":0,"59786":0,"59787":2915,"59788":0,"59789":0,"59790":0,"59791":2342,"59792":4052,"59793":-1,"59794":-1,"59795":0,"59796":2422,"59797":0,"59798":-1,"59799":0,"59800":-1,"59801":-1,"59802":517,"59803":3543,"59804":1786,"59805":-1,"59806":0,"59807":-1,"59808":0,"59809":3236,"59810":-1,"59811":0,"59812":-1,"59813":0,"59814":-1,"59815":0,"59816":306,"59817":-1,"59818":0,"59819":0,"59820":-1,"59821":0,"59822":-1,"59823":0,"59824":1805,"59825":0,"59826":4023,"59827":1775,"59828":8,"59829":0,"59830":1875,"59831":0,"59832":1844,"59833":0,"59834":3678,"59835":3240,"59836":-1,"59837":0,"59838":2507,"59839":2788,"59840":-1,"59841":-1,"59842":0,"59843":-1,"59844":-1,"59845":-1,"59846":3839,"59847":0,"59848":-1,"59849":1837,"59850":-1,"59851":0,"59852":2506,"59853":0,"59854":-1,"59855":2585,"59856":3682,"59857":-1,"59858":269,"59859":0,"59860":2673,"59861":0,"59862":3450,"59863":-1,"59864":0,"59865":364,"59866":-1,"59867":0,"59868":0,"59869":-1,"59870":517,"59871":0,"59872":-1,"59873":0,"59874":-1,"59875":2018,"59876":0,"59877":3751,"59878":1980,"59879":2541,"59880":-1,"59881":0,"59882":-1,"59883":-1,"59884":0,"59885":0,"59886":-1,"59887":2678,"59888":0,"59889":-1,"59890":3862,"59891":0,"59892":1784,"59893":0,"59894":3934,"59895":0,"59896":2434,"59897":2513,"59898":-1,"59899":-1,"59900":4061,"59901":-1,"59902":-1,"59903":2453,"59904":3114,"59905":2812,"59906":2475,"59907":164,"59908":-1,"59909":-1,"59910":-1,"59911":0,"59912":1965,"59913":0,"59914":-1,"59915":3918,"59916":-1,"59917":-1,"59918":2394,"59919":0,"59920":0,"59921":3256,"59922":-1,"59923":-1,"59924":0,"59925":0,"59926":0,"59927":2554,"59928":-1,"59929":-1,"59930":0,"59931":-1,"59932":2180,"59933":1790,"59934":0,"59935":-1,"59936":-1,"59937":0,"59938":0,"59939":0,"59940":442,"59941":0,"59942":0,"59943":0,"59944":-1,"59945":0,"59946":0,"59947":3362,"59948":0,"59949":2739,"59950":0,"59951":-1,"59952":4048,"59953":-1,"59954":-1,"59955":31,"59956":0,"59957":0,"59958":3687,"59959":2209,"59960":-1,"59961":3271,"59962":18,"59963":-1,"59964":0,"59965":0,"59966":-1,"59967":0,"59968":0,"59969":0,"59970":-1,"59971":0,"59972":0,"59973":0,"59974":-1,"59975":0,"59976":0,"59977":2586,"59978":-1,"59979":0,"59980":-1,"59981":-1,"59982":0,"59983":3920,"59984":-1,"59985":-1,"59986":-1,"59987":0,"59988":0,"59989":0,"59990":1840,"59991":-1,"59992":0,"59993":-1,"59994":115,"59995":0,"59996":-1,"59997":-1,"59998":-1,"59999":-1,"60000":2284,"60001":2232,"60002":0,"60003":-1,"60004":-1,"60005":3824,"60006":-1,"60007":0,"60008":0,"60009":0,"60010":0,"60011":-1,"60012":0,"60013":-1,"60014":2197,"60015":276,"60016":-1,"60017":3998,"60018":3794,"60019":0,"60020":0,"60021":275,"60022":-1,"60023":0,"60024":0,"60025":2184,"60026":-1,"60027":0,"60028":3439,"60029":0,"60030":0,"60031":2963,"60032":0,"60033":-1,"60034":0,"60035":0,"60036":2916,"60037":0,"60038":-1,"60039":-1,"60040":-1,"60041":0,"60042":-1,"60043":0,"60044":0,"60045":0,"60046":0,"60047":0,"60048":-1,"60049":0,"60050":-1,"60051":-1,"60052":0,"60053":-1,"60054":0,"60055":3013,"60056":0,"60057":2324,"60058":2118,"60059":0,"60060":0,"60061":0,"60062":-1,"60063":-1,"60064":0,"60065":3261,"60066":-1,"60067":3316,"60068":0,"60069":0,"60070":0,"60071":0,"60072":0,"60073":0,"60074":0,"60075":0,"60076":0,"60077":2371,"60078":0,"60079":-1,"60080":308,"60081":0,"60082":0,"60083":4044,"60084":-1,"60085":-1,"60086":0,"60087":-1,"60088":0,"60089":3140,"60090":0,"60091":0,"60092":-1,"60093":-1,"60094":-1,"60095":1910,"60096":2554,"60097":0,"60098":-1,"60099":0,"60100":-1,"60101":3732,"60102":-1,"60103":0,"60104":0,"60105":0,"60106":0,"60107":0,"60108":0,"60109":0,"60110":0,"60111":0,"60112":-1,"60113":0,"60114":0,"60115":-1,"60116":345,"60117":0,"60118":0,"60119":-1,"60120":3947,"60121":-1,"60122":0,"60123":-1,"60124":1953,"60125":0,"60126":3376,"60127":1988,"60128":-1,"60129":0,"60130":2347,"60131":0,"60132":-1,"60133":-1,"60134":0,"60135":0,"60136":-1,"60137":-1,"60138":2950,"60139":0,"60140":-1,"60141":3412,"60142":0,"60143":-1,"60144":0,"60145":448,"60146":1929,"60147":-1,"60148":0,"60149":-1,"60150":-1,"60151":158,"60152":0,"60153":0,"60154":0,"60155":0,"60156":0,"60157":0,"60158":0,"60159":-1,"60160":-1,"60161":3211,"60162":-1,"60163":0,"60164":0,"60165":-1,"60166":-1,"60167":-1,"60168":0,"60169":-1,"60170":-1,"60171":2829,"60172":-1,"60173":-1,"60174":0,"60175":0,"60176":0,"60177":2272,"60178":0,"60179":-1,"60180":-1,"60181":3158,"60182":1871,"60183":3175,"60184":-1,"60185":0,"60186":0,"60187":489,"60188":0,"60189":0,"60190":0,"60191":0,"60192":-1,"60193":0,"60194":-1,"60195":0,"60196":3540,"60197":0,"60198":-1,"60199":-1,"60200":-1,"60201":-1,"60202":306,"60203":0,"60204":3345,"60205":-1,"60206":0,"60207":-1,"60208":0,"60209":-1,"60210":0,"60211":3211,"60212":-1,"60213":2481,"60214":2242,"60215":2181,"60216":0,"60217":2124,"60218":3921,"60219":-1,"60220":0,"60221":0,"60222":270,"60223":-1,"60224":0,"60225":-1,"60226":0,"60227":2458,"60228":-1,"60229":-1,"60230":-1,"60231":0,"60232":0,"60233":-1,"60234":0,"60235":-1,"60236":3124,"60237":-1,"60238":0,"60239":0,"60240":0,"60241":-1,"60242":442,"60243":0,"60244":-1,"60245":3017,"60246":-1,"60247":346,"60248":-1,"60249":-1,"60250":0,"60251":0,"60252":0,"60253":0,"60254":0,"60255":0,"60256":-1,"60257":0,"60258":1984,"60259":-1,"60260":3061,"60261":-1,"60262":0,"60263":2091,"60264":-1,"60265":-1,"60266":0,"60267":0,"60268":0,"60269":0,"60270":0,"60271":0,"60272":-1,"60273":-1,"60274":0,"60275":0,"60276":0,"60277":0,"60278":0,"60279":1840,"60280":2246,"60281":-1,"60282":0,"60283":0,"60284":0,"60285":-1,"60286":3026,"60287":2173,"60288":3694,"60289":3031,"60290":3140,"60291":-1,"60292":0,"60293":-1,"60294":3212,"60295":0,"60296":-1,"60297":0,"60298":0,"60299":-1,"60300":1912,"60301":0,"60302":-1,"60303":0,"60304":3074,"60305":-1,"60306":0,"60307":-1,"60308":0,"60309":3149,"60310":0,"60311":1886,"60312":0,"60313":239,"60314":-1,"60315":-1,"60316":2857,"60317":2869,"60318":2724,"60319":0,"60320":0,"60321":-1,"60322":0,"60323":0,"60324":-1,"60325":0,"60326":-1,"60327":0,"60328":2197,"60329":0,"60330":0,"60331":-1,"60332":0,"60333":0,"60334":-1,"60335":2817,"60336":0,"60337":113,"60338":-1,"60339":2490,"60340":222,"60341":-1,"60342":0,"60343":0,"60344":3503,"60345":0,"60346":-1,"60347":0,"60348":0,"60349":190,"60350":-1,"60351":-1,"60352":0,"60353":3190,"60354":0,"60355":0,"60356":-1,"60357":0,"60358":-1,"60359":-1,"60360":-1,"60361":0,"60362":0,"60363":-1,"60364":-1,"60365":0,"60366":2354,"60367":-1,"60368":0,"60369":0,"60370":3007,"60371":3443,"60372":0,"60373":3498,"60374":-1,"60375":0,"60376":23,"60377":0,"60378":0,"60379":-1,"60380":-1,"60381":0,"60382":3287,"60383":0,"60384":327,"60385":0,"60386":0,"60387":0,"60388":3638,"60389":3922,"60390":3948,"60391":0,"60392":3127,"60393":-1,"60394":364,"60395":-1,"60396":0,"60397":-1,"60398":-1,"60399":2666,"60400":-1,"60401":-1,"60402":0,"60403":1980,"60404":2227,"60405":0,"60406":-1,"60407":-1,"60408":0,"60409":-1,"60410":-1,"60411":0,"60412":2736,"60413":2758,"60414":3087,"60415":0,"60416":3709,"60417":0,"60418":-1,"60419":-1,"60420":0,"60421":-1,"60422":-1,"60423":134,"60424":0,"60425":0,"60426":0,"60427":0,"60428":-1,"60429":386,"60430":-1,"60431":-1,"60432":3828,"60433":0,"60434":2991,"60435":4032,"60436":0,"60437":193,"60438":1868,"60439":-1,"60440":2412,"60441":2027,"60442":0,"60443":-1,"60444":0,"60445":-1,"60446":0,"60447":0,"60448":1811,"60449":0,"60450":514,"60451":264,"60452":-1,"60453":78,"60454":262,"60455":-1,"60456":0,"60457":0,"60458":-1,"60459":-1,"60460":0,"60461":0,"60462":0,"60463":-1,"60464":0,"60465":-1,"60466":0,"60467":-1,"60468":3480,"60469":0,"60470":0,"60471":0,"60472":0,"60473":240,"60474":0,"60475":-1,"60476":-1,"60477":0,"60478":0,"60479":0,"60480":3597,"60481":0,"60482":0,"60483":378,"60484":-1,"60485":3460,"60486":-1,"60487":3195,"60488":0,"60489":-1,"60490":2928,"60491":-1,"60492":-1,"60493":2812,"60494":347,"60495":0,"60496":-1,"60497":0,"60498":-1,"60499":0,"60500":0,"60501":-1,"60502":-1,"60503":-1,"60504":-1,"60505":-1,"60506":0,"60507":-1,"60508":0,"60509":0,"60510":-1,"60511":2515,"60512":-1,"60513":0,"60514":-1,"60515":0,"60516":2962,"60517":2706,"60518":0,"60519":-1,"60520":-1,"60521":3389,"60522":2446,"60523":-1,"60524":0,"60525":0,"60526":-1,"60527":-1,"60528":0,"60529":227,"60530":0,"60531":-1,"60532":2133,"60533":0,"60534":2838,"60535":0,"60536":-1,"60537":0,"60538":-1,"60539":-1,"60540":0,"60541":0,"60542":0,"60543":-1,"60544":-1,"60545":2865,"60546":0,"60547":0,"60548":2401,"60549":2624,"60550":-1,"60551":-1,"60552":3753,"60553":3822,"60554":0,"60555":0,"60556":-1,"60557":-1,"60558":0,"60559":0,"60560":0,"60561":0,"60562":0,"60563":426,"60564":-1,"60565":0,"60566":0,"60567":0,"60568":448,"60569":0,"60570":3279,"60571":1983,"60572":0,"60573":0,"60574":0,"60575":0,"60576":0,"60577":-1,"60578":0,"60579":3210,"60580":3083,"60581":378,"60582":3559,"60583":0,"60584":85,"60585":117,"60586":0,"60587":3254,"60588":3091,"60589":3946,"60590":0,"60591":3624,"60592":3977,"60593":-1,"60594":0,"60595":-1,"60596":3504,"60597":0,"60598":0,"60599":0,"60600":2191,"60601":-1,"60602":0,"60603":1933,"60604":3571,"60605":-1,"60606":0,"60607":4061,"60608":0,"60609":0,"60610":0,"60611":2464,"60612":0,"60613":-1,"60614":3391,"60615":0,"60616":-1,"60617":-1,"60618":-1,"60619":0,"60620":-1,"60621":0,"60622":0,"60623":100,"60624":3318,"60625":130,"60626":-1,"60627":2425,"60628":2242,"60629":0,"60630":0,"60631":-1,"60632":0,"60633":0,"60634":2652,"60635":0,"60636":-1,"60637":0,"60638":2998,"60639":0,"60640":0,"60641":0,"60642":-1,"60643":-1,"60644":3041,"60645":3109,"60646":-1,"60647":3136,"60648":406,"60649":-1,"60650":-1,"60651":0,"60652":245,"60653":0,"60654":2479,"60655":0,"60656":2046,"60657":3498,"60658":-1,"60659":0,"60660":-1,"60661":0,"60662":0,"60663":-1,"60664":0,"60665":-1,"60666":0,"60667":-1,"60668":0,"60669":0,"60670":0,"60671":-1,"60672":0,"60673":0,"60674":2074,"60675":2642,"60676":-1,"60677":0,"60678":0,"60679":0,"60680":136,"60681":3728,"60682":-1,"60683":0,"60684":-1,"60685":2111,"60686":0,"60687":-1,"60688":0,"60689":-1,"60690":-1,"60691":0,"60692":0,"60693":0,"60694":-1,"60695":0,"60696":-1,"60697":0,"60698":0,"60699":0,"60700":3118,"60701":-1,"60702":0,"60703":2133,"60704":0,"60705":-1,"60706":3241,"60707":0,"60708":-1,"60709":0,"60710":-1,"60711":0,"60712":0,"60713":0,"60714":0,"60715":2243,"60716":-1,"60717":-1,"60718":-1,"60719":457,"60720":418,"60721":0,"60722":0,"60723":0,"60724":0,"60725":2493,"60726":-1,"60727":2387,"60728":2983,"60729":-1,"60730":-1,"60731":3840,"60732":-1,"60733":0,"60734":1854,"60735":-1,"60736":0,"60737":0,"60738":0,"60739":1975,"60740":0,"60741":3315,"60742":-1,"60743":-1,"60744":-1,"60745":-1,"60746":2693,"60747":-1,"60748":0,"60749":0,"60750":-1,"60751":0,"60752":-1,"60753":330,"60754":4023,"60755":0,"60756":-1,"60757":0,"60758":1986,"60759":-1,"60760":2482,"60761":0,"60762":-1,"60763":0,"60764":-1,"60765":-1,"60766":286,"60767":0,"60768":0,"60769":3221,"60770":0,"60771":0,"60772":-1,"60773":0,"60774":-1,"60775":-1,"60776":-1,"60777":0,"60778":-1,"60779":-1,"60780":0,"60781":3606,"60782":1945,"60783":2044,"60784":3861,"60785":3209,"60786":-1,"60787":2745,"60788":76,"60789":-1,"60790":-1,"60791":0,"60792":0,"60793":0,"60794":-1,"60795":-1,"60796":-1,"60797":-1,"60798":2320,"60799":0,"60800":0,"60801":1835,"60802":237,"60803":0,"60804":0,"60805":1787,"60806":0,"60807":2543,"60808":3841,"60809":3542,"60810":0,"60811":-1,"60812":-1,"60813":-1,"60814":-1,"60815":-1,"60816":3681,"60817":0,"60818":0,"60819":-1,"60820":0,"60821":0,"60822":0,"60823":0,"60824":0,"60825":110,"60826":1954,"60827":-1,"60828":3445,"60829":-1,"60830":-1,"60831":17,"60832":-1,"60833":-1,"60834":0,"60835":-1,"60836":0,"60837":-1,"60838":0,"60839":3433,"60840":-1,"60841":0,"60842":0,"60843":1989,"60844":-1,"60845":-1,"60846":-1,"60847":-1,"60848":2075,"60849":0,"60850":0,"60851":2250,"60852":0,"60853":0,"60854":486,"60855":2519,"60856":0,"60857":199,"60858":-1,"60859":19,"60860":0,"60861":0,"60862":0,"60863":-1,"60864":70,"60865":0,"60866":-1,"60867":3633,"60868":-1,"60869":0,"60870":3555,"60871":3981,"60872":-1,"60873":-1,"60874":0,"60875":-1,"60876":0,"60877":329,"60878":0,"60879":-1,"60880":2022,"60881":-1,"60882":-1,"60883":2992,"60884":3562,"60885":0,"60886":2030,"60887":3055,"60888":3450,"60889":-1,"60890":2935,"60891":0,"60892":-1,"60893":0,"60894":0,"60895":0,"60896":-1,"60897":0,"60898":0,"60899":-1,"60900":-1,"60901":0,"60902":-1,"60903":3072}} \ No newline at end of file diff --git a/individual_tv50_2.json b/individual_tv50_2.json new file mode 100644 index 0000000000000000000000000000000000000000..54f71804e438b0f3368137e665024a12558ad7d2 --- /dev/null +++ b/individual_tv50_2.json @@ -0,0 +1 @@ +{"hhid":{"0":13984,"1":14456,"2":17746,"3":8060,"4":13679,"5":12639,"6":6050,"7":6277,"8":15417,"9":12750,"10":4133,"11":17887,"12":17580,"13":7642,"14":4586,"15":452,"16":13330,"17":12348,"18":8834,"19":15450,"20":12400,"21":17368,"22":2840,"23":1586,"24":15273,"25":6280,"26":6130,"27":240,"28":3601,"29":1957,"30":7005,"31":2656,"32":11207,"33":14761,"34":2894,"35":15774,"36":11110,"37":3880,"38":3010,"39":18078,"40":17142,"41":2127,"42":16157,"43":3112,"44":8560,"45":13977,"46":13191,"47":2384,"48":4412,"49":16937,"50":2812,"51":10279,"52":14613,"53":4499,"54":120,"55":248,"56":3159,"57":8549,"58":7649,"59":414,"60":18269,"61":672,"62":7373,"63":5332,"64":16394,"65":17892,"66":14236,"67":12827,"68":15860,"69":17632,"70":1241,"71":9232,"72":14006,"73":2304,"74":4063,"75":17101,"76":10124,"77":2202,"78":1695,"79":12224,"80":6682,"81":3165,"82":4471,"83":3504,"84":17179,"85":8981,"86":18263,"87":2428,"88":12231,"89":1730,"90":7629,"91":14935,"92":553,"93":14775,"94":12802,"95":9136,"96":7222,"97":10671,"98":15368,"99":15949,"100":196,"101":18109,"102":16343,"103":6895,"104":471,"105":13890,"106":14040,"107":6652,"108":13788,"109":5204,"110":3785,"111":8172,"112":11929,"113":8614,"114":12345,"115":14127,"116":1980,"117":7481,"118":10244,"119":8279,"120":12642,"121":11188,"122":7988,"123":8564,"124":15246,"125":6985,"126":7954,"127":7193,"128":7720,"129":17240,"130":6801,"131":17795,"132":6274,"133":249,"134":15207,"135":11304,"136":18275,"137":15873,"138":3047,"139":766,"140":6719,"141":15041,"142":15290,"143":10482,"144":16962,"145":17492,"146":13328,"147":1596,"148":3316,"149":14864,"150":3027,"151":10234,"152":10162,"153":5352,"154":8049,"155":17241,"156":11043,"157":9594,"158":13112,"159":6554,"160":7216,"161":11395,"162":10050,"163":6925,"164":8346,"165":4242,"166":2491,"167":8305,"168":5798,"169":12310,"170":5430,"171":18331,"172":6946,"173":1113,"174":1316,"175":6245,"176":11921,"177":16908,"178":6596,"179":11303,"180":8290,"181":9929,"182":6639,"183":6987,"184":9613,"185":14358,"186":13627,"187":5459,"188":6633,"189":13511,"190":280,"191":15732,"192":3894,"193":1311,"194":3601,"195":2217,"196":14101,"197":14168,"198":3390,"199":13482,"200":7954,"201":3109,"202":17290,"203":15221,"204":11063,"205":15884,"206":1593,"207":3874,"208":17613,"209":3702,"210":18239,"211":2706,"212":965,"213":15576,"214":5284,"215":17600,"216":13485,"217":4427,"218":6372,"219":8082,"220":964,"221":7185,"222":857,"223":14939,"224":11802,"225":11340,"226":16030,"227":15337,"228":16234,"229":1075,"230":3311,"231":18260,"232":7129,"233":10542,"234":8771,"235":18166,"236":15391,"237":3320,"238":6160,"239":6950,"240":4966,"241":9293,"242":11465,"243":3413,"244":6105,"245":4455,"246":300,"247":779,"248":10117,"249":1658,"250":13007,"251":9457,"252":15123,"253":6290,"254":14318,"255":16720,"256":11954,"257":6242,"258":12553,"259":8457,"260":16644,"261":16411,"262":3076,"263":5354,"264":15627,"265":14791,"266":13577,"267":9194,"268":2429,"269":15855,"270":8350,"271":1097,"272":3202,"273":15629,"274":15448,"275":6603,"276":12346,"277":6455,"278":11494,"279":1901,"280":3008,"281":12280,"282":5794,"283":12846,"284":17386,"285":10747,"286":3424,"287":16697,"288":16388,"289":11769,"290":8374,"291":11331,"292":9627,"293":14895,"294":15515,"295":13089,"296":16476,"297":17207,"298":10687,"299":14452,"300":10143,"301":10383,"302":6690,"303":17394,"304":4870,"305":2340,"306":6625,"307":11079,"308":15082,"309":11107,"310":11441,"311":7474,"312":13427,"313":12632,"314":14982,"315":9049,"316":1814,"317":17461,"318":11217,"319":11733,"320":9316,"321":3909,"322":11456,"323":3476,"324":17985,"325":15516,"326":8271,"327":2433,"328":5265,"329":16875,"330":691,"331":4707,"332":2657,"333":2836,"334":6669,"335":14946,"336":3960,"337":18040,"338":6045,"339":8881,"340":12908,"341":13155,"342":4264,"343":10180,"344":4962,"345":4522,"346":1290,"347":5177,"348":3280,"349":1624,"350":16715,"351":4977,"352":8144,"353":13711,"354":2673,"355":11235,"356":1845,"357":6409,"358":14049,"359":3549,"360":644,"361":17296,"362":8217,"363":6791,"364":18359,"365":6212,"366":15194,"367":4064,"368":1230,"369":435,"370":397,"371":9255,"372":15824,"373":15752,"374":14812,"375":17350,"376":10822,"377":1741,"378":13532,"379":12032,"380":205,"381":1118,"382":9095,"383":8569,"384":7484,"385":10685,"386":8452,"387":9567,"388":3688,"389":11656,"390":15903,"391":17560,"392":5855,"393":8883,"394":14978,"395":8629,"396":916,"397":7569,"398":17256,"399":14648,"400":14551,"401":10640,"402":9346,"403":15967,"404":3826,"405":5451,"406":473,"407":17,"408":11958,"409":5960,"410":6734,"411":5269,"412":2454,"413":13656,"414":13492,"415":2242,"416":9207,"417":9658,"418":5752,"419":16330,"420":17147,"421":16402,"422":15769,"423":7966,"424":16992,"425":283,"426":12885,"427":5797,"428":15363,"429":8481,"430":12141,"431":17896,"432":6910,"433":15857,"434":7019,"435":3,"436":13130,"437":3044,"438":15219,"439":3018,"440":3991,"441":2913,"442":602,"443":8568,"444":16319,"445":12838,"446":8294,"447":1214,"448":2160,"449":10073,"450":14348,"451":4260,"452":528,"453":3022,"454":14989,"455":6678,"456":14024,"457":344,"458":1339,"459":9926,"460":14506,"461":16990,"462":13749,"463":3724,"464":10779,"465":5882,"466":10260,"467":17588,"468":1461,"469":11633,"470":9315,"471":2909,"472":9059,"473":12136,"474":13836,"475":8250,"476":17780,"477":9045,"478":2939,"479":9323,"480":15773,"481":7549,"482":13003,"483":15628,"484":12845,"485":15483,"486":650,"487":14725,"488":11550,"489":3668,"490":4257,"491":14743,"492":7827,"493":18136,"494":13061,"495":13074,"496":5532,"497":12650,"498":10204,"499":7175,"500":13086,"501":5421,"502":15169,"503":4527,"504":12459,"505":7448,"506":5457,"507":14375,"508":16486,"509":11595,"510":9325,"511":9067,"512":14572,"513":1242,"514":13656,"515":15677,"516":6027,"517":2738,"518":1105,"519":1887,"520":17065,"521":2540,"522":9644,"523":82,"524":7497,"525":10812,"526":4784,"527":6476,"528":10309,"529":3510,"530":12631,"531":12134,"532":13902,"533":14946,"534":7391,"535":18278,"536":3550,"537":14822,"538":17792,"539":12582,"540":5333,"541":984,"542":13448,"543":4401,"544":5966,"545":14903,"546":2257,"547":18310,"548":11160,"549":10689,"550":1693,"551":7015,"552":2530,"553":17885,"554":396,"555":1870,"556":17696,"557":13699,"558":1749,"559":13216,"560":8556,"561":15959,"562":16690,"563":6786,"564":13432,"565":15614,"566":6545,"567":10986,"568":8494,"569":11982,"570":15981,"571":12036,"572":5664,"573":3066,"574":2605,"575":2244,"576":6063,"577":17595,"578":9458,"579":2558,"580":15079,"581":6964,"582":9385,"583":311,"584":15935,"585":907,"586":13914,"587":14704,"588":8882,"589":8129,"590":9944,"591":9776,"592":10753,"593":13240,"594":12714,"595":454,"596":1347,"597":2455,"598":13712,"599":9922,"600":16694,"601":17039,"602":6719,"603":10374,"604":11641,"605":1501,"606":17753,"607":8861,"608":6289,"609":5988,"610":13015,"611":412,"612":3503,"613":9593,"614":16410,"615":6447,"616":7753,"617":11282,"618":2992,"619":11136,"620":4302,"621":10035,"622":7985,"623":17136,"624":1756,"625":5838,"626":3716,"627":768,"628":7006,"629":2129,"630":1056,"631":11140,"632":14281,"633":16235,"634":15287,"635":1479,"636":13410,"637":2400,"638":5220,"639":17538,"640":13763,"641":13591,"642":13575,"643":11004,"644":8460,"645":2310,"646":5286,"647":11508,"648":11086,"649":13782,"650":15306,"651":11852,"652":16459,"653":11783,"654":5255,"655":5007,"656":14164,"657":3488,"658":17408,"659":100,"660":7796,"661":15254,"662":3675,"663":13909,"664":13555,"665":10850,"666":2370,"667":4985,"668":14908,"669":11519,"670":16965,"671":15525,"672":628,"673":13378,"674":6670,"675":6653,"676":6911,"677":8592,"678":1792,"679":2848,"680":195,"681":17315,"682":798,"683":16470,"684":16333,"685":14824,"686":9656,"687":14436,"688":2013,"689":7177,"690":3524,"691":9905,"692":12296,"693":15530,"694":16685,"695":5259,"696":13743,"697":6754,"698":2885,"699":7920,"700":16940,"701":15284,"702":11722,"703":11661,"704":4398,"705":2109,"706":10025,"707":11895,"708":6346,"709":14087,"710":3807,"711":8286,"712":16495,"713":5837,"714":1086,"715":3220,"716":12138,"717":17182,"718":3283,"719":5518,"720":4815,"721":9838,"722":4927,"723":4326,"724":6165,"725":13611,"726":15428,"727":8431,"728":395,"729":3504,"730":8036,"731":2313,"732":17936,"733":9438,"734":7339,"735":9478,"736":9546,"737":49,"738":7283,"739":3656,"740":6776,"741":813,"742":4624,"743":14214,"744":9808,"745":9634,"746":15881,"747":14545,"748":17205,"749":12599,"750":12221,"751":7452,"752":4784,"753":7675,"754":10404,"755":15001,"756":1621,"757":13137,"758":16784,"759":8402,"760":6080,"761":556,"762":8837,"763":12029,"764":4519,"765":13838,"766":10372,"767":7566,"768":11397,"769":12395,"770":14806,"771":7696,"772":11151,"773":2308,"774":4221,"775":17276,"776":10265,"777":10205,"778":18221,"779":3611,"780":450,"781":3004,"782":8965,"783":15648,"784":1108,"785":6281,"786":10385,"787":17548,"788":1345,"789":1225,"790":1540,"791":14443,"792":11651,"793":8646,"794":5925,"795":623,"796":9572,"797":8992,"798":5714,"799":12145,"800":4312,"801":1427,"802":194,"803":17367,"804":15269,"805":7719,"806":9069,"807":4592,"808":15315,"809":3900,"810":18003,"811":15331,"812":15626,"813":12985,"814":17124,"815":7993,"816":7644,"817":10421,"818":12266,"819":12006,"820":12990,"821":5959,"822":8389,"823":3547,"824":5597,"825":9540,"826":5157,"827":4433,"828":9309,"829":5325,"830":15156,"831":532,"832":6023,"833":14924,"834":6553,"835":15930,"836":8642,"837":9113,"838":5947,"839":7211,"840":5478,"841":4580,"842":7584,"843":7979,"844":6424,"845":9197,"846":3288,"847":11399,"848":13273,"849":1219,"850":11784,"851":1961,"852":11151,"853":3161,"854":17472,"855":1977,"856":13561,"857":11630,"858":13240,"859":1838,"860":1629,"861":17128,"862":1434,"863":8465,"864":4431,"865":1660,"866":15771,"867":8033,"868":8899,"869":13836,"870":10477,"871":10539,"872":13240,"873":11196,"874":3687,"875":14823,"876":7978,"877":12804,"878":17230,"879":2925,"880":11128,"881":16285,"882":14914,"883":5559,"884":11929,"885":9550,"886":978,"887":15163,"888":7545,"889":6227,"890":9521,"891":6542,"892":13200,"893":795,"894":8863,"895":18181,"896":11038,"897":2442,"898":11711,"899":17674,"900":13580,"901":16461,"902":2976,"903":16777,"904":2975,"905":2621,"906":8567,"907":5332,"908":12767,"909":43,"910":3189,"911":14942,"912":5739,"913":15283,"914":16767,"915":12446,"916":15735,"917":10817,"918":17007,"919":9267,"920":6063,"921":9398,"922":8748,"923":10131,"924":13244,"925":587,"926":16560,"927":14762,"928":389,"929":16547,"930":15288,"931":9684,"932":7476,"933":12023,"934":9254,"935":1390,"936":11770,"937":2822,"938":3759,"939":3705,"940":13539,"941":17938,"942":10926,"943":13414,"944":7849,"945":10966,"946":17830,"947":7089,"948":4893,"949":3095,"950":16109,"951":17116,"952":3554,"953":2376,"954":13241,"955":7089,"956":14947,"957":10672,"958":12107,"959":226,"960":8059,"961":16709,"962":16241,"963":9211,"964":10351,"965":4111,"966":6765,"967":7576,"968":14214,"969":9139,"970":10295,"971":1307,"972":11880,"973":7969,"974":2218,"975":17292,"976":14405,"977":16026,"978":12279,"979":4951,"980":2870,"981":13023,"982":17234,"983":14719,"984":12335,"985":6286,"986":14914,"987":11931,"988":8429,"989":13569,"990":3837,"991":8330,"992":14570,"993":7697,"994":8476,"995":8296,"996":13337,"997":14409,"998":14291,"999":14242,"1000":4220,"1001":15262,"1002":1540,"1003":10616,"1004":4886,"1005":12399,"1006":7627,"1007":8127,"1008":1749,"1009":5321,"1010":18279,"1011":16237,"1012":16091,"1013":2960,"1014":5422,"1015":5243,"1016":13270,"1017":9977,"1018":6052,"1019":13074,"1020":17078,"1021":17313,"1022":15272,"1023":1439,"1024":16292,"1025":10521,"1026":7487,"1027":725,"1028":17993,"1029":7987,"1030":17769,"1031":12244,"1032":8294,"1033":3184,"1034":17592,"1035":8052,"1036":15199,"1037":1330,"1038":2220,"1039":8689,"1040":5674,"1041":14333,"1042":13321,"1043":9257,"1044":10007,"1045":14348,"1046":549,"1047":2586,"1048":13528,"1049":2403,"1050":16762,"1051":9917,"1052":8449,"1053":18132,"1054":17744,"1055":2521,"1056":6009,"1057":12838,"1058":13222,"1059":12744,"1060":2155,"1061":676,"1062":1610,"1063":11935,"1064":1801,"1065":7734,"1066":13060,"1067":12547,"1068":13363,"1069":16706,"1070":3098,"1071":5231,"1072":1744,"1073":4350,"1074":6739,"1075":12561,"1076":9773,"1077":10554,"1078":6418,"1079":6569,"1080":8579,"1081":3813,"1082":10128,"1083":2720,"1084":10421,"1085":13560,"1086":9252,"1087":10321,"1088":7130,"1089":7624,"1090":5979,"1091":9514,"1092":4718,"1093":10586,"1094":10731,"1095":2561,"1096":14699,"1097":2726,"1098":1902,"1099":10243,"1100":2663,"1101":10561,"1102":5292,"1103":17543,"1104":9843,"1105":11600,"1106":15058,"1107":716,"1108":10850,"1109":7689,"1110":12991,"1111":5352,"1112":16537,"1113":1451,"1114":4027,"1115":16715,"1116":731,"1117":11188,"1118":18007,"1119":12039,"1120":2129,"1121":15540,"1122":280,"1123":7960,"1124":12242,"1125":3445,"1126":10704,"1127":16444,"1128":1392,"1129":6997,"1130":14694,"1131":10172,"1132":8706,"1133":973,"1134":8250,"1135":6890,"1136":15553,"1137":11337,"1138":11309,"1139":12734,"1140":18269,"1141":17911,"1142":8625,"1143":12732,"1144":10751,"1145":10796,"1146":1922,"1147":6719,"1148":13389,"1149":16129,"1150":6672,"1151":12132,"1152":14026,"1153":7607,"1154":17644,"1155":1044,"1156":2747,"1157":10673,"1158":12084,"1159":6961,"1160":9759,"1161":11444,"1162":4566,"1163":11081,"1164":10885,"1165":9774,"1166":7218,"1167":3794,"1168":13418,"1169":13603,"1170":4432,"1171":11423,"1172":11920,"1173":14175,"1174":4268,"1175":3216,"1176":4926,"1177":17049,"1178":16983,"1179":13308,"1180":13479,"1181":10680,"1182":14000,"1183":3779,"1184":203,"1185":5831,"1186":2605,"1187":6701,"1188":17542,"1189":15495,"1190":261,"1191":96,"1192":2758,"1193":6516,"1194":6150,"1195":6930,"1196":15252,"1197":5445,"1198":3101,"1199":10538,"1200":1852,"1201":16645,"1202":6639,"1203":9293,"1204":6211,"1205":14257,"1206":2020,"1207":721,"1208":2923,"1209":15901,"1210":4670,"1211":10485,"1212":13349,"1213":6556,"1214":12669,"1215":12336,"1216":18357,"1217":5783,"1218":67,"1219":10695,"1220":16103,"1221":17643,"1222":14079,"1223":2314,"1224":985,"1225":1993,"1226":14858,"1227":10811,"1228":3106,"1229":4196,"1230":15293,"1231":15370,"1232":919,"1233":13356,"1234":17667,"1235":6929,"1236":5373,"1237":4537,"1238":15174,"1239":16315,"1240":8536,"1241":14571,"1242":8328,"1243":915,"1244":4500,"1245":3772,"1246":1392,"1247":6188,"1248":17688,"1249":15865,"1250":3498,"1251":14256,"1252":11415,"1253":11677,"1254":4530,"1255":1277,"1256":9823,"1257":17432,"1258":11079,"1259":10645,"1260":6549,"1261":14105,"1262":2435,"1263":662,"1264":16318,"1265":12795,"1266":17455,"1267":11012,"1268":11674,"1269":8388,"1270":11873,"1271":16039,"1272":1281,"1273":14762,"1274":15620,"1275":11208,"1276":3854,"1277":11080,"1278":2472,"1279":11959,"1280":4009,"1281":2554,"1282":13916,"1283":12781,"1284":12005,"1285":186,"1286":12742,"1287":3864,"1288":2767,"1289":13489,"1290":1967,"1291":12082,"1292":8811,"1293":4384,"1294":2491,"1295":3055,"1296":6467,"1297":3147,"1298":3278,"1299":14663,"1300":15147,"1301":9879,"1302":3895,"1303":17218,"1304":1704,"1305":6268,"1306":1531,"1307":12719,"1308":7924,"1309":4813,"1310":16216,"1311":728,"1312":2835,"1313":7732,"1314":18303,"1315":14212,"1316":16539,"1317":9187,"1318":3190,"1319":4347,"1320":17015,"1321":16968,"1322":9732,"1323":9797,"1324":1026,"1325":4607,"1326":11312,"1327":14743,"1328":10942,"1329":17821,"1330":4711,"1331":710,"1332":11107,"1333":8082,"1334":14205,"1335":29,"1336":5305,"1337":3852,"1338":13472,"1339":3800,"1340":7738,"1341":3149,"1342":6600,"1343":9800,"1344":6966,"1345":14170,"1346":6985,"1347":14335,"1348":8305,"1349":9761,"1350":4688,"1351":676,"1352":3574,"1353":7702,"1354":16430,"1355":12071,"1356":4318,"1357":14199,"1358":11561,"1359":7480,"1360":13365,"1361":8935,"1362":14538,"1363":12306,"1364":413,"1365":829,"1366":2238,"1367":6338,"1368":12182,"1369":7794,"1370":6369,"1371":14895,"1372":6796,"1373":15785,"1374":9694,"1375":16297,"1376":4685,"1377":7711,"1378":13935,"1379":11754,"1380":15385,"1381":8729,"1382":2552,"1383":5189,"1384":1456,"1385":16386,"1386":11498,"1387":5256,"1388":16998,"1389":6286,"1390":4122,"1391":11127,"1392":16145,"1393":9126,"1394":544,"1395":15663,"1396":8676,"1397":6144,"1398":6746,"1399":2975,"1400":4135,"1401":10114,"1402":15830,"1403":13542,"1404":12076,"1405":5325,"1406":5077,"1407":14469,"1408":4256,"1409":5699,"1410":16344,"1411":10723,"1412":818,"1413":4845,"1414":14882,"1415":17975,"1416":3540,"1417":910,"1418":9933,"1419":4541,"1420":2340,"1421":9672,"1422":4917,"1423":14216,"1424":11183,"1425":9745,"1426":7167,"1427":1773,"1428":3683,"1429":3732,"1430":6159,"1431":11509,"1432":15336,"1433":3553,"1434":18063,"1435":9263,"1436":6517,"1437":5321,"1438":5896,"1439":10256,"1440":8634,"1441":1023,"1442":7173,"1443":1702,"1444":11827,"1445":9803,"1446":9028,"1447":10221,"1448":13823,"1449":15018,"1450":7211,"1451":7796,"1452":12789,"1453":4537,"1454":17389,"1455":11548,"1456":7907,"1457":2814,"1458":13422,"1459":1622,"1460":7656,"1461":267,"1462":366,"1463":2028,"1464":6387,"1465":14995,"1466":11239,"1467":12937,"1468":4782,"1469":7560,"1470":1038,"1471":4525,"1472":9827,"1473":18112,"1474":16430,"1475":17842,"1476":17811,"1477":16971,"1478":18291,"1479":2145,"1480":14277,"1481":12540,"1482":5652,"1483":8694,"1484":11720,"1485":10011,"1486":8814,"1487":9449,"1488":10239,"1489":15422,"1490":5284,"1491":17606,"1492":4400,"1493":13658,"1494":2519,"1495":3270,"1496":4342,"1497":11045,"1498":11403,"1499":10276,"1500":11761,"1501":2265,"1502":5726,"1503":5005,"1504":2307,"1505":1100,"1506":13698,"1507":16233,"1508":7560,"1509":930,"1510":3366,"1511":15620,"1512":17764,"1513":16214,"1514":17625,"1515":15425,"1516":15619,"1517":2411,"1518":15469,"1519":11837,"1520":13152,"1521":1262,"1522":375,"1523":6908,"1524":2166,"1525":5136,"1526":8360,"1527":9798,"1528":13298,"1529":600,"1530":14029,"1531":6217,"1532":44,"1533":15941,"1534":3233,"1535":563,"1536":1493,"1537":114,"1538":9073,"1539":5609,"1540":12997,"1541":10306,"1542":17815,"1543":13467,"1544":15911,"1545":4840,"1546":8459,"1547":13872,"1548":10600,"1549":6941,"1550":111,"1551":3744,"1552":16448,"1553":4714,"1554":18313,"1555":18045,"1556":10005,"1557":6096,"1558":6264,"1559":6018,"1560":5757,"1561":6220,"1562":4754,"1563":16695,"1564":5792,"1565":7532,"1566":15809,"1567":11527,"1568":7354,"1569":14098,"1570":3822,"1571":13883,"1572":827,"1573":5320,"1574":12016,"1575":13897,"1576":11047,"1577":1477,"1578":9566,"1579":17353,"1580":13096,"1581":8747,"1582":3392,"1583":14597,"1584":9169,"1585":252,"1586":15158,"1587":18339,"1588":3322,"1589":11996,"1590":1231,"1591":14203,"1592":5823,"1593":77,"1594":18027,"1595":15855,"1596":3807,"1597":4543,"1598":4415,"1599":7797,"1600":7486,"1601":10751,"1602":9677,"1603":14519,"1604":1308,"1605":17466,"1606":16905,"1607":2084,"1608":8762,"1609":3974,"1610":1058,"1611":14721,"1612":6879,"1613":9892,"1614":7556,"1615":16792,"1616":16342,"1617":337,"1618":3940,"1619":6715,"1620":2276,"1621":8219,"1622":12203,"1623":12455,"1624":15709,"1625":15387,"1626":13223,"1627":14762,"1628":7806,"1629":1459,"1630":11779,"1631":7428,"1632":12138,"1633":5809,"1634":9340,"1635":858,"1636":15677,"1637":11733,"1638":6791,"1639":11817,"1640":14143,"1641":2168,"1642":997,"1643":621,"1644":5218,"1645":7894,"1646":9994,"1647":8304,"1648":5733,"1649":7831,"1650":13289,"1651":7101,"1652":3429,"1653":1010,"1654":16483,"1655":17385,"1656":6210,"1657":16958,"1658":17880,"1659":14513,"1660":3827,"1661":2014,"1662":11190,"1663":13345,"1664":208,"1665":16927,"1666":1303,"1667":13861,"1668":1464,"1669":13598,"1670":5585,"1671":11016,"1672":822,"1673":2672,"1674":6579,"1675":6539,"1676":13898,"1677":4921,"1678":3391,"1679":12657,"1680":16717,"1681":17145,"1682":11845,"1683":8528,"1684":1517,"1685":1205,"1686":3668,"1687":10308,"1688":12532,"1689":1468,"1690":12086,"1691":6277,"1692":15592,"1693":5811,"1694":7586,"1695":17852,"1696":7855,"1697":15569,"1698":11788,"1699":9752,"1700":1569,"1701":14686,"1702":6900,"1703":8062,"1704":16730,"1705":120,"1706":5553,"1707":9979,"1708":10280,"1709":11968,"1710":3910,"1711":374,"1712":15783,"1713":10678,"1714":17354,"1715":12349,"1716":1493,"1717":13478,"1718":1736,"1719":7436,"1720":8021,"1721":11149,"1722":14130,"1723":5304,"1724":4926,"1725":8547,"1726":7521,"1727":17676,"1728":5160,"1729":10453,"1730":13922,"1731":8379,"1732":11551,"1733":8934,"1734":12828,"1735":4491,"1736":8653,"1737":7509,"1738":12802,"1739":2580,"1740":2557,"1741":9371,"1742":14150,"1743":17085,"1744":8781,"1745":10009,"1746":8983,"1747":2081,"1748":2697,"1749":2101,"1750":2782,"1751":11884,"1752":11000,"1753":10584,"1754":1873,"1755":8508,"1756":17010,"1757":14763,"1758":3779,"1759":10639,"1760":15615,"1761":11461,"1762":121,"1763":7603,"1764":10234,"1765":15246,"1766":8082,"1767":8811,"1768":5519,"1769":16842,"1770":7504,"1771":8766,"1772":1655,"1773":3158,"1774":17449,"1775":16731,"1776":13274,"1777":13575,"1778":17256,"1779":17756,"1780":4362,"1781":2303,"1782":15529,"1783":2407,"1784":5462,"1785":10681,"1786":11657,"1787":10246,"1788":260,"1789":11300,"1790":5678,"1791":9963,"1792":5835,"1793":10336,"1794":8407,"1795":9774,"1796":1528,"1797":447,"1798":2865,"1799":6315,"1800":11485,"1801":15691,"1802":4684,"1803":16164,"1804":17204,"1805":16883,"1806":4744,"1807":6133,"1808":7669,"1809":3614,"1810":7003,"1811":16995,"1812":13842,"1813":16877,"1814":12468,"1815":1105,"1816":8313,"1817":16733,"1818":12828,"1819":12765,"1820":10290,"1821":16018,"1822":7475,"1823":17392,"1824":2641,"1825":16451,"1826":11140,"1827":13233,"1828":7636,"1829":14184,"1830":5168,"1831":6538,"1832":15922,"1833":8083,"1834":3060,"1835":4115,"1836":8784,"1837":3130,"1838":15780,"1839":7059,"1840":18237,"1841":16156,"1842":1847,"1843":5323,"1844":10071,"1845":17373,"1846":14568,"1847":5508,"1848":13708,"1849":5433,"1850":10125,"1851":4423,"1852":4832,"1853":17669,"1854":2473,"1855":7784,"1856":4092,"1857":14820,"1858":10106,"1859":8279,"1860":389,"1861":6619,"1862":4690,"1863":9393,"1864":12778,"1865":9371,"1866":5872,"1867":5836,"1868":6600,"1869":11923,"1870":2286,"1871":13421,"1872":3195,"1873":362,"1874":7751,"1875":7143,"1876":11648,"1877":13477,"1878":9895,"1879":14295,"1880":5630,"1881":10491,"1882":6610,"1883":14753,"1884":1918,"1885":9537,"1886":13451,"1887":7409,"1888":1100,"1889":6802,"1890":5904,"1891":16871,"1892":18054,"1893":9661,"1894":9582,"1895":8037,"1896":17660,"1897":10095,"1898":5848,"1899":9089,"1900":424,"1901":6726,"1902":6644,"1903":17085,"1904":9945,"1905":15948,"1906":15049,"1907":6680,"1908":3856,"1909":16516,"1910":9036,"1911":12971,"1912":18027,"1913":11556,"1914":4424,"1915":14676,"1916":7680,"1917":1732,"1918":13598,"1919":8335,"1920":4368,"1921":3591,"1922":12537,"1923":5616,"1924":8915,"1925":13004,"1926":10237,"1927":12653,"1928":16790,"1929":3817,"1930":13357,"1931":9896,"1932":16853,"1933":13411,"1934":2538,"1935":5636,"1936":5676,"1937":1760,"1938":11137,"1939":18186,"1940":18032,"1941":8973,"1942":749,"1943":10020,"1944":4512,"1945":18327,"1946":11690,"1947":9404,"1948":13654,"1949":709,"1950":16207,"1951":10013,"1952":7950,"1953":14861,"1954":5145,"1955":14701,"1956":6454,"1957":14958,"1958":15683,"1959":10103,"1960":2536,"1961":14286,"1962":13777,"1963":7653,"1964":7986,"1965":6956,"1966":10794,"1967":8842,"1968":13658,"1969":15316,"1970":8169,"1971":1576,"1972":9205,"1973":9779,"1974":6181,"1975":9211,"1976":11177,"1977":16812,"1978":10692,"1979":4751,"1980":11841,"1981":12093,"1982":13624,"1983":4441,"1984":9646,"1985":9722,"1986":1750,"1987":9747,"1988":8801,"1989":2793,"1990":2272,"1991":10740,"1992":9801,"1993":6,"1994":14263,"1995":11503,"1996":12520,"1997":9588,"1998":3542,"1999":16238,"2000":3023,"2001":177,"2002":8182,"2003":8008,"2004":528,"2005":16915,"2006":12875,"2007":1517,"2008":1709,"2009":12047,"2010":5312,"2011":15567,"2012":12771,"2013":10537,"2014":13988,"2015":5034,"2016":10561,"2017":10495,"2018":1732,"2019":15232,"2020":15412,"2021":4163,"2022":9540,"2023":16455,"2024":582,"2025":13212,"2026":15279,"2027":16506,"2028":17862,"2029":3848,"2030":9605,"2031":14443,"2032":7422,"2033":15310,"2034":5518,"2035":17348,"2036":8956,"2037":17264,"2038":17284,"2039":5360,"2040":301,"2041":3502,"2042":8317,"2043":4209,"2044":17336,"2045":7538,"2046":8738,"2047":17828,"2048":3420,"2049":6423,"2050":3541,"2051":9629,"2052":1304,"2053":17145,"2054":3450,"2055":13508,"2056":12665,"2057":4311,"2058":4588,"2059":1448,"2060":11908,"2061":15095,"2062":11211,"2063":18296,"2064":4993,"2065":5503,"2066":9582,"2067":18012,"2068":6594,"2069":2754,"2070":13459,"2071":4173,"2072":2723,"2073":10,"2074":7270,"2075":12733,"2076":12715,"2077":4051,"2078":2345,"2079":2279,"2080":12797,"2081":3070,"2082":9437,"2083":1007,"2084":3573,"2085":7711,"2086":16446,"2087":13224,"2088":2026,"2089":787,"2090":9394,"2091":7472,"2092":15433,"2093":16301,"2094":6978,"2095":10064,"2096":3048,"2097":10786,"2098":4760,"2099":14205,"2100":4703,"2101":4060,"2102":3465,"2103":1565,"2104":17022,"2105":3251,"2106":888,"2107":10256,"2108":9890,"2109":8258,"2110":8701,"2111":1461,"2112":2215,"2113":213,"2114":1948,"2115":16665,"2116":1998,"2117":4062,"2118":3206,"2119":6647,"2120":3479,"2121":5926,"2122":13082,"2123":2859,"2124":3214,"2125":6256,"2126":3515,"2127":7631,"2128":4034,"2129":11031,"2130":12353,"2131":93,"2132":4783,"2133":16218,"2134":2095,"2135":9659,"2136":9229,"2137":6804,"2138":16091,"2139":17187,"2140":14739,"2141":17255,"2142":12805,"2143":4850,"2144":11988,"2145":3556,"2146":11365,"2147":9919,"2148":16563,"2149":7994,"2150":18086,"2151":1610,"2152":1545,"2153":1452,"2154":11955,"2155":5387,"2156":12660,"2157":6117,"2158":13831,"2159":10062,"2160":15345,"2161":3396,"2162":10270,"2163":11804,"2164":5611,"2165":12143,"2166":10272,"2167":4978,"2168":10020,"2169":569,"2170":3078,"2171":7185,"2172":11372,"2173":16704,"2174":8697,"2175":15290,"2176":13677,"2177":16891,"2178":3450,"2179":13539,"2180":13417,"2181":1397,"2182":4899,"2183":14403,"2184":4789,"2185":15019,"2186":9273,"2187":4104,"2188":11436,"2189":8622,"2190":4008,"2191":1963,"2192":9091,"2193":3073,"2194":15096,"2195":4011,"2196":11284,"2197":58,"2198":4925,"2199":11037,"2200":3477,"2201":3481,"2202":7851,"2203":2702,"2204":7540,"2205":15644,"2206":10,"2207":12412,"2208":11453,"2209":10109,"2210":8236,"2211":18085,"2212":3377,"2213":12146,"2214":16434,"2215":6577,"2216":14859,"2217":7054,"2218":10107,"2219":9469,"2220":645,"2221":2075,"2222":3925,"2223":2671,"2224":4704,"2225":11725,"2226":4144,"2227":9022,"2228":12343,"2229":9863,"2230":8346,"2231":17934,"2232":6560,"2233":4679,"2234":10313,"2235":14262,"2236":18213,"2237":1670,"2238":1689,"2239":7747,"2240":11448,"2241":4870,"2242":17419,"2243":16015,"2244":16094,"2245":17605,"2246":5369,"2247":14486,"2248":5189,"2249":9020,"2250":3473,"2251":1843,"2252":55,"2253":9794,"2254":14875,"2255":16896,"2256":7613,"2257":11474,"2258":8082,"2259":18136,"2260":18189,"2261":1667,"2262":4168,"2263":15410,"2264":9649,"2265":6545,"2266":17265,"2267":5852,"2268":13551,"2269":11772,"2270":12337,"2271":7665,"2272":4601,"2273":7230,"2274":16957,"2275":1224,"2276":15809,"2277":14923,"2278":15748,"2279":12102,"2280":15212,"2281":8671,"2282":16950,"2283":13734,"2284":15652,"2285":9369,"2286":17270,"2287":8855,"2288":4088,"2289":14096,"2290":8446,"2291":5455,"2292":578,"2293":16874,"2294":1732,"2295":8295,"2296":11824,"2297":6028,"2298":1347,"2299":18288,"2300":12642,"2301":15396,"2302":8724,"2303":15835,"2304":13681,"2305":10192,"2306":804,"2307":8397,"2308":2561,"2309":15766,"2310":5815,"2311":7449,"2312":6690,"2313":11034,"2314":16214,"2315":93,"2316":4340,"2317":11804,"2318":11109,"2319":18327,"2320":1528,"2321":3833,"2322":13217,"2323":3131,"2324":17999,"2325":928,"2326":17468,"2327":5473,"2328":17727,"2329":7041,"2330":7641,"2331":4573,"2332":730,"2333":9051,"2334":3995,"2335":14533,"2336":13093,"2337":9663,"2338":9922,"2339":8528,"2340":5047,"2341":8040,"2342":14793,"2343":18121,"2344":9929,"2345":3415,"2346":1828,"2347":8706,"2348":2215,"2349":8793,"2350":15766,"2351":5234,"2352":141,"2353":9237,"2354":18316,"2355":10603,"2356":18300,"2357":11815,"2358":3686,"2359":3565,"2360":8294,"2361":1143,"2362":17232,"2363":4392,"2364":10910,"2365":7075,"2366":11142,"2367":16592,"2368":1337,"2369":10268,"2370":14400,"2371":598,"2372":2830,"2373":6420,"2374":8713,"2375":15469,"2376":6323,"2377":13624,"2378":12817,"2379":17148,"2380":6974,"2381":1966,"2382":17461,"2383":3752,"2384":11833,"2385":9276,"2386":13061,"2387":7152,"2388":5024,"2389":65,"2390":6946,"2391":11534,"2392":7436,"2393":8421,"2394":12031,"2395":10871,"2396":6481,"2397":9628,"2398":5387,"2399":7635,"2400":7293,"2401":11081,"2402":13253,"2403":15014,"2404":5796,"2405":6348,"2406":8994,"2407":13192,"2408":7259,"2409":3697,"2410":5775,"2411":401,"2412":16136,"2413":8716,"2414":15175,"2415":13621,"2416":12008,"2417":6138,"2418":3203,"2419":14796,"2420":10109,"2421":11398,"2422":1337,"2423":8461,"2424":2116,"2425":14816,"2426":7327,"2427":3872,"2428":11231,"2429":10152,"2430":4461,"2431":14040,"2432":15955,"2433":11194,"2434":10430,"2435":7224,"2436":7267,"2437":4424,"2438":8640,"2439":11861,"2440":12099,"2441":7505,"2442":4011,"2443":3693,"2444":15124,"2445":9132,"2446":4021,"2447":15709,"2448":16033,"2449":12008,"2450":8511,"2451":9722,"2452":9303,"2453":6696,"2454":14088,"2455":11505,"2456":3661,"2457":12370,"2458":6762,"2459":6334,"2460":8619,"2461":12096,"2462":12019,"2463":11511,"2464":278,"2465":16509,"2466":14971,"2467":17119,"2468":11250,"2469":10271,"2470":12000,"2471":17921,"2472":10705,"2473":16346,"2474":16363,"2475":10674,"2476":3452,"2477":1587,"2478":3979,"2479":15990,"2480":8532,"2481":830,"2482":9437,"2483":501,"2484":13851,"2485":9064,"2486":883,"2487":17559,"2488":14003,"2489":18124,"2490":15369,"2491":1315,"2492":6927,"2493":13850,"2494":13559,"2495":16983,"2496":16965,"2497":14601,"2498":5157,"2499":4132,"2500":13201,"2501":455,"2502":12468,"2503":3977,"2504":17978,"2505":2267,"2506":740,"2507":5578,"2508":12150,"2509":11907,"2510":4733,"2511":15729,"2512":9048,"2513":16546,"2514":1880,"2515":9449,"2516":5511,"2517":5266,"2518":16999,"2519":3698,"2520":14694,"2521":11286,"2522":6761,"2523":14157,"2524":9929,"2525":6259,"2526":12088,"2527":15872,"2528":10920,"2529":1076,"2530":11169,"2531":317,"2532":11211,"2533":11149,"2534":17691,"2535":9670,"2536":6900,"2537":11632,"2538":2717,"2539":5540,"2540":503,"2541":3341,"2542":16951,"2543":8247,"2544":16921,"2545":701,"2546":3883,"2547":9247,"2548":16242,"2549":14686,"2550":18003,"2551":17846,"2552":5168,"2553":14051,"2554":1945,"2555":7023,"2556":12218,"2557":11092,"2558":12238,"2559":13301,"2560":10986,"2561":6522,"2562":14522,"2563":17992,"2564":15366,"2565":11432,"2566":16414,"2567":6424,"2568":13622,"2569":7891,"2570":1594,"2571":9004,"2572":2521,"2573":9893,"2574":15845,"2575":4167,"2576":5866,"2577":4330,"2578":9159,"2579":14481,"2580":4828,"2581":7882,"2582":3734,"2583":11235,"2584":1579,"2585":8822,"2586":14567,"2587":11780,"2588":6301,"2589":13709,"2590":246,"2591":10956,"2592":6332,"2593":12896,"2594":17355,"2595":9672,"2596":16836,"2597":11037,"2598":9012,"2599":10694,"2600":2680,"2601":4394,"2602":5032,"2603":2130,"2604":12727,"2605":7264,"2606":17921,"2607":16570,"2608":13322,"2609":447,"2610":2970,"2611":5272,"2612":5139,"2613":18320,"2614":256,"2615":18163,"2616":10083,"2617":4330,"2618":13160,"2619":16254,"2620":12227,"2621":2942,"2622":1308,"2623":16164,"2624":6211,"2625":2986,"2626":9706,"2627":5233,"2628":3229,"2629":13202,"2630":16155,"2631":18012,"2632":7211,"2633":3460,"2634":5963,"2635":1654,"2636":4622,"2637":6351,"2638":16580,"2639":15968,"2640":15996,"2641":16782,"2642":12393,"2643":18248,"2644":16951,"2645":7199,"2646":4424,"2647":1230,"2648":9189,"2649":16171,"2650":17064,"2651":14729,"2652":2676,"2653":10336,"2654":945,"2655":17078,"2656":9030,"2657":2101,"2658":8031,"2659":11602,"2660":17142,"2661":8528,"2662":8164,"2663":8104,"2664":13737,"2665":4650,"2666":3504,"2667":4162,"2668":10615,"2669":3876,"2670":7164,"2671":7410,"2672":7193,"2673":14542,"2674":2012,"2675":8853,"2676":9331,"2677":276,"2678":395,"2679":4949,"2680":14109,"2681":5893,"2682":711,"2683":7238,"2684":3069,"2685":876,"2686":12517,"2687":207,"2688":13264,"2689":12158,"2690":8068,"2691":15502,"2692":13150,"2693":5827,"2694":16889,"2695":13900,"2696":12580,"2697":7149,"2698":7364,"2699":9178,"2700":7841,"2701":16551,"2702":17494,"2703":5239,"2704":9187,"2705":17814,"2706":1213,"2707":13856,"2708":11238,"2709":15107,"2710":9768,"2711":13309,"2712":530,"2713":12171,"2714":8098,"2715":10538,"2716":11353,"2717":3545,"2718":4599,"2719":3039,"2720":10836,"2721":4042,"2722":5251,"2723":7400,"2724":13266,"2725":11876,"2726":5542,"2727":12790,"2728":4720,"2729":12699,"2730":14522,"2731":8692,"2732":1681,"2733":1505,"2734":17837,"2735":16265,"2736":18069,"2737":7818,"2738":17122,"2739":11718,"2740":8491,"2741":11165,"2742":9081,"2743":17148,"2744":13851,"2745":3465,"2746":12262,"2747":2672,"2748":12539,"2749":4160,"2750":16341,"2751":15154,"2752":19,"2753":3676,"2754":11518,"2755":1630,"2756":8041,"2757":11937,"2758":3922,"2759":12488,"2760":6313,"2761":8203,"2762":18202,"2763":2850,"2764":8025,"2765":5876,"2766":6047,"2767":3447,"2768":18255,"2769":12740,"2770":8253,"2771":15398,"2772":1396,"2773":13890,"2774":2578,"2775":490,"2776":3388,"2777":17729,"2778":1523,"2779":2223,"2780":14546,"2781":92,"2782":3347,"2783":2828,"2784":16590,"2785":9671,"2786":5493,"2787":1286,"2788":208,"2789":5838,"2790":9181,"2791":11044,"2792":6591,"2793":4549,"2794":13624,"2795":6259,"2796":14268,"2797":3013,"2798":2584,"2799":9966,"2800":9657,"2801":15305,"2802":10108,"2803":11806,"2804":5842,"2805":4911,"2806":15682,"2807":14294,"2808":7683,"2809":17742,"2810":1504,"2811":10309,"2812":3998,"2813":15551,"2814":16168,"2815":4564,"2816":14666,"2817":14087,"2818":11797,"2819":1108,"2820":7600,"2821":6214,"2822":16008,"2823":3793,"2824":7726,"2825":6461,"2826":2584,"2827":15990,"2828":13016,"2829":15419,"2830":14961,"2831":17440,"2832":2606,"2833":13714,"2834":6005,"2835":14487,"2836":5619,"2837":3537,"2838":17794,"2839":12292,"2840":12238,"2841":10085,"2842":12251,"2843":2842,"2844":12166,"2845":14072,"2846":12314,"2847":4241,"2848":378,"2849":15346,"2850":10813,"2851":17960,"2852":18282,"2853":11020,"2854":16770,"2855":15332,"2856":9997,"2857":7487,"2858":3276,"2859":8003,"2860":10035,"2861":18116,"2862":10066,"2863":14113,"2864":6143,"2865":2361,"2866":1876,"2867":13287,"2868":10871,"2869":4649,"2870":7118,"2871":16224,"2872":13600,"2873":10973,"2874":3201,"2875":1879,"2876":3384,"2877":12782,"2878":11737,"2879":2419,"2880":8911,"2881":14178,"2882":1079,"2883":15830,"2884":1746,"2885":8445,"2886":17497,"2887":5227,"2888":2746,"2889":9723,"2890":1856,"2891":7387,"2892":12864,"2893":2222,"2894":11762,"2895":9681,"2896":14588,"2897":16381,"2898":5832,"2899":997,"2900":103,"2901":16166,"2902":6677,"2903":12737,"2904":17343,"2905":6648,"2906":9071,"2907":6966,"2908":7867,"2909":12270,"2910":5791,"2911":502,"2912":17727,"2913":17455,"2914":18201,"2915":9692,"2916":16488,"2917":17491,"2918":3172,"2919":8619,"2920":13783,"2921":13961,"2922":2318,"2923":17800,"2924":1976,"2925":2090,"2926":5862,"2927":4886,"2928":13424,"2929":14000,"2930":363,"2931":3192,"2932":17282,"2933":3172,"2934":3861,"2935":6036,"2936":15065,"2937":12958,"2938":10374,"2939":14794,"2940":9779,"2941":11890,"2942":11431,"2943":7084,"2944":9244,"2945":9085,"2946":13695,"2947":16324,"2948":637,"2949":3481,"2950":13433,"2951":531,"2952":9033,"2953":15433,"2954":16953,"2955":1480,"2956":16433,"2957":14286,"2958":2402,"2959":15897,"2960":5691,"2961":9263,"2962":16853,"2963":18329,"2964":9422,"2965":10746,"2966":8301,"2967":14095,"2968":7253,"2969":15538,"2970":2342,"2971":5091,"2972":9726,"2973":16992,"2974":320,"2975":7708,"2976":10715,"2977":16657,"2978":4227,"2979":8344,"2980":16475,"2981":17266,"2982":16392,"2983":13410,"2984":8378,"2985":7247,"2986":4038,"2987":16652,"2988":820,"2989":739,"2990":1306,"2991":8193,"2992":15436,"2993":9414,"2994":5700,"2995":18206,"2996":9548,"2997":2578,"2998":9793,"2999":16489,"3000":8853,"3001":11766,"3002":12369,"3003":5608,"3004":2509,"3005":16956,"3006":8391,"3007":10354,"3008":4125,"3009":15095,"3010":15270,"3011":6378,"3012":17017,"3013":1052,"3014":4938,"3015":1257,"3016":1079,"3017":9035,"3018":3047,"3019":8314,"3020":7708,"3021":9069,"3022":2259,"3023":16426,"3024":6420,"3025":2335,"3026":6212,"3027":7353,"3028":2702,"3029":8688,"3030":441,"3031":1304,"3032":13131,"3033":12680,"3034":17963,"3035":7603,"3036":16051,"3037":10591,"3038":14376,"3039":14109,"3040":9714,"3041":6464,"3042":401,"3043":2600,"3044":7946,"3045":3010,"3046":13484,"3047":6681,"3048":4136,"3049":3423,"3050":1497,"3051":16155,"3052":3825,"3053":9672,"3054":13025,"3055":4251,"3056":17398,"3057":12828,"3058":6982,"3059":695,"3060":16929,"3061":2143,"3062":5972,"3063":5335,"3064":9476,"3065":12782,"3066":9177,"3067":11917,"3068":4749,"3069":13091,"3070":1371,"3071":16043,"3072":16634,"3073":9861,"3074":16080,"3075":10785,"3076":5825,"3077":7271,"3078":12676,"3079":13032,"3080":5603,"3081":7392,"3082":14719,"3083":3253,"3084":7918,"3085":5551,"3086":9425,"3087":10105,"3088":107,"3089":10296,"3090":17866,"3091":16456,"3092":86,"3093":16094,"3094":16199,"3095":1344,"3096":4570,"3097":10169,"3098":4539,"3099":15244,"3100":7593,"3101":11093,"3102":17274,"3103":13255,"3104":1550,"3105":18114,"3106":7193,"3107":16877,"3108":6407,"3109":17064,"3110":11173,"3111":272,"3112":2432,"3113":9618,"3114":17092,"3115":10050,"3116":8662,"3117":17846,"3118":3073,"3119":18056,"3120":12979,"3121":6200,"3122":4647,"3123":7982,"3124":3934,"3125":12058,"3126":13757,"3127":16783,"3128":17271,"3129":10130,"3130":12352,"3131":14299,"3132":17486,"3133":3542,"3134":6016,"3135":12366,"3136":11508,"3137":12418,"3138":13491,"3139":967,"3140":2371,"3141":11386,"3142":5471,"3143":3418,"3144":1614,"3145":2542,"3146":4352,"3147":1320,"3148":1482,"3149":14344,"3150":1784,"3151":12524,"3152":15980,"3153":18353,"3154":11690,"3155":10858,"3156":17562,"3157":12367,"3158":6345,"3159":15859,"3160":12247,"3161":6443,"3162":770,"3163":4015,"3164":990,"3165":9972,"3166":4111,"3167":5359,"3168":2918,"3169":17776,"3170":6979,"3171":8914,"3172":7769,"3173":14672,"3174":359,"3175":8756,"3176":17500,"3177":12059,"3178":17974,"3179":8288,"3180":6560,"3181":12555,"3182":2211,"3183":15977,"3184":8385,"3185":7294,"3186":16841,"3187":2002,"3188":2112,"3189":3504,"3190":10655,"3191":8851,"3192":10970,"3193":17335,"3194":12921,"3195":14639,"3196":12046,"3197":10543,"3198":3540,"3199":7208,"3200":10735,"3201":7053,"3202":2100,"3203":16898,"3204":5521,"3205":9327,"3206":5954,"3207":14016,"3208":10113,"3209":14301,"3210":7364,"3211":10848,"3212":15734,"3213":7704,"3214":16029,"3215":4702,"3216":11105,"3217":28,"3218":8152,"3219":10011,"3220":16112,"3221":17515,"3222":15173,"3223":10633,"3224":489,"3225":14631,"3226":4967,"3227":10974,"3228":7379,"3229":17589,"3230":14243,"3231":8991,"3232":4982,"3233":1766,"3234":3432,"3235":9499,"3236":7029,"3237":14512,"3238":10327,"3239":7575,"3240":10564,"3241":6745,"3242":17799,"3243":16942,"3244":990,"3245":2823,"3246":12363,"3247":12773,"3248":2548,"3249":12326,"3250":15475,"3251":15381,"3252":4073,"3253":11515,"3254":12566,"3255":16283,"3256":15167,"3257":15499,"3258":8646,"3259":15188,"3260":6559,"3261":14178,"3262":1531,"3263":10273,"3264":15281,"3265":396,"3266":6732,"3267":7768,"3268":14259,"3269":13494,"3270":13550,"3271":10948,"3272":8928,"3273":3903,"3274":12703,"3275":1709,"3276":4986,"3277":7063,"3278":17996,"3279":17957,"3280":4690,"3281":12753,"3282":12478,"3283":3695,"3284":12784,"3285":16065,"3286":11552,"3287":14685,"3288":14249,"3289":9204,"3290":3157,"3291":3554,"3292":17247,"3293":6551,"3294":11191,"3295":16407,"3296":1734,"3297":3462,"3298":10225,"3299":14502,"3300":11806,"3301":12993,"3302":17211,"3303":11203,"3304":11633,"3305":671,"3306":10549,"3307":11119,"3308":18147,"3309":6113,"3310":3716,"3311":8428,"3312":13750,"3313":14085,"3314":18247,"3315":9097,"3316":13805,"3317":9193,"3318":9731,"3319":15386,"3320":1822,"3321":5583,"3322":12959,"3323":2372,"3324":17314,"3325":50,"3326":2284,"3327":14774,"3328":17797,"3329":8988,"3330":9490,"3331":18170,"3332":11336,"3333":9674,"3334":1164,"3335":6400,"3336":8962,"3337":932,"3338":10626,"3339":17916,"3340":1583,"3341":6286,"3342":11630,"3343":6746,"3344":2066,"3345":418,"3346":1020,"3347":17762,"3348":10586,"3349":13656,"3350":7326,"3351":11841,"3352":1065,"3353":12779,"3354":18195,"3355":14004,"3356":6873,"3357":14476,"3358":6336,"3359":7586,"3360":14483,"3361":1098,"3362":4630,"3363":11188,"3364":9188,"3365":7742,"3366":15683,"3367":9705,"3368":9358,"3369":729,"3370":6925,"3371":10017,"3372":3778,"3373":17912,"3374":1065,"3375":14045,"3376":901,"3377":10607,"3378":7204,"3379":17409,"3380":7300,"3381":934,"3382":15732,"3383":18322,"3384":12671,"3385":661,"3386":7468,"3387":7442,"3388":16225,"3389":15430,"3390":12867,"3391":4340,"3392":6895,"3393":9082,"3394":4261,"3395":9605,"3396":1724,"3397":5434,"3398":14903,"3399":8979,"3400":3361,"3401":17936,"3402":17114,"3403":5958,"3404":895,"3405":10885,"3406":13584,"3407":14747,"3408":12913,"3409":2731,"3410":15335,"3411":3190,"3412":13400,"3413":10243,"3414":2999,"3415":16803,"3416":4977,"3417":8926,"3418":8077,"3419":1749,"3420":9857,"3421":12091,"3422":14615,"3423":2351,"3424":9567,"3425":11506,"3426":828,"3427":12229,"3428":11954,"3429":3857,"3430":15283,"3431":273,"3432":9998,"3433":4217,"3434":12941,"3435":13814,"3436":6043,"3437":4442,"3438":8939,"3439":14080,"3440":16600,"3441":17423,"3442":857,"3443":13310,"3444":3482,"3445":11412,"3446":14101,"3447":16366,"3448":8997,"3449":11587,"3450":551,"3451":2145,"3452":13199,"3453":11810,"3454":12810,"3455":2657,"3456":9605,"3457":9676,"3458":15243,"3459":14968,"3460":16670,"3461":16568,"3462":10132,"3463":15658,"3464":16642,"3465":17436,"3466":15017,"3467":8558,"3468":16269,"3469":13172,"3470":11033,"3471":132,"3472":9503,"3473":3972,"3474":619,"3475":7367,"3476":3991,"3477":9965,"3478":7857,"3479":10046,"3480":7434,"3481":1924,"3482":14575,"3483":11919,"3484":5712,"3485":14017,"3486":7220,"3487":7452,"3488":15043,"3489":6954,"3490":16509,"3491":15056,"3492":5409,"3493":1230,"3494":4360,"3495":14930,"3496":12995,"3497":18238,"3498":532,"3499":18286,"3500":9280,"3501":12268,"3502":15670,"3503":4548,"3504":7844,"3505":12928,"3506":16134,"3507":7801,"3508":14967,"3509":3211,"3510":11230,"3511":4328,"3512":10960,"3513":9749,"3514":12015,"3515":12654,"3516":4095,"3517":15165,"3518":1829,"3519":8605,"3520":7885,"3521":211,"3522":12437,"3523":4232,"3524":9997,"3525":13211,"3526":1069,"3527":14779,"3528":10902,"3529":7973,"3530":16408,"3531":2086,"3532":8535,"3533":7397,"3534":8620,"3535":6181,"3536":17298,"3537":18299,"3538":8244,"3539":1040,"3540":3020,"3541":11295,"3542":11191,"3543":17228,"3544":9240,"3545":5770,"3546":8920,"3547":13847,"3548":7897,"3549":268,"3550":11902,"3551":16143,"3552":17282,"3553":2894,"3554":15001,"3555":9066,"3556":3385,"3557":13437,"3558":15989,"3559":446,"3560":16369,"3561":17924,"3562":55,"3563":13619,"3564":5032,"3565":17794,"3566":8140,"3567":5077,"3568":7627,"3569":584,"3570":16030,"3571":12580,"3572":12552,"3573":13510,"3574":13513,"3575":5280,"3576":15839,"3577":4201,"3578":18095,"3579":17779,"3580":9618,"3581":4381,"3582":1952,"3583":9219,"3584":13273,"3585":16098,"3586":5654,"3587":5702,"3588":11424,"3589":10267,"3590":478,"3591":10425,"3592":17176,"3593":14974,"3594":15952,"3595":4556,"3596":7382,"3597":8214,"3598":14883,"3599":14716,"3600":3601,"3601":3097,"3602":2254,"3603":15007,"3604":17615,"3605":7151,"3606":10437,"3607":11656,"3608":13349,"3609":3400,"3610":12887,"3611":1307,"3612":10562,"3613":6655,"3614":86,"3615":4820,"3616":10393,"3617":6335,"3618":1259,"3619":5531,"3620":5861,"3621":7830,"3622":9653,"3623":16099,"3624":19,"3625":17088,"3626":15930,"3627":15634,"3628":3707,"3629":9449,"3630":1703,"3631":2519,"3632":16267,"3633":6676,"3634":14948,"3635":11366,"3636":15160,"3637":16031,"3638":8545,"3639":12658,"3640":8002,"3641":3440,"3642":3504,"3643":10762,"3644":7732,"3645":2083,"3646":1340,"3647":5184,"3648":2502,"3649":8152,"3650":9130,"3651":15149,"3652":10266,"3653":14137,"3654":15666,"3655":15919,"3656":4783,"3657":2567,"3658":16187,"3659":6005,"3660":7431,"3661":18045,"3662":8474,"3663":1592,"3664":14183,"3665":14425,"3666":11767,"3667":4879,"3668":11080,"3669":1999,"3670":4477,"3671":2139,"3672":1106,"3673":11567,"3674":7753,"3675":12318,"3676":8641,"3677":5748,"3678":6193,"3679":5811,"3680":774,"3681":15396,"3682":4959,"3683":13278,"3684":2171,"3685":12352,"3686":15056,"3687":2171,"3688":15417,"3689":8380,"3690":3715,"3691":14584,"3692":12781,"3693":17420,"3694":18143,"3695":2049,"3696":16392,"3697":14235,"3698":13629,"3699":18228,"3700":3814,"3701":12008,"3702":13763,"3703":355,"3704":8712,"3705":16970,"3706":3833,"3707":16982,"3708":15115,"3709":4170,"3710":8150,"3711":17404,"3712":15094,"3713":5099,"3714":8974,"3715":11728,"3716":8365,"3717":10225,"3718":7184,"3719":12672,"3720":2216,"3721":1081,"3722":14631,"3723":15299,"3724":4018,"3725":10146,"3726":10181,"3727":2019,"3728":15247,"3729":6897,"3730":12380,"3731":9087,"3732":12510,"3733":4610,"3734":11999,"3735":1277,"3736":15922,"3737":4160,"3738":4043,"3739":18071,"3740":18179,"3741":14616,"3742":1473,"3743":4891,"3744":11034,"3745":17559,"3746":5301,"3747":12147,"3748":15001,"3749":1279,"3750":7678,"3751":17613,"3752":4927,"3753":8922,"3754":9077,"3755":17129,"3756":12309,"3757":187,"3758":1983,"3759":11876,"3760":952,"3761":5542,"3762":11642,"3763":7322,"3764":9255,"3765":13940,"3766":6455,"3767":8425,"3768":1821,"3769":3149,"3770":13994,"3771":3507,"3772":17592,"3773":3997,"3774":7287,"3775":15805,"3776":6754,"3777":8544,"3778":452,"3779":15456,"3780":13090,"3781":1055,"3782":17229,"3783":15394,"3784":1739,"3785":5601,"3786":183,"3787":18038,"3788":5215,"3789":5604,"3790":4697,"3791":1189,"3792":2812,"3793":17180,"3794":3926,"3795":10057,"3796":15295,"3797":9452,"3798":8092,"3799":5134,"3800":6175,"3801":7096,"3802":8048,"3803":10243,"3804":3255,"3805":4110,"3806":7706,"3807":16380,"3808":12112,"3809":2564,"3810":15389,"3811":10566,"3812":17302,"3813":12240,"3814":1947,"3815":7989,"3816":8265,"3817":3790,"3818":17873,"3819":10956,"3820":183,"3821":8570,"3822":3283,"3823":2329,"3824":15039,"3825":2844,"3826":18271,"3827":6177,"3828":4987,"3829":2316,"3830":16614,"3831":5454,"3832":14736,"3833":15000,"3834":6441,"3835":5132,"3836":13641,"3837":14473,"3838":14927,"3839":685,"3840":7956,"3841":171,"3842":18066,"3843":14541,"3844":1485,"3845":5192,"3846":12875,"3847":13562,"3848":2527,"3849":3839,"3850":8353,"3851":17156,"3852":4798,"3853":12339,"3854":17298,"3855":17107,"3856":3960,"3857":10914,"3858":558,"3859":15998,"3860":7699,"3861":9378,"3862":11194,"3863":7725,"3864":13966,"3865":15825,"3866":14971,"3867":2259,"3868":14078,"3869":11139,"3870":2008,"3871":17935,"3872":55,"3873":6921,"3874":13132,"3875":17546,"3876":9264,"3877":18075,"3878":13456,"3879":9135,"3880":1422,"3881":622,"3882":18185,"3883":17069,"3884":119,"3885":17508,"3886":12428,"3887":12683,"3888":10727,"3889":454,"3890":10373,"3891":3551,"3892":14926,"3893":11738,"3894":9935,"3895":10744,"3896":7802,"3897":18011,"3898":3259,"3899":4384,"3900":6524,"3901":9709,"3902":2314,"3903":15661,"3904":14423,"3905":11438,"3906":10062,"3907":15965,"3908":11140,"3909":15444,"3910":16120,"3911":15957,"3912":12893,"3913":13980,"3914":2704,"3915":11748,"3916":821,"3917":9737,"3918":3987,"3919":14053,"3920":8107,"3921":13221,"3922":9676,"3923":5718,"3924":13257,"3925":5429,"3926":1923,"3927":16425,"3928":6419,"3929":12618,"3930":7606,"3931":11840,"3932":14682,"3933":8568,"3934":8242,"3935":9623,"3936":8932,"3937":1897,"3938":11479,"3939":4762,"3940":13759,"3941":10898,"3942":16542,"3943":6866,"3944":7783,"3945":10349,"3946":17923,"3947":7937,"3948":5975,"3949":9234,"3950":16882,"3951":13809,"3952":13234,"3953":8000,"3954":8477,"3955":15242,"3956":12967,"3957":10704,"3958":12445,"3959":6880,"3960":8038,"3961":6095,"3962":17538,"3963":11717,"3964":2849,"3965":6173,"3966":13438,"3967":10135,"3968":8958,"3969":7485,"3970":14315,"3971":16308,"3972":16642,"3973":116,"3974":3548,"3975":147,"3976":8284,"3977":9681,"3978":7111,"3979":128,"3980":9351,"3981":8627,"3982":8767,"3983":13189,"3984":16176,"3985":11857,"3986":14814,"3987":1810,"3988":4254,"3989":7079,"3990":3840,"3991":16718,"3992":12238,"3993":5796,"3994":10198,"3995":3049,"3996":13994,"3997":10525,"3998":17260,"3999":3277,"4000":13909,"4001":3095,"4002":5753,"4003":6320,"4004":1712,"4005":16472,"4006":8347,"4007":2659,"4008":5793,"4009":4451,"4010":15107,"4011":13607,"4012":17256,"4013":5210,"4014":5096,"4015":6911,"4016":4269,"4017":2832,"4018":10746,"4019":10420,"4020":3297,"4021":13096,"4022":5145,"4023":8788,"4024":1087,"4025":9577,"4026":4970,"4027":15344,"4028":14316,"4029":7332,"4030":15214,"4031":7698,"4032":12269,"4033":4852,"4034":17259,"4035":15356,"4036":5919,"4037":7987,"4038":1595,"4039":3365,"4040":12255,"4041":9922,"4042":10737,"4043":8887,"4044":12749,"4045":16101,"4046":7650,"4047":466,"4048":112,"4049":9256,"4050":16623,"4051":12742,"4052":13218,"4053":15808,"4054":4692,"4055":4768,"4056":13369,"4057":2173,"4058":1782,"4059":4882,"4060":8656,"4061":2285,"4062":10304,"4063":1849,"4064":17659,"4065":12803,"4066":10933,"4067":17312,"4068":11724,"4069":12433,"4070":14970,"4071":14788,"4072":8982,"4073":16779,"4074":396,"4075":2307,"4076":15535,"4077":12396,"4078":4122,"4079":6466,"4080":16982,"4081":3125,"4082":10460,"4083":16142,"4084":4121,"4085":2560,"4086":7962,"4087":6460,"4088":11399,"4089":9540,"4090":5088,"4091":13429,"4092":14085,"4093":4572,"4094":7348,"4095":17226,"4096":10340,"4097":12747,"4098":1340,"4099":5007,"4100":3640,"4101":3500,"4102":16394,"4103":7572,"4104":13257,"4105":5098,"4106":3542,"4107":13165,"4108":12349,"4109":14571,"4110":5792,"4111":17357,"4112":174,"4113":3077,"4114":17132,"4115":5819,"4116":3165,"4117":4054,"4118":16536,"4119":16753,"4120":4002,"4121":16155,"4122":13981,"4123":3776,"4124":10612,"4125":11138,"4126":3659,"4127":1967,"4128":897,"4129":5188,"4130":8988,"4131":6487,"4132":6711,"4133":14229,"4134":7133,"4135":1343,"4136":13885,"4137":12151,"4138":15416,"4139":17476,"4140":10295,"4141":10287,"4142":10924,"4143":15814,"4144":7553,"4145":4829,"4146":5246,"4147":12289,"4148":15743,"4149":788,"4150":4254,"4151":12561,"4152":4880,"4153":10164,"4154":12455,"4155":12584,"4156":9536,"4157":12933,"4158":9564,"4159":15164,"4160":8280,"4161":17112,"4162":12698,"4163":6385,"4164":806,"4165":11521,"4166":1735,"4167":15128,"4168":7795,"4169":11474,"4170":6310,"4171":3630,"4172":5229,"4173":15395,"4174":17913,"4175":224,"4176":10712,"4177":551,"4178":12805,"4179":4551,"4180":5522,"4181":3531,"4182":8519,"4183":7622,"4184":16151,"4185":12030,"4186":2531,"4187":18264,"4188":15409,"4189":1190,"4190":10787,"4191":8612,"4192":3861,"4193":3936,"4194":15111,"4195":1930,"4196":5599,"4197":724,"4198":384,"4199":9091,"4200":1081,"4201":14627,"4202":10581,"4203":5947,"4204":10970,"4205":5500,"4206":16216,"4207":1422,"4208":8988,"4209":10659,"4210":4411,"4211":11538,"4212":1015,"4213":17307,"4214":5807,"4215":7690,"4216":8652,"4217":2593,"4218":14740,"4219":12799,"4220":14791,"4221":1262,"4222":9693,"4223":17001,"4224":10991,"4225":1402,"4226":28,"4227":923,"4228":12575,"4229":1484,"4230":5943,"4231":9930,"4232":12223,"4233":665,"4234":7917,"4235":434,"4236":1121,"4237":5698,"4238":9959,"4239":6854,"4240":5261,"4241":647,"4242":15271,"4243":8479,"4244":10640,"4245":10853,"4246":6279,"4247":3951,"4248":18282,"4249":16347,"4250":1617,"4251":6295,"4252":58,"4253":13753,"4254":15226,"4255":11549,"4256":2804,"4257":10463,"4258":11548,"4259":5622,"4260":864,"4261":15408,"4262":12034,"4263":6890,"4264":6355,"4265":9573,"4266":15397,"4267":15878,"4268":7686,"4269":14673,"4270":6944,"4271":11661,"4272":15828,"4273":17995,"4274":4853,"4275":9259,"4276":6538,"4277":6235,"4278":11211,"4279":10703,"4280":17030,"4281":9334,"4282":8196,"4283":9771,"4284":14619,"4285":1965,"4286":950,"4287":6613,"4288":7414,"4289":2724,"4290":9912,"4291":18239,"4292":5716,"4293":2784,"4294":14821,"4295":13604,"4296":5648,"4297":6264,"4298":11155,"4299":13678,"4300":67,"4301":8609,"4302":8135,"4303":14150,"4304":16021,"4305":2742,"4306":2508,"4307":5507,"4308":13188,"4309":16649,"4310":6494,"4311":16654,"4312":16353,"4313":14341,"4314":5045,"4315":8007,"4316":14784,"4317":4910,"4318":2863,"4319":4995,"4320":7892,"4321":17329,"4322":506,"4323":12930,"4324":13228,"4325":13966,"4326":925,"4327":5137,"4328":12733,"4329":6554,"4330":13547,"4331":7791,"4332":2676,"4333":4683,"4334":3451,"4335":1982,"4336":7342,"4337":16340,"4338":17153,"4339":1729,"4340":18332,"4341":15822,"4342":16911,"4343":17714,"4344":8716,"4345":14372,"4346":9196,"4347":16969,"4348":17010,"4349":12325,"4350":14709,"4351":2098,"4352":16266,"4353":4558,"4354":17353,"4355":4172,"4356":6254,"4357":16226,"4358":14478,"4359":16969,"4360":10894,"4361":6850,"4362":564,"4363":1325,"4364":3587,"4365":378,"4366":3537,"4367":5102,"4368":14339,"4369":18265,"4370":11765,"4371":5815,"4372":2688,"4373":5391,"4374":17448,"4375":16839,"4376":528,"4377":5536,"4378":7886,"4379":17892,"4380":17756,"4381":16093,"4382":18049,"4383":13415,"4384":10611,"4385":438,"4386":7450,"4387":3438,"4388":13578,"4389":18207,"4390":17966,"4391":8209,"4392":3372,"4393":1543,"4394":3590,"4395":7241,"4396":7721,"4397":13025,"4398":461,"4399":255,"4400":15813,"4401":17778,"4402":1602,"4403":3390,"4404":10890,"4405":17290,"4406":15972,"4407":15603,"4408":5831,"4409":762,"4410":13877,"4411":11973,"4412":4593,"4413":18250,"4414":7452,"4415":15851,"4416":2263,"4417":17458,"4418":6233,"4419":10859,"4420":4564,"4421":1346,"4422":15449,"4423":1673,"4424":18203,"4425":15308,"4426":17374,"4427":8589,"4428":7244,"4429":1871,"4430":11348,"4431":1259,"4432":12990,"4433":17961,"4434":2142,"4435":1249,"4436":578,"4437":11106,"4438":16512,"4439":3204,"4440":6156,"4441":18045,"4442":5472,"4443":4943,"4444":3986,"4445":10376,"4446":15931,"4447":656,"4448":10748,"4449":11013,"4450":807,"4451":5329,"4452":6546,"4453":16968,"4454":9087,"4455":13360,"4456":11925,"4457":7016,"4458":2676,"4459":8486,"4460":1745,"4461":3087,"4462":17472,"4463":12378,"4464":3498,"4465":9894,"4466":3050,"4467":2643,"4468":2795,"4469":12672,"4470":11681,"4471":18110,"4472":12827,"4473":13417,"4474":15886,"4475":15252,"4476":11436,"4477":10148,"4478":9821,"4479":2992,"4480":13782,"4481":8377,"4482":10440,"4483":14634,"4484":14193,"4485":16398,"4486":7209,"4487":255,"4488":15144,"4489":14559,"4490":8357,"4491":3115,"4492":3116,"4493":8145,"4494":3341,"4495":18023,"4496":3389,"4497":3061,"4498":463,"4499":6817,"4500":2887,"4501":8843,"4502":1493,"4503":4801,"4504":14280,"4505":7843,"4506":14452,"4507":6607,"4508":105,"4509":11218,"4510":10346,"4511":5878,"4512":10025,"4513":3690,"4514":6198,"4515":7882,"4516":957,"4517":6434,"4518":6480,"4519":16060,"4520":10346,"4521":11246,"4522":15072,"4523":11321,"4524":2641,"4525":2459,"4526":9218,"4527":5917,"4528":4148,"4529":6550,"4530":10562,"4531":2662,"4532":5715,"4533":15827,"4534":14484,"4535":2092,"4536":11580,"4537":15764,"4538":8839,"4539":6678,"4540":13091,"4541":2090,"4542":10761,"4543":7526,"4544":11318,"4545":10104,"4546":17911,"4547":6150,"4548":8563,"4549":3611,"4550":3835,"4551":5186,"4552":2866,"4553":6372,"4554":13158,"4555":751,"4556":13822,"4557":14148,"4558":4317,"4559":21,"4560":6438,"4561":15990,"4562":947,"4563":6073,"4564":12372,"4565":3104,"4566":3191,"4567":12826,"4568":16121,"4569":15968,"4570":17772,"4571":398,"4572":8277,"4573":4359,"4574":2238,"4575":17030,"4576":5386,"4577":16373,"4578":15153,"4579":8130,"4580":14962,"4581":2347,"4582":16337,"4583":8455,"4584":13959,"4585":14558,"4586":296,"4587":15787,"4588":2756,"4589":12565,"4590":18091,"4591":14892,"4592":12451,"4593":15054,"4594":2478,"4595":16425,"4596":4743,"4597":6698,"4598":11711,"4599":2717,"4600":6283,"4601":12212,"4602":16851,"4603":17499,"4604":4887,"4605":15705,"4606":3381,"4607":5069,"4608":7118,"4609":652,"4610":10362,"4611":14506,"4612":10267,"4613":8612,"4614":13089,"4615":9901,"4616":8419,"4617":1083,"4618":3939,"4619":13887,"4620":17453,"4621":4548,"4622":2903,"4623":15499,"4624":10578,"4625":7766,"4626":9260,"4627":1205,"4628":12720,"4629":12115,"4630":2186,"4631":516,"4632":904,"4633":14610,"4634":15509,"4635":32,"4636":4703,"4637":4751,"4638":17308,"4639":544,"4640":9819,"4641":8305,"4642":9888,"4643":16198,"4644":1468,"4645":7801,"4646":15711,"4647":2310,"4648":812,"4649":2880,"4650":598,"4651":944,"4652":15390,"4653":2601,"4654":1122,"4655":12896,"4656":1273,"4657":3656,"4658":12667,"4659":15952,"4660":889,"4661":12091,"4662":16248,"4663":7777,"4664":14548,"4665":4459,"4666":3217,"4667":4248,"4668":4281,"4669":9227,"4670":13983,"4671":3527,"4672":4276,"4673":7188,"4674":12990,"4675":8743,"4676":12488,"4677":4829,"4678":1066,"4679":9122,"4680":11643,"4681":11994,"4682":1880,"4683":3600,"4684":12089,"4685":3473,"4686":1561,"4687":17777,"4688":13721,"4689":3197,"4690":7564,"4691":1569,"4692":12866,"4693":5076,"4694":4460,"4695":9677,"4696":8015,"4697":17633,"4698":13140,"4699":15988,"4700":13990,"4701":7554,"4702":9105,"4703":5813,"4704":17235,"4705":11152,"4706":8412,"4707":2743,"4708":18245,"4709":15205,"4710":2234,"4711":17390,"4712":10989,"4713":2651,"4714":12947,"4715":12807,"4716":14848,"4717":10345,"4718":18037,"4719":16844,"4720":15933,"4721":13460,"4722":15539,"4723":16076,"4724":709,"4725":15685,"4726":10931,"4727":337,"4728":1843,"4729":8684,"4730":15274,"4731":3411,"4732":7841,"4733":6532,"4734":5324,"4735":3841,"4736":12659,"4737":11455,"4738":14110,"4739":6334,"4740":10659,"4741":15465,"4742":5829,"4743":6693,"4744":6578,"4745":7818,"4746":2609,"4747":17788,"4748":4358,"4749":13794,"4750":18344,"4751":11972,"4752":9208,"4753":5827,"4754":4445,"4755":10068,"4756":1567,"4757":10907,"4758":18096,"4759":17982,"4760":7891,"4761":3767,"4762":13182,"4763":15491,"4764":8952,"4765":12935,"4766":2946,"4767":7192,"4768":1823,"4769":11631,"4770":16990,"4771":16830,"4772":12535,"4773":8623,"4774":10971,"4775":14331,"4776":14294,"4777":11370,"4778":4404,"4779":4525,"4780":6836,"4781":11451,"4782":12594,"4783":15833,"4784":4837,"4785":12638,"4786":4731,"4787":8383,"4788":12912,"4789":1811,"4790":6578,"4791":4267,"4792":5715,"4793":16498,"4794":14111,"4795":8812,"4796":9631,"4797":8537,"4798":14541,"4799":4349,"4800":11040,"4801":3084,"4802":17848,"4803":9031,"4804":5854,"4805":2807,"4806":17035,"4807":12010,"4808":16086,"4809":12444,"4810":7235,"4811":6680,"4812":108,"4813":4770,"4814":4166,"4815":797,"4816":13672,"4817":16410,"4818":1306,"4819":17550,"4820":9901,"4821":7858,"4822":3594,"4823":7288,"4824":5278,"4825":17640,"4826":4020,"4827":12530,"4828":16926,"4829":14288,"4830":4244,"4831":12887,"4832":4096,"4833":7870,"4834":12727,"4835":5607,"4836":17482,"4837":3094,"4838":8657,"4839":2521,"4840":11283,"4841":1713,"4842":18130,"4843":1397,"4844":6639,"4845":2160,"4846":3782,"4847":11592,"4848":10708,"4849":544,"4850":2952,"4851":9008,"4852":3353,"4853":15797,"4854":6722,"4855":15646,"4856":14846,"4857":12225,"4858":2445,"4859":11886,"4860":7944,"4861":15843,"4862":3388,"4863":2724,"4864":2470,"4865":4645,"4866":11618,"4867":11652,"4868":4872,"4869":1762,"4870":2779,"4871":7544,"4872":4742,"4873":14891,"4874":4255,"4875":12506,"4876":13634,"4877":12731,"4878":1662,"4879":240,"4880":13826,"4881":1889,"4882":1170,"4883":13194,"4884":11741,"4885":1337,"4886":4382,"4887":10642,"4888":7038,"4889":4173,"4890":2673,"4891":13343,"4892":4350,"4893":9282,"4894":16458,"4895":10495,"4896":14838,"4897":8043,"4898":16431,"4899":9620,"4900":18319,"4901":15151,"4902":16300,"4903":10527,"4904":3225,"4905":6807,"4906":14681,"4907":6555,"4908":9590,"4909":5588,"4910":12784,"4911":1518,"4912":3539,"4913":8759,"4914":7551,"4915":10601,"4916":7193,"4917":6641,"4918":9101,"4919":4261,"4920":13410,"4921":8373,"4922":4975,"4923":4345,"4924":5891,"4925":7928,"4926":52,"4927":10249,"4928":6287,"4929":15885,"4930":1677,"4931":15860,"4932":8900,"4933":17566,"4934":7313,"4935":2507,"4936":2265,"4937":14418,"4938":13573,"4939":5338,"4940":2860,"4941":9620,"4942":16117,"4943":3532,"4944":13270,"4945":7255,"4946":13576,"4947":6322,"4948":4848,"4949":12161,"4950":2061,"4951":12800,"4952":12697,"4953":8998,"4954":8221,"4955":7211,"4956":14413,"4957":15350,"4958":15754,"4959":12230,"4960":17601,"4961":5059,"4962":16781,"4963":12866,"4964":6146,"4965":14844,"4966":8433,"4967":1361,"4968":3136,"4969":14875,"4970":12800,"4971":13762,"4972":16752,"4973":740,"4974":3374,"4975":3045,"4976":15974,"4977":15974,"4978":10345,"4979":17887,"4980":6994,"4981":5038,"4982":512,"4983":1749,"4984":16428,"4985":5478,"4986":6124,"4987":13426,"4988":18159,"4989":1063,"4990":14375,"4991":5864,"4992":11991,"4993":15088,"4994":12388,"4995":3397,"4996":4046,"4997":11849,"4998":289,"4999":13321,"5000":8678,"5001":688,"5002":463,"5003":14839,"5004":17615,"5005":18225,"5006":1253,"5007":5520,"5008":4251,"5009":1894,"5010":4900,"5011":10529,"5012":15038,"5013":13256,"5014":5208,"5015":11344,"5016":5844,"5017":15075,"5018":2439,"5019":3519,"5020":8881,"5021":9798,"5022":11544,"5023":16182,"5024":16374,"5025":8438,"5026":3779,"5027":10418,"5028":2995,"5029":10435,"5030":9066,"5031":12820,"5032":7990,"5033":15401,"5034":6710,"5035":16777,"5036":2251,"5037":15948,"5038":12318,"5039":16980,"5040":7573,"5041":6807,"5042":16459,"5043":15611,"5044":8162,"5045":12036,"5046":18267,"5047":533,"5048":11584,"5049":13090,"5050":8943,"5051":10208,"5052":15211,"5053":7006,"5054":9146,"5055":1472,"5056":15842,"5057":6888,"5058":13564,"5059":16500,"5060":2798,"5061":2103,"5062":15090,"5063":9673,"5064":11818,"5065":4136,"5066":3410,"5067":1528,"5068":17447,"5069":13001,"5070":12709,"5071":2436,"5072":7009,"5073":3504,"5074":14099,"5075":4235,"5076":3376,"5077":9366,"5078":5495,"5079":2908,"5080":11736,"5081":12780,"5082":1927,"5083":6369,"5084":6454,"5085":12582,"5086":16356,"5087":14211,"5088":8102,"5089":3895,"5090":10168,"5091":15740,"5092":17440,"5093":13246,"5094":15089,"5095":18185,"5096":6204,"5097":1871,"5098":13960,"5099":10622,"5100":9296,"5101":16140,"5102":15190,"5103":2173,"5104":8701,"5105":5031,"5106":8303,"5107":1179,"5108":9171,"5109":17691,"5110":17649,"5111":4946,"5112":10486,"5113":10186,"5114":17927,"5115":17965,"5116":8732,"5117":4861,"5118":12407,"5119":13242,"5120":12172,"5121":327,"5122":2984,"5123":2372,"5124":12479,"5125":5791,"5126":14521,"5127":17509,"5128":3212,"5129":10809,"5130":9723,"5131":448,"5132":3590,"5133":8918,"5134":4450,"5135":16717,"5136":10994,"5137":11099,"5138":8593,"5139":15407,"5140":12661,"5141":10696,"5142":4091,"5143":6041,"5144":90,"5145":8125,"5146":13852,"5147":5843,"5148":15871,"5149":6529,"5150":5940,"5151":18074,"5152":16407,"5153":17092,"5154":16648,"5155":223,"5156":8219,"5157":6135,"5158":1047,"5159":15343,"5160":2461,"5161":11418,"5162":13652,"5163":2,"5164":10698,"5165":13154,"5166":2427,"5167":14145,"5168":15638,"5169":9681,"5170":12682,"5171":902,"5172":15369,"5173":6316,"5174":6847,"5175":17087,"5176":15543,"5177":13942,"5178":13507,"5179":16350,"5180":17897,"5181":12730,"5182":9035,"5183":3699,"5184":15465,"5185":17412,"5186":10822,"5187":11199,"5188":1593,"5189":8908,"5190":6292,"5191":5973,"5192":4803,"5193":3134,"5194":2839,"5195":3939,"5196":10038,"5197":9882,"5198":12549,"5199":11593,"5200":13384,"5201":10584,"5202":5865,"5203":387,"5204":7839,"5205":11531,"5206":8697,"5207":16924,"5208":17223,"5209":5314,"5210":11035,"5211":9773,"5212":2060,"5213":16049,"5214":8509,"5215":14263,"5216":8573,"5217":16738,"5218":12861,"5219":8813,"5220":6257,"5221":1982,"5222":8098,"5223":12719,"5224":11001,"5225":18087,"5226":15667,"5227":13027,"5228":8808,"5229":7622,"5230":6742,"5231":15155,"5232":4223,"5233":17862,"5234":15753,"5235":9871,"5236":16588,"5237":8514,"5238":2188,"5239":16394,"5240":17437,"5241":1813,"5242":4041,"5243":13586,"5244":13065,"5245":15601,"5246":1221,"5247":1058,"5248":14449,"5249":12357,"5250":9299,"5251":3076,"5252":2346,"5253":16041,"5254":16306,"5255":10510,"5256":1688,"5257":17843,"5258":3129,"5259":6078,"5260":15928,"5261":10253,"5262":14823,"5263":409,"5264":6148,"5265":16759,"5266":11007,"5267":1785,"5268":17790,"5269":17766,"5270":15468,"5271":4340,"5272":18356,"5273":6585,"5274":10468,"5275":2698,"5276":3032,"5277":7210,"5278":15132,"5279":10977,"5280":6813,"5281":1700,"5282":11136,"5283":8734,"5284":12539,"5285":4660,"5286":11286,"5287":17414,"5288":618,"5289":11786,"5290":11287,"5291":2829,"5292":3342,"5293":2002,"5294":1670,"5295":13341,"5296":1044,"5297":2851,"5298":5179,"5299":796,"5300":7940,"5301":5285,"5302":11352,"5303":4011,"5304":14728,"5305":9366,"5306":7094,"5307":6816,"5308":12765,"5309":15513,"5310":2615,"5311":17968,"5312":16815,"5313":12289,"5314":16401,"5315":17154,"5316":11388,"5317":954,"5318":6300,"5319":7772,"5320":11442,"5321":5688,"5322":10714,"5323":18001,"5324":5919,"5325":13106,"5326":14792,"5327":15650,"5328":17932,"5329":15342,"5330":15395,"5331":3025,"5332":17061,"5333":16311,"5334":1776,"5335":17045,"5336":6317,"5337":2972,"5338":8574,"5339":5538,"5340":11188,"5341":16387,"5342":961,"5343":16246,"5344":13279,"5345":11981,"5346":11077,"5347":9140,"5348":8025,"5349":5107,"5350":6470,"5351":9878,"5352":18032,"5353":16257,"5354":9052,"5355":10028,"5356":10592,"5357":2470,"5358":7182,"5359":14130,"5360":12113,"5361":9939,"5362":14536,"5363":6245,"5364":2086,"5365":9790,"5366":3952,"5367":2914,"5368":4697,"5369":10000,"5370":8698,"5371":11887,"5372":3041,"5373":7172,"5374":5356,"5375":12283,"5376":15124,"5377":11337,"5378":8979,"5379":7380,"5380":17070,"5381":2687,"5382":4798,"5383":7694,"5384":6814,"5385":9340,"5386":10804,"5387":11481,"5388":3314,"5389":14307,"5390":6084,"5391":1869,"5392":17189,"5393":4406,"5394":12668,"5395":10061,"5396":44,"5397":10054,"5398":2381,"5399":3097,"5400":219,"5401":15437,"5402":18070,"5403":17498,"5404":30,"5405":12993,"5406":14373,"5407":5810,"5408":5266,"5409":10798,"5410":3115,"5411":5459,"5412":208,"5413":5853,"5414":12971,"5415":5667,"5416":13788,"5417":12486,"5418":12737,"5419":5567,"5420":6465,"5421":12891,"5422":12457,"5423":13004,"5424":9729,"5425":6872,"5426":7085,"5427":13782,"5428":12763,"5429":14845,"5430":6015,"5431":521,"5432":17878,"5433":14534,"5434":4282,"5435":3178,"5436":4333,"5437":7587,"5438":1566,"5439":8903,"5440":14087,"5441":11742,"5442":7363,"5443":14267,"5444":13195,"5445":13138,"5446":3924,"5447":14485,"5448":3757,"5449":12184,"5450":7624,"5451":18194,"5452":6053,"5453":3979,"5454":12435,"5455":14427,"5456":5065,"5457":14873,"5458":10611,"5459":9849,"5460":11610,"5461":688,"5462":9561,"5463":14176,"5464":4701,"5465":16673,"5466":4138,"5467":11358,"5468":13462,"5469":8894,"5470":16521,"5471":17576,"5472":12912,"5473":15569,"5474":696,"5475":12941,"5476":17571,"5477":3670,"5478":18171,"5479":16000,"5480":9920,"5481":13929,"5482":9173,"5483":3597,"5484":10180,"5485":4070,"5486":12909,"5487":13385,"5488":2418,"5489":10302,"5490":14464,"5491":1724,"5492":13902,"5493":14981,"5494":13810,"5495":17499,"5496":906,"5497":16887,"5498":8796,"5499":7158,"5500":5242,"5501":12184,"5502":9076,"5503":12422,"5504":16128,"5505":11517,"5506":17786,"5507":2811,"5508":12642,"5509":4678,"5510":14833,"5511":16922,"5512":15685,"5513":17414,"5514":6017,"5515":338,"5516":15309,"5517":9794,"5518":6395,"5519":10991,"5520":8910,"5521":13440,"5522":9195,"5523":5657,"5524":12350,"5525":15534,"5526":2228,"5527":2966,"5528":11287,"5529":16029,"5530":17417,"5531":4899,"5532":11665,"5533":11058,"5534":8347,"5535":11856,"5536":15110,"5537":12015,"5538":13439,"5539":5262,"5540":11851,"5541":5644,"5542":16635,"5543":7612,"5544":1474,"5545":14512,"5546":2765,"5547":3666,"5548":17221,"5549":7938,"5550":14056,"5551":14983,"5552":2604,"5553":17166,"5554":15857,"5555":14314,"5556":6881,"5557":1226,"5558":2012,"5559":6973,"5560":971,"5561":3723,"5562":2370,"5563":12531,"5564":4370,"5565":1848,"5566":11823,"5567":18010,"5568":16901,"5569":8397,"5570":15806,"5571":1544,"5572":12890,"5573":12739,"5574":2978,"5575":11780,"5576":8550,"5577":1783,"5578":772,"5579":10272,"5580":16191,"5581":15820,"5582":6770,"5583":4930,"5584":8393,"5585":3274,"5586":11799,"5587":5829,"5588":2759,"5589":257,"5590":2838,"5591":2112,"5592":5178,"5593":9105,"5594":13691,"5595":5796,"5596":5192,"5597":9131,"5598":14814,"5599":11874,"5600":5253,"5601":3148,"5602":3817,"5603":3379,"5604":13403,"5605":10827,"5606":10361,"5607":2609,"5608":7934,"5609":8042,"5610":8362,"5611":13053,"5612":6263,"5613":5600,"5614":13708,"5615":9861,"5616":15413,"5617":5910,"5618":16679,"5619":13939,"5620":1141,"5621":3518,"5622":2898,"5623":944,"5624":10386,"5625":17586,"5626":8700,"5627":1449,"5628":7118,"5629":13788,"5630":7390,"5631":8364,"5632":15854,"5633":8460,"5634":17481,"5635":14375,"5636":9766,"5637":1926,"5638":12141,"5639":7352,"5640":13085,"5641":10203,"5642":14022,"5643":16651,"5644":8534,"5645":14703,"5646":17171,"5647":17823,"5648":6227,"5649":10477,"5650":11368,"5651":12451,"5652":601,"5653":2571,"5654":15130,"5655":17018,"5656":17713,"5657":14572,"5658":6849,"5659":4546,"5660":12205,"5661":9594,"5662":295,"5663":10182,"5664":8952,"5665":7938,"5666":3766,"5667":17979,"5668":5367,"5669":10760,"5670":6531,"5671":16348,"5672":2827,"5673":527,"5674":13011,"5675":16329,"5676":12945,"5677":7073,"5678":2874,"5679":14395,"5680":14612,"5681":8506,"5682":17779,"5683":15182,"5684":9485,"5685":4704,"5686":3850,"5687":16995,"5688":4397,"5689":6434,"5690":15705,"5691":13941,"5692":3941,"5693":15121,"5694":13289,"5695":13540,"5696":171,"5697":14562,"5698":3195,"5699":16945,"5700":1392,"5701":3036,"5702":5512,"5703":3188,"5704":4643,"5705":1941,"5706":16162,"5707":1734,"5708":4366,"5709":10647,"5710":1707,"5711":4818,"5712":6814,"5713":7330,"5714":6297,"5715":17444,"5716":17947,"5717":18277,"5718":3629,"5719":8072,"5720":7455,"5721":9216,"5722":13304,"5723":8376,"5724":1201,"5725":13243,"5726":6506,"5727":16969,"5728":9893,"5729":940,"5730":13996,"5731":10010,"5732":2057,"5733":17370,"5734":4654,"5735":17446,"5736":14598,"5737":17484,"5738":13529,"5739":18276,"5740":3582,"5741":9163,"5742":998,"5743":9269,"5744":3517,"5745":15841,"5746":11588,"5747":14286,"5748":10954,"5749":10248,"5750":18260,"5751":12722,"5752":17545,"5753":42,"5754":11302,"5755":16104,"5756":2306,"5757":8066,"5758":7830,"5759":15289,"5760":8069,"5761":4525,"5762":17668,"5763":11921,"5764":9265,"5765":12692,"5766":16531,"5767":16345,"5768":12115,"5769":3526,"5770":3635,"5771":762,"5772":5362,"5773":9278,"5774":688,"5775":10053,"5776":5295,"5777":2434,"5778":8694,"5779":6003,"5780":16704,"5781":13934,"5782":257,"5783":16225,"5784":14220,"5785":8798,"5786":12649,"5787":17257,"5788":6104,"5789":4945,"5790":2607,"5791":2502,"5792":16036,"5793":3347,"5794":15108,"5795":15236,"5796":15227,"5797":13436,"5798":10928,"5799":10952,"5800":17557,"5801":2001,"5802":6937,"5803":6132,"5804":3960,"5805":1339,"5806":4000,"5807":6609,"5808":7961,"5809":1133,"5810":2157,"5811":6777,"5812":3809,"5813":4323,"5814":17018,"5815":16413,"5816":17937,"5817":16228,"5818":9774,"5819":5776,"5820":7003,"5821":12259,"5822":4477,"5823":6136,"5824":6813,"5825":4825,"5826":15107,"5827":1295,"5828":2099,"5829":16420,"5830":14395,"5831":10475,"5832":8482,"5833":13138,"5834":10755,"5835":8848,"5836":8575,"5837":10882,"5838":552,"5839":1204,"5840":9477,"5841":17355,"5842":7414,"5843":8929,"5844":7747,"5845":14751,"5846":668,"5847":14797,"5848":12787,"5849":17472,"5850":16608,"5851":1336,"5852":7881,"5853":11742,"5854":508,"5855":13702,"5856":522,"5857":9084,"5858":17387,"5859":2101,"5860":11841,"5861":16124,"5862":11077,"5863":17222,"5864":16567,"5865":8586,"5866":8109,"5867":12402,"5868":5724,"5869":6,"5870":15093,"5871":14647,"5872":13269,"5873":14224,"5874":187,"5875":6416,"5876":15280,"5877":13110,"5878":6043,"5879":9996,"5880":10197,"5881":13164,"5882":8708,"5883":10272,"5884":14844,"5885":11318,"5886":5026,"5887":137,"5888":16102,"5889":17207,"5890":18210,"5891":3046,"5892":14567,"5893":10084,"5894":13143,"5895":16507,"5896":7602,"5897":16969,"5898":14954,"5899":415,"5900":5738,"5901":10791,"5902":1026,"5903":17769,"5904":15462,"5905":9864,"5906":11796,"5907":13009,"5908":6069,"5909":12591,"5910":13414,"5911":12237,"5912":10082,"5913":10470,"5914":17518,"5915":4540,"5916":1602,"5917":8845,"5918":7055,"5919":4447,"5920":12542,"5921":5917,"5922":9833,"5923":823,"5924":14983,"5925":16835,"5926":9531,"5927":120,"5928":3503,"5929":10207,"5930":7753,"5931":11236,"5932":3101,"5933":6886,"5934":446,"5935":7233,"5936":16671,"5937":3804,"5938":16565,"5939":7493,"5940":1588,"5941":8074,"5942":10247,"5943":3853,"5944":17742,"5945":2634,"5946":13861,"5947":1714,"5948":9203,"5949":3680,"5950":1130,"5951":14661,"5952":16536,"5953":15256,"5954":5693,"5955":13824,"5956":3094,"5957":8577,"5958":4871,"5959":9633,"5960":8592,"5961":11375,"5962":15700,"5963":4297,"5964":12560,"5965":2417,"5966":9610,"5967":15926,"5968":17197,"5969":3363,"5970":2989,"5971":12061,"5972":2152,"5973":2334,"5974":676,"5975":14970,"5976":17040,"5977":6941,"5978":1393,"5979":10163,"5980":3245,"5981":17524,"5982":10458,"5983":8702,"5984":13033,"5985":3198,"5986":8146,"5987":18256,"5988":2216,"5989":8366,"5990":14147,"5991":6154,"5992":15866,"5993":8638,"5994":7741,"5995":16401,"5996":7012,"5997":1899,"5998":4792,"5999":14786,"6000":17644,"6001":7887,"6002":43,"6003":60,"6004":14832,"6005":15042,"6006":16808,"6007":4963,"6008":309,"6009":8930,"6010":2354,"6011":8226,"6012":17013,"6013":18245,"6014":18199,"6015":4566,"6016":1659,"6017":5520,"6018":4110,"6019":16801,"6020":14680,"6021":16001,"6022":15951,"6023":12274,"6024":12172,"6025":6630,"6026":7221,"6027":10868,"6028":17849,"6029":2847,"6030":996,"6031":1508,"6032":16859,"6033":13777,"6034":10177,"6035":15624,"6036":13775,"6037":17813,"6038":9053,"6039":6297,"6040":10039,"6041":18234,"6042":3362,"6043":4138,"6044":1833,"6045":7192,"6046":18006,"6047":11242,"6048":3050,"6049":9777,"6050":4198,"6051":2337,"6052":13661,"6053":5874,"6054":10659,"6055":15847,"6056":3,"6057":1911,"6058":16408,"6059":10505,"6060":1768,"6061":9801,"6062":15831,"6063":6390,"6064":6758,"6065":8303,"6066":15903,"6067":4155,"6068":8147,"6069":11858,"6070":15829,"6071":2879,"6072":9865,"6073":14260,"6074":6956,"6075":2408,"6076":9024,"6077":16568,"6078":1095,"6079":3161,"6080":15189,"6081":3657,"6082":3280,"6083":16193,"6084":9113,"6085":17333,"6086":9509,"6087":5590,"6088":14941,"6089":15964,"6090":13196,"6091":8236,"6092":17127,"6093":12641,"6094":11769,"6095":3123,"6096":8161,"6097":6402,"6098":746,"6099":16281,"6100":15240,"6101":381,"6102":8812,"6103":10662,"6104":2612,"6105":16818,"6106":14066,"6107":10949,"6108":4512,"6109":2588,"6110":13318,"6111":11879,"6112":1030,"6113":12108,"6114":6251,"6115":16053,"6116":12631,"6117":10978,"6118":10020,"6119":5518,"6120":316,"6121":3538,"6122":9163,"6123":5511,"6124":15218,"6125":3273,"6126":16534,"6127":12373,"6128":15377,"6129":7467,"6130":14943,"6131":7906,"6132":8408,"6133":263,"6134":13483,"6135":2440,"6136":17248,"6137":2624,"6138":16010,"6139":16362,"6140":11085,"6141":13774,"6142":11029,"6143":11541,"6144":16794,"6145":11389,"6146":4271,"6147":17449,"6148":15156,"6149":5557,"6150":13134,"6151":14588,"6152":11001,"6153":14467,"6154":12863,"6155":10465,"6156":2837,"6157":9691,"6158":10842,"6159":5769,"6160":14738,"6161":8544,"6162":15177,"6163":16626,"6164":16082,"6165":18329,"6166":16369,"6167":7073,"6168":16021,"6169":11597,"6170":4598,"6171":13300,"6172":4332,"6173":3040,"6174":12852,"6175":900,"6176":7218,"6177":16368,"6178":11601,"6179":14985,"6180":1882,"6181":9518,"6182":2395,"6183":8060,"6184":7782,"6185":13565,"6186":6203,"6187":2372,"6188":8640,"6189":15240,"6190":15019,"6191":7844,"6192":14434,"6193":7982,"6194":655,"6195":14653,"6196":15198,"6197":16629,"6198":14248,"6199":5246,"6200":6923,"6201":2414,"6202":17470,"6203":7186,"6204":15837,"6205":16786,"6206":6380,"6207":924,"6208":17432,"6209":5847,"6210":9703,"6211":934,"6212":8716,"6213":1651,"6214":11521,"6215":3339,"6216":1834,"6217":220,"6218":6450,"6219":4036,"6220":15944,"6221":13595,"6222":10122,"6223":4523,"6224":12638,"6225":10836,"6226":1206,"6227":1777,"6228":15137,"6229":17430,"6230":10330,"6231":16212,"6232":882,"6233":9429,"6234":564,"6235":3927,"6236":8052,"6237":7282,"6238":13193,"6239":17101,"6240":4624,"6241":7199,"6242":11541,"6243":15348,"6244":17753,"6245":1243,"6246":16917,"6247":9197,"6248":17360,"6249":12467,"6250":4822,"6251":3029,"6252":13850,"6253":13403,"6254":2822,"6255":2909,"6256":8246,"6257":8010,"6258":137,"6259":8873,"6260":7273,"6261":6308,"6262":8647,"6263":11859,"6264":5598,"6265":17244,"6266":11084,"6267":15017,"6268":13409,"6269":2750,"6270":5716,"6271":4684,"6272":13337,"6273":15900,"6274":7239,"6275":10597,"6276":16069,"6277":10333,"6278":11587,"6279":8045,"6280":17632,"6281":9551,"6282":7555,"6283":4297,"6284":11686,"6285":10288,"6286":16539,"6287":4737,"6288":16421,"6289":3474,"6290":5716,"6291":3319,"6292":7612,"6293":17846,"6294":7103,"6295":7170,"6296":9585,"6297":17828,"6298":5359,"6299":5285,"6300":1546,"6301":2603,"6302":3897,"6303":9685,"6304":5503,"6305":6399,"6306":12298,"6307":7398,"6308":17754,"6309":11920,"6310":613,"6311":17301,"6312":9718,"6313":32,"6314":17185,"6315":14154,"6316":14107,"6317":7728,"6318":2535,"6319":14239,"6320":12689,"6321":11272,"6322":11978,"6323":1512,"6324":16864,"6325":1173,"6326":7962,"6327":4474,"6328":10753,"6329":4715,"6330":15017,"6331":16896,"6332":17991,"6333":15483,"6334":8372,"6335":12998,"6336":16869,"6337":7326,"6338":6292,"6339":4753,"6340":3650,"6341":3874,"6342":10873,"6343":6955,"6344":8668,"6345":16691,"6346":10233,"6347":1107,"6348":17866,"6349":16676,"6350":4437,"6351":13313,"6352":13505,"6353":8576,"6354":17792,"6355":5306,"6356":13490,"6357":2624,"6358":3396,"6359":16244,"6360":5432,"6361":14182,"6362":16868,"6363":15383,"6364":2839,"6365":4155,"6366":9286,"6367":13355,"6368":11135,"6369":4505,"6370":14357,"6371":8332,"6372":9227,"6373":1133,"6374":1203,"6375":14564,"6376":13505,"6377":5360,"6378":7023,"6379":11643,"6380":12163,"6381":14804,"6382":16598,"6383":2753,"6384":3845,"6385":11999,"6386":7183,"6387":3239,"6388":1803,"6389":12272,"6390":6388,"6391":1198,"6392":6642,"6393":3329,"6394":14477,"6395":8687,"6396":13163,"6397":2000,"6398":1355,"6399":14800,"6400":3333,"6401":5292,"6402":1010,"6403":5200,"6404":6207,"6405":11741,"6406":11598,"6407":4885,"6408":16980,"6409":4462,"6410":4435,"6411":17534,"6412":6432,"6413":6418,"6414":14580,"6415":17750,"6416":16012,"6417":248,"6418":4806,"6419":11912,"6420":2799,"6421":17626,"6422":11399,"6423":576,"6424":2023,"6425":8565,"6426":7193,"6427":5822,"6428":12126,"6429":17829,"6430":10538,"6431":7280,"6432":1956,"6433":10669,"6434":12432,"6435":821,"6436":13733,"6437":1968,"6438":15155,"6439":6112,"6440":10007,"6441":13646,"6442":1082,"6443":17788,"6444":18300,"6445":8857,"6446":1834,"6447":7139,"6448":3924,"6449":8454,"6450":16840,"6451":15407,"6452":702,"6453":5074,"6454":8971,"6455":4465,"6456":4793,"6457":15561,"6458":18323,"6459":7857,"6460":17439,"6461":16852,"6462":9154,"6463":16760,"6464":15132,"6465":18111,"6466":2687,"6467":2557,"6468":8574,"6469":13903,"6470":16212,"6471":11371,"6472":16150,"6473":17773,"6474":12745,"6475":5745,"6476":6231,"6477":15504,"6478":4288,"6479":12964,"6480":9726,"6481":3879,"6482":3472,"6483":17797,"6484":3144,"6485":17957,"6486":13170,"6487":17468,"6488":12011,"6489":2430,"6490":2452,"6491":8528,"6492":8872,"6493":10177,"6494":8561,"6495":2641,"6496":15061,"6497":10273,"6498":2133,"6499":9856,"6500":17012,"6501":12996,"6502":10488,"6503":3671,"6504":101,"6505":378,"6506":11729,"6507":8174,"6508":12653,"6509":8916,"6510":7938,"6511":17933,"6512":16302,"6513":7237,"6514":3747,"6515":16946,"6516":11913,"6517":6109,"6518":687,"6519":3741,"6520":2654,"6521":16920,"6522":8295,"6523":6264,"6524":17014,"6525":10448,"6526":6980,"6527":9066,"6528":12545,"6529":13830,"6530":723,"6531":4346,"6532":5229,"6533":14328,"6534":4601,"6535":1834,"6536":13440,"6537":6939,"6538":2964,"6539":10142,"6540":9006,"6541":6299,"6542":15649,"6543":9810,"6544":6555,"6545":9081,"6546":5239,"6547":3035,"6548":15690,"6549":8363,"6550":16686,"6551":4754,"6552":14692,"6553":15771,"6554":3840,"6555":1628,"6556":9411,"6557":1303,"6558":16582,"6559":15369,"6560":10166,"6561":7833,"6562":6299,"6563":3418,"6564":10881,"6565":9799,"6566":4203,"6567":11085,"6568":15909,"6569":5412,"6570":15514,"6571":15965,"6572":14109,"6573":5869,"6574":107,"6575":5984,"6576":15513,"6577":2824,"6578":16409,"6579":9748,"6580":3150,"6581":17941,"6582":10269,"6583":3682,"6584":5780,"6585":9531,"6586":10982,"6587":8836,"6588":12965,"6589":12832,"6590":10587,"6591":3225,"6592":8004,"6593":12228,"6594":8144,"6595":10461,"6596":13779,"6597":10964,"6598":12672,"6599":13993,"6600":17348,"6601":13760,"6602":12135,"6603":9424,"6604":16784,"6605":14365,"6606":7166,"6607":3106,"6608":13650,"6609":14496,"6610":3918,"6611":7238,"6612":6513,"6613":11749,"6614":7965,"6615":7524,"6616":11592,"6617":2905,"6618":10135,"6619":1423,"6620":10689,"6621":3116,"6622":6861,"6623":4448,"6624":11632,"6625":14697,"6626":1574,"6627":8946,"6628":6961,"6629":14357,"6630":3826,"6631":3294,"6632":8629,"6633":6931,"6634":14845,"6635":10345,"6636":2307,"6637":14364,"6638":789,"6639":2947,"6640":11065,"6641":7272,"6642":8718,"6643":10838,"6644":8736,"6645":7121,"6646":12267,"6647":14959,"6648":6133,"6649":2088,"6650":16775,"6651":8,"6652":16603,"6653":15016,"6654":12873,"6655":526,"6656":56,"6657":9558,"6658":8213,"6659":5689,"6660":13195,"6661":4302,"6662":18216,"6663":1575,"6664":9266,"6665":9626,"6666":14609,"6667":12869,"6668":12938,"6669":1812,"6670":14042,"6671":2484,"6672":14745,"6673":9625,"6674":5146,"6675":7470,"6676":16135,"6677":12648,"6678":17711,"6679":10407,"6680":10862,"6681":12214,"6682":6973,"6683":14359,"6684":14780,"6685":7299,"6686":1794,"6687":6295,"6688":12022,"6689":17525,"6690":3567,"6691":10250,"6692":7582,"6693":7006,"6694":3877,"6695":5074,"6696":14778,"6697":3814,"6698":4098,"6699":4007,"6700":16527,"6701":1021,"6702":14939,"6703":15935,"6704":16229,"6705":11823,"6706":16038,"6707":14510,"6708":3723,"6709":5176,"6710":11121,"6711":4762,"6712":3602,"6713":6117,"6714":9379,"6715":13916,"6716":4316,"6717":12615,"6718":4853,"6719":12925,"6720":16652,"6721":14942,"6722":15215,"6723":17362,"6724":15719,"6725":10872,"6726":9744,"6727":16385,"6728":3480,"6729":12958,"6730":2256,"6731":18347,"6732":8354,"6733":2562,"6734":7820,"6735":5314,"6736":14538,"6737":17103,"6738":12456,"6739":5125,"6740":3558,"6741":17845,"6742":4901,"6743":2690,"6744":1154,"6745":17978,"6746":6300,"6747":16693,"6748":281,"6749":9703,"6750":10838,"6751":14972,"6752":16521,"6753":705,"6754":6455,"6755":3608,"6756":10048,"6757":11806,"6758":3135,"6759":4573,"6760":12858,"6761":1364,"6762":10754,"6763":8786,"6764":15821,"6765":1474,"6766":13027,"6767":14100,"6768":7955,"6769":18091,"6770":12206,"6771":10369,"6772":18087,"6773":11518,"6774":12376,"6775":434,"6776":17225,"6777":6852,"6778":12549,"6779":17281,"6780":3263,"6781":17317,"6782":8555,"6783":12469,"6784":2922,"6785":12578,"6786":10221,"6787":9035,"6788":82,"6789":5454,"6790":13206,"6791":1974,"6792":2782,"6793":11696,"6794":17731,"6795":11123,"6796":13136,"6797":7844,"6798":831,"6799":16924,"6800":16034,"6801":14185,"6802":3125,"6803":15705,"6804":10590,"6805":12545,"6806":12131,"6807":14038,"6808":7024,"6809":4527,"6810":12058,"6811":5482,"6812":16627,"6813":2682,"6814":10103,"6815":1885,"6816":5662,"6817":5648,"6818":6965,"6819":15649,"6820":16271,"6821":2225,"6822":12777,"6823":8062,"6824":18360,"6825":12319,"6826":14126,"6827":5761,"6828":16730,"6829":45,"6830":14467,"6831":12188,"6832":5857,"6833":4827,"6834":17243,"6835":3782,"6836":6589,"6837":1833,"6838":6903,"6839":10482,"6840":2719,"6841":15510,"6842":3618,"6843":11509,"6844":8071,"6845":10319,"6846":1657,"6847":11145,"6848":1099,"6849":7628,"6850":7471,"6851":3950,"6852":2887,"6853":11033,"6854":1725,"6855":9898,"6856":10981,"6857":4012,"6858":14182,"6859":5267,"6860":6576,"6861":9784,"6862":15968,"6863":17143,"6864":13566,"6865":2046,"6866":1963,"6867":10345,"6868":1810,"6869":5455,"6870":13486,"6871":9304,"6872":2929,"6873":7583,"6874":18352,"6875":2689,"6876":13379,"6877":11055,"6878":1551,"6879":11012,"6880":6113,"6881":12647,"6882":5307,"6883":9042,"6884":9426,"6885":7986,"6886":13424,"6887":764,"6888":8982,"6889":17700,"6890":17861,"6891":6068,"6892":13316,"6893":522,"6894":16593,"6895":2596,"6896":3144,"6897":16814,"6898":6289,"6899":14171,"6900":3701,"6901":17410,"6902":6324,"6903":8568,"6904":9479,"6905":73,"6906":9087,"6907":4957,"6908":1141,"6909":7750,"6910":11436,"6911":4324,"6912":8223,"6913":16672,"6914":5000,"6915":14654,"6916":4091,"6917":1292,"6918":232,"6919":14606,"6920":11647,"6921":465,"6922":1026,"6923":6585,"6924":14309,"6925":16058,"6926":11510,"6927":9472,"6928":18171,"6929":7550,"6930":10859,"6931":16291,"6932":8023,"6933":193,"6934":4716,"6935":15843,"6936":6114,"6937":9979,"6938":5191,"6939":5587,"6940":682,"6941":7406,"6942":17643,"6943":12810,"6944":17287,"6945":7525,"6946":7738,"6947":8043,"6948":7900,"6949":9488,"6950":1398,"6951":4159,"6952":1066,"6953":9021,"6954":2422,"6955":12646,"6956":7486,"6957":10889,"6958":16431,"6959":17906,"6960":10686,"6961":2434,"6962":5721,"6963":635,"6964":3094,"6965":1218,"6966":6860,"6967":1000,"6968":5232,"6969":2715,"6970":8438,"6971":16035,"6972":10594,"6973":15415,"6974":12598,"6975":18014,"6976":4291,"6977":8076,"6978":2284,"6979":15212,"6980":8291,"6981":14722,"6982":16275,"6983":13390,"6984":6277,"6985":9524,"6986":10432,"6987":9783,"6988":12601,"6989":7071,"6990":6240,"6991":14764,"6992":5184,"6993":9538,"6994":3219,"6995":7090,"6996":5954,"6997":15921,"6998":15006,"6999":6179,"7000":7382,"7001":14395,"7002":7170,"7003":15236,"7004":15408,"7005":3336,"7006":9962,"7007":376,"7008":13135,"7009":6864,"7010":14138,"7011":365,"7012":16939,"7013":5445,"7014":16285,"7015":6249,"7016":11603,"7017":12192,"7018":13124,"7019":7049,"7020":504,"7021":16425,"7022":13078,"7023":4965,"7024":7735,"7025":1991,"7026":3327,"7027":8299,"7028":17326,"7029":2063,"7030":7406,"7031":1898,"7032":8284,"7033":10551,"7034":8437,"7035":15428,"7036":16788,"7037":9609,"7038":2305,"7039":5744,"7040":18272,"7041":15832,"7042":13027,"7043":6359,"7044":9395,"7045":9677,"7046":11224,"7047":2140,"7048":9939,"7049":1292,"7050":8987,"7051":2358,"7052":10396,"7053":6284,"7054":5997,"7055":992,"7056":2077,"7057":12111,"7058":17413,"7059":9552,"7060":4007,"7061":10990,"7062":14124,"7063":2551,"7064":17336,"7065":6508,"7066":5400,"7067":1146,"7068":11749,"7069":1118,"7070":1775,"7071":12007,"7072":18215,"7073":15563,"7074":18344,"7075":4480,"7076":3488,"7077":6676,"7078":11318,"7079":11595,"7080":2075,"7081":11792,"7082":6182,"7083":8355,"7084":4772,"7085":7974,"7086":1140,"7087":1376,"7088":17210,"7089":4534,"7090":4790,"7091":8524,"7092":14181,"7093":7624,"7094":4304,"7095":2112,"7096":10173,"7097":630,"7098":14166,"7099":1810,"7100":6972,"7101":3108,"7102":12953,"7103":5831,"7104":4333,"7105":2228,"7106":5970,"7107":2048,"7108":64,"7109":3345,"7110":5408,"7111":7060,"7112":5642,"7113":9947,"7114":8916,"7115":6660,"7116":6522,"7117":2805,"7118":7904,"7119":13427,"7120":9642,"7121":7950,"7122":9440,"7123":12000,"7124":8453,"7125":15590,"7126":5171,"7127":9995,"7128":9208,"7129":9606,"7130":15906,"7131":9225,"7132":8850,"7133":1353,"7134":1242,"7135":10089,"7136":5519,"7137":15179,"7138":5895,"7139":3254,"7140":15616,"7141":10800,"7142":16816,"7143":14997,"7144":9725,"7145":405,"7146":6488,"7147":3230,"7148":7909,"7149":17936,"7150":11703,"7151":12285,"7152":2117,"7153":8580,"7154":6532,"7155":7183,"7156":9416,"7157":15503,"7158":12162,"7159":15792,"7160":14990,"7161":2124,"7162":13126,"7163":12249,"7164":13343,"7165":10755,"7166":6095,"7167":7020,"7168":13549,"7169":9755,"7170":13392,"7171":5906,"7172":8844,"7173":13082,"7174":240,"7175":3670,"7176":11405,"7177":7870,"7178":17564,"7179":10037,"7180":17378,"7181":14170,"7182":3067,"7183":1967,"7184":8388,"7185":3882,"7186":6726,"7187":8183,"7188":14076,"7189":11998,"7190":13110,"7191":18303,"7192":10667,"7193":10295,"7194":7145,"7195":1674,"7196":14018,"7197":5544,"7198":1162,"7199":12299,"7200":7135,"7201":17944,"7202":16693,"7203":4535,"7204":9955,"7205":507,"7206":16178,"7207":2365,"7208":3416,"7209":4211,"7210":8542,"7211":7771,"7212":9320,"7213":1397,"7214":3961,"7215":13961,"7216":7943,"7217":16718,"7218":13657,"7219":2083,"7220":15362,"7221":2073,"7222":6195,"7223":7005,"7224":6852,"7225":17104,"7226":14669,"7227":10482,"7228":2029,"7229":16026,"7230":10511,"7231":6647,"7232":1412,"7233":7013,"7234":6572,"7235":1710,"7236":6885,"7237":11312,"7238":2250,"7239":6903,"7240":16334,"7241":5988,"7242":13825,"7243":15477,"7244":12144,"7245":677,"7246":2844,"7247":12975,"7248":10038,"7249":16756,"7250":17008,"7251":10984,"7252":6943,"7253":7613,"7254":8687,"7255":10889,"7256":16775,"7257":1045,"7258":15547,"7259":13490,"7260":2293,"7261":16133,"7262":9430,"7263":921,"7264":3747,"7265":5121,"7266":15605,"7267":13036,"7268":10323,"7269":13251,"7270":10092,"7271":7860,"7272":7092,"7273":7340,"7274":18278,"7275":3732,"7276":16747,"7277":9914,"7278":13248,"7279":14565,"7280":9504,"7281":4438,"7282":4699,"7283":14722,"7284":10401,"7285":8372,"7286":15782,"7287":16303,"7288":517,"7289":862,"7290":17132,"7291":17662,"7292":10166,"7293":16528,"7294":2344,"7295":5813,"7296":13551,"7297":12958,"7298":13297,"7299":12137,"7300":7804,"7301":15144,"7302":11632,"7303":8301,"7304":17914,"7305":1634,"7306":9781,"7307":8473,"7308":12850,"7309":4930,"7310":14442,"7311":7320,"7312":4703,"7313":13675,"7314":14133,"7315":15214,"7316":6019,"7317":10917,"7318":11113,"7319":14284,"7320":2806,"7321":10376,"7322":9538,"7323":6714,"7324":1253,"7325":8567,"7326":11461,"7327":6214,"7328":9081,"7329":196,"7330":16643,"7331":8104,"7332":15820,"7333":4209,"7334":17015,"7335":1282,"7336":9918,"7337":4796,"7338":10210,"7339":14194,"7340":13184,"7341":17188,"7342":4122,"7343":9990,"7344":16785,"7345":16928,"7346":3834,"7347":8638,"7348":13387,"7349":5407,"7350":13269,"7351":11952,"7352":12672,"7353":8309,"7354":10160,"7355":8784,"7356":7927,"7357":14955,"7358":4149,"7359":13827,"7360":9860,"7361":11726,"7362":7118,"7363":12718,"7364":13036,"7365":4257,"7366":1269,"7367":1717,"7368":7722,"7369":17384,"7370":13231,"7371":13857,"7372":533,"7373":12749,"7374":1671,"7375":16178,"7376":2024,"7377":7265,"7378":5033,"7379":6826,"7380":9493,"7381":12787,"7382":14499,"7383":13064,"7384":11854,"7385":1739,"7386":5440,"7387":3520,"7388":2841,"7389":7256,"7390":16256,"7391":17123,"7392":12359,"7393":17262,"7394":564,"7395":2201,"7396":2960,"7397":6630,"7398":13014,"7399":6628,"7400":509,"7401":9199,"7402":444,"7403":11283,"7404":11966,"7405":5895,"7406":17099,"7407":11366,"7408":8353,"7409":2897,"7410":14830,"7411":11914,"7412":4922,"7413":638,"7414":15682,"7415":9168,"7416":3095,"7417":10516,"7418":767,"7419":10942,"7420":15280,"7421":10422,"7422":7057,"7423":9867,"7424":14208,"7425":4701,"7426":12906,"7427":9893,"7428":6943,"7429":5899,"7430":18005,"7431":10424,"7432":2476,"7433":90,"7434":13372,"7435":7523,"7436":1975,"7437":12130,"7438":5408,"7439":9499,"7440":12076,"7441":9790,"7442":13830,"7443":11492,"7444":13656,"7445":15953,"7446":3784,"7447":2175,"7448":6011,"7449":1575,"7450":7197,"7451":17545,"7452":7218,"7453":15645,"7454":16588,"7455":17442,"7456":12652,"7457":11666,"7458":9169,"7459":4642,"7460":7186,"7461":15783,"7462":15243,"7463":13868,"7464":11085,"7465":12300,"7466":2217,"7467":4379,"7468":16486,"7469":11907,"7470":1036,"7471":6234,"7472":17964,"7473":7567,"7474":8970,"7475":8333,"7476":12520,"7477":10954,"7478":10261,"7479":15464,"7480":1935,"7481":12760,"7482":2902,"7483":13873,"7484":4442,"7485":16780,"7486":8684,"7487":10161,"7488":579,"7489":12256,"7490":16685,"7491":4535,"7492":17093,"7493":8281,"7494":13839,"7495":11083,"7496":10775,"7497":13803,"7498":12313,"7499":7872,"7500":18311,"7501":4271,"7502":18004,"7503":5159,"7504":14780,"7505":1996,"7506":1176,"7507":12963,"7508":10996,"7509":8040,"7510":9345,"7511":16801,"7512":11203,"7513":13720,"7514":16797,"7515":13407,"7516":7849,"7517":15740,"7518":4856,"7519":7348,"7520":2780,"7521":16564,"7522":2242,"7523":14201,"7524":6871,"7525":1962,"7526":4231,"7527":14035,"7528":917,"7529":15600,"7530":17068,"7531":11812,"7532":9518,"7533":17722,"7534":9067,"7535":9421,"7536":4923,"7537":58,"7538":4897,"7539":8902,"7540":3026,"7541":15244,"7542":4257,"7543":9017,"7544":17596,"7545":4603,"7546":5791,"7547":9364,"7548":16206,"7549":828,"7550":13953,"7551":6268,"7552":802,"7553":304,"7554":9151,"7555":5071,"7556":12887,"7557":14557,"7558":17321,"7559":3011,"7560":10344,"7561":16520,"7562":11442,"7563":6285,"7564":7274,"7565":1117,"7566":10594,"7567":8521,"7568":3620,"7569":10219,"7570":6969,"7571":720,"7572":16976,"7573":7049,"7574":12983,"7575":8768,"7576":3898,"7577":17651,"7578":8068,"7579":1691,"7580":15231,"7581":3473,"7582":7489,"7583":16991,"7584":7116,"7585":17527,"7586":250,"7587":1372,"7588":2493,"7589":13956,"7590":16913,"7591":5212,"7592":8695,"7593":13642,"7594":2796,"7595":15267,"7596":16991,"7597":11032,"7598":20,"7599":337,"7600":17534,"7601":9853,"7602":7949,"7603":17193,"7604":1700,"7605":1816,"7606":16060,"7607":9122,"7608":8831,"7609":6777,"7610":11594,"7611":12978,"7612":2841,"7613":16186,"7614":4491,"7615":14325,"7616":13789,"7617":11639,"7618":14422,"7619":13806,"7620":9609,"7621":9727,"7622":15638,"7623":11561,"7624":990,"7625":12396,"7626":8386,"7627":14379,"7628":6379,"7629":15587,"7630":9802,"7631":3625,"7632":10715,"7633":14868,"7634":13173,"7635":1096,"7636":5321,"7637":15600,"7638":15832,"7639":7359,"7640":13552,"7641":5138,"7642":217,"7643":12504,"7644":14291,"7645":2655,"7646":12265,"7647":2986,"7648":18165,"7649":7423,"7650":8963,"7651":744,"7652":17706,"7653":8420,"7654":2442,"7655":5476,"7656":4599,"7657":5341,"7658":17126,"7659":4930,"7660":1459,"7661":5037,"7662":8779,"7663":16,"7664":7603,"7665":2152,"7666":13042,"7667":16656,"7668":9398,"7669":8364,"7670":10824,"7671":4272,"7672":13395,"7673":17874,"7674":1384,"7675":12912,"7676":17156,"7677":8320,"7678":7493,"7679":10515,"7680":11297,"7681":1935,"7682":17823,"7683":11162,"7684":16451,"7685":10576,"7686":16847,"7687":6357,"7688":11768,"7689":5936,"7690":9598,"7691":17806,"7692":855,"7693":17734,"7694":3860,"7695":16347,"7696":16097,"7697":7706,"7698":4942,"7699":1923,"7700":12213,"7701":10594,"7702":17690,"7703":2443,"7704":16485,"7705":2118,"7706":5697,"7707":5726,"7708":14632,"7709":8114,"7710":16361,"7711":16206,"7712":15589,"7713":2164,"7714":8674,"7715":6839,"7716":15223,"7717":3050,"7718":10749,"7719":9097,"7720":7397,"7721":15780,"7722":12936,"7723":16413,"7724":5362,"7725":11206,"7726":10912,"7727":12563,"7728":17296,"7729":10575,"7730":2297,"7731":14558,"7732":3229,"7733":15689,"7734":4003,"7735":8152,"7736":17630,"7737":13593,"7738":3954,"7739":5227,"7740":12251,"7741":17831,"7742":4212,"7743":14938,"7744":14614,"7745":9507,"7746":11795,"7747":3767,"7748":5726,"7749":17883,"7750":14813,"7751":13944,"7752":11342,"7753":12252,"7754":17620,"7755":10482,"7756":1735,"7757":4254,"7758":7854,"7759":7270,"7760":2055,"7761":13436,"7762":17816,"7763":16888,"7764":1585,"7765":8989,"7766":6227,"7767":17980,"7768":15988,"7769":2385,"7770":11577,"7771":9016,"7772":15772,"7773":10837,"7774":12637,"7775":15322,"7776":4346,"7777":16461,"7778":406,"7779":5565,"7780":17721,"7781":16651,"7782":11738,"7783":300,"7784":4165,"7785":5893,"7786":11966,"7787":14973,"7788":7214,"7789":6519,"7790":17828,"7791":317,"7792":18274,"7793":2980,"7794":10684,"7795":3858,"7796":11460,"7797":14514,"7798":129,"7799":5440,"7800":11786,"7801":13350,"7802":17047,"7803":8023,"7804":10019,"7805":15803,"7806":9873,"7807":14563,"7808":17848,"7809":14168,"7810":13135,"7811":15259,"7812":7864,"7813":3727,"7814":15632,"7815":1486,"7816":15792,"7817":1564,"7818":9877,"7819":15908,"7820":7338,"7821":15856,"7822":9039,"7823":6878,"7824":5164,"7825":8636,"7826":13614,"7827":1018,"7828":12096,"7829":1998,"7830":13060,"7831":4607,"7832":4408,"7833":2306,"7834":16124,"7835":8269,"7836":13364,"7837":4715,"7838":6297,"7839":10419,"7840":11957,"7841":85,"7842":7946,"7843":1859,"7844":3663,"7845":1304,"7846":17511,"7847":7873,"7848":7565,"7849":13012,"7850":12464,"7851":3950,"7852":13855,"7853":1637,"7854":12225,"7855":2442,"7856":7281,"7857":11139,"7858":4878,"7859":1952,"7860":801,"7861":13218,"7862":15122,"7863":9647,"7864":15445,"7865":1275,"7866":8665,"7867":6963,"7868":17500,"7869":1128,"7870":16986,"7871":12031,"7872":7346,"7873":11130,"7874":12235,"7875":17637,"7876":447,"7877":5204,"7878":8528,"7879":15644,"7880":13648,"7881":8380,"7882":2835,"7883":2167,"7884":5331,"7885":2632,"7886":1994,"7887":4340,"7888":15567,"7889":11429,"7890":9665,"7891":13125,"7892":17396,"7893":7750,"7894":7454,"7895":1143,"7896":13502,"7897":17701,"7898":12602,"7899":3986,"7900":2325,"7901":3366,"7902":9971,"7903":10286,"7904":9157,"7905":6817,"7906":1518,"7907":5068,"7908":11836,"7909":17267,"7910":5316,"7911":3274,"7912":12100,"7913":12145,"7914":10841,"7915":3168,"7916":17009,"7917":14106,"7918":17691,"7919":3346,"7920":4533,"7921":4730,"7922":8616,"7923":17749,"7924":10385,"7925":8017,"7926":15776,"7927":11997,"7928":11215,"7929":4999,"7930":3304,"7931":4619,"7932":161,"7933":730,"7934":6377,"7935":7468,"7936":17999,"7937":9978,"7938":3241,"7939":6723,"7940":4849,"7941":11153,"7942":4742,"7943":2588,"7944":2069,"7945":7530,"7946":3030,"7947":14687,"7948":16477,"7949":11318,"7950":14406,"7951":10797,"7952":8957,"7953":653,"7954":15524,"7955":1255,"7956":11244,"7957":7063,"7958":6319,"7959":4298,"7960":7168,"7961":12185,"7962":9336,"7963":5812,"7964":8157,"7965":11100,"7966":3142,"7967":4972,"7968":711,"7969":11941,"7970":4773,"7971":9579,"7972":4659,"7973":5320,"7974":16912,"7975":3732,"7976":15959,"7977":11149,"7978":6020,"7979":5501,"7980":4365,"7981":5100,"7982":3657,"7983":10190,"7984":4918,"7985":4541,"7986":12764,"7987":9731,"7988":7439,"7989":4637,"7990":4220,"7991":12182,"7992":467,"7993":11079,"7994":13770,"7995":4556,"7996":7318,"7997":4465,"7998":8475,"7999":9485,"8000":12195,"8001":10145,"8002":13383,"8003":3148,"8004":11993,"8005":11968,"8006":7523,"8007":415,"8008":4967,"8009":2464,"8010":10703,"8011":7915,"8012":14947,"8013":10661,"8014":9379,"8015":10362,"8016":8457,"8017":8075,"8018":5411,"8019":4667,"8020":8968,"8021":12469,"8022":6345,"8023":13481,"8024":17036,"8025":5892,"8026":17485,"8027":12116,"8028":3399,"8029":17769,"8030":1721,"8031":16738,"8032":18024,"8033":2126,"8034":13713,"8035":10135,"8036":16053,"8037":3055,"8038":4245,"8039":7489,"8040":12378,"8041":17652,"8042":15022,"8043":10531,"8044":5106,"8045":9005,"8046":2025,"8047":2157,"8048":1442,"8049":11987,"8050":5281,"8051":13934,"8052":8819,"8053":5261,"8054":15400,"8055":14239,"8056":12880,"8057":2887,"8058":4404,"8059":17240,"8060":17139,"8061":12532,"8062":616,"8063":17053,"8064":3598,"8065":10121,"8066":16631,"8067":2727,"8068":9856,"8069":16531,"8070":9932,"8071":2505,"8072":5130,"8073":6995,"8074":7819,"8075":10367,"8076":3309,"8077":15842,"8078":15947,"8079":17248,"8080":6348,"8081":17180,"8082":17148,"8083":2412,"8084":14532,"8085":9426,"8086":10245,"8087":9873,"8088":6727,"8089":9111,"8090":8432,"8091":7421,"8092":6942,"8093":4887,"8094":10191,"8095":14921,"8096":10855,"8097":7001,"8098":16322,"8099":17384,"8100":2115,"8101":14970,"8102":16576,"8103":115,"8104":11940,"8105":3174,"8106":6783,"8107":14680,"8108":8000,"8109":12941,"8110":3676,"8111":11591,"8112":9808,"8113":6356,"8114":12010,"8115":2703,"8116":5801,"8117":6683,"8118":13382,"8119":10367,"8120":3646,"8121":10866,"8122":13135,"8123":17961,"8124":4121,"8125":12590,"8126":13999,"8127":10021,"8128":16741,"8129":2746,"8130":9320,"8131":4463,"8132":6407,"8133":2728,"8134":9586,"8135":12122,"8136":8189,"8137":3172,"8138":17948,"8139":10932,"8140":12811,"8141":13596,"8142":17699,"8143":16809,"8144":7652,"8145":314,"8146":18145,"8147":39,"8148":16156,"8149":6308,"8150":13076,"8151":1759,"8152":867,"8153":1773,"8154":14423,"8155":15814,"8156":14692,"8157":12095,"8158":12715,"8159":13234,"8160":2160,"8161":4129,"8162":593,"8163":11558,"8164":7767,"8165":4738,"8166":2318,"8167":6184,"8168":13714,"8169":3028,"8170":14085,"8171":17032,"8172":4743,"8173":9422,"8174":531,"8175":13350,"8176":10444,"8177":15410,"8178":8664,"8179":8845,"8180":5638,"8181":16941,"8182":13147,"8183":5536,"8184":207,"8185":8501,"8186":15905,"8187":304,"8188":14330,"8189":13159,"8190":7842,"8191":1649,"8192":16623,"8193":8600,"8194":1569,"8195":767,"8196":9480,"8197":2577,"8198":11931,"8199":7499,"8200":683,"8201":1413,"8202":12134,"8203":14601,"8204":2389,"8205":8591,"8206":15445,"8207":15208,"8208":4011,"8209":12670,"8210":15397,"8211":7531,"8212":6053,"8213":8364,"8214":4153,"8215":6764,"8216":15198,"8217":8709,"8218":10100,"8219":14216,"8220":722,"8221":15800,"8222":6309,"8223":14092,"8224":2610,"8225":400,"8226":11774,"8227":3232,"8228":13277,"8229":11287,"8230":6419,"8231":422,"8232":6821,"8233":13362,"8234":3311,"8235":6890,"8236":5703,"8237":4043,"8238":9416,"8239":13132,"8240":4227,"8241":2363,"8242":11715,"8243":9524,"8244":70,"8245":4840,"8246":13718,"8247":4050,"8248":227,"8249":9132,"8250":6090,"8251":5669,"8252":9645,"8253":4975,"8254":10264,"8255":826,"8256":4343,"8257":6495,"8258":16714,"8259":9578,"8260":9382,"8261":15118,"8262":5524,"8263":7478,"8264":3712,"8265":7976,"8266":2253,"8267":16653,"8268":12408,"8269":6405,"8270":18311,"8271":16398,"8272":2189,"8273":17940,"8274":10057,"8275":16559,"8276":4739,"8277":14074,"8278":4817,"8279":1835,"8280":9026,"8281":3072,"8282":8140,"8283":14383,"8284":2886,"8285":10280,"8286":17746,"8287":16175,"8288":17601,"8289":16890,"8290":14588,"8291":2556,"8292":5590,"8293":1180,"8294":6975,"8295":9367,"8296":10270,"8297":15640,"8298":14097,"8299":17698,"8300":10629,"8301":18017,"8302":8576,"8303":4958,"8304":2972,"8305":7708,"8306":7127,"8307":1947,"8308":7058,"8309":4404,"8310":14138,"8311":17947,"8312":9071,"8313":15545,"8314":15407,"8315":10386,"8316":2480,"8317":14746,"8318":529,"8319":7109,"8320":18233,"8321":4737,"8322":7282,"8323":986,"8324":10584,"8325":1032,"8326":10716,"8327":16349,"8328":6091,"8329":17733,"8330":16162,"8331":5443,"8332":2887,"8333":447,"8334":1447,"8335":17189,"8336":9563,"8337":16508,"8338":519,"8339":7757,"8340":1619,"8341":7929,"8342":11095,"8343":9118,"8344":3160,"8345":5236,"8346":5269,"8347":1015,"8348":14174,"8349":13340,"8350":15799,"8351":12533,"8352":8585,"8353":14010,"8354":11697,"8355":4690,"8356":15185,"8357":9947,"8358":8873,"8359":7839,"8360":8240,"8361":15408,"8362":12054,"8363":3861,"8364":9132,"8365":6977,"8366":11492,"8367":4837,"8368":4044,"8369":1875,"8370":11512,"8371":5483,"8372":4766,"8373":8732,"8374":7788,"8375":5926,"8376":614,"8377":15196,"8378":13816,"8379":3156,"8380":17375,"8381":2465,"8382":4815,"8383":7814,"8384":13208,"8385":8747,"8386":18304,"8387":18111,"8388":12740,"8389":3170,"8390":6039,"8391":11993,"8392":12175,"8393":17792,"8394":3456,"8395":9367,"8396":16763,"8397":11783,"8398":13050,"8399":6579,"8400":15919,"8401":17901,"8402":12641,"8403":8220,"8404":4203,"8405":9130,"8406":9989,"8407":8673,"8408":334,"8409":9067,"8410":14122,"8411":9723,"8412":393,"8413":17297,"8414":4928,"8415":8195,"8416":11685,"8417":10659,"8418":16894,"8419":14146,"8420":15015,"8421":3225,"8422":12349,"8423":3968,"8424":4650,"8425":11864,"8426":14941,"8427":30,"8428":11457,"8429":4376,"8430":15865,"8431":12156,"8432":2232,"8433":11078,"8434":16192,"8435":12781,"8436":14287,"8437":10417,"8438":1333,"8439":16137,"8440":2612,"8441":6065,"8442":13530,"8443":10166,"8444":13583,"8445":18014,"8446":12753,"8447":5232,"8448":11642,"8449":3345,"8450":12165,"8451":10766,"8452":12144,"8453":7772,"8454":2897,"8455":10774,"8456":1188,"8457":15361,"8458":11131,"8459":7818,"8460":2045,"8461":8507,"8462":11332,"8463":7843,"8464":10858,"8465":9096,"8466":1101,"8467":10934,"8468":8660,"8469":17573,"8470":11512,"8471":16547,"8472":10431,"8473":2399,"8474":7919,"8475":1559,"8476":13402,"8477":346,"8478":8566,"8479":1281,"8480":9397,"8481":4710,"8482":15681,"8483":1557,"8484":4113,"8485":7223,"8486":12894,"8487":4939,"8488":1197,"8489":10227,"8490":1034,"8491":7450,"8492":15367,"8493":8206,"8494":1788,"8495":5715,"8496":16867,"8497":9194,"8498":7056,"8499":11207,"8500":5219,"8501":16029,"8502":1733,"8503":4017,"8504":11881,"8505":6115,"8506":11637,"8507":15641,"8508":8855,"8509":6471,"8510":9695,"8511":5556,"8512":66,"8513":6998,"8514":3400,"8515":7989,"8516":11331,"8517":1862,"8518":16672,"8519":3212,"8520":5511,"8521":12758,"8522":11796,"8523":12521,"8524":8846,"8525":6691,"8526":6758,"8527":4013,"8528":12141,"8529":12667,"8530":14913,"8531":15302,"8532":17751,"8533":11520,"8534":12289,"8535":3773,"8536":17247,"8537":6667,"8538":15040,"8539":14561,"8540":11503,"8541":5389,"8542":3997,"8543":9556,"8544":14333,"8545":1640,"8546":7354,"8547":2697,"8548":3467,"8549":16087,"8550":3647,"8551":15448,"8552":2082,"8553":14227,"8554":999,"8555":16309,"8556":15023,"8557":1364,"8558":4670,"8559":6392,"8560":3571,"8561":9691,"8562":910,"8563":8582,"8564":13203,"8565":1576,"8566":15083,"8567":2106,"8568":11679,"8569":15885,"8570":898,"8571":5360,"8572":15204,"8573":11563,"8574":15493,"8575":17623,"8576":8620,"8577":3845,"8578":8898,"8579":14469,"8580":839,"8581":8055,"8582":616,"8583":220,"8584":12756,"8585":4616,"8586":3298,"8587":12751,"8588":9341,"8589":15353,"8590":18101,"8591":18180,"8592":11939,"8593":15671,"8594":8012,"8595":1049,"8596":10285,"8597":495,"8598":8133,"8599":2516,"8600":3127,"8601":17427,"8602":9342,"8603":9846,"8604":13758,"8605":7425,"8606":16139,"8607":8479,"8608":11136,"8609":9400,"8610":4395,"8611":17726,"8612":7164,"8613":395,"8614":8756,"8615":7132,"8616":6605,"8617":5774,"8618":2615,"8619":15694,"8620":12160,"8621":13606,"8622":91,"8623":2107,"8624":13031,"8625":3005,"8626":18208,"8627":11529,"8628":9275,"8629":981,"8630":5105,"8631":1538,"8632":12387,"8633":14118,"8634":13194,"8635":4011,"8636":4637,"8637":13820,"8638":7228,"8639":12989,"8640":16577,"8641":17755,"8642":8021,"8643":2362,"8644":10679,"8645":15612,"8646":2601,"8647":5964,"8648":9231,"8649":15154,"8650":13517,"8651":3337,"8652":4400,"8653":7450,"8654":14909,"8655":2982,"8656":1025,"8657":11176,"8658":3280,"8659":6291,"8660":4105,"8661":5898,"8662":2357,"8663":14811,"8664":6030,"8665":15071,"8666":4085,"8667":4035,"8668":13409,"8669":8422,"8670":11569,"8671":14298,"8672":10748,"8673":6119,"8674":16850,"8675":8416,"8676":9062,"8677":17858,"8678":1155,"8679":17760,"8680":5176,"8681":18073,"8682":2552,"8683":16949,"8684":7009,"8685":2266,"8686":4219,"8687":14807,"8688":8997,"8689":17769,"8690":12091,"8691":7491,"8692":8246,"8693":10409,"8694":12421,"8695":1341,"8696":205,"8697":8732,"8698":17970,"8699":15744,"8700":4258,"8701":15531,"8702":3730,"8703":3837,"8704":10971,"8705":8426,"8706":10706,"8707":5701,"8708":12549,"8709":4799,"8710":10465,"8711":12194,"8712":8767,"8713":3577,"8714":3740,"8715":8013,"8716":12183,"8717":866,"8718":5789,"8719":10210,"8720":9118,"8721":10340,"8722":3746,"8723":9330,"8724":16230,"8725":9200,"8726":10498,"8727":17858,"8728":8421,"8729":2267,"8730":3402,"8731":1927,"8732":7443,"8733":4531,"8734":7029,"8735":7265,"8736":8877,"8737":9625,"8738":16463,"8739":9752,"8740":7385,"8741":3398,"8742":4086,"8743":17967,"8744":17175,"8745":8970,"8746":14573,"8747":11510,"8748":16423,"8749":15041,"8750":9394,"8751":1929,"8752":13010,"8753":9929,"8754":15444,"8755":1259,"8756":2760,"8757":11795,"8758":10406,"8759":14856,"8760":8010,"8761":3775,"8762":6017,"8763":13305,"8764":205,"8765":10825,"8766":567,"8767":4038,"8768":15413,"8769":9819,"8770":4972,"8771":4027,"8772":5179,"8773":7582,"8774":5050,"8775":14557,"8776":9493,"8777":5217,"8778":7622,"8779":2284,"8780":14790,"8781":527,"8782":2020,"8783":5379,"8784":10327,"8785":15891,"8786":11803,"8787":6319,"8788":2126,"8789":168,"8790":4126,"8791":2322,"8792":5560,"8793":7213,"8794":9298,"8795":15564,"8796":8164,"8797":18219,"8798":12007,"8799":2971,"8800":36,"8801":17120,"8802":3964,"8803":3832,"8804":1895,"8805":7124,"8806":668,"8807":876,"8808":9909,"8809":15974,"8810":11081,"8811":9876,"8812":3916,"8813":13766,"8814":13127,"8815":18248,"8816":11077,"8817":15496,"8818":113,"8819":3661,"8820":5956,"8821":6884,"8822":5392,"8823":17356,"8824":5108,"8825":11892,"8826":4579,"8827":774,"8828":6651,"8829":16313,"8830":5153,"8831":14695,"8832":17441,"8833":3597,"8834":12427,"8835":3482,"8836":3810,"8837":8827,"8838":505,"8839":3228,"8840":3893,"8841":10744,"8842":908,"8843":16894,"8844":17573,"8845":8268,"8846":15314,"8847":1453,"8848":2570,"8849":4278,"8850":14057,"8851":11110,"8852":12710,"8853":15739,"8854":10425,"8855":8847,"8856":5861,"8857":4052,"8858":16285,"8859":10412,"8860":4331,"8861":17413,"8862":12594,"8863":4397,"8864":6590,"8865":857,"8866":15819,"8867":6909,"8868":11782,"8869":2538,"8870":11021,"8871":10871,"8872":4094,"8873":12746,"8874":185,"8875":10747,"8876":1792,"8877":814,"8878":13370,"8879":478,"8880":11575,"8881":795,"8882":6594,"8883":7023,"8884":6367,"8885":8270,"8886":4250,"8887":6178,"8888":15224,"8889":12599,"8890":63,"8891":9443,"8892":6494,"8893":6526,"8894":17494,"8895":12946,"8896":13952,"8897":1997,"8898":18222,"8899":3861,"8900":8955,"8901":10023,"8902":13824,"8903":12291,"8904":1673,"8905":3760,"8906":10677,"8907":6301,"8908":8694,"8909":15750,"8910":3857,"8911":14731,"8912":3807,"8913":7805,"8914":4426,"8915":1928,"8916":9527,"8917":13004,"8918":14590,"8919":3112,"8920":1210,"8921":11088,"8922":3104,"8923":6997,"8924":10124,"8925":814,"8926":10029,"8927":12904,"8928":3890,"8929":14957,"8930":7302,"8931":4717,"8932":15998,"8933":1416,"8934":7202,"8935":11053,"8936":3822,"8937":3288,"8938":12672,"8939":8460,"8940":11129,"8941":12763,"8942":11382,"8943":17268,"8944":14546,"8945":15503,"8946":6313,"8947":7756,"8948":7323,"8949":10858,"8950":5985,"8951":3694,"8952":16305,"8953":9588,"8954":10779,"8955":5801,"8956":13624,"8957":5892,"8958":13736,"8959":8533,"8960":299,"8961":9302,"8962":16447,"8963":4891,"8964":3778,"8965":8749,"8966":14183,"8967":5019,"8968":17983,"8969":4443,"8970":4960,"8971":3114,"8972":18328,"8973":10565,"8974":11984,"8975":1827,"8976":7354,"8977":3952,"8978":15177,"8979":6331,"8980":10015,"8981":17247,"8982":6087,"8983":3594,"8984":8101,"8985":2586,"8986":4824,"8987":14008,"8988":4353,"8989":13797,"8990":4393,"8991":16139,"8992":240,"8993":1849,"8994":2143,"8995":2340,"8996":14271,"8997":2028,"8998":6898,"8999":10899,"9000":10503,"9001":5641,"9002":11325,"9003":3346,"9004":16174,"9005":8559,"9006":13637,"9007":9457,"9008":5197,"9009":8733,"9010":4884,"9011":3695,"9012":12946,"9013":2113,"9014":16132,"9015":14967,"9016":8946,"9017":15615,"9018":686,"9019":4435,"9020":3031,"9021":15873,"9022":6111,"9023":555,"9024":4739,"9025":10109,"9026":3854,"9027":7655,"9028":6051,"9029":6877,"9030":13735,"9031":4078,"9032":3374,"9033":6890,"9034":7206,"9035":12525,"9036":8551,"9037":4596,"9038":10898,"9039":14640,"9040":8124,"9041":11536,"9042":5050,"9043":2109,"9044":240,"9045":9994,"9046":14280,"9047":10602,"9048":13091,"9049":18133,"9050":11976,"9051":5617,"9052":8305,"9053":17417,"9054":6231,"9055":10960,"9056":5267,"9057":8683,"9058":17679,"9059":5672,"9060":16381,"9061":16853,"9062":11530,"9063":2909,"9064":10414,"9065":9864,"9066":14791,"9067":14586,"9068":408,"9069":13513,"9070":3740,"9071":18011,"9072":6926,"9073":17862,"9074":115,"9075":716,"9076":1368,"9077":2101,"9078":12798,"9079":12302,"9080":9804,"9081":8242,"9082":16897,"9083":5937,"9084":16148,"9085":16990,"9086":16342,"9087":9739,"9088":17536,"9089":7294,"9090":13208,"9091":13987,"9092":9026,"9093":5628,"9094":6048,"9095":12331,"9096":17317,"9097":1272,"9098":9957,"9099":9923,"9100":15026,"9101":16614,"9102":3876,"9103":8517,"9104":1019,"9105":15453,"9106":7249,"9107":16519,"9108":7656,"9109":14905,"9110":17650,"9111":12820,"9112":5878,"9113":16517,"9114":9502,"9115":14131,"9116":13033,"9117":2221,"9118":13778,"9119":14548,"9120":15687,"9121":3576,"9122":5337,"9123":13637,"9124":15316,"9125":16372,"9126":2875,"9127":11742,"9128":3056,"9129":16980,"9130":10052,"9131":13932,"9132":13040,"9133":12900,"9134":16630,"9135":15079,"9136":9848,"9137":6720,"9138":12045,"9139":1649,"9140":9695,"9141":1747,"9142":6736,"9143":7487,"9144":7285,"9145":2460,"9146":13305,"9147":16486,"9148":2966,"9149":10540,"9150":6383,"9151":11602,"9152":15641,"9153":7672,"9154":5344,"9155":17665,"9156":11788,"9157":3905,"9158":16774,"9159":13946,"9160":8076,"9161":10314,"9162":10912,"9163":6593,"9164":10569,"9165":1738,"9166":3478,"9167":3052,"9168":13404,"9169":18037,"9170":10738,"9171":13320,"9172":879,"9173":16622,"9174":3534,"9175":12859,"9176":11749,"9177":16326,"9178":17803,"9179":8032,"9180":17085,"9181":857,"9182":3274,"9183":5582,"9184":12751,"9185":12280,"9186":11682,"9187":7807,"9188":1992,"9189":4116,"9190":11180,"9191":2173,"9192":3275,"9193":771,"9194":14878,"9195":3355,"9196":2198,"9197":7767,"9198":15052,"9199":2878,"9200":4403,"9201":16070,"9202":10624,"9203":5626,"9204":12325,"9205":9494,"9206":4331,"9207":17038,"9208":6957,"9209":11499,"9210":9630,"9211":6663,"9212":4195,"9213":9269,"9214":12392,"9215":8910,"9216":1282,"9217":1118,"9218":10751,"9219":2666,"9220":4479,"9221":10511,"9222":4026,"9223":13536,"9224":1058,"9225":18268,"9226":14787,"9227":16571,"9228":1370,"9229":12824,"9230":12620,"9231":14010,"9232":17760,"9233":1793,"9234":4396,"9235":1085,"9236":13584,"9237":6287,"9238":13943,"9239":14407,"9240":12668,"9241":10719,"9242":9991,"9243":10827,"9244":14207,"9245":554,"9246":13597,"9247":17524,"9248":16831,"9249":1960,"9250":17458,"9251":17676,"9252":17567,"9253":1479,"9254":7018,"9255":7778,"9256":4798,"9257":4418,"9258":3307,"9259":12491,"9260":14641,"9261":10637,"9262":4565,"9263":626,"9264":16709,"9265":10540,"9266":8889,"9267":9350,"9268":2657,"9269":6671,"9270":16385,"9271":8147,"9272":1806,"9273":3156,"9274":7570,"9275":3374,"9276":3585,"9277":5456,"9278":2853,"9279":10193,"9280":6063,"9281":15835,"9282":9009,"9283":17922,"9284":15236,"9285":16174,"9286":17155,"9287":2007,"9288":5754,"9289":7050,"9290":15437,"9291":13636,"9292":6635,"9293":9650,"9294":1800,"9295":15524,"9296":17139,"9297":5194,"9298":3110,"9299":15674,"9300":5088,"9301":11109,"9302":8357,"9303":18311,"9304":10209,"9305":14056,"9306":7183,"9307":16312,"9308":5508,"9309":13378,"9310":11317,"9311":3211,"9312":17223,"9313":1825,"9314":18049,"9315":2285,"9316":8870,"9317":17947,"9318":1272,"9319":17942,"9320":4892,"9321":2470,"9322":5201,"9323":14598,"9324":10778,"9325":11314,"9326":11971,"9327":18142,"9328":15699,"9329":15109,"9330":9842,"9331":8732,"9332":17501,"9333":1498,"9334":16875,"9335":13273,"9336":10491,"9337":12911,"9338":11426,"9339":1742,"9340":6069,"9341":7885,"9342":985,"9343":3116,"9344":6092,"9345":5363,"9346":2644,"9347":6855,"9348":3961,"9349":7504,"9350":1304,"9351":12690,"9352":4341,"9353":2034,"9354":137,"9355":7005,"9356":18279,"9357":10725,"9358":18096,"9359":8481,"9360":15982,"9361":17421,"9362":9544,"9363":11902,"9364":5679,"9365":4423,"9366":7702,"9367":2762,"9368":7805,"9369":17979,"9370":16859,"9371":14698,"9372":7210,"9373":6736,"9374":13155,"9375":9515,"9376":4588,"9377":14303,"9378":13901,"9379":6293,"9380":17103,"9381":11002,"9382":1186,"9383":17089,"9384":14293,"9385":11753,"9386":16236,"9387":15749,"9388":12488,"9389":6507,"9390":6404,"9391":2642,"9392":13549,"9393":8634,"9394":10811,"9395":17588,"9396":15203,"9397":6935,"9398":10532,"9399":4390,"9400":17048,"9401":10871,"9402":7778,"9403":9120,"9404":15408,"9405":3359,"9406":4294,"9407":15481,"9408":5027,"9409":14545,"9410":17445,"9411":4840,"9412":15783,"9413":4714,"9414":14929,"9415":18320,"9416":14774,"9417":8025,"9418":8560,"9419":2999,"9420":871,"9421":7564,"9422":11455,"9423":16609,"9424":16338,"9425":9001,"9426":6270,"9427":8793,"9428":1553,"9429":706,"9430":14403,"9431":5327,"9432":15609,"9433":9987,"9434":8116,"9435":1603,"9436":1801,"9437":13642,"9438":13143,"9439":16003,"9440":4493,"9441":471,"9442":5927,"9443":4971,"9444":10131,"9445":4963,"9446":15181,"9447":12738,"9448":3996,"9449":16152,"9450":17133,"9451":9887,"9452":8861,"9453":655,"9454":9225,"9455":9809,"9456":13741,"9457":10484,"9458":8374,"9459":5429,"9460":12023,"9461":13833,"9462":7064,"9463":18066,"9464":13417,"9465":13700,"9466":16870,"9467":4780,"9468":16016,"9469":13183,"9470":11557,"9471":13181,"9472":4679,"9473":7596,"9474":1625,"9475":2650,"9476":8562,"9477":18120,"9478":9265,"9479":8118,"9480":4805,"9481":12535,"9482":13956,"9483":5404,"9484":11918,"9485":3390,"9486":456,"9487":14570,"9488":13717,"9489":8074,"9490":17556,"9491":16585,"9492":15832,"9493":3122,"9494":17711,"9495":13309,"9496":13002,"9497":5120,"9498":15047,"9499":9321,"9500":2465,"9501":14233,"9502":1706,"9503":15190,"9504":4002,"9505":17876,"9506":5432,"9507":16697,"9508":12982,"9509":10628,"9510":12387,"9511":13142,"9512":15547,"9513":8342,"9514":5994,"9515":8133,"9516":2597,"9517":4995,"9518":12705,"9519":12476,"9520":1049,"9521":5672,"9522":14050,"9523":348,"9524":12069,"9525":11952,"9526":17791,"9527":7056,"9528":13261,"9529":5345,"9530":6733,"9531":18097,"9532":2157,"9533":5849,"9534":159,"9535":6500,"9536":10117,"9537":11755,"9538":12591,"9539":9251,"9540":4399,"9541":16995,"9542":11514,"9543":5643,"9544":16477,"9545":2810,"9546":11292,"9547":10694,"9548":5985,"9549":4427,"9550":11806,"9551":5932,"9552":2389,"9553":11640,"9554":5696,"9555":3522,"9556":12907,"9557":16641,"9558":16454,"9559":13643,"9560":17508,"9561":4487,"9562":12266,"9563":3150,"9564":15508,"9565":16221,"9566":15983,"9567":3985,"9568":9194,"9569":8823,"9570":12979,"9571":1150,"9572":10753,"9573":13318,"9574":4212,"9575":18265,"9576":10965,"9577":2913,"9578":7376,"9579":16290,"9580":9310,"9581":16018,"9582":9847,"9583":3683,"9584":2559,"9585":4021,"9586":16369,"9587":13286,"9588":6825,"9589":6327,"9590":17215,"9591":12711,"9592":8168,"9593":7836,"9594":2194,"9595":12009,"9596":16366,"9597":5215,"9598":17803,"9599":14859,"9600":15321,"9601":2381,"9602":5473,"9603":14849,"9604":8146,"9605":8285,"9606":9417,"9607":13908,"9608":16206,"9609":14246,"9610":2528,"9611":11641,"9612":204,"9613":4046,"9614":7372,"9615":12533,"9616":1393,"9617":4896,"9618":3197,"9619":1838,"9620":17934,"9621":17164,"9622":1010,"9623":10892,"9624":10366,"9625":16971,"9626":14284,"9627":18339,"9628":17157,"9629":13782,"9630":16070,"9631":15756,"9632":14221,"9633":14040,"9634":2746,"9635":11709,"9636":5803,"9637":275,"9638":13116,"9639":16403,"9640":951,"9641":13092,"9642":1545,"9643":13897,"9644":11828,"9645":14133,"9646":1079,"9647":5971,"9648":16686,"9649":9663,"9650":17206,"9651":646,"9652":13010,"9653":11699,"9654":10481,"9655":6756,"9656":928,"9657":16387,"9658":3354,"9659":2785,"9660":14156,"9661":17217,"9662":5871,"9663":16858,"9664":16872,"9665":8989,"9666":14098,"9667":6864,"9668":9970,"9669":15871,"9670":13104,"9671":17996,"9672":11243,"9673":17102,"9674":704,"9675":593,"9676":17247,"9677":6619,"9678":12239,"9679":13740,"9680":5289,"9681":3294,"9682":9450,"9683":12359,"9684":3920,"9685":15003,"9686":13389,"9687":2155,"9688":18132,"9689":15235,"9690":4461,"9691":12487,"9692":15892,"9693":12549,"9694":2048,"9695":17277,"9696":12994,"9697":13651,"9698":11831,"9699":2059,"9700":902,"9701":507,"9702":1785,"9703":703,"9704":9680,"9705":14388,"9706":3760,"9707":10926,"9708":4061,"9709":11094,"9710":17504,"9711":3227,"9712":17239,"9713":12942,"9714":5412,"9715":16808,"9716":4976,"9717":11544,"9718":13139,"9719":9962,"9720":17976,"9721":1909,"9722":18063,"9723":3747,"9724":3254,"9725":8391,"9726":2822,"9727":10290,"9728":1465,"9729":7789,"9730":11310,"9731":15722,"9732":658,"9733":6481,"9734":10324,"9735":8976,"9736":2539,"9737":2525,"9738":4553,"9739":8677,"9740":5839,"9741":1008,"9742":12252,"9743":6778,"9744":3459,"9745":14873,"9746":13981,"9747":1245,"9748":1734,"9749":9811,"9750":7582,"9751":8713,"9752":4801,"9753":12663,"9754":9971,"9755":16179,"9756":13564,"9757":15821,"9758":11874,"9759":17434,"9760":15307,"9761":3063,"9762":13194,"9763":12591,"9764":16795,"9765":15459,"9766":2905,"9767":14825,"9768":4118,"9769":8806,"9770":2882,"9771":6010,"9772":9533,"9773":8375,"9774":16593,"9775":1417,"9776":41,"9777":11568,"9778":4956,"9779":6285,"9780":9433,"9781":10714,"9782":6377,"9783":16997,"9784":17641,"9785":10386,"9786":10853,"9787":14669,"9788":2526,"9789":16455,"9790":15036,"9791":2305,"9792":11100,"9793":10941,"9794":1467,"9795":4865,"9796":12987,"9797":8447,"9798":3475,"9799":15017,"9800":10014,"9801":9147,"9802":16345,"9803":12788,"9804":2853,"9805":12336,"9806":16754,"9807":15700,"9808":1567,"9809":1655,"9810":11374,"9811":16576,"9812":4716,"9813":16436,"9814":17648,"9815":14806,"9816":2353,"9817":13778,"9818":16683,"9819":8315,"9820":15072,"9821":1099,"9822":6624,"9823":3432,"9824":16574,"9825":13957,"9826":16045,"9827":10923,"9828":17255,"9829":16285,"9830":6228,"9831":12425,"9832":6342,"9833":13629,"9834":12702,"9835":2582,"9836":6785,"9837":6822,"9838":16353,"9839":2195,"9840":3926,"9841":2914,"9842":8936,"9843":3409,"9844":4409,"9845":12008,"9846":5225,"9847":1795,"9848":7288,"9849":3134,"9850":16499,"9851":3352,"9852":219,"9853":15327,"9854":17733,"9855":1811,"9856":14005,"9857":10609,"9858":15864,"9859":484,"9860":1535,"9861":17394,"9862":16191,"9863":17953,"9864":4754,"9865":11765,"9866":7256,"9867":17821,"9868":16802,"9869":15278,"9870":13018,"9871":1622,"9872":1855,"9873":4909,"9874":6738,"9875":5906,"9876":16471,"9877":550,"9878":13944,"9879":1821,"9880":1704,"9881":18323,"9882":8514,"9883":7135,"9884":12630,"9885":8186,"9886":2926,"9887":8901,"9888":5800,"9889":5590,"9890":8426,"9891":10702,"9892":16320,"9893":16866,"9894":16762,"9895":8979,"9896":12832,"9897":4263,"9898":6020,"9899":9239,"9900":7352,"9901":9471,"9902":1276,"9903":3193,"9904":2149,"9905":7133,"9906":12616,"9907":1638,"9908":18046,"9909":14008,"9910":10555,"9911":8352,"9912":7528,"9913":7995,"9914":12589,"9915":3592,"9916":906,"9917":14835,"9918":11891,"9919":6399,"9920":18124,"9921":7205,"9922":17866,"9923":5571,"9924":3359,"9925":335,"9926":15795,"9927":13082,"9928":14037,"9929":1816,"9930":1219,"9931":4502,"9932":17664,"9933":15194,"9934":15285,"9935":15229,"9936":4818,"9937":8444,"9938":6787,"9939":2188,"9940":13521,"9941":13925,"9942":11163,"9943":7566,"9944":13117,"9945":12273,"9946":431,"9947":6954,"9948":7548,"9949":13687,"9950":11247,"9951":9606,"9952":12831,"9953":9213,"9954":5337,"9955":16904,"9956":5506,"9957":5266,"9958":4476,"9959":27,"9960":7849,"9961":12304,"9962":895,"9963":16162,"9964":11197,"9965":1535,"9966":2197,"9967":15070,"9968":15551,"9969":4414,"9970":5235,"9971":8680,"9972":2548,"9973":9935,"9974":7491,"9975":12171,"9976":2944,"9977":5671,"9978":6454,"9979":15807,"9980":4352,"9981":3858,"9982":4851,"9983":12987,"9984":15412,"9985":10252,"9986":8080,"9987":17338,"9988":14883,"9989":8016,"9990":12660,"9991":11712,"9992":17139,"9993":1216,"9994":8349,"9995":6906,"9996":7662,"9997":16745,"9998":15766,"9999":10629,"10000":16483,"10001":1928,"10002":17491,"10003":8016,"10004":15371,"10005":15821,"10006":3757,"10007":15775,"10008":13430,"10009":4159,"10010":16287,"10011":14059,"10012":1295,"10013":11366,"10014":8798,"10015":9349,"10016":6727,"10017":12585,"10018":4164,"10019":18357,"10020":11786,"10021":17692,"10022":12109,"10023":4943,"10024":11922,"10025":11111,"10026":5128,"10027":9282,"10028":16525,"10029":8702,"10030":8965,"10031":5510,"10032":5265,"10033":12619,"10034":7988,"10035":13146,"10036":9409,"10037":10830,"10038":11154,"10039":8083,"10040":9314,"10041":7741,"10042":12011,"10043":9462,"10044":17271,"10045":189,"10046":13514,"10047":12651,"10048":6693,"10049":12707,"10050":14087,"10051":11356,"10052":4439,"10053":11961,"10054":16278,"10055":16569,"10056":485,"10057":3306,"10058":2515,"10059":14348,"10060":9348,"10061":6425,"10062":14060,"10063":16550,"10064":3024,"10065":6696,"10066":2429,"10067":7704,"10068":12593,"10069":15844,"10070":9359,"10071":3571,"10072":3402,"10073":10148,"10074":2614,"10075":8347,"10076":15424,"10077":12189,"10078":4045,"10079":2265,"10080":162,"10081":15031,"10082":2399,"10083":7721,"10084":6844,"10085":13376,"10086":14047,"10087":11222,"10088":17112,"10089":9066,"10090":5168,"10091":7453,"10092":3861,"10093":4652,"10094":10429,"10095":5578,"10096":10487,"10097":1880,"10098":13333,"10099":10844,"10100":11402,"10101":11772,"10102":227,"10103":11525,"10104":16090,"10105":12260,"10106":12173,"10107":7951,"10108":11481,"10109":1965,"10110":10836,"10111":11174,"10112":12177,"10113":13678,"10114":4488,"10115":662,"10116":14814,"10117":6104,"10118":343,"10119":17288,"10120":9049,"10121":15904,"10122":175,"10123":10676,"10124":2948,"10125":5013,"10126":4886,"10127":3944,"10128":4353,"10129":17924,"10130":9060,"10131":2635,"10132":12314,"10133":1796,"10134":8225,"10135":12905,"10136":3772,"10137":5241,"10138":12089,"10139":9047,"10140":7643,"10141":14248,"10142":609,"10143":14427,"10144":3693,"10145":6362,"10146":11083,"10147":5222,"10148":119,"10149":10776,"10150":832,"10151":11238,"10152":4378,"10153":5084,"10154":4426,"10155":8048,"10156":2213,"10157":5237,"10158":519,"10159":14141,"10160":5274,"10161":3374,"10162":17261,"10163":12948,"10164":4038,"10165":8679,"10166":10737,"10167":6786,"10168":15559,"10169":1687,"10170":15452,"10171":13543,"10172":1384,"10173":15047,"10174":810,"10175":629,"10176":765,"10177":7850,"10178":17515,"10179":12279,"10180":16949,"10181":10483,"10182":2055,"10183":14157,"10184":13128,"10185":2951,"10186":8469,"10187":16572,"10188":12865,"10189":11814,"10190":10499,"10191":11785,"10192":2048,"10193":6851,"10194":930,"10195":1545,"10196":14854,"10197":6541,"10198":7108,"10199":1799,"10200":10943,"10201":8862,"10202":1737,"10203":10331,"10204":13260,"10205":8878,"10206":7060,"10207":1143,"10208":6562,"10209":11522,"10210":11904,"10211":2214,"10212":5495,"10213":7171,"10214":11677,"10215":17727,"10216":1660,"10217":13475,"10218":485,"10219":17800,"10220":2699,"10221":9979,"10222":4969,"10223":4687,"10224":13269,"10225":71,"10226":101,"10227":16301,"10228":12667,"10229":14368,"10230":11323,"10231":7599,"10232":1416,"10233":2931,"10234":12676,"10235":17388,"10236":9800,"10237":12886,"10238":7892,"10239":15718,"10240":11660,"10241":2769,"10242":3705,"10243":14328,"10244":13898,"10245":10606,"10246":2210,"10247":14298,"10248":12091,"10249":12952,"10250":17339,"10251":7754,"10252":10807,"10253":14242,"10254":17647,"10255":859,"10256":13923,"10257":15339,"10258":8008,"10259":16328,"10260":5406,"10261":17168,"10262":14511,"10263":9584,"10264":8939,"10265":7616,"10266":245,"10267":18181,"10268":14098,"10269":11838,"10270":2322,"10271":2733,"10272":14089,"10273":9811,"10274":6773,"10275":8009,"10276":17042,"10277":3457,"10278":2000,"10279":13186,"10280":1653,"10281":3534,"10282":16048,"10283":6729,"10284":12693,"10285":17582,"10286":5090,"10287":5756,"10288":13030,"10289":426,"10290":14822,"10291":9747,"10292":5553,"10293":8250,"10294":15019,"10295":9595,"10296":1872,"10297":4667,"10298":80,"10299":5067,"10300":6228,"10301":15136,"10302":17908,"10303":17784,"10304":10026,"10305":4613,"10306":10918,"10307":8838,"10308":16859,"10309":17972,"10310":11937,"10311":5790,"10312":10085,"10313":16406,"10314":13484,"10315":16065,"10316":18057,"10317":9882,"10318":18241,"10319":8260,"10320":16300,"10321":3161,"10322":6426,"10323":4273,"10324":10561,"10325":1514,"10326":11060,"10327":17800,"10328":7995,"10329":14707,"10330":5990,"10331":1583,"10332":2886,"10333":1736,"10334":1649,"10335":1638,"10336":14463,"10337":16906,"10338":5684,"10339":16187,"10340":7983,"10341":5405,"10342":6171,"10343":2198,"10344":16233,"10345":10422,"10346":11656,"10347":5092,"10348":9245,"10349":15583,"10350":14205,"10351":11092,"10352":2622,"10353":18322,"10354":13424,"10355":1977,"10356":699,"10357":12138,"10358":15208,"10359":825,"10360":14213,"10361":10013,"10362":16592,"10363":7255,"10364":10761,"10365":10731,"10366":14397,"10367":9950,"10368":17897,"10369":3804,"10370":5226,"10371":7261,"10372":18028,"10373":16554,"10374":14324,"10375":1124,"10376":7301,"10377":14327,"10378":7330,"10379":12293,"10380":17247,"10381":6517,"10382":5376,"10383":6812,"10384":12913,"10385":240,"10386":12075,"10387":248,"10388":16204,"10389":4306,"10390":10740,"10391":13282,"10392":2738,"10393":3698,"10394":12075,"10395":16005,"10396":8336,"10397":3717,"10398":12062,"10399":1086,"10400":13248,"10401":16191,"10402":10001,"10403":14863,"10404":9911,"10405":18086,"10406":7681,"10407":8475,"10408":17055,"10409":18228,"10410":11835,"10411":417,"10412":5730,"10413":14094,"10414":16923,"10415":18028,"10416":13847,"10417":14981,"10418":1770,"10419":14005,"10420":16524,"10421":5214,"10422":440,"10423":15622,"10424":8908,"10425":281,"10426":16922,"10427":14777,"10428":3295,"10429":17029,"10430":7305,"10431":13217,"10432":16563,"10433":11646,"10434":9329,"10435":160,"10436":5409,"10437":10726,"10438":16938,"10439":11555,"10440":2580,"10441":16393,"10442":1867,"10443":9137,"10444":3025,"10445":6529,"10446":17717,"10447":10478,"10448":2087,"10449":12739,"10450":13762,"10451":1719,"10452":8275,"10453":4750,"10454":1546,"10455":7491,"10456":1692,"10457":14356,"10458":5992,"10459":7338,"10460":3122,"10461":14186,"10462":17832,"10463":14263,"10464":10495,"10465":14254,"10466":1725,"10467":13353,"10468":6579,"10469":14171,"10470":4876,"10471":11646,"10472":2469,"10473":13840,"10474":13273,"10475":3249,"10476":4614,"10477":15988,"10478":12653,"10479":14709,"10480":12316,"10481":6649,"10482":5790,"10483":14146,"10484":3056,"10485":9990,"10486":9807,"10487":10314,"10488":14838,"10489":4898,"10490":7449,"10491":2782,"10492":10481,"10493":4583,"10494":10997,"10495":5853,"10496":12921,"10497":10299,"10498":17266,"10499":9475,"10500":18324,"10501":250,"10502":12823,"10503":14195,"10504":11085,"10505":17793,"10506":10574,"10507":14661,"10508":4517,"10509":11853,"10510":14174,"10511":7093,"10512":14132,"10513":11962,"10514":16018,"10515":5374,"10516":2475,"10517":1702,"10518":18157,"10519":13136,"10520":11309,"10521":3583,"10522":5841,"10523":1568,"10524":8710,"10525":15370,"10526":491,"10527":13675,"10528":8818,"10529":10465,"10530":7131,"10531":4838,"10532":8694,"10533":11561,"10534":2157,"10535":3641,"10536":3203,"10537":14252,"10538":4879,"10539":3953,"10540":1343,"10541":3911,"10542":17031,"10543":12435,"10544":17565,"10545":15955,"10546":6400,"10547":6013,"10548":1501,"10549":17087,"10550":15752,"10551":1985,"10552":9780,"10553":7494,"10554":6986,"10555":17872,"10556":314,"10557":10713,"10558":11388,"10559":11990,"10560":2219,"10561":14435,"10562":9906,"10563":6480,"10564":1929,"10565":1673,"10566":7114,"10567":661,"10568":3454,"10569":5703,"10570":7719,"10571":9596,"10572":11140,"10573":2025,"10574":16455,"10575":17778,"10576":790,"10577":7806,"10578":16621,"10579":2407,"10580":1442,"10581":758,"10582":6161,"10583":2385,"10584":18178,"10585":11122,"10586":3710,"10587":9510,"10588":3329,"10589":4603,"10590":15026,"10591":6537,"10592":7276,"10593":16658,"10594":6445,"10595":12834,"10596":2424,"10597":18275,"10598":672,"10599":6589,"10600":2482,"10601":11433,"10602":107,"10603":7280,"10604":4805,"10605":6235,"10606":8240,"10607":5592,"10608":12111,"10609":16160,"10610":12303,"10611":2800,"10612":7593,"10613":15780,"10614":2561,"10615":5581,"10616":881,"10617":9549,"10618":2178,"10619":3311,"10620":8597,"10621":1284,"10622":13057,"10623":17269,"10624":8518,"10625":6613,"10626":9018,"10627":12087,"10628":5213,"10629":5528,"10630":2979,"10631":12230,"10632":3221,"10633":13567,"10634":9440,"10635":898,"10636":984,"10637":6478,"10638":11508,"10639":12539,"10640":142,"10641":3979,"10642":9189,"10643":6527,"10644":18312,"10645":17811,"10646":11631,"10647":12695,"10648":17144,"10649":4345,"10650":10981,"10651":17491,"10652":1787,"10653":15710,"10654":3296,"10655":6289,"10656":812,"10657":14689,"10658":15060,"10659":17231,"10660":11638,"10661":29,"10662":13399,"10663":13294,"10664":3869,"10665":1420,"10666":14531,"10667":6931,"10668":15193,"10669":1810,"10670":15910,"10671":4057,"10672":7411,"10673":18065,"10674":16648,"10675":661,"10676":12612,"10677":14873,"10678":17277,"10679":17532,"10680":6668,"10681":10308,"10682":7161,"10683":5043,"10684":7230,"10685":8088,"10686":11770,"10687":9766,"10688":12204,"10689":3659,"10690":67,"10691":4176,"10692":6731,"10693":4515,"10694":8097,"10695":4516,"10696":5492,"10697":18117,"10698":15437,"10699":10497,"10700":6731,"10701":15150,"10702":6144,"10703":2421,"10704":7569,"10705":2771,"10706":3454,"10707":761,"10708":5363,"10709":6090,"10710":16161,"10711":15792,"10712":8584,"10713":3011,"10714":14294,"10715":6110,"10716":4146,"10717":4452,"10718":9206,"10719":6016,"10720":10978,"10721":10098,"10722":13207,"10723":14441,"10724":8550,"10725":3436,"10726":5601,"10727":4294,"10728":8831,"10729":8161,"10730":9658,"10731":15664,"10732":5076,"10733":11375,"10734":10855,"10735":16350,"10736":15102,"10737":17048,"10738":3954,"10739":3178,"10740":4789,"10741":8279,"10742":13478,"10743":7851,"10744":7640,"10745":3417,"10746":17252,"10747":7818,"10748":6229,"10749":16185,"10750":10052,"10751":2271,"10752":11044,"10753":11070,"10754":15226,"10755":15437,"10756":5806,"10757":11429,"10758":5076,"10759":891,"10760":13766,"10761":1390,"10762":8191,"10763":14205,"10764":12931,"10765":1990,"10766":4481,"10767":18102,"10768":2159,"10769":1803,"10770":13792,"10771":5087,"10772":5312,"10773":15865,"10774":12576,"10775":1930,"10776":9234,"10777":11425,"10778":17650,"10779":2743,"10780":2319,"10781":1471,"10782":16749,"10783":129,"10784":6746,"10785":16000,"10786":3777,"10787":14472,"10788":6241,"10789":11550,"10790":1861,"10791":15815,"10792":925,"10793":3201,"10794":8433,"10795":9129,"10796":16056,"10797":2212,"10798":3401,"10799":5138,"10800":8821,"10801":13558,"10802":9691,"10803":2316,"10804":18132,"10805":6706,"10806":14480,"10807":3029,"10808":17719,"10809":11043,"10810":17822,"10811":11450,"10812":10547,"10813":7946,"10814":4198,"10815":6939,"10816":14132,"10817":14070,"10818":4534,"10819":14584,"10820":1792,"10821":6847,"10822":16710,"10823":8567,"10824":7979,"10825":4557,"10826":7888,"10827":1101,"10828":10322,"10829":16417,"10830":7297,"10831":9052,"10832":712,"10833":10297,"10834":14802,"10835":10963,"10836":2336,"10837":18253,"10838":2636,"10839":6726,"10840":7285,"10841":455,"10842":17677,"10843":10067,"10844":88,"10845":13524,"10846":2229,"10847":2579,"10848":6036,"10849":14524,"10850":457,"10851":17306,"10852":9655,"10853":17388,"10854":6306,"10855":2466,"10856":6579,"10857":6781,"10858":3789,"10859":7080,"10860":14129,"10861":6865,"10862":2383,"10863":10531,"10864":15902,"10865":10427,"10866":12612,"10867":2762,"10868":418,"10869":2940,"10870":6422,"10871":6575,"10872":12595,"10873":16341,"10874":16278,"10875":8805,"10876":11260,"10877":14155,"10878":8070,"10879":5539,"10880":15301,"10881":220,"10882":11821,"10883":15790,"10884":14238,"10885":10800,"10886":12960,"10887":14907,"10888":1772,"10889":3112,"10890":6082,"10891":5806,"10892":6320,"10893":523,"10894":17666,"10895":452,"10896":8743,"10897":13081,"10898":8766,"10899":4925,"10900":5841,"10901":12502,"10902":6575,"10903":2021,"10904":10172,"10905":12908,"10906":12049,"10907":17375,"10908":14575,"10909":17395,"10910":15055,"10911":377,"10912":2776,"10913":473,"10914":14660,"10915":6820,"10916":13138,"10917":16853,"10918":8838,"10919":17812,"10920":199,"10921":6608,"10922":13754,"10923":17935,"10924":8722,"10925":14293,"10926":1008,"10927":1624,"10928":1982,"10929":14747,"10930":9793,"10931":7655,"10932":1227,"10933":5498,"10934":10966,"10935":11046,"10936":4136,"10937":6496,"10938":5638,"10939":18356,"10940":17082,"10941":10289,"10942":10694,"10943":15651,"10944":11329,"10945":10038,"10946":17794,"10947":8836,"10948":6754,"10949":2444,"10950":17482,"10951":5646,"10952":4925,"10953":5203,"10954":11259,"10955":12986,"10956":17940,"10957":5244,"10958":16397,"10959":354,"10960":2399,"10961":14400,"10962":12511,"10963":17515,"10964":14845,"10965":11413,"10966":4819,"10967":6890,"10968":13886,"10969":817,"10970":2721,"10971":5896,"10972":411,"10973":2127,"10974":9313,"10975":4862,"10976":7006,"10977":8435,"10978":8933,"10979":10971,"10980":1564,"10981":8209,"10982":17235,"10983":4898,"10984":11332,"10985":9584,"10986":12025,"10987":6366,"10988":4409,"10989":12228,"10990":8166,"10991":14318,"10992":10531,"10993":17942,"10994":2248,"10995":2894,"10996":12912,"10997":11693,"10998":14828,"10999":5497,"11000":3318,"11001":8834,"11002":12326,"11003":613,"11004":7947,"11005":10260,"11006":18344,"11007":942,"11008":9115,"11009":5983,"11010":11503,"11011":7150,"11012":14006,"11013":2323,"11014":14241,"11015":11719,"11016":3169,"11017":17877,"11018":16457,"11019":810,"11020":747,"11021":13350,"11022":1763,"11023":11529,"11024":4931,"11025":8828,"11026":3729,"11027":8496,"11028":10987,"11029":9145,"11030":17640,"11031":2532,"11032":11439,"11033":13490,"11034":2518,"11035":10766,"11036":16494,"11037":6038,"11038":17388,"11039":17618,"11040":4116,"11041":17102,"11042":15926,"11043":2705,"11044":3851,"11045":17391,"11046":12433,"11047":13670,"11048":9866,"11049":6621,"11050":6134,"11051":2747,"11052":6417,"11053":4878,"11054":10419,"11055":15946,"11056":15202,"11057":8116,"11058":15625,"11059":599,"11060":15611,"11061":2568,"11062":18048,"11063":17007,"11064":12069,"11065":7383,"11066":16327,"11067":12714,"11068":11675,"11069":9845,"11070":9056,"11071":4097,"11072":10305,"11073":153,"11074":7148,"11075":16321,"11076":9304,"11077":18331,"11078":11186,"11079":17749,"11080":13363,"11081":13721,"11082":11019,"11083":4539,"11084":7813,"11085":16752,"11086":9591,"11087":6463,"11088":287,"11089":17685,"11090":9075,"11091":11649,"11092":16530,"11093":8882,"11094":11036,"11095":2276,"11096":14133,"11097":15437,"11098":5869,"11099":2206,"11100":6951,"11101":5203,"11102":10120,"11103":11945,"11104":9506,"11105":18308,"11106":5454,"11107":5027,"11108":18045,"11109":17100,"11110":14064,"11111":12726,"11112":7004,"11113":12166,"11114":5181,"11115":11300,"11116":17937,"11117":11201,"11118":9980,"11119":17491,"11120":16821,"11121":15346,"11122":10793,"11123":14451,"11124":2179,"11125":2003,"11126":14265,"11127":156,"11128":13312,"11129":10212,"11130":2038,"11131":4604,"11132":9777,"11133":18062,"11134":2837,"11135":9799,"11136":16960,"11137":13997,"11138":12241,"11139":9176,"11140":12780,"11141":18244,"11142":5408,"11143":247,"11144":6034,"11145":5682,"11146":11477,"11147":6871,"11148":6057,"11149":14322,"11150":5330,"11151":9797,"11152":12734,"11153":8245,"11154":17975,"11155":3882,"11156":9290,"11157":3222,"11158":2627,"11159":10814,"11160":14742,"11161":6798,"11162":18187,"11163":6068,"11164":5148,"11165":11138,"11166":15914,"11167":13129,"11168":6227,"11169":12828,"11170":14978,"11171":4378,"11172":3,"11173":14744,"11174":15066,"11175":3226,"11176":7236,"11177":15651,"11178":13315,"11179":16186,"11180":11190,"11181":15269,"11182":3010,"11183":6828,"11184":11056,"11185":6139,"11186":9025,"11187":14947,"11188":3437,"11189":14080,"11190":8392,"11191":8429,"11192":9200,"11193":11915,"11194":1611,"11195":1485,"11196":13909,"11197":4258,"11198":6749,"11199":3413,"11200":9355,"11201":10385,"11202":15110,"11203":8287,"11204":4863,"11205":17279,"11206":9355,"11207":8774,"11208":12775,"11209":5626,"11210":13557,"11211":8368,"11212":17179,"11213":3313,"11214":6551,"11215":6003,"11216":8426,"11217":6631,"11218":5352,"11219":16658,"11220":6374,"11221":519,"11222":8894,"11223":198,"11224":14726,"11225":4182,"11226":6199,"11227":8877,"11228":15027,"11229":2708,"11230":15456,"11231":9550,"11232":2358,"11233":12159,"11234":16188,"11235":7208,"11236":3182,"11237":3090,"11238":10045,"11239":2501,"11240":4055,"11241":16755,"11242":11642,"11243":8048,"11244":6397,"11245":15400,"11246":3682,"11247":14808,"11248":13612,"11249":14714,"11250":1370,"11251":11765,"11252":56,"11253":15679,"11254":2199,"11255":11024,"11256":10732,"11257":17732,"11258":11179,"11259":9216,"11260":10387,"11261":16767,"11262":12894,"11263":15353,"11264":13332,"11265":1730,"11266":15788,"11267":12970,"11268":10832,"11269":3486,"11270":14867,"11271":14672,"11272":11896,"11273":14258,"11274":9604,"11275":5844,"11276":6380,"11277":17420,"11278":4341,"11279":18256,"11280":12544,"11281":16783,"11282":3756,"11283":1904,"11284":3332,"11285":6242,"11286":9934,"11287":15400,"11288":6855,"11289":2175,"11290":9021,"11291":15260,"11292":7347,"11293":1500,"11294":7197,"11295":10998,"11296":18127,"11297":6951,"11298":8762,"11299":6068,"11300":3990,"11301":17523,"11302":1494,"11303":11014,"11304":5664,"11305":5356,"11306":14909,"11307":2637,"11308":6827,"11309":16677,"11310":8559,"11311":6923,"11312":11543,"11313":1206,"11314":916,"11315":15460,"11316":13578,"11317":9759,"11318":416,"11319":17398,"11320":5737,"11321":13042,"11322":12523,"11323":5662,"11324":1426,"11325":13474,"11326":5878,"11327":9259,"11328":17679,"11329":13931,"11330":15971,"11331":1636,"11332":5371,"11333":236,"11334":11422,"11335":4765,"11336":13496,"11337":9312,"11338":2533,"11339":8528,"11340":10577,"11341":17009,"11342":2428,"11343":1226,"11344":10878,"11345":18027,"11346":9803,"11347":4102,"11348":8455,"11349":11351,"11350":13974,"11351":2014,"11352":17522,"11353":14512,"11354":3598,"11355":15358,"11356":621,"11357":7421,"11358":3038,"11359":15126,"11360":1458,"11361":7818,"11362":1195,"11363":4398,"11364":13711,"11365":7673,"11366":8286,"11367":592,"11368":10627,"11369":16217,"11370":2014,"11371":7283,"11372":12492,"11373":2130,"11374":9195,"11375":1350,"11376":13073,"11377":1676,"11378":12544,"11379":1410,"11380":18256,"11381":1433,"11382":15739,"11383":5177,"11384":4618,"11385":18236,"11386":16148,"11387":9822,"11388":2765,"11389":2640,"11390":14462,"11391":7666,"11392":7732,"11393":6590,"11394":11928,"11395":7603,"11396":8392,"11397":954,"11398":6480,"11399":9159,"11400":7262,"11401":17095,"11402":12382,"11403":8028,"11404":17590,"11405":3242,"11406":5685,"11407":3778,"11408":13324,"11409":760,"11410":8485,"11411":4402,"11412":2747,"11413":5629,"11414":15130,"11415":14473,"11416":6415,"11417":1114,"11418":14084,"11419":7994,"11420":16329,"11421":9181,"11422":14183,"11423":14732,"11424":5027,"11425":615,"11426":16537,"11427":6969,"11428":11255,"11429":745,"11430":15209,"11431":11201,"11432":12861,"11433":15609,"11434":10994,"11435":13084,"11436":16297,"11437":16469,"11438":12658,"11439":5307,"11440":1674,"11441":1205,"11442":14755,"11443":1746,"11444":3439,"11445":6289,"11446":4808,"11447":12089,"11448":10510,"11449":2984,"11450":13878,"11451":10574,"11452":18077,"11453":14804,"11454":12302,"11455":7740,"11456":9818,"11457":444,"11458":16824,"11459":4767,"11460":17124,"11461":5122,"11462":18302,"11463":5455,"11464":16901,"11465":4053,"11466":13712,"11467":14627,"11468":11793,"11469":12027,"11470":10011,"11471":297,"11472":3197,"11473":9156,"11474":6237,"11475":16054,"11476":1052,"11477":10746,"11478":5891,"11479":91,"11480":13875,"11481":16106,"11482":16808,"11483":3774,"11484":17709,"11485":3616,"11486":16613,"11487":1418,"11488":17751,"11489":2741,"11490":6740,"11491":1807,"11492":18051,"11493":10603,"11494":1093,"11495":16588,"11496":3626,"11497":3377,"11498":3529,"11499":11687,"11500":13751,"11501":13611,"11502":12471,"11503":15013,"11504":13286,"11505":6748,"11506":4496,"11507":13904,"11508":10916,"11509":5757,"11510":17744,"11511":2464,"11512":13476,"11513":2472,"11514":1602,"11515":2954,"11516":14443,"11517":1906,"11518":3873,"11519":8350,"11520":17095,"11521":8254,"11522":5363,"11523":12577,"11524":359,"11525":16968,"11526":17400,"11527":5603,"11528":13999,"11529":6443,"11530":14583,"11531":11334,"11532":3717,"11533":2484,"11534":16599,"11535":2498,"11536":2312,"11537":615,"11538":1046,"11539":3500,"11540":17029,"11541":11559,"11542":5852,"11543":5635,"11544":2217,"11545":8398,"11546":6430,"11547":10988,"11548":5275,"11549":11512,"11550":4464,"11551":15616,"11552":6040,"11553":6187,"11554":15412,"11555":5752,"11556":8287,"11557":13078,"11558":9551,"11559":11451,"11560":8647,"11561":478,"11562":16699,"11563":15620,"11564":2565,"11565":4294,"11566":1026,"11567":13115,"11568":12229,"11569":10040,"11570":11833,"11571":9660,"11572":16030,"11573":12349,"11574":7721,"11575":12166,"11576":16465,"11577":10028,"11578":7457,"11579":8498,"11580":6718,"11581":10077,"11582":10997,"11583":15383,"11584":18024,"11585":12688,"11586":10612,"11587":6951,"11588":3577,"11589":1865,"11590":1852,"11591":18356,"11592":11149,"11593":10141,"11594":13188,"11595":11763,"11596":2453,"11597":18177,"11598":1389,"11599":313,"11600":4965,"11601":1150,"11602":13029,"11603":4438,"11604":6867,"11605":10837,"11606":16841,"11607":3903,"11608":16955,"11609":5260,"11610":1118,"11611":18171,"11612":8447,"11613":15261,"11614":1104,"11615":13808,"11616":4095,"11617":6974,"11618":14110,"11619":1886,"11620":15276,"11621":9629,"11622":8733,"11623":2629,"11624":13635,"11625":16485,"11626":13660,"11627":17201,"11628":747,"11629":10965,"11630":18067,"11631":17569,"11632":5023,"11633":8821,"11634":3635,"11635":18164,"11636":14733,"11637":6180,"11638":1046,"11639":7537,"11640":13783,"11641":10842,"11642":16546,"11643":3066,"11644":8887,"11645":9306,"11646":10215,"11647":5861,"11648":17116,"11649":7240,"11650":2999,"11651":12925,"11652":13224,"11653":8791,"11654":16933,"11655":12320,"11656":9850,"11657":17341,"11658":268,"11659":4590,"11660":8466,"11661":13956,"11662":8176,"11663":14985,"11664":4415,"11665":15169,"11666":533,"11667":14829,"11668":2535,"11669":1692,"11670":10540,"11671":9657,"11672":11998,"11673":9655,"11674":1471,"11675":9308,"11676":9854,"11677":6781,"11678":14663,"11679":13185,"11680":16726,"11681":10428,"11682":3356,"11683":1737,"11684":12779,"11685":8403,"11686":7256,"11687":1124,"11688":17513,"11689":17212,"11690":6104,"11691":4743,"11692":1494,"11693":9639,"11694":16821,"11695":14484,"11696":10441,"11697":8616,"11698":7606,"11699":4013,"11700":12578,"11701":16309,"11702":16589,"11703":555,"11704":16483,"11705":16048,"11706":13313,"11707":17352,"11708":8358,"11709":17411,"11710":15145,"11711":17990,"11712":5981,"11713":12155,"11714":9938,"11715":15138,"11716":2980,"11717":4867,"11718":15741,"11719":12175,"11720":4977,"11721":10742,"11722":2940,"11723":11262,"11724":1831,"11725":3078,"11726":5381,"11727":13264,"11728":3643,"11729":14655,"11730":5403,"11731":7130,"11732":10148,"11733":11316,"11734":8513,"11735":3763,"11736":326,"11737":1302,"11738":17455,"11739":9805,"11740":13984,"11741":3048,"11742":17740,"11743":1405,"11744":5028,"11745":12822,"11746":12572,"11747":1230,"11748":4906,"11749":8866,"11750":6597,"11751":14503,"11752":4688,"11753":16918,"11754":12080,"11755":14987,"11756":1537,"11757":16166,"11758":13535,"11759":2525,"11760":14088,"11761":2463,"11762":2034,"11763":14271,"11764":13470,"11765":17759,"11766":1937,"11767":931,"11768":5144,"11769":18350,"11770":5871,"11771":15212,"11772":14057,"11773":13,"11774":8806,"11775":7268,"11776":18153,"11777":10149,"11778":9820,"11779":14299,"11780":14734,"11781":1353,"11782":16083,"11783":10934,"11784":14355,"11785":15897,"11786":14262,"11787":12271,"11788":8627,"11789":2122,"11790":1834,"11791":11104,"11792":2980,"11793":4025,"11794":11179,"11795":17183,"11796":12810,"11797":14834,"11798":8586,"11799":7482,"11800":16922,"11801":8024,"11802":10923,"11803":483,"11804":6805,"11805":13284,"11806":16703,"11807":17485,"11808":5855,"11809":7430,"11810":8208,"11811":8049,"11812":15964,"11813":7892,"11814":4019,"11815":7885,"11816":4919,"11817":7749,"11818":7533,"11819":6012,"11820":2173,"11821":10291,"11822":17742,"11823":10588,"11824":726,"11825":12724,"11826":135,"11827":3271,"11828":11675,"11829":17611,"11830":15710,"11831":15384,"11832":5809,"11833":3326,"11834":9445,"11835":1319,"11836":7825,"11837":4704,"11838":4801,"11839":10077,"11840":3133,"11841":17884,"11842":10530,"11843":8985,"11844":8995,"11845":11833,"11846":12673,"11847":490,"11848":16678,"11849":12866,"11850":11622,"11851":17327,"11852":331,"11853":11456,"11854":3386,"11855":2814,"11856":16284,"11857":8351,"11858":15652,"11859":11216,"11860":12986,"11861":5540,"11862":2023,"11863":4899,"11864":9741,"11865":353,"11866":8840,"11867":1715,"11868":3597,"11869":2345,"11870":12312,"11871":6888,"11872":14300,"11873":3384,"11874":8075,"11875":14465,"11876":10418,"11877":8314,"11878":11903,"11879":4973,"11880":8508,"11881":9151,"11882":16709,"11883":1022,"11884":12063,"11885":10954,"11886":4686,"11887":9505,"11888":17509,"11889":5418,"11890":7718,"11891":2103,"11892":8514,"11893":9322,"11894":10456,"11895":15567,"11896":1731,"11897":5279,"11898":15097,"11899":11151,"11900":5257,"11901":4447,"11902":10294,"11903":4678,"11904":6949,"11905":17640,"11906":31,"11907":7566,"11908":364,"11909":13990,"11910":11871,"11911":11697,"11912":533,"11913":240,"11914":1155,"11915":2070,"11916":8946,"11917":10743,"11918":8252,"11919":5834,"11920":2189,"11921":14340,"11922":7103,"11923":943,"11924":14197,"11925":14971,"11926":3986,"11927":13487,"11928":15430,"11929":1912,"11930":12281,"11931":14353,"11932":11344,"11933":7811,"11934":10247,"11935":7955,"11936":3095,"11937":11283,"11938":9381,"11939":13236,"11940":9190,"11941":10894,"11942":2142,"11943":15637,"11944":13845,"11945":15666,"11946":577,"11947":2841,"11948":2594,"11949":1174,"11950":10001,"11951":4101,"11952":12115,"11953":17032,"11954":10500,"11955":4685,"11956":2767,"11957":9342,"11958":128,"11959":16747,"11960":533,"11961":7432,"11962":7838,"11963":383,"11964":13733,"11965":16606,"11966":3774,"11967":2929,"11968":1848,"11969":18002,"11970":7595,"11971":17899,"11972":9077,"11973":10016,"11974":12373,"11975":8827,"11976":3071,"11977":8995,"11978":16235,"11979":9008,"11980":9231,"11981":14612,"11982":12101,"11983":15605,"11984":6876,"11985":998,"11986":2286,"11987":11854,"11988":6401,"11989":261,"11990":2104,"11991":12946,"11992":13036,"11993":9344,"11994":1691,"11995":9071,"11996":6180,"11997":2735,"11998":15569,"11999":8369,"12000":17399,"12001":6073,"12002":4412,"12003":9636,"12004":3433,"12005":9237,"12006":10490,"12007":9965,"12008":9841,"12009":16518,"12010":10212,"12011":4625,"12012":6469,"12013":13001,"12014":14206,"12015":16294,"12016":17204,"12017":8600,"12018":13859,"12019":7059,"12020":2686,"12021":46,"12022":5564,"12023":17956,"12024":11588,"12025":18243,"12026":16568,"12027":2040,"12028":17419,"12029":13713,"12030":7716,"12031":3848,"12032":7277,"12033":4413,"12034":7670,"12035":4109,"12036":5006,"12037":2700,"12038":15950,"12039":10418,"12040":2213,"12041":6267,"12042":12812,"12043":10474,"12044":3574,"12045":5059,"12046":8760,"12047":3766,"12048":10188,"12049":188,"12050":4274,"12051":360,"12052":6553,"12053":7965,"12054":10344,"12055":3391,"12056":5119,"12057":5481,"12058":3885,"12059":13496,"12060":14064,"12061":133,"12062":10924,"12063":3077,"12064":15884,"12065":9662,"12066":5352,"12067":15332,"12068":3617,"12069":17823,"12070":10367,"12071":4705,"12072":8,"12073":10533,"12074":2127,"12075":16205,"12076":10104,"12077":7447,"12078":6139,"12079":794,"12080":1123,"12081":5304,"12082":5558,"12083":1154,"12084":8494,"12085":647,"12086":2265,"12087":17967,"12088":3149,"12089":6867,"12090":9064,"12091":15313,"12092":3632,"12093":15461,"12094":9887,"12095":1028,"12096":95,"12097":4929,"12098":4705,"12099":3921,"12100":11476,"12101":2037,"12102":14260,"12103":6370,"12104":12499,"12105":11135,"12106":8311,"12107":6413,"12108":6551,"12109":2212,"12110":7449,"12111":7355,"12112":4611,"12113":11816,"12114":4739,"12115":1148,"12116":8386,"12117":9822,"12118":17207,"12119":8755,"12120":7414,"12121":5141,"12122":11554,"12123":9934,"12124":4720,"12125":7272,"12126":14031,"12127":9945,"12128":7890,"12129":7308,"12130":8985,"12131":4715,"12132":12250,"12133":8768,"12134":14998,"12135":17663,"12136":12586,"12137":15796,"12138":13782,"12139":13706,"12140":10990,"12141":11164,"12142":6757,"12143":16525,"12144":1265,"12145":15338,"12146":6639,"12147":4407,"12148":16852,"12149":347,"12150":2891,"12151":7893,"12152":12574,"12153":5140,"12154":2075,"12155":17708,"12156":9148,"12157":17335,"12158":15732,"12159":10023,"12160":11041,"12161":14343,"12162":9789,"12163":16656,"12164":5213,"12165":9648,"12166":13985,"12167":4315,"12168":13209,"12169":13771,"12170":17185,"12171":9211,"12172":3295,"12173":6477,"12174":10318,"12175":3764,"12176":13547,"12177":15235,"12178":2600,"12179":6915,"12180":2864,"12181":563,"12182":12334,"12183":7544,"12184":16274,"12185":17043,"12186":13608,"12187":5608,"12188":9309,"12189":12925,"12190":2572,"12191":16705,"12192":12853,"12193":9629,"12194":10105,"12195":15279,"12196":683,"12197":12596,"12198":6779,"12199":9021,"12200":3674,"12201":668,"12202":1418,"12203":128,"12204":14784,"12205":1120,"12206":4899,"12207":2780,"12208":3187,"12209":8729,"12210":640,"12211":6650,"12212":6016,"12213":3749,"12214":15521,"12215":3748,"12216":4976,"12217":12129,"12218":3648,"12219":17303,"12220":16131,"12221":14712,"12222":307,"12223":11122,"12224":5719,"12225":11950,"12226":6968,"12227":7882,"12228":3208,"12229":12804,"12230":5955,"12231":4540,"12232":13711,"12233":636,"12234":12581,"12235":15245,"12236":9707,"12237":10570,"12238":12994,"12239":1670,"12240":3347,"12241":10055,"12242":2762,"12243":8350,"12244":13726,"12245":885,"12246":18005,"12247":11588,"12248":5801,"12249":13289,"12250":2502,"12251":13097,"12252":10972,"12253":4982,"12254":586,"12255":6198,"12256":15943,"12257":4433,"12258":8052,"12259":1543,"12260":6365,"12261":10896,"12262":2226,"12263":4432,"12264":10171,"12265":17254,"12266":4505,"12267":8979,"12268":4803,"12269":16170,"12270":5617,"12271":6145,"12272":14702,"12273":721,"12274":5501,"12275":5038,"12276":5893,"12277":7072,"12278":6998,"12279":4324,"12280":3336,"12281":17023,"12282":6198,"12283":6677,"12284":9289,"12285":4148,"12286":3666,"12287":6857,"12288":2223,"12289":2289,"12290":4315,"12291":6895,"12292":11688,"12293":12530,"12294":7000,"12295":14986,"12296":12284,"12297":2651,"12298":11578,"12299":5414,"12300":53,"12301":2437,"12302":15294,"12303":2921,"12304":5378,"12305":13828,"12306":3210,"12307":15319,"12308":1766,"12309":9591,"12310":8143,"12311":16081,"12312":4628,"12313":5264,"12314":12392,"12315":8611,"12316":16521,"12317":17607,"12318":4513,"12319":14491,"12320":6203,"12321":16403,"12322":5457,"12323":10629,"12324":5466,"12325":3095,"12326":16774,"12327":1437,"12328":1223,"12329":15344,"12330":9472,"12331":4155,"12332":14230,"12333":16492,"12334":2,"12335":1016,"12336":2417,"12337":18256,"12338":17723,"12339":2808,"12340":8114,"12341":16156,"12342":6372,"12343":4167,"12344":8548,"12345":14013,"12346":5711,"12347":1603,"12348":16379,"12349":16206,"12350":10148,"12351":359,"12352":4073,"12353":1343,"12354":17533,"12355":7105,"12356":16100,"12357":16652,"12358":6681,"12359":13561,"12360":6410,"12361":8539,"12362":6813,"12363":16951,"12364":16703,"12365":13694,"12366":6561,"12367":11298,"12368":15653,"12369":2737,"12370":13452,"12371":481,"12372":9165,"12373":4681,"12374":17669,"12375":15855,"12376":9832,"12377":4219,"12378":6691,"12379":6364,"12380":18226,"12381":14013,"12382":5069,"12383":13008,"12384":12194,"12385":5447,"12386":17742,"12387":6997,"12388":11696,"12389":881,"12390":7186,"12391":11011,"12392":15225,"12393":12611,"12394":4752,"12395":9480,"12396":10477,"12397":16638,"12398":11313,"12399":14823,"12400":17003,"12401":3161,"12402":4850,"12403":4368,"12404":1617,"12405":5854,"12406":9981,"12407":12470,"12408":18262,"12409":10891,"12410":4146,"12411":18317,"12412":14237,"12413":1846,"12414":14395,"12415":9254,"12416":9657,"12417":11212,"12418":3833,"12419":16022,"12420":5155,"12421":6052,"12422":1025,"12423":12004,"12424":14583,"12425":5944,"12426":4392,"12427":9557,"12428":8950,"12429":14614,"12430":5013,"12431":17241,"12432":1897,"12433":11042,"12434":1460,"12435":5852,"12436":3435,"12437":7947,"12438":2743,"12439":2106,"12440":7298,"12441":7020,"12442":3143,"12443":13296,"12444":3936,"12445":3622,"12446":3023,"12447":3552,"12448":8990,"12449":5345,"12450":13384,"12451":9290,"12452":13401,"12453":13456,"12454":1492,"12455":640,"12456":16973,"12457":17853,"12458":6152,"12459":11210,"12460":4222,"12461":5324,"12462":5685,"12463":8583,"12464":12184,"12465":12032,"12466":3208,"12467":5169,"12468":7084,"12469":3782,"12470":9473,"12471":434,"12472":10306,"12473":14260,"12474":1748,"12475":1661,"12476":16123,"12477":10867,"12478":5580,"12479":6978,"12480":4543,"12481":17776,"12482":5071,"12483":13505,"12484":1476,"12485":11947,"12486":5024,"12487":7911,"12488":5593,"12489":9839,"12490":18027,"12491":10020,"12492":15863,"12493":15369,"12494":8400,"12495":14288,"12496":14654,"12497":9075,"12498":12752,"12499":10059,"12500":13996,"12501":12503,"12502":17078,"12503":2814,"12504":9650,"12505":12039,"12506":2661,"12507":7873,"12508":7016,"12509":8785,"12510":14184,"12511":11631,"12512":14583,"12513":12122,"12514":6421,"12515":15884,"12516":15623,"12517":15421,"12518":11903,"12519":4723,"12520":7621,"12521":11832,"12522":15127,"12523":15405,"12524":6114,"12525":10496,"12526":8179,"12527":16737,"12528":1593,"12529":11918,"12530":14790,"12531":5520,"12532":14523,"12533":9350,"12534":3379,"12535":3566,"12536":11753,"12537":8651,"12538":13113,"12539":130,"12540":11191,"12541":16704,"12542":195,"12543":9193,"12544":16036,"12545":18238,"12546":1196,"12547":10110,"12548":13493,"12549":3525,"12550":13488,"12551":3638,"12552":224,"12553":14181,"12554":11685,"12555":16043,"12556":1145,"12557":16144,"12558":6602,"12559":8088,"12560":4311,"12561":7746,"12562":11165,"12563":6854,"12564":11128,"12565":16074,"12566":8174,"12567":10488,"12568":540,"12569":16371,"12570":958,"12571":10346,"12572":9285,"12573":16931,"12574":10730,"12575":712,"12576":5788,"12577":688,"12578":12919,"12579":8941,"12580":1466,"12581":7791,"12582":7271,"12583":4242,"12584":17724,"12585":13663,"12586":5035,"12587":14836,"12588":1913,"12589":9572,"12590":15064,"12591":3646,"12592":17828,"12593":15382,"12594":11690,"12595":16966,"12596":2103,"12597":15532,"12598":11967,"12599":5442,"12600":8702,"12601":16095,"12602":11960,"12603":13545,"12604":12714,"12605":17871,"12606":3322,"12607":4521,"12608":17126,"12609":10092,"12610":16092,"12611":17734,"12612":14002,"12613":379,"12614":8343,"12615":17115,"12616":16824,"12617":15946,"12618":1391,"12619":4834,"12620":15786,"12621":17344,"12622":2253,"12623":10874,"12624":13339,"12625":3017,"12626":7737,"12627":3820,"12628":2966,"12629":14311,"12630":4087,"12631":8498,"12632":16880,"12633":9322,"12634":13534,"12635":10637,"12636":18104,"12637":17628,"12638":9683,"12639":12933,"12640":14640,"12641":6028,"12642":11048,"12643":4747,"12644":10327,"12645":2067,"12646":12560,"12647":1437,"12648":4130,"12649":16430,"12650":553,"12651":7495,"12652":3922,"12653":8010,"12654":2550,"12655":10780,"12656":500,"12657":12044,"12658":17430,"12659":9105,"12660":96,"12661":17244,"12662":7402,"12663":15980,"12664":8530,"12665":16752,"12666":10447,"12667":15997,"12668":602,"12669":6385,"12670":16068,"12671":3316,"12672":6113,"12673":14391,"12674":503,"12675":15354,"12676":847,"12677":476,"12678":5343,"12679":15889,"12680":12475,"12681":9485,"12682":17740,"12683":8459,"12684":1206,"12685":16443,"12686":6478,"12687":13595,"12688":1701,"12689":6453,"12690":2017,"12691":13768,"12692":18073,"12693":7725,"12694":16738,"12695":15291,"12696":13806,"12697":16231,"12698":6000,"12699":16388,"12700":8609,"12701":16729,"12702":18162,"12703":9341,"12704":16847,"12705":5484,"12706":7828,"12707":16569,"12708":5908,"12709":820,"12710":18070,"12711":10051,"12712":12985,"12713":9313,"12714":13697,"12715":15103,"12716":7886,"12717":1012,"12718":9446,"12719":11615,"12720":14299,"12721":6197,"12722":15269,"12723":6000,"12724":14802,"12725":5414,"12726":3433,"12727":9273,"12728":2855,"12729":3103,"12730":9450,"12731":16525,"12732":13428,"12733":4496,"12734":2133,"12735":8672,"12736":6220,"12737":8293,"12738":1137,"12739":4239,"12740":15728,"12741":11385,"12742":4006,"12743":9193,"12744":4550,"12745":13340,"12746":3472,"12747":5201,"12748":4562,"12749":14679,"12750":17107,"12751":18313,"12752":54,"12753":13718,"12754":493,"12755":1783,"12756":9964,"12757":15767,"12758":10527,"12759":742,"12760":14677,"12761":10013,"12762":5057,"12763":14233,"12764":10827,"12765":16817,"12766":741,"12767":17781,"12768":13126,"12769":6040,"12770":7233,"12771":13971,"12772":7059,"12773":5423,"12774":3343,"12775":13889,"12776":6338,"12777":17992,"12778":10788,"12779":12011,"12780":15538,"12781":2148,"12782":4221,"12783":5734,"12784":17344,"12785":12898,"12786":802,"12787":4886,"12788":15257,"12789":4326,"12790":60,"12791":7102,"12792":15147,"12793":5925,"12794":13524,"12795":1330,"12796":10505,"12797":1742,"12798":11015,"12799":14733,"12800":13868,"12801":85,"12802":6975,"12803":6511,"12804":1319,"12805":13202,"12806":1150,"12807":17882,"12808":152,"12809":10110,"12810":3704,"12811":12640,"12812":10048,"12813":587,"12814":15344,"12815":10650,"12816":1080,"12817":8870,"12818":852,"12819":7261,"12820":16463,"12821":15763,"12822":11459,"12823":15821,"12824":6571,"12825":498,"12826":16961,"12827":10911,"12828":18076,"12829":7132,"12830":18226,"12831":1283,"12832":7799,"12833":6516,"12834":9018,"12835":6997,"12836":16732,"12837":16390,"12838":13251,"12839":10797,"12840":7807,"12841":4815,"12842":5952,"12843":5329,"12844":4826,"12845":4356,"12846":9167,"12847":10356,"12848":1278,"12849":16171,"12850":6448,"12851":14161,"12852":11973,"12853":14580,"12854":7468,"12855":15989,"12856":15343,"12857":4117,"12858":14019,"12859":16817,"12860":2267,"12861":6143,"12862":1982,"12863":4899,"12864":9219,"12865":14212,"12866":11780,"12867":1201,"12868":1117,"12869":11193,"12870":16583,"12871":18338,"12872":10666,"12873":17348,"12874":10953,"12875":371,"12876":11890,"12877":2158,"12878":17747,"12879":14367,"12880":9857,"12881":7276,"12882":9820,"12883":4743,"12884":15272,"12885":9393,"12886":2055,"12887":15901,"12888":15029,"12889":3033,"12890":17372,"12891":5287,"12892":13830,"12893":13315,"12894":7010,"12895":12522,"12896":15084,"12897":9186,"12898":2467,"12899":14657,"12900":5677,"12901":3703,"12902":13076,"12903":2101,"12904":9022,"12905":1372,"12906":16078,"12907":7408,"12908":9101,"12909":3525,"12910":2744,"12911":12560,"12912":2682,"12913":5100,"12914":17435,"12915":14753,"12916":14238,"12917":3935,"12918":16066,"12919":8434,"12920":4267,"12921":15257,"12922":2730,"12923":16822,"12924":5945,"12925":17869,"12926":2537,"12927":13348,"12928":16978,"12929":258,"12930":14540,"12931":12002,"12932":4553,"12933":11005,"12934":3288,"12935":17471,"12936":12876,"12937":2264,"12938":5126,"12939":559,"12940":4037,"12941":11073,"12942":9932,"12943":14173,"12944":7905,"12945":6460,"12946":8496,"12947":432,"12948":15326,"12949":8526,"12950":15071,"12951":4782,"12952":6747,"12953":3403,"12954":3127,"12955":9731,"12956":3706,"12957":13516,"12958":9819,"12959":7421,"12960":1889,"12961":6420,"12962":15303,"12963":3275,"12964":6907,"12965":3633,"12966":8372,"12967":416,"12968":15178,"12969":7477,"12970":7274,"12971":9452,"12972":9635,"12973":5330,"12974":16352,"12975":16943,"12976":13705,"12977":14175,"12978":10294,"12979":3332,"12980":9250,"12981":996,"12982":3764,"12983":12086,"12984":7651,"12985":4979,"12986":6492,"12987":85,"12988":8818,"12989":10567,"12990":16605,"12991":9839,"12992":3269,"12993":2586,"12994":16052,"12995":11400,"12996":11980,"12997":13754,"12998":14894,"12999":2722,"13000":16771,"13001":15473,"13002":1082,"13003":273,"13004":1275,"13005":4188,"13006":3854,"13007":5354,"13008":3919,"13009":12123,"13010":3366,"13011":959,"13012":10659,"13013":3449,"13014":208,"13015":12253,"13016":14564,"13017":15850,"13018":1743,"13019":22,"13020":17238,"13021":13376,"13022":15211,"13023":12925,"13024":9287,"13025":10011,"13026":3059,"13027":670,"13028":14796,"13029":9128,"13030":12212,"13031":14655,"13032":17936,"13033":14792,"13034":16245,"13035":10065,"13036":8220,"13037":11913,"13038":13166,"13039":9702,"13040":6704,"13041":8501,"13042":10832,"13043":17331,"13044":17236,"13045":6658,"13046":2451,"13047":17059,"13048":1413,"13049":6147,"13050":271,"13051":4222,"13052":5473,"13053":11694,"13054":9203,"13055":10915,"13056":13396,"13057":9739,"13058":15828,"13059":17533,"13060":13490,"13061":15174,"13062":15777,"13063":5679,"13064":16065,"13065":18228,"13066":652,"13067":13790,"13068":7074,"13069":4252,"13070":16667,"13071":4988,"13072":13462,"13073":16295,"13074":10275,"13075":5595,"13076":7859,"13077":536,"13078":16707,"13079":890,"13080":8809,"13081":13068,"13082":8555,"13083":10498,"13084":15494,"13085":13545,"13086":9203,"13087":2298,"13088":5100,"13089":12427,"13090":2695,"13091":14038,"13092":17332,"13093":17235,"13094":4698,"13095":1453,"13096":18221,"13097":4822,"13098":17126,"13099":18041,"13100":5840,"13101":823,"13102":1934,"13103":13011,"13104":13982,"13105":11482,"13106":14057,"13107":11959,"13108":5665,"13109":11980,"13110":700,"13111":10727,"13112":1146,"13113":3439,"13114":9399,"13115":1872,"13116":15995,"13117":2774,"13118":14261,"13119":1295,"13120":4287,"13121":9779,"13122":12963,"13123":13872,"13124":4388,"13125":17322,"13126":12303,"13127":6519,"13128":4638,"13129":14986,"13130":17951,"13131":4569,"13132":7584,"13133":10844,"13134":2017,"13135":14971,"13136":8276,"13137":15260,"13138":11841,"13139":6892,"13140":3946,"13141":11665,"13142":16388,"13143":5600,"13144":10379,"13145":17342,"13146":15033,"13147":4730,"13148":9412,"13149":11235,"13150":621,"13151":9710,"13152":9766,"13153":2701,"13154":9042,"13155":1831,"13156":5069,"13157":8655,"13158":18102,"13159":6742,"13160":3234,"13161":7087,"13162":3569,"13163":10689,"13164":14103,"13165":1167,"13166":6784,"13167":9941,"13168":459,"13169":14222,"13170":7769,"13171":7944,"13172":13919,"13173":17095,"13174":1924,"13175":14974,"13176":16517,"13177":14117,"13178":14691,"13179":2756,"13180":2030,"13181":3344,"13182":8277,"13183":2461,"13184":18280,"13185":6814,"13186":11441,"13187":11927,"13188":13519,"13189":6670,"13190":16429,"13191":15696,"13192":15523,"13193":10240,"13194":12416,"13195":11676,"13196":6046,"13197":17029,"13198":4046,"13199":1116,"13200":786,"13201":4626,"13202":9012,"13203":8804,"13204":11422,"13205":16793,"13206":578,"13207":8549,"13208":7716,"13209":5767,"13210":14431,"13211":15424,"13212":8741,"13213":13230,"13214":9325,"13215":16197,"13216":1315,"13217":5383,"13218":14215,"13219":13612,"13220":6483,"13221":3104,"13222":14055,"13223":215,"13224":12091,"13225":12956,"13226":521,"13227":11199,"13228":15408,"13229":3675,"13230":16712,"13231":3704,"13232":3912,"13233":5202,"13234":11420,"13235":7478,"13236":16157,"13237":4612,"13238":7596,"13239":2433,"13240":3499,"13241":16969,"13242":4505,"13243":15807,"13244":3986,"13245":4020,"13246":18334,"13247":1048,"13248":6996,"13249":8692,"13250":12427,"13251":1997,"13252":5830,"13253":1916,"13254":4130,"13255":2806,"13256":308,"13257":3558,"13258":6424,"13259":7808,"13260":16454,"13261":11709,"13262":12905,"13263":2313,"13264":4012,"13265":9922,"13266":9238,"13267":8525,"13268":450,"13269":8639,"13270":2674,"13271":17355,"13272":12887,"13273":3461,"13274":17237,"13275":5894,"13276":7592,"13277":12034,"13278":1568,"13279":29,"13280":17197,"13281":14435,"13282":14950,"13283":16341,"13284":10617,"13285":3262,"13286":8887,"13287":13319,"13288":4198,"13289":3048,"13290":9894,"13291":16954,"13292":8352,"13293":9308,"13294":14130,"13295":4096,"13296":15540,"13297":16300,"13298":8320,"13299":2276,"13300":10577,"13301":13273,"13302":14389,"13303":6407,"13304":14208,"13305":12511,"13306":5172,"13307":3908,"13308":10688,"13309":4111,"13310":4106,"13311":16833,"13312":16489,"13313":7068,"13314":12125,"13315":17306,"13316":6557,"13317":4914,"13318":9108,"13319":3337,"13320":15859,"13321":8283,"13322":16767,"13323":16514,"13324":5577,"13325":10626,"13326":7288,"13327":14131,"13328":1907,"13329":14954,"13330":13803,"13331":16511,"13332":3642,"13333":1087,"13334":5290,"13335":2345,"13336":5494,"13337":11439,"13338":10366,"13339":7386,"13340":6098,"13341":9441,"13342":9645,"13343":15292,"13344":9973,"13345":11067,"13346":13843,"13347":11880,"13348":2711,"13349":3323,"13350":4131,"13351":11447,"13352":10997,"13353":1598,"13354":14681,"13355":5164,"13356":157,"13357":10635,"13358":17359,"13359":15001,"13360":174,"13361":1563,"13362":16515,"13363":16029,"13364":8390,"13365":14335,"13366":1564,"13367":5374,"13368":15575,"13369":1802,"13370":10642,"13371":7932,"13372":13000,"13373":8349,"13374":4320,"13375":15934,"13376":9541,"13377":7370,"13378":3897,"13379":1054,"13380":5089,"13381":17799,"13382":6699,"13383":10947,"13384":5620,"13385":5372,"13386":3249,"13387":8167,"13388":1907,"13389":10736,"13390":804,"13391":4058,"13392":12051,"13393":13555,"13394":5806,"13395":17316,"13396":7339,"13397":9612,"13398":6935,"13399":13791,"13400":4070,"13401":11748,"13402":2337,"13403":6456,"13404":15915,"13405":2063,"13406":1652,"13407":17825,"13408":1752,"13409":2569,"13410":2551,"13411":3602,"13412":16014,"13413":7143,"13414":3003,"13415":9698,"13416":12182,"13417":2824,"13418":5283,"13419":11684,"13420":9984,"13421":1051,"13422":3243,"13423":12592,"13424":4126,"13425":3677,"13426":14725,"13427":13064,"13428":2057,"13429":1061,"13430":2081,"13431":12438,"13432":13995,"13433":15787,"13434":1982,"13435":11611,"13436":3509,"13437":9861,"13438":3405,"13439":7878,"13440":6406,"13441":16487,"13442":3520,"13443":5437,"13444":3540,"13445":11387,"13446":2328,"13447":14121,"13448":10391,"13449":9039,"13450":4180,"13451":3324,"13452":10761,"13453":9419,"13454":6017,"13455":18106,"13456":17736,"13457":12581,"13458":14588,"13459":2361,"13460":10293,"13461":14754,"13462":14030,"13463":1303,"13464":4294,"13465":8792,"13466":12339,"13467":1076,"13468":11423,"13469":5854,"13470":5438,"13471":5256,"13472":12076,"13473":4947,"13474":3232,"13475":2439,"13476":12048,"13477":1723,"13478":16726,"13479":1457,"13480":10807,"13481":14621,"13482":1250,"13483":7595,"13484":1786,"13485":14490,"13486":13463,"13487":14372,"13488":16467,"13489":18229,"13490":16183,"13491":5181,"13492":4168,"13493":5992,"13494":9550,"13495":5448,"13496":615,"13497":2818,"13498":3714,"13499":6528,"13500":16875,"13501":4033,"13502":1256,"13503":6321,"13504":5795,"13505":12657,"13506":10501,"13507":6370,"13508":6220,"13509":7382,"13510":17014,"13511":7786,"13512":15272,"13513":7443,"13514":14288,"13515":7391,"13516":17909,"13517":11863,"13518":15133,"13519":16566,"13520":8650,"13521":12173,"13522":12251,"13523":17073,"13524":3516,"13525":2565,"13526":17318,"13527":553,"13528":2938,"13529":17322,"13530":6581,"13531":15827,"13532":9561,"13533":8639,"13534":13284,"13535":4402,"13536":57,"13537":1005,"13538":14566,"13539":11091,"13540":16598,"13541":2388,"13542":3452,"13543":13256,"13544":315,"13545":16417,"13546":10219,"13547":2684,"13548":4417,"13549":14700,"13550":12728,"13551":3944,"13552":13510,"13553":2873,"13554":7190,"13555":2232,"13556":8946,"13557":17765,"13558":15906,"13559":3431,"13560":6690,"13561":14888,"13562":17215,"13563":14342,"13564":2531,"13565":13517,"13566":12888,"13567":4101,"13568":11541,"13569":13408,"13570":12182,"13571":7163,"13572":3650,"13573":5441,"13574":16233,"13575":16608,"13576":1232,"13577":14744,"13578":4159,"13579":12032,"13580":10459,"13581":18308,"13582":13348,"13583":13007,"13584":1257,"13585":992,"13586":18134,"13587":421,"13588":16265,"13589":12753,"13590":1136,"13591":11877,"13592":9892,"13593":7818,"13594":9985,"13595":15814,"13596":6065,"13597":2426,"13598":6402,"13599":9204,"13600":851,"13601":8746,"13602":1510,"13603":6042,"13604":1450,"13605":15264,"13606":15382,"13607":2839,"13608":6096,"13609":6105,"13610":3240,"13611":6135,"13612":10556,"13613":2424,"13614":13970,"13615":4592,"13616":15840,"13617":15433,"13618":14124,"13619":13524,"13620":14358,"13621":11468,"13622":14942,"13623":3328,"13624":588,"13625":16778,"13626":8467,"13627":15735,"13628":11327,"13629":9534,"13630":13141,"13631":16186,"13632":6749,"13633":9038,"13634":11417,"13635":10032,"13636":4020,"13637":17591,"13638":15960,"13639":6493,"13640":2832,"13641":8170,"13642":2589,"13643":2975,"13644":15992,"13645":274,"13646":9037,"13647":17446,"13648":4702,"13649":10951,"13650":12274,"13651":1299,"13652":4706,"13653":15733,"13654":18054,"13655":11870,"13656":10035,"13657":13869,"13658":7542,"13659":2141,"13660":13803,"13661":7872,"13662":8486,"13663":8004,"13664":17995,"13665":16590,"13666":13649,"13667":1112,"13668":4841,"13669":12587,"13670":4869,"13671":17184,"13672":566,"13673":3149,"13674":1759,"13675":11570,"13676":1879,"13677":2831,"13678":2773,"13679":16276,"13680":3072,"13681":3903,"13682":15042,"13683":5107,"13684":5693,"13685":17531,"13686":13716,"13687":9690,"13688":15459,"13689":16878,"13690":365,"13691":9769,"13692":16438,"13693":3074,"13694":5400,"13695":3840,"13696":13086,"13697":10733,"13698":10378,"13699":3713,"13700":1273,"13701":520,"13702":13864,"13703":5965,"13704":8758,"13705":3747,"13706":2040,"13707":209,"13708":5156,"13709":16782,"13710":5044,"13711":17646,"13712":3522,"13713":14401,"13714":13926,"13715":4625,"13716":15,"13717":1547,"13718":5235,"13719":3595,"13720":2590,"13721":2805,"13722":17645,"13723":13652,"13724":264,"13725":14300,"13726":15221,"13727":6808,"13728":11852,"13729":2545,"13730":18319,"13731":4464,"13732":12141,"13733":18298,"13734":14465,"13735":14405,"13736":97,"13737":12543,"13738":7515,"13739":4999,"13740":2136,"13741":17063,"13742":8826,"13743":5650,"13744":10014,"13745":3653,"13746":1233,"13747":10874,"13748":723,"13749":16444,"13750":1644,"13751":6614,"13752":1550,"13753":16622,"13754":8575,"13755":9973,"13756":17802,"13757":9483,"13758":8678,"13759":15263,"13760":16760,"13761":11145,"13762":16789,"13763":3428,"13764":8205,"13765":8697,"13766":2716,"13767":1217,"13768":249,"13769":11810,"13770":8935,"13771":5382,"13772":7697,"13773":10917,"13774":8135,"13775":9583,"13776":3276,"13777":16928,"13778":17603,"13779":3224,"13780":17928,"13781":11643,"13782":14184,"13783":1057,"13784":1121,"13785":12262,"13786":10456,"13787":12398,"13788":4089,"13789":17181,"13790":11327,"13791":165,"13792":16106,"13793":10711,"13794":9992,"13795":12,"13796":2544,"13797":11385,"13798":17526,"13799":15555,"13800":11594,"13801":13130,"13802":3316,"13803":8470,"13804":9579,"13805":17182,"13806":6164,"13807":4536,"13808":5482,"13809":9220,"13810":9839,"13811":12690,"13812":2682,"13813":10502,"13814":5686,"13815":18121,"13816":9020,"13817":948,"13818":13283,"13819":16455,"13820":2177,"13821":12697,"13822":7680,"13823":16444,"13824":9625,"13825":8699,"13826":15126,"13827":12999,"13828":17547,"13829":11167,"13830":14752,"13831":10298,"13832":17510,"13833":2826,"13834":2365,"13835":10681,"13836":17214,"13837":4234,"13838":9021,"13839":3866,"13840":17411,"13841":16074,"13842":11757,"13843":6396,"13844":14392,"13845":9229,"13846":6987,"13847":524,"13848":6628,"13849":10107,"13850":491,"13851":5914,"13852":5509,"13853":3233,"13854":16009,"13855":17247,"13856":3816,"13857":12121,"13858":5467,"13859":14299,"13860":6717,"13861":12019,"13862":4893,"13863":15423,"13864":4177,"13865":13757,"13866":14667,"13867":9272,"13868":12013,"13869":3310,"13870":13657,"13871":14147,"13872":5010,"13873":12986,"13874":15049,"13875":10641,"13876":16561,"13877":12047,"13878":17040,"13879":5378,"13880":10905,"13881":5137,"13882":7728,"13883":12541,"13884":8772,"13885":17013,"13886":17079,"13887":17206,"13888":17035,"13889":6671,"13890":12048,"13891":372,"13892":15207,"13893":7008,"13894":9079,"13895":4342,"13896":11988,"13897":11676,"13898":17346,"13899":6322,"13900":4924,"13901":15228,"13902":4587,"13903":17118,"13904":7641,"13905":14609,"13906":1474,"13907":18198,"13908":8525,"13909":5982,"13910":12530,"13911":3242,"13912":186,"13913":6832,"13914":4694,"13915":14428,"13916":14721,"13917":660,"13918":11244,"13919":3342,"13920":14840,"13921":4713,"13922":12436,"13923":977,"13924":10761,"13925":13086,"13926":16719,"13927":13571,"13928":15446,"13929":6647,"13930":6220,"13931":17210,"13932":9333,"13933":103,"13934":10342,"13935":11203,"13936":7320,"13937":794,"13938":17214,"13939":10866,"13940":12021,"13941":5859,"13942":16878,"13943":12726,"13944":17989,"13945":15903,"13946":16850,"13947":3544,"13948":8024,"13949":205,"13950":6268,"13951":394,"13952":84,"13953":1284,"13954":14089,"13955":4499,"13956":13151,"13957":3004,"13958":16959,"13959":745,"13960":10752,"13961":12745,"13962":12090,"13963":13610,"13964":16160,"13965":6152,"13966":15776,"13967":12218,"13968":13122,"13969":5919,"13970":17569,"13971":8087,"13972":16109,"13973":16384,"13974":9677,"13975":7564,"13976":8226,"13977":8448,"13978":1627,"13979":14945,"13980":6933,"13981":6521,"13982":6218,"13983":4568,"13984":2276,"13985":6176,"13986":4568,"13987":9702,"13988":6869,"13989":13639,"13990":10255,"13991":4111,"13992":13457,"13993":11093,"13994":8990,"13995":3722,"13996":13900,"13997":4861,"13998":18062,"13999":11718,"14000":4620,"14001":4112,"14002":11539,"14003":837,"14004":1787,"14005":16298,"14006":2355,"14007":17770,"14008":1567,"14009":16194,"14010":2465,"14011":16635,"14012":11692,"14013":7395,"14014":11886,"14015":14469,"14016":17880,"14017":12553,"14018":5977,"14019":10058,"14020":5135,"14021":7215,"14022":3448,"14023":9410,"14024":9221,"14025":4837,"14026":7602,"14027":10395,"14028":16634,"14029":1466,"14030":12900,"14031":3708,"14032":9063,"14033":3040,"14034":16339,"14035":12733,"14036":8928,"14037":15919,"14038":3052,"14039":16583,"14040":1972,"14041":16898,"14042":15015,"14043":16580,"14044":1973,"14045":14158,"14046":2894,"14047":14144,"14048":13588,"14049":9876,"14050":13948,"14051":14258,"14052":4228,"14053":16945,"14054":6471,"14055":5597,"14056":1850,"14057":11642,"14058":15432,"14059":16349,"14060":14994,"14061":1451,"14062":3272,"14063":946,"14064":5232,"14065":11485,"14066":4154,"14067":9720,"14068":15625,"14069":2217,"14070":8153,"14071":12172,"14072":17982,"14073":12595,"14074":15106,"14075":1496,"14076":4899,"14077":16383,"14078":16912,"14079":7237,"14080":4529,"14081":18282,"14082":3380,"14083":2429,"14084":8585,"14085":17687,"14086":1119,"14087":7967,"14088":17440,"14089":5248,"14090":6754,"14091":5027,"14092":5034,"14093":3060,"14094":13842,"14095":10085,"14096":12528,"14097":16554,"14098":1611,"14099":5585,"14100":1029,"14101":15168,"14102":958,"14103":3862,"14104":15226,"14105":4427,"14106":12459,"14107":13288,"14108":11372,"14109":1590,"14110":6813,"14111":3144,"14112":3666,"14113":8353,"14114":6019,"14115":14663,"14116":4728,"14117":8790,"14118":12342,"14119":7729,"14120":11233,"14121":12229,"14122":18165,"14123":9169,"14124":2093,"14125":4540,"14126":15923,"14127":10675,"14128":897,"14129":2544,"14130":15095,"14131":17332,"14132":13026,"14133":5994,"14134":6517,"14135":192,"14136":1539,"14137":15457,"14138":16991,"14139":6813,"14140":15048,"14141":15069,"14142":1125,"14143":3890,"14144":14748,"14145":6592,"14146":7496,"14147":16954,"14148":16775,"14149":12289,"14150":7437,"14151":641,"14152":9644,"14153":9885,"14154":18101,"14155":11136,"14156":781,"14157":9919,"14158":7139,"14159":14790,"14160":7872,"14161":10615,"14162":13844,"14163":12515,"14164":12871,"14165":10580,"14166":15213,"14167":9774,"14168":11500,"14169":446,"14170":1988,"14171":11075,"14172":3359,"14173":13880,"14174":13168,"14175":13563,"14176":7842,"14177":12800,"14178":241,"14179":14938,"14180":7331,"14181":5335,"14182":3181,"14183":14241,"14184":1936,"14185":9697,"14186":7411,"14187":1859,"14188":18106,"14189":8664,"14190":12551,"14191":18022,"14192":3582,"14193":12418,"14194":3466,"14195":2866,"14196":14644,"14197":8757,"14198":6375,"14199":5388,"14200":6590,"14201":5068,"14202":5311,"14203":5203,"14204":11824,"14205":2434,"14206":14847,"14207":2439,"14208":1110,"14209":10383,"14210":6014,"14211":17317,"14212":10500,"14213":13796,"14214":13812,"14215":10872,"14216":6019,"14217":16670,"14218":2236,"14219":13340,"14220":7021,"14221":15832,"14222":5027,"14223":7104,"14224":7795,"14225":11262,"14226":11085,"14227":14506,"14228":5323,"14229":17602,"14230":1042,"14231":16542,"14232":12818,"14233":17313,"14234":7868,"14235":2207,"14236":17602,"14237":11650,"14238":13227,"14239":11997,"14240":9871,"14241":11464,"14242":9416,"14243":3784,"14244":16478,"14245":15773,"14246":13769,"14247":11227,"14248":13980,"14249":7865,"14250":3987,"14251":5821,"14252":3023,"14253":8187,"14254":10799,"14255":6516,"14256":10545,"14257":16109,"14258":12338,"14259":12925,"14260":17046,"14261":14853,"14262":216,"14263":3163,"14264":3805,"14265":13766,"14266":15662,"14267":11539,"14268":12607,"14269":15522,"14270":13186,"14271":950,"14272":13605,"14273":8601,"14274":8995,"14275":5042,"14276":10655,"14277":14375,"14278":13582,"14279":6937,"14280":16412,"14281":8545,"14282":10734,"14283":10360,"14284":472,"14285":10418,"14286":13585,"14287":6789,"14288":16690,"14289":544,"14290":13626,"14291":157,"14292":12356,"14293":8590,"14294":12193,"14295":9352,"14296":13423,"14297":11731,"14298":5800,"14299":4310,"14300":1758,"14301":6470,"14302":17649,"14303":11654,"14304":913,"14305":13479,"14306":9276,"14307":15031,"14308":9206,"14309":10198,"14310":2642,"14311":7603,"14312":9515,"14313":6291,"14314":7112,"14315":9847,"14316":9638,"14317":4585,"14318":8502,"14319":9096,"14320":10984,"14321":14172,"14322":18290,"14323":11268,"14324":9006,"14325":195,"14326":788,"14327":15977,"14328":10922,"14329":6152,"14330":2357,"14331":4467,"14332":17583,"14333":2629,"14334":11860,"14335":16556,"14336":15307,"14337":17970,"14338":8675,"14339":14030,"14340":4693,"14341":17279,"14342":11220,"14343":11252,"14344":4282,"14345":12305,"14346":14941,"14347":3493,"14348":2375,"14349":17606,"14350":7877,"14351":9220,"14352":18215,"14353":13328,"14354":15661,"14355":4869,"14356":14990,"14357":2107,"14358":14765,"14359":14003,"14360":907,"14361":15174,"14362":4539,"14363":6789,"14364":9274,"14365":5446,"14366":3954,"14367":3029,"14368":11675,"14369":11769,"14370":13047,"14371":8916,"14372":10119,"14373":12043,"14374":8828,"14375":14680,"14376":276,"14377":7561,"14378":9665,"14379":11165,"14380":17054,"14381":6861,"14382":5366,"14383":5127,"14384":14003,"14385":3135,"14386":131,"14387":7937,"14388":12101,"14389":14221,"14390":4530,"14391":7886,"14392":13956,"14393":4720,"14394":3623,"14395":7012,"14396":16081,"14397":15316,"14398":10532,"14399":8167,"14400":10881,"14401":16579,"14402":9665,"14403":8803,"14404":14353,"14405":7714,"14406":12954,"14407":270,"14408":6451,"14409":9590,"14410":16035,"14411":199,"14412":2592,"14413":2950,"14414":15284,"14415":1215,"14416":8195,"14417":17653,"14418":404,"14419":11559,"14420":5565,"14421":16511,"14422":6178,"14423":12147,"14424":15527,"14425":3355,"14426":16318,"14427":981,"14428":11503,"14429":22,"14430":5934,"14431":17178,"14432":17272,"14433":17758,"14434":11945,"14435":7182,"14436":6117,"14437":10043,"14438":16958,"14439":5244,"14440":16094,"14441":4459,"14442":7000,"14443":16465,"14444":9623,"14445":3550,"14446":7861,"14447":3122,"14448":2023,"14449":17370,"14450":9420,"14451":3602,"14452":753,"14453":4668,"14454":12042,"14455":1524,"14456":4415,"14457":15263,"14458":7188,"14459":16900,"14460":1638,"14461":13426,"14462":16871,"14463":746,"14464":15630,"14465":16401,"14466":12777,"14467":7542,"14468":9090,"14469":6056,"14470":5550,"14471":4560,"14472":14200,"14473":6152,"14474":17876,"14475":13977,"14476":802,"14477":4892,"14478":12665,"14479":52,"14480":5402,"14481":16485,"14482":8016,"14483":15580,"14484":3221,"14485":4534,"14486":11801,"14487":16895,"14488":6998,"14489":10320,"14490":1269,"14491":169,"14492":14362,"14493":17633,"14494":8808,"14495":10686,"14496":15556,"14497":12870,"14498":9286,"14499":10485,"14500":3796,"14501":3947,"14502":11236,"14503":18045,"14504":1995,"14505":1293,"14506":3521,"14507":10187,"14508":7883,"14509":10842,"14510":7034,"14511":10631,"14512":3865,"14513":13604,"14514":10922,"14515":7474,"14516":3755,"14517":645,"14518":763,"14519":5065,"14520":18305,"14521":2330,"14522":16356,"14523":6947,"14524":5697,"14525":1611,"14526":18318,"14527":16260,"14528":1619,"14529":9304,"14530":3315,"14531":11601,"14532":12940,"14533":17361,"14534":12524,"14535":2250,"14536":4244,"14537":16892,"14538":9503,"14539":3622,"14540":2075,"14541":16096,"14542":855,"14543":3780,"14544":8581,"14545":8300,"14546":10204,"14547":8649,"14548":13442,"14549":7661,"14550":9451,"14551":2821,"14552":15074,"14553":11484,"14554":9531,"14555":13944,"14556":11132,"14557":12441,"14558":10190,"14559":3444,"14560":345,"14561":11162,"14562":7623,"14563":450,"14564":3594,"14565":8118,"14566":9645,"14567":10056,"14568":16447,"14569":11738,"14570":15080,"14571":7051,"14572":4517,"14573":8029,"14574":11486,"14575":12411,"14576":16451,"14577":11638,"14578":8468,"14579":6543,"14580":4614,"14581":9719,"14582":8928,"14583":8076,"14584":10119,"14585":2847,"14586":15359,"14587":2700,"14588":15212,"14589":8275,"14590":5215,"14591":3740,"14592":13554,"14593":14465,"14594":2951,"14595":5430,"14596":8054,"14597":18328,"14598":16492,"14599":14834,"14600":1567,"14601":17601,"14602":3705,"14603":8960,"14604":10876,"14605":8313,"14606":1445,"14607":11819,"14608":13327,"14609":17059,"14610":14171,"14611":13640,"14612":1904,"14613":13532,"14614":2888,"14615":11159,"14616":12696,"14617":12589,"14618":6098,"14619":8112,"14620":10577,"14621":3970,"14622":17774,"14623":7599,"14624":9755,"14625":1647,"14626":12222,"14627":16253,"14628":7057,"14629":17693,"14630":6266,"14631":12591,"14632":13191,"14633":6672,"14634":12195,"14635":208,"14636":7990,"14637":12483,"14638":11096,"14639":12116,"14640":11977,"14641":3768,"14642":14390,"14643":10990,"14644":10841,"14645":12579,"14646":8538,"14647":8993,"14648":11868,"14649":16514,"14650":223,"14651":3263,"14652":10080,"14653":10049,"14654":15209,"14655":14102,"14656":2099,"14657":6976,"14658":12770,"14659":4799,"14660":11620,"14661":3530,"14662":9116,"14663":7653,"14664":12626,"14665":16830,"14666":2246,"14667":3057,"14668":8165,"14669":13771,"14670":18317,"14671":16039,"14672":14099,"14673":12853,"14674":15648,"14675":14678,"14676":14657,"14677":3190,"14678":8084,"14679":10767,"14680":5315,"14681":12186,"14682":6114,"14683":10972,"14684":16139,"14685":9128,"14686":4914,"14687":618,"14688":2455,"14689":8511,"14690":16229,"14691":7660,"14692":18137,"14693":8747,"14694":5653,"14695":14444,"14696":6426,"14697":3874,"14698":3460,"14699":652,"14700":10821,"14701":2845,"14702":14668,"14703":3350,"14704":11366,"14705":11725,"14706":5137,"14707":15714,"14708":102,"14709":14854,"14710":13869,"14711":9020,"14712":9238,"14713":4362,"14714":15463,"14715":15759,"14716":15269,"14717":14871,"14718":7479,"14719":4545,"14720":182,"14721":14762,"14722":13483,"14723":11454,"14724":6176,"14725":6760,"14726":14126,"14727":1068,"14728":4657,"14729":11920,"14730":16924,"14731":9451,"14732":3507,"14733":1415,"14734":16452,"14735":11728,"14736":14291,"14737":13980,"14738":5593,"14739":16505,"14740":493,"14741":15786,"14742":1808,"14743":15614,"14744":7117,"14745":6938,"14746":12387,"14747":11120,"14748":4600,"14749":1747,"14750":5543,"14751":13473,"14752":2022,"14753":855,"14754":7503,"14755":18335,"14756":6395,"14757":12910,"14758":477,"14759":10591,"14760":9655,"14761":16060,"14762":18269,"14763":10828,"14764":7592,"14765":2202,"14766":8445,"14767":46,"14768":12658,"14769":11983,"14770":1605,"14771":10241,"14772":16692,"14773":1778,"14774":17771,"14775":6730,"14776":5006,"14777":17371,"14778":9554,"14779":13206,"14780":11366,"14781":1504,"14782":8693,"14783":17564,"14784":6254,"14785":12181,"14786":398,"14787":1572,"14788":7371,"14789":4214,"14790":15720,"14791":15183,"14792":15929,"14793":4724,"14794":6430,"14795":12834,"14796":16602,"14797":8773,"14798":13568,"14799":11934,"14800":941,"14801":14417,"14802":14383,"14803":11905,"14804":4275,"14805":11593,"14806":5205,"14807":3445,"14808":11693,"14809":943,"14810":9524,"14811":11780,"14812":15915,"14813":4288,"14814":7575,"14815":2724,"14816":10431,"14817":9582,"14818":2188,"14819":1731,"14820":11721,"14821":5692,"14822":5220,"14823":3348,"14824":236,"14825":10944,"14826":14432,"14827":2901,"14828":13100,"14829":9682,"14830":9190,"14831":1927,"14832":2422,"14833":4724,"14834":17317,"14835":13924,"14836":11662,"14837":13954,"14838":11592,"14839":50,"14840":170,"14841":6247,"14842":998,"14843":13212,"14844":11809,"14845":4930,"14846":4512,"14847":12282,"14848":11037,"14849":8932,"14850":2778,"14851":5797,"14852":465,"14853":5907,"14854":9736,"14855":8159,"14856":12793,"14857":8809,"14858":14743,"14859":7757,"14860":14386,"14861":7776,"14862":2266,"14863":14282,"14864":9778,"14865":11260,"14866":10821,"14867":7103,"14868":9877,"14869":14953,"14870":4500,"14871":17802,"14872":9503,"14873":12334,"14874":18069,"14875":2669,"14876":5127,"14877":12570,"14878":3714,"14879":1680,"14880":4802,"14881":3910,"14882":8343,"14883":15304,"14884":2059,"14885":15476,"14886":7779,"14887":9503,"14888":13445,"14889":916,"14890":7051,"14891":13863,"14892":6768,"14893":10283,"14894":7863,"14895":11314,"14896":2428,"14897":6514,"14898":114,"14899":14026,"14900":17792,"14901":8188,"14902":13554,"14903":12830,"14904":4567,"14905":16633,"14906":10299,"14907":10555,"14908":12558,"14909":4498,"14910":14989,"14911":7316,"14912":2126,"14913":6070,"14914":14601,"14915":11418,"14916":3764,"14917":8345,"14918":3744,"14919":14315,"14920":6392,"14921":2853,"14922":5055,"14923":18134,"14924":16939,"14925":3786,"14926":8609,"14927":5409,"14928":568,"14929":13422,"14930":14192,"14931":9466,"14932":3890,"14933":6661,"14934":8942,"14935":5704,"14936":3506,"14937":17973,"14938":11851,"14939":9978,"14940":6481,"14941":17695,"14942":9800,"14943":5203,"14944":6707,"14945":3950,"14946":17568,"14947":8750,"14948":11055,"14949":4621,"14950":16546,"14951":13153,"14952":16378,"14953":14227,"14954":3138,"14955":3544,"14956":16283,"14957":4929,"14958":13349,"14959":2194,"14960":6920,"14961":2962,"14962":3100,"14963":11698,"14964":14152,"14965":5568,"14966":491,"14967":12137,"14968":3101,"14969":4882,"14970":14916,"14971":4607,"14972":11051,"14973":1261,"14974":13977,"14975":16166,"14976":15301,"14977":18124,"14978":10060,"14979":14890,"14980":5342,"14981":11101,"14982":5080,"14983":1333,"14984":4735,"14985":9720,"14986":18048,"14987":3898,"14988":7146,"14989":9253,"14990":10617,"14991":6349,"14992":2129,"14993":14376,"14994":8900,"14995":758,"14996":12876,"14997":15853,"14998":3637,"14999":16599,"15000":2250,"15001":12254,"15002":17491,"15003":3168,"15004":13751,"15005":17571,"15006":8922,"15007":17100,"15008":12349,"15009":9185,"15010":8970,"15011":227,"15012":9056,"15013":6715,"15014":17348,"15015":16603,"15016":12023,"15017":16431,"15018":6470,"15019":3621,"15020":10044,"15021":1230,"15022":12189,"15023":6972,"15024":1758,"15025":1334,"15026":6974,"15027":16215,"15028":8695,"15029":424,"15030":8170,"15031":872,"15032":9511,"15033":5598,"15034":15965,"15035":1086,"15036":5688,"15037":8033,"15038":7697,"15039":11727,"15040":14540,"15041":13365,"15042":14807,"15043":7490,"15044":180,"15045":8742,"15046":2185,"15047":155,"15048":17156,"15049":18232,"15050":16631,"15051":6028,"15052":10498,"15053":9506,"15054":7818,"15055":2391,"15056":9476,"15057":5905,"15058":11650,"15059":9569,"15060":3365,"15061":850,"15062":549,"15063":3969,"15064":14191,"15065":8630,"15066":7350,"15067":1125,"15068":1128,"15069":10861,"15070":17487,"15071":15199,"15072":11968,"15073":18247,"15074":9137,"15075":16380,"15076":7771,"15077":1936,"15078":14269,"15079":8189,"15080":15753,"15081":11480,"15082":13907,"15083":16127,"15084":6226,"15085":4098,"15086":10014,"15087":12508,"15088":10095,"15089":9649,"15090":10306,"15091":16671,"15092":8696,"15093":17154,"15094":5689,"15095":8954,"15096":6989,"15097":5874,"15098":10174,"15099":1512,"15100":13874,"15101":10269,"15102":1739,"15103":16069,"15104":16620,"15105":6996,"15106":4348,"15107":8615,"15108":13302,"15109":15076,"15110":2236,"15111":4083,"15112":1645,"15113":8480,"15114":1519,"15115":17193,"15116":13683,"15117":14783,"15118":15308,"15119":10615,"15120":17724,"15121":17339,"15122":2749,"15123":17379,"15124":7729,"15125":7630,"15126":1684,"15127":13562,"15128":17149,"15129":18345,"15130":2615,"15131":2632,"15132":2786,"15133":25,"15134":9161,"15135":228,"15136":8427,"15137":8295,"15138":17750,"15139":7101,"15140":6352,"15141":11593,"15142":1329,"15143":11756,"15144":16563,"15145":15076,"15146":15333,"15147":6886,"15148":2548,"15149":9056,"15150":11329,"15151":16560,"15152":17059,"15153":14200,"15154":4608,"15155":7186,"15156":11940,"15157":641,"15158":12669,"15159":9088,"15160":3454,"15161":8587,"15162":10453,"15163":16597,"15164":16097,"15165":8646,"15166":16803,"15167":7125,"15168":3865,"15169":1577,"15170":9245,"15171":8834,"15172":14362,"15173":9425,"15174":9710,"15175":4542,"15176":17532,"15177":13632,"15178":9308,"15179":15652,"15180":16828,"15181":8773,"15182":7254,"15183":9114,"15184":4537,"15185":2998,"15186":14545,"15187":1893,"15188":583,"15189":10485,"15190":9051,"15191":8447,"15192":6044,"15193":6392,"15194":14630,"15195":9018,"15196":16693,"15197":5729,"15198":14679,"15199":14395,"15200":5524,"15201":9436,"15202":15688,"15203":6421,"15204":2421,"15205":13444,"15206":11937,"15207":136,"15208":12100,"15209":9475,"15210":9388,"15211":10512,"15212":7130,"15213":4750,"15214":3906,"15215":14823,"15216":17539,"15217":4928,"15218":16436,"15219":2044,"15220":15315,"15221":9003,"15222":16630,"15223":11312,"15224":11821,"15225":4978,"15226":7699,"15227":8298,"15228":16209,"15229":9757,"15230":4264,"15231":11897,"15232":8843,"15233":2125,"15234":7482,"15235":12301,"15236":13833,"15237":14540,"15238":11413,"15239":4343,"15240":13555,"15241":13485,"15242":9901,"15243":3474,"15244":11509,"15245":1946,"15246":1342,"15247":7139,"15248":14440,"15249":15960,"15250":14348,"15251":12894,"15252":6307,"15253":16617,"15254":5313,"15255":16743,"15256":1093,"15257":1312,"15258":3149,"15259":2350,"15260":7016,"15261":13920,"15262":5796,"15263":13040,"15264":10706,"15265":17879,"15266":15827,"15267":8935,"15268":17084,"15269":15173,"15270":3191,"15271":5933,"15272":5323,"15273":10821,"15274":4030,"15275":14478,"15276":2721,"15277":9181,"15278":14494,"15279":1845,"15280":15330,"15281":10086,"15282":12385,"15283":11628,"15284":5674,"15285":16256,"15286":16654,"15287":2151,"15288":16473,"15289":4495,"15290":634,"15291":3972,"15292":13381,"15293":16983,"15294":9673,"15295":8705,"15296":5924,"15297":6358,"15298":6144,"15299":1607,"15300":12500,"15301":3281,"15302":10006,"15303":4621,"15304":9764,"15305":8411,"15306":6779,"15307":1593,"15308":11226,"15309":3529,"15310":7410,"15311":12711,"15312":14512,"15313":11446,"15314":4941,"15315":12092,"15316":706,"15317":8751,"15318":15312,"15319":4432,"15320":13968,"15321":15181,"15322":1098,"15323":17057,"15324":12145,"15325":8527,"15326":15128,"15327":12236,"15328":5745,"15329":17525,"15330":2937,"15331":11455,"15332":2345,"15333":3431,"15334":12049,"15335":10330,"15336":7800,"15337":14689,"15338":11762,"15339":4401,"15340":13933,"15341":17375,"15342":3068,"15343":10285,"15344":7802,"15345":4194,"15346":15419,"15347":5718,"15348":10186,"15349":13738,"15350":203,"15351":12697,"15352":4075,"15353":5486,"15354":1732,"15355":8852,"15356":1799,"15357":15070,"15358":6413,"15359":12375,"15360":5182,"15361":13176,"15362":3338,"15363":2369,"15364":1655,"15365":16382,"15366":17296,"15367":9091,"15368":4738,"15369":6047,"15370":10835,"15371":9150,"15372":2156,"15373":14951,"15374":13594,"15375":17833,"15376":14658,"15377":12776,"15378":8731,"15379":12895,"15380":4518,"15381":16733,"15382":7720,"15383":18017,"15384":16216,"15385":5369,"15386":13145,"15387":8405,"15388":1104,"15389":12087,"15390":10873,"15391":13653,"15392":12923,"15393":7203,"15394":13339,"15395":9941,"15396":5353,"15397":4835,"15398":11438,"15399":3477,"15400":9171,"15401":15810,"15402":13851,"15403":12168,"15404":11849,"15405":12833,"15406":5105,"15407":4949,"15408":1652,"15409":13218,"15410":12450,"15411":9199,"15412":3455,"15413":5490,"15414":15596,"15415":7072,"15416":7259,"15417":8054,"15418":8920,"15419":12314,"15420":5074,"15421":13102,"15422":654,"15423":1688,"15424":15240,"15425":15771,"15426":15231,"15427":10845,"15428":9241,"15429":9576,"15430":13930,"15431":16902,"15432":14865,"15433":14889,"15434":2162,"15435":17351,"15436":217,"15437":12849,"15438":10204,"15439":17385,"15440":10777,"15441":17276,"15442":2246,"15443":12439,"15444":3205,"15445":4607,"15446":5009,"15447":6891,"15448":11004,"15449":13004,"15450":14333,"15451":5323,"15452":17397,"15453":4597,"15454":16663,"15455":825,"15456":9825,"15457":11883,"15458":10163,"15459":12206,"15460":1993,"15461":12588,"15462":4667,"15463":18319,"15464":7585,"15465":16051,"15466":13538,"15467":3480,"15468":10553,"15469":2547,"15470":8156,"15471":8780,"15472":9145,"15473":7593,"15474":13791,"15475":7058,"15476":13232,"15477":3018,"15478":1065,"15479":15015,"15480":815,"15481":7140,"15482":10337,"15483":5603,"15484":4313,"15485":4433,"15486":16485,"15487":18177,"15488":14165,"15489":11710,"15490":9723,"15491":3552,"15492":1566,"15493":9779,"15494":304,"15495":6029,"15496":9334,"15497":15107,"15498":2420,"15499":6098,"15500":18326,"15501":10476,"15502":14122,"15503":14140,"15504":4072,"15505":6557,"15506":3334,"15507":17897,"15508":13191,"15509":10448,"15510":15392,"15511":3411,"15512":18028,"15513":10412,"15514":13322,"15515":15688,"15516":18265,"15517":14235,"15518":16911,"15519":15541,"15520":8839,"15521":4566,"15522":5966,"15523":282,"15524":15656,"15525":16156,"15526":13243,"15527":16618,"15528":10517,"15529":3640,"15530":3415,"15531":3278,"15532":16835,"15533":10779,"15534":16671,"15535":161,"15536":14527,"15537":8361,"15538":7952,"15539":17940,"15540":1589,"15541":457,"15542":13835,"15543":8247,"15544":12651,"15545":2163,"15546":10700,"15547":15004,"15548":2987,"15549":18167,"15550":9094,"15551":14684,"15552":520,"15553":17540,"15554":10849,"15555":6867,"15556":9281,"15557":15519,"15558":9501,"15559":8694,"15560":4876,"15561":17829,"15562":5058,"15563":5128,"15564":16136,"15565":4828,"15566":4198,"15567":16491,"15568":4792,"15569":11133,"15570":11844,"15571":10081,"15572":10415,"15573":10169,"15574":13245,"15575":5900,"15576":7106,"15577":14630,"15578":13447,"15579":9773,"15580":98,"15581":5194,"15582":5775,"15583":6968,"15584":10926,"15585":17109,"15586":12208,"15587":10574,"15588":5744,"15589":3918,"15590":17011,"15591":10075,"15592":7176,"15593":1910,"15594":13303,"15595":18236,"15596":4694,"15597":17786,"15598":8314,"15599":2229,"15600":8324,"15601":206,"15602":708,"15603":4330,"15604":5014,"15605":9731,"15606":13627,"15607":1299,"15608":11200,"15609":8674,"15610":1669,"15611":2538,"15612":15767,"15613":5678,"15614":7125,"15615":6510,"15616":2302,"15617":8821,"15618":9027,"15619":6853,"15620":7996,"15621":17769,"15622":12138,"15623":14583,"15624":244,"15625":9699,"15626":1065,"15627":11171,"15628":6424,"15629":11785,"15630":11263,"15631":4815,"15632":5880,"15633":4256,"15634":1721,"15635":4866,"15636":8778,"15637":1250,"15638":6448,"15639":428,"15640":6826,"15641":10216,"15642":3987,"15643":15570,"15644":5536,"15645":4994,"15646":9333,"15647":1402,"15648":8719,"15649":12441,"15650":12993,"15651":15838,"15652":74,"15653":318,"15654":2918,"15655":17133,"15656":13297,"15657":18116,"15658":3944,"15659":3462,"15660":14071,"15661":11852,"15662":10889,"15663":16374,"15664":13117,"15665":12879,"15666":5575,"15667":14123,"15668":4598,"15669":15737,"15670":4323,"15671":1221,"15672":3118,"15673":4247,"15674":5800,"15675":6596,"15676":8710,"15677":16165,"15678":15927,"15679":7402,"15680":2234,"15681":8443,"15682":10535,"15683":14373,"15684":17852,"15685":18051,"15686":16219,"15687":442,"15688":12339,"15689":5074,"15690":4016,"15691":7071,"15692":583,"15693":8475,"15694":17877,"15695":16075,"15696":15748,"15697":8445,"15698":11015,"15699":5235,"15700":7049,"15701":6508,"15702":15648,"15703":15377,"15704":2653,"15705":9687,"15706":10032,"15707":4520,"15708":14619,"15709":10497,"15710":3324,"15711":7975,"15712":9035,"15713":3640,"15714":14840,"15715":16219,"15716":7515,"15717":7267,"15718":5334,"15719":13968,"15720":8221,"15721":2409,"15722":8538,"15723":7118,"15724":10515,"15725":17461,"15726":2523,"15727":5458,"15728":8400,"15729":9002,"15730":8506,"15731":14173,"15732":5538,"15733":4594,"15734":15478,"15735":7692,"15736":10764,"15737":3392,"15738":16997,"15739":2172,"15740":6862,"15741":18118,"15742":8633,"15743":6511,"15744":1773,"15745":16625,"15746":14820,"15747":17054,"15748":10600,"15749":5461,"15750":10638,"15751":15629,"15752":1858,"15753":15852,"15754":17435,"15755":1948,"15756":5449,"15757":17055,"15758":14525,"15759":12136,"15760":8839,"15761":16466,"15762":10487,"15763":16382,"15764":17916,"15765":10716,"15766":15892,"15767":16457,"15768":5620,"15769":6710,"15770":2654,"15771":8009,"15772":6990,"15773":16650,"15774":8879,"15775":6023,"15776":7668,"15777":1221,"15778":2605,"15779":3533,"15780":8419,"15781":3571,"15782":14796,"15783":10668,"15784":13221,"15785":11721,"15786":13776,"15787":16247,"15788":13140,"15789":6618,"15790":3212,"15791":3084,"15792":1620,"15793":15017,"15794":6029,"15795":8760,"15796":14815,"15797":8623,"15798":7183,"15799":7876,"15800":14958,"15801":12545,"15802":1464,"15803":15170,"15804":13832,"15805":18034,"15806":7855,"15807":8249,"15808":14892,"15809":13858,"15810":3752,"15811":10556,"15812":13567,"15813":607,"15814":14430,"15815":11222,"15816":6957,"15817":4949,"15818":11836,"15819":17721,"15820":1097,"15821":10320,"15822":5840,"15823":1326,"15824":13970,"15825":7301,"15826":16100,"15827":9057,"15828":14574,"15829":13700,"15830":4820,"15831":8250,"15832":14104,"15833":12624,"15834":6141,"15835":8982,"15836":7945,"15837":8066,"15838":5705,"15839":4669,"15840":15598,"15841":4736,"15842":14250,"15843":7555,"15844":2418,"15845":3889,"15846":8321,"15847":12346,"15848":15644,"15849":13397,"15850":12643,"15851":7479,"15852":13146,"15853":12776,"15854":7844,"15855":13408,"15856":5347,"15857":5528,"15858":7883,"15859":5278,"15860":9379,"15861":13464,"15862":5625,"15863":3832,"15864":18075,"15865":16438,"15866":15031,"15867":4558,"15868":12765,"15869":1342,"15870":12451,"15871":12693,"15872":16923,"15873":14281,"15874":458,"15875":7838,"15876":12830,"15877":3627,"15878":15713,"15879":17351,"15880":1376,"15881":7447,"15882":983,"15883":13135,"15884":2162,"15885":7551,"15886":12353,"15887":9675,"15888":18155,"15889":12299,"15890":16901,"15891":11604,"15892":17985,"15893":8296,"15894":4498,"15895":11832,"15896":11152,"15897":8833,"15898":3034,"15899":7634,"15900":1933,"15901":14605,"15902":2180,"15903":14278,"15904":10263,"15905":1180,"15906":12725,"15907":9955,"15908":628,"15909":1369,"15910":9289,"15911":1887,"15912":2673,"15913":3803,"15914":1712,"15915":9361,"15916":316,"15917":16844,"15918":13028,"15919":11326,"15920":5239,"15921":1724,"15922":11587,"15923":2475,"15924":7522,"15925":5610,"15926":14629,"15927":11695,"15928":15951,"15929":16183,"15930":3473,"15931":5136,"15932":113,"15933":8524,"15934":6761,"15935":5286,"15936":5695,"15937":7851,"15938":4924,"15939":116,"15940":16427,"15941":14032,"15942":13396,"15943":7624,"15944":727,"15945":7086,"15946":8066,"15947":7340,"15948":13605,"15949":10154,"15950":4117,"15951":1574,"15952":8045,"15953":14787,"15954":548,"15955":3769,"15956":6721,"15957":3395,"15958":10076,"15959":4348,"15960":16156,"15961":3877,"15962":805,"15963":14567,"15964":2692,"15965":11627,"15966":4638,"15967":6689,"15968":692,"15969":8005,"15970":846,"15971":10842,"15972":4336,"15973":12646,"15974":10734,"15975":18015,"15976":11180,"15977":1513,"15978":5986,"15979":12738,"15980":16525,"15981":16362,"15982":3512,"15983":2046,"15984":893,"15985":8418,"15986":3539,"15987":15026,"15988":8269,"15989":16562,"15990":5453,"15991":5130,"15992":15554,"15993":11283,"15994":13984,"15995":12456,"15996":16074,"15997":17884,"15998":17480,"15999":294,"16000":4244,"16001":10592,"16002":6310,"16003":1258,"16004":5504,"16005":16207,"16006":10547,"16007":16030,"16008":803,"16009":5408,"16010":10408,"16011":1784,"16012":15931,"16013":6952,"16014":17039,"16015":12757,"16016":5100,"16017":1153,"16018":11241,"16019":1400,"16020":12746,"16021":1511,"16022":15623,"16023":1585,"16024":5156,"16025":6725,"16026":10848,"16027":2438,"16028":5258,"16029":17893,"16030":10403,"16031":5278,"16032":7984,"16033":6134,"16034":1592,"16035":8716,"16036":16681,"16037":18353,"16038":1355,"16039":17846,"16040":5245,"16041":14213,"16042":14322,"16043":9900,"16044":4481,"16045":5659,"16046":14656,"16047":2719,"16048":11661,"16049":9138,"16050":17154,"16051":4557,"16052":6582,"16053":16036,"16054":511,"16055":259,"16056":5556,"16057":6263,"16058":7731,"16059":6039,"16060":16336,"16061":1586,"16062":14647,"16063":3832,"16064":15061,"16065":5567,"16066":573,"16067":16934,"16068":12961,"16069":2263,"16070":15802,"16071":279,"16072":18314,"16073":13273,"16074":13393,"16075":10773,"16076":15704,"16077":9063,"16078":2292,"16079":743,"16080":10863,"16081":2470,"16082":18336,"16083":12903,"16084":16151,"16085":9534,"16086":11844,"16087":18090,"16088":17144,"16089":11980,"16090":14066,"16091":797,"16092":9497,"16093":8184,"16094":13214,"16095":14799,"16096":15780,"16097":7045,"16098":15095,"16099":9567,"16100":492,"16101":5528,"16102":10062,"16103":2886,"16104":9616,"16105":7735,"16106":8551,"16107":8835,"16108":5053,"16109":7455,"16110":14331,"16111":3048,"16112":399,"16113":12488,"16114":10723,"16115":5388,"16116":760,"16117":8630,"16118":10996,"16119":8075,"16120":3872,"16121":16099,"16122":18313,"16123":1626,"16124":3617,"16125":13443,"16126":16157,"16127":16243,"16128":2458,"16129":18277,"16130":12163,"16131":17481,"16132":12842,"16133":16846,"16134":16407,"16135":17476,"16136":5073,"16137":3223,"16138":15701,"16139":5140,"16140":9042,"16141":2824,"16142":13199,"16143":5175,"16144":13476,"16145":13485,"16146":10636,"16147":681,"16148":8766,"16149":121,"16150":98,"16151":8030,"16152":1982,"16153":17582,"16154":1659,"16155":3667,"16156":17333,"16157":18261,"16158":3628,"16159":6324,"16160":15671,"16161":14173,"16162":10114,"16163":12603,"16164":5373,"16165":9120,"16166":7126,"16167":5973,"16168":15183,"16169":9141,"16170":14609,"16171":2162,"16172":13250,"16173":8777,"16174":16136,"16175":10901,"16176":1912,"16177":11726,"16178":16984,"16179":12267,"16180":7924,"16181":17968,"16182":940,"16183":5596,"16184":8323,"16185":11718,"16186":8170,"16187":11606,"16188":17620,"16189":3120,"16190":9201,"16191":682,"16192":12931,"16193":12760,"16194":1838,"16195":8112,"16196":2250,"16197":17122,"16198":12312,"16199":8631,"16200":8471,"16201":10549,"16202":7838,"16203":6387,"16204":8590,"16205":15271,"16206":5253,"16207":11020,"16208":11474,"16209":529,"16210":12150,"16211":16903,"16212":2990,"16213":715,"16214":15519,"16215":8719,"16216":5343,"16217":11671,"16218":10153,"16219":10078,"16220":14933,"16221":16084,"16222":8303,"16223":4862,"16224":4796,"16225":12363,"16226":5855,"16227":10217,"16228":12894,"16229":1923,"16230":7303,"16231":16422,"16232":6706,"16233":72,"16234":10075,"16235":3261,"16236":4233,"16237":2707,"16238":15678,"16239":8222,"16240":9780,"16241":14144,"16242":13700,"16243":332,"16244":10981,"16245":16524,"16246":6986,"16247":9844,"16248":4722,"16249":5029,"16250":14462,"16251":4068,"16252":15456,"16253":15520,"16254":12713,"16255":14967,"16256":2825,"16257":12187,"16258":8335,"16259":7696,"16260":6817,"16261":4170,"16262":15734,"16263":8391,"16264":7583,"16265":13070,"16266":14905,"16267":6016,"16268":7461,"16269":4115,"16270":5194,"16271":2353,"16272":7960,"16273":17176,"16274":15553,"16275":12368,"16276":3799,"16277":2480,"16278":10884,"16279":5210,"16280":13078,"16281":9788,"16282":4455,"16283":6747,"16284":1922,"16285":6379,"16286":16053,"16287":10031,"16288":3909,"16289":2413,"16290":10558,"16291":17259,"16292":18151,"16293":7243,"16294":6488,"16295":10427,"16296":6846,"16297":14916,"16298":10262,"16299":10929,"16300":15595,"16301":13525,"16302":15845,"16303":10024,"16304":16466,"16305":15266,"16306":12079,"16307":9177,"16308":11041,"16309":1534,"16310":16541,"16311":11551,"16312":15151,"16313":5631,"16314":425,"16315":6665,"16316":16039,"16317":16734,"16318":14206,"16319":17480,"16320":13091,"16321":2333,"16322":8067,"16323":12797,"16324":17608,"16325":814,"16326":4547,"16327":12112,"16328":9301,"16329":12135,"16330":14322,"16331":13497,"16332":16459,"16333":10249,"16334":13443,"16335":16725,"16336":914,"16337":17203,"16338":10597,"16339":5125,"16340":8912,"16341":9801,"16342":11608,"16343":12639,"16344":7497,"16345":2041,"16346":12963,"16347":12921,"16348":12840,"16349":8305,"16350":14541,"16351":11834,"16352":12673,"16353":2014,"16354":5041,"16355":7915,"16356":16098,"16357":6656,"16358":13469,"16359":4082,"16360":2676,"16361":5676,"16362":11169,"16363":12830,"16364":15012,"16365":9377,"16366":15239,"16367":1681,"16368":3312,"16369":13898,"16370":4093,"16371":9183,"16372":2460,"16373":5924,"16374":7746,"16375":17913,"16376":3281,"16377":17371,"16378":4725,"16379":7215,"16380":11591,"16381":9523,"16382":4941,"16383":14737,"16384":5261,"16385":8640,"16386":8826,"16387":9743,"16388":14201,"16389":16083,"16390":16486,"16391":9944,"16392":3173,"16393":12824,"16394":88,"16395":7366,"16396":11922,"16397":18038,"16398":15094,"16399":16372,"16400":16597,"16401":12300,"16402":7503,"16403":10439,"16404":12333,"16405":12303,"16406":926,"16407":590,"16408":8681,"16409":12495,"16410":10681,"16411":12920,"16412":5124,"16413":5751,"16414":1729,"16415":14228,"16416":15181,"16417":372,"16418":16748,"16419":17561,"16420":18091,"16421":12808,"16422":14659,"16423":17490,"16424":6385,"16425":2054,"16426":12954,"16427":846,"16428":10592,"16429":10743,"16430":2673,"16431":4387,"16432":16479,"16433":15134,"16434":8450,"16435":4344,"16436":9066,"16437":4241,"16438":51,"16439":9814,"16440":9249,"16441":10619,"16442":5331,"16443":3575,"16444":16640,"16445":2146,"16446":12104,"16447":16995,"16448":9184,"16449":7446,"16450":4873,"16451":14916,"16452":12278,"16453":5062,"16454":11643,"16455":12648,"16456":14237,"16457":2306,"16458":2408,"16459":13772,"16460":7979,"16461":15338,"16462":16967,"16463":65,"16464":14699,"16465":14894,"16466":9269,"16467":13136,"16468":15204,"16469":2879,"16470":17158,"16471":15468,"16472":13603,"16473":6812,"16474":16335,"16475":13533,"16476":16408,"16477":17457,"16478":3213,"16479":5847,"16480":11412,"16481":4733,"16482":14486,"16483":14427,"16484":1890,"16485":16192,"16486":18198,"16487":1261,"16488":14079,"16489":10115,"16490":3081,"16491":6855,"16492":8675,"16493":7514,"16494":1075,"16495":5736,"16496":17396,"16497":5224,"16498":15002,"16499":2726,"16500":13303,"16501":6401,"16502":3655,"16503":12702,"16504":17288,"16505":3036,"16506":13994,"16507":15493,"16508":12453,"16509":13697,"16510":13992,"16511":4528,"16512":14643,"16513":4309,"16514":14759,"16515":4189,"16516":1666,"16517":18110,"16518":1575,"16519":2530,"16520":7997,"16521":17961,"16522":12540,"16523":3907,"16524":6464,"16525":13883,"16526":5040,"16527":562,"16528":8001,"16529":2734,"16530":13970,"16531":3799,"16532":9138,"16533":528,"16534":8346,"16535":16886,"16536":3709,"16537":16233,"16538":1854,"16539":8770,"16540":15129,"16541":5444,"16542":8565,"16543":17347,"16544":4925,"16545":772,"16546":5204,"16547":13992,"16548":17106,"16549":12071,"16550":7351,"16551":3393,"16552":16626,"16553":5166,"16554":6119,"16555":11924,"16556":1413,"16557":15824,"16558":13962,"16559":14221,"16560":16028,"16561":939,"16562":1002,"16563":3707,"16564":8677,"16565":7406,"16566":14230,"16567":12848,"16568":11636,"16569":7175,"16570":12590,"16571":14802,"16572":16024,"16573":4697,"16574":9510,"16575":17075,"16576":4336,"16577":14720,"16578":10171,"16579":14396,"16580":1157,"16581":17653,"16582":3094,"16583":5385,"16584":7983,"16585":15199,"16586":15217,"16587":16008,"16588":1420,"16589":12926,"16590":10111,"16591":691,"16592":6262,"16593":2068,"16594":5979,"16595":12762,"16596":13597,"16597":9666,"16598":14758,"16599":403,"16600":9831,"16601":6539,"16602":12201,"16603":111,"16604":14578,"16605":12885,"16606":12700,"16607":11307,"16608":1156,"16609":10048,"16610":12839,"16611":12148,"16612":4046,"16613":3510,"16614":3783,"16615":11993,"16616":16509,"16617":12821,"16618":5038,"16619":14881,"16620":10427,"16621":12818,"16622":17378,"16623":15073,"16624":742,"16625":15014,"16626":8302,"16627":8322,"16628":5245,"16629":9223,"16630":1934,"16631":10323,"16632":1588,"16633":16757,"16634":10663,"16635":14211,"16636":9725,"16637":4167,"16638":5106,"16639":10941,"16640":12647,"16641":1309,"16642":2998,"16643":11974,"16644":14132,"16645":17593,"16646":6377,"16647":5140,"16648":5862,"16649":11385,"16650":4410,"16651":16854,"16652":2591,"16653":16862,"16654":1553,"16655":7875,"16656":12825,"16657":4852,"16658":11093,"16659":9870,"16660":7012,"16661":353,"16662":16100,"16663":17543,"16664":9440,"16665":5178,"16666":7444,"16667":9568,"16668":4395,"16669":8043,"16670":14367,"16671":11800,"16672":12998,"16673":12252,"16674":3262,"16675":11819,"16676":9040,"16677":11105,"16678":13022,"16679":17486,"16680":11932,"16681":17671,"16682":2861,"16683":13984,"16684":14048,"16685":18305,"16686":11543,"16687":8256,"16688":6580,"16689":16050,"16690":11901,"16691":158,"16692":7243,"16693":18159,"16694":4707,"16695":1851,"16696":17038,"16697":2568,"16698":8490,"16699":15320,"16700":10313,"16701":17057,"16702":11091,"16703":11099,"16704":10566,"16705":6571,"16706":7024,"16707":9078,"16708":17333,"16709":17080,"16710":1051,"16711":8866,"16712":1129,"16713":13189,"16714":14424,"16715":12748,"16716":514,"16717":8003,"16718":10860,"16719":8459,"16720":6528,"16721":10062,"16722":11377,"16723":15241,"16724":12866,"16725":16576,"16726":10621,"16727":8586,"16728":10785,"16729":17885,"16730":4637,"16731":5795,"16732":2783,"16733":17509,"16734":6148,"16735":3817,"16736":1111,"16737":1216,"16738":12837,"16739":17574,"16740":14857,"16741":17148,"16742":9200,"16743":7146,"16744":12349,"16745":5137,"16746":4226,"16747":15197,"16748":5389,"16749":12152,"16750":4284,"16751":15263,"16752":9322,"16753":9701,"16754":5209,"16755":7011,"16756":13370,"16757":1090,"16758":9788,"16759":17802,"16760":4310,"16761":9820,"16762":98,"16763":6472,"16764":4530,"16765":5337,"16766":6122,"16767":9877,"16768":6717,"16769":18339,"16770":4215,"16771":3565,"16772":6330,"16773":433,"16774":15823,"16775":1825,"16776":16442,"16777":8026,"16778":6214,"16779":7196,"16780":17237,"16781":13030,"16782":9916,"16783":10540,"16784":6029,"16785":1432,"16786":7199,"16787":8417,"16788":5400,"16789":14906,"16790":4078,"16791":10171,"16792":11655,"16793":17519,"16794":14587,"16795":68,"16796":14888,"16797":11171,"16798":10801,"16799":3209,"16800":5514,"16801":11977,"16802":15969,"16803":7813,"16804":12040,"16805":728,"16806":4869,"16807":9307,"16808":2754,"16809":8811,"16810":7629,"16811":17868,"16812":6273,"16813":11346,"16814":15051,"16815":12819,"16816":18059,"16817":9214,"16818":12697,"16819":2063,"16820":15400,"16821":3391,"16822":4886,"16823":9046,"16824":16949,"16825":16415,"16826":15656,"16827":15813,"16828":5201,"16829":11997,"16830":6980,"16831":11395,"16832":8463,"16833":3881,"16834":12223,"16835":17172,"16836":12788,"16837":1370,"16838":2181,"16839":1872,"16840":11213,"16841":10323,"16842":375,"16843":7197,"16844":636,"16845":7476,"16846":14700,"16847":11448,"16848":4296,"16849":1990,"16850":15702,"16851":13258,"16852":14696,"16853":1540,"16854":17114,"16855":4667,"16856":3595,"16857":11429,"16858":4961,"16859":18044,"16860":12154,"16861":8829,"16862":14091,"16863":3205,"16864":2716,"16865":4826,"16866":13424,"16867":4914,"16868":15433,"16869":4269,"16870":11153,"16871":1527,"16872":13209,"16873":2016,"16874":2517,"16875":300,"16876":10869,"16877":6267,"16878":1642,"16879":3998,"16880":14948,"16881":15110,"16882":11186,"16883":16778,"16884":936,"16885":16275,"16886":3582,"16887":3063,"16888":1018,"16889":15867,"16890":15768,"16891":4339,"16892":10414,"16893":16037,"16894":3901,"16895":3018,"16896":12885,"16897":17237,"16898":16650,"16899":7905,"16900":11537,"16901":8123,"16902":1301,"16903":7595,"16904":2795,"16905":12810,"16906":10498,"16907":15459,"16908":12859,"16909":2281,"16910":15217,"16911":5839,"16912":16429,"16913":3079,"16914":14077,"16915":3375,"16916":15232,"16917":15540,"16918":14257,"16919":4758,"16920":9677,"16921":15033,"16922":4018,"16923":8558,"16924":10210,"16925":14856,"16926":3083,"16927":11532,"16928":13879,"16929":12180,"16930":17623,"16931":15487,"16932":16811,"16933":8867,"16934":11190,"16935":9668,"16936":13281,"16937":13796,"16938":12034,"16939":5847,"16940":1434,"16941":17077,"16942":8681,"16943":10339,"16944":17058,"16945":5636,"16946":5778,"16947":7348,"16948":9427,"16949":11506,"16950":17371,"16951":1779,"16952":10275,"16953":17912,"16954":7393,"16955":4047,"16956":7974,"16957":5354,"16958":17516,"16959":14176,"16960":13541,"16961":7030,"16962":6409,"16963":7769,"16964":17529,"16965":17362,"16966":3262,"16967":8969,"16968":4697,"16969":3859,"16970":11076,"16971":16727,"16972":3240,"16973":3262,"16974":2549,"16975":2765,"16976":14914,"16977":1338,"16978":14340,"16979":12461,"16980":6799,"16981":8220,"16982":9673,"16983":161,"16984":4980,"16985":11026,"16986":10170,"16987":11709,"16988":1619,"16989":17463,"16990":5264,"16991":4085,"16992":16372,"16993":13714,"16994":10590,"16995":17387,"16996":4360,"16997":14946,"16998":14362,"16999":9800,"17000":5082,"17001":17118,"17002":3688,"17003":16448,"17004":5995,"17005":6902,"17006":6195,"17007":6562,"17008":5540,"17009":9263,"17010":14359,"17011":4199,"17012":15083,"17013":16082,"17014":3454,"17015":13232,"17016":7604,"17017":6486,"17018":7210,"17019":770,"17020":10388,"17021":15290,"17022":7426,"17023":6075,"17024":3300,"17025":264,"17026":5523,"17027":18347,"17028":15474,"17029":15016,"17030":16086,"17031":3516,"17032":2462,"17033":6156,"17034":2156,"17035":14735,"17036":9077,"17037":10052,"17038":366,"17039":57,"17040":14965,"17041":16617,"17042":767,"17043":13716,"17044":15068,"17045":10590,"17046":10740,"17047":6904,"17048":9015,"17049":8108,"17050":11107,"17051":1269,"17052":448,"17053":16114,"17054":2968,"17055":17838,"17056":6216,"17057":12401,"17058":14552,"17059":15708,"17060":14552,"17061":353,"17062":17989,"17063":8493,"17064":5897,"17065":11545,"17066":16624,"17067":4879,"17068":10064,"17069":15994,"17070":4949,"17071":17614,"17072":3367,"17073":10592,"17074":16447,"17075":1409,"17076":5100,"17077":8658,"17078":2952,"17079":17200,"17080":5765,"17081":8261,"17082":5132,"17083":1738,"17084":13818,"17085":3162,"17086":16252,"17087":10085,"17088":14583,"17089":11110,"17090":12398,"17091":2368,"17092":1831,"17093":17029,"17094":7751,"17095":5238,"17096":140,"17097":2176,"17098":12806,"17099":16430,"17100":317,"17101":146,"17102":3656,"17103":13926,"17104":4495,"17105":6774,"17106":11452,"17107":17569,"17108":14929,"17109":3948,"17110":13878,"17111":4634,"17112":7499,"17113":10213,"17114":15585,"17115":17501,"17116":6735,"17117":6218,"17118":12037,"17119":7102,"17120":15326,"17121":9022,"17122":4251,"17123":7411,"17124":4049,"17125":6940,"17126":14857,"17127":4048,"17128":12757,"17129":15723,"17130":17489,"17131":1260,"17132":7392,"17133":11231,"17134":8035,"17135":2953,"17136":1242,"17137":7681,"17138":491,"17139":14466,"17140":16010,"17141":15124,"17142":4083,"17143":5174,"17144":9910,"17145":6018,"17146":10935,"17147":11253,"17148":12784,"17149":9316,"17150":11216,"17151":4139,"17152":16167,"17153":4858,"17154":2595,"17155":558,"17156":6848,"17157":9751,"17158":10198,"17159":4426,"17160":14163,"17161":8285,"17162":15700,"17163":17921,"17164":8666,"17165":5473,"17166":13846,"17167":11703,"17168":1674,"17169":15828,"17170":352,"17171":9533,"17172":2280,"17173":6561,"17174":17481,"17175":2486,"17176":7100,"17177":10441,"17178":15053,"17179":10946,"17180":5828,"17181":1408,"17182":12750,"17183":1459,"17184":13263,"17185":41,"17186":3902,"17187":17224,"17188":2076,"17189":5385,"17190":2169,"17191":8959,"17192":13138,"17193":1104,"17194":7540,"17195":8333,"17196":9711,"17197":6611,"17198":8749,"17199":6842,"17200":3261,"17201":12040,"17202":2135,"17203":9314,"17204":17804,"17205":16555,"17206":14783,"17207":6668,"17208":4472,"17209":4780,"17210":16791,"17211":2909,"17212":11663,"17213":323,"17214":9375,"17215":9569,"17216":4596,"17217":7038,"17218":7557,"17219":10768,"17220":10965,"17221":7839,"17222":11043,"17223":16076,"17224":10476,"17225":9340,"17226":4408,"17227":9738,"17228":8454,"17229":11356,"17230":10046,"17231":11949,"17232":14333,"17233":13325,"17234":16277,"17235":16344,"17236":3277,"17237":1286,"17238":16704,"17239":2322,"17240":11801,"17241":17334,"17242":1097,"17243":9300,"17244":2218,"17245":10502,"17246":9507,"17247":3732,"17248":12808,"17249":13449,"17250":3121,"17251":14905,"17252":5996,"17253":12606,"17254":8575,"17255":9627,"17256":5712,"17257":4913,"17258":14653,"17259":17368,"17260":1530,"17261":14361,"17262":611,"17263":6903,"17264":4877,"17265":16356,"17266":2244,"17267":14051,"17268":7068,"17269":4794,"17270":13994,"17271":17933,"17272":15248,"17273":15353,"17274":14181,"17275":13283,"17276":16649,"17277":17257,"17278":8057,"17279":10000,"17280":1755,"17281":13516,"17282":14547,"17283":8392,"17284":1853,"17285":16321,"17286":16936,"17287":10920,"17288":364,"17289":6569,"17290":16072,"17291":3135,"17292":16676,"17293":8206,"17294":15668,"17295":17894,"17296":11551,"17297":11816,"17298":346,"17299":3508,"17300":6320,"17301":3896,"17302":431,"17303":16247,"17304":886,"17305":3762,"17306":10495,"17307":1290,"17308":3900,"17309":2680,"17310":1625,"17311":9661,"17312":14826,"17313":3678,"17314":5789,"17315":2181,"17316":6129,"17317":6713,"17318":17712,"17319":12101,"17320":16774,"17321":4149,"17322":5501,"17323":16498,"17324":541,"17325":11706,"17326":14045,"17327":15094,"17328":4029,"17329":6858,"17330":18227,"17331":220,"17332":11608,"17333":16124,"17334":4751,"17335":1265,"17336":11977,"17337":5023,"17338":18266,"17339":1889,"17340":2026,"17341":6077,"17342":30,"17343":7828,"17344":17330,"17345":5121,"17346":11484,"17347":9265,"17348":8794,"17349":16431,"17350":6965,"17351":9881,"17352":5144,"17353":13107,"17354":18066,"17355":505,"17356":4996,"17357":3954,"17358":17692,"17359":12942,"17360":14898,"17361":7150,"17362":12059,"17363":14209,"17364":9573,"17365":99,"17366":12959,"17367":8572,"17368":13221,"17369":4016,"17370":12369,"17371":7009,"17372":14216,"17373":12652,"17374":15794,"17375":2020,"17376":18336,"17377":6666,"17378":17827,"17379":15851,"17380":5113,"17381":6662,"17382":13822,"17383":12539,"17384":1763,"17385":16931,"17386":9230,"17387":12170,"17388":9469,"17389":7263,"17390":13674,"17391":8368,"17392":11498,"17393":8168,"17394":18107,"17395":11515,"17396":17762,"17397":5533,"17398":1497,"17399":8285,"17400":9016,"17401":2408,"17402":15551,"17403":1697,"17404":17791,"17405":15076,"17406":5505,"17407":13916,"17408":6457,"17409":13615,"17410":87,"17411":3305,"17412":34,"17413":13351,"17414":5098,"17415":3949,"17416":1424,"17417":3381,"17418":12854,"17419":11758,"17420":14366,"17421":15010,"17422":5342,"17423":10555,"17424":4397,"17425":1512,"17426":13852,"17427":875,"17428":3513,"17429":11662,"17430":6353,"17431":6811,"17432":10507,"17433":838,"17434":12643,"17435":14678,"17436":3454,"17437":6042,"17438":2500,"17439":299,"17440":10896,"17441":12635,"17442":7609,"17443":1898,"17444":11060,"17445":9798,"17446":8715,"17447":2200,"17448":5609,"17449":10950,"17450":11078,"17451":13180,"17452":341,"17453":3197,"17454":18284,"17455":529,"17456":9392,"17457":15557,"17458":1697,"17459":10250,"17460":7468,"17461":11738,"17462":3952,"17463":16796,"17464":1496,"17465":16027,"17466":14890,"17467":16223,"17468":12014,"17469":7745,"17470":14646,"17471":2642,"17472":1699,"17473":14714,"17474":6465,"17475":13590,"17476":12231,"17477":4162,"17478":17186,"17479":16626,"17480":14387,"17481":14881,"17482":6238,"17483":12617,"17484":1580,"17485":11703,"17486":18184,"17487":17167,"17488":7345,"17489":9556,"17490":13361,"17491":4908,"17492":7440,"17493":13216,"17494":9396,"17495":8069,"17496":8904,"17497":12358,"17498":9266,"17499":13279,"17500":12798,"17501":928,"17502":14112,"17503":1392,"17504":16206,"17505":55,"17506":3033,"17507":7167,"17508":3954,"17509":11916,"17510":13071,"17511":11157,"17512":5584,"17513":4152,"17514":13678,"17515":2335,"17516":8990,"17517":4686,"17518":7639,"17519":16558,"17520":16412,"17521":4895,"17522":8896,"17523":17334,"17524":6396,"17525":12153,"17526":13776,"17527":13454,"17528":4538,"17529":8521,"17530":3172,"17531":3367,"17532":11494,"17533":4845,"17534":2547,"17535":10442,"17536":8084,"17537":7688,"17538":10890,"17539":277,"17540":142,"17541":17213,"17542":9482,"17543":12529,"17544":3056,"17545":16687,"17546":11896,"17547":5018,"17548":10277,"17549":9477,"17550":7979,"17551":7530,"17552":14453,"17553":4905,"17554":15357,"17555":5661,"17556":9340,"17557":4842,"17558":7052,"17559":16808,"17560":13077,"17561":11003,"17562":316,"17563":5468,"17564":3632,"17565":2967,"17566":7879,"17567":16325,"17568":9880,"17569":3286,"17570":1839,"17571":8825,"17572":134,"17573":6704,"17574":17941,"17575":11774,"17576":1739,"17577":11290,"17578":17564,"17579":3158,"17580":11505,"17581":2941,"17582":1127,"17583":18317,"17584":11134,"17585":13876,"17586":3900,"17587":12470,"17588":13242,"17589":1544,"17590":2422,"17591":9998,"17592":3412,"17593":4981,"17594":8085,"17595":11765,"17596":4436,"17597":10762,"17598":12576,"17599":1905,"17600":14798,"17601":1075,"17602":6155,"17603":17882,"17604":206,"17605":17689,"17606":15909,"17607":5144,"17608":6137,"17609":7391,"17610":5110,"17611":13212,"17612":1473,"17613":3928,"17614":1541,"17615":7369,"17616":9025,"17617":6457,"17618":7750,"17619":14172,"17620":13991,"17621":13735,"17622":13344,"17623":9925,"17624":11739,"17625":2932,"17626":11829,"17627":12508,"17628":16592,"17629":10817,"17630":2830,"17631":13193,"17632":17106,"17633":6056,"17634":910,"17635":1351,"17636":4591,"17637":2090,"17638":15645,"17639":15188,"17640":4719,"17641":14540,"17642":6625,"17643":8950,"17644":13425,"17645":1313,"17646":597,"17647":13324,"17648":8327,"17649":12045,"17650":663,"17651":607,"17652":15582,"17653":5708,"17654":15147,"17655":4707,"17656":15726,"17657":5631,"17658":2800,"17659":8046,"17660":1843,"17661":1854,"17662":12856,"17663":14979,"17664":6223,"17665":7956,"17666":18240,"17667":3119,"17668":10897,"17669":17323,"17670":11263,"17671":2225,"17672":13956,"17673":2322,"17674":6429,"17675":16949,"17676":11429,"17677":13389,"17678":16486,"17679":13147,"17680":7103,"17681":12346,"17682":11811,"17683":3651,"17684":5517,"17685":14013,"17686":12744,"17687":10087,"17688":6967,"17689":6524,"17690":6947,"17691":16862,"17692":14052,"17693":10841,"17694":8506,"17695":17611,"17696":10718,"17697":14123,"17698":12890,"17699":8434,"17700":17507,"17701":13476,"17702":15988,"17703":14625,"17704":17877,"17705":4630,"17706":9902,"17707":7700,"17708":2121,"17709":14598,"17710":16013,"17711":16690,"17712":15070,"17713":8929,"17714":7990,"17715":2406,"17716":16100,"17717":977,"17718":4032,"17719":2844,"17720":7536,"17721":8712,"17722":9760,"17723":6631,"17724":15729,"17725":1711,"17726":9743,"17727":15990,"17728":7791,"17729":3459,"17730":17630,"17731":4709,"17732":682,"17733":17405,"17734":18140,"17735":9637,"17736":2857,"17737":8923,"17738":6543,"17739":16902,"17740":8888,"17741":142,"17742":10752,"17743":5680,"17744":5225,"17745":5979,"17746":12621,"17747":11313,"17748":9414,"17749":5489,"17750":11953,"17751":17867,"17752":12862,"17753":15317,"17754":4612,"17755":4086,"17756":12966,"17757":4185,"17758":7522,"17759":8662,"17760":10437,"17761":18261,"17762":1304,"17763":887,"17764":12372,"17765":15062,"17766":4658,"17767":3476,"17768":8621,"17769":5279,"17770":10515,"17771":8456,"17772":15710,"17773":17090,"17774":5351,"17775":11717,"17776":2761,"17777":25,"17778":11947,"17779":6449,"17780":3601,"17781":12402,"17782":705,"17783":14182,"17784":3198,"17785":16435,"17786":9218,"17787":6029,"17788":14710,"17789":13321,"17790":17977,"17791":8678,"17792":7279,"17793":16266,"17794":6246,"17795":12655,"17796":1894,"17797":12289,"17798":12154,"17799":10685,"17800":16419,"17801":11017,"17802":3235,"17803":13370,"17804":7132,"17805":7217,"17806":16998,"17807":17367,"17808":12043,"17809":1670,"17810":8401,"17811":5514,"17812":11357,"17813":8549,"17814":3671,"17815":8785,"17816":17726,"17817":12159,"17818":9428,"17819":3355,"17820":6748,"17821":5306,"17822":1135,"17823":6259,"17824":15988,"17825":6582,"17826":4038,"17827":3970,"17828":15000,"17829":8372,"17830":10741,"17831":3049,"17832":5783,"17833":3534,"17834":3913,"17835":10339,"17836":7491,"17837":4024,"17838":16676,"17839":3756,"17840":7306,"17841":11446,"17842":1000,"17843":183,"17844":10930,"17845":5162,"17846":10245,"17847":3204,"17848":7222,"17849":12222,"17850":18125,"17851":14585,"17852":9559,"17853":14773,"17854":17933,"17855":4999,"17856":11765,"17857":9903,"17858":3810,"17859":7378,"17860":17324,"17861":15488,"17862":2337,"17863":14304,"17864":5786,"17865":10249,"17866":7097,"17867":8823,"17868":14301,"17869":12354,"17870":8644,"17871":4037,"17872":4034,"17873":6912,"17874":16990,"17875":14763,"17876":9383,"17877":14271,"17878":10875,"17879":5841,"17880":13912,"17881":10286,"17882":16357,"17883":17487,"17884":4222,"17885":12853,"17886":16147,"17887":4690,"17888":16721,"17889":14969,"17890":15575,"17891":9070,"17892":10032,"17893":16567,"17894":7466,"17895":14785,"17896":15216,"17897":4125,"17898":15870,"17899":4092,"17900":1318,"17901":11262,"17902":3409,"17903":1011,"17904":7397,"17905":948,"17906":8526,"17907":11196,"17908":7178,"17909":17922,"17910":116,"17911":7577,"17912":18283,"17913":11588,"17914":10536,"17915":14094,"17916":7794,"17917":2153,"17918":4170,"17919":17636,"17920":5057,"17921":1300,"17922":8886,"17923":285,"17924":2481,"17925":7191,"17926":7123,"17927":18177,"17928":15169,"17929":7318,"17930":15728,"17931":4847,"17932":3300,"17933":14456,"17934":9100,"17935":2115,"17936":15529,"17937":6626,"17938":4456,"17939":5563,"17940":9302,"17941":17702,"17942":18116,"17943":12120,"17944":3445,"17945":5646,"17946":18200,"17947":18063,"17948":7031,"17949":2942,"17950":15279,"17951":4213,"17952":8225,"17953":426,"17954":5394,"17955":6796,"17956":3740,"17957":1089,"17958":13057,"17959":3679,"17960":5990,"17961":10651,"17962":3490,"17963":3904,"17964":4402,"17965":7192,"17966":1125,"17967":7081,"17968":16973,"17969":15073,"17970":15112,"17971":7754,"17972":15583,"17973":3599,"17974":16070,"17975":11793,"17976":17989,"17977":1527,"17978":6007,"17979":4752,"17980":16006,"17981":13357,"17982":10345,"17983":14043,"17984":2342,"17985":2585,"17986":14690,"17987":15432,"17988":197,"17989":10859,"17990":7451,"17991":8447,"17992":968,"17993":7917,"17994":2287,"17995":15664,"17996":15888,"17997":10043,"17998":6718,"17999":13719,"18000":12634,"18001":15771,"18002":7051,"18003":16627,"18004":7232,"18005":14377,"18006":1749,"18007":4017,"18008":10436,"18009":4140,"18010":15317,"18011":14388,"18012":17513,"18013":4253,"18014":13476,"18015":4554,"18016":5811,"18017":3081,"18018":9968,"18019":11645,"18020":8336,"18021":17526,"18022":9288,"18023":10139,"18024":15838,"18025":9332,"18026":4366,"18027":8634,"18028":9078,"18029":4055,"18030":7543,"18031":6166,"18032":10640,"18033":9234,"18034":1822,"18035":5726,"18036":7944,"18037":7445,"18038":9127,"18039":10739,"18040":939,"18041":18184,"18042":12106,"18043":16797,"18044":3263,"18045":12915,"18046":9828,"18047":6776,"18048":12,"18049":14078,"18050":10472,"18051":15088,"18052":1580,"18053":15054,"18054":8566,"18055":3558,"18056":261,"18057":9508,"18058":6559,"18059":13910,"18060":18353,"18061":10835,"18062":4478,"18063":7764,"18064":8435,"18065":3817,"18066":17282,"18067":11643,"18068":16007,"18069":17444,"18070":6875,"18071":13056,"18072":11439,"18073":16050,"18074":10517,"18075":4425,"18076":16323,"18077":17614,"18078":14926,"18079":9218,"18080":2382,"18081":10003,"18082":10936,"18083":4014,"18084":16269,"18085":253,"18086":16023,"18087":4604,"18088":337,"18089":10099,"18090":16024,"18091":9812,"18092":10140,"18093":10721,"18094":14329,"18095":6330,"18096":8218,"18097":6416,"18098":14309,"18099":9195,"18100":5389,"18101":10340,"18102":7667,"18103":17312,"18104":5113,"18105":1914,"18106":4725,"18107":13921,"18108":5885,"18109":7058,"18110":1197,"18111":7450,"18112":17951,"18113":2062,"18114":9043,"18115":17930,"18116":17597,"18117":9058,"18118":5837,"18119":15,"18120":6807,"18121":8467,"18122":11630,"18123":7097,"18124":10771,"18125":6866,"18126":928,"18127":4526,"18128":6840,"18129":12051,"18130":16994,"18131":1618,"18132":15358,"18133":5849,"18134":12078,"18135":15935,"18136":5513,"18137":2718,"18138":13719,"18139":4384,"18140":2705,"18141":12445,"18142":15129,"18143":7565,"18144":10266,"18145":5658,"18146":11982,"18147":16928,"18148":1268,"18149":10877,"18150":12902,"18151":16876,"18152":12178,"18153":15508,"18154":3383,"18155":18342,"18156":17256,"18157":5562,"18158":56,"18159":2080,"18160":14016,"18161":58,"18162":4527,"18163":11395,"18164":13811,"18165":9123,"18166":15995,"18167":13530,"18168":9430,"18169":16212,"18170":7760,"18171":5608,"18172":18185,"18173":9258,"18174":5991,"18175":4118,"18176":14505,"18177":2282,"18178":14638,"18179":11123,"18180":87,"18181":15916,"18182":12156,"18183":14046,"18184":17500,"18185":2102,"18186":2788,"18187":2945,"18188":4783,"18189":16355,"18190":12309,"18191":13960,"18192":687,"18193":439,"18194":6225,"18195":1710,"18196":13210,"18197":18059,"18198":7941,"18199":17959,"18200":5731,"18201":13345,"18202":6397,"18203":3918,"18204":1573,"18205":3357,"18206":17311,"18207":12490,"18208":1615,"18209":13155,"18210":5932,"18211":6207,"18212":13319,"18213":4526,"18214":12499,"18215":4591,"18216":15694,"18217":2948,"18218":17944,"18219":14636,"18220":4066,"18221":15586,"18222":8040,"18223":5925,"18224":17238,"18225":9250,"18226":11434,"18227":8765,"18228":2540,"18229":14810,"18230":2882,"18231":13087,"18232":6012,"18233":1109,"18234":17422,"18235":4241,"18236":18225,"18237":6577,"18238":12434,"18239":14856,"18240":5297,"18241":2851,"18242":16496,"18243":12969,"18244":2056,"18245":1122,"18246":17680,"18247":711,"18248":13532,"18249":15270,"18250":5838,"18251":8731,"18252":5568,"18253":10504,"18254":12217,"18255":12922,"18256":16642,"18257":3711,"18258":18144,"18259":7214,"18260":17981,"18261":14653,"18262":662,"18263":3467,"18264":13264,"18265":6164,"18266":12496,"18267":6273,"18268":8213,"18269":12143,"18270":7957,"18271":10057,"18272":11493,"18273":3187,"18274":14492,"18275":8206,"18276":2192,"18277":10504,"18278":5230,"18279":11788,"18280":13747,"18281":7431,"18282":2364,"18283":11548,"18284":12944,"18285":6230,"18286":15696,"18287":12945,"18288":11857,"18289":13767,"18290":9074,"18291":13574,"18292":13677,"18293":4942,"18294":5380,"18295":5621,"18296":15850,"18297":16888,"18298":9888,"18299":372,"18300":6608,"18301":6110,"18302":1607,"18303":9757,"18304":17663,"18305":5263,"18306":9666,"18307":1122,"18308":8241,"18309":988,"18310":7235,"18311":17208,"18312":9063,"18313":17102,"18314":8741,"18315":6452,"18316":5923,"18317":17393,"18318":14949,"18319":7862,"18320":8628,"18321":9285,"18322":12080,"18323":6808,"18324":11099,"18325":8972,"18326":1942,"18327":5958,"18328":6079,"18329":10017,"18330":1592,"18331":6438,"18332":1804,"18333":11940,"18334":9525,"18335":7684,"18336":1287,"18337":16107,"18338":6618,"18339":1052,"18340":33,"18341":13389,"18342":13390,"18343":11045,"18344":13675,"18345":11005,"18346":1007,"18347":847,"18348":7310,"18349":8635,"18350":3453,"18351":10095,"18352":18272,"18353":10106,"18354":18340,"18355":6174,"18356":12250,"18357":2451,"18358":13530,"18359":5448,"18360":10262,"18361":13951,"18362":7092,"18363":11076,"18364":13741,"18365":17643,"18366":11695,"18367":12651,"18368":7026,"18369":11586,"18370":8922,"18371":12306,"18372":10712,"18373":7927,"18374":11813,"18375":8816,"18376":18346,"18377":7456,"18378":10157,"18379":7938,"18380":7779,"18381":12899,"18382":12496,"18383":7078,"18384":16006,"18385":17652,"18386":7967,"18387":14375,"18388":444,"18389":18166,"18390":9209,"18391":14645,"18392":18147,"18393":12957,"18394":2791,"18395":17642,"18396":18305,"18397":12711,"18398":16552,"18399":15254,"18400":10075,"18401":10278,"18402":10035,"18403":16006,"18404":2751,"18405":7924,"18406":17215,"18407":14205,"18408":9227,"18409":2481,"18410":5620,"18411":2095,"18412":12233,"18413":12772,"18414":7325,"18415":8007,"18416":10903,"18417":5945,"18418":7099,"18419":5732,"18420":2289,"18421":10925,"18422":6040,"18423":5233,"18424":16499,"18425":10202,"18426":16342,"18427":8889,"18428":2429,"18429":1780,"18430":15004,"18431":9292,"18432":3116,"18433":17995,"18434":2726,"18435":1210,"18436":3894,"18437":3797,"18438":11320,"18439":16087,"18440":4781,"18441":7261,"18442":11503,"18443":5439,"18444":2543,"18445":12193,"18446":11406,"18447":13500,"18448":2193,"18449":6516,"18450":15612,"18451":14841,"18452":8409,"18453":299,"18454":16610,"18455":12703,"18456":16217,"18457":2988,"18458":6117,"18459":4945,"18460":2431,"18461":17096,"18462":17905,"18463":6920,"18464":5989,"18465":13276,"18466":17688,"18467":16282,"18468":8732,"18469":8769,"18470":13425,"18471":9452,"18472":7790,"18473":11643,"18474":2783,"18475":10102,"18476":7381,"18477":10987,"18478":3447,"18479":17830,"18480":15404,"18481":8208,"18482":4542,"18483":9526,"18484":708,"18485":8475,"18486":17879,"18487":11040,"18488":15671,"18489":766,"18490":1419,"18491":14509,"18492":8041,"18493":4586,"18494":5413,"18495":10889,"18496":6433,"18497":15335,"18498":12394,"18499":3280,"18500":11504,"18501":13148,"18502":4830,"18503":15416,"18504":2335,"18505":15056,"18506":7876,"18507":7401,"18508":3928,"18509":1135,"18510":12789,"18511":3676,"18512":8988,"18513":16802,"18514":15285,"18515":11997,"18516":4634,"18517":17656,"18518":17176,"18519":13506,"18520":4364,"18521":1249,"18522":14120,"18523":9736,"18524":13843,"18525":8458,"18526":7751,"18527":1358,"18528":6837,"18529":12026,"18530":7135,"18531":6403,"18532":5715,"18533":3148,"18534":7538,"18535":14741,"18536":7629,"18537":17407,"18538":2909,"18539":12183,"18540":11684,"18541":8436,"18542":14489,"18543":2657,"18544":1522,"18545":17727,"18546":11791,"18547":7492,"18548":188,"18549":5964,"18550":1789,"18551":17842,"18552":6223,"18553":5303,"18554":10575,"18555":4911,"18556":15218,"18557":4672,"18558":8050,"18559":16114,"18560":5151,"18561":8569,"18562":698,"18563":8719,"18564":3596,"18565":9478,"18566":10183,"18567":9153,"18568":10332,"18569":10138,"18570":12944,"18571":13215,"18572":4618,"18573":6858,"18574":17655,"18575":61,"18576":14623,"18577":13125,"18578":1207,"18579":9727,"18580":10794,"18581":7760,"18582":8230,"18583":2448,"18584":6718,"18585":7952,"18586":13371,"18587":13453,"18588":1911,"18589":13852,"18590":11067,"18591":9592,"18592":14397,"18593":11659,"18594":6360,"18595":1209,"18596":11946,"18597":1215,"18598":17013,"18599":11905,"18600":16153,"18601":9458,"18602":11229,"18603":10309,"18604":11560,"18605":9750,"18606":3276,"18607":3479,"18608":871,"18609":3178,"18610":4627,"18611":997,"18612":5324,"18613":18087,"18614":15860,"18615":10423,"18616":18261,"18617":18123,"18618":8955,"18619":84,"18620":938,"18621":8655,"18622":11142,"18623":683,"18624":4391,"18625":13808,"18626":13190,"18627":5816,"18628":4514,"18629":5028,"18630":7544,"18631":1695,"18632":9661,"18633":14323,"18634":9269,"18635":7008,"18636":7709,"18637":6468,"18638":17964,"18639":4015,"18640":9679,"18641":316,"18642":2285,"18643":12367,"18644":9382,"18645":4640,"18646":2044,"18647":122,"18648":13103,"18649":12095,"18650":11670,"18651":3883,"18652":8730,"18653":13466,"18654":12699,"18655":5781,"18656":17889,"18657":7758,"18658":10306,"18659":5544,"18660":13539,"18661":18354,"18662":4111,"18663":12938,"18664":3219,"18665":12460,"18666":5660,"18667":9593,"18668":18309,"18669":1877,"18670":14805,"18671":15014,"18672":331,"18673":9118,"18674":18092,"18675":11696,"18676":4453,"18677":18356,"18678":5533,"18679":1061,"18680":7225,"18681":11785,"18682":6730,"18683":331,"18684":17795,"18685":8151,"18686":14868,"18687":15276,"18688":4071,"18689":17704,"18690":3491,"18691":4176,"18692":10711,"18693":12661,"18694":10667,"18695":14907,"18696":15328,"18697":15993,"18698":3916,"18699":11696,"18700":12918,"18701":15912,"18702":15262,"18703":11825,"18704":15387,"18705":11478,"18706":896,"18707":12992,"18708":2365,"18709":12742,"18710":10731,"18711":10770,"18712":11256,"18713":7945,"18714":5559,"18715":11342,"18716":14806,"18717":16947,"18718":13248,"18719":9248,"18720":14007,"18721":8492,"18722":12276,"18723":16736,"18724":12984,"18725":5876,"18726":9053,"18727":14455,"18728":8076,"18729":3859,"18730":1613,"18731":3443,"18732":5731,"18733":7257,"18734":8765,"18735":15742,"18736":9549,"18737":6042,"18738":11966,"18739":6283,"18740":7563,"18741":3653,"18742":3993,"18743":10669,"18744":4378,"18745":12628,"18746":1957,"18747":1949,"18748":15951,"18749":15070,"18750":13580,"18751":3336,"18752":14495,"18753":18197,"18754":9963,"18755":14976,"18756":16653,"18757":11134,"18758":9599,"18759":660,"18760":2949,"18761":794,"18762":7684,"18763":2178,"18764":7722,"18765":14778,"18766":5841,"18767":17162,"18768":4174,"18769":577,"18770":118,"18771":9671,"18772":4684,"18773":14398,"18774":12352,"18775":14697,"18776":15255,"18777":15696,"18778":3551,"18779":5815,"18780":13695,"18781":2970,"18782":8361,"18783":5339,"18784":6124,"18785":15576,"18786":8541,"18787":15220,"18788":7404,"18789":10394,"18790":1363,"18791":692,"18792":14319,"18793":16383,"18794":16766,"18795":13327,"18796":14035,"18797":17071,"18798":18338,"18799":2377,"18800":1850,"18801":3592,"18802":14963,"18803":6055,"18804":16980,"18805":15429,"18806":15418,"18807":4419,"18808":17463,"18809":11323,"18810":7495,"18811":6898,"18812":4485,"18813":2662,"18814":17842,"18815":984,"18816":7365,"18817":12792,"18818":15508,"18819":5688,"18820":10069,"18821":13058,"18822":16345,"18823":2705,"18824":676,"18825":4002,"18826":9133,"18827":4190,"18828":633,"18829":6894,"18830":3913,"18831":344,"18832":1413,"18833":12495,"18834":3891,"18835":6717,"18836":4645,"18837":1715,"18838":4186,"18839":11351,"18840":14250,"18841":1163,"18842":12430,"18843":2718,"18844":12505,"18845":11760,"18846":4429,"18847":4465,"18848":9840,"18849":3058,"18850":12543,"18851":15116,"18852":2614,"18853":2868,"18854":5039,"18855":8265,"18856":6065,"18857":15425,"18858":8882,"18859":8636,"18860":6928,"18861":2754,"18862":5162,"18863":3099,"18864":7119,"18865":15657,"18866":5331,"18867":16122,"18868":8865,"18869":14104,"18870":67,"18871":591,"18872":12042,"18873":2843,"18874":8996,"18875":11325,"18876":14008,"18877":4853,"18878":11430,"18879":6186,"18880":1026,"18881":1279,"18882":1698,"18883":2162,"18884":10783,"18885":7654,"18886":5068,"18887":5270,"18888":7478,"18889":17602,"18890":17476,"18891":2717,"18892":603,"18893":9839,"18894":8031,"18895":14481,"18896":16599,"18897":6560,"18898":9376,"18899":14953,"18900":12629,"18901":10497,"18902":9493,"18903":824,"18904":4117,"18905":12861,"18906":8836,"18907":380,"18908":961,"18909":2011,"18910":16957,"18911":16193,"18912":6478,"18913":4047,"18914":15115,"18915":13773,"18916":4502,"18917":12981,"18918":16506,"18919":2718,"18920":17352,"18921":15580,"18922":3572,"18923":2317,"18924":11901,"18925":5807,"18926":8763,"18927":15838,"18928":11957,"18929":8024,"18930":4651,"18931":6618,"18932":14378,"18933":14297,"18934":17389,"18935":9480,"18936":13387,"18937":4596,"18938":85,"18939":15737,"18940":10962,"18941":2375,"18942":12096,"18943":8946,"18944":13706,"18945":4793,"18946":10798,"18947":1701,"18948":9525,"18949":16307,"18950":1674,"18951":6510,"18952":9937,"18953":10682,"18954":7617,"18955":376,"18956":11049,"18957":5910,"18958":12757,"18959":16906,"18960":10244,"18961":9141,"18962":1722,"18963":5160,"18964":8802,"18965":7938,"18966":5730,"18967":16051,"18968":15027,"18969":15468,"18970":9583,"18971":3894,"18972":161,"18973":11028,"18974":3486,"18975":14732,"18976":15669,"18977":16778,"18978":8351,"18979":14968,"18980":6005,"18981":17856,"18982":14735,"18983":3981,"18984":6215,"18985":10528,"18986":8399,"18987":1288,"18988":7639,"18989":3267,"18990":5053,"18991":8076,"18992":15202,"18993":8495,"18994":17170,"18995":741,"18996":12759,"18997":730,"18998":11887,"18999":16169,"19000":11743,"19001":15831,"19002":15195,"19003":9172,"19004":5353,"19005":14616,"19006":5641,"19007":14546,"19008":15803,"19009":3563,"19010":11782,"19011":2666,"19012":3340,"19013":5928,"19014":1294,"19015":1661,"19016":1185,"19017":8173,"19018":1981,"19019":15360,"19020":3746,"19021":7314,"19022":1956,"19023":5428,"19024":17985,"19025":16214,"19026":14271,"19027":12990,"19028":3552,"19029":12743,"19030":13342,"19031":17430,"19032":7870,"19033":15350,"19034":2381,"19035":10119,"19036":4424,"19037":1133,"19038":11956,"19039":5514,"19040":3019,"19041":7147,"19042":168,"19043":17349,"19044":7617,"19045":13543,"19046":3910,"19047":8382,"19048":8574,"19049":14616,"19050":11690,"19051":4234,"19052":8775,"19053":3722,"19054":3036,"19055":17897,"19056":11440,"19057":4223,"19058":839,"19059":11667,"19060":11113,"19061":17145,"19062":13472,"19063":8507,"19064":5994,"19065":4507,"19066":7231,"19067":2043,"19068":5311,"19069":4981,"19070":7349,"19071":17261,"19072":11001,"19073":7421,"19074":8920,"19075":5005,"19076":1124,"19077":1406,"19078":6593,"19079":15668,"19080":17116,"19081":16215,"19082":10157,"19083":6730,"19084":5433,"19085":16086,"19086":3961,"19087":2217,"19088":5248,"19089":14706,"19090":1068,"19091":1247,"19092":5853,"19093":7384,"19094":7273,"19095":6082,"19096":6459,"19097":7945,"19098":7990,"19099":15292,"19100":5151,"19101":8926,"19102":12378,"19103":2400,"19104":17286,"19105":8341,"19106":10237,"19107":10663,"19108":9063,"19109":16084,"19110":8544,"19111":5044,"19112":17198,"19113":7601,"19114":10377,"19115":13403,"19116":7330,"19117":16936,"19118":13703,"19119":5972,"19120":2840,"19121":8696,"19122":13886,"19123":14038,"19124":1595,"19125":16744,"19126":625,"19127":2860,"19128":15079,"19129":13522,"19130":6090,"19131":2680,"19132":12725,"19133":2888,"19134":4639,"19135":920,"19136":13052,"19137":6031,"19138":1831,"19139":11080,"19140":1689,"19141":5105,"19142":8971,"19143":9030,"19144":17690,"19145":10167,"19146":9604,"19147":13160,"19148":5749,"19149":12487,"19150":7682,"19151":8662,"19152":17260,"19153":15822,"19154":1481,"19155":11105,"19156":668,"19157":8572,"19158":13308,"19159":7842,"19160":5947,"19161":1072,"19162":16542,"19163":16155,"19164":17578,"19165":4376,"19166":12540,"19167":16223,"19168":895,"19169":15183,"19170":18110,"19171":16497,"19172":6483,"19173":6326,"19174":2543,"19175":8122,"19176":5666,"19177":6813,"19178":575,"19179":17656,"19180":5731,"19181":12972,"19182":17255,"19183":8434,"19184":2946,"19185":11789,"19186":11447,"19187":3596,"19188":10640,"19189":10570,"19190":8145,"19191":16829,"19192":7763,"19193":5353,"19194":14126,"19195":6407,"19196":6812,"19197":14911,"19198":4285,"19199":2760,"19200":9446,"19201":15836,"19202":7140,"19203":9223,"19204":3256,"19205":18075,"19206":11058,"19207":13106,"19208":5389,"19209":11294,"19210":18260,"19211":5743,"19212":15421,"19213":4292,"19214":17320,"19215":18251,"19216":7562,"19217":6696,"19218":11465,"19219":2806,"19220":17225,"19221":2684,"19222":2312,"19223":7753,"19224":2601,"19225":16630,"19226":17346,"19227":2067,"19228":6157,"19229":1764,"19230":1291,"19231":3996,"19232":55,"19233":13839,"19234":9368,"19235":1804,"19236":14450,"19237":18190,"19238":4181,"19239":14193,"19240":14984,"19241":613,"19242":16499,"19243":11479,"19244":3552,"19245":10571,"19246":10760,"19247":8393,"19248":9886,"19249":8557,"19250":13166,"19251":13203,"19252":14163,"19253":9080,"19254":12304,"19255":3830,"19256":1624,"19257":6475,"19258":14550,"19259":6724,"19260":16497,"19261":9170,"19262":16838,"19263":9511,"19264":582,"19265":7647,"19266":15018,"19267":16425,"19268":6708,"19269":2906,"19270":7947,"19271":16045,"19272":8745,"19273":8293,"19274":7715,"19275":12650,"19276":8975,"19277":14357,"19278":12682,"19279":395,"19280":707,"19281":7731,"19282":12789,"19283":473,"19284":16327,"19285":6432,"19286":6732,"19287":1907,"19288":9572,"19289":1843,"19290":15926,"19291":48,"19292":13235,"19293":11989,"19294":18358,"19295":16823,"19296":15495,"19297":11962,"19298":600,"19299":11846,"19300":6461,"19301":5950,"19302":3362,"19303":11071,"19304":10520,"19305":4949,"19306":18249,"19307":3282,"19308":4035,"19309":2372,"19310":9498,"19311":5736,"19312":10350,"19313":8448,"19314":3390,"19315":6807,"19316":9777,"19317":10536,"19318":3191,"19319":5200,"19320":9764,"19321":7099,"19322":8464,"19323":7259,"19324":10271,"19325":4090,"19326":16944,"19327":12096,"19328":16379,"19329":15678,"19330":992,"19331":1769,"19332":12668,"19333":2493,"19334":9700,"19335":12444,"19336":411,"19337":11229,"19338":2594,"19339":3480,"19340":17769,"19341":13036,"19342":15804,"19343":12309,"19344":160,"19345":16131,"19346":2705,"19347":6942,"19348":1891,"19349":3157,"19350":15318,"19351":7045,"19352":13448,"19353":14488,"19354":4787,"19355":9652,"19356":3987,"19357":5027,"19358":2765,"19359":12686,"19360":7075,"19361":14494,"19362":1275,"19363":16416,"19364":11028,"19365":7396,"19366":4075,"19367":3822,"19368":12749,"19369":9871,"19370":17465,"19371":15772,"19372":15477,"19373":13650,"19374":13830,"19375":16493,"19376":16304,"19377":4553,"19378":12455,"19379":11098,"19380":7409,"19381":14739,"19382":10313,"19383":939,"19384":247,"19385":4982,"19386":15433,"19387":4322,"19388":12371,"19389":11459,"19390":16501,"19391":7046,"19392":13984,"19393":10179,"19394":15774,"19395":16532,"19396":9889,"19397":562,"19398":7020,"19399":11066,"19400":3159,"19401":17567,"19402":11143,"19403":11963,"19404":3999,"19405":5260,"19406":16710,"19407":5558,"19408":14144,"19409":15069,"19410":3863,"19411":10364,"19412":10968,"19413":1269,"19414":10723,"19415":16011,"19416":11441,"19417":16991,"19418":928,"19419":15770,"19420":17270,"19421":8991,"19422":8842,"19423":16738,"19424":2268,"19425":2645,"19426":14219,"19427":9533,"19428":6478,"19429":10243,"19430":3935,"19431":17157,"19432":6737,"19433":14010,"19434":18003,"19435":9640,"19436":12476,"19437":8791,"19438":7837,"19439":3124,"19440":5048,"19441":519,"19442":2336,"19443":17306,"19444":17612,"19445":10833,"19446":15096,"19447":10656,"19448":10292,"19449":10966,"19450":5690,"19451":4767,"19452":17492,"19453":7063,"19454":16337,"19455":10485,"19456":14035,"19457":13603,"19458":7511,"19459":49,"19460":9349,"19461":11636,"19462":16397,"19463":635,"19464":17424,"19465":6092,"19466":7567,"19467":9864,"19468":4415,"19469":13237,"19470":12934,"19471":5321,"19472":13216,"19473":10315,"19474":2889,"19475":11807,"19476":15532,"19477":1296,"19478":8775,"19479":11592,"19480":13473,"19481":17896,"19482":16957,"19483":3578,"19484":13461,"19485":6007,"19486":5882,"19487":3932,"19488":7472,"19489":6485,"19490":1169,"19491":17444,"19492":13910,"19493":10711,"19494":17073,"19495":6269,"19496":5297,"19497":9347,"19498":10469,"19499":5834,"19500":6564,"19501":14485,"19502":4038,"19503":17165,"19504":15127,"19505":4159,"19506":3379,"19507":3850,"19508":12142,"19509":1140,"19510":1380,"19511":6713,"19512":14334,"19513":8788,"19514":30,"19515":6624,"19516":12004,"19517":7017,"19518":2213,"19519":11381,"19520":1381,"19521":16512,"19522":8474,"19523":3901,"19524":2759,"19525":15816,"19526":17560,"19527":1067,"19528":12573,"19529":4171,"19530":15095,"19531":4807,"19532":6012,"19533":12821,"19534":9477,"19535":828,"19536":15785,"19537":15548,"19538":8979,"19539":18270,"19540":12871,"19541":14092,"19542":7969,"19543":13530,"19544":16485,"19545":4640,"19546":7152,"19547":15325,"19548":9166,"19549":3870,"19550":17131,"19551":461,"19552":15305,"19553":7903,"19554":7702,"19555":4662,"19556":14651,"19557":3694,"19558":7410,"19559":10262,"19560":1714,"19561":17193,"19562":12229,"19563":6061,"19564":16682,"19565":3732,"19566":9680,"19567":12574,"19568":13166,"19569":1669,"19570":13403,"19571":16016,"19572":16955,"19573":9555,"19574":11931,"19575":3951,"19576":9049,"19577":13521,"19578":14913,"19579":13534,"19580":14289,"19581":11608,"19582":17308,"19583":10151,"19584":9590,"19585":15831,"19586":10027,"19587":2132,"19588":8711,"19589":9376,"19590":189,"19591":16443,"19592":9157,"19593":1334,"19594":14159,"19595":17,"19596":2950,"19597":10350,"19598":16873,"19599":15433,"19600":10573,"19601":8354,"19602":5724,"19603":16600,"19604":8767,"19605":10716,"19606":5669,"19607":10390,"19608":11517,"19609":1355,"19610":1888,"19611":1890,"19612":5476,"19613":2594,"19614":15358,"19615":17011,"19616":16785,"19617":346,"19618":12670,"19619":13821,"19620":14065,"19621":8310,"19622":4466,"19623":5963,"19624":4248,"19625":3090,"19626":14798,"19627":6837,"19628":15756,"19629":11532,"19630":12254,"19631":15,"19632":14626,"19633":5613,"19634":5070,"19635":7919,"19636":8081,"19637":14750,"19638":1700,"19639":17261,"19640":7251,"19641":993,"19642":5944,"19643":16244,"19644":7074,"19645":905,"19646":3493,"19647":4811,"19648":5873,"19649":786,"19650":4819,"19651":2001,"19652":7273,"19653":18291,"19654":8158,"19655":13573,"19656":11065,"19657":9039,"19658":6357,"19659":10370,"19660":14674,"19661":15635,"19662":14562,"19663":5715,"19664":16328,"19665":6593,"19666":16922,"19667":3750,"19668":14039,"19669":16405,"19670":8142,"19671":4572,"19672":281,"19673":17160,"19674":2665,"19675":6447,"19676":17301,"19677":13144,"19678":12818,"19679":12314,"19680":1266,"19681":2853,"19682":6448,"19683":7803,"19684":10225,"19685":12194,"19686":14380,"19687":16875,"19688":1333,"19689":8070,"19690":18138,"19691":1771,"19692":3974,"19693":6816,"19694":3889,"19695":7552,"19696":14312,"19697":12538,"19698":9514,"19699":524,"19700":2110,"19701":11973,"19702":12479,"19703":4033,"19704":12337,"19705":4092,"19706":17129,"19707":11220,"19708":1348,"19709":4442,"19710":6662,"19711":16414,"19712":1041,"19713":10129,"19714":10620,"19715":2353,"19716":8285,"19717":14837,"19718":17422,"19719":12182,"19720":5994,"19721":832,"19722":18098,"19723":2290,"19724":11478,"19725":4486,"19726":12708,"19727":9638,"19728":11239,"19729":299,"19730":10294,"19731":9576,"19732":13522,"19733":17884,"19734":6905,"19735":5833,"19736":768,"19737":10184,"19738":13970,"19739":2001,"19740":14973,"19741":7883,"19742":8253,"19743":7209,"19744":15224,"19745":8369,"19746":6386,"19747":3254,"19748":17757,"19749":17491,"19750":13196,"19751":7570,"19752":5969,"19753":11453,"19754":16919,"19755":13757,"19756":6153,"19757":15525,"19758":4112,"19759":16208,"19760":12783,"19761":17847,"19762":4807,"19763":17937,"19764":2895,"19765":2753,"19766":2299,"19767":13777,"19768":14707,"19769":1916,"19770":4888,"19771":83,"19772":165,"19773":15160,"19774":14094,"19775":11150,"19776":8015,"19777":5711,"19778":12339,"19779":8013,"19780":7922,"19781":1989,"19782":16425,"19783":7219,"19784":13726,"19785":3863,"19786":12638,"19787":597,"19788":17459,"19789":3818,"19790":4024,"19791":2110,"19792":8421,"19793":16839,"19794":5721,"19795":14585,"19796":132,"19797":13397,"19798":4366,"19799":11996,"19800":8966,"19801":6427,"19802":969,"19803":6361,"19804":17836,"19805":17119,"19806":12896,"19807":338,"19808":14576,"19809":6136,"19810":7817,"19811":14467,"19812":471,"19813":12914,"19814":12334,"19815":3755,"19816":15386,"19817":6706,"19818":16766,"19819":9702,"19820":6390,"19821":13861,"19822":4438,"19823":4989,"19824":10654,"19825":2408,"19826":8333,"19827":15245,"19828":13044,"19829":4727,"19830":7976,"19831":2469,"19832":8700,"19833":8950,"19834":7923,"19835":2906,"19836":12171,"19837":11109,"19838":10,"19839":15045,"19840":7749,"19841":1982,"19842":12695,"19843":5281,"19844":9630,"19845":8781,"19846":13794,"19847":17915,"19848":13571,"19849":13169,"19850":5051,"19851":7936,"19852":12855,"19853":17474,"19854":5732,"19855":9960,"19856":10363,"19857":13228,"19858":628,"19859":11861,"19860":4991,"19861":14499,"19862":11219,"19863":14584,"19864":8178,"19865":6855,"19866":17267,"19867":18314,"19868":4151,"19869":6042,"19870":6151,"19871":11356,"19872":17075,"19873":12395,"19874":3013,"19875":7439,"19876":15369,"19877":650,"19878":200,"19879":12101,"19880":17288,"19881":17067,"19882":11057,"19883":14205,"19884":14873,"19885":7298,"19886":2617,"19887":8405,"19888":2250,"19889":7158,"19890":17662,"19891":4629,"19892":16519,"19893":13765,"19894":11831,"19895":234,"19896":10064,"19897":1813,"19898":12343,"19899":7869,"19900":13512,"19901":1630,"19902":1002,"19903":1767,"19904":11948,"19905":506,"19906":8551,"19907":11219,"19908":3289,"19909":16729,"19910":4452,"19911":12236,"19912":12687,"19913":3834,"19914":4484,"19915":1074,"19916":10869,"19917":11568,"19918":78,"19919":10368,"19920":6192,"19921":12931,"19922":955,"19923":8146,"19924":9675,"19925":13110,"19926":11720,"19927":17220,"19928":11118,"19929":9729,"19930":15721,"19931":8111,"19932":16126,"19933":5382,"19934":16226,"19935":13978,"19936":11780,"19937":905,"19938":10025,"19939":5536,"19940":16615,"19941":8735,"19942":200,"19943":550,"19944":975,"19945":10771,"19946":2838,"19947":6627,"19948":624,"19949":6524,"19950":11395,"19951":14157,"19952":7335,"19953":12511,"19954":6338,"19955":10216,"19956":10830,"19957":4279,"19958":1244,"19959":17331,"19960":11843,"19961":2084,"19962":17777,"19963":11817,"19964":6960,"19965":234,"19966":14638,"19967":13783,"19968":9991,"19969":7014,"19970":16904,"19971":13764,"19972":17659,"19973":575,"19974":13467,"19975":5083,"19976":6260,"19977":5173,"19978":4765,"19979":3213,"19980":15412,"19981":8571,"19982":11925,"19983":8487,"19984":1813,"19985":8215,"19986":10740,"19987":6767,"19988":11013,"19989":5070,"19990":972,"19991":11849,"19992":5861,"19993":400,"19994":14805,"19995":8299,"19996":17694,"19997":12776,"19998":6248,"19999":13299,"20000":3640,"20001":1350,"20002":4944,"20003":14689,"20004":17018,"20005":15330,"20006":13401,"20007":4691,"20008":3503,"20009":13151,"20010":11394,"20011":7767,"20012":3894,"20013":16403,"20014":14476,"20015":6587,"20016":17076,"20017":1669,"20018":1465,"20019":18155,"20020":11105,"20021":7975,"20022":1725,"20023":2753,"20024":6000,"20025":18094,"20026":4141,"20027":11237,"20028":12506,"20029":16189,"20030":9013,"20031":17015,"20032":6370,"20033":6879,"20034":17909,"20035":1144,"20036":16326,"20037":13882,"20038":11121,"20039":5348,"20040":11535,"20041":4622,"20042":1281,"20043":18298,"20044":16961,"20045":2691,"20046":14452,"20047":6212,"20048":12213,"20049":6742,"20050":3683,"20051":5131,"20052":2827,"20053":17647,"20054":9845,"20055":11481,"20056":4938,"20057":5903,"20058":8700,"20059":15768,"20060":5902,"20061":13122,"20062":8798,"20063":7659,"20064":7309,"20065":2764,"20066":8177,"20067":8366,"20068":10318,"20069":11090,"20070":4511,"20071":12030,"20072":7073,"20073":6035,"20074":12741,"20075":13802,"20076":13295,"20077":17149,"20078":8483,"20079":5081,"20080":7932,"20081":15799,"20082":11659,"20083":3108,"20084":9568,"20085":9754,"20086":7806,"20087":9929,"20088":4898,"20089":17810,"20090":7094,"20091":17013,"20092":5285,"20093":3800,"20094":13834,"20095":16705,"20096":11929,"20097":8397,"20098":8946,"20099":9818,"20100":13996,"20101":15506,"20102":8296,"20103":11226,"20104":17517,"20105":17537,"20106":3028,"20107":12671,"20108":9974,"20109":8057,"20110":7258,"20111":8005,"20112":1308,"20113":14052,"20114":13442,"20115":3526,"20116":1976,"20117":4277,"20118":14355,"20119":17768,"20120":3755,"20121":3397,"20122":14564,"20123":17034,"20124":10786,"20125":8422,"20126":561,"20127":15304,"20128":12264,"20129":17313,"20130":4965,"20131":18197,"20132":14870,"20133":16256,"20134":16457,"20135":13771,"20136":3939,"20137":17482,"20138":6535,"20139":8539,"20140":5913,"20141":13757,"20142":6716,"20143":16645,"20144":1594,"20145":9390,"20146":13743,"20147":16531,"20148":4832,"20149":7882,"20150":1720,"20151":12153,"20152":14138,"20153":1930,"20154":14284,"20155":3901,"20156":8010,"20157":5876,"20158":4986,"20159":1329,"20160":14344,"20161":6142,"20162":1271,"20163":9487,"20164":556,"20165":12233,"20166":13373,"20167":16013,"20168":2053,"20169":8019,"20170":1952,"20171":8802,"20172":3470,"20173":6712,"20174":16785,"20175":12823,"20176":16965,"20177":12239,"20178":18202,"20179":12916,"20180":2306,"20181":16765,"20182":11085,"20183":10905,"20184":1559,"20185":10388,"20186":16349,"20187":9986,"20188":1249,"20189":11666,"20190":14246,"20191":17121,"20192":959,"20193":1742,"20194":10082,"20195":17015,"20196":13769,"20197":2189,"20198":7026,"20199":9163,"20200":13801,"20201":7366,"20202":8945,"20203":13490,"20204":1686,"20205":16255,"20206":14094,"20207":14378,"20208":2487,"20209":2865,"20210":16938,"20211":17488,"20212":7833,"20213":13220,"20214":9131,"20215":13505,"20216":880,"20217":6525,"20218":7184,"20219":12716,"20220":4546,"20221":389,"20222":10318,"20223":5766,"20224":1959,"20225":14001,"20226":11130,"20227":4752,"20228":15767,"20229":9607,"20230":11027,"20231":2132,"20232":9869,"20233":1309,"20234":3262,"20235":3139,"20236":9504,"20237":6376,"20238":1063,"20239":13198,"20240":16480,"20241":15349,"20242":16640,"20243":136,"20244":17185,"20245":18042,"20246":14158,"20247":17574,"20248":12878,"20249":116,"20250":8949,"20251":9836,"20252":12954,"20253":17928,"20254":7670,"20255":12918,"20256":1584,"20257":4758,"20258":16287,"20259":6729,"20260":9401,"20261":2940,"20262":14289,"20263":8346,"20264":5494,"20265":15179,"20266":4068,"20267":15514,"20268":14276,"20269":9397,"20270":17074,"20271":16944,"20272":5284,"20273":13221,"20274":10371,"20275":15540,"20276":581,"20277":12897,"20278":11430,"20279":3672,"20280":13731,"20281":8894,"20282":13957,"20283":16436,"20284":2344,"20285":13144,"20286":105,"20287":18038,"20288":6277,"20289":13972,"20290":621,"20291":3876,"20292":9922,"20293":18094,"20294":6792,"20295":14748,"20296":2431,"20297":14694,"20298":2834,"20299":4442,"20300":10795,"20301":6152,"20302":14843,"20303":14712,"20304":7036,"20305":5381,"20306":2712,"20307":11037,"20308":12870,"20309":16970,"20310":11369,"20311":12827,"20312":796,"20313":4936,"20314":112,"20315":3429,"20316":13506,"20317":3775,"20318":4026,"20319":329,"20320":594,"20321":9841,"20322":8045,"20323":1279,"20324":12013,"20325":7965,"20326":18308,"20327":4039,"20328":5203,"20329":2329,"20330":2388,"20331":10843,"20332":10558,"20333":12621,"20334":16698,"20335":11004,"20336":12743,"20337":16827,"20338":8717,"20339":1331,"20340":10988,"20341":11225,"20342":3613,"20343":5889,"20344":16964,"20345":4253,"20346":11798,"20347":15881,"20348":13117,"20349":13737,"20350":730,"20351":15882,"20352":4961,"20353":5189,"20354":7253,"20355":11371,"20356":2951,"20357":10304,"20358":5712,"20359":6583,"20360":1466,"20361":1894,"20362":7381,"20363":13461,"20364":325,"20365":5611,"20366":2806,"20367":1053,"20368":17049,"20369":1125,"20370":1950,"20371":5901,"20372":15183,"20373":11882,"20374":1159,"20375":8860,"20376":17464,"20377":14873,"20378":1059,"20379":2580,"20380":11278,"20381":11702,"20382":305,"20383":12128,"20384":9489,"20385":3234,"20386":13320,"20387":10946,"20388":16042,"20389":11010,"20390":17767,"20391":11194,"20392":5856,"20393":12650,"20394":3222,"20395":9270,"20396":5129,"20397":17999,"20398":1603,"20399":13877,"20400":4062,"20401":6793,"20402":7281,"20403":14084,"20404":7689,"20405":13999,"20406":17024,"20407":6290,"20408":5054,"20409":5188,"20410":12359,"20411":1566,"20412":2095,"20413":12803,"20414":16190,"20415":5872,"20416":13322,"20417":13536,"20418":16210,"20419":5190,"20420":15739,"20421":16775,"20422":17989,"20423":2192,"20424":9810,"20425":5682,"20426":13480,"20427":5872,"20428":16144,"20429":7188,"20430":17318,"20431":1861,"20432":11189,"20433":10867,"20434":15780,"20435":2932,"20436":2424,"20437":7176,"20438":15533,"20439":10486,"20440":4951,"20441":1211,"20442":5568,"20443":12103,"20444":13197,"20445":14075,"20446":5144,"20447":4848,"20448":4613,"20449":5193,"20450":8830,"20451":7541,"20452":6224,"20453":9664,"20454":5767,"20455":11771,"20456":13774,"20457":14349,"20458":7469,"20459":10729,"20460":2089,"20461":322,"20462":8357,"20463":17990,"20464":5976,"20465":12467,"20466":11170,"20467":10108,"20468":10283,"20469":11206,"20470":10872,"20471":1992,"20472":17858,"20473":2952,"20474":5374,"20475":8741,"20476":2796,"20477":15458,"20478":18060,"20479":14982,"20480":11281,"20481":5210,"20482":2305,"20483":13428,"20484":11244,"20485":14398,"20486":14118,"20487":1180,"20488":294,"20489":7250,"20490":13341,"20491":17798,"20492":15804,"20493":17607,"20494":13404,"20495":1044,"20496":5763,"20497":15720,"20498":13143,"20499":9622,"20500":3316,"20501":2188,"20502":5802,"20503":126,"20504":16458,"20505":17874,"20506":11148,"20507":12331,"20508":10048,"20509":14456,"20510":12208,"20511":4750,"20512":11089,"20513":1906,"20514":7253,"20515":14298,"20516":7716,"20517":16776,"20518":11584,"20519":2735,"20520":13816,"20521":2371,"20522":5400,"20523":16138,"20524":13773,"20525":16809,"20526":16338,"20527":6948,"20528":16286,"20529":3700,"20530":437,"20531":17401,"20532":12255,"20533":771,"20534":4435,"20535":1584,"20536":3438,"20537":14302,"20538":10478,"20539":11220,"20540":10913,"20541":1782,"20542":17527,"20543":5691,"20544":8983,"20545":15116,"20546":13039,"20547":2988,"20548":5112,"20549":13815,"20550":6407,"20551":3626,"20552":6821,"20553":4584,"20554":14237,"20555":14268,"20556":8709,"20557":6468,"20558":3521,"20559":7691,"20560":17891,"20561":17097,"20562":14458,"20563":5602,"20564":11437,"20565":16381,"20566":9428,"20567":7458,"20568":1476,"20569":9417,"20570":12618,"20571":4299,"20572":17189,"20573":13094,"20574":8960,"20575":14630,"20576":605,"20577":16201,"20578":3236,"20579":17036,"20580":13362,"20581":15705,"20582":11108,"20583":2648,"20584":424,"20585":6333,"20586":11866,"20587":16966,"20588":8192,"20589":1598,"20590":6612,"20591":3348,"20592":4143,"20593":4346,"20594":17448,"20595":16399,"20596":4387,"20597":15650,"20598":10930,"20599":13394,"20600":3490,"20601":9655,"20602":17646,"20603":4677,"20604":3563,"20605":8041,"20606":13049,"20607":2007,"20608":7544,"20609":2219,"20610":16977,"20611":13378,"20612":6234,"20613":17006,"20614":8274,"20615":2663,"20616":17828,"20617":7252,"20618":10660,"20619":13603,"20620":8998,"20621":1488,"20622":11849,"20623":6125,"20624":275,"20625":12087,"20626":6013,"20627":14370,"20628":10305,"20629":1455,"20630":16941,"20631":8279,"20632":1313,"20633":9616,"20634":9456,"20635":17393,"20636":5025,"20637":1240,"20638":8892,"20639":2029,"20640":9189,"20641":5455,"20642":16667,"20643":2212,"20644":4657,"20645":12063,"20646":3727,"20647":12841,"20648":8990,"20649":9315,"20650":2970,"20651":3416,"20652":5363,"20653":4842,"20654":3821,"20655":1951,"20656":10559,"20657":5052,"20658":12669,"20659":2763,"20660":6370,"20661":14432,"20662":11946,"20663":3909,"20664":12042,"20665":3369,"20666":806,"20667":16627,"20668":3503,"20669":16916,"20670":904,"20671":12332,"20672":5768,"20673":11050,"20674":10644,"20675":10415,"20676":119,"20677":9472,"20678":8134,"20679":9126,"20680":17045,"20681":1274,"20682":3793,"20683":2466,"20684":10490,"20685":16586,"20686":4001,"20687":1817,"20688":4107,"20689":9422,"20690":1921,"20691":14865,"20692":11673,"20693":9907,"20694":16025,"20695":8029,"20696":14421,"20697":2793,"20698":9735,"20699":7321,"20700":12501,"20701":13090,"20702":13124,"20703":3816,"20704":10821,"20705":2800,"20706":12557,"20707":17204,"20708":865,"20709":16313,"20710":16227,"20711":10643,"20712":6657,"20713":560,"20714":14382,"20715":6979,"20716":3260,"20717":16864,"20718":8961,"20719":6159,"20720":2717,"20721":8662,"20722":11405,"20723":11710,"20724":8241,"20725":9048,"20726":12308,"20727":3017,"20728":16539,"20729":11299,"20730":7083,"20731":17296,"20732":5974,"20733":6921,"20734":16901,"20735":7415,"20736":117,"20737":13095,"20738":2719,"20739":9603,"20740":17173,"20741":15908,"20742":10084,"20743":3910,"20744":1844,"20745":3782,"20746":8926,"20747":4448,"20748":5869,"20749":17500,"20750":12971,"20751":4402,"20752":8570,"20753":10544,"20754":5804,"20755":11656,"20756":4656,"20757":16247,"20758":12068,"20759":9580,"20760":7028,"20761":14490,"20762":8116,"20763":8748,"20764":1962,"20765":1664,"20766":8753,"20767":17841,"20768":181,"20769":15987,"20770":5010,"20771":7435,"20772":1052,"20773":8740,"20774":16757,"20775":11072,"20776":10070,"20777":1697,"20778":15494,"20779":298,"20780":14347,"20781":17753,"20782":14678,"20783":16176,"20784":10546,"20785":859,"20786":7292,"20787":426,"20788":8482,"20789":10553,"20790":1071,"20791":14486,"20792":811,"20793":18296,"20794":16640,"20795":9197,"20796":8768,"20797":6028,"20798":8376,"20799":1056,"20800":12454,"20801":17848,"20802":13202,"20803":4394,"20804":9467,"20805":12405,"20806":18040,"20807":15345,"20808":6087,"20809":8466,"20810":4861,"20811":1868,"20812":16479,"20813":15143,"20814":11997,"20815":15331,"20816":1061,"20817":15052,"20818":5087,"20819":5378,"20820":2752,"20821":9529,"20822":1946,"20823":11485,"20824":7510,"20825":4862,"20826":5032,"20827":6300,"20828":12294,"20829":8937,"20830":16940,"20831":15305,"20832":11087,"20833":17125,"20834":7053,"20835":5810,"20836":18070,"20837":9782,"20838":17452,"20839":16091,"20840":1960,"20841":13193,"20842":2287,"20843":11857,"20844":17209,"20845":13172,"20846":10489,"20847":13791,"20848":12868,"20849":3268,"20850":14375,"20851":16305,"20852":18186,"20853":4934,"20854":14251,"20855":4908,"20856":14355,"20857":3473,"20858":7862,"20859":3046,"20860":2524,"20861":9451,"20862":9963,"20863":15508,"20864":18278,"20865":15614,"20866":16444,"20867":15446,"20868":3943,"20869":14738,"20870":8079,"20871":11650,"20872":12452,"20873":1101,"20874":12935,"20875":866,"20876":17035,"20877":8471,"20878":11823,"20879":14168,"20880":1820,"20881":14379,"20882":12870,"20883":8082,"20884":10567,"20885":11273,"20886":10978,"20887":3897,"20888":13340,"20889":628,"20890":10679,"20891":6784,"20892":5275,"20893":5398,"20894":7733,"20895":8636,"20896":16422,"20897":13547,"20898":10127,"20899":8624,"20900":10752,"20901":1621,"20902":17475,"20903":2700,"20904":106,"20905":1212,"20906":18252,"20907":6087,"20908":13958,"20909":8270,"20910":4831,"20911":10105,"20912":7279,"20913":2311,"20914":5823,"20915":8130,"20916":2862,"20917":17084,"20918":4989,"20919":6412,"20920":13490,"20921":1627,"20922":9650,"20923":12568,"20924":14126,"20925":8013,"20926":2591,"20927":16158,"20928":13814,"20929":17021,"20930":687,"20931":12533,"20932":1577,"20933":9560,"20934":6371,"20935":3894,"20936":13881,"20937":14534,"20938":5208,"20939":3403,"20940":11341,"20941":13667,"20942":12741,"20943":17669,"20944":13205,"20945":7803,"20946":9749,"20947":8590,"20948":12383,"20949":7907,"20950":10323,"20951":13727,"20952":13,"20953":15622,"20954":4491,"20955":13289,"20956":6978,"20957":3087,"20958":4045,"20959":2626,"20960":15790,"20961":12887,"20962":13293,"20963":15617,"20964":13129,"20965":16377,"20966":5125,"20967":18094,"20968":13912,"20969":10002,"20970":15176,"20971":2251,"20972":5144,"20973":14468,"20974":6249,"20975":8282,"20976":14793,"20977":16439,"20978":10430,"20979":1735,"20980":3419,"20981":17347,"20982":11129,"20983":1600,"20984":6847,"20985":4322,"20986":8186,"20987":13653,"20988":231,"20989":17841,"20990":8990,"20991":10816,"20992":17326,"20993":334,"20994":10450,"20995":11627,"20996":14678,"20997":5114,"20998":14984,"20999":4434,"21000":432,"21001":17617,"21002":5563,"21003":11659,"21004":18331,"21005":18294,"21006":3764,"21007":3945,"21008":7667,"21009":5301,"21010":16203,"21011":2892,"21012":3373,"21013":16596,"21014":7889,"21015":1609,"21016":14707,"21017":12224,"21018":12121,"21019":6153,"21020":1668,"21021":13208,"21022":3640,"21023":15511,"21024":11826,"21025":6741,"21026":2552,"21027":13756,"21028":14784,"21029":17027,"21030":8036,"21031":13983,"21032":13367,"21033":5692,"21034":5052,"21035":7487,"21036":7062,"21037":12932,"21038":6763,"21039":13566,"21040":12118,"21041":8332,"21042":9652,"21043":5254,"21044":7331,"21045":8700,"21046":3943,"21047":9429,"21048":66,"21049":14692,"21050":15759,"21051":17948,"21052":12930,"21053":15197,"21054":6218,"21055":5244,"21056":5682,"21057":11333,"21058":17214,"21059":9038,"21060":5408,"21061":3931,"21062":4111,"21063":11100,"21064":14422,"21065":17802,"21066":9832,"21067":14260,"21068":179,"21069":2477,"21070":3101,"21071":7782,"21072":904,"21073":9553,"21074":6926,"21075":16196,"21076":15712,"21077":6612,"21078":17023,"21079":4162,"21080":15340,"21081":18334,"21082":12278,"21083":1323,"21084":13807,"21085":10947,"21086":7315,"21087":14887,"21088":6518,"21089":2856,"21090":10932,"21091":3457,"21092":7041,"21093":12962,"21094":5368,"21095":1615,"21096":6261,"21097":7075,"21098":7239,"21099":9399,"21100":1076,"21101":6016,"21102":17271,"21103":5980,"21104":8183,"21105":853,"21106":11197,"21107":2703,"21108":17137,"21109":11320,"21110":1947,"21111":7743,"21112":17140,"21113":13885,"21114":5563,"21115":4764,"21116":3098,"21117":10186,"21118":6162,"21119":1916,"21120":1943,"21121":4007,"21122":11768,"21123":17948,"21124":11517,"21125":1202,"21126":4403,"21127":15975,"21128":8345,"21129":1238,"21130":2960,"21131":12526,"21132":14825,"21133":17987,"21134":10587,"21135":515,"21136":13339,"21137":10296,"21138":14589,"21139":7279,"21140":1944,"21141":4431,"21142":890,"21143":11365,"21144":851,"21145":6592,"21146":15239,"21147":14410,"21148":1109,"21149":10361,"21150":14039,"21151":6247,"21152":2070,"21153":6048,"21154":8307,"21155":1373,"21156":15593,"21157":15365,"21158":7728,"21159":4995,"21160":14464,"21161":12348,"21162":8671,"21163":5875,"21164":7389,"21165":7880,"21166":2034,"21167":6627,"21168":17135,"21169":9655,"21170":9067,"21171":4062,"21172":12936,"21173":4145,"21174":14120,"21175":10214,"21176":7069,"21177":15471,"21178":13251,"21179":12175,"21180":1357,"21181":16148,"21182":16252,"21183":3740,"21184":3606,"21185":8884,"21186":4252,"21187":610,"21188":17122,"21189":11894,"21190":5474,"21191":15137,"21192":6383,"21193":4838,"21194":1274,"21195":13885,"21196":9287,"21197":12240,"21198":3177,"21199":7410,"21200":10584,"21201":10066,"21202":1839,"21203":18074,"21204":10923,"21205":8663,"21206":15895,"21207":6783,"21208":635,"21209":4446,"21210":13142,"21211":11566,"21212":12160,"21213":3237,"21214":10733,"21215":2419,"21216":9785,"21217":3889,"21218":2936,"21219":15946,"21220":11307,"21221":6901,"21222":3525,"21223":4719,"21224":17689,"21225":152,"21226":10065,"21227":17873,"21228":7509,"21229":10707,"21230":2608,"21231":12311,"21232":3175,"21233":8028,"21234":10009,"21235":5882,"21236":11317,"21237":979,"21238":14605,"21239":4856,"21240":8544,"21241":1696,"21242":5884,"21243":8119,"21244":1153,"21245":9478,"21246":41,"21247":10484,"21248":8999,"21249":16974,"21250":3971,"21251":8445,"21252":5373,"21253":4354,"21254":2732,"21255":2311,"21256":5161,"21257":15418,"21258":17355,"21259":7121,"21260":1397,"21261":2094,"21262":6565,"21263":11704,"21264":14231,"21265":10232,"21266":15284,"21267":16580,"21268":14476,"21269":5466,"21270":11710,"21271":5214,"21272":294,"21273":10179,"21274":16060,"21275":9746,"21276":14908,"21277":6043,"21278":14551,"21279":612,"21280":10623,"21281":10128,"21282":4616,"21283":689,"21284":4621,"21285":17357,"21286":10142,"21287":5005,"21288":4208,"21289":7645,"21290":13556,"21291":1276,"21292":2544,"21293":16365,"21294":2035,"21295":17523,"21296":15017,"21297":10583,"21298":7423,"21299":15160,"21300":6768,"21301":18028,"21302":8449,"21303":2499,"21304":217,"21305":8799,"21306":17779,"21307":14605,"21308":11312,"21309":17251,"21310":9158,"21311":10030,"21312":8302,"21313":10808,"21314":7061,"21315":2638,"21316":923,"21317":9337,"21318":13202,"21319":15969,"21320":10387,"21321":1531,"21322":6419,"21323":16566,"21324":13331,"21325":5996,"21326":4983,"21327":10651,"21328":4971,"21329":9986,"21330":11976,"21331":17079,"21332":14099,"21333":5644,"21334":3530,"21335":5868,"21336":979,"21337":3600,"21338":14078,"21339":16427,"21340":13391,"21341":3206,"21342":5271,"21343":6643,"21344":15577,"21345":3857,"21346":9954,"21347":17308,"21348":16655,"21349":8842,"21350":7450,"21351":1909,"21352":2383,"21353":11493,"21354":8837,"21355":10130,"21356":15093,"21357":889,"21358":16674,"21359":9205,"21360":12845,"21361":18129,"21362":14635,"21363":11141,"21364":13651,"21365":1033,"21366":8092,"21367":6702,"21368":11401,"21369":3030,"21370":13627,"21371":7940,"21372":712,"21373":15562,"21374":144,"21375":7579,"21376":11678,"21377":7817,"21378":18127,"21379":15027,"21380":8981,"21381":5221,"21382":14135,"21383":17730,"21384":1171,"21385":5708,"21386":11775,"21387":7235,"21388":16606,"21389":1214,"21390":14284,"21391":9504,"21392":4786,"21393":8986,"21394":497,"21395":12075,"21396":5423,"21397":16842,"21398":812,"21399":13458,"21400":2365,"21401":15029,"21402":12519,"21403":9077,"21404":8162,"21405":14189,"21406":14129,"21407":15059,"21408":10205,"21409":471,"21410":10018,"21411":111,"21412":6902,"21413":15805,"21414":9253,"21415":9470,"21416":3656,"21417":3893,"21418":13639,"21419":15221,"21420":4719,"21421":12103,"21422":8549,"21423":12067,"21424":9898,"21425":14205,"21426":3005,"21427":12339,"21428":11131,"21429":16587,"21430":6370,"21431":11769,"21432":11312,"21433":13526,"21434":15264,"21435":14357,"21436":5582,"21437":8671,"21438":3584,"21439":4170,"21440":5606,"21441":15457,"21442":6150,"21443":9374,"21444":4264,"21445":12825,"21446":2955,"21447":7075,"21448":9058,"21449":2554,"21450":13863,"21451":11910,"21452":11051,"21453":1465,"21454":1969,"21455":4428,"21456":13329,"21457":3173,"21458":201,"21459":3063,"21460":12094,"21461":50,"21462":444,"21463":17365,"21464":438,"21465":8244,"21466":17570,"21467":11750,"21468":6837,"21469":12431,"21470":4899,"21471":8289,"21472":17970,"21473":6204,"21474":11129,"21475":8038,"21476":13559,"21477":16169,"21478":8741,"21479":17056,"21480":9566,"21481":9196,"21482":5464,"21483":7953,"21484":9785,"21485":10375,"21486":10175,"21487":2290,"21488":8577,"21489":12766,"21490":1804,"21491":12036,"21492":10397,"21493":17710,"21494":4609,"21495":17757,"21496":15503,"21497":7558,"21498":6554,"21499":5133,"21500":17524,"21501":9677,"21502":2694,"21503":3548,"21504":9110,"21505":4945,"21506":15315,"21507":3431,"21508":11679,"21509":11801,"21510":11277,"21511":8103,"21512":8312,"21513":13749,"21514":16856,"21515":6664,"21516":8765,"21517":17020,"21518":12828,"21519":11128,"21520":3563,"21521":7624,"21522":14147,"21523":15863,"21524":11163,"21525":17530,"21526":17300,"21527":711,"21528":15402,"21529":805,"21530":13402,"21531":8232,"21532":8459,"21533":14496,"21534":9680,"21535":3128,"21536":7603,"21537":7825,"21538":10894,"21539":15967,"21540":6949,"21541":6401,"21542":15674,"21543":17792,"21544":7269,"21545":13691,"21546":12003,"21547":7329,"21548":8504,"21549":5161,"21550":8468,"21551":12215,"21552":13009,"21553":5031,"21554":7875,"21555":15117,"21556":14989,"21557":13978,"21558":11242,"21559":17378,"21560":10613,"21561":14942,"21562":2436,"21563":5162,"21564":14721,"21565":9722,"21566":17019,"21567":11474,"21568":935,"21569":8768,"21570":8774,"21571":14463,"21572":1492,"21573":11014,"21574":12787,"21575":4313,"21576":15859,"21577":190,"21578":11824,"21579":7402,"21580":2540,"21581":7553,"21582":9487,"21583":17152,"21584":11653,"21585":5154,"21586":3073,"21587":10512,"21588":2815,"21589":4226,"21590":15,"21591":2527,"21592":497,"21593":13218,"21594":6880,"21595":16134,"21596":14152,"21597":5829,"21598":10965,"21599":16668,"21600":2102,"21601":9122,"21602":10715,"21603":4669,"21604":10807,"21605":8334,"21606":12466,"21607":2373,"21608":15192,"21609":16960,"21610":17139,"21611":10384,"21612":12099,"21613":17524,"21614":9748,"21615":15624,"21616":10866,"21617":4280,"21618":4947,"21619":13188,"21620":13137,"21621":9848,"21622":13649,"21623":11660,"21624":2375,"21625":8439,"21626":3300,"21627":2548,"21628":1482,"21629":3333,"21630":12471,"21631":16747,"21632":8700,"21633":9687,"21634":8673,"21635":10445,"21636":7079,"21637":12789,"21638":4448,"21639":7066,"21640":4344,"21641":7905,"21642":17324,"21643":453,"21644":5778,"21645":14561,"21646":2979,"21647":16081,"21648":13494,"21649":310,"21650":9523,"21651":9997,"21652":10979,"21653":1047,"21654":12518,"21655":10646,"21656":11870,"21657":16286,"21658":18346,"21659":4651,"21660":10350,"21661":14370,"21662":13281,"21663":8138,"21664":17489,"21665":16778,"21666":5853,"21667":15390,"21668":4570,"21669":12202,"21670":9820,"21671":12256,"21672":10944,"21673":12106,"21674":6994,"21675":17450,"21676":1896,"21677":4749,"21678":4774,"21679":5019,"21680":17945,"21681":9166,"21682":5902,"21683":2836,"21684":7178,"21685":2160,"21686":8435,"21687":8346,"21688":2695,"21689":12175,"21690":4699,"21691":15832,"21692":11755,"21693":7608,"21694":1896,"21695":9757,"21696":12862,"21697":16528,"21698":16332,"21699":11061,"21700":11513,"21701":2341,"21702":4218,"21703":2740,"21704":12397,"21705":17364,"21706":14595,"21707":16780,"21708":13010,"21709":12706,"21710":8086,"21711":1232,"21712":3572,"21713":539,"21714":17238,"21715":2341,"21716":14044,"21717":17268,"21718":947,"21719":12451,"21720":11439,"21721":12287,"21722":14310,"21723":17010,"21724":9041,"21725":17731,"21726":13506,"21727":3354,"21728":17215,"21729":1091,"21730":6047,"21731":4891,"21732":14230,"21733":1552,"21734":14274,"21735":436,"21736":483,"21737":15755,"21738":1997,"21739":10676,"21740":18157,"21741":13115,"21742":11921,"21743":12499,"21744":7072,"21745":344,"21746":11681,"21747":12651,"21748":3848,"21749":4213,"21750":8996,"21751":3769,"21752":16541,"21753":8111,"21754":15210,"21755":15008,"21756":3217,"21757":13316,"21758":10963,"21759":14639,"21760":8854,"21761":3230,"21762":8496,"21763":9846,"21764":16458,"21765":5938,"21766":7181,"21767":15298,"21768":16321,"21769":3155,"21770":10246,"21771":16308,"21772":2078,"21773":9889,"21774":9292,"21775":4145,"21776":8004,"21777":10932,"21778":14852,"21779":188,"21780":15476,"21781":4616,"21782":12930,"21783":10297,"21784":11984,"21785":412,"21786":9597,"21787":13637,"21788":16553,"21789":8730,"21790":10084,"21791":1144,"21792":5325,"21793":15182,"21794":15845,"21795":13038,"21796":9617,"21797":2046,"21798":16258,"21799":7595,"21800":14107,"21801":8034,"21802":15812,"21803":1428,"21804":9420,"21805":11156,"21806":11196,"21807":17368,"21808":10743,"21809":4283,"21810":9485,"21811":17695,"21812":3905,"21813":18328,"21814":7692,"21815":3754,"21816":9496,"21817":10097,"21818":15620,"21819":16149,"21820":16407,"21821":12704,"21822":8238,"21823":6908,"21824":2902,"21825":373,"21826":4098,"21827":14151,"21828":16501,"21829":5289,"21830":17791,"21831":15577,"21832":6681,"21833":14821,"21834":1512,"21835":787,"21836":4893,"21837":136,"21838":18052,"21839":14840,"21840":9046,"21841":11186,"21842":305,"21843":8117,"21844":10202,"21845":12059,"21846":15147,"21847":5430,"21848":5978,"21849":14239,"21850":6840,"21851":8814,"21852":10706,"21853":4687,"21854":6703,"21855":10838,"21856":9192,"21857":2865,"21858":2740,"21859":14186,"21860":6287,"21861":1347,"21862":2962,"21863":3427,"21864":13632,"21865":7631,"21866":7002,"21867":17366,"21868":6087,"21869":16731,"21870":16867,"21871":17690,"21872":10729,"21873":11301,"21874":15241,"21875":10174,"21876":4191,"21877":16811,"21878":10144,"21879":14371,"21880":6378,"21881":5470,"21882":14050,"21883":6830,"21884":10596,"21885":3412,"21886":6010,"21887":10070,"21888":16261,"21889":4528,"21890":16057,"21891":15400,"21892":13751,"21893":16198,"21894":6462,"21895":1672,"21896":17431,"21897":212,"21898":11822,"21899":1666,"21900":16247,"21901":1478,"21902":17055,"21903":4482,"21904":265,"21905":7177,"21906":14014,"21907":17523,"21908":1181,"21909":16781,"21910":11954,"21911":3555,"21912":14678,"21913":9876,"21914":5929,"21915":12792,"21916":1737,"21917":18261,"21918":265,"21919":12464,"21920":8436,"21921":12103,"21922":17314,"21923":10668,"21924":11814,"21925":11120,"21926":10262,"21927":12441,"21928":15669,"21929":13502,"21930":4019,"21931":8099,"21932":1780,"21933":7849,"21934":13742,"21935":7534,"21936":3173,"21937":10199,"21938":5427,"21939":14800,"21940":1063,"21941":9587,"21942":7502,"21943":711,"21944":875,"21945":11004,"21946":17207,"21947":17156,"21948":10872,"21949":15807,"21950":7377,"21951":9230,"21952":18304,"21953":10419,"21954":3810,"21955":14202,"21956":164,"21957":6963,"21958":4783,"21959":6582,"21960":4609,"21961":14239,"21962":8248,"21963":12367,"21964":6202,"21965":9806,"21966":17255,"21967":10162,"21968":5663,"21969":16385,"21970":1444,"21971":5325,"21972":4049,"21973":10088,"21974":1647,"21975":6020,"21976":8377,"21977":9135,"21978":17912,"21979":7160,"21980":746,"21981":12255,"21982":8678,"21983":10957,"21984":4202,"21985":16094,"21986":16715,"21987":5263,"21988":946,"21989":10614,"21990":7567,"21991":349,"21992":6959,"21993":12556,"21994":3801,"21995":10302,"21996":9220,"21997":1940,"21998":7361,"21999":3032,"22000":10706,"22001":4537,"22002":16614,"22003":4503,"22004":8682,"22005":8389,"22006":631,"22007":1484,"22008":2332,"22009":12653,"22010":7768,"22011":12842,"22012":13711,"22013":10189,"22014":16370,"22015":11449,"22016":4365,"22017":13080,"22018":14123,"22019":7782,"22020":6705,"22021":5152,"22022":16438,"22023":178,"22024":467,"22025":1211,"22026":16597,"22027":5655,"22028":15140,"22029":4698,"22030":11306,"22031":10299,"22032":3075,"22033":1293,"22034":6729,"22035":13016,"22036":13930,"22037":13359,"22038":5467,"22039":2013,"22040":10578,"22041":7505,"22042":10033,"22043":7700,"22044":9037,"22045":2392,"22046":277,"22047":15850,"22048":11586,"22049":3130,"22050":1079,"22051":10769,"22052":9238,"22053":7102,"22054":4469,"22055":12564,"22056":4989,"22057":11033,"22058":475,"22059":10689,"22060":17146,"22061":11078,"22062":2301,"22063":15262,"22064":7700,"22065":15550,"22066":628,"22067":13797,"22068":1273,"22069":5675,"22070":9986,"22071":13304,"22072":17174,"22073":13037,"22074":5987,"22075":12247,"22076":10201,"22077":912,"22078":1486,"22079":5882,"22080":163,"22081":6862,"22082":17502,"22083":15658,"22084":591,"22085":14982,"22086":13634,"22087":8652,"22088":12563,"22089":5941,"22090":10315,"22091":3794,"22092":9124,"22093":18118,"22094":8326,"22095":15555,"22096":583,"22097":15230,"22098":11752,"22099":2482,"22100":15855,"22101":4000,"22102":3630,"22103":6534,"22104":8329,"22105":8178,"22106":16366,"22107":4581,"22108":11942,"22109":2051,"22110":1101,"22111":7054,"22112":16443,"22113":14748,"22114":6845,"22115":2620,"22116":2080,"22117":4052,"22118":15267,"22119":3911,"22120":377,"22121":8308,"22122":8726,"22123":8080,"22124":4843,"22125":1839,"22126":13272,"22127":17891,"22128":9231,"22129":6795,"22130":9538,"22131":5529,"22132":1028,"22133":8543,"22134":3151,"22135":11645,"22136":17346,"22137":744,"22138":8672,"22139":1782,"22140":2326,"22141":16859,"22142":16689,"22143":4187,"22144":17445,"22145":4430,"22146":1682,"22147":2515,"22148":14089,"22149":12570,"22150":11067,"22151":5498,"22152":7339,"22153":9570,"22154":8525,"22155":13273,"22156":10016,"22157":9288,"22158":5359,"22159":14927,"22160":11600,"22161":4411,"22162":13133,"22163":6236,"22164":8070,"22165":7375,"22166":16426,"22167":15698,"22168":8552,"22169":4830,"22170":14402,"22171":14108,"22172":16233,"22173":8409,"22174":9579,"22175":12784,"22176":10605,"22177":3684,"22178":7179,"22179":11807,"22180":17875,"22181":17386,"22182":2202,"22183":10485,"22184":17633,"22185":11584,"22186":8796,"22187":5034,"22188":1140,"22189":2829,"22190":5455,"22191":11948,"22192":16939,"22193":3140,"22194":18100,"22195":12883,"22196":15017,"22197":6864,"22198":10692,"22199":10662,"22200":16017,"22201":6866,"22202":12245,"22203":16896,"22204":4924,"22205":16045,"22206":7811,"22207":12265,"22208":13524,"22209":12878,"22210":17319,"22211":3786,"22212":15584,"22213":12692,"22214":13367,"22215":4870,"22216":8712,"22217":9903,"22218":12130,"22219":8946,"22220":17535,"22221":11496,"22222":8300,"22223":4184,"22224":16527,"22225":7054,"22226":2503,"22227":8261,"22228":6259,"22229":1436,"22230":15971,"22231":4153,"22232":9953,"22233":3827,"22234":18159,"22235":9827,"22236":17985,"22237":3141,"22238":6136,"22239":13216,"22240":10686,"22241":15461,"22242":8221,"22243":10408,"22244":15576,"22245":14535,"22246":5445,"22247":13772,"22248":14540,"22249":14577,"22250":16326,"22251":16415,"22252":17940,"22253":8001,"22254":3147,"22255":1583,"22256":16594,"22257":10312,"22258":15578,"22259":9802,"22260":4924,"22261":5743,"22262":11625,"22263":5490,"22264":342,"22265":17543,"22266":9346,"22267":3561,"22268":2663,"22269":8375,"22270":7183,"22271":14359,"22272":15869,"22273":15002,"22274":14124,"22275":6070,"22276":18238,"22277":5350,"22278":13177,"22279":8407,"22280":1727,"22281":5048,"22282":12189,"22283":1096,"22284":10602,"22285":6745,"22286":10657,"22287":4094,"22288":13570,"22289":2818,"22290":10206,"22291":15828,"22292":764,"22293":16103,"22294":17143,"22295":13778,"22296":17434,"22297":15136,"22298":9071,"22299":1256,"22300":14958,"22301":6778,"22302":13012,"22303":16723,"22304":15830,"22305":13937,"22306":1268,"22307":441,"22308":4655,"22309":5872,"22310":2935,"22311":11992,"22312":5702,"22313":9157,"22314":2574,"22315":13254,"22316":12622,"22317":16446,"22318":9232,"22319":12247,"22320":14483,"22321":9574,"22322":696,"22323":7845,"22324":15614,"22325":14692,"22326":12509,"22327":15485,"22328":17369,"22329":15558,"22330":3962,"22331":17976,"22332":9659,"22333":4836,"22334":11700,"22335":9070,"22336":5362,"22337":14354,"22338":142,"22339":8140,"22340":1385,"22341":15585,"22342":9106,"22343":12092,"22344":10785,"22345":2479,"22346":2672,"22347":411,"22348":14398,"22349":3277,"22350":13426,"22351":15574,"22352":15880,"22353":12015,"22354":11342,"22355":15506,"22356":1665,"22357":6844,"22358":1704,"22359":14362,"22360":14771,"22361":14301,"22362":15157,"22363":3562,"22364":13594,"22365":9868,"22366":15222,"22367":10745,"22368":14480,"22369":6996,"22370":11791,"22371":1515,"22372":18302,"22373":2597,"22374":13262,"22375":199,"22376":11464,"22377":12151,"22378":1196,"22379":10567,"22380":6526,"22381":8032,"22382":16328,"22383":2654,"22384":14680,"22385":3220,"22386":17987,"22387":3677,"22388":8580,"22389":11014,"22390":1553,"22391":14491,"22392":2352,"22393":17774,"22394":5993,"22395":12160,"22396":1613,"22397":12061,"22398":17564,"22399":7418,"22400":12209,"22401":14690,"22402":3088,"22403":13290,"22404":16305,"22405":13603,"22406":7797,"22407":4038,"22408":5346,"22409":11034,"22410":6692,"22411":3097,"22412":7238,"22413":15767,"22414":16798,"22415":10914,"22416":7755,"22417":2140,"22418":2631,"22419":4408,"22420":13926,"22421":703,"22422":14532,"22423":2239,"22424":15801,"22425":3340,"22426":4902,"22427":12711,"22428":8587,"22429":9018,"22430":16988,"22431":8460,"22432":11623,"22433":6534,"22434":12425,"22435":14622,"22436":3760,"22437":10442,"22438":802,"22439":6478,"22440":14677,"22441":12362,"22442":14581,"22443":13205,"22444":17089,"22445":14476,"22446":15039,"22447":17455,"22448":4276,"22449":5243,"22450":12025,"22451":16198,"22452":6460,"22453":13444,"22454":86,"22455":8332,"22456":14193,"22457":15254,"22458":12924,"22459":8857,"22460":4315,"22461":3446,"22462":13679,"22463":6402,"22464":15132,"22465":13310,"22466":12007,"22467":3887,"22468":7415,"22469":13145,"22470":6094,"22471":16751,"22472":12264,"22473":18164,"22474":3528,"22475":3146,"22476":13997,"22477":11500,"22478":12138,"22479":9530,"22480":4854,"22481":6330,"22482":8389,"22483":1763,"22484":14523,"22485":5713,"22486":13995,"22487":11817,"22488":3769,"22489":16266,"22490":13327,"22491":11737,"22492":17806,"22493":10219,"22494":13043,"22495":4259,"22496":2476,"22497":12099,"22498":9321,"22499":10478,"22500":10397,"22501":15881,"22502":8474,"22503":6434,"22504":10835,"22505":280,"22506":7245,"22507":784,"22508":8949,"22509":9740,"22510":61,"22511":9033,"22512":1039,"22513":2758,"22514":9000,"22515":4841,"22516":1068,"22517":14434,"22518":5998,"22519":8383,"22520":14653,"22521":15159,"22522":12648,"22523":16900,"22524":4687,"22525":133,"22526":12027,"22527":2395,"22528":13920,"22529":11601,"22530":17872,"22531":15318,"22532":12440,"22533":14309,"22534":12359,"22535":1706,"22536":15875,"22537":18269,"22538":10316,"22539":16865,"22540":3080,"22541":8688,"22542":11371,"22543":5103,"22544":16159,"22545":15324,"22546":15949,"22547":6016,"22548":5602,"22549":8365,"22550":14956,"22551":11703,"22552":9795,"22553":1825,"22554":10272,"22555":12172,"22556":10728,"22557":14197,"22558":220,"22559":3568,"22560":5394,"22561":17619,"22562":14482,"22563":8643,"22564":18034,"22565":7108,"22566":12107,"22567":15784,"22568":17684,"22569":15689,"22570":10145,"22571":12497,"22572":9988,"22573":8760,"22574":14001,"22575":1419,"22576":14627,"22577":14979,"22578":12404,"22579":4869,"22580":4591,"22581":7995,"22582":5930,"22583":3341,"22584":3103,"22585":18129,"22586":16187,"22587":7304,"22588":10144,"22589":1566,"22590":11926,"22591":9465,"22592":12112,"22593":7059,"22594":5813,"22595":6819,"22596":16540,"22597":11020,"22598":412,"22599":8793,"22600":7644,"22601":3874,"22602":3530,"22603":123,"22604":1611,"22605":4351,"22606":12637,"22607":15224,"22608":7340,"22609":15318,"22610":16569,"22611":7182,"22612":583,"22613":8170,"22614":14574,"22615":1996,"22616":12152,"22617":4437,"22618":14050,"22619":6951,"22620":8124,"22621":4878,"22622":3942,"22623":14181,"22624":5727,"22625":14198,"22626":10220,"22627":499,"22628":18042,"22629":8379,"22630":4455,"22631":18099,"22632":16593,"22633":10938,"22634":168,"22635":8168,"22636":13358,"22637":7002,"22638":10386,"22639":10671,"22640":1633,"22641":12503,"22642":14187,"22643":5006,"22644":10285,"22645":16029,"22646":12198,"22647":13432,"22648":15924,"22649":7637,"22650":12601,"22651":6155,"22652":15774,"22653":17665,"22654":5907,"22655":1972,"22656":10875,"22657":7981,"22658":434,"22659":17762,"22660":10126,"22661":10811,"22662":5321,"22663":7518,"22664":11231,"22665":8773,"22666":5165,"22667":14561,"22668":10483,"22669":18125,"22670":10551,"22671":173,"22672":9404,"22673":16032,"22674":15237,"22675":456,"22676":5360,"22677":9730,"22678":6052,"22679":12371,"22680":12218,"22681":2773,"22682":3498,"22683":13261,"22684":5237,"22685":15531,"22686":16222,"22687":1811,"22688":10824,"22689":9772,"22690":1591,"22691":15478,"22692":12149,"22693":4797,"22694":3802,"22695":12842,"22696":13642,"22697":5239,"22698":7346,"22699":17375,"22700":11331,"22701":5621,"22702":14800,"22703":4574,"22704":4646,"22705":9418,"22706":9909,"22707":17371,"22708":11613,"22709":7963,"22710":8749,"22711":7232,"22712":2023,"22713":17504,"22714":6279,"22715":6034,"22716":3540,"22717":8364,"22718":3948,"22719":16883,"22720":6708,"22721":9588,"22722":8678,"22723":9938,"22724":5774,"22725":4049,"22726":6327,"22727":16685,"22728":15608,"22729":8579,"22730":2211,"22731":14890,"22732":6536,"22733":4993,"22734":6601,"22735":6008,"22736":6666,"22737":10812,"22738":10648,"22739":9714,"22740":14595,"22741":11023,"22742":2812,"22743":14213,"22744":4451,"22745":1607,"22746":8787,"22747":6455,"22748":15866,"22749":8426,"22750":5021,"22751":1998,"22752":4720,"22753":2268,"22754":3431,"22755":6378,"22756":6754,"22757":2877,"22758":2387,"22759":2755,"22760":222,"22761":15048,"22762":8078,"22763":11456,"22764":5651,"22765":7987,"22766":1208,"22767":16955,"22768":7355,"22769":3810,"22770":10986,"22771":14413,"22772":8404,"22773":3635,"22774":10526,"22775":9834,"22776":14253,"22777":5656,"22778":4142,"22779":8063,"22780":11923,"22781":15153,"22782":9285,"22783":13187,"22784":15994,"22785":794,"22786":11958,"22787":2812,"22788":10718,"22789":8462,"22790":13038,"22791":12309,"22792":4237,"22793":3252,"22794":819,"22795":2287,"22796":10416,"22797":2189,"22798":12560,"22799":14113,"22800":16342,"22801":1739,"22802":18008,"22803":11405,"22804":7696,"22805":993,"22806":16249,"22807":260,"22808":7833,"22809":17528,"22810":6438,"22811":4520,"22812":3961,"22813":17552,"22814":4585,"22815":9179,"22816":163,"22817":270,"22818":1708,"22819":8716,"22820":13990,"22821":17781,"22822":16356,"22823":6881,"22824":3605,"22825":3559,"22826":6417,"22827":10068,"22828":789,"22829":12008,"22830":4579,"22831":13227,"22832":7970,"22833":4397,"22834":8599,"22835":2445,"22836":7663,"22837":205,"22838":12296,"22839":17138,"22840":15319,"22841":10081,"22842":11899,"22843":5934,"22844":11359,"22845":5891,"22846":1639,"22847":8688,"22848":262,"22849":8121,"22850":2959,"22851":18353,"22852":2415,"22853":11967,"22854":11999,"22855":9939,"22856":680,"22857":5952,"22858":18213,"22859":3819,"22860":3652,"22861":12390,"22862":11124,"22863":2187,"22864":2894,"22865":9493,"22866":593,"22867":2872,"22868":4563,"22869":11484,"22870":1540,"22871":4355,"22872":8325,"22873":14282,"22874":1105,"22875":6224,"22876":5712,"22877":1464,"22878":16088,"22879":7541,"22880":1398,"22881":18213,"22882":17765,"22883":11686,"22884":15949,"22885":5040,"22886":5867,"22887":5377,"22888":17044,"22889":3962,"22890":352,"22891":13868,"22892":17466,"22893":4397,"22894":15484,"22895":3367,"22896":13297,"22897":3132,"22898":16277,"22899":8174,"22900":17613,"22901":13734,"22902":14556,"22903":16134,"22904":9852,"22905":11859,"22906":14905,"22907":16358,"22908":89,"22909":8304,"22910":9363,"22911":13182,"22912":17499,"22913":17344,"22914":15851,"22915":1554,"22916":14846,"22917":16737,"22918":997,"22919":8648,"22920":11368,"22921":10498,"22922":4552,"22923":11052,"22924":6819,"22925":7664,"22926":15983,"22927":3336,"22928":6140,"22929":1348,"22930":3044,"22931":2636,"22932":15174,"22933":16978,"22934":16871,"22935":9177,"22936":17882,"22937":9588,"22938":9271,"22939":4192,"22940":17218,"22941":17118,"22942":6886,"22943":4139,"22944":13241,"22945":663,"22946":8338,"22947":6685,"22948":17237,"22949":6458,"22950":1411,"22951":2131,"22952":7348,"22953":1417,"22954":487,"22955":11512,"22956":10995,"22957":8278,"22958":15867,"22959":53,"22960":2711,"22961":10304,"22962":14575,"22963":12443,"22964":1110,"22965":8836,"22966":15636,"22967":4215,"22968":18261,"22969":133,"22970":487,"22971":12629,"22972":17641,"22973":16395,"22974":8428,"22975":17449,"22976":18268,"22977":11399,"22978":16320,"22979":13244,"22980":3756,"22981":3864,"22982":8648,"22983":13951,"22984":17212,"22985":6575,"22986":10653,"22987":2418,"22988":6330,"22989":3237,"22990":11557,"22991":16749,"22992":16292,"22993":1178,"22994":6933,"22995":9151,"22996":4874,"22997":12154,"22998":17201,"22999":11881,"23000":5688,"23001":8449,"23002":7243,"23003":7519,"23004":8602,"23005":6604,"23006":11148,"23007":12531,"23008":17667,"23009":7425,"23010":9895,"23011":16273,"23012":18201,"23013":1128,"23014":9382,"23015":10767,"23016":10858,"23017":1871,"23018":2604,"23019":8901,"23020":276,"23021":16174,"23022":16966,"23023":17723,"23024":6953,"23025":17949,"23026":2345,"23027":2578,"23028":8485,"23029":5025,"23030":3384,"23031":17771,"23032":12883,"23033":10461,"23034":8264,"23035":9302,"23036":8442,"23037":13259,"23038":1177,"23039":17996,"23040":17164,"23041":1496,"23042":13380,"23043":569,"23044":9791,"23045":5975,"23046":10737,"23047":9045,"23048":3696,"23049":7624,"23050":4969,"23051":13369,"23052":1193,"23053":1502,"23054":12111,"23055":8889,"23056":17998,"23057":16385,"23058":3724,"23059":15120,"23060":6333,"23061":249,"23062":1935,"23063":7899,"23064":2038,"23065":1401,"23066":15807,"23067":11698,"23068":3818,"23069":7981,"23070":14192,"23071":10267,"23072":12939,"23073":4640,"23074":18187,"23075":17709,"23076":9854,"23077":17796,"23078":11366,"23079":444,"23080":17092,"23081":7532,"23082":15276,"23083":2617,"23084":12671,"23085":11665,"23086":9565,"23087":7529,"23088":11099,"23089":12793,"23090":15417,"23091":11369,"23092":3866,"23093":94,"23094":12009,"23095":858,"23096":13111,"23097":7155,"23098":10073,"23099":15809,"23100":15090,"23101":263,"23102":11829,"23103":8626,"23104":8122,"23105":9354,"23106":16422,"23107":10776,"23108":96,"23109":15549,"23110":9641,"23111":5958,"23112":6680,"23113":2056,"23114":13949,"23115":569,"23116":17779,"23117":7913,"23118":8008,"23119":3430,"23120":18013,"23121":3048,"23122":2098,"23123":16410,"23124":2056,"23125":5845,"23126":8235,"23127":10711,"23128":10628,"23129":5912,"23130":13872,"23131":11949,"23132":7957,"23133":14927,"23134":3794,"23135":841,"23136":11371,"23137":14948,"23138":18233,"23139":5374,"23140":1716,"23141":903,"23142":6871,"23143":8999,"23144":16815,"23145":14744,"23146":7674,"23147":1755,"23148":9717,"23149":8583,"23150":3227,"23151":1589,"23152":15107,"23153":10655,"23154":17033,"23155":973,"23156":12948,"23157":373,"23158":2015,"23159":15098,"23160":565,"23161":13683,"23162":11035,"23163":11052,"23164":13431,"23165":1558,"23166":5272,"23167":7034,"23168":5227,"23169":14999,"23170":16770,"23171":3839,"23172":7928,"23173":17195,"23174":10296,"23175":1465,"23176":9249,"23177":14314,"23178":12966,"23179":13499,"23180":4303,"23181":13573,"23182":11874,"23183":10892,"23184":9786,"23185":7160,"23186":8258,"23187":12317,"23188":15446,"23189":128,"23190":2179,"23191":16359,"23192":8795,"23193":8247,"23194":17655,"23195":2502,"23196":17962,"23197":9854,"23198":16143,"23199":16893,"23200":9147,"23201":3725,"23202":6584,"23203":13281,"23204":11905,"23205":17713,"23206":390,"23207":11571,"23208":15769,"23209":17921,"23210":1218,"23211":2561,"23212":4367,"23213":3825,"23214":18138,"23215":295,"23216":4630,"23217":17825,"23218":17467,"23219":9509,"23220":5422,"23221":8725,"23222":4178,"23223":4934,"23224":3765,"23225":17776,"23226":571,"23227":1297,"23228":3987,"23229":14247,"23230":3275,"23231":7530,"23232":10794,"23233":14258,"23234":938,"23235":5011,"23236":5080,"23237":11008,"23238":14422,"23239":11656,"23240":15909,"23241":1656,"23242":13978,"23243":7112,"23244":287,"23245":828,"23246":7878,"23247":4036,"23248":13050,"23249":7073,"23250":1228,"23251":9864,"23252":12040,"23253":2307,"23254":10136,"23255":13895,"23256":8184,"23257":8311,"23258":11085,"23259":11233,"23260":16975,"23261":1178,"23262":16801,"23263":11222,"23264":4090,"23265":8088,"23266":12658,"23267":1265,"23268":16271,"23269":4796,"23270":17496,"23271":9848,"23272":2438,"23273":3361,"23274":13605,"23275":2398,"23276":7822,"23277":3582,"23278":4811,"23279":14948,"23280":1171,"23281":6871,"23282":8728,"23283":6375,"23284":17788,"23285":3854,"23286":7378,"23287":1170,"23288":5346,"23289":16181,"23290":17516,"23291":13395,"23292":17118,"23293":6566,"23294":9147,"23295":1349,"23296":14662,"23297":11120,"23298":1037,"23299":15154,"23300":11043,"23301":11996,"23302":4306,"23303":900,"23304":5428,"23305":7523,"23306":3191,"23307":16424,"23308":5266,"23309":17551,"23310":3494,"23311":2695,"23312":13240,"23313":1662,"23314":1313,"23315":14658,"23316":16137,"23317":6736,"23318":11952,"23319":1564,"23320":4405,"23321":10293,"23322":16590,"23323":7593,"23324":2791,"23325":7182,"23326":6697,"23327":17043,"23328":5096,"23329":307,"23330":9036,"23331":10417,"23332":10741,"23333":60,"23334":12294,"23335":3402,"23336":12793,"23337":11739,"23338":6564,"23339":17190,"23340":17277,"23341":8654,"23342":3779,"23343":7266,"23344":1300,"23345":6093,"23346":222,"23347":153,"23348":7396,"23349":14122,"23350":9049,"23351":7758,"23352":8602,"23353":12170,"23354":14326,"23355":1960,"23356":8851,"23357":5159,"23358":6779,"23359":12040,"23360":14711,"23361":11137,"23362":9041,"23363":13267,"23364":2970,"23365":17018,"23366":17934,"23367":6750,"23368":4728,"23369":6018,"23370":13912,"23371":17810,"23372":7625,"23373":4566,"23374":11540,"23375":6309,"23376":4998,"23377":75,"23378":14353,"23379":14766,"23380":14734,"23381":545,"23382":5125,"23383":13640,"23384":15246,"23385":12898,"23386":17526,"23387":11102,"23388":2840,"23389":8943,"23390":6989,"23391":4368,"23392":8128,"23393":108,"23394":14943,"23395":18051,"23396":9218,"23397":1147,"23398":3240,"23399":14028,"23400":15712,"23401":2608,"23402":2959,"23403":791,"23404":11292,"23405":4171,"23406":7433,"23407":9107,"23408":6408,"23409":15049,"23410":13215,"23411":4923,"23412":2578,"23413":5982,"23414":4135,"23415":10533,"23416":17673,"23417":14543,"23418":11516,"23419":2529,"23420":8536,"23421":12084,"23422":293,"23423":1964,"23424":5962,"23425":9926,"23426":5293,"23427":1267,"23428":14610,"23429":5965,"23430":14762,"23431":5564,"23432":360,"23433":9204,"23434":17282,"23435":18084,"23436":15598,"23437":6036,"23438":11622,"23439":11452,"23440":2609,"23441":316,"23442":8790,"23443":8200,"23444":1496,"23445":700,"23446":4952,"23447":5598,"23448":8740,"23449":7551,"23450":16772,"23451":11854,"23452":15384,"23453":14404,"23454":11578,"23455":1220,"23456":14017,"23457":17932,"23458":5600,"23459":1942,"23460":16412,"23461":4321,"23462":13254,"23463":6854,"23464":13676,"23465":17448,"23466":12600,"23467":2454,"23468":23,"23469":14160,"23470":7546,"23471":11640,"23472":615,"23473":3068,"23474":10494,"23475":12558,"23476":13867,"23477":1565,"23478":11846,"23479":6357,"23480":8268,"23481":14735,"23482":2438,"23483":14996,"23484":12580,"23485":17409,"23486":14082,"23487":18138,"23488":3512,"23489":7881,"23490":13865,"23491":13706,"23492":13045,"23493":1252,"23494":9692,"23495":5320,"23496":14494,"23497":17730,"23498":11422,"23499":3634,"23500":1978,"23501":13392,"23502":7185,"23503":2760,"23504":14708,"23505":1747,"23506":4987,"23507":6103,"23508":11486,"23509":13356,"23510":6927,"23511":13082,"23512":10167,"23513":3304,"23514":17552,"23515":17481,"23516":3667,"23517":3009,"23518":5711,"23519":15612,"23520":12909,"23521":14167,"23522":3264,"23523":9246,"23524":5028,"23525":1538,"23526":457,"23527":11278,"23528":631,"23529":3882,"23530":7778,"23531":14848,"23532":2515,"23533":2426,"23534":10186,"23535":14066,"23536":8113,"23537":14559,"23538":15375,"23539":12808,"23540":12259,"23541":2783,"23542":7609,"23543":16371,"23544":8011,"23545":3641,"23546":7021,"23547":17671,"23548":779,"23549":16334,"23550":4104,"23551":10928,"23552":4092,"23553":5127,"23554":16257,"23555":4136,"23556":7826,"23557":1765,"23558":13871,"23559":1888,"23560":10840,"23561":9531,"23562":8967,"23563":16974,"23564":11130,"23565":13893,"23566":8272,"23567":4816,"23568":14950,"23569":2039,"23570":13874,"23571":13815,"23572":9002,"23573":653,"23574":14573,"23575":4580,"23576":17109,"23577":9697,"23578":11038,"23579":5431,"23580":15150,"23581":2976,"23582":16807,"23583":1768,"23584":6634,"23585":13607,"23586":8466,"23587":15371,"23588":11987,"23589":9602,"23590":10777,"23591":14415,"23592":14965,"23593":17412,"23594":1030,"23595":8761,"23596":8784,"23597":18186,"23598":8486,"23599":14527,"23600":10979,"23601":15874,"23602":13958,"23603":1504,"23604":1028,"23605":14647,"23606":9292,"23607":9578,"23608":2910,"23609":12490,"23610":16367,"23611":13599,"23612":13236,"23613":3,"23614":4335,"23615":12228,"23616":7039,"23617":1277,"23618":1957,"23619":10093,"23620":5392,"23621":1452,"23622":2887,"23623":2782,"23624":6721,"23625":4094,"23626":16892,"23627":12194,"23628":14879,"23629":3067,"23630":6410,"23631":15569,"23632":5634,"23633":1972,"23634":12202,"23635":13461,"23636":2603,"23637":17181,"23638":5765,"23639":3846,"23640":7382,"23641":17550,"23642":17195,"23643":10029,"23644":13141,"23645":8226,"23646":13656,"23647":9641,"23648":10875,"23649":8594,"23650":4334,"23651":12991,"23652":4066,"23653":6299,"23654":14669,"23655":3899,"23656":11466,"23657":15024,"23658":9733,"23659":8072,"23660":14672,"23661":15620,"23662":6824,"23663":13900,"23664":6738,"23665":15082,"23666":4806,"23667":407,"23668":4906,"23669":14850,"23670":3962,"23671":13597,"23672":15073,"23673":15380,"23674":402,"23675":14401,"23676":16543,"23677":1464,"23678":6257,"23679":1176,"23680":2523,"23681":4725,"23682":2155,"23683":6375,"23684":15210,"23685":16691,"23686":14878,"23687":7946,"23688":686,"23689":8016,"23690":1202,"23691":13224,"23692":7068,"23693":13189,"23694":15765,"23695":15775,"23696":4295,"23697":8255,"23698":15950,"23699":5867,"23700":15566,"23701":16146,"23702":17681,"23703":6440,"23704":11470,"23705":9193,"23706":12037,"23707":17556,"23708":10860,"23709":17790,"23710":10349,"23711":17542,"23712":13983,"23713":6107,"23714":7739,"23715":12215,"23716":14084,"23717":15801,"23718":1596,"23719":13410,"23720":9710,"23721":15277,"23722":1396,"23723":3838,"23724":2551,"23725":9489,"23726":6971,"23727":6153,"23728":10982,"23729":5064,"23730":2887,"23731":3676,"23732":1263,"23733":10251,"23734":5925,"23735":3660,"23736":8342,"23737":14524,"23738":12533,"23739":5795,"23740":1571,"23741":16786,"23742":18134,"23743":10906,"23744":12617,"23745":4661,"23746":12915,"23747":8103,"23748":6197,"23749":2460,"23750":6297,"23751":73,"23752":6638,"23753":14120,"23754":5736,"23755":14708,"23756":3370,"23757":3848,"23758":8587,"23759":8069,"23760":8189,"23761":16908,"23762":5159,"23763":16716,"23764":6728,"23765":3197,"23766":6008,"23767":3749,"23768":340,"23769":6013,"23770":9944,"23771":7611,"23772":2204,"23773":2856,"23774":13600,"23775":693,"23776":3517,"23777":3803,"23778":589,"23779":4786,"23780":6097,"23781":8691,"23782":6837,"23783":1512,"23784":981,"23785":1972,"23786":9860,"23787":5631,"23788":268,"23789":6499,"23790":13485,"23791":8754,"23792":16735,"23793":15288,"23794":15684,"23795":7655,"23796":1740,"23797":16311,"23798":7695,"23799":15119,"23800":10496,"23801":15593,"23802":6590,"23803":17075,"23804":2768,"23805":11964,"23806":3035,"23807":13492,"23808":2745,"23809":17649,"23810":10802,"23811":18014,"23812":14662,"23813":16101,"23814":6093,"23815":12266,"23816":6676,"23817":14683,"23818":5377,"23819":15400,"23820":10397,"23821":5509,"23822":9986,"23823":3026,"23824":8540,"23825":15214,"23826":468,"23827":8849,"23828":18138,"23829":16185,"23830":7558,"23831":16635,"23832":1726,"23833":7053,"23834":16274,"23835":10108,"23836":1094,"23837":7843,"23838":9683,"23839":8101,"23840":14018,"23841":7265,"23842":12340,"23843":6751,"23844":11802,"23845":2522,"23846":12164,"23847":9284,"23848":3679,"23849":15374,"23850":8027,"23851":16806,"23852":5344,"23853":12393,"23854":11501,"23855":2944,"23856":16705,"23857":4556,"23858":12514,"23859":2109,"23860":3151,"23861":16219,"23862":4412,"23863":546,"23864":2087,"23865":3982,"23866":10111,"23867":17943,"23868":17770,"23869":4729,"23870":15654,"23871":9362,"23872":15152,"23873":6390,"23874":17807,"23875":10134,"23876":1939,"23877":16797,"23878":421,"23879":11029,"23880":9529,"23881":3748,"23882":13688,"23883":7435,"23884":12117,"23885":9769,"23886":11428,"23887":11242,"23888":12574,"23889":14076,"23890":4694,"23891":9049,"23892":13130,"23893":14136,"23894":13196,"23895":2311,"23896":7254,"23897":5553,"23898":4300,"23899":4156,"23900":2899,"23901":14163,"23902":7827,"23903":17317,"23904":16866,"23905":14663,"23906":17592,"23907":7377,"23908":4573,"23909":1112,"23910":15112,"23911":16830,"23912":9211,"23913":5824,"23914":9083,"23915":4772,"23916":4838,"23917":11291,"23918":8929,"23919":2950,"23920":4915,"23921":8473,"23922":1937,"23923":14031,"23924":4736,"23925":14356,"23926":6330,"23927":17368,"23928":9161,"23929":729,"23930":4307,"23931":13311,"23932":5342,"23933":9792,"23934":12500,"23935":16100,"23936":4536,"23937":5092,"23938":15430,"23939":11398,"23940":4514,"23941":10352,"23942":2599,"23943":10111,"23944":6465,"23945":4627,"23946":8286,"23947":7553,"23948":18355,"23949":1272,"23950":9280,"23951":3351,"23952":16848,"23953":9536,"23954":10447,"23955":9762,"23956":5121,"23957":3315,"23958":3201,"23959":5183,"23960":7984,"23961":5098,"23962":14574,"23963":17504,"23964":5737,"23965":16040,"23966":9180,"23967":5034,"23968":98,"23969":12370,"23970":14944,"23971":9165,"23972":5175,"23973":15343,"23974":17993,"23975":6292,"23976":11192,"23977":14066,"23978":11677,"23979":1650,"23980":12795,"23981":607,"23982":2324,"23983":14275,"23984":12391,"23985":9619,"23986":3994,"23987":12012,"23988":7178,"23989":16748,"23990":3205,"23991":15270,"23992":9355,"23993":16481,"23994":16173,"23995":7254,"23996":17077,"23997":13540,"23998":1994,"23999":10746,"24000":13731,"24001":6110,"24002":13940,"24003":4961,"24004":13514,"24005":8807,"24006":16075,"24007":13002,"24008":17201,"24009":8759,"24010":183,"24011":4637,"24012":11214,"24013":14409,"24014":9488,"24015":16950,"24016":3823,"24017":9194,"24018":17889,"24019":10293,"24020":6195,"24021":4862,"24022":8243,"24023":9983,"24024":15023,"24025":8333,"24026":13161,"24027":15086,"24028":3339,"24029":9706,"24030":2526,"24031":4431,"24032":5003,"24033":9855,"24034":4643,"24035":15314,"24036":1555,"24037":9419,"24038":12462,"24039":17595,"24040":2253,"24041":4920,"24042":16590,"24043":10070,"24044":145,"24045":8208,"24046":16378,"24047":13888,"24048":13162,"24049":18132,"24050":15624,"24051":9341,"24052":2977,"24053":1047,"24054":1533,"24055":4903,"24056":10602,"24057":2974,"24058":7637,"24059":9808,"24060":1367,"24061":17744,"24062":733,"24063":12404,"24064":3986,"24065":16560,"24066":6570,"24067":10438,"24068":2008,"24069":7002,"24070":17359,"24071":14520,"24072":2060,"24073":8120,"24074":12053,"24075":11339,"24076":34,"24077":3170,"24078":4388,"24079":442,"24080":15615,"24081":15426,"24082":13607,"24083":13630,"24084":11919,"24085":14616,"24086":599,"24087":5337,"24088":14088,"24089":11234,"24090":4377,"24091":9483,"24092":15664,"24093":17799,"24094":12578,"24095":4674,"24096":5251,"24097":4897,"24098":5095,"24099":18206,"24100":13827,"24101":10772,"24102":17598,"24103":3771,"24104":3646,"24105":14775,"24106":9106,"24107":4057,"24108":2108,"24109":7177,"24110":4226,"24111":11566,"24112":14659,"24113":3033,"24114":13045,"24115":17183,"24116":17834,"24117":5934,"24118":1984,"24119":13758,"24120":11755,"24121":5490,"24122":13559,"24123":14578,"24124":15535,"24125":14028,"24126":9638,"24127":1065,"24128":10114,"24129":10516,"24130":4945,"24131":4296,"24132":2964,"24133":15546,"24134":10721,"24135":15544,"24136":11685,"24137":10342,"24138":15451,"24139":13896,"24140":1545,"24141":17215,"24142":6720,"24143":820,"24144":6482,"24145":10517,"24146":4798,"24147":153,"24148":11102,"24149":15816,"24150":2355,"24151":11074,"24152":15959,"24153":9220,"24154":5559,"24155":3716,"24156":12104,"24157":12514,"24158":13476,"24159":1444,"24160":2297,"24161":18086,"24162":15302,"24163":6481,"24164":2405,"24165":11454,"24166":13086,"24167":17708,"24168":5686,"24169":10414,"24170":11345,"24171":10127,"24172":16540,"24173":2274,"24174":12685,"24175":8445,"24176":13650,"24177":8107,"24178":4455,"24179":11043,"24180":11410,"24181":11318,"24182":15384,"24183":15302,"24184":534,"24185":17389,"24186":17868,"24187":15299,"24188":16280,"24189":8800,"24190":2986,"24191":14733,"24192":8546,"24193":9276,"24194":4666,"24195":6897,"24196":2820,"24197":5596,"24198":12145,"24199":10320,"24200":7914,"24201":2133,"24202":2480,"24203":13098,"24204":10387,"24205":7014,"24206":5056,"24207":13114,"24208":2442,"24209":13999,"24210":3406,"24211":4835,"24212":14227,"24213":18036,"24214":13128,"24215":7712,"24216":4205,"24217":8183,"24218":15908,"24219":2813,"24220":5601,"24221":15908,"24222":2997,"24223":497,"24224":1015,"24225":9767,"24226":7310,"24227":3621,"24228":781,"24229":3722,"24230":14147,"24231":16120,"24232":13304,"24233":7684,"24234":13389,"24235":6629,"24236":9989,"24237":13187,"24238":12365,"24239":17748,"24240":15692,"24241":15552,"24242":13247,"24243":3019,"24244":15596,"24245":3700,"24246":322,"24247":4464,"24248":4302,"24249":6404,"24250":12581,"24251":16051,"24252":1160,"24253":8783,"24254":7082,"24255":11230,"24256":15266,"24257":3264,"24258":11876,"24259":6183,"24260":11775,"24261":7213,"24262":13689,"24263":13569,"24264":12810,"24265":608,"24266":755,"24267":10528,"24268":10574,"24269":9290,"24270":7233,"24271":5497,"24272":3980,"24273":6348,"24274":2057,"24275":16824,"24276":10821,"24277":11830,"24278":13156,"24279":14765,"24280":7953,"24281":11229,"24282":15010,"24283":12728,"24284":4123,"24285":4853,"24286":11984,"24287":18021,"24288":59,"24289":4578,"24290":12457,"24291":4756,"24292":5781,"24293":15177,"24294":3317,"24295":2456,"24296":538,"24297":3029,"24298":14125,"24299":2363,"24300":5561,"24301":10422,"24302":1824,"24303":14429,"24304":2176,"24305":3549,"24306":7436,"24307":3894,"24308":14553,"24309":5189,"24310":7154,"24311":15044,"24312":10470,"24313":7161,"24314":18240,"24315":14672,"24316":16441,"24317":8200,"24318":16890,"24319":2640,"24320":13208,"24321":6383,"24322":15699,"24323":7833,"24324":5015,"24325":8194,"24326":13545,"24327":7455,"24328":3391,"24329":6969,"24330":11855,"24331":11189,"24332":17902,"24333":1839,"24334":11366,"24335":13770,"24336":8785,"24337":2979,"24338":10974,"24339":14157,"24340":11722,"24341":10707,"24342":3910,"24343":7432,"24344":3568,"24345":1350,"24346":10259,"24347":10815,"24348":12440,"24349":2448,"24350":6052,"24351":14119,"24352":5692,"24353":14649,"24354":5052,"24355":16550,"24356":12892,"24357":5711,"24358":15562,"24359":7636,"24360":3907,"24361":408,"24362":17218,"24363":10123,"24364":4983,"24365":15273,"24366":4874,"24367":11935,"24368":10533,"24369":2800,"24370":6611,"24371":4176,"24372":16240,"24373":4334,"24374":5381,"24375":6586,"24376":18138,"24377":11266,"24378":9331,"24379":14748,"24380":16980,"24381":16184,"24382":6654,"24383":8487,"24384":16904,"24385":9030,"24386":6214,"24387":10588,"24388":502,"24389":7271,"24390":13971,"24391":15000,"24392":13351,"24393":5669,"24394":1502,"24395":5571,"24396":3472,"24397":18129,"24398":16513,"24399":12215,"24400":8568,"24401":15539,"24402":9805,"24403":456,"24404":8998,"24405":8769,"24406":7574,"24407":2568,"24408":12384,"24409":10588,"24410":16529,"24411":9117,"24412":14013,"24413":15273,"24414":268,"24415":5052,"24416":1912,"24417":12647,"24418":843,"24419":11275,"24420":13599,"24421":13535,"24422":15734,"24423":4482,"24424":11189,"24425":4897,"24426":6965,"24427":12241,"24428":17170,"24429":3975,"24430":1040,"24431":18169,"24432":13505,"24433":7747,"24434":5178,"24435":1032,"24436":18075,"24437":14572,"24438":11871,"24439":813,"24440":6432,"24441":5129,"24442":9587,"24443":12038,"24444":3145,"24445":815,"24446":11094,"24447":5876,"24448":1896,"24449":11369,"24450":12891,"24451":7789,"24452":3958,"24453":10085,"24454":7216,"24455":12311,"24456":6392,"24457":11338,"24458":5890,"24459":10607,"24460":16389,"24461":7638,"24462":6004,"24463":6994,"24464":15311,"24465":13126,"24466":7326,"24467":18227,"24468":7763,"24469":17549,"24470":7253,"24471":2286,"24472":3699,"24473":5770,"24474":12399,"24475":14345,"24476":17228,"24477":14569,"24478":14292,"24479":5719,"24480":8343,"24481":3404,"24482":13811,"24483":13118,"24484":12222,"24485":16720,"24486":426,"24487":8499,"24488":17832,"24489":18071,"24490":12747,"24491":3797,"24492":14237,"24493":5420,"24494":13037,"24495":12479,"24496":7357,"24497":8825,"24498":8210,"24499":10043,"24500":9911,"24501":12511,"24502":10093,"24503":9096,"24504":1,"24505":3918,"24506":17295,"24507":5351,"24508":1337,"24509":10908,"24510":8405,"24511":1569,"24512":4206,"24513":9233,"24514":15029,"24515":11730,"24516":13176,"24517":5799,"24518":9784,"24519":4094,"24520":2182,"24521":16053,"24522":8888,"24523":17938,"24524":3623,"24525":13048,"24526":4333,"24527":1288,"24528":8821,"24529":1050,"24530":14161,"24531":8571,"24532":5658,"24533":15032,"24534":1797,"24535":8867,"24536":9077,"24537":17143,"24538":15575,"24539":10138,"24540":2166,"24541":18351,"24542":7135,"24543":7365,"24544":6710,"24545":16945,"24546":9424,"24547":7808,"24548":9695,"24549":4765,"24550":3975,"24551":11938,"24552":9,"24553":2707,"24554":17483,"24555":11748,"24556":12291,"24557":4706,"24558":14228,"24559":17128,"24560":13610,"24561":5744,"24562":13695,"24563":3718,"24564":10051,"24565":8964,"24566":9949,"24567":9040,"24568":14003,"24569":4759,"24570":16402,"24571":14548,"24572":11032,"24573":18211,"24574":18285,"24575":10611,"24576":7945,"24577":11948,"24578":4130,"24579":11566,"24580":17273,"24581":2578,"24582":7840,"24583":8367,"24584":4280,"24585":12774,"24586":13219,"24587":15412,"24588":17379,"24589":17402,"24590":16930,"24591":9929,"24592":18039,"24593":7985,"24594":10300,"24595":4787,"24596":14440,"24597":4880,"24598":15445,"24599":14029,"24600":1508,"24601":6021,"24602":590,"24603":2335,"24604":479,"24605":7381,"24606":16387,"24607":9249,"24608":13205,"24609":2257,"24610":13805,"24611":10475,"24612":17436,"24613":3386,"24614":6733,"24615":91,"24616":486,"24617":14450,"24618":9182,"24619":7047,"24620":5477,"24621":10546,"24622":1571,"24623":14927,"24624":5653,"24625":15697,"24626":5722,"24627":1106,"24628":1273,"24629":13954,"24630":42,"24631":14091,"24632":14861,"24633":12533,"24634":12955,"24635":4813,"24636":1337,"24637":2254,"24638":17355,"24639":5231,"24640":14528,"24641":2971,"24642":13700,"24643":6063,"24644":9432,"24645":12423,"24646":12626,"24647":5397,"24648":2282,"24649":11164,"24650":4689,"24651":16236,"24652":629,"24653":5116,"24654":8783,"24655":7980,"24656":9551,"24657":16460,"24658":6893,"24659":13320,"24660":6853,"24661":6542,"24662":9300,"24663":6734,"24664":2712,"24665":7848,"24666":335,"24667":13320,"24668":12343,"24669":17881,"24670":1031,"24671":8905,"24672":13500,"24673":16921,"24674":18215,"24675":16978,"24676":15671,"24677":10513,"24678":2312,"24679":14353,"24680":17705,"24681":1139,"24682":1266,"24683":7308,"24684":14167,"24685":4771,"24686":7288,"24687":10886,"24688":14726,"24689":12171,"24690":6820,"24691":3527,"24692":5842,"24693":10211,"24694":11204,"24695":11231,"24696":11415,"24697":9652,"24698":15989,"24699":5667,"24700":3476,"24701":8353,"24702":9764,"24703":2983,"24704":15487,"24705":15812,"24706":11752,"24707":14385,"24708":9238,"24709":14100,"24710":6600,"24711":8441,"24712":16192,"24713":3298,"24714":13638,"24715":17759,"24716":15465,"24717":14094,"24718":7488,"24719":7996,"24720":4623,"24721":10282,"24722":16462,"24723":4916,"24724":974,"24725":8119,"24726":3824,"24727":5182,"24728":15517,"24729":6426,"24730":540,"24731":2835,"24732":1844,"24733":15667,"24734":15719,"24735":12258,"24736":465,"24737":3971,"24738":14886,"24739":15633,"24740":16699,"24741":14952,"24742":11457,"24743":819,"24744":14517,"24745":10936,"24746":9688,"24747":9344,"24748":6919,"24749":5235,"24750":5454,"24751":12292,"24752":18211,"24753":4577,"24754":1344,"24755":13138,"24756":1435,"24757":15781,"24758":11396,"24759":3450,"24760":2917,"24761":16166,"24762":3069,"24763":6907,"24764":10899,"24765":14114,"24766":18168,"24767":901,"24768":7367,"24769":18355,"24770":16661,"24771":16216,"24772":17487,"24773":3155,"24774":3993,"24775":2981,"24776":7428,"24777":6519,"24778":17305,"24779":12274,"24780":1328,"24781":2029,"24782":8272,"24783":6265,"24784":17895,"24785":17428,"24786":4240,"24787":10227,"24788":8477,"24789":15977,"24790":11009,"24791":8700,"24792":13834,"24793":2547,"24794":17468,"24795":979,"24796":10813,"24797":2391,"24798":7604,"24799":9732,"24800":15033,"24801":7799,"24802":831,"24803":12006,"24804":7779,"24805":955,"24806":1140,"24807":10284,"24808":10326,"24809":159,"24810":7679,"24811":17494,"24812":3796,"24813":16496,"24814":14530,"24815":13332,"24816":8646,"24817":1257,"24818":8741,"24819":2084,"24820":3016,"24821":13660,"24822":8104,"24823":1501,"24824":1245,"24825":3898,"24826":13948,"24827":15087,"24828":2450,"24829":8052,"24830":13896,"24831":5036,"24832":17916,"24833":11702,"24834":16649,"24835":13578,"24836":6311,"24837":7760,"24838":17505,"24839":17160,"24840":12847,"24841":16764,"24842":5268,"24843":7220,"24844":15549,"24845":12584,"24846":15484,"24847":10059,"24848":13049,"24849":14356,"24850":3763,"24851":3774,"24852":2372,"24853":3071,"24854":17735,"24855":6441,"24856":14760,"24857":17811,"24858":8525,"24859":1234,"24860":11360,"24861":12380,"24862":1748,"24863":9204,"24864":12683,"24865":756,"24866":10613,"24867":17661,"24868":46,"24869":15312,"24870":1505,"24871":2810,"24872":3929,"24873":10177,"24874":3213,"24875":173,"24876":6070,"24877":7172,"24878":9559,"24879":9361,"24880":10666,"24881":3255,"24882":10957,"24883":5374,"24884":6552,"24885":4263,"24886":14885,"24887":2032,"24888":12187,"24889":12144,"24890":10393,"24891":740,"24892":12467,"24893":10701,"24894":18171,"24895":10772,"24896":8999,"24897":17637,"24898":11473,"24899":11788,"24900":3470,"24901":17869,"24902":16936,"24903":5511,"24904":9494,"24905":8619,"24906":3317,"24907":5751,"24908":96,"24909":8570,"24910":7423,"24911":678,"24912":17350,"24913":12169,"24914":16412,"24915":3602,"24916":1753,"24917":11480,"24918":11898,"24919":2465,"24920":1448,"24921":16027,"24922":5020,"24923":15837,"24924":8758,"24925":11907,"24926":3326,"24927":8035,"24928":6064,"24929":8324,"24930":5535,"24931":7091,"24932":13585,"24933":4299,"24934":14757,"24935":16557,"24936":6088,"24937":8902,"24938":2592,"24939":2580,"24940":11721,"24941":11007,"24942":14434,"24943":18195,"24944":15542,"24945":15417,"24946":3104,"24947":1546,"24948":4959,"24949":6088,"24950":13903,"24951":5027,"24952":17173,"24953":12568,"24954":17182,"24955":16742,"24956":14238,"24957":16203,"24958":17952,"24959":5731,"24960":18008,"24961":10240,"24962":5586,"24963":611,"24964":16598,"24965":18049,"24966":14698,"24967":7402,"24968":9492,"24969":9964,"24970":11891,"24971":8875,"24972":12226,"24973":6274,"24974":13049,"24975":4672,"24976":1719,"24977":15029,"24978":17153,"24979":17384,"24980":13056,"24981":1856,"24982":6498,"24983":661,"24984":12109,"24985":17607,"24986":14347,"24987":8611,"24988":6116,"24989":9544,"24990":363,"24991":9062,"24992":17128,"24993":14971,"24994":12610,"24995":12589,"24996":13123,"24997":3695,"24998":14255,"24999":13376,"25000":17962,"25001":3931,"25002":3493,"25003":10151,"25004":2755,"25005":6653,"25006":1199,"25007":9906,"25008":9666,"25009":11145,"25010":1757,"25011":10030,"25012":5626,"25013":1237,"25014":1791,"25015":13439,"25016":13270,"25017":17232,"25018":10854,"25019":759,"25020":10737,"25021":14182,"25022":7963,"25023":14787,"25024":1368,"25025":9750,"25026":17745,"25027":2207,"25028":2643,"25029":9448,"25030":653,"25031":7621,"25032":8744,"25033":1627,"25034":6475,"25035":14371,"25036":3286,"25037":4062,"25038":13303,"25039":232,"25040":15103,"25041":8709,"25042":17859,"25043":12051,"25044":5640,"25045":312,"25046":17933,"25047":6437,"25048":3970,"25049":3407,"25050":10183,"25051":4089,"25052":2078,"25053":5551,"25054":3666,"25055":2782,"25056":9123,"25057":14126,"25058":2137,"25059":3168,"25060":1454,"25061":11849,"25062":9964,"25063":12068,"25064":13081,"25065":7358,"25066":4799,"25067":16960,"25068":8291,"25069":9281,"25070":3181,"25071":511,"25072":12100,"25073":6228,"25074":16933,"25075":14527,"25076":2440,"25077":10297,"25078":12329,"25079":2779,"25080":3147,"25081":10980,"25082":6143,"25083":7860,"25084":2148,"25085":11164,"25086":14270,"25087":5875,"25088":375,"25089":7866,"25090":10815,"25091":5614,"25092":17510,"25093":4492,"25094":1584,"25095":7470,"25096":3069,"25097":2063,"25098":7353,"25099":11488,"25100":14444,"25101":2961,"25102":12004,"25103":12768,"25104":1609,"25105":9415,"25106":4084,"25107":16168,"25108":8711,"25109":5291,"25110":8632,"25111":17857,"25112":3839,"25113":2016,"25114":10155,"25115":6243,"25116":270,"25117":16174,"25118":1221,"25119":11787,"25120":16816,"25121":6393,"25122":8076,"25123":17438,"25124":4287,"25125":4792,"25126":7913,"25127":3359,"25128":4986,"25129":8422,"25130":15682,"25131":8806,"25132":17877,"25133":15541,"25134":5472,"25135":2911,"25136":15714,"25137":14130,"25138":8336,"25139":15112,"25140":942,"25141":2517,"25142":7658,"25143":10763,"25144":15938,"25145":9593,"25146":13845,"25147":413,"25148":4141,"25149":9442,"25150":1612,"25151":7826,"25152":13093,"25153":9145,"25154":11612,"25155":11393,"25156":12437,"25157":6494,"25158":12327,"25159":15066,"25160":6923,"25161":16473,"25162":2728,"25163":16966,"25164":9356,"25165":13897,"25166":15017,"25167":14895,"25168":5449,"25169":11483,"25170":14497,"25171":17081,"25172":2824,"25173":856,"25174":4696,"25175":9555,"25176":9295,"25177":14532,"25178":5517,"25179":7043,"25180":9899,"25181":11701,"25182":10797,"25183":5622,"25184":15112,"25185":6099,"25186":2605,"25187":6677,"25188":5016,"25189":14737,"25190":3224,"25191":4721,"25192":18154,"25193":8613,"25194":16361,"25195":14498,"25196":14894,"25197":3080,"25198":8257,"25199":14285,"25200":15794,"25201":6925,"25202":11370,"25203":3828,"25204":9470,"25205":16382,"25206":14626,"25207":13101,"25208":112,"25209":1218,"25210":18153,"25211":6556,"25212":11153,"25213":1042,"25214":4974,"25215":18210,"25216":4932,"25217":95,"25218":3457,"25219":17633,"25220":15512,"25221":5298,"25222":607,"25223":1332,"25224":5188,"25225":7505,"25226":455,"25227":3681,"25228":10452,"25229":777,"25230":13827,"25231":4661,"25232":7375,"25233":1665,"25234":83,"25235":17733,"25236":16262,"25237":2344,"25238":3876,"25239":14950,"25240":7803,"25241":6083,"25242":653,"25243":8838,"25244":11600,"25245":8152,"25246":15741,"25247":13741,"25248":9905,"25249":17459,"25250":1513,"25251":15815,"25252":9555,"25253":9259,"25254":17693,"25255":8736,"25256":10144,"25257":2895,"25258":7036,"25259":13323,"25260":17161,"25261":7641,"25262":16980,"25263":18289,"25264":6055,"25265":5637,"25266":14474,"25267":17947,"25268":12952,"25269":15798,"25270":5778,"25271":2240,"25272":5563,"25273":3503,"25274":13577,"25275":10416,"25276":18115,"25277":13032,"25278":7033,"25279":13797,"25280":2194,"25281":8540,"25282":15421,"25283":15388,"25284":12700,"25285":10798,"25286":7637,"25287":206,"25288":14106,"25289":5406,"25290":2560,"25291":11877,"25292":1191,"25293":18176,"25294":7057,"25295":3755,"25296":4756,"25297":9521,"25298":1202,"25299":14020,"25300":4638,"25301":922,"25302":5236,"25303":16777,"25304":7961,"25305":13826,"25306":17657,"25307":17087,"25308":13951,"25309":15325,"25310":12696,"25311":13236,"25312":583,"25313":11949,"25314":10543,"25315":7220,"25316":5950,"25317":7631,"25318":12101,"25319":11067,"25320":6178,"25321":1513,"25322":4298,"25323":11742,"25324":15927,"25325":3649,"25326":17510,"25327":4033,"25328":11003,"25329":6115,"25330":2214,"25331":12576,"25332":14033,"25333":9329,"25334":902,"25335":5141,"25336":4863,"25337":5619,"25338":4555,"25339":9824,"25340":6444,"25341":16213,"25342":9814,"25343":8148,"25344":8479,"25345":12442,"25346":8360,"25347":1339,"25348":13607,"25349":4700,"25350":5706,"25351":5610,"25352":2267,"25353":2452,"25354":10721,"25355":9415,"25356":8040,"25357":8614,"25358":8323,"25359":12654,"25360":11915,"25361":12660,"25362":1793,"25363":850,"25364":14453,"25365":1581,"25366":1545,"25367":6311,"25368":14457,"25369":426,"25370":10763,"25371":7873,"25372":10508,"25373":18119,"25374":13392,"25375":739,"25376":8515,"25377":1851,"25378":16077,"25379":5172,"25380":10792,"25381":4716,"25382":9719,"25383":9516,"25384":8451,"25385":13489,"25386":10177,"25387":14995,"25388":11404,"25389":10835,"25390":10099,"25391":9952,"25392":745,"25393":1751,"25394":11646,"25395":6885,"25396":16709,"25397":6453,"25398":7487,"25399":883,"25400":16143,"25401":6482,"25402":870,"25403":9021,"25404":7554,"25405":2387,"25406":13423,"25407":3906,"25408":1570,"25409":6489,"25410":13227,"25411":14187,"25412":11082,"25413":16686,"25414":18205,"25415":3361,"25416":4787,"25417":4761,"25418":18069,"25419":2258,"25420":3754,"25421":9784,"25422":11999,"25423":10873,"25424":8460,"25425":18179,"25426":18261,"25427":3821,"25428":7083,"25429":9910,"25430":661,"25431":9434,"25432":17433,"25433":16749,"25434":8951,"25435":3276,"25436":14082,"25437":15206,"25438":9319,"25439":8006,"25440":6680,"25441":15940,"25442":9040,"25443":7378,"25444":1838,"25445":9450,"25446":47,"25447":8948,"25448":7725,"25449":2748,"25450":15063,"25451":4423,"25452":1640,"25453":11739,"25454":7060,"25455":9774,"25456":2382,"25457":17427,"25458":11738,"25459":5263,"25460":8413,"25461":16805,"25462":6301,"25463":13851,"25464":11933,"25465":13194,"25466":10368,"25467":11279,"25468":3664,"25469":2040,"25470":12030,"25471":6360,"25472":15199,"25473":12137,"25474":201,"25475":13515,"25476":11971,"25477":16750,"25478":10465,"25479":16923,"25480":6045,"25481":11571,"25482":18230,"25483":12237,"25484":229,"25485":10819,"25486":15406,"25487":8781,"25488":5681,"25489":17992,"25490":9018,"25491":18305,"25492":4318,"25493":14794,"25494":6887,"25495":12684,"25496":8872,"25497":10475,"25498":6146,"25499":10995,"25500":5754,"25501":15051,"25502":16684,"25503":18357,"25504":11199,"25505":9611,"25506":12213,"25507":11261,"25508":17903,"25509":18266,"25510":2993,"25511":2264,"25512":17303,"25513":8158,"25514":7784,"25515":13455,"25516":15560,"25517":607,"25518":8767,"25519":3110,"25520":8885,"25521":15469,"25522":15918,"25523":5376,"25524":14112,"25525":4273,"25526":12100,"25527":4966,"25528":12397,"25529":12993,"25530":13523,"25531":11553,"25532":2618,"25533":16060,"25534":6160,"25535":13975,"25536":5612,"25537":871,"25538":18052,"25539":10930,"25540":16808,"25541":6165,"25542":10498,"25543":11579,"25544":14080,"25545":2466,"25546":2330,"25547":16992,"25548":9573,"25549":3845,"25550":1988,"25551":9752,"25552":13359,"25553":18204,"25554":3394,"25555":14686,"25556":14206,"25557":8517,"25558":13620,"25559":7923,"25560":16022,"25561":15799,"25562":4633,"25563":8616,"25564":14085,"25565":1849,"25566":10218,"25567":12921,"25568":5772,"25569":12250,"25570":2928,"25571":13785,"25572":5450,"25573":9841,"25574":10942,"25575":93,"25576":409,"25577":13393,"25578":4458,"25579":4005,"25580":1165,"25581":10424,"25582":15211,"25583":12470,"25584":9434,"25585":17044,"25586":15332,"25587":10068,"25588":10360,"25589":2217,"25590":5127,"25591":9402,"25592":1696,"25593":16070,"25594":16585,"25595":7400,"25596":10759,"25597":6273,"25598":9086,"25599":11751,"25600":6092,"25601":11573,"25602":13850,"25603":17810,"25604":8898,"25605":4363,"25606":14171,"25607":1985,"25608":5893,"25609":13470,"25610":6726,"25611":15237,"25612":3933,"25613":16511,"25614":1469,"25615":6479,"25616":7989,"25617":17938,"25618":11603,"25619":3654,"25620":13047,"25621":8457,"25622":11430,"25623":14038,"25624":30,"25625":8661,"25626":4474,"25627":12542,"25628":16524,"25629":3088,"25630":15258,"25631":14065,"25632":3927,"25633":12001,"25634":10683,"25635":7409,"25636":12834,"25637":17787,"25638":16126,"25639":17717,"25640":17731,"25641":11193,"25642":6578,"25643":17066,"25644":10138,"25645":179,"25646":9831,"25647":7315,"25648":16995,"25649":13710,"25650":11471,"25651":8714,"25652":16328,"25653":1154,"25654":717,"25655":14269,"25656":9380,"25657":3123,"25658":10559,"25659":11179,"25660":17739,"25661":16637,"25662":16562,"25663":13192,"25664":7458,"25665":13227,"25666":15535,"25667":2033,"25668":15048,"25669":14217,"25670":11978,"25671":1192,"25672":14381,"25673":3268,"25674":18285,"25675":317,"25676":18334,"25677":4664,"25678":8667,"25679":4865,"25680":16393,"25681":14152,"25682":1347,"25683":2,"25684":4391,"25685":5681,"25686":18353,"25687":16440,"25688":12863,"25689":18250,"25690":10337,"25691":10754,"25692":12913,"25693":13666,"25694":4902,"25695":7876,"25696":4351,"25697":12750,"25698":15055,"25699":5203,"25700":6708,"25701":3462,"25702":17975,"25703":16481,"25704":11749,"25705":9766,"25706":15613,"25707":17656,"25708":9298,"25709":11184,"25710":12716,"25711":6933,"25712":13045,"25713":16152,"25714":3549,"25715":8883,"25716":4115,"25717":2014,"25718":848,"25719":15574,"25720":1457,"25721":9568,"25722":11289,"25723":15652,"25724":12837,"25725":18285,"25726":6700,"25727":18087,"25728":9314,"25729":9852,"25730":932,"25731":16370,"25732":3186,"25733":1846,"25734":12151,"25735":571,"25736":4885,"25737":6394,"25738":1157,"25739":16049,"25740":16285,"25741":10808,"25742":10667,"25743":13075,"25744":1074,"25745":11014,"25746":9042,"25747":144,"25748":368,"25749":15908,"25750":4256,"25751":3641,"25752":13302,"25753":5981,"25754":9853,"25755":155,"25756":5107,"25757":12006,"25758":9600,"25759":14144,"25760":15431,"25761":11866,"25762":13387,"25763":10537,"25764":13639,"25765":8023,"25766":5865,"25767":13579,"25768":12970,"25769":7522,"25770":15230,"25771":11305,"25772":3874,"25773":17910,"25774":13119,"25775":5957,"25776":5263,"25777":4455,"25778":13706,"25779":13344,"25780":16860,"25781":10658,"25782":3708,"25783":12723,"25784":671,"25785":11369,"25786":12583,"25787":10812,"25788":5049,"25789":4036,"25790":7443,"25791":1759,"25792":3793,"25793":1058,"25794":669,"25795":9842,"25796":8429,"25797":6144,"25798":17499,"25799":3582,"25800":8377,"25801":4141,"25802":8295,"25803":9002,"25804":1326,"25805":14991,"25806":4968,"25807":7037,"25808":18349,"25809":5815,"25810":3954,"25811":901,"25812":11007,"25813":8704,"25814":7947,"25815":2574,"25816":5843,"25817":4189,"25818":7566,"25819":4142,"25820":11592,"25821":18333,"25822":3436,"25823":13417,"25824":16798,"25825":16164,"25826":958,"25827":7939,"25828":16023,"25829":2767,"25830":15126,"25831":11497,"25832":7771,"25833":6771,"25834":16033,"25835":5896,"25836":6420,"25837":17335,"25838":5126,"25839":15745,"25840":6296,"25841":8869,"25842":5736,"25843":15970,"25844":6431,"25845":10873,"25846":13709,"25847":3063,"25848":14051,"25849":2805,"25850":3875,"25851":16763,"25852":18207,"25853":8294,"25854":4923,"25855":8425,"25856":14751,"25857":17614,"25858":13433,"25859":11560,"25860":16377,"25861":16219,"25862":13793,"25863":11779,"25864":8086,"25865":9339,"25866":3719,"25867":8115,"25868":2414,"25869":13668,"25870":4605,"25871":7577,"25872":18003,"25873":9016,"25874":3274,"25875":4509,"25876":627,"25877":2879,"25878":1700,"25879":12341,"25880":5003,"25881":542,"25882":6149,"25883":9939,"25884":18255,"25885":6210,"25886":4167,"25887":16084,"25888":17563,"25889":3534,"25890":4623,"25891":13362,"25892":148,"25893":4075,"25894":6767,"25895":14608,"25896":12901,"25897":3106,"25898":4307,"25899":11432,"25900":17452,"25901":4994,"25902":12712,"25903":1792,"25904":5112,"25905":11607,"25906":17469,"25907":14191,"25908":18254,"25909":7464,"25910":13331,"25911":299,"25912":6553,"25913":12732,"25914":14800,"25915":1084,"25916":4731,"25917":14544,"25918":18207,"25919":11644,"25920":3331,"25921":9070,"25922":4500,"25923":18245,"25924":6458,"25925":9670,"25926":11604,"25927":4192,"25928":1027,"25929":7610,"25930":5994,"25931":4451,"25932":9075,"25933":14217,"25934":17779,"25935":16828,"25936":2105,"25937":7420,"25938":4487,"25939":14458,"25940":10248,"25941":10950,"25942":5666,"25943":11140,"25944":4023,"25945":14572,"25946":6723,"25947":10373,"25948":3425,"25949":13800,"25950":14195,"25951":665,"25952":12867,"25953":8402,"25954":11142,"25955":5867,"25956":18263,"25957":8454,"25958":5750,"25959":14728,"25960":17040,"25961":11758,"25962":1611,"25963":9145,"25964":14555,"25965":15882,"25966":8134,"25967":15524,"25968":9380,"25969":13208,"25970":2969,"25971":8473,"25972":1698,"25973":2219,"25974":8020,"25975":1773,"25976":8089,"25977":11217,"25978":10106,"25979":8067,"25980":15877,"25981":6741,"25982":222,"25983":13709,"25984":11051,"25985":6684,"25986":13100,"25987":3501,"25988":12683,"25989":15464,"25990":15673,"25991":5169,"25992":15886,"25993":17252,"25994":18154,"25995":13177,"25996":13214,"25997":13091,"25998":2597,"25999":1998,"26000":9859,"26001":3898,"26002":4049,"26003":3067,"26004":6076,"26005":17413,"26006":9969,"26007":9572,"26008":15885,"26009":4484,"26010":10503,"26011":339,"26012":9246,"26013":1229,"26014":2736,"26015":14033,"26016":1007,"26017":15645,"26018":16373,"26019":2038,"26020":17531,"26021":13208,"26022":11043,"26023":17963,"26024":17591,"26025":9611,"26026":10707,"26027":115,"26028":9071,"26029":10685,"26030":5497,"26031":16106,"26032":17140,"26033":12049,"26034":2549,"26035":16304,"26036":5365,"26037":15384,"26038":14563,"26039":1440,"26040":7146,"26041":16850,"26042":7666,"26043":16122,"26044":4761,"26045":7426,"26046":1447,"26047":9650,"26048":13736,"26049":12972,"26050":12601,"26051":10780,"26052":4776,"26053":18221,"26054":825,"26055":3285,"26056":16240,"26057":6271,"26058":2337,"26059":3787,"26060":4636,"26061":745,"26062":8892,"26063":10451,"26064":15449,"26065":2494,"26066":817,"26067":4550,"26068":2232,"26069":12300,"26070":9325,"26071":8276,"26072":6808,"26073":10181,"26074":7621,"26075":4115,"26076":16907,"26077":9678,"26078":6915,"26079":16176,"26080":2652,"26081":7793,"26082":12630,"26083":6020,"26084":9082,"26085":100,"26086":5958,"26087":12480,"26088":5305,"26089":8565,"26090":1342,"26091":3679,"26092":55,"26093":2558,"26094":11989,"26095":14213,"26096":13501,"26097":1841,"26098":9631,"26099":4216,"26100":16378,"26101":16918,"26102":17382,"26103":11209,"26104":11166,"26105":11273,"26106":4404,"26107":13884,"26108":15123,"26109":6854,"26110":11555,"26111":3815,"26112":1467,"26113":12149,"26114":2716,"26115":14224,"26116":9704,"26117":18234,"26118":9522,"26119":298,"26120":9825,"26121":9687,"26122":760,"26123":12070,"26124":18217,"26125":16976,"26126":13223,"26127":5400,"26128":14480,"26129":1419,"26130":115,"26131":10116,"26132":14163,"26133":4705,"26134":1106,"26135":4983,"26136":13946,"26137":731,"26138":3289,"26139":8071,"26140":17490,"26141":13085,"26142":8909,"26143":16,"26144":9486,"26145":15630,"26146":11816,"26147":1133,"26148":8989,"26149":17348,"26150":10013,"26151":5090,"26152":13054,"26153":10379,"26154":5422,"26155":6461,"26156":1303,"26157":9654,"26158":12401,"26159":9992,"26160":15811,"26161":13306,"26162":16278,"26163":10859,"26164":10630,"26165":7630,"26166":329,"26167":8319,"26168":8154,"26169":8346,"26170":1865,"26171":11493,"26172":13711,"26173":7091,"26174":16091,"26175":2816,"26176":8362,"26177":15430,"26178":7977,"26179":8265,"26180":3075,"26181":12800,"26182":2537,"26183":17522,"26184":13528,"26185":13605,"26186":14458,"26187":11246,"26188":11492,"26189":16312,"26190":7630,"26191":4915,"26192":10093,"26193":6317,"26194":2364,"26195":16460,"26196":12415,"26197":3507,"26198":1497,"26199":16857,"26200":5949,"26201":14846,"26202":6287,"26203":13830,"26204":12434,"26205":4446,"26206":4336,"26207":18324,"26208":2658,"26209":7432,"26210":14388,"26211":17611,"26212":762,"26213":17978,"26214":6331,"26215":1587,"26216":12308,"26217":15479,"26218":1537,"26219":4338,"26220":6838,"26221":4047,"26222":4097,"26223":10479,"26224":9598,"26225":6200,"26226":8008,"26227":14540,"26228":16516,"26229":16032,"26230":10226,"26231":1125,"26232":15431,"26233":7611,"26234":3106,"26235":11097,"26236":16270,"26237":12709,"26238":11776,"26239":9927,"26240":9124,"26241":8105,"26242":8088,"26243":12843,"26244":18348,"26245":6111,"26246":2587,"26247":3429,"26248":4638,"26249":8999,"26250":5251,"26251":7568,"26252":4739,"26253":15780,"26254":10803,"26255":694,"26256":8237,"26257":15046,"26258":15870,"26259":1145,"26260":15901,"26261":10588,"26262":1297,"26263":5524,"26264":6428,"26265":5403,"26266":17742,"26267":15973,"26268":3077,"26269":12403,"26270":2915,"26271":7088,"26272":16494,"26273":1337,"26274":7522,"26275":7858,"26276":12972,"26277":17212,"26278":6770,"26279":6834,"26280":6738,"26281":1245,"26282":5688,"26283":17084,"26284":17652,"26285":1941,"26286":10912,"26287":12990,"26288":9043,"26289":13074,"26290":7459,"26291":8720,"26292":9585,"26293":4335,"26294":3544,"26295":7739,"26296":2305,"26297":14671,"26298":11410,"26299":14079,"26300":2406,"26301":17760,"26302":15943,"26303":2575,"26304":18300,"26305":1867,"26306":11127,"26307":10906,"26308":17760,"26309":4402,"26310":6305,"26311":7165,"26312":14836,"26313":15555,"26314":7015,"26315":9644,"26316":12686,"26317":9405,"26318":11356,"26319":15594,"26320":12603,"26321":8494,"26322":10539,"26323":3513,"26324":7949,"26325":2952,"26326":10354,"26327":9982,"26328":7116,"26329":4169,"26330":12629,"26331":12794,"26332":2030,"26333":8329,"26334":6765,"26335":11681,"26336":17846,"26337":15241,"26338":99,"26339":16050,"26340":709,"26341":3519,"26342":10858,"26343":2138,"26344":7654,"26345":9033,"26346":14192,"26347":5458,"26348":10322,"26349":8693,"26350":18056,"26351":10244,"26352":13663,"26353":8118,"26354":14938,"26355":4533,"26356":1011,"26357":6521,"26358":3391,"26359":6778,"26360":6016,"26361":3506,"26362":14132,"26363":15690,"26364":8084,"26365":5148,"26366":4196,"26367":4525,"26368":14943,"26369":2649,"26370":13223,"26371":1652,"26372":8475,"26373":6243,"26374":1998,"26375":15442,"26376":877,"26377":7540,"26378":2537,"26379":9810,"26380":17147,"26381":1485,"26382":4387,"26383":4185,"26384":12607,"26385":5178,"26386":16547,"26387":14184,"26388":2919,"26389":14164,"26390":1550,"26391":442,"26392":9271,"26393":16265,"26394":6676,"26395":14483,"26396":11953,"26397":9410,"26398":1220,"26399":3146,"26400":14285,"26401":8423,"26402":7964,"26403":3554,"26404":2627,"26405":10883,"26406":13236,"26407":12660,"26408":13457,"26409":13224,"26410":10573,"26411":3755,"26412":14100,"26413":12932,"26414":12723,"26415":13324,"26416":4067,"26417":16724,"26418":10232,"26419":11078,"26420":16883,"26421":7393,"26422":12976,"26423":10109,"26424":1100,"26425":5184,"26426":479,"26427":11875,"26428":7144,"26429":15474,"26430":17467,"26431":8929,"26432":17639,"26433":13319,"26434":15912,"26435":11710,"26436":4644,"26437":1788,"26438":17198,"26439":2649,"26440":5642,"26441":11644,"26442":17823,"26443":3253,"26444":2054,"26445":13240,"26446":16459,"26447":14396,"26448":8634,"26449":3532,"26450":2010,"26451":16684,"26452":17402,"26453":9519,"26454":2679,"26455":3484,"26456":15078,"26457":4883,"26458":5288,"26459":11800,"26460":14,"26461":3685,"26462":1186,"26463":17801,"26464":2373,"26465":17032,"26466":13537,"26467":10964,"26468":936,"26469":17097,"26470":17496,"26471":1377,"26472":15372,"26473":15911,"26474":14646,"26475":17713,"26476":6501,"26477":6523,"26478":3658,"26479":9908,"26480":3343,"26481":14535,"26482":12127,"26483":6230,"26484":2587,"26485":16298,"26486":18175,"26487":9304,"26488":3572,"26489":12390,"26490":18037,"26491":518,"26492":13841,"26493":6361,"26494":14296,"26495":3328,"26496":11913,"26497":13963,"26498":1240,"26499":11783,"26500":8176,"26501":12730,"26502":12410,"26503":3505,"26504":11879,"26505":13299,"26506":13186,"26507":3674,"26508":849,"26509":10255,"26510":2795,"26511":16963,"26512":9301,"26513":16232,"26514":1972,"26515":12194,"26516":1373,"26517":4229,"26518":2754,"26519":4195,"26520":4590,"26521":10795,"26522":14228,"26523":6051,"26524":16751,"26525":13229,"26526":18177,"26527":2815,"26528":13965,"26529":7496,"26530":16542,"26531":9110,"26532":7671,"26533":7450,"26534":6555,"26535":2776,"26536":16135,"26537":3139,"26538":6828,"26539":3314,"26540":13368,"26541":1053,"26542":8344,"26543":12710,"26544":6509,"26545":6530,"26546":9582,"26547":608,"26548":9462,"26549":8299,"26550":7415,"26551":8611,"26552":9,"26553":16972,"26554":15114,"26555":6390,"26556":10640,"26557":2675,"26558":14421,"26559":16753,"26560":5158,"26561":11127,"26562":5810,"26563":1925,"26564":2644,"26565":16002,"26566":7509,"26567":9856,"26568":5667,"26569":17697,"26570":5241,"26571":5992,"26572":16011,"26573":10209,"26574":6894,"26575":6518,"26576":18063,"26577":16751,"26578":4084,"26579":6884,"26580":10161,"26581":2159,"26582":15227,"26583":12827,"26584":13084,"26585":16787,"26586":2185,"26587":4254,"26588":15778,"26589":11847,"26590":15938,"26591":9926,"26592":6938,"26593":4554,"26594":10417,"26595":1732,"26596":18116,"26597":12337,"26598":15518,"26599":10028,"26600":10342,"26601":13633,"26602":9931,"26603":8437,"26604":17385,"26605":10984,"26606":3178,"26607":3299,"26608":2635,"26609":9518,"26610":5423,"26611":7132,"26612":11769,"26613":3052,"26614":4877,"26615":6123,"26616":4214,"26617":2275,"26618":15460,"26619":5961,"26620":7017,"26621":9738,"26622":11217,"26623":18178,"26624":10435,"26625":8317,"26626":7648,"26627":2085,"26628":4568,"26629":1142,"26630":6406,"26631":363,"26632":9388,"26633":1511,"26634":7134,"26635":15698,"26636":5455,"26637":5262,"26638":3602,"26639":14390,"26640":11399,"26641":11581,"26642":3295,"26643":7388,"26644":8622,"26645":13460,"26646":3025,"26647":1382,"26648":17758,"26649":713,"26650":12685,"26651":1691,"26652":1821,"26653":4367,"26654":5890,"26655":18219,"26656":9779,"26657":17878,"26658":13800,"26659":16974,"26660":17222,"26661":1706,"26662":5234,"26663":6092,"26664":11331,"26665":8184,"26666":12226,"26667":1240,"26668":1986,"26669":15036,"26670":12351,"26671":11131,"26672":9937,"26673":753,"26674":14755,"26675":10133,"26676":7291,"26677":9517,"26678":270,"26679":8237,"26680":7228,"26681":11684,"26682":17229,"26683":3701,"26684":17721,"26685":15294,"26686":12004,"26687":11829,"26688":17403,"26689":1288,"26690":14729,"26691":332,"26692":14936,"26693":9122,"26694":158,"26695":8516,"26696":4499,"26697":2832,"26698":8367,"26699":1652,"26700":4334,"26701":1899,"26702":243,"26703":10563,"26704":10290,"26705":742,"26706":16261,"26707":10565,"26708":13639,"26709":1616,"26710":8735,"26711":18332,"26712":9573,"26713":5493,"26714":5671,"26715":7326,"26716":7920,"26717":3031,"26718":10920,"26719":1439,"26720":8092,"26721":1025,"26722":108,"26723":16783,"26724":6969,"26725":15072,"26726":4244,"26727":15707,"26728":17330,"26729":16834,"26730":17910,"26731":8351,"26732":7385,"26733":2712,"26734":11345,"26735":1393,"26736":11199,"26737":6770,"26738":14670,"26739":11798,"26740":1338,"26741":11386,"26742":4802,"26743":11972,"26744":5691,"26745":15879,"26746":4579,"26747":17886,"26748":836,"26749":8056,"26750":8828,"26751":6096,"26752":4491,"26753":1020,"26754":5153,"26755":16329,"26756":8420,"26757":15201,"26758":13933,"26759":16897,"26760":15543,"26761":4279,"26762":14926,"26763":10864,"26764":12840,"26765":14921,"26766":1354,"26767":9756,"26768":1536,"26769":7418,"26770":10666,"26771":9892,"26772":2442,"26773":4815,"26774":4914,"26775":4177,"26776":17420,"26777":17587,"26778":11802,"26779":8272,"26780":17814,"26781":3437,"26782":11999,"26783":12917,"26784":11410,"26785":16211,"26786":2948,"26787":14620,"26788":10331,"26789":3849,"26790":13719,"26791":7285,"26792":7219,"26793":15077,"26794":1366,"26795":3788,"26796":10961,"26797":15880,"26798":3180,"26799":11993,"26800":17309,"26801":16350,"26802":2012,"26803":18038,"26804":2937,"26805":6074,"26806":14173,"26807":13283,"26808":7926,"26809":8288,"26810":13381,"26811":18338,"26812":16503,"26813":2580,"26814":11554,"26815":4273,"26816":3557,"26817":13929,"26818":888,"26819":13604,"26820":4502,"26821":18064,"26822":3637,"26823":7542,"26824":4037,"26825":2859,"26826":5865,"26827":12265,"26828":4816,"26829":11718,"26830":10462,"26831":8272,"26832":1919,"26833":8275,"26834":7587,"26835":12896,"26836":2116,"26837":10163,"26838":5490,"26839":11708,"26840":14733,"26841":14147,"26842":5532,"26843":17325,"26844":5215,"26845":7215,"26846":11154,"26847":1413,"26848":4951,"26849":10085,"26850":11447,"26851":6260,"26852":9960,"26853":1842,"26854":3213,"26855":13453,"26856":4277,"26857":12569,"26858":229,"26859":7877,"26860":1857,"26861":9165,"26862":6461,"26863":13146,"26864":15966,"26865":7250,"26866":8131,"26867":17306,"26868":9507,"26869":74,"26870":5683,"26871":3510,"26872":16159,"26873":17531,"26874":13807,"26875":937,"26876":126,"26877":8821,"26878":12287,"26879":7418,"26880":17723,"26881":8124,"26882":10875,"26883":3705,"26884":5198,"26885":4403,"26886":5269,"26887":14051,"26888":16347,"26889":139,"26890":643,"26891":14619,"26892":4146,"26893":17695,"26894":8620,"26895":3297,"26896":11756,"26897":12226,"26898":3361,"26899":12636,"26900":1597,"26901":11419,"26902":2535,"26903":3837,"26904":9676,"26905":886,"26906":5576,"26907":13512,"26908":12337,"26909":14239,"26910":17108,"26911":6400,"26912":7876,"26913":16191,"26914":69,"26915":13294,"26916":2492,"26917":16597,"26918":7457,"26919":4589,"26920":12109,"26921":10895,"26922":6905,"26923":7305,"26924":16617,"26925":4424,"26926":14403,"26927":15925,"26928":6487,"26929":16737,"26930":15957,"26931":4345,"26932":17529,"26933":14817,"26934":10170,"26935":5494,"26936":14830,"26937":8268,"26938":14907,"26939":8368,"26940":10487,"26941":18322,"26942":55,"26943":12052,"26944":6746,"26945":8912,"26946":10981,"26947":15463,"26948":18179,"26949":17446,"26950":14869,"26951":2058,"26952":540,"26953":5961,"26954":12043,"26955":7088,"26956":13315,"26957":3755,"26958":3444,"26959":9339,"26960":9120,"26961":10679,"26962":18005,"26963":5952,"26964":15256,"26965":2429,"26966":391,"26967":7769,"26968":16158,"26969":16872,"26970":12209,"26971":15941,"26972":3290,"26973":7670,"26974":13355,"26975":14002,"26976":13897,"26977":8919,"26978":15405,"26979":6707,"26980":17374,"26981":16897,"26982":13362,"26983":12486,"26984":15070,"26985":14717,"26986":14901,"26987":18121,"26988":11247,"26989":6872,"26990":7479,"26991":10065,"26992":10622,"26993":3283,"26994":5704,"26995":11782,"26996":13429,"26997":187,"26998":16556,"26999":2674,"27000":11838,"27001":7653,"27002":12433,"27003":11078,"27004":17341,"27005":8691,"27006":18174,"27007":900,"27008":3454,"27009":16675,"27010":8089,"27011":9976,"27012":3732,"27013":10460,"27014":17683,"27015":9499,"27016":13615,"27017":14122,"27018":16008,"27019":14319,"27020":6484,"27021":16031,"27022":5587,"27023":7913,"27024":14375,"27025":15319,"27026":14595,"27027":12804,"27028":2555,"27029":8094,"27030":8850,"27031":512,"27032":12462,"27033":3606,"27034":3061,"27035":18184,"27036":9824,"27037":2418,"27038":8213,"27039":784,"27040":17902,"27041":3008,"27042":1109,"27043":16422,"27044":6327,"27045":12576,"27046":559,"27047":7112,"27048":13255,"27049":18330,"27050":14935,"27051":8093,"27052":1516,"27053":17343,"27054":3134,"27055":11876,"27056":13983,"27057":7537,"27058":12943,"27059":6400,"27060":895,"27061":4338,"27062":11981,"27063":15579,"27064":8775,"27065":5900,"27066":7237,"27067":15717,"27068":6473,"27069":14669,"27070":8760,"27071":4361,"27072":9353,"27073":1129,"27074":17529,"27075":4350,"27076":1571,"27077":12627,"27078":4019,"27079":10011,"27080":3155,"27081":6568,"27082":8489,"27083":8596,"27084":16861,"27085":6506,"27086":874,"27087":1540,"27088":5060,"27089":2637,"27090":17652,"27091":13055,"27092":8609,"27093":2370,"27094":9246,"27095":17549,"27096":9343,"27097":10014,"27098":3644,"27099":8538,"27100":14467,"27101":6608,"27102":17766,"27103":10666,"27104":13399,"27105":5473,"27106":1946,"27107":9500,"27108":5720,"27109":6291,"27110":13002,"27111":16004,"27112":10359,"27113":9753,"27114":575,"27115":9668,"27116":13372,"27117":17158,"27118":12491,"27119":13852,"27120":13825,"27121":8095,"27122":8173,"27123":14388,"27124":16067,"27125":15546,"27126":8219,"27127":2472,"27128":6938,"27129":14484,"27130":10783,"27131":14984,"27132":4749,"27133":5308,"27134":16864,"27135":15073,"27136":2198,"27137":10920,"27138":9964,"27139":14597,"27140":15133,"27141":14495,"27142":568,"27143":15819,"27144":13332,"27145":5964,"27146":1638,"27147":12364,"27148":13274,"27149":12259,"27150":13509,"27151":14060,"27152":9233,"27153":12188,"27154":5476,"27155":7747,"27156":12740,"27157":4779,"27158":6551,"27159":7126,"27160":2810,"27161":16739,"27162":12589,"27163":18104,"27164":16847,"27165":10514,"27166":4033,"27167":16617,"27168":14139,"27169":17837,"27170":4494,"27171":3789,"27172":5160,"27173":10449,"27174":2637,"27175":6890,"27176":12398,"27177":6367,"27178":14953,"27179":6133,"27180":11283,"27181":3991,"27182":17708,"27183":5023,"27184":10571,"27185":4453,"27186":13718,"27187":4722,"27188":16217,"27189":6746,"27190":17127,"27191":3199,"27192":6188,"27193":13582,"27194":14099,"27195":5943,"27196":16858,"27197":1401,"27198":16969,"27199":3699,"27200":5232,"27201":16718,"27202":17032,"27203":1604,"27204":2108,"27205":6051,"27206":6866,"27207":5915,"27208":3056,"27209":8230,"27210":5912,"27211":14679,"27212":11518,"27213":7705,"27214":3791,"27215":10180,"27216":15927,"27217":3822,"27218":11862,"27219":8753,"27220":2148,"27221":17304,"27222":15637,"27223":4874,"27224":14298,"27225":7760,"27226":83,"27227":17597,"27228":16450,"27229":13070,"27230":11966,"27231":15805,"27232":3240,"27233":4921,"27234":4248,"27235":12322,"27236":3641,"27237":16481,"27238":9853,"27239":2267,"27240":7753,"27241":8716,"27242":13601,"27243":8552,"27244":14944,"27245":11522,"27246":17572,"27247":244,"27248":18116,"27249":13829,"27250":14306,"27251":17642,"27252":12884,"27253":9494,"27254":7955,"27255":9098,"27256":14358,"27257":9974,"27258":7449,"27259":3594,"27260":9154,"27261":835,"27262":10657,"27263":15499,"27264":6278,"27265":15397,"27266":14373,"27267":12248,"27268":6633,"27269":8603,"27270":7243,"27271":2533,"27272":8469,"27273":11428,"27274":8529,"27275":8549,"27276":16003,"27277":9931,"27278":15300,"27279":6197,"27280":18100,"27281":10447,"27282":15367,"27283":6353,"27284":4784,"27285":5554,"27286":12718,"27287":2749,"27288":9838,"27289":16901,"27290":1322,"27291":16566,"27292":13502,"27293":2382,"27294":2488,"27295":1142,"27296":4285,"27297":16514,"27298":4280,"27299":8850,"27300":4303,"27301":13884,"27302":7210,"27303":5084,"27304":9911,"27305":15708,"27306":2089,"27307":18039,"27308":2230,"27309":14451,"27310":9660,"27311":11120,"27312":1844,"27313":17269,"27314":7281,"27315":7836,"27316":4114,"27317":13712,"27318":14342,"27319":15168,"27320":9610,"27321":2380,"27322":17828,"27323":5465,"27324":6913,"27325":17497,"27326":9798,"27327":9462,"27328":5474,"27329":9968,"27330":6151,"27331":12331,"27332":4230,"27333":899,"27334":17198,"27335":11293,"27336":7350,"27337":12857,"27338":17803,"27339":6599,"27340":2937,"27341":6576,"27342":14769,"27343":4207,"27344":15443,"27345":5584,"27346":17253,"27347":6894,"27348":13269,"27349":16068,"27350":6021,"27351":16270,"27352":16730,"27353":1767,"27354":10282,"27355":5371,"27356":17158,"27357":11986,"27358":17166,"27359":4310,"27360":17776,"27361":16600,"27362":17541,"27363":17492,"27364":12360,"27365":7662,"27366":10089,"27367":9203,"27368":6783,"27369":9054,"27370":6060,"27371":10851,"27372":1467,"27373":10141,"27374":13056,"27375":17580,"27376":17588,"27377":10205,"27378":8829,"27379":6271,"27380":10794,"27381":359,"27382":15806,"27383":13834,"27384":10237,"27385":1556,"27386":14466,"27387":6644,"27388":1951,"27389":1250,"27390":11328,"27391":2830,"27392":4814,"27393":4128,"27394":13507,"27395":7331,"27396":7647,"27397":8466,"27398":16020,"27399":3536,"27400":18265,"27401":14099,"27402":5772,"27403":17331,"27404":15153,"27405":7585,"27406":7719,"27407":755,"27408":4939,"27409":4576,"27410":16785,"27411":4174,"27412":17964,"27413":6058,"27414":16816,"27415":6847,"27416":9917,"27417":17193,"27418":2320,"27419":1308,"27420":9779,"27421":15809,"27422":17377,"27423":2071,"27424":1417,"27425":877,"27426":8206,"27427":9890,"27428":5734,"27429":3063,"27430":6778,"27431":15490,"27432":18360,"27433":8633,"27434":6918,"27435":1006,"27436":1629,"27437":9812,"27438":3119,"27439":6434,"27440":8678,"27441":17722,"27442":17396,"27443":15985,"27444":10894,"27445":3035,"27446":16308,"27447":16018,"27448":4547,"27449":2049,"27450":15576,"27451":16797,"27452":9152,"27453":12321,"27454":16041,"27455":7685,"27456":7799,"27457":7060,"27458":1613,"27459":46,"27460":14750,"27461":8195,"27462":1053,"27463":11520,"27464":17424,"27465":9837,"27466":11533,"27467":17152,"27468":529,"27469":14557,"27470":9409,"27471":13619,"27472":1668,"27473":11315,"27474":11217,"27475":6378,"27476":11677,"27477":15044,"27478":12301,"27479":11964,"27480":6506,"27481":9078,"27482":219,"27483":9822,"27484":11002,"27485":11586,"27486":1487,"27487":12798,"27488":16560,"27489":3301,"27490":15025,"27491":401,"27492":2071,"27493":14484,"27494":5617,"27495":6882,"27496":17419,"27497":14096,"27498":16903,"27499":3395,"27500":7762,"27501":9842,"27502":13201,"27503":3389,"27504":11188,"27505":16404,"27506":7805,"27507":17751,"27508":5811,"27509":4423,"27510":9460,"27511":17226,"27512":5340,"27513":7468,"27514":2405,"27515":14703,"27516":13040,"27517":2539,"27518":7864,"27519":11998,"27520":5570,"27521":9715,"27522":7447,"27523":2789,"27524":12157,"27525":18227,"27526":13439,"27527":13001,"27528":10907,"27529":5776,"27530":16276,"27531":16854,"27532":3184,"27533":11417,"27534":5068,"27535":18227,"27536":14901,"27537":469,"27538":446,"27539":13063,"27540":4325,"27541":3290,"27542":119,"27543":17464,"27544":6784,"27545":9836,"27546":3883,"27547":14792,"27548":16265,"27549":2600,"27550":12521,"27551":9977,"27552":1874,"27553":18166,"27554":7687,"27555":3058,"27556":5529,"27557":13849,"27558":13230,"27559":7243,"27560":12024,"27561":15735,"27562":14377,"27563":14671,"27564":14740,"27565":5798,"27566":6644,"27567":15915,"27568":11040,"27569":6871,"27570":6058,"27571":12047,"27572":15057,"27573":4055,"27574":14511,"27575":10875,"27576":6939,"27577":8944,"27578":5481,"27579":3976,"27580":17048,"27581":2277,"27582":15179,"27583":1923,"27584":15605,"27585":4968,"27586":11832,"27587":13518,"27588":2933,"27589":2498,"27590":17804,"27591":3111,"27592":13975,"27593":8717,"27594":13869,"27595":9203,"27596":15041,"27597":4256,"27598":13206,"27599":3040,"27600":4821,"27601":16786,"27602":3176,"27603":15084,"27604":15535,"27605":10930,"27606":9112,"27607":1719,"27608":10704,"27609":2897,"27610":7855,"27611":5698,"27612":11607,"27613":10690,"27614":16209,"27615":18261,"27616":9631,"27617":1192,"27618":12482,"27619":16060,"27620":4485,"27621":18245,"27622":6476,"27623":10665,"27624":7604,"27625":7223,"27626":488,"27627":6143,"27628":3516,"27629":2533,"27630":8916,"27631":12467,"27632":9733,"27633":12529,"27634":7096,"27635":9637,"27636":7936,"27637":1998,"27638":17969,"27639":7271,"27640":6807,"27641":3382,"27642":334,"27643":17311,"27644":16967,"27645":6227,"27646":13359,"27647":11441,"27648":14386,"27649":5784,"27650":15671,"27651":10821,"27652":4962,"27653":7553,"27654":8427,"27655":8745,"27656":12913,"27657":11235,"27658":1252,"27659":10042,"27660":13391,"27661":17455,"27662":6305,"27663":1624,"27664":16659,"27665":609,"27666":3681,"27667":9262,"27668":8722,"27669":13991,"27670":14225,"27671":5199,"27672":14465,"27673":3714,"27674":16753,"27675":13666,"27676":10880,"27677":9922,"27678":3808,"27679":9248,"27680":4127,"27681":5682,"27682":16061,"27683":13655,"27684":17993,"27685":7391,"27686":14429,"27687":7283,"27688":5090,"27689":11687,"27690":9480,"27691":10226,"27692":17531,"27693":1237,"27694":18049,"27695":9619,"27696":13370,"27697":13602,"27698":9425,"27699":3000,"27700":15816,"27701":2527,"27702":18101,"27703":2045,"27704":3277,"27705":17236,"27706":11161,"27707":12110,"27708":14990,"27709":345,"27710":2549,"27711":3359,"27712":4753,"27713":14468,"27714":3941,"27715":14796,"27716":5834,"27717":14289,"27718":9538,"27719":16972,"27720":17307,"27721":4108,"27722":6881,"27723":17893,"27724":5552,"27725":5615,"27726":17799,"27727":5188,"27728":5959,"27729":15454,"27730":8756,"27731":16699,"27732":6869,"27733":17672,"27734":9830,"27735":12679,"27736":2340,"27737":11887,"27738":16738,"27739":16571,"27740":7307,"27741":2538,"27742":6162,"27743":3166,"27744":4079,"27745":9901,"27746":3050,"27747":1652,"27748":12220,"27749":1886,"27750":17004,"27751":4189,"27752":2899,"27753":6487,"27754":2526,"27755":11593,"27756":6471,"27757":4140,"27758":2238,"27759":12314,"27760":4679,"27761":2272,"27762":17252,"27763":15869,"27764":8901,"27765":6552,"27766":10643,"27767":14537,"27768":14338,"27769":15663,"27770":14316,"27771":7794,"27772":1757,"27773":13258,"27774":5706,"27775":2296,"27776":11227,"27777":14404,"27778":2353,"27779":9938,"27780":5285,"27781":4313,"27782":1212,"27783":3931,"27784":8820,"27785":2953,"27786":16326,"27787":13289,"27788":6173,"27789":16115,"27790":11893,"27791":18189,"27792":17405,"27793":16851,"27794":805,"27795":135,"27796":6514,"27797":6095,"27798":16684,"27799":3040,"27800":10015,"27801":6416,"27802":7667,"27803":8119,"27804":9083,"27805":16281,"27806":4740,"27807":1411,"27808":5006,"27809":1933,"27810":8452,"27811":403,"27812":1187,"27813":520,"27814":7265,"27815":17376,"27816":7281,"27817":12659,"27818":3850,"27819":17007,"27820":15316,"27821":10908,"27822":1692,"27823":9806,"27824":13415,"27825":297,"27826":385,"27827":12826,"27828":12047,"27829":7548,"27830":3744,"27831":12142,"27832":15409,"27833":6368,"27834":18152,"27835":9436,"27836":2535,"27837":16387,"27838":13221,"27839":9677,"27840":11731,"27841":10396,"27842":16609,"27843":12767,"27844":10533,"27845":17628,"27846":2443,"27847":12426,"27848":10506,"27849":12793,"27850":11750,"27851":11025,"27852":877,"27853":929,"27854":16673,"27855":6032,"27856":12663,"27857":14547,"27858":11200,"27859":16268,"27860":16243,"27861":2298,"27862":8116,"27863":2369,"27864":1881,"27865":14528,"27866":14143,"27867":13233,"27868":12999,"27869":5011,"27870":4452,"27871":9282,"27872":5798,"27873":14863,"27874":13,"27875":15728,"27876":4142,"27877":264,"27878":17229,"27879":3417,"27880":9156,"27881":17497,"27882":16852,"27883":9981,"27884":14514,"27885":18122,"27886":18027,"27887":12470,"27888":12286,"27889":2536,"27890":9216,"27891":5773,"27892":8259,"27893":6808,"27894":7688,"27895":16604,"27896":17263,"27897":6641,"27898":8220,"27899":8704,"27900":14791,"27901":4654,"27902":8752,"27903":16906,"27904":2896,"27905":4938,"27906":5287,"27907":18120,"27908":7717,"27909":5203,"27910":14055,"27911":2804,"27912":2929,"27913":5955,"27914":414,"27915":4601,"27916":15630,"27917":11600,"27918":15636,"27919":9633,"27920":1030,"27921":12740,"27922":8513,"27923":11231,"27924":10328,"27925":16926,"27926":5297,"27927":4343,"27928":8512,"27929":1263,"27930":2071,"27931":8187,"27932":9454,"27933":9837,"27934":1341,"27935":14811,"27936":10083,"27937":3253,"27938":5167,"27939":544,"27940":11805,"27941":9827,"27942":11045,"27943":5419,"27944":1389,"27945":17406,"27946":7760,"27947":7628,"27948":792,"27949":11523,"27950":1157,"27951":8632,"27952":17948,"27953":16865,"27954":8084,"27955":7524,"27956":17083,"27957":7842,"27958":10468,"27959":11489,"27960":7183,"27961":15883,"27962":17216,"27963":7533,"27964":8802,"27965":11560,"27966":5166,"27967":12951,"27968":4869,"27969":14748,"27970":5520,"27971":3632,"27972":3601,"27973":11610,"27974":10337,"27975":12608,"27976":11716,"27977":1105,"27978":272,"27979":7835,"27980":374,"27981":9338,"27982":3775,"27983":6246,"27984":18313,"27985":4287,"27986":18246,"27987":5320,"27988":5204,"27989":15608,"27990":18240,"27991":61,"27992":15751,"27993":14692,"27994":536,"27995":11360,"27996":6776,"27997":16553,"27998":3178,"27999":17105,"28000":9505,"28001":3561,"28002":3001,"28003":12266,"28004":4944,"28005":12596,"28006":11735,"28007":4806,"28008":3407,"28009":2130,"28010":12909,"28011":6197,"28012":4439,"28013":7580,"28014":12561,"28015":17524,"28016":8203,"28017":1925,"28018":5082,"28019":9863,"28020":5301,"28021":1509,"28022":14390,"28023":834,"28024":1009,"28025":10540,"28026":4,"28027":7221,"28028":3104,"28029":7802,"28030":13893,"28031":978,"28032":16164,"28033":97,"28034":14782,"28035":15216,"28036":17508,"28037":11016,"28038":7665,"28039":17956,"28040":422,"28041":8281,"28042":12779,"28043":12406,"28044":17630,"28045":14778,"28046":17044,"28047":5544,"28048":12265,"28049":15833,"28050":14147,"28051":18273,"28052":2391,"28053":10961,"28054":13617,"28055":3401,"28056":6443,"28057":1997,"28058":4840,"28059":10739,"28060":3175,"28061":7184,"28062":6502,"28063":1907,"28064":13084,"28065":5857,"28066":5102,"28067":6993,"28068":14222,"28069":13865,"28070":121,"28071":16621,"28072":8078,"28073":16921,"28074":3502,"28075":11580,"28076":5039,"28077":16011,"28078":2886,"28079":15451,"28080":6651,"28081":3734,"28082":6457,"28083":5874,"28084":9496,"28085":16886,"28086":12955,"28087":10039,"28088":6103,"28089":17108,"28090":11416,"28091":11613,"28092":6024,"28093":6666,"28094":1384,"28095":14185,"28096":2742,"28097":7391,"28098":12077,"28099":8403,"28100":9453,"28101":1685,"28102":12238,"28103":11954,"28104":14241,"28105":18062,"28106":3144,"28107":14510,"28108":18091,"28109":3674,"28110":10103,"28111":4532,"28112":4671,"28113":14558,"28114":9025,"28115":12934,"28116":9039,"28117":4937,"28118":9965,"28119":15424,"28120":17017,"28121":6055,"28122":14831,"28123":8978,"28124":8728,"28125":17009,"28126":3583,"28127":15156,"28128":13247,"28129":4294,"28130":7416,"28131":6709,"28132":10432,"28133":4293,"28134":3152,"28135":11728,"28136":3200,"28137":395,"28138":7438,"28139":1531,"28140":8075,"28141":7500,"28142":11418,"28143":13343,"28144":16094,"28145":11387,"28146":4243,"28147":2205,"28148":17300,"28149":7870,"28150":11171,"28151":12830,"28152":12870,"28153":8930,"28154":12287,"28155":13905,"28156":9079,"28157":13669,"28158":17161,"28159":14349,"28160":13855,"28161":14781,"28162":10991,"28163":502,"28164":5867,"28165":8419,"28166":12476,"28167":9074,"28168":13022,"28169":17513,"28170":7048,"28171":13737,"28172":11893,"28173":17564,"28174":226,"28175":5643,"28176":4566,"28177":15257,"28178":3285,"28179":18196,"28180":4818,"28181":5760,"28182":12832,"28183":10471,"28184":272,"28185":3645,"28186":7006,"28187":13476,"28188":5905,"28189":16094,"28190":4059,"28191":16476,"28192":1236,"28193":1734,"28194":17899,"28195":14770,"28196":11315,"28197":8564,"28198":15973,"28199":15512,"28200":1199,"28201":13588,"28202":17935,"28203":16227,"28204":12688,"28205":6280,"28206":596,"28207":13279,"28208":7092,"28209":8126,"28210":11604,"28211":6140,"28212":7678,"28213":12243,"28214":3287,"28215":3595,"28216":11619,"28217":15089,"28218":12368,"28219":13601,"28220":4217,"28221":16815,"28222":10123,"28223":17618,"28224":13070,"28225":5633,"28226":12949,"28227":11761,"28228":7509,"28229":14683,"28230":9791,"28231":7067,"28232":6365,"28233":1940,"28234":2670,"28235":18226,"28236":3643,"28237":14948,"28238":580,"28239":14337,"28240":11321,"28241":6093,"28242":15056,"28243":12797,"28244":17399,"28245":7608,"28246":14605,"28247":6766,"28248":10222,"28249":8878,"28250":2539,"28251":15341,"28252":12355,"28253":3924,"28254":7529,"28255":6924,"28256":8516,"28257":13110,"28258":4977,"28259":5449,"28260":18283,"28261":13063,"28262":3197,"28263":9918,"28264":2534,"28265":4790,"28266":5277,"28267":9639,"28268":4576,"28269":472,"28270":6551,"28271":15284,"28272":9289,"28273":7163,"28274":5707,"28275":13082,"28276":11658,"28277":6659,"28278":13183,"28279":13708,"28280":3705,"28281":7231,"28282":5549,"28283":17588,"28284":8160,"28285":2679,"28286":5066,"28287":8112,"28288":3034,"28289":1898,"28290":8525,"28291":13167,"28292":18052,"28293":487,"28294":13151,"28295":730,"28296":6752,"28297":14466,"28298":14227,"28299":13422,"28300":11319,"28301":770,"28302":10178,"28303":3728,"28304":16918,"28305":3194,"28306":16268,"28307":434,"28308":16360,"28309":12542,"28310":17376,"28311":4938,"28312":14873,"28313":10315,"28314":17408,"28315":10951,"28316":2696,"28317":4097,"28318":13640,"28319":14900,"28320":13172,"28321":2816,"28322":16357,"28323":12742,"28324":6076,"28325":1722,"28326":1384,"28327":15812,"28328":10906,"28329":7437,"28330":6480,"28331":8663,"28332":12336,"28333":12065,"28334":18193,"28335":16617,"28336":11563,"28337":8205,"28338":11466,"28339":5530,"28340":1404,"28341":8436,"28342":6623,"28343":9652,"28344":14149,"28345":13645,"28346":16754,"28347":8803,"28348":9471,"28349":8349,"28350":18254,"28351":5662,"28352":6717,"28353":17815,"28354":16035,"28355":1481,"28356":5905,"28357":13045,"28358":865,"28359":11803,"28360":11705,"28361":16031,"28362":11805,"28363":7511,"28364":12221,"28365":2874,"28366":13862,"28367":3477,"28368":13074,"28369":8079,"28370":14145,"28371":5796,"28372":7841,"28373":10829,"28374":326,"28375":14774,"28376":16812,"28377":1897,"28378":10223,"28379":8693,"28380":2202,"28381":4098,"28382":18114,"28383":17555,"28384":7113,"28385":17633,"28386":9518,"28387":13128,"28388":15837,"28389":2735,"28390":9942,"28391":12118,"28392":1472,"28393":10827,"28394":11078,"28395":12967,"28396":6058,"28397":14389,"28398":3476,"28399":13496,"28400":14053,"28401":11434,"28402":12708,"28403":4370,"28404":12343,"28405":14998,"28406":10906,"28407":9499,"28408":8070,"28409":16021,"28410":11045,"28411":5124,"28412":6237,"28413":4411,"28414":16260,"28415":12225,"28416":10297,"28417":3925,"28418":4081,"28419":13262,"28420":11389,"28421":1733,"28422":1803,"28423":9559,"28424":9735,"28425":13128,"28426":15764,"28427":2563,"28428":15403,"28429":9103,"28430":13761,"28431":6996,"28432":16819,"28433":18140,"28434":3260,"28435":4660,"28436":2109,"28437":9696,"28438":17409,"28439":15662,"28440":7477,"28441":15628,"28442":1388,"28443":8290,"28444":12936,"28445":9961,"28446":5746,"28447":13466,"28448":18272,"28449":12394,"28450":2169,"28451":6049,"28452":3308,"28453":13233,"28454":16587,"28455":7919,"28456":4921,"28457":16111,"28458":12769,"28459":6555,"28460":2338,"28461":10966,"28462":5159,"28463":892,"28464":4206,"28465":18158,"28466":18076,"28467":7930,"28468":17918,"28469":13484,"28470":10247,"28471":15437,"28472":10620,"28473":2794,"28474":7203,"28475":7561,"28476":14119,"28477":7063,"28478":1468,"28479":16537,"28480":12272,"28481":11064,"28482":894,"28483":11568,"28484":9001,"28485":10334,"28486":10263,"28487":534,"28488":16185,"28489":6326,"28490":18218,"28491":636,"28492":1119,"28493":5496,"28494":17058,"28495":10784,"28496":4267,"28497":3605,"28498":7678,"28499":15303,"28500":4358,"28501":11049,"28502":15446,"28503":7869,"28504":9094,"28505":8614,"28506":3314,"28507":17592,"28508":5033,"28509":3591,"28510":15219,"28511":11998,"28512":17395,"28513":1419,"28514":7399,"28515":9663,"28516":1859,"28517":3535,"28518":1957,"28519":18258,"28520":17158,"28521":11334,"28522":14225,"28523":4017,"28524":8751,"28525":6145,"28526":11963,"28527":16979,"28528":16585,"28529":1710,"28530":1028,"28531":11945,"28532":13583,"28533":15895,"28534":12064,"28535":8946,"28536":11891,"28537":3880,"28538":12613,"28539":13450,"28540":13031,"28541":11831,"28542":17182,"28543":4410,"28544":14668,"28545":10924,"28546":5669,"28547":14431,"28548":13969,"28549":8344,"28550":2906,"28551":15364,"28552":3272,"28553":11247,"28554":11573,"28555":17330,"28556":6630,"28557":6339,"28558":8727,"28559":15131,"28560":11961,"28561":17092,"28562":5738,"28563":4662,"28564":11198,"28565":1390,"28566":84,"28567":14506,"28568":3524,"28569":15415,"28570":15865,"28571":15428,"28572":10078,"28573":7094,"28574":8318,"28575":14767,"28576":14821,"28577":5443,"28578":8204,"28579":12551,"28580":921,"28581":15951,"28582":13206,"28583":17138,"28584":16091,"28585":12716,"28586":17119,"28587":10018,"28588":2643,"28589":17318,"28590":8539,"28591":920,"28592":1180,"28593":11362,"28594":4835,"28595":7435,"28596":11147,"28597":12040,"28598":10333,"28599":466,"28600":15731,"28601":3354,"28602":13722,"28603":13639,"28604":1476,"28605":9218,"28606":10954,"28607":505,"28608":18056,"28609":8143,"28610":5211,"28611":13123,"28612":3360,"28613":6115,"28614":11784,"28615":16739,"28616":1523,"28617":8072,"28618":9907,"28619":12950,"28620":5112,"28621":16885,"28622":5708,"28623":12420,"28624":4429,"28625":374,"28626":8432,"28627":17074,"28628":2507,"28629":15841,"28630":12054,"28631":17977,"28632":17313,"28633":14976,"28634":15829,"28635":14768,"28636":5111,"28637":3672,"28638":14542,"28639":15375,"28640":7662,"28641":12378,"28642":10717,"28643":8760,"28644":2634,"28645":14962,"28646":16967,"28647":8370,"28648":8248,"28649":5093,"28650":1405,"28651":15343,"28652":660,"28653":14847,"28654":18337,"28655":9046,"28656":15144,"28657":1914,"28658":337,"28659":7061,"28660":817,"28661":10329,"28662":17093,"28663":13110,"28664":3815,"28665":11701,"28666":10862,"28667":2605,"28668":15282,"28669":7563,"28670":11502,"28671":9754,"28672":655,"28673":8270,"28674":5431,"28675":18001,"28676":8658,"28677":17587,"28678":4237,"28679":19,"28680":6981,"28681":14534,"28682":7722,"28683":16038,"28684":3719,"28685":362,"28686":10452,"28687":17762,"28688":6885,"28689":6790,"28690":16748,"28691":12932,"28692":4625,"28693":957,"28694":18332,"28695":2826,"28696":13994,"28697":16857,"28698":16245,"28699":13415,"28700":15260,"28701":15394,"28702":2349,"28703":13396,"28704":16471,"28705":6962,"28706":630,"28707":6234,"28708":11319,"28709":1297,"28710":6216,"28711":11235,"28712":15910,"28713":16239,"28714":16992,"28715":11461,"28716":10824,"28717":3912,"28718":182,"28719":15884,"28720":2620,"28721":9438,"28722":12285,"28723":11106,"28724":8739,"28725":11433,"28726":16946,"28727":11178,"28728":11772,"28729":12439,"28730":7067,"28731":13327,"28732":3262,"28733":9658,"28734":543,"28735":2814,"28736":5378,"28737":3617,"28738":13592,"28739":9461,"28740":16159,"28741":9454,"28742":6021,"28743":16515,"28744":10971,"28745":17692,"28746":11612,"28747":10286,"28748":6707,"28749":5241,"28750":5832,"28751":15798,"28752":6501,"28753":7621,"28754":6336,"28755":17706,"28756":16392,"28757":7290,"28758":10210,"28759":1278,"28760":3944,"28761":12353,"28762":9615,"28763":10894,"28764":13260,"28765":368,"28766":6866,"28767":18236,"28768":4911,"28769":605,"28770":13847,"28771":17659,"28772":11848,"28773":17151,"28774":12739,"28775":11853,"28776":7865,"28777":3002,"28778":1551,"28779":14348,"28780":6214,"28781":15992,"28782":1676,"28783":8289,"28784":11278,"28785":12534,"28786":12537,"28787":12904,"28788":18262,"28789":17903,"28790":14498,"28791":17831,"28792":7311,"28793":9314,"28794":8157,"28795":5537,"28796":16676,"28797":1810,"28798":11917,"28799":11975,"28800":509,"28801":18143,"28802":8414,"28803":9812,"28804":2162,"28805":6224,"28806":4103,"28807":10178,"28808":15501,"28809":15878,"28810":4169,"28811":11816,"28812":16690,"28813":4806,"28814":17988,"28815":6318,"28816":11420,"28817":17244,"28818":10522,"28819":17165,"28820":7366,"28821":12938,"28822":16720,"28823":12048,"28824":1491,"28825":9018,"28826":16246,"28827":1119,"28828":15912,"28829":10382,"28830":5335,"28831":16846,"28832":15134,"28833":1407,"28834":3014,"28835":4193,"28836":12334,"28837":9063,"28838":941,"28839":5338,"28840":5749,"28841":978,"28842":3757,"28843":5411,"28844":8018,"28845":8637,"28846":15218,"28847":14026,"28848":13675,"28849":15227,"28850":9621,"28851":5740,"28852":517,"28853":11960,"28854":17967,"28855":6544,"28856":13212,"28857":7195,"28858":8063,"28859":10415,"28860":180,"28861":4321,"28862":7776,"28863":7670,"28864":10325,"28865":4134,"28866":15267,"28867":14504,"28868":13909,"28869":7701,"28870":3534,"28871":7650,"28872":8180,"28873":16421,"28874":17208,"28875":7295,"28876":14991,"28877":16551,"28878":3431,"28879":8534,"28880":1349,"28881":6501,"28882":5314,"28883":1687,"28884":3915,"28885":16112,"28886":3026,"28887":13001,"28888":281,"28889":18225,"28890":12708,"28891":17851,"28892":18014,"28893":9427,"28894":18035,"28895":10502,"28896":5532,"28897":8302,"28898":9143,"28899":12912,"28900":11485,"28901":1596,"28902":8966,"28903":9734,"28904":2789,"28905":13719,"28906":10308,"28907":5986,"28908":9166,"28909":5679,"28910":5580,"28911":1539,"28912":4622,"28913":4241,"28914":9307,"28915":2603,"28916":6207,"28917":8022,"28918":9851,"28919":6037,"28920":11232,"28921":4014,"28922":4456,"28923":4669,"28924":6548,"28925":14954,"28926":7884,"28927":7228,"28928":7734,"28929":13451,"28930":14285,"28931":9412,"28932":15841,"28933":5222,"28934":4996,"28935":15062,"28936":10168,"28937":8464,"28938":3689,"28939":430,"28940":12220,"28941":2711,"28942":14264,"28943":4545,"28944":5005,"28945":9518,"28946":9246,"28947":11840,"28948":576,"28949":4218,"28950":12913,"28951":11755,"28952":4432,"28953":9099,"28954":17906,"28955":14999,"28956":13253,"28957":13200,"28958":2942,"28959":10514,"28960":12749,"28961":3341,"28962":2611,"28963":13139,"28964":3524,"28965":13757,"28966":14716,"28967":3558,"28968":2059,"28969":4093,"28970":16193,"28971":12211,"28972":1676,"28973":11773,"28974":872,"28975":1939,"28976":6869,"28977":8629,"28978":18020,"28979":8658,"28980":8010,"28981":2962,"28982":2529,"28983":16360,"28984":8103,"28985":15180,"28986":16228,"28987":10610,"28988":9903,"28989":7594,"28990":1609,"28991":9933,"28992":741,"28993":6824,"28994":16717,"28995":1559,"28996":9028,"28997":14621,"28998":13046,"28999":9604,"29000":6602,"29001":13273,"29002":10574,"29003":16411,"29004":8194,"29005":11277,"29006":11588,"29007":14561,"29008":12071,"29009":11862,"29010":7974,"29011":3582,"29012":17821,"29013":9490,"29014":3616,"29015":5602,"29016":15962,"29017":8825,"29018":15824,"29019":7876,"29020":2182,"29021":11387,"29022":16689,"29023":9386,"29024":15006,"29025":9556,"29026":3677,"29027":3526,"29028":2853,"29029":11670,"29030":13110,"29031":9881,"29032":9380,"29033":5012,"29034":8668,"29035":1467,"29036":10323,"29037":9171,"29038":10534,"29039":2752,"29040":11741,"29041":1928,"29042":10225,"29043":8911,"29044":12264,"29045":11672,"29046":4272,"29047":9863,"29048":8782,"29049":11558,"29050":10346,"29051":372,"29052":3218,"29053":2571,"29054":17666,"29055":10618,"29056":3382,"29057":11170,"29058":8786,"29059":13795,"29060":2915,"29061":3690,"29062":4577,"29063":969,"29064":1288,"29065":13176,"29066":15011,"29067":14334,"29068":8756,"29069":14035,"29070":4107,"29071":5502,"29072":376,"29073":14389,"29074":1649,"29075":4947,"29076":2929,"29077":2268,"29078":13375,"29079":13557,"29080":4816,"29081":2413,"29082":5045,"29083":3348,"29084":947,"29085":6225,"29086":15793,"29087":11104,"29088":7104,"29089":10447,"29090":6315,"29091":17950,"29092":7943,"29093":13793,"29094":9049,"29095":12599,"29096":690,"29097":8197,"29098":1483,"29099":550,"29100":102,"29101":15566,"29102":15422,"29103":2136,"29104":8270,"29105":5320,"29106":1372,"29107":591,"29108":6643,"29109":5479,"29110":7790,"29111":7714,"29112":5271,"29113":728,"29114":10756,"29115":7885,"29116":16427,"29117":10827,"29118":1227,"29119":12665,"29120":15461,"29121":16885,"29122":9115,"29123":7368,"29124":14115,"29125":4226,"29126":18183,"29127":5030,"29128":14420,"29129":8785,"29130":17575,"29131":806,"29132":9034,"29133":3272,"29134":4734,"29135":10489,"29136":12374,"29137":11249,"29138":5122,"29139":12537,"29140":15124,"29141":22,"29142":8640,"29143":15037,"29144":12087,"29145":18091,"29146":17910,"29147":1187,"29148":4830,"29149":17399,"29150":2454,"29151":18169,"29152":16155,"29153":15142,"29154":16634,"29155":16229,"29156":579,"29157":17798,"29158":1150,"29159":18064,"29160":10400,"29161":11696,"29162":6394,"29163":11427,"29164":12146,"29165":1533,"29166":5262,"29167":5451,"29168":15188,"29169":12459,"29170":17702,"29171":9528,"29172":1530,"29173":1192,"29174":450,"29175":17406,"29176":1048,"29177":11465,"29178":5566,"29179":16603,"29180":10246,"29181":5776,"29182":14706,"29183":12484,"29184":9059,"29185":5897,"29186":4851,"29187":3728,"29188":1055,"29189":10509,"29190":2234,"29191":1024,"29192":4066,"29193":13822,"29194":15192,"29195":16025,"29196":9377,"29197":8533,"29198":4542,"29199":11206,"29200":3976,"29201":1517,"29202":2042,"29203":17027,"29204":17976,"29205":4620,"29206":4230,"29207":13051,"29208":16853,"29209":1953,"29210":12203,"29211":16562,"29212":16791,"29213":11618,"29214":11066,"29215":15636,"29216":7607,"29217":1940,"29218":3381,"29219":5416,"29220":11334,"29221":14051,"29222":2582,"29223":10608,"29224":6618,"29225":10008,"29226":3862,"29227":1327,"29228":17596,"29229":8503,"29230":16163,"29231":17754,"29232":7033,"29233":1038,"29234":4515,"29235":18305,"29236":14708,"29237":8350,"29238":7738,"29239":775,"29240":17427,"29241":12841,"29242":14026,"29243":4140,"29244":1612,"29245":5634,"29246":18105,"29247":11241,"29248":7964,"29249":9158,"29250":7952,"29251":10371,"29252":11622,"29253":8192,"29254":8236,"29255":4760,"29256":14398,"29257":18207,"29258":9142,"29259":17415,"29260":5387,"29261":4703,"29262":1469,"29263":2958,"29264":11928,"29265":13107,"29266":15221,"29267":17122,"29268":17622,"29269":12917,"29270":2256,"29271":13734,"29272":9598,"29273":10974,"29274":14958,"29275":10969,"29276":13265,"29277":10412,"29278":13866,"29279":13470,"29280":17641,"29281":12197,"29282":1842,"29283":17593,"29284":16448,"29285":569,"29286":15053,"29287":868,"29288":18204,"29289":10921,"29290":5240,"29291":805,"29292":18281,"29293":11336,"29294":3229,"29295":12275,"29296":9366,"29297":6201,"29298":10386,"29299":12594,"29300":4133,"29301":664,"29302":14461,"29303":17936,"29304":5406,"29305":10216,"29306":10317,"29307":7236,"29308":2932,"29309":5998,"29310":1223,"29311":4153,"29312":5585,"29313":14119,"29314":10691,"29315":3315,"29316":1676,"29317":4029,"29318":6973,"29319":15007,"29320":18216,"29321":10571,"29322":2349,"29323":11254,"29324":15656,"29325":17362,"29326":10264,"29327":10380,"29328":5718,"29329":2099,"29330":2523,"29331":4018,"29332":9728,"29333":5922,"29334":11334,"29335":3962,"29336":82,"29337":15013,"29338":17766,"29339":8481,"29340":15397,"29341":15299,"29342":10945,"29343":7633,"29344":8401,"29345":3009,"29346":14159,"29347":18338,"29348":3233,"29349":876,"29350":11813,"29351":1166,"29352":1247,"29353":9328,"29354":13321,"29355":18254,"29356":4677,"29357":11715,"29358":9952,"29359":14479,"29360":18259,"29361":719,"29362":8030,"29363":10354,"29364":9345,"29365":3577,"29366":11144,"29367":14968,"29368":2573,"29369":4238,"29370":14149,"29371":639,"29372":4346,"29373":755,"29374":2829,"29375":1291,"29376":12621,"29377":10016,"29378":14079,"29379":16756,"29380":16888,"29381":12395,"29382":2899,"29383":12599,"29384":14369,"29385":1923,"29386":14445,"29387":3577,"29388":2113,"29389":17451,"29390":17178,"29391":13297,"29392":2439,"29393":15436,"29394":10780,"29395":14775,"29396":16975,"29397":10723,"29398":7496,"29399":8753,"29400":1075,"29401":17929,"29402":16079,"29403":16019,"29404":11904,"29405":14998,"29406":5992,"29407":13754,"29408":4182,"29409":10307,"29410":14905,"29411":14695,"29412":11402,"29413":4037,"29414":11567,"29415":15589,"29416":5301,"29417":8230,"29418":10318,"29419":9190,"29420":6681,"29421":6874,"29422":2029,"29423":14556,"29424":2831,"29425":11816,"29426":4530,"29427":13498,"29428":12681,"29429":7060,"29430":6581,"29431":11990,"29432":4075,"29433":14037,"29434":15664,"29435":15672,"29436":2200,"29437":11688,"29438":18030,"29439":6665,"29440":5831,"29441":1136,"29442":9256,"29443":16434,"29444":3162,"29445":15990,"29446":3504,"29447":4316,"29448":4344,"29449":9910,"29450":11582,"29451":8234,"29452":16508,"29453":16601,"29454":11617,"29455":4215,"29456":5033,"29457":18294,"29458":12591,"29459":5900,"29460":17145,"29461":11174,"29462":5366,"29463":16740,"29464":14607,"29465":2194,"29466":6342,"29467":11117,"29468":16959,"29469":5221,"29470":9223,"29471":15614,"29472":9467,"29473":13755,"29474":4676,"29475":8977,"29476":7562,"29477":15610,"29478":11854,"29479":5295,"29480":18068,"29481":7501,"29482":18053,"29483":6954,"29484":13276,"29485":4690,"29486":15694,"29487":14473,"29488":5030,"29489":9090,"29490":12812,"29491":10138,"29492":8564,"29493":18042,"29494":6973,"29495":2204,"29496":63,"29497":5212,"29498":16224,"29499":9541,"29500":13453,"29501":5067,"29502":9703,"29503":13766,"29504":12830,"29505":16487,"29506":11187,"29507":15596,"29508":3037,"29509":6418,"29510":1724,"29511":1179,"29512":2690,"29513":11098,"29514":2854,"29515":12569,"29516":1622,"29517":15104,"29518":5507,"29519":1422,"29520":13786,"29521":147,"29522":16025,"29523":3130,"29524":15072,"29525":13421,"29526":11572,"29527":15321,"29528":1526,"29529":4413,"29530":12675,"29531":423,"29532":11555,"29533":4187,"29534":11354,"29535":14942,"29536":12789,"29537":4104,"29538":14280,"29539":12401,"29540":16695,"29541":13307,"29542":2042,"29543":1674,"29544":11213,"29545":6094,"29546":3498,"29547":9787,"29548":16664,"29549":11651,"29550":2192,"29551":3662,"29552":15604,"29553":11854,"29554":17423,"29555":17475,"29556":14032,"29557":11018,"29558":2325,"29559":15609,"29560":11065,"29561":3079,"29562":10950,"29563":16078,"29564":17366,"29565":1457,"29566":3977,"29567":5009,"29568":17712,"29569":7810,"29570":10920,"29571":3585,"29572":738,"29573":15072,"29574":15254,"29575":9388,"29576":12294,"29577":10156,"29578":14786,"29579":11320,"29580":16616,"29581":3186,"29582":12410,"29583":15658,"29584":15705,"29585":566,"29586":10167,"29587":338,"29588":16478,"29589":16443,"29590":4291,"29591":6481,"29592":1779,"29593":2549,"29594":2492,"29595":5212,"29596":4546,"29597":7501,"29598":9449,"29599":1761,"29600":2312,"29601":9947,"29602":14208,"29603":13289,"29604":6079,"29605":5162,"29606":6178,"29607":12040,"29608":9951,"29609":17986,"29610":17845,"29611":14655,"29612":5606,"29613":2978,"29614":15523,"29615":10784,"29616":10261,"29617":15112,"29618":5248,"29619":7399,"29620":4293,"29621":18177,"29622":2066,"29623":13292,"29624":6502,"29625":12729,"29626":1775,"29627":2450,"29628":15308,"29629":513,"29630":10986,"29631":7610,"29632":17311,"29633":12559,"29634":2139,"29635":10874,"29636":12673,"29637":17627,"29638":5717,"29639":6437,"29640":615,"29641":2927,"29642":688,"29643":11680,"29644":6652,"29645":11341,"29646":6143,"29647":13339,"29648":5756,"29649":173,"29650":12270,"29651":6355,"29652":1827,"29653":4069,"29654":5141,"29655":8095,"29656":4424,"29657":10912,"29658":678,"29659":16391,"29660":214,"29661":12020,"29662":3151,"29663":9318,"29664":16714,"29665":4665,"29666":5689,"29667":17784,"29668":6780,"29669":17387,"29670":15663,"29671":12070,"29672":3271,"29673":12364,"29674":757,"29675":14384,"29676":15783,"29677":1677,"29678":4744,"29679":3538,"29680":6508,"29681":13079,"29682":13283,"29683":11617,"29684":14767,"29685":13684,"29686":8134,"29687":673,"29688":16788,"29689":9398,"29690":18049,"29691":9512,"29692":12337,"29693":3345,"29694":7136,"29695":4442,"29696":71,"29697":13809,"29698":17524,"29699":7374,"29700":3544,"29701":14336,"29702":17028,"29703":6430,"29704":2671,"29705":17857,"29706":7335,"29707":9695,"29708":5196,"29709":17124,"29710":13867,"29711":8050,"29712":7202,"29713":3883,"29714":15157,"29715":6168,"29716":1227,"29717":11246,"29718":6104,"29719":12796,"29720":12626,"29721":13390,"29722":5364,"29723":7773,"29724":8525,"29725":16594,"29726":773,"29727":4148,"29728":11593,"29729":6967,"29730":13635,"29731":9861,"29732":1302,"29733":9058,"29734":1206,"29735":16878,"29736":14765,"29737":1328,"29738":11929,"29739":10441,"29740":7545,"29741":4868,"29742":41,"29743":14011,"29744":13642,"29745":5870,"29746":16321,"29747":7627,"29748":12415,"29749":11178,"29750":18191,"29751":15893,"29752":7617,"29753":12270,"29754":14829,"29755":7854,"29756":706,"29757":11007,"29758":11049,"29759":11112,"29760":8884,"29761":10396,"29762":7760,"29763":9706,"29764":17789,"29765":6336,"29766":4209,"29767":3913,"29768":14744,"29769":15942,"29770":2839,"29771":17987,"29772":8200,"29773":8298,"29774":442,"29775":17399,"29776":13353,"29777":16070,"29778":2671,"29779":14376,"29780":9642,"29781":12074,"29782":5248,"29783":8528,"29784":13348,"29785":11332,"29786":16794,"29787":11410,"29788":11853,"29789":13612,"29790":10316,"29791":2579,"29792":8893,"29793":11142,"29794":15631,"29795":15798,"29796":17542,"29797":14781,"29798":3950,"29799":9331,"29800":6422,"29801":16776,"29802":18231,"29803":9697,"29804":16218,"29805":5848,"29806":8368,"29807":10418,"29808":10694,"29809":14182,"29810":9449,"29811":6323,"29812":8452,"29813":9609,"29814":3329,"29815":7645,"29816":1984,"29817":7675,"29818":3579,"29819":30,"29820":9428,"29821":8437,"29822":16507,"29823":13692,"29824":14349,"29825":6065,"29826":11047,"29827":9175,"29828":15385,"29829":3479,"29830":12792,"29831":9957,"29832":17048,"29833":407,"29834":7504,"29835":2871,"29836":3399,"29837":13899,"29838":13744,"29839":6934,"29840":1234,"29841":14621,"29842":10799,"29843":14236,"29844":4476,"29845":12100,"29846":10317,"29847":4696,"29848":8268,"29849":14157,"29850":15085,"29851":12142,"29852":6635,"29853":8117,"29854":6310,"29855":9484,"29856":6247,"29857":12983,"29858":17443,"29859":3562,"29860":17035,"29861":4300,"29862":9983,"29863":14556,"29864":774,"29865":8428,"29866":7649,"29867":2770,"29868":5892,"29869":7900,"29870":103,"29871":2442,"29872":16030,"29873":6702,"29874":10982,"29875":15965,"29876":17363,"29877":10895,"29878":9822,"29879":4990,"29880":2984,"29881":7597,"29882":1633,"29883":11514,"29884":16618,"29885":17382,"29886":16722,"29887":14518,"29888":13673,"29889":9423,"29890":12428,"29891":16243,"29892":8708,"29893":13784,"29894":4150,"29895":10744,"29896":5282,"29897":2255,"29898":13190,"29899":12598,"29900":6991,"29901":5891,"29902":5548,"29903":8875,"29904":17033,"29905":6880,"29906":349,"29907":11454,"29908":11190,"29909":11640,"29910":13454,"29911":15590,"29912":15951,"29913":10495,"29914":15383,"29915":12092,"29916":18342,"29917":8793,"29918":1696,"29919":11662,"29920":677,"29921":13179,"29922":6333,"29923":11066,"29924":10075,"29925":11677,"29926":7139,"29927":12822,"29928":6515,"29929":2326,"29930":3053,"29931":13701,"29932":7256,"29933":18285,"29934":6730,"29935":8841,"29936":9379,"29937":5215,"29938":13687,"29939":9376,"29940":10571,"29941":10212,"29942":3087,"29943":3632,"29944":8938,"29945":1188,"29946":5281,"29947":7693,"29948":14287,"29949":7773,"29950":12598,"29951":5025,"29952":4656,"29953":17828,"29954":6106,"29955":16442,"29956":12864,"29957":12270,"29958":15515,"29959":11891,"29960":2659,"29961":10258,"29962":16800,"29963":14175,"29964":10601,"29965":2654,"29966":13091,"29967":3680,"29968":1580,"29969":13940,"29970":4641,"29971":405,"29972":13753,"29973":18305,"29974":6081,"29975":14958,"29976":10224,"29977":13343,"29978":5492,"29979":17612,"29980":7359,"29981":3324,"29982":13947,"29983":10385,"29984":7688,"29985":2306,"29986":78,"29987":17667,"29988":3883,"29989":14937,"29990":16589,"29991":18030,"29992":3011,"29993":11308,"29994":2765,"29995":7557,"29996":13005,"29997":827,"29998":6420,"29999":1962,"30000":8232,"30001":2347,"30002":3552,"30003":1175,"30004":5238,"30005":12969,"30006":6789,"30007":9301,"30008":6932,"30009":10927,"30010":5269,"30011":13681,"30012":12453,"30013":6968,"30014":14656,"30015":17041,"30016":18189,"30017":2259,"30018":13526,"30019":3938,"30020":9788,"30021":12077,"30022":10261,"30023":4701,"30024":3610,"30025":10633,"30026":5384,"30027":15937,"30028":17037,"30029":15152,"30030":7971,"30031":17348,"30032":8048,"30033":12493,"30034":10744,"30035":4364,"30036":7644,"30037":18293,"30038":9261,"30039":9557,"30040":3687,"30041":13215,"30042":8545,"30043":8534,"30044":12802,"30045":4909,"30046":17004,"30047":1640,"30048":4586,"30049":11908,"30050":6064,"30051":7970,"30052":7962,"30053":111,"30054":12887,"30055":6355,"30056":14874,"30057":7774,"30058":561,"30059":8063,"30060":3678,"30061":13547,"30062":2839,"30063":7897,"30064":12179,"30065":5087,"30066":17992,"30067":8266,"30068":17516,"30069":9483,"30070":16404,"30071":7795,"30072":6687,"30073":7063,"30074":16609,"30075":2662,"30076":4162,"30077":4075,"30078":237,"30079":4667,"30080":9612,"30081":12505,"30082":15633,"30083":7052,"30084":12872,"30085":7240,"30086":1507,"30087":369,"30088":12245,"30089":12085,"30090":5339,"30091":3374,"30092":15908,"30093":12791,"30094":5911,"30095":13615,"30096":7531,"30097":4879,"30098":13037,"30099":10317,"30100":13180,"30101":3623,"30102":8690,"30103":11238,"30104":5065,"30105":4355,"30106":4532,"30107":7348,"30108":152,"30109":1646,"30110":17862,"30111":16965,"30112":10207,"30113":5504,"30114":8521,"30115":7681,"30116":2257,"30117":1365,"30118":15531,"30119":1374,"30120":15395,"30121":10016,"30122":13933,"30123":2514,"30124":18341,"30125":3533,"30126":13785,"30127":17394,"30128":17415,"30129":14266,"30130":14077,"30131":9967,"30132":15128,"30133":14201,"30134":3153,"30135":7190,"30136":6897,"30137":6161,"30138":8147,"30139":3856,"30140":8019,"30141":1775,"30142":6434,"30143":4996,"30144":5114,"30145":3083,"30146":18293,"30147":15038,"30148":9338,"30149":17499,"30150":2264,"30151":16601,"30152":6449,"30153":17885,"30154":9934,"30155":1216,"30156":17816,"30157":9824,"30158":1066,"30159":14732,"30160":16593,"30161":9189,"30162":1796,"30163":14975,"30164":14867,"30165":18108,"30166":8191,"30167":2937,"30168":14583,"30169":9228,"30170":13288,"30171":1241,"30172":16689,"30173":10568,"30174":9734,"30175":12131,"30176":4775,"30177":8682,"30178":11694,"30179":3021,"30180":13828,"30181":7742,"30182":10803,"30183":8630,"30184":13503,"30185":9701,"30186":8182,"30187":13750,"30188":18330,"30189":4018,"30190":12906,"30191":1505,"30192":7135,"30193":11551,"30194":1831,"30195":2561,"30196":10103,"30197":10659,"30198":11501,"30199":1411,"30200":4040,"30201":14804,"30202":2830,"30203":6923,"30204":1947,"30205":12946,"30206":6102,"30207":16131,"30208":18020,"30209":4661,"30210":16479,"30211":12116,"30212":14686,"30213":6465,"30214":11080,"30215":17233,"30216":11569,"30217":14497,"30218":6320,"30219":4585,"30220":5865,"30221":16358,"30222":8171,"30223":18036,"30224":11927,"30225":18053,"30226":18214,"30227":607,"30228":1103,"30229":10306,"30230":18001,"30231":11374,"30232":5214,"30233":14932,"30234":12376,"30235":17901,"30236":17626,"30237":7929,"30238":1706,"30239":7177,"30240":5303,"30241":11911,"30242":7073,"30243":16048,"30244":9992,"30245":16240,"30246":16153,"30247":15903,"30248":8768,"30249":7298,"30250":6483,"30251":1663,"30252":14857,"30253":16790,"30254":13533,"30255":11905,"30256":15604,"30257":3854,"30258":2073,"30259":11426,"30260":1455,"30261":17640,"30262":5796,"30263":8198,"30264":14379,"30265":2763,"30266":13593,"30267":12587,"30268":14702,"30269":14822,"30270":10215,"30271":11110,"30272":1731,"30273":9929,"30274":5092,"30275":8874,"30276":13721,"30277":7938,"30278":17848,"30279":793,"30280":7650,"30281":10967,"30282":5287,"30283":15395,"30284":8057,"30285":15022,"30286":598,"30287":6778,"30288":16279,"30289":3664,"30290":16874,"30291":5766,"30292":5987,"30293":11545,"30294":10814,"30295":13744,"30296":15663,"30297":13392,"30298":17433,"30299":9825,"30300":150,"30301":13924,"30302":14773,"30303":10481,"30304":8043,"30305":10557,"30306":9306,"30307":14459,"30308":4007,"30309":9168,"30310":6134,"30311":17702,"30312":2601,"30313":11158,"30314":11747,"30315":3600,"30316":12783,"30317":3911,"30318":11055,"30319":1384,"30320":9803,"30321":15697,"30322":10700,"30323":1623,"30324":12726,"30325":8238,"30326":8340,"30327":297,"30328":3822,"30329":17783,"30330":7707,"30331":17637,"30332":5237,"30333":5635,"30334":7017,"30335":14438,"30336":14656,"30337":142,"30338":16856,"30339":10423,"30340":8644,"30341":4048,"30342":15614,"30343":11995,"30344":1271,"30345":16629,"30346":16302,"30347":11490,"30348":15300,"30349":15746,"30350":14848,"30351":5568,"30352":3323,"30353":13602,"30354":17206,"30355":8797,"30356":11596,"30357":14490,"30358":1348,"30359":15184,"30360":16504,"30361":224,"30362":11310,"30363":7032,"30364":10683,"30365":15710,"30366":5195,"30367":4730,"30368":17514,"30369":8365,"30370":7670,"30371":12533,"30372":9626,"30373":9251,"30374":11411,"30375":3751,"30376":18278,"30377":10852,"30378":17450,"30379":924,"30380":11262,"30381":9980,"30382":14633,"30383":16683,"30384":14296,"30385":10537,"30386":1654,"30387":16506,"30388":1534,"30389":1592,"30390":17304,"30391":13905,"30392":9268,"30393":17212,"30394":6922,"30395":12739,"30396":17115,"30397":2847,"30398":4791,"30399":17274,"30400":13932,"30401":9395,"30402":16991,"30403":267,"30404":13842,"30405":16975,"30406":16750,"30407":965,"30408":5882,"30409":13323,"30410":5488,"30411":5734,"30412":15,"30413":17427,"30414":12256,"30415":6655,"30416":14112,"30417":11264,"30418":282,"30419":1437,"30420":1879,"30421":13434,"30422":13918,"30423":15889,"30424":1547,"30425":17719,"30426":15799,"30427":83,"30428":8111,"30429":5566,"30430":3981,"30431":15030,"30432":15204,"30433":14883,"30434":8224,"30435":6007,"30436":7623,"30437":9982,"30438":3508,"30439":5538,"30440":3149,"30441":13425,"30442":1128,"30443":1630,"30444":12139,"30445":17353,"30446":1837,"30447":17962,"30448":16006,"30449":655,"30450":10238,"30451":10552,"30452":11244,"30453":7336,"30454":14602,"30455":1720,"30456":8111,"30457":13739,"30458":22,"30459":15480,"30460":7854,"30461":11160,"30462":14446,"30463":9816,"30464":11194,"30465":7504,"30466":5096,"30467":12340,"30468":13457,"30469":9813,"30470":4500,"30471":1848,"30472":10830,"30473":17554,"30474":4440,"30475":11761,"30476":9236,"30477":488,"30478":15740,"30479":431,"30480":15584,"30481":7048,"30482":3377,"30483":9398,"30484":11506,"30485":17439,"30486":6613,"30487":1206,"30488":80,"30489":11262,"30490":6414,"30491":9906,"30492":12025,"30493":10682,"30494":17070,"30495":15951,"30496":2558,"30497":587,"30498":12555,"30499":16701,"30500":16775,"30501":2406,"30502":4237,"30503":6827,"30504":17349,"30505":6497,"30506":5727,"30507":2693,"30508":15948,"30509":13958,"30510":12112,"30511":2915,"30512":12960,"30513":8510,"30514":13940,"30515":3163,"30516":17318,"30517":14407,"30518":14835,"30519":12831,"30520":16944,"30521":4544,"30522":13147,"30523":12156,"30524":10112,"30525":15242,"30526":16585,"30527":4615,"30528":1858,"30529":15146,"30530":17361,"30531":7788,"30532":18036,"30533":7522,"30534":4787,"30535":691,"30536":17734,"30537":7635,"30538":2093,"30539":10192,"30540":16369,"30541":7051,"30542":3790,"30543":14542,"30544":17624,"30545":13976,"30546":2032,"30547":5757,"30548":15491,"30549":4182,"30550":12395,"30551":10356,"30552":6638,"30553":9777,"30554":9057,"30555":6956,"30556":15117,"30557":3189,"30558":2534,"30559":13192,"30560":9405,"30561":9125,"30562":6215,"30563":14662,"30564":17350,"30565":3497,"30566":9825,"30567":9787,"30568":15816,"30569":9121,"30570":2828,"30571":12395,"30572":11948,"30573":17256,"30574":11589,"30575":12584,"30576":11157,"30577":4162,"30578":3247,"30579":8480,"30580":13178,"30581":1735,"30582":864,"30583":1830,"30584":7138,"30585":7908,"30586":1450,"30587":4682,"30588":872,"30589":12465,"30590":1130,"30591":104,"30592":4053,"30593":11568,"30594":4671,"30595":5302,"30596":4259,"30597":7140,"30598":11524,"30599":9515,"30600":17007,"30601":1418,"30602":2763,"30603":3062,"30604":9650,"30605":9570,"30606":15108,"30607":16398,"30608":5339,"30609":15486,"30610":4936,"30611":9012,"30612":9390,"30613":11238,"30614":5382,"30615":10323,"30616":12262,"30617":12852,"30618":12436,"30619":6000,"30620":16004,"30621":3015,"30622":11698,"30623":4141,"30624":8050,"30625":1766,"30626":3651,"30627":11492,"30628":5833,"30629":15695,"30630":15405,"30631":9449,"30632":12878,"30633":2081,"30634":13709,"30635":13678,"30636":11595,"30637":11214,"30638":5374,"30639":11373,"30640":6127,"30641":7864,"30642":6367,"30643":12652,"30644":17178,"30645":586,"30646":12392,"30647":15412,"30648":707,"30649":8505,"30650":4931,"30651":11599,"30652":7143,"30653":17439,"30654":15325,"30655":16082,"30656":11895,"30657":17424,"30658":8291,"30659":731,"30660":3971,"30661":3965,"30662":18151,"30663":15490,"30664":13135,"30665":5301,"30666":2547,"30667":957,"30668":12610,"30669":14170,"30670":12783,"30671":14513,"30672":13078,"30673":1421,"30674":9946,"30675":17485,"30676":16955,"30677":6909,"30678":3899,"30679":5323,"30680":4810,"30681":15575,"30682":12506,"30683":16024,"30684":13714,"30685":6825,"30686":9849,"30687":4815,"30688":3446,"30689":12348,"30690":6554,"30691":13088,"30692":2120,"30693":16501,"30694":5297,"30695":3607,"30696":14163,"30697":9227,"30698":11145,"30699":13715,"30700":9600,"30701":10897,"30702":3270,"30703":3930,"30704":8608,"30705":348,"30706":14734,"30707":15976,"30708":7858,"30709":5998,"30710":11090,"30711":7823,"30712":4019,"30713":16004,"30714":15227,"30715":9251,"30716":15743,"30717":17066,"30718":14458,"30719":14254,"30720":17720,"30721":10361,"30722":16113,"30723":17622,"30724":6063,"30725":7763,"30726":6142,"30727":14626,"30728":9399,"30729":10866,"30730":1729,"30731":4855,"30732":843,"30733":238,"30734":7208,"30735":10802,"30736":12912,"30737":17796,"30738":1744,"30739":13672,"30740":1282,"30741":4424,"30742":228,"30743":11729,"30744":2310,"30745":5732,"30746":6707,"30747":14049,"30748":2870,"30749":3734,"30750":10943,"30751":7402,"30752":12441,"30753":11994,"30754":4204,"30755":17566,"30756":3030,"30757":14780,"30758":10414,"30759":3483,"30760":15491,"30761":11077,"30762":1933,"30763":3232,"30764":4085,"30765":4910,"30766":2503,"30767":14736,"30768":1270,"30769":16325,"30770":9473,"30771":16866,"30772":16662,"30773":13466,"30774":5394,"30775":17692,"30776":7078,"30777":16737,"30778":16887,"30779":17554,"30780":10115,"30781":3030,"30782":5395,"30783":7917,"30784":14466,"30785":16947,"30786":2882,"30787":1606,"30788":12494,"30789":15976,"30790":10457,"30791":15625,"30792":5425,"30793":4471,"30794":16589,"30795":10152,"30796":11094,"30797":9976,"30798":4092,"30799":6421,"30800":12889,"30801":4705,"30802":15562,"30803":7457,"30804":5046,"30805":17228,"30806":8675,"30807":15802,"30808":9462,"30809":17099,"30810":9863,"30811":4760,"30812":8746,"30813":9941,"30814":10176,"30815":9097,"30816":14102,"30817":14263,"30818":14894,"30819":4313,"30820":3769,"30821":14057,"30822":7614,"30823":6609,"30824":15891,"30825":2674,"30826":10125,"30827":11942,"30828":17218,"30829":5483,"30830":4876,"30831":5080,"30832":8805,"30833":1954,"30834":9992,"30835":16365,"30836":9341,"30837":9605,"30838":18086,"30839":11458,"30840":11463,"30841":12842,"30842":3042,"30843":11482,"30844":4660,"30845":11166,"30846":10464,"30847":7860,"30848":17310,"30849":8561,"30850":12192,"30851":14381,"30852":8498,"30853":1201,"30854":3771,"30855":14022,"30856":17277,"30857":4577,"30858":868,"30859":4956,"30860":321,"30861":7210,"30862":5617,"30863":5402,"30864":9656,"30865":17544,"30866":5615,"30867":5965,"30868":14374,"30869":4874,"30870":5575,"30871":8741,"30872":13814,"30873":11716,"30874":4129,"30875":4936,"30876":12176,"30877":438,"30878":1549,"30879":15741,"30880":18063,"30881":6569,"30882":10152,"30883":5212,"30884":15554,"30885":16752,"30886":7100,"30887":11707,"30888":3735,"30889":4954,"30890":10962,"30891":93,"30892":17875,"30893":12753,"30894":12277,"30895":14944,"30896":16723,"30897":8124,"30898":16081,"30899":1263,"30900":14911,"30901":5756,"30902":16805,"30903":13927,"30904":9482,"30905":11914,"30906":13116,"30907":13588,"30908":3303,"30909":12079,"30910":1567,"30911":16907,"30912":18009,"30913":11090,"30914":5612,"30915":9546,"30916":9045,"30917":441,"30918":7338,"30919":13358,"30920":12475,"30921":5163,"30922":2872,"30923":10504,"30924":16238,"30925":3509,"30926":12898,"30927":9985,"30928":12875,"30929":12629,"30930":8459,"30931":10604,"30932":13031,"30933":1811,"30934":3938,"30935":16010,"30936":4597,"30937":6412,"30938":10120,"30939":7469,"30940":10958,"30941":11918,"30942":15184,"30943":9283,"30944":7507,"30945":2414,"30946":9289,"30947":4488,"30948":5197,"30949":13165,"30950":1233,"30951":6036,"30952":6912,"30953":17075,"30954":8931,"30955":876,"30956":15577,"30957":12978,"30958":8091,"30959":12679,"30960":10634,"30961":1161,"30962":12248,"30963":209,"30964":3321,"30965":16353,"30966":11598,"30967":9148,"30968":14330,"30969":7020,"30970":5614,"30971":7326,"30972":18232,"30973":8738,"30974":15431,"30975":13897,"30976":3790,"30977":4335,"30978":11815,"30979":4214,"30980":14210,"30981":3942,"30982":1572,"30983":4777,"30984":7388,"30985":10833,"30986":6595,"30987":8110,"30988":5557,"30989":1744,"30990":11248,"30991":1561,"30992":16410,"30993":8862,"30994":17212,"30995":16177,"30996":10677,"30997":15973,"30998":2626,"30999":2582,"31000":1554,"31001":10625,"31002":574,"31003":6217,"31004":9267,"31005":12467,"31006":17252,"31007":1046,"31008":14058,"31009":16382,"31010":9982,"31011":6959,"31012":8082,"31013":2404,"31014":3413,"31015":13627,"31016":4836,"31017":11280,"31018":3528,"31019":9659,"31020":3133,"31021":15282,"31022":16372,"31023":15677,"31024":5809,"31025":16320,"31026":1757,"31027":11349,"31028":18230,"31029":12536,"31030":11090,"31031":6444,"31032":17344,"31033":13578,"31034":2389,"31035":4061,"31036":4327,"31037":422,"31038":2951,"31039":2334,"31040":14290,"31041":3266,"31042":6314,"31043":1471,"31044":10880,"31045":8815,"31046":3358,"31047":3162,"31048":243,"31049":7854,"31050":5172,"31051":6953,"31052":17248,"31053":9155,"31054":1829,"31055":6280,"31056":14176,"31057":1158,"31058":8119,"31059":3917,"31060":16602,"31061":6669,"31062":7147,"31063":17863,"31064":12216,"31065":2780,"31066":17928,"31067":4460,"31068":15990,"31069":782,"31070":1112,"31071":17104,"31072":402,"31073":8123,"31074":16003,"31075":8858,"31076":4551,"31077":11273,"31078":5,"31079":16067,"31080":13804,"31081":6863,"31082":5167,"31083":16840,"31084":17717,"31085":13627,"31086":2524,"31087":15597,"31088":17804,"31089":7070,"31090":3687,"31091":2548,"31092":17413,"31093":16379,"31094":17921,"31095":18176,"31096":5776,"31097":9899,"31098":15242,"31099":8576,"31100":10166,"31101":6133,"31102":9363,"31103":5772,"31104":11398,"31105":11519,"31106":15069,"31107":10001,"31108":275,"31109":8012,"31110":7479,"31111":17517,"31112":9551,"31113":17842,"31114":17553,"31115":13973,"31116":4971,"31117":12712,"31118":6214,"31119":967,"31120":5164,"31121":4056,"31122":5372,"31123":3287,"31124":13935,"31125":14178,"31126":4777,"31127":13577,"31128":6085,"31129":4498,"31130":16253,"31131":14353,"31132":4824,"31133":3707,"31134":16642,"31135":12823,"31136":10286,"31137":5152,"31138":7596,"31139":5995,"31140":3004,"31141":6135,"31142":7404,"31143":10193,"31144":26,"31145":17552,"31146":1682,"31147":13098,"31148":8213,"31149":2379,"31150":11800,"31151":108,"31152":5581,"31153":13064,"31154":4730,"31155":12560,"31156":579,"31157":16400,"31158":10184,"31159":9160,"31160":5819,"31161":18093,"31162":10977,"31163":13310,"31164":9293,"31165":9344,"31166":6696,"31167":12898,"31168":7577,"31169":1163,"31170":13740,"31171":4537,"31172":769,"31173":18273,"31174":2224,"31175":17350,"31176":3855,"31177":1151,"31178":6184,"31179":10951,"31180":9796,"31181":17,"31182":7879,"31183":17069,"31184":5436,"31185":10726,"31186":131,"31187":2463,"31188":12640,"31189":9799,"31190":9758,"31191":1803,"31192":399,"31193":15338,"31194":1360,"31195":12336,"31196":1322,"31197":8375,"31198":14166,"31199":450,"31200":6123,"31201":17878,"31202":12774,"31203":2557,"31204":11250,"31205":4557,"31206":7324,"31207":188,"31208":1245,"31209":8499,"31210":14441,"31211":12215,"31212":17284,"31213":17104,"31214":11503,"31215":986,"31216":3433,"31217":8080,"31218":5649,"31219":1939,"31220":6923,"31221":6153,"31222":16493,"31223":5318,"31224":250,"31225":6355,"31226":15116,"31227":3020,"31228":16020,"31229":2072,"31230":10033,"31231":17194,"31232":14535,"31233":16466,"31234":391,"31235":18342,"31236":9830,"31237":4846,"31238":11549,"31239":14464,"31240":16836,"31241":12132,"31242":16191,"31243":8283,"31244":12766,"31245":9472,"31246":14937,"31247":3321,"31248":11833,"31249":8811,"31250":16520,"31251":10981,"31252":16939,"31253":11664,"31254":9535,"31255":15829,"31256":282,"31257":15937,"31258":2692,"31259":469,"31260":2503,"31261":1092,"31262":12396,"31263":5675,"31264":10011,"31265":12383,"31266":16379,"31267":3476,"31268":9356,"31269":13908,"31270":724,"31271":8764,"31272":14069,"31273":15394,"31274":6131,"31275":14055,"31276":15125,"31277":9187,"31278":17050,"31279":9081,"31280":10844,"31281":11613,"31282":16754,"31283":15883,"31284":5402,"31285":341,"31286":14632,"31287":13362,"31288":5359,"31289":6109,"31290":15227,"31291":3115,"31292":10485,"31293":3779,"31294":11792,"31295":2006,"31296":681,"31297":669,"31298":5654,"31299":13475,"31300":11673,"31301":13682,"31302":1998,"31303":14216,"31304":938,"31305":12518,"31306":9446,"31307":6323,"31308":10831,"31309":2111,"31310":3966,"31311":9229,"31312":8873,"31313":12300,"31314":1814,"31315":1106,"31316":3369,"31317":647,"31318":6790,"31319":1644,"31320":17558,"31321":13178,"31322":6778,"31323":14898,"31324":7230,"31325":803,"31326":16400,"31327":11629,"31328":8571,"31329":14479,"31330":14670,"31331":17026,"31332":17633,"31333":4955,"31334":21,"31335":6361,"31336":13070,"31337":10367,"31338":8224,"31339":940,"31340":620,"31341":13386,"31342":9682,"31343":10777,"31344":17994,"31345":16931,"31346":16373,"31347":17189,"31348":4477,"31349":10231,"31350":9158,"31351":15235,"31352":1120,"31353":4809,"31354":10294,"31355":1350,"31356":7324,"31357":11617,"31358":1263,"31359":16290,"31360":14686,"31361":4230,"31362":7591,"31363":1269,"31364":16988,"31365":5118,"31366":15355,"31367":14109,"31368":14783,"31369":10809,"31370":8524,"31371":9286,"31372":2888,"31373":13101,"31374":14408,"31375":15427,"31376":7258,"31377":11268,"31378":11308,"31379":10313,"31380":16578,"31381":3573,"31382":4961,"31383":8801,"31384":16125,"31385":2208,"31386":6793,"31387":12389,"31388":5768,"31389":11430,"31390":15151,"31391":16216,"31392":10399,"31393":1775,"31394":2936,"31395":17268,"31396":6486,"31397":13026,"31398":16733,"31399":5438,"31400":7054,"31401":12005,"31402":4629,"31403":7367,"31404":18050,"31405":13438,"31406":8692,"31407":2343,"31408":16788,"31409":7,"31410":9432,"31411":8106,"31412":14089,"31413":4510,"31414":2146,"31415":9709,"31416":4634,"31417":15183,"31418":6141,"31419":2314,"31420":7381,"31421":3242,"31422":4534,"31423":12603,"31424":15115,"31425":1116,"31426":9393,"31427":841,"31428":8844,"31429":16178,"31430":12516,"31431":10575,"31432":12691,"31433":2968,"31434":17609,"31435":12709,"31436":12640,"31437":14555,"31438":13952,"31439":9655,"31440":10473,"31441":6866,"31442":3555,"31443":16463,"31444":2031,"31445":1868,"31446":2393,"31447":17579,"31448":12021,"31449":820,"31450":10859,"31451":10753,"31452":8419,"31453":6942,"31454":3799,"31455":17359,"31456":7623,"31457":8315,"31458":4714,"31459":171,"31460":14491,"31461":1670,"31462":6037,"31463":12431,"31464":6066,"31465":7866,"31466":11528,"31467":14136,"31468":4699,"31469":13147,"31470":2583,"31471":10252,"31472":1814,"31473":2454,"31474":12101,"31475":4672,"31476":4509,"31477":278,"31478":6810,"31479":12934,"31480":15889,"31481":6938,"31482":6998,"31483":7212,"31484":12378,"31485":9896,"31486":9285,"31487":216,"31488":1947,"31489":7579,"31490":14270,"31491":9792,"31492":15703,"31493":3209,"31494":5665,"31495":9791,"31496":4775,"31497":7469,"31498":13184,"31499":6230,"31500":6394,"31501":2033,"31502":4249,"31503":14380,"31504":338,"31505":15279,"31506":1925,"31507":8541,"31508":9449,"31509":272,"31510":11317,"31511":288,"31512":2908,"31513":7197,"31514":3397,"31515":5744,"31516":4679,"31517":3881,"31518":6233,"31519":13715,"31520":14101,"31521":4605,"31522":1066,"31523":3014,"31524":2943,"31525":16800,"31526":8043,"31527":1028,"31528":11794,"31529":9444,"31530":2081,"31531":13417,"31532":7472,"31533":10283,"31534":156,"31535":4458,"31536":11734,"31537":16682,"31538":16330,"31539":6693,"31540":5025,"31541":1685,"31542":17730,"31543":7415,"31544":5263,"31545":5750,"31546":4851,"31547":9086,"31548":2065,"31549":10060,"31550":6298,"31551":14171,"31552":4536,"31553":16481,"31554":3178,"31555":12456,"31556":16943,"31557":10329,"31558":4126,"31559":17964,"31560":1753,"31561":972,"31562":7635,"31563":1290,"31564":6586,"31565":5420,"31566":16941,"31567":14917,"31568":1789,"31569":10570,"31570":4802,"31571":1360,"31572":4374,"31573":4174,"31574":7976,"31575":1039,"31576":14174,"31577":10022,"31578":14109,"31579":8297,"31580":11042,"31581":14916,"31582":3849,"31583":16385,"31584":2866,"31585":11135,"31586":7796,"31587":5267,"31588":5087,"31589":7492,"31590":10071,"31591":1148,"31592":12708,"31593":685,"31594":2379,"31595":13148,"31596":1471,"31597":8763,"31598":16043,"31599":2274,"31600":4708,"31601":12552,"31602":7519,"31603":14387,"31604":8890,"31605":4218,"31606":15336,"31607":8979,"31608":17859,"31609":8683,"31610":662,"31611":3325,"31612":11624,"31613":17095,"31614":13196,"31615":13359,"31616":3667,"31617":1135,"31618":8606,"31619":9350,"31620":4732,"31621":6780,"31622":703,"31623":16622,"31624":1195,"31625":9079,"31626":5117,"31627":498,"31628":17637,"31629":10314,"31630":3453,"31631":3705,"31632":5260,"31633":17312,"31634":16289,"31635":6118,"31636":14079,"31637":7031,"31638":7644,"31639":7821,"31640":10093,"31641":12368,"31642":18194,"31643":17093,"31644":2510,"31645":2102,"31646":1116,"31647":16631,"31648":6170,"31649":4068,"31650":6430,"31651":6407,"31652":9403,"31653":3481,"31654":4030,"31655":808,"31656":18206,"31657":11676,"31658":1696,"31659":5317,"31660":3891,"31661":11300,"31662":6199,"31663":2294,"31664":13919,"31665":4966,"31666":11864,"31667":17192,"31668":7735,"31669":18127,"31670":8638,"31671":6845,"31672":16409,"31673":9904,"31674":12695,"31675":18320,"31676":4231,"31677":5158,"31678":12090,"31679":1198,"31680":6294,"31681":11764,"31682":13929,"31683":6871,"31684":6769,"31685":6944,"31686":12959,"31687":4369,"31688":7905,"31689":15957,"31690":9349,"31691":18325,"31692":4017,"31693":567,"31694":14536,"31695":13056,"31696":17756,"31697":18206,"31698":15776,"31699":1219,"31700":2028,"31701":440,"31702":119,"31703":14216,"31704":7569,"31705":9113,"31706":1937,"31707":17917,"31708":16863,"31709":504,"31710":10474,"31711":14067,"31712":9133,"31713":12750,"31714":10009,"31715":798,"31716":11861,"31717":6039,"31718":1598,"31719":17592,"31720":8981,"31721":810,"31722":6343,"31723":5374,"31724":6373,"31725":12618,"31726":4004,"31727":6780,"31728":5311,"31729":11686,"31730":17872,"31731":14362,"31732":17296,"31733":8859,"31734":9195,"31735":13667,"31736":601,"31737":16877,"31738":2277,"31739":478,"31740":16605,"31741":9584,"31742":6710,"31743":14762,"31744":454,"31745":10774,"31746":3652,"31747":12244,"31748":5328,"31749":1944,"31750":16556,"31751":12093,"31752":1178,"31753":14358,"31754":11084,"31755":6640,"31756":13606,"31757":7770,"31758":2397,"31759":86,"31760":8450,"31761":917,"31762":14324,"31763":13288,"31764":6776,"31765":12615,"31766":15747,"31767":502,"31768":17827,"31769":574,"31770":12037,"31771":16985,"31772":2692,"31773":4785,"31774":6350,"31775":11480,"31776":5149,"31777":16954,"31778":3650,"31779":8696,"31780":2841,"31781":4181,"31782":10870,"31783":15837,"31784":9488,"31785":4311,"31786":1613,"31787":12009,"31788":15668,"31789":382,"31790":11798,"31791":1734,"31792":6064,"31793":4386,"31794":15889,"31795":10751,"31796":6130,"31797":10759,"31798":12587,"31799":439,"31800":9814,"31801":10109,"31802":11153,"31803":5136,"31804":3982,"31805":2509,"31806":17397,"31807":6253,"31808":7877,"31809":11097,"31810":2288,"31811":14354,"31812":7084,"31813":6401,"31814":17530,"31815":2714,"31816":3671,"31817":1074,"31818":6917,"31819":8448,"31820":824,"31821":4570,"31822":3330,"31823":12012,"31824":12417,"31825":10530,"31826":15325,"31827":13903,"31828":2567,"31829":11906,"31830":577,"31831":10421,"31832":6527,"31833":9581,"31834":13035,"31835":5452,"31836":5053,"31837":12033,"31838":15674,"31839":8326,"31840":1485,"31841":9248,"31842":12633,"31843":13942,"31844":11540,"31845":3071,"31846":15583,"31847":8780,"31848":14414,"31849":10321,"31850":9232,"31851":9836,"31852":15030,"31853":17616,"31854":5974,"31855":4300,"31856":7054,"31857":4452,"31858":13911,"31859":11443,"31860":8938,"31861":12429,"31862":6113,"31863":4345,"31864":14308,"31865":13215,"31866":8442,"31867":10499,"31868":2072,"31869":18091,"31870":10975,"31871":10786,"31872":12567,"31873":2737,"31874":2611,"31875":2474,"31876":14045,"31877":1430,"31878":11737,"31879":721,"31880":5627,"31881":12453,"31882":13062,"31883":16257,"31884":15610,"31885":12056,"31886":11238,"31887":13657,"31888":10540,"31889":2685,"31890":10048,"31891":12413,"31892":15983,"31893":2458,"31894":6610,"31895":1897,"31896":18169,"31897":6870,"31898":14798,"31899":2637,"31900":8568,"31901":12559,"31902":18048,"31903":12599,"31904":12984,"31905":16835,"31906":14753,"31907":10124,"31908":13357,"31909":2427,"31910":13099,"31911":1582,"31912":958,"31913":7893,"31914":81,"31915":3671,"31916":17835,"31917":5531,"31918":11764,"31919":10243,"31920":7740,"31921":3756,"31922":910,"31923":10206,"31924":9422,"31925":17273,"31926":10221,"31927":17306,"31928":57,"31929":3976,"31930":7693,"31931":8005,"31932":11520,"31933":2505,"31934":4530,"31935":10674,"31936":14141,"31937":9761,"31938":16552,"31939":6531,"31940":15993,"31941":11636,"31942":17419,"31943":16660,"31944":6106,"31945":12547,"31946":2100,"31947":15821,"31948":1910,"31949":16105,"31950":4615,"31951":7615,"31952":15798,"31953":10126,"31954":4324,"31955":16591,"31956":11012,"31957":14564,"31958":15169,"31959":14497,"31960":8918,"31961":397,"31962":18026,"31963":5094,"31964":16623,"31965":14327,"31966":9237,"31967":11548,"31968":2425,"31969":6554,"31970":6393,"31971":14481,"31972":13439,"31973":1736,"31974":9326,"31975":7590,"31976":11073,"31977":17495,"31978":10811,"31979":18175,"31980":5983,"31981":3886,"31982":7402,"31983":17089,"31984":16177,"31985":6825,"31986":4218,"31987":6597,"31988":6431,"31989":15748,"31990":6680,"31991":8164,"31992":3863,"31993":5518,"31994":5144,"31995":15081,"31996":2133,"31997":13806,"31998":2153,"31999":180,"32000":3293,"32001":11881,"32002":5369,"32003":2695,"32004":11079,"32005":7087,"32006":10983,"32007":11622,"32008":9099,"32009":5449,"32010":17033,"32011":7559,"32012":2644,"32013":1877,"32014":6257,"32015":6846,"32016":9062,"32017":2015,"32018":13755,"32019":18307,"32020":13084,"32021":3612,"32022":15696,"32023":10543,"32024":7257,"32025":17096,"32026":14269,"32027":12107,"32028":1968,"32029":14675,"32030":5681,"32031":6468,"32032":2091,"32033":9608,"32034":5642,"32035":16723,"32036":13528,"32037":3841,"32038":14417,"32039":8008,"32040":11062,"32041":2640,"32042":12276,"32043":13477,"32044":2965,"32045":17421,"32046":10596,"32047":14854,"32048":6830,"32049":6525,"32050":14712,"32051":14989,"32052":4893,"32053":16404,"32054":6828,"32055":16173,"32056":14799,"32057":6887,"32058":10933,"32059":13555,"32060":5911,"32061":9632,"32062":6062,"32063":14982,"32064":804,"32065":15979,"32066":17285,"32067":4542,"32068":14807,"32069":9203,"32070":1236,"32071":8728,"32072":9923,"32073":384,"32074":2073,"32075":4086,"32076":16776,"32077":7126,"32078":1509,"32079":5654,"32080":5737,"32081":11382,"32082":4978,"32083":16355,"32084":6888,"32085":17651,"32086":13722,"32087":18154,"32088":6347,"32089":1148,"32090":4276,"32091":1215,"32092":12322,"32093":6516,"32094":14449,"32095":6182,"32096":6938,"32097":7800,"32098":17714,"32099":1682,"32100":5095,"32101":9336,"32102":7606,"32103":3367,"32104":14126,"32105":3012,"32106":15612,"32107":6556,"32108":13179,"32109":10418,"32110":2399,"32111":8988,"32112":10185,"32113":14308,"32114":17771,"32115":187,"32116":360,"32117":16785,"32118":6477,"32119":641,"32120":13404,"32121":14867,"32122":2853,"32123":14972,"32124":669,"32125":9935,"32126":4476,"32127":6091,"32128":13787,"32129":3149,"32130":12903,"32131":15619,"32132":5366,"32133":10532,"32134":5748,"32135":7669,"32136":4301,"32137":15946,"32138":15349,"32139":953,"32140":43,"32141":4191,"32142":5324,"32143":8166,"32144":14835,"32145":8421,"32146":14947,"32147":16902,"32148":16661,"32149":4827,"32150":17997,"32151":18285,"32152":5334,"32153":8873,"32154":15082,"32155":3895,"32156":356,"32157":6300,"32158":17737,"32159":16426,"32160":1537,"32161":13957,"32162":6829,"32163":2173,"32164":1498,"32165":12735,"32166":218,"32167":12332,"32168":13161,"32169":11530,"32170":5174,"32171":18099,"32172":12269,"32173":11211,"32174":3926,"32175":8598,"32176":6429,"32177":6767,"32178":8994,"32179":10937,"32180":14442,"32181":12815,"32182":10008,"32183":1947,"32184":14792,"32185":4166,"32186":17329,"32187":3919,"32188":2807,"32189":11242,"32190":1481,"32191":128,"32192":2905,"32193":5236,"32194":1819,"32195":13476,"32196":6315,"32197":11825,"32198":5611,"32199":7144,"32200":9578,"32201":13913,"32202":960,"32203":16685,"32204":4991,"32205":14008,"32206":12638,"32207":6244,"32208":10861,"32209":12495,"32210":11325,"32211":5967,"32212":1988,"32213":4402,"32214":8863,"32215":17643,"32216":11184,"32217":289,"32218":8596,"32219":3849,"32220":12727,"32221":17404,"32222":16820,"32223":4512,"32224":10260,"32225":5866,"32226":1765,"32227":8007,"32228":10416,"32229":4630,"32230":13124,"32231":13868,"32232":13126,"32233":1639,"32234":4593,"32235":15294,"32236":14851,"32237":6905,"32238":16629,"32239":9052,"32240":18118,"32241":4976,"32242":9635,"32243":16209,"32244":2409,"32245":12996,"32246":7,"32247":14645,"32248":6099,"32249":5247,"32250":5283,"32251":8709,"32252":7577,"32253":15015,"32254":4163,"32255":6498,"32256":14434,"32257":12772,"32258":5161,"32259":9513,"32260":11614,"32261":12363,"32262":13865,"32263":4067,"32264":4774,"32265":1724,"32266":6883,"32267":6302,"32268":4983,"32269":7830,"32270":3070,"32271":15626,"32272":4872,"32273":6753,"32274":7501,"32275":4443,"32276":2734,"32277":16558,"32278":7668,"32279":1369,"32280":8658,"32281":7465,"32282":2478,"32283":17683,"32284":6448,"32285":9122,"32286":9912,"32287":14710,"32288":11036,"32289":15897,"32290":13160,"32291":8044,"32292":8492,"32293":8665,"32294":10412,"32295":14391,"32296":12197,"32297":10499,"32298":1841,"32299":12760,"32300":2627,"32301":15012,"32302":9250,"32303":12660,"32304":7366,"32305":10651,"32306":5030,"32307":15314,"32308":15472,"32309":8147,"32310":554,"32311":1088,"32312":2581,"32313":15105,"32314":4347,"32315":7145,"32316":13375,"32317":2192,"32318":12787,"32319":9373,"32320":15730,"32321":13648,"32322":9660,"32323":13159,"32324":5065,"32325":2660,"32326":12432,"32327":12307,"32328":8655,"32329":1703,"32330":8352,"32331":7423,"32332":4239,"32333":12108,"32334":11492,"32335":16589,"32336":7664,"32337":1987,"32338":561,"32339":10102,"32340":1672,"32341":184,"32342":1367,"32343":843,"32344":12055,"32345":8864,"32346":14423,"32347":3951,"32348":6275,"32349":14206,"32350":10507,"32351":11595,"32352":11952,"32353":14351,"32354":10356,"32355":13782,"32356":4475,"32357":7323,"32358":13397,"32359":878,"32360":3331,"32361":16076,"32362":7252,"32363":16581,"32364":5494,"32365":10602,"32366":3335,"32367":11294,"32368":605,"32369":520,"32370":2813,"32371":5203,"32372":9575,"32373":9382,"32374":7427,"32375":15556,"32376":7965,"32377":5793,"32378":15539,"32379":11858,"32380":6025,"32381":14987,"32382":10959,"32383":15269,"32384":13867,"32385":18011,"32386":16208,"32387":1287,"32388":5501,"32389":17718,"32390":9400,"32391":10449,"32392":8788,"32393":15159,"32394":7156,"32395":1504,"32396":9487,"32397":17110,"32398":4724,"32399":5303,"32400":1828,"32401":4691,"32402":7415,"32403":2244,"32404":9606,"32405":15530,"32406":16210,"32407":468,"32408":8168,"32409":1437,"32410":13328,"32411":15419,"32412":18227,"32413":11753,"32414":11978,"32415":3963,"32416":6978,"32417":3686,"32418":17202,"32419":17855,"32420":574,"32421":7900,"32422":4605,"32423":15067,"32424":17558,"32425":18207,"32426":69,"32427":8891,"32428":2172,"32429":4252,"32430":2464,"32431":549,"32432":14539,"32433":6496,"32434":12035,"32435":2858,"32436":9553,"32437":1379,"32438":3983,"32439":9428,"32440":4319,"32441":4347,"32442":12256,"32443":16502,"32444":8500,"32445":17641,"32446":4503,"32447":16208,"32448":1617,"32449":8858,"32450":17884,"32451":7535,"32452":13182,"32453":17807,"32454":14796,"32455":14149,"32456":12974,"32457":10206,"32458":7071,"32459":557,"32460":11058,"32461":16738,"32462":13714,"32463":13047,"32464":7646,"32465":1923,"32466":14359,"32467":9593,"32468":3579,"32469":6842,"32470":14339,"32471":6984,"32472":18311,"32473":4771,"32474":6101,"32475":12591,"32476":11503,"32477":16417,"32478":5340,"32479":5415,"32480":16412,"32481":11411,"32482":551,"32483":4987,"32484":6755,"32485":2175,"32486":12196,"32487":18105,"32488":9080,"32489":4220,"32490":9949,"32491":7222,"32492":8225,"32493":12301,"32494":11539,"32495":8948,"32496":11988,"32497":460,"32498":14935,"32499":1819,"32500":14078,"32501":1536,"32502":14123,"32503":16334,"32504":362,"32505":7500,"32506":6244,"32507":18212,"32508":6981,"32509":9506,"32510":12629,"32511":17621,"32512":10644,"32513":8840,"32514":6106,"32515":17576,"32516":7494,"32517":13875,"32518":7015,"32519":16982,"32520":6945,"32521":11291,"32522":16724,"32523":1658,"32524":7562,"32525":3679,"32526":17309,"32527":15896,"32528":7710,"32529":1173,"32530":18185,"32531":10812,"32532":6939,"32533":9027,"32534":2922,"32535":12899,"32536":14437,"32537":714,"32538":6678,"32539":11669,"32540":13312,"32541":5350,"32542":1102,"32543":16104,"32544":2939,"32545":10952,"32546":13048,"32547":11174,"32548":14623,"32549":202,"32550":749,"32551":11941,"32552":1653,"32553":528,"32554":1454,"32555":2344,"32556":14311,"32557":4756,"32558":14630,"32559":2961,"32560":18341,"32561":17198,"32562":11761,"32563":11851,"32564":17588,"32565":9788,"32566":7687,"32567":16972,"32568":2422,"32569":17893,"32570":16252,"32571":15097,"32572":8595,"32573":14959,"32574":767,"32575":10984,"32576":7639,"32577":1720,"32578":16268,"32579":11144,"32580":1443,"32581":9981,"32582":7625,"32583":1381,"32584":4693,"32585":7294,"32586":1266,"32587":17960,"32588":8557,"32589":625,"32590":12616,"32591":11137,"32592":3363,"32593":13198,"32594":11641,"32595":1014,"32596":873,"32597":3146,"32598":6509,"32599":648,"32600":5118,"32601":12331,"32602":12543,"32603":12217,"32604":17743,"32605":2820,"32606":18282,"32607":12820,"32608":6243,"32609":14013,"32610":7416,"32611":11630,"32612":8508,"32613":13548,"32614":15344,"32615":17987,"32616":2214,"32617":155,"32618":16604,"32619":17716,"32620":2775,"32621":12996,"32622":4076,"32623":6387,"32624":9505,"32625":12686,"32626":6306,"32627":2134,"32628":16451,"32629":369,"32630":4468,"32631":6186,"32632":15185,"32633":14352,"32634":12162,"32635":9700,"32636":8893,"32637":2992,"32638":9576,"32639":10468,"32640":953,"32641":17688,"32642":12912,"32643":9433,"32644":16058,"32645":11303,"32646":1636,"32647":16950,"32648":11147,"32649":17426,"32650":3067,"32651":11260,"32652":3458,"32653":13280,"32654":2796,"32655":5538,"32656":7275,"32657":11242,"32658":9659,"32659":11198,"32660":1080,"32661":12465,"32662":14308,"32663":14500,"32664":10442,"32665":17242,"32666":15528,"32667":11763,"32668":3623,"32669":64,"32670":1925,"32671":8261,"32672":10656,"32673":8570,"32674":5806,"32675":8337,"32676":9905,"32677":11252,"32678":6335,"32679":17557,"32680":10614,"32681":13675,"32682":10216,"32683":18078,"32684":10046,"32685":16264,"32686":7044,"32687":7226,"32688":3193,"32689":2220,"32690":11895,"32691":9352,"32692":18093,"32693":14891,"32694":11922,"32695":11259,"32696":3548,"32697":9698,"32698":9934,"32699":11321,"32700":14437,"32701":3199,"32702":8547,"32703":8526,"32704":7152,"32705":17686,"32706":7051,"32707":12984,"32708":5246,"32709":5490,"32710":3115,"32711":15888,"32712":12022,"32713":3785,"32714":3314,"32715":12668,"32716":4513,"32717":5316,"32718":15304,"32719":13514,"32720":14273,"32721":1758,"32722":7478,"32723":132,"32724":2367,"32725":16030,"32726":273,"32727":6901,"32728":162,"32729":5855,"32730":6203,"32731":9168,"32732":5690,"32733":8923,"32734":6971,"32735":14928,"32736":5782,"32737":537,"32738":9618,"32739":4135,"32740":2894,"32741":3599,"32742":12257,"32743":9435,"32744":8008,"32745":15316,"32746":6356,"32747":2170,"32748":11520,"32749":15513,"32750":5251,"32751":2080,"32752":6901,"32753":17380,"32754":1722,"32755":13198,"32756":770,"32757":397,"32758":1295,"32759":18111,"32760":13730,"32761":11002,"32762":2186,"32763":15227,"32764":10904,"32765":13086,"32766":9829,"32767":12006,"32768":1037,"32769":6359,"32770":6079,"32771":15704,"32772":6614,"32773":6934,"32774":15627,"32775":3395,"32776":4984,"32777":2758,"32778":2393,"32779":8815,"32780":5680,"32781":6185,"32782":1332,"32783":9653,"32784":2937,"32785":17132,"32786":2929,"32787":663,"32788":3634,"32789":2471,"32790":11436,"32791":17939,"32792":13257,"32793":9956,"32794":13724,"32795":13036,"32796":3251,"32797":15762,"32798":7607,"32799":10855,"32800":15313,"32801":8146,"32802":4137,"32803":3220,"32804":5017,"32805":9148,"32806":12995,"32807":8364,"32808":5167,"32809":772,"32810":7888,"32811":6572,"32812":7170,"32813":8275,"32814":15249,"32815":13370,"32816":9528,"32817":12872,"32818":10228,"32819":15517,"32820":4484,"32821":13786,"32822":8618,"32823":8633,"32824":17499,"32825":14943,"32826":1605,"32827":644,"32828":8268,"32829":16350,"32830":13177,"32831":15266,"32832":12819,"32833":288,"32834":7480,"32835":9065,"32836":5281,"32837":18245,"32838":1119,"32839":7317,"32840":12515,"32841":6838,"32842":17323,"32843":13609,"32844":14308,"32845":88,"32846":4217,"32847":1516,"32848":11900,"32849":6254,"32850":15473,"32851":1625,"32852":5016,"32853":17132,"32854":7406,"32855":17657,"32856":5725,"32857":14295,"32858":5569,"32859":6205,"32860":10646,"32861":1647,"32862":10327,"32863":8337,"32864":11920,"32865":653,"32866":17977,"32867":10073,"32868":3557,"32869":7037,"32870":5669,"32871":6486,"32872":5081,"32873":10721,"32874":7791,"32875":4263,"32876":18118,"32877":512,"32878":10941,"32879":1608,"32880":3593,"32881":6547,"32882":1193,"32883":1657,"32884":16461,"32885":1894,"32886":8396,"32887":5734,"32888":5705,"32889":5461,"32890":7820,"32891":9522,"32892":1668,"32893":6018,"32894":7576,"32895":3326,"32896":12009,"32897":8783,"32898":10727,"32899":7116,"32900":10425,"32901":15362,"32902":9628,"32903":11917,"32904":4836,"32905":4587,"32906":2262,"32907":3118,"32908":6376,"32909":16065,"32910":4752,"32911":12484,"32912":8072,"32913":16435,"32914":13753,"32915":3423,"32916":16054,"32917":5449,"32918":17310,"32919":768,"32920":14961,"32921":1515,"32922":17108,"32923":10978,"32924":8788,"32925":1909,"32926":4440,"32927":16334,"32928":11297,"32929":14487,"32930":15829,"32931":17246,"32932":14193,"32933":8954,"32934":13132,"32935":700,"32936":7597,"32937":11297,"32938":6249,"32939":6717,"32940":15206,"32941":8460,"32942":10483,"32943":15937,"32944":16009,"32945":16251,"32946":8511,"32947":7477,"32948":5220,"32949":18080,"32950":6946,"32951":13469,"32952":10244,"32953":9636,"32954":7412,"32955":16190,"32956":6828,"32957":17074,"32958":13651,"32959":2040,"32960":242,"32961":552,"32962":12734,"32963":5686,"32964":8064,"32965":12136,"32966":12336,"32967":4508,"32968":15419,"32969":13968,"32970":6762,"32971":9137,"32972":11428,"32973":12418,"32974":1632,"32975":11826,"32976":1895,"32977":10686,"32978":12647,"32979":14502,"32980":7177,"32981":10140,"32982":17724,"32983":13031,"32984":8628,"32985":16561,"32986":17127,"32987":12789,"32988":14603,"32989":12863,"32990":4592,"32991":4508,"32992":3526,"32993":17148,"32994":15862,"32995":16205,"32996":831,"32997":7948,"32998":9585,"32999":1095,"33000":834,"33001":2991,"33002":10768,"33003":16467,"33004":10402,"33005":12009,"33006":4717,"33007":1461,"33008":3626,"33009":16075,"33010":288,"33011":5551,"33012":8984,"33013":17564,"33014":13256,"33015":1865,"33016":11059,"33017":5473,"33018":16789,"33019":10027,"33020":9407,"33021":3163,"33022":9616,"33023":13065,"33024":5510,"33025":882,"33026":12042,"33027":16512,"33028":9231,"33029":7035,"33030":14672,"33031":13340,"33032":4266,"33033":5303,"33034":4818,"33035":5323,"33036":10445,"33037":9121,"33038":17199,"33039":15324,"33040":978,"33041":14291,"33042":6554,"33043":15161,"33044":650,"33045":12135,"33046":10675,"33047":9552,"33048":12480,"33049":13157,"33050":2588,"33051":6274,"33052":9454,"33053":17661,"33054":4986,"33055":2856,"33056":826,"33057":6085,"33058":9648,"33059":4177,"33060":436,"33061":6818,"33062":16658,"33063":12660,"33064":11962,"33065":13304,"33066":822,"33067":6601,"33068":5379,"33069":8983,"33070":15807,"33071":6789,"33072":11056,"33073":10998,"33074":8203,"33075":7149,"33076":15621,"33077":2941,"33078":3401,"33079":7449,"33080":6270,"33081":13530,"33082":8548,"33083":14978,"33084":1816,"33085":12102,"33086":7043,"33087":7408,"33088":5150,"33089":2395,"33090":8401,"33091":12559,"33092":13599,"33093":18265,"33094":16321,"33095":6931,"33096":10742,"33097":6485,"33098":3689,"33099":2495,"33100":5068,"33101":2738,"33102":10626,"33103":12890,"33104":12076,"33105":16431,"33106":2041,"33107":2959,"33108":12687,"33109":3519,"33110":11198,"33111":12336,"33112":12222,"33113":12005,"33114":18325,"33115":6147,"33116":6289,"33117":6352,"33118":9629,"33119":13018,"33120":13810,"33121":10787,"33122":14067,"33123":16255,"33124":5753,"33125":14488,"33126":1368,"33127":7805,"33128":14313,"33129":6954,"33130":1421,"33131":9136,"33132":7115,"33133":13838,"33134":324,"33135":7820,"33136":6889,"33137":14093,"33138":17783,"33139":13150,"33140":2281,"33141":4886,"33142":1796,"33143":7037,"33144":13119,"33145":1979,"33146":16709,"33147":7773,"33148":12105,"33149":8642,"33150":945,"33151":13803,"33152":5347,"33153":10016,"33154":4746,"33155":775,"33156":14957,"33157":15894,"33158":11460,"33159":9063,"33160":9291,"33161":12332,"33162":16777,"33163":13410,"33164":12533,"33165":4866,"33166":3205,"33167":13713,"33168":3465,"33169":10446,"33170":852,"33171":9087,"33172":17204,"33173":16573,"33174":18176,"33175":14034,"33176":8833,"33177":1072,"33178":8172,"33179":1033,"33180":8504,"33181":8974,"33182":16632,"33183":3044,"33184":9467,"33185":3270,"33186":5415,"33187":1844,"33188":13873,"33189":5521,"33190":17822,"33191":6723,"33192":8324,"33193":1278,"33194":7368,"33195":5705,"33196":10156,"33197":15473,"33198":8488,"33199":6596,"33200":402,"33201":7044,"33202":13268,"33203":15806,"33204":10653,"33205":15358,"33206":10286,"33207":9769,"33208":14950,"33209":8242,"33210":5668,"33211":13519,"33212":7260,"33213":10502,"33214":3691,"33215":16491,"33216":5506,"33217":16817,"33218":6193,"33219":10723,"33220":10774,"33221":18022,"33222":1276,"33223":702,"33224":2957,"33225":2067,"33226":9311,"33227":8003,"33228":1580,"33229":8553,"33230":9390,"33231":1235,"33232":8374,"33233":16140,"33234":4817,"33235":5606,"33236":10341,"33237":13632,"33238":5648,"33239":4629,"33240":15241,"33241":14243,"33242":18089,"33243":2473,"33244":15666,"33245":14638,"33246":11042,"33247":9592,"33248":17092,"33249":89,"33250":14041,"33251":9785,"33252":7025,"33253":13967,"33254":15322,"33255":16441,"33256":9334,"33257":7083,"33258":13150,"33259":886,"33260":16097,"33261":13021,"33262":11067,"33263":4867,"33264":11867,"33265":2447,"33266":2164,"33267":10729,"33268":16761,"33269":14680,"33270":15135,"33271":875,"33272":11952,"33273":4063,"33274":6834,"33275":13658,"33276":7001,"33277":16173,"33278":2748,"33279":16573,"33280":5430,"33281":13493,"33282":10189,"33283":18290,"33284":2217,"33285":2337,"33286":7527,"33287":18286,"33288":6071,"33289":657,"33290":7498,"33291":5938,"33292":12496,"33293":6423,"33294":17113,"33295":8869,"33296":7146,"33297":14722,"33298":15996,"33299":2628,"33300":14707,"33301":7264,"33302":1187,"33303":16405,"33304":14063,"33305":12538,"33306":756,"33307":18010,"33308":14958,"33309":4736,"33310":14842,"33311":11550,"33312":15517,"33313":6271,"33314":14872,"33315":3131,"33316":2005,"33317":17291,"33318":17787,"33319":540,"33320":8328,"33321":43,"33322":724,"33323":13657,"33324":737,"33325":1820,"33326":8341,"33327":13701,"33328":6695,"33329":14455,"33330":1355,"33331":154,"33332":1957,"33333":17708,"33334":18133,"33335":6566,"33336":14278,"33337":8785,"33338":17328,"33339":9382,"33340":14900,"33341":17561,"33342":14854,"33343":1217,"33344":1045,"33345":686,"33346":16849,"33347":8201,"33348":8600,"33349":16506,"33350":80,"33351":2594,"33352":5969,"33353":3934,"33354":14029,"33355":5639,"33356":16538,"33357":8706,"33358":6187,"33359":17331,"33360":9302,"33361":7403,"33362":16959,"33363":6474,"33364":9170,"33365":2646,"33366":5813,"33367":17370,"33368":6712,"33369":17997,"33370":97,"33371":7857,"33372":6813,"33373":17064,"33374":17072,"33375":16557,"33376":13564,"33377":6282,"33378":16217,"33379":17484,"33380":9649,"33381":14899,"33382":18028,"33383":4138,"33384":10378,"33385":3645,"33386":8315,"33387":16706,"33388":13870,"33389":10262,"33390":708,"33391":10395,"33392":15952,"33393":8589,"33394":18116,"33395":1898,"33396":8525,"33397":15321,"33398":10508,"33399":15783,"33400":10603,"33401":1722,"33402":441,"33403":14794,"33404":10266,"33405":9878,"33406":4061,"33407":17366,"33408":13132,"33409":3372,"33410":6371,"33411":13140,"33412":16660,"33413":14149,"33414":9603,"33415":16360,"33416":1963,"33417":18179,"33418":1003,"33419":15040,"33420":11869,"33421":16654,"33422":1065,"33423":6740,"33424":17908,"33425":10151,"33426":7518,"33427":2037,"33428":1091,"33429":15158,"33430":12039,"33431":13906,"33432":6205,"33433":6704,"33434":13950,"33435":15278,"33436":13391,"33437":7901,"33438":18339,"33439":2403,"33440":12656,"33441":5837,"33442":4880,"33443":5439,"33444":5242,"33445":6578,"33446":14526,"33447":2734,"33448":17125,"33449":6075,"33450":14801,"33451":17986,"33452":11598,"33453":6536,"33454":38,"33455":15043,"33456":330,"33457":6029,"33458":452,"33459":1855,"33460":12114,"33461":7678,"33462":2154,"33463":3082,"33464":14864,"33465":6907,"33466":12741,"33467":17296,"33468":16119,"33469":2046,"33470":16863,"33471":1388,"33472":13912,"33473":1787,"33474":14036,"33475":4595,"33476":17968,"33477":16056,"33478":14842,"33479":4207,"33480":13418,"33481":2191,"33482":4348,"33483":13335,"33484":16515,"33485":10322,"33486":13181,"33487":14710,"33488":5019,"33489":5023,"33490":3034,"33491":10041,"33492":9956,"33493":257,"33494":13031,"33495":13059,"33496":3730,"33497":15928,"33498":4288,"33499":18081,"33500":205,"33501":6553,"33502":6463,"33503":339,"33504":2690,"33505":8048,"33506":13973,"33507":12613,"33508":14917,"33509":2987,"33510":15664,"33511":5332,"33512":11721,"33513":13055,"33514":18006,"33515":750,"33516":1265,"33517":10800,"33518":3556,"33519":6931,"33520":5262,"33521":8555,"33522":4013,"33523":12621,"33524":10676,"33525":6878,"33526":183,"33527":10224,"33528":15122,"33529":11518,"33530":15460,"33531":18116,"33532":8510,"33533":10995,"33534":15569,"33535":5,"33536":17253,"33537":10745,"33538":1214,"33539":7481,"33540":2933,"33541":15996,"33542":1336,"33543":6137,"33544":17,"33545":2997,"33546":8000,"33547":18120,"33548":16525,"33549":13080,"33550":14420,"33551":3487,"33552":9206,"33553":7427,"33554":2575,"33555":11209,"33556":17803,"33557":10685,"33558":6605,"33559":2907,"33560":11639,"33561":4920,"33562":15037,"33563":5444,"33564":14447,"33565":8958,"33566":13325,"33567":16774,"33568":15355,"33569":6584,"33570":1731,"33571":771,"33572":5207,"33573":17195,"33574":10014,"33575":12634,"33576":2620,"33577":16653,"33578":5796,"33579":7963,"33580":6716,"33581":9723,"33582":2709,"33583":5340,"33584":850,"33585":2847,"33586":14042,"33587":13154,"33588":10798,"33589":17738,"33590":16161,"33591":1565,"33592":1082,"33593":13354,"33594":13471,"33595":11867,"33596":15069,"33597":11086,"33598":4858,"33599":16721,"33600":4794,"33601":3019,"33602":9022,"33603":15592,"33604":14057,"33605":2950,"33606":11278,"33607":3976,"33608":2656,"33609":15205,"33610":16164,"33611":4542,"33612":9914,"33613":6456,"33614":1120,"33615":5094,"33616":1378,"33617":1924,"33618":2560,"33619":7870,"33620":10385,"33621":962,"33622":10581,"33623":14248,"33624":7046,"33625":13084,"33626":14132,"33627":4421,"33628":9953,"33629":2331,"33630":15510,"33631":15798,"33632":2291,"33633":9613,"33634":6835,"33635":9560,"33636":9177,"33637":3439,"33638":9618,"33639":3954,"33640":13482,"33641":1591,"33642":10911,"33643":18078,"33644":3893,"33645":7993,"33646":5273,"33647":9428,"33648":15421,"33649":9791,"33650":15430,"33651":13152,"33652":5104,"33653":275,"33654":1373,"33655":5174,"33656":3015,"33657":6408,"33658":13689,"33659":13494,"33660":11617,"33661":142,"33662":9271,"33663":10919,"33664":13811,"33665":8114,"33666":7794,"33667":17017,"33668":9935,"33669":12478,"33670":5252,"33671":6310,"33672":13164,"33673":15489,"33674":1716,"33675":18191,"33676":4045,"33677":15830,"33678":80,"33679":3459,"33680":579,"33681":14437,"33682":17602,"33683":966,"33684":7989,"33685":14950,"33686":17392,"33687":15001,"33688":2020,"33689":14253,"33690":6884,"33691":7466,"33692":16779,"33693":13583,"33694":11090,"33695":11238,"33696":8437,"33697":4495,"33698":11924,"33699":11311,"33700":2519,"33701":16536,"33702":12995,"33703":9308,"33704":2404,"33705":5406,"33706":13725,"33707":11157,"33708":18323,"33709":10203,"33710":15086,"33711":14083,"33712":16351,"33713":4871,"33714":2288,"33715":6770,"33716":5475,"33717":4333,"33718":17222,"33719":2115,"33720":9440,"33721":11915,"33722":5040,"33723":7296,"33724":1922,"33725":4518,"33726":16351,"33727":2014,"33728":6002,"33729":14297,"33730":13879,"33731":4263,"33732":16579,"33733":4687,"33734":15610,"33735":10856,"33736":15440,"33737":16474,"33738":16925,"33739":918,"33740":16160,"33741":15598,"33742":1151,"33743":16993,"33744":17525,"33745":3385,"33746":14274,"33747":8789,"33748":14896,"33749":6713,"33750":15548,"33751":14484,"33752":7825,"33753":7655,"33754":9321,"33755":8731,"33756":9234,"33757":4004,"33758":7078,"33759":1035,"33760":2973,"33761":14897,"33762":6744,"33763":966,"33764":9252,"33765":4138,"33766":16945,"33767":7121,"33768":18180,"33769":16182,"33770":4786,"33771":12790,"33772":5184,"33773":3016,"33774":2498,"33775":3483,"33776":3301,"33777":2360,"33778":12519,"33779":5065,"33780":16677,"33781":15992,"33782":2432,"33783":11759,"33784":6920,"33785":15538,"33786":12473,"33787":9870,"33788":3511,"33789":1818,"33790":14406,"33791":5186,"33792":8593,"33793":3736,"33794":11601,"33795":4016,"33796":12044,"33797":15760,"33798":6059,"33799":17457,"33800":2713,"33801":327,"33802":9724,"33803":3092,"33804":11738,"33805":7822,"33806":1401,"33807":12,"33808":5121,"33809":17429,"33810":2809,"33811":1499,"33812":15993,"33813":17833,"33814":17185,"33815":15044,"33816":6696,"33817":14374,"33818":10431,"33819":9734,"33820":5631,"33821":12966,"33822":38,"33823":10446,"33824":299,"33825":11708,"33826":7464,"33827":12434,"33828":13858,"33829":7054,"33830":1953,"33831":17428,"33832":5714,"33833":9207,"33834":14266,"33835":1928,"33836":7279,"33837":15959,"33838":10500,"33839":1131,"33840":2228,"33841":12118,"33842":2800,"33843":3262,"33844":11451,"33845":13334,"33846":3250,"33847":3187,"33848":2489,"33849":7034,"33850":142,"33851":12066,"33852":13588,"33853":6116,"33854":8399,"33855":15684,"33856":3284,"33857":11981,"33858":12854,"33859":9464,"33860":1234,"33861":10142,"33862":9955,"33863":4467,"33864":920,"33865":913,"33866":1776,"33867":6171,"33868":3798,"33869":15287,"33870":1211,"33871":6126,"33872":15820,"33873":17268,"33874":2834,"33875":607,"33876":14771,"33877":8372,"33878":3909,"33879":11696,"33880":14770,"33881":8247,"33882":4114,"33883":16284,"33884":8516,"33885":10756,"33886":448,"33887":7153,"33888":6532,"33889":14450,"33890":6775,"33891":5984,"33892":6401,"33893":8127,"33894":13864,"33895":15646,"33896":4190,"33897":10055,"33898":3054,"33899":7916,"33900":9759,"33901":22,"33902":3535,"33903":10929,"33904":13475,"33905":3249,"33906":5468,"33907":3643,"33908":634,"33909":5169,"33910":6788,"33911":14612,"33912":13527,"33913":6143,"33914":7077,"33915":13000,"33916":13712,"33917":12715,"33918":14803,"33919":14196,"33920":4081,"33921":6451,"33922":8912,"33923":15530,"33924":5077,"33925":3677,"33926":10833,"33927":12522,"33928":6960,"33929":7076,"33930":12032,"33931":8295,"33932":5771,"33933":12712,"33934":8357,"33935":8414,"33936":12641,"33937":16977,"33938":1870,"33939":12851,"33940":13468,"33941":11199,"33942":14827,"33943":1165,"33944":13244,"33945":7094,"33946":15838,"33947":14871,"33948":3749,"33949":11649,"33950":11240,"33951":5402,"33952":5681,"33953":5190,"33954":15485,"33955":11404,"33956":14554,"33957":523,"33958":9035,"33959":10669,"33960":8603,"33961":3048,"33962":13252,"33963":12939,"33964":5160,"33965":14904,"33966":17130,"33967":13193,"33968":2327,"33969":18059,"33970":16200,"33971":9707,"33972":9963,"33973":7900,"33974":9239,"33975":14999,"33976":11161,"33977":2677,"33978":11858,"33979":16996,"33980":5512,"33981":14427,"33982":8671,"33983":1916,"33984":5973,"33985":13028,"33986":3630,"33987":9978,"33988":9856,"33989":1866,"33990":9119,"33991":6434,"33992":6555,"33993":18292,"33994":13021,"33995":1601,"33996":15777,"33997":2976,"33998":2423,"33999":283,"34000":17870,"34001":5862,"34002":14545,"34003":1957,"34004":15626,"34005":8750,"34006":2700,"34007":15513,"34008":10377,"34009":17264,"34010":3923,"34011":16798,"34012":5641,"34013":5113,"34014":14903,"34015":7896,"34016":12618,"34017":14737,"34018":16310,"34019":14058,"34020":2707,"34021":9688,"34022":17926,"34023":8071,"34024":9915,"34025":12916,"34026":17025,"34027":2945,"34028":11475,"34029":13109,"34030":16617,"34031":2366,"34032":9867,"34033":5516,"34034":6779,"34035":9013,"34036":12877,"34037":12367,"34038":18080,"34039":13930,"34040":3675,"34041":10452,"34042":5849,"34043":16332,"34044":3394,"34045":4901,"34046":1189,"34047":17551,"34048":11232,"34049":1891,"34050":10528,"34051":14803,"34052":2282,"34053":1651,"34054":6848,"34055":6523,"34056":7060,"34057":3959,"34058":3694,"34059":10377,"34060":7088,"34061":226,"34062":487,"34063":9135,"34064":3702,"34065":10936,"34066":2354,"34067":11961,"34068":9946,"34069":14604,"34070":261,"34071":1271,"34072":9068,"34073":7214,"34074":1276,"34075":4075,"34076":5224,"34077":16977,"34078":8790,"34079":9123,"34080":15145,"34081":2408,"34082":14082,"34083":7092,"34084":11565,"34085":15884,"34086":12938,"34087":4940,"34088":5373,"34089":8488,"34090":625,"34091":16680,"34092":9676,"34093":4477,"34094":2353,"34095":959,"34096":4867,"34097":2596,"34098":11242,"34099":1547,"34100":11417,"34101":16259,"34102":8929,"34103":4981,"34104":1237,"34105":7930,"34106":14049,"34107":16932,"34108":16300,"34109":6333,"34110":1091,"34111":3372,"34112":16490,"34113":10398,"34114":18198,"34115":11419,"34116":17245,"34117":144,"34118":10971,"34119":14240,"34120":16952,"34121":7078,"34122":15127,"34123":17845,"34124":13506,"34125":18056,"34126":5619,"34127":1993,"34128":6250,"34129":5253,"34130":844,"34131":10516,"34132":18150,"34133":475,"34134":9149,"34135":1822,"34136":16741,"34137":15196,"34138":2864,"34139":9755,"34140":16714,"34141":2309,"34142":8886,"34143":3743,"34144":2220,"34145":9785,"34146":15391,"34147":5405,"34148":9898,"34149":10037,"34150":4404,"34151":12837,"34152":2790,"34153":12080,"34154":8625,"34155":17155,"34156":12586,"34157":9048,"34158":17305,"34159":4879,"34160":8015,"34161":1531,"34162":7990,"34163":2196,"34164":13425,"34165":2919,"34166":8739,"34167":13239,"34168":12982,"34169":13624,"34170":6264,"34171":10365,"34172":14309,"34173":3878,"34174":4652,"34175":6473,"34176":4519,"34177":5646,"34178":16468,"34179":14757,"34180":5214,"34181":3669,"34182":11,"34183":10176,"34184":1745,"34185":14598,"34186":491,"34187":6663,"34188":5167,"34189":8236,"34190":5103,"34191":2557,"34192":18340,"34193":16963,"34194":14922,"34195":16610,"34196":13411,"34197":7871,"34198":18309,"34199":9774,"34200":8333,"34201":16819,"34202":6640,"34203":15284,"34204":4703,"34205":5555,"34206":10128,"34207":1294,"34208":2496,"34209":6267,"34210":2728,"34211":15896,"34212":16071,"34213":13525,"34214":4922,"34215":12442,"34216":3237,"34217":8510,"34218":10289,"34219":17871,"34220":9136,"34221":9863,"34222":13373,"34223":15704,"34224":18302,"34225":2364,"34226":4480,"34227":2792,"34228":3816,"34229":9308,"34230":5842,"34231":10106,"34232":13539,"34233":7495,"34234":2022,"34235":14876,"34236":9681,"34237":18132,"34238":8197,"34239":13862,"34240":6182,"34241":7830,"34242":2590,"34243":8134,"34244":13413,"34245":10484,"34246":7798,"34247":16689,"34248":18336,"34249":10575,"34250":1436,"34251":1405,"34252":106,"34253":2399,"34254":18264,"34255":601,"34256":9889,"34257":10480,"34258":7400,"34259":18360,"34260":15300,"34261":14283,"34262":16026,"34263":8137,"34264":997,"34265":11616,"34266":7081,"34267":994,"34268":18028,"34269":15722,"34270":6333,"34271":14883,"34272":15731,"34273":11274,"34274":12548,"34275":12547,"34276":15820,"34277":13482,"34278":4140,"34279":7415,"34280":8842,"34281":4811,"34282":10090,"34283":15959,"34284":9153,"34285":7595,"34286":14235,"34287":8519,"34288":13656,"34289":2721,"34290":16631,"34291":9834,"34292":722,"34293":8871,"34294":5370,"34295":7205,"34296":14421,"34297":16402,"34298":1361,"34299":10407,"34300":49,"34301":2606,"34302":4001,"34303":10487,"34304":11880,"34305":17851,"34306":5264,"34307":17540,"34308":3300,"34309":17573,"34310":17584,"34311":9478,"34312":16858,"34313":8847,"34314":4087,"34315":1711,"34316":2139,"34317":16941,"34318":8748,"34319":7101,"34320":11923,"34321":12755,"34322":11325,"34323":1581,"34324":7295,"34325":13101,"34326":9284,"34327":18093,"34328":5665,"34329":10429,"34330":14233,"34331":3876,"34332":14044,"34333":11033,"34334":15945,"34335":9558,"34336":8098,"34337":8568,"34338":6827,"34339":2734,"34340":5655,"34341":7484,"34342":9080,"34343":6787,"34344":3685,"34345":16981,"34346":7791,"34347":2405,"34348":7703,"34349":4206,"34350":5758,"34351":17369,"34352":5223,"34353":3482,"34354":15872,"34355":15892,"34356":17284,"34357":1958,"34358":16263,"34359":6686,"34360":16796,"34361":11096,"34362":7781,"34363":5348,"34364":18167,"34365":884,"34366":11563,"34367":15850,"34368":4495,"34369":2862,"34370":10696,"34371":6344,"34372":11640,"34373":7610,"34374":13352,"34375":2030,"34376":6966,"34377":2064,"34378":3978,"34379":1620,"34380":17664,"34381":2581,"34382":3145,"34383":7379,"34384":15049,"34385":10857,"34386":1408,"34387":7798,"34388":5477,"34389":11429,"34390":70,"34391":1156,"34392":18190,"34393":427,"34394":4320,"34395":16534,"34396":18262,"34397":15811,"34398":2410,"34399":8381,"34400":18241,"34401":10160,"34402":1388,"34403":15754,"34404":2710,"34405":7745,"34406":14618,"34407":1892,"34408":17583,"34409":3691,"34410":6420,"34411":3032,"34412":15038,"34413":18147,"34414":539,"34415":4610,"34416":10009,"34417":2178,"34418":58,"34419":7183,"34420":5950,"34421":3875,"34422":12590,"34423":897,"34424":2613,"34425":7668,"34426":17071,"34427":7467,"34428":6036,"34429":5407,"34430":14909,"34431":11585,"34432":12301,"34433":5883,"34434":9436,"34435":5746,"34436":6985,"34437":16241,"34438":16331,"34439":12735,"34440":9563,"34441":11087,"34442":12543,"34443":14520,"34444":5974,"34445":3531,"34446":8733,"34447":16294,"34448":6915,"34449":748,"34450":8456,"34451":6415,"34452":7363,"34453":14903,"34454":7452,"34455":7885,"34456":13757,"34457":17639,"34458":11303,"34459":14432,"34460":3237,"34461":8880,"34462":13678,"34463":8484,"34464":2477,"34465":1529,"34466":6549,"34467":7683,"34468":1526,"34469":13425,"34470":13727,"34471":9943,"34472":11605,"34473":15172,"34474":10107,"34475":16467,"34476":9897,"34477":15726,"34478":12044,"34479":11594,"34480":11469,"34481":6973,"34482":16871,"34483":9005,"34484":2005,"34485":8019,"34486":15978,"34487":17779,"34488":10223,"34489":14529,"34490":3206,"34491":1014,"34492":18134,"34493":5497,"34494":11399,"34495":4005,"34496":16703,"34497":17576,"34498":17060,"34499":7360,"34500":15037,"34501":1374,"34502":16158,"34503":3220,"34504":17986,"34505":6901,"34506":8687,"34507":110,"34508":17011,"34509":12863,"34510":12045,"34511":16093,"34512":15308,"34513":11380,"34514":13886,"34515":1067,"34516":825,"34517":14202,"34518":1711,"34519":13774,"34520":10767,"34521":12826,"34522":1624,"34523":16769,"34524":882,"34525":10889,"34526":3861,"34527":16089,"34528":996,"34529":4417,"34530":16894,"34531":670,"34532":5672,"34533":3416,"34534":9153,"34535":5601,"34536":16061,"34537":15723,"34538":13198,"34539":11613,"34540":9169,"34541":7107,"34542":10430,"34543":14383,"34544":1714,"34545":14606,"34546":15629,"34547":4884,"34548":14817,"34549":4675,"34550":643,"34551":2146,"34552":13570,"34553":15428,"34554":16510,"34555":13353,"34556":5032,"34557":6908,"34558":3326,"34559":6636,"34560":8957,"34561":5157,"34562":6172,"34563":4973,"34564":2278,"34565":5223,"34566":5552,"34567":783,"34568":947,"34569":8239,"34570":2299,"34571":8494,"34572":17291,"34573":7359,"34574":16800,"34575":15420,"34576":10465,"34577":5424,"34578":9671,"34579":15733,"34580":1447,"34581":11212,"34582":15754,"34583":10503,"34584":6617,"34585":16259,"34586":13423,"34587":17185,"34588":17932,"34589":16845,"34590":5646,"34591":5308,"34592":5613,"34593":8051,"34594":2162,"34595":5898,"34596":14693,"34597":8530,"34598":5908,"34599":6016,"34600":11479,"34601":14378,"34602":14576,"34603":8958,"34604":7647,"34605":5625,"34606":2954,"34607":18314,"34608":10468,"34609":7321,"34610":13335,"34611":5980,"34612":17288,"34613":13742,"34614":2368,"34615":16943,"34616":14848,"34617":15065,"34618":2969,"34619":17391,"34620":840,"34621":11358,"34622":17634,"34623":17763,"34624":15577,"34625":14923,"34626":720,"34627":6804,"34628":6835,"34629":11624,"34630":1688,"34631":7328,"34632":3470,"34633":9823,"34634":6358,"34635":7261,"34636":1158,"34637":5393,"34638":4432,"34639":584,"34640":1014,"34641":16061,"34642":1287,"34643":14198,"34644":17234,"34645":3917,"34646":1558,"34647":10035,"34648":5479,"34649":4615,"34650":14094,"34651":2655,"34652":15202,"34653":9743,"34654":8890,"34655":3543,"34656":5399,"34657":4641,"34658":16482,"34659":10910,"34660":6139,"34661":17171,"34662":9721,"34663":6920,"34664":7257,"34665":13545,"34666":12997,"34667":14231,"34668":1849,"34669":4833,"34670":5553,"34671":17221,"34672":3471,"34673":17924,"34674":12372,"34675":14361,"34676":369,"34677":11579,"34678":8805,"34679":9308,"34680":5973,"34681":9011,"34682":2880,"34683":11502,"34684":16572,"34685":1142,"34686":7895,"34687":5954,"34688":14974,"34689":2717,"34690":17387,"34691":5382,"34692":9423,"34693":13828,"34694":13509,"34695":6620,"34696":5137,"34697":12318,"34698":639,"34699":11310,"34700":5376,"34701":16848,"34702":11980,"34703":1123,"34704":4479,"34705":1622,"34706":4925,"34707":3321,"34708":14367,"34709":9520,"34710":18097,"34711":8127,"34712":17969,"34713":5430,"34714":13694,"34715":14023,"34716":1107,"34717":12033,"34718":9641,"34719":11411,"34720":17168,"34721":9621,"34722":9333,"34723":3149,"34724":13664,"34725":16113,"34726":987,"34727":12985,"34728":5601,"34729":16517,"34730":3371,"34731":5900,"34732":7869,"34733":546,"34734":5305,"34735":10873,"34736":16964,"34737":4946,"34738":3058,"34739":18176,"34740":15855,"34741":883,"34742":6515,"34743":11466,"34744":13679,"34745":3835,"34746":10123,"34747":1117,"34748":4767,"34749":13434,"34750":15674,"34751":15747,"34752":637,"34753":5331,"34754":12887,"34755":5662,"34756":12409,"34757":8398,"34758":2884,"34759":10264,"34760":14620,"34761":9223,"34762":364,"34763":319,"34764":9104,"34765":10121,"34766":446,"34767":4405,"34768":12898,"34769":10055,"34770":12054,"34771":5887,"34772":10411,"34773":12018,"34774":6788,"34775":10981,"34776":7377,"34777":7625,"34778":17107,"34779":2875,"34780":6362,"34781":14992,"34782":10508,"34783":16807,"34784":3680,"34785":12186,"34786":14484,"34787":11530,"34788":14903,"34789":3529,"34790":6812,"34791":9982,"34792":16049,"34793":7511,"34794":12300,"34795":11599,"34796":12167,"34797":14753,"34798":12229,"34799":793,"34800":4793,"34801":5264,"34802":7007,"34803":16782,"34804":14825,"34805":4980,"34806":6715,"34807":8171,"34808":17773,"34809":7930,"34810":2929,"34811":14848,"34812":6171,"34813":11489,"34814":153,"34815":725,"34816":11102,"34817":4046,"34818":8136,"34819":4681,"34820":8032,"34821":9721,"34822":12865,"34823":6824,"34824":16726,"34825":5839,"34826":9659,"34827":8888,"34828":12343,"34829":1009,"34830":17901,"34831":16186,"34832":4110,"34833":16203,"34834":5009,"34835":1551,"34836":11898,"34837":3164,"34838":10286,"34839":13314,"34840":15785,"34841":1810,"34842":13931,"34843":12535,"34844":10385,"34845":15123,"34846":7856,"34847":777,"34848":16479,"34849":2878,"34850":17436,"34851":4488,"34852":116,"34853":8419,"34854":2751,"34855":356,"34856":5055,"34857":8355,"34858":2338,"34859":2371,"34860":11367,"34861":9659,"34862":1097,"34863":13588,"34864":8939,"34865":2087,"34866":14445,"34867":12064,"34868":9565,"34869":5463,"34870":12592,"34871":16652,"34872":7594,"34873":15232,"34874":17146,"34875":6733,"34876":1372,"34877":13073,"34878":10405,"34879":14618,"34880":4234,"34881":11986,"34882":6078,"34883":8541,"34884":2171,"34885":10185,"34886":17950,"34887":10683,"34888":6480,"34889":4806,"34890":10256,"34891":16506,"34892":11751,"34893":9631,"34894":7711,"34895":6054,"34896":6031,"34897":13955,"34898":9204,"34899":16147,"34900":6143,"34901":7616,"34902":6803,"34903":3048,"34904":8879,"34905":1910,"34906":9386,"34907":17349,"34908":1450,"34909":6843,"34910":2694,"34911":3095,"34912":14629,"34913":7311,"34914":15068,"34915":10390,"34916":104,"34917":11730,"34918":14633,"34919":9515,"34920":13791,"34921":13688,"34922":6286,"34923":5375,"34924":3339,"34925":14494,"34926":2566,"34927":7963,"34928":7494,"34929":17798,"34930":9026,"34931":8283,"34932":13644,"34933":15345,"34934":7737,"34935":5576,"34936":2830,"34937":14456,"34938":1023,"34939":15751,"34940":17007,"34941":6422,"34942":14850,"34943":4827,"34944":881,"34945":18201,"34946":11173,"34947":16692,"34948":14904,"34949":17893,"34950":3115,"34951":16573,"34952":15700,"34953":9337,"34954":4516,"34955":8931,"34956":15208,"34957":13115,"34958":8509,"34959":6832,"34960":12328,"34961":11258,"34962":17327,"34963":12873,"34964":4289,"34965":2699,"34966":9817,"34967":15813,"34968":12636,"34969":2100,"34970":5025,"34971":17252,"34972":12333,"34973":5806,"34974":10703,"34975":1777,"34976":13207,"34977":17563,"34978":8102,"34979":14668,"34980":11607,"34981":13179,"34982":5522,"34983":12000,"34984":15602,"34985":14903,"34986":3683,"34987":5521,"34988":16368,"34989":18241,"34990":3237,"34991":11732,"34992":9627,"34993":67,"34994":3068,"34995":13339,"34996":13938,"34997":12057,"34998":6922,"34999":1666,"35000":16418,"35001":6694,"35002":2787,"35003":13312,"35004":17577,"35005":13502,"35006":4421,"35007":2254,"35008":2893,"35009":17894,"35010":2249,"35011":2608,"35012":1845,"35013":1050,"35014":9274,"35015":4995,"35016":3829,"35017":8683,"35018":8808,"35019":7070,"35020":2717,"35021":15958,"35022":1585,"35023":6405,"35024":6730,"35025":9486,"35026":5465,"35027":9785,"35028":489,"35029":15915,"35030":4458,"35031":11765,"35032":1877,"35033":1705,"35034":7760,"35035":11573,"35036":5555,"35037":1531,"35038":11826,"35039":16029,"35040":11805,"35041":12497,"35042":544,"35043":5454,"35044":14064,"35045":10291,"35046":3156,"35047":9889,"35048":5089,"35049":14207,"35050":114,"35051":14706,"35052":1280,"35053":5582,"35054":13231,"35055":5489,"35056":5327,"35057":6660,"35058":14792,"35059":13165,"35060":2556,"35061":8760,"35062":18077,"35063":2292,"35064":517,"35065":2242,"35066":16143,"35067":17071,"35068":13639,"35069":1210,"35070":4174,"35071":5423,"35072":2520,"35073":14216,"35074":17614,"35075":15242,"35076":15925,"35077":9466,"35078":99,"35079":5301,"35080":11031,"35081":16711,"35082":12446,"35083":2317,"35084":4047,"35085":5515,"35086":4617,"35087":433,"35088":11377,"35089":6500,"35090":4901,"35091":9169,"35092":16387,"35093":16854,"35094":11532,"35095":6458,"35096":15979,"35097":7973,"35098":8139,"35099":15532,"35100":7346,"35101":18259,"35102":12310,"35103":13425,"35104":3122,"35105":12243,"35106":12331,"35107":5572,"35108":4221,"35109":12986,"35110":11552,"35111":11637,"35112":15456,"35113":2609,"35114":14741,"35115":1124,"35116":3418,"35117":12660,"35118":14305,"35119":6108,"35120":2469,"35121":10356,"35122":4507,"35123":6791,"35124":6758,"35125":10117,"35126":5723,"35127":9900,"35128":5283,"35129":10737,"35130":11154,"35131":16130,"35132":17616,"35133":7256,"35134":8146,"35135":14088,"35136":9809,"35137":13773,"35138":17131,"35139":4857,"35140":9632,"35141":10806,"35142":6520,"35143":3260,"35144":16934,"35145":7678,"35146":2599,"35147":7445,"35148":3205,"35149":1128,"35150":14987,"35151":13165,"35152":3482,"35153":13034,"35154":8565,"35155":9097,"35156":272,"35157":11547,"35158":15868,"35159":13352,"35160":12739,"35161":10220,"35162":432,"35163":16231,"35164":3121,"35165":1879,"35166":17511,"35167":4663,"35168":13891,"35169":16436,"35170":5456,"35171":15186,"35172":11704,"35173":8210,"35174":15468,"35175":15330,"35176":7191,"35177":2646,"35178":4369,"35179":13263,"35180":8572,"35181":15502,"35182":11038,"35183":7544,"35184":9378,"35185":17509,"35186":10505,"35187":15938,"35188":569,"35189":14727,"35190":14164,"35191":15941,"35192":5624,"35193":14526,"35194":8409,"35195":9729,"35196":4623,"35197":6314,"35198":5026,"35199":5757,"35200":1852,"35201":241,"35202":13943,"35203":13671,"35204":9592,"35205":9541,"35206":3610,"35207":13464,"35208":13248,"35209":6270,"35210":10202,"35211":47,"35212":15673,"35213":2854,"35214":14082,"35215":16090,"35216":9783,"35217":15096,"35218":16530,"35219":6459,"35220":15169,"35221":10887,"35222":16233,"35223":16390,"35224":15452,"35225":12185,"35226":16026,"35227":6669,"35228":6617,"35229":14627,"35230":1559,"35231":2152,"35232":13942,"35233":4959,"35234":16790,"35235":14914,"35236":15653,"35237":15333,"35238":16923,"35239":6721,"35240":4407,"35241":7063,"35242":8585,"35243":12997,"35244":10048,"35245":17325,"35246":9064,"35247":2488,"35248":4511,"35249":12198,"35250":3787,"35251":10665,"35252":4151,"35253":16185,"35254":12017,"35255":17010,"35256":9152,"35257":4409,"35258":13409,"35259":16300,"35260":10486,"35261":5128,"35262":12068,"35263":17773,"35264":18099,"35265":565,"35266":16184,"35267":3261,"35268":14241,"35269":17303,"35270":13909,"35271":6728,"35272":1587,"35273":13721,"35274":9406,"35275":5925,"35276":16956,"35277":14460,"35278":12472,"35279":8831,"35280":12918,"35281":610,"35282":10869,"35283":3028,"35284":8382,"35285":4501,"35286":11736,"35287":17390,"35288":3013,"35289":8201,"35290":8835,"35291":3727,"35292":16250,"35293":2106,"35294":5298,"35295":5788,"35296":6296,"35297":17074,"35298":13052,"35299":14055,"35300":501,"35301":5942,"35302":413,"35303":14275,"35304":507,"35305":4604,"35306":4423,"35307":17109,"35308":8658,"35309":12920,"35310":12402,"35311":14230,"35312":3893,"35313":887,"35314":10346,"35315":15529,"35316":18243,"35317":602,"35318":18292,"35319":16062,"35320":8939,"35321":9422,"35322":15381,"35323":4515,"35324":14742,"35325":6493,"35326":10656,"35327":12551,"35328":12180,"35329":15827,"35330":7981,"35331":3970,"35332":18008,"35333":1832,"35334":9133,"35335":16931,"35336":5110,"35337":15392,"35338":14649,"35339":17153,"35340":10400,"35341":15812,"35342":5250,"35343":12223,"35344":6318,"35345":17161,"35346":10994,"35347":5639,"35348":10688,"35349":8934,"35350":4071,"35351":9894,"35352":1319,"35353":2295,"35354":16364,"35355":7079,"35356":16728,"35357":12140,"35358":104,"35359":10917,"35360":8239,"35361":12226,"35362":2694,"35363":8438,"35364":4957,"35365":15748,"35366":16172,"35367":1125,"35368":15013,"35369":18067,"35370":6827,"35371":2550,"35372":6049,"35373":702,"35374":121,"35375":9930,"35376":17918,"35377":15525,"35378":1149,"35379":2347,"35380":4072,"35381":7110,"35382":16766,"35383":977,"35384":12170,"35385":9645,"35386":11757,"35387":3692,"35388":15874,"35389":12236,"35390":8473,"35391":4295,"35392":776,"35393":1460,"35394":17466,"35395":11458,"35396":15324,"35397":6979,"35398":2276,"35399":3628,"35400":12489,"35401":1779,"35402":4218,"35403":1388,"35404":15683,"35405":16925,"35406":2454,"35407":6398,"35408":6730,"35409":16356,"35410":5162,"35411":6729,"35412":11706,"35413":11920,"35414":3947,"35415":6654,"35416":13387,"35417":894,"35418":15347,"35419":231,"35420":3437,"35421":12934,"35422":16027,"35423":7017,"35424":14697,"35425":12824,"35426":12596,"35427":3196,"35428":11831,"35429":3072,"35430":1707,"35431":17629,"35432":15965,"35433":13756,"35434":6519,"35435":2972,"35436":3294,"35437":6882,"35438":12259,"35439":8282,"35440":5519,"35441":11970,"35442":5647,"35443":1529,"35444":18320,"35445":11621,"35446":2138,"35447":10064,"35448":13661,"35449":2955,"35450":2416,"35451":2324,"35452":6827,"35453":7502,"35454":6910,"35455":3770,"35456":12182,"35457":16950,"35458":13591,"35459":569,"35460":14192,"35461":10751,"35462":4550,"35463":7147,"35464":2431,"35465":3599,"35466":1475,"35467":4932,"35468":8238,"35469":7384,"35470":7829,"35471":1518,"35472":4604,"35473":8223,"35474":501,"35475":4578,"35476":18314,"35477":3095,"35478":3420,"35479":10637,"35480":13974,"35481":12445,"35482":1938,"35483":5075,"35484":2388,"35485":17396,"35486":528,"35487":8209,"35488":10047,"35489":9124,"35490":15467,"35491":13318,"35492":11685,"35493":5577,"35494":12753,"35495":6309,"35496":8526,"35497":16558,"35498":13777,"35499":5541,"35500":676,"35501":7139,"35502":6804,"35503":15466,"35504":1913,"35505":12078,"35506":11325,"35507":17274,"35508":15700,"35509":11327,"35510":12964,"35511":5057,"35512":7795,"35513":17427,"35514":3945,"35515":4330,"35516":15136,"35517":1884,"35518":2676,"35519":5121,"35520":2794,"35521":13142,"35522":17904,"35523":5668,"35524":13882,"35525":3880,"35526":16623,"35527":7812,"35528":13535,"35529":7362,"35530":10072,"35531":4569,"35532":620,"35533":5234,"35534":14131,"35535":14550,"35536":16281,"35537":12165,"35538":10678,"35539":8458,"35540":7246,"35541":17218,"35542":7267,"35543":2003,"35544":16316,"35545":3604,"35546":7621,"35547":9218,"35548":18047,"35549":7385,"35550":3291,"35551":8725,"35552":8559,"35553":7956,"35554":6572,"35555":283,"35556":13014,"35557":14254,"35558":11842,"35559":1650,"35560":3575,"35561":5570,"35562":2308,"35563":6845,"35564":3098,"35565":11840,"35566":14196,"35567":1314,"35568":14416,"35569":6060,"35570":3223,"35571":16633,"35572":6736,"35573":17371,"35574":15644,"35575":8409,"35576":14342,"35577":4119,"35578":10078,"35579":17083,"35580":5821,"35581":10093,"35582":8576,"35583":13787,"35584":6100,"35585":4643,"35586":11170,"35587":7689,"35588":2629,"35589":137,"35590":13228,"35591":13680,"35592":6668,"35593":8011,"35594":3015,"35595":5938,"35596":5528,"35597":5083,"35598":944,"35599":6693,"35600":2725,"35601":78,"35602":16209,"35603":6477,"35604":16462,"35605":12489,"35606":15273,"35607":6336,"35608":803,"35609":4317,"35610":2233,"35611":8843,"35612":4879,"35613":17312,"35614":15568,"35615":16191,"35616":6013,"35617":571,"35618":547,"35619":11939,"35620":16083,"35621":12503,"35622":5875,"35623":3039,"35624":10238,"35625":3096,"35626":1441,"35627":10254,"35628":5379,"35629":16439,"35630":9913,"35631":15121,"35632":3576,"35633":12564,"35634":7373,"35635":14460,"35636":3929,"35637":7792,"35638":15647,"35639":4556,"35640":6750,"35641":12395,"35642":159,"35643":13509,"35644":13996,"35645":464,"35646":15757,"35647":17013,"35648":8187,"35649":17858,"35650":14466,"35651":16284,"35652":1520,"35653":11550,"35654":4088,"35655":3843,"35656":14382,"35657":14915,"35658":5423,"35659":1973,"35660":6010,"35661":7229,"35662":1159,"35663":4157,"35664":5800,"35665":5591,"35666":9007,"35667":11411,"35668":1399,"35669":15026,"35670":9781,"35671":18145,"35672":9810,"35673":13483,"35674":952,"35675":11556,"35676":228,"35677":9261,"35678":13350,"35679":17205,"35680":17377,"35681":9127,"35682":10996,"35683":7209,"35684":3283,"35685":6779,"35686":5564,"35687":10395,"35688":3187,"35689":4072,"35690":15914,"35691":13770,"35692":3586,"35693":4792,"35694":13077,"35695":2836,"35696":11028,"35697":3121,"35698":782,"35699":13329,"35700":9409,"35701":311,"35702":3575,"35703":3460,"35704":7682,"35705":3394,"35706":11874,"35707":4188,"35708":910,"35709":11701,"35710":9481,"35711":9256,"35712":14272,"35713":962,"35714":2064,"35715":2306,"35716":9538,"35717":6757,"35718":7432,"35719":7631,"35720":6252,"35721":6479,"35722":2808,"35723":9054,"35724":11872,"35725":15587,"35726":4922,"35727":17514,"35728":8948,"35729":8210,"35730":15540,"35731":15486,"35732":17372,"35733":2078,"35734":1591,"35735":17041,"35736":12536,"35737":10372,"35738":6329,"35739":3336,"35740":14863,"35741":1114,"35742":8107,"35743":5086,"35744":17090,"35745":3495,"35746":1827,"35747":12510,"35748":12361,"35749":5870,"35750":7402,"35751":2987,"35752":12407,"35753":17185,"35754":356,"35755":17994,"35756":12283,"35757":17707,"35758":13136,"35759":13908,"35760":12475,"35761":14745,"35762":4210,"35763":14988,"35764":2135,"35765":3187,"35766":3108,"35767":14154,"35768":4535,"35769":11854,"35770":1458,"35771":1338,"35772":9836,"35773":3396,"35774":2826,"35775":10375,"35776":12050,"35777":7803,"35778":3839,"35779":16438,"35780":3498,"35781":6121,"35782":4689,"35783":12356,"35784":16225,"35785":15472,"35786":9625,"35787":5640,"35788":13417,"35789":18019,"35790":426,"35791":6556,"35792":2248,"35793":15291,"35794":1413,"35795":2069,"35796":17787,"35797":16026,"35798":123,"35799":2682,"35800":4891,"35801":15716,"35802":10196,"35803":14881,"35804":17860,"35805":16890,"35806":7224,"35807":17509,"35808":7980,"35809":2918,"35810":2490,"35811":6926,"35812":5117,"35813":8923,"35814":7745,"35815":2172,"35816":12636,"35817":13163,"35818":13709,"35819":14181,"35820":18335,"35821":7774,"35822":12418,"35823":12927,"35824":5893,"35825":17973,"35826":291,"35827":17989,"35828":6388,"35829":15347,"35830":18182,"35831":17327,"35832":8070,"35833":15342,"35834":4542,"35835":9141,"35836":13718,"35837":8115,"35838":9722,"35839":6281,"35840":4022,"35841":8208,"35842":15467,"35843":17909,"35844":17343,"35845":8505,"35846":6203,"35847":7625,"35848":4132,"35849":1492,"35850":10918,"35851":3449,"35852":2991,"35853":17204,"35854":13305,"35855":5928,"35856":12329,"35857":12092,"35858":7217,"35859":14263,"35860":4365,"35861":12597,"35862":15592,"35863":18022,"35864":623,"35865":1326,"35866":17470,"35867":7857,"35868":4810,"35869":8643,"35870":6029,"35871":7266,"35872":12915,"35873":10946,"35874":8072,"35875":4391,"35876":11374,"35877":5605,"35878":15366,"35879":17207,"35880":13321,"35881":6147,"35882":11759,"35883":2778,"35884":3816,"35885":5149,"35886":7505,"35887":9535,"35888":11149,"35889":3563,"35890":6554,"35891":116,"35892":9889,"35893":17359,"35894":1727,"35895":4047,"35896":13924,"35897":11326,"35898":12707,"35899":17501,"35900":8975,"35901":9359,"35902":11328,"35903":7234,"35904":16549,"35905":5769,"35906":12412,"35907":10358,"35908":11520,"35909":9013,"35910":5584,"35911":14973,"35912":17731,"35913":12183,"35914":17496,"35915":12899,"35916":14875,"35917":13807,"35918":17952,"35919":3520,"35920":10797,"35921":4628,"35922":6183,"35923":151,"35924":1578,"35925":3752,"35926":10311,"35927":809,"35928":7606,"35929":16839,"35930":13261,"35931":14170,"35932":12166,"35933":7207,"35934":3786,"35935":1870,"35936":4433,"35937":18143,"35938":5503,"35939":16832,"35940":7744,"35941":8931,"35942":13760,"35943":16868,"35944":5108,"35945":9028,"35946":14475,"35947":3830,"35948":13387,"35949":2444,"35950":11518,"35951":12163,"35952":11495,"35953":12997,"35954":11930,"35955":10409,"35956":16592,"35957":17475,"35958":16013,"35959":14791,"35960":7065,"35961":3538,"35962":11052,"35963":9367,"35964":1862,"35965":8895,"35966":17951,"35967":1381,"35968":8483,"35969":233,"35970":8499,"35971":3051,"35972":135,"35973":5813,"35974":6243,"35975":9651,"35976":8536,"35977":9868,"35978":3576,"35979":1319,"35980":8464,"35981":1081,"35982":3503,"35983":1875,"35984":13174,"35985":5142,"35986":12709,"35987":3280,"35988":7707,"35989":2683,"35990":9062,"35991":11122,"35992":17838,"35993":17034,"35994":958,"35995":14551,"35996":6822,"35997":15689,"35998":2831,"35999":11539,"36000":4,"36001":16683,"36002":4279,"36003":18098,"36004":4391,"36005":2794,"36006":11454,"36007":299,"36008":3381,"36009":12485,"36010":16715,"36011":15799,"36012":2054,"36013":11310,"36014":9951,"36015":16437,"36016":561,"36017":10466,"36018":7685,"36019":8657,"36020":12574,"36021":6769,"36022":13730,"36023":14668,"36024":12620,"36025":3601,"36026":14629,"36027":11267,"36028":4426,"36029":12913,"36030":9127,"36031":17636,"36032":10475,"36033":2739,"36034":17422,"36035":1448,"36036":5112,"36037":6313,"36038":18156,"36039":174,"36040":11603,"36041":5274,"36042":9020,"36043":15269,"36044":12659,"36045":4889,"36046":1704,"36047":13921,"36048":15999,"36049":13020,"36050":11916,"36051":17180,"36052":12880,"36053":16601,"36054":2172,"36055":5498,"36056":6481,"36057":13270,"36058":968,"36059":11651,"36060":11047,"36061":14789,"36062":17010,"36063":16760,"36064":17259,"36065":14824,"36066":13236,"36067":14726,"36068":4578,"36069":12345,"36070":6697,"36071":1405,"36072":9836,"36073":8399,"36074":9888,"36075":11595,"36076":7511,"36077":2912,"36078":2030,"36079":15938,"36080":17051,"36081":4161,"36082":17348,"36083":11775,"36084":17931,"36085":17755,"36086":4361,"36087":3961,"36088":1,"36089":17681,"36090":467,"36091":16455,"36092":6047,"36093":6607,"36094":8102,"36095":14592,"36096":11596,"36097":10806,"36098":15572,"36099":15514,"36100":2352,"36101":2801,"36102":1662,"36103":17620,"36104":7707,"36105":16997,"36106":14039,"36107":11857,"36108":10169,"36109":2963,"36110":7446,"36111":993,"36112":12883,"36113":11576,"36114":10016,"36115":3287,"36116":7985,"36117":15873,"36118":7983,"36119":18004,"36120":17487,"36121":15483,"36122":1929,"36123":17264,"36124":15906,"36125":6299,"36126":15415,"36127":12060,"36128":1498,"36129":5004,"36130":16482,"36131":2677,"36132":16581,"36133":16008,"36134":12126,"36135":7723,"36136":3020,"36137":3461,"36138":11380,"36139":9162,"36140":1375,"36141":15615,"36142":9213,"36143":7485,"36144":7871,"36145":8473,"36146":6234,"36147":1069,"36148":15992,"36149":14674,"36150":12953,"36151":15202,"36152":7239,"36153":16274,"36154":6388,"36155":151,"36156":12352,"36157":5556,"36158":5590,"36159":5443,"36160":14115,"36161":17858,"36162":12001,"36163":9543,"36164":16047,"36165":6655,"36166":12654,"36167":4894,"36168":18165,"36169":5133,"36170":16111,"36171":2583,"36172":10079,"36173":10162,"36174":14436,"36175":11499,"36176":18302,"36177":6957,"36178":5889,"36179":8927,"36180":17033,"36181":3674,"36182":17845,"36183":550,"36184":873,"36185":13125,"36186":4085,"36187":1627,"36188":8996,"36189":15623,"36190":4461,"36191":6713,"36192":6957,"36193":9773,"36194":602,"36195":21,"36196":8419,"36197":6942,"36198":2880,"36199":14968,"36200":16393,"36201":11202,"36202":9700,"36203":15805,"36204":8427,"36205":4264,"36206":10208,"36207":3184,"36208":5523,"36209":10900,"36210":7041,"36211":16273,"36212":447,"36213":1791,"36214":10428,"36215":13347,"36216":11501,"36217":14061,"36218":4443,"36219":11363,"36220":14591,"36221":4670,"36222":1438,"36223":5463,"36224":174,"36225":13959,"36226":5090,"36227":2008,"36228":7522,"36229":1663,"36230":5548,"36231":8120,"36232":13405,"36233":13976,"36234":12648,"36235":17058,"36236":14880,"36237":14276,"36238":5118,"36239":10791,"36240":17518,"36241":5130,"36242":7221,"36243":8518,"36244":11715,"36245":18301,"36246":3891,"36247":16692,"36248":17674,"36249":13944,"36250":5003,"36251":6682,"36252":1227,"36253":10102,"36254":6426,"36255":8151,"36256":13156,"36257":16436,"36258":12313,"36259":14930,"36260":18073,"36261":5593,"36262":10123,"36263":2230,"36264":674,"36265":8141,"36266":12158,"36267":1859,"36268":732,"36269":15544,"36270":3819,"36271":1260,"36272":9608,"36273":12909,"36274":12704,"36275":3475,"36276":3019,"36277":5493,"36278":14455,"36279":4706,"36280":8278,"36281":15982,"36282":3132,"36283":4741,"36284":9554,"36285":2803,"36286":12941,"36287":12959,"36288":12775,"36289":12660,"36290":9909,"36291":18141,"36292":10667,"36293":7950,"36294":16711,"36295":2079,"36296":4396,"36297":15024,"36298":3383,"36299":9537,"36300":15537,"36301":1722,"36302":7396,"36303":774,"36304":2928,"36305":12364,"36306":11378,"36307":4197,"36308":17034,"36309":5778,"36310":11485,"36311":4325,"36312":12350,"36313":4959,"36314":7614,"36315":13525,"36316":13155,"36317":9902,"36318":4454,"36319":8359,"36320":11736,"36321":10838,"36322":7106,"36323":16126,"36324":7901,"36325":15085,"36326":15300,"36327":9764,"36328":18247,"36329":13298,"36330":16583,"36331":6194,"36332":11316,"36333":3577,"36334":8288,"36335":10207,"36336":83,"36337":16157,"36338":15281,"36339":13853,"36340":8897,"36341":12579,"36342":15927,"36343":1400,"36344":14169,"36345":4593,"36346":2172,"36347":4276,"36348":13170,"36349":1666,"36350":3293,"36351":2661,"36352":3606,"36353":17943,"36354":3790,"36355":7467,"36356":6211,"36357":17504,"36358":7362,"36359":11348,"36360":14074,"36361":8360,"36362":12742,"36363":7348,"36364":5179,"36365":5466,"36366":1997,"36367":3612,"36368":2347,"36369":18108,"36370":10360,"36371":16458,"36372":6180,"36373":9967,"36374":2212,"36375":412,"36376":16615,"36377":11353,"36378":10600,"36379":3829,"36380":12177,"36381":15044,"36382":18272,"36383":15294,"36384":13071,"36385":18346,"36386":17233,"36387":9967,"36388":16641,"36389":8051,"36390":13744,"36391":2544,"36392":16104,"36393":2019,"36394":7072,"36395":10595,"36396":5744,"36397":2310,"36398":12497,"36399":3189,"36400":5131,"36401":11408,"36402":5047,"36403":9245,"36404":5281,"36405":17591,"36406":10749,"36407":2874,"36408":7641,"36409":1177,"36410":5937,"36411":8100,"36412":4009,"36413":12125,"36414":17441,"36415":16709,"36416":10432,"36417":5799,"36418":807,"36419":14489,"36420":11705,"36421":10735,"36422":7887,"36423":12452,"36424":9647,"36425":2594,"36426":4943,"36427":6283,"36428":18343,"36429":17394,"36430":364,"36431":1640,"36432":16235,"36433":4455,"36434":15064,"36435":6266,"36436":12109,"36437":575,"36438":9061,"36439":13483,"36440":10989,"36441":5154,"36442":16107,"36443":2551,"36444":13552,"36445":17545,"36446":8239,"36447":13443,"36448":12054,"36449":15959,"36450":18057,"36451":17006,"36452":12039,"36453":5822,"36454":3292,"36455":15987,"36456":10591,"36457":6516,"36458":2924,"36459":7370,"36460":9129,"36461":14180,"36462":4452,"36463":13756,"36464":10852,"36465":2647,"36466":8366,"36467":17341,"36468":3446,"36469":10371,"36470":4652,"36471":14947,"36472":5909,"36473":14992,"36474":14935,"36475":15245,"36476":13061,"36477":1540,"36478":12694,"36479":12764,"36480":2316,"36481":11686,"36482":6938,"36483":10295,"36484":7775,"36485":12026,"36486":8260,"36487":11458,"36488":1987,"36489":13184,"36490":9925,"36491":3012,"36492":3955,"36493":10673,"36494":2781,"36495":10091,"36496":8632,"36497":2491,"36498":18265,"36499":14834,"36500":2224,"36501":10459,"36502":8982,"36503":10289,"36504":912,"36505":4100,"36506":16073,"36507":10591,"36508":3787,"36509":1522,"36510":18279,"36511":15579,"36512":10380,"36513":8616,"36514":433,"36515":357,"36516":18086,"36517":9169,"36518":6927,"36519":7317,"36520":10971,"36521":13794,"36522":9048,"36523":13446,"36524":2566,"36525":12132,"36526":10732,"36527":4537,"36528":1115,"36529":2773,"36530":5113,"36531":11741,"36532":9478,"36533":51,"36534":14100,"36535":10281,"36536":14532,"36537":9536,"36538":3311,"36539":18090,"36540":815,"36541":5491,"36542":7431,"36543":2505,"36544":718,"36545":10226,"36546":17411,"36547":12514,"36548":9615,"36549":6193,"36550":12282,"36551":1953,"36552":1684,"36553":6203,"36554":16230,"36555":6495,"36556":9554,"36557":11252,"36558":13278,"36559":7216,"36560":12008,"36561":1337,"36562":10736,"36563":13442,"36564":7534,"36565":17110,"36566":7248,"36567":5863,"36568":9729,"36569":1340,"36570":3215,"36571":7948,"36572":2016,"36573":17466,"36574":6272,"36575":11354,"36576":5297,"36577":17403,"36578":712,"36579":3307,"36580":5653,"36581":6726,"36582":122,"36583":2866,"36584":12194,"36585":7876,"36586":13838,"36587":5598,"36588":2900,"36589":1607,"36590":6715,"36591":6488,"36592":2559,"36593":8106,"36594":16619,"36595":8861,"36596":15766,"36597":14297,"36598":9289,"36599":3208,"36600":9334,"36601":12843,"36602":1604,"36603":15433,"36604":7420,"36605":18297,"36606":3760,"36607":18112,"36608":17639,"36609":18233,"36610":7122,"36611":15631,"36612":2958,"36613":8797,"36614":16591,"36615":17230,"36616":3501,"36617":1953,"36618":12992,"36619":7954,"36620":7221,"36621":13403,"36622":13331,"36623":8712,"36624":4378,"36625":308,"36626":7405,"36627":9355,"36628":3640,"36629":11031,"36630":13739,"36631":2851,"36632":7222,"36633":990,"36634":2222,"36635":14907,"36636":9540,"36637":12072,"36638":1944,"36639":7110,"36640":6702,"36641":8405,"36642":12631,"36643":1659,"36644":6555,"36645":13954,"36646":7527,"36647":9503,"36648":2764,"36649":14484,"36650":13406,"36651":15582,"36652":7978,"36653":7233,"36654":3152,"36655":10391,"36656":14584,"36657":11695,"36658":558,"36659":15869,"36660":2436,"36661":2273,"36662":17392,"36663":9289,"36664":8847,"36665":7360,"36666":9581,"36667":17358,"36668":6778,"36669":13509,"36670":3522,"36671":6867,"36672":17193,"36673":5544,"36674":13185,"36675":187,"36676":16639,"36677":7599,"36678":15091,"36679":5135,"36680":4817,"36681":17196,"36682":16981,"36683":13423,"36684":4981,"36685":16895,"36686":10970,"36687":7162,"36688":12557,"36689":2027,"36690":635,"36691":2825,"36692":820,"36693":2388,"36694":12753,"36695":4360,"36696":4668,"36697":16684,"36698":11885,"36699":9448,"36700":13222,"36701":3187,"36702":9757,"36703":12268,"36704":9623,"36705":4708,"36706":623,"36707":13266,"36708":12817,"36709":11029,"36710":1887,"36711":16072,"36712":11496,"36713":13056,"36714":7815,"36715":13158,"36716":2807,"36717":13104,"36718":6973,"36719":11710,"36720":8459,"36721":9256,"36722":5584,"36723":9408,"36724":13163,"36725":2413,"36726":2307,"36727":14300,"36728":17253,"36729":4821,"36730":14654,"36731":11505,"36732":7847,"36733":2279,"36734":3950,"36735":17325,"36736":3373,"36737":14567,"36738":8485,"36739":4771,"36740":4725,"36741":13076,"36742":7929,"36743":10590,"36744":9046,"36745":17269,"36746":3418,"36747":12834,"36748":16678,"36749":17616,"36750":8294,"36751":15483,"36752":4314,"36753":686,"36754":15415,"36755":5765,"36756":11626,"36757":15447,"36758":15838,"36759":9782,"36760":10614,"36761":3590,"36762":10245,"36763":1259,"36764":15078,"36765":1463,"36766":1507,"36767":14101,"36768":6098,"36769":8765,"36770":5592,"36771":13348,"36772":2347,"36773":14109,"36774":2027,"36775":2605,"36776":14511,"36777":1402,"36778":11300,"36779":13693,"36780":8098,"36781":14344,"36782":17866,"36783":13260,"36784":12797,"36785":7410,"36786":17215,"36787":5481,"36788":5145,"36789":10008,"36790":1250,"36791":966,"36792":1906,"36793":1802,"36794":14794,"36795":17790,"36796":11864,"36797":8231,"36798":211,"36799":5450,"36800":8910,"36801":1073,"36802":9221,"36803":12905,"36804":11517,"36805":8909,"36806":4921,"36807":10402,"36808":3786,"36809":17637,"36810":10315,"36811":5941,"36812":14119,"36813":3287,"36814":16413,"36815":9681,"36816":4402,"36817":17652,"36818":8345,"36819":17176,"36820":9988,"36821":8317,"36822":7402,"36823":17483,"36824":6691,"36825":1495,"36826":11309,"36827":1344,"36828":6790,"36829":8639,"36830":14489,"36831":8940,"36832":15411,"36833":14151,"36834":3471,"36835":11958,"36836":4444,"36837":1539,"36838":3127,"36839":581,"36840":12641,"36841":7816,"36842":13921,"36843":16289,"36844":9856,"36845":13377,"36846":17943,"36847":4041,"36848":6134,"36849":13552,"36850":9356,"36851":12363,"36852":18217,"36853":6865,"36854":3686,"36855":13121,"36856":909,"36857":3081,"36858":12119,"36859":668,"36860":13926,"36861":14065,"36862":3750,"36863":3946,"36864":7896,"36865":13301,"36866":9609,"36867":16877,"36868":5411,"36869":15416,"36870":17403,"36871":2646,"36872":3300,"36873":15179,"36874":5173,"36875":357,"36876":13449,"36877":15092,"36878":14103,"36879":16593,"36880":14511,"36881":13139,"36882":7763,"36883":17422,"36884":1590,"36885":15839,"36886":5491,"36887":807,"36888":1541,"36889":17371,"36890":173,"36891":3452,"36892":10412,"36893":5540,"36894":4342,"36895":15725,"36896":15925,"36897":15287,"36898":11460,"36899":16370,"36900":18259,"36901":15959,"36902":1563,"36903":6461,"36904":13428,"36905":7892,"36906":866,"36907":15864,"36908":10165,"36909":5650,"36910":5603,"36911":4457,"36912":10155,"36913":15953,"36914":11726,"36915":13848,"36916":5488,"36917":7839,"36918":77,"36919":10209,"36920":5672,"36921":5798,"36922":12274,"36923":5428,"36924":17050,"36925":1672,"36926":2402,"36927":17938,"36928":15034,"36929":2156,"36930":17341,"36931":10265,"36932":11999,"36933":5097,"36934":12756,"36935":4806,"36936":12253,"36937":10038,"36938":12019,"36939":1452,"36940":55,"36941":3915,"36942":10747,"36943":12001,"36944":12613,"36945":2301,"36946":10820,"36947":17976,"36948":16437,"36949":15830,"36950":3597,"36951":7527,"36952":2703,"36953":4873,"36954":3421,"36955":18173,"36956":4127,"36957":12585,"36958":2791,"36959":801,"36960":14233,"36961":8881,"36962":14823,"36963":150,"36964":15083,"36965":3743,"36966":16842,"36967":14131,"36968":2153,"36969":8925,"36970":16503,"36971":13969,"36972":16825,"36973":11139,"36974":4461,"36975":11127,"36976":4125,"36977":15204,"36978":15379,"36979":14487,"36980":12508,"36981":14798,"36982":4128,"36983":15191,"36984":410,"36985":15422,"36986":7450,"36987":12413,"36988":922,"36989":14689,"36990":1879,"36991":2767,"36992":4889,"36993":8112,"36994":4843,"36995":16329,"36996":12178,"36997":8038,"36998":18301,"36999":3506,"37000":4138,"37001":14240,"37002":5424,"37003":13123,"37004":3492,"37005":11683,"37006":11048,"37007":718,"37008":6152,"37009":10820,"37010":10856,"37011":8430,"37012":275,"37013":11768,"37014":13793,"37015":15103,"37016":14449,"37017":11252,"37018":13551,"37019":15518,"37020":13892,"37021":16924,"37022":11795,"37023":14339,"37024":10011,"37025":16820,"37026":13375,"37027":9226,"37028":3592,"37029":13814,"37030":306,"37031":13722,"37032":16969,"37033":387,"37034":10893,"37035":55,"37036":12886,"37037":4313,"37038":8514,"37039":14222,"37040":5646,"37041":13190,"37042":10285,"37043":9550,"37044":9716,"37045":13806,"37046":5827,"37047":4980,"37048":18179,"37049":10597,"37050":2785,"37051":12565,"37052":13685,"37053":6433,"37054":4467,"37055":15759,"37056":11190,"37057":17862,"37058":17600,"37059":9624,"37060":10524,"37061":548,"37062":11259,"37063":17036,"37064":11890,"37065":9519,"37066":9554,"37067":4587,"37068":17232,"37069":3574,"37070":10498,"37071":4600,"37072":3065,"37073":15485,"37074":958,"37075":3707,"37076":12315,"37077":3679,"37078":9742,"37079":5774,"37080":4115,"37081":13486,"37082":5948,"37083":12902,"37084":5385,"37085":6406,"37086":10231,"37087":2772,"37088":11402,"37089":749,"37090":17782,"37091":16342,"37092":7085,"37093":15790,"37094":1825,"37095":6632,"37096":14900,"37097":14712,"37098":13181,"37099":10391,"37100":14391,"37101":6569,"37102":8052,"37103":1586,"37104":3597,"37105":7071,"37106":15038,"37107":4178,"37108":7629,"37109":9843,"37110":14919,"37111":13540,"37112":3951,"37113":6695,"37114":9875,"37115":16714,"37116":1270,"37117":9971,"37118":8861,"37119":5885,"37120":12034,"37121":15824,"37122":11764,"37123":4652,"37124":10063,"37125":5508,"37126":5459,"37127":1168,"37128":5781,"37129":11945,"37130":2329,"37131":17349,"37132":8497,"37133":17439,"37134":8358,"37135":17923,"37136":678,"37137":14172,"37138":2138,"37139":17713,"37140":6239,"37141":12140,"37142":826,"37143":4677,"37144":6527,"37145":15778,"37146":14009,"37147":2888,"37148":18034,"37149":11141,"37150":2819,"37151":17949,"37152":17407,"37153":15910,"37154":11853,"37155":15229,"37156":4186,"37157":619,"37158":16190,"37159":6158,"37160":3116,"37161":6188,"37162":11720,"37163":12736,"37164":7866,"37165":15036,"37166":13813,"37167":9626,"37168":3490,"37169":18188,"37170":5076,"37171":8027,"37172":14268,"37173":8681,"37174":10599,"37175":6070,"37176":6402,"37177":4330,"37178":2177,"37179":11525,"37180":11176,"37181":15768,"37182":15522,"37183":3983,"37184":8594,"37185":4810,"37186":11002,"37187":3271,"37188":12181,"37189":15830,"37190":14371,"37191":2063,"37192":1744,"37193":4736,"37194":12686,"37195":12146,"37196":14255,"37197":13527,"37198":4512,"37199":16740,"37200":4370,"37201":6489,"37202":7047,"37203":3654,"37204":4791,"37205":4306,"37206":8110,"37207":8799,"37208":13196,"37209":600,"37210":15846,"37211":17568,"37212":14269,"37213":17334,"37214":4426,"37215":16549,"37216":16018,"37217":13034,"37218":2445,"37219":10193,"37220":8582,"37221":5131,"37222":5354,"37223":4216,"37224":15024,"37225":7794,"37226":1574,"37227":3892,"37228":7547,"37229":11394,"37230":7070,"37231":17501,"37232":11115,"37233":4947,"37234":11457,"37235":8622,"37236":9639,"37237":678,"37238":16653,"37239":5288,"37240":2375,"37241":6491,"37242":1610,"37243":13283,"37244":11176,"37245":10094,"37246":447,"37247":8534,"37248":10815,"37249":5560,"37250":13880,"37251":4164,"37252":10855,"37253":9206,"37254":8531,"37255":11592,"37256":7745,"37257":15497,"37258":11461,"37259":14039,"37260":1319,"37261":1545,"37262":4224,"37263":16762,"37264":2271,"37265":9885,"37266":8927,"37267":9050,"37268":9893,"37269":6101,"37270":2675,"37271":1196,"37272":5512,"37273":14366,"37274":9109,"37275":3322,"37276":6919,"37277":14947,"37278":18126,"37279":13062,"37280":4280,"37281":6448,"37282":12854,"37283":14863,"37284":10125,"37285":1847,"37286":14037,"37287":4019,"37288":6087,"37289":7618,"37290":17998,"37291":16624,"37292":8561,"37293":12401,"37294":13024,"37295":1347,"37296":219,"37297":1689,"37298":2519,"37299":14176,"37300":2185,"37301":12292,"37302":16717,"37303":16610,"37304":8841,"37305":8956,"37306":10175,"37307":2661,"37308":13092,"37309":14410,"37310":13556,"37311":11748,"37312":17990,"37313":15072,"37314":3226,"37315":16604,"37316":8897,"37317":9088,"37318":3583,"37319":406,"37320":3316,"37321":4262,"37322":2701,"37323":829,"37324":2511,"37325":13886,"37326":5655,"37327":1645,"37328":13733,"37329":6300,"37330":1877,"37331":10760,"37332":2150,"37333":2607,"37334":7198,"37335":6809,"37336":9720,"37337":10411,"37338":1109,"37339":12161,"37340":11613,"37341":16914,"37342":13542,"37343":8245,"37344":11409,"37345":12653,"37346":6084,"37347":5222,"37348":9182,"37349":7253,"37350":2589,"37351":8627,"37352":1238,"37353":7312,"37354":14942,"37355":15087,"37356":1606,"37357":12489,"37358":10853,"37359":11299,"37360":4674,"37361":16258,"37362":369,"37363":886,"37364":16794,"37365":6720,"37366":5833,"37367":11309,"37368":6027,"37369":4669,"37370":12518,"37371":933,"37372":10169,"37373":12984,"37374":932,"37375":15041,"37376":5971,"37377":17783,"37378":11021,"37379":15623,"37380":11293,"37381":11111,"37382":10125,"37383":5859,"37384":3484,"37385":12772,"37386":7188,"37387":9512,"37388":17130,"37389":2988,"37390":8648,"37391":15682,"37392":2457,"37393":307,"37394":15125,"37395":917,"37396":7442,"37397":10928,"37398":10895,"37399":15376,"37400":16164,"37401":10512,"37402":17769,"37403":1272,"37404":2386,"37405":3115,"37406":11186,"37407":16877,"37408":16359,"37409":12747,"37410":12472,"37411":4487,"37412":6144,"37413":3410,"37414":678,"37415":12354,"37416":16268,"37417":12105,"37418":14921,"37419":17758,"37420":2032,"37421":17824,"37422":14368,"37423":6954,"37424":489,"37425":9529,"37426":7117,"37427":2693,"37428":14254,"37429":1791,"37430":8827,"37431":12900,"37432":17468,"37433":1154,"37434":5609,"37435":4863,"37436":15769,"37437":6458,"37438":2561,"37439":913,"37440":9678,"37441":11179,"37442":11392,"37443":5820,"37444":11305,"37445":6493,"37446":1572,"37447":11483,"37448":16675,"37449":7550,"37450":13773,"37451":17468,"37452":9962,"37453":3360,"37454":6179,"37455":18224,"37456":7383,"37457":15671,"37458":10809,"37459":6943,"37460":13743,"37461":1535,"37462":9504,"37463":5376,"37464":13213,"37465":4237,"37466":17309,"37467":17025,"37468":15243,"37469":7870,"37470":7597,"37471":1372,"37472":14020,"37473":2052,"37474":9772,"37475":16369,"37476":5316,"37477":16886,"37478":14285,"37479":256,"37480":8301,"37481":634,"37482":13523,"37483":12319,"37484":14252,"37485":4312,"37486":17525,"37487":5420,"37488":4482,"37489":8846,"37490":5805,"37491":16847,"37492":7094,"37493":6415,"37494":7848,"37495":16590,"37496":18047,"37497":18307,"37498":3400,"37499":12524,"37500":1797,"37501":9072,"37502":13177,"37503":12673,"37504":7615,"37505":11376,"37506":15800,"37507":16271,"37508":18126,"37509":8652,"37510":14884,"37511":1688,"37512":15134,"37513":14363,"37514":9405,"37515":10349,"37516":16347,"37517":741,"37518":12176,"37519":9069,"37520":4232,"37521":12764,"37522":13659,"37523":5929,"37524":13450,"37525":4059,"37526":1514,"37527":11336,"37528":17577,"37529":12448,"37530":9599,"37531":11217,"37532":2361,"37533":8732,"37534":4532,"37535":14069,"37536":6057,"37537":3370,"37538":9892,"37539":5575,"37540":2214,"37541":4557,"37542":13693,"37543":5771,"37544":18244,"37545":15048,"37546":9083,"37547":5506,"37548":6108,"37549":11215,"37550":13155,"37551":10281,"37552":15687,"37553":1852,"37554":18237,"37555":579,"37556":873,"37557":7823,"37558":17111,"37559":1019,"37560":7047,"37561":11823,"37562":15224,"37563":18305,"37564":3357,"37565":5701,"37566":5970,"37567":7159,"37568":15471,"37569":3855,"37570":8464,"37571":8403,"37572":3822,"37573":3257,"37574":17483,"37575":14482,"37576":3743,"37577":8607,"37578":9318,"37579":15649,"37580":15100,"37581":2689,"37582":16621,"37583":7806,"37584":8814,"37585":4872,"37586":1771,"37587":16110,"37588":2595,"37589":10313,"37590":14982,"37591":9185,"37592":2100,"37593":2632,"37594":5755,"37595":2428,"37596":4452,"37597":18257,"37598":14295,"37599":9032,"37600":9607,"37601":11190,"37602":2358,"37603":7700,"37604":10204,"37605":16441,"37606":17718,"37607":10278,"37608":2820,"37609":18150,"37610":2275,"37611":8167,"37612":3089,"37613":13655,"37614":2142,"37615":12625,"37616":1454,"37617":12971,"37618":16636,"37619":8197,"37620":5952,"37621":5103,"37622":3915,"37623":5175,"37624":9813,"37625":16801,"37626":8876,"37627":4881,"37628":3745,"37629":15205,"37630":1191,"37631":5527,"37632":5178,"37633":18196,"37634":4355,"37635":10841,"37636":5390,"37637":3467,"37638":3037,"37639":7669,"37640":13537,"37641":4972,"37642":6382,"37643":477,"37644":4778,"37645":9446,"37646":8123,"37647":4780,"37648":1539,"37649":18337,"37650":4512,"37651":9202,"37652":9274,"37653":1585,"37654":14617,"37655":17188,"37656":14212,"37657":6890,"37658":16568,"37659":16599,"37660":7019,"37661":13837,"37662":12700,"37663":7872,"37664":17978,"37665":2668,"37666":12807,"37667":1331,"37668":16296,"37669":10693,"37670":11924,"37671":1254,"37672":7791,"37673":11636,"37674":1665,"37675":10922,"37676":17017,"37677":2111,"37678":7424,"37679":5948,"37680":1385,"37681":701,"37682":2629,"37683":4446,"37684":6804,"37685":11409,"37686":16544,"37687":18064,"37688":14662,"37689":1034,"37690":12827,"37691":9269,"37692":14453,"37693":5437,"37694":17338,"37695":8895,"37696":11177,"37697":17849,"37698":7544,"37699":8774,"37700":500,"37701":7468,"37702":1039,"37703":18328,"37704":11508,"37705":8981,"37706":15673,"37707":11976,"37708":16871,"37709":5534,"37710":9226,"37711":5359,"37712":16097,"37713":5205,"37714":8347,"37715":2596,"37716":7986,"37717":17352,"37718":7193,"37719":13534,"37720":3685,"37721":14322,"37722":13894,"37723":17669,"37724":8214,"37725":9596,"37726":13170,"37727":12233,"37728":6195,"37729":11332,"37730":7583,"37731":12056,"37732":2403,"37733":204,"37734":4838,"37735":15195,"37736":2845,"37737":14267,"37738":41,"37739":2498,"37740":5838,"37741":7984,"37742":8529,"37743":5032,"37744":12802,"37745":12369,"37746":7910,"37747":14952,"37748":16127,"37749":8912,"37750":12499,"37751":10668,"37752":11236,"37753":10268,"37754":2686,"37755":16631,"37756":1866,"37757":14714,"37758":12940,"37759":4017,"37760":13803,"37761":17955,"37762":5601,"37763":13958,"37764":15128,"37765":1582,"37766":16610,"37767":1305,"37768":16798,"37769":2581,"37770":4671,"37771":6550,"37772":7761,"37773":3222,"37774":16505,"37775":12225,"37776":13259,"37777":2112,"37778":14832,"37779":6868,"37780":4336,"37781":7131,"37782":8982,"37783":13043,"37784":6701,"37785":9433,"37786":3402,"37787":5460,"37788":5812,"37789":10371,"37790":1356,"37791":622,"37792":17908,"37793":15523,"37794":15591,"37795":10038,"37796":7140,"37797":10870,"37798":957,"37799":3818,"37800":10164,"37801":9518,"37802":9133,"37803":16064,"37804":5846,"37805":12910,"37806":11302,"37807":5177,"37808":12496,"37809":8403,"37810":11664,"37811":1501,"37812":14818,"37813":12991,"37814":7391,"37815":12656,"37816":14473,"37817":17263,"37818":13541,"37819":3601,"37820":13129,"37821":7451,"37822":4800,"37823":5460,"37824":3581,"37825":14302,"37826":3646,"37827":15374,"37828":15823,"37829":1166,"37830":2645,"37831":7149,"37832":13697,"37833":11091,"37834":15730,"37835":13308,"37836":17328,"37837":6766,"37838":733,"37839":16721,"37840":5297,"37841":7685,"37842":1051,"37843":9250,"37844":17594,"37845":17743,"37846":10509,"37847":2427,"37848":10578,"37849":6797,"37850":11061,"37851":12808,"37852":3669,"37853":15112,"37854":2632,"37855":11477,"37856":17956,"37857":18290,"37858":2770,"37859":17674,"37860":17492,"37861":17661,"37862":2583,"37863":16125,"37864":14552,"37865":15678,"37866":14544,"37867":4584,"37868":9495,"37869":8057,"37870":1836,"37871":7615,"37872":8700,"37873":5309,"37874":10143,"37875":9879,"37876":12203,"37877":15966,"37878":17793,"37879":13762,"37880":18035,"37881":15382,"37882":1000,"37883":4788,"37884":17900,"37885":10687,"37886":15603,"37887":8431,"37888":12673,"37889":6794,"37890":7584,"37891":144,"37892":7782,"37893":5115,"37894":14221,"37895":1731,"37896":17870,"37897":9532,"37898":14155,"37899":17730,"37900":11338,"37901":12501,"37902":16468,"37903":10528,"37904":5975,"37905":14568,"37906":10074,"37907":3665,"37908":7153,"37909":12105,"37910":4860,"37911":8853,"37912":16544,"37913":15555,"37914":10334,"37915":2729,"37916":13369,"37917":7931,"37918":9312,"37919":4528,"37920":881,"37921":1015,"37922":4154,"37923":10294,"37924":16100,"37925":10257,"37926":5694,"37927":9636,"37928":13140,"37929":17932,"37930":3555,"37931":2319,"37932":1376,"37933":12051,"37934":15534,"37935":13368,"37936":15026,"37937":17483,"37938":11318,"37939":5946,"37940":4192,"37941":1511,"37942":13314,"37943":3674,"37944":3428,"37945":2730,"37946":6925,"37947":7996,"37948":2181,"37949":11523,"37950":6738,"37951":10688,"37952":13857,"37953":16800,"37954":4163,"37955":7303,"37956":11734,"37957":6578,"37958":4518,"37959":1875,"37960":18355,"37961":5127,"37962":6491,"37963":18306,"37964":14704,"37965":4322,"37966":11969,"37967":9562,"37968":1830,"37969":14083,"37970":3401,"37971":5029,"37972":6235,"37973":829,"37974":11499,"37975":17157,"37976":6732,"37977":1499,"37978":13517,"37979":12927,"37980":12518,"37981":7940,"37982":688,"37983":8897,"37984":14007,"37985":982,"37986":13596,"37987":14600,"37988":17845,"37989":9918,"37990":4964,"37991":13120,"37992":11714,"37993":15323,"37994":182,"37995":5514,"37996":645,"37997":42,"37998":17701,"37999":14283,"38000":6203,"38001":3599,"38002":5695,"38003":3151,"38004":12461,"38005":10535,"38006":5389,"38007":5684,"38008":15998,"38009":17985,"38010":14781,"38011":16016,"38012":17831,"38013":13812,"38014":17755,"38015":117,"38016":4123,"38017":11504,"38018":12101,"38019":15438,"38020":1875,"38021":4532,"38022":4317,"38023":10342,"38024":12348,"38025":12602,"38026":6698,"38027":512,"38028":1419,"38029":16696,"38030":2157,"38031":9997,"38032":884,"38033":8632,"38034":16702,"38035":18130,"38036":17230,"38037":2213,"38038":9378,"38039":4608,"38040":2982,"38041":16518,"38042":910,"38043":13962,"38044":7623,"38045":16222,"38046":1446,"38047":9757,"38048":7529,"38049":15627,"38050":8613,"38051":14306,"38052":5116,"38053":17243,"38054":5289,"38055":10591,"38056":12754,"38057":13268,"38058":6655,"38059":11198,"38060":9759,"38061":5079,"38062":5820,"38063":4997,"38064":13545,"38065":1003,"38066":12734,"38067":8479,"38068":17202,"38069":2047,"38070":3212,"38071":423,"38072":13969,"38073":18127,"38074":3408,"38075":3038,"38076":8849,"38077":11655,"38078":15964,"38079":4412,"38080":3144,"38081":14420,"38082":13778,"38083":92,"38084":11087,"38085":13959,"38086":6894,"38087":1125,"38088":4734,"38089":9815,"38090":16458,"38091":2795,"38092":8430,"38093":4524,"38094":9576,"38095":5973,"38096":14721,"38097":15009,"38098":1967,"38099":13706,"38100":7727,"38101":17630,"38102":1232,"38103":3350,"38104":8013,"38105":13106,"38106":13168,"38107":5382,"38108":6663,"38109":11183,"38110":2373,"38111":15975,"38112":5623,"38113":7732,"38114":17349,"38115":11435,"38116":10387,"38117":1966,"38118":2955,"38119":2245,"38120":17694,"38121":8306,"38122":14424,"38123":16125,"38124":16663,"38125":8993,"38126":15120,"38127":9112,"38128":18026,"38129":3817,"38130":5515,"38131":12513,"38132":5991,"38133":1690,"38134":9719,"38135":10649,"38136":2691,"38137":10548,"38138":2300,"38139":17714,"38140":10286,"38141":7850,"38142":6213,"38143":11423,"38144":2157,"38145":10323,"38146":4204,"38147":17670,"38148":11488,"38149":10871,"38150":1918,"38151":1963,"38152":330,"38153":12806,"38154":1550,"38155":12987,"38156":16711,"38157":9122,"38158":1401,"38159":1826,"38160":4013,"38161":10955,"38162":11338,"38163":2068,"38164":3797,"38165":5129,"38166":14263,"38167":6424,"38168":9196,"38169":18260,"38170":4053,"38171":4300,"38172":13746,"38173":15786,"38174":4543,"38175":15660,"38176":2961,"38177":17342,"38178":13958,"38179":17728,"38180":11747,"38181":7352,"38182":7557,"38183":4738,"38184":8383,"38185":2094,"38186":6280,"38187":12718,"38188":4740,"38189":5012,"38190":355,"38191":1267,"38192":12871,"38193":15204,"38194":1317,"38195":18272,"38196":5721,"38197":2874,"38198":2092,"38199":11381,"38200":6023,"38201":15188,"38202":15986,"38203":4765,"38204":6906,"38205":13532,"38206":12215,"38207":14666,"38208":4712,"38209":10581,"38210":7460,"38211":15290,"38212":8952,"38213":646,"38214":4402,"38215":7771,"38216":8478,"38217":5108,"38218":2917,"38219":6910,"38220":9570,"38221":9642,"38222":3411,"38223":9274,"38224":17463,"38225":13208,"38226":17258,"38227":15382,"38228":1385,"38229":2553,"38230":10088,"38231":6846,"38232":5162,"38233":3857,"38234":15996,"38235":10704,"38236":8435,"38237":2010,"38238":2967,"38239":13996,"38240":6876,"38241":4469,"38242":18033,"38243":17684,"38244":16195,"38245":13723,"38246":3105,"38247":16538,"38248":15345,"38249":509,"38250":16655,"38251":3844,"38252":11471,"38253":12606,"38254":14799,"38255":11168,"38256":9674,"38257":18067,"38258":10888,"38259":11464,"38260":2239,"38261":13435,"38262":15429,"38263":8560,"38264":12700,"38265":15904,"38266":119,"38267":7393,"38268":5085,"38269":16409,"38270":11355,"38271":15135,"38272":16820,"38273":1251,"38274":15818,"38275":4184,"38276":1670,"38277":8472,"38278":456,"38279":5454,"38280":6535,"38281":7422,"38282":17718,"38283":4776,"38284":8872,"38285":15383,"38286":3690,"38287":11345,"38288":17346,"38289":14043,"38290":4237,"38291":40,"38292":1439,"38293":4706,"38294":17814,"38295":14233,"38296":14928,"38297":15781,"38298":8510,"38299":10952,"38300":7808,"38301":17992,"38302":1176,"38303":7655,"38304":3508,"38305":2422,"38306":8150,"38307":4592,"38308":13803,"38309":17911,"38310":5969,"38311":4633,"38312":11154,"38313":16946,"38314":3982,"38315":4053,"38316":5726,"38317":15626,"38318":6578,"38319":18323,"38320":2734,"38321":7753,"38322":1541,"38323":993,"38324":15649,"38325":3179,"38326":109,"38327":10871,"38328":12502,"38329":18107,"38330":11643,"38331":17575,"38332":12414,"38333":15380,"38334":16541,"38335":2885,"38336":5978,"38337":14605,"38338":17739,"38339":16117,"38340":14236,"38341":5449,"38342":1314,"38343":5095,"38344":8791,"38345":7742,"38346":9342,"38347":1247,"38348":17477,"38349":3415,"38350":10595,"38351":9360,"38352":14385,"38353":14344,"38354":14079,"38355":18354,"38356":7072,"38357":5292,"38358":9989,"38359":2849,"38360":7801,"38361":16068,"38362":152,"38363":12302,"38364":2649,"38365":3058,"38366":717,"38367":7598,"38368":10610,"38369":845,"38370":8104,"38371":8040,"38372":11427,"38373":2454,"38374":7010,"38375":6405,"38376":9707,"38377":11887,"38378":14137,"38379":15338,"38380":4558,"38381":15848,"38382":17200,"38383":10513,"38384":12801,"38385":5652,"38386":2858,"38387":16017,"38388":6084,"38389":11341,"38390":8935,"38391":4515,"38392":18276,"38393":14585,"38394":14118,"38395":11561,"38396":2635,"38397":443,"38398":547,"38399":10730,"38400":9211,"38401":1396,"38402":3670,"38403":14828,"38404":9464,"38405":7907,"38406":6516,"38407":6390,"38408":16460,"38409":17352,"38410":15487,"38411":7658,"38412":13062,"38413":16815,"38414":2305,"38415":14925,"38416":14303,"38417":15163,"38418":1275,"38419":16555,"38420":10085,"38421":2842,"38422":11507,"38423":5684,"38424":76,"38425":10925,"38426":8199,"38427":48,"38428":8071,"38429":12903,"38430":5263,"38431":10724,"38432":2882,"38433":4536,"38434":15651,"38435":13522,"38436":315,"38437":11175,"38438":6216,"38439":5598,"38440":15801,"38441":6931,"38442":535,"38443":3115,"38444":13473,"38445":4037,"38446":5803,"38447":6070,"38448":17046,"38449":17586,"38450":12428,"38451":1599,"38452":12973,"38453":7824,"38454":11580,"38455":16549,"38456":13646,"38457":7772,"38458":3266,"38459":4392,"38460":9688,"38461":17722,"38462":17455,"38463":2892,"38464":608,"38465":10292,"38466":3805,"38467":4362,"38468":10671,"38469":13875,"38470":18082,"38471":17385,"38472":3141,"38473":4236,"38474":11242,"38475":4211,"38476":11442,"38477":3291,"38478":848,"38479":15107,"38480":14464,"38481":13772,"38482":1231,"38483":10682,"38484":6961,"38485":1239,"38486":2677,"38487":1672,"38488":15977,"38489":5922,"38490":6874,"38491":17792,"38492":7003,"38493":15086,"38494":765,"38495":16607,"38496":4684,"38497":17046,"38498":12369,"38499":1212,"38500":3548,"38501":10083,"38502":14165,"38503":16640,"38504":6698,"38505":13233,"38506":13059,"38507":7418,"38508":4113,"38509":98,"38510":4972,"38511":15312,"38512":3771,"38513":17491,"38514":15415,"38515":8587,"38516":9845,"38517":4933,"38518":11368,"38519":2970,"38520":788,"38521":15566,"38522":2612,"38523":5709,"38524":6466,"38525":11671,"38526":14364,"38527":6431,"38528":8580,"38529":10095,"38530":16452,"38531":1686,"38532":10204,"38533":15962,"38534":14833,"38535":17549,"38536":16134,"38537":17613,"38538":10782,"38539":9022,"38540":3989,"38541":3820,"38542":1803,"38543":3982,"38544":15885,"38545":3850,"38546":17095,"38547":5949,"38548":4877,"38549":10709,"38550":15850,"38551":14796,"38552":13932,"38553":3134,"38554":12558,"38555":6536,"38556":7015,"38557":18084,"38558":2468,"38559":7925,"38560":6401,"38561":8857,"38562":14564,"38563":9924,"38564":5002,"38565":2419,"38566":15293,"38567":14226,"38568":6754,"38569":13983,"38570":980,"38571":453,"38572":12426,"38573":17387,"38574":12255,"38575":15984,"38576":15548,"38577":15710,"38578":13842,"38579":7524,"38580":8863,"38581":11188,"38582":10137,"38583":14450,"38584":4570,"38585":12701,"38586":5623,"38587":243,"38588":4582,"38589":4145,"38590":14886,"38591":4371,"38592":6751,"38593":407,"38594":6528,"38595":7201,"38596":444,"38597":12227,"38598":5119,"38599":17275,"38600":11072,"38601":11284,"38602":735,"38603":17648,"38604":3846,"38605":12242,"38606":1019,"38607":15938,"38608":4143,"38609":1599,"38610":13666,"38611":1555,"38612":2697,"38613":12547,"38614":18305,"38615":13314,"38616":6287,"38617":6381,"38618":16459,"38619":6670,"38620":14157,"38621":7313,"38622":12011,"38623":1695,"38624":7029,"38625":6972,"38626":6101,"38627":16694,"38628":4977,"38629":16551,"38630":5728,"38631":10612,"38632":14156,"38633":7512,"38634":7985,"38635":4974,"38636":17216,"38637":9364,"38638":17839,"38639":2377,"38640":13291,"38641":11919,"38642":8396,"38643":9288,"38644":3304,"38645":7953,"38646":3442,"38647":7074,"38648":8380,"38649":15633,"38650":5001,"38651":16664,"38652":4022,"38653":15433,"38654":13295,"38655":18141,"38656":14453,"38657":9915,"38658":18146,"38659":17778,"38660":7512,"38661":1172,"38662":9062,"38663":9225,"38664":2518,"38665":5682,"38666":13641,"38667":5127,"38668":9370,"38669":13892,"38670":2859,"38671":13483,"38672":15217,"38673":3982,"38674":14850,"38675":1012,"38676":16393,"38677":10276,"38678":8129,"38679":2804,"38680":1532,"38681":14479,"38682":2497,"38683":11587,"38684":2388,"38685":6914,"38686":9988,"38687":7007,"38688":7590,"38689":17619,"38690":12269,"38691":6159,"38692":12507,"38693":4322,"38694":14650,"38695":9792,"38696":16564,"38697":15731,"38698":9672,"38699":4000,"38700":4424,"38701":15453,"38702":2350,"38703":321,"38704":9239,"38705":1381,"38706":8232,"38707":6889,"38708":8873,"38709":14418,"38710":13257,"38711":11971,"38712":11852,"38713":12353,"38714":16819,"38715":12194,"38716":12472,"38717":1856,"38718":8216,"38719":3497,"38720":16836,"38721":17813,"38722":3050,"38723":12411,"38724":10557,"38725":11924,"38726":7130,"38727":10636,"38728":7391,"38729":2232,"38730":17423,"38731":85,"38732":8385,"38733":3126,"38734":17668,"38735":13929,"38736":7955,"38737":4790,"38738":9559,"38739":15839,"38740":17570,"38741":18193,"38742":9293,"38743":18049,"38744":13846,"38745":4983,"38746":12233,"38747":2763,"38748":148,"38749":7075,"38750":14954,"38751":17488,"38752":17249,"38753":5704,"38754":10260,"38755":452,"38756":3274,"38757":2944,"38758":13133,"38759":11070,"38760":8694,"38761":16750,"38762":11628,"38763":18255,"38764":9637,"38765":5010,"38766":10568,"38767":265,"38768":5799,"38769":16879,"38770":8298,"38771":5249,"38772":14900,"38773":15434,"38774":10535,"38775":3452,"38776":5276,"38777":6519,"38778":11039,"38779":12247,"38780":15187,"38781":9345,"38782":13738,"38783":5051,"38784":254,"38785":17154,"38786":12538,"38787":3323,"38788":15455,"38789":6892,"38790":3908,"38791":9590,"38792":2240,"38793":12247,"38794":1995,"38795":14167,"38796":15774,"38797":4558,"38798":7464,"38799":11054,"38800":13362,"38801":2144,"38802":4418,"38803":4389,"38804":8643,"38805":16575,"38806":8130,"38807":1412,"38808":14755,"38809":12377,"38810":9226,"38811":9161,"38812":15155,"38813":2742,"38814":17815,"38815":15990,"38816":10964,"38817":11488,"38818":10506,"38819":3048,"38820":8495,"38821":10503,"38822":539,"38823":6405,"38824":13354,"38825":8570,"38826":8878,"38827":2383,"38828":17778,"38829":4533,"38830":17844,"38831":9974,"38832":18233,"38833":14391,"38834":13834,"38835":3930,"38836":2391,"38837":8019,"38838":1579,"38839":6952,"38840":2675,"38841":5021,"38842":1387,"38843":13508,"38844":5313,"38845":16426,"38846":14788,"38847":5210,"38848":11024,"38849":6452,"38850":14216,"38851":12451,"38852":5870,"38853":2776,"38854":12904,"38855":5828,"38856":4500,"38857":14536,"38858":12172,"38859":3495,"38860":3518,"38861":13083,"38862":17607,"38863":1575,"38864":8665,"38865":13772,"38866":16316,"38867":17987,"38868":15255,"38869":18277,"38870":585,"38871":16263,"38872":17590,"38873":7196,"38874":15249,"38875":15822,"38876":7511,"38877":14936,"38878":3229,"38879":7412,"38880":594,"38881":11208,"38882":5527,"38883":6526,"38884":2115,"38885":1319,"38886":3693,"38887":13095,"38888":15962,"38889":15402,"38890":11985,"38891":2996,"38892":15800,"38893":7535,"38894":10569,"38895":6229,"38896":3998,"38897":100,"38898":11963,"38899":8207,"38900":17412,"38901":17607,"38902":4138,"38903":16669,"38904":18177,"38905":15660,"38906":17246,"38907":10253,"38908":6260,"38909":1713,"38910":4966,"38911":7330,"38912":8825,"38913":6118,"38914":9014,"38915":10408,"38916":8388,"38917":15029,"38918":619,"38919":3791,"38920":12236,"38921":15349,"38922":1070,"38923":1102,"38924":4912,"38925":5189,"38926":4926,"38927":5871,"38928":8118,"38929":15441,"38930":8597,"38931":14509,"38932":16772,"38933":16002,"38934":8851,"38935":1215,"38936":13198,"38937":813,"38938":12537,"38939":16099,"38940":14204,"38941":16774,"38942":4775,"38943":5133,"38944":18139,"38945":3875,"38946":2068,"38947":14744,"38948":6637,"38949":7832,"38950":7227,"38951":17361,"38952":4869,"38953":11283,"38954":12678,"38955":862,"38956":3797,"38957":12702,"38958":12674,"38959":10664,"38960":2831,"38961":938,"38962":4267,"38963":10761,"38964":17039,"38965":966,"38966":2117,"38967":2654,"38968":387,"38969":11205,"38970":3423,"38971":16698,"38972":7322,"38973":11896,"38974":2853,"38975":10727,"38976":9941,"38977":8173,"38978":8459,"38979":12737,"38980":17232,"38981":8055,"38982":13629,"38983":2652,"38984":5402,"38985":2200,"38986":16047,"38987":14188,"38988":15294,"38989":83,"38990":7072,"38991":10980,"38992":10298,"38993":8607,"38994":11908,"38995":16170,"38996":14983,"38997":1649,"38998":159,"38999":1882,"39000":12685,"39001":7483,"39002":13499,"39003":6706,"39004":4934,"39005":16482,"39006":7727,"39007":3476,"39008":3877,"39009":1034,"39010":2678,"39011":4425,"39012":15785,"39013":15731,"39014":1946,"39015":14992,"39016":9064,"39017":4194,"39018":13067,"39019":7651,"39020":8917,"39021":15045,"39022":16807,"39023":13821,"39024":16549,"39025":17563,"39026":9579,"39027":4949,"39028":11927,"39029":7382,"39030":9787,"39031":12537,"39032":2821,"39033":3553,"39034":11530,"39035":16148,"39036":13487,"39037":10514,"39038":2213,"39039":12552,"39040":3170,"39041":755,"39042":8802,"39043":4931,"39044":8491,"39045":16450,"39046":9991,"39047":289,"39048":4764,"39049":7834,"39050":14638,"39051":9707,"39052":5967,"39053":6011,"39054":3745,"39055":13620,"39056":715,"39057":11610,"39058":6198,"39059":216,"39060":3371,"39061":14252,"39062":3233,"39063":10666,"39064":16799,"39065":17338,"39066":16449,"39067":7765,"39068":17559,"39069":627,"39070":1199,"39071":17029,"39072":7126,"39073":5983,"39074":8662,"39075":17054,"39076":8672,"39077":14007,"39078":18273,"39079":6344,"39080":13748,"39081":4490,"39082":7573,"39083":15796,"39084":12323,"39085":3195,"39086":12388,"39087":4929,"39088":3345,"39089":12951,"39090":15498,"39091":1761,"39092":2676,"39093":7297,"39094":10208,"39095":15134,"39096":982,"39097":11275,"39098":8554,"39099":1721,"39100":11595,"39101":8670,"39102":5187,"39103":7779,"39104":9620,"39105":14249,"39106":8893,"39107":7649,"39108":3279,"39109":12512,"39110":7372,"39111":16167,"39112":9550,"39113":10020,"39114":17488,"39115":2104,"39116":3512,"39117":18107,"39118":14916,"39119":14831,"39120":5871,"39121":4229,"39122":2938,"39123":3020,"39124":13401,"39125":4597,"39126":10216,"39127":8470,"39128":9648,"39129":6983,"39130":9847,"39131":8276,"39132":7618,"39133":17231,"39134":4099,"39135":8700,"39136":5349,"39137":5798,"39138":9610,"39139":5874,"39140":16418,"39141":8794,"39142":8544,"39143":9694,"39144":7938,"39145":5371,"39146":18060,"39147":17881,"39148":14553,"39149":6980,"39150":16786,"39151":210,"39152":7721,"39153":1363,"39154":12169,"39155":16799,"39156":11160,"39157":14872,"39158":8883,"39159":778,"39160":8429,"39161":6700,"39162":441,"39163":12701,"39164":12331,"39165":1178,"39166":555,"39167":7148,"39168":17000,"39169":17045,"39170":16720,"39171":8433,"39172":10472,"39173":3009,"39174":10492,"39175":17819,"39176":2653,"39177":11391,"39178":2802,"39179":11566,"39180":5072,"39181":9117,"39182":6204,"39183":9812,"39184":3628,"39185":16523,"39186":10900,"39187":10204,"39188":4627,"39189":16552,"39190":3576,"39191":7082,"39192":16337,"39193":15566,"39194":3589,"39195":3774,"39196":5460,"39197":11430,"39198":10288,"39199":10631,"39200":474,"39201":9649,"39202":18011,"39203":12277,"39204":18204,"39205":5268,"39206":15073,"39207":12154,"39208":14265,"39209":7500,"39210":161,"39211":4340,"39212":1009,"39213":13331,"39214":16359,"39215":10595,"39216":11323,"39217":17155,"39218":3251,"39219":4988,"39220":6666,"39221":12719,"39222":11944,"39223":6454,"39224":8341,"39225":15141,"39226":4526,"39227":14686,"39228":9863,"39229":13528,"39230":16752,"39231":12245,"39232":4624,"39233":2036,"39234":11360,"39235":8044,"39236":2637,"39237":17850,"39238":9427,"39239":4331,"39240":5130,"39241":16139,"39242":13802,"39243":14610,"39244":2786,"39245":11417,"39246":10015,"39247":14960,"39248":18284,"39249":14160,"39250":7686,"39251":7262,"39252":15821,"39253":5109,"39254":10869,"39255":15459,"39256":14292,"39257":8792,"39258":16689,"39259":15798,"39260":12551,"39261":14053,"39262":4473,"39263":12444,"39264":9924,"39265":6905,"39266":2568,"39267":13366,"39268":11843,"39269":3190,"39270":4028,"39271":8891,"39272":6871,"39273":12560,"39274":11838,"39275":10722,"39276":12493,"39277":10062,"39278":3244,"39279":603,"39280":13467,"39281":9395,"39282":9858,"39283":565,"39284":8950,"39285":11996,"39286":780,"39287":15494,"39288":7700,"39289":4894,"39290":17798,"39291":18033,"39292":11867,"39293":4894,"39294":11973,"39295":7062,"39296":2920,"39297":5386,"39298":10494,"39299":11187,"39300":663,"39301":8988,"39302":8243,"39303":3974,"39304":8667,"39305":16620,"39306":11501,"39307":8931,"39308":1457,"39309":2105,"39310":4682,"39311":2484,"39312":15022,"39313":2015,"39314":7501,"39315":12113,"39316":10592,"39317":10765,"39318":12908,"39319":4693,"39320":16630,"39321":17615,"39322":6691,"39323":14371,"39324":6579,"39325":1769,"39326":4433,"39327":3911,"39328":2515,"39329":2014,"39330":4375,"39331":10984,"39332":17432,"39333":13528,"39334":3807,"39335":12857,"39336":6340,"39337":6545,"39338":18083,"39339":2154,"39340":12277,"39341":18030,"39342":14084,"39343":4116,"39344":17895,"39345":14567,"39346":15553,"39347":667,"39348":3718,"39349":17266,"39350":14125,"39351":11416,"39352":13072,"39353":6884,"39354":7039,"39355":5008,"39356":3608,"39357":13923,"39358":14388,"39359":2321,"39360":6179,"39361":17522,"39362":5402,"39363":14010,"39364":346,"39365":4820,"39366":12844,"39367":5735,"39368":9720,"39369":14651,"39370":12536,"39371":1152,"39372":9747,"39373":14142,"39374":14237,"39375":7686,"39376":6456,"39377":14513,"39378":2317,"39379":4994,"39380":16136,"39381":7399,"39382":13733,"39383":12854,"39384":9649,"39385":9768,"39386":7289,"39387":3435,"39388":17229,"39389":3357,"39390":18188,"39391":12326,"39392":15102,"39393":10197,"39394":4944,"39395":5694,"39396":12618,"39397":1243,"39398":1655,"39399":11658,"39400":9452,"39401":16348,"39402":2967,"39403":7938,"39404":11429,"39405":8600,"39406":12386,"39407":9688,"39408":10555,"39409":16213,"39410":16791,"39411":11089,"39412":628,"39413":2232,"39414":5115,"39415":12208,"39416":11971,"39417":16807,"39418":3236,"39419":16866,"39420":12937,"39421":8177,"39422":5699,"39423":16042,"39424":7797,"39425":18091,"39426":5647,"39427":4590,"39428":6313,"39429":17766,"39430":2113,"39431":11492,"39432":1345,"39433":10776,"39434":10213,"39435":10277,"39436":11139,"39437":12384,"39438":7162,"39439":533,"39440":14009,"39441":14195,"39442":14914,"39443":8113,"39444":6975,"39445":9662,"39446":13513,"39447":1686,"39448":14569,"39449":2548,"39450":10705,"39451":15836,"39452":17383,"39453":15265,"39454":10775,"39455":3296,"39456":1341,"39457":14142,"39458":12264,"39459":7466,"39460":3284,"39461":13280,"39462":13664,"39463":4868,"39464":8788,"39465":8302,"39466":17796,"39467":7398,"39468":17720,"39469":6363,"39470":11770,"39471":10788,"39472":17878,"39473":1087,"39474":17936,"39475":8477,"39476":7688,"39477":8587,"39478":3193,"39479":13753,"39480":149,"39481":10138,"39482":11925,"39483":18048,"39484":16076,"39485":12492,"39486":2632,"39487":4679,"39488":5475,"39489":8697,"39490":3673,"39491":16973,"39492":655,"39493":15912,"39494":11638,"39495":17738,"39496":17532,"39497":8558,"39498":2392,"39499":4503,"39500":6381,"39501":1890,"39502":5474,"39503":18144,"39504":9376,"39505":4919,"39506":1468,"39507":4145,"39508":17619,"39509":2539,"39510":254,"39511":414,"39512":3167,"39513":15123,"39514":10933,"39515":6911,"39516":16687,"39517":8406,"39518":14660,"39519":15662,"39520":6620,"39521":12074,"39522":13402,"39523":5581,"39524":9212,"39525":8937,"39526":17239,"39527":8003,"39528":4831,"39529":6097,"39530":13950,"39531":11253,"39532":1946,"39533":1208,"39534":5143,"39535":1953,"39536":12291,"39537":16101,"39538":2259,"39539":6915,"39540":4468,"39541":5995,"39542":5034,"39543":13262,"39544":16913,"39545":12205,"39546":16488,"39547":12535,"39548":17486,"39549":3187,"39550":17431,"39551":8598,"39552":16220,"39553":6849,"39554":319,"39555":7557,"39556":13421,"39557":18125,"39558":5470,"39559":4171,"39560":15744,"39561":4958,"39562":14525,"39563":17206,"39564":6318,"39565":3557,"39566":4090,"39567":6948,"39568":16065,"39569":9778,"39570":2448,"39571":14704,"39572":857,"39573":1359,"39574":11752,"39575":2486,"39576":14839,"39577":6054,"39578":15985,"39579":4213,"39580":8649,"39581":1995,"39582":8779,"39583":14196,"39584":16235,"39585":17116,"39586":17693,"39587":3521,"39588":15329,"39589":12693,"39590":12427,"39591":16686,"39592":1991,"39593":13503,"39594":451,"39595":7746,"39596":17846,"39597":15592,"39598":9021,"39599":18356,"39600":3360,"39601":4196,"39602":2141,"39603":16310,"39604":142,"39605":15046,"39606":8121,"39607":2530,"39608":3769,"39609":135,"39610":9357,"39611":4391,"39612":6790,"39613":8682,"39614":6464,"39615":11354,"39616":18135,"39617":12356,"39618":6734,"39619":1206,"39620":6267,"39621":13720,"39622":2262,"39623":1774,"39624":15627,"39625":7893,"39626":4193,"39627":3972,"39628":4537,"39629":16590,"39630":5551,"39631":5367,"39632":8589,"39633":16575,"39634":14525,"39635":7362,"39636":14541,"39637":13172,"39638":14668,"39639":5148,"39640":18082,"39641":333,"39642":13829,"39643":2961,"39644":2559,"39645":9851,"39646":16466,"39647":2166,"39648":4732,"39649":8948,"39650":3729,"39651":4110,"39652":3517,"39653":1449,"39654":15293,"39655":10593,"39656":11619,"39657":2188,"39658":2130,"39659":10193,"39660":2193,"39661":10298,"39662":4304,"39663":12771,"39664":16545,"39665":15399,"39666":11899,"39667":15979,"39668":4495,"39669":3019,"39670":12081,"39671":13277,"39672":16601,"39673":17520,"39674":14182,"39675":3525,"39676":16020,"39677":10491,"39678":10621,"39679":8280,"39680":17988,"39681":15086,"39682":5205,"39683":10250,"39684":18090,"39685":15258,"39686":7816,"39687":16779,"39688":2744,"39689":16191,"39690":508,"39691":13050,"39692":9615,"39693":13794,"39694":12177,"39695":15724,"39696":16868,"39697":7886,"39698":6272,"39699":12919,"39700":15519,"39701":5265,"39702":10658,"39703":6647,"39704":10782,"39705":364,"39706":12814,"39707":12463,"39708":1214,"39709":16501,"39710":1683,"39711":5592,"39712":4,"39713":14212,"39714":10024,"39715":5892,"39716":15404,"39717":5168,"39718":10820,"39719":13081,"39720":14947,"39721":8325,"39722":8533,"39723":10425,"39724":8396,"39725":15739,"39726":15806,"39727":8202,"39728":9938,"39729":13802,"39730":9283,"39731":14341,"39732":5095,"39733":16751,"39734":12071,"39735":777,"39736":2215,"39737":11490,"39738":7627,"39739":8430,"39740":4432,"39741":5053,"39742":11064,"39743":13690,"39744":11033,"39745":5421,"39746":221,"39747":6533,"39748":1157,"39749":15091,"39750":13821,"39751":13595,"39752":1994,"39753":11576,"39754":18175,"39755":3496,"39756":14723,"39757":7595,"39758":5196,"39759":16670,"39760":7096,"39761":9567,"39762":13973,"39763":15375,"39764":12628,"39765":6987,"39766":11613,"39767":14204,"39768":6331,"39769":7380,"39770":14331,"39771":8088,"39772":8926,"39773":9315,"39774":17846,"39775":3496,"39776":2944,"39777":10722,"39778":15272,"39779":17444,"39780":4304,"39781":4196,"39782":13434,"39783":12836,"39784":2136,"39785":14393,"39786":3362,"39787":9376,"39788":13510,"39789":11322,"39790":6812,"39791":10847,"39792":5815,"39793":1986,"39794":5985,"39795":3073,"39796":14711,"39797":4457,"39798":665,"39799":9443,"39800":12534,"39801":3013,"39802":5917,"39803":15821,"39804":1959,"39805":7966,"39806":17295,"39807":1799,"39808":10646,"39809":7384,"39810":16866,"39811":8229,"39812":7248,"39813":5724,"39814":1099,"39815":18151,"39816":6948,"39817":6696,"39818":3428,"39819":8200,"39820":14441,"39821":2514,"39822":17997,"39823":9904,"39824":8017,"39825":10374,"39826":14832,"39827":5009,"39828":10717,"39829":17788,"39830":5966,"39831":6760,"39832":8957,"39833":7772,"39834":17975,"39835":17613,"39836":13507,"39837":3575,"39838":16354,"39839":293,"39840":8295,"39841":10809,"39842":15568,"39843":8398,"39844":12855,"39845":1129,"39846":12903,"39847":16315,"39848":6979,"39849":5436,"39850":9911,"39851":16030,"39852":849,"39853":16043,"39854":8772,"39855":13112,"39856":327,"39857":11433,"39858":11287,"39859":18156,"39860":14967,"39861":16327,"39862":10821,"39863":5513,"39864":7743,"39865":5620,"39866":8523,"39867":3096,"39868":6698,"39869":4540,"39870":12999,"39871":7342,"39872":7388,"39873":10748,"39874":7673,"39875":14655,"39876":14304,"39877":2170,"39878":15078,"39879":13101,"39880":2336,"39881":12888,"39882":11082,"39883":6572,"39884":8338,"39885":2629,"39886":9431,"39887":2159,"39888":2138,"39889":12220,"39890":25,"39891":1172,"39892":1044,"39893":12263,"39894":1627,"39895":5777,"39896":5567,"39897":2300,"39898":6484,"39899":17966,"39900":4564,"39901":5911,"39902":15861,"39903":8561,"39904":2454,"39905":5739,"39906":11445,"39907":15283,"39908":14653,"39909":7065,"39910":16275,"39911":14422,"39912":13618,"39913":14925,"39914":13991,"39915":1516,"39916":3587,"39917":4427,"39918":18177,"39919":15801,"39920":9512,"39921":6410,"39922":17273,"39923":1923,"39924":17236,"39925":4183,"39926":9671,"39927":8252,"39928":14034,"39929":1637,"39930":14717,"39931":1684,"39932":15613,"39933":16135,"39934":4454,"39935":10089,"39936":11588,"39937":17624,"39938":17700,"39939":11332,"39940":11042,"39941":15767,"39942":9062,"39943":13789,"39944":11075,"39945":6222,"39946":4010,"39947":9338,"39948":7853,"39949":4852,"39950":18139,"39951":16779,"39952":14553,"39953":12040,"39954":15866,"39955":9501,"39956":7992,"39957":6224,"39958":7981,"39959":5509,"39960":43,"39961":8939,"39962":14412,"39963":242,"39964":8134,"39965":14695,"39966":4167,"39967":16212,"39968":16371,"39969":7295,"39970":6226,"39971":6846,"39972":7313,"39973":2384,"39974":15938,"39975":7604,"39976":3983,"39977":7843,"39978":3975,"39979":14730,"39980":256,"39981":15759,"39982":5113,"39983":12389,"39984":4253,"39985":14060,"39986":7519,"39987":10910,"39988":15411,"39989":2639,"39990":13020,"39991":5952,"39992":1900,"39993":759,"39994":4232,"39995":8206,"39996":16471,"39997":12228,"39998":2458,"39999":11683,"40000":6081,"40001":12775,"40002":6349,"40003":17007,"40004":14175,"40005":15581,"40006":7916,"40007":10291,"40008":2487,"40009":6920,"40010":2011,"40011":12448,"40012":5343,"40013":1166,"40014":10712,"40015":14899,"40016":4589,"40017":17737,"40018":109,"40019":4683,"40020":11953,"40021":1683,"40022":5435,"40023":17327,"40024":6256,"40025":3568,"40026":9694,"40027":11116,"40028":7165,"40029":13552,"40030":18148,"40031":7004,"40032":10072,"40033":5192,"40034":2723,"40035":5443,"40036":8947,"40037":11014,"40038":4403,"40039":1042,"40040":8152,"40041":10718,"40042":12075,"40043":18342,"40044":1324,"40045":9533,"40046":5691,"40047":4763,"40048":8344,"40049":6785,"40050":9391,"40051":2212,"40052":15369,"40053":3833,"40054":17125,"40055":7395,"40056":13907,"40057":5662,"40058":16083,"40059":2174,"40060":17405,"40061":15221,"40062":13034,"40063":883,"40064":10131,"40065":2803,"40066":7009,"40067":16628,"40068":16865,"40069":1209,"40070":5407,"40071":11735,"40072":6897,"40073":12679,"40074":15391,"40075":728,"40076":4796,"40077":6313,"40078":8005,"40079":7525,"40080":13725,"40081":9847,"40082":8098,"40083":13272,"40084":6437,"40085":8663,"40086":2453,"40087":10438,"40088":18247,"40089":2454,"40090":14788,"40091":15777,"40092":5918,"40093":3173,"40094":14238,"40095":12955,"40096":7635,"40097":10497,"40098":4328,"40099":11271,"40100":2530,"40101":14915,"40102":13616,"40103":8664,"40104":15618,"40105":6475,"40106":7730,"40107":59,"40108":18079,"40109":12057,"40110":15258,"40111":6306,"40112":3997,"40113":6203,"40114":9466,"40115":14582,"40116":5302,"40117":2825,"40118":15900,"40119":92,"40120":15986,"40121":5651,"40122":295,"40123":14747,"40124":10150,"40125":3355,"40126":1938,"40127":10378,"40128":11927,"40129":192,"40130":6002,"40131":7793,"40132":11490,"40133":16385,"40134":18005,"40135":6683,"40136":13001,"40137":16556,"40138":2170,"40139":804,"40140":13389,"40141":10605,"40142":13632,"40143":11468,"40144":10249,"40145":5416,"40146":11634,"40147":18162,"40148":11801,"40149":6103,"40150":14200,"40151":11068,"40152":9815,"40153":11908,"40154":8410,"40155":12069,"40156":462,"40157":9206,"40158":9196,"40159":16329,"40160":11827,"40161":11860,"40162":16992,"40163":12766,"40164":15436,"40165":13393,"40166":3318,"40167":11963,"40168":11806,"40169":18076,"40170":9516,"40171":158,"40172":1466,"40173":16012,"40174":2037,"40175":18109,"40176":14334,"40177":12993,"40178":1493,"40179":1029,"40180":4222,"40181":13517,"40182":9452,"40183":9704,"40184":14268,"40185":7767,"40186":122,"40187":12403,"40188":678,"40189":6069,"40190":15760,"40191":3055,"40192":9239,"40193":12010,"40194":17707,"40195":10871,"40196":18112,"40197":13265,"40198":7407,"40199":10671,"40200":11906,"40201":9974,"40202":7884,"40203":17090,"40204":110,"40205":16287,"40206":88,"40207":8076,"40208":12530,"40209":3489,"40210":12773,"40211":2056,"40212":12939,"40213":1166,"40214":8036,"40215":17876,"40216":3352,"40217":12193,"40218":2790,"40219":5777,"40220":13765,"40221":15949,"40222":14694,"40223":14789,"40224":17658,"40225":5144,"40226":8150,"40227":6331,"40228":1730,"40229":18285,"40230":3985,"40231":4922,"40232":11082,"40233":3489,"40234":6988,"40235":17949,"40236":784,"40237":9670,"40238":18248,"40239":4194,"40240":7659,"40241":3382,"40242":17122,"40243":8572,"40244":4134,"40245":583,"40246":841,"40247":650,"40248":6603,"40249":7771,"40250":6040,"40251":6772,"40252":8910,"40253":8158,"40254":7637,"40255":5248,"40256":2413,"40257":2973,"40258":16361,"40259":11670,"40260":15806,"40261":9173,"40262":1972,"40263":10849,"40264":3237,"40265":9632,"40266":7268,"40267":9229,"40268":16080,"40269":5254,"40270":9510,"40271":9631,"40272":6617,"40273":8528,"40274":6064,"40275":14453,"40276":7599,"40277":3436,"40278":17659,"40279":11122,"40280":825,"40281":17652,"40282":17639,"40283":337,"40284":15500,"40285":76,"40286":15618,"40287":4326,"40288":16563,"40289":2885,"40290":1933,"40291":10776,"40292":17111,"40293":2437,"40294":14329,"40295":16455,"40296":14804,"40297":8126,"40298":3426,"40299":7268,"40300":5811,"40301":3127,"40302":8053,"40303":11892,"40304":3044,"40305":8572,"40306":6139,"40307":6290,"40308":17270,"40309":4325,"40310":9546,"40311":9844,"40312":15750,"40313":1641,"40314":245,"40315":2421,"40316":8315,"40317":18199,"40318":11335,"40319":17467,"40320":9491,"40321":2889,"40322":14464,"40323":15800,"40324":10497,"40325":3353,"40326":7072,"40327":6485,"40328":3351,"40329":2733,"40330":13647,"40331":3677,"40332":7789,"40333":14155,"40334":5255,"40335":4921,"40336":7720,"40337":4303,"40338":9422,"40339":17052,"40340":6673,"40341":18123,"40342":2913,"40343":7947,"40344":2504,"40345":11593,"40346":9095,"40347":3085,"40348":8008,"40349":10389,"40350":15037,"40351":13692,"40352":17911,"40353":4984,"40354":7000,"40355":8547,"40356":1463,"40357":15189,"40358":3525,"40359":8819,"40360":10800,"40361":2146,"40362":18313,"40363":15029,"40364":829,"40365":12291,"40366":15214,"40367":11674,"40368":4849,"40369":2162,"40370":7629,"40371":8105,"40372":1576,"40373":12307,"40374":2068,"40375":8191,"40376":4925,"40377":8538,"40378":6653,"40379":306,"40380":15184,"40381":2182,"40382":14703,"40383":201,"40384":16120,"40385":9200,"40386":5521,"40387":2939,"40388":16858,"40389":12933,"40390":16836,"40391":8637,"40392":16434,"40393":1716,"40394":16071,"40395":17664,"40396":12548,"40397":8206,"40398":13990,"40399":6781,"40400":3624,"40401":13510,"40402":8531,"40403":16118,"40404":11226,"40405":8865,"40406":12416,"40407":5293,"40408":12627,"40409":6294,"40410":7342,"40411":9214,"40412":14542,"40413":3703,"40414":13263,"40415":1800,"40416":936,"40417":13173,"40418":4749,"40419":7547,"40420":17969,"40421":6492,"40422":11290,"40423":7948,"40424":15498,"40425":16430,"40426":10715,"40427":12604,"40428":9645,"40429":10225,"40430":6569,"40431":15327,"40432":3612,"40433":13252,"40434":11533,"40435":6977,"40436":3245,"40437":7893,"40438":15103,"40439":10150,"40440":11995,"40441":11845,"40442":8794,"40443":8166,"40444":9897,"40445":17465,"40446":11943,"40447":867,"40448":9295,"40449":17152,"40450":11009,"40451":14316,"40452":9297,"40453":961,"40454":9545,"40455":17174,"40456":10667,"40457":4663,"40458":14778,"40459":11816,"40460":3632,"40461":12408,"40462":5473,"40463":14234,"40464":3953,"40465":6297,"40466":4127,"40467":9557,"40468":14627,"40469":3378,"40470":287,"40471":2416,"40472":7845,"40473":2667,"40474":363,"40475":10610,"40476":15040,"40477":15474,"40478":798,"40479":11860,"40480":7978,"40481":4433,"40482":9160,"40483":11755,"40484":6253,"40485":1628,"40486":3015,"40487":14552,"40488":14918,"40489":13937,"40490":14646,"40491":17266,"40492":17320,"40493":10905,"40494":16960,"40495":9509,"40496":11224,"40497":4587,"40498":11250,"40499":3571,"40500":12577,"40501":18108,"40502":4329,"40503":4956,"40504":3150,"40505":10369,"40506":3892,"40507":18050,"40508":9110,"40509":1012,"40510":18041,"40511":15131,"40512":8798,"40513":17302,"40514":9127,"40515":7613,"40516":14924,"40517":7145,"40518":13091,"40519":1285,"40520":1446,"40521":15650,"40522":7740,"40523":14697,"40524":2435,"40525":6885,"40526":8817,"40527":10631,"40528":14404,"40529":13022,"40530":10582,"40531":5738,"40532":5110,"40533":7785,"40534":5347,"40535":5758,"40536":11902,"40537":2508,"40538":3385,"40539":16059,"40540":16149,"40541":18332,"40542":8957,"40543":12882,"40544":7345,"40545":15047,"40546":190,"40547":15286,"40548":12896,"40549":11247,"40550":303,"40551":16980,"40552":13839,"40553":14646,"40554":10126,"40555":17990,"40556":7830,"40557":2034,"40558":8536,"40559":17409,"40560":14594,"40561":3961,"40562":11847,"40563":9660,"40564":13108,"40565":11675,"40566":16767,"40567":3994,"40568":16427,"40569":921,"40570":14086,"40571":11133,"40572":13016,"40573":11809,"40574":14400,"40575":5067,"40576":12884,"40577":8348,"40578":7447,"40579":12303,"40580":11458,"40581":9126,"40582":5023,"40583":17112,"40584":6592,"40585":16926,"40586":6749,"40587":3486,"40588":3677,"40589":11198,"40590":10678,"40591":15798,"40592":15190,"40593":12833,"40594":6737,"40595":4075,"40596":7795,"40597":13500,"40598":18031,"40599":3453,"40600":11735,"40601":12038,"40602":17471,"40603":16733,"40604":3060,"40605":1241,"40606":5529,"40607":11392,"40608":3154,"40609":2723,"40610":10494,"40611":1423,"40612":816,"40613":4015,"40614":3049,"40615":10177,"40616":7626,"40617":2564,"40618":10496,"40619":10767,"40620":15016,"40621":8070,"40622":14399,"40623":9550,"40624":13683,"40625":868,"40626":7061,"40627":5625,"40628":6051,"40629":10789,"40630":7513,"40631":7962,"40632":5856,"40633":7734,"40634":10275,"40635":3884,"40636":8721,"40637":17911,"40638":911,"40639":14148,"40640":17763,"40641":13718,"40642":7450,"40643":14388,"40644":16529,"40645":16971,"40646":4623,"40647":12112,"40648":3705,"40649":14689,"40650":8168,"40651":7449,"40652":13067,"40653":12312,"40654":2914,"40655":15596,"40656":16249,"40657":10978,"40658":6045,"40659":2537,"40660":2576,"40661":14127,"40662":2505,"40663":17450,"40664":2990,"40665":15208,"40666":7604,"40667":13400,"40668":2725,"40669":15327,"40670":16092,"40671":6131,"40672":17192,"40673":2481,"40674":5478,"40675":11716,"40676":2426,"40677":17535,"40678":9026,"40679":12579,"40680":17815,"40681":17930,"40682":14650,"40683":13839,"40684":2351,"40685":4885,"40686":15101,"40687":6550,"40688":17515,"40689":18230,"40690":4199,"40691":1247,"40692":14708,"40693":13737,"40694":12608,"40695":6733,"40696":12247,"40697":2463,"40698":2538,"40699":16061,"40700":8005,"40701":14721,"40702":17914,"40703":3304,"40704":15694,"40705":18123,"40706":16810,"40707":12201,"40708":2048,"40709":5702,"40710":7378,"40711":4603,"40712":2159,"40713":17041,"40714":15791,"40715":16006,"40716":9014,"40717":6500,"40718":8043,"40719":17913,"40720":8920,"40721":9078,"40722":12340,"40723":3777,"40724":10466,"40725":3525,"40726":8617,"40727":17148,"40728":10868,"40729":8090,"40730":11234,"40731":3875,"40732":1631,"40733":3865,"40734":2715,"40735":8315,"40736":853,"40737":12265,"40738":16925,"40739":4876,"40740":11759,"40741":11378,"40742":12303,"40743":14263,"40744":1785,"40745":4712,"40746":11895,"40747":13783,"40748":7584,"40749":16958,"40750":15862,"40751":7813,"40752":14450,"40753":2093,"40754":6531,"40755":15540,"40756":17253,"40757":16275,"40758":15647,"40759":4295,"40760":14237,"40761":2625,"40762":12815,"40763":17109,"40764":17363,"40765":2537,"40766":15447,"40767":7492,"40768":359,"40769":5490,"40770":17644,"40771":13985,"40772":16165,"40773":17107,"40774":6113,"40775":12663,"40776":9308,"40777":15947,"40778":9716,"40779":15354,"40780":10216,"40781":10195,"40782":17958,"40783":13348,"40784":7094,"40785":18029,"40786":10809,"40787":12098,"40788":12689,"40789":1976,"40790":5538,"40791":8297,"40792":4770,"40793":1371,"40794":6701,"40795":17521,"40796":4302,"40797":1937,"40798":17105,"40799":9116,"40800":242,"40801":12040,"40802":15572,"40803":11193,"40804":11974,"40805":1505,"40806":2304,"40807":15404,"40808":3088,"40809":4537,"40810":8771,"40811":10929,"40812":8204,"40813":5314,"40814":10516,"40815":10207,"40816":14101,"40817":3697,"40818":2104,"40819":16632,"40820":10945,"40821":6341,"40822":4512,"40823":8314,"40824":14770,"40825":13961,"40826":13245,"40827":16674,"40828":7231,"40829":9549,"40830":14003,"40831":8440,"40832":13409,"40833":6111,"40834":1380,"40835":7798,"40836":9176,"40837":16434,"40838":29,"40839":11541,"40840":8334,"40841":12858,"40842":997,"40843":14852,"40844":13119,"40845":9093,"40846":4816,"40847":6473,"40848":3934,"40849":9577,"40850":12294,"40851":14994,"40852":7276,"40853":6201,"40854":11103,"40855":1814,"40856":14948,"40857":11166,"40858":3907,"40859":6160,"40860":6082,"40861":6608,"40862":10744,"40863":246,"40864":2473,"40865":12217,"40866":5162,"40867":15586,"40868":14307,"40869":2477,"40870":10238,"40871":14075,"40872":6483,"40873":1259,"40874":18154,"40875":7204,"40876":9258,"40877":14138,"40878":1675,"40879":6563,"40880":12746,"40881":8557,"40882":10600,"40883":9369,"40884":13488,"40885":5577,"40886":10082,"40887":7264,"40888":11189,"40889":5832,"40890":12987,"40891":13310,"40892":16779,"40893":8041,"40894":7614,"40895":13868,"40896":11991,"40897":1561,"40898":8185,"40899":2949,"40900":16248,"40901":8553,"40902":2384,"40903":17579,"40904":581,"40905":14129,"40906":4557,"40907":4399,"40908":7434,"40909":15040,"40910":7195,"40911":14286,"40912":8303,"40913":9164,"40914":3043,"40915":12058,"40916":16805,"40917":3402,"40918":9039,"40919":4171,"40920":9281,"40921":18243,"40922":3442,"40923":13655,"40924":17404,"40925":9491,"40926":2695,"40927":14265,"40928":5815,"40929":17380,"40930":9664,"40931":16516,"40932":14358,"40933":5197,"40934":7616,"40935":17312,"40936":9363,"40937":16406,"40938":3842,"40939":14596,"40940":7300,"40941":13159,"40942":6404,"40943":1800,"40944":5268,"40945":8838,"40946":6994,"40947":95,"40948":17489,"40949":705,"40950":3978,"40951":4442,"40952":12340,"40953":15788,"40954":17881,"40955":8310,"40956":11193,"40957":466,"40958":5176,"40959":14323,"40960":5717,"40961":9310,"40962":2363,"40963":13506,"40964":4582,"40965":3804,"40966":5369,"40967":8723,"40968":17362,"40969":2894,"40970":1969,"40971":11753,"40972":9521,"40973":7590,"40974":2630,"40975":16710,"40976":2158,"40977":13222,"40978":15236,"40979":10631,"40980":18086,"40981":2199,"40982":6646,"40983":950,"40984":12847,"40985":5831,"40986":6139,"40987":6336,"40988":1457,"40989":9158,"40990":1592,"40991":11177,"40992":14326,"40993":16485,"40994":10026,"40995":2159,"40996":11142,"40997":1887,"40998":4269,"40999":8184,"41000":14234,"41001":8028,"41002":16709,"41003":12168,"41004":2857,"41005":13906,"41006":840,"41007":8464,"41008":7536,"41009":7958,"41010":12528,"41011":7051,"41012":13213,"41013":5520,"41014":15704,"41015":16161,"41016":1720,"41017":8472,"41018":12769,"41019":14850,"41020":9768,"41021":7787,"41022":6776,"41023":14242,"41024":11902,"41025":7085,"41026":14774,"41027":13881,"41028":2806,"41029":6004,"41030":10588,"41031":6278,"41032":14072,"41033":4432,"41034":3031,"41035":5905,"41036":6715,"41037":13490,"41038":4575,"41039":7487,"41040":3962,"41041":11293,"41042":5558,"41043":11049,"41044":14269,"41045":11890,"41046":4517,"41047":15858,"41048":9216,"41049":9913,"41050":4508,"41051":10345,"41052":3448,"41053":1491,"41054":2347,"41055":5588,"41056":14838,"41057":5422,"41058":18043,"41059":931,"41060":953,"41061":17704,"41062":12979,"41063":2356,"41064":9401,"41065":11999,"41066":7601,"41067":13584,"41068":16082,"41069":3533,"41070":10071,"41071":983,"41072":3658,"41073":2373,"41074":8854,"41075":8276,"41076":890,"41077":1940,"41078":6597,"41079":2289,"41080":4615,"41081":2349,"41082":16355,"41083":6691,"41084":11574,"41085":14211,"41086":8792,"41087":13177,"41088":13746,"41089":8380,"41090":10399,"41091":7139,"41092":15035,"41093":15617,"41094":17358,"41095":16645,"41096":12356,"41097":17660,"41098":18210,"41099":5921,"41100":7497,"41101":285,"41102":9706,"41103":17597,"41104":18284,"41105":5729,"41106":14200,"41107":13148,"41108":8359,"41109":787,"41110":6725,"41111":16984,"41112":7986,"41113":1170,"41114":5925,"41115":11395,"41116":6714,"41117":12371,"41118":8909,"41119":12568,"41120":15770,"41121":8695,"41122":13757,"41123":5271,"41124":10614,"41125":5337,"41126":1090,"41127":15484,"41128":15890,"41129":7458,"41130":13895,"41131":12443,"41132":8595,"41133":10354,"41134":1685,"41135":3843,"41136":12767,"41137":8943,"41138":6425,"41139":16176,"41140":11774,"41141":6221,"41142":7037,"41143":9985,"41144":17113,"41145":14541,"41146":8286,"41147":14890,"41148":4118,"41149":8483,"41150":7314,"41151":13277,"41152":2346,"41153":3624,"41154":14894,"41155":17721,"41156":8131,"41157":14729,"41158":16272,"41159":3327,"41160":15065,"41161":8735,"41162":4506,"41163":13352,"41164":5115,"41165":12862,"41166":7704,"41167":17625,"41168":3660,"41169":4430,"41170":15139,"41171":16035,"41172":15066,"41173":12415,"41174":2337,"41175":9387,"41176":14066,"41177":3377,"41178":10581,"41179":2881,"41180":1508,"41181":178,"41182":18241,"41183":11169,"41184":17563,"41185":617,"41186":17190,"41187":6515,"41188":862,"41189":1838,"41190":8430,"41191":5909,"41192":17607,"41193":14621,"41194":14293,"41195":10050,"41196":7393,"41197":12497,"41198":1815,"41199":5119,"41200":15780,"41201":13405,"41202":16763,"41203":13218,"41204":8809,"41205":14222,"41206":7233,"41207":4004,"41208":20,"41209":11214,"41210":13848,"41211":1244,"41212":19,"41213":13657,"41214":9588,"41215":12878,"41216":3792,"41217":8125,"41218":2273,"41219":15076,"41220":11217,"41221":17768,"41222":3178,"41223":15395,"41224":12565,"41225":14050,"41226":8368,"41227":14907,"41228":10886,"41229":17321,"41230":2024,"41231":1707,"41232":16096,"41233":12698,"41234":17902,"41235":1879,"41236":17064,"41237":12668,"41238":7076,"41239":11404,"41240":2628,"41241":14388,"41242":6877,"41243":7672,"41244":4859,"41245":13593,"41246":12427,"41247":16323,"41248":16712,"41249":13620,"41250":699,"41251":11406,"41252":2054,"41253":16783,"41254":1870,"41255":10740,"41256":6443,"41257":3859,"41258":16350,"41259":17905,"41260":9226,"41261":9740,"41262":16350,"41263":16895,"41264":9394,"41265":8968,"41266":18155,"41267":4877,"41268":9539,"41269":18225,"41270":3083,"41271":14435,"41272":7253,"41273":2985,"41274":16754,"41275":12778,"41276":616,"41277":1316,"41278":7794,"41279":3806,"41280":1552,"41281":17514,"41282":12518,"41283":1635,"41284":12053,"41285":15911,"41286":17624,"41287":12430,"41288":18280,"41289":61,"41290":6972,"41291":17271,"41292":2775,"41293":18053,"41294":8155,"41295":7872,"41296":8370,"41297":10174,"41298":3513,"41299":6906,"41300":9838,"41301":5368,"41302":10889,"41303":13020,"41304":3514,"41305":2771,"41306":11214,"41307":2995,"41308":5522,"41309":6684,"41310":2606,"41311":3380,"41312":12839,"41313":15417,"41314":6035,"41315":9876,"41316":12487,"41317":306,"41318":8718,"41319":3750,"41320":17818,"41321":11030,"41322":4506,"41323":7093,"41324":14923,"41325":11072,"41326":18207,"41327":15975,"41328":6327,"41329":8613,"41330":10455,"41331":16417,"41332":10457,"41333":14326,"41334":7844,"41335":7127,"41336":17685,"41337":11972,"41338":5588,"41339":10628,"41340":9205,"41341":13315,"41342":12624,"41343":7440,"41344":6171,"41345":13176,"41346":13458,"41347":12469,"41348":17008,"41349":16287,"41350":11893,"41351":6954,"41352":499,"41353":16204,"41354":11360,"41355":16379,"41356":14957,"41357":9447,"41358":5026,"41359":2313,"41360":7009,"41361":11253,"41362":7233,"41363":14369,"41364":16085,"41365":17791,"41366":7548,"41367":17654,"41368":10452,"41369":5437,"41370":6823,"41371":18085,"41372":8186,"41373":17949,"41374":6580,"41375":8926,"41376":16953,"41377":13207,"41378":8718,"41379":11160,"41380":8566,"41381":12859,"41382":2591,"41383":15862,"41384":2475,"41385":6804,"41386":11341,"41387":18251,"41388":14384,"41389":2982,"41390":6929,"41391":17318,"41392":5436,"41393":4839,"41394":13198,"41395":457,"41396":15743,"41397":12048,"41398":14454,"41399":8830,"41400":17951,"41401":10449,"41402":3079,"41403":13818,"41404":395,"41405":16310,"41406":16810,"41407":13201,"41408":2589,"41409":2564,"41410":7774,"41411":8431,"41412":3479,"41413":12436,"41414":13443,"41415":18141,"41416":3861,"41417":10880,"41418":3953,"41419":9631,"41420":2610,"41421":5925,"41422":882,"41423":6022,"41424":5846,"41425":2527,"41426":13613,"41427":9463,"41428":7248,"41429":13418,"41430":13281,"41431":10969,"41432":14639,"41433":6674,"41434":1282,"41435":15488,"41436":8984,"41437":5318,"41438":9428,"41439":8798,"41440":15907,"41441":10540,"41442":12228,"41443":1028,"41444":12753,"41445":2471,"41446":2794,"41447":5133,"41448":11756,"41449":9755,"41450":2052,"41451":1751,"41452":11014,"41453":718,"41454":15929,"41455":12697,"41456":502,"41457":9344,"41458":17284,"41459":772,"41460":11981,"41461":2040,"41462":17610,"41463":12507,"41464":8290,"41465":12811,"41466":3403,"41467":8338,"41468":10015,"41469":9908,"41470":17502,"41471":13438,"41472":13580,"41473":6777,"41474":18040,"41475":12216,"41476":17561,"41477":14737,"41478":10407,"41479":16974,"41480":6497,"41481":2001,"41482":13936,"41483":10392,"41484":12076,"41485":6627,"41486":3662,"41487":9606,"41488":6708,"41489":1195,"41490":9856,"41491":257,"41492":13955,"41493":5610,"41494":12951,"41495":13423,"41496":5551,"41497":9899,"41498":18288,"41499":14401,"41500":5430,"41501":1904,"41502":4372,"41503":2354,"41504":3065,"41505":10091,"41506":14416,"41507":11952,"41508":2786,"41509":3265,"41510":18325,"41511":3855,"41512":7099,"41513":16716,"41514":4032,"41515":13563,"41516":7119,"41517":2338,"41518":1603,"41519":8693,"41520":3538,"41521":6754,"41522":6816,"41523":15399,"41524":15980,"41525":14701,"41526":2203,"41527":2353,"41528":1243,"41529":4780,"41530":746,"41531":12559,"41532":11228,"41533":17140,"41534":16798,"41535":3012,"41536":12264,"41537":11668,"41538":16334,"41539":8932,"41540":10230,"41541":6696,"41542":1548,"41543":9874,"41544":15135,"41545":1429,"41546":4772,"41547":11838,"41548":17432,"41549":9754,"41550":6566,"41551":15169,"41552":7465,"41553":10674,"41554":14415,"41555":10342,"41556":3001,"41557":11179,"41558":18072,"41559":7655,"41560":17092,"41561":6824,"41562":12863,"41563":9174,"41564":5933,"41565":15210,"41566":17835,"41567":18208,"41568":12249,"41569":4885,"41570":11185,"41571":12410,"41572":13216,"41573":6086,"41574":14943,"41575":14972,"41576":1708,"41577":16940,"41578":13263,"41579":16580,"41580":9961,"41581":13637,"41582":12232,"41583":1590,"41584":6819,"41585":13477,"41586":9819,"41587":11179,"41588":14274,"41589":3638,"41590":3629,"41591":15771,"41592":8924,"41593":11366,"41594":12763,"41595":7388,"41596":1078,"41597":1764,"41598":7257,"41599":15650,"41600":6993,"41601":338,"41602":4020,"41603":9641,"41604":17747,"41605":1560,"41606":13305,"41607":4284,"41608":16514,"41609":4122,"41610":11189,"41611":13667,"41612":10761,"41613":5131,"41614":10136,"41615":5478,"41616":1813,"41617":14734,"41618":33,"41619":17756,"41620":7959,"41621":4591,"41622":7570,"41623":8829,"41624":2447,"41625":761,"41626":11844,"41627":10827,"41628":14924,"41629":2065,"41630":16701,"41631":17331,"41632":9783,"41633":18006,"41634":14670,"41635":14134,"41636":2633,"41637":3064,"41638":6698,"41639":16340,"41640":2041,"41641":14486,"41642":5045,"41643":6511,"41644":4019,"41645":1455,"41646":5019,"41647":9632,"41648":1549,"41649":17710,"41650":11329,"41651":517,"41652":7821,"41653":13929,"41654":6678,"41655":7159,"41656":6232,"41657":6360,"41658":3406,"41659":17083,"41660":2287,"41661":15916,"41662":15601,"41663":7427,"41664":15470,"41665":933,"41666":7945,"41667":8738,"41668":4404,"41669":14832,"41670":3038,"41671":14793,"41672":12553,"41673":4817,"41674":6873,"41675":18176,"41676":9614,"41677":8260,"41678":5025,"41679":16445,"41680":5219,"41681":16839,"41682":8373,"41683":2336,"41684":14979,"41685":5620,"41686":13673,"41687":7772,"41688":16139,"41689":16998,"41690":4887,"41691":15822,"41692":14875,"41693":6400,"41694":14816,"41695":7934,"41696":10022,"41697":11838,"41698":12321,"41699":3329,"41700":1780,"41701":10336,"41702":5276,"41703":1970,"41704":16850,"41705":5261,"41706":7667,"41707":6850,"41708":15714,"41709":7921,"41710":13293,"41711":1968,"41712":6900,"41713":8497,"41714":9386,"41715":10878,"41716":7930,"41717":13470,"41718":17164,"41719":5093,"41720":9520,"41721":588,"41722":1134,"41723":2032,"41724":12154,"41725":7630,"41726":610,"41727":8171,"41728":17775,"41729":1108,"41730":17147,"41731":16114,"41732":6791,"41733":1543,"41734":7847,"41735":4460,"41736":144,"41737":9070,"41738":13282,"41739":7112,"41740":17060,"41741":13712,"41742":6699,"41743":14497,"41744":2315,"41745":11407,"41746":9977,"41747":1244,"41748":5278,"41749":2483,"41750":12977,"41751":9,"41752":5857,"41753":6566,"41754":7671,"41755":1545,"41756":708,"41757":9999,"41758":11621,"41759":10903,"41760":11124,"41761":12181,"41762":17820,"41763":6656,"41764":15311,"41765":3963,"41766":3243,"41767":17616,"41768":7537,"41769":13964,"41770":11415,"41771":15908,"41772":8048,"41773":3545,"41774":2796,"41775":539,"41776":13986,"41777":7463,"41778":4025,"41779":12300,"41780":2347,"41781":9872,"41782":2478,"41783":9195,"41784":1458,"41785":1103,"41786":2138,"41787":17553,"41788":10480,"41789":4138,"41790":4675,"41791":5880,"41792":10441,"41793":15787,"41794":9689,"41795":16523,"41796":7363,"41797":11141,"41798":16011,"41799":8101,"41800":9894,"41801":13131,"41802":4184,"41803":8591,"41804":17177,"41805":4840,"41806":11523,"41807":7110,"41808":10314,"41809":833,"41810":9005,"41811":5355,"41812":13492,"41813":3519,"41814":6155,"41815":17187,"41816":15829,"41817":1743,"41818":10718,"41819":5712,"41820":5824,"41821":9140,"41822":8591,"41823":16746,"41824":11948,"41825":7148,"41826":12850,"41827":16959,"41828":15233,"41829":17992,"41830":10774,"41831":2449,"41832":42,"41833":14071,"41834":4757,"41835":7011,"41836":14976,"41837":11427,"41838":3951,"41839":8866,"41840":17021,"41841":8322,"41842":11269,"41843":2047,"41844":12444,"41845":14789,"41846":12011,"41847":5973,"41848":2322,"41849":4554,"41850":6381,"41851":2555,"41852":1926,"41853":8544,"41854":3826,"41855":9739,"41856":978,"41857":6906,"41858":6532,"41859":935,"41860":12131,"41861":9971,"41862":5639,"41863":5523,"41864":4279,"41865":14169,"41866":11202,"41867":5454,"41868":12843,"41869":4443,"41870":12734,"41871":4263,"41872":1283,"41873":11092,"41874":5500,"41875":7825,"41876":4458,"41877":5821,"41878":17593,"41879":625,"41880":462,"41881":3456,"41882":2380,"41883":10323,"41884":16927,"41885":3174,"41886":439,"41887":5190,"41888":4761,"41889":15643,"41890":7430,"41891":11312,"41892":17737,"41893":1077,"41894":202,"41895":327,"41896":1359,"41897":14673,"41898":4863,"41899":2777,"41900":5971,"41901":8959,"41902":3518,"41903":8562,"41904":6011,"41905":14370,"41906":14223,"41907":4963,"41908":5378,"41909":11894,"41910":5245,"41911":9776,"41912":1007,"41913":13509,"41914":7225,"41915":3857,"41916":9842,"41917":14320,"41918":2009,"41919":9596,"41920":2834,"41921":6561,"41922":17924,"41923":1211,"41924":5476,"41925":10392,"41926":11719,"41927":4909,"41928":4558,"41929":17899,"41930":970,"41931":17842,"41932":1491,"41933":2291,"41934":8580,"41935":4916,"41936":7720,"41937":13671,"41938":3781,"41939":10214,"41940":10637,"41941":4366,"41942":15491,"41943":17572,"41944":5793,"41945":17572,"41946":5399,"41947":6150,"41948":10218,"41949":2985,"41950":6368,"41951":2430,"41952":8022,"41953":9825,"41954":5483,"41955":2191,"41956":14668,"41957":12917,"41958":1703,"41959":10698,"41960":14157,"41961":6755,"41962":14876,"41963":3319,"41964":3137,"41965":17746,"41966":5229,"41967":16428,"41968":15259,"41969":17038,"41970":17603,"41971":13710,"41972":12591,"41973":14046,"41974":2533,"41975":15016,"41976":11815,"41977":6980,"41978":14819,"41979":5702,"41980":11472,"41981":11053,"41982":13973,"41983":9319,"41984":5155,"41985":5083,"41986":17854,"41987":12068,"41988":16288,"41989":9670,"41990":1589,"41991":17811,"41992":1215,"41993":5507,"41994":7992,"41995":14473,"41996":14308,"41997":5865,"41998":7565,"41999":16567,"42000":5635,"42001":17077,"42002":3730,"42003":17130,"42004":10336,"42005":6500,"42006":12652,"42007":306,"42008":17588,"42009":8479,"42010":17810,"42011":10187,"42012":11973,"42013":5858,"42014":15122,"42015":2323,"42016":12174,"42017":8150,"42018":13171,"42019":18148,"42020":8927,"42021":7134,"42022":9623,"42023":11851,"42024":261,"42025":14318,"42026":5294,"42027":2231,"42028":6112,"42029":5801,"42030":17871,"42031":15178,"42032":11468,"42033":7431,"42034":5501,"42035":10459,"42036":6436,"42037":8594,"42038":15466,"42039":4181,"42040":1132,"42041":10799,"42042":5951,"42043":5177,"42044":3177,"42045":6873,"42046":7253,"42047":10339,"42048":14411,"42049":11154,"42050":6305,"42051":2368,"42052":18251,"42053":17975,"42054":647,"42055":6427,"42056":11638,"42057":295,"42058":18060,"42059":14190,"42060":12482,"42061":2674,"42062":10319,"42063":14721,"42064":8491,"42065":3949,"42066":11408,"42067":693,"42068":7506,"42069":1004,"42070":6376,"42071":18143,"42072":13829,"42073":16242,"42074":7707,"42075":16970,"42076":5118,"42077":13608,"42078":16683,"42079":16519,"42080":5904,"42081":12280,"42082":7679,"42083":3329,"42084":1772,"42085":13553,"42086":17943,"42087":17413,"42088":8719,"42089":14699,"42090":13365,"42091":17760,"42092":16855,"42093":15447,"42094":17279,"42095":10849,"42096":651,"42097":2204,"42098":11596,"42099":4223,"42100":10541,"42101":9687,"42102":9527,"42103":17397,"42104":15958,"42105":297,"42106":8438,"42107":5138,"42108":13987,"42109":14187,"42110":7741,"42111":16314,"42112":15193,"42113":695,"42114":2580,"42115":13981,"42116":10114,"42117":11162,"42118":9463,"42119":10143,"42120":2100,"42121":13099,"42122":8233,"42123":970,"42124":3431,"42125":16377,"42126":18090,"42127":11424,"42128":16985,"42129":10318,"42130":4294,"42131":5094,"42132":6515,"42133":17826,"42134":16497,"42135":8644,"42136":5481,"42137":14702,"42138":12204,"42139":2145,"42140":9256,"42141":8410,"42142":4617,"42143":341,"42144":460,"42145":6847,"42146":9326,"42147":5924,"42148":6189,"42149":3298,"42150":9390,"42151":1396,"42152":12809,"42153":456,"42154":13224,"42155":9475,"42156":18346,"42157":13359,"42158":15427,"42159":13287,"42160":552,"42161":3871,"42162":12461,"42163":11751,"42164":8349,"42165":17844,"42166":4372,"42167":12209,"42168":11794,"42169":5056,"42170":9556,"42171":8778,"42172":5059,"42173":18162,"42174":9532,"42175":3648,"42176":5272,"42177":4567,"42178":2017,"42179":16379,"42180":9233,"42181":10447,"42182":16496,"42183":7706,"42184":8251,"42185":832,"42186":14836,"42187":17930,"42188":15668,"42189":10244,"42190":15457,"42191":15246,"42192":3140,"42193":17652,"42194":7386,"42195":15462,"42196":3870,"42197":5636,"42198":16368,"42199":15028,"42200":3989,"42201":10571,"42202":5946,"42203":8252,"42204":3960,"42205":15775,"42206":1072,"42207":10952,"42208":10811,"42209":2362,"42210":10234,"42211":791,"42212":10369,"42213":5959,"42214":595,"42215":10658,"42216":9638,"42217":4641,"42218":17179,"42219":104,"42220":1867,"42221":17980,"42222":15224,"42223":14718,"42224":9647,"42225":1537,"42226":7014,"42227":15336,"42228":11397,"42229":17262,"42230":7350,"42231":14727,"42232":1412,"42233":11585,"42234":3859,"42235":496,"42236":11140,"42237":12567,"42238":4262,"42239":13899,"42240":14603,"42241":11564,"42242":7685,"42243":13977,"42244":3171,"42245":15450,"42246":17433,"42247":2123,"42248":7462,"42249":5771,"42250":12649,"42251":5950,"42252":9643,"42253":860,"42254":5799,"42255":9776,"42256":9157,"42257":6353,"42258":86,"42259":2705,"42260":14101,"42261":17139,"42262":6407,"42263":9165,"42264":18283,"42265":17293,"42266":1852,"42267":16954,"42268":1541,"42269":6887,"42270":11191,"42271":12212,"42272":4883,"42273":6191,"42274":3994,"42275":12235,"42276":9375,"42277":13957,"42278":2490,"42279":2009,"42280":13322,"42281":6763,"42282":8100,"42283":7170,"42284":4659,"42285":14592,"42286":2991,"42287":5751,"42288":8545,"42289":12389,"42290":4945,"42291":7520,"42292":5719,"42293":16496,"42294":9077,"42295":1752,"42296":18164,"42297":5216,"42298":8254,"42299":14803,"42300":4837,"42301":9812,"42302":9920,"42303":2512,"42304":17209,"42305":6198,"42306":10633,"42307":11385,"42308":4133,"42309":185,"42310":11587,"42311":2970,"42312":2389,"42313":9526,"42314":10491,"42315":10042,"42316":11381,"42317":596,"42318":442,"42319":10257,"42320":16412,"42321":6662,"42322":10163,"42323":7547,"42324":8689,"42325":11433,"42326":3914,"42327":3925,"42328":15826,"42329":12643,"42330":9098,"42331":11364,"42332":6303,"42333":8252,"42334":3745,"42335":17279,"42336":5517,"42337":12002,"42338":17406,"42339":6224,"42340":6769,"42341":9569,"42342":10612,"42343":8061,"42344":2344,"42345":12813,"42346":409,"42347":5247,"42348":13419,"42349":4073,"42350":7783,"42351":10607,"42352":5912,"42353":14951,"42354":7030,"42355":5634,"42356":8678,"42357":6773,"42358":5301,"42359":17518,"42360":6166,"42361":15223,"42362":2698,"42363":6384,"42364":14493,"42365":5126,"42366":13486,"42367":11344,"42368":7585,"42369":13215,"42370":364,"42371":6493,"42372":12096,"42373":6559,"42374":8624,"42375":6737,"42376":1077,"42377":18103,"42378":3836,"42379":17144,"42380":7398,"42381":15173,"42382":14535,"42383":627,"42384":16992,"42385":8018,"42386":12698,"42387":8005,"42388":8715,"42389":446,"42390":13936,"42391":13105,"42392":7391,"42393":7260,"42394":2033,"42395":13537,"42396":4786,"42397":947,"42398":2518,"42399":12557,"42400":14353,"42401":15739,"42402":12963,"42403":15251,"42404":8940,"42405":10109,"42406":1932,"42407":6928,"42408":2794,"42409":4336,"42410":5160,"42411":16431,"42412":3811,"42413":10171,"42414":4796,"42415":380,"42416":6399,"42417":383,"42418":15132,"42419":8889,"42420":1254,"42421":11427,"42422":878,"42423":4431,"42424":5949,"42425":4742,"42426":16002,"42427":7657,"42428":8197,"42429":9546,"42430":1211,"42431":488,"42432":3607,"42433":284,"42434":3297,"42435":267,"42436":2802,"42437":9396,"42438":15251,"42439":10142,"42440":9403,"42441":14985,"42442":6084,"42443":17672,"42444":15991,"42445":6837,"42446":999,"42447":11190,"42448":3628,"42449":8023,"42450":416,"42451":10374,"42452":4425,"42453":16321,"42454":18278,"42455":14774,"42456":7068,"42457":11180,"42458":10792,"42459":11302,"42460":9313,"42461":5656,"42462":18077,"42463":16971,"42464":17901,"42465":11864,"42466":6183,"42467":8047,"42468":2346,"42469":3474,"42470":10,"42471":339,"42472":15594,"42473":4525,"42474":2493,"42475":11177,"42476":9289,"42477":4015,"42478":8399,"42479":6591,"42480":13683,"42481":5570,"42482":15787,"42483":4948,"42484":7468,"42485":4759,"42486":9296,"42487":146,"42488":17544,"42489":18111,"42490":13699,"42491":3351,"42492":16352,"42493":123,"42494":3874,"42495":10010,"42496":2802,"42497":8800,"42498":11193,"42499":3367,"42500":435,"42501":2076,"42502":16440,"42503":4503,"42504":17651,"42505":9023,"42506":14916,"42507":17907,"42508":14323,"42509":2423,"42510":6661,"42511":7895,"42512":17569,"42513":11784,"42514":15024,"42515":10380,"42516":3227,"42517":11005,"42518":8109,"42519":16339,"42520":8881,"42521":14320,"42522":5389,"42523":5074,"42524":17088,"42525":10671,"42526":11986,"42527":9752,"42528":8503,"42529":16344,"42530":3840,"42531":10063,"42532":15401,"42533":9154,"42534":4443,"42535":12767,"42536":4530,"42537":4872,"42538":1115,"42539":1496,"42540":7327,"42541":7680,"42542":17668,"42543":13893,"42544":12111,"42545":13298,"42546":770,"42547":195,"42548":11782,"42549":4021,"42550":17699,"42551":75,"42552":7457,"42553":16764,"42554":918,"42555":7261,"42556":4574,"42557":5956,"42558":4881,"42559":14959,"42560":747,"42561":17577,"42562":4625,"42563":14221,"42564":10520,"42565":4565,"42566":1763,"42567":9337,"42568":11434,"42569":4846,"42570":5720,"42571":12436,"42572":3904,"42573":14847,"42574":10344,"42575":3611,"42576":13914,"42577":5012,"42578":6830,"42579":11902,"42580":15175,"42581":8896,"42582":7715,"42583":7694,"42584":14838,"42585":14703,"42586":2247,"42587":14090,"42588":8031,"42589":12512,"42590":13422,"42591":6869,"42592":16723,"42593":13355,"42594":18358,"42595":7697,"42596":16455,"42597":15900,"42598":6902,"42599":8511,"42600":3338,"42601":14652,"42602":7147,"42603":15963,"42604":800,"42605":12275,"42606":9958,"42607":1354,"42608":6112,"42609":1878,"42610":4774,"42611":12264,"42612":3019,"42613":1206,"42614":13548,"42615":4285,"42616":11798,"42617":15428,"42618":202,"42619":5470,"42620":9596,"42621":12073,"42622":7839,"42623":2250,"42624":10685,"42625":11061,"42626":16769,"42627":8984,"42628":18145,"42629":9897,"42630":6893,"42631":1916,"42632":14780,"42633":2658,"42634":2515,"42635":11412,"42636":2593,"42637":6795,"42638":4,"42639":5060,"42640":17864,"42641":14890,"42642":17031,"42643":4339,"42644":11364,"42645":16128,"42646":4025,"42647":13717,"42648":3622,"42649":16814,"42650":1520,"42651":1140,"42652":12759,"42653":11033,"42654":681,"42655":2376,"42656":17052,"42657":15858,"42658":12282,"42659":11645,"42660":2900,"42661":11594,"42662":11208,"42663":13720,"42664":3453,"42665":59,"42666":4314,"42667":12336,"42668":175,"42669":10208,"42670":7914,"42671":10846,"42672":8363,"42673":12930,"42674":916,"42675":4589,"42676":13093,"42677":12785,"42678":4255,"42679":15325,"42680":17490,"42681":15934,"42682":2994,"42683":10746,"42684":13030,"42685":17665,"42686":15737,"42687":5783,"42688":10301,"42689":12197,"42690":12019,"42691":2984,"42692":12492,"42693":18276,"42694":14463,"42695":6618,"42696":5039,"42697":2779,"42698":14289,"42699":5048,"42700":14800,"42701":1456,"42702":18134,"42703":10270,"42704":15286,"42705":3244,"42706":6933,"42707":9667,"42708":17806,"42709":2424,"42710":11686,"42711":6091,"42712":7114,"42713":108,"42714":18312,"42715":7309,"42716":13216,"42717":16745,"42718":8587,"42719":15334,"42720":6438,"42721":1199,"42722":13690,"42723":11506,"42724":10508,"42725":1984,"42726":1518,"42727":3677,"42728":9071,"42729":5223,"42730":15546,"42731":2186,"42732":13555,"42733":5000,"42734":7659,"42735":7094,"42736":16406,"42737":14081,"42738":15758,"42739":10493,"42740":10726,"42741":8749,"42742":2805,"42743":7502,"42744":889,"42745":7223,"42746":4591,"42747":5195,"42748":15399,"42749":952,"42750":852,"42751":10068,"42752":10785,"42753":1137,"42754":12729,"42755":3612,"42756":7428,"42757":16651,"42758":11387,"42759":1968,"42760":14831,"42761":13047,"42762":15558,"42763":13896,"42764":12395,"42765":17366,"42766":14009,"42767":4902,"42768":10072,"42769":11223,"42770":16041,"42771":17161,"42772":13861,"42773":1456,"42774":6828,"42775":17505,"42776":7112,"42777":5569,"42778":15562,"42779":13915,"42780":12950,"42781":4633,"42782":17418,"42783":2111,"42784":3485,"42785":6499,"42786":10134,"42787":17419,"42788":2896,"42789":14293,"42790":16208,"42791":9991,"42792":5985,"42793":3503,"42794":7882,"42795":17592,"42796":2793,"42797":3986,"42798":15728,"42799":2277,"42800":8174,"42801":7106,"42802":8926,"42803":15501,"42804":13320,"42805":10921,"42806":11773,"42807":10062,"42808":4581,"42809":7550,"42810":5796,"42811":145,"42812":7045,"42813":17797,"42814":3696,"42815":17408,"42816":7364,"42817":4550,"42818":9985,"42819":12947,"42820":9653,"42821":6984,"42822":3160,"42823":13543,"42824":9718,"42825":8972,"42826":11147,"42827":10778,"42828":17370,"42829":16732,"42830":1962,"42831":17589,"42832":17216,"42833":18203,"42834":10280,"42835":179,"42836":12322,"42837":9321,"42838":13758,"42839":10183,"42840":12808,"42841":1302,"42842":11696,"42843":18036,"42844":726,"42845":4248,"42846":13530,"42847":5787,"42848":17599,"42849":10843,"42850":16668,"42851":7911,"42852":2302,"42853":18088,"42854":7215,"42855":7648,"42856":13284,"42857":4472,"42858":13780,"42859":3526,"42860":17931,"42861":4660,"42862":1472,"42863":5003,"42864":2682,"42865":12951,"42866":9618,"42867":1233,"42868":8523,"42869":14729,"42870":16196,"42871":102,"42872":9646,"42873":6257,"42874":9715,"42875":11402,"42876":13957,"42877":16744,"42878":8699,"42879":3228,"42880":6158,"42881":15829,"42882":9309,"42883":2681,"42884":12060,"42885":14107,"42886":8146,"42887":14594,"42888":11859,"42889":16342,"42890":11247,"42891":17752,"42892":16619,"42893":17504,"42894":2775,"42895":3936,"42896":13981,"42897":718,"42898":4232,"42899":8373,"42900":1848,"42901":7416,"42902":15331,"42903":15281,"42904":6646,"42905":3508,"42906":1574,"42907":9077,"42908":13630,"42909":8714,"42910":15265,"42911":17045,"42912":11800,"42913":1569,"42914":438,"42915":6848,"42916":15607,"42917":12357,"42918":7569,"42919":9317,"42920":5593,"42921":14605,"42922":1380,"42923":5359,"42924":2190,"42925":9854,"42926":2940,"42927":1245,"42928":12714,"42929":6913,"42930":17814,"42931":16477,"42932":6782,"42933":8748,"42934":7605,"42935":7790,"42936":14071,"42937":1456,"42938":12483,"42939":1955,"42940":806,"42941":7557,"42942":17802,"42943":5993,"42944":6382,"42945":7320,"42946":16264,"42947":4678,"42948":10351,"42949":1727,"42950":8623,"42951":7706,"42952":15538,"42953":5018,"42954":1432,"42955":1089,"42956":4471,"42957":13884,"42958":12998,"42959":17321,"42960":6289,"42961":12501,"42962":12391,"42963":441,"42964":341,"42965":15717,"42966":2613,"42967":1406,"42968":4707,"42969":1695,"42970":2993,"42971":13103,"42972":11583,"42973":17322,"42974":3749,"42975":7935,"42976":15589,"42977":14810,"42978":9453,"42979":17175,"42980":7828,"42981":9809,"42982":1304,"42983":10648,"42984":2612,"42985":18229,"42986":14368,"42987":14951,"42988":3137,"42989":17054,"42990":16127,"42991":12235,"42992":10739,"42993":17695,"42994":6498,"42995":12326,"42996":6176,"42997":1461,"42998":16211,"42999":11344,"43000":8839,"43001":7700,"43002":2492,"43003":17228,"43004":15998,"43005":16337,"43006":5994,"43007":10287,"43008":16800,"43009":4762,"43010":2330,"43011":6297,"43012":17783,"43013":13544,"43014":16926,"43015":5624,"43016":16428,"43017":3806,"43018":10036,"43019":14603,"43020":14340,"43021":14549,"43022":4728,"43023":1344,"43024":3591,"43025":18114,"43026":3441,"43027":12257,"43028":13938,"43029":5668,"43030":7655,"43031":1299,"43032":7539,"43033":12970,"43034":10007,"43035":7471,"43036":2616,"43037":11420,"43038":7678,"43039":16347,"43040":7926,"43041":13367,"43042":15781,"43043":11940,"43044":4191,"43045":15801,"43046":7815,"43047":15328,"43048":8421,"43049":10236,"43050":11082,"43051":13962,"43052":5629,"43053":48,"43054":10657,"43055":14488,"43056":1996,"43057":12544,"43058":11297,"43059":13380,"43060":372,"43061":17737,"43062":17908,"43063":9671,"43064":16757,"43065":15818,"43066":3754,"43067":15925,"43068":450,"43069":5569,"43070":15219,"43071":7439,"43072":2260,"43073":10626,"43074":16671,"43075":6074,"43076":13822,"43077":4144,"43078":5833,"43079":5714,"43080":6977,"43081":8566,"43082":16396,"43083":2143,"43084":3671,"43085":4816,"43086":4597,"43087":13153,"43088":7622,"43089":4655,"43090":8013,"43091":15956,"43092":17666,"43093":15454,"43094":16754,"43095":4284,"43096":7763,"43097":17572,"43098":7310,"43099":8020,"43100":9545,"43101":10331,"43102":6153,"43103":3704,"43104":17022,"43105":1935,"43106":1308,"43107":3238,"43108":328,"43109":16475,"43110":3200,"43111":1890,"43112":7396,"43113":6978,"43114":5413,"43115":11346,"43116":2647,"43117":8960,"43118":16532,"43119":13395,"43120":16885,"43121":3671,"43122":14151,"43123":14236,"43124":15008,"43125":1805,"43126":3026,"43127":1454,"43128":17648,"43129":2366,"43130":13505,"43131":9875,"43132":1422,"43133":11262,"43134":10702,"43135":11483,"43136":2056,"43137":1478,"43138":7524,"43139":6956,"43140":16596,"43141":9121,"43142":1041,"43143":10765,"43144":4607,"43145":689,"43146":17349,"43147":4203,"43148":8031,"43149":15366,"43150":4683,"43151":16691,"43152":8441,"43153":8921,"43154":10534,"43155":196,"43156":16371,"43157":5651,"43158":6746,"43159":15062,"43160":1013,"43161":15152,"43162":4132,"43163":10702,"43164":262,"43165":5251,"43166":11373,"43167":17167,"43168":11927,"43169":9176,"43170":5963,"43171":10766,"43172":17317,"43173":7544,"43174":8193,"43175":17488,"43176":13282,"43177":6095,"43178":8298,"43179":17963,"43180":9472,"43181":6557,"43182":17796,"43183":1828,"43184":13214,"43185":105,"43186":11660,"43187":3767,"43188":2695,"43189":17740,"43190":5772,"43191":18323,"43192":5263,"43193":7208,"43194":13024,"43195":5092,"43196":5562,"43197":14136,"43198":2659,"43199":2922,"43200":2976,"43201":13235,"43202":6756,"43203":2787,"43204":10448,"43205":1471,"43206":10958,"43207":650,"43208":13798,"43209":2527,"43210":6672,"43211":6453,"43212":10963,"43213":13790,"43214":4912,"43215":11274,"43216":14934,"43217":9079,"43218":9084,"43219":14336,"43220":501,"43221":6042,"43222":9238,"43223":13632,"43224":17748,"43225":7263,"43226":14448,"43227":133,"43228":6151,"43229":2885,"43230":10553,"43231":7986,"43232":7333,"43233":7129,"43234":3199,"43235":18198,"43236":16260,"43237":17333,"43238":4340,"43239":18007,"43240":5071,"43241":15309,"43242":13551,"43243":5083,"43244":8340,"43245":8045,"43246":8572,"43247":4523,"43248":12026,"43249":5029,"43250":11746,"43251":13800,"43252":12303,"43253":12799,"43254":17621,"43255":2995,"43256":11061,"43257":7312,"43258":11961,"43259":5894,"43260":9581,"43261":16015,"43262":3947,"43263":6987,"43264":11243,"43265":9091,"43266":10854,"43267":8944,"43268":12797,"43269":4551,"43270":6190,"43271":10296,"43272":15026,"43273":4385,"43274":1016,"43275":2062,"43276":2911,"43277":2450,"43278":11066,"43279":17129,"43280":5986,"43281":2190,"43282":13049,"43283":11073,"43284":3546,"43285":7439,"43286":4359,"43287":14401,"43288":16474,"43289":13850,"43290":677,"43291":151,"43292":9326,"43293":9575,"43294":8394,"43295":10511,"43296":10872,"43297":13129,"43298":2148,"43299":2629,"43300":13648,"43301":17156,"43302":7201,"43303":10819,"43304":7650,"43305":12687,"43306":1266,"43307":18195,"43308":9224,"43309":15673,"43310":6251,"43311":15034,"43312":12276,"43313":5548,"43314":2689,"43315":17375,"43316":10975,"43317":8582,"43318":6044,"43319":17737,"43320":9613,"43321":7868,"43322":17487,"43323":15512,"43324":8617,"43325":8787,"43326":4854,"43327":17354,"43328":11068,"43329":458,"43330":11312,"43331":13153,"43332":6625,"43333":7956,"43334":9975,"43335":17667,"43336":14986,"43337":6612,"43338":13929,"43339":4985,"43340":9102,"43341":12418,"43342":2797,"43343":8573,"43344":6907,"43345":9446,"43346":10274,"43347":4670,"43348":2165,"43349":7774,"43350":10888,"43351":8935,"43352":17357,"43353":10207,"43354":15434,"43355":15917,"43356":3639,"43357":15184,"43358":18042,"43359":6551,"43360":13830,"43361":12296,"43362":1914,"43363":13000,"43364":15975,"43365":3227,"43366":6878,"43367":5032,"43368":10398,"43369":6058,"43370":7066,"43371":8281,"43372":1959,"43373":5723,"43374":3046,"43375":9891,"43376":8553,"43377":10506,"43378":759,"43379":12562,"43380":14290,"43381":15191,"43382":16827,"43383":1367,"43384":319,"43385":3709,"43386":3126,"43387":13996,"43388":806,"43389":16404,"43390":15984,"43391":14938,"43392":1743,"43393":671,"43394":2774,"43395":13758,"43396":1083,"43397":9080,"43398":13831,"43399":16978,"43400":1328,"43401":6666,"43402":3786,"43403":8765,"43404":2721,"43405":9485,"43406":6820,"43407":1318,"43408":9159,"43409":5075,"43410":2993,"43411":9567,"43412":14059,"43413":10187,"43414":17956,"43415":15039,"43416":1797,"43417":8698,"43418":1017,"43419":558,"43420":11035,"43421":5484,"43422":11885,"43423":17491,"43424":11795,"43425":8342,"43426":1922,"43427":14546,"43428":17014,"43429":12654,"43430":5864,"43431":8936,"43432":10545,"43433":17650,"43434":15205,"43435":1310,"43436":5429,"43437":6291,"43438":8307,"43439":16484,"43440":9619,"43441":18020,"43442":4854,"43443":3620,"43444":10351,"43445":2065,"43446":15176,"43447":6155,"43448":5616,"43449":9731,"43450":12485,"43451":8037,"43452":13320,"43453":5238,"43454":1215,"43455":13349,"43456":2375,"43457":2291,"43458":2471,"43459":10456,"43460":4866,"43461":11507,"43462":5695,"43463":5191,"43464":6949,"43465":12345,"43466":5836,"43467":11019,"43468":14218,"43469":8442,"43470":9503,"43471":11423,"43472":7607,"43473":8483,"43474":9931,"43475":3741,"43476":12171,"43477":9805,"43478":14586,"43479":17238,"43480":4755,"43481":16642,"43482":9181,"43483":1922,"43484":14454,"43485":12498,"43486":10406,"43487":16070,"43488":6275,"43489":14984,"43490":9910,"43491":3586,"43492":15405,"43493":2307,"43494":6984,"43495":4878,"43496":13031,"43497":17984,"43498":12621,"43499":12146,"43500":7209,"43501":1818,"43502":17675,"43503":17358,"43504":5519,"43505":292,"43506":3155,"43507":5327,"43508":13599,"43509":909,"43510":6742,"43511":6093,"43512":2010,"43513":13711,"43514":3468,"43515":6067,"43516":4779,"43517":17858,"43518":8440,"43519":9255,"43520":5702,"43521":3238,"43522":1536,"43523":10552,"43524":9215,"43525":404,"43526":16997,"43527":5053,"43528":4710,"43529":656,"43530":14239,"43531":16842,"43532":9953,"43533":471,"43534":6431,"43535":18293,"43536":3638,"43537":3654,"43538":1001,"43539":4156,"43540":6235,"43541":3864,"43542":9003,"43543":3608,"43544":15570,"43545":17906,"43546":11395,"43547":15715,"43548":7507,"43549":8236,"43550":14982,"43551":5806,"43552":98,"43553":12186,"43554":1959,"43555":16492,"43556":1695,"43557":17885,"43558":14924,"43559":16568,"43560":2593,"43561":7688,"43562":10579,"43563":802,"43564":15006,"43565":4542,"43566":8939,"43567":1433,"43568":10858,"43569":5210,"43570":10407,"43571":4008,"43572":6919,"43573":11319,"43574":1307,"43575":16794,"43576":3663,"43577":3727,"43578":16424,"43579":8542,"43580":3701,"43581":8384,"43582":14459,"43583":17339,"43584":9478,"43585":226,"43586":1771,"43587":16857,"43588":14805,"43589":7249,"43590":12252,"43591":141,"43592":17695,"43593":14803,"43594":12284,"43595":9515,"43596":17355,"43597":6924,"43598":1740,"43599":5213,"43600":16384,"43601":3776,"43602":15341,"43603":10561,"43604":1803,"43605":13589,"43606":157,"43607":758,"43608":8410,"43609":1282,"43610":10697,"43611":15707,"43612":1594,"43613":9378,"43614":7599,"43615":17034,"43616":6542,"43617":5477,"43618":12310,"43619":10152,"43620":5674,"43621":14477,"43622":15492,"43623":2923,"43624":16307,"43625":15946,"43626":3984,"43627":11689,"43628":4396,"43629":16431,"43630":13662,"43631":10241,"43632":5860,"43633":10250,"43634":5574,"43635":6774,"43636":16061,"43637":5779,"43638":3928,"43639":11580,"43640":16746,"43641":1854,"43642":7425,"43643":13849,"43644":1533,"43645":9357,"43646":10422,"43647":17747,"43648":15216,"43649":742,"43650":7414,"43651":8341,"43652":194,"43653":10663,"43654":3868,"43655":13596,"43656":3826,"43657":15469,"43658":4909,"43659":1557,"43660":15031,"43661":9907,"43662":8460,"43663":8952,"43664":17563,"43665":14577,"43666":10783,"43667":4685,"43668":7218,"43669":3127,"43670":2917,"43671":17407,"43672":11573,"43673":16082,"43674":2508,"43675":10690,"43676":6036,"43677":14605,"43678":2158,"43679":11025,"43680":8437,"43681":1614,"43682":1581,"43683":3087,"43684":11776,"43685":12394,"43686":1972,"43687":9914,"43688":9253,"43689":8359,"43690":17418,"43691":3997,"43692":9614,"43693":16492,"43694":1132,"43695":10267,"43696":2561,"43697":13012,"43698":3540,"43699":3033,"43700":7616,"43701":6458,"43702":6781,"43703":11483,"43704":18126,"43705":3872,"43706":6834,"43707":16248,"43708":17131,"43709":12421,"43710":9548,"43711":16994,"43712":13376,"43713":18193,"43714":15725,"43715":1336,"43716":3040,"43717":17318,"43718":16985,"43719":14084,"43720":3287,"43721":15056,"43722":5469,"43723":13876,"43724":10443,"43725":15076,"43726":18003,"43727":3604,"43728":7213,"43729":10696,"43730":7205,"43731":3504,"43732":5616,"43733":9682,"43734":7042,"43735":8399,"43736":8881,"43737":16927,"43738":2781,"43739":10810,"43740":7165,"43741":5461,"43742":6056,"43743":2801,"43744":13706,"43745":4727,"43746":10375,"43747":16583,"43748":914,"43749":10638,"43750":5014,"43751":14307,"43752":4223,"43753":9228,"43754":8865,"43755":3801,"43756":4243,"43757":17904,"43758":14134,"43759":867,"43760":13678,"43761":14030,"43762":7902,"43763":15477,"43764":7830,"43765":7808,"43766":13129,"43767":6831,"43768":12757,"43769":15944,"43770":7599,"43771":2498,"43772":5873,"43773":10339,"43774":11576,"43775":6282,"43776":12492,"43777":14840,"43778":10805,"43779":9155,"43780":10962,"43781":4880,"43782":124,"43783":15317,"43784":5020,"43785":16095,"43786":10819,"43787":10994,"43788":14360,"43789":15631,"43790":1124,"43791":7270,"43792":15245,"43793":17400,"43794":12221,"43795":10701,"43796":2866,"43797":9000,"43798":17874,"43799":249,"43800":11303,"43801":10957,"43802":6450,"43803":18032,"43804":15174,"43805":5622,"43806":1756,"43807":3359,"43808":15658,"43809":17225,"43810":5042,"43811":90,"43812":4349,"43813":9354,"43814":2561,"43815":7967,"43816":2294,"43817":15450,"43818":7700,"43819":16632,"43820":2148,"43821":11290,"43822":9990,"43823":15100,"43824":16789,"43825":396,"43826":1306,"43827":1968,"43828":13175,"43829":16896,"43830":5361,"43831":18194,"43832":3873,"43833":10182,"43834":13,"43835":6974,"43836":3295,"43837":11372,"43838":8600,"43839":10027,"43840":6279,"43841":11936,"43842":5947,"43843":2729,"43844":3269,"43845":12247,"43846":10384,"43847":14008,"43848":10886,"43849":627,"43850":14461,"43851":17719,"43852":15457,"43853":10895,"43854":3549,"43855":4346,"43856":14968,"43857":545,"43858":12344,"43859":6115,"43860":13589,"43861":12171,"43862":18075,"43863":632,"43864":9682,"43865":9507,"43866":12743,"43867":2674,"43868":5997,"43869":7659,"43870":6588,"43871":1014,"43872":10586,"43873":13941,"43874":9727,"43875":14875,"43876":13717,"43877":1336,"43878":9848,"43879":8784,"43880":3386,"43881":6760,"43882":14875,"43883":14505,"43884":5351,"43885":8136,"43886":17732,"43887":7479,"43888":16163,"43889":12002,"43890":13231,"43891":6342,"43892":5185,"43893":7871,"43894":14024,"43895":2195,"43896":15917,"43897":9550,"43898":18226,"43899":737,"43900":691,"43901":3527,"43902":9570,"43903":3823,"43904":3109,"43905":5467,"43906":10299,"43907":11898,"43908":130,"43909":15973,"43910":6629,"43911":14208,"43912":1417,"43913":4187,"43914":4242,"43915":8905,"43916":3467,"43917":13592,"43918":16562,"43919":16027,"43920":16107,"43921":12316,"43922":9943,"43923":7039,"43924":4077,"43925":5480,"43926":5874,"43927":15304,"43928":892,"43929":13301,"43930":4226,"43931":9134,"43932":18013,"43933":3539,"43934":16580,"43935":4665,"43936":7684,"43937":8187,"43938":17206,"43939":10792,"43940":3179,"43941":6929,"43942":12721,"43943":9045,"43944":3554,"43945":16441,"43946":5217,"43947":10833,"43948":17842,"43949":7637,"43950":6330,"43951":13014,"43952":17119,"43953":16650,"43954":15863,"43955":18295,"43956":14594,"43957":17249,"43958":13283,"43959":9085,"43960":5130,"43961":18178,"43962":275,"43963":11432,"43964":2723,"43965":14450,"43966":12526,"43967":11839,"43968":18228,"43969":9738,"43970":11285,"43971":5363,"43972":6095,"43973":1466,"43974":7525,"43975":18039,"43976":6026,"43977":17808,"43978":3371,"43979":4557,"43980":10167,"43981":4229,"43982":12317,"43983":17289,"43984":730,"43985":12814,"43986":15519,"43987":9703,"43988":1941,"43989":9017,"43990":4910,"43991":12868,"43992":6856,"43993":16856,"43994":16807,"43995":17973,"43996":287,"43997":9959,"43998":12473,"43999":17522,"44000":13062,"44001":15547,"44002":7987,"44003":2243,"44004":6381,"44005":7847,"44006":12215,"44007":9931,"44008":15666,"44009":17660,"44010":3636,"44011":12914,"44012":9125,"44013":6276,"44014":8125,"44015":10891,"44016":13976,"44017":15235,"44018":12962,"44019":4789,"44020":12289,"44021":11605,"44022":10844,"44023":10434,"44024":7187,"44025":12530,"44026":259,"44027":10099,"44028":3515,"44029":8741,"44030":4712,"44031":4336,"44032":15945,"44033":12964,"44034":2182,"44035":2010,"44036":10649,"44037":13757,"44038":7810,"44039":6303,"44040":12162,"44041":15878,"44042":3892,"44043":9620,"44044":1313,"44045":16329,"44046":13511,"44047":11764,"44048":17485,"44049":2275,"44050":9244,"44051":5674,"44052":18084,"44053":13269,"44054":6056,"44055":7086,"44056":15297,"44057":16823,"44058":11245,"44059":16755,"44060":16748,"44061":14533,"44062":15507,"44063":2151,"44064":6248,"44065":15234,"44066":7830,"44067":12692,"44068":14653,"44069":4691,"44070":15968,"44071":1527,"44072":15273,"44073":6474,"44074":7290,"44075":187,"44076":16549,"44077":1315,"44078":10289,"44079":10868,"44080":7221,"44081":13844,"44082":10736,"44083":14081,"44084":5255,"44085":7243,"44086":17378,"44087":12286,"44088":7145,"44089":235,"44090":3024,"44091":2768,"44092":6380,"44093":600,"44094":14357,"44095":14695,"44096":6548,"44097":13883,"44098":15235,"44099":13415,"44100":4006,"44101":11784,"44102":14950,"44103":6011,"44104":17326,"44105":11289,"44106":12180,"44107":12141,"44108":1773,"44109":15878,"44110":8305,"44111":3528,"44112":16817,"44113":10365,"44114":12123,"44115":8110,"44116":2782,"44117":14597,"44118":17150,"44119":7336,"44120":9756,"44121":4550,"44122":1058,"44123":16825,"44124":2394,"44125":13290,"44126":1867,"44127":6840,"44128":17715,"44129":14103,"44130":14682,"44131":8786,"44132":649,"44133":9206,"44134":2134,"44135":469,"44136":14097,"44137":6242,"44138":4200,"44139":15869,"44140":14794,"44141":1083,"44142":8363,"44143":10000,"44144":1723,"44145":17742,"44146":8699,"44147":10599,"44148":2507,"44149":771,"44150":10020,"44151":17349,"44152":1627,"44153":744,"44154":17805,"44155":15572,"44156":11422,"44157":187,"44158":5025,"44159":490,"44160":7045,"44161":10664,"44162":6823,"44163":12593,"44164":17294,"44165":6731,"44166":2900,"44167":11355,"44168":5952,"44169":15392,"44170":3436,"44171":17536,"44172":13151,"44173":12083,"44174":16118,"44175":17202,"44176":6378,"44177":2791,"44178":9389,"44179":18210,"44180":2459,"44181":4074,"44182":6212,"44183":1970,"44184":12758,"44185":6833,"44186":8767,"44187":5229,"44188":568,"44189":2585,"44190":7187,"44191":3570,"44192":13351,"44193":12937,"44194":6075,"44195":16521,"44196":2684,"44197":16816,"44198":7783,"44199":6387,"44200":9349,"44201":1360,"44202":17180,"44203":2994,"44204":4588,"44205":18130,"44206":7904,"44207":11311,"44208":15611,"44209":8306,"44210":14716,"44211":12385,"44212":2683,"44213":15869,"44214":4,"44215":12780,"44216":8433,"44217":11313,"44218":10302,"44219":14504,"44220":10754,"44221":2421,"44222":17393,"44223":12844,"44224":8770,"44225":7000,"44226":12938,"44227":13729,"44228":1090,"44229":13274,"44230":14255,"44231":17044,"44232":7650,"44233":7125,"44234":9612,"44235":10717,"44236":15660,"44237":13915,"44238":13907,"44239":12889,"44240":3127,"44241":4732,"44242":3691,"44243":7154,"44244":14014,"44245":11784,"44246":6868,"44247":10829,"44248":5759,"44249":8837,"44250":10913,"44251":16899,"44252":912,"44253":2929,"44254":13067,"44255":2839,"44256":1975,"44257":15138,"44258":12600,"44259":17300,"44260":12199,"44261":17031,"44262":15481,"44263":11340,"44264":6107,"44265":2320,"44266":12242,"44267":10782,"44268":9458,"44269":10588,"44270":17273,"44271":17828,"44272":15060,"44273":4583,"44274":6643,"44275":14678,"44276":9592,"44277":4330,"44278":2934,"44279":4531,"44280":550,"44281":6366,"44282":10664,"44283":10936,"44284":2682,"44285":13517,"44286":16303,"44287":14081,"44288":3599,"44289":1545,"44290":5316,"44291":2864,"44292":11624,"44293":14581,"44294":5905,"44295":8766,"44296":13751,"44297":3449,"44298":15952,"44299":4374,"44300":14577,"44301":16195,"44302":13710,"44303":4678,"44304":15540,"44305":1400,"44306":4837,"44307":17944,"44308":1765,"44309":5279,"44310":16338,"44311":1317,"44312":9535,"44313":16137,"44314":14698,"44315":12426,"44316":6587,"44317":12500,"44318":7413,"44319":12377,"44320":392,"44321":6338,"44322":17054,"44323":12994,"44324":5025,"44325":17448,"44326":17766,"44327":16987,"44328":10766,"44329":17464,"44330":9474,"44331":435,"44332":10681,"44333":8820,"44334":14565,"44335":17279,"44336":17500,"44337":16688,"44338":2982,"44339":17646,"44340":635,"44341":500,"44342":8673,"44343":9508,"44344":10734,"44345":347,"44346":10094,"44347":638,"44348":140,"44349":15360,"44350":9291,"44351":14372,"44352":10426,"44353":3909,"44354":16694,"44355":11951,"44356":17032,"44357":8160,"44358":13269,"44359":9029,"44360":4222,"44361":1848,"44362":17723,"44363":10156,"44364":8829,"44365":11787,"44366":17278,"44367":17633,"44368":16306,"44369":17920,"44370":10518,"44371":7866,"44372":13498,"44373":2310,"44374":4608,"44375":10788,"44376":6028,"44377":7794,"44378":2942,"44379":15017,"44380":7161,"44381":15291,"44382":13275,"44383":10304,"44384":3144,"44385":6298,"44386":7819,"44387":2810,"44388":12744,"44389":5555,"44390":6795,"44391":4243,"44392":6255,"44393":2154,"44394":7522,"44395":9816,"44396":11350,"44397":12787,"44398":7315,"44399":17875,"44400":5097,"44401":387,"44402":924,"44403":5526,"44404":13624,"44405":12798,"44406":9374,"44407":3600,"44408":928,"44409":4155,"44410":1820,"44411":15890,"44412":885,"44413":3938,"44414":17729,"44415":585,"44416":16367,"44417":3414,"44418":1222,"44419":4720,"44420":6436,"44421":3170,"44422":3769,"44423":10784,"44424":8884,"44425":4361,"44426":18269,"44427":14943,"44428":1958,"44429":8356,"44430":18227,"44431":10631,"44432":4096,"44433":2546,"44434":929,"44435":5860,"44436":5600,"44437":4889,"44438":16204,"44439":10094,"44440":10522,"44441":14409,"44442":15955,"44443":14676,"44444":14239,"44445":16390,"44446":7924,"44447":16977,"44448":16550,"44449":1781,"44450":2323,"44451":13119,"44452":18220,"44453":11478,"44454":13505,"44455":8553,"44456":11734,"44457":6388,"44458":6252,"44459":17418,"44460":3960,"44461":17109,"44462":10087,"44463":2604,"44464":12971,"44465":10035,"44466":17380,"44467":14127,"44468":2606,"44469":18138,"44470":3546,"44471":4226,"44472":475,"44473":4792,"44474":11580,"44475":13560,"44476":7152,"44477":13115,"44478":4208,"44479":4162,"44480":17645,"44481":164,"44482":1658,"44483":16885,"44484":10074,"44485":18177,"44486":6633,"44487":314,"44488":5873,"44489":7825,"44490":14566,"44491":13022,"44492":6108,"44493":2293,"44494":12724,"44495":16604,"44496":4248,"44497":12686,"44498":6725,"44499":10317,"44500":7190,"44501":11813,"44502":2415,"44503":13073,"44504":3723,"44505":11375,"44506":12911,"44507":1175,"44508":6071,"44509":4004,"44510":17099,"44511":17801,"44512":13397,"44513":10901,"44514":17292,"44515":7300,"44516":9777,"44517":5736,"44518":11124,"44519":16706,"44520":9320,"44521":15222,"44522":13414,"44523":2947,"44524":15289,"44525":11572,"44526":10099,"44527":13800,"44528":8915,"44529":11245,"44530":8996,"44531":13069,"44532":15298,"44533":10669,"44534":1510,"44535":1562,"44536":12725,"44537":6401,"44538":11663,"44539":17336,"44540":9818,"44541":4321,"44542":12155,"44543":5069,"44544":4951,"44545":13659,"44546":7967,"44547":15676,"44548":7084,"44549":9089,"44550":17452,"44551":4770,"44552":15291,"44553":580,"44554":17038,"44555":8204,"44556":15536,"44557":5723,"44558":14277,"44559":11242,"44560":5306,"44561":6875,"44562":8478,"44563":14382,"44564":928,"44565":1187,"44566":7520,"44567":10671,"44568":6627,"44569":8013,"44570":2754,"44571":9505,"44572":824,"44573":2800,"44574":7626,"44575":9625,"44576":9891,"44577":17923,"44578":4648,"44579":10022,"44580":10834,"44581":17032,"44582":7884,"44583":17663,"44584":3329,"44585":18347,"44586":15672,"44587":17609,"44588":5832,"44589":15883,"44590":14446,"44591":12946,"44592":16513,"44593":13637,"44594":12699,"44595":951,"44596":11371,"44597":4569,"44598":2507,"44599":21,"44600":15691,"44601":17495,"44602":4804,"44603":3609,"44604":9973,"44605":2484,"44606":13232,"44607":6309,"44608":8661,"44609":16469,"44610":16262,"44611":8330,"44612":17312,"44613":1470,"44614":1150,"44615":1105,"44616":13430,"44617":13075,"44618":16662,"44619":5244,"44620":6418,"44621":16389,"44622":8159,"44623":4047,"44624":2618,"44625":12593,"44626":7591,"44627":16102,"44628":7341,"44629":9994,"44630":2899,"44631":15824,"44632":9708,"44633":11947,"44634":16223,"44635":387,"44636":8051,"44637":3094,"44638":11929,"44639":1827,"44640":16944,"44641":12297,"44642":13452,"44643":14940,"44644":16966,"44645":6978,"44646":10539,"44647":14841,"44648":14738,"44649":3239,"44650":15102,"44651":9159,"44652":14079,"44653":132,"44654":13349,"44655":10703,"44656":3140,"44657":115,"44658":13336,"44659":5162,"44660":14105,"44661":6370,"44662":8278,"44663":7883,"44664":18307,"44665":15611,"44666":8632,"44667":15287,"44668":16338,"44669":15701,"44670":2895,"44671":13380,"44672":10397,"44673":7206,"44674":3547,"44675":17737,"44676":6204,"44677":5589,"44678":14518,"44679":8791,"44680":12416,"44681":4731,"44682":15185,"44683":530,"44684":16579,"44685":13710,"44686":15784,"44687":2074,"44688":11761,"44689":15315,"44690":13660,"44691":6868,"44692":12395,"44693":3793,"44694":13366,"44695":17739,"44696":9694,"44697":16121,"44698":14932,"44699":319,"44700":15793,"44701":16470,"44702":139,"44703":14157,"44704":14681,"44705":16718,"44706":9926,"44707":6176,"44708":10886,"44709":4903,"44710":8588,"44711":6808,"44712":7296,"44713":10359,"44714":11619,"44715":12734,"44716":16523,"44717":15975,"44718":17374,"44719":1028,"44720":15918,"44721":2425,"44722":17916,"44723":4959,"44724":6294,"44725":191,"44726":1173,"44727":4290,"44728":17981,"44729":5121,"44730":13733,"44731":2556,"44732":1866,"44733":7527,"44734":1783,"44735":9311,"44736":1050,"44737":11054,"44738":13361,"44739":11179,"44740":3002,"44741":6211,"44742":14996,"44743":9547,"44744":317,"44745":14010,"44746":8739,"44747":2828,"44748":1233,"44749":15711,"44750":1861,"44751":2429,"44752":8367,"44753":9073,"44754":6119,"44755":4145,"44756":15486,"44757":12691,"44758":6762,"44759":1183,"44760":3261,"44761":988,"44762":723,"44763":5085,"44764":808,"44765":15578,"44766":8755,"44767":15096,"44768":4659,"44769":13897,"44770":4032,"44771":10600,"44772":16722,"44773":8836,"44774":11620,"44775":15092,"44776":13149,"44777":927,"44778":3751,"44779":14006,"44780":13932,"44781":14911,"44782":14830,"44783":4763,"44784":3589,"44785":7224,"44786":12665,"44787":6601,"44788":13407,"44789":2466,"44790":16771,"44791":2238,"44792":8218,"44793":5430,"44794":6438,"44795":15109,"44796":17168,"44797":10370,"44798":769,"44799":16380,"44800":7763,"44801":5869,"44802":5690,"44803":11802,"44804":6679,"44805":9409,"44806":6763,"44807":685,"44808":8992,"44809":16175,"44810":17312,"44811":12190,"44812":12688,"44813":4108,"44814":422,"44815":5297,"44816":16546,"44817":10986,"44818":1419,"44819":6291,"44820":17795,"44821":11,"44822":9685,"44823":17078,"44824":7315,"44825":2939,"44826":17650,"44827":2813,"44828":2446,"44829":11209,"44830":1411,"44831":15726,"44832":12499,"44833":11316,"44834":18142,"44835":6175,"44836":2031,"44837":14147,"44838":16542,"44839":15841,"44840":13799,"44841":17458,"44842":15736,"44843":10504,"44844":10572,"44845":2418,"44846":15310,"44847":1086,"44848":14980,"44849":18256,"44850":2285,"44851":1714,"44852":13493,"44853":17575,"44854":501,"44855":14860,"44856":15093,"44857":479,"44858":5409,"44859":4088,"44860":5582,"44861":10623,"44862":17493,"44863":229,"44864":14056,"44865":13831,"44866":2676,"44867":15139,"44868":5471,"44869":15775,"44870":12912,"44871":12896,"44872":17365,"44873":14668,"44874":8418,"44875":432,"44876":16500,"44877":4778,"44878":2504,"44879":327,"44880":15702,"44881":519,"44882":12829,"44883":14762,"44884":17995,"44885":8447,"44886":9414,"44887":4923,"44888":1154,"44889":10677,"44890":15144,"44891":5745,"44892":14631,"44893":5886,"44894":14913,"44895":5219,"44896":568,"44897":3890,"44898":17658,"44899":12796,"44900":8181,"44901":4479,"44902":2098,"44903":3087,"44904":10678,"44905":16837,"44906":7183,"44907":12680,"44908":12023,"44909":11230,"44910":18047,"44911":7437,"44912":11997,"44913":2353,"44914":81,"44915":14785,"44916":490,"44917":6073,"44918":4737,"44919":18080,"44920":12989,"44921":13012,"44922":15020,"44923":9347,"44924":5859,"44925":17005,"44926":14407,"44927":88,"44928":14106,"44929":16093,"44930":4785,"44931":10627,"44932":7219,"44933":16563,"44934":4298,"44935":16925,"44936":137,"44937":8052,"44938":7803,"44939":11740,"44940":14349,"44941":17358,"44942":1126,"44943":16456,"44944":15603,"44945":8448,"44946":461,"44947":11117,"44948":10834,"44949":14999,"44950":3986,"44951":1831,"44952":6205,"44953":7145,"44954":17988,"44955":1152,"44956":913,"44957":15634,"44958":5426,"44959":5638,"44960":1790,"44961":12624,"44962":10359,"44963":6155,"44964":1874,"44965":12121,"44966":2237,"44967":15265,"44968":14798,"44969":6138,"44970":12316,"44971":3734,"44972":17468,"44973":7343,"44974":15191,"44975":15737,"44976":10643,"44977":13050,"44978":11921,"44979":5469,"44980":9493,"44981":13810,"44982":15828,"44983":13411,"44984":4988,"44985":6508,"44986":13173,"44987":14302,"44988":3301,"44989":14010,"44990":4722,"44991":9355,"44992":14493,"44993":10793,"44994":11265,"44995":11567,"44996":1381,"44997":15691,"44998":13806,"44999":2801,"45000":1310,"45001":13463,"45002":2593,"45003":8099,"45004":10583,"45005":11716,"45006":1596,"45007":7620,"45008":3706,"45009":233,"45010":4621,"45011":12573,"45012":2159,"45013":6608,"45014":985,"45015":3858,"45016":6432,"45017":8387,"45018":9208,"45019":2620,"45020":3958,"45021":9070,"45022":8484,"45023":326,"45024":5265,"45025":17994,"45026":3791,"45027":2636,"45028":17460,"45029":7064,"45030":4997,"45031":14254,"45032":18131,"45033":9952,"45034":15898,"45035":1989,"45036":6443,"45037":12135,"45038":7561,"45039":17812,"45040":2232,"45041":2308,"45042":3959,"45043":15029,"45044":4219,"45045":1427,"45046":7144,"45047":9053,"45048":10751,"45049":8624,"45050":5640,"45051":2224,"45052":18235,"45053":4127,"45054":11931,"45055":4823,"45056":5813,"45057":11625,"45058":12092,"45059":11013,"45060":14437,"45061":17537,"45062":11707,"45063":3074,"45064":1375,"45065":12467,"45066":998,"45067":16480,"45068":4949,"45069":15677,"45070":13216,"45071":14307,"45072":10877,"45073":1251,"45074":292,"45075":150,"45076":13030,"45077":12210,"45078":10977,"45079":14344,"45080":7487,"45081":400,"45082":15431,"45083":12691,"45084":10229,"45085":10011,"45086":17381,"45087":15222,"45088":5500,"45089":15076,"45090":15510,"45091":13326,"45092":6251,"45093":2170,"45094":9005,"45095":8920,"45096":14835,"45097":3131,"45098":2216,"45099":4865,"45100":16916,"45101":2688,"45102":16971,"45103":12078,"45104":3060,"45105":2303,"45106":12475,"45107":16512,"45108":2273,"45109":569,"45110":6446,"45111":14004,"45112":4041,"45113":5999,"45114":2722,"45115":13046,"45116":9970,"45117":5572,"45118":17178,"45119":2450,"45120":3116,"45121":4138,"45122":17081,"45123":5178,"45124":9589,"45125":749,"45126":3515,"45127":13283,"45128":2506,"45129":4086,"45130":6152,"45131":17852,"45132":15130,"45133":7013,"45134":1391,"45135":14174,"45136":7006,"45137":5113,"45138":18157,"45139":10457,"45140":6057,"45141":9959,"45142":17988,"45143":14118,"45144":9418,"45145":16666,"45146":892,"45147":9644,"45148":14010,"45149":5911,"45150":4528,"45151":2609,"45152":9080,"45153":18276,"45154":17920,"45155":6640,"45156":17102,"45157":278,"45158":6010,"45159":3032,"45160":14272,"45161":4940,"45162":9205,"45163":9300,"45164":885,"45165":5387,"45166":2446,"45167":9120,"45168":7493,"45169":2076,"45170":18326,"45171":823,"45172":8174,"45173":7144,"45174":5830,"45175":13018,"45176":3832,"45177":11013,"45178":17605,"45179":12720,"45180":14214,"45181":13352,"45182":4190,"45183":4009,"45184":6917,"45185":8312,"45186":17096,"45187":6516,"45188":9717,"45189":711,"45190":9425,"45191":12906,"45192":11668,"45193":2047,"45194":14878,"45195":4486,"45196":6408,"45197":16674,"45198":13227,"45199":8842,"45200":11922,"45201":12811,"45202":4660,"45203":15003,"45204":12091,"45205":4881,"45206":6345,"45207":13097,"45208":8777,"45209":15532,"45210":3716,"45211":5794,"45212":5557,"45213":13627,"45214":6654,"45215":8542,"45216":4129,"45217":4654,"45218":14976,"45219":3396,"45220":13714,"45221":10837,"45222":10554,"45223":2261,"45224":16973,"45225":6393,"45226":10685,"45227":11475,"45228":719,"45229":14088,"45230":13255,"45231":11647,"45232":178,"45233":6442,"45234":13351,"45235":15204,"45236":4717,"45237":5574,"45238":13471,"45239":6328,"45240":14473,"45241":12813,"45242":10556,"45243":11941,"45244":17298,"45245":2382,"45246":2753,"45247":16093,"45248":14837,"45249":12015,"45250":16442,"45251":6930,"45252":5957,"45253":3857,"45254":17118,"45255":11052,"45256":3510,"45257":801,"45258":11769,"45259":3642,"45260":859,"45261":12575,"45262":6917,"45263":3959,"45264":8251,"45265":15976,"45266":12366,"45267":5968,"45268":11848,"45269":14186,"45270":8432,"45271":14074,"45272":12327,"45273":11032,"45274":6867,"45275":9767,"45276":7818,"45277":6159,"45278":579,"45279":14602,"45280":6833,"45281":16586,"45282":5106,"45283":5914,"45284":8439,"45285":9230,"45286":10136,"45287":15582,"45288":11744,"45289":14798,"45290":14764,"45291":16536,"45292":14821,"45293":13432,"45294":7727,"45295":4701,"45296":15788,"45297":7584,"45298":16358,"45299":9030,"45300":6188,"45301":16766,"45302":3853,"45303":10598,"45304":2294,"45305":15523,"45306":12859,"45307":13947,"45308":11345,"45309":17062,"45310":8589,"45311":14471,"45312":8417,"45313":8018,"45314":15101,"45315":3548,"45316":15190,"45317":518,"45318":8872,"45319":1143,"45320":13733,"45321":11778,"45322":10580,"45323":11605,"45324":15645,"45325":4642,"45326":8657,"45327":10185,"45328":10905,"45329":16748,"45330":18208,"45331":9528,"45332":10243,"45333":12054,"45334":3437,"45335":11938,"45336":15043,"45337":11002,"45338":4543,"45339":13180,"45340":17576,"45341":14817,"45342":1947,"45343":16149,"45344":17022,"45345":14933,"45346":17571,"45347":3159,"45348":15872,"45349":1050,"45350":16335,"45351":16296,"45352":5698,"45353":6431,"45354":7438,"45355":14282,"45356":10719,"45357":17013,"45358":5101,"45359":4169,"45360":5502,"45361":5785,"45362":7167,"45363":13084,"45364":6117,"45365":3330,"45366":10102,"45367":7084,"45368":15985,"45369":8572,"45370":3368,"45371":9178,"45372":2327,"45373":5785,"45374":3728,"45375":17625,"45376":5882,"45377":17281,"45378":16387,"45379":7119,"45380":251,"45381":14286,"45382":11078,"45383":9819,"45384":3723,"45385":10079,"45386":7131,"45387":2359,"45388":11753,"45389":10253,"45390":8661,"45391":583,"45392":3238,"45393":7884,"45394":8665,"45395":7260,"45396":4086,"45397":16935,"45398":8188,"45399":2336,"45400":6247,"45401":17585,"45402":2600,"45403":8607,"45404":7160,"45405":13259,"45406":15533,"45407":7565,"45408":4918,"45409":203,"45410":7814,"45411":6399,"45412":13687,"45413":10303,"45414":9855,"45415":17157,"45416":3783,"45417":492,"45418":11808,"45419":17852,"45420":10353,"45421":11773,"45422":17960,"45423":6086,"45424":13899,"45425":6195,"45426":5979,"45427":2394,"45428":5991,"45429":5546,"45430":12227,"45431":1689,"45432":1308,"45433":13540,"45434":7568,"45435":11546,"45436":8262,"45437":943,"45438":7080,"45439":6168,"45440":8813,"45441":12020,"45442":12019,"45443":14436,"45444":39,"45445":14338,"45446":14211,"45447":17235,"45448":16197,"45449":2412,"45450":2814,"45451":14184,"45452":16486,"45453":4200,"45454":16743,"45455":16956,"45456":8261,"45457":6176,"45458":13883,"45459":11507,"45460":11019,"45461":9418,"45462":16812,"45463":10728,"45464":5077,"45465":14719,"45466":8961,"45467":12394,"45468":18287,"45469":5350,"45470":14858,"45471":9050,"45472":6698,"45473":13811,"45474":5883,"45475":9996,"45476":2641,"45477":4116,"45478":11675,"45479":16453,"45480":8566,"45481":13669,"45482":16627,"45483":8566,"45484":3884,"45485":8467,"45486":5841,"45487":16334,"45488":16442,"45489":8470,"45490":768,"45491":4479,"45492":4207,"45493":3788,"45494":18231,"45495":6687,"45496":5846,"45497":11998,"45498":17946,"45499":15396,"45500":1656,"45501":8607,"45502":16397,"45503":4267,"45504":17724,"45505":3937,"45506":13692,"45507":2039,"45508":14043,"45509":16296,"45510":8571,"45511":736,"45512":6585,"45513":17138,"45514":1340,"45515":464,"45516":12918,"45517":14259,"45518":5125,"45519":6599,"45520":18041,"45521":17198,"45522":1886,"45523":1317,"45524":15447,"45525":7400,"45526":5282,"45527":11997,"45528":12227,"45529":3971,"45530":18152,"45531":17283,"45532":15574,"45533":6952,"45534":3016,"45535":6207,"45536":17682,"45537":17907,"45538":10154,"45539":12909,"45540":14331,"45541":4732,"45542":6222,"45543":1226,"45544":2035,"45545":7250,"45546":12765,"45547":14664,"45548":8718,"45549":8795,"45550":9534,"45551":11878,"45552":14720,"45553":1248,"45554":303,"45555":14985,"45556":1837,"45557":4191,"45558":9544,"45559":946,"45560":288,"45561":897,"45562":13887,"45563":11888,"45564":10121,"45565":9833,"45566":14110,"45567":16098,"45568":10464,"45569":16763,"45570":6009,"45571":5719,"45572":1748,"45573":13370,"45574":8624,"45575":697,"45576":1159,"45577":329,"45578":13121,"45579":8933,"45580":3075,"45581":16432,"45582":7159,"45583":2101,"45584":12334,"45585":12642,"45586":8127,"45587":3344,"45588":2935,"45589":13615,"45590":3501,"45591":13356,"45592":12850,"45593":880,"45594":13852,"45595":10072,"45596":12856,"45597":5384,"45598":8108,"45599":6608,"45600":3992,"45601":6922,"45602":15149,"45603":12343,"45604":17520,"45605":2850,"45606":16644,"45607":2430,"45608":16764,"45609":4748,"45610":16445,"45611":15616,"45612":15040,"45613":10539,"45614":4419,"45615":5796,"45616":13719,"45617":12033,"45618":18070,"45619":8906,"45620":5013,"45621":18044,"45622":15218,"45623":16184,"45624":4984,"45625":11647,"45626":16061,"45627":2225,"45628":5219,"45629":13018,"45630":13873,"45631":7531,"45632":1297,"45633":15147,"45634":10769,"45635":10395,"45636":7933,"45637":16351,"45638":12081,"45639":10986,"45640":6015,"45641":7648,"45642":14418,"45643":751,"45644":2930,"45645":1058,"45646":15114,"45647":14440,"45648":6064,"45649":16837,"45650":13978,"45651":8579,"45652":11750,"45653":4427,"45654":2102,"45655":206,"45656":4717,"45657":7899,"45658":4882,"45659":13213,"45660":17087,"45661":1403,"45662":9868,"45663":1178,"45664":6229,"45665":9584,"45666":11909,"45667":4913,"45668":16739,"45669":3068,"45670":6330,"45671":4622,"45672":9941,"45673":899,"45674":3646,"45675":7541,"45676":17371,"45677":2660,"45678":17225,"45679":1503,"45680":17317,"45681":8039,"45682":625,"45683":7677,"45684":3837,"45685":8113,"45686":9300,"45687":17349,"45688":3816,"45689":15160,"45690":17285,"45691":1253,"45692":1479,"45693":13032,"45694":565,"45695":8633,"45696":16073,"45697":305,"45698":12330,"45699":6944,"45700":2674,"45701":5282,"45702":6503,"45703":14167,"45704":1134,"45705":16850,"45706":10587,"45707":8784,"45708":9479,"45709":8509,"45710":8563,"45711":7510,"45712":6339,"45713":8635,"45714":18014,"45715":6937,"45716":15544,"45717":856,"45718":15698,"45719":162,"45720":1605,"45721":4433,"45722":6896,"45723":10213,"45724":6474,"45725":4792,"45726":8967,"45727":5790,"45728":6240,"45729":4857,"45730":6432,"45731":5817,"45732":16822,"45733":9339,"45734":12555,"45735":14933,"45736":12022,"45737":7616,"45738":15910,"45739":24,"45740":2221,"45741":314,"45742":3828,"45743":5174,"45744":14611,"45745":7045,"45746":10122,"45747":10926,"45748":4714,"45749":989,"45750":14918,"45751":6715,"45752":8797,"45753":13850,"45754":7637,"45755":15816,"45756":15253,"45757":11572,"45758":4644,"45759":13298,"45760":10528,"45761":11132,"45762":8604,"45763":5897,"45764":16258,"45765":4421,"45766":11454,"45767":12451,"45768":8092,"45769":2509,"45770":5726,"45771":8305,"45772":13087,"45773":17010,"45774":3786,"45775":8655,"45776":8204,"45777":17615,"45778":16352,"45779":15551,"45780":2765,"45781":16373,"45782":11499,"45783":14500,"45784":13574,"45785":8937,"45786":1894,"45787":10483,"45788":11773,"45789":13653,"45790":3371,"45791":220,"45792":3728,"45793":18076,"45794":13085,"45795":13374,"45796":13923,"45797":13707,"45798":11234,"45799":9513,"45800":6129,"45801":4108,"45802":11667,"45803":14293,"45804":14280,"45805":10660,"45806":3330,"45807":2000,"45808":17716,"45809":13771,"45810":985,"45811":13879,"45812":11185,"45813":17050,"45814":1813,"45815":18267,"45816":1856,"45817":1082,"45818":3414,"45819":3400,"45820":13599,"45821":904,"45822":12773,"45823":14905,"45824":5380,"45825":13128,"45826":2283,"45827":15283,"45828":12655,"45829":1230,"45830":7347,"45831":10967,"45832":3585,"45833":9203,"45834":1388,"45835":9061,"45836":2476,"45837":376,"45838":1301,"45839":3272,"45840":1738,"45841":2163,"45842":1293,"45843":8346,"45844":7402,"45845":10456,"45846":2187,"45847":2939,"45848":9717,"45849":13466,"45850":15707,"45851":14736,"45852":18341,"45853":2442,"45854":12124,"45855":8155,"45856":17096,"45857":10972,"45858":8880,"45859":11188,"45860":8882,"45861":16396,"45862":14535,"45863":9027,"45864":4521,"45865":12840,"45866":11366,"45867":1752,"45868":6164,"45869":6317,"45870":4546,"45871":8445,"45872":5371,"45873":7387,"45874":3488,"45875":9775,"45876":12003,"45877":16708,"45878":15313,"45879":10394,"45880":9491,"45881":17859,"45882":12680,"45883":10207,"45884":830,"45885":4968,"45886":13431,"45887":12576,"45888":15418,"45889":1230,"45890":17426,"45891":5167,"45892":6258,"45893":7630,"45894":16732,"45895":2302,"45896":10955,"45897":8649,"45898":12454,"45899":2428,"45900":4079,"45901":10017,"45902":17106,"45903":17965,"45904":3395,"45905":307,"45906":16926,"45907":2311,"45908":6136,"45909":10142,"45910":13861,"45911":8507,"45912":15581,"45913":15014,"45914":13931,"45915":12910,"45916":14090,"45917":16047,"45918":11748,"45919":10987,"45920":13296,"45921":8554,"45922":14742,"45923":9584,"45924":14317,"45925":270,"45926":8471,"45927":8979,"45928":16504,"45929":16675,"45930":7175,"45931":13447,"45932":8782,"45933":4014,"45934":2884,"45935":4982,"45936":8113,"45937":4664,"45938":15155,"45939":12511,"45940":16573,"45941":10464,"45942":4614,"45943":10031,"45944":8379,"45945":450,"45946":4397,"45947":10450,"45948":4395,"45949":4748,"45950":2586,"45951":13001,"45952":17389,"45953":17962,"45954":10604,"45955":9222,"45956":4057,"45957":1661,"45958":11425,"45959":7895,"45960":2445,"45961":403,"45962":893,"45963":18248,"45964":15840,"45965":7374,"45966":2382,"45967":12985,"45968":12554,"45969":14287,"45970":8330,"45971":16523,"45972":1533,"45973":3828,"45974":1477,"45975":7004,"45976":17458,"45977":280,"45978":993,"45979":13394,"45980":13145,"45981":15560,"45982":5803,"45983":179,"45984":10753,"45985":8846,"45986":13755,"45987":7349,"45988":4994,"45989":14859,"45990":14711,"45991":9389,"45992":2157,"45993":2003,"45994":17446,"45995":7019,"45996":11457,"45997":17400,"45998":9149,"45999":16396,"46000":14190,"46001":8884,"46002":2175,"46003":10886,"46004":3898,"46005":7524,"46006":16575,"46007":2198,"46008":12057,"46009":8606,"46010":8240,"46011":4618,"46012":12637,"46013":1751,"46014":16578,"46015":15424,"46016":18294,"46017":1121,"46018":12308,"46019":5806,"46020":13289,"46021":4979,"46022":14625,"46023":4157,"46024":5060,"46025":5286,"46026":15125,"46027":13492,"46028":1595,"46029":3657,"46030":5757,"46031":3993,"46032":7588,"46033":2879,"46034":14977,"46035":16031,"46036":11969,"46037":1172,"46038":6448,"46039":6723,"46040":13704,"46041":12155,"46042":8835,"46043":11618,"46044":59,"46045":18109,"46046":6652,"46047":5668,"46048":461,"46049":14344,"46050":2739,"46051":12915,"46052":2695,"46053":9496,"46054":6674,"46055":18221,"46056":7468,"46057":17029,"46058":5397,"46059":7070,"46060":15057,"46061":7577,"46062":2442,"46063":17839,"46064":2252,"46065":7159,"46066":110,"46067":4729,"46068":16373,"46069":15582,"46070":5648,"46071":18118,"46072":17223,"46073":17452,"46074":5431,"46075":8932,"46076":3974,"46077":2400,"46078":17484,"46079":11646,"46080":10818,"46081":5413,"46082":3963,"46083":3138,"46084":8545,"46085":9222,"46086":7708,"46087":12992,"46088":8820,"46089":6955,"46090":2713,"46091":15797,"46092":15843,"46093":10041,"46094":15359,"46095":8654,"46096":4063,"46097":18058,"46098":11237,"46099":2270,"46100":8710,"46101":150,"46102":16579,"46103":17161,"46104":4626,"46105":18002,"46106":5960,"46107":17499,"46108":13474,"46109":8708,"46110":9863,"46111":675,"46112":2805,"46113":7389,"46114":13906,"46115":10907,"46116":3956,"46117":10468,"46118":17623,"46119":17893,"46120":6223,"46121":16128,"46122":2147,"46123":1248,"46124":14463,"46125":15428,"46126":9911,"46127":4658,"46128":16191,"46129":13919,"46130":409,"46131":4076,"46132":6739,"46133":1661,"46134":1893,"46135":16548,"46136":15772,"46137":8964,"46138":13581,"46139":7164,"46140":6344,"46141":17168,"46142":16945,"46143":12031,"46144":2513,"46145":4333,"46146":16300,"46147":2573,"46148":10338,"46149":13178,"46150":13086,"46151":4426,"46152":190,"46153":10893,"46154":757,"46155":17116,"46156":3278,"46157":8717,"46158":11380,"46159":9090,"46160":12910,"46161":8973,"46162":17107,"46163":9194,"46164":788,"46165":125,"46166":16942,"46167":11354,"46168":17332,"46169":18092,"46170":9250,"46171":14948,"46172":5754,"46173":5241,"46174":13229,"46175":13842,"46176":12413,"46177":8454,"46178":3934,"46179":11122,"46180":2113,"46181":16578,"46182":7706,"46183":3314,"46184":1147,"46185":9231,"46186":386,"46187":10271,"46188":15143,"46189":15809,"46190":9919,"46191":15509,"46192":4409,"46193":5937,"46194":7409,"46195":10007,"46196":16163,"46197":17829,"46198":6383,"46199":4754,"46200":10616,"46201":8300,"46202":11887,"46203":13724,"46204":13908,"46205":12964,"46206":12214,"46207":18353,"46208":13640,"46209":2064,"46210":13356,"46211":7203,"46212":3723,"46213":10195,"46214":8630,"46215":17007,"46216":18152,"46217":9806,"46218":2516,"46219":1364,"46220":12879,"46221":7652,"46222":16467,"46223":11404,"46224":11075,"46225":1966,"46226":17925,"46227":2790,"46228":1397,"46229":4144,"46230":15537,"46231":6645,"46232":4418,"46233":12607,"46234":14580,"46235":8234,"46236":11878,"46237":1991,"46238":16006,"46239":16678,"46240":7104,"46241":16309,"46242":7461,"46243":1606,"46244":13336,"46245":15907,"46246":2958,"46247":8667,"46248":8159,"46249":10975,"46250":4596,"46251":15778,"46252":16411,"46253":8399,"46254":17592,"46255":15402,"46256":9740,"46257":13169,"46258":17877,"46259":5787,"46260":16948,"46261":3597,"46262":379,"46263":2411,"46264":1396,"46265":13047,"46266":11537,"46267":11421,"46268":6183,"46269":16218,"46270":16744,"46271":11124,"46272":13583,"46273":14702,"46274":280,"46275":1027,"46276":5925,"46277":8058,"46278":3534,"46279":7332,"46280":3863,"46281":5034,"46282":1983,"46283":16517,"46284":17836,"46285":7610,"46286":10370,"46287":11790,"46288":1771,"46289":8067,"46290":8644,"46291":6192,"46292":15804,"46293":18262,"46294":10401,"46295":2086,"46296":987,"46297":14816,"46298":10999,"46299":13423,"46300":16963,"46301":742,"46302":13146,"46303":2869,"46304":8402,"46305":11837,"46306":6649,"46307":7701,"46308":6617,"46309":3586,"46310":14390,"46311":2375,"46312":2164,"46313":6572,"46314":11609,"46315":11097,"46316":9319,"46317":14434,"46318":11233,"46319":3786,"46320":4910,"46321":4036,"46322":5468,"46323":9379,"46324":15987,"46325":12197,"46326":5623,"46327":12270,"46328":495,"46329":5957,"46330":17948,"46331":1461,"46332":16144,"46333":5352,"46334":16107,"46335":8267,"46336":11593,"46337":14618,"46338":3523,"46339":3295,"46340":2222,"46341":6053,"46342":16776,"46343":2238,"46344":10063,"46345":10088,"46346":13366,"46347":13774,"46348":8538,"46349":12608,"46350":16511,"46351":17177,"46352":10566,"46353":16563,"46354":2206,"46355":4983,"46356":10134,"46357":6493,"46358":14535,"46359":6742,"46360":6986,"46361":11749,"46362":7884,"46363":17201,"46364":8740,"46365":5893,"46366":1969,"46367":3332,"46368":6074,"46369":12426,"46370":2720,"46371":16341,"46372":13248,"46373":15863,"46374":15167,"46375":12901,"46376":11076,"46377":7516,"46378":7093,"46379":12581,"46380":15519,"46381":9117,"46382":5835,"46383":10896,"46384":14725,"46385":9879,"46386":2264,"46387":3303,"46388":11126,"46389":11111,"46390":7781,"46391":15157,"46392":9686,"46393":13559,"46394":4034,"46395":3079,"46396":12435,"46397":5821,"46398":11855,"46399":16524,"46400":13337,"46401":11437,"46402":14954,"46403":11597,"46404":6425,"46405":5613,"46406":9175,"46407":6397,"46408":13437,"46409":2784,"46410":1727,"46411":12192,"46412":10879,"46413":3847,"46414":3272,"46415":548,"46416":1204,"46417":9054,"46418":15454,"46419":16998,"46420":15316,"46421":9351,"46422":12300,"46423":7390,"46424":6766,"46425":6896,"46426":6369,"46427":1712,"46428":8023,"46429":11581,"46430":17472,"46431":1251,"46432":16564,"46433":3138,"46434":15442,"46435":6675,"46436":4360,"46437":185,"46438":145,"46439":28,"46440":17681,"46441":7223,"46442":8316,"46443":5116,"46444":15603,"46445":13096,"46446":3103,"46447":17756,"46448":10238,"46449":5475,"46450":6443,"46451":16498,"46452":10158,"46453":10748,"46454":2000,"46455":5607,"46456":12894,"46457":15297,"46458":1121,"46459":6705,"46460":12646,"46461":9162,"46462":11491,"46463":2172,"46464":13985,"46465":13023,"46466":1785,"46467":16263,"46468":8504,"46469":5414,"46470":5417,"46471":375,"46472":8351,"46473":10893,"46474":10978,"46475":3398,"46476":11830,"46477":4688,"46478":9537,"46479":16406,"46480":10237,"46481":1598,"46482":1313,"46483":5846,"46484":1229,"46485":14776,"46486":4337,"46487":8189,"46488":10811,"46489":888,"46490":8560,"46491":8254,"46492":12131,"46493":8696,"46494":999,"46495":1578,"46496":4523,"46497":13430,"46498":4222,"46499":4609,"46500":7616,"46501":6637,"46502":5180,"46503":13428,"46504":15391,"46505":16953,"46506":1640,"46507":7447,"46508":557,"46509":6470,"46510":1648,"46511":8709,"46512":11786,"46513":2656,"46514":17063,"46515":5548,"46516":2355,"46517":14575,"46518":5504,"46519":5902,"46520":2000,"46521":9955,"46522":1946,"46523":7977,"46524":2735,"46525":8105,"46526":17966,"46527":5076,"46528":11400,"46529":10630,"46530":11249,"46531":3897,"46532":16363,"46533":367,"46534":5874,"46535":6541,"46536":6193,"46537":12962,"46538":17146,"46539":17733,"46540":14936,"46541":4815,"46542":14404,"46543":13986,"46544":15894,"46545":2308,"46546":5172,"46547":422,"46548":10035,"46549":861,"46550":2345,"46551":641,"46552":1011,"46553":10684,"46554":2449,"46555":6860,"46556":6824,"46557":15552,"46558":18207,"46559":16233,"46560":13147,"46561":7799,"46562":16656,"46563":1591,"46564":9712,"46565":7386,"46566":8332,"46567":528,"46568":1470,"46569":6412,"46570":15722,"46571":11247,"46572":13302,"46573":2441,"46574":11310,"46575":12717,"46576":4492,"46577":417,"46578":14883,"46579":381,"46580":14687,"46581":18046,"46582":9196,"46583":7862,"46584":11132,"46585":16618,"46586":9536,"46587":11603,"46588":7101,"46589":11347,"46590":17648,"46591":8142,"46592":7699,"46593":194,"46594":1242,"46595":434,"46596":6440,"46597":3408,"46598":7742,"46599":16951,"46600":12096,"46601":14640,"46602":4978,"46603":7435,"46604":13417,"46605":2508,"46606":363,"46607":11023,"46608":14239,"46609":5459,"46610":3239,"46611":12881,"46612":9222,"46613":9007,"46614":9051,"46615":17665,"46616":14705,"46617":2889,"46618":13292,"46619":7194,"46620":14691,"46621":7310,"46622":9987,"46623":14142,"46624":3909,"46625":8256,"46626":10251,"46627":2064,"46628":14210,"46629":14623,"46630":947,"46631":11504,"46632":3897,"46633":4677,"46634":9626,"46635":9684,"46636":9940,"46637":12040,"46638":15494,"46639":3786,"46640":14383,"46641":3248,"46642":758,"46643":10543,"46644":7903,"46645":834,"46646":16935,"46647":15526,"46648":1105,"46649":9345,"46650":384,"46651":10816,"46652":17496,"46653":2022,"46654":139,"46655":13972,"46656":5814,"46657":2105,"46658":5928,"46659":3995,"46660":3804,"46661":10789,"46662":3443,"46663":3185,"46664":1229,"46665":16647,"46666":12505,"46667":4445,"46668":16853,"46669":10786,"46670":7277,"46671":17626,"46672":15730,"46673":1352,"46674":9749,"46675":15205,"46676":6653,"46677":1284,"46678":3603,"46679":16902,"46680":12927,"46681":18347,"46682":11361,"46683":2841,"46684":3345,"46685":11544,"46686":8218,"46687":1986,"46688":8145,"46689":12157,"46690":1257,"46691":5068,"46692":11155,"46693":8994,"46694":825,"46695":11010,"46696":6586,"46697":8647,"46698":4087,"46699":1757,"46700":9800,"46701":3891,"46702":6342,"46703":1826,"46704":2027,"46705":1240,"46706":48,"46707":4885,"46708":14186,"46709":8792,"46710":4341,"46711":6879,"46712":7601,"46713":12673,"46714":13716,"46715":10256,"46716":1447,"46717":1304,"46718":15355,"46719":3674,"46720":11146,"46721":868,"46722":1114,"46723":7939,"46724":6763,"46725":17974,"46726":13093,"46727":1423,"46728":15927,"46729":9015,"46730":13554,"46731":1636,"46732":17221,"46733":15012,"46734":4003,"46735":14530,"46736":9144,"46737":7462,"46738":10600,"46739":13360,"46740":7135,"46741":10910,"46742":9152,"46743":15979,"46744":2348,"46745":4287,"46746":2147,"46747":12394,"46748":7001,"46749":4813,"46750":13480,"46751":11673,"46752":5830,"46753":15538,"46754":17240,"46755":10897,"46756":5144,"46757":13005,"46758":16869,"46759":3338,"46760":13379,"46761":11834,"46762":7004,"46763":3148,"46764":14459,"46765":11088,"46766":1879,"46767":11393,"46768":7291,"46769":4567,"46770":9366,"46771":5952,"46772":13447,"46773":870,"46774":14132,"46775":9146,"46776":17777,"46777":1089,"46778":7472,"46779":15990,"46780":18141,"46781":4994,"46782":2392,"46783":2488,"46784":4281,"46785":16072,"46786":1840,"46787":4359,"46788":15179,"46789":17711,"46790":14473,"46791":8284,"46792":10672,"46793":14223,"46794":9209,"46795":10431,"46796":9580,"46797":15808,"46798":15492,"46799":10597,"46800":12191,"46801":11637,"46802":13170,"46803":15950,"46804":17136,"46805":763,"46806":2212,"46807":6278,"46808":11225,"46809":371,"46810":10072,"46811":17665,"46812":14290,"46813":3273,"46814":266,"46815":5797,"46816":5882,"46817":4541,"46818":2372,"46819":8761,"46820":2674,"46821":10316,"46822":18162,"46823":761,"46824":16502,"46825":6805,"46826":9646,"46827":3506,"46828":6602,"46829":542,"46830":756,"46831":18021,"46832":17930,"46833":10657,"46834":4836,"46835":6606,"46836":1834,"46837":16418,"46838":6589,"46839":14624,"46840":7276,"46841":14752,"46842":10135,"46843":8412,"46844":13861,"46845":17540,"46846":11960,"46847":5453,"46848":17139,"46849":11825,"46850":16294,"46851":16734,"46852":371,"46853":16577,"46854":11475,"46855":8971,"46856":957,"46857":14057,"46858":991,"46859":8239,"46860":16806,"46861":14718,"46862":565,"46863":17216,"46864":5980,"46865":1294,"46866":3003,"46867":10965,"46868":13820,"46869":3039,"46870":17652,"46871":9725,"46872":17432,"46873":13680,"46874":28,"46875":12134,"46876":16065,"46877":16448,"46878":579,"46879":12770,"46880":9400,"46881":14676,"46882":1258,"46883":6056,"46884":14863,"46885":13813,"46886":15772,"46887":1439,"46888":17318,"46889":10182,"46890":13777,"46891":2072,"46892":8444,"46893":15808,"46894":4972,"46895":4374,"46896":11320,"46897":5152,"46898":17803,"46899":10675,"46900":519,"46901":7276,"46902":9307,"46903":4293,"46904":9861,"46905":1144,"46906":15937,"46907":4455,"46908":14763,"46909":12004,"46910":8614,"46911":17447,"46912":10589,"46913":16971,"46914":10511,"46915":13232,"46916":7262,"46917":7583,"46918":4077,"46919":18017,"46920":6746,"46921":16472,"46922":15356,"46923":6340,"46924":9919,"46925":8097,"46926":16535,"46927":11799,"46928":9593,"46929":11025,"46930":17243,"46931":4025,"46932":12768,"46933":16298,"46934":5646,"46935":8650,"46936":4312,"46937":12617,"46938":66,"46939":16038,"46940":1435,"46941":16941,"46942":3602,"46943":8977,"46944":4083,"46945":9889,"46946":16703,"46947":7682,"46948":4272,"46949":4583,"46950":12399,"46951":9207,"46952":5435,"46953":1693,"46954":3042,"46955":8943,"46956":16175,"46957":5933,"46958":9709,"46959":5689,"46960":12102,"46961":16582,"46962":16193,"46963":3924,"46964":8907,"46965":5868,"46966":3824,"46967":8101,"46968":16138,"46969":10845,"46970":14059,"46971":17781,"46972":14368,"46973":9068,"46974":12625,"46975":11550,"46976":8077,"46977":15235,"46978":1888,"46979":1081,"46980":1371,"46981":11024,"46982":6433,"46983":9804,"46984":7211,"46985":14741,"46986":9155,"46987":3594,"46988":15789,"46989":5781,"46990":8053,"46991":10564,"46992":4561,"46993":10813,"46994":964,"46995":6008,"46996":12518,"46997":2763,"46998":15850,"46999":14698,"47000":527,"47001":5336,"47002":14290,"47003":13106,"47004":3896,"47005":17020,"47006":18006,"47007":16050,"47008":13141,"47009":11811,"47010":15712,"47011":6172,"47012":5281,"47013":16461,"47014":5318,"47015":11102,"47016":3003,"47017":156,"47018":1997,"47019":9153,"47020":6412,"47021":4355,"47022":1285,"47023":14801,"47024":15123,"47025":9352,"47026":16012,"47027":2556,"47028":5846,"47029":14052,"47030":16503,"47031":16082,"47032":460,"47033":2382,"47034":13312,"47035":17562,"47036":1706,"47037":15,"47038":238,"47039":4510,"47040":15619,"47041":14059,"47042":3988,"47043":10036,"47044":16757,"47045":2150,"47046":7467,"47047":11575,"47048":17150,"47049":17310,"47050":10084,"47051":4357,"47052":3052,"47053":4511,"47054":392,"47055":15106,"47056":2001,"47057":11047,"47058":1389,"47059":18323,"47060":15031,"47061":14862,"47062":4993,"47063":3681,"47064":6734,"47065":5240,"47066":13261,"47067":13043,"47068":12149,"47069":9591,"47070":6078,"47071":7384,"47072":8382,"47073":8010,"47074":15681,"47075":1592,"47076":5861,"47077":8240,"47078":75,"47079":10700,"47080":11998,"47081":3711,"47082":1576,"47083":6913,"47084":13926,"47085":8323,"47086":13746,"47087":6897,"47088":7667,"47089":2745,"47090":6232,"47091":7993,"47092":15173,"47093":1521,"47094":7720,"47095":11218,"47096":2006,"47097":3720,"47098":13073,"47099":4360,"47100":10851,"47101":18034,"47102":7481,"47103":16902,"47104":433,"47105":14898,"47106":8972,"47107":8758,"47108":12767,"47109":5330,"47110":371,"47111":1336,"47112":13957,"47113":8469,"47114":1533,"47115":10345,"47116":18138,"47117":2990,"47118":10467,"47119":3699,"47120":11149,"47121":1325,"47122":6235,"47123":16232,"47124":1130,"47125":8748,"47126":11169,"47127":11747,"47128":8345,"47129":6163,"47130":17302,"47131":17313,"47132":15752,"47133":6547,"47134":9656,"47135":5135,"47136":70,"47137":13580,"47138":12953,"47139":8148,"47140":16462,"47141":18326,"47142":5244,"47143":5908,"47144":12143,"47145":7469,"47146":2757,"47147":1356,"47148":8635,"47149":13310,"47150":1264,"47151":14728,"47152":7372,"47153":13971,"47154":18148,"47155":3386,"47156":15053,"47157":18237,"47158":17796,"47159":7574,"47160":10000,"47161":14258,"47162":12968,"47163":10675,"47164":5577,"47165":18274,"47166":17659,"47167":13644,"47168":8655,"47169":4488,"47170":5209,"47171":4788,"47172":11444,"47173":15579,"47174":15912,"47175":9598,"47176":7174,"47177":6958,"47178":18216,"47179":1140,"47180":9652,"47181":3040,"47182":312,"47183":16620,"47184":7885,"47185":17695,"47186":3299,"47187":14504,"47188":16272,"47189":1166,"47190":13880,"47191":6001,"47192":9052,"47193":1967,"47194":14779,"47195":9093,"47196":5387,"47197":11731,"47198":5714,"47199":14092,"47200":14134,"47201":6071,"47202":6771,"47203":8149,"47204":3761,"47205":7496,"47206":15290,"47207":147,"47208":315,"47209":15560,"47210":7893,"47211":12767,"47212":2741,"47213":2497,"47214":2478,"47215":1268,"47216":5890,"47217":18173,"47218":3717,"47219":18050,"47220":13481,"47221":4826,"47222":12684,"47223":3832,"47224":8326,"47225":9429,"47226":8718,"47227":5215,"47228":344,"47229":17429,"47230":15285,"47231":11794,"47232":12755,"47233":8084,"47234":2541,"47235":3076,"47236":912,"47237":11954,"47238":16572,"47239":4241,"47240":17620,"47241":5823,"47242":13276,"47243":15042,"47244":12099,"47245":13299,"47246":10043,"47247":8248,"47248":3313,"47249":2438,"47250":2178,"47251":7037,"47252":2602,"47253":8494,"47254":13399,"47255":9027,"47256":1240,"47257":3873,"47258":14360,"47259":12254,"47260":7863,"47261":2698,"47262":10308,"47263":15422,"47264":445,"47265":11009,"47266":7596,"47267":9618,"47268":6255,"47269":5044,"47270":4690,"47271":10755,"47272":8606,"47273":12056,"47274":17826,"47275":7492,"47276":5565,"47277":9568,"47278":7044,"47279":17785,"47280":223,"47281":13360,"47282":880,"47283":4437,"47284":5338,"47285":4477,"47286":8016,"47287":10961,"47288":3751,"47289":16564,"47290":2946,"47291":7874,"47292":18119,"47293":15243,"47294":10195,"47295":3776,"47296":7309,"47297":14279,"47298":1639,"47299":5389,"47300":6277,"47301":16609,"47302":17620,"47303":15469,"47304":11855,"47305":13663,"47306":13738,"47307":2451,"47308":6497,"47309":5669,"47310":2816,"47311":5281,"47312":5532,"47313":9580,"47314":14677,"47315":3330,"47316":17071,"47317":3492,"47318":4671,"47319":9086,"47320":5644,"47321":15825,"47322":14938,"47323":18209,"47324":2883,"47325":4535,"47326":2530,"47327":11176,"47328":11302,"47329":6346,"47330":15836,"47331":15906,"47332":3655,"47333":12888,"47334":9847,"47335":11191,"47336":12303,"47337":10851,"47338":10880,"47339":408,"47340":1126,"47341":4213,"47342":11854,"47343":1651,"47344":3376,"47345":16748,"47346":9799,"47347":14171,"47348":6173,"47349":17123,"47350":11981,"47351":11430,"47352":15166,"47353":6623,"47354":5322,"47355":8943,"47356":12153,"47357":4242,"47358":1002,"47359":11313,"47360":12173,"47361":3845,"47362":2079,"47363":809,"47364":10256,"47365":725,"47366":7721,"47367":16089,"47368":14848,"47369":14434,"47370":11502,"47371":4106,"47372":16430,"47373":8255,"47374":7124,"47375":6439,"47376":12227,"47377":6782,"47378":9673,"47379":15049,"47380":13426,"47381":6556,"47382":8294,"47383":13758,"47384":9755,"47385":15993,"47386":9624,"47387":17550,"47388":6246,"47389":7165,"47390":13238,"47391":11212,"47392":5067,"47393":3292,"47394":586,"47395":7090,"47396":675,"47397":17067,"47398":3327,"47399":1785,"47400":2686,"47401":10202,"47402":17482,"47403":5444,"47404":5500,"47405":3074,"47406":15806,"47407":2075,"47408":16898,"47409":16454,"47410":8786,"47411":1585,"47412":11101,"47413":3938,"47414":16529,"47415":8478,"47416":11624,"47417":298,"47418":13320,"47419":5068,"47420":12481,"47421":10565,"47422":7301,"47423":1986,"47424":2180,"47425":10555,"47426":13103,"47427":17084,"47428":6605,"47429":11549,"47430":3715,"47431":9392,"47432":9084,"47433":152,"47434":10353,"47435":9772,"47436":263,"47437":14127,"47438":16839,"47439":2954,"47440":5216,"47441":810,"47442":10312,"47443":1080,"47444":2474,"47445":17596,"47446":13277,"47447":12411,"47448":16794,"47449":1011,"47450":13987,"47451":11290,"47452":16866,"47453":13616,"47454":5742,"47455":11934,"47456":9843,"47457":6798,"47458":11589,"47459":13233,"47460":7445,"47461":10520,"47462":1489,"47463":11820,"47464":6115,"47465":10060,"47466":17846,"47467":3092,"47468":17915,"47469":14081,"47470":16412,"47471":3558,"47472":3579,"47473":11723,"47474":4006,"47475":13464,"47476":17411,"47477":14886,"47478":17689,"47479":15716,"47480":8672,"47481":14609,"47482":5136,"47483":10699,"47484":15319,"47485":5262,"47486":10937,"47487":11357,"47488":8454,"47489":3004,"47490":7628,"47491":2595,"47492":9356,"47493":7903,"47494":17693,"47495":494,"47496":832,"47497":12988,"47498":1701,"47499":644,"47500":10418,"47501":10948,"47502":8372,"47503":9063,"47504":18097,"47505":2202,"47506":2716,"47507":3024,"47508":1231,"47509":16390,"47510":11551,"47511":3543,"47512":13696,"47513":1990,"47514":15431,"47515":12546,"47516":10772,"47517":17744,"47518":10190,"47519":11716,"47520":10483,"47521":16917,"47522":270,"47523":15978,"47524":7993,"47525":2631,"47526":4895,"47527":12585,"47528":8611,"47529":7219,"47530":16173,"47531":1693,"47532":12898,"47533":7112,"47534":6637,"47535":11781,"47536":3701,"47537":12700,"47538":6434,"47539":15282,"47540":14050,"47541":10073,"47542":6511,"47543":9341,"47544":15109,"47545":13426,"47546":11215,"47547":5103,"47548":167,"47549":17997,"47550":4845,"47551":8650,"47552":7646,"47553":10903,"47554":3542,"47555":6693,"47556":2271,"47557":9437,"47558":4914,"47559":17974,"47560":14010,"47561":12668,"47562":8985,"47563":12224,"47564":14037,"47565":10112,"47566":7590,"47567":2900,"47568":17704,"47569":4723,"47570":6332,"47571":17784,"47572":9866,"47573":12153,"47574":15823,"47575":2015,"47576":3338,"47577":10400,"47578":15958,"47579":10597,"47580":2877,"47581":9628,"47582":13651,"47583":16712,"47584":6532,"47585":14487,"47586":15022,"47587":994,"47588":9982,"47589":5505,"47590":13942,"47591":14093,"47592":12201,"47593":4594,"47594":13306,"47595":11127,"47596":1009,"47597":15083,"47598":7005,"47599":7520,"47600":2759,"47601":14187,"47602":307,"47603":2815,"47604":12568,"47605":8923,"47606":6571,"47607":8819,"47608":6606,"47609":9560,"47610":11351,"47611":2771,"47612":15093,"47613":7637,"47614":3259,"47615":5999,"47616":13845,"47617":14814,"47618":10563,"47619":13455,"47620":550,"47621":4393,"47622":17775,"47623":17278,"47624":15789,"47625":5884,"47626":13399,"47627":5321,"47628":7998,"47629":10436,"47630":6604,"47631":5218,"47632":1754,"47633":12870,"47634":9897,"47635":14135,"47636":2792,"47637":14366,"47638":6499,"47639":4338,"47640":14606,"47641":14330,"47642":18060,"47643":14136,"47644":12037,"47645":17147,"47646":1857,"47647":18103,"47648":14784,"47649":16635,"47650":12290,"47651":1053,"47652":13740,"47653":2436,"47654":94,"47655":16226,"47656":1959,"47657":11463,"47658":15050,"47659":6335,"47660":16556,"47661":16348,"47662":5264,"47663":8394,"47664":4714,"47665":6157,"47666":12496,"47667":18012,"47668":18271,"47669":10861,"47670":17637,"47671":8522,"47672":8498,"47673":1424,"47674":16049,"47675":49,"47676":14403,"47677":1213,"47678":3183,"47679":16468,"47680":14152,"47681":2593,"47682":6625,"47683":9421,"47684":4883,"47685":16854,"47686":7792,"47687":14713,"47688":4825,"47689":18226,"47690":4896,"47691":10619,"47692":16790,"47693":1552,"47694":7185,"47695":14970,"47696":51,"47697":16650,"47698":14287,"47699":17321,"47700":7865,"47701":1162,"47702":15216,"47703":12686,"47704":1433,"47705":1076,"47706":1006,"47707":11323,"47708":8844,"47709":16058,"47710":5600,"47711":16238,"47712":2838,"47713":6448,"47714":16657,"47715":859,"47716":6970,"47717":7356,"47718":10234,"47719":10650,"47720":10151,"47721":8686,"47722":3847,"47723":7735,"47724":1239,"47725":12589,"47726":8942,"47727":16754,"47728":1056,"47729":12889,"47730":6177,"47731":10785,"47732":12397,"47733":4336,"47734":18330,"47735":14353,"47736":446,"47737":12570,"47738":14536,"47739":14961,"47740":9100,"47741":5142,"47742":1364,"47743":15789,"47744":2189,"47745":1352,"47746":2833,"47747":7518,"47748":15073,"47749":6152,"47750":7075,"47751":3199,"47752":13864,"47753":13043,"47754":9887,"47755":3154,"47756":6589,"47757":12167,"47758":11081,"47759":514,"47760":17985,"47761":4634,"47762":13932,"47763":1157,"47764":17292,"47765":4443,"47766":11149,"47767":10313,"47768":1407,"47769":4831,"47770":6970,"47771":6808,"47772":6173,"47773":14301,"47774":11854,"47775":17649,"47776":12599,"47777":6676,"47778":3786,"47779":3399,"47780":8495,"47781":16859,"47782":13233,"47783":8343,"47784":12619,"47785":2121,"47786":17479,"47787":2185,"47788":16464,"47789":15667,"47790":1881,"47791":14818,"47792":13932,"47793":8930,"47794":13474,"47795":11917,"47796":12113,"47797":194,"47798":13440,"47799":3188,"47800":12003,"47801":403,"47802":10589,"47803":8408,"47804":302,"47805":1716,"47806":14196,"47807":10856,"47808":3654,"47809":10039,"47810":17850,"47811":5624,"47812":4250,"47813":172,"47814":16892,"47815":15462,"47816":8914,"47817":8435,"47818":1688,"47819":5028,"47820":17934,"47821":11692,"47822":8364,"47823":8246,"47824":9796,"47825":14837,"47826":5338,"47827":908,"47828":3306,"47829":3450,"47830":2955,"47831":18311,"47832":13221,"47833":14189,"47834":7122,"47835":6845,"47836":14660,"47837":3406,"47838":8321,"47839":11809,"47840":14608,"47841":9267,"47842":771,"47843":2595,"47844":5965,"47845":11669,"47846":12619,"47847":3223,"47848":10819,"47849":10136,"47850":5647,"47851":17709,"47852":7166,"47853":16713,"47854":13359,"47855":2762,"47856":16310,"47857":9879,"47858":2247,"47859":4309,"47860":7768,"47861":6748,"47862":15212,"47863":7744,"47864":11513,"47865":3739,"47866":10862,"47867":8415,"47868":1765,"47869":15543,"47870":17402,"47871":4208,"47872":9270,"47873":9828,"47874":3960,"47875":10789,"47876":11323,"47877":16931,"47878":1302,"47879":3853,"47880":18293,"47881":9235,"47882":15356,"47883":17774,"47884":16334,"47885":16760,"47886":1269,"47887":5164,"47888":18226,"47889":1270,"47890":6151,"47891":5739,"47892":11482,"47893":16552,"47894":16438,"47895":5186,"47896":11214,"47897":819,"47898":12285,"47899":7484,"47900":11808,"47901":12935,"47902":10247,"47903":16613,"47904":15242,"47905":13222,"47906":13865,"47907":11100,"47908":12513,"47909":6342,"47910":4080,"47911":16740,"47912":3741,"47913":2678,"47914":11960,"47915":2379,"47916":2665,"47917":9080,"47918":5966,"47919":15729,"47920":2320,"47921":13546,"47922":4833,"47923":14191,"47924":9616,"47925":5425,"47926":16896,"47927":12240,"47928":2158,"47929":16084,"47930":687,"47931":1055,"47932":1168,"47933":16292,"47934":12868,"47935":2526,"47936":17336,"47937":14259,"47938":13796,"47939":4901,"47940":16156,"47941":1829,"47942":1040,"47943":12810,"47944":1747,"47945":10202,"47946":17671,"47947":10545,"47948":2132,"47949":4404,"47950":4329,"47951":14288,"47952":11927,"47953":15794,"47954":6851,"47955":9960,"47956":16921,"47957":11610,"47958":14395,"47959":980,"47960":4231,"47961":17955,"47962":4163,"47963":3864,"47964":5391,"47965":2109,"47966":7539,"47967":4429,"47968":4711,"47969":2435,"47970":2974,"47971":513,"47972":7204,"47973":10366,"47974":3227,"47975":6142,"47976":3732,"47977":10589,"47978":6319,"47979":2530,"47980":9343,"47981":10046,"47982":17891,"47983":9879,"47984":13367,"47985":13830,"47986":17703,"47987":1300,"47988":3356,"47989":10266,"47990":5621,"47991":7832,"47992":1790,"47993":2743,"47994":4851,"47995":16481,"47996":12302,"47997":18019,"47998":6286,"47999":591,"48000":12735,"48001":8896,"48002":13646,"48003":9093,"48004":5046,"48005":3765,"48006":12435,"48007":14889,"48008":15853,"48009":11801,"48010":11593,"48011":8005,"48012":8424,"48013":3535,"48014":7379,"48015":12204,"48016":58,"48017":10301,"48018":5808,"48019":14900,"48020":16646,"48021":7028,"48022":89,"48023":12479,"48024":17698,"48025":17499,"48026":8718,"48027":11652,"48028":17719,"48029":15252,"48030":482,"48031":7772,"48032":4932,"48033":2519,"48034":12133,"48035":16174,"48036":6222,"48037":14668,"48038":4146,"48039":8675,"48040":13702,"48041":12450,"48042":4603,"48043":16032,"48044":11980,"48045":13515,"48046":731,"48047":3494,"48048":13380,"48049":14320,"48050":7045,"48051":482,"48052":10062,"48053":142,"48054":9289,"48055":10045,"48056":7482,"48057":12219,"48058":7169,"48059":16387,"48060":8482,"48061":3613,"48062":10716,"48063":14766,"48064":14690,"48065":8306,"48066":15327,"48067":16504,"48068":12835,"48069":572,"48070":1312,"48071":3514,"48072":5753,"48073":13082,"48074":7664,"48075":7323,"48076":17483,"48077":11022,"48078":5392,"48079":17121,"48080":3811,"48081":16005,"48082":4033,"48083":12287,"48084":6356,"48085":5401,"48086":7782,"48087":12605,"48088":3118,"48089":15253,"48090":12718,"48091":16908,"48092":13420,"48093":8806,"48094":11524,"48095":3849,"48096":9105,"48097":8435,"48098":16559,"48099":1691,"48100":9067,"48101":6250,"48102":9728,"48103":5155,"48104":9365,"48105":1278,"48106":12494,"48107":6214,"48108":4838,"48109":17489,"48110":14226,"48111":10063,"48112":8548,"48113":1432,"48114":6864,"48115":9206,"48116":3322,"48117":3254,"48118":16284,"48119":7860,"48120":6276,"48121":8357,"48122":4019,"48123":2898,"48124":14683,"48125":2309,"48126":17654,"48127":4915,"48128":16083,"48129":17857,"48130":15550,"48131":13251,"48132":18109,"48133":6615,"48134":6075,"48135":12020,"48136":11244,"48137":1878,"48138":15171,"48139":5230,"48140":18348,"48141":5707,"48142":3821,"48143":12126,"48144":9584,"48145":4545,"48146":15197,"48147":15810,"48148":71,"48149":17334,"48150":5902,"48151":1739,"48152":1553,"48153":14150,"48154":3796,"48155":15638,"48156":6795,"48157":14965,"48158":5532,"48159":17452,"48160":17396,"48161":3721,"48162":14138,"48163":6176,"48164":7180,"48165":2863,"48166":3393,"48167":9378,"48168":16434,"48169":2704,"48170":2567,"48171":3249,"48172":1414,"48173":15517,"48174":4022,"48175":3518,"48176":18092,"48177":7306,"48178":18290,"48179":17175,"48180":15026,"48181":656,"48182":11318,"48183":11699,"48184":17361,"48185":7663,"48186":17188,"48187":16596,"48188":14349,"48189":15853,"48190":2718,"48191":780,"48192":6612,"48193":12087,"48194":12517,"48195":9053,"48196":17676,"48197":11514,"48198":10118,"48199":6307,"48200":8451,"48201":16887,"48202":11678,"48203":3935,"48204":17970,"48205":17311,"48206":7391,"48207":10039,"48208":3352,"48209":14845,"48210":1325,"48211":11496,"48212":14723,"48213":8005,"48214":12524,"48215":8823,"48216":480,"48217":4297,"48218":7667,"48219":14234,"48220":8886,"48221":151,"48222":1907,"48223":17786,"48224":13576,"48225":12017,"48226":16122,"48227":11962,"48228":8313,"48229":6476,"48230":6319,"48231":6820,"48232":4419,"48233":17197,"48234":847,"48235":8279,"48236":5382,"48237":10416,"48238":2107,"48239":1856,"48240":11801,"48241":2602,"48242":6475,"48243":12187,"48244":12701,"48245":5315,"48246":2414,"48247":7691,"48248":15646,"48249":17262,"48250":1733,"48251":15373,"48252":17865,"48253":15913,"48254":11174,"48255":7794,"48256":7789,"48257":6373,"48258":13017,"48259":10388,"48260":5120,"48261":14292,"48262":18016,"48263":14954,"48264":10791,"48265":853,"48266":1411,"48267":11672,"48268":12184,"48269":5782,"48270":8095,"48271":8265,"48272":13005,"48273":6972,"48274":12979,"48275":16346,"48276":8389,"48277":1670,"48278":1096,"48279":6827,"48280":16197,"48281":2496,"48282":8617,"48283":17208,"48284":3925,"48285":8217,"48286":6548,"48287":16687,"48288":88,"48289":8924,"48290":15785,"48291":5170,"48292":3277,"48293":16354,"48294":13498,"48295":5371,"48296":10116,"48297":2712,"48298":2941,"48299":10269,"48300":6900,"48301":12373,"48302":8029,"48303":1432,"48304":12238,"48305":13474,"48306":3393,"48307":10072,"48308":10313,"48309":13338,"48310":15018,"48311":4257,"48312":4722,"48313":10966,"48314":17819,"48315":17136,"48316":1592,"48317":17797,"48318":12474,"48319":162,"48320":13358,"48321":11578,"48322":11212,"48323":2099,"48324":17803,"48325":10293,"48326":7624,"48327":5710,"48328":1846,"48329":7034,"48330":4019,"48331":5918,"48332":7287,"48333":10694,"48334":8096,"48335":7568,"48336":9007,"48337":15911,"48338":11658,"48339":16235,"48340":4554,"48341":9667,"48342":4492,"48343":15196,"48344":7172,"48345":4562,"48346":4624,"48347":17426,"48348":14200,"48349":2885,"48350":4294,"48351":5153,"48352":16842,"48353":5435,"48354":11803,"48355":14654,"48356":14942,"48357":283,"48358":8550,"48359":14381,"48360":822,"48361":13282,"48362":15834,"48363":5799,"48364":9251,"48365":9447,"48366":639,"48367":8925,"48368":17162,"48369":3791,"48370":8912,"48371":7940,"48372":15386,"48373":8809,"48374":9559,"48375":16714,"48376":2128,"48377":4379,"48378":2336,"48379":5797,"48380":899,"48381":6325,"48382":5751,"48383":17191,"48384":4590,"48385":12816,"48386":4153,"48387":3031,"48388":15341,"48389":12073,"48390":18153,"48391":17610,"48392":2116,"48393":6172,"48394":998,"48395":7634,"48396":17376,"48397":9023,"48398":12886,"48399":2025,"48400":916,"48401":16573,"48402":18061,"48403":17880,"48404":18210,"48405":9910,"48406":3607,"48407":9353,"48408":4812,"48409":9817,"48410":9904,"48411":10461,"48412":5682,"48413":6099,"48414":13630,"48415":276,"48416":10148,"48417":18328,"48418":11219,"48419":8255,"48420":16220,"48421":7190,"48422":11293,"48423":3893,"48424":13773,"48425":1205,"48426":7030,"48427":17078,"48428":5894,"48429":10406,"48430":16769,"48431":1913,"48432":14583,"48433":6167,"48434":9954,"48435":1852,"48436":85,"48437":13801,"48438":8116,"48439":17339,"48440":9688,"48441":17697,"48442":11139,"48443":6093,"48444":11278,"48445":16050,"48446":16667,"48447":7636,"48448":3720,"48449":10596,"48450":14666,"48451":4070,"48452":4443,"48453":15198,"48454":8898,"48455":4075,"48456":11793,"48457":4937,"48458":9256,"48459":11971,"48460":10881,"48461":9842,"48462":14963,"48463":10780,"48464":15150,"48465":16269,"48466":7944,"48467":13601,"48468":16161,"48469":4726,"48470":11033,"48471":5786,"48472":9250,"48473":7042,"48474":15011,"48475":9988,"48476":3340,"48477":922,"48478":8517,"48479":5404,"48480":11296,"48481":10199,"48482":15525,"48483":792,"48484":15600,"48485":429,"48486":3051,"48487":13124,"48488":1054,"48489":16146,"48490":1475,"48491":10223,"48492":2797,"48493":12863,"48494":880,"48495":10637,"48496":10495,"48497":17627,"48498":7150,"48499":11605,"48500":8577,"48501":15613,"48502":7934,"48503":9600,"48504":17904,"48505":14780,"48506":1531,"48507":3323,"48508":5033,"48509":4797,"48510":3861,"48511":6838,"48512":2062,"48513":14884,"48514":9575,"48515":6552,"48516":12832,"48517":10282,"48518":10707,"48519":8272,"48520":15245,"48521":10215,"48522":14510,"48523":8054,"48524":15604,"48525":11168,"48526":10446,"48527":15812,"48528":17798,"48529":10667,"48530":11574,"48531":14339,"48532":2798,"48533":9099,"48534":7137,"48535":11005,"48536":17246,"48537":15497,"48538":13907,"48539":13864,"48540":10325,"48541":4436,"48542":12725,"48543":12066,"48544":4022,"48545":15596,"48546":12618,"48547":9993,"48548":2499,"48549":5520,"48550":8839,"48551":3943,"48552":5630,"48553":14173,"48554":734,"48555":5119,"48556":15336,"48557":17769,"48558":5204,"48559":14256,"48560":13305,"48561":5450,"48562":10318,"48563":10536,"48564":328,"48565":14355,"48566":5671,"48567":248,"48568":11861,"48569":3925,"48570":6405,"48571":17919,"48572":18190,"48573":7036,"48574":4792,"48575":18081,"48576":6950,"48577":14792,"48578":9348,"48579":3175,"48580":6601,"48581":10453,"48582":3525,"48583":10931,"48584":8089,"48585":4566,"48586":14775,"48587":17375,"48588":10210,"48589":6572,"48590":9552,"48591":6421,"48592":18005,"48593":14669,"48594":11856,"48595":16598,"48596":6576,"48597":5761,"48598":530,"48599":836,"48600":13745,"48601":16224,"48602":16647,"48603":1011,"48604":5963,"48605":16770,"48606":6779,"48607":8537,"48608":15251,"48609":1146,"48610":11391,"48611":6389,"48612":8068,"48613":2101,"48614":9884,"48615":14027,"48616":13217,"48617":4313,"48618":12277,"48619":11195,"48620":17133,"48621":2806,"48622":9145,"48623":8442,"48624":1621,"48625":1757,"48626":16906,"48627":978,"48628":10920,"48629":8322,"48630":2997,"48631":8726,"48632":10165,"48633":7615,"48634":14387,"48635":13058,"48636":3237,"48637":13178,"48638":858,"48639":5125,"48640":8331,"48641":9536,"48642":2249,"48643":3417,"48644":5358,"48645":5730,"48646":14825,"48647":13369,"48648":11538,"48649":6507,"48650":14084,"48651":694,"48652":6852,"48653":4792,"48654":13468,"48655":14334,"48656":3369,"48657":13488,"48658":17195,"48659":15047,"48660":8587,"48661":2045,"48662":5372,"48663":8814,"48664":2931,"48665":14226,"48666":13053,"48667":14622,"48668":8261,"48669":15846,"48670":7719,"48671":1019,"48672":4028,"48673":5410,"48674":14372,"48675":8362,"48676":4032,"48677":10497,"48678":5565,"48679":13361,"48680":5504,"48681":8314,"48682":14975,"48683":13855,"48684":9261,"48685":8148,"48686":10825,"48687":9380,"48688":8948,"48689":474,"48690":17521,"48691":1769,"48692":10128,"48693":13714,"48694":15422,"48695":11058,"48696":16139,"48697":4557,"48698":5084,"48699":17747,"48700":18071,"48701":9101,"48702":17702,"48703":1288,"48704":5975,"48705":11249,"48706":10108,"48707":17678,"48708":5216,"48709":9900,"48710":12331,"48711":5940,"48712":610,"48713":15553,"48714":17558,"48715":14957,"48716":9699,"48717":9621,"48718":12453,"48719":2170,"48720":12241,"48721":3910,"48722":13263,"48723":12260,"48724":10793,"48725":17743,"48726":12849,"48727":18137,"48728":12538,"48729":17471,"48730":6533,"48731":7490,"48732":5562,"48733":8660,"48734":15826,"48735":8887,"48736":18242,"48737":12820,"48738":16459,"48739":16581,"48740":18272,"48741":1741,"48742":13011,"48743":10946,"48744":6690,"48745":956,"48746":13788,"48747":11258,"48748":13887,"48749":16871,"48750":8026,"48751":13420,"48752":17119,"48753":4864,"48754":13630,"48755":4323,"48756":15739,"48757":17631,"48758":15643,"48759":16315,"48760":3176,"48761":12318,"48762":18030,"48763":8725,"48764":2007,"48765":9439,"48766":2841,"48767":16452,"48768":7079,"48769":15258,"48770":17360,"48771":8290,"48772":6062,"48773":1371,"48774":355,"48775":12043,"48776":474,"48777":3629,"48778":13558,"48779":9880,"48780":12323,"48781":18221,"48782":123,"48783":12396,"48784":9703,"48785":7685,"48786":12644,"48787":2754,"48788":6622,"48789":2513,"48790":13419,"48791":9860,"48792":15611,"48793":16920,"48794":13910,"48795":6235,"48796":6304,"48797":159,"48798":1532,"48799":7983,"48800":13966,"48801":11679,"48802":8,"48803":727,"48804":1135,"48805":15545,"48806":14707,"48807":6402,"48808":14073,"48809":5599,"48810":13802,"48811":4698,"48812":2165,"48813":15184,"48814":5302,"48815":8868,"48816":5079,"48817":15349,"48818":452,"48819":14660,"48820":11755,"48821":4039,"48822":9161,"48823":8957,"48824":1129,"48825":16928,"48826":5802,"48827":14556,"48828":3078,"48829":6046,"48830":8280,"48831":4470,"48832":8980,"48833":664,"48834":11197,"48835":17280,"48836":6141,"48837":10630,"48838":14312,"48839":13697,"48840":17627,"48841":12020,"48842":18253,"48843":3502,"48844":16422,"48845":12381,"48846":12778,"48847":1936,"48848":2353,"48849":7772,"48850":3425,"48851":17624,"48852":1312,"48853":6243,"48854":18272,"48855":6490,"48856":18320,"48857":13515,"48858":11910,"48859":16233,"48860":5380,"48861":13886,"48862":16634,"48863":127,"48864":4270,"48865":2735,"48866":7271,"48867":13715,"48868":14076,"48869":3325,"48870":4291,"48871":6426,"48872":12801,"48873":13944,"48874":11314,"48875":2065,"48876":5546,"48877":12743,"48878":8293,"48879":13660,"48880":9884,"48881":16037,"48882":3227,"48883":10987,"48884":2277,"48885":3067,"48886":5057,"48887":1185,"48888":2809,"48889":14831,"48890":1828,"48891":16914,"48892":2924,"48893":6914,"48894":10416,"48895":11015,"48896":12539,"48897":8743,"48898":5709,"48899":9418,"48900":12886,"48901":2059,"48902":16267,"48903":5610,"48904":13276,"48905":13656,"48906":3800,"48907":4755,"48908":3681,"48909":4597,"48910":1378,"48911":15849,"48912":891,"48913":2288,"48914":7842,"48915":10249,"48916":13876,"48917":18160,"48918":8655,"48919":7843,"48920":6235,"48921":15523,"48922":13273,"48923":5742,"48924":17283,"48925":17851,"48926":6834,"48927":14711,"48928":3177,"48929":13298,"48930":9543,"48931":9635,"48932":15112,"48933":13063,"48934":14501,"48935":9224,"48936":7757,"48937":11435,"48938":8029,"48939":13965,"48940":10465,"48941":6177,"48942":14062,"48943":3114,"48944":10294,"48945":5957,"48946":13647,"48947":10790,"48948":8004,"48949":4080,"48950":11872,"48951":15212,"48952":692,"48953":14635,"48954":9104,"48955":13680,"48956":3566,"48957":5431,"48958":6163,"48959":8755,"48960":16674,"48961":15009,"48962":11332,"48963":1525,"48964":3536,"48965":18139,"48966":9713,"48967":1752,"48968":7393,"48969":13971,"48970":3210,"48971":4063,"48972":1540,"48973":14560,"48974":1045,"48975":10439,"48976":2002,"48977":9167,"48978":18297,"48979":14513,"48980":290,"48981":1751,"48982":3813,"48983":16439,"48984":6829,"48985":4458,"48986":17456,"48987":14680,"48988":13051,"48989":13088,"48990":3704,"48991":17280,"48992":14707,"48993":886,"48994":3258,"48995":17381,"48996":17098,"48997":17170,"48998":11525,"48999":2516,"49000":18168,"49001":12977,"49002":8463,"49003":12213,"49004":11713,"49005":6305,"49006":1065,"49007":2867,"49008":11085,"49009":641,"49010":12604,"49011":7593,"49012":6774,"49013":11776,"49014":14555,"49015":649,"49016":1386,"49017":4659,"49018":5834,"49019":7946,"49020":11537,"49021":3102,"49022":6081,"49023":8273,"49024":6934,"49025":4226,"49026":6022,"49027":12913,"49028":10408,"49029":8310,"49030":4548,"49031":16590,"49032":12297,"49033":7815,"49034":6379,"49035":3619,"49036":15462,"49037":5101,"49038":9788,"49039":10430,"49040":2872,"49041":4794,"49042":7829,"49043":11798,"49044":5836,"49045":9999,"49046":17303,"49047":1166,"49048":736,"49049":5421,"49050":761,"49051":7560,"49052":14354,"49053":9833,"49054":10797,"49055":10582,"49056":8651,"49057":331,"49058":11249,"49059":18332,"49060":17842,"49061":14654,"49062":12518,"49063":9217,"49064":1734,"49065":1737,"49066":12698,"49067":9171,"49068":3408,"49069":7265,"49070":9793,"49071":5437,"49072":12192,"49073":6027,"49074":14077,"49075":9416,"49076":14160,"49077":10882,"49078":6839,"49079":1011,"49080":8898,"49081":6074,"49082":6441,"49083":13254,"49084":6549,"49085":9107,"49086":16952,"49087":5972,"49088":8029,"49089":11926,"49090":15480,"49091":4441,"49092":1036,"49093":16152,"49094":8706,"49095":2398,"49096":8136,"49097":9387,"49098":15478,"49099":9594,"49100":14969,"49101":3562,"49102":5434,"49103":6081,"49104":8935,"49105":8227,"49106":18205,"49107":8193,"49108":8018,"49109":13779,"49110":221,"49111":1116,"49112":14175,"49113":6191,"49114":17542,"49115":4629,"49116":17939,"49117":1184,"49118":14605,"49119":15523,"49120":1822,"49121":11112,"49122":4024,"49123":16867,"49124":9592,"49125":2453,"49126":17501,"49127":7360,"49128":8216,"49129":4793,"49130":14397,"49131":10923,"49132":1323,"49133":2389,"49134":343,"49135":8247,"49136":10281,"49137":4768,"49138":8137,"49139":571,"49140":11448,"49141":4668,"49142":6533,"49143":11122,"49144":16655,"49145":10428,"49146":8307,"49147":15989,"49148":9537,"49149":15216,"49150":12309,"49151":17729,"49152":3925,"49153":184,"49154":7373,"49155":7092,"49156":9515,"49157":11543,"49158":16647,"49159":16052,"49160":61,"49161":4292,"49162":2166,"49163":12816,"49164":6350,"49165":14129,"49166":13426,"49167":4769,"49168":6184,"49169":4267,"49170":1846,"49171":17560,"49172":12821,"49173":5537,"49174":8881,"49175":17925,"49176":11033,"49177":452,"49178":10523,"49179":9308,"49180":1370,"49181":13223,"49182":1823,"49183":13193,"49184":15389,"49185":2149,"49186":656,"49187":685,"49188":13998,"49189":14994,"49190":17246,"49191":14492,"49192":9788,"49193":4093,"49194":13663,"49195":2810,"49196":11497,"49197":2241,"49198":9597,"49199":1985,"49200":1351,"49201":17577,"49202":14596,"49203":11392,"49204":13184,"49205":17287,"49206":5752,"49207":14841,"49208":15150,"49209":17932,"49210":3170,"49211":12153,"49212":993,"49213":8906,"49214":10661,"49215":9215,"49216":7033,"49217":2376,"49218":9114,"49219":100,"49220":21,"49221":7733,"49222":13291,"49223":12755,"49224":6556,"49225":6237,"49226":15449,"49227":3420,"49228":16999,"49229":8705,"49230":2147,"49231":16269,"49232":17578,"49233":949,"49234":1464,"49235":16554,"49236":17631,"49237":8953,"49238":3631,"49239":13986,"49240":751,"49241":394,"49242":80,"49243":7430,"49244":1058,"49245":6567,"49246":17661,"49247":9602,"49248":16984,"49249":7214,"49250":7882,"49251":16438,"49252":5397,"49253":9088,"49254":9592,"49255":3236,"49256":13917,"49257":17818,"49258":11202,"49259":12929,"49260":14208,"49261":6487,"49262":8941,"49263":11221,"49264":8976,"49265":12297,"49266":1763,"49267":12629,"49268":13865,"49269":14956,"49270":2208,"49271":6,"49272":3681,"49273":15255,"49274":9617,"49275":7539,"49276":4283,"49277":17307,"49278":7227,"49279":10926,"49280":4100,"49281":14613,"49282":1585,"49283":10259,"49284":2517,"49285":6231,"49286":5396,"49287":12997,"49288":8567,"49289":8200,"49290":4789,"49291":1166,"49292":7807,"49293":8492,"49294":2941,"49295":9348,"49296":3444,"49297":14410,"49298":7181,"49299":17469,"49300":17238,"49301":7408,"49302":11253,"49303":13025,"49304":7025,"49305":7577,"49306":15114,"49307":15793,"49308":14327,"49309":17977,"49310":10826,"49311":9262,"49312":7899,"49313":5835,"49314":15795,"49315":7825,"49316":11516,"49317":4173,"49318":4513,"49319":14707,"49320":12314,"49321":577,"49322":8174,"49323":3308,"49324":7316,"49325":4614,"49326":1214,"49327":14999,"49328":12432,"49329":941,"49330":4543,"49331":3342,"49332":11744,"49333":3510,"49334":8874,"49335":7856,"49336":1022,"49337":7028,"49338":10461,"49339":7019,"49340":5693,"49341":3248,"49342":17251,"49343":14245,"49344":10134,"49345":8527,"49346":14117,"49347":13453,"49348":11983,"49349":10111,"49350":13626,"49351":17423,"49352":7483,"49353":14494,"49354":12891,"49355":1620,"49356":3129,"49357":1950,"49358":9268,"49359":15606,"49360":2388,"49361":9035,"49362":16587,"49363":6266,"49364":4301,"49365":3630,"49366":3823,"49367":15799,"49368":8035,"49369":4017,"49370":9614,"49371":15235,"49372":4177,"49373":13992,"49374":14412,"49375":8075,"49376":13096,"49377":15464,"49378":10432,"49379":4952,"49380":10431,"49381":6724,"49382":4031,"49383":7680,"49384":8400,"49385":7622,"49386":11947,"49387":11704,"49388":12277,"49389":365,"49390":12557,"49391":7642,"49392":11649,"49393":1693,"49394":17164,"49395":9962,"49396":4720,"49397":5219,"49398":12632,"49399":16856,"49400":17316,"49401":6453,"49402":6649,"49403":12248,"49404":13898,"49405":1915,"49406":1587,"49407":16355,"49408":17267,"49409":485,"49410":12090,"49411":611,"49412":4607,"49413":1235,"49414":14902,"49415":4036,"49416":10773,"49417":9345,"49418":11609,"49419":10393,"49420":13095,"49421":8518,"49422":3398,"49423":7716,"49424":5465,"49425":14591,"49426":2358,"49427":17725,"49428":8869,"49429":14072,"49430":8796,"49431":12814,"49432":14848,"49433":11404,"49434":13215,"49435":2876,"49436":2573,"49437":1810,"49438":3918,"49439":10708,"49440":705,"49441":6440,"49442":4796,"49443":11633,"49444":5629,"49445":11519,"49446":10465,"49447":11725,"49448":2193,"49449":7183,"49450":5814,"49451":6865,"49452":90,"49453":11153,"49454":2743,"49455":999,"49456":15052,"49457":5491,"49458":16604,"49459":5477,"49460":13605,"49461":14654,"49462":14179,"49463":15817,"49464":8524,"49465":15421,"49466":17027,"49467":17468,"49468":15603,"49469":16514,"49470":7968,"49471":6456,"49472":10966,"49473":13464,"49474":3541,"49475":17629,"49476":7575,"49477":1915,"49478":2269,"49479":15255,"49480":17259,"49481":2180,"49482":127,"49483":16165,"49484":6243,"49485":17962,"49486":869,"49487":17163,"49488":1957,"49489":13951,"49490":13210,"49491":10802,"49492":4949,"49493":1539,"49494":15471,"49495":12436,"49496":7963,"49497":12087,"49498":9353,"49499":16528,"49500":13979,"49501":9985,"49502":15361,"49503":9104,"49504":1625,"49505":18325,"49506":4767,"49507":11462,"49508":15309,"49509":4131,"49510":18160,"49511":3338,"49512":3405,"49513":5147,"49514":3078,"49515":1428,"49516":14073,"49517":17129,"49518":5147,"49519":13393,"49520":10642,"49521":9245,"49522":8885,"49523":375,"49524":11919,"49525":13384,"49526":6858,"49527":13886,"49528":9379,"49529":2153,"49530":10283,"49531":11739,"49532":9886,"49533":17822,"49534":841,"49535":6873,"49536":6296,"49537":2402,"49538":17064,"49539":11838,"49540":14138,"49541":14393,"49542":7212,"49543":17359,"49544":7272,"49545":12800,"49546":8899,"49547":10089,"49548":5863,"49549":840,"49550":7094,"49551":899,"49552":15677,"49553":11847,"49554":16545,"49555":17283,"49556":13634,"49557":684,"49558":4675,"49559":15435,"49560":13889,"49561":6773,"49562":18184,"49563":3473,"49564":4769,"49565":7890,"49566":9690,"49567":2525,"49568":12330,"49569":4787,"49570":17807,"49571":15627,"49572":4118,"49573":2338,"49574":6908,"49575":14504,"49576":2816,"49577":15073,"49578":3328,"49579":17637,"49580":13007,"49581":9385,"49582":17047,"49583":10490,"49584":2981,"49585":347,"49586":11805,"49587":13230,"49588":14667,"49589":15173,"49590":6808,"49591":14919,"49592":13010,"49593":5660,"49594":16662,"49595":5107,"49596":13595,"49597":3878,"49598":7463,"49599":5414,"49600":4641,"49601":8772,"49602":11904,"49603":11216,"49604":3816,"49605":6973,"49606":11494,"49607":16006,"49608":10408,"49609":17982,"49610":10155,"49611":1938,"49612":15788,"49613":11251,"49614":3443,"49615":15417,"49616":13804,"49617":10817,"49618":5926,"49619":13082,"49620":15509,"49621":17035,"49622":10080,"49623":14806,"49624":8192,"49625":16184,"49626":16717,"49627":5592,"49628":2461,"49629":4695,"49630":16683,"49631":17082,"49632":11278,"49633":7365,"49634":3932,"49635":16566,"49636":38,"49637":12334,"49638":10078,"49639":11461,"49640":5252,"49641":16125,"49642":2015,"49643":9888,"49644":10495,"49645":3608,"49646":13593,"49647":4372,"49648":9973,"49649":16762,"49650":1020,"49651":17617,"49652":11714,"49653":10362,"49654":13767,"49655":6663,"49656":7221,"49657":2592,"49658":15928,"49659":6170,"49660":14826,"49661":3080,"49662":12066,"49663":16619,"49664":6079,"49665":604,"49666":11030,"49667":11149,"49668":1633,"49669":4872,"49670":3091,"49671":9571,"49672":3678,"49673":10713,"49674":16300,"49675":14817,"49676":9432,"49677":4167,"49678":15,"49679":9327,"49680":2105,"49681":12200,"49682":2746,"49683":1342,"49684":12221,"49685":10868,"49686":12320,"49687":15764,"49688":11189,"49689":12541,"49690":12658,"49691":8235,"49692":4087,"49693":13914,"49694":10570,"49695":811,"49696":17070,"49697":9361,"49698":9329,"49699":17324,"49700":3316,"49701":3442,"49702":10014,"49703":2548,"49704":2720,"49705":4546,"49706":5758,"49707":14131,"49708":10538,"49709":14128,"49710":18302,"49711":15453,"49712":9848,"49713":516,"49714":12499,"49715":11219,"49716":13511,"49717":10472,"49718":7968,"49719":3314,"49720":13979,"49721":15075,"49722":1635,"49723":2869,"49724":15233,"49725":5833,"49726":1062,"49727":12172,"49728":782,"49729":5352,"49730":1781,"49731":1905,"49732":14714,"49733":5536,"49734":13589,"49735":5894,"49736":4420,"49737":8745,"49738":8700,"49739":1818,"49740":10389,"49741":16302,"49742":11302,"49743":9453,"49744":1956,"49745":16045,"49746":3219,"49747":1069,"49748":10809,"49749":17643,"49750":17561,"49751":2702,"49752":8356,"49753":2335,"49754":8062,"49755":15394,"49756":5009,"49757":12980,"49758":10765,"49759":14352,"49760":9308,"49761":18145,"49762":1115,"49763":6512,"49764":18204,"49765":6224,"49766":15785,"49767":17051,"49768":7083,"49769":14478,"49770":202,"49771":12656,"49772":14586,"49773":4923,"49774":13786,"49775":15376,"49776":11076,"49777":13595,"49778":18192,"49779":10021,"49780":11063,"49781":16042,"49782":15594,"49783":5807,"49784":4026,"49785":3072,"49786":16220,"49787":8347,"49788":7417,"49789":10502,"49790":1320,"49791":1878,"49792":15087,"49793":3740,"49794":842,"49795":18298,"49796":9434,"49797":13108,"49798":1372,"49799":13282,"49800":1487,"49801":2668,"49802":17868,"49803":8888,"49804":7550,"49805":5479,"49806":1598,"49807":1766,"49808":13939,"49809":12591,"49810":1038,"49811":3049,"49812":12176,"49813":6767,"49814":1698,"49815":16245,"49816":11133,"49817":9795,"49818":2208,"49819":11713,"49820":15357,"49821":239,"49822":1105,"49823":2543,"49824":13374,"49825":7642,"49826":8312,"49827":16234,"49828":17354,"49829":13380,"49830":12570,"49831":2203,"49832":12489,"49833":439,"49834":8693,"49835":3084,"49836":9483,"49837":7171,"49838":12892,"49839":6326,"49840":820,"49841":8031,"49842":5844,"49843":12233,"49844":3333,"49845":10419,"49846":13581,"49847":3419,"49848":9749,"49849":6069,"49850":17224,"49851":8835,"49852":10834,"49853":2794,"49854":6836,"49855":17560,"49856":11752,"49857":13944,"49858":17519,"49859":10573,"49860":13083,"49861":12836,"49862":4639,"49863":12711,"49864":2483,"49865":12312,"49866":6112,"49867":9142,"49868":7338,"49869":5370,"49870":12324,"49871":11266,"49872":3777,"49873":9500,"49874":2972,"49875":12485,"49876":2020,"49877":627,"49878":11716,"49879":5152,"49880":13195,"49881":11444,"49882":11505,"49883":8048,"49884":14921,"49885":5929,"49886":13612,"49887":3383,"49888":16898,"49889":8645,"49890":1690,"49891":1162,"49892":17779,"49893":7939,"49894":949,"49895":4562,"49896":5069,"49897":17687,"49898":9919,"49899":10391,"49900":110,"49901":2062,"49902":7748,"49903":1329,"49904":3828,"49905":2019,"49906":4356,"49907":16064,"49908":16784,"49909":5600,"49910":15161,"49911":6551,"49912":2297,"49913":8086,"49914":11939,"49915":8166,"49916":2335,"49917":10118,"49918":5371,"49919":14170,"49920":1070,"49921":7822,"49922":17753,"49923":17959,"49924":17919,"49925":14902,"49926":6692,"49927":15325,"49928":3920,"49929":4106,"49930":13906,"49931":17703,"49932":2926,"49933":16404,"49934":17246,"49935":8256,"49936":9417,"49937":7066,"49938":3859,"49939":13988,"49940":6711,"49941":18201,"49942":17001,"49943":6346,"49944":17835,"49945":5725,"49946":15143,"49947":1314,"49948":4824,"49949":6304,"49950":180,"49951":8241,"49952":12687,"49953":12421,"49954":18197,"49955":4243,"49956":5553,"49957":15588,"49958":2280,"49959":12081,"49960":6684,"49961":11613,"49962":2593,"49963":6008,"49964":9583,"49965":17427,"49966":14373,"49967":3710,"49968":12299,"49969":1953,"49970":4985,"49971":15502,"49972":11744,"49973":3366,"49974":4203,"49975":15335,"49976":4291,"49977":10394,"49978":5097,"49979":646,"49980":358,"49981":4928,"49982":3496,"49983":31,"49984":7593,"49985":15718,"49986":5673,"49987":16570,"49988":2452,"49989":12341,"49990":4953,"49991":6918,"49992":1130,"49993":1226,"49994":4892,"49995":13995,"49996":4818,"49997":6985,"49998":7508,"49999":2266,"50000":12118,"50001":5344,"50002":3212,"50003":10714,"50004":12041,"50005":16258,"50006":2901,"50007":5878,"50008":3448,"50009":8002,"50010":10058,"50011":12119,"50012":4632,"50013":12615,"50014":11394,"50015":4468,"50016":17251,"50017":18151,"50018":6452,"50019":8626,"50020":15955,"50021":2556,"50022":14721,"50023":4011,"50024":17892,"50025":9,"50026":6434,"50027":17287,"50028":14758,"50029":1834,"50030":11210,"50031":13111,"50032":13122,"50033":17113,"50034":312,"50035":18251,"50036":7332,"50037":18357,"50038":28,"50039":5998,"50040":9202,"50041":17832,"50042":11329,"50043":17678,"50044":7565,"50045":15285,"50046":583,"50047":2088,"50048":1138,"50049":8484,"50050":17106,"50051":17801,"50052":11182,"50053":15438,"50054":6024,"50055":9436,"50056":2148,"50057":10178,"50058":3140,"50059":7444,"50060":17801,"50061":12827,"50062":10602,"50063":9673,"50064":4667,"50065":11467,"50066":5140,"50067":14479,"50068":3907,"50069":6482,"50070":11625,"50071":10439,"50072":7511,"50073":9701,"50074":11705,"50075":15264,"50076":15738,"50077":8585,"50078":3125,"50079":1183,"50080":822,"50081":11516,"50082":8326,"50083":9497,"50084":15541,"50085":5674,"50086":8458,"50087":7532,"50088":4899,"50089":16838,"50090":10684,"50091":1339,"50092":10899,"50093":6722,"50094":1439,"50095":6282,"50096":13731,"50097":13053,"50098":9434,"50099":8205,"50100":322,"50101":736,"50102":8562,"50103":13406,"50104":11807,"50105":3614,"50106":4975,"50107":17454,"50108":9628,"50109":2865,"50110":11738,"50111":2267,"50112":11447,"50113":13880,"50114":13637,"50115":6946,"50116":12451,"50117":13275,"50118":17280,"50119":7288,"50120":16833,"50121":8595,"50122":7975,"50123":2573,"50124":16235,"50125":179,"50126":2372,"50127":18142,"50128":10691,"50129":4058,"50130":16312,"50131":8729,"50132":4626,"50133":10922,"50134":8323,"50135":15716,"50136":12726,"50137":16539,"50138":17387,"50139":15706,"50140":5349,"50141":6502,"50142":13251,"50143":2728,"50144":16631,"50145":2069,"50146":17601,"50147":1083,"50148":3373,"50149":11584,"50150":10636,"50151":18280,"50152":6586,"50153":10778,"50154":2146,"50155":1039,"50156":14885,"50157":5408,"50158":2474,"50159":13397,"50160":11347,"50161":5444,"50162":9101,"50163":12132,"50164":7409,"50165":11124,"50166":16166,"50167":17311,"50168":761,"50169":11096,"50170":9200,"50171":1533,"50172":16268,"50173":11526,"50174":12623,"50175":11148,"50176":12661,"50177":6754,"50178":13499,"50179":2271,"50180":16476,"50181":879,"50182":7571,"50183":1352,"50184":14194,"50185":15945,"50186":8327,"50187":2900,"50188":818,"50189":4647,"50190":11236,"50191":3885,"50192":13571,"50193":12390,"50194":11297,"50195":14554,"50196":8412,"50197":2149,"50198":11868,"50199":16252,"50200":5290,"50201":8198,"50202":8658,"50203":7361,"50204":5808,"50205":5919,"50206":15322,"50207":6621,"50208":10144,"50209":5426,"50210":2466,"50211":17108,"50212":3754,"50213":5428,"50214":4651,"50215":12371,"50216":5229,"50217":10653,"50218":10470,"50219":11257,"50220":9821,"50221":7045,"50222":122,"50223":10361,"50224":2389,"50225":9503,"50226":12468,"50227":14387,"50228":9349,"50229":11322,"50230":11100,"50231":15021,"50232":1566,"50233":12175,"50234":14772,"50235":4788,"50236":12131,"50237":13287,"50238":16423,"50239":13527,"50240":5249,"50241":3796,"50242":367,"50243":2858,"50244":15814,"50245":17598,"50246":16397,"50247":9432,"50248":17591,"50249":17035,"50250":15636,"50251":17371,"50252":10257,"50253":789,"50254":793,"50255":1506,"50256":15960,"50257":17668,"50258":8241,"50259":8593,"50260":15665,"50261":13272,"50262":4572,"50263":7563,"50264":5081,"50265":10321,"50266":3816,"50267":6734,"50268":12490,"50269":8022,"50270":12664,"50271":7098,"50272":17663,"50273":2520,"50274":10164,"50275":2752,"50276":5922,"50277":16909,"50278":6481,"50279":179,"50280":18264,"50281":9515,"50282":7619,"50283":1716,"50284":3233,"50285":2495,"50286":2945,"50287":6184,"50288":8473,"50289":5860,"50290":322,"50291":6197,"50292":7295,"50293":4962,"50294":5275,"50295":2878,"50296":2534,"50297":5216,"50298":1335,"50299":4464,"50300":12658,"50301":2286,"50302":5974,"50303":11343,"50304":1531,"50305":11284,"50306":13633,"50307":10145,"50308":3674,"50309":15085,"50310":7090,"50311":8451,"50312":14862,"50313":4669,"50314":5906,"50315":17201,"50316":10929,"50317":13758,"50318":11945,"50319":10376,"50320":13953,"50321":9931,"50322":5699,"50323":16224,"50324":6963,"50325":7485,"50326":7498,"50327":12277,"50328":5914,"50329":12569,"50330":5739,"50331":18231,"50332":305,"50333":5199,"50334":7278,"50335":10221,"50336":4475,"50337":6544,"50338":7896,"50339":11256,"50340":3454,"50341":3906,"50342":2480,"50343":16388,"50344":14043,"50345":17451,"50346":13944,"50347":9754,"50348":1502,"50349":13757,"50350":5530,"50351":5749,"50352":12979,"50353":14866,"50354":14951,"50355":17191,"50356":7328,"50357":11967,"50358":6271,"50359":6329,"50360":8313,"50361":13015,"50362":1784,"50363":9199,"50364":2830,"50365":11499,"50366":11000,"50367":10164,"50368":11754,"50369":11750,"50370":9966,"50371":10826,"50372":17188,"50373":6792,"50374":14721,"50375":176,"50376":11685,"50377":11820,"50378":14480,"50379":13740,"50380":16341,"50381":7303,"50382":625,"50383":1663,"50384":711,"50385":17909,"50386":14267,"50387":4673,"50388":10127,"50389":16262,"50390":16126,"50391":3970,"50392":6991,"50393":16865,"50394":6762,"50395":16044,"50396":1149,"50397":6719,"50398":5149,"50399":5327,"50400":4865,"50401":18315,"50402":1537,"50403":9297,"50404":6419,"50405":4630,"50406":6520,"50407":3714,"50408":1943,"50409":5184,"50410":5180,"50411":15327,"50412":9301,"50413":18098,"50414":6786,"50415":4551,"50416":6431,"50417":3419,"50418":5804,"50419":2577,"50420":15598,"50421":14530,"50422":9841,"50423":5858,"50424":13487,"50425":7990,"50426":13594,"50427":1872,"50428":8330,"50429":18002,"50430":17326,"50431":8755,"50432":935,"50433":13184,"50434":10372,"50435":12151,"50436":12992,"50437":1868,"50438":1225,"50439":7757,"50440":3977,"50441":10689,"50442":14672,"50443":6987,"50444":5402,"50445":1964,"50446":9274,"50447":16063,"50448":793,"50449":14394,"50450":8316,"50451":13806,"50452":6318,"50453":11560,"50454":3942,"50455":240,"50456":5360,"50457":297,"50458":1708,"50459":3723,"50460":5751,"50461":18229,"50462":13261,"50463":7545,"50464":7155,"50465":10539,"50466":3444,"50467":118,"50468":4598,"50469":1152,"50470":12991,"50471":9628,"50472":8450,"50473":8266,"50474":10999,"50475":15759,"50476":2310,"50477":592,"50478":3300,"50479":15014,"50480":7790,"50481":11735,"50482":12822,"50483":2491,"50484":15447,"50485":17221,"50486":17205,"50487":17068,"50488":5507,"50489":13538,"50490":14809,"50491":12838,"50492":10509,"50493":5682,"50494":4469,"50495":14540,"50496":3758,"50497":16357,"50498":1230,"50499":15694,"50500":4990,"50501":9459,"50502":15812,"50503":2003,"50504":13491,"50505":16595,"50506":9317,"50507":1809,"50508":8977,"50509":13372,"50510":14219,"50511":9502,"50512":15357,"50513":9758,"50514":6727,"50515":10609,"50516":2499,"50517":14835,"50518":7021,"50519":1444,"50520":18224,"50521":389,"50522":12434,"50523":654,"50524":14566,"50525":17310,"50526":15255,"50527":16759,"50528":16149,"50529":8442,"50530":6563,"50531":6148,"50532":8176,"50533":7773,"50534":4368,"50535":4466,"50536":5910,"50537":11910,"50538":15533,"50539":2954,"50540":10049,"50541":15213,"50542":5056,"50543":4093,"50544":12816,"50545":5154,"50546":5258,"50547":9663,"50548":11183,"50549":15954,"50550":14692,"50551":10902,"50552":11631,"50553":126,"50554":9903,"50555":4683,"50556":11144,"50557":4723,"50558":9787,"50559":12925,"50560":16034,"50561":13710,"50562":16421,"50563":477,"50564":7696,"50565":15944,"50566":6765,"50567":8841,"50568":14053,"50569":16202,"50570":17607,"50571":8947,"50572":3197,"50573":13895,"50574":16431,"50575":11534,"50576":15515,"50577":17546,"50578":16367,"50579":3880,"50580":9376,"50581":14188,"50582":15097,"50583":14360,"50584":3122,"50585":221,"50586":10458,"50587":12759,"50588":3234,"50589":17131,"50590":9386,"50591":1820,"50592":371,"50593":5042,"50594":3799,"50595":14347,"50596":6225,"50597":8944,"50598":18035,"50599":4923,"50600":7317,"50601":2786,"50602":1097,"50603":10828,"50604":9036,"50605":17005,"50606":10952,"50607":17907,"50608":6681,"50609":17347,"50610":14626,"50611":10310,"50612":4683,"50613":12516,"50614":14099,"50615":14500,"50616":6340,"50617":16497,"50618":12946,"50619":6242,"50620":7315,"50621":5439,"50622":14552,"50623":4339,"50624":14316,"50625":11317,"50626":16682,"50627":15768,"50628":4522,"50629":17642,"50630":12657,"50631":9944,"50632":3272,"50633":15999,"50634":15127,"50635":2036,"50636":6277,"50637":12530,"50638":1347,"50639":9270,"50640":12207,"50641":1755,"50642":15733,"50643":7399,"50644":4933,"50645":16095,"50646":1940,"50647":3657,"50648":5654,"50649":9577,"50650":15307,"50651":5072,"50652":14740,"50653":5825,"50654":12534,"50655":14112,"50656":17293,"50657":1947,"50658":3688,"50659":1660,"50660":15627,"50661":7003,"50662":14646,"50663":9374,"50664":17603,"50665":11567,"50666":14789,"50667":8642,"50668":14199,"50669":12414,"50670":3825,"50671":3125,"50672":1788,"50673":17801,"50674":13581,"50675":6940,"50676":6868,"50677":13625,"50678":11555,"50679":15396,"50680":8262,"50681":3675,"50682":18000,"50683":16453,"50684":13835,"50685":11629,"50686":5879,"50687":14765,"50688":8871,"50689":2205,"50690":702,"50691":9658,"50692":6482,"50693":4670,"50694":14899,"50695":12788,"50696":363,"50697":9711,"50698":15062,"50699":592,"50700":13118,"50701":17971,"50702":18234,"50703":17782,"50704":7425,"50705":14488,"50706":11255,"50707":9599,"50708":12673,"50709":14854,"50710":11748,"50711":14321,"50712":9962,"50713":12076,"50714":6567,"50715":2911,"50716":14455,"50717":4901,"50718":13379,"50719":4334,"50720":5730,"50721":2675,"50722":5116,"50723":7499,"50724":12870,"50725":10858,"50726":13092,"50727":5605,"50728":9275,"50729":10616,"50730":3667,"50731":14720,"50732":16799,"50733":16460,"50734":12881,"50735":3448,"50736":16418,"50737":16270,"50738":16282,"50739":1400,"50740":5803,"50741":6343,"50742":2169,"50743":3820,"50744":10780,"50745":7581,"50746":2382,"50747":16633,"50748":13305,"50749":9833,"50750":13309,"50751":3910,"50752":10347,"50753":4188,"50754":16083,"50755":3696,"50756":13490,"50757":17941,"50758":2301,"50759":4017,"50760":5198,"50761":17295,"50762":17864,"50763":2708,"50764":9142,"50765":8613,"50766":16845,"50767":2315,"50768":7804,"50769":251,"50770":582,"50771":16074,"50772":3343,"50773":8102,"50774":16742,"50775":33,"50776":14985,"50777":16495,"50778":16415,"50779":16925,"50780":9023,"50781":7840,"50782":5668,"50783":741,"50784":12588,"50785":11205,"50786":17673,"50787":12368,"50788":10940,"50789":8863,"50790":13902,"50791":11488,"50792":3614,"50793":5680,"50794":7447,"50795":13093,"50796":6216,"50797":13622,"50798":3113,"50799":16800,"50800":12392,"50801":8207,"50802":17531,"50803":12640,"50804":12333,"50805":1472,"50806":17983,"50807":13247,"50808":15688,"50809":12265,"50810":4335,"50811":12485,"50812":1286,"50813":5067,"50814":6123,"50815":3684,"50816":13376,"50817":804,"50818":13941,"50819":11751,"50820":1346,"50821":16741,"50822":1421,"50823":14171,"50824":13626,"50825":2235,"50826":8161,"50827":4489,"50828":11098,"50829":1424,"50830":13167,"50831":13176,"50832":11524,"50833":11200,"50834":2421,"50835":742,"50836":9422,"50837":15974,"50838":5148,"50839":17164,"50840":18330,"50841":11592,"50842":18057,"50843":10826,"50844":4247,"50845":3249,"50846":2,"50847":10361,"50848":8059,"50849":7429,"50850":9834,"50851":6556,"50852":12695,"50853":8853,"50854":1253,"50855":2588,"50856":11741,"50857":17827,"50858":8472,"50859":11600,"50860":8367,"50861":14749,"50862":17225,"50863":11301,"50864":11217,"50865":1417,"50866":11288,"50867":6139,"50868":2853,"50869":4599,"50870":10060,"50871":9303,"50872":18360,"50873":14766,"50874":9762,"50875":15825,"50876":7944,"50877":15306,"50878":1908,"50879":208,"50880":6375,"50881":8525,"50882":10677,"50883":3662,"50884":9856,"50885":15853,"50886":6620,"50887":15003,"50888":14214,"50889":401,"50890":15418,"50891":6846,"50892":3647,"50893":2092,"50894":17074,"50895":4217,"50896":7963,"50897":3022,"50898":8541,"50899":11551,"50900":2137,"50901":242,"50902":1834,"50903":4643,"50904":3662,"50905":10350,"50906":1333,"50907":15993,"50908":4024,"50909":14974,"50910":14049,"50911":10841,"50912":4056,"50913":1741,"50914":2468,"50915":6914,"50916":9547,"50917":6055,"50918":1712,"50919":5910,"50920":7952,"50921":4205,"50922":8672,"50923":4320,"50924":15713,"50925":12335,"50926":18147,"50927":3583,"50928":17680,"50929":14910,"50930":9230,"50931":8920,"50932":13009,"50933":17049,"50934":1918,"50935":7990,"50936":8056,"50937":794,"50938":11414,"50939":7203,"50940":18016,"50941":1953,"50942":11192,"50943":4785,"50944":3799,"50945":11000,"50946":8444,"50947":2008,"50948":14495,"50949":11038,"50950":6783,"50951":14395,"50952":527,"50953":8266,"50954":12441,"50955":2631,"50956":3456,"50957":1641,"50958":12975,"50959":5329,"50960":9338,"50961":11728,"50962":17025,"50963":7031,"50964":1132,"50965":8955,"50966":14474,"50967":4232,"50968":3422,"50969":17430,"50970":4694,"50971":4905,"50972":1090,"50973":13665,"50974":14461,"50975":1797,"50976":13476,"50977":10729,"50978":2378,"50979":7554,"50980":14617,"50981":6718,"50982":15854,"50983":16795,"50984":17729,"50985":10490,"50986":13928,"50987":1132,"50988":8875,"50989":17001,"50990":4379,"50991":1761,"50992":11630,"50993":15029,"50994":12859,"50995":6992,"50996":2670,"50997":14286,"50998":12869,"50999":8026,"51000":1840,"51001":5665,"51002":12793,"51003":13205,"51004":5066,"51005":10274,"51006":13799,"51007":15040,"51008":14381,"51009":9011,"51010":3631,"51011":10852,"51012":8675,"51013":17371,"51014":9807,"51015":13999,"51016":8321,"51017":14397,"51018":4369,"51019":9313,"51020":12332,"51021":9934,"51022":5066,"51023":13551,"51024":9644,"51025":12438,"51026":4135,"51027":910,"51028":8474,"51029":15346,"51030":8738,"51031":698,"51032":3499,"51033":7162,"51034":6416,"51035":17331,"51036":15009,"51037":1894,"51038":4688,"51039":6998,"51040":12857,"51041":13779,"51042":3546,"51043":15500,"51044":10082,"51045":8630,"51046":6983,"51047":18113,"51048":9764,"51049":5129,"51050":1139,"51051":6115,"51052":10013,"51053":3690,"51054":14450,"51055":13106,"51056":4396,"51057":10705,"51058":9558,"51059":12500,"51060":11100,"51061":589,"51062":3655,"51063":5250,"51064":12029,"51065":7865,"51066":4804,"51067":4231,"51068":14190,"51069":15730,"51070":5291,"51071":16308,"51072":2051,"51073":16238,"51074":7957,"51075":13409,"51076":11435,"51077":836,"51078":9456,"51079":9769,"51080":2428,"51081":8124,"51082":4860,"51083":17965,"51084":8806,"51085":13843,"51086":15320,"51087":13433,"51088":4952,"51089":1190,"51090":1716,"51091":833,"51092":9960,"51093":12345,"51094":14169,"51095":17090,"51096":7352,"51097":11816,"51098":305,"51099":3380,"51100":17504,"51101":16350,"51102":4217,"51103":2368,"51104":298,"51105":14893,"51106":10788,"51107":5340,"51108":12492,"51109":17554,"51110":6818,"51111":6591,"51112":13295,"51113":9067,"51114":5237,"51115":7344,"51116":14328,"51117":16735,"51118":16356,"51119":1684,"51120":16808,"51121":9821,"51122":16008,"51123":1316,"51124":2923,"51125":2270,"51126":6105,"51127":17031,"51128":14251,"51129":12710,"51130":12343,"51131":10174,"51132":11235,"51133":10345,"51134":14342,"51135":14061,"51136":8286,"51137":13655,"51138":10865,"51139":13005,"51140":4828,"51141":11370,"51142":5320,"51143":13179,"51144":12047,"51145":1862,"51146":15996,"51147":6784,"51148":5562,"51149":9031,"51150":9129,"51151":16622,"51152":13818,"51153":847,"51154":10760,"51155":2280,"51156":17441,"51157":2434,"51158":15271,"51159":14432,"51160":13085,"51161":9714,"51162":16537,"51163":7244,"51164":8804,"51165":15773,"51166":9265,"51167":2466,"51168":6687,"51169":4522,"51170":5355,"51171":13495,"51172":10672,"51173":259,"51174":12985,"51175":15104,"51176":11753,"51177":15715,"51178":11776,"51179":1494,"51180":1550,"51181":12233,"51182":13962,"51183":13741,"51184":5327,"51185":3141,"51186":16250,"51187":18314,"51188":3378,"51189":12416,"51190":9633,"51191":1893,"51192":1582,"51193":16196,"51194":7915,"51195":3291,"51196":11599,"51197":15791,"51198":6005,"51199":10247,"51200":8948,"51201":7863,"51202":16197,"51203":15385,"51204":15727,"51205":6742,"51206":11768,"51207":14962,"51208":14811,"51209":2756,"51210":6426,"51211":14373,"51212":15023,"51213":9707,"51214":6578,"51215":1122,"51216":5742,"51217":12610,"51218":7820,"51219":1244,"51220":12482,"51221":4099,"51222":6916,"51223":3766,"51224":5410,"51225":18324,"51226":5057,"51227":13857,"51228":1158,"51229":1094,"51230":7192,"51231":13854,"51232":11403,"51233":866,"51234":4418,"51235":14925,"51236":15504,"51237":9826,"51238":6962,"51239":15030,"51240":17240,"51241":16625,"51242":17101,"51243":2529,"51244":15358,"51245":14434,"51246":4105,"51247":18045,"51248":12430,"51249":9662,"51250":17771,"51251":8476,"51252":18294,"51253":11701,"51254":6180,"51255":13181,"51256":13695,"51257":8329,"51258":5384,"51259":8688,"51260":12288,"51261":6294,"51262":4417,"51263":4061,"51264":5953,"51265":11349,"51266":17114,"51267":7571,"51268":5672,"51269":10767,"51270":14731,"51271":12172,"51272":14986,"51273":5913,"51274":11291,"51275":2832,"51276":7347,"51277":1347,"51278":13931,"51279":9122,"51280":10203,"51281":12195,"51282":18352,"51283":15000,"51284":3917,"51285":3526,"51286":7251,"51287":2345,"51288":380,"51289":1681,"51290":4328,"51291":16142,"51292":9300,"51293":2971,"51294":6887,"51295":10440,"51296":7241,"51297":3537,"51298":18207,"51299":5034,"51300":17795,"51301":7033,"51302":11065,"51303":3970,"51304":167,"51305":1277,"51306":15271,"51307":11069,"51308":7485,"51309":10899,"51310":1664,"51311":14771,"51312":14508,"51313":11935,"51314":5855,"51315":16740,"51316":2995,"51317":15784,"51318":6605,"51319":11671,"51320":6667,"51321":13121,"51322":14627,"51323":4283,"51324":8588,"51325":15798,"51326":5470,"51327":12030,"51328":1522,"51329":6588,"51330":7661,"51331":8232,"51332":1006,"51333":18306,"51334":2881,"51335":2356,"51336":8951,"51337":7723,"51338":12977,"51339":17418,"51340":4773,"51341":18098,"51342":16475,"51343":6258,"51344":294,"51345":17697,"51346":1543,"51347":10927,"51348":7980,"51349":3552,"51350":2374,"51351":17672,"51352":2731,"51353":4335,"51354":327,"51355":7135,"51356":14262,"51357":3417,"51358":6713,"51359":107,"51360":7602,"51361":8855,"51362":349,"51363":18263,"51364":17368,"51365":17069,"51366":11679,"51367":14265,"51368":13900,"51369":1977,"51370":2029,"51371":11050,"51372":12688,"51373":10329,"51374":14376,"51375":14826,"51376":6435,"51377":8811,"51378":13210,"51379":4216,"51380":39,"51381":11298,"51382":11620,"51383":15077,"51384":17833,"51385":9652,"51386":5173,"51387":4033,"51388":16284,"51389":7221,"51390":7396,"51391":17859,"51392":2897,"51393":16222,"51394":11533,"51395":1968,"51396":379,"51397":10012,"51398":16013,"51399":15469,"51400":5851,"51401":8935,"51402":3546,"51403":15264,"51404":9637,"51405":514,"51406":3809,"51407":15496,"51408":16915,"51409":3418,"51410":12838,"51411":11753,"51412":2366,"51413":12425,"51414":11881,"51415":14954,"51416":7329,"51417":12493,"51418":16616,"51419":379,"51420":14880,"51421":6903,"51422":1245,"51423":4827,"51424":6902,"51425":229,"51426":1651,"51427":17846,"51428":2050,"51429":14832,"51430":3243,"51431":17762,"51432":6740,"51433":5309,"51434":9061,"51435":7429,"51436":10259,"51437":4078,"51438":13441,"51439":10196,"51440":8888,"51441":13296,"51442":3940,"51443":1867,"51444":11307,"51445":14030,"51446":14477,"51447":3235,"51448":15725,"51449":16114,"51450":8090,"51451":8962,"51452":13697,"51453":7559,"51454":2523,"51455":15027,"51456":10655,"51457":8314,"51458":5786,"51459":7974,"51460":13260,"51461":14547,"51462":12090,"51463":584,"51464":7282,"51465":14965,"51466":726,"51467":4434,"51468":7204,"51469":16576,"51470":5770,"51471":8126,"51472":10618,"51473":2343,"51474":6389,"51475":3584,"51476":3104,"51477":6645,"51478":17585,"51479":14547,"51480":16232,"51481":13319,"51482":16891,"51483":8239,"51484":13406,"51485":8648,"51486":17382,"51487":844,"51488":9678,"51489":2893,"51490":12498,"51491":15294,"51492":37,"51493":3345,"51494":885,"51495":291,"51496":16590,"51497":1939,"51498":14745,"51499":18198,"51500":8479,"51501":14180,"51502":15736,"51503":7691,"51504":5318,"51505":2456,"51506":2447,"51507":1442,"51508":14408,"51509":11462,"51510":1853,"51511":9570,"51512":10201,"51513":15670,"51514":7884,"51515":16472,"51516":6796,"51517":2078,"51518":8431,"51519":10447,"51520":8582,"51521":14083,"51522":11331,"51523":12138,"51524":13055,"51525":13957,"51526":8739,"51527":1304,"51528":16391,"51529":1426,"51530":2701,"51531":6023,"51532":9808,"51533":17042,"51534":15057,"51535":10003,"51536":10615,"51537":1802,"51538":2556,"51539":8883,"51540":6021,"51541":16887,"51542":264,"51543":15430,"51544":10575,"51545":16771,"51546":18112,"51547":1466,"51548":12376,"51549":3353,"51550":2362,"51551":496,"51552":15326,"51553":10202,"51554":5489,"51555":1886,"51556":8071,"51557":1946,"51558":7207,"51559":6677,"51560":1960,"51561":4166,"51562":1214,"51563":6041,"51564":5722,"51565":5276,"51566":2848,"51567":11680,"51568":1383,"51569":1749,"51570":11150,"51571":3049,"51572":5793,"51573":16498,"51574":18161,"51575":2322,"51576":3083,"51577":4327,"51578":14544,"51579":9164,"51580":1820,"51581":11558,"51582":11520,"51583":7448,"51584":11012,"51585":5235,"51586":831,"51587":11296,"51588":17523,"51589":5742,"51590":8635,"51591":1305,"51592":10687,"51593":1598,"51594":12695,"51595":15505,"51596":13728,"51597":1208,"51598":2995,"51599":10443,"51600":735,"51601":3831,"51602":16254,"51603":18316,"51604":15262,"51605":5674,"51606":10994,"51607":14232,"51608":7174,"51609":8084,"51610":8788,"51611":6885,"51612":13012,"51613":14488,"51614":7278,"51615":6222,"51616":15953,"51617":1628,"51618":13148,"51619":2348,"51620":10046,"51621":6447,"51622":7348,"51623":7288,"51624":3437,"51625":10445,"51626":15001,"51627":5430,"51628":2827,"51629":2706,"51630":16765,"51631":14473,"51632":10897,"51633":14223,"51634":6260,"51635":15331,"51636":17520,"51637":13838,"51638":15612,"51639":15886,"51640":14430,"51641":15521,"51642":7191,"51643":12947,"51644":6559,"51645":17684,"51646":334,"51647":10492,"51648":8568,"51649":1348,"51650":15789,"51651":12846,"51652":16328,"51653":10310,"51654":16932,"51655":16158,"51656":3706,"51657":2146,"51658":10566,"51659":1499,"51660":2937,"51661":7123,"51662":5219,"51663":3599,"51664":6794,"51665":9977,"51666":18055,"51667":2477,"51668":9732,"51669":9011,"51670":5618,"51671":960,"51672":16314,"51673":8265,"51674":5123,"51675":7363,"51676":12796,"51677":5952,"51678":1269,"51679":3041,"51680":2364,"51681":5873,"51682":10974,"51683":9662,"51684":9332,"51685":7347,"51686":4942,"51687":17119,"51688":3771,"51689":3298,"51690":14683,"51691":6096,"51692":8914,"51693":11700,"51694":18135,"51695":1725,"51696":16704,"51697":12757,"51698":1497,"51699":13383,"51700":6587,"51701":812,"51702":15141,"51703":9250,"51704":11581,"51705":16140,"51706":3454,"51707":1013,"51708":9149,"51709":16199,"51710":16673,"51711":4581,"51712":17375,"51713":4636,"51714":10472,"51715":9232,"51716":6125,"51717":2054,"51718":13176,"51719":293,"51720":9472,"51721":15241,"51722":15688,"51723":2173,"51724":16968,"51725":416,"51726":13686,"51727":4737,"51728":6047,"51729":13582,"51730":8264,"51731":17150,"51732":653,"51733":17886,"51734":11367,"51735":3246,"51736":3599,"51737":13491,"51738":11821,"51739":1874,"51740":10901,"51741":7334,"51742":13699,"51743":15542,"51744":897,"51745":2110,"51746":7299,"51747":1864,"51748":8304,"51749":327,"51750":15068,"51751":9766,"51752":17524,"51753":3477,"51754":10427,"51755":5828,"51756":4475,"51757":964,"51758":13145,"51759":8017,"51760":2849,"51761":12317,"51762":7743,"51763":12509,"51764":4936,"51765":8484,"51766":12161,"51767":10364,"51768":12191,"51769":18015,"51770":15600,"51771":3320,"51772":11224,"51773":10206,"51774":4057,"51775":1562,"51776":9145,"51777":10707,"51778":2775,"51779":4266,"51780":10280,"51781":2759,"51782":11582,"51783":13645,"51784":10159,"51785":8674,"51786":9529,"51787":17923,"51788":10021,"51789":4095,"51790":5850,"51791":7108,"51792":1525,"51793":3847,"51794":13306,"51795":3166,"51796":6929,"51797":14695,"51798":1066,"51799":10972,"51800":3808,"51801":1144,"51802":3103,"51803":1028,"51804":13810,"51805":7180,"51806":14790,"51807":1926,"51808":15690,"51809":14746,"51810":12805,"51811":756,"51812":5677,"51813":15327,"51814":6571,"51815":8803,"51816":4087,"51817":13997,"51818":13023,"51819":13799,"51820":3082,"51821":239,"51822":14428,"51823":10014,"51824":8786,"51825":11019,"51826":2068,"51827":5519,"51828":6675,"51829":17585,"51830":7872,"51831":8531,"51832":11627,"51833":16152,"51834":5574,"51835":14396,"51836":13377,"51837":10709,"51838":15947,"51839":7819,"51840":17696,"51841":10119,"51842":12646,"51843":10207,"51844":16120,"51845":10554,"51846":6602,"51847":6193,"51848":1756,"51849":3866,"51850":13612,"51851":2668,"51852":14805,"51853":14125,"51854":13984,"51855":1447,"51856":15504,"51857":15200,"51858":7710,"51859":780,"51860":14356,"51861":5836,"51862":12076,"51863":11566,"51864":7220,"51865":11650,"51866":12623,"51867":15978,"51868":15221,"51869":1631,"51870":8662,"51871":14444,"51872":17975,"51873":17568,"51874":12021,"51875":11162,"51876":17688,"51877":1967,"51878":17616,"51879":5111,"51880":10754,"51881":17856,"51882":14604,"51883":10972,"51884":9193,"51885":15428,"51886":14613,"51887":16382,"51888":3624,"51889":3880,"51890":4580,"51891":2499,"51892":181,"51893":8615,"51894":5605,"51895":7318,"51896":16962,"51897":4809,"51898":2157,"51899":10031,"51900":7107,"51901":3982,"51902":11910,"51903":9261,"51904":903,"51905":4234,"51906":6113,"51907":1031,"51908":6471,"51909":7939,"51910":1090,"51911":998,"51912":7351,"51913":14249,"51914":5263,"51915":7787,"51916":15266,"51917":13558,"51918":17168,"51919":14221,"51920":7055,"51921":17082,"51922":6276,"51923":16872,"51924":14256,"51925":8563,"51926":13311,"51927":11011,"51928":11412,"51929":7276,"51930":17043,"51931":1405,"51932":11524,"51933":1559,"51934":5536,"51935":17235,"51936":14887,"51937":9354,"51938":16736,"51939":13359,"51940":13105,"51941":12421,"51942":9344,"51943":17458,"51944":10259,"51945":13459,"51946":9908,"51947":13233,"51948":16301,"51949":8816,"51950":9485,"51951":13067,"51952":8589,"51953":13668,"51954":9766,"51955":10054,"51956":10918,"51957":935,"51958":15337,"51959":3746,"51960":17958,"51961":6678,"51962":13832,"51963":15124,"51964":12278,"51965":13198,"51966":8410,"51967":5792,"51968":10524,"51969":15319,"51970":15299,"51971":1264,"51972":8093,"51973":8393,"51974":3753,"51975":7246,"51976":3455,"51977":14972,"51978":4749,"51979":9367,"51980":11910,"51981":16289,"51982":10526,"51983":6776,"51984":5055,"51985":12207,"51986":5007,"51987":14350,"51988":15748,"51989":6902,"51990":5284,"51991":710,"51992":3409,"51993":15246,"51994":16126,"51995":5391,"51996":13870,"51997":16917,"51998":4576,"51999":10823,"52000":11870,"52001":9610,"52002":12592,"52003":17700,"52004":4790,"52005":1358,"52006":13001,"52007":7676,"52008":9932,"52009":15680,"52010":8365,"52011":17282,"52012":2194,"52013":16703,"52014":7220,"52015":17719,"52016":10807,"52017":12452,"52018":9906,"52019":3206,"52020":9825,"52021":14245,"52022":16537,"52023":15018,"52024":3358,"52025":9468,"52026":9312,"52027":3107,"52028":17060,"52029":8586,"52030":21,"52031":11201,"52032":1696,"52033":17443,"52034":18146,"52035":4577,"52036":3395,"52037":708,"52038":2240,"52039":14116,"52040":9139,"52041":3879,"52042":2971,"52043":14680,"52044":7934,"52045":16221,"52046":3884,"52047":16166,"52048":2887,"52049":10940,"52050":12321,"52051":4574,"52052":1470,"52053":10462,"52054":15028,"52055":1031,"52056":8585,"52057":2372,"52058":15717,"52059":1216,"52060":17669,"52061":7321,"52062":2050,"52063":8877,"52064":10608,"52065":9970,"52066":9762,"52067":12801,"52068":12945,"52069":10125,"52070":14252,"52071":340,"52072":7902,"52073":2956,"52074":8865,"52075":445,"52076":6329,"52077":5179,"52078":13490,"52079":634,"52080":10771,"52081":17478,"52082":11534,"52083":225,"52084":11547,"52085":16469,"52086":4319,"52087":474,"52088":10649,"52089":797,"52090":14692,"52091":1650,"52092":4238,"52093":13619,"52094":8375,"52095":5190,"52096":15406,"52097":4316,"52098":988,"52099":500,"52100":12371,"52101":1016,"52102":13566,"52103":7909,"52104":7929,"52105":8878,"52106":9933,"52107":1723,"52108":3775,"52109":1809,"52110":3788,"52111":7640,"52112":2939,"52113":10717,"52114":15939,"52115":17775,"52116":5736,"52117":12425,"52118":1821,"52119":10053,"52120":14776,"52121":18220,"52122":13817,"52123":17159,"52124":4922,"52125":2134,"52126":14458,"52127":5922,"52128":14357,"52129":7393,"52130":17061,"52131":2130,"52132":199,"52133":7989,"52134":12083,"52135":10150,"52136":13241,"52137":4466,"52138":11271,"52139":9068,"52140":10597,"52141":8376,"52142":17774,"52143":13194,"52144":995,"52145":3113,"52146":14187,"52147":10029,"52148":6703,"52149":1366,"52150":4309,"52151":4606,"52152":11369,"52153":11214,"52154":12899,"52155":5694,"52156":14937,"52157":14828,"52158":6708,"52159":2066,"52160":6726,"52161":9647,"52162":11080,"52163":9031,"52164":15102,"52165":6273,"52166":1215,"52167":824,"52168":9753,"52169":16975,"52170":1265,"52171":6619,"52172":6577,"52173":7806,"52174":2872,"52175":4107,"52176":4453,"52177":13986,"52178":11473,"52179":14498,"52180":7425,"52181":5385,"52182":15527,"52183":2650,"52184":1299,"52185":11052,"52186":3859,"52187":4074,"52188":14209,"52189":15044,"52190":14624,"52191":8180,"52192":17930,"52193":16763,"52194":4701,"52195":2187,"52196":8574,"52197":5076,"52198":7546,"52199":16563,"52200":13905,"52201":3721,"52202":8137,"52203":3125,"52204":15354,"52205":16146,"52206":11179,"52207":4598,"52208":2065,"52209":3932,"52210":10407,"52211":17793,"52212":4362,"52213":10976,"52214":2131,"52215":11561,"52216":11688,"52217":15081,"52218":9574,"52219":14444,"52220":13846,"52221":17845,"52222":13923,"52223":688,"52224":10436,"52225":15736,"52226":1996,"52227":6790,"52228":12096,"52229":1175,"52230":2825,"52231":1135,"52232":16416,"52233":3426,"52234":7846,"52235":16166,"52236":8707,"52237":16910,"52238":1183,"52239":16681,"52240":14468,"52241":1965,"52242":10928,"52243":1603,"52244":5221,"52245":2420,"52246":895,"52247":4682,"52248":16384,"52249":7715,"52250":8088,"52251":6334,"52252":9775,"52253":6510,"52254":17695,"52255":15676,"52256":11266,"52257":16631,"52258":5111,"52259":8441,"52260":6917,"52261":8014,"52262":4428,"52263":1547,"52264":9458,"52265":17989,"52266":10242,"52267":8772,"52268":10928,"52269":5565,"52270":3824,"52271":5592,"52272":9652,"52273":8745,"52274":12170,"52275":15892,"52276":4430,"52277":2834,"52278":4775,"52279":16909,"52280":11656,"52281":16279,"52282":7923,"52283":8114,"52284":17591,"52285":3853,"52286":16330,"52287":9507,"52288":8800,"52289":8676,"52290":17881,"52291":9417,"52292":7608,"52293":7128,"52294":8814,"52295":12786,"52296":11602,"52297":15454,"52298":13075,"52299":13964,"52300":4383,"52301":9140,"52302":1636,"52303":10089,"52304":13080,"52305":7467,"52306":8890,"52307":6159,"52308":13314,"52309":11592,"52310":5523,"52311":2489,"52312":13192,"52313":11254,"52314":7244,"52315":5328,"52316":13656,"52317":17131,"52318":11397,"52319":1484,"52320":11452,"52321":1435,"52322":6696,"52323":12852,"52324":3526,"52325":482,"52326":634,"52327":1180,"52328":11878,"52329":3152,"52330":11983,"52331":12792,"52332":8540,"52333":1021,"52334":9968,"52335":17214,"52336":3604,"52337":13398,"52338":10325,"52339":12515,"52340":12527,"52341":9739,"52342":12726,"52343":14647,"52344":6970,"52345":11305,"52346":14222,"52347":11099,"52348":12492,"52349":2486,"52350":14311,"52351":4641,"52352":6466,"52353":18331,"52354":14262,"52355":7889,"52356":16592,"52357":7390,"52358":11846,"52359":16171,"52360":14053,"52361":10458,"52362":4130,"52363":6081,"52364":3293,"52365":4197,"52366":6947,"52367":11379,"52368":2374,"52369":5890,"52370":2051,"52371":9500,"52372":11129,"52373":10596,"52374":16300,"52375":16060,"52376":17978,"52377":16450,"52378":17837,"52379":15323,"52380":10961,"52381":649,"52382":6420,"52383":8763,"52384":7035,"52385":12713,"52386":15732,"52387":1917,"52388":17596,"52389":1245,"52390":998,"52391":4449,"52392":13743,"52393":6139,"52394":12474,"52395":352,"52396":11204,"52397":2686,"52398":10562,"52399":14791,"52400":3416,"52401":5587,"52402":14471,"52403":1872,"52404":17421,"52405":5302,"52406":2825,"52407":4794,"52408":10664,"52409":5185,"52410":11152,"52411":8962,"52412":2860,"52413":7670,"52414":7524,"52415":1781,"52416":8896,"52417":965,"52418":12960,"52419":5367,"52420":10939,"52421":2456,"52422":12307,"52423":16764,"52424":5019,"52425":11459,"52426":7322,"52427":6958,"52428":15933,"52429":8167,"52430":4038,"52431":1451,"52432":16385,"52433":12081,"52434":14563,"52435":4052,"52436":17857,"52437":17068,"52438":8363,"52439":10148,"52440":3145,"52441":10904,"52442":8535,"52443":16688,"52444":7722,"52445":14095,"52446":18033,"52447":15500,"52448":7642,"52449":3715,"52450":9083,"52451":9778,"52452":46,"52453":2527,"52454":4149,"52455":13796,"52456":11343,"52457":14117,"52458":16834,"52459":13301,"52460":5353,"52461":102,"52462":3227,"52463":9876,"52464":2166,"52465":5643,"52466":13724,"52467":2585,"52468":697,"52469":2443,"52470":12861,"52471":218,"52472":15981,"52473":17130,"52474":15703,"52475":4686,"52476":13219,"52477":3070,"52478":1732,"52479":14481,"52480":16347,"52481":2795,"52482":7368,"52483":13992,"52484":10902,"52485":10281,"52486":17547,"52487":17310,"52488":3482,"52489":5348,"52490":13363,"52491":3599,"52492":3724,"52493":9925,"52494":6686,"52495":17086,"52496":17818,"52497":11989,"52498":15560,"52499":7592,"52500":1837,"52501":6638,"52502":9672,"52503":15076,"52504":4921,"52505":3685,"52506":12804,"52507":12852,"52508":7906,"52509":5720,"52510":4293,"52511":16287,"52512":3463,"52513":12443,"52514":5508,"52515":12543,"52516":11156,"52517":10463,"52518":724,"52519":144,"52520":3413,"52521":7867,"52522":3949,"52523":5227,"52524":2848,"52525":2250,"52526":9585,"52527":11462,"52528":12497,"52529":8318,"52530":15681,"52531":1167,"52532":1810,"52533":18094,"52534":10545,"52535":14674,"52536":16460,"52537":14332,"52538":1673,"52539":14588,"52540":9763,"52541":7441,"52542":2405,"52543":13292,"52544":15996,"52545":8506,"52546":433,"52547":13115,"52548":16187,"52549":1664,"52550":4245,"52551":15231,"52552":16828,"52553":12942,"52554":10035,"52555":6283,"52556":1863,"52557":14848,"52558":13413,"52559":17556,"52560":7910,"52561":15179,"52562":8850,"52563":7218,"52564":13544,"52565":12835,"52566":4921,"52567":5750,"52568":13673,"52569":14912,"52570":9706,"52571":1361,"52572":2123,"52573":8466,"52574":12916,"52575":6097,"52576":10123,"52577":7563,"52578":4973,"52579":5652,"52580":8059,"52581":17484,"52582":7461,"52583":563,"52584":7128,"52585":4926,"52586":7925,"52587":4696,"52588":13882,"52589":16317,"52590":4153,"52591":3044,"52592":9839,"52593":15717,"52594":2506,"52595":6227,"52596":5632,"52597":3116,"52598":14899,"52599":17091,"52600":8549,"52601":1597,"52602":7631,"52603":10065,"52604":4593,"52605":12278,"52606":5293,"52607":16684,"52608":1046,"52609":14893,"52610":16145,"52611":15068,"52612":26,"52613":6219,"52614":5442,"52615":13833,"52616":7153,"52617":11584,"52618":11563,"52619":15564,"52620":5033,"52621":13311,"52622":14864,"52623":13754,"52624":6697,"52625":18026,"52626":18122,"52627":16023,"52628":2605,"52629":1759,"52630":2754,"52631":9326,"52632":18082,"52633":3266,"52634":12827,"52635":4697,"52636":17491,"52637":14750,"52638":2520,"52639":4245,"52640":8765,"52641":14065,"52642":13449,"52643":17204,"52644":8056,"52645":18009,"52646":4887,"52647":7578,"52648":9415,"52649":12731,"52650":4129,"52651":17572,"52652":3128,"52653":4248,"52654":11944,"52655":16226,"52656":2231,"52657":18007,"52658":11665,"52659":15438,"52660":6698,"52661":5873,"52662":1108,"52663":3477,"52664":16906,"52665":17392,"52666":10481,"52667":12531,"52668":17282,"52669":14009,"52670":2466,"52671":9650,"52672":4649,"52673":126,"52674":3859,"52675":6134,"52676":8337,"52677":4416,"52678":2460,"52679":560,"52680":15176,"52681":15406,"52682":11522,"52683":13809,"52684":3641,"52685":1392,"52686":3307,"52687":6672,"52688":10955,"52689":15813,"52690":4657,"52691":13538,"52692":9057,"52693":4653,"52694":3118,"52695":6072,"52696":2243,"52697":4225,"52698":16112,"52699":4420,"52700":17212,"52701":16214,"52702":5775,"52703":2012,"52704":14855,"52705":7696,"52706":2866,"52707":11502,"52708":8085,"52709":8260,"52710":8858,"52711":12495,"52712":9462,"52713":17770,"52714":12857,"52715":8241,"52716":1568,"52717":9614,"52718":7245,"52719":10163,"52720":10809,"52721":9551,"52722":12098,"52723":2600,"52724":12769,"52725":7374,"52726":3184,"52727":6378,"52728":1145,"52729":7675,"52730":12574,"52731":11140,"52732":14231,"52733":15189,"52734":7123,"52735":10184,"52736":12698,"52737":923,"52738":573,"52739":8095,"52740":9723,"52741":16387,"52742":3920,"52743":16258,"52744":9062,"52745":5174,"52746":15510,"52747":7894,"52748":5117,"52749":7883,"52750":16665,"52751":5425,"52752":9003,"52753":9844,"52754":15833,"52755":488,"52756":8940,"52757":14886,"52758":13501,"52759":9347,"52760":16113,"52761":16810,"52762":15163,"52763":9065,"52764":2727,"52765":2488,"52766":5664,"52767":1654,"52768":17315,"52769":11540,"52770":8468,"52771":3391,"52772":5346,"52773":8396,"52774":2125,"52775":12826,"52776":7779,"52777":15226,"52778":1887,"52779":13923,"52780":13615,"52781":3692,"52782":6492,"52783":15610,"52784":925,"52785":1457,"52786":10484,"52787":10885,"52788":11894,"52789":2207,"52790":15423,"52791":10750,"52792":9735,"52793":11111,"52794":11340,"52795":882,"52796":5268,"52797":4461,"52798":7703,"52799":186,"52800":10710,"52801":7781,"52802":16911,"52803":6851,"52804":7922,"52805":13826,"52806":7576,"52807":9019,"52808":15745,"52809":6703,"52810":17542,"52811":13216,"52812":12999,"52813":5457,"52814":468,"52815":7660,"52816":17853,"52817":8875,"52818":15571,"52819":16506,"52820":576,"52821":6318,"52822":8608,"52823":11988,"52824":10913,"52825":6891,"52826":8243,"52827":13696,"52828":17848,"52829":5733,"52830":10740,"52831":873,"52832":973,"52833":10752,"52834":12272,"52835":159,"52836":9436,"52837":137,"52838":18131,"52839":15512,"52840":3211,"52841":1762,"52842":15304,"52843":5806,"52844":2778,"52845":15174,"52846":17980,"52847":6205,"52848":16173,"52849":10593,"52850":7509,"52851":12905,"52852":16407,"52853":4869,"52854":2832,"52855":6102,"52856":9835,"52857":13750,"52858":7040,"52859":17741,"52860":479,"52861":5666,"52862":7301,"52863":15453,"52864":9949,"52865":14459,"52866":17898,"52867":15949,"52868":7456,"52869":17193,"52870":2389,"52871":11939,"52872":7381,"52873":8326,"52874":11999,"52875":12560,"52876":17930,"52877":7591,"52878":18181,"52879":12383,"52880":10403,"52881":2296,"52882":5356,"52883":12580,"52884":526,"52885":17484,"52886":9439,"52887":5712,"52888":1301,"52889":10544,"52890":7027,"52891":12845,"52892":9203,"52893":11653,"52894":17696,"52895":10142,"52896":9822,"52897":13396,"52898":12670,"52899":9307,"52900":8545,"52901":11430,"52902":2746,"52903":15939,"52904":3733,"52905":7745,"52906":3280,"52907":6308,"52908":5606,"52909":4850,"52910":11521,"52911":2959,"52912":5869,"52913":9521,"52914":2553,"52915":14497,"52916":13659,"52917":4901,"52918":4782,"52919":623,"52920":14930,"52921":7879,"52922":10265,"52923":4714,"52924":11762,"52925":9105,"52926":9549,"52927":5527,"52928":13027,"52929":7252,"52930":6642,"52931":12401,"52932":13988,"52933":15045,"52934":7784,"52935":8582,"52936":7786,"52937":4589,"52938":11912,"52939":12841,"52940":17311,"52941":7512,"52942":719,"52943":13871,"52944":821,"52945":14201,"52946":10342,"52947":7342,"52948":3309,"52949":5341,"52950":3338,"52951":9104,"52952":3223,"52953":16619,"52954":7490,"52955":14057,"52956":13702,"52957":806,"52958":15438,"52959":2512,"52960":7313,"52961":3654,"52962":527,"52963":2248,"52964":2071,"52965":5058,"52966":3427,"52967":4520,"52968":7883,"52969":15572,"52970":8990,"52971":7542,"52972":5754,"52973":4033,"52974":13690,"52975":13856,"52976":6705,"52977":1778,"52978":4840,"52979":6796,"52980":9185,"52981":3539,"52982":11323,"52983":10229,"52984":18119,"52985":15949,"52986":5873,"52987":17957,"52988":9281,"52989":17021,"52990":7575,"52991":2873,"52992":9831,"52993":11627,"52994":13825,"52995":12138,"52996":8592,"52997":3861,"52998":17085,"52999":10609,"53000":525,"53001":15924,"53002":8105,"53003":4401,"53004":4890,"53005":1467,"53006":14316,"53007":1798,"53008":6868,"53009":15486,"53010":7779,"53011":2747,"53012":8179,"53013":6632,"53014":6141,"53015":11998,"53016":13487,"53017":10433,"53018":8877,"53019":13155,"53020":6794,"53021":13068,"53022":17576,"53023":14713,"53024":13947,"53025":11956,"53026":4950,"53027":6984,"53028":498,"53029":1489,"53030":8360,"53031":5465,"53032":3423,"53033":15310,"53034":7290,"53035":14693,"53036":8690,"53037":12081,"53038":14823,"53039":4728,"53040":7944,"53041":848,"53042":11982,"53043":7145,"53044":515,"53045":8880,"53046":16712,"53047":2483,"53048":7109,"53049":13138,"53050":2669,"53051":7325,"53052":18264,"53053":12126,"53054":62,"53055":16150,"53056":2592,"53057":11874,"53058":17662,"53059":933,"53060":991,"53061":9498,"53062":17451,"53063":8237,"53064":648,"53065":4222,"53066":18292,"53067":14255,"53068":9885,"53069":2927,"53070":11859,"53071":3556,"53072":5759,"53073":3695,"53074":10100,"53075":14019,"53076":12131,"53077":8773,"53078":15545,"53079":14945,"53080":12076,"53081":10955,"53082":2141,"53083":12614,"53084":13748,"53085":88,"53086":5689,"53087":8693,"53088":3232,"53089":8299,"53090":11451,"53091":6520,"53092":10846,"53093":7115,"53094":14170,"53095":15341,"53096":13594,"53097":15075,"53098":12607,"53099":12919,"53100":15719,"53101":16525,"53102":12429,"53103":12927,"53104":17857,"53105":4041,"53106":17186,"53107":1070,"53108":15714,"53109":3619,"53110":12780,"53111":9648,"53112":12759,"53113":531,"53114":2299,"53115":4740,"53116":3955,"53117":4030,"53118":5424,"53119":12890,"53120":17856,"53121":7936,"53122":12989,"53123":1290,"53124":534,"53125":18326,"53126":15134,"53127":13529,"53128":4944,"53129":7828,"53130":13889,"53131":8520,"53132":12482,"53133":11227,"53134":9238,"53135":16874,"53136":7412,"53137":12634,"53138":7861,"53139":11106,"53140":12943,"53141":9029,"53142":6208,"53143":1249,"53144":11858,"53145":16405,"53146":13035,"53147":1154,"53148":13041,"53149":11690,"53150":4987,"53151":3836,"53152":8298,"53153":9201,"53154":678,"53155":8033,"53156":8318,"53157":5633,"53158":9258,"53159":13315,"53160":17492,"53161":13520,"53162":4386,"53163":908,"53164":3398,"53165":5083,"53166":159,"53167":3773,"53168":6484,"53169":782,"53170":10199,"53171":17986,"53172":16855,"53173":6570,"53174":3677,"53175":7898,"53176":1074,"53177":4410,"53178":9001,"53179":822,"53180":15021,"53181":3535,"53182":7884,"53183":12386,"53184":11937,"53185":5935,"53186":7396,"53187":316,"53188":15573,"53189":14822,"53190":10422,"53191":571,"53192":1210,"53193":6666,"53194":2554,"53195":2594,"53196":16124,"53197":11409,"53198":9836,"53199":7924,"53200":10098,"53201":2091,"53202":9212,"53203":9379,"53204":11466,"53205":12102,"53206":6550,"53207":16273,"53208":3065,"53209":3055,"53210":16519,"53211":11695,"53212":2501,"53213":11160,"53214":854,"53215":18209,"53216":12428,"53217":4590,"53218":11184,"53219":10579,"53220":2978,"53221":14270,"53222":15435,"53223":12165,"53224":3619,"53225":16077,"53226":14118,"53227":7343,"53228":17743,"53229":5016,"53230":14192,"53231":2781,"53232":9338,"53233":9233,"53234":12892,"53235":4809,"53236":5580,"53237":16592,"53238":8869,"53239":14497,"53240":801,"53241":16718,"53242":1296,"53243":7824,"53244":1921,"53245":13328,"53246":1377,"53247":12094,"53248":710,"53249":13130,"53250":3645,"53251":15728,"53252":630,"53253":16690,"53254":16496,"53255":1267,"53256":5132,"53257":8230,"53258":402,"53259":4543,"53260":5658,"53261":8789,"53262":14660,"53263":2020,"53264":6229,"53265":3283,"53266":12617,"53267":15728,"53268":7177,"53269":6974,"53270":18091,"53271":1284,"53272":3606,"53273":14656,"53274":5667,"53275":17606,"53276":12465,"53277":9873,"53278":10629,"53279":5560,"53280":1490,"53281":13128,"53282":17089,"53283":2748,"53284":2348,"53285":8399,"53286":16640,"53287":11912,"53288":4186,"53289":4137,"53290":5146,"53291":13787,"53292":2912,"53293":12782,"53294":1748,"53295":7189,"53296":13551,"53297":17580,"53298":16288,"53299":1384,"53300":5471,"53301":3245,"53302":13546,"53303":7784,"53304":12971,"53305":17704,"53306":787,"53307":8590,"53308":5132,"53309":5119,"53310":370,"53311":15959,"53312":8928,"53313":13282,"53314":11117,"53315":16406,"53316":13348,"53317":11136,"53318":5650,"53319":1639,"53320":17311,"53321":12636,"53322":1077,"53323":9249,"53324":15519,"53325":8371,"53326":17760,"53327":4985,"53328":12612,"53329":16024,"53330":3282,"53331":14882,"53332":14172,"53333":14228,"53334":10101,"53335":16080,"53336":8856,"53337":12943,"53338":17932,"53339":14586,"53340":16474,"53341":7072,"53342":923,"53343":5678,"53344":3925,"53345":967,"53346":17080,"53347":296,"53348":16900,"53349":1098,"53350":2663,"53351":12258,"53352":4961,"53353":13627,"53354":10944,"53355":7304,"53356":8768,"53357":10106,"53358":3297,"53359":919,"53360":7149,"53361":12407,"53362":11871,"53363":177,"53364":18237,"53365":7185,"53366":18173,"53367":13706,"53368":17421,"53369":8043,"53370":11810,"53371":7230,"53372":9954,"53373":2787,"53374":10602,"53375":11191,"53376":8444,"53377":12272,"53378":15284,"53379":10896,"53380":2073,"53381":11540,"53382":5104,"53383":7713,"53384":10665,"53385":11069,"53386":14490,"53387":11728,"53388":18067,"53389":6414,"53390":15369,"53391":1046,"53392":696,"53393":8876,"53394":9451,"53395":12678,"53396":9165,"53397":10804,"53398":7580,"53399":10462,"53400":5909,"53401":15893,"53402":6911,"53403":11190,"53404":5456,"53405":8744,"53406":6535,"53407":14461,"53408":10893,"53409":14393,"53410":12492,"53411":8653,"53412":12246,"53413":7149,"53414":3268,"53415":10683,"53416":11992,"53417":17839,"53418":13695,"53419":10305,"53420":1763,"53421":5885,"53422":10020,"53423":13945,"53424":16711,"53425":6667,"53426":7657,"53427":14139,"53428":11542,"53429":11105,"53430":1595,"53431":17936,"53432":17539,"53433":17944,"53434":2768,"53435":12654,"53436":14565,"53437":8295,"53438":16163,"53439":3538,"53440":7234,"53441":14363,"53442":3191,"53443":5898,"53444":1751,"53445":635,"53446":1726,"53447":4477,"53448":5605,"53449":7135,"53450":4404,"53451":2111,"53452":3918,"53453":13121,"53454":13285,"53455":14972,"53456":7321,"53457":13638,"53458":3826,"53459":6998,"53460":2604,"53461":1107,"53462":12368,"53463":13638,"53464":9757,"53465":1200,"53466":16257,"53467":8488,"53468":2864,"53469":3119,"53470":14036,"53471":15876,"53472":274,"53473":11335,"53474":5747,"53475":8598,"53476":4902,"53477":1644,"53478":1326,"53479":287,"53480":8805,"53481":4058,"53482":5964,"53483":13010,"53484":9143,"53485":7753,"53486":18061,"53487":13714,"53488":735,"53489":8143,"53490":15519,"53491":6646,"53492":6472,"53493":6703,"53494":3180,"53495":3558,"53496":16261,"53497":7212,"53498":16679,"53499":2160,"53500":439,"53501":14341,"53502":1679,"53503":16699,"53504":7868,"53505":10674,"53506":10469,"53507":863,"53508":2438,"53509":7152,"53510":5971,"53511":16626,"53512":5341,"53513":12230,"53514":10367,"53515":509,"53516":15634,"53517":17254,"53518":1128,"53519":17342,"53520":2743,"53521":12357,"53522":7792,"53523":6170,"53524":17644,"53525":12117,"53526":6128,"53527":6782,"53528":17402,"53529":17631,"53530":2596,"53531":14520,"53532":2469,"53533":1188,"53534":7584,"53535":6156,"53536":12593,"53537":6844,"53538":6842,"53539":9762,"53540":1464,"53541":7416,"53542":17248,"53543":2255,"53544":14317,"53545":4558,"53546":10414,"53547":5700,"53548":15060,"53549":17083,"53550":2131,"53551":3150,"53552":4996,"53553":13251,"53554":17094,"53555":10151,"53556":9425,"53557":13102,"53558":16346,"53559":18044,"53560":4785,"53561":2487,"53562":6452,"53563":13759,"53564":12531,"53565":17502,"53566":16678,"53567":5889,"53568":5442,"53569":10299,"53570":3648,"53571":12868,"53572":1184,"53573":9288,"53574":7462,"53575":11274,"53576":6504,"53577":3920,"53578":11038,"53579":3360,"53580":12952,"53581":9536,"53582":10427,"53583":7974,"53584":459,"53585":10084,"53586":2896,"53587":8676,"53588":17657,"53589":699,"53590":13454,"53591":8676,"53592":12292,"53593":17208,"53594":18299,"53595":5670,"53596":8669,"53597":2088,"53598":12180,"53599":5460,"53600":11595,"53601":11740,"53602":8711,"53603":8004,"53604":840,"53605":15293,"53606":4619,"53607":5268,"53608":11919,"53609":3286,"53610":16252,"53611":10338,"53612":14550,"53613":11770,"53614":5927,"53615":6765,"53616":5577,"53617":16301,"53618":11114,"53619":2148,"53620":7983,"53621":3988,"53622":16065,"53623":885,"53624":1591,"53625":16667,"53626":5961,"53627":15857,"53628":15592,"53629":2314,"53630":2539,"53631":17947,"53632":14273,"53633":1195,"53634":5709,"53635":14331,"53636":153,"53637":5659,"53638":7641,"53639":11821,"53640":2385,"53641":13479,"53642":12144,"53643":756,"53644":12103,"53645":8324,"53646":2206,"53647":10998,"53648":1563,"53649":7281,"53650":910,"53651":4490,"53652":1027,"53653":10975,"53654":1445,"53655":2281,"53656":17802,"53657":11027,"53658":18020,"53659":10963,"53660":13191,"53661":11326,"53662":7826,"53663":8988,"53664":4130,"53665":17281,"53666":5104,"53667":2835,"53668":2160,"53669":17914,"53670":2095,"53671":16860,"53672":18043,"53673":17581,"53674":4540,"53675":328,"53676":11381,"53677":15530,"53678":9748,"53679":8165,"53680":5723,"53681":2349,"53682":14224,"53683":1460,"53684":18036,"53685":6035,"53686":9947,"53687":8479,"53688":12879,"53689":4024,"53690":5727,"53691":17622,"53692":494,"53693":3125,"53694":10597,"53695":5446,"53696":2252,"53697":12089,"53698":13291,"53699":653,"53700":14387,"53701":6310,"53702":14043,"53703":54,"53704":10047,"53705":4397,"53706":7095,"53707":1495,"53708":1012,"53709":12835,"53710":9156,"53711":8752,"53712":1703,"53713":6743,"53714":1841,"53715":17706,"53716":11391,"53717":2488,"53718":13583,"53719":4880,"53720":3528,"53721":16650,"53722":1697,"53723":346,"53724":3029,"53725":10732,"53726":14165,"53727":5588,"53728":8615,"53729":9531,"53730":1489,"53731":4112,"53732":13500,"53733":11112,"53734":10883,"53735":17572,"53736":7002,"53737":14132,"53738":16658,"53739":17352,"53740":890,"53741":6757,"53742":10125,"53743":7070,"53744":13231,"53745":8987,"53746":15812,"53747":16859,"53748":2601,"53749":1483,"53750":13956,"53751":17998,"53752":123,"53753":8610,"53754":12568,"53755":11383,"53756":8231,"53757":9269,"53758":11417,"53759":4175,"53760":13581,"53761":13252,"53762":7513,"53763":12202,"53764":5941,"53765":4056,"53766":6589,"53767":11671,"53768":16271,"53769":4489,"53770":2922,"53771":11012,"53772":12382,"53773":667,"53774":14853,"53775":13001,"53776":9489,"53777":14953,"53778":10801,"53779":8780,"53780":11213,"53781":17546,"53782":18310,"53783":6328,"53784":1046,"53785":13961,"53786":4921,"53787":15721,"53788":11972,"53789":865,"53790":8435,"53791":11304,"53792":1377,"53793":11345,"53794":5879,"53795":8765,"53796":16181,"53797":544,"53798":9206,"53799":8909,"53800":4875,"53801":13202,"53802":11139,"53803":505,"53804":16748,"53805":7547,"53806":1720,"53807":8926,"53808":1017,"53809":15087,"53810":16696,"53811":13726,"53812":16465,"53813":3771,"53814":2172,"53815":13797,"53816":749,"53817":17650,"53818":4639,"53819":12647,"53820":7120,"53821":9966,"53822":7112,"53823":16054,"53824":4475,"53825":6387,"53826":16801,"53827":17552,"53828":14173,"53829":3927,"53830":9158,"53831":948,"53832":11353,"53833":6244,"53834":5835,"53835":4160,"53836":4755,"53837":9952,"53838":13643,"53839":7624,"53840":14682,"53841":1975,"53842":6865,"53843":4896,"53844":14552,"53845":6430,"53846":9858,"53847":8673,"53848":596,"53849":9703,"53850":1421,"53851":852,"53852":15082,"53853":7655,"53854":8447,"53855":3850,"53856":14118,"53857":4860,"53858":13715,"53859":717,"53860":16841,"53861":7590,"53862":4502,"53863":13971,"53864":4133,"53865":16981,"53866":16056,"53867":4175,"53868":7870,"53869":11685,"53870":6583,"53871":15360,"53872":11100,"53873":9401,"53874":11746,"53875":7316,"53876":3099,"53877":16991,"53878":6944,"53879":11237,"53880":203,"53881":8037,"53882":7988,"53883":7102,"53884":10015,"53885":16875,"53886":1298,"53887":545,"53888":12095,"53889":13366,"53890":14583,"53891":10968,"53892":18104,"53893":9214,"53894":13111,"53895":6631,"53896":3067,"53897":17988,"53898":6120,"53899":528,"53900":2983,"53901":1150,"53902":323,"53903":5565,"53904":18128,"53905":3604,"53906":18304,"53907":17265,"53908":4482,"53909":591,"53910":5608,"53911":7064,"53912":2587,"53913":10757,"53914":12447,"53915":16182,"53916":7360,"53917":9721,"53918":17445,"53919":17145,"53920":10366,"53921":13018,"53922":9645,"53923":12511,"53924":14969,"53925":1039,"53926":18176,"53927":9526,"53928":78,"53929":7519,"53930":3968,"53931":13559,"53932":11680,"53933":4419,"53934":4584,"53935":10737,"53936":5206,"53937":15716,"53938":747,"53939":144,"53940":7986,"53941":10919,"53942":6504,"53943":11352,"53944":9092,"53945":11773,"53946":16724,"53947":12211,"53948":13138,"53949":6279,"53950":5722,"53951":10364,"53952":2076,"53953":10930,"53954":16085,"53955":5613,"53956":11745,"53957":14861,"53958":13581,"53959":14583,"53960":16877,"53961":513,"53962":14756,"53963":7859,"53964":11535,"53965":511,"53966":14468,"53967":13170,"53968":2811,"53969":15534,"53970":1509,"53971":8675,"53972":3737,"53973":10371,"53974":14715,"53975":15477,"53976":9164,"53977":12382,"53978":7970,"53979":613,"53980":9147,"53981":12424,"53982":16713,"53983":9742,"53984":11303,"53985":8911,"53986":14706,"53987":13059,"53988":460,"53989":13790,"53990":10493,"53991":8083,"53992":10999,"53993":3017,"53994":1657,"53995":17107,"53996":867,"53997":17867,"53998":9689,"53999":7289,"54000":735,"54001":3430,"54002":15918,"54003":7518,"54004":1565,"54005":5528,"54006":5301,"54007":9498,"54008":3968,"54009":2811,"54010":5401,"54011":5526,"54012":6224,"54013":16448,"54014":14701,"54015":5356,"54016":18250,"54017":3345,"54018":4569,"54019":18074,"54020":8149,"54021":6695,"54022":5221,"54023":5062,"54024":1495,"54025":2786,"54026":13012,"54027":558,"54028":4383,"54029":15702,"54030":17437,"54031":4123,"54032":12711,"54033":7661,"54034":15668,"54035":247,"54036":7708,"54037":60,"54038":11446,"54039":5799,"54040":7804,"54041":6014,"54042":16237,"54043":7540,"54044":15286,"54045":2400,"54046":3328,"54047":1752,"54048":5690,"54049":8347,"54050":4228,"54051":8299,"54052":460,"54053":3909,"54054":4848,"54055":1136,"54056":2350,"54057":14018,"54058":18328,"54059":12428,"54060":14860,"54061":5134,"54062":7908,"54063":4094,"54064":16149,"54065":6944,"54066":16934,"54067":11406,"54068":17350,"54069":239,"54070":3173,"54071":9102,"54072":815,"54073":6535,"54074":14901,"54075":12137,"54076":1145,"54077":1970,"54078":17289,"54079":16158,"54080":9356,"54081":8069,"54082":4551,"54083":9424,"54084":9379,"54085":1656,"54086":15060,"54087":8704,"54088":17361,"54089":16202,"54090":2052,"54091":1530,"54092":17118,"54093":15530,"54094":2209,"54095":2605,"54096":10559,"54097":7644,"54098":12560,"54099":4926,"54100":2341,"54101":6121,"54102":6177,"54103":5990,"54104":5207,"54105":1441,"54106":11669,"54107":15971,"54108":3228,"54109":10644,"54110":4449,"54111":16811,"54112":4919,"54113":17526,"54114":15584,"54115":3911,"54116":17657,"54117":6964,"54118":11074,"54119":8045,"54120":16534,"54121":5321,"54122":6842,"54123":6128,"54124":16942,"54125":9433,"54126":669,"54127":2250,"54128":3385,"54129":16701,"54130":5569,"54131":17789,"54132":10466,"54133":15706,"54134":16221,"54135":9719,"54136":17199,"54137":9786,"54138":11799,"54139":17693,"54140":15816,"54141":5449,"54142":14966,"54143":14488,"54144":2706,"54145":10209,"54146":13862,"54147":7796,"54148":4296,"54149":7609,"54150":13950,"54151":9312,"54152":7177,"54153":9435,"54154":6889,"54155":16888,"54156":5514,"54157":17072,"54158":5372,"54159":6372,"54160":4905,"54161":7497,"54162":3740,"54163":15882,"54164":10471,"54165":4218,"54166":14713,"54167":8924,"54168":8612,"54169":2937,"54170":15161,"54171":11771,"54172":10879,"54173":3910,"54174":16902,"54175":12362,"54176":9106,"54177":1863,"54178":17459,"54179":17851,"54180":8964,"54181":17903,"54182":14545,"54183":17687,"54184":2040,"54185":17820,"54186":6841,"54187":471,"54188":12256,"54189":13306,"54190":241,"54191":16055,"54192":13813,"54193":16268,"54194":1,"54195":8028,"54196":284,"54197":16126,"54198":14024,"54199":13056,"54200":2808,"54201":8950,"54202":7401,"54203":631,"54204":13305,"54205":6190,"54206":11485,"54207":17750,"54208":14091,"54209":3657,"54210":3526,"54211":1196,"54212":3805,"54213":9779,"54214":8978,"54215":16434,"54216":18299,"54217":2029,"54218":11811,"54219":6849,"54220":8156,"54221":5009,"54222":18312,"54223":13846,"54224":11443,"54225":11748,"54226":12196,"54227":13830,"54228":17519,"54229":11643,"54230":16781,"54231":237,"54232":1869,"54233":12547,"54234":13694,"54235":14896,"54236":8941,"54237":6799,"54238":14262,"54239":7563,"54240":1026,"54241":9867,"54242":6164,"54243":10865,"54244":6509,"54245":14041,"54246":2390,"54247":937,"54248":292,"54249":8034,"54250":3981,"54251":12808,"54252":7005,"54253":15269,"54254":8064,"54255":1764,"54256":11007,"54257":10350,"54258":12790,"54259":12449,"54260":6419,"54261":11925,"54262":10198,"54263":11649,"54264":10220,"54265":10141,"54266":8361,"54267":4987,"54268":5419,"54269":3630,"54270":16986,"54271":12881,"54272":4938,"54273":16000,"54274":17963,"54275":4506,"54276":3344,"54277":14920,"54278":14910,"54279":4706,"54280":11691,"54281":8131,"54282":5076,"54283":14938,"54284":13340,"54285":10720,"54286":678,"54287":7930,"54288":3356,"54289":1493,"54290":4582,"54291":17403,"54292":3992,"54293":17605,"54294":7563,"54295":18203,"54296":5807,"54297":16116,"54298":636,"54299":3056,"54300":3115,"54301":8112,"54302":14104,"54303":11678,"54304":1712,"54305":6607,"54306":6598,"54307":3447,"54308":7425,"54309":7206,"54310":15832,"54311":13057,"54312":1805,"54313":254,"54314":5871,"54315":991,"54316":1944,"54317":17072,"54318":11436,"54319":920,"54320":15510,"54321":11845,"54322":10973,"54323":923,"54324":16749,"54325":5020,"54326":17091,"54327":16535,"54328":12860,"54329":8520,"54330":5586,"54331":1203,"54332":9133,"54333":17978,"54334":8244,"54335":11780,"54336":10849,"54337":13530,"54338":15045,"54339":7384,"54340":15131,"54341":841,"54342":8056,"54343":15982,"54344":17262,"54345":14855,"54346":12420,"54347":7377,"54348":742,"54349":5628,"54350":6228,"54351":2919,"54352":850,"54353":11551,"54354":8109,"54355":2119,"54356":2069,"54357":5952,"54358":627,"54359":4193,"54360":71,"54361":11973,"54362":6944,"54363":4028,"54364":7462,"54365":6812,"54366":9145,"54367":17686,"54368":6258,"54369":15991,"54370":15764,"54371":2796,"54372":16628,"54373":12863,"54374":18326,"54375":15031,"54376":7540,"54377":3246,"54378":7407,"54379":13996,"54380":14052,"54381":12001,"54382":5509,"54383":5409,"54384":13992,"54385":14813,"54386":15914,"54387":12496,"54388":5111,"54389":9297,"54390":1538,"54391":16593,"54392":13429,"54393":497,"54394":16603,"54395":18131,"54396":2562,"54397":9564,"54398":17968,"54399":2849,"54400":10801,"54401":3290,"54402":9921,"54403":14423,"54404":17572,"54405":6508,"54406":5799,"54407":3182,"54408":8003,"54409":15791,"54410":12162,"54411":10739,"54412":759,"54413":7420,"54414":14162,"54415":1136,"54416":2873,"54417":15561,"54418":397,"54419":2766,"54420":15389,"54421":1194,"54422":8078,"54423":12049,"54424":16355,"54425":6427,"54426":2271,"54427":11973,"54428":16453,"54429":13724,"54430":9132,"54431":4397,"54432":15890,"54433":15280,"54434":4462,"54435":4162,"54436":3292,"54437":11916,"54438":14661,"54439":3539,"54440":9382,"54441":16168,"54442":1817,"54443":12585,"54444":6662,"54445":13861,"54446":9004,"54447":9676,"54448":7304,"54449":15493,"54450":3481,"54451":710,"54452":11056,"54453":1738,"54454":15852,"54455":10233,"54456":14093,"54457":18102,"54458":6064,"54459":2520,"54460":7930,"54461":16605,"54462":10652,"54463":8129,"54464":11,"54465":8126,"54466":7491,"54467":3216,"54468":17959,"54469":12308,"54470":17362,"54471":9543,"54472":895,"54473":3910,"54474":14005,"54475":15202,"54476":4947,"54477":7874,"54478":7216,"54479":11509,"54480":1624,"54481":2287,"54482":17341,"54483":2118,"54484":5940,"54485":12345,"54486":6848,"54487":10235,"54488":6859,"54489":9480,"54490":5242,"54491":5032,"54492":12238,"54493":11257,"54494":12214,"54495":17469,"54496":419,"54497":1868,"54498":14615,"54499":15962,"54500":15146,"54501":6394,"54502":14496,"54503":1974,"54504":18040,"54505":3327,"54506":2946,"54507":13046,"54508":5933,"54509":15763,"54510":12827,"54511":15661,"54512":801,"54513":4533,"54514":17780,"54515":6161,"54516":13410,"54517":11619,"54518":11275,"54519":16793,"54520":10298,"54521":326,"54522":1377,"54523":26,"54524":14682,"54525":3565,"54526":59,"54527":8328,"54528":3663,"54529":11492,"54530":8371,"54531":15645,"54532":1061,"54533":8307,"54534":12828,"54535":3806,"54536":1943,"54537":14535,"54538":8210,"54539":9815,"54540":2224,"54541":2989,"54542":2937,"54543":8011,"54544":6032,"54545":8271,"54546":7622,"54547":1134,"54548":10913,"54549":792,"54550":12635,"54551":17390,"54552":11557,"54553":3560,"54554":9680,"54555":5220,"54556":7944,"54557":9589,"54558":15092,"54559":12142,"54560":8970,"54561":17305,"54562":6411,"54563":11704,"54564":12768,"54565":17736,"54566":14146,"54567":14967,"54568":12864,"54569":1102,"54570":6118,"54571":11074,"54572":14635,"54573":6562,"54574":14791,"54575":10327,"54576":1005,"54577":10524,"54578":12405,"54579":879,"54580":1981,"54581":12768,"54582":18222,"54583":1578,"54584":17227,"54585":6493,"54586":2803,"54587":14664,"54588":13834,"54589":16223,"54590":16325,"54591":14995,"54592":7788,"54593":18265,"54594":594,"54595":10706,"54596":1971,"54597":235,"54598":4521,"54599":7602,"54600":13725,"54601":797,"54602":1285,"54603":8905,"54604":4517,"54605":6232,"54606":1177,"54607":11951,"54608":6500,"54609":4583,"54610":12700,"54611":224,"54612":11692,"54613":11146,"54614":1722,"54615":8410,"54616":16484,"54617":15140,"54618":13470,"54619":18108,"54620":6746,"54621":48,"54622":13668,"54623":12942,"54624":5879,"54625":14476,"54626":12722,"54627":1229,"54628":6688,"54629":18119,"54630":12134,"54631":12816,"54632":11007,"54633":16906,"54634":4546,"54635":351,"54636":11628,"54637":16316,"54638":3558,"54639":13658,"54640":10992,"54641":14864,"54642":2455,"54643":15963,"54644":11920,"54645":266,"54646":16072,"54647":14986,"54648":15305,"54649":7022,"54650":7889,"54651":905,"54652":11115,"54653":5017,"54654":7560,"54655":1152,"54656":9874,"54657":165,"54658":3914,"54659":880,"54660":554,"54661":944,"54662":3074,"54663":16459,"54664":3874,"54665":14718,"54666":10895,"54667":13605,"54668":7212,"54669":8038,"54670":9590,"54671":7185,"54672":2489,"54673":13888,"54674":735,"54675":3362,"54676":9427,"54677":2545,"54678":16446,"54679":6131,"54680":12640,"54681":8570,"54682":11579,"54683":11144,"54684":14115,"54685":7567,"54686":6901,"54687":1903,"54688":6225,"54689":6379,"54690":8142,"54691":1047,"54692":16391,"54693":8199,"54694":8928,"54695":16146,"54696":16574,"54697":6446,"54698":5931,"54699":13789,"54700":5903,"54701":10673,"54702":16699,"54703":17114,"54704":6506,"54705":12238,"54706":6868,"54707":7762,"54708":919,"54709":12981,"54710":3905,"54711":9,"54712":17389,"54713":10904,"54714":4000,"54715":15627,"54716":11279,"54717":15573,"54718":208,"54719":9597,"54720":2284,"54721":14748,"54722":14911,"54723":10222,"54724":12924,"54725":10752,"54726":10650,"54727":12598,"54728":14537,"54729":18200,"54730":14425,"54731":8463,"54732":11173,"54733":16378,"54734":18061,"54735":9420,"54736":7325,"54737":12134,"54738":12856,"54739":5395,"54740":8104,"54741":13500,"54742":9465,"54743":2786,"54744":1657,"54745":4248,"54746":3816,"54747":10951,"54748":13572,"54749":4195,"54750":4366,"54751":566,"54752":13215,"54753":10957,"54754":17697,"54755":14361,"54756":4467,"54757":10193,"54758":14760,"54759":11559,"54760":7538,"54761":12879,"54762":1186,"54763":9591,"54764":17840,"54765":16536,"54766":16425,"54767":6905,"54768":15031,"54769":13312,"54770":4332,"54771":1832,"54772":10772,"54773":15876,"54774":4260,"54775":4937,"54776":37,"54777":11454,"54778":5736,"54779":5373,"54780":6774,"54781":2712,"54782":9852,"54783":12798,"54784":3429,"54785":11079,"54786":7317,"54787":17490,"54788":16887,"54789":3758,"54790":9083,"54791":5362,"54792":8413,"54793":15692,"54794":9718,"54795":3485,"54796":4533,"54797":16220,"54798":11150,"54799":17856,"54800":14717,"54801":7911,"54802":1168,"54803":8826,"54804":12463,"54805":9410,"54806":1735,"54807":14396,"54808":7107,"54809":12835,"54810":863,"54811":8279,"54812":1362,"54813":13340,"54814":6232,"54815":12664,"54816":1160,"54817":607,"54818":11246,"54819":18115,"54820":6680,"54821":14054,"54822":10191,"54823":13509,"54824":7538,"54825":15227,"54826":16954,"54827":7674,"54828":5673,"54829":1411,"54830":3709,"54831":7986,"54832":7121,"54833":5591,"54834":3260,"54835":10019,"54836":10691,"54837":5999,"54838":7152,"54839":10506,"54840":9965,"54841":1503,"54842":3622,"54843":9298,"54844":635,"54845":17695,"54846":15821,"54847":9051,"54848":9120,"54849":14455,"54850":14012,"54851":9093,"54852":15099,"54853":6504,"54854":2645,"54855":167,"54856":10911,"54857":9868,"54858":13508,"54859":4311,"54860":3221,"54861":11008,"54862":11635,"54863":10925,"54864":7788,"54865":10330,"54866":6978,"54867":1292,"54868":4950,"54869":1253,"54870":2776,"54871":2086,"54872":2943,"54873":11044,"54874":2261,"54875":12178,"54876":11055,"54877":14009,"54878":10515,"54879":4917,"54880":235,"54881":17294,"54882":8643,"54883":8902,"54884":15051,"54885":6689,"54886":7892,"54887":11028,"54888":2537,"54889":6659,"54890":6932,"54891":16730,"54892":15785,"54893":3694,"54894":5780,"54895":16853,"54896":7266,"54897":7905,"54898":3880,"54899":14540,"54900":2076,"54901":749,"54902":3894,"54903":16374,"54904":1586,"54905":4463,"54906":14324,"54907":17843,"54908":319,"54909":7586,"54910":10782,"54911":18160,"54912":7875,"54913":12713,"54914":8603,"54915":9014,"54916":2732,"54917":139,"54918":5199,"54919":2307,"54920":9920,"54921":17408,"54922":18232,"54923":17962,"54924":6988,"54925":1555,"54926":10409,"54927":5149,"54928":11761,"54929":11269,"54930":12448,"54931":12362,"54932":12865,"54933":18091,"54934":11769,"54935":7917,"54936":8024,"54937":12568,"54938":14993,"54939":4372,"54940":6033,"54941":15233,"54942":2416,"54943":7653,"54944":6066,"54945":11889,"54946":9504,"54947":3663,"54948":12127,"54949":13925,"54950":2159,"54951":4837,"54952":14820,"54953":1270,"54954":17679,"54955":14298,"54956":8027,"54957":2144,"54958":1953,"54959":17369,"54960":2251,"54961":1122,"54962":9676,"54963":2811,"54964":7834,"54965":10790,"54966":5441,"54967":1175,"54968":16371,"54969":4447,"54970":11235,"54971":837,"54972":15455,"54973":2039,"54974":5393,"54975":7433,"54976":1509,"54977":10513,"54978":8155,"54979":7489,"54980":14516,"54981":2904,"54982":4060,"54983":14563,"54984":18198,"54985":1539,"54986":8942,"54987":2704,"54988":16215,"54989":18170,"54990":1829,"54991":14414,"54992":1148,"54993":12701,"54994":15684,"54995":501,"54996":14581,"54997":4689,"54998":8718,"54999":13044,"55000":9481,"55001":15132,"55002":18029,"55003":14885,"55004":8408,"55005":5992,"55006":13818,"55007":15446,"55008":13648,"55009":12529,"55010":3553,"55011":12526,"55012":710,"55013":1556,"55014":17470,"55015":14978,"55016":290,"55017":8271,"55018":9677,"55019":16932,"55020":5566,"55021":16921,"55022":5452,"55023":15373,"55024":4328,"55025":3506,"55026":9264,"55027":15896,"55028":8502,"55029":1597,"55030":9551,"55031":541,"55032":15832,"55033":6521,"55034":4649,"55035":11416,"55036":8463,"55037":15563,"55038":6978,"55039":872,"55040":11552,"55041":16147,"55042":3864,"55043":12751,"55044":2011,"55045":3199,"55046":7436,"55047":4540,"55048":14932,"55049":8123,"55050":16761,"55051":13770,"55052":9854,"55053":16406,"55054":6618,"55055":7119,"55056":15950,"55057":16268,"55058":13926,"55059":5526,"55060":10815,"55061":2395,"55062":16790,"55063":559,"55064":920,"55065":9488,"55066":14504,"55067":13671,"55068":7994,"55069":7056,"55070":15084,"55071":14343,"55072":1967,"55073":11552,"55074":12396,"55075":4857,"55076":16039,"55077":13881,"55078":18079,"55079":10914,"55080":14211,"55081":11812,"55082":18062,"55083":429,"55084":4584,"55085":5602,"55086":18212,"55087":13955,"55088":4130,"55089":7168,"55090":1004,"55091":17200,"55092":13864,"55093":5803,"55094":4078,"55095":13645,"55096":17976,"55097":12486,"55098":6759,"55099":17921,"55100":18050,"55101":15995,"55102":6901,"55103":12358,"55104":4891,"55105":12104,"55106":15178,"55107":13166,"55108":1030,"55109":8751,"55110":1521,"55111":13154,"55112":11664,"55113":18039,"55114":666,"55115":10486,"55116":5753,"55117":10176,"55118":10968,"55119":4087,"55120":15828,"55121":5349,"55122":14681,"55123":4197,"55124":5872,"55125":6271,"55126":6903,"55127":10036,"55128":6816,"55129":10911,"55130":6787,"55131":14927,"55132":5928,"55133":10026,"55134":1806,"55135":6687,"55136":10153,"55137":12620,"55138":8809,"55139":8417,"55140":6388,"55141":442,"55142":17219,"55143":2101,"55144":18119,"55145":13936,"55146":11850,"55147":17271,"55148":6597,"55149":13339,"55150":3197,"55151":14264,"55152":14979,"55153":339,"55154":3636,"55155":8873,"55156":8048,"55157":15776,"55158":6028,"55159":14075,"55160":17600,"55161":14972,"55162":9516,"55163":510,"55164":3595,"55165":6477,"55166":16588,"55167":14161,"55168":6249,"55169":9864,"55170":4732,"55171":9842,"55172":3217,"55173":14098,"55174":9506,"55175":6074,"55176":3611,"55177":844,"55178":4879,"55179":2083,"55180":12769,"55181":1556,"55182":9615,"55183":11476,"55184":16016,"55185":6896,"55186":12801,"55187":14222,"55188":1615,"55189":7171,"55190":4190,"55191":3253,"55192":15728,"55193":10288,"55194":15170,"55195":7852,"55196":7727,"55197":12151,"55198":4306,"55199":12122,"55200":14273,"55201":10151,"55202":3111,"55203":11961,"55204":8161,"55205":4697,"55206":7832,"55207":7446,"55208":9142,"55209":2644,"55210":7420,"55211":2907,"55212":2147,"55213":10265,"55214":18136,"55215":16138,"55216":13171,"55217":9636,"55218":17857,"55219":7650,"55220":729,"55221":11230,"55222":8854,"55223":8309,"55224":4796,"55225":8324,"55226":16715,"55227":4943,"55228":4842,"55229":14281,"55230":15892,"55231":10106,"55232":13786,"55233":9467,"55234":3637,"55235":12643,"55236":12953,"55237":6766,"55238":79,"55239":13305,"55240":3090,"55241":5713,"55242":7521,"55243":7261,"55244":12256,"55245":13480,"55246":10983,"55247":8359,"55248":4331,"55249":581,"55250":9668,"55251":3914,"55252":7426,"55253":5119,"55254":9105,"55255":4232,"55256":14888,"55257":4373,"55258":3157,"55259":207,"55260":13420,"55261":5900,"55262":6858,"55263":1259,"55264":5804,"55265":4275,"55266":12394,"55267":11048,"55268":6414,"55269":7586,"55270":7726,"55271":18332,"55272":5775,"55273":6550,"55274":13540,"55275":15597,"55276":8123,"55277":14160,"55278":15742,"55279":11499,"55280":3708,"55281":7320,"55282":14371,"55283":11293,"55284":14394,"55285":8679,"55286":7411,"55287":2586,"55288":8776,"55289":6880,"55290":9686,"55291":14117,"55292":9831,"55293":2736,"55294":13469,"55295":5,"55296":14636,"55297":10570,"55298":5905,"55299":16037,"55300":8708,"55301":11447,"55302":766,"55303":15989,"55304":14928,"55305":3007,"55306":17242,"55307":5334,"55308":9790,"55309":15410,"55310":15587,"55311":333,"55312":13502,"55313":16197,"55314":14325,"55315":7753,"55316":6570,"55317":13536,"55318":4526,"55319":13220,"55320":18049,"55321":16379,"55322":13055,"55323":9767,"55324":6122,"55325":2907,"55326":9217,"55327":9584,"55328":7682,"55329":13191,"55330":17310,"55331":532,"55332":3346,"55333":10968,"55334":3025,"55335":267,"55336":17765,"55337":17191,"55338":4064,"55339":5185,"55340":16871,"55341":15919,"55342":7767,"55343":5163,"55344":14597,"55345":5123,"55346":17280,"55347":2316,"55348":5386,"55349":5752,"55350":6486,"55351":10797,"55352":5511,"55353":5225,"55354":14431,"55355":6246,"55356":2339,"55357":18003,"55358":10526,"55359":15253,"55360":1624,"55361":17297,"55362":2393,"55363":16735,"55364":14762,"55365":8717,"55366":14279,"55367":15680,"55368":11657,"55369":7063,"55370":10523,"55371":2211,"55372":14147,"55373":16187,"55374":12120,"55375":2669,"55376":13216,"55377":11815,"55378":2082,"55379":3569,"55380":10796,"55381":5802,"55382":1678,"55383":16827,"55384":1831,"55385":15172,"55386":16800,"55387":6180,"55388":9884,"55389":3376,"55390":18285,"55391":7378,"55392":4142,"55393":15996,"55394":700,"55395":4358,"55396":986,"55397":15463,"55398":10547,"55399":7913,"55400":2675,"55401":444,"55402":2803,"55403":11752,"55404":10522,"55405":17028,"55406":7868,"55407":11880,"55408":16616,"55409":11635,"55410":6521,"55411":1311,"55412":10232,"55413":3216,"55414":15049,"55415":5077,"55416":2435,"55417":442,"55418":11563,"55419":18248,"55420":7940,"55421":10,"55422":3868,"55423":7148,"55424":10158,"55425":11514,"55426":4905,"55427":13692,"55428":4769,"55429":15774,"55430":2119,"55431":9193,"55432":1371,"55433":5506,"55434":16394,"55435":8622,"55436":16491,"55437":16361,"55438":7024,"55439":12866,"55440":15292,"55441":16356,"55442":13405,"55443":5129,"55444":12851,"55445":10364,"55446":2529,"55447":10834,"55448":7411,"55449":15093,"55450":4830,"55451":6987,"55452":15665,"55453":123,"55454":9892,"55455":3009,"55456":6648,"55457":11337,"55458":7569,"55459":12704,"55460":9561,"55461":10659,"55462":7356,"55463":3859,"55464":1020,"55465":3603,"55466":4434,"55467":7935,"55468":5549,"55469":16523,"55470":5416,"55471":101,"55472":17230,"55473":5040,"55474":9803,"55475":16080,"55476":15877,"55477":6936,"55478":7282,"55479":4184,"55480":16710,"55481":2668,"55482":13733,"55483":18107,"55484":5096,"55485":919,"55486":2859,"55487":4283,"55488":2097,"55489":15444,"55490":12155,"55491":17929,"55492":14688,"55493":17882,"55494":8068,"55495":12574,"55496":12091,"55497":10655,"55498":9612,"55499":14602,"55500":10728,"55501":895,"55502":4637,"55503":9007,"55504":10917,"55505":6355,"55506":5890,"55507":6565,"55508":10887,"55509":13133,"55510":16654,"55511":13410,"55512":10468,"55513":13083,"55514":14812,"55515":2348,"55516":8331,"55517":1116,"55518":13720,"55519":5113,"55520":10645,"55521":16431,"55522":11285,"55523":8387,"55524":8688,"55525":1003,"55526":16906,"55527":3473,"55528":8647,"55529":8250,"55530":4617,"55531":17995,"55532":7859,"55533":14971,"55534":13150,"55535":8130,"55536":13816,"55537":7065,"55538":2976,"55539":13175,"55540":9783,"55541":6439,"55542":982,"55543":5345,"55544":17709,"55545":11142,"55546":1627,"55547":9037,"55548":7571,"55549":16661,"55550":8282,"55551":5017,"55552":17450,"55553":7404,"55554":5566,"55555":13723,"55556":3482,"55557":7097,"55558":6490,"55559":12841,"55560":1674,"55561":17959,"55562":3329,"55563":9884,"55564":11766,"55565":586,"55566":16183,"55567":4315,"55568":625,"55569":195,"55570":3326,"55571":14170,"55572":9814,"55573":7387,"55574":17354,"55575":7829,"55576":3168,"55577":18347,"55578":15994,"55579":2795,"55580":7291,"55581":4220,"55582":6211,"55583":2423,"55584":13553,"55585":12365,"55586":12853,"55587":9222,"55588":14320,"55589":12513,"55590":6357,"55591":12604,"55592":2334,"55593":1949,"55594":4780,"55595":2271,"55596":3279,"55597":5224,"55598":7192,"55599":16895,"55600":11803,"55601":4446,"55602":12077,"55603":9558,"55604":7442,"55605":15133,"55606":12171,"55607":641,"55608":12467,"55609":6562,"55610":8901,"55611":9920,"55612":18119,"55613":11110,"55614":885,"55615":12680,"55616":1079,"55617":7344,"55618":8442,"55619":2659,"55620":4190,"55621":14262,"55622":10324,"55623":14318,"55624":10783,"55625":4846,"55626":2373,"55627":17621,"55628":5803,"55629":8937,"55630":13606,"55631":15440,"55632":4525,"55633":1598,"55634":8578,"55635":13908,"55636":7858,"55637":9469,"55638":4194,"55639":15769,"55640":6091,"55641":17898,"55642":13553,"55643":9875,"55644":4051,"55645":17437,"55646":14532,"55647":13094,"55648":12580,"55649":1529,"55650":12552,"55651":7118,"55652":8730,"55653":12983,"55654":17293,"55655":5162,"55656":13370,"55657":1946,"55658":5557,"55659":2987,"55660":10102,"55661":10281,"55662":9198,"55663":14421,"55664":11865,"55665":4344,"55666":429,"55667":5664,"55668":15944,"55669":12366,"55670":2776,"55671":11573,"55672":9183,"55673":8283,"55674":7718,"55675":3532,"55676":9159,"55677":8645,"55678":5499,"55679":15177,"55680":15124,"55681":13817,"55682":10876,"55683":14911,"55684":15813,"55685":7541,"55686":9576,"55687":1820,"55688":9156,"55689":11689,"55690":1165,"55691":5130,"55692":13549,"55693":18191,"55694":7473,"55695":3952,"55696":6609,"55697":13827,"55698":12009,"55699":7121,"55700":15151,"55701":10834,"55702":5076,"55703":7505,"55704":13845,"55705":4949,"55706":5447,"55707":3761,"55708":1035,"55709":2875,"55710":18059,"55711":11481,"55712":9761,"55713":2352,"55714":9481,"55715":15612,"55716":14906,"55717":11141,"55718":14603,"55719":8877,"55720":12601,"55721":5893,"55722":16510,"55723":3185,"55724":14658,"55725":5433,"55726":11987,"55727":7420,"55728":11098,"55729":15487,"55730":1855,"55731":14579,"55732":11373,"55733":6082,"55734":16696,"55735":14771,"55736":16329,"55737":18346,"55738":7384,"55739":15590,"55740":4294,"55741":1973,"55742":5978,"55743":3032,"55744":11330,"55745":10989,"55746":8186,"55747":16108,"55748":10313,"55749":11582,"55750":15404,"55751":1284,"55752":10447,"55753":17246,"55754":11374,"55755":9910,"55756":7921,"55757":11261,"55758":6846,"55759":1600,"55760":2758,"55761":13102,"55762":10768,"55763":15970,"55764":3363,"55765":17012,"55766":14802,"55767":7726,"55768":11758,"55769":14754,"55770":16068,"55771":11526,"55772":16491,"55773":6500,"55774":8710,"55775":15222,"55776":13485,"55777":10545,"55778":17575,"55779":6124,"55780":6835,"55781":8275,"55782":11973,"55783":8873,"55784":3977,"55785":17520,"55786":8739,"55787":11466,"55788":18313,"55789":2704,"55790":16066,"55791":3985,"55792":16894,"55793":2732,"55794":10092,"55795":8361,"55796":15845,"55797":9335,"55798":11102,"55799":243,"55800":6479,"55801":238,"55802":4505,"55803":13962,"55804":9863,"55805":9332,"55806":1659,"55807":12236,"55808":273,"55809":16519,"55810":16918,"55811":13539,"55812":10681,"55813":8749,"55814":310,"55815":16562,"55816":14312,"55817":6540,"55818":16897,"55819":6804,"55820":13729,"55821":2545,"55822":3409,"55823":16743,"55824":4077,"55825":8160,"55826":5922,"55827":6658,"55828":8585,"55829":262,"55830":16596,"55831":5289,"55832":6455,"55833":14869,"55834":10945,"55835":12044,"55836":617,"55837":6503,"55838":9704,"55839":1181,"55840":16809,"55841":10802,"55842":1510,"55843":5935,"55844":13618,"55845":15565,"55846":7524,"55847":16787,"55848":4478,"55849":13117,"55850":1069,"55851":12813,"55852":13539,"55853":8273,"55854":13720,"55855":11363,"55856":14221,"55857":5654,"55858":4812,"55859":17655,"55860":5687,"55861":8262,"55862":8974,"55863":8118,"55864":13530,"55865":14667,"55866":4622,"55867":2585,"55868":2927,"55869":12947,"55870":14846,"55871":705,"55872":6853,"55873":2961,"55874":463,"55875":9460,"55876":8531,"55877":13741,"55878":7789,"55879":16194,"55880":1936,"55881":5175,"55882":11429,"55883":9600,"55884":685,"55885":4766,"55886":11507,"55887":15701,"55888":11057,"55889":4457,"55890":14073,"55891":14453,"55892":18291,"55893":5445,"55894":14862,"55895":16473,"55896":12990,"55897":18202,"55898":1457,"55899":16961,"55900":2500,"55901":6874,"55902":7032,"55903":14650,"55904":16535,"55905":14914,"55906":13464,"55907":6928,"55908":6762,"55909":14185,"55910":18352,"55911":16832,"55912":14863,"55913":9445,"55914":1358,"55915":13719,"55916":3771,"55917":1189,"55918":14114,"55919":17239,"55920":9146,"55921":3503,"55922":7719,"55923":18225,"55924":6551,"55925":13053,"55926":3311,"55927":15393,"55928":1062,"55929":764,"55930":3105,"55931":6696,"55932":1776,"55933":9822,"55934":5466,"55935":14676,"55936":17609,"55937":7998,"55938":17405,"55939":10837,"55940":16167,"55941":11875,"55942":12948,"55943":1971,"55944":2226,"55945":11606,"55946":1019,"55947":6114,"55948":17302,"55949":6524,"55950":2229,"55951":15084,"55952":13371,"55953":11554,"55954":6872,"55955":17465,"55956":9036,"55957":4751,"55958":5524,"55959":5570,"55960":13858,"55961":1123,"55962":2669,"55963":173,"55964":9507,"55965":14857,"55966":10517,"55967":7977,"55968":17243,"55969":16416,"55970":6931,"55971":2002,"55972":18245,"55973":14488,"55974":17006,"55975":12400,"55976":6496,"55977":14658,"55978":9536,"55979":355,"55980":2042,"55981":1416,"55982":12305,"55983":4391,"55984":12019,"55985":17860,"55986":15393,"55987":11972,"55988":10640,"55989":4730,"55990":1567,"55991":3783,"55992":14208,"55993":16979,"55994":14709,"55995":3817,"55996":14040,"55997":6015,"55998":7510,"55999":5310,"56000":3202,"56001":8516,"56002":11620,"56003":6904,"56004":12702,"56005":14241,"56006":15727,"56007":11037,"56008":15125,"56009":6934,"56010":13561,"56011":16546,"56012":5883,"56013":11304,"56014":18054,"56015":10773,"56016":8365,"56017":8292,"56018":16626,"56019":8705,"56020":14922,"56021":4034,"56022":3852,"56023":17189,"56024":12947,"56025":13408,"56026":10378,"56027":14278,"56028":1821,"56029":17495,"56030":14166,"56031":2584,"56032":11294,"56033":13444,"56034":6546,"56035":4550,"56036":14587,"56037":3586,"56038":361,"56039":3880,"56040":15259,"56041":6645,"56042":16929,"56043":301,"56044":1578,"56045":6675,"56046":3921,"56047":3813,"56048":11844,"56049":16895,"56050":5277,"56051":5680,"56052":2976,"56053":11198,"56054":14956,"56055":7288,"56056":889,"56057":17804,"56058":17978,"56059":4044,"56060":14080,"56061":13727,"56062":2649,"56063":17156,"56064":16062,"56065":14642,"56066":5739,"56067":17527,"56068":7922,"56069":6110,"56070":14819,"56071":13341,"56072":7992,"56073":4149,"56074":14244,"56075":11038,"56076":12005,"56077":9213,"56078":7118,"56079":9541,"56080":10645,"56081":8083,"56082":5015,"56083":6250,"56084":8084,"56085":1397,"56086":4487,"56087":13865,"56088":15606,"56089":5915,"56090":2160,"56091":877,"56092":14474,"56093":878,"56094":14448,"56095":508,"56096":5718,"56097":15111,"56098":9360,"56099":4731,"56100":9087,"56101":6214,"56102":3627,"56103":5853,"56104":6380,"56105":13557,"56106":4859,"56107":11765,"56108":6739,"56109":18287,"56110":17879,"56111":15557,"56112":5982,"56113":8501,"56114":16737,"56115":14794,"56116":5792,"56117":3776,"56118":9948,"56119":17019,"56120":5612,"56121":12528,"56122":6368,"56123":16360,"56124":318,"56125":5128,"56126":694,"56127":9008,"56128":9750,"56129":14494,"56130":3477,"56131":1039,"56132":16356,"56133":5204,"56134":8913,"56135":5856,"56136":7876,"56137":13916,"56138":9670,"56139":921,"56140":8493,"56141":1922,"56142":8852,"56143":3392,"56144":2752,"56145":1790,"56146":2325,"56147":6712,"56148":8512,"56149":7925,"56150":9240,"56151":8899,"56152":11593,"56153":14285,"56154":14986,"56155":6650,"56156":9794,"56157":7165,"56158":7598,"56159":7709,"56160":12296,"56161":13221,"56162":12097,"56163":11459,"56164":6785,"56165":15519,"56166":12799,"56167":14496,"56168":16659,"56169":2852,"56170":2758,"56171":11761,"56172":13071,"56173":1562,"56174":7334,"56175":4697,"56176":10012,"56177":11515,"56178":12064,"56179":5887,"56180":11045,"56181":4553,"56182":5983,"56183":15755,"56184":3758,"56185":13362,"56186":12152,"56187":16504,"56188":7049,"56189":10986,"56190":11272,"56191":15263,"56192":1046,"56193":13307,"56194":17231,"56195":14735,"56196":14983,"56197":5436,"56198":1813,"56199":2748,"56200":1922,"56201":8875,"56202":522,"56203":12324,"56204":17686,"56205":12473,"56206":3015,"56207":18271,"56208":1964,"56209":14765,"56210":13585,"56211":8054,"56212":5956,"56213":11585,"56214":8187,"56215":9653,"56216":15642,"56217":8313,"56218":5929,"56219":10752,"56220":1529,"56221":8144,"56222":6648,"56223":1626,"56224":2588,"56225":781,"56226":4575,"56227":3701,"56228":11769,"56229":13479,"56230":16947,"56231":7668,"56232":17858,"56233":13645,"56234":8291,"56235":6801,"56236":14648,"56237":14338,"56238":1558,"56239":14810,"56240":338,"56241":49,"56242":4228,"56243":3252,"56244":16206,"56245":17753,"56246":2679,"56247":5156,"56248":17474,"56249":7197,"56250":18172,"56251":14265,"56252":10355,"56253":232,"56254":8001,"56255":14308,"56256":7270,"56257":18138,"56258":82,"56259":9639,"56260":10131,"56261":4641,"56262":14510,"56263":4776,"56264":12217,"56265":17254,"56266":7260,"56267":1956,"56268":13953,"56269":12011,"56270":2938,"56271":92,"56272":15761,"56273":14288,"56274":10893,"56275":7011,"56276":10179,"56277":8738,"56278":4992,"56279":1708,"56280":17980,"56281":1704,"56282":13685,"56283":2408,"56284":2007,"56285":14075,"56286":14288,"56287":4427,"56288":6238,"56289":11108,"56290":4748,"56291":9163,"56292":1860,"56293":3631,"56294":1732,"56295":7900,"56296":10174,"56297":16234,"56298":12532,"56299":11297,"56300":16355,"56301":16944,"56302":741,"56303":17880,"56304":14167,"56305":4844,"56306":15785,"56307":14051,"56308":17952,"56309":4664,"56310":3035,"56311":4477,"56312":310,"56313":5915,"56314":502,"56315":16098,"56316":13851,"56317":13928,"56318":10018,"56319":7661,"56320":15108,"56321":3530,"56322":357,"56323":4670,"56324":12583,"56325":16198,"56326":6574,"56327":18246,"56328":7960,"56329":15361,"56330":2077,"56331":6036,"56332":9982,"56333":14067,"56334":9143,"56335":4198,"56336":11716,"56337":6506,"56338":10023,"56339":7552,"56340":3669,"56341":7927,"56342":5665,"56343":2671,"56344":4685,"56345":6817,"56346":13388,"56347":9362,"56348":3818,"56349":16771,"56350":10238,"56351":15203,"56352":9888,"56353":1673,"56354":8173,"56355":16085,"56356":16438,"56357":18006,"56358":2664,"56359":17398,"56360":11383,"56361":10979,"56362":16644,"56363":882,"56364":17899,"56365":3537,"56366":13129,"56367":18326,"56368":16862,"56369":545,"56370":3790,"56371":7515,"56372":15718,"56373":8533,"56374":14672,"56375":7969,"56376":8452,"56377":10567,"56378":1482,"56379":4143,"56380":3287,"56381":10952,"56382":7456,"56383":3717,"56384":457,"56385":5927,"56386":1179,"56387":4308,"56388":5266,"56389":874,"56390":12414,"56391":14777,"56392":18344,"56393":9594,"56394":5759,"56395":3402,"56396":7872,"56397":8141,"56398":7228,"56399":3626,"56400":6955,"56401":11824,"56402":92,"56403":7881,"56404":10067,"56405":7129,"56406":11135,"56407":344,"56408":3836,"56409":10810,"56410":8247,"56411":4307,"56412":11373,"56413":10981,"56414":7756,"56415":15064,"56416":13359,"56417":3295,"56418":735,"56419":4957,"56420":7898,"56421":15112,"56422":16373,"56423":16252,"56424":2467,"56425":5276,"56426":13541,"56427":4705,"56428":12836,"56429":17737,"56430":11383,"56431":10862,"56432":6019,"56433":9177,"56434":15912,"56435":17270,"56436":6772,"56437":10658,"56438":9043,"56439":8560,"56440":9863,"56441":8563,"56442":14658,"56443":11401,"56444":7020,"56445":4658,"56446":11375,"56447":17345,"56448":1238,"56449":4559,"56450":13193,"56451":956,"56452":1246,"56453":11617,"56454":16141,"56455":8567,"56456":12189,"56457":6719,"56458":8284,"56459":12895,"56460":18158,"56461":4202,"56462":1541,"56463":14650,"56464":17078,"56465":11444,"56466":15019,"56467":15444,"56468":615,"56469":2231,"56470":12013,"56471":9194,"56472":14593,"56473":220,"56474":5912,"56475":6459,"56476":17261,"56477":6584,"56478":10473,"56479":14033,"56480":9169,"56481":6367,"56482":16048,"56483":681,"56484":8612,"56485":17081,"56486":5375,"56487":11137,"56488":3420,"56489":16001,"56490":16976,"56491":6829,"56492":16503,"56493":17046,"56494":695,"56495":17344,"56496":12784,"56497":4148,"56498":5036,"56499":6091,"56500":6550,"56501":6335,"56502":10262,"56503":1686,"56504":17149,"56505":8761,"56506":1419,"56507":2023,"56508":8874,"56509":1642,"56510":13823,"56511":6337,"56512":14220,"56513":8439,"56514":4891,"56515":9315,"56516":1649,"56517":2705,"56518":10234,"56519":12047,"56520":13149,"56521":10746,"56522":11289,"56523":15002,"56524":13995,"56525":17902,"56526":3055,"56527":14053,"56528":1213,"56529":8277,"56530":4647,"56531":15206,"56532":13753,"56533":5055,"56534":17922,"56535":11586,"56536":614,"56537":9346,"56538":4144,"56539":17552,"56540":9779,"56541":16415,"56542":4858,"56543":1110,"56544":5122,"56545":675,"56546":10950,"56547":17822,"56548":14495,"56549":2653,"56550":18243,"56551":7534,"56552":16014,"56553":10848,"56554":10338,"56555":15743,"56556":1879,"56557":15057,"56558":14071,"56559":17802,"56560":8835,"56561":12932,"56562":17386,"56563":11365,"56564":9394,"56565":1117,"56566":16904,"56567":14422,"56568":5970,"56569":6635,"56570":10643,"56571":2705,"56572":9250,"56573":1306,"56574":9135,"56575":17477,"56576":16460,"56577":7662,"56578":15095,"56579":17365,"56580":7302,"56581":13878,"56582":10007,"56583":11640,"56584":8961,"56585":9225,"56586":9328,"56587":13183,"56588":18019,"56589":6636,"56590":16017,"56591":16612,"56592":592,"56593":7733,"56594":11594,"56595":8583,"56596":578,"56597":816,"56598":14441,"56599":3494,"56600":5752,"56601":13663,"56602":9475,"56603":4378,"56604":1521,"56605":12662,"56606":1735,"56607":6815,"56608":12467,"56609":1087,"56610":17294,"56611":16987,"56612":17794,"56613":17667,"56614":17279,"56615":8748,"56616":17945,"56617":5816,"56618":4320,"56619":961,"56620":6056,"56621":6759,"56622":7997,"56623":12394,"56624":14798,"56625":14131,"56626":17169,"56627":3735,"56628":173,"56629":16100,"56630":5296,"56631":6370,"56632":1183,"56633":17409,"56634":10328,"56635":14801,"56636":12574,"56637":13562,"56638":18254,"56639":7718,"56640":9066,"56641":1384,"56642":7486,"56643":1781,"56644":16909,"56645":7906,"56646":11674,"56647":6766,"56648":2575,"56649":12332,"56650":16937,"56651":9291,"56652":14805,"56653":16437,"56654":9923,"56655":12698,"56656":12195,"56657":2456,"56658":9080,"56659":7067,"56660":9242,"56661":9959,"56662":8539,"56663":5545,"56664":311,"56665":16612,"56666":1374,"56667":11654,"56668":3454,"56669":12244,"56670":5709,"56671":2318,"56672":9738,"56673":517,"56674":1318,"56675":12493,"56676":1882,"56677":7057,"56678":16723,"56679":17564,"56680":13761,"56681":9248,"56682":6435,"56683":9163,"56684":7747,"56685":4421,"56686":6203,"56687":11983,"56688":15442,"56689":124,"56690":4190,"56691":3868,"56692":17337,"56693":17876,"56694":8652,"56695":10539,"56696":13967,"56697":17323,"56698":16015,"56699":13631,"56700":16150,"56701":5465,"56702":2049,"56703":33,"56704":2733,"56705":2211,"56706":12342,"56707":5797,"56708":3716,"56709":16742,"56710":1086,"56711":16194,"56712":4626,"56713":14138,"56714":18304,"56715":5326,"56716":6922,"56717":8765,"56718":5736,"56719":16708,"56720":2280,"56721":17040,"56722":2339,"56723":10380,"56724":10851,"56725":2745,"56726":13940,"56727":12714,"56728":16892,"56729":16356,"56730":10414,"56731":9632,"56732":609,"56733":13386,"56734":9224,"56735":6930,"56736":12630,"56737":3198,"56738":6333,"56739":17609,"56740":15008,"56741":13793,"56742":15231,"56743":3333,"56744":12375,"56745":10196,"56746":10371,"56747":13932,"56748":3790,"56749":5510,"56750":4900,"56751":15670,"56752":12560,"56753":18065,"56754":6154,"56755":9035,"56756":17414,"56757":5528,"56758":4542,"56759":9039,"56760":5463,"56761":4358,"56762":17377,"56763":220,"56764":17424,"56765":7037,"56766":17319,"56767":1978,"56768":16784,"56769":7160,"56770":18235,"56771":16850,"56772":10158,"56773":14631,"56774":15686,"56775":14151,"56776":15823,"56777":14478,"56778":2101,"56779":6514,"56780":4687,"56781":13960,"56782":13529,"56783":14034,"56784":15355,"56785":5659,"56786":1583,"56787":1968,"56788":3514,"56789":10634,"56790":15161,"56791":9942,"56792":15148,"56793":12579,"56794":11055,"56795":12592,"56796":5921,"56797":11472,"56798":8632,"56799":6395,"56800":17890,"56801":2998,"56802":5543,"56803":8969,"56804":1798,"56805":13678,"56806":17026,"56807":8720,"56808":14532,"56809":11697,"56810":5228,"56811":13805,"56812":3751,"56813":16091,"56814":15533,"56815":16855,"56816":6709,"56817":9427,"56818":11359,"56819":6064,"56820":1296,"56821":1576,"56822":325,"56823":4504,"56824":3973,"56825":15101,"56826":2478,"56827":13003,"56828":793,"56829":13229,"56830":10898,"56831":923,"56832":698,"56833":8686,"56834":13147,"56835":7140,"56836":8203,"56837":5329,"56838":17563,"56839":8402,"56840":2863,"56841":7336,"56842":5966,"56843":3007,"56844":4445,"56845":5949,"56846":11205,"56847":18255,"56848":4943,"56849":11981,"56850":2194,"56851":16729,"56852":17249,"56853":18302,"56854":16088,"56855":14141,"56856":10349,"56857":11847,"56858":4729,"56859":9943,"56860":11030,"56861":12219,"56862":7080,"56863":6562,"56864":12163,"56865":6799,"56866":4921,"56867":15904,"56868":10198,"56869":487,"56870":10301,"56871":2920,"56872":17178,"56873":7565,"56874":5988,"56875":2501,"56876":359,"56877":1945,"56878":5810,"56879":2325,"56880":7599,"56881":15129,"56882":15057,"56883":15137,"56884":7680,"56885":15428,"56886":1997,"56887":15513,"56888":3120,"56889":1091,"56890":12772,"56891":12680,"56892":18037,"56893":8039,"56894":5984,"56895":5691,"56896":1761,"56897":13386,"56898":3527,"56899":10389,"56900":5061,"56901":6322,"56902":1029,"56903":16768,"56904":11143,"56905":5006,"56906":7709,"56907":15729,"56908":2806,"56909":17526,"56910":10353,"56911":5516,"56912":16905,"56913":3915,"56914":17695,"56915":13738,"56916":4338,"56917":17890,"56918":3207,"56919":13577,"56920":18191,"56921":3681,"56922":16392,"56923":12645,"56924":483,"56925":11080,"56926":17479,"56927":9768,"56928":16194,"56929":12104,"56930":10254,"56931":6263,"56932":10728,"56933":12265,"56934":17766,"56935":14022,"56936":12451,"56937":5813,"56938":15686,"56939":191,"56940":7263,"56941":16696,"56942":127,"56943":14835,"56944":5901,"56945":2436,"56946":8778,"56947":12314,"56948":3678,"56949":4249,"56950":13384,"56951":12081,"56952":2265,"56953":2455,"56954":6250,"56955":2795,"56956":10901,"56957":5538,"56958":1920,"56959":17676,"56960":11220,"56961":12522,"56962":2750,"56963":7891,"56964":18288,"56965":1936,"56966":604,"56967":13337,"56968":8288,"56969":6558,"56970":13105,"56971":170,"56972":4014,"56973":7030,"56974":18269,"56975":8465,"56976":12849,"56977":1515,"56978":17992,"56979":6249,"56980":9101,"56981":8348,"56982":6580,"56983":11589,"56984":6845,"56985":7781,"56986":12263,"56987":311,"56988":6433,"56989":16618,"56990":4822,"56991":3959,"56992":6156,"56993":3971,"56994":7335,"56995":16332,"56996":8358,"56997":1597,"56998":10213,"56999":11942,"57000":1883,"57001":10915,"57002":1984,"57003":2067,"57004":3032,"57005":8240,"57006":12984,"57007":6445,"57008":3731,"57009":11552,"57010":11421,"57011":2272,"57012":17796,"57013":15211,"57014":10755,"57015":8855,"57016":6972,"57017":17929,"57018":9734,"57019":16873,"57020":11756,"57021":1790,"57022":13031,"57023":8336,"57024":17870,"57025":17952,"57026":9478,"57027":11143,"57028":3537,"57029":9182,"57030":5043,"57031":14901,"57032":6509,"57033":15124,"57034":198,"57035":1639,"57036":10493,"57037":11523,"57038":11604,"57039":11776,"57040":5595,"57041":8043,"57042":6739,"57043":14649,"57044":6716,"57045":4191,"57046":17808,"57047":10775,"57048":6507,"57049":4067,"57050":15274,"57051":12663,"57052":13650,"57053":6630,"57054":4113,"57055":107,"57056":13108,"57057":14430,"57058":1533,"57059":6826,"57060":1965,"57061":2320,"57062":1992,"57063":11061,"57064":17697,"57065":4668,"57066":8716,"57067":4657,"57068":3888,"57069":5872,"57070":4764,"57071":8801,"57072":12484,"57073":16681,"57074":3394,"57075":895,"57076":17937,"57077":14974,"57078":15786,"57079":16834,"57080":12767,"57081":6815,"57082":2167,"57083":5205,"57084":13390,"57085":3110,"57086":8121,"57087":16905,"57088":13051,"57089":9122,"57090":14385,"57091":2294,"57092":13353,"57093":12776,"57094":119,"57095":740,"57096":3248,"57097":5426,"57098":11386,"57099":1451,"57100":16498,"57101":6290,"57102":10173,"57103":3095,"57104":16070,"57105":15249,"57106":13784,"57107":17256,"57108":10557,"57109":13459,"57110":16398,"57111":8939,"57112":169,"57113":7993,"57114":5365,"57115":15384,"57116":16910,"57117":18344,"57118":7345,"57119":5364,"57120":1403,"57121":13894,"57122":15372,"57123":10483,"57124":2665,"57125":9333,"57126":3246,"57127":5866,"57128":6768,"57129":8122,"57130":11129,"57131":15819,"57132":14652,"57133":1160,"57134":858,"57135":2396,"57136":2426,"57137":13371,"57138":1206,"57139":516,"57140":6619,"57141":3367,"57142":1755,"57143":937,"57144":925,"57145":16534,"57146":59,"57147":904,"57148":9192,"57149":8229,"57150":15114,"57151":10088,"57152":6148,"57153":9507,"57154":2722,"57155":6540,"57156":1309,"57157":4231,"57158":4778,"57159":6312,"57160":8949,"57161":4730,"57162":1078,"57163":3946,"57164":13646,"57165":4300,"57166":7463,"57167":6107,"57168":2470,"57169":12217,"57170":351,"57171":5657,"57172":2096,"57173":12959,"57174":15803,"57175":5582,"57176":11270,"57177":11,"57178":1772,"57179":12748,"57180":17523,"57181":8886,"57182":10472,"57183":14382,"57184":12412,"57185":16081,"57186":16235,"57187":11176,"57188":9171,"57189":3061,"57190":16747,"57191":1318,"57192":3300,"57193":14392,"57194":42,"57195":9400,"57196":2834,"57197":17257,"57198":4124,"57199":4461,"57200":16563,"57201":10667,"57202":10753,"57203":16101,"57204":15347,"57205":15506,"57206":7100,"57207":16761,"57208":14502,"57209":8641,"57210":706,"57211":10257,"57212":10953,"57213":16181,"57214":18043,"57215":8488,"57216":5407,"57217":7213,"57218":10169,"57219":5124,"57220":17477,"57221":11363,"57222":15484,"57223":11324,"57224":12062,"57225":15162,"57226":6831,"57227":5527,"57228":6841,"57229":1344,"57230":11562,"57231":8754,"57232":927,"57233":2215,"57234":3666,"57235":3330,"57236":1462,"57237":1937,"57238":3278,"57239":1559,"57240":15453,"57241":1750,"57242":6394,"57243":17172,"57244":7736,"57245":10926,"57246":5717,"57247":14276,"57248":13591,"57249":5040,"57250":7646,"57251":14465,"57252":15289,"57253":13676,"57254":9276,"57255":10631,"57256":2589,"57257":11573,"57258":12553,"57259":7486,"57260":9634,"57261":11546,"57262":12324,"57263":9961,"57264":3161,"57265":16892,"57266":11451,"57267":11710,"57268":9108,"57269":3137,"57270":12109,"57271":10822,"57272":10096,"57273":582,"57274":2625,"57275":4740,"57276":9545,"57277":3111,"57278":11131,"57279":12808,"57280":18010,"57281":4259,"57282":6437,"57283":9848,"57284":2983,"57285":7443,"57286":2831,"57287":17780,"57288":16396,"57289":13843,"57290":3841,"57291":8391,"57292":8079,"57293":1532,"57294":14115,"57295":11547,"57296":4509,"57297":3275,"57298":314,"57299":2398,"57300":15166,"57301":14239,"57302":12772,"57303":452,"57304":14895,"57305":15351,"57306":8600,"57307":7628,"57308":13808,"57309":9227,"57310":10043,"57311":14603,"57312":16247,"57313":11520,"57314":3102,"57315":17416,"57316":11625,"57317":2524,"57318":9502,"57319":17212,"57320":9177,"57321":1660,"57322":12449,"57323":8600,"57324":13886,"57325":10363,"57326":15836,"57327":11945,"57328":2374,"57329":1584,"57330":3919,"57331":4997,"57332":4065,"57333":10930,"57334":17431,"57335":14299,"57336":17360,"57337":15859,"57338":10325,"57339":8226,"57340":6100,"57341":2951,"57342":1776,"57343":3518,"57344":4571,"57345":8683,"57346":11864,"57347":16315,"57348":17958,"57349":10839,"57350":14109,"57351":2393,"57352":8658,"57353":4127,"57354":9716,"57355":11852,"57356":909,"57357":16862,"57358":7632,"57359":7055,"57360":1362,"57361":8618,"57362":13701,"57363":8165,"57364":284,"57365":16045,"57366":14685,"57367":11471,"57368":10820,"57369":16454,"57370":6296,"57371":4169,"57372":10943,"57373":10826,"57374":439,"57375":14905,"57376":18104,"57377":425,"57378":7023,"57379":15758,"57380":2572,"57381":17816,"57382":6859,"57383":5614,"57384":15092,"57385":3266,"57386":765,"57387":5820,"57388":4800,"57389":4266,"57390":13711,"57391":4935,"57392":10940,"57393":7700,"57394":14180,"57395":18125,"57396":8073,"57397":2282,"57398":4567,"57399":16257,"57400":15631,"57401":14816,"57402":4477,"57403":18241,"57404":16761,"57405":5254,"57406":2562,"57407":11904,"57408":13731,"57409":3483,"57410":5077,"57411":9628,"57412":5646,"57413":2745,"57414":11956,"57415":9689,"57416":15201,"57417":14413,"57418":13159,"57419":10819,"57420":9243,"57421":10794,"57422":11154,"57423":7644,"57424":6002,"57425":9353,"57426":441,"57427":9050,"57428":13345,"57429":8802,"57430":11638,"57431":5259,"57432":15808,"57433":9759,"57434":17595,"57435":15445,"57436":7076,"57437":2472,"57438":13136,"57439":2566,"57440":474,"57441":5451,"57442":13013,"57443":4485,"57444":16070,"57445":12149,"57446":8593,"57447":141,"57448":6101,"57449":4382,"57450":1336,"57451":13725,"57452":14171,"57453":5365,"57454":7868,"57455":11652,"57456":56,"57457":17824,"57458":14672,"57459":17202,"57460":6779,"57461":16408,"57462":7631,"57463":4474,"57464":7804,"57465":13017,"57466":9175,"57467":4101,"57468":12013,"57469":14178,"57470":10363,"57471":12217,"57472":2130,"57473":12605,"57474":12027,"57475":15542,"57476":1374,"57477":3196,"57478":2348,"57479":15950,"57480":9218,"57481":15020,"57482":10580,"57483":6617,"57484":1840,"57485":7108,"57486":7081,"57487":10060,"57488":4332,"57489":8607,"57490":3207,"57491":5208,"57492":617,"57493":11676,"57494":14671,"57495":11771,"57496":4828,"57497":8190,"57498":1115,"57499":14801,"57500":12720,"57501":6360,"57502":4444,"57503":11452,"57504":17962,"57505":5826,"57506":4590,"57507":1157,"57508":14405,"57509":13430,"57510":17320,"57511":5663,"57512":6546,"57513":8194,"57514":5581,"57515":1291,"57516":4766,"57517":18286,"57518":745,"57519":8105,"57520":6959,"57521":486,"57522":11809,"57523":3039,"57524":9588,"57525":13345,"57526":3259,"57527":7899,"57528":11516,"57529":16205,"57530":2097,"57531":1729,"57532":7772,"57533":1346,"57534":1930,"57535":18165,"57536":13559,"57537":7963,"57538":15490,"57539":13376,"57540":2526,"57541":6228,"57542":15192,"57543":15915,"57544":8212,"57545":16631,"57546":10350,"57547":15816,"57548":9890,"57549":7052,"57550":8856,"57551":17708,"57552":13339,"57553":11857,"57554":13724,"57555":17275,"57556":4082,"57557":7587,"57558":2428,"57559":1207,"57560":9097,"57561":929,"57562":793,"57563":8344,"57564":6289,"57565":10534,"57566":17263,"57567":5663,"57568":16655,"57569":5945,"57570":779,"57571":9689,"57572":5515,"57573":8334,"57574":5358,"57575":9481,"57576":16738,"57577":2378,"57578":11345,"57579":14821,"57580":4513,"57581":1334,"57582":9547,"57583":4549,"57584":12354,"57585":12851,"57586":9876,"57587":5475,"57588":4325,"57589":5811,"57590":4208,"57591":1798,"57592":8894,"57593":14941,"57594":11401,"57595":795,"57596":14025,"57597":13518,"57598":13698,"57599":16153,"57600":15795,"57601":11486,"57602":9439,"57603":14452,"57604":10153,"57605":212,"57606":1596,"57607":4829,"57608":12514,"57609":6463,"57610":8129,"57611":3098,"57612":8318,"57613":4902,"57614":8512,"57615":14470,"57616":16064,"57617":3142,"57618":14358,"57619":3177,"57620":15572,"57621":5696,"57622":5321,"57623":15998,"57624":2038,"57625":11606,"57626":2914,"57627":622,"57628":16322,"57629":11022,"57630":16144,"57631":8349,"57632":1519,"57633":5248,"57634":15798,"57635":12057,"57636":3138,"57637":12231,"57638":17425,"57639":9090,"57640":11175,"57641":16528,"57642":16273,"57643":17870,"57644":1111,"57645":6861,"57646":11100,"57647":7118,"57648":4190,"57649":6136,"57650":9801,"57651":13673,"57652":4200,"57653":17888,"57654":10616,"57655":3584,"57656":9439,"57657":6121,"57658":6496,"57659":2812,"57660":12913,"57661":2121,"57662":5370,"57663":12008,"57664":10583,"57665":1223,"57666":7058,"57667":2933,"57668":7415,"57669":3519,"57670":12221,"57671":17669,"57672":17788,"57673":12837,"57674":16382,"57675":12551,"57676":12156,"57677":11706,"57678":10741,"57679":18267,"57680":13096,"57681":7728,"57682":12379,"57683":604,"57684":2467,"57685":3387,"57686":15712,"57687":8662,"57688":13936,"57689":15072,"57690":3527,"57691":4975,"57692":10176,"57693":1946,"57694":1925,"57695":16258,"57696":3441,"57697":5147,"57698":11399,"57699":10256,"57700":4993,"57701":11292,"57702":8349,"57703":9516,"57704":1745,"57705":8557,"57706":8656,"57707":565,"57708":6305,"57709":6237,"57710":8754,"57711":5034,"57712":16917,"57713":6045,"57714":2880,"57715":12500,"57716":7109,"57717":1231,"57718":16957,"57719":10124,"57720":11939,"57721":1847,"57722":2804,"57723":16427,"57724":2489,"57725":2863,"57726":3851,"57727":13820,"57728":16806,"57729":9891,"57730":8493,"57731":17509,"57732":13314,"57733":5482,"57734":3197,"57735":5579,"57736":5014,"57737":10707,"57738":10842,"57739":9192,"57740":6626,"57741":15324,"57742":14005,"57743":17567,"57744":7618,"57745":8780,"57746":7158,"57747":10806,"57748":1149,"57749":12075,"57750":11777,"57751":9086,"57752":7189,"57753":11430,"57754":7133,"57755":16407,"57756":17819,"57757":12933,"57758":17572,"57759":13759,"57760":7348,"57761":2600,"57762":10468,"57763":3858,"57764":10802,"57765":5117,"57766":645,"57767":5377,"57768":9102,"57769":16587,"57770":9663,"57771":3444,"57772":871,"57773":7175,"57774":11717,"57775":13063,"57776":5202,"57777":13854,"57778":11899,"57779":4051,"57780":5818,"57781":11776,"57782":9544,"57783":4603,"57784":5989,"57785":11454,"57786":4276,"57787":124,"57788":5167,"57789":8494,"57790":11228,"57791":17226,"57792":12304,"57793":3838,"57794":3805,"57795":13865,"57796":11080,"57797":7958,"57798":14683,"57799":813,"57800":9981,"57801":9006,"57802":8139,"57803":7722,"57804":11354,"57805":10600,"57806":1627,"57807":7236,"57808":12913,"57809":16439,"57810":4064,"57811":15852,"57812":14481,"57813":12649,"57814":13002,"57815":13705,"57816":14158,"57817":3795,"57818":9828,"57819":14759,"57820":4455,"57821":13063,"57822":15224,"57823":6162,"57824":11923,"57825":7477,"57826":12312,"57827":18301,"57828":9115,"57829":16064,"57830":784,"57831":13290,"57832":13781,"57833":6428,"57834":16632,"57835":204,"57836":10952,"57837":8515,"57838":14225,"57839":4709,"57840":17493,"57841":5554,"57842":6680,"57843":7763,"57844":12561,"57845":16069,"57846":11332,"57847":518,"57848":7112,"57849":2212,"57850":1298,"57851":14343,"57852":3613,"57853":11046,"57854":7121,"57855":8512,"57856":3265,"57857":6572,"57858":198,"57859":2173,"57860":10961,"57861":13862,"57862":9342,"57863":13412,"57864":8311,"57865":13468,"57866":1701,"57867":2300,"57868":9568,"57869":7560,"57870":729,"57871":1567,"57872":6568,"57873":9365,"57874":12062,"57875":1665,"57876":11887,"57877":3462,"57878":9681,"57879":11807,"57880":6936,"57881":10779,"57882":6719,"57883":16145,"57884":6579,"57885":791,"57886":1463,"57887":12279,"57888":6899,"57889":4299,"57890":4057,"57891":1490,"57892":18101,"57893":888,"57894":11339,"57895":15875,"57896":2797,"57897":2685,"57898":2034,"57899":4953,"57900":3273,"57901":9294,"57902":1598,"57903":370,"57904":3306,"57905":7555,"57906":5247,"57907":17073,"57908":4295,"57909":16155,"57910":15266,"57911":5057,"57912":2464,"57913":711,"57914":14980,"57915":8661,"57916":12210,"57917":5126,"57918":12982,"57919":17004,"57920":7878,"57921":10348,"57922":720,"57923":16852,"57924":2122,"57925":15454,"57926":4420,"57927":5647,"57928":14321,"57929":13644,"57930":3970,"57931":7393,"57932":10320,"57933":3305,"57934":17327,"57935":9024,"57936":10532,"57937":5807,"57938":3730,"57939":4094,"57940":10880,"57941":14256,"57942":3670,"57943":14303,"57944":10162,"57945":6171,"57946":15008,"57947":5410,"57948":8441,"57949":9905,"57950":18192,"57951":17517,"57952":7173,"57953":961,"57954":7286,"57955":7255,"57956":14599,"57957":12947,"57958":2921,"57959":12924,"57960":10354,"57961":8745,"57962":17967,"57963":4387,"57964":16125,"57965":7598,"57966":388,"57967":6800,"57968":18255,"57969":11704,"57970":7570,"57971":6300,"57972":1408,"57973":2060,"57974":6678,"57975":15045,"57976":7961,"57977":7840,"57978":11146,"57979":6351,"57980":4015,"57981":12787,"57982":4409,"57983":18254,"57984":2655,"57985":13395,"57986":6607,"57987":3960,"57988":5143,"57989":15689,"57990":8308,"57991":6662,"57992":1929,"57993":2735,"57994":2856,"57995":8787,"57996":1862,"57997":5821,"57998":3188,"57999":17679,"58000":15510,"58001":9680,"58002":6470,"58003":15194,"58004":11449,"58005":6688,"58006":14891,"58007":3736,"58008":11773,"58009":13177,"58010":69,"58011":6288,"58012":371,"58013":13982,"58014":10637,"58015":9089,"58016":13874,"58017":15268,"58018":17806,"58019":17536,"58020":11090,"58021":17403,"58022":10008,"58023":5578,"58024":8377,"58025":9143,"58026":4140,"58027":17726,"58028":6578,"58029":615,"58030":4753,"58031":1730,"58032":15849,"58033":14329,"58034":4900,"58035":2962,"58036":8445,"58037":8498,"58038":17801,"58039":1046,"58040":15946,"58041":15810,"58042":5860,"58043":1713,"58044":1770,"58045":16248,"58046":5986,"58047":1162,"58048":11817,"58049":8039,"58050":3466,"58051":7284,"58052":7535,"58053":5973,"58054":5600,"58055":8899,"58056":16362,"58057":18319,"58058":9555,"58059":8398,"58060":11875,"58061":11616,"58062":11717,"58063":3421,"58064":12446,"58065":7214,"58066":5150,"58067":13979,"58068":18258,"58069":11319,"58070":16500,"58071":15599,"58072":2175,"58073":10416,"58074":13400,"58075":2525,"58076":2625,"58077":10298,"58078":17115,"58079":1023,"58080":4429,"58081":7424,"58082":3840,"58083":6120,"58084":12911,"58085":16674,"58086":16989,"58087":15357,"58088":2264,"58089":5651,"58090":3186,"58091":8065,"58092":12976,"58093":10212,"58094":6734,"58095":10235,"58096":10853,"58097":9341,"58098":1269,"58099":11893,"58100":7837,"58101":12261,"58102":3729,"58103":5426,"58104":2952,"58105":3559,"58106":9486,"58107":7293,"58108":3909,"58109":3843,"58110":3517,"58111":18104,"58112":15948,"58113":7288,"58114":1415,"58115":1108,"58116":10784,"58117":3029,"58118":13404,"58119":16285,"58120":912,"58121":6425,"58122":586,"58123":1112,"58124":12791,"58125":5774,"58126":7027,"58127":8940,"58128":6006,"58129":13278,"58130":5844,"58131":3634,"58132":13797,"58133":551,"58134":13999,"58135":15822,"58136":8608,"58137":5710,"58138":11434,"58139":17890,"58140":11239,"58141":14627,"58142":13577,"58143":11719,"58144":15588,"58145":4239,"58146":5757,"58147":14759,"58148":3812,"58149":8556,"58150":633,"58151":1880,"58152":421,"58153":18023,"58154":2796,"58155":595,"58156":4836,"58157":14539,"58158":1067,"58159":7048,"58160":8199,"58161":14296,"58162":2040,"58163":1108,"58164":11395,"58165":6855,"58166":8073,"58167":15371,"58168":2372,"58169":4308,"58170":14390,"58171":2248,"58172":9568,"58173":448,"58174":562,"58175":17861,"58176":8229,"58177":14146,"58178":7912,"58179":92,"58180":6932,"58181":5650,"58182":10508,"58183":1808,"58184":16096,"58185":8771,"58186":2679,"58187":3059,"58188":10977,"58189":16091,"58190":10869,"58191":13638,"58192":15960,"58193":5485,"58194":9590,"58195":5453,"58196":1744,"58197":12110,"58198":16306,"58199":13793,"58200":8998,"58201":9938,"58202":9752,"58203":18123,"58204":1072,"58205":12025,"58206":1522,"58207":13840,"58208":17874,"58209":689,"58210":1480,"58211":7902,"58212":4908,"58213":12596,"58214":14365,"58215":7846,"58216":9076,"58217":2362,"58218":7797,"58219":217,"58220":9567,"58221":6675,"58222":11291,"58223":3868,"58224":15054,"58225":13108,"58226":5381,"58227":11110,"58228":10405,"58229":7727,"58230":8268,"58231":882,"58232":7695,"58233":6766,"58234":15285,"58235":8371,"58236":10067,"58237":6901,"58238":2709,"58239":7225,"58240":2402,"58241":16270,"58242":6834,"58243":3879,"58244":8315,"58245":3603,"58246":16494,"58247":12430,"58248":7082,"58249":14482,"58250":10451,"58251":7892,"58252":9024,"58253":5336,"58254":3919,"58255":7189,"58256":9737,"58257":4956,"58258":498,"58259":17281,"58260":6688,"58261":18097,"58262":13854,"58263":17410,"58264":1096,"58265":1769,"58266":2236,"58267":7433,"58268":7874,"58269":3437,"58270":6535,"58271":7177,"58272":6817,"58273":14535,"58274":4803,"58275":18326,"58276":9372,"58277":5831,"58278":8098,"58279":4923,"58280":3958,"58281":3256,"58282":16918,"58283":6599,"58284":2560,"58285":16349,"58286":10111,"58287":11969,"58288":16213,"58289":2407,"58290":10069,"58291":8906,"58292":1568,"58293":14757,"58294":9885,"58295":1622,"58296":8732,"58297":4016,"58298":2596,"58299":3495,"58300":6912,"58301":1794,"58302":3913,"58303":8249,"58304":11841,"58305":1495,"58306":16843,"58307":2264,"58308":7348,"58309":4711,"58310":10576,"58311":17649,"58312":8932,"58313":4562,"58314":8736,"58315":12920,"58316":13587,"58317":13201,"58318":13725,"58319":11766,"58320":3421,"58321":12219,"58322":710,"58323":15247,"58324":6721,"58325":18312,"58326":6162,"58327":18079,"58328":10502,"58329":1910,"58330":7897,"58331":1493,"58332":6098,"58333":5289,"58334":1314,"58335":12511,"58336":5871,"58337":2279,"58338":2120,"58339":13897,"58340":11813,"58341":7812,"58342":9832,"58343":16051,"58344":5383,"58345":7137,"58346":16226,"58347":6779,"58348":3156,"58349":13497,"58350":10315,"58351":4202,"58352":17771,"58353":3923,"58354":13923,"58355":4119,"58356":14383,"58357":14006,"58358":15440,"58359":3509,"58360":4319,"58361":16823,"58362":15815,"58363":12021,"58364":9044,"58365":1650,"58366":5222,"58367":16618,"58368":3367,"58369":7063,"58370":9004,"58371":4935,"58372":14619,"58373":12386,"58374":17199,"58375":8645,"58376":3145,"58377":7866,"58378":12898,"58379":6374,"58380":18203,"58381":5033,"58382":8317,"58383":147,"58384":14016,"58385":4189,"58386":15303,"58387":2986,"58388":8825,"58389":14246,"58390":15339,"58391":8404,"58392":4751,"58393":3448,"58394":14924,"58395":3185,"58396":12547,"58397":14575,"58398":6860,"58399":10465,"58400":4399,"58401":17925,"58402":15784,"58403":2825,"58404":15961,"58405":8034,"58406":9061,"58407":2520,"58408":3311,"58409":17142,"58410":6364,"58411":12406,"58412":7868,"58413":15179,"58414":1716,"58415":869,"58416":14396,"58417":10281,"58418":5735,"58419":5487,"58420":1631,"58421":13638,"58422":6080,"58423":11408,"58424":14462,"58425":13313,"58426":5251,"58427":5185,"58428":17913,"58429":4593,"58430":9440,"58431":3060,"58432":15124,"58433":1899,"58434":9392,"58435":11990,"58436":12086,"58437":5815,"58438":6324,"58439":10460,"58440":17415,"58441":10725,"58442":11373,"58443":17291,"58444":737,"58445":3912,"58446":15528,"58447":5076,"58448":15000,"58449":3165,"58450":6534,"58451":1743,"58452":790,"58453":8578,"58454":8333,"58455":16581,"58456":11338,"58457":971,"58458":17717,"58459":12565,"58460":3027,"58461":17110,"58462":9608,"58463":15267,"58464":16363,"58465":6966,"58466":1447,"58467":6971,"58468":6198,"58469":385,"58470":17527,"58471":6117,"58472":10759,"58473":10743,"58474":5752,"58475":10768,"58476":18249,"58477":3797,"58478":8120,"58479":6973,"58480":2432,"58481":8197,"58482":5060,"58483":14317,"58484":16582,"58485":12693,"58486":18017,"58487":10904,"58488":2315,"58489":16793,"58490":2792,"58491":13534,"58492":2709,"58493":8597,"58494":6337,"58495":13314,"58496":17652,"58497":3523,"58498":12870,"58499":4063,"58500":1807,"58501":2025,"58502":14103,"58503":12907,"58504":8471,"58505":14981,"58506":17602,"58507":15339,"58508":2418,"58509":4998,"58510":4993,"58511":12658,"58512":2169,"58513":8230,"58514":1190,"58515":1060,"58516":14886,"58517":16400,"58518":1053,"58519":16143,"58520":18204,"58521":5015,"58522":7802,"58523":7549,"58524":16966,"58525":755,"58526":13576,"58527":4239,"58528":13828,"58529":9578,"58530":4152,"58531":4119,"58532":5777,"58533":8741,"58534":7244,"58535":16305,"58536":15213,"58537":7425,"58538":8659,"58539":11965,"58540":4779,"58541":2832,"58542":964,"58543":11575,"58544":12109,"58545":4703,"58546":612,"58547":8820,"58548":115,"58549":14604,"58550":16845,"58551":14717,"58552":12337,"58553":14372,"58554":12399,"58555":9737,"58556":5704,"58557":9528,"58558":7766,"58559":245,"58560":15622,"58561":543,"58562":10188,"58563":15107,"58564":4837,"58565":6547,"58566":10940,"58567":3344,"58568":7277,"58569":15522,"58570":6426,"58571":12718,"58572":12014,"58573":10603,"58574":7120,"58575":5390,"58576":694,"58577":16177,"58578":5688,"58579":7453,"58580":2339,"58581":6317,"58582":14404,"58583":2564,"58584":11488,"58585":7404,"58586":15359,"58587":11591,"58588":12306,"58589":6924,"58590":11390,"58591":693,"58592":2868,"58593":11410,"58594":1425,"58595":15292,"58596":11185,"58597":10340,"58598":3402,"58599":14348,"58600":12658,"58601":16408,"58602":444,"58603":12939,"58604":1516,"58605":9052,"58606":1918,"58607":17590,"58608":14722,"58609":18134,"58610":13579,"58611":16042,"58612":17889,"58613":5257,"58614":8557,"58615":10564,"58616":14710,"58617":16194,"58618":16008,"58619":8915,"58620":14962,"58621":9762,"58622":2362,"58623":10546,"58624":4555,"58625":8396,"58626":3988,"58627":2568,"58628":11064,"58629":11576,"58630":2100,"58631":16459,"58632":1680,"58633":3245,"58634":11573,"58635":3633,"58636":7509,"58637":14776,"58638":12810,"58639":1521,"58640":17838,"58641":7802,"58642":12055,"58643":1850,"58644":1455,"58645":1155,"58646":3472,"58647":5980,"58648":10126,"58649":16792,"58650":16406,"58651":4432,"58652":9362,"58653":4056,"58654":1687,"58655":1891,"58656":9622,"58657":9502,"58658":3949,"58659":10060,"58660":50,"58661":14506,"58662":8090,"58663":12448,"58664":16306,"58665":1851,"58666":12159,"58667":4978,"58668":16783,"58669":13174,"58670":16278,"58671":1779,"58672":14748,"58673":17465,"58674":6822,"58675":17360,"58676":9130,"58677":5499,"58678":1359,"58679":11512,"58680":11260,"58681":7779,"58682":8701,"58683":890,"58684":9345,"58685":5495,"58686":1755,"58687":13175,"58688":15890,"58689":11199,"58690":5617,"58691":7176,"58692":10212,"58693":12338,"58694":14148,"58695":15984,"58696":2310,"58697":14048,"58698":1599,"58699":747,"58700":1052,"58701":3524,"58702":5536,"58703":12136,"58704":16560,"58705":14537,"58706":8487,"58707":6414,"58708":11881,"58709":17992,"58710":10884,"58711":1486,"58712":17469,"58713":17778,"58714":2063,"58715":14507,"58716":3930,"58717":9675,"58718":5120,"58719":5337,"58720":10762,"58721":18097,"58722":13042,"58723":17182,"58724":17129,"58725":12433,"58726":6451,"58727":13966,"58728":10879,"58729":2846,"58730":1042,"58731":6946,"58732":1781,"58733":8690,"58734":17307,"58735":529,"58736":393,"58737":2965,"58738":7469,"58739":592,"58740":11163,"58741":1592,"58742":12035,"58743":5144,"58744":9970,"58745":17859,"58746":3615,"58747":9746,"58748":7972,"58749":4311,"58750":17107,"58751":12196,"58752":4349,"58753":16376,"58754":17833,"58755":4855,"58756":4890,"58757":390,"58758":793,"58759":8032,"58760":3180,"58761":835,"58762":17387,"58763":4063,"58764":17528,"58765":16624,"58766":5732,"58767":1728,"58768":2172,"58769":326,"58770":6215,"58771":11859,"58772":9168,"58773":17280,"58774":10801,"58775":6002,"58776":11058,"58777":17022,"58778":8703,"58779":17899,"58780":9184,"58781":6507,"58782":11545,"58783":13170,"58784":15323,"58785":3494,"58786":7113,"58787":10805,"58788":1154,"58789":5826,"58790":7661,"58791":7701,"58792":538,"58793":6167,"58794":13249,"58795":3177,"58796":15966,"58797":299,"58798":4807,"58799":1925,"58800":14158,"58801":629,"58802":3449,"58803":17970,"58804":2685,"58805":296,"58806":3198,"58807":6818,"58808":12263,"58809":15586,"58810":11328,"58811":16664,"58812":13460,"58813":16847,"58814":16340,"58815":6397,"58816":13967,"58817":3687,"58818":8586,"58819":9290,"58820":9378,"58821":7636,"58822":7806,"58823":11433,"58824":8550,"58825":3391,"58826":17220,"58827":14175,"58828":11481,"58829":7349,"58830":4414,"58831":11175,"58832":10087,"58833":8090,"58834":15932,"58835":12870,"58836":18337,"58837":2700,"58838":3560,"58839":4354,"58840":5566,"58841":9391,"58842":13934,"58843":7804,"58844":9567,"58845":5951,"58846":4614,"58847":18269,"58848":12580,"58849":16590,"58850":811,"58851":7623,"58852":1959,"58853":6874,"58854":9033,"58855":10903,"58856":8527,"58857":9751,"58858":2568,"58859":17269,"58860":3892,"58861":6957,"58862":2427,"58863":3305,"58864":7514,"58865":6275,"58866":17575,"58867":12264,"58868":12265,"58869":6386,"58870":6973,"58871":17997,"58872":14048,"58873":10160,"58874":9267,"58875":17600,"58876":9535,"58877":17710,"58878":3365,"58879":17360,"58880":11648,"58881":5824,"58882":3042,"58883":16359,"58884":17345,"58885":1819,"58886":17220,"58887":983,"58888":4383,"58889":14939,"58890":8911,"58891":16565,"58892":286,"58893":7749,"58894":11167,"58895":6518,"58896":8398,"58897":7029,"58898":12383,"58899":17603,"58900":15471,"58901":14639,"58902":11189,"58903":7787,"58904":10973,"58905":9335,"58906":11040,"58907":14350,"58908":4777,"58909":11492,"58910":3378,"58911":15353,"58912":6133,"58913":15530,"58914":564,"58915":16970,"58916":8180,"58917":1616,"58918":9998,"58919":17443,"58920":8120,"58921":6663,"58922":3030,"58923":16143,"58924":3620,"58925":10746,"58926":13316,"58927":18109,"58928":4969,"58929":13374,"58930":13196,"58931":3156,"58932":13849,"58933":16892,"58934":8214,"58935":4183,"58936":12482,"58937":12349,"58938":15359,"58939":16764,"58940":13919,"58941":14182,"58942":16839,"58943":4680,"58944":8380,"58945":18025,"58946":6169,"58947":5331,"58948":15138,"58949":3973,"58950":15906,"58951":11094,"58952":9273,"58953":680,"58954":1345,"58955":15040,"58956":12609,"58957":11395,"58958":15678,"58959":2602,"58960":12674,"58961":17861,"58962":580,"58963":10530,"58964":2247,"58965":1547,"58966":10357,"58967":11737,"58968":7130,"58969":404,"58970":4459,"58971":6649,"58972":17059,"58973":9497,"58974":9842,"58975":673,"58976":2682,"58977":12064,"58978":17144,"58979":9615,"58980":12381,"58981":7131,"58982":15170,"58983":9686,"58984":9407,"58985":16442,"58986":8294,"58987":7404,"58988":1753,"58989":98,"58990":14782,"58991":4869,"58992":14918,"58993":58,"58994":13221,"58995":3149,"58996":8781,"58997":17110,"58998":16480,"58999":18275,"59000":9895,"59001":14517,"59002":5579,"59003":11683,"59004":16902,"59005":4669,"59006":5707,"59007":7524,"59008":12692,"59009":8760,"59010":7835,"59011":6588,"59012":11330,"59013":15000,"59014":11627,"59015":12709,"59016":1382,"59017":10514,"59018":12468,"59019":6275,"59020":5668,"59021":9104,"59022":6343,"59023":11155,"59024":12718,"59025":14094,"59026":1214,"59027":12298,"59028":2745,"59029":17181,"59030":16923,"59031":14495,"59032":14869,"59033":9068,"59034":501,"59035":11986,"59036":8281,"59037":10401,"59038":9603,"59039":4042,"59040":7883,"59041":15221,"59042":4707,"59043":18120,"59044":9915,"59045":16608,"59046":752,"59047":14388,"59048":1707,"59049":10983,"59050":3376,"59051":16874,"59052":3106,"59053":8660,"59054":16898,"59055":17184,"59056":5978,"59057":3121,"59058":1170,"59059":6108,"59060":959,"59061":1816,"59062":12323,"59063":6216,"59064":13925,"59065":1822,"59066":11770,"59067":14277,"59068":8497,"59069":2906,"59070":13957,"59071":11343,"59072":7460,"59073":13476,"59074":15707,"59075":16804,"59076":4857,"59077":830,"59078":7264,"59079":14964,"59080":2202,"59081":2299,"59082":1395,"59083":8848,"59084":6632,"59085":12387,"59086":11535,"59087":14827,"59088":11158,"59089":12807,"59090":4097,"59091":3441,"59092":4003,"59093":7338,"59094":3111,"59095":981,"59096":12386,"59097":6428,"59098":3100,"59099":11377,"59100":6385,"59101":11371,"59102":3851,"59103":2231,"59104":13841,"59105":10253,"59106":16297,"59107":12067,"59108":12966,"59109":10059,"59110":1631,"59111":120,"59112":14132,"59113":16895,"59114":8288,"59115":12664,"59116":15392,"59117":2020,"59118":10189,"59119":9812,"59120":11708,"59121":14379,"59122":14632,"59123":7503,"59124":8902,"59125":2424,"59126":13206,"59127":9856,"59128":15384,"59129":7356,"59130":17863,"59131":7322,"59132":10909,"59133":5528,"59134":2838,"59135":11842,"59136":5227,"59137":15874,"59138":17951,"59139":14715,"59140":5855,"59141":4562,"59142":4332,"59143":11254,"59144":9017,"59145":15071,"59146":3045,"59147":9972,"59148":16912,"59149":8874,"59150":8419,"59151":9164,"59152":9371,"59153":3100,"59154":10225,"59155":15327,"59156":2295,"59157":10346,"59158":17954,"59159":7891,"59160":7801,"59161":16286,"59162":599,"59163":3805,"59164":14607,"59165":9071,"59166":14462,"59167":6333,"59168":7166,"59169":7963,"59170":346,"59171":17420,"59172":5450,"59173":16317,"59174":3860,"59175":14015,"59176":2266,"59177":13849,"59178":2160,"59179":2729,"59180":6512,"59181":11406,"59182":16893,"59183":3256,"59184":15250,"59185":4534,"59186":16860,"59187":6451,"59188":8821,"59189":13664,"59190":8115,"59191":17211,"59192":9161,"59193":15703,"59194":7997,"59195":5989,"59196":2877,"59197":13212,"59198":9102,"59199":4872,"59200":2125,"59201":6122,"59202":6748,"59203":2886,"59204":3812,"59205":15178,"59206":18029,"59207":4222,"59208":6188,"59209":5148,"59210":8255,"59211":10619,"59212":2584,"59213":10454,"59214":13166,"59215":8990,"59216":15871,"59217":1652,"59218":7044,"59219":9041,"59220":7700,"59221":7275,"59222":14223,"59223":13079,"59224":13801,"59225":11198,"59226":14061,"59227":13518,"59228":2158,"59229":7481,"59230":4660,"59231":12238,"59232":6812,"59233":8542,"59234":13612,"59235":820,"59236":4512,"59237":11825,"59238":3269,"59239":14044,"59240":857,"59241":1689,"59242":14323,"59243":18254,"59244":15336,"59245":9601,"59246":15842,"59247":16046,"59248":3585,"59249":17880,"59250":5992,"59251":15433,"59252":9273,"59253":16286,"59254":2983,"59255":558,"59256":13841,"59257":2275,"59258":9058,"59259":12263,"59260":2711,"59261":16893,"59262":6620,"59263":4111,"59264":14578,"59265":18110,"59266":3032,"59267":4967,"59268":3811,"59269":10241,"59270":10108,"59271":1330,"59272":11322,"59273":10903,"59274":1379,"59275":8849,"59276":3364,"59277":6389,"59278":188,"59279":11238,"59280":1847,"59281":14809,"59282":1900,"59283":13940,"59284":426,"59285":18142,"59286":6742,"59287":3081,"59288":16607,"59289":18232,"59290":11256,"59291":9867,"59292":17562,"59293":15025,"59294":108,"59295":2114,"59296":8797,"59297":3723,"59298":12555,"59299":5039,"59300":10038,"59301":3489,"59302":12867,"59303":5897,"59304":1989,"59305":4033,"59306":14686,"59307":8138,"59308":9997,"59309":16413,"59310":16198,"59311":3469,"59312":753,"59313":15924,"59314":11368,"59315":10883,"59316":9048,"59317":17308,"59318":9703,"59319":16071,"59320":6135,"59321":16032,"59322":2394,"59323":1598,"59324":3266,"59325":17735,"59326":302,"59327":705,"59328":3269,"59329":14018,"59330":17005,"59331":1981,"59332":9205,"59333":15963,"59334":3947,"59335":2390,"59336":9957,"59337":18179,"59338":10536,"59339":1331,"59340":10048,"59341":4819,"59342":1812,"59343":12911,"59344":7151,"59345":6301,"59346":9854,"59347":14955,"59348":4550,"59349":17025,"59350":16574,"59351":15171,"59352":1171,"59353":7207,"59354":2964,"59355":11856,"59356":858,"59357":5155,"59358":8621,"59359":6157,"59360":5697,"59361":15877,"59362":15625,"59363":2355,"59364":1540,"59365":10983,"59366":10119,"59367":11389,"59368":2579,"59369":8989,"59370":18163,"59371":8398,"59372":9905,"59373":2793,"59374":15557,"59375":5313,"59376":14774,"59377":13430,"59378":1582,"59379":4923,"59380":2250,"59381":6505,"59382":3732,"59383":5653,"59384":1958,"59385":13369,"59386":5246,"59387":12316,"59388":699,"59389":15361,"59390":5377,"59391":3848,"59392":2518,"59393":3743,"59394":11094,"59395":523,"59396":15348,"59397":10726,"59398":12266,"59399":5063,"59400":15277,"59401":2558,"59402":17453,"59403":14703,"59404":15725,"59405":16055,"59406":11872,"59407":6634,"59408":5943,"59409":7273,"59410":14281,"59411":14967,"59412":17782,"59413":3157,"59414":8521,"59415":12999,"59416":17787,"59417":8473,"59418":1919,"59419":12098,"59420":12419,"59421":2245,"59422":17363,"59423":12753,"59424":16732,"59425":14050,"59426":7562,"59427":1873,"59428":13718,"59429":10571,"59430":6682,"59431":1590,"59432":17462,"59433":10725,"59434":14452,"59435":767,"59436":11008,"59437":10681,"59438":5293,"59439":9744,"59440":15738,"59441":5545,"59442":10127,"59443":2726,"59444":2126,"59445":388,"59446":5555,"59447":4737,"59448":12996,"59449":431,"59450":12414,"59451":10522,"59452":7441,"59453":10720,"59454":12082,"59455":12151,"59456":9810,"59457":1242,"59458":18114,"59459":15711,"59460":7647,"59461":17515,"59462":418,"59463":367,"59464":11031,"59465":3842,"59466":7378,"59467":2924,"59468":4010,"59469":2939,"59470":2986,"59471":15732,"59472":6495,"59473":13039,"59474":14964,"59475":17283,"59476":1465,"59477":3876,"59478":14839,"59479":1619,"59480":17148,"59481":1482,"59482":16465,"59483":16421,"59484":576,"59485":130,"59486":4375,"59487":10206,"59488":17487,"59489":11247,"59490":14121,"59491":15059,"59492":7955,"59493":1,"59494":17462,"59495":13111,"59496":15130,"59497":3448,"59498":4202,"59499":11792,"59500":16113,"59501":2805,"59502":3739,"59503":10059,"59504":15035,"59505":16812,"59506":3830,"59507":7990,"59508":15128,"59509":6525,"59510":4128,"59511":17732,"59512":8782,"59513":10609,"59514":16065,"59515":16822,"59516":8991,"59517":7608,"59518":15876,"59519":1735,"59520":6830,"59521":13763,"59522":5280,"59523":17224,"59524":6478,"59525":3525,"59526":4027,"59527":107,"59528":6803,"59529":15102,"59530":9401,"59531":12316,"59532":9846,"59533":12504,"59534":18122,"59535":12266,"59536":15962,"59537":164,"59538":16636,"59539":8417,"59540":2293,"59541":6895,"59542":4004,"59543":17205,"59544":13887,"59545":15642,"59546":15411,"59547":13682,"59548":2146,"59549":17834,"59550":15144,"59551":16061,"59552":18281,"59553":17420,"59554":15712,"59555":11430,"59556":7896,"59557":5526,"59558":17978,"59559":6724,"59560":4717,"59561":13588,"59562":16180,"59563":8572,"59564":18188,"59565":5668,"59566":11184,"59567":12467,"59568":6646,"59569":16172,"59570":1108,"59571":5512,"59572":12584,"59573":4114,"59574":16348,"59575":5122,"59576":12191,"59577":16203,"59578":11655,"59579":12278,"59580":15330,"59581":736,"59582":11516,"59583":11704,"59584":95,"59585":16734,"59586":12744,"59587":3779,"59588":3720,"59589":3865,"59590":1344,"59591":11126,"59592":7899,"59593":13056,"59594":2346,"59595":8538,"59596":16364,"59597":10820,"59598":10287,"59599":12391,"59600":18020,"59601":6310,"59602":10909,"59603":13602,"59604":17017,"59605":12036,"59606":3781,"59607":12684,"59608":329,"59609":16616,"59610":159,"59611":17417,"59612":7502,"59613":13156,"59614":9761,"59615":4006,"59616":14022,"59617":9267,"59618":16968,"59619":5803,"59620":18,"59621":11539,"59622":5251,"59623":9871,"59624":1360,"59625":11499,"59626":4866,"59627":17429,"59628":17287,"59629":3025,"59630":14298,"59631":8418,"59632":14813,"59633":2637,"59634":9014,"59635":5719,"59636":13305,"59637":17427,"59638":12520,"59639":11597,"59640":3217,"59641":3706,"59642":15692,"59643":13110,"59644":6572,"59645":4290,"59646":12475,"59647":13054,"59648":4473,"59649":11888,"59650":8289,"59651":3689,"59652":9114,"59653":2900,"59654":8150,"59655":11899,"59656":17223,"59657":12819,"59658":7090,"59659":1838,"59660":5020,"59661":8701,"59662":17190,"59663":10795,"59664":2494,"59665":18266,"59666":6218,"59667":4070,"59668":12448,"59669":3177,"59670":15671,"59671":382,"59672":14095,"59673":13602,"59674":839,"59675":8248,"59676":18268,"59677":17289,"59678":2168,"59679":18321,"59680":2040,"59681":1390,"59682":3427,"59683":13967,"59684":2649,"59685":8093,"59686":11594,"59687":11363,"59688":6157,"59689":17576,"59690":11256,"59691":8617,"59692":3131,"59693":14926,"59694":2537,"59695":9877,"59696":1695,"59697":5079,"59698":7403,"59699":9448,"59700":10240,"59701":6806,"59702":6581,"59703":4964,"59704":7258,"59705":7142,"59706":15709,"59707":4430,"59708":3909,"59709":1652,"59710":8015,"59711":14777,"59712":12770,"59713":18080,"59714":11622,"59715":18082,"59716":2970,"59717":4282,"59718":4386,"59719":2741,"59720":3141,"59721":3766,"59722":10638,"59723":15901,"59724":7768,"59725":13320,"59726":4127,"59727":13810,"59728":159,"59729":10793,"59730":12367,"59731":14798,"59732":4004,"59733":14612,"59734":4712,"59735":18167,"59736":7066,"59737":7973,"59738":14887,"59739":7569,"59740":11904,"59741":14604,"59742":13586,"59743":15046,"59744":7679,"59745":10053,"59746":1736,"59747":16880,"59748":16704,"59749":2408,"59750":7780,"59751":11590,"59752":2681,"59753":16290,"59754":7098,"59755":17570,"59756":696,"59757":10180,"59758":5315,"59759":15406,"59760":15977,"59761":13117,"59762":9231,"59763":8227,"59764":10892,"59765":14654,"59766":1115,"59767":1244,"59768":11609,"59769":15949,"59770":1225,"59771":13480,"59772":5694,"59773":14203,"59774":12614,"59775":8407,"59776":10993,"59777":4632,"59778":13888,"59779":1065,"59780":13031,"59781":13325,"59782":7373,"59783":1145,"59784":11003,"59785":8948,"59786":7187,"59787":14611,"59788":18311,"59789":15330,"59790":10379,"59791":9761,"59792":16414,"59793":17777,"59794":10133,"59795":5148,"59796":3431,"59797":11608,"59798":11388,"59799":1476,"59800":7404,"59801":17359,"59802":12047,"59803":13317,"59804":13242,"59805":1067,"59806":2727,"59807":3145,"59808":2456,"59809":15803,"59810":12144,"59811":3615,"59812":2504,"59813":7488,"59814":1182,"59815":12035,"59816":12418,"59817":14768,"59818":16434,"59819":2622,"59820":9518,"59821":7984,"59822":353,"59823":10603,"59824":7552,"59825":8770,"59826":12421,"59827":9754,"59828":6286,"59829":5700,"59830":14086,"59831":1867,"59832":10483,"59833":1687,"59834":3002,"59835":5390,"59836":5430,"59837":12262,"59838":2988,"59839":10435,"59840":11861,"59841":642,"59842":4758,"59843":5102,"59844":11672,"59845":17845,"59846":16288,"59847":4177,"59848":5361,"59849":14927,"59850":6664,"59851":14469,"59852":11361,"59853":16678,"59854":9699,"59855":18002,"59856":9848,"59857":5870,"59858":7761,"59859":6014,"59860":9420,"59861":14286,"59862":7555,"59863":6834,"59864":11731,"59865":8852,"59866":12548,"59867":15127,"59868":8289,"59869":12427,"59870":13855,"59871":3053,"59872":16726,"59873":6980,"59874":18210,"59875":9998,"59876":11428,"59877":16700,"59878":3721,"59879":1992,"59880":9687,"59881":17605,"59882":7293,"59883":10046,"59884":6901,"59885":15677,"59886":8864,"59887":1019,"59888":11312,"59889":14582,"59890":11121,"59891":9228,"59892":7616,"59893":2132,"59894":2087,"59895":9317,"59896":16202,"59897":10676,"59898":15482,"59899":2749,"59900":5746,"59901":6166,"59902":3931,"59903":15091,"59904":13348,"59905":1857,"59906":5973,"59907":2862,"59908":5754,"59909":2356,"59910":8326,"59911":6031,"59912":2251,"59913":17570,"59914":7685,"59915":13578,"59916":12687,"59917":2049,"59918":1743,"59919":2925,"59920":748,"59921":14423,"59922":4675,"59923":7407,"59924":9319,"59925":5496,"59926":13065,"59927":14785,"59928":1752,"59929":12067,"59930":15990,"59931":11058,"59932":13963,"59933":11453,"59934":7727,"59935":12212,"59936":18135,"59937":11478,"59938":16047,"59939":14957,"59940":7175,"59941":17113,"59942":1615,"59943":17919,"59944":824,"59945":16923,"59946":6850,"59947":891,"59948":17048,"59949":3300,"59950":2687,"59951":17234,"59952":4298,"59953":13057,"59954":15006,"59955":5157,"59956":2555,"59957":561,"59958":9991,"59959":1160,"59960":1200,"59961":17592,"59962":5493,"59963":10693,"59964":14450,"59965":5022,"59966":3965,"59967":12523,"59968":3781,"59969":11902,"59970":14434,"59971":1869,"59972":10829,"59973":17916,"59974":12526,"59975":12509,"59976":3133,"59977":13317,"59978":6377,"59979":5096,"59980":15967,"59981":510,"59982":8841,"59983":7191,"59984":69,"59985":15351,"59986":5900,"59987":2890,"59988":15765,"59989":16927,"59990":8915,"59991":17584,"59992":14283,"59993":8347,"59994":12492,"59995":6753,"59996":3282,"59997":242,"59998":11206,"59999":13960,"60000":18186,"60001":3615,"60002":10007,"60003":14438,"60004":8577,"60005":13316,"60006":5723,"60007":4602,"60008":4764,"60009":3372,"60010":4831,"60011":6657,"60012":6402,"60013":10519,"60014":8655,"60015":14312,"60016":1559,"60017":7092,"60018":14351,"60019":4507,"60020":2636,"60021":4199,"60022":15569,"60023":6218,"60024":14455,"60025":17178,"60026":15675,"60027":12114,"60028":14581,"60029":2948,"60030":3002,"60031":12595,"60032":2174,"60033":3381,"60034":784,"60035":8165,"60036":11975,"60037":1798,"60038":13366,"60039":11278,"60040":8384,"60041":4950,"60042":14409,"60043":15243,"60044":9017,"60045":9116,"60046":3357,"60047":4310,"60048":885,"60049":935,"60050":14253,"60051":5604,"60052":4710,"60053":12896,"60054":5999,"60055":2495,"60056":4084,"60057":1500,"60058":6034,"60059":14875,"60060":8202,"60061":5248,"60062":8256,"60063":3488,"60064":15439,"60065":8800,"60066":1922,"60067":2155,"60068":303,"60069":17416,"60070":6841,"60071":8013,"60072":14523,"60073":4150,"60074":2916,"60075":2428,"60076":2492,"60077":10952,"60078":14936,"60079":9571,"60080":12462,"60081":14488,"60082":4492,"60083":7012,"60084":4900,"60085":3960,"60086":2688,"60087":3485,"60088":15832,"60089":3479,"60090":12737,"60091":2359,"60092":543,"60093":8788,"60094":11544,"60095":12269,"60096":6188,"60097":8733,"60098":3547,"60099":17830,"60100":14966,"60101":5099,"60102":16327,"60103":8764,"60104":2129,"60105":17683,"60106":13153,"60107":7929,"60108":16935,"60109":13581,"60110":9953,"60111":9411,"60112":9424,"60113":12878,"60114":15637,"60115":5965,"60116":1374,"60117":17734,"60118":11759,"60119":18272,"60120":12847,"60121":12906,"60122":13703,"60123":15377,"60124":11519,"60125":15639,"60126":4689,"60127":11204,"60128":2871,"60129":5608,"60130":15523,"60131":12817,"60132":15955,"60133":8486,"60134":8825,"60135":13126,"60136":4108,"60137":11699,"60138":5843,"60139":1983,"60140":12817,"60141":6112,"60142":12901,"60143":9764,"60144":17281,"60145":303,"60146":5105,"60147":8379,"60148":13804,"60149":7048,"60150":213,"60151":2079,"60152":11470,"60153":10228,"60154":2190,"60155":5602,"60156":5591,"60157":11390,"60158":2570,"60159":9546,"60160":17804,"60161":9345,"60162":10543,"60163":18313,"60164":14315,"60165":17808,"60166":11803,"60167":10288,"60168":5858,"60169":14341,"60170":10959,"60171":5097,"60172":5349,"60173":3570,"60174":1255,"60175":4340,"60176":10711,"60177":9868,"60178":10165,"60179":6287,"60180":7097,"60181":7839,"60182":15421,"60183":3720,"60184":5953,"60185":14961,"60186":12668,"60187":9686,"60188":6849,"60189":11978,"60190":15260,"60191":8463,"60192":16887,"60193":18310,"60194":9588,"60195":682,"60196":5547,"60197":13856,"60198":16499,"60199":16949,"60200":13373,"60201":5537,"60202":7911,"60203":15861,"60204":17979,"60205":12335,"60206":1080,"60207":2917,"60208":9092,"60209":13266,"60210":12852,"60211":3183,"60212":2938,"60213":14769,"60214":11905,"60215":9021,"60216":13343,"60217":18296,"60218":5683,"60219":11149,"60220":11712,"60221":16644,"60222":14818,"60223":17570,"60224":113,"60225":4378,"60226":3976,"60227":12928,"60228":8062,"60229":15912,"60230":9650,"60231":16643,"60232":10757,"60233":7961,"60234":11181,"60235":1865,"60236":5657,"60237":6033,"60238":10318,"60239":15829,"60240":16643,"60241":13586,"60242":9665,"60243":9097,"60244":8091,"60245":13111,"60246":4836,"60247":332,"60248":5270,"60249":1873,"60250":4303,"60251":16400,"60252":6722,"60253":14059,"60254":8444,"60255":6710,"60256":17778,"60257":15519,"60258":13987,"60259":16046,"60260":11304,"60261":5187,"60262":6024,"60263":10482,"60264":13670,"60265":9991,"60266":9913,"60267":12372,"60268":16375,"60269":5763,"60270":17030,"60271":7945,"60272":1138,"60273":17062,"60274":7572,"60275":12348,"60276":16735,"60277":3332,"60278":11431,"60279":17548,"60280":6821,"60281":537,"60282":18078,"60283":15679,"60284":11209,"60285":12207,"60286":2074,"60287":15921,"60288":1005,"60289":12240,"60290":8327,"60291":12645,"60292":11347,"60293":10782,"60294":7698,"60295":1050,"60296":3212,"60297":7926,"60298":8310,"60299":12849,"60300":11788,"60301":3230,"60302":2752,"60303":15460,"60304":17585,"60305":14113,"60306":6946,"60307":12501,"60308":14931,"60309":6385,"60310":14148,"60311":11038,"60312":10501,"60313":5432,"60314":12130,"60315":10059,"60316":10304,"60317":3026,"60318":14897,"60319":570,"60320":7525,"60321":11861,"60322":16070,"60323":2860,"60324":4494,"60325":8496,"60326":3933,"60327":14543,"60328":1970,"60329":6501,"60330":10648,"60331":13338,"60332":15012,"60333":9733,"60334":1817,"60335":2210,"60336":3167,"60337":15883,"60338":14754,"60339":1576,"60340":789,"60341":2829,"60342":13380,"60343":3304,"60344":8052,"60345":13422,"60346":12788,"60347":1062,"60348":681,"60349":12757,"60350":12800,"60351":6825,"60352":15941,"60353":7589,"60354":6528,"60355":9649,"60356":1345,"60357":8977,"60358":8494,"60359":14637,"60360":10667,"60361":5853,"60362":286,"60363":17646,"60364":8966,"60365":536,"60366":14012,"60367":10867,"60368":17806,"60369":18236,"60370":16679,"60371":8314,"60372":4877,"60373":7,"60374":1539,"60375":16001,"60376":17747,"60377":4676,"60378":717,"60379":776,"60380":13862,"60381":5836,"60382":3534,"60383":2214,"60384":8954,"60385":12728,"60386":4519,"60387":1317,"60388":13753,"60389":12043,"60390":17941,"60391":947,"60392":9992,"60393":17134,"60394":1161,"60395":17167,"60396":10544,"60397":14723,"60398":1097,"60399":858,"60400":17174,"60401":14786,"60402":9310,"60403":8356,"60404":6,"60405":10489,"60406":13907,"60407":17363,"60408":3145,"60409":839,"60410":3794,"60411":14244,"60412":10331,"60413":8246,"60414":574,"60415":7144,"60416":6337,"60417":4196,"60418":2518,"60419":13918,"60420":5910,"60421":8635,"60422":15079,"60423":8711,"60424":14073,"60425":14902,"60426":4142,"60427":6227,"60428":11215,"60429":8590,"60430":7327,"60431":12689,"60432":13687,"60433":15503,"60434":6249,"60435":6456,"60436":6932,"60437":1589,"60438":11496,"60439":9918,"60440":3748,"60441":9101,"60442":14426,"60443":17625,"60444":3713,"60445":4632,"60446":7296,"60447":4403,"60448":10988,"60449":7742,"60450":12519,"60451":9490,"60452":17540,"60453":2278,"60454":12445,"60455":17889,"60456":15587,"60457":16967,"60458":1426,"60459":15452,"60460":8031,"60461":11091,"60462":3679,"60463":13746,"60464":10931,"60465":7361,"60466":11242,"60467":16962,"60468":9177,"60469":15458,"60470":18161,"60471":3280,"60472":14981,"60473":6102,"60474":16038,"60475":7892,"60476":13093,"60477":12038,"60478":1703,"60479":13124,"60480":119,"60481":8771,"60482":10016,"60483":8263,"60484":3250,"60485":14050,"60486":6974,"60487":14385,"60488":1489,"60489":6634,"60490":15848,"60491":15278,"60492":14567,"60493":17728,"60494":10527,"60495":2636,"60496":2331,"60497":15899,"60498":3652,"60499":13557,"60500":8928,"60501":5619,"60502":14084,"60503":6158,"60504":13488,"60505":12777,"60506":2600,"60507":3877,"60508":12616,"60509":10570,"60510":9435,"60511":5639,"60512":11562,"60513":10386,"60514":8692,"60515":3485,"60516":14133,"60517":7546,"60518":2227,"60519":9248,"60520":12865,"60521":3108,"60522":10462,"60523":12546,"60524":586,"60525":3299,"60526":15771,"60527":5684,"60528":11562,"60529":2487,"60530":11738,"60531":10178,"60532":647,"60533":8949,"60534":648,"60535":11808,"60536":10494,"60537":6593,"60538":12811,"60539":9348,"60540":7991,"60541":12659,"60542":14940,"60543":413,"60544":11841,"60545":15070,"60546":2793,"60547":12698,"60548":1223,"60549":644,"60550":15337,"60551":5899,"60552":4520,"60553":11421,"60554":7909,"60555":17678,"60556":1486,"60557":16474,"60558":12800,"60559":10673,"60560":2032,"60561":10427,"60562":307,"60563":7561,"60564":12932,"60565":15196,"60566":11851,"60567":5475,"60568":16341,"60569":10926,"60570":3725,"60571":16047,"60572":3501,"60573":10921,"60574":17517,"60575":15270,"60576":5683,"60577":8557,"60578":2600,"60579":6357,"60580":893,"60581":4448,"60582":16806,"60583":8303,"60584":9782,"60585":2112,"60586":13740,"60587":8722,"60588":13231,"60589":1385,"60590":16802,"60591":1095,"60592":12999,"60593":901,"60594":13842,"60595":16469,"60596":13747,"60597":17453,"60598":13352,"60599":3431,"60600":6282,"60601":15564,"60602":3805,"60603":13741,"60604":1801,"60605":18232,"60606":2196,"60607":2531,"60608":16244,"60609":14898,"60610":11235,"60611":5371,"60612":13363,"60613":10400,"60614":1036,"60615":4298,"60616":8795,"60617":1176,"60618":12027,"60619":7590,"60620":16282,"60621":12555,"60622":3719,"60623":473,"60624":9526,"60625":9349,"60626":1903,"60627":6974,"60628":3668,"60629":1196,"60630":10669,"60631":9983,"60632":5114,"60633":17111,"60634":3692,"60635":7783,"60636":16299,"60637":7249,"60638":2123,"60639":11927,"60640":15304,"60641":16060,"60642":8078,"60643":1296,"60644":6187,"60645":12623,"60646":5514,"60647":7014,"60648":6574,"60649":9263,"60650":10022,"60651":7634,"60652":7375,"60653":3887,"60654":17558,"60655":17624,"60656":8621,"60657":2090,"60658":5248,"60659":3759,"60660":15842,"60661":11083,"60662":7337,"60663":4301,"60664":6089,"60665":6426,"60666":10283,"60667":15763,"60668":3755,"60669":2630,"60670":6934,"60671":11997,"60672":15307,"60673":10130,"60674":8393,"60675":9186,"60676":18283,"60677":11750,"60678":801,"60679":11113,"60680":12768,"60681":11788,"60682":15670,"60683":2394,"60684":5002,"60685":11126,"60686":1788,"60687":6726,"60688":6420,"60689":8106,"60690":12046,"60691":12132,"60692":932,"60693":12683,"60694":12295,"60695":11674,"60696":1520,"60697":2260,"60698":18269,"60699":15402,"60700":16787,"60701":9832,"60702":13874,"60703":16622,"60704":1805,"60705":18311,"60706":8966,"60707":13926,"60708":10362,"60709":11966,"60710":12836,"60711":14353,"60712":7633,"60713":6252,"60714":3440,"60715":13022,"60716":934,"60717":9368,"60718":13091,"60719":15523,"60720":3826,"60721":3896,"60722":1160,"60723":3238,"60724":15563,"60725":8154,"60726":8549,"60727":7163,"60728":4734,"60729":4077,"60730":6630,"60731":8257,"60732":16844,"60733":7870,"60734":8613,"60735":14211,"60736":16470,"60737":7867,"60738":6788,"60739":8136,"60740":10885,"60741":9878,"60742":839,"60743":9271,"60744":4871,"60745":5678,"60746":3645,"60747":3478,"60748":3907,"60749":9310,"60750":13881,"60751":94,"60752":12091,"60753":6955,"60754":5085,"60755":11102,"60756":12837,"60757":9495,"60758":13650,"60759":6544,"60760":1992,"60761":16552,"60762":827,"60763":14719,"60764":12975,"60765":9975,"60766":9617,"60767":9576,"60768":6104,"60769":7465,"60770":13385,"60771":8209,"60772":15066,"60773":11078,"60774":11675,"60775":7126,"60776":13560,"60777":7571,"60778":4474,"60779":17429,"60780":14272,"60781":15394,"60782":14314,"60783":12131,"60784":17045,"60785":12767,"60786":16488,"60787":12577,"60788":10239,"60789":11944,"60790":5247,"60791":3996,"60792":6481,"60793":14677,"60794":660,"60795":1046,"60796":4292,"60797":6921,"60798":9021,"60799":1076,"60800":8570,"60801":14205,"60802":6373,"60803":1802,"60804":4193,"60805":16687,"60806":10501,"60807":5628,"60808":7810,"60809":1869,"60810":3202,"60811":979,"60812":11016,"60813":3014,"60814":10045,"60815":13548,"60816":5862,"60817":17737,"60818":6007,"60819":7440,"60820":7896,"60821":12699,"60822":3418,"60823":9049,"60824":3203,"60825":7273,"60826":7624,"60827":9917,"60828":17434,"60829":5759,"60830":1246,"60831":7239,"60832":12874,"60833":16382,"60834":11117,"60835":13523,"60836":990,"60837":16464,"60838":15888,"60839":2356,"60840":7570,"60841":15830,"60842":8599,"60843":2581,"60844":10357,"60845":6109,"60846":10354,"60847":10298,"60848":14949,"60849":13496,"60850":16160,"60851":8497,"60852":14712,"60853":8200,"60854":7914,"60855":16753,"60856":2327,"60857":1754,"60858":6699,"60859":3815,"60860":6936,"60861":5174,"60862":335,"60863":144,"60864":13945,"60865":1539,"60866":2587,"60867":2799,"60868":4373,"60869":3760,"60870":4591,"60871":9829,"60872":6850,"60873":17098,"60874":11690,"60875":5674,"60876":11760,"60877":11958,"60878":8293,"60879":10732,"60880":17793,"60881":18129,"60882":8339,"60883":16155,"60884":4806,"60885":9247,"60886":6303,"60887":13025,"60888":6490,"60889":5577,"60890":7766,"60891":6596,"60892":6814,"60893":4289,"60894":2195,"60895":6720,"60896":6468,"60897":13624,"60898":3601,"60899":20,"60900":10567,"60901":340,"60902":11566,"60903":5569,"60904":8394,"60905":15220,"60906":15658,"60907":18267,"60908":4351,"60909":7200,"60910":9287,"60911":17900,"60912":10300,"60913":2506,"60914":10690,"60915":8086,"60916":7819,"60917":15772,"60918":16264,"60919":12662,"60920":17397,"60921":1405,"60922":14279,"60923":4405,"60924":6228,"60925":13801,"60926":7687,"60927":18084,"60928":11957,"60929":4907,"60930":5831,"60931":6029,"60932":14279,"60933":5677,"60934":14485,"60935":12784,"60936":6559,"60937":10707,"60938":14370,"60939":15705,"60940":17278,"60941":18031,"60942":11598,"60943":10673,"60944":16773,"60945":12576,"60946":2554,"60947":16829,"60948":10369,"60949":10281,"60950":9923,"60951":8590,"60952":14513,"60953":8211,"60954":14957,"60955":1323,"60956":4850,"60957":6032,"60958":7440,"60959":2354,"60960":7920,"60961":795,"60962":4197,"60963":14015,"60964":4931,"60965":3924,"60966":254,"60967":12559,"60968":361,"60969":10391,"60970":14371,"60971":16013,"60972":13271,"60973":566,"60974":11556,"60975":1441,"60976":2692,"60977":18226,"60978":16618,"60979":1339,"60980":11038,"60981":6293,"60982":3076,"60983":2006,"60984":10352,"60985":7078,"60986":14540,"60987":2239,"60988":16320,"60989":14766,"60990":10631,"60991":17061,"60992":18216,"60993":15412,"60994":5922,"60995":4734,"60996":17719,"60997":12330,"60998":5689,"60999":13623,"61000":14187,"61001":13637,"61002":12153,"61003":8290,"61004":7203,"61005":10699,"61006":2050,"61007":364,"61008":16612,"61009":17721,"61010":6458,"61011":3899,"61012":17089,"61013":7128,"61014":16071,"61015":732,"61016":12173,"61017":529,"61018":14185,"61019":4841,"61020":8002,"61021":1259,"61022":12458,"61023":18136,"61024":11698,"61025":14046,"61026":12794,"61027":16162,"61028":11288,"61029":14474,"61030":3595,"61031":11620,"61032":234,"61033":13924,"61034":12193,"61035":10074,"61036":13287,"61037":13206,"61038":5104,"61039":1892,"61040":9440,"61041":10981,"61042":503,"61043":747,"61044":1902,"61045":8522,"61046":13674,"61047":9621,"61048":7430,"61049":14204,"61050":12338,"61051":3289,"61052":1148,"61053":9441,"61054":17812,"61055":1131,"61056":1639,"61057":2795,"61058":4601,"61059":1803,"61060":5528,"61061":14079,"61062":15914,"61063":15377,"61064":14063,"61065":10530,"61066":6721,"61067":8068,"61068":9950,"61069":1202,"61070":8419,"61071":3884,"61072":6830,"61073":17968,"61074":1546,"61075":13282,"61076":4161,"61077":6421,"61078":17140,"61079":17047,"61080":12454,"61081":17580,"61082":6378,"61083":16170,"61084":1013,"61085":2775,"61086":4013,"61087":8398,"61088":2579,"61089":1679,"61090":17096,"61091":7419,"61092":2092,"61093":18342,"61094":10359,"61095":15628,"61096":9904,"61097":1049,"61098":15565,"61099":14673,"61100":17064,"61101":4844,"61102":5428,"61103":8947,"61104":5787,"61105":9177,"61106":15466,"61107":3651,"61108":9018,"61109":8926,"61110":5579,"61111":16277,"61112":10858,"61113":515,"61114":14680,"61115":4811,"61116":10319,"61117":13201,"61118":1620,"61119":13295,"61120":4469,"61121":6999,"61122":10217,"61123":10759,"61124":88,"61125":8926,"61126":4596,"61127":17469,"61128":10251,"61129":8282,"61130":17800,"61131":17296,"61132":8911,"61133":14946,"61134":6914,"61135":2223,"61136":16911,"61137":7054,"61138":3574,"61139":10987,"61140":14410,"61141":13572,"61142":8625,"61143":5859,"61144":13066,"61145":6444,"61146":17619,"61147":11259,"61148":13612,"61149":7240,"61150":10549,"61151":5220,"61152":1188,"61153":13174,"61154":10465,"61155":15190,"61156":12237,"61157":16544,"61158":15061,"61159":17104,"61160":9517,"61161":3474,"61162":14218,"61163":7436,"61164":37,"61165":11084,"61166":17340,"61167":10584,"61168":9912,"61169":2727,"61170":5305,"61171":5545,"61172":12804,"61173":8489,"61174":46,"61175":10157,"61176":13004,"61177":3639,"61178":8935,"61179":948,"61180":4171,"61181":12188,"61182":14554,"61183":15033,"61184":13519,"61185":2527,"61186":3811,"61187":8228,"61188":9133,"61189":3568,"61190":9375,"61191":13781,"61192":15671,"61193":10371,"61194":14097,"61195":7343,"61196":5616,"61197":17057,"61198":4849,"61199":15963,"61200":5970,"61201":16946,"61202":3117,"61203":7820,"61204":663,"61205":1726,"61206":795,"61207":11436,"61208":10701,"61209":17468,"61210":11134,"61211":4992,"61212":4565,"61213":10066,"61214":8264,"61215":16758,"61216":3183,"61217":16575,"61218":5097,"61219":17116,"61220":17263,"61221":7495,"61222":1687,"61223":5726,"61224":12309,"61225":7915,"61226":6397,"61227":247,"61228":17060,"61229":6348,"61230":17818,"61231":5827,"61232":5550,"61233":17474,"61234":7661,"61235":15334,"61236":15892,"61237":14693,"61238":13234,"61239":4774,"61240":2282,"61241":2443,"61242":10194,"61243":13387,"61244":4867,"61245":13833,"61246":15148,"61247":10334,"61248":4596,"61249":10953,"61250":2966,"61251":18258,"61252":2199,"61253":17492,"61254":14127,"61255":12422,"61256":5868,"61257":2644,"61258":6101,"61259":18351,"61260":3445,"61261":13440,"61262":14497,"61263":16640,"61264":1140,"61265":15830,"61266":4590,"61267":2288,"61268":1822,"61269":9921,"61270":8423,"61271":8292,"61272":2268,"61273":15880,"61274":3295,"61275":10231,"61276":15427,"61277":3763,"61278":6698,"61279":14463,"61280":4891,"61281":9705,"61282":6393,"61283":12703,"61284":6419,"61285":2401,"61286":3014,"61287":1904,"61288":3945,"61289":3535,"61290":2219,"61291":1520,"61292":9373,"61293":4394,"61294":3371,"61295":13107,"61296":1540,"61297":18273,"61298":4863,"61299":5444,"61300":4472,"61301":16840,"61302":6625,"61303":7871,"61304":2649,"61305":9432,"61306":2043,"61307":5228,"61308":2060,"61309":7645,"61310":7279,"61311":1161,"61312":5479,"61313":11216,"61314":18329,"61315":18177,"61316":3120,"61317":17751,"61318":13594,"61319":930,"61320":9444,"61321":10898,"61322":6846,"61323":16775,"61324":8706,"61325":14079,"61326":12214,"61327":10192,"61328":16128,"61329":3750,"61330":11504,"61331":16279,"61332":11481,"61333":7385,"61334":531,"61335":7529,"61336":15501,"61337":15759,"61338":2381,"61339":10792,"61340":2089,"61341":5972,"61342":3541,"61343":13682,"61344":16594,"61345":11317,"61346":4422,"61347":4004,"61348":1770,"61349":8299,"61350":13214,"61351":4959,"61352":9388,"61353":9698,"61354":11020,"61355":5745,"61356":8436,"61357":1557,"61358":17730,"61359":14781,"61360":909,"61361":9999,"61362":17786,"61363":10085,"61364":10593,"61365":12123,"61366":8721,"61367":12611,"61368":13600,"61369":706,"61370":12746,"61371":8962,"61372":654,"61373":3296,"61374":13462,"61375":8830,"61376":4486,"61377":7241,"61378":4068,"61379":10222,"61380":4573,"61381":15088,"61382":6655,"61383":7146,"61384":5339,"61385":9945,"61386":18053,"61387":9774,"61388":5762,"61389":1507,"61390":9697,"61391":13278,"61392":11757,"61393":1795,"61394":6071,"61395":2621,"61396":12660,"61397":13642,"61398":16010,"61399":4216,"61400":16719,"61401":7207,"61402":13087,"61403":4425,"61404":9274,"61405":423,"61406":8532,"61407":14589,"61408":8737,"61409":15215,"61410":13262,"61411":493,"61412":4354,"61413":5016,"61414":15461,"61415":10647,"61416":9043,"61417":14185,"61418":2732,"61419":5277,"61420":12100,"61421":237,"61422":6328,"61423":11712,"61424":15725,"61425":9657,"61426":18320,"61427":1945,"61428":8808,"61429":3710,"61430":6291,"61431":10012,"61432":6560,"61433":11907,"61434":16069,"61435":14985,"61436":3310,"61437":16119,"61438":6764,"61439":3602,"61440":15594,"61441":9617,"61442":7023,"61443":7464,"61444":15820,"61445":14489,"61446":1050,"61447":15341,"61448":13722,"61449":14678,"61450":4367,"61451":17951,"61452":5992,"61453":796,"61454":2403,"61455":7341,"61456":6718,"61457":12939,"61458":2935,"61459":992,"61460":1853,"61461":15352,"61462":2386,"61463":17594,"61464":2440,"61465":4025,"61466":17801,"61467":15551,"61468":18287,"61469":12195,"61470":14565,"61471":12602,"61472":5142,"61473":3507,"61474":15192,"61475":9813,"61476":4604,"61477":4407,"61478":10046,"61479":14605,"61480":2862,"61481":7745,"61482":11158,"61483":18269,"61484":18270,"61485":10519,"61486":3701,"61487":10782,"61488":15542,"61489":13932,"61490":6626,"61491":15941,"61492":5210,"61493":2850,"61494":6229,"61495":17841,"61496":16954,"61497":17177,"61498":3534,"61499":10414,"61500":3740,"61501":1262,"61502":15911,"61503":10796,"61504":1876,"61505":9669,"61506":4043,"61507":14034,"61508":17837,"61509":10046,"61510":11086,"61511":15225,"61512":15237,"61513":3802,"61514":2222,"61515":4709,"61516":3078,"61517":8537,"61518":5757,"61519":14448,"61520":10128,"61521":1092,"61522":11479,"61523":10791,"61524":16554,"61525":887,"61526":14884,"61527":17824,"61528":6768,"61529":15864,"61530":16649,"61531":10527,"61532":13146,"61533":17548,"61534":16100,"61535":5164,"61536":8825,"61537":7857,"61538":17498,"61539":17843,"61540":6948,"61541":4541,"61542":7336,"61543":9843,"61544":12802,"61545":12246,"61546":3724,"61547":11416,"61548":3566,"61549":2552,"61550":6654,"61551":12045,"61552":4990,"61553":7191,"61554":15788,"61555":14892,"61556":11484,"61557":1604,"61558":17982,"61559":2861,"61560":11327,"61561":4266,"61562":13615,"61563":14360,"61564":11071,"61565":12317,"61566":1506,"61567":4190,"61568":12805,"61569":12202,"61570":5509,"61571":3226,"61572":17631,"61573":12962,"61574":1163,"61575":9724,"61576":3808,"61577":3587,"61578":17617,"61579":462,"61580":16282,"61581":6443,"61582":6258,"61583":1871,"61584":7493,"61585":1160,"61586":9359,"61587":6871,"61588":16869,"61589":16881,"61590":4185,"61591":1985,"61592":17650,"61593":1626,"61594":2598,"61595":5650,"61596":5174,"61597":4901,"61598":5604,"61599":18109,"61600":5920,"61601":16390,"61602":5227,"61603":415,"61604":15220,"61605":12627,"61606":12554,"61607":3236,"61608":151,"61609":3057,"61610":10560,"61611":14753,"61612":474,"61613":8940,"61614":8163,"61615":15054,"61616":2677,"61617":10392,"61618":12193,"61619":11359,"61620":4274,"61621":17456,"61622":17173,"61623":2417,"61624":9848,"61625":7394,"61626":2561,"61627":13853,"61628":5331,"61629":7156,"61630":1903,"61631":1352,"61632":18242,"61633":17542,"61634":14059,"61635":9401,"61636":11762,"61637":1674,"61638":6751,"61639":9479,"61640":2875,"61641":17865,"61642":16337,"61643":3716,"61644":1837,"61645":14843,"61646":5543,"61647":8060,"61648":12018,"61649":311,"61650":16189,"61651":5003,"61652":1854,"61653":5843,"61654":6537,"61655":5259,"61656":2980,"61657":8405,"61658":3605,"61659":6745,"61660":14919,"61661":12703,"61662":13593,"61663":11701,"61664":7420,"61665":2300,"61666":1557,"61667":4370,"61668":4805,"61669":8686,"61670":4227,"61671":3694,"61672":12874,"61673":17637,"61674":11634,"61675":13124,"61676":12151,"61677":5405,"61678":9874,"61679":8992,"61680":12704,"61681":18341,"61682":2415,"61683":4232,"61684":3279,"61685":15718,"61686":16982,"61687":7062,"61688":12436,"61689":5273,"61690":11778,"61691":8607,"61692":15756,"61693":9581,"61694":883,"61695":5376,"61696":457,"61697":10924,"61698":11591,"61699":4901,"61700":3129,"61701":2655,"61702":11840,"61703":15549,"61704":7217,"61705":4148,"61706":629,"61707":5261,"61708":4360,"61709":11537,"61710":17195,"61711":2556,"61712":606,"61713":7773,"61714":10641,"61715":11225,"61716":6846,"61717":5271,"61718":15395,"61719":10883,"61720":5219,"61721":4519,"61722":17148,"61723":10150,"61724":9705,"61725":6072,"61726":4150,"61727":8186,"61728":11510,"61729":48,"61730":1146,"61731":13241,"61732":10079,"61733":6483,"61734":11426,"61735":17242,"61736":14448,"61737":3942,"61738":10126,"61739":17966,"61740":3820,"61741":706,"61742":12575,"61743":14562,"61744":9930,"61745":8159,"61746":13483,"61747":16445,"61748":6319,"61749":8059,"61750":910,"61751":5266,"61752":2409,"61753":2485,"61754":10895,"61755":9559,"61756":7637,"61757":15826,"61758":2687,"61759":6865,"61760":17998,"61761":3463,"61762":7856,"61763":3533,"61764":22,"61765":13087,"61766":2018,"61767":13813,"61768":2651,"61769":8464,"61770":11699,"61771":7412,"61772":5830,"61773":11066,"61774":13258,"61775":14312,"61776":14574,"61777":3336,"61778":6239,"61779":3264,"61780":15905,"61781":3166,"61782":17975,"61783":14439,"61784":16729,"61785":2074,"61786":15277,"61787":1966,"61788":755,"61789":6873,"61790":5881,"61791":16405,"61792":17481,"61793":3518,"61794":3272,"61795":4907,"61796":14374,"61797":559,"61798":4158,"61799":1851,"61800":5814,"61801":16759,"61802":1668,"61803":10025,"61804":6478,"61805":160,"61806":9151,"61807":11403,"61808":1898,"61809":3305,"61810":15693,"61811":604,"61812":17267,"61813":18131,"61814":15903,"61815":1824,"61816":16799,"61817":8806,"61818":13380,"61819":674,"61820":7403,"61821":14533,"61822":10601,"61823":1233,"61824":1329,"61825":16764,"61826":2652,"61827":9221,"61828":9333,"61829":1315,"61830":4165,"61831":3922,"61832":9709,"61833":6288,"61834":2782,"61835":9844,"61836":13226,"61837":8616,"61838":13248,"61839":6659,"61840":10,"61841":6845,"61842":9484,"61843":17444,"61844":14960,"61845":12199,"61846":10654,"61847":9441,"61848":2148,"61849":16489,"61850":10933,"61851":410,"61852":4348,"61853":3321,"61854":15213,"61855":4016,"61856":11350,"61857":10453,"61858":3881,"61859":6628,"61860":8860,"61861":441,"61862":15174,"61863":3131,"61864":17299,"61865":16440,"61866":8153,"61867":12570,"61868":904,"61869":4762,"61870":8690,"61871":5235,"61872":9090,"61873":16910,"61874":3584,"61875":2180,"61876":7516,"61877":7056,"61878":5903,"61879":18261,"61880":17869,"61881":761,"61882":6300,"61883":6640,"61884":7141,"61885":13164,"61886":2034,"61887":17731,"61888":8990,"61889":15164,"61890":3247,"61891":5322,"61892":3721,"61893":1535,"61894":3784,"61895":12087,"61896":5182,"61897":8747,"61898":13559,"61899":147,"61900":1065,"61901":15001,"61902":2511,"61903":10502,"61904":2661,"61905":12009,"61906":7762,"61907":169,"61908":10099,"61909":12469,"61910":14222,"61911":8807,"61912":11377,"61913":8608,"61914":3098,"61915":8440,"61916":8953,"61917":16826,"61918":7942,"61919":5705,"61920":17197,"61921":15186,"61922":11818,"61923":13634,"61924":16819,"61925":16537,"61926":10302,"61927":4148,"61928":1840,"61929":17451,"61930":17809,"61931":3877,"61932":8339,"61933":6565,"61934":7829,"61935":9888,"61936":14945,"61937":16272,"61938":10373,"61939":12096,"61940":2160,"61941":7310,"61942":11784,"61943":6887,"61944":10724,"61945":4563,"61946":12322,"61947":12978,"61948":1151,"61949":2790,"61950":15594,"61951":8844,"61952":4612,"61953":17642,"61954":17260,"61955":2151,"61956":17941,"61957":3370,"61958":10250,"61959":7139,"61960":12277,"61961":4847,"61962":12273,"61963":16266,"61964":12774,"61965":10551,"61966":6716,"61967":17602,"61968":14903,"61969":5328,"61970":15230,"61971":781,"61972":3191,"61973":14567,"61974":18226,"61975":1858,"61976":5635,"61977":14775,"61978":7078,"61979":14193,"61980":3214,"61981":47,"61982":14966,"61983":4731,"61984":17910,"61985":4104,"61986":17994,"61987":17476,"61988":1017,"61989":5782,"61990":3210,"61991":14793,"61992":1198,"61993":14950,"61994":3619,"61995":6428,"61996":2934,"61997":802,"61998":4883,"61999":12277,"62000":1475,"62001":3113,"62002":2431,"62003":11864,"62004":3078,"62005":8591,"62006":10172,"62007":10868,"62008":9356,"62009":10620,"62010":5882,"62011":8188,"62012":17749,"62013":14804,"62014":11825,"62015":8600,"62016":12139,"62017":14700,"62018":4730,"62019":10653,"62020":8454,"62021":61,"62022":1581,"62023":14016,"62024":13246,"62025":3594,"62026":12258,"62027":8692,"62028":16996,"62029":8125,"62030":1758,"62031":4630,"62032":6434,"62033":4090,"62034":15392,"62035":1228,"62036":11735,"62037":13748,"62038":5896,"62039":2724,"62040":14774,"62041":4670,"62042":10646,"62043":7912,"62044":12005,"62045":18104,"62046":6933,"62047":13231,"62048":2211,"62049":168,"62050":16790,"62051":15944,"62052":17992,"62053":6107,"62054":1896,"62055":15368,"62056":12745,"62057":6034,"62058":5599,"62059":16400,"62060":9983,"62061":10402,"62062":6310,"62063":5062,"62064":16025,"62065":337,"62066":652,"62067":14081,"62068":16823,"62069":325,"62070":763,"62071":22,"62072":3309,"62073":4469,"62074":16644,"62075":17225,"62076":3105,"62077":15317,"62078":2919,"62079":4626,"62080":4312,"62081":397,"62082":11325,"62083":13499,"62084":971,"62085":4648,"62086":4086,"62087":11527,"62088":16242,"62089":12997,"62090":16830,"62091":3680,"62092":10777,"62093":16019,"62094":1066,"62095":18320,"62096":2943,"62097":11566,"62098":1639,"62099":8827,"62100":1189,"62101":2926,"62102":4161,"62103":5071,"62104":17761,"62105":7660,"62106":4563,"62107":651,"62108":11332,"62109":3464,"62110":78,"62111":6574,"62112":13118,"62113":11706,"62114":7456,"62115":12751,"62116":3423,"62117":16744,"62118":10468,"62119":7580,"62120":821,"62121":12253,"62122":4623,"62123":15863,"62124":6248,"62125":12487,"62126":14737,"62127":175,"62128":3214,"62129":9910,"62130":4463,"62131":3471,"62132":6360,"62133":7048,"62134":14033,"62135":17641,"62136":16185,"62137":15766,"62138":16796,"62139":13113,"62140":5518,"62141":10504,"62142":15591,"62143":15687,"62144":17270,"62145":13925,"62146":4819,"62147":5567,"62148":10277,"62149":6755,"62150":2411,"62151":8638,"62152":2985,"62153":310,"62154":6793,"62155":5261,"62156":6892,"62157":2825,"62158":4663,"62159":13632,"62160":6670,"62161":210,"62162":172,"62163":10516,"62164":11095,"62165":4817,"62166":201,"62167":6902,"62168":17344,"62169":7262,"62170":8964,"62171":15847,"62172":17217,"62173":619,"62174":17699,"62175":12765,"62176":17623,"62177":11258,"62178":11632,"62179":17043,"62180":13161,"62181":4946,"62182":8814,"62183":397,"62184":12711,"62185":7662,"62186":4989,"62187":12784,"62188":14692,"62189":8050,"62190":7536,"62191":15120,"62192":7633,"62193":5971,"62194":6984,"62195":7568,"62196":9426,"62197":4389,"62198":9637,"62199":10780,"62200":5593,"62201":17883,"62202":10876,"62203":5892,"62204":2203,"62205":12789,"62206":10130,"62207":5383,"62208":17599,"62209":3438,"62210":3801,"62211":18183,"62212":17615,"62213":5086,"62214":1617,"62215":7662,"62216":1148,"62217":482,"62218":10750,"62219":12529,"62220":38,"62221":12650,"62222":17480,"62223":12187,"62224":12771,"62225":5006,"62226":14809,"62227":467,"62228":14736,"62229":6925,"62230":9463,"62231":13895,"62232":4251,"62233":6504,"62234":16921,"62235":7744,"62236":4838,"62237":1558,"62238":2331,"62239":1490,"62240":1526,"62241":14927,"62242":18134,"62243":8884,"62244":13452,"62245":2619,"62246":1191,"62247":14920,"62248":7158,"62249":16188,"62250":11174,"62251":15417,"62252":8989,"62253":18051,"62254":2477,"62255":16255,"62256":14570,"62257":6036,"62258":14328,"62259":576,"62260":12597,"62261":170,"62262":10589,"62263":14463,"62264":16336,"62265":4338,"62266":9396,"62267":16732,"62268":6193,"62269":7473,"62270":10928,"62271":12784,"62272":17450,"62273":16142,"62274":1526,"62275":14029,"62276":6024,"62277":8424,"62278":16419,"62279":1256,"62280":3847,"62281":6917,"62282":1534,"62283":12012,"62284":11059,"62285":17829,"62286":9737,"62287":6419,"62288":8168,"62289":6498,"62290":2773,"62291":17640,"62292":3755,"62293":8767,"62294":4896,"62295":9328,"62296":6438,"62297":14728,"62298":15183,"62299":6142,"62300":4275,"62301":9278,"62302":1972,"62303":9956,"62304":3282,"62305":5467,"62306":7310,"62307":4855,"62308":2825,"62309":9551,"62310":16283,"62311":3588,"62312":7520,"62313":10902,"62314":3421,"62315":15967,"62316":16199,"62317":13531,"62318":3990,"62319":1714,"62320":14245,"62321":8959,"62322":2822,"62323":3479,"62324":1824,"62325":16355,"62326":15537,"62327":505,"62328":2911,"62329":11901,"62330":627,"62331":4770,"62332":2542,"62333":8395,"62334":6904,"62335":10422,"62336":14476,"62337":11842,"62338":1683,"62339":16917,"62340":13652,"62341":15005,"62342":1289,"62343":9040,"62344":12875,"62345":17084,"62346":752,"62347":11886,"62348":17004,"62349":16628,"62350":14385,"62351":296,"62352":11424,"62353":6556,"62354":12735,"62355":10184,"62356":6127,"62357":17390,"62358":1812,"62359":925,"62360":8776,"62361":4891,"62362":7632,"62363":6395,"62364":18258,"62365":1369,"62366":16005,"62367":11570,"62368":4015,"62369":13564,"62370":17839,"62371":14481,"62372":8424,"62373":14884,"62374":6718,"62375":16433,"62376":13469,"62377":15590,"62378":2331,"62379":17971,"62380":7556,"62381":6743,"62382":3236,"62383":9012,"62384":504,"62385":8490,"62386":287,"62387":6457,"62388":6249,"62389":2736,"62390":16029,"62391":392,"62392":16883,"62393":12959,"62394":10042,"62395":7669,"62396":2844,"62397":95,"62398":34,"62399":8973,"62400":15726,"62401":18239,"62402":9796,"62403":16843,"62404":11105,"62405":13939,"62406":2468,"62407":17357,"62408":18048,"62409":13244,"62410":14782,"62411":16993,"62412":4746,"62413":3916,"62414":6291,"62415":1322,"62416":2302,"62417":12884,"62418":4097,"62419":9869,"62420":16693,"62421":4729,"62422":10483,"62423":16636,"62424":17183,"62425":5962,"62426":3696,"62427":12602,"62428":243,"62429":14974,"62430":7724,"62431":9670,"62432":4941,"62433":13331,"62434":14782,"62435":3202,"62436":12275,"62437":15977,"62438":4364,"62439":1813,"62440":17074,"62441":6946,"62442":6229,"62443":2389,"62444":8227,"62445":14287,"62446":5456,"62447":17673,"62448":6015,"62449":13905,"62450":5656,"62451":10403,"62452":11778,"62453":2497,"62454":6766,"62455":14286,"62456":14562,"62457":1196,"62458":977,"62459":7927,"62460":12207,"62461":2821,"62462":5582,"62463":6458,"62464":2815,"62465":6759,"62466":3539,"62467":11634,"62468":10085,"62469":11995,"62470":14922,"62471":2098,"62472":13761,"62473":4035,"62474":4763,"62475":4025,"62476":15203,"62477":6106,"62478":18297,"62479":776,"62480":6866,"62481":8214,"62482":707,"62483":9358,"62484":11579,"62485":17601,"62486":7045,"62487":13114,"62488":15278,"62489":7121,"62490":6584,"62491":8131,"62492":2466,"62493":16011,"62494":13069,"62495":12791,"62496":2904,"62497":4900,"62498":9942,"62499":1718,"62500":2112,"62501":7766,"62502":6319,"62503":9057,"62504":13348,"62505":6529,"62506":15697,"62507":8108,"62508":1757,"62509":5422,"62510":10946,"62511":9658,"62512":13766,"62513":14105,"62514":11276,"62515":15884,"62516":17353,"62517":285,"62518":16355,"62519":3880,"62520":6092,"62521":17931,"62522":3921,"62523":7526,"62524":5685,"62525":16216,"62526":14833,"62527":5874,"62528":12243,"62529":12988,"62530":341,"62531":16867,"62532":10253,"62533":350,"62534":4387,"62535":18200,"62536":7969,"62537":9028,"62538":3770,"62539":1253,"62540":17599,"62541":1196,"62542":12573,"62543":3661,"62544":14055,"62545":1284,"62546":16629,"62547":10456,"62548":16090,"62549":7573,"62550":13571,"62551":8160,"62552":181,"62553":9272,"62554":16166,"62555":8982,"62556":13726,"62557":11477,"62558":7795,"62559":15406,"62560":1515,"62561":12783,"62562":9082,"62563":3164,"62564":3844,"62565":7800,"62566":15255,"62567":10750,"62568":10557,"62569":15149,"62570":31,"62571":15516,"62572":9949,"62573":5511,"62574":5509,"62575":1235,"62576":11942,"62577":14041,"62578":17227,"62579":12762,"62580":16025,"62581":3281,"62582":15500,"62583":15579,"62584":7253,"62585":17801,"62586":2590,"62587":706,"62588":14900,"62589":9296,"62590":10642,"62591":5975,"62592":17828,"62593":5765,"62594":8168,"62595":4940,"62596":17958,"62597":11606,"62598":3234,"62599":16078,"62600":15460,"62601":16112,"62602":14532,"62603":14089,"62604":18170,"62605":364,"62606":13129,"62607":6591,"62608":15850,"62609":12879,"62610":11974,"62611":16475,"62612":12417,"62613":9988,"62614":16837,"62615":18341,"62616":12120,"62617":12365,"62618":1001,"62619":734,"62620":7268,"62621":2089,"62622":11010,"62623":11342,"62624":9746,"62625":16406,"62626":12591,"62627":16808,"62628":1310,"62629":7120,"62630":14541,"62631":9287,"62632":13776,"62633":11741,"62634":12655,"62635":4411,"62636":9460,"62637":11078,"62638":3714,"62639":10484,"62640":10707,"62641":13311,"62642":6809,"62643":12978,"62644":14297,"62645":3877,"62646":12454,"62647":2278,"62648":14651,"62649":15255,"62650":6950,"62651":16260,"62652":7734,"62653":12860,"62654":10350,"62655":17263,"62656":13639,"62657":14811,"62658":7714,"62659":1784,"62660":11761,"62661":14357,"62662":9674,"62663":5554,"62664":4113,"62665":17715,"62666":4968,"62667":3790,"62668":7408,"62669":1143,"62670":16116,"62671":16367,"62672":914,"62673":7964,"62674":16824,"62675":13657,"62676":17340,"62677":4373,"62678":5236,"62679":1981,"62680":6078,"62681":1914,"62682":12361,"62683":10899,"62684":17980,"62685":17763,"62686":15489,"62687":13869,"62688":2097,"62689":5200,"62690":2748,"62691":2148,"62692":2771,"62693":6232,"62694":17462,"62695":12345,"62696":4536,"62697":10342,"62698":14805,"62699":10930,"62700":17289,"62701":15839,"62702":17905,"62703":4607,"62704":12895,"62705":17363,"62706":10310,"62707":15072,"62708":2043,"62709":17391,"62710":10877,"62711":9631,"62712":9744,"62713":4321,"62714":11657,"62715":3346,"62716":420,"62717":14671,"62718":2746,"62719":7267,"62720":12874,"62721":15870,"62722":13764,"62723":5710,"62724":1097,"62725":3904,"62726":16423,"62727":2094,"62728":3790,"62729":7843,"62730":13601,"62731":15217,"62732":8613,"62733":9781,"62734":14733,"62735":16520,"62736":16157,"62737":4530,"62738":363,"62739":17608,"62740":872,"62741":13681,"62742":15894,"62743":7842,"62744":6905,"62745":5895,"62746":16298,"62747":4723,"62748":9145,"62749":8613,"62750":7704,"62751":9481,"62752":12432,"62753":60,"62754":7821,"62755":11497,"62756":11157,"62757":13934,"62758":10533,"62759":17266,"62760":1291,"62761":1186,"62762":6634,"62763":607,"62764":2939,"62765":12565,"62766":12407,"62767":9624,"62768":7464,"62769":2033,"62770":18019,"62771":14973,"62772":10994,"62773":16209,"62774":2501,"62775":16681,"62776":11991,"62777":10915,"62778":633,"62779":3350,"62780":2209,"62781":6920,"62782":11943,"62783":15779,"62784":11250,"62785":16915,"62786":2184,"62787":1719,"62788":6200,"62789":16980,"62790":68,"62791":318,"62792":11733,"62793":10504,"62794":3092,"62795":2312,"62796":17144,"62797":15471,"62798":13533,"62799":3109,"62800":4014,"62801":8614,"62802":11351,"62803":10603,"62804":10451,"62805":16463,"62806":5812,"62807":14576,"62808":15686,"62809":17520,"62810":2846,"62811":5250,"62812":5849,"62813":10435,"62814":12169,"62815":7584,"62816":11588,"62817":18014,"62818":6958,"62819":15479,"62820":10067,"62821":14955,"62822":3071,"62823":12458,"62824":14071,"62825":767,"62826":4113,"62827":18209,"62828":13080,"62829":12367,"62830":3324,"62831":15389,"62832":3660,"62833":16257,"62834":4832,"62835":17065,"62836":9823,"62837":12876,"62838":15171,"62839":4248,"62840":17794,"62841":5698,"62842":8215,"62843":17394,"62844":18026,"62845":5291,"62846":11953,"62847":274,"62848":5350,"62849":2002,"62850":5997,"62851":9059,"62852":11022,"62853":14577,"62854":4144,"62855":16568,"62856":1888,"62857":13356,"62858":2550,"62859":1502,"62860":9669,"62861":8453,"62862":15999,"62863":4520,"62864":5191,"62865":2369,"62866":3767,"62867":3999,"62868":454,"62869":10957,"62870":17053,"62871":11889,"62872":1756,"62873":9989,"62874":14313,"62875":9846,"62876":10501,"62877":9829,"62878":570,"62879":799,"62880":18326,"62881":9886,"62882":14371,"62883":1800,"62884":3608,"62885":10816,"62886":5780,"62887":3994,"62888":3775,"62889":16138,"62890":14800,"62891":9622,"62892":7690,"62893":477,"62894":9099,"62895":13816,"62896":11221,"62897":13697,"62898":4472,"62899":14529,"62900":18119,"62901":8319,"62902":11983,"62903":7825,"62904":15147,"62905":7559,"62906":15711,"62907":9438,"62908":16347,"62909":8871,"62910":5138,"62911":15,"62912":1299,"62913":4561,"62914":14950,"62915":5235,"62916":15636,"62917":13739,"62918":16610,"62919":10470,"62920":11784,"62921":12346,"62922":10505,"62923":11726,"62924":11767,"62925":18000,"62926":1037,"62927":10895,"62928":823,"62929":18064,"62930":6490,"62931":12265,"62932":15259,"62933":3183,"62934":45,"62935":9656,"62936":1180,"62937":13800,"62938":10247,"62939":10507,"62940":5863,"62941":15780,"62942":11143,"62943":10211,"62944":10734,"62945":11949,"62946":16651,"62947":12527,"62948":4204,"62949":3518,"62950":6872,"62951":10509,"62952":4441,"62953":6163,"62954":14943,"62955":9562,"62956":433,"62957":155,"62958":7569,"62959":1282,"62960":5395,"62961":6775,"62962":13105,"62963":2918,"62964":12995,"62965":6937,"62966":3995,"62967":9233,"62968":16592,"62969":697,"62970":9928,"62971":1631,"62972":3662,"62973":4587,"62974":10575,"62975":9335,"62976":2475,"62977":15163,"62978":428,"62979":5554,"62980":4696,"62981":14478,"62982":8869,"62983":10256,"62984":4606,"62985":2319,"62986":16740,"62987":14756,"62988":16385,"62989":10217,"62990":14418,"62991":986,"62992":10636,"62993":15771,"62994":14910,"62995":9214,"62996":1527,"62997":427,"62998":11401,"62999":2470,"63000":10654,"63001":14307,"63002":15050,"63003":444,"63004":9991,"63005":16007,"63006":9610,"63007":2893,"63008":14366,"63009":12177,"63010":14372,"63011":15049,"63012":15256,"63013":3528,"63014":5223,"63015":16578,"63016":16956,"63017":17817,"63018":16111,"63019":13936,"63020":15324,"63021":9126,"63022":11913,"63023":15763,"63024":7963,"63025":6930,"63026":10670,"63027":18047,"63028":7162,"63029":18348,"63030":6171,"63031":13796,"63032":16088,"63033":17080,"63034":11362,"63035":6460,"63036":5439,"63037":10291,"63038":2475,"63039":5715,"63040":7513,"63041":826,"63042":3991,"63043":11988,"63044":8977,"63045":14505,"63046":14439,"63047":2520,"63048":17297,"63049":3916,"63050":3041,"63051":8682,"63052":6231,"63053":2602,"63054":15582,"63055":8105,"63056":1058,"63057":7421,"63058":15102,"63059":7891,"63060":8206,"63061":10878,"63062":11804,"63063":8206,"63064":10080,"63065":6054,"63066":5320,"63067":11781,"63068":9289,"63069":1285,"63070":11208,"63071":16839,"63072":15796,"63073":14088,"63074":2835,"63075":6708,"63076":4207,"63077":4445,"63078":1259,"63079":14529,"63080":15414,"63081":3773,"63082":16527,"63083":5907,"63084":2269,"63085":6073,"63086":10921,"63087":3573,"63088":2597,"63089":17119,"63090":1317,"63091":859,"63092":10554,"63093":1057,"63094":12216,"63095":10172,"63096":3974,"63097":8724,"63098":9800,"63099":10361,"63100":5637,"63101":2642,"63102":16559,"63103":7042,"63104":11574,"63105":9679,"63106":7327,"63107":1231,"63108":15314,"63109":3991,"63110":18023,"63111":15940,"63112":8032,"63113":11125,"63114":272,"63115":11928,"63116":951,"63117":5614,"63118":5385,"63119":4720,"63120":12069,"63121":14615,"63122":8247,"63123":10301,"63124":13816,"63125":5423,"63126":464,"63127":13254,"63128":7721,"63129":11027,"63130":8441,"63131":10500,"63132":17396,"63133":16979,"63134":7533,"63135":23,"63136":13251,"63137":16971,"63138":1736,"63139":5982,"63140":7154,"63141":12811,"63142":15046,"63143":9211,"63144":3659,"63145":841,"63146":17508,"63147":384,"63148":6926,"63149":9487,"63150":11151,"63151":16891,"63152":10887,"63153":6431,"63154":13307,"63155":7134,"63156":4648,"63157":5581,"63158":359,"63159":11566,"63160":4552,"63161":13246,"63162":6243,"63163":13016,"63164":8360,"63165":5443,"63166":2374,"63167":3119,"63168":16206,"63169":11792,"63170":1677,"63171":6614,"63172":979,"63173":4009,"63174":7761,"63175":5103,"63176":14961,"63177":16454,"63178":13129,"63179":3559,"63180":12304,"63181":103,"63182":13387,"63183":3575,"63184":12822,"63185":17862,"63186":258,"63187":4785,"63188":13517,"63189":15248,"63190":1110,"63191":2005,"63192":5413,"63193":1763,"63194":5861,"63195":16586,"63196":16146,"63197":5225,"63198":14827,"63199":11865,"63200":2264,"63201":8460,"63202":5593,"63203":15660,"63204":16297,"63205":5700,"63206":5366,"63207":11032,"63208":15653,"63209":4268,"63210":16366,"63211":14053,"63212":1326,"63213":4244,"63214":15201,"63215":15485,"63216":15541,"63217":12875,"63218":3684,"63219":18,"63220":10100,"63221":1963,"63222":4847,"63223":1867,"63224":13225,"63225":4662,"63226":14789,"63227":7536,"63228":7457,"63229":9227,"63230":16691,"63231":11454,"63232":18005,"63233":5484,"63234":5820,"63235":14813,"63236":1589,"63237":1588,"63238":7489,"63239":15282,"63240":4063,"63241":13494,"63242":16205,"63243":5250,"63244":5242,"63245":15183,"63246":6866,"63247":15178,"63248":9725,"63249":13587,"63250":13041,"63251":9379,"63252":3762,"63253":17834,"63254":12968,"63255":17814,"63256":14607,"63257":13560,"63258":5200,"63259":7287,"63260":11546,"63261":5080,"63262":12714,"63263":2837,"63264":323,"63265":6860,"63266":4265,"63267":3401,"63268":13628,"63269":14383,"63270":5068,"63271":2288,"63272":15142,"63273":1820,"63274":15445,"63275":6049,"63276":5494,"63277":4658,"63278":18291,"63279":12402,"63280":12624,"63281":10687,"63282":12478,"63283":7729,"63284":10248,"63285":17172,"63286":11922,"63287":5572,"63288":10216,"63289":2660,"63290":17775,"63291":1650,"63292":3455,"63293":14165,"63294":11178,"63295":14885,"63296":7062,"63297":5894,"63298":3578,"63299":11043,"63300":11111,"63301":10795,"63302":16907,"63303":10791,"63304":11644,"63305":10231,"63306":16593,"63307":226,"63308":9331,"63309":13735,"63310":434,"63311":17373,"63312":9850,"63313":3151,"63314":5265,"63315":6113,"63316":2268,"63317":15788,"63318":3693,"63319":2555,"63320":615,"63321":5745,"63322":15566,"63323":16788,"63324":7925,"63325":11578,"63326":14616,"63327":4950,"63328":10863,"63329":13340,"63330":982,"63331":10783,"63332":11930,"63333":17425,"63334":3268,"63335":14739,"63336":13180,"63337":5043,"63338":13633,"63339":6980,"63340":12825,"63341":4199,"63342":13038,"63343":6920,"63344":10326,"63345":5464,"63346":1830,"63347":6181,"63348":6443,"63349":6631,"63350":16124,"63351":11175,"63352":17090,"63353":2197,"63354":2710,"63355":994,"63356":4099,"63357":9323,"63358":11036,"63359":8997,"63360":9304,"63361":15653,"63362":14763,"63363":75,"63364":7096,"63365":523,"63366":3833,"63367":7405,"63368":17387,"63369":6775,"63370":12755,"63371":10417,"63372":9027,"63373":5706,"63374":10745,"63375":10900,"63376":12901,"63377":17088,"63378":5502,"63379":6758,"63380":16784,"63381":5755,"63382":10299,"63383":13198,"63384":9091,"63385":16037,"63386":13529,"63387":8158,"63388":6409,"63389":16765,"63390":15289,"63391":10078,"63392":10992,"63393":12940,"63394":17216,"63395":3290,"63396":14652,"63397":15129,"63398":8070,"63399":11297,"63400":7835,"63401":10678,"63402":14821,"63403":15586,"63404":18044,"63405":600,"63406":6384,"63407":5321,"63408":14249,"63409":2546,"63410":3876,"63411":2622,"63412":17806,"63413":827,"63414":1780,"63415":15687,"63416":13765,"63417":11112,"63418":5000,"63419":14539,"63420":8219,"63421":518,"63422":8628,"63423":16859,"63424":9536,"63425":8200,"63426":13168,"63427":15248,"63428":14578,"63429":3144,"63430":10865,"63431":14587,"63432":2788,"63433":9551,"63434":10469,"63435":16797,"63436":1558,"63437":5536,"63438":11140,"63439":2658,"63440":1594,"63441":9540,"63442":803,"63443":9733,"63444":13538,"63445":9472,"63446":2915,"63447":9400,"63448":7581,"63449":3746,"63450":7770,"63451":9271,"63452":12203,"63453":11529,"63454":8782,"63455":15960,"63456":397,"63457":1358,"63458":17195,"63459":3992,"63460":9628,"63461":11585,"63462":12906,"63463":9356,"63464":15472,"63465":3092,"63466":196,"63467":8972,"63468":9627,"63469":10080,"63470":16534,"63471":3302,"63472":9083,"63473":17559,"63474":5355,"63475":14493,"63476":7882,"63477":13824,"63478":16148,"63479":1036,"63480":7299,"63481":15510,"63482":18108,"63483":1003,"63484":9092,"63485":17936,"63486":8564,"63487":901,"63488":3531,"63489":3984,"63490":11842,"63491":1882,"63492":8057,"63493":7384,"63494":8108,"63495":8505,"63496":16654,"63497":1298,"63498":13706,"63499":15049,"63500":12347,"63501":11333,"63502":4549,"63503":4466,"63504":7288,"63505":14139,"63506":7901,"63507":2969,"63508":13456,"63509":8276,"63510":12580,"63511":12394,"63512":2846,"63513":12316,"63514":18352,"63515":9560,"63516":3580,"63517":13357,"63518":14968,"63519":11592,"63520":2900,"63521":7237,"63522":11068,"63523":14843,"63524":3527,"63525":12310,"63526":7985,"63527":15507,"63528":9589,"63529":2464,"63530":14934,"63531":6981,"63532":17605,"63533":9908,"63534":2296,"63535":9835,"63536":4402,"63537":9270,"63538":32,"63539":9542,"63540":5202,"63541":7202,"63542":11824,"63543":11874,"63544":2100,"63545":17139,"63546":7542,"63547":16782,"63548":9886,"63549":8920,"63550":15950,"63551":1999,"63552":15585,"63553":5545,"63554":5209,"63555":10721,"63556":5560,"63557":13079,"63558":15082,"63559":5525,"63560":11590,"63561":13088,"63562":5398,"63563":13939,"63564":16471,"63565":2234,"63566":11321,"63567":8008,"63568":8346,"63569":1035,"63570":8631,"63571":18183,"63572":9364,"63573":17101,"63574":18322,"63575":11621,"63576":6754,"63577":9860,"63578":1043,"63579":8636,"63580":4644,"63581":17087,"63582":10855,"63583":10845,"63584":8736,"63585":857,"63586":3712,"63587":18187,"63588":8273,"63589":11637,"63590":10736,"63591":6659,"63592":7151,"63593":8663,"63594":12476,"63595":13217,"63596":2762,"63597":10200,"63598":1255,"63599":10523,"63600":7601,"63601":11492,"63602":2028,"63603":17918,"63604":1186,"63605":5099,"63606":13918,"63607":11725,"63608":1506,"63609":112,"63610":15000,"63611":7356,"63612":12483,"63613":18328,"63614":14644,"63615":10888,"63616":567,"63617":17382,"63618":8545,"63619":4884,"63620":531,"63621":4152,"63622":16947,"63623":10832,"63624":1675,"63625":3026,"63626":17509,"63627":12243,"63628":2528,"63629":7490,"63630":1684,"63631":9889,"63632":13750,"63633":7438,"63634":7665,"63635":12720,"63636":16372,"63637":11408,"63638":6705,"63639":18288,"63640":14054,"63641":3569,"63642":13590,"63643":6697,"63644":10976,"63645":13203,"63646":16141,"63647":9107,"63648":17151,"63649":12698,"63650":17814,"63651":6689,"63652":9034,"63653":4590,"63654":10594,"63655":1210,"63656":17127,"63657":3476,"63658":4910,"63659":17097,"63660":15543,"63661":15940,"63662":15053,"63663":13060,"63664":15955,"63665":6992,"63666":14433,"63667":12329,"63668":4193,"63669":9034,"63670":12368,"63671":8737,"63672":10969,"63673":2454,"63674":2455,"63675":5973,"63676":915,"63677":11086,"63678":12979,"63679":3975,"63680":14761,"63681":9794,"63682":6665,"63683":7720,"63684":6992,"63685":11384,"63686":12055,"63687":13072,"63688":7537,"63689":6192,"63690":1014,"63691":2978,"63692":17906,"63693":1248,"63694":9270,"63695":6241,"63696":1092,"63697":9169,"63698":9254,"63699":2203,"63700":10570,"63701":13913,"63702":149,"63703":18113,"63704":14426,"63705":8416,"63706":15338,"63707":7588,"63708":11327,"63709":5371,"63710":16986,"63711":13935,"63712":9669,"63713":9974,"63714":2721,"63715":7727,"63716":9427,"63717":1207,"63718":1463,"63719":15390,"63720":12429,"63721":1261,"63722":1010,"63723":8181,"63724":5094,"63725":15506,"63726":420,"63727":15176,"63728":6361,"63729":5357,"63730":14522,"63731":17741,"63732":17152,"63733":14157,"63734":11080,"63735":17459,"63736":17324,"63737":5740,"63738":10603,"63739":12992,"63740":7651,"63741":11336,"63742":9792,"63743":11711,"63744":13502,"63745":10046,"63746":4277,"63747":8201,"63748":9789,"63749":225,"63750":13127,"63751":17310,"63752":744,"63753":8195,"63754":1945,"63755":3423,"63756":6348,"63757":15698,"63758":9198,"63759":15416,"63760":9777,"63761":11265,"63762":8046,"63763":18072,"63764":15655,"63765":7563,"63766":1341,"63767":4905,"63768":1537,"63769":16202,"63770":17895,"63771":9381,"63772":15309,"63773":15085,"63774":3841,"63775":4157,"63776":1051,"63777":16207,"63778":5440,"63779":5674,"63780":5355,"63781":8829,"63782":471,"63783":13197,"63784":10835,"63785":1838,"63786":18359,"63787":14578,"63788":941,"63789":6447,"63790":16099,"63791":10007,"63792":12411,"63793":2306,"63794":16230,"63795":7104,"63796":1268,"63797":12648,"63798":16635,"63799":16900,"63800":4507,"63801":2383,"63802":6962,"63803":15056,"63804":3608,"63805":2740,"63806":14858,"63807":8954,"63808":4515,"63809":12108,"63810":16062,"63811":18266,"63812":6391,"63813":3857,"63814":13465,"63815":6484,"63816":5760,"63817":16108,"63818":16719,"63819":15888,"63820":10631,"63821":1273,"63822":4590,"63823":3703,"63824":8397,"63825":4591,"63826":7043,"63827":1606,"63828":16566,"63829":1139,"63830":6161,"63831":6814,"63832":13522,"63833":6880,"63834":4336,"63835":8811,"63836":2339,"63837":9514,"63838":15178,"63839":1393,"63840":18209,"63841":7830,"63842":17979,"63843":12111,"63844":9888,"63845":14842,"63846":15499,"63847":210,"63848":6586,"63849":7648,"63850":11879,"63851":8931,"63852":1376,"63853":5607,"63854":18300,"63855":9984,"63856":6381,"63857":3777,"63858":3313,"63859":14994,"63860":6555,"63861":12949,"63862":13417,"63863":2644,"63864":17583,"63865":10276,"63866":2235,"63867":9574,"63868":3226,"63869":4934,"63870":5002,"63871":2681,"63872":1900,"63873":7351,"63874":3671,"63875":16942,"63876":6037,"63877":11089,"63878":14117,"63879":1109,"63880":2484,"63881":17842,"63882":5995,"63883":17481,"63884":18225,"63885":7390,"63886":14935,"63887":18074,"63888":12224,"63889":9618,"63890":8220,"63891":8996,"63892":12279,"63893":8656,"63894":16646,"63895":9633,"63896":9087,"63897":11906,"63898":3545,"63899":12727,"63900":14894,"63901":9802,"63902":7462,"63903":10944,"63904":8176,"63905":15666,"63906":2888,"63907":7298,"63908":17257,"63909":11486,"63910":701,"63911":3745,"63912":1754,"63913":10406,"63914":5108,"63915":550,"63916":2146,"63917":83,"63918":14220,"63919":10885,"63920":10763,"63921":11436,"63922":13698,"63923":17273,"63924":16891,"63925":17987,"63926":4675,"63927":16079,"63928":8296,"63929":10069,"63930":8161,"63931":4586,"63932":10575,"63933":11914,"63934":2220,"63935":18019,"63936":17415,"63937":14551,"63938":4707,"63939":3694,"63940":5675,"63941":17390,"63942":7603,"63943":7379,"63944":5409,"63945":13261,"63946":9007,"63947":13463,"63948":7393,"63949":1900,"63950":7023,"63951":5004,"63952":5393,"63953":9391,"63954":16338,"63955":4142,"63956":6241,"63957":17884,"63958":5895,"63959":17763,"63960":4351,"63961":10199,"63962":8183,"63963":16508,"63964":6986,"63965":632,"63966":15476,"63967":836,"63968":7953,"63969":1633,"63970":17759,"63971":11909,"63972":1891,"63973":13718,"63974":7900,"63975":10298,"63976":3933,"63977":15531,"63978":2872,"63979":6878,"63980":4851,"63981":7003,"63982":8253,"63983":8181,"63984":12031,"63985":12733,"63986":13838,"63987":5599,"63988":8671,"63989":1934,"63990":14821,"63991":7794,"63992":880,"63993":140,"63994":9364,"63995":2578,"63996":10765,"63997":4255,"63998":7501,"63999":2608,"64000":1397,"64001":17442,"64002":13662,"64003":8233,"64004":17962,"64005":3160,"64006":14310,"64007":8703,"64008":3644,"64009":4203,"64010":9111,"64011":6905,"64012":4900,"64013":3029,"64014":15766,"64015":17185,"64016":14569,"64017":6430,"64018":4718,"64019":9618,"64020":13151,"64021":2799,"64022":5068,"64023":14127,"64024":14865,"64025":3415,"64026":12284,"64027":17951,"64028":3978,"64029":7531,"64030":8904,"64031":11487,"64032":2327,"64033":15924,"64034":15734,"64035":15374,"64036":7732,"64037":1821,"64038":9280,"64039":3398,"64040":12856,"64041":5235,"64042":11966,"64043":16518,"64044":10042,"64045":11312,"64046":14972,"64047":13308,"64048":11544,"64049":13438,"64050":4105,"64051":17126,"64052":10334,"64053":5151,"64054":15941,"64055":11240,"64056":13606,"64057":113,"64058":12437,"64059":9004,"64060":4601,"64061":16770,"64062":7163,"64063":17890,"64064":11694,"64065":3356,"64066":15140,"64067":15059,"64068":2441,"64069":12106,"64070":10622,"64071":4324,"64072":5166,"64073":17312,"64074":10391,"64075":10422,"64076":11437,"64077":1542,"64078":2721,"64079":2194,"64080":4407,"64081":1669,"64082":5587,"64083":177,"64084":2916,"64085":10032,"64086":15388,"64087":8826,"64088":11797,"64089":2567,"64090":12658,"64091":670,"64092":14471,"64093":9695,"64094":12961,"64095":3778,"64096":9630,"64097":2934,"64098":12455,"64099":12198,"64100":5030,"64101":6857,"64102":8506,"64103":2574,"64104":734,"64105":6228,"64106":16211,"64107":14954,"64108":14058,"64109":13334,"64110":1667,"64111":5352,"64112":15193,"64113":14705,"64114":17248,"64115":7368,"64116":311,"64117":15674,"64118":425,"64119":10080,"64120":5324,"64121":427,"64122":7405,"64123":10079,"64124":16350,"64125":1726,"64126":3135,"64127":18003,"64128":15605,"64129":6855,"64130":3145,"64131":11874,"64132":3305,"64133":14955,"64134":5088,"64135":16142,"64136":11094,"64137":1556,"64138":10357,"64139":2255,"64140":14913,"64141":1269,"64142":16966,"64143":14220,"64144":6209,"64145":5380,"64146":6921,"64147":12736,"64148":8731,"64149":16737,"64150":15764,"64151":10603,"64152":8135,"64153":9687,"64154":18116,"64155":7615,"64156":1236,"64157":16808,"64158":16672,"64159":3064,"64160":12989,"64161":17402,"64162":14933,"64163":11922,"64164":15697,"64165":379,"64166":9023,"64167":9008,"64168":6886,"64169":1176,"64170":5189,"64171":16617,"64172":11134,"64173":9091,"64174":540,"64175":12039,"64176":17670,"64177":9241,"64178":15114,"64179":7115,"64180":6449,"64181":11323,"64182":14894,"64183":17627,"64184":5849,"64185":5193,"64186":1929,"64187":13868,"64188":14930,"64189":17965,"64190":7470,"64191":18354,"64192":12278,"64193":9803,"64194":5724,"64195":1264,"64196":2298,"64197":7600,"64198":17195,"64199":1301,"64200":7707,"64201":7538,"64202":4919,"64203":16926,"64204":8237,"64205":9051,"64206":14731,"64207":8261,"64208":5195,"64209":11922,"64210":2169,"64211":191,"64212":17671,"64213":10130,"64214":12832,"64215":4984,"64216":9261,"64217":2517,"64218":3729,"64219":13721,"64220":3630,"64221":4618,"64222":10796,"64223":9883,"64224":7151,"64225":7876,"64226":9193,"64227":8309,"64228":2623,"64229":2878,"64230":16456,"64231":12119,"64232":13574,"64233":1208,"64234":15511,"64235":12613,"64236":10687,"64237":12422,"64238":17332,"64239":10993,"64240":14619,"64241":9455,"64242":4260,"64243":6842,"64244":4399,"64245":5065,"64246":13346,"64247":8063,"64248":462,"64249":5107,"64250":10414,"64251":7958,"64252":8459,"64253":5261,"64254":7544,"64255":12497,"64256":6154,"64257":16879,"64258":10403,"64259":11911,"64260":13410,"64261":13904,"64262":10740,"64263":4183,"64264":1265,"64265":1948,"64266":7395,"64267":8827,"64268":17976,"64269":6850,"64270":11561,"64271":1483,"64272":15696,"64273":5593,"64274":4263,"64275":4132,"64276":10592,"64277":11296,"64278":14222,"64279":32,"64280":14091,"64281":18078,"64282":2385,"64283":16018,"64284":17691,"64285":8998,"64286":3923,"64287":6489,"64288":4740,"64289":8565,"64290":12642,"64291":7077,"64292":17969,"64293":15657,"64294":9437,"64295":11392,"64296":13841,"64297":5540,"64298":15902,"64299":10605,"64300":1375,"64301":13612,"64302":5420,"64303":7894,"64304":16049,"64305":18009,"64306":6905,"64307":17880,"64308":7396,"64309":5890,"64310":11154,"64311":9464,"64312":12340,"64313":13921,"64314":163,"64315":4680,"64316":8760,"64317":3635,"64318":9364,"64319":15326,"64320":15491,"64321":44,"64322":9412,"64323":8214,"64324":16826,"64325":7450,"64326":9991,"64327":2522,"64328":7951,"64329":552,"64330":8210,"64331":268,"64332":10840,"64333":10474,"64334":17344,"64335":6411,"64336":6604,"64337":1834,"64338":7052,"64339":16123,"64340":1193,"64341":7466,"64342":14184,"64343":5684,"64344":4983,"64345":7723,"64346":8501,"64347":8572,"64348":5094,"64349":3879,"64350":6143,"64351":7319,"64352":13250,"64353":13507,"64354":294,"64355":5487,"64356":12131,"64357":5947,"64358":11955,"64359":15305,"64360":1094,"64361":10649,"64362":9002,"64363":9936,"64364":10122,"64365":10688,"64366":9854,"64367":7594,"64368":17937,"64369":10626,"64370":4612,"64371":3769,"64372":6191,"64373":18040,"64374":9762,"64375":10206,"64376":18076,"64377":13832,"64378":162,"64379":1752,"64380":12481,"64381":8083,"64382":14412,"64383":1854,"64384":16417,"64385":12229,"64386":6073,"64387":1372,"64388":4709,"64389":8459,"64390":12906,"64391":1291,"64392":8711,"64393":11333,"64394":1682,"64395":2680,"64396":5856,"64397":17895,"64398":2177,"64399":1347,"64400":2324,"64401":10636,"64402":13169,"64403":3019,"64404":9971,"64405":12376,"64406":3093,"64407":16526,"64408":10202,"64409":2717,"64410":4439,"64411":7940,"64412":4735,"64413":14588,"64414":7626,"64415":16851,"64416":13050,"64417":1579,"64418":4611,"64419":14439,"64420":12116,"64421":16773,"64422":7639,"64423":12157,"64424":16281,"64425":13739,"64426":1732,"64427":5692,"64428":18327,"64429":4567,"64430":14204,"64431":14177,"64432":7061,"64433":3817,"64434":15058,"64435":1445,"64436":1279,"64437":6725,"64438":3827,"64439":333,"64440":15705,"64441":5285,"64442":15442,"64443":6275,"64444":9139,"64445":3945,"64446":16884,"64447":10097,"64448":15530,"64449":15846,"64450":4111,"64451":12637,"64452":779,"64453":12881,"64454":2848,"64455":14136,"64456":12509,"64457":8969,"64458":7954,"64459":7419,"64460":13920,"64461":14579,"64462":1383,"64463":9091,"64464":12805,"64465":7367,"64466":5941,"64467":8666,"64468":4233,"64469":10746,"64470":6916,"64471":15858,"64472":10287,"64473":16111,"64474":1600,"64475":2996,"64476":10437,"64477":17825,"64478":9474,"64479":14639,"64480":6149,"64481":11501,"64482":15268,"64483":8611,"64484":18004,"64485":8784,"64486":13633,"64487":9581,"64488":13416,"64489":3594,"64490":3152,"64491":16568,"64492":2137,"64493":12147,"64494":10786,"64495":5031,"64496":10134,"64497":4631,"64498":8073,"64499":8610,"64500":9537,"64501":12321,"64502":10852,"64503":2970,"64504":10488,"64505":2757,"64506":715,"64507":15826,"64508":4571,"64509":9283,"64510":3354,"64511":10590,"64512":16954,"64513":13147,"64514":18029,"64515":5861,"64516":7380,"64517":15186,"64518":8241,"64519":11353,"64520":11804,"64521":3,"64522":3117,"64523":12713,"64524":16456,"64525":4278,"64526":7556,"64527":417,"64528":12858,"64529":4695,"64530":18351,"64531":4243,"64532":10381,"64533":16153,"64534":15071,"64535":8824,"64536":1011,"64537":1883,"64538":131,"64539":1240,"64540":3249,"64541":12947,"64542":17863,"64543":6314,"64544":8215,"64545":1356,"64546":5760,"64547":17376,"64548":9195,"64549":9857,"64550":12499,"64551":16299,"64552":16056,"64553":6163,"64554":9343,"64555":16035,"64556":5945,"64557":12951,"64558":4494,"64559":23,"64560":181,"64561":4457,"64562":3613,"64563":11075,"64564":6325,"64565":907,"64566":6429,"64567":14309,"64568":15846,"64569":4735,"64570":13612,"64571":7936,"64572":7325,"64573":6981,"64574":345,"64575":3243,"64576":4841,"64577":15963,"64578":1026,"64579":8390,"64580":6186,"64581":4244,"64582":14216,"64583":13403,"64584":14634,"64585":10278,"64586":10995,"64587":2531,"64588":9272,"64589":12693,"64590":8626,"64591":17811,"64592":5636,"64593":11648,"64594":16956,"64595":7224,"64596":12353,"64597":637,"64598":1880,"64599":2817,"64600":688,"64601":10697,"64602":4042,"64603":7141,"64604":13806,"64605":17012,"64606":14391,"64607":16100,"64608":15853,"64609":12659,"64610":13993,"64611":18080,"64612":18265,"64613":13846,"64614":7975,"64615":2084,"64616":15425,"64617":163,"64618":7703,"64619":4600,"64620":5727,"64621":13985,"64622":13052,"64623":1374,"64624":15681,"64625":4780,"64626":14741,"64627":10020,"64628":13330,"64629":13221,"64630":3518,"64631":2767,"64632":17537,"64633":1977,"64634":7593,"64635":7912,"64636":8302,"64637":11667,"64638":9782,"64639":8777,"64640":10664,"64641":14997,"64642":1502,"64643":6210,"64644":17527,"64645":7025,"64646":1425,"64647":14617,"64648":17168,"64649":6917,"64650":4333,"64651":5496,"64652":11400,"64653":8750,"64654":11214,"64655":13768,"64656":522,"64657":16433,"64658":5377,"64659":17982,"64660":15570,"64661":10346,"64662":5259,"64663":5308,"64664":17244,"64665":3024,"64666":6794,"64667":16279,"64668":16844,"64669":9199,"64670":15475,"64671":5257,"64672":11117,"64673":2568,"64674":13657,"64675":18109,"64676":6326,"64677":14513,"64678":10985,"64679":17207,"64680":270,"64681":6186,"64682":6897,"64683":13250,"64684":6048,"64685":1503,"64686":16071,"64687":1832,"64688":6704,"64689":17381,"64690":17008,"64691":12514,"64692":4509,"64693":3126,"64694":4987,"64695":8942,"64696":14998,"64697":4217,"64698":1997,"64699":15434,"64700":4193,"64701":12893,"64702":16493,"64703":2229,"64704":13876,"64705":11357,"64706":10324,"64707":10947,"64708":10054,"64709":5350,"64710":5557,"64711":17730,"64712":12258,"64713":18134,"64714":16957,"64715":14388,"64716":16921,"64717":13507,"64718":4594,"64719":9032,"64720":9429,"64721":17760,"64722":10222,"64723":9358,"64724":15766,"64725":10288,"64726":12810,"64727":10278,"64728":10570,"64729":16490,"64730":2752,"64731":11526,"64732":11522,"64733":16763,"64734":7549,"64735":6573,"64736":14036,"64737":2922,"64738":1581,"64739":13822,"64740":8784,"64741":7420,"64742":5909,"64743":2600,"64744":4258,"64745":14515,"64746":12211,"64747":12662,"64748":9055,"64749":12964,"64750":13982,"64751":14599,"64752":17266,"64753":11347,"64754":4886,"64755":2728,"64756":12554,"64757":2731,"64758":15111,"64759":14956,"64760":13736,"64761":4692,"64762":17611,"64763":3132,"64764":4112,"64765":3412,"64766":7766,"64767":5441,"64768":12060,"64769":15678,"64770":15198,"64771":5857,"64772":7338,"64773":16481,"64774":9853,"64775":12702,"64776":10011,"64777":9372,"64778":14198,"64779":4974,"64780":5823,"64781":5468,"64782":9174,"64783":4021,"64784":17492,"64785":3976,"64786":12431,"64787":15234,"64788":6820,"64789":11578,"64790":9571,"64791":10832,"64792":6913,"64793":5312,"64794":17574,"64795":12910,"64796":2885,"64797":2460,"64798":16055,"64799":14084,"64800":8757,"64801":12848,"64802":10529,"64803":5892,"64804":5324,"64805":16611,"64806":17655,"64807":17408,"64808":15003,"64809":3808,"64810":11732,"64811":8290,"64812":13584,"64813":1868,"64814":8210,"64815":3965,"64816":17207,"64817":15441,"64818":3560,"64819":18116,"64820":9201,"64821":4739,"64822":11790,"64823":8960,"64824":16961,"64825":6450,"64826":10565,"64827":15807,"64828":15246,"64829":14770,"64830":11909,"64831":17372,"64832":6624,"64833":5043,"64834":10740,"64835":12802,"64836":5265,"64837":10889,"64838":10125,"64839":11341,"64840":12267,"64841":6127,"64842":1838,"64843":6184,"64844":1575,"64845":5720,"64846":9361,"64847":16668,"64848":4152,"64849":7786,"64850":17247,"64851":3284,"64852":17557,"64853":15090,"64854":15384,"64855":4227,"64856":18176,"64857":7702,"64858":15437,"64859":9377,"64860":15256,"64861":1425,"64862":13398,"64863":10413,"64864":5031,"64865":15106,"64866":1564,"64867":5032,"64868":9072,"64869":14395,"64870":9457,"64871":10062,"64872":1823,"64873":10834,"64874":13589,"64875":2328,"64876":4005,"64877":13225,"64878":814,"64879":1554,"64880":7455,"64881":3057,"64882":11269,"64883":10947,"64884":3071,"64885":4825,"64886":4215,"64887":15059,"64888":1756,"64889":9535,"64890":9676,"64891":17105,"64892":14299,"64893":3733,"64894":2544,"64895":1198,"64896":11172,"64897":14498,"64898":4800,"64899":1573,"64900":8988,"64901":5946,"64902":13767,"64903":2483,"64904":5809,"64905":15864,"64906":15265,"64907":7178,"64908":14652,"64909":15577,"64910":9277,"64911":12555,"64912":2404,"64913":6677,"64914":2591,"64915":11316,"64916":180,"64917":12363,"64918":11892,"64919":10036,"64920":16538,"64921":2396,"64922":17437,"64923":8269,"64924":13340,"64925":16487,"64926":10052,"64927":13156,"64928":5946,"64929":11060,"64930":17694,"64931":4042,"64932":17234,"64933":14895,"64934":15695,"64935":659,"64936":15563,"64937":8107,"64938":475,"64939":5164,"64940":10567,"64941":2638,"64942":8415,"64943":8578,"64944":1008,"64945":8477,"64946":14233,"64947":12550,"64948":13963,"64949":17396,"64950":14573,"64951":6430,"64952":2901,"64953":27,"64954":9134,"64955":17286,"64956":8540,"64957":3576,"64958":1644,"64959":7031,"64960":8763,"64961":7885,"64962":14958,"64963":12431,"64964":16666,"64965":27,"64966":12028,"64967":5651,"64968":12876,"64969":3979,"64970":4291,"64971":3620,"64972":4010,"64973":3747,"64974":2880,"64975":7685,"64976":10462,"64977":16679,"64978":13256,"64979":11279,"64980":13580,"64981":13426,"64982":5981,"64983":18292,"64984":9850,"64985":5819,"64986":3632,"64987":13406,"64988":7856,"64989":9816,"64990":14648,"64991":9377,"64992":8297,"64993":17236,"64994":2248,"64995":5300,"64996":14080,"64997":3590,"64998":14470,"64999":1534,"65000":8337,"65001":5993,"65002":14530,"65003":8513,"65004":13783,"65005":10268,"65006":8860,"65007":10992,"65008":16592,"65009":275,"65010":13907,"65011":11127,"65012":8825,"65013":10611,"65014":13826,"65015":5090,"65016":97,"65017":8258,"65018":2709,"65019":10190,"65020":2713,"65021":16891,"65022":10604,"65023":5087,"65024":14738,"65025":5940,"65026":447,"65027":6521,"65028":112,"65029":14525,"65030":9907,"65031":11445,"65032":7605,"65033":14947,"65034":9185,"65035":16625,"65036":2480,"65037":6350,"65038":9808,"65039":11745,"65040":7980,"65041":10567,"65042":15147,"65043":17002,"65044":15978,"65045":11006,"65046":12487,"65047":12712,"65048":17849,"65049":8324,"65050":15641,"65051":5573,"65052":6792,"65053":6041,"65054":7407,"65055":11153,"65056":11866,"65057":11675,"65058":12417,"65059":15781,"65060":5744,"65061":11786,"65062":1297,"65063":8787,"65064":10667,"65065":23,"65066":7176,"65067":13403,"65068":3020,"65069":1475,"65070":17379,"65071":3095,"65072":5975,"65073":3602,"65074":2263,"65075":7036,"65076":6304,"65077":6233,"65078":4849,"65079":6543,"65080":116,"65081":8394,"65082":15659,"65083":18213,"65084":4653,"65085":7807,"65086":9456,"65087":655,"65088":4880,"65089":15597,"65090":9305,"65091":1073,"65092":5336,"65093":17095,"65094":9477,"65095":2956,"65096":2609,"65097":9431,"65098":7216,"65099":3217,"65100":8768,"65101":1709,"65102":17406,"65103":3381,"65104":14769,"65105":2404,"65106":5632,"65107":11516,"65108":17747,"65109":7188,"65110":13749,"65111":6530,"65112":5418,"65113":13980,"65114":13066,"65115":5440,"65116":6466,"65117":9561,"65118":15881,"65119":13927,"65120":11301,"65121":14199,"65122":12223,"65123":7084,"65124":13605,"65125":16784,"65126":46,"65127":1646,"65128":16148,"65129":1659,"65130":11616,"65131":16213,"65132":13528,"65133":8186,"65134":5825,"65135":9809,"65136":9426,"65137":7745,"65138":14121,"65139":13579,"65140":13265,"65141":14363,"65142":14093,"65143":15549,"65144":14739,"65145":4156,"65146":2798,"65147":14191,"65148":18320,"65149":17845,"65150":10077,"65151":10063,"65152":3383,"65153":14463,"65154":12405,"65155":10685,"65156":15645,"65157":2592,"65158":14215,"65159":11433,"65160":525,"65161":9921,"65162":3381,"65163":10883,"65164":4420,"65165":17824,"65166":16555,"65167":15796,"65168":16205,"65169":1265,"65170":13706,"65171":2067,"65172":2303,"65173":5294,"65174":13907,"65175":14825,"65176":4832,"65177":3896,"65178":2617,"65179":3181,"65180":6522,"65181":17669,"65182":12934,"65183":14345,"65184":10778,"65185":2495,"65186":13954,"65187":7732,"65188":590,"65189":3679,"65190":15685,"65191":527,"65192":3877,"65193":7114,"65194":16442,"65195":7073,"65196":6615,"65197":13249,"65198":717,"65199":1881,"65200":10578,"65201":6347,"65202":15950,"65203":4254,"65204":16795,"65205":7355,"65206":965,"65207":818,"65208":14077,"65209":9698,"65210":15007,"65211":14181,"65212":5147,"65213":13970,"65214":17914,"65215":4546,"65216":4763,"65217":8079,"65218":15055,"65219":11243,"65220":6547,"65221":5498,"65222":4371,"65223":12223,"65224":17474,"65225":696,"65226":2733,"65227":8309,"65228":15140,"65229":308,"65230":13948,"65231":14965,"65232":4410,"65233":6182,"65234":16434,"65235":6252,"65236":16087,"65237":8185,"65238":1569,"65239":15179,"65240":1054,"65241":13716,"65242":8011,"65243":8996,"65244":11400,"65245":1109,"65246":5449,"65247":12494,"65248":11254,"65249":12240,"65250":14512,"65251":3741,"65252":9697,"65253":6579,"65254":16634,"65255":9176,"65256":8440,"65257":4959,"65258":12114,"65259":6169,"65260":1305,"65261":16457,"65262":6686,"65263":17635,"65264":13059,"65265":4522,"65266":10292,"65267":17936,"65268":18338,"65269":2529,"65270":13887,"65271":6711,"65272":16836,"65273":5061,"65274":18252,"65275":15907,"65276":6841,"65277":16727,"65278":3981,"65279":12498,"65280":2793,"65281":12442,"65282":11784,"65283":4601,"65284":13089,"65285":8812,"65286":16568,"65287":1078,"65288":3083,"65289":16444,"65290":11830,"65291":11900,"65292":8918,"65293":14507,"65294":6972,"65295":2458,"65296":2957,"65297":6999,"65298":7950,"65299":11445,"65300":14481,"65301":9802,"65302":4796,"65303":5531,"65304":4485,"65305":3296,"65306":5324,"65307":5687,"65308":17217,"65309":9570,"65310":1163,"65311":12045,"65312":7971,"65313":5391,"65314":10111,"65315":6329,"65316":16026,"65317":12612,"65318":1224,"65319":7350,"65320":8403,"65321":11729,"65322":8669,"65323":5713,"65324":17794,"65325":8677,"65326":14138,"65327":705,"65328":9355,"65329":5645,"65330":7666,"65331":12373,"65332":16320,"65333":17079,"65334":14353,"65335":15079,"65336":8706,"65337":12578,"65338":3389,"65339":30,"65340":13611,"65341":9819,"65342":176,"65343":12462,"65344":3017,"65345":4147,"65346":16952,"65347":13569,"65348":2309,"65349":1871,"65350":585,"65351":3296,"65352":10635,"65353":14023,"65354":16707,"65355":13655,"65356":5638,"65357":14803,"65358":8900,"65359":12606,"65360":1102,"65361":14224,"65362":18067,"65363":10592,"65364":2510,"65365":17473,"65366":11349,"65367":4779,"65368":14974,"65369":5505,"65370":16432,"65371":15929,"65372":14674,"65373":14385,"65374":7856,"65375":17425,"65376":16752,"65377":13892,"65378":11189,"65379":9938,"65380":10633,"65381":10078,"65382":2586,"65383":4623,"65384":13458,"65385":131,"65386":12327,"65387":2867,"65388":3353,"65389":5319,"65390":13472,"65391":14203,"65392":9133,"65393":10045,"65394":15915,"65395":18293,"65396":3062,"65397":15546,"65398":17988,"65399":17091,"65400":13149,"65401":6341,"65402":12738,"65403":3054,"65404":12495,"65405":17568,"65406":13214,"65407":3418,"65408":8037,"65409":9414,"65410":7680,"65411":15296,"65412":15832,"65413":15806,"65414":11044,"65415":16788,"65416":8840,"65417":7241,"65418":4163,"65419":7061,"65420":8418,"65421":13600,"65422":6261,"65423":4578,"65424":9103,"65425":3244,"65426":14937,"65427":17024,"65428":14693,"65429":16837,"65430":3350,"65431":13842,"65432":4469,"65433":7643,"65434":6890,"65435":6379,"65436":3703,"65437":17091,"65438":12639,"65439":7899,"65440":8914,"65441":11590,"65442":356,"65443":7890,"65444":4976,"65445":8844,"65446":2403,"65447":2888,"65448":14019,"65449":13640,"65450":15668,"65451":17852,"65452":10753,"65453":11964,"65454":1901,"65455":2833,"65456":10433,"65457":4304,"65458":5639,"65459":14521,"65460":6979,"65461":6082,"65462":33,"65463":453,"65464":12786,"65465":11695,"65466":8416,"65467":17225,"65468":14987,"65469":16798,"65470":402,"65471":10707,"65472":11385,"65473":6740,"65474":9207,"65475":7839,"65476":17328,"65477":18335,"65478":3621,"65479":10764,"65480":2754,"65481":12205,"65482":12012,"65483":3142,"65484":9463,"65485":12365,"65486":5687,"65487":12052,"65488":4178,"65489":8600,"65490":12472,"65491":7812,"65492":4029,"65493":9454,"65494":8695,"65495":12970,"65496":7177,"65497":7462,"65498":8231,"65499":16639,"65500":7491,"65501":7522,"65502":13230,"65503":15727,"65504":2784,"65505":7672,"65506":9383,"65507":9250,"65508":935,"65509":15134,"65510":17620,"65511":7445,"65512":10833,"65513":1369,"65514":6595,"65515":5887,"65516":1612,"65517":11358,"65518":3333,"65519":10207,"65520":12368,"65521":4224,"65522":926,"65523":8864,"65524":9413,"65525":12304,"65526":6202,"65527":12932,"65528":11908,"65529":1980,"65530":14355,"65531":15746,"65532":5881,"65533":3344,"65534":15761,"65535":12245,"65536":4236,"65537":1286,"65538":8653,"65539":16704,"65540":14918,"65541":15641,"65542":165,"65543":16768,"65544":4081,"65545":14213,"65546":11017,"65547":401,"65548":15657,"65549":15247,"65550":13009,"65551":13563,"65552":7616,"65553":3064,"65554":134,"65555":10224,"65556":1719,"65557":833,"65558":18151,"65559":4894,"65560":4735,"65561":4020,"65562":6244,"65563":14556,"65564":6191,"65565":10637,"65566":17868,"65567":7158,"65568":6461,"65569":15602,"65570":17926,"65571":4657,"65572":10310,"65573":7781,"65574":16647,"65575":852,"65576":10044,"65577":5976,"65578":1153,"65579":8945,"65580":7195,"65581":17019,"65582":11170,"65583":2379,"65584":12867,"65585":9234,"65586":15233,"65587":8683,"65588":10827,"65589":10909,"65590":68,"65591":14006,"65592":131,"65593":10864,"65594":7944,"65595":15879,"65596":17700,"65597":14180,"65598":16793,"65599":10613,"65600":2211,"65601":2810,"65602":11641,"65603":12012,"65604":12392,"65605":18058,"65606":11536,"65607":2786,"65608":4050,"65609":658,"65610":770,"65611":3346,"65612":15114,"65613":10769,"65614":433,"65615":6831,"65616":9359,"65617":2556,"65618":15545,"65619":4665,"65620":12916,"65621":15465,"65622":3729,"65623":302,"65624":1050,"65625":12081,"65626":9008,"65627":17151,"65628":17479,"65629":8829,"65630":4225,"65631":8715,"65632":17051,"65633":17495,"65634":2863,"65635":17750,"65636":386,"65637":2216,"65638":15450,"65639":5178,"65640":1685,"65641":7285,"65642":4251,"65643":5091,"65644":8335,"65645":9839,"65646":11090,"65647":9550,"65648":12873,"65649":2514,"65650":8733,"65651":14635,"65652":8529,"65653":1555,"65654":16384,"65655":53,"65656":3796,"65657":17904,"65658":12822,"65659":11952,"65660":13302,"65661":6073,"65662":13342,"65663":11738,"65664":5410,"65665":6131,"65666":5927,"65667":9651,"65668":14945,"65669":3513,"65670":1672,"65671":17211,"65672":14942,"65673":2593,"65674":2971,"65675":18142,"65676":7299,"65677":9473,"65678":3394,"65679":8033,"65680":13984,"65681":14946,"65682":8057,"65683":9591,"65684":7251,"65685":11232,"65686":13820,"65687":9229,"65688":14066,"65689":5875,"65690":550,"65691":13943,"65692":14383,"65693":17751,"65694":6980,"65695":198,"65696":11743,"65697":1988,"65698":4846,"65699":12761,"65700":9875,"65701":10012,"65702":7692,"65703":8942,"65704":17759,"65705":2441,"65706":2516,"65707":1757,"65708":15920,"65709":13964,"65710":15936,"65711":7543,"65712":17005,"65713":14189,"65714":14852,"65715":15715,"65716":13537,"65717":4751,"65718":17058,"65719":2071,"65720":5025,"65721":14143,"65722":1860,"65723":1217,"65724":11166,"65725":17579,"65726":16203,"65727":12424,"65728":13033,"65729":11140,"65730":15180,"65731":1643,"65732":7614,"65733":4650,"65734":11869,"65735":16980,"65736":12153,"65737":6835,"65738":2456,"65739":841,"65740":697,"65741":2365,"65742":4227,"65743":3506,"65744":17625,"65745":968,"65746":4738,"65747":16991,"65748":273,"65749":15623,"65750":13114,"65751":2587,"65752":3082,"65753":12695,"65754":4094,"65755":2617,"65756":7057,"65757":10959,"65758":1320,"65759":2301,"65760":12017,"65761":2156,"65762":9119,"65763":4822,"65764":6997,"65765":13464,"65766":18112,"65767":3957,"65768":14202,"65769":15984,"65770":14414,"65771":7445,"65772":17443,"65773":5035,"65774":7550,"65775":1403,"65776":7683,"65777":15336,"65778":808,"65779":1321,"65780":9822,"65781":1708,"65782":2462,"65783":2540,"65784":2672,"65785":13160,"65786":12989,"65787":14412,"65788":10027,"65789":4132,"65790":15845,"65791":13382,"65792":17566,"65793":6176,"65794":16784,"65795":11529,"65796":17528,"65797":3153,"65798":6576,"65799":7830,"65800":11883,"65801":13131,"65802":15387,"65803":8971,"65804":11981,"65805":14755,"65806":9443,"65807":4956,"65808":3062,"65809":15633,"65810":14187,"65811":10911,"65812":773,"65813":4521,"65814":13662,"65815":4678,"65816":672,"65817":5986,"65818":3274,"65819":13011,"65820":2352,"65821":7263,"65822":16289,"65823":1997,"65824":12992,"65825":120,"65826":8887,"65827":16116,"65828":166,"65829":13542,"65830":4048,"65831":65,"65832":14836,"65833":9090,"65834":11654,"65835":13333,"65836":8113,"65837":16033,"65838":465,"65839":3302,"65840":6714,"65841":4084,"65842":4914,"65843":4612,"65844":3433,"65845":14643,"65846":5753,"65847":3655,"65848":11225,"65849":14685,"65850":1894,"65851":490,"65852":11794,"65853":8275,"65854":12587,"65855":2058,"65856":15558,"65857":16296,"65858":7745,"65859":10258,"65860":17990,"65861":9099,"65862":741,"65863":3738,"65864":343,"65865":8297,"65866":331,"65867":15678,"65868":11753,"65869":13250,"65870":11262,"65871":16154,"65872":2808,"65873":4587,"65874":45,"65875":10351,"65876":754,"65877":16542,"65878":14977,"65879":7533,"65880":6129,"65881":13358,"65882":14901,"65883":15518,"65884":388,"65885":4042,"65886":3001,"65887":1576,"65888":11612,"65889":676,"65890":10656,"65891":16710,"65892":3028,"65893":16774,"65894":15022,"65895":1729,"65896":12735,"65897":2967,"65898":11824,"65899":1449,"65900":4437,"65901":1931,"65902":9166,"65903":17618,"65904":9229,"65905":4017,"65906":9004,"65907":17559,"65908":967,"65909":4677,"65910":16102,"65911":2947,"65912":742,"65913":6123,"65914":14976,"65915":11811,"65916":10388,"65917":11324,"65918":16384,"65919":1263,"65920":5189,"65921":3676,"65922":8453,"65923":9266,"65924":6094,"65925":13398,"65926":14493,"65927":15634,"65928":3754,"65929":17533,"65930":13654,"65931":6756,"65932":15730,"65933":15117,"65934":5281,"65935":3940,"65936":14262,"65937":16514,"65938":15229,"65939":10474,"65940":109,"65941":17985,"65942":14022,"65943":5814,"65944":16925,"65945":4926,"65946":16077,"65947":6815,"65948":13323,"65949":7384,"65950":2284,"65951":12037,"65952":13129,"65953":11510,"65954":158,"65955":8702,"65956":14147,"65957":4269,"65958":5196,"65959":12661,"65960":6800,"65961":11965,"65962":2777,"65963":11758,"65964":5365,"65965":13756,"65966":4208,"65967":9835,"65968":17954,"65969":4401,"65970":16131,"65971":6988,"65972":7990,"65973":17273,"65974":10003,"65975":7658,"65976":9430,"65977":3489,"65978":6822,"65979":3381,"65980":1817,"65981":16948,"65982":15075,"65983":4741,"65984":17989,"65985":3498,"65986":16067,"65987":15475,"65988":13642,"65989":17416,"65990":13082,"65991":10365,"65992":9940,"65993":10292,"65994":14296,"65995":4925,"65996":16166,"65997":8350,"65998":15940,"65999":92,"66000":17701,"66001":12566,"66002":12902,"66003":1690,"66004":5913,"66005":16737,"66006":16804,"66007":5320,"66008":7685,"66009":8505,"66010":1362,"66011":13314,"66012":14531,"66013":9734,"66014":5572,"66015":1256,"66016":10004,"66017":714,"66018":9585,"66019":14343,"66020":10060,"66021":14919,"66022":11313,"66023":13483,"66024":10659,"66025":7687,"66026":11656,"66027":2789,"66028":15550,"66029":8584,"66030":5616,"66031":13506,"66032":8086,"66033":14330,"66034":9517,"66035":11700,"66036":17991,"66037":10519,"66038":15868,"66039":535,"66040":371,"66041":6281,"66042":3190,"66043":5877,"66044":11081,"66045":4201,"66046":7232,"66047":4844,"66048":16262,"66049":558,"66050":7112,"66051":11887,"66052":8959,"66053":12406,"66054":2305,"66055":13188,"66056":4353,"66057":9217,"66058":7906,"66059":4720,"66060":16042,"66061":10673,"66062":4489,"66063":17345,"66064":408,"66065":5313,"66066":11308,"66067":9922,"66068":7037,"66069":5419,"66070":3140,"66071":3256,"66072":17029,"66073":8152,"66074":13517,"66075":10693,"66076":15850,"66077":6391,"66078":3700,"66079":17796,"66080":10539,"66081":10243,"66082":14650,"66083":674,"66084":7415,"66085":15815,"66086":15286,"66087":16689,"66088":15042,"66089":14899,"66090":15273,"66091":9937,"66092":3102,"66093":7444,"66094":2616,"66095":12491,"66096":15997,"66097":16258,"66098":9859,"66099":13006,"66100":6451,"66101":7907,"66102":14415,"66103":16687,"66104":4746,"66105":11693,"66106":2995,"66107":13086,"66108":7129,"66109":5977,"66110":17274,"66111":3843,"66112":17974,"66113":15961,"66114":10879,"66115":13052,"66116":13473,"66117":3172,"66118":17028,"66119":2528,"66120":10634,"66121":15085,"66122":4494,"66123":1298,"66124":7729,"66125":17183,"66126":16500,"66127":348,"66128":6363,"66129":8426,"66130":7050,"66131":2823,"66132":17197,"66133":11370,"66134":3252,"66135":13738,"66136":13140,"66137":6354,"66138":8350,"66139":16527,"66140":2973,"66141":9852,"66142":15158,"66143":3566,"66144":6004,"66145":13046,"66146":17533,"66147":6344,"66148":1969,"66149":15150,"66150":8587,"66151":10006,"66152":17209,"66153":5650,"66154":13317,"66155":7985,"66156":5113,"66157":16494,"66158":44,"66159":6027,"66160":1398,"66161":10109,"66162":6537,"66163":15210,"66164":3987,"66165":2107,"66166":1427,"66167":10585,"66168":8956,"66169":8112,"66170":3224,"66171":16304,"66172":13296,"66173":10347,"66174":11421,"66175":6564,"66176":11561,"66177":7737,"66178":14257,"66179":7759,"66180":1655,"66181":17739,"66182":13381,"66183":16188,"66184":16154,"66185":5520,"66186":17308,"66187":7026,"66188":11267,"66189":2210,"66190":9811,"66191":13110,"66192":10264,"66193":5234,"66194":13373,"66195":16731,"66196":10518,"66197":6362,"66198":17759,"66199":18315,"66200":8026,"66201":7075,"66202":11101,"66203":13094,"66204":15367,"66205":15208,"66206":11807,"66207":7137,"66208":8454,"66209":14057,"66210":4375,"66211":3854,"66212":5379,"66213":1028,"66214":11833,"66215":8391,"66216":7848,"66217":11026,"66218":4787,"66219":9438,"66220":5817,"66221":2194,"66222":7314,"66223":8017,"66224":5021,"66225":15713,"66226":6168,"66227":8474,"66228":1626,"66229":12546,"66230":9793,"66231":116,"66232":7035,"66233":15156,"66234":10040,"66235":16992,"66236":6741,"66237":1836,"66238":7517,"66239":15552,"66240":8211,"66241":5598,"66242":16795,"66243":2260,"66244":14252,"66245":17050,"66246":10121,"66247":16642,"66248":9753,"66249":4354,"66250":12274,"66251":11042,"66252":3903,"66253":10088,"66254":12347,"66255":13213,"66256":6491,"66257":7250,"66258":10793,"66259":9284,"66260":6811,"66261":426,"66262":10966,"66263":7221,"66264":3029,"66265":10142,"66266":6187,"66267":506,"66268":124,"66269":14033,"66270":18196,"66271":12029,"66272":14336,"66273":6070,"66274":10450,"66275":11450,"66276":5396,"66277":17802,"66278":6369,"66279":6325,"66280":4812,"66281":5692,"66282":3510,"66283":10990,"66284":14472,"66285":5245,"66286":3017,"66287":2495,"66288":11818,"66289":1241,"66290":17095,"66291":4449,"66292":13347,"66293":13544,"66294":1357,"66295":14562,"66296":1865,"66297":1881,"66298":11043,"66299":16814,"66300":17431,"66301":17361,"66302":5855,"66303":15572,"66304":5402,"66305":6235,"66306":6006,"66307":11417,"66308":16389,"66309":1777,"66310":13035,"66311":10390,"66312":12018,"66313":904,"66314":2255,"66315":10221,"66316":11239,"66317":17116,"66318":4628,"66319":11803,"66320":14152,"66321":12216,"66322":16022,"66323":11011,"66324":4701,"66325":6866,"66326":16339,"66327":9178,"66328":18188,"66329":11320,"66330":13430,"66331":17654,"66332":9150,"66333":6988,"66334":5534,"66335":3615,"66336":12419,"66337":10457,"66338":13391,"66339":15478,"66340":11530,"66341":14679,"66342":673,"66343":6225,"66344":10493,"66345":17988,"66346":10076,"66347":7208,"66348":11855,"66349":4165,"66350":4426,"66351":15381,"66352":13077,"66353":2947,"66354":13545,"66355":622,"66356":3089,"66357":6803,"66358":14198,"66359":218,"66360":6767,"66361":8556,"66362":4664,"66363":4209,"66364":11711,"66365":7994,"66366":15310,"66367":14463,"66368":12540,"66369":18158,"66370":3172,"66371":2966,"66372":108,"66373":5875,"66374":1658,"66375":9634,"66376":13171,"66377":2902,"66378":1418,"66379":8244,"66380":2264,"66381":16709,"66382":14662,"66383":3844,"66384":3181,"66385":16127,"66386":9306,"66387":6723,"66388":12866,"66389":13635,"66390":14184,"66391":6289,"66392":6641,"66393":3434,"66394":4417,"66395":17812,"66396":2716,"66397":8637,"66398":7857,"66399":10889,"66400":7755,"66401":12035,"66402":854,"66403":8013,"66404":15863,"66405":6538,"66406":5966,"66407":2391,"66408":10273,"66409":7501,"66410":6208,"66411":12130,"66412":1073,"66413":3258,"66414":1699,"66415":15532,"66416":17056,"66417":13456,"66418":11132,"66419":4591,"66420":8057,"66421":14099,"66422":14995,"66423":3511,"66424":11846,"66425":316,"66426":2211,"66427":5957,"66428":4775,"66429":8240,"66430":2179,"66431":11695,"66432":3399,"66433":10147,"66434":5644,"66435":5699,"66436":15638,"66437":4147,"66438":7021,"66439":14194,"66440":123,"66441":3560,"66442":6159,"66443":13128,"66444":10966,"66445":2487,"66446":18324,"66447":7434,"66448":10724,"66449":8597,"66450":9966,"66451":6495,"66452":9638,"66453":17456,"66454":663,"66455":14070,"66456":3141,"66457":5992,"66458":12106,"66459":11830,"66460":8790,"66461":11493,"66462":1916,"66463":12392,"66464":10698,"66465":17836,"66466":2468,"66467":321,"66468":6587,"66469":6493,"66470":1846,"66471":5730,"66472":14031,"66473":13952,"66474":12905,"66475":9120,"66476":2969,"66477":5818,"66478":1321,"66479":16594,"66480":12719,"66481":12038,"66482":1006,"66483":5762,"66484":1088,"66485":11546,"66486":7755,"66487":17382,"66488":14218,"66489":12909,"66490":3182,"66491":15767,"66492":15053,"66493":15804,"66494":6556,"66495":8932,"66496":1199,"66497":16903,"66498":8266,"66499":11344,"66500":3902,"66501":4280,"66502":7671,"66503":15517,"66504":11730,"66505":16731,"66506":4087,"66507":14145,"66508":4655,"66509":1729,"66510":15900,"66511":17269,"66512":4151,"66513":6808,"66514":3419,"66515":13019,"66516":757,"66517":13227,"66518":1398,"66519":16148,"66520":7397,"66521":15096,"66522":12127,"66523":7320,"66524":7495,"66525":5050,"66526":12066,"66527":15914,"66528":7289,"66529":16902,"66530":13158,"66531":9800,"66532":6417,"66533":114,"66534":11952,"66535":14819,"66536":9765,"66537":8442,"66538":17606,"66539":994,"66540":11591,"66541":7884,"66542":16669,"66543":10671,"66544":211,"66545":7375,"66546":4003,"66547":17823,"66548":3199,"66549":537,"66550":8483,"66551":5831,"66552":844,"66553":2530,"66554":12548,"66555":11164,"66556":12682,"66557":17722,"66558":10926,"66559":4883,"66560":2763,"66561":17623,"66562":5,"66563":1699,"66564":17820,"66565":1253,"66566":11104,"66567":6743,"66568":15672,"66569":2334,"66570":5966,"66571":14693,"66572":15728,"66573":9865,"66574":15289,"66575":4175,"66576":9498,"66577":5031,"66578":4271,"66579":12642,"66580":3281,"66581":100,"66582":18283,"66583":18119,"66584":7969,"66585":3633,"66586":10394,"66587":2949,"66588":1339,"66589":4328,"66590":1698,"66591":7370,"66592":15748,"66593":6846,"66594":3191,"66595":6710,"66596":8513,"66597":15354,"66598":1453,"66599":12954,"66600":12300,"66601":17299,"66602":587,"66603":530,"66604":9117,"66605":14366,"66606":747,"66607":15328,"66608":11274,"66609":15487,"66610":3048,"66611":9097,"66612":2512,"66613":1628,"66614":15911,"66615":14029,"66616":17735,"66617":13913,"66618":10832,"66619":13102,"66620":14391,"66621":5921,"66622":4071,"66623":8908,"66624":13860,"66625":17246,"66626":1926,"66627":8911,"66628":2977,"66629":17121,"66630":15151,"66631":7665,"66632":242,"66633":2299,"66634":8113,"66635":9184,"66636":2303,"66637":5465,"66638":14086,"66639":15970,"66640":2451,"66641":4636,"66642":13784,"66643":17541,"66644":4928,"66645":3405,"66646":14940,"66647":6461,"66648":16898,"66649":9702,"66650":9469,"66651":10194,"66652":7721,"66653":1754,"66654":7802,"66655":4631,"66656":14321,"66657":17099,"66658":9707,"66659":15780,"66660":4934,"66661":7919,"66662":9363,"66663":13860,"66664":2132,"66665":12151,"66666":8091,"66667":6459,"66668":14156,"66669":3712,"66670":233,"66671":1050,"66672":5696,"66673":6161,"66674":11719,"66675":12380,"66676":16883,"66677":8993,"66678":10399,"66679":13608,"66680":15016,"66681":10790,"66682":4630,"66683":982,"66684":5764,"66685":13980,"66686":7334,"66687":11660,"66688":16950,"66689":538,"66690":14199,"66691":178,"66692":2550,"66693":5409,"66694":820,"66695":7488,"66696":15451,"66697":6783,"66698":13258,"66699":4148,"66700":17857,"66701":4343,"66702":15547,"66703":11244,"66704":6946,"66705":9146,"66706":9423,"66707":7242,"66708":12144,"66709":9454,"66710":3494,"66711":8185,"66712":6105,"66713":16542,"66714":16295,"66715":9579,"66716":14747,"66717":15940,"66718":16059,"66719":14261,"66720":1813,"66721":2852,"66722":583,"66723":11624,"66724":16551,"66725":15530,"66726":10463,"66727":2638,"66728":13778,"66729":13578,"66730":3783,"66731":12964,"66732":18086,"66733":13174,"66734":9659,"66735":5386,"66736":16267,"66737":3229,"66738":14114,"66739":4497,"66740":5764,"66741":14009,"66742":11407,"66743":292,"66744":13385,"66745":7107,"66746":13471,"66747":6076,"66748":11104,"66749":16768,"66750":2563,"66751":18055,"66752":8281,"66753":7568,"66754":15251,"66755":17143,"66756":15480,"66757":7677,"66758":13467,"66759":7771,"66760":8722,"66761":13111,"66762":17803,"66763":6860,"66764":3542,"66765":16831,"66766":2480,"66767":15888,"66768":12118,"66769":8379,"66770":7415,"66771":17505,"66772":3886,"66773":15368,"66774":14849,"66775":14246,"66776":11329,"66777":6615,"66778":12116,"66779":2459,"66780":13091,"66781":5458,"66782":9988,"66783":12685,"66784":11309,"66785":11834,"66786":16299,"66787":5926,"66788":7186,"66789":553,"66790":17278,"66791":6276,"66792":5948,"66793":10298,"66794":13182,"66795":6305,"66796":3051,"66797":15488,"66798":16365,"66799":17617,"66800":2226,"66801":4459,"66802":17535,"66803":12936,"66804":13983,"66805":15600,"66806":4854,"66807":5245,"66808":13497,"66809":14757,"66810":5373,"66811":16273,"66812":16943,"66813":8690,"66814":1517,"66815":6766,"66816":13466,"66817":15074,"66818":12210,"66819":10824,"66820":10821,"66821":2078,"66822":7943,"66823":9278,"66824":13704,"66825":3621,"66826":15665,"66827":12529,"66828":9821,"66829":3219,"66830":3367,"66831":3357,"66832":3184,"66833":301,"66834":17554,"66835":1854,"66836":17012,"66837":17476,"66838":3712,"66839":5196,"66840":12724,"66841":9773,"66842":1513,"66843":14943,"66844":17987,"66845":3906,"66846":837,"66847":13248,"66848":4235,"66849":2004,"66850":15631,"66851":17100,"66852":9093,"66853":6545,"66854":12906,"66855":2329,"66856":10552,"66857":18021,"66858":15316,"66859":16898,"66860":13989,"66861":7283,"66862":16574,"66863":9032,"66864":5493,"66865":11677,"66866":3153,"66867":5016,"66868":15051,"66869":14836,"66870":14107,"66871":830,"66872":17720,"66873":15291,"66874":16908,"66875":85,"66876":8585,"66877":7452,"66878":2031,"66879":371,"66880":5938,"66881":16234,"66882":5085,"66883":10574,"66884":3537,"66885":5634,"66886":5513,"66887":10454,"66888":11397,"66889":6894,"66890":15930,"66891":6399,"66892":14927,"66893":4745,"66894":4126,"66895":10154,"66896":889,"66897":7365,"66898":15009,"66899":10621,"66900":14323,"66901":7337,"66902":12192,"66903":15985,"66904":8066,"66905":6583,"66906":13864,"66907":16658,"66908":17850,"66909":12957,"66910":4547,"66911":13366,"66912":17414,"66913":10661,"66914":1607,"66915":14996,"66916":8728,"66917":9464,"66918":635,"66919":11709,"66920":2968,"66921":10081,"66922":17181,"66923":1546,"66924":15320,"66925":7516,"66926":4915,"66927":15360,"66928":11734,"66929":2626,"66930":4350,"66931":17273,"66932":7155,"66933":15372,"66934":906,"66935":8119,"66936":3317,"66937":12573,"66938":11751,"66939":160,"66940":7677,"66941":5195,"66942":2298,"66943":8807,"66944":8169,"66945":1251,"66946":11863,"66947":8666,"66948":14666,"66949":6035,"66950":749,"66951":14022,"66952":12574,"66953":14380,"66954":4760,"66955":3924,"66956":10285,"66957":12927,"66958":16536,"66959":3564,"66960":11027,"66961":11772,"66962":612,"66963":11388,"66964":10985,"66965":16906,"66966":17781,"66967":161,"66968":2067,"66969":16146,"66970":18166,"66971":8694,"66972":14877,"66973":4635,"66974":1888,"66975":640,"66976":2989,"66977":7761,"66978":3746,"66979":11695,"66980":12611,"66981":11557,"66982":5629,"66983":1707,"66984":11907,"66985":15932,"66986":10250,"66987":7084,"66988":15378,"66989":1146,"66990":541,"66991":2420,"66992":11635,"66993":8866,"66994":6035,"66995":13728,"66996":12926,"66997":8898,"66998":17923,"66999":3821,"67000":17142,"67001":6198,"67002":233,"67003":17288,"67004":2197,"67005":16702,"67006":905,"67007":8535,"67008":1686,"67009":485,"67010":17316,"67011":3406,"67012":74,"67013":8463,"67014":18289,"67015":17613,"67016":10846,"67017":9195,"67018":4992,"67019":11488,"67020":4152,"67021":15487,"67022":8031,"67023":6217,"67024":2616,"67025":1750,"67026":4483,"67027":6156,"67028":3819,"67029":7991,"67030":9327,"67031":9270,"67032":973,"67033":8235,"67034":3877,"67035":1288,"67036":7230,"67037":7814,"67038":16694,"67039":4505,"67040":12988,"67041":4585,"67042":12288,"67043":11975,"67044":7763,"67045":7444,"67046":8212,"67047":9766,"67048":10086,"67049":3941,"67050":11079,"67051":1860,"67052":17634,"67053":13103,"67054":11094,"67055":13326,"67056":3181,"67057":5469,"67058":4858,"67059":9630,"67060":1154,"67061":1012,"67062":11965,"67063":7290,"67064":2105,"67065":1716,"67066":17791,"67067":3644,"67068":7261,"67069":17062,"67070":16574,"67071":15536,"67072":1043,"67073":7908,"67074":3980,"67075":4748,"67076":18271,"67077":1209,"67078":17430,"67079":8272,"67080":4613,"67081":17733,"67082":12582,"67083":8005,"67084":13799,"67085":13944,"67086":8069,"67087":11867,"67088":12355,"67089":781,"67090":8373,"67091":17539,"67092":867,"67093":6446,"67094":3335,"67095":18175,"67096":5594,"67097":15024,"67098":12990,"67099":16243,"67100":11376,"67101":12277,"67102":2823,"67103":8481,"67104":10473,"67105":10034,"67106":17533,"67107":3956,"67108":4703,"67109":3100,"67110":11547,"67111":6411,"67112":11284,"67113":14256,"67114":10888,"67115":17632,"67116":349,"67117":5234,"67118":18351,"67119":10399,"67120":13214,"67121":7703,"67122":11210,"67123":12799,"67124":11306,"67125":5080,"67126":8043,"67127":13008,"67128":11535,"67129":802,"67130":8678,"67131":2296,"67132":14087,"67133":12167,"67134":16717,"67135":7521,"67136":4801,"67137":17334,"67138":15117,"67139":13795,"67140":2103,"67141":4495,"67142":14099,"67143":10613,"67144":13958,"67145":4527,"67146":14845,"67147":9977,"67148":11515,"67149":6145,"67150":16629,"67151":3177,"67152":3212,"67153":180,"67154":13551,"67155":8636,"67156":15570,"67157":9113,"67158":5783,"67159":14684,"67160":1087,"67161":452,"67162":398,"67163":15810,"67164":5633,"67165":884,"67166":15536,"67167":3726,"67168":14996,"67169":15737,"67170":7500,"67171":12251,"67172":4913,"67173":2755,"67174":2597,"67175":16252,"67176":10509,"67177":11014,"67178":4384,"67179":6243,"67180":1488,"67181":12943,"67182":34,"67183":3084,"67184":17955,"67185":13451,"67186":17413,"67187":4079,"67188":17082,"67189":12248,"67190":8854,"67191":2441,"67192":277,"67193":9039,"67194":12428,"67195":7949,"67196":14854,"67197":14492,"67198":5599,"67199":4587,"67200":15692,"67201":5127,"67202":16486,"67203":4853,"67204":9174,"67205":17741,"67206":3226,"67207":13537,"67208":9260,"67209":18330,"67210":15670,"67211":6876,"67212":12381,"67213":2024,"67214":15058,"67215":8573,"67216":6138,"67217":10440,"67218":9298,"67219":8956,"67220":12288,"67221":8568,"67222":7096,"67223":3903,"67224":4294,"67225":5736,"67226":2264,"67227":4499,"67228":2452,"67229":8040,"67230":9511,"67231":5870,"67232":6147,"67233":6910,"67234":3977,"67235":234,"67236":2165,"67237":7930,"67238":10934,"67239":6749,"67240":16502,"67241":18178,"67242":1140,"67243":16270,"67244":9043,"67245":17435,"67246":7152,"67247":18211,"67248":9187,"67249":14915,"67250":3584,"67251":1447,"67252":1885,"67253":11426,"67254":10624,"67255":15648,"67256":17186,"67257":1024,"67258":6593,"67259":16956,"67260":13865,"67261":1779,"67262":14338,"67263":1585,"67264":7077,"67265":1131,"67266":17581,"67267":16865,"67268":12103,"67269":7070,"67270":5733,"67271":9010,"67272":676,"67273":13836,"67274":6972,"67275":12296,"67276":12636,"67277":13818,"67278":9128,"67279":10796,"67280":5352,"67281":5929,"67282":6202,"67283":16094,"67284":16374,"67285":17302,"67286":14654,"67287":17567,"67288":4250,"67289":12348,"67290":9260,"67291":9760,"67292":7020,"67293":10881,"67294":589,"67295":654,"67296":9303,"67297":17844,"67298":1932,"67299":6085,"67300":12183,"67301":11601,"67302":11107,"67303":1443,"67304":11397,"67305":11394,"67306":1685,"67307":3431,"67308":14963,"67309":16153,"67310":4159,"67311":17407,"67312":4654,"67313":12389,"67314":7725,"67315":6616,"67316":573,"67317":17073,"67318":52,"67319":899,"67320":13180,"67321":11574,"67322":5284,"67323":10086,"67324":8940,"67325":11116,"67326":16493,"67327":14109,"67328":17289,"67329":2894,"67330":8871,"67331":422,"67332":17763,"67333":17173,"67334":3979,"67335":15680,"67336":3509,"67337":15052,"67338":9752,"67339":5339,"67340":15497,"67341":14640,"67342":287,"67343":4759,"67344":8056,"67345":7574,"67346":12408,"67347":3680,"67348":9862,"67349":9786,"67350":5738,"67351":2177,"67352":16088,"67353":16465,"67354":4377,"67355":6536,"67356":11746,"67357":5153,"67358":7906,"67359":79,"67360":12622,"67361":7859,"67362":1370,"67363":15413,"67364":14140,"67365":15275,"67366":14051,"67367":17420,"67368":17721,"67369":17926,"67370":11181,"67371":11745,"67372":14786,"67373":5224,"67374":7662,"67375":12946,"67376":16422,"67377":16713,"67378":5248,"67379":10230,"67380":1749,"67381":17570,"67382":5930,"67383":9191,"67384":2763,"67385":12109,"67386":15251,"67387":2396,"67388":2707,"67389":665,"67390":11664,"67391":2799,"67392":16159,"67393":7234,"67394":3630,"67395":13398,"67396":1415,"67397":8420,"67398":10053,"67399":9878,"67400":10751,"67401":8655,"67402":6788,"67403":11877,"67404":4089,"67405":15663,"67406":15554,"67407":87,"67408":13992,"67409":10410,"67410":8703,"67411":9774,"67412":11485,"67413":6378,"67414":1372,"67415":16267,"67416":17956,"67417":11798,"67418":3761,"67419":13213,"67420":11753,"67421":13886,"67422":7229,"67423":2535,"67424":7999,"67425":11362,"67426":4602,"67427":17212,"67428":17156,"67429":14676,"67430":6076,"67431":1234,"67432":3317,"67433":15635,"67434":17046,"67435":1169,"67436":12944,"67437":14839,"67438":17920,"67439":687,"67440":13110,"67441":3214,"67442":7522,"67443":560,"67444":6122,"67445":10617,"67446":16701,"67447":8333,"67448":8746,"67449":12481,"67450":17088,"67451":14355,"67452":14855,"67453":5009,"67454":17712,"67455":15172,"67456":7363,"67457":16688,"67458":6054,"67459":3569,"67460":367,"67461":6540,"67462":6905,"67463":12327,"67464":15835,"67465":15456,"67466":7392,"67467":7300,"67468":16869,"67469":1636,"67470":14512,"67471":13626,"67472":13178,"67473":9559,"67474":9180,"67475":9651,"67476":6922,"67477":17079,"67478":9685,"67479":8941,"67480":6887,"67481":12595,"67482":12428,"67483":9131,"67484":1593,"67485":14795,"67486":7732,"67487":3532,"67488":3594,"67489":5368,"67490":1795,"67491":11314,"67492":6522,"67493":6650,"67494":7850,"67495":16797,"67496":9408,"67497":6144,"67498":6370,"67499":11951,"67500":9269,"67501":4777,"67502":3188,"67503":564,"67504":5185,"67505":8151,"67506":196,"67507":15467,"67508":10262,"67509":16754,"67510":9538,"67511":17120,"67512":6501,"67513":479,"67514":15246,"67515":11664,"67516":16330,"67517":13806,"67518":18328,"67519":14295,"67520":5743,"67521":1391,"67522":3129,"67523":16353,"67524":9575,"67525":7339,"67526":13800,"67527":1255,"67528":15337,"67529":1927,"67530":15866,"67531":12125,"67532":14127,"67533":4967,"67534":17435,"67535":9256,"67536":9199,"67537":6845,"67538":811,"67539":4419,"67540":282,"67541":14790,"67542":18168,"67543":17489,"67544":15334,"67545":13089,"67546":14727,"67547":9266,"67548":11385,"67549":11561,"67550":6265,"67551":16022,"67552":17178,"67553":11504,"67554":1517,"67555":15413,"67556":10582,"67557":1654,"67558":10427,"67559":5408,"67560":7120,"67561":6812,"67562":5609,"67563":24,"67564":2531,"67565":7027,"67566":9622,"67567":17259,"67568":11277,"67569":10336,"67570":6327,"67571":632,"67572":5409,"67573":17602,"67574":10521,"67575":15127,"67576":5939,"67577":15721,"67578":8976,"67579":1167,"67580":8757,"67581":15755,"67582":17141,"67583":4659,"67584":1075,"67585":15617,"67586":12020,"67587":1500,"67588":13339,"67589":13928,"67590":11,"67591":16274,"67592":4739,"67593":4179,"67594":9930,"67595":10367,"67596":11740,"67597":3691,"67598":4428,"67599":4541,"67600":13051,"67601":17950,"67602":8862,"67603":12756,"67604":203,"67605":17593,"67606":16744,"67607":4708,"67608":17625,"67609":11884,"67610":7665,"67611":13282,"67612":6245,"67613":3502,"67614":7549,"67615":15316,"67616":5684,"67617":5586,"67618":13425,"67619":2936,"67620":3499,"67621":2217,"67622":3495,"67623":12303,"67624":5150,"67625":9221,"67626":13870,"67627":8010,"67628":16536,"67629":2943,"67630":9295,"67631":16595,"67632":2384,"67633":7455,"67634":3860,"67635":11310,"67636":9444,"67637":3987,"67638":859,"67639":15443,"67640":17490,"67641":12934,"67642":17650,"67643":11536,"67644":9412,"67645":14721,"67646":12696,"67647":11375,"67648":7127,"67649":9909,"67650":18297,"67651":2919,"67652":3077,"67653":2216,"67654":15520,"67655":17204,"67656":15001,"67657":4275,"67658":1118,"67659":13284,"67660":10581,"67661":16636,"67662":6059,"67663":13859,"67664":9848,"67665":9495,"67666":8006,"67667":848,"67668":5294,"67669":11970,"67670":17450,"67671":4905,"67672":6636,"67673":725,"67674":13819,"67675":8036,"67676":11501,"67677":13794,"67678":6765,"67679":18344,"67680":14463,"67681":16825,"67682":13693,"67683":1013,"67684":1494,"67685":12066,"67686":1222,"67687":2453,"67688":7683,"67689":10161,"67690":10923,"67691":17942,"67692":15333,"67693":8031,"67694":7134,"67695":5414,"67696":12464,"67697":13047,"67698":9260,"67699":3290,"67700":7846,"67701":14344,"67702":1694,"67703":1064,"67704":8893,"67705":7383,"67706":8046,"67707":1586,"67708":11794,"67709":335,"67710":14383,"67711":14095,"67712":13572,"67713":2388,"67714":5772,"67715":9823,"67716":17617,"67717":17211,"67718":5725,"67719":15581,"67720":10471,"67721":10473,"67722":9221,"67723":4743,"67724":7835,"67725":9733,"67726":9913,"67727":7484,"67728":113,"67729":17254,"67730":4272,"67731":17323,"67732":17039,"67733":16567,"67734":9206,"67735":16377,"67736":7025,"67737":14234,"67738":569,"67739":8117,"67740":1564,"67741":11415,"67742":6478,"67743":1134,"67744":8061,"67745":6598,"67746":11816,"67747":5108,"67748":1758,"67749":10741,"67750":5556,"67751":17746,"67752":17813,"67753":14900,"67754":14975,"67755":3978,"67756":13769,"67757":16083,"67758":5773,"67759":6652,"67760":17195,"67761":17794,"67762":11138,"67763":10225,"67764":13919,"67765":12920,"67766":1031,"67767":6594,"67768":7807,"67769":8794,"67770":2186,"67771":13409,"67772":1349,"67773":8290,"67774":8198,"67775":611,"67776":2643,"67777":12219,"67778":6507,"67779":5127,"67780":4125,"67781":9832,"67782":4670,"67783":3660,"67784":14518,"67785":1791,"67786":3868,"67787":5375,"67788":596,"67789":17836,"67790":5368,"67791":5914,"67792":15465,"67793":9069,"67794":15334,"67795":6419,"67796":8178,"67797":11227,"67798":4927,"67799":12152,"67800":10433,"67801":16522,"67802":875,"67803":15000,"67804":11564,"67805":14901,"67806":1917,"67807":17030,"67808":7111,"67809":8675,"67810":5686,"67811":7749,"67812":11030,"67813":6435,"67814":99,"67815":6450,"67816":5198,"67817":8106,"67818":626,"67819":1109,"67820":8627,"67821":5051,"67822":14585,"67823":4493,"67824":16739,"67825":10983,"67826":11531,"67827":1483,"67828":373,"67829":12648,"67830":15599,"67831":12979,"67832":8353,"67833":14777,"67834":883,"67835":5426,"67836":2508,"67837":10321,"67838":9120,"67839":12299,"67840":10286,"67841":3999,"67842":13130,"67843":2425,"67844":16804,"67845":4204,"67846":15701,"67847":13662,"67848":6363,"67849":15658,"67850":5714,"67851":8765,"67852":1204,"67853":12456,"67854":6269,"67855":11265,"67856":10526,"67857":9969,"67858":5176,"67859":10171,"67860":13567,"67861":13302,"67862":11612,"67863":5299,"67864":9619,"67865":13176,"67866":10003,"67867":15897,"67868":11747,"67869":17094,"67870":7641,"67871":17886,"67872":17077,"67873":11422,"67874":6085,"67875":7513,"67876":12140,"67877":10735,"67878":679,"67879":12537,"67880":2684,"67881":16777,"67882":429,"67883":15994,"67884":1243,"67885":6128,"67886":1422,"67887":3124,"67888":8283,"67889":6558,"67890":2542,"67891":1844,"67892":4235,"67893":15523,"67894":5588,"67895":786,"67896":8851,"67897":101,"67898":3163,"67899":14826,"67900":3688,"67901":10810,"67902":3797,"67903":12896,"67904":15243,"67905":13259,"67906":1725,"67907":16425,"67908":2594,"67909":14256,"67910":12114,"67911":10530,"67912":1682,"67913":16018,"67914":9770,"67915":3072,"67916":12438,"67917":8331,"67918":8142,"67919":11662,"67920":9192,"67921":1959,"67922":13835,"67923":803,"67924":6109,"67925":2446,"67926":6747,"67927":14515,"67928":1748,"67929":17226,"67930":2828,"67931":13655,"67932":12458,"67933":11962,"67934":12885,"67935":6184,"67936":13829,"67937":13780,"67938":3051,"67939":17086,"67940":6180,"67941":18085,"67942":6887,"67943":9449,"67944":14261,"67945":5217,"67946":4881,"67947":4711,"67948":12293,"67949":1633,"67950":14060,"67951":15887,"67952":3616,"67953":5611,"67954":524,"67955":10606,"67956":7099,"67957":16366,"67958":10181,"67959":15594,"67960":222,"67961":16490,"67962":11505,"67963":1189,"67964":14888,"67965":2337,"67966":11663,"67967":7806,"67968":12289,"67969":2192,"67970":12521,"67971":12306,"67972":7487,"67973":9924,"67974":15618,"67975":17776,"67976":5903,"67977":7420,"67978":13800,"67979":2910,"67980":10218,"67981":3307,"67982":12830,"67983":17736,"67984":8760,"67985":3748,"67986":15149,"67987":13584,"67988":6793,"67989":11691,"67990":6747,"67991":8494,"67992":3509,"67993":1655,"67994":16250,"67995":6190,"67996":17340,"67997":16235,"67998":9011,"67999":8952,"68000":9334,"68001":15939,"68002":2981,"68003":7400,"68004":18279,"68005":6726,"68006":6651,"68007":14419,"68008":8593,"68009":3849,"68010":13640,"68011":15421,"68012":7264,"68013":4465,"68014":11495,"68015":5510,"68016":7267,"68017":966,"68018":10986,"68019":6410,"68020":12427,"68021":683,"68022":677,"68023":14925,"68024":227,"68025":12962,"68026":4426,"68027":15136,"68028":2957,"68029":9849,"68030":13122,"68031":5168,"68032":14008,"68033":732,"68034":3207,"68035":15398,"68036":4485,"68037":10662,"68038":8938,"68039":2800,"68040":2276,"68041":10104,"68042":3088,"68043":9814,"68044":6596,"68045":9192,"68046":9397,"68047":11760,"68048":487,"68049":8296,"68050":15314,"68051":7958,"68052":10274,"68053":11148,"68054":8161,"68055":10761,"68056":18058,"68057":10422,"68058":1870,"68059":7524,"68060":6541,"68061":5371,"68062":1396,"68063":9075,"68064":13492,"68065":8040,"68066":8430,"68067":11512,"68068":17179,"68069":5925,"68070":17388,"68071":12311,"68072":388,"68073":16191,"68074":3743,"68075":2599,"68076":12341,"68077":14390,"68078":9214,"68079":8807,"68080":16832,"68081":9072,"68082":9059,"68083":2806,"68084":2512,"68085":13505,"68086":2703,"68087":11770,"68088":2733,"68089":9652,"68090":8062,"68091":17117,"68092":8515,"68093":7953,"68094":11987,"68095":9373,"68096":987,"68097":5619,"68098":3768,"68099":3874,"68100":2266,"68101":5965,"68102":10038,"68103":3643,"68104":14596,"68105":16840,"68106":11675,"68107":9631,"68108":2153,"68109":6894,"68110":362,"68111":2720,"68112":16331,"68113":8228,"68114":15615,"68115":4240,"68116":2788,"68117":16635,"68118":7670,"68119":8740,"68120":974,"68121":18359,"68122":9198,"68123":6809,"68124":17372,"68125":13774,"68126":11601,"68127":13064,"68128":15443,"68129":4557,"68130":4328,"68131":3720,"68132":2981,"68133":5817,"68134":2691,"68135":436,"68136":1023,"68137":11755,"68138":8743,"68139":10784,"68140":2903,"68141":11653,"68142":8836,"68143":6511,"68144":14555,"68145":4531,"68146":10920,"68147":10817,"68148":12408,"68149":1543,"68150":11221,"68151":510,"68152":17742,"68153":10326,"68154":12812,"68155":8138,"68156":7864,"68157":5625,"68158":4261,"68159":3689,"68160":8489,"68161":950,"68162":272,"68163":9219,"68164":16958,"68165":3224,"68166":15078,"68167":9111,"68168":14158,"68169":16680,"68170":405,"68171":8847,"68172":6785,"68173":8164,"68174":14773,"68175":5996,"68176":10322,"68177":13616,"68178":10443,"68179":10635,"68180":5164,"68181":14869,"68182":15158,"68183":11070,"68184":17953,"68185":13732,"68186":15518,"68187":18,"68188":12273,"68189":11791,"68190":11464,"68191":16029,"68192":17105,"68193":13333,"68194":4705,"68195":17737,"68196":7028,"68197":11400,"68198":9787,"68199":6935,"68200":16794,"68201":17440,"68202":16625,"68203":13135,"68204":10233,"68205":8232,"68206":13329,"68207":7712,"68208":5015,"68209":13572,"68210":11582,"68211":6341,"68212":1972,"68213":17925,"68214":711,"68215":6893,"68216":3994,"68217":16009,"68218":17646,"68219":2831,"68220":16812,"68221":18281,"68222":10745,"68223":15505,"68224":4286,"68225":807,"68226":6798,"68227":13139,"68228":13873,"68229":2456,"68230":6418,"68231":8021,"68232":4500,"68233":7360,"68234":3206,"68235":11885,"68236":9410,"68237":16139,"68238":8472,"68239":10745,"68240":4814,"68241":77,"68242":14544,"68243":8726,"68244":13641,"68245":16638,"68246":18223,"68247":16586,"68248":8741,"68249":7331,"68250":8295,"68251":17720,"68252":17532,"68253":15449,"68254":14934,"68255":5194,"68256":10472,"68257":15004,"68258":1361,"68259":3305,"68260":4812,"68261":11886,"68262":17193,"68263":9604,"68264":301,"68265":16619,"68266":284,"68267":10379,"68268":6997,"68269":8198,"68270":6046,"68271":6701,"68272":5389,"68273":7304,"68274":9111,"68275":13841,"68276":9555,"68277":8900,"68278":17584,"68279":10676,"68280":12672,"68281":16802,"68282":17547,"68283":15747,"68284":5407,"68285":2544,"68286":1258,"68287":5448,"68288":11560,"68289":16639,"68290":7101,"68291":5389,"68292":12122,"68293":16412,"68294":15642,"68295":10941,"68296":18197,"68297":4044,"68298":641,"68299":302,"68300":499,"68301":9737,"68302":9512,"68303":1629,"68304":2327,"68305":11785,"68306":18081,"68307":13312,"68308":4079,"68309":6272,"68310":14916,"68311":8967,"68312":2635,"68313":9340,"68314":8904,"68315":829,"68316":2236,"68317":15912,"68318":13610,"68319":4655,"68320":9290,"68321":14335,"68322":15070,"68323":632,"68324":1633,"68325":7067,"68326":13723,"68327":15361,"68328":7812,"68329":7070,"68330":8336,"68331":16001,"68332":4314,"68333":4870,"68334":9098,"68335":9652,"68336":7980,"68337":7611,"68338":6594,"68339":9589,"68340":12269,"68341":16052,"68342":15742,"68343":10427,"68344":14114,"68345":8799,"68346":1803,"68347":9687,"68348":12124,"68349":6697,"68350":9744,"68351":8854,"68352":8813,"68353":8978,"68354":4991,"68355":480,"68356":14189,"68357":17123,"68358":8604,"68359":3030,"68360":14662,"68361":17043,"68362":10316,"68363":18195,"68364":9054,"68365":12618,"68366":9997,"68367":14768,"68368":7236,"68369":3182,"68370":10440,"68371":11795,"68372":10695,"68373":12803,"68374":17674,"68375":3923,"68376":15087,"68377":2742,"68378":7792,"68379":240,"68380":15101,"68381":1702,"68382":6762,"68383":14181,"68384":9048,"68385":12777,"68386":3249,"68387":18277,"68388":7334,"68389":3615,"68390":3809,"68391":2120,"68392":12563,"68393":13845,"68394":6285,"68395":5038,"68396":4021,"68397":16613,"68398":5584,"68399":3732,"68400":8976,"68401":7329,"68402":8581,"68403":2060,"68404":17749,"68405":4253,"68406":5665,"68407":1141,"68408":10843,"68409":7926,"68410":10805,"68411":8293,"68412":6827,"68413":13809,"68414":12645,"68415":1708,"68416":790,"68417":7931,"68418":11204,"68419":696,"68420":4780,"68421":1739,"68422":17604,"68423":3065,"68424":5485,"68425":8674,"68426":1236,"68427":3665,"68428":16482,"68429":2322,"68430":5601,"68431":15505,"68432":14356,"68433":2347,"68434":16542,"68435":15613,"68436":11404,"68437":17647,"68438":8793,"68439":13880,"68440":13268,"68441":4127,"68442":10998,"68443":7011,"68444":2634,"68445":6018,"68446":6512,"68447":12046,"68448":11936,"68449":10928,"68450":13365,"68451":12172,"68452":9576,"68453":8744,"68454":16826,"68455":3598,"68456":18289,"68457":13118,"68458":14313,"68459":14343,"68460":18029,"68461":15188,"68462":14362,"68463":13215,"68464":17178,"68465":3801,"68466":3380,"68467":14177,"68468":9525,"68469":5928,"68470":14528,"68471":4878,"68472":10145,"68473":1523,"68474":13018,"68475":13375,"68476":2910,"68477":5779,"68478":18322,"68479":17706,"68480":5466,"68481":2774,"68482":2426,"68483":10906,"68484":14529,"68485":9455,"68486":12434,"68487":17430,"68488":4672,"68489":8337,"68490":10504,"68491":1480,"68492":1451,"68493":2568,"68494":2013,"68495":804,"68496":625,"68497":5078,"68498":4037,"68499":10472,"68500":11733,"68501":12212,"68502":9337,"68503":17686,"68504":10525,"68505":17048,"68506":4318,"68507":12163,"68508":4619,"68509":13744,"68510":12337,"68511":9706,"68512":2496,"68513":11088,"68514":4221,"68515":11700,"68516":17576,"68517":10214,"68518":15920,"68519":3061,"68520":11844,"68521":16082,"68522":3238,"68523":11051,"68524":8665,"68525":423,"68526":3102,"68527":228,"68528":4540,"68529":2603,"68530":10442,"68531":15439,"68532":400,"68533":714,"68534":4958,"68535":9563,"68536":5994,"68537":15627,"68538":15212,"68539":5241,"68540":11304,"68541":16376,"68542":5206,"68543":5385,"68544":17933,"68545":11429,"68546":9574,"68547":11652,"68548":15183,"68549":18256,"68550":15392,"68551":1674,"68552":15168,"68553":12534,"68554":1567,"68555":6058,"68556":6977,"68557":1587,"68558":4948,"68559":11998,"68560":6523,"68561":5154,"68562":16988,"68563":4432,"68564":8920,"68565":14953,"68566":8520,"68567":15618,"68568":14679,"68569":5673,"68570":15773,"68571":7898,"68572":15016,"68573":13370,"68574":3083,"68575":11405,"68576":15997,"68577":13933,"68578":5996,"68579":2153,"68580":11915,"68581":2512,"68582":7689,"68583":4732,"68584":2500,"68585":6487,"68586":13517,"68587":14929,"68588":15147,"68589":13917,"68590":3336,"68591":15812,"68592":9268,"68593":5078,"68594":14670,"68595":10756,"68596":12107,"68597":3869,"68598":15036,"68599":2496,"68600":8778,"68601":1256,"68602":3667,"68603":9180,"68604":1560,"68605":18323,"68606":12115,"68607":11587,"68608":17184,"68609":9041,"68610":11565,"68611":7726,"68612":1139,"68613":12419,"68614":12404,"68615":6148,"68616":11687,"68617":4185,"68618":5035,"68619":486,"68620":3862,"68621":12945,"68622":1041,"68623":13278,"68624":1048,"68625":3491,"68626":3092,"68627":255,"68628":7720,"68629":3373,"68630":8543,"68631":15429,"68632":9358,"68633":10109,"68634":6565,"68635":3988,"68636":3640,"68637":10810,"68638":2499,"68639":7498,"68640":12805,"68641":11431,"68642":3163,"68643":10821,"68644":1228,"68645":9684,"68646":13290,"68647":16082,"68648":16608,"68649":14829,"68650":10951,"68651":13043,"68652":2689,"68653":155,"68654":2292,"68655":18018,"68656":5221,"68657":4848,"68658":14099,"68659":9249,"68660":5207,"68661":11194,"68662":12947,"68663":9705,"68664":7462,"68665":10993,"68666":70,"68667":5423,"68668":5425,"68669":9898,"68670":8152,"68671":3511,"68672":15142,"68673":16402,"68674":10277,"68675":4089,"68676":3315,"68677":16018,"68678":12608,"68679":1522,"68680":6452,"68681":16812,"68682":17579,"68683":14100,"68684":7199,"68685":8485,"68686":4083,"68687":13504,"68688":11525,"68689":13342,"68690":12261,"68691":12447,"68692":9573,"68693":10909,"68694":2959,"68695":11732,"68696":10106,"68697":11642,"68698":12554,"68699":17895,"68700":10430,"68701":17673,"68702":9171,"68703":9510,"68704":1786,"68705":1336,"68706":8473,"68707":2872,"68708":3316,"68709":16670,"68710":14734,"68711":11648,"68712":17455,"68713":11320,"68714":14745,"68715":9438,"68716":14777,"68717":10424,"68718":11182,"68719":3310,"68720":15522,"68721":6295,"68722":14724,"68723":386,"68724":10912,"68725":5194,"68726":10423,"68727":13969,"68728":14711,"68729":2159,"68730":12477,"68731":3779,"68732":17430,"68733":16032,"68734":15439,"68735":54,"68736":8209,"68737":13204,"68738":14445,"68739":10352,"68740":15490,"68741":12699,"68742":16073,"68743":2029,"68744":10429,"68745":4459,"68746":4406,"68747":1256,"68748":345,"68749":5648,"68750":11257,"68751":3603,"68752":5416,"68753":15839,"68754":14042,"68755":3967,"68756":3330,"68757":16745,"68758":9849,"68759":12099,"68760":2986,"68761":6311,"68762":793,"68763":3723,"68764":14675,"68765":3558,"68766":8117,"68767":8152,"68768":3711,"68769":10864,"68770":11933,"68771":594,"68772":8792,"68773":13272,"68774":7419,"68775":11263,"68776":10563,"68777":16878,"68778":6157,"68779":9242,"68780":9484,"68781":17463,"68782":6245,"68783":13989,"68784":12585,"68785":6559,"68786":11798,"68787":11193,"68788":13739,"68789":17313,"68790":2044,"68791":5847,"68792":9586,"68793":2545,"68794":2643,"68795":14725,"68796":12523,"68797":13856,"68798":5577,"68799":15913,"68800":7803,"68801":270,"68802":4332,"68803":6826,"68804":11575,"68805":17553,"68806":1832,"68807":2402,"68808":3790,"68809":11291,"68810":13835,"68811":546,"68812":1615,"68813":15662,"68814":15007,"68815":5472,"68816":10844,"68817":17280,"68818":5001,"68819":10660,"68820":12017,"68821":10529,"68822":5618,"68823":6174,"68824":11746,"68825":9108,"68826":4166,"68827":17542,"68828":12216,"68829":7487,"68830":7092,"68831":13475,"68832":4106,"68833":3080,"68834":7006,"68835":2647,"68836":788,"68837":1157,"68838":14479,"68839":2377,"68840":3995,"68841":11646,"68842":11670,"68843":9524,"68844":4211,"68845":8862,"68846":11472,"68847":8990,"68848":3046,"68849":2047,"68850":13631,"68851":2805,"68852":5186,"68853":8685,"68854":15098,"68855":13357,"68856":8810,"68857":4557,"68858":9331,"68859":5771,"68860":4177,"68861":6993,"68862":10868,"68863":16647,"68864":13038,"68865":10941,"68866":11762,"68867":3701,"68868":2770,"68869":12555,"68870":3768,"68871":14067,"68872":6518,"68873":17851,"68874":823,"68875":17675,"68876":2593,"68877":14813,"68878":8305,"68879":14556,"68880":12666,"68881":14592,"68882":13592,"68883":17306,"68884":10828,"68885":4183,"68886":8272,"68887":9009,"68888":3988,"68889":15799,"68890":1999,"68891":4180,"68892":998,"68893":6642,"68894":10006,"68895":13853,"68896":10261,"68897":2444,"68898":12771,"68899":18055,"68900":18244,"68901":6058,"68902":10895,"68903":14608,"68904":8959,"68905":7512,"68906":17756,"68907":12758,"68908":13656,"68909":2214,"68910":16183,"68911":3407,"68912":1733,"68913":9279,"68914":3759,"68915":2367,"68916":13360,"68917":7364,"68918":13667,"68919":5387,"68920":17009,"68921":10381,"68922":7231,"68923":2974,"68924":14569,"68925":620,"68926":5290,"68927":17124,"68928":8528,"68929":9384,"68930":859,"68931":6256,"68932":12081,"68933":1606,"68934":13551,"68935":5232,"68936":17425,"68937":11227,"68938":7310,"68939":9527,"68940":17276,"68941":14350,"68942":10033,"68943":963,"68944":8664,"68945":9838,"68946":4992,"68947":1783,"68948":7976,"68949":7078,"68950":8192,"68951":1219,"68952":2820,"68953":12571,"68954":15211,"68955":11443,"68956":6249,"68957":2483,"68958":15511,"68959":1899,"68960":5520,"68961":8048,"68962":14615,"68963":12507,"68964":12546,"68965":2527,"68966":761,"68967":11262,"68968":2863,"68969":16246,"68970":1208,"68971":14910,"68972":17528,"68973":5064,"68974":3323,"68975":5965,"68976":3381,"68977":14683,"68978":7157,"68979":414,"68980":10608,"68981":9521,"68982":10200,"68983":2921,"68984":2607,"68985":9055,"68986":10533,"68987":1563,"68988":3820,"68989":18012,"68990":13313,"68991":4486,"68992":221,"68993":16510,"68994":18128,"68995":10473,"68996":17118,"68997":3375,"68998":13579,"68999":8376,"69000":15287,"69001":6351,"69002":12373,"69003":1892,"69004":4541,"69005":15357,"69006":11939,"69007":14879,"69008":14644,"69009":17016,"69010":15856,"69011":10430,"69012":9296,"69013":3217,"69014":17166,"69015":13200,"69016":12923,"69017":11782,"69018":9318,"69019":14864,"69020":11298,"69021":12347,"69022":18350,"69023":11235,"69024":11083,"69025":7023,"69026":10974,"69027":8810,"69028":12931,"69029":9210,"69030":10921,"69031":3537,"69032":17008,"69033":16061,"69034":8269,"69035":3291,"69036":3903,"69037":983,"69038":11670,"69039":14396,"69040":2651,"69041":16642,"69042":1570,"69043":1256,"69044":1171,"69045":16759,"69046":8366,"69047":1611,"69048":11136,"69049":16317,"69050":13166,"69051":10890,"69052":10873,"69053":4482,"69054":1967,"69055":6962,"69056":11167,"69057":12496,"69058":6254,"69059":3309,"69060":12831,"69061":3449,"69062":14269,"69063":14643,"69064":8398,"69065":13311,"69066":10898,"69067":7520,"69068":8122,"69069":11022,"69070":13254,"69071":11809,"69072":9349,"69073":3006,"69074":10426,"69075":12961,"69076":3846,"69077":5684,"69078":10696,"69079":10361,"69080":10863,"69081":15409,"69082":9254,"69083":9332,"69084":8881,"69085":2356,"69086":6671,"69087":11594,"69088":9471,"69089":2961,"69090":754,"69091":10758,"69092":15380,"69093":2476,"69094":18135,"69095":15358,"69096":11112,"69097":12845,"69098":1731,"69099":1378,"69100":4306,"69101":10623,"69102":8233,"69103":13023,"69104":2852,"69105":7951,"69106":17915,"69107":5689,"69108":4941,"69109":11209,"69110":5715,"69111":2484,"69112":6816,"69113":14748,"69114":3247,"69115":269,"69116":6708,"69117":3085,"69118":16150,"69119":5676,"69120":2383,"69121":15031,"69122":10682,"69123":12835,"69124":3744,"69125":1083,"69126":4157,"69127":5070,"69128":15393,"69129":586,"69130":8334,"69131":2289,"69132":15887,"69133":1357,"69134":9191,"69135":11683,"69136":5108,"69137":12002,"69138":9535,"69139":11498,"69140":9571,"69141":10164,"69142":7921,"69143":8519,"69144":14501,"69145":9778,"69146":10452,"69147":9745,"69148":18214,"69149":10533,"69150":4663,"69151":10907,"69152":15530,"69153":11125,"69154":17192,"69155":2230,"69156":14625,"69157":14220,"69158":14760,"69159":725,"69160":16218,"69161":7238,"69162":253,"69163":4481,"69164":633,"69165":6137,"69166":5824,"69167":8964,"69168":9785,"69169":13600,"69170":1975,"69171":4602,"69172":11607,"69173":2522,"69174":2347,"69175":18212,"69176":4292,"69177":9355,"69178":16737,"69179":1645,"69180":722,"69181":17662,"69182":1813,"69183":4324,"69184":4469,"69185":10693,"69186":8415,"69187":4537,"69188":13346,"69189":1651,"69190":14012,"69191":4680,"69192":5671,"69193":10195,"69194":12947,"69195":2251,"69196":14001,"69197":1226,"69198":13866,"69199":4620,"69200":4750,"69201":609,"69202":9106,"69203":16533,"69204":14154,"69205":2687,"69206":15505,"69207":9168,"69208":16937,"69209":5319,"69210":8739,"69211":323,"69212":13464,"69213":14906,"69214":12518,"69215":16860,"69216":15422,"69217":968,"69218":18274,"69219":8594,"69220":58,"69221":1274,"69222":1655,"69223":5087,"69224":15893,"69225":2034,"69226":9191,"69227":12229,"69228":13567,"69229":4035,"69230":741,"69231":3919,"69232":898,"69233":16893,"69234":5804,"69235":7864,"69236":15752,"69237":14621,"69238":13860,"69239":16041,"69240":10342,"69241":10514,"69242":380,"69243":14530,"69244":17446,"69245":15180,"69246":433,"69247":18080,"69248":12023,"69249":9968,"69250":9587,"69251":15204,"69252":9055,"69253":3941,"69254":12443,"69255":12964,"69256":4330,"69257":13041,"69258":14860,"69259":8,"69260":6882,"69261":8651,"69262":8130,"69263":10872,"69264":4233,"69265":15502,"69266":2289,"69267":2066,"69268":12460,"69269":17005,"69270":14619,"69271":16848,"69272":11426,"69273":7752,"69274":15119,"69275":2024,"69276":17842,"69277":10226,"69278":13859,"69279":6719,"69280":1477,"69281":12569,"69282":3113,"69283":3881,"69284":11522,"69285":17612,"69286":14697,"69287":6586,"69288":6856,"69289":4345,"69290":1970,"69291":118,"69292":640,"69293":4154,"69294":13240,"69295":11645,"69296":5948,"69297":10882,"69298":6435,"69299":9456,"69300":9567,"69301":17048,"69302":16375,"69303":1917,"69304":17319,"69305":4880,"69306":15602,"69307":14206,"69308":14143,"69309":17754,"69310":5945,"69311":11567,"69312":6103,"69313":3145,"69314":12193,"69315":107,"69316":1018,"69317":15606,"69318":4618,"69319":9406,"69320":15398,"69321":4595,"69322":268,"69323":15236,"69324":1529,"69325":649,"69326":16902,"69327":7182,"69328":1218,"69329":16440,"69330":448,"69331":17067,"69332":9173,"69333":3460,"69334":11468,"69335":13035,"69336":17459,"69337":8294,"69338":12405,"69339":8492,"69340":9699,"69341":368,"69342":5452,"69343":1544,"69344":9243,"69345":678,"69346":4750,"69347":4749,"69348":437,"69349":3218,"69350":1989,"69351":18343,"69352":3529,"69353":5484,"69354":4415,"69355":14781,"69356":1576,"69357":11879,"69358":13227,"69359":13045,"69360":15137,"69361":11257,"69362":11192,"69363":18288,"69364":9645,"69365":11056,"69366":3572,"69367":2907,"69368":14977,"69369":13912,"69370":4232,"69371":5795,"69372":720,"69373":1641,"69374":4227,"69375":7261,"69376":4467,"69377":1531,"69378":5142,"69379":12625,"69380":4299,"69381":9993,"69382":8074,"69383":13867,"69384":15840,"69385":10313,"69386":458,"69387":18311,"69388":2734,"69389":17159,"69390":3348,"69391":494,"69392":8073,"69393":11571,"69394":15721,"69395":4988,"69396":6277,"69397":14346,"69398":15568,"69399":3160,"69400":6222,"69401":1169,"69402":15462,"69403":16292,"69404":2743,"69405":2629,"69406":17913,"69407":4539,"69408":3541,"69409":9941,"69410":17587,"69411":16584,"69412":3182,"69413":235,"69414":10256,"69415":1426,"69416":3103,"69417":16255,"69418":13307,"69419":5999,"69420":4714,"69421":3672,"69422":13042,"69423":7568,"69424":7910,"69425":6960,"69426":7179,"69427":9707,"69428":8508,"69429":8654,"69430":2345,"69431":6237,"69432":12588,"69433":11866,"69434":13958,"69435":16987,"69436":15722,"69437":5810,"69438":6219,"69439":11472,"69440":1113,"69441":7270,"69442":16357,"69443":2031,"69444":1866,"69445":5059,"69446":2883,"69447":9928,"69448":11790,"69449":4272,"69450":13732,"69451":12598,"69452":11984,"69453":3027,"69454":7654,"69455":17694,"69456":1795,"69457":8326,"69458":97,"69459":3219,"69460":17511,"69461":7972,"69462":11594,"69463":15809,"69464":5412,"69465":9531,"69466":11898,"69467":5202,"69468":3546,"69469":9492,"69470":76,"69471":17636,"69472":11481,"69473":15541,"69474":13877,"69475":9090,"69476":10194,"69477":4164,"69478":1901,"69479":5090,"69480":7620,"69481":2463,"69482":1847,"69483":1561,"69484":9664,"69485":8815,"69486":12858,"69487":14299,"69488":3000,"69489":11241,"69490":3827,"69491":8178,"69492":586,"69493":14077,"69494":12506,"69495":3164,"69496":1223,"69497":15810,"69498":3974,"69499":3261,"69500":6812,"69501":16115,"69502":209,"69503":5645,"69504":18320,"69505":12445,"69506":3180,"69507":18162,"69508":524,"69509":9701,"69510":415,"69511":15779,"69512":15546,"69513":2908,"69514":11489,"69515":8606,"69516":17410,"69517":14874,"69518":7395,"69519":9764,"69520":13430,"69521":3053,"69522":3867,"69523":14985,"69524":2840,"69525":9342,"69526":2993,"69527":5454,"69528":14908,"69529":3533,"69530":10175,"69531":17216,"69532":14373,"69533":15953,"69534":11929,"69535":8448,"69536":16489,"69537":13685,"69538":7199,"69539":14141,"69540":1366,"69541":3517,"69542":17702,"69543":7878,"69544":11328,"69545":6902,"69546":10423,"69547":7217,"69548":12235,"69549":3335,"69550":7064,"69551":9870,"69552":8809,"69553":5758,"69554":5558,"69555":11500,"69556":14704,"69557":1951,"69558":3136,"69559":7507,"69560":12271,"69561":17819,"69562":18296,"69563":10247,"69564":1826,"69565":9749,"69566":17207,"69567":17724,"69568":5284,"69569":12234,"69570":13549,"69571":5081,"69572":11992,"69573":8543,"69574":15958,"69575":14824,"69576":6618,"69577":10806,"69578":12182,"69579":925,"69580":15195,"69581":927,"69582":2420,"69583":15931,"69584":18180,"69585":4870,"69586":10190,"69587":3026,"69588":14345,"69589":3130,"69590":429,"69591":9025,"69592":8262,"69593":17002,"69594":6127,"69595":1250,"69596":11548,"69597":3543,"69598":945,"69599":6998,"69600":627,"69601":16752,"69602":16688,"69603":9298,"69604":16047,"69605":8082,"69606":1979,"69607":9626,"69608":176,"69609":516,"69610":14345,"69611":6112,"69612":12957,"69613":3177,"69614":18161,"69615":943,"69616":10273,"69617":9772,"69618":18044,"69619":3840,"69620":13179,"69621":7242,"69622":4470,"69623":9247,"69624":8066,"69625":3114,"69626":6824,"69627":715,"69628":14424,"69629":9523,"69630":3483,"69631":15325,"69632":11364,"69633":1135,"69634":4181,"69635":10111,"69636":4184,"69637":3083,"69638":5939,"69639":723,"69640":5310,"69641":7703,"69642":177,"69643":1826,"69644":1343,"69645":11454,"69646":438,"69647":13464,"69648":17074,"69649":4510,"69650":1892,"69651":18019,"69652":9870,"69653":9383,"69654":11213,"69655":2225,"69656":8314,"69657":598,"69658":16831,"69659":13866,"69660":10803,"69661":11203,"69662":5129,"69663":15238,"69664":14787,"69665":3858,"69666":12382,"69667":16075,"69668":3407,"69669":4695,"69670":3305,"69671":10654,"69672":12990,"69673":2797,"69674":14483,"69675":10535,"69676":11836,"69677":7867,"69678":4716,"69679":12287,"69680":14028,"69681":571,"69682":8987,"69683":4790,"69684":610,"69685":952,"69686":6261,"69687":2618,"69688":13620,"69689":1155,"69690":7842,"69691":10886,"69692":12528,"69693":15867,"69694":11274,"69695":2668,"69696":7868,"69697":17456,"69698":8171,"69699":5449,"69700":9640,"69701":12164,"69702":18159,"69703":17708,"69704":16123,"69705":16853,"69706":15337,"69707":9184,"69708":15273,"69709":3527,"69710":4326,"69711":2756,"69712":6010,"69713":11554,"69714":9349,"69715":6893,"69716":10623,"69717":5511,"69718":9566,"69719":2005,"69720":12447,"69721":9597,"69722":12452,"69723":4451,"69724":14396,"69725":6496,"69726":13240,"69727":7418,"69728":398,"69729":665,"69730":145,"69731":17114,"69732":16120,"69733":14496,"69734":15365,"69735":13238,"69736":336,"69737":15398,"69738":6405,"69739":9815,"69740":1630,"69741":17155,"69742":7940,"69743":672,"69744":14498,"69745":12139,"69746":3788,"69747":14929,"69748":2676,"69749":5511,"69750":17894,"69751":14455,"69752":232,"69753":15327,"69754":13426,"69755":5531,"69756":18227,"69757":4408,"69758":12770,"69759":13335,"69760":17503,"69761":15168,"69762":17730,"69763":10909,"69764":8934,"69765":13649,"69766":9315,"69767":14549,"69768":14879,"69769":2655,"69770":2946,"69771":4584,"69772":17296,"69773":12851,"69774":8754,"69775":11124,"69776":18210,"69777":17887,"69778":9810,"69779":4370,"69780":18023,"69781":9357,"69782":2927,"69783":2260,"69784":9667,"69785":4848,"69786":7576,"69787":4673,"69788":13347,"69789":14473,"69790":6743,"69791":11329,"69792":10787,"69793":16883,"69794":12230,"69795":12201,"69796":3658,"69797":5683,"69798":17212,"69799":17505,"69800":12335,"69801":13464,"69802":9649,"69803":15099,"69804":788,"69805":11322,"69806":6371,"69807":6740,"69808":15056,"69809":5287,"69810":17766,"69811":14477,"69812":10766,"69813":10775,"69814":6016,"69815":10431,"69816":9459,"69817":12721,"69818":6970,"69819":8204,"69820":9084,"69821":10255,"69822":4721,"69823":10586,"69824":5443,"69825":6637,"69826":12014,"69827":5788,"69828":18164,"69829":17618,"69830":7751,"69831":13260,"69832":3658,"69833":11691,"69834":3697,"69835":15958,"69836":993,"69837":9593,"69838":11365,"69839":8115,"69840":2209,"69841":2001,"69842":5419,"69843":3477,"69844":2017,"69845":7221,"69846":2157,"69847":13657,"69848":2848,"69849":5922,"69850":13933,"69851":16666,"69852":16508,"69853":7038,"69854":15075,"69855":3697,"69856":10128,"69857":15288,"69858":4350,"69859":17638,"69860":10420,"69861":9735,"69862":13606,"69863":7311,"69864":13690,"69865":3713,"69866":16721,"69867":3926,"69868":8976,"69869":9668,"69870":14089,"69871":17691,"69872":13078,"69873":1247,"69874":975,"69875":18103,"69876":12352,"69877":10013,"69878":14183,"69879":6833,"69880":3610,"69881":11082,"69882":14065,"69883":7999,"69884":10869,"69885":12050,"69886":2325,"69887":13099,"69888":14709,"69889":258,"69890":10467,"69891":12745,"69892":6082,"69893":3619,"69894":5669,"69895":2357,"69896":11688,"69897":8715,"69898":16146,"69899":14506,"69900":908,"69901":4842,"69902":8264,"69903":1907,"69904":4358,"69905":14515,"69906":16818,"69907":13758,"69908":9800,"69909":9372,"69910":4022,"69911":18272,"69912":3632,"69913":6438,"69914":16235,"69915":12718,"69916":303,"69917":15949,"69918":6356,"69919":17177,"69920":16323,"69921":4026,"69922":12570,"69923":4650,"69924":11533,"69925":14624,"69926":5278,"69927":10270,"69928":11399,"69929":14779,"69930":5992,"69931":8065,"69932":1254,"69933":8216,"69934":7164,"69935":16450,"69936":12384,"69937":16219,"69938":1764,"69939":11909,"69940":1085,"69941":1259,"69942":14287,"69943":3976,"69944":13877,"69945":3944,"69946":5888,"69947":17057,"69948":16722,"69949":18008,"69950":4473,"69951":9699,"69952":17428,"69953":2903,"69954":14339,"69955":6471,"69956":3060,"69957":10912,"69958":3938,"69959":15765,"69960":4114,"69961":2631,"69962":1483,"69963":7454,"69964":11258,"69965":17922,"69966":4160,"69967":13378,"69968":1153,"69969":793,"69970":9592,"69971":6871,"69972":7286,"69973":16241,"69974":2034,"69975":2568,"69976":1352,"69977":62,"69978":13164,"69979":2002,"69980":3648,"69981":2230,"69982":10713,"69983":12511,"69984":1729,"69985":469,"69986":7713,"69987":17536,"69988":14386,"69989":15233,"69990":9236,"69991":6568,"69992":3205,"69993":2667,"69994":10882,"69995":10208,"69996":8664,"69997":2274,"69998":12615,"69999":17163,"70000":1964,"70001":3633,"70002":13508,"70003":17380,"70004":11275,"70005":15847,"70006":11077,"70007":9121,"70008":11093,"70009":8812,"70010":3880,"70011":10930,"70012":1377,"70013":14186,"70014":14602,"70015":7842,"70016":15993,"70017":278,"70018":111,"70019":9566,"70020":10343,"70021":5533,"70022":5790,"70023":12074,"70024":16868,"70025":1552,"70026":13864,"70027":8262,"70028":9932,"70029":6575,"70030":6358,"70031":11938,"70032":4559,"70033":4666,"70034":3809,"70035":13446,"70036":18348,"70037":4806,"70038":526,"70039":13929,"70040":17726,"70041":10684,"70042":3323,"70043":8405,"70044":8385,"70045":13871,"70046":12375,"70047":20,"70048":8947,"70049":8129,"70050":7883,"70051":17219,"70052":17513,"70053":10902,"70054":11201,"70055":15170,"70056":10103,"70057":16210,"70058":8185,"70059":4440,"70060":3334,"70061":15297,"70062":5686,"70063":12422,"70064":3446,"70065":10850,"70066":1931,"70067":4726,"70068":8724,"70069":12747,"70070":10206,"70071":17297,"70072":17184,"70073":11196,"70074":16807,"70075":18043,"70076":8664,"70077":9278,"70078":11065,"70079":8835,"70080":14020,"70081":9837,"70082":17003,"70083":16724,"70084":13467,"70085":4420,"70086":2646,"70087":7710,"70088":13112,"70089":17321,"70090":7974,"70091":3428,"70092":17551,"70093":5341,"70094":6638,"70095":7592,"70096":15342,"70097":8852,"70098":1662,"70099":790,"70100":13344,"70101":5050,"70102":18329,"70103":7456,"70104":4705,"70105":16248,"70106":13389,"70107":2174,"70108":15804,"70109":16363,"70110":2796,"70111":4484,"70112":10199,"70113":9209,"70114":3456,"70115":4806,"70116":16364,"70117":11386,"70118":4244,"70119":17072,"70120":15713,"70121":13392,"70122":8791,"70123":17927,"70124":1351,"70125":2527,"70126":10624,"70127":3526,"70128":1904,"70129":464,"70130":7663,"70131":14749,"70132":15584,"70133":8832,"70134":9601,"70135":1231,"70136":2845,"70137":3342,"70138":13565,"70139":16915,"70140":10844,"70141":4793,"70142":5641,"70143":3274,"70144":17634,"70145":9123,"70146":1220,"70147":17717,"70148":9969,"70149":208,"70150":6658,"70151":7710,"70152":7226,"70153":2518,"70154":16673,"70155":8681,"70156":3294,"70157":2074,"70158":5596,"70159":6674,"70160":8674,"70161":16337,"70162":16027,"70163":798,"70164":9464,"70165":5686,"70166":3299,"70167":3597,"70168":11274,"70169":10119,"70170":9360,"70171":17429,"70172":3146,"70173":12476,"70174":11414,"70175":3237,"70176":4198,"70177":13167,"70178":11970,"70179":4670,"70180":17455,"70181":10110,"70182":1916,"70183":16675,"70184":434,"70185":15942,"70186":7185,"70187":929,"70188":738,"70189":3054,"70190":4507,"70191":7274,"70192":13696,"70193":16978,"70194":8369,"70195":2509,"70196":2219,"70197":5295,"70198":8554,"70199":8839,"70200":10411,"70201":1740,"70202":16697,"70203":11018,"70204":15706,"70205":11059,"70206":4505,"70207":11646,"70208":2036,"70209":15409,"70210":1415,"70211":14068,"70212":6901,"70213":16438,"70214":3259,"70215":2809,"70216":14283,"70217":4913,"70218":14591,"70219":15661,"70220":14215,"70221":10830,"70222":8620,"70223":12718,"70224":854,"70225":4980,"70226":14891,"70227":12350,"70228":12215,"70229":14628,"70230":12368,"70231":14284,"70232":15421,"70233":14934,"70234":17528,"70235":2500,"70236":8125,"70237":6893,"70238":15273,"70239":2883,"70240":26,"70241":1508,"70242":3516,"70243":775,"70244":17462,"70245":5019,"70246":15677,"70247":11646,"70248":9243,"70249":15033,"70250":13762,"70251":12215,"70252":289,"70253":8175,"70254":17438,"70255":5688,"70256":8202,"70257":15526,"70258":15340,"70259":16797,"70260":13748,"70261":8227,"70262":11471,"70263":15993,"70264":6445,"70265":8172,"70266":4326,"70267":17427,"70268":1365,"70269":1050,"70270":532,"70271":6438,"70272":10894,"70273":9268,"70274":13251,"70275":3663,"70276":17175,"70277":2392,"70278":8228,"70279":6978,"70280":9714,"70281":12964,"70282":7236,"70283":17098,"70284":5933,"70285":9048,"70286":11713,"70287":705,"70288":8001,"70289":5447,"70290":4177,"70291":4602,"70292":17941,"70293":17301,"70294":9745,"70295":8891,"70296":12996,"70297":5665,"70298":12716,"70299":1802,"70300":6805,"70301":3931,"70302":7641,"70303":6229,"70304":4407,"70305":14443,"70306":14460,"70307":15321,"70308":2985,"70309":3731,"70310":6645,"70311":2173,"70312":10847,"70313":5006,"70314":333,"70315":6383,"70316":17686,"70317":5753,"70318":10474,"70319":4086,"70320":6145,"70321":8424,"70322":3754,"70323":9766,"70324":2342,"70325":1608,"70326":12082,"70327":3750,"70328":16553,"70329":15284,"70330":6373,"70331":4507,"70332":7537,"70333":4514,"70334":14063,"70335":3517,"70336":10567,"70337":2703,"70338":9094,"70339":12719,"70340":9820,"70341":510,"70342":18156,"70343":15127,"70344":11193,"70345":17049,"70346":3085,"70347":5581,"70348":1394,"70349":1653,"70350":7135,"70351":5706,"70352":11755,"70353":1943,"70354":6917,"70355":10970,"70356":10249,"70357":8557,"70358":6056,"70359":14881,"70360":17657,"70361":18060,"70362":14138,"70363":3798,"70364":4218,"70365":4801,"70366":5064,"70367":2408,"70368":11053,"70369":4303,"70370":15899,"70371":3255,"70372":8646,"70373":10653,"70374":1549,"70375":3391,"70376":7227,"70377":17138,"70378":13508,"70379":5060,"70380":5037,"70381":16271,"70382":3213,"70383":15760,"70384":16680,"70385":12458,"70386":7105,"70387":12601,"70388":5119,"70389":9727,"70390":11822,"70391":924,"70392":16324,"70393":2648,"70394":14377,"70395":5761,"70396":16195,"70397":2542,"70398":7167,"70399":17446,"70400":13123,"70401":14961,"70402":242,"70403":9847,"70404":15695,"70405":14464,"70406":4795,"70407":2574,"70408":5496,"70409":11725,"70410":9142,"70411":15575,"70412":647,"70413":7059,"70414":359,"70415":5873,"70416":2679,"70417":18133,"70418":10598,"70419":17144,"70420":7229,"70421":9227,"70422":16662,"70423":1537,"70424":9122,"70425":17195,"70426":13360,"70427":1659,"70428":6196,"70429":7971,"70430":17978,"70431":8598,"70432":4257,"70433":15806,"70434":5421,"70435":4835,"70436":15759,"70437":1471,"70438":13280,"70439":17726,"70440":6766,"70441":9728,"70442":8024,"70443":7501,"70444":6398,"70445":4153,"70446":6019,"70447":1134,"70448":18140,"70449":9914,"70450":1103,"70451":11616,"70452":1130,"70453":7935,"70454":3963,"70455":4713,"70456":8029,"70457":2241,"70458":18254,"70459":16700,"70460":16154,"70461":5936,"70462":2793,"70463":8951,"70464":770,"70465":13814,"70466":14211,"70467":17506,"70468":7580,"70469":7269,"70470":4240,"70471":4035,"70472":16326,"70473":3510,"70474":7530,"70475":12748,"70476":10798,"70477":10722,"70478":5775,"70479":11763,"70480":17742,"70481":9374,"70482":18027,"70483":3616,"70484":10847,"70485":3257,"70486":7378,"70487":2322,"70488":10883,"70489":16993,"70490":17086,"70491":9369,"70492":4477,"70493":17763,"70494":3382,"70495":6334,"70496":17708,"70497":15479,"70498":1941,"70499":16044,"70500":9064,"70501":10463,"70502":12809,"70503":9302,"70504":12421,"70505":2437,"70506":14453,"70507":17650,"70508":10335,"70509":9383,"70510":8211,"70511":213,"70512":11021,"70513":15732,"70514":11018,"70515":17161,"70516":12973,"70517":2601,"70518":2611,"70519":7142,"70520":12250,"70521":4676,"70522":6456,"70523":9694,"70524":3347,"70525":5261,"70526":8422,"70527":13402,"70528":442,"70529":6059,"70530":4539,"70531":15671,"70532":1776,"70533":15030,"70534":17999,"70535":17626,"70536":10110,"70537":16244,"70538":10035,"70539":1681,"70540":11887,"70541":325,"70542":4298,"70543":6401,"70544":12481,"70545":7206,"70546":5011,"70547":4070,"70548":5019,"70549":2450,"70550":12780,"70551":18073,"70552":2408,"70553":4452,"70554":17481,"70555":10464,"70556":8102,"70557":16293,"70558":16643,"70559":16035,"70560":11814,"70561":259,"70562":15181,"70563":3761,"70564":11881,"70565":10550,"70566":4596,"70567":12868,"70568":2042,"70569":9,"70570":11885,"70571":180,"70572":9034,"70573":7128,"70574":17273,"70575":8837,"70576":347,"70577":7992,"70578":14761,"70579":9956,"70580":3140,"70581":3770,"70582":12070,"70583":3723,"70584":11033,"70585":16753,"70586":6558,"70587":16108,"70588":9534,"70589":4834,"70590":10529,"70591":10939,"70592":15142,"70593":883,"70594":11519,"70595":15963,"70596":15143,"70597":16189,"70598":11023,"70599":6938,"70600":11420,"70601":310,"70602":1026,"70603":3740,"70604":11743,"70605":13915,"70606":13012,"70607":440,"70608":4107,"70609":3246,"70610":12689,"70611":634,"70612":11796,"70613":9653,"70614":11699,"70615":2546,"70616":17420,"70617":15668,"70618":15841,"70619":9600,"70620":10811,"70621":15125,"70622":17438,"70623":2241,"70624":17015,"70625":8879,"70626":9536,"70627":14219,"70628":4064,"70629":9368,"70630":5622,"70631":17783,"70632":8204,"70633":4386,"70634":14748,"70635":4893,"70636":5915,"70637":13501,"70638":12866,"70639":5312,"70640":17693,"70641":5612,"70642":15732,"70643":3811,"70644":3820,"70645":9602,"70646":12967,"70647":15766,"70648":4096,"70649":11248,"70650":10286,"70651":11941,"70652":12009,"70653":6417,"70654":16846,"70655":2322,"70656":6191,"70657":10498,"70658":13807,"70659":15790,"70660":18345,"70661":13285,"70662":17416,"70663":3867,"70664":9798,"70665":6491,"70666":15812,"70667":17314,"70668":12539,"70669":14543,"70670":7821,"70671":6928,"70672":3275,"70673":16956,"70674":13737,"70675":9000,"70676":17299,"70677":16397,"70678":6694,"70679":14229,"70680":10057,"70681":5121,"70682":6013,"70683":12016,"70684":15021,"70685":16086,"70686":3928,"70687":7482,"70688":5682,"70689":17794,"70690":4917,"70691":5676,"70692":15306,"70693":2575,"70694":11639,"70695":8698,"70696":3424,"70697":5716,"70698":5024,"70699":11424,"70700":3066,"70701":13953,"70702":14699,"70703":4840,"70704":7453,"70705":1316,"70706":16545,"70707":12977,"70708":695,"70709":16822,"70710":18253,"70711":8520,"70712":3871,"70713":1307,"70714":8399,"70715":5240,"70716":18223,"70717":11108,"70718":11112,"70719":14090,"70720":35,"70721":12438,"70722":11110,"70723":778,"70724":13426,"70725":13198,"70726":11560,"70727":5410,"70728":12322,"70729":5072,"70730":4550,"70731":2625,"70732":18088,"70733":4694,"70734":3395,"70735":1816,"70736":5761,"70737":14597,"70738":10929,"70739":1410,"70740":7114,"70741":14581,"70742":1649,"70743":14066,"70744":8275,"70745":15552,"70746":13735,"70747":553,"70748":11481,"70749":8212,"70750":6959,"70751":10186,"70752":11477,"70753":17762,"70754":13703,"70755":1234,"70756":2839,"70757":18266,"70758":15818,"70759":16343,"70760":5613,"70761":14507,"70762":14920,"70763":13229,"70764":6792,"70765":11382,"70766":3110,"70767":10977,"70768":1361,"70769":7378,"70770":2061,"70771":10219,"70772":2014,"70773":7291,"70774":3250,"70775":3059,"70776":17653,"70777":13333,"70778":6410,"70779":14853,"70780":9280,"70781":6225,"70782":5584,"70783":10250,"70784":5219,"70785":13346,"70786":17190,"70787":17751,"70788":11404,"70789":8523,"70790":15114,"70791":16113,"70792":11741,"70793":7560,"70794":8803,"70795":7674,"70796":17803,"70797":5877,"70798":13255,"70799":4434,"70800":3275,"70801":4610,"70802":6033,"70803":17514,"70804":5059,"70805":15146,"70806":10953,"70807":16525,"70808":18270,"70809":17232,"70810":11824,"70811":14001,"70812":17329,"70813":12429,"70814":15119,"70815":11286,"70816":3538,"70817":12815,"70818":10840,"70819":12603,"70820":11182,"70821":7201,"70822":3587,"70823":12195,"70824":17907,"70825":16269,"70826":4378,"70827":8309,"70828":10940,"70829":16723,"70830":14784,"70831":2359,"70832":16986,"70833":5165,"70834":7480,"70835":17319,"70836":9649,"70837":11664,"70838":411,"70839":4796,"70840":7945,"70841":1637,"70842":14407,"70843":3158,"70844":11409,"70845":6988,"70846":9748,"70847":5330,"70848":15198,"70849":6506,"70850":6018,"70851":16871,"70852":8878,"70853":16094,"70854":9706,"70855":11784,"70856":3772,"70857":12268,"70858":1967,"70859":3466,"70860":1645,"70861":4904,"70862":1550,"70863":970,"70864":519,"70865":9175,"70866":7307,"70867":1261,"70868":12267,"70869":4337,"70870":10472,"70871":12110,"70872":8207,"70873":9810,"70874":5864,"70875":6220,"70876":15561,"70877":10055,"70878":15274,"70879":6449,"70880":1514,"70881":10787,"70882":4813,"70883":2901,"70884":7078,"70885":6894,"70886":12078,"70887":5012,"70888":2787,"70889":7680,"70890":15962,"70891":3311,"70892":16757,"70893":12759,"70894":2725,"70895":9065,"70896":2182,"70897":6657,"70898":8184,"70899":9491,"70900":15573,"70901":6390,"70902":8386,"70903":1851,"70904":12572,"70905":17275,"70906":16102,"70907":13116,"70908":13403,"70909":16144,"70910":6797,"70911":12190,"70912":3996,"70913":16780,"70914":1662,"70915":4971,"70916":7679,"70917":4753,"70918":12891,"70919":1029,"70920":7605,"70921":8729,"70922":8245,"70923":1723,"70924":9346,"70925":6681,"70926":16172,"70927":17867,"70928":10681,"70929":12619,"70930":10751,"70931":17365,"70932":136,"70933":6868,"70934":7256,"70935":371,"70936":11539,"70937":12246,"70938":15031,"70939":3517,"70940":6206,"70941":5319,"70942":8174,"70943":16236,"70944":12385,"70945":3686,"70946":10445,"70947":9441,"70948":5148,"70949":14849,"70950":4195,"70951":13069,"70952":17981,"70953":4224,"70954":5308,"70955":2472,"70956":7620,"70957":18211,"70958":15649,"70959":9246,"70960":2506,"70961":9416,"70962":16664,"70963":14211,"70964":4646,"70965":12420,"70966":468,"70967":8715,"70968":8883,"70969":17562,"70970":4058,"70971":17728,"70972":14774,"70973":17327,"70974":9277,"70975":7461,"70976":1127,"70977":18236,"70978":16602,"70979":2108,"70980":2178,"70981":4695,"70982":1781,"70983":2546,"70984":15989,"70985":511,"70986":7926,"70987":14406,"70988":83,"70989":3582,"70990":7632,"70991":6018,"70992":7418,"70993":12156,"70994":11973,"70995":16027,"70996":17294,"70997":6115,"70998":5476,"70999":2333,"71000":449,"71001":9174,"71002":7803,"71003":14950,"71004":11102,"71005":15441,"71006":15534,"71007":4984,"71008":4686,"71009":7242,"71010":1119,"71011":11814,"71012":10988,"71013":3025,"71014":1024,"71015":7968,"71016":7880,"71017":9186,"71018":1366,"71019":10591,"71020":17512,"71021":15113,"71022":12940,"71023":11979,"71024":13407,"71025":99,"71026":15781,"71027":15215,"71028":2744,"71029":9297,"71030":17036,"71031":8208,"71032":3771,"71033":5932,"71034":11880,"71035":4171,"71036":15638,"71037":8919,"71038":350,"71039":11725,"71040":12646,"71041":11212,"71042":6041,"71043":1141,"71044":13174,"71045":533,"71046":10934,"71047":15157,"71048":13034,"71049":3771,"71050":13265,"71051":6187,"71052":10542,"71053":18100,"71054":16115,"71055":759,"71056":12815,"71057":1167,"71058":17269,"71059":12853,"71060":13916,"71061":11849,"71062":17586,"71063":12734,"71064":16146,"71065":2667,"71066":6126,"71067":15695,"71068":5976,"71069":13445,"71070":13001,"71071":143,"71072":11016,"71073":5285,"71074":8006,"71075":7444,"71076":6337,"71077":15788,"71078":7694,"71079":15513,"71080":11169,"71081":16948,"71082":12197,"71083":15594,"71084":2751,"71085":13378,"71086":17919,"71087":12083,"71088":8132,"71089":1410,"71090":4037,"71091":4094,"71092":9734,"71093":1067,"71094":17991,"71095":10312,"71096":13752,"71097":8004,"71098":14641,"71099":14310,"71100":6952,"71101":4456,"71102":15960,"71103":18278,"71104":12081,"71105":17712,"71106":1279,"71107":17204,"71108":14156,"71109":8973,"71110":877,"71111":9924,"71112":15675,"71113":17126,"71114":7634,"71115":2739,"71116":17105,"71117":5400,"71118":16397,"71119":6741,"71120":11570,"71121":9045,"71122":9974,"71123":17298,"71124":17106,"71125":4305,"71126":17693,"71127":16064,"71128":9984,"71129":17778,"71130":12545,"71131":2931,"71132":3854,"71133":2183,"71134":7344,"71135":8816,"71136":3472,"71137":14347,"71138":10550,"71139":186,"71140":6238,"71141":18345,"71142":7289,"71143":10831,"71144":5293,"71145":6090,"71146":12380,"71147":3637,"71148":6714,"71149":11852,"71150":122,"71151":4725,"71152":15302,"71153":12642,"71154":9428,"71155":14344,"71156":10384,"71157":7477,"71158":7960,"71159":3500,"71160":15874,"71161":1254,"71162":12,"71163":1906,"71164":4519,"71165":12276,"71166":2839,"71167":10311,"71168":9966,"71169":11938,"71170":4658,"71171":5916,"71172":12805,"71173":15364,"71174":6775,"71175":4442,"71176":11294,"71177":8109,"71178":16009,"71179":7673,"71180":9513,"71181":1328,"71182":57,"71183":18077,"71184":14723,"71185":13441,"71186":6566,"71187":1974,"71188":9215,"71189":1064,"71190":17250,"71191":5937,"71192":1337,"71193":9004,"71194":10655,"71195":1446,"71196":1187,"71197":13477,"71198":16559,"71199":2243,"71200":10998,"71201":12076,"71202":4802,"71203":14338,"71204":13918,"71205":7652,"71206":13838,"71207":11869,"71208":14131,"71209":10230,"71210":9097,"71211":12850,"71212":4588,"71213":6737,"71214":6823,"71215":8536,"71216":7404,"71217":6878,"71218":1608,"71219":5794,"71220":10371,"71221":3265,"71222":1545,"71223":10583,"71224":1201,"71225":15223,"71226":12323,"71227":8425,"71228":7791,"71229":7666,"71230":12836,"71231":14532,"71232":10882,"71233":16007,"71234":4174,"71235":1239,"71236":17156,"71237":4609,"71238":17863,"71239":6549,"71240":13789,"71241":3529,"71242":1713,"71243":14122,"71244":8566,"71245":13341,"71246":6253,"71247":16757,"71248":16371,"71249":7854,"71250":10660,"71251":1345,"71252":8331,"71253":364,"71254":14998,"71255":10326,"71256":17595,"71257":9372,"71258":9656,"71259":10382,"71260":3500,"71261":14364,"71262":4286,"71263":1148,"71264":12316,"71265":13896,"71266":13436,"71267":9945,"71268":14575,"71269":4311,"71270":16941,"71271":11015,"71272":15950,"71273":13917,"71274":17133,"71275":3538,"71276":1152,"71277":3885,"71278":4792,"71279":14361,"71280":2207,"71281":10014,"71282":6673,"71283":15384,"71284":12294,"71285":11700,"71286":14549,"71287":4001,"71288":6680,"71289":11610,"71290":5319,"71291":763,"71292":12465,"71293":18341,"71294":2494,"71295":903,"71296":10854,"71297":4363,"71298":15718,"71299":252,"71300":4872,"71301":14259,"71302":11538,"71303":3756,"71304":271,"71305":5228,"71306":8156,"71307":14277,"71308":5410,"71309":14240,"71310":8455,"71311":16558,"71312":17874,"71313":2216,"71314":4110,"71315":1626,"71316":5125,"71317":16510,"71318":11955,"71319":14512,"71320":12110,"71321":16307,"71322":16794,"71323":10230,"71324":14048,"71325":11037,"71326":12527,"71327":17388,"71328":8764,"71329":5311,"71330":7514,"71331":7245,"71332":8913,"71333":925,"71334":8402,"71335":2594,"71336":6651,"71337":18358,"71338":3045,"71339":4368,"71340":12227,"71341":13408,"71342":1252,"71343":15419,"71344":9826,"71345":5242,"71346":10871,"71347":1387,"71348":14927,"71349":2885,"71350":9570,"71351":8407,"71352":3468,"71353":2900,"71354":1774,"71355":5701,"71356":4395,"71357":5423,"71358":15025,"71359":15831,"71360":13274,"71361":8929,"71362":7159,"71363":15794,"71364":1539,"71365":9951,"71366":15160,"71367":15818,"71368":13952,"71369":17306,"71370":9403,"71371":6853,"71372":14429,"71373":5697,"71374":12837,"71375":13622,"71376":9498,"71377":16813,"71378":8097,"71379":5987,"71380":11843,"71381":10008,"71382":5464,"71383":7943,"71384":5780,"71385":16914,"71386":12589,"71387":16873,"71388":10062,"71389":3374,"71390":12878,"71391":5784,"71392":14978,"71393":15807,"71394":17988,"71395":6426,"71396":10493,"71397":6829,"71398":9762,"71399":7228,"71400":13974,"71401":11612,"71402":9816,"71403":5682,"71404":11110,"71405":17266,"71406":18012,"71407":3521,"71408":9824,"71409":4480,"71410":11744,"71411":417,"71412":4008,"71413":13691,"71414":4278,"71415":11510,"71416":464,"71417":8175,"71418":4177,"71419":8450,"71420":5863,"71421":18308,"71422":2026,"71423":13239,"71424":5536,"71425":10579,"71426":3133,"71427":419,"71428":4651,"71429":10820,"71430":8921,"71431":13113,"71432":1525,"71433":9389,"71434":13336,"71435":5951,"71436":4220,"71437":5744,"71438":733,"71439":10831,"71440":18340,"71441":11097,"71442":7965,"71443":17762,"71444":3829,"71445":16485,"71446":88,"71447":13137,"71448":16757,"71449":5471,"71450":14042,"71451":4362,"71452":7061,"71453":13079,"71454":13539,"71455":1206,"71456":10649,"71457":4138,"71458":6041,"71459":11871,"71460":289,"71461":14820,"71462":6384,"71463":7251,"71464":4552,"71465":1790,"71466":12511,"71467":4337,"71468":778,"71469":13233,"71470":3090,"71471":11770,"71472":12791,"71473":6870,"71474":11158,"71475":916,"71476":1191,"71477":2237,"71478":5917,"71479":14322,"71480":3086,"71481":17718,"71482":11034,"71483":10806,"71484":5749,"71485":5007,"71486":13708,"71487":11606,"71488":11259,"71489":13641,"71490":7235,"71491":3209,"71492":11014,"71493":11645,"71494":4240,"71495":5465,"71496":16685,"71497":9836,"71498":3491,"71499":11194,"71500":16083,"71501":12282,"71502":8287,"71503":11125,"71504":14762,"71505":534,"71506":12614,"71507":914,"71508":14354,"71509":15487,"71510":2259,"71511":2436,"71512":8472,"71513":4346,"71514":5626,"71515":2549,"71516":2522,"71517":8217,"71518":8370,"71519":16223,"71520":501,"71521":3503,"71522":15373,"71523":13807,"71524":7692,"71525":6574,"71526":2566,"71527":14726,"71528":4866,"71529":15349,"71530":12773,"71531":14952,"71532":3835,"71533":924,"71534":12686,"71535":8353,"71536":11042,"71537":6123,"71538":9665,"71539":9876,"71540":18331,"71541":9333,"71542":10647,"71543":9053,"71544":13697,"71545":12319,"71546":3955,"71547":12880,"71548":10720,"71549":5182,"71550":4307,"71551":5361,"71552":8874,"71553":14178,"71554":15172,"71555":6448,"71556":11511,"71557":13696,"71558":11615,"71559":8779,"71560":637,"71561":11842,"71562":15406,"71563":10455,"71564":15679,"71565":14500,"71566":17383,"71567":4962,"71568":17388,"71569":3406,"71570":790,"71571":9696,"71572":12346,"71573":7604,"71574":10942,"71575":16859,"71576":16067,"71577":10314,"71578":14427,"71579":2924,"71580":6120,"71581":2366,"71582":18104,"71583":6974,"71584":13153,"71585":13383,"71586":6392,"71587":10953,"71588":5581,"71589":16323,"71590":6601,"71591":17080,"71592":10122,"71593":3742,"71594":9491,"71595":13117,"71596":7048,"71597":17835,"71598":7711,"71599":6060,"71600":17215,"71601":10781,"71602":5900,"71603":8278,"71604":10977,"71605":15588,"71606":16631,"71607":10256,"71608":13393,"71609":10163,"71610":2660,"71611":956,"71612":2715,"71613":1379,"71614":15943,"71615":7958,"71616":9009,"71617":4575,"71618":11133,"71619":3312,"71620":7521,"71621":9969,"71622":12953,"71623":11659,"71624":3685,"71625":2627,"71626":9478,"71627":16189,"71628":4895,"71629":40,"71630":7564,"71631":17696,"71632":15969,"71633":17935,"71634":14009,"71635":10675,"71636":8200,"71637":2318,"71638":2991,"71639":16916,"71640":16021,"71641":13336,"71642":6877,"71643":4414,"71644":13117,"71645":3771,"71646":12883,"71647":1126,"71648":14244,"71649":14246,"71650":2074,"71651":8922,"71652":490,"71653":13451,"71654":13015,"71655":9584,"71656":3254,"71657":14683,"71658":1541,"71659":4253,"71660":16432,"71661":11285,"71662":2863,"71663":11863,"71664":1162,"71665":9611,"71666":5312,"71667":613,"71668":14492,"71669":17680,"71670":14942,"71671":15955,"71672":16253,"71673":4772,"71674":819,"71675":11781,"71676":2666,"71677":16058,"71678":8104,"71679":4696,"71680":8763,"71681":17120,"71682":1447,"71683":14788,"71684":16014,"71685":9599,"71686":9465,"71687":8748,"71688":1010,"71689":5692,"71690":1032,"71691":4379,"71692":15059,"71693":15168,"71694":13283,"71695":17685,"71696":12908,"71697":16781,"71698":1413,"71699":16838,"71700":5436,"71701":17726,"71702":4444,"71703":13917,"71704":2979,"71705":16254,"71706":15435,"71707":7226,"71708":8304,"71709":6100,"71710":2894,"71711":14679,"71712":9976,"71713":6214,"71714":12080,"71715":14078,"71716":12330,"71717":17064,"71718":3476,"71719":244,"71720":10655,"71721":12424,"71722":7267,"71723":13569,"71724":8258,"71725":7959,"71726":7170,"71727":9897,"71728":511,"71729":10160,"71730":17966,"71731":6821,"71732":6577,"71733":17655,"71734":9001,"71735":14475,"71736":11598,"71737":14104,"71738":15608,"71739":16846,"71740":5632,"71741":12128,"71742":18195,"71743":2016,"71744":14021,"71745":13099,"71746":3007,"71747":6756,"71748":4541,"71749":4360,"71750":4620,"71751":6278,"71752":8751,"71753":9468,"71754":16087,"71755":14249,"71756":11838,"71757":6174,"71758":14544,"71759":10359,"71760":9017,"71761":9065,"71762":12538,"71763":4856,"71764":7174,"71765":12690,"71766":16406,"71767":6650,"71768":9856,"71769":472,"71770":1681,"71771":2942,"71772":3302,"71773":3715,"71774":12955,"71775":13004,"71776":9085,"71777":12863,"71778":704,"71779":4456,"71780":8247,"71781":10783,"71782":11005,"71783":13576,"71784":15700,"71785":8054,"71786":10952,"71787":1571,"71788":11234,"71789":12577,"71790":5741,"71791":6611,"71792":6028,"71793":5836,"71794":2118,"71795":5692,"71796":15576,"71797":9209,"71798":358,"71799":8523,"71800":15526,"71801":15559,"71802":13342,"71803":11283,"71804":7322,"71805":17829,"71806":9225,"71807":2216,"71808":16358,"71809":8379,"71810":3785,"71811":3007,"71812":15040,"71813":9277,"71814":15013,"71815":9140,"71816":6062,"71817":5533,"71818":1991,"71819":10148,"71820":9827,"71821":10975,"71822":2960,"71823":16242,"71824":9559,"71825":13868,"71826":2842,"71827":13409,"71828":2373,"71829":18237,"71830":15398,"71831":17011,"71832":15114,"71833":190,"71834":18298,"71835":16841,"71836":9444,"71837":9651,"71838":1711,"71839":1743,"71840":13455,"71841":7839,"71842":6510,"71843":207,"71844":16265,"71845":12815,"71846":5647,"71847":2763,"71848":8826,"71849":2601,"71850":13377,"71851":16371,"71852":5305,"71853":505,"71854":5860,"71855":987,"71856":12210,"71857":14350,"71858":14559,"71859":792,"71860":3569,"71861":4151,"71862":2,"71863":7193,"71864":12270,"71865":15405,"71866":18139,"71867":562,"71868":10092,"71869":7726,"71870":3624,"71871":12694,"71872":5172,"71873":3123,"71874":14792,"71875":16499,"71876":10701,"71877":10576,"71878":11362,"71879":605,"71880":2204,"71881":9014,"71882":18136,"71883":12838,"71884":17508,"71885":13314,"71886":16098,"71887":9090,"71888":17378,"71889":5589,"71890":9511,"71891":7855,"71892":5840,"71893":16290,"71894":15109,"71895":13329,"71896":9302,"71897":14805,"71898":10858,"71899":714,"71900":1089,"71901":5505,"71902":17960,"71903":16848,"71904":6535,"71905":7393,"71906":6865,"71907":16487,"71908":8428,"71909":3030,"71910":12629,"71911":3073,"71912":5892,"71913":15482,"71914":5488,"71915":10473,"71916":12394,"71917":7146,"71918":166,"71919":11686,"71920":2447,"71921":3231,"71922":6532,"71923":16426,"71924":11245,"71925":13060,"71926":5485,"71927":1761,"71928":6541,"71929":8560,"71930":11007,"71931":14722,"71932":17504,"71933":2799,"71934":214,"71935":3262,"71936":3965,"71937":14589,"71938":9292,"71939":1212,"71940":11379,"71941":13202,"71942":16792,"71943":12235,"71944":2906,"71945":5137,"71946":4729,"71947":7115,"71948":2796,"71949":9035,"71950":14117,"71951":7246,"71952":15785,"71953":16926,"71954":11893,"71955":1004,"71956":16807,"71957":4131,"71958":10476,"71959":16570,"71960":15182,"71961":12372,"71962":14907,"71963":13187,"71964":13589,"71965":13439,"71966":8381,"71967":5513,"71968":15304,"71969":1601,"71970":609,"71971":10345,"71972":3801,"71973":13286,"71974":7518,"71975":13173,"71976":6836,"71977":12924,"71978":15843,"71979":1722,"71980":3907,"71981":9583,"71982":10814,"71983":5576,"71984":11704,"71985":1057,"71986":16530,"71987":8217,"71988":9813,"71989":13723,"71990":5789,"71991":16117,"71992":11901,"71993":13161,"71994":2328,"71995":8809,"71996":14233,"71997":15469,"71998":916,"71999":11958,"72000":12398,"72001":6999,"72002":5029,"72003":12295,"72004":2650,"72005":4610,"72006":13053,"72007":2861,"72008":5652,"72009":956,"72010":4555,"72011":15384,"72012":13120,"72013":3007,"72014":4143,"72015":13962,"72016":6289,"72017":17005,"72018":760,"72019":15089,"72020":15625,"72021":2014,"72022":15464,"72023":483,"72024":2467,"72025":7513,"72026":15369,"72027":18351,"72028":7809,"72029":14579,"72030":8033,"72031":12762,"72032":870,"72033":13596,"72034":11351,"72035":10630,"72036":3292,"72037":14272,"72038":3311,"72039":13102,"72040":11100,"72041":10297,"72042":1587,"72043":12528,"72044":415,"72045":13698,"72046":3128,"72047":12842,"72048":8543,"72049":1359,"72050":12170,"72051":15750,"72052":1548,"72053":6603,"72054":11498,"72055":15779,"72056":8595,"72057":5976,"72058":3066,"72059":8238,"72060":3787,"72061":8220,"72062":14146,"72063":12404,"72064":89,"72065":8110,"72066":8705,"72067":17538,"72068":5444,"72069":16796,"72070":13750,"72071":8468,"72072":7761,"72073":7418,"72074":5589,"72075":7385,"72076":2398,"72077":13562,"72078":4700,"72079":3339,"72080":2752,"72081":3941,"72082":3547,"72083":7430,"72084":9700,"72085":8946,"72086":10857,"72087":8656,"72088":6612,"72089":10797,"72090":17995,"72091":13972,"72092":15154,"72093":135,"72094":10994,"72095":12617,"72096":7541,"72097":17472,"72098":14153,"72099":10499,"72100":15029,"72101":5809,"72102":13048,"72103":4815,"72104":7928,"72105":17362,"72106":3264,"72107":16885,"72108":2985,"72109":7887,"72110":3397,"72111":493,"72112":8584,"72113":5701,"72114":7131,"72115":10471,"72116":14607,"72117":3295,"72118":1447,"72119":1947,"72120":3721,"72121":6951,"72122":470,"72123":7302,"72124":14833,"72125":2463,"72126":14256,"72127":9105,"72128":9044,"72129":9468,"72130":11872,"72131":8880,"72132":5132,"72133":10405,"72134":986,"72135":2218,"72136":16424,"72137":15229,"72138":17900,"72139":17111,"72140":12052,"72141":5594,"72142":15752,"72143":7761,"72144":18142,"72145":7852,"72146":8305,"72147":17100,"72148":2208,"72149":6915,"72150":1005,"72151":5725,"72152":9590,"72153":6224,"72154":334,"72155":2562,"72156":12562,"72157":14935,"72158":1393,"72159":10570,"72160":8450,"72161":17210,"72162":11685,"72163":15135,"72164":5021,"72165":9940,"72166":4422,"72167":6237,"72168":846,"72169":3302,"72170":16046,"72171":12608,"72172":15887,"72173":3736,"72174":14595,"72175":15081,"72176":17396,"72177":1027,"72178":12293,"72179":7911,"72180":11365,"72181":16680,"72182":13879,"72183":9918,"72184":2243,"72185":5586,"72186":12786,"72187":378,"72188":17566,"72189":734,"72190":12795,"72191":13845,"72192":17854,"72193":6144,"72194":17778,"72195":1181,"72196":4910,"72197":16371,"72198":14131,"72199":10780,"72200":6435,"72201":9882,"72202":2679,"72203":17789,"72204":15843,"72205":138,"72206":6862,"72207":11218,"72208":6129,"72209":14875,"72210":11985,"72211":17852,"72212":3540,"72213":11334,"72214":9773,"72215":12095,"72216":2230,"72217":14871,"72218":14981,"72219":17662,"72220":16165,"72221":17391,"72222":5345,"72223":7498,"72224":16059,"72225":15861,"72226":1943,"72227":17455,"72228":16621,"72229":4262,"72230":10201,"72231":13430,"72232":12479,"72233":10336,"72234":7753,"72235":3924,"72236":5534,"72237":6641,"72238":5181,"72239":16182,"72240":17315,"72241":3069,"72242":12982,"72243":8292,"72244":13173,"72245":4889,"72246":9197,"72247":7548,"72248":17583,"72249":14754,"72250":8841,"72251":11071,"72252":8583,"72253":6253,"72254":4053,"72255":13214,"72256":5214,"72257":13870,"72258":8007,"72259":12828,"72260":4325,"72261":13455,"72262":2213,"72263":14914,"72264":14421,"72265":15200,"72266":12734,"72267":125,"72268":1895,"72269":12215,"72270":17651,"72271":9929,"72272":9093,"72273":4791,"72274":3201,"72275":12306,"72276":11488,"72277":6810,"72278":8804,"72279":17612,"72280":13163,"72281":3081,"72282":2935,"72283":11640,"72284":14313,"72285":18018,"72286":14589,"72287":12831,"72288":12754,"72289":1488,"72290":9324,"72291":997,"72292":137,"72293":13184,"72294":16344,"72295":15674,"72296":15224,"72297":5729,"72298":3552,"72299":12187,"72300":299,"72301":5567,"72302":986,"72303":13445,"72304":8702,"72305":7815,"72306":12523,"72307":4037,"72308":5146,"72309":13046,"72310":15409,"72311":6727,"72312":10377,"72313":14450,"72314":7771,"72315":6760,"72316":4270,"72317":5911,"72318":15100,"72319":8174,"72320":4413,"72321":10837,"72322":16558,"72323":623,"72324":4044,"72325":8894,"72326":11442,"72327":5735,"72328":1799,"72329":2705,"72330":7087,"72331":7917,"72332":13177,"72333":13378,"72334":1945,"72335":11657,"72336":4671,"72337":1111,"72338":12358,"72339":16563,"72340":3063,"72341":9419,"72342":14036,"72343":16824,"72344":15178,"72345":13790,"72346":17042,"72347":1778,"72348":8973,"72349":14731,"72350":5158,"72351":3368,"72352":9408,"72353":17917,"72354":10393,"72355":9901,"72356":13348,"72357":8320,"72358":12694,"72359":5075,"72360":14060,"72361":7426,"72362":10727,"72363":8076,"72364":5755,"72365":12544,"72366":7308,"72367":11258,"72368":14097,"72369":531,"72370":10598,"72371":16725,"72372":10635,"72373":16282,"72374":18149,"72375":15333,"72376":17751,"72377":3685,"72378":8950,"72379":752,"72380":9883,"72381":12015,"72382":12405,"72383":5613,"72384":12990,"72385":10560,"72386":16244,"72387":4262,"72388":9782,"72389":5240,"72390":4082,"72391":1365,"72392":14908,"72393":16634,"72394":14967,"72395":445,"72396":6909,"72397":10253,"72398":5783,"72399":8835,"72400":385,"72401":12979,"72402":10276,"72403":14185,"72404":5856,"72405":11977,"72406":17320,"72407":15117,"72408":8610,"72409":13430,"72410":10100,"72411":11997,"72412":7664,"72413":7109,"72414":18153,"72415":3498,"72416":9219,"72417":3961,"72418":12845,"72419":9724,"72420":234,"72421":16851,"72422":11826,"72423":8610,"72424":10021,"72425":10592,"72426":16945,"72427":12555,"72428":15866,"72429":3247,"72430":15,"72431":12370,"72432":16508,"72433":108,"72434":8211,"72435":1724,"72436":12395,"72437":11724,"72438":13930,"72439":161,"72440":16351,"72441":2176,"72442":9693,"72443":16589,"72444":1642,"72445":3789,"72446":4810,"72447":16139,"72448":17569,"72449":14154,"72450":18142,"72451":14746,"72452":10517,"72453":5454,"72454":10831,"72455":6915,"72456":13907,"72457":5210,"72458":184,"72459":6736,"72460":4940,"72461":383,"72462":6897,"72463":17728,"72464":15722,"72465":12651,"72466":3678,"72467":2583,"72468":9447,"72469":12165,"72470":13525,"72471":6543,"72472":8458,"72473":13749,"72474":4697,"72475":12419,"72476":14620,"72477":2766,"72478":3664,"72479":1031,"72480":179,"72481":3215,"72482":13457,"72483":10058,"72484":9532,"72485":13000,"72486":54,"72487":15752,"72488":13701,"72489":11788,"72490":2639,"72491":10532,"72492":758,"72493":9624,"72494":15316,"72495":7091,"72496":14334,"72497":4681,"72498":16526,"72499":1428,"72500":8098,"72501":9781,"72502":11936,"72503":3403,"72504":9195,"72505":16348,"72506":8996,"72507":7787,"72508":4297,"72509":13066,"72510":13407,"72511":9486,"72512":2772,"72513":6543,"72514":12141,"72515":2599,"72516":5578,"72517":14633,"72518":9679,"72519":14588,"72520":10132,"72521":14680,"72522":8993,"72523":8409,"72524":3702,"72525":5944,"72526":12573,"72527":3845,"72528":7142,"72529":8969,"72530":6217,"72531":16963,"72532":762,"72533":9046,"72534":8721,"72535":2750,"72536":4388,"72537":12317,"72538":226,"72539":5551,"72540":11619,"72541":11484,"72542":15736,"72543":14882,"72544":9069,"72545":8868,"72546":10944,"72547":3618,"72548":12594,"72549":12388,"72550":13346,"72551":2161,"72552":8744,"72553":3141,"72554":9996,"72555":15808,"72556":5374,"72557":1716,"72558":6534,"72559":11008,"72560":5508,"72561":6240,"72562":15749,"72563":908,"72564":6469,"72565":4496,"72566":13241,"72567":2703,"72568":11168,"72569":17690,"72570":11333,"72571":15873,"72572":2083,"72573":17216,"72574":3798,"72575":8620,"72576":3246,"72577":17729,"72578":2690,"72579":1210,"72580":16333,"72581":9197,"72582":4318,"72583":13058,"72584":16387,"72585":3386,"72586":4148,"72587":10232,"72588":4168,"72589":1382,"72590":1880,"72591":1203,"72592":9914,"72593":3673,"72594":13618,"72595":7736,"72596":61,"72597":11335,"72598":6750,"72599":17286,"72600":16600,"72601":17376,"72602":16245,"72603":10330,"72604":15350,"72605":11667,"72606":50,"72607":7581,"72608":5673,"72609":9649,"72610":399,"72611":10681,"72612":10561,"72613":4183,"72614":12930,"72615":472,"72616":5180,"72617":12566,"72618":2100,"72619":1708,"72620":12645,"72621":16424,"72622":17041,"72623":16026,"72624":13033,"72625":15064,"72626":16946,"72627":350,"72628":733,"72629":5146,"72630":9048,"72631":13277,"72632":5738,"72633":10455,"72634":13607,"72635":1942,"72636":8143,"72637":5811,"72638":6489,"72639":6307,"72640":864,"72641":17688,"72642":17831,"72643":14436,"72644":10740,"72645":16561,"72646":1011,"72647":11393,"72648":11796,"72649":5334,"72650":17574,"72651":11685,"72652":18256,"72653":353,"72654":8689,"72655":7865,"72656":17449,"72657":7136,"72658":2214,"72659":11333,"72660":14644,"72661":1406,"72662":11409,"72663":16349,"72664":4262,"72665":16154,"72666":11874,"72667":13017,"72668":10073,"72669":758,"72670":16734,"72671":12501,"72672":15276,"72673":14616,"72674":10737,"72675":1931,"72676":10491,"72677":4247,"72678":7008,"72679":11230,"72680":8047,"72681":17222,"72682":1440,"72683":16840,"72684":14570,"72685":7612,"72686":10368,"72687":1941,"72688":8784,"72689":10497,"72690":6679,"72691":14502,"72692":5962,"72693":12264,"72694":719,"72695":16810,"72696":16170,"72697":9899,"72698":12589,"72699":7275,"72700":12208,"72701":7080,"72702":8713,"72703":8429,"72704":483,"72705":9268,"72706":10927,"72707":6394,"72708":14095,"72709":17381,"72710":12586,"72711":17088,"72712":13052,"72713":12644,"72714":16141,"72715":8387,"72716":4834,"72717":1521,"72718":3511,"72719":337,"72720":10636,"72721":14720,"72722":7944,"72723":16321,"72724":9533,"72725":9024,"72726":13324,"72727":10780,"72728":14439,"72729":14944,"72730":10869,"72731":7534,"72732":17055,"72733":3061,"72734":17381,"72735":7643,"72736":12517,"72737":11110,"72738":11311,"72739":8684,"72740":16151,"72741":477,"72742":5521,"72743":11844,"72744":4447,"72745":8526,"72746":18173,"72747":16288,"72748":15145,"72749":7030,"72750":9428,"72751":6861,"72752":11006,"72753":10900,"72754":4019,"72755":5582,"72756":11146,"72757":2018,"72758":6877,"72759":17588,"72760":1482,"72761":2596,"72762":15441,"72763":5659,"72764":10546,"72765":173,"72766":4607,"72767":3781,"72768":10528,"72769":18246,"72770":8313,"72771":9291,"72772":14675,"72773":7243,"72774":18231,"72775":15724,"72776":3296,"72777":4677,"72778":17628,"72779":7408,"72780":692,"72781":10420,"72782":15293,"72783":14823,"72784":15770,"72785":4120,"72786":13929,"72787":8805,"72788":10087,"72789":16514,"72790":11537,"72791":13026,"72792":9231,"72793":7323,"72794":15866,"72795":13933,"72796":17759,"72797":4289,"72798":11399,"72799":492,"72800":3539,"72801":1022,"72802":2037,"72803":344,"72804":10855,"72805":10129,"72806":12429,"72807":14170,"72808":14244,"72809":2491,"72810":3551,"72811":11515,"72812":17530,"72813":16116,"72814":15454,"72815":10007,"72816":17139,"72817":5164,"72818":11930,"72819":13272,"72820":2903,"72821":2167,"72822":6107,"72823":8552,"72824":785,"72825":15497,"72826":3519,"72827":14876,"72828":4701,"72829":15107,"72830":6291,"72831":10854,"72832":16966,"72833":17427,"72834":5120,"72835":15447,"72836":9521,"72837":10642,"72838":7654,"72839":16529,"72840":13284,"72841":6827,"72842":8762,"72843":8621,"72844":8352,"72845":4531,"72846":7798,"72847":14324,"72848":8280,"72849":4677,"72850":6419,"72851":15218,"72852":16022,"72853":5600,"72854":5596,"72855":1981,"72856":742,"72857":1022,"72858":10627,"72859":3430,"72860":14774,"72861":2153,"72862":5666,"72863":14794,"72864":2563,"72865":12611,"72866":14400,"72867":4233,"72868":6471,"72869":265,"72870":6374,"72871":15766,"72872":7274,"72873":1808,"72874":11876,"72875":2276,"72876":14256,"72877":3112,"72878":7397,"72879":12171,"72880":7761,"72881":3692,"72882":4285,"72883":10162,"72884":4942,"72885":6233,"72886":2335,"72887":12096,"72888":14377,"72889":16555,"72890":230,"72891":9227,"72892":8789,"72893":7283,"72894":9666,"72895":5693,"72896":14114,"72897":10918,"72898":13670,"72899":3856,"72900":11115,"72901":11690,"72902":13483,"72903":10031,"72904":3085,"72905":10863,"72906":14653,"72907":11721,"72908":3037,"72909":652,"72910":3936,"72911":12083,"72912":7140,"72913":3755,"72914":12687,"72915":15926,"72916":16231,"72917":17724,"72918":6287,"72919":4236,"72920":16875,"72921":200,"72922":8470,"72923":3026,"72924":15374,"72925":13423,"72926":1837,"72927":14400,"72928":15913,"72929":16841,"72930":8196,"72931":16545,"72932":4515,"72933":9748,"72934":673,"72935":1135,"72936":10947,"72937":1135,"72938":12878,"72939":4929,"72940":2998,"72941":2754,"72942":14248,"72943":7529,"72944":4035,"72945":11272,"72946":12730,"72947":13155,"72948":1379,"72949":10392,"72950":5609,"72951":4543,"72952":14513,"72953":5258,"72954":18080,"72955":8677,"72956":12718,"72957":3260,"72958":9422,"72959":17442,"72960":7388,"72961":6459,"72962":2957,"72963":4569,"72964":13382,"72965":4449,"72966":3564,"72967":3425,"72968":17619,"72969":12681,"72970":16265,"72971":8655,"72972":3272,"72973":2778,"72974":7955,"72975":3860,"72976":216,"72977":4997,"72978":4842,"72979":450,"72980":5961,"72981":12138,"72982":15194,"72983":11932,"72984":2390,"72985":13496,"72986":5550,"72987":10357,"72988":6271,"72989":12572,"72990":8060,"72991":7552,"72992":16290,"72993":16745,"72994":14878,"72995":6453,"72996":6659,"72997":7718,"72998":9,"72999":15943,"73000":17157,"73001":18318,"73002":2389,"73003":6238,"73004":17585,"73005":6642,"73006":2572,"73007":12634,"73008":17055,"73009":5592,"73010":11513,"73011":4928,"73012":12271,"73013":4380,"73014":1994,"73015":4481,"73016":12436,"73017":388,"73018":3411,"73019":14863,"73020":2386,"73021":3826,"73022":14070,"73023":10930,"73024":9110,"73025":11691,"73026":1224,"73027":8298,"73028":9732,"73029":4826,"73030":1182,"73031":14470,"73032":13837,"73033":2480,"73034":13642,"73035":9990,"73036":11205,"73037":8583,"73038":10747,"73039":2776,"73040":6374,"73041":6386,"73042":14475,"73043":14807,"73044":6851,"73045":5806,"73046":8109,"73047":8807,"73048":6476,"73049":15954,"73050":5740,"73051":1886,"73052":16207,"73053":13026,"73054":2428,"73055":9889,"73056":3925,"73057":13937,"73058":9997,"73059":16381,"73060":13368,"73061":18298,"73062":5915,"73063":8146,"73064":864,"73065":17830,"73066":15002,"73067":14430,"73068":4669,"73069":1337,"73070":12338,"73071":6375,"73072":17832,"73073":9597,"73074":3023,"73075":17939,"73076":11195,"73077":8664,"73078":6635,"73079":15203,"73080":16419,"73081":3320,"73082":9779,"73083":10524,"73084":4155,"73085":18228,"73086":7690,"73087":10188,"73088":11888,"73089":10871,"73090":7739,"73091":17873,"73092":15057,"73093":16148,"73094":7898,"73095":16879,"73096":16163,"73097":12953,"73098":1463,"73099":1464,"73100":14665,"73101":7425,"73102":13389,"73103":7364,"73104":13149,"73105":14526,"73106":12062,"73107":16478,"73108":17718,"73109":13782,"73110":10253,"73111":10586,"73112":5086,"73113":218,"73114":15634,"73115":7902,"73116":4669,"73117":12077,"73118":11363,"73119":4494,"73120":2217,"73121":2620,"73122":13941,"73123":10959,"73124":11884,"73125":4389,"73126":1678,"73127":4751,"73128":5280,"73129":17745,"73130":11929,"73131":3499,"73132":14932,"73133":7651,"73134":16843,"73135":17675,"73136":2113,"73137":10037,"73138":14261,"73139":17004,"73140":8739,"73141":3606,"73142":14599,"73143":4035,"73144":7974,"73145":1811,"73146":2249,"73147":9991,"73148":17548,"73149":15735,"73150":7674,"73151":6964,"73152":15978,"73153":15895,"73154":16746,"73155":9987,"73156":10848,"73157":15328,"73158":13282,"73159":9383,"73160":3467,"73161":114,"73162":9443,"73163":5038,"73164":4231,"73165":11336,"73166":4258,"73167":15272,"73168":2984,"73169":13991,"73170":9512,"73171":14215,"73172":37,"73173":14191,"73174":302,"73175":15269,"73176":3781,"73177":9910,"73178":8353,"73179":16936,"73180":10184,"73181":16247,"73182":5471,"73183":4246,"73184":5438,"73185":16278,"73186":1440,"73187":5206,"73188":3867,"73189":11747,"73190":16953,"73191":504,"73192":4270,"73193":3908,"73194":6261,"73195":12019,"73196":17383,"73197":5787,"73198":164,"73199":7053,"73200":12677,"73201":9137,"73202":17540,"73203":13206,"73204":16526,"73205":17513,"73206":11376,"73207":17185,"73208":13750,"73209":4639,"73210":8812,"73211":12724,"73212":12243,"73213":8326,"73214":3779,"73215":1481,"73216":968,"73217":10599,"73218":4892,"73219":10294,"73220":7709,"73221":11108,"73222":12320,"73223":12622,"73224":10426,"73225":16302,"73226":13394,"73227":3313,"73228":7303,"73229":8139,"73230":699,"73231":5819,"73232":5189,"73233":4741,"73234":12367,"73235":12902,"73236":12499,"73237":12916,"73238":1698,"73239":9993,"73240":16889,"73241":12266,"73242":15386,"73243":6844,"73244":11139,"73245":14201,"73246":8265,"73247":17227,"73248":6890,"73249":3141,"73250":13208,"73251":2553,"73252":10553,"73253":11016,"73254":1384,"73255":9116,"73256":13438,"73257":10980,"73258":9013,"73259":8175,"73260":16157,"73261":5768,"73262":6391,"73263":10699,"73264":13318,"73265":8113,"73266":9175,"73267":9568,"73268":11027,"73269":348,"73270":485,"73271":5757,"73272":7931,"73273":9258,"73274":10559,"73275":16585,"73276":3189,"73277":5544,"73278":13294,"73279":1594,"73280":15234,"73281":11086,"73282":11883,"73283":3429,"73284":8448,"73285":4913,"73286":2422,"73287":3257,"73288":12350,"73289":6033,"73290":3450,"73291":12730,"73292":3541,"73293":13865,"73294":10133,"73295":15067,"73296":16951,"73297":15231,"73298":13312,"73299":3002,"73300":10454,"73301":15802,"73302":12363,"73303":783,"73304":4987,"73305":7766,"73306":5996,"73307":13470,"73308":8332,"73309":6916,"73310":8148,"73311":16300,"73312":8950,"73313":10329,"73314":10977,"73315":6088,"73316":15492,"73317":6865,"73318":3578,"73319":6916,"73320":14464,"73321":9006,"73322":6326,"73323":12810,"73324":4495,"73325":17190,"73326":10478,"73327":9720,"73328":5531,"73329":3437,"73330":902,"73331":5471,"73332":16143,"73333":9775,"73334":244,"73335":12512,"73336":661,"73337":970,"73338":13381,"73339":7432,"73340":12057,"73341":18308,"73342":14031,"73343":8907,"73344":644,"73345":9722,"73346":15445,"73347":6136,"73348":15190,"73349":2523,"73350":15758,"73351":13499,"73352":8563,"73353":116,"73354":12869,"73355":7253,"73356":943,"73357":5444,"73358":17525,"73359":12093,"73360":1446,"73361":15043,"73362":984,"73363":10218,"73364":7899,"73365":8147,"73366":3154,"73367":3867,"73368":18205,"73369":16118,"73370":2359,"73371":14530,"73372":2653,"73373":7173,"73374":7458,"73375":6494,"73376":7046,"73377":7968,"73378":1493,"73379":16314,"73380":9642,"73381":15629,"73382":11310,"73383":5269,"73384":17905,"73385":2524,"73386":2172,"73387":11248,"73388":16649,"73389":16481,"73390":11736,"73391":8838,"73392":13057,"73393":9309,"73394":976,"73395":11623,"73396":10410,"73397":10721,"73398":11636,"73399":12010,"73400":4729,"73401":7654,"73402":17570,"73403":6034,"73404":17753,"73405":346,"73406":4115,"73407":14089,"73408":13998,"73409":14904,"73410":11314,"73411":16912,"73412":15091,"73413":13678,"73414":9087,"73415":16754,"73416":16666,"73417":4121,"73418":14648,"73419":11885,"73420":5582,"73421":13809,"73422":8013,"73423":17672,"73424":14925,"73425":14556,"73426":16263,"73427":7941,"73428":11279,"73429":17215,"73430":13702,"73431":9423,"73432":13561,"73433":18158,"73434":2414,"73435":14185,"73436":15219,"73437":17985,"73438":3630,"73439":3802,"73440":14791,"73441":16002,"73442":5750,"73443":10102,"73444":3311,"73445":11375,"73446":1101,"73447":9979,"73448":15139,"73449":15739,"73450":2691,"73451":7439,"73452":7437,"73453":15797,"73454":15074,"73455":12067,"73456":7417,"73457":3119,"73458":1285,"73459":10037,"73460":16695,"73461":17991,"73462":9252,"73463":13278,"73464":10895,"73465":12116,"73466":5361,"73467":17886,"73468":16371,"73469":2311,"73470":16552,"73471":10022,"73472":8724,"73473":259,"73474":9684,"73475":5183,"73476":7278,"73477":13097,"73478":17367,"73479":5233,"73480":11090,"73481":6444,"73482":2916,"73483":11134,"73484":17227,"73485":17463,"73486":6445,"73487":2845,"73488":7198,"73489":1246,"73490":11689,"73491":5511,"73492":2867,"73493":8502,"73494":13948,"73495":16811,"73496":12338,"73497":11076,"73498":11238,"73499":17446,"73500":3334,"73501":2774,"73502":6350,"73503":27,"73504":5272,"73505":2425,"73506":3127,"73507":4507,"73508":2528,"73509":5974,"73510":15949,"73511":7817,"73512":3628,"73513":15195,"73514":12474,"73515":12926,"73516":17807,"73517":12281,"73518":16553,"73519":6539,"73520":3424,"73521":3789,"73522":2168,"73523":7893,"73524":4516,"73525":11771,"73526":2715,"73527":14051,"73528":696,"73529":14053,"73530":16152,"73531":2344,"73532":2298,"73533":7036,"73534":14569,"73535":9029,"73536":4057,"73537":13005,"73538":3223,"73539":9183,"73540":7846,"73541":14794,"73542":3663,"73543":1634,"73544":16330,"73545":12345,"73546":6000,"73547":5227,"73548":3380,"73549":5101,"73550":9137,"73551":5753,"73552":14850,"73553":623,"73554":496,"73555":13240,"73556":5852,"73557":12481,"73558":12629,"73559":12393,"73560":5961,"73561":10382,"73562":8544,"73563":17859,"73564":6682,"73565":7332,"73566":6810,"73567":9399,"73568":4031,"73569":6909,"73570":8309,"73571":17299,"73572":2659,"73573":17366,"73574":8057,"73575":4434,"73576":9140,"73577":4680,"73578":17679,"73579":3365,"73580":17690,"73581":4872,"73582":14321,"73583":7535,"73584":14096,"73585":10663,"73586":10682,"73587":2069,"73588":7539,"73589":5410,"73590":10160,"73591":9366,"73592":3358,"73593":9116,"73594":31,"73595":6404,"73596":16181,"73597":3885,"73598":12145,"73599":4611,"73600":17437,"73601":15352,"73602":10664,"73603":6664,"73604":8006,"73605":7890,"73606":726,"73607":14345,"73608":15102,"73609":13940,"73610":17757,"73611":11138,"73612":17644,"73613":4260,"73614":5456,"73615":14128,"73616":14805,"73617":3471,"73618":2480,"73619":6841,"73620":1253,"73621":8562,"73622":11513,"73623":15327,"73624":13018,"73625":13657,"73626":13434,"73627":8816,"73628":15429,"73629":1459,"73630":6073,"73631":14930,"73632":13278,"73633":9760,"73634":777,"73635":3903,"73636":5972,"73637":15884,"73638":5061,"73639":15343,"73640":13041,"73641":6722,"73642":14142,"73643":10083,"73644":3094,"73645":12473,"73646":11241,"73647":6755,"73648":9539,"73649":18324,"73650":5159,"73651":17783,"73652":2001,"73653":13275,"73654":5953,"73655":12196,"73656":8125,"73657":3548,"73658":14045,"73659":17777,"73660":3349,"73661":753,"73662":17139,"73663":12576,"73664":18085,"73665":5460,"73666":6752,"73667":6141,"73668":1313,"73669":2373,"73670":770,"73671":8066,"73672":7473,"73673":14788,"73674":7349,"73675":6525,"73676":10244,"73677":7139,"73678":4718,"73679":3047,"73680":17747,"73681":6567,"73682":3054,"73683":5270,"73684":15159,"73685":12863,"73686":3646,"73687":16342,"73688":11779,"73689":16710,"73690":17219,"73691":14651,"73692":8040,"73693":13538,"73694":6573,"73695":8197,"73696":3600,"73697":5978,"73698":3100,"73699":9180,"73700":8530,"73701":7494,"73702":663,"73703":9774,"73704":267,"73705":15200,"73706":16208,"73707":2615,"73708":2777,"73709":13792,"73710":9753,"73711":11056,"73712":10219,"73713":4377,"73714":13219,"73715":16808,"73716":16303,"73717":718,"73718":10354,"73719":1431,"73720":11729,"73721":5099,"73722":15870,"73723":5556,"73724":6351,"73725":10708,"73726":18262,"73727":3564,"73728":10133,"73729":5437,"73730":7405,"73731":17769,"73732":225,"73733":9195,"73734":18310,"73735":7633,"73736":1260,"73737":11621,"73738":8382,"73739":2579,"73740":17272,"73741":5515,"73742":1424,"73743":1412,"73744":7730,"73745":14926,"73746":6356,"73747":4860,"73748":14590,"73749":10056,"73750":15627,"73751":558,"73752":8918,"73753":1132,"73754":17814,"73755":18102,"73756":16573,"73757":8544,"73758":12566,"73759":5215,"73760":2837,"73761":12995,"73762":17290,"73763":7053,"73764":7451,"73765":13125,"73766":17456,"73767":1810,"73768":17974,"73769":11340,"73770":15692,"73771":5028,"73772":9794,"73773":7793,"73774":121,"73775":3541,"73776":4814,"73777":12932,"73778":409,"73779":10632,"73780":4245,"73781":4267,"73782":10020,"73783":14032,"73784":7983,"73785":11936,"73786":484,"73787":11318,"73788":10090,"73789":9980,"73790":10143,"73791":14494,"73792":7249,"73793":10518,"73794":9218,"73795":7925,"73796":13403,"73797":16824,"73798":13787,"73799":12188,"73800":16530,"73801":4096,"73802":3664,"73803":16663,"73804":6177,"73805":14847,"73806":9956},"individ":{"0":1,"1":2,"2":3,"3":4,"4":5,"5":6,"6":7,"7":8,"8":9,"9":10,"10":11,"11":12,"12":13,"13":14,"14":15,"15":16,"16":17,"17":18,"18":19,"19":20,"20":21,"21":22,"22":23,"23":24,"24":25,"25":26,"26":27,"27":28,"28":29,"29":30,"30":31,"31":32,"32":33,"33":34,"34":35,"35":36,"36":37,"37":38,"38":39,"39":40,"40":41,"41":42,"42":43,"43":44,"44":45,"45":46,"46":47,"47":48,"48":49,"49":50,"50":51,"51":52,"52":53,"53":54,"54":55,"55":56,"56":57,"57":58,"58":59,"59":60,"60":61,"61":62,"62":63,"63":64,"64":65,"65":66,"66":67,"67":68,"68":69,"69":70,"70":71,"71":72,"72":73,"73":74,"74":75,"75":76,"76":77,"77":78,"78":79,"79":80,"80":81,"81":82,"82":83,"83":84,"84":85,"85":86,"86":87,"87":88,"88":89,"89":90,"90":91,"91":92,"92":93,"93":94,"94":95,"95":96,"96":97,"97":98,"98":99,"99":100,"100":101,"101":102,"102":103,"103":104,"104":105,"105":106,"106":107,"107":108,"108":109,"109":110,"110":111,"111":112,"112":113,"113":114,"114":115,"115":116,"116":117,"117":118,"118":119,"119":120,"120":121,"121":122,"122":123,"123":124,"124":125,"125":126,"126":127,"127":128,"128":129,"129":130,"130":131,"131":132,"132":133,"133":134,"134":135,"135":136,"136":137,"137":138,"138":139,"139":140,"140":141,"141":142,"142":143,"143":144,"144":145,"145":146,"146":147,"147":148,"148":149,"149":150,"150":151,"151":152,"152":153,"153":154,"154":155,"155":156,"156":157,"157":158,"158":159,"159":160,"160":161,"161":162,"162":163,"163":164,"164":165,"165":166,"166":167,"167":168,"168":169,"169":170,"170":171,"171":172,"172":173,"173":174,"174":175,"175":176,"176":177,"177":178,"178":179,"179":180,"180":181,"181":182,"182":183,"183":184,"184":185,"185":186,"186":187,"187":188,"188":189,"189":190,"190":191,"191":192,"192":193,"193":194,"194":195,"195":196,"196":197,"197":198,"198":199,"199":200,"200":201,"201":202,"202":203,"203":204,"204":205,"205":206,"206":207,"207":208,"208":209,"209":210,"210":211,"211":212,"212":213,"213":214,"214":215,"215":216,"216":217,"217":218,"218":219,"219":220,"220":221,"221":222,"222":223,"223":224,"224":225,"225":226,"226":227,"227":228,"228":229,"229":230,"230":231,"231":232,"232":233,"233":234,"234":235,"235":236,"236":237,"237":238,"238":239,"239":240,"240":241,"241":242,"242":243,"243":244,"244":245,"245":246,"246":247,"247":248,"248":249,"249":250,"250":251,"251":252,"252":253,"253":254,"254":255,"255":256,"256":257,"257":258,"258":259,"259":260,"260":261,"261":262,"262":263,"263":264,"264":265,"265":266,"266":267,"267":268,"268":269,"269":270,"270":271,"271":272,"272":273,"273":274,"274":275,"275":276,"276":277,"277":278,"278":279,"279":280,"280":281,"281":282,"282":283,"283":284,"284":285,"285":286,"286":287,"287":288,"288":289,"289":290,"290":291,"291":292,"292":293,"293":294,"294":295,"295":296,"296":297,"297":298,"298":299,"299":300,"300":301,"301":302,"302":303,"303":304,"304":305,"305":306,"306":307,"307":308,"308":309,"309":310,"310":311,"311":312,"312":313,"313":314,"314":315,"315":316,"316":317,"317":318,"318":319,"319":320,"320":321,"321":322,"322":323,"323":324,"324":325,"325":326,"326":327,"327":328,"328":329,"329":330,"330":331,"331":332,"332":333,"333":334,"334":335,"335":336,"336":337,"337":338,"338":339,"339":340,"340":341,"341":342,"342":343,"343":344,"344":345,"345":346,"346":347,"347":348,"348":349,"349":350,"350":351,"351":352,"352":353,"353":354,"354":355,"355":356,"356":357,"357":358,"358":359,"359":360,"360":361,"361":362,"362":363,"363":364,"364":365,"365":366,"366":367,"367":368,"368":369,"369":370,"370":371,"371":372,"372":373,"373":374,"374":375,"375":376,"376":377,"377":378,"378":379,"379":380,"380":381,"381":382,"382":383,"383":384,"384":385,"385":386,"386":387,"387":388,"388":389,"389":390,"390":391,"391":392,"392":393,"393":394,"394":395,"395":396,"396":397,"397":398,"398":399,"399":400,"400":401,"401":402,"402":403,"403":404,"404":405,"405":406,"406":407,"407":408,"408":409,"409":410,"410":411,"411":412,"412":413,"413":414,"414":415,"415":416,"416":417,"417":418,"418":419,"419":420,"420":421,"421":422,"422":423,"423":424,"424":425,"425":426,"426":427,"427":428,"428":429,"429":430,"430":431,"431":432,"432":433,"433":434,"434":435,"435":436,"436":437,"437":438,"438":439,"439":440,"440":441,"441":442,"442":443,"443":444,"444":445,"445":446,"446":447,"447":448,"448":449,"449":450,"450":451,"451":452,"452":453,"453":454,"454":455,"455":456,"456":457,"457":458,"458":459,"459":460,"460":461,"461":462,"462":463,"463":464,"464":465,"465":466,"466":467,"467":468,"468":469,"469":470,"470":471,"471":472,"472":473,"473":474,"474":475,"475":476,"476":477,"477":478,"478":479,"479":480,"480":481,"481":482,"482":483,"483":484,"484":485,"485":486,"486":487,"487":488,"488":489,"489":490,"490":491,"491":492,"492":493,"493":494,"494":495,"495":496,"496":497,"497":498,"498":499,"499":500,"500":501,"501":502,"502":503,"503":504,"504":505,"505":506,"506":507,"507":508,"508":509,"509":510,"510":511,"511":512,"512":513,"513":514,"514":515,"515":516,"516":517,"517":518,"518":519,"519":520,"520":521,"521":522,"522":523,"523":524,"524":525,"525":526,"526":527,"527":528,"528":529,"529":530,"530":531,"531":532,"532":533,"533":534,"534":535,"535":536,"536":537,"537":538,"538":539,"539":540,"540":541,"541":542,"542":543,"543":544,"544":545,"545":546,"546":547,"547":548,"548":549,"549":550,"550":551,"551":552,"552":553,"553":554,"554":555,"555":556,"556":557,"557":558,"558":559,"559":560,"560":561,"561":562,"562":563,"563":564,"564":565,"565":566,"566":567,"567":568,"568":569,"569":570,"570":571,"571":572,"572":573,"573":574,"574":575,"575":576,"576":577,"577":578,"578":579,"579":580,"580":581,"581":582,"582":583,"583":584,"584":585,"585":586,"586":587,"587":588,"588":589,"589":590,"590":591,"591":592,"592":593,"593":594,"594":595,"595":596,"596":597,"597":598,"598":599,"599":600,"600":601,"601":602,"602":603,"603":604,"604":605,"605":606,"606":607,"607":608,"608":609,"609":610,"610":611,"611":612,"612":613,"613":614,"614":615,"615":616,"616":617,"617":618,"618":619,"619":620,"620":621,"621":622,"622":623,"623":624,"624":625,"625":626,"626":627,"627":628,"628":629,"629":630,"630":631,"631":632,"632":633,"633":634,"634":635,"635":636,"636":637,"637":638,"638":639,"639":640,"640":641,"641":642,"642":643,"643":644,"644":645,"645":646,"646":647,"647":648,"648":649,"649":650,"650":651,"651":652,"652":653,"653":654,"654":655,"655":656,"656":657,"657":658,"658":659,"659":660,"660":661,"661":662,"662":663,"663":664,"664":665,"665":666,"666":667,"667":668,"668":669,"669":670,"670":671,"671":672,"672":673,"673":674,"674":675,"675":676,"676":677,"677":678,"678":679,"679":680,"680":681,"681":682,"682":683,"683":684,"684":685,"685":686,"686":687,"687":688,"688":689,"689":690,"690":691,"691":692,"692":693,"693":694,"694":695,"695":696,"696":697,"697":698,"698":699,"699":700,"700":701,"701":702,"702":703,"703":704,"704":705,"705":706,"706":707,"707":708,"708":709,"709":710,"710":711,"711":712,"712":713,"713":714,"714":715,"715":716,"716":717,"717":718,"718":719,"719":720,"720":721,"721":722,"722":723,"723":724,"724":725,"725":726,"726":727,"727":728,"728":729,"729":730,"730":731,"731":732,"732":733,"733":734,"734":735,"735":736,"736":737,"737":738,"738":739,"739":740,"740":741,"741":742,"742":743,"743":744,"744":745,"745":746,"746":747,"747":748,"748":749,"749":750,"750":751,"751":752,"752":753,"753":754,"754":755,"755":756,"756":757,"757":758,"758":759,"759":760,"760":761,"761":762,"762":763,"763":764,"764":765,"765":766,"766":767,"767":768,"768":769,"769":770,"770":771,"771":772,"772":773,"773":774,"774":775,"775":776,"776":777,"777":778,"778":779,"779":780,"780":781,"781":782,"782":783,"783":784,"784":785,"785":786,"786":787,"787":788,"788":789,"789":790,"790":791,"791":792,"792":793,"793":794,"794":795,"795":796,"796":797,"797":798,"798":799,"799":800,"800":801,"801":802,"802":803,"803":804,"804":805,"805":806,"806":807,"807":808,"808":809,"809":810,"810":811,"811":812,"812":813,"813":814,"814":815,"815":816,"816":817,"817":818,"818":819,"819":820,"820":821,"821":822,"822":823,"823":824,"824":825,"825":826,"826":827,"827":828,"828":829,"829":830,"830":831,"831":832,"832":833,"833":834,"834":835,"835":836,"836":837,"837":838,"838":839,"839":840,"840":841,"841":842,"842":843,"843":844,"844":845,"845":846,"846":847,"847":848,"848":849,"849":850,"850":851,"851":852,"852":853,"853":854,"854":855,"855":856,"856":857,"857":858,"858":859,"859":860,"860":861,"861":862,"862":863,"863":864,"864":865,"865":866,"866":867,"867":868,"868":869,"869":870,"870":871,"871":872,"872":873,"873":874,"874":875,"875":876,"876":877,"877":878,"878":879,"879":880,"880":881,"881":882,"882":883,"883":884,"884":885,"885":886,"886":887,"887":888,"888":889,"889":890,"890":891,"891":892,"892":893,"893":894,"894":895,"895":896,"896":897,"897":898,"898":899,"899":900,"900":901,"901":902,"902":903,"903":904,"904":905,"905":906,"906":907,"907":908,"908":909,"909":910,"910":911,"911":912,"912":913,"913":914,"914":915,"915":916,"916":917,"917":918,"918":919,"919":920,"920":921,"921":922,"922":923,"923":924,"924":925,"925":926,"926":927,"927":928,"928":929,"929":930,"930":931,"931":932,"932":933,"933":934,"934":935,"935":936,"936":937,"937":938,"938":939,"939":940,"940":941,"941":942,"942":943,"943":944,"944":945,"945":946,"946":947,"947":948,"948":949,"949":950,"950":951,"951":952,"952":953,"953":954,"954":955,"955":956,"956":957,"957":958,"958":959,"959":960,"960":961,"961":962,"962":963,"963":964,"964":965,"965":966,"966":967,"967":968,"968":969,"969":970,"970":971,"971":972,"972":973,"973":974,"974":975,"975":976,"976":977,"977":978,"978":979,"979":980,"980":981,"981":982,"982":983,"983":984,"984":985,"985":986,"986":987,"987":988,"988":989,"989":990,"990":991,"991":992,"992":993,"993":994,"994":995,"995":996,"996":997,"997":998,"998":999,"999":1000,"1000":1001,"1001":1002,"1002":1003,"1003":1004,"1004":1005,"1005":1006,"1006":1007,"1007":1008,"1008":1009,"1009":1010,"1010":1011,"1011":1012,"1012":1013,"1013":1014,"1014":1015,"1015":1016,"1016":1017,"1017":1018,"1018":1019,"1019":1020,"1020":1021,"1021":1022,"1022":1023,"1023":1024,"1024":1025,"1025":1026,"1026":1027,"1027":1028,"1028":1029,"1029":1030,"1030":1031,"1031":1032,"1032":1033,"1033":1034,"1034":1035,"1035":1036,"1036":1037,"1037":1038,"1038":1039,"1039":1040,"1040":1041,"1041":1042,"1042":1043,"1043":1044,"1044":1045,"1045":1046,"1046":1047,"1047":1048,"1048":1049,"1049":1050,"1050":1051,"1051":1052,"1052":1053,"1053":1054,"1054":1055,"1055":1056,"1056":1057,"1057":1058,"1058":1059,"1059":1060,"1060":1061,"1061":1062,"1062":1063,"1063":1064,"1064":1065,"1065":1066,"1066":1067,"1067":1068,"1068":1069,"1069":1070,"1070":1071,"1071":1072,"1072":1073,"1073":1074,"1074":1075,"1075":1076,"1076":1077,"1077":1078,"1078":1079,"1079":1080,"1080":1081,"1081":1082,"1082":1083,"1083":1084,"1084":1085,"1085":1086,"1086":1087,"1087":1088,"1088":1089,"1089":1090,"1090":1091,"1091":1092,"1092":1093,"1093":1094,"1094":1095,"1095":1096,"1096":1097,"1097":1098,"1098":1099,"1099":1100,"1100":1101,"1101":1102,"1102":1103,"1103":1104,"1104":1105,"1105":1106,"1106":1107,"1107":1108,"1108":1109,"1109":1110,"1110":1111,"1111":1112,"1112":1113,"1113":1114,"1114":1115,"1115":1116,"1116":1117,"1117":1118,"1118":1119,"1119":1120,"1120":1121,"1121":1122,"1122":1123,"1123":1124,"1124":1125,"1125":1126,"1126":1127,"1127":1128,"1128":1129,"1129":1130,"1130":1131,"1131":1132,"1132":1133,"1133":1134,"1134":1135,"1135":1136,"1136":1137,"1137":1138,"1138":1139,"1139":1140,"1140":1141,"1141":1142,"1142":1143,"1143":1144,"1144":1145,"1145":1146,"1146":1147,"1147":1148,"1148":1149,"1149":1150,"1150":1151,"1151":1152,"1152":1153,"1153":1154,"1154":1155,"1155":1156,"1156":1157,"1157":1158,"1158":1159,"1159":1160,"1160":1161,"1161":1162,"1162":1163,"1163":1164,"1164":1165,"1165":1166,"1166":1167,"1167":1168,"1168":1169,"1169":1170,"1170":1171,"1171":1172,"1172":1173,"1173":1174,"1174":1175,"1175":1176,"1176":1177,"1177":1178,"1178":1179,"1179":1180,"1180":1181,"1181":1182,"1182":1183,"1183":1184,"1184":1185,"1185":1186,"1186":1187,"1187":1188,"1188":1189,"1189":1190,"1190":1191,"1191":1192,"1192":1193,"1193":1194,"1194":1195,"1195":1196,"1196":1197,"1197":1198,"1198":1199,"1199":1200,"1200":1201,"1201":1202,"1202":1203,"1203":1204,"1204":1205,"1205":1206,"1206":1207,"1207":1208,"1208":1209,"1209":1210,"1210":1211,"1211":1212,"1212":1213,"1213":1214,"1214":1215,"1215":1216,"1216":1217,"1217":1218,"1218":1219,"1219":1220,"1220":1221,"1221":1222,"1222":1223,"1223":1224,"1224":1225,"1225":1226,"1226":1227,"1227":1228,"1228":1229,"1229":1230,"1230":1231,"1231":1232,"1232":1233,"1233":1234,"1234":1235,"1235":1236,"1236":1237,"1237":1238,"1238":1239,"1239":1240,"1240":1241,"1241":1242,"1242":1243,"1243":1244,"1244":1245,"1245":1246,"1246":1247,"1247":1248,"1248":1249,"1249":1250,"1250":1251,"1251":1252,"1252":1253,"1253":1254,"1254":1255,"1255":1256,"1256":1257,"1257":1258,"1258":1259,"1259":1260,"1260":1261,"1261":1262,"1262":1263,"1263":1264,"1264":1265,"1265":1266,"1266":1267,"1267":1268,"1268":1269,"1269":1270,"1270":1271,"1271":1272,"1272":1273,"1273":1274,"1274":1275,"1275":1276,"1276":1277,"1277":1278,"1278":1279,"1279":1280,"1280":1281,"1281":1282,"1282":1283,"1283":1284,"1284":1285,"1285":1286,"1286":1287,"1287":1288,"1288":1289,"1289":1290,"1290":1291,"1291":1292,"1292":1293,"1293":1294,"1294":1295,"1295":1296,"1296":1297,"1297":1298,"1298":1299,"1299":1300,"1300":1301,"1301":1302,"1302":1303,"1303":1304,"1304":1305,"1305":1306,"1306":1307,"1307":1308,"1308":1309,"1309":1310,"1310":1311,"1311":1312,"1312":1313,"1313":1314,"1314":1315,"1315":1316,"1316":1317,"1317":1318,"1318":1319,"1319":1320,"1320":1321,"1321":1322,"1322":1323,"1323":1324,"1324":1325,"1325":1326,"1326":1327,"1327":1328,"1328":1329,"1329":1330,"1330":1331,"1331":1332,"1332":1333,"1333":1334,"1334":1335,"1335":1336,"1336":1337,"1337":1338,"1338":1339,"1339":1340,"1340":1341,"1341":1342,"1342":1343,"1343":1344,"1344":1345,"1345":1346,"1346":1347,"1347":1348,"1348":1349,"1349":1350,"1350":1351,"1351":1352,"1352":1353,"1353":1354,"1354":1355,"1355":1356,"1356":1357,"1357":1358,"1358":1359,"1359":1360,"1360":1361,"1361":1362,"1362":1363,"1363":1364,"1364":1365,"1365":1366,"1366":1367,"1367":1368,"1368":1369,"1369":1370,"1370":1371,"1371":1372,"1372":1373,"1373":1374,"1374":1375,"1375":1376,"1376":1377,"1377":1378,"1378":1379,"1379":1380,"1380":1381,"1381":1382,"1382":1383,"1383":1384,"1384":1385,"1385":1386,"1386":1387,"1387":1388,"1388":1389,"1389":1390,"1390":1391,"1391":1392,"1392":1393,"1393":1394,"1394":1395,"1395":1396,"1396":1397,"1397":1398,"1398":1399,"1399":1400,"1400":1401,"1401":1402,"1402":1403,"1403":1404,"1404":1405,"1405":1406,"1406":1407,"1407":1408,"1408":1409,"1409":1410,"1410":1411,"1411":1412,"1412":1413,"1413":1414,"1414":1415,"1415":1416,"1416":1417,"1417":1418,"1418":1419,"1419":1420,"1420":1421,"1421":1422,"1422":1423,"1423":1424,"1424":1425,"1425":1426,"1426":1427,"1427":1428,"1428":1429,"1429":1430,"1430":1431,"1431":1432,"1432":1433,"1433":1434,"1434":1435,"1435":1436,"1436":1437,"1437":1438,"1438":1439,"1439":1440,"1440":1441,"1441":1442,"1442":1443,"1443":1444,"1444":1445,"1445":1446,"1446":1447,"1447":1448,"1448":1449,"1449":1450,"1450":1451,"1451":1452,"1452":1453,"1453":1454,"1454":1455,"1455":1456,"1456":1457,"1457":1458,"1458":1459,"1459":1460,"1460":1461,"1461":1462,"1462":1463,"1463":1464,"1464":1465,"1465":1466,"1466":1467,"1467":1468,"1468":1469,"1469":1470,"1470":1471,"1471":1472,"1472":1473,"1473":1474,"1474":1475,"1475":1476,"1476":1477,"1477":1478,"1478":1479,"1479":1480,"1480":1481,"1481":1482,"1482":1483,"1483":1484,"1484":1485,"1485":1486,"1486":1487,"1487":1488,"1488":1489,"1489":1490,"1490":1491,"1491":1492,"1492":1493,"1493":1494,"1494":1495,"1495":1496,"1496":1497,"1497":1498,"1498":1499,"1499":1500,"1500":1501,"1501":1502,"1502":1503,"1503":1504,"1504":1505,"1505":1506,"1506":1507,"1507":1508,"1508":1509,"1509":1510,"1510":1511,"1511":1512,"1512":1513,"1513":1514,"1514":1515,"1515":1516,"1516":1517,"1517":1518,"1518":1519,"1519":1520,"1520":1521,"1521":1522,"1522":1523,"1523":1524,"1524":1525,"1525":1526,"1526":1527,"1527":1528,"1528":1529,"1529":1530,"1530":1531,"1531":1532,"1532":1533,"1533":1534,"1534":1535,"1535":1536,"1536":1537,"1537":1538,"1538":1539,"1539":1540,"1540":1541,"1541":1542,"1542":1543,"1543":1544,"1544":1545,"1545":1546,"1546":1547,"1547":1548,"1548":1549,"1549":1550,"1550":1551,"1551":1552,"1552":1553,"1553":1554,"1554":1555,"1555":1556,"1556":1557,"1557":1558,"1558":1559,"1559":1560,"1560":1561,"1561":1562,"1562":1563,"1563":1564,"1564":1565,"1565":1566,"1566":1567,"1567":1568,"1568":1569,"1569":1570,"1570":1571,"1571":1572,"1572":1573,"1573":1574,"1574":1575,"1575":1576,"1576":1577,"1577":1578,"1578":1579,"1579":1580,"1580":1581,"1581":1582,"1582":1583,"1583":1584,"1584":1585,"1585":1586,"1586":1587,"1587":1588,"1588":1589,"1589":1590,"1590":1591,"1591":1592,"1592":1593,"1593":1594,"1594":1595,"1595":1596,"1596":1597,"1597":1598,"1598":1599,"1599":1600,"1600":1601,"1601":1602,"1602":1603,"1603":1604,"1604":1605,"1605":1606,"1606":1607,"1607":1608,"1608":1609,"1609":1610,"1610":1611,"1611":1612,"1612":1613,"1613":1614,"1614":1615,"1615":1616,"1616":1617,"1617":1618,"1618":1619,"1619":1620,"1620":1621,"1621":1622,"1622":1623,"1623":1624,"1624":1625,"1625":1626,"1626":1627,"1627":1628,"1628":1629,"1629":1630,"1630":1631,"1631":1632,"1632":1633,"1633":1634,"1634":1635,"1635":1636,"1636":1637,"1637":1638,"1638":1639,"1639":1640,"1640":1641,"1641":1642,"1642":1643,"1643":1644,"1644":1645,"1645":1646,"1646":1647,"1647":1648,"1648":1649,"1649":1650,"1650":1651,"1651":1652,"1652":1653,"1653":1654,"1654":1655,"1655":1656,"1656":1657,"1657":1658,"1658":1659,"1659":1660,"1660":1661,"1661":1662,"1662":1663,"1663":1664,"1664":1665,"1665":1666,"1666":1667,"1667":1668,"1668":1669,"1669":1670,"1670":1671,"1671":1672,"1672":1673,"1673":1674,"1674":1675,"1675":1676,"1676":1677,"1677":1678,"1678":1679,"1679":1680,"1680":1681,"1681":1682,"1682":1683,"1683":1684,"1684":1685,"1685":1686,"1686":1687,"1687":1688,"1688":1689,"1689":1690,"1690":1691,"1691":1692,"1692":1693,"1693":1694,"1694":1695,"1695":1696,"1696":1697,"1697":1698,"1698":1699,"1699":1700,"1700":1701,"1701":1702,"1702":1703,"1703":1704,"1704":1705,"1705":1706,"1706":1707,"1707":1708,"1708":1709,"1709":1710,"1710":1711,"1711":1712,"1712":1713,"1713":1714,"1714":1715,"1715":1716,"1716":1717,"1717":1718,"1718":1719,"1719":1720,"1720":1721,"1721":1722,"1722":1723,"1723":1724,"1724":1725,"1725":1726,"1726":1727,"1727":1728,"1728":1729,"1729":1730,"1730":1731,"1731":1732,"1732":1733,"1733":1734,"1734":1735,"1735":1736,"1736":1737,"1737":1738,"1738":1739,"1739":1740,"1740":1741,"1741":1742,"1742":1743,"1743":1744,"1744":1745,"1745":1746,"1746":1747,"1747":1748,"1748":1749,"1749":1750,"1750":1751,"1751":1752,"1752":1753,"1753":1754,"1754":1755,"1755":1756,"1756":1757,"1757":1758,"1758":1759,"1759":1760,"1760":1761,"1761":1762,"1762":1763,"1763":1764,"1764":1765,"1765":1766,"1766":1767,"1767":1768,"1768":1769,"1769":1770,"1770":1771,"1771":1772,"1772":1773,"1773":1774,"1774":1775,"1775":1776,"1776":1777,"1777":1778,"1778":1779,"1779":1780,"1780":1781,"1781":1782,"1782":1783,"1783":1784,"1784":1785,"1785":1786,"1786":1787,"1787":1788,"1788":1789,"1789":1790,"1790":1791,"1791":1792,"1792":1793,"1793":1794,"1794":1795,"1795":1796,"1796":1797,"1797":1798,"1798":1799,"1799":1800,"1800":1801,"1801":1802,"1802":1803,"1803":1804,"1804":1805,"1805":1806,"1806":1807,"1807":1808,"1808":1809,"1809":1810,"1810":1811,"1811":1812,"1812":1813,"1813":1814,"1814":1815,"1815":1816,"1816":1817,"1817":1818,"1818":1819,"1819":1820,"1820":1821,"1821":1822,"1822":1823,"1823":1824,"1824":1825,"1825":1826,"1826":1827,"1827":1828,"1828":1829,"1829":1830,"1830":1831,"1831":1832,"1832":1833,"1833":1834,"1834":1835,"1835":1836,"1836":1837,"1837":1838,"1838":1839,"1839":1840,"1840":1841,"1841":1842,"1842":1843,"1843":1844,"1844":1845,"1845":1846,"1846":1847,"1847":1848,"1848":1849,"1849":1850,"1850":1851,"1851":1852,"1852":1853,"1853":1854,"1854":1855,"1855":1856,"1856":1857,"1857":1858,"1858":1859,"1859":1860,"1860":1861,"1861":1862,"1862":1863,"1863":1864,"1864":1865,"1865":1866,"1866":1867,"1867":1868,"1868":1869,"1869":1870,"1870":1871,"1871":1872,"1872":1873,"1873":1874,"1874":1875,"1875":1876,"1876":1877,"1877":1878,"1878":1879,"1879":1880,"1880":1881,"1881":1882,"1882":1883,"1883":1884,"1884":1885,"1885":1886,"1886":1887,"1887":1888,"1888":1889,"1889":1890,"1890":1891,"1891":1892,"1892":1893,"1893":1894,"1894":1895,"1895":1896,"1896":1897,"1897":1898,"1898":1899,"1899":1900,"1900":1901,"1901":1902,"1902":1903,"1903":1904,"1904":1905,"1905":1906,"1906":1907,"1907":1908,"1908":1909,"1909":1910,"1910":1911,"1911":1912,"1912":1913,"1913":1914,"1914":1915,"1915":1916,"1916":1917,"1917":1918,"1918":1919,"1919":1920,"1920":1921,"1921":1922,"1922":1923,"1923":1924,"1924":1925,"1925":1926,"1926":1927,"1927":1928,"1928":1929,"1929":1930,"1930":1931,"1931":1932,"1932":1933,"1933":1934,"1934":1935,"1935":1936,"1936":1937,"1937":1938,"1938":1939,"1939":1940,"1940":1941,"1941":1942,"1942":1943,"1943":1944,"1944":1945,"1945":1946,"1946":1947,"1947":1948,"1948":1949,"1949":1950,"1950":1951,"1951":1952,"1952":1953,"1953":1954,"1954":1955,"1955":1956,"1956":1957,"1957":1958,"1958":1959,"1959":1960,"1960":1961,"1961":1962,"1962":1963,"1963":1964,"1964":1965,"1965":1966,"1966":1967,"1967":1968,"1968":1969,"1969":1970,"1970":1971,"1971":1972,"1972":1973,"1973":1974,"1974":1975,"1975":1976,"1976":1977,"1977":1978,"1978":1979,"1979":1980,"1980":1981,"1981":1982,"1982":1983,"1983":1984,"1984":1985,"1985":1986,"1986":1987,"1987":1988,"1988":1989,"1989":1990,"1990":1991,"1991":1992,"1992":1993,"1993":1994,"1994":1995,"1995":1996,"1996":1997,"1997":1998,"1998":1999,"1999":2000,"2000":2001,"2001":2002,"2002":2003,"2003":2004,"2004":2005,"2005":2006,"2006":2007,"2007":2008,"2008":2009,"2009":2010,"2010":2011,"2011":2012,"2012":2013,"2013":2014,"2014":2015,"2015":2016,"2016":2017,"2017":2018,"2018":2019,"2019":2020,"2020":2021,"2021":2022,"2022":2023,"2023":2024,"2024":2025,"2025":2026,"2026":2027,"2027":2028,"2028":2029,"2029":2030,"2030":2031,"2031":2032,"2032":2033,"2033":2034,"2034":2035,"2035":2036,"2036":2037,"2037":2038,"2038":2039,"2039":2040,"2040":2041,"2041":2042,"2042":2043,"2043":2044,"2044":2045,"2045":2046,"2046":2047,"2047":2048,"2048":2049,"2049":2050,"2050":2051,"2051":2052,"2052":2053,"2053":2054,"2054":2055,"2055":2056,"2056":2057,"2057":2058,"2058":2059,"2059":2060,"2060":2061,"2061":2062,"2062":2063,"2063":2064,"2064":2065,"2065":2066,"2066":2067,"2067":2068,"2068":2069,"2069":2070,"2070":2071,"2071":2072,"2072":2073,"2073":2074,"2074":2075,"2075":2076,"2076":2077,"2077":2078,"2078":2079,"2079":2080,"2080":2081,"2081":2082,"2082":2083,"2083":2084,"2084":2085,"2085":2086,"2086":2087,"2087":2088,"2088":2089,"2089":2090,"2090":2091,"2091":2092,"2092":2093,"2093":2094,"2094":2095,"2095":2096,"2096":2097,"2097":2098,"2098":2099,"2099":2100,"2100":2101,"2101":2102,"2102":2103,"2103":2104,"2104":2105,"2105":2106,"2106":2107,"2107":2108,"2108":2109,"2109":2110,"2110":2111,"2111":2112,"2112":2113,"2113":2114,"2114":2115,"2115":2116,"2116":2117,"2117":2118,"2118":2119,"2119":2120,"2120":2121,"2121":2122,"2122":2123,"2123":2124,"2124":2125,"2125":2126,"2126":2127,"2127":2128,"2128":2129,"2129":2130,"2130":2131,"2131":2132,"2132":2133,"2133":2134,"2134":2135,"2135":2136,"2136":2137,"2137":2138,"2138":2139,"2139":2140,"2140":2141,"2141":2142,"2142":2143,"2143":2144,"2144":2145,"2145":2146,"2146":2147,"2147":2148,"2148":2149,"2149":2150,"2150":2151,"2151":2152,"2152":2153,"2153":2154,"2154":2155,"2155":2156,"2156":2157,"2157":2158,"2158":2159,"2159":2160,"2160":2161,"2161":2162,"2162":2163,"2163":2164,"2164":2165,"2165":2166,"2166":2167,"2167":2168,"2168":2169,"2169":2170,"2170":2171,"2171":2172,"2172":2173,"2173":2174,"2174":2175,"2175":2176,"2176":2177,"2177":2178,"2178":2179,"2179":2180,"2180":2181,"2181":2182,"2182":2183,"2183":2184,"2184":2185,"2185":2186,"2186":2187,"2187":2188,"2188":2189,"2189":2190,"2190":2191,"2191":2192,"2192":2193,"2193":2194,"2194":2195,"2195":2196,"2196":2197,"2197":2198,"2198":2199,"2199":2200,"2200":2201,"2201":2202,"2202":2203,"2203":2204,"2204":2205,"2205":2206,"2206":2207,"2207":2208,"2208":2209,"2209":2210,"2210":2211,"2211":2212,"2212":2213,"2213":2214,"2214":2215,"2215":2216,"2216":2217,"2217":2218,"2218":2219,"2219":2220,"2220":2221,"2221":2222,"2222":2223,"2223":2224,"2224":2225,"2225":2226,"2226":2227,"2227":2228,"2228":2229,"2229":2230,"2230":2231,"2231":2232,"2232":2233,"2233":2234,"2234":2235,"2235":2236,"2236":2237,"2237":2238,"2238":2239,"2239":2240,"2240":2241,"2241":2242,"2242":2243,"2243":2244,"2244":2245,"2245":2246,"2246":2247,"2247":2248,"2248":2249,"2249":2250,"2250":2251,"2251":2252,"2252":2253,"2253":2254,"2254":2255,"2255":2256,"2256":2257,"2257":2258,"2258":2259,"2259":2260,"2260":2261,"2261":2262,"2262":2263,"2263":2264,"2264":2265,"2265":2266,"2266":2267,"2267":2268,"2268":2269,"2269":2270,"2270":2271,"2271":2272,"2272":2273,"2273":2274,"2274":2275,"2275":2276,"2276":2277,"2277":2278,"2278":2279,"2279":2280,"2280":2281,"2281":2282,"2282":2283,"2283":2284,"2284":2285,"2285":2286,"2286":2287,"2287":2288,"2288":2289,"2289":2290,"2290":2291,"2291":2292,"2292":2293,"2293":2294,"2294":2295,"2295":2296,"2296":2297,"2297":2298,"2298":2299,"2299":2300,"2300":2301,"2301":2302,"2302":2303,"2303":2304,"2304":2305,"2305":2306,"2306":2307,"2307":2308,"2308":2309,"2309":2310,"2310":2311,"2311":2312,"2312":2313,"2313":2314,"2314":2315,"2315":2316,"2316":2317,"2317":2318,"2318":2319,"2319":2320,"2320":2321,"2321":2322,"2322":2323,"2323":2324,"2324":2325,"2325":2326,"2326":2327,"2327":2328,"2328":2329,"2329":2330,"2330":2331,"2331":2332,"2332":2333,"2333":2334,"2334":2335,"2335":2336,"2336":2337,"2337":2338,"2338":2339,"2339":2340,"2340":2341,"2341":2342,"2342":2343,"2343":2344,"2344":2345,"2345":2346,"2346":2347,"2347":2348,"2348":2349,"2349":2350,"2350":2351,"2351":2352,"2352":2353,"2353":2354,"2354":2355,"2355":2356,"2356":2357,"2357":2358,"2358":2359,"2359":2360,"2360":2361,"2361":2362,"2362":2363,"2363":2364,"2364":2365,"2365":2366,"2366":2367,"2367":2368,"2368":2369,"2369":2370,"2370":2371,"2371":2372,"2372":2373,"2373":2374,"2374":2375,"2375":2376,"2376":2377,"2377":2378,"2378":2379,"2379":2380,"2380":2381,"2381":2382,"2382":2383,"2383":2384,"2384":2385,"2385":2386,"2386":2387,"2387":2388,"2388":2389,"2389":2390,"2390":2391,"2391":2392,"2392":2393,"2393":2394,"2394":2395,"2395":2396,"2396":2397,"2397":2398,"2398":2399,"2399":2400,"2400":2401,"2401":2402,"2402":2403,"2403":2404,"2404":2405,"2405":2406,"2406":2407,"2407":2408,"2408":2409,"2409":2410,"2410":2411,"2411":2412,"2412":2413,"2413":2414,"2414":2415,"2415":2416,"2416":2417,"2417":2418,"2418":2419,"2419":2420,"2420":2421,"2421":2422,"2422":2423,"2423":2424,"2424":2425,"2425":2426,"2426":2427,"2427":2428,"2428":2429,"2429":2430,"2430":2431,"2431":2432,"2432":2433,"2433":2434,"2434":2435,"2435":2436,"2436":2437,"2437":2438,"2438":2439,"2439":2440,"2440":2441,"2441":2442,"2442":2443,"2443":2444,"2444":2445,"2445":2446,"2446":2447,"2447":2448,"2448":2449,"2449":2450,"2450":2451,"2451":2452,"2452":2453,"2453":2454,"2454":2455,"2455":2456,"2456":2457,"2457":2458,"2458":2459,"2459":2460,"2460":2461,"2461":2462,"2462":2463,"2463":2464,"2464":2465,"2465":2466,"2466":2467,"2467":2468,"2468":2469,"2469":2470,"2470":2471,"2471":2472,"2472":2473,"2473":2474,"2474":2475,"2475":2476,"2476":2477,"2477":2478,"2478":2479,"2479":2480,"2480":2481,"2481":2482,"2482":2483,"2483":2484,"2484":2485,"2485":2486,"2486":2487,"2487":2488,"2488":2489,"2489":2490,"2490":2491,"2491":2492,"2492":2493,"2493":2494,"2494":2495,"2495":2496,"2496":2497,"2497":2498,"2498":2499,"2499":2500,"2500":2501,"2501":2502,"2502":2503,"2503":2504,"2504":2505,"2505":2506,"2506":2507,"2507":2508,"2508":2509,"2509":2510,"2510":2511,"2511":2512,"2512":2513,"2513":2514,"2514":2515,"2515":2516,"2516":2517,"2517":2518,"2518":2519,"2519":2520,"2520":2521,"2521":2522,"2522":2523,"2523":2524,"2524":2525,"2525":2526,"2526":2527,"2527":2528,"2528":2529,"2529":2530,"2530":2531,"2531":2532,"2532":2533,"2533":2534,"2534":2535,"2535":2536,"2536":2537,"2537":2538,"2538":2539,"2539":2540,"2540":2541,"2541":2542,"2542":2543,"2543":2544,"2544":2545,"2545":2546,"2546":2547,"2547":2548,"2548":2549,"2549":2550,"2550":2551,"2551":2552,"2552":2553,"2553":2554,"2554":2555,"2555":2556,"2556":2557,"2557":2558,"2558":2559,"2559":2560,"2560":2561,"2561":2562,"2562":2563,"2563":2564,"2564":2565,"2565":2566,"2566":2567,"2567":2568,"2568":2569,"2569":2570,"2570":2571,"2571":2572,"2572":2573,"2573":2574,"2574":2575,"2575":2576,"2576":2577,"2577":2578,"2578":2579,"2579":2580,"2580":2581,"2581":2582,"2582":2583,"2583":2584,"2584":2585,"2585":2586,"2586":2587,"2587":2588,"2588":2589,"2589":2590,"2590":2591,"2591":2592,"2592":2593,"2593":2594,"2594":2595,"2595":2596,"2596":2597,"2597":2598,"2598":2599,"2599":2600,"2600":2601,"2601":2602,"2602":2603,"2603":2604,"2604":2605,"2605":2606,"2606":2607,"2607":2608,"2608":2609,"2609":2610,"2610":2611,"2611":2612,"2612":2613,"2613":2614,"2614":2615,"2615":2616,"2616":2617,"2617":2618,"2618":2619,"2619":2620,"2620":2621,"2621":2622,"2622":2623,"2623":2624,"2624":2625,"2625":2626,"2626":2627,"2627":2628,"2628":2629,"2629":2630,"2630":2631,"2631":2632,"2632":2633,"2633":2634,"2634":2635,"2635":2636,"2636":2637,"2637":2638,"2638":2639,"2639":2640,"2640":2641,"2641":2642,"2642":2643,"2643":2644,"2644":2645,"2645":2646,"2646":2647,"2647":2648,"2648":2649,"2649":2650,"2650":2651,"2651":2652,"2652":2653,"2653":2654,"2654":2655,"2655":2656,"2656":2657,"2657":2658,"2658":2659,"2659":2660,"2660":2661,"2661":2662,"2662":2663,"2663":2664,"2664":2665,"2665":2666,"2666":2667,"2667":2668,"2668":2669,"2669":2670,"2670":2671,"2671":2672,"2672":2673,"2673":2674,"2674":2675,"2675":2676,"2676":2677,"2677":2678,"2678":2679,"2679":2680,"2680":2681,"2681":2682,"2682":2683,"2683":2684,"2684":2685,"2685":2686,"2686":2687,"2687":2688,"2688":2689,"2689":2690,"2690":2691,"2691":2692,"2692":2693,"2693":2694,"2694":2695,"2695":2696,"2696":2697,"2697":2698,"2698":2699,"2699":2700,"2700":2701,"2701":2702,"2702":2703,"2703":2704,"2704":2705,"2705":2706,"2706":2707,"2707":2708,"2708":2709,"2709":2710,"2710":2711,"2711":2712,"2712":2713,"2713":2714,"2714":2715,"2715":2716,"2716":2717,"2717":2718,"2718":2719,"2719":2720,"2720":2721,"2721":2722,"2722":2723,"2723":2724,"2724":2725,"2725":2726,"2726":2727,"2727":2728,"2728":2729,"2729":2730,"2730":2731,"2731":2732,"2732":2733,"2733":2734,"2734":2735,"2735":2736,"2736":2737,"2737":2738,"2738":2739,"2739":2740,"2740":2741,"2741":2742,"2742":2743,"2743":2744,"2744":2745,"2745":2746,"2746":2747,"2747":2748,"2748":2749,"2749":2750,"2750":2751,"2751":2752,"2752":2753,"2753":2754,"2754":2755,"2755":2756,"2756":2757,"2757":2758,"2758":2759,"2759":2760,"2760":2761,"2761":2762,"2762":2763,"2763":2764,"2764":2765,"2765":2766,"2766":2767,"2767":2768,"2768":2769,"2769":2770,"2770":2771,"2771":2772,"2772":2773,"2773":2774,"2774":2775,"2775":2776,"2776":2777,"2777":2778,"2778":2779,"2779":2780,"2780":2781,"2781":2782,"2782":2783,"2783":2784,"2784":2785,"2785":2786,"2786":2787,"2787":2788,"2788":2789,"2789":2790,"2790":2791,"2791":2792,"2792":2793,"2793":2794,"2794":2795,"2795":2796,"2796":2797,"2797":2798,"2798":2799,"2799":2800,"2800":2801,"2801":2802,"2802":2803,"2803":2804,"2804":2805,"2805":2806,"2806":2807,"2807":2808,"2808":2809,"2809":2810,"2810":2811,"2811":2812,"2812":2813,"2813":2814,"2814":2815,"2815":2816,"2816":2817,"2817":2818,"2818":2819,"2819":2820,"2820":2821,"2821":2822,"2822":2823,"2823":2824,"2824":2825,"2825":2826,"2826":2827,"2827":2828,"2828":2829,"2829":2830,"2830":2831,"2831":2832,"2832":2833,"2833":2834,"2834":2835,"2835":2836,"2836":2837,"2837":2838,"2838":2839,"2839":2840,"2840":2841,"2841":2842,"2842":2843,"2843":2844,"2844":2845,"2845":2846,"2846":2847,"2847":2848,"2848":2849,"2849":2850,"2850":2851,"2851":2852,"2852":2853,"2853":2854,"2854":2855,"2855":2856,"2856":2857,"2857":2858,"2858":2859,"2859":2860,"2860":2861,"2861":2862,"2862":2863,"2863":2864,"2864":2865,"2865":2866,"2866":2867,"2867":2868,"2868":2869,"2869":2870,"2870":2871,"2871":2872,"2872":2873,"2873":2874,"2874":2875,"2875":2876,"2876":2877,"2877":2878,"2878":2879,"2879":2880,"2880":2881,"2881":2882,"2882":2883,"2883":2884,"2884":2885,"2885":2886,"2886":2887,"2887":2888,"2888":2889,"2889":2890,"2890":2891,"2891":2892,"2892":2893,"2893":2894,"2894":2895,"2895":2896,"2896":2897,"2897":2898,"2898":2899,"2899":2900,"2900":2901,"2901":2902,"2902":2903,"2903":2904,"2904":2905,"2905":2906,"2906":2907,"2907":2908,"2908":2909,"2909":2910,"2910":2911,"2911":2912,"2912":2913,"2913":2914,"2914":2915,"2915":2916,"2916":2917,"2917":2918,"2918":2919,"2919":2920,"2920":2921,"2921":2922,"2922":2923,"2923":2924,"2924":2925,"2925":2926,"2926":2927,"2927":2928,"2928":2929,"2929":2930,"2930":2931,"2931":2932,"2932":2933,"2933":2934,"2934":2935,"2935":2936,"2936":2937,"2937":2938,"2938":2939,"2939":2940,"2940":2941,"2941":2942,"2942":2943,"2943":2944,"2944":2945,"2945":2946,"2946":2947,"2947":2948,"2948":2949,"2949":2950,"2950":2951,"2951":2952,"2952":2953,"2953":2954,"2954":2955,"2955":2956,"2956":2957,"2957":2958,"2958":2959,"2959":2960,"2960":2961,"2961":2962,"2962":2963,"2963":2964,"2964":2965,"2965":2966,"2966":2967,"2967":2968,"2968":2969,"2969":2970,"2970":2971,"2971":2972,"2972":2973,"2973":2974,"2974":2975,"2975":2976,"2976":2977,"2977":2978,"2978":2979,"2979":2980,"2980":2981,"2981":2982,"2982":2983,"2983":2984,"2984":2985,"2985":2986,"2986":2987,"2987":2988,"2988":2989,"2989":2990,"2990":2991,"2991":2992,"2992":2993,"2993":2994,"2994":2995,"2995":2996,"2996":2997,"2997":2998,"2998":2999,"2999":3000,"3000":3001,"3001":3002,"3002":3003,"3003":3004,"3004":3005,"3005":3006,"3006":3007,"3007":3008,"3008":3009,"3009":3010,"3010":3011,"3011":3012,"3012":3013,"3013":3014,"3014":3015,"3015":3016,"3016":3017,"3017":3018,"3018":3019,"3019":3020,"3020":3021,"3021":3022,"3022":3023,"3023":3024,"3024":3025,"3025":3026,"3026":3027,"3027":3028,"3028":3029,"3029":3030,"3030":3031,"3031":3032,"3032":3033,"3033":3034,"3034":3035,"3035":3036,"3036":3037,"3037":3038,"3038":3039,"3039":3040,"3040":3041,"3041":3042,"3042":3043,"3043":3044,"3044":3045,"3045":3046,"3046":3047,"3047":3048,"3048":3049,"3049":3050,"3050":3051,"3051":3052,"3052":3053,"3053":3054,"3054":3055,"3055":3056,"3056":3057,"3057":3058,"3058":3059,"3059":3060,"3060":3061,"3061":3062,"3062":3063,"3063":3064,"3064":3065,"3065":3066,"3066":3067,"3067":3068,"3068":3069,"3069":3070,"3070":3071,"3071":3072,"3072":3073,"3073":3074,"3074":3075,"3075":3076,"3076":3077,"3077":3078,"3078":3079,"3079":3080,"3080":3081,"3081":3082,"3082":3083,"3083":3084,"3084":3085,"3085":3086,"3086":3087,"3087":3088,"3088":3089,"3089":3090,"3090":3091,"3091":3092,"3092":3093,"3093":3094,"3094":3095,"3095":3096,"3096":3097,"3097":3098,"3098":3099,"3099":3100,"3100":3101,"3101":3102,"3102":3103,"3103":3104,"3104":3105,"3105":3106,"3106":3107,"3107":3108,"3108":3109,"3109":3110,"3110":3111,"3111":3112,"3112":3113,"3113":3114,"3114":3115,"3115":3116,"3116":3117,"3117":3118,"3118":3119,"3119":3120,"3120":3121,"3121":3122,"3122":3123,"3123":3124,"3124":3125,"3125":3126,"3126":3127,"3127":3128,"3128":3129,"3129":3130,"3130":3131,"3131":3132,"3132":3133,"3133":3134,"3134":3135,"3135":3136,"3136":3137,"3137":3138,"3138":3139,"3139":3140,"3140":3141,"3141":3142,"3142":3143,"3143":3144,"3144":3145,"3145":3146,"3146":3147,"3147":3148,"3148":3149,"3149":3150,"3150":3151,"3151":3152,"3152":3153,"3153":3154,"3154":3155,"3155":3156,"3156":3157,"3157":3158,"3158":3159,"3159":3160,"3160":3161,"3161":3162,"3162":3163,"3163":3164,"3164":3165,"3165":3166,"3166":3167,"3167":3168,"3168":3169,"3169":3170,"3170":3171,"3171":3172,"3172":3173,"3173":3174,"3174":3175,"3175":3176,"3176":3177,"3177":3178,"3178":3179,"3179":3180,"3180":3181,"3181":3182,"3182":3183,"3183":3184,"3184":3185,"3185":3186,"3186":3187,"3187":3188,"3188":3189,"3189":3190,"3190":3191,"3191":3192,"3192":3193,"3193":3194,"3194":3195,"3195":3196,"3196":3197,"3197":3198,"3198":3199,"3199":3200,"3200":3201,"3201":3202,"3202":3203,"3203":3204,"3204":3205,"3205":3206,"3206":3207,"3207":3208,"3208":3209,"3209":3210,"3210":3211,"3211":3212,"3212":3213,"3213":3214,"3214":3215,"3215":3216,"3216":3217,"3217":3218,"3218":3219,"3219":3220,"3220":3221,"3221":3222,"3222":3223,"3223":3224,"3224":3225,"3225":3226,"3226":3227,"3227":3228,"3228":3229,"3229":3230,"3230":3231,"3231":3232,"3232":3233,"3233":3234,"3234":3235,"3235":3236,"3236":3237,"3237":3238,"3238":3239,"3239":3240,"3240":3241,"3241":3242,"3242":3243,"3243":3244,"3244":3245,"3245":3246,"3246":3247,"3247":3248,"3248":3249,"3249":3250,"3250":3251,"3251":3252,"3252":3253,"3253":3254,"3254":3255,"3255":3256,"3256":3257,"3257":3258,"3258":3259,"3259":3260,"3260":3261,"3261":3262,"3262":3263,"3263":3264,"3264":3265,"3265":3266,"3266":3267,"3267":3268,"3268":3269,"3269":3270,"3270":3271,"3271":3272,"3272":3273,"3273":3274,"3274":3275,"3275":3276,"3276":3277,"3277":3278,"3278":3279,"3279":3280,"3280":3281,"3281":3282,"3282":3283,"3283":3284,"3284":3285,"3285":3286,"3286":3287,"3287":3288,"3288":3289,"3289":3290,"3290":3291,"3291":3292,"3292":3293,"3293":3294,"3294":3295,"3295":3296,"3296":3297,"3297":3298,"3298":3299,"3299":3300,"3300":3301,"3301":3302,"3302":3303,"3303":3304,"3304":3305,"3305":3306,"3306":3307,"3307":3308,"3308":3309,"3309":3310,"3310":3311,"3311":3312,"3312":3313,"3313":3314,"3314":3315,"3315":3316,"3316":3317,"3317":3318,"3318":3319,"3319":3320,"3320":3321,"3321":3322,"3322":3323,"3323":3324,"3324":3325,"3325":3326,"3326":3327,"3327":3328,"3328":3329,"3329":3330,"3330":3331,"3331":3332,"3332":3333,"3333":3334,"3334":3335,"3335":3336,"3336":3337,"3337":3338,"3338":3339,"3339":3340,"3340":3341,"3341":3342,"3342":3343,"3343":3344,"3344":3345,"3345":3346,"3346":3347,"3347":3348,"3348":3349,"3349":3350,"3350":3351,"3351":3352,"3352":3353,"3353":3354,"3354":3355,"3355":3356,"3356":3357,"3357":3358,"3358":3359,"3359":3360,"3360":3361,"3361":3362,"3362":3363,"3363":3364,"3364":3365,"3365":3366,"3366":3367,"3367":3368,"3368":3369,"3369":3370,"3370":3371,"3371":3372,"3372":3373,"3373":3374,"3374":3375,"3375":3376,"3376":3377,"3377":3378,"3378":3379,"3379":3380,"3380":3381,"3381":3382,"3382":3383,"3383":3384,"3384":3385,"3385":3386,"3386":3387,"3387":3388,"3388":3389,"3389":3390,"3390":3391,"3391":3392,"3392":3393,"3393":3394,"3394":3395,"3395":3396,"3396":3397,"3397":3398,"3398":3399,"3399":3400,"3400":3401,"3401":3402,"3402":3403,"3403":3404,"3404":3405,"3405":3406,"3406":3407,"3407":3408,"3408":3409,"3409":3410,"3410":3411,"3411":3412,"3412":3413,"3413":3414,"3414":3415,"3415":3416,"3416":3417,"3417":3418,"3418":3419,"3419":3420,"3420":3421,"3421":3422,"3422":3423,"3423":3424,"3424":3425,"3425":3426,"3426":3427,"3427":3428,"3428":3429,"3429":3430,"3430":3431,"3431":3432,"3432":3433,"3433":3434,"3434":3435,"3435":3436,"3436":3437,"3437":3438,"3438":3439,"3439":3440,"3440":3441,"3441":3442,"3442":3443,"3443":3444,"3444":3445,"3445":3446,"3446":3447,"3447":3448,"3448":3449,"3449":3450,"3450":3451,"3451":3452,"3452":3453,"3453":3454,"3454":3455,"3455":3456,"3456":3457,"3457":3458,"3458":3459,"3459":3460,"3460":3461,"3461":3462,"3462":3463,"3463":3464,"3464":3465,"3465":3466,"3466":3467,"3467":3468,"3468":3469,"3469":3470,"3470":3471,"3471":3472,"3472":3473,"3473":3474,"3474":3475,"3475":3476,"3476":3477,"3477":3478,"3478":3479,"3479":3480,"3480":3481,"3481":3482,"3482":3483,"3483":3484,"3484":3485,"3485":3486,"3486":3487,"3487":3488,"3488":3489,"3489":3490,"3490":3491,"3491":3492,"3492":3493,"3493":3494,"3494":3495,"3495":3496,"3496":3497,"3497":3498,"3498":3499,"3499":3500,"3500":3501,"3501":3502,"3502":3503,"3503":3504,"3504":3505,"3505":3506,"3506":3507,"3507":3508,"3508":3509,"3509":3510,"3510":3511,"3511":3512,"3512":3513,"3513":3514,"3514":3515,"3515":3516,"3516":3517,"3517":3518,"3518":3519,"3519":3520,"3520":3521,"3521":3522,"3522":3523,"3523":3524,"3524":3525,"3525":3526,"3526":3527,"3527":3528,"3528":3529,"3529":3530,"3530":3531,"3531":3532,"3532":3533,"3533":3534,"3534":3535,"3535":3536,"3536":3537,"3537":3538,"3538":3539,"3539":3540,"3540":3541,"3541":3542,"3542":3543,"3543":3544,"3544":3545,"3545":3546,"3546":3547,"3547":3548,"3548":3549,"3549":3550,"3550":3551,"3551":3552,"3552":3553,"3553":3554,"3554":3555,"3555":3556,"3556":3557,"3557":3558,"3558":3559,"3559":3560,"3560":3561,"3561":3562,"3562":3563,"3563":3564,"3564":3565,"3565":3566,"3566":3567,"3567":3568,"3568":3569,"3569":3570,"3570":3571,"3571":3572,"3572":3573,"3573":3574,"3574":3575,"3575":3576,"3576":3577,"3577":3578,"3578":3579,"3579":3580,"3580":3581,"3581":3582,"3582":3583,"3583":3584,"3584":3585,"3585":3586,"3586":3587,"3587":3588,"3588":3589,"3589":3590,"3590":3591,"3591":3592,"3592":3593,"3593":3594,"3594":3595,"3595":3596,"3596":3597,"3597":3598,"3598":3599,"3599":3600,"3600":3601,"3601":3602,"3602":3603,"3603":3604,"3604":3605,"3605":3606,"3606":3607,"3607":3608,"3608":3609,"3609":3610,"3610":3611,"3611":3612,"3612":3613,"3613":3614,"3614":3615,"3615":3616,"3616":3617,"3617":3618,"3618":3619,"3619":3620,"3620":3621,"3621":3622,"3622":3623,"3623":3624,"3624":3625,"3625":3626,"3626":3627,"3627":3628,"3628":3629,"3629":3630,"3630":3631,"3631":3632,"3632":3633,"3633":3634,"3634":3635,"3635":3636,"3636":3637,"3637":3638,"3638":3639,"3639":3640,"3640":3641,"3641":3642,"3642":3643,"3643":3644,"3644":3645,"3645":3646,"3646":3647,"3647":3648,"3648":3649,"3649":3650,"3650":3651,"3651":3652,"3652":3653,"3653":3654,"3654":3655,"3655":3656,"3656":3657,"3657":3658,"3658":3659,"3659":3660,"3660":3661,"3661":3662,"3662":3663,"3663":3664,"3664":3665,"3665":3666,"3666":3667,"3667":3668,"3668":3669,"3669":3670,"3670":3671,"3671":3672,"3672":3673,"3673":3674,"3674":3675,"3675":3676,"3676":3677,"3677":3678,"3678":3679,"3679":3680,"3680":3681,"3681":3682,"3682":3683,"3683":3684,"3684":3685,"3685":3686,"3686":3687,"3687":3688,"3688":3689,"3689":3690,"3690":3691,"3691":3692,"3692":3693,"3693":3694,"3694":3695,"3695":3696,"3696":3697,"3697":3698,"3698":3699,"3699":3700,"3700":3701,"3701":3702,"3702":3703,"3703":3704,"3704":3705,"3705":3706,"3706":3707,"3707":3708,"3708":3709,"3709":3710,"3710":3711,"3711":3712,"3712":3713,"3713":3714,"3714":3715,"3715":3716,"3716":3717,"3717":3718,"3718":3719,"3719":3720,"3720":3721,"3721":3722,"3722":3723,"3723":3724,"3724":3725,"3725":3726,"3726":3727,"3727":3728,"3728":3729,"3729":3730,"3730":3731,"3731":3732,"3732":3733,"3733":3734,"3734":3735,"3735":3736,"3736":3737,"3737":3738,"3738":3739,"3739":3740,"3740":3741,"3741":3742,"3742":3743,"3743":3744,"3744":3745,"3745":3746,"3746":3747,"3747":3748,"3748":3749,"3749":3750,"3750":3751,"3751":3752,"3752":3753,"3753":3754,"3754":3755,"3755":3756,"3756":3757,"3757":3758,"3758":3759,"3759":3760,"3760":3761,"3761":3762,"3762":3763,"3763":3764,"3764":3765,"3765":3766,"3766":3767,"3767":3768,"3768":3769,"3769":3770,"3770":3771,"3771":3772,"3772":3773,"3773":3774,"3774":3775,"3775":3776,"3776":3777,"3777":3778,"3778":3779,"3779":3780,"3780":3781,"3781":3782,"3782":3783,"3783":3784,"3784":3785,"3785":3786,"3786":3787,"3787":3788,"3788":3789,"3789":3790,"3790":3791,"3791":3792,"3792":3793,"3793":3794,"3794":3795,"3795":3796,"3796":3797,"3797":3798,"3798":3799,"3799":3800,"3800":3801,"3801":3802,"3802":3803,"3803":3804,"3804":3805,"3805":3806,"3806":3807,"3807":3808,"3808":3809,"3809":3810,"3810":3811,"3811":3812,"3812":3813,"3813":3814,"3814":3815,"3815":3816,"3816":3817,"3817":3818,"3818":3819,"3819":3820,"3820":3821,"3821":3822,"3822":3823,"3823":3824,"3824":3825,"3825":3826,"3826":3827,"3827":3828,"3828":3829,"3829":3830,"3830":3831,"3831":3832,"3832":3833,"3833":3834,"3834":3835,"3835":3836,"3836":3837,"3837":3838,"3838":3839,"3839":3840,"3840":3841,"3841":3842,"3842":3843,"3843":3844,"3844":3845,"3845":3846,"3846":3847,"3847":3848,"3848":3849,"3849":3850,"3850":3851,"3851":3852,"3852":3853,"3853":3854,"3854":3855,"3855":3856,"3856":3857,"3857":3858,"3858":3859,"3859":3860,"3860":3861,"3861":3862,"3862":3863,"3863":3864,"3864":3865,"3865":3866,"3866":3867,"3867":3868,"3868":3869,"3869":3870,"3870":3871,"3871":3872,"3872":3873,"3873":3874,"3874":3875,"3875":3876,"3876":3877,"3877":3878,"3878":3879,"3879":3880,"3880":3881,"3881":3882,"3882":3883,"3883":3884,"3884":3885,"3885":3886,"3886":3887,"3887":3888,"3888":3889,"3889":3890,"3890":3891,"3891":3892,"3892":3893,"3893":3894,"3894":3895,"3895":3896,"3896":3897,"3897":3898,"3898":3899,"3899":3900,"3900":3901,"3901":3902,"3902":3903,"3903":3904,"3904":3905,"3905":3906,"3906":3907,"3907":3908,"3908":3909,"3909":3910,"3910":3911,"3911":3912,"3912":3913,"3913":3914,"3914":3915,"3915":3916,"3916":3917,"3917":3918,"3918":3919,"3919":3920,"3920":3921,"3921":3922,"3922":3923,"3923":3924,"3924":3925,"3925":3926,"3926":3927,"3927":3928,"3928":3929,"3929":3930,"3930":3931,"3931":3932,"3932":3933,"3933":3934,"3934":3935,"3935":3936,"3936":3937,"3937":3938,"3938":3939,"3939":3940,"3940":3941,"3941":3942,"3942":3943,"3943":3944,"3944":3945,"3945":3946,"3946":3947,"3947":3948,"3948":3949,"3949":3950,"3950":3951,"3951":3952,"3952":3953,"3953":3954,"3954":3955,"3955":3956,"3956":3957,"3957":3958,"3958":3959,"3959":3960,"3960":3961,"3961":3962,"3962":3963,"3963":3964,"3964":3965,"3965":3966,"3966":3967,"3967":3968,"3968":3969,"3969":3970,"3970":3971,"3971":3972,"3972":3973,"3973":3974,"3974":3975,"3975":3976,"3976":3977,"3977":3978,"3978":3979,"3979":3980,"3980":3981,"3981":3982,"3982":3983,"3983":3984,"3984":3985,"3985":3986,"3986":3987,"3987":3988,"3988":3989,"3989":3990,"3990":3991,"3991":3992,"3992":3993,"3993":3994,"3994":3995,"3995":3996,"3996":3997,"3997":3998,"3998":3999,"3999":4000,"4000":4001,"4001":4002,"4002":4003,"4003":4004,"4004":4005,"4005":4006,"4006":4007,"4007":4008,"4008":4009,"4009":4010,"4010":4011,"4011":4012,"4012":4013,"4013":4014,"4014":4015,"4015":4016,"4016":4017,"4017":4018,"4018":4019,"4019":4020,"4020":4021,"4021":4022,"4022":4023,"4023":4024,"4024":4025,"4025":4026,"4026":4027,"4027":4028,"4028":4029,"4029":4030,"4030":4031,"4031":4032,"4032":4033,"4033":4034,"4034":4035,"4035":4036,"4036":4037,"4037":4038,"4038":4039,"4039":4040,"4040":4041,"4041":4042,"4042":4043,"4043":4044,"4044":4045,"4045":4046,"4046":4047,"4047":4048,"4048":4049,"4049":4050,"4050":4051,"4051":4052,"4052":4053,"4053":4054,"4054":4055,"4055":4056,"4056":4057,"4057":4058,"4058":4059,"4059":4060,"4060":4061,"4061":4062,"4062":4063,"4063":4064,"4064":4065,"4065":4066,"4066":4067,"4067":4068,"4068":4069,"4069":4070,"4070":4071,"4071":4072,"4072":4073,"4073":4074,"4074":4075,"4075":4076,"4076":4077,"4077":4078,"4078":4079,"4079":4080,"4080":4081,"4081":4082,"4082":4083,"4083":4084,"4084":4085,"4085":4086,"4086":4087,"4087":4088,"4088":4089,"4089":4090,"4090":4091,"4091":4092,"4092":4093,"4093":4094,"4094":4095,"4095":4096,"4096":4097,"4097":4098,"4098":4099,"4099":4100,"4100":4101,"4101":4102,"4102":4103,"4103":4104,"4104":4105,"4105":4106,"4106":4107,"4107":4108,"4108":4109,"4109":4110,"4110":4111,"4111":4112,"4112":4113,"4113":4114,"4114":4115,"4115":4116,"4116":4117,"4117":4118,"4118":4119,"4119":4120,"4120":4121,"4121":4122,"4122":4123,"4123":4124,"4124":4125,"4125":4126,"4126":4127,"4127":4128,"4128":4129,"4129":4130,"4130":4131,"4131":4132,"4132":4133,"4133":4134,"4134":4135,"4135":4136,"4136":4137,"4137":4138,"4138":4139,"4139":4140,"4140":4141,"4141":4142,"4142":4143,"4143":4144,"4144":4145,"4145":4146,"4146":4147,"4147":4148,"4148":4149,"4149":4150,"4150":4151,"4151":4152,"4152":4153,"4153":4154,"4154":4155,"4155":4156,"4156":4157,"4157":4158,"4158":4159,"4159":4160,"4160":4161,"4161":4162,"4162":4163,"4163":4164,"4164":4165,"4165":4166,"4166":4167,"4167":4168,"4168":4169,"4169":4170,"4170":4171,"4171":4172,"4172":4173,"4173":4174,"4174":4175,"4175":4176,"4176":4177,"4177":4178,"4178":4179,"4179":4180,"4180":4181,"4181":4182,"4182":4183,"4183":4184,"4184":4185,"4185":4186,"4186":4187,"4187":4188,"4188":4189,"4189":4190,"4190":4191,"4191":4192,"4192":4193,"4193":4194,"4194":4195,"4195":4196,"4196":4197,"4197":4198,"4198":4199,"4199":4200,"4200":4201,"4201":4202,"4202":4203,"4203":4204,"4204":4205,"4205":4206,"4206":4207,"4207":4208,"4208":4209,"4209":4210,"4210":4211,"4211":4212,"4212":4213,"4213":4214,"4214":4215,"4215":4216,"4216":4217,"4217":4218,"4218":4219,"4219":4220,"4220":4221,"4221":4222,"4222":4223,"4223":4224,"4224":4225,"4225":4226,"4226":4227,"4227":4228,"4228":4229,"4229":4230,"4230":4231,"4231":4232,"4232":4233,"4233":4234,"4234":4235,"4235":4236,"4236":4237,"4237":4238,"4238":4239,"4239":4240,"4240":4241,"4241":4242,"4242":4243,"4243":4244,"4244":4245,"4245":4246,"4246":4247,"4247":4248,"4248":4249,"4249":4250,"4250":4251,"4251":4252,"4252":4253,"4253":4254,"4254":4255,"4255":4256,"4256":4257,"4257":4258,"4258":4259,"4259":4260,"4260":4261,"4261":4262,"4262":4263,"4263":4264,"4264":4265,"4265":4266,"4266":4267,"4267":4268,"4268":4269,"4269":4270,"4270":4271,"4271":4272,"4272":4273,"4273":4274,"4274":4275,"4275":4276,"4276":4277,"4277":4278,"4278":4279,"4279":4280,"4280":4281,"4281":4282,"4282":4283,"4283":4284,"4284":4285,"4285":4286,"4286":4287,"4287":4288,"4288":4289,"4289":4290,"4290":4291,"4291":4292,"4292":4293,"4293":4294,"4294":4295,"4295":4296,"4296":4297,"4297":4298,"4298":4299,"4299":4300,"4300":4301,"4301":4302,"4302":4303,"4303":4304,"4304":4305,"4305":4306,"4306":4307,"4307":4308,"4308":4309,"4309":4310,"4310":4311,"4311":4312,"4312":4313,"4313":4314,"4314":4315,"4315":4316,"4316":4317,"4317":4318,"4318":4319,"4319":4320,"4320":4321,"4321":4322,"4322":4323,"4323":4324,"4324":4325,"4325":4326,"4326":4327,"4327":4328,"4328":4329,"4329":4330,"4330":4331,"4331":4332,"4332":4333,"4333":4334,"4334":4335,"4335":4336,"4336":4337,"4337":4338,"4338":4339,"4339":4340,"4340":4341,"4341":4342,"4342":4343,"4343":4344,"4344":4345,"4345":4346,"4346":4347,"4347":4348,"4348":4349,"4349":4350,"4350":4351,"4351":4352,"4352":4353,"4353":4354,"4354":4355,"4355":4356,"4356":4357,"4357":4358,"4358":4359,"4359":4360,"4360":4361,"4361":4362,"4362":4363,"4363":4364,"4364":4365,"4365":4366,"4366":4367,"4367":4368,"4368":4369,"4369":4370,"4370":4371,"4371":4372,"4372":4373,"4373":4374,"4374":4375,"4375":4376,"4376":4377,"4377":4378,"4378":4379,"4379":4380,"4380":4381,"4381":4382,"4382":4383,"4383":4384,"4384":4385,"4385":4386,"4386":4387,"4387":4388,"4388":4389,"4389":4390,"4390":4391,"4391":4392,"4392":4393,"4393":4394,"4394":4395,"4395":4396,"4396":4397,"4397":4398,"4398":4399,"4399":4400,"4400":4401,"4401":4402,"4402":4403,"4403":4404,"4404":4405,"4405":4406,"4406":4407,"4407":4408,"4408":4409,"4409":4410,"4410":4411,"4411":4412,"4412":4413,"4413":4414,"4414":4415,"4415":4416,"4416":4417,"4417":4418,"4418":4419,"4419":4420,"4420":4421,"4421":4422,"4422":4423,"4423":4424,"4424":4425,"4425":4426,"4426":4427,"4427":4428,"4428":4429,"4429":4430,"4430":4431,"4431":4432,"4432":4433,"4433":4434,"4434":4435,"4435":4436,"4436":4437,"4437":4438,"4438":4439,"4439":4440,"4440":4441,"4441":4442,"4442":4443,"4443":4444,"4444":4445,"4445":4446,"4446":4447,"4447":4448,"4448":4449,"4449":4450,"4450":4451,"4451":4452,"4452":4453,"4453":4454,"4454":4455,"4455":4456,"4456":4457,"4457":4458,"4458":4459,"4459":4460,"4460":4461,"4461":4462,"4462":4463,"4463":4464,"4464":4465,"4465":4466,"4466":4467,"4467":4468,"4468":4469,"4469":4470,"4470":4471,"4471":4472,"4472":4473,"4473":4474,"4474":4475,"4475":4476,"4476":4477,"4477":4478,"4478":4479,"4479":4480,"4480":4481,"4481":4482,"4482":4483,"4483":4484,"4484":4485,"4485":4486,"4486":4487,"4487":4488,"4488":4489,"4489":4490,"4490":4491,"4491":4492,"4492":4493,"4493":4494,"4494":4495,"4495":4496,"4496":4497,"4497":4498,"4498":4499,"4499":4500,"4500":4501,"4501":4502,"4502":4503,"4503":4504,"4504":4505,"4505":4506,"4506":4507,"4507":4508,"4508":4509,"4509":4510,"4510":4511,"4511":4512,"4512":4513,"4513":4514,"4514":4515,"4515":4516,"4516":4517,"4517":4518,"4518":4519,"4519":4520,"4520":4521,"4521":4522,"4522":4523,"4523":4524,"4524":4525,"4525":4526,"4526":4527,"4527":4528,"4528":4529,"4529":4530,"4530":4531,"4531":4532,"4532":4533,"4533":4534,"4534":4535,"4535":4536,"4536":4537,"4537":4538,"4538":4539,"4539":4540,"4540":4541,"4541":4542,"4542":4543,"4543":4544,"4544":4545,"4545":4546,"4546":4547,"4547":4548,"4548":4549,"4549":4550,"4550":4551,"4551":4552,"4552":4553,"4553":4554,"4554":4555,"4555":4556,"4556":4557,"4557":4558,"4558":4559,"4559":4560,"4560":4561,"4561":4562,"4562":4563,"4563":4564,"4564":4565,"4565":4566,"4566":4567,"4567":4568,"4568":4569,"4569":4570,"4570":4571,"4571":4572,"4572":4573,"4573":4574,"4574":4575,"4575":4576,"4576":4577,"4577":4578,"4578":4579,"4579":4580,"4580":4581,"4581":4582,"4582":4583,"4583":4584,"4584":4585,"4585":4586,"4586":4587,"4587":4588,"4588":4589,"4589":4590,"4590":4591,"4591":4592,"4592":4593,"4593":4594,"4594":4595,"4595":4596,"4596":4597,"4597":4598,"4598":4599,"4599":4600,"4600":4601,"4601":4602,"4602":4603,"4603":4604,"4604":4605,"4605":4606,"4606":4607,"4607":4608,"4608":4609,"4609":4610,"4610":4611,"4611":4612,"4612":4613,"4613":4614,"4614":4615,"4615":4616,"4616":4617,"4617":4618,"4618":4619,"4619":4620,"4620":4621,"4621":4622,"4622":4623,"4623":4624,"4624":4625,"4625":4626,"4626":4627,"4627":4628,"4628":4629,"4629":4630,"4630":4631,"4631":4632,"4632":4633,"4633":4634,"4634":4635,"4635":4636,"4636":4637,"4637":4638,"4638":4639,"4639":4640,"4640":4641,"4641":4642,"4642":4643,"4643":4644,"4644":4645,"4645":4646,"4646":4647,"4647":4648,"4648":4649,"4649":4650,"4650":4651,"4651":4652,"4652":4653,"4653":4654,"4654":4655,"4655":4656,"4656":4657,"4657":4658,"4658":4659,"4659":4660,"4660":4661,"4661":4662,"4662":4663,"4663":4664,"4664":4665,"4665":4666,"4666":4667,"4667":4668,"4668":4669,"4669":4670,"4670":4671,"4671":4672,"4672":4673,"4673":4674,"4674":4675,"4675":4676,"4676":4677,"4677":4678,"4678":4679,"4679":4680,"4680":4681,"4681":4682,"4682":4683,"4683":4684,"4684":4685,"4685":4686,"4686":4687,"4687":4688,"4688":4689,"4689":4690,"4690":4691,"4691":4692,"4692":4693,"4693":4694,"4694":4695,"4695":4696,"4696":4697,"4697":4698,"4698":4699,"4699":4700,"4700":4701,"4701":4702,"4702":4703,"4703":4704,"4704":4705,"4705":4706,"4706":4707,"4707":4708,"4708":4709,"4709":4710,"4710":4711,"4711":4712,"4712":4713,"4713":4714,"4714":4715,"4715":4716,"4716":4717,"4717":4718,"4718":4719,"4719":4720,"4720":4721,"4721":4722,"4722":4723,"4723":4724,"4724":4725,"4725":4726,"4726":4727,"4727":4728,"4728":4729,"4729":4730,"4730":4731,"4731":4732,"4732":4733,"4733":4734,"4734":4735,"4735":4736,"4736":4737,"4737":4738,"4738":4739,"4739":4740,"4740":4741,"4741":4742,"4742":4743,"4743":4744,"4744":4745,"4745":4746,"4746":4747,"4747":4748,"4748":4749,"4749":4750,"4750":4751,"4751":4752,"4752":4753,"4753":4754,"4754":4755,"4755":4756,"4756":4757,"4757":4758,"4758":4759,"4759":4760,"4760":4761,"4761":4762,"4762":4763,"4763":4764,"4764":4765,"4765":4766,"4766":4767,"4767":4768,"4768":4769,"4769":4770,"4770":4771,"4771":4772,"4772":4773,"4773":4774,"4774":4775,"4775":4776,"4776":4777,"4777":4778,"4778":4779,"4779":4780,"4780":4781,"4781":4782,"4782":4783,"4783":4784,"4784":4785,"4785":4786,"4786":4787,"4787":4788,"4788":4789,"4789":4790,"4790":4791,"4791":4792,"4792":4793,"4793":4794,"4794":4795,"4795":4796,"4796":4797,"4797":4798,"4798":4799,"4799":4800,"4800":4801,"4801":4802,"4802":4803,"4803":4804,"4804":4805,"4805":4806,"4806":4807,"4807":4808,"4808":4809,"4809":4810,"4810":4811,"4811":4812,"4812":4813,"4813":4814,"4814":4815,"4815":4816,"4816":4817,"4817":4818,"4818":4819,"4819":4820,"4820":4821,"4821":4822,"4822":4823,"4823":4824,"4824":4825,"4825":4826,"4826":4827,"4827":4828,"4828":4829,"4829":4830,"4830":4831,"4831":4832,"4832":4833,"4833":4834,"4834":4835,"4835":4836,"4836":4837,"4837":4838,"4838":4839,"4839":4840,"4840":4841,"4841":4842,"4842":4843,"4843":4844,"4844":4845,"4845":4846,"4846":4847,"4847":4848,"4848":4849,"4849":4850,"4850":4851,"4851":4852,"4852":4853,"4853":4854,"4854":4855,"4855":4856,"4856":4857,"4857":4858,"4858":4859,"4859":4860,"4860":4861,"4861":4862,"4862":4863,"4863":4864,"4864":4865,"4865":4866,"4866":4867,"4867":4868,"4868":4869,"4869":4870,"4870":4871,"4871":4872,"4872":4873,"4873":4874,"4874":4875,"4875":4876,"4876":4877,"4877":4878,"4878":4879,"4879":4880,"4880":4881,"4881":4882,"4882":4883,"4883":4884,"4884":4885,"4885":4886,"4886":4887,"4887":4888,"4888":4889,"4889":4890,"4890":4891,"4891":4892,"4892":4893,"4893":4894,"4894":4895,"4895":4896,"4896":4897,"4897":4898,"4898":4899,"4899":4900,"4900":4901,"4901":4902,"4902":4903,"4903":4904,"4904":4905,"4905":4906,"4906":4907,"4907":4908,"4908":4909,"4909":4910,"4910":4911,"4911":4912,"4912":4913,"4913":4914,"4914":4915,"4915":4916,"4916":4917,"4917":4918,"4918":4919,"4919":4920,"4920":4921,"4921":4922,"4922":4923,"4923":4924,"4924":4925,"4925":4926,"4926":4927,"4927":4928,"4928":4929,"4929":4930,"4930":4931,"4931":4932,"4932":4933,"4933":4934,"4934":4935,"4935":4936,"4936":4937,"4937":4938,"4938":4939,"4939":4940,"4940":4941,"4941":4942,"4942":4943,"4943":4944,"4944":4945,"4945":4946,"4946":4947,"4947":4948,"4948":4949,"4949":4950,"4950":4951,"4951":4952,"4952":4953,"4953":4954,"4954":4955,"4955":4956,"4956":4957,"4957":4958,"4958":4959,"4959":4960,"4960":4961,"4961":4962,"4962":4963,"4963":4964,"4964":4965,"4965":4966,"4966":4967,"4967":4968,"4968":4969,"4969":4970,"4970":4971,"4971":4972,"4972":4973,"4973":4974,"4974":4975,"4975":4976,"4976":4977,"4977":4978,"4978":4979,"4979":4980,"4980":4981,"4981":4982,"4982":4983,"4983":4984,"4984":4985,"4985":4986,"4986":4987,"4987":4988,"4988":4989,"4989":4990,"4990":4991,"4991":4992,"4992":4993,"4993":4994,"4994":4995,"4995":4996,"4996":4997,"4997":4998,"4998":4999,"4999":5000,"5000":5001,"5001":5002,"5002":5003,"5003":5004,"5004":5005,"5005":5006,"5006":5007,"5007":5008,"5008":5009,"5009":5010,"5010":5011,"5011":5012,"5012":5013,"5013":5014,"5014":5015,"5015":5016,"5016":5017,"5017":5018,"5018":5019,"5019":5020,"5020":5021,"5021":5022,"5022":5023,"5023":5024,"5024":5025,"5025":5026,"5026":5027,"5027":5028,"5028":5029,"5029":5030,"5030":5031,"5031":5032,"5032":5033,"5033":5034,"5034":5035,"5035":5036,"5036":5037,"5037":5038,"5038":5039,"5039":5040,"5040":5041,"5041":5042,"5042":5043,"5043":5044,"5044":5045,"5045":5046,"5046":5047,"5047":5048,"5048":5049,"5049":5050,"5050":5051,"5051":5052,"5052":5053,"5053":5054,"5054":5055,"5055":5056,"5056":5057,"5057":5058,"5058":5059,"5059":5060,"5060":5061,"5061":5062,"5062":5063,"5063":5064,"5064":5065,"5065":5066,"5066":5067,"5067":5068,"5068":5069,"5069":5070,"5070":5071,"5071":5072,"5072":5073,"5073":5074,"5074":5075,"5075":5076,"5076":5077,"5077":5078,"5078":5079,"5079":5080,"5080":5081,"5081":5082,"5082":5083,"5083":5084,"5084":5085,"5085":5086,"5086":5087,"5087":5088,"5088":5089,"5089":5090,"5090":5091,"5091":5092,"5092":5093,"5093":5094,"5094":5095,"5095":5096,"5096":5097,"5097":5098,"5098":5099,"5099":5100,"5100":5101,"5101":5102,"5102":5103,"5103":5104,"5104":5105,"5105":5106,"5106":5107,"5107":5108,"5108":5109,"5109":5110,"5110":5111,"5111":5112,"5112":5113,"5113":5114,"5114":5115,"5115":5116,"5116":5117,"5117":5118,"5118":5119,"5119":5120,"5120":5121,"5121":5122,"5122":5123,"5123":5124,"5124":5125,"5125":5126,"5126":5127,"5127":5128,"5128":5129,"5129":5130,"5130":5131,"5131":5132,"5132":5133,"5133":5134,"5134":5135,"5135":5136,"5136":5137,"5137":5138,"5138":5139,"5139":5140,"5140":5141,"5141":5142,"5142":5143,"5143":5144,"5144":5145,"5145":5146,"5146":5147,"5147":5148,"5148":5149,"5149":5150,"5150":5151,"5151":5152,"5152":5153,"5153":5154,"5154":5155,"5155":5156,"5156":5157,"5157":5158,"5158":5159,"5159":5160,"5160":5161,"5161":5162,"5162":5163,"5163":5164,"5164":5165,"5165":5166,"5166":5167,"5167":5168,"5168":5169,"5169":5170,"5170":5171,"5171":5172,"5172":5173,"5173":5174,"5174":5175,"5175":5176,"5176":5177,"5177":5178,"5178":5179,"5179":5180,"5180":5181,"5181":5182,"5182":5183,"5183":5184,"5184":5185,"5185":5186,"5186":5187,"5187":5188,"5188":5189,"5189":5190,"5190":5191,"5191":5192,"5192":5193,"5193":5194,"5194":5195,"5195":5196,"5196":5197,"5197":5198,"5198":5199,"5199":5200,"5200":5201,"5201":5202,"5202":5203,"5203":5204,"5204":5205,"5205":5206,"5206":5207,"5207":5208,"5208":5209,"5209":5210,"5210":5211,"5211":5212,"5212":5213,"5213":5214,"5214":5215,"5215":5216,"5216":5217,"5217":5218,"5218":5219,"5219":5220,"5220":5221,"5221":5222,"5222":5223,"5223":5224,"5224":5225,"5225":5226,"5226":5227,"5227":5228,"5228":5229,"5229":5230,"5230":5231,"5231":5232,"5232":5233,"5233":5234,"5234":5235,"5235":5236,"5236":5237,"5237":5238,"5238":5239,"5239":5240,"5240":5241,"5241":5242,"5242":5243,"5243":5244,"5244":5245,"5245":5246,"5246":5247,"5247":5248,"5248":5249,"5249":5250,"5250":5251,"5251":5252,"5252":5253,"5253":5254,"5254":5255,"5255":5256,"5256":5257,"5257":5258,"5258":5259,"5259":5260,"5260":5261,"5261":5262,"5262":5263,"5263":5264,"5264":5265,"5265":5266,"5266":5267,"5267":5268,"5268":5269,"5269":5270,"5270":5271,"5271":5272,"5272":5273,"5273":5274,"5274":5275,"5275":5276,"5276":5277,"5277":5278,"5278":5279,"5279":5280,"5280":5281,"5281":5282,"5282":5283,"5283":5284,"5284":5285,"5285":5286,"5286":5287,"5287":5288,"5288":5289,"5289":5290,"5290":5291,"5291":5292,"5292":5293,"5293":5294,"5294":5295,"5295":5296,"5296":5297,"5297":5298,"5298":5299,"5299":5300,"5300":5301,"5301":5302,"5302":5303,"5303":5304,"5304":5305,"5305":5306,"5306":5307,"5307":5308,"5308":5309,"5309":5310,"5310":5311,"5311":5312,"5312":5313,"5313":5314,"5314":5315,"5315":5316,"5316":5317,"5317":5318,"5318":5319,"5319":5320,"5320":5321,"5321":5322,"5322":5323,"5323":5324,"5324":5325,"5325":5326,"5326":5327,"5327":5328,"5328":5329,"5329":5330,"5330":5331,"5331":5332,"5332":5333,"5333":5334,"5334":5335,"5335":5336,"5336":5337,"5337":5338,"5338":5339,"5339":5340,"5340":5341,"5341":5342,"5342":5343,"5343":5344,"5344":5345,"5345":5346,"5346":5347,"5347":5348,"5348":5349,"5349":5350,"5350":5351,"5351":5352,"5352":5353,"5353":5354,"5354":5355,"5355":5356,"5356":5357,"5357":5358,"5358":5359,"5359":5360,"5360":5361,"5361":5362,"5362":5363,"5363":5364,"5364":5365,"5365":5366,"5366":5367,"5367":5368,"5368":5369,"5369":5370,"5370":5371,"5371":5372,"5372":5373,"5373":5374,"5374":5375,"5375":5376,"5376":5377,"5377":5378,"5378":5379,"5379":5380,"5380":5381,"5381":5382,"5382":5383,"5383":5384,"5384":5385,"5385":5386,"5386":5387,"5387":5388,"5388":5389,"5389":5390,"5390":5391,"5391":5392,"5392":5393,"5393":5394,"5394":5395,"5395":5396,"5396":5397,"5397":5398,"5398":5399,"5399":5400,"5400":5401,"5401":5402,"5402":5403,"5403":5404,"5404":5405,"5405":5406,"5406":5407,"5407":5408,"5408":5409,"5409":5410,"5410":5411,"5411":5412,"5412":5413,"5413":5414,"5414":5415,"5415":5416,"5416":5417,"5417":5418,"5418":5419,"5419":5420,"5420":5421,"5421":5422,"5422":5423,"5423":5424,"5424":5425,"5425":5426,"5426":5427,"5427":5428,"5428":5429,"5429":5430,"5430":5431,"5431":5432,"5432":5433,"5433":5434,"5434":5435,"5435":5436,"5436":5437,"5437":5438,"5438":5439,"5439":5440,"5440":5441,"5441":5442,"5442":5443,"5443":5444,"5444":5445,"5445":5446,"5446":5447,"5447":5448,"5448":5449,"5449":5450,"5450":5451,"5451":5452,"5452":5453,"5453":5454,"5454":5455,"5455":5456,"5456":5457,"5457":5458,"5458":5459,"5459":5460,"5460":5461,"5461":5462,"5462":5463,"5463":5464,"5464":5465,"5465":5466,"5466":5467,"5467":5468,"5468":5469,"5469":5470,"5470":5471,"5471":5472,"5472":5473,"5473":5474,"5474":5475,"5475":5476,"5476":5477,"5477":5478,"5478":5479,"5479":5480,"5480":5481,"5481":5482,"5482":5483,"5483":5484,"5484":5485,"5485":5486,"5486":5487,"5487":5488,"5488":5489,"5489":5490,"5490":5491,"5491":5492,"5492":5493,"5493":5494,"5494":5495,"5495":5496,"5496":5497,"5497":5498,"5498":5499,"5499":5500,"5500":5501,"5501":5502,"5502":5503,"5503":5504,"5504":5505,"5505":5506,"5506":5507,"5507":5508,"5508":5509,"5509":5510,"5510":5511,"5511":5512,"5512":5513,"5513":5514,"5514":5515,"5515":5516,"5516":5517,"5517":5518,"5518":5519,"5519":5520,"5520":5521,"5521":5522,"5522":5523,"5523":5524,"5524":5525,"5525":5526,"5526":5527,"5527":5528,"5528":5529,"5529":5530,"5530":5531,"5531":5532,"5532":5533,"5533":5534,"5534":5535,"5535":5536,"5536":5537,"5537":5538,"5538":5539,"5539":5540,"5540":5541,"5541":5542,"5542":5543,"5543":5544,"5544":5545,"5545":5546,"5546":5547,"5547":5548,"5548":5549,"5549":5550,"5550":5551,"5551":5552,"5552":5553,"5553":5554,"5554":5555,"5555":5556,"5556":5557,"5557":5558,"5558":5559,"5559":5560,"5560":5561,"5561":5562,"5562":5563,"5563":5564,"5564":5565,"5565":5566,"5566":5567,"5567":5568,"5568":5569,"5569":5570,"5570":5571,"5571":5572,"5572":5573,"5573":5574,"5574":5575,"5575":5576,"5576":5577,"5577":5578,"5578":5579,"5579":5580,"5580":5581,"5581":5582,"5582":5583,"5583":5584,"5584":5585,"5585":5586,"5586":5587,"5587":5588,"5588":5589,"5589":5590,"5590":5591,"5591":5592,"5592":5593,"5593":5594,"5594":5595,"5595":5596,"5596":5597,"5597":5598,"5598":5599,"5599":5600,"5600":5601,"5601":5602,"5602":5603,"5603":5604,"5604":5605,"5605":5606,"5606":5607,"5607":5608,"5608":5609,"5609":5610,"5610":5611,"5611":5612,"5612":5613,"5613":5614,"5614":5615,"5615":5616,"5616":5617,"5617":5618,"5618":5619,"5619":5620,"5620":5621,"5621":5622,"5622":5623,"5623":5624,"5624":5625,"5625":5626,"5626":5627,"5627":5628,"5628":5629,"5629":5630,"5630":5631,"5631":5632,"5632":5633,"5633":5634,"5634":5635,"5635":5636,"5636":5637,"5637":5638,"5638":5639,"5639":5640,"5640":5641,"5641":5642,"5642":5643,"5643":5644,"5644":5645,"5645":5646,"5646":5647,"5647":5648,"5648":5649,"5649":5650,"5650":5651,"5651":5652,"5652":5653,"5653":5654,"5654":5655,"5655":5656,"5656":5657,"5657":5658,"5658":5659,"5659":5660,"5660":5661,"5661":5662,"5662":5663,"5663":5664,"5664":5665,"5665":5666,"5666":5667,"5667":5668,"5668":5669,"5669":5670,"5670":5671,"5671":5672,"5672":5673,"5673":5674,"5674":5675,"5675":5676,"5676":5677,"5677":5678,"5678":5679,"5679":5680,"5680":5681,"5681":5682,"5682":5683,"5683":5684,"5684":5685,"5685":5686,"5686":5687,"5687":5688,"5688":5689,"5689":5690,"5690":5691,"5691":5692,"5692":5693,"5693":5694,"5694":5695,"5695":5696,"5696":5697,"5697":5698,"5698":5699,"5699":5700,"5700":5701,"5701":5702,"5702":5703,"5703":5704,"5704":5705,"5705":5706,"5706":5707,"5707":5708,"5708":5709,"5709":5710,"5710":5711,"5711":5712,"5712":5713,"5713":5714,"5714":5715,"5715":5716,"5716":5717,"5717":5718,"5718":5719,"5719":5720,"5720":5721,"5721":5722,"5722":5723,"5723":5724,"5724":5725,"5725":5726,"5726":5727,"5727":5728,"5728":5729,"5729":5730,"5730":5731,"5731":5732,"5732":5733,"5733":5734,"5734":5735,"5735":5736,"5736":5737,"5737":5738,"5738":5739,"5739":5740,"5740":5741,"5741":5742,"5742":5743,"5743":5744,"5744":5745,"5745":5746,"5746":5747,"5747":5748,"5748":5749,"5749":5750,"5750":5751,"5751":5752,"5752":5753,"5753":5754,"5754":5755,"5755":5756,"5756":5757,"5757":5758,"5758":5759,"5759":5760,"5760":5761,"5761":5762,"5762":5763,"5763":5764,"5764":5765,"5765":5766,"5766":5767,"5767":5768,"5768":5769,"5769":5770,"5770":5771,"5771":5772,"5772":5773,"5773":5774,"5774":5775,"5775":5776,"5776":5777,"5777":5778,"5778":5779,"5779":5780,"5780":5781,"5781":5782,"5782":5783,"5783":5784,"5784":5785,"5785":5786,"5786":5787,"5787":5788,"5788":5789,"5789":5790,"5790":5791,"5791":5792,"5792":5793,"5793":5794,"5794":5795,"5795":5796,"5796":5797,"5797":5798,"5798":5799,"5799":5800,"5800":5801,"5801":5802,"5802":5803,"5803":5804,"5804":5805,"5805":5806,"5806":5807,"5807":5808,"5808":5809,"5809":5810,"5810":5811,"5811":5812,"5812":5813,"5813":5814,"5814":5815,"5815":5816,"5816":5817,"5817":5818,"5818":5819,"5819":5820,"5820":5821,"5821":5822,"5822":5823,"5823":5824,"5824":5825,"5825":5826,"5826":5827,"5827":5828,"5828":5829,"5829":5830,"5830":5831,"5831":5832,"5832":5833,"5833":5834,"5834":5835,"5835":5836,"5836":5837,"5837":5838,"5838":5839,"5839":5840,"5840":5841,"5841":5842,"5842":5843,"5843":5844,"5844":5845,"5845":5846,"5846":5847,"5847":5848,"5848":5849,"5849":5850,"5850":5851,"5851":5852,"5852":5853,"5853":5854,"5854":5855,"5855":5856,"5856":5857,"5857":5858,"5858":5859,"5859":5860,"5860":5861,"5861":5862,"5862":5863,"5863":5864,"5864":5865,"5865":5866,"5866":5867,"5867":5868,"5868":5869,"5869":5870,"5870":5871,"5871":5872,"5872":5873,"5873":5874,"5874":5875,"5875":5876,"5876":5877,"5877":5878,"5878":5879,"5879":5880,"5880":5881,"5881":5882,"5882":5883,"5883":5884,"5884":5885,"5885":5886,"5886":5887,"5887":5888,"5888":5889,"5889":5890,"5890":5891,"5891":5892,"5892":5893,"5893":5894,"5894":5895,"5895":5896,"5896":5897,"5897":5898,"5898":5899,"5899":5900,"5900":5901,"5901":5902,"5902":5903,"5903":5904,"5904":5905,"5905":5906,"5906":5907,"5907":5908,"5908":5909,"5909":5910,"5910":5911,"5911":5912,"5912":5913,"5913":5914,"5914":5915,"5915":5916,"5916":5917,"5917":5918,"5918":5919,"5919":5920,"5920":5921,"5921":5922,"5922":5923,"5923":5924,"5924":5925,"5925":5926,"5926":5927,"5927":5928,"5928":5929,"5929":5930,"5930":5931,"5931":5932,"5932":5933,"5933":5934,"5934":5935,"5935":5936,"5936":5937,"5937":5938,"5938":5939,"5939":5940,"5940":5941,"5941":5942,"5942":5943,"5943":5944,"5944":5945,"5945":5946,"5946":5947,"5947":5948,"5948":5949,"5949":5950,"5950":5951,"5951":5952,"5952":5953,"5953":5954,"5954":5955,"5955":5956,"5956":5957,"5957":5958,"5958":5959,"5959":5960,"5960":5961,"5961":5962,"5962":5963,"5963":5964,"5964":5965,"5965":5966,"5966":5967,"5967":5968,"5968":5969,"5969":5970,"5970":5971,"5971":5972,"5972":5973,"5973":5974,"5974":5975,"5975":5976,"5976":5977,"5977":5978,"5978":5979,"5979":5980,"5980":5981,"5981":5982,"5982":5983,"5983":5984,"5984":5985,"5985":5986,"5986":5987,"5987":5988,"5988":5989,"5989":5990,"5990":5991,"5991":5992,"5992":5993,"5993":5994,"5994":5995,"5995":5996,"5996":5997,"5997":5998,"5998":5999,"5999":6000,"6000":6001,"6001":6002,"6002":6003,"6003":6004,"6004":6005,"6005":6006,"6006":6007,"6007":6008,"6008":6009,"6009":6010,"6010":6011,"6011":6012,"6012":6013,"6013":6014,"6014":6015,"6015":6016,"6016":6017,"6017":6018,"6018":6019,"6019":6020,"6020":6021,"6021":6022,"6022":6023,"6023":6024,"6024":6025,"6025":6026,"6026":6027,"6027":6028,"6028":6029,"6029":6030,"6030":6031,"6031":6032,"6032":6033,"6033":6034,"6034":6035,"6035":6036,"6036":6037,"6037":6038,"6038":6039,"6039":6040,"6040":6041,"6041":6042,"6042":6043,"6043":6044,"6044":6045,"6045":6046,"6046":6047,"6047":6048,"6048":6049,"6049":6050,"6050":6051,"6051":6052,"6052":6053,"6053":6054,"6054":6055,"6055":6056,"6056":6057,"6057":6058,"6058":6059,"6059":6060,"6060":6061,"6061":6062,"6062":6063,"6063":6064,"6064":6065,"6065":6066,"6066":6067,"6067":6068,"6068":6069,"6069":6070,"6070":6071,"6071":6072,"6072":6073,"6073":6074,"6074":6075,"6075":6076,"6076":6077,"6077":6078,"6078":6079,"6079":6080,"6080":6081,"6081":6082,"6082":6083,"6083":6084,"6084":6085,"6085":6086,"6086":6087,"6087":6088,"6088":6089,"6089":6090,"6090":6091,"6091":6092,"6092":6093,"6093":6094,"6094":6095,"6095":6096,"6096":6097,"6097":6098,"6098":6099,"6099":6100,"6100":6101,"6101":6102,"6102":6103,"6103":6104,"6104":6105,"6105":6106,"6106":6107,"6107":6108,"6108":6109,"6109":6110,"6110":6111,"6111":6112,"6112":6113,"6113":6114,"6114":6115,"6115":6116,"6116":6117,"6117":6118,"6118":6119,"6119":6120,"6120":6121,"6121":6122,"6122":6123,"6123":6124,"6124":6125,"6125":6126,"6126":6127,"6127":6128,"6128":6129,"6129":6130,"6130":6131,"6131":6132,"6132":6133,"6133":6134,"6134":6135,"6135":6136,"6136":6137,"6137":6138,"6138":6139,"6139":6140,"6140":6141,"6141":6142,"6142":6143,"6143":6144,"6144":6145,"6145":6146,"6146":6147,"6147":6148,"6148":6149,"6149":6150,"6150":6151,"6151":6152,"6152":6153,"6153":6154,"6154":6155,"6155":6156,"6156":6157,"6157":6158,"6158":6159,"6159":6160,"6160":6161,"6161":6162,"6162":6163,"6163":6164,"6164":6165,"6165":6166,"6166":6167,"6167":6168,"6168":6169,"6169":6170,"6170":6171,"6171":6172,"6172":6173,"6173":6174,"6174":6175,"6175":6176,"6176":6177,"6177":6178,"6178":6179,"6179":6180,"6180":6181,"6181":6182,"6182":6183,"6183":6184,"6184":6185,"6185":6186,"6186":6187,"6187":6188,"6188":6189,"6189":6190,"6190":6191,"6191":6192,"6192":6193,"6193":6194,"6194":6195,"6195":6196,"6196":6197,"6197":6198,"6198":6199,"6199":6200,"6200":6201,"6201":6202,"6202":6203,"6203":6204,"6204":6205,"6205":6206,"6206":6207,"6207":6208,"6208":6209,"6209":6210,"6210":6211,"6211":6212,"6212":6213,"6213":6214,"6214":6215,"6215":6216,"6216":6217,"6217":6218,"6218":6219,"6219":6220,"6220":6221,"6221":6222,"6222":6223,"6223":6224,"6224":6225,"6225":6226,"6226":6227,"6227":6228,"6228":6229,"6229":6230,"6230":6231,"6231":6232,"6232":6233,"6233":6234,"6234":6235,"6235":6236,"6236":6237,"6237":6238,"6238":6239,"6239":6240,"6240":6241,"6241":6242,"6242":6243,"6243":6244,"6244":6245,"6245":6246,"6246":6247,"6247":6248,"6248":6249,"6249":6250,"6250":6251,"6251":6252,"6252":6253,"6253":6254,"6254":6255,"6255":6256,"6256":6257,"6257":6258,"6258":6259,"6259":6260,"6260":6261,"6261":6262,"6262":6263,"6263":6264,"6264":6265,"6265":6266,"6266":6267,"6267":6268,"6268":6269,"6269":6270,"6270":6271,"6271":6272,"6272":6273,"6273":6274,"6274":6275,"6275":6276,"6276":6277,"6277":6278,"6278":6279,"6279":6280,"6280":6281,"6281":6282,"6282":6283,"6283":6284,"6284":6285,"6285":6286,"6286":6287,"6287":6288,"6288":6289,"6289":6290,"6290":6291,"6291":6292,"6292":6293,"6293":6294,"6294":6295,"6295":6296,"6296":6297,"6297":6298,"6298":6299,"6299":6300,"6300":6301,"6301":6302,"6302":6303,"6303":6304,"6304":6305,"6305":6306,"6306":6307,"6307":6308,"6308":6309,"6309":6310,"6310":6311,"6311":6312,"6312":6313,"6313":6314,"6314":6315,"6315":6316,"6316":6317,"6317":6318,"6318":6319,"6319":6320,"6320":6321,"6321":6322,"6322":6323,"6323":6324,"6324":6325,"6325":6326,"6326":6327,"6327":6328,"6328":6329,"6329":6330,"6330":6331,"6331":6332,"6332":6333,"6333":6334,"6334":6335,"6335":6336,"6336":6337,"6337":6338,"6338":6339,"6339":6340,"6340":6341,"6341":6342,"6342":6343,"6343":6344,"6344":6345,"6345":6346,"6346":6347,"6347":6348,"6348":6349,"6349":6350,"6350":6351,"6351":6352,"6352":6353,"6353":6354,"6354":6355,"6355":6356,"6356":6357,"6357":6358,"6358":6359,"6359":6360,"6360":6361,"6361":6362,"6362":6363,"6363":6364,"6364":6365,"6365":6366,"6366":6367,"6367":6368,"6368":6369,"6369":6370,"6370":6371,"6371":6372,"6372":6373,"6373":6374,"6374":6375,"6375":6376,"6376":6377,"6377":6378,"6378":6379,"6379":6380,"6380":6381,"6381":6382,"6382":6383,"6383":6384,"6384":6385,"6385":6386,"6386":6387,"6387":6388,"6388":6389,"6389":6390,"6390":6391,"6391":6392,"6392":6393,"6393":6394,"6394":6395,"6395":6396,"6396":6397,"6397":6398,"6398":6399,"6399":6400,"6400":6401,"6401":6402,"6402":6403,"6403":6404,"6404":6405,"6405":6406,"6406":6407,"6407":6408,"6408":6409,"6409":6410,"6410":6411,"6411":6412,"6412":6413,"6413":6414,"6414":6415,"6415":6416,"6416":6417,"6417":6418,"6418":6419,"6419":6420,"6420":6421,"6421":6422,"6422":6423,"6423":6424,"6424":6425,"6425":6426,"6426":6427,"6427":6428,"6428":6429,"6429":6430,"6430":6431,"6431":6432,"6432":6433,"6433":6434,"6434":6435,"6435":6436,"6436":6437,"6437":6438,"6438":6439,"6439":6440,"6440":6441,"6441":6442,"6442":6443,"6443":6444,"6444":6445,"6445":6446,"6446":6447,"6447":6448,"6448":6449,"6449":6450,"6450":6451,"6451":6452,"6452":6453,"6453":6454,"6454":6455,"6455":6456,"6456":6457,"6457":6458,"6458":6459,"6459":6460,"6460":6461,"6461":6462,"6462":6463,"6463":6464,"6464":6465,"6465":6466,"6466":6467,"6467":6468,"6468":6469,"6469":6470,"6470":6471,"6471":6472,"6472":6473,"6473":6474,"6474":6475,"6475":6476,"6476":6477,"6477":6478,"6478":6479,"6479":6480,"6480":6481,"6481":6482,"6482":6483,"6483":6484,"6484":6485,"6485":6486,"6486":6487,"6487":6488,"6488":6489,"6489":6490,"6490":6491,"6491":6492,"6492":6493,"6493":6494,"6494":6495,"6495":6496,"6496":6497,"6497":6498,"6498":6499,"6499":6500,"6500":6501,"6501":6502,"6502":6503,"6503":6504,"6504":6505,"6505":6506,"6506":6507,"6507":6508,"6508":6509,"6509":6510,"6510":6511,"6511":6512,"6512":6513,"6513":6514,"6514":6515,"6515":6516,"6516":6517,"6517":6518,"6518":6519,"6519":6520,"6520":6521,"6521":6522,"6522":6523,"6523":6524,"6524":6525,"6525":6526,"6526":6527,"6527":6528,"6528":6529,"6529":6530,"6530":6531,"6531":6532,"6532":6533,"6533":6534,"6534":6535,"6535":6536,"6536":6537,"6537":6538,"6538":6539,"6539":6540,"6540":6541,"6541":6542,"6542":6543,"6543":6544,"6544":6545,"6545":6546,"6546":6547,"6547":6548,"6548":6549,"6549":6550,"6550":6551,"6551":6552,"6552":6553,"6553":6554,"6554":6555,"6555":6556,"6556":6557,"6557":6558,"6558":6559,"6559":6560,"6560":6561,"6561":6562,"6562":6563,"6563":6564,"6564":6565,"6565":6566,"6566":6567,"6567":6568,"6568":6569,"6569":6570,"6570":6571,"6571":6572,"6572":6573,"6573":6574,"6574":6575,"6575":6576,"6576":6577,"6577":6578,"6578":6579,"6579":6580,"6580":6581,"6581":6582,"6582":6583,"6583":6584,"6584":6585,"6585":6586,"6586":6587,"6587":6588,"6588":6589,"6589":6590,"6590":6591,"6591":6592,"6592":6593,"6593":6594,"6594":6595,"6595":6596,"6596":6597,"6597":6598,"6598":6599,"6599":6600,"6600":6601,"6601":6602,"6602":6603,"6603":6604,"6604":6605,"6605":6606,"6606":6607,"6607":6608,"6608":6609,"6609":6610,"6610":6611,"6611":6612,"6612":6613,"6613":6614,"6614":6615,"6615":6616,"6616":6617,"6617":6618,"6618":6619,"6619":6620,"6620":6621,"6621":6622,"6622":6623,"6623":6624,"6624":6625,"6625":6626,"6626":6627,"6627":6628,"6628":6629,"6629":6630,"6630":6631,"6631":6632,"6632":6633,"6633":6634,"6634":6635,"6635":6636,"6636":6637,"6637":6638,"6638":6639,"6639":6640,"6640":6641,"6641":6642,"6642":6643,"6643":6644,"6644":6645,"6645":6646,"6646":6647,"6647":6648,"6648":6649,"6649":6650,"6650":6651,"6651":6652,"6652":6653,"6653":6654,"6654":6655,"6655":6656,"6656":6657,"6657":6658,"6658":6659,"6659":6660,"6660":6661,"6661":6662,"6662":6663,"6663":6664,"6664":6665,"6665":6666,"6666":6667,"6667":6668,"6668":6669,"6669":6670,"6670":6671,"6671":6672,"6672":6673,"6673":6674,"6674":6675,"6675":6676,"6676":6677,"6677":6678,"6678":6679,"6679":6680,"6680":6681,"6681":6682,"6682":6683,"6683":6684,"6684":6685,"6685":6686,"6686":6687,"6687":6688,"6688":6689,"6689":6690,"6690":6691,"6691":6692,"6692":6693,"6693":6694,"6694":6695,"6695":6696,"6696":6697,"6697":6698,"6698":6699,"6699":6700,"6700":6701,"6701":6702,"6702":6703,"6703":6704,"6704":6705,"6705":6706,"6706":6707,"6707":6708,"6708":6709,"6709":6710,"6710":6711,"6711":6712,"6712":6713,"6713":6714,"6714":6715,"6715":6716,"6716":6717,"6717":6718,"6718":6719,"6719":6720,"6720":6721,"6721":6722,"6722":6723,"6723":6724,"6724":6725,"6725":6726,"6726":6727,"6727":6728,"6728":6729,"6729":6730,"6730":6731,"6731":6732,"6732":6733,"6733":6734,"6734":6735,"6735":6736,"6736":6737,"6737":6738,"6738":6739,"6739":6740,"6740":6741,"6741":6742,"6742":6743,"6743":6744,"6744":6745,"6745":6746,"6746":6747,"6747":6748,"6748":6749,"6749":6750,"6750":6751,"6751":6752,"6752":6753,"6753":6754,"6754":6755,"6755":6756,"6756":6757,"6757":6758,"6758":6759,"6759":6760,"6760":6761,"6761":6762,"6762":6763,"6763":6764,"6764":6765,"6765":6766,"6766":6767,"6767":6768,"6768":6769,"6769":6770,"6770":6771,"6771":6772,"6772":6773,"6773":6774,"6774":6775,"6775":6776,"6776":6777,"6777":6778,"6778":6779,"6779":6780,"6780":6781,"6781":6782,"6782":6783,"6783":6784,"6784":6785,"6785":6786,"6786":6787,"6787":6788,"6788":6789,"6789":6790,"6790":6791,"6791":6792,"6792":6793,"6793":6794,"6794":6795,"6795":6796,"6796":6797,"6797":6798,"6798":6799,"6799":6800,"6800":6801,"6801":6802,"6802":6803,"6803":6804,"6804":6805,"6805":6806,"6806":6807,"6807":6808,"6808":6809,"6809":6810,"6810":6811,"6811":6812,"6812":6813,"6813":6814,"6814":6815,"6815":6816,"6816":6817,"6817":6818,"6818":6819,"6819":6820,"6820":6821,"6821":6822,"6822":6823,"6823":6824,"6824":6825,"6825":6826,"6826":6827,"6827":6828,"6828":6829,"6829":6830,"6830":6831,"6831":6832,"6832":6833,"6833":6834,"6834":6835,"6835":6836,"6836":6837,"6837":6838,"6838":6839,"6839":6840,"6840":6841,"6841":6842,"6842":6843,"6843":6844,"6844":6845,"6845":6846,"6846":6847,"6847":6848,"6848":6849,"6849":6850,"6850":6851,"6851":6852,"6852":6853,"6853":6854,"6854":6855,"6855":6856,"6856":6857,"6857":6858,"6858":6859,"6859":6860,"6860":6861,"6861":6862,"6862":6863,"6863":6864,"6864":6865,"6865":6866,"6866":6867,"6867":6868,"6868":6869,"6869":6870,"6870":6871,"6871":6872,"6872":6873,"6873":6874,"6874":6875,"6875":6876,"6876":6877,"6877":6878,"6878":6879,"6879":6880,"6880":6881,"6881":6882,"6882":6883,"6883":6884,"6884":6885,"6885":6886,"6886":6887,"6887":6888,"6888":6889,"6889":6890,"6890":6891,"6891":6892,"6892":6893,"6893":6894,"6894":6895,"6895":6896,"6896":6897,"6897":6898,"6898":6899,"6899":6900,"6900":6901,"6901":6902,"6902":6903,"6903":6904,"6904":6905,"6905":6906,"6906":6907,"6907":6908,"6908":6909,"6909":6910,"6910":6911,"6911":6912,"6912":6913,"6913":6914,"6914":6915,"6915":6916,"6916":6917,"6917":6918,"6918":6919,"6919":6920,"6920":6921,"6921":6922,"6922":6923,"6923":6924,"6924":6925,"6925":6926,"6926":6927,"6927":6928,"6928":6929,"6929":6930,"6930":6931,"6931":6932,"6932":6933,"6933":6934,"6934":6935,"6935":6936,"6936":6937,"6937":6938,"6938":6939,"6939":6940,"6940":6941,"6941":6942,"6942":6943,"6943":6944,"6944":6945,"6945":6946,"6946":6947,"6947":6948,"6948":6949,"6949":6950,"6950":6951,"6951":6952,"6952":6953,"6953":6954,"6954":6955,"6955":6956,"6956":6957,"6957":6958,"6958":6959,"6959":6960,"6960":6961,"6961":6962,"6962":6963,"6963":6964,"6964":6965,"6965":6966,"6966":6967,"6967":6968,"6968":6969,"6969":6970,"6970":6971,"6971":6972,"6972":6973,"6973":6974,"6974":6975,"6975":6976,"6976":6977,"6977":6978,"6978":6979,"6979":6980,"6980":6981,"6981":6982,"6982":6983,"6983":6984,"6984":6985,"6985":6986,"6986":6987,"6987":6988,"6988":6989,"6989":6990,"6990":6991,"6991":6992,"6992":6993,"6993":6994,"6994":6995,"6995":6996,"6996":6997,"6997":6998,"6998":6999,"6999":7000,"7000":7001,"7001":7002,"7002":7003,"7003":7004,"7004":7005,"7005":7006,"7006":7007,"7007":7008,"7008":7009,"7009":7010,"7010":7011,"7011":7012,"7012":7013,"7013":7014,"7014":7015,"7015":7016,"7016":7017,"7017":7018,"7018":7019,"7019":7020,"7020":7021,"7021":7022,"7022":7023,"7023":7024,"7024":7025,"7025":7026,"7026":7027,"7027":7028,"7028":7029,"7029":7030,"7030":7031,"7031":7032,"7032":7033,"7033":7034,"7034":7035,"7035":7036,"7036":7037,"7037":7038,"7038":7039,"7039":7040,"7040":7041,"7041":7042,"7042":7043,"7043":7044,"7044":7045,"7045":7046,"7046":7047,"7047":7048,"7048":7049,"7049":7050,"7050":7051,"7051":7052,"7052":7053,"7053":7054,"7054":7055,"7055":7056,"7056":7057,"7057":7058,"7058":7059,"7059":7060,"7060":7061,"7061":7062,"7062":7063,"7063":7064,"7064":7065,"7065":7066,"7066":7067,"7067":7068,"7068":7069,"7069":7070,"7070":7071,"7071":7072,"7072":7073,"7073":7074,"7074":7075,"7075":7076,"7076":7077,"7077":7078,"7078":7079,"7079":7080,"7080":7081,"7081":7082,"7082":7083,"7083":7084,"7084":7085,"7085":7086,"7086":7087,"7087":7088,"7088":7089,"7089":7090,"7090":7091,"7091":7092,"7092":7093,"7093":7094,"7094":7095,"7095":7096,"7096":7097,"7097":7098,"7098":7099,"7099":7100,"7100":7101,"7101":7102,"7102":7103,"7103":7104,"7104":7105,"7105":7106,"7106":7107,"7107":7108,"7108":7109,"7109":7110,"7110":7111,"7111":7112,"7112":7113,"7113":7114,"7114":7115,"7115":7116,"7116":7117,"7117":7118,"7118":7119,"7119":7120,"7120":7121,"7121":7122,"7122":7123,"7123":7124,"7124":7125,"7125":7126,"7126":7127,"7127":7128,"7128":7129,"7129":7130,"7130":7131,"7131":7132,"7132":7133,"7133":7134,"7134":7135,"7135":7136,"7136":7137,"7137":7138,"7138":7139,"7139":7140,"7140":7141,"7141":7142,"7142":7143,"7143":7144,"7144":7145,"7145":7146,"7146":7147,"7147":7148,"7148":7149,"7149":7150,"7150":7151,"7151":7152,"7152":7153,"7153":7154,"7154":7155,"7155":7156,"7156":7157,"7157":7158,"7158":7159,"7159":7160,"7160":7161,"7161":7162,"7162":7163,"7163":7164,"7164":7165,"7165":7166,"7166":7167,"7167":7168,"7168":7169,"7169":7170,"7170":7171,"7171":7172,"7172":7173,"7173":7174,"7174":7175,"7175":7176,"7176":7177,"7177":7178,"7178":7179,"7179":7180,"7180":7181,"7181":7182,"7182":7183,"7183":7184,"7184":7185,"7185":7186,"7186":7187,"7187":7188,"7188":7189,"7189":7190,"7190":7191,"7191":7192,"7192":7193,"7193":7194,"7194":7195,"7195":7196,"7196":7197,"7197":7198,"7198":7199,"7199":7200,"7200":7201,"7201":7202,"7202":7203,"7203":7204,"7204":7205,"7205":7206,"7206":7207,"7207":7208,"7208":7209,"7209":7210,"7210":7211,"7211":7212,"7212":7213,"7213":7214,"7214":7215,"7215":7216,"7216":7217,"7217":7218,"7218":7219,"7219":7220,"7220":7221,"7221":7222,"7222":7223,"7223":7224,"7224":7225,"7225":7226,"7226":7227,"7227":7228,"7228":7229,"7229":7230,"7230":7231,"7231":7232,"7232":7233,"7233":7234,"7234":7235,"7235":7236,"7236":7237,"7237":7238,"7238":7239,"7239":7240,"7240":7241,"7241":7242,"7242":7243,"7243":7244,"7244":7245,"7245":7246,"7246":7247,"7247":7248,"7248":7249,"7249":7250,"7250":7251,"7251":7252,"7252":7253,"7253":7254,"7254":7255,"7255":7256,"7256":7257,"7257":7258,"7258":7259,"7259":7260,"7260":7261,"7261":7262,"7262":7263,"7263":7264,"7264":7265,"7265":7266,"7266":7267,"7267":7268,"7268":7269,"7269":7270,"7270":7271,"7271":7272,"7272":7273,"7273":7274,"7274":7275,"7275":7276,"7276":7277,"7277":7278,"7278":7279,"7279":7280,"7280":7281,"7281":7282,"7282":7283,"7283":7284,"7284":7285,"7285":7286,"7286":7287,"7287":7288,"7288":7289,"7289":7290,"7290":7291,"7291":7292,"7292":7293,"7293":7294,"7294":7295,"7295":7296,"7296":7297,"7297":7298,"7298":7299,"7299":7300,"7300":7301,"7301":7302,"7302":7303,"7303":7304,"7304":7305,"7305":7306,"7306":7307,"7307":7308,"7308":7309,"7309":7310,"7310":7311,"7311":7312,"7312":7313,"7313":7314,"7314":7315,"7315":7316,"7316":7317,"7317":7318,"7318":7319,"7319":7320,"7320":7321,"7321":7322,"7322":7323,"7323":7324,"7324":7325,"7325":7326,"7326":7327,"7327":7328,"7328":7329,"7329":7330,"7330":7331,"7331":7332,"7332":7333,"7333":7334,"7334":7335,"7335":7336,"7336":7337,"7337":7338,"7338":7339,"7339":7340,"7340":7341,"7341":7342,"7342":7343,"7343":7344,"7344":7345,"7345":7346,"7346":7347,"7347":7348,"7348":7349,"7349":7350,"7350":7351,"7351":7352,"7352":7353,"7353":7354,"7354":7355,"7355":7356,"7356":7357,"7357":7358,"7358":7359,"7359":7360,"7360":7361,"7361":7362,"7362":7363,"7363":7364,"7364":7365,"7365":7366,"7366":7367,"7367":7368,"7368":7369,"7369":7370,"7370":7371,"7371":7372,"7372":7373,"7373":7374,"7374":7375,"7375":7376,"7376":7377,"7377":7378,"7378":7379,"7379":7380,"7380":7381,"7381":7382,"7382":7383,"7383":7384,"7384":7385,"7385":7386,"7386":7387,"7387":7388,"7388":7389,"7389":7390,"7390":7391,"7391":7392,"7392":7393,"7393":7394,"7394":7395,"7395":7396,"7396":7397,"7397":7398,"7398":7399,"7399":7400,"7400":7401,"7401":7402,"7402":7403,"7403":7404,"7404":7405,"7405":7406,"7406":7407,"7407":7408,"7408":7409,"7409":7410,"7410":7411,"7411":7412,"7412":7413,"7413":7414,"7414":7415,"7415":7416,"7416":7417,"7417":7418,"7418":7419,"7419":7420,"7420":7421,"7421":7422,"7422":7423,"7423":7424,"7424":7425,"7425":7426,"7426":7427,"7427":7428,"7428":7429,"7429":7430,"7430":7431,"7431":7432,"7432":7433,"7433":7434,"7434":7435,"7435":7436,"7436":7437,"7437":7438,"7438":7439,"7439":7440,"7440":7441,"7441":7442,"7442":7443,"7443":7444,"7444":7445,"7445":7446,"7446":7447,"7447":7448,"7448":7449,"7449":7450,"7450":7451,"7451":7452,"7452":7453,"7453":7454,"7454":7455,"7455":7456,"7456":7457,"7457":7458,"7458":7459,"7459":7460,"7460":7461,"7461":7462,"7462":7463,"7463":7464,"7464":7465,"7465":7466,"7466":7467,"7467":7468,"7468":7469,"7469":7470,"7470":7471,"7471":7472,"7472":7473,"7473":7474,"7474":7475,"7475":7476,"7476":7477,"7477":7478,"7478":7479,"7479":7480,"7480":7481,"7481":7482,"7482":7483,"7483":7484,"7484":7485,"7485":7486,"7486":7487,"7487":7488,"7488":7489,"7489":7490,"7490":7491,"7491":7492,"7492":7493,"7493":7494,"7494":7495,"7495":7496,"7496":7497,"7497":7498,"7498":7499,"7499":7500,"7500":7501,"7501":7502,"7502":7503,"7503":7504,"7504":7505,"7505":7506,"7506":7507,"7507":7508,"7508":7509,"7509":7510,"7510":7511,"7511":7512,"7512":7513,"7513":7514,"7514":7515,"7515":7516,"7516":7517,"7517":7518,"7518":7519,"7519":7520,"7520":7521,"7521":7522,"7522":7523,"7523":7524,"7524":7525,"7525":7526,"7526":7527,"7527":7528,"7528":7529,"7529":7530,"7530":7531,"7531":7532,"7532":7533,"7533":7534,"7534":7535,"7535":7536,"7536":7537,"7537":7538,"7538":7539,"7539":7540,"7540":7541,"7541":7542,"7542":7543,"7543":7544,"7544":7545,"7545":7546,"7546":7547,"7547":7548,"7548":7549,"7549":7550,"7550":7551,"7551":7552,"7552":7553,"7553":7554,"7554":7555,"7555":7556,"7556":7557,"7557":7558,"7558":7559,"7559":7560,"7560":7561,"7561":7562,"7562":7563,"7563":7564,"7564":7565,"7565":7566,"7566":7567,"7567":7568,"7568":7569,"7569":7570,"7570":7571,"7571":7572,"7572":7573,"7573":7574,"7574":7575,"7575":7576,"7576":7577,"7577":7578,"7578":7579,"7579":7580,"7580":7581,"7581":7582,"7582":7583,"7583":7584,"7584":7585,"7585":7586,"7586":7587,"7587":7588,"7588":7589,"7589":7590,"7590":7591,"7591":7592,"7592":7593,"7593":7594,"7594":7595,"7595":7596,"7596":7597,"7597":7598,"7598":7599,"7599":7600,"7600":7601,"7601":7602,"7602":7603,"7603":7604,"7604":7605,"7605":7606,"7606":7607,"7607":7608,"7608":7609,"7609":7610,"7610":7611,"7611":7612,"7612":7613,"7613":7614,"7614":7615,"7615":7616,"7616":7617,"7617":7618,"7618":7619,"7619":7620,"7620":7621,"7621":7622,"7622":7623,"7623":7624,"7624":7625,"7625":7626,"7626":7627,"7627":7628,"7628":7629,"7629":7630,"7630":7631,"7631":7632,"7632":7633,"7633":7634,"7634":7635,"7635":7636,"7636":7637,"7637":7638,"7638":7639,"7639":7640,"7640":7641,"7641":7642,"7642":7643,"7643":7644,"7644":7645,"7645":7646,"7646":7647,"7647":7648,"7648":7649,"7649":7650,"7650":7651,"7651":7652,"7652":7653,"7653":7654,"7654":7655,"7655":7656,"7656":7657,"7657":7658,"7658":7659,"7659":7660,"7660":7661,"7661":7662,"7662":7663,"7663":7664,"7664":7665,"7665":7666,"7666":7667,"7667":7668,"7668":7669,"7669":7670,"7670":7671,"7671":7672,"7672":7673,"7673":7674,"7674":7675,"7675":7676,"7676":7677,"7677":7678,"7678":7679,"7679":7680,"7680":7681,"7681":7682,"7682":7683,"7683":7684,"7684":7685,"7685":7686,"7686":7687,"7687":7688,"7688":7689,"7689":7690,"7690":7691,"7691":7692,"7692":7693,"7693":7694,"7694":7695,"7695":7696,"7696":7697,"7697":7698,"7698":7699,"7699":7700,"7700":7701,"7701":7702,"7702":7703,"7703":7704,"7704":7705,"7705":7706,"7706":7707,"7707":7708,"7708":7709,"7709":7710,"7710":7711,"7711":7712,"7712":7713,"7713":7714,"7714":7715,"7715":7716,"7716":7717,"7717":7718,"7718":7719,"7719":7720,"7720":7721,"7721":7722,"7722":7723,"7723":7724,"7724":7725,"7725":7726,"7726":7727,"7727":7728,"7728":7729,"7729":7730,"7730":7731,"7731":7732,"7732":7733,"7733":7734,"7734":7735,"7735":7736,"7736":7737,"7737":7738,"7738":7739,"7739":7740,"7740":7741,"7741":7742,"7742":7743,"7743":7744,"7744":7745,"7745":7746,"7746":7747,"7747":7748,"7748":7749,"7749":7750,"7750":7751,"7751":7752,"7752":7753,"7753":7754,"7754":7755,"7755":7756,"7756":7757,"7757":7758,"7758":7759,"7759":7760,"7760":7761,"7761":7762,"7762":7763,"7763":7764,"7764":7765,"7765":7766,"7766":7767,"7767":7768,"7768":7769,"7769":7770,"7770":7771,"7771":7772,"7772":7773,"7773":7774,"7774":7775,"7775":7776,"7776":7777,"7777":7778,"7778":7779,"7779":7780,"7780":7781,"7781":7782,"7782":7783,"7783":7784,"7784":7785,"7785":7786,"7786":7787,"7787":7788,"7788":7789,"7789":7790,"7790":7791,"7791":7792,"7792":7793,"7793":7794,"7794":7795,"7795":7796,"7796":7797,"7797":7798,"7798":7799,"7799":7800,"7800":7801,"7801":7802,"7802":7803,"7803":7804,"7804":7805,"7805":7806,"7806":7807,"7807":7808,"7808":7809,"7809":7810,"7810":7811,"7811":7812,"7812":7813,"7813":7814,"7814":7815,"7815":7816,"7816":7817,"7817":7818,"7818":7819,"7819":7820,"7820":7821,"7821":7822,"7822":7823,"7823":7824,"7824":7825,"7825":7826,"7826":7827,"7827":7828,"7828":7829,"7829":7830,"7830":7831,"7831":7832,"7832":7833,"7833":7834,"7834":7835,"7835":7836,"7836":7837,"7837":7838,"7838":7839,"7839":7840,"7840":7841,"7841":7842,"7842":7843,"7843":7844,"7844":7845,"7845":7846,"7846":7847,"7847":7848,"7848":7849,"7849":7850,"7850":7851,"7851":7852,"7852":7853,"7853":7854,"7854":7855,"7855":7856,"7856":7857,"7857":7858,"7858":7859,"7859":7860,"7860":7861,"7861":7862,"7862":7863,"7863":7864,"7864":7865,"7865":7866,"7866":7867,"7867":7868,"7868":7869,"7869":7870,"7870":7871,"7871":7872,"7872":7873,"7873":7874,"7874":7875,"7875":7876,"7876":7877,"7877":7878,"7878":7879,"7879":7880,"7880":7881,"7881":7882,"7882":7883,"7883":7884,"7884":7885,"7885":7886,"7886":7887,"7887":7888,"7888":7889,"7889":7890,"7890":7891,"7891":7892,"7892":7893,"7893":7894,"7894":7895,"7895":7896,"7896":7897,"7897":7898,"7898":7899,"7899":7900,"7900":7901,"7901":7902,"7902":7903,"7903":7904,"7904":7905,"7905":7906,"7906":7907,"7907":7908,"7908":7909,"7909":7910,"7910":7911,"7911":7912,"7912":7913,"7913":7914,"7914":7915,"7915":7916,"7916":7917,"7917":7918,"7918":7919,"7919":7920,"7920":7921,"7921":7922,"7922":7923,"7923":7924,"7924":7925,"7925":7926,"7926":7927,"7927":7928,"7928":7929,"7929":7930,"7930":7931,"7931":7932,"7932":7933,"7933":7934,"7934":7935,"7935":7936,"7936":7937,"7937":7938,"7938":7939,"7939":7940,"7940":7941,"7941":7942,"7942":7943,"7943":7944,"7944":7945,"7945":7946,"7946":7947,"7947":7948,"7948":7949,"7949":7950,"7950":7951,"7951":7952,"7952":7953,"7953":7954,"7954":7955,"7955":7956,"7956":7957,"7957":7958,"7958":7959,"7959":7960,"7960":7961,"7961":7962,"7962":7963,"7963":7964,"7964":7965,"7965":7966,"7966":7967,"7967":7968,"7968":7969,"7969":7970,"7970":7971,"7971":7972,"7972":7973,"7973":7974,"7974":7975,"7975":7976,"7976":7977,"7977":7978,"7978":7979,"7979":7980,"7980":7981,"7981":7982,"7982":7983,"7983":7984,"7984":7985,"7985":7986,"7986":7987,"7987":7988,"7988":7989,"7989":7990,"7990":7991,"7991":7992,"7992":7993,"7993":7994,"7994":7995,"7995":7996,"7996":7997,"7997":7998,"7998":7999,"7999":8000,"8000":8001,"8001":8002,"8002":8003,"8003":8004,"8004":8005,"8005":8006,"8006":8007,"8007":8008,"8008":8009,"8009":8010,"8010":8011,"8011":8012,"8012":8013,"8013":8014,"8014":8015,"8015":8016,"8016":8017,"8017":8018,"8018":8019,"8019":8020,"8020":8021,"8021":8022,"8022":8023,"8023":8024,"8024":8025,"8025":8026,"8026":8027,"8027":8028,"8028":8029,"8029":8030,"8030":8031,"8031":8032,"8032":8033,"8033":8034,"8034":8035,"8035":8036,"8036":8037,"8037":8038,"8038":8039,"8039":8040,"8040":8041,"8041":8042,"8042":8043,"8043":8044,"8044":8045,"8045":8046,"8046":8047,"8047":8048,"8048":8049,"8049":8050,"8050":8051,"8051":8052,"8052":8053,"8053":8054,"8054":8055,"8055":8056,"8056":8057,"8057":8058,"8058":8059,"8059":8060,"8060":8061,"8061":8062,"8062":8063,"8063":8064,"8064":8065,"8065":8066,"8066":8067,"8067":8068,"8068":8069,"8069":8070,"8070":8071,"8071":8072,"8072":8073,"8073":8074,"8074":8075,"8075":8076,"8076":8077,"8077":8078,"8078":8079,"8079":8080,"8080":8081,"8081":8082,"8082":8083,"8083":8084,"8084":8085,"8085":8086,"8086":8087,"8087":8088,"8088":8089,"8089":8090,"8090":8091,"8091":8092,"8092":8093,"8093":8094,"8094":8095,"8095":8096,"8096":8097,"8097":8098,"8098":8099,"8099":8100,"8100":8101,"8101":8102,"8102":8103,"8103":8104,"8104":8105,"8105":8106,"8106":8107,"8107":8108,"8108":8109,"8109":8110,"8110":8111,"8111":8112,"8112":8113,"8113":8114,"8114":8115,"8115":8116,"8116":8117,"8117":8118,"8118":8119,"8119":8120,"8120":8121,"8121":8122,"8122":8123,"8123":8124,"8124":8125,"8125":8126,"8126":8127,"8127":8128,"8128":8129,"8129":8130,"8130":8131,"8131":8132,"8132":8133,"8133":8134,"8134":8135,"8135":8136,"8136":8137,"8137":8138,"8138":8139,"8139":8140,"8140":8141,"8141":8142,"8142":8143,"8143":8144,"8144":8145,"8145":8146,"8146":8147,"8147":8148,"8148":8149,"8149":8150,"8150":8151,"8151":8152,"8152":8153,"8153":8154,"8154":8155,"8155":8156,"8156":8157,"8157":8158,"8158":8159,"8159":8160,"8160":8161,"8161":8162,"8162":8163,"8163":8164,"8164":8165,"8165":8166,"8166":8167,"8167":8168,"8168":8169,"8169":8170,"8170":8171,"8171":8172,"8172":8173,"8173":8174,"8174":8175,"8175":8176,"8176":8177,"8177":8178,"8178":8179,"8179":8180,"8180":8181,"8181":8182,"8182":8183,"8183":8184,"8184":8185,"8185":8186,"8186":8187,"8187":8188,"8188":8189,"8189":8190,"8190":8191,"8191":8192,"8192":8193,"8193":8194,"8194":8195,"8195":8196,"8196":8197,"8197":8198,"8198":8199,"8199":8200,"8200":8201,"8201":8202,"8202":8203,"8203":8204,"8204":8205,"8205":8206,"8206":8207,"8207":8208,"8208":8209,"8209":8210,"8210":8211,"8211":8212,"8212":8213,"8213":8214,"8214":8215,"8215":8216,"8216":8217,"8217":8218,"8218":8219,"8219":8220,"8220":8221,"8221":8222,"8222":8223,"8223":8224,"8224":8225,"8225":8226,"8226":8227,"8227":8228,"8228":8229,"8229":8230,"8230":8231,"8231":8232,"8232":8233,"8233":8234,"8234":8235,"8235":8236,"8236":8237,"8237":8238,"8238":8239,"8239":8240,"8240":8241,"8241":8242,"8242":8243,"8243":8244,"8244":8245,"8245":8246,"8246":8247,"8247":8248,"8248":8249,"8249":8250,"8250":8251,"8251":8252,"8252":8253,"8253":8254,"8254":8255,"8255":8256,"8256":8257,"8257":8258,"8258":8259,"8259":8260,"8260":8261,"8261":8262,"8262":8263,"8263":8264,"8264":8265,"8265":8266,"8266":8267,"8267":8268,"8268":8269,"8269":8270,"8270":8271,"8271":8272,"8272":8273,"8273":8274,"8274":8275,"8275":8276,"8276":8277,"8277":8278,"8278":8279,"8279":8280,"8280":8281,"8281":8282,"8282":8283,"8283":8284,"8284":8285,"8285":8286,"8286":8287,"8287":8288,"8288":8289,"8289":8290,"8290":8291,"8291":8292,"8292":8293,"8293":8294,"8294":8295,"8295":8296,"8296":8297,"8297":8298,"8298":8299,"8299":8300,"8300":8301,"8301":8302,"8302":8303,"8303":8304,"8304":8305,"8305":8306,"8306":8307,"8307":8308,"8308":8309,"8309":8310,"8310":8311,"8311":8312,"8312":8313,"8313":8314,"8314":8315,"8315":8316,"8316":8317,"8317":8318,"8318":8319,"8319":8320,"8320":8321,"8321":8322,"8322":8323,"8323":8324,"8324":8325,"8325":8326,"8326":8327,"8327":8328,"8328":8329,"8329":8330,"8330":8331,"8331":8332,"8332":8333,"8333":8334,"8334":8335,"8335":8336,"8336":8337,"8337":8338,"8338":8339,"8339":8340,"8340":8341,"8341":8342,"8342":8343,"8343":8344,"8344":8345,"8345":8346,"8346":8347,"8347":8348,"8348":8349,"8349":8350,"8350":8351,"8351":8352,"8352":8353,"8353":8354,"8354":8355,"8355":8356,"8356":8357,"8357":8358,"8358":8359,"8359":8360,"8360":8361,"8361":8362,"8362":8363,"8363":8364,"8364":8365,"8365":8366,"8366":8367,"8367":8368,"8368":8369,"8369":8370,"8370":8371,"8371":8372,"8372":8373,"8373":8374,"8374":8375,"8375":8376,"8376":8377,"8377":8378,"8378":8379,"8379":8380,"8380":8381,"8381":8382,"8382":8383,"8383":8384,"8384":8385,"8385":8386,"8386":8387,"8387":8388,"8388":8389,"8389":8390,"8390":8391,"8391":8392,"8392":8393,"8393":8394,"8394":8395,"8395":8396,"8396":8397,"8397":8398,"8398":8399,"8399":8400,"8400":8401,"8401":8402,"8402":8403,"8403":8404,"8404":8405,"8405":8406,"8406":8407,"8407":8408,"8408":8409,"8409":8410,"8410":8411,"8411":8412,"8412":8413,"8413":8414,"8414":8415,"8415":8416,"8416":8417,"8417":8418,"8418":8419,"8419":8420,"8420":8421,"8421":8422,"8422":8423,"8423":8424,"8424":8425,"8425":8426,"8426":8427,"8427":8428,"8428":8429,"8429":8430,"8430":8431,"8431":8432,"8432":8433,"8433":8434,"8434":8435,"8435":8436,"8436":8437,"8437":8438,"8438":8439,"8439":8440,"8440":8441,"8441":8442,"8442":8443,"8443":8444,"8444":8445,"8445":8446,"8446":8447,"8447":8448,"8448":8449,"8449":8450,"8450":8451,"8451":8452,"8452":8453,"8453":8454,"8454":8455,"8455":8456,"8456":8457,"8457":8458,"8458":8459,"8459":8460,"8460":8461,"8461":8462,"8462":8463,"8463":8464,"8464":8465,"8465":8466,"8466":8467,"8467":8468,"8468":8469,"8469":8470,"8470":8471,"8471":8472,"8472":8473,"8473":8474,"8474":8475,"8475":8476,"8476":8477,"8477":8478,"8478":8479,"8479":8480,"8480":8481,"8481":8482,"8482":8483,"8483":8484,"8484":8485,"8485":8486,"8486":8487,"8487":8488,"8488":8489,"8489":8490,"8490":8491,"8491":8492,"8492":8493,"8493":8494,"8494":8495,"8495":8496,"8496":8497,"8497":8498,"8498":8499,"8499":8500,"8500":8501,"8501":8502,"8502":8503,"8503":8504,"8504":8505,"8505":8506,"8506":8507,"8507":8508,"8508":8509,"8509":8510,"8510":8511,"8511":8512,"8512":8513,"8513":8514,"8514":8515,"8515":8516,"8516":8517,"8517":8518,"8518":8519,"8519":8520,"8520":8521,"8521":8522,"8522":8523,"8523":8524,"8524":8525,"8525":8526,"8526":8527,"8527":8528,"8528":8529,"8529":8530,"8530":8531,"8531":8532,"8532":8533,"8533":8534,"8534":8535,"8535":8536,"8536":8537,"8537":8538,"8538":8539,"8539":8540,"8540":8541,"8541":8542,"8542":8543,"8543":8544,"8544":8545,"8545":8546,"8546":8547,"8547":8548,"8548":8549,"8549":8550,"8550":8551,"8551":8552,"8552":8553,"8553":8554,"8554":8555,"8555":8556,"8556":8557,"8557":8558,"8558":8559,"8559":8560,"8560":8561,"8561":8562,"8562":8563,"8563":8564,"8564":8565,"8565":8566,"8566":8567,"8567":8568,"8568":8569,"8569":8570,"8570":8571,"8571":8572,"8572":8573,"8573":8574,"8574":8575,"8575":8576,"8576":8577,"8577":8578,"8578":8579,"8579":8580,"8580":8581,"8581":8582,"8582":8583,"8583":8584,"8584":8585,"8585":8586,"8586":8587,"8587":8588,"8588":8589,"8589":8590,"8590":8591,"8591":8592,"8592":8593,"8593":8594,"8594":8595,"8595":8596,"8596":8597,"8597":8598,"8598":8599,"8599":8600,"8600":8601,"8601":8602,"8602":8603,"8603":8604,"8604":8605,"8605":8606,"8606":8607,"8607":8608,"8608":8609,"8609":8610,"8610":8611,"8611":8612,"8612":8613,"8613":8614,"8614":8615,"8615":8616,"8616":8617,"8617":8618,"8618":8619,"8619":8620,"8620":8621,"8621":8622,"8622":8623,"8623":8624,"8624":8625,"8625":8626,"8626":8627,"8627":8628,"8628":8629,"8629":8630,"8630":8631,"8631":8632,"8632":8633,"8633":8634,"8634":8635,"8635":8636,"8636":8637,"8637":8638,"8638":8639,"8639":8640,"8640":8641,"8641":8642,"8642":8643,"8643":8644,"8644":8645,"8645":8646,"8646":8647,"8647":8648,"8648":8649,"8649":8650,"8650":8651,"8651":8652,"8652":8653,"8653":8654,"8654":8655,"8655":8656,"8656":8657,"8657":8658,"8658":8659,"8659":8660,"8660":8661,"8661":8662,"8662":8663,"8663":8664,"8664":8665,"8665":8666,"8666":8667,"8667":8668,"8668":8669,"8669":8670,"8670":8671,"8671":8672,"8672":8673,"8673":8674,"8674":8675,"8675":8676,"8676":8677,"8677":8678,"8678":8679,"8679":8680,"8680":8681,"8681":8682,"8682":8683,"8683":8684,"8684":8685,"8685":8686,"8686":8687,"8687":8688,"8688":8689,"8689":8690,"8690":8691,"8691":8692,"8692":8693,"8693":8694,"8694":8695,"8695":8696,"8696":8697,"8697":8698,"8698":8699,"8699":8700,"8700":8701,"8701":8702,"8702":8703,"8703":8704,"8704":8705,"8705":8706,"8706":8707,"8707":8708,"8708":8709,"8709":8710,"8710":8711,"8711":8712,"8712":8713,"8713":8714,"8714":8715,"8715":8716,"8716":8717,"8717":8718,"8718":8719,"8719":8720,"8720":8721,"8721":8722,"8722":8723,"8723":8724,"8724":8725,"8725":8726,"8726":8727,"8727":8728,"8728":8729,"8729":8730,"8730":8731,"8731":8732,"8732":8733,"8733":8734,"8734":8735,"8735":8736,"8736":8737,"8737":8738,"8738":8739,"8739":8740,"8740":8741,"8741":8742,"8742":8743,"8743":8744,"8744":8745,"8745":8746,"8746":8747,"8747":8748,"8748":8749,"8749":8750,"8750":8751,"8751":8752,"8752":8753,"8753":8754,"8754":8755,"8755":8756,"8756":8757,"8757":8758,"8758":8759,"8759":8760,"8760":8761,"8761":8762,"8762":8763,"8763":8764,"8764":8765,"8765":8766,"8766":8767,"8767":8768,"8768":8769,"8769":8770,"8770":8771,"8771":8772,"8772":8773,"8773":8774,"8774":8775,"8775":8776,"8776":8777,"8777":8778,"8778":8779,"8779":8780,"8780":8781,"8781":8782,"8782":8783,"8783":8784,"8784":8785,"8785":8786,"8786":8787,"8787":8788,"8788":8789,"8789":8790,"8790":8791,"8791":8792,"8792":8793,"8793":8794,"8794":8795,"8795":8796,"8796":8797,"8797":8798,"8798":8799,"8799":8800,"8800":8801,"8801":8802,"8802":8803,"8803":8804,"8804":8805,"8805":8806,"8806":8807,"8807":8808,"8808":8809,"8809":8810,"8810":8811,"8811":8812,"8812":8813,"8813":8814,"8814":8815,"8815":8816,"8816":8817,"8817":8818,"8818":8819,"8819":8820,"8820":8821,"8821":8822,"8822":8823,"8823":8824,"8824":8825,"8825":8826,"8826":8827,"8827":8828,"8828":8829,"8829":8830,"8830":8831,"8831":8832,"8832":8833,"8833":8834,"8834":8835,"8835":8836,"8836":8837,"8837":8838,"8838":8839,"8839":8840,"8840":8841,"8841":8842,"8842":8843,"8843":8844,"8844":8845,"8845":8846,"8846":8847,"8847":8848,"8848":8849,"8849":8850,"8850":8851,"8851":8852,"8852":8853,"8853":8854,"8854":8855,"8855":8856,"8856":8857,"8857":8858,"8858":8859,"8859":8860,"8860":8861,"8861":8862,"8862":8863,"8863":8864,"8864":8865,"8865":8866,"8866":8867,"8867":8868,"8868":8869,"8869":8870,"8870":8871,"8871":8872,"8872":8873,"8873":8874,"8874":8875,"8875":8876,"8876":8877,"8877":8878,"8878":8879,"8879":8880,"8880":8881,"8881":8882,"8882":8883,"8883":8884,"8884":8885,"8885":8886,"8886":8887,"8887":8888,"8888":8889,"8889":8890,"8890":8891,"8891":8892,"8892":8893,"8893":8894,"8894":8895,"8895":8896,"8896":8897,"8897":8898,"8898":8899,"8899":8900,"8900":8901,"8901":8902,"8902":8903,"8903":8904,"8904":8905,"8905":8906,"8906":8907,"8907":8908,"8908":8909,"8909":8910,"8910":8911,"8911":8912,"8912":8913,"8913":8914,"8914":8915,"8915":8916,"8916":8917,"8917":8918,"8918":8919,"8919":8920,"8920":8921,"8921":8922,"8922":8923,"8923":8924,"8924":8925,"8925":8926,"8926":8927,"8927":8928,"8928":8929,"8929":8930,"8930":8931,"8931":8932,"8932":8933,"8933":8934,"8934":8935,"8935":8936,"8936":8937,"8937":8938,"8938":8939,"8939":8940,"8940":8941,"8941":8942,"8942":8943,"8943":8944,"8944":8945,"8945":8946,"8946":8947,"8947":8948,"8948":8949,"8949":8950,"8950":8951,"8951":8952,"8952":8953,"8953":8954,"8954":8955,"8955":8956,"8956":8957,"8957":8958,"8958":8959,"8959":8960,"8960":8961,"8961":8962,"8962":8963,"8963":8964,"8964":8965,"8965":8966,"8966":8967,"8967":8968,"8968":8969,"8969":8970,"8970":8971,"8971":8972,"8972":8973,"8973":8974,"8974":8975,"8975":8976,"8976":8977,"8977":8978,"8978":8979,"8979":8980,"8980":8981,"8981":8982,"8982":8983,"8983":8984,"8984":8985,"8985":8986,"8986":8987,"8987":8988,"8988":8989,"8989":8990,"8990":8991,"8991":8992,"8992":8993,"8993":8994,"8994":8995,"8995":8996,"8996":8997,"8997":8998,"8998":8999,"8999":9000,"9000":9001,"9001":9002,"9002":9003,"9003":9004,"9004":9005,"9005":9006,"9006":9007,"9007":9008,"9008":9009,"9009":9010,"9010":9011,"9011":9012,"9012":9013,"9013":9014,"9014":9015,"9015":9016,"9016":9017,"9017":9018,"9018":9019,"9019":9020,"9020":9021,"9021":9022,"9022":9023,"9023":9024,"9024":9025,"9025":9026,"9026":9027,"9027":9028,"9028":9029,"9029":9030,"9030":9031,"9031":9032,"9032":9033,"9033":9034,"9034":9035,"9035":9036,"9036":9037,"9037":9038,"9038":9039,"9039":9040,"9040":9041,"9041":9042,"9042":9043,"9043":9044,"9044":9045,"9045":9046,"9046":9047,"9047":9048,"9048":9049,"9049":9050,"9050":9051,"9051":9052,"9052":9053,"9053":9054,"9054":9055,"9055":9056,"9056":9057,"9057":9058,"9058":9059,"9059":9060,"9060":9061,"9061":9062,"9062":9063,"9063":9064,"9064":9065,"9065":9066,"9066":9067,"9067":9068,"9068":9069,"9069":9070,"9070":9071,"9071":9072,"9072":9073,"9073":9074,"9074":9075,"9075":9076,"9076":9077,"9077":9078,"9078":9079,"9079":9080,"9080":9081,"9081":9082,"9082":9083,"9083":9084,"9084":9085,"9085":9086,"9086":9087,"9087":9088,"9088":9089,"9089":9090,"9090":9091,"9091":9092,"9092":9093,"9093":9094,"9094":9095,"9095":9096,"9096":9097,"9097":9098,"9098":9099,"9099":9100,"9100":9101,"9101":9102,"9102":9103,"9103":9104,"9104":9105,"9105":9106,"9106":9107,"9107":9108,"9108":9109,"9109":9110,"9110":9111,"9111":9112,"9112":9113,"9113":9114,"9114":9115,"9115":9116,"9116":9117,"9117":9118,"9118":9119,"9119":9120,"9120":9121,"9121":9122,"9122":9123,"9123":9124,"9124":9125,"9125":9126,"9126":9127,"9127":9128,"9128":9129,"9129":9130,"9130":9131,"9131":9132,"9132":9133,"9133":9134,"9134":9135,"9135":9136,"9136":9137,"9137":9138,"9138":9139,"9139":9140,"9140":9141,"9141":9142,"9142":9143,"9143":9144,"9144":9145,"9145":9146,"9146":9147,"9147":9148,"9148":9149,"9149":9150,"9150":9151,"9151":9152,"9152":9153,"9153":9154,"9154":9155,"9155":9156,"9156":9157,"9157":9158,"9158":9159,"9159":9160,"9160":9161,"9161":9162,"9162":9163,"9163":9164,"9164":9165,"9165":9166,"9166":9167,"9167":9168,"9168":9169,"9169":9170,"9170":9171,"9171":9172,"9172":9173,"9173":9174,"9174":9175,"9175":9176,"9176":9177,"9177":9178,"9178":9179,"9179":9180,"9180":9181,"9181":9182,"9182":9183,"9183":9184,"9184":9185,"9185":9186,"9186":9187,"9187":9188,"9188":9189,"9189":9190,"9190":9191,"9191":9192,"9192":9193,"9193":9194,"9194":9195,"9195":9196,"9196":9197,"9197":9198,"9198":9199,"9199":9200,"9200":9201,"9201":9202,"9202":9203,"9203":9204,"9204":9205,"9205":9206,"9206":9207,"9207":9208,"9208":9209,"9209":9210,"9210":9211,"9211":9212,"9212":9213,"9213":9214,"9214":9215,"9215":9216,"9216":9217,"9217":9218,"9218":9219,"9219":9220,"9220":9221,"9221":9222,"9222":9223,"9223":9224,"9224":9225,"9225":9226,"9226":9227,"9227":9228,"9228":9229,"9229":9230,"9230":9231,"9231":9232,"9232":9233,"9233":9234,"9234":9235,"9235":9236,"9236":9237,"9237":9238,"9238":9239,"9239":9240,"9240":9241,"9241":9242,"9242":9243,"9243":9244,"9244":9245,"9245":9246,"9246":9247,"9247":9248,"9248":9249,"9249":9250,"9250":9251,"9251":9252,"9252":9253,"9253":9254,"9254":9255,"9255":9256,"9256":9257,"9257":9258,"9258":9259,"9259":9260,"9260":9261,"9261":9262,"9262":9263,"9263":9264,"9264":9265,"9265":9266,"9266":9267,"9267":9268,"9268":9269,"9269":9270,"9270":9271,"9271":9272,"9272":9273,"9273":9274,"9274":9275,"9275":9276,"9276":9277,"9277":9278,"9278":9279,"9279":9280,"9280":9281,"9281":9282,"9282":9283,"9283":9284,"9284":9285,"9285":9286,"9286":9287,"9287":9288,"9288":9289,"9289":9290,"9290":9291,"9291":9292,"9292":9293,"9293":9294,"9294":9295,"9295":9296,"9296":9297,"9297":9298,"9298":9299,"9299":9300,"9300":9301,"9301":9302,"9302":9303,"9303":9304,"9304":9305,"9305":9306,"9306":9307,"9307":9308,"9308":9309,"9309":9310,"9310":9311,"9311":9312,"9312":9313,"9313":9314,"9314":9315,"9315":9316,"9316":9317,"9317":9318,"9318":9319,"9319":9320,"9320":9321,"9321":9322,"9322":9323,"9323":9324,"9324":9325,"9325":9326,"9326":9327,"9327":9328,"9328":9329,"9329":9330,"9330":9331,"9331":9332,"9332":9333,"9333":9334,"9334":9335,"9335":9336,"9336":9337,"9337":9338,"9338":9339,"9339":9340,"9340":9341,"9341":9342,"9342":9343,"9343":9344,"9344":9345,"9345":9346,"9346":9347,"9347":9348,"9348":9349,"9349":9350,"9350":9351,"9351":9352,"9352":9353,"9353":9354,"9354":9355,"9355":9356,"9356":9357,"9357":9358,"9358":9359,"9359":9360,"9360":9361,"9361":9362,"9362":9363,"9363":9364,"9364":9365,"9365":9366,"9366":9367,"9367":9368,"9368":9369,"9369":9370,"9370":9371,"9371":9372,"9372":9373,"9373":9374,"9374":9375,"9375":9376,"9376":9377,"9377":9378,"9378":9379,"9379":9380,"9380":9381,"9381":9382,"9382":9383,"9383":9384,"9384":9385,"9385":9386,"9386":9387,"9387":9388,"9388":9389,"9389":9390,"9390":9391,"9391":9392,"9392":9393,"9393":9394,"9394":9395,"9395":9396,"9396":9397,"9397":9398,"9398":9399,"9399":9400,"9400":9401,"9401":9402,"9402":9403,"9403":9404,"9404":9405,"9405":9406,"9406":9407,"9407":9408,"9408":9409,"9409":9410,"9410":9411,"9411":9412,"9412":9413,"9413":9414,"9414":9415,"9415":9416,"9416":9417,"9417":9418,"9418":9419,"9419":9420,"9420":9421,"9421":9422,"9422":9423,"9423":9424,"9424":9425,"9425":9426,"9426":9427,"9427":9428,"9428":9429,"9429":9430,"9430":9431,"9431":9432,"9432":9433,"9433":9434,"9434":9435,"9435":9436,"9436":9437,"9437":9438,"9438":9439,"9439":9440,"9440":9441,"9441":9442,"9442":9443,"9443":9444,"9444":9445,"9445":9446,"9446":9447,"9447":9448,"9448":9449,"9449":9450,"9450":9451,"9451":9452,"9452":9453,"9453":9454,"9454":9455,"9455":9456,"9456":9457,"9457":9458,"9458":9459,"9459":9460,"9460":9461,"9461":9462,"9462":9463,"9463":9464,"9464":9465,"9465":9466,"9466":9467,"9467":9468,"9468":9469,"9469":9470,"9470":9471,"9471":9472,"9472":9473,"9473":9474,"9474":9475,"9475":9476,"9476":9477,"9477":9478,"9478":9479,"9479":9480,"9480":9481,"9481":9482,"9482":9483,"9483":9484,"9484":9485,"9485":9486,"9486":9487,"9487":9488,"9488":9489,"9489":9490,"9490":9491,"9491":9492,"9492":9493,"9493":9494,"9494":9495,"9495":9496,"9496":9497,"9497":9498,"9498":9499,"9499":9500,"9500":9501,"9501":9502,"9502":9503,"9503":9504,"9504":9505,"9505":9506,"9506":9507,"9507":9508,"9508":9509,"9509":9510,"9510":9511,"9511":9512,"9512":9513,"9513":9514,"9514":9515,"9515":9516,"9516":9517,"9517":9518,"9518":9519,"9519":9520,"9520":9521,"9521":9522,"9522":9523,"9523":9524,"9524":9525,"9525":9526,"9526":9527,"9527":9528,"9528":9529,"9529":9530,"9530":9531,"9531":9532,"9532":9533,"9533":9534,"9534":9535,"9535":9536,"9536":9537,"9537":9538,"9538":9539,"9539":9540,"9540":9541,"9541":9542,"9542":9543,"9543":9544,"9544":9545,"9545":9546,"9546":9547,"9547":9548,"9548":9549,"9549":9550,"9550":9551,"9551":9552,"9552":9553,"9553":9554,"9554":9555,"9555":9556,"9556":9557,"9557":9558,"9558":9559,"9559":9560,"9560":9561,"9561":9562,"9562":9563,"9563":9564,"9564":9565,"9565":9566,"9566":9567,"9567":9568,"9568":9569,"9569":9570,"9570":9571,"9571":9572,"9572":9573,"9573":9574,"9574":9575,"9575":9576,"9576":9577,"9577":9578,"9578":9579,"9579":9580,"9580":9581,"9581":9582,"9582":9583,"9583":9584,"9584":9585,"9585":9586,"9586":9587,"9587":9588,"9588":9589,"9589":9590,"9590":9591,"9591":9592,"9592":9593,"9593":9594,"9594":9595,"9595":9596,"9596":9597,"9597":9598,"9598":9599,"9599":9600,"9600":9601,"9601":9602,"9602":9603,"9603":9604,"9604":9605,"9605":9606,"9606":9607,"9607":9608,"9608":9609,"9609":9610,"9610":9611,"9611":9612,"9612":9613,"9613":9614,"9614":9615,"9615":9616,"9616":9617,"9617":9618,"9618":9619,"9619":9620,"9620":9621,"9621":9622,"9622":9623,"9623":9624,"9624":9625,"9625":9626,"9626":9627,"9627":9628,"9628":9629,"9629":9630,"9630":9631,"9631":9632,"9632":9633,"9633":9634,"9634":9635,"9635":9636,"9636":9637,"9637":9638,"9638":9639,"9639":9640,"9640":9641,"9641":9642,"9642":9643,"9643":9644,"9644":9645,"9645":9646,"9646":9647,"9647":9648,"9648":9649,"9649":9650,"9650":9651,"9651":9652,"9652":9653,"9653":9654,"9654":9655,"9655":9656,"9656":9657,"9657":9658,"9658":9659,"9659":9660,"9660":9661,"9661":9662,"9662":9663,"9663":9664,"9664":9665,"9665":9666,"9666":9667,"9667":9668,"9668":9669,"9669":9670,"9670":9671,"9671":9672,"9672":9673,"9673":9674,"9674":9675,"9675":9676,"9676":9677,"9677":9678,"9678":9679,"9679":9680,"9680":9681,"9681":9682,"9682":9683,"9683":9684,"9684":9685,"9685":9686,"9686":9687,"9687":9688,"9688":9689,"9689":9690,"9690":9691,"9691":9692,"9692":9693,"9693":9694,"9694":9695,"9695":9696,"9696":9697,"9697":9698,"9698":9699,"9699":9700,"9700":9701,"9701":9702,"9702":9703,"9703":9704,"9704":9705,"9705":9706,"9706":9707,"9707":9708,"9708":9709,"9709":9710,"9710":9711,"9711":9712,"9712":9713,"9713":9714,"9714":9715,"9715":9716,"9716":9717,"9717":9718,"9718":9719,"9719":9720,"9720":9721,"9721":9722,"9722":9723,"9723":9724,"9724":9725,"9725":9726,"9726":9727,"9727":9728,"9728":9729,"9729":9730,"9730":9731,"9731":9732,"9732":9733,"9733":9734,"9734":9735,"9735":9736,"9736":9737,"9737":9738,"9738":9739,"9739":9740,"9740":9741,"9741":9742,"9742":9743,"9743":9744,"9744":9745,"9745":9746,"9746":9747,"9747":9748,"9748":9749,"9749":9750,"9750":9751,"9751":9752,"9752":9753,"9753":9754,"9754":9755,"9755":9756,"9756":9757,"9757":9758,"9758":9759,"9759":9760,"9760":9761,"9761":9762,"9762":9763,"9763":9764,"9764":9765,"9765":9766,"9766":9767,"9767":9768,"9768":9769,"9769":9770,"9770":9771,"9771":9772,"9772":9773,"9773":9774,"9774":9775,"9775":9776,"9776":9777,"9777":9778,"9778":9779,"9779":9780,"9780":9781,"9781":9782,"9782":9783,"9783":9784,"9784":9785,"9785":9786,"9786":9787,"9787":9788,"9788":9789,"9789":9790,"9790":9791,"9791":9792,"9792":9793,"9793":9794,"9794":9795,"9795":9796,"9796":9797,"9797":9798,"9798":9799,"9799":9800,"9800":9801,"9801":9802,"9802":9803,"9803":9804,"9804":9805,"9805":9806,"9806":9807,"9807":9808,"9808":9809,"9809":9810,"9810":9811,"9811":9812,"9812":9813,"9813":9814,"9814":9815,"9815":9816,"9816":9817,"9817":9818,"9818":9819,"9819":9820,"9820":9821,"9821":9822,"9822":9823,"9823":9824,"9824":9825,"9825":9826,"9826":9827,"9827":9828,"9828":9829,"9829":9830,"9830":9831,"9831":9832,"9832":9833,"9833":9834,"9834":9835,"9835":9836,"9836":9837,"9837":9838,"9838":9839,"9839":9840,"9840":9841,"9841":9842,"9842":9843,"9843":9844,"9844":9845,"9845":9846,"9846":9847,"9847":9848,"9848":9849,"9849":9850,"9850":9851,"9851":9852,"9852":9853,"9853":9854,"9854":9855,"9855":9856,"9856":9857,"9857":9858,"9858":9859,"9859":9860,"9860":9861,"9861":9862,"9862":9863,"9863":9864,"9864":9865,"9865":9866,"9866":9867,"9867":9868,"9868":9869,"9869":9870,"9870":9871,"9871":9872,"9872":9873,"9873":9874,"9874":9875,"9875":9876,"9876":9877,"9877":9878,"9878":9879,"9879":9880,"9880":9881,"9881":9882,"9882":9883,"9883":9884,"9884":9885,"9885":9886,"9886":9887,"9887":9888,"9888":9889,"9889":9890,"9890":9891,"9891":9892,"9892":9893,"9893":9894,"9894":9895,"9895":9896,"9896":9897,"9897":9898,"9898":9899,"9899":9900,"9900":9901,"9901":9902,"9902":9903,"9903":9904,"9904":9905,"9905":9906,"9906":9907,"9907":9908,"9908":9909,"9909":9910,"9910":9911,"9911":9912,"9912":9913,"9913":9914,"9914":9915,"9915":9916,"9916":9917,"9917":9918,"9918":9919,"9919":9920,"9920":9921,"9921":9922,"9922":9923,"9923":9924,"9924":9925,"9925":9926,"9926":9927,"9927":9928,"9928":9929,"9929":9930,"9930":9931,"9931":9932,"9932":9933,"9933":9934,"9934":9935,"9935":9936,"9936":9937,"9937":9938,"9938":9939,"9939":9940,"9940":9941,"9941":9942,"9942":9943,"9943":9944,"9944":9945,"9945":9946,"9946":9947,"9947":9948,"9948":9949,"9949":9950,"9950":9951,"9951":9952,"9952":9953,"9953":9954,"9954":9955,"9955":9956,"9956":9957,"9957":9958,"9958":9959,"9959":9960,"9960":9961,"9961":9962,"9962":9963,"9963":9964,"9964":9965,"9965":9966,"9966":9967,"9967":9968,"9968":9969,"9969":9970,"9970":9971,"9971":9972,"9972":9973,"9973":9974,"9974":9975,"9975":9976,"9976":9977,"9977":9978,"9978":9979,"9979":9980,"9980":9981,"9981":9982,"9982":9983,"9983":9984,"9984":9985,"9985":9986,"9986":9987,"9987":9988,"9988":9989,"9989":9990,"9990":9991,"9991":9992,"9992":9993,"9993":9994,"9994":9995,"9995":9996,"9996":9997,"9997":9998,"9998":9999,"9999":10000,"10000":10001,"10001":10002,"10002":10003,"10003":10004,"10004":10005,"10005":10006,"10006":10007,"10007":10008,"10008":10009,"10009":10010,"10010":10011,"10011":10012,"10012":10013,"10013":10014,"10014":10015,"10015":10016,"10016":10017,"10017":10018,"10018":10019,"10019":10020,"10020":10021,"10021":10022,"10022":10023,"10023":10024,"10024":10025,"10025":10026,"10026":10027,"10027":10028,"10028":10029,"10029":10030,"10030":10031,"10031":10032,"10032":10033,"10033":10034,"10034":10035,"10035":10036,"10036":10037,"10037":10038,"10038":10039,"10039":10040,"10040":10041,"10041":10042,"10042":10043,"10043":10044,"10044":10045,"10045":10046,"10046":10047,"10047":10048,"10048":10049,"10049":10050,"10050":10051,"10051":10052,"10052":10053,"10053":10054,"10054":10055,"10055":10056,"10056":10057,"10057":10058,"10058":10059,"10059":10060,"10060":10061,"10061":10062,"10062":10063,"10063":10064,"10064":10065,"10065":10066,"10066":10067,"10067":10068,"10068":10069,"10069":10070,"10070":10071,"10071":10072,"10072":10073,"10073":10074,"10074":10075,"10075":10076,"10076":10077,"10077":10078,"10078":10079,"10079":10080,"10080":10081,"10081":10082,"10082":10083,"10083":10084,"10084":10085,"10085":10086,"10086":10087,"10087":10088,"10088":10089,"10089":10090,"10090":10091,"10091":10092,"10092":10093,"10093":10094,"10094":10095,"10095":10096,"10096":10097,"10097":10098,"10098":10099,"10099":10100,"10100":10101,"10101":10102,"10102":10103,"10103":10104,"10104":10105,"10105":10106,"10106":10107,"10107":10108,"10108":10109,"10109":10110,"10110":10111,"10111":10112,"10112":10113,"10113":10114,"10114":10115,"10115":10116,"10116":10117,"10117":10118,"10118":10119,"10119":10120,"10120":10121,"10121":10122,"10122":10123,"10123":10124,"10124":10125,"10125":10126,"10126":10127,"10127":10128,"10128":10129,"10129":10130,"10130":10131,"10131":10132,"10132":10133,"10133":10134,"10134":10135,"10135":10136,"10136":10137,"10137":10138,"10138":10139,"10139":10140,"10140":10141,"10141":10142,"10142":10143,"10143":10144,"10144":10145,"10145":10146,"10146":10147,"10147":10148,"10148":10149,"10149":10150,"10150":10151,"10151":10152,"10152":10153,"10153":10154,"10154":10155,"10155":10156,"10156":10157,"10157":10158,"10158":10159,"10159":10160,"10160":10161,"10161":10162,"10162":10163,"10163":10164,"10164":10165,"10165":10166,"10166":10167,"10167":10168,"10168":10169,"10169":10170,"10170":10171,"10171":10172,"10172":10173,"10173":10174,"10174":10175,"10175":10176,"10176":10177,"10177":10178,"10178":10179,"10179":10180,"10180":10181,"10181":10182,"10182":10183,"10183":10184,"10184":10185,"10185":10186,"10186":10187,"10187":10188,"10188":10189,"10189":10190,"10190":10191,"10191":10192,"10192":10193,"10193":10194,"10194":10195,"10195":10196,"10196":10197,"10197":10198,"10198":10199,"10199":10200,"10200":10201,"10201":10202,"10202":10203,"10203":10204,"10204":10205,"10205":10206,"10206":10207,"10207":10208,"10208":10209,"10209":10210,"10210":10211,"10211":10212,"10212":10213,"10213":10214,"10214":10215,"10215":10216,"10216":10217,"10217":10218,"10218":10219,"10219":10220,"10220":10221,"10221":10222,"10222":10223,"10223":10224,"10224":10225,"10225":10226,"10226":10227,"10227":10228,"10228":10229,"10229":10230,"10230":10231,"10231":10232,"10232":10233,"10233":10234,"10234":10235,"10235":10236,"10236":10237,"10237":10238,"10238":10239,"10239":10240,"10240":10241,"10241":10242,"10242":10243,"10243":10244,"10244":10245,"10245":10246,"10246":10247,"10247":10248,"10248":10249,"10249":10250,"10250":10251,"10251":10252,"10252":10253,"10253":10254,"10254":10255,"10255":10256,"10256":10257,"10257":10258,"10258":10259,"10259":10260,"10260":10261,"10261":10262,"10262":10263,"10263":10264,"10264":10265,"10265":10266,"10266":10267,"10267":10268,"10268":10269,"10269":10270,"10270":10271,"10271":10272,"10272":10273,"10273":10274,"10274":10275,"10275":10276,"10276":10277,"10277":10278,"10278":10279,"10279":10280,"10280":10281,"10281":10282,"10282":10283,"10283":10284,"10284":10285,"10285":10286,"10286":10287,"10287":10288,"10288":10289,"10289":10290,"10290":10291,"10291":10292,"10292":10293,"10293":10294,"10294":10295,"10295":10296,"10296":10297,"10297":10298,"10298":10299,"10299":10300,"10300":10301,"10301":10302,"10302":10303,"10303":10304,"10304":10305,"10305":10306,"10306":10307,"10307":10308,"10308":10309,"10309":10310,"10310":10311,"10311":10312,"10312":10313,"10313":10314,"10314":10315,"10315":10316,"10316":10317,"10317":10318,"10318":10319,"10319":10320,"10320":10321,"10321":10322,"10322":10323,"10323":10324,"10324":10325,"10325":10326,"10326":10327,"10327":10328,"10328":10329,"10329":10330,"10330":10331,"10331":10332,"10332":10333,"10333":10334,"10334":10335,"10335":10336,"10336":10337,"10337":10338,"10338":10339,"10339":10340,"10340":10341,"10341":10342,"10342":10343,"10343":10344,"10344":10345,"10345":10346,"10346":10347,"10347":10348,"10348":10349,"10349":10350,"10350":10351,"10351":10352,"10352":10353,"10353":10354,"10354":10355,"10355":10356,"10356":10357,"10357":10358,"10358":10359,"10359":10360,"10360":10361,"10361":10362,"10362":10363,"10363":10364,"10364":10365,"10365":10366,"10366":10367,"10367":10368,"10368":10369,"10369":10370,"10370":10371,"10371":10372,"10372":10373,"10373":10374,"10374":10375,"10375":10376,"10376":10377,"10377":10378,"10378":10379,"10379":10380,"10380":10381,"10381":10382,"10382":10383,"10383":10384,"10384":10385,"10385":10386,"10386":10387,"10387":10388,"10388":10389,"10389":10390,"10390":10391,"10391":10392,"10392":10393,"10393":10394,"10394":10395,"10395":10396,"10396":10397,"10397":10398,"10398":10399,"10399":10400,"10400":10401,"10401":10402,"10402":10403,"10403":10404,"10404":10405,"10405":10406,"10406":10407,"10407":10408,"10408":10409,"10409":10410,"10410":10411,"10411":10412,"10412":10413,"10413":10414,"10414":10415,"10415":10416,"10416":10417,"10417":10418,"10418":10419,"10419":10420,"10420":10421,"10421":10422,"10422":10423,"10423":10424,"10424":10425,"10425":10426,"10426":10427,"10427":10428,"10428":10429,"10429":10430,"10430":10431,"10431":10432,"10432":10433,"10433":10434,"10434":10435,"10435":10436,"10436":10437,"10437":10438,"10438":10439,"10439":10440,"10440":10441,"10441":10442,"10442":10443,"10443":10444,"10444":10445,"10445":10446,"10446":10447,"10447":10448,"10448":10449,"10449":10450,"10450":10451,"10451":10452,"10452":10453,"10453":10454,"10454":10455,"10455":10456,"10456":10457,"10457":10458,"10458":10459,"10459":10460,"10460":10461,"10461":10462,"10462":10463,"10463":10464,"10464":10465,"10465":10466,"10466":10467,"10467":10468,"10468":10469,"10469":10470,"10470":10471,"10471":10472,"10472":10473,"10473":10474,"10474":10475,"10475":10476,"10476":10477,"10477":10478,"10478":10479,"10479":10480,"10480":10481,"10481":10482,"10482":10483,"10483":10484,"10484":10485,"10485":10486,"10486":10487,"10487":10488,"10488":10489,"10489":10490,"10490":10491,"10491":10492,"10492":10493,"10493":10494,"10494":10495,"10495":10496,"10496":10497,"10497":10498,"10498":10499,"10499":10500,"10500":10501,"10501":10502,"10502":10503,"10503":10504,"10504":10505,"10505":10506,"10506":10507,"10507":10508,"10508":10509,"10509":10510,"10510":10511,"10511":10512,"10512":10513,"10513":10514,"10514":10515,"10515":10516,"10516":10517,"10517":10518,"10518":10519,"10519":10520,"10520":10521,"10521":10522,"10522":10523,"10523":10524,"10524":10525,"10525":10526,"10526":10527,"10527":10528,"10528":10529,"10529":10530,"10530":10531,"10531":10532,"10532":10533,"10533":10534,"10534":10535,"10535":10536,"10536":10537,"10537":10538,"10538":10539,"10539":10540,"10540":10541,"10541":10542,"10542":10543,"10543":10544,"10544":10545,"10545":10546,"10546":10547,"10547":10548,"10548":10549,"10549":10550,"10550":10551,"10551":10552,"10552":10553,"10553":10554,"10554":10555,"10555":10556,"10556":10557,"10557":10558,"10558":10559,"10559":10560,"10560":10561,"10561":10562,"10562":10563,"10563":10564,"10564":10565,"10565":10566,"10566":10567,"10567":10568,"10568":10569,"10569":10570,"10570":10571,"10571":10572,"10572":10573,"10573":10574,"10574":10575,"10575":10576,"10576":10577,"10577":10578,"10578":10579,"10579":10580,"10580":10581,"10581":10582,"10582":10583,"10583":10584,"10584":10585,"10585":10586,"10586":10587,"10587":10588,"10588":10589,"10589":10590,"10590":10591,"10591":10592,"10592":10593,"10593":10594,"10594":10595,"10595":10596,"10596":10597,"10597":10598,"10598":10599,"10599":10600,"10600":10601,"10601":10602,"10602":10603,"10603":10604,"10604":10605,"10605":10606,"10606":10607,"10607":10608,"10608":10609,"10609":10610,"10610":10611,"10611":10612,"10612":10613,"10613":10614,"10614":10615,"10615":10616,"10616":10617,"10617":10618,"10618":10619,"10619":10620,"10620":10621,"10621":10622,"10622":10623,"10623":10624,"10624":10625,"10625":10626,"10626":10627,"10627":10628,"10628":10629,"10629":10630,"10630":10631,"10631":10632,"10632":10633,"10633":10634,"10634":10635,"10635":10636,"10636":10637,"10637":10638,"10638":10639,"10639":10640,"10640":10641,"10641":10642,"10642":10643,"10643":10644,"10644":10645,"10645":10646,"10646":10647,"10647":10648,"10648":10649,"10649":10650,"10650":10651,"10651":10652,"10652":10653,"10653":10654,"10654":10655,"10655":10656,"10656":10657,"10657":10658,"10658":10659,"10659":10660,"10660":10661,"10661":10662,"10662":10663,"10663":10664,"10664":10665,"10665":10666,"10666":10667,"10667":10668,"10668":10669,"10669":10670,"10670":10671,"10671":10672,"10672":10673,"10673":10674,"10674":10675,"10675":10676,"10676":10677,"10677":10678,"10678":10679,"10679":10680,"10680":10681,"10681":10682,"10682":10683,"10683":10684,"10684":10685,"10685":10686,"10686":10687,"10687":10688,"10688":10689,"10689":10690,"10690":10691,"10691":10692,"10692":10693,"10693":10694,"10694":10695,"10695":10696,"10696":10697,"10697":10698,"10698":10699,"10699":10700,"10700":10701,"10701":10702,"10702":10703,"10703":10704,"10704":10705,"10705":10706,"10706":10707,"10707":10708,"10708":10709,"10709":10710,"10710":10711,"10711":10712,"10712":10713,"10713":10714,"10714":10715,"10715":10716,"10716":10717,"10717":10718,"10718":10719,"10719":10720,"10720":10721,"10721":10722,"10722":10723,"10723":10724,"10724":10725,"10725":10726,"10726":10727,"10727":10728,"10728":10729,"10729":10730,"10730":10731,"10731":10732,"10732":10733,"10733":10734,"10734":10735,"10735":10736,"10736":10737,"10737":10738,"10738":10739,"10739":10740,"10740":10741,"10741":10742,"10742":10743,"10743":10744,"10744":10745,"10745":10746,"10746":10747,"10747":10748,"10748":10749,"10749":10750,"10750":10751,"10751":10752,"10752":10753,"10753":10754,"10754":10755,"10755":10756,"10756":10757,"10757":10758,"10758":10759,"10759":10760,"10760":10761,"10761":10762,"10762":10763,"10763":10764,"10764":10765,"10765":10766,"10766":10767,"10767":10768,"10768":10769,"10769":10770,"10770":10771,"10771":10772,"10772":10773,"10773":10774,"10774":10775,"10775":10776,"10776":10777,"10777":10778,"10778":10779,"10779":10780,"10780":10781,"10781":10782,"10782":10783,"10783":10784,"10784":10785,"10785":10786,"10786":10787,"10787":10788,"10788":10789,"10789":10790,"10790":10791,"10791":10792,"10792":10793,"10793":10794,"10794":10795,"10795":10796,"10796":10797,"10797":10798,"10798":10799,"10799":10800,"10800":10801,"10801":10802,"10802":10803,"10803":10804,"10804":10805,"10805":10806,"10806":10807,"10807":10808,"10808":10809,"10809":10810,"10810":10811,"10811":10812,"10812":10813,"10813":10814,"10814":10815,"10815":10816,"10816":10817,"10817":10818,"10818":10819,"10819":10820,"10820":10821,"10821":10822,"10822":10823,"10823":10824,"10824":10825,"10825":10826,"10826":10827,"10827":10828,"10828":10829,"10829":10830,"10830":10831,"10831":10832,"10832":10833,"10833":10834,"10834":10835,"10835":10836,"10836":10837,"10837":10838,"10838":10839,"10839":10840,"10840":10841,"10841":10842,"10842":10843,"10843":10844,"10844":10845,"10845":10846,"10846":10847,"10847":10848,"10848":10849,"10849":10850,"10850":10851,"10851":10852,"10852":10853,"10853":10854,"10854":10855,"10855":10856,"10856":10857,"10857":10858,"10858":10859,"10859":10860,"10860":10861,"10861":10862,"10862":10863,"10863":10864,"10864":10865,"10865":10866,"10866":10867,"10867":10868,"10868":10869,"10869":10870,"10870":10871,"10871":10872,"10872":10873,"10873":10874,"10874":10875,"10875":10876,"10876":10877,"10877":10878,"10878":10879,"10879":10880,"10880":10881,"10881":10882,"10882":10883,"10883":10884,"10884":10885,"10885":10886,"10886":10887,"10887":10888,"10888":10889,"10889":10890,"10890":10891,"10891":10892,"10892":10893,"10893":10894,"10894":10895,"10895":10896,"10896":10897,"10897":10898,"10898":10899,"10899":10900,"10900":10901,"10901":10902,"10902":10903,"10903":10904,"10904":10905,"10905":10906,"10906":10907,"10907":10908,"10908":10909,"10909":10910,"10910":10911,"10911":10912,"10912":10913,"10913":10914,"10914":10915,"10915":10916,"10916":10917,"10917":10918,"10918":10919,"10919":10920,"10920":10921,"10921":10922,"10922":10923,"10923":10924,"10924":10925,"10925":10926,"10926":10927,"10927":10928,"10928":10929,"10929":10930,"10930":10931,"10931":10932,"10932":10933,"10933":10934,"10934":10935,"10935":10936,"10936":10937,"10937":10938,"10938":10939,"10939":10940,"10940":10941,"10941":10942,"10942":10943,"10943":10944,"10944":10945,"10945":10946,"10946":10947,"10947":10948,"10948":10949,"10949":10950,"10950":10951,"10951":10952,"10952":10953,"10953":10954,"10954":10955,"10955":10956,"10956":10957,"10957":10958,"10958":10959,"10959":10960,"10960":10961,"10961":10962,"10962":10963,"10963":10964,"10964":10965,"10965":10966,"10966":10967,"10967":10968,"10968":10969,"10969":10970,"10970":10971,"10971":10972,"10972":10973,"10973":10974,"10974":10975,"10975":10976,"10976":10977,"10977":10978,"10978":10979,"10979":10980,"10980":10981,"10981":10982,"10982":10983,"10983":10984,"10984":10985,"10985":10986,"10986":10987,"10987":10988,"10988":10989,"10989":10990,"10990":10991,"10991":10992,"10992":10993,"10993":10994,"10994":10995,"10995":10996,"10996":10997,"10997":10998,"10998":10999,"10999":11000,"11000":11001,"11001":11002,"11002":11003,"11003":11004,"11004":11005,"11005":11006,"11006":11007,"11007":11008,"11008":11009,"11009":11010,"11010":11011,"11011":11012,"11012":11013,"11013":11014,"11014":11015,"11015":11016,"11016":11017,"11017":11018,"11018":11019,"11019":11020,"11020":11021,"11021":11022,"11022":11023,"11023":11024,"11024":11025,"11025":11026,"11026":11027,"11027":11028,"11028":11029,"11029":11030,"11030":11031,"11031":11032,"11032":11033,"11033":11034,"11034":11035,"11035":11036,"11036":11037,"11037":11038,"11038":11039,"11039":11040,"11040":11041,"11041":11042,"11042":11043,"11043":11044,"11044":11045,"11045":11046,"11046":11047,"11047":11048,"11048":11049,"11049":11050,"11050":11051,"11051":11052,"11052":11053,"11053":11054,"11054":11055,"11055":11056,"11056":11057,"11057":11058,"11058":11059,"11059":11060,"11060":11061,"11061":11062,"11062":11063,"11063":11064,"11064":11065,"11065":11066,"11066":11067,"11067":11068,"11068":11069,"11069":11070,"11070":11071,"11071":11072,"11072":11073,"11073":11074,"11074":11075,"11075":11076,"11076":11077,"11077":11078,"11078":11079,"11079":11080,"11080":11081,"11081":11082,"11082":11083,"11083":11084,"11084":11085,"11085":11086,"11086":11087,"11087":11088,"11088":11089,"11089":11090,"11090":11091,"11091":11092,"11092":11093,"11093":11094,"11094":11095,"11095":11096,"11096":11097,"11097":11098,"11098":11099,"11099":11100,"11100":11101,"11101":11102,"11102":11103,"11103":11104,"11104":11105,"11105":11106,"11106":11107,"11107":11108,"11108":11109,"11109":11110,"11110":11111,"11111":11112,"11112":11113,"11113":11114,"11114":11115,"11115":11116,"11116":11117,"11117":11118,"11118":11119,"11119":11120,"11120":11121,"11121":11122,"11122":11123,"11123":11124,"11124":11125,"11125":11126,"11126":11127,"11127":11128,"11128":11129,"11129":11130,"11130":11131,"11131":11132,"11132":11133,"11133":11134,"11134":11135,"11135":11136,"11136":11137,"11137":11138,"11138":11139,"11139":11140,"11140":11141,"11141":11142,"11142":11143,"11143":11144,"11144":11145,"11145":11146,"11146":11147,"11147":11148,"11148":11149,"11149":11150,"11150":11151,"11151":11152,"11152":11153,"11153":11154,"11154":11155,"11155":11156,"11156":11157,"11157":11158,"11158":11159,"11159":11160,"11160":11161,"11161":11162,"11162":11163,"11163":11164,"11164":11165,"11165":11166,"11166":11167,"11167":11168,"11168":11169,"11169":11170,"11170":11171,"11171":11172,"11172":11173,"11173":11174,"11174":11175,"11175":11176,"11176":11177,"11177":11178,"11178":11179,"11179":11180,"11180":11181,"11181":11182,"11182":11183,"11183":11184,"11184":11185,"11185":11186,"11186":11187,"11187":11188,"11188":11189,"11189":11190,"11190":11191,"11191":11192,"11192":11193,"11193":11194,"11194":11195,"11195":11196,"11196":11197,"11197":11198,"11198":11199,"11199":11200,"11200":11201,"11201":11202,"11202":11203,"11203":11204,"11204":11205,"11205":11206,"11206":11207,"11207":11208,"11208":11209,"11209":11210,"11210":11211,"11211":11212,"11212":11213,"11213":11214,"11214":11215,"11215":11216,"11216":11217,"11217":11218,"11218":11219,"11219":11220,"11220":11221,"11221":11222,"11222":11223,"11223":11224,"11224":11225,"11225":11226,"11226":11227,"11227":11228,"11228":11229,"11229":11230,"11230":11231,"11231":11232,"11232":11233,"11233":11234,"11234":11235,"11235":11236,"11236":11237,"11237":11238,"11238":11239,"11239":11240,"11240":11241,"11241":11242,"11242":11243,"11243":11244,"11244":11245,"11245":11246,"11246":11247,"11247":11248,"11248":11249,"11249":11250,"11250":11251,"11251":11252,"11252":11253,"11253":11254,"11254":11255,"11255":11256,"11256":11257,"11257":11258,"11258":11259,"11259":11260,"11260":11261,"11261":11262,"11262":11263,"11263":11264,"11264":11265,"11265":11266,"11266":11267,"11267":11268,"11268":11269,"11269":11270,"11270":11271,"11271":11272,"11272":11273,"11273":11274,"11274":11275,"11275":11276,"11276":11277,"11277":11278,"11278":11279,"11279":11280,"11280":11281,"11281":11282,"11282":11283,"11283":11284,"11284":11285,"11285":11286,"11286":11287,"11287":11288,"11288":11289,"11289":11290,"11290":11291,"11291":11292,"11292":11293,"11293":11294,"11294":11295,"11295":11296,"11296":11297,"11297":11298,"11298":11299,"11299":11300,"11300":11301,"11301":11302,"11302":11303,"11303":11304,"11304":11305,"11305":11306,"11306":11307,"11307":11308,"11308":11309,"11309":11310,"11310":11311,"11311":11312,"11312":11313,"11313":11314,"11314":11315,"11315":11316,"11316":11317,"11317":11318,"11318":11319,"11319":11320,"11320":11321,"11321":11322,"11322":11323,"11323":11324,"11324":11325,"11325":11326,"11326":11327,"11327":11328,"11328":11329,"11329":11330,"11330":11331,"11331":11332,"11332":11333,"11333":11334,"11334":11335,"11335":11336,"11336":11337,"11337":11338,"11338":11339,"11339":11340,"11340":11341,"11341":11342,"11342":11343,"11343":11344,"11344":11345,"11345":11346,"11346":11347,"11347":11348,"11348":11349,"11349":11350,"11350":11351,"11351":11352,"11352":11353,"11353":11354,"11354":11355,"11355":11356,"11356":11357,"11357":11358,"11358":11359,"11359":11360,"11360":11361,"11361":11362,"11362":11363,"11363":11364,"11364":11365,"11365":11366,"11366":11367,"11367":11368,"11368":11369,"11369":11370,"11370":11371,"11371":11372,"11372":11373,"11373":11374,"11374":11375,"11375":11376,"11376":11377,"11377":11378,"11378":11379,"11379":11380,"11380":11381,"11381":11382,"11382":11383,"11383":11384,"11384":11385,"11385":11386,"11386":11387,"11387":11388,"11388":11389,"11389":11390,"11390":11391,"11391":11392,"11392":11393,"11393":11394,"11394":11395,"11395":11396,"11396":11397,"11397":11398,"11398":11399,"11399":11400,"11400":11401,"11401":11402,"11402":11403,"11403":11404,"11404":11405,"11405":11406,"11406":11407,"11407":11408,"11408":11409,"11409":11410,"11410":11411,"11411":11412,"11412":11413,"11413":11414,"11414":11415,"11415":11416,"11416":11417,"11417":11418,"11418":11419,"11419":11420,"11420":11421,"11421":11422,"11422":11423,"11423":11424,"11424":11425,"11425":11426,"11426":11427,"11427":11428,"11428":11429,"11429":11430,"11430":11431,"11431":11432,"11432":11433,"11433":11434,"11434":11435,"11435":11436,"11436":11437,"11437":11438,"11438":11439,"11439":11440,"11440":11441,"11441":11442,"11442":11443,"11443":11444,"11444":11445,"11445":11446,"11446":11447,"11447":11448,"11448":11449,"11449":11450,"11450":11451,"11451":11452,"11452":11453,"11453":11454,"11454":11455,"11455":11456,"11456":11457,"11457":11458,"11458":11459,"11459":11460,"11460":11461,"11461":11462,"11462":11463,"11463":11464,"11464":11465,"11465":11466,"11466":11467,"11467":11468,"11468":11469,"11469":11470,"11470":11471,"11471":11472,"11472":11473,"11473":11474,"11474":11475,"11475":11476,"11476":11477,"11477":11478,"11478":11479,"11479":11480,"11480":11481,"11481":11482,"11482":11483,"11483":11484,"11484":11485,"11485":11486,"11486":11487,"11487":11488,"11488":11489,"11489":11490,"11490":11491,"11491":11492,"11492":11493,"11493":11494,"11494":11495,"11495":11496,"11496":11497,"11497":11498,"11498":11499,"11499":11500,"11500":11501,"11501":11502,"11502":11503,"11503":11504,"11504":11505,"11505":11506,"11506":11507,"11507":11508,"11508":11509,"11509":11510,"11510":11511,"11511":11512,"11512":11513,"11513":11514,"11514":11515,"11515":11516,"11516":11517,"11517":11518,"11518":11519,"11519":11520,"11520":11521,"11521":11522,"11522":11523,"11523":11524,"11524":11525,"11525":11526,"11526":11527,"11527":11528,"11528":11529,"11529":11530,"11530":11531,"11531":11532,"11532":11533,"11533":11534,"11534":11535,"11535":11536,"11536":11537,"11537":11538,"11538":11539,"11539":11540,"11540":11541,"11541":11542,"11542":11543,"11543":11544,"11544":11545,"11545":11546,"11546":11547,"11547":11548,"11548":11549,"11549":11550,"11550":11551,"11551":11552,"11552":11553,"11553":11554,"11554":11555,"11555":11556,"11556":11557,"11557":11558,"11558":11559,"11559":11560,"11560":11561,"11561":11562,"11562":11563,"11563":11564,"11564":11565,"11565":11566,"11566":11567,"11567":11568,"11568":11569,"11569":11570,"11570":11571,"11571":11572,"11572":11573,"11573":11574,"11574":11575,"11575":11576,"11576":11577,"11577":11578,"11578":11579,"11579":11580,"11580":11581,"11581":11582,"11582":11583,"11583":11584,"11584":11585,"11585":11586,"11586":11587,"11587":11588,"11588":11589,"11589":11590,"11590":11591,"11591":11592,"11592":11593,"11593":11594,"11594":11595,"11595":11596,"11596":11597,"11597":11598,"11598":11599,"11599":11600,"11600":11601,"11601":11602,"11602":11603,"11603":11604,"11604":11605,"11605":11606,"11606":11607,"11607":11608,"11608":11609,"11609":11610,"11610":11611,"11611":11612,"11612":11613,"11613":11614,"11614":11615,"11615":11616,"11616":11617,"11617":11618,"11618":11619,"11619":11620,"11620":11621,"11621":11622,"11622":11623,"11623":11624,"11624":11625,"11625":11626,"11626":11627,"11627":11628,"11628":11629,"11629":11630,"11630":11631,"11631":11632,"11632":11633,"11633":11634,"11634":11635,"11635":11636,"11636":11637,"11637":11638,"11638":11639,"11639":11640,"11640":11641,"11641":11642,"11642":11643,"11643":11644,"11644":11645,"11645":11646,"11646":11647,"11647":11648,"11648":11649,"11649":11650,"11650":11651,"11651":11652,"11652":11653,"11653":11654,"11654":11655,"11655":11656,"11656":11657,"11657":11658,"11658":11659,"11659":11660,"11660":11661,"11661":11662,"11662":11663,"11663":11664,"11664":11665,"11665":11666,"11666":11667,"11667":11668,"11668":11669,"11669":11670,"11670":11671,"11671":11672,"11672":11673,"11673":11674,"11674":11675,"11675":11676,"11676":11677,"11677":11678,"11678":11679,"11679":11680,"11680":11681,"11681":11682,"11682":11683,"11683":11684,"11684":11685,"11685":11686,"11686":11687,"11687":11688,"11688":11689,"11689":11690,"11690":11691,"11691":11692,"11692":11693,"11693":11694,"11694":11695,"11695":11696,"11696":11697,"11697":11698,"11698":11699,"11699":11700,"11700":11701,"11701":11702,"11702":11703,"11703":11704,"11704":11705,"11705":11706,"11706":11707,"11707":11708,"11708":11709,"11709":11710,"11710":11711,"11711":11712,"11712":11713,"11713":11714,"11714":11715,"11715":11716,"11716":11717,"11717":11718,"11718":11719,"11719":11720,"11720":11721,"11721":11722,"11722":11723,"11723":11724,"11724":11725,"11725":11726,"11726":11727,"11727":11728,"11728":11729,"11729":11730,"11730":11731,"11731":11732,"11732":11733,"11733":11734,"11734":11735,"11735":11736,"11736":11737,"11737":11738,"11738":11739,"11739":11740,"11740":11741,"11741":11742,"11742":11743,"11743":11744,"11744":11745,"11745":11746,"11746":11747,"11747":11748,"11748":11749,"11749":11750,"11750":11751,"11751":11752,"11752":11753,"11753":11754,"11754":11755,"11755":11756,"11756":11757,"11757":11758,"11758":11759,"11759":11760,"11760":11761,"11761":11762,"11762":11763,"11763":11764,"11764":11765,"11765":11766,"11766":11767,"11767":11768,"11768":11769,"11769":11770,"11770":11771,"11771":11772,"11772":11773,"11773":11774,"11774":11775,"11775":11776,"11776":11777,"11777":11778,"11778":11779,"11779":11780,"11780":11781,"11781":11782,"11782":11783,"11783":11784,"11784":11785,"11785":11786,"11786":11787,"11787":11788,"11788":11789,"11789":11790,"11790":11791,"11791":11792,"11792":11793,"11793":11794,"11794":11795,"11795":11796,"11796":11797,"11797":11798,"11798":11799,"11799":11800,"11800":11801,"11801":11802,"11802":11803,"11803":11804,"11804":11805,"11805":11806,"11806":11807,"11807":11808,"11808":11809,"11809":11810,"11810":11811,"11811":11812,"11812":11813,"11813":11814,"11814":11815,"11815":11816,"11816":11817,"11817":11818,"11818":11819,"11819":11820,"11820":11821,"11821":11822,"11822":11823,"11823":11824,"11824":11825,"11825":11826,"11826":11827,"11827":11828,"11828":11829,"11829":11830,"11830":11831,"11831":11832,"11832":11833,"11833":11834,"11834":11835,"11835":11836,"11836":11837,"11837":11838,"11838":11839,"11839":11840,"11840":11841,"11841":11842,"11842":11843,"11843":11844,"11844":11845,"11845":11846,"11846":11847,"11847":11848,"11848":11849,"11849":11850,"11850":11851,"11851":11852,"11852":11853,"11853":11854,"11854":11855,"11855":11856,"11856":11857,"11857":11858,"11858":11859,"11859":11860,"11860":11861,"11861":11862,"11862":11863,"11863":11864,"11864":11865,"11865":11866,"11866":11867,"11867":11868,"11868":11869,"11869":11870,"11870":11871,"11871":11872,"11872":11873,"11873":11874,"11874":11875,"11875":11876,"11876":11877,"11877":11878,"11878":11879,"11879":11880,"11880":11881,"11881":11882,"11882":11883,"11883":11884,"11884":11885,"11885":11886,"11886":11887,"11887":11888,"11888":11889,"11889":11890,"11890":11891,"11891":11892,"11892":11893,"11893":11894,"11894":11895,"11895":11896,"11896":11897,"11897":11898,"11898":11899,"11899":11900,"11900":11901,"11901":11902,"11902":11903,"11903":11904,"11904":11905,"11905":11906,"11906":11907,"11907":11908,"11908":11909,"11909":11910,"11910":11911,"11911":11912,"11912":11913,"11913":11914,"11914":11915,"11915":11916,"11916":11917,"11917":11918,"11918":11919,"11919":11920,"11920":11921,"11921":11922,"11922":11923,"11923":11924,"11924":11925,"11925":11926,"11926":11927,"11927":11928,"11928":11929,"11929":11930,"11930":11931,"11931":11932,"11932":11933,"11933":11934,"11934":11935,"11935":11936,"11936":11937,"11937":11938,"11938":11939,"11939":11940,"11940":11941,"11941":11942,"11942":11943,"11943":11944,"11944":11945,"11945":11946,"11946":11947,"11947":11948,"11948":11949,"11949":11950,"11950":11951,"11951":11952,"11952":11953,"11953":11954,"11954":11955,"11955":11956,"11956":11957,"11957":11958,"11958":11959,"11959":11960,"11960":11961,"11961":11962,"11962":11963,"11963":11964,"11964":11965,"11965":11966,"11966":11967,"11967":11968,"11968":11969,"11969":11970,"11970":11971,"11971":11972,"11972":11973,"11973":11974,"11974":11975,"11975":11976,"11976":11977,"11977":11978,"11978":11979,"11979":11980,"11980":11981,"11981":11982,"11982":11983,"11983":11984,"11984":11985,"11985":11986,"11986":11987,"11987":11988,"11988":11989,"11989":11990,"11990":11991,"11991":11992,"11992":11993,"11993":11994,"11994":11995,"11995":11996,"11996":11997,"11997":11998,"11998":11999,"11999":12000,"12000":12001,"12001":12002,"12002":12003,"12003":12004,"12004":12005,"12005":12006,"12006":12007,"12007":12008,"12008":12009,"12009":12010,"12010":12011,"12011":12012,"12012":12013,"12013":12014,"12014":12015,"12015":12016,"12016":12017,"12017":12018,"12018":12019,"12019":12020,"12020":12021,"12021":12022,"12022":12023,"12023":12024,"12024":12025,"12025":12026,"12026":12027,"12027":12028,"12028":12029,"12029":12030,"12030":12031,"12031":12032,"12032":12033,"12033":12034,"12034":12035,"12035":12036,"12036":12037,"12037":12038,"12038":12039,"12039":12040,"12040":12041,"12041":12042,"12042":12043,"12043":12044,"12044":12045,"12045":12046,"12046":12047,"12047":12048,"12048":12049,"12049":12050,"12050":12051,"12051":12052,"12052":12053,"12053":12054,"12054":12055,"12055":12056,"12056":12057,"12057":12058,"12058":12059,"12059":12060,"12060":12061,"12061":12062,"12062":12063,"12063":12064,"12064":12065,"12065":12066,"12066":12067,"12067":12068,"12068":12069,"12069":12070,"12070":12071,"12071":12072,"12072":12073,"12073":12074,"12074":12075,"12075":12076,"12076":12077,"12077":12078,"12078":12079,"12079":12080,"12080":12081,"12081":12082,"12082":12083,"12083":12084,"12084":12085,"12085":12086,"12086":12087,"12087":12088,"12088":12089,"12089":12090,"12090":12091,"12091":12092,"12092":12093,"12093":12094,"12094":12095,"12095":12096,"12096":12097,"12097":12098,"12098":12099,"12099":12100,"12100":12101,"12101":12102,"12102":12103,"12103":12104,"12104":12105,"12105":12106,"12106":12107,"12107":12108,"12108":12109,"12109":12110,"12110":12111,"12111":12112,"12112":12113,"12113":12114,"12114":12115,"12115":12116,"12116":12117,"12117":12118,"12118":12119,"12119":12120,"12120":12121,"12121":12122,"12122":12123,"12123":12124,"12124":12125,"12125":12126,"12126":12127,"12127":12128,"12128":12129,"12129":12130,"12130":12131,"12131":12132,"12132":12133,"12133":12134,"12134":12135,"12135":12136,"12136":12137,"12137":12138,"12138":12139,"12139":12140,"12140":12141,"12141":12142,"12142":12143,"12143":12144,"12144":12145,"12145":12146,"12146":12147,"12147":12148,"12148":12149,"12149":12150,"12150":12151,"12151":12152,"12152":12153,"12153":12154,"12154":12155,"12155":12156,"12156":12157,"12157":12158,"12158":12159,"12159":12160,"12160":12161,"12161":12162,"12162":12163,"12163":12164,"12164":12165,"12165":12166,"12166":12167,"12167":12168,"12168":12169,"12169":12170,"12170":12171,"12171":12172,"12172":12173,"12173":12174,"12174":12175,"12175":12176,"12176":12177,"12177":12178,"12178":12179,"12179":12180,"12180":12181,"12181":12182,"12182":12183,"12183":12184,"12184":12185,"12185":12186,"12186":12187,"12187":12188,"12188":12189,"12189":12190,"12190":12191,"12191":12192,"12192":12193,"12193":12194,"12194":12195,"12195":12196,"12196":12197,"12197":12198,"12198":12199,"12199":12200,"12200":12201,"12201":12202,"12202":12203,"12203":12204,"12204":12205,"12205":12206,"12206":12207,"12207":12208,"12208":12209,"12209":12210,"12210":12211,"12211":12212,"12212":12213,"12213":12214,"12214":12215,"12215":12216,"12216":12217,"12217":12218,"12218":12219,"12219":12220,"12220":12221,"12221":12222,"12222":12223,"12223":12224,"12224":12225,"12225":12226,"12226":12227,"12227":12228,"12228":12229,"12229":12230,"12230":12231,"12231":12232,"12232":12233,"12233":12234,"12234":12235,"12235":12236,"12236":12237,"12237":12238,"12238":12239,"12239":12240,"12240":12241,"12241":12242,"12242":12243,"12243":12244,"12244":12245,"12245":12246,"12246":12247,"12247":12248,"12248":12249,"12249":12250,"12250":12251,"12251":12252,"12252":12253,"12253":12254,"12254":12255,"12255":12256,"12256":12257,"12257":12258,"12258":12259,"12259":12260,"12260":12261,"12261":12262,"12262":12263,"12263":12264,"12264":12265,"12265":12266,"12266":12267,"12267":12268,"12268":12269,"12269":12270,"12270":12271,"12271":12272,"12272":12273,"12273":12274,"12274":12275,"12275":12276,"12276":12277,"12277":12278,"12278":12279,"12279":12280,"12280":12281,"12281":12282,"12282":12283,"12283":12284,"12284":12285,"12285":12286,"12286":12287,"12287":12288,"12288":12289,"12289":12290,"12290":12291,"12291":12292,"12292":12293,"12293":12294,"12294":12295,"12295":12296,"12296":12297,"12297":12298,"12298":12299,"12299":12300,"12300":12301,"12301":12302,"12302":12303,"12303":12304,"12304":12305,"12305":12306,"12306":12307,"12307":12308,"12308":12309,"12309":12310,"12310":12311,"12311":12312,"12312":12313,"12313":12314,"12314":12315,"12315":12316,"12316":12317,"12317":12318,"12318":12319,"12319":12320,"12320":12321,"12321":12322,"12322":12323,"12323":12324,"12324":12325,"12325":12326,"12326":12327,"12327":12328,"12328":12329,"12329":12330,"12330":12331,"12331":12332,"12332":12333,"12333":12334,"12334":12335,"12335":12336,"12336":12337,"12337":12338,"12338":12339,"12339":12340,"12340":12341,"12341":12342,"12342":12343,"12343":12344,"12344":12345,"12345":12346,"12346":12347,"12347":12348,"12348":12349,"12349":12350,"12350":12351,"12351":12352,"12352":12353,"12353":12354,"12354":12355,"12355":12356,"12356":12357,"12357":12358,"12358":12359,"12359":12360,"12360":12361,"12361":12362,"12362":12363,"12363":12364,"12364":12365,"12365":12366,"12366":12367,"12367":12368,"12368":12369,"12369":12370,"12370":12371,"12371":12372,"12372":12373,"12373":12374,"12374":12375,"12375":12376,"12376":12377,"12377":12378,"12378":12379,"12379":12380,"12380":12381,"12381":12382,"12382":12383,"12383":12384,"12384":12385,"12385":12386,"12386":12387,"12387":12388,"12388":12389,"12389":12390,"12390":12391,"12391":12392,"12392":12393,"12393":12394,"12394":12395,"12395":12396,"12396":12397,"12397":12398,"12398":12399,"12399":12400,"12400":12401,"12401":12402,"12402":12403,"12403":12404,"12404":12405,"12405":12406,"12406":12407,"12407":12408,"12408":12409,"12409":12410,"12410":12411,"12411":12412,"12412":12413,"12413":12414,"12414":12415,"12415":12416,"12416":12417,"12417":12418,"12418":12419,"12419":12420,"12420":12421,"12421":12422,"12422":12423,"12423":12424,"12424":12425,"12425":12426,"12426":12427,"12427":12428,"12428":12429,"12429":12430,"12430":12431,"12431":12432,"12432":12433,"12433":12434,"12434":12435,"12435":12436,"12436":12437,"12437":12438,"12438":12439,"12439":12440,"12440":12441,"12441":12442,"12442":12443,"12443":12444,"12444":12445,"12445":12446,"12446":12447,"12447":12448,"12448":12449,"12449":12450,"12450":12451,"12451":12452,"12452":12453,"12453":12454,"12454":12455,"12455":12456,"12456":12457,"12457":12458,"12458":12459,"12459":12460,"12460":12461,"12461":12462,"12462":12463,"12463":12464,"12464":12465,"12465":12466,"12466":12467,"12467":12468,"12468":12469,"12469":12470,"12470":12471,"12471":12472,"12472":12473,"12473":12474,"12474":12475,"12475":12476,"12476":12477,"12477":12478,"12478":12479,"12479":12480,"12480":12481,"12481":12482,"12482":12483,"12483":12484,"12484":12485,"12485":12486,"12486":12487,"12487":12488,"12488":12489,"12489":12490,"12490":12491,"12491":12492,"12492":12493,"12493":12494,"12494":12495,"12495":12496,"12496":12497,"12497":12498,"12498":12499,"12499":12500,"12500":12501,"12501":12502,"12502":12503,"12503":12504,"12504":12505,"12505":12506,"12506":12507,"12507":12508,"12508":12509,"12509":12510,"12510":12511,"12511":12512,"12512":12513,"12513":12514,"12514":12515,"12515":12516,"12516":12517,"12517":12518,"12518":12519,"12519":12520,"12520":12521,"12521":12522,"12522":12523,"12523":12524,"12524":12525,"12525":12526,"12526":12527,"12527":12528,"12528":12529,"12529":12530,"12530":12531,"12531":12532,"12532":12533,"12533":12534,"12534":12535,"12535":12536,"12536":12537,"12537":12538,"12538":12539,"12539":12540,"12540":12541,"12541":12542,"12542":12543,"12543":12544,"12544":12545,"12545":12546,"12546":12547,"12547":12548,"12548":12549,"12549":12550,"12550":12551,"12551":12552,"12552":12553,"12553":12554,"12554":12555,"12555":12556,"12556":12557,"12557":12558,"12558":12559,"12559":12560,"12560":12561,"12561":12562,"12562":12563,"12563":12564,"12564":12565,"12565":12566,"12566":12567,"12567":12568,"12568":12569,"12569":12570,"12570":12571,"12571":12572,"12572":12573,"12573":12574,"12574":12575,"12575":12576,"12576":12577,"12577":12578,"12578":12579,"12579":12580,"12580":12581,"12581":12582,"12582":12583,"12583":12584,"12584":12585,"12585":12586,"12586":12587,"12587":12588,"12588":12589,"12589":12590,"12590":12591,"12591":12592,"12592":12593,"12593":12594,"12594":12595,"12595":12596,"12596":12597,"12597":12598,"12598":12599,"12599":12600,"12600":12601,"12601":12602,"12602":12603,"12603":12604,"12604":12605,"12605":12606,"12606":12607,"12607":12608,"12608":12609,"12609":12610,"12610":12611,"12611":12612,"12612":12613,"12613":12614,"12614":12615,"12615":12616,"12616":12617,"12617":12618,"12618":12619,"12619":12620,"12620":12621,"12621":12622,"12622":12623,"12623":12624,"12624":12625,"12625":12626,"12626":12627,"12627":12628,"12628":12629,"12629":12630,"12630":12631,"12631":12632,"12632":12633,"12633":12634,"12634":12635,"12635":12636,"12636":12637,"12637":12638,"12638":12639,"12639":12640,"12640":12641,"12641":12642,"12642":12643,"12643":12644,"12644":12645,"12645":12646,"12646":12647,"12647":12648,"12648":12649,"12649":12650,"12650":12651,"12651":12652,"12652":12653,"12653":12654,"12654":12655,"12655":12656,"12656":12657,"12657":12658,"12658":12659,"12659":12660,"12660":12661,"12661":12662,"12662":12663,"12663":12664,"12664":12665,"12665":12666,"12666":12667,"12667":12668,"12668":12669,"12669":12670,"12670":12671,"12671":12672,"12672":12673,"12673":12674,"12674":12675,"12675":12676,"12676":12677,"12677":12678,"12678":12679,"12679":12680,"12680":12681,"12681":12682,"12682":12683,"12683":12684,"12684":12685,"12685":12686,"12686":12687,"12687":12688,"12688":12689,"12689":12690,"12690":12691,"12691":12692,"12692":12693,"12693":12694,"12694":12695,"12695":12696,"12696":12697,"12697":12698,"12698":12699,"12699":12700,"12700":12701,"12701":12702,"12702":12703,"12703":12704,"12704":12705,"12705":12706,"12706":12707,"12707":12708,"12708":12709,"12709":12710,"12710":12711,"12711":12712,"12712":12713,"12713":12714,"12714":12715,"12715":12716,"12716":12717,"12717":12718,"12718":12719,"12719":12720,"12720":12721,"12721":12722,"12722":12723,"12723":12724,"12724":12725,"12725":12726,"12726":12727,"12727":12728,"12728":12729,"12729":12730,"12730":12731,"12731":12732,"12732":12733,"12733":12734,"12734":12735,"12735":12736,"12736":12737,"12737":12738,"12738":12739,"12739":12740,"12740":12741,"12741":12742,"12742":12743,"12743":12744,"12744":12745,"12745":12746,"12746":12747,"12747":12748,"12748":12749,"12749":12750,"12750":12751,"12751":12752,"12752":12753,"12753":12754,"12754":12755,"12755":12756,"12756":12757,"12757":12758,"12758":12759,"12759":12760,"12760":12761,"12761":12762,"12762":12763,"12763":12764,"12764":12765,"12765":12766,"12766":12767,"12767":12768,"12768":12769,"12769":12770,"12770":12771,"12771":12772,"12772":12773,"12773":12774,"12774":12775,"12775":12776,"12776":12777,"12777":12778,"12778":12779,"12779":12780,"12780":12781,"12781":12782,"12782":12783,"12783":12784,"12784":12785,"12785":12786,"12786":12787,"12787":12788,"12788":12789,"12789":12790,"12790":12791,"12791":12792,"12792":12793,"12793":12794,"12794":12795,"12795":12796,"12796":12797,"12797":12798,"12798":12799,"12799":12800,"12800":12801,"12801":12802,"12802":12803,"12803":12804,"12804":12805,"12805":12806,"12806":12807,"12807":12808,"12808":12809,"12809":12810,"12810":12811,"12811":12812,"12812":12813,"12813":12814,"12814":12815,"12815":12816,"12816":12817,"12817":12818,"12818":12819,"12819":12820,"12820":12821,"12821":12822,"12822":12823,"12823":12824,"12824":12825,"12825":12826,"12826":12827,"12827":12828,"12828":12829,"12829":12830,"12830":12831,"12831":12832,"12832":12833,"12833":12834,"12834":12835,"12835":12836,"12836":12837,"12837":12838,"12838":12839,"12839":12840,"12840":12841,"12841":12842,"12842":12843,"12843":12844,"12844":12845,"12845":12846,"12846":12847,"12847":12848,"12848":12849,"12849":12850,"12850":12851,"12851":12852,"12852":12853,"12853":12854,"12854":12855,"12855":12856,"12856":12857,"12857":12858,"12858":12859,"12859":12860,"12860":12861,"12861":12862,"12862":12863,"12863":12864,"12864":12865,"12865":12866,"12866":12867,"12867":12868,"12868":12869,"12869":12870,"12870":12871,"12871":12872,"12872":12873,"12873":12874,"12874":12875,"12875":12876,"12876":12877,"12877":12878,"12878":12879,"12879":12880,"12880":12881,"12881":12882,"12882":12883,"12883":12884,"12884":12885,"12885":12886,"12886":12887,"12887":12888,"12888":12889,"12889":12890,"12890":12891,"12891":12892,"12892":12893,"12893":12894,"12894":12895,"12895":12896,"12896":12897,"12897":12898,"12898":12899,"12899":12900,"12900":12901,"12901":12902,"12902":12903,"12903":12904,"12904":12905,"12905":12906,"12906":12907,"12907":12908,"12908":12909,"12909":12910,"12910":12911,"12911":12912,"12912":12913,"12913":12914,"12914":12915,"12915":12916,"12916":12917,"12917":12918,"12918":12919,"12919":12920,"12920":12921,"12921":12922,"12922":12923,"12923":12924,"12924":12925,"12925":12926,"12926":12927,"12927":12928,"12928":12929,"12929":12930,"12930":12931,"12931":12932,"12932":12933,"12933":12934,"12934":12935,"12935":12936,"12936":12937,"12937":12938,"12938":12939,"12939":12940,"12940":12941,"12941":12942,"12942":12943,"12943":12944,"12944":12945,"12945":12946,"12946":12947,"12947":12948,"12948":12949,"12949":12950,"12950":12951,"12951":12952,"12952":12953,"12953":12954,"12954":12955,"12955":12956,"12956":12957,"12957":12958,"12958":12959,"12959":12960,"12960":12961,"12961":12962,"12962":12963,"12963":12964,"12964":12965,"12965":12966,"12966":12967,"12967":12968,"12968":12969,"12969":12970,"12970":12971,"12971":12972,"12972":12973,"12973":12974,"12974":12975,"12975":12976,"12976":12977,"12977":12978,"12978":12979,"12979":12980,"12980":12981,"12981":12982,"12982":12983,"12983":12984,"12984":12985,"12985":12986,"12986":12987,"12987":12988,"12988":12989,"12989":12990,"12990":12991,"12991":12992,"12992":12993,"12993":12994,"12994":12995,"12995":12996,"12996":12997,"12997":12998,"12998":12999,"12999":13000,"13000":13001,"13001":13002,"13002":13003,"13003":13004,"13004":13005,"13005":13006,"13006":13007,"13007":13008,"13008":13009,"13009":13010,"13010":13011,"13011":13012,"13012":13013,"13013":13014,"13014":13015,"13015":13016,"13016":13017,"13017":13018,"13018":13019,"13019":13020,"13020":13021,"13021":13022,"13022":13023,"13023":13024,"13024":13025,"13025":13026,"13026":13027,"13027":13028,"13028":13029,"13029":13030,"13030":13031,"13031":13032,"13032":13033,"13033":13034,"13034":13035,"13035":13036,"13036":13037,"13037":13038,"13038":13039,"13039":13040,"13040":13041,"13041":13042,"13042":13043,"13043":13044,"13044":13045,"13045":13046,"13046":13047,"13047":13048,"13048":13049,"13049":13050,"13050":13051,"13051":13052,"13052":13053,"13053":13054,"13054":13055,"13055":13056,"13056":13057,"13057":13058,"13058":13059,"13059":13060,"13060":13061,"13061":13062,"13062":13063,"13063":13064,"13064":13065,"13065":13066,"13066":13067,"13067":13068,"13068":13069,"13069":13070,"13070":13071,"13071":13072,"13072":13073,"13073":13074,"13074":13075,"13075":13076,"13076":13077,"13077":13078,"13078":13079,"13079":13080,"13080":13081,"13081":13082,"13082":13083,"13083":13084,"13084":13085,"13085":13086,"13086":13087,"13087":13088,"13088":13089,"13089":13090,"13090":13091,"13091":13092,"13092":13093,"13093":13094,"13094":13095,"13095":13096,"13096":13097,"13097":13098,"13098":13099,"13099":13100,"13100":13101,"13101":13102,"13102":13103,"13103":13104,"13104":13105,"13105":13106,"13106":13107,"13107":13108,"13108":13109,"13109":13110,"13110":13111,"13111":13112,"13112":13113,"13113":13114,"13114":13115,"13115":13116,"13116":13117,"13117":13118,"13118":13119,"13119":13120,"13120":13121,"13121":13122,"13122":13123,"13123":13124,"13124":13125,"13125":13126,"13126":13127,"13127":13128,"13128":13129,"13129":13130,"13130":13131,"13131":13132,"13132":13133,"13133":13134,"13134":13135,"13135":13136,"13136":13137,"13137":13138,"13138":13139,"13139":13140,"13140":13141,"13141":13142,"13142":13143,"13143":13144,"13144":13145,"13145":13146,"13146":13147,"13147":13148,"13148":13149,"13149":13150,"13150":13151,"13151":13152,"13152":13153,"13153":13154,"13154":13155,"13155":13156,"13156":13157,"13157":13158,"13158":13159,"13159":13160,"13160":13161,"13161":13162,"13162":13163,"13163":13164,"13164":13165,"13165":13166,"13166":13167,"13167":13168,"13168":13169,"13169":13170,"13170":13171,"13171":13172,"13172":13173,"13173":13174,"13174":13175,"13175":13176,"13176":13177,"13177":13178,"13178":13179,"13179":13180,"13180":13181,"13181":13182,"13182":13183,"13183":13184,"13184":13185,"13185":13186,"13186":13187,"13187":13188,"13188":13189,"13189":13190,"13190":13191,"13191":13192,"13192":13193,"13193":13194,"13194":13195,"13195":13196,"13196":13197,"13197":13198,"13198":13199,"13199":13200,"13200":13201,"13201":13202,"13202":13203,"13203":13204,"13204":13205,"13205":13206,"13206":13207,"13207":13208,"13208":13209,"13209":13210,"13210":13211,"13211":13212,"13212":13213,"13213":13214,"13214":13215,"13215":13216,"13216":13217,"13217":13218,"13218":13219,"13219":13220,"13220":13221,"13221":13222,"13222":13223,"13223":13224,"13224":13225,"13225":13226,"13226":13227,"13227":13228,"13228":13229,"13229":13230,"13230":13231,"13231":13232,"13232":13233,"13233":13234,"13234":13235,"13235":13236,"13236":13237,"13237":13238,"13238":13239,"13239":13240,"13240":13241,"13241":13242,"13242":13243,"13243":13244,"13244":13245,"13245":13246,"13246":13247,"13247":13248,"13248":13249,"13249":13250,"13250":13251,"13251":13252,"13252":13253,"13253":13254,"13254":13255,"13255":13256,"13256":13257,"13257":13258,"13258":13259,"13259":13260,"13260":13261,"13261":13262,"13262":13263,"13263":13264,"13264":13265,"13265":13266,"13266":13267,"13267":13268,"13268":13269,"13269":13270,"13270":13271,"13271":13272,"13272":13273,"13273":13274,"13274":13275,"13275":13276,"13276":13277,"13277":13278,"13278":13279,"13279":13280,"13280":13281,"13281":13282,"13282":13283,"13283":13284,"13284":13285,"13285":13286,"13286":13287,"13287":13288,"13288":13289,"13289":13290,"13290":13291,"13291":13292,"13292":13293,"13293":13294,"13294":13295,"13295":13296,"13296":13297,"13297":13298,"13298":13299,"13299":13300,"13300":13301,"13301":13302,"13302":13303,"13303":13304,"13304":13305,"13305":13306,"13306":13307,"13307":13308,"13308":13309,"13309":13310,"13310":13311,"13311":13312,"13312":13313,"13313":13314,"13314":13315,"13315":13316,"13316":13317,"13317":13318,"13318":13319,"13319":13320,"13320":13321,"13321":13322,"13322":13323,"13323":13324,"13324":13325,"13325":13326,"13326":13327,"13327":13328,"13328":13329,"13329":13330,"13330":13331,"13331":13332,"13332":13333,"13333":13334,"13334":13335,"13335":13336,"13336":13337,"13337":13338,"13338":13339,"13339":13340,"13340":13341,"13341":13342,"13342":13343,"13343":13344,"13344":13345,"13345":13346,"13346":13347,"13347":13348,"13348":13349,"13349":13350,"13350":13351,"13351":13352,"13352":13353,"13353":13354,"13354":13355,"13355":13356,"13356":13357,"13357":13358,"13358":13359,"13359":13360,"13360":13361,"13361":13362,"13362":13363,"13363":13364,"13364":13365,"13365":13366,"13366":13367,"13367":13368,"13368":13369,"13369":13370,"13370":13371,"13371":13372,"13372":13373,"13373":13374,"13374":13375,"13375":13376,"13376":13377,"13377":13378,"13378":13379,"13379":13380,"13380":13381,"13381":13382,"13382":13383,"13383":13384,"13384":13385,"13385":13386,"13386":13387,"13387":13388,"13388":13389,"13389":13390,"13390":13391,"13391":13392,"13392":13393,"13393":13394,"13394":13395,"13395":13396,"13396":13397,"13397":13398,"13398":13399,"13399":13400,"13400":13401,"13401":13402,"13402":13403,"13403":13404,"13404":13405,"13405":13406,"13406":13407,"13407":13408,"13408":13409,"13409":13410,"13410":13411,"13411":13412,"13412":13413,"13413":13414,"13414":13415,"13415":13416,"13416":13417,"13417":13418,"13418":13419,"13419":13420,"13420":13421,"13421":13422,"13422":13423,"13423":13424,"13424":13425,"13425":13426,"13426":13427,"13427":13428,"13428":13429,"13429":13430,"13430":13431,"13431":13432,"13432":13433,"13433":13434,"13434":13435,"13435":13436,"13436":13437,"13437":13438,"13438":13439,"13439":13440,"13440":13441,"13441":13442,"13442":13443,"13443":13444,"13444":13445,"13445":13446,"13446":13447,"13447":13448,"13448":13449,"13449":13450,"13450":13451,"13451":13452,"13452":13453,"13453":13454,"13454":13455,"13455":13456,"13456":13457,"13457":13458,"13458":13459,"13459":13460,"13460":13461,"13461":13462,"13462":13463,"13463":13464,"13464":13465,"13465":13466,"13466":13467,"13467":13468,"13468":13469,"13469":13470,"13470":13471,"13471":13472,"13472":13473,"13473":13474,"13474":13475,"13475":13476,"13476":13477,"13477":13478,"13478":13479,"13479":13480,"13480":13481,"13481":13482,"13482":13483,"13483":13484,"13484":13485,"13485":13486,"13486":13487,"13487":13488,"13488":13489,"13489":13490,"13490":13491,"13491":13492,"13492":13493,"13493":13494,"13494":13495,"13495":13496,"13496":13497,"13497":13498,"13498":13499,"13499":13500,"13500":13501,"13501":13502,"13502":13503,"13503":13504,"13504":13505,"13505":13506,"13506":13507,"13507":13508,"13508":13509,"13509":13510,"13510":13511,"13511":13512,"13512":13513,"13513":13514,"13514":13515,"13515":13516,"13516":13517,"13517":13518,"13518":13519,"13519":13520,"13520":13521,"13521":13522,"13522":13523,"13523":13524,"13524":13525,"13525":13526,"13526":13527,"13527":13528,"13528":13529,"13529":13530,"13530":13531,"13531":13532,"13532":13533,"13533":13534,"13534":13535,"13535":13536,"13536":13537,"13537":13538,"13538":13539,"13539":13540,"13540":13541,"13541":13542,"13542":13543,"13543":13544,"13544":13545,"13545":13546,"13546":13547,"13547":13548,"13548":13549,"13549":13550,"13550":13551,"13551":13552,"13552":13553,"13553":13554,"13554":13555,"13555":13556,"13556":13557,"13557":13558,"13558":13559,"13559":13560,"13560":13561,"13561":13562,"13562":13563,"13563":13564,"13564":13565,"13565":13566,"13566":13567,"13567":13568,"13568":13569,"13569":13570,"13570":13571,"13571":13572,"13572":13573,"13573":13574,"13574":13575,"13575":13576,"13576":13577,"13577":13578,"13578":13579,"13579":13580,"13580":13581,"13581":13582,"13582":13583,"13583":13584,"13584":13585,"13585":13586,"13586":13587,"13587":13588,"13588":13589,"13589":13590,"13590":13591,"13591":13592,"13592":13593,"13593":13594,"13594":13595,"13595":13596,"13596":13597,"13597":13598,"13598":13599,"13599":13600,"13600":13601,"13601":13602,"13602":13603,"13603":13604,"13604":13605,"13605":13606,"13606":13607,"13607":13608,"13608":13609,"13609":13610,"13610":13611,"13611":13612,"13612":13613,"13613":13614,"13614":13615,"13615":13616,"13616":13617,"13617":13618,"13618":13619,"13619":13620,"13620":13621,"13621":13622,"13622":13623,"13623":13624,"13624":13625,"13625":13626,"13626":13627,"13627":13628,"13628":13629,"13629":13630,"13630":13631,"13631":13632,"13632":13633,"13633":13634,"13634":13635,"13635":13636,"13636":13637,"13637":13638,"13638":13639,"13639":13640,"13640":13641,"13641":13642,"13642":13643,"13643":13644,"13644":13645,"13645":13646,"13646":13647,"13647":13648,"13648":13649,"13649":13650,"13650":13651,"13651":13652,"13652":13653,"13653":13654,"13654":13655,"13655":13656,"13656":13657,"13657":13658,"13658":13659,"13659":13660,"13660":13661,"13661":13662,"13662":13663,"13663":13664,"13664":13665,"13665":13666,"13666":13667,"13667":13668,"13668":13669,"13669":13670,"13670":13671,"13671":13672,"13672":13673,"13673":13674,"13674":13675,"13675":13676,"13676":13677,"13677":13678,"13678":13679,"13679":13680,"13680":13681,"13681":13682,"13682":13683,"13683":13684,"13684":13685,"13685":13686,"13686":13687,"13687":13688,"13688":13689,"13689":13690,"13690":13691,"13691":13692,"13692":13693,"13693":13694,"13694":13695,"13695":13696,"13696":13697,"13697":13698,"13698":13699,"13699":13700,"13700":13701,"13701":13702,"13702":13703,"13703":13704,"13704":13705,"13705":13706,"13706":13707,"13707":13708,"13708":13709,"13709":13710,"13710":13711,"13711":13712,"13712":13713,"13713":13714,"13714":13715,"13715":13716,"13716":13717,"13717":13718,"13718":13719,"13719":13720,"13720":13721,"13721":13722,"13722":13723,"13723":13724,"13724":13725,"13725":13726,"13726":13727,"13727":13728,"13728":13729,"13729":13730,"13730":13731,"13731":13732,"13732":13733,"13733":13734,"13734":13735,"13735":13736,"13736":13737,"13737":13738,"13738":13739,"13739":13740,"13740":13741,"13741":13742,"13742":13743,"13743":13744,"13744":13745,"13745":13746,"13746":13747,"13747":13748,"13748":13749,"13749":13750,"13750":13751,"13751":13752,"13752":13753,"13753":13754,"13754":13755,"13755":13756,"13756":13757,"13757":13758,"13758":13759,"13759":13760,"13760":13761,"13761":13762,"13762":13763,"13763":13764,"13764":13765,"13765":13766,"13766":13767,"13767":13768,"13768":13769,"13769":13770,"13770":13771,"13771":13772,"13772":13773,"13773":13774,"13774":13775,"13775":13776,"13776":13777,"13777":13778,"13778":13779,"13779":13780,"13780":13781,"13781":13782,"13782":13783,"13783":13784,"13784":13785,"13785":13786,"13786":13787,"13787":13788,"13788":13789,"13789":13790,"13790":13791,"13791":13792,"13792":13793,"13793":13794,"13794":13795,"13795":13796,"13796":13797,"13797":13798,"13798":13799,"13799":13800,"13800":13801,"13801":13802,"13802":13803,"13803":13804,"13804":13805,"13805":13806,"13806":13807,"13807":13808,"13808":13809,"13809":13810,"13810":13811,"13811":13812,"13812":13813,"13813":13814,"13814":13815,"13815":13816,"13816":13817,"13817":13818,"13818":13819,"13819":13820,"13820":13821,"13821":13822,"13822":13823,"13823":13824,"13824":13825,"13825":13826,"13826":13827,"13827":13828,"13828":13829,"13829":13830,"13830":13831,"13831":13832,"13832":13833,"13833":13834,"13834":13835,"13835":13836,"13836":13837,"13837":13838,"13838":13839,"13839":13840,"13840":13841,"13841":13842,"13842":13843,"13843":13844,"13844":13845,"13845":13846,"13846":13847,"13847":13848,"13848":13849,"13849":13850,"13850":13851,"13851":13852,"13852":13853,"13853":13854,"13854":13855,"13855":13856,"13856":13857,"13857":13858,"13858":13859,"13859":13860,"13860":13861,"13861":13862,"13862":13863,"13863":13864,"13864":13865,"13865":13866,"13866":13867,"13867":13868,"13868":13869,"13869":13870,"13870":13871,"13871":13872,"13872":13873,"13873":13874,"13874":13875,"13875":13876,"13876":13877,"13877":13878,"13878":13879,"13879":13880,"13880":13881,"13881":13882,"13882":13883,"13883":13884,"13884":13885,"13885":13886,"13886":13887,"13887":13888,"13888":13889,"13889":13890,"13890":13891,"13891":13892,"13892":13893,"13893":13894,"13894":13895,"13895":13896,"13896":13897,"13897":13898,"13898":13899,"13899":13900,"13900":13901,"13901":13902,"13902":13903,"13903":13904,"13904":13905,"13905":13906,"13906":13907,"13907":13908,"13908":13909,"13909":13910,"13910":13911,"13911":13912,"13912":13913,"13913":13914,"13914":13915,"13915":13916,"13916":13917,"13917":13918,"13918":13919,"13919":13920,"13920":13921,"13921":13922,"13922":13923,"13923":13924,"13924":13925,"13925":13926,"13926":13927,"13927":13928,"13928":13929,"13929":13930,"13930":13931,"13931":13932,"13932":13933,"13933":13934,"13934":13935,"13935":13936,"13936":13937,"13937":13938,"13938":13939,"13939":13940,"13940":13941,"13941":13942,"13942":13943,"13943":13944,"13944":13945,"13945":13946,"13946":13947,"13947":13948,"13948":13949,"13949":13950,"13950":13951,"13951":13952,"13952":13953,"13953":13954,"13954":13955,"13955":13956,"13956":13957,"13957":13958,"13958":13959,"13959":13960,"13960":13961,"13961":13962,"13962":13963,"13963":13964,"13964":13965,"13965":13966,"13966":13967,"13967":13968,"13968":13969,"13969":13970,"13970":13971,"13971":13972,"13972":13973,"13973":13974,"13974":13975,"13975":13976,"13976":13977,"13977":13978,"13978":13979,"13979":13980,"13980":13981,"13981":13982,"13982":13983,"13983":13984,"13984":13985,"13985":13986,"13986":13987,"13987":13988,"13988":13989,"13989":13990,"13990":13991,"13991":13992,"13992":13993,"13993":13994,"13994":13995,"13995":13996,"13996":13997,"13997":13998,"13998":13999,"13999":14000,"14000":14001,"14001":14002,"14002":14003,"14003":14004,"14004":14005,"14005":14006,"14006":14007,"14007":14008,"14008":14009,"14009":14010,"14010":14011,"14011":14012,"14012":14013,"14013":14014,"14014":14015,"14015":14016,"14016":14017,"14017":14018,"14018":14019,"14019":14020,"14020":14021,"14021":14022,"14022":14023,"14023":14024,"14024":14025,"14025":14026,"14026":14027,"14027":14028,"14028":14029,"14029":14030,"14030":14031,"14031":14032,"14032":14033,"14033":14034,"14034":14035,"14035":14036,"14036":14037,"14037":14038,"14038":14039,"14039":14040,"14040":14041,"14041":14042,"14042":14043,"14043":14044,"14044":14045,"14045":14046,"14046":14047,"14047":14048,"14048":14049,"14049":14050,"14050":14051,"14051":14052,"14052":14053,"14053":14054,"14054":14055,"14055":14056,"14056":14057,"14057":14058,"14058":14059,"14059":14060,"14060":14061,"14061":14062,"14062":14063,"14063":14064,"14064":14065,"14065":14066,"14066":14067,"14067":14068,"14068":14069,"14069":14070,"14070":14071,"14071":14072,"14072":14073,"14073":14074,"14074":14075,"14075":14076,"14076":14077,"14077":14078,"14078":14079,"14079":14080,"14080":14081,"14081":14082,"14082":14083,"14083":14084,"14084":14085,"14085":14086,"14086":14087,"14087":14088,"14088":14089,"14089":14090,"14090":14091,"14091":14092,"14092":14093,"14093":14094,"14094":14095,"14095":14096,"14096":14097,"14097":14098,"14098":14099,"14099":14100,"14100":14101,"14101":14102,"14102":14103,"14103":14104,"14104":14105,"14105":14106,"14106":14107,"14107":14108,"14108":14109,"14109":14110,"14110":14111,"14111":14112,"14112":14113,"14113":14114,"14114":14115,"14115":14116,"14116":14117,"14117":14118,"14118":14119,"14119":14120,"14120":14121,"14121":14122,"14122":14123,"14123":14124,"14124":14125,"14125":14126,"14126":14127,"14127":14128,"14128":14129,"14129":14130,"14130":14131,"14131":14132,"14132":14133,"14133":14134,"14134":14135,"14135":14136,"14136":14137,"14137":14138,"14138":14139,"14139":14140,"14140":14141,"14141":14142,"14142":14143,"14143":14144,"14144":14145,"14145":14146,"14146":14147,"14147":14148,"14148":14149,"14149":14150,"14150":14151,"14151":14152,"14152":14153,"14153":14154,"14154":14155,"14155":14156,"14156":14157,"14157":14158,"14158":14159,"14159":14160,"14160":14161,"14161":14162,"14162":14163,"14163":14164,"14164":14165,"14165":14166,"14166":14167,"14167":14168,"14168":14169,"14169":14170,"14170":14171,"14171":14172,"14172":14173,"14173":14174,"14174":14175,"14175":14176,"14176":14177,"14177":14178,"14178":14179,"14179":14180,"14180":14181,"14181":14182,"14182":14183,"14183":14184,"14184":14185,"14185":14186,"14186":14187,"14187":14188,"14188":14189,"14189":14190,"14190":14191,"14191":14192,"14192":14193,"14193":14194,"14194":14195,"14195":14196,"14196":14197,"14197":14198,"14198":14199,"14199":14200,"14200":14201,"14201":14202,"14202":14203,"14203":14204,"14204":14205,"14205":14206,"14206":14207,"14207":14208,"14208":14209,"14209":14210,"14210":14211,"14211":14212,"14212":14213,"14213":14214,"14214":14215,"14215":14216,"14216":14217,"14217":14218,"14218":14219,"14219":14220,"14220":14221,"14221":14222,"14222":14223,"14223":14224,"14224":14225,"14225":14226,"14226":14227,"14227":14228,"14228":14229,"14229":14230,"14230":14231,"14231":14232,"14232":14233,"14233":14234,"14234":14235,"14235":14236,"14236":14237,"14237":14238,"14238":14239,"14239":14240,"14240":14241,"14241":14242,"14242":14243,"14243":14244,"14244":14245,"14245":14246,"14246":14247,"14247":14248,"14248":14249,"14249":14250,"14250":14251,"14251":14252,"14252":14253,"14253":14254,"14254":14255,"14255":14256,"14256":14257,"14257":14258,"14258":14259,"14259":14260,"14260":14261,"14261":14262,"14262":14263,"14263":14264,"14264":14265,"14265":14266,"14266":14267,"14267":14268,"14268":14269,"14269":14270,"14270":14271,"14271":14272,"14272":14273,"14273":14274,"14274":14275,"14275":14276,"14276":14277,"14277":14278,"14278":14279,"14279":14280,"14280":14281,"14281":14282,"14282":14283,"14283":14284,"14284":14285,"14285":14286,"14286":14287,"14287":14288,"14288":14289,"14289":14290,"14290":14291,"14291":14292,"14292":14293,"14293":14294,"14294":14295,"14295":14296,"14296":14297,"14297":14298,"14298":14299,"14299":14300,"14300":14301,"14301":14302,"14302":14303,"14303":14304,"14304":14305,"14305":14306,"14306":14307,"14307":14308,"14308":14309,"14309":14310,"14310":14311,"14311":14312,"14312":14313,"14313":14314,"14314":14315,"14315":14316,"14316":14317,"14317":14318,"14318":14319,"14319":14320,"14320":14321,"14321":14322,"14322":14323,"14323":14324,"14324":14325,"14325":14326,"14326":14327,"14327":14328,"14328":14329,"14329":14330,"14330":14331,"14331":14332,"14332":14333,"14333":14334,"14334":14335,"14335":14336,"14336":14337,"14337":14338,"14338":14339,"14339":14340,"14340":14341,"14341":14342,"14342":14343,"14343":14344,"14344":14345,"14345":14346,"14346":14347,"14347":14348,"14348":14349,"14349":14350,"14350":14351,"14351":14352,"14352":14353,"14353":14354,"14354":14355,"14355":14356,"14356":14357,"14357":14358,"14358":14359,"14359":14360,"14360":14361,"14361":14362,"14362":14363,"14363":14364,"14364":14365,"14365":14366,"14366":14367,"14367":14368,"14368":14369,"14369":14370,"14370":14371,"14371":14372,"14372":14373,"14373":14374,"14374":14375,"14375":14376,"14376":14377,"14377":14378,"14378":14379,"14379":14380,"14380":14381,"14381":14382,"14382":14383,"14383":14384,"14384":14385,"14385":14386,"14386":14387,"14387":14388,"14388":14389,"14389":14390,"14390":14391,"14391":14392,"14392":14393,"14393":14394,"14394":14395,"14395":14396,"14396":14397,"14397":14398,"14398":14399,"14399":14400,"14400":14401,"14401":14402,"14402":14403,"14403":14404,"14404":14405,"14405":14406,"14406":14407,"14407":14408,"14408":14409,"14409":14410,"14410":14411,"14411":14412,"14412":14413,"14413":14414,"14414":14415,"14415":14416,"14416":14417,"14417":14418,"14418":14419,"14419":14420,"14420":14421,"14421":14422,"14422":14423,"14423":14424,"14424":14425,"14425":14426,"14426":14427,"14427":14428,"14428":14429,"14429":14430,"14430":14431,"14431":14432,"14432":14433,"14433":14434,"14434":14435,"14435":14436,"14436":14437,"14437":14438,"14438":14439,"14439":14440,"14440":14441,"14441":14442,"14442":14443,"14443":14444,"14444":14445,"14445":14446,"14446":14447,"14447":14448,"14448":14449,"14449":14450,"14450":14451,"14451":14452,"14452":14453,"14453":14454,"14454":14455,"14455":14456,"14456":14457,"14457":14458,"14458":14459,"14459":14460,"14460":14461,"14461":14462,"14462":14463,"14463":14464,"14464":14465,"14465":14466,"14466":14467,"14467":14468,"14468":14469,"14469":14470,"14470":14471,"14471":14472,"14472":14473,"14473":14474,"14474":14475,"14475":14476,"14476":14477,"14477":14478,"14478":14479,"14479":14480,"14480":14481,"14481":14482,"14482":14483,"14483":14484,"14484":14485,"14485":14486,"14486":14487,"14487":14488,"14488":14489,"14489":14490,"14490":14491,"14491":14492,"14492":14493,"14493":14494,"14494":14495,"14495":14496,"14496":14497,"14497":14498,"14498":14499,"14499":14500,"14500":14501,"14501":14502,"14502":14503,"14503":14504,"14504":14505,"14505":14506,"14506":14507,"14507":14508,"14508":14509,"14509":14510,"14510":14511,"14511":14512,"14512":14513,"14513":14514,"14514":14515,"14515":14516,"14516":14517,"14517":14518,"14518":14519,"14519":14520,"14520":14521,"14521":14522,"14522":14523,"14523":14524,"14524":14525,"14525":14526,"14526":14527,"14527":14528,"14528":14529,"14529":14530,"14530":14531,"14531":14532,"14532":14533,"14533":14534,"14534":14535,"14535":14536,"14536":14537,"14537":14538,"14538":14539,"14539":14540,"14540":14541,"14541":14542,"14542":14543,"14543":14544,"14544":14545,"14545":14546,"14546":14547,"14547":14548,"14548":14549,"14549":14550,"14550":14551,"14551":14552,"14552":14553,"14553":14554,"14554":14555,"14555":14556,"14556":14557,"14557":14558,"14558":14559,"14559":14560,"14560":14561,"14561":14562,"14562":14563,"14563":14564,"14564":14565,"14565":14566,"14566":14567,"14567":14568,"14568":14569,"14569":14570,"14570":14571,"14571":14572,"14572":14573,"14573":14574,"14574":14575,"14575":14576,"14576":14577,"14577":14578,"14578":14579,"14579":14580,"14580":14581,"14581":14582,"14582":14583,"14583":14584,"14584":14585,"14585":14586,"14586":14587,"14587":14588,"14588":14589,"14589":14590,"14590":14591,"14591":14592,"14592":14593,"14593":14594,"14594":14595,"14595":14596,"14596":14597,"14597":14598,"14598":14599,"14599":14600,"14600":14601,"14601":14602,"14602":14603,"14603":14604,"14604":14605,"14605":14606,"14606":14607,"14607":14608,"14608":14609,"14609":14610,"14610":14611,"14611":14612,"14612":14613,"14613":14614,"14614":14615,"14615":14616,"14616":14617,"14617":14618,"14618":14619,"14619":14620,"14620":14621,"14621":14622,"14622":14623,"14623":14624,"14624":14625,"14625":14626,"14626":14627,"14627":14628,"14628":14629,"14629":14630,"14630":14631,"14631":14632,"14632":14633,"14633":14634,"14634":14635,"14635":14636,"14636":14637,"14637":14638,"14638":14639,"14639":14640,"14640":14641,"14641":14642,"14642":14643,"14643":14644,"14644":14645,"14645":14646,"14646":14647,"14647":14648,"14648":14649,"14649":14650,"14650":14651,"14651":14652,"14652":14653,"14653":14654,"14654":14655,"14655":14656,"14656":14657,"14657":14658,"14658":14659,"14659":14660,"14660":14661,"14661":14662,"14662":14663,"14663":14664,"14664":14665,"14665":14666,"14666":14667,"14667":14668,"14668":14669,"14669":14670,"14670":14671,"14671":14672,"14672":14673,"14673":14674,"14674":14675,"14675":14676,"14676":14677,"14677":14678,"14678":14679,"14679":14680,"14680":14681,"14681":14682,"14682":14683,"14683":14684,"14684":14685,"14685":14686,"14686":14687,"14687":14688,"14688":14689,"14689":14690,"14690":14691,"14691":14692,"14692":14693,"14693":14694,"14694":14695,"14695":14696,"14696":14697,"14697":14698,"14698":14699,"14699":14700,"14700":14701,"14701":14702,"14702":14703,"14703":14704,"14704":14705,"14705":14706,"14706":14707,"14707":14708,"14708":14709,"14709":14710,"14710":14711,"14711":14712,"14712":14713,"14713":14714,"14714":14715,"14715":14716,"14716":14717,"14717":14718,"14718":14719,"14719":14720,"14720":14721,"14721":14722,"14722":14723,"14723":14724,"14724":14725,"14725":14726,"14726":14727,"14727":14728,"14728":14729,"14729":14730,"14730":14731,"14731":14732,"14732":14733,"14733":14734,"14734":14735,"14735":14736,"14736":14737,"14737":14738,"14738":14739,"14739":14740,"14740":14741,"14741":14742,"14742":14743,"14743":14744,"14744":14745,"14745":14746,"14746":14747,"14747":14748,"14748":14749,"14749":14750,"14750":14751,"14751":14752,"14752":14753,"14753":14754,"14754":14755,"14755":14756,"14756":14757,"14757":14758,"14758":14759,"14759":14760,"14760":14761,"14761":14762,"14762":14763,"14763":14764,"14764":14765,"14765":14766,"14766":14767,"14767":14768,"14768":14769,"14769":14770,"14770":14771,"14771":14772,"14772":14773,"14773":14774,"14774":14775,"14775":14776,"14776":14777,"14777":14778,"14778":14779,"14779":14780,"14780":14781,"14781":14782,"14782":14783,"14783":14784,"14784":14785,"14785":14786,"14786":14787,"14787":14788,"14788":14789,"14789":14790,"14790":14791,"14791":14792,"14792":14793,"14793":14794,"14794":14795,"14795":14796,"14796":14797,"14797":14798,"14798":14799,"14799":14800,"14800":14801,"14801":14802,"14802":14803,"14803":14804,"14804":14805,"14805":14806,"14806":14807,"14807":14808,"14808":14809,"14809":14810,"14810":14811,"14811":14812,"14812":14813,"14813":14814,"14814":14815,"14815":14816,"14816":14817,"14817":14818,"14818":14819,"14819":14820,"14820":14821,"14821":14822,"14822":14823,"14823":14824,"14824":14825,"14825":14826,"14826":14827,"14827":14828,"14828":14829,"14829":14830,"14830":14831,"14831":14832,"14832":14833,"14833":14834,"14834":14835,"14835":14836,"14836":14837,"14837":14838,"14838":14839,"14839":14840,"14840":14841,"14841":14842,"14842":14843,"14843":14844,"14844":14845,"14845":14846,"14846":14847,"14847":14848,"14848":14849,"14849":14850,"14850":14851,"14851":14852,"14852":14853,"14853":14854,"14854":14855,"14855":14856,"14856":14857,"14857":14858,"14858":14859,"14859":14860,"14860":14861,"14861":14862,"14862":14863,"14863":14864,"14864":14865,"14865":14866,"14866":14867,"14867":14868,"14868":14869,"14869":14870,"14870":14871,"14871":14872,"14872":14873,"14873":14874,"14874":14875,"14875":14876,"14876":14877,"14877":14878,"14878":14879,"14879":14880,"14880":14881,"14881":14882,"14882":14883,"14883":14884,"14884":14885,"14885":14886,"14886":14887,"14887":14888,"14888":14889,"14889":14890,"14890":14891,"14891":14892,"14892":14893,"14893":14894,"14894":14895,"14895":14896,"14896":14897,"14897":14898,"14898":14899,"14899":14900,"14900":14901,"14901":14902,"14902":14903,"14903":14904,"14904":14905,"14905":14906,"14906":14907,"14907":14908,"14908":14909,"14909":14910,"14910":14911,"14911":14912,"14912":14913,"14913":14914,"14914":14915,"14915":14916,"14916":14917,"14917":14918,"14918":14919,"14919":14920,"14920":14921,"14921":14922,"14922":14923,"14923":14924,"14924":14925,"14925":14926,"14926":14927,"14927":14928,"14928":14929,"14929":14930,"14930":14931,"14931":14932,"14932":14933,"14933":14934,"14934":14935,"14935":14936,"14936":14937,"14937":14938,"14938":14939,"14939":14940,"14940":14941,"14941":14942,"14942":14943,"14943":14944,"14944":14945,"14945":14946,"14946":14947,"14947":14948,"14948":14949,"14949":14950,"14950":14951,"14951":14952,"14952":14953,"14953":14954,"14954":14955,"14955":14956,"14956":14957,"14957":14958,"14958":14959,"14959":14960,"14960":14961,"14961":14962,"14962":14963,"14963":14964,"14964":14965,"14965":14966,"14966":14967,"14967":14968,"14968":14969,"14969":14970,"14970":14971,"14971":14972,"14972":14973,"14973":14974,"14974":14975,"14975":14976,"14976":14977,"14977":14978,"14978":14979,"14979":14980,"14980":14981,"14981":14982,"14982":14983,"14983":14984,"14984":14985,"14985":14986,"14986":14987,"14987":14988,"14988":14989,"14989":14990,"14990":14991,"14991":14992,"14992":14993,"14993":14994,"14994":14995,"14995":14996,"14996":14997,"14997":14998,"14998":14999,"14999":15000,"15000":15001,"15001":15002,"15002":15003,"15003":15004,"15004":15005,"15005":15006,"15006":15007,"15007":15008,"15008":15009,"15009":15010,"15010":15011,"15011":15012,"15012":15013,"15013":15014,"15014":15015,"15015":15016,"15016":15017,"15017":15018,"15018":15019,"15019":15020,"15020":15021,"15021":15022,"15022":15023,"15023":15024,"15024":15025,"15025":15026,"15026":15027,"15027":15028,"15028":15029,"15029":15030,"15030":15031,"15031":15032,"15032":15033,"15033":15034,"15034":15035,"15035":15036,"15036":15037,"15037":15038,"15038":15039,"15039":15040,"15040":15041,"15041":15042,"15042":15043,"15043":15044,"15044":15045,"15045":15046,"15046":15047,"15047":15048,"15048":15049,"15049":15050,"15050":15051,"15051":15052,"15052":15053,"15053":15054,"15054":15055,"15055":15056,"15056":15057,"15057":15058,"15058":15059,"15059":15060,"15060":15061,"15061":15062,"15062":15063,"15063":15064,"15064":15065,"15065":15066,"15066":15067,"15067":15068,"15068":15069,"15069":15070,"15070":15071,"15071":15072,"15072":15073,"15073":15074,"15074":15075,"15075":15076,"15076":15077,"15077":15078,"15078":15079,"15079":15080,"15080":15081,"15081":15082,"15082":15083,"15083":15084,"15084":15085,"15085":15086,"15086":15087,"15087":15088,"15088":15089,"15089":15090,"15090":15091,"15091":15092,"15092":15093,"15093":15094,"15094":15095,"15095":15096,"15096":15097,"15097":15098,"15098":15099,"15099":15100,"15100":15101,"15101":15102,"15102":15103,"15103":15104,"15104":15105,"15105":15106,"15106":15107,"15107":15108,"15108":15109,"15109":15110,"15110":15111,"15111":15112,"15112":15113,"15113":15114,"15114":15115,"15115":15116,"15116":15117,"15117":15118,"15118":15119,"15119":15120,"15120":15121,"15121":15122,"15122":15123,"15123":15124,"15124":15125,"15125":15126,"15126":15127,"15127":15128,"15128":15129,"15129":15130,"15130":15131,"15131":15132,"15132":15133,"15133":15134,"15134":15135,"15135":15136,"15136":15137,"15137":15138,"15138":15139,"15139":15140,"15140":15141,"15141":15142,"15142":15143,"15143":15144,"15144":15145,"15145":15146,"15146":15147,"15147":15148,"15148":15149,"15149":15150,"15150":15151,"15151":15152,"15152":15153,"15153":15154,"15154":15155,"15155":15156,"15156":15157,"15157":15158,"15158":15159,"15159":15160,"15160":15161,"15161":15162,"15162":15163,"15163":15164,"15164":15165,"15165":15166,"15166":15167,"15167":15168,"15168":15169,"15169":15170,"15170":15171,"15171":15172,"15172":15173,"15173":15174,"15174":15175,"15175":15176,"15176":15177,"15177":15178,"15178":15179,"15179":15180,"15180":15181,"15181":15182,"15182":15183,"15183":15184,"15184":15185,"15185":15186,"15186":15187,"15187":15188,"15188":15189,"15189":15190,"15190":15191,"15191":15192,"15192":15193,"15193":15194,"15194":15195,"15195":15196,"15196":15197,"15197":15198,"15198":15199,"15199":15200,"15200":15201,"15201":15202,"15202":15203,"15203":15204,"15204":15205,"15205":15206,"15206":15207,"15207":15208,"15208":15209,"15209":15210,"15210":15211,"15211":15212,"15212":15213,"15213":15214,"15214":15215,"15215":15216,"15216":15217,"15217":15218,"15218":15219,"15219":15220,"15220":15221,"15221":15222,"15222":15223,"15223":15224,"15224":15225,"15225":15226,"15226":15227,"15227":15228,"15228":15229,"15229":15230,"15230":15231,"15231":15232,"15232":15233,"15233":15234,"15234":15235,"15235":15236,"15236":15237,"15237":15238,"15238":15239,"15239":15240,"15240":15241,"15241":15242,"15242":15243,"15243":15244,"15244":15245,"15245":15246,"15246":15247,"15247":15248,"15248":15249,"15249":15250,"15250":15251,"15251":15252,"15252":15253,"15253":15254,"15254":15255,"15255":15256,"15256":15257,"15257":15258,"15258":15259,"15259":15260,"15260":15261,"15261":15262,"15262":15263,"15263":15264,"15264":15265,"15265":15266,"15266":15267,"15267":15268,"15268":15269,"15269":15270,"15270":15271,"15271":15272,"15272":15273,"15273":15274,"15274":15275,"15275":15276,"15276":15277,"15277":15278,"15278":15279,"15279":15280,"15280":15281,"15281":15282,"15282":15283,"15283":15284,"15284":15285,"15285":15286,"15286":15287,"15287":15288,"15288":15289,"15289":15290,"15290":15291,"15291":15292,"15292":15293,"15293":15294,"15294":15295,"15295":15296,"15296":15297,"15297":15298,"15298":15299,"15299":15300,"15300":15301,"15301":15302,"15302":15303,"15303":15304,"15304":15305,"15305":15306,"15306":15307,"15307":15308,"15308":15309,"15309":15310,"15310":15311,"15311":15312,"15312":15313,"15313":15314,"15314":15315,"15315":15316,"15316":15317,"15317":15318,"15318":15319,"15319":15320,"15320":15321,"15321":15322,"15322":15323,"15323":15324,"15324":15325,"15325":15326,"15326":15327,"15327":15328,"15328":15329,"15329":15330,"15330":15331,"15331":15332,"15332":15333,"15333":15334,"15334":15335,"15335":15336,"15336":15337,"15337":15338,"15338":15339,"15339":15340,"15340":15341,"15341":15342,"15342":15343,"15343":15344,"15344":15345,"15345":15346,"15346":15347,"15347":15348,"15348":15349,"15349":15350,"15350":15351,"15351":15352,"15352":15353,"15353":15354,"15354":15355,"15355":15356,"15356":15357,"15357":15358,"15358":15359,"15359":15360,"15360":15361,"15361":15362,"15362":15363,"15363":15364,"15364":15365,"15365":15366,"15366":15367,"15367":15368,"15368":15369,"15369":15370,"15370":15371,"15371":15372,"15372":15373,"15373":15374,"15374":15375,"15375":15376,"15376":15377,"15377":15378,"15378":15379,"15379":15380,"15380":15381,"15381":15382,"15382":15383,"15383":15384,"15384":15385,"15385":15386,"15386":15387,"15387":15388,"15388":15389,"15389":15390,"15390":15391,"15391":15392,"15392":15393,"15393":15394,"15394":15395,"15395":15396,"15396":15397,"15397":15398,"15398":15399,"15399":15400,"15400":15401,"15401":15402,"15402":15403,"15403":15404,"15404":15405,"15405":15406,"15406":15407,"15407":15408,"15408":15409,"15409":15410,"15410":15411,"15411":15412,"15412":15413,"15413":15414,"15414":15415,"15415":15416,"15416":15417,"15417":15418,"15418":15419,"15419":15420,"15420":15421,"15421":15422,"15422":15423,"15423":15424,"15424":15425,"15425":15426,"15426":15427,"15427":15428,"15428":15429,"15429":15430,"15430":15431,"15431":15432,"15432":15433,"15433":15434,"15434":15435,"15435":15436,"15436":15437,"15437":15438,"15438":15439,"15439":15440,"15440":15441,"15441":15442,"15442":15443,"15443":15444,"15444":15445,"15445":15446,"15446":15447,"15447":15448,"15448":15449,"15449":15450,"15450":15451,"15451":15452,"15452":15453,"15453":15454,"15454":15455,"15455":15456,"15456":15457,"15457":15458,"15458":15459,"15459":15460,"15460":15461,"15461":15462,"15462":15463,"15463":15464,"15464":15465,"15465":15466,"15466":15467,"15467":15468,"15468":15469,"15469":15470,"15470":15471,"15471":15472,"15472":15473,"15473":15474,"15474":15475,"15475":15476,"15476":15477,"15477":15478,"15478":15479,"15479":15480,"15480":15481,"15481":15482,"15482":15483,"15483":15484,"15484":15485,"15485":15486,"15486":15487,"15487":15488,"15488":15489,"15489":15490,"15490":15491,"15491":15492,"15492":15493,"15493":15494,"15494":15495,"15495":15496,"15496":15497,"15497":15498,"15498":15499,"15499":15500,"15500":15501,"15501":15502,"15502":15503,"15503":15504,"15504":15505,"15505":15506,"15506":15507,"15507":15508,"15508":15509,"15509":15510,"15510":15511,"15511":15512,"15512":15513,"15513":15514,"15514":15515,"15515":15516,"15516":15517,"15517":15518,"15518":15519,"15519":15520,"15520":15521,"15521":15522,"15522":15523,"15523":15524,"15524":15525,"15525":15526,"15526":15527,"15527":15528,"15528":15529,"15529":15530,"15530":15531,"15531":15532,"15532":15533,"15533":15534,"15534":15535,"15535":15536,"15536":15537,"15537":15538,"15538":15539,"15539":15540,"15540":15541,"15541":15542,"15542":15543,"15543":15544,"15544":15545,"15545":15546,"15546":15547,"15547":15548,"15548":15549,"15549":15550,"15550":15551,"15551":15552,"15552":15553,"15553":15554,"15554":15555,"15555":15556,"15556":15557,"15557":15558,"15558":15559,"15559":15560,"15560":15561,"15561":15562,"15562":15563,"15563":15564,"15564":15565,"15565":15566,"15566":15567,"15567":15568,"15568":15569,"15569":15570,"15570":15571,"15571":15572,"15572":15573,"15573":15574,"15574":15575,"15575":15576,"15576":15577,"15577":15578,"15578":15579,"15579":15580,"15580":15581,"15581":15582,"15582":15583,"15583":15584,"15584":15585,"15585":15586,"15586":15587,"15587":15588,"15588":15589,"15589":15590,"15590":15591,"15591":15592,"15592":15593,"15593":15594,"15594":15595,"15595":15596,"15596":15597,"15597":15598,"15598":15599,"15599":15600,"15600":15601,"15601":15602,"15602":15603,"15603":15604,"15604":15605,"15605":15606,"15606":15607,"15607":15608,"15608":15609,"15609":15610,"15610":15611,"15611":15612,"15612":15613,"15613":15614,"15614":15615,"15615":15616,"15616":15617,"15617":15618,"15618":15619,"15619":15620,"15620":15621,"15621":15622,"15622":15623,"15623":15624,"15624":15625,"15625":15626,"15626":15627,"15627":15628,"15628":15629,"15629":15630,"15630":15631,"15631":15632,"15632":15633,"15633":15634,"15634":15635,"15635":15636,"15636":15637,"15637":15638,"15638":15639,"15639":15640,"15640":15641,"15641":15642,"15642":15643,"15643":15644,"15644":15645,"15645":15646,"15646":15647,"15647":15648,"15648":15649,"15649":15650,"15650":15651,"15651":15652,"15652":15653,"15653":15654,"15654":15655,"15655":15656,"15656":15657,"15657":15658,"15658":15659,"15659":15660,"15660":15661,"15661":15662,"15662":15663,"15663":15664,"15664":15665,"15665":15666,"15666":15667,"15667":15668,"15668":15669,"15669":15670,"15670":15671,"15671":15672,"15672":15673,"15673":15674,"15674":15675,"15675":15676,"15676":15677,"15677":15678,"15678":15679,"15679":15680,"15680":15681,"15681":15682,"15682":15683,"15683":15684,"15684":15685,"15685":15686,"15686":15687,"15687":15688,"15688":15689,"15689":15690,"15690":15691,"15691":15692,"15692":15693,"15693":15694,"15694":15695,"15695":15696,"15696":15697,"15697":15698,"15698":15699,"15699":15700,"15700":15701,"15701":15702,"15702":15703,"15703":15704,"15704":15705,"15705":15706,"15706":15707,"15707":15708,"15708":15709,"15709":15710,"15710":15711,"15711":15712,"15712":15713,"15713":15714,"15714":15715,"15715":15716,"15716":15717,"15717":15718,"15718":15719,"15719":15720,"15720":15721,"15721":15722,"15722":15723,"15723":15724,"15724":15725,"15725":15726,"15726":15727,"15727":15728,"15728":15729,"15729":15730,"15730":15731,"15731":15732,"15732":15733,"15733":15734,"15734":15735,"15735":15736,"15736":15737,"15737":15738,"15738":15739,"15739":15740,"15740":15741,"15741":15742,"15742":15743,"15743":15744,"15744":15745,"15745":15746,"15746":15747,"15747":15748,"15748":15749,"15749":15750,"15750":15751,"15751":15752,"15752":15753,"15753":15754,"15754":15755,"15755":15756,"15756":15757,"15757":15758,"15758":15759,"15759":15760,"15760":15761,"15761":15762,"15762":15763,"15763":15764,"15764":15765,"15765":15766,"15766":15767,"15767":15768,"15768":15769,"15769":15770,"15770":15771,"15771":15772,"15772":15773,"15773":15774,"15774":15775,"15775":15776,"15776":15777,"15777":15778,"15778":15779,"15779":15780,"15780":15781,"15781":15782,"15782":15783,"15783":15784,"15784":15785,"15785":15786,"15786":15787,"15787":15788,"15788":15789,"15789":15790,"15790":15791,"15791":15792,"15792":15793,"15793":15794,"15794":15795,"15795":15796,"15796":15797,"15797":15798,"15798":15799,"15799":15800,"15800":15801,"15801":15802,"15802":15803,"15803":15804,"15804":15805,"15805":15806,"15806":15807,"15807":15808,"15808":15809,"15809":15810,"15810":15811,"15811":15812,"15812":15813,"15813":15814,"15814":15815,"15815":15816,"15816":15817,"15817":15818,"15818":15819,"15819":15820,"15820":15821,"15821":15822,"15822":15823,"15823":15824,"15824":15825,"15825":15826,"15826":15827,"15827":15828,"15828":15829,"15829":15830,"15830":15831,"15831":15832,"15832":15833,"15833":15834,"15834":15835,"15835":15836,"15836":15837,"15837":15838,"15838":15839,"15839":15840,"15840":15841,"15841":15842,"15842":15843,"15843":15844,"15844":15845,"15845":15846,"15846":15847,"15847":15848,"15848":15849,"15849":15850,"15850":15851,"15851":15852,"15852":15853,"15853":15854,"15854":15855,"15855":15856,"15856":15857,"15857":15858,"15858":15859,"15859":15860,"15860":15861,"15861":15862,"15862":15863,"15863":15864,"15864":15865,"15865":15866,"15866":15867,"15867":15868,"15868":15869,"15869":15870,"15870":15871,"15871":15872,"15872":15873,"15873":15874,"15874":15875,"15875":15876,"15876":15877,"15877":15878,"15878":15879,"15879":15880,"15880":15881,"15881":15882,"15882":15883,"15883":15884,"15884":15885,"15885":15886,"15886":15887,"15887":15888,"15888":15889,"15889":15890,"15890":15891,"15891":15892,"15892":15893,"15893":15894,"15894":15895,"15895":15896,"15896":15897,"15897":15898,"15898":15899,"15899":15900,"15900":15901,"15901":15902,"15902":15903,"15903":15904,"15904":15905,"15905":15906,"15906":15907,"15907":15908,"15908":15909,"15909":15910,"15910":15911,"15911":15912,"15912":15913,"15913":15914,"15914":15915,"15915":15916,"15916":15917,"15917":15918,"15918":15919,"15919":15920,"15920":15921,"15921":15922,"15922":15923,"15923":15924,"15924":15925,"15925":15926,"15926":15927,"15927":15928,"15928":15929,"15929":15930,"15930":15931,"15931":15932,"15932":15933,"15933":15934,"15934":15935,"15935":15936,"15936":15937,"15937":15938,"15938":15939,"15939":15940,"15940":15941,"15941":15942,"15942":15943,"15943":15944,"15944":15945,"15945":15946,"15946":15947,"15947":15948,"15948":15949,"15949":15950,"15950":15951,"15951":15952,"15952":15953,"15953":15954,"15954":15955,"15955":15956,"15956":15957,"15957":15958,"15958":15959,"15959":15960,"15960":15961,"15961":15962,"15962":15963,"15963":15964,"15964":15965,"15965":15966,"15966":15967,"15967":15968,"15968":15969,"15969":15970,"15970":15971,"15971":15972,"15972":15973,"15973":15974,"15974":15975,"15975":15976,"15976":15977,"15977":15978,"15978":15979,"15979":15980,"15980":15981,"15981":15982,"15982":15983,"15983":15984,"15984":15985,"15985":15986,"15986":15987,"15987":15988,"15988":15989,"15989":15990,"15990":15991,"15991":15992,"15992":15993,"15993":15994,"15994":15995,"15995":15996,"15996":15997,"15997":15998,"15998":15999,"15999":16000,"16000":16001,"16001":16002,"16002":16003,"16003":16004,"16004":16005,"16005":16006,"16006":16007,"16007":16008,"16008":16009,"16009":16010,"16010":16011,"16011":16012,"16012":16013,"16013":16014,"16014":16015,"16015":16016,"16016":16017,"16017":16018,"16018":16019,"16019":16020,"16020":16021,"16021":16022,"16022":16023,"16023":16024,"16024":16025,"16025":16026,"16026":16027,"16027":16028,"16028":16029,"16029":16030,"16030":16031,"16031":16032,"16032":16033,"16033":16034,"16034":16035,"16035":16036,"16036":16037,"16037":16038,"16038":16039,"16039":16040,"16040":16041,"16041":16042,"16042":16043,"16043":16044,"16044":16045,"16045":16046,"16046":16047,"16047":16048,"16048":16049,"16049":16050,"16050":16051,"16051":16052,"16052":16053,"16053":16054,"16054":16055,"16055":16056,"16056":16057,"16057":16058,"16058":16059,"16059":16060,"16060":16061,"16061":16062,"16062":16063,"16063":16064,"16064":16065,"16065":16066,"16066":16067,"16067":16068,"16068":16069,"16069":16070,"16070":16071,"16071":16072,"16072":16073,"16073":16074,"16074":16075,"16075":16076,"16076":16077,"16077":16078,"16078":16079,"16079":16080,"16080":16081,"16081":16082,"16082":16083,"16083":16084,"16084":16085,"16085":16086,"16086":16087,"16087":16088,"16088":16089,"16089":16090,"16090":16091,"16091":16092,"16092":16093,"16093":16094,"16094":16095,"16095":16096,"16096":16097,"16097":16098,"16098":16099,"16099":16100,"16100":16101,"16101":16102,"16102":16103,"16103":16104,"16104":16105,"16105":16106,"16106":16107,"16107":16108,"16108":16109,"16109":16110,"16110":16111,"16111":16112,"16112":16113,"16113":16114,"16114":16115,"16115":16116,"16116":16117,"16117":16118,"16118":16119,"16119":16120,"16120":16121,"16121":16122,"16122":16123,"16123":16124,"16124":16125,"16125":16126,"16126":16127,"16127":16128,"16128":16129,"16129":16130,"16130":16131,"16131":16132,"16132":16133,"16133":16134,"16134":16135,"16135":16136,"16136":16137,"16137":16138,"16138":16139,"16139":16140,"16140":16141,"16141":16142,"16142":16143,"16143":16144,"16144":16145,"16145":16146,"16146":16147,"16147":16148,"16148":16149,"16149":16150,"16150":16151,"16151":16152,"16152":16153,"16153":16154,"16154":16155,"16155":16156,"16156":16157,"16157":16158,"16158":16159,"16159":16160,"16160":16161,"16161":16162,"16162":16163,"16163":16164,"16164":16165,"16165":16166,"16166":16167,"16167":16168,"16168":16169,"16169":16170,"16170":16171,"16171":16172,"16172":16173,"16173":16174,"16174":16175,"16175":16176,"16176":16177,"16177":16178,"16178":16179,"16179":16180,"16180":16181,"16181":16182,"16182":16183,"16183":16184,"16184":16185,"16185":16186,"16186":16187,"16187":16188,"16188":16189,"16189":16190,"16190":16191,"16191":16192,"16192":16193,"16193":16194,"16194":16195,"16195":16196,"16196":16197,"16197":16198,"16198":16199,"16199":16200,"16200":16201,"16201":16202,"16202":16203,"16203":16204,"16204":16205,"16205":16206,"16206":16207,"16207":16208,"16208":16209,"16209":16210,"16210":16211,"16211":16212,"16212":16213,"16213":16214,"16214":16215,"16215":16216,"16216":16217,"16217":16218,"16218":16219,"16219":16220,"16220":16221,"16221":16222,"16222":16223,"16223":16224,"16224":16225,"16225":16226,"16226":16227,"16227":16228,"16228":16229,"16229":16230,"16230":16231,"16231":16232,"16232":16233,"16233":16234,"16234":16235,"16235":16236,"16236":16237,"16237":16238,"16238":16239,"16239":16240,"16240":16241,"16241":16242,"16242":16243,"16243":16244,"16244":16245,"16245":16246,"16246":16247,"16247":16248,"16248":16249,"16249":16250,"16250":16251,"16251":16252,"16252":16253,"16253":16254,"16254":16255,"16255":16256,"16256":16257,"16257":16258,"16258":16259,"16259":16260,"16260":16261,"16261":16262,"16262":16263,"16263":16264,"16264":16265,"16265":16266,"16266":16267,"16267":16268,"16268":16269,"16269":16270,"16270":16271,"16271":16272,"16272":16273,"16273":16274,"16274":16275,"16275":16276,"16276":16277,"16277":16278,"16278":16279,"16279":16280,"16280":16281,"16281":16282,"16282":16283,"16283":16284,"16284":16285,"16285":16286,"16286":16287,"16287":16288,"16288":16289,"16289":16290,"16290":16291,"16291":16292,"16292":16293,"16293":16294,"16294":16295,"16295":16296,"16296":16297,"16297":16298,"16298":16299,"16299":16300,"16300":16301,"16301":16302,"16302":16303,"16303":16304,"16304":16305,"16305":16306,"16306":16307,"16307":16308,"16308":16309,"16309":16310,"16310":16311,"16311":16312,"16312":16313,"16313":16314,"16314":16315,"16315":16316,"16316":16317,"16317":16318,"16318":16319,"16319":16320,"16320":16321,"16321":16322,"16322":16323,"16323":16324,"16324":16325,"16325":16326,"16326":16327,"16327":16328,"16328":16329,"16329":16330,"16330":16331,"16331":16332,"16332":16333,"16333":16334,"16334":16335,"16335":16336,"16336":16337,"16337":16338,"16338":16339,"16339":16340,"16340":16341,"16341":16342,"16342":16343,"16343":16344,"16344":16345,"16345":16346,"16346":16347,"16347":16348,"16348":16349,"16349":16350,"16350":16351,"16351":16352,"16352":16353,"16353":16354,"16354":16355,"16355":16356,"16356":16357,"16357":16358,"16358":16359,"16359":16360,"16360":16361,"16361":16362,"16362":16363,"16363":16364,"16364":16365,"16365":16366,"16366":16367,"16367":16368,"16368":16369,"16369":16370,"16370":16371,"16371":16372,"16372":16373,"16373":16374,"16374":16375,"16375":16376,"16376":16377,"16377":16378,"16378":16379,"16379":16380,"16380":16381,"16381":16382,"16382":16383,"16383":16384,"16384":16385,"16385":16386,"16386":16387,"16387":16388,"16388":16389,"16389":16390,"16390":16391,"16391":16392,"16392":16393,"16393":16394,"16394":16395,"16395":16396,"16396":16397,"16397":16398,"16398":16399,"16399":16400,"16400":16401,"16401":16402,"16402":16403,"16403":16404,"16404":16405,"16405":16406,"16406":16407,"16407":16408,"16408":16409,"16409":16410,"16410":16411,"16411":16412,"16412":16413,"16413":16414,"16414":16415,"16415":16416,"16416":16417,"16417":16418,"16418":16419,"16419":16420,"16420":16421,"16421":16422,"16422":16423,"16423":16424,"16424":16425,"16425":16426,"16426":16427,"16427":16428,"16428":16429,"16429":16430,"16430":16431,"16431":16432,"16432":16433,"16433":16434,"16434":16435,"16435":16436,"16436":16437,"16437":16438,"16438":16439,"16439":16440,"16440":16441,"16441":16442,"16442":16443,"16443":16444,"16444":16445,"16445":16446,"16446":16447,"16447":16448,"16448":16449,"16449":16450,"16450":16451,"16451":16452,"16452":16453,"16453":16454,"16454":16455,"16455":16456,"16456":16457,"16457":16458,"16458":16459,"16459":16460,"16460":16461,"16461":16462,"16462":16463,"16463":16464,"16464":16465,"16465":16466,"16466":16467,"16467":16468,"16468":16469,"16469":16470,"16470":16471,"16471":16472,"16472":16473,"16473":16474,"16474":16475,"16475":16476,"16476":16477,"16477":16478,"16478":16479,"16479":16480,"16480":16481,"16481":16482,"16482":16483,"16483":16484,"16484":16485,"16485":16486,"16486":16487,"16487":16488,"16488":16489,"16489":16490,"16490":16491,"16491":16492,"16492":16493,"16493":16494,"16494":16495,"16495":16496,"16496":16497,"16497":16498,"16498":16499,"16499":16500,"16500":16501,"16501":16502,"16502":16503,"16503":16504,"16504":16505,"16505":16506,"16506":16507,"16507":16508,"16508":16509,"16509":16510,"16510":16511,"16511":16512,"16512":16513,"16513":16514,"16514":16515,"16515":16516,"16516":16517,"16517":16518,"16518":16519,"16519":16520,"16520":16521,"16521":16522,"16522":16523,"16523":16524,"16524":16525,"16525":16526,"16526":16527,"16527":16528,"16528":16529,"16529":16530,"16530":16531,"16531":16532,"16532":16533,"16533":16534,"16534":16535,"16535":16536,"16536":16537,"16537":16538,"16538":16539,"16539":16540,"16540":16541,"16541":16542,"16542":16543,"16543":16544,"16544":16545,"16545":16546,"16546":16547,"16547":16548,"16548":16549,"16549":16550,"16550":16551,"16551":16552,"16552":16553,"16553":16554,"16554":16555,"16555":16556,"16556":16557,"16557":16558,"16558":16559,"16559":16560,"16560":16561,"16561":16562,"16562":16563,"16563":16564,"16564":16565,"16565":16566,"16566":16567,"16567":16568,"16568":16569,"16569":16570,"16570":16571,"16571":16572,"16572":16573,"16573":16574,"16574":16575,"16575":16576,"16576":16577,"16577":16578,"16578":16579,"16579":16580,"16580":16581,"16581":16582,"16582":16583,"16583":16584,"16584":16585,"16585":16586,"16586":16587,"16587":16588,"16588":16589,"16589":16590,"16590":16591,"16591":16592,"16592":16593,"16593":16594,"16594":16595,"16595":16596,"16596":16597,"16597":16598,"16598":16599,"16599":16600,"16600":16601,"16601":16602,"16602":16603,"16603":16604,"16604":16605,"16605":16606,"16606":16607,"16607":16608,"16608":16609,"16609":16610,"16610":16611,"16611":16612,"16612":16613,"16613":16614,"16614":16615,"16615":16616,"16616":16617,"16617":16618,"16618":16619,"16619":16620,"16620":16621,"16621":16622,"16622":16623,"16623":16624,"16624":16625,"16625":16626,"16626":16627,"16627":16628,"16628":16629,"16629":16630,"16630":16631,"16631":16632,"16632":16633,"16633":16634,"16634":16635,"16635":16636,"16636":16637,"16637":16638,"16638":16639,"16639":16640,"16640":16641,"16641":16642,"16642":16643,"16643":16644,"16644":16645,"16645":16646,"16646":16647,"16647":16648,"16648":16649,"16649":16650,"16650":16651,"16651":16652,"16652":16653,"16653":16654,"16654":16655,"16655":16656,"16656":16657,"16657":16658,"16658":16659,"16659":16660,"16660":16661,"16661":16662,"16662":16663,"16663":16664,"16664":16665,"16665":16666,"16666":16667,"16667":16668,"16668":16669,"16669":16670,"16670":16671,"16671":16672,"16672":16673,"16673":16674,"16674":16675,"16675":16676,"16676":16677,"16677":16678,"16678":16679,"16679":16680,"16680":16681,"16681":16682,"16682":16683,"16683":16684,"16684":16685,"16685":16686,"16686":16687,"16687":16688,"16688":16689,"16689":16690,"16690":16691,"16691":16692,"16692":16693,"16693":16694,"16694":16695,"16695":16696,"16696":16697,"16697":16698,"16698":16699,"16699":16700,"16700":16701,"16701":16702,"16702":16703,"16703":16704,"16704":16705,"16705":16706,"16706":16707,"16707":16708,"16708":16709,"16709":16710,"16710":16711,"16711":16712,"16712":16713,"16713":16714,"16714":16715,"16715":16716,"16716":16717,"16717":16718,"16718":16719,"16719":16720,"16720":16721,"16721":16722,"16722":16723,"16723":16724,"16724":16725,"16725":16726,"16726":16727,"16727":16728,"16728":16729,"16729":16730,"16730":16731,"16731":16732,"16732":16733,"16733":16734,"16734":16735,"16735":16736,"16736":16737,"16737":16738,"16738":16739,"16739":16740,"16740":16741,"16741":16742,"16742":16743,"16743":16744,"16744":16745,"16745":16746,"16746":16747,"16747":16748,"16748":16749,"16749":16750,"16750":16751,"16751":16752,"16752":16753,"16753":16754,"16754":16755,"16755":16756,"16756":16757,"16757":16758,"16758":16759,"16759":16760,"16760":16761,"16761":16762,"16762":16763,"16763":16764,"16764":16765,"16765":16766,"16766":16767,"16767":16768,"16768":16769,"16769":16770,"16770":16771,"16771":16772,"16772":16773,"16773":16774,"16774":16775,"16775":16776,"16776":16777,"16777":16778,"16778":16779,"16779":16780,"16780":16781,"16781":16782,"16782":16783,"16783":16784,"16784":16785,"16785":16786,"16786":16787,"16787":16788,"16788":16789,"16789":16790,"16790":16791,"16791":16792,"16792":16793,"16793":16794,"16794":16795,"16795":16796,"16796":16797,"16797":16798,"16798":16799,"16799":16800,"16800":16801,"16801":16802,"16802":16803,"16803":16804,"16804":16805,"16805":16806,"16806":16807,"16807":16808,"16808":16809,"16809":16810,"16810":16811,"16811":16812,"16812":16813,"16813":16814,"16814":16815,"16815":16816,"16816":16817,"16817":16818,"16818":16819,"16819":16820,"16820":16821,"16821":16822,"16822":16823,"16823":16824,"16824":16825,"16825":16826,"16826":16827,"16827":16828,"16828":16829,"16829":16830,"16830":16831,"16831":16832,"16832":16833,"16833":16834,"16834":16835,"16835":16836,"16836":16837,"16837":16838,"16838":16839,"16839":16840,"16840":16841,"16841":16842,"16842":16843,"16843":16844,"16844":16845,"16845":16846,"16846":16847,"16847":16848,"16848":16849,"16849":16850,"16850":16851,"16851":16852,"16852":16853,"16853":16854,"16854":16855,"16855":16856,"16856":16857,"16857":16858,"16858":16859,"16859":16860,"16860":16861,"16861":16862,"16862":16863,"16863":16864,"16864":16865,"16865":16866,"16866":16867,"16867":16868,"16868":16869,"16869":16870,"16870":16871,"16871":16872,"16872":16873,"16873":16874,"16874":16875,"16875":16876,"16876":16877,"16877":16878,"16878":16879,"16879":16880,"16880":16881,"16881":16882,"16882":16883,"16883":16884,"16884":16885,"16885":16886,"16886":16887,"16887":16888,"16888":16889,"16889":16890,"16890":16891,"16891":16892,"16892":16893,"16893":16894,"16894":16895,"16895":16896,"16896":16897,"16897":16898,"16898":16899,"16899":16900,"16900":16901,"16901":16902,"16902":16903,"16903":16904,"16904":16905,"16905":16906,"16906":16907,"16907":16908,"16908":16909,"16909":16910,"16910":16911,"16911":16912,"16912":16913,"16913":16914,"16914":16915,"16915":16916,"16916":16917,"16917":16918,"16918":16919,"16919":16920,"16920":16921,"16921":16922,"16922":16923,"16923":16924,"16924":16925,"16925":16926,"16926":16927,"16927":16928,"16928":16929,"16929":16930,"16930":16931,"16931":16932,"16932":16933,"16933":16934,"16934":16935,"16935":16936,"16936":16937,"16937":16938,"16938":16939,"16939":16940,"16940":16941,"16941":16942,"16942":16943,"16943":16944,"16944":16945,"16945":16946,"16946":16947,"16947":16948,"16948":16949,"16949":16950,"16950":16951,"16951":16952,"16952":16953,"16953":16954,"16954":16955,"16955":16956,"16956":16957,"16957":16958,"16958":16959,"16959":16960,"16960":16961,"16961":16962,"16962":16963,"16963":16964,"16964":16965,"16965":16966,"16966":16967,"16967":16968,"16968":16969,"16969":16970,"16970":16971,"16971":16972,"16972":16973,"16973":16974,"16974":16975,"16975":16976,"16976":16977,"16977":16978,"16978":16979,"16979":16980,"16980":16981,"16981":16982,"16982":16983,"16983":16984,"16984":16985,"16985":16986,"16986":16987,"16987":16988,"16988":16989,"16989":16990,"16990":16991,"16991":16992,"16992":16993,"16993":16994,"16994":16995,"16995":16996,"16996":16997,"16997":16998,"16998":16999,"16999":17000,"17000":17001,"17001":17002,"17002":17003,"17003":17004,"17004":17005,"17005":17006,"17006":17007,"17007":17008,"17008":17009,"17009":17010,"17010":17011,"17011":17012,"17012":17013,"17013":17014,"17014":17015,"17015":17016,"17016":17017,"17017":17018,"17018":17019,"17019":17020,"17020":17021,"17021":17022,"17022":17023,"17023":17024,"17024":17025,"17025":17026,"17026":17027,"17027":17028,"17028":17029,"17029":17030,"17030":17031,"17031":17032,"17032":17033,"17033":17034,"17034":17035,"17035":17036,"17036":17037,"17037":17038,"17038":17039,"17039":17040,"17040":17041,"17041":17042,"17042":17043,"17043":17044,"17044":17045,"17045":17046,"17046":17047,"17047":17048,"17048":17049,"17049":17050,"17050":17051,"17051":17052,"17052":17053,"17053":17054,"17054":17055,"17055":17056,"17056":17057,"17057":17058,"17058":17059,"17059":17060,"17060":17061,"17061":17062,"17062":17063,"17063":17064,"17064":17065,"17065":17066,"17066":17067,"17067":17068,"17068":17069,"17069":17070,"17070":17071,"17071":17072,"17072":17073,"17073":17074,"17074":17075,"17075":17076,"17076":17077,"17077":17078,"17078":17079,"17079":17080,"17080":17081,"17081":17082,"17082":17083,"17083":17084,"17084":17085,"17085":17086,"17086":17087,"17087":17088,"17088":17089,"17089":17090,"17090":17091,"17091":17092,"17092":17093,"17093":17094,"17094":17095,"17095":17096,"17096":17097,"17097":17098,"17098":17099,"17099":17100,"17100":17101,"17101":17102,"17102":17103,"17103":17104,"17104":17105,"17105":17106,"17106":17107,"17107":17108,"17108":17109,"17109":17110,"17110":17111,"17111":17112,"17112":17113,"17113":17114,"17114":17115,"17115":17116,"17116":17117,"17117":17118,"17118":17119,"17119":17120,"17120":17121,"17121":17122,"17122":17123,"17123":17124,"17124":17125,"17125":17126,"17126":17127,"17127":17128,"17128":17129,"17129":17130,"17130":17131,"17131":17132,"17132":17133,"17133":17134,"17134":17135,"17135":17136,"17136":17137,"17137":17138,"17138":17139,"17139":17140,"17140":17141,"17141":17142,"17142":17143,"17143":17144,"17144":17145,"17145":17146,"17146":17147,"17147":17148,"17148":17149,"17149":17150,"17150":17151,"17151":17152,"17152":17153,"17153":17154,"17154":17155,"17155":17156,"17156":17157,"17157":17158,"17158":17159,"17159":17160,"17160":17161,"17161":17162,"17162":17163,"17163":17164,"17164":17165,"17165":17166,"17166":17167,"17167":17168,"17168":17169,"17169":17170,"17170":17171,"17171":17172,"17172":17173,"17173":17174,"17174":17175,"17175":17176,"17176":17177,"17177":17178,"17178":17179,"17179":17180,"17180":17181,"17181":17182,"17182":17183,"17183":17184,"17184":17185,"17185":17186,"17186":17187,"17187":17188,"17188":17189,"17189":17190,"17190":17191,"17191":17192,"17192":17193,"17193":17194,"17194":17195,"17195":17196,"17196":17197,"17197":17198,"17198":17199,"17199":17200,"17200":17201,"17201":17202,"17202":17203,"17203":17204,"17204":17205,"17205":17206,"17206":17207,"17207":17208,"17208":17209,"17209":17210,"17210":17211,"17211":17212,"17212":17213,"17213":17214,"17214":17215,"17215":17216,"17216":17217,"17217":17218,"17218":17219,"17219":17220,"17220":17221,"17221":17222,"17222":17223,"17223":17224,"17224":17225,"17225":17226,"17226":17227,"17227":17228,"17228":17229,"17229":17230,"17230":17231,"17231":17232,"17232":17233,"17233":17234,"17234":17235,"17235":17236,"17236":17237,"17237":17238,"17238":17239,"17239":17240,"17240":17241,"17241":17242,"17242":17243,"17243":17244,"17244":17245,"17245":17246,"17246":17247,"17247":17248,"17248":17249,"17249":17250,"17250":17251,"17251":17252,"17252":17253,"17253":17254,"17254":17255,"17255":17256,"17256":17257,"17257":17258,"17258":17259,"17259":17260,"17260":17261,"17261":17262,"17262":17263,"17263":17264,"17264":17265,"17265":17266,"17266":17267,"17267":17268,"17268":17269,"17269":17270,"17270":17271,"17271":17272,"17272":17273,"17273":17274,"17274":17275,"17275":17276,"17276":17277,"17277":17278,"17278":17279,"17279":17280,"17280":17281,"17281":17282,"17282":17283,"17283":17284,"17284":17285,"17285":17286,"17286":17287,"17287":17288,"17288":17289,"17289":17290,"17290":17291,"17291":17292,"17292":17293,"17293":17294,"17294":17295,"17295":17296,"17296":17297,"17297":17298,"17298":17299,"17299":17300,"17300":17301,"17301":17302,"17302":17303,"17303":17304,"17304":17305,"17305":17306,"17306":17307,"17307":17308,"17308":17309,"17309":17310,"17310":17311,"17311":17312,"17312":17313,"17313":17314,"17314":17315,"17315":17316,"17316":17317,"17317":17318,"17318":17319,"17319":17320,"17320":17321,"17321":17322,"17322":17323,"17323":17324,"17324":17325,"17325":17326,"17326":17327,"17327":17328,"17328":17329,"17329":17330,"17330":17331,"17331":17332,"17332":17333,"17333":17334,"17334":17335,"17335":17336,"17336":17337,"17337":17338,"17338":17339,"17339":17340,"17340":17341,"17341":17342,"17342":17343,"17343":17344,"17344":17345,"17345":17346,"17346":17347,"17347":17348,"17348":17349,"17349":17350,"17350":17351,"17351":17352,"17352":17353,"17353":17354,"17354":17355,"17355":17356,"17356":17357,"17357":17358,"17358":17359,"17359":17360,"17360":17361,"17361":17362,"17362":17363,"17363":17364,"17364":17365,"17365":17366,"17366":17367,"17367":17368,"17368":17369,"17369":17370,"17370":17371,"17371":17372,"17372":17373,"17373":17374,"17374":17375,"17375":17376,"17376":17377,"17377":17378,"17378":17379,"17379":17380,"17380":17381,"17381":17382,"17382":17383,"17383":17384,"17384":17385,"17385":17386,"17386":17387,"17387":17388,"17388":17389,"17389":17390,"17390":17391,"17391":17392,"17392":17393,"17393":17394,"17394":17395,"17395":17396,"17396":17397,"17397":17398,"17398":17399,"17399":17400,"17400":17401,"17401":17402,"17402":17403,"17403":17404,"17404":17405,"17405":17406,"17406":17407,"17407":17408,"17408":17409,"17409":17410,"17410":17411,"17411":17412,"17412":17413,"17413":17414,"17414":17415,"17415":17416,"17416":17417,"17417":17418,"17418":17419,"17419":17420,"17420":17421,"17421":17422,"17422":17423,"17423":17424,"17424":17425,"17425":17426,"17426":17427,"17427":17428,"17428":17429,"17429":17430,"17430":17431,"17431":17432,"17432":17433,"17433":17434,"17434":17435,"17435":17436,"17436":17437,"17437":17438,"17438":17439,"17439":17440,"17440":17441,"17441":17442,"17442":17443,"17443":17444,"17444":17445,"17445":17446,"17446":17447,"17447":17448,"17448":17449,"17449":17450,"17450":17451,"17451":17452,"17452":17453,"17453":17454,"17454":17455,"17455":17456,"17456":17457,"17457":17458,"17458":17459,"17459":17460,"17460":17461,"17461":17462,"17462":17463,"17463":17464,"17464":17465,"17465":17466,"17466":17467,"17467":17468,"17468":17469,"17469":17470,"17470":17471,"17471":17472,"17472":17473,"17473":17474,"17474":17475,"17475":17476,"17476":17477,"17477":17478,"17478":17479,"17479":17480,"17480":17481,"17481":17482,"17482":17483,"17483":17484,"17484":17485,"17485":17486,"17486":17487,"17487":17488,"17488":17489,"17489":17490,"17490":17491,"17491":17492,"17492":17493,"17493":17494,"17494":17495,"17495":17496,"17496":17497,"17497":17498,"17498":17499,"17499":17500,"17500":17501,"17501":17502,"17502":17503,"17503":17504,"17504":17505,"17505":17506,"17506":17507,"17507":17508,"17508":17509,"17509":17510,"17510":17511,"17511":17512,"17512":17513,"17513":17514,"17514":17515,"17515":17516,"17516":17517,"17517":17518,"17518":17519,"17519":17520,"17520":17521,"17521":17522,"17522":17523,"17523":17524,"17524":17525,"17525":17526,"17526":17527,"17527":17528,"17528":17529,"17529":17530,"17530":17531,"17531":17532,"17532":17533,"17533":17534,"17534":17535,"17535":17536,"17536":17537,"17537":17538,"17538":17539,"17539":17540,"17540":17541,"17541":17542,"17542":17543,"17543":17544,"17544":17545,"17545":17546,"17546":17547,"17547":17548,"17548":17549,"17549":17550,"17550":17551,"17551":17552,"17552":17553,"17553":17554,"17554":17555,"17555":17556,"17556":17557,"17557":17558,"17558":17559,"17559":17560,"17560":17561,"17561":17562,"17562":17563,"17563":17564,"17564":17565,"17565":17566,"17566":17567,"17567":17568,"17568":17569,"17569":17570,"17570":17571,"17571":17572,"17572":17573,"17573":17574,"17574":17575,"17575":17576,"17576":17577,"17577":17578,"17578":17579,"17579":17580,"17580":17581,"17581":17582,"17582":17583,"17583":17584,"17584":17585,"17585":17586,"17586":17587,"17587":17588,"17588":17589,"17589":17590,"17590":17591,"17591":17592,"17592":17593,"17593":17594,"17594":17595,"17595":17596,"17596":17597,"17597":17598,"17598":17599,"17599":17600,"17600":17601,"17601":17602,"17602":17603,"17603":17604,"17604":17605,"17605":17606,"17606":17607,"17607":17608,"17608":17609,"17609":17610,"17610":17611,"17611":17612,"17612":17613,"17613":17614,"17614":17615,"17615":17616,"17616":17617,"17617":17618,"17618":17619,"17619":17620,"17620":17621,"17621":17622,"17622":17623,"17623":17624,"17624":17625,"17625":17626,"17626":17627,"17627":17628,"17628":17629,"17629":17630,"17630":17631,"17631":17632,"17632":17633,"17633":17634,"17634":17635,"17635":17636,"17636":17637,"17637":17638,"17638":17639,"17639":17640,"17640":17641,"17641":17642,"17642":17643,"17643":17644,"17644":17645,"17645":17646,"17646":17647,"17647":17648,"17648":17649,"17649":17650,"17650":17651,"17651":17652,"17652":17653,"17653":17654,"17654":17655,"17655":17656,"17656":17657,"17657":17658,"17658":17659,"17659":17660,"17660":17661,"17661":17662,"17662":17663,"17663":17664,"17664":17665,"17665":17666,"17666":17667,"17667":17668,"17668":17669,"17669":17670,"17670":17671,"17671":17672,"17672":17673,"17673":17674,"17674":17675,"17675":17676,"17676":17677,"17677":17678,"17678":17679,"17679":17680,"17680":17681,"17681":17682,"17682":17683,"17683":17684,"17684":17685,"17685":17686,"17686":17687,"17687":17688,"17688":17689,"17689":17690,"17690":17691,"17691":17692,"17692":17693,"17693":17694,"17694":17695,"17695":17696,"17696":17697,"17697":17698,"17698":17699,"17699":17700,"17700":17701,"17701":17702,"17702":17703,"17703":17704,"17704":17705,"17705":17706,"17706":17707,"17707":17708,"17708":17709,"17709":17710,"17710":17711,"17711":17712,"17712":17713,"17713":17714,"17714":17715,"17715":17716,"17716":17717,"17717":17718,"17718":17719,"17719":17720,"17720":17721,"17721":17722,"17722":17723,"17723":17724,"17724":17725,"17725":17726,"17726":17727,"17727":17728,"17728":17729,"17729":17730,"17730":17731,"17731":17732,"17732":17733,"17733":17734,"17734":17735,"17735":17736,"17736":17737,"17737":17738,"17738":17739,"17739":17740,"17740":17741,"17741":17742,"17742":17743,"17743":17744,"17744":17745,"17745":17746,"17746":17747,"17747":17748,"17748":17749,"17749":17750,"17750":17751,"17751":17752,"17752":17753,"17753":17754,"17754":17755,"17755":17756,"17756":17757,"17757":17758,"17758":17759,"17759":17760,"17760":17761,"17761":17762,"17762":17763,"17763":17764,"17764":17765,"17765":17766,"17766":17767,"17767":17768,"17768":17769,"17769":17770,"17770":17771,"17771":17772,"17772":17773,"17773":17774,"17774":17775,"17775":17776,"17776":17777,"17777":17778,"17778":17779,"17779":17780,"17780":17781,"17781":17782,"17782":17783,"17783":17784,"17784":17785,"17785":17786,"17786":17787,"17787":17788,"17788":17789,"17789":17790,"17790":17791,"17791":17792,"17792":17793,"17793":17794,"17794":17795,"17795":17796,"17796":17797,"17797":17798,"17798":17799,"17799":17800,"17800":17801,"17801":17802,"17802":17803,"17803":17804,"17804":17805,"17805":17806,"17806":17807,"17807":17808,"17808":17809,"17809":17810,"17810":17811,"17811":17812,"17812":17813,"17813":17814,"17814":17815,"17815":17816,"17816":17817,"17817":17818,"17818":17819,"17819":17820,"17820":17821,"17821":17822,"17822":17823,"17823":17824,"17824":17825,"17825":17826,"17826":17827,"17827":17828,"17828":17829,"17829":17830,"17830":17831,"17831":17832,"17832":17833,"17833":17834,"17834":17835,"17835":17836,"17836":17837,"17837":17838,"17838":17839,"17839":17840,"17840":17841,"17841":17842,"17842":17843,"17843":17844,"17844":17845,"17845":17846,"17846":17847,"17847":17848,"17848":17849,"17849":17850,"17850":17851,"17851":17852,"17852":17853,"17853":17854,"17854":17855,"17855":17856,"17856":17857,"17857":17858,"17858":17859,"17859":17860,"17860":17861,"17861":17862,"17862":17863,"17863":17864,"17864":17865,"17865":17866,"17866":17867,"17867":17868,"17868":17869,"17869":17870,"17870":17871,"17871":17872,"17872":17873,"17873":17874,"17874":17875,"17875":17876,"17876":17877,"17877":17878,"17878":17879,"17879":17880,"17880":17881,"17881":17882,"17882":17883,"17883":17884,"17884":17885,"17885":17886,"17886":17887,"17887":17888,"17888":17889,"17889":17890,"17890":17891,"17891":17892,"17892":17893,"17893":17894,"17894":17895,"17895":17896,"17896":17897,"17897":17898,"17898":17899,"17899":17900,"17900":17901,"17901":17902,"17902":17903,"17903":17904,"17904":17905,"17905":17906,"17906":17907,"17907":17908,"17908":17909,"17909":17910,"17910":17911,"17911":17912,"17912":17913,"17913":17914,"17914":17915,"17915":17916,"17916":17917,"17917":17918,"17918":17919,"17919":17920,"17920":17921,"17921":17922,"17922":17923,"17923":17924,"17924":17925,"17925":17926,"17926":17927,"17927":17928,"17928":17929,"17929":17930,"17930":17931,"17931":17932,"17932":17933,"17933":17934,"17934":17935,"17935":17936,"17936":17937,"17937":17938,"17938":17939,"17939":17940,"17940":17941,"17941":17942,"17942":17943,"17943":17944,"17944":17945,"17945":17946,"17946":17947,"17947":17948,"17948":17949,"17949":17950,"17950":17951,"17951":17952,"17952":17953,"17953":17954,"17954":17955,"17955":17956,"17956":17957,"17957":17958,"17958":17959,"17959":17960,"17960":17961,"17961":17962,"17962":17963,"17963":17964,"17964":17965,"17965":17966,"17966":17967,"17967":17968,"17968":17969,"17969":17970,"17970":17971,"17971":17972,"17972":17973,"17973":17974,"17974":17975,"17975":17976,"17976":17977,"17977":17978,"17978":17979,"17979":17980,"17980":17981,"17981":17982,"17982":17983,"17983":17984,"17984":17985,"17985":17986,"17986":17987,"17987":17988,"17988":17989,"17989":17990,"17990":17991,"17991":17992,"17992":17993,"17993":17994,"17994":17995,"17995":17996,"17996":17997,"17997":17998,"17998":17999,"17999":18000,"18000":18001,"18001":18002,"18002":18003,"18003":18004,"18004":18005,"18005":18006,"18006":18007,"18007":18008,"18008":18009,"18009":18010,"18010":18011,"18011":18012,"18012":18013,"18013":18014,"18014":18015,"18015":18016,"18016":18017,"18017":18018,"18018":18019,"18019":18020,"18020":18021,"18021":18022,"18022":18023,"18023":18024,"18024":18025,"18025":18026,"18026":18027,"18027":18028,"18028":18029,"18029":18030,"18030":18031,"18031":18032,"18032":18033,"18033":18034,"18034":18035,"18035":18036,"18036":18037,"18037":18038,"18038":18039,"18039":18040,"18040":18041,"18041":18042,"18042":18043,"18043":18044,"18044":18045,"18045":18046,"18046":18047,"18047":18048,"18048":18049,"18049":18050,"18050":18051,"18051":18052,"18052":18053,"18053":18054,"18054":18055,"18055":18056,"18056":18057,"18057":18058,"18058":18059,"18059":18060,"18060":18061,"18061":18062,"18062":18063,"18063":18064,"18064":18065,"18065":18066,"18066":18067,"18067":18068,"18068":18069,"18069":18070,"18070":18071,"18071":18072,"18072":18073,"18073":18074,"18074":18075,"18075":18076,"18076":18077,"18077":18078,"18078":18079,"18079":18080,"18080":18081,"18081":18082,"18082":18083,"18083":18084,"18084":18085,"18085":18086,"18086":18087,"18087":18088,"18088":18089,"18089":18090,"18090":18091,"18091":18092,"18092":18093,"18093":18094,"18094":18095,"18095":18096,"18096":18097,"18097":18098,"18098":18099,"18099":18100,"18100":18101,"18101":18102,"18102":18103,"18103":18104,"18104":18105,"18105":18106,"18106":18107,"18107":18108,"18108":18109,"18109":18110,"18110":18111,"18111":18112,"18112":18113,"18113":18114,"18114":18115,"18115":18116,"18116":18117,"18117":18118,"18118":18119,"18119":18120,"18120":18121,"18121":18122,"18122":18123,"18123":18124,"18124":18125,"18125":18126,"18126":18127,"18127":18128,"18128":18129,"18129":18130,"18130":18131,"18131":18132,"18132":18133,"18133":18134,"18134":18135,"18135":18136,"18136":18137,"18137":18138,"18138":18139,"18139":18140,"18140":18141,"18141":18142,"18142":18143,"18143":18144,"18144":18145,"18145":18146,"18146":18147,"18147":18148,"18148":18149,"18149":18150,"18150":18151,"18151":18152,"18152":18153,"18153":18154,"18154":18155,"18155":18156,"18156":18157,"18157":18158,"18158":18159,"18159":18160,"18160":18161,"18161":18162,"18162":18163,"18163":18164,"18164":18165,"18165":18166,"18166":18167,"18167":18168,"18168":18169,"18169":18170,"18170":18171,"18171":18172,"18172":18173,"18173":18174,"18174":18175,"18175":18176,"18176":18177,"18177":18178,"18178":18179,"18179":18180,"18180":18181,"18181":18182,"18182":18183,"18183":18184,"18184":18185,"18185":18186,"18186":18187,"18187":18188,"18188":18189,"18189":18190,"18190":18191,"18191":18192,"18192":18193,"18193":18194,"18194":18195,"18195":18196,"18196":18197,"18197":18198,"18198":18199,"18199":18200,"18200":18201,"18201":18202,"18202":18203,"18203":18204,"18204":18205,"18205":18206,"18206":18207,"18207":18208,"18208":18209,"18209":18210,"18210":18211,"18211":18212,"18212":18213,"18213":18214,"18214":18215,"18215":18216,"18216":18217,"18217":18218,"18218":18219,"18219":18220,"18220":18221,"18221":18222,"18222":18223,"18223":18224,"18224":18225,"18225":18226,"18226":18227,"18227":18228,"18228":18229,"18229":18230,"18230":18231,"18231":18232,"18232":18233,"18233":18234,"18234":18235,"18235":18236,"18236":18237,"18237":18238,"18238":18239,"18239":18240,"18240":18241,"18241":18242,"18242":18243,"18243":18244,"18244":18245,"18245":18246,"18246":18247,"18247":18248,"18248":18249,"18249":18250,"18250":18251,"18251":18252,"18252":18253,"18253":18254,"18254":18255,"18255":18256,"18256":18257,"18257":18258,"18258":18259,"18259":18260,"18260":18261,"18261":18262,"18262":18263,"18263":18264,"18264":18265,"18265":18266,"18266":18267,"18267":18268,"18268":18269,"18269":18270,"18270":18271,"18271":18272,"18272":18273,"18273":18274,"18274":18275,"18275":18276,"18276":18277,"18277":18278,"18278":18279,"18279":18280,"18280":18281,"18281":18282,"18282":18283,"18283":18284,"18284":18285,"18285":18286,"18286":18287,"18287":18288,"18288":18289,"18289":18290,"18290":18291,"18291":18292,"18292":18293,"18293":18294,"18294":18295,"18295":18296,"18296":18297,"18297":18298,"18298":18299,"18299":18300,"18300":18301,"18301":18302,"18302":18303,"18303":18304,"18304":18305,"18305":18306,"18306":18307,"18307":18308,"18308":18309,"18309":18310,"18310":18311,"18311":18312,"18312":18313,"18313":18314,"18314":18315,"18315":18316,"18316":18317,"18317":18318,"18318":18319,"18319":18320,"18320":18321,"18321":18322,"18322":18323,"18323":18324,"18324":18325,"18325":18326,"18326":18327,"18327":18328,"18328":18329,"18329":18330,"18330":18331,"18331":18332,"18332":18333,"18333":18334,"18334":18335,"18335":18336,"18336":18337,"18337":18338,"18338":18339,"18339":18340,"18340":18341,"18341":18342,"18342":18343,"18343":18344,"18344":18345,"18345":18346,"18346":18347,"18347":18348,"18348":18349,"18349":18350,"18350":18351,"18351":18352,"18352":18353,"18353":18354,"18354":18355,"18355":18356,"18356":18357,"18357":18358,"18358":18359,"18359":18360,"18360":18361,"18361":18362,"18362":18363,"18363":18364,"18364":18365,"18365":18366,"18366":18367,"18367":18368,"18368":18369,"18369":18370,"18370":18371,"18371":18372,"18372":18373,"18373":18374,"18374":18375,"18375":18376,"18376":18377,"18377":18378,"18378":18379,"18379":18380,"18380":18381,"18381":18382,"18382":18383,"18383":18384,"18384":18385,"18385":18386,"18386":18387,"18387":18388,"18388":18389,"18389":18390,"18390":18391,"18391":18392,"18392":18393,"18393":18394,"18394":18395,"18395":18396,"18396":18397,"18397":18398,"18398":18399,"18399":18400,"18400":18401,"18401":18402,"18402":18403,"18403":18404,"18404":18405,"18405":18406,"18406":18407,"18407":18408,"18408":18409,"18409":18410,"18410":18411,"18411":18412,"18412":18413,"18413":18414,"18414":18415,"18415":18416,"18416":18417,"18417":18418,"18418":18419,"18419":18420,"18420":18421,"18421":18422,"18422":18423,"18423":18424,"18424":18425,"18425":18426,"18426":18427,"18427":18428,"18428":18429,"18429":18430,"18430":18431,"18431":18432,"18432":18433,"18433":18434,"18434":18435,"18435":18436,"18436":18437,"18437":18438,"18438":18439,"18439":18440,"18440":18441,"18441":18442,"18442":18443,"18443":18444,"18444":18445,"18445":18446,"18446":18447,"18447":18448,"18448":18449,"18449":18450,"18450":18451,"18451":18452,"18452":18453,"18453":18454,"18454":18455,"18455":18456,"18456":18457,"18457":18458,"18458":18459,"18459":18460,"18460":18461,"18461":18462,"18462":18463,"18463":18464,"18464":18465,"18465":18466,"18466":18467,"18467":18468,"18468":18469,"18469":18470,"18470":18471,"18471":18472,"18472":18473,"18473":18474,"18474":18475,"18475":18476,"18476":18477,"18477":18478,"18478":18479,"18479":18480,"18480":18481,"18481":18482,"18482":18483,"18483":18484,"18484":18485,"18485":18486,"18486":18487,"18487":18488,"18488":18489,"18489":18490,"18490":18491,"18491":18492,"18492":18493,"18493":18494,"18494":18495,"18495":18496,"18496":18497,"18497":18498,"18498":18499,"18499":18500,"18500":18501,"18501":18502,"18502":18503,"18503":18504,"18504":18505,"18505":18506,"18506":18507,"18507":18508,"18508":18509,"18509":18510,"18510":18511,"18511":18512,"18512":18513,"18513":18514,"18514":18515,"18515":18516,"18516":18517,"18517":18518,"18518":18519,"18519":18520,"18520":18521,"18521":18522,"18522":18523,"18523":18524,"18524":18525,"18525":18526,"18526":18527,"18527":18528,"18528":18529,"18529":18530,"18530":18531,"18531":18532,"18532":18533,"18533":18534,"18534":18535,"18535":18536,"18536":18537,"18537":18538,"18538":18539,"18539":18540,"18540":18541,"18541":18542,"18542":18543,"18543":18544,"18544":18545,"18545":18546,"18546":18547,"18547":18548,"18548":18549,"18549":18550,"18550":18551,"18551":18552,"18552":18553,"18553":18554,"18554":18555,"18555":18556,"18556":18557,"18557":18558,"18558":18559,"18559":18560,"18560":18561,"18561":18562,"18562":18563,"18563":18564,"18564":18565,"18565":18566,"18566":18567,"18567":18568,"18568":18569,"18569":18570,"18570":18571,"18571":18572,"18572":18573,"18573":18574,"18574":18575,"18575":18576,"18576":18577,"18577":18578,"18578":18579,"18579":18580,"18580":18581,"18581":18582,"18582":18583,"18583":18584,"18584":18585,"18585":18586,"18586":18587,"18587":18588,"18588":18589,"18589":18590,"18590":18591,"18591":18592,"18592":18593,"18593":18594,"18594":18595,"18595":18596,"18596":18597,"18597":18598,"18598":18599,"18599":18600,"18600":18601,"18601":18602,"18602":18603,"18603":18604,"18604":18605,"18605":18606,"18606":18607,"18607":18608,"18608":18609,"18609":18610,"18610":18611,"18611":18612,"18612":18613,"18613":18614,"18614":18615,"18615":18616,"18616":18617,"18617":18618,"18618":18619,"18619":18620,"18620":18621,"18621":18622,"18622":18623,"18623":18624,"18624":18625,"18625":18626,"18626":18627,"18627":18628,"18628":18629,"18629":18630,"18630":18631,"18631":18632,"18632":18633,"18633":18634,"18634":18635,"18635":18636,"18636":18637,"18637":18638,"18638":18639,"18639":18640,"18640":18641,"18641":18642,"18642":18643,"18643":18644,"18644":18645,"18645":18646,"18646":18647,"18647":18648,"18648":18649,"18649":18650,"18650":18651,"18651":18652,"18652":18653,"18653":18654,"18654":18655,"18655":18656,"18656":18657,"18657":18658,"18658":18659,"18659":18660,"18660":18661,"18661":18662,"18662":18663,"18663":18664,"18664":18665,"18665":18666,"18666":18667,"18667":18668,"18668":18669,"18669":18670,"18670":18671,"18671":18672,"18672":18673,"18673":18674,"18674":18675,"18675":18676,"18676":18677,"18677":18678,"18678":18679,"18679":18680,"18680":18681,"18681":18682,"18682":18683,"18683":18684,"18684":18685,"18685":18686,"18686":18687,"18687":18688,"18688":18689,"18689":18690,"18690":18691,"18691":18692,"18692":18693,"18693":18694,"18694":18695,"18695":18696,"18696":18697,"18697":18698,"18698":18699,"18699":18700,"18700":18701,"18701":18702,"18702":18703,"18703":18704,"18704":18705,"18705":18706,"18706":18707,"18707":18708,"18708":18709,"18709":18710,"18710":18711,"18711":18712,"18712":18713,"18713":18714,"18714":18715,"18715":18716,"18716":18717,"18717":18718,"18718":18719,"18719":18720,"18720":18721,"18721":18722,"18722":18723,"18723":18724,"18724":18725,"18725":18726,"18726":18727,"18727":18728,"18728":18729,"18729":18730,"18730":18731,"18731":18732,"18732":18733,"18733":18734,"18734":18735,"18735":18736,"18736":18737,"18737":18738,"18738":18739,"18739":18740,"18740":18741,"18741":18742,"18742":18743,"18743":18744,"18744":18745,"18745":18746,"18746":18747,"18747":18748,"18748":18749,"18749":18750,"18750":18751,"18751":18752,"18752":18753,"18753":18754,"18754":18755,"18755":18756,"18756":18757,"18757":18758,"18758":18759,"18759":18760,"18760":18761,"18761":18762,"18762":18763,"18763":18764,"18764":18765,"18765":18766,"18766":18767,"18767":18768,"18768":18769,"18769":18770,"18770":18771,"18771":18772,"18772":18773,"18773":18774,"18774":18775,"18775":18776,"18776":18777,"18777":18778,"18778":18779,"18779":18780,"18780":18781,"18781":18782,"18782":18783,"18783":18784,"18784":18785,"18785":18786,"18786":18787,"18787":18788,"18788":18789,"18789":18790,"18790":18791,"18791":18792,"18792":18793,"18793":18794,"18794":18795,"18795":18796,"18796":18797,"18797":18798,"18798":18799,"18799":18800,"18800":18801,"18801":18802,"18802":18803,"18803":18804,"18804":18805,"18805":18806,"18806":18807,"18807":18808,"18808":18809,"18809":18810,"18810":18811,"18811":18812,"18812":18813,"18813":18814,"18814":18815,"18815":18816,"18816":18817,"18817":18818,"18818":18819,"18819":18820,"18820":18821,"18821":18822,"18822":18823,"18823":18824,"18824":18825,"18825":18826,"18826":18827,"18827":18828,"18828":18829,"18829":18830,"18830":18831,"18831":18832,"18832":18833,"18833":18834,"18834":18835,"18835":18836,"18836":18837,"18837":18838,"18838":18839,"18839":18840,"18840":18841,"18841":18842,"18842":18843,"18843":18844,"18844":18845,"18845":18846,"18846":18847,"18847":18848,"18848":18849,"18849":18850,"18850":18851,"18851":18852,"18852":18853,"18853":18854,"18854":18855,"18855":18856,"18856":18857,"18857":18858,"18858":18859,"18859":18860,"18860":18861,"18861":18862,"18862":18863,"18863":18864,"18864":18865,"18865":18866,"18866":18867,"18867":18868,"18868":18869,"18869":18870,"18870":18871,"18871":18872,"18872":18873,"18873":18874,"18874":18875,"18875":18876,"18876":18877,"18877":18878,"18878":18879,"18879":18880,"18880":18881,"18881":18882,"18882":18883,"18883":18884,"18884":18885,"18885":18886,"18886":18887,"18887":18888,"18888":18889,"18889":18890,"18890":18891,"18891":18892,"18892":18893,"18893":18894,"18894":18895,"18895":18896,"18896":18897,"18897":18898,"18898":18899,"18899":18900,"18900":18901,"18901":18902,"18902":18903,"18903":18904,"18904":18905,"18905":18906,"18906":18907,"18907":18908,"18908":18909,"18909":18910,"18910":18911,"18911":18912,"18912":18913,"18913":18914,"18914":18915,"18915":18916,"18916":18917,"18917":18918,"18918":18919,"18919":18920,"18920":18921,"18921":18922,"18922":18923,"18923":18924,"18924":18925,"18925":18926,"18926":18927,"18927":18928,"18928":18929,"18929":18930,"18930":18931,"18931":18932,"18932":18933,"18933":18934,"18934":18935,"18935":18936,"18936":18937,"18937":18938,"18938":18939,"18939":18940,"18940":18941,"18941":18942,"18942":18943,"18943":18944,"18944":18945,"18945":18946,"18946":18947,"18947":18948,"18948":18949,"18949":18950,"18950":18951,"18951":18952,"18952":18953,"18953":18954,"18954":18955,"18955":18956,"18956":18957,"18957":18958,"18958":18959,"18959":18960,"18960":18961,"18961":18962,"18962":18963,"18963":18964,"18964":18965,"18965":18966,"18966":18967,"18967":18968,"18968":18969,"18969":18970,"18970":18971,"18971":18972,"18972":18973,"18973":18974,"18974":18975,"18975":18976,"18976":18977,"18977":18978,"18978":18979,"18979":18980,"18980":18981,"18981":18982,"18982":18983,"18983":18984,"18984":18985,"18985":18986,"18986":18987,"18987":18988,"18988":18989,"18989":18990,"18990":18991,"18991":18992,"18992":18993,"18993":18994,"18994":18995,"18995":18996,"18996":18997,"18997":18998,"18998":18999,"18999":19000,"19000":19001,"19001":19002,"19002":19003,"19003":19004,"19004":19005,"19005":19006,"19006":19007,"19007":19008,"19008":19009,"19009":19010,"19010":19011,"19011":19012,"19012":19013,"19013":19014,"19014":19015,"19015":19016,"19016":19017,"19017":19018,"19018":19019,"19019":19020,"19020":19021,"19021":19022,"19022":19023,"19023":19024,"19024":19025,"19025":19026,"19026":19027,"19027":19028,"19028":19029,"19029":19030,"19030":19031,"19031":19032,"19032":19033,"19033":19034,"19034":19035,"19035":19036,"19036":19037,"19037":19038,"19038":19039,"19039":19040,"19040":19041,"19041":19042,"19042":19043,"19043":19044,"19044":19045,"19045":19046,"19046":19047,"19047":19048,"19048":19049,"19049":19050,"19050":19051,"19051":19052,"19052":19053,"19053":19054,"19054":19055,"19055":19056,"19056":19057,"19057":19058,"19058":19059,"19059":19060,"19060":19061,"19061":19062,"19062":19063,"19063":19064,"19064":19065,"19065":19066,"19066":19067,"19067":19068,"19068":19069,"19069":19070,"19070":19071,"19071":19072,"19072":19073,"19073":19074,"19074":19075,"19075":19076,"19076":19077,"19077":19078,"19078":19079,"19079":19080,"19080":19081,"19081":19082,"19082":19083,"19083":19084,"19084":19085,"19085":19086,"19086":19087,"19087":19088,"19088":19089,"19089":19090,"19090":19091,"19091":19092,"19092":19093,"19093":19094,"19094":19095,"19095":19096,"19096":19097,"19097":19098,"19098":19099,"19099":19100,"19100":19101,"19101":19102,"19102":19103,"19103":19104,"19104":19105,"19105":19106,"19106":19107,"19107":19108,"19108":19109,"19109":19110,"19110":19111,"19111":19112,"19112":19113,"19113":19114,"19114":19115,"19115":19116,"19116":19117,"19117":19118,"19118":19119,"19119":19120,"19120":19121,"19121":19122,"19122":19123,"19123":19124,"19124":19125,"19125":19126,"19126":19127,"19127":19128,"19128":19129,"19129":19130,"19130":19131,"19131":19132,"19132":19133,"19133":19134,"19134":19135,"19135":19136,"19136":19137,"19137":19138,"19138":19139,"19139":19140,"19140":19141,"19141":19142,"19142":19143,"19143":19144,"19144":19145,"19145":19146,"19146":19147,"19147":19148,"19148":19149,"19149":19150,"19150":19151,"19151":19152,"19152":19153,"19153":19154,"19154":19155,"19155":19156,"19156":19157,"19157":19158,"19158":19159,"19159":19160,"19160":19161,"19161":19162,"19162":19163,"19163":19164,"19164":19165,"19165":19166,"19166":19167,"19167":19168,"19168":19169,"19169":19170,"19170":19171,"19171":19172,"19172":19173,"19173":19174,"19174":19175,"19175":19176,"19176":19177,"19177":19178,"19178":19179,"19179":19180,"19180":19181,"19181":19182,"19182":19183,"19183":19184,"19184":19185,"19185":19186,"19186":19187,"19187":19188,"19188":19189,"19189":19190,"19190":19191,"19191":19192,"19192":19193,"19193":19194,"19194":19195,"19195":19196,"19196":19197,"19197":19198,"19198":19199,"19199":19200,"19200":19201,"19201":19202,"19202":19203,"19203":19204,"19204":19205,"19205":19206,"19206":19207,"19207":19208,"19208":19209,"19209":19210,"19210":19211,"19211":19212,"19212":19213,"19213":19214,"19214":19215,"19215":19216,"19216":19217,"19217":19218,"19218":19219,"19219":19220,"19220":19221,"19221":19222,"19222":19223,"19223":19224,"19224":19225,"19225":19226,"19226":19227,"19227":19228,"19228":19229,"19229":19230,"19230":19231,"19231":19232,"19232":19233,"19233":19234,"19234":19235,"19235":19236,"19236":19237,"19237":19238,"19238":19239,"19239":19240,"19240":19241,"19241":19242,"19242":19243,"19243":19244,"19244":19245,"19245":19246,"19246":19247,"19247":19248,"19248":19249,"19249":19250,"19250":19251,"19251":19252,"19252":19253,"19253":19254,"19254":19255,"19255":19256,"19256":19257,"19257":19258,"19258":19259,"19259":19260,"19260":19261,"19261":19262,"19262":19263,"19263":19264,"19264":19265,"19265":19266,"19266":19267,"19267":19268,"19268":19269,"19269":19270,"19270":19271,"19271":19272,"19272":19273,"19273":19274,"19274":19275,"19275":19276,"19276":19277,"19277":19278,"19278":19279,"19279":19280,"19280":19281,"19281":19282,"19282":19283,"19283":19284,"19284":19285,"19285":19286,"19286":19287,"19287":19288,"19288":19289,"19289":19290,"19290":19291,"19291":19292,"19292":19293,"19293":19294,"19294":19295,"19295":19296,"19296":19297,"19297":19298,"19298":19299,"19299":19300,"19300":19301,"19301":19302,"19302":19303,"19303":19304,"19304":19305,"19305":19306,"19306":19307,"19307":19308,"19308":19309,"19309":19310,"19310":19311,"19311":19312,"19312":19313,"19313":19314,"19314":19315,"19315":19316,"19316":19317,"19317":19318,"19318":19319,"19319":19320,"19320":19321,"19321":19322,"19322":19323,"19323":19324,"19324":19325,"19325":19326,"19326":19327,"19327":19328,"19328":19329,"19329":19330,"19330":19331,"19331":19332,"19332":19333,"19333":19334,"19334":19335,"19335":19336,"19336":19337,"19337":19338,"19338":19339,"19339":19340,"19340":19341,"19341":19342,"19342":19343,"19343":19344,"19344":19345,"19345":19346,"19346":19347,"19347":19348,"19348":19349,"19349":19350,"19350":19351,"19351":19352,"19352":19353,"19353":19354,"19354":19355,"19355":19356,"19356":19357,"19357":19358,"19358":19359,"19359":19360,"19360":19361,"19361":19362,"19362":19363,"19363":19364,"19364":19365,"19365":19366,"19366":19367,"19367":19368,"19368":19369,"19369":19370,"19370":19371,"19371":19372,"19372":19373,"19373":19374,"19374":19375,"19375":19376,"19376":19377,"19377":19378,"19378":19379,"19379":19380,"19380":19381,"19381":19382,"19382":19383,"19383":19384,"19384":19385,"19385":19386,"19386":19387,"19387":19388,"19388":19389,"19389":19390,"19390":19391,"19391":19392,"19392":19393,"19393":19394,"19394":19395,"19395":19396,"19396":19397,"19397":19398,"19398":19399,"19399":19400,"19400":19401,"19401":19402,"19402":19403,"19403":19404,"19404":19405,"19405":19406,"19406":19407,"19407":19408,"19408":19409,"19409":19410,"19410":19411,"19411":19412,"19412":19413,"19413":19414,"19414":19415,"19415":19416,"19416":19417,"19417":19418,"19418":19419,"19419":19420,"19420":19421,"19421":19422,"19422":19423,"19423":19424,"19424":19425,"19425":19426,"19426":19427,"19427":19428,"19428":19429,"19429":19430,"19430":19431,"19431":19432,"19432":19433,"19433":19434,"19434":19435,"19435":19436,"19436":19437,"19437":19438,"19438":19439,"19439":19440,"19440":19441,"19441":19442,"19442":19443,"19443":19444,"19444":19445,"19445":19446,"19446":19447,"19447":19448,"19448":19449,"19449":19450,"19450":19451,"19451":19452,"19452":19453,"19453":19454,"19454":19455,"19455":19456,"19456":19457,"19457":19458,"19458":19459,"19459":19460,"19460":19461,"19461":19462,"19462":19463,"19463":19464,"19464":19465,"19465":19466,"19466":19467,"19467":19468,"19468":19469,"19469":19470,"19470":19471,"19471":19472,"19472":19473,"19473":19474,"19474":19475,"19475":19476,"19476":19477,"19477":19478,"19478":19479,"19479":19480,"19480":19481,"19481":19482,"19482":19483,"19483":19484,"19484":19485,"19485":19486,"19486":19487,"19487":19488,"19488":19489,"19489":19490,"19490":19491,"19491":19492,"19492":19493,"19493":19494,"19494":19495,"19495":19496,"19496":19497,"19497":19498,"19498":19499,"19499":19500,"19500":19501,"19501":19502,"19502":19503,"19503":19504,"19504":19505,"19505":19506,"19506":19507,"19507":19508,"19508":19509,"19509":19510,"19510":19511,"19511":19512,"19512":19513,"19513":19514,"19514":19515,"19515":19516,"19516":19517,"19517":19518,"19518":19519,"19519":19520,"19520":19521,"19521":19522,"19522":19523,"19523":19524,"19524":19525,"19525":19526,"19526":19527,"19527":19528,"19528":19529,"19529":19530,"19530":19531,"19531":19532,"19532":19533,"19533":19534,"19534":19535,"19535":19536,"19536":19537,"19537":19538,"19538":19539,"19539":19540,"19540":19541,"19541":19542,"19542":19543,"19543":19544,"19544":19545,"19545":19546,"19546":19547,"19547":19548,"19548":19549,"19549":19550,"19550":19551,"19551":19552,"19552":19553,"19553":19554,"19554":19555,"19555":19556,"19556":19557,"19557":19558,"19558":19559,"19559":19560,"19560":19561,"19561":19562,"19562":19563,"19563":19564,"19564":19565,"19565":19566,"19566":19567,"19567":19568,"19568":19569,"19569":19570,"19570":19571,"19571":19572,"19572":19573,"19573":19574,"19574":19575,"19575":19576,"19576":19577,"19577":19578,"19578":19579,"19579":19580,"19580":19581,"19581":19582,"19582":19583,"19583":19584,"19584":19585,"19585":19586,"19586":19587,"19587":19588,"19588":19589,"19589":19590,"19590":19591,"19591":19592,"19592":19593,"19593":19594,"19594":19595,"19595":19596,"19596":19597,"19597":19598,"19598":19599,"19599":19600,"19600":19601,"19601":19602,"19602":19603,"19603":19604,"19604":19605,"19605":19606,"19606":19607,"19607":19608,"19608":19609,"19609":19610,"19610":19611,"19611":19612,"19612":19613,"19613":19614,"19614":19615,"19615":19616,"19616":19617,"19617":19618,"19618":19619,"19619":19620,"19620":19621,"19621":19622,"19622":19623,"19623":19624,"19624":19625,"19625":19626,"19626":19627,"19627":19628,"19628":19629,"19629":19630,"19630":19631,"19631":19632,"19632":19633,"19633":19634,"19634":19635,"19635":19636,"19636":19637,"19637":19638,"19638":19639,"19639":19640,"19640":19641,"19641":19642,"19642":19643,"19643":19644,"19644":19645,"19645":19646,"19646":19647,"19647":19648,"19648":19649,"19649":19650,"19650":19651,"19651":19652,"19652":19653,"19653":19654,"19654":19655,"19655":19656,"19656":19657,"19657":19658,"19658":19659,"19659":19660,"19660":19661,"19661":19662,"19662":19663,"19663":19664,"19664":19665,"19665":19666,"19666":19667,"19667":19668,"19668":19669,"19669":19670,"19670":19671,"19671":19672,"19672":19673,"19673":19674,"19674":19675,"19675":19676,"19676":19677,"19677":19678,"19678":19679,"19679":19680,"19680":19681,"19681":19682,"19682":19683,"19683":19684,"19684":19685,"19685":19686,"19686":19687,"19687":19688,"19688":19689,"19689":19690,"19690":19691,"19691":19692,"19692":19693,"19693":19694,"19694":19695,"19695":19696,"19696":19697,"19697":19698,"19698":19699,"19699":19700,"19700":19701,"19701":19702,"19702":19703,"19703":19704,"19704":19705,"19705":19706,"19706":19707,"19707":19708,"19708":19709,"19709":19710,"19710":19711,"19711":19712,"19712":19713,"19713":19714,"19714":19715,"19715":19716,"19716":19717,"19717":19718,"19718":19719,"19719":19720,"19720":19721,"19721":19722,"19722":19723,"19723":19724,"19724":19725,"19725":19726,"19726":19727,"19727":19728,"19728":19729,"19729":19730,"19730":19731,"19731":19732,"19732":19733,"19733":19734,"19734":19735,"19735":19736,"19736":19737,"19737":19738,"19738":19739,"19739":19740,"19740":19741,"19741":19742,"19742":19743,"19743":19744,"19744":19745,"19745":19746,"19746":19747,"19747":19748,"19748":19749,"19749":19750,"19750":19751,"19751":19752,"19752":19753,"19753":19754,"19754":19755,"19755":19756,"19756":19757,"19757":19758,"19758":19759,"19759":19760,"19760":19761,"19761":19762,"19762":19763,"19763":19764,"19764":19765,"19765":19766,"19766":19767,"19767":19768,"19768":19769,"19769":19770,"19770":19771,"19771":19772,"19772":19773,"19773":19774,"19774":19775,"19775":19776,"19776":19777,"19777":19778,"19778":19779,"19779":19780,"19780":19781,"19781":19782,"19782":19783,"19783":19784,"19784":19785,"19785":19786,"19786":19787,"19787":19788,"19788":19789,"19789":19790,"19790":19791,"19791":19792,"19792":19793,"19793":19794,"19794":19795,"19795":19796,"19796":19797,"19797":19798,"19798":19799,"19799":19800,"19800":19801,"19801":19802,"19802":19803,"19803":19804,"19804":19805,"19805":19806,"19806":19807,"19807":19808,"19808":19809,"19809":19810,"19810":19811,"19811":19812,"19812":19813,"19813":19814,"19814":19815,"19815":19816,"19816":19817,"19817":19818,"19818":19819,"19819":19820,"19820":19821,"19821":19822,"19822":19823,"19823":19824,"19824":19825,"19825":19826,"19826":19827,"19827":19828,"19828":19829,"19829":19830,"19830":19831,"19831":19832,"19832":19833,"19833":19834,"19834":19835,"19835":19836,"19836":19837,"19837":19838,"19838":19839,"19839":19840,"19840":19841,"19841":19842,"19842":19843,"19843":19844,"19844":19845,"19845":19846,"19846":19847,"19847":19848,"19848":19849,"19849":19850,"19850":19851,"19851":19852,"19852":19853,"19853":19854,"19854":19855,"19855":19856,"19856":19857,"19857":19858,"19858":19859,"19859":19860,"19860":19861,"19861":19862,"19862":19863,"19863":19864,"19864":19865,"19865":19866,"19866":19867,"19867":19868,"19868":19869,"19869":19870,"19870":19871,"19871":19872,"19872":19873,"19873":19874,"19874":19875,"19875":19876,"19876":19877,"19877":19878,"19878":19879,"19879":19880,"19880":19881,"19881":19882,"19882":19883,"19883":19884,"19884":19885,"19885":19886,"19886":19887,"19887":19888,"19888":19889,"19889":19890,"19890":19891,"19891":19892,"19892":19893,"19893":19894,"19894":19895,"19895":19896,"19896":19897,"19897":19898,"19898":19899,"19899":19900,"19900":19901,"19901":19902,"19902":19903,"19903":19904,"19904":19905,"19905":19906,"19906":19907,"19907":19908,"19908":19909,"19909":19910,"19910":19911,"19911":19912,"19912":19913,"19913":19914,"19914":19915,"19915":19916,"19916":19917,"19917":19918,"19918":19919,"19919":19920,"19920":19921,"19921":19922,"19922":19923,"19923":19924,"19924":19925,"19925":19926,"19926":19927,"19927":19928,"19928":19929,"19929":19930,"19930":19931,"19931":19932,"19932":19933,"19933":19934,"19934":19935,"19935":19936,"19936":19937,"19937":19938,"19938":19939,"19939":19940,"19940":19941,"19941":19942,"19942":19943,"19943":19944,"19944":19945,"19945":19946,"19946":19947,"19947":19948,"19948":19949,"19949":19950,"19950":19951,"19951":19952,"19952":19953,"19953":19954,"19954":19955,"19955":19956,"19956":19957,"19957":19958,"19958":19959,"19959":19960,"19960":19961,"19961":19962,"19962":19963,"19963":19964,"19964":19965,"19965":19966,"19966":19967,"19967":19968,"19968":19969,"19969":19970,"19970":19971,"19971":19972,"19972":19973,"19973":19974,"19974":19975,"19975":19976,"19976":19977,"19977":19978,"19978":19979,"19979":19980,"19980":19981,"19981":19982,"19982":19983,"19983":19984,"19984":19985,"19985":19986,"19986":19987,"19987":19988,"19988":19989,"19989":19990,"19990":19991,"19991":19992,"19992":19993,"19993":19994,"19994":19995,"19995":19996,"19996":19997,"19997":19998,"19998":19999,"19999":20000,"20000":20001,"20001":20002,"20002":20003,"20003":20004,"20004":20005,"20005":20006,"20006":20007,"20007":20008,"20008":20009,"20009":20010,"20010":20011,"20011":20012,"20012":20013,"20013":20014,"20014":20015,"20015":20016,"20016":20017,"20017":20018,"20018":20019,"20019":20020,"20020":20021,"20021":20022,"20022":20023,"20023":20024,"20024":20025,"20025":20026,"20026":20027,"20027":20028,"20028":20029,"20029":20030,"20030":20031,"20031":20032,"20032":20033,"20033":20034,"20034":20035,"20035":20036,"20036":20037,"20037":20038,"20038":20039,"20039":20040,"20040":20041,"20041":20042,"20042":20043,"20043":20044,"20044":20045,"20045":20046,"20046":20047,"20047":20048,"20048":20049,"20049":20050,"20050":20051,"20051":20052,"20052":20053,"20053":20054,"20054":20055,"20055":20056,"20056":20057,"20057":20058,"20058":20059,"20059":20060,"20060":20061,"20061":20062,"20062":20063,"20063":20064,"20064":20065,"20065":20066,"20066":20067,"20067":20068,"20068":20069,"20069":20070,"20070":20071,"20071":20072,"20072":20073,"20073":20074,"20074":20075,"20075":20076,"20076":20077,"20077":20078,"20078":20079,"20079":20080,"20080":20081,"20081":20082,"20082":20083,"20083":20084,"20084":20085,"20085":20086,"20086":20087,"20087":20088,"20088":20089,"20089":20090,"20090":20091,"20091":20092,"20092":20093,"20093":20094,"20094":20095,"20095":20096,"20096":20097,"20097":20098,"20098":20099,"20099":20100,"20100":20101,"20101":20102,"20102":20103,"20103":20104,"20104":20105,"20105":20106,"20106":20107,"20107":20108,"20108":20109,"20109":20110,"20110":20111,"20111":20112,"20112":20113,"20113":20114,"20114":20115,"20115":20116,"20116":20117,"20117":20118,"20118":20119,"20119":20120,"20120":20121,"20121":20122,"20122":20123,"20123":20124,"20124":20125,"20125":20126,"20126":20127,"20127":20128,"20128":20129,"20129":20130,"20130":20131,"20131":20132,"20132":20133,"20133":20134,"20134":20135,"20135":20136,"20136":20137,"20137":20138,"20138":20139,"20139":20140,"20140":20141,"20141":20142,"20142":20143,"20143":20144,"20144":20145,"20145":20146,"20146":20147,"20147":20148,"20148":20149,"20149":20150,"20150":20151,"20151":20152,"20152":20153,"20153":20154,"20154":20155,"20155":20156,"20156":20157,"20157":20158,"20158":20159,"20159":20160,"20160":20161,"20161":20162,"20162":20163,"20163":20164,"20164":20165,"20165":20166,"20166":20167,"20167":20168,"20168":20169,"20169":20170,"20170":20171,"20171":20172,"20172":20173,"20173":20174,"20174":20175,"20175":20176,"20176":20177,"20177":20178,"20178":20179,"20179":20180,"20180":20181,"20181":20182,"20182":20183,"20183":20184,"20184":20185,"20185":20186,"20186":20187,"20187":20188,"20188":20189,"20189":20190,"20190":20191,"20191":20192,"20192":20193,"20193":20194,"20194":20195,"20195":20196,"20196":20197,"20197":20198,"20198":20199,"20199":20200,"20200":20201,"20201":20202,"20202":20203,"20203":20204,"20204":20205,"20205":20206,"20206":20207,"20207":20208,"20208":20209,"20209":20210,"20210":20211,"20211":20212,"20212":20213,"20213":20214,"20214":20215,"20215":20216,"20216":20217,"20217":20218,"20218":20219,"20219":20220,"20220":20221,"20221":20222,"20222":20223,"20223":20224,"20224":20225,"20225":20226,"20226":20227,"20227":20228,"20228":20229,"20229":20230,"20230":20231,"20231":20232,"20232":20233,"20233":20234,"20234":20235,"20235":20236,"20236":20237,"20237":20238,"20238":20239,"20239":20240,"20240":20241,"20241":20242,"20242":20243,"20243":20244,"20244":20245,"20245":20246,"20246":20247,"20247":20248,"20248":20249,"20249":20250,"20250":20251,"20251":20252,"20252":20253,"20253":20254,"20254":20255,"20255":20256,"20256":20257,"20257":20258,"20258":20259,"20259":20260,"20260":20261,"20261":20262,"20262":20263,"20263":20264,"20264":20265,"20265":20266,"20266":20267,"20267":20268,"20268":20269,"20269":20270,"20270":20271,"20271":20272,"20272":20273,"20273":20274,"20274":20275,"20275":20276,"20276":20277,"20277":20278,"20278":20279,"20279":20280,"20280":20281,"20281":20282,"20282":20283,"20283":20284,"20284":20285,"20285":20286,"20286":20287,"20287":20288,"20288":20289,"20289":20290,"20290":20291,"20291":20292,"20292":20293,"20293":20294,"20294":20295,"20295":20296,"20296":20297,"20297":20298,"20298":20299,"20299":20300,"20300":20301,"20301":20302,"20302":20303,"20303":20304,"20304":20305,"20305":20306,"20306":20307,"20307":20308,"20308":20309,"20309":20310,"20310":20311,"20311":20312,"20312":20313,"20313":20314,"20314":20315,"20315":20316,"20316":20317,"20317":20318,"20318":20319,"20319":20320,"20320":20321,"20321":20322,"20322":20323,"20323":20324,"20324":20325,"20325":20326,"20326":20327,"20327":20328,"20328":20329,"20329":20330,"20330":20331,"20331":20332,"20332":20333,"20333":20334,"20334":20335,"20335":20336,"20336":20337,"20337":20338,"20338":20339,"20339":20340,"20340":20341,"20341":20342,"20342":20343,"20343":20344,"20344":20345,"20345":20346,"20346":20347,"20347":20348,"20348":20349,"20349":20350,"20350":20351,"20351":20352,"20352":20353,"20353":20354,"20354":20355,"20355":20356,"20356":20357,"20357":20358,"20358":20359,"20359":20360,"20360":20361,"20361":20362,"20362":20363,"20363":20364,"20364":20365,"20365":20366,"20366":20367,"20367":20368,"20368":20369,"20369":20370,"20370":20371,"20371":20372,"20372":20373,"20373":20374,"20374":20375,"20375":20376,"20376":20377,"20377":20378,"20378":20379,"20379":20380,"20380":20381,"20381":20382,"20382":20383,"20383":20384,"20384":20385,"20385":20386,"20386":20387,"20387":20388,"20388":20389,"20389":20390,"20390":20391,"20391":20392,"20392":20393,"20393":20394,"20394":20395,"20395":20396,"20396":20397,"20397":20398,"20398":20399,"20399":20400,"20400":20401,"20401":20402,"20402":20403,"20403":20404,"20404":20405,"20405":20406,"20406":20407,"20407":20408,"20408":20409,"20409":20410,"20410":20411,"20411":20412,"20412":20413,"20413":20414,"20414":20415,"20415":20416,"20416":20417,"20417":20418,"20418":20419,"20419":20420,"20420":20421,"20421":20422,"20422":20423,"20423":20424,"20424":20425,"20425":20426,"20426":20427,"20427":20428,"20428":20429,"20429":20430,"20430":20431,"20431":20432,"20432":20433,"20433":20434,"20434":20435,"20435":20436,"20436":20437,"20437":20438,"20438":20439,"20439":20440,"20440":20441,"20441":20442,"20442":20443,"20443":20444,"20444":20445,"20445":20446,"20446":20447,"20447":20448,"20448":20449,"20449":20450,"20450":20451,"20451":20452,"20452":20453,"20453":20454,"20454":20455,"20455":20456,"20456":20457,"20457":20458,"20458":20459,"20459":20460,"20460":20461,"20461":20462,"20462":20463,"20463":20464,"20464":20465,"20465":20466,"20466":20467,"20467":20468,"20468":20469,"20469":20470,"20470":20471,"20471":20472,"20472":20473,"20473":20474,"20474":20475,"20475":20476,"20476":20477,"20477":20478,"20478":20479,"20479":20480,"20480":20481,"20481":20482,"20482":20483,"20483":20484,"20484":20485,"20485":20486,"20486":20487,"20487":20488,"20488":20489,"20489":20490,"20490":20491,"20491":20492,"20492":20493,"20493":20494,"20494":20495,"20495":20496,"20496":20497,"20497":20498,"20498":20499,"20499":20500,"20500":20501,"20501":20502,"20502":20503,"20503":20504,"20504":20505,"20505":20506,"20506":20507,"20507":20508,"20508":20509,"20509":20510,"20510":20511,"20511":20512,"20512":20513,"20513":20514,"20514":20515,"20515":20516,"20516":20517,"20517":20518,"20518":20519,"20519":20520,"20520":20521,"20521":20522,"20522":20523,"20523":20524,"20524":20525,"20525":20526,"20526":20527,"20527":20528,"20528":20529,"20529":20530,"20530":20531,"20531":20532,"20532":20533,"20533":20534,"20534":20535,"20535":20536,"20536":20537,"20537":20538,"20538":20539,"20539":20540,"20540":20541,"20541":20542,"20542":20543,"20543":20544,"20544":20545,"20545":20546,"20546":20547,"20547":20548,"20548":20549,"20549":20550,"20550":20551,"20551":20552,"20552":20553,"20553":20554,"20554":20555,"20555":20556,"20556":20557,"20557":20558,"20558":20559,"20559":20560,"20560":20561,"20561":20562,"20562":20563,"20563":20564,"20564":20565,"20565":20566,"20566":20567,"20567":20568,"20568":20569,"20569":20570,"20570":20571,"20571":20572,"20572":20573,"20573":20574,"20574":20575,"20575":20576,"20576":20577,"20577":20578,"20578":20579,"20579":20580,"20580":20581,"20581":20582,"20582":20583,"20583":20584,"20584":20585,"20585":20586,"20586":20587,"20587":20588,"20588":20589,"20589":20590,"20590":20591,"20591":20592,"20592":20593,"20593":20594,"20594":20595,"20595":20596,"20596":20597,"20597":20598,"20598":20599,"20599":20600,"20600":20601,"20601":20602,"20602":20603,"20603":20604,"20604":20605,"20605":20606,"20606":20607,"20607":20608,"20608":20609,"20609":20610,"20610":20611,"20611":20612,"20612":20613,"20613":20614,"20614":20615,"20615":20616,"20616":20617,"20617":20618,"20618":20619,"20619":20620,"20620":20621,"20621":20622,"20622":20623,"20623":20624,"20624":20625,"20625":20626,"20626":20627,"20627":20628,"20628":20629,"20629":20630,"20630":20631,"20631":20632,"20632":20633,"20633":20634,"20634":20635,"20635":20636,"20636":20637,"20637":20638,"20638":20639,"20639":20640,"20640":20641,"20641":20642,"20642":20643,"20643":20644,"20644":20645,"20645":20646,"20646":20647,"20647":20648,"20648":20649,"20649":20650,"20650":20651,"20651":20652,"20652":20653,"20653":20654,"20654":20655,"20655":20656,"20656":20657,"20657":20658,"20658":20659,"20659":20660,"20660":20661,"20661":20662,"20662":20663,"20663":20664,"20664":20665,"20665":20666,"20666":20667,"20667":20668,"20668":20669,"20669":20670,"20670":20671,"20671":20672,"20672":20673,"20673":20674,"20674":20675,"20675":20676,"20676":20677,"20677":20678,"20678":20679,"20679":20680,"20680":20681,"20681":20682,"20682":20683,"20683":20684,"20684":20685,"20685":20686,"20686":20687,"20687":20688,"20688":20689,"20689":20690,"20690":20691,"20691":20692,"20692":20693,"20693":20694,"20694":20695,"20695":20696,"20696":20697,"20697":20698,"20698":20699,"20699":20700,"20700":20701,"20701":20702,"20702":20703,"20703":20704,"20704":20705,"20705":20706,"20706":20707,"20707":20708,"20708":20709,"20709":20710,"20710":20711,"20711":20712,"20712":20713,"20713":20714,"20714":20715,"20715":20716,"20716":20717,"20717":20718,"20718":20719,"20719":20720,"20720":20721,"20721":20722,"20722":20723,"20723":20724,"20724":20725,"20725":20726,"20726":20727,"20727":20728,"20728":20729,"20729":20730,"20730":20731,"20731":20732,"20732":20733,"20733":20734,"20734":20735,"20735":20736,"20736":20737,"20737":20738,"20738":20739,"20739":20740,"20740":20741,"20741":20742,"20742":20743,"20743":20744,"20744":20745,"20745":20746,"20746":20747,"20747":20748,"20748":20749,"20749":20750,"20750":20751,"20751":20752,"20752":20753,"20753":20754,"20754":20755,"20755":20756,"20756":20757,"20757":20758,"20758":20759,"20759":20760,"20760":20761,"20761":20762,"20762":20763,"20763":20764,"20764":20765,"20765":20766,"20766":20767,"20767":20768,"20768":20769,"20769":20770,"20770":20771,"20771":20772,"20772":20773,"20773":20774,"20774":20775,"20775":20776,"20776":20777,"20777":20778,"20778":20779,"20779":20780,"20780":20781,"20781":20782,"20782":20783,"20783":20784,"20784":20785,"20785":20786,"20786":20787,"20787":20788,"20788":20789,"20789":20790,"20790":20791,"20791":20792,"20792":20793,"20793":20794,"20794":20795,"20795":20796,"20796":20797,"20797":20798,"20798":20799,"20799":20800,"20800":20801,"20801":20802,"20802":20803,"20803":20804,"20804":20805,"20805":20806,"20806":20807,"20807":20808,"20808":20809,"20809":20810,"20810":20811,"20811":20812,"20812":20813,"20813":20814,"20814":20815,"20815":20816,"20816":20817,"20817":20818,"20818":20819,"20819":20820,"20820":20821,"20821":20822,"20822":20823,"20823":20824,"20824":20825,"20825":20826,"20826":20827,"20827":20828,"20828":20829,"20829":20830,"20830":20831,"20831":20832,"20832":20833,"20833":20834,"20834":20835,"20835":20836,"20836":20837,"20837":20838,"20838":20839,"20839":20840,"20840":20841,"20841":20842,"20842":20843,"20843":20844,"20844":20845,"20845":20846,"20846":20847,"20847":20848,"20848":20849,"20849":20850,"20850":20851,"20851":20852,"20852":20853,"20853":20854,"20854":20855,"20855":20856,"20856":20857,"20857":20858,"20858":20859,"20859":20860,"20860":20861,"20861":20862,"20862":20863,"20863":20864,"20864":20865,"20865":20866,"20866":20867,"20867":20868,"20868":20869,"20869":20870,"20870":20871,"20871":20872,"20872":20873,"20873":20874,"20874":20875,"20875":20876,"20876":20877,"20877":20878,"20878":20879,"20879":20880,"20880":20881,"20881":20882,"20882":20883,"20883":20884,"20884":20885,"20885":20886,"20886":20887,"20887":20888,"20888":20889,"20889":20890,"20890":20891,"20891":20892,"20892":20893,"20893":20894,"20894":20895,"20895":20896,"20896":20897,"20897":20898,"20898":20899,"20899":20900,"20900":20901,"20901":20902,"20902":20903,"20903":20904,"20904":20905,"20905":20906,"20906":20907,"20907":20908,"20908":20909,"20909":20910,"20910":20911,"20911":20912,"20912":20913,"20913":20914,"20914":20915,"20915":20916,"20916":20917,"20917":20918,"20918":20919,"20919":20920,"20920":20921,"20921":20922,"20922":20923,"20923":20924,"20924":20925,"20925":20926,"20926":20927,"20927":20928,"20928":20929,"20929":20930,"20930":20931,"20931":20932,"20932":20933,"20933":20934,"20934":20935,"20935":20936,"20936":20937,"20937":20938,"20938":20939,"20939":20940,"20940":20941,"20941":20942,"20942":20943,"20943":20944,"20944":20945,"20945":20946,"20946":20947,"20947":20948,"20948":20949,"20949":20950,"20950":20951,"20951":20952,"20952":20953,"20953":20954,"20954":20955,"20955":20956,"20956":20957,"20957":20958,"20958":20959,"20959":20960,"20960":20961,"20961":20962,"20962":20963,"20963":20964,"20964":20965,"20965":20966,"20966":20967,"20967":20968,"20968":20969,"20969":20970,"20970":20971,"20971":20972,"20972":20973,"20973":20974,"20974":20975,"20975":20976,"20976":20977,"20977":20978,"20978":20979,"20979":20980,"20980":20981,"20981":20982,"20982":20983,"20983":20984,"20984":20985,"20985":20986,"20986":20987,"20987":20988,"20988":20989,"20989":20990,"20990":20991,"20991":20992,"20992":20993,"20993":20994,"20994":20995,"20995":20996,"20996":20997,"20997":20998,"20998":20999,"20999":21000,"21000":21001,"21001":21002,"21002":21003,"21003":21004,"21004":21005,"21005":21006,"21006":21007,"21007":21008,"21008":21009,"21009":21010,"21010":21011,"21011":21012,"21012":21013,"21013":21014,"21014":21015,"21015":21016,"21016":21017,"21017":21018,"21018":21019,"21019":21020,"21020":21021,"21021":21022,"21022":21023,"21023":21024,"21024":21025,"21025":21026,"21026":21027,"21027":21028,"21028":21029,"21029":21030,"21030":21031,"21031":21032,"21032":21033,"21033":21034,"21034":21035,"21035":21036,"21036":21037,"21037":21038,"21038":21039,"21039":21040,"21040":21041,"21041":21042,"21042":21043,"21043":21044,"21044":21045,"21045":21046,"21046":21047,"21047":21048,"21048":21049,"21049":21050,"21050":21051,"21051":21052,"21052":21053,"21053":21054,"21054":21055,"21055":21056,"21056":21057,"21057":21058,"21058":21059,"21059":21060,"21060":21061,"21061":21062,"21062":21063,"21063":21064,"21064":21065,"21065":21066,"21066":21067,"21067":21068,"21068":21069,"21069":21070,"21070":21071,"21071":21072,"21072":21073,"21073":21074,"21074":21075,"21075":21076,"21076":21077,"21077":21078,"21078":21079,"21079":21080,"21080":21081,"21081":21082,"21082":21083,"21083":21084,"21084":21085,"21085":21086,"21086":21087,"21087":21088,"21088":21089,"21089":21090,"21090":21091,"21091":21092,"21092":21093,"21093":21094,"21094":21095,"21095":21096,"21096":21097,"21097":21098,"21098":21099,"21099":21100,"21100":21101,"21101":21102,"21102":21103,"21103":21104,"21104":21105,"21105":21106,"21106":21107,"21107":21108,"21108":21109,"21109":21110,"21110":21111,"21111":21112,"21112":21113,"21113":21114,"21114":21115,"21115":21116,"21116":21117,"21117":21118,"21118":21119,"21119":21120,"21120":21121,"21121":21122,"21122":21123,"21123":21124,"21124":21125,"21125":21126,"21126":21127,"21127":21128,"21128":21129,"21129":21130,"21130":21131,"21131":21132,"21132":21133,"21133":21134,"21134":21135,"21135":21136,"21136":21137,"21137":21138,"21138":21139,"21139":21140,"21140":21141,"21141":21142,"21142":21143,"21143":21144,"21144":21145,"21145":21146,"21146":21147,"21147":21148,"21148":21149,"21149":21150,"21150":21151,"21151":21152,"21152":21153,"21153":21154,"21154":21155,"21155":21156,"21156":21157,"21157":21158,"21158":21159,"21159":21160,"21160":21161,"21161":21162,"21162":21163,"21163":21164,"21164":21165,"21165":21166,"21166":21167,"21167":21168,"21168":21169,"21169":21170,"21170":21171,"21171":21172,"21172":21173,"21173":21174,"21174":21175,"21175":21176,"21176":21177,"21177":21178,"21178":21179,"21179":21180,"21180":21181,"21181":21182,"21182":21183,"21183":21184,"21184":21185,"21185":21186,"21186":21187,"21187":21188,"21188":21189,"21189":21190,"21190":21191,"21191":21192,"21192":21193,"21193":21194,"21194":21195,"21195":21196,"21196":21197,"21197":21198,"21198":21199,"21199":21200,"21200":21201,"21201":21202,"21202":21203,"21203":21204,"21204":21205,"21205":21206,"21206":21207,"21207":21208,"21208":21209,"21209":21210,"21210":21211,"21211":21212,"21212":21213,"21213":21214,"21214":21215,"21215":21216,"21216":21217,"21217":21218,"21218":21219,"21219":21220,"21220":21221,"21221":21222,"21222":21223,"21223":21224,"21224":21225,"21225":21226,"21226":21227,"21227":21228,"21228":21229,"21229":21230,"21230":21231,"21231":21232,"21232":21233,"21233":21234,"21234":21235,"21235":21236,"21236":21237,"21237":21238,"21238":21239,"21239":21240,"21240":21241,"21241":21242,"21242":21243,"21243":21244,"21244":21245,"21245":21246,"21246":21247,"21247":21248,"21248":21249,"21249":21250,"21250":21251,"21251":21252,"21252":21253,"21253":21254,"21254":21255,"21255":21256,"21256":21257,"21257":21258,"21258":21259,"21259":21260,"21260":21261,"21261":21262,"21262":21263,"21263":21264,"21264":21265,"21265":21266,"21266":21267,"21267":21268,"21268":21269,"21269":21270,"21270":21271,"21271":21272,"21272":21273,"21273":21274,"21274":21275,"21275":21276,"21276":21277,"21277":21278,"21278":21279,"21279":21280,"21280":21281,"21281":21282,"21282":21283,"21283":21284,"21284":21285,"21285":21286,"21286":21287,"21287":21288,"21288":21289,"21289":21290,"21290":21291,"21291":21292,"21292":21293,"21293":21294,"21294":21295,"21295":21296,"21296":21297,"21297":21298,"21298":21299,"21299":21300,"21300":21301,"21301":21302,"21302":21303,"21303":21304,"21304":21305,"21305":21306,"21306":21307,"21307":21308,"21308":21309,"21309":21310,"21310":21311,"21311":21312,"21312":21313,"21313":21314,"21314":21315,"21315":21316,"21316":21317,"21317":21318,"21318":21319,"21319":21320,"21320":21321,"21321":21322,"21322":21323,"21323":21324,"21324":21325,"21325":21326,"21326":21327,"21327":21328,"21328":21329,"21329":21330,"21330":21331,"21331":21332,"21332":21333,"21333":21334,"21334":21335,"21335":21336,"21336":21337,"21337":21338,"21338":21339,"21339":21340,"21340":21341,"21341":21342,"21342":21343,"21343":21344,"21344":21345,"21345":21346,"21346":21347,"21347":21348,"21348":21349,"21349":21350,"21350":21351,"21351":21352,"21352":21353,"21353":21354,"21354":21355,"21355":21356,"21356":21357,"21357":21358,"21358":21359,"21359":21360,"21360":21361,"21361":21362,"21362":21363,"21363":21364,"21364":21365,"21365":21366,"21366":21367,"21367":21368,"21368":21369,"21369":21370,"21370":21371,"21371":21372,"21372":21373,"21373":21374,"21374":21375,"21375":21376,"21376":21377,"21377":21378,"21378":21379,"21379":21380,"21380":21381,"21381":21382,"21382":21383,"21383":21384,"21384":21385,"21385":21386,"21386":21387,"21387":21388,"21388":21389,"21389":21390,"21390":21391,"21391":21392,"21392":21393,"21393":21394,"21394":21395,"21395":21396,"21396":21397,"21397":21398,"21398":21399,"21399":21400,"21400":21401,"21401":21402,"21402":21403,"21403":21404,"21404":21405,"21405":21406,"21406":21407,"21407":21408,"21408":21409,"21409":21410,"21410":21411,"21411":21412,"21412":21413,"21413":21414,"21414":21415,"21415":21416,"21416":21417,"21417":21418,"21418":21419,"21419":21420,"21420":21421,"21421":21422,"21422":21423,"21423":21424,"21424":21425,"21425":21426,"21426":21427,"21427":21428,"21428":21429,"21429":21430,"21430":21431,"21431":21432,"21432":21433,"21433":21434,"21434":21435,"21435":21436,"21436":21437,"21437":21438,"21438":21439,"21439":21440,"21440":21441,"21441":21442,"21442":21443,"21443":21444,"21444":21445,"21445":21446,"21446":21447,"21447":21448,"21448":21449,"21449":21450,"21450":21451,"21451":21452,"21452":21453,"21453":21454,"21454":21455,"21455":21456,"21456":21457,"21457":21458,"21458":21459,"21459":21460,"21460":21461,"21461":21462,"21462":21463,"21463":21464,"21464":21465,"21465":21466,"21466":21467,"21467":21468,"21468":21469,"21469":21470,"21470":21471,"21471":21472,"21472":21473,"21473":21474,"21474":21475,"21475":21476,"21476":21477,"21477":21478,"21478":21479,"21479":21480,"21480":21481,"21481":21482,"21482":21483,"21483":21484,"21484":21485,"21485":21486,"21486":21487,"21487":21488,"21488":21489,"21489":21490,"21490":21491,"21491":21492,"21492":21493,"21493":21494,"21494":21495,"21495":21496,"21496":21497,"21497":21498,"21498":21499,"21499":21500,"21500":21501,"21501":21502,"21502":21503,"21503":21504,"21504":21505,"21505":21506,"21506":21507,"21507":21508,"21508":21509,"21509":21510,"21510":21511,"21511":21512,"21512":21513,"21513":21514,"21514":21515,"21515":21516,"21516":21517,"21517":21518,"21518":21519,"21519":21520,"21520":21521,"21521":21522,"21522":21523,"21523":21524,"21524":21525,"21525":21526,"21526":21527,"21527":21528,"21528":21529,"21529":21530,"21530":21531,"21531":21532,"21532":21533,"21533":21534,"21534":21535,"21535":21536,"21536":21537,"21537":21538,"21538":21539,"21539":21540,"21540":21541,"21541":21542,"21542":21543,"21543":21544,"21544":21545,"21545":21546,"21546":21547,"21547":21548,"21548":21549,"21549":21550,"21550":21551,"21551":21552,"21552":21553,"21553":21554,"21554":21555,"21555":21556,"21556":21557,"21557":21558,"21558":21559,"21559":21560,"21560":21561,"21561":21562,"21562":21563,"21563":21564,"21564":21565,"21565":21566,"21566":21567,"21567":21568,"21568":21569,"21569":21570,"21570":21571,"21571":21572,"21572":21573,"21573":21574,"21574":21575,"21575":21576,"21576":21577,"21577":21578,"21578":21579,"21579":21580,"21580":21581,"21581":21582,"21582":21583,"21583":21584,"21584":21585,"21585":21586,"21586":21587,"21587":21588,"21588":21589,"21589":21590,"21590":21591,"21591":21592,"21592":21593,"21593":21594,"21594":21595,"21595":21596,"21596":21597,"21597":21598,"21598":21599,"21599":21600,"21600":21601,"21601":21602,"21602":21603,"21603":21604,"21604":21605,"21605":21606,"21606":21607,"21607":21608,"21608":21609,"21609":21610,"21610":21611,"21611":21612,"21612":21613,"21613":21614,"21614":21615,"21615":21616,"21616":21617,"21617":21618,"21618":21619,"21619":21620,"21620":21621,"21621":21622,"21622":21623,"21623":21624,"21624":21625,"21625":21626,"21626":21627,"21627":21628,"21628":21629,"21629":21630,"21630":21631,"21631":21632,"21632":21633,"21633":21634,"21634":21635,"21635":21636,"21636":21637,"21637":21638,"21638":21639,"21639":21640,"21640":21641,"21641":21642,"21642":21643,"21643":21644,"21644":21645,"21645":21646,"21646":21647,"21647":21648,"21648":21649,"21649":21650,"21650":21651,"21651":21652,"21652":21653,"21653":21654,"21654":21655,"21655":21656,"21656":21657,"21657":21658,"21658":21659,"21659":21660,"21660":21661,"21661":21662,"21662":21663,"21663":21664,"21664":21665,"21665":21666,"21666":21667,"21667":21668,"21668":21669,"21669":21670,"21670":21671,"21671":21672,"21672":21673,"21673":21674,"21674":21675,"21675":21676,"21676":21677,"21677":21678,"21678":21679,"21679":21680,"21680":21681,"21681":21682,"21682":21683,"21683":21684,"21684":21685,"21685":21686,"21686":21687,"21687":21688,"21688":21689,"21689":21690,"21690":21691,"21691":21692,"21692":21693,"21693":21694,"21694":21695,"21695":21696,"21696":21697,"21697":21698,"21698":21699,"21699":21700,"21700":21701,"21701":21702,"21702":21703,"21703":21704,"21704":21705,"21705":21706,"21706":21707,"21707":21708,"21708":21709,"21709":21710,"21710":21711,"21711":21712,"21712":21713,"21713":21714,"21714":21715,"21715":21716,"21716":21717,"21717":21718,"21718":21719,"21719":21720,"21720":21721,"21721":21722,"21722":21723,"21723":21724,"21724":21725,"21725":21726,"21726":21727,"21727":21728,"21728":21729,"21729":21730,"21730":21731,"21731":21732,"21732":21733,"21733":21734,"21734":21735,"21735":21736,"21736":21737,"21737":21738,"21738":21739,"21739":21740,"21740":21741,"21741":21742,"21742":21743,"21743":21744,"21744":21745,"21745":21746,"21746":21747,"21747":21748,"21748":21749,"21749":21750,"21750":21751,"21751":21752,"21752":21753,"21753":21754,"21754":21755,"21755":21756,"21756":21757,"21757":21758,"21758":21759,"21759":21760,"21760":21761,"21761":21762,"21762":21763,"21763":21764,"21764":21765,"21765":21766,"21766":21767,"21767":21768,"21768":21769,"21769":21770,"21770":21771,"21771":21772,"21772":21773,"21773":21774,"21774":21775,"21775":21776,"21776":21777,"21777":21778,"21778":21779,"21779":21780,"21780":21781,"21781":21782,"21782":21783,"21783":21784,"21784":21785,"21785":21786,"21786":21787,"21787":21788,"21788":21789,"21789":21790,"21790":21791,"21791":21792,"21792":21793,"21793":21794,"21794":21795,"21795":21796,"21796":21797,"21797":21798,"21798":21799,"21799":21800,"21800":21801,"21801":21802,"21802":21803,"21803":21804,"21804":21805,"21805":21806,"21806":21807,"21807":21808,"21808":21809,"21809":21810,"21810":21811,"21811":21812,"21812":21813,"21813":21814,"21814":21815,"21815":21816,"21816":21817,"21817":21818,"21818":21819,"21819":21820,"21820":21821,"21821":21822,"21822":21823,"21823":21824,"21824":21825,"21825":21826,"21826":21827,"21827":21828,"21828":21829,"21829":21830,"21830":21831,"21831":21832,"21832":21833,"21833":21834,"21834":21835,"21835":21836,"21836":21837,"21837":21838,"21838":21839,"21839":21840,"21840":21841,"21841":21842,"21842":21843,"21843":21844,"21844":21845,"21845":21846,"21846":21847,"21847":21848,"21848":21849,"21849":21850,"21850":21851,"21851":21852,"21852":21853,"21853":21854,"21854":21855,"21855":21856,"21856":21857,"21857":21858,"21858":21859,"21859":21860,"21860":21861,"21861":21862,"21862":21863,"21863":21864,"21864":21865,"21865":21866,"21866":21867,"21867":21868,"21868":21869,"21869":21870,"21870":21871,"21871":21872,"21872":21873,"21873":21874,"21874":21875,"21875":21876,"21876":21877,"21877":21878,"21878":21879,"21879":21880,"21880":21881,"21881":21882,"21882":21883,"21883":21884,"21884":21885,"21885":21886,"21886":21887,"21887":21888,"21888":21889,"21889":21890,"21890":21891,"21891":21892,"21892":21893,"21893":21894,"21894":21895,"21895":21896,"21896":21897,"21897":21898,"21898":21899,"21899":21900,"21900":21901,"21901":21902,"21902":21903,"21903":21904,"21904":21905,"21905":21906,"21906":21907,"21907":21908,"21908":21909,"21909":21910,"21910":21911,"21911":21912,"21912":21913,"21913":21914,"21914":21915,"21915":21916,"21916":21917,"21917":21918,"21918":21919,"21919":21920,"21920":21921,"21921":21922,"21922":21923,"21923":21924,"21924":21925,"21925":21926,"21926":21927,"21927":21928,"21928":21929,"21929":21930,"21930":21931,"21931":21932,"21932":21933,"21933":21934,"21934":21935,"21935":21936,"21936":21937,"21937":21938,"21938":21939,"21939":21940,"21940":21941,"21941":21942,"21942":21943,"21943":21944,"21944":21945,"21945":21946,"21946":21947,"21947":21948,"21948":21949,"21949":21950,"21950":21951,"21951":21952,"21952":21953,"21953":21954,"21954":21955,"21955":21956,"21956":21957,"21957":21958,"21958":21959,"21959":21960,"21960":21961,"21961":21962,"21962":21963,"21963":21964,"21964":21965,"21965":21966,"21966":21967,"21967":21968,"21968":21969,"21969":21970,"21970":21971,"21971":21972,"21972":21973,"21973":21974,"21974":21975,"21975":21976,"21976":21977,"21977":21978,"21978":21979,"21979":21980,"21980":21981,"21981":21982,"21982":21983,"21983":21984,"21984":21985,"21985":21986,"21986":21987,"21987":21988,"21988":21989,"21989":21990,"21990":21991,"21991":21992,"21992":21993,"21993":21994,"21994":21995,"21995":21996,"21996":21997,"21997":21998,"21998":21999,"21999":22000,"22000":22001,"22001":22002,"22002":22003,"22003":22004,"22004":22005,"22005":22006,"22006":22007,"22007":22008,"22008":22009,"22009":22010,"22010":22011,"22011":22012,"22012":22013,"22013":22014,"22014":22015,"22015":22016,"22016":22017,"22017":22018,"22018":22019,"22019":22020,"22020":22021,"22021":22022,"22022":22023,"22023":22024,"22024":22025,"22025":22026,"22026":22027,"22027":22028,"22028":22029,"22029":22030,"22030":22031,"22031":22032,"22032":22033,"22033":22034,"22034":22035,"22035":22036,"22036":22037,"22037":22038,"22038":22039,"22039":22040,"22040":22041,"22041":22042,"22042":22043,"22043":22044,"22044":22045,"22045":22046,"22046":22047,"22047":22048,"22048":22049,"22049":22050,"22050":22051,"22051":22052,"22052":22053,"22053":22054,"22054":22055,"22055":22056,"22056":22057,"22057":22058,"22058":22059,"22059":22060,"22060":22061,"22061":22062,"22062":22063,"22063":22064,"22064":22065,"22065":22066,"22066":22067,"22067":22068,"22068":22069,"22069":22070,"22070":22071,"22071":22072,"22072":22073,"22073":22074,"22074":22075,"22075":22076,"22076":22077,"22077":22078,"22078":22079,"22079":22080,"22080":22081,"22081":22082,"22082":22083,"22083":22084,"22084":22085,"22085":22086,"22086":22087,"22087":22088,"22088":22089,"22089":22090,"22090":22091,"22091":22092,"22092":22093,"22093":22094,"22094":22095,"22095":22096,"22096":22097,"22097":22098,"22098":22099,"22099":22100,"22100":22101,"22101":22102,"22102":22103,"22103":22104,"22104":22105,"22105":22106,"22106":22107,"22107":22108,"22108":22109,"22109":22110,"22110":22111,"22111":22112,"22112":22113,"22113":22114,"22114":22115,"22115":22116,"22116":22117,"22117":22118,"22118":22119,"22119":22120,"22120":22121,"22121":22122,"22122":22123,"22123":22124,"22124":22125,"22125":22126,"22126":22127,"22127":22128,"22128":22129,"22129":22130,"22130":22131,"22131":22132,"22132":22133,"22133":22134,"22134":22135,"22135":22136,"22136":22137,"22137":22138,"22138":22139,"22139":22140,"22140":22141,"22141":22142,"22142":22143,"22143":22144,"22144":22145,"22145":22146,"22146":22147,"22147":22148,"22148":22149,"22149":22150,"22150":22151,"22151":22152,"22152":22153,"22153":22154,"22154":22155,"22155":22156,"22156":22157,"22157":22158,"22158":22159,"22159":22160,"22160":22161,"22161":22162,"22162":22163,"22163":22164,"22164":22165,"22165":22166,"22166":22167,"22167":22168,"22168":22169,"22169":22170,"22170":22171,"22171":22172,"22172":22173,"22173":22174,"22174":22175,"22175":22176,"22176":22177,"22177":22178,"22178":22179,"22179":22180,"22180":22181,"22181":22182,"22182":22183,"22183":22184,"22184":22185,"22185":22186,"22186":22187,"22187":22188,"22188":22189,"22189":22190,"22190":22191,"22191":22192,"22192":22193,"22193":22194,"22194":22195,"22195":22196,"22196":22197,"22197":22198,"22198":22199,"22199":22200,"22200":22201,"22201":22202,"22202":22203,"22203":22204,"22204":22205,"22205":22206,"22206":22207,"22207":22208,"22208":22209,"22209":22210,"22210":22211,"22211":22212,"22212":22213,"22213":22214,"22214":22215,"22215":22216,"22216":22217,"22217":22218,"22218":22219,"22219":22220,"22220":22221,"22221":22222,"22222":22223,"22223":22224,"22224":22225,"22225":22226,"22226":22227,"22227":22228,"22228":22229,"22229":22230,"22230":22231,"22231":22232,"22232":22233,"22233":22234,"22234":22235,"22235":22236,"22236":22237,"22237":22238,"22238":22239,"22239":22240,"22240":22241,"22241":22242,"22242":22243,"22243":22244,"22244":22245,"22245":22246,"22246":22247,"22247":22248,"22248":22249,"22249":22250,"22250":22251,"22251":22252,"22252":22253,"22253":22254,"22254":22255,"22255":22256,"22256":22257,"22257":22258,"22258":22259,"22259":22260,"22260":22261,"22261":22262,"22262":22263,"22263":22264,"22264":22265,"22265":22266,"22266":22267,"22267":22268,"22268":22269,"22269":22270,"22270":22271,"22271":22272,"22272":22273,"22273":22274,"22274":22275,"22275":22276,"22276":22277,"22277":22278,"22278":22279,"22279":22280,"22280":22281,"22281":22282,"22282":22283,"22283":22284,"22284":22285,"22285":22286,"22286":22287,"22287":22288,"22288":22289,"22289":22290,"22290":22291,"22291":22292,"22292":22293,"22293":22294,"22294":22295,"22295":22296,"22296":22297,"22297":22298,"22298":22299,"22299":22300,"22300":22301,"22301":22302,"22302":22303,"22303":22304,"22304":22305,"22305":22306,"22306":22307,"22307":22308,"22308":22309,"22309":22310,"22310":22311,"22311":22312,"22312":22313,"22313":22314,"22314":22315,"22315":22316,"22316":22317,"22317":22318,"22318":22319,"22319":22320,"22320":22321,"22321":22322,"22322":22323,"22323":22324,"22324":22325,"22325":22326,"22326":22327,"22327":22328,"22328":22329,"22329":22330,"22330":22331,"22331":22332,"22332":22333,"22333":22334,"22334":22335,"22335":22336,"22336":22337,"22337":22338,"22338":22339,"22339":22340,"22340":22341,"22341":22342,"22342":22343,"22343":22344,"22344":22345,"22345":22346,"22346":22347,"22347":22348,"22348":22349,"22349":22350,"22350":22351,"22351":22352,"22352":22353,"22353":22354,"22354":22355,"22355":22356,"22356":22357,"22357":22358,"22358":22359,"22359":22360,"22360":22361,"22361":22362,"22362":22363,"22363":22364,"22364":22365,"22365":22366,"22366":22367,"22367":22368,"22368":22369,"22369":22370,"22370":22371,"22371":22372,"22372":22373,"22373":22374,"22374":22375,"22375":22376,"22376":22377,"22377":22378,"22378":22379,"22379":22380,"22380":22381,"22381":22382,"22382":22383,"22383":22384,"22384":22385,"22385":22386,"22386":22387,"22387":22388,"22388":22389,"22389":22390,"22390":22391,"22391":22392,"22392":22393,"22393":22394,"22394":22395,"22395":22396,"22396":22397,"22397":22398,"22398":22399,"22399":22400,"22400":22401,"22401":22402,"22402":22403,"22403":22404,"22404":22405,"22405":22406,"22406":22407,"22407":22408,"22408":22409,"22409":22410,"22410":22411,"22411":22412,"22412":22413,"22413":22414,"22414":22415,"22415":22416,"22416":22417,"22417":22418,"22418":22419,"22419":22420,"22420":22421,"22421":22422,"22422":22423,"22423":22424,"22424":22425,"22425":22426,"22426":22427,"22427":22428,"22428":22429,"22429":22430,"22430":22431,"22431":22432,"22432":22433,"22433":22434,"22434":22435,"22435":22436,"22436":22437,"22437":22438,"22438":22439,"22439":22440,"22440":22441,"22441":22442,"22442":22443,"22443":22444,"22444":22445,"22445":22446,"22446":22447,"22447":22448,"22448":22449,"22449":22450,"22450":22451,"22451":22452,"22452":22453,"22453":22454,"22454":22455,"22455":22456,"22456":22457,"22457":22458,"22458":22459,"22459":22460,"22460":22461,"22461":22462,"22462":22463,"22463":22464,"22464":22465,"22465":22466,"22466":22467,"22467":22468,"22468":22469,"22469":22470,"22470":22471,"22471":22472,"22472":22473,"22473":22474,"22474":22475,"22475":22476,"22476":22477,"22477":22478,"22478":22479,"22479":22480,"22480":22481,"22481":22482,"22482":22483,"22483":22484,"22484":22485,"22485":22486,"22486":22487,"22487":22488,"22488":22489,"22489":22490,"22490":22491,"22491":22492,"22492":22493,"22493":22494,"22494":22495,"22495":22496,"22496":22497,"22497":22498,"22498":22499,"22499":22500,"22500":22501,"22501":22502,"22502":22503,"22503":22504,"22504":22505,"22505":22506,"22506":22507,"22507":22508,"22508":22509,"22509":22510,"22510":22511,"22511":22512,"22512":22513,"22513":22514,"22514":22515,"22515":22516,"22516":22517,"22517":22518,"22518":22519,"22519":22520,"22520":22521,"22521":22522,"22522":22523,"22523":22524,"22524":22525,"22525":22526,"22526":22527,"22527":22528,"22528":22529,"22529":22530,"22530":22531,"22531":22532,"22532":22533,"22533":22534,"22534":22535,"22535":22536,"22536":22537,"22537":22538,"22538":22539,"22539":22540,"22540":22541,"22541":22542,"22542":22543,"22543":22544,"22544":22545,"22545":22546,"22546":22547,"22547":22548,"22548":22549,"22549":22550,"22550":22551,"22551":22552,"22552":22553,"22553":22554,"22554":22555,"22555":22556,"22556":22557,"22557":22558,"22558":22559,"22559":22560,"22560":22561,"22561":22562,"22562":22563,"22563":22564,"22564":22565,"22565":22566,"22566":22567,"22567":22568,"22568":22569,"22569":22570,"22570":22571,"22571":22572,"22572":22573,"22573":22574,"22574":22575,"22575":22576,"22576":22577,"22577":22578,"22578":22579,"22579":22580,"22580":22581,"22581":22582,"22582":22583,"22583":22584,"22584":22585,"22585":22586,"22586":22587,"22587":22588,"22588":22589,"22589":22590,"22590":22591,"22591":22592,"22592":22593,"22593":22594,"22594":22595,"22595":22596,"22596":22597,"22597":22598,"22598":22599,"22599":22600,"22600":22601,"22601":22602,"22602":22603,"22603":22604,"22604":22605,"22605":22606,"22606":22607,"22607":22608,"22608":22609,"22609":22610,"22610":22611,"22611":22612,"22612":22613,"22613":22614,"22614":22615,"22615":22616,"22616":22617,"22617":22618,"22618":22619,"22619":22620,"22620":22621,"22621":22622,"22622":22623,"22623":22624,"22624":22625,"22625":22626,"22626":22627,"22627":22628,"22628":22629,"22629":22630,"22630":22631,"22631":22632,"22632":22633,"22633":22634,"22634":22635,"22635":22636,"22636":22637,"22637":22638,"22638":22639,"22639":22640,"22640":22641,"22641":22642,"22642":22643,"22643":22644,"22644":22645,"22645":22646,"22646":22647,"22647":22648,"22648":22649,"22649":22650,"22650":22651,"22651":22652,"22652":22653,"22653":22654,"22654":22655,"22655":22656,"22656":22657,"22657":22658,"22658":22659,"22659":22660,"22660":22661,"22661":22662,"22662":22663,"22663":22664,"22664":22665,"22665":22666,"22666":22667,"22667":22668,"22668":22669,"22669":22670,"22670":22671,"22671":22672,"22672":22673,"22673":22674,"22674":22675,"22675":22676,"22676":22677,"22677":22678,"22678":22679,"22679":22680,"22680":22681,"22681":22682,"22682":22683,"22683":22684,"22684":22685,"22685":22686,"22686":22687,"22687":22688,"22688":22689,"22689":22690,"22690":22691,"22691":22692,"22692":22693,"22693":22694,"22694":22695,"22695":22696,"22696":22697,"22697":22698,"22698":22699,"22699":22700,"22700":22701,"22701":22702,"22702":22703,"22703":22704,"22704":22705,"22705":22706,"22706":22707,"22707":22708,"22708":22709,"22709":22710,"22710":22711,"22711":22712,"22712":22713,"22713":22714,"22714":22715,"22715":22716,"22716":22717,"22717":22718,"22718":22719,"22719":22720,"22720":22721,"22721":22722,"22722":22723,"22723":22724,"22724":22725,"22725":22726,"22726":22727,"22727":22728,"22728":22729,"22729":22730,"22730":22731,"22731":22732,"22732":22733,"22733":22734,"22734":22735,"22735":22736,"22736":22737,"22737":22738,"22738":22739,"22739":22740,"22740":22741,"22741":22742,"22742":22743,"22743":22744,"22744":22745,"22745":22746,"22746":22747,"22747":22748,"22748":22749,"22749":22750,"22750":22751,"22751":22752,"22752":22753,"22753":22754,"22754":22755,"22755":22756,"22756":22757,"22757":22758,"22758":22759,"22759":22760,"22760":22761,"22761":22762,"22762":22763,"22763":22764,"22764":22765,"22765":22766,"22766":22767,"22767":22768,"22768":22769,"22769":22770,"22770":22771,"22771":22772,"22772":22773,"22773":22774,"22774":22775,"22775":22776,"22776":22777,"22777":22778,"22778":22779,"22779":22780,"22780":22781,"22781":22782,"22782":22783,"22783":22784,"22784":22785,"22785":22786,"22786":22787,"22787":22788,"22788":22789,"22789":22790,"22790":22791,"22791":22792,"22792":22793,"22793":22794,"22794":22795,"22795":22796,"22796":22797,"22797":22798,"22798":22799,"22799":22800,"22800":22801,"22801":22802,"22802":22803,"22803":22804,"22804":22805,"22805":22806,"22806":22807,"22807":22808,"22808":22809,"22809":22810,"22810":22811,"22811":22812,"22812":22813,"22813":22814,"22814":22815,"22815":22816,"22816":22817,"22817":22818,"22818":22819,"22819":22820,"22820":22821,"22821":22822,"22822":22823,"22823":22824,"22824":22825,"22825":22826,"22826":22827,"22827":22828,"22828":22829,"22829":22830,"22830":22831,"22831":22832,"22832":22833,"22833":22834,"22834":22835,"22835":22836,"22836":22837,"22837":22838,"22838":22839,"22839":22840,"22840":22841,"22841":22842,"22842":22843,"22843":22844,"22844":22845,"22845":22846,"22846":22847,"22847":22848,"22848":22849,"22849":22850,"22850":22851,"22851":22852,"22852":22853,"22853":22854,"22854":22855,"22855":22856,"22856":22857,"22857":22858,"22858":22859,"22859":22860,"22860":22861,"22861":22862,"22862":22863,"22863":22864,"22864":22865,"22865":22866,"22866":22867,"22867":22868,"22868":22869,"22869":22870,"22870":22871,"22871":22872,"22872":22873,"22873":22874,"22874":22875,"22875":22876,"22876":22877,"22877":22878,"22878":22879,"22879":22880,"22880":22881,"22881":22882,"22882":22883,"22883":22884,"22884":22885,"22885":22886,"22886":22887,"22887":22888,"22888":22889,"22889":22890,"22890":22891,"22891":22892,"22892":22893,"22893":22894,"22894":22895,"22895":22896,"22896":22897,"22897":22898,"22898":22899,"22899":22900,"22900":22901,"22901":22902,"22902":22903,"22903":22904,"22904":22905,"22905":22906,"22906":22907,"22907":22908,"22908":22909,"22909":22910,"22910":22911,"22911":22912,"22912":22913,"22913":22914,"22914":22915,"22915":22916,"22916":22917,"22917":22918,"22918":22919,"22919":22920,"22920":22921,"22921":22922,"22922":22923,"22923":22924,"22924":22925,"22925":22926,"22926":22927,"22927":22928,"22928":22929,"22929":22930,"22930":22931,"22931":22932,"22932":22933,"22933":22934,"22934":22935,"22935":22936,"22936":22937,"22937":22938,"22938":22939,"22939":22940,"22940":22941,"22941":22942,"22942":22943,"22943":22944,"22944":22945,"22945":22946,"22946":22947,"22947":22948,"22948":22949,"22949":22950,"22950":22951,"22951":22952,"22952":22953,"22953":22954,"22954":22955,"22955":22956,"22956":22957,"22957":22958,"22958":22959,"22959":22960,"22960":22961,"22961":22962,"22962":22963,"22963":22964,"22964":22965,"22965":22966,"22966":22967,"22967":22968,"22968":22969,"22969":22970,"22970":22971,"22971":22972,"22972":22973,"22973":22974,"22974":22975,"22975":22976,"22976":22977,"22977":22978,"22978":22979,"22979":22980,"22980":22981,"22981":22982,"22982":22983,"22983":22984,"22984":22985,"22985":22986,"22986":22987,"22987":22988,"22988":22989,"22989":22990,"22990":22991,"22991":22992,"22992":22993,"22993":22994,"22994":22995,"22995":22996,"22996":22997,"22997":22998,"22998":22999,"22999":23000,"23000":23001,"23001":23002,"23002":23003,"23003":23004,"23004":23005,"23005":23006,"23006":23007,"23007":23008,"23008":23009,"23009":23010,"23010":23011,"23011":23012,"23012":23013,"23013":23014,"23014":23015,"23015":23016,"23016":23017,"23017":23018,"23018":23019,"23019":23020,"23020":23021,"23021":23022,"23022":23023,"23023":23024,"23024":23025,"23025":23026,"23026":23027,"23027":23028,"23028":23029,"23029":23030,"23030":23031,"23031":23032,"23032":23033,"23033":23034,"23034":23035,"23035":23036,"23036":23037,"23037":23038,"23038":23039,"23039":23040,"23040":23041,"23041":23042,"23042":23043,"23043":23044,"23044":23045,"23045":23046,"23046":23047,"23047":23048,"23048":23049,"23049":23050,"23050":23051,"23051":23052,"23052":23053,"23053":23054,"23054":23055,"23055":23056,"23056":23057,"23057":23058,"23058":23059,"23059":23060,"23060":23061,"23061":23062,"23062":23063,"23063":23064,"23064":23065,"23065":23066,"23066":23067,"23067":23068,"23068":23069,"23069":23070,"23070":23071,"23071":23072,"23072":23073,"23073":23074,"23074":23075,"23075":23076,"23076":23077,"23077":23078,"23078":23079,"23079":23080,"23080":23081,"23081":23082,"23082":23083,"23083":23084,"23084":23085,"23085":23086,"23086":23087,"23087":23088,"23088":23089,"23089":23090,"23090":23091,"23091":23092,"23092":23093,"23093":23094,"23094":23095,"23095":23096,"23096":23097,"23097":23098,"23098":23099,"23099":23100,"23100":23101,"23101":23102,"23102":23103,"23103":23104,"23104":23105,"23105":23106,"23106":23107,"23107":23108,"23108":23109,"23109":23110,"23110":23111,"23111":23112,"23112":23113,"23113":23114,"23114":23115,"23115":23116,"23116":23117,"23117":23118,"23118":23119,"23119":23120,"23120":23121,"23121":23122,"23122":23123,"23123":23124,"23124":23125,"23125":23126,"23126":23127,"23127":23128,"23128":23129,"23129":23130,"23130":23131,"23131":23132,"23132":23133,"23133":23134,"23134":23135,"23135":23136,"23136":23137,"23137":23138,"23138":23139,"23139":23140,"23140":23141,"23141":23142,"23142":23143,"23143":23144,"23144":23145,"23145":23146,"23146":23147,"23147":23148,"23148":23149,"23149":23150,"23150":23151,"23151":23152,"23152":23153,"23153":23154,"23154":23155,"23155":23156,"23156":23157,"23157":23158,"23158":23159,"23159":23160,"23160":23161,"23161":23162,"23162":23163,"23163":23164,"23164":23165,"23165":23166,"23166":23167,"23167":23168,"23168":23169,"23169":23170,"23170":23171,"23171":23172,"23172":23173,"23173":23174,"23174":23175,"23175":23176,"23176":23177,"23177":23178,"23178":23179,"23179":23180,"23180":23181,"23181":23182,"23182":23183,"23183":23184,"23184":23185,"23185":23186,"23186":23187,"23187":23188,"23188":23189,"23189":23190,"23190":23191,"23191":23192,"23192":23193,"23193":23194,"23194":23195,"23195":23196,"23196":23197,"23197":23198,"23198":23199,"23199":23200,"23200":23201,"23201":23202,"23202":23203,"23203":23204,"23204":23205,"23205":23206,"23206":23207,"23207":23208,"23208":23209,"23209":23210,"23210":23211,"23211":23212,"23212":23213,"23213":23214,"23214":23215,"23215":23216,"23216":23217,"23217":23218,"23218":23219,"23219":23220,"23220":23221,"23221":23222,"23222":23223,"23223":23224,"23224":23225,"23225":23226,"23226":23227,"23227":23228,"23228":23229,"23229":23230,"23230":23231,"23231":23232,"23232":23233,"23233":23234,"23234":23235,"23235":23236,"23236":23237,"23237":23238,"23238":23239,"23239":23240,"23240":23241,"23241":23242,"23242":23243,"23243":23244,"23244":23245,"23245":23246,"23246":23247,"23247":23248,"23248":23249,"23249":23250,"23250":23251,"23251":23252,"23252":23253,"23253":23254,"23254":23255,"23255":23256,"23256":23257,"23257":23258,"23258":23259,"23259":23260,"23260":23261,"23261":23262,"23262":23263,"23263":23264,"23264":23265,"23265":23266,"23266":23267,"23267":23268,"23268":23269,"23269":23270,"23270":23271,"23271":23272,"23272":23273,"23273":23274,"23274":23275,"23275":23276,"23276":23277,"23277":23278,"23278":23279,"23279":23280,"23280":23281,"23281":23282,"23282":23283,"23283":23284,"23284":23285,"23285":23286,"23286":23287,"23287":23288,"23288":23289,"23289":23290,"23290":23291,"23291":23292,"23292":23293,"23293":23294,"23294":23295,"23295":23296,"23296":23297,"23297":23298,"23298":23299,"23299":23300,"23300":23301,"23301":23302,"23302":23303,"23303":23304,"23304":23305,"23305":23306,"23306":23307,"23307":23308,"23308":23309,"23309":23310,"23310":23311,"23311":23312,"23312":23313,"23313":23314,"23314":23315,"23315":23316,"23316":23317,"23317":23318,"23318":23319,"23319":23320,"23320":23321,"23321":23322,"23322":23323,"23323":23324,"23324":23325,"23325":23326,"23326":23327,"23327":23328,"23328":23329,"23329":23330,"23330":23331,"23331":23332,"23332":23333,"23333":23334,"23334":23335,"23335":23336,"23336":23337,"23337":23338,"23338":23339,"23339":23340,"23340":23341,"23341":23342,"23342":23343,"23343":23344,"23344":23345,"23345":23346,"23346":23347,"23347":23348,"23348":23349,"23349":23350,"23350":23351,"23351":23352,"23352":23353,"23353":23354,"23354":23355,"23355":23356,"23356":23357,"23357":23358,"23358":23359,"23359":23360,"23360":23361,"23361":23362,"23362":23363,"23363":23364,"23364":23365,"23365":23366,"23366":23367,"23367":23368,"23368":23369,"23369":23370,"23370":23371,"23371":23372,"23372":23373,"23373":23374,"23374":23375,"23375":23376,"23376":23377,"23377":23378,"23378":23379,"23379":23380,"23380":23381,"23381":23382,"23382":23383,"23383":23384,"23384":23385,"23385":23386,"23386":23387,"23387":23388,"23388":23389,"23389":23390,"23390":23391,"23391":23392,"23392":23393,"23393":23394,"23394":23395,"23395":23396,"23396":23397,"23397":23398,"23398":23399,"23399":23400,"23400":23401,"23401":23402,"23402":23403,"23403":23404,"23404":23405,"23405":23406,"23406":23407,"23407":23408,"23408":23409,"23409":23410,"23410":23411,"23411":23412,"23412":23413,"23413":23414,"23414":23415,"23415":23416,"23416":23417,"23417":23418,"23418":23419,"23419":23420,"23420":23421,"23421":23422,"23422":23423,"23423":23424,"23424":23425,"23425":23426,"23426":23427,"23427":23428,"23428":23429,"23429":23430,"23430":23431,"23431":23432,"23432":23433,"23433":23434,"23434":23435,"23435":23436,"23436":23437,"23437":23438,"23438":23439,"23439":23440,"23440":23441,"23441":23442,"23442":23443,"23443":23444,"23444":23445,"23445":23446,"23446":23447,"23447":23448,"23448":23449,"23449":23450,"23450":23451,"23451":23452,"23452":23453,"23453":23454,"23454":23455,"23455":23456,"23456":23457,"23457":23458,"23458":23459,"23459":23460,"23460":23461,"23461":23462,"23462":23463,"23463":23464,"23464":23465,"23465":23466,"23466":23467,"23467":23468,"23468":23469,"23469":23470,"23470":23471,"23471":23472,"23472":23473,"23473":23474,"23474":23475,"23475":23476,"23476":23477,"23477":23478,"23478":23479,"23479":23480,"23480":23481,"23481":23482,"23482":23483,"23483":23484,"23484":23485,"23485":23486,"23486":23487,"23487":23488,"23488":23489,"23489":23490,"23490":23491,"23491":23492,"23492":23493,"23493":23494,"23494":23495,"23495":23496,"23496":23497,"23497":23498,"23498":23499,"23499":23500,"23500":23501,"23501":23502,"23502":23503,"23503":23504,"23504":23505,"23505":23506,"23506":23507,"23507":23508,"23508":23509,"23509":23510,"23510":23511,"23511":23512,"23512":23513,"23513":23514,"23514":23515,"23515":23516,"23516":23517,"23517":23518,"23518":23519,"23519":23520,"23520":23521,"23521":23522,"23522":23523,"23523":23524,"23524":23525,"23525":23526,"23526":23527,"23527":23528,"23528":23529,"23529":23530,"23530":23531,"23531":23532,"23532":23533,"23533":23534,"23534":23535,"23535":23536,"23536":23537,"23537":23538,"23538":23539,"23539":23540,"23540":23541,"23541":23542,"23542":23543,"23543":23544,"23544":23545,"23545":23546,"23546":23547,"23547":23548,"23548":23549,"23549":23550,"23550":23551,"23551":23552,"23552":23553,"23553":23554,"23554":23555,"23555":23556,"23556":23557,"23557":23558,"23558":23559,"23559":23560,"23560":23561,"23561":23562,"23562":23563,"23563":23564,"23564":23565,"23565":23566,"23566":23567,"23567":23568,"23568":23569,"23569":23570,"23570":23571,"23571":23572,"23572":23573,"23573":23574,"23574":23575,"23575":23576,"23576":23577,"23577":23578,"23578":23579,"23579":23580,"23580":23581,"23581":23582,"23582":23583,"23583":23584,"23584":23585,"23585":23586,"23586":23587,"23587":23588,"23588":23589,"23589":23590,"23590":23591,"23591":23592,"23592":23593,"23593":23594,"23594":23595,"23595":23596,"23596":23597,"23597":23598,"23598":23599,"23599":23600,"23600":23601,"23601":23602,"23602":23603,"23603":23604,"23604":23605,"23605":23606,"23606":23607,"23607":23608,"23608":23609,"23609":23610,"23610":23611,"23611":23612,"23612":23613,"23613":23614,"23614":23615,"23615":23616,"23616":23617,"23617":23618,"23618":23619,"23619":23620,"23620":23621,"23621":23622,"23622":23623,"23623":23624,"23624":23625,"23625":23626,"23626":23627,"23627":23628,"23628":23629,"23629":23630,"23630":23631,"23631":23632,"23632":23633,"23633":23634,"23634":23635,"23635":23636,"23636":23637,"23637":23638,"23638":23639,"23639":23640,"23640":23641,"23641":23642,"23642":23643,"23643":23644,"23644":23645,"23645":23646,"23646":23647,"23647":23648,"23648":23649,"23649":23650,"23650":23651,"23651":23652,"23652":23653,"23653":23654,"23654":23655,"23655":23656,"23656":23657,"23657":23658,"23658":23659,"23659":23660,"23660":23661,"23661":23662,"23662":23663,"23663":23664,"23664":23665,"23665":23666,"23666":23667,"23667":23668,"23668":23669,"23669":23670,"23670":23671,"23671":23672,"23672":23673,"23673":23674,"23674":23675,"23675":23676,"23676":23677,"23677":23678,"23678":23679,"23679":23680,"23680":23681,"23681":23682,"23682":23683,"23683":23684,"23684":23685,"23685":23686,"23686":23687,"23687":23688,"23688":23689,"23689":23690,"23690":23691,"23691":23692,"23692":23693,"23693":23694,"23694":23695,"23695":23696,"23696":23697,"23697":23698,"23698":23699,"23699":23700,"23700":23701,"23701":23702,"23702":23703,"23703":23704,"23704":23705,"23705":23706,"23706":23707,"23707":23708,"23708":23709,"23709":23710,"23710":23711,"23711":23712,"23712":23713,"23713":23714,"23714":23715,"23715":23716,"23716":23717,"23717":23718,"23718":23719,"23719":23720,"23720":23721,"23721":23722,"23722":23723,"23723":23724,"23724":23725,"23725":23726,"23726":23727,"23727":23728,"23728":23729,"23729":23730,"23730":23731,"23731":23732,"23732":23733,"23733":23734,"23734":23735,"23735":23736,"23736":23737,"23737":23738,"23738":23739,"23739":23740,"23740":23741,"23741":23742,"23742":23743,"23743":23744,"23744":23745,"23745":23746,"23746":23747,"23747":23748,"23748":23749,"23749":23750,"23750":23751,"23751":23752,"23752":23753,"23753":23754,"23754":23755,"23755":23756,"23756":23757,"23757":23758,"23758":23759,"23759":23760,"23760":23761,"23761":23762,"23762":23763,"23763":23764,"23764":23765,"23765":23766,"23766":23767,"23767":23768,"23768":23769,"23769":23770,"23770":23771,"23771":23772,"23772":23773,"23773":23774,"23774":23775,"23775":23776,"23776":23777,"23777":23778,"23778":23779,"23779":23780,"23780":23781,"23781":23782,"23782":23783,"23783":23784,"23784":23785,"23785":23786,"23786":23787,"23787":23788,"23788":23789,"23789":23790,"23790":23791,"23791":23792,"23792":23793,"23793":23794,"23794":23795,"23795":23796,"23796":23797,"23797":23798,"23798":23799,"23799":23800,"23800":23801,"23801":23802,"23802":23803,"23803":23804,"23804":23805,"23805":23806,"23806":23807,"23807":23808,"23808":23809,"23809":23810,"23810":23811,"23811":23812,"23812":23813,"23813":23814,"23814":23815,"23815":23816,"23816":23817,"23817":23818,"23818":23819,"23819":23820,"23820":23821,"23821":23822,"23822":23823,"23823":23824,"23824":23825,"23825":23826,"23826":23827,"23827":23828,"23828":23829,"23829":23830,"23830":23831,"23831":23832,"23832":23833,"23833":23834,"23834":23835,"23835":23836,"23836":23837,"23837":23838,"23838":23839,"23839":23840,"23840":23841,"23841":23842,"23842":23843,"23843":23844,"23844":23845,"23845":23846,"23846":23847,"23847":23848,"23848":23849,"23849":23850,"23850":23851,"23851":23852,"23852":23853,"23853":23854,"23854":23855,"23855":23856,"23856":23857,"23857":23858,"23858":23859,"23859":23860,"23860":23861,"23861":23862,"23862":23863,"23863":23864,"23864":23865,"23865":23866,"23866":23867,"23867":23868,"23868":23869,"23869":23870,"23870":23871,"23871":23872,"23872":23873,"23873":23874,"23874":23875,"23875":23876,"23876":23877,"23877":23878,"23878":23879,"23879":23880,"23880":23881,"23881":23882,"23882":23883,"23883":23884,"23884":23885,"23885":23886,"23886":23887,"23887":23888,"23888":23889,"23889":23890,"23890":23891,"23891":23892,"23892":23893,"23893":23894,"23894":23895,"23895":23896,"23896":23897,"23897":23898,"23898":23899,"23899":23900,"23900":23901,"23901":23902,"23902":23903,"23903":23904,"23904":23905,"23905":23906,"23906":23907,"23907":23908,"23908":23909,"23909":23910,"23910":23911,"23911":23912,"23912":23913,"23913":23914,"23914":23915,"23915":23916,"23916":23917,"23917":23918,"23918":23919,"23919":23920,"23920":23921,"23921":23922,"23922":23923,"23923":23924,"23924":23925,"23925":23926,"23926":23927,"23927":23928,"23928":23929,"23929":23930,"23930":23931,"23931":23932,"23932":23933,"23933":23934,"23934":23935,"23935":23936,"23936":23937,"23937":23938,"23938":23939,"23939":23940,"23940":23941,"23941":23942,"23942":23943,"23943":23944,"23944":23945,"23945":23946,"23946":23947,"23947":23948,"23948":23949,"23949":23950,"23950":23951,"23951":23952,"23952":23953,"23953":23954,"23954":23955,"23955":23956,"23956":23957,"23957":23958,"23958":23959,"23959":23960,"23960":23961,"23961":23962,"23962":23963,"23963":23964,"23964":23965,"23965":23966,"23966":23967,"23967":23968,"23968":23969,"23969":23970,"23970":23971,"23971":23972,"23972":23973,"23973":23974,"23974":23975,"23975":23976,"23976":23977,"23977":23978,"23978":23979,"23979":23980,"23980":23981,"23981":23982,"23982":23983,"23983":23984,"23984":23985,"23985":23986,"23986":23987,"23987":23988,"23988":23989,"23989":23990,"23990":23991,"23991":23992,"23992":23993,"23993":23994,"23994":23995,"23995":23996,"23996":23997,"23997":23998,"23998":23999,"23999":24000,"24000":24001,"24001":24002,"24002":24003,"24003":24004,"24004":24005,"24005":24006,"24006":24007,"24007":24008,"24008":24009,"24009":24010,"24010":24011,"24011":24012,"24012":24013,"24013":24014,"24014":24015,"24015":24016,"24016":24017,"24017":24018,"24018":24019,"24019":24020,"24020":24021,"24021":24022,"24022":24023,"24023":24024,"24024":24025,"24025":24026,"24026":24027,"24027":24028,"24028":24029,"24029":24030,"24030":24031,"24031":24032,"24032":24033,"24033":24034,"24034":24035,"24035":24036,"24036":24037,"24037":24038,"24038":24039,"24039":24040,"24040":24041,"24041":24042,"24042":24043,"24043":24044,"24044":24045,"24045":24046,"24046":24047,"24047":24048,"24048":24049,"24049":24050,"24050":24051,"24051":24052,"24052":24053,"24053":24054,"24054":24055,"24055":24056,"24056":24057,"24057":24058,"24058":24059,"24059":24060,"24060":24061,"24061":24062,"24062":24063,"24063":24064,"24064":24065,"24065":24066,"24066":24067,"24067":24068,"24068":24069,"24069":24070,"24070":24071,"24071":24072,"24072":24073,"24073":24074,"24074":24075,"24075":24076,"24076":24077,"24077":24078,"24078":24079,"24079":24080,"24080":24081,"24081":24082,"24082":24083,"24083":24084,"24084":24085,"24085":24086,"24086":24087,"24087":24088,"24088":24089,"24089":24090,"24090":24091,"24091":24092,"24092":24093,"24093":24094,"24094":24095,"24095":24096,"24096":24097,"24097":24098,"24098":24099,"24099":24100,"24100":24101,"24101":24102,"24102":24103,"24103":24104,"24104":24105,"24105":24106,"24106":24107,"24107":24108,"24108":24109,"24109":24110,"24110":24111,"24111":24112,"24112":24113,"24113":24114,"24114":24115,"24115":24116,"24116":24117,"24117":24118,"24118":24119,"24119":24120,"24120":24121,"24121":24122,"24122":24123,"24123":24124,"24124":24125,"24125":24126,"24126":24127,"24127":24128,"24128":24129,"24129":24130,"24130":24131,"24131":24132,"24132":24133,"24133":24134,"24134":24135,"24135":24136,"24136":24137,"24137":24138,"24138":24139,"24139":24140,"24140":24141,"24141":24142,"24142":24143,"24143":24144,"24144":24145,"24145":24146,"24146":24147,"24147":24148,"24148":24149,"24149":24150,"24150":24151,"24151":24152,"24152":24153,"24153":24154,"24154":24155,"24155":24156,"24156":24157,"24157":24158,"24158":24159,"24159":24160,"24160":24161,"24161":24162,"24162":24163,"24163":24164,"24164":24165,"24165":24166,"24166":24167,"24167":24168,"24168":24169,"24169":24170,"24170":24171,"24171":24172,"24172":24173,"24173":24174,"24174":24175,"24175":24176,"24176":24177,"24177":24178,"24178":24179,"24179":24180,"24180":24181,"24181":24182,"24182":24183,"24183":24184,"24184":24185,"24185":24186,"24186":24187,"24187":24188,"24188":24189,"24189":24190,"24190":24191,"24191":24192,"24192":24193,"24193":24194,"24194":24195,"24195":24196,"24196":24197,"24197":24198,"24198":24199,"24199":24200,"24200":24201,"24201":24202,"24202":24203,"24203":24204,"24204":24205,"24205":24206,"24206":24207,"24207":24208,"24208":24209,"24209":24210,"24210":24211,"24211":24212,"24212":24213,"24213":24214,"24214":24215,"24215":24216,"24216":24217,"24217":24218,"24218":24219,"24219":24220,"24220":24221,"24221":24222,"24222":24223,"24223":24224,"24224":24225,"24225":24226,"24226":24227,"24227":24228,"24228":24229,"24229":24230,"24230":24231,"24231":24232,"24232":24233,"24233":24234,"24234":24235,"24235":24236,"24236":24237,"24237":24238,"24238":24239,"24239":24240,"24240":24241,"24241":24242,"24242":24243,"24243":24244,"24244":24245,"24245":24246,"24246":24247,"24247":24248,"24248":24249,"24249":24250,"24250":24251,"24251":24252,"24252":24253,"24253":24254,"24254":24255,"24255":24256,"24256":24257,"24257":24258,"24258":24259,"24259":24260,"24260":24261,"24261":24262,"24262":24263,"24263":24264,"24264":24265,"24265":24266,"24266":24267,"24267":24268,"24268":24269,"24269":24270,"24270":24271,"24271":24272,"24272":24273,"24273":24274,"24274":24275,"24275":24276,"24276":24277,"24277":24278,"24278":24279,"24279":24280,"24280":24281,"24281":24282,"24282":24283,"24283":24284,"24284":24285,"24285":24286,"24286":24287,"24287":24288,"24288":24289,"24289":24290,"24290":24291,"24291":24292,"24292":24293,"24293":24294,"24294":24295,"24295":24296,"24296":24297,"24297":24298,"24298":24299,"24299":24300,"24300":24301,"24301":24302,"24302":24303,"24303":24304,"24304":24305,"24305":24306,"24306":24307,"24307":24308,"24308":24309,"24309":24310,"24310":24311,"24311":24312,"24312":24313,"24313":24314,"24314":24315,"24315":24316,"24316":24317,"24317":24318,"24318":24319,"24319":24320,"24320":24321,"24321":24322,"24322":24323,"24323":24324,"24324":24325,"24325":24326,"24326":24327,"24327":24328,"24328":24329,"24329":24330,"24330":24331,"24331":24332,"24332":24333,"24333":24334,"24334":24335,"24335":24336,"24336":24337,"24337":24338,"24338":24339,"24339":24340,"24340":24341,"24341":24342,"24342":24343,"24343":24344,"24344":24345,"24345":24346,"24346":24347,"24347":24348,"24348":24349,"24349":24350,"24350":24351,"24351":24352,"24352":24353,"24353":24354,"24354":24355,"24355":24356,"24356":24357,"24357":24358,"24358":24359,"24359":24360,"24360":24361,"24361":24362,"24362":24363,"24363":24364,"24364":24365,"24365":24366,"24366":24367,"24367":24368,"24368":24369,"24369":24370,"24370":24371,"24371":24372,"24372":24373,"24373":24374,"24374":24375,"24375":24376,"24376":24377,"24377":24378,"24378":24379,"24379":24380,"24380":24381,"24381":24382,"24382":24383,"24383":24384,"24384":24385,"24385":24386,"24386":24387,"24387":24388,"24388":24389,"24389":24390,"24390":24391,"24391":24392,"24392":24393,"24393":24394,"24394":24395,"24395":24396,"24396":24397,"24397":24398,"24398":24399,"24399":24400,"24400":24401,"24401":24402,"24402":24403,"24403":24404,"24404":24405,"24405":24406,"24406":24407,"24407":24408,"24408":24409,"24409":24410,"24410":24411,"24411":24412,"24412":24413,"24413":24414,"24414":24415,"24415":24416,"24416":24417,"24417":24418,"24418":24419,"24419":24420,"24420":24421,"24421":24422,"24422":24423,"24423":24424,"24424":24425,"24425":24426,"24426":24427,"24427":24428,"24428":24429,"24429":24430,"24430":24431,"24431":24432,"24432":24433,"24433":24434,"24434":24435,"24435":24436,"24436":24437,"24437":24438,"24438":24439,"24439":24440,"24440":24441,"24441":24442,"24442":24443,"24443":24444,"24444":24445,"24445":24446,"24446":24447,"24447":24448,"24448":24449,"24449":24450,"24450":24451,"24451":24452,"24452":24453,"24453":24454,"24454":24455,"24455":24456,"24456":24457,"24457":24458,"24458":24459,"24459":24460,"24460":24461,"24461":24462,"24462":24463,"24463":24464,"24464":24465,"24465":24466,"24466":24467,"24467":24468,"24468":24469,"24469":24470,"24470":24471,"24471":24472,"24472":24473,"24473":24474,"24474":24475,"24475":24476,"24476":24477,"24477":24478,"24478":24479,"24479":24480,"24480":24481,"24481":24482,"24482":24483,"24483":24484,"24484":24485,"24485":24486,"24486":24487,"24487":24488,"24488":24489,"24489":24490,"24490":24491,"24491":24492,"24492":24493,"24493":24494,"24494":24495,"24495":24496,"24496":24497,"24497":24498,"24498":24499,"24499":24500,"24500":24501,"24501":24502,"24502":24503,"24503":24504,"24504":24505,"24505":24506,"24506":24507,"24507":24508,"24508":24509,"24509":24510,"24510":24511,"24511":24512,"24512":24513,"24513":24514,"24514":24515,"24515":24516,"24516":24517,"24517":24518,"24518":24519,"24519":24520,"24520":24521,"24521":24522,"24522":24523,"24523":24524,"24524":24525,"24525":24526,"24526":24527,"24527":24528,"24528":24529,"24529":24530,"24530":24531,"24531":24532,"24532":24533,"24533":24534,"24534":24535,"24535":24536,"24536":24537,"24537":24538,"24538":24539,"24539":24540,"24540":24541,"24541":24542,"24542":24543,"24543":24544,"24544":24545,"24545":24546,"24546":24547,"24547":24548,"24548":24549,"24549":24550,"24550":24551,"24551":24552,"24552":24553,"24553":24554,"24554":24555,"24555":24556,"24556":24557,"24557":24558,"24558":24559,"24559":24560,"24560":24561,"24561":24562,"24562":24563,"24563":24564,"24564":24565,"24565":24566,"24566":24567,"24567":24568,"24568":24569,"24569":24570,"24570":24571,"24571":24572,"24572":24573,"24573":24574,"24574":24575,"24575":24576,"24576":24577,"24577":24578,"24578":24579,"24579":24580,"24580":24581,"24581":24582,"24582":24583,"24583":24584,"24584":24585,"24585":24586,"24586":24587,"24587":24588,"24588":24589,"24589":24590,"24590":24591,"24591":24592,"24592":24593,"24593":24594,"24594":24595,"24595":24596,"24596":24597,"24597":24598,"24598":24599,"24599":24600,"24600":24601,"24601":24602,"24602":24603,"24603":24604,"24604":24605,"24605":24606,"24606":24607,"24607":24608,"24608":24609,"24609":24610,"24610":24611,"24611":24612,"24612":24613,"24613":24614,"24614":24615,"24615":24616,"24616":24617,"24617":24618,"24618":24619,"24619":24620,"24620":24621,"24621":24622,"24622":24623,"24623":24624,"24624":24625,"24625":24626,"24626":24627,"24627":24628,"24628":24629,"24629":24630,"24630":24631,"24631":24632,"24632":24633,"24633":24634,"24634":24635,"24635":24636,"24636":24637,"24637":24638,"24638":24639,"24639":24640,"24640":24641,"24641":24642,"24642":24643,"24643":24644,"24644":24645,"24645":24646,"24646":24647,"24647":24648,"24648":24649,"24649":24650,"24650":24651,"24651":24652,"24652":24653,"24653":24654,"24654":24655,"24655":24656,"24656":24657,"24657":24658,"24658":24659,"24659":24660,"24660":24661,"24661":24662,"24662":24663,"24663":24664,"24664":24665,"24665":24666,"24666":24667,"24667":24668,"24668":24669,"24669":24670,"24670":24671,"24671":24672,"24672":24673,"24673":24674,"24674":24675,"24675":24676,"24676":24677,"24677":24678,"24678":24679,"24679":24680,"24680":24681,"24681":24682,"24682":24683,"24683":24684,"24684":24685,"24685":24686,"24686":24687,"24687":24688,"24688":24689,"24689":24690,"24690":24691,"24691":24692,"24692":24693,"24693":24694,"24694":24695,"24695":24696,"24696":24697,"24697":24698,"24698":24699,"24699":24700,"24700":24701,"24701":24702,"24702":24703,"24703":24704,"24704":24705,"24705":24706,"24706":24707,"24707":24708,"24708":24709,"24709":24710,"24710":24711,"24711":24712,"24712":24713,"24713":24714,"24714":24715,"24715":24716,"24716":24717,"24717":24718,"24718":24719,"24719":24720,"24720":24721,"24721":24722,"24722":24723,"24723":24724,"24724":24725,"24725":24726,"24726":24727,"24727":24728,"24728":24729,"24729":24730,"24730":24731,"24731":24732,"24732":24733,"24733":24734,"24734":24735,"24735":24736,"24736":24737,"24737":24738,"24738":24739,"24739":24740,"24740":24741,"24741":24742,"24742":24743,"24743":24744,"24744":24745,"24745":24746,"24746":24747,"24747":24748,"24748":24749,"24749":24750,"24750":24751,"24751":24752,"24752":24753,"24753":24754,"24754":24755,"24755":24756,"24756":24757,"24757":24758,"24758":24759,"24759":24760,"24760":24761,"24761":24762,"24762":24763,"24763":24764,"24764":24765,"24765":24766,"24766":24767,"24767":24768,"24768":24769,"24769":24770,"24770":24771,"24771":24772,"24772":24773,"24773":24774,"24774":24775,"24775":24776,"24776":24777,"24777":24778,"24778":24779,"24779":24780,"24780":24781,"24781":24782,"24782":24783,"24783":24784,"24784":24785,"24785":24786,"24786":24787,"24787":24788,"24788":24789,"24789":24790,"24790":24791,"24791":24792,"24792":24793,"24793":24794,"24794":24795,"24795":24796,"24796":24797,"24797":24798,"24798":24799,"24799":24800,"24800":24801,"24801":24802,"24802":24803,"24803":24804,"24804":24805,"24805":24806,"24806":24807,"24807":24808,"24808":24809,"24809":24810,"24810":24811,"24811":24812,"24812":24813,"24813":24814,"24814":24815,"24815":24816,"24816":24817,"24817":24818,"24818":24819,"24819":24820,"24820":24821,"24821":24822,"24822":24823,"24823":24824,"24824":24825,"24825":24826,"24826":24827,"24827":24828,"24828":24829,"24829":24830,"24830":24831,"24831":24832,"24832":24833,"24833":24834,"24834":24835,"24835":24836,"24836":24837,"24837":24838,"24838":24839,"24839":24840,"24840":24841,"24841":24842,"24842":24843,"24843":24844,"24844":24845,"24845":24846,"24846":24847,"24847":24848,"24848":24849,"24849":24850,"24850":24851,"24851":24852,"24852":24853,"24853":24854,"24854":24855,"24855":24856,"24856":24857,"24857":24858,"24858":24859,"24859":24860,"24860":24861,"24861":24862,"24862":24863,"24863":24864,"24864":24865,"24865":24866,"24866":24867,"24867":24868,"24868":24869,"24869":24870,"24870":24871,"24871":24872,"24872":24873,"24873":24874,"24874":24875,"24875":24876,"24876":24877,"24877":24878,"24878":24879,"24879":24880,"24880":24881,"24881":24882,"24882":24883,"24883":24884,"24884":24885,"24885":24886,"24886":24887,"24887":24888,"24888":24889,"24889":24890,"24890":24891,"24891":24892,"24892":24893,"24893":24894,"24894":24895,"24895":24896,"24896":24897,"24897":24898,"24898":24899,"24899":24900,"24900":24901,"24901":24902,"24902":24903,"24903":24904,"24904":24905,"24905":24906,"24906":24907,"24907":24908,"24908":24909,"24909":24910,"24910":24911,"24911":24912,"24912":24913,"24913":24914,"24914":24915,"24915":24916,"24916":24917,"24917":24918,"24918":24919,"24919":24920,"24920":24921,"24921":24922,"24922":24923,"24923":24924,"24924":24925,"24925":24926,"24926":24927,"24927":24928,"24928":24929,"24929":24930,"24930":24931,"24931":24932,"24932":24933,"24933":24934,"24934":24935,"24935":24936,"24936":24937,"24937":24938,"24938":24939,"24939":24940,"24940":24941,"24941":24942,"24942":24943,"24943":24944,"24944":24945,"24945":24946,"24946":24947,"24947":24948,"24948":24949,"24949":24950,"24950":24951,"24951":24952,"24952":24953,"24953":24954,"24954":24955,"24955":24956,"24956":24957,"24957":24958,"24958":24959,"24959":24960,"24960":24961,"24961":24962,"24962":24963,"24963":24964,"24964":24965,"24965":24966,"24966":24967,"24967":24968,"24968":24969,"24969":24970,"24970":24971,"24971":24972,"24972":24973,"24973":24974,"24974":24975,"24975":24976,"24976":24977,"24977":24978,"24978":24979,"24979":24980,"24980":24981,"24981":24982,"24982":24983,"24983":24984,"24984":24985,"24985":24986,"24986":24987,"24987":24988,"24988":24989,"24989":24990,"24990":24991,"24991":24992,"24992":24993,"24993":24994,"24994":24995,"24995":24996,"24996":24997,"24997":24998,"24998":24999,"24999":25000,"25000":25001,"25001":25002,"25002":25003,"25003":25004,"25004":25005,"25005":25006,"25006":25007,"25007":25008,"25008":25009,"25009":25010,"25010":25011,"25011":25012,"25012":25013,"25013":25014,"25014":25015,"25015":25016,"25016":25017,"25017":25018,"25018":25019,"25019":25020,"25020":25021,"25021":25022,"25022":25023,"25023":25024,"25024":25025,"25025":25026,"25026":25027,"25027":25028,"25028":25029,"25029":25030,"25030":25031,"25031":25032,"25032":25033,"25033":25034,"25034":25035,"25035":25036,"25036":25037,"25037":25038,"25038":25039,"25039":25040,"25040":25041,"25041":25042,"25042":25043,"25043":25044,"25044":25045,"25045":25046,"25046":25047,"25047":25048,"25048":25049,"25049":25050,"25050":25051,"25051":25052,"25052":25053,"25053":25054,"25054":25055,"25055":25056,"25056":25057,"25057":25058,"25058":25059,"25059":25060,"25060":25061,"25061":25062,"25062":25063,"25063":25064,"25064":25065,"25065":25066,"25066":25067,"25067":25068,"25068":25069,"25069":25070,"25070":25071,"25071":25072,"25072":25073,"25073":25074,"25074":25075,"25075":25076,"25076":25077,"25077":25078,"25078":25079,"25079":25080,"25080":25081,"25081":25082,"25082":25083,"25083":25084,"25084":25085,"25085":25086,"25086":25087,"25087":25088,"25088":25089,"25089":25090,"25090":25091,"25091":25092,"25092":25093,"25093":25094,"25094":25095,"25095":25096,"25096":25097,"25097":25098,"25098":25099,"25099":25100,"25100":25101,"25101":25102,"25102":25103,"25103":25104,"25104":25105,"25105":25106,"25106":25107,"25107":25108,"25108":25109,"25109":25110,"25110":25111,"25111":25112,"25112":25113,"25113":25114,"25114":25115,"25115":25116,"25116":25117,"25117":25118,"25118":25119,"25119":25120,"25120":25121,"25121":25122,"25122":25123,"25123":25124,"25124":25125,"25125":25126,"25126":25127,"25127":25128,"25128":25129,"25129":25130,"25130":25131,"25131":25132,"25132":25133,"25133":25134,"25134":25135,"25135":25136,"25136":25137,"25137":25138,"25138":25139,"25139":25140,"25140":25141,"25141":25142,"25142":25143,"25143":25144,"25144":25145,"25145":25146,"25146":25147,"25147":25148,"25148":25149,"25149":25150,"25150":25151,"25151":25152,"25152":25153,"25153":25154,"25154":25155,"25155":25156,"25156":25157,"25157":25158,"25158":25159,"25159":25160,"25160":25161,"25161":25162,"25162":25163,"25163":25164,"25164":25165,"25165":25166,"25166":25167,"25167":25168,"25168":25169,"25169":25170,"25170":25171,"25171":25172,"25172":25173,"25173":25174,"25174":25175,"25175":25176,"25176":25177,"25177":25178,"25178":25179,"25179":25180,"25180":25181,"25181":25182,"25182":25183,"25183":25184,"25184":25185,"25185":25186,"25186":25187,"25187":25188,"25188":25189,"25189":25190,"25190":25191,"25191":25192,"25192":25193,"25193":25194,"25194":25195,"25195":25196,"25196":25197,"25197":25198,"25198":25199,"25199":25200,"25200":25201,"25201":25202,"25202":25203,"25203":25204,"25204":25205,"25205":25206,"25206":25207,"25207":25208,"25208":25209,"25209":25210,"25210":25211,"25211":25212,"25212":25213,"25213":25214,"25214":25215,"25215":25216,"25216":25217,"25217":25218,"25218":25219,"25219":25220,"25220":25221,"25221":25222,"25222":25223,"25223":25224,"25224":25225,"25225":25226,"25226":25227,"25227":25228,"25228":25229,"25229":25230,"25230":25231,"25231":25232,"25232":25233,"25233":25234,"25234":25235,"25235":25236,"25236":25237,"25237":25238,"25238":25239,"25239":25240,"25240":25241,"25241":25242,"25242":25243,"25243":25244,"25244":25245,"25245":25246,"25246":25247,"25247":25248,"25248":25249,"25249":25250,"25250":25251,"25251":25252,"25252":25253,"25253":25254,"25254":25255,"25255":25256,"25256":25257,"25257":25258,"25258":25259,"25259":25260,"25260":25261,"25261":25262,"25262":25263,"25263":25264,"25264":25265,"25265":25266,"25266":25267,"25267":25268,"25268":25269,"25269":25270,"25270":25271,"25271":25272,"25272":25273,"25273":25274,"25274":25275,"25275":25276,"25276":25277,"25277":25278,"25278":25279,"25279":25280,"25280":25281,"25281":25282,"25282":25283,"25283":25284,"25284":25285,"25285":25286,"25286":25287,"25287":25288,"25288":25289,"25289":25290,"25290":25291,"25291":25292,"25292":25293,"25293":25294,"25294":25295,"25295":25296,"25296":25297,"25297":25298,"25298":25299,"25299":25300,"25300":25301,"25301":25302,"25302":25303,"25303":25304,"25304":25305,"25305":25306,"25306":25307,"25307":25308,"25308":25309,"25309":25310,"25310":25311,"25311":25312,"25312":25313,"25313":25314,"25314":25315,"25315":25316,"25316":25317,"25317":25318,"25318":25319,"25319":25320,"25320":25321,"25321":25322,"25322":25323,"25323":25324,"25324":25325,"25325":25326,"25326":25327,"25327":25328,"25328":25329,"25329":25330,"25330":25331,"25331":25332,"25332":25333,"25333":25334,"25334":25335,"25335":25336,"25336":25337,"25337":25338,"25338":25339,"25339":25340,"25340":25341,"25341":25342,"25342":25343,"25343":25344,"25344":25345,"25345":25346,"25346":25347,"25347":25348,"25348":25349,"25349":25350,"25350":25351,"25351":25352,"25352":25353,"25353":25354,"25354":25355,"25355":25356,"25356":25357,"25357":25358,"25358":25359,"25359":25360,"25360":25361,"25361":25362,"25362":25363,"25363":25364,"25364":25365,"25365":25366,"25366":25367,"25367":25368,"25368":25369,"25369":25370,"25370":25371,"25371":25372,"25372":25373,"25373":25374,"25374":25375,"25375":25376,"25376":25377,"25377":25378,"25378":25379,"25379":25380,"25380":25381,"25381":25382,"25382":25383,"25383":25384,"25384":25385,"25385":25386,"25386":25387,"25387":25388,"25388":25389,"25389":25390,"25390":25391,"25391":25392,"25392":25393,"25393":25394,"25394":25395,"25395":25396,"25396":25397,"25397":25398,"25398":25399,"25399":25400,"25400":25401,"25401":25402,"25402":25403,"25403":25404,"25404":25405,"25405":25406,"25406":25407,"25407":25408,"25408":25409,"25409":25410,"25410":25411,"25411":25412,"25412":25413,"25413":25414,"25414":25415,"25415":25416,"25416":25417,"25417":25418,"25418":25419,"25419":25420,"25420":25421,"25421":25422,"25422":25423,"25423":25424,"25424":25425,"25425":25426,"25426":25427,"25427":25428,"25428":25429,"25429":25430,"25430":25431,"25431":25432,"25432":25433,"25433":25434,"25434":25435,"25435":25436,"25436":25437,"25437":25438,"25438":25439,"25439":25440,"25440":25441,"25441":25442,"25442":25443,"25443":25444,"25444":25445,"25445":25446,"25446":25447,"25447":25448,"25448":25449,"25449":25450,"25450":25451,"25451":25452,"25452":25453,"25453":25454,"25454":25455,"25455":25456,"25456":25457,"25457":25458,"25458":25459,"25459":25460,"25460":25461,"25461":25462,"25462":25463,"25463":25464,"25464":25465,"25465":25466,"25466":25467,"25467":25468,"25468":25469,"25469":25470,"25470":25471,"25471":25472,"25472":25473,"25473":25474,"25474":25475,"25475":25476,"25476":25477,"25477":25478,"25478":25479,"25479":25480,"25480":25481,"25481":25482,"25482":25483,"25483":25484,"25484":25485,"25485":25486,"25486":25487,"25487":25488,"25488":25489,"25489":25490,"25490":25491,"25491":25492,"25492":25493,"25493":25494,"25494":25495,"25495":25496,"25496":25497,"25497":25498,"25498":25499,"25499":25500,"25500":25501,"25501":25502,"25502":25503,"25503":25504,"25504":25505,"25505":25506,"25506":25507,"25507":25508,"25508":25509,"25509":25510,"25510":25511,"25511":25512,"25512":25513,"25513":25514,"25514":25515,"25515":25516,"25516":25517,"25517":25518,"25518":25519,"25519":25520,"25520":25521,"25521":25522,"25522":25523,"25523":25524,"25524":25525,"25525":25526,"25526":25527,"25527":25528,"25528":25529,"25529":25530,"25530":25531,"25531":25532,"25532":25533,"25533":25534,"25534":25535,"25535":25536,"25536":25537,"25537":25538,"25538":25539,"25539":25540,"25540":25541,"25541":25542,"25542":25543,"25543":25544,"25544":25545,"25545":25546,"25546":25547,"25547":25548,"25548":25549,"25549":25550,"25550":25551,"25551":25552,"25552":25553,"25553":25554,"25554":25555,"25555":25556,"25556":25557,"25557":25558,"25558":25559,"25559":25560,"25560":25561,"25561":25562,"25562":25563,"25563":25564,"25564":25565,"25565":25566,"25566":25567,"25567":25568,"25568":25569,"25569":25570,"25570":25571,"25571":25572,"25572":25573,"25573":25574,"25574":25575,"25575":25576,"25576":25577,"25577":25578,"25578":25579,"25579":25580,"25580":25581,"25581":25582,"25582":25583,"25583":25584,"25584":25585,"25585":25586,"25586":25587,"25587":25588,"25588":25589,"25589":25590,"25590":25591,"25591":25592,"25592":25593,"25593":25594,"25594":25595,"25595":25596,"25596":25597,"25597":25598,"25598":25599,"25599":25600,"25600":25601,"25601":25602,"25602":25603,"25603":25604,"25604":25605,"25605":25606,"25606":25607,"25607":25608,"25608":25609,"25609":25610,"25610":25611,"25611":25612,"25612":25613,"25613":25614,"25614":25615,"25615":25616,"25616":25617,"25617":25618,"25618":25619,"25619":25620,"25620":25621,"25621":25622,"25622":25623,"25623":25624,"25624":25625,"25625":25626,"25626":25627,"25627":25628,"25628":25629,"25629":25630,"25630":25631,"25631":25632,"25632":25633,"25633":25634,"25634":25635,"25635":25636,"25636":25637,"25637":25638,"25638":25639,"25639":25640,"25640":25641,"25641":25642,"25642":25643,"25643":25644,"25644":25645,"25645":25646,"25646":25647,"25647":25648,"25648":25649,"25649":25650,"25650":25651,"25651":25652,"25652":25653,"25653":25654,"25654":25655,"25655":25656,"25656":25657,"25657":25658,"25658":25659,"25659":25660,"25660":25661,"25661":25662,"25662":25663,"25663":25664,"25664":25665,"25665":25666,"25666":25667,"25667":25668,"25668":25669,"25669":25670,"25670":25671,"25671":25672,"25672":25673,"25673":25674,"25674":25675,"25675":25676,"25676":25677,"25677":25678,"25678":25679,"25679":25680,"25680":25681,"25681":25682,"25682":25683,"25683":25684,"25684":25685,"25685":25686,"25686":25687,"25687":25688,"25688":25689,"25689":25690,"25690":25691,"25691":25692,"25692":25693,"25693":25694,"25694":25695,"25695":25696,"25696":25697,"25697":25698,"25698":25699,"25699":25700,"25700":25701,"25701":25702,"25702":25703,"25703":25704,"25704":25705,"25705":25706,"25706":25707,"25707":25708,"25708":25709,"25709":25710,"25710":25711,"25711":25712,"25712":25713,"25713":25714,"25714":25715,"25715":25716,"25716":25717,"25717":25718,"25718":25719,"25719":25720,"25720":25721,"25721":25722,"25722":25723,"25723":25724,"25724":25725,"25725":25726,"25726":25727,"25727":25728,"25728":25729,"25729":25730,"25730":25731,"25731":25732,"25732":25733,"25733":25734,"25734":25735,"25735":25736,"25736":25737,"25737":25738,"25738":25739,"25739":25740,"25740":25741,"25741":25742,"25742":25743,"25743":25744,"25744":25745,"25745":25746,"25746":25747,"25747":25748,"25748":25749,"25749":25750,"25750":25751,"25751":25752,"25752":25753,"25753":25754,"25754":25755,"25755":25756,"25756":25757,"25757":25758,"25758":25759,"25759":25760,"25760":25761,"25761":25762,"25762":25763,"25763":25764,"25764":25765,"25765":25766,"25766":25767,"25767":25768,"25768":25769,"25769":25770,"25770":25771,"25771":25772,"25772":25773,"25773":25774,"25774":25775,"25775":25776,"25776":25777,"25777":25778,"25778":25779,"25779":25780,"25780":25781,"25781":25782,"25782":25783,"25783":25784,"25784":25785,"25785":25786,"25786":25787,"25787":25788,"25788":25789,"25789":25790,"25790":25791,"25791":25792,"25792":25793,"25793":25794,"25794":25795,"25795":25796,"25796":25797,"25797":25798,"25798":25799,"25799":25800,"25800":25801,"25801":25802,"25802":25803,"25803":25804,"25804":25805,"25805":25806,"25806":25807,"25807":25808,"25808":25809,"25809":25810,"25810":25811,"25811":25812,"25812":25813,"25813":25814,"25814":25815,"25815":25816,"25816":25817,"25817":25818,"25818":25819,"25819":25820,"25820":25821,"25821":25822,"25822":25823,"25823":25824,"25824":25825,"25825":25826,"25826":25827,"25827":25828,"25828":25829,"25829":25830,"25830":25831,"25831":25832,"25832":25833,"25833":25834,"25834":25835,"25835":25836,"25836":25837,"25837":25838,"25838":25839,"25839":25840,"25840":25841,"25841":25842,"25842":25843,"25843":25844,"25844":25845,"25845":25846,"25846":25847,"25847":25848,"25848":25849,"25849":25850,"25850":25851,"25851":25852,"25852":25853,"25853":25854,"25854":25855,"25855":25856,"25856":25857,"25857":25858,"25858":25859,"25859":25860,"25860":25861,"25861":25862,"25862":25863,"25863":25864,"25864":25865,"25865":25866,"25866":25867,"25867":25868,"25868":25869,"25869":25870,"25870":25871,"25871":25872,"25872":25873,"25873":25874,"25874":25875,"25875":25876,"25876":25877,"25877":25878,"25878":25879,"25879":25880,"25880":25881,"25881":25882,"25882":25883,"25883":25884,"25884":25885,"25885":25886,"25886":25887,"25887":25888,"25888":25889,"25889":25890,"25890":25891,"25891":25892,"25892":25893,"25893":25894,"25894":25895,"25895":25896,"25896":25897,"25897":25898,"25898":25899,"25899":25900,"25900":25901,"25901":25902,"25902":25903,"25903":25904,"25904":25905,"25905":25906,"25906":25907,"25907":25908,"25908":25909,"25909":25910,"25910":25911,"25911":25912,"25912":25913,"25913":25914,"25914":25915,"25915":25916,"25916":25917,"25917":25918,"25918":25919,"25919":25920,"25920":25921,"25921":25922,"25922":25923,"25923":25924,"25924":25925,"25925":25926,"25926":25927,"25927":25928,"25928":25929,"25929":25930,"25930":25931,"25931":25932,"25932":25933,"25933":25934,"25934":25935,"25935":25936,"25936":25937,"25937":25938,"25938":25939,"25939":25940,"25940":25941,"25941":25942,"25942":25943,"25943":25944,"25944":25945,"25945":25946,"25946":25947,"25947":25948,"25948":25949,"25949":25950,"25950":25951,"25951":25952,"25952":25953,"25953":25954,"25954":25955,"25955":25956,"25956":25957,"25957":25958,"25958":25959,"25959":25960,"25960":25961,"25961":25962,"25962":25963,"25963":25964,"25964":25965,"25965":25966,"25966":25967,"25967":25968,"25968":25969,"25969":25970,"25970":25971,"25971":25972,"25972":25973,"25973":25974,"25974":25975,"25975":25976,"25976":25977,"25977":25978,"25978":25979,"25979":25980,"25980":25981,"25981":25982,"25982":25983,"25983":25984,"25984":25985,"25985":25986,"25986":25987,"25987":25988,"25988":25989,"25989":25990,"25990":25991,"25991":25992,"25992":25993,"25993":25994,"25994":25995,"25995":25996,"25996":25997,"25997":25998,"25998":25999,"25999":26000,"26000":26001,"26001":26002,"26002":26003,"26003":26004,"26004":26005,"26005":26006,"26006":26007,"26007":26008,"26008":26009,"26009":26010,"26010":26011,"26011":26012,"26012":26013,"26013":26014,"26014":26015,"26015":26016,"26016":26017,"26017":26018,"26018":26019,"26019":26020,"26020":26021,"26021":26022,"26022":26023,"26023":26024,"26024":26025,"26025":26026,"26026":26027,"26027":26028,"26028":26029,"26029":26030,"26030":26031,"26031":26032,"26032":26033,"26033":26034,"26034":26035,"26035":26036,"26036":26037,"26037":26038,"26038":26039,"26039":26040,"26040":26041,"26041":26042,"26042":26043,"26043":26044,"26044":26045,"26045":26046,"26046":26047,"26047":26048,"26048":26049,"26049":26050,"26050":26051,"26051":26052,"26052":26053,"26053":26054,"26054":26055,"26055":26056,"26056":26057,"26057":26058,"26058":26059,"26059":26060,"26060":26061,"26061":26062,"26062":26063,"26063":26064,"26064":26065,"26065":26066,"26066":26067,"26067":26068,"26068":26069,"26069":26070,"26070":26071,"26071":26072,"26072":26073,"26073":26074,"26074":26075,"26075":26076,"26076":26077,"26077":26078,"26078":26079,"26079":26080,"26080":26081,"26081":26082,"26082":26083,"26083":26084,"26084":26085,"26085":26086,"26086":26087,"26087":26088,"26088":26089,"26089":26090,"26090":26091,"26091":26092,"26092":26093,"26093":26094,"26094":26095,"26095":26096,"26096":26097,"26097":26098,"26098":26099,"26099":26100,"26100":26101,"26101":26102,"26102":26103,"26103":26104,"26104":26105,"26105":26106,"26106":26107,"26107":26108,"26108":26109,"26109":26110,"26110":26111,"26111":26112,"26112":26113,"26113":26114,"26114":26115,"26115":26116,"26116":26117,"26117":26118,"26118":26119,"26119":26120,"26120":26121,"26121":26122,"26122":26123,"26123":26124,"26124":26125,"26125":26126,"26126":26127,"26127":26128,"26128":26129,"26129":26130,"26130":26131,"26131":26132,"26132":26133,"26133":26134,"26134":26135,"26135":26136,"26136":26137,"26137":26138,"26138":26139,"26139":26140,"26140":26141,"26141":26142,"26142":26143,"26143":26144,"26144":26145,"26145":26146,"26146":26147,"26147":26148,"26148":26149,"26149":26150,"26150":26151,"26151":26152,"26152":26153,"26153":26154,"26154":26155,"26155":26156,"26156":26157,"26157":26158,"26158":26159,"26159":26160,"26160":26161,"26161":26162,"26162":26163,"26163":26164,"26164":26165,"26165":26166,"26166":26167,"26167":26168,"26168":26169,"26169":26170,"26170":26171,"26171":26172,"26172":26173,"26173":26174,"26174":26175,"26175":26176,"26176":26177,"26177":26178,"26178":26179,"26179":26180,"26180":26181,"26181":26182,"26182":26183,"26183":26184,"26184":26185,"26185":26186,"26186":26187,"26187":26188,"26188":26189,"26189":26190,"26190":26191,"26191":26192,"26192":26193,"26193":26194,"26194":26195,"26195":26196,"26196":26197,"26197":26198,"26198":26199,"26199":26200,"26200":26201,"26201":26202,"26202":26203,"26203":26204,"26204":26205,"26205":26206,"26206":26207,"26207":26208,"26208":26209,"26209":26210,"26210":26211,"26211":26212,"26212":26213,"26213":26214,"26214":26215,"26215":26216,"26216":26217,"26217":26218,"26218":26219,"26219":26220,"26220":26221,"26221":26222,"26222":26223,"26223":26224,"26224":26225,"26225":26226,"26226":26227,"26227":26228,"26228":26229,"26229":26230,"26230":26231,"26231":26232,"26232":26233,"26233":26234,"26234":26235,"26235":26236,"26236":26237,"26237":26238,"26238":26239,"26239":26240,"26240":26241,"26241":26242,"26242":26243,"26243":26244,"26244":26245,"26245":26246,"26246":26247,"26247":26248,"26248":26249,"26249":26250,"26250":26251,"26251":26252,"26252":26253,"26253":26254,"26254":26255,"26255":26256,"26256":26257,"26257":26258,"26258":26259,"26259":26260,"26260":26261,"26261":26262,"26262":26263,"26263":26264,"26264":26265,"26265":26266,"26266":26267,"26267":26268,"26268":26269,"26269":26270,"26270":26271,"26271":26272,"26272":26273,"26273":26274,"26274":26275,"26275":26276,"26276":26277,"26277":26278,"26278":26279,"26279":26280,"26280":26281,"26281":26282,"26282":26283,"26283":26284,"26284":26285,"26285":26286,"26286":26287,"26287":26288,"26288":26289,"26289":26290,"26290":26291,"26291":26292,"26292":26293,"26293":26294,"26294":26295,"26295":26296,"26296":26297,"26297":26298,"26298":26299,"26299":26300,"26300":26301,"26301":26302,"26302":26303,"26303":26304,"26304":26305,"26305":26306,"26306":26307,"26307":26308,"26308":26309,"26309":26310,"26310":26311,"26311":26312,"26312":26313,"26313":26314,"26314":26315,"26315":26316,"26316":26317,"26317":26318,"26318":26319,"26319":26320,"26320":26321,"26321":26322,"26322":26323,"26323":26324,"26324":26325,"26325":26326,"26326":26327,"26327":26328,"26328":26329,"26329":26330,"26330":26331,"26331":26332,"26332":26333,"26333":26334,"26334":26335,"26335":26336,"26336":26337,"26337":26338,"26338":26339,"26339":26340,"26340":26341,"26341":26342,"26342":26343,"26343":26344,"26344":26345,"26345":26346,"26346":26347,"26347":26348,"26348":26349,"26349":26350,"26350":26351,"26351":26352,"26352":26353,"26353":26354,"26354":26355,"26355":26356,"26356":26357,"26357":26358,"26358":26359,"26359":26360,"26360":26361,"26361":26362,"26362":26363,"26363":26364,"26364":26365,"26365":26366,"26366":26367,"26367":26368,"26368":26369,"26369":26370,"26370":26371,"26371":26372,"26372":26373,"26373":26374,"26374":26375,"26375":26376,"26376":26377,"26377":26378,"26378":26379,"26379":26380,"26380":26381,"26381":26382,"26382":26383,"26383":26384,"26384":26385,"26385":26386,"26386":26387,"26387":26388,"26388":26389,"26389":26390,"26390":26391,"26391":26392,"26392":26393,"26393":26394,"26394":26395,"26395":26396,"26396":26397,"26397":26398,"26398":26399,"26399":26400,"26400":26401,"26401":26402,"26402":26403,"26403":26404,"26404":26405,"26405":26406,"26406":26407,"26407":26408,"26408":26409,"26409":26410,"26410":26411,"26411":26412,"26412":26413,"26413":26414,"26414":26415,"26415":26416,"26416":26417,"26417":26418,"26418":26419,"26419":26420,"26420":26421,"26421":26422,"26422":26423,"26423":26424,"26424":26425,"26425":26426,"26426":26427,"26427":26428,"26428":26429,"26429":26430,"26430":26431,"26431":26432,"26432":26433,"26433":26434,"26434":26435,"26435":26436,"26436":26437,"26437":26438,"26438":26439,"26439":26440,"26440":26441,"26441":26442,"26442":26443,"26443":26444,"26444":26445,"26445":26446,"26446":26447,"26447":26448,"26448":26449,"26449":26450,"26450":26451,"26451":26452,"26452":26453,"26453":26454,"26454":26455,"26455":26456,"26456":26457,"26457":26458,"26458":26459,"26459":26460,"26460":26461,"26461":26462,"26462":26463,"26463":26464,"26464":26465,"26465":26466,"26466":26467,"26467":26468,"26468":26469,"26469":26470,"26470":26471,"26471":26472,"26472":26473,"26473":26474,"26474":26475,"26475":26476,"26476":26477,"26477":26478,"26478":26479,"26479":26480,"26480":26481,"26481":26482,"26482":26483,"26483":26484,"26484":26485,"26485":26486,"26486":26487,"26487":26488,"26488":26489,"26489":26490,"26490":26491,"26491":26492,"26492":26493,"26493":26494,"26494":26495,"26495":26496,"26496":26497,"26497":26498,"26498":26499,"26499":26500,"26500":26501,"26501":26502,"26502":26503,"26503":26504,"26504":26505,"26505":26506,"26506":26507,"26507":26508,"26508":26509,"26509":26510,"26510":26511,"26511":26512,"26512":26513,"26513":26514,"26514":26515,"26515":26516,"26516":26517,"26517":26518,"26518":26519,"26519":26520,"26520":26521,"26521":26522,"26522":26523,"26523":26524,"26524":26525,"26525":26526,"26526":26527,"26527":26528,"26528":26529,"26529":26530,"26530":26531,"26531":26532,"26532":26533,"26533":26534,"26534":26535,"26535":26536,"26536":26537,"26537":26538,"26538":26539,"26539":26540,"26540":26541,"26541":26542,"26542":26543,"26543":26544,"26544":26545,"26545":26546,"26546":26547,"26547":26548,"26548":26549,"26549":26550,"26550":26551,"26551":26552,"26552":26553,"26553":26554,"26554":26555,"26555":26556,"26556":26557,"26557":26558,"26558":26559,"26559":26560,"26560":26561,"26561":26562,"26562":26563,"26563":26564,"26564":26565,"26565":26566,"26566":26567,"26567":26568,"26568":26569,"26569":26570,"26570":26571,"26571":26572,"26572":26573,"26573":26574,"26574":26575,"26575":26576,"26576":26577,"26577":26578,"26578":26579,"26579":26580,"26580":26581,"26581":26582,"26582":26583,"26583":26584,"26584":26585,"26585":26586,"26586":26587,"26587":26588,"26588":26589,"26589":26590,"26590":26591,"26591":26592,"26592":26593,"26593":26594,"26594":26595,"26595":26596,"26596":26597,"26597":26598,"26598":26599,"26599":26600,"26600":26601,"26601":26602,"26602":26603,"26603":26604,"26604":26605,"26605":26606,"26606":26607,"26607":26608,"26608":26609,"26609":26610,"26610":26611,"26611":26612,"26612":26613,"26613":26614,"26614":26615,"26615":26616,"26616":26617,"26617":26618,"26618":26619,"26619":26620,"26620":26621,"26621":26622,"26622":26623,"26623":26624,"26624":26625,"26625":26626,"26626":26627,"26627":26628,"26628":26629,"26629":26630,"26630":26631,"26631":26632,"26632":26633,"26633":26634,"26634":26635,"26635":26636,"26636":26637,"26637":26638,"26638":26639,"26639":26640,"26640":26641,"26641":26642,"26642":26643,"26643":26644,"26644":26645,"26645":26646,"26646":26647,"26647":26648,"26648":26649,"26649":26650,"26650":26651,"26651":26652,"26652":26653,"26653":26654,"26654":26655,"26655":26656,"26656":26657,"26657":26658,"26658":26659,"26659":26660,"26660":26661,"26661":26662,"26662":26663,"26663":26664,"26664":26665,"26665":26666,"26666":26667,"26667":26668,"26668":26669,"26669":26670,"26670":26671,"26671":26672,"26672":26673,"26673":26674,"26674":26675,"26675":26676,"26676":26677,"26677":26678,"26678":26679,"26679":26680,"26680":26681,"26681":26682,"26682":26683,"26683":26684,"26684":26685,"26685":26686,"26686":26687,"26687":26688,"26688":26689,"26689":26690,"26690":26691,"26691":26692,"26692":26693,"26693":26694,"26694":26695,"26695":26696,"26696":26697,"26697":26698,"26698":26699,"26699":26700,"26700":26701,"26701":26702,"26702":26703,"26703":26704,"26704":26705,"26705":26706,"26706":26707,"26707":26708,"26708":26709,"26709":26710,"26710":26711,"26711":26712,"26712":26713,"26713":26714,"26714":26715,"26715":26716,"26716":26717,"26717":26718,"26718":26719,"26719":26720,"26720":26721,"26721":26722,"26722":26723,"26723":26724,"26724":26725,"26725":26726,"26726":26727,"26727":26728,"26728":26729,"26729":26730,"26730":26731,"26731":26732,"26732":26733,"26733":26734,"26734":26735,"26735":26736,"26736":26737,"26737":26738,"26738":26739,"26739":26740,"26740":26741,"26741":26742,"26742":26743,"26743":26744,"26744":26745,"26745":26746,"26746":26747,"26747":26748,"26748":26749,"26749":26750,"26750":26751,"26751":26752,"26752":26753,"26753":26754,"26754":26755,"26755":26756,"26756":26757,"26757":26758,"26758":26759,"26759":26760,"26760":26761,"26761":26762,"26762":26763,"26763":26764,"26764":26765,"26765":26766,"26766":26767,"26767":26768,"26768":26769,"26769":26770,"26770":26771,"26771":26772,"26772":26773,"26773":26774,"26774":26775,"26775":26776,"26776":26777,"26777":26778,"26778":26779,"26779":26780,"26780":26781,"26781":26782,"26782":26783,"26783":26784,"26784":26785,"26785":26786,"26786":26787,"26787":26788,"26788":26789,"26789":26790,"26790":26791,"26791":26792,"26792":26793,"26793":26794,"26794":26795,"26795":26796,"26796":26797,"26797":26798,"26798":26799,"26799":26800,"26800":26801,"26801":26802,"26802":26803,"26803":26804,"26804":26805,"26805":26806,"26806":26807,"26807":26808,"26808":26809,"26809":26810,"26810":26811,"26811":26812,"26812":26813,"26813":26814,"26814":26815,"26815":26816,"26816":26817,"26817":26818,"26818":26819,"26819":26820,"26820":26821,"26821":26822,"26822":26823,"26823":26824,"26824":26825,"26825":26826,"26826":26827,"26827":26828,"26828":26829,"26829":26830,"26830":26831,"26831":26832,"26832":26833,"26833":26834,"26834":26835,"26835":26836,"26836":26837,"26837":26838,"26838":26839,"26839":26840,"26840":26841,"26841":26842,"26842":26843,"26843":26844,"26844":26845,"26845":26846,"26846":26847,"26847":26848,"26848":26849,"26849":26850,"26850":26851,"26851":26852,"26852":26853,"26853":26854,"26854":26855,"26855":26856,"26856":26857,"26857":26858,"26858":26859,"26859":26860,"26860":26861,"26861":26862,"26862":26863,"26863":26864,"26864":26865,"26865":26866,"26866":26867,"26867":26868,"26868":26869,"26869":26870,"26870":26871,"26871":26872,"26872":26873,"26873":26874,"26874":26875,"26875":26876,"26876":26877,"26877":26878,"26878":26879,"26879":26880,"26880":26881,"26881":26882,"26882":26883,"26883":26884,"26884":26885,"26885":26886,"26886":26887,"26887":26888,"26888":26889,"26889":26890,"26890":26891,"26891":26892,"26892":26893,"26893":26894,"26894":26895,"26895":26896,"26896":26897,"26897":26898,"26898":26899,"26899":26900,"26900":26901,"26901":26902,"26902":26903,"26903":26904,"26904":26905,"26905":26906,"26906":26907,"26907":26908,"26908":26909,"26909":26910,"26910":26911,"26911":26912,"26912":26913,"26913":26914,"26914":26915,"26915":26916,"26916":26917,"26917":26918,"26918":26919,"26919":26920,"26920":26921,"26921":26922,"26922":26923,"26923":26924,"26924":26925,"26925":26926,"26926":26927,"26927":26928,"26928":26929,"26929":26930,"26930":26931,"26931":26932,"26932":26933,"26933":26934,"26934":26935,"26935":26936,"26936":26937,"26937":26938,"26938":26939,"26939":26940,"26940":26941,"26941":26942,"26942":26943,"26943":26944,"26944":26945,"26945":26946,"26946":26947,"26947":26948,"26948":26949,"26949":26950,"26950":26951,"26951":26952,"26952":26953,"26953":26954,"26954":26955,"26955":26956,"26956":26957,"26957":26958,"26958":26959,"26959":26960,"26960":26961,"26961":26962,"26962":26963,"26963":26964,"26964":26965,"26965":26966,"26966":26967,"26967":26968,"26968":26969,"26969":26970,"26970":26971,"26971":26972,"26972":26973,"26973":26974,"26974":26975,"26975":26976,"26976":26977,"26977":26978,"26978":26979,"26979":26980,"26980":26981,"26981":26982,"26982":26983,"26983":26984,"26984":26985,"26985":26986,"26986":26987,"26987":26988,"26988":26989,"26989":26990,"26990":26991,"26991":26992,"26992":26993,"26993":26994,"26994":26995,"26995":26996,"26996":26997,"26997":26998,"26998":26999,"26999":27000,"27000":27001,"27001":27002,"27002":27003,"27003":27004,"27004":27005,"27005":27006,"27006":27007,"27007":27008,"27008":27009,"27009":27010,"27010":27011,"27011":27012,"27012":27013,"27013":27014,"27014":27015,"27015":27016,"27016":27017,"27017":27018,"27018":27019,"27019":27020,"27020":27021,"27021":27022,"27022":27023,"27023":27024,"27024":27025,"27025":27026,"27026":27027,"27027":27028,"27028":27029,"27029":27030,"27030":27031,"27031":27032,"27032":27033,"27033":27034,"27034":27035,"27035":27036,"27036":27037,"27037":27038,"27038":27039,"27039":27040,"27040":27041,"27041":27042,"27042":27043,"27043":27044,"27044":27045,"27045":27046,"27046":27047,"27047":27048,"27048":27049,"27049":27050,"27050":27051,"27051":27052,"27052":27053,"27053":27054,"27054":27055,"27055":27056,"27056":27057,"27057":27058,"27058":27059,"27059":27060,"27060":27061,"27061":27062,"27062":27063,"27063":27064,"27064":27065,"27065":27066,"27066":27067,"27067":27068,"27068":27069,"27069":27070,"27070":27071,"27071":27072,"27072":27073,"27073":27074,"27074":27075,"27075":27076,"27076":27077,"27077":27078,"27078":27079,"27079":27080,"27080":27081,"27081":27082,"27082":27083,"27083":27084,"27084":27085,"27085":27086,"27086":27087,"27087":27088,"27088":27089,"27089":27090,"27090":27091,"27091":27092,"27092":27093,"27093":27094,"27094":27095,"27095":27096,"27096":27097,"27097":27098,"27098":27099,"27099":27100,"27100":27101,"27101":27102,"27102":27103,"27103":27104,"27104":27105,"27105":27106,"27106":27107,"27107":27108,"27108":27109,"27109":27110,"27110":27111,"27111":27112,"27112":27113,"27113":27114,"27114":27115,"27115":27116,"27116":27117,"27117":27118,"27118":27119,"27119":27120,"27120":27121,"27121":27122,"27122":27123,"27123":27124,"27124":27125,"27125":27126,"27126":27127,"27127":27128,"27128":27129,"27129":27130,"27130":27131,"27131":27132,"27132":27133,"27133":27134,"27134":27135,"27135":27136,"27136":27137,"27137":27138,"27138":27139,"27139":27140,"27140":27141,"27141":27142,"27142":27143,"27143":27144,"27144":27145,"27145":27146,"27146":27147,"27147":27148,"27148":27149,"27149":27150,"27150":27151,"27151":27152,"27152":27153,"27153":27154,"27154":27155,"27155":27156,"27156":27157,"27157":27158,"27158":27159,"27159":27160,"27160":27161,"27161":27162,"27162":27163,"27163":27164,"27164":27165,"27165":27166,"27166":27167,"27167":27168,"27168":27169,"27169":27170,"27170":27171,"27171":27172,"27172":27173,"27173":27174,"27174":27175,"27175":27176,"27176":27177,"27177":27178,"27178":27179,"27179":27180,"27180":27181,"27181":27182,"27182":27183,"27183":27184,"27184":27185,"27185":27186,"27186":27187,"27187":27188,"27188":27189,"27189":27190,"27190":27191,"27191":27192,"27192":27193,"27193":27194,"27194":27195,"27195":27196,"27196":27197,"27197":27198,"27198":27199,"27199":27200,"27200":27201,"27201":27202,"27202":27203,"27203":27204,"27204":27205,"27205":27206,"27206":27207,"27207":27208,"27208":27209,"27209":27210,"27210":27211,"27211":27212,"27212":27213,"27213":27214,"27214":27215,"27215":27216,"27216":27217,"27217":27218,"27218":27219,"27219":27220,"27220":27221,"27221":27222,"27222":27223,"27223":27224,"27224":27225,"27225":27226,"27226":27227,"27227":27228,"27228":27229,"27229":27230,"27230":27231,"27231":27232,"27232":27233,"27233":27234,"27234":27235,"27235":27236,"27236":27237,"27237":27238,"27238":27239,"27239":27240,"27240":27241,"27241":27242,"27242":27243,"27243":27244,"27244":27245,"27245":27246,"27246":27247,"27247":27248,"27248":27249,"27249":27250,"27250":27251,"27251":27252,"27252":27253,"27253":27254,"27254":27255,"27255":27256,"27256":27257,"27257":27258,"27258":27259,"27259":27260,"27260":27261,"27261":27262,"27262":27263,"27263":27264,"27264":27265,"27265":27266,"27266":27267,"27267":27268,"27268":27269,"27269":27270,"27270":27271,"27271":27272,"27272":27273,"27273":27274,"27274":27275,"27275":27276,"27276":27277,"27277":27278,"27278":27279,"27279":27280,"27280":27281,"27281":27282,"27282":27283,"27283":27284,"27284":27285,"27285":27286,"27286":27287,"27287":27288,"27288":27289,"27289":27290,"27290":27291,"27291":27292,"27292":27293,"27293":27294,"27294":27295,"27295":27296,"27296":27297,"27297":27298,"27298":27299,"27299":27300,"27300":27301,"27301":27302,"27302":27303,"27303":27304,"27304":27305,"27305":27306,"27306":27307,"27307":27308,"27308":27309,"27309":27310,"27310":27311,"27311":27312,"27312":27313,"27313":27314,"27314":27315,"27315":27316,"27316":27317,"27317":27318,"27318":27319,"27319":27320,"27320":27321,"27321":27322,"27322":27323,"27323":27324,"27324":27325,"27325":27326,"27326":27327,"27327":27328,"27328":27329,"27329":27330,"27330":27331,"27331":27332,"27332":27333,"27333":27334,"27334":27335,"27335":27336,"27336":27337,"27337":27338,"27338":27339,"27339":27340,"27340":27341,"27341":27342,"27342":27343,"27343":27344,"27344":27345,"27345":27346,"27346":27347,"27347":27348,"27348":27349,"27349":27350,"27350":27351,"27351":27352,"27352":27353,"27353":27354,"27354":27355,"27355":27356,"27356":27357,"27357":27358,"27358":27359,"27359":27360,"27360":27361,"27361":27362,"27362":27363,"27363":27364,"27364":27365,"27365":27366,"27366":27367,"27367":27368,"27368":27369,"27369":27370,"27370":27371,"27371":27372,"27372":27373,"27373":27374,"27374":27375,"27375":27376,"27376":27377,"27377":27378,"27378":27379,"27379":27380,"27380":27381,"27381":27382,"27382":27383,"27383":27384,"27384":27385,"27385":27386,"27386":27387,"27387":27388,"27388":27389,"27389":27390,"27390":27391,"27391":27392,"27392":27393,"27393":27394,"27394":27395,"27395":27396,"27396":27397,"27397":27398,"27398":27399,"27399":27400,"27400":27401,"27401":27402,"27402":27403,"27403":27404,"27404":27405,"27405":27406,"27406":27407,"27407":27408,"27408":27409,"27409":27410,"27410":27411,"27411":27412,"27412":27413,"27413":27414,"27414":27415,"27415":27416,"27416":27417,"27417":27418,"27418":27419,"27419":27420,"27420":27421,"27421":27422,"27422":27423,"27423":27424,"27424":27425,"27425":27426,"27426":27427,"27427":27428,"27428":27429,"27429":27430,"27430":27431,"27431":27432,"27432":27433,"27433":27434,"27434":27435,"27435":27436,"27436":27437,"27437":27438,"27438":27439,"27439":27440,"27440":27441,"27441":27442,"27442":27443,"27443":27444,"27444":27445,"27445":27446,"27446":27447,"27447":27448,"27448":27449,"27449":27450,"27450":27451,"27451":27452,"27452":27453,"27453":27454,"27454":27455,"27455":27456,"27456":27457,"27457":27458,"27458":27459,"27459":27460,"27460":27461,"27461":27462,"27462":27463,"27463":27464,"27464":27465,"27465":27466,"27466":27467,"27467":27468,"27468":27469,"27469":27470,"27470":27471,"27471":27472,"27472":27473,"27473":27474,"27474":27475,"27475":27476,"27476":27477,"27477":27478,"27478":27479,"27479":27480,"27480":27481,"27481":27482,"27482":27483,"27483":27484,"27484":27485,"27485":27486,"27486":27487,"27487":27488,"27488":27489,"27489":27490,"27490":27491,"27491":27492,"27492":27493,"27493":27494,"27494":27495,"27495":27496,"27496":27497,"27497":27498,"27498":27499,"27499":27500,"27500":27501,"27501":27502,"27502":27503,"27503":27504,"27504":27505,"27505":27506,"27506":27507,"27507":27508,"27508":27509,"27509":27510,"27510":27511,"27511":27512,"27512":27513,"27513":27514,"27514":27515,"27515":27516,"27516":27517,"27517":27518,"27518":27519,"27519":27520,"27520":27521,"27521":27522,"27522":27523,"27523":27524,"27524":27525,"27525":27526,"27526":27527,"27527":27528,"27528":27529,"27529":27530,"27530":27531,"27531":27532,"27532":27533,"27533":27534,"27534":27535,"27535":27536,"27536":27537,"27537":27538,"27538":27539,"27539":27540,"27540":27541,"27541":27542,"27542":27543,"27543":27544,"27544":27545,"27545":27546,"27546":27547,"27547":27548,"27548":27549,"27549":27550,"27550":27551,"27551":27552,"27552":27553,"27553":27554,"27554":27555,"27555":27556,"27556":27557,"27557":27558,"27558":27559,"27559":27560,"27560":27561,"27561":27562,"27562":27563,"27563":27564,"27564":27565,"27565":27566,"27566":27567,"27567":27568,"27568":27569,"27569":27570,"27570":27571,"27571":27572,"27572":27573,"27573":27574,"27574":27575,"27575":27576,"27576":27577,"27577":27578,"27578":27579,"27579":27580,"27580":27581,"27581":27582,"27582":27583,"27583":27584,"27584":27585,"27585":27586,"27586":27587,"27587":27588,"27588":27589,"27589":27590,"27590":27591,"27591":27592,"27592":27593,"27593":27594,"27594":27595,"27595":27596,"27596":27597,"27597":27598,"27598":27599,"27599":27600,"27600":27601,"27601":27602,"27602":27603,"27603":27604,"27604":27605,"27605":27606,"27606":27607,"27607":27608,"27608":27609,"27609":27610,"27610":27611,"27611":27612,"27612":27613,"27613":27614,"27614":27615,"27615":27616,"27616":27617,"27617":27618,"27618":27619,"27619":27620,"27620":27621,"27621":27622,"27622":27623,"27623":27624,"27624":27625,"27625":27626,"27626":27627,"27627":27628,"27628":27629,"27629":27630,"27630":27631,"27631":27632,"27632":27633,"27633":27634,"27634":27635,"27635":27636,"27636":27637,"27637":27638,"27638":27639,"27639":27640,"27640":27641,"27641":27642,"27642":27643,"27643":27644,"27644":27645,"27645":27646,"27646":27647,"27647":27648,"27648":27649,"27649":27650,"27650":27651,"27651":27652,"27652":27653,"27653":27654,"27654":27655,"27655":27656,"27656":27657,"27657":27658,"27658":27659,"27659":27660,"27660":27661,"27661":27662,"27662":27663,"27663":27664,"27664":27665,"27665":27666,"27666":27667,"27667":27668,"27668":27669,"27669":27670,"27670":27671,"27671":27672,"27672":27673,"27673":27674,"27674":27675,"27675":27676,"27676":27677,"27677":27678,"27678":27679,"27679":27680,"27680":27681,"27681":27682,"27682":27683,"27683":27684,"27684":27685,"27685":27686,"27686":27687,"27687":27688,"27688":27689,"27689":27690,"27690":27691,"27691":27692,"27692":27693,"27693":27694,"27694":27695,"27695":27696,"27696":27697,"27697":27698,"27698":27699,"27699":27700,"27700":27701,"27701":27702,"27702":27703,"27703":27704,"27704":27705,"27705":27706,"27706":27707,"27707":27708,"27708":27709,"27709":27710,"27710":27711,"27711":27712,"27712":27713,"27713":27714,"27714":27715,"27715":27716,"27716":27717,"27717":27718,"27718":27719,"27719":27720,"27720":27721,"27721":27722,"27722":27723,"27723":27724,"27724":27725,"27725":27726,"27726":27727,"27727":27728,"27728":27729,"27729":27730,"27730":27731,"27731":27732,"27732":27733,"27733":27734,"27734":27735,"27735":27736,"27736":27737,"27737":27738,"27738":27739,"27739":27740,"27740":27741,"27741":27742,"27742":27743,"27743":27744,"27744":27745,"27745":27746,"27746":27747,"27747":27748,"27748":27749,"27749":27750,"27750":27751,"27751":27752,"27752":27753,"27753":27754,"27754":27755,"27755":27756,"27756":27757,"27757":27758,"27758":27759,"27759":27760,"27760":27761,"27761":27762,"27762":27763,"27763":27764,"27764":27765,"27765":27766,"27766":27767,"27767":27768,"27768":27769,"27769":27770,"27770":27771,"27771":27772,"27772":27773,"27773":27774,"27774":27775,"27775":27776,"27776":27777,"27777":27778,"27778":27779,"27779":27780,"27780":27781,"27781":27782,"27782":27783,"27783":27784,"27784":27785,"27785":27786,"27786":27787,"27787":27788,"27788":27789,"27789":27790,"27790":27791,"27791":27792,"27792":27793,"27793":27794,"27794":27795,"27795":27796,"27796":27797,"27797":27798,"27798":27799,"27799":27800,"27800":27801,"27801":27802,"27802":27803,"27803":27804,"27804":27805,"27805":27806,"27806":27807,"27807":27808,"27808":27809,"27809":27810,"27810":27811,"27811":27812,"27812":27813,"27813":27814,"27814":27815,"27815":27816,"27816":27817,"27817":27818,"27818":27819,"27819":27820,"27820":27821,"27821":27822,"27822":27823,"27823":27824,"27824":27825,"27825":27826,"27826":27827,"27827":27828,"27828":27829,"27829":27830,"27830":27831,"27831":27832,"27832":27833,"27833":27834,"27834":27835,"27835":27836,"27836":27837,"27837":27838,"27838":27839,"27839":27840,"27840":27841,"27841":27842,"27842":27843,"27843":27844,"27844":27845,"27845":27846,"27846":27847,"27847":27848,"27848":27849,"27849":27850,"27850":27851,"27851":27852,"27852":27853,"27853":27854,"27854":27855,"27855":27856,"27856":27857,"27857":27858,"27858":27859,"27859":27860,"27860":27861,"27861":27862,"27862":27863,"27863":27864,"27864":27865,"27865":27866,"27866":27867,"27867":27868,"27868":27869,"27869":27870,"27870":27871,"27871":27872,"27872":27873,"27873":27874,"27874":27875,"27875":27876,"27876":27877,"27877":27878,"27878":27879,"27879":27880,"27880":27881,"27881":27882,"27882":27883,"27883":27884,"27884":27885,"27885":27886,"27886":27887,"27887":27888,"27888":27889,"27889":27890,"27890":27891,"27891":27892,"27892":27893,"27893":27894,"27894":27895,"27895":27896,"27896":27897,"27897":27898,"27898":27899,"27899":27900,"27900":27901,"27901":27902,"27902":27903,"27903":27904,"27904":27905,"27905":27906,"27906":27907,"27907":27908,"27908":27909,"27909":27910,"27910":27911,"27911":27912,"27912":27913,"27913":27914,"27914":27915,"27915":27916,"27916":27917,"27917":27918,"27918":27919,"27919":27920,"27920":27921,"27921":27922,"27922":27923,"27923":27924,"27924":27925,"27925":27926,"27926":27927,"27927":27928,"27928":27929,"27929":27930,"27930":27931,"27931":27932,"27932":27933,"27933":27934,"27934":27935,"27935":27936,"27936":27937,"27937":27938,"27938":27939,"27939":27940,"27940":27941,"27941":27942,"27942":27943,"27943":27944,"27944":27945,"27945":27946,"27946":27947,"27947":27948,"27948":27949,"27949":27950,"27950":27951,"27951":27952,"27952":27953,"27953":27954,"27954":27955,"27955":27956,"27956":27957,"27957":27958,"27958":27959,"27959":27960,"27960":27961,"27961":27962,"27962":27963,"27963":27964,"27964":27965,"27965":27966,"27966":27967,"27967":27968,"27968":27969,"27969":27970,"27970":27971,"27971":27972,"27972":27973,"27973":27974,"27974":27975,"27975":27976,"27976":27977,"27977":27978,"27978":27979,"27979":27980,"27980":27981,"27981":27982,"27982":27983,"27983":27984,"27984":27985,"27985":27986,"27986":27987,"27987":27988,"27988":27989,"27989":27990,"27990":27991,"27991":27992,"27992":27993,"27993":27994,"27994":27995,"27995":27996,"27996":27997,"27997":27998,"27998":27999,"27999":28000,"28000":28001,"28001":28002,"28002":28003,"28003":28004,"28004":28005,"28005":28006,"28006":28007,"28007":28008,"28008":28009,"28009":28010,"28010":28011,"28011":28012,"28012":28013,"28013":28014,"28014":28015,"28015":28016,"28016":28017,"28017":28018,"28018":28019,"28019":28020,"28020":28021,"28021":28022,"28022":28023,"28023":28024,"28024":28025,"28025":28026,"28026":28027,"28027":28028,"28028":28029,"28029":28030,"28030":28031,"28031":28032,"28032":28033,"28033":28034,"28034":28035,"28035":28036,"28036":28037,"28037":28038,"28038":28039,"28039":28040,"28040":28041,"28041":28042,"28042":28043,"28043":28044,"28044":28045,"28045":28046,"28046":28047,"28047":28048,"28048":28049,"28049":28050,"28050":28051,"28051":28052,"28052":28053,"28053":28054,"28054":28055,"28055":28056,"28056":28057,"28057":28058,"28058":28059,"28059":28060,"28060":28061,"28061":28062,"28062":28063,"28063":28064,"28064":28065,"28065":28066,"28066":28067,"28067":28068,"28068":28069,"28069":28070,"28070":28071,"28071":28072,"28072":28073,"28073":28074,"28074":28075,"28075":28076,"28076":28077,"28077":28078,"28078":28079,"28079":28080,"28080":28081,"28081":28082,"28082":28083,"28083":28084,"28084":28085,"28085":28086,"28086":28087,"28087":28088,"28088":28089,"28089":28090,"28090":28091,"28091":28092,"28092":28093,"28093":28094,"28094":28095,"28095":28096,"28096":28097,"28097":28098,"28098":28099,"28099":28100,"28100":28101,"28101":28102,"28102":28103,"28103":28104,"28104":28105,"28105":28106,"28106":28107,"28107":28108,"28108":28109,"28109":28110,"28110":28111,"28111":28112,"28112":28113,"28113":28114,"28114":28115,"28115":28116,"28116":28117,"28117":28118,"28118":28119,"28119":28120,"28120":28121,"28121":28122,"28122":28123,"28123":28124,"28124":28125,"28125":28126,"28126":28127,"28127":28128,"28128":28129,"28129":28130,"28130":28131,"28131":28132,"28132":28133,"28133":28134,"28134":28135,"28135":28136,"28136":28137,"28137":28138,"28138":28139,"28139":28140,"28140":28141,"28141":28142,"28142":28143,"28143":28144,"28144":28145,"28145":28146,"28146":28147,"28147":28148,"28148":28149,"28149":28150,"28150":28151,"28151":28152,"28152":28153,"28153":28154,"28154":28155,"28155":28156,"28156":28157,"28157":28158,"28158":28159,"28159":28160,"28160":28161,"28161":28162,"28162":28163,"28163":28164,"28164":28165,"28165":28166,"28166":28167,"28167":28168,"28168":28169,"28169":28170,"28170":28171,"28171":28172,"28172":28173,"28173":28174,"28174":28175,"28175":28176,"28176":28177,"28177":28178,"28178":28179,"28179":28180,"28180":28181,"28181":28182,"28182":28183,"28183":28184,"28184":28185,"28185":28186,"28186":28187,"28187":28188,"28188":28189,"28189":28190,"28190":28191,"28191":28192,"28192":28193,"28193":28194,"28194":28195,"28195":28196,"28196":28197,"28197":28198,"28198":28199,"28199":28200,"28200":28201,"28201":28202,"28202":28203,"28203":28204,"28204":28205,"28205":28206,"28206":28207,"28207":28208,"28208":28209,"28209":28210,"28210":28211,"28211":28212,"28212":28213,"28213":28214,"28214":28215,"28215":28216,"28216":28217,"28217":28218,"28218":28219,"28219":28220,"28220":28221,"28221":28222,"28222":28223,"28223":28224,"28224":28225,"28225":28226,"28226":28227,"28227":28228,"28228":28229,"28229":28230,"28230":28231,"28231":28232,"28232":28233,"28233":28234,"28234":28235,"28235":28236,"28236":28237,"28237":28238,"28238":28239,"28239":28240,"28240":28241,"28241":28242,"28242":28243,"28243":28244,"28244":28245,"28245":28246,"28246":28247,"28247":28248,"28248":28249,"28249":28250,"28250":28251,"28251":28252,"28252":28253,"28253":28254,"28254":28255,"28255":28256,"28256":28257,"28257":28258,"28258":28259,"28259":28260,"28260":28261,"28261":28262,"28262":28263,"28263":28264,"28264":28265,"28265":28266,"28266":28267,"28267":28268,"28268":28269,"28269":28270,"28270":28271,"28271":28272,"28272":28273,"28273":28274,"28274":28275,"28275":28276,"28276":28277,"28277":28278,"28278":28279,"28279":28280,"28280":28281,"28281":28282,"28282":28283,"28283":28284,"28284":28285,"28285":28286,"28286":28287,"28287":28288,"28288":28289,"28289":28290,"28290":28291,"28291":28292,"28292":28293,"28293":28294,"28294":28295,"28295":28296,"28296":28297,"28297":28298,"28298":28299,"28299":28300,"28300":28301,"28301":28302,"28302":28303,"28303":28304,"28304":28305,"28305":28306,"28306":28307,"28307":28308,"28308":28309,"28309":28310,"28310":28311,"28311":28312,"28312":28313,"28313":28314,"28314":28315,"28315":28316,"28316":28317,"28317":28318,"28318":28319,"28319":28320,"28320":28321,"28321":28322,"28322":28323,"28323":28324,"28324":28325,"28325":28326,"28326":28327,"28327":28328,"28328":28329,"28329":28330,"28330":28331,"28331":28332,"28332":28333,"28333":28334,"28334":28335,"28335":28336,"28336":28337,"28337":28338,"28338":28339,"28339":28340,"28340":28341,"28341":28342,"28342":28343,"28343":28344,"28344":28345,"28345":28346,"28346":28347,"28347":28348,"28348":28349,"28349":28350,"28350":28351,"28351":28352,"28352":28353,"28353":28354,"28354":28355,"28355":28356,"28356":28357,"28357":28358,"28358":28359,"28359":28360,"28360":28361,"28361":28362,"28362":28363,"28363":28364,"28364":28365,"28365":28366,"28366":28367,"28367":28368,"28368":28369,"28369":28370,"28370":28371,"28371":28372,"28372":28373,"28373":28374,"28374":28375,"28375":28376,"28376":28377,"28377":28378,"28378":28379,"28379":28380,"28380":28381,"28381":28382,"28382":28383,"28383":28384,"28384":28385,"28385":28386,"28386":28387,"28387":28388,"28388":28389,"28389":28390,"28390":28391,"28391":28392,"28392":28393,"28393":28394,"28394":28395,"28395":28396,"28396":28397,"28397":28398,"28398":28399,"28399":28400,"28400":28401,"28401":28402,"28402":28403,"28403":28404,"28404":28405,"28405":28406,"28406":28407,"28407":28408,"28408":28409,"28409":28410,"28410":28411,"28411":28412,"28412":28413,"28413":28414,"28414":28415,"28415":28416,"28416":28417,"28417":28418,"28418":28419,"28419":28420,"28420":28421,"28421":28422,"28422":28423,"28423":28424,"28424":28425,"28425":28426,"28426":28427,"28427":28428,"28428":28429,"28429":28430,"28430":28431,"28431":28432,"28432":28433,"28433":28434,"28434":28435,"28435":28436,"28436":28437,"28437":28438,"28438":28439,"28439":28440,"28440":28441,"28441":28442,"28442":28443,"28443":28444,"28444":28445,"28445":28446,"28446":28447,"28447":28448,"28448":28449,"28449":28450,"28450":28451,"28451":28452,"28452":28453,"28453":28454,"28454":28455,"28455":28456,"28456":28457,"28457":28458,"28458":28459,"28459":28460,"28460":28461,"28461":28462,"28462":28463,"28463":28464,"28464":28465,"28465":28466,"28466":28467,"28467":28468,"28468":28469,"28469":28470,"28470":28471,"28471":28472,"28472":28473,"28473":28474,"28474":28475,"28475":28476,"28476":28477,"28477":28478,"28478":28479,"28479":28480,"28480":28481,"28481":28482,"28482":28483,"28483":28484,"28484":28485,"28485":28486,"28486":28487,"28487":28488,"28488":28489,"28489":28490,"28490":28491,"28491":28492,"28492":28493,"28493":28494,"28494":28495,"28495":28496,"28496":28497,"28497":28498,"28498":28499,"28499":28500,"28500":28501,"28501":28502,"28502":28503,"28503":28504,"28504":28505,"28505":28506,"28506":28507,"28507":28508,"28508":28509,"28509":28510,"28510":28511,"28511":28512,"28512":28513,"28513":28514,"28514":28515,"28515":28516,"28516":28517,"28517":28518,"28518":28519,"28519":28520,"28520":28521,"28521":28522,"28522":28523,"28523":28524,"28524":28525,"28525":28526,"28526":28527,"28527":28528,"28528":28529,"28529":28530,"28530":28531,"28531":28532,"28532":28533,"28533":28534,"28534":28535,"28535":28536,"28536":28537,"28537":28538,"28538":28539,"28539":28540,"28540":28541,"28541":28542,"28542":28543,"28543":28544,"28544":28545,"28545":28546,"28546":28547,"28547":28548,"28548":28549,"28549":28550,"28550":28551,"28551":28552,"28552":28553,"28553":28554,"28554":28555,"28555":28556,"28556":28557,"28557":28558,"28558":28559,"28559":28560,"28560":28561,"28561":28562,"28562":28563,"28563":28564,"28564":28565,"28565":28566,"28566":28567,"28567":28568,"28568":28569,"28569":28570,"28570":28571,"28571":28572,"28572":28573,"28573":28574,"28574":28575,"28575":28576,"28576":28577,"28577":28578,"28578":28579,"28579":28580,"28580":28581,"28581":28582,"28582":28583,"28583":28584,"28584":28585,"28585":28586,"28586":28587,"28587":28588,"28588":28589,"28589":28590,"28590":28591,"28591":28592,"28592":28593,"28593":28594,"28594":28595,"28595":28596,"28596":28597,"28597":28598,"28598":28599,"28599":28600,"28600":28601,"28601":28602,"28602":28603,"28603":28604,"28604":28605,"28605":28606,"28606":28607,"28607":28608,"28608":28609,"28609":28610,"28610":28611,"28611":28612,"28612":28613,"28613":28614,"28614":28615,"28615":28616,"28616":28617,"28617":28618,"28618":28619,"28619":28620,"28620":28621,"28621":28622,"28622":28623,"28623":28624,"28624":28625,"28625":28626,"28626":28627,"28627":28628,"28628":28629,"28629":28630,"28630":28631,"28631":28632,"28632":28633,"28633":28634,"28634":28635,"28635":28636,"28636":28637,"28637":28638,"28638":28639,"28639":28640,"28640":28641,"28641":28642,"28642":28643,"28643":28644,"28644":28645,"28645":28646,"28646":28647,"28647":28648,"28648":28649,"28649":28650,"28650":28651,"28651":28652,"28652":28653,"28653":28654,"28654":28655,"28655":28656,"28656":28657,"28657":28658,"28658":28659,"28659":28660,"28660":28661,"28661":28662,"28662":28663,"28663":28664,"28664":28665,"28665":28666,"28666":28667,"28667":28668,"28668":28669,"28669":28670,"28670":28671,"28671":28672,"28672":28673,"28673":28674,"28674":28675,"28675":28676,"28676":28677,"28677":28678,"28678":28679,"28679":28680,"28680":28681,"28681":28682,"28682":28683,"28683":28684,"28684":28685,"28685":28686,"28686":28687,"28687":28688,"28688":28689,"28689":28690,"28690":28691,"28691":28692,"28692":28693,"28693":28694,"28694":28695,"28695":28696,"28696":28697,"28697":28698,"28698":28699,"28699":28700,"28700":28701,"28701":28702,"28702":28703,"28703":28704,"28704":28705,"28705":28706,"28706":28707,"28707":28708,"28708":28709,"28709":28710,"28710":28711,"28711":28712,"28712":28713,"28713":28714,"28714":28715,"28715":28716,"28716":28717,"28717":28718,"28718":28719,"28719":28720,"28720":28721,"28721":28722,"28722":28723,"28723":28724,"28724":28725,"28725":28726,"28726":28727,"28727":28728,"28728":28729,"28729":28730,"28730":28731,"28731":28732,"28732":28733,"28733":28734,"28734":28735,"28735":28736,"28736":28737,"28737":28738,"28738":28739,"28739":28740,"28740":28741,"28741":28742,"28742":28743,"28743":28744,"28744":28745,"28745":28746,"28746":28747,"28747":28748,"28748":28749,"28749":28750,"28750":28751,"28751":28752,"28752":28753,"28753":28754,"28754":28755,"28755":28756,"28756":28757,"28757":28758,"28758":28759,"28759":28760,"28760":28761,"28761":28762,"28762":28763,"28763":28764,"28764":28765,"28765":28766,"28766":28767,"28767":28768,"28768":28769,"28769":28770,"28770":28771,"28771":28772,"28772":28773,"28773":28774,"28774":28775,"28775":28776,"28776":28777,"28777":28778,"28778":28779,"28779":28780,"28780":28781,"28781":28782,"28782":28783,"28783":28784,"28784":28785,"28785":28786,"28786":28787,"28787":28788,"28788":28789,"28789":28790,"28790":28791,"28791":28792,"28792":28793,"28793":28794,"28794":28795,"28795":28796,"28796":28797,"28797":28798,"28798":28799,"28799":28800,"28800":28801,"28801":28802,"28802":28803,"28803":28804,"28804":28805,"28805":28806,"28806":28807,"28807":28808,"28808":28809,"28809":28810,"28810":28811,"28811":28812,"28812":28813,"28813":28814,"28814":28815,"28815":28816,"28816":28817,"28817":28818,"28818":28819,"28819":28820,"28820":28821,"28821":28822,"28822":28823,"28823":28824,"28824":28825,"28825":28826,"28826":28827,"28827":28828,"28828":28829,"28829":28830,"28830":28831,"28831":28832,"28832":28833,"28833":28834,"28834":28835,"28835":28836,"28836":28837,"28837":28838,"28838":28839,"28839":28840,"28840":28841,"28841":28842,"28842":28843,"28843":28844,"28844":28845,"28845":28846,"28846":28847,"28847":28848,"28848":28849,"28849":28850,"28850":28851,"28851":28852,"28852":28853,"28853":28854,"28854":28855,"28855":28856,"28856":28857,"28857":28858,"28858":28859,"28859":28860,"28860":28861,"28861":28862,"28862":28863,"28863":28864,"28864":28865,"28865":28866,"28866":28867,"28867":28868,"28868":28869,"28869":28870,"28870":28871,"28871":28872,"28872":28873,"28873":28874,"28874":28875,"28875":28876,"28876":28877,"28877":28878,"28878":28879,"28879":28880,"28880":28881,"28881":28882,"28882":28883,"28883":28884,"28884":28885,"28885":28886,"28886":28887,"28887":28888,"28888":28889,"28889":28890,"28890":28891,"28891":28892,"28892":28893,"28893":28894,"28894":28895,"28895":28896,"28896":28897,"28897":28898,"28898":28899,"28899":28900,"28900":28901,"28901":28902,"28902":28903,"28903":28904,"28904":28905,"28905":28906,"28906":28907,"28907":28908,"28908":28909,"28909":28910,"28910":28911,"28911":28912,"28912":28913,"28913":28914,"28914":28915,"28915":28916,"28916":28917,"28917":28918,"28918":28919,"28919":28920,"28920":28921,"28921":28922,"28922":28923,"28923":28924,"28924":28925,"28925":28926,"28926":28927,"28927":28928,"28928":28929,"28929":28930,"28930":28931,"28931":28932,"28932":28933,"28933":28934,"28934":28935,"28935":28936,"28936":28937,"28937":28938,"28938":28939,"28939":28940,"28940":28941,"28941":28942,"28942":28943,"28943":28944,"28944":28945,"28945":28946,"28946":28947,"28947":28948,"28948":28949,"28949":28950,"28950":28951,"28951":28952,"28952":28953,"28953":28954,"28954":28955,"28955":28956,"28956":28957,"28957":28958,"28958":28959,"28959":28960,"28960":28961,"28961":28962,"28962":28963,"28963":28964,"28964":28965,"28965":28966,"28966":28967,"28967":28968,"28968":28969,"28969":28970,"28970":28971,"28971":28972,"28972":28973,"28973":28974,"28974":28975,"28975":28976,"28976":28977,"28977":28978,"28978":28979,"28979":28980,"28980":28981,"28981":28982,"28982":28983,"28983":28984,"28984":28985,"28985":28986,"28986":28987,"28987":28988,"28988":28989,"28989":28990,"28990":28991,"28991":28992,"28992":28993,"28993":28994,"28994":28995,"28995":28996,"28996":28997,"28997":28998,"28998":28999,"28999":29000,"29000":29001,"29001":29002,"29002":29003,"29003":29004,"29004":29005,"29005":29006,"29006":29007,"29007":29008,"29008":29009,"29009":29010,"29010":29011,"29011":29012,"29012":29013,"29013":29014,"29014":29015,"29015":29016,"29016":29017,"29017":29018,"29018":29019,"29019":29020,"29020":29021,"29021":29022,"29022":29023,"29023":29024,"29024":29025,"29025":29026,"29026":29027,"29027":29028,"29028":29029,"29029":29030,"29030":29031,"29031":29032,"29032":29033,"29033":29034,"29034":29035,"29035":29036,"29036":29037,"29037":29038,"29038":29039,"29039":29040,"29040":29041,"29041":29042,"29042":29043,"29043":29044,"29044":29045,"29045":29046,"29046":29047,"29047":29048,"29048":29049,"29049":29050,"29050":29051,"29051":29052,"29052":29053,"29053":29054,"29054":29055,"29055":29056,"29056":29057,"29057":29058,"29058":29059,"29059":29060,"29060":29061,"29061":29062,"29062":29063,"29063":29064,"29064":29065,"29065":29066,"29066":29067,"29067":29068,"29068":29069,"29069":29070,"29070":29071,"29071":29072,"29072":29073,"29073":29074,"29074":29075,"29075":29076,"29076":29077,"29077":29078,"29078":29079,"29079":29080,"29080":29081,"29081":29082,"29082":29083,"29083":29084,"29084":29085,"29085":29086,"29086":29087,"29087":29088,"29088":29089,"29089":29090,"29090":29091,"29091":29092,"29092":29093,"29093":29094,"29094":29095,"29095":29096,"29096":29097,"29097":29098,"29098":29099,"29099":29100,"29100":29101,"29101":29102,"29102":29103,"29103":29104,"29104":29105,"29105":29106,"29106":29107,"29107":29108,"29108":29109,"29109":29110,"29110":29111,"29111":29112,"29112":29113,"29113":29114,"29114":29115,"29115":29116,"29116":29117,"29117":29118,"29118":29119,"29119":29120,"29120":29121,"29121":29122,"29122":29123,"29123":29124,"29124":29125,"29125":29126,"29126":29127,"29127":29128,"29128":29129,"29129":29130,"29130":29131,"29131":29132,"29132":29133,"29133":29134,"29134":29135,"29135":29136,"29136":29137,"29137":29138,"29138":29139,"29139":29140,"29140":29141,"29141":29142,"29142":29143,"29143":29144,"29144":29145,"29145":29146,"29146":29147,"29147":29148,"29148":29149,"29149":29150,"29150":29151,"29151":29152,"29152":29153,"29153":29154,"29154":29155,"29155":29156,"29156":29157,"29157":29158,"29158":29159,"29159":29160,"29160":29161,"29161":29162,"29162":29163,"29163":29164,"29164":29165,"29165":29166,"29166":29167,"29167":29168,"29168":29169,"29169":29170,"29170":29171,"29171":29172,"29172":29173,"29173":29174,"29174":29175,"29175":29176,"29176":29177,"29177":29178,"29178":29179,"29179":29180,"29180":29181,"29181":29182,"29182":29183,"29183":29184,"29184":29185,"29185":29186,"29186":29187,"29187":29188,"29188":29189,"29189":29190,"29190":29191,"29191":29192,"29192":29193,"29193":29194,"29194":29195,"29195":29196,"29196":29197,"29197":29198,"29198":29199,"29199":29200,"29200":29201,"29201":29202,"29202":29203,"29203":29204,"29204":29205,"29205":29206,"29206":29207,"29207":29208,"29208":29209,"29209":29210,"29210":29211,"29211":29212,"29212":29213,"29213":29214,"29214":29215,"29215":29216,"29216":29217,"29217":29218,"29218":29219,"29219":29220,"29220":29221,"29221":29222,"29222":29223,"29223":29224,"29224":29225,"29225":29226,"29226":29227,"29227":29228,"29228":29229,"29229":29230,"29230":29231,"29231":29232,"29232":29233,"29233":29234,"29234":29235,"29235":29236,"29236":29237,"29237":29238,"29238":29239,"29239":29240,"29240":29241,"29241":29242,"29242":29243,"29243":29244,"29244":29245,"29245":29246,"29246":29247,"29247":29248,"29248":29249,"29249":29250,"29250":29251,"29251":29252,"29252":29253,"29253":29254,"29254":29255,"29255":29256,"29256":29257,"29257":29258,"29258":29259,"29259":29260,"29260":29261,"29261":29262,"29262":29263,"29263":29264,"29264":29265,"29265":29266,"29266":29267,"29267":29268,"29268":29269,"29269":29270,"29270":29271,"29271":29272,"29272":29273,"29273":29274,"29274":29275,"29275":29276,"29276":29277,"29277":29278,"29278":29279,"29279":29280,"29280":29281,"29281":29282,"29282":29283,"29283":29284,"29284":29285,"29285":29286,"29286":29287,"29287":29288,"29288":29289,"29289":29290,"29290":29291,"29291":29292,"29292":29293,"29293":29294,"29294":29295,"29295":29296,"29296":29297,"29297":29298,"29298":29299,"29299":29300,"29300":29301,"29301":29302,"29302":29303,"29303":29304,"29304":29305,"29305":29306,"29306":29307,"29307":29308,"29308":29309,"29309":29310,"29310":29311,"29311":29312,"29312":29313,"29313":29314,"29314":29315,"29315":29316,"29316":29317,"29317":29318,"29318":29319,"29319":29320,"29320":29321,"29321":29322,"29322":29323,"29323":29324,"29324":29325,"29325":29326,"29326":29327,"29327":29328,"29328":29329,"29329":29330,"29330":29331,"29331":29332,"29332":29333,"29333":29334,"29334":29335,"29335":29336,"29336":29337,"29337":29338,"29338":29339,"29339":29340,"29340":29341,"29341":29342,"29342":29343,"29343":29344,"29344":29345,"29345":29346,"29346":29347,"29347":29348,"29348":29349,"29349":29350,"29350":29351,"29351":29352,"29352":29353,"29353":29354,"29354":29355,"29355":29356,"29356":29357,"29357":29358,"29358":29359,"29359":29360,"29360":29361,"29361":29362,"29362":29363,"29363":29364,"29364":29365,"29365":29366,"29366":29367,"29367":29368,"29368":29369,"29369":29370,"29370":29371,"29371":29372,"29372":29373,"29373":29374,"29374":29375,"29375":29376,"29376":29377,"29377":29378,"29378":29379,"29379":29380,"29380":29381,"29381":29382,"29382":29383,"29383":29384,"29384":29385,"29385":29386,"29386":29387,"29387":29388,"29388":29389,"29389":29390,"29390":29391,"29391":29392,"29392":29393,"29393":29394,"29394":29395,"29395":29396,"29396":29397,"29397":29398,"29398":29399,"29399":29400,"29400":29401,"29401":29402,"29402":29403,"29403":29404,"29404":29405,"29405":29406,"29406":29407,"29407":29408,"29408":29409,"29409":29410,"29410":29411,"29411":29412,"29412":29413,"29413":29414,"29414":29415,"29415":29416,"29416":29417,"29417":29418,"29418":29419,"29419":29420,"29420":29421,"29421":29422,"29422":29423,"29423":29424,"29424":29425,"29425":29426,"29426":29427,"29427":29428,"29428":29429,"29429":29430,"29430":29431,"29431":29432,"29432":29433,"29433":29434,"29434":29435,"29435":29436,"29436":29437,"29437":29438,"29438":29439,"29439":29440,"29440":29441,"29441":29442,"29442":29443,"29443":29444,"29444":29445,"29445":29446,"29446":29447,"29447":29448,"29448":29449,"29449":29450,"29450":29451,"29451":29452,"29452":29453,"29453":29454,"29454":29455,"29455":29456,"29456":29457,"29457":29458,"29458":29459,"29459":29460,"29460":29461,"29461":29462,"29462":29463,"29463":29464,"29464":29465,"29465":29466,"29466":29467,"29467":29468,"29468":29469,"29469":29470,"29470":29471,"29471":29472,"29472":29473,"29473":29474,"29474":29475,"29475":29476,"29476":29477,"29477":29478,"29478":29479,"29479":29480,"29480":29481,"29481":29482,"29482":29483,"29483":29484,"29484":29485,"29485":29486,"29486":29487,"29487":29488,"29488":29489,"29489":29490,"29490":29491,"29491":29492,"29492":29493,"29493":29494,"29494":29495,"29495":29496,"29496":29497,"29497":29498,"29498":29499,"29499":29500,"29500":29501,"29501":29502,"29502":29503,"29503":29504,"29504":29505,"29505":29506,"29506":29507,"29507":29508,"29508":29509,"29509":29510,"29510":29511,"29511":29512,"29512":29513,"29513":29514,"29514":29515,"29515":29516,"29516":29517,"29517":29518,"29518":29519,"29519":29520,"29520":29521,"29521":29522,"29522":29523,"29523":29524,"29524":29525,"29525":29526,"29526":29527,"29527":29528,"29528":29529,"29529":29530,"29530":29531,"29531":29532,"29532":29533,"29533":29534,"29534":29535,"29535":29536,"29536":29537,"29537":29538,"29538":29539,"29539":29540,"29540":29541,"29541":29542,"29542":29543,"29543":29544,"29544":29545,"29545":29546,"29546":29547,"29547":29548,"29548":29549,"29549":29550,"29550":29551,"29551":29552,"29552":29553,"29553":29554,"29554":29555,"29555":29556,"29556":29557,"29557":29558,"29558":29559,"29559":29560,"29560":29561,"29561":29562,"29562":29563,"29563":29564,"29564":29565,"29565":29566,"29566":29567,"29567":29568,"29568":29569,"29569":29570,"29570":29571,"29571":29572,"29572":29573,"29573":29574,"29574":29575,"29575":29576,"29576":29577,"29577":29578,"29578":29579,"29579":29580,"29580":29581,"29581":29582,"29582":29583,"29583":29584,"29584":29585,"29585":29586,"29586":29587,"29587":29588,"29588":29589,"29589":29590,"29590":29591,"29591":29592,"29592":29593,"29593":29594,"29594":29595,"29595":29596,"29596":29597,"29597":29598,"29598":29599,"29599":29600,"29600":29601,"29601":29602,"29602":29603,"29603":29604,"29604":29605,"29605":29606,"29606":29607,"29607":29608,"29608":29609,"29609":29610,"29610":29611,"29611":29612,"29612":29613,"29613":29614,"29614":29615,"29615":29616,"29616":29617,"29617":29618,"29618":29619,"29619":29620,"29620":29621,"29621":29622,"29622":29623,"29623":29624,"29624":29625,"29625":29626,"29626":29627,"29627":29628,"29628":29629,"29629":29630,"29630":29631,"29631":29632,"29632":29633,"29633":29634,"29634":29635,"29635":29636,"29636":29637,"29637":29638,"29638":29639,"29639":29640,"29640":29641,"29641":29642,"29642":29643,"29643":29644,"29644":29645,"29645":29646,"29646":29647,"29647":29648,"29648":29649,"29649":29650,"29650":29651,"29651":29652,"29652":29653,"29653":29654,"29654":29655,"29655":29656,"29656":29657,"29657":29658,"29658":29659,"29659":29660,"29660":29661,"29661":29662,"29662":29663,"29663":29664,"29664":29665,"29665":29666,"29666":29667,"29667":29668,"29668":29669,"29669":29670,"29670":29671,"29671":29672,"29672":29673,"29673":29674,"29674":29675,"29675":29676,"29676":29677,"29677":29678,"29678":29679,"29679":29680,"29680":29681,"29681":29682,"29682":29683,"29683":29684,"29684":29685,"29685":29686,"29686":29687,"29687":29688,"29688":29689,"29689":29690,"29690":29691,"29691":29692,"29692":29693,"29693":29694,"29694":29695,"29695":29696,"29696":29697,"29697":29698,"29698":29699,"29699":29700,"29700":29701,"29701":29702,"29702":29703,"29703":29704,"29704":29705,"29705":29706,"29706":29707,"29707":29708,"29708":29709,"29709":29710,"29710":29711,"29711":29712,"29712":29713,"29713":29714,"29714":29715,"29715":29716,"29716":29717,"29717":29718,"29718":29719,"29719":29720,"29720":29721,"29721":29722,"29722":29723,"29723":29724,"29724":29725,"29725":29726,"29726":29727,"29727":29728,"29728":29729,"29729":29730,"29730":29731,"29731":29732,"29732":29733,"29733":29734,"29734":29735,"29735":29736,"29736":29737,"29737":29738,"29738":29739,"29739":29740,"29740":29741,"29741":29742,"29742":29743,"29743":29744,"29744":29745,"29745":29746,"29746":29747,"29747":29748,"29748":29749,"29749":29750,"29750":29751,"29751":29752,"29752":29753,"29753":29754,"29754":29755,"29755":29756,"29756":29757,"29757":29758,"29758":29759,"29759":29760,"29760":29761,"29761":29762,"29762":29763,"29763":29764,"29764":29765,"29765":29766,"29766":29767,"29767":29768,"29768":29769,"29769":29770,"29770":29771,"29771":29772,"29772":29773,"29773":29774,"29774":29775,"29775":29776,"29776":29777,"29777":29778,"29778":29779,"29779":29780,"29780":29781,"29781":29782,"29782":29783,"29783":29784,"29784":29785,"29785":29786,"29786":29787,"29787":29788,"29788":29789,"29789":29790,"29790":29791,"29791":29792,"29792":29793,"29793":29794,"29794":29795,"29795":29796,"29796":29797,"29797":29798,"29798":29799,"29799":29800,"29800":29801,"29801":29802,"29802":29803,"29803":29804,"29804":29805,"29805":29806,"29806":29807,"29807":29808,"29808":29809,"29809":29810,"29810":29811,"29811":29812,"29812":29813,"29813":29814,"29814":29815,"29815":29816,"29816":29817,"29817":29818,"29818":29819,"29819":29820,"29820":29821,"29821":29822,"29822":29823,"29823":29824,"29824":29825,"29825":29826,"29826":29827,"29827":29828,"29828":29829,"29829":29830,"29830":29831,"29831":29832,"29832":29833,"29833":29834,"29834":29835,"29835":29836,"29836":29837,"29837":29838,"29838":29839,"29839":29840,"29840":29841,"29841":29842,"29842":29843,"29843":29844,"29844":29845,"29845":29846,"29846":29847,"29847":29848,"29848":29849,"29849":29850,"29850":29851,"29851":29852,"29852":29853,"29853":29854,"29854":29855,"29855":29856,"29856":29857,"29857":29858,"29858":29859,"29859":29860,"29860":29861,"29861":29862,"29862":29863,"29863":29864,"29864":29865,"29865":29866,"29866":29867,"29867":29868,"29868":29869,"29869":29870,"29870":29871,"29871":29872,"29872":29873,"29873":29874,"29874":29875,"29875":29876,"29876":29877,"29877":29878,"29878":29879,"29879":29880,"29880":29881,"29881":29882,"29882":29883,"29883":29884,"29884":29885,"29885":29886,"29886":29887,"29887":29888,"29888":29889,"29889":29890,"29890":29891,"29891":29892,"29892":29893,"29893":29894,"29894":29895,"29895":29896,"29896":29897,"29897":29898,"29898":29899,"29899":29900,"29900":29901,"29901":29902,"29902":29903,"29903":29904,"29904":29905,"29905":29906,"29906":29907,"29907":29908,"29908":29909,"29909":29910,"29910":29911,"29911":29912,"29912":29913,"29913":29914,"29914":29915,"29915":29916,"29916":29917,"29917":29918,"29918":29919,"29919":29920,"29920":29921,"29921":29922,"29922":29923,"29923":29924,"29924":29925,"29925":29926,"29926":29927,"29927":29928,"29928":29929,"29929":29930,"29930":29931,"29931":29932,"29932":29933,"29933":29934,"29934":29935,"29935":29936,"29936":29937,"29937":29938,"29938":29939,"29939":29940,"29940":29941,"29941":29942,"29942":29943,"29943":29944,"29944":29945,"29945":29946,"29946":29947,"29947":29948,"29948":29949,"29949":29950,"29950":29951,"29951":29952,"29952":29953,"29953":29954,"29954":29955,"29955":29956,"29956":29957,"29957":29958,"29958":29959,"29959":29960,"29960":29961,"29961":29962,"29962":29963,"29963":29964,"29964":29965,"29965":29966,"29966":29967,"29967":29968,"29968":29969,"29969":29970,"29970":29971,"29971":29972,"29972":29973,"29973":29974,"29974":29975,"29975":29976,"29976":29977,"29977":29978,"29978":29979,"29979":29980,"29980":29981,"29981":29982,"29982":29983,"29983":29984,"29984":29985,"29985":29986,"29986":29987,"29987":29988,"29988":29989,"29989":29990,"29990":29991,"29991":29992,"29992":29993,"29993":29994,"29994":29995,"29995":29996,"29996":29997,"29997":29998,"29998":29999,"29999":30000,"30000":30001,"30001":30002,"30002":30003,"30003":30004,"30004":30005,"30005":30006,"30006":30007,"30007":30008,"30008":30009,"30009":30010,"30010":30011,"30011":30012,"30012":30013,"30013":30014,"30014":30015,"30015":30016,"30016":30017,"30017":30018,"30018":30019,"30019":30020,"30020":30021,"30021":30022,"30022":30023,"30023":30024,"30024":30025,"30025":30026,"30026":30027,"30027":30028,"30028":30029,"30029":30030,"30030":30031,"30031":30032,"30032":30033,"30033":30034,"30034":30035,"30035":30036,"30036":30037,"30037":30038,"30038":30039,"30039":30040,"30040":30041,"30041":30042,"30042":30043,"30043":30044,"30044":30045,"30045":30046,"30046":30047,"30047":30048,"30048":30049,"30049":30050,"30050":30051,"30051":30052,"30052":30053,"30053":30054,"30054":30055,"30055":30056,"30056":30057,"30057":30058,"30058":30059,"30059":30060,"30060":30061,"30061":30062,"30062":30063,"30063":30064,"30064":30065,"30065":30066,"30066":30067,"30067":30068,"30068":30069,"30069":30070,"30070":30071,"30071":30072,"30072":30073,"30073":30074,"30074":30075,"30075":30076,"30076":30077,"30077":30078,"30078":30079,"30079":30080,"30080":30081,"30081":30082,"30082":30083,"30083":30084,"30084":30085,"30085":30086,"30086":30087,"30087":30088,"30088":30089,"30089":30090,"30090":30091,"30091":30092,"30092":30093,"30093":30094,"30094":30095,"30095":30096,"30096":30097,"30097":30098,"30098":30099,"30099":30100,"30100":30101,"30101":30102,"30102":30103,"30103":30104,"30104":30105,"30105":30106,"30106":30107,"30107":30108,"30108":30109,"30109":30110,"30110":30111,"30111":30112,"30112":30113,"30113":30114,"30114":30115,"30115":30116,"30116":30117,"30117":30118,"30118":30119,"30119":30120,"30120":30121,"30121":30122,"30122":30123,"30123":30124,"30124":30125,"30125":30126,"30126":30127,"30127":30128,"30128":30129,"30129":30130,"30130":30131,"30131":30132,"30132":30133,"30133":30134,"30134":30135,"30135":30136,"30136":30137,"30137":30138,"30138":30139,"30139":30140,"30140":30141,"30141":30142,"30142":30143,"30143":30144,"30144":30145,"30145":30146,"30146":30147,"30147":30148,"30148":30149,"30149":30150,"30150":30151,"30151":30152,"30152":30153,"30153":30154,"30154":30155,"30155":30156,"30156":30157,"30157":30158,"30158":30159,"30159":30160,"30160":30161,"30161":30162,"30162":30163,"30163":30164,"30164":30165,"30165":30166,"30166":30167,"30167":30168,"30168":30169,"30169":30170,"30170":30171,"30171":30172,"30172":30173,"30173":30174,"30174":30175,"30175":30176,"30176":30177,"30177":30178,"30178":30179,"30179":30180,"30180":30181,"30181":30182,"30182":30183,"30183":30184,"30184":30185,"30185":30186,"30186":30187,"30187":30188,"30188":30189,"30189":30190,"30190":30191,"30191":30192,"30192":30193,"30193":30194,"30194":30195,"30195":30196,"30196":30197,"30197":30198,"30198":30199,"30199":30200,"30200":30201,"30201":30202,"30202":30203,"30203":30204,"30204":30205,"30205":30206,"30206":30207,"30207":30208,"30208":30209,"30209":30210,"30210":30211,"30211":30212,"30212":30213,"30213":30214,"30214":30215,"30215":30216,"30216":30217,"30217":30218,"30218":30219,"30219":30220,"30220":30221,"30221":30222,"30222":30223,"30223":30224,"30224":30225,"30225":30226,"30226":30227,"30227":30228,"30228":30229,"30229":30230,"30230":30231,"30231":30232,"30232":30233,"30233":30234,"30234":30235,"30235":30236,"30236":30237,"30237":30238,"30238":30239,"30239":30240,"30240":30241,"30241":30242,"30242":30243,"30243":30244,"30244":30245,"30245":30246,"30246":30247,"30247":30248,"30248":30249,"30249":30250,"30250":30251,"30251":30252,"30252":30253,"30253":30254,"30254":30255,"30255":30256,"30256":30257,"30257":30258,"30258":30259,"30259":30260,"30260":30261,"30261":30262,"30262":30263,"30263":30264,"30264":30265,"30265":30266,"30266":30267,"30267":30268,"30268":30269,"30269":30270,"30270":30271,"30271":30272,"30272":30273,"30273":30274,"30274":30275,"30275":30276,"30276":30277,"30277":30278,"30278":30279,"30279":30280,"30280":30281,"30281":30282,"30282":30283,"30283":30284,"30284":30285,"30285":30286,"30286":30287,"30287":30288,"30288":30289,"30289":30290,"30290":30291,"30291":30292,"30292":30293,"30293":30294,"30294":30295,"30295":30296,"30296":30297,"30297":30298,"30298":30299,"30299":30300,"30300":30301,"30301":30302,"30302":30303,"30303":30304,"30304":30305,"30305":30306,"30306":30307,"30307":30308,"30308":30309,"30309":30310,"30310":30311,"30311":30312,"30312":30313,"30313":30314,"30314":30315,"30315":30316,"30316":30317,"30317":30318,"30318":30319,"30319":30320,"30320":30321,"30321":30322,"30322":30323,"30323":30324,"30324":30325,"30325":30326,"30326":30327,"30327":30328,"30328":30329,"30329":30330,"30330":30331,"30331":30332,"30332":30333,"30333":30334,"30334":30335,"30335":30336,"30336":30337,"30337":30338,"30338":30339,"30339":30340,"30340":30341,"30341":30342,"30342":30343,"30343":30344,"30344":30345,"30345":30346,"30346":30347,"30347":30348,"30348":30349,"30349":30350,"30350":30351,"30351":30352,"30352":30353,"30353":30354,"30354":30355,"30355":30356,"30356":30357,"30357":30358,"30358":30359,"30359":30360,"30360":30361,"30361":30362,"30362":30363,"30363":30364,"30364":30365,"30365":30366,"30366":30367,"30367":30368,"30368":30369,"30369":30370,"30370":30371,"30371":30372,"30372":30373,"30373":30374,"30374":30375,"30375":30376,"30376":30377,"30377":30378,"30378":30379,"30379":30380,"30380":30381,"30381":30382,"30382":30383,"30383":30384,"30384":30385,"30385":30386,"30386":30387,"30387":30388,"30388":30389,"30389":30390,"30390":30391,"30391":30392,"30392":30393,"30393":30394,"30394":30395,"30395":30396,"30396":30397,"30397":30398,"30398":30399,"30399":30400,"30400":30401,"30401":30402,"30402":30403,"30403":30404,"30404":30405,"30405":30406,"30406":30407,"30407":30408,"30408":30409,"30409":30410,"30410":30411,"30411":30412,"30412":30413,"30413":30414,"30414":30415,"30415":30416,"30416":30417,"30417":30418,"30418":30419,"30419":30420,"30420":30421,"30421":30422,"30422":30423,"30423":30424,"30424":30425,"30425":30426,"30426":30427,"30427":30428,"30428":30429,"30429":30430,"30430":30431,"30431":30432,"30432":30433,"30433":30434,"30434":30435,"30435":30436,"30436":30437,"30437":30438,"30438":30439,"30439":30440,"30440":30441,"30441":30442,"30442":30443,"30443":30444,"30444":30445,"30445":30446,"30446":30447,"30447":30448,"30448":30449,"30449":30450,"30450":30451,"30451":30452,"30452":30453,"30453":30454,"30454":30455,"30455":30456,"30456":30457,"30457":30458,"30458":30459,"30459":30460,"30460":30461,"30461":30462,"30462":30463,"30463":30464,"30464":30465,"30465":30466,"30466":30467,"30467":30468,"30468":30469,"30469":30470,"30470":30471,"30471":30472,"30472":30473,"30473":30474,"30474":30475,"30475":30476,"30476":30477,"30477":30478,"30478":30479,"30479":30480,"30480":30481,"30481":30482,"30482":30483,"30483":30484,"30484":30485,"30485":30486,"30486":30487,"30487":30488,"30488":30489,"30489":30490,"30490":30491,"30491":30492,"30492":30493,"30493":30494,"30494":30495,"30495":30496,"30496":30497,"30497":30498,"30498":30499,"30499":30500,"30500":30501,"30501":30502,"30502":30503,"30503":30504,"30504":30505,"30505":30506,"30506":30507,"30507":30508,"30508":30509,"30509":30510,"30510":30511,"30511":30512,"30512":30513,"30513":30514,"30514":30515,"30515":30516,"30516":30517,"30517":30518,"30518":30519,"30519":30520,"30520":30521,"30521":30522,"30522":30523,"30523":30524,"30524":30525,"30525":30526,"30526":30527,"30527":30528,"30528":30529,"30529":30530,"30530":30531,"30531":30532,"30532":30533,"30533":30534,"30534":30535,"30535":30536,"30536":30537,"30537":30538,"30538":30539,"30539":30540,"30540":30541,"30541":30542,"30542":30543,"30543":30544,"30544":30545,"30545":30546,"30546":30547,"30547":30548,"30548":30549,"30549":30550,"30550":30551,"30551":30552,"30552":30553,"30553":30554,"30554":30555,"30555":30556,"30556":30557,"30557":30558,"30558":30559,"30559":30560,"30560":30561,"30561":30562,"30562":30563,"30563":30564,"30564":30565,"30565":30566,"30566":30567,"30567":30568,"30568":30569,"30569":30570,"30570":30571,"30571":30572,"30572":30573,"30573":30574,"30574":30575,"30575":30576,"30576":30577,"30577":30578,"30578":30579,"30579":30580,"30580":30581,"30581":30582,"30582":30583,"30583":30584,"30584":30585,"30585":30586,"30586":30587,"30587":30588,"30588":30589,"30589":30590,"30590":30591,"30591":30592,"30592":30593,"30593":30594,"30594":30595,"30595":30596,"30596":30597,"30597":30598,"30598":30599,"30599":30600,"30600":30601,"30601":30602,"30602":30603,"30603":30604,"30604":30605,"30605":30606,"30606":30607,"30607":30608,"30608":30609,"30609":30610,"30610":30611,"30611":30612,"30612":30613,"30613":30614,"30614":30615,"30615":30616,"30616":30617,"30617":30618,"30618":30619,"30619":30620,"30620":30621,"30621":30622,"30622":30623,"30623":30624,"30624":30625,"30625":30626,"30626":30627,"30627":30628,"30628":30629,"30629":30630,"30630":30631,"30631":30632,"30632":30633,"30633":30634,"30634":30635,"30635":30636,"30636":30637,"30637":30638,"30638":30639,"30639":30640,"30640":30641,"30641":30642,"30642":30643,"30643":30644,"30644":30645,"30645":30646,"30646":30647,"30647":30648,"30648":30649,"30649":30650,"30650":30651,"30651":30652,"30652":30653,"30653":30654,"30654":30655,"30655":30656,"30656":30657,"30657":30658,"30658":30659,"30659":30660,"30660":30661,"30661":30662,"30662":30663,"30663":30664,"30664":30665,"30665":30666,"30666":30667,"30667":30668,"30668":30669,"30669":30670,"30670":30671,"30671":30672,"30672":30673,"30673":30674,"30674":30675,"30675":30676,"30676":30677,"30677":30678,"30678":30679,"30679":30680,"30680":30681,"30681":30682,"30682":30683,"30683":30684,"30684":30685,"30685":30686,"30686":30687,"30687":30688,"30688":30689,"30689":30690,"30690":30691,"30691":30692,"30692":30693,"30693":30694,"30694":30695,"30695":30696,"30696":30697,"30697":30698,"30698":30699,"30699":30700,"30700":30701,"30701":30702,"30702":30703,"30703":30704,"30704":30705,"30705":30706,"30706":30707,"30707":30708,"30708":30709,"30709":30710,"30710":30711,"30711":30712,"30712":30713,"30713":30714,"30714":30715,"30715":30716,"30716":30717,"30717":30718,"30718":30719,"30719":30720,"30720":30721,"30721":30722,"30722":30723,"30723":30724,"30724":30725,"30725":30726,"30726":30727,"30727":30728,"30728":30729,"30729":30730,"30730":30731,"30731":30732,"30732":30733,"30733":30734,"30734":30735,"30735":30736,"30736":30737,"30737":30738,"30738":30739,"30739":30740,"30740":30741,"30741":30742,"30742":30743,"30743":30744,"30744":30745,"30745":30746,"30746":30747,"30747":30748,"30748":30749,"30749":30750,"30750":30751,"30751":30752,"30752":30753,"30753":30754,"30754":30755,"30755":30756,"30756":30757,"30757":30758,"30758":30759,"30759":30760,"30760":30761,"30761":30762,"30762":30763,"30763":30764,"30764":30765,"30765":30766,"30766":30767,"30767":30768,"30768":30769,"30769":30770,"30770":30771,"30771":30772,"30772":30773,"30773":30774,"30774":30775,"30775":30776,"30776":30777,"30777":30778,"30778":30779,"30779":30780,"30780":30781,"30781":30782,"30782":30783,"30783":30784,"30784":30785,"30785":30786,"30786":30787,"30787":30788,"30788":30789,"30789":30790,"30790":30791,"30791":30792,"30792":30793,"30793":30794,"30794":30795,"30795":30796,"30796":30797,"30797":30798,"30798":30799,"30799":30800,"30800":30801,"30801":30802,"30802":30803,"30803":30804,"30804":30805,"30805":30806,"30806":30807,"30807":30808,"30808":30809,"30809":30810,"30810":30811,"30811":30812,"30812":30813,"30813":30814,"30814":30815,"30815":30816,"30816":30817,"30817":30818,"30818":30819,"30819":30820,"30820":30821,"30821":30822,"30822":30823,"30823":30824,"30824":30825,"30825":30826,"30826":30827,"30827":30828,"30828":30829,"30829":30830,"30830":30831,"30831":30832,"30832":30833,"30833":30834,"30834":30835,"30835":30836,"30836":30837,"30837":30838,"30838":30839,"30839":30840,"30840":30841,"30841":30842,"30842":30843,"30843":30844,"30844":30845,"30845":30846,"30846":30847,"30847":30848,"30848":30849,"30849":30850,"30850":30851,"30851":30852,"30852":30853,"30853":30854,"30854":30855,"30855":30856,"30856":30857,"30857":30858,"30858":30859,"30859":30860,"30860":30861,"30861":30862,"30862":30863,"30863":30864,"30864":30865,"30865":30866,"30866":30867,"30867":30868,"30868":30869,"30869":30870,"30870":30871,"30871":30872,"30872":30873,"30873":30874,"30874":30875,"30875":30876,"30876":30877,"30877":30878,"30878":30879,"30879":30880,"30880":30881,"30881":30882,"30882":30883,"30883":30884,"30884":30885,"30885":30886,"30886":30887,"30887":30888,"30888":30889,"30889":30890,"30890":30891,"30891":30892,"30892":30893,"30893":30894,"30894":30895,"30895":30896,"30896":30897,"30897":30898,"30898":30899,"30899":30900,"30900":30901,"30901":30902,"30902":30903,"30903":30904,"30904":30905,"30905":30906,"30906":30907,"30907":30908,"30908":30909,"30909":30910,"30910":30911,"30911":30912,"30912":30913,"30913":30914,"30914":30915,"30915":30916,"30916":30917,"30917":30918,"30918":30919,"30919":30920,"30920":30921,"30921":30922,"30922":30923,"30923":30924,"30924":30925,"30925":30926,"30926":30927,"30927":30928,"30928":30929,"30929":30930,"30930":30931,"30931":30932,"30932":30933,"30933":30934,"30934":30935,"30935":30936,"30936":30937,"30937":30938,"30938":30939,"30939":30940,"30940":30941,"30941":30942,"30942":30943,"30943":30944,"30944":30945,"30945":30946,"30946":30947,"30947":30948,"30948":30949,"30949":30950,"30950":30951,"30951":30952,"30952":30953,"30953":30954,"30954":30955,"30955":30956,"30956":30957,"30957":30958,"30958":30959,"30959":30960,"30960":30961,"30961":30962,"30962":30963,"30963":30964,"30964":30965,"30965":30966,"30966":30967,"30967":30968,"30968":30969,"30969":30970,"30970":30971,"30971":30972,"30972":30973,"30973":30974,"30974":30975,"30975":30976,"30976":30977,"30977":30978,"30978":30979,"30979":30980,"30980":30981,"30981":30982,"30982":30983,"30983":30984,"30984":30985,"30985":30986,"30986":30987,"30987":30988,"30988":30989,"30989":30990,"30990":30991,"30991":30992,"30992":30993,"30993":30994,"30994":30995,"30995":30996,"30996":30997,"30997":30998,"30998":30999,"30999":31000,"31000":31001,"31001":31002,"31002":31003,"31003":31004,"31004":31005,"31005":31006,"31006":31007,"31007":31008,"31008":31009,"31009":31010,"31010":31011,"31011":31012,"31012":31013,"31013":31014,"31014":31015,"31015":31016,"31016":31017,"31017":31018,"31018":31019,"31019":31020,"31020":31021,"31021":31022,"31022":31023,"31023":31024,"31024":31025,"31025":31026,"31026":31027,"31027":31028,"31028":31029,"31029":31030,"31030":31031,"31031":31032,"31032":31033,"31033":31034,"31034":31035,"31035":31036,"31036":31037,"31037":31038,"31038":31039,"31039":31040,"31040":31041,"31041":31042,"31042":31043,"31043":31044,"31044":31045,"31045":31046,"31046":31047,"31047":31048,"31048":31049,"31049":31050,"31050":31051,"31051":31052,"31052":31053,"31053":31054,"31054":31055,"31055":31056,"31056":31057,"31057":31058,"31058":31059,"31059":31060,"31060":31061,"31061":31062,"31062":31063,"31063":31064,"31064":31065,"31065":31066,"31066":31067,"31067":31068,"31068":31069,"31069":31070,"31070":31071,"31071":31072,"31072":31073,"31073":31074,"31074":31075,"31075":31076,"31076":31077,"31077":31078,"31078":31079,"31079":31080,"31080":31081,"31081":31082,"31082":31083,"31083":31084,"31084":31085,"31085":31086,"31086":31087,"31087":31088,"31088":31089,"31089":31090,"31090":31091,"31091":31092,"31092":31093,"31093":31094,"31094":31095,"31095":31096,"31096":31097,"31097":31098,"31098":31099,"31099":31100,"31100":31101,"31101":31102,"31102":31103,"31103":31104,"31104":31105,"31105":31106,"31106":31107,"31107":31108,"31108":31109,"31109":31110,"31110":31111,"31111":31112,"31112":31113,"31113":31114,"31114":31115,"31115":31116,"31116":31117,"31117":31118,"31118":31119,"31119":31120,"31120":31121,"31121":31122,"31122":31123,"31123":31124,"31124":31125,"31125":31126,"31126":31127,"31127":31128,"31128":31129,"31129":31130,"31130":31131,"31131":31132,"31132":31133,"31133":31134,"31134":31135,"31135":31136,"31136":31137,"31137":31138,"31138":31139,"31139":31140,"31140":31141,"31141":31142,"31142":31143,"31143":31144,"31144":31145,"31145":31146,"31146":31147,"31147":31148,"31148":31149,"31149":31150,"31150":31151,"31151":31152,"31152":31153,"31153":31154,"31154":31155,"31155":31156,"31156":31157,"31157":31158,"31158":31159,"31159":31160,"31160":31161,"31161":31162,"31162":31163,"31163":31164,"31164":31165,"31165":31166,"31166":31167,"31167":31168,"31168":31169,"31169":31170,"31170":31171,"31171":31172,"31172":31173,"31173":31174,"31174":31175,"31175":31176,"31176":31177,"31177":31178,"31178":31179,"31179":31180,"31180":31181,"31181":31182,"31182":31183,"31183":31184,"31184":31185,"31185":31186,"31186":31187,"31187":31188,"31188":31189,"31189":31190,"31190":31191,"31191":31192,"31192":31193,"31193":31194,"31194":31195,"31195":31196,"31196":31197,"31197":31198,"31198":31199,"31199":31200,"31200":31201,"31201":31202,"31202":31203,"31203":31204,"31204":31205,"31205":31206,"31206":31207,"31207":31208,"31208":31209,"31209":31210,"31210":31211,"31211":31212,"31212":31213,"31213":31214,"31214":31215,"31215":31216,"31216":31217,"31217":31218,"31218":31219,"31219":31220,"31220":31221,"31221":31222,"31222":31223,"31223":31224,"31224":31225,"31225":31226,"31226":31227,"31227":31228,"31228":31229,"31229":31230,"31230":31231,"31231":31232,"31232":31233,"31233":31234,"31234":31235,"31235":31236,"31236":31237,"31237":31238,"31238":31239,"31239":31240,"31240":31241,"31241":31242,"31242":31243,"31243":31244,"31244":31245,"31245":31246,"31246":31247,"31247":31248,"31248":31249,"31249":31250,"31250":31251,"31251":31252,"31252":31253,"31253":31254,"31254":31255,"31255":31256,"31256":31257,"31257":31258,"31258":31259,"31259":31260,"31260":31261,"31261":31262,"31262":31263,"31263":31264,"31264":31265,"31265":31266,"31266":31267,"31267":31268,"31268":31269,"31269":31270,"31270":31271,"31271":31272,"31272":31273,"31273":31274,"31274":31275,"31275":31276,"31276":31277,"31277":31278,"31278":31279,"31279":31280,"31280":31281,"31281":31282,"31282":31283,"31283":31284,"31284":31285,"31285":31286,"31286":31287,"31287":31288,"31288":31289,"31289":31290,"31290":31291,"31291":31292,"31292":31293,"31293":31294,"31294":31295,"31295":31296,"31296":31297,"31297":31298,"31298":31299,"31299":31300,"31300":31301,"31301":31302,"31302":31303,"31303":31304,"31304":31305,"31305":31306,"31306":31307,"31307":31308,"31308":31309,"31309":31310,"31310":31311,"31311":31312,"31312":31313,"31313":31314,"31314":31315,"31315":31316,"31316":31317,"31317":31318,"31318":31319,"31319":31320,"31320":31321,"31321":31322,"31322":31323,"31323":31324,"31324":31325,"31325":31326,"31326":31327,"31327":31328,"31328":31329,"31329":31330,"31330":31331,"31331":31332,"31332":31333,"31333":31334,"31334":31335,"31335":31336,"31336":31337,"31337":31338,"31338":31339,"31339":31340,"31340":31341,"31341":31342,"31342":31343,"31343":31344,"31344":31345,"31345":31346,"31346":31347,"31347":31348,"31348":31349,"31349":31350,"31350":31351,"31351":31352,"31352":31353,"31353":31354,"31354":31355,"31355":31356,"31356":31357,"31357":31358,"31358":31359,"31359":31360,"31360":31361,"31361":31362,"31362":31363,"31363":31364,"31364":31365,"31365":31366,"31366":31367,"31367":31368,"31368":31369,"31369":31370,"31370":31371,"31371":31372,"31372":31373,"31373":31374,"31374":31375,"31375":31376,"31376":31377,"31377":31378,"31378":31379,"31379":31380,"31380":31381,"31381":31382,"31382":31383,"31383":31384,"31384":31385,"31385":31386,"31386":31387,"31387":31388,"31388":31389,"31389":31390,"31390":31391,"31391":31392,"31392":31393,"31393":31394,"31394":31395,"31395":31396,"31396":31397,"31397":31398,"31398":31399,"31399":31400,"31400":31401,"31401":31402,"31402":31403,"31403":31404,"31404":31405,"31405":31406,"31406":31407,"31407":31408,"31408":31409,"31409":31410,"31410":31411,"31411":31412,"31412":31413,"31413":31414,"31414":31415,"31415":31416,"31416":31417,"31417":31418,"31418":31419,"31419":31420,"31420":31421,"31421":31422,"31422":31423,"31423":31424,"31424":31425,"31425":31426,"31426":31427,"31427":31428,"31428":31429,"31429":31430,"31430":31431,"31431":31432,"31432":31433,"31433":31434,"31434":31435,"31435":31436,"31436":31437,"31437":31438,"31438":31439,"31439":31440,"31440":31441,"31441":31442,"31442":31443,"31443":31444,"31444":31445,"31445":31446,"31446":31447,"31447":31448,"31448":31449,"31449":31450,"31450":31451,"31451":31452,"31452":31453,"31453":31454,"31454":31455,"31455":31456,"31456":31457,"31457":31458,"31458":31459,"31459":31460,"31460":31461,"31461":31462,"31462":31463,"31463":31464,"31464":31465,"31465":31466,"31466":31467,"31467":31468,"31468":31469,"31469":31470,"31470":31471,"31471":31472,"31472":31473,"31473":31474,"31474":31475,"31475":31476,"31476":31477,"31477":31478,"31478":31479,"31479":31480,"31480":31481,"31481":31482,"31482":31483,"31483":31484,"31484":31485,"31485":31486,"31486":31487,"31487":31488,"31488":31489,"31489":31490,"31490":31491,"31491":31492,"31492":31493,"31493":31494,"31494":31495,"31495":31496,"31496":31497,"31497":31498,"31498":31499,"31499":31500,"31500":31501,"31501":31502,"31502":31503,"31503":31504,"31504":31505,"31505":31506,"31506":31507,"31507":31508,"31508":31509,"31509":31510,"31510":31511,"31511":31512,"31512":31513,"31513":31514,"31514":31515,"31515":31516,"31516":31517,"31517":31518,"31518":31519,"31519":31520,"31520":31521,"31521":31522,"31522":31523,"31523":31524,"31524":31525,"31525":31526,"31526":31527,"31527":31528,"31528":31529,"31529":31530,"31530":31531,"31531":31532,"31532":31533,"31533":31534,"31534":31535,"31535":31536,"31536":31537,"31537":31538,"31538":31539,"31539":31540,"31540":31541,"31541":31542,"31542":31543,"31543":31544,"31544":31545,"31545":31546,"31546":31547,"31547":31548,"31548":31549,"31549":31550,"31550":31551,"31551":31552,"31552":31553,"31553":31554,"31554":31555,"31555":31556,"31556":31557,"31557":31558,"31558":31559,"31559":31560,"31560":31561,"31561":31562,"31562":31563,"31563":31564,"31564":31565,"31565":31566,"31566":31567,"31567":31568,"31568":31569,"31569":31570,"31570":31571,"31571":31572,"31572":31573,"31573":31574,"31574":31575,"31575":31576,"31576":31577,"31577":31578,"31578":31579,"31579":31580,"31580":31581,"31581":31582,"31582":31583,"31583":31584,"31584":31585,"31585":31586,"31586":31587,"31587":31588,"31588":31589,"31589":31590,"31590":31591,"31591":31592,"31592":31593,"31593":31594,"31594":31595,"31595":31596,"31596":31597,"31597":31598,"31598":31599,"31599":31600,"31600":31601,"31601":31602,"31602":31603,"31603":31604,"31604":31605,"31605":31606,"31606":31607,"31607":31608,"31608":31609,"31609":31610,"31610":31611,"31611":31612,"31612":31613,"31613":31614,"31614":31615,"31615":31616,"31616":31617,"31617":31618,"31618":31619,"31619":31620,"31620":31621,"31621":31622,"31622":31623,"31623":31624,"31624":31625,"31625":31626,"31626":31627,"31627":31628,"31628":31629,"31629":31630,"31630":31631,"31631":31632,"31632":31633,"31633":31634,"31634":31635,"31635":31636,"31636":31637,"31637":31638,"31638":31639,"31639":31640,"31640":31641,"31641":31642,"31642":31643,"31643":31644,"31644":31645,"31645":31646,"31646":31647,"31647":31648,"31648":31649,"31649":31650,"31650":31651,"31651":31652,"31652":31653,"31653":31654,"31654":31655,"31655":31656,"31656":31657,"31657":31658,"31658":31659,"31659":31660,"31660":31661,"31661":31662,"31662":31663,"31663":31664,"31664":31665,"31665":31666,"31666":31667,"31667":31668,"31668":31669,"31669":31670,"31670":31671,"31671":31672,"31672":31673,"31673":31674,"31674":31675,"31675":31676,"31676":31677,"31677":31678,"31678":31679,"31679":31680,"31680":31681,"31681":31682,"31682":31683,"31683":31684,"31684":31685,"31685":31686,"31686":31687,"31687":31688,"31688":31689,"31689":31690,"31690":31691,"31691":31692,"31692":31693,"31693":31694,"31694":31695,"31695":31696,"31696":31697,"31697":31698,"31698":31699,"31699":31700,"31700":31701,"31701":31702,"31702":31703,"31703":31704,"31704":31705,"31705":31706,"31706":31707,"31707":31708,"31708":31709,"31709":31710,"31710":31711,"31711":31712,"31712":31713,"31713":31714,"31714":31715,"31715":31716,"31716":31717,"31717":31718,"31718":31719,"31719":31720,"31720":31721,"31721":31722,"31722":31723,"31723":31724,"31724":31725,"31725":31726,"31726":31727,"31727":31728,"31728":31729,"31729":31730,"31730":31731,"31731":31732,"31732":31733,"31733":31734,"31734":31735,"31735":31736,"31736":31737,"31737":31738,"31738":31739,"31739":31740,"31740":31741,"31741":31742,"31742":31743,"31743":31744,"31744":31745,"31745":31746,"31746":31747,"31747":31748,"31748":31749,"31749":31750,"31750":31751,"31751":31752,"31752":31753,"31753":31754,"31754":31755,"31755":31756,"31756":31757,"31757":31758,"31758":31759,"31759":31760,"31760":31761,"31761":31762,"31762":31763,"31763":31764,"31764":31765,"31765":31766,"31766":31767,"31767":31768,"31768":31769,"31769":31770,"31770":31771,"31771":31772,"31772":31773,"31773":31774,"31774":31775,"31775":31776,"31776":31777,"31777":31778,"31778":31779,"31779":31780,"31780":31781,"31781":31782,"31782":31783,"31783":31784,"31784":31785,"31785":31786,"31786":31787,"31787":31788,"31788":31789,"31789":31790,"31790":31791,"31791":31792,"31792":31793,"31793":31794,"31794":31795,"31795":31796,"31796":31797,"31797":31798,"31798":31799,"31799":31800,"31800":31801,"31801":31802,"31802":31803,"31803":31804,"31804":31805,"31805":31806,"31806":31807,"31807":31808,"31808":31809,"31809":31810,"31810":31811,"31811":31812,"31812":31813,"31813":31814,"31814":31815,"31815":31816,"31816":31817,"31817":31818,"31818":31819,"31819":31820,"31820":31821,"31821":31822,"31822":31823,"31823":31824,"31824":31825,"31825":31826,"31826":31827,"31827":31828,"31828":31829,"31829":31830,"31830":31831,"31831":31832,"31832":31833,"31833":31834,"31834":31835,"31835":31836,"31836":31837,"31837":31838,"31838":31839,"31839":31840,"31840":31841,"31841":31842,"31842":31843,"31843":31844,"31844":31845,"31845":31846,"31846":31847,"31847":31848,"31848":31849,"31849":31850,"31850":31851,"31851":31852,"31852":31853,"31853":31854,"31854":31855,"31855":31856,"31856":31857,"31857":31858,"31858":31859,"31859":31860,"31860":31861,"31861":31862,"31862":31863,"31863":31864,"31864":31865,"31865":31866,"31866":31867,"31867":31868,"31868":31869,"31869":31870,"31870":31871,"31871":31872,"31872":31873,"31873":31874,"31874":31875,"31875":31876,"31876":31877,"31877":31878,"31878":31879,"31879":31880,"31880":31881,"31881":31882,"31882":31883,"31883":31884,"31884":31885,"31885":31886,"31886":31887,"31887":31888,"31888":31889,"31889":31890,"31890":31891,"31891":31892,"31892":31893,"31893":31894,"31894":31895,"31895":31896,"31896":31897,"31897":31898,"31898":31899,"31899":31900,"31900":31901,"31901":31902,"31902":31903,"31903":31904,"31904":31905,"31905":31906,"31906":31907,"31907":31908,"31908":31909,"31909":31910,"31910":31911,"31911":31912,"31912":31913,"31913":31914,"31914":31915,"31915":31916,"31916":31917,"31917":31918,"31918":31919,"31919":31920,"31920":31921,"31921":31922,"31922":31923,"31923":31924,"31924":31925,"31925":31926,"31926":31927,"31927":31928,"31928":31929,"31929":31930,"31930":31931,"31931":31932,"31932":31933,"31933":31934,"31934":31935,"31935":31936,"31936":31937,"31937":31938,"31938":31939,"31939":31940,"31940":31941,"31941":31942,"31942":31943,"31943":31944,"31944":31945,"31945":31946,"31946":31947,"31947":31948,"31948":31949,"31949":31950,"31950":31951,"31951":31952,"31952":31953,"31953":31954,"31954":31955,"31955":31956,"31956":31957,"31957":31958,"31958":31959,"31959":31960,"31960":31961,"31961":31962,"31962":31963,"31963":31964,"31964":31965,"31965":31966,"31966":31967,"31967":31968,"31968":31969,"31969":31970,"31970":31971,"31971":31972,"31972":31973,"31973":31974,"31974":31975,"31975":31976,"31976":31977,"31977":31978,"31978":31979,"31979":31980,"31980":31981,"31981":31982,"31982":31983,"31983":31984,"31984":31985,"31985":31986,"31986":31987,"31987":31988,"31988":31989,"31989":31990,"31990":31991,"31991":31992,"31992":31993,"31993":31994,"31994":31995,"31995":31996,"31996":31997,"31997":31998,"31998":31999,"31999":32000,"32000":32001,"32001":32002,"32002":32003,"32003":32004,"32004":32005,"32005":32006,"32006":32007,"32007":32008,"32008":32009,"32009":32010,"32010":32011,"32011":32012,"32012":32013,"32013":32014,"32014":32015,"32015":32016,"32016":32017,"32017":32018,"32018":32019,"32019":32020,"32020":32021,"32021":32022,"32022":32023,"32023":32024,"32024":32025,"32025":32026,"32026":32027,"32027":32028,"32028":32029,"32029":32030,"32030":32031,"32031":32032,"32032":32033,"32033":32034,"32034":32035,"32035":32036,"32036":32037,"32037":32038,"32038":32039,"32039":32040,"32040":32041,"32041":32042,"32042":32043,"32043":32044,"32044":32045,"32045":32046,"32046":32047,"32047":32048,"32048":32049,"32049":32050,"32050":32051,"32051":32052,"32052":32053,"32053":32054,"32054":32055,"32055":32056,"32056":32057,"32057":32058,"32058":32059,"32059":32060,"32060":32061,"32061":32062,"32062":32063,"32063":32064,"32064":32065,"32065":32066,"32066":32067,"32067":32068,"32068":32069,"32069":32070,"32070":32071,"32071":32072,"32072":32073,"32073":32074,"32074":32075,"32075":32076,"32076":32077,"32077":32078,"32078":32079,"32079":32080,"32080":32081,"32081":32082,"32082":32083,"32083":32084,"32084":32085,"32085":32086,"32086":32087,"32087":32088,"32088":32089,"32089":32090,"32090":32091,"32091":32092,"32092":32093,"32093":32094,"32094":32095,"32095":32096,"32096":32097,"32097":32098,"32098":32099,"32099":32100,"32100":32101,"32101":32102,"32102":32103,"32103":32104,"32104":32105,"32105":32106,"32106":32107,"32107":32108,"32108":32109,"32109":32110,"32110":32111,"32111":32112,"32112":32113,"32113":32114,"32114":32115,"32115":32116,"32116":32117,"32117":32118,"32118":32119,"32119":32120,"32120":32121,"32121":32122,"32122":32123,"32123":32124,"32124":32125,"32125":32126,"32126":32127,"32127":32128,"32128":32129,"32129":32130,"32130":32131,"32131":32132,"32132":32133,"32133":32134,"32134":32135,"32135":32136,"32136":32137,"32137":32138,"32138":32139,"32139":32140,"32140":32141,"32141":32142,"32142":32143,"32143":32144,"32144":32145,"32145":32146,"32146":32147,"32147":32148,"32148":32149,"32149":32150,"32150":32151,"32151":32152,"32152":32153,"32153":32154,"32154":32155,"32155":32156,"32156":32157,"32157":32158,"32158":32159,"32159":32160,"32160":32161,"32161":32162,"32162":32163,"32163":32164,"32164":32165,"32165":32166,"32166":32167,"32167":32168,"32168":32169,"32169":32170,"32170":32171,"32171":32172,"32172":32173,"32173":32174,"32174":32175,"32175":32176,"32176":32177,"32177":32178,"32178":32179,"32179":32180,"32180":32181,"32181":32182,"32182":32183,"32183":32184,"32184":32185,"32185":32186,"32186":32187,"32187":32188,"32188":32189,"32189":32190,"32190":32191,"32191":32192,"32192":32193,"32193":32194,"32194":32195,"32195":32196,"32196":32197,"32197":32198,"32198":32199,"32199":32200,"32200":32201,"32201":32202,"32202":32203,"32203":32204,"32204":32205,"32205":32206,"32206":32207,"32207":32208,"32208":32209,"32209":32210,"32210":32211,"32211":32212,"32212":32213,"32213":32214,"32214":32215,"32215":32216,"32216":32217,"32217":32218,"32218":32219,"32219":32220,"32220":32221,"32221":32222,"32222":32223,"32223":32224,"32224":32225,"32225":32226,"32226":32227,"32227":32228,"32228":32229,"32229":32230,"32230":32231,"32231":32232,"32232":32233,"32233":32234,"32234":32235,"32235":32236,"32236":32237,"32237":32238,"32238":32239,"32239":32240,"32240":32241,"32241":32242,"32242":32243,"32243":32244,"32244":32245,"32245":32246,"32246":32247,"32247":32248,"32248":32249,"32249":32250,"32250":32251,"32251":32252,"32252":32253,"32253":32254,"32254":32255,"32255":32256,"32256":32257,"32257":32258,"32258":32259,"32259":32260,"32260":32261,"32261":32262,"32262":32263,"32263":32264,"32264":32265,"32265":32266,"32266":32267,"32267":32268,"32268":32269,"32269":32270,"32270":32271,"32271":32272,"32272":32273,"32273":32274,"32274":32275,"32275":32276,"32276":32277,"32277":32278,"32278":32279,"32279":32280,"32280":32281,"32281":32282,"32282":32283,"32283":32284,"32284":32285,"32285":32286,"32286":32287,"32287":32288,"32288":32289,"32289":32290,"32290":32291,"32291":32292,"32292":32293,"32293":32294,"32294":32295,"32295":32296,"32296":32297,"32297":32298,"32298":32299,"32299":32300,"32300":32301,"32301":32302,"32302":32303,"32303":32304,"32304":32305,"32305":32306,"32306":32307,"32307":32308,"32308":32309,"32309":32310,"32310":32311,"32311":32312,"32312":32313,"32313":32314,"32314":32315,"32315":32316,"32316":32317,"32317":32318,"32318":32319,"32319":32320,"32320":32321,"32321":32322,"32322":32323,"32323":32324,"32324":32325,"32325":32326,"32326":32327,"32327":32328,"32328":32329,"32329":32330,"32330":32331,"32331":32332,"32332":32333,"32333":32334,"32334":32335,"32335":32336,"32336":32337,"32337":32338,"32338":32339,"32339":32340,"32340":32341,"32341":32342,"32342":32343,"32343":32344,"32344":32345,"32345":32346,"32346":32347,"32347":32348,"32348":32349,"32349":32350,"32350":32351,"32351":32352,"32352":32353,"32353":32354,"32354":32355,"32355":32356,"32356":32357,"32357":32358,"32358":32359,"32359":32360,"32360":32361,"32361":32362,"32362":32363,"32363":32364,"32364":32365,"32365":32366,"32366":32367,"32367":32368,"32368":32369,"32369":32370,"32370":32371,"32371":32372,"32372":32373,"32373":32374,"32374":32375,"32375":32376,"32376":32377,"32377":32378,"32378":32379,"32379":32380,"32380":32381,"32381":32382,"32382":32383,"32383":32384,"32384":32385,"32385":32386,"32386":32387,"32387":32388,"32388":32389,"32389":32390,"32390":32391,"32391":32392,"32392":32393,"32393":32394,"32394":32395,"32395":32396,"32396":32397,"32397":32398,"32398":32399,"32399":32400,"32400":32401,"32401":32402,"32402":32403,"32403":32404,"32404":32405,"32405":32406,"32406":32407,"32407":32408,"32408":32409,"32409":32410,"32410":32411,"32411":32412,"32412":32413,"32413":32414,"32414":32415,"32415":32416,"32416":32417,"32417":32418,"32418":32419,"32419":32420,"32420":32421,"32421":32422,"32422":32423,"32423":32424,"32424":32425,"32425":32426,"32426":32427,"32427":32428,"32428":32429,"32429":32430,"32430":32431,"32431":32432,"32432":32433,"32433":32434,"32434":32435,"32435":32436,"32436":32437,"32437":32438,"32438":32439,"32439":32440,"32440":32441,"32441":32442,"32442":32443,"32443":32444,"32444":32445,"32445":32446,"32446":32447,"32447":32448,"32448":32449,"32449":32450,"32450":32451,"32451":32452,"32452":32453,"32453":32454,"32454":32455,"32455":32456,"32456":32457,"32457":32458,"32458":32459,"32459":32460,"32460":32461,"32461":32462,"32462":32463,"32463":32464,"32464":32465,"32465":32466,"32466":32467,"32467":32468,"32468":32469,"32469":32470,"32470":32471,"32471":32472,"32472":32473,"32473":32474,"32474":32475,"32475":32476,"32476":32477,"32477":32478,"32478":32479,"32479":32480,"32480":32481,"32481":32482,"32482":32483,"32483":32484,"32484":32485,"32485":32486,"32486":32487,"32487":32488,"32488":32489,"32489":32490,"32490":32491,"32491":32492,"32492":32493,"32493":32494,"32494":32495,"32495":32496,"32496":32497,"32497":32498,"32498":32499,"32499":32500,"32500":32501,"32501":32502,"32502":32503,"32503":32504,"32504":32505,"32505":32506,"32506":32507,"32507":32508,"32508":32509,"32509":32510,"32510":32511,"32511":32512,"32512":32513,"32513":32514,"32514":32515,"32515":32516,"32516":32517,"32517":32518,"32518":32519,"32519":32520,"32520":32521,"32521":32522,"32522":32523,"32523":32524,"32524":32525,"32525":32526,"32526":32527,"32527":32528,"32528":32529,"32529":32530,"32530":32531,"32531":32532,"32532":32533,"32533":32534,"32534":32535,"32535":32536,"32536":32537,"32537":32538,"32538":32539,"32539":32540,"32540":32541,"32541":32542,"32542":32543,"32543":32544,"32544":32545,"32545":32546,"32546":32547,"32547":32548,"32548":32549,"32549":32550,"32550":32551,"32551":32552,"32552":32553,"32553":32554,"32554":32555,"32555":32556,"32556":32557,"32557":32558,"32558":32559,"32559":32560,"32560":32561,"32561":32562,"32562":32563,"32563":32564,"32564":32565,"32565":32566,"32566":32567,"32567":32568,"32568":32569,"32569":32570,"32570":32571,"32571":32572,"32572":32573,"32573":32574,"32574":32575,"32575":32576,"32576":32577,"32577":32578,"32578":32579,"32579":32580,"32580":32581,"32581":32582,"32582":32583,"32583":32584,"32584":32585,"32585":32586,"32586":32587,"32587":32588,"32588":32589,"32589":32590,"32590":32591,"32591":32592,"32592":32593,"32593":32594,"32594":32595,"32595":32596,"32596":32597,"32597":32598,"32598":32599,"32599":32600,"32600":32601,"32601":32602,"32602":32603,"32603":32604,"32604":32605,"32605":32606,"32606":32607,"32607":32608,"32608":32609,"32609":32610,"32610":32611,"32611":32612,"32612":32613,"32613":32614,"32614":32615,"32615":32616,"32616":32617,"32617":32618,"32618":32619,"32619":32620,"32620":32621,"32621":32622,"32622":32623,"32623":32624,"32624":32625,"32625":32626,"32626":32627,"32627":32628,"32628":32629,"32629":32630,"32630":32631,"32631":32632,"32632":32633,"32633":32634,"32634":32635,"32635":32636,"32636":32637,"32637":32638,"32638":32639,"32639":32640,"32640":32641,"32641":32642,"32642":32643,"32643":32644,"32644":32645,"32645":32646,"32646":32647,"32647":32648,"32648":32649,"32649":32650,"32650":32651,"32651":32652,"32652":32653,"32653":32654,"32654":32655,"32655":32656,"32656":32657,"32657":32658,"32658":32659,"32659":32660,"32660":32661,"32661":32662,"32662":32663,"32663":32664,"32664":32665,"32665":32666,"32666":32667,"32667":32668,"32668":32669,"32669":32670,"32670":32671,"32671":32672,"32672":32673,"32673":32674,"32674":32675,"32675":32676,"32676":32677,"32677":32678,"32678":32679,"32679":32680,"32680":32681,"32681":32682,"32682":32683,"32683":32684,"32684":32685,"32685":32686,"32686":32687,"32687":32688,"32688":32689,"32689":32690,"32690":32691,"32691":32692,"32692":32693,"32693":32694,"32694":32695,"32695":32696,"32696":32697,"32697":32698,"32698":32699,"32699":32700,"32700":32701,"32701":32702,"32702":32703,"32703":32704,"32704":32705,"32705":32706,"32706":32707,"32707":32708,"32708":32709,"32709":32710,"32710":32711,"32711":32712,"32712":32713,"32713":32714,"32714":32715,"32715":32716,"32716":32717,"32717":32718,"32718":32719,"32719":32720,"32720":32721,"32721":32722,"32722":32723,"32723":32724,"32724":32725,"32725":32726,"32726":32727,"32727":32728,"32728":32729,"32729":32730,"32730":32731,"32731":32732,"32732":32733,"32733":32734,"32734":32735,"32735":32736,"32736":32737,"32737":32738,"32738":32739,"32739":32740,"32740":32741,"32741":32742,"32742":32743,"32743":32744,"32744":32745,"32745":32746,"32746":32747,"32747":32748,"32748":32749,"32749":32750,"32750":32751,"32751":32752,"32752":32753,"32753":32754,"32754":32755,"32755":32756,"32756":32757,"32757":32758,"32758":32759,"32759":32760,"32760":32761,"32761":32762,"32762":32763,"32763":32764,"32764":32765,"32765":32766,"32766":32767,"32767":32768,"32768":32769,"32769":32770,"32770":32771,"32771":32772,"32772":32773,"32773":32774,"32774":32775,"32775":32776,"32776":32777,"32777":32778,"32778":32779,"32779":32780,"32780":32781,"32781":32782,"32782":32783,"32783":32784,"32784":32785,"32785":32786,"32786":32787,"32787":32788,"32788":32789,"32789":32790,"32790":32791,"32791":32792,"32792":32793,"32793":32794,"32794":32795,"32795":32796,"32796":32797,"32797":32798,"32798":32799,"32799":32800,"32800":32801,"32801":32802,"32802":32803,"32803":32804,"32804":32805,"32805":32806,"32806":32807,"32807":32808,"32808":32809,"32809":32810,"32810":32811,"32811":32812,"32812":32813,"32813":32814,"32814":32815,"32815":32816,"32816":32817,"32817":32818,"32818":32819,"32819":32820,"32820":32821,"32821":32822,"32822":32823,"32823":32824,"32824":32825,"32825":32826,"32826":32827,"32827":32828,"32828":32829,"32829":32830,"32830":32831,"32831":32832,"32832":32833,"32833":32834,"32834":32835,"32835":32836,"32836":32837,"32837":32838,"32838":32839,"32839":32840,"32840":32841,"32841":32842,"32842":32843,"32843":32844,"32844":32845,"32845":32846,"32846":32847,"32847":32848,"32848":32849,"32849":32850,"32850":32851,"32851":32852,"32852":32853,"32853":32854,"32854":32855,"32855":32856,"32856":32857,"32857":32858,"32858":32859,"32859":32860,"32860":32861,"32861":32862,"32862":32863,"32863":32864,"32864":32865,"32865":32866,"32866":32867,"32867":32868,"32868":32869,"32869":32870,"32870":32871,"32871":32872,"32872":32873,"32873":32874,"32874":32875,"32875":32876,"32876":32877,"32877":32878,"32878":32879,"32879":32880,"32880":32881,"32881":32882,"32882":32883,"32883":32884,"32884":32885,"32885":32886,"32886":32887,"32887":32888,"32888":32889,"32889":32890,"32890":32891,"32891":32892,"32892":32893,"32893":32894,"32894":32895,"32895":32896,"32896":32897,"32897":32898,"32898":32899,"32899":32900,"32900":32901,"32901":32902,"32902":32903,"32903":32904,"32904":32905,"32905":32906,"32906":32907,"32907":32908,"32908":32909,"32909":32910,"32910":32911,"32911":32912,"32912":32913,"32913":32914,"32914":32915,"32915":32916,"32916":32917,"32917":32918,"32918":32919,"32919":32920,"32920":32921,"32921":32922,"32922":32923,"32923":32924,"32924":32925,"32925":32926,"32926":32927,"32927":32928,"32928":32929,"32929":32930,"32930":32931,"32931":32932,"32932":32933,"32933":32934,"32934":32935,"32935":32936,"32936":32937,"32937":32938,"32938":32939,"32939":32940,"32940":32941,"32941":32942,"32942":32943,"32943":32944,"32944":32945,"32945":32946,"32946":32947,"32947":32948,"32948":32949,"32949":32950,"32950":32951,"32951":32952,"32952":32953,"32953":32954,"32954":32955,"32955":32956,"32956":32957,"32957":32958,"32958":32959,"32959":32960,"32960":32961,"32961":32962,"32962":32963,"32963":32964,"32964":32965,"32965":32966,"32966":32967,"32967":32968,"32968":32969,"32969":32970,"32970":32971,"32971":32972,"32972":32973,"32973":32974,"32974":32975,"32975":32976,"32976":32977,"32977":32978,"32978":32979,"32979":32980,"32980":32981,"32981":32982,"32982":32983,"32983":32984,"32984":32985,"32985":32986,"32986":32987,"32987":32988,"32988":32989,"32989":32990,"32990":32991,"32991":32992,"32992":32993,"32993":32994,"32994":32995,"32995":32996,"32996":32997,"32997":32998,"32998":32999,"32999":33000,"33000":33001,"33001":33002,"33002":33003,"33003":33004,"33004":33005,"33005":33006,"33006":33007,"33007":33008,"33008":33009,"33009":33010,"33010":33011,"33011":33012,"33012":33013,"33013":33014,"33014":33015,"33015":33016,"33016":33017,"33017":33018,"33018":33019,"33019":33020,"33020":33021,"33021":33022,"33022":33023,"33023":33024,"33024":33025,"33025":33026,"33026":33027,"33027":33028,"33028":33029,"33029":33030,"33030":33031,"33031":33032,"33032":33033,"33033":33034,"33034":33035,"33035":33036,"33036":33037,"33037":33038,"33038":33039,"33039":33040,"33040":33041,"33041":33042,"33042":33043,"33043":33044,"33044":33045,"33045":33046,"33046":33047,"33047":33048,"33048":33049,"33049":33050,"33050":33051,"33051":33052,"33052":33053,"33053":33054,"33054":33055,"33055":33056,"33056":33057,"33057":33058,"33058":33059,"33059":33060,"33060":33061,"33061":33062,"33062":33063,"33063":33064,"33064":33065,"33065":33066,"33066":33067,"33067":33068,"33068":33069,"33069":33070,"33070":33071,"33071":33072,"33072":33073,"33073":33074,"33074":33075,"33075":33076,"33076":33077,"33077":33078,"33078":33079,"33079":33080,"33080":33081,"33081":33082,"33082":33083,"33083":33084,"33084":33085,"33085":33086,"33086":33087,"33087":33088,"33088":33089,"33089":33090,"33090":33091,"33091":33092,"33092":33093,"33093":33094,"33094":33095,"33095":33096,"33096":33097,"33097":33098,"33098":33099,"33099":33100,"33100":33101,"33101":33102,"33102":33103,"33103":33104,"33104":33105,"33105":33106,"33106":33107,"33107":33108,"33108":33109,"33109":33110,"33110":33111,"33111":33112,"33112":33113,"33113":33114,"33114":33115,"33115":33116,"33116":33117,"33117":33118,"33118":33119,"33119":33120,"33120":33121,"33121":33122,"33122":33123,"33123":33124,"33124":33125,"33125":33126,"33126":33127,"33127":33128,"33128":33129,"33129":33130,"33130":33131,"33131":33132,"33132":33133,"33133":33134,"33134":33135,"33135":33136,"33136":33137,"33137":33138,"33138":33139,"33139":33140,"33140":33141,"33141":33142,"33142":33143,"33143":33144,"33144":33145,"33145":33146,"33146":33147,"33147":33148,"33148":33149,"33149":33150,"33150":33151,"33151":33152,"33152":33153,"33153":33154,"33154":33155,"33155":33156,"33156":33157,"33157":33158,"33158":33159,"33159":33160,"33160":33161,"33161":33162,"33162":33163,"33163":33164,"33164":33165,"33165":33166,"33166":33167,"33167":33168,"33168":33169,"33169":33170,"33170":33171,"33171":33172,"33172":33173,"33173":33174,"33174":33175,"33175":33176,"33176":33177,"33177":33178,"33178":33179,"33179":33180,"33180":33181,"33181":33182,"33182":33183,"33183":33184,"33184":33185,"33185":33186,"33186":33187,"33187":33188,"33188":33189,"33189":33190,"33190":33191,"33191":33192,"33192":33193,"33193":33194,"33194":33195,"33195":33196,"33196":33197,"33197":33198,"33198":33199,"33199":33200,"33200":33201,"33201":33202,"33202":33203,"33203":33204,"33204":33205,"33205":33206,"33206":33207,"33207":33208,"33208":33209,"33209":33210,"33210":33211,"33211":33212,"33212":33213,"33213":33214,"33214":33215,"33215":33216,"33216":33217,"33217":33218,"33218":33219,"33219":33220,"33220":33221,"33221":33222,"33222":33223,"33223":33224,"33224":33225,"33225":33226,"33226":33227,"33227":33228,"33228":33229,"33229":33230,"33230":33231,"33231":33232,"33232":33233,"33233":33234,"33234":33235,"33235":33236,"33236":33237,"33237":33238,"33238":33239,"33239":33240,"33240":33241,"33241":33242,"33242":33243,"33243":33244,"33244":33245,"33245":33246,"33246":33247,"33247":33248,"33248":33249,"33249":33250,"33250":33251,"33251":33252,"33252":33253,"33253":33254,"33254":33255,"33255":33256,"33256":33257,"33257":33258,"33258":33259,"33259":33260,"33260":33261,"33261":33262,"33262":33263,"33263":33264,"33264":33265,"33265":33266,"33266":33267,"33267":33268,"33268":33269,"33269":33270,"33270":33271,"33271":33272,"33272":33273,"33273":33274,"33274":33275,"33275":33276,"33276":33277,"33277":33278,"33278":33279,"33279":33280,"33280":33281,"33281":33282,"33282":33283,"33283":33284,"33284":33285,"33285":33286,"33286":33287,"33287":33288,"33288":33289,"33289":33290,"33290":33291,"33291":33292,"33292":33293,"33293":33294,"33294":33295,"33295":33296,"33296":33297,"33297":33298,"33298":33299,"33299":33300,"33300":33301,"33301":33302,"33302":33303,"33303":33304,"33304":33305,"33305":33306,"33306":33307,"33307":33308,"33308":33309,"33309":33310,"33310":33311,"33311":33312,"33312":33313,"33313":33314,"33314":33315,"33315":33316,"33316":33317,"33317":33318,"33318":33319,"33319":33320,"33320":33321,"33321":33322,"33322":33323,"33323":33324,"33324":33325,"33325":33326,"33326":33327,"33327":33328,"33328":33329,"33329":33330,"33330":33331,"33331":33332,"33332":33333,"33333":33334,"33334":33335,"33335":33336,"33336":33337,"33337":33338,"33338":33339,"33339":33340,"33340":33341,"33341":33342,"33342":33343,"33343":33344,"33344":33345,"33345":33346,"33346":33347,"33347":33348,"33348":33349,"33349":33350,"33350":33351,"33351":33352,"33352":33353,"33353":33354,"33354":33355,"33355":33356,"33356":33357,"33357":33358,"33358":33359,"33359":33360,"33360":33361,"33361":33362,"33362":33363,"33363":33364,"33364":33365,"33365":33366,"33366":33367,"33367":33368,"33368":33369,"33369":33370,"33370":33371,"33371":33372,"33372":33373,"33373":33374,"33374":33375,"33375":33376,"33376":33377,"33377":33378,"33378":33379,"33379":33380,"33380":33381,"33381":33382,"33382":33383,"33383":33384,"33384":33385,"33385":33386,"33386":33387,"33387":33388,"33388":33389,"33389":33390,"33390":33391,"33391":33392,"33392":33393,"33393":33394,"33394":33395,"33395":33396,"33396":33397,"33397":33398,"33398":33399,"33399":33400,"33400":33401,"33401":33402,"33402":33403,"33403":33404,"33404":33405,"33405":33406,"33406":33407,"33407":33408,"33408":33409,"33409":33410,"33410":33411,"33411":33412,"33412":33413,"33413":33414,"33414":33415,"33415":33416,"33416":33417,"33417":33418,"33418":33419,"33419":33420,"33420":33421,"33421":33422,"33422":33423,"33423":33424,"33424":33425,"33425":33426,"33426":33427,"33427":33428,"33428":33429,"33429":33430,"33430":33431,"33431":33432,"33432":33433,"33433":33434,"33434":33435,"33435":33436,"33436":33437,"33437":33438,"33438":33439,"33439":33440,"33440":33441,"33441":33442,"33442":33443,"33443":33444,"33444":33445,"33445":33446,"33446":33447,"33447":33448,"33448":33449,"33449":33450,"33450":33451,"33451":33452,"33452":33453,"33453":33454,"33454":33455,"33455":33456,"33456":33457,"33457":33458,"33458":33459,"33459":33460,"33460":33461,"33461":33462,"33462":33463,"33463":33464,"33464":33465,"33465":33466,"33466":33467,"33467":33468,"33468":33469,"33469":33470,"33470":33471,"33471":33472,"33472":33473,"33473":33474,"33474":33475,"33475":33476,"33476":33477,"33477":33478,"33478":33479,"33479":33480,"33480":33481,"33481":33482,"33482":33483,"33483":33484,"33484":33485,"33485":33486,"33486":33487,"33487":33488,"33488":33489,"33489":33490,"33490":33491,"33491":33492,"33492":33493,"33493":33494,"33494":33495,"33495":33496,"33496":33497,"33497":33498,"33498":33499,"33499":33500,"33500":33501,"33501":33502,"33502":33503,"33503":33504,"33504":33505,"33505":33506,"33506":33507,"33507":33508,"33508":33509,"33509":33510,"33510":33511,"33511":33512,"33512":33513,"33513":33514,"33514":33515,"33515":33516,"33516":33517,"33517":33518,"33518":33519,"33519":33520,"33520":33521,"33521":33522,"33522":33523,"33523":33524,"33524":33525,"33525":33526,"33526":33527,"33527":33528,"33528":33529,"33529":33530,"33530":33531,"33531":33532,"33532":33533,"33533":33534,"33534":33535,"33535":33536,"33536":33537,"33537":33538,"33538":33539,"33539":33540,"33540":33541,"33541":33542,"33542":33543,"33543":33544,"33544":33545,"33545":33546,"33546":33547,"33547":33548,"33548":33549,"33549":33550,"33550":33551,"33551":33552,"33552":33553,"33553":33554,"33554":33555,"33555":33556,"33556":33557,"33557":33558,"33558":33559,"33559":33560,"33560":33561,"33561":33562,"33562":33563,"33563":33564,"33564":33565,"33565":33566,"33566":33567,"33567":33568,"33568":33569,"33569":33570,"33570":33571,"33571":33572,"33572":33573,"33573":33574,"33574":33575,"33575":33576,"33576":33577,"33577":33578,"33578":33579,"33579":33580,"33580":33581,"33581":33582,"33582":33583,"33583":33584,"33584":33585,"33585":33586,"33586":33587,"33587":33588,"33588":33589,"33589":33590,"33590":33591,"33591":33592,"33592":33593,"33593":33594,"33594":33595,"33595":33596,"33596":33597,"33597":33598,"33598":33599,"33599":33600,"33600":33601,"33601":33602,"33602":33603,"33603":33604,"33604":33605,"33605":33606,"33606":33607,"33607":33608,"33608":33609,"33609":33610,"33610":33611,"33611":33612,"33612":33613,"33613":33614,"33614":33615,"33615":33616,"33616":33617,"33617":33618,"33618":33619,"33619":33620,"33620":33621,"33621":33622,"33622":33623,"33623":33624,"33624":33625,"33625":33626,"33626":33627,"33627":33628,"33628":33629,"33629":33630,"33630":33631,"33631":33632,"33632":33633,"33633":33634,"33634":33635,"33635":33636,"33636":33637,"33637":33638,"33638":33639,"33639":33640,"33640":33641,"33641":33642,"33642":33643,"33643":33644,"33644":33645,"33645":33646,"33646":33647,"33647":33648,"33648":33649,"33649":33650,"33650":33651,"33651":33652,"33652":33653,"33653":33654,"33654":33655,"33655":33656,"33656":33657,"33657":33658,"33658":33659,"33659":33660,"33660":33661,"33661":33662,"33662":33663,"33663":33664,"33664":33665,"33665":33666,"33666":33667,"33667":33668,"33668":33669,"33669":33670,"33670":33671,"33671":33672,"33672":33673,"33673":33674,"33674":33675,"33675":33676,"33676":33677,"33677":33678,"33678":33679,"33679":33680,"33680":33681,"33681":33682,"33682":33683,"33683":33684,"33684":33685,"33685":33686,"33686":33687,"33687":33688,"33688":33689,"33689":33690,"33690":33691,"33691":33692,"33692":33693,"33693":33694,"33694":33695,"33695":33696,"33696":33697,"33697":33698,"33698":33699,"33699":33700,"33700":33701,"33701":33702,"33702":33703,"33703":33704,"33704":33705,"33705":33706,"33706":33707,"33707":33708,"33708":33709,"33709":33710,"33710":33711,"33711":33712,"33712":33713,"33713":33714,"33714":33715,"33715":33716,"33716":33717,"33717":33718,"33718":33719,"33719":33720,"33720":33721,"33721":33722,"33722":33723,"33723":33724,"33724":33725,"33725":33726,"33726":33727,"33727":33728,"33728":33729,"33729":33730,"33730":33731,"33731":33732,"33732":33733,"33733":33734,"33734":33735,"33735":33736,"33736":33737,"33737":33738,"33738":33739,"33739":33740,"33740":33741,"33741":33742,"33742":33743,"33743":33744,"33744":33745,"33745":33746,"33746":33747,"33747":33748,"33748":33749,"33749":33750,"33750":33751,"33751":33752,"33752":33753,"33753":33754,"33754":33755,"33755":33756,"33756":33757,"33757":33758,"33758":33759,"33759":33760,"33760":33761,"33761":33762,"33762":33763,"33763":33764,"33764":33765,"33765":33766,"33766":33767,"33767":33768,"33768":33769,"33769":33770,"33770":33771,"33771":33772,"33772":33773,"33773":33774,"33774":33775,"33775":33776,"33776":33777,"33777":33778,"33778":33779,"33779":33780,"33780":33781,"33781":33782,"33782":33783,"33783":33784,"33784":33785,"33785":33786,"33786":33787,"33787":33788,"33788":33789,"33789":33790,"33790":33791,"33791":33792,"33792":33793,"33793":33794,"33794":33795,"33795":33796,"33796":33797,"33797":33798,"33798":33799,"33799":33800,"33800":33801,"33801":33802,"33802":33803,"33803":33804,"33804":33805,"33805":33806,"33806":33807,"33807":33808,"33808":33809,"33809":33810,"33810":33811,"33811":33812,"33812":33813,"33813":33814,"33814":33815,"33815":33816,"33816":33817,"33817":33818,"33818":33819,"33819":33820,"33820":33821,"33821":33822,"33822":33823,"33823":33824,"33824":33825,"33825":33826,"33826":33827,"33827":33828,"33828":33829,"33829":33830,"33830":33831,"33831":33832,"33832":33833,"33833":33834,"33834":33835,"33835":33836,"33836":33837,"33837":33838,"33838":33839,"33839":33840,"33840":33841,"33841":33842,"33842":33843,"33843":33844,"33844":33845,"33845":33846,"33846":33847,"33847":33848,"33848":33849,"33849":33850,"33850":33851,"33851":33852,"33852":33853,"33853":33854,"33854":33855,"33855":33856,"33856":33857,"33857":33858,"33858":33859,"33859":33860,"33860":33861,"33861":33862,"33862":33863,"33863":33864,"33864":33865,"33865":33866,"33866":33867,"33867":33868,"33868":33869,"33869":33870,"33870":33871,"33871":33872,"33872":33873,"33873":33874,"33874":33875,"33875":33876,"33876":33877,"33877":33878,"33878":33879,"33879":33880,"33880":33881,"33881":33882,"33882":33883,"33883":33884,"33884":33885,"33885":33886,"33886":33887,"33887":33888,"33888":33889,"33889":33890,"33890":33891,"33891":33892,"33892":33893,"33893":33894,"33894":33895,"33895":33896,"33896":33897,"33897":33898,"33898":33899,"33899":33900,"33900":33901,"33901":33902,"33902":33903,"33903":33904,"33904":33905,"33905":33906,"33906":33907,"33907":33908,"33908":33909,"33909":33910,"33910":33911,"33911":33912,"33912":33913,"33913":33914,"33914":33915,"33915":33916,"33916":33917,"33917":33918,"33918":33919,"33919":33920,"33920":33921,"33921":33922,"33922":33923,"33923":33924,"33924":33925,"33925":33926,"33926":33927,"33927":33928,"33928":33929,"33929":33930,"33930":33931,"33931":33932,"33932":33933,"33933":33934,"33934":33935,"33935":33936,"33936":33937,"33937":33938,"33938":33939,"33939":33940,"33940":33941,"33941":33942,"33942":33943,"33943":33944,"33944":33945,"33945":33946,"33946":33947,"33947":33948,"33948":33949,"33949":33950,"33950":33951,"33951":33952,"33952":33953,"33953":33954,"33954":33955,"33955":33956,"33956":33957,"33957":33958,"33958":33959,"33959":33960,"33960":33961,"33961":33962,"33962":33963,"33963":33964,"33964":33965,"33965":33966,"33966":33967,"33967":33968,"33968":33969,"33969":33970,"33970":33971,"33971":33972,"33972":33973,"33973":33974,"33974":33975,"33975":33976,"33976":33977,"33977":33978,"33978":33979,"33979":33980,"33980":33981,"33981":33982,"33982":33983,"33983":33984,"33984":33985,"33985":33986,"33986":33987,"33987":33988,"33988":33989,"33989":33990,"33990":33991,"33991":33992,"33992":33993,"33993":33994,"33994":33995,"33995":33996,"33996":33997,"33997":33998,"33998":33999,"33999":34000,"34000":34001,"34001":34002,"34002":34003,"34003":34004,"34004":34005,"34005":34006,"34006":34007,"34007":34008,"34008":34009,"34009":34010,"34010":34011,"34011":34012,"34012":34013,"34013":34014,"34014":34015,"34015":34016,"34016":34017,"34017":34018,"34018":34019,"34019":34020,"34020":34021,"34021":34022,"34022":34023,"34023":34024,"34024":34025,"34025":34026,"34026":34027,"34027":34028,"34028":34029,"34029":34030,"34030":34031,"34031":34032,"34032":34033,"34033":34034,"34034":34035,"34035":34036,"34036":34037,"34037":34038,"34038":34039,"34039":34040,"34040":34041,"34041":34042,"34042":34043,"34043":34044,"34044":34045,"34045":34046,"34046":34047,"34047":34048,"34048":34049,"34049":34050,"34050":34051,"34051":34052,"34052":34053,"34053":34054,"34054":34055,"34055":34056,"34056":34057,"34057":34058,"34058":34059,"34059":34060,"34060":34061,"34061":34062,"34062":34063,"34063":34064,"34064":34065,"34065":34066,"34066":34067,"34067":34068,"34068":34069,"34069":34070,"34070":34071,"34071":34072,"34072":34073,"34073":34074,"34074":34075,"34075":34076,"34076":34077,"34077":34078,"34078":34079,"34079":34080,"34080":34081,"34081":34082,"34082":34083,"34083":34084,"34084":34085,"34085":34086,"34086":34087,"34087":34088,"34088":34089,"34089":34090,"34090":34091,"34091":34092,"34092":34093,"34093":34094,"34094":34095,"34095":34096,"34096":34097,"34097":34098,"34098":34099,"34099":34100,"34100":34101,"34101":34102,"34102":34103,"34103":34104,"34104":34105,"34105":34106,"34106":34107,"34107":34108,"34108":34109,"34109":34110,"34110":34111,"34111":34112,"34112":34113,"34113":34114,"34114":34115,"34115":34116,"34116":34117,"34117":34118,"34118":34119,"34119":34120,"34120":34121,"34121":34122,"34122":34123,"34123":34124,"34124":34125,"34125":34126,"34126":34127,"34127":34128,"34128":34129,"34129":34130,"34130":34131,"34131":34132,"34132":34133,"34133":34134,"34134":34135,"34135":34136,"34136":34137,"34137":34138,"34138":34139,"34139":34140,"34140":34141,"34141":34142,"34142":34143,"34143":34144,"34144":34145,"34145":34146,"34146":34147,"34147":34148,"34148":34149,"34149":34150,"34150":34151,"34151":34152,"34152":34153,"34153":34154,"34154":34155,"34155":34156,"34156":34157,"34157":34158,"34158":34159,"34159":34160,"34160":34161,"34161":34162,"34162":34163,"34163":34164,"34164":34165,"34165":34166,"34166":34167,"34167":34168,"34168":34169,"34169":34170,"34170":34171,"34171":34172,"34172":34173,"34173":34174,"34174":34175,"34175":34176,"34176":34177,"34177":34178,"34178":34179,"34179":34180,"34180":34181,"34181":34182,"34182":34183,"34183":34184,"34184":34185,"34185":34186,"34186":34187,"34187":34188,"34188":34189,"34189":34190,"34190":34191,"34191":34192,"34192":34193,"34193":34194,"34194":34195,"34195":34196,"34196":34197,"34197":34198,"34198":34199,"34199":34200,"34200":34201,"34201":34202,"34202":34203,"34203":34204,"34204":34205,"34205":34206,"34206":34207,"34207":34208,"34208":34209,"34209":34210,"34210":34211,"34211":34212,"34212":34213,"34213":34214,"34214":34215,"34215":34216,"34216":34217,"34217":34218,"34218":34219,"34219":34220,"34220":34221,"34221":34222,"34222":34223,"34223":34224,"34224":34225,"34225":34226,"34226":34227,"34227":34228,"34228":34229,"34229":34230,"34230":34231,"34231":34232,"34232":34233,"34233":34234,"34234":34235,"34235":34236,"34236":34237,"34237":34238,"34238":34239,"34239":34240,"34240":34241,"34241":34242,"34242":34243,"34243":34244,"34244":34245,"34245":34246,"34246":34247,"34247":34248,"34248":34249,"34249":34250,"34250":34251,"34251":34252,"34252":34253,"34253":34254,"34254":34255,"34255":34256,"34256":34257,"34257":34258,"34258":34259,"34259":34260,"34260":34261,"34261":34262,"34262":34263,"34263":34264,"34264":34265,"34265":34266,"34266":34267,"34267":34268,"34268":34269,"34269":34270,"34270":34271,"34271":34272,"34272":34273,"34273":34274,"34274":34275,"34275":34276,"34276":34277,"34277":34278,"34278":34279,"34279":34280,"34280":34281,"34281":34282,"34282":34283,"34283":34284,"34284":34285,"34285":34286,"34286":34287,"34287":34288,"34288":34289,"34289":34290,"34290":34291,"34291":34292,"34292":34293,"34293":34294,"34294":34295,"34295":34296,"34296":34297,"34297":34298,"34298":34299,"34299":34300,"34300":34301,"34301":34302,"34302":34303,"34303":34304,"34304":34305,"34305":34306,"34306":34307,"34307":34308,"34308":34309,"34309":34310,"34310":34311,"34311":34312,"34312":34313,"34313":34314,"34314":34315,"34315":34316,"34316":34317,"34317":34318,"34318":34319,"34319":34320,"34320":34321,"34321":34322,"34322":34323,"34323":34324,"34324":34325,"34325":34326,"34326":34327,"34327":34328,"34328":34329,"34329":34330,"34330":34331,"34331":34332,"34332":34333,"34333":34334,"34334":34335,"34335":34336,"34336":34337,"34337":34338,"34338":34339,"34339":34340,"34340":34341,"34341":34342,"34342":34343,"34343":34344,"34344":34345,"34345":34346,"34346":34347,"34347":34348,"34348":34349,"34349":34350,"34350":34351,"34351":34352,"34352":34353,"34353":34354,"34354":34355,"34355":34356,"34356":34357,"34357":34358,"34358":34359,"34359":34360,"34360":34361,"34361":34362,"34362":34363,"34363":34364,"34364":34365,"34365":34366,"34366":34367,"34367":34368,"34368":34369,"34369":34370,"34370":34371,"34371":34372,"34372":34373,"34373":34374,"34374":34375,"34375":34376,"34376":34377,"34377":34378,"34378":34379,"34379":34380,"34380":34381,"34381":34382,"34382":34383,"34383":34384,"34384":34385,"34385":34386,"34386":34387,"34387":34388,"34388":34389,"34389":34390,"34390":34391,"34391":34392,"34392":34393,"34393":34394,"34394":34395,"34395":34396,"34396":34397,"34397":34398,"34398":34399,"34399":34400,"34400":34401,"34401":34402,"34402":34403,"34403":34404,"34404":34405,"34405":34406,"34406":34407,"34407":34408,"34408":34409,"34409":34410,"34410":34411,"34411":34412,"34412":34413,"34413":34414,"34414":34415,"34415":34416,"34416":34417,"34417":34418,"34418":34419,"34419":34420,"34420":34421,"34421":34422,"34422":34423,"34423":34424,"34424":34425,"34425":34426,"34426":34427,"34427":34428,"34428":34429,"34429":34430,"34430":34431,"34431":34432,"34432":34433,"34433":34434,"34434":34435,"34435":34436,"34436":34437,"34437":34438,"34438":34439,"34439":34440,"34440":34441,"34441":34442,"34442":34443,"34443":34444,"34444":34445,"34445":34446,"34446":34447,"34447":34448,"34448":34449,"34449":34450,"34450":34451,"34451":34452,"34452":34453,"34453":34454,"34454":34455,"34455":34456,"34456":34457,"34457":34458,"34458":34459,"34459":34460,"34460":34461,"34461":34462,"34462":34463,"34463":34464,"34464":34465,"34465":34466,"34466":34467,"34467":34468,"34468":34469,"34469":34470,"34470":34471,"34471":34472,"34472":34473,"34473":34474,"34474":34475,"34475":34476,"34476":34477,"34477":34478,"34478":34479,"34479":34480,"34480":34481,"34481":34482,"34482":34483,"34483":34484,"34484":34485,"34485":34486,"34486":34487,"34487":34488,"34488":34489,"34489":34490,"34490":34491,"34491":34492,"34492":34493,"34493":34494,"34494":34495,"34495":34496,"34496":34497,"34497":34498,"34498":34499,"34499":34500,"34500":34501,"34501":34502,"34502":34503,"34503":34504,"34504":34505,"34505":34506,"34506":34507,"34507":34508,"34508":34509,"34509":34510,"34510":34511,"34511":34512,"34512":34513,"34513":34514,"34514":34515,"34515":34516,"34516":34517,"34517":34518,"34518":34519,"34519":34520,"34520":34521,"34521":34522,"34522":34523,"34523":34524,"34524":34525,"34525":34526,"34526":34527,"34527":34528,"34528":34529,"34529":34530,"34530":34531,"34531":34532,"34532":34533,"34533":34534,"34534":34535,"34535":34536,"34536":34537,"34537":34538,"34538":34539,"34539":34540,"34540":34541,"34541":34542,"34542":34543,"34543":34544,"34544":34545,"34545":34546,"34546":34547,"34547":34548,"34548":34549,"34549":34550,"34550":34551,"34551":34552,"34552":34553,"34553":34554,"34554":34555,"34555":34556,"34556":34557,"34557":34558,"34558":34559,"34559":34560,"34560":34561,"34561":34562,"34562":34563,"34563":34564,"34564":34565,"34565":34566,"34566":34567,"34567":34568,"34568":34569,"34569":34570,"34570":34571,"34571":34572,"34572":34573,"34573":34574,"34574":34575,"34575":34576,"34576":34577,"34577":34578,"34578":34579,"34579":34580,"34580":34581,"34581":34582,"34582":34583,"34583":34584,"34584":34585,"34585":34586,"34586":34587,"34587":34588,"34588":34589,"34589":34590,"34590":34591,"34591":34592,"34592":34593,"34593":34594,"34594":34595,"34595":34596,"34596":34597,"34597":34598,"34598":34599,"34599":34600,"34600":34601,"34601":34602,"34602":34603,"34603":34604,"34604":34605,"34605":34606,"34606":34607,"34607":34608,"34608":34609,"34609":34610,"34610":34611,"34611":34612,"34612":34613,"34613":34614,"34614":34615,"34615":34616,"34616":34617,"34617":34618,"34618":34619,"34619":34620,"34620":34621,"34621":34622,"34622":34623,"34623":34624,"34624":34625,"34625":34626,"34626":34627,"34627":34628,"34628":34629,"34629":34630,"34630":34631,"34631":34632,"34632":34633,"34633":34634,"34634":34635,"34635":34636,"34636":34637,"34637":34638,"34638":34639,"34639":34640,"34640":34641,"34641":34642,"34642":34643,"34643":34644,"34644":34645,"34645":34646,"34646":34647,"34647":34648,"34648":34649,"34649":34650,"34650":34651,"34651":34652,"34652":34653,"34653":34654,"34654":34655,"34655":34656,"34656":34657,"34657":34658,"34658":34659,"34659":34660,"34660":34661,"34661":34662,"34662":34663,"34663":34664,"34664":34665,"34665":34666,"34666":34667,"34667":34668,"34668":34669,"34669":34670,"34670":34671,"34671":34672,"34672":34673,"34673":34674,"34674":34675,"34675":34676,"34676":34677,"34677":34678,"34678":34679,"34679":34680,"34680":34681,"34681":34682,"34682":34683,"34683":34684,"34684":34685,"34685":34686,"34686":34687,"34687":34688,"34688":34689,"34689":34690,"34690":34691,"34691":34692,"34692":34693,"34693":34694,"34694":34695,"34695":34696,"34696":34697,"34697":34698,"34698":34699,"34699":34700,"34700":34701,"34701":34702,"34702":34703,"34703":34704,"34704":34705,"34705":34706,"34706":34707,"34707":34708,"34708":34709,"34709":34710,"34710":34711,"34711":34712,"34712":34713,"34713":34714,"34714":34715,"34715":34716,"34716":34717,"34717":34718,"34718":34719,"34719":34720,"34720":34721,"34721":34722,"34722":34723,"34723":34724,"34724":34725,"34725":34726,"34726":34727,"34727":34728,"34728":34729,"34729":34730,"34730":34731,"34731":34732,"34732":34733,"34733":34734,"34734":34735,"34735":34736,"34736":34737,"34737":34738,"34738":34739,"34739":34740,"34740":34741,"34741":34742,"34742":34743,"34743":34744,"34744":34745,"34745":34746,"34746":34747,"34747":34748,"34748":34749,"34749":34750,"34750":34751,"34751":34752,"34752":34753,"34753":34754,"34754":34755,"34755":34756,"34756":34757,"34757":34758,"34758":34759,"34759":34760,"34760":34761,"34761":34762,"34762":34763,"34763":34764,"34764":34765,"34765":34766,"34766":34767,"34767":34768,"34768":34769,"34769":34770,"34770":34771,"34771":34772,"34772":34773,"34773":34774,"34774":34775,"34775":34776,"34776":34777,"34777":34778,"34778":34779,"34779":34780,"34780":34781,"34781":34782,"34782":34783,"34783":34784,"34784":34785,"34785":34786,"34786":34787,"34787":34788,"34788":34789,"34789":34790,"34790":34791,"34791":34792,"34792":34793,"34793":34794,"34794":34795,"34795":34796,"34796":34797,"34797":34798,"34798":34799,"34799":34800,"34800":34801,"34801":34802,"34802":34803,"34803":34804,"34804":34805,"34805":34806,"34806":34807,"34807":34808,"34808":34809,"34809":34810,"34810":34811,"34811":34812,"34812":34813,"34813":34814,"34814":34815,"34815":34816,"34816":34817,"34817":34818,"34818":34819,"34819":34820,"34820":34821,"34821":34822,"34822":34823,"34823":34824,"34824":34825,"34825":34826,"34826":34827,"34827":34828,"34828":34829,"34829":34830,"34830":34831,"34831":34832,"34832":34833,"34833":34834,"34834":34835,"34835":34836,"34836":34837,"34837":34838,"34838":34839,"34839":34840,"34840":34841,"34841":34842,"34842":34843,"34843":34844,"34844":34845,"34845":34846,"34846":34847,"34847":34848,"34848":34849,"34849":34850,"34850":34851,"34851":34852,"34852":34853,"34853":34854,"34854":34855,"34855":34856,"34856":34857,"34857":34858,"34858":34859,"34859":34860,"34860":34861,"34861":34862,"34862":34863,"34863":34864,"34864":34865,"34865":34866,"34866":34867,"34867":34868,"34868":34869,"34869":34870,"34870":34871,"34871":34872,"34872":34873,"34873":34874,"34874":34875,"34875":34876,"34876":34877,"34877":34878,"34878":34879,"34879":34880,"34880":34881,"34881":34882,"34882":34883,"34883":34884,"34884":34885,"34885":34886,"34886":34887,"34887":34888,"34888":34889,"34889":34890,"34890":34891,"34891":34892,"34892":34893,"34893":34894,"34894":34895,"34895":34896,"34896":34897,"34897":34898,"34898":34899,"34899":34900,"34900":34901,"34901":34902,"34902":34903,"34903":34904,"34904":34905,"34905":34906,"34906":34907,"34907":34908,"34908":34909,"34909":34910,"34910":34911,"34911":34912,"34912":34913,"34913":34914,"34914":34915,"34915":34916,"34916":34917,"34917":34918,"34918":34919,"34919":34920,"34920":34921,"34921":34922,"34922":34923,"34923":34924,"34924":34925,"34925":34926,"34926":34927,"34927":34928,"34928":34929,"34929":34930,"34930":34931,"34931":34932,"34932":34933,"34933":34934,"34934":34935,"34935":34936,"34936":34937,"34937":34938,"34938":34939,"34939":34940,"34940":34941,"34941":34942,"34942":34943,"34943":34944,"34944":34945,"34945":34946,"34946":34947,"34947":34948,"34948":34949,"34949":34950,"34950":34951,"34951":34952,"34952":34953,"34953":34954,"34954":34955,"34955":34956,"34956":34957,"34957":34958,"34958":34959,"34959":34960,"34960":34961,"34961":34962,"34962":34963,"34963":34964,"34964":34965,"34965":34966,"34966":34967,"34967":34968,"34968":34969,"34969":34970,"34970":34971,"34971":34972,"34972":34973,"34973":34974,"34974":34975,"34975":34976,"34976":34977,"34977":34978,"34978":34979,"34979":34980,"34980":34981,"34981":34982,"34982":34983,"34983":34984,"34984":34985,"34985":34986,"34986":34987,"34987":34988,"34988":34989,"34989":34990,"34990":34991,"34991":34992,"34992":34993,"34993":34994,"34994":34995,"34995":34996,"34996":34997,"34997":34998,"34998":34999,"34999":35000,"35000":35001,"35001":35002,"35002":35003,"35003":35004,"35004":35005,"35005":35006,"35006":35007,"35007":35008,"35008":35009,"35009":35010,"35010":35011,"35011":35012,"35012":35013,"35013":35014,"35014":35015,"35015":35016,"35016":35017,"35017":35018,"35018":35019,"35019":35020,"35020":35021,"35021":35022,"35022":35023,"35023":35024,"35024":35025,"35025":35026,"35026":35027,"35027":35028,"35028":35029,"35029":35030,"35030":35031,"35031":35032,"35032":35033,"35033":35034,"35034":35035,"35035":35036,"35036":35037,"35037":35038,"35038":35039,"35039":35040,"35040":35041,"35041":35042,"35042":35043,"35043":35044,"35044":35045,"35045":35046,"35046":35047,"35047":35048,"35048":35049,"35049":35050,"35050":35051,"35051":35052,"35052":35053,"35053":35054,"35054":35055,"35055":35056,"35056":35057,"35057":35058,"35058":35059,"35059":35060,"35060":35061,"35061":35062,"35062":35063,"35063":35064,"35064":35065,"35065":35066,"35066":35067,"35067":35068,"35068":35069,"35069":35070,"35070":35071,"35071":35072,"35072":35073,"35073":35074,"35074":35075,"35075":35076,"35076":35077,"35077":35078,"35078":35079,"35079":35080,"35080":35081,"35081":35082,"35082":35083,"35083":35084,"35084":35085,"35085":35086,"35086":35087,"35087":35088,"35088":35089,"35089":35090,"35090":35091,"35091":35092,"35092":35093,"35093":35094,"35094":35095,"35095":35096,"35096":35097,"35097":35098,"35098":35099,"35099":35100,"35100":35101,"35101":35102,"35102":35103,"35103":35104,"35104":35105,"35105":35106,"35106":35107,"35107":35108,"35108":35109,"35109":35110,"35110":35111,"35111":35112,"35112":35113,"35113":35114,"35114":35115,"35115":35116,"35116":35117,"35117":35118,"35118":35119,"35119":35120,"35120":35121,"35121":35122,"35122":35123,"35123":35124,"35124":35125,"35125":35126,"35126":35127,"35127":35128,"35128":35129,"35129":35130,"35130":35131,"35131":35132,"35132":35133,"35133":35134,"35134":35135,"35135":35136,"35136":35137,"35137":35138,"35138":35139,"35139":35140,"35140":35141,"35141":35142,"35142":35143,"35143":35144,"35144":35145,"35145":35146,"35146":35147,"35147":35148,"35148":35149,"35149":35150,"35150":35151,"35151":35152,"35152":35153,"35153":35154,"35154":35155,"35155":35156,"35156":35157,"35157":35158,"35158":35159,"35159":35160,"35160":35161,"35161":35162,"35162":35163,"35163":35164,"35164":35165,"35165":35166,"35166":35167,"35167":35168,"35168":35169,"35169":35170,"35170":35171,"35171":35172,"35172":35173,"35173":35174,"35174":35175,"35175":35176,"35176":35177,"35177":35178,"35178":35179,"35179":35180,"35180":35181,"35181":35182,"35182":35183,"35183":35184,"35184":35185,"35185":35186,"35186":35187,"35187":35188,"35188":35189,"35189":35190,"35190":35191,"35191":35192,"35192":35193,"35193":35194,"35194":35195,"35195":35196,"35196":35197,"35197":35198,"35198":35199,"35199":35200,"35200":35201,"35201":35202,"35202":35203,"35203":35204,"35204":35205,"35205":35206,"35206":35207,"35207":35208,"35208":35209,"35209":35210,"35210":35211,"35211":35212,"35212":35213,"35213":35214,"35214":35215,"35215":35216,"35216":35217,"35217":35218,"35218":35219,"35219":35220,"35220":35221,"35221":35222,"35222":35223,"35223":35224,"35224":35225,"35225":35226,"35226":35227,"35227":35228,"35228":35229,"35229":35230,"35230":35231,"35231":35232,"35232":35233,"35233":35234,"35234":35235,"35235":35236,"35236":35237,"35237":35238,"35238":35239,"35239":35240,"35240":35241,"35241":35242,"35242":35243,"35243":35244,"35244":35245,"35245":35246,"35246":35247,"35247":35248,"35248":35249,"35249":35250,"35250":35251,"35251":35252,"35252":35253,"35253":35254,"35254":35255,"35255":35256,"35256":35257,"35257":35258,"35258":35259,"35259":35260,"35260":35261,"35261":35262,"35262":35263,"35263":35264,"35264":35265,"35265":35266,"35266":35267,"35267":35268,"35268":35269,"35269":35270,"35270":35271,"35271":35272,"35272":35273,"35273":35274,"35274":35275,"35275":35276,"35276":35277,"35277":35278,"35278":35279,"35279":35280,"35280":35281,"35281":35282,"35282":35283,"35283":35284,"35284":35285,"35285":35286,"35286":35287,"35287":35288,"35288":35289,"35289":35290,"35290":35291,"35291":35292,"35292":35293,"35293":35294,"35294":35295,"35295":35296,"35296":35297,"35297":35298,"35298":35299,"35299":35300,"35300":35301,"35301":35302,"35302":35303,"35303":35304,"35304":35305,"35305":35306,"35306":35307,"35307":35308,"35308":35309,"35309":35310,"35310":35311,"35311":35312,"35312":35313,"35313":35314,"35314":35315,"35315":35316,"35316":35317,"35317":35318,"35318":35319,"35319":35320,"35320":35321,"35321":35322,"35322":35323,"35323":35324,"35324":35325,"35325":35326,"35326":35327,"35327":35328,"35328":35329,"35329":35330,"35330":35331,"35331":35332,"35332":35333,"35333":35334,"35334":35335,"35335":35336,"35336":35337,"35337":35338,"35338":35339,"35339":35340,"35340":35341,"35341":35342,"35342":35343,"35343":35344,"35344":35345,"35345":35346,"35346":35347,"35347":35348,"35348":35349,"35349":35350,"35350":35351,"35351":35352,"35352":35353,"35353":35354,"35354":35355,"35355":35356,"35356":35357,"35357":35358,"35358":35359,"35359":35360,"35360":35361,"35361":35362,"35362":35363,"35363":35364,"35364":35365,"35365":35366,"35366":35367,"35367":35368,"35368":35369,"35369":35370,"35370":35371,"35371":35372,"35372":35373,"35373":35374,"35374":35375,"35375":35376,"35376":35377,"35377":35378,"35378":35379,"35379":35380,"35380":35381,"35381":35382,"35382":35383,"35383":35384,"35384":35385,"35385":35386,"35386":35387,"35387":35388,"35388":35389,"35389":35390,"35390":35391,"35391":35392,"35392":35393,"35393":35394,"35394":35395,"35395":35396,"35396":35397,"35397":35398,"35398":35399,"35399":35400,"35400":35401,"35401":35402,"35402":35403,"35403":35404,"35404":35405,"35405":35406,"35406":35407,"35407":35408,"35408":35409,"35409":35410,"35410":35411,"35411":35412,"35412":35413,"35413":35414,"35414":35415,"35415":35416,"35416":35417,"35417":35418,"35418":35419,"35419":35420,"35420":35421,"35421":35422,"35422":35423,"35423":35424,"35424":35425,"35425":35426,"35426":35427,"35427":35428,"35428":35429,"35429":35430,"35430":35431,"35431":35432,"35432":35433,"35433":35434,"35434":35435,"35435":35436,"35436":35437,"35437":35438,"35438":35439,"35439":35440,"35440":35441,"35441":35442,"35442":35443,"35443":35444,"35444":35445,"35445":35446,"35446":35447,"35447":35448,"35448":35449,"35449":35450,"35450":35451,"35451":35452,"35452":35453,"35453":35454,"35454":35455,"35455":35456,"35456":35457,"35457":35458,"35458":35459,"35459":35460,"35460":35461,"35461":35462,"35462":35463,"35463":35464,"35464":35465,"35465":35466,"35466":35467,"35467":35468,"35468":35469,"35469":35470,"35470":35471,"35471":35472,"35472":35473,"35473":35474,"35474":35475,"35475":35476,"35476":35477,"35477":35478,"35478":35479,"35479":35480,"35480":35481,"35481":35482,"35482":35483,"35483":35484,"35484":35485,"35485":35486,"35486":35487,"35487":35488,"35488":35489,"35489":35490,"35490":35491,"35491":35492,"35492":35493,"35493":35494,"35494":35495,"35495":35496,"35496":35497,"35497":35498,"35498":35499,"35499":35500,"35500":35501,"35501":35502,"35502":35503,"35503":35504,"35504":35505,"35505":35506,"35506":35507,"35507":35508,"35508":35509,"35509":35510,"35510":35511,"35511":35512,"35512":35513,"35513":35514,"35514":35515,"35515":35516,"35516":35517,"35517":35518,"35518":35519,"35519":35520,"35520":35521,"35521":35522,"35522":35523,"35523":35524,"35524":35525,"35525":35526,"35526":35527,"35527":35528,"35528":35529,"35529":35530,"35530":35531,"35531":35532,"35532":35533,"35533":35534,"35534":35535,"35535":35536,"35536":35537,"35537":35538,"35538":35539,"35539":35540,"35540":35541,"35541":35542,"35542":35543,"35543":35544,"35544":35545,"35545":35546,"35546":35547,"35547":35548,"35548":35549,"35549":35550,"35550":35551,"35551":35552,"35552":35553,"35553":35554,"35554":35555,"35555":35556,"35556":35557,"35557":35558,"35558":35559,"35559":35560,"35560":35561,"35561":35562,"35562":35563,"35563":35564,"35564":35565,"35565":35566,"35566":35567,"35567":35568,"35568":35569,"35569":35570,"35570":35571,"35571":35572,"35572":35573,"35573":35574,"35574":35575,"35575":35576,"35576":35577,"35577":35578,"35578":35579,"35579":35580,"35580":35581,"35581":35582,"35582":35583,"35583":35584,"35584":35585,"35585":35586,"35586":35587,"35587":35588,"35588":35589,"35589":35590,"35590":35591,"35591":35592,"35592":35593,"35593":35594,"35594":35595,"35595":35596,"35596":35597,"35597":35598,"35598":35599,"35599":35600,"35600":35601,"35601":35602,"35602":35603,"35603":35604,"35604":35605,"35605":35606,"35606":35607,"35607":35608,"35608":35609,"35609":35610,"35610":35611,"35611":35612,"35612":35613,"35613":35614,"35614":35615,"35615":35616,"35616":35617,"35617":35618,"35618":35619,"35619":35620,"35620":35621,"35621":35622,"35622":35623,"35623":35624,"35624":35625,"35625":35626,"35626":35627,"35627":35628,"35628":35629,"35629":35630,"35630":35631,"35631":35632,"35632":35633,"35633":35634,"35634":35635,"35635":35636,"35636":35637,"35637":35638,"35638":35639,"35639":35640,"35640":35641,"35641":35642,"35642":35643,"35643":35644,"35644":35645,"35645":35646,"35646":35647,"35647":35648,"35648":35649,"35649":35650,"35650":35651,"35651":35652,"35652":35653,"35653":35654,"35654":35655,"35655":35656,"35656":35657,"35657":35658,"35658":35659,"35659":35660,"35660":35661,"35661":35662,"35662":35663,"35663":35664,"35664":35665,"35665":35666,"35666":35667,"35667":35668,"35668":35669,"35669":35670,"35670":35671,"35671":35672,"35672":35673,"35673":35674,"35674":35675,"35675":35676,"35676":35677,"35677":35678,"35678":35679,"35679":35680,"35680":35681,"35681":35682,"35682":35683,"35683":35684,"35684":35685,"35685":35686,"35686":35687,"35687":35688,"35688":35689,"35689":35690,"35690":35691,"35691":35692,"35692":35693,"35693":35694,"35694":35695,"35695":35696,"35696":35697,"35697":35698,"35698":35699,"35699":35700,"35700":35701,"35701":35702,"35702":35703,"35703":35704,"35704":35705,"35705":35706,"35706":35707,"35707":35708,"35708":35709,"35709":35710,"35710":35711,"35711":35712,"35712":35713,"35713":35714,"35714":35715,"35715":35716,"35716":35717,"35717":35718,"35718":35719,"35719":35720,"35720":35721,"35721":35722,"35722":35723,"35723":35724,"35724":35725,"35725":35726,"35726":35727,"35727":35728,"35728":35729,"35729":35730,"35730":35731,"35731":35732,"35732":35733,"35733":35734,"35734":35735,"35735":35736,"35736":35737,"35737":35738,"35738":35739,"35739":35740,"35740":35741,"35741":35742,"35742":35743,"35743":35744,"35744":35745,"35745":35746,"35746":35747,"35747":35748,"35748":35749,"35749":35750,"35750":35751,"35751":35752,"35752":35753,"35753":35754,"35754":35755,"35755":35756,"35756":35757,"35757":35758,"35758":35759,"35759":35760,"35760":35761,"35761":35762,"35762":35763,"35763":35764,"35764":35765,"35765":35766,"35766":35767,"35767":35768,"35768":35769,"35769":35770,"35770":35771,"35771":35772,"35772":35773,"35773":35774,"35774":35775,"35775":35776,"35776":35777,"35777":35778,"35778":35779,"35779":35780,"35780":35781,"35781":35782,"35782":35783,"35783":35784,"35784":35785,"35785":35786,"35786":35787,"35787":35788,"35788":35789,"35789":35790,"35790":35791,"35791":35792,"35792":35793,"35793":35794,"35794":35795,"35795":35796,"35796":35797,"35797":35798,"35798":35799,"35799":35800,"35800":35801,"35801":35802,"35802":35803,"35803":35804,"35804":35805,"35805":35806,"35806":35807,"35807":35808,"35808":35809,"35809":35810,"35810":35811,"35811":35812,"35812":35813,"35813":35814,"35814":35815,"35815":35816,"35816":35817,"35817":35818,"35818":35819,"35819":35820,"35820":35821,"35821":35822,"35822":35823,"35823":35824,"35824":35825,"35825":35826,"35826":35827,"35827":35828,"35828":35829,"35829":35830,"35830":35831,"35831":35832,"35832":35833,"35833":35834,"35834":35835,"35835":35836,"35836":35837,"35837":35838,"35838":35839,"35839":35840,"35840":35841,"35841":35842,"35842":35843,"35843":35844,"35844":35845,"35845":35846,"35846":35847,"35847":35848,"35848":35849,"35849":35850,"35850":35851,"35851":35852,"35852":35853,"35853":35854,"35854":35855,"35855":35856,"35856":35857,"35857":35858,"35858":35859,"35859":35860,"35860":35861,"35861":35862,"35862":35863,"35863":35864,"35864":35865,"35865":35866,"35866":35867,"35867":35868,"35868":35869,"35869":35870,"35870":35871,"35871":35872,"35872":35873,"35873":35874,"35874":35875,"35875":35876,"35876":35877,"35877":35878,"35878":35879,"35879":35880,"35880":35881,"35881":35882,"35882":35883,"35883":35884,"35884":35885,"35885":35886,"35886":35887,"35887":35888,"35888":35889,"35889":35890,"35890":35891,"35891":35892,"35892":35893,"35893":35894,"35894":35895,"35895":35896,"35896":35897,"35897":35898,"35898":35899,"35899":35900,"35900":35901,"35901":35902,"35902":35903,"35903":35904,"35904":35905,"35905":35906,"35906":35907,"35907":35908,"35908":35909,"35909":35910,"35910":35911,"35911":35912,"35912":35913,"35913":35914,"35914":35915,"35915":35916,"35916":35917,"35917":35918,"35918":35919,"35919":35920,"35920":35921,"35921":35922,"35922":35923,"35923":35924,"35924":35925,"35925":35926,"35926":35927,"35927":35928,"35928":35929,"35929":35930,"35930":35931,"35931":35932,"35932":35933,"35933":35934,"35934":35935,"35935":35936,"35936":35937,"35937":35938,"35938":35939,"35939":35940,"35940":35941,"35941":35942,"35942":35943,"35943":35944,"35944":35945,"35945":35946,"35946":35947,"35947":35948,"35948":35949,"35949":35950,"35950":35951,"35951":35952,"35952":35953,"35953":35954,"35954":35955,"35955":35956,"35956":35957,"35957":35958,"35958":35959,"35959":35960,"35960":35961,"35961":35962,"35962":35963,"35963":35964,"35964":35965,"35965":35966,"35966":35967,"35967":35968,"35968":35969,"35969":35970,"35970":35971,"35971":35972,"35972":35973,"35973":35974,"35974":35975,"35975":35976,"35976":35977,"35977":35978,"35978":35979,"35979":35980,"35980":35981,"35981":35982,"35982":35983,"35983":35984,"35984":35985,"35985":35986,"35986":35987,"35987":35988,"35988":35989,"35989":35990,"35990":35991,"35991":35992,"35992":35993,"35993":35994,"35994":35995,"35995":35996,"35996":35997,"35997":35998,"35998":35999,"35999":36000,"36000":36001,"36001":36002,"36002":36003,"36003":36004,"36004":36005,"36005":36006,"36006":36007,"36007":36008,"36008":36009,"36009":36010,"36010":36011,"36011":36012,"36012":36013,"36013":36014,"36014":36015,"36015":36016,"36016":36017,"36017":36018,"36018":36019,"36019":36020,"36020":36021,"36021":36022,"36022":36023,"36023":36024,"36024":36025,"36025":36026,"36026":36027,"36027":36028,"36028":36029,"36029":36030,"36030":36031,"36031":36032,"36032":36033,"36033":36034,"36034":36035,"36035":36036,"36036":36037,"36037":36038,"36038":36039,"36039":36040,"36040":36041,"36041":36042,"36042":36043,"36043":36044,"36044":36045,"36045":36046,"36046":36047,"36047":36048,"36048":36049,"36049":36050,"36050":36051,"36051":36052,"36052":36053,"36053":36054,"36054":36055,"36055":36056,"36056":36057,"36057":36058,"36058":36059,"36059":36060,"36060":36061,"36061":36062,"36062":36063,"36063":36064,"36064":36065,"36065":36066,"36066":36067,"36067":36068,"36068":36069,"36069":36070,"36070":36071,"36071":36072,"36072":36073,"36073":36074,"36074":36075,"36075":36076,"36076":36077,"36077":36078,"36078":36079,"36079":36080,"36080":36081,"36081":36082,"36082":36083,"36083":36084,"36084":36085,"36085":36086,"36086":36087,"36087":36088,"36088":36089,"36089":36090,"36090":36091,"36091":36092,"36092":36093,"36093":36094,"36094":36095,"36095":36096,"36096":36097,"36097":36098,"36098":36099,"36099":36100,"36100":36101,"36101":36102,"36102":36103,"36103":36104,"36104":36105,"36105":36106,"36106":36107,"36107":36108,"36108":36109,"36109":36110,"36110":36111,"36111":36112,"36112":36113,"36113":36114,"36114":36115,"36115":36116,"36116":36117,"36117":36118,"36118":36119,"36119":36120,"36120":36121,"36121":36122,"36122":36123,"36123":36124,"36124":36125,"36125":36126,"36126":36127,"36127":36128,"36128":36129,"36129":36130,"36130":36131,"36131":36132,"36132":36133,"36133":36134,"36134":36135,"36135":36136,"36136":36137,"36137":36138,"36138":36139,"36139":36140,"36140":36141,"36141":36142,"36142":36143,"36143":36144,"36144":36145,"36145":36146,"36146":36147,"36147":36148,"36148":36149,"36149":36150,"36150":36151,"36151":36152,"36152":36153,"36153":36154,"36154":36155,"36155":36156,"36156":36157,"36157":36158,"36158":36159,"36159":36160,"36160":36161,"36161":36162,"36162":36163,"36163":36164,"36164":36165,"36165":36166,"36166":36167,"36167":36168,"36168":36169,"36169":36170,"36170":36171,"36171":36172,"36172":36173,"36173":36174,"36174":36175,"36175":36176,"36176":36177,"36177":36178,"36178":36179,"36179":36180,"36180":36181,"36181":36182,"36182":36183,"36183":36184,"36184":36185,"36185":36186,"36186":36187,"36187":36188,"36188":36189,"36189":36190,"36190":36191,"36191":36192,"36192":36193,"36193":36194,"36194":36195,"36195":36196,"36196":36197,"36197":36198,"36198":36199,"36199":36200,"36200":36201,"36201":36202,"36202":36203,"36203":36204,"36204":36205,"36205":36206,"36206":36207,"36207":36208,"36208":36209,"36209":36210,"36210":36211,"36211":36212,"36212":36213,"36213":36214,"36214":36215,"36215":36216,"36216":36217,"36217":36218,"36218":36219,"36219":36220,"36220":36221,"36221":36222,"36222":36223,"36223":36224,"36224":36225,"36225":36226,"36226":36227,"36227":36228,"36228":36229,"36229":36230,"36230":36231,"36231":36232,"36232":36233,"36233":36234,"36234":36235,"36235":36236,"36236":36237,"36237":36238,"36238":36239,"36239":36240,"36240":36241,"36241":36242,"36242":36243,"36243":36244,"36244":36245,"36245":36246,"36246":36247,"36247":36248,"36248":36249,"36249":36250,"36250":36251,"36251":36252,"36252":36253,"36253":36254,"36254":36255,"36255":36256,"36256":36257,"36257":36258,"36258":36259,"36259":36260,"36260":36261,"36261":36262,"36262":36263,"36263":36264,"36264":36265,"36265":36266,"36266":36267,"36267":36268,"36268":36269,"36269":36270,"36270":36271,"36271":36272,"36272":36273,"36273":36274,"36274":36275,"36275":36276,"36276":36277,"36277":36278,"36278":36279,"36279":36280,"36280":36281,"36281":36282,"36282":36283,"36283":36284,"36284":36285,"36285":36286,"36286":36287,"36287":36288,"36288":36289,"36289":36290,"36290":36291,"36291":36292,"36292":36293,"36293":36294,"36294":36295,"36295":36296,"36296":36297,"36297":36298,"36298":36299,"36299":36300,"36300":36301,"36301":36302,"36302":36303,"36303":36304,"36304":36305,"36305":36306,"36306":36307,"36307":36308,"36308":36309,"36309":36310,"36310":36311,"36311":36312,"36312":36313,"36313":36314,"36314":36315,"36315":36316,"36316":36317,"36317":36318,"36318":36319,"36319":36320,"36320":36321,"36321":36322,"36322":36323,"36323":36324,"36324":36325,"36325":36326,"36326":36327,"36327":36328,"36328":36329,"36329":36330,"36330":36331,"36331":36332,"36332":36333,"36333":36334,"36334":36335,"36335":36336,"36336":36337,"36337":36338,"36338":36339,"36339":36340,"36340":36341,"36341":36342,"36342":36343,"36343":36344,"36344":36345,"36345":36346,"36346":36347,"36347":36348,"36348":36349,"36349":36350,"36350":36351,"36351":36352,"36352":36353,"36353":36354,"36354":36355,"36355":36356,"36356":36357,"36357":36358,"36358":36359,"36359":36360,"36360":36361,"36361":36362,"36362":36363,"36363":36364,"36364":36365,"36365":36366,"36366":36367,"36367":36368,"36368":36369,"36369":36370,"36370":36371,"36371":36372,"36372":36373,"36373":36374,"36374":36375,"36375":36376,"36376":36377,"36377":36378,"36378":36379,"36379":36380,"36380":36381,"36381":36382,"36382":36383,"36383":36384,"36384":36385,"36385":36386,"36386":36387,"36387":36388,"36388":36389,"36389":36390,"36390":36391,"36391":36392,"36392":36393,"36393":36394,"36394":36395,"36395":36396,"36396":36397,"36397":36398,"36398":36399,"36399":36400,"36400":36401,"36401":36402,"36402":36403,"36403":36404,"36404":36405,"36405":36406,"36406":36407,"36407":36408,"36408":36409,"36409":36410,"36410":36411,"36411":36412,"36412":36413,"36413":36414,"36414":36415,"36415":36416,"36416":36417,"36417":36418,"36418":36419,"36419":36420,"36420":36421,"36421":36422,"36422":36423,"36423":36424,"36424":36425,"36425":36426,"36426":36427,"36427":36428,"36428":36429,"36429":36430,"36430":36431,"36431":36432,"36432":36433,"36433":36434,"36434":36435,"36435":36436,"36436":36437,"36437":36438,"36438":36439,"36439":36440,"36440":36441,"36441":36442,"36442":36443,"36443":36444,"36444":36445,"36445":36446,"36446":36447,"36447":36448,"36448":36449,"36449":36450,"36450":36451,"36451":36452,"36452":36453,"36453":36454,"36454":36455,"36455":36456,"36456":36457,"36457":36458,"36458":36459,"36459":36460,"36460":36461,"36461":36462,"36462":36463,"36463":36464,"36464":36465,"36465":36466,"36466":36467,"36467":36468,"36468":36469,"36469":36470,"36470":36471,"36471":36472,"36472":36473,"36473":36474,"36474":36475,"36475":36476,"36476":36477,"36477":36478,"36478":36479,"36479":36480,"36480":36481,"36481":36482,"36482":36483,"36483":36484,"36484":36485,"36485":36486,"36486":36487,"36487":36488,"36488":36489,"36489":36490,"36490":36491,"36491":36492,"36492":36493,"36493":36494,"36494":36495,"36495":36496,"36496":36497,"36497":36498,"36498":36499,"36499":36500,"36500":36501,"36501":36502,"36502":36503,"36503":36504,"36504":36505,"36505":36506,"36506":36507,"36507":36508,"36508":36509,"36509":36510,"36510":36511,"36511":36512,"36512":36513,"36513":36514,"36514":36515,"36515":36516,"36516":36517,"36517":36518,"36518":36519,"36519":36520,"36520":36521,"36521":36522,"36522":36523,"36523":36524,"36524":36525,"36525":36526,"36526":36527,"36527":36528,"36528":36529,"36529":36530,"36530":36531,"36531":36532,"36532":36533,"36533":36534,"36534":36535,"36535":36536,"36536":36537,"36537":36538,"36538":36539,"36539":36540,"36540":36541,"36541":36542,"36542":36543,"36543":36544,"36544":36545,"36545":36546,"36546":36547,"36547":36548,"36548":36549,"36549":36550,"36550":36551,"36551":36552,"36552":36553,"36553":36554,"36554":36555,"36555":36556,"36556":36557,"36557":36558,"36558":36559,"36559":36560,"36560":36561,"36561":36562,"36562":36563,"36563":36564,"36564":36565,"36565":36566,"36566":36567,"36567":36568,"36568":36569,"36569":36570,"36570":36571,"36571":36572,"36572":36573,"36573":36574,"36574":36575,"36575":36576,"36576":36577,"36577":36578,"36578":36579,"36579":36580,"36580":36581,"36581":36582,"36582":36583,"36583":36584,"36584":36585,"36585":36586,"36586":36587,"36587":36588,"36588":36589,"36589":36590,"36590":36591,"36591":36592,"36592":36593,"36593":36594,"36594":36595,"36595":36596,"36596":36597,"36597":36598,"36598":36599,"36599":36600,"36600":36601,"36601":36602,"36602":36603,"36603":36604,"36604":36605,"36605":36606,"36606":36607,"36607":36608,"36608":36609,"36609":36610,"36610":36611,"36611":36612,"36612":36613,"36613":36614,"36614":36615,"36615":36616,"36616":36617,"36617":36618,"36618":36619,"36619":36620,"36620":36621,"36621":36622,"36622":36623,"36623":36624,"36624":36625,"36625":36626,"36626":36627,"36627":36628,"36628":36629,"36629":36630,"36630":36631,"36631":36632,"36632":36633,"36633":36634,"36634":36635,"36635":36636,"36636":36637,"36637":36638,"36638":36639,"36639":36640,"36640":36641,"36641":36642,"36642":36643,"36643":36644,"36644":36645,"36645":36646,"36646":36647,"36647":36648,"36648":36649,"36649":36650,"36650":36651,"36651":36652,"36652":36653,"36653":36654,"36654":36655,"36655":36656,"36656":36657,"36657":36658,"36658":36659,"36659":36660,"36660":36661,"36661":36662,"36662":36663,"36663":36664,"36664":36665,"36665":36666,"36666":36667,"36667":36668,"36668":36669,"36669":36670,"36670":36671,"36671":36672,"36672":36673,"36673":36674,"36674":36675,"36675":36676,"36676":36677,"36677":36678,"36678":36679,"36679":36680,"36680":36681,"36681":36682,"36682":36683,"36683":36684,"36684":36685,"36685":36686,"36686":36687,"36687":36688,"36688":36689,"36689":36690,"36690":36691,"36691":36692,"36692":36693,"36693":36694,"36694":36695,"36695":36696,"36696":36697,"36697":36698,"36698":36699,"36699":36700,"36700":36701,"36701":36702,"36702":36703,"36703":36704,"36704":36705,"36705":36706,"36706":36707,"36707":36708,"36708":36709,"36709":36710,"36710":36711,"36711":36712,"36712":36713,"36713":36714,"36714":36715,"36715":36716,"36716":36717,"36717":36718,"36718":36719,"36719":36720,"36720":36721,"36721":36722,"36722":36723,"36723":36724,"36724":36725,"36725":36726,"36726":36727,"36727":36728,"36728":36729,"36729":36730,"36730":36731,"36731":36732,"36732":36733,"36733":36734,"36734":36735,"36735":36736,"36736":36737,"36737":36738,"36738":36739,"36739":36740,"36740":36741,"36741":36742,"36742":36743,"36743":36744,"36744":36745,"36745":36746,"36746":36747,"36747":36748,"36748":36749,"36749":36750,"36750":36751,"36751":36752,"36752":36753,"36753":36754,"36754":36755,"36755":36756,"36756":36757,"36757":36758,"36758":36759,"36759":36760,"36760":36761,"36761":36762,"36762":36763,"36763":36764,"36764":36765,"36765":36766,"36766":36767,"36767":36768,"36768":36769,"36769":36770,"36770":36771,"36771":36772,"36772":36773,"36773":36774,"36774":36775,"36775":36776,"36776":36777,"36777":36778,"36778":36779,"36779":36780,"36780":36781,"36781":36782,"36782":36783,"36783":36784,"36784":36785,"36785":36786,"36786":36787,"36787":36788,"36788":36789,"36789":36790,"36790":36791,"36791":36792,"36792":36793,"36793":36794,"36794":36795,"36795":36796,"36796":36797,"36797":36798,"36798":36799,"36799":36800,"36800":36801,"36801":36802,"36802":36803,"36803":36804,"36804":36805,"36805":36806,"36806":36807,"36807":36808,"36808":36809,"36809":36810,"36810":36811,"36811":36812,"36812":36813,"36813":36814,"36814":36815,"36815":36816,"36816":36817,"36817":36818,"36818":36819,"36819":36820,"36820":36821,"36821":36822,"36822":36823,"36823":36824,"36824":36825,"36825":36826,"36826":36827,"36827":36828,"36828":36829,"36829":36830,"36830":36831,"36831":36832,"36832":36833,"36833":36834,"36834":36835,"36835":36836,"36836":36837,"36837":36838,"36838":36839,"36839":36840,"36840":36841,"36841":36842,"36842":36843,"36843":36844,"36844":36845,"36845":36846,"36846":36847,"36847":36848,"36848":36849,"36849":36850,"36850":36851,"36851":36852,"36852":36853,"36853":36854,"36854":36855,"36855":36856,"36856":36857,"36857":36858,"36858":36859,"36859":36860,"36860":36861,"36861":36862,"36862":36863,"36863":36864,"36864":36865,"36865":36866,"36866":36867,"36867":36868,"36868":36869,"36869":36870,"36870":36871,"36871":36872,"36872":36873,"36873":36874,"36874":36875,"36875":36876,"36876":36877,"36877":36878,"36878":36879,"36879":36880,"36880":36881,"36881":36882,"36882":36883,"36883":36884,"36884":36885,"36885":36886,"36886":36887,"36887":36888,"36888":36889,"36889":36890,"36890":36891,"36891":36892,"36892":36893,"36893":36894,"36894":36895,"36895":36896,"36896":36897,"36897":36898,"36898":36899,"36899":36900,"36900":36901,"36901":36902,"36902":36903,"36903":36904,"36904":36905,"36905":36906,"36906":36907,"36907":36908,"36908":36909,"36909":36910,"36910":36911,"36911":36912,"36912":36913,"36913":36914,"36914":36915,"36915":36916,"36916":36917,"36917":36918,"36918":36919,"36919":36920,"36920":36921,"36921":36922,"36922":36923,"36923":36924,"36924":36925,"36925":36926,"36926":36927,"36927":36928,"36928":36929,"36929":36930,"36930":36931,"36931":36932,"36932":36933,"36933":36934,"36934":36935,"36935":36936,"36936":36937,"36937":36938,"36938":36939,"36939":36940,"36940":36941,"36941":36942,"36942":36943,"36943":36944,"36944":36945,"36945":36946,"36946":36947,"36947":36948,"36948":36949,"36949":36950,"36950":36951,"36951":36952,"36952":36953,"36953":36954,"36954":36955,"36955":36956,"36956":36957,"36957":36958,"36958":36959,"36959":36960,"36960":36961,"36961":36962,"36962":36963,"36963":36964,"36964":36965,"36965":36966,"36966":36967,"36967":36968,"36968":36969,"36969":36970,"36970":36971,"36971":36972,"36972":36973,"36973":36974,"36974":36975,"36975":36976,"36976":36977,"36977":36978,"36978":36979,"36979":36980,"36980":36981,"36981":36982,"36982":36983,"36983":36984,"36984":36985,"36985":36986,"36986":36987,"36987":36988,"36988":36989,"36989":36990,"36990":36991,"36991":36992,"36992":36993,"36993":36994,"36994":36995,"36995":36996,"36996":36997,"36997":36998,"36998":36999,"36999":37000,"37000":37001,"37001":37002,"37002":37003,"37003":37004,"37004":37005,"37005":37006,"37006":37007,"37007":37008,"37008":37009,"37009":37010,"37010":37011,"37011":37012,"37012":37013,"37013":37014,"37014":37015,"37015":37016,"37016":37017,"37017":37018,"37018":37019,"37019":37020,"37020":37021,"37021":37022,"37022":37023,"37023":37024,"37024":37025,"37025":37026,"37026":37027,"37027":37028,"37028":37029,"37029":37030,"37030":37031,"37031":37032,"37032":37033,"37033":37034,"37034":37035,"37035":37036,"37036":37037,"37037":37038,"37038":37039,"37039":37040,"37040":37041,"37041":37042,"37042":37043,"37043":37044,"37044":37045,"37045":37046,"37046":37047,"37047":37048,"37048":37049,"37049":37050,"37050":37051,"37051":37052,"37052":37053,"37053":37054,"37054":37055,"37055":37056,"37056":37057,"37057":37058,"37058":37059,"37059":37060,"37060":37061,"37061":37062,"37062":37063,"37063":37064,"37064":37065,"37065":37066,"37066":37067,"37067":37068,"37068":37069,"37069":37070,"37070":37071,"37071":37072,"37072":37073,"37073":37074,"37074":37075,"37075":37076,"37076":37077,"37077":37078,"37078":37079,"37079":37080,"37080":37081,"37081":37082,"37082":37083,"37083":37084,"37084":37085,"37085":37086,"37086":37087,"37087":37088,"37088":37089,"37089":37090,"37090":37091,"37091":37092,"37092":37093,"37093":37094,"37094":37095,"37095":37096,"37096":37097,"37097":37098,"37098":37099,"37099":37100,"37100":37101,"37101":37102,"37102":37103,"37103":37104,"37104":37105,"37105":37106,"37106":37107,"37107":37108,"37108":37109,"37109":37110,"37110":37111,"37111":37112,"37112":37113,"37113":37114,"37114":37115,"37115":37116,"37116":37117,"37117":37118,"37118":37119,"37119":37120,"37120":37121,"37121":37122,"37122":37123,"37123":37124,"37124":37125,"37125":37126,"37126":37127,"37127":37128,"37128":37129,"37129":37130,"37130":37131,"37131":37132,"37132":37133,"37133":37134,"37134":37135,"37135":37136,"37136":37137,"37137":37138,"37138":37139,"37139":37140,"37140":37141,"37141":37142,"37142":37143,"37143":37144,"37144":37145,"37145":37146,"37146":37147,"37147":37148,"37148":37149,"37149":37150,"37150":37151,"37151":37152,"37152":37153,"37153":37154,"37154":37155,"37155":37156,"37156":37157,"37157":37158,"37158":37159,"37159":37160,"37160":37161,"37161":37162,"37162":37163,"37163":37164,"37164":37165,"37165":37166,"37166":37167,"37167":37168,"37168":37169,"37169":37170,"37170":37171,"37171":37172,"37172":37173,"37173":37174,"37174":37175,"37175":37176,"37176":37177,"37177":37178,"37178":37179,"37179":37180,"37180":37181,"37181":37182,"37182":37183,"37183":37184,"37184":37185,"37185":37186,"37186":37187,"37187":37188,"37188":37189,"37189":37190,"37190":37191,"37191":37192,"37192":37193,"37193":37194,"37194":37195,"37195":37196,"37196":37197,"37197":37198,"37198":37199,"37199":37200,"37200":37201,"37201":37202,"37202":37203,"37203":37204,"37204":37205,"37205":37206,"37206":37207,"37207":37208,"37208":37209,"37209":37210,"37210":37211,"37211":37212,"37212":37213,"37213":37214,"37214":37215,"37215":37216,"37216":37217,"37217":37218,"37218":37219,"37219":37220,"37220":37221,"37221":37222,"37222":37223,"37223":37224,"37224":37225,"37225":37226,"37226":37227,"37227":37228,"37228":37229,"37229":37230,"37230":37231,"37231":37232,"37232":37233,"37233":37234,"37234":37235,"37235":37236,"37236":37237,"37237":37238,"37238":37239,"37239":37240,"37240":37241,"37241":37242,"37242":37243,"37243":37244,"37244":37245,"37245":37246,"37246":37247,"37247":37248,"37248":37249,"37249":37250,"37250":37251,"37251":37252,"37252":37253,"37253":37254,"37254":37255,"37255":37256,"37256":37257,"37257":37258,"37258":37259,"37259":37260,"37260":37261,"37261":37262,"37262":37263,"37263":37264,"37264":37265,"37265":37266,"37266":37267,"37267":37268,"37268":37269,"37269":37270,"37270":37271,"37271":37272,"37272":37273,"37273":37274,"37274":37275,"37275":37276,"37276":37277,"37277":37278,"37278":37279,"37279":37280,"37280":37281,"37281":37282,"37282":37283,"37283":37284,"37284":37285,"37285":37286,"37286":37287,"37287":37288,"37288":37289,"37289":37290,"37290":37291,"37291":37292,"37292":37293,"37293":37294,"37294":37295,"37295":37296,"37296":37297,"37297":37298,"37298":37299,"37299":37300,"37300":37301,"37301":37302,"37302":37303,"37303":37304,"37304":37305,"37305":37306,"37306":37307,"37307":37308,"37308":37309,"37309":37310,"37310":37311,"37311":37312,"37312":37313,"37313":37314,"37314":37315,"37315":37316,"37316":37317,"37317":37318,"37318":37319,"37319":37320,"37320":37321,"37321":37322,"37322":37323,"37323":37324,"37324":37325,"37325":37326,"37326":37327,"37327":37328,"37328":37329,"37329":37330,"37330":37331,"37331":37332,"37332":37333,"37333":37334,"37334":37335,"37335":37336,"37336":37337,"37337":37338,"37338":37339,"37339":37340,"37340":37341,"37341":37342,"37342":37343,"37343":37344,"37344":37345,"37345":37346,"37346":37347,"37347":37348,"37348":37349,"37349":37350,"37350":37351,"37351":37352,"37352":37353,"37353":37354,"37354":37355,"37355":37356,"37356":37357,"37357":37358,"37358":37359,"37359":37360,"37360":37361,"37361":37362,"37362":37363,"37363":37364,"37364":37365,"37365":37366,"37366":37367,"37367":37368,"37368":37369,"37369":37370,"37370":37371,"37371":37372,"37372":37373,"37373":37374,"37374":37375,"37375":37376,"37376":37377,"37377":37378,"37378":37379,"37379":37380,"37380":37381,"37381":37382,"37382":37383,"37383":37384,"37384":37385,"37385":37386,"37386":37387,"37387":37388,"37388":37389,"37389":37390,"37390":37391,"37391":37392,"37392":37393,"37393":37394,"37394":37395,"37395":37396,"37396":37397,"37397":37398,"37398":37399,"37399":37400,"37400":37401,"37401":37402,"37402":37403,"37403":37404,"37404":37405,"37405":37406,"37406":37407,"37407":37408,"37408":37409,"37409":37410,"37410":37411,"37411":37412,"37412":37413,"37413":37414,"37414":37415,"37415":37416,"37416":37417,"37417":37418,"37418":37419,"37419":37420,"37420":37421,"37421":37422,"37422":37423,"37423":37424,"37424":37425,"37425":37426,"37426":37427,"37427":37428,"37428":37429,"37429":37430,"37430":37431,"37431":37432,"37432":37433,"37433":37434,"37434":37435,"37435":37436,"37436":37437,"37437":37438,"37438":37439,"37439":37440,"37440":37441,"37441":37442,"37442":37443,"37443":37444,"37444":37445,"37445":37446,"37446":37447,"37447":37448,"37448":37449,"37449":37450,"37450":37451,"37451":37452,"37452":37453,"37453":37454,"37454":37455,"37455":37456,"37456":37457,"37457":37458,"37458":37459,"37459":37460,"37460":37461,"37461":37462,"37462":37463,"37463":37464,"37464":37465,"37465":37466,"37466":37467,"37467":37468,"37468":37469,"37469":37470,"37470":37471,"37471":37472,"37472":37473,"37473":37474,"37474":37475,"37475":37476,"37476":37477,"37477":37478,"37478":37479,"37479":37480,"37480":37481,"37481":37482,"37482":37483,"37483":37484,"37484":37485,"37485":37486,"37486":37487,"37487":37488,"37488":37489,"37489":37490,"37490":37491,"37491":37492,"37492":37493,"37493":37494,"37494":37495,"37495":37496,"37496":37497,"37497":37498,"37498":37499,"37499":37500,"37500":37501,"37501":37502,"37502":37503,"37503":37504,"37504":37505,"37505":37506,"37506":37507,"37507":37508,"37508":37509,"37509":37510,"37510":37511,"37511":37512,"37512":37513,"37513":37514,"37514":37515,"37515":37516,"37516":37517,"37517":37518,"37518":37519,"37519":37520,"37520":37521,"37521":37522,"37522":37523,"37523":37524,"37524":37525,"37525":37526,"37526":37527,"37527":37528,"37528":37529,"37529":37530,"37530":37531,"37531":37532,"37532":37533,"37533":37534,"37534":37535,"37535":37536,"37536":37537,"37537":37538,"37538":37539,"37539":37540,"37540":37541,"37541":37542,"37542":37543,"37543":37544,"37544":37545,"37545":37546,"37546":37547,"37547":37548,"37548":37549,"37549":37550,"37550":37551,"37551":37552,"37552":37553,"37553":37554,"37554":37555,"37555":37556,"37556":37557,"37557":37558,"37558":37559,"37559":37560,"37560":37561,"37561":37562,"37562":37563,"37563":37564,"37564":37565,"37565":37566,"37566":37567,"37567":37568,"37568":37569,"37569":37570,"37570":37571,"37571":37572,"37572":37573,"37573":37574,"37574":37575,"37575":37576,"37576":37577,"37577":37578,"37578":37579,"37579":37580,"37580":37581,"37581":37582,"37582":37583,"37583":37584,"37584":37585,"37585":37586,"37586":37587,"37587":37588,"37588":37589,"37589":37590,"37590":37591,"37591":37592,"37592":37593,"37593":37594,"37594":37595,"37595":37596,"37596":37597,"37597":37598,"37598":37599,"37599":37600,"37600":37601,"37601":37602,"37602":37603,"37603":37604,"37604":37605,"37605":37606,"37606":37607,"37607":37608,"37608":37609,"37609":37610,"37610":37611,"37611":37612,"37612":37613,"37613":37614,"37614":37615,"37615":37616,"37616":37617,"37617":37618,"37618":37619,"37619":37620,"37620":37621,"37621":37622,"37622":37623,"37623":37624,"37624":37625,"37625":37626,"37626":37627,"37627":37628,"37628":37629,"37629":37630,"37630":37631,"37631":37632,"37632":37633,"37633":37634,"37634":37635,"37635":37636,"37636":37637,"37637":37638,"37638":37639,"37639":37640,"37640":37641,"37641":37642,"37642":37643,"37643":37644,"37644":37645,"37645":37646,"37646":37647,"37647":37648,"37648":37649,"37649":37650,"37650":37651,"37651":37652,"37652":37653,"37653":37654,"37654":37655,"37655":37656,"37656":37657,"37657":37658,"37658":37659,"37659":37660,"37660":37661,"37661":37662,"37662":37663,"37663":37664,"37664":37665,"37665":37666,"37666":37667,"37667":37668,"37668":37669,"37669":37670,"37670":37671,"37671":37672,"37672":37673,"37673":37674,"37674":37675,"37675":37676,"37676":37677,"37677":37678,"37678":37679,"37679":37680,"37680":37681,"37681":37682,"37682":37683,"37683":37684,"37684":37685,"37685":37686,"37686":37687,"37687":37688,"37688":37689,"37689":37690,"37690":37691,"37691":37692,"37692":37693,"37693":37694,"37694":37695,"37695":37696,"37696":37697,"37697":37698,"37698":37699,"37699":37700,"37700":37701,"37701":37702,"37702":37703,"37703":37704,"37704":37705,"37705":37706,"37706":37707,"37707":37708,"37708":37709,"37709":37710,"37710":37711,"37711":37712,"37712":37713,"37713":37714,"37714":37715,"37715":37716,"37716":37717,"37717":37718,"37718":37719,"37719":37720,"37720":37721,"37721":37722,"37722":37723,"37723":37724,"37724":37725,"37725":37726,"37726":37727,"37727":37728,"37728":37729,"37729":37730,"37730":37731,"37731":37732,"37732":37733,"37733":37734,"37734":37735,"37735":37736,"37736":37737,"37737":37738,"37738":37739,"37739":37740,"37740":37741,"37741":37742,"37742":37743,"37743":37744,"37744":37745,"37745":37746,"37746":37747,"37747":37748,"37748":37749,"37749":37750,"37750":37751,"37751":37752,"37752":37753,"37753":37754,"37754":37755,"37755":37756,"37756":37757,"37757":37758,"37758":37759,"37759":37760,"37760":37761,"37761":37762,"37762":37763,"37763":37764,"37764":37765,"37765":37766,"37766":37767,"37767":37768,"37768":37769,"37769":37770,"37770":37771,"37771":37772,"37772":37773,"37773":37774,"37774":37775,"37775":37776,"37776":37777,"37777":37778,"37778":37779,"37779":37780,"37780":37781,"37781":37782,"37782":37783,"37783":37784,"37784":37785,"37785":37786,"37786":37787,"37787":37788,"37788":37789,"37789":37790,"37790":37791,"37791":37792,"37792":37793,"37793":37794,"37794":37795,"37795":37796,"37796":37797,"37797":37798,"37798":37799,"37799":37800,"37800":37801,"37801":37802,"37802":37803,"37803":37804,"37804":37805,"37805":37806,"37806":37807,"37807":37808,"37808":37809,"37809":37810,"37810":37811,"37811":37812,"37812":37813,"37813":37814,"37814":37815,"37815":37816,"37816":37817,"37817":37818,"37818":37819,"37819":37820,"37820":37821,"37821":37822,"37822":37823,"37823":37824,"37824":37825,"37825":37826,"37826":37827,"37827":37828,"37828":37829,"37829":37830,"37830":37831,"37831":37832,"37832":37833,"37833":37834,"37834":37835,"37835":37836,"37836":37837,"37837":37838,"37838":37839,"37839":37840,"37840":37841,"37841":37842,"37842":37843,"37843":37844,"37844":37845,"37845":37846,"37846":37847,"37847":37848,"37848":37849,"37849":37850,"37850":37851,"37851":37852,"37852":37853,"37853":37854,"37854":37855,"37855":37856,"37856":37857,"37857":37858,"37858":37859,"37859":37860,"37860":37861,"37861":37862,"37862":37863,"37863":37864,"37864":37865,"37865":37866,"37866":37867,"37867":37868,"37868":37869,"37869":37870,"37870":37871,"37871":37872,"37872":37873,"37873":37874,"37874":37875,"37875":37876,"37876":37877,"37877":37878,"37878":37879,"37879":37880,"37880":37881,"37881":37882,"37882":37883,"37883":37884,"37884":37885,"37885":37886,"37886":37887,"37887":37888,"37888":37889,"37889":37890,"37890":37891,"37891":37892,"37892":37893,"37893":37894,"37894":37895,"37895":37896,"37896":37897,"37897":37898,"37898":37899,"37899":37900,"37900":37901,"37901":37902,"37902":37903,"37903":37904,"37904":37905,"37905":37906,"37906":37907,"37907":37908,"37908":37909,"37909":37910,"37910":37911,"37911":37912,"37912":37913,"37913":37914,"37914":37915,"37915":37916,"37916":37917,"37917":37918,"37918":37919,"37919":37920,"37920":37921,"37921":37922,"37922":37923,"37923":37924,"37924":37925,"37925":37926,"37926":37927,"37927":37928,"37928":37929,"37929":37930,"37930":37931,"37931":37932,"37932":37933,"37933":37934,"37934":37935,"37935":37936,"37936":37937,"37937":37938,"37938":37939,"37939":37940,"37940":37941,"37941":37942,"37942":37943,"37943":37944,"37944":37945,"37945":37946,"37946":37947,"37947":37948,"37948":37949,"37949":37950,"37950":37951,"37951":37952,"37952":37953,"37953":37954,"37954":37955,"37955":37956,"37956":37957,"37957":37958,"37958":37959,"37959":37960,"37960":37961,"37961":37962,"37962":37963,"37963":37964,"37964":37965,"37965":37966,"37966":37967,"37967":37968,"37968":37969,"37969":37970,"37970":37971,"37971":37972,"37972":37973,"37973":37974,"37974":37975,"37975":37976,"37976":37977,"37977":37978,"37978":37979,"37979":37980,"37980":37981,"37981":37982,"37982":37983,"37983":37984,"37984":37985,"37985":37986,"37986":37987,"37987":37988,"37988":37989,"37989":37990,"37990":37991,"37991":37992,"37992":37993,"37993":37994,"37994":37995,"37995":37996,"37996":37997,"37997":37998,"37998":37999,"37999":38000,"38000":38001,"38001":38002,"38002":38003,"38003":38004,"38004":38005,"38005":38006,"38006":38007,"38007":38008,"38008":38009,"38009":38010,"38010":38011,"38011":38012,"38012":38013,"38013":38014,"38014":38015,"38015":38016,"38016":38017,"38017":38018,"38018":38019,"38019":38020,"38020":38021,"38021":38022,"38022":38023,"38023":38024,"38024":38025,"38025":38026,"38026":38027,"38027":38028,"38028":38029,"38029":38030,"38030":38031,"38031":38032,"38032":38033,"38033":38034,"38034":38035,"38035":38036,"38036":38037,"38037":38038,"38038":38039,"38039":38040,"38040":38041,"38041":38042,"38042":38043,"38043":38044,"38044":38045,"38045":38046,"38046":38047,"38047":38048,"38048":38049,"38049":38050,"38050":38051,"38051":38052,"38052":38053,"38053":38054,"38054":38055,"38055":38056,"38056":38057,"38057":38058,"38058":38059,"38059":38060,"38060":38061,"38061":38062,"38062":38063,"38063":38064,"38064":38065,"38065":38066,"38066":38067,"38067":38068,"38068":38069,"38069":38070,"38070":38071,"38071":38072,"38072":38073,"38073":38074,"38074":38075,"38075":38076,"38076":38077,"38077":38078,"38078":38079,"38079":38080,"38080":38081,"38081":38082,"38082":38083,"38083":38084,"38084":38085,"38085":38086,"38086":38087,"38087":38088,"38088":38089,"38089":38090,"38090":38091,"38091":38092,"38092":38093,"38093":38094,"38094":38095,"38095":38096,"38096":38097,"38097":38098,"38098":38099,"38099":38100,"38100":38101,"38101":38102,"38102":38103,"38103":38104,"38104":38105,"38105":38106,"38106":38107,"38107":38108,"38108":38109,"38109":38110,"38110":38111,"38111":38112,"38112":38113,"38113":38114,"38114":38115,"38115":38116,"38116":38117,"38117":38118,"38118":38119,"38119":38120,"38120":38121,"38121":38122,"38122":38123,"38123":38124,"38124":38125,"38125":38126,"38126":38127,"38127":38128,"38128":38129,"38129":38130,"38130":38131,"38131":38132,"38132":38133,"38133":38134,"38134":38135,"38135":38136,"38136":38137,"38137":38138,"38138":38139,"38139":38140,"38140":38141,"38141":38142,"38142":38143,"38143":38144,"38144":38145,"38145":38146,"38146":38147,"38147":38148,"38148":38149,"38149":38150,"38150":38151,"38151":38152,"38152":38153,"38153":38154,"38154":38155,"38155":38156,"38156":38157,"38157":38158,"38158":38159,"38159":38160,"38160":38161,"38161":38162,"38162":38163,"38163":38164,"38164":38165,"38165":38166,"38166":38167,"38167":38168,"38168":38169,"38169":38170,"38170":38171,"38171":38172,"38172":38173,"38173":38174,"38174":38175,"38175":38176,"38176":38177,"38177":38178,"38178":38179,"38179":38180,"38180":38181,"38181":38182,"38182":38183,"38183":38184,"38184":38185,"38185":38186,"38186":38187,"38187":38188,"38188":38189,"38189":38190,"38190":38191,"38191":38192,"38192":38193,"38193":38194,"38194":38195,"38195":38196,"38196":38197,"38197":38198,"38198":38199,"38199":38200,"38200":38201,"38201":38202,"38202":38203,"38203":38204,"38204":38205,"38205":38206,"38206":38207,"38207":38208,"38208":38209,"38209":38210,"38210":38211,"38211":38212,"38212":38213,"38213":38214,"38214":38215,"38215":38216,"38216":38217,"38217":38218,"38218":38219,"38219":38220,"38220":38221,"38221":38222,"38222":38223,"38223":38224,"38224":38225,"38225":38226,"38226":38227,"38227":38228,"38228":38229,"38229":38230,"38230":38231,"38231":38232,"38232":38233,"38233":38234,"38234":38235,"38235":38236,"38236":38237,"38237":38238,"38238":38239,"38239":38240,"38240":38241,"38241":38242,"38242":38243,"38243":38244,"38244":38245,"38245":38246,"38246":38247,"38247":38248,"38248":38249,"38249":38250,"38250":38251,"38251":38252,"38252":38253,"38253":38254,"38254":38255,"38255":38256,"38256":38257,"38257":38258,"38258":38259,"38259":38260,"38260":38261,"38261":38262,"38262":38263,"38263":38264,"38264":38265,"38265":38266,"38266":38267,"38267":38268,"38268":38269,"38269":38270,"38270":38271,"38271":38272,"38272":38273,"38273":38274,"38274":38275,"38275":38276,"38276":38277,"38277":38278,"38278":38279,"38279":38280,"38280":38281,"38281":38282,"38282":38283,"38283":38284,"38284":38285,"38285":38286,"38286":38287,"38287":38288,"38288":38289,"38289":38290,"38290":38291,"38291":38292,"38292":38293,"38293":38294,"38294":38295,"38295":38296,"38296":38297,"38297":38298,"38298":38299,"38299":38300,"38300":38301,"38301":38302,"38302":38303,"38303":38304,"38304":38305,"38305":38306,"38306":38307,"38307":38308,"38308":38309,"38309":38310,"38310":38311,"38311":38312,"38312":38313,"38313":38314,"38314":38315,"38315":38316,"38316":38317,"38317":38318,"38318":38319,"38319":38320,"38320":38321,"38321":38322,"38322":38323,"38323":38324,"38324":38325,"38325":38326,"38326":38327,"38327":38328,"38328":38329,"38329":38330,"38330":38331,"38331":38332,"38332":38333,"38333":38334,"38334":38335,"38335":38336,"38336":38337,"38337":38338,"38338":38339,"38339":38340,"38340":38341,"38341":38342,"38342":38343,"38343":38344,"38344":38345,"38345":38346,"38346":38347,"38347":38348,"38348":38349,"38349":38350,"38350":38351,"38351":38352,"38352":38353,"38353":38354,"38354":38355,"38355":38356,"38356":38357,"38357":38358,"38358":38359,"38359":38360,"38360":38361,"38361":38362,"38362":38363,"38363":38364,"38364":38365,"38365":38366,"38366":38367,"38367":38368,"38368":38369,"38369":38370,"38370":38371,"38371":38372,"38372":38373,"38373":38374,"38374":38375,"38375":38376,"38376":38377,"38377":38378,"38378":38379,"38379":38380,"38380":38381,"38381":38382,"38382":38383,"38383":38384,"38384":38385,"38385":38386,"38386":38387,"38387":38388,"38388":38389,"38389":38390,"38390":38391,"38391":38392,"38392":38393,"38393":38394,"38394":38395,"38395":38396,"38396":38397,"38397":38398,"38398":38399,"38399":38400,"38400":38401,"38401":38402,"38402":38403,"38403":38404,"38404":38405,"38405":38406,"38406":38407,"38407":38408,"38408":38409,"38409":38410,"38410":38411,"38411":38412,"38412":38413,"38413":38414,"38414":38415,"38415":38416,"38416":38417,"38417":38418,"38418":38419,"38419":38420,"38420":38421,"38421":38422,"38422":38423,"38423":38424,"38424":38425,"38425":38426,"38426":38427,"38427":38428,"38428":38429,"38429":38430,"38430":38431,"38431":38432,"38432":38433,"38433":38434,"38434":38435,"38435":38436,"38436":38437,"38437":38438,"38438":38439,"38439":38440,"38440":38441,"38441":38442,"38442":38443,"38443":38444,"38444":38445,"38445":38446,"38446":38447,"38447":38448,"38448":38449,"38449":38450,"38450":38451,"38451":38452,"38452":38453,"38453":38454,"38454":38455,"38455":38456,"38456":38457,"38457":38458,"38458":38459,"38459":38460,"38460":38461,"38461":38462,"38462":38463,"38463":38464,"38464":38465,"38465":38466,"38466":38467,"38467":38468,"38468":38469,"38469":38470,"38470":38471,"38471":38472,"38472":38473,"38473":38474,"38474":38475,"38475":38476,"38476":38477,"38477":38478,"38478":38479,"38479":38480,"38480":38481,"38481":38482,"38482":38483,"38483":38484,"38484":38485,"38485":38486,"38486":38487,"38487":38488,"38488":38489,"38489":38490,"38490":38491,"38491":38492,"38492":38493,"38493":38494,"38494":38495,"38495":38496,"38496":38497,"38497":38498,"38498":38499,"38499":38500,"38500":38501,"38501":38502,"38502":38503,"38503":38504,"38504":38505,"38505":38506,"38506":38507,"38507":38508,"38508":38509,"38509":38510,"38510":38511,"38511":38512,"38512":38513,"38513":38514,"38514":38515,"38515":38516,"38516":38517,"38517":38518,"38518":38519,"38519":38520,"38520":38521,"38521":38522,"38522":38523,"38523":38524,"38524":38525,"38525":38526,"38526":38527,"38527":38528,"38528":38529,"38529":38530,"38530":38531,"38531":38532,"38532":38533,"38533":38534,"38534":38535,"38535":38536,"38536":38537,"38537":38538,"38538":38539,"38539":38540,"38540":38541,"38541":38542,"38542":38543,"38543":38544,"38544":38545,"38545":38546,"38546":38547,"38547":38548,"38548":38549,"38549":38550,"38550":38551,"38551":38552,"38552":38553,"38553":38554,"38554":38555,"38555":38556,"38556":38557,"38557":38558,"38558":38559,"38559":38560,"38560":38561,"38561":38562,"38562":38563,"38563":38564,"38564":38565,"38565":38566,"38566":38567,"38567":38568,"38568":38569,"38569":38570,"38570":38571,"38571":38572,"38572":38573,"38573":38574,"38574":38575,"38575":38576,"38576":38577,"38577":38578,"38578":38579,"38579":38580,"38580":38581,"38581":38582,"38582":38583,"38583":38584,"38584":38585,"38585":38586,"38586":38587,"38587":38588,"38588":38589,"38589":38590,"38590":38591,"38591":38592,"38592":38593,"38593":38594,"38594":38595,"38595":38596,"38596":38597,"38597":38598,"38598":38599,"38599":38600,"38600":38601,"38601":38602,"38602":38603,"38603":38604,"38604":38605,"38605":38606,"38606":38607,"38607":38608,"38608":38609,"38609":38610,"38610":38611,"38611":38612,"38612":38613,"38613":38614,"38614":38615,"38615":38616,"38616":38617,"38617":38618,"38618":38619,"38619":38620,"38620":38621,"38621":38622,"38622":38623,"38623":38624,"38624":38625,"38625":38626,"38626":38627,"38627":38628,"38628":38629,"38629":38630,"38630":38631,"38631":38632,"38632":38633,"38633":38634,"38634":38635,"38635":38636,"38636":38637,"38637":38638,"38638":38639,"38639":38640,"38640":38641,"38641":38642,"38642":38643,"38643":38644,"38644":38645,"38645":38646,"38646":38647,"38647":38648,"38648":38649,"38649":38650,"38650":38651,"38651":38652,"38652":38653,"38653":38654,"38654":38655,"38655":38656,"38656":38657,"38657":38658,"38658":38659,"38659":38660,"38660":38661,"38661":38662,"38662":38663,"38663":38664,"38664":38665,"38665":38666,"38666":38667,"38667":38668,"38668":38669,"38669":38670,"38670":38671,"38671":38672,"38672":38673,"38673":38674,"38674":38675,"38675":38676,"38676":38677,"38677":38678,"38678":38679,"38679":38680,"38680":38681,"38681":38682,"38682":38683,"38683":38684,"38684":38685,"38685":38686,"38686":38687,"38687":38688,"38688":38689,"38689":38690,"38690":38691,"38691":38692,"38692":38693,"38693":38694,"38694":38695,"38695":38696,"38696":38697,"38697":38698,"38698":38699,"38699":38700,"38700":38701,"38701":38702,"38702":38703,"38703":38704,"38704":38705,"38705":38706,"38706":38707,"38707":38708,"38708":38709,"38709":38710,"38710":38711,"38711":38712,"38712":38713,"38713":38714,"38714":38715,"38715":38716,"38716":38717,"38717":38718,"38718":38719,"38719":38720,"38720":38721,"38721":38722,"38722":38723,"38723":38724,"38724":38725,"38725":38726,"38726":38727,"38727":38728,"38728":38729,"38729":38730,"38730":38731,"38731":38732,"38732":38733,"38733":38734,"38734":38735,"38735":38736,"38736":38737,"38737":38738,"38738":38739,"38739":38740,"38740":38741,"38741":38742,"38742":38743,"38743":38744,"38744":38745,"38745":38746,"38746":38747,"38747":38748,"38748":38749,"38749":38750,"38750":38751,"38751":38752,"38752":38753,"38753":38754,"38754":38755,"38755":38756,"38756":38757,"38757":38758,"38758":38759,"38759":38760,"38760":38761,"38761":38762,"38762":38763,"38763":38764,"38764":38765,"38765":38766,"38766":38767,"38767":38768,"38768":38769,"38769":38770,"38770":38771,"38771":38772,"38772":38773,"38773":38774,"38774":38775,"38775":38776,"38776":38777,"38777":38778,"38778":38779,"38779":38780,"38780":38781,"38781":38782,"38782":38783,"38783":38784,"38784":38785,"38785":38786,"38786":38787,"38787":38788,"38788":38789,"38789":38790,"38790":38791,"38791":38792,"38792":38793,"38793":38794,"38794":38795,"38795":38796,"38796":38797,"38797":38798,"38798":38799,"38799":38800,"38800":38801,"38801":38802,"38802":38803,"38803":38804,"38804":38805,"38805":38806,"38806":38807,"38807":38808,"38808":38809,"38809":38810,"38810":38811,"38811":38812,"38812":38813,"38813":38814,"38814":38815,"38815":38816,"38816":38817,"38817":38818,"38818":38819,"38819":38820,"38820":38821,"38821":38822,"38822":38823,"38823":38824,"38824":38825,"38825":38826,"38826":38827,"38827":38828,"38828":38829,"38829":38830,"38830":38831,"38831":38832,"38832":38833,"38833":38834,"38834":38835,"38835":38836,"38836":38837,"38837":38838,"38838":38839,"38839":38840,"38840":38841,"38841":38842,"38842":38843,"38843":38844,"38844":38845,"38845":38846,"38846":38847,"38847":38848,"38848":38849,"38849":38850,"38850":38851,"38851":38852,"38852":38853,"38853":38854,"38854":38855,"38855":38856,"38856":38857,"38857":38858,"38858":38859,"38859":38860,"38860":38861,"38861":38862,"38862":38863,"38863":38864,"38864":38865,"38865":38866,"38866":38867,"38867":38868,"38868":38869,"38869":38870,"38870":38871,"38871":38872,"38872":38873,"38873":38874,"38874":38875,"38875":38876,"38876":38877,"38877":38878,"38878":38879,"38879":38880,"38880":38881,"38881":38882,"38882":38883,"38883":38884,"38884":38885,"38885":38886,"38886":38887,"38887":38888,"38888":38889,"38889":38890,"38890":38891,"38891":38892,"38892":38893,"38893":38894,"38894":38895,"38895":38896,"38896":38897,"38897":38898,"38898":38899,"38899":38900,"38900":38901,"38901":38902,"38902":38903,"38903":38904,"38904":38905,"38905":38906,"38906":38907,"38907":38908,"38908":38909,"38909":38910,"38910":38911,"38911":38912,"38912":38913,"38913":38914,"38914":38915,"38915":38916,"38916":38917,"38917":38918,"38918":38919,"38919":38920,"38920":38921,"38921":38922,"38922":38923,"38923":38924,"38924":38925,"38925":38926,"38926":38927,"38927":38928,"38928":38929,"38929":38930,"38930":38931,"38931":38932,"38932":38933,"38933":38934,"38934":38935,"38935":38936,"38936":38937,"38937":38938,"38938":38939,"38939":38940,"38940":38941,"38941":38942,"38942":38943,"38943":38944,"38944":38945,"38945":38946,"38946":38947,"38947":38948,"38948":38949,"38949":38950,"38950":38951,"38951":38952,"38952":38953,"38953":38954,"38954":38955,"38955":38956,"38956":38957,"38957":38958,"38958":38959,"38959":38960,"38960":38961,"38961":38962,"38962":38963,"38963":38964,"38964":38965,"38965":38966,"38966":38967,"38967":38968,"38968":38969,"38969":38970,"38970":38971,"38971":38972,"38972":38973,"38973":38974,"38974":38975,"38975":38976,"38976":38977,"38977":38978,"38978":38979,"38979":38980,"38980":38981,"38981":38982,"38982":38983,"38983":38984,"38984":38985,"38985":38986,"38986":38987,"38987":38988,"38988":38989,"38989":38990,"38990":38991,"38991":38992,"38992":38993,"38993":38994,"38994":38995,"38995":38996,"38996":38997,"38997":38998,"38998":38999,"38999":39000,"39000":39001,"39001":39002,"39002":39003,"39003":39004,"39004":39005,"39005":39006,"39006":39007,"39007":39008,"39008":39009,"39009":39010,"39010":39011,"39011":39012,"39012":39013,"39013":39014,"39014":39015,"39015":39016,"39016":39017,"39017":39018,"39018":39019,"39019":39020,"39020":39021,"39021":39022,"39022":39023,"39023":39024,"39024":39025,"39025":39026,"39026":39027,"39027":39028,"39028":39029,"39029":39030,"39030":39031,"39031":39032,"39032":39033,"39033":39034,"39034":39035,"39035":39036,"39036":39037,"39037":39038,"39038":39039,"39039":39040,"39040":39041,"39041":39042,"39042":39043,"39043":39044,"39044":39045,"39045":39046,"39046":39047,"39047":39048,"39048":39049,"39049":39050,"39050":39051,"39051":39052,"39052":39053,"39053":39054,"39054":39055,"39055":39056,"39056":39057,"39057":39058,"39058":39059,"39059":39060,"39060":39061,"39061":39062,"39062":39063,"39063":39064,"39064":39065,"39065":39066,"39066":39067,"39067":39068,"39068":39069,"39069":39070,"39070":39071,"39071":39072,"39072":39073,"39073":39074,"39074":39075,"39075":39076,"39076":39077,"39077":39078,"39078":39079,"39079":39080,"39080":39081,"39081":39082,"39082":39083,"39083":39084,"39084":39085,"39085":39086,"39086":39087,"39087":39088,"39088":39089,"39089":39090,"39090":39091,"39091":39092,"39092":39093,"39093":39094,"39094":39095,"39095":39096,"39096":39097,"39097":39098,"39098":39099,"39099":39100,"39100":39101,"39101":39102,"39102":39103,"39103":39104,"39104":39105,"39105":39106,"39106":39107,"39107":39108,"39108":39109,"39109":39110,"39110":39111,"39111":39112,"39112":39113,"39113":39114,"39114":39115,"39115":39116,"39116":39117,"39117":39118,"39118":39119,"39119":39120,"39120":39121,"39121":39122,"39122":39123,"39123":39124,"39124":39125,"39125":39126,"39126":39127,"39127":39128,"39128":39129,"39129":39130,"39130":39131,"39131":39132,"39132":39133,"39133":39134,"39134":39135,"39135":39136,"39136":39137,"39137":39138,"39138":39139,"39139":39140,"39140":39141,"39141":39142,"39142":39143,"39143":39144,"39144":39145,"39145":39146,"39146":39147,"39147":39148,"39148":39149,"39149":39150,"39150":39151,"39151":39152,"39152":39153,"39153":39154,"39154":39155,"39155":39156,"39156":39157,"39157":39158,"39158":39159,"39159":39160,"39160":39161,"39161":39162,"39162":39163,"39163":39164,"39164":39165,"39165":39166,"39166":39167,"39167":39168,"39168":39169,"39169":39170,"39170":39171,"39171":39172,"39172":39173,"39173":39174,"39174":39175,"39175":39176,"39176":39177,"39177":39178,"39178":39179,"39179":39180,"39180":39181,"39181":39182,"39182":39183,"39183":39184,"39184":39185,"39185":39186,"39186":39187,"39187":39188,"39188":39189,"39189":39190,"39190":39191,"39191":39192,"39192":39193,"39193":39194,"39194":39195,"39195":39196,"39196":39197,"39197":39198,"39198":39199,"39199":39200,"39200":39201,"39201":39202,"39202":39203,"39203":39204,"39204":39205,"39205":39206,"39206":39207,"39207":39208,"39208":39209,"39209":39210,"39210":39211,"39211":39212,"39212":39213,"39213":39214,"39214":39215,"39215":39216,"39216":39217,"39217":39218,"39218":39219,"39219":39220,"39220":39221,"39221":39222,"39222":39223,"39223":39224,"39224":39225,"39225":39226,"39226":39227,"39227":39228,"39228":39229,"39229":39230,"39230":39231,"39231":39232,"39232":39233,"39233":39234,"39234":39235,"39235":39236,"39236":39237,"39237":39238,"39238":39239,"39239":39240,"39240":39241,"39241":39242,"39242":39243,"39243":39244,"39244":39245,"39245":39246,"39246":39247,"39247":39248,"39248":39249,"39249":39250,"39250":39251,"39251":39252,"39252":39253,"39253":39254,"39254":39255,"39255":39256,"39256":39257,"39257":39258,"39258":39259,"39259":39260,"39260":39261,"39261":39262,"39262":39263,"39263":39264,"39264":39265,"39265":39266,"39266":39267,"39267":39268,"39268":39269,"39269":39270,"39270":39271,"39271":39272,"39272":39273,"39273":39274,"39274":39275,"39275":39276,"39276":39277,"39277":39278,"39278":39279,"39279":39280,"39280":39281,"39281":39282,"39282":39283,"39283":39284,"39284":39285,"39285":39286,"39286":39287,"39287":39288,"39288":39289,"39289":39290,"39290":39291,"39291":39292,"39292":39293,"39293":39294,"39294":39295,"39295":39296,"39296":39297,"39297":39298,"39298":39299,"39299":39300,"39300":39301,"39301":39302,"39302":39303,"39303":39304,"39304":39305,"39305":39306,"39306":39307,"39307":39308,"39308":39309,"39309":39310,"39310":39311,"39311":39312,"39312":39313,"39313":39314,"39314":39315,"39315":39316,"39316":39317,"39317":39318,"39318":39319,"39319":39320,"39320":39321,"39321":39322,"39322":39323,"39323":39324,"39324":39325,"39325":39326,"39326":39327,"39327":39328,"39328":39329,"39329":39330,"39330":39331,"39331":39332,"39332":39333,"39333":39334,"39334":39335,"39335":39336,"39336":39337,"39337":39338,"39338":39339,"39339":39340,"39340":39341,"39341":39342,"39342":39343,"39343":39344,"39344":39345,"39345":39346,"39346":39347,"39347":39348,"39348":39349,"39349":39350,"39350":39351,"39351":39352,"39352":39353,"39353":39354,"39354":39355,"39355":39356,"39356":39357,"39357":39358,"39358":39359,"39359":39360,"39360":39361,"39361":39362,"39362":39363,"39363":39364,"39364":39365,"39365":39366,"39366":39367,"39367":39368,"39368":39369,"39369":39370,"39370":39371,"39371":39372,"39372":39373,"39373":39374,"39374":39375,"39375":39376,"39376":39377,"39377":39378,"39378":39379,"39379":39380,"39380":39381,"39381":39382,"39382":39383,"39383":39384,"39384":39385,"39385":39386,"39386":39387,"39387":39388,"39388":39389,"39389":39390,"39390":39391,"39391":39392,"39392":39393,"39393":39394,"39394":39395,"39395":39396,"39396":39397,"39397":39398,"39398":39399,"39399":39400,"39400":39401,"39401":39402,"39402":39403,"39403":39404,"39404":39405,"39405":39406,"39406":39407,"39407":39408,"39408":39409,"39409":39410,"39410":39411,"39411":39412,"39412":39413,"39413":39414,"39414":39415,"39415":39416,"39416":39417,"39417":39418,"39418":39419,"39419":39420,"39420":39421,"39421":39422,"39422":39423,"39423":39424,"39424":39425,"39425":39426,"39426":39427,"39427":39428,"39428":39429,"39429":39430,"39430":39431,"39431":39432,"39432":39433,"39433":39434,"39434":39435,"39435":39436,"39436":39437,"39437":39438,"39438":39439,"39439":39440,"39440":39441,"39441":39442,"39442":39443,"39443":39444,"39444":39445,"39445":39446,"39446":39447,"39447":39448,"39448":39449,"39449":39450,"39450":39451,"39451":39452,"39452":39453,"39453":39454,"39454":39455,"39455":39456,"39456":39457,"39457":39458,"39458":39459,"39459":39460,"39460":39461,"39461":39462,"39462":39463,"39463":39464,"39464":39465,"39465":39466,"39466":39467,"39467":39468,"39468":39469,"39469":39470,"39470":39471,"39471":39472,"39472":39473,"39473":39474,"39474":39475,"39475":39476,"39476":39477,"39477":39478,"39478":39479,"39479":39480,"39480":39481,"39481":39482,"39482":39483,"39483":39484,"39484":39485,"39485":39486,"39486":39487,"39487":39488,"39488":39489,"39489":39490,"39490":39491,"39491":39492,"39492":39493,"39493":39494,"39494":39495,"39495":39496,"39496":39497,"39497":39498,"39498":39499,"39499":39500,"39500":39501,"39501":39502,"39502":39503,"39503":39504,"39504":39505,"39505":39506,"39506":39507,"39507":39508,"39508":39509,"39509":39510,"39510":39511,"39511":39512,"39512":39513,"39513":39514,"39514":39515,"39515":39516,"39516":39517,"39517":39518,"39518":39519,"39519":39520,"39520":39521,"39521":39522,"39522":39523,"39523":39524,"39524":39525,"39525":39526,"39526":39527,"39527":39528,"39528":39529,"39529":39530,"39530":39531,"39531":39532,"39532":39533,"39533":39534,"39534":39535,"39535":39536,"39536":39537,"39537":39538,"39538":39539,"39539":39540,"39540":39541,"39541":39542,"39542":39543,"39543":39544,"39544":39545,"39545":39546,"39546":39547,"39547":39548,"39548":39549,"39549":39550,"39550":39551,"39551":39552,"39552":39553,"39553":39554,"39554":39555,"39555":39556,"39556":39557,"39557":39558,"39558":39559,"39559":39560,"39560":39561,"39561":39562,"39562":39563,"39563":39564,"39564":39565,"39565":39566,"39566":39567,"39567":39568,"39568":39569,"39569":39570,"39570":39571,"39571":39572,"39572":39573,"39573":39574,"39574":39575,"39575":39576,"39576":39577,"39577":39578,"39578":39579,"39579":39580,"39580":39581,"39581":39582,"39582":39583,"39583":39584,"39584":39585,"39585":39586,"39586":39587,"39587":39588,"39588":39589,"39589":39590,"39590":39591,"39591":39592,"39592":39593,"39593":39594,"39594":39595,"39595":39596,"39596":39597,"39597":39598,"39598":39599,"39599":39600,"39600":39601,"39601":39602,"39602":39603,"39603":39604,"39604":39605,"39605":39606,"39606":39607,"39607":39608,"39608":39609,"39609":39610,"39610":39611,"39611":39612,"39612":39613,"39613":39614,"39614":39615,"39615":39616,"39616":39617,"39617":39618,"39618":39619,"39619":39620,"39620":39621,"39621":39622,"39622":39623,"39623":39624,"39624":39625,"39625":39626,"39626":39627,"39627":39628,"39628":39629,"39629":39630,"39630":39631,"39631":39632,"39632":39633,"39633":39634,"39634":39635,"39635":39636,"39636":39637,"39637":39638,"39638":39639,"39639":39640,"39640":39641,"39641":39642,"39642":39643,"39643":39644,"39644":39645,"39645":39646,"39646":39647,"39647":39648,"39648":39649,"39649":39650,"39650":39651,"39651":39652,"39652":39653,"39653":39654,"39654":39655,"39655":39656,"39656":39657,"39657":39658,"39658":39659,"39659":39660,"39660":39661,"39661":39662,"39662":39663,"39663":39664,"39664":39665,"39665":39666,"39666":39667,"39667":39668,"39668":39669,"39669":39670,"39670":39671,"39671":39672,"39672":39673,"39673":39674,"39674":39675,"39675":39676,"39676":39677,"39677":39678,"39678":39679,"39679":39680,"39680":39681,"39681":39682,"39682":39683,"39683":39684,"39684":39685,"39685":39686,"39686":39687,"39687":39688,"39688":39689,"39689":39690,"39690":39691,"39691":39692,"39692":39693,"39693":39694,"39694":39695,"39695":39696,"39696":39697,"39697":39698,"39698":39699,"39699":39700,"39700":39701,"39701":39702,"39702":39703,"39703":39704,"39704":39705,"39705":39706,"39706":39707,"39707":39708,"39708":39709,"39709":39710,"39710":39711,"39711":39712,"39712":39713,"39713":39714,"39714":39715,"39715":39716,"39716":39717,"39717":39718,"39718":39719,"39719":39720,"39720":39721,"39721":39722,"39722":39723,"39723":39724,"39724":39725,"39725":39726,"39726":39727,"39727":39728,"39728":39729,"39729":39730,"39730":39731,"39731":39732,"39732":39733,"39733":39734,"39734":39735,"39735":39736,"39736":39737,"39737":39738,"39738":39739,"39739":39740,"39740":39741,"39741":39742,"39742":39743,"39743":39744,"39744":39745,"39745":39746,"39746":39747,"39747":39748,"39748":39749,"39749":39750,"39750":39751,"39751":39752,"39752":39753,"39753":39754,"39754":39755,"39755":39756,"39756":39757,"39757":39758,"39758":39759,"39759":39760,"39760":39761,"39761":39762,"39762":39763,"39763":39764,"39764":39765,"39765":39766,"39766":39767,"39767":39768,"39768":39769,"39769":39770,"39770":39771,"39771":39772,"39772":39773,"39773":39774,"39774":39775,"39775":39776,"39776":39777,"39777":39778,"39778":39779,"39779":39780,"39780":39781,"39781":39782,"39782":39783,"39783":39784,"39784":39785,"39785":39786,"39786":39787,"39787":39788,"39788":39789,"39789":39790,"39790":39791,"39791":39792,"39792":39793,"39793":39794,"39794":39795,"39795":39796,"39796":39797,"39797":39798,"39798":39799,"39799":39800,"39800":39801,"39801":39802,"39802":39803,"39803":39804,"39804":39805,"39805":39806,"39806":39807,"39807":39808,"39808":39809,"39809":39810,"39810":39811,"39811":39812,"39812":39813,"39813":39814,"39814":39815,"39815":39816,"39816":39817,"39817":39818,"39818":39819,"39819":39820,"39820":39821,"39821":39822,"39822":39823,"39823":39824,"39824":39825,"39825":39826,"39826":39827,"39827":39828,"39828":39829,"39829":39830,"39830":39831,"39831":39832,"39832":39833,"39833":39834,"39834":39835,"39835":39836,"39836":39837,"39837":39838,"39838":39839,"39839":39840,"39840":39841,"39841":39842,"39842":39843,"39843":39844,"39844":39845,"39845":39846,"39846":39847,"39847":39848,"39848":39849,"39849":39850,"39850":39851,"39851":39852,"39852":39853,"39853":39854,"39854":39855,"39855":39856,"39856":39857,"39857":39858,"39858":39859,"39859":39860,"39860":39861,"39861":39862,"39862":39863,"39863":39864,"39864":39865,"39865":39866,"39866":39867,"39867":39868,"39868":39869,"39869":39870,"39870":39871,"39871":39872,"39872":39873,"39873":39874,"39874":39875,"39875":39876,"39876":39877,"39877":39878,"39878":39879,"39879":39880,"39880":39881,"39881":39882,"39882":39883,"39883":39884,"39884":39885,"39885":39886,"39886":39887,"39887":39888,"39888":39889,"39889":39890,"39890":39891,"39891":39892,"39892":39893,"39893":39894,"39894":39895,"39895":39896,"39896":39897,"39897":39898,"39898":39899,"39899":39900,"39900":39901,"39901":39902,"39902":39903,"39903":39904,"39904":39905,"39905":39906,"39906":39907,"39907":39908,"39908":39909,"39909":39910,"39910":39911,"39911":39912,"39912":39913,"39913":39914,"39914":39915,"39915":39916,"39916":39917,"39917":39918,"39918":39919,"39919":39920,"39920":39921,"39921":39922,"39922":39923,"39923":39924,"39924":39925,"39925":39926,"39926":39927,"39927":39928,"39928":39929,"39929":39930,"39930":39931,"39931":39932,"39932":39933,"39933":39934,"39934":39935,"39935":39936,"39936":39937,"39937":39938,"39938":39939,"39939":39940,"39940":39941,"39941":39942,"39942":39943,"39943":39944,"39944":39945,"39945":39946,"39946":39947,"39947":39948,"39948":39949,"39949":39950,"39950":39951,"39951":39952,"39952":39953,"39953":39954,"39954":39955,"39955":39956,"39956":39957,"39957":39958,"39958":39959,"39959":39960,"39960":39961,"39961":39962,"39962":39963,"39963":39964,"39964":39965,"39965":39966,"39966":39967,"39967":39968,"39968":39969,"39969":39970,"39970":39971,"39971":39972,"39972":39973,"39973":39974,"39974":39975,"39975":39976,"39976":39977,"39977":39978,"39978":39979,"39979":39980,"39980":39981,"39981":39982,"39982":39983,"39983":39984,"39984":39985,"39985":39986,"39986":39987,"39987":39988,"39988":39989,"39989":39990,"39990":39991,"39991":39992,"39992":39993,"39993":39994,"39994":39995,"39995":39996,"39996":39997,"39997":39998,"39998":39999,"39999":40000,"40000":40001,"40001":40002,"40002":40003,"40003":40004,"40004":40005,"40005":40006,"40006":40007,"40007":40008,"40008":40009,"40009":40010,"40010":40011,"40011":40012,"40012":40013,"40013":40014,"40014":40015,"40015":40016,"40016":40017,"40017":40018,"40018":40019,"40019":40020,"40020":40021,"40021":40022,"40022":40023,"40023":40024,"40024":40025,"40025":40026,"40026":40027,"40027":40028,"40028":40029,"40029":40030,"40030":40031,"40031":40032,"40032":40033,"40033":40034,"40034":40035,"40035":40036,"40036":40037,"40037":40038,"40038":40039,"40039":40040,"40040":40041,"40041":40042,"40042":40043,"40043":40044,"40044":40045,"40045":40046,"40046":40047,"40047":40048,"40048":40049,"40049":40050,"40050":40051,"40051":40052,"40052":40053,"40053":40054,"40054":40055,"40055":40056,"40056":40057,"40057":40058,"40058":40059,"40059":40060,"40060":40061,"40061":40062,"40062":40063,"40063":40064,"40064":40065,"40065":40066,"40066":40067,"40067":40068,"40068":40069,"40069":40070,"40070":40071,"40071":40072,"40072":40073,"40073":40074,"40074":40075,"40075":40076,"40076":40077,"40077":40078,"40078":40079,"40079":40080,"40080":40081,"40081":40082,"40082":40083,"40083":40084,"40084":40085,"40085":40086,"40086":40087,"40087":40088,"40088":40089,"40089":40090,"40090":40091,"40091":40092,"40092":40093,"40093":40094,"40094":40095,"40095":40096,"40096":40097,"40097":40098,"40098":40099,"40099":40100,"40100":40101,"40101":40102,"40102":40103,"40103":40104,"40104":40105,"40105":40106,"40106":40107,"40107":40108,"40108":40109,"40109":40110,"40110":40111,"40111":40112,"40112":40113,"40113":40114,"40114":40115,"40115":40116,"40116":40117,"40117":40118,"40118":40119,"40119":40120,"40120":40121,"40121":40122,"40122":40123,"40123":40124,"40124":40125,"40125":40126,"40126":40127,"40127":40128,"40128":40129,"40129":40130,"40130":40131,"40131":40132,"40132":40133,"40133":40134,"40134":40135,"40135":40136,"40136":40137,"40137":40138,"40138":40139,"40139":40140,"40140":40141,"40141":40142,"40142":40143,"40143":40144,"40144":40145,"40145":40146,"40146":40147,"40147":40148,"40148":40149,"40149":40150,"40150":40151,"40151":40152,"40152":40153,"40153":40154,"40154":40155,"40155":40156,"40156":40157,"40157":40158,"40158":40159,"40159":40160,"40160":40161,"40161":40162,"40162":40163,"40163":40164,"40164":40165,"40165":40166,"40166":40167,"40167":40168,"40168":40169,"40169":40170,"40170":40171,"40171":40172,"40172":40173,"40173":40174,"40174":40175,"40175":40176,"40176":40177,"40177":40178,"40178":40179,"40179":40180,"40180":40181,"40181":40182,"40182":40183,"40183":40184,"40184":40185,"40185":40186,"40186":40187,"40187":40188,"40188":40189,"40189":40190,"40190":40191,"40191":40192,"40192":40193,"40193":40194,"40194":40195,"40195":40196,"40196":40197,"40197":40198,"40198":40199,"40199":40200,"40200":40201,"40201":40202,"40202":40203,"40203":40204,"40204":40205,"40205":40206,"40206":40207,"40207":40208,"40208":40209,"40209":40210,"40210":40211,"40211":40212,"40212":40213,"40213":40214,"40214":40215,"40215":40216,"40216":40217,"40217":40218,"40218":40219,"40219":40220,"40220":40221,"40221":40222,"40222":40223,"40223":40224,"40224":40225,"40225":40226,"40226":40227,"40227":40228,"40228":40229,"40229":40230,"40230":40231,"40231":40232,"40232":40233,"40233":40234,"40234":40235,"40235":40236,"40236":40237,"40237":40238,"40238":40239,"40239":40240,"40240":40241,"40241":40242,"40242":40243,"40243":40244,"40244":40245,"40245":40246,"40246":40247,"40247":40248,"40248":40249,"40249":40250,"40250":40251,"40251":40252,"40252":40253,"40253":40254,"40254":40255,"40255":40256,"40256":40257,"40257":40258,"40258":40259,"40259":40260,"40260":40261,"40261":40262,"40262":40263,"40263":40264,"40264":40265,"40265":40266,"40266":40267,"40267":40268,"40268":40269,"40269":40270,"40270":40271,"40271":40272,"40272":40273,"40273":40274,"40274":40275,"40275":40276,"40276":40277,"40277":40278,"40278":40279,"40279":40280,"40280":40281,"40281":40282,"40282":40283,"40283":40284,"40284":40285,"40285":40286,"40286":40287,"40287":40288,"40288":40289,"40289":40290,"40290":40291,"40291":40292,"40292":40293,"40293":40294,"40294":40295,"40295":40296,"40296":40297,"40297":40298,"40298":40299,"40299":40300,"40300":40301,"40301":40302,"40302":40303,"40303":40304,"40304":40305,"40305":40306,"40306":40307,"40307":40308,"40308":40309,"40309":40310,"40310":40311,"40311":40312,"40312":40313,"40313":40314,"40314":40315,"40315":40316,"40316":40317,"40317":40318,"40318":40319,"40319":40320,"40320":40321,"40321":40322,"40322":40323,"40323":40324,"40324":40325,"40325":40326,"40326":40327,"40327":40328,"40328":40329,"40329":40330,"40330":40331,"40331":40332,"40332":40333,"40333":40334,"40334":40335,"40335":40336,"40336":40337,"40337":40338,"40338":40339,"40339":40340,"40340":40341,"40341":40342,"40342":40343,"40343":40344,"40344":40345,"40345":40346,"40346":40347,"40347":40348,"40348":40349,"40349":40350,"40350":40351,"40351":40352,"40352":40353,"40353":40354,"40354":40355,"40355":40356,"40356":40357,"40357":40358,"40358":40359,"40359":40360,"40360":40361,"40361":40362,"40362":40363,"40363":40364,"40364":40365,"40365":40366,"40366":40367,"40367":40368,"40368":40369,"40369":40370,"40370":40371,"40371":40372,"40372":40373,"40373":40374,"40374":40375,"40375":40376,"40376":40377,"40377":40378,"40378":40379,"40379":40380,"40380":40381,"40381":40382,"40382":40383,"40383":40384,"40384":40385,"40385":40386,"40386":40387,"40387":40388,"40388":40389,"40389":40390,"40390":40391,"40391":40392,"40392":40393,"40393":40394,"40394":40395,"40395":40396,"40396":40397,"40397":40398,"40398":40399,"40399":40400,"40400":40401,"40401":40402,"40402":40403,"40403":40404,"40404":40405,"40405":40406,"40406":40407,"40407":40408,"40408":40409,"40409":40410,"40410":40411,"40411":40412,"40412":40413,"40413":40414,"40414":40415,"40415":40416,"40416":40417,"40417":40418,"40418":40419,"40419":40420,"40420":40421,"40421":40422,"40422":40423,"40423":40424,"40424":40425,"40425":40426,"40426":40427,"40427":40428,"40428":40429,"40429":40430,"40430":40431,"40431":40432,"40432":40433,"40433":40434,"40434":40435,"40435":40436,"40436":40437,"40437":40438,"40438":40439,"40439":40440,"40440":40441,"40441":40442,"40442":40443,"40443":40444,"40444":40445,"40445":40446,"40446":40447,"40447":40448,"40448":40449,"40449":40450,"40450":40451,"40451":40452,"40452":40453,"40453":40454,"40454":40455,"40455":40456,"40456":40457,"40457":40458,"40458":40459,"40459":40460,"40460":40461,"40461":40462,"40462":40463,"40463":40464,"40464":40465,"40465":40466,"40466":40467,"40467":40468,"40468":40469,"40469":40470,"40470":40471,"40471":40472,"40472":40473,"40473":40474,"40474":40475,"40475":40476,"40476":40477,"40477":40478,"40478":40479,"40479":40480,"40480":40481,"40481":40482,"40482":40483,"40483":40484,"40484":40485,"40485":40486,"40486":40487,"40487":40488,"40488":40489,"40489":40490,"40490":40491,"40491":40492,"40492":40493,"40493":40494,"40494":40495,"40495":40496,"40496":40497,"40497":40498,"40498":40499,"40499":40500,"40500":40501,"40501":40502,"40502":40503,"40503":40504,"40504":40505,"40505":40506,"40506":40507,"40507":40508,"40508":40509,"40509":40510,"40510":40511,"40511":40512,"40512":40513,"40513":40514,"40514":40515,"40515":40516,"40516":40517,"40517":40518,"40518":40519,"40519":40520,"40520":40521,"40521":40522,"40522":40523,"40523":40524,"40524":40525,"40525":40526,"40526":40527,"40527":40528,"40528":40529,"40529":40530,"40530":40531,"40531":40532,"40532":40533,"40533":40534,"40534":40535,"40535":40536,"40536":40537,"40537":40538,"40538":40539,"40539":40540,"40540":40541,"40541":40542,"40542":40543,"40543":40544,"40544":40545,"40545":40546,"40546":40547,"40547":40548,"40548":40549,"40549":40550,"40550":40551,"40551":40552,"40552":40553,"40553":40554,"40554":40555,"40555":40556,"40556":40557,"40557":40558,"40558":40559,"40559":40560,"40560":40561,"40561":40562,"40562":40563,"40563":40564,"40564":40565,"40565":40566,"40566":40567,"40567":40568,"40568":40569,"40569":40570,"40570":40571,"40571":40572,"40572":40573,"40573":40574,"40574":40575,"40575":40576,"40576":40577,"40577":40578,"40578":40579,"40579":40580,"40580":40581,"40581":40582,"40582":40583,"40583":40584,"40584":40585,"40585":40586,"40586":40587,"40587":40588,"40588":40589,"40589":40590,"40590":40591,"40591":40592,"40592":40593,"40593":40594,"40594":40595,"40595":40596,"40596":40597,"40597":40598,"40598":40599,"40599":40600,"40600":40601,"40601":40602,"40602":40603,"40603":40604,"40604":40605,"40605":40606,"40606":40607,"40607":40608,"40608":40609,"40609":40610,"40610":40611,"40611":40612,"40612":40613,"40613":40614,"40614":40615,"40615":40616,"40616":40617,"40617":40618,"40618":40619,"40619":40620,"40620":40621,"40621":40622,"40622":40623,"40623":40624,"40624":40625,"40625":40626,"40626":40627,"40627":40628,"40628":40629,"40629":40630,"40630":40631,"40631":40632,"40632":40633,"40633":40634,"40634":40635,"40635":40636,"40636":40637,"40637":40638,"40638":40639,"40639":40640,"40640":40641,"40641":40642,"40642":40643,"40643":40644,"40644":40645,"40645":40646,"40646":40647,"40647":40648,"40648":40649,"40649":40650,"40650":40651,"40651":40652,"40652":40653,"40653":40654,"40654":40655,"40655":40656,"40656":40657,"40657":40658,"40658":40659,"40659":40660,"40660":40661,"40661":40662,"40662":40663,"40663":40664,"40664":40665,"40665":40666,"40666":40667,"40667":40668,"40668":40669,"40669":40670,"40670":40671,"40671":40672,"40672":40673,"40673":40674,"40674":40675,"40675":40676,"40676":40677,"40677":40678,"40678":40679,"40679":40680,"40680":40681,"40681":40682,"40682":40683,"40683":40684,"40684":40685,"40685":40686,"40686":40687,"40687":40688,"40688":40689,"40689":40690,"40690":40691,"40691":40692,"40692":40693,"40693":40694,"40694":40695,"40695":40696,"40696":40697,"40697":40698,"40698":40699,"40699":40700,"40700":40701,"40701":40702,"40702":40703,"40703":40704,"40704":40705,"40705":40706,"40706":40707,"40707":40708,"40708":40709,"40709":40710,"40710":40711,"40711":40712,"40712":40713,"40713":40714,"40714":40715,"40715":40716,"40716":40717,"40717":40718,"40718":40719,"40719":40720,"40720":40721,"40721":40722,"40722":40723,"40723":40724,"40724":40725,"40725":40726,"40726":40727,"40727":40728,"40728":40729,"40729":40730,"40730":40731,"40731":40732,"40732":40733,"40733":40734,"40734":40735,"40735":40736,"40736":40737,"40737":40738,"40738":40739,"40739":40740,"40740":40741,"40741":40742,"40742":40743,"40743":40744,"40744":40745,"40745":40746,"40746":40747,"40747":40748,"40748":40749,"40749":40750,"40750":40751,"40751":40752,"40752":40753,"40753":40754,"40754":40755,"40755":40756,"40756":40757,"40757":40758,"40758":40759,"40759":40760,"40760":40761,"40761":40762,"40762":40763,"40763":40764,"40764":40765,"40765":40766,"40766":40767,"40767":40768,"40768":40769,"40769":40770,"40770":40771,"40771":40772,"40772":40773,"40773":40774,"40774":40775,"40775":40776,"40776":40777,"40777":40778,"40778":40779,"40779":40780,"40780":40781,"40781":40782,"40782":40783,"40783":40784,"40784":40785,"40785":40786,"40786":40787,"40787":40788,"40788":40789,"40789":40790,"40790":40791,"40791":40792,"40792":40793,"40793":40794,"40794":40795,"40795":40796,"40796":40797,"40797":40798,"40798":40799,"40799":40800,"40800":40801,"40801":40802,"40802":40803,"40803":40804,"40804":40805,"40805":40806,"40806":40807,"40807":40808,"40808":40809,"40809":40810,"40810":40811,"40811":40812,"40812":40813,"40813":40814,"40814":40815,"40815":40816,"40816":40817,"40817":40818,"40818":40819,"40819":40820,"40820":40821,"40821":40822,"40822":40823,"40823":40824,"40824":40825,"40825":40826,"40826":40827,"40827":40828,"40828":40829,"40829":40830,"40830":40831,"40831":40832,"40832":40833,"40833":40834,"40834":40835,"40835":40836,"40836":40837,"40837":40838,"40838":40839,"40839":40840,"40840":40841,"40841":40842,"40842":40843,"40843":40844,"40844":40845,"40845":40846,"40846":40847,"40847":40848,"40848":40849,"40849":40850,"40850":40851,"40851":40852,"40852":40853,"40853":40854,"40854":40855,"40855":40856,"40856":40857,"40857":40858,"40858":40859,"40859":40860,"40860":40861,"40861":40862,"40862":40863,"40863":40864,"40864":40865,"40865":40866,"40866":40867,"40867":40868,"40868":40869,"40869":40870,"40870":40871,"40871":40872,"40872":40873,"40873":40874,"40874":40875,"40875":40876,"40876":40877,"40877":40878,"40878":40879,"40879":40880,"40880":40881,"40881":40882,"40882":40883,"40883":40884,"40884":40885,"40885":40886,"40886":40887,"40887":40888,"40888":40889,"40889":40890,"40890":40891,"40891":40892,"40892":40893,"40893":40894,"40894":40895,"40895":40896,"40896":40897,"40897":40898,"40898":40899,"40899":40900,"40900":40901,"40901":40902,"40902":40903,"40903":40904,"40904":40905,"40905":40906,"40906":40907,"40907":40908,"40908":40909,"40909":40910,"40910":40911,"40911":40912,"40912":40913,"40913":40914,"40914":40915,"40915":40916,"40916":40917,"40917":40918,"40918":40919,"40919":40920,"40920":40921,"40921":40922,"40922":40923,"40923":40924,"40924":40925,"40925":40926,"40926":40927,"40927":40928,"40928":40929,"40929":40930,"40930":40931,"40931":40932,"40932":40933,"40933":40934,"40934":40935,"40935":40936,"40936":40937,"40937":40938,"40938":40939,"40939":40940,"40940":40941,"40941":40942,"40942":40943,"40943":40944,"40944":40945,"40945":40946,"40946":40947,"40947":40948,"40948":40949,"40949":40950,"40950":40951,"40951":40952,"40952":40953,"40953":40954,"40954":40955,"40955":40956,"40956":40957,"40957":40958,"40958":40959,"40959":40960,"40960":40961,"40961":40962,"40962":40963,"40963":40964,"40964":40965,"40965":40966,"40966":40967,"40967":40968,"40968":40969,"40969":40970,"40970":40971,"40971":40972,"40972":40973,"40973":40974,"40974":40975,"40975":40976,"40976":40977,"40977":40978,"40978":40979,"40979":40980,"40980":40981,"40981":40982,"40982":40983,"40983":40984,"40984":40985,"40985":40986,"40986":40987,"40987":40988,"40988":40989,"40989":40990,"40990":40991,"40991":40992,"40992":40993,"40993":40994,"40994":40995,"40995":40996,"40996":40997,"40997":40998,"40998":40999,"40999":41000,"41000":41001,"41001":41002,"41002":41003,"41003":41004,"41004":41005,"41005":41006,"41006":41007,"41007":41008,"41008":41009,"41009":41010,"41010":41011,"41011":41012,"41012":41013,"41013":41014,"41014":41015,"41015":41016,"41016":41017,"41017":41018,"41018":41019,"41019":41020,"41020":41021,"41021":41022,"41022":41023,"41023":41024,"41024":41025,"41025":41026,"41026":41027,"41027":41028,"41028":41029,"41029":41030,"41030":41031,"41031":41032,"41032":41033,"41033":41034,"41034":41035,"41035":41036,"41036":41037,"41037":41038,"41038":41039,"41039":41040,"41040":41041,"41041":41042,"41042":41043,"41043":41044,"41044":41045,"41045":41046,"41046":41047,"41047":41048,"41048":41049,"41049":41050,"41050":41051,"41051":41052,"41052":41053,"41053":41054,"41054":41055,"41055":41056,"41056":41057,"41057":41058,"41058":41059,"41059":41060,"41060":41061,"41061":41062,"41062":41063,"41063":41064,"41064":41065,"41065":41066,"41066":41067,"41067":41068,"41068":41069,"41069":41070,"41070":41071,"41071":41072,"41072":41073,"41073":41074,"41074":41075,"41075":41076,"41076":41077,"41077":41078,"41078":41079,"41079":41080,"41080":41081,"41081":41082,"41082":41083,"41083":41084,"41084":41085,"41085":41086,"41086":41087,"41087":41088,"41088":41089,"41089":41090,"41090":41091,"41091":41092,"41092":41093,"41093":41094,"41094":41095,"41095":41096,"41096":41097,"41097":41098,"41098":41099,"41099":41100,"41100":41101,"41101":41102,"41102":41103,"41103":41104,"41104":41105,"41105":41106,"41106":41107,"41107":41108,"41108":41109,"41109":41110,"41110":41111,"41111":41112,"41112":41113,"41113":41114,"41114":41115,"41115":41116,"41116":41117,"41117":41118,"41118":41119,"41119":41120,"41120":41121,"41121":41122,"41122":41123,"41123":41124,"41124":41125,"41125":41126,"41126":41127,"41127":41128,"41128":41129,"41129":41130,"41130":41131,"41131":41132,"41132":41133,"41133":41134,"41134":41135,"41135":41136,"41136":41137,"41137":41138,"41138":41139,"41139":41140,"41140":41141,"41141":41142,"41142":41143,"41143":41144,"41144":41145,"41145":41146,"41146":41147,"41147":41148,"41148":41149,"41149":41150,"41150":41151,"41151":41152,"41152":41153,"41153":41154,"41154":41155,"41155":41156,"41156":41157,"41157":41158,"41158":41159,"41159":41160,"41160":41161,"41161":41162,"41162":41163,"41163":41164,"41164":41165,"41165":41166,"41166":41167,"41167":41168,"41168":41169,"41169":41170,"41170":41171,"41171":41172,"41172":41173,"41173":41174,"41174":41175,"41175":41176,"41176":41177,"41177":41178,"41178":41179,"41179":41180,"41180":41181,"41181":41182,"41182":41183,"41183":41184,"41184":41185,"41185":41186,"41186":41187,"41187":41188,"41188":41189,"41189":41190,"41190":41191,"41191":41192,"41192":41193,"41193":41194,"41194":41195,"41195":41196,"41196":41197,"41197":41198,"41198":41199,"41199":41200,"41200":41201,"41201":41202,"41202":41203,"41203":41204,"41204":41205,"41205":41206,"41206":41207,"41207":41208,"41208":41209,"41209":41210,"41210":41211,"41211":41212,"41212":41213,"41213":41214,"41214":41215,"41215":41216,"41216":41217,"41217":41218,"41218":41219,"41219":41220,"41220":41221,"41221":41222,"41222":41223,"41223":41224,"41224":41225,"41225":41226,"41226":41227,"41227":41228,"41228":41229,"41229":41230,"41230":41231,"41231":41232,"41232":41233,"41233":41234,"41234":41235,"41235":41236,"41236":41237,"41237":41238,"41238":41239,"41239":41240,"41240":41241,"41241":41242,"41242":41243,"41243":41244,"41244":41245,"41245":41246,"41246":41247,"41247":41248,"41248":41249,"41249":41250,"41250":41251,"41251":41252,"41252":41253,"41253":41254,"41254":41255,"41255":41256,"41256":41257,"41257":41258,"41258":41259,"41259":41260,"41260":41261,"41261":41262,"41262":41263,"41263":41264,"41264":41265,"41265":41266,"41266":41267,"41267":41268,"41268":41269,"41269":41270,"41270":41271,"41271":41272,"41272":41273,"41273":41274,"41274":41275,"41275":41276,"41276":41277,"41277":41278,"41278":41279,"41279":41280,"41280":41281,"41281":41282,"41282":41283,"41283":41284,"41284":41285,"41285":41286,"41286":41287,"41287":41288,"41288":41289,"41289":41290,"41290":41291,"41291":41292,"41292":41293,"41293":41294,"41294":41295,"41295":41296,"41296":41297,"41297":41298,"41298":41299,"41299":41300,"41300":41301,"41301":41302,"41302":41303,"41303":41304,"41304":41305,"41305":41306,"41306":41307,"41307":41308,"41308":41309,"41309":41310,"41310":41311,"41311":41312,"41312":41313,"41313":41314,"41314":41315,"41315":41316,"41316":41317,"41317":41318,"41318":41319,"41319":41320,"41320":41321,"41321":41322,"41322":41323,"41323":41324,"41324":41325,"41325":41326,"41326":41327,"41327":41328,"41328":41329,"41329":41330,"41330":41331,"41331":41332,"41332":41333,"41333":41334,"41334":41335,"41335":41336,"41336":41337,"41337":41338,"41338":41339,"41339":41340,"41340":41341,"41341":41342,"41342":41343,"41343":41344,"41344":41345,"41345":41346,"41346":41347,"41347":41348,"41348":41349,"41349":41350,"41350":41351,"41351":41352,"41352":41353,"41353":41354,"41354":41355,"41355":41356,"41356":41357,"41357":41358,"41358":41359,"41359":41360,"41360":41361,"41361":41362,"41362":41363,"41363":41364,"41364":41365,"41365":41366,"41366":41367,"41367":41368,"41368":41369,"41369":41370,"41370":41371,"41371":41372,"41372":41373,"41373":41374,"41374":41375,"41375":41376,"41376":41377,"41377":41378,"41378":41379,"41379":41380,"41380":41381,"41381":41382,"41382":41383,"41383":41384,"41384":41385,"41385":41386,"41386":41387,"41387":41388,"41388":41389,"41389":41390,"41390":41391,"41391":41392,"41392":41393,"41393":41394,"41394":41395,"41395":41396,"41396":41397,"41397":41398,"41398":41399,"41399":41400,"41400":41401,"41401":41402,"41402":41403,"41403":41404,"41404":41405,"41405":41406,"41406":41407,"41407":41408,"41408":41409,"41409":41410,"41410":41411,"41411":41412,"41412":41413,"41413":41414,"41414":41415,"41415":41416,"41416":41417,"41417":41418,"41418":41419,"41419":41420,"41420":41421,"41421":41422,"41422":41423,"41423":41424,"41424":41425,"41425":41426,"41426":41427,"41427":41428,"41428":41429,"41429":41430,"41430":41431,"41431":41432,"41432":41433,"41433":41434,"41434":41435,"41435":41436,"41436":41437,"41437":41438,"41438":41439,"41439":41440,"41440":41441,"41441":41442,"41442":41443,"41443":41444,"41444":41445,"41445":41446,"41446":41447,"41447":41448,"41448":41449,"41449":41450,"41450":41451,"41451":41452,"41452":41453,"41453":41454,"41454":41455,"41455":41456,"41456":41457,"41457":41458,"41458":41459,"41459":41460,"41460":41461,"41461":41462,"41462":41463,"41463":41464,"41464":41465,"41465":41466,"41466":41467,"41467":41468,"41468":41469,"41469":41470,"41470":41471,"41471":41472,"41472":41473,"41473":41474,"41474":41475,"41475":41476,"41476":41477,"41477":41478,"41478":41479,"41479":41480,"41480":41481,"41481":41482,"41482":41483,"41483":41484,"41484":41485,"41485":41486,"41486":41487,"41487":41488,"41488":41489,"41489":41490,"41490":41491,"41491":41492,"41492":41493,"41493":41494,"41494":41495,"41495":41496,"41496":41497,"41497":41498,"41498":41499,"41499":41500,"41500":41501,"41501":41502,"41502":41503,"41503":41504,"41504":41505,"41505":41506,"41506":41507,"41507":41508,"41508":41509,"41509":41510,"41510":41511,"41511":41512,"41512":41513,"41513":41514,"41514":41515,"41515":41516,"41516":41517,"41517":41518,"41518":41519,"41519":41520,"41520":41521,"41521":41522,"41522":41523,"41523":41524,"41524":41525,"41525":41526,"41526":41527,"41527":41528,"41528":41529,"41529":41530,"41530":41531,"41531":41532,"41532":41533,"41533":41534,"41534":41535,"41535":41536,"41536":41537,"41537":41538,"41538":41539,"41539":41540,"41540":41541,"41541":41542,"41542":41543,"41543":41544,"41544":41545,"41545":41546,"41546":41547,"41547":41548,"41548":41549,"41549":41550,"41550":41551,"41551":41552,"41552":41553,"41553":41554,"41554":41555,"41555":41556,"41556":41557,"41557":41558,"41558":41559,"41559":41560,"41560":41561,"41561":41562,"41562":41563,"41563":41564,"41564":41565,"41565":41566,"41566":41567,"41567":41568,"41568":41569,"41569":41570,"41570":41571,"41571":41572,"41572":41573,"41573":41574,"41574":41575,"41575":41576,"41576":41577,"41577":41578,"41578":41579,"41579":41580,"41580":41581,"41581":41582,"41582":41583,"41583":41584,"41584":41585,"41585":41586,"41586":41587,"41587":41588,"41588":41589,"41589":41590,"41590":41591,"41591":41592,"41592":41593,"41593":41594,"41594":41595,"41595":41596,"41596":41597,"41597":41598,"41598":41599,"41599":41600,"41600":41601,"41601":41602,"41602":41603,"41603":41604,"41604":41605,"41605":41606,"41606":41607,"41607":41608,"41608":41609,"41609":41610,"41610":41611,"41611":41612,"41612":41613,"41613":41614,"41614":41615,"41615":41616,"41616":41617,"41617":41618,"41618":41619,"41619":41620,"41620":41621,"41621":41622,"41622":41623,"41623":41624,"41624":41625,"41625":41626,"41626":41627,"41627":41628,"41628":41629,"41629":41630,"41630":41631,"41631":41632,"41632":41633,"41633":41634,"41634":41635,"41635":41636,"41636":41637,"41637":41638,"41638":41639,"41639":41640,"41640":41641,"41641":41642,"41642":41643,"41643":41644,"41644":41645,"41645":41646,"41646":41647,"41647":41648,"41648":41649,"41649":41650,"41650":41651,"41651":41652,"41652":41653,"41653":41654,"41654":41655,"41655":41656,"41656":41657,"41657":41658,"41658":41659,"41659":41660,"41660":41661,"41661":41662,"41662":41663,"41663":41664,"41664":41665,"41665":41666,"41666":41667,"41667":41668,"41668":41669,"41669":41670,"41670":41671,"41671":41672,"41672":41673,"41673":41674,"41674":41675,"41675":41676,"41676":41677,"41677":41678,"41678":41679,"41679":41680,"41680":41681,"41681":41682,"41682":41683,"41683":41684,"41684":41685,"41685":41686,"41686":41687,"41687":41688,"41688":41689,"41689":41690,"41690":41691,"41691":41692,"41692":41693,"41693":41694,"41694":41695,"41695":41696,"41696":41697,"41697":41698,"41698":41699,"41699":41700,"41700":41701,"41701":41702,"41702":41703,"41703":41704,"41704":41705,"41705":41706,"41706":41707,"41707":41708,"41708":41709,"41709":41710,"41710":41711,"41711":41712,"41712":41713,"41713":41714,"41714":41715,"41715":41716,"41716":41717,"41717":41718,"41718":41719,"41719":41720,"41720":41721,"41721":41722,"41722":41723,"41723":41724,"41724":41725,"41725":41726,"41726":41727,"41727":41728,"41728":41729,"41729":41730,"41730":41731,"41731":41732,"41732":41733,"41733":41734,"41734":41735,"41735":41736,"41736":41737,"41737":41738,"41738":41739,"41739":41740,"41740":41741,"41741":41742,"41742":41743,"41743":41744,"41744":41745,"41745":41746,"41746":41747,"41747":41748,"41748":41749,"41749":41750,"41750":41751,"41751":41752,"41752":41753,"41753":41754,"41754":41755,"41755":41756,"41756":41757,"41757":41758,"41758":41759,"41759":41760,"41760":41761,"41761":41762,"41762":41763,"41763":41764,"41764":41765,"41765":41766,"41766":41767,"41767":41768,"41768":41769,"41769":41770,"41770":41771,"41771":41772,"41772":41773,"41773":41774,"41774":41775,"41775":41776,"41776":41777,"41777":41778,"41778":41779,"41779":41780,"41780":41781,"41781":41782,"41782":41783,"41783":41784,"41784":41785,"41785":41786,"41786":41787,"41787":41788,"41788":41789,"41789":41790,"41790":41791,"41791":41792,"41792":41793,"41793":41794,"41794":41795,"41795":41796,"41796":41797,"41797":41798,"41798":41799,"41799":41800,"41800":41801,"41801":41802,"41802":41803,"41803":41804,"41804":41805,"41805":41806,"41806":41807,"41807":41808,"41808":41809,"41809":41810,"41810":41811,"41811":41812,"41812":41813,"41813":41814,"41814":41815,"41815":41816,"41816":41817,"41817":41818,"41818":41819,"41819":41820,"41820":41821,"41821":41822,"41822":41823,"41823":41824,"41824":41825,"41825":41826,"41826":41827,"41827":41828,"41828":41829,"41829":41830,"41830":41831,"41831":41832,"41832":41833,"41833":41834,"41834":41835,"41835":41836,"41836":41837,"41837":41838,"41838":41839,"41839":41840,"41840":41841,"41841":41842,"41842":41843,"41843":41844,"41844":41845,"41845":41846,"41846":41847,"41847":41848,"41848":41849,"41849":41850,"41850":41851,"41851":41852,"41852":41853,"41853":41854,"41854":41855,"41855":41856,"41856":41857,"41857":41858,"41858":41859,"41859":41860,"41860":41861,"41861":41862,"41862":41863,"41863":41864,"41864":41865,"41865":41866,"41866":41867,"41867":41868,"41868":41869,"41869":41870,"41870":41871,"41871":41872,"41872":41873,"41873":41874,"41874":41875,"41875":41876,"41876":41877,"41877":41878,"41878":41879,"41879":41880,"41880":41881,"41881":41882,"41882":41883,"41883":41884,"41884":41885,"41885":41886,"41886":41887,"41887":41888,"41888":41889,"41889":41890,"41890":41891,"41891":41892,"41892":41893,"41893":41894,"41894":41895,"41895":41896,"41896":41897,"41897":41898,"41898":41899,"41899":41900,"41900":41901,"41901":41902,"41902":41903,"41903":41904,"41904":41905,"41905":41906,"41906":41907,"41907":41908,"41908":41909,"41909":41910,"41910":41911,"41911":41912,"41912":41913,"41913":41914,"41914":41915,"41915":41916,"41916":41917,"41917":41918,"41918":41919,"41919":41920,"41920":41921,"41921":41922,"41922":41923,"41923":41924,"41924":41925,"41925":41926,"41926":41927,"41927":41928,"41928":41929,"41929":41930,"41930":41931,"41931":41932,"41932":41933,"41933":41934,"41934":41935,"41935":41936,"41936":41937,"41937":41938,"41938":41939,"41939":41940,"41940":41941,"41941":41942,"41942":41943,"41943":41944,"41944":41945,"41945":41946,"41946":41947,"41947":41948,"41948":41949,"41949":41950,"41950":41951,"41951":41952,"41952":41953,"41953":41954,"41954":41955,"41955":41956,"41956":41957,"41957":41958,"41958":41959,"41959":41960,"41960":41961,"41961":41962,"41962":41963,"41963":41964,"41964":41965,"41965":41966,"41966":41967,"41967":41968,"41968":41969,"41969":41970,"41970":41971,"41971":41972,"41972":41973,"41973":41974,"41974":41975,"41975":41976,"41976":41977,"41977":41978,"41978":41979,"41979":41980,"41980":41981,"41981":41982,"41982":41983,"41983":41984,"41984":41985,"41985":41986,"41986":41987,"41987":41988,"41988":41989,"41989":41990,"41990":41991,"41991":41992,"41992":41993,"41993":41994,"41994":41995,"41995":41996,"41996":41997,"41997":41998,"41998":41999,"41999":42000,"42000":42001,"42001":42002,"42002":42003,"42003":42004,"42004":42005,"42005":42006,"42006":42007,"42007":42008,"42008":42009,"42009":42010,"42010":42011,"42011":42012,"42012":42013,"42013":42014,"42014":42015,"42015":42016,"42016":42017,"42017":42018,"42018":42019,"42019":42020,"42020":42021,"42021":42022,"42022":42023,"42023":42024,"42024":42025,"42025":42026,"42026":42027,"42027":42028,"42028":42029,"42029":42030,"42030":42031,"42031":42032,"42032":42033,"42033":42034,"42034":42035,"42035":42036,"42036":42037,"42037":42038,"42038":42039,"42039":42040,"42040":42041,"42041":42042,"42042":42043,"42043":42044,"42044":42045,"42045":42046,"42046":42047,"42047":42048,"42048":42049,"42049":42050,"42050":42051,"42051":42052,"42052":42053,"42053":42054,"42054":42055,"42055":42056,"42056":42057,"42057":42058,"42058":42059,"42059":42060,"42060":42061,"42061":42062,"42062":42063,"42063":42064,"42064":42065,"42065":42066,"42066":42067,"42067":42068,"42068":42069,"42069":42070,"42070":42071,"42071":42072,"42072":42073,"42073":42074,"42074":42075,"42075":42076,"42076":42077,"42077":42078,"42078":42079,"42079":42080,"42080":42081,"42081":42082,"42082":42083,"42083":42084,"42084":42085,"42085":42086,"42086":42087,"42087":42088,"42088":42089,"42089":42090,"42090":42091,"42091":42092,"42092":42093,"42093":42094,"42094":42095,"42095":42096,"42096":42097,"42097":42098,"42098":42099,"42099":42100,"42100":42101,"42101":42102,"42102":42103,"42103":42104,"42104":42105,"42105":42106,"42106":42107,"42107":42108,"42108":42109,"42109":42110,"42110":42111,"42111":42112,"42112":42113,"42113":42114,"42114":42115,"42115":42116,"42116":42117,"42117":42118,"42118":42119,"42119":42120,"42120":42121,"42121":42122,"42122":42123,"42123":42124,"42124":42125,"42125":42126,"42126":42127,"42127":42128,"42128":42129,"42129":42130,"42130":42131,"42131":42132,"42132":42133,"42133":42134,"42134":42135,"42135":42136,"42136":42137,"42137":42138,"42138":42139,"42139":42140,"42140":42141,"42141":42142,"42142":42143,"42143":42144,"42144":42145,"42145":42146,"42146":42147,"42147":42148,"42148":42149,"42149":42150,"42150":42151,"42151":42152,"42152":42153,"42153":42154,"42154":42155,"42155":42156,"42156":42157,"42157":42158,"42158":42159,"42159":42160,"42160":42161,"42161":42162,"42162":42163,"42163":42164,"42164":42165,"42165":42166,"42166":42167,"42167":42168,"42168":42169,"42169":42170,"42170":42171,"42171":42172,"42172":42173,"42173":42174,"42174":42175,"42175":42176,"42176":42177,"42177":42178,"42178":42179,"42179":42180,"42180":42181,"42181":42182,"42182":42183,"42183":42184,"42184":42185,"42185":42186,"42186":42187,"42187":42188,"42188":42189,"42189":42190,"42190":42191,"42191":42192,"42192":42193,"42193":42194,"42194":42195,"42195":42196,"42196":42197,"42197":42198,"42198":42199,"42199":42200,"42200":42201,"42201":42202,"42202":42203,"42203":42204,"42204":42205,"42205":42206,"42206":42207,"42207":42208,"42208":42209,"42209":42210,"42210":42211,"42211":42212,"42212":42213,"42213":42214,"42214":42215,"42215":42216,"42216":42217,"42217":42218,"42218":42219,"42219":42220,"42220":42221,"42221":42222,"42222":42223,"42223":42224,"42224":42225,"42225":42226,"42226":42227,"42227":42228,"42228":42229,"42229":42230,"42230":42231,"42231":42232,"42232":42233,"42233":42234,"42234":42235,"42235":42236,"42236":42237,"42237":42238,"42238":42239,"42239":42240,"42240":42241,"42241":42242,"42242":42243,"42243":42244,"42244":42245,"42245":42246,"42246":42247,"42247":42248,"42248":42249,"42249":42250,"42250":42251,"42251":42252,"42252":42253,"42253":42254,"42254":42255,"42255":42256,"42256":42257,"42257":42258,"42258":42259,"42259":42260,"42260":42261,"42261":42262,"42262":42263,"42263":42264,"42264":42265,"42265":42266,"42266":42267,"42267":42268,"42268":42269,"42269":42270,"42270":42271,"42271":42272,"42272":42273,"42273":42274,"42274":42275,"42275":42276,"42276":42277,"42277":42278,"42278":42279,"42279":42280,"42280":42281,"42281":42282,"42282":42283,"42283":42284,"42284":42285,"42285":42286,"42286":42287,"42287":42288,"42288":42289,"42289":42290,"42290":42291,"42291":42292,"42292":42293,"42293":42294,"42294":42295,"42295":42296,"42296":42297,"42297":42298,"42298":42299,"42299":42300,"42300":42301,"42301":42302,"42302":42303,"42303":42304,"42304":42305,"42305":42306,"42306":42307,"42307":42308,"42308":42309,"42309":42310,"42310":42311,"42311":42312,"42312":42313,"42313":42314,"42314":42315,"42315":42316,"42316":42317,"42317":42318,"42318":42319,"42319":42320,"42320":42321,"42321":42322,"42322":42323,"42323":42324,"42324":42325,"42325":42326,"42326":42327,"42327":42328,"42328":42329,"42329":42330,"42330":42331,"42331":42332,"42332":42333,"42333":42334,"42334":42335,"42335":42336,"42336":42337,"42337":42338,"42338":42339,"42339":42340,"42340":42341,"42341":42342,"42342":42343,"42343":42344,"42344":42345,"42345":42346,"42346":42347,"42347":42348,"42348":42349,"42349":42350,"42350":42351,"42351":42352,"42352":42353,"42353":42354,"42354":42355,"42355":42356,"42356":42357,"42357":42358,"42358":42359,"42359":42360,"42360":42361,"42361":42362,"42362":42363,"42363":42364,"42364":42365,"42365":42366,"42366":42367,"42367":42368,"42368":42369,"42369":42370,"42370":42371,"42371":42372,"42372":42373,"42373":42374,"42374":42375,"42375":42376,"42376":42377,"42377":42378,"42378":42379,"42379":42380,"42380":42381,"42381":42382,"42382":42383,"42383":42384,"42384":42385,"42385":42386,"42386":42387,"42387":42388,"42388":42389,"42389":42390,"42390":42391,"42391":42392,"42392":42393,"42393":42394,"42394":42395,"42395":42396,"42396":42397,"42397":42398,"42398":42399,"42399":42400,"42400":42401,"42401":42402,"42402":42403,"42403":42404,"42404":42405,"42405":42406,"42406":42407,"42407":42408,"42408":42409,"42409":42410,"42410":42411,"42411":42412,"42412":42413,"42413":42414,"42414":42415,"42415":42416,"42416":42417,"42417":42418,"42418":42419,"42419":42420,"42420":42421,"42421":42422,"42422":42423,"42423":42424,"42424":42425,"42425":42426,"42426":42427,"42427":42428,"42428":42429,"42429":42430,"42430":42431,"42431":42432,"42432":42433,"42433":42434,"42434":42435,"42435":42436,"42436":42437,"42437":42438,"42438":42439,"42439":42440,"42440":42441,"42441":42442,"42442":42443,"42443":42444,"42444":42445,"42445":42446,"42446":42447,"42447":42448,"42448":42449,"42449":42450,"42450":42451,"42451":42452,"42452":42453,"42453":42454,"42454":42455,"42455":42456,"42456":42457,"42457":42458,"42458":42459,"42459":42460,"42460":42461,"42461":42462,"42462":42463,"42463":42464,"42464":42465,"42465":42466,"42466":42467,"42467":42468,"42468":42469,"42469":42470,"42470":42471,"42471":42472,"42472":42473,"42473":42474,"42474":42475,"42475":42476,"42476":42477,"42477":42478,"42478":42479,"42479":42480,"42480":42481,"42481":42482,"42482":42483,"42483":42484,"42484":42485,"42485":42486,"42486":42487,"42487":42488,"42488":42489,"42489":42490,"42490":42491,"42491":42492,"42492":42493,"42493":42494,"42494":42495,"42495":42496,"42496":42497,"42497":42498,"42498":42499,"42499":42500,"42500":42501,"42501":42502,"42502":42503,"42503":42504,"42504":42505,"42505":42506,"42506":42507,"42507":42508,"42508":42509,"42509":42510,"42510":42511,"42511":42512,"42512":42513,"42513":42514,"42514":42515,"42515":42516,"42516":42517,"42517":42518,"42518":42519,"42519":42520,"42520":42521,"42521":42522,"42522":42523,"42523":42524,"42524":42525,"42525":42526,"42526":42527,"42527":42528,"42528":42529,"42529":42530,"42530":42531,"42531":42532,"42532":42533,"42533":42534,"42534":42535,"42535":42536,"42536":42537,"42537":42538,"42538":42539,"42539":42540,"42540":42541,"42541":42542,"42542":42543,"42543":42544,"42544":42545,"42545":42546,"42546":42547,"42547":42548,"42548":42549,"42549":42550,"42550":42551,"42551":42552,"42552":42553,"42553":42554,"42554":42555,"42555":42556,"42556":42557,"42557":42558,"42558":42559,"42559":42560,"42560":42561,"42561":42562,"42562":42563,"42563":42564,"42564":42565,"42565":42566,"42566":42567,"42567":42568,"42568":42569,"42569":42570,"42570":42571,"42571":42572,"42572":42573,"42573":42574,"42574":42575,"42575":42576,"42576":42577,"42577":42578,"42578":42579,"42579":42580,"42580":42581,"42581":42582,"42582":42583,"42583":42584,"42584":42585,"42585":42586,"42586":42587,"42587":42588,"42588":42589,"42589":42590,"42590":42591,"42591":42592,"42592":42593,"42593":42594,"42594":42595,"42595":42596,"42596":42597,"42597":42598,"42598":42599,"42599":42600,"42600":42601,"42601":42602,"42602":42603,"42603":42604,"42604":42605,"42605":42606,"42606":42607,"42607":42608,"42608":42609,"42609":42610,"42610":42611,"42611":42612,"42612":42613,"42613":42614,"42614":42615,"42615":42616,"42616":42617,"42617":42618,"42618":42619,"42619":42620,"42620":42621,"42621":42622,"42622":42623,"42623":42624,"42624":42625,"42625":42626,"42626":42627,"42627":42628,"42628":42629,"42629":42630,"42630":42631,"42631":42632,"42632":42633,"42633":42634,"42634":42635,"42635":42636,"42636":42637,"42637":42638,"42638":42639,"42639":42640,"42640":42641,"42641":42642,"42642":42643,"42643":42644,"42644":42645,"42645":42646,"42646":42647,"42647":42648,"42648":42649,"42649":42650,"42650":42651,"42651":42652,"42652":42653,"42653":42654,"42654":42655,"42655":42656,"42656":42657,"42657":42658,"42658":42659,"42659":42660,"42660":42661,"42661":42662,"42662":42663,"42663":42664,"42664":42665,"42665":42666,"42666":42667,"42667":42668,"42668":42669,"42669":42670,"42670":42671,"42671":42672,"42672":42673,"42673":42674,"42674":42675,"42675":42676,"42676":42677,"42677":42678,"42678":42679,"42679":42680,"42680":42681,"42681":42682,"42682":42683,"42683":42684,"42684":42685,"42685":42686,"42686":42687,"42687":42688,"42688":42689,"42689":42690,"42690":42691,"42691":42692,"42692":42693,"42693":42694,"42694":42695,"42695":42696,"42696":42697,"42697":42698,"42698":42699,"42699":42700,"42700":42701,"42701":42702,"42702":42703,"42703":42704,"42704":42705,"42705":42706,"42706":42707,"42707":42708,"42708":42709,"42709":42710,"42710":42711,"42711":42712,"42712":42713,"42713":42714,"42714":42715,"42715":42716,"42716":42717,"42717":42718,"42718":42719,"42719":42720,"42720":42721,"42721":42722,"42722":42723,"42723":42724,"42724":42725,"42725":42726,"42726":42727,"42727":42728,"42728":42729,"42729":42730,"42730":42731,"42731":42732,"42732":42733,"42733":42734,"42734":42735,"42735":42736,"42736":42737,"42737":42738,"42738":42739,"42739":42740,"42740":42741,"42741":42742,"42742":42743,"42743":42744,"42744":42745,"42745":42746,"42746":42747,"42747":42748,"42748":42749,"42749":42750,"42750":42751,"42751":42752,"42752":42753,"42753":42754,"42754":42755,"42755":42756,"42756":42757,"42757":42758,"42758":42759,"42759":42760,"42760":42761,"42761":42762,"42762":42763,"42763":42764,"42764":42765,"42765":42766,"42766":42767,"42767":42768,"42768":42769,"42769":42770,"42770":42771,"42771":42772,"42772":42773,"42773":42774,"42774":42775,"42775":42776,"42776":42777,"42777":42778,"42778":42779,"42779":42780,"42780":42781,"42781":42782,"42782":42783,"42783":42784,"42784":42785,"42785":42786,"42786":42787,"42787":42788,"42788":42789,"42789":42790,"42790":42791,"42791":42792,"42792":42793,"42793":42794,"42794":42795,"42795":42796,"42796":42797,"42797":42798,"42798":42799,"42799":42800,"42800":42801,"42801":42802,"42802":42803,"42803":42804,"42804":42805,"42805":42806,"42806":42807,"42807":42808,"42808":42809,"42809":42810,"42810":42811,"42811":42812,"42812":42813,"42813":42814,"42814":42815,"42815":42816,"42816":42817,"42817":42818,"42818":42819,"42819":42820,"42820":42821,"42821":42822,"42822":42823,"42823":42824,"42824":42825,"42825":42826,"42826":42827,"42827":42828,"42828":42829,"42829":42830,"42830":42831,"42831":42832,"42832":42833,"42833":42834,"42834":42835,"42835":42836,"42836":42837,"42837":42838,"42838":42839,"42839":42840,"42840":42841,"42841":42842,"42842":42843,"42843":42844,"42844":42845,"42845":42846,"42846":42847,"42847":42848,"42848":42849,"42849":42850,"42850":42851,"42851":42852,"42852":42853,"42853":42854,"42854":42855,"42855":42856,"42856":42857,"42857":42858,"42858":42859,"42859":42860,"42860":42861,"42861":42862,"42862":42863,"42863":42864,"42864":42865,"42865":42866,"42866":42867,"42867":42868,"42868":42869,"42869":42870,"42870":42871,"42871":42872,"42872":42873,"42873":42874,"42874":42875,"42875":42876,"42876":42877,"42877":42878,"42878":42879,"42879":42880,"42880":42881,"42881":42882,"42882":42883,"42883":42884,"42884":42885,"42885":42886,"42886":42887,"42887":42888,"42888":42889,"42889":42890,"42890":42891,"42891":42892,"42892":42893,"42893":42894,"42894":42895,"42895":42896,"42896":42897,"42897":42898,"42898":42899,"42899":42900,"42900":42901,"42901":42902,"42902":42903,"42903":42904,"42904":42905,"42905":42906,"42906":42907,"42907":42908,"42908":42909,"42909":42910,"42910":42911,"42911":42912,"42912":42913,"42913":42914,"42914":42915,"42915":42916,"42916":42917,"42917":42918,"42918":42919,"42919":42920,"42920":42921,"42921":42922,"42922":42923,"42923":42924,"42924":42925,"42925":42926,"42926":42927,"42927":42928,"42928":42929,"42929":42930,"42930":42931,"42931":42932,"42932":42933,"42933":42934,"42934":42935,"42935":42936,"42936":42937,"42937":42938,"42938":42939,"42939":42940,"42940":42941,"42941":42942,"42942":42943,"42943":42944,"42944":42945,"42945":42946,"42946":42947,"42947":42948,"42948":42949,"42949":42950,"42950":42951,"42951":42952,"42952":42953,"42953":42954,"42954":42955,"42955":42956,"42956":42957,"42957":42958,"42958":42959,"42959":42960,"42960":42961,"42961":42962,"42962":42963,"42963":42964,"42964":42965,"42965":42966,"42966":42967,"42967":42968,"42968":42969,"42969":42970,"42970":42971,"42971":42972,"42972":42973,"42973":42974,"42974":42975,"42975":42976,"42976":42977,"42977":42978,"42978":42979,"42979":42980,"42980":42981,"42981":42982,"42982":42983,"42983":42984,"42984":42985,"42985":42986,"42986":42987,"42987":42988,"42988":42989,"42989":42990,"42990":42991,"42991":42992,"42992":42993,"42993":42994,"42994":42995,"42995":42996,"42996":42997,"42997":42998,"42998":42999,"42999":43000,"43000":43001,"43001":43002,"43002":43003,"43003":43004,"43004":43005,"43005":43006,"43006":43007,"43007":43008,"43008":43009,"43009":43010,"43010":43011,"43011":43012,"43012":43013,"43013":43014,"43014":43015,"43015":43016,"43016":43017,"43017":43018,"43018":43019,"43019":43020,"43020":43021,"43021":43022,"43022":43023,"43023":43024,"43024":43025,"43025":43026,"43026":43027,"43027":43028,"43028":43029,"43029":43030,"43030":43031,"43031":43032,"43032":43033,"43033":43034,"43034":43035,"43035":43036,"43036":43037,"43037":43038,"43038":43039,"43039":43040,"43040":43041,"43041":43042,"43042":43043,"43043":43044,"43044":43045,"43045":43046,"43046":43047,"43047":43048,"43048":43049,"43049":43050,"43050":43051,"43051":43052,"43052":43053,"43053":43054,"43054":43055,"43055":43056,"43056":43057,"43057":43058,"43058":43059,"43059":43060,"43060":43061,"43061":43062,"43062":43063,"43063":43064,"43064":43065,"43065":43066,"43066":43067,"43067":43068,"43068":43069,"43069":43070,"43070":43071,"43071":43072,"43072":43073,"43073":43074,"43074":43075,"43075":43076,"43076":43077,"43077":43078,"43078":43079,"43079":43080,"43080":43081,"43081":43082,"43082":43083,"43083":43084,"43084":43085,"43085":43086,"43086":43087,"43087":43088,"43088":43089,"43089":43090,"43090":43091,"43091":43092,"43092":43093,"43093":43094,"43094":43095,"43095":43096,"43096":43097,"43097":43098,"43098":43099,"43099":43100,"43100":43101,"43101":43102,"43102":43103,"43103":43104,"43104":43105,"43105":43106,"43106":43107,"43107":43108,"43108":43109,"43109":43110,"43110":43111,"43111":43112,"43112":43113,"43113":43114,"43114":43115,"43115":43116,"43116":43117,"43117":43118,"43118":43119,"43119":43120,"43120":43121,"43121":43122,"43122":43123,"43123":43124,"43124":43125,"43125":43126,"43126":43127,"43127":43128,"43128":43129,"43129":43130,"43130":43131,"43131":43132,"43132":43133,"43133":43134,"43134":43135,"43135":43136,"43136":43137,"43137":43138,"43138":43139,"43139":43140,"43140":43141,"43141":43142,"43142":43143,"43143":43144,"43144":43145,"43145":43146,"43146":43147,"43147":43148,"43148":43149,"43149":43150,"43150":43151,"43151":43152,"43152":43153,"43153":43154,"43154":43155,"43155":43156,"43156":43157,"43157":43158,"43158":43159,"43159":43160,"43160":43161,"43161":43162,"43162":43163,"43163":43164,"43164":43165,"43165":43166,"43166":43167,"43167":43168,"43168":43169,"43169":43170,"43170":43171,"43171":43172,"43172":43173,"43173":43174,"43174":43175,"43175":43176,"43176":43177,"43177":43178,"43178":43179,"43179":43180,"43180":43181,"43181":43182,"43182":43183,"43183":43184,"43184":43185,"43185":43186,"43186":43187,"43187":43188,"43188":43189,"43189":43190,"43190":43191,"43191":43192,"43192":43193,"43193":43194,"43194":43195,"43195":43196,"43196":43197,"43197":43198,"43198":43199,"43199":43200,"43200":43201,"43201":43202,"43202":43203,"43203":43204,"43204":43205,"43205":43206,"43206":43207,"43207":43208,"43208":43209,"43209":43210,"43210":43211,"43211":43212,"43212":43213,"43213":43214,"43214":43215,"43215":43216,"43216":43217,"43217":43218,"43218":43219,"43219":43220,"43220":43221,"43221":43222,"43222":43223,"43223":43224,"43224":43225,"43225":43226,"43226":43227,"43227":43228,"43228":43229,"43229":43230,"43230":43231,"43231":43232,"43232":43233,"43233":43234,"43234":43235,"43235":43236,"43236":43237,"43237":43238,"43238":43239,"43239":43240,"43240":43241,"43241":43242,"43242":43243,"43243":43244,"43244":43245,"43245":43246,"43246":43247,"43247":43248,"43248":43249,"43249":43250,"43250":43251,"43251":43252,"43252":43253,"43253":43254,"43254":43255,"43255":43256,"43256":43257,"43257":43258,"43258":43259,"43259":43260,"43260":43261,"43261":43262,"43262":43263,"43263":43264,"43264":43265,"43265":43266,"43266":43267,"43267":43268,"43268":43269,"43269":43270,"43270":43271,"43271":43272,"43272":43273,"43273":43274,"43274":43275,"43275":43276,"43276":43277,"43277":43278,"43278":43279,"43279":43280,"43280":43281,"43281":43282,"43282":43283,"43283":43284,"43284":43285,"43285":43286,"43286":43287,"43287":43288,"43288":43289,"43289":43290,"43290":43291,"43291":43292,"43292":43293,"43293":43294,"43294":43295,"43295":43296,"43296":43297,"43297":43298,"43298":43299,"43299":43300,"43300":43301,"43301":43302,"43302":43303,"43303":43304,"43304":43305,"43305":43306,"43306":43307,"43307":43308,"43308":43309,"43309":43310,"43310":43311,"43311":43312,"43312":43313,"43313":43314,"43314":43315,"43315":43316,"43316":43317,"43317":43318,"43318":43319,"43319":43320,"43320":43321,"43321":43322,"43322":43323,"43323":43324,"43324":43325,"43325":43326,"43326":43327,"43327":43328,"43328":43329,"43329":43330,"43330":43331,"43331":43332,"43332":43333,"43333":43334,"43334":43335,"43335":43336,"43336":43337,"43337":43338,"43338":43339,"43339":43340,"43340":43341,"43341":43342,"43342":43343,"43343":43344,"43344":43345,"43345":43346,"43346":43347,"43347":43348,"43348":43349,"43349":43350,"43350":43351,"43351":43352,"43352":43353,"43353":43354,"43354":43355,"43355":43356,"43356":43357,"43357":43358,"43358":43359,"43359":43360,"43360":43361,"43361":43362,"43362":43363,"43363":43364,"43364":43365,"43365":43366,"43366":43367,"43367":43368,"43368":43369,"43369":43370,"43370":43371,"43371":43372,"43372":43373,"43373":43374,"43374":43375,"43375":43376,"43376":43377,"43377":43378,"43378":43379,"43379":43380,"43380":43381,"43381":43382,"43382":43383,"43383":43384,"43384":43385,"43385":43386,"43386":43387,"43387":43388,"43388":43389,"43389":43390,"43390":43391,"43391":43392,"43392":43393,"43393":43394,"43394":43395,"43395":43396,"43396":43397,"43397":43398,"43398":43399,"43399":43400,"43400":43401,"43401":43402,"43402":43403,"43403":43404,"43404":43405,"43405":43406,"43406":43407,"43407":43408,"43408":43409,"43409":43410,"43410":43411,"43411":43412,"43412":43413,"43413":43414,"43414":43415,"43415":43416,"43416":43417,"43417":43418,"43418":43419,"43419":43420,"43420":43421,"43421":43422,"43422":43423,"43423":43424,"43424":43425,"43425":43426,"43426":43427,"43427":43428,"43428":43429,"43429":43430,"43430":43431,"43431":43432,"43432":43433,"43433":43434,"43434":43435,"43435":43436,"43436":43437,"43437":43438,"43438":43439,"43439":43440,"43440":43441,"43441":43442,"43442":43443,"43443":43444,"43444":43445,"43445":43446,"43446":43447,"43447":43448,"43448":43449,"43449":43450,"43450":43451,"43451":43452,"43452":43453,"43453":43454,"43454":43455,"43455":43456,"43456":43457,"43457":43458,"43458":43459,"43459":43460,"43460":43461,"43461":43462,"43462":43463,"43463":43464,"43464":43465,"43465":43466,"43466":43467,"43467":43468,"43468":43469,"43469":43470,"43470":43471,"43471":43472,"43472":43473,"43473":43474,"43474":43475,"43475":43476,"43476":43477,"43477":43478,"43478":43479,"43479":43480,"43480":43481,"43481":43482,"43482":43483,"43483":43484,"43484":43485,"43485":43486,"43486":43487,"43487":43488,"43488":43489,"43489":43490,"43490":43491,"43491":43492,"43492":43493,"43493":43494,"43494":43495,"43495":43496,"43496":43497,"43497":43498,"43498":43499,"43499":43500,"43500":43501,"43501":43502,"43502":43503,"43503":43504,"43504":43505,"43505":43506,"43506":43507,"43507":43508,"43508":43509,"43509":43510,"43510":43511,"43511":43512,"43512":43513,"43513":43514,"43514":43515,"43515":43516,"43516":43517,"43517":43518,"43518":43519,"43519":43520,"43520":43521,"43521":43522,"43522":43523,"43523":43524,"43524":43525,"43525":43526,"43526":43527,"43527":43528,"43528":43529,"43529":43530,"43530":43531,"43531":43532,"43532":43533,"43533":43534,"43534":43535,"43535":43536,"43536":43537,"43537":43538,"43538":43539,"43539":43540,"43540":43541,"43541":43542,"43542":43543,"43543":43544,"43544":43545,"43545":43546,"43546":43547,"43547":43548,"43548":43549,"43549":43550,"43550":43551,"43551":43552,"43552":43553,"43553":43554,"43554":43555,"43555":43556,"43556":43557,"43557":43558,"43558":43559,"43559":43560,"43560":43561,"43561":43562,"43562":43563,"43563":43564,"43564":43565,"43565":43566,"43566":43567,"43567":43568,"43568":43569,"43569":43570,"43570":43571,"43571":43572,"43572":43573,"43573":43574,"43574":43575,"43575":43576,"43576":43577,"43577":43578,"43578":43579,"43579":43580,"43580":43581,"43581":43582,"43582":43583,"43583":43584,"43584":43585,"43585":43586,"43586":43587,"43587":43588,"43588":43589,"43589":43590,"43590":43591,"43591":43592,"43592":43593,"43593":43594,"43594":43595,"43595":43596,"43596":43597,"43597":43598,"43598":43599,"43599":43600,"43600":43601,"43601":43602,"43602":43603,"43603":43604,"43604":43605,"43605":43606,"43606":43607,"43607":43608,"43608":43609,"43609":43610,"43610":43611,"43611":43612,"43612":43613,"43613":43614,"43614":43615,"43615":43616,"43616":43617,"43617":43618,"43618":43619,"43619":43620,"43620":43621,"43621":43622,"43622":43623,"43623":43624,"43624":43625,"43625":43626,"43626":43627,"43627":43628,"43628":43629,"43629":43630,"43630":43631,"43631":43632,"43632":43633,"43633":43634,"43634":43635,"43635":43636,"43636":43637,"43637":43638,"43638":43639,"43639":43640,"43640":43641,"43641":43642,"43642":43643,"43643":43644,"43644":43645,"43645":43646,"43646":43647,"43647":43648,"43648":43649,"43649":43650,"43650":43651,"43651":43652,"43652":43653,"43653":43654,"43654":43655,"43655":43656,"43656":43657,"43657":43658,"43658":43659,"43659":43660,"43660":43661,"43661":43662,"43662":43663,"43663":43664,"43664":43665,"43665":43666,"43666":43667,"43667":43668,"43668":43669,"43669":43670,"43670":43671,"43671":43672,"43672":43673,"43673":43674,"43674":43675,"43675":43676,"43676":43677,"43677":43678,"43678":43679,"43679":43680,"43680":43681,"43681":43682,"43682":43683,"43683":43684,"43684":43685,"43685":43686,"43686":43687,"43687":43688,"43688":43689,"43689":43690,"43690":43691,"43691":43692,"43692":43693,"43693":43694,"43694":43695,"43695":43696,"43696":43697,"43697":43698,"43698":43699,"43699":43700,"43700":43701,"43701":43702,"43702":43703,"43703":43704,"43704":43705,"43705":43706,"43706":43707,"43707":43708,"43708":43709,"43709":43710,"43710":43711,"43711":43712,"43712":43713,"43713":43714,"43714":43715,"43715":43716,"43716":43717,"43717":43718,"43718":43719,"43719":43720,"43720":43721,"43721":43722,"43722":43723,"43723":43724,"43724":43725,"43725":43726,"43726":43727,"43727":43728,"43728":43729,"43729":43730,"43730":43731,"43731":43732,"43732":43733,"43733":43734,"43734":43735,"43735":43736,"43736":43737,"43737":43738,"43738":43739,"43739":43740,"43740":43741,"43741":43742,"43742":43743,"43743":43744,"43744":43745,"43745":43746,"43746":43747,"43747":43748,"43748":43749,"43749":43750,"43750":43751,"43751":43752,"43752":43753,"43753":43754,"43754":43755,"43755":43756,"43756":43757,"43757":43758,"43758":43759,"43759":43760,"43760":43761,"43761":43762,"43762":43763,"43763":43764,"43764":43765,"43765":43766,"43766":43767,"43767":43768,"43768":43769,"43769":43770,"43770":43771,"43771":43772,"43772":43773,"43773":43774,"43774":43775,"43775":43776,"43776":43777,"43777":43778,"43778":43779,"43779":43780,"43780":43781,"43781":43782,"43782":43783,"43783":43784,"43784":43785,"43785":43786,"43786":43787,"43787":43788,"43788":43789,"43789":43790,"43790":43791,"43791":43792,"43792":43793,"43793":43794,"43794":43795,"43795":43796,"43796":43797,"43797":43798,"43798":43799,"43799":43800,"43800":43801,"43801":43802,"43802":43803,"43803":43804,"43804":43805,"43805":43806,"43806":43807,"43807":43808,"43808":43809,"43809":43810,"43810":43811,"43811":43812,"43812":43813,"43813":43814,"43814":43815,"43815":43816,"43816":43817,"43817":43818,"43818":43819,"43819":43820,"43820":43821,"43821":43822,"43822":43823,"43823":43824,"43824":43825,"43825":43826,"43826":43827,"43827":43828,"43828":43829,"43829":43830,"43830":43831,"43831":43832,"43832":43833,"43833":43834,"43834":43835,"43835":43836,"43836":43837,"43837":43838,"43838":43839,"43839":43840,"43840":43841,"43841":43842,"43842":43843,"43843":43844,"43844":43845,"43845":43846,"43846":43847,"43847":43848,"43848":43849,"43849":43850,"43850":43851,"43851":43852,"43852":43853,"43853":43854,"43854":43855,"43855":43856,"43856":43857,"43857":43858,"43858":43859,"43859":43860,"43860":43861,"43861":43862,"43862":43863,"43863":43864,"43864":43865,"43865":43866,"43866":43867,"43867":43868,"43868":43869,"43869":43870,"43870":43871,"43871":43872,"43872":43873,"43873":43874,"43874":43875,"43875":43876,"43876":43877,"43877":43878,"43878":43879,"43879":43880,"43880":43881,"43881":43882,"43882":43883,"43883":43884,"43884":43885,"43885":43886,"43886":43887,"43887":43888,"43888":43889,"43889":43890,"43890":43891,"43891":43892,"43892":43893,"43893":43894,"43894":43895,"43895":43896,"43896":43897,"43897":43898,"43898":43899,"43899":43900,"43900":43901,"43901":43902,"43902":43903,"43903":43904,"43904":43905,"43905":43906,"43906":43907,"43907":43908,"43908":43909,"43909":43910,"43910":43911,"43911":43912,"43912":43913,"43913":43914,"43914":43915,"43915":43916,"43916":43917,"43917":43918,"43918":43919,"43919":43920,"43920":43921,"43921":43922,"43922":43923,"43923":43924,"43924":43925,"43925":43926,"43926":43927,"43927":43928,"43928":43929,"43929":43930,"43930":43931,"43931":43932,"43932":43933,"43933":43934,"43934":43935,"43935":43936,"43936":43937,"43937":43938,"43938":43939,"43939":43940,"43940":43941,"43941":43942,"43942":43943,"43943":43944,"43944":43945,"43945":43946,"43946":43947,"43947":43948,"43948":43949,"43949":43950,"43950":43951,"43951":43952,"43952":43953,"43953":43954,"43954":43955,"43955":43956,"43956":43957,"43957":43958,"43958":43959,"43959":43960,"43960":43961,"43961":43962,"43962":43963,"43963":43964,"43964":43965,"43965":43966,"43966":43967,"43967":43968,"43968":43969,"43969":43970,"43970":43971,"43971":43972,"43972":43973,"43973":43974,"43974":43975,"43975":43976,"43976":43977,"43977":43978,"43978":43979,"43979":43980,"43980":43981,"43981":43982,"43982":43983,"43983":43984,"43984":43985,"43985":43986,"43986":43987,"43987":43988,"43988":43989,"43989":43990,"43990":43991,"43991":43992,"43992":43993,"43993":43994,"43994":43995,"43995":43996,"43996":43997,"43997":43998,"43998":43999,"43999":44000,"44000":44001,"44001":44002,"44002":44003,"44003":44004,"44004":44005,"44005":44006,"44006":44007,"44007":44008,"44008":44009,"44009":44010,"44010":44011,"44011":44012,"44012":44013,"44013":44014,"44014":44015,"44015":44016,"44016":44017,"44017":44018,"44018":44019,"44019":44020,"44020":44021,"44021":44022,"44022":44023,"44023":44024,"44024":44025,"44025":44026,"44026":44027,"44027":44028,"44028":44029,"44029":44030,"44030":44031,"44031":44032,"44032":44033,"44033":44034,"44034":44035,"44035":44036,"44036":44037,"44037":44038,"44038":44039,"44039":44040,"44040":44041,"44041":44042,"44042":44043,"44043":44044,"44044":44045,"44045":44046,"44046":44047,"44047":44048,"44048":44049,"44049":44050,"44050":44051,"44051":44052,"44052":44053,"44053":44054,"44054":44055,"44055":44056,"44056":44057,"44057":44058,"44058":44059,"44059":44060,"44060":44061,"44061":44062,"44062":44063,"44063":44064,"44064":44065,"44065":44066,"44066":44067,"44067":44068,"44068":44069,"44069":44070,"44070":44071,"44071":44072,"44072":44073,"44073":44074,"44074":44075,"44075":44076,"44076":44077,"44077":44078,"44078":44079,"44079":44080,"44080":44081,"44081":44082,"44082":44083,"44083":44084,"44084":44085,"44085":44086,"44086":44087,"44087":44088,"44088":44089,"44089":44090,"44090":44091,"44091":44092,"44092":44093,"44093":44094,"44094":44095,"44095":44096,"44096":44097,"44097":44098,"44098":44099,"44099":44100,"44100":44101,"44101":44102,"44102":44103,"44103":44104,"44104":44105,"44105":44106,"44106":44107,"44107":44108,"44108":44109,"44109":44110,"44110":44111,"44111":44112,"44112":44113,"44113":44114,"44114":44115,"44115":44116,"44116":44117,"44117":44118,"44118":44119,"44119":44120,"44120":44121,"44121":44122,"44122":44123,"44123":44124,"44124":44125,"44125":44126,"44126":44127,"44127":44128,"44128":44129,"44129":44130,"44130":44131,"44131":44132,"44132":44133,"44133":44134,"44134":44135,"44135":44136,"44136":44137,"44137":44138,"44138":44139,"44139":44140,"44140":44141,"44141":44142,"44142":44143,"44143":44144,"44144":44145,"44145":44146,"44146":44147,"44147":44148,"44148":44149,"44149":44150,"44150":44151,"44151":44152,"44152":44153,"44153":44154,"44154":44155,"44155":44156,"44156":44157,"44157":44158,"44158":44159,"44159":44160,"44160":44161,"44161":44162,"44162":44163,"44163":44164,"44164":44165,"44165":44166,"44166":44167,"44167":44168,"44168":44169,"44169":44170,"44170":44171,"44171":44172,"44172":44173,"44173":44174,"44174":44175,"44175":44176,"44176":44177,"44177":44178,"44178":44179,"44179":44180,"44180":44181,"44181":44182,"44182":44183,"44183":44184,"44184":44185,"44185":44186,"44186":44187,"44187":44188,"44188":44189,"44189":44190,"44190":44191,"44191":44192,"44192":44193,"44193":44194,"44194":44195,"44195":44196,"44196":44197,"44197":44198,"44198":44199,"44199":44200,"44200":44201,"44201":44202,"44202":44203,"44203":44204,"44204":44205,"44205":44206,"44206":44207,"44207":44208,"44208":44209,"44209":44210,"44210":44211,"44211":44212,"44212":44213,"44213":44214,"44214":44215,"44215":44216,"44216":44217,"44217":44218,"44218":44219,"44219":44220,"44220":44221,"44221":44222,"44222":44223,"44223":44224,"44224":44225,"44225":44226,"44226":44227,"44227":44228,"44228":44229,"44229":44230,"44230":44231,"44231":44232,"44232":44233,"44233":44234,"44234":44235,"44235":44236,"44236":44237,"44237":44238,"44238":44239,"44239":44240,"44240":44241,"44241":44242,"44242":44243,"44243":44244,"44244":44245,"44245":44246,"44246":44247,"44247":44248,"44248":44249,"44249":44250,"44250":44251,"44251":44252,"44252":44253,"44253":44254,"44254":44255,"44255":44256,"44256":44257,"44257":44258,"44258":44259,"44259":44260,"44260":44261,"44261":44262,"44262":44263,"44263":44264,"44264":44265,"44265":44266,"44266":44267,"44267":44268,"44268":44269,"44269":44270,"44270":44271,"44271":44272,"44272":44273,"44273":44274,"44274":44275,"44275":44276,"44276":44277,"44277":44278,"44278":44279,"44279":44280,"44280":44281,"44281":44282,"44282":44283,"44283":44284,"44284":44285,"44285":44286,"44286":44287,"44287":44288,"44288":44289,"44289":44290,"44290":44291,"44291":44292,"44292":44293,"44293":44294,"44294":44295,"44295":44296,"44296":44297,"44297":44298,"44298":44299,"44299":44300,"44300":44301,"44301":44302,"44302":44303,"44303":44304,"44304":44305,"44305":44306,"44306":44307,"44307":44308,"44308":44309,"44309":44310,"44310":44311,"44311":44312,"44312":44313,"44313":44314,"44314":44315,"44315":44316,"44316":44317,"44317":44318,"44318":44319,"44319":44320,"44320":44321,"44321":44322,"44322":44323,"44323":44324,"44324":44325,"44325":44326,"44326":44327,"44327":44328,"44328":44329,"44329":44330,"44330":44331,"44331":44332,"44332":44333,"44333":44334,"44334":44335,"44335":44336,"44336":44337,"44337":44338,"44338":44339,"44339":44340,"44340":44341,"44341":44342,"44342":44343,"44343":44344,"44344":44345,"44345":44346,"44346":44347,"44347":44348,"44348":44349,"44349":44350,"44350":44351,"44351":44352,"44352":44353,"44353":44354,"44354":44355,"44355":44356,"44356":44357,"44357":44358,"44358":44359,"44359":44360,"44360":44361,"44361":44362,"44362":44363,"44363":44364,"44364":44365,"44365":44366,"44366":44367,"44367":44368,"44368":44369,"44369":44370,"44370":44371,"44371":44372,"44372":44373,"44373":44374,"44374":44375,"44375":44376,"44376":44377,"44377":44378,"44378":44379,"44379":44380,"44380":44381,"44381":44382,"44382":44383,"44383":44384,"44384":44385,"44385":44386,"44386":44387,"44387":44388,"44388":44389,"44389":44390,"44390":44391,"44391":44392,"44392":44393,"44393":44394,"44394":44395,"44395":44396,"44396":44397,"44397":44398,"44398":44399,"44399":44400,"44400":44401,"44401":44402,"44402":44403,"44403":44404,"44404":44405,"44405":44406,"44406":44407,"44407":44408,"44408":44409,"44409":44410,"44410":44411,"44411":44412,"44412":44413,"44413":44414,"44414":44415,"44415":44416,"44416":44417,"44417":44418,"44418":44419,"44419":44420,"44420":44421,"44421":44422,"44422":44423,"44423":44424,"44424":44425,"44425":44426,"44426":44427,"44427":44428,"44428":44429,"44429":44430,"44430":44431,"44431":44432,"44432":44433,"44433":44434,"44434":44435,"44435":44436,"44436":44437,"44437":44438,"44438":44439,"44439":44440,"44440":44441,"44441":44442,"44442":44443,"44443":44444,"44444":44445,"44445":44446,"44446":44447,"44447":44448,"44448":44449,"44449":44450,"44450":44451,"44451":44452,"44452":44453,"44453":44454,"44454":44455,"44455":44456,"44456":44457,"44457":44458,"44458":44459,"44459":44460,"44460":44461,"44461":44462,"44462":44463,"44463":44464,"44464":44465,"44465":44466,"44466":44467,"44467":44468,"44468":44469,"44469":44470,"44470":44471,"44471":44472,"44472":44473,"44473":44474,"44474":44475,"44475":44476,"44476":44477,"44477":44478,"44478":44479,"44479":44480,"44480":44481,"44481":44482,"44482":44483,"44483":44484,"44484":44485,"44485":44486,"44486":44487,"44487":44488,"44488":44489,"44489":44490,"44490":44491,"44491":44492,"44492":44493,"44493":44494,"44494":44495,"44495":44496,"44496":44497,"44497":44498,"44498":44499,"44499":44500,"44500":44501,"44501":44502,"44502":44503,"44503":44504,"44504":44505,"44505":44506,"44506":44507,"44507":44508,"44508":44509,"44509":44510,"44510":44511,"44511":44512,"44512":44513,"44513":44514,"44514":44515,"44515":44516,"44516":44517,"44517":44518,"44518":44519,"44519":44520,"44520":44521,"44521":44522,"44522":44523,"44523":44524,"44524":44525,"44525":44526,"44526":44527,"44527":44528,"44528":44529,"44529":44530,"44530":44531,"44531":44532,"44532":44533,"44533":44534,"44534":44535,"44535":44536,"44536":44537,"44537":44538,"44538":44539,"44539":44540,"44540":44541,"44541":44542,"44542":44543,"44543":44544,"44544":44545,"44545":44546,"44546":44547,"44547":44548,"44548":44549,"44549":44550,"44550":44551,"44551":44552,"44552":44553,"44553":44554,"44554":44555,"44555":44556,"44556":44557,"44557":44558,"44558":44559,"44559":44560,"44560":44561,"44561":44562,"44562":44563,"44563":44564,"44564":44565,"44565":44566,"44566":44567,"44567":44568,"44568":44569,"44569":44570,"44570":44571,"44571":44572,"44572":44573,"44573":44574,"44574":44575,"44575":44576,"44576":44577,"44577":44578,"44578":44579,"44579":44580,"44580":44581,"44581":44582,"44582":44583,"44583":44584,"44584":44585,"44585":44586,"44586":44587,"44587":44588,"44588":44589,"44589":44590,"44590":44591,"44591":44592,"44592":44593,"44593":44594,"44594":44595,"44595":44596,"44596":44597,"44597":44598,"44598":44599,"44599":44600,"44600":44601,"44601":44602,"44602":44603,"44603":44604,"44604":44605,"44605":44606,"44606":44607,"44607":44608,"44608":44609,"44609":44610,"44610":44611,"44611":44612,"44612":44613,"44613":44614,"44614":44615,"44615":44616,"44616":44617,"44617":44618,"44618":44619,"44619":44620,"44620":44621,"44621":44622,"44622":44623,"44623":44624,"44624":44625,"44625":44626,"44626":44627,"44627":44628,"44628":44629,"44629":44630,"44630":44631,"44631":44632,"44632":44633,"44633":44634,"44634":44635,"44635":44636,"44636":44637,"44637":44638,"44638":44639,"44639":44640,"44640":44641,"44641":44642,"44642":44643,"44643":44644,"44644":44645,"44645":44646,"44646":44647,"44647":44648,"44648":44649,"44649":44650,"44650":44651,"44651":44652,"44652":44653,"44653":44654,"44654":44655,"44655":44656,"44656":44657,"44657":44658,"44658":44659,"44659":44660,"44660":44661,"44661":44662,"44662":44663,"44663":44664,"44664":44665,"44665":44666,"44666":44667,"44667":44668,"44668":44669,"44669":44670,"44670":44671,"44671":44672,"44672":44673,"44673":44674,"44674":44675,"44675":44676,"44676":44677,"44677":44678,"44678":44679,"44679":44680,"44680":44681,"44681":44682,"44682":44683,"44683":44684,"44684":44685,"44685":44686,"44686":44687,"44687":44688,"44688":44689,"44689":44690,"44690":44691,"44691":44692,"44692":44693,"44693":44694,"44694":44695,"44695":44696,"44696":44697,"44697":44698,"44698":44699,"44699":44700,"44700":44701,"44701":44702,"44702":44703,"44703":44704,"44704":44705,"44705":44706,"44706":44707,"44707":44708,"44708":44709,"44709":44710,"44710":44711,"44711":44712,"44712":44713,"44713":44714,"44714":44715,"44715":44716,"44716":44717,"44717":44718,"44718":44719,"44719":44720,"44720":44721,"44721":44722,"44722":44723,"44723":44724,"44724":44725,"44725":44726,"44726":44727,"44727":44728,"44728":44729,"44729":44730,"44730":44731,"44731":44732,"44732":44733,"44733":44734,"44734":44735,"44735":44736,"44736":44737,"44737":44738,"44738":44739,"44739":44740,"44740":44741,"44741":44742,"44742":44743,"44743":44744,"44744":44745,"44745":44746,"44746":44747,"44747":44748,"44748":44749,"44749":44750,"44750":44751,"44751":44752,"44752":44753,"44753":44754,"44754":44755,"44755":44756,"44756":44757,"44757":44758,"44758":44759,"44759":44760,"44760":44761,"44761":44762,"44762":44763,"44763":44764,"44764":44765,"44765":44766,"44766":44767,"44767":44768,"44768":44769,"44769":44770,"44770":44771,"44771":44772,"44772":44773,"44773":44774,"44774":44775,"44775":44776,"44776":44777,"44777":44778,"44778":44779,"44779":44780,"44780":44781,"44781":44782,"44782":44783,"44783":44784,"44784":44785,"44785":44786,"44786":44787,"44787":44788,"44788":44789,"44789":44790,"44790":44791,"44791":44792,"44792":44793,"44793":44794,"44794":44795,"44795":44796,"44796":44797,"44797":44798,"44798":44799,"44799":44800,"44800":44801,"44801":44802,"44802":44803,"44803":44804,"44804":44805,"44805":44806,"44806":44807,"44807":44808,"44808":44809,"44809":44810,"44810":44811,"44811":44812,"44812":44813,"44813":44814,"44814":44815,"44815":44816,"44816":44817,"44817":44818,"44818":44819,"44819":44820,"44820":44821,"44821":44822,"44822":44823,"44823":44824,"44824":44825,"44825":44826,"44826":44827,"44827":44828,"44828":44829,"44829":44830,"44830":44831,"44831":44832,"44832":44833,"44833":44834,"44834":44835,"44835":44836,"44836":44837,"44837":44838,"44838":44839,"44839":44840,"44840":44841,"44841":44842,"44842":44843,"44843":44844,"44844":44845,"44845":44846,"44846":44847,"44847":44848,"44848":44849,"44849":44850,"44850":44851,"44851":44852,"44852":44853,"44853":44854,"44854":44855,"44855":44856,"44856":44857,"44857":44858,"44858":44859,"44859":44860,"44860":44861,"44861":44862,"44862":44863,"44863":44864,"44864":44865,"44865":44866,"44866":44867,"44867":44868,"44868":44869,"44869":44870,"44870":44871,"44871":44872,"44872":44873,"44873":44874,"44874":44875,"44875":44876,"44876":44877,"44877":44878,"44878":44879,"44879":44880,"44880":44881,"44881":44882,"44882":44883,"44883":44884,"44884":44885,"44885":44886,"44886":44887,"44887":44888,"44888":44889,"44889":44890,"44890":44891,"44891":44892,"44892":44893,"44893":44894,"44894":44895,"44895":44896,"44896":44897,"44897":44898,"44898":44899,"44899":44900,"44900":44901,"44901":44902,"44902":44903,"44903":44904,"44904":44905,"44905":44906,"44906":44907,"44907":44908,"44908":44909,"44909":44910,"44910":44911,"44911":44912,"44912":44913,"44913":44914,"44914":44915,"44915":44916,"44916":44917,"44917":44918,"44918":44919,"44919":44920,"44920":44921,"44921":44922,"44922":44923,"44923":44924,"44924":44925,"44925":44926,"44926":44927,"44927":44928,"44928":44929,"44929":44930,"44930":44931,"44931":44932,"44932":44933,"44933":44934,"44934":44935,"44935":44936,"44936":44937,"44937":44938,"44938":44939,"44939":44940,"44940":44941,"44941":44942,"44942":44943,"44943":44944,"44944":44945,"44945":44946,"44946":44947,"44947":44948,"44948":44949,"44949":44950,"44950":44951,"44951":44952,"44952":44953,"44953":44954,"44954":44955,"44955":44956,"44956":44957,"44957":44958,"44958":44959,"44959":44960,"44960":44961,"44961":44962,"44962":44963,"44963":44964,"44964":44965,"44965":44966,"44966":44967,"44967":44968,"44968":44969,"44969":44970,"44970":44971,"44971":44972,"44972":44973,"44973":44974,"44974":44975,"44975":44976,"44976":44977,"44977":44978,"44978":44979,"44979":44980,"44980":44981,"44981":44982,"44982":44983,"44983":44984,"44984":44985,"44985":44986,"44986":44987,"44987":44988,"44988":44989,"44989":44990,"44990":44991,"44991":44992,"44992":44993,"44993":44994,"44994":44995,"44995":44996,"44996":44997,"44997":44998,"44998":44999,"44999":45000,"45000":45001,"45001":45002,"45002":45003,"45003":45004,"45004":45005,"45005":45006,"45006":45007,"45007":45008,"45008":45009,"45009":45010,"45010":45011,"45011":45012,"45012":45013,"45013":45014,"45014":45015,"45015":45016,"45016":45017,"45017":45018,"45018":45019,"45019":45020,"45020":45021,"45021":45022,"45022":45023,"45023":45024,"45024":45025,"45025":45026,"45026":45027,"45027":45028,"45028":45029,"45029":45030,"45030":45031,"45031":45032,"45032":45033,"45033":45034,"45034":45035,"45035":45036,"45036":45037,"45037":45038,"45038":45039,"45039":45040,"45040":45041,"45041":45042,"45042":45043,"45043":45044,"45044":45045,"45045":45046,"45046":45047,"45047":45048,"45048":45049,"45049":45050,"45050":45051,"45051":45052,"45052":45053,"45053":45054,"45054":45055,"45055":45056,"45056":45057,"45057":45058,"45058":45059,"45059":45060,"45060":45061,"45061":45062,"45062":45063,"45063":45064,"45064":45065,"45065":45066,"45066":45067,"45067":45068,"45068":45069,"45069":45070,"45070":45071,"45071":45072,"45072":45073,"45073":45074,"45074":45075,"45075":45076,"45076":45077,"45077":45078,"45078":45079,"45079":45080,"45080":45081,"45081":45082,"45082":45083,"45083":45084,"45084":45085,"45085":45086,"45086":45087,"45087":45088,"45088":45089,"45089":45090,"45090":45091,"45091":45092,"45092":45093,"45093":45094,"45094":45095,"45095":45096,"45096":45097,"45097":45098,"45098":45099,"45099":45100,"45100":45101,"45101":45102,"45102":45103,"45103":45104,"45104":45105,"45105":45106,"45106":45107,"45107":45108,"45108":45109,"45109":45110,"45110":45111,"45111":45112,"45112":45113,"45113":45114,"45114":45115,"45115":45116,"45116":45117,"45117":45118,"45118":45119,"45119":45120,"45120":45121,"45121":45122,"45122":45123,"45123":45124,"45124":45125,"45125":45126,"45126":45127,"45127":45128,"45128":45129,"45129":45130,"45130":45131,"45131":45132,"45132":45133,"45133":45134,"45134":45135,"45135":45136,"45136":45137,"45137":45138,"45138":45139,"45139":45140,"45140":45141,"45141":45142,"45142":45143,"45143":45144,"45144":45145,"45145":45146,"45146":45147,"45147":45148,"45148":45149,"45149":45150,"45150":45151,"45151":45152,"45152":45153,"45153":45154,"45154":45155,"45155":45156,"45156":45157,"45157":45158,"45158":45159,"45159":45160,"45160":45161,"45161":45162,"45162":45163,"45163":45164,"45164":45165,"45165":45166,"45166":45167,"45167":45168,"45168":45169,"45169":45170,"45170":45171,"45171":45172,"45172":45173,"45173":45174,"45174":45175,"45175":45176,"45176":45177,"45177":45178,"45178":45179,"45179":45180,"45180":45181,"45181":45182,"45182":45183,"45183":45184,"45184":45185,"45185":45186,"45186":45187,"45187":45188,"45188":45189,"45189":45190,"45190":45191,"45191":45192,"45192":45193,"45193":45194,"45194":45195,"45195":45196,"45196":45197,"45197":45198,"45198":45199,"45199":45200,"45200":45201,"45201":45202,"45202":45203,"45203":45204,"45204":45205,"45205":45206,"45206":45207,"45207":45208,"45208":45209,"45209":45210,"45210":45211,"45211":45212,"45212":45213,"45213":45214,"45214":45215,"45215":45216,"45216":45217,"45217":45218,"45218":45219,"45219":45220,"45220":45221,"45221":45222,"45222":45223,"45223":45224,"45224":45225,"45225":45226,"45226":45227,"45227":45228,"45228":45229,"45229":45230,"45230":45231,"45231":45232,"45232":45233,"45233":45234,"45234":45235,"45235":45236,"45236":45237,"45237":45238,"45238":45239,"45239":45240,"45240":45241,"45241":45242,"45242":45243,"45243":45244,"45244":45245,"45245":45246,"45246":45247,"45247":45248,"45248":45249,"45249":45250,"45250":45251,"45251":45252,"45252":45253,"45253":45254,"45254":45255,"45255":45256,"45256":45257,"45257":45258,"45258":45259,"45259":45260,"45260":45261,"45261":45262,"45262":45263,"45263":45264,"45264":45265,"45265":45266,"45266":45267,"45267":45268,"45268":45269,"45269":45270,"45270":45271,"45271":45272,"45272":45273,"45273":45274,"45274":45275,"45275":45276,"45276":45277,"45277":45278,"45278":45279,"45279":45280,"45280":45281,"45281":45282,"45282":45283,"45283":45284,"45284":45285,"45285":45286,"45286":45287,"45287":45288,"45288":45289,"45289":45290,"45290":45291,"45291":45292,"45292":45293,"45293":45294,"45294":45295,"45295":45296,"45296":45297,"45297":45298,"45298":45299,"45299":45300,"45300":45301,"45301":45302,"45302":45303,"45303":45304,"45304":45305,"45305":45306,"45306":45307,"45307":45308,"45308":45309,"45309":45310,"45310":45311,"45311":45312,"45312":45313,"45313":45314,"45314":45315,"45315":45316,"45316":45317,"45317":45318,"45318":45319,"45319":45320,"45320":45321,"45321":45322,"45322":45323,"45323":45324,"45324":45325,"45325":45326,"45326":45327,"45327":45328,"45328":45329,"45329":45330,"45330":45331,"45331":45332,"45332":45333,"45333":45334,"45334":45335,"45335":45336,"45336":45337,"45337":45338,"45338":45339,"45339":45340,"45340":45341,"45341":45342,"45342":45343,"45343":45344,"45344":45345,"45345":45346,"45346":45347,"45347":45348,"45348":45349,"45349":45350,"45350":45351,"45351":45352,"45352":45353,"45353":45354,"45354":45355,"45355":45356,"45356":45357,"45357":45358,"45358":45359,"45359":45360,"45360":45361,"45361":45362,"45362":45363,"45363":45364,"45364":45365,"45365":45366,"45366":45367,"45367":45368,"45368":45369,"45369":45370,"45370":45371,"45371":45372,"45372":45373,"45373":45374,"45374":45375,"45375":45376,"45376":45377,"45377":45378,"45378":45379,"45379":45380,"45380":45381,"45381":45382,"45382":45383,"45383":45384,"45384":45385,"45385":45386,"45386":45387,"45387":45388,"45388":45389,"45389":45390,"45390":45391,"45391":45392,"45392":45393,"45393":45394,"45394":45395,"45395":45396,"45396":45397,"45397":45398,"45398":45399,"45399":45400,"45400":45401,"45401":45402,"45402":45403,"45403":45404,"45404":45405,"45405":45406,"45406":45407,"45407":45408,"45408":45409,"45409":45410,"45410":45411,"45411":45412,"45412":45413,"45413":45414,"45414":45415,"45415":45416,"45416":45417,"45417":45418,"45418":45419,"45419":45420,"45420":45421,"45421":45422,"45422":45423,"45423":45424,"45424":45425,"45425":45426,"45426":45427,"45427":45428,"45428":45429,"45429":45430,"45430":45431,"45431":45432,"45432":45433,"45433":45434,"45434":45435,"45435":45436,"45436":45437,"45437":45438,"45438":45439,"45439":45440,"45440":45441,"45441":45442,"45442":45443,"45443":45444,"45444":45445,"45445":45446,"45446":45447,"45447":45448,"45448":45449,"45449":45450,"45450":45451,"45451":45452,"45452":45453,"45453":45454,"45454":45455,"45455":45456,"45456":45457,"45457":45458,"45458":45459,"45459":45460,"45460":45461,"45461":45462,"45462":45463,"45463":45464,"45464":45465,"45465":45466,"45466":45467,"45467":45468,"45468":45469,"45469":45470,"45470":45471,"45471":45472,"45472":45473,"45473":45474,"45474":45475,"45475":45476,"45476":45477,"45477":45478,"45478":45479,"45479":45480,"45480":45481,"45481":45482,"45482":45483,"45483":45484,"45484":45485,"45485":45486,"45486":45487,"45487":45488,"45488":45489,"45489":45490,"45490":45491,"45491":45492,"45492":45493,"45493":45494,"45494":45495,"45495":45496,"45496":45497,"45497":45498,"45498":45499,"45499":45500,"45500":45501,"45501":45502,"45502":45503,"45503":45504,"45504":45505,"45505":45506,"45506":45507,"45507":45508,"45508":45509,"45509":45510,"45510":45511,"45511":45512,"45512":45513,"45513":45514,"45514":45515,"45515":45516,"45516":45517,"45517":45518,"45518":45519,"45519":45520,"45520":45521,"45521":45522,"45522":45523,"45523":45524,"45524":45525,"45525":45526,"45526":45527,"45527":45528,"45528":45529,"45529":45530,"45530":45531,"45531":45532,"45532":45533,"45533":45534,"45534":45535,"45535":45536,"45536":45537,"45537":45538,"45538":45539,"45539":45540,"45540":45541,"45541":45542,"45542":45543,"45543":45544,"45544":45545,"45545":45546,"45546":45547,"45547":45548,"45548":45549,"45549":45550,"45550":45551,"45551":45552,"45552":45553,"45553":45554,"45554":45555,"45555":45556,"45556":45557,"45557":45558,"45558":45559,"45559":45560,"45560":45561,"45561":45562,"45562":45563,"45563":45564,"45564":45565,"45565":45566,"45566":45567,"45567":45568,"45568":45569,"45569":45570,"45570":45571,"45571":45572,"45572":45573,"45573":45574,"45574":45575,"45575":45576,"45576":45577,"45577":45578,"45578":45579,"45579":45580,"45580":45581,"45581":45582,"45582":45583,"45583":45584,"45584":45585,"45585":45586,"45586":45587,"45587":45588,"45588":45589,"45589":45590,"45590":45591,"45591":45592,"45592":45593,"45593":45594,"45594":45595,"45595":45596,"45596":45597,"45597":45598,"45598":45599,"45599":45600,"45600":45601,"45601":45602,"45602":45603,"45603":45604,"45604":45605,"45605":45606,"45606":45607,"45607":45608,"45608":45609,"45609":45610,"45610":45611,"45611":45612,"45612":45613,"45613":45614,"45614":45615,"45615":45616,"45616":45617,"45617":45618,"45618":45619,"45619":45620,"45620":45621,"45621":45622,"45622":45623,"45623":45624,"45624":45625,"45625":45626,"45626":45627,"45627":45628,"45628":45629,"45629":45630,"45630":45631,"45631":45632,"45632":45633,"45633":45634,"45634":45635,"45635":45636,"45636":45637,"45637":45638,"45638":45639,"45639":45640,"45640":45641,"45641":45642,"45642":45643,"45643":45644,"45644":45645,"45645":45646,"45646":45647,"45647":45648,"45648":45649,"45649":45650,"45650":45651,"45651":45652,"45652":45653,"45653":45654,"45654":45655,"45655":45656,"45656":45657,"45657":45658,"45658":45659,"45659":45660,"45660":45661,"45661":45662,"45662":45663,"45663":45664,"45664":45665,"45665":45666,"45666":45667,"45667":45668,"45668":45669,"45669":45670,"45670":45671,"45671":45672,"45672":45673,"45673":45674,"45674":45675,"45675":45676,"45676":45677,"45677":45678,"45678":45679,"45679":45680,"45680":45681,"45681":45682,"45682":45683,"45683":45684,"45684":45685,"45685":45686,"45686":45687,"45687":45688,"45688":45689,"45689":45690,"45690":45691,"45691":45692,"45692":45693,"45693":45694,"45694":45695,"45695":45696,"45696":45697,"45697":45698,"45698":45699,"45699":45700,"45700":45701,"45701":45702,"45702":45703,"45703":45704,"45704":45705,"45705":45706,"45706":45707,"45707":45708,"45708":45709,"45709":45710,"45710":45711,"45711":45712,"45712":45713,"45713":45714,"45714":45715,"45715":45716,"45716":45717,"45717":45718,"45718":45719,"45719":45720,"45720":45721,"45721":45722,"45722":45723,"45723":45724,"45724":45725,"45725":45726,"45726":45727,"45727":45728,"45728":45729,"45729":45730,"45730":45731,"45731":45732,"45732":45733,"45733":45734,"45734":45735,"45735":45736,"45736":45737,"45737":45738,"45738":45739,"45739":45740,"45740":45741,"45741":45742,"45742":45743,"45743":45744,"45744":45745,"45745":45746,"45746":45747,"45747":45748,"45748":45749,"45749":45750,"45750":45751,"45751":45752,"45752":45753,"45753":45754,"45754":45755,"45755":45756,"45756":45757,"45757":45758,"45758":45759,"45759":45760,"45760":45761,"45761":45762,"45762":45763,"45763":45764,"45764":45765,"45765":45766,"45766":45767,"45767":45768,"45768":45769,"45769":45770,"45770":45771,"45771":45772,"45772":45773,"45773":45774,"45774":45775,"45775":45776,"45776":45777,"45777":45778,"45778":45779,"45779":45780,"45780":45781,"45781":45782,"45782":45783,"45783":45784,"45784":45785,"45785":45786,"45786":45787,"45787":45788,"45788":45789,"45789":45790,"45790":45791,"45791":45792,"45792":45793,"45793":45794,"45794":45795,"45795":45796,"45796":45797,"45797":45798,"45798":45799,"45799":45800,"45800":45801,"45801":45802,"45802":45803,"45803":45804,"45804":45805,"45805":45806,"45806":45807,"45807":45808,"45808":45809,"45809":45810,"45810":45811,"45811":45812,"45812":45813,"45813":45814,"45814":45815,"45815":45816,"45816":45817,"45817":45818,"45818":45819,"45819":45820,"45820":45821,"45821":45822,"45822":45823,"45823":45824,"45824":45825,"45825":45826,"45826":45827,"45827":45828,"45828":45829,"45829":45830,"45830":45831,"45831":45832,"45832":45833,"45833":45834,"45834":45835,"45835":45836,"45836":45837,"45837":45838,"45838":45839,"45839":45840,"45840":45841,"45841":45842,"45842":45843,"45843":45844,"45844":45845,"45845":45846,"45846":45847,"45847":45848,"45848":45849,"45849":45850,"45850":45851,"45851":45852,"45852":45853,"45853":45854,"45854":45855,"45855":45856,"45856":45857,"45857":45858,"45858":45859,"45859":45860,"45860":45861,"45861":45862,"45862":45863,"45863":45864,"45864":45865,"45865":45866,"45866":45867,"45867":45868,"45868":45869,"45869":45870,"45870":45871,"45871":45872,"45872":45873,"45873":45874,"45874":45875,"45875":45876,"45876":45877,"45877":45878,"45878":45879,"45879":45880,"45880":45881,"45881":45882,"45882":45883,"45883":45884,"45884":45885,"45885":45886,"45886":45887,"45887":45888,"45888":45889,"45889":45890,"45890":45891,"45891":45892,"45892":45893,"45893":45894,"45894":45895,"45895":45896,"45896":45897,"45897":45898,"45898":45899,"45899":45900,"45900":45901,"45901":45902,"45902":45903,"45903":45904,"45904":45905,"45905":45906,"45906":45907,"45907":45908,"45908":45909,"45909":45910,"45910":45911,"45911":45912,"45912":45913,"45913":45914,"45914":45915,"45915":45916,"45916":45917,"45917":45918,"45918":45919,"45919":45920,"45920":45921,"45921":45922,"45922":45923,"45923":45924,"45924":45925,"45925":45926,"45926":45927,"45927":45928,"45928":45929,"45929":45930,"45930":45931,"45931":45932,"45932":45933,"45933":45934,"45934":45935,"45935":45936,"45936":45937,"45937":45938,"45938":45939,"45939":45940,"45940":45941,"45941":45942,"45942":45943,"45943":45944,"45944":45945,"45945":45946,"45946":45947,"45947":45948,"45948":45949,"45949":45950,"45950":45951,"45951":45952,"45952":45953,"45953":45954,"45954":45955,"45955":45956,"45956":45957,"45957":45958,"45958":45959,"45959":45960,"45960":45961,"45961":45962,"45962":45963,"45963":45964,"45964":45965,"45965":45966,"45966":45967,"45967":45968,"45968":45969,"45969":45970,"45970":45971,"45971":45972,"45972":45973,"45973":45974,"45974":45975,"45975":45976,"45976":45977,"45977":45978,"45978":45979,"45979":45980,"45980":45981,"45981":45982,"45982":45983,"45983":45984,"45984":45985,"45985":45986,"45986":45987,"45987":45988,"45988":45989,"45989":45990,"45990":45991,"45991":45992,"45992":45993,"45993":45994,"45994":45995,"45995":45996,"45996":45997,"45997":45998,"45998":45999,"45999":46000,"46000":46001,"46001":46002,"46002":46003,"46003":46004,"46004":46005,"46005":46006,"46006":46007,"46007":46008,"46008":46009,"46009":46010,"46010":46011,"46011":46012,"46012":46013,"46013":46014,"46014":46015,"46015":46016,"46016":46017,"46017":46018,"46018":46019,"46019":46020,"46020":46021,"46021":46022,"46022":46023,"46023":46024,"46024":46025,"46025":46026,"46026":46027,"46027":46028,"46028":46029,"46029":46030,"46030":46031,"46031":46032,"46032":46033,"46033":46034,"46034":46035,"46035":46036,"46036":46037,"46037":46038,"46038":46039,"46039":46040,"46040":46041,"46041":46042,"46042":46043,"46043":46044,"46044":46045,"46045":46046,"46046":46047,"46047":46048,"46048":46049,"46049":46050,"46050":46051,"46051":46052,"46052":46053,"46053":46054,"46054":46055,"46055":46056,"46056":46057,"46057":46058,"46058":46059,"46059":46060,"46060":46061,"46061":46062,"46062":46063,"46063":46064,"46064":46065,"46065":46066,"46066":46067,"46067":46068,"46068":46069,"46069":46070,"46070":46071,"46071":46072,"46072":46073,"46073":46074,"46074":46075,"46075":46076,"46076":46077,"46077":46078,"46078":46079,"46079":46080,"46080":46081,"46081":46082,"46082":46083,"46083":46084,"46084":46085,"46085":46086,"46086":46087,"46087":46088,"46088":46089,"46089":46090,"46090":46091,"46091":46092,"46092":46093,"46093":46094,"46094":46095,"46095":46096,"46096":46097,"46097":46098,"46098":46099,"46099":46100,"46100":46101,"46101":46102,"46102":46103,"46103":46104,"46104":46105,"46105":46106,"46106":46107,"46107":46108,"46108":46109,"46109":46110,"46110":46111,"46111":46112,"46112":46113,"46113":46114,"46114":46115,"46115":46116,"46116":46117,"46117":46118,"46118":46119,"46119":46120,"46120":46121,"46121":46122,"46122":46123,"46123":46124,"46124":46125,"46125":46126,"46126":46127,"46127":46128,"46128":46129,"46129":46130,"46130":46131,"46131":46132,"46132":46133,"46133":46134,"46134":46135,"46135":46136,"46136":46137,"46137":46138,"46138":46139,"46139":46140,"46140":46141,"46141":46142,"46142":46143,"46143":46144,"46144":46145,"46145":46146,"46146":46147,"46147":46148,"46148":46149,"46149":46150,"46150":46151,"46151":46152,"46152":46153,"46153":46154,"46154":46155,"46155":46156,"46156":46157,"46157":46158,"46158":46159,"46159":46160,"46160":46161,"46161":46162,"46162":46163,"46163":46164,"46164":46165,"46165":46166,"46166":46167,"46167":46168,"46168":46169,"46169":46170,"46170":46171,"46171":46172,"46172":46173,"46173":46174,"46174":46175,"46175":46176,"46176":46177,"46177":46178,"46178":46179,"46179":46180,"46180":46181,"46181":46182,"46182":46183,"46183":46184,"46184":46185,"46185":46186,"46186":46187,"46187":46188,"46188":46189,"46189":46190,"46190":46191,"46191":46192,"46192":46193,"46193":46194,"46194":46195,"46195":46196,"46196":46197,"46197":46198,"46198":46199,"46199":46200,"46200":46201,"46201":46202,"46202":46203,"46203":46204,"46204":46205,"46205":46206,"46206":46207,"46207":46208,"46208":46209,"46209":46210,"46210":46211,"46211":46212,"46212":46213,"46213":46214,"46214":46215,"46215":46216,"46216":46217,"46217":46218,"46218":46219,"46219":46220,"46220":46221,"46221":46222,"46222":46223,"46223":46224,"46224":46225,"46225":46226,"46226":46227,"46227":46228,"46228":46229,"46229":46230,"46230":46231,"46231":46232,"46232":46233,"46233":46234,"46234":46235,"46235":46236,"46236":46237,"46237":46238,"46238":46239,"46239":46240,"46240":46241,"46241":46242,"46242":46243,"46243":46244,"46244":46245,"46245":46246,"46246":46247,"46247":46248,"46248":46249,"46249":46250,"46250":46251,"46251":46252,"46252":46253,"46253":46254,"46254":46255,"46255":46256,"46256":46257,"46257":46258,"46258":46259,"46259":46260,"46260":46261,"46261":46262,"46262":46263,"46263":46264,"46264":46265,"46265":46266,"46266":46267,"46267":46268,"46268":46269,"46269":46270,"46270":46271,"46271":46272,"46272":46273,"46273":46274,"46274":46275,"46275":46276,"46276":46277,"46277":46278,"46278":46279,"46279":46280,"46280":46281,"46281":46282,"46282":46283,"46283":46284,"46284":46285,"46285":46286,"46286":46287,"46287":46288,"46288":46289,"46289":46290,"46290":46291,"46291":46292,"46292":46293,"46293":46294,"46294":46295,"46295":46296,"46296":46297,"46297":46298,"46298":46299,"46299":46300,"46300":46301,"46301":46302,"46302":46303,"46303":46304,"46304":46305,"46305":46306,"46306":46307,"46307":46308,"46308":46309,"46309":46310,"46310":46311,"46311":46312,"46312":46313,"46313":46314,"46314":46315,"46315":46316,"46316":46317,"46317":46318,"46318":46319,"46319":46320,"46320":46321,"46321":46322,"46322":46323,"46323":46324,"46324":46325,"46325":46326,"46326":46327,"46327":46328,"46328":46329,"46329":46330,"46330":46331,"46331":46332,"46332":46333,"46333":46334,"46334":46335,"46335":46336,"46336":46337,"46337":46338,"46338":46339,"46339":46340,"46340":46341,"46341":46342,"46342":46343,"46343":46344,"46344":46345,"46345":46346,"46346":46347,"46347":46348,"46348":46349,"46349":46350,"46350":46351,"46351":46352,"46352":46353,"46353":46354,"46354":46355,"46355":46356,"46356":46357,"46357":46358,"46358":46359,"46359":46360,"46360":46361,"46361":46362,"46362":46363,"46363":46364,"46364":46365,"46365":46366,"46366":46367,"46367":46368,"46368":46369,"46369":46370,"46370":46371,"46371":46372,"46372":46373,"46373":46374,"46374":46375,"46375":46376,"46376":46377,"46377":46378,"46378":46379,"46379":46380,"46380":46381,"46381":46382,"46382":46383,"46383":46384,"46384":46385,"46385":46386,"46386":46387,"46387":46388,"46388":46389,"46389":46390,"46390":46391,"46391":46392,"46392":46393,"46393":46394,"46394":46395,"46395":46396,"46396":46397,"46397":46398,"46398":46399,"46399":46400,"46400":46401,"46401":46402,"46402":46403,"46403":46404,"46404":46405,"46405":46406,"46406":46407,"46407":46408,"46408":46409,"46409":46410,"46410":46411,"46411":46412,"46412":46413,"46413":46414,"46414":46415,"46415":46416,"46416":46417,"46417":46418,"46418":46419,"46419":46420,"46420":46421,"46421":46422,"46422":46423,"46423":46424,"46424":46425,"46425":46426,"46426":46427,"46427":46428,"46428":46429,"46429":46430,"46430":46431,"46431":46432,"46432":46433,"46433":46434,"46434":46435,"46435":46436,"46436":46437,"46437":46438,"46438":46439,"46439":46440,"46440":46441,"46441":46442,"46442":46443,"46443":46444,"46444":46445,"46445":46446,"46446":46447,"46447":46448,"46448":46449,"46449":46450,"46450":46451,"46451":46452,"46452":46453,"46453":46454,"46454":46455,"46455":46456,"46456":46457,"46457":46458,"46458":46459,"46459":46460,"46460":46461,"46461":46462,"46462":46463,"46463":46464,"46464":46465,"46465":46466,"46466":46467,"46467":46468,"46468":46469,"46469":46470,"46470":46471,"46471":46472,"46472":46473,"46473":46474,"46474":46475,"46475":46476,"46476":46477,"46477":46478,"46478":46479,"46479":46480,"46480":46481,"46481":46482,"46482":46483,"46483":46484,"46484":46485,"46485":46486,"46486":46487,"46487":46488,"46488":46489,"46489":46490,"46490":46491,"46491":46492,"46492":46493,"46493":46494,"46494":46495,"46495":46496,"46496":46497,"46497":46498,"46498":46499,"46499":46500,"46500":46501,"46501":46502,"46502":46503,"46503":46504,"46504":46505,"46505":46506,"46506":46507,"46507":46508,"46508":46509,"46509":46510,"46510":46511,"46511":46512,"46512":46513,"46513":46514,"46514":46515,"46515":46516,"46516":46517,"46517":46518,"46518":46519,"46519":46520,"46520":46521,"46521":46522,"46522":46523,"46523":46524,"46524":46525,"46525":46526,"46526":46527,"46527":46528,"46528":46529,"46529":46530,"46530":46531,"46531":46532,"46532":46533,"46533":46534,"46534":46535,"46535":46536,"46536":46537,"46537":46538,"46538":46539,"46539":46540,"46540":46541,"46541":46542,"46542":46543,"46543":46544,"46544":46545,"46545":46546,"46546":46547,"46547":46548,"46548":46549,"46549":46550,"46550":46551,"46551":46552,"46552":46553,"46553":46554,"46554":46555,"46555":46556,"46556":46557,"46557":46558,"46558":46559,"46559":46560,"46560":46561,"46561":46562,"46562":46563,"46563":46564,"46564":46565,"46565":46566,"46566":46567,"46567":46568,"46568":46569,"46569":46570,"46570":46571,"46571":46572,"46572":46573,"46573":46574,"46574":46575,"46575":46576,"46576":46577,"46577":46578,"46578":46579,"46579":46580,"46580":46581,"46581":46582,"46582":46583,"46583":46584,"46584":46585,"46585":46586,"46586":46587,"46587":46588,"46588":46589,"46589":46590,"46590":46591,"46591":46592,"46592":46593,"46593":46594,"46594":46595,"46595":46596,"46596":46597,"46597":46598,"46598":46599,"46599":46600,"46600":46601,"46601":46602,"46602":46603,"46603":46604,"46604":46605,"46605":46606,"46606":46607,"46607":46608,"46608":46609,"46609":46610,"46610":46611,"46611":46612,"46612":46613,"46613":46614,"46614":46615,"46615":46616,"46616":46617,"46617":46618,"46618":46619,"46619":46620,"46620":46621,"46621":46622,"46622":46623,"46623":46624,"46624":46625,"46625":46626,"46626":46627,"46627":46628,"46628":46629,"46629":46630,"46630":46631,"46631":46632,"46632":46633,"46633":46634,"46634":46635,"46635":46636,"46636":46637,"46637":46638,"46638":46639,"46639":46640,"46640":46641,"46641":46642,"46642":46643,"46643":46644,"46644":46645,"46645":46646,"46646":46647,"46647":46648,"46648":46649,"46649":46650,"46650":46651,"46651":46652,"46652":46653,"46653":46654,"46654":46655,"46655":46656,"46656":46657,"46657":46658,"46658":46659,"46659":46660,"46660":46661,"46661":46662,"46662":46663,"46663":46664,"46664":46665,"46665":46666,"46666":46667,"46667":46668,"46668":46669,"46669":46670,"46670":46671,"46671":46672,"46672":46673,"46673":46674,"46674":46675,"46675":46676,"46676":46677,"46677":46678,"46678":46679,"46679":46680,"46680":46681,"46681":46682,"46682":46683,"46683":46684,"46684":46685,"46685":46686,"46686":46687,"46687":46688,"46688":46689,"46689":46690,"46690":46691,"46691":46692,"46692":46693,"46693":46694,"46694":46695,"46695":46696,"46696":46697,"46697":46698,"46698":46699,"46699":46700,"46700":46701,"46701":46702,"46702":46703,"46703":46704,"46704":46705,"46705":46706,"46706":46707,"46707":46708,"46708":46709,"46709":46710,"46710":46711,"46711":46712,"46712":46713,"46713":46714,"46714":46715,"46715":46716,"46716":46717,"46717":46718,"46718":46719,"46719":46720,"46720":46721,"46721":46722,"46722":46723,"46723":46724,"46724":46725,"46725":46726,"46726":46727,"46727":46728,"46728":46729,"46729":46730,"46730":46731,"46731":46732,"46732":46733,"46733":46734,"46734":46735,"46735":46736,"46736":46737,"46737":46738,"46738":46739,"46739":46740,"46740":46741,"46741":46742,"46742":46743,"46743":46744,"46744":46745,"46745":46746,"46746":46747,"46747":46748,"46748":46749,"46749":46750,"46750":46751,"46751":46752,"46752":46753,"46753":46754,"46754":46755,"46755":46756,"46756":46757,"46757":46758,"46758":46759,"46759":46760,"46760":46761,"46761":46762,"46762":46763,"46763":46764,"46764":46765,"46765":46766,"46766":46767,"46767":46768,"46768":46769,"46769":46770,"46770":46771,"46771":46772,"46772":46773,"46773":46774,"46774":46775,"46775":46776,"46776":46777,"46777":46778,"46778":46779,"46779":46780,"46780":46781,"46781":46782,"46782":46783,"46783":46784,"46784":46785,"46785":46786,"46786":46787,"46787":46788,"46788":46789,"46789":46790,"46790":46791,"46791":46792,"46792":46793,"46793":46794,"46794":46795,"46795":46796,"46796":46797,"46797":46798,"46798":46799,"46799":46800,"46800":46801,"46801":46802,"46802":46803,"46803":46804,"46804":46805,"46805":46806,"46806":46807,"46807":46808,"46808":46809,"46809":46810,"46810":46811,"46811":46812,"46812":46813,"46813":46814,"46814":46815,"46815":46816,"46816":46817,"46817":46818,"46818":46819,"46819":46820,"46820":46821,"46821":46822,"46822":46823,"46823":46824,"46824":46825,"46825":46826,"46826":46827,"46827":46828,"46828":46829,"46829":46830,"46830":46831,"46831":46832,"46832":46833,"46833":46834,"46834":46835,"46835":46836,"46836":46837,"46837":46838,"46838":46839,"46839":46840,"46840":46841,"46841":46842,"46842":46843,"46843":46844,"46844":46845,"46845":46846,"46846":46847,"46847":46848,"46848":46849,"46849":46850,"46850":46851,"46851":46852,"46852":46853,"46853":46854,"46854":46855,"46855":46856,"46856":46857,"46857":46858,"46858":46859,"46859":46860,"46860":46861,"46861":46862,"46862":46863,"46863":46864,"46864":46865,"46865":46866,"46866":46867,"46867":46868,"46868":46869,"46869":46870,"46870":46871,"46871":46872,"46872":46873,"46873":46874,"46874":46875,"46875":46876,"46876":46877,"46877":46878,"46878":46879,"46879":46880,"46880":46881,"46881":46882,"46882":46883,"46883":46884,"46884":46885,"46885":46886,"46886":46887,"46887":46888,"46888":46889,"46889":46890,"46890":46891,"46891":46892,"46892":46893,"46893":46894,"46894":46895,"46895":46896,"46896":46897,"46897":46898,"46898":46899,"46899":46900,"46900":46901,"46901":46902,"46902":46903,"46903":46904,"46904":46905,"46905":46906,"46906":46907,"46907":46908,"46908":46909,"46909":46910,"46910":46911,"46911":46912,"46912":46913,"46913":46914,"46914":46915,"46915":46916,"46916":46917,"46917":46918,"46918":46919,"46919":46920,"46920":46921,"46921":46922,"46922":46923,"46923":46924,"46924":46925,"46925":46926,"46926":46927,"46927":46928,"46928":46929,"46929":46930,"46930":46931,"46931":46932,"46932":46933,"46933":46934,"46934":46935,"46935":46936,"46936":46937,"46937":46938,"46938":46939,"46939":46940,"46940":46941,"46941":46942,"46942":46943,"46943":46944,"46944":46945,"46945":46946,"46946":46947,"46947":46948,"46948":46949,"46949":46950,"46950":46951,"46951":46952,"46952":46953,"46953":46954,"46954":46955,"46955":46956,"46956":46957,"46957":46958,"46958":46959,"46959":46960,"46960":46961,"46961":46962,"46962":46963,"46963":46964,"46964":46965,"46965":46966,"46966":46967,"46967":46968,"46968":46969,"46969":46970,"46970":46971,"46971":46972,"46972":46973,"46973":46974,"46974":46975,"46975":46976,"46976":46977,"46977":46978,"46978":46979,"46979":46980,"46980":46981,"46981":46982,"46982":46983,"46983":46984,"46984":46985,"46985":46986,"46986":46987,"46987":46988,"46988":46989,"46989":46990,"46990":46991,"46991":46992,"46992":46993,"46993":46994,"46994":46995,"46995":46996,"46996":46997,"46997":46998,"46998":46999,"46999":47000,"47000":47001,"47001":47002,"47002":47003,"47003":47004,"47004":47005,"47005":47006,"47006":47007,"47007":47008,"47008":47009,"47009":47010,"47010":47011,"47011":47012,"47012":47013,"47013":47014,"47014":47015,"47015":47016,"47016":47017,"47017":47018,"47018":47019,"47019":47020,"47020":47021,"47021":47022,"47022":47023,"47023":47024,"47024":47025,"47025":47026,"47026":47027,"47027":47028,"47028":47029,"47029":47030,"47030":47031,"47031":47032,"47032":47033,"47033":47034,"47034":47035,"47035":47036,"47036":47037,"47037":47038,"47038":47039,"47039":47040,"47040":47041,"47041":47042,"47042":47043,"47043":47044,"47044":47045,"47045":47046,"47046":47047,"47047":47048,"47048":47049,"47049":47050,"47050":47051,"47051":47052,"47052":47053,"47053":47054,"47054":47055,"47055":47056,"47056":47057,"47057":47058,"47058":47059,"47059":47060,"47060":47061,"47061":47062,"47062":47063,"47063":47064,"47064":47065,"47065":47066,"47066":47067,"47067":47068,"47068":47069,"47069":47070,"47070":47071,"47071":47072,"47072":47073,"47073":47074,"47074":47075,"47075":47076,"47076":47077,"47077":47078,"47078":47079,"47079":47080,"47080":47081,"47081":47082,"47082":47083,"47083":47084,"47084":47085,"47085":47086,"47086":47087,"47087":47088,"47088":47089,"47089":47090,"47090":47091,"47091":47092,"47092":47093,"47093":47094,"47094":47095,"47095":47096,"47096":47097,"47097":47098,"47098":47099,"47099":47100,"47100":47101,"47101":47102,"47102":47103,"47103":47104,"47104":47105,"47105":47106,"47106":47107,"47107":47108,"47108":47109,"47109":47110,"47110":47111,"47111":47112,"47112":47113,"47113":47114,"47114":47115,"47115":47116,"47116":47117,"47117":47118,"47118":47119,"47119":47120,"47120":47121,"47121":47122,"47122":47123,"47123":47124,"47124":47125,"47125":47126,"47126":47127,"47127":47128,"47128":47129,"47129":47130,"47130":47131,"47131":47132,"47132":47133,"47133":47134,"47134":47135,"47135":47136,"47136":47137,"47137":47138,"47138":47139,"47139":47140,"47140":47141,"47141":47142,"47142":47143,"47143":47144,"47144":47145,"47145":47146,"47146":47147,"47147":47148,"47148":47149,"47149":47150,"47150":47151,"47151":47152,"47152":47153,"47153":47154,"47154":47155,"47155":47156,"47156":47157,"47157":47158,"47158":47159,"47159":47160,"47160":47161,"47161":47162,"47162":47163,"47163":47164,"47164":47165,"47165":47166,"47166":47167,"47167":47168,"47168":47169,"47169":47170,"47170":47171,"47171":47172,"47172":47173,"47173":47174,"47174":47175,"47175":47176,"47176":47177,"47177":47178,"47178":47179,"47179":47180,"47180":47181,"47181":47182,"47182":47183,"47183":47184,"47184":47185,"47185":47186,"47186":47187,"47187":47188,"47188":47189,"47189":47190,"47190":47191,"47191":47192,"47192":47193,"47193":47194,"47194":47195,"47195":47196,"47196":47197,"47197":47198,"47198":47199,"47199":47200,"47200":47201,"47201":47202,"47202":47203,"47203":47204,"47204":47205,"47205":47206,"47206":47207,"47207":47208,"47208":47209,"47209":47210,"47210":47211,"47211":47212,"47212":47213,"47213":47214,"47214":47215,"47215":47216,"47216":47217,"47217":47218,"47218":47219,"47219":47220,"47220":47221,"47221":47222,"47222":47223,"47223":47224,"47224":47225,"47225":47226,"47226":47227,"47227":47228,"47228":47229,"47229":47230,"47230":47231,"47231":47232,"47232":47233,"47233":47234,"47234":47235,"47235":47236,"47236":47237,"47237":47238,"47238":47239,"47239":47240,"47240":47241,"47241":47242,"47242":47243,"47243":47244,"47244":47245,"47245":47246,"47246":47247,"47247":47248,"47248":47249,"47249":47250,"47250":47251,"47251":47252,"47252":47253,"47253":47254,"47254":47255,"47255":47256,"47256":47257,"47257":47258,"47258":47259,"47259":47260,"47260":47261,"47261":47262,"47262":47263,"47263":47264,"47264":47265,"47265":47266,"47266":47267,"47267":47268,"47268":47269,"47269":47270,"47270":47271,"47271":47272,"47272":47273,"47273":47274,"47274":47275,"47275":47276,"47276":47277,"47277":47278,"47278":47279,"47279":47280,"47280":47281,"47281":47282,"47282":47283,"47283":47284,"47284":47285,"47285":47286,"47286":47287,"47287":47288,"47288":47289,"47289":47290,"47290":47291,"47291":47292,"47292":47293,"47293":47294,"47294":47295,"47295":47296,"47296":47297,"47297":47298,"47298":47299,"47299":47300,"47300":47301,"47301":47302,"47302":47303,"47303":47304,"47304":47305,"47305":47306,"47306":47307,"47307":47308,"47308":47309,"47309":47310,"47310":47311,"47311":47312,"47312":47313,"47313":47314,"47314":47315,"47315":47316,"47316":47317,"47317":47318,"47318":47319,"47319":47320,"47320":47321,"47321":47322,"47322":47323,"47323":47324,"47324":47325,"47325":47326,"47326":47327,"47327":47328,"47328":47329,"47329":47330,"47330":47331,"47331":47332,"47332":47333,"47333":47334,"47334":47335,"47335":47336,"47336":47337,"47337":47338,"47338":47339,"47339":47340,"47340":47341,"47341":47342,"47342":47343,"47343":47344,"47344":47345,"47345":47346,"47346":47347,"47347":47348,"47348":47349,"47349":47350,"47350":47351,"47351":47352,"47352":47353,"47353":47354,"47354":47355,"47355":47356,"47356":47357,"47357":47358,"47358":47359,"47359":47360,"47360":47361,"47361":47362,"47362":47363,"47363":47364,"47364":47365,"47365":47366,"47366":47367,"47367":47368,"47368":47369,"47369":47370,"47370":47371,"47371":47372,"47372":47373,"47373":47374,"47374":47375,"47375":47376,"47376":47377,"47377":47378,"47378":47379,"47379":47380,"47380":47381,"47381":47382,"47382":47383,"47383":47384,"47384":47385,"47385":47386,"47386":47387,"47387":47388,"47388":47389,"47389":47390,"47390":47391,"47391":47392,"47392":47393,"47393":47394,"47394":47395,"47395":47396,"47396":47397,"47397":47398,"47398":47399,"47399":47400,"47400":47401,"47401":47402,"47402":47403,"47403":47404,"47404":47405,"47405":47406,"47406":47407,"47407":47408,"47408":47409,"47409":47410,"47410":47411,"47411":47412,"47412":47413,"47413":47414,"47414":47415,"47415":47416,"47416":47417,"47417":47418,"47418":47419,"47419":47420,"47420":47421,"47421":47422,"47422":47423,"47423":47424,"47424":47425,"47425":47426,"47426":47427,"47427":47428,"47428":47429,"47429":47430,"47430":47431,"47431":47432,"47432":47433,"47433":47434,"47434":47435,"47435":47436,"47436":47437,"47437":47438,"47438":47439,"47439":47440,"47440":47441,"47441":47442,"47442":47443,"47443":47444,"47444":47445,"47445":47446,"47446":47447,"47447":47448,"47448":47449,"47449":47450,"47450":47451,"47451":47452,"47452":47453,"47453":47454,"47454":47455,"47455":47456,"47456":47457,"47457":47458,"47458":47459,"47459":47460,"47460":47461,"47461":47462,"47462":47463,"47463":47464,"47464":47465,"47465":47466,"47466":47467,"47467":47468,"47468":47469,"47469":47470,"47470":47471,"47471":47472,"47472":47473,"47473":47474,"47474":47475,"47475":47476,"47476":47477,"47477":47478,"47478":47479,"47479":47480,"47480":47481,"47481":47482,"47482":47483,"47483":47484,"47484":47485,"47485":47486,"47486":47487,"47487":47488,"47488":47489,"47489":47490,"47490":47491,"47491":47492,"47492":47493,"47493":47494,"47494":47495,"47495":47496,"47496":47497,"47497":47498,"47498":47499,"47499":47500,"47500":47501,"47501":47502,"47502":47503,"47503":47504,"47504":47505,"47505":47506,"47506":47507,"47507":47508,"47508":47509,"47509":47510,"47510":47511,"47511":47512,"47512":47513,"47513":47514,"47514":47515,"47515":47516,"47516":47517,"47517":47518,"47518":47519,"47519":47520,"47520":47521,"47521":47522,"47522":47523,"47523":47524,"47524":47525,"47525":47526,"47526":47527,"47527":47528,"47528":47529,"47529":47530,"47530":47531,"47531":47532,"47532":47533,"47533":47534,"47534":47535,"47535":47536,"47536":47537,"47537":47538,"47538":47539,"47539":47540,"47540":47541,"47541":47542,"47542":47543,"47543":47544,"47544":47545,"47545":47546,"47546":47547,"47547":47548,"47548":47549,"47549":47550,"47550":47551,"47551":47552,"47552":47553,"47553":47554,"47554":47555,"47555":47556,"47556":47557,"47557":47558,"47558":47559,"47559":47560,"47560":47561,"47561":47562,"47562":47563,"47563":47564,"47564":47565,"47565":47566,"47566":47567,"47567":47568,"47568":47569,"47569":47570,"47570":47571,"47571":47572,"47572":47573,"47573":47574,"47574":47575,"47575":47576,"47576":47577,"47577":47578,"47578":47579,"47579":47580,"47580":47581,"47581":47582,"47582":47583,"47583":47584,"47584":47585,"47585":47586,"47586":47587,"47587":47588,"47588":47589,"47589":47590,"47590":47591,"47591":47592,"47592":47593,"47593":47594,"47594":47595,"47595":47596,"47596":47597,"47597":47598,"47598":47599,"47599":47600,"47600":47601,"47601":47602,"47602":47603,"47603":47604,"47604":47605,"47605":47606,"47606":47607,"47607":47608,"47608":47609,"47609":47610,"47610":47611,"47611":47612,"47612":47613,"47613":47614,"47614":47615,"47615":47616,"47616":47617,"47617":47618,"47618":47619,"47619":47620,"47620":47621,"47621":47622,"47622":47623,"47623":47624,"47624":47625,"47625":47626,"47626":47627,"47627":47628,"47628":47629,"47629":47630,"47630":47631,"47631":47632,"47632":47633,"47633":47634,"47634":47635,"47635":47636,"47636":47637,"47637":47638,"47638":47639,"47639":47640,"47640":47641,"47641":47642,"47642":47643,"47643":47644,"47644":47645,"47645":47646,"47646":47647,"47647":47648,"47648":47649,"47649":47650,"47650":47651,"47651":47652,"47652":47653,"47653":47654,"47654":47655,"47655":47656,"47656":47657,"47657":47658,"47658":47659,"47659":47660,"47660":47661,"47661":47662,"47662":47663,"47663":47664,"47664":47665,"47665":47666,"47666":47667,"47667":47668,"47668":47669,"47669":47670,"47670":47671,"47671":47672,"47672":47673,"47673":47674,"47674":47675,"47675":47676,"47676":47677,"47677":47678,"47678":47679,"47679":47680,"47680":47681,"47681":47682,"47682":47683,"47683":47684,"47684":47685,"47685":47686,"47686":47687,"47687":47688,"47688":47689,"47689":47690,"47690":47691,"47691":47692,"47692":47693,"47693":47694,"47694":47695,"47695":47696,"47696":47697,"47697":47698,"47698":47699,"47699":47700,"47700":47701,"47701":47702,"47702":47703,"47703":47704,"47704":47705,"47705":47706,"47706":47707,"47707":47708,"47708":47709,"47709":47710,"47710":47711,"47711":47712,"47712":47713,"47713":47714,"47714":47715,"47715":47716,"47716":47717,"47717":47718,"47718":47719,"47719":47720,"47720":47721,"47721":47722,"47722":47723,"47723":47724,"47724":47725,"47725":47726,"47726":47727,"47727":47728,"47728":47729,"47729":47730,"47730":47731,"47731":47732,"47732":47733,"47733":47734,"47734":47735,"47735":47736,"47736":47737,"47737":47738,"47738":47739,"47739":47740,"47740":47741,"47741":47742,"47742":47743,"47743":47744,"47744":47745,"47745":47746,"47746":47747,"47747":47748,"47748":47749,"47749":47750,"47750":47751,"47751":47752,"47752":47753,"47753":47754,"47754":47755,"47755":47756,"47756":47757,"47757":47758,"47758":47759,"47759":47760,"47760":47761,"47761":47762,"47762":47763,"47763":47764,"47764":47765,"47765":47766,"47766":47767,"47767":47768,"47768":47769,"47769":47770,"47770":47771,"47771":47772,"47772":47773,"47773":47774,"47774":47775,"47775":47776,"47776":47777,"47777":47778,"47778":47779,"47779":47780,"47780":47781,"47781":47782,"47782":47783,"47783":47784,"47784":47785,"47785":47786,"47786":47787,"47787":47788,"47788":47789,"47789":47790,"47790":47791,"47791":47792,"47792":47793,"47793":47794,"47794":47795,"47795":47796,"47796":47797,"47797":47798,"47798":47799,"47799":47800,"47800":47801,"47801":47802,"47802":47803,"47803":47804,"47804":47805,"47805":47806,"47806":47807,"47807":47808,"47808":47809,"47809":47810,"47810":47811,"47811":47812,"47812":47813,"47813":47814,"47814":47815,"47815":47816,"47816":47817,"47817":47818,"47818":47819,"47819":47820,"47820":47821,"47821":47822,"47822":47823,"47823":47824,"47824":47825,"47825":47826,"47826":47827,"47827":47828,"47828":47829,"47829":47830,"47830":47831,"47831":47832,"47832":47833,"47833":47834,"47834":47835,"47835":47836,"47836":47837,"47837":47838,"47838":47839,"47839":47840,"47840":47841,"47841":47842,"47842":47843,"47843":47844,"47844":47845,"47845":47846,"47846":47847,"47847":47848,"47848":47849,"47849":47850,"47850":47851,"47851":47852,"47852":47853,"47853":47854,"47854":47855,"47855":47856,"47856":47857,"47857":47858,"47858":47859,"47859":47860,"47860":47861,"47861":47862,"47862":47863,"47863":47864,"47864":47865,"47865":47866,"47866":47867,"47867":47868,"47868":47869,"47869":47870,"47870":47871,"47871":47872,"47872":47873,"47873":47874,"47874":47875,"47875":47876,"47876":47877,"47877":47878,"47878":47879,"47879":47880,"47880":47881,"47881":47882,"47882":47883,"47883":47884,"47884":47885,"47885":47886,"47886":47887,"47887":47888,"47888":47889,"47889":47890,"47890":47891,"47891":47892,"47892":47893,"47893":47894,"47894":47895,"47895":47896,"47896":47897,"47897":47898,"47898":47899,"47899":47900,"47900":47901,"47901":47902,"47902":47903,"47903":47904,"47904":47905,"47905":47906,"47906":47907,"47907":47908,"47908":47909,"47909":47910,"47910":47911,"47911":47912,"47912":47913,"47913":47914,"47914":47915,"47915":47916,"47916":47917,"47917":47918,"47918":47919,"47919":47920,"47920":47921,"47921":47922,"47922":47923,"47923":47924,"47924":47925,"47925":47926,"47926":47927,"47927":47928,"47928":47929,"47929":47930,"47930":47931,"47931":47932,"47932":47933,"47933":47934,"47934":47935,"47935":47936,"47936":47937,"47937":47938,"47938":47939,"47939":47940,"47940":47941,"47941":47942,"47942":47943,"47943":47944,"47944":47945,"47945":47946,"47946":47947,"47947":47948,"47948":47949,"47949":47950,"47950":47951,"47951":47952,"47952":47953,"47953":47954,"47954":47955,"47955":47956,"47956":47957,"47957":47958,"47958":47959,"47959":47960,"47960":47961,"47961":47962,"47962":47963,"47963":47964,"47964":47965,"47965":47966,"47966":47967,"47967":47968,"47968":47969,"47969":47970,"47970":47971,"47971":47972,"47972":47973,"47973":47974,"47974":47975,"47975":47976,"47976":47977,"47977":47978,"47978":47979,"47979":47980,"47980":47981,"47981":47982,"47982":47983,"47983":47984,"47984":47985,"47985":47986,"47986":47987,"47987":47988,"47988":47989,"47989":47990,"47990":47991,"47991":47992,"47992":47993,"47993":47994,"47994":47995,"47995":47996,"47996":47997,"47997":47998,"47998":47999,"47999":48000,"48000":48001,"48001":48002,"48002":48003,"48003":48004,"48004":48005,"48005":48006,"48006":48007,"48007":48008,"48008":48009,"48009":48010,"48010":48011,"48011":48012,"48012":48013,"48013":48014,"48014":48015,"48015":48016,"48016":48017,"48017":48018,"48018":48019,"48019":48020,"48020":48021,"48021":48022,"48022":48023,"48023":48024,"48024":48025,"48025":48026,"48026":48027,"48027":48028,"48028":48029,"48029":48030,"48030":48031,"48031":48032,"48032":48033,"48033":48034,"48034":48035,"48035":48036,"48036":48037,"48037":48038,"48038":48039,"48039":48040,"48040":48041,"48041":48042,"48042":48043,"48043":48044,"48044":48045,"48045":48046,"48046":48047,"48047":48048,"48048":48049,"48049":48050,"48050":48051,"48051":48052,"48052":48053,"48053":48054,"48054":48055,"48055":48056,"48056":48057,"48057":48058,"48058":48059,"48059":48060,"48060":48061,"48061":48062,"48062":48063,"48063":48064,"48064":48065,"48065":48066,"48066":48067,"48067":48068,"48068":48069,"48069":48070,"48070":48071,"48071":48072,"48072":48073,"48073":48074,"48074":48075,"48075":48076,"48076":48077,"48077":48078,"48078":48079,"48079":48080,"48080":48081,"48081":48082,"48082":48083,"48083":48084,"48084":48085,"48085":48086,"48086":48087,"48087":48088,"48088":48089,"48089":48090,"48090":48091,"48091":48092,"48092":48093,"48093":48094,"48094":48095,"48095":48096,"48096":48097,"48097":48098,"48098":48099,"48099":48100,"48100":48101,"48101":48102,"48102":48103,"48103":48104,"48104":48105,"48105":48106,"48106":48107,"48107":48108,"48108":48109,"48109":48110,"48110":48111,"48111":48112,"48112":48113,"48113":48114,"48114":48115,"48115":48116,"48116":48117,"48117":48118,"48118":48119,"48119":48120,"48120":48121,"48121":48122,"48122":48123,"48123":48124,"48124":48125,"48125":48126,"48126":48127,"48127":48128,"48128":48129,"48129":48130,"48130":48131,"48131":48132,"48132":48133,"48133":48134,"48134":48135,"48135":48136,"48136":48137,"48137":48138,"48138":48139,"48139":48140,"48140":48141,"48141":48142,"48142":48143,"48143":48144,"48144":48145,"48145":48146,"48146":48147,"48147":48148,"48148":48149,"48149":48150,"48150":48151,"48151":48152,"48152":48153,"48153":48154,"48154":48155,"48155":48156,"48156":48157,"48157":48158,"48158":48159,"48159":48160,"48160":48161,"48161":48162,"48162":48163,"48163":48164,"48164":48165,"48165":48166,"48166":48167,"48167":48168,"48168":48169,"48169":48170,"48170":48171,"48171":48172,"48172":48173,"48173":48174,"48174":48175,"48175":48176,"48176":48177,"48177":48178,"48178":48179,"48179":48180,"48180":48181,"48181":48182,"48182":48183,"48183":48184,"48184":48185,"48185":48186,"48186":48187,"48187":48188,"48188":48189,"48189":48190,"48190":48191,"48191":48192,"48192":48193,"48193":48194,"48194":48195,"48195":48196,"48196":48197,"48197":48198,"48198":48199,"48199":48200,"48200":48201,"48201":48202,"48202":48203,"48203":48204,"48204":48205,"48205":48206,"48206":48207,"48207":48208,"48208":48209,"48209":48210,"48210":48211,"48211":48212,"48212":48213,"48213":48214,"48214":48215,"48215":48216,"48216":48217,"48217":48218,"48218":48219,"48219":48220,"48220":48221,"48221":48222,"48222":48223,"48223":48224,"48224":48225,"48225":48226,"48226":48227,"48227":48228,"48228":48229,"48229":48230,"48230":48231,"48231":48232,"48232":48233,"48233":48234,"48234":48235,"48235":48236,"48236":48237,"48237":48238,"48238":48239,"48239":48240,"48240":48241,"48241":48242,"48242":48243,"48243":48244,"48244":48245,"48245":48246,"48246":48247,"48247":48248,"48248":48249,"48249":48250,"48250":48251,"48251":48252,"48252":48253,"48253":48254,"48254":48255,"48255":48256,"48256":48257,"48257":48258,"48258":48259,"48259":48260,"48260":48261,"48261":48262,"48262":48263,"48263":48264,"48264":48265,"48265":48266,"48266":48267,"48267":48268,"48268":48269,"48269":48270,"48270":48271,"48271":48272,"48272":48273,"48273":48274,"48274":48275,"48275":48276,"48276":48277,"48277":48278,"48278":48279,"48279":48280,"48280":48281,"48281":48282,"48282":48283,"48283":48284,"48284":48285,"48285":48286,"48286":48287,"48287":48288,"48288":48289,"48289":48290,"48290":48291,"48291":48292,"48292":48293,"48293":48294,"48294":48295,"48295":48296,"48296":48297,"48297":48298,"48298":48299,"48299":48300,"48300":48301,"48301":48302,"48302":48303,"48303":48304,"48304":48305,"48305":48306,"48306":48307,"48307":48308,"48308":48309,"48309":48310,"48310":48311,"48311":48312,"48312":48313,"48313":48314,"48314":48315,"48315":48316,"48316":48317,"48317":48318,"48318":48319,"48319":48320,"48320":48321,"48321":48322,"48322":48323,"48323":48324,"48324":48325,"48325":48326,"48326":48327,"48327":48328,"48328":48329,"48329":48330,"48330":48331,"48331":48332,"48332":48333,"48333":48334,"48334":48335,"48335":48336,"48336":48337,"48337":48338,"48338":48339,"48339":48340,"48340":48341,"48341":48342,"48342":48343,"48343":48344,"48344":48345,"48345":48346,"48346":48347,"48347":48348,"48348":48349,"48349":48350,"48350":48351,"48351":48352,"48352":48353,"48353":48354,"48354":48355,"48355":48356,"48356":48357,"48357":48358,"48358":48359,"48359":48360,"48360":48361,"48361":48362,"48362":48363,"48363":48364,"48364":48365,"48365":48366,"48366":48367,"48367":48368,"48368":48369,"48369":48370,"48370":48371,"48371":48372,"48372":48373,"48373":48374,"48374":48375,"48375":48376,"48376":48377,"48377":48378,"48378":48379,"48379":48380,"48380":48381,"48381":48382,"48382":48383,"48383":48384,"48384":48385,"48385":48386,"48386":48387,"48387":48388,"48388":48389,"48389":48390,"48390":48391,"48391":48392,"48392":48393,"48393":48394,"48394":48395,"48395":48396,"48396":48397,"48397":48398,"48398":48399,"48399":48400,"48400":48401,"48401":48402,"48402":48403,"48403":48404,"48404":48405,"48405":48406,"48406":48407,"48407":48408,"48408":48409,"48409":48410,"48410":48411,"48411":48412,"48412":48413,"48413":48414,"48414":48415,"48415":48416,"48416":48417,"48417":48418,"48418":48419,"48419":48420,"48420":48421,"48421":48422,"48422":48423,"48423":48424,"48424":48425,"48425":48426,"48426":48427,"48427":48428,"48428":48429,"48429":48430,"48430":48431,"48431":48432,"48432":48433,"48433":48434,"48434":48435,"48435":48436,"48436":48437,"48437":48438,"48438":48439,"48439":48440,"48440":48441,"48441":48442,"48442":48443,"48443":48444,"48444":48445,"48445":48446,"48446":48447,"48447":48448,"48448":48449,"48449":48450,"48450":48451,"48451":48452,"48452":48453,"48453":48454,"48454":48455,"48455":48456,"48456":48457,"48457":48458,"48458":48459,"48459":48460,"48460":48461,"48461":48462,"48462":48463,"48463":48464,"48464":48465,"48465":48466,"48466":48467,"48467":48468,"48468":48469,"48469":48470,"48470":48471,"48471":48472,"48472":48473,"48473":48474,"48474":48475,"48475":48476,"48476":48477,"48477":48478,"48478":48479,"48479":48480,"48480":48481,"48481":48482,"48482":48483,"48483":48484,"48484":48485,"48485":48486,"48486":48487,"48487":48488,"48488":48489,"48489":48490,"48490":48491,"48491":48492,"48492":48493,"48493":48494,"48494":48495,"48495":48496,"48496":48497,"48497":48498,"48498":48499,"48499":48500,"48500":48501,"48501":48502,"48502":48503,"48503":48504,"48504":48505,"48505":48506,"48506":48507,"48507":48508,"48508":48509,"48509":48510,"48510":48511,"48511":48512,"48512":48513,"48513":48514,"48514":48515,"48515":48516,"48516":48517,"48517":48518,"48518":48519,"48519":48520,"48520":48521,"48521":48522,"48522":48523,"48523":48524,"48524":48525,"48525":48526,"48526":48527,"48527":48528,"48528":48529,"48529":48530,"48530":48531,"48531":48532,"48532":48533,"48533":48534,"48534":48535,"48535":48536,"48536":48537,"48537":48538,"48538":48539,"48539":48540,"48540":48541,"48541":48542,"48542":48543,"48543":48544,"48544":48545,"48545":48546,"48546":48547,"48547":48548,"48548":48549,"48549":48550,"48550":48551,"48551":48552,"48552":48553,"48553":48554,"48554":48555,"48555":48556,"48556":48557,"48557":48558,"48558":48559,"48559":48560,"48560":48561,"48561":48562,"48562":48563,"48563":48564,"48564":48565,"48565":48566,"48566":48567,"48567":48568,"48568":48569,"48569":48570,"48570":48571,"48571":48572,"48572":48573,"48573":48574,"48574":48575,"48575":48576,"48576":48577,"48577":48578,"48578":48579,"48579":48580,"48580":48581,"48581":48582,"48582":48583,"48583":48584,"48584":48585,"48585":48586,"48586":48587,"48587":48588,"48588":48589,"48589":48590,"48590":48591,"48591":48592,"48592":48593,"48593":48594,"48594":48595,"48595":48596,"48596":48597,"48597":48598,"48598":48599,"48599":48600,"48600":48601,"48601":48602,"48602":48603,"48603":48604,"48604":48605,"48605":48606,"48606":48607,"48607":48608,"48608":48609,"48609":48610,"48610":48611,"48611":48612,"48612":48613,"48613":48614,"48614":48615,"48615":48616,"48616":48617,"48617":48618,"48618":48619,"48619":48620,"48620":48621,"48621":48622,"48622":48623,"48623":48624,"48624":48625,"48625":48626,"48626":48627,"48627":48628,"48628":48629,"48629":48630,"48630":48631,"48631":48632,"48632":48633,"48633":48634,"48634":48635,"48635":48636,"48636":48637,"48637":48638,"48638":48639,"48639":48640,"48640":48641,"48641":48642,"48642":48643,"48643":48644,"48644":48645,"48645":48646,"48646":48647,"48647":48648,"48648":48649,"48649":48650,"48650":48651,"48651":48652,"48652":48653,"48653":48654,"48654":48655,"48655":48656,"48656":48657,"48657":48658,"48658":48659,"48659":48660,"48660":48661,"48661":48662,"48662":48663,"48663":48664,"48664":48665,"48665":48666,"48666":48667,"48667":48668,"48668":48669,"48669":48670,"48670":48671,"48671":48672,"48672":48673,"48673":48674,"48674":48675,"48675":48676,"48676":48677,"48677":48678,"48678":48679,"48679":48680,"48680":48681,"48681":48682,"48682":48683,"48683":48684,"48684":48685,"48685":48686,"48686":48687,"48687":48688,"48688":48689,"48689":48690,"48690":48691,"48691":48692,"48692":48693,"48693":48694,"48694":48695,"48695":48696,"48696":48697,"48697":48698,"48698":48699,"48699":48700,"48700":48701,"48701":48702,"48702":48703,"48703":48704,"48704":48705,"48705":48706,"48706":48707,"48707":48708,"48708":48709,"48709":48710,"48710":48711,"48711":48712,"48712":48713,"48713":48714,"48714":48715,"48715":48716,"48716":48717,"48717":48718,"48718":48719,"48719":48720,"48720":48721,"48721":48722,"48722":48723,"48723":48724,"48724":48725,"48725":48726,"48726":48727,"48727":48728,"48728":48729,"48729":48730,"48730":48731,"48731":48732,"48732":48733,"48733":48734,"48734":48735,"48735":48736,"48736":48737,"48737":48738,"48738":48739,"48739":48740,"48740":48741,"48741":48742,"48742":48743,"48743":48744,"48744":48745,"48745":48746,"48746":48747,"48747":48748,"48748":48749,"48749":48750,"48750":48751,"48751":48752,"48752":48753,"48753":48754,"48754":48755,"48755":48756,"48756":48757,"48757":48758,"48758":48759,"48759":48760,"48760":48761,"48761":48762,"48762":48763,"48763":48764,"48764":48765,"48765":48766,"48766":48767,"48767":48768,"48768":48769,"48769":48770,"48770":48771,"48771":48772,"48772":48773,"48773":48774,"48774":48775,"48775":48776,"48776":48777,"48777":48778,"48778":48779,"48779":48780,"48780":48781,"48781":48782,"48782":48783,"48783":48784,"48784":48785,"48785":48786,"48786":48787,"48787":48788,"48788":48789,"48789":48790,"48790":48791,"48791":48792,"48792":48793,"48793":48794,"48794":48795,"48795":48796,"48796":48797,"48797":48798,"48798":48799,"48799":48800,"48800":48801,"48801":48802,"48802":48803,"48803":48804,"48804":48805,"48805":48806,"48806":48807,"48807":48808,"48808":48809,"48809":48810,"48810":48811,"48811":48812,"48812":48813,"48813":48814,"48814":48815,"48815":48816,"48816":48817,"48817":48818,"48818":48819,"48819":48820,"48820":48821,"48821":48822,"48822":48823,"48823":48824,"48824":48825,"48825":48826,"48826":48827,"48827":48828,"48828":48829,"48829":48830,"48830":48831,"48831":48832,"48832":48833,"48833":48834,"48834":48835,"48835":48836,"48836":48837,"48837":48838,"48838":48839,"48839":48840,"48840":48841,"48841":48842,"48842":48843,"48843":48844,"48844":48845,"48845":48846,"48846":48847,"48847":48848,"48848":48849,"48849":48850,"48850":48851,"48851":48852,"48852":48853,"48853":48854,"48854":48855,"48855":48856,"48856":48857,"48857":48858,"48858":48859,"48859":48860,"48860":48861,"48861":48862,"48862":48863,"48863":48864,"48864":48865,"48865":48866,"48866":48867,"48867":48868,"48868":48869,"48869":48870,"48870":48871,"48871":48872,"48872":48873,"48873":48874,"48874":48875,"48875":48876,"48876":48877,"48877":48878,"48878":48879,"48879":48880,"48880":48881,"48881":48882,"48882":48883,"48883":48884,"48884":48885,"48885":48886,"48886":48887,"48887":48888,"48888":48889,"48889":48890,"48890":48891,"48891":48892,"48892":48893,"48893":48894,"48894":48895,"48895":48896,"48896":48897,"48897":48898,"48898":48899,"48899":48900,"48900":48901,"48901":48902,"48902":48903,"48903":48904,"48904":48905,"48905":48906,"48906":48907,"48907":48908,"48908":48909,"48909":48910,"48910":48911,"48911":48912,"48912":48913,"48913":48914,"48914":48915,"48915":48916,"48916":48917,"48917":48918,"48918":48919,"48919":48920,"48920":48921,"48921":48922,"48922":48923,"48923":48924,"48924":48925,"48925":48926,"48926":48927,"48927":48928,"48928":48929,"48929":48930,"48930":48931,"48931":48932,"48932":48933,"48933":48934,"48934":48935,"48935":48936,"48936":48937,"48937":48938,"48938":48939,"48939":48940,"48940":48941,"48941":48942,"48942":48943,"48943":48944,"48944":48945,"48945":48946,"48946":48947,"48947":48948,"48948":48949,"48949":48950,"48950":48951,"48951":48952,"48952":48953,"48953":48954,"48954":48955,"48955":48956,"48956":48957,"48957":48958,"48958":48959,"48959":48960,"48960":48961,"48961":48962,"48962":48963,"48963":48964,"48964":48965,"48965":48966,"48966":48967,"48967":48968,"48968":48969,"48969":48970,"48970":48971,"48971":48972,"48972":48973,"48973":48974,"48974":48975,"48975":48976,"48976":48977,"48977":48978,"48978":48979,"48979":48980,"48980":48981,"48981":48982,"48982":48983,"48983":48984,"48984":48985,"48985":48986,"48986":48987,"48987":48988,"48988":48989,"48989":48990,"48990":48991,"48991":48992,"48992":48993,"48993":48994,"48994":48995,"48995":48996,"48996":48997,"48997":48998,"48998":48999,"48999":49000,"49000":49001,"49001":49002,"49002":49003,"49003":49004,"49004":49005,"49005":49006,"49006":49007,"49007":49008,"49008":49009,"49009":49010,"49010":49011,"49011":49012,"49012":49013,"49013":49014,"49014":49015,"49015":49016,"49016":49017,"49017":49018,"49018":49019,"49019":49020,"49020":49021,"49021":49022,"49022":49023,"49023":49024,"49024":49025,"49025":49026,"49026":49027,"49027":49028,"49028":49029,"49029":49030,"49030":49031,"49031":49032,"49032":49033,"49033":49034,"49034":49035,"49035":49036,"49036":49037,"49037":49038,"49038":49039,"49039":49040,"49040":49041,"49041":49042,"49042":49043,"49043":49044,"49044":49045,"49045":49046,"49046":49047,"49047":49048,"49048":49049,"49049":49050,"49050":49051,"49051":49052,"49052":49053,"49053":49054,"49054":49055,"49055":49056,"49056":49057,"49057":49058,"49058":49059,"49059":49060,"49060":49061,"49061":49062,"49062":49063,"49063":49064,"49064":49065,"49065":49066,"49066":49067,"49067":49068,"49068":49069,"49069":49070,"49070":49071,"49071":49072,"49072":49073,"49073":49074,"49074":49075,"49075":49076,"49076":49077,"49077":49078,"49078":49079,"49079":49080,"49080":49081,"49081":49082,"49082":49083,"49083":49084,"49084":49085,"49085":49086,"49086":49087,"49087":49088,"49088":49089,"49089":49090,"49090":49091,"49091":49092,"49092":49093,"49093":49094,"49094":49095,"49095":49096,"49096":49097,"49097":49098,"49098":49099,"49099":49100,"49100":49101,"49101":49102,"49102":49103,"49103":49104,"49104":49105,"49105":49106,"49106":49107,"49107":49108,"49108":49109,"49109":49110,"49110":49111,"49111":49112,"49112":49113,"49113":49114,"49114":49115,"49115":49116,"49116":49117,"49117":49118,"49118":49119,"49119":49120,"49120":49121,"49121":49122,"49122":49123,"49123":49124,"49124":49125,"49125":49126,"49126":49127,"49127":49128,"49128":49129,"49129":49130,"49130":49131,"49131":49132,"49132":49133,"49133":49134,"49134":49135,"49135":49136,"49136":49137,"49137":49138,"49138":49139,"49139":49140,"49140":49141,"49141":49142,"49142":49143,"49143":49144,"49144":49145,"49145":49146,"49146":49147,"49147":49148,"49148":49149,"49149":49150,"49150":49151,"49151":49152,"49152":49153,"49153":49154,"49154":49155,"49155":49156,"49156":49157,"49157":49158,"49158":49159,"49159":49160,"49160":49161,"49161":49162,"49162":49163,"49163":49164,"49164":49165,"49165":49166,"49166":49167,"49167":49168,"49168":49169,"49169":49170,"49170":49171,"49171":49172,"49172":49173,"49173":49174,"49174":49175,"49175":49176,"49176":49177,"49177":49178,"49178":49179,"49179":49180,"49180":49181,"49181":49182,"49182":49183,"49183":49184,"49184":49185,"49185":49186,"49186":49187,"49187":49188,"49188":49189,"49189":49190,"49190":49191,"49191":49192,"49192":49193,"49193":49194,"49194":49195,"49195":49196,"49196":49197,"49197":49198,"49198":49199,"49199":49200,"49200":49201,"49201":49202,"49202":49203,"49203":49204,"49204":49205,"49205":49206,"49206":49207,"49207":49208,"49208":49209,"49209":49210,"49210":49211,"49211":49212,"49212":49213,"49213":49214,"49214":49215,"49215":49216,"49216":49217,"49217":49218,"49218":49219,"49219":49220,"49220":49221,"49221":49222,"49222":49223,"49223":49224,"49224":49225,"49225":49226,"49226":49227,"49227":49228,"49228":49229,"49229":49230,"49230":49231,"49231":49232,"49232":49233,"49233":49234,"49234":49235,"49235":49236,"49236":49237,"49237":49238,"49238":49239,"49239":49240,"49240":49241,"49241":49242,"49242":49243,"49243":49244,"49244":49245,"49245":49246,"49246":49247,"49247":49248,"49248":49249,"49249":49250,"49250":49251,"49251":49252,"49252":49253,"49253":49254,"49254":49255,"49255":49256,"49256":49257,"49257":49258,"49258":49259,"49259":49260,"49260":49261,"49261":49262,"49262":49263,"49263":49264,"49264":49265,"49265":49266,"49266":49267,"49267":49268,"49268":49269,"49269":49270,"49270":49271,"49271":49272,"49272":49273,"49273":49274,"49274":49275,"49275":49276,"49276":49277,"49277":49278,"49278":49279,"49279":49280,"49280":49281,"49281":49282,"49282":49283,"49283":49284,"49284":49285,"49285":49286,"49286":49287,"49287":49288,"49288":49289,"49289":49290,"49290":49291,"49291":49292,"49292":49293,"49293":49294,"49294":49295,"49295":49296,"49296":49297,"49297":49298,"49298":49299,"49299":49300,"49300":49301,"49301":49302,"49302":49303,"49303":49304,"49304":49305,"49305":49306,"49306":49307,"49307":49308,"49308":49309,"49309":49310,"49310":49311,"49311":49312,"49312":49313,"49313":49314,"49314":49315,"49315":49316,"49316":49317,"49317":49318,"49318":49319,"49319":49320,"49320":49321,"49321":49322,"49322":49323,"49323":49324,"49324":49325,"49325":49326,"49326":49327,"49327":49328,"49328":49329,"49329":49330,"49330":49331,"49331":49332,"49332":49333,"49333":49334,"49334":49335,"49335":49336,"49336":49337,"49337":49338,"49338":49339,"49339":49340,"49340":49341,"49341":49342,"49342":49343,"49343":49344,"49344":49345,"49345":49346,"49346":49347,"49347":49348,"49348":49349,"49349":49350,"49350":49351,"49351":49352,"49352":49353,"49353":49354,"49354":49355,"49355":49356,"49356":49357,"49357":49358,"49358":49359,"49359":49360,"49360":49361,"49361":49362,"49362":49363,"49363":49364,"49364":49365,"49365":49366,"49366":49367,"49367":49368,"49368":49369,"49369":49370,"49370":49371,"49371":49372,"49372":49373,"49373":49374,"49374":49375,"49375":49376,"49376":49377,"49377":49378,"49378":49379,"49379":49380,"49380":49381,"49381":49382,"49382":49383,"49383":49384,"49384":49385,"49385":49386,"49386":49387,"49387":49388,"49388":49389,"49389":49390,"49390":49391,"49391":49392,"49392":49393,"49393":49394,"49394":49395,"49395":49396,"49396":49397,"49397":49398,"49398":49399,"49399":49400,"49400":49401,"49401":49402,"49402":49403,"49403":49404,"49404":49405,"49405":49406,"49406":49407,"49407":49408,"49408":49409,"49409":49410,"49410":49411,"49411":49412,"49412":49413,"49413":49414,"49414":49415,"49415":49416,"49416":49417,"49417":49418,"49418":49419,"49419":49420,"49420":49421,"49421":49422,"49422":49423,"49423":49424,"49424":49425,"49425":49426,"49426":49427,"49427":49428,"49428":49429,"49429":49430,"49430":49431,"49431":49432,"49432":49433,"49433":49434,"49434":49435,"49435":49436,"49436":49437,"49437":49438,"49438":49439,"49439":49440,"49440":49441,"49441":49442,"49442":49443,"49443":49444,"49444":49445,"49445":49446,"49446":49447,"49447":49448,"49448":49449,"49449":49450,"49450":49451,"49451":49452,"49452":49453,"49453":49454,"49454":49455,"49455":49456,"49456":49457,"49457":49458,"49458":49459,"49459":49460,"49460":49461,"49461":49462,"49462":49463,"49463":49464,"49464":49465,"49465":49466,"49466":49467,"49467":49468,"49468":49469,"49469":49470,"49470":49471,"49471":49472,"49472":49473,"49473":49474,"49474":49475,"49475":49476,"49476":49477,"49477":49478,"49478":49479,"49479":49480,"49480":49481,"49481":49482,"49482":49483,"49483":49484,"49484":49485,"49485":49486,"49486":49487,"49487":49488,"49488":49489,"49489":49490,"49490":49491,"49491":49492,"49492":49493,"49493":49494,"49494":49495,"49495":49496,"49496":49497,"49497":49498,"49498":49499,"49499":49500,"49500":49501,"49501":49502,"49502":49503,"49503":49504,"49504":49505,"49505":49506,"49506":49507,"49507":49508,"49508":49509,"49509":49510,"49510":49511,"49511":49512,"49512":49513,"49513":49514,"49514":49515,"49515":49516,"49516":49517,"49517":49518,"49518":49519,"49519":49520,"49520":49521,"49521":49522,"49522":49523,"49523":49524,"49524":49525,"49525":49526,"49526":49527,"49527":49528,"49528":49529,"49529":49530,"49530":49531,"49531":49532,"49532":49533,"49533":49534,"49534":49535,"49535":49536,"49536":49537,"49537":49538,"49538":49539,"49539":49540,"49540":49541,"49541":49542,"49542":49543,"49543":49544,"49544":49545,"49545":49546,"49546":49547,"49547":49548,"49548":49549,"49549":49550,"49550":49551,"49551":49552,"49552":49553,"49553":49554,"49554":49555,"49555":49556,"49556":49557,"49557":49558,"49558":49559,"49559":49560,"49560":49561,"49561":49562,"49562":49563,"49563":49564,"49564":49565,"49565":49566,"49566":49567,"49567":49568,"49568":49569,"49569":49570,"49570":49571,"49571":49572,"49572":49573,"49573":49574,"49574":49575,"49575":49576,"49576":49577,"49577":49578,"49578":49579,"49579":49580,"49580":49581,"49581":49582,"49582":49583,"49583":49584,"49584":49585,"49585":49586,"49586":49587,"49587":49588,"49588":49589,"49589":49590,"49590":49591,"49591":49592,"49592":49593,"49593":49594,"49594":49595,"49595":49596,"49596":49597,"49597":49598,"49598":49599,"49599":49600,"49600":49601,"49601":49602,"49602":49603,"49603":49604,"49604":49605,"49605":49606,"49606":49607,"49607":49608,"49608":49609,"49609":49610,"49610":49611,"49611":49612,"49612":49613,"49613":49614,"49614":49615,"49615":49616,"49616":49617,"49617":49618,"49618":49619,"49619":49620,"49620":49621,"49621":49622,"49622":49623,"49623":49624,"49624":49625,"49625":49626,"49626":49627,"49627":49628,"49628":49629,"49629":49630,"49630":49631,"49631":49632,"49632":49633,"49633":49634,"49634":49635,"49635":49636,"49636":49637,"49637":49638,"49638":49639,"49639":49640,"49640":49641,"49641":49642,"49642":49643,"49643":49644,"49644":49645,"49645":49646,"49646":49647,"49647":49648,"49648":49649,"49649":49650,"49650":49651,"49651":49652,"49652":49653,"49653":49654,"49654":49655,"49655":49656,"49656":49657,"49657":49658,"49658":49659,"49659":49660,"49660":49661,"49661":49662,"49662":49663,"49663":49664,"49664":49665,"49665":49666,"49666":49667,"49667":49668,"49668":49669,"49669":49670,"49670":49671,"49671":49672,"49672":49673,"49673":49674,"49674":49675,"49675":49676,"49676":49677,"49677":49678,"49678":49679,"49679":49680,"49680":49681,"49681":49682,"49682":49683,"49683":49684,"49684":49685,"49685":49686,"49686":49687,"49687":49688,"49688":49689,"49689":49690,"49690":49691,"49691":49692,"49692":49693,"49693":49694,"49694":49695,"49695":49696,"49696":49697,"49697":49698,"49698":49699,"49699":49700,"49700":49701,"49701":49702,"49702":49703,"49703":49704,"49704":49705,"49705":49706,"49706":49707,"49707":49708,"49708":49709,"49709":49710,"49710":49711,"49711":49712,"49712":49713,"49713":49714,"49714":49715,"49715":49716,"49716":49717,"49717":49718,"49718":49719,"49719":49720,"49720":49721,"49721":49722,"49722":49723,"49723":49724,"49724":49725,"49725":49726,"49726":49727,"49727":49728,"49728":49729,"49729":49730,"49730":49731,"49731":49732,"49732":49733,"49733":49734,"49734":49735,"49735":49736,"49736":49737,"49737":49738,"49738":49739,"49739":49740,"49740":49741,"49741":49742,"49742":49743,"49743":49744,"49744":49745,"49745":49746,"49746":49747,"49747":49748,"49748":49749,"49749":49750,"49750":49751,"49751":49752,"49752":49753,"49753":49754,"49754":49755,"49755":49756,"49756":49757,"49757":49758,"49758":49759,"49759":49760,"49760":49761,"49761":49762,"49762":49763,"49763":49764,"49764":49765,"49765":49766,"49766":49767,"49767":49768,"49768":49769,"49769":49770,"49770":49771,"49771":49772,"49772":49773,"49773":49774,"49774":49775,"49775":49776,"49776":49777,"49777":49778,"49778":49779,"49779":49780,"49780":49781,"49781":49782,"49782":49783,"49783":49784,"49784":49785,"49785":49786,"49786":49787,"49787":49788,"49788":49789,"49789":49790,"49790":49791,"49791":49792,"49792":49793,"49793":49794,"49794":49795,"49795":49796,"49796":49797,"49797":49798,"49798":49799,"49799":49800,"49800":49801,"49801":49802,"49802":49803,"49803":49804,"49804":49805,"49805":49806,"49806":49807,"49807":49808,"49808":49809,"49809":49810,"49810":49811,"49811":49812,"49812":49813,"49813":49814,"49814":49815,"49815":49816,"49816":49817,"49817":49818,"49818":49819,"49819":49820,"49820":49821,"49821":49822,"49822":49823,"49823":49824,"49824":49825,"49825":49826,"49826":49827,"49827":49828,"49828":49829,"49829":49830,"49830":49831,"49831":49832,"49832":49833,"49833":49834,"49834":49835,"49835":49836,"49836":49837,"49837":49838,"49838":49839,"49839":49840,"49840":49841,"49841":49842,"49842":49843,"49843":49844,"49844":49845,"49845":49846,"49846":49847,"49847":49848,"49848":49849,"49849":49850,"49850":49851,"49851":49852,"49852":49853,"49853":49854,"49854":49855,"49855":49856,"49856":49857,"49857":49858,"49858":49859,"49859":49860,"49860":49861,"49861":49862,"49862":49863,"49863":49864,"49864":49865,"49865":49866,"49866":49867,"49867":49868,"49868":49869,"49869":49870,"49870":49871,"49871":49872,"49872":49873,"49873":49874,"49874":49875,"49875":49876,"49876":49877,"49877":49878,"49878":49879,"49879":49880,"49880":49881,"49881":49882,"49882":49883,"49883":49884,"49884":49885,"49885":49886,"49886":49887,"49887":49888,"49888":49889,"49889":49890,"49890":49891,"49891":49892,"49892":49893,"49893":49894,"49894":49895,"49895":49896,"49896":49897,"49897":49898,"49898":49899,"49899":49900,"49900":49901,"49901":49902,"49902":49903,"49903":49904,"49904":49905,"49905":49906,"49906":49907,"49907":49908,"49908":49909,"49909":49910,"49910":49911,"49911":49912,"49912":49913,"49913":49914,"49914":49915,"49915":49916,"49916":49917,"49917":49918,"49918":49919,"49919":49920,"49920":49921,"49921":49922,"49922":49923,"49923":49924,"49924":49925,"49925":49926,"49926":49927,"49927":49928,"49928":49929,"49929":49930,"49930":49931,"49931":49932,"49932":49933,"49933":49934,"49934":49935,"49935":49936,"49936":49937,"49937":49938,"49938":49939,"49939":49940,"49940":49941,"49941":49942,"49942":49943,"49943":49944,"49944":49945,"49945":49946,"49946":49947,"49947":49948,"49948":49949,"49949":49950,"49950":49951,"49951":49952,"49952":49953,"49953":49954,"49954":49955,"49955":49956,"49956":49957,"49957":49958,"49958":49959,"49959":49960,"49960":49961,"49961":49962,"49962":49963,"49963":49964,"49964":49965,"49965":49966,"49966":49967,"49967":49968,"49968":49969,"49969":49970,"49970":49971,"49971":49972,"49972":49973,"49973":49974,"49974":49975,"49975":49976,"49976":49977,"49977":49978,"49978":49979,"49979":49980,"49980":49981,"49981":49982,"49982":49983,"49983":49984,"49984":49985,"49985":49986,"49986":49987,"49987":49988,"49988":49989,"49989":49990,"49990":49991,"49991":49992,"49992":49993,"49993":49994,"49994":49995,"49995":49996,"49996":49997,"49997":49998,"49998":49999,"49999":50000,"50000":50001,"50001":50002,"50002":50003,"50003":50004,"50004":50005,"50005":50006,"50006":50007,"50007":50008,"50008":50009,"50009":50010,"50010":50011,"50011":50012,"50012":50013,"50013":50014,"50014":50015,"50015":50016,"50016":50017,"50017":50018,"50018":50019,"50019":50020,"50020":50021,"50021":50022,"50022":50023,"50023":50024,"50024":50025,"50025":50026,"50026":50027,"50027":50028,"50028":50029,"50029":50030,"50030":50031,"50031":50032,"50032":50033,"50033":50034,"50034":50035,"50035":50036,"50036":50037,"50037":50038,"50038":50039,"50039":50040,"50040":50041,"50041":50042,"50042":50043,"50043":50044,"50044":50045,"50045":50046,"50046":50047,"50047":50048,"50048":50049,"50049":50050,"50050":50051,"50051":50052,"50052":50053,"50053":50054,"50054":50055,"50055":50056,"50056":50057,"50057":50058,"50058":50059,"50059":50060,"50060":50061,"50061":50062,"50062":50063,"50063":50064,"50064":50065,"50065":50066,"50066":50067,"50067":50068,"50068":50069,"50069":50070,"50070":50071,"50071":50072,"50072":50073,"50073":50074,"50074":50075,"50075":50076,"50076":50077,"50077":50078,"50078":50079,"50079":50080,"50080":50081,"50081":50082,"50082":50083,"50083":50084,"50084":50085,"50085":50086,"50086":50087,"50087":50088,"50088":50089,"50089":50090,"50090":50091,"50091":50092,"50092":50093,"50093":50094,"50094":50095,"50095":50096,"50096":50097,"50097":50098,"50098":50099,"50099":50100,"50100":50101,"50101":50102,"50102":50103,"50103":50104,"50104":50105,"50105":50106,"50106":50107,"50107":50108,"50108":50109,"50109":50110,"50110":50111,"50111":50112,"50112":50113,"50113":50114,"50114":50115,"50115":50116,"50116":50117,"50117":50118,"50118":50119,"50119":50120,"50120":50121,"50121":50122,"50122":50123,"50123":50124,"50124":50125,"50125":50126,"50126":50127,"50127":50128,"50128":50129,"50129":50130,"50130":50131,"50131":50132,"50132":50133,"50133":50134,"50134":50135,"50135":50136,"50136":50137,"50137":50138,"50138":50139,"50139":50140,"50140":50141,"50141":50142,"50142":50143,"50143":50144,"50144":50145,"50145":50146,"50146":50147,"50147":50148,"50148":50149,"50149":50150,"50150":50151,"50151":50152,"50152":50153,"50153":50154,"50154":50155,"50155":50156,"50156":50157,"50157":50158,"50158":50159,"50159":50160,"50160":50161,"50161":50162,"50162":50163,"50163":50164,"50164":50165,"50165":50166,"50166":50167,"50167":50168,"50168":50169,"50169":50170,"50170":50171,"50171":50172,"50172":50173,"50173":50174,"50174":50175,"50175":50176,"50176":50177,"50177":50178,"50178":50179,"50179":50180,"50180":50181,"50181":50182,"50182":50183,"50183":50184,"50184":50185,"50185":50186,"50186":50187,"50187":50188,"50188":50189,"50189":50190,"50190":50191,"50191":50192,"50192":50193,"50193":50194,"50194":50195,"50195":50196,"50196":50197,"50197":50198,"50198":50199,"50199":50200,"50200":50201,"50201":50202,"50202":50203,"50203":50204,"50204":50205,"50205":50206,"50206":50207,"50207":50208,"50208":50209,"50209":50210,"50210":50211,"50211":50212,"50212":50213,"50213":50214,"50214":50215,"50215":50216,"50216":50217,"50217":50218,"50218":50219,"50219":50220,"50220":50221,"50221":50222,"50222":50223,"50223":50224,"50224":50225,"50225":50226,"50226":50227,"50227":50228,"50228":50229,"50229":50230,"50230":50231,"50231":50232,"50232":50233,"50233":50234,"50234":50235,"50235":50236,"50236":50237,"50237":50238,"50238":50239,"50239":50240,"50240":50241,"50241":50242,"50242":50243,"50243":50244,"50244":50245,"50245":50246,"50246":50247,"50247":50248,"50248":50249,"50249":50250,"50250":50251,"50251":50252,"50252":50253,"50253":50254,"50254":50255,"50255":50256,"50256":50257,"50257":50258,"50258":50259,"50259":50260,"50260":50261,"50261":50262,"50262":50263,"50263":50264,"50264":50265,"50265":50266,"50266":50267,"50267":50268,"50268":50269,"50269":50270,"50270":50271,"50271":50272,"50272":50273,"50273":50274,"50274":50275,"50275":50276,"50276":50277,"50277":50278,"50278":50279,"50279":50280,"50280":50281,"50281":50282,"50282":50283,"50283":50284,"50284":50285,"50285":50286,"50286":50287,"50287":50288,"50288":50289,"50289":50290,"50290":50291,"50291":50292,"50292":50293,"50293":50294,"50294":50295,"50295":50296,"50296":50297,"50297":50298,"50298":50299,"50299":50300,"50300":50301,"50301":50302,"50302":50303,"50303":50304,"50304":50305,"50305":50306,"50306":50307,"50307":50308,"50308":50309,"50309":50310,"50310":50311,"50311":50312,"50312":50313,"50313":50314,"50314":50315,"50315":50316,"50316":50317,"50317":50318,"50318":50319,"50319":50320,"50320":50321,"50321":50322,"50322":50323,"50323":50324,"50324":50325,"50325":50326,"50326":50327,"50327":50328,"50328":50329,"50329":50330,"50330":50331,"50331":50332,"50332":50333,"50333":50334,"50334":50335,"50335":50336,"50336":50337,"50337":50338,"50338":50339,"50339":50340,"50340":50341,"50341":50342,"50342":50343,"50343":50344,"50344":50345,"50345":50346,"50346":50347,"50347":50348,"50348":50349,"50349":50350,"50350":50351,"50351":50352,"50352":50353,"50353":50354,"50354":50355,"50355":50356,"50356":50357,"50357":50358,"50358":50359,"50359":50360,"50360":50361,"50361":50362,"50362":50363,"50363":50364,"50364":50365,"50365":50366,"50366":50367,"50367":50368,"50368":50369,"50369":50370,"50370":50371,"50371":50372,"50372":50373,"50373":50374,"50374":50375,"50375":50376,"50376":50377,"50377":50378,"50378":50379,"50379":50380,"50380":50381,"50381":50382,"50382":50383,"50383":50384,"50384":50385,"50385":50386,"50386":50387,"50387":50388,"50388":50389,"50389":50390,"50390":50391,"50391":50392,"50392":50393,"50393":50394,"50394":50395,"50395":50396,"50396":50397,"50397":50398,"50398":50399,"50399":50400,"50400":50401,"50401":50402,"50402":50403,"50403":50404,"50404":50405,"50405":50406,"50406":50407,"50407":50408,"50408":50409,"50409":50410,"50410":50411,"50411":50412,"50412":50413,"50413":50414,"50414":50415,"50415":50416,"50416":50417,"50417":50418,"50418":50419,"50419":50420,"50420":50421,"50421":50422,"50422":50423,"50423":50424,"50424":50425,"50425":50426,"50426":50427,"50427":50428,"50428":50429,"50429":50430,"50430":50431,"50431":50432,"50432":50433,"50433":50434,"50434":50435,"50435":50436,"50436":50437,"50437":50438,"50438":50439,"50439":50440,"50440":50441,"50441":50442,"50442":50443,"50443":50444,"50444":50445,"50445":50446,"50446":50447,"50447":50448,"50448":50449,"50449":50450,"50450":50451,"50451":50452,"50452":50453,"50453":50454,"50454":50455,"50455":50456,"50456":50457,"50457":50458,"50458":50459,"50459":50460,"50460":50461,"50461":50462,"50462":50463,"50463":50464,"50464":50465,"50465":50466,"50466":50467,"50467":50468,"50468":50469,"50469":50470,"50470":50471,"50471":50472,"50472":50473,"50473":50474,"50474":50475,"50475":50476,"50476":50477,"50477":50478,"50478":50479,"50479":50480,"50480":50481,"50481":50482,"50482":50483,"50483":50484,"50484":50485,"50485":50486,"50486":50487,"50487":50488,"50488":50489,"50489":50490,"50490":50491,"50491":50492,"50492":50493,"50493":50494,"50494":50495,"50495":50496,"50496":50497,"50497":50498,"50498":50499,"50499":50500,"50500":50501,"50501":50502,"50502":50503,"50503":50504,"50504":50505,"50505":50506,"50506":50507,"50507":50508,"50508":50509,"50509":50510,"50510":50511,"50511":50512,"50512":50513,"50513":50514,"50514":50515,"50515":50516,"50516":50517,"50517":50518,"50518":50519,"50519":50520,"50520":50521,"50521":50522,"50522":50523,"50523":50524,"50524":50525,"50525":50526,"50526":50527,"50527":50528,"50528":50529,"50529":50530,"50530":50531,"50531":50532,"50532":50533,"50533":50534,"50534":50535,"50535":50536,"50536":50537,"50537":50538,"50538":50539,"50539":50540,"50540":50541,"50541":50542,"50542":50543,"50543":50544,"50544":50545,"50545":50546,"50546":50547,"50547":50548,"50548":50549,"50549":50550,"50550":50551,"50551":50552,"50552":50553,"50553":50554,"50554":50555,"50555":50556,"50556":50557,"50557":50558,"50558":50559,"50559":50560,"50560":50561,"50561":50562,"50562":50563,"50563":50564,"50564":50565,"50565":50566,"50566":50567,"50567":50568,"50568":50569,"50569":50570,"50570":50571,"50571":50572,"50572":50573,"50573":50574,"50574":50575,"50575":50576,"50576":50577,"50577":50578,"50578":50579,"50579":50580,"50580":50581,"50581":50582,"50582":50583,"50583":50584,"50584":50585,"50585":50586,"50586":50587,"50587":50588,"50588":50589,"50589":50590,"50590":50591,"50591":50592,"50592":50593,"50593":50594,"50594":50595,"50595":50596,"50596":50597,"50597":50598,"50598":50599,"50599":50600,"50600":50601,"50601":50602,"50602":50603,"50603":50604,"50604":50605,"50605":50606,"50606":50607,"50607":50608,"50608":50609,"50609":50610,"50610":50611,"50611":50612,"50612":50613,"50613":50614,"50614":50615,"50615":50616,"50616":50617,"50617":50618,"50618":50619,"50619":50620,"50620":50621,"50621":50622,"50622":50623,"50623":50624,"50624":50625,"50625":50626,"50626":50627,"50627":50628,"50628":50629,"50629":50630,"50630":50631,"50631":50632,"50632":50633,"50633":50634,"50634":50635,"50635":50636,"50636":50637,"50637":50638,"50638":50639,"50639":50640,"50640":50641,"50641":50642,"50642":50643,"50643":50644,"50644":50645,"50645":50646,"50646":50647,"50647":50648,"50648":50649,"50649":50650,"50650":50651,"50651":50652,"50652":50653,"50653":50654,"50654":50655,"50655":50656,"50656":50657,"50657":50658,"50658":50659,"50659":50660,"50660":50661,"50661":50662,"50662":50663,"50663":50664,"50664":50665,"50665":50666,"50666":50667,"50667":50668,"50668":50669,"50669":50670,"50670":50671,"50671":50672,"50672":50673,"50673":50674,"50674":50675,"50675":50676,"50676":50677,"50677":50678,"50678":50679,"50679":50680,"50680":50681,"50681":50682,"50682":50683,"50683":50684,"50684":50685,"50685":50686,"50686":50687,"50687":50688,"50688":50689,"50689":50690,"50690":50691,"50691":50692,"50692":50693,"50693":50694,"50694":50695,"50695":50696,"50696":50697,"50697":50698,"50698":50699,"50699":50700,"50700":50701,"50701":50702,"50702":50703,"50703":50704,"50704":50705,"50705":50706,"50706":50707,"50707":50708,"50708":50709,"50709":50710,"50710":50711,"50711":50712,"50712":50713,"50713":50714,"50714":50715,"50715":50716,"50716":50717,"50717":50718,"50718":50719,"50719":50720,"50720":50721,"50721":50722,"50722":50723,"50723":50724,"50724":50725,"50725":50726,"50726":50727,"50727":50728,"50728":50729,"50729":50730,"50730":50731,"50731":50732,"50732":50733,"50733":50734,"50734":50735,"50735":50736,"50736":50737,"50737":50738,"50738":50739,"50739":50740,"50740":50741,"50741":50742,"50742":50743,"50743":50744,"50744":50745,"50745":50746,"50746":50747,"50747":50748,"50748":50749,"50749":50750,"50750":50751,"50751":50752,"50752":50753,"50753":50754,"50754":50755,"50755":50756,"50756":50757,"50757":50758,"50758":50759,"50759":50760,"50760":50761,"50761":50762,"50762":50763,"50763":50764,"50764":50765,"50765":50766,"50766":50767,"50767":50768,"50768":50769,"50769":50770,"50770":50771,"50771":50772,"50772":50773,"50773":50774,"50774":50775,"50775":50776,"50776":50777,"50777":50778,"50778":50779,"50779":50780,"50780":50781,"50781":50782,"50782":50783,"50783":50784,"50784":50785,"50785":50786,"50786":50787,"50787":50788,"50788":50789,"50789":50790,"50790":50791,"50791":50792,"50792":50793,"50793":50794,"50794":50795,"50795":50796,"50796":50797,"50797":50798,"50798":50799,"50799":50800,"50800":50801,"50801":50802,"50802":50803,"50803":50804,"50804":50805,"50805":50806,"50806":50807,"50807":50808,"50808":50809,"50809":50810,"50810":50811,"50811":50812,"50812":50813,"50813":50814,"50814":50815,"50815":50816,"50816":50817,"50817":50818,"50818":50819,"50819":50820,"50820":50821,"50821":50822,"50822":50823,"50823":50824,"50824":50825,"50825":50826,"50826":50827,"50827":50828,"50828":50829,"50829":50830,"50830":50831,"50831":50832,"50832":50833,"50833":50834,"50834":50835,"50835":50836,"50836":50837,"50837":50838,"50838":50839,"50839":50840,"50840":50841,"50841":50842,"50842":50843,"50843":50844,"50844":50845,"50845":50846,"50846":50847,"50847":50848,"50848":50849,"50849":50850,"50850":50851,"50851":50852,"50852":50853,"50853":50854,"50854":50855,"50855":50856,"50856":50857,"50857":50858,"50858":50859,"50859":50860,"50860":50861,"50861":50862,"50862":50863,"50863":50864,"50864":50865,"50865":50866,"50866":50867,"50867":50868,"50868":50869,"50869":50870,"50870":50871,"50871":50872,"50872":50873,"50873":50874,"50874":50875,"50875":50876,"50876":50877,"50877":50878,"50878":50879,"50879":50880,"50880":50881,"50881":50882,"50882":50883,"50883":50884,"50884":50885,"50885":50886,"50886":50887,"50887":50888,"50888":50889,"50889":50890,"50890":50891,"50891":50892,"50892":50893,"50893":50894,"50894":50895,"50895":50896,"50896":50897,"50897":50898,"50898":50899,"50899":50900,"50900":50901,"50901":50902,"50902":50903,"50903":50904,"50904":50905,"50905":50906,"50906":50907,"50907":50908,"50908":50909,"50909":50910,"50910":50911,"50911":50912,"50912":50913,"50913":50914,"50914":50915,"50915":50916,"50916":50917,"50917":50918,"50918":50919,"50919":50920,"50920":50921,"50921":50922,"50922":50923,"50923":50924,"50924":50925,"50925":50926,"50926":50927,"50927":50928,"50928":50929,"50929":50930,"50930":50931,"50931":50932,"50932":50933,"50933":50934,"50934":50935,"50935":50936,"50936":50937,"50937":50938,"50938":50939,"50939":50940,"50940":50941,"50941":50942,"50942":50943,"50943":50944,"50944":50945,"50945":50946,"50946":50947,"50947":50948,"50948":50949,"50949":50950,"50950":50951,"50951":50952,"50952":50953,"50953":50954,"50954":50955,"50955":50956,"50956":50957,"50957":50958,"50958":50959,"50959":50960,"50960":50961,"50961":50962,"50962":50963,"50963":50964,"50964":50965,"50965":50966,"50966":50967,"50967":50968,"50968":50969,"50969":50970,"50970":50971,"50971":50972,"50972":50973,"50973":50974,"50974":50975,"50975":50976,"50976":50977,"50977":50978,"50978":50979,"50979":50980,"50980":50981,"50981":50982,"50982":50983,"50983":50984,"50984":50985,"50985":50986,"50986":50987,"50987":50988,"50988":50989,"50989":50990,"50990":50991,"50991":50992,"50992":50993,"50993":50994,"50994":50995,"50995":50996,"50996":50997,"50997":50998,"50998":50999,"50999":51000,"51000":51001,"51001":51002,"51002":51003,"51003":51004,"51004":51005,"51005":51006,"51006":51007,"51007":51008,"51008":51009,"51009":51010,"51010":51011,"51011":51012,"51012":51013,"51013":51014,"51014":51015,"51015":51016,"51016":51017,"51017":51018,"51018":51019,"51019":51020,"51020":51021,"51021":51022,"51022":51023,"51023":51024,"51024":51025,"51025":51026,"51026":51027,"51027":51028,"51028":51029,"51029":51030,"51030":51031,"51031":51032,"51032":51033,"51033":51034,"51034":51035,"51035":51036,"51036":51037,"51037":51038,"51038":51039,"51039":51040,"51040":51041,"51041":51042,"51042":51043,"51043":51044,"51044":51045,"51045":51046,"51046":51047,"51047":51048,"51048":51049,"51049":51050,"51050":51051,"51051":51052,"51052":51053,"51053":51054,"51054":51055,"51055":51056,"51056":51057,"51057":51058,"51058":51059,"51059":51060,"51060":51061,"51061":51062,"51062":51063,"51063":51064,"51064":51065,"51065":51066,"51066":51067,"51067":51068,"51068":51069,"51069":51070,"51070":51071,"51071":51072,"51072":51073,"51073":51074,"51074":51075,"51075":51076,"51076":51077,"51077":51078,"51078":51079,"51079":51080,"51080":51081,"51081":51082,"51082":51083,"51083":51084,"51084":51085,"51085":51086,"51086":51087,"51087":51088,"51088":51089,"51089":51090,"51090":51091,"51091":51092,"51092":51093,"51093":51094,"51094":51095,"51095":51096,"51096":51097,"51097":51098,"51098":51099,"51099":51100,"51100":51101,"51101":51102,"51102":51103,"51103":51104,"51104":51105,"51105":51106,"51106":51107,"51107":51108,"51108":51109,"51109":51110,"51110":51111,"51111":51112,"51112":51113,"51113":51114,"51114":51115,"51115":51116,"51116":51117,"51117":51118,"51118":51119,"51119":51120,"51120":51121,"51121":51122,"51122":51123,"51123":51124,"51124":51125,"51125":51126,"51126":51127,"51127":51128,"51128":51129,"51129":51130,"51130":51131,"51131":51132,"51132":51133,"51133":51134,"51134":51135,"51135":51136,"51136":51137,"51137":51138,"51138":51139,"51139":51140,"51140":51141,"51141":51142,"51142":51143,"51143":51144,"51144":51145,"51145":51146,"51146":51147,"51147":51148,"51148":51149,"51149":51150,"51150":51151,"51151":51152,"51152":51153,"51153":51154,"51154":51155,"51155":51156,"51156":51157,"51157":51158,"51158":51159,"51159":51160,"51160":51161,"51161":51162,"51162":51163,"51163":51164,"51164":51165,"51165":51166,"51166":51167,"51167":51168,"51168":51169,"51169":51170,"51170":51171,"51171":51172,"51172":51173,"51173":51174,"51174":51175,"51175":51176,"51176":51177,"51177":51178,"51178":51179,"51179":51180,"51180":51181,"51181":51182,"51182":51183,"51183":51184,"51184":51185,"51185":51186,"51186":51187,"51187":51188,"51188":51189,"51189":51190,"51190":51191,"51191":51192,"51192":51193,"51193":51194,"51194":51195,"51195":51196,"51196":51197,"51197":51198,"51198":51199,"51199":51200,"51200":51201,"51201":51202,"51202":51203,"51203":51204,"51204":51205,"51205":51206,"51206":51207,"51207":51208,"51208":51209,"51209":51210,"51210":51211,"51211":51212,"51212":51213,"51213":51214,"51214":51215,"51215":51216,"51216":51217,"51217":51218,"51218":51219,"51219":51220,"51220":51221,"51221":51222,"51222":51223,"51223":51224,"51224":51225,"51225":51226,"51226":51227,"51227":51228,"51228":51229,"51229":51230,"51230":51231,"51231":51232,"51232":51233,"51233":51234,"51234":51235,"51235":51236,"51236":51237,"51237":51238,"51238":51239,"51239":51240,"51240":51241,"51241":51242,"51242":51243,"51243":51244,"51244":51245,"51245":51246,"51246":51247,"51247":51248,"51248":51249,"51249":51250,"51250":51251,"51251":51252,"51252":51253,"51253":51254,"51254":51255,"51255":51256,"51256":51257,"51257":51258,"51258":51259,"51259":51260,"51260":51261,"51261":51262,"51262":51263,"51263":51264,"51264":51265,"51265":51266,"51266":51267,"51267":51268,"51268":51269,"51269":51270,"51270":51271,"51271":51272,"51272":51273,"51273":51274,"51274":51275,"51275":51276,"51276":51277,"51277":51278,"51278":51279,"51279":51280,"51280":51281,"51281":51282,"51282":51283,"51283":51284,"51284":51285,"51285":51286,"51286":51287,"51287":51288,"51288":51289,"51289":51290,"51290":51291,"51291":51292,"51292":51293,"51293":51294,"51294":51295,"51295":51296,"51296":51297,"51297":51298,"51298":51299,"51299":51300,"51300":51301,"51301":51302,"51302":51303,"51303":51304,"51304":51305,"51305":51306,"51306":51307,"51307":51308,"51308":51309,"51309":51310,"51310":51311,"51311":51312,"51312":51313,"51313":51314,"51314":51315,"51315":51316,"51316":51317,"51317":51318,"51318":51319,"51319":51320,"51320":51321,"51321":51322,"51322":51323,"51323":51324,"51324":51325,"51325":51326,"51326":51327,"51327":51328,"51328":51329,"51329":51330,"51330":51331,"51331":51332,"51332":51333,"51333":51334,"51334":51335,"51335":51336,"51336":51337,"51337":51338,"51338":51339,"51339":51340,"51340":51341,"51341":51342,"51342":51343,"51343":51344,"51344":51345,"51345":51346,"51346":51347,"51347":51348,"51348":51349,"51349":51350,"51350":51351,"51351":51352,"51352":51353,"51353":51354,"51354":51355,"51355":51356,"51356":51357,"51357":51358,"51358":51359,"51359":51360,"51360":51361,"51361":51362,"51362":51363,"51363":51364,"51364":51365,"51365":51366,"51366":51367,"51367":51368,"51368":51369,"51369":51370,"51370":51371,"51371":51372,"51372":51373,"51373":51374,"51374":51375,"51375":51376,"51376":51377,"51377":51378,"51378":51379,"51379":51380,"51380":51381,"51381":51382,"51382":51383,"51383":51384,"51384":51385,"51385":51386,"51386":51387,"51387":51388,"51388":51389,"51389":51390,"51390":51391,"51391":51392,"51392":51393,"51393":51394,"51394":51395,"51395":51396,"51396":51397,"51397":51398,"51398":51399,"51399":51400,"51400":51401,"51401":51402,"51402":51403,"51403":51404,"51404":51405,"51405":51406,"51406":51407,"51407":51408,"51408":51409,"51409":51410,"51410":51411,"51411":51412,"51412":51413,"51413":51414,"51414":51415,"51415":51416,"51416":51417,"51417":51418,"51418":51419,"51419":51420,"51420":51421,"51421":51422,"51422":51423,"51423":51424,"51424":51425,"51425":51426,"51426":51427,"51427":51428,"51428":51429,"51429":51430,"51430":51431,"51431":51432,"51432":51433,"51433":51434,"51434":51435,"51435":51436,"51436":51437,"51437":51438,"51438":51439,"51439":51440,"51440":51441,"51441":51442,"51442":51443,"51443":51444,"51444":51445,"51445":51446,"51446":51447,"51447":51448,"51448":51449,"51449":51450,"51450":51451,"51451":51452,"51452":51453,"51453":51454,"51454":51455,"51455":51456,"51456":51457,"51457":51458,"51458":51459,"51459":51460,"51460":51461,"51461":51462,"51462":51463,"51463":51464,"51464":51465,"51465":51466,"51466":51467,"51467":51468,"51468":51469,"51469":51470,"51470":51471,"51471":51472,"51472":51473,"51473":51474,"51474":51475,"51475":51476,"51476":51477,"51477":51478,"51478":51479,"51479":51480,"51480":51481,"51481":51482,"51482":51483,"51483":51484,"51484":51485,"51485":51486,"51486":51487,"51487":51488,"51488":51489,"51489":51490,"51490":51491,"51491":51492,"51492":51493,"51493":51494,"51494":51495,"51495":51496,"51496":51497,"51497":51498,"51498":51499,"51499":51500,"51500":51501,"51501":51502,"51502":51503,"51503":51504,"51504":51505,"51505":51506,"51506":51507,"51507":51508,"51508":51509,"51509":51510,"51510":51511,"51511":51512,"51512":51513,"51513":51514,"51514":51515,"51515":51516,"51516":51517,"51517":51518,"51518":51519,"51519":51520,"51520":51521,"51521":51522,"51522":51523,"51523":51524,"51524":51525,"51525":51526,"51526":51527,"51527":51528,"51528":51529,"51529":51530,"51530":51531,"51531":51532,"51532":51533,"51533":51534,"51534":51535,"51535":51536,"51536":51537,"51537":51538,"51538":51539,"51539":51540,"51540":51541,"51541":51542,"51542":51543,"51543":51544,"51544":51545,"51545":51546,"51546":51547,"51547":51548,"51548":51549,"51549":51550,"51550":51551,"51551":51552,"51552":51553,"51553":51554,"51554":51555,"51555":51556,"51556":51557,"51557":51558,"51558":51559,"51559":51560,"51560":51561,"51561":51562,"51562":51563,"51563":51564,"51564":51565,"51565":51566,"51566":51567,"51567":51568,"51568":51569,"51569":51570,"51570":51571,"51571":51572,"51572":51573,"51573":51574,"51574":51575,"51575":51576,"51576":51577,"51577":51578,"51578":51579,"51579":51580,"51580":51581,"51581":51582,"51582":51583,"51583":51584,"51584":51585,"51585":51586,"51586":51587,"51587":51588,"51588":51589,"51589":51590,"51590":51591,"51591":51592,"51592":51593,"51593":51594,"51594":51595,"51595":51596,"51596":51597,"51597":51598,"51598":51599,"51599":51600,"51600":51601,"51601":51602,"51602":51603,"51603":51604,"51604":51605,"51605":51606,"51606":51607,"51607":51608,"51608":51609,"51609":51610,"51610":51611,"51611":51612,"51612":51613,"51613":51614,"51614":51615,"51615":51616,"51616":51617,"51617":51618,"51618":51619,"51619":51620,"51620":51621,"51621":51622,"51622":51623,"51623":51624,"51624":51625,"51625":51626,"51626":51627,"51627":51628,"51628":51629,"51629":51630,"51630":51631,"51631":51632,"51632":51633,"51633":51634,"51634":51635,"51635":51636,"51636":51637,"51637":51638,"51638":51639,"51639":51640,"51640":51641,"51641":51642,"51642":51643,"51643":51644,"51644":51645,"51645":51646,"51646":51647,"51647":51648,"51648":51649,"51649":51650,"51650":51651,"51651":51652,"51652":51653,"51653":51654,"51654":51655,"51655":51656,"51656":51657,"51657":51658,"51658":51659,"51659":51660,"51660":51661,"51661":51662,"51662":51663,"51663":51664,"51664":51665,"51665":51666,"51666":51667,"51667":51668,"51668":51669,"51669":51670,"51670":51671,"51671":51672,"51672":51673,"51673":51674,"51674":51675,"51675":51676,"51676":51677,"51677":51678,"51678":51679,"51679":51680,"51680":51681,"51681":51682,"51682":51683,"51683":51684,"51684":51685,"51685":51686,"51686":51687,"51687":51688,"51688":51689,"51689":51690,"51690":51691,"51691":51692,"51692":51693,"51693":51694,"51694":51695,"51695":51696,"51696":51697,"51697":51698,"51698":51699,"51699":51700,"51700":51701,"51701":51702,"51702":51703,"51703":51704,"51704":51705,"51705":51706,"51706":51707,"51707":51708,"51708":51709,"51709":51710,"51710":51711,"51711":51712,"51712":51713,"51713":51714,"51714":51715,"51715":51716,"51716":51717,"51717":51718,"51718":51719,"51719":51720,"51720":51721,"51721":51722,"51722":51723,"51723":51724,"51724":51725,"51725":51726,"51726":51727,"51727":51728,"51728":51729,"51729":51730,"51730":51731,"51731":51732,"51732":51733,"51733":51734,"51734":51735,"51735":51736,"51736":51737,"51737":51738,"51738":51739,"51739":51740,"51740":51741,"51741":51742,"51742":51743,"51743":51744,"51744":51745,"51745":51746,"51746":51747,"51747":51748,"51748":51749,"51749":51750,"51750":51751,"51751":51752,"51752":51753,"51753":51754,"51754":51755,"51755":51756,"51756":51757,"51757":51758,"51758":51759,"51759":51760,"51760":51761,"51761":51762,"51762":51763,"51763":51764,"51764":51765,"51765":51766,"51766":51767,"51767":51768,"51768":51769,"51769":51770,"51770":51771,"51771":51772,"51772":51773,"51773":51774,"51774":51775,"51775":51776,"51776":51777,"51777":51778,"51778":51779,"51779":51780,"51780":51781,"51781":51782,"51782":51783,"51783":51784,"51784":51785,"51785":51786,"51786":51787,"51787":51788,"51788":51789,"51789":51790,"51790":51791,"51791":51792,"51792":51793,"51793":51794,"51794":51795,"51795":51796,"51796":51797,"51797":51798,"51798":51799,"51799":51800,"51800":51801,"51801":51802,"51802":51803,"51803":51804,"51804":51805,"51805":51806,"51806":51807,"51807":51808,"51808":51809,"51809":51810,"51810":51811,"51811":51812,"51812":51813,"51813":51814,"51814":51815,"51815":51816,"51816":51817,"51817":51818,"51818":51819,"51819":51820,"51820":51821,"51821":51822,"51822":51823,"51823":51824,"51824":51825,"51825":51826,"51826":51827,"51827":51828,"51828":51829,"51829":51830,"51830":51831,"51831":51832,"51832":51833,"51833":51834,"51834":51835,"51835":51836,"51836":51837,"51837":51838,"51838":51839,"51839":51840,"51840":51841,"51841":51842,"51842":51843,"51843":51844,"51844":51845,"51845":51846,"51846":51847,"51847":51848,"51848":51849,"51849":51850,"51850":51851,"51851":51852,"51852":51853,"51853":51854,"51854":51855,"51855":51856,"51856":51857,"51857":51858,"51858":51859,"51859":51860,"51860":51861,"51861":51862,"51862":51863,"51863":51864,"51864":51865,"51865":51866,"51866":51867,"51867":51868,"51868":51869,"51869":51870,"51870":51871,"51871":51872,"51872":51873,"51873":51874,"51874":51875,"51875":51876,"51876":51877,"51877":51878,"51878":51879,"51879":51880,"51880":51881,"51881":51882,"51882":51883,"51883":51884,"51884":51885,"51885":51886,"51886":51887,"51887":51888,"51888":51889,"51889":51890,"51890":51891,"51891":51892,"51892":51893,"51893":51894,"51894":51895,"51895":51896,"51896":51897,"51897":51898,"51898":51899,"51899":51900,"51900":51901,"51901":51902,"51902":51903,"51903":51904,"51904":51905,"51905":51906,"51906":51907,"51907":51908,"51908":51909,"51909":51910,"51910":51911,"51911":51912,"51912":51913,"51913":51914,"51914":51915,"51915":51916,"51916":51917,"51917":51918,"51918":51919,"51919":51920,"51920":51921,"51921":51922,"51922":51923,"51923":51924,"51924":51925,"51925":51926,"51926":51927,"51927":51928,"51928":51929,"51929":51930,"51930":51931,"51931":51932,"51932":51933,"51933":51934,"51934":51935,"51935":51936,"51936":51937,"51937":51938,"51938":51939,"51939":51940,"51940":51941,"51941":51942,"51942":51943,"51943":51944,"51944":51945,"51945":51946,"51946":51947,"51947":51948,"51948":51949,"51949":51950,"51950":51951,"51951":51952,"51952":51953,"51953":51954,"51954":51955,"51955":51956,"51956":51957,"51957":51958,"51958":51959,"51959":51960,"51960":51961,"51961":51962,"51962":51963,"51963":51964,"51964":51965,"51965":51966,"51966":51967,"51967":51968,"51968":51969,"51969":51970,"51970":51971,"51971":51972,"51972":51973,"51973":51974,"51974":51975,"51975":51976,"51976":51977,"51977":51978,"51978":51979,"51979":51980,"51980":51981,"51981":51982,"51982":51983,"51983":51984,"51984":51985,"51985":51986,"51986":51987,"51987":51988,"51988":51989,"51989":51990,"51990":51991,"51991":51992,"51992":51993,"51993":51994,"51994":51995,"51995":51996,"51996":51997,"51997":51998,"51998":51999,"51999":52000,"52000":52001,"52001":52002,"52002":52003,"52003":52004,"52004":52005,"52005":52006,"52006":52007,"52007":52008,"52008":52009,"52009":52010,"52010":52011,"52011":52012,"52012":52013,"52013":52014,"52014":52015,"52015":52016,"52016":52017,"52017":52018,"52018":52019,"52019":52020,"52020":52021,"52021":52022,"52022":52023,"52023":52024,"52024":52025,"52025":52026,"52026":52027,"52027":52028,"52028":52029,"52029":52030,"52030":52031,"52031":52032,"52032":52033,"52033":52034,"52034":52035,"52035":52036,"52036":52037,"52037":52038,"52038":52039,"52039":52040,"52040":52041,"52041":52042,"52042":52043,"52043":52044,"52044":52045,"52045":52046,"52046":52047,"52047":52048,"52048":52049,"52049":52050,"52050":52051,"52051":52052,"52052":52053,"52053":52054,"52054":52055,"52055":52056,"52056":52057,"52057":52058,"52058":52059,"52059":52060,"52060":52061,"52061":52062,"52062":52063,"52063":52064,"52064":52065,"52065":52066,"52066":52067,"52067":52068,"52068":52069,"52069":52070,"52070":52071,"52071":52072,"52072":52073,"52073":52074,"52074":52075,"52075":52076,"52076":52077,"52077":52078,"52078":52079,"52079":52080,"52080":52081,"52081":52082,"52082":52083,"52083":52084,"52084":52085,"52085":52086,"52086":52087,"52087":52088,"52088":52089,"52089":52090,"52090":52091,"52091":52092,"52092":52093,"52093":52094,"52094":52095,"52095":52096,"52096":52097,"52097":52098,"52098":52099,"52099":52100,"52100":52101,"52101":52102,"52102":52103,"52103":52104,"52104":52105,"52105":52106,"52106":52107,"52107":52108,"52108":52109,"52109":52110,"52110":52111,"52111":52112,"52112":52113,"52113":52114,"52114":52115,"52115":52116,"52116":52117,"52117":52118,"52118":52119,"52119":52120,"52120":52121,"52121":52122,"52122":52123,"52123":52124,"52124":52125,"52125":52126,"52126":52127,"52127":52128,"52128":52129,"52129":52130,"52130":52131,"52131":52132,"52132":52133,"52133":52134,"52134":52135,"52135":52136,"52136":52137,"52137":52138,"52138":52139,"52139":52140,"52140":52141,"52141":52142,"52142":52143,"52143":52144,"52144":52145,"52145":52146,"52146":52147,"52147":52148,"52148":52149,"52149":52150,"52150":52151,"52151":52152,"52152":52153,"52153":52154,"52154":52155,"52155":52156,"52156":52157,"52157":52158,"52158":52159,"52159":52160,"52160":52161,"52161":52162,"52162":52163,"52163":52164,"52164":52165,"52165":52166,"52166":52167,"52167":52168,"52168":52169,"52169":52170,"52170":52171,"52171":52172,"52172":52173,"52173":52174,"52174":52175,"52175":52176,"52176":52177,"52177":52178,"52178":52179,"52179":52180,"52180":52181,"52181":52182,"52182":52183,"52183":52184,"52184":52185,"52185":52186,"52186":52187,"52187":52188,"52188":52189,"52189":52190,"52190":52191,"52191":52192,"52192":52193,"52193":52194,"52194":52195,"52195":52196,"52196":52197,"52197":52198,"52198":52199,"52199":52200,"52200":52201,"52201":52202,"52202":52203,"52203":52204,"52204":52205,"52205":52206,"52206":52207,"52207":52208,"52208":52209,"52209":52210,"52210":52211,"52211":52212,"52212":52213,"52213":52214,"52214":52215,"52215":52216,"52216":52217,"52217":52218,"52218":52219,"52219":52220,"52220":52221,"52221":52222,"52222":52223,"52223":52224,"52224":52225,"52225":52226,"52226":52227,"52227":52228,"52228":52229,"52229":52230,"52230":52231,"52231":52232,"52232":52233,"52233":52234,"52234":52235,"52235":52236,"52236":52237,"52237":52238,"52238":52239,"52239":52240,"52240":52241,"52241":52242,"52242":52243,"52243":52244,"52244":52245,"52245":52246,"52246":52247,"52247":52248,"52248":52249,"52249":52250,"52250":52251,"52251":52252,"52252":52253,"52253":52254,"52254":52255,"52255":52256,"52256":52257,"52257":52258,"52258":52259,"52259":52260,"52260":52261,"52261":52262,"52262":52263,"52263":52264,"52264":52265,"52265":52266,"52266":52267,"52267":52268,"52268":52269,"52269":52270,"52270":52271,"52271":52272,"52272":52273,"52273":52274,"52274":52275,"52275":52276,"52276":52277,"52277":52278,"52278":52279,"52279":52280,"52280":52281,"52281":52282,"52282":52283,"52283":52284,"52284":52285,"52285":52286,"52286":52287,"52287":52288,"52288":52289,"52289":52290,"52290":52291,"52291":52292,"52292":52293,"52293":52294,"52294":52295,"52295":52296,"52296":52297,"52297":52298,"52298":52299,"52299":52300,"52300":52301,"52301":52302,"52302":52303,"52303":52304,"52304":52305,"52305":52306,"52306":52307,"52307":52308,"52308":52309,"52309":52310,"52310":52311,"52311":52312,"52312":52313,"52313":52314,"52314":52315,"52315":52316,"52316":52317,"52317":52318,"52318":52319,"52319":52320,"52320":52321,"52321":52322,"52322":52323,"52323":52324,"52324":52325,"52325":52326,"52326":52327,"52327":52328,"52328":52329,"52329":52330,"52330":52331,"52331":52332,"52332":52333,"52333":52334,"52334":52335,"52335":52336,"52336":52337,"52337":52338,"52338":52339,"52339":52340,"52340":52341,"52341":52342,"52342":52343,"52343":52344,"52344":52345,"52345":52346,"52346":52347,"52347":52348,"52348":52349,"52349":52350,"52350":52351,"52351":52352,"52352":52353,"52353":52354,"52354":52355,"52355":52356,"52356":52357,"52357":52358,"52358":52359,"52359":52360,"52360":52361,"52361":52362,"52362":52363,"52363":52364,"52364":52365,"52365":52366,"52366":52367,"52367":52368,"52368":52369,"52369":52370,"52370":52371,"52371":52372,"52372":52373,"52373":52374,"52374":52375,"52375":52376,"52376":52377,"52377":52378,"52378":52379,"52379":52380,"52380":52381,"52381":52382,"52382":52383,"52383":52384,"52384":52385,"52385":52386,"52386":52387,"52387":52388,"52388":52389,"52389":52390,"52390":52391,"52391":52392,"52392":52393,"52393":52394,"52394":52395,"52395":52396,"52396":52397,"52397":52398,"52398":52399,"52399":52400,"52400":52401,"52401":52402,"52402":52403,"52403":52404,"52404":52405,"52405":52406,"52406":52407,"52407":52408,"52408":52409,"52409":52410,"52410":52411,"52411":52412,"52412":52413,"52413":52414,"52414":52415,"52415":52416,"52416":52417,"52417":52418,"52418":52419,"52419":52420,"52420":52421,"52421":52422,"52422":52423,"52423":52424,"52424":52425,"52425":52426,"52426":52427,"52427":52428,"52428":52429,"52429":52430,"52430":52431,"52431":52432,"52432":52433,"52433":52434,"52434":52435,"52435":52436,"52436":52437,"52437":52438,"52438":52439,"52439":52440,"52440":52441,"52441":52442,"52442":52443,"52443":52444,"52444":52445,"52445":52446,"52446":52447,"52447":52448,"52448":52449,"52449":52450,"52450":52451,"52451":52452,"52452":52453,"52453":52454,"52454":52455,"52455":52456,"52456":52457,"52457":52458,"52458":52459,"52459":52460,"52460":52461,"52461":52462,"52462":52463,"52463":52464,"52464":52465,"52465":52466,"52466":52467,"52467":52468,"52468":52469,"52469":52470,"52470":52471,"52471":52472,"52472":52473,"52473":52474,"52474":52475,"52475":52476,"52476":52477,"52477":52478,"52478":52479,"52479":52480,"52480":52481,"52481":52482,"52482":52483,"52483":52484,"52484":52485,"52485":52486,"52486":52487,"52487":52488,"52488":52489,"52489":52490,"52490":52491,"52491":52492,"52492":52493,"52493":52494,"52494":52495,"52495":52496,"52496":52497,"52497":52498,"52498":52499,"52499":52500,"52500":52501,"52501":52502,"52502":52503,"52503":52504,"52504":52505,"52505":52506,"52506":52507,"52507":52508,"52508":52509,"52509":52510,"52510":52511,"52511":52512,"52512":52513,"52513":52514,"52514":52515,"52515":52516,"52516":52517,"52517":52518,"52518":52519,"52519":52520,"52520":52521,"52521":52522,"52522":52523,"52523":52524,"52524":52525,"52525":52526,"52526":52527,"52527":52528,"52528":52529,"52529":52530,"52530":52531,"52531":52532,"52532":52533,"52533":52534,"52534":52535,"52535":52536,"52536":52537,"52537":52538,"52538":52539,"52539":52540,"52540":52541,"52541":52542,"52542":52543,"52543":52544,"52544":52545,"52545":52546,"52546":52547,"52547":52548,"52548":52549,"52549":52550,"52550":52551,"52551":52552,"52552":52553,"52553":52554,"52554":52555,"52555":52556,"52556":52557,"52557":52558,"52558":52559,"52559":52560,"52560":52561,"52561":52562,"52562":52563,"52563":52564,"52564":52565,"52565":52566,"52566":52567,"52567":52568,"52568":52569,"52569":52570,"52570":52571,"52571":52572,"52572":52573,"52573":52574,"52574":52575,"52575":52576,"52576":52577,"52577":52578,"52578":52579,"52579":52580,"52580":52581,"52581":52582,"52582":52583,"52583":52584,"52584":52585,"52585":52586,"52586":52587,"52587":52588,"52588":52589,"52589":52590,"52590":52591,"52591":52592,"52592":52593,"52593":52594,"52594":52595,"52595":52596,"52596":52597,"52597":52598,"52598":52599,"52599":52600,"52600":52601,"52601":52602,"52602":52603,"52603":52604,"52604":52605,"52605":52606,"52606":52607,"52607":52608,"52608":52609,"52609":52610,"52610":52611,"52611":52612,"52612":52613,"52613":52614,"52614":52615,"52615":52616,"52616":52617,"52617":52618,"52618":52619,"52619":52620,"52620":52621,"52621":52622,"52622":52623,"52623":52624,"52624":52625,"52625":52626,"52626":52627,"52627":52628,"52628":52629,"52629":52630,"52630":52631,"52631":52632,"52632":52633,"52633":52634,"52634":52635,"52635":52636,"52636":52637,"52637":52638,"52638":52639,"52639":52640,"52640":52641,"52641":52642,"52642":52643,"52643":52644,"52644":52645,"52645":52646,"52646":52647,"52647":52648,"52648":52649,"52649":52650,"52650":52651,"52651":52652,"52652":52653,"52653":52654,"52654":52655,"52655":52656,"52656":52657,"52657":52658,"52658":52659,"52659":52660,"52660":52661,"52661":52662,"52662":52663,"52663":52664,"52664":52665,"52665":52666,"52666":52667,"52667":52668,"52668":52669,"52669":52670,"52670":52671,"52671":52672,"52672":52673,"52673":52674,"52674":52675,"52675":52676,"52676":52677,"52677":52678,"52678":52679,"52679":52680,"52680":52681,"52681":52682,"52682":52683,"52683":52684,"52684":52685,"52685":52686,"52686":52687,"52687":52688,"52688":52689,"52689":52690,"52690":52691,"52691":52692,"52692":52693,"52693":52694,"52694":52695,"52695":52696,"52696":52697,"52697":52698,"52698":52699,"52699":52700,"52700":52701,"52701":52702,"52702":52703,"52703":52704,"52704":52705,"52705":52706,"52706":52707,"52707":52708,"52708":52709,"52709":52710,"52710":52711,"52711":52712,"52712":52713,"52713":52714,"52714":52715,"52715":52716,"52716":52717,"52717":52718,"52718":52719,"52719":52720,"52720":52721,"52721":52722,"52722":52723,"52723":52724,"52724":52725,"52725":52726,"52726":52727,"52727":52728,"52728":52729,"52729":52730,"52730":52731,"52731":52732,"52732":52733,"52733":52734,"52734":52735,"52735":52736,"52736":52737,"52737":52738,"52738":52739,"52739":52740,"52740":52741,"52741":52742,"52742":52743,"52743":52744,"52744":52745,"52745":52746,"52746":52747,"52747":52748,"52748":52749,"52749":52750,"52750":52751,"52751":52752,"52752":52753,"52753":52754,"52754":52755,"52755":52756,"52756":52757,"52757":52758,"52758":52759,"52759":52760,"52760":52761,"52761":52762,"52762":52763,"52763":52764,"52764":52765,"52765":52766,"52766":52767,"52767":52768,"52768":52769,"52769":52770,"52770":52771,"52771":52772,"52772":52773,"52773":52774,"52774":52775,"52775":52776,"52776":52777,"52777":52778,"52778":52779,"52779":52780,"52780":52781,"52781":52782,"52782":52783,"52783":52784,"52784":52785,"52785":52786,"52786":52787,"52787":52788,"52788":52789,"52789":52790,"52790":52791,"52791":52792,"52792":52793,"52793":52794,"52794":52795,"52795":52796,"52796":52797,"52797":52798,"52798":52799,"52799":52800,"52800":52801,"52801":52802,"52802":52803,"52803":52804,"52804":52805,"52805":52806,"52806":52807,"52807":52808,"52808":52809,"52809":52810,"52810":52811,"52811":52812,"52812":52813,"52813":52814,"52814":52815,"52815":52816,"52816":52817,"52817":52818,"52818":52819,"52819":52820,"52820":52821,"52821":52822,"52822":52823,"52823":52824,"52824":52825,"52825":52826,"52826":52827,"52827":52828,"52828":52829,"52829":52830,"52830":52831,"52831":52832,"52832":52833,"52833":52834,"52834":52835,"52835":52836,"52836":52837,"52837":52838,"52838":52839,"52839":52840,"52840":52841,"52841":52842,"52842":52843,"52843":52844,"52844":52845,"52845":52846,"52846":52847,"52847":52848,"52848":52849,"52849":52850,"52850":52851,"52851":52852,"52852":52853,"52853":52854,"52854":52855,"52855":52856,"52856":52857,"52857":52858,"52858":52859,"52859":52860,"52860":52861,"52861":52862,"52862":52863,"52863":52864,"52864":52865,"52865":52866,"52866":52867,"52867":52868,"52868":52869,"52869":52870,"52870":52871,"52871":52872,"52872":52873,"52873":52874,"52874":52875,"52875":52876,"52876":52877,"52877":52878,"52878":52879,"52879":52880,"52880":52881,"52881":52882,"52882":52883,"52883":52884,"52884":52885,"52885":52886,"52886":52887,"52887":52888,"52888":52889,"52889":52890,"52890":52891,"52891":52892,"52892":52893,"52893":52894,"52894":52895,"52895":52896,"52896":52897,"52897":52898,"52898":52899,"52899":52900,"52900":52901,"52901":52902,"52902":52903,"52903":52904,"52904":52905,"52905":52906,"52906":52907,"52907":52908,"52908":52909,"52909":52910,"52910":52911,"52911":52912,"52912":52913,"52913":52914,"52914":52915,"52915":52916,"52916":52917,"52917":52918,"52918":52919,"52919":52920,"52920":52921,"52921":52922,"52922":52923,"52923":52924,"52924":52925,"52925":52926,"52926":52927,"52927":52928,"52928":52929,"52929":52930,"52930":52931,"52931":52932,"52932":52933,"52933":52934,"52934":52935,"52935":52936,"52936":52937,"52937":52938,"52938":52939,"52939":52940,"52940":52941,"52941":52942,"52942":52943,"52943":52944,"52944":52945,"52945":52946,"52946":52947,"52947":52948,"52948":52949,"52949":52950,"52950":52951,"52951":52952,"52952":52953,"52953":52954,"52954":52955,"52955":52956,"52956":52957,"52957":52958,"52958":52959,"52959":52960,"52960":52961,"52961":52962,"52962":52963,"52963":52964,"52964":52965,"52965":52966,"52966":52967,"52967":52968,"52968":52969,"52969":52970,"52970":52971,"52971":52972,"52972":52973,"52973":52974,"52974":52975,"52975":52976,"52976":52977,"52977":52978,"52978":52979,"52979":52980,"52980":52981,"52981":52982,"52982":52983,"52983":52984,"52984":52985,"52985":52986,"52986":52987,"52987":52988,"52988":52989,"52989":52990,"52990":52991,"52991":52992,"52992":52993,"52993":52994,"52994":52995,"52995":52996,"52996":52997,"52997":52998,"52998":52999,"52999":53000,"53000":53001,"53001":53002,"53002":53003,"53003":53004,"53004":53005,"53005":53006,"53006":53007,"53007":53008,"53008":53009,"53009":53010,"53010":53011,"53011":53012,"53012":53013,"53013":53014,"53014":53015,"53015":53016,"53016":53017,"53017":53018,"53018":53019,"53019":53020,"53020":53021,"53021":53022,"53022":53023,"53023":53024,"53024":53025,"53025":53026,"53026":53027,"53027":53028,"53028":53029,"53029":53030,"53030":53031,"53031":53032,"53032":53033,"53033":53034,"53034":53035,"53035":53036,"53036":53037,"53037":53038,"53038":53039,"53039":53040,"53040":53041,"53041":53042,"53042":53043,"53043":53044,"53044":53045,"53045":53046,"53046":53047,"53047":53048,"53048":53049,"53049":53050,"53050":53051,"53051":53052,"53052":53053,"53053":53054,"53054":53055,"53055":53056,"53056":53057,"53057":53058,"53058":53059,"53059":53060,"53060":53061,"53061":53062,"53062":53063,"53063":53064,"53064":53065,"53065":53066,"53066":53067,"53067":53068,"53068":53069,"53069":53070,"53070":53071,"53071":53072,"53072":53073,"53073":53074,"53074":53075,"53075":53076,"53076":53077,"53077":53078,"53078":53079,"53079":53080,"53080":53081,"53081":53082,"53082":53083,"53083":53084,"53084":53085,"53085":53086,"53086":53087,"53087":53088,"53088":53089,"53089":53090,"53090":53091,"53091":53092,"53092":53093,"53093":53094,"53094":53095,"53095":53096,"53096":53097,"53097":53098,"53098":53099,"53099":53100,"53100":53101,"53101":53102,"53102":53103,"53103":53104,"53104":53105,"53105":53106,"53106":53107,"53107":53108,"53108":53109,"53109":53110,"53110":53111,"53111":53112,"53112":53113,"53113":53114,"53114":53115,"53115":53116,"53116":53117,"53117":53118,"53118":53119,"53119":53120,"53120":53121,"53121":53122,"53122":53123,"53123":53124,"53124":53125,"53125":53126,"53126":53127,"53127":53128,"53128":53129,"53129":53130,"53130":53131,"53131":53132,"53132":53133,"53133":53134,"53134":53135,"53135":53136,"53136":53137,"53137":53138,"53138":53139,"53139":53140,"53140":53141,"53141":53142,"53142":53143,"53143":53144,"53144":53145,"53145":53146,"53146":53147,"53147":53148,"53148":53149,"53149":53150,"53150":53151,"53151":53152,"53152":53153,"53153":53154,"53154":53155,"53155":53156,"53156":53157,"53157":53158,"53158":53159,"53159":53160,"53160":53161,"53161":53162,"53162":53163,"53163":53164,"53164":53165,"53165":53166,"53166":53167,"53167":53168,"53168":53169,"53169":53170,"53170":53171,"53171":53172,"53172":53173,"53173":53174,"53174":53175,"53175":53176,"53176":53177,"53177":53178,"53178":53179,"53179":53180,"53180":53181,"53181":53182,"53182":53183,"53183":53184,"53184":53185,"53185":53186,"53186":53187,"53187":53188,"53188":53189,"53189":53190,"53190":53191,"53191":53192,"53192":53193,"53193":53194,"53194":53195,"53195":53196,"53196":53197,"53197":53198,"53198":53199,"53199":53200,"53200":53201,"53201":53202,"53202":53203,"53203":53204,"53204":53205,"53205":53206,"53206":53207,"53207":53208,"53208":53209,"53209":53210,"53210":53211,"53211":53212,"53212":53213,"53213":53214,"53214":53215,"53215":53216,"53216":53217,"53217":53218,"53218":53219,"53219":53220,"53220":53221,"53221":53222,"53222":53223,"53223":53224,"53224":53225,"53225":53226,"53226":53227,"53227":53228,"53228":53229,"53229":53230,"53230":53231,"53231":53232,"53232":53233,"53233":53234,"53234":53235,"53235":53236,"53236":53237,"53237":53238,"53238":53239,"53239":53240,"53240":53241,"53241":53242,"53242":53243,"53243":53244,"53244":53245,"53245":53246,"53246":53247,"53247":53248,"53248":53249,"53249":53250,"53250":53251,"53251":53252,"53252":53253,"53253":53254,"53254":53255,"53255":53256,"53256":53257,"53257":53258,"53258":53259,"53259":53260,"53260":53261,"53261":53262,"53262":53263,"53263":53264,"53264":53265,"53265":53266,"53266":53267,"53267":53268,"53268":53269,"53269":53270,"53270":53271,"53271":53272,"53272":53273,"53273":53274,"53274":53275,"53275":53276,"53276":53277,"53277":53278,"53278":53279,"53279":53280,"53280":53281,"53281":53282,"53282":53283,"53283":53284,"53284":53285,"53285":53286,"53286":53287,"53287":53288,"53288":53289,"53289":53290,"53290":53291,"53291":53292,"53292":53293,"53293":53294,"53294":53295,"53295":53296,"53296":53297,"53297":53298,"53298":53299,"53299":53300,"53300":53301,"53301":53302,"53302":53303,"53303":53304,"53304":53305,"53305":53306,"53306":53307,"53307":53308,"53308":53309,"53309":53310,"53310":53311,"53311":53312,"53312":53313,"53313":53314,"53314":53315,"53315":53316,"53316":53317,"53317":53318,"53318":53319,"53319":53320,"53320":53321,"53321":53322,"53322":53323,"53323":53324,"53324":53325,"53325":53326,"53326":53327,"53327":53328,"53328":53329,"53329":53330,"53330":53331,"53331":53332,"53332":53333,"53333":53334,"53334":53335,"53335":53336,"53336":53337,"53337":53338,"53338":53339,"53339":53340,"53340":53341,"53341":53342,"53342":53343,"53343":53344,"53344":53345,"53345":53346,"53346":53347,"53347":53348,"53348":53349,"53349":53350,"53350":53351,"53351":53352,"53352":53353,"53353":53354,"53354":53355,"53355":53356,"53356":53357,"53357":53358,"53358":53359,"53359":53360,"53360":53361,"53361":53362,"53362":53363,"53363":53364,"53364":53365,"53365":53366,"53366":53367,"53367":53368,"53368":53369,"53369":53370,"53370":53371,"53371":53372,"53372":53373,"53373":53374,"53374":53375,"53375":53376,"53376":53377,"53377":53378,"53378":53379,"53379":53380,"53380":53381,"53381":53382,"53382":53383,"53383":53384,"53384":53385,"53385":53386,"53386":53387,"53387":53388,"53388":53389,"53389":53390,"53390":53391,"53391":53392,"53392":53393,"53393":53394,"53394":53395,"53395":53396,"53396":53397,"53397":53398,"53398":53399,"53399":53400,"53400":53401,"53401":53402,"53402":53403,"53403":53404,"53404":53405,"53405":53406,"53406":53407,"53407":53408,"53408":53409,"53409":53410,"53410":53411,"53411":53412,"53412":53413,"53413":53414,"53414":53415,"53415":53416,"53416":53417,"53417":53418,"53418":53419,"53419":53420,"53420":53421,"53421":53422,"53422":53423,"53423":53424,"53424":53425,"53425":53426,"53426":53427,"53427":53428,"53428":53429,"53429":53430,"53430":53431,"53431":53432,"53432":53433,"53433":53434,"53434":53435,"53435":53436,"53436":53437,"53437":53438,"53438":53439,"53439":53440,"53440":53441,"53441":53442,"53442":53443,"53443":53444,"53444":53445,"53445":53446,"53446":53447,"53447":53448,"53448":53449,"53449":53450,"53450":53451,"53451":53452,"53452":53453,"53453":53454,"53454":53455,"53455":53456,"53456":53457,"53457":53458,"53458":53459,"53459":53460,"53460":53461,"53461":53462,"53462":53463,"53463":53464,"53464":53465,"53465":53466,"53466":53467,"53467":53468,"53468":53469,"53469":53470,"53470":53471,"53471":53472,"53472":53473,"53473":53474,"53474":53475,"53475":53476,"53476":53477,"53477":53478,"53478":53479,"53479":53480,"53480":53481,"53481":53482,"53482":53483,"53483":53484,"53484":53485,"53485":53486,"53486":53487,"53487":53488,"53488":53489,"53489":53490,"53490":53491,"53491":53492,"53492":53493,"53493":53494,"53494":53495,"53495":53496,"53496":53497,"53497":53498,"53498":53499,"53499":53500,"53500":53501,"53501":53502,"53502":53503,"53503":53504,"53504":53505,"53505":53506,"53506":53507,"53507":53508,"53508":53509,"53509":53510,"53510":53511,"53511":53512,"53512":53513,"53513":53514,"53514":53515,"53515":53516,"53516":53517,"53517":53518,"53518":53519,"53519":53520,"53520":53521,"53521":53522,"53522":53523,"53523":53524,"53524":53525,"53525":53526,"53526":53527,"53527":53528,"53528":53529,"53529":53530,"53530":53531,"53531":53532,"53532":53533,"53533":53534,"53534":53535,"53535":53536,"53536":53537,"53537":53538,"53538":53539,"53539":53540,"53540":53541,"53541":53542,"53542":53543,"53543":53544,"53544":53545,"53545":53546,"53546":53547,"53547":53548,"53548":53549,"53549":53550,"53550":53551,"53551":53552,"53552":53553,"53553":53554,"53554":53555,"53555":53556,"53556":53557,"53557":53558,"53558":53559,"53559":53560,"53560":53561,"53561":53562,"53562":53563,"53563":53564,"53564":53565,"53565":53566,"53566":53567,"53567":53568,"53568":53569,"53569":53570,"53570":53571,"53571":53572,"53572":53573,"53573":53574,"53574":53575,"53575":53576,"53576":53577,"53577":53578,"53578":53579,"53579":53580,"53580":53581,"53581":53582,"53582":53583,"53583":53584,"53584":53585,"53585":53586,"53586":53587,"53587":53588,"53588":53589,"53589":53590,"53590":53591,"53591":53592,"53592":53593,"53593":53594,"53594":53595,"53595":53596,"53596":53597,"53597":53598,"53598":53599,"53599":53600,"53600":53601,"53601":53602,"53602":53603,"53603":53604,"53604":53605,"53605":53606,"53606":53607,"53607":53608,"53608":53609,"53609":53610,"53610":53611,"53611":53612,"53612":53613,"53613":53614,"53614":53615,"53615":53616,"53616":53617,"53617":53618,"53618":53619,"53619":53620,"53620":53621,"53621":53622,"53622":53623,"53623":53624,"53624":53625,"53625":53626,"53626":53627,"53627":53628,"53628":53629,"53629":53630,"53630":53631,"53631":53632,"53632":53633,"53633":53634,"53634":53635,"53635":53636,"53636":53637,"53637":53638,"53638":53639,"53639":53640,"53640":53641,"53641":53642,"53642":53643,"53643":53644,"53644":53645,"53645":53646,"53646":53647,"53647":53648,"53648":53649,"53649":53650,"53650":53651,"53651":53652,"53652":53653,"53653":53654,"53654":53655,"53655":53656,"53656":53657,"53657":53658,"53658":53659,"53659":53660,"53660":53661,"53661":53662,"53662":53663,"53663":53664,"53664":53665,"53665":53666,"53666":53667,"53667":53668,"53668":53669,"53669":53670,"53670":53671,"53671":53672,"53672":53673,"53673":53674,"53674":53675,"53675":53676,"53676":53677,"53677":53678,"53678":53679,"53679":53680,"53680":53681,"53681":53682,"53682":53683,"53683":53684,"53684":53685,"53685":53686,"53686":53687,"53687":53688,"53688":53689,"53689":53690,"53690":53691,"53691":53692,"53692":53693,"53693":53694,"53694":53695,"53695":53696,"53696":53697,"53697":53698,"53698":53699,"53699":53700,"53700":53701,"53701":53702,"53702":53703,"53703":53704,"53704":53705,"53705":53706,"53706":53707,"53707":53708,"53708":53709,"53709":53710,"53710":53711,"53711":53712,"53712":53713,"53713":53714,"53714":53715,"53715":53716,"53716":53717,"53717":53718,"53718":53719,"53719":53720,"53720":53721,"53721":53722,"53722":53723,"53723":53724,"53724":53725,"53725":53726,"53726":53727,"53727":53728,"53728":53729,"53729":53730,"53730":53731,"53731":53732,"53732":53733,"53733":53734,"53734":53735,"53735":53736,"53736":53737,"53737":53738,"53738":53739,"53739":53740,"53740":53741,"53741":53742,"53742":53743,"53743":53744,"53744":53745,"53745":53746,"53746":53747,"53747":53748,"53748":53749,"53749":53750,"53750":53751,"53751":53752,"53752":53753,"53753":53754,"53754":53755,"53755":53756,"53756":53757,"53757":53758,"53758":53759,"53759":53760,"53760":53761,"53761":53762,"53762":53763,"53763":53764,"53764":53765,"53765":53766,"53766":53767,"53767":53768,"53768":53769,"53769":53770,"53770":53771,"53771":53772,"53772":53773,"53773":53774,"53774":53775,"53775":53776,"53776":53777,"53777":53778,"53778":53779,"53779":53780,"53780":53781,"53781":53782,"53782":53783,"53783":53784,"53784":53785,"53785":53786,"53786":53787,"53787":53788,"53788":53789,"53789":53790,"53790":53791,"53791":53792,"53792":53793,"53793":53794,"53794":53795,"53795":53796,"53796":53797,"53797":53798,"53798":53799,"53799":53800,"53800":53801,"53801":53802,"53802":53803,"53803":53804,"53804":53805,"53805":53806,"53806":53807,"53807":53808,"53808":53809,"53809":53810,"53810":53811,"53811":53812,"53812":53813,"53813":53814,"53814":53815,"53815":53816,"53816":53817,"53817":53818,"53818":53819,"53819":53820,"53820":53821,"53821":53822,"53822":53823,"53823":53824,"53824":53825,"53825":53826,"53826":53827,"53827":53828,"53828":53829,"53829":53830,"53830":53831,"53831":53832,"53832":53833,"53833":53834,"53834":53835,"53835":53836,"53836":53837,"53837":53838,"53838":53839,"53839":53840,"53840":53841,"53841":53842,"53842":53843,"53843":53844,"53844":53845,"53845":53846,"53846":53847,"53847":53848,"53848":53849,"53849":53850,"53850":53851,"53851":53852,"53852":53853,"53853":53854,"53854":53855,"53855":53856,"53856":53857,"53857":53858,"53858":53859,"53859":53860,"53860":53861,"53861":53862,"53862":53863,"53863":53864,"53864":53865,"53865":53866,"53866":53867,"53867":53868,"53868":53869,"53869":53870,"53870":53871,"53871":53872,"53872":53873,"53873":53874,"53874":53875,"53875":53876,"53876":53877,"53877":53878,"53878":53879,"53879":53880,"53880":53881,"53881":53882,"53882":53883,"53883":53884,"53884":53885,"53885":53886,"53886":53887,"53887":53888,"53888":53889,"53889":53890,"53890":53891,"53891":53892,"53892":53893,"53893":53894,"53894":53895,"53895":53896,"53896":53897,"53897":53898,"53898":53899,"53899":53900,"53900":53901,"53901":53902,"53902":53903,"53903":53904,"53904":53905,"53905":53906,"53906":53907,"53907":53908,"53908":53909,"53909":53910,"53910":53911,"53911":53912,"53912":53913,"53913":53914,"53914":53915,"53915":53916,"53916":53917,"53917":53918,"53918":53919,"53919":53920,"53920":53921,"53921":53922,"53922":53923,"53923":53924,"53924":53925,"53925":53926,"53926":53927,"53927":53928,"53928":53929,"53929":53930,"53930":53931,"53931":53932,"53932":53933,"53933":53934,"53934":53935,"53935":53936,"53936":53937,"53937":53938,"53938":53939,"53939":53940,"53940":53941,"53941":53942,"53942":53943,"53943":53944,"53944":53945,"53945":53946,"53946":53947,"53947":53948,"53948":53949,"53949":53950,"53950":53951,"53951":53952,"53952":53953,"53953":53954,"53954":53955,"53955":53956,"53956":53957,"53957":53958,"53958":53959,"53959":53960,"53960":53961,"53961":53962,"53962":53963,"53963":53964,"53964":53965,"53965":53966,"53966":53967,"53967":53968,"53968":53969,"53969":53970,"53970":53971,"53971":53972,"53972":53973,"53973":53974,"53974":53975,"53975":53976,"53976":53977,"53977":53978,"53978":53979,"53979":53980,"53980":53981,"53981":53982,"53982":53983,"53983":53984,"53984":53985,"53985":53986,"53986":53987,"53987":53988,"53988":53989,"53989":53990,"53990":53991,"53991":53992,"53992":53993,"53993":53994,"53994":53995,"53995":53996,"53996":53997,"53997":53998,"53998":53999,"53999":54000,"54000":54001,"54001":54002,"54002":54003,"54003":54004,"54004":54005,"54005":54006,"54006":54007,"54007":54008,"54008":54009,"54009":54010,"54010":54011,"54011":54012,"54012":54013,"54013":54014,"54014":54015,"54015":54016,"54016":54017,"54017":54018,"54018":54019,"54019":54020,"54020":54021,"54021":54022,"54022":54023,"54023":54024,"54024":54025,"54025":54026,"54026":54027,"54027":54028,"54028":54029,"54029":54030,"54030":54031,"54031":54032,"54032":54033,"54033":54034,"54034":54035,"54035":54036,"54036":54037,"54037":54038,"54038":54039,"54039":54040,"54040":54041,"54041":54042,"54042":54043,"54043":54044,"54044":54045,"54045":54046,"54046":54047,"54047":54048,"54048":54049,"54049":54050,"54050":54051,"54051":54052,"54052":54053,"54053":54054,"54054":54055,"54055":54056,"54056":54057,"54057":54058,"54058":54059,"54059":54060,"54060":54061,"54061":54062,"54062":54063,"54063":54064,"54064":54065,"54065":54066,"54066":54067,"54067":54068,"54068":54069,"54069":54070,"54070":54071,"54071":54072,"54072":54073,"54073":54074,"54074":54075,"54075":54076,"54076":54077,"54077":54078,"54078":54079,"54079":54080,"54080":54081,"54081":54082,"54082":54083,"54083":54084,"54084":54085,"54085":54086,"54086":54087,"54087":54088,"54088":54089,"54089":54090,"54090":54091,"54091":54092,"54092":54093,"54093":54094,"54094":54095,"54095":54096,"54096":54097,"54097":54098,"54098":54099,"54099":54100,"54100":54101,"54101":54102,"54102":54103,"54103":54104,"54104":54105,"54105":54106,"54106":54107,"54107":54108,"54108":54109,"54109":54110,"54110":54111,"54111":54112,"54112":54113,"54113":54114,"54114":54115,"54115":54116,"54116":54117,"54117":54118,"54118":54119,"54119":54120,"54120":54121,"54121":54122,"54122":54123,"54123":54124,"54124":54125,"54125":54126,"54126":54127,"54127":54128,"54128":54129,"54129":54130,"54130":54131,"54131":54132,"54132":54133,"54133":54134,"54134":54135,"54135":54136,"54136":54137,"54137":54138,"54138":54139,"54139":54140,"54140":54141,"54141":54142,"54142":54143,"54143":54144,"54144":54145,"54145":54146,"54146":54147,"54147":54148,"54148":54149,"54149":54150,"54150":54151,"54151":54152,"54152":54153,"54153":54154,"54154":54155,"54155":54156,"54156":54157,"54157":54158,"54158":54159,"54159":54160,"54160":54161,"54161":54162,"54162":54163,"54163":54164,"54164":54165,"54165":54166,"54166":54167,"54167":54168,"54168":54169,"54169":54170,"54170":54171,"54171":54172,"54172":54173,"54173":54174,"54174":54175,"54175":54176,"54176":54177,"54177":54178,"54178":54179,"54179":54180,"54180":54181,"54181":54182,"54182":54183,"54183":54184,"54184":54185,"54185":54186,"54186":54187,"54187":54188,"54188":54189,"54189":54190,"54190":54191,"54191":54192,"54192":54193,"54193":54194,"54194":54195,"54195":54196,"54196":54197,"54197":54198,"54198":54199,"54199":54200,"54200":54201,"54201":54202,"54202":54203,"54203":54204,"54204":54205,"54205":54206,"54206":54207,"54207":54208,"54208":54209,"54209":54210,"54210":54211,"54211":54212,"54212":54213,"54213":54214,"54214":54215,"54215":54216,"54216":54217,"54217":54218,"54218":54219,"54219":54220,"54220":54221,"54221":54222,"54222":54223,"54223":54224,"54224":54225,"54225":54226,"54226":54227,"54227":54228,"54228":54229,"54229":54230,"54230":54231,"54231":54232,"54232":54233,"54233":54234,"54234":54235,"54235":54236,"54236":54237,"54237":54238,"54238":54239,"54239":54240,"54240":54241,"54241":54242,"54242":54243,"54243":54244,"54244":54245,"54245":54246,"54246":54247,"54247":54248,"54248":54249,"54249":54250,"54250":54251,"54251":54252,"54252":54253,"54253":54254,"54254":54255,"54255":54256,"54256":54257,"54257":54258,"54258":54259,"54259":54260,"54260":54261,"54261":54262,"54262":54263,"54263":54264,"54264":54265,"54265":54266,"54266":54267,"54267":54268,"54268":54269,"54269":54270,"54270":54271,"54271":54272,"54272":54273,"54273":54274,"54274":54275,"54275":54276,"54276":54277,"54277":54278,"54278":54279,"54279":54280,"54280":54281,"54281":54282,"54282":54283,"54283":54284,"54284":54285,"54285":54286,"54286":54287,"54287":54288,"54288":54289,"54289":54290,"54290":54291,"54291":54292,"54292":54293,"54293":54294,"54294":54295,"54295":54296,"54296":54297,"54297":54298,"54298":54299,"54299":54300,"54300":54301,"54301":54302,"54302":54303,"54303":54304,"54304":54305,"54305":54306,"54306":54307,"54307":54308,"54308":54309,"54309":54310,"54310":54311,"54311":54312,"54312":54313,"54313":54314,"54314":54315,"54315":54316,"54316":54317,"54317":54318,"54318":54319,"54319":54320,"54320":54321,"54321":54322,"54322":54323,"54323":54324,"54324":54325,"54325":54326,"54326":54327,"54327":54328,"54328":54329,"54329":54330,"54330":54331,"54331":54332,"54332":54333,"54333":54334,"54334":54335,"54335":54336,"54336":54337,"54337":54338,"54338":54339,"54339":54340,"54340":54341,"54341":54342,"54342":54343,"54343":54344,"54344":54345,"54345":54346,"54346":54347,"54347":54348,"54348":54349,"54349":54350,"54350":54351,"54351":54352,"54352":54353,"54353":54354,"54354":54355,"54355":54356,"54356":54357,"54357":54358,"54358":54359,"54359":54360,"54360":54361,"54361":54362,"54362":54363,"54363":54364,"54364":54365,"54365":54366,"54366":54367,"54367":54368,"54368":54369,"54369":54370,"54370":54371,"54371":54372,"54372":54373,"54373":54374,"54374":54375,"54375":54376,"54376":54377,"54377":54378,"54378":54379,"54379":54380,"54380":54381,"54381":54382,"54382":54383,"54383":54384,"54384":54385,"54385":54386,"54386":54387,"54387":54388,"54388":54389,"54389":54390,"54390":54391,"54391":54392,"54392":54393,"54393":54394,"54394":54395,"54395":54396,"54396":54397,"54397":54398,"54398":54399,"54399":54400,"54400":54401,"54401":54402,"54402":54403,"54403":54404,"54404":54405,"54405":54406,"54406":54407,"54407":54408,"54408":54409,"54409":54410,"54410":54411,"54411":54412,"54412":54413,"54413":54414,"54414":54415,"54415":54416,"54416":54417,"54417":54418,"54418":54419,"54419":54420,"54420":54421,"54421":54422,"54422":54423,"54423":54424,"54424":54425,"54425":54426,"54426":54427,"54427":54428,"54428":54429,"54429":54430,"54430":54431,"54431":54432,"54432":54433,"54433":54434,"54434":54435,"54435":54436,"54436":54437,"54437":54438,"54438":54439,"54439":54440,"54440":54441,"54441":54442,"54442":54443,"54443":54444,"54444":54445,"54445":54446,"54446":54447,"54447":54448,"54448":54449,"54449":54450,"54450":54451,"54451":54452,"54452":54453,"54453":54454,"54454":54455,"54455":54456,"54456":54457,"54457":54458,"54458":54459,"54459":54460,"54460":54461,"54461":54462,"54462":54463,"54463":54464,"54464":54465,"54465":54466,"54466":54467,"54467":54468,"54468":54469,"54469":54470,"54470":54471,"54471":54472,"54472":54473,"54473":54474,"54474":54475,"54475":54476,"54476":54477,"54477":54478,"54478":54479,"54479":54480,"54480":54481,"54481":54482,"54482":54483,"54483":54484,"54484":54485,"54485":54486,"54486":54487,"54487":54488,"54488":54489,"54489":54490,"54490":54491,"54491":54492,"54492":54493,"54493":54494,"54494":54495,"54495":54496,"54496":54497,"54497":54498,"54498":54499,"54499":54500,"54500":54501,"54501":54502,"54502":54503,"54503":54504,"54504":54505,"54505":54506,"54506":54507,"54507":54508,"54508":54509,"54509":54510,"54510":54511,"54511":54512,"54512":54513,"54513":54514,"54514":54515,"54515":54516,"54516":54517,"54517":54518,"54518":54519,"54519":54520,"54520":54521,"54521":54522,"54522":54523,"54523":54524,"54524":54525,"54525":54526,"54526":54527,"54527":54528,"54528":54529,"54529":54530,"54530":54531,"54531":54532,"54532":54533,"54533":54534,"54534":54535,"54535":54536,"54536":54537,"54537":54538,"54538":54539,"54539":54540,"54540":54541,"54541":54542,"54542":54543,"54543":54544,"54544":54545,"54545":54546,"54546":54547,"54547":54548,"54548":54549,"54549":54550,"54550":54551,"54551":54552,"54552":54553,"54553":54554,"54554":54555,"54555":54556,"54556":54557,"54557":54558,"54558":54559,"54559":54560,"54560":54561,"54561":54562,"54562":54563,"54563":54564,"54564":54565,"54565":54566,"54566":54567,"54567":54568,"54568":54569,"54569":54570,"54570":54571,"54571":54572,"54572":54573,"54573":54574,"54574":54575,"54575":54576,"54576":54577,"54577":54578,"54578":54579,"54579":54580,"54580":54581,"54581":54582,"54582":54583,"54583":54584,"54584":54585,"54585":54586,"54586":54587,"54587":54588,"54588":54589,"54589":54590,"54590":54591,"54591":54592,"54592":54593,"54593":54594,"54594":54595,"54595":54596,"54596":54597,"54597":54598,"54598":54599,"54599":54600,"54600":54601,"54601":54602,"54602":54603,"54603":54604,"54604":54605,"54605":54606,"54606":54607,"54607":54608,"54608":54609,"54609":54610,"54610":54611,"54611":54612,"54612":54613,"54613":54614,"54614":54615,"54615":54616,"54616":54617,"54617":54618,"54618":54619,"54619":54620,"54620":54621,"54621":54622,"54622":54623,"54623":54624,"54624":54625,"54625":54626,"54626":54627,"54627":54628,"54628":54629,"54629":54630,"54630":54631,"54631":54632,"54632":54633,"54633":54634,"54634":54635,"54635":54636,"54636":54637,"54637":54638,"54638":54639,"54639":54640,"54640":54641,"54641":54642,"54642":54643,"54643":54644,"54644":54645,"54645":54646,"54646":54647,"54647":54648,"54648":54649,"54649":54650,"54650":54651,"54651":54652,"54652":54653,"54653":54654,"54654":54655,"54655":54656,"54656":54657,"54657":54658,"54658":54659,"54659":54660,"54660":54661,"54661":54662,"54662":54663,"54663":54664,"54664":54665,"54665":54666,"54666":54667,"54667":54668,"54668":54669,"54669":54670,"54670":54671,"54671":54672,"54672":54673,"54673":54674,"54674":54675,"54675":54676,"54676":54677,"54677":54678,"54678":54679,"54679":54680,"54680":54681,"54681":54682,"54682":54683,"54683":54684,"54684":54685,"54685":54686,"54686":54687,"54687":54688,"54688":54689,"54689":54690,"54690":54691,"54691":54692,"54692":54693,"54693":54694,"54694":54695,"54695":54696,"54696":54697,"54697":54698,"54698":54699,"54699":54700,"54700":54701,"54701":54702,"54702":54703,"54703":54704,"54704":54705,"54705":54706,"54706":54707,"54707":54708,"54708":54709,"54709":54710,"54710":54711,"54711":54712,"54712":54713,"54713":54714,"54714":54715,"54715":54716,"54716":54717,"54717":54718,"54718":54719,"54719":54720,"54720":54721,"54721":54722,"54722":54723,"54723":54724,"54724":54725,"54725":54726,"54726":54727,"54727":54728,"54728":54729,"54729":54730,"54730":54731,"54731":54732,"54732":54733,"54733":54734,"54734":54735,"54735":54736,"54736":54737,"54737":54738,"54738":54739,"54739":54740,"54740":54741,"54741":54742,"54742":54743,"54743":54744,"54744":54745,"54745":54746,"54746":54747,"54747":54748,"54748":54749,"54749":54750,"54750":54751,"54751":54752,"54752":54753,"54753":54754,"54754":54755,"54755":54756,"54756":54757,"54757":54758,"54758":54759,"54759":54760,"54760":54761,"54761":54762,"54762":54763,"54763":54764,"54764":54765,"54765":54766,"54766":54767,"54767":54768,"54768":54769,"54769":54770,"54770":54771,"54771":54772,"54772":54773,"54773":54774,"54774":54775,"54775":54776,"54776":54777,"54777":54778,"54778":54779,"54779":54780,"54780":54781,"54781":54782,"54782":54783,"54783":54784,"54784":54785,"54785":54786,"54786":54787,"54787":54788,"54788":54789,"54789":54790,"54790":54791,"54791":54792,"54792":54793,"54793":54794,"54794":54795,"54795":54796,"54796":54797,"54797":54798,"54798":54799,"54799":54800,"54800":54801,"54801":54802,"54802":54803,"54803":54804,"54804":54805,"54805":54806,"54806":54807,"54807":54808,"54808":54809,"54809":54810,"54810":54811,"54811":54812,"54812":54813,"54813":54814,"54814":54815,"54815":54816,"54816":54817,"54817":54818,"54818":54819,"54819":54820,"54820":54821,"54821":54822,"54822":54823,"54823":54824,"54824":54825,"54825":54826,"54826":54827,"54827":54828,"54828":54829,"54829":54830,"54830":54831,"54831":54832,"54832":54833,"54833":54834,"54834":54835,"54835":54836,"54836":54837,"54837":54838,"54838":54839,"54839":54840,"54840":54841,"54841":54842,"54842":54843,"54843":54844,"54844":54845,"54845":54846,"54846":54847,"54847":54848,"54848":54849,"54849":54850,"54850":54851,"54851":54852,"54852":54853,"54853":54854,"54854":54855,"54855":54856,"54856":54857,"54857":54858,"54858":54859,"54859":54860,"54860":54861,"54861":54862,"54862":54863,"54863":54864,"54864":54865,"54865":54866,"54866":54867,"54867":54868,"54868":54869,"54869":54870,"54870":54871,"54871":54872,"54872":54873,"54873":54874,"54874":54875,"54875":54876,"54876":54877,"54877":54878,"54878":54879,"54879":54880,"54880":54881,"54881":54882,"54882":54883,"54883":54884,"54884":54885,"54885":54886,"54886":54887,"54887":54888,"54888":54889,"54889":54890,"54890":54891,"54891":54892,"54892":54893,"54893":54894,"54894":54895,"54895":54896,"54896":54897,"54897":54898,"54898":54899,"54899":54900,"54900":54901,"54901":54902,"54902":54903,"54903":54904,"54904":54905,"54905":54906,"54906":54907,"54907":54908,"54908":54909,"54909":54910,"54910":54911,"54911":54912,"54912":54913,"54913":54914,"54914":54915,"54915":54916,"54916":54917,"54917":54918,"54918":54919,"54919":54920,"54920":54921,"54921":54922,"54922":54923,"54923":54924,"54924":54925,"54925":54926,"54926":54927,"54927":54928,"54928":54929,"54929":54930,"54930":54931,"54931":54932,"54932":54933,"54933":54934,"54934":54935,"54935":54936,"54936":54937,"54937":54938,"54938":54939,"54939":54940,"54940":54941,"54941":54942,"54942":54943,"54943":54944,"54944":54945,"54945":54946,"54946":54947,"54947":54948,"54948":54949,"54949":54950,"54950":54951,"54951":54952,"54952":54953,"54953":54954,"54954":54955,"54955":54956,"54956":54957,"54957":54958,"54958":54959,"54959":54960,"54960":54961,"54961":54962,"54962":54963,"54963":54964,"54964":54965,"54965":54966,"54966":54967,"54967":54968,"54968":54969,"54969":54970,"54970":54971,"54971":54972,"54972":54973,"54973":54974,"54974":54975,"54975":54976,"54976":54977,"54977":54978,"54978":54979,"54979":54980,"54980":54981,"54981":54982,"54982":54983,"54983":54984,"54984":54985,"54985":54986,"54986":54987,"54987":54988,"54988":54989,"54989":54990,"54990":54991,"54991":54992,"54992":54993,"54993":54994,"54994":54995,"54995":54996,"54996":54997,"54997":54998,"54998":54999,"54999":55000,"55000":55001,"55001":55002,"55002":55003,"55003":55004,"55004":55005,"55005":55006,"55006":55007,"55007":55008,"55008":55009,"55009":55010,"55010":55011,"55011":55012,"55012":55013,"55013":55014,"55014":55015,"55015":55016,"55016":55017,"55017":55018,"55018":55019,"55019":55020,"55020":55021,"55021":55022,"55022":55023,"55023":55024,"55024":55025,"55025":55026,"55026":55027,"55027":55028,"55028":55029,"55029":55030,"55030":55031,"55031":55032,"55032":55033,"55033":55034,"55034":55035,"55035":55036,"55036":55037,"55037":55038,"55038":55039,"55039":55040,"55040":55041,"55041":55042,"55042":55043,"55043":55044,"55044":55045,"55045":55046,"55046":55047,"55047":55048,"55048":55049,"55049":55050,"55050":55051,"55051":55052,"55052":55053,"55053":55054,"55054":55055,"55055":55056,"55056":55057,"55057":55058,"55058":55059,"55059":55060,"55060":55061,"55061":55062,"55062":55063,"55063":55064,"55064":55065,"55065":55066,"55066":55067,"55067":55068,"55068":55069,"55069":55070,"55070":55071,"55071":55072,"55072":55073,"55073":55074,"55074":55075,"55075":55076,"55076":55077,"55077":55078,"55078":55079,"55079":55080,"55080":55081,"55081":55082,"55082":55083,"55083":55084,"55084":55085,"55085":55086,"55086":55087,"55087":55088,"55088":55089,"55089":55090,"55090":55091,"55091":55092,"55092":55093,"55093":55094,"55094":55095,"55095":55096,"55096":55097,"55097":55098,"55098":55099,"55099":55100,"55100":55101,"55101":55102,"55102":55103,"55103":55104,"55104":55105,"55105":55106,"55106":55107,"55107":55108,"55108":55109,"55109":55110,"55110":55111,"55111":55112,"55112":55113,"55113":55114,"55114":55115,"55115":55116,"55116":55117,"55117":55118,"55118":55119,"55119":55120,"55120":55121,"55121":55122,"55122":55123,"55123":55124,"55124":55125,"55125":55126,"55126":55127,"55127":55128,"55128":55129,"55129":55130,"55130":55131,"55131":55132,"55132":55133,"55133":55134,"55134":55135,"55135":55136,"55136":55137,"55137":55138,"55138":55139,"55139":55140,"55140":55141,"55141":55142,"55142":55143,"55143":55144,"55144":55145,"55145":55146,"55146":55147,"55147":55148,"55148":55149,"55149":55150,"55150":55151,"55151":55152,"55152":55153,"55153":55154,"55154":55155,"55155":55156,"55156":55157,"55157":55158,"55158":55159,"55159":55160,"55160":55161,"55161":55162,"55162":55163,"55163":55164,"55164":55165,"55165":55166,"55166":55167,"55167":55168,"55168":55169,"55169":55170,"55170":55171,"55171":55172,"55172":55173,"55173":55174,"55174":55175,"55175":55176,"55176":55177,"55177":55178,"55178":55179,"55179":55180,"55180":55181,"55181":55182,"55182":55183,"55183":55184,"55184":55185,"55185":55186,"55186":55187,"55187":55188,"55188":55189,"55189":55190,"55190":55191,"55191":55192,"55192":55193,"55193":55194,"55194":55195,"55195":55196,"55196":55197,"55197":55198,"55198":55199,"55199":55200,"55200":55201,"55201":55202,"55202":55203,"55203":55204,"55204":55205,"55205":55206,"55206":55207,"55207":55208,"55208":55209,"55209":55210,"55210":55211,"55211":55212,"55212":55213,"55213":55214,"55214":55215,"55215":55216,"55216":55217,"55217":55218,"55218":55219,"55219":55220,"55220":55221,"55221":55222,"55222":55223,"55223":55224,"55224":55225,"55225":55226,"55226":55227,"55227":55228,"55228":55229,"55229":55230,"55230":55231,"55231":55232,"55232":55233,"55233":55234,"55234":55235,"55235":55236,"55236":55237,"55237":55238,"55238":55239,"55239":55240,"55240":55241,"55241":55242,"55242":55243,"55243":55244,"55244":55245,"55245":55246,"55246":55247,"55247":55248,"55248":55249,"55249":55250,"55250":55251,"55251":55252,"55252":55253,"55253":55254,"55254":55255,"55255":55256,"55256":55257,"55257":55258,"55258":55259,"55259":55260,"55260":55261,"55261":55262,"55262":55263,"55263":55264,"55264":55265,"55265":55266,"55266":55267,"55267":55268,"55268":55269,"55269":55270,"55270":55271,"55271":55272,"55272":55273,"55273":55274,"55274":55275,"55275":55276,"55276":55277,"55277":55278,"55278":55279,"55279":55280,"55280":55281,"55281":55282,"55282":55283,"55283":55284,"55284":55285,"55285":55286,"55286":55287,"55287":55288,"55288":55289,"55289":55290,"55290":55291,"55291":55292,"55292":55293,"55293":55294,"55294":55295,"55295":55296,"55296":55297,"55297":55298,"55298":55299,"55299":55300,"55300":55301,"55301":55302,"55302":55303,"55303":55304,"55304":55305,"55305":55306,"55306":55307,"55307":55308,"55308":55309,"55309":55310,"55310":55311,"55311":55312,"55312":55313,"55313":55314,"55314":55315,"55315":55316,"55316":55317,"55317":55318,"55318":55319,"55319":55320,"55320":55321,"55321":55322,"55322":55323,"55323":55324,"55324":55325,"55325":55326,"55326":55327,"55327":55328,"55328":55329,"55329":55330,"55330":55331,"55331":55332,"55332":55333,"55333":55334,"55334":55335,"55335":55336,"55336":55337,"55337":55338,"55338":55339,"55339":55340,"55340":55341,"55341":55342,"55342":55343,"55343":55344,"55344":55345,"55345":55346,"55346":55347,"55347":55348,"55348":55349,"55349":55350,"55350":55351,"55351":55352,"55352":55353,"55353":55354,"55354":55355,"55355":55356,"55356":55357,"55357":55358,"55358":55359,"55359":55360,"55360":55361,"55361":55362,"55362":55363,"55363":55364,"55364":55365,"55365":55366,"55366":55367,"55367":55368,"55368":55369,"55369":55370,"55370":55371,"55371":55372,"55372":55373,"55373":55374,"55374":55375,"55375":55376,"55376":55377,"55377":55378,"55378":55379,"55379":55380,"55380":55381,"55381":55382,"55382":55383,"55383":55384,"55384":55385,"55385":55386,"55386":55387,"55387":55388,"55388":55389,"55389":55390,"55390":55391,"55391":55392,"55392":55393,"55393":55394,"55394":55395,"55395":55396,"55396":55397,"55397":55398,"55398":55399,"55399":55400,"55400":55401,"55401":55402,"55402":55403,"55403":55404,"55404":55405,"55405":55406,"55406":55407,"55407":55408,"55408":55409,"55409":55410,"55410":55411,"55411":55412,"55412":55413,"55413":55414,"55414":55415,"55415":55416,"55416":55417,"55417":55418,"55418":55419,"55419":55420,"55420":55421,"55421":55422,"55422":55423,"55423":55424,"55424":55425,"55425":55426,"55426":55427,"55427":55428,"55428":55429,"55429":55430,"55430":55431,"55431":55432,"55432":55433,"55433":55434,"55434":55435,"55435":55436,"55436":55437,"55437":55438,"55438":55439,"55439":55440,"55440":55441,"55441":55442,"55442":55443,"55443":55444,"55444":55445,"55445":55446,"55446":55447,"55447":55448,"55448":55449,"55449":55450,"55450":55451,"55451":55452,"55452":55453,"55453":55454,"55454":55455,"55455":55456,"55456":55457,"55457":55458,"55458":55459,"55459":55460,"55460":55461,"55461":55462,"55462":55463,"55463":55464,"55464":55465,"55465":55466,"55466":55467,"55467":55468,"55468":55469,"55469":55470,"55470":55471,"55471":55472,"55472":55473,"55473":55474,"55474":55475,"55475":55476,"55476":55477,"55477":55478,"55478":55479,"55479":55480,"55480":55481,"55481":55482,"55482":55483,"55483":55484,"55484":55485,"55485":55486,"55486":55487,"55487":55488,"55488":55489,"55489":55490,"55490":55491,"55491":55492,"55492":55493,"55493":55494,"55494":55495,"55495":55496,"55496":55497,"55497":55498,"55498":55499,"55499":55500,"55500":55501,"55501":55502,"55502":55503,"55503":55504,"55504":55505,"55505":55506,"55506":55507,"55507":55508,"55508":55509,"55509":55510,"55510":55511,"55511":55512,"55512":55513,"55513":55514,"55514":55515,"55515":55516,"55516":55517,"55517":55518,"55518":55519,"55519":55520,"55520":55521,"55521":55522,"55522":55523,"55523":55524,"55524":55525,"55525":55526,"55526":55527,"55527":55528,"55528":55529,"55529":55530,"55530":55531,"55531":55532,"55532":55533,"55533":55534,"55534":55535,"55535":55536,"55536":55537,"55537":55538,"55538":55539,"55539":55540,"55540":55541,"55541":55542,"55542":55543,"55543":55544,"55544":55545,"55545":55546,"55546":55547,"55547":55548,"55548":55549,"55549":55550,"55550":55551,"55551":55552,"55552":55553,"55553":55554,"55554":55555,"55555":55556,"55556":55557,"55557":55558,"55558":55559,"55559":55560,"55560":55561,"55561":55562,"55562":55563,"55563":55564,"55564":55565,"55565":55566,"55566":55567,"55567":55568,"55568":55569,"55569":55570,"55570":55571,"55571":55572,"55572":55573,"55573":55574,"55574":55575,"55575":55576,"55576":55577,"55577":55578,"55578":55579,"55579":55580,"55580":55581,"55581":55582,"55582":55583,"55583":55584,"55584":55585,"55585":55586,"55586":55587,"55587":55588,"55588":55589,"55589":55590,"55590":55591,"55591":55592,"55592":55593,"55593":55594,"55594":55595,"55595":55596,"55596":55597,"55597":55598,"55598":55599,"55599":55600,"55600":55601,"55601":55602,"55602":55603,"55603":55604,"55604":55605,"55605":55606,"55606":55607,"55607":55608,"55608":55609,"55609":55610,"55610":55611,"55611":55612,"55612":55613,"55613":55614,"55614":55615,"55615":55616,"55616":55617,"55617":55618,"55618":55619,"55619":55620,"55620":55621,"55621":55622,"55622":55623,"55623":55624,"55624":55625,"55625":55626,"55626":55627,"55627":55628,"55628":55629,"55629":55630,"55630":55631,"55631":55632,"55632":55633,"55633":55634,"55634":55635,"55635":55636,"55636":55637,"55637":55638,"55638":55639,"55639":55640,"55640":55641,"55641":55642,"55642":55643,"55643":55644,"55644":55645,"55645":55646,"55646":55647,"55647":55648,"55648":55649,"55649":55650,"55650":55651,"55651":55652,"55652":55653,"55653":55654,"55654":55655,"55655":55656,"55656":55657,"55657":55658,"55658":55659,"55659":55660,"55660":55661,"55661":55662,"55662":55663,"55663":55664,"55664":55665,"55665":55666,"55666":55667,"55667":55668,"55668":55669,"55669":55670,"55670":55671,"55671":55672,"55672":55673,"55673":55674,"55674":55675,"55675":55676,"55676":55677,"55677":55678,"55678":55679,"55679":55680,"55680":55681,"55681":55682,"55682":55683,"55683":55684,"55684":55685,"55685":55686,"55686":55687,"55687":55688,"55688":55689,"55689":55690,"55690":55691,"55691":55692,"55692":55693,"55693":55694,"55694":55695,"55695":55696,"55696":55697,"55697":55698,"55698":55699,"55699":55700,"55700":55701,"55701":55702,"55702":55703,"55703":55704,"55704":55705,"55705":55706,"55706":55707,"55707":55708,"55708":55709,"55709":55710,"55710":55711,"55711":55712,"55712":55713,"55713":55714,"55714":55715,"55715":55716,"55716":55717,"55717":55718,"55718":55719,"55719":55720,"55720":55721,"55721":55722,"55722":55723,"55723":55724,"55724":55725,"55725":55726,"55726":55727,"55727":55728,"55728":55729,"55729":55730,"55730":55731,"55731":55732,"55732":55733,"55733":55734,"55734":55735,"55735":55736,"55736":55737,"55737":55738,"55738":55739,"55739":55740,"55740":55741,"55741":55742,"55742":55743,"55743":55744,"55744":55745,"55745":55746,"55746":55747,"55747":55748,"55748":55749,"55749":55750,"55750":55751,"55751":55752,"55752":55753,"55753":55754,"55754":55755,"55755":55756,"55756":55757,"55757":55758,"55758":55759,"55759":55760,"55760":55761,"55761":55762,"55762":55763,"55763":55764,"55764":55765,"55765":55766,"55766":55767,"55767":55768,"55768":55769,"55769":55770,"55770":55771,"55771":55772,"55772":55773,"55773":55774,"55774":55775,"55775":55776,"55776":55777,"55777":55778,"55778":55779,"55779":55780,"55780":55781,"55781":55782,"55782":55783,"55783":55784,"55784":55785,"55785":55786,"55786":55787,"55787":55788,"55788":55789,"55789":55790,"55790":55791,"55791":55792,"55792":55793,"55793":55794,"55794":55795,"55795":55796,"55796":55797,"55797":55798,"55798":55799,"55799":55800,"55800":55801,"55801":55802,"55802":55803,"55803":55804,"55804":55805,"55805":55806,"55806":55807,"55807":55808,"55808":55809,"55809":55810,"55810":55811,"55811":55812,"55812":55813,"55813":55814,"55814":55815,"55815":55816,"55816":55817,"55817":55818,"55818":55819,"55819":55820,"55820":55821,"55821":55822,"55822":55823,"55823":55824,"55824":55825,"55825":55826,"55826":55827,"55827":55828,"55828":55829,"55829":55830,"55830":55831,"55831":55832,"55832":55833,"55833":55834,"55834":55835,"55835":55836,"55836":55837,"55837":55838,"55838":55839,"55839":55840,"55840":55841,"55841":55842,"55842":55843,"55843":55844,"55844":55845,"55845":55846,"55846":55847,"55847":55848,"55848":55849,"55849":55850,"55850":55851,"55851":55852,"55852":55853,"55853":55854,"55854":55855,"55855":55856,"55856":55857,"55857":55858,"55858":55859,"55859":55860,"55860":55861,"55861":55862,"55862":55863,"55863":55864,"55864":55865,"55865":55866,"55866":55867,"55867":55868,"55868":55869,"55869":55870,"55870":55871,"55871":55872,"55872":55873,"55873":55874,"55874":55875,"55875":55876,"55876":55877,"55877":55878,"55878":55879,"55879":55880,"55880":55881,"55881":55882,"55882":55883,"55883":55884,"55884":55885,"55885":55886,"55886":55887,"55887":55888,"55888":55889,"55889":55890,"55890":55891,"55891":55892,"55892":55893,"55893":55894,"55894":55895,"55895":55896,"55896":55897,"55897":55898,"55898":55899,"55899":55900,"55900":55901,"55901":55902,"55902":55903,"55903":55904,"55904":55905,"55905":55906,"55906":55907,"55907":55908,"55908":55909,"55909":55910,"55910":55911,"55911":55912,"55912":55913,"55913":55914,"55914":55915,"55915":55916,"55916":55917,"55917":55918,"55918":55919,"55919":55920,"55920":55921,"55921":55922,"55922":55923,"55923":55924,"55924":55925,"55925":55926,"55926":55927,"55927":55928,"55928":55929,"55929":55930,"55930":55931,"55931":55932,"55932":55933,"55933":55934,"55934":55935,"55935":55936,"55936":55937,"55937":55938,"55938":55939,"55939":55940,"55940":55941,"55941":55942,"55942":55943,"55943":55944,"55944":55945,"55945":55946,"55946":55947,"55947":55948,"55948":55949,"55949":55950,"55950":55951,"55951":55952,"55952":55953,"55953":55954,"55954":55955,"55955":55956,"55956":55957,"55957":55958,"55958":55959,"55959":55960,"55960":55961,"55961":55962,"55962":55963,"55963":55964,"55964":55965,"55965":55966,"55966":55967,"55967":55968,"55968":55969,"55969":55970,"55970":55971,"55971":55972,"55972":55973,"55973":55974,"55974":55975,"55975":55976,"55976":55977,"55977":55978,"55978":55979,"55979":55980,"55980":55981,"55981":55982,"55982":55983,"55983":55984,"55984":55985,"55985":55986,"55986":55987,"55987":55988,"55988":55989,"55989":55990,"55990":55991,"55991":55992,"55992":55993,"55993":55994,"55994":55995,"55995":55996,"55996":55997,"55997":55998,"55998":55999,"55999":56000,"56000":56001,"56001":56002,"56002":56003,"56003":56004,"56004":56005,"56005":56006,"56006":56007,"56007":56008,"56008":56009,"56009":56010,"56010":56011,"56011":56012,"56012":56013,"56013":56014,"56014":56015,"56015":56016,"56016":56017,"56017":56018,"56018":56019,"56019":56020,"56020":56021,"56021":56022,"56022":56023,"56023":56024,"56024":56025,"56025":56026,"56026":56027,"56027":56028,"56028":56029,"56029":56030,"56030":56031,"56031":56032,"56032":56033,"56033":56034,"56034":56035,"56035":56036,"56036":56037,"56037":56038,"56038":56039,"56039":56040,"56040":56041,"56041":56042,"56042":56043,"56043":56044,"56044":56045,"56045":56046,"56046":56047,"56047":56048,"56048":56049,"56049":56050,"56050":56051,"56051":56052,"56052":56053,"56053":56054,"56054":56055,"56055":56056,"56056":56057,"56057":56058,"56058":56059,"56059":56060,"56060":56061,"56061":56062,"56062":56063,"56063":56064,"56064":56065,"56065":56066,"56066":56067,"56067":56068,"56068":56069,"56069":56070,"56070":56071,"56071":56072,"56072":56073,"56073":56074,"56074":56075,"56075":56076,"56076":56077,"56077":56078,"56078":56079,"56079":56080,"56080":56081,"56081":56082,"56082":56083,"56083":56084,"56084":56085,"56085":56086,"56086":56087,"56087":56088,"56088":56089,"56089":56090,"56090":56091,"56091":56092,"56092":56093,"56093":56094,"56094":56095,"56095":56096,"56096":56097,"56097":56098,"56098":56099,"56099":56100,"56100":56101,"56101":56102,"56102":56103,"56103":56104,"56104":56105,"56105":56106,"56106":56107,"56107":56108,"56108":56109,"56109":56110,"56110":56111,"56111":56112,"56112":56113,"56113":56114,"56114":56115,"56115":56116,"56116":56117,"56117":56118,"56118":56119,"56119":56120,"56120":56121,"56121":56122,"56122":56123,"56123":56124,"56124":56125,"56125":56126,"56126":56127,"56127":56128,"56128":56129,"56129":56130,"56130":56131,"56131":56132,"56132":56133,"56133":56134,"56134":56135,"56135":56136,"56136":56137,"56137":56138,"56138":56139,"56139":56140,"56140":56141,"56141":56142,"56142":56143,"56143":56144,"56144":56145,"56145":56146,"56146":56147,"56147":56148,"56148":56149,"56149":56150,"56150":56151,"56151":56152,"56152":56153,"56153":56154,"56154":56155,"56155":56156,"56156":56157,"56157":56158,"56158":56159,"56159":56160,"56160":56161,"56161":56162,"56162":56163,"56163":56164,"56164":56165,"56165":56166,"56166":56167,"56167":56168,"56168":56169,"56169":56170,"56170":56171,"56171":56172,"56172":56173,"56173":56174,"56174":56175,"56175":56176,"56176":56177,"56177":56178,"56178":56179,"56179":56180,"56180":56181,"56181":56182,"56182":56183,"56183":56184,"56184":56185,"56185":56186,"56186":56187,"56187":56188,"56188":56189,"56189":56190,"56190":56191,"56191":56192,"56192":56193,"56193":56194,"56194":56195,"56195":56196,"56196":56197,"56197":56198,"56198":56199,"56199":56200,"56200":56201,"56201":56202,"56202":56203,"56203":56204,"56204":56205,"56205":56206,"56206":56207,"56207":56208,"56208":56209,"56209":56210,"56210":56211,"56211":56212,"56212":56213,"56213":56214,"56214":56215,"56215":56216,"56216":56217,"56217":56218,"56218":56219,"56219":56220,"56220":56221,"56221":56222,"56222":56223,"56223":56224,"56224":56225,"56225":56226,"56226":56227,"56227":56228,"56228":56229,"56229":56230,"56230":56231,"56231":56232,"56232":56233,"56233":56234,"56234":56235,"56235":56236,"56236":56237,"56237":56238,"56238":56239,"56239":56240,"56240":56241,"56241":56242,"56242":56243,"56243":56244,"56244":56245,"56245":56246,"56246":56247,"56247":56248,"56248":56249,"56249":56250,"56250":56251,"56251":56252,"56252":56253,"56253":56254,"56254":56255,"56255":56256,"56256":56257,"56257":56258,"56258":56259,"56259":56260,"56260":56261,"56261":56262,"56262":56263,"56263":56264,"56264":56265,"56265":56266,"56266":56267,"56267":56268,"56268":56269,"56269":56270,"56270":56271,"56271":56272,"56272":56273,"56273":56274,"56274":56275,"56275":56276,"56276":56277,"56277":56278,"56278":56279,"56279":56280,"56280":56281,"56281":56282,"56282":56283,"56283":56284,"56284":56285,"56285":56286,"56286":56287,"56287":56288,"56288":56289,"56289":56290,"56290":56291,"56291":56292,"56292":56293,"56293":56294,"56294":56295,"56295":56296,"56296":56297,"56297":56298,"56298":56299,"56299":56300,"56300":56301,"56301":56302,"56302":56303,"56303":56304,"56304":56305,"56305":56306,"56306":56307,"56307":56308,"56308":56309,"56309":56310,"56310":56311,"56311":56312,"56312":56313,"56313":56314,"56314":56315,"56315":56316,"56316":56317,"56317":56318,"56318":56319,"56319":56320,"56320":56321,"56321":56322,"56322":56323,"56323":56324,"56324":56325,"56325":56326,"56326":56327,"56327":56328,"56328":56329,"56329":56330,"56330":56331,"56331":56332,"56332":56333,"56333":56334,"56334":56335,"56335":56336,"56336":56337,"56337":56338,"56338":56339,"56339":56340,"56340":56341,"56341":56342,"56342":56343,"56343":56344,"56344":56345,"56345":56346,"56346":56347,"56347":56348,"56348":56349,"56349":56350,"56350":56351,"56351":56352,"56352":56353,"56353":56354,"56354":56355,"56355":56356,"56356":56357,"56357":56358,"56358":56359,"56359":56360,"56360":56361,"56361":56362,"56362":56363,"56363":56364,"56364":56365,"56365":56366,"56366":56367,"56367":56368,"56368":56369,"56369":56370,"56370":56371,"56371":56372,"56372":56373,"56373":56374,"56374":56375,"56375":56376,"56376":56377,"56377":56378,"56378":56379,"56379":56380,"56380":56381,"56381":56382,"56382":56383,"56383":56384,"56384":56385,"56385":56386,"56386":56387,"56387":56388,"56388":56389,"56389":56390,"56390":56391,"56391":56392,"56392":56393,"56393":56394,"56394":56395,"56395":56396,"56396":56397,"56397":56398,"56398":56399,"56399":56400,"56400":56401,"56401":56402,"56402":56403,"56403":56404,"56404":56405,"56405":56406,"56406":56407,"56407":56408,"56408":56409,"56409":56410,"56410":56411,"56411":56412,"56412":56413,"56413":56414,"56414":56415,"56415":56416,"56416":56417,"56417":56418,"56418":56419,"56419":56420,"56420":56421,"56421":56422,"56422":56423,"56423":56424,"56424":56425,"56425":56426,"56426":56427,"56427":56428,"56428":56429,"56429":56430,"56430":56431,"56431":56432,"56432":56433,"56433":56434,"56434":56435,"56435":56436,"56436":56437,"56437":56438,"56438":56439,"56439":56440,"56440":56441,"56441":56442,"56442":56443,"56443":56444,"56444":56445,"56445":56446,"56446":56447,"56447":56448,"56448":56449,"56449":56450,"56450":56451,"56451":56452,"56452":56453,"56453":56454,"56454":56455,"56455":56456,"56456":56457,"56457":56458,"56458":56459,"56459":56460,"56460":56461,"56461":56462,"56462":56463,"56463":56464,"56464":56465,"56465":56466,"56466":56467,"56467":56468,"56468":56469,"56469":56470,"56470":56471,"56471":56472,"56472":56473,"56473":56474,"56474":56475,"56475":56476,"56476":56477,"56477":56478,"56478":56479,"56479":56480,"56480":56481,"56481":56482,"56482":56483,"56483":56484,"56484":56485,"56485":56486,"56486":56487,"56487":56488,"56488":56489,"56489":56490,"56490":56491,"56491":56492,"56492":56493,"56493":56494,"56494":56495,"56495":56496,"56496":56497,"56497":56498,"56498":56499,"56499":56500,"56500":56501,"56501":56502,"56502":56503,"56503":56504,"56504":56505,"56505":56506,"56506":56507,"56507":56508,"56508":56509,"56509":56510,"56510":56511,"56511":56512,"56512":56513,"56513":56514,"56514":56515,"56515":56516,"56516":56517,"56517":56518,"56518":56519,"56519":56520,"56520":56521,"56521":56522,"56522":56523,"56523":56524,"56524":56525,"56525":56526,"56526":56527,"56527":56528,"56528":56529,"56529":56530,"56530":56531,"56531":56532,"56532":56533,"56533":56534,"56534":56535,"56535":56536,"56536":56537,"56537":56538,"56538":56539,"56539":56540,"56540":56541,"56541":56542,"56542":56543,"56543":56544,"56544":56545,"56545":56546,"56546":56547,"56547":56548,"56548":56549,"56549":56550,"56550":56551,"56551":56552,"56552":56553,"56553":56554,"56554":56555,"56555":56556,"56556":56557,"56557":56558,"56558":56559,"56559":56560,"56560":56561,"56561":56562,"56562":56563,"56563":56564,"56564":56565,"56565":56566,"56566":56567,"56567":56568,"56568":56569,"56569":56570,"56570":56571,"56571":56572,"56572":56573,"56573":56574,"56574":56575,"56575":56576,"56576":56577,"56577":56578,"56578":56579,"56579":56580,"56580":56581,"56581":56582,"56582":56583,"56583":56584,"56584":56585,"56585":56586,"56586":56587,"56587":56588,"56588":56589,"56589":56590,"56590":56591,"56591":56592,"56592":56593,"56593":56594,"56594":56595,"56595":56596,"56596":56597,"56597":56598,"56598":56599,"56599":56600,"56600":56601,"56601":56602,"56602":56603,"56603":56604,"56604":56605,"56605":56606,"56606":56607,"56607":56608,"56608":56609,"56609":56610,"56610":56611,"56611":56612,"56612":56613,"56613":56614,"56614":56615,"56615":56616,"56616":56617,"56617":56618,"56618":56619,"56619":56620,"56620":56621,"56621":56622,"56622":56623,"56623":56624,"56624":56625,"56625":56626,"56626":56627,"56627":56628,"56628":56629,"56629":56630,"56630":56631,"56631":56632,"56632":56633,"56633":56634,"56634":56635,"56635":56636,"56636":56637,"56637":56638,"56638":56639,"56639":56640,"56640":56641,"56641":56642,"56642":56643,"56643":56644,"56644":56645,"56645":56646,"56646":56647,"56647":56648,"56648":56649,"56649":56650,"56650":56651,"56651":56652,"56652":56653,"56653":56654,"56654":56655,"56655":56656,"56656":56657,"56657":56658,"56658":56659,"56659":56660,"56660":56661,"56661":56662,"56662":56663,"56663":56664,"56664":56665,"56665":56666,"56666":56667,"56667":56668,"56668":56669,"56669":56670,"56670":56671,"56671":56672,"56672":56673,"56673":56674,"56674":56675,"56675":56676,"56676":56677,"56677":56678,"56678":56679,"56679":56680,"56680":56681,"56681":56682,"56682":56683,"56683":56684,"56684":56685,"56685":56686,"56686":56687,"56687":56688,"56688":56689,"56689":56690,"56690":56691,"56691":56692,"56692":56693,"56693":56694,"56694":56695,"56695":56696,"56696":56697,"56697":56698,"56698":56699,"56699":56700,"56700":56701,"56701":56702,"56702":56703,"56703":56704,"56704":56705,"56705":56706,"56706":56707,"56707":56708,"56708":56709,"56709":56710,"56710":56711,"56711":56712,"56712":56713,"56713":56714,"56714":56715,"56715":56716,"56716":56717,"56717":56718,"56718":56719,"56719":56720,"56720":56721,"56721":56722,"56722":56723,"56723":56724,"56724":56725,"56725":56726,"56726":56727,"56727":56728,"56728":56729,"56729":56730,"56730":56731,"56731":56732,"56732":56733,"56733":56734,"56734":56735,"56735":56736,"56736":56737,"56737":56738,"56738":56739,"56739":56740,"56740":56741,"56741":56742,"56742":56743,"56743":56744,"56744":56745,"56745":56746,"56746":56747,"56747":56748,"56748":56749,"56749":56750,"56750":56751,"56751":56752,"56752":56753,"56753":56754,"56754":56755,"56755":56756,"56756":56757,"56757":56758,"56758":56759,"56759":56760,"56760":56761,"56761":56762,"56762":56763,"56763":56764,"56764":56765,"56765":56766,"56766":56767,"56767":56768,"56768":56769,"56769":56770,"56770":56771,"56771":56772,"56772":56773,"56773":56774,"56774":56775,"56775":56776,"56776":56777,"56777":56778,"56778":56779,"56779":56780,"56780":56781,"56781":56782,"56782":56783,"56783":56784,"56784":56785,"56785":56786,"56786":56787,"56787":56788,"56788":56789,"56789":56790,"56790":56791,"56791":56792,"56792":56793,"56793":56794,"56794":56795,"56795":56796,"56796":56797,"56797":56798,"56798":56799,"56799":56800,"56800":56801,"56801":56802,"56802":56803,"56803":56804,"56804":56805,"56805":56806,"56806":56807,"56807":56808,"56808":56809,"56809":56810,"56810":56811,"56811":56812,"56812":56813,"56813":56814,"56814":56815,"56815":56816,"56816":56817,"56817":56818,"56818":56819,"56819":56820,"56820":56821,"56821":56822,"56822":56823,"56823":56824,"56824":56825,"56825":56826,"56826":56827,"56827":56828,"56828":56829,"56829":56830,"56830":56831,"56831":56832,"56832":56833,"56833":56834,"56834":56835,"56835":56836,"56836":56837,"56837":56838,"56838":56839,"56839":56840,"56840":56841,"56841":56842,"56842":56843,"56843":56844,"56844":56845,"56845":56846,"56846":56847,"56847":56848,"56848":56849,"56849":56850,"56850":56851,"56851":56852,"56852":56853,"56853":56854,"56854":56855,"56855":56856,"56856":56857,"56857":56858,"56858":56859,"56859":56860,"56860":56861,"56861":56862,"56862":56863,"56863":56864,"56864":56865,"56865":56866,"56866":56867,"56867":56868,"56868":56869,"56869":56870,"56870":56871,"56871":56872,"56872":56873,"56873":56874,"56874":56875,"56875":56876,"56876":56877,"56877":56878,"56878":56879,"56879":56880,"56880":56881,"56881":56882,"56882":56883,"56883":56884,"56884":56885,"56885":56886,"56886":56887,"56887":56888,"56888":56889,"56889":56890,"56890":56891,"56891":56892,"56892":56893,"56893":56894,"56894":56895,"56895":56896,"56896":56897,"56897":56898,"56898":56899,"56899":56900,"56900":56901,"56901":56902,"56902":56903,"56903":56904,"56904":56905,"56905":56906,"56906":56907,"56907":56908,"56908":56909,"56909":56910,"56910":56911,"56911":56912,"56912":56913,"56913":56914,"56914":56915,"56915":56916,"56916":56917,"56917":56918,"56918":56919,"56919":56920,"56920":56921,"56921":56922,"56922":56923,"56923":56924,"56924":56925,"56925":56926,"56926":56927,"56927":56928,"56928":56929,"56929":56930,"56930":56931,"56931":56932,"56932":56933,"56933":56934,"56934":56935,"56935":56936,"56936":56937,"56937":56938,"56938":56939,"56939":56940,"56940":56941,"56941":56942,"56942":56943,"56943":56944,"56944":56945,"56945":56946,"56946":56947,"56947":56948,"56948":56949,"56949":56950,"56950":56951,"56951":56952,"56952":56953,"56953":56954,"56954":56955,"56955":56956,"56956":56957,"56957":56958,"56958":56959,"56959":56960,"56960":56961,"56961":56962,"56962":56963,"56963":56964,"56964":56965,"56965":56966,"56966":56967,"56967":56968,"56968":56969,"56969":56970,"56970":56971,"56971":56972,"56972":56973,"56973":56974,"56974":56975,"56975":56976,"56976":56977,"56977":56978,"56978":56979,"56979":56980,"56980":56981,"56981":56982,"56982":56983,"56983":56984,"56984":56985,"56985":56986,"56986":56987,"56987":56988,"56988":56989,"56989":56990,"56990":56991,"56991":56992,"56992":56993,"56993":56994,"56994":56995,"56995":56996,"56996":56997,"56997":56998,"56998":56999,"56999":57000,"57000":57001,"57001":57002,"57002":57003,"57003":57004,"57004":57005,"57005":57006,"57006":57007,"57007":57008,"57008":57009,"57009":57010,"57010":57011,"57011":57012,"57012":57013,"57013":57014,"57014":57015,"57015":57016,"57016":57017,"57017":57018,"57018":57019,"57019":57020,"57020":57021,"57021":57022,"57022":57023,"57023":57024,"57024":57025,"57025":57026,"57026":57027,"57027":57028,"57028":57029,"57029":57030,"57030":57031,"57031":57032,"57032":57033,"57033":57034,"57034":57035,"57035":57036,"57036":57037,"57037":57038,"57038":57039,"57039":57040,"57040":57041,"57041":57042,"57042":57043,"57043":57044,"57044":57045,"57045":57046,"57046":57047,"57047":57048,"57048":57049,"57049":57050,"57050":57051,"57051":57052,"57052":57053,"57053":57054,"57054":57055,"57055":57056,"57056":57057,"57057":57058,"57058":57059,"57059":57060,"57060":57061,"57061":57062,"57062":57063,"57063":57064,"57064":57065,"57065":57066,"57066":57067,"57067":57068,"57068":57069,"57069":57070,"57070":57071,"57071":57072,"57072":57073,"57073":57074,"57074":57075,"57075":57076,"57076":57077,"57077":57078,"57078":57079,"57079":57080,"57080":57081,"57081":57082,"57082":57083,"57083":57084,"57084":57085,"57085":57086,"57086":57087,"57087":57088,"57088":57089,"57089":57090,"57090":57091,"57091":57092,"57092":57093,"57093":57094,"57094":57095,"57095":57096,"57096":57097,"57097":57098,"57098":57099,"57099":57100,"57100":57101,"57101":57102,"57102":57103,"57103":57104,"57104":57105,"57105":57106,"57106":57107,"57107":57108,"57108":57109,"57109":57110,"57110":57111,"57111":57112,"57112":57113,"57113":57114,"57114":57115,"57115":57116,"57116":57117,"57117":57118,"57118":57119,"57119":57120,"57120":57121,"57121":57122,"57122":57123,"57123":57124,"57124":57125,"57125":57126,"57126":57127,"57127":57128,"57128":57129,"57129":57130,"57130":57131,"57131":57132,"57132":57133,"57133":57134,"57134":57135,"57135":57136,"57136":57137,"57137":57138,"57138":57139,"57139":57140,"57140":57141,"57141":57142,"57142":57143,"57143":57144,"57144":57145,"57145":57146,"57146":57147,"57147":57148,"57148":57149,"57149":57150,"57150":57151,"57151":57152,"57152":57153,"57153":57154,"57154":57155,"57155":57156,"57156":57157,"57157":57158,"57158":57159,"57159":57160,"57160":57161,"57161":57162,"57162":57163,"57163":57164,"57164":57165,"57165":57166,"57166":57167,"57167":57168,"57168":57169,"57169":57170,"57170":57171,"57171":57172,"57172":57173,"57173":57174,"57174":57175,"57175":57176,"57176":57177,"57177":57178,"57178":57179,"57179":57180,"57180":57181,"57181":57182,"57182":57183,"57183":57184,"57184":57185,"57185":57186,"57186":57187,"57187":57188,"57188":57189,"57189":57190,"57190":57191,"57191":57192,"57192":57193,"57193":57194,"57194":57195,"57195":57196,"57196":57197,"57197":57198,"57198":57199,"57199":57200,"57200":57201,"57201":57202,"57202":57203,"57203":57204,"57204":57205,"57205":57206,"57206":57207,"57207":57208,"57208":57209,"57209":57210,"57210":57211,"57211":57212,"57212":57213,"57213":57214,"57214":57215,"57215":57216,"57216":57217,"57217":57218,"57218":57219,"57219":57220,"57220":57221,"57221":57222,"57222":57223,"57223":57224,"57224":57225,"57225":57226,"57226":57227,"57227":57228,"57228":57229,"57229":57230,"57230":57231,"57231":57232,"57232":57233,"57233":57234,"57234":57235,"57235":57236,"57236":57237,"57237":57238,"57238":57239,"57239":57240,"57240":57241,"57241":57242,"57242":57243,"57243":57244,"57244":57245,"57245":57246,"57246":57247,"57247":57248,"57248":57249,"57249":57250,"57250":57251,"57251":57252,"57252":57253,"57253":57254,"57254":57255,"57255":57256,"57256":57257,"57257":57258,"57258":57259,"57259":57260,"57260":57261,"57261":57262,"57262":57263,"57263":57264,"57264":57265,"57265":57266,"57266":57267,"57267":57268,"57268":57269,"57269":57270,"57270":57271,"57271":57272,"57272":57273,"57273":57274,"57274":57275,"57275":57276,"57276":57277,"57277":57278,"57278":57279,"57279":57280,"57280":57281,"57281":57282,"57282":57283,"57283":57284,"57284":57285,"57285":57286,"57286":57287,"57287":57288,"57288":57289,"57289":57290,"57290":57291,"57291":57292,"57292":57293,"57293":57294,"57294":57295,"57295":57296,"57296":57297,"57297":57298,"57298":57299,"57299":57300,"57300":57301,"57301":57302,"57302":57303,"57303":57304,"57304":57305,"57305":57306,"57306":57307,"57307":57308,"57308":57309,"57309":57310,"57310":57311,"57311":57312,"57312":57313,"57313":57314,"57314":57315,"57315":57316,"57316":57317,"57317":57318,"57318":57319,"57319":57320,"57320":57321,"57321":57322,"57322":57323,"57323":57324,"57324":57325,"57325":57326,"57326":57327,"57327":57328,"57328":57329,"57329":57330,"57330":57331,"57331":57332,"57332":57333,"57333":57334,"57334":57335,"57335":57336,"57336":57337,"57337":57338,"57338":57339,"57339":57340,"57340":57341,"57341":57342,"57342":57343,"57343":57344,"57344":57345,"57345":57346,"57346":57347,"57347":57348,"57348":57349,"57349":57350,"57350":57351,"57351":57352,"57352":57353,"57353":57354,"57354":57355,"57355":57356,"57356":57357,"57357":57358,"57358":57359,"57359":57360,"57360":57361,"57361":57362,"57362":57363,"57363":57364,"57364":57365,"57365":57366,"57366":57367,"57367":57368,"57368":57369,"57369":57370,"57370":57371,"57371":57372,"57372":57373,"57373":57374,"57374":57375,"57375":57376,"57376":57377,"57377":57378,"57378":57379,"57379":57380,"57380":57381,"57381":57382,"57382":57383,"57383":57384,"57384":57385,"57385":57386,"57386":57387,"57387":57388,"57388":57389,"57389":57390,"57390":57391,"57391":57392,"57392":57393,"57393":57394,"57394":57395,"57395":57396,"57396":57397,"57397":57398,"57398":57399,"57399":57400,"57400":57401,"57401":57402,"57402":57403,"57403":57404,"57404":57405,"57405":57406,"57406":57407,"57407":57408,"57408":57409,"57409":57410,"57410":57411,"57411":57412,"57412":57413,"57413":57414,"57414":57415,"57415":57416,"57416":57417,"57417":57418,"57418":57419,"57419":57420,"57420":57421,"57421":57422,"57422":57423,"57423":57424,"57424":57425,"57425":57426,"57426":57427,"57427":57428,"57428":57429,"57429":57430,"57430":57431,"57431":57432,"57432":57433,"57433":57434,"57434":57435,"57435":57436,"57436":57437,"57437":57438,"57438":57439,"57439":57440,"57440":57441,"57441":57442,"57442":57443,"57443":57444,"57444":57445,"57445":57446,"57446":57447,"57447":57448,"57448":57449,"57449":57450,"57450":57451,"57451":57452,"57452":57453,"57453":57454,"57454":57455,"57455":57456,"57456":57457,"57457":57458,"57458":57459,"57459":57460,"57460":57461,"57461":57462,"57462":57463,"57463":57464,"57464":57465,"57465":57466,"57466":57467,"57467":57468,"57468":57469,"57469":57470,"57470":57471,"57471":57472,"57472":57473,"57473":57474,"57474":57475,"57475":57476,"57476":57477,"57477":57478,"57478":57479,"57479":57480,"57480":57481,"57481":57482,"57482":57483,"57483":57484,"57484":57485,"57485":57486,"57486":57487,"57487":57488,"57488":57489,"57489":57490,"57490":57491,"57491":57492,"57492":57493,"57493":57494,"57494":57495,"57495":57496,"57496":57497,"57497":57498,"57498":57499,"57499":57500,"57500":57501,"57501":57502,"57502":57503,"57503":57504,"57504":57505,"57505":57506,"57506":57507,"57507":57508,"57508":57509,"57509":57510,"57510":57511,"57511":57512,"57512":57513,"57513":57514,"57514":57515,"57515":57516,"57516":57517,"57517":57518,"57518":57519,"57519":57520,"57520":57521,"57521":57522,"57522":57523,"57523":57524,"57524":57525,"57525":57526,"57526":57527,"57527":57528,"57528":57529,"57529":57530,"57530":57531,"57531":57532,"57532":57533,"57533":57534,"57534":57535,"57535":57536,"57536":57537,"57537":57538,"57538":57539,"57539":57540,"57540":57541,"57541":57542,"57542":57543,"57543":57544,"57544":57545,"57545":57546,"57546":57547,"57547":57548,"57548":57549,"57549":57550,"57550":57551,"57551":57552,"57552":57553,"57553":57554,"57554":57555,"57555":57556,"57556":57557,"57557":57558,"57558":57559,"57559":57560,"57560":57561,"57561":57562,"57562":57563,"57563":57564,"57564":57565,"57565":57566,"57566":57567,"57567":57568,"57568":57569,"57569":57570,"57570":57571,"57571":57572,"57572":57573,"57573":57574,"57574":57575,"57575":57576,"57576":57577,"57577":57578,"57578":57579,"57579":57580,"57580":57581,"57581":57582,"57582":57583,"57583":57584,"57584":57585,"57585":57586,"57586":57587,"57587":57588,"57588":57589,"57589":57590,"57590":57591,"57591":57592,"57592":57593,"57593":57594,"57594":57595,"57595":57596,"57596":57597,"57597":57598,"57598":57599,"57599":57600,"57600":57601,"57601":57602,"57602":57603,"57603":57604,"57604":57605,"57605":57606,"57606":57607,"57607":57608,"57608":57609,"57609":57610,"57610":57611,"57611":57612,"57612":57613,"57613":57614,"57614":57615,"57615":57616,"57616":57617,"57617":57618,"57618":57619,"57619":57620,"57620":57621,"57621":57622,"57622":57623,"57623":57624,"57624":57625,"57625":57626,"57626":57627,"57627":57628,"57628":57629,"57629":57630,"57630":57631,"57631":57632,"57632":57633,"57633":57634,"57634":57635,"57635":57636,"57636":57637,"57637":57638,"57638":57639,"57639":57640,"57640":57641,"57641":57642,"57642":57643,"57643":57644,"57644":57645,"57645":57646,"57646":57647,"57647":57648,"57648":57649,"57649":57650,"57650":57651,"57651":57652,"57652":57653,"57653":57654,"57654":57655,"57655":57656,"57656":57657,"57657":57658,"57658":57659,"57659":57660,"57660":57661,"57661":57662,"57662":57663,"57663":57664,"57664":57665,"57665":57666,"57666":57667,"57667":57668,"57668":57669,"57669":57670,"57670":57671,"57671":57672,"57672":57673,"57673":57674,"57674":57675,"57675":57676,"57676":57677,"57677":57678,"57678":57679,"57679":57680,"57680":57681,"57681":57682,"57682":57683,"57683":57684,"57684":57685,"57685":57686,"57686":57687,"57687":57688,"57688":57689,"57689":57690,"57690":57691,"57691":57692,"57692":57693,"57693":57694,"57694":57695,"57695":57696,"57696":57697,"57697":57698,"57698":57699,"57699":57700,"57700":57701,"57701":57702,"57702":57703,"57703":57704,"57704":57705,"57705":57706,"57706":57707,"57707":57708,"57708":57709,"57709":57710,"57710":57711,"57711":57712,"57712":57713,"57713":57714,"57714":57715,"57715":57716,"57716":57717,"57717":57718,"57718":57719,"57719":57720,"57720":57721,"57721":57722,"57722":57723,"57723":57724,"57724":57725,"57725":57726,"57726":57727,"57727":57728,"57728":57729,"57729":57730,"57730":57731,"57731":57732,"57732":57733,"57733":57734,"57734":57735,"57735":57736,"57736":57737,"57737":57738,"57738":57739,"57739":57740,"57740":57741,"57741":57742,"57742":57743,"57743":57744,"57744":57745,"57745":57746,"57746":57747,"57747":57748,"57748":57749,"57749":57750,"57750":57751,"57751":57752,"57752":57753,"57753":57754,"57754":57755,"57755":57756,"57756":57757,"57757":57758,"57758":57759,"57759":57760,"57760":57761,"57761":57762,"57762":57763,"57763":57764,"57764":57765,"57765":57766,"57766":57767,"57767":57768,"57768":57769,"57769":57770,"57770":57771,"57771":57772,"57772":57773,"57773":57774,"57774":57775,"57775":57776,"57776":57777,"57777":57778,"57778":57779,"57779":57780,"57780":57781,"57781":57782,"57782":57783,"57783":57784,"57784":57785,"57785":57786,"57786":57787,"57787":57788,"57788":57789,"57789":57790,"57790":57791,"57791":57792,"57792":57793,"57793":57794,"57794":57795,"57795":57796,"57796":57797,"57797":57798,"57798":57799,"57799":57800,"57800":57801,"57801":57802,"57802":57803,"57803":57804,"57804":57805,"57805":57806,"57806":57807,"57807":57808,"57808":57809,"57809":57810,"57810":57811,"57811":57812,"57812":57813,"57813":57814,"57814":57815,"57815":57816,"57816":57817,"57817":57818,"57818":57819,"57819":57820,"57820":57821,"57821":57822,"57822":57823,"57823":57824,"57824":57825,"57825":57826,"57826":57827,"57827":57828,"57828":57829,"57829":57830,"57830":57831,"57831":57832,"57832":57833,"57833":57834,"57834":57835,"57835":57836,"57836":57837,"57837":57838,"57838":57839,"57839":57840,"57840":57841,"57841":57842,"57842":57843,"57843":57844,"57844":57845,"57845":57846,"57846":57847,"57847":57848,"57848":57849,"57849":57850,"57850":57851,"57851":57852,"57852":57853,"57853":57854,"57854":57855,"57855":57856,"57856":57857,"57857":57858,"57858":57859,"57859":57860,"57860":57861,"57861":57862,"57862":57863,"57863":57864,"57864":57865,"57865":57866,"57866":57867,"57867":57868,"57868":57869,"57869":57870,"57870":57871,"57871":57872,"57872":57873,"57873":57874,"57874":57875,"57875":57876,"57876":57877,"57877":57878,"57878":57879,"57879":57880,"57880":57881,"57881":57882,"57882":57883,"57883":57884,"57884":57885,"57885":57886,"57886":57887,"57887":57888,"57888":57889,"57889":57890,"57890":57891,"57891":57892,"57892":57893,"57893":57894,"57894":57895,"57895":57896,"57896":57897,"57897":57898,"57898":57899,"57899":57900,"57900":57901,"57901":57902,"57902":57903,"57903":57904,"57904":57905,"57905":57906,"57906":57907,"57907":57908,"57908":57909,"57909":57910,"57910":57911,"57911":57912,"57912":57913,"57913":57914,"57914":57915,"57915":57916,"57916":57917,"57917":57918,"57918":57919,"57919":57920,"57920":57921,"57921":57922,"57922":57923,"57923":57924,"57924":57925,"57925":57926,"57926":57927,"57927":57928,"57928":57929,"57929":57930,"57930":57931,"57931":57932,"57932":57933,"57933":57934,"57934":57935,"57935":57936,"57936":57937,"57937":57938,"57938":57939,"57939":57940,"57940":57941,"57941":57942,"57942":57943,"57943":57944,"57944":57945,"57945":57946,"57946":57947,"57947":57948,"57948":57949,"57949":57950,"57950":57951,"57951":57952,"57952":57953,"57953":57954,"57954":57955,"57955":57956,"57956":57957,"57957":57958,"57958":57959,"57959":57960,"57960":57961,"57961":57962,"57962":57963,"57963":57964,"57964":57965,"57965":57966,"57966":57967,"57967":57968,"57968":57969,"57969":57970,"57970":57971,"57971":57972,"57972":57973,"57973":57974,"57974":57975,"57975":57976,"57976":57977,"57977":57978,"57978":57979,"57979":57980,"57980":57981,"57981":57982,"57982":57983,"57983":57984,"57984":57985,"57985":57986,"57986":57987,"57987":57988,"57988":57989,"57989":57990,"57990":57991,"57991":57992,"57992":57993,"57993":57994,"57994":57995,"57995":57996,"57996":57997,"57997":57998,"57998":57999,"57999":58000,"58000":58001,"58001":58002,"58002":58003,"58003":58004,"58004":58005,"58005":58006,"58006":58007,"58007":58008,"58008":58009,"58009":58010,"58010":58011,"58011":58012,"58012":58013,"58013":58014,"58014":58015,"58015":58016,"58016":58017,"58017":58018,"58018":58019,"58019":58020,"58020":58021,"58021":58022,"58022":58023,"58023":58024,"58024":58025,"58025":58026,"58026":58027,"58027":58028,"58028":58029,"58029":58030,"58030":58031,"58031":58032,"58032":58033,"58033":58034,"58034":58035,"58035":58036,"58036":58037,"58037":58038,"58038":58039,"58039":58040,"58040":58041,"58041":58042,"58042":58043,"58043":58044,"58044":58045,"58045":58046,"58046":58047,"58047":58048,"58048":58049,"58049":58050,"58050":58051,"58051":58052,"58052":58053,"58053":58054,"58054":58055,"58055":58056,"58056":58057,"58057":58058,"58058":58059,"58059":58060,"58060":58061,"58061":58062,"58062":58063,"58063":58064,"58064":58065,"58065":58066,"58066":58067,"58067":58068,"58068":58069,"58069":58070,"58070":58071,"58071":58072,"58072":58073,"58073":58074,"58074":58075,"58075":58076,"58076":58077,"58077":58078,"58078":58079,"58079":58080,"58080":58081,"58081":58082,"58082":58083,"58083":58084,"58084":58085,"58085":58086,"58086":58087,"58087":58088,"58088":58089,"58089":58090,"58090":58091,"58091":58092,"58092":58093,"58093":58094,"58094":58095,"58095":58096,"58096":58097,"58097":58098,"58098":58099,"58099":58100,"58100":58101,"58101":58102,"58102":58103,"58103":58104,"58104":58105,"58105":58106,"58106":58107,"58107":58108,"58108":58109,"58109":58110,"58110":58111,"58111":58112,"58112":58113,"58113":58114,"58114":58115,"58115":58116,"58116":58117,"58117":58118,"58118":58119,"58119":58120,"58120":58121,"58121":58122,"58122":58123,"58123":58124,"58124":58125,"58125":58126,"58126":58127,"58127":58128,"58128":58129,"58129":58130,"58130":58131,"58131":58132,"58132":58133,"58133":58134,"58134":58135,"58135":58136,"58136":58137,"58137":58138,"58138":58139,"58139":58140,"58140":58141,"58141":58142,"58142":58143,"58143":58144,"58144":58145,"58145":58146,"58146":58147,"58147":58148,"58148":58149,"58149":58150,"58150":58151,"58151":58152,"58152":58153,"58153":58154,"58154":58155,"58155":58156,"58156":58157,"58157":58158,"58158":58159,"58159":58160,"58160":58161,"58161":58162,"58162":58163,"58163":58164,"58164":58165,"58165":58166,"58166":58167,"58167":58168,"58168":58169,"58169":58170,"58170":58171,"58171":58172,"58172":58173,"58173":58174,"58174":58175,"58175":58176,"58176":58177,"58177":58178,"58178":58179,"58179":58180,"58180":58181,"58181":58182,"58182":58183,"58183":58184,"58184":58185,"58185":58186,"58186":58187,"58187":58188,"58188":58189,"58189":58190,"58190":58191,"58191":58192,"58192":58193,"58193":58194,"58194":58195,"58195":58196,"58196":58197,"58197":58198,"58198":58199,"58199":58200,"58200":58201,"58201":58202,"58202":58203,"58203":58204,"58204":58205,"58205":58206,"58206":58207,"58207":58208,"58208":58209,"58209":58210,"58210":58211,"58211":58212,"58212":58213,"58213":58214,"58214":58215,"58215":58216,"58216":58217,"58217":58218,"58218":58219,"58219":58220,"58220":58221,"58221":58222,"58222":58223,"58223":58224,"58224":58225,"58225":58226,"58226":58227,"58227":58228,"58228":58229,"58229":58230,"58230":58231,"58231":58232,"58232":58233,"58233":58234,"58234":58235,"58235":58236,"58236":58237,"58237":58238,"58238":58239,"58239":58240,"58240":58241,"58241":58242,"58242":58243,"58243":58244,"58244":58245,"58245":58246,"58246":58247,"58247":58248,"58248":58249,"58249":58250,"58250":58251,"58251":58252,"58252":58253,"58253":58254,"58254":58255,"58255":58256,"58256":58257,"58257":58258,"58258":58259,"58259":58260,"58260":58261,"58261":58262,"58262":58263,"58263":58264,"58264":58265,"58265":58266,"58266":58267,"58267":58268,"58268":58269,"58269":58270,"58270":58271,"58271":58272,"58272":58273,"58273":58274,"58274":58275,"58275":58276,"58276":58277,"58277":58278,"58278":58279,"58279":58280,"58280":58281,"58281":58282,"58282":58283,"58283":58284,"58284":58285,"58285":58286,"58286":58287,"58287":58288,"58288":58289,"58289":58290,"58290":58291,"58291":58292,"58292":58293,"58293":58294,"58294":58295,"58295":58296,"58296":58297,"58297":58298,"58298":58299,"58299":58300,"58300":58301,"58301":58302,"58302":58303,"58303":58304,"58304":58305,"58305":58306,"58306":58307,"58307":58308,"58308":58309,"58309":58310,"58310":58311,"58311":58312,"58312":58313,"58313":58314,"58314":58315,"58315":58316,"58316":58317,"58317":58318,"58318":58319,"58319":58320,"58320":58321,"58321":58322,"58322":58323,"58323":58324,"58324":58325,"58325":58326,"58326":58327,"58327":58328,"58328":58329,"58329":58330,"58330":58331,"58331":58332,"58332":58333,"58333":58334,"58334":58335,"58335":58336,"58336":58337,"58337":58338,"58338":58339,"58339":58340,"58340":58341,"58341":58342,"58342":58343,"58343":58344,"58344":58345,"58345":58346,"58346":58347,"58347":58348,"58348":58349,"58349":58350,"58350":58351,"58351":58352,"58352":58353,"58353":58354,"58354":58355,"58355":58356,"58356":58357,"58357":58358,"58358":58359,"58359":58360,"58360":58361,"58361":58362,"58362":58363,"58363":58364,"58364":58365,"58365":58366,"58366":58367,"58367":58368,"58368":58369,"58369":58370,"58370":58371,"58371":58372,"58372":58373,"58373":58374,"58374":58375,"58375":58376,"58376":58377,"58377":58378,"58378":58379,"58379":58380,"58380":58381,"58381":58382,"58382":58383,"58383":58384,"58384":58385,"58385":58386,"58386":58387,"58387":58388,"58388":58389,"58389":58390,"58390":58391,"58391":58392,"58392":58393,"58393":58394,"58394":58395,"58395":58396,"58396":58397,"58397":58398,"58398":58399,"58399":58400,"58400":58401,"58401":58402,"58402":58403,"58403":58404,"58404":58405,"58405":58406,"58406":58407,"58407":58408,"58408":58409,"58409":58410,"58410":58411,"58411":58412,"58412":58413,"58413":58414,"58414":58415,"58415":58416,"58416":58417,"58417":58418,"58418":58419,"58419":58420,"58420":58421,"58421":58422,"58422":58423,"58423":58424,"58424":58425,"58425":58426,"58426":58427,"58427":58428,"58428":58429,"58429":58430,"58430":58431,"58431":58432,"58432":58433,"58433":58434,"58434":58435,"58435":58436,"58436":58437,"58437":58438,"58438":58439,"58439":58440,"58440":58441,"58441":58442,"58442":58443,"58443":58444,"58444":58445,"58445":58446,"58446":58447,"58447":58448,"58448":58449,"58449":58450,"58450":58451,"58451":58452,"58452":58453,"58453":58454,"58454":58455,"58455":58456,"58456":58457,"58457":58458,"58458":58459,"58459":58460,"58460":58461,"58461":58462,"58462":58463,"58463":58464,"58464":58465,"58465":58466,"58466":58467,"58467":58468,"58468":58469,"58469":58470,"58470":58471,"58471":58472,"58472":58473,"58473":58474,"58474":58475,"58475":58476,"58476":58477,"58477":58478,"58478":58479,"58479":58480,"58480":58481,"58481":58482,"58482":58483,"58483":58484,"58484":58485,"58485":58486,"58486":58487,"58487":58488,"58488":58489,"58489":58490,"58490":58491,"58491":58492,"58492":58493,"58493":58494,"58494":58495,"58495":58496,"58496":58497,"58497":58498,"58498":58499,"58499":58500,"58500":58501,"58501":58502,"58502":58503,"58503":58504,"58504":58505,"58505":58506,"58506":58507,"58507":58508,"58508":58509,"58509":58510,"58510":58511,"58511":58512,"58512":58513,"58513":58514,"58514":58515,"58515":58516,"58516":58517,"58517":58518,"58518":58519,"58519":58520,"58520":58521,"58521":58522,"58522":58523,"58523":58524,"58524":58525,"58525":58526,"58526":58527,"58527":58528,"58528":58529,"58529":58530,"58530":58531,"58531":58532,"58532":58533,"58533":58534,"58534":58535,"58535":58536,"58536":58537,"58537":58538,"58538":58539,"58539":58540,"58540":58541,"58541":58542,"58542":58543,"58543":58544,"58544":58545,"58545":58546,"58546":58547,"58547":58548,"58548":58549,"58549":58550,"58550":58551,"58551":58552,"58552":58553,"58553":58554,"58554":58555,"58555":58556,"58556":58557,"58557":58558,"58558":58559,"58559":58560,"58560":58561,"58561":58562,"58562":58563,"58563":58564,"58564":58565,"58565":58566,"58566":58567,"58567":58568,"58568":58569,"58569":58570,"58570":58571,"58571":58572,"58572":58573,"58573":58574,"58574":58575,"58575":58576,"58576":58577,"58577":58578,"58578":58579,"58579":58580,"58580":58581,"58581":58582,"58582":58583,"58583":58584,"58584":58585,"58585":58586,"58586":58587,"58587":58588,"58588":58589,"58589":58590,"58590":58591,"58591":58592,"58592":58593,"58593":58594,"58594":58595,"58595":58596,"58596":58597,"58597":58598,"58598":58599,"58599":58600,"58600":58601,"58601":58602,"58602":58603,"58603":58604,"58604":58605,"58605":58606,"58606":58607,"58607":58608,"58608":58609,"58609":58610,"58610":58611,"58611":58612,"58612":58613,"58613":58614,"58614":58615,"58615":58616,"58616":58617,"58617":58618,"58618":58619,"58619":58620,"58620":58621,"58621":58622,"58622":58623,"58623":58624,"58624":58625,"58625":58626,"58626":58627,"58627":58628,"58628":58629,"58629":58630,"58630":58631,"58631":58632,"58632":58633,"58633":58634,"58634":58635,"58635":58636,"58636":58637,"58637":58638,"58638":58639,"58639":58640,"58640":58641,"58641":58642,"58642":58643,"58643":58644,"58644":58645,"58645":58646,"58646":58647,"58647":58648,"58648":58649,"58649":58650,"58650":58651,"58651":58652,"58652":58653,"58653":58654,"58654":58655,"58655":58656,"58656":58657,"58657":58658,"58658":58659,"58659":58660,"58660":58661,"58661":58662,"58662":58663,"58663":58664,"58664":58665,"58665":58666,"58666":58667,"58667":58668,"58668":58669,"58669":58670,"58670":58671,"58671":58672,"58672":58673,"58673":58674,"58674":58675,"58675":58676,"58676":58677,"58677":58678,"58678":58679,"58679":58680,"58680":58681,"58681":58682,"58682":58683,"58683":58684,"58684":58685,"58685":58686,"58686":58687,"58687":58688,"58688":58689,"58689":58690,"58690":58691,"58691":58692,"58692":58693,"58693":58694,"58694":58695,"58695":58696,"58696":58697,"58697":58698,"58698":58699,"58699":58700,"58700":58701,"58701":58702,"58702":58703,"58703":58704,"58704":58705,"58705":58706,"58706":58707,"58707":58708,"58708":58709,"58709":58710,"58710":58711,"58711":58712,"58712":58713,"58713":58714,"58714":58715,"58715":58716,"58716":58717,"58717":58718,"58718":58719,"58719":58720,"58720":58721,"58721":58722,"58722":58723,"58723":58724,"58724":58725,"58725":58726,"58726":58727,"58727":58728,"58728":58729,"58729":58730,"58730":58731,"58731":58732,"58732":58733,"58733":58734,"58734":58735,"58735":58736,"58736":58737,"58737":58738,"58738":58739,"58739":58740,"58740":58741,"58741":58742,"58742":58743,"58743":58744,"58744":58745,"58745":58746,"58746":58747,"58747":58748,"58748":58749,"58749":58750,"58750":58751,"58751":58752,"58752":58753,"58753":58754,"58754":58755,"58755":58756,"58756":58757,"58757":58758,"58758":58759,"58759":58760,"58760":58761,"58761":58762,"58762":58763,"58763":58764,"58764":58765,"58765":58766,"58766":58767,"58767":58768,"58768":58769,"58769":58770,"58770":58771,"58771":58772,"58772":58773,"58773":58774,"58774":58775,"58775":58776,"58776":58777,"58777":58778,"58778":58779,"58779":58780,"58780":58781,"58781":58782,"58782":58783,"58783":58784,"58784":58785,"58785":58786,"58786":58787,"58787":58788,"58788":58789,"58789":58790,"58790":58791,"58791":58792,"58792":58793,"58793":58794,"58794":58795,"58795":58796,"58796":58797,"58797":58798,"58798":58799,"58799":58800,"58800":58801,"58801":58802,"58802":58803,"58803":58804,"58804":58805,"58805":58806,"58806":58807,"58807":58808,"58808":58809,"58809":58810,"58810":58811,"58811":58812,"58812":58813,"58813":58814,"58814":58815,"58815":58816,"58816":58817,"58817":58818,"58818":58819,"58819":58820,"58820":58821,"58821":58822,"58822":58823,"58823":58824,"58824":58825,"58825":58826,"58826":58827,"58827":58828,"58828":58829,"58829":58830,"58830":58831,"58831":58832,"58832":58833,"58833":58834,"58834":58835,"58835":58836,"58836":58837,"58837":58838,"58838":58839,"58839":58840,"58840":58841,"58841":58842,"58842":58843,"58843":58844,"58844":58845,"58845":58846,"58846":58847,"58847":58848,"58848":58849,"58849":58850,"58850":58851,"58851":58852,"58852":58853,"58853":58854,"58854":58855,"58855":58856,"58856":58857,"58857":58858,"58858":58859,"58859":58860,"58860":58861,"58861":58862,"58862":58863,"58863":58864,"58864":58865,"58865":58866,"58866":58867,"58867":58868,"58868":58869,"58869":58870,"58870":58871,"58871":58872,"58872":58873,"58873":58874,"58874":58875,"58875":58876,"58876":58877,"58877":58878,"58878":58879,"58879":58880,"58880":58881,"58881":58882,"58882":58883,"58883":58884,"58884":58885,"58885":58886,"58886":58887,"58887":58888,"58888":58889,"58889":58890,"58890":58891,"58891":58892,"58892":58893,"58893":58894,"58894":58895,"58895":58896,"58896":58897,"58897":58898,"58898":58899,"58899":58900,"58900":58901,"58901":58902,"58902":58903,"58903":58904,"58904":58905,"58905":58906,"58906":58907,"58907":58908,"58908":58909,"58909":58910,"58910":58911,"58911":58912,"58912":58913,"58913":58914,"58914":58915,"58915":58916,"58916":58917,"58917":58918,"58918":58919,"58919":58920,"58920":58921,"58921":58922,"58922":58923,"58923":58924,"58924":58925,"58925":58926,"58926":58927,"58927":58928,"58928":58929,"58929":58930,"58930":58931,"58931":58932,"58932":58933,"58933":58934,"58934":58935,"58935":58936,"58936":58937,"58937":58938,"58938":58939,"58939":58940,"58940":58941,"58941":58942,"58942":58943,"58943":58944,"58944":58945,"58945":58946,"58946":58947,"58947":58948,"58948":58949,"58949":58950,"58950":58951,"58951":58952,"58952":58953,"58953":58954,"58954":58955,"58955":58956,"58956":58957,"58957":58958,"58958":58959,"58959":58960,"58960":58961,"58961":58962,"58962":58963,"58963":58964,"58964":58965,"58965":58966,"58966":58967,"58967":58968,"58968":58969,"58969":58970,"58970":58971,"58971":58972,"58972":58973,"58973":58974,"58974":58975,"58975":58976,"58976":58977,"58977":58978,"58978":58979,"58979":58980,"58980":58981,"58981":58982,"58982":58983,"58983":58984,"58984":58985,"58985":58986,"58986":58987,"58987":58988,"58988":58989,"58989":58990,"58990":58991,"58991":58992,"58992":58993,"58993":58994,"58994":58995,"58995":58996,"58996":58997,"58997":58998,"58998":58999,"58999":59000,"59000":59001,"59001":59002,"59002":59003,"59003":59004,"59004":59005,"59005":59006,"59006":59007,"59007":59008,"59008":59009,"59009":59010,"59010":59011,"59011":59012,"59012":59013,"59013":59014,"59014":59015,"59015":59016,"59016":59017,"59017":59018,"59018":59019,"59019":59020,"59020":59021,"59021":59022,"59022":59023,"59023":59024,"59024":59025,"59025":59026,"59026":59027,"59027":59028,"59028":59029,"59029":59030,"59030":59031,"59031":59032,"59032":59033,"59033":59034,"59034":59035,"59035":59036,"59036":59037,"59037":59038,"59038":59039,"59039":59040,"59040":59041,"59041":59042,"59042":59043,"59043":59044,"59044":59045,"59045":59046,"59046":59047,"59047":59048,"59048":59049,"59049":59050,"59050":59051,"59051":59052,"59052":59053,"59053":59054,"59054":59055,"59055":59056,"59056":59057,"59057":59058,"59058":59059,"59059":59060,"59060":59061,"59061":59062,"59062":59063,"59063":59064,"59064":59065,"59065":59066,"59066":59067,"59067":59068,"59068":59069,"59069":59070,"59070":59071,"59071":59072,"59072":59073,"59073":59074,"59074":59075,"59075":59076,"59076":59077,"59077":59078,"59078":59079,"59079":59080,"59080":59081,"59081":59082,"59082":59083,"59083":59084,"59084":59085,"59085":59086,"59086":59087,"59087":59088,"59088":59089,"59089":59090,"59090":59091,"59091":59092,"59092":59093,"59093":59094,"59094":59095,"59095":59096,"59096":59097,"59097":59098,"59098":59099,"59099":59100,"59100":59101,"59101":59102,"59102":59103,"59103":59104,"59104":59105,"59105":59106,"59106":59107,"59107":59108,"59108":59109,"59109":59110,"59110":59111,"59111":59112,"59112":59113,"59113":59114,"59114":59115,"59115":59116,"59116":59117,"59117":59118,"59118":59119,"59119":59120,"59120":59121,"59121":59122,"59122":59123,"59123":59124,"59124":59125,"59125":59126,"59126":59127,"59127":59128,"59128":59129,"59129":59130,"59130":59131,"59131":59132,"59132":59133,"59133":59134,"59134":59135,"59135":59136,"59136":59137,"59137":59138,"59138":59139,"59139":59140,"59140":59141,"59141":59142,"59142":59143,"59143":59144,"59144":59145,"59145":59146,"59146":59147,"59147":59148,"59148":59149,"59149":59150,"59150":59151,"59151":59152,"59152":59153,"59153":59154,"59154":59155,"59155":59156,"59156":59157,"59157":59158,"59158":59159,"59159":59160,"59160":59161,"59161":59162,"59162":59163,"59163":59164,"59164":59165,"59165":59166,"59166":59167,"59167":59168,"59168":59169,"59169":59170,"59170":59171,"59171":59172,"59172":59173,"59173":59174,"59174":59175,"59175":59176,"59176":59177,"59177":59178,"59178":59179,"59179":59180,"59180":59181,"59181":59182,"59182":59183,"59183":59184,"59184":59185,"59185":59186,"59186":59187,"59187":59188,"59188":59189,"59189":59190,"59190":59191,"59191":59192,"59192":59193,"59193":59194,"59194":59195,"59195":59196,"59196":59197,"59197":59198,"59198":59199,"59199":59200,"59200":59201,"59201":59202,"59202":59203,"59203":59204,"59204":59205,"59205":59206,"59206":59207,"59207":59208,"59208":59209,"59209":59210,"59210":59211,"59211":59212,"59212":59213,"59213":59214,"59214":59215,"59215":59216,"59216":59217,"59217":59218,"59218":59219,"59219":59220,"59220":59221,"59221":59222,"59222":59223,"59223":59224,"59224":59225,"59225":59226,"59226":59227,"59227":59228,"59228":59229,"59229":59230,"59230":59231,"59231":59232,"59232":59233,"59233":59234,"59234":59235,"59235":59236,"59236":59237,"59237":59238,"59238":59239,"59239":59240,"59240":59241,"59241":59242,"59242":59243,"59243":59244,"59244":59245,"59245":59246,"59246":59247,"59247":59248,"59248":59249,"59249":59250,"59250":59251,"59251":59252,"59252":59253,"59253":59254,"59254":59255,"59255":59256,"59256":59257,"59257":59258,"59258":59259,"59259":59260,"59260":59261,"59261":59262,"59262":59263,"59263":59264,"59264":59265,"59265":59266,"59266":59267,"59267":59268,"59268":59269,"59269":59270,"59270":59271,"59271":59272,"59272":59273,"59273":59274,"59274":59275,"59275":59276,"59276":59277,"59277":59278,"59278":59279,"59279":59280,"59280":59281,"59281":59282,"59282":59283,"59283":59284,"59284":59285,"59285":59286,"59286":59287,"59287":59288,"59288":59289,"59289":59290,"59290":59291,"59291":59292,"59292":59293,"59293":59294,"59294":59295,"59295":59296,"59296":59297,"59297":59298,"59298":59299,"59299":59300,"59300":59301,"59301":59302,"59302":59303,"59303":59304,"59304":59305,"59305":59306,"59306":59307,"59307":59308,"59308":59309,"59309":59310,"59310":59311,"59311":59312,"59312":59313,"59313":59314,"59314":59315,"59315":59316,"59316":59317,"59317":59318,"59318":59319,"59319":59320,"59320":59321,"59321":59322,"59322":59323,"59323":59324,"59324":59325,"59325":59326,"59326":59327,"59327":59328,"59328":59329,"59329":59330,"59330":59331,"59331":59332,"59332":59333,"59333":59334,"59334":59335,"59335":59336,"59336":59337,"59337":59338,"59338":59339,"59339":59340,"59340":59341,"59341":59342,"59342":59343,"59343":59344,"59344":59345,"59345":59346,"59346":59347,"59347":59348,"59348":59349,"59349":59350,"59350":59351,"59351":59352,"59352":59353,"59353":59354,"59354":59355,"59355":59356,"59356":59357,"59357":59358,"59358":59359,"59359":59360,"59360":59361,"59361":59362,"59362":59363,"59363":59364,"59364":59365,"59365":59366,"59366":59367,"59367":59368,"59368":59369,"59369":59370,"59370":59371,"59371":59372,"59372":59373,"59373":59374,"59374":59375,"59375":59376,"59376":59377,"59377":59378,"59378":59379,"59379":59380,"59380":59381,"59381":59382,"59382":59383,"59383":59384,"59384":59385,"59385":59386,"59386":59387,"59387":59388,"59388":59389,"59389":59390,"59390":59391,"59391":59392,"59392":59393,"59393":59394,"59394":59395,"59395":59396,"59396":59397,"59397":59398,"59398":59399,"59399":59400,"59400":59401,"59401":59402,"59402":59403,"59403":59404,"59404":59405,"59405":59406,"59406":59407,"59407":59408,"59408":59409,"59409":59410,"59410":59411,"59411":59412,"59412":59413,"59413":59414,"59414":59415,"59415":59416,"59416":59417,"59417":59418,"59418":59419,"59419":59420,"59420":59421,"59421":59422,"59422":59423,"59423":59424,"59424":59425,"59425":59426,"59426":59427,"59427":59428,"59428":59429,"59429":59430,"59430":59431,"59431":59432,"59432":59433,"59433":59434,"59434":59435,"59435":59436,"59436":59437,"59437":59438,"59438":59439,"59439":59440,"59440":59441,"59441":59442,"59442":59443,"59443":59444,"59444":59445,"59445":59446,"59446":59447,"59447":59448,"59448":59449,"59449":59450,"59450":59451,"59451":59452,"59452":59453,"59453":59454,"59454":59455,"59455":59456,"59456":59457,"59457":59458,"59458":59459,"59459":59460,"59460":59461,"59461":59462,"59462":59463,"59463":59464,"59464":59465,"59465":59466,"59466":59467,"59467":59468,"59468":59469,"59469":59470,"59470":59471,"59471":59472,"59472":59473,"59473":59474,"59474":59475,"59475":59476,"59476":59477,"59477":59478,"59478":59479,"59479":59480,"59480":59481,"59481":59482,"59482":59483,"59483":59484,"59484":59485,"59485":59486,"59486":59487,"59487":59488,"59488":59489,"59489":59490,"59490":59491,"59491":59492,"59492":59493,"59493":59494,"59494":59495,"59495":59496,"59496":59497,"59497":59498,"59498":59499,"59499":59500,"59500":59501,"59501":59502,"59502":59503,"59503":59504,"59504":59505,"59505":59506,"59506":59507,"59507":59508,"59508":59509,"59509":59510,"59510":59511,"59511":59512,"59512":59513,"59513":59514,"59514":59515,"59515":59516,"59516":59517,"59517":59518,"59518":59519,"59519":59520,"59520":59521,"59521":59522,"59522":59523,"59523":59524,"59524":59525,"59525":59526,"59526":59527,"59527":59528,"59528":59529,"59529":59530,"59530":59531,"59531":59532,"59532":59533,"59533":59534,"59534":59535,"59535":59536,"59536":59537,"59537":59538,"59538":59539,"59539":59540,"59540":59541,"59541":59542,"59542":59543,"59543":59544,"59544":59545,"59545":59546,"59546":59547,"59547":59548,"59548":59549,"59549":59550,"59550":59551,"59551":59552,"59552":59553,"59553":59554,"59554":59555,"59555":59556,"59556":59557,"59557":59558,"59558":59559,"59559":59560,"59560":59561,"59561":59562,"59562":59563,"59563":59564,"59564":59565,"59565":59566,"59566":59567,"59567":59568,"59568":59569,"59569":59570,"59570":59571,"59571":59572,"59572":59573,"59573":59574,"59574":59575,"59575":59576,"59576":59577,"59577":59578,"59578":59579,"59579":59580,"59580":59581,"59581":59582,"59582":59583,"59583":59584,"59584":59585,"59585":59586,"59586":59587,"59587":59588,"59588":59589,"59589":59590,"59590":59591,"59591":59592,"59592":59593,"59593":59594,"59594":59595,"59595":59596,"59596":59597,"59597":59598,"59598":59599,"59599":59600,"59600":59601,"59601":59602,"59602":59603,"59603":59604,"59604":59605,"59605":59606,"59606":59607,"59607":59608,"59608":59609,"59609":59610,"59610":59611,"59611":59612,"59612":59613,"59613":59614,"59614":59615,"59615":59616,"59616":59617,"59617":59618,"59618":59619,"59619":59620,"59620":59621,"59621":59622,"59622":59623,"59623":59624,"59624":59625,"59625":59626,"59626":59627,"59627":59628,"59628":59629,"59629":59630,"59630":59631,"59631":59632,"59632":59633,"59633":59634,"59634":59635,"59635":59636,"59636":59637,"59637":59638,"59638":59639,"59639":59640,"59640":59641,"59641":59642,"59642":59643,"59643":59644,"59644":59645,"59645":59646,"59646":59647,"59647":59648,"59648":59649,"59649":59650,"59650":59651,"59651":59652,"59652":59653,"59653":59654,"59654":59655,"59655":59656,"59656":59657,"59657":59658,"59658":59659,"59659":59660,"59660":59661,"59661":59662,"59662":59663,"59663":59664,"59664":59665,"59665":59666,"59666":59667,"59667":59668,"59668":59669,"59669":59670,"59670":59671,"59671":59672,"59672":59673,"59673":59674,"59674":59675,"59675":59676,"59676":59677,"59677":59678,"59678":59679,"59679":59680,"59680":59681,"59681":59682,"59682":59683,"59683":59684,"59684":59685,"59685":59686,"59686":59687,"59687":59688,"59688":59689,"59689":59690,"59690":59691,"59691":59692,"59692":59693,"59693":59694,"59694":59695,"59695":59696,"59696":59697,"59697":59698,"59698":59699,"59699":59700,"59700":59701,"59701":59702,"59702":59703,"59703":59704,"59704":59705,"59705":59706,"59706":59707,"59707":59708,"59708":59709,"59709":59710,"59710":59711,"59711":59712,"59712":59713,"59713":59714,"59714":59715,"59715":59716,"59716":59717,"59717":59718,"59718":59719,"59719":59720,"59720":59721,"59721":59722,"59722":59723,"59723":59724,"59724":59725,"59725":59726,"59726":59727,"59727":59728,"59728":59729,"59729":59730,"59730":59731,"59731":59732,"59732":59733,"59733":59734,"59734":59735,"59735":59736,"59736":59737,"59737":59738,"59738":59739,"59739":59740,"59740":59741,"59741":59742,"59742":59743,"59743":59744,"59744":59745,"59745":59746,"59746":59747,"59747":59748,"59748":59749,"59749":59750,"59750":59751,"59751":59752,"59752":59753,"59753":59754,"59754":59755,"59755":59756,"59756":59757,"59757":59758,"59758":59759,"59759":59760,"59760":59761,"59761":59762,"59762":59763,"59763":59764,"59764":59765,"59765":59766,"59766":59767,"59767":59768,"59768":59769,"59769":59770,"59770":59771,"59771":59772,"59772":59773,"59773":59774,"59774":59775,"59775":59776,"59776":59777,"59777":59778,"59778":59779,"59779":59780,"59780":59781,"59781":59782,"59782":59783,"59783":59784,"59784":59785,"59785":59786,"59786":59787,"59787":59788,"59788":59789,"59789":59790,"59790":59791,"59791":59792,"59792":59793,"59793":59794,"59794":59795,"59795":59796,"59796":59797,"59797":59798,"59798":59799,"59799":59800,"59800":59801,"59801":59802,"59802":59803,"59803":59804,"59804":59805,"59805":59806,"59806":59807,"59807":59808,"59808":59809,"59809":59810,"59810":59811,"59811":59812,"59812":59813,"59813":59814,"59814":59815,"59815":59816,"59816":59817,"59817":59818,"59818":59819,"59819":59820,"59820":59821,"59821":59822,"59822":59823,"59823":59824,"59824":59825,"59825":59826,"59826":59827,"59827":59828,"59828":59829,"59829":59830,"59830":59831,"59831":59832,"59832":59833,"59833":59834,"59834":59835,"59835":59836,"59836":59837,"59837":59838,"59838":59839,"59839":59840,"59840":59841,"59841":59842,"59842":59843,"59843":59844,"59844":59845,"59845":59846,"59846":59847,"59847":59848,"59848":59849,"59849":59850,"59850":59851,"59851":59852,"59852":59853,"59853":59854,"59854":59855,"59855":59856,"59856":59857,"59857":59858,"59858":59859,"59859":59860,"59860":59861,"59861":59862,"59862":59863,"59863":59864,"59864":59865,"59865":59866,"59866":59867,"59867":59868,"59868":59869,"59869":59870,"59870":59871,"59871":59872,"59872":59873,"59873":59874,"59874":59875,"59875":59876,"59876":59877,"59877":59878,"59878":59879,"59879":59880,"59880":59881,"59881":59882,"59882":59883,"59883":59884,"59884":59885,"59885":59886,"59886":59887,"59887":59888,"59888":59889,"59889":59890,"59890":59891,"59891":59892,"59892":59893,"59893":59894,"59894":59895,"59895":59896,"59896":59897,"59897":59898,"59898":59899,"59899":59900,"59900":59901,"59901":59902,"59902":59903,"59903":59904,"59904":59905,"59905":59906,"59906":59907,"59907":59908,"59908":59909,"59909":59910,"59910":59911,"59911":59912,"59912":59913,"59913":59914,"59914":59915,"59915":59916,"59916":59917,"59917":59918,"59918":59919,"59919":59920,"59920":59921,"59921":59922,"59922":59923,"59923":59924,"59924":59925,"59925":59926,"59926":59927,"59927":59928,"59928":59929,"59929":59930,"59930":59931,"59931":59932,"59932":59933,"59933":59934,"59934":59935,"59935":59936,"59936":59937,"59937":59938,"59938":59939,"59939":59940,"59940":59941,"59941":59942,"59942":59943,"59943":59944,"59944":59945,"59945":59946,"59946":59947,"59947":59948,"59948":59949,"59949":59950,"59950":59951,"59951":59952,"59952":59953,"59953":59954,"59954":59955,"59955":59956,"59956":59957,"59957":59958,"59958":59959,"59959":59960,"59960":59961,"59961":59962,"59962":59963,"59963":59964,"59964":59965,"59965":59966,"59966":59967,"59967":59968,"59968":59969,"59969":59970,"59970":59971,"59971":59972,"59972":59973,"59973":59974,"59974":59975,"59975":59976,"59976":59977,"59977":59978,"59978":59979,"59979":59980,"59980":59981,"59981":59982,"59982":59983,"59983":59984,"59984":59985,"59985":59986,"59986":59987,"59987":59988,"59988":59989,"59989":59990,"59990":59991,"59991":59992,"59992":59993,"59993":59994,"59994":59995,"59995":59996,"59996":59997,"59997":59998,"59998":59999,"59999":60000,"60000":60001,"60001":60002,"60002":60003,"60003":60004,"60004":60005,"60005":60006,"60006":60007,"60007":60008,"60008":60009,"60009":60010,"60010":60011,"60011":60012,"60012":60013,"60013":60014,"60014":60015,"60015":60016,"60016":60017,"60017":60018,"60018":60019,"60019":60020,"60020":60021,"60021":60022,"60022":60023,"60023":60024,"60024":60025,"60025":60026,"60026":60027,"60027":60028,"60028":60029,"60029":60030,"60030":60031,"60031":60032,"60032":60033,"60033":60034,"60034":60035,"60035":60036,"60036":60037,"60037":60038,"60038":60039,"60039":60040,"60040":60041,"60041":60042,"60042":60043,"60043":60044,"60044":60045,"60045":60046,"60046":60047,"60047":60048,"60048":60049,"60049":60050,"60050":60051,"60051":60052,"60052":60053,"60053":60054,"60054":60055,"60055":60056,"60056":60057,"60057":60058,"60058":60059,"60059":60060,"60060":60061,"60061":60062,"60062":60063,"60063":60064,"60064":60065,"60065":60066,"60066":60067,"60067":60068,"60068":60069,"60069":60070,"60070":60071,"60071":60072,"60072":60073,"60073":60074,"60074":60075,"60075":60076,"60076":60077,"60077":60078,"60078":60079,"60079":60080,"60080":60081,"60081":60082,"60082":60083,"60083":60084,"60084":60085,"60085":60086,"60086":60087,"60087":60088,"60088":60089,"60089":60090,"60090":60091,"60091":60092,"60092":60093,"60093":60094,"60094":60095,"60095":60096,"60096":60097,"60097":60098,"60098":60099,"60099":60100,"60100":60101,"60101":60102,"60102":60103,"60103":60104,"60104":60105,"60105":60106,"60106":60107,"60107":60108,"60108":60109,"60109":60110,"60110":60111,"60111":60112,"60112":60113,"60113":60114,"60114":60115,"60115":60116,"60116":60117,"60117":60118,"60118":60119,"60119":60120,"60120":60121,"60121":60122,"60122":60123,"60123":60124,"60124":60125,"60125":60126,"60126":60127,"60127":60128,"60128":60129,"60129":60130,"60130":60131,"60131":60132,"60132":60133,"60133":60134,"60134":60135,"60135":60136,"60136":60137,"60137":60138,"60138":60139,"60139":60140,"60140":60141,"60141":60142,"60142":60143,"60143":60144,"60144":60145,"60145":60146,"60146":60147,"60147":60148,"60148":60149,"60149":60150,"60150":60151,"60151":60152,"60152":60153,"60153":60154,"60154":60155,"60155":60156,"60156":60157,"60157":60158,"60158":60159,"60159":60160,"60160":60161,"60161":60162,"60162":60163,"60163":60164,"60164":60165,"60165":60166,"60166":60167,"60167":60168,"60168":60169,"60169":60170,"60170":60171,"60171":60172,"60172":60173,"60173":60174,"60174":60175,"60175":60176,"60176":60177,"60177":60178,"60178":60179,"60179":60180,"60180":60181,"60181":60182,"60182":60183,"60183":60184,"60184":60185,"60185":60186,"60186":60187,"60187":60188,"60188":60189,"60189":60190,"60190":60191,"60191":60192,"60192":60193,"60193":60194,"60194":60195,"60195":60196,"60196":60197,"60197":60198,"60198":60199,"60199":60200,"60200":60201,"60201":60202,"60202":60203,"60203":60204,"60204":60205,"60205":60206,"60206":60207,"60207":60208,"60208":60209,"60209":60210,"60210":60211,"60211":60212,"60212":60213,"60213":60214,"60214":60215,"60215":60216,"60216":60217,"60217":60218,"60218":60219,"60219":60220,"60220":60221,"60221":60222,"60222":60223,"60223":60224,"60224":60225,"60225":60226,"60226":60227,"60227":60228,"60228":60229,"60229":60230,"60230":60231,"60231":60232,"60232":60233,"60233":60234,"60234":60235,"60235":60236,"60236":60237,"60237":60238,"60238":60239,"60239":60240,"60240":60241,"60241":60242,"60242":60243,"60243":60244,"60244":60245,"60245":60246,"60246":60247,"60247":60248,"60248":60249,"60249":60250,"60250":60251,"60251":60252,"60252":60253,"60253":60254,"60254":60255,"60255":60256,"60256":60257,"60257":60258,"60258":60259,"60259":60260,"60260":60261,"60261":60262,"60262":60263,"60263":60264,"60264":60265,"60265":60266,"60266":60267,"60267":60268,"60268":60269,"60269":60270,"60270":60271,"60271":60272,"60272":60273,"60273":60274,"60274":60275,"60275":60276,"60276":60277,"60277":60278,"60278":60279,"60279":60280,"60280":60281,"60281":60282,"60282":60283,"60283":60284,"60284":60285,"60285":60286,"60286":60287,"60287":60288,"60288":60289,"60289":60290,"60290":60291,"60291":60292,"60292":60293,"60293":60294,"60294":60295,"60295":60296,"60296":60297,"60297":60298,"60298":60299,"60299":60300,"60300":60301,"60301":60302,"60302":60303,"60303":60304,"60304":60305,"60305":60306,"60306":60307,"60307":60308,"60308":60309,"60309":60310,"60310":60311,"60311":60312,"60312":60313,"60313":60314,"60314":60315,"60315":60316,"60316":60317,"60317":60318,"60318":60319,"60319":60320,"60320":60321,"60321":60322,"60322":60323,"60323":60324,"60324":60325,"60325":60326,"60326":60327,"60327":60328,"60328":60329,"60329":60330,"60330":60331,"60331":60332,"60332":60333,"60333":60334,"60334":60335,"60335":60336,"60336":60337,"60337":60338,"60338":60339,"60339":60340,"60340":60341,"60341":60342,"60342":60343,"60343":60344,"60344":60345,"60345":60346,"60346":60347,"60347":60348,"60348":60349,"60349":60350,"60350":60351,"60351":60352,"60352":60353,"60353":60354,"60354":60355,"60355":60356,"60356":60357,"60357":60358,"60358":60359,"60359":60360,"60360":60361,"60361":60362,"60362":60363,"60363":60364,"60364":60365,"60365":60366,"60366":60367,"60367":60368,"60368":60369,"60369":60370,"60370":60371,"60371":60372,"60372":60373,"60373":60374,"60374":60375,"60375":60376,"60376":60377,"60377":60378,"60378":60379,"60379":60380,"60380":60381,"60381":60382,"60382":60383,"60383":60384,"60384":60385,"60385":60386,"60386":60387,"60387":60388,"60388":60389,"60389":60390,"60390":60391,"60391":60392,"60392":60393,"60393":60394,"60394":60395,"60395":60396,"60396":60397,"60397":60398,"60398":60399,"60399":60400,"60400":60401,"60401":60402,"60402":60403,"60403":60404,"60404":60405,"60405":60406,"60406":60407,"60407":60408,"60408":60409,"60409":60410,"60410":60411,"60411":60412,"60412":60413,"60413":60414,"60414":60415,"60415":60416,"60416":60417,"60417":60418,"60418":60419,"60419":60420,"60420":60421,"60421":60422,"60422":60423,"60423":60424,"60424":60425,"60425":60426,"60426":60427,"60427":60428,"60428":60429,"60429":60430,"60430":60431,"60431":60432,"60432":60433,"60433":60434,"60434":60435,"60435":60436,"60436":60437,"60437":60438,"60438":60439,"60439":60440,"60440":60441,"60441":60442,"60442":60443,"60443":60444,"60444":60445,"60445":60446,"60446":60447,"60447":60448,"60448":60449,"60449":60450,"60450":60451,"60451":60452,"60452":60453,"60453":60454,"60454":60455,"60455":60456,"60456":60457,"60457":60458,"60458":60459,"60459":60460,"60460":60461,"60461":60462,"60462":60463,"60463":60464,"60464":60465,"60465":60466,"60466":60467,"60467":60468,"60468":60469,"60469":60470,"60470":60471,"60471":60472,"60472":60473,"60473":60474,"60474":60475,"60475":60476,"60476":60477,"60477":60478,"60478":60479,"60479":60480,"60480":60481,"60481":60482,"60482":60483,"60483":60484,"60484":60485,"60485":60486,"60486":60487,"60487":60488,"60488":60489,"60489":60490,"60490":60491,"60491":60492,"60492":60493,"60493":60494,"60494":60495,"60495":60496,"60496":60497,"60497":60498,"60498":60499,"60499":60500,"60500":60501,"60501":60502,"60502":60503,"60503":60504,"60504":60505,"60505":60506,"60506":60507,"60507":60508,"60508":60509,"60509":60510,"60510":60511,"60511":60512,"60512":60513,"60513":60514,"60514":60515,"60515":60516,"60516":60517,"60517":60518,"60518":60519,"60519":60520,"60520":60521,"60521":60522,"60522":60523,"60523":60524,"60524":60525,"60525":60526,"60526":60527,"60527":60528,"60528":60529,"60529":60530,"60530":60531,"60531":60532,"60532":60533,"60533":60534,"60534":60535,"60535":60536,"60536":60537,"60537":60538,"60538":60539,"60539":60540,"60540":60541,"60541":60542,"60542":60543,"60543":60544,"60544":60545,"60545":60546,"60546":60547,"60547":60548,"60548":60549,"60549":60550,"60550":60551,"60551":60552,"60552":60553,"60553":60554,"60554":60555,"60555":60556,"60556":60557,"60557":60558,"60558":60559,"60559":60560,"60560":60561,"60561":60562,"60562":60563,"60563":60564,"60564":60565,"60565":60566,"60566":60567,"60567":60568,"60568":60569,"60569":60570,"60570":60571,"60571":60572,"60572":60573,"60573":60574,"60574":60575,"60575":60576,"60576":60577,"60577":60578,"60578":60579,"60579":60580,"60580":60581,"60581":60582,"60582":60583,"60583":60584,"60584":60585,"60585":60586,"60586":60587,"60587":60588,"60588":60589,"60589":60590,"60590":60591,"60591":60592,"60592":60593,"60593":60594,"60594":60595,"60595":60596,"60596":60597,"60597":60598,"60598":60599,"60599":60600,"60600":60601,"60601":60602,"60602":60603,"60603":60604,"60604":60605,"60605":60606,"60606":60607,"60607":60608,"60608":60609,"60609":60610,"60610":60611,"60611":60612,"60612":60613,"60613":60614,"60614":60615,"60615":60616,"60616":60617,"60617":60618,"60618":60619,"60619":60620,"60620":60621,"60621":60622,"60622":60623,"60623":60624,"60624":60625,"60625":60626,"60626":60627,"60627":60628,"60628":60629,"60629":60630,"60630":60631,"60631":60632,"60632":60633,"60633":60634,"60634":60635,"60635":60636,"60636":60637,"60637":60638,"60638":60639,"60639":60640,"60640":60641,"60641":60642,"60642":60643,"60643":60644,"60644":60645,"60645":60646,"60646":60647,"60647":60648,"60648":60649,"60649":60650,"60650":60651,"60651":60652,"60652":60653,"60653":60654,"60654":60655,"60655":60656,"60656":60657,"60657":60658,"60658":60659,"60659":60660,"60660":60661,"60661":60662,"60662":60663,"60663":60664,"60664":60665,"60665":60666,"60666":60667,"60667":60668,"60668":60669,"60669":60670,"60670":60671,"60671":60672,"60672":60673,"60673":60674,"60674":60675,"60675":60676,"60676":60677,"60677":60678,"60678":60679,"60679":60680,"60680":60681,"60681":60682,"60682":60683,"60683":60684,"60684":60685,"60685":60686,"60686":60687,"60687":60688,"60688":60689,"60689":60690,"60690":60691,"60691":60692,"60692":60693,"60693":60694,"60694":60695,"60695":60696,"60696":60697,"60697":60698,"60698":60699,"60699":60700,"60700":60701,"60701":60702,"60702":60703,"60703":60704,"60704":60705,"60705":60706,"60706":60707,"60707":60708,"60708":60709,"60709":60710,"60710":60711,"60711":60712,"60712":60713,"60713":60714,"60714":60715,"60715":60716,"60716":60717,"60717":60718,"60718":60719,"60719":60720,"60720":60721,"60721":60722,"60722":60723,"60723":60724,"60724":60725,"60725":60726,"60726":60727,"60727":60728,"60728":60729,"60729":60730,"60730":60731,"60731":60732,"60732":60733,"60733":60734,"60734":60735,"60735":60736,"60736":60737,"60737":60738,"60738":60739,"60739":60740,"60740":60741,"60741":60742,"60742":60743,"60743":60744,"60744":60745,"60745":60746,"60746":60747,"60747":60748,"60748":60749,"60749":60750,"60750":60751,"60751":60752,"60752":60753,"60753":60754,"60754":60755,"60755":60756,"60756":60757,"60757":60758,"60758":60759,"60759":60760,"60760":60761,"60761":60762,"60762":60763,"60763":60764,"60764":60765,"60765":60766,"60766":60767,"60767":60768,"60768":60769,"60769":60770,"60770":60771,"60771":60772,"60772":60773,"60773":60774,"60774":60775,"60775":60776,"60776":60777,"60777":60778,"60778":60779,"60779":60780,"60780":60781,"60781":60782,"60782":60783,"60783":60784,"60784":60785,"60785":60786,"60786":60787,"60787":60788,"60788":60789,"60789":60790,"60790":60791,"60791":60792,"60792":60793,"60793":60794,"60794":60795,"60795":60796,"60796":60797,"60797":60798,"60798":60799,"60799":60800,"60800":60801,"60801":60802,"60802":60803,"60803":60804,"60804":60805,"60805":60806,"60806":60807,"60807":60808,"60808":60809,"60809":60810,"60810":60811,"60811":60812,"60812":60813,"60813":60814,"60814":60815,"60815":60816,"60816":60817,"60817":60818,"60818":60819,"60819":60820,"60820":60821,"60821":60822,"60822":60823,"60823":60824,"60824":60825,"60825":60826,"60826":60827,"60827":60828,"60828":60829,"60829":60830,"60830":60831,"60831":60832,"60832":60833,"60833":60834,"60834":60835,"60835":60836,"60836":60837,"60837":60838,"60838":60839,"60839":60840,"60840":60841,"60841":60842,"60842":60843,"60843":60844,"60844":60845,"60845":60846,"60846":60847,"60847":60848,"60848":60849,"60849":60850,"60850":60851,"60851":60852,"60852":60853,"60853":60854,"60854":60855,"60855":60856,"60856":60857,"60857":60858,"60858":60859,"60859":60860,"60860":60861,"60861":60862,"60862":60863,"60863":60864,"60864":60865,"60865":60866,"60866":60867,"60867":60868,"60868":60869,"60869":60870,"60870":60871,"60871":60872,"60872":60873,"60873":60874,"60874":60875,"60875":60876,"60876":60877,"60877":60878,"60878":60879,"60879":60880,"60880":60881,"60881":60882,"60882":60883,"60883":60884,"60884":60885,"60885":60886,"60886":60887,"60887":60888,"60888":60889,"60889":60890,"60890":60891,"60891":60892,"60892":60893,"60893":60894,"60894":60895,"60895":60896,"60896":60897,"60897":60898,"60898":60899,"60899":60900,"60900":60901,"60901":60902,"60902":60903,"60903":60904,"60904":60905,"60905":60906,"60906":60907,"60907":60908,"60908":60909,"60909":60910,"60910":60911,"60911":60912,"60912":60913,"60913":60914,"60914":60915,"60915":60916,"60916":60917,"60917":60918,"60918":60919,"60919":60920,"60920":60921,"60921":60922,"60922":60923,"60923":60924,"60924":60925,"60925":60926,"60926":60927,"60927":60928,"60928":60929,"60929":60930,"60930":60931,"60931":60932,"60932":60933,"60933":60934,"60934":60935,"60935":60936,"60936":60937,"60937":60938,"60938":60939,"60939":60940,"60940":60941,"60941":60942,"60942":60943,"60943":60944,"60944":60945,"60945":60946,"60946":60947,"60947":60948,"60948":60949,"60949":60950,"60950":60951,"60951":60952,"60952":60953,"60953":60954,"60954":60955,"60955":60956,"60956":60957,"60957":60958,"60958":60959,"60959":60960,"60960":60961,"60961":60962,"60962":60963,"60963":60964,"60964":60965,"60965":60966,"60966":60967,"60967":60968,"60968":60969,"60969":60970,"60970":60971,"60971":60972,"60972":60973,"60973":60974,"60974":60975,"60975":60976,"60976":60977,"60977":60978,"60978":60979,"60979":60980,"60980":60981,"60981":60982,"60982":60983,"60983":60984,"60984":60985,"60985":60986,"60986":60987,"60987":60988,"60988":60989,"60989":60990,"60990":60991,"60991":60992,"60992":60993,"60993":60994,"60994":60995,"60995":60996,"60996":60997,"60997":60998,"60998":60999,"60999":61000,"61000":61001,"61001":61002,"61002":61003,"61003":61004,"61004":61005,"61005":61006,"61006":61007,"61007":61008,"61008":61009,"61009":61010,"61010":61011,"61011":61012,"61012":61013,"61013":61014,"61014":61015,"61015":61016,"61016":61017,"61017":61018,"61018":61019,"61019":61020,"61020":61021,"61021":61022,"61022":61023,"61023":61024,"61024":61025,"61025":61026,"61026":61027,"61027":61028,"61028":61029,"61029":61030,"61030":61031,"61031":61032,"61032":61033,"61033":61034,"61034":61035,"61035":61036,"61036":61037,"61037":61038,"61038":61039,"61039":61040,"61040":61041,"61041":61042,"61042":61043,"61043":61044,"61044":61045,"61045":61046,"61046":61047,"61047":61048,"61048":61049,"61049":61050,"61050":61051,"61051":61052,"61052":61053,"61053":61054,"61054":61055,"61055":61056,"61056":61057,"61057":61058,"61058":61059,"61059":61060,"61060":61061,"61061":61062,"61062":61063,"61063":61064,"61064":61065,"61065":61066,"61066":61067,"61067":61068,"61068":61069,"61069":61070,"61070":61071,"61071":61072,"61072":61073,"61073":61074,"61074":61075,"61075":61076,"61076":61077,"61077":61078,"61078":61079,"61079":61080,"61080":61081,"61081":61082,"61082":61083,"61083":61084,"61084":61085,"61085":61086,"61086":61087,"61087":61088,"61088":61089,"61089":61090,"61090":61091,"61091":61092,"61092":61093,"61093":61094,"61094":61095,"61095":61096,"61096":61097,"61097":61098,"61098":61099,"61099":61100,"61100":61101,"61101":61102,"61102":61103,"61103":61104,"61104":61105,"61105":61106,"61106":61107,"61107":61108,"61108":61109,"61109":61110,"61110":61111,"61111":61112,"61112":61113,"61113":61114,"61114":61115,"61115":61116,"61116":61117,"61117":61118,"61118":61119,"61119":61120,"61120":61121,"61121":61122,"61122":61123,"61123":61124,"61124":61125,"61125":61126,"61126":61127,"61127":61128,"61128":61129,"61129":61130,"61130":61131,"61131":61132,"61132":61133,"61133":61134,"61134":61135,"61135":61136,"61136":61137,"61137":61138,"61138":61139,"61139":61140,"61140":61141,"61141":61142,"61142":61143,"61143":61144,"61144":61145,"61145":61146,"61146":61147,"61147":61148,"61148":61149,"61149":61150,"61150":61151,"61151":61152,"61152":61153,"61153":61154,"61154":61155,"61155":61156,"61156":61157,"61157":61158,"61158":61159,"61159":61160,"61160":61161,"61161":61162,"61162":61163,"61163":61164,"61164":61165,"61165":61166,"61166":61167,"61167":61168,"61168":61169,"61169":61170,"61170":61171,"61171":61172,"61172":61173,"61173":61174,"61174":61175,"61175":61176,"61176":61177,"61177":61178,"61178":61179,"61179":61180,"61180":61181,"61181":61182,"61182":61183,"61183":61184,"61184":61185,"61185":61186,"61186":61187,"61187":61188,"61188":61189,"61189":61190,"61190":61191,"61191":61192,"61192":61193,"61193":61194,"61194":61195,"61195":61196,"61196":61197,"61197":61198,"61198":61199,"61199":61200,"61200":61201,"61201":61202,"61202":61203,"61203":61204,"61204":61205,"61205":61206,"61206":61207,"61207":61208,"61208":61209,"61209":61210,"61210":61211,"61211":61212,"61212":61213,"61213":61214,"61214":61215,"61215":61216,"61216":61217,"61217":61218,"61218":61219,"61219":61220,"61220":61221,"61221":61222,"61222":61223,"61223":61224,"61224":61225,"61225":61226,"61226":61227,"61227":61228,"61228":61229,"61229":61230,"61230":61231,"61231":61232,"61232":61233,"61233":61234,"61234":61235,"61235":61236,"61236":61237,"61237":61238,"61238":61239,"61239":61240,"61240":61241,"61241":61242,"61242":61243,"61243":61244,"61244":61245,"61245":61246,"61246":61247,"61247":61248,"61248":61249,"61249":61250,"61250":61251,"61251":61252,"61252":61253,"61253":61254,"61254":61255,"61255":61256,"61256":61257,"61257":61258,"61258":61259,"61259":61260,"61260":61261,"61261":61262,"61262":61263,"61263":61264,"61264":61265,"61265":61266,"61266":61267,"61267":61268,"61268":61269,"61269":61270,"61270":61271,"61271":61272,"61272":61273,"61273":61274,"61274":61275,"61275":61276,"61276":61277,"61277":61278,"61278":61279,"61279":61280,"61280":61281,"61281":61282,"61282":61283,"61283":61284,"61284":61285,"61285":61286,"61286":61287,"61287":61288,"61288":61289,"61289":61290,"61290":61291,"61291":61292,"61292":61293,"61293":61294,"61294":61295,"61295":61296,"61296":61297,"61297":61298,"61298":61299,"61299":61300,"61300":61301,"61301":61302,"61302":61303,"61303":61304,"61304":61305,"61305":61306,"61306":61307,"61307":61308,"61308":61309,"61309":61310,"61310":61311,"61311":61312,"61312":61313,"61313":61314,"61314":61315,"61315":61316,"61316":61317,"61317":61318,"61318":61319,"61319":61320,"61320":61321,"61321":61322,"61322":61323,"61323":61324,"61324":61325,"61325":61326,"61326":61327,"61327":61328,"61328":61329,"61329":61330,"61330":61331,"61331":61332,"61332":61333,"61333":61334,"61334":61335,"61335":61336,"61336":61337,"61337":61338,"61338":61339,"61339":61340,"61340":61341,"61341":61342,"61342":61343,"61343":61344,"61344":61345,"61345":61346,"61346":61347,"61347":61348,"61348":61349,"61349":61350,"61350":61351,"61351":61352,"61352":61353,"61353":61354,"61354":61355,"61355":61356,"61356":61357,"61357":61358,"61358":61359,"61359":61360,"61360":61361,"61361":61362,"61362":61363,"61363":61364,"61364":61365,"61365":61366,"61366":61367,"61367":61368,"61368":61369,"61369":61370,"61370":61371,"61371":61372,"61372":61373,"61373":61374,"61374":61375,"61375":61376,"61376":61377,"61377":61378,"61378":61379,"61379":61380,"61380":61381,"61381":61382,"61382":61383,"61383":61384,"61384":61385,"61385":61386,"61386":61387,"61387":61388,"61388":61389,"61389":61390,"61390":61391,"61391":61392,"61392":61393,"61393":61394,"61394":61395,"61395":61396,"61396":61397,"61397":61398,"61398":61399,"61399":61400,"61400":61401,"61401":61402,"61402":61403,"61403":61404,"61404":61405,"61405":61406,"61406":61407,"61407":61408,"61408":61409,"61409":61410,"61410":61411,"61411":61412,"61412":61413,"61413":61414,"61414":61415,"61415":61416,"61416":61417,"61417":61418,"61418":61419,"61419":61420,"61420":61421,"61421":61422,"61422":61423,"61423":61424,"61424":61425,"61425":61426,"61426":61427,"61427":61428,"61428":61429,"61429":61430,"61430":61431,"61431":61432,"61432":61433,"61433":61434,"61434":61435,"61435":61436,"61436":61437,"61437":61438,"61438":61439,"61439":61440,"61440":61441,"61441":61442,"61442":61443,"61443":61444,"61444":61445,"61445":61446,"61446":61447,"61447":61448,"61448":61449,"61449":61450,"61450":61451,"61451":61452,"61452":61453,"61453":61454,"61454":61455,"61455":61456,"61456":61457,"61457":61458,"61458":61459,"61459":61460,"61460":61461,"61461":61462,"61462":61463,"61463":61464,"61464":61465,"61465":61466,"61466":61467,"61467":61468,"61468":61469,"61469":61470,"61470":61471,"61471":61472,"61472":61473,"61473":61474,"61474":61475,"61475":61476,"61476":61477,"61477":61478,"61478":61479,"61479":61480,"61480":61481,"61481":61482,"61482":61483,"61483":61484,"61484":61485,"61485":61486,"61486":61487,"61487":61488,"61488":61489,"61489":61490,"61490":61491,"61491":61492,"61492":61493,"61493":61494,"61494":61495,"61495":61496,"61496":61497,"61497":61498,"61498":61499,"61499":61500,"61500":61501,"61501":61502,"61502":61503,"61503":61504,"61504":61505,"61505":61506,"61506":61507,"61507":61508,"61508":61509,"61509":61510,"61510":61511,"61511":61512,"61512":61513,"61513":61514,"61514":61515,"61515":61516,"61516":61517,"61517":61518,"61518":61519,"61519":61520,"61520":61521,"61521":61522,"61522":61523,"61523":61524,"61524":61525,"61525":61526,"61526":61527,"61527":61528,"61528":61529,"61529":61530,"61530":61531,"61531":61532,"61532":61533,"61533":61534,"61534":61535,"61535":61536,"61536":61537,"61537":61538,"61538":61539,"61539":61540,"61540":61541,"61541":61542,"61542":61543,"61543":61544,"61544":61545,"61545":61546,"61546":61547,"61547":61548,"61548":61549,"61549":61550,"61550":61551,"61551":61552,"61552":61553,"61553":61554,"61554":61555,"61555":61556,"61556":61557,"61557":61558,"61558":61559,"61559":61560,"61560":61561,"61561":61562,"61562":61563,"61563":61564,"61564":61565,"61565":61566,"61566":61567,"61567":61568,"61568":61569,"61569":61570,"61570":61571,"61571":61572,"61572":61573,"61573":61574,"61574":61575,"61575":61576,"61576":61577,"61577":61578,"61578":61579,"61579":61580,"61580":61581,"61581":61582,"61582":61583,"61583":61584,"61584":61585,"61585":61586,"61586":61587,"61587":61588,"61588":61589,"61589":61590,"61590":61591,"61591":61592,"61592":61593,"61593":61594,"61594":61595,"61595":61596,"61596":61597,"61597":61598,"61598":61599,"61599":61600,"61600":61601,"61601":61602,"61602":61603,"61603":61604,"61604":61605,"61605":61606,"61606":61607,"61607":61608,"61608":61609,"61609":61610,"61610":61611,"61611":61612,"61612":61613,"61613":61614,"61614":61615,"61615":61616,"61616":61617,"61617":61618,"61618":61619,"61619":61620,"61620":61621,"61621":61622,"61622":61623,"61623":61624,"61624":61625,"61625":61626,"61626":61627,"61627":61628,"61628":61629,"61629":61630,"61630":61631,"61631":61632,"61632":61633,"61633":61634,"61634":61635,"61635":61636,"61636":61637,"61637":61638,"61638":61639,"61639":61640,"61640":61641,"61641":61642,"61642":61643,"61643":61644,"61644":61645,"61645":61646,"61646":61647,"61647":61648,"61648":61649,"61649":61650,"61650":61651,"61651":61652,"61652":61653,"61653":61654,"61654":61655,"61655":61656,"61656":61657,"61657":61658,"61658":61659,"61659":61660,"61660":61661,"61661":61662,"61662":61663,"61663":61664,"61664":61665,"61665":61666,"61666":61667,"61667":61668,"61668":61669,"61669":61670,"61670":61671,"61671":61672,"61672":61673,"61673":61674,"61674":61675,"61675":61676,"61676":61677,"61677":61678,"61678":61679,"61679":61680,"61680":61681,"61681":61682,"61682":61683,"61683":61684,"61684":61685,"61685":61686,"61686":61687,"61687":61688,"61688":61689,"61689":61690,"61690":61691,"61691":61692,"61692":61693,"61693":61694,"61694":61695,"61695":61696,"61696":61697,"61697":61698,"61698":61699,"61699":61700,"61700":61701,"61701":61702,"61702":61703,"61703":61704,"61704":61705,"61705":61706,"61706":61707,"61707":61708,"61708":61709,"61709":61710,"61710":61711,"61711":61712,"61712":61713,"61713":61714,"61714":61715,"61715":61716,"61716":61717,"61717":61718,"61718":61719,"61719":61720,"61720":61721,"61721":61722,"61722":61723,"61723":61724,"61724":61725,"61725":61726,"61726":61727,"61727":61728,"61728":61729,"61729":61730,"61730":61731,"61731":61732,"61732":61733,"61733":61734,"61734":61735,"61735":61736,"61736":61737,"61737":61738,"61738":61739,"61739":61740,"61740":61741,"61741":61742,"61742":61743,"61743":61744,"61744":61745,"61745":61746,"61746":61747,"61747":61748,"61748":61749,"61749":61750,"61750":61751,"61751":61752,"61752":61753,"61753":61754,"61754":61755,"61755":61756,"61756":61757,"61757":61758,"61758":61759,"61759":61760,"61760":61761,"61761":61762,"61762":61763,"61763":61764,"61764":61765,"61765":61766,"61766":61767,"61767":61768,"61768":61769,"61769":61770,"61770":61771,"61771":61772,"61772":61773,"61773":61774,"61774":61775,"61775":61776,"61776":61777,"61777":61778,"61778":61779,"61779":61780,"61780":61781,"61781":61782,"61782":61783,"61783":61784,"61784":61785,"61785":61786,"61786":61787,"61787":61788,"61788":61789,"61789":61790,"61790":61791,"61791":61792,"61792":61793,"61793":61794,"61794":61795,"61795":61796,"61796":61797,"61797":61798,"61798":61799,"61799":61800,"61800":61801,"61801":61802,"61802":61803,"61803":61804,"61804":61805,"61805":61806,"61806":61807,"61807":61808,"61808":61809,"61809":61810,"61810":61811,"61811":61812,"61812":61813,"61813":61814,"61814":61815,"61815":61816,"61816":61817,"61817":61818,"61818":61819,"61819":61820,"61820":61821,"61821":61822,"61822":61823,"61823":61824,"61824":61825,"61825":61826,"61826":61827,"61827":61828,"61828":61829,"61829":61830,"61830":61831,"61831":61832,"61832":61833,"61833":61834,"61834":61835,"61835":61836,"61836":61837,"61837":61838,"61838":61839,"61839":61840,"61840":61841,"61841":61842,"61842":61843,"61843":61844,"61844":61845,"61845":61846,"61846":61847,"61847":61848,"61848":61849,"61849":61850,"61850":61851,"61851":61852,"61852":61853,"61853":61854,"61854":61855,"61855":61856,"61856":61857,"61857":61858,"61858":61859,"61859":61860,"61860":61861,"61861":61862,"61862":61863,"61863":61864,"61864":61865,"61865":61866,"61866":61867,"61867":61868,"61868":61869,"61869":61870,"61870":61871,"61871":61872,"61872":61873,"61873":61874,"61874":61875,"61875":61876,"61876":61877,"61877":61878,"61878":61879,"61879":61880,"61880":61881,"61881":61882,"61882":61883,"61883":61884,"61884":61885,"61885":61886,"61886":61887,"61887":61888,"61888":61889,"61889":61890,"61890":61891,"61891":61892,"61892":61893,"61893":61894,"61894":61895,"61895":61896,"61896":61897,"61897":61898,"61898":61899,"61899":61900,"61900":61901,"61901":61902,"61902":61903,"61903":61904,"61904":61905,"61905":61906,"61906":61907,"61907":61908,"61908":61909,"61909":61910,"61910":61911,"61911":61912,"61912":61913,"61913":61914,"61914":61915,"61915":61916,"61916":61917,"61917":61918,"61918":61919,"61919":61920,"61920":61921,"61921":61922,"61922":61923,"61923":61924,"61924":61925,"61925":61926,"61926":61927,"61927":61928,"61928":61929,"61929":61930,"61930":61931,"61931":61932,"61932":61933,"61933":61934,"61934":61935,"61935":61936,"61936":61937,"61937":61938,"61938":61939,"61939":61940,"61940":61941,"61941":61942,"61942":61943,"61943":61944,"61944":61945,"61945":61946,"61946":61947,"61947":61948,"61948":61949,"61949":61950,"61950":61951,"61951":61952,"61952":61953,"61953":61954,"61954":61955,"61955":61956,"61956":61957,"61957":61958,"61958":61959,"61959":61960,"61960":61961,"61961":61962,"61962":61963,"61963":61964,"61964":61965,"61965":61966,"61966":61967,"61967":61968,"61968":61969,"61969":61970,"61970":61971,"61971":61972,"61972":61973,"61973":61974,"61974":61975,"61975":61976,"61976":61977,"61977":61978,"61978":61979,"61979":61980,"61980":61981,"61981":61982,"61982":61983,"61983":61984,"61984":61985,"61985":61986,"61986":61987,"61987":61988,"61988":61989,"61989":61990,"61990":61991,"61991":61992,"61992":61993,"61993":61994,"61994":61995,"61995":61996,"61996":61997,"61997":61998,"61998":61999,"61999":62000,"62000":62001,"62001":62002,"62002":62003,"62003":62004,"62004":62005,"62005":62006,"62006":62007,"62007":62008,"62008":62009,"62009":62010,"62010":62011,"62011":62012,"62012":62013,"62013":62014,"62014":62015,"62015":62016,"62016":62017,"62017":62018,"62018":62019,"62019":62020,"62020":62021,"62021":62022,"62022":62023,"62023":62024,"62024":62025,"62025":62026,"62026":62027,"62027":62028,"62028":62029,"62029":62030,"62030":62031,"62031":62032,"62032":62033,"62033":62034,"62034":62035,"62035":62036,"62036":62037,"62037":62038,"62038":62039,"62039":62040,"62040":62041,"62041":62042,"62042":62043,"62043":62044,"62044":62045,"62045":62046,"62046":62047,"62047":62048,"62048":62049,"62049":62050,"62050":62051,"62051":62052,"62052":62053,"62053":62054,"62054":62055,"62055":62056,"62056":62057,"62057":62058,"62058":62059,"62059":62060,"62060":62061,"62061":62062,"62062":62063,"62063":62064,"62064":62065,"62065":62066,"62066":62067,"62067":62068,"62068":62069,"62069":62070,"62070":62071,"62071":62072,"62072":62073,"62073":62074,"62074":62075,"62075":62076,"62076":62077,"62077":62078,"62078":62079,"62079":62080,"62080":62081,"62081":62082,"62082":62083,"62083":62084,"62084":62085,"62085":62086,"62086":62087,"62087":62088,"62088":62089,"62089":62090,"62090":62091,"62091":62092,"62092":62093,"62093":62094,"62094":62095,"62095":62096,"62096":62097,"62097":62098,"62098":62099,"62099":62100,"62100":62101,"62101":62102,"62102":62103,"62103":62104,"62104":62105,"62105":62106,"62106":62107,"62107":62108,"62108":62109,"62109":62110,"62110":62111,"62111":62112,"62112":62113,"62113":62114,"62114":62115,"62115":62116,"62116":62117,"62117":62118,"62118":62119,"62119":62120,"62120":62121,"62121":62122,"62122":62123,"62123":62124,"62124":62125,"62125":62126,"62126":62127,"62127":62128,"62128":62129,"62129":62130,"62130":62131,"62131":62132,"62132":62133,"62133":62134,"62134":62135,"62135":62136,"62136":62137,"62137":62138,"62138":62139,"62139":62140,"62140":62141,"62141":62142,"62142":62143,"62143":62144,"62144":62145,"62145":62146,"62146":62147,"62147":62148,"62148":62149,"62149":62150,"62150":62151,"62151":62152,"62152":62153,"62153":62154,"62154":62155,"62155":62156,"62156":62157,"62157":62158,"62158":62159,"62159":62160,"62160":62161,"62161":62162,"62162":62163,"62163":62164,"62164":62165,"62165":62166,"62166":62167,"62167":62168,"62168":62169,"62169":62170,"62170":62171,"62171":62172,"62172":62173,"62173":62174,"62174":62175,"62175":62176,"62176":62177,"62177":62178,"62178":62179,"62179":62180,"62180":62181,"62181":62182,"62182":62183,"62183":62184,"62184":62185,"62185":62186,"62186":62187,"62187":62188,"62188":62189,"62189":62190,"62190":62191,"62191":62192,"62192":62193,"62193":62194,"62194":62195,"62195":62196,"62196":62197,"62197":62198,"62198":62199,"62199":62200,"62200":62201,"62201":62202,"62202":62203,"62203":62204,"62204":62205,"62205":62206,"62206":62207,"62207":62208,"62208":62209,"62209":62210,"62210":62211,"62211":62212,"62212":62213,"62213":62214,"62214":62215,"62215":62216,"62216":62217,"62217":62218,"62218":62219,"62219":62220,"62220":62221,"62221":62222,"62222":62223,"62223":62224,"62224":62225,"62225":62226,"62226":62227,"62227":62228,"62228":62229,"62229":62230,"62230":62231,"62231":62232,"62232":62233,"62233":62234,"62234":62235,"62235":62236,"62236":62237,"62237":62238,"62238":62239,"62239":62240,"62240":62241,"62241":62242,"62242":62243,"62243":62244,"62244":62245,"62245":62246,"62246":62247,"62247":62248,"62248":62249,"62249":62250,"62250":62251,"62251":62252,"62252":62253,"62253":62254,"62254":62255,"62255":62256,"62256":62257,"62257":62258,"62258":62259,"62259":62260,"62260":62261,"62261":62262,"62262":62263,"62263":62264,"62264":62265,"62265":62266,"62266":62267,"62267":62268,"62268":62269,"62269":62270,"62270":62271,"62271":62272,"62272":62273,"62273":62274,"62274":62275,"62275":62276,"62276":62277,"62277":62278,"62278":62279,"62279":62280,"62280":62281,"62281":62282,"62282":62283,"62283":62284,"62284":62285,"62285":62286,"62286":62287,"62287":62288,"62288":62289,"62289":62290,"62290":62291,"62291":62292,"62292":62293,"62293":62294,"62294":62295,"62295":62296,"62296":62297,"62297":62298,"62298":62299,"62299":62300,"62300":62301,"62301":62302,"62302":62303,"62303":62304,"62304":62305,"62305":62306,"62306":62307,"62307":62308,"62308":62309,"62309":62310,"62310":62311,"62311":62312,"62312":62313,"62313":62314,"62314":62315,"62315":62316,"62316":62317,"62317":62318,"62318":62319,"62319":62320,"62320":62321,"62321":62322,"62322":62323,"62323":62324,"62324":62325,"62325":62326,"62326":62327,"62327":62328,"62328":62329,"62329":62330,"62330":62331,"62331":62332,"62332":62333,"62333":62334,"62334":62335,"62335":62336,"62336":62337,"62337":62338,"62338":62339,"62339":62340,"62340":62341,"62341":62342,"62342":62343,"62343":62344,"62344":62345,"62345":62346,"62346":62347,"62347":62348,"62348":62349,"62349":62350,"62350":62351,"62351":62352,"62352":62353,"62353":62354,"62354":62355,"62355":62356,"62356":62357,"62357":62358,"62358":62359,"62359":62360,"62360":62361,"62361":62362,"62362":62363,"62363":62364,"62364":62365,"62365":62366,"62366":62367,"62367":62368,"62368":62369,"62369":62370,"62370":62371,"62371":62372,"62372":62373,"62373":62374,"62374":62375,"62375":62376,"62376":62377,"62377":62378,"62378":62379,"62379":62380,"62380":62381,"62381":62382,"62382":62383,"62383":62384,"62384":62385,"62385":62386,"62386":62387,"62387":62388,"62388":62389,"62389":62390,"62390":62391,"62391":62392,"62392":62393,"62393":62394,"62394":62395,"62395":62396,"62396":62397,"62397":62398,"62398":62399,"62399":62400,"62400":62401,"62401":62402,"62402":62403,"62403":62404,"62404":62405,"62405":62406,"62406":62407,"62407":62408,"62408":62409,"62409":62410,"62410":62411,"62411":62412,"62412":62413,"62413":62414,"62414":62415,"62415":62416,"62416":62417,"62417":62418,"62418":62419,"62419":62420,"62420":62421,"62421":62422,"62422":62423,"62423":62424,"62424":62425,"62425":62426,"62426":62427,"62427":62428,"62428":62429,"62429":62430,"62430":62431,"62431":62432,"62432":62433,"62433":62434,"62434":62435,"62435":62436,"62436":62437,"62437":62438,"62438":62439,"62439":62440,"62440":62441,"62441":62442,"62442":62443,"62443":62444,"62444":62445,"62445":62446,"62446":62447,"62447":62448,"62448":62449,"62449":62450,"62450":62451,"62451":62452,"62452":62453,"62453":62454,"62454":62455,"62455":62456,"62456":62457,"62457":62458,"62458":62459,"62459":62460,"62460":62461,"62461":62462,"62462":62463,"62463":62464,"62464":62465,"62465":62466,"62466":62467,"62467":62468,"62468":62469,"62469":62470,"62470":62471,"62471":62472,"62472":62473,"62473":62474,"62474":62475,"62475":62476,"62476":62477,"62477":62478,"62478":62479,"62479":62480,"62480":62481,"62481":62482,"62482":62483,"62483":62484,"62484":62485,"62485":62486,"62486":62487,"62487":62488,"62488":62489,"62489":62490,"62490":62491,"62491":62492,"62492":62493,"62493":62494,"62494":62495,"62495":62496,"62496":62497,"62497":62498,"62498":62499,"62499":62500,"62500":62501,"62501":62502,"62502":62503,"62503":62504,"62504":62505,"62505":62506,"62506":62507,"62507":62508,"62508":62509,"62509":62510,"62510":62511,"62511":62512,"62512":62513,"62513":62514,"62514":62515,"62515":62516,"62516":62517,"62517":62518,"62518":62519,"62519":62520,"62520":62521,"62521":62522,"62522":62523,"62523":62524,"62524":62525,"62525":62526,"62526":62527,"62527":62528,"62528":62529,"62529":62530,"62530":62531,"62531":62532,"62532":62533,"62533":62534,"62534":62535,"62535":62536,"62536":62537,"62537":62538,"62538":62539,"62539":62540,"62540":62541,"62541":62542,"62542":62543,"62543":62544,"62544":62545,"62545":62546,"62546":62547,"62547":62548,"62548":62549,"62549":62550,"62550":62551,"62551":62552,"62552":62553,"62553":62554,"62554":62555,"62555":62556,"62556":62557,"62557":62558,"62558":62559,"62559":62560,"62560":62561,"62561":62562,"62562":62563,"62563":62564,"62564":62565,"62565":62566,"62566":62567,"62567":62568,"62568":62569,"62569":62570,"62570":62571,"62571":62572,"62572":62573,"62573":62574,"62574":62575,"62575":62576,"62576":62577,"62577":62578,"62578":62579,"62579":62580,"62580":62581,"62581":62582,"62582":62583,"62583":62584,"62584":62585,"62585":62586,"62586":62587,"62587":62588,"62588":62589,"62589":62590,"62590":62591,"62591":62592,"62592":62593,"62593":62594,"62594":62595,"62595":62596,"62596":62597,"62597":62598,"62598":62599,"62599":62600,"62600":62601,"62601":62602,"62602":62603,"62603":62604,"62604":62605,"62605":62606,"62606":62607,"62607":62608,"62608":62609,"62609":62610,"62610":62611,"62611":62612,"62612":62613,"62613":62614,"62614":62615,"62615":62616,"62616":62617,"62617":62618,"62618":62619,"62619":62620,"62620":62621,"62621":62622,"62622":62623,"62623":62624,"62624":62625,"62625":62626,"62626":62627,"62627":62628,"62628":62629,"62629":62630,"62630":62631,"62631":62632,"62632":62633,"62633":62634,"62634":62635,"62635":62636,"62636":62637,"62637":62638,"62638":62639,"62639":62640,"62640":62641,"62641":62642,"62642":62643,"62643":62644,"62644":62645,"62645":62646,"62646":62647,"62647":62648,"62648":62649,"62649":62650,"62650":62651,"62651":62652,"62652":62653,"62653":62654,"62654":62655,"62655":62656,"62656":62657,"62657":62658,"62658":62659,"62659":62660,"62660":62661,"62661":62662,"62662":62663,"62663":62664,"62664":62665,"62665":62666,"62666":62667,"62667":62668,"62668":62669,"62669":62670,"62670":62671,"62671":62672,"62672":62673,"62673":62674,"62674":62675,"62675":62676,"62676":62677,"62677":62678,"62678":62679,"62679":62680,"62680":62681,"62681":62682,"62682":62683,"62683":62684,"62684":62685,"62685":62686,"62686":62687,"62687":62688,"62688":62689,"62689":62690,"62690":62691,"62691":62692,"62692":62693,"62693":62694,"62694":62695,"62695":62696,"62696":62697,"62697":62698,"62698":62699,"62699":62700,"62700":62701,"62701":62702,"62702":62703,"62703":62704,"62704":62705,"62705":62706,"62706":62707,"62707":62708,"62708":62709,"62709":62710,"62710":62711,"62711":62712,"62712":62713,"62713":62714,"62714":62715,"62715":62716,"62716":62717,"62717":62718,"62718":62719,"62719":62720,"62720":62721,"62721":62722,"62722":62723,"62723":62724,"62724":62725,"62725":62726,"62726":62727,"62727":62728,"62728":62729,"62729":62730,"62730":62731,"62731":62732,"62732":62733,"62733":62734,"62734":62735,"62735":62736,"62736":62737,"62737":62738,"62738":62739,"62739":62740,"62740":62741,"62741":62742,"62742":62743,"62743":62744,"62744":62745,"62745":62746,"62746":62747,"62747":62748,"62748":62749,"62749":62750,"62750":62751,"62751":62752,"62752":62753,"62753":62754,"62754":62755,"62755":62756,"62756":62757,"62757":62758,"62758":62759,"62759":62760,"62760":62761,"62761":62762,"62762":62763,"62763":62764,"62764":62765,"62765":62766,"62766":62767,"62767":62768,"62768":62769,"62769":62770,"62770":62771,"62771":62772,"62772":62773,"62773":62774,"62774":62775,"62775":62776,"62776":62777,"62777":62778,"62778":62779,"62779":62780,"62780":62781,"62781":62782,"62782":62783,"62783":62784,"62784":62785,"62785":62786,"62786":62787,"62787":62788,"62788":62789,"62789":62790,"62790":62791,"62791":62792,"62792":62793,"62793":62794,"62794":62795,"62795":62796,"62796":62797,"62797":62798,"62798":62799,"62799":62800,"62800":62801,"62801":62802,"62802":62803,"62803":62804,"62804":62805,"62805":62806,"62806":62807,"62807":62808,"62808":62809,"62809":62810,"62810":62811,"62811":62812,"62812":62813,"62813":62814,"62814":62815,"62815":62816,"62816":62817,"62817":62818,"62818":62819,"62819":62820,"62820":62821,"62821":62822,"62822":62823,"62823":62824,"62824":62825,"62825":62826,"62826":62827,"62827":62828,"62828":62829,"62829":62830,"62830":62831,"62831":62832,"62832":62833,"62833":62834,"62834":62835,"62835":62836,"62836":62837,"62837":62838,"62838":62839,"62839":62840,"62840":62841,"62841":62842,"62842":62843,"62843":62844,"62844":62845,"62845":62846,"62846":62847,"62847":62848,"62848":62849,"62849":62850,"62850":62851,"62851":62852,"62852":62853,"62853":62854,"62854":62855,"62855":62856,"62856":62857,"62857":62858,"62858":62859,"62859":62860,"62860":62861,"62861":62862,"62862":62863,"62863":62864,"62864":62865,"62865":62866,"62866":62867,"62867":62868,"62868":62869,"62869":62870,"62870":62871,"62871":62872,"62872":62873,"62873":62874,"62874":62875,"62875":62876,"62876":62877,"62877":62878,"62878":62879,"62879":62880,"62880":62881,"62881":62882,"62882":62883,"62883":62884,"62884":62885,"62885":62886,"62886":62887,"62887":62888,"62888":62889,"62889":62890,"62890":62891,"62891":62892,"62892":62893,"62893":62894,"62894":62895,"62895":62896,"62896":62897,"62897":62898,"62898":62899,"62899":62900,"62900":62901,"62901":62902,"62902":62903,"62903":62904,"62904":62905,"62905":62906,"62906":62907,"62907":62908,"62908":62909,"62909":62910,"62910":62911,"62911":62912,"62912":62913,"62913":62914,"62914":62915,"62915":62916,"62916":62917,"62917":62918,"62918":62919,"62919":62920,"62920":62921,"62921":62922,"62922":62923,"62923":62924,"62924":62925,"62925":62926,"62926":62927,"62927":62928,"62928":62929,"62929":62930,"62930":62931,"62931":62932,"62932":62933,"62933":62934,"62934":62935,"62935":62936,"62936":62937,"62937":62938,"62938":62939,"62939":62940,"62940":62941,"62941":62942,"62942":62943,"62943":62944,"62944":62945,"62945":62946,"62946":62947,"62947":62948,"62948":62949,"62949":62950,"62950":62951,"62951":62952,"62952":62953,"62953":62954,"62954":62955,"62955":62956,"62956":62957,"62957":62958,"62958":62959,"62959":62960,"62960":62961,"62961":62962,"62962":62963,"62963":62964,"62964":62965,"62965":62966,"62966":62967,"62967":62968,"62968":62969,"62969":62970,"62970":62971,"62971":62972,"62972":62973,"62973":62974,"62974":62975,"62975":62976,"62976":62977,"62977":62978,"62978":62979,"62979":62980,"62980":62981,"62981":62982,"62982":62983,"62983":62984,"62984":62985,"62985":62986,"62986":62987,"62987":62988,"62988":62989,"62989":62990,"62990":62991,"62991":62992,"62992":62993,"62993":62994,"62994":62995,"62995":62996,"62996":62997,"62997":62998,"62998":62999,"62999":63000,"63000":63001,"63001":63002,"63002":63003,"63003":63004,"63004":63005,"63005":63006,"63006":63007,"63007":63008,"63008":63009,"63009":63010,"63010":63011,"63011":63012,"63012":63013,"63013":63014,"63014":63015,"63015":63016,"63016":63017,"63017":63018,"63018":63019,"63019":63020,"63020":63021,"63021":63022,"63022":63023,"63023":63024,"63024":63025,"63025":63026,"63026":63027,"63027":63028,"63028":63029,"63029":63030,"63030":63031,"63031":63032,"63032":63033,"63033":63034,"63034":63035,"63035":63036,"63036":63037,"63037":63038,"63038":63039,"63039":63040,"63040":63041,"63041":63042,"63042":63043,"63043":63044,"63044":63045,"63045":63046,"63046":63047,"63047":63048,"63048":63049,"63049":63050,"63050":63051,"63051":63052,"63052":63053,"63053":63054,"63054":63055,"63055":63056,"63056":63057,"63057":63058,"63058":63059,"63059":63060,"63060":63061,"63061":63062,"63062":63063,"63063":63064,"63064":63065,"63065":63066,"63066":63067,"63067":63068,"63068":63069,"63069":63070,"63070":63071,"63071":63072,"63072":63073,"63073":63074,"63074":63075,"63075":63076,"63076":63077,"63077":63078,"63078":63079,"63079":63080,"63080":63081,"63081":63082,"63082":63083,"63083":63084,"63084":63085,"63085":63086,"63086":63087,"63087":63088,"63088":63089,"63089":63090,"63090":63091,"63091":63092,"63092":63093,"63093":63094,"63094":63095,"63095":63096,"63096":63097,"63097":63098,"63098":63099,"63099":63100,"63100":63101,"63101":63102,"63102":63103,"63103":63104,"63104":63105,"63105":63106,"63106":63107,"63107":63108,"63108":63109,"63109":63110,"63110":63111,"63111":63112,"63112":63113,"63113":63114,"63114":63115,"63115":63116,"63116":63117,"63117":63118,"63118":63119,"63119":63120,"63120":63121,"63121":63122,"63122":63123,"63123":63124,"63124":63125,"63125":63126,"63126":63127,"63127":63128,"63128":63129,"63129":63130,"63130":63131,"63131":63132,"63132":63133,"63133":63134,"63134":63135,"63135":63136,"63136":63137,"63137":63138,"63138":63139,"63139":63140,"63140":63141,"63141":63142,"63142":63143,"63143":63144,"63144":63145,"63145":63146,"63146":63147,"63147":63148,"63148":63149,"63149":63150,"63150":63151,"63151":63152,"63152":63153,"63153":63154,"63154":63155,"63155":63156,"63156":63157,"63157":63158,"63158":63159,"63159":63160,"63160":63161,"63161":63162,"63162":63163,"63163":63164,"63164":63165,"63165":63166,"63166":63167,"63167":63168,"63168":63169,"63169":63170,"63170":63171,"63171":63172,"63172":63173,"63173":63174,"63174":63175,"63175":63176,"63176":63177,"63177":63178,"63178":63179,"63179":63180,"63180":63181,"63181":63182,"63182":63183,"63183":63184,"63184":63185,"63185":63186,"63186":63187,"63187":63188,"63188":63189,"63189":63190,"63190":63191,"63191":63192,"63192":63193,"63193":63194,"63194":63195,"63195":63196,"63196":63197,"63197":63198,"63198":63199,"63199":63200,"63200":63201,"63201":63202,"63202":63203,"63203":63204,"63204":63205,"63205":63206,"63206":63207,"63207":63208,"63208":63209,"63209":63210,"63210":63211,"63211":63212,"63212":63213,"63213":63214,"63214":63215,"63215":63216,"63216":63217,"63217":63218,"63218":63219,"63219":63220,"63220":63221,"63221":63222,"63222":63223,"63223":63224,"63224":63225,"63225":63226,"63226":63227,"63227":63228,"63228":63229,"63229":63230,"63230":63231,"63231":63232,"63232":63233,"63233":63234,"63234":63235,"63235":63236,"63236":63237,"63237":63238,"63238":63239,"63239":63240,"63240":63241,"63241":63242,"63242":63243,"63243":63244,"63244":63245,"63245":63246,"63246":63247,"63247":63248,"63248":63249,"63249":63250,"63250":63251,"63251":63252,"63252":63253,"63253":63254,"63254":63255,"63255":63256,"63256":63257,"63257":63258,"63258":63259,"63259":63260,"63260":63261,"63261":63262,"63262":63263,"63263":63264,"63264":63265,"63265":63266,"63266":63267,"63267":63268,"63268":63269,"63269":63270,"63270":63271,"63271":63272,"63272":63273,"63273":63274,"63274":63275,"63275":63276,"63276":63277,"63277":63278,"63278":63279,"63279":63280,"63280":63281,"63281":63282,"63282":63283,"63283":63284,"63284":63285,"63285":63286,"63286":63287,"63287":63288,"63288":63289,"63289":63290,"63290":63291,"63291":63292,"63292":63293,"63293":63294,"63294":63295,"63295":63296,"63296":63297,"63297":63298,"63298":63299,"63299":63300,"63300":63301,"63301":63302,"63302":63303,"63303":63304,"63304":63305,"63305":63306,"63306":63307,"63307":63308,"63308":63309,"63309":63310,"63310":63311,"63311":63312,"63312":63313,"63313":63314,"63314":63315,"63315":63316,"63316":63317,"63317":63318,"63318":63319,"63319":63320,"63320":63321,"63321":63322,"63322":63323,"63323":63324,"63324":63325,"63325":63326,"63326":63327,"63327":63328,"63328":63329,"63329":63330,"63330":63331,"63331":63332,"63332":63333,"63333":63334,"63334":63335,"63335":63336,"63336":63337,"63337":63338,"63338":63339,"63339":63340,"63340":63341,"63341":63342,"63342":63343,"63343":63344,"63344":63345,"63345":63346,"63346":63347,"63347":63348,"63348":63349,"63349":63350,"63350":63351,"63351":63352,"63352":63353,"63353":63354,"63354":63355,"63355":63356,"63356":63357,"63357":63358,"63358":63359,"63359":63360,"63360":63361,"63361":63362,"63362":63363,"63363":63364,"63364":63365,"63365":63366,"63366":63367,"63367":63368,"63368":63369,"63369":63370,"63370":63371,"63371":63372,"63372":63373,"63373":63374,"63374":63375,"63375":63376,"63376":63377,"63377":63378,"63378":63379,"63379":63380,"63380":63381,"63381":63382,"63382":63383,"63383":63384,"63384":63385,"63385":63386,"63386":63387,"63387":63388,"63388":63389,"63389":63390,"63390":63391,"63391":63392,"63392":63393,"63393":63394,"63394":63395,"63395":63396,"63396":63397,"63397":63398,"63398":63399,"63399":63400,"63400":63401,"63401":63402,"63402":63403,"63403":63404,"63404":63405,"63405":63406,"63406":63407,"63407":63408,"63408":63409,"63409":63410,"63410":63411,"63411":63412,"63412":63413,"63413":63414,"63414":63415,"63415":63416,"63416":63417,"63417":63418,"63418":63419,"63419":63420,"63420":63421,"63421":63422,"63422":63423,"63423":63424,"63424":63425,"63425":63426,"63426":63427,"63427":63428,"63428":63429,"63429":63430,"63430":63431,"63431":63432,"63432":63433,"63433":63434,"63434":63435,"63435":63436,"63436":63437,"63437":63438,"63438":63439,"63439":63440,"63440":63441,"63441":63442,"63442":63443,"63443":63444,"63444":63445,"63445":63446,"63446":63447,"63447":63448,"63448":63449,"63449":63450,"63450":63451,"63451":63452,"63452":63453,"63453":63454,"63454":63455,"63455":63456,"63456":63457,"63457":63458,"63458":63459,"63459":63460,"63460":63461,"63461":63462,"63462":63463,"63463":63464,"63464":63465,"63465":63466,"63466":63467,"63467":63468,"63468":63469,"63469":63470,"63470":63471,"63471":63472,"63472":63473,"63473":63474,"63474":63475,"63475":63476,"63476":63477,"63477":63478,"63478":63479,"63479":63480,"63480":63481,"63481":63482,"63482":63483,"63483":63484,"63484":63485,"63485":63486,"63486":63487,"63487":63488,"63488":63489,"63489":63490,"63490":63491,"63491":63492,"63492":63493,"63493":63494,"63494":63495,"63495":63496,"63496":63497,"63497":63498,"63498":63499,"63499":63500,"63500":63501,"63501":63502,"63502":63503,"63503":63504,"63504":63505,"63505":63506,"63506":63507,"63507":63508,"63508":63509,"63509":63510,"63510":63511,"63511":63512,"63512":63513,"63513":63514,"63514":63515,"63515":63516,"63516":63517,"63517":63518,"63518":63519,"63519":63520,"63520":63521,"63521":63522,"63522":63523,"63523":63524,"63524":63525,"63525":63526,"63526":63527,"63527":63528,"63528":63529,"63529":63530,"63530":63531,"63531":63532,"63532":63533,"63533":63534,"63534":63535,"63535":63536,"63536":63537,"63537":63538,"63538":63539,"63539":63540,"63540":63541,"63541":63542,"63542":63543,"63543":63544,"63544":63545,"63545":63546,"63546":63547,"63547":63548,"63548":63549,"63549":63550,"63550":63551,"63551":63552,"63552":63553,"63553":63554,"63554":63555,"63555":63556,"63556":63557,"63557":63558,"63558":63559,"63559":63560,"63560":63561,"63561":63562,"63562":63563,"63563":63564,"63564":63565,"63565":63566,"63566":63567,"63567":63568,"63568":63569,"63569":63570,"63570":63571,"63571":63572,"63572":63573,"63573":63574,"63574":63575,"63575":63576,"63576":63577,"63577":63578,"63578":63579,"63579":63580,"63580":63581,"63581":63582,"63582":63583,"63583":63584,"63584":63585,"63585":63586,"63586":63587,"63587":63588,"63588":63589,"63589":63590,"63590":63591,"63591":63592,"63592":63593,"63593":63594,"63594":63595,"63595":63596,"63596":63597,"63597":63598,"63598":63599,"63599":63600,"63600":63601,"63601":63602,"63602":63603,"63603":63604,"63604":63605,"63605":63606,"63606":63607,"63607":63608,"63608":63609,"63609":63610,"63610":63611,"63611":63612,"63612":63613,"63613":63614,"63614":63615,"63615":63616,"63616":63617,"63617":63618,"63618":63619,"63619":63620,"63620":63621,"63621":63622,"63622":63623,"63623":63624,"63624":63625,"63625":63626,"63626":63627,"63627":63628,"63628":63629,"63629":63630,"63630":63631,"63631":63632,"63632":63633,"63633":63634,"63634":63635,"63635":63636,"63636":63637,"63637":63638,"63638":63639,"63639":63640,"63640":63641,"63641":63642,"63642":63643,"63643":63644,"63644":63645,"63645":63646,"63646":63647,"63647":63648,"63648":63649,"63649":63650,"63650":63651,"63651":63652,"63652":63653,"63653":63654,"63654":63655,"63655":63656,"63656":63657,"63657":63658,"63658":63659,"63659":63660,"63660":63661,"63661":63662,"63662":63663,"63663":63664,"63664":63665,"63665":63666,"63666":63667,"63667":63668,"63668":63669,"63669":63670,"63670":63671,"63671":63672,"63672":63673,"63673":63674,"63674":63675,"63675":63676,"63676":63677,"63677":63678,"63678":63679,"63679":63680,"63680":63681,"63681":63682,"63682":63683,"63683":63684,"63684":63685,"63685":63686,"63686":63687,"63687":63688,"63688":63689,"63689":63690,"63690":63691,"63691":63692,"63692":63693,"63693":63694,"63694":63695,"63695":63696,"63696":63697,"63697":63698,"63698":63699,"63699":63700,"63700":63701,"63701":63702,"63702":63703,"63703":63704,"63704":63705,"63705":63706,"63706":63707,"63707":63708,"63708":63709,"63709":63710,"63710":63711,"63711":63712,"63712":63713,"63713":63714,"63714":63715,"63715":63716,"63716":63717,"63717":63718,"63718":63719,"63719":63720,"63720":63721,"63721":63722,"63722":63723,"63723":63724,"63724":63725,"63725":63726,"63726":63727,"63727":63728,"63728":63729,"63729":63730,"63730":63731,"63731":63732,"63732":63733,"63733":63734,"63734":63735,"63735":63736,"63736":63737,"63737":63738,"63738":63739,"63739":63740,"63740":63741,"63741":63742,"63742":63743,"63743":63744,"63744":63745,"63745":63746,"63746":63747,"63747":63748,"63748":63749,"63749":63750,"63750":63751,"63751":63752,"63752":63753,"63753":63754,"63754":63755,"63755":63756,"63756":63757,"63757":63758,"63758":63759,"63759":63760,"63760":63761,"63761":63762,"63762":63763,"63763":63764,"63764":63765,"63765":63766,"63766":63767,"63767":63768,"63768":63769,"63769":63770,"63770":63771,"63771":63772,"63772":63773,"63773":63774,"63774":63775,"63775":63776,"63776":63777,"63777":63778,"63778":63779,"63779":63780,"63780":63781,"63781":63782,"63782":63783,"63783":63784,"63784":63785,"63785":63786,"63786":63787,"63787":63788,"63788":63789,"63789":63790,"63790":63791,"63791":63792,"63792":63793,"63793":63794,"63794":63795,"63795":63796,"63796":63797,"63797":63798,"63798":63799,"63799":63800,"63800":63801,"63801":63802,"63802":63803,"63803":63804,"63804":63805,"63805":63806,"63806":63807,"63807":63808,"63808":63809,"63809":63810,"63810":63811,"63811":63812,"63812":63813,"63813":63814,"63814":63815,"63815":63816,"63816":63817,"63817":63818,"63818":63819,"63819":63820,"63820":63821,"63821":63822,"63822":63823,"63823":63824,"63824":63825,"63825":63826,"63826":63827,"63827":63828,"63828":63829,"63829":63830,"63830":63831,"63831":63832,"63832":63833,"63833":63834,"63834":63835,"63835":63836,"63836":63837,"63837":63838,"63838":63839,"63839":63840,"63840":63841,"63841":63842,"63842":63843,"63843":63844,"63844":63845,"63845":63846,"63846":63847,"63847":63848,"63848":63849,"63849":63850,"63850":63851,"63851":63852,"63852":63853,"63853":63854,"63854":63855,"63855":63856,"63856":63857,"63857":63858,"63858":63859,"63859":63860,"63860":63861,"63861":63862,"63862":63863,"63863":63864,"63864":63865,"63865":63866,"63866":63867,"63867":63868,"63868":63869,"63869":63870,"63870":63871,"63871":63872,"63872":63873,"63873":63874,"63874":63875,"63875":63876,"63876":63877,"63877":63878,"63878":63879,"63879":63880,"63880":63881,"63881":63882,"63882":63883,"63883":63884,"63884":63885,"63885":63886,"63886":63887,"63887":63888,"63888":63889,"63889":63890,"63890":63891,"63891":63892,"63892":63893,"63893":63894,"63894":63895,"63895":63896,"63896":63897,"63897":63898,"63898":63899,"63899":63900,"63900":63901,"63901":63902,"63902":63903,"63903":63904,"63904":63905,"63905":63906,"63906":63907,"63907":63908,"63908":63909,"63909":63910,"63910":63911,"63911":63912,"63912":63913,"63913":63914,"63914":63915,"63915":63916,"63916":63917,"63917":63918,"63918":63919,"63919":63920,"63920":63921,"63921":63922,"63922":63923,"63923":63924,"63924":63925,"63925":63926,"63926":63927,"63927":63928,"63928":63929,"63929":63930,"63930":63931,"63931":63932,"63932":63933,"63933":63934,"63934":63935,"63935":63936,"63936":63937,"63937":63938,"63938":63939,"63939":63940,"63940":63941,"63941":63942,"63942":63943,"63943":63944,"63944":63945,"63945":63946,"63946":63947,"63947":63948,"63948":63949,"63949":63950,"63950":63951,"63951":63952,"63952":63953,"63953":63954,"63954":63955,"63955":63956,"63956":63957,"63957":63958,"63958":63959,"63959":63960,"63960":63961,"63961":63962,"63962":63963,"63963":63964,"63964":63965,"63965":63966,"63966":63967,"63967":63968,"63968":63969,"63969":63970,"63970":63971,"63971":63972,"63972":63973,"63973":63974,"63974":63975,"63975":63976,"63976":63977,"63977":63978,"63978":63979,"63979":63980,"63980":63981,"63981":63982,"63982":63983,"63983":63984,"63984":63985,"63985":63986,"63986":63987,"63987":63988,"63988":63989,"63989":63990,"63990":63991,"63991":63992,"63992":63993,"63993":63994,"63994":63995,"63995":63996,"63996":63997,"63997":63998,"63998":63999,"63999":64000,"64000":64001,"64001":64002,"64002":64003,"64003":64004,"64004":64005,"64005":64006,"64006":64007,"64007":64008,"64008":64009,"64009":64010,"64010":64011,"64011":64012,"64012":64013,"64013":64014,"64014":64015,"64015":64016,"64016":64017,"64017":64018,"64018":64019,"64019":64020,"64020":64021,"64021":64022,"64022":64023,"64023":64024,"64024":64025,"64025":64026,"64026":64027,"64027":64028,"64028":64029,"64029":64030,"64030":64031,"64031":64032,"64032":64033,"64033":64034,"64034":64035,"64035":64036,"64036":64037,"64037":64038,"64038":64039,"64039":64040,"64040":64041,"64041":64042,"64042":64043,"64043":64044,"64044":64045,"64045":64046,"64046":64047,"64047":64048,"64048":64049,"64049":64050,"64050":64051,"64051":64052,"64052":64053,"64053":64054,"64054":64055,"64055":64056,"64056":64057,"64057":64058,"64058":64059,"64059":64060,"64060":64061,"64061":64062,"64062":64063,"64063":64064,"64064":64065,"64065":64066,"64066":64067,"64067":64068,"64068":64069,"64069":64070,"64070":64071,"64071":64072,"64072":64073,"64073":64074,"64074":64075,"64075":64076,"64076":64077,"64077":64078,"64078":64079,"64079":64080,"64080":64081,"64081":64082,"64082":64083,"64083":64084,"64084":64085,"64085":64086,"64086":64087,"64087":64088,"64088":64089,"64089":64090,"64090":64091,"64091":64092,"64092":64093,"64093":64094,"64094":64095,"64095":64096,"64096":64097,"64097":64098,"64098":64099,"64099":64100,"64100":64101,"64101":64102,"64102":64103,"64103":64104,"64104":64105,"64105":64106,"64106":64107,"64107":64108,"64108":64109,"64109":64110,"64110":64111,"64111":64112,"64112":64113,"64113":64114,"64114":64115,"64115":64116,"64116":64117,"64117":64118,"64118":64119,"64119":64120,"64120":64121,"64121":64122,"64122":64123,"64123":64124,"64124":64125,"64125":64126,"64126":64127,"64127":64128,"64128":64129,"64129":64130,"64130":64131,"64131":64132,"64132":64133,"64133":64134,"64134":64135,"64135":64136,"64136":64137,"64137":64138,"64138":64139,"64139":64140,"64140":64141,"64141":64142,"64142":64143,"64143":64144,"64144":64145,"64145":64146,"64146":64147,"64147":64148,"64148":64149,"64149":64150,"64150":64151,"64151":64152,"64152":64153,"64153":64154,"64154":64155,"64155":64156,"64156":64157,"64157":64158,"64158":64159,"64159":64160,"64160":64161,"64161":64162,"64162":64163,"64163":64164,"64164":64165,"64165":64166,"64166":64167,"64167":64168,"64168":64169,"64169":64170,"64170":64171,"64171":64172,"64172":64173,"64173":64174,"64174":64175,"64175":64176,"64176":64177,"64177":64178,"64178":64179,"64179":64180,"64180":64181,"64181":64182,"64182":64183,"64183":64184,"64184":64185,"64185":64186,"64186":64187,"64187":64188,"64188":64189,"64189":64190,"64190":64191,"64191":64192,"64192":64193,"64193":64194,"64194":64195,"64195":64196,"64196":64197,"64197":64198,"64198":64199,"64199":64200,"64200":64201,"64201":64202,"64202":64203,"64203":64204,"64204":64205,"64205":64206,"64206":64207,"64207":64208,"64208":64209,"64209":64210,"64210":64211,"64211":64212,"64212":64213,"64213":64214,"64214":64215,"64215":64216,"64216":64217,"64217":64218,"64218":64219,"64219":64220,"64220":64221,"64221":64222,"64222":64223,"64223":64224,"64224":64225,"64225":64226,"64226":64227,"64227":64228,"64228":64229,"64229":64230,"64230":64231,"64231":64232,"64232":64233,"64233":64234,"64234":64235,"64235":64236,"64236":64237,"64237":64238,"64238":64239,"64239":64240,"64240":64241,"64241":64242,"64242":64243,"64243":64244,"64244":64245,"64245":64246,"64246":64247,"64247":64248,"64248":64249,"64249":64250,"64250":64251,"64251":64252,"64252":64253,"64253":64254,"64254":64255,"64255":64256,"64256":64257,"64257":64258,"64258":64259,"64259":64260,"64260":64261,"64261":64262,"64262":64263,"64263":64264,"64264":64265,"64265":64266,"64266":64267,"64267":64268,"64268":64269,"64269":64270,"64270":64271,"64271":64272,"64272":64273,"64273":64274,"64274":64275,"64275":64276,"64276":64277,"64277":64278,"64278":64279,"64279":64280,"64280":64281,"64281":64282,"64282":64283,"64283":64284,"64284":64285,"64285":64286,"64286":64287,"64287":64288,"64288":64289,"64289":64290,"64290":64291,"64291":64292,"64292":64293,"64293":64294,"64294":64295,"64295":64296,"64296":64297,"64297":64298,"64298":64299,"64299":64300,"64300":64301,"64301":64302,"64302":64303,"64303":64304,"64304":64305,"64305":64306,"64306":64307,"64307":64308,"64308":64309,"64309":64310,"64310":64311,"64311":64312,"64312":64313,"64313":64314,"64314":64315,"64315":64316,"64316":64317,"64317":64318,"64318":64319,"64319":64320,"64320":64321,"64321":64322,"64322":64323,"64323":64324,"64324":64325,"64325":64326,"64326":64327,"64327":64328,"64328":64329,"64329":64330,"64330":64331,"64331":64332,"64332":64333,"64333":64334,"64334":64335,"64335":64336,"64336":64337,"64337":64338,"64338":64339,"64339":64340,"64340":64341,"64341":64342,"64342":64343,"64343":64344,"64344":64345,"64345":64346,"64346":64347,"64347":64348,"64348":64349,"64349":64350,"64350":64351,"64351":64352,"64352":64353,"64353":64354,"64354":64355,"64355":64356,"64356":64357,"64357":64358,"64358":64359,"64359":64360,"64360":64361,"64361":64362,"64362":64363,"64363":64364,"64364":64365,"64365":64366,"64366":64367,"64367":64368,"64368":64369,"64369":64370,"64370":64371,"64371":64372,"64372":64373,"64373":64374,"64374":64375,"64375":64376,"64376":64377,"64377":64378,"64378":64379,"64379":64380,"64380":64381,"64381":64382,"64382":64383,"64383":64384,"64384":64385,"64385":64386,"64386":64387,"64387":64388,"64388":64389,"64389":64390,"64390":64391,"64391":64392,"64392":64393,"64393":64394,"64394":64395,"64395":64396,"64396":64397,"64397":64398,"64398":64399,"64399":64400,"64400":64401,"64401":64402,"64402":64403,"64403":64404,"64404":64405,"64405":64406,"64406":64407,"64407":64408,"64408":64409,"64409":64410,"64410":64411,"64411":64412,"64412":64413,"64413":64414,"64414":64415,"64415":64416,"64416":64417,"64417":64418,"64418":64419,"64419":64420,"64420":64421,"64421":64422,"64422":64423,"64423":64424,"64424":64425,"64425":64426,"64426":64427,"64427":64428,"64428":64429,"64429":64430,"64430":64431,"64431":64432,"64432":64433,"64433":64434,"64434":64435,"64435":64436,"64436":64437,"64437":64438,"64438":64439,"64439":64440,"64440":64441,"64441":64442,"64442":64443,"64443":64444,"64444":64445,"64445":64446,"64446":64447,"64447":64448,"64448":64449,"64449":64450,"64450":64451,"64451":64452,"64452":64453,"64453":64454,"64454":64455,"64455":64456,"64456":64457,"64457":64458,"64458":64459,"64459":64460,"64460":64461,"64461":64462,"64462":64463,"64463":64464,"64464":64465,"64465":64466,"64466":64467,"64467":64468,"64468":64469,"64469":64470,"64470":64471,"64471":64472,"64472":64473,"64473":64474,"64474":64475,"64475":64476,"64476":64477,"64477":64478,"64478":64479,"64479":64480,"64480":64481,"64481":64482,"64482":64483,"64483":64484,"64484":64485,"64485":64486,"64486":64487,"64487":64488,"64488":64489,"64489":64490,"64490":64491,"64491":64492,"64492":64493,"64493":64494,"64494":64495,"64495":64496,"64496":64497,"64497":64498,"64498":64499,"64499":64500,"64500":64501,"64501":64502,"64502":64503,"64503":64504,"64504":64505,"64505":64506,"64506":64507,"64507":64508,"64508":64509,"64509":64510,"64510":64511,"64511":64512,"64512":64513,"64513":64514,"64514":64515,"64515":64516,"64516":64517,"64517":64518,"64518":64519,"64519":64520,"64520":64521,"64521":64522,"64522":64523,"64523":64524,"64524":64525,"64525":64526,"64526":64527,"64527":64528,"64528":64529,"64529":64530,"64530":64531,"64531":64532,"64532":64533,"64533":64534,"64534":64535,"64535":64536,"64536":64537,"64537":64538,"64538":64539,"64539":64540,"64540":64541,"64541":64542,"64542":64543,"64543":64544,"64544":64545,"64545":64546,"64546":64547,"64547":64548,"64548":64549,"64549":64550,"64550":64551,"64551":64552,"64552":64553,"64553":64554,"64554":64555,"64555":64556,"64556":64557,"64557":64558,"64558":64559,"64559":64560,"64560":64561,"64561":64562,"64562":64563,"64563":64564,"64564":64565,"64565":64566,"64566":64567,"64567":64568,"64568":64569,"64569":64570,"64570":64571,"64571":64572,"64572":64573,"64573":64574,"64574":64575,"64575":64576,"64576":64577,"64577":64578,"64578":64579,"64579":64580,"64580":64581,"64581":64582,"64582":64583,"64583":64584,"64584":64585,"64585":64586,"64586":64587,"64587":64588,"64588":64589,"64589":64590,"64590":64591,"64591":64592,"64592":64593,"64593":64594,"64594":64595,"64595":64596,"64596":64597,"64597":64598,"64598":64599,"64599":64600,"64600":64601,"64601":64602,"64602":64603,"64603":64604,"64604":64605,"64605":64606,"64606":64607,"64607":64608,"64608":64609,"64609":64610,"64610":64611,"64611":64612,"64612":64613,"64613":64614,"64614":64615,"64615":64616,"64616":64617,"64617":64618,"64618":64619,"64619":64620,"64620":64621,"64621":64622,"64622":64623,"64623":64624,"64624":64625,"64625":64626,"64626":64627,"64627":64628,"64628":64629,"64629":64630,"64630":64631,"64631":64632,"64632":64633,"64633":64634,"64634":64635,"64635":64636,"64636":64637,"64637":64638,"64638":64639,"64639":64640,"64640":64641,"64641":64642,"64642":64643,"64643":64644,"64644":64645,"64645":64646,"64646":64647,"64647":64648,"64648":64649,"64649":64650,"64650":64651,"64651":64652,"64652":64653,"64653":64654,"64654":64655,"64655":64656,"64656":64657,"64657":64658,"64658":64659,"64659":64660,"64660":64661,"64661":64662,"64662":64663,"64663":64664,"64664":64665,"64665":64666,"64666":64667,"64667":64668,"64668":64669,"64669":64670,"64670":64671,"64671":64672,"64672":64673,"64673":64674,"64674":64675,"64675":64676,"64676":64677,"64677":64678,"64678":64679,"64679":64680,"64680":64681,"64681":64682,"64682":64683,"64683":64684,"64684":64685,"64685":64686,"64686":64687,"64687":64688,"64688":64689,"64689":64690,"64690":64691,"64691":64692,"64692":64693,"64693":64694,"64694":64695,"64695":64696,"64696":64697,"64697":64698,"64698":64699,"64699":64700,"64700":64701,"64701":64702,"64702":64703,"64703":64704,"64704":64705,"64705":64706,"64706":64707,"64707":64708,"64708":64709,"64709":64710,"64710":64711,"64711":64712,"64712":64713,"64713":64714,"64714":64715,"64715":64716,"64716":64717,"64717":64718,"64718":64719,"64719":64720,"64720":64721,"64721":64722,"64722":64723,"64723":64724,"64724":64725,"64725":64726,"64726":64727,"64727":64728,"64728":64729,"64729":64730,"64730":64731,"64731":64732,"64732":64733,"64733":64734,"64734":64735,"64735":64736,"64736":64737,"64737":64738,"64738":64739,"64739":64740,"64740":64741,"64741":64742,"64742":64743,"64743":64744,"64744":64745,"64745":64746,"64746":64747,"64747":64748,"64748":64749,"64749":64750,"64750":64751,"64751":64752,"64752":64753,"64753":64754,"64754":64755,"64755":64756,"64756":64757,"64757":64758,"64758":64759,"64759":64760,"64760":64761,"64761":64762,"64762":64763,"64763":64764,"64764":64765,"64765":64766,"64766":64767,"64767":64768,"64768":64769,"64769":64770,"64770":64771,"64771":64772,"64772":64773,"64773":64774,"64774":64775,"64775":64776,"64776":64777,"64777":64778,"64778":64779,"64779":64780,"64780":64781,"64781":64782,"64782":64783,"64783":64784,"64784":64785,"64785":64786,"64786":64787,"64787":64788,"64788":64789,"64789":64790,"64790":64791,"64791":64792,"64792":64793,"64793":64794,"64794":64795,"64795":64796,"64796":64797,"64797":64798,"64798":64799,"64799":64800,"64800":64801,"64801":64802,"64802":64803,"64803":64804,"64804":64805,"64805":64806,"64806":64807,"64807":64808,"64808":64809,"64809":64810,"64810":64811,"64811":64812,"64812":64813,"64813":64814,"64814":64815,"64815":64816,"64816":64817,"64817":64818,"64818":64819,"64819":64820,"64820":64821,"64821":64822,"64822":64823,"64823":64824,"64824":64825,"64825":64826,"64826":64827,"64827":64828,"64828":64829,"64829":64830,"64830":64831,"64831":64832,"64832":64833,"64833":64834,"64834":64835,"64835":64836,"64836":64837,"64837":64838,"64838":64839,"64839":64840,"64840":64841,"64841":64842,"64842":64843,"64843":64844,"64844":64845,"64845":64846,"64846":64847,"64847":64848,"64848":64849,"64849":64850,"64850":64851,"64851":64852,"64852":64853,"64853":64854,"64854":64855,"64855":64856,"64856":64857,"64857":64858,"64858":64859,"64859":64860,"64860":64861,"64861":64862,"64862":64863,"64863":64864,"64864":64865,"64865":64866,"64866":64867,"64867":64868,"64868":64869,"64869":64870,"64870":64871,"64871":64872,"64872":64873,"64873":64874,"64874":64875,"64875":64876,"64876":64877,"64877":64878,"64878":64879,"64879":64880,"64880":64881,"64881":64882,"64882":64883,"64883":64884,"64884":64885,"64885":64886,"64886":64887,"64887":64888,"64888":64889,"64889":64890,"64890":64891,"64891":64892,"64892":64893,"64893":64894,"64894":64895,"64895":64896,"64896":64897,"64897":64898,"64898":64899,"64899":64900,"64900":64901,"64901":64902,"64902":64903,"64903":64904,"64904":64905,"64905":64906,"64906":64907,"64907":64908,"64908":64909,"64909":64910,"64910":64911,"64911":64912,"64912":64913,"64913":64914,"64914":64915,"64915":64916,"64916":64917,"64917":64918,"64918":64919,"64919":64920,"64920":64921,"64921":64922,"64922":64923,"64923":64924,"64924":64925,"64925":64926,"64926":64927,"64927":64928,"64928":64929,"64929":64930,"64930":64931,"64931":64932,"64932":64933,"64933":64934,"64934":64935,"64935":64936,"64936":64937,"64937":64938,"64938":64939,"64939":64940,"64940":64941,"64941":64942,"64942":64943,"64943":64944,"64944":64945,"64945":64946,"64946":64947,"64947":64948,"64948":64949,"64949":64950,"64950":64951,"64951":64952,"64952":64953,"64953":64954,"64954":64955,"64955":64956,"64956":64957,"64957":64958,"64958":64959,"64959":64960,"64960":64961,"64961":64962,"64962":64963,"64963":64964,"64964":64965,"64965":64966,"64966":64967,"64967":64968,"64968":64969,"64969":64970,"64970":64971,"64971":64972,"64972":64973,"64973":64974,"64974":64975,"64975":64976,"64976":64977,"64977":64978,"64978":64979,"64979":64980,"64980":64981,"64981":64982,"64982":64983,"64983":64984,"64984":64985,"64985":64986,"64986":64987,"64987":64988,"64988":64989,"64989":64990,"64990":64991,"64991":64992,"64992":64993,"64993":64994,"64994":64995,"64995":64996,"64996":64997,"64997":64998,"64998":64999,"64999":65000,"65000":65001,"65001":65002,"65002":65003,"65003":65004,"65004":65005,"65005":65006,"65006":65007,"65007":65008,"65008":65009,"65009":65010,"65010":65011,"65011":65012,"65012":65013,"65013":65014,"65014":65015,"65015":65016,"65016":65017,"65017":65018,"65018":65019,"65019":65020,"65020":65021,"65021":65022,"65022":65023,"65023":65024,"65024":65025,"65025":65026,"65026":65027,"65027":65028,"65028":65029,"65029":65030,"65030":65031,"65031":65032,"65032":65033,"65033":65034,"65034":65035,"65035":65036,"65036":65037,"65037":65038,"65038":65039,"65039":65040,"65040":65041,"65041":65042,"65042":65043,"65043":65044,"65044":65045,"65045":65046,"65046":65047,"65047":65048,"65048":65049,"65049":65050,"65050":65051,"65051":65052,"65052":65053,"65053":65054,"65054":65055,"65055":65056,"65056":65057,"65057":65058,"65058":65059,"65059":65060,"65060":65061,"65061":65062,"65062":65063,"65063":65064,"65064":65065,"65065":65066,"65066":65067,"65067":65068,"65068":65069,"65069":65070,"65070":65071,"65071":65072,"65072":65073,"65073":65074,"65074":65075,"65075":65076,"65076":65077,"65077":65078,"65078":65079,"65079":65080,"65080":65081,"65081":65082,"65082":65083,"65083":65084,"65084":65085,"65085":65086,"65086":65087,"65087":65088,"65088":65089,"65089":65090,"65090":65091,"65091":65092,"65092":65093,"65093":65094,"65094":65095,"65095":65096,"65096":65097,"65097":65098,"65098":65099,"65099":65100,"65100":65101,"65101":65102,"65102":65103,"65103":65104,"65104":65105,"65105":65106,"65106":65107,"65107":65108,"65108":65109,"65109":65110,"65110":65111,"65111":65112,"65112":65113,"65113":65114,"65114":65115,"65115":65116,"65116":65117,"65117":65118,"65118":65119,"65119":65120,"65120":65121,"65121":65122,"65122":65123,"65123":65124,"65124":65125,"65125":65126,"65126":65127,"65127":65128,"65128":65129,"65129":65130,"65130":65131,"65131":65132,"65132":65133,"65133":65134,"65134":65135,"65135":65136,"65136":65137,"65137":65138,"65138":65139,"65139":65140,"65140":65141,"65141":65142,"65142":65143,"65143":65144,"65144":65145,"65145":65146,"65146":65147,"65147":65148,"65148":65149,"65149":65150,"65150":65151,"65151":65152,"65152":65153,"65153":65154,"65154":65155,"65155":65156,"65156":65157,"65157":65158,"65158":65159,"65159":65160,"65160":65161,"65161":65162,"65162":65163,"65163":65164,"65164":65165,"65165":65166,"65166":65167,"65167":65168,"65168":65169,"65169":65170,"65170":65171,"65171":65172,"65172":65173,"65173":65174,"65174":65175,"65175":65176,"65176":65177,"65177":65178,"65178":65179,"65179":65180,"65180":65181,"65181":65182,"65182":65183,"65183":65184,"65184":65185,"65185":65186,"65186":65187,"65187":65188,"65188":65189,"65189":65190,"65190":65191,"65191":65192,"65192":65193,"65193":65194,"65194":65195,"65195":65196,"65196":65197,"65197":65198,"65198":65199,"65199":65200,"65200":65201,"65201":65202,"65202":65203,"65203":65204,"65204":65205,"65205":65206,"65206":65207,"65207":65208,"65208":65209,"65209":65210,"65210":65211,"65211":65212,"65212":65213,"65213":65214,"65214":65215,"65215":65216,"65216":65217,"65217":65218,"65218":65219,"65219":65220,"65220":65221,"65221":65222,"65222":65223,"65223":65224,"65224":65225,"65225":65226,"65226":65227,"65227":65228,"65228":65229,"65229":65230,"65230":65231,"65231":65232,"65232":65233,"65233":65234,"65234":65235,"65235":65236,"65236":65237,"65237":65238,"65238":65239,"65239":65240,"65240":65241,"65241":65242,"65242":65243,"65243":65244,"65244":65245,"65245":65246,"65246":65247,"65247":65248,"65248":65249,"65249":65250,"65250":65251,"65251":65252,"65252":65253,"65253":65254,"65254":65255,"65255":65256,"65256":65257,"65257":65258,"65258":65259,"65259":65260,"65260":65261,"65261":65262,"65262":65263,"65263":65264,"65264":65265,"65265":65266,"65266":65267,"65267":65268,"65268":65269,"65269":65270,"65270":65271,"65271":65272,"65272":65273,"65273":65274,"65274":65275,"65275":65276,"65276":65277,"65277":65278,"65278":65279,"65279":65280,"65280":65281,"65281":65282,"65282":65283,"65283":65284,"65284":65285,"65285":65286,"65286":65287,"65287":65288,"65288":65289,"65289":65290,"65290":65291,"65291":65292,"65292":65293,"65293":65294,"65294":65295,"65295":65296,"65296":65297,"65297":65298,"65298":65299,"65299":65300,"65300":65301,"65301":65302,"65302":65303,"65303":65304,"65304":65305,"65305":65306,"65306":65307,"65307":65308,"65308":65309,"65309":65310,"65310":65311,"65311":65312,"65312":65313,"65313":65314,"65314":65315,"65315":65316,"65316":65317,"65317":65318,"65318":65319,"65319":65320,"65320":65321,"65321":65322,"65322":65323,"65323":65324,"65324":65325,"65325":65326,"65326":65327,"65327":65328,"65328":65329,"65329":65330,"65330":65331,"65331":65332,"65332":65333,"65333":65334,"65334":65335,"65335":65336,"65336":65337,"65337":65338,"65338":65339,"65339":65340,"65340":65341,"65341":65342,"65342":65343,"65343":65344,"65344":65345,"65345":65346,"65346":65347,"65347":65348,"65348":65349,"65349":65350,"65350":65351,"65351":65352,"65352":65353,"65353":65354,"65354":65355,"65355":65356,"65356":65357,"65357":65358,"65358":65359,"65359":65360,"65360":65361,"65361":65362,"65362":65363,"65363":65364,"65364":65365,"65365":65366,"65366":65367,"65367":65368,"65368":65369,"65369":65370,"65370":65371,"65371":65372,"65372":65373,"65373":65374,"65374":65375,"65375":65376,"65376":65377,"65377":65378,"65378":65379,"65379":65380,"65380":65381,"65381":65382,"65382":65383,"65383":65384,"65384":65385,"65385":65386,"65386":65387,"65387":65388,"65388":65389,"65389":65390,"65390":65391,"65391":65392,"65392":65393,"65393":65394,"65394":65395,"65395":65396,"65396":65397,"65397":65398,"65398":65399,"65399":65400,"65400":65401,"65401":65402,"65402":65403,"65403":65404,"65404":65405,"65405":65406,"65406":65407,"65407":65408,"65408":65409,"65409":65410,"65410":65411,"65411":65412,"65412":65413,"65413":65414,"65414":65415,"65415":65416,"65416":65417,"65417":65418,"65418":65419,"65419":65420,"65420":65421,"65421":65422,"65422":65423,"65423":65424,"65424":65425,"65425":65426,"65426":65427,"65427":65428,"65428":65429,"65429":65430,"65430":65431,"65431":65432,"65432":65433,"65433":65434,"65434":65435,"65435":65436,"65436":65437,"65437":65438,"65438":65439,"65439":65440,"65440":65441,"65441":65442,"65442":65443,"65443":65444,"65444":65445,"65445":65446,"65446":65447,"65447":65448,"65448":65449,"65449":65450,"65450":65451,"65451":65452,"65452":65453,"65453":65454,"65454":65455,"65455":65456,"65456":65457,"65457":65458,"65458":65459,"65459":65460,"65460":65461,"65461":65462,"65462":65463,"65463":65464,"65464":65465,"65465":65466,"65466":65467,"65467":65468,"65468":65469,"65469":65470,"65470":65471,"65471":65472,"65472":65473,"65473":65474,"65474":65475,"65475":65476,"65476":65477,"65477":65478,"65478":65479,"65479":65480,"65480":65481,"65481":65482,"65482":65483,"65483":65484,"65484":65485,"65485":65486,"65486":65487,"65487":65488,"65488":65489,"65489":65490,"65490":65491,"65491":65492,"65492":65493,"65493":65494,"65494":65495,"65495":65496,"65496":65497,"65497":65498,"65498":65499,"65499":65500,"65500":65501,"65501":65502,"65502":65503,"65503":65504,"65504":65505,"65505":65506,"65506":65507,"65507":65508,"65508":65509,"65509":65510,"65510":65511,"65511":65512,"65512":65513,"65513":65514,"65514":65515,"65515":65516,"65516":65517,"65517":65518,"65518":65519,"65519":65520,"65520":65521,"65521":65522,"65522":65523,"65523":65524,"65524":65525,"65525":65526,"65526":65527,"65527":65528,"65528":65529,"65529":65530,"65530":65531,"65531":65532,"65532":65533,"65533":65534,"65534":65535,"65535":65536,"65536":65537,"65537":65538,"65538":65539,"65539":65540,"65540":65541,"65541":65542,"65542":65543,"65543":65544,"65544":65545,"65545":65546,"65546":65547,"65547":65548,"65548":65549,"65549":65550,"65550":65551,"65551":65552,"65552":65553,"65553":65554,"65554":65555,"65555":65556,"65556":65557,"65557":65558,"65558":65559,"65559":65560,"65560":65561,"65561":65562,"65562":65563,"65563":65564,"65564":65565,"65565":65566,"65566":65567,"65567":65568,"65568":65569,"65569":65570,"65570":65571,"65571":65572,"65572":65573,"65573":65574,"65574":65575,"65575":65576,"65576":65577,"65577":65578,"65578":65579,"65579":65580,"65580":65581,"65581":65582,"65582":65583,"65583":65584,"65584":65585,"65585":65586,"65586":65587,"65587":65588,"65588":65589,"65589":65590,"65590":65591,"65591":65592,"65592":65593,"65593":65594,"65594":65595,"65595":65596,"65596":65597,"65597":65598,"65598":65599,"65599":65600,"65600":65601,"65601":65602,"65602":65603,"65603":65604,"65604":65605,"65605":65606,"65606":65607,"65607":65608,"65608":65609,"65609":65610,"65610":65611,"65611":65612,"65612":65613,"65613":65614,"65614":65615,"65615":65616,"65616":65617,"65617":65618,"65618":65619,"65619":65620,"65620":65621,"65621":65622,"65622":65623,"65623":65624,"65624":65625,"65625":65626,"65626":65627,"65627":65628,"65628":65629,"65629":65630,"65630":65631,"65631":65632,"65632":65633,"65633":65634,"65634":65635,"65635":65636,"65636":65637,"65637":65638,"65638":65639,"65639":65640,"65640":65641,"65641":65642,"65642":65643,"65643":65644,"65644":65645,"65645":65646,"65646":65647,"65647":65648,"65648":65649,"65649":65650,"65650":65651,"65651":65652,"65652":65653,"65653":65654,"65654":65655,"65655":65656,"65656":65657,"65657":65658,"65658":65659,"65659":65660,"65660":65661,"65661":65662,"65662":65663,"65663":65664,"65664":65665,"65665":65666,"65666":65667,"65667":65668,"65668":65669,"65669":65670,"65670":65671,"65671":65672,"65672":65673,"65673":65674,"65674":65675,"65675":65676,"65676":65677,"65677":65678,"65678":65679,"65679":65680,"65680":65681,"65681":65682,"65682":65683,"65683":65684,"65684":65685,"65685":65686,"65686":65687,"65687":65688,"65688":65689,"65689":65690,"65690":65691,"65691":65692,"65692":65693,"65693":65694,"65694":65695,"65695":65696,"65696":65697,"65697":65698,"65698":65699,"65699":65700,"65700":65701,"65701":65702,"65702":65703,"65703":65704,"65704":65705,"65705":65706,"65706":65707,"65707":65708,"65708":65709,"65709":65710,"65710":65711,"65711":65712,"65712":65713,"65713":65714,"65714":65715,"65715":65716,"65716":65717,"65717":65718,"65718":65719,"65719":65720,"65720":65721,"65721":65722,"65722":65723,"65723":65724,"65724":65725,"65725":65726,"65726":65727,"65727":65728,"65728":65729,"65729":65730,"65730":65731,"65731":65732,"65732":65733,"65733":65734,"65734":65735,"65735":65736,"65736":65737,"65737":65738,"65738":65739,"65739":65740,"65740":65741,"65741":65742,"65742":65743,"65743":65744,"65744":65745,"65745":65746,"65746":65747,"65747":65748,"65748":65749,"65749":65750,"65750":65751,"65751":65752,"65752":65753,"65753":65754,"65754":65755,"65755":65756,"65756":65757,"65757":65758,"65758":65759,"65759":65760,"65760":65761,"65761":65762,"65762":65763,"65763":65764,"65764":65765,"65765":65766,"65766":65767,"65767":65768,"65768":65769,"65769":65770,"65770":65771,"65771":65772,"65772":65773,"65773":65774,"65774":65775,"65775":65776,"65776":65777,"65777":65778,"65778":65779,"65779":65780,"65780":65781,"65781":65782,"65782":65783,"65783":65784,"65784":65785,"65785":65786,"65786":65787,"65787":65788,"65788":65789,"65789":65790,"65790":65791,"65791":65792,"65792":65793,"65793":65794,"65794":65795,"65795":65796,"65796":65797,"65797":65798,"65798":65799,"65799":65800,"65800":65801,"65801":65802,"65802":65803,"65803":65804,"65804":65805,"65805":65806,"65806":65807,"65807":65808,"65808":65809,"65809":65810,"65810":65811,"65811":65812,"65812":65813,"65813":65814,"65814":65815,"65815":65816,"65816":65817,"65817":65818,"65818":65819,"65819":65820,"65820":65821,"65821":65822,"65822":65823,"65823":65824,"65824":65825,"65825":65826,"65826":65827,"65827":65828,"65828":65829,"65829":65830,"65830":65831,"65831":65832,"65832":65833,"65833":65834,"65834":65835,"65835":65836,"65836":65837,"65837":65838,"65838":65839,"65839":65840,"65840":65841,"65841":65842,"65842":65843,"65843":65844,"65844":65845,"65845":65846,"65846":65847,"65847":65848,"65848":65849,"65849":65850,"65850":65851,"65851":65852,"65852":65853,"65853":65854,"65854":65855,"65855":65856,"65856":65857,"65857":65858,"65858":65859,"65859":65860,"65860":65861,"65861":65862,"65862":65863,"65863":65864,"65864":65865,"65865":65866,"65866":65867,"65867":65868,"65868":65869,"65869":65870,"65870":65871,"65871":65872,"65872":65873,"65873":65874,"65874":65875,"65875":65876,"65876":65877,"65877":65878,"65878":65879,"65879":65880,"65880":65881,"65881":65882,"65882":65883,"65883":65884,"65884":65885,"65885":65886,"65886":65887,"65887":65888,"65888":65889,"65889":65890,"65890":65891,"65891":65892,"65892":65893,"65893":65894,"65894":65895,"65895":65896,"65896":65897,"65897":65898,"65898":65899,"65899":65900,"65900":65901,"65901":65902,"65902":65903,"65903":65904,"65904":65905,"65905":65906,"65906":65907,"65907":65908,"65908":65909,"65909":65910,"65910":65911,"65911":65912,"65912":65913,"65913":65914,"65914":65915,"65915":65916,"65916":65917,"65917":65918,"65918":65919,"65919":65920,"65920":65921,"65921":65922,"65922":65923,"65923":65924,"65924":65925,"65925":65926,"65926":65927,"65927":65928,"65928":65929,"65929":65930,"65930":65931,"65931":65932,"65932":65933,"65933":65934,"65934":65935,"65935":65936,"65936":65937,"65937":65938,"65938":65939,"65939":65940,"65940":65941,"65941":65942,"65942":65943,"65943":65944,"65944":65945,"65945":65946,"65946":65947,"65947":65948,"65948":65949,"65949":65950,"65950":65951,"65951":65952,"65952":65953,"65953":65954,"65954":65955,"65955":65956,"65956":65957,"65957":65958,"65958":65959,"65959":65960,"65960":65961,"65961":65962,"65962":65963,"65963":65964,"65964":65965,"65965":65966,"65966":65967,"65967":65968,"65968":65969,"65969":65970,"65970":65971,"65971":65972,"65972":65973,"65973":65974,"65974":65975,"65975":65976,"65976":65977,"65977":65978,"65978":65979,"65979":65980,"65980":65981,"65981":65982,"65982":65983,"65983":65984,"65984":65985,"65985":65986,"65986":65987,"65987":65988,"65988":65989,"65989":65990,"65990":65991,"65991":65992,"65992":65993,"65993":65994,"65994":65995,"65995":65996,"65996":65997,"65997":65998,"65998":65999,"65999":66000,"66000":66001,"66001":66002,"66002":66003,"66003":66004,"66004":66005,"66005":66006,"66006":66007,"66007":66008,"66008":66009,"66009":66010,"66010":66011,"66011":66012,"66012":66013,"66013":66014,"66014":66015,"66015":66016,"66016":66017,"66017":66018,"66018":66019,"66019":66020,"66020":66021,"66021":66022,"66022":66023,"66023":66024,"66024":66025,"66025":66026,"66026":66027,"66027":66028,"66028":66029,"66029":66030,"66030":66031,"66031":66032,"66032":66033,"66033":66034,"66034":66035,"66035":66036,"66036":66037,"66037":66038,"66038":66039,"66039":66040,"66040":66041,"66041":66042,"66042":66043,"66043":66044,"66044":66045,"66045":66046,"66046":66047,"66047":66048,"66048":66049,"66049":66050,"66050":66051,"66051":66052,"66052":66053,"66053":66054,"66054":66055,"66055":66056,"66056":66057,"66057":66058,"66058":66059,"66059":66060,"66060":66061,"66061":66062,"66062":66063,"66063":66064,"66064":66065,"66065":66066,"66066":66067,"66067":66068,"66068":66069,"66069":66070,"66070":66071,"66071":66072,"66072":66073,"66073":66074,"66074":66075,"66075":66076,"66076":66077,"66077":66078,"66078":66079,"66079":66080,"66080":66081,"66081":66082,"66082":66083,"66083":66084,"66084":66085,"66085":66086,"66086":66087,"66087":66088,"66088":66089,"66089":66090,"66090":66091,"66091":66092,"66092":66093,"66093":66094,"66094":66095,"66095":66096,"66096":66097,"66097":66098,"66098":66099,"66099":66100,"66100":66101,"66101":66102,"66102":66103,"66103":66104,"66104":66105,"66105":66106,"66106":66107,"66107":66108,"66108":66109,"66109":66110,"66110":66111,"66111":66112,"66112":66113,"66113":66114,"66114":66115,"66115":66116,"66116":66117,"66117":66118,"66118":66119,"66119":66120,"66120":66121,"66121":66122,"66122":66123,"66123":66124,"66124":66125,"66125":66126,"66126":66127,"66127":66128,"66128":66129,"66129":66130,"66130":66131,"66131":66132,"66132":66133,"66133":66134,"66134":66135,"66135":66136,"66136":66137,"66137":66138,"66138":66139,"66139":66140,"66140":66141,"66141":66142,"66142":66143,"66143":66144,"66144":66145,"66145":66146,"66146":66147,"66147":66148,"66148":66149,"66149":66150,"66150":66151,"66151":66152,"66152":66153,"66153":66154,"66154":66155,"66155":66156,"66156":66157,"66157":66158,"66158":66159,"66159":66160,"66160":66161,"66161":66162,"66162":66163,"66163":66164,"66164":66165,"66165":66166,"66166":66167,"66167":66168,"66168":66169,"66169":66170,"66170":66171,"66171":66172,"66172":66173,"66173":66174,"66174":66175,"66175":66176,"66176":66177,"66177":66178,"66178":66179,"66179":66180,"66180":66181,"66181":66182,"66182":66183,"66183":66184,"66184":66185,"66185":66186,"66186":66187,"66187":66188,"66188":66189,"66189":66190,"66190":66191,"66191":66192,"66192":66193,"66193":66194,"66194":66195,"66195":66196,"66196":66197,"66197":66198,"66198":66199,"66199":66200,"66200":66201,"66201":66202,"66202":66203,"66203":66204,"66204":66205,"66205":66206,"66206":66207,"66207":66208,"66208":66209,"66209":66210,"66210":66211,"66211":66212,"66212":66213,"66213":66214,"66214":66215,"66215":66216,"66216":66217,"66217":66218,"66218":66219,"66219":66220,"66220":66221,"66221":66222,"66222":66223,"66223":66224,"66224":66225,"66225":66226,"66226":66227,"66227":66228,"66228":66229,"66229":66230,"66230":66231,"66231":66232,"66232":66233,"66233":66234,"66234":66235,"66235":66236,"66236":66237,"66237":66238,"66238":66239,"66239":66240,"66240":66241,"66241":66242,"66242":66243,"66243":66244,"66244":66245,"66245":66246,"66246":66247,"66247":66248,"66248":66249,"66249":66250,"66250":66251,"66251":66252,"66252":66253,"66253":66254,"66254":66255,"66255":66256,"66256":66257,"66257":66258,"66258":66259,"66259":66260,"66260":66261,"66261":66262,"66262":66263,"66263":66264,"66264":66265,"66265":66266,"66266":66267,"66267":66268,"66268":66269,"66269":66270,"66270":66271,"66271":66272,"66272":66273,"66273":66274,"66274":66275,"66275":66276,"66276":66277,"66277":66278,"66278":66279,"66279":66280,"66280":66281,"66281":66282,"66282":66283,"66283":66284,"66284":66285,"66285":66286,"66286":66287,"66287":66288,"66288":66289,"66289":66290,"66290":66291,"66291":66292,"66292":66293,"66293":66294,"66294":66295,"66295":66296,"66296":66297,"66297":66298,"66298":66299,"66299":66300,"66300":66301,"66301":66302,"66302":66303,"66303":66304,"66304":66305,"66305":66306,"66306":66307,"66307":66308,"66308":66309,"66309":66310,"66310":66311,"66311":66312,"66312":66313,"66313":66314,"66314":66315,"66315":66316,"66316":66317,"66317":66318,"66318":66319,"66319":66320,"66320":66321,"66321":66322,"66322":66323,"66323":66324,"66324":66325,"66325":66326,"66326":66327,"66327":66328,"66328":66329,"66329":66330,"66330":66331,"66331":66332,"66332":66333,"66333":66334,"66334":66335,"66335":66336,"66336":66337,"66337":66338,"66338":66339,"66339":66340,"66340":66341,"66341":66342,"66342":66343,"66343":66344,"66344":66345,"66345":66346,"66346":66347,"66347":66348,"66348":66349,"66349":66350,"66350":66351,"66351":66352,"66352":66353,"66353":66354,"66354":66355,"66355":66356,"66356":66357,"66357":66358,"66358":66359,"66359":66360,"66360":66361,"66361":66362,"66362":66363,"66363":66364,"66364":66365,"66365":66366,"66366":66367,"66367":66368,"66368":66369,"66369":66370,"66370":66371,"66371":66372,"66372":66373,"66373":66374,"66374":66375,"66375":66376,"66376":66377,"66377":66378,"66378":66379,"66379":66380,"66380":66381,"66381":66382,"66382":66383,"66383":66384,"66384":66385,"66385":66386,"66386":66387,"66387":66388,"66388":66389,"66389":66390,"66390":66391,"66391":66392,"66392":66393,"66393":66394,"66394":66395,"66395":66396,"66396":66397,"66397":66398,"66398":66399,"66399":66400,"66400":66401,"66401":66402,"66402":66403,"66403":66404,"66404":66405,"66405":66406,"66406":66407,"66407":66408,"66408":66409,"66409":66410,"66410":66411,"66411":66412,"66412":66413,"66413":66414,"66414":66415,"66415":66416,"66416":66417,"66417":66418,"66418":66419,"66419":66420,"66420":66421,"66421":66422,"66422":66423,"66423":66424,"66424":66425,"66425":66426,"66426":66427,"66427":66428,"66428":66429,"66429":66430,"66430":66431,"66431":66432,"66432":66433,"66433":66434,"66434":66435,"66435":66436,"66436":66437,"66437":66438,"66438":66439,"66439":66440,"66440":66441,"66441":66442,"66442":66443,"66443":66444,"66444":66445,"66445":66446,"66446":66447,"66447":66448,"66448":66449,"66449":66450,"66450":66451,"66451":66452,"66452":66453,"66453":66454,"66454":66455,"66455":66456,"66456":66457,"66457":66458,"66458":66459,"66459":66460,"66460":66461,"66461":66462,"66462":66463,"66463":66464,"66464":66465,"66465":66466,"66466":66467,"66467":66468,"66468":66469,"66469":66470,"66470":66471,"66471":66472,"66472":66473,"66473":66474,"66474":66475,"66475":66476,"66476":66477,"66477":66478,"66478":66479,"66479":66480,"66480":66481,"66481":66482,"66482":66483,"66483":66484,"66484":66485,"66485":66486,"66486":66487,"66487":66488,"66488":66489,"66489":66490,"66490":66491,"66491":66492,"66492":66493,"66493":66494,"66494":66495,"66495":66496,"66496":66497,"66497":66498,"66498":66499,"66499":66500,"66500":66501,"66501":66502,"66502":66503,"66503":66504,"66504":66505,"66505":66506,"66506":66507,"66507":66508,"66508":66509,"66509":66510,"66510":66511,"66511":66512,"66512":66513,"66513":66514,"66514":66515,"66515":66516,"66516":66517,"66517":66518,"66518":66519,"66519":66520,"66520":66521,"66521":66522,"66522":66523,"66523":66524,"66524":66525,"66525":66526,"66526":66527,"66527":66528,"66528":66529,"66529":66530,"66530":66531,"66531":66532,"66532":66533,"66533":66534,"66534":66535,"66535":66536,"66536":66537,"66537":66538,"66538":66539,"66539":66540,"66540":66541,"66541":66542,"66542":66543,"66543":66544,"66544":66545,"66545":66546,"66546":66547,"66547":66548,"66548":66549,"66549":66550,"66550":66551,"66551":66552,"66552":66553,"66553":66554,"66554":66555,"66555":66556,"66556":66557,"66557":66558,"66558":66559,"66559":66560,"66560":66561,"66561":66562,"66562":66563,"66563":66564,"66564":66565,"66565":66566,"66566":66567,"66567":66568,"66568":66569,"66569":66570,"66570":66571,"66571":66572,"66572":66573,"66573":66574,"66574":66575,"66575":66576,"66576":66577,"66577":66578,"66578":66579,"66579":66580,"66580":66581,"66581":66582,"66582":66583,"66583":66584,"66584":66585,"66585":66586,"66586":66587,"66587":66588,"66588":66589,"66589":66590,"66590":66591,"66591":66592,"66592":66593,"66593":66594,"66594":66595,"66595":66596,"66596":66597,"66597":66598,"66598":66599,"66599":66600,"66600":66601,"66601":66602,"66602":66603,"66603":66604,"66604":66605,"66605":66606,"66606":66607,"66607":66608,"66608":66609,"66609":66610,"66610":66611,"66611":66612,"66612":66613,"66613":66614,"66614":66615,"66615":66616,"66616":66617,"66617":66618,"66618":66619,"66619":66620,"66620":66621,"66621":66622,"66622":66623,"66623":66624,"66624":66625,"66625":66626,"66626":66627,"66627":66628,"66628":66629,"66629":66630,"66630":66631,"66631":66632,"66632":66633,"66633":66634,"66634":66635,"66635":66636,"66636":66637,"66637":66638,"66638":66639,"66639":66640,"66640":66641,"66641":66642,"66642":66643,"66643":66644,"66644":66645,"66645":66646,"66646":66647,"66647":66648,"66648":66649,"66649":66650,"66650":66651,"66651":66652,"66652":66653,"66653":66654,"66654":66655,"66655":66656,"66656":66657,"66657":66658,"66658":66659,"66659":66660,"66660":66661,"66661":66662,"66662":66663,"66663":66664,"66664":66665,"66665":66666,"66666":66667,"66667":66668,"66668":66669,"66669":66670,"66670":66671,"66671":66672,"66672":66673,"66673":66674,"66674":66675,"66675":66676,"66676":66677,"66677":66678,"66678":66679,"66679":66680,"66680":66681,"66681":66682,"66682":66683,"66683":66684,"66684":66685,"66685":66686,"66686":66687,"66687":66688,"66688":66689,"66689":66690,"66690":66691,"66691":66692,"66692":66693,"66693":66694,"66694":66695,"66695":66696,"66696":66697,"66697":66698,"66698":66699,"66699":66700,"66700":66701,"66701":66702,"66702":66703,"66703":66704,"66704":66705,"66705":66706,"66706":66707,"66707":66708,"66708":66709,"66709":66710,"66710":66711,"66711":66712,"66712":66713,"66713":66714,"66714":66715,"66715":66716,"66716":66717,"66717":66718,"66718":66719,"66719":66720,"66720":66721,"66721":66722,"66722":66723,"66723":66724,"66724":66725,"66725":66726,"66726":66727,"66727":66728,"66728":66729,"66729":66730,"66730":66731,"66731":66732,"66732":66733,"66733":66734,"66734":66735,"66735":66736,"66736":66737,"66737":66738,"66738":66739,"66739":66740,"66740":66741,"66741":66742,"66742":66743,"66743":66744,"66744":66745,"66745":66746,"66746":66747,"66747":66748,"66748":66749,"66749":66750,"66750":66751,"66751":66752,"66752":66753,"66753":66754,"66754":66755,"66755":66756,"66756":66757,"66757":66758,"66758":66759,"66759":66760,"66760":66761,"66761":66762,"66762":66763,"66763":66764,"66764":66765,"66765":66766,"66766":66767,"66767":66768,"66768":66769,"66769":66770,"66770":66771,"66771":66772,"66772":66773,"66773":66774,"66774":66775,"66775":66776,"66776":66777,"66777":66778,"66778":66779,"66779":66780,"66780":66781,"66781":66782,"66782":66783,"66783":66784,"66784":66785,"66785":66786,"66786":66787,"66787":66788,"66788":66789,"66789":66790,"66790":66791,"66791":66792,"66792":66793,"66793":66794,"66794":66795,"66795":66796,"66796":66797,"66797":66798,"66798":66799,"66799":66800,"66800":66801,"66801":66802,"66802":66803,"66803":66804,"66804":66805,"66805":66806,"66806":66807,"66807":66808,"66808":66809,"66809":66810,"66810":66811,"66811":66812,"66812":66813,"66813":66814,"66814":66815,"66815":66816,"66816":66817,"66817":66818,"66818":66819,"66819":66820,"66820":66821,"66821":66822,"66822":66823,"66823":66824,"66824":66825,"66825":66826,"66826":66827,"66827":66828,"66828":66829,"66829":66830,"66830":66831,"66831":66832,"66832":66833,"66833":66834,"66834":66835,"66835":66836,"66836":66837,"66837":66838,"66838":66839,"66839":66840,"66840":66841,"66841":66842,"66842":66843,"66843":66844,"66844":66845,"66845":66846,"66846":66847,"66847":66848,"66848":66849,"66849":66850,"66850":66851,"66851":66852,"66852":66853,"66853":66854,"66854":66855,"66855":66856,"66856":66857,"66857":66858,"66858":66859,"66859":66860,"66860":66861,"66861":66862,"66862":66863,"66863":66864,"66864":66865,"66865":66866,"66866":66867,"66867":66868,"66868":66869,"66869":66870,"66870":66871,"66871":66872,"66872":66873,"66873":66874,"66874":66875,"66875":66876,"66876":66877,"66877":66878,"66878":66879,"66879":66880,"66880":66881,"66881":66882,"66882":66883,"66883":66884,"66884":66885,"66885":66886,"66886":66887,"66887":66888,"66888":66889,"66889":66890,"66890":66891,"66891":66892,"66892":66893,"66893":66894,"66894":66895,"66895":66896,"66896":66897,"66897":66898,"66898":66899,"66899":66900,"66900":66901,"66901":66902,"66902":66903,"66903":66904,"66904":66905,"66905":66906,"66906":66907,"66907":66908,"66908":66909,"66909":66910,"66910":66911,"66911":66912,"66912":66913,"66913":66914,"66914":66915,"66915":66916,"66916":66917,"66917":66918,"66918":66919,"66919":66920,"66920":66921,"66921":66922,"66922":66923,"66923":66924,"66924":66925,"66925":66926,"66926":66927,"66927":66928,"66928":66929,"66929":66930,"66930":66931,"66931":66932,"66932":66933,"66933":66934,"66934":66935,"66935":66936,"66936":66937,"66937":66938,"66938":66939,"66939":66940,"66940":66941,"66941":66942,"66942":66943,"66943":66944,"66944":66945,"66945":66946,"66946":66947,"66947":66948,"66948":66949,"66949":66950,"66950":66951,"66951":66952,"66952":66953,"66953":66954,"66954":66955,"66955":66956,"66956":66957,"66957":66958,"66958":66959,"66959":66960,"66960":66961,"66961":66962,"66962":66963,"66963":66964,"66964":66965,"66965":66966,"66966":66967,"66967":66968,"66968":66969,"66969":66970,"66970":66971,"66971":66972,"66972":66973,"66973":66974,"66974":66975,"66975":66976,"66976":66977,"66977":66978,"66978":66979,"66979":66980,"66980":66981,"66981":66982,"66982":66983,"66983":66984,"66984":66985,"66985":66986,"66986":66987,"66987":66988,"66988":66989,"66989":66990,"66990":66991,"66991":66992,"66992":66993,"66993":66994,"66994":66995,"66995":66996,"66996":66997,"66997":66998,"66998":66999,"66999":67000,"67000":67001,"67001":67002,"67002":67003,"67003":67004,"67004":67005,"67005":67006,"67006":67007,"67007":67008,"67008":67009,"67009":67010,"67010":67011,"67011":67012,"67012":67013,"67013":67014,"67014":67015,"67015":67016,"67016":67017,"67017":67018,"67018":67019,"67019":67020,"67020":67021,"67021":67022,"67022":67023,"67023":67024,"67024":67025,"67025":67026,"67026":67027,"67027":67028,"67028":67029,"67029":67030,"67030":67031,"67031":67032,"67032":67033,"67033":67034,"67034":67035,"67035":67036,"67036":67037,"67037":67038,"67038":67039,"67039":67040,"67040":67041,"67041":67042,"67042":67043,"67043":67044,"67044":67045,"67045":67046,"67046":67047,"67047":67048,"67048":67049,"67049":67050,"67050":67051,"67051":67052,"67052":67053,"67053":67054,"67054":67055,"67055":67056,"67056":67057,"67057":67058,"67058":67059,"67059":67060,"67060":67061,"67061":67062,"67062":67063,"67063":67064,"67064":67065,"67065":67066,"67066":67067,"67067":67068,"67068":67069,"67069":67070,"67070":67071,"67071":67072,"67072":67073,"67073":67074,"67074":67075,"67075":67076,"67076":67077,"67077":67078,"67078":67079,"67079":67080,"67080":67081,"67081":67082,"67082":67083,"67083":67084,"67084":67085,"67085":67086,"67086":67087,"67087":67088,"67088":67089,"67089":67090,"67090":67091,"67091":67092,"67092":67093,"67093":67094,"67094":67095,"67095":67096,"67096":67097,"67097":67098,"67098":67099,"67099":67100,"67100":67101,"67101":67102,"67102":67103,"67103":67104,"67104":67105,"67105":67106,"67106":67107,"67107":67108,"67108":67109,"67109":67110,"67110":67111,"67111":67112,"67112":67113,"67113":67114,"67114":67115,"67115":67116,"67116":67117,"67117":67118,"67118":67119,"67119":67120,"67120":67121,"67121":67122,"67122":67123,"67123":67124,"67124":67125,"67125":67126,"67126":67127,"67127":67128,"67128":67129,"67129":67130,"67130":67131,"67131":67132,"67132":67133,"67133":67134,"67134":67135,"67135":67136,"67136":67137,"67137":67138,"67138":67139,"67139":67140,"67140":67141,"67141":67142,"67142":67143,"67143":67144,"67144":67145,"67145":67146,"67146":67147,"67147":67148,"67148":67149,"67149":67150,"67150":67151,"67151":67152,"67152":67153,"67153":67154,"67154":67155,"67155":67156,"67156":67157,"67157":67158,"67158":67159,"67159":67160,"67160":67161,"67161":67162,"67162":67163,"67163":67164,"67164":67165,"67165":67166,"67166":67167,"67167":67168,"67168":67169,"67169":67170,"67170":67171,"67171":67172,"67172":67173,"67173":67174,"67174":67175,"67175":67176,"67176":67177,"67177":67178,"67178":67179,"67179":67180,"67180":67181,"67181":67182,"67182":67183,"67183":67184,"67184":67185,"67185":67186,"67186":67187,"67187":67188,"67188":67189,"67189":67190,"67190":67191,"67191":67192,"67192":67193,"67193":67194,"67194":67195,"67195":67196,"67196":67197,"67197":67198,"67198":67199,"67199":67200,"67200":67201,"67201":67202,"67202":67203,"67203":67204,"67204":67205,"67205":67206,"67206":67207,"67207":67208,"67208":67209,"67209":67210,"67210":67211,"67211":67212,"67212":67213,"67213":67214,"67214":67215,"67215":67216,"67216":67217,"67217":67218,"67218":67219,"67219":67220,"67220":67221,"67221":67222,"67222":67223,"67223":67224,"67224":67225,"67225":67226,"67226":67227,"67227":67228,"67228":67229,"67229":67230,"67230":67231,"67231":67232,"67232":67233,"67233":67234,"67234":67235,"67235":67236,"67236":67237,"67237":67238,"67238":67239,"67239":67240,"67240":67241,"67241":67242,"67242":67243,"67243":67244,"67244":67245,"67245":67246,"67246":67247,"67247":67248,"67248":67249,"67249":67250,"67250":67251,"67251":67252,"67252":67253,"67253":67254,"67254":67255,"67255":67256,"67256":67257,"67257":67258,"67258":67259,"67259":67260,"67260":67261,"67261":67262,"67262":67263,"67263":67264,"67264":67265,"67265":67266,"67266":67267,"67267":67268,"67268":67269,"67269":67270,"67270":67271,"67271":67272,"67272":67273,"67273":67274,"67274":67275,"67275":67276,"67276":67277,"67277":67278,"67278":67279,"67279":67280,"67280":67281,"67281":67282,"67282":67283,"67283":67284,"67284":67285,"67285":67286,"67286":67287,"67287":67288,"67288":67289,"67289":67290,"67290":67291,"67291":67292,"67292":67293,"67293":67294,"67294":67295,"67295":67296,"67296":67297,"67297":67298,"67298":67299,"67299":67300,"67300":67301,"67301":67302,"67302":67303,"67303":67304,"67304":67305,"67305":67306,"67306":67307,"67307":67308,"67308":67309,"67309":67310,"67310":67311,"67311":67312,"67312":67313,"67313":67314,"67314":67315,"67315":67316,"67316":67317,"67317":67318,"67318":67319,"67319":67320,"67320":67321,"67321":67322,"67322":67323,"67323":67324,"67324":67325,"67325":67326,"67326":67327,"67327":67328,"67328":67329,"67329":67330,"67330":67331,"67331":67332,"67332":67333,"67333":67334,"67334":67335,"67335":67336,"67336":67337,"67337":67338,"67338":67339,"67339":67340,"67340":67341,"67341":67342,"67342":67343,"67343":67344,"67344":67345,"67345":67346,"67346":67347,"67347":67348,"67348":67349,"67349":67350,"67350":67351,"67351":67352,"67352":67353,"67353":67354,"67354":67355,"67355":67356,"67356":67357,"67357":67358,"67358":67359,"67359":67360,"67360":67361,"67361":67362,"67362":67363,"67363":67364,"67364":67365,"67365":67366,"67366":67367,"67367":67368,"67368":67369,"67369":67370,"67370":67371,"67371":67372,"67372":67373,"67373":67374,"67374":67375,"67375":67376,"67376":67377,"67377":67378,"67378":67379,"67379":67380,"67380":67381,"67381":67382,"67382":67383,"67383":67384,"67384":67385,"67385":67386,"67386":67387,"67387":67388,"67388":67389,"67389":67390,"67390":67391,"67391":67392,"67392":67393,"67393":67394,"67394":67395,"67395":67396,"67396":67397,"67397":67398,"67398":67399,"67399":67400,"67400":67401,"67401":67402,"67402":67403,"67403":67404,"67404":67405,"67405":67406,"67406":67407,"67407":67408,"67408":67409,"67409":67410,"67410":67411,"67411":67412,"67412":67413,"67413":67414,"67414":67415,"67415":67416,"67416":67417,"67417":67418,"67418":67419,"67419":67420,"67420":67421,"67421":67422,"67422":67423,"67423":67424,"67424":67425,"67425":67426,"67426":67427,"67427":67428,"67428":67429,"67429":67430,"67430":67431,"67431":67432,"67432":67433,"67433":67434,"67434":67435,"67435":67436,"67436":67437,"67437":67438,"67438":67439,"67439":67440,"67440":67441,"67441":67442,"67442":67443,"67443":67444,"67444":67445,"67445":67446,"67446":67447,"67447":67448,"67448":67449,"67449":67450,"67450":67451,"67451":67452,"67452":67453,"67453":67454,"67454":67455,"67455":67456,"67456":67457,"67457":67458,"67458":67459,"67459":67460,"67460":67461,"67461":67462,"67462":67463,"67463":67464,"67464":67465,"67465":67466,"67466":67467,"67467":67468,"67468":67469,"67469":67470,"67470":67471,"67471":67472,"67472":67473,"67473":67474,"67474":67475,"67475":67476,"67476":67477,"67477":67478,"67478":67479,"67479":67480,"67480":67481,"67481":67482,"67482":67483,"67483":67484,"67484":67485,"67485":67486,"67486":67487,"67487":67488,"67488":67489,"67489":67490,"67490":67491,"67491":67492,"67492":67493,"67493":67494,"67494":67495,"67495":67496,"67496":67497,"67497":67498,"67498":67499,"67499":67500,"67500":67501,"67501":67502,"67502":67503,"67503":67504,"67504":67505,"67505":67506,"67506":67507,"67507":67508,"67508":67509,"67509":67510,"67510":67511,"67511":67512,"67512":67513,"67513":67514,"67514":67515,"67515":67516,"67516":67517,"67517":67518,"67518":67519,"67519":67520,"67520":67521,"67521":67522,"67522":67523,"67523":67524,"67524":67525,"67525":67526,"67526":67527,"67527":67528,"67528":67529,"67529":67530,"67530":67531,"67531":67532,"67532":67533,"67533":67534,"67534":67535,"67535":67536,"67536":67537,"67537":67538,"67538":67539,"67539":67540,"67540":67541,"67541":67542,"67542":67543,"67543":67544,"67544":67545,"67545":67546,"67546":67547,"67547":67548,"67548":67549,"67549":67550,"67550":67551,"67551":67552,"67552":67553,"67553":67554,"67554":67555,"67555":67556,"67556":67557,"67557":67558,"67558":67559,"67559":67560,"67560":67561,"67561":67562,"67562":67563,"67563":67564,"67564":67565,"67565":67566,"67566":67567,"67567":67568,"67568":67569,"67569":67570,"67570":67571,"67571":67572,"67572":67573,"67573":67574,"67574":67575,"67575":67576,"67576":67577,"67577":67578,"67578":67579,"67579":67580,"67580":67581,"67581":67582,"67582":67583,"67583":67584,"67584":67585,"67585":67586,"67586":67587,"67587":67588,"67588":67589,"67589":67590,"67590":67591,"67591":67592,"67592":67593,"67593":67594,"67594":67595,"67595":67596,"67596":67597,"67597":67598,"67598":67599,"67599":67600,"67600":67601,"67601":67602,"67602":67603,"67603":67604,"67604":67605,"67605":67606,"67606":67607,"67607":67608,"67608":67609,"67609":67610,"67610":67611,"67611":67612,"67612":67613,"67613":67614,"67614":67615,"67615":67616,"67616":67617,"67617":67618,"67618":67619,"67619":67620,"67620":67621,"67621":67622,"67622":67623,"67623":67624,"67624":67625,"67625":67626,"67626":67627,"67627":67628,"67628":67629,"67629":67630,"67630":67631,"67631":67632,"67632":67633,"67633":67634,"67634":67635,"67635":67636,"67636":67637,"67637":67638,"67638":67639,"67639":67640,"67640":67641,"67641":67642,"67642":67643,"67643":67644,"67644":67645,"67645":67646,"67646":67647,"67647":67648,"67648":67649,"67649":67650,"67650":67651,"67651":67652,"67652":67653,"67653":67654,"67654":67655,"67655":67656,"67656":67657,"67657":67658,"67658":67659,"67659":67660,"67660":67661,"67661":67662,"67662":67663,"67663":67664,"67664":67665,"67665":67666,"67666":67667,"67667":67668,"67668":67669,"67669":67670,"67670":67671,"67671":67672,"67672":67673,"67673":67674,"67674":67675,"67675":67676,"67676":67677,"67677":67678,"67678":67679,"67679":67680,"67680":67681,"67681":67682,"67682":67683,"67683":67684,"67684":67685,"67685":67686,"67686":67687,"67687":67688,"67688":67689,"67689":67690,"67690":67691,"67691":67692,"67692":67693,"67693":67694,"67694":67695,"67695":67696,"67696":67697,"67697":67698,"67698":67699,"67699":67700,"67700":67701,"67701":67702,"67702":67703,"67703":67704,"67704":67705,"67705":67706,"67706":67707,"67707":67708,"67708":67709,"67709":67710,"67710":67711,"67711":67712,"67712":67713,"67713":67714,"67714":67715,"67715":67716,"67716":67717,"67717":67718,"67718":67719,"67719":67720,"67720":67721,"67721":67722,"67722":67723,"67723":67724,"67724":67725,"67725":67726,"67726":67727,"67727":67728,"67728":67729,"67729":67730,"67730":67731,"67731":67732,"67732":67733,"67733":67734,"67734":67735,"67735":67736,"67736":67737,"67737":67738,"67738":67739,"67739":67740,"67740":67741,"67741":67742,"67742":67743,"67743":67744,"67744":67745,"67745":67746,"67746":67747,"67747":67748,"67748":67749,"67749":67750,"67750":67751,"67751":67752,"67752":67753,"67753":67754,"67754":67755,"67755":67756,"67756":67757,"67757":67758,"67758":67759,"67759":67760,"67760":67761,"67761":67762,"67762":67763,"67763":67764,"67764":67765,"67765":67766,"67766":67767,"67767":67768,"67768":67769,"67769":67770,"67770":67771,"67771":67772,"67772":67773,"67773":67774,"67774":67775,"67775":67776,"67776":67777,"67777":67778,"67778":67779,"67779":67780,"67780":67781,"67781":67782,"67782":67783,"67783":67784,"67784":67785,"67785":67786,"67786":67787,"67787":67788,"67788":67789,"67789":67790,"67790":67791,"67791":67792,"67792":67793,"67793":67794,"67794":67795,"67795":67796,"67796":67797,"67797":67798,"67798":67799,"67799":67800,"67800":67801,"67801":67802,"67802":67803,"67803":67804,"67804":67805,"67805":67806,"67806":67807,"67807":67808,"67808":67809,"67809":67810,"67810":67811,"67811":67812,"67812":67813,"67813":67814,"67814":67815,"67815":67816,"67816":67817,"67817":67818,"67818":67819,"67819":67820,"67820":67821,"67821":67822,"67822":67823,"67823":67824,"67824":67825,"67825":67826,"67826":67827,"67827":67828,"67828":67829,"67829":67830,"67830":67831,"67831":67832,"67832":67833,"67833":67834,"67834":67835,"67835":67836,"67836":67837,"67837":67838,"67838":67839,"67839":67840,"67840":67841,"67841":67842,"67842":67843,"67843":67844,"67844":67845,"67845":67846,"67846":67847,"67847":67848,"67848":67849,"67849":67850,"67850":67851,"67851":67852,"67852":67853,"67853":67854,"67854":67855,"67855":67856,"67856":67857,"67857":67858,"67858":67859,"67859":67860,"67860":67861,"67861":67862,"67862":67863,"67863":67864,"67864":67865,"67865":67866,"67866":67867,"67867":67868,"67868":67869,"67869":67870,"67870":67871,"67871":67872,"67872":67873,"67873":67874,"67874":67875,"67875":67876,"67876":67877,"67877":67878,"67878":67879,"67879":67880,"67880":67881,"67881":67882,"67882":67883,"67883":67884,"67884":67885,"67885":67886,"67886":67887,"67887":67888,"67888":67889,"67889":67890,"67890":67891,"67891":67892,"67892":67893,"67893":67894,"67894":67895,"67895":67896,"67896":67897,"67897":67898,"67898":67899,"67899":67900,"67900":67901,"67901":67902,"67902":67903,"67903":67904,"67904":67905,"67905":67906,"67906":67907,"67907":67908,"67908":67909,"67909":67910,"67910":67911,"67911":67912,"67912":67913,"67913":67914,"67914":67915,"67915":67916,"67916":67917,"67917":67918,"67918":67919,"67919":67920,"67920":67921,"67921":67922,"67922":67923,"67923":67924,"67924":67925,"67925":67926,"67926":67927,"67927":67928,"67928":67929,"67929":67930,"67930":67931,"67931":67932,"67932":67933,"67933":67934,"67934":67935,"67935":67936,"67936":67937,"67937":67938,"67938":67939,"67939":67940,"67940":67941,"67941":67942,"67942":67943,"67943":67944,"67944":67945,"67945":67946,"67946":67947,"67947":67948,"67948":67949,"67949":67950,"67950":67951,"67951":67952,"67952":67953,"67953":67954,"67954":67955,"67955":67956,"67956":67957,"67957":67958,"67958":67959,"67959":67960,"67960":67961,"67961":67962,"67962":67963,"67963":67964,"67964":67965,"67965":67966,"67966":67967,"67967":67968,"67968":67969,"67969":67970,"67970":67971,"67971":67972,"67972":67973,"67973":67974,"67974":67975,"67975":67976,"67976":67977,"67977":67978,"67978":67979,"67979":67980,"67980":67981,"67981":67982,"67982":67983,"67983":67984,"67984":67985,"67985":67986,"67986":67987,"67987":67988,"67988":67989,"67989":67990,"67990":67991,"67991":67992,"67992":67993,"67993":67994,"67994":67995,"67995":67996,"67996":67997,"67997":67998,"67998":67999,"67999":68000,"68000":68001,"68001":68002,"68002":68003,"68003":68004,"68004":68005,"68005":68006,"68006":68007,"68007":68008,"68008":68009,"68009":68010,"68010":68011,"68011":68012,"68012":68013,"68013":68014,"68014":68015,"68015":68016,"68016":68017,"68017":68018,"68018":68019,"68019":68020,"68020":68021,"68021":68022,"68022":68023,"68023":68024,"68024":68025,"68025":68026,"68026":68027,"68027":68028,"68028":68029,"68029":68030,"68030":68031,"68031":68032,"68032":68033,"68033":68034,"68034":68035,"68035":68036,"68036":68037,"68037":68038,"68038":68039,"68039":68040,"68040":68041,"68041":68042,"68042":68043,"68043":68044,"68044":68045,"68045":68046,"68046":68047,"68047":68048,"68048":68049,"68049":68050,"68050":68051,"68051":68052,"68052":68053,"68053":68054,"68054":68055,"68055":68056,"68056":68057,"68057":68058,"68058":68059,"68059":68060,"68060":68061,"68061":68062,"68062":68063,"68063":68064,"68064":68065,"68065":68066,"68066":68067,"68067":68068,"68068":68069,"68069":68070,"68070":68071,"68071":68072,"68072":68073,"68073":68074,"68074":68075,"68075":68076,"68076":68077,"68077":68078,"68078":68079,"68079":68080,"68080":68081,"68081":68082,"68082":68083,"68083":68084,"68084":68085,"68085":68086,"68086":68087,"68087":68088,"68088":68089,"68089":68090,"68090":68091,"68091":68092,"68092":68093,"68093":68094,"68094":68095,"68095":68096,"68096":68097,"68097":68098,"68098":68099,"68099":68100,"68100":68101,"68101":68102,"68102":68103,"68103":68104,"68104":68105,"68105":68106,"68106":68107,"68107":68108,"68108":68109,"68109":68110,"68110":68111,"68111":68112,"68112":68113,"68113":68114,"68114":68115,"68115":68116,"68116":68117,"68117":68118,"68118":68119,"68119":68120,"68120":68121,"68121":68122,"68122":68123,"68123":68124,"68124":68125,"68125":68126,"68126":68127,"68127":68128,"68128":68129,"68129":68130,"68130":68131,"68131":68132,"68132":68133,"68133":68134,"68134":68135,"68135":68136,"68136":68137,"68137":68138,"68138":68139,"68139":68140,"68140":68141,"68141":68142,"68142":68143,"68143":68144,"68144":68145,"68145":68146,"68146":68147,"68147":68148,"68148":68149,"68149":68150,"68150":68151,"68151":68152,"68152":68153,"68153":68154,"68154":68155,"68155":68156,"68156":68157,"68157":68158,"68158":68159,"68159":68160,"68160":68161,"68161":68162,"68162":68163,"68163":68164,"68164":68165,"68165":68166,"68166":68167,"68167":68168,"68168":68169,"68169":68170,"68170":68171,"68171":68172,"68172":68173,"68173":68174,"68174":68175,"68175":68176,"68176":68177,"68177":68178,"68178":68179,"68179":68180,"68180":68181,"68181":68182,"68182":68183,"68183":68184,"68184":68185,"68185":68186,"68186":68187,"68187":68188,"68188":68189,"68189":68190,"68190":68191,"68191":68192,"68192":68193,"68193":68194,"68194":68195,"68195":68196,"68196":68197,"68197":68198,"68198":68199,"68199":68200,"68200":68201,"68201":68202,"68202":68203,"68203":68204,"68204":68205,"68205":68206,"68206":68207,"68207":68208,"68208":68209,"68209":68210,"68210":68211,"68211":68212,"68212":68213,"68213":68214,"68214":68215,"68215":68216,"68216":68217,"68217":68218,"68218":68219,"68219":68220,"68220":68221,"68221":68222,"68222":68223,"68223":68224,"68224":68225,"68225":68226,"68226":68227,"68227":68228,"68228":68229,"68229":68230,"68230":68231,"68231":68232,"68232":68233,"68233":68234,"68234":68235,"68235":68236,"68236":68237,"68237":68238,"68238":68239,"68239":68240,"68240":68241,"68241":68242,"68242":68243,"68243":68244,"68244":68245,"68245":68246,"68246":68247,"68247":68248,"68248":68249,"68249":68250,"68250":68251,"68251":68252,"68252":68253,"68253":68254,"68254":68255,"68255":68256,"68256":68257,"68257":68258,"68258":68259,"68259":68260,"68260":68261,"68261":68262,"68262":68263,"68263":68264,"68264":68265,"68265":68266,"68266":68267,"68267":68268,"68268":68269,"68269":68270,"68270":68271,"68271":68272,"68272":68273,"68273":68274,"68274":68275,"68275":68276,"68276":68277,"68277":68278,"68278":68279,"68279":68280,"68280":68281,"68281":68282,"68282":68283,"68283":68284,"68284":68285,"68285":68286,"68286":68287,"68287":68288,"68288":68289,"68289":68290,"68290":68291,"68291":68292,"68292":68293,"68293":68294,"68294":68295,"68295":68296,"68296":68297,"68297":68298,"68298":68299,"68299":68300,"68300":68301,"68301":68302,"68302":68303,"68303":68304,"68304":68305,"68305":68306,"68306":68307,"68307":68308,"68308":68309,"68309":68310,"68310":68311,"68311":68312,"68312":68313,"68313":68314,"68314":68315,"68315":68316,"68316":68317,"68317":68318,"68318":68319,"68319":68320,"68320":68321,"68321":68322,"68322":68323,"68323":68324,"68324":68325,"68325":68326,"68326":68327,"68327":68328,"68328":68329,"68329":68330,"68330":68331,"68331":68332,"68332":68333,"68333":68334,"68334":68335,"68335":68336,"68336":68337,"68337":68338,"68338":68339,"68339":68340,"68340":68341,"68341":68342,"68342":68343,"68343":68344,"68344":68345,"68345":68346,"68346":68347,"68347":68348,"68348":68349,"68349":68350,"68350":68351,"68351":68352,"68352":68353,"68353":68354,"68354":68355,"68355":68356,"68356":68357,"68357":68358,"68358":68359,"68359":68360,"68360":68361,"68361":68362,"68362":68363,"68363":68364,"68364":68365,"68365":68366,"68366":68367,"68367":68368,"68368":68369,"68369":68370,"68370":68371,"68371":68372,"68372":68373,"68373":68374,"68374":68375,"68375":68376,"68376":68377,"68377":68378,"68378":68379,"68379":68380,"68380":68381,"68381":68382,"68382":68383,"68383":68384,"68384":68385,"68385":68386,"68386":68387,"68387":68388,"68388":68389,"68389":68390,"68390":68391,"68391":68392,"68392":68393,"68393":68394,"68394":68395,"68395":68396,"68396":68397,"68397":68398,"68398":68399,"68399":68400,"68400":68401,"68401":68402,"68402":68403,"68403":68404,"68404":68405,"68405":68406,"68406":68407,"68407":68408,"68408":68409,"68409":68410,"68410":68411,"68411":68412,"68412":68413,"68413":68414,"68414":68415,"68415":68416,"68416":68417,"68417":68418,"68418":68419,"68419":68420,"68420":68421,"68421":68422,"68422":68423,"68423":68424,"68424":68425,"68425":68426,"68426":68427,"68427":68428,"68428":68429,"68429":68430,"68430":68431,"68431":68432,"68432":68433,"68433":68434,"68434":68435,"68435":68436,"68436":68437,"68437":68438,"68438":68439,"68439":68440,"68440":68441,"68441":68442,"68442":68443,"68443":68444,"68444":68445,"68445":68446,"68446":68447,"68447":68448,"68448":68449,"68449":68450,"68450":68451,"68451":68452,"68452":68453,"68453":68454,"68454":68455,"68455":68456,"68456":68457,"68457":68458,"68458":68459,"68459":68460,"68460":68461,"68461":68462,"68462":68463,"68463":68464,"68464":68465,"68465":68466,"68466":68467,"68467":68468,"68468":68469,"68469":68470,"68470":68471,"68471":68472,"68472":68473,"68473":68474,"68474":68475,"68475":68476,"68476":68477,"68477":68478,"68478":68479,"68479":68480,"68480":68481,"68481":68482,"68482":68483,"68483":68484,"68484":68485,"68485":68486,"68486":68487,"68487":68488,"68488":68489,"68489":68490,"68490":68491,"68491":68492,"68492":68493,"68493":68494,"68494":68495,"68495":68496,"68496":68497,"68497":68498,"68498":68499,"68499":68500,"68500":68501,"68501":68502,"68502":68503,"68503":68504,"68504":68505,"68505":68506,"68506":68507,"68507":68508,"68508":68509,"68509":68510,"68510":68511,"68511":68512,"68512":68513,"68513":68514,"68514":68515,"68515":68516,"68516":68517,"68517":68518,"68518":68519,"68519":68520,"68520":68521,"68521":68522,"68522":68523,"68523":68524,"68524":68525,"68525":68526,"68526":68527,"68527":68528,"68528":68529,"68529":68530,"68530":68531,"68531":68532,"68532":68533,"68533":68534,"68534":68535,"68535":68536,"68536":68537,"68537":68538,"68538":68539,"68539":68540,"68540":68541,"68541":68542,"68542":68543,"68543":68544,"68544":68545,"68545":68546,"68546":68547,"68547":68548,"68548":68549,"68549":68550,"68550":68551,"68551":68552,"68552":68553,"68553":68554,"68554":68555,"68555":68556,"68556":68557,"68557":68558,"68558":68559,"68559":68560,"68560":68561,"68561":68562,"68562":68563,"68563":68564,"68564":68565,"68565":68566,"68566":68567,"68567":68568,"68568":68569,"68569":68570,"68570":68571,"68571":68572,"68572":68573,"68573":68574,"68574":68575,"68575":68576,"68576":68577,"68577":68578,"68578":68579,"68579":68580,"68580":68581,"68581":68582,"68582":68583,"68583":68584,"68584":68585,"68585":68586,"68586":68587,"68587":68588,"68588":68589,"68589":68590,"68590":68591,"68591":68592,"68592":68593,"68593":68594,"68594":68595,"68595":68596,"68596":68597,"68597":68598,"68598":68599,"68599":68600,"68600":68601,"68601":68602,"68602":68603,"68603":68604,"68604":68605,"68605":68606,"68606":68607,"68607":68608,"68608":68609,"68609":68610,"68610":68611,"68611":68612,"68612":68613,"68613":68614,"68614":68615,"68615":68616,"68616":68617,"68617":68618,"68618":68619,"68619":68620,"68620":68621,"68621":68622,"68622":68623,"68623":68624,"68624":68625,"68625":68626,"68626":68627,"68627":68628,"68628":68629,"68629":68630,"68630":68631,"68631":68632,"68632":68633,"68633":68634,"68634":68635,"68635":68636,"68636":68637,"68637":68638,"68638":68639,"68639":68640,"68640":68641,"68641":68642,"68642":68643,"68643":68644,"68644":68645,"68645":68646,"68646":68647,"68647":68648,"68648":68649,"68649":68650,"68650":68651,"68651":68652,"68652":68653,"68653":68654,"68654":68655,"68655":68656,"68656":68657,"68657":68658,"68658":68659,"68659":68660,"68660":68661,"68661":68662,"68662":68663,"68663":68664,"68664":68665,"68665":68666,"68666":68667,"68667":68668,"68668":68669,"68669":68670,"68670":68671,"68671":68672,"68672":68673,"68673":68674,"68674":68675,"68675":68676,"68676":68677,"68677":68678,"68678":68679,"68679":68680,"68680":68681,"68681":68682,"68682":68683,"68683":68684,"68684":68685,"68685":68686,"68686":68687,"68687":68688,"68688":68689,"68689":68690,"68690":68691,"68691":68692,"68692":68693,"68693":68694,"68694":68695,"68695":68696,"68696":68697,"68697":68698,"68698":68699,"68699":68700,"68700":68701,"68701":68702,"68702":68703,"68703":68704,"68704":68705,"68705":68706,"68706":68707,"68707":68708,"68708":68709,"68709":68710,"68710":68711,"68711":68712,"68712":68713,"68713":68714,"68714":68715,"68715":68716,"68716":68717,"68717":68718,"68718":68719,"68719":68720,"68720":68721,"68721":68722,"68722":68723,"68723":68724,"68724":68725,"68725":68726,"68726":68727,"68727":68728,"68728":68729,"68729":68730,"68730":68731,"68731":68732,"68732":68733,"68733":68734,"68734":68735,"68735":68736,"68736":68737,"68737":68738,"68738":68739,"68739":68740,"68740":68741,"68741":68742,"68742":68743,"68743":68744,"68744":68745,"68745":68746,"68746":68747,"68747":68748,"68748":68749,"68749":68750,"68750":68751,"68751":68752,"68752":68753,"68753":68754,"68754":68755,"68755":68756,"68756":68757,"68757":68758,"68758":68759,"68759":68760,"68760":68761,"68761":68762,"68762":68763,"68763":68764,"68764":68765,"68765":68766,"68766":68767,"68767":68768,"68768":68769,"68769":68770,"68770":68771,"68771":68772,"68772":68773,"68773":68774,"68774":68775,"68775":68776,"68776":68777,"68777":68778,"68778":68779,"68779":68780,"68780":68781,"68781":68782,"68782":68783,"68783":68784,"68784":68785,"68785":68786,"68786":68787,"68787":68788,"68788":68789,"68789":68790,"68790":68791,"68791":68792,"68792":68793,"68793":68794,"68794":68795,"68795":68796,"68796":68797,"68797":68798,"68798":68799,"68799":68800,"68800":68801,"68801":68802,"68802":68803,"68803":68804,"68804":68805,"68805":68806,"68806":68807,"68807":68808,"68808":68809,"68809":68810,"68810":68811,"68811":68812,"68812":68813,"68813":68814,"68814":68815,"68815":68816,"68816":68817,"68817":68818,"68818":68819,"68819":68820,"68820":68821,"68821":68822,"68822":68823,"68823":68824,"68824":68825,"68825":68826,"68826":68827,"68827":68828,"68828":68829,"68829":68830,"68830":68831,"68831":68832,"68832":68833,"68833":68834,"68834":68835,"68835":68836,"68836":68837,"68837":68838,"68838":68839,"68839":68840,"68840":68841,"68841":68842,"68842":68843,"68843":68844,"68844":68845,"68845":68846,"68846":68847,"68847":68848,"68848":68849,"68849":68850,"68850":68851,"68851":68852,"68852":68853,"68853":68854,"68854":68855,"68855":68856,"68856":68857,"68857":68858,"68858":68859,"68859":68860,"68860":68861,"68861":68862,"68862":68863,"68863":68864,"68864":68865,"68865":68866,"68866":68867,"68867":68868,"68868":68869,"68869":68870,"68870":68871,"68871":68872,"68872":68873,"68873":68874,"68874":68875,"68875":68876,"68876":68877,"68877":68878,"68878":68879,"68879":68880,"68880":68881,"68881":68882,"68882":68883,"68883":68884,"68884":68885,"68885":68886,"68886":68887,"68887":68888,"68888":68889,"68889":68890,"68890":68891,"68891":68892,"68892":68893,"68893":68894,"68894":68895,"68895":68896,"68896":68897,"68897":68898,"68898":68899,"68899":68900,"68900":68901,"68901":68902,"68902":68903,"68903":68904,"68904":68905,"68905":68906,"68906":68907,"68907":68908,"68908":68909,"68909":68910,"68910":68911,"68911":68912,"68912":68913,"68913":68914,"68914":68915,"68915":68916,"68916":68917,"68917":68918,"68918":68919,"68919":68920,"68920":68921,"68921":68922,"68922":68923,"68923":68924,"68924":68925,"68925":68926,"68926":68927,"68927":68928,"68928":68929,"68929":68930,"68930":68931,"68931":68932,"68932":68933,"68933":68934,"68934":68935,"68935":68936,"68936":68937,"68937":68938,"68938":68939,"68939":68940,"68940":68941,"68941":68942,"68942":68943,"68943":68944,"68944":68945,"68945":68946,"68946":68947,"68947":68948,"68948":68949,"68949":68950,"68950":68951,"68951":68952,"68952":68953,"68953":68954,"68954":68955,"68955":68956,"68956":68957,"68957":68958,"68958":68959,"68959":68960,"68960":68961,"68961":68962,"68962":68963,"68963":68964,"68964":68965,"68965":68966,"68966":68967,"68967":68968,"68968":68969,"68969":68970,"68970":68971,"68971":68972,"68972":68973,"68973":68974,"68974":68975,"68975":68976,"68976":68977,"68977":68978,"68978":68979,"68979":68980,"68980":68981,"68981":68982,"68982":68983,"68983":68984,"68984":68985,"68985":68986,"68986":68987,"68987":68988,"68988":68989,"68989":68990,"68990":68991,"68991":68992,"68992":68993,"68993":68994,"68994":68995,"68995":68996,"68996":68997,"68997":68998,"68998":68999,"68999":69000,"69000":69001,"69001":69002,"69002":69003,"69003":69004,"69004":69005,"69005":69006,"69006":69007,"69007":69008,"69008":69009,"69009":69010,"69010":69011,"69011":69012,"69012":69013,"69013":69014,"69014":69015,"69015":69016,"69016":69017,"69017":69018,"69018":69019,"69019":69020,"69020":69021,"69021":69022,"69022":69023,"69023":69024,"69024":69025,"69025":69026,"69026":69027,"69027":69028,"69028":69029,"69029":69030,"69030":69031,"69031":69032,"69032":69033,"69033":69034,"69034":69035,"69035":69036,"69036":69037,"69037":69038,"69038":69039,"69039":69040,"69040":69041,"69041":69042,"69042":69043,"69043":69044,"69044":69045,"69045":69046,"69046":69047,"69047":69048,"69048":69049,"69049":69050,"69050":69051,"69051":69052,"69052":69053,"69053":69054,"69054":69055,"69055":69056,"69056":69057,"69057":69058,"69058":69059,"69059":69060,"69060":69061,"69061":69062,"69062":69063,"69063":69064,"69064":69065,"69065":69066,"69066":69067,"69067":69068,"69068":69069,"69069":69070,"69070":69071,"69071":69072,"69072":69073,"69073":69074,"69074":69075,"69075":69076,"69076":69077,"69077":69078,"69078":69079,"69079":69080,"69080":69081,"69081":69082,"69082":69083,"69083":69084,"69084":69085,"69085":69086,"69086":69087,"69087":69088,"69088":69089,"69089":69090,"69090":69091,"69091":69092,"69092":69093,"69093":69094,"69094":69095,"69095":69096,"69096":69097,"69097":69098,"69098":69099,"69099":69100,"69100":69101,"69101":69102,"69102":69103,"69103":69104,"69104":69105,"69105":69106,"69106":69107,"69107":69108,"69108":69109,"69109":69110,"69110":69111,"69111":69112,"69112":69113,"69113":69114,"69114":69115,"69115":69116,"69116":69117,"69117":69118,"69118":69119,"69119":69120,"69120":69121,"69121":69122,"69122":69123,"69123":69124,"69124":69125,"69125":69126,"69126":69127,"69127":69128,"69128":69129,"69129":69130,"69130":69131,"69131":69132,"69132":69133,"69133":69134,"69134":69135,"69135":69136,"69136":69137,"69137":69138,"69138":69139,"69139":69140,"69140":69141,"69141":69142,"69142":69143,"69143":69144,"69144":69145,"69145":69146,"69146":69147,"69147":69148,"69148":69149,"69149":69150,"69150":69151,"69151":69152,"69152":69153,"69153":69154,"69154":69155,"69155":69156,"69156":69157,"69157":69158,"69158":69159,"69159":69160,"69160":69161,"69161":69162,"69162":69163,"69163":69164,"69164":69165,"69165":69166,"69166":69167,"69167":69168,"69168":69169,"69169":69170,"69170":69171,"69171":69172,"69172":69173,"69173":69174,"69174":69175,"69175":69176,"69176":69177,"69177":69178,"69178":69179,"69179":69180,"69180":69181,"69181":69182,"69182":69183,"69183":69184,"69184":69185,"69185":69186,"69186":69187,"69187":69188,"69188":69189,"69189":69190,"69190":69191,"69191":69192,"69192":69193,"69193":69194,"69194":69195,"69195":69196,"69196":69197,"69197":69198,"69198":69199,"69199":69200,"69200":69201,"69201":69202,"69202":69203,"69203":69204,"69204":69205,"69205":69206,"69206":69207,"69207":69208,"69208":69209,"69209":69210,"69210":69211,"69211":69212,"69212":69213,"69213":69214,"69214":69215,"69215":69216,"69216":69217,"69217":69218,"69218":69219,"69219":69220,"69220":69221,"69221":69222,"69222":69223,"69223":69224,"69224":69225,"69225":69226,"69226":69227,"69227":69228,"69228":69229,"69229":69230,"69230":69231,"69231":69232,"69232":69233,"69233":69234,"69234":69235,"69235":69236,"69236":69237,"69237":69238,"69238":69239,"69239":69240,"69240":69241,"69241":69242,"69242":69243,"69243":69244,"69244":69245,"69245":69246,"69246":69247,"69247":69248,"69248":69249,"69249":69250,"69250":69251,"69251":69252,"69252":69253,"69253":69254,"69254":69255,"69255":69256,"69256":69257,"69257":69258,"69258":69259,"69259":69260,"69260":69261,"69261":69262,"69262":69263,"69263":69264,"69264":69265,"69265":69266,"69266":69267,"69267":69268,"69268":69269,"69269":69270,"69270":69271,"69271":69272,"69272":69273,"69273":69274,"69274":69275,"69275":69276,"69276":69277,"69277":69278,"69278":69279,"69279":69280,"69280":69281,"69281":69282,"69282":69283,"69283":69284,"69284":69285,"69285":69286,"69286":69287,"69287":69288,"69288":69289,"69289":69290,"69290":69291,"69291":69292,"69292":69293,"69293":69294,"69294":69295,"69295":69296,"69296":69297,"69297":69298,"69298":69299,"69299":69300,"69300":69301,"69301":69302,"69302":69303,"69303":69304,"69304":69305,"69305":69306,"69306":69307,"69307":69308,"69308":69309,"69309":69310,"69310":69311,"69311":69312,"69312":69313,"69313":69314,"69314":69315,"69315":69316,"69316":69317,"69317":69318,"69318":69319,"69319":69320,"69320":69321,"69321":69322,"69322":69323,"69323":69324,"69324":69325,"69325":69326,"69326":69327,"69327":69328,"69328":69329,"69329":69330,"69330":69331,"69331":69332,"69332":69333,"69333":69334,"69334":69335,"69335":69336,"69336":69337,"69337":69338,"69338":69339,"69339":69340,"69340":69341,"69341":69342,"69342":69343,"69343":69344,"69344":69345,"69345":69346,"69346":69347,"69347":69348,"69348":69349,"69349":69350,"69350":69351,"69351":69352,"69352":69353,"69353":69354,"69354":69355,"69355":69356,"69356":69357,"69357":69358,"69358":69359,"69359":69360,"69360":69361,"69361":69362,"69362":69363,"69363":69364,"69364":69365,"69365":69366,"69366":69367,"69367":69368,"69368":69369,"69369":69370,"69370":69371,"69371":69372,"69372":69373,"69373":69374,"69374":69375,"69375":69376,"69376":69377,"69377":69378,"69378":69379,"69379":69380,"69380":69381,"69381":69382,"69382":69383,"69383":69384,"69384":69385,"69385":69386,"69386":69387,"69387":69388,"69388":69389,"69389":69390,"69390":69391,"69391":69392,"69392":69393,"69393":69394,"69394":69395,"69395":69396,"69396":69397,"69397":69398,"69398":69399,"69399":69400,"69400":69401,"69401":69402,"69402":69403,"69403":69404,"69404":69405,"69405":69406,"69406":69407,"69407":69408,"69408":69409,"69409":69410,"69410":69411,"69411":69412,"69412":69413,"69413":69414,"69414":69415,"69415":69416,"69416":69417,"69417":69418,"69418":69419,"69419":69420,"69420":69421,"69421":69422,"69422":69423,"69423":69424,"69424":69425,"69425":69426,"69426":69427,"69427":69428,"69428":69429,"69429":69430,"69430":69431,"69431":69432,"69432":69433,"69433":69434,"69434":69435,"69435":69436,"69436":69437,"69437":69438,"69438":69439,"69439":69440,"69440":69441,"69441":69442,"69442":69443,"69443":69444,"69444":69445,"69445":69446,"69446":69447,"69447":69448,"69448":69449,"69449":69450,"69450":69451,"69451":69452,"69452":69453,"69453":69454,"69454":69455,"69455":69456,"69456":69457,"69457":69458,"69458":69459,"69459":69460,"69460":69461,"69461":69462,"69462":69463,"69463":69464,"69464":69465,"69465":69466,"69466":69467,"69467":69468,"69468":69469,"69469":69470,"69470":69471,"69471":69472,"69472":69473,"69473":69474,"69474":69475,"69475":69476,"69476":69477,"69477":69478,"69478":69479,"69479":69480,"69480":69481,"69481":69482,"69482":69483,"69483":69484,"69484":69485,"69485":69486,"69486":69487,"69487":69488,"69488":69489,"69489":69490,"69490":69491,"69491":69492,"69492":69493,"69493":69494,"69494":69495,"69495":69496,"69496":69497,"69497":69498,"69498":69499,"69499":69500,"69500":69501,"69501":69502,"69502":69503,"69503":69504,"69504":69505,"69505":69506,"69506":69507,"69507":69508,"69508":69509,"69509":69510,"69510":69511,"69511":69512,"69512":69513,"69513":69514,"69514":69515,"69515":69516,"69516":69517,"69517":69518,"69518":69519,"69519":69520,"69520":69521,"69521":69522,"69522":69523,"69523":69524,"69524":69525,"69525":69526,"69526":69527,"69527":69528,"69528":69529,"69529":69530,"69530":69531,"69531":69532,"69532":69533,"69533":69534,"69534":69535,"69535":69536,"69536":69537,"69537":69538,"69538":69539,"69539":69540,"69540":69541,"69541":69542,"69542":69543,"69543":69544,"69544":69545,"69545":69546,"69546":69547,"69547":69548,"69548":69549,"69549":69550,"69550":69551,"69551":69552,"69552":69553,"69553":69554,"69554":69555,"69555":69556,"69556":69557,"69557":69558,"69558":69559,"69559":69560,"69560":69561,"69561":69562,"69562":69563,"69563":69564,"69564":69565,"69565":69566,"69566":69567,"69567":69568,"69568":69569,"69569":69570,"69570":69571,"69571":69572,"69572":69573,"69573":69574,"69574":69575,"69575":69576,"69576":69577,"69577":69578,"69578":69579,"69579":69580,"69580":69581,"69581":69582,"69582":69583,"69583":69584,"69584":69585,"69585":69586,"69586":69587,"69587":69588,"69588":69589,"69589":69590,"69590":69591,"69591":69592,"69592":69593,"69593":69594,"69594":69595,"69595":69596,"69596":69597,"69597":69598,"69598":69599,"69599":69600,"69600":69601,"69601":69602,"69602":69603,"69603":69604,"69604":69605,"69605":69606,"69606":69607,"69607":69608,"69608":69609,"69609":69610,"69610":69611,"69611":69612,"69612":69613,"69613":69614,"69614":69615,"69615":69616,"69616":69617,"69617":69618,"69618":69619,"69619":69620,"69620":69621,"69621":69622,"69622":69623,"69623":69624,"69624":69625,"69625":69626,"69626":69627,"69627":69628,"69628":69629,"69629":69630,"69630":69631,"69631":69632,"69632":69633,"69633":69634,"69634":69635,"69635":69636,"69636":69637,"69637":69638,"69638":69639,"69639":69640,"69640":69641,"69641":69642,"69642":69643,"69643":69644,"69644":69645,"69645":69646,"69646":69647,"69647":69648,"69648":69649,"69649":69650,"69650":69651,"69651":69652,"69652":69653,"69653":69654,"69654":69655,"69655":69656,"69656":69657,"69657":69658,"69658":69659,"69659":69660,"69660":69661,"69661":69662,"69662":69663,"69663":69664,"69664":69665,"69665":69666,"69666":69667,"69667":69668,"69668":69669,"69669":69670,"69670":69671,"69671":69672,"69672":69673,"69673":69674,"69674":69675,"69675":69676,"69676":69677,"69677":69678,"69678":69679,"69679":69680,"69680":69681,"69681":69682,"69682":69683,"69683":69684,"69684":69685,"69685":69686,"69686":69687,"69687":69688,"69688":69689,"69689":69690,"69690":69691,"69691":69692,"69692":69693,"69693":69694,"69694":69695,"69695":69696,"69696":69697,"69697":69698,"69698":69699,"69699":69700,"69700":69701,"69701":69702,"69702":69703,"69703":69704,"69704":69705,"69705":69706,"69706":69707,"69707":69708,"69708":69709,"69709":69710,"69710":69711,"69711":69712,"69712":69713,"69713":69714,"69714":69715,"69715":69716,"69716":69717,"69717":69718,"69718":69719,"69719":69720,"69720":69721,"69721":69722,"69722":69723,"69723":69724,"69724":69725,"69725":69726,"69726":69727,"69727":69728,"69728":69729,"69729":69730,"69730":69731,"69731":69732,"69732":69733,"69733":69734,"69734":69735,"69735":69736,"69736":69737,"69737":69738,"69738":69739,"69739":69740,"69740":69741,"69741":69742,"69742":69743,"69743":69744,"69744":69745,"69745":69746,"69746":69747,"69747":69748,"69748":69749,"69749":69750,"69750":69751,"69751":69752,"69752":69753,"69753":69754,"69754":69755,"69755":69756,"69756":69757,"69757":69758,"69758":69759,"69759":69760,"69760":69761,"69761":69762,"69762":69763,"69763":69764,"69764":69765,"69765":69766,"69766":69767,"69767":69768,"69768":69769,"69769":69770,"69770":69771,"69771":69772,"69772":69773,"69773":69774,"69774":69775,"69775":69776,"69776":69777,"69777":69778,"69778":69779,"69779":69780,"69780":69781,"69781":69782,"69782":69783,"69783":69784,"69784":69785,"69785":69786,"69786":69787,"69787":69788,"69788":69789,"69789":69790,"69790":69791,"69791":69792,"69792":69793,"69793":69794,"69794":69795,"69795":69796,"69796":69797,"69797":69798,"69798":69799,"69799":69800,"69800":69801,"69801":69802,"69802":69803,"69803":69804,"69804":69805,"69805":69806,"69806":69807,"69807":69808,"69808":69809,"69809":69810,"69810":69811,"69811":69812,"69812":69813,"69813":69814,"69814":69815,"69815":69816,"69816":69817,"69817":69818,"69818":69819,"69819":69820,"69820":69821,"69821":69822,"69822":69823,"69823":69824,"69824":69825,"69825":69826,"69826":69827,"69827":69828,"69828":69829,"69829":69830,"69830":69831,"69831":69832,"69832":69833,"69833":69834,"69834":69835,"69835":69836,"69836":69837,"69837":69838,"69838":69839,"69839":69840,"69840":69841,"69841":69842,"69842":69843,"69843":69844,"69844":69845,"69845":69846,"69846":69847,"69847":69848,"69848":69849,"69849":69850,"69850":69851,"69851":69852,"69852":69853,"69853":69854,"69854":69855,"69855":69856,"69856":69857,"69857":69858,"69858":69859,"69859":69860,"69860":69861,"69861":69862,"69862":69863,"69863":69864,"69864":69865,"69865":69866,"69866":69867,"69867":69868,"69868":69869,"69869":69870,"69870":69871,"69871":69872,"69872":69873,"69873":69874,"69874":69875,"69875":69876,"69876":69877,"69877":69878,"69878":69879,"69879":69880,"69880":69881,"69881":69882,"69882":69883,"69883":69884,"69884":69885,"69885":69886,"69886":69887,"69887":69888,"69888":69889,"69889":69890,"69890":69891,"69891":69892,"69892":69893,"69893":69894,"69894":69895,"69895":69896,"69896":69897,"69897":69898,"69898":69899,"69899":69900,"69900":69901,"69901":69902,"69902":69903,"69903":69904,"69904":69905,"69905":69906,"69906":69907,"69907":69908,"69908":69909,"69909":69910,"69910":69911,"69911":69912,"69912":69913,"69913":69914,"69914":69915,"69915":69916,"69916":69917,"69917":69918,"69918":69919,"69919":69920,"69920":69921,"69921":69922,"69922":69923,"69923":69924,"69924":69925,"69925":69926,"69926":69927,"69927":69928,"69928":69929,"69929":69930,"69930":69931,"69931":69932,"69932":69933,"69933":69934,"69934":69935,"69935":69936,"69936":69937,"69937":69938,"69938":69939,"69939":69940,"69940":69941,"69941":69942,"69942":69943,"69943":69944,"69944":69945,"69945":69946,"69946":69947,"69947":69948,"69948":69949,"69949":69950,"69950":69951,"69951":69952,"69952":69953,"69953":69954,"69954":69955,"69955":69956,"69956":69957,"69957":69958,"69958":69959,"69959":69960,"69960":69961,"69961":69962,"69962":69963,"69963":69964,"69964":69965,"69965":69966,"69966":69967,"69967":69968,"69968":69969,"69969":69970,"69970":69971,"69971":69972,"69972":69973,"69973":69974,"69974":69975,"69975":69976,"69976":69977,"69977":69978,"69978":69979,"69979":69980,"69980":69981,"69981":69982,"69982":69983,"69983":69984,"69984":69985,"69985":69986,"69986":69987,"69987":69988,"69988":69989,"69989":69990,"69990":69991,"69991":69992,"69992":69993,"69993":69994,"69994":69995,"69995":69996,"69996":69997,"69997":69998,"69998":69999,"69999":70000,"70000":70001,"70001":70002,"70002":70003,"70003":70004,"70004":70005,"70005":70006,"70006":70007,"70007":70008,"70008":70009,"70009":70010,"70010":70011,"70011":70012,"70012":70013,"70013":70014,"70014":70015,"70015":70016,"70016":70017,"70017":70018,"70018":70019,"70019":70020,"70020":70021,"70021":70022,"70022":70023,"70023":70024,"70024":70025,"70025":70026,"70026":70027,"70027":70028,"70028":70029,"70029":70030,"70030":70031,"70031":70032,"70032":70033,"70033":70034,"70034":70035,"70035":70036,"70036":70037,"70037":70038,"70038":70039,"70039":70040,"70040":70041,"70041":70042,"70042":70043,"70043":70044,"70044":70045,"70045":70046,"70046":70047,"70047":70048,"70048":70049,"70049":70050,"70050":70051,"70051":70052,"70052":70053,"70053":70054,"70054":70055,"70055":70056,"70056":70057,"70057":70058,"70058":70059,"70059":70060,"70060":70061,"70061":70062,"70062":70063,"70063":70064,"70064":70065,"70065":70066,"70066":70067,"70067":70068,"70068":70069,"70069":70070,"70070":70071,"70071":70072,"70072":70073,"70073":70074,"70074":70075,"70075":70076,"70076":70077,"70077":70078,"70078":70079,"70079":70080,"70080":70081,"70081":70082,"70082":70083,"70083":70084,"70084":70085,"70085":70086,"70086":70087,"70087":70088,"70088":70089,"70089":70090,"70090":70091,"70091":70092,"70092":70093,"70093":70094,"70094":70095,"70095":70096,"70096":70097,"70097":70098,"70098":70099,"70099":70100,"70100":70101,"70101":70102,"70102":70103,"70103":70104,"70104":70105,"70105":70106,"70106":70107,"70107":70108,"70108":70109,"70109":70110,"70110":70111,"70111":70112,"70112":70113,"70113":70114,"70114":70115,"70115":70116,"70116":70117,"70117":70118,"70118":70119,"70119":70120,"70120":70121,"70121":70122,"70122":70123,"70123":70124,"70124":70125,"70125":70126,"70126":70127,"70127":70128,"70128":70129,"70129":70130,"70130":70131,"70131":70132,"70132":70133,"70133":70134,"70134":70135,"70135":70136,"70136":70137,"70137":70138,"70138":70139,"70139":70140,"70140":70141,"70141":70142,"70142":70143,"70143":70144,"70144":70145,"70145":70146,"70146":70147,"70147":70148,"70148":70149,"70149":70150,"70150":70151,"70151":70152,"70152":70153,"70153":70154,"70154":70155,"70155":70156,"70156":70157,"70157":70158,"70158":70159,"70159":70160,"70160":70161,"70161":70162,"70162":70163,"70163":70164,"70164":70165,"70165":70166,"70166":70167,"70167":70168,"70168":70169,"70169":70170,"70170":70171,"70171":70172,"70172":70173,"70173":70174,"70174":70175,"70175":70176,"70176":70177,"70177":70178,"70178":70179,"70179":70180,"70180":70181,"70181":70182,"70182":70183,"70183":70184,"70184":70185,"70185":70186,"70186":70187,"70187":70188,"70188":70189,"70189":70190,"70190":70191,"70191":70192,"70192":70193,"70193":70194,"70194":70195,"70195":70196,"70196":70197,"70197":70198,"70198":70199,"70199":70200,"70200":70201,"70201":70202,"70202":70203,"70203":70204,"70204":70205,"70205":70206,"70206":70207,"70207":70208,"70208":70209,"70209":70210,"70210":70211,"70211":70212,"70212":70213,"70213":70214,"70214":70215,"70215":70216,"70216":70217,"70217":70218,"70218":70219,"70219":70220,"70220":70221,"70221":70222,"70222":70223,"70223":70224,"70224":70225,"70225":70226,"70226":70227,"70227":70228,"70228":70229,"70229":70230,"70230":70231,"70231":70232,"70232":70233,"70233":70234,"70234":70235,"70235":70236,"70236":70237,"70237":70238,"70238":70239,"70239":70240,"70240":70241,"70241":70242,"70242":70243,"70243":70244,"70244":70245,"70245":70246,"70246":70247,"70247":70248,"70248":70249,"70249":70250,"70250":70251,"70251":70252,"70252":70253,"70253":70254,"70254":70255,"70255":70256,"70256":70257,"70257":70258,"70258":70259,"70259":70260,"70260":70261,"70261":70262,"70262":70263,"70263":70264,"70264":70265,"70265":70266,"70266":70267,"70267":70268,"70268":70269,"70269":70270,"70270":70271,"70271":70272,"70272":70273,"70273":70274,"70274":70275,"70275":70276,"70276":70277,"70277":70278,"70278":70279,"70279":70280,"70280":70281,"70281":70282,"70282":70283,"70283":70284,"70284":70285,"70285":70286,"70286":70287,"70287":70288,"70288":70289,"70289":70290,"70290":70291,"70291":70292,"70292":70293,"70293":70294,"70294":70295,"70295":70296,"70296":70297,"70297":70298,"70298":70299,"70299":70300,"70300":70301,"70301":70302,"70302":70303,"70303":70304,"70304":70305,"70305":70306,"70306":70307,"70307":70308,"70308":70309,"70309":70310,"70310":70311,"70311":70312,"70312":70313,"70313":70314,"70314":70315,"70315":70316,"70316":70317,"70317":70318,"70318":70319,"70319":70320,"70320":70321,"70321":70322,"70322":70323,"70323":70324,"70324":70325,"70325":70326,"70326":70327,"70327":70328,"70328":70329,"70329":70330,"70330":70331,"70331":70332,"70332":70333,"70333":70334,"70334":70335,"70335":70336,"70336":70337,"70337":70338,"70338":70339,"70339":70340,"70340":70341,"70341":70342,"70342":70343,"70343":70344,"70344":70345,"70345":70346,"70346":70347,"70347":70348,"70348":70349,"70349":70350,"70350":70351,"70351":70352,"70352":70353,"70353":70354,"70354":70355,"70355":70356,"70356":70357,"70357":70358,"70358":70359,"70359":70360,"70360":70361,"70361":70362,"70362":70363,"70363":70364,"70364":70365,"70365":70366,"70366":70367,"70367":70368,"70368":70369,"70369":70370,"70370":70371,"70371":70372,"70372":70373,"70373":70374,"70374":70375,"70375":70376,"70376":70377,"70377":70378,"70378":70379,"70379":70380,"70380":70381,"70381":70382,"70382":70383,"70383":70384,"70384":70385,"70385":70386,"70386":70387,"70387":70388,"70388":70389,"70389":70390,"70390":70391,"70391":70392,"70392":70393,"70393":70394,"70394":70395,"70395":70396,"70396":70397,"70397":70398,"70398":70399,"70399":70400,"70400":70401,"70401":70402,"70402":70403,"70403":70404,"70404":70405,"70405":70406,"70406":70407,"70407":70408,"70408":70409,"70409":70410,"70410":70411,"70411":70412,"70412":70413,"70413":70414,"70414":70415,"70415":70416,"70416":70417,"70417":70418,"70418":70419,"70419":70420,"70420":70421,"70421":70422,"70422":70423,"70423":70424,"70424":70425,"70425":70426,"70426":70427,"70427":70428,"70428":70429,"70429":70430,"70430":70431,"70431":70432,"70432":70433,"70433":70434,"70434":70435,"70435":70436,"70436":70437,"70437":70438,"70438":70439,"70439":70440,"70440":70441,"70441":70442,"70442":70443,"70443":70444,"70444":70445,"70445":70446,"70446":70447,"70447":70448,"70448":70449,"70449":70450,"70450":70451,"70451":70452,"70452":70453,"70453":70454,"70454":70455,"70455":70456,"70456":70457,"70457":70458,"70458":70459,"70459":70460,"70460":70461,"70461":70462,"70462":70463,"70463":70464,"70464":70465,"70465":70466,"70466":70467,"70467":70468,"70468":70469,"70469":70470,"70470":70471,"70471":70472,"70472":70473,"70473":70474,"70474":70475,"70475":70476,"70476":70477,"70477":70478,"70478":70479,"70479":70480,"70480":70481,"70481":70482,"70482":70483,"70483":70484,"70484":70485,"70485":70486,"70486":70487,"70487":70488,"70488":70489,"70489":70490,"70490":70491,"70491":70492,"70492":70493,"70493":70494,"70494":70495,"70495":70496,"70496":70497,"70497":70498,"70498":70499,"70499":70500,"70500":70501,"70501":70502,"70502":70503,"70503":70504,"70504":70505,"70505":70506,"70506":70507,"70507":70508,"70508":70509,"70509":70510,"70510":70511,"70511":70512,"70512":70513,"70513":70514,"70514":70515,"70515":70516,"70516":70517,"70517":70518,"70518":70519,"70519":70520,"70520":70521,"70521":70522,"70522":70523,"70523":70524,"70524":70525,"70525":70526,"70526":70527,"70527":70528,"70528":70529,"70529":70530,"70530":70531,"70531":70532,"70532":70533,"70533":70534,"70534":70535,"70535":70536,"70536":70537,"70537":70538,"70538":70539,"70539":70540,"70540":70541,"70541":70542,"70542":70543,"70543":70544,"70544":70545,"70545":70546,"70546":70547,"70547":70548,"70548":70549,"70549":70550,"70550":70551,"70551":70552,"70552":70553,"70553":70554,"70554":70555,"70555":70556,"70556":70557,"70557":70558,"70558":70559,"70559":70560,"70560":70561,"70561":70562,"70562":70563,"70563":70564,"70564":70565,"70565":70566,"70566":70567,"70567":70568,"70568":70569,"70569":70570,"70570":70571,"70571":70572,"70572":70573,"70573":70574,"70574":70575,"70575":70576,"70576":70577,"70577":70578,"70578":70579,"70579":70580,"70580":70581,"70581":70582,"70582":70583,"70583":70584,"70584":70585,"70585":70586,"70586":70587,"70587":70588,"70588":70589,"70589":70590,"70590":70591,"70591":70592,"70592":70593,"70593":70594,"70594":70595,"70595":70596,"70596":70597,"70597":70598,"70598":70599,"70599":70600,"70600":70601,"70601":70602,"70602":70603,"70603":70604,"70604":70605,"70605":70606,"70606":70607,"70607":70608,"70608":70609,"70609":70610,"70610":70611,"70611":70612,"70612":70613,"70613":70614,"70614":70615,"70615":70616,"70616":70617,"70617":70618,"70618":70619,"70619":70620,"70620":70621,"70621":70622,"70622":70623,"70623":70624,"70624":70625,"70625":70626,"70626":70627,"70627":70628,"70628":70629,"70629":70630,"70630":70631,"70631":70632,"70632":70633,"70633":70634,"70634":70635,"70635":70636,"70636":70637,"70637":70638,"70638":70639,"70639":70640,"70640":70641,"70641":70642,"70642":70643,"70643":70644,"70644":70645,"70645":70646,"70646":70647,"70647":70648,"70648":70649,"70649":70650,"70650":70651,"70651":70652,"70652":70653,"70653":70654,"70654":70655,"70655":70656,"70656":70657,"70657":70658,"70658":70659,"70659":70660,"70660":70661,"70661":70662,"70662":70663,"70663":70664,"70664":70665,"70665":70666,"70666":70667,"70667":70668,"70668":70669,"70669":70670,"70670":70671,"70671":70672,"70672":70673,"70673":70674,"70674":70675,"70675":70676,"70676":70677,"70677":70678,"70678":70679,"70679":70680,"70680":70681,"70681":70682,"70682":70683,"70683":70684,"70684":70685,"70685":70686,"70686":70687,"70687":70688,"70688":70689,"70689":70690,"70690":70691,"70691":70692,"70692":70693,"70693":70694,"70694":70695,"70695":70696,"70696":70697,"70697":70698,"70698":70699,"70699":70700,"70700":70701,"70701":70702,"70702":70703,"70703":70704,"70704":70705,"70705":70706,"70706":70707,"70707":70708,"70708":70709,"70709":70710,"70710":70711,"70711":70712,"70712":70713,"70713":70714,"70714":70715,"70715":70716,"70716":70717,"70717":70718,"70718":70719,"70719":70720,"70720":70721,"70721":70722,"70722":70723,"70723":70724,"70724":70725,"70725":70726,"70726":70727,"70727":70728,"70728":70729,"70729":70730,"70730":70731,"70731":70732,"70732":70733,"70733":70734,"70734":70735,"70735":70736,"70736":70737,"70737":70738,"70738":70739,"70739":70740,"70740":70741,"70741":70742,"70742":70743,"70743":70744,"70744":70745,"70745":70746,"70746":70747,"70747":70748,"70748":70749,"70749":70750,"70750":70751,"70751":70752,"70752":70753,"70753":70754,"70754":70755,"70755":70756,"70756":70757,"70757":70758,"70758":70759,"70759":70760,"70760":70761,"70761":70762,"70762":70763,"70763":70764,"70764":70765,"70765":70766,"70766":70767,"70767":70768,"70768":70769,"70769":70770,"70770":70771,"70771":70772,"70772":70773,"70773":70774,"70774":70775,"70775":70776,"70776":70777,"70777":70778,"70778":70779,"70779":70780,"70780":70781,"70781":70782,"70782":70783,"70783":70784,"70784":70785,"70785":70786,"70786":70787,"70787":70788,"70788":70789,"70789":70790,"70790":70791,"70791":70792,"70792":70793,"70793":70794,"70794":70795,"70795":70796,"70796":70797,"70797":70798,"70798":70799,"70799":70800,"70800":70801,"70801":70802,"70802":70803,"70803":70804,"70804":70805,"70805":70806,"70806":70807,"70807":70808,"70808":70809,"70809":70810,"70810":70811,"70811":70812,"70812":70813,"70813":70814,"70814":70815,"70815":70816,"70816":70817,"70817":70818,"70818":70819,"70819":70820,"70820":70821,"70821":70822,"70822":70823,"70823":70824,"70824":70825,"70825":70826,"70826":70827,"70827":70828,"70828":70829,"70829":70830,"70830":70831,"70831":70832,"70832":70833,"70833":70834,"70834":70835,"70835":70836,"70836":70837,"70837":70838,"70838":70839,"70839":70840,"70840":70841,"70841":70842,"70842":70843,"70843":70844,"70844":70845,"70845":70846,"70846":70847,"70847":70848,"70848":70849,"70849":70850,"70850":70851,"70851":70852,"70852":70853,"70853":70854,"70854":70855,"70855":70856,"70856":70857,"70857":70858,"70858":70859,"70859":70860,"70860":70861,"70861":70862,"70862":70863,"70863":70864,"70864":70865,"70865":70866,"70866":70867,"70867":70868,"70868":70869,"70869":70870,"70870":70871,"70871":70872,"70872":70873,"70873":70874,"70874":70875,"70875":70876,"70876":70877,"70877":70878,"70878":70879,"70879":70880,"70880":70881,"70881":70882,"70882":70883,"70883":70884,"70884":70885,"70885":70886,"70886":70887,"70887":70888,"70888":70889,"70889":70890,"70890":70891,"70891":70892,"70892":70893,"70893":70894,"70894":70895,"70895":70896,"70896":70897,"70897":70898,"70898":70899,"70899":70900,"70900":70901,"70901":70902,"70902":70903,"70903":70904,"70904":70905,"70905":70906,"70906":70907,"70907":70908,"70908":70909,"70909":70910,"70910":70911,"70911":70912,"70912":70913,"70913":70914,"70914":70915,"70915":70916,"70916":70917,"70917":70918,"70918":70919,"70919":70920,"70920":70921,"70921":70922,"70922":70923,"70923":70924,"70924":70925,"70925":70926,"70926":70927,"70927":70928,"70928":70929,"70929":70930,"70930":70931,"70931":70932,"70932":70933,"70933":70934,"70934":70935,"70935":70936,"70936":70937,"70937":70938,"70938":70939,"70939":70940,"70940":70941,"70941":70942,"70942":70943,"70943":70944,"70944":70945,"70945":70946,"70946":70947,"70947":70948,"70948":70949,"70949":70950,"70950":70951,"70951":70952,"70952":70953,"70953":70954,"70954":70955,"70955":70956,"70956":70957,"70957":70958,"70958":70959,"70959":70960,"70960":70961,"70961":70962,"70962":70963,"70963":70964,"70964":70965,"70965":70966,"70966":70967,"70967":70968,"70968":70969,"70969":70970,"70970":70971,"70971":70972,"70972":70973,"70973":70974,"70974":70975,"70975":70976,"70976":70977,"70977":70978,"70978":70979,"70979":70980,"70980":70981,"70981":70982,"70982":70983,"70983":70984,"70984":70985,"70985":70986,"70986":70987,"70987":70988,"70988":70989,"70989":70990,"70990":70991,"70991":70992,"70992":70993,"70993":70994,"70994":70995,"70995":70996,"70996":70997,"70997":70998,"70998":70999,"70999":71000,"71000":71001,"71001":71002,"71002":71003,"71003":71004,"71004":71005,"71005":71006,"71006":71007,"71007":71008,"71008":71009,"71009":71010,"71010":71011,"71011":71012,"71012":71013,"71013":71014,"71014":71015,"71015":71016,"71016":71017,"71017":71018,"71018":71019,"71019":71020,"71020":71021,"71021":71022,"71022":71023,"71023":71024,"71024":71025,"71025":71026,"71026":71027,"71027":71028,"71028":71029,"71029":71030,"71030":71031,"71031":71032,"71032":71033,"71033":71034,"71034":71035,"71035":71036,"71036":71037,"71037":71038,"71038":71039,"71039":71040,"71040":71041,"71041":71042,"71042":71043,"71043":71044,"71044":71045,"71045":71046,"71046":71047,"71047":71048,"71048":71049,"71049":71050,"71050":71051,"71051":71052,"71052":71053,"71053":71054,"71054":71055,"71055":71056,"71056":71057,"71057":71058,"71058":71059,"71059":71060,"71060":71061,"71061":71062,"71062":71063,"71063":71064,"71064":71065,"71065":71066,"71066":71067,"71067":71068,"71068":71069,"71069":71070,"71070":71071,"71071":71072,"71072":71073,"71073":71074,"71074":71075,"71075":71076,"71076":71077,"71077":71078,"71078":71079,"71079":71080,"71080":71081,"71081":71082,"71082":71083,"71083":71084,"71084":71085,"71085":71086,"71086":71087,"71087":71088,"71088":71089,"71089":71090,"71090":71091,"71091":71092,"71092":71093,"71093":71094,"71094":71095,"71095":71096,"71096":71097,"71097":71098,"71098":71099,"71099":71100,"71100":71101,"71101":71102,"71102":71103,"71103":71104,"71104":71105,"71105":71106,"71106":71107,"71107":71108,"71108":71109,"71109":71110,"71110":71111,"71111":71112,"71112":71113,"71113":71114,"71114":71115,"71115":71116,"71116":71117,"71117":71118,"71118":71119,"71119":71120,"71120":71121,"71121":71122,"71122":71123,"71123":71124,"71124":71125,"71125":71126,"71126":71127,"71127":71128,"71128":71129,"71129":71130,"71130":71131,"71131":71132,"71132":71133,"71133":71134,"71134":71135,"71135":71136,"71136":71137,"71137":71138,"71138":71139,"71139":71140,"71140":71141,"71141":71142,"71142":71143,"71143":71144,"71144":71145,"71145":71146,"71146":71147,"71147":71148,"71148":71149,"71149":71150,"71150":71151,"71151":71152,"71152":71153,"71153":71154,"71154":71155,"71155":71156,"71156":71157,"71157":71158,"71158":71159,"71159":71160,"71160":71161,"71161":71162,"71162":71163,"71163":71164,"71164":71165,"71165":71166,"71166":71167,"71167":71168,"71168":71169,"71169":71170,"71170":71171,"71171":71172,"71172":71173,"71173":71174,"71174":71175,"71175":71176,"71176":71177,"71177":71178,"71178":71179,"71179":71180,"71180":71181,"71181":71182,"71182":71183,"71183":71184,"71184":71185,"71185":71186,"71186":71187,"71187":71188,"71188":71189,"71189":71190,"71190":71191,"71191":71192,"71192":71193,"71193":71194,"71194":71195,"71195":71196,"71196":71197,"71197":71198,"71198":71199,"71199":71200,"71200":71201,"71201":71202,"71202":71203,"71203":71204,"71204":71205,"71205":71206,"71206":71207,"71207":71208,"71208":71209,"71209":71210,"71210":71211,"71211":71212,"71212":71213,"71213":71214,"71214":71215,"71215":71216,"71216":71217,"71217":71218,"71218":71219,"71219":71220,"71220":71221,"71221":71222,"71222":71223,"71223":71224,"71224":71225,"71225":71226,"71226":71227,"71227":71228,"71228":71229,"71229":71230,"71230":71231,"71231":71232,"71232":71233,"71233":71234,"71234":71235,"71235":71236,"71236":71237,"71237":71238,"71238":71239,"71239":71240,"71240":71241,"71241":71242,"71242":71243,"71243":71244,"71244":71245,"71245":71246,"71246":71247,"71247":71248,"71248":71249,"71249":71250,"71250":71251,"71251":71252,"71252":71253,"71253":71254,"71254":71255,"71255":71256,"71256":71257,"71257":71258,"71258":71259,"71259":71260,"71260":71261,"71261":71262,"71262":71263,"71263":71264,"71264":71265,"71265":71266,"71266":71267,"71267":71268,"71268":71269,"71269":71270,"71270":71271,"71271":71272,"71272":71273,"71273":71274,"71274":71275,"71275":71276,"71276":71277,"71277":71278,"71278":71279,"71279":71280,"71280":71281,"71281":71282,"71282":71283,"71283":71284,"71284":71285,"71285":71286,"71286":71287,"71287":71288,"71288":71289,"71289":71290,"71290":71291,"71291":71292,"71292":71293,"71293":71294,"71294":71295,"71295":71296,"71296":71297,"71297":71298,"71298":71299,"71299":71300,"71300":71301,"71301":71302,"71302":71303,"71303":71304,"71304":71305,"71305":71306,"71306":71307,"71307":71308,"71308":71309,"71309":71310,"71310":71311,"71311":71312,"71312":71313,"71313":71314,"71314":71315,"71315":71316,"71316":71317,"71317":71318,"71318":71319,"71319":71320,"71320":71321,"71321":71322,"71322":71323,"71323":71324,"71324":71325,"71325":71326,"71326":71327,"71327":71328,"71328":71329,"71329":71330,"71330":71331,"71331":71332,"71332":71333,"71333":71334,"71334":71335,"71335":71336,"71336":71337,"71337":71338,"71338":71339,"71339":71340,"71340":71341,"71341":71342,"71342":71343,"71343":71344,"71344":71345,"71345":71346,"71346":71347,"71347":71348,"71348":71349,"71349":71350,"71350":71351,"71351":71352,"71352":71353,"71353":71354,"71354":71355,"71355":71356,"71356":71357,"71357":71358,"71358":71359,"71359":71360,"71360":71361,"71361":71362,"71362":71363,"71363":71364,"71364":71365,"71365":71366,"71366":71367,"71367":71368,"71368":71369,"71369":71370,"71370":71371,"71371":71372,"71372":71373,"71373":71374,"71374":71375,"71375":71376,"71376":71377,"71377":71378,"71378":71379,"71379":71380,"71380":71381,"71381":71382,"71382":71383,"71383":71384,"71384":71385,"71385":71386,"71386":71387,"71387":71388,"71388":71389,"71389":71390,"71390":71391,"71391":71392,"71392":71393,"71393":71394,"71394":71395,"71395":71396,"71396":71397,"71397":71398,"71398":71399,"71399":71400,"71400":71401,"71401":71402,"71402":71403,"71403":71404,"71404":71405,"71405":71406,"71406":71407,"71407":71408,"71408":71409,"71409":71410,"71410":71411,"71411":71412,"71412":71413,"71413":71414,"71414":71415,"71415":71416,"71416":71417,"71417":71418,"71418":71419,"71419":71420,"71420":71421,"71421":71422,"71422":71423,"71423":71424,"71424":71425,"71425":71426,"71426":71427,"71427":71428,"71428":71429,"71429":71430,"71430":71431,"71431":71432,"71432":71433,"71433":71434,"71434":71435,"71435":71436,"71436":71437,"71437":71438,"71438":71439,"71439":71440,"71440":71441,"71441":71442,"71442":71443,"71443":71444,"71444":71445,"71445":71446,"71446":71447,"71447":71448,"71448":71449,"71449":71450,"71450":71451,"71451":71452,"71452":71453,"71453":71454,"71454":71455,"71455":71456,"71456":71457,"71457":71458,"71458":71459,"71459":71460,"71460":71461,"71461":71462,"71462":71463,"71463":71464,"71464":71465,"71465":71466,"71466":71467,"71467":71468,"71468":71469,"71469":71470,"71470":71471,"71471":71472,"71472":71473,"71473":71474,"71474":71475,"71475":71476,"71476":71477,"71477":71478,"71478":71479,"71479":71480,"71480":71481,"71481":71482,"71482":71483,"71483":71484,"71484":71485,"71485":71486,"71486":71487,"71487":71488,"71488":71489,"71489":71490,"71490":71491,"71491":71492,"71492":71493,"71493":71494,"71494":71495,"71495":71496,"71496":71497,"71497":71498,"71498":71499,"71499":71500,"71500":71501,"71501":71502,"71502":71503,"71503":71504,"71504":71505,"71505":71506,"71506":71507,"71507":71508,"71508":71509,"71509":71510,"71510":71511,"71511":71512,"71512":71513,"71513":71514,"71514":71515,"71515":71516,"71516":71517,"71517":71518,"71518":71519,"71519":71520,"71520":71521,"71521":71522,"71522":71523,"71523":71524,"71524":71525,"71525":71526,"71526":71527,"71527":71528,"71528":71529,"71529":71530,"71530":71531,"71531":71532,"71532":71533,"71533":71534,"71534":71535,"71535":71536,"71536":71537,"71537":71538,"71538":71539,"71539":71540,"71540":71541,"71541":71542,"71542":71543,"71543":71544,"71544":71545,"71545":71546,"71546":71547,"71547":71548,"71548":71549,"71549":71550,"71550":71551,"71551":71552,"71552":71553,"71553":71554,"71554":71555,"71555":71556,"71556":71557,"71557":71558,"71558":71559,"71559":71560,"71560":71561,"71561":71562,"71562":71563,"71563":71564,"71564":71565,"71565":71566,"71566":71567,"71567":71568,"71568":71569,"71569":71570,"71570":71571,"71571":71572,"71572":71573,"71573":71574,"71574":71575,"71575":71576,"71576":71577,"71577":71578,"71578":71579,"71579":71580,"71580":71581,"71581":71582,"71582":71583,"71583":71584,"71584":71585,"71585":71586,"71586":71587,"71587":71588,"71588":71589,"71589":71590,"71590":71591,"71591":71592,"71592":71593,"71593":71594,"71594":71595,"71595":71596,"71596":71597,"71597":71598,"71598":71599,"71599":71600,"71600":71601,"71601":71602,"71602":71603,"71603":71604,"71604":71605,"71605":71606,"71606":71607,"71607":71608,"71608":71609,"71609":71610,"71610":71611,"71611":71612,"71612":71613,"71613":71614,"71614":71615,"71615":71616,"71616":71617,"71617":71618,"71618":71619,"71619":71620,"71620":71621,"71621":71622,"71622":71623,"71623":71624,"71624":71625,"71625":71626,"71626":71627,"71627":71628,"71628":71629,"71629":71630,"71630":71631,"71631":71632,"71632":71633,"71633":71634,"71634":71635,"71635":71636,"71636":71637,"71637":71638,"71638":71639,"71639":71640,"71640":71641,"71641":71642,"71642":71643,"71643":71644,"71644":71645,"71645":71646,"71646":71647,"71647":71648,"71648":71649,"71649":71650,"71650":71651,"71651":71652,"71652":71653,"71653":71654,"71654":71655,"71655":71656,"71656":71657,"71657":71658,"71658":71659,"71659":71660,"71660":71661,"71661":71662,"71662":71663,"71663":71664,"71664":71665,"71665":71666,"71666":71667,"71667":71668,"71668":71669,"71669":71670,"71670":71671,"71671":71672,"71672":71673,"71673":71674,"71674":71675,"71675":71676,"71676":71677,"71677":71678,"71678":71679,"71679":71680,"71680":71681,"71681":71682,"71682":71683,"71683":71684,"71684":71685,"71685":71686,"71686":71687,"71687":71688,"71688":71689,"71689":71690,"71690":71691,"71691":71692,"71692":71693,"71693":71694,"71694":71695,"71695":71696,"71696":71697,"71697":71698,"71698":71699,"71699":71700,"71700":71701,"71701":71702,"71702":71703,"71703":71704,"71704":71705,"71705":71706,"71706":71707,"71707":71708,"71708":71709,"71709":71710,"71710":71711,"71711":71712,"71712":71713,"71713":71714,"71714":71715,"71715":71716,"71716":71717,"71717":71718,"71718":71719,"71719":71720,"71720":71721,"71721":71722,"71722":71723,"71723":71724,"71724":71725,"71725":71726,"71726":71727,"71727":71728,"71728":71729,"71729":71730,"71730":71731,"71731":71732,"71732":71733,"71733":71734,"71734":71735,"71735":71736,"71736":71737,"71737":71738,"71738":71739,"71739":71740,"71740":71741,"71741":71742,"71742":71743,"71743":71744,"71744":71745,"71745":71746,"71746":71747,"71747":71748,"71748":71749,"71749":71750,"71750":71751,"71751":71752,"71752":71753,"71753":71754,"71754":71755,"71755":71756,"71756":71757,"71757":71758,"71758":71759,"71759":71760,"71760":71761,"71761":71762,"71762":71763,"71763":71764,"71764":71765,"71765":71766,"71766":71767,"71767":71768,"71768":71769,"71769":71770,"71770":71771,"71771":71772,"71772":71773,"71773":71774,"71774":71775,"71775":71776,"71776":71777,"71777":71778,"71778":71779,"71779":71780,"71780":71781,"71781":71782,"71782":71783,"71783":71784,"71784":71785,"71785":71786,"71786":71787,"71787":71788,"71788":71789,"71789":71790,"71790":71791,"71791":71792,"71792":71793,"71793":71794,"71794":71795,"71795":71796,"71796":71797,"71797":71798,"71798":71799,"71799":71800,"71800":71801,"71801":71802,"71802":71803,"71803":71804,"71804":71805,"71805":71806,"71806":71807,"71807":71808,"71808":71809,"71809":71810,"71810":71811,"71811":71812,"71812":71813,"71813":71814,"71814":71815,"71815":71816,"71816":71817,"71817":71818,"71818":71819,"71819":71820,"71820":71821,"71821":71822,"71822":71823,"71823":71824,"71824":71825,"71825":71826,"71826":71827,"71827":71828,"71828":71829,"71829":71830,"71830":71831,"71831":71832,"71832":71833,"71833":71834,"71834":71835,"71835":71836,"71836":71837,"71837":71838,"71838":71839,"71839":71840,"71840":71841,"71841":71842,"71842":71843,"71843":71844,"71844":71845,"71845":71846,"71846":71847,"71847":71848,"71848":71849,"71849":71850,"71850":71851,"71851":71852,"71852":71853,"71853":71854,"71854":71855,"71855":71856,"71856":71857,"71857":71858,"71858":71859,"71859":71860,"71860":71861,"71861":71862,"71862":71863,"71863":71864,"71864":71865,"71865":71866,"71866":71867,"71867":71868,"71868":71869,"71869":71870,"71870":71871,"71871":71872,"71872":71873,"71873":71874,"71874":71875,"71875":71876,"71876":71877,"71877":71878,"71878":71879,"71879":71880,"71880":71881,"71881":71882,"71882":71883,"71883":71884,"71884":71885,"71885":71886,"71886":71887,"71887":71888,"71888":71889,"71889":71890,"71890":71891,"71891":71892,"71892":71893,"71893":71894,"71894":71895,"71895":71896,"71896":71897,"71897":71898,"71898":71899,"71899":71900,"71900":71901,"71901":71902,"71902":71903,"71903":71904,"71904":71905,"71905":71906,"71906":71907,"71907":71908,"71908":71909,"71909":71910,"71910":71911,"71911":71912,"71912":71913,"71913":71914,"71914":71915,"71915":71916,"71916":71917,"71917":71918,"71918":71919,"71919":71920,"71920":71921,"71921":71922,"71922":71923,"71923":71924,"71924":71925,"71925":71926,"71926":71927,"71927":71928,"71928":71929,"71929":71930,"71930":71931,"71931":71932,"71932":71933,"71933":71934,"71934":71935,"71935":71936,"71936":71937,"71937":71938,"71938":71939,"71939":71940,"71940":71941,"71941":71942,"71942":71943,"71943":71944,"71944":71945,"71945":71946,"71946":71947,"71947":71948,"71948":71949,"71949":71950,"71950":71951,"71951":71952,"71952":71953,"71953":71954,"71954":71955,"71955":71956,"71956":71957,"71957":71958,"71958":71959,"71959":71960,"71960":71961,"71961":71962,"71962":71963,"71963":71964,"71964":71965,"71965":71966,"71966":71967,"71967":71968,"71968":71969,"71969":71970,"71970":71971,"71971":71972,"71972":71973,"71973":71974,"71974":71975,"71975":71976,"71976":71977,"71977":71978,"71978":71979,"71979":71980,"71980":71981,"71981":71982,"71982":71983,"71983":71984,"71984":71985,"71985":71986,"71986":71987,"71987":71988,"71988":71989,"71989":71990,"71990":71991,"71991":71992,"71992":71993,"71993":71994,"71994":71995,"71995":71996,"71996":71997,"71997":71998,"71998":71999,"71999":72000,"72000":72001,"72001":72002,"72002":72003,"72003":72004,"72004":72005,"72005":72006,"72006":72007,"72007":72008,"72008":72009,"72009":72010,"72010":72011,"72011":72012,"72012":72013,"72013":72014,"72014":72015,"72015":72016,"72016":72017,"72017":72018,"72018":72019,"72019":72020,"72020":72021,"72021":72022,"72022":72023,"72023":72024,"72024":72025,"72025":72026,"72026":72027,"72027":72028,"72028":72029,"72029":72030,"72030":72031,"72031":72032,"72032":72033,"72033":72034,"72034":72035,"72035":72036,"72036":72037,"72037":72038,"72038":72039,"72039":72040,"72040":72041,"72041":72042,"72042":72043,"72043":72044,"72044":72045,"72045":72046,"72046":72047,"72047":72048,"72048":72049,"72049":72050,"72050":72051,"72051":72052,"72052":72053,"72053":72054,"72054":72055,"72055":72056,"72056":72057,"72057":72058,"72058":72059,"72059":72060,"72060":72061,"72061":72062,"72062":72063,"72063":72064,"72064":72065,"72065":72066,"72066":72067,"72067":72068,"72068":72069,"72069":72070,"72070":72071,"72071":72072,"72072":72073,"72073":72074,"72074":72075,"72075":72076,"72076":72077,"72077":72078,"72078":72079,"72079":72080,"72080":72081,"72081":72082,"72082":72083,"72083":72084,"72084":72085,"72085":72086,"72086":72087,"72087":72088,"72088":72089,"72089":72090,"72090":72091,"72091":72092,"72092":72093,"72093":72094,"72094":72095,"72095":72096,"72096":72097,"72097":72098,"72098":72099,"72099":72100,"72100":72101,"72101":72102,"72102":72103,"72103":72104,"72104":72105,"72105":72106,"72106":72107,"72107":72108,"72108":72109,"72109":72110,"72110":72111,"72111":72112,"72112":72113,"72113":72114,"72114":72115,"72115":72116,"72116":72117,"72117":72118,"72118":72119,"72119":72120,"72120":72121,"72121":72122,"72122":72123,"72123":72124,"72124":72125,"72125":72126,"72126":72127,"72127":72128,"72128":72129,"72129":72130,"72130":72131,"72131":72132,"72132":72133,"72133":72134,"72134":72135,"72135":72136,"72136":72137,"72137":72138,"72138":72139,"72139":72140,"72140":72141,"72141":72142,"72142":72143,"72143":72144,"72144":72145,"72145":72146,"72146":72147,"72147":72148,"72148":72149,"72149":72150,"72150":72151,"72151":72152,"72152":72153,"72153":72154,"72154":72155,"72155":72156,"72156":72157,"72157":72158,"72158":72159,"72159":72160,"72160":72161,"72161":72162,"72162":72163,"72163":72164,"72164":72165,"72165":72166,"72166":72167,"72167":72168,"72168":72169,"72169":72170,"72170":72171,"72171":72172,"72172":72173,"72173":72174,"72174":72175,"72175":72176,"72176":72177,"72177":72178,"72178":72179,"72179":72180,"72180":72181,"72181":72182,"72182":72183,"72183":72184,"72184":72185,"72185":72186,"72186":72187,"72187":72188,"72188":72189,"72189":72190,"72190":72191,"72191":72192,"72192":72193,"72193":72194,"72194":72195,"72195":72196,"72196":72197,"72197":72198,"72198":72199,"72199":72200,"72200":72201,"72201":72202,"72202":72203,"72203":72204,"72204":72205,"72205":72206,"72206":72207,"72207":72208,"72208":72209,"72209":72210,"72210":72211,"72211":72212,"72212":72213,"72213":72214,"72214":72215,"72215":72216,"72216":72217,"72217":72218,"72218":72219,"72219":72220,"72220":72221,"72221":72222,"72222":72223,"72223":72224,"72224":72225,"72225":72226,"72226":72227,"72227":72228,"72228":72229,"72229":72230,"72230":72231,"72231":72232,"72232":72233,"72233":72234,"72234":72235,"72235":72236,"72236":72237,"72237":72238,"72238":72239,"72239":72240,"72240":72241,"72241":72242,"72242":72243,"72243":72244,"72244":72245,"72245":72246,"72246":72247,"72247":72248,"72248":72249,"72249":72250,"72250":72251,"72251":72252,"72252":72253,"72253":72254,"72254":72255,"72255":72256,"72256":72257,"72257":72258,"72258":72259,"72259":72260,"72260":72261,"72261":72262,"72262":72263,"72263":72264,"72264":72265,"72265":72266,"72266":72267,"72267":72268,"72268":72269,"72269":72270,"72270":72271,"72271":72272,"72272":72273,"72273":72274,"72274":72275,"72275":72276,"72276":72277,"72277":72278,"72278":72279,"72279":72280,"72280":72281,"72281":72282,"72282":72283,"72283":72284,"72284":72285,"72285":72286,"72286":72287,"72287":72288,"72288":72289,"72289":72290,"72290":72291,"72291":72292,"72292":72293,"72293":72294,"72294":72295,"72295":72296,"72296":72297,"72297":72298,"72298":72299,"72299":72300,"72300":72301,"72301":72302,"72302":72303,"72303":72304,"72304":72305,"72305":72306,"72306":72307,"72307":72308,"72308":72309,"72309":72310,"72310":72311,"72311":72312,"72312":72313,"72313":72314,"72314":72315,"72315":72316,"72316":72317,"72317":72318,"72318":72319,"72319":72320,"72320":72321,"72321":72322,"72322":72323,"72323":72324,"72324":72325,"72325":72326,"72326":72327,"72327":72328,"72328":72329,"72329":72330,"72330":72331,"72331":72332,"72332":72333,"72333":72334,"72334":72335,"72335":72336,"72336":72337,"72337":72338,"72338":72339,"72339":72340,"72340":72341,"72341":72342,"72342":72343,"72343":72344,"72344":72345,"72345":72346,"72346":72347,"72347":72348,"72348":72349,"72349":72350,"72350":72351,"72351":72352,"72352":72353,"72353":72354,"72354":72355,"72355":72356,"72356":72357,"72357":72358,"72358":72359,"72359":72360,"72360":72361,"72361":72362,"72362":72363,"72363":72364,"72364":72365,"72365":72366,"72366":72367,"72367":72368,"72368":72369,"72369":72370,"72370":72371,"72371":72372,"72372":72373,"72373":72374,"72374":72375,"72375":72376,"72376":72377,"72377":72378,"72378":72379,"72379":72380,"72380":72381,"72381":72382,"72382":72383,"72383":72384,"72384":72385,"72385":72386,"72386":72387,"72387":72388,"72388":72389,"72389":72390,"72390":72391,"72391":72392,"72392":72393,"72393":72394,"72394":72395,"72395":72396,"72396":72397,"72397":72398,"72398":72399,"72399":72400,"72400":72401,"72401":72402,"72402":72403,"72403":72404,"72404":72405,"72405":72406,"72406":72407,"72407":72408,"72408":72409,"72409":72410,"72410":72411,"72411":72412,"72412":72413,"72413":72414,"72414":72415,"72415":72416,"72416":72417,"72417":72418,"72418":72419,"72419":72420,"72420":72421,"72421":72422,"72422":72423,"72423":72424,"72424":72425,"72425":72426,"72426":72427,"72427":72428,"72428":72429,"72429":72430,"72430":72431,"72431":72432,"72432":72433,"72433":72434,"72434":72435,"72435":72436,"72436":72437,"72437":72438,"72438":72439,"72439":72440,"72440":72441,"72441":72442,"72442":72443,"72443":72444,"72444":72445,"72445":72446,"72446":72447,"72447":72448,"72448":72449,"72449":72450,"72450":72451,"72451":72452,"72452":72453,"72453":72454,"72454":72455,"72455":72456,"72456":72457,"72457":72458,"72458":72459,"72459":72460,"72460":72461,"72461":72462,"72462":72463,"72463":72464,"72464":72465,"72465":72466,"72466":72467,"72467":72468,"72468":72469,"72469":72470,"72470":72471,"72471":72472,"72472":72473,"72473":72474,"72474":72475,"72475":72476,"72476":72477,"72477":72478,"72478":72479,"72479":72480,"72480":72481,"72481":72482,"72482":72483,"72483":72484,"72484":72485,"72485":72486,"72486":72487,"72487":72488,"72488":72489,"72489":72490,"72490":72491,"72491":72492,"72492":72493,"72493":72494,"72494":72495,"72495":72496,"72496":72497,"72497":72498,"72498":72499,"72499":72500,"72500":72501,"72501":72502,"72502":72503,"72503":72504,"72504":72505,"72505":72506,"72506":72507,"72507":72508,"72508":72509,"72509":72510,"72510":72511,"72511":72512,"72512":72513,"72513":72514,"72514":72515,"72515":72516,"72516":72517,"72517":72518,"72518":72519,"72519":72520,"72520":72521,"72521":72522,"72522":72523,"72523":72524,"72524":72525,"72525":72526,"72526":72527,"72527":72528,"72528":72529,"72529":72530,"72530":72531,"72531":72532,"72532":72533,"72533":72534,"72534":72535,"72535":72536,"72536":72537,"72537":72538,"72538":72539,"72539":72540,"72540":72541,"72541":72542,"72542":72543,"72543":72544,"72544":72545,"72545":72546,"72546":72547,"72547":72548,"72548":72549,"72549":72550,"72550":72551,"72551":72552,"72552":72553,"72553":72554,"72554":72555,"72555":72556,"72556":72557,"72557":72558,"72558":72559,"72559":72560,"72560":72561,"72561":72562,"72562":72563,"72563":72564,"72564":72565,"72565":72566,"72566":72567,"72567":72568,"72568":72569,"72569":72570,"72570":72571,"72571":72572,"72572":72573,"72573":72574,"72574":72575,"72575":72576,"72576":72577,"72577":72578,"72578":72579,"72579":72580,"72580":72581,"72581":72582,"72582":72583,"72583":72584,"72584":72585,"72585":72586,"72586":72587,"72587":72588,"72588":72589,"72589":72590,"72590":72591,"72591":72592,"72592":72593,"72593":72594,"72594":72595,"72595":72596,"72596":72597,"72597":72598,"72598":72599,"72599":72600,"72600":72601,"72601":72602,"72602":72603,"72603":72604,"72604":72605,"72605":72606,"72606":72607,"72607":72608,"72608":72609,"72609":72610,"72610":72611,"72611":72612,"72612":72613,"72613":72614,"72614":72615,"72615":72616,"72616":72617,"72617":72618,"72618":72619,"72619":72620,"72620":72621,"72621":72622,"72622":72623,"72623":72624,"72624":72625,"72625":72626,"72626":72627,"72627":72628,"72628":72629,"72629":72630,"72630":72631,"72631":72632,"72632":72633,"72633":72634,"72634":72635,"72635":72636,"72636":72637,"72637":72638,"72638":72639,"72639":72640,"72640":72641,"72641":72642,"72642":72643,"72643":72644,"72644":72645,"72645":72646,"72646":72647,"72647":72648,"72648":72649,"72649":72650,"72650":72651,"72651":72652,"72652":72653,"72653":72654,"72654":72655,"72655":72656,"72656":72657,"72657":72658,"72658":72659,"72659":72660,"72660":72661,"72661":72662,"72662":72663,"72663":72664,"72664":72665,"72665":72666,"72666":72667,"72667":72668,"72668":72669,"72669":72670,"72670":72671,"72671":72672,"72672":72673,"72673":72674,"72674":72675,"72675":72676,"72676":72677,"72677":72678,"72678":72679,"72679":72680,"72680":72681,"72681":72682,"72682":72683,"72683":72684,"72684":72685,"72685":72686,"72686":72687,"72687":72688,"72688":72689,"72689":72690,"72690":72691,"72691":72692,"72692":72693,"72693":72694,"72694":72695,"72695":72696,"72696":72697,"72697":72698,"72698":72699,"72699":72700,"72700":72701,"72701":72702,"72702":72703,"72703":72704,"72704":72705,"72705":72706,"72706":72707,"72707":72708,"72708":72709,"72709":72710,"72710":72711,"72711":72712,"72712":72713,"72713":72714,"72714":72715,"72715":72716,"72716":72717,"72717":72718,"72718":72719,"72719":72720,"72720":72721,"72721":72722,"72722":72723,"72723":72724,"72724":72725,"72725":72726,"72726":72727,"72727":72728,"72728":72729,"72729":72730,"72730":72731,"72731":72732,"72732":72733,"72733":72734,"72734":72735,"72735":72736,"72736":72737,"72737":72738,"72738":72739,"72739":72740,"72740":72741,"72741":72742,"72742":72743,"72743":72744,"72744":72745,"72745":72746,"72746":72747,"72747":72748,"72748":72749,"72749":72750,"72750":72751,"72751":72752,"72752":72753,"72753":72754,"72754":72755,"72755":72756,"72756":72757,"72757":72758,"72758":72759,"72759":72760,"72760":72761,"72761":72762,"72762":72763,"72763":72764,"72764":72765,"72765":72766,"72766":72767,"72767":72768,"72768":72769,"72769":72770,"72770":72771,"72771":72772,"72772":72773,"72773":72774,"72774":72775,"72775":72776,"72776":72777,"72777":72778,"72778":72779,"72779":72780,"72780":72781,"72781":72782,"72782":72783,"72783":72784,"72784":72785,"72785":72786,"72786":72787,"72787":72788,"72788":72789,"72789":72790,"72790":72791,"72791":72792,"72792":72793,"72793":72794,"72794":72795,"72795":72796,"72796":72797,"72797":72798,"72798":72799,"72799":72800,"72800":72801,"72801":72802,"72802":72803,"72803":72804,"72804":72805,"72805":72806,"72806":72807,"72807":72808,"72808":72809,"72809":72810,"72810":72811,"72811":72812,"72812":72813,"72813":72814,"72814":72815,"72815":72816,"72816":72817,"72817":72818,"72818":72819,"72819":72820,"72820":72821,"72821":72822,"72822":72823,"72823":72824,"72824":72825,"72825":72826,"72826":72827,"72827":72828,"72828":72829,"72829":72830,"72830":72831,"72831":72832,"72832":72833,"72833":72834,"72834":72835,"72835":72836,"72836":72837,"72837":72838,"72838":72839,"72839":72840,"72840":72841,"72841":72842,"72842":72843,"72843":72844,"72844":72845,"72845":72846,"72846":72847,"72847":72848,"72848":72849,"72849":72850,"72850":72851,"72851":72852,"72852":72853,"72853":72854,"72854":72855,"72855":72856,"72856":72857,"72857":72858,"72858":72859,"72859":72860,"72860":72861,"72861":72862,"72862":72863,"72863":72864,"72864":72865,"72865":72866,"72866":72867,"72867":72868,"72868":72869,"72869":72870,"72870":72871,"72871":72872,"72872":72873,"72873":72874,"72874":72875,"72875":72876,"72876":72877,"72877":72878,"72878":72879,"72879":72880,"72880":72881,"72881":72882,"72882":72883,"72883":72884,"72884":72885,"72885":72886,"72886":72887,"72887":72888,"72888":72889,"72889":72890,"72890":72891,"72891":72892,"72892":72893,"72893":72894,"72894":72895,"72895":72896,"72896":72897,"72897":72898,"72898":72899,"72899":72900,"72900":72901,"72901":72902,"72902":72903,"72903":72904,"72904":72905,"72905":72906,"72906":72907,"72907":72908,"72908":72909,"72909":72910,"72910":72911,"72911":72912,"72912":72913,"72913":72914,"72914":72915,"72915":72916,"72916":72917,"72917":72918,"72918":72919,"72919":72920,"72920":72921,"72921":72922,"72922":72923,"72923":72924,"72924":72925,"72925":72926,"72926":72927,"72927":72928,"72928":72929,"72929":72930,"72930":72931,"72931":72932,"72932":72933,"72933":72934,"72934":72935,"72935":72936,"72936":72937,"72937":72938,"72938":72939,"72939":72940,"72940":72941,"72941":72942,"72942":72943,"72943":72944,"72944":72945,"72945":72946,"72946":72947,"72947":72948,"72948":72949,"72949":72950,"72950":72951,"72951":72952,"72952":72953,"72953":72954,"72954":72955,"72955":72956,"72956":72957,"72957":72958,"72958":72959,"72959":72960,"72960":72961,"72961":72962,"72962":72963,"72963":72964,"72964":72965,"72965":72966,"72966":72967,"72967":72968,"72968":72969,"72969":72970,"72970":72971,"72971":72972,"72972":72973,"72973":72974,"72974":72975,"72975":72976,"72976":72977,"72977":72978,"72978":72979,"72979":72980,"72980":72981,"72981":72982,"72982":72983,"72983":72984,"72984":72985,"72985":72986,"72986":72987,"72987":72988,"72988":72989,"72989":72990,"72990":72991,"72991":72992,"72992":72993,"72993":72994,"72994":72995,"72995":72996,"72996":72997,"72997":72998,"72998":72999,"72999":73000,"73000":73001,"73001":73002,"73002":73003,"73003":73004,"73004":73005,"73005":73006,"73006":73007,"73007":73008,"73008":73009,"73009":73010,"73010":73011,"73011":73012,"73012":73013,"73013":73014,"73014":73015,"73015":73016,"73016":73017,"73017":73018,"73018":73019,"73019":73020,"73020":73021,"73021":73022,"73022":73023,"73023":73024,"73024":73025,"73025":73026,"73026":73027,"73027":73028,"73028":73029,"73029":73030,"73030":73031,"73031":73032,"73032":73033,"73033":73034,"73034":73035,"73035":73036,"73036":73037,"73037":73038,"73038":73039,"73039":73040,"73040":73041,"73041":73042,"73042":73043,"73043":73044,"73044":73045,"73045":73046,"73046":73047,"73047":73048,"73048":73049,"73049":73050,"73050":73051,"73051":73052,"73052":73053,"73053":73054,"73054":73055,"73055":73056,"73056":73057,"73057":73058,"73058":73059,"73059":73060,"73060":73061,"73061":73062,"73062":73063,"73063":73064,"73064":73065,"73065":73066,"73066":73067,"73067":73068,"73068":73069,"73069":73070,"73070":73071,"73071":73072,"73072":73073,"73073":73074,"73074":73075,"73075":73076,"73076":73077,"73077":73078,"73078":73079,"73079":73080,"73080":73081,"73081":73082,"73082":73083,"73083":73084,"73084":73085,"73085":73086,"73086":73087,"73087":73088,"73088":73089,"73089":73090,"73090":73091,"73091":73092,"73092":73093,"73093":73094,"73094":73095,"73095":73096,"73096":73097,"73097":73098,"73098":73099,"73099":73100,"73100":73101,"73101":73102,"73102":73103,"73103":73104,"73104":73105,"73105":73106,"73106":73107,"73107":73108,"73108":73109,"73109":73110,"73110":73111,"73111":73112,"73112":73113,"73113":73114,"73114":73115,"73115":73116,"73116":73117,"73117":73118,"73118":73119,"73119":73120,"73120":73121,"73121":73122,"73122":73123,"73123":73124,"73124":73125,"73125":73126,"73126":73127,"73127":73128,"73128":73129,"73129":73130,"73130":73131,"73131":73132,"73132":73133,"73133":73134,"73134":73135,"73135":73136,"73136":73137,"73137":73138,"73138":73139,"73139":73140,"73140":73141,"73141":73142,"73142":73143,"73143":73144,"73144":73145,"73145":73146,"73146":73147,"73147":73148,"73148":73149,"73149":73150,"73150":73151,"73151":73152,"73152":73153,"73153":73154,"73154":73155,"73155":73156,"73156":73157,"73157":73158,"73158":73159,"73159":73160,"73160":73161,"73161":73162,"73162":73163,"73163":73164,"73164":73165,"73165":73166,"73166":73167,"73167":73168,"73168":73169,"73169":73170,"73170":73171,"73171":73172,"73172":73173,"73173":73174,"73174":73175,"73175":73176,"73176":73177,"73177":73178,"73178":73179,"73179":73180,"73180":73181,"73181":73182,"73182":73183,"73183":73184,"73184":73185,"73185":73186,"73186":73187,"73187":73188,"73188":73189,"73189":73190,"73190":73191,"73191":73192,"73192":73193,"73193":73194,"73194":73195,"73195":73196,"73196":73197,"73197":73198,"73198":73199,"73199":73200,"73200":73201,"73201":73202,"73202":73203,"73203":73204,"73204":73205,"73205":73206,"73206":73207,"73207":73208,"73208":73209,"73209":73210,"73210":73211,"73211":73212,"73212":73213,"73213":73214,"73214":73215,"73215":73216,"73216":73217,"73217":73218,"73218":73219,"73219":73220,"73220":73221,"73221":73222,"73222":73223,"73223":73224,"73224":73225,"73225":73226,"73226":73227,"73227":73228,"73228":73229,"73229":73230,"73230":73231,"73231":73232,"73232":73233,"73233":73234,"73234":73235,"73235":73236,"73236":73237,"73237":73238,"73238":73239,"73239":73240,"73240":73241,"73241":73242,"73242":73243,"73243":73244,"73244":73245,"73245":73246,"73246":73247,"73247":73248,"73248":73249,"73249":73250,"73250":73251,"73251":73252,"73252":73253,"73253":73254,"73254":73255,"73255":73256,"73256":73257,"73257":73258,"73258":73259,"73259":73260,"73260":73261,"73261":73262,"73262":73263,"73263":73264,"73264":73265,"73265":73266,"73266":73267,"73267":73268,"73268":73269,"73269":73270,"73270":73271,"73271":73272,"73272":73273,"73273":73274,"73274":73275,"73275":73276,"73276":73277,"73277":73278,"73278":73279,"73279":73280,"73280":73281,"73281":73282,"73282":73283,"73283":73284,"73284":73285,"73285":73286,"73286":73287,"73287":73288,"73288":73289,"73289":73290,"73290":73291,"73291":73292,"73292":73293,"73293":73294,"73294":73295,"73295":73296,"73296":73297,"73297":73298,"73298":73299,"73299":73300,"73300":73301,"73301":73302,"73302":73303,"73303":73304,"73304":73305,"73305":73306,"73306":73307,"73307":73308,"73308":73309,"73309":73310,"73310":73311,"73311":73312,"73312":73313,"73313":73314,"73314":73315,"73315":73316,"73316":73317,"73317":73318,"73318":73319,"73319":73320,"73320":73321,"73321":73322,"73322":73323,"73323":73324,"73324":73325,"73325":73326,"73326":73327,"73327":73328,"73328":73329,"73329":73330,"73330":73331,"73331":73332,"73332":73333,"73333":73334,"73334":73335,"73335":73336,"73336":73337,"73337":73338,"73338":73339,"73339":73340,"73340":73341,"73341":73342,"73342":73343,"73343":73344,"73344":73345,"73345":73346,"73346":73347,"73347":73348,"73348":73349,"73349":73350,"73350":73351,"73351":73352,"73352":73353,"73353":73354,"73354":73355,"73355":73356,"73356":73357,"73357":73358,"73358":73359,"73359":73360,"73360":73361,"73361":73362,"73362":73363,"73363":73364,"73364":73365,"73365":73366,"73366":73367,"73367":73368,"73368":73369,"73369":73370,"73370":73371,"73371":73372,"73372":73373,"73373":73374,"73374":73375,"73375":73376,"73376":73377,"73377":73378,"73378":73379,"73379":73380,"73380":73381,"73381":73382,"73382":73383,"73383":73384,"73384":73385,"73385":73386,"73386":73387,"73387":73388,"73388":73389,"73389":73390,"73390":73391,"73391":73392,"73392":73393,"73393":73394,"73394":73395,"73395":73396,"73396":73397,"73397":73398,"73398":73399,"73399":73400,"73400":73401,"73401":73402,"73402":73403,"73403":73404,"73404":73405,"73405":73406,"73406":73407,"73407":73408,"73408":73409,"73409":73410,"73410":73411,"73411":73412,"73412":73413,"73413":73414,"73414":73415,"73415":73416,"73416":73417,"73417":73418,"73418":73419,"73419":73420,"73420":73421,"73421":73422,"73422":73423,"73423":73424,"73424":73425,"73425":73426,"73426":73427,"73427":73428,"73428":73429,"73429":73430,"73430":73431,"73431":73432,"73432":73433,"73433":73434,"73434":73435,"73435":73436,"73436":73437,"73437":73438,"73438":73439,"73439":73440,"73440":73441,"73441":73442,"73442":73443,"73443":73444,"73444":73445,"73445":73446,"73446":73447,"73447":73448,"73448":73449,"73449":73450,"73450":73451,"73451":73452,"73452":73453,"73453":73454,"73454":73455,"73455":73456,"73456":73457,"73457":73458,"73458":73459,"73459":73460,"73460":73461,"73461":73462,"73462":73463,"73463":73464,"73464":73465,"73465":73466,"73466":73467,"73467":73468,"73468":73469,"73469":73470,"73470":73471,"73471":73472,"73472":73473,"73473":73474,"73474":73475,"73475":73476,"73476":73477,"73477":73478,"73478":73479,"73479":73480,"73480":73481,"73481":73482,"73482":73483,"73483":73484,"73484":73485,"73485":73486,"73486":73487,"73487":73488,"73488":73489,"73489":73490,"73490":73491,"73491":73492,"73492":73493,"73493":73494,"73494":73495,"73495":73496,"73496":73497,"73497":73498,"73498":73499,"73499":73500,"73500":73501,"73501":73502,"73502":73503,"73503":73504,"73504":73505,"73505":73506,"73506":73507,"73507":73508,"73508":73509,"73509":73510,"73510":73511,"73511":73512,"73512":73513,"73513":73514,"73514":73515,"73515":73516,"73516":73517,"73517":73518,"73518":73519,"73519":73520,"73520":73521,"73521":73522,"73522":73523,"73523":73524,"73524":73525,"73525":73526,"73526":73527,"73527":73528,"73528":73529,"73529":73530,"73530":73531,"73531":73532,"73532":73533,"73533":73534,"73534":73535,"73535":73536,"73536":73537,"73537":73538,"73538":73539,"73539":73540,"73540":73541,"73541":73542,"73542":73543,"73543":73544,"73544":73545,"73545":73546,"73546":73547,"73547":73548,"73548":73549,"73549":73550,"73550":73551,"73551":73552,"73552":73553,"73553":73554,"73554":73555,"73555":73556,"73556":73557,"73557":73558,"73558":73559,"73559":73560,"73560":73561,"73561":73562,"73562":73563,"73563":73564,"73564":73565,"73565":73566,"73566":73567,"73567":73568,"73568":73569,"73569":73570,"73570":73571,"73571":73572,"73572":73573,"73573":73574,"73574":73575,"73575":73576,"73576":73577,"73577":73578,"73578":73579,"73579":73580,"73580":73581,"73581":73582,"73582":73583,"73583":73584,"73584":73585,"73585":73586,"73586":73587,"73587":73588,"73588":73589,"73589":73590,"73590":73591,"73591":73592,"73592":73593,"73593":73594,"73594":73595,"73595":73596,"73596":73597,"73597":73598,"73598":73599,"73599":73600,"73600":73601,"73601":73602,"73602":73603,"73603":73604,"73604":73605,"73605":73606,"73606":73607,"73607":73608,"73608":73609,"73609":73610,"73610":73611,"73611":73612,"73612":73613,"73613":73614,"73614":73615,"73615":73616,"73616":73617,"73617":73618,"73618":73619,"73619":73620,"73620":73621,"73621":73622,"73622":73623,"73623":73624,"73624":73625,"73625":73626,"73626":73627,"73627":73628,"73628":73629,"73629":73630,"73630":73631,"73631":73632,"73632":73633,"73633":73634,"73634":73635,"73635":73636,"73636":73637,"73637":73638,"73638":73639,"73639":73640,"73640":73641,"73641":73642,"73642":73643,"73643":73644,"73644":73645,"73645":73646,"73646":73647,"73647":73648,"73648":73649,"73649":73650,"73650":73651,"73651":73652,"73652":73653,"73653":73654,"73654":73655,"73655":73656,"73656":73657,"73657":73658,"73658":73659,"73659":73660,"73660":73661,"73661":73662,"73662":73663,"73663":73664,"73664":73665,"73665":73666,"73666":73667,"73667":73668,"73668":73669,"73669":73670,"73670":73671,"73671":73672,"73672":73673,"73673":73674,"73674":73675,"73675":73676,"73676":73677,"73677":73678,"73678":73679,"73679":73680,"73680":73681,"73681":73682,"73682":73683,"73683":73684,"73684":73685,"73685":73686,"73686":73687,"73687":73688,"73688":73689,"73689":73690,"73690":73691,"73691":73692,"73692":73693,"73693":73694,"73694":73695,"73695":73696,"73696":73697,"73697":73698,"73698":73699,"73699":73700,"73700":73701,"73701":73702,"73702":73703,"73703":73704,"73704":73705,"73705":73706,"73706":73707,"73707":73708,"73708":73709,"73709":73710,"73710":73711,"73711":73712,"73712":73713,"73713":73714,"73714":73715,"73715":73716,"73716":73717,"73717":73718,"73718":73719,"73719":73720,"73720":73721,"73721":73722,"73722":73723,"73723":73724,"73724":73725,"73725":73726,"73726":73727,"73727":73728,"73728":73729,"73729":73730,"73730":73731,"73731":73732,"73732":73733,"73733":73734,"73734":73735,"73735":73736,"73736":73737,"73737":73738,"73738":73739,"73739":73740,"73740":73741,"73741":73742,"73742":73743,"73743":73744,"73744":73745,"73745":73746,"73746":73747,"73747":73748,"73748":73749,"73749":73750,"73750":73751,"73751":73752,"73752":73753,"73753":73754,"73754":73755,"73755":73756,"73756":73757,"73757":73758,"73758":73759,"73759":73760,"73760":73761,"73761":73762,"73762":73763,"73763":73764,"73764":73765,"73765":73766,"73766":73767,"73767":73768,"73768":73769,"73769":73770,"73770":73771,"73771":73772,"73772":73773,"73773":73774,"73774":73775,"73775":73776,"73776":73777,"73777":73778,"73778":73779,"73779":73780,"73780":73781,"73781":73782,"73782":73783,"73783":73784,"73784":73785,"73785":73786,"73786":73787,"73787":73788,"73788":73789,"73789":73790,"73790":73791,"73791":73792,"73792":73793,"73793":73794,"73794":73795,"73795":73796,"73796":73797,"73797":73798,"73798":73799,"73799":73800,"73800":73801,"73801":73802,"73802":73803,"73803":73804,"73804":73805,"73805":73806,"73806":73807},"gender":{"0":2,"1":2,"2":1,"3":2,"4":2,"5":1,"6":2,"7":1,"8":1,"9":2,"10":1,"11":1,"12":2,"13":1,"14":2,"15":1,"16":2,"17":1,"18":1,"19":2,"20":1,"21":1,"22":2,"23":1,"24":1,"25":2,"26":1,"27":1,"28":1,"29":2,"30":1,"31":1,"32":2,"33":2,"34":2,"35":1,"36":1,"37":1,"38":2,"39":1,"40":2,"41":2,"42":2,"43":2,"44":2,"45":2,"46":1,"47":2,"48":2,"49":2,"50":2,"51":2,"52":2,"53":2,"54":2,"55":1,"56":2,"57":2,"58":2,"59":2,"60":2,"61":2,"62":2,"63":1,"64":2,"65":1,"66":1,"67":1,"68":2,"69":2,"70":1,"71":1,"72":2,"73":2,"74":1,"75":1,"76":1,"77":1,"78":2,"79":1,"80":2,"81":2,"82":2,"83":2,"84":1,"85":1,"86":2,"87":1,"88":1,"89":1,"90":1,"91":2,"92":2,"93":2,"94":2,"95":2,"96":1,"97":2,"98":1,"99":2,"100":2,"101":1,"102":2,"103":1,"104":2,"105":1,"106":1,"107":2,"108":2,"109":2,"110":1,"111":1,"112":1,"113":1,"114":1,"115":1,"116":1,"117":1,"118":1,"119":2,"120":2,"121":2,"122":2,"123":2,"124":1,"125":2,"126":2,"127":2,"128":1,"129":1,"130":2,"131":1,"132":1,"133":1,"134":2,"135":2,"136":2,"137":1,"138":2,"139":2,"140":2,"141":1,"142":2,"143":2,"144":2,"145":2,"146":2,"147":1,"148":2,"149":2,"150":1,"151":1,"152":2,"153":1,"154":2,"155":2,"156":1,"157":1,"158":1,"159":1,"160":1,"161":2,"162":1,"163":2,"164":1,"165":1,"166":1,"167":1,"168":1,"169":1,"170":2,"171":2,"172":2,"173":1,"174":1,"175":2,"176":1,"177":2,"178":2,"179":2,"180":1,"181":1,"182":1,"183":1,"184":1,"185":1,"186":1,"187":2,"188":2,"189":1,"190":1,"191":2,"192":1,"193":2,"194":1,"195":2,"196":1,"197":2,"198":2,"199":1,"200":2,"201":1,"202":2,"203":1,"204":2,"205":1,"206":1,"207":1,"208":1,"209":2,"210":2,"211":2,"212":2,"213":2,"214":1,"215":1,"216":2,"217":1,"218":1,"219":2,"220":2,"221":1,"222":1,"223":1,"224":1,"225":1,"226":2,"227":1,"228":1,"229":2,"230":2,"231":2,"232":2,"233":2,"234":1,"235":1,"236":1,"237":2,"238":1,"239":1,"240":2,"241":2,"242":1,"243":1,"244":2,"245":1,"246":2,"247":1,"248":1,"249":2,"250":1,"251":1,"252":1,"253":2,"254":1,"255":2,"256":1,"257":2,"258":2,"259":1,"260":2,"261":1,"262":2,"263":2,"264":1,"265":1,"266":2,"267":1,"268":1,"269":2,"270":1,"271":2,"272":1,"273":1,"274":2,"275":2,"276":1,"277":1,"278":2,"279":2,"280":1,"281":1,"282":2,"283":1,"284":1,"285":1,"286":1,"287":1,"288":2,"289":1,"290":1,"291":2,"292":1,"293":1,"294":2,"295":2,"296":1,"297":1,"298":1,"299":2,"300":1,"301":2,"302":1,"303":2,"304":1,"305":2,"306":2,"307":2,"308":1,"309":2,"310":1,"311":2,"312":2,"313":2,"314":2,"315":1,"316":1,"317":1,"318":1,"319":2,"320":1,"321":1,"322":1,"323":1,"324":1,"325":2,"326":2,"327":2,"328":2,"329":2,"330":1,"331":2,"332":1,"333":2,"334":2,"335":1,"336":2,"337":1,"338":1,"339":2,"340":1,"341":1,"342":1,"343":2,"344":1,"345":2,"346":1,"347":2,"348":2,"349":1,"350":1,"351":1,"352":2,"353":1,"354":2,"355":1,"356":1,"357":2,"358":1,"359":1,"360":2,"361":2,"362":2,"363":2,"364":2,"365":2,"366":1,"367":1,"368":2,"369":2,"370":1,"371":1,"372":1,"373":2,"374":2,"375":1,"376":2,"377":1,"378":1,"379":1,"380":2,"381":2,"382":2,"383":2,"384":2,"385":1,"386":1,"387":1,"388":2,"389":1,"390":1,"391":1,"392":2,"393":1,"394":1,"395":2,"396":2,"397":2,"398":2,"399":2,"400":2,"401":1,"402":1,"403":2,"404":1,"405":2,"406":2,"407":2,"408":2,"409":2,"410":1,"411":1,"412":2,"413":1,"414":2,"415":1,"416":1,"417":2,"418":1,"419":1,"420":1,"421":2,"422":2,"423":2,"424":1,"425":1,"426":2,"427":1,"428":2,"429":2,"430":2,"431":2,"432":2,"433":2,"434":2,"435":1,"436":1,"437":2,"438":1,"439":2,"440":2,"441":2,"442":1,"443":2,"444":2,"445":1,"446":1,"447":2,"448":2,"449":2,"450":2,"451":1,"452":2,"453":2,"454":2,"455":2,"456":2,"457":1,"458":1,"459":1,"460":1,"461":1,"462":2,"463":2,"464":1,"465":1,"466":2,"467":1,"468":2,"469":2,"470":2,"471":2,"472":2,"473":2,"474":1,"475":1,"476":2,"477":1,"478":1,"479":1,"480":1,"481":2,"482":1,"483":1,"484":2,"485":2,"486":1,"487":2,"488":2,"489":2,"490":1,"491":2,"492":2,"493":1,"494":2,"495":1,"496":2,"497":2,"498":2,"499":2,"500":2,"501":1,"502":2,"503":1,"504":1,"505":1,"506":1,"507":1,"508":2,"509":2,"510":1,"511":1,"512":1,"513":2,"514":2,"515":2,"516":1,"517":2,"518":1,"519":1,"520":1,"521":2,"522":1,"523":2,"524":1,"525":2,"526":2,"527":1,"528":1,"529":2,"530":2,"531":1,"532":1,"533":2,"534":1,"535":2,"536":2,"537":2,"538":1,"539":2,"540":2,"541":2,"542":2,"543":2,"544":1,"545":2,"546":2,"547":2,"548":2,"549":2,"550":2,"551":1,"552":2,"553":1,"554":1,"555":1,"556":1,"557":2,"558":1,"559":2,"560":1,"561":1,"562":1,"563":1,"564":1,"565":1,"566":1,"567":2,"568":1,"569":1,"570":2,"571":2,"572":2,"573":2,"574":1,"575":2,"576":1,"577":1,"578":2,"579":2,"580":1,"581":1,"582":1,"583":1,"584":1,"585":2,"586":1,"587":2,"588":2,"589":1,"590":2,"591":2,"592":1,"593":1,"594":1,"595":1,"596":2,"597":2,"598":1,"599":2,"600":1,"601":2,"602":2,"603":2,"604":1,"605":2,"606":1,"607":2,"608":1,"609":1,"610":2,"611":1,"612":1,"613":1,"614":2,"615":1,"616":2,"617":2,"618":2,"619":2,"620":2,"621":2,"622":1,"623":2,"624":2,"625":1,"626":1,"627":2,"628":1,"629":1,"630":2,"631":2,"632":2,"633":2,"634":1,"635":1,"636":1,"637":1,"638":2,"639":1,"640":1,"641":2,"642":1,"643":2,"644":2,"645":2,"646":2,"647":1,"648":1,"649":1,"650":2,"651":2,"652":2,"653":1,"654":1,"655":1,"656":1,"657":2,"658":2,"659":1,"660":2,"661":1,"662":2,"663":1,"664":1,"665":1,"666":2,"667":1,"668":1,"669":1,"670":1,"671":1,"672":2,"673":2,"674":2,"675":2,"676":1,"677":2,"678":1,"679":1,"680":2,"681":2,"682":1,"683":1,"684":2,"685":2,"686":1,"687":1,"688":2,"689":1,"690":2,"691":2,"692":2,"693":1,"694":2,"695":1,"696":1,"697":2,"698":1,"699":1,"700":1,"701":1,"702":2,"703":1,"704":2,"705":2,"706":1,"707":2,"708":2,"709":1,"710":2,"711":2,"712":2,"713":1,"714":1,"715":1,"716":2,"717":2,"718":2,"719":2,"720":1,"721":2,"722":2,"723":1,"724":1,"725":1,"726":1,"727":1,"728":2,"729":1,"730":2,"731":2,"732":1,"733":1,"734":2,"735":2,"736":1,"737":2,"738":1,"739":1,"740":1,"741":2,"742":2,"743":2,"744":1,"745":1,"746":1,"747":2,"748":1,"749":1,"750":2,"751":2,"752":2,"753":1,"754":2,"755":2,"756":1,"757":2,"758":2,"759":2,"760":2,"761":1,"762":2,"763":1,"764":2,"765":1,"766":2,"767":2,"768":2,"769":2,"770":2,"771":2,"772":1,"773":2,"774":1,"775":1,"776":2,"777":2,"778":2,"779":1,"780":2,"781":2,"782":1,"783":2,"784":1,"785":2,"786":1,"787":2,"788":1,"789":1,"790":1,"791":1,"792":2,"793":1,"794":2,"795":2,"796":2,"797":2,"798":1,"799":1,"800":1,"801":1,"802":1,"803":1,"804":1,"805":1,"806":1,"807":1,"808":1,"809":2,"810":2,"811":2,"812":1,"813":2,"814":2,"815":2,"816":2,"817":2,"818":1,"819":2,"820":1,"821":1,"822":1,"823":1,"824":1,"825":1,"826":2,"827":1,"828":1,"829":1,"830":1,"831":2,"832":1,"833":1,"834":2,"835":1,"836":2,"837":2,"838":1,"839":2,"840":2,"841":2,"842":1,"843":2,"844":2,"845":1,"846":1,"847":1,"848":2,"849":2,"850":1,"851":2,"852":2,"853":2,"854":2,"855":1,"856":1,"857":1,"858":1,"859":2,"860":1,"861":1,"862":2,"863":2,"864":1,"865":1,"866":2,"867":1,"868":1,"869":2,"870":1,"871":1,"872":1,"873":1,"874":2,"875":1,"876":2,"877":2,"878":1,"879":2,"880":2,"881":2,"882":1,"883":2,"884":2,"885":1,"886":1,"887":2,"888":1,"889":1,"890":1,"891":2,"892":2,"893":2,"894":2,"895":2,"896":2,"897":1,"898":1,"899":1,"900":2,"901":1,"902":2,"903":1,"904":2,"905":1,"906":1,"907":1,"908":2,"909":1,"910":2,"911":2,"912":1,"913":1,"914":1,"915":1,"916":1,"917":1,"918":2,"919":1,"920":2,"921":1,"922":2,"923":1,"924":1,"925":2,"926":2,"927":2,"928":2,"929":2,"930":2,"931":1,"932":2,"933":1,"934":2,"935":2,"936":1,"937":2,"938":2,"939":1,"940":2,"941":2,"942":1,"943":1,"944":2,"945":2,"946":2,"947":2,"948":2,"949":1,"950":1,"951":2,"952":2,"953":1,"954":1,"955":1,"956":1,"957":2,"958":2,"959":1,"960":2,"961":1,"962":1,"963":2,"964":2,"965":2,"966":1,"967":2,"968":1,"969":2,"970":2,"971":2,"972":1,"973":1,"974":1,"975":2,"976":1,"977":1,"978":1,"979":2,"980":2,"981":1,"982":1,"983":2,"984":2,"985":2,"986":1,"987":2,"988":1,"989":1,"990":1,"991":1,"992":2,"993":1,"994":2,"995":1,"996":2,"997":2,"998":2,"999":1,"1000":1,"1001":1,"1002":1,"1003":2,"1004":2,"1005":1,"1006":2,"1007":2,"1008":1,"1009":2,"1010":1,"1011":1,"1012":1,"1013":1,"1014":1,"1015":1,"1016":2,"1017":1,"1018":2,"1019":2,"1020":2,"1021":2,"1022":1,"1023":1,"1024":2,"1025":2,"1026":2,"1027":1,"1028":1,"1029":2,"1030":1,"1031":2,"1032":2,"1033":2,"1034":2,"1035":1,"1036":2,"1037":1,"1038":2,"1039":1,"1040":1,"1041":1,"1042":1,"1043":2,"1044":2,"1045":1,"1046":1,"1047":2,"1048":2,"1049":2,"1050":2,"1051":2,"1052":2,"1053":1,"1054":1,"1055":1,"1056":2,"1057":2,"1058":2,"1059":2,"1060":2,"1061":2,"1062":1,"1063":1,"1064":2,"1065":1,"1066":1,"1067":2,"1068":2,"1069":2,"1070":2,"1071":2,"1072":2,"1073":2,"1074":1,"1075":1,"1076":2,"1077":2,"1078":2,"1079":2,"1080":2,"1081":1,"1082":2,"1083":1,"1084":1,"1085":2,"1086":2,"1087":2,"1088":2,"1089":1,"1090":2,"1091":1,"1092":1,"1093":2,"1094":1,"1095":1,"1096":2,"1097":2,"1098":2,"1099":2,"1100":1,"1101":2,"1102":1,"1103":1,"1104":2,"1105":1,"1106":1,"1107":2,"1108":1,"1109":1,"1110":1,"1111":1,"1112":1,"1113":1,"1114":1,"1115":2,"1116":1,"1117":2,"1118":2,"1119":2,"1120":2,"1121":1,"1122":2,"1123":2,"1124":1,"1125":2,"1126":1,"1127":1,"1128":2,"1129":1,"1130":1,"1131":2,"1132":1,"1133":1,"1134":1,"1135":2,"1136":1,"1137":2,"1138":2,"1139":2,"1140":1,"1141":1,"1142":1,"1143":2,"1144":1,"1145":2,"1146":1,"1147":1,"1148":1,"1149":2,"1150":1,"1151":2,"1152":1,"1153":2,"1154":1,"1155":2,"1156":1,"1157":2,"1158":1,"1159":1,"1160":2,"1161":2,"1162":2,"1163":2,"1164":2,"1165":1,"1166":1,"1167":1,"1168":1,"1169":1,"1170":2,"1171":1,"1172":1,"1173":1,"1174":2,"1175":1,"1176":2,"1177":2,"1178":2,"1179":1,"1180":1,"1181":2,"1182":1,"1183":1,"1184":1,"1185":1,"1186":1,"1187":1,"1188":1,"1189":2,"1190":2,"1191":1,"1192":2,"1193":1,"1194":1,"1195":1,"1196":1,"1197":1,"1198":1,"1199":2,"1200":1,"1201":1,"1202":2,"1203":2,"1204":2,"1205":2,"1206":2,"1207":2,"1208":2,"1209":2,"1210":2,"1211":1,"1212":1,"1213":1,"1214":2,"1215":2,"1216":1,"1217":2,"1218":2,"1219":2,"1220":2,"1221":1,"1222":1,"1223":2,"1224":2,"1225":2,"1226":1,"1227":1,"1228":1,"1229":1,"1230":1,"1231":2,"1232":1,"1233":2,"1234":2,"1235":1,"1236":2,"1237":2,"1238":2,"1239":1,"1240":2,"1241":2,"1242":2,"1243":2,"1244":1,"1245":2,"1246":1,"1247":2,"1248":2,"1249":2,"1250":1,"1251":1,"1252":2,"1253":1,"1254":2,"1255":1,"1256":2,"1257":1,"1258":1,"1259":1,"1260":1,"1261":2,"1262":2,"1263":1,"1264":2,"1265":2,"1266":2,"1267":2,"1268":1,"1269":2,"1270":2,"1271":2,"1272":2,"1273":1,"1274":2,"1275":2,"1276":2,"1277":2,"1278":2,"1279":1,"1280":1,"1281":2,"1282":2,"1283":2,"1284":1,"1285":2,"1286":1,"1287":2,"1288":1,"1289":2,"1290":2,"1291":2,"1292":1,"1293":1,"1294":1,"1295":1,"1296":2,"1297":2,"1298":1,"1299":2,"1300":2,"1301":2,"1302":2,"1303":2,"1304":2,"1305":1,"1306":2,"1307":1,"1308":1,"1309":1,"1310":1,"1311":2,"1312":2,"1313":2,"1314":2,"1315":2,"1316":2,"1317":1,"1318":1,"1319":2,"1320":1,"1321":2,"1322":1,"1323":1,"1324":2,"1325":2,"1326":1,"1327":2,"1328":2,"1329":2,"1330":2,"1331":2,"1332":2,"1333":2,"1334":1,"1335":1,"1336":1,"1337":1,"1338":2,"1339":1,"1340":2,"1341":2,"1342":1,"1343":1,"1344":1,"1345":1,"1346":2,"1347":1,"1348":1,"1349":2,"1350":1,"1351":2,"1352":1,"1353":1,"1354":1,"1355":1,"1356":1,"1357":1,"1358":1,"1359":1,"1360":2,"1361":1,"1362":1,"1363":2,"1364":1,"1365":2,"1366":1,"1367":1,"1368":2,"1369":2,"1370":1,"1371":1,"1372":1,"1373":2,"1374":2,"1375":1,"1376":2,"1377":2,"1378":2,"1379":1,"1380":1,"1381":2,"1382":2,"1383":2,"1384":1,"1385":2,"1386":1,"1387":1,"1388":2,"1389":1,"1390":1,"1391":1,"1392":2,"1393":1,"1394":1,"1395":1,"1396":2,"1397":2,"1398":2,"1399":1,"1400":1,"1401":2,"1402":2,"1403":2,"1404":2,"1405":1,"1406":2,"1407":2,"1408":1,"1409":1,"1410":1,"1411":2,"1412":2,"1413":2,"1414":1,"1415":2,"1416":2,"1417":2,"1418":2,"1419":2,"1420":2,"1421":1,"1422":2,"1423":2,"1424":1,"1425":2,"1426":1,"1427":2,"1428":1,"1429":2,"1430":1,"1431":2,"1432":2,"1433":1,"1434":1,"1435":2,"1436":2,"1437":2,"1438":2,"1439":1,"1440":1,"1441":2,"1442":2,"1443":2,"1444":2,"1445":1,"1446":2,"1447":1,"1448":2,"1449":1,"1450":2,"1451":1,"1452":1,"1453":1,"1454":1,"1455":2,"1456":2,"1457":2,"1458":1,"1459":1,"1460":1,"1461":1,"1462":2,"1463":2,"1464":2,"1465":2,"1466":1,"1467":1,"1468":2,"1469":1,"1470":1,"1471":1,"1472":2,"1473":2,"1474":1,"1475":1,"1476":1,"1477":1,"1478":2,"1479":1,"1480":1,"1481":2,"1482":2,"1483":2,"1484":2,"1485":2,"1486":2,"1487":1,"1488":2,"1489":2,"1490":2,"1491":1,"1492":2,"1493":1,"1494":1,"1495":2,"1496":2,"1497":2,"1498":1,"1499":1,"1500":1,"1501":2,"1502":2,"1503":2,"1504":1,"1505":1,"1506":1,"1507":1,"1508":1,"1509":2,"1510":2,"1511":2,"1512":1,"1513":1,"1514":2,"1515":2,"1516":1,"1517":1,"1518":2,"1519":2,"1520":2,"1521":2,"1522":2,"1523":1,"1524":2,"1525":2,"1526":2,"1527":1,"1528":2,"1529":2,"1530":2,"1531":1,"1532":1,"1533":1,"1534":1,"1535":2,"1536":1,"1537":2,"1538":1,"1539":1,"1540":1,"1541":1,"1542":2,"1543":1,"1544":2,"1545":1,"1546":1,"1547":2,"1548":1,"1549":2,"1550":1,"1551":2,"1552":1,"1553":2,"1554":2,"1555":2,"1556":2,"1557":1,"1558":2,"1559":2,"1560":2,"1561":1,"1562":2,"1563":2,"1564":1,"1565":1,"1566":1,"1567":2,"1568":1,"1569":1,"1570":2,"1571":2,"1572":2,"1573":1,"1574":2,"1575":1,"1576":1,"1577":2,"1578":1,"1579":1,"1580":1,"1581":2,"1582":2,"1583":2,"1584":1,"1585":2,"1586":2,"1587":2,"1588":2,"1589":1,"1590":1,"1591":1,"1592":2,"1593":1,"1594":2,"1595":2,"1596":1,"1597":1,"1598":1,"1599":1,"1600":1,"1601":2,"1602":1,"1603":2,"1604":1,"1605":1,"1606":1,"1607":1,"1608":2,"1609":2,"1610":2,"1611":2,"1612":2,"1613":2,"1614":2,"1615":1,"1616":1,"1617":1,"1618":2,"1619":1,"1620":1,"1621":1,"1622":2,"1623":1,"1624":2,"1625":1,"1626":2,"1627":1,"1628":2,"1629":1,"1630":1,"1631":1,"1632":2,"1633":2,"1634":1,"1635":1,"1636":2,"1637":2,"1638":1,"1639":2,"1640":2,"1641":2,"1642":2,"1643":1,"1644":2,"1645":2,"1646":2,"1647":2,"1648":1,"1649":2,"1650":1,"1651":1,"1652":2,"1653":2,"1654":2,"1655":2,"1656":1,"1657":1,"1658":1,"1659":1,"1660":1,"1661":2,"1662":2,"1663":2,"1664":1,"1665":2,"1666":1,"1667":1,"1668":2,"1669":1,"1670":1,"1671":1,"1672":2,"1673":1,"1674":2,"1675":1,"1676":2,"1677":1,"1678":1,"1679":2,"1680":1,"1681":2,"1682":2,"1683":2,"1684":2,"1685":2,"1686":2,"1687":1,"1688":1,"1689":2,"1690":2,"1691":2,"1692":1,"1693":1,"1694":2,"1695":1,"1696":1,"1697":2,"1698":2,"1699":1,"1700":2,"1701":2,"1702":2,"1703":2,"1704":2,"1705":1,"1706":1,"1707":1,"1708":1,"1709":2,"1710":2,"1711":2,"1712":2,"1713":1,"1714":1,"1715":1,"1716":1,"1717":1,"1718":2,"1719":1,"1720":2,"1721":2,"1722":1,"1723":2,"1724":1,"1725":2,"1726":2,"1727":2,"1728":2,"1729":1,"1730":1,"1731":1,"1732":1,"1733":1,"1734":1,"1735":2,"1736":2,"1737":1,"1738":2,"1739":1,"1740":1,"1741":2,"1742":2,"1743":2,"1744":1,"1745":2,"1746":1,"1747":1,"1748":2,"1749":1,"1750":1,"1751":2,"1752":2,"1753":1,"1754":2,"1755":2,"1756":1,"1757":1,"1758":1,"1759":2,"1760":1,"1761":1,"1762":1,"1763":1,"1764":1,"1765":1,"1766":1,"1767":2,"1768":2,"1769":1,"1770":2,"1771":2,"1772":1,"1773":2,"1774":1,"1775":2,"1776":1,"1777":2,"1778":2,"1779":2,"1780":2,"1781":2,"1782":2,"1783":2,"1784":2,"1785":2,"1786":1,"1787":2,"1788":1,"1789":1,"1790":1,"1791":2,"1792":1,"1793":1,"1794":1,"1795":1,"1796":1,"1797":2,"1798":1,"1799":1,"1800":2,"1801":2,"1802":2,"1803":1,"1804":1,"1805":2,"1806":2,"1807":2,"1808":1,"1809":1,"1810":1,"1811":2,"1812":2,"1813":1,"1814":2,"1815":2,"1816":1,"1817":1,"1818":2,"1819":2,"1820":2,"1821":1,"1822":2,"1823":2,"1824":2,"1825":2,"1826":1,"1827":2,"1828":1,"1829":1,"1830":2,"1831":2,"1832":2,"1833":1,"1834":1,"1835":1,"1836":2,"1837":2,"1838":2,"1839":2,"1840":1,"1841":2,"1842":2,"1843":2,"1844":1,"1845":1,"1846":2,"1847":2,"1848":1,"1849":1,"1850":2,"1851":1,"1852":1,"1853":1,"1854":2,"1855":1,"1856":1,"1857":2,"1858":2,"1859":2,"1860":2,"1861":1,"1862":1,"1863":2,"1864":2,"1865":1,"1866":1,"1867":2,"1868":2,"1869":1,"1870":1,"1871":2,"1872":2,"1873":1,"1874":1,"1875":2,"1876":1,"1877":1,"1878":2,"1879":1,"1880":2,"1881":1,"1882":2,"1883":2,"1884":1,"1885":1,"1886":2,"1887":2,"1888":2,"1889":2,"1890":1,"1891":2,"1892":2,"1893":2,"1894":1,"1895":2,"1896":2,"1897":1,"1898":2,"1899":2,"1900":2,"1901":1,"1902":1,"1903":2,"1904":2,"1905":2,"1906":1,"1907":1,"1908":2,"1909":1,"1910":1,"1911":2,"1912":2,"1913":2,"1914":2,"1915":2,"1916":2,"1917":2,"1918":2,"1919":1,"1920":1,"1921":1,"1922":1,"1923":1,"1924":1,"1925":2,"1926":2,"1927":2,"1928":1,"1929":2,"1930":2,"1931":1,"1932":1,"1933":2,"1934":2,"1935":1,"1936":1,"1937":2,"1938":1,"1939":2,"1940":1,"1941":1,"1942":2,"1943":1,"1944":1,"1945":2,"1946":1,"1947":2,"1948":1,"1949":2,"1950":2,"1951":2,"1952":1,"1953":1,"1954":1,"1955":2,"1956":2,"1957":2,"1958":1,"1959":1,"1960":1,"1961":1,"1962":2,"1963":2,"1964":1,"1965":2,"1966":1,"1967":2,"1968":1,"1969":2,"1970":2,"1971":1,"1972":2,"1973":1,"1974":1,"1975":1,"1976":2,"1977":1,"1978":2,"1979":1,"1980":2,"1981":2,"1982":1,"1983":2,"1984":1,"1985":1,"1986":1,"1987":1,"1988":2,"1989":1,"1990":1,"1991":2,"1992":1,"1993":2,"1994":2,"1995":1,"1996":2,"1997":2,"1998":2,"1999":2,"2000":2,"2001":1,"2002":2,"2003":2,"2004":1,"2005":1,"2006":2,"2007":1,"2008":1,"2009":2,"2010":2,"2011":2,"2012":1,"2013":1,"2014":2,"2015":1,"2016":2,"2017":1,"2018":1,"2019":2,"2020":2,"2021":2,"2022":1,"2023":2,"2024":1,"2025":1,"2026":1,"2027":1,"2028":2,"2029":2,"2030":1,"2031":2,"2032":2,"2033":1,"2034":2,"2035":2,"2036":1,"2037":1,"2038":2,"2039":1,"2040":1,"2041":2,"2042":2,"2043":2,"2044":2,"2045":1,"2046":1,"2047":2,"2048":2,"2049":2,"2050":1,"2051":2,"2052":2,"2053":2,"2054":1,"2055":1,"2056":2,"2057":2,"2058":1,"2059":2,"2060":1,"2061":2,"2062":1,"2063":1,"2064":1,"2065":1,"2066":2,"2067":2,"2068":1,"2069":1,"2070":1,"2071":1,"2072":2,"2073":1,"2074":2,"2075":2,"2076":2,"2077":2,"2078":1,"2079":2,"2080":1,"2081":2,"2082":2,"2083":2,"2084":2,"2085":2,"2086":2,"2087":1,"2088":1,"2089":1,"2090":2,"2091":2,"2092":2,"2093":1,"2094":2,"2095":1,"2096":1,"2097":2,"2098":1,"2099":1,"2100":2,"2101":2,"2102":2,"2103":1,"2104":1,"2105":2,"2106":1,"2107":2,"2108":1,"2109":2,"2110":1,"2111":2,"2112":1,"2113":1,"2114":1,"2115":1,"2116":2,"2117":1,"2118":1,"2119":1,"2120":1,"2121":1,"2122":2,"2123":2,"2124":2,"2125":2,"2126":1,"2127":2,"2128":2,"2129":1,"2130":1,"2131":2,"2132":1,"2133":2,"2134":1,"2135":1,"2136":2,"2137":1,"2138":1,"2139":1,"2140":2,"2141":2,"2142":2,"2143":1,"2144":1,"2145":1,"2146":1,"2147":1,"2148":2,"2149":2,"2150":1,"2151":2,"2152":1,"2153":1,"2154":2,"2155":1,"2156":1,"2157":1,"2158":2,"2159":2,"2160":2,"2161":2,"2162":2,"2163":1,"2164":2,"2165":1,"2166":1,"2167":2,"2168":1,"2169":2,"2170":2,"2171":2,"2172":2,"2173":2,"2174":1,"2175":1,"2176":2,"2177":2,"2178":1,"2179":1,"2180":2,"2181":1,"2182":1,"2183":1,"2184":1,"2185":1,"2186":2,"2187":2,"2188":1,"2189":2,"2190":1,"2191":2,"2192":1,"2193":1,"2194":2,"2195":2,"2196":1,"2197":2,"2198":1,"2199":1,"2200":2,"2201":2,"2202":2,"2203":1,"2204":1,"2205":1,"2206":2,"2207":1,"2208":1,"2209":1,"2210":1,"2211":1,"2212":2,"2213":2,"2214":2,"2215":1,"2216":1,"2217":1,"2218":2,"2219":1,"2220":1,"2221":2,"2222":2,"2223":1,"2224":1,"2225":1,"2226":1,"2227":2,"2228":2,"2229":1,"2230":2,"2231":1,"2232":1,"2233":2,"2234":1,"2235":2,"2236":1,"2237":2,"2238":2,"2239":1,"2240":2,"2241":1,"2242":2,"2243":2,"2244":1,"2245":2,"2246":1,"2247":2,"2248":2,"2249":2,"2250":1,"2251":1,"2252":1,"2253":1,"2254":2,"2255":1,"2256":2,"2257":1,"2258":2,"2259":1,"2260":2,"2261":1,"2262":1,"2263":2,"2264":1,"2265":1,"2266":1,"2267":2,"2268":1,"2269":1,"2270":1,"2271":2,"2272":1,"2273":1,"2274":2,"2275":2,"2276":1,"2277":2,"2278":1,"2279":2,"2280":2,"2281":2,"2282":1,"2283":2,"2284":2,"2285":1,"2286":2,"2287":2,"2288":1,"2289":2,"2290":2,"2291":2,"2292":1,"2293":1,"2294":1,"2295":1,"2296":2,"2297":1,"2298":2,"2299":2,"2300":1,"2301":1,"2302":1,"2303":2,"2304":1,"2305":1,"2306":1,"2307":2,"2308":2,"2309":2,"2310":2,"2311":2,"2312":2,"2313":1,"2314":1,"2315":2,"2316":1,"2317":2,"2318":2,"2319":1,"2320":2,"2321":1,"2322":2,"2323":1,"2324":2,"2325":1,"2326":1,"2327":1,"2328":2,"2329":1,"2330":2,"2331":1,"2332":2,"2333":1,"2334":1,"2335":1,"2336":1,"2337":1,"2338":2,"2339":1,"2340":1,"2341":1,"2342":1,"2343":2,"2344":2,"2345":2,"2346":2,"2347":1,"2348":2,"2349":1,"2350":1,"2351":2,"2352":1,"2353":1,"2354":1,"2355":1,"2356":2,"2357":2,"2358":1,"2359":1,"2360":1,"2361":1,"2362":1,"2363":1,"2364":1,"2365":2,"2366":1,"2367":1,"2368":1,"2369":2,"2370":2,"2371":1,"2372":1,"2373":1,"2374":2,"2375":1,"2376":1,"2377":2,"2378":2,"2379":2,"2380":1,"2381":1,"2382":2,"2383":2,"2384":1,"2385":2,"2386":2,"2387":2,"2388":2,"2389":2,"2390":2,"2391":2,"2392":2,"2393":1,"2394":1,"2395":2,"2396":1,"2397":1,"2398":2,"2399":2,"2400":2,"2401":1,"2402":2,"2403":1,"2404":2,"2405":1,"2406":2,"2407":1,"2408":2,"2409":2,"2410":1,"2411":1,"2412":1,"2413":2,"2414":1,"2415":2,"2416":1,"2417":1,"2418":1,"2419":2,"2420":1,"2421":2,"2422":1,"2423":2,"2424":2,"2425":1,"2426":2,"2427":1,"2428":1,"2429":2,"2430":2,"2431":2,"2432":2,"2433":1,"2434":1,"2435":1,"2436":1,"2437":2,"2438":2,"2439":2,"2440":2,"2441":1,"2442":2,"2443":2,"2444":2,"2445":1,"2446":1,"2447":2,"2448":1,"2449":1,"2450":2,"2451":2,"2452":1,"2453":1,"2454":1,"2455":1,"2456":1,"2457":1,"2458":2,"2459":1,"2460":1,"2461":1,"2462":2,"2463":1,"2464":1,"2465":2,"2466":2,"2467":1,"2468":2,"2469":2,"2470":1,"2471":2,"2472":2,"2473":2,"2474":2,"2475":1,"2476":2,"2477":2,"2478":2,"2479":1,"2480":1,"2481":1,"2482":1,"2483":1,"2484":1,"2485":1,"2486":2,"2487":1,"2488":1,"2489":1,"2490":1,"2491":1,"2492":1,"2493":2,"2494":2,"2495":1,"2496":1,"2497":1,"2498":1,"2499":2,"2500":1,"2501":2,"2502":1,"2503":1,"2504":1,"2505":2,"2506":1,"2507":2,"2508":2,"2509":1,"2510":2,"2511":1,"2512":1,"2513":1,"2514":1,"2515":1,"2516":2,"2517":2,"2518":1,"2519":2,"2520":1,"2521":2,"2522":1,"2523":2,"2524":1,"2525":1,"2526":2,"2527":2,"2528":1,"2529":1,"2530":1,"2531":2,"2532":1,"2533":2,"2534":2,"2535":1,"2536":2,"2537":1,"2538":2,"2539":1,"2540":1,"2541":1,"2542":2,"2543":1,"2544":2,"2545":1,"2546":1,"2547":1,"2548":2,"2549":1,"2550":1,"2551":2,"2552":2,"2553":1,"2554":2,"2555":1,"2556":2,"2557":2,"2558":2,"2559":1,"2560":1,"2561":2,"2562":2,"2563":2,"2564":2,"2565":2,"2566":2,"2567":1,"2568":2,"2569":1,"2570":1,"2571":1,"2572":2,"2573":2,"2574":1,"2575":2,"2576":2,"2577":2,"2578":2,"2579":2,"2580":2,"2581":2,"2582":2,"2583":1,"2584":2,"2585":1,"2586":2,"2587":1,"2588":1,"2589":1,"2590":1,"2591":1,"2592":1,"2593":2,"2594":2,"2595":2,"2596":2,"2597":1,"2598":2,"2599":2,"2600":1,"2601":1,"2602":2,"2603":1,"2604":1,"2605":2,"2606":2,"2607":2,"2608":1,"2609":1,"2610":1,"2611":2,"2612":2,"2613":2,"2614":1,"2615":2,"2616":2,"2617":2,"2618":2,"2619":2,"2620":2,"2621":1,"2622":2,"2623":2,"2624":2,"2625":2,"2626":1,"2627":1,"2628":2,"2629":1,"2630":2,"2631":1,"2632":1,"2633":1,"2634":2,"2635":1,"2636":1,"2637":1,"2638":2,"2639":2,"2640":2,"2641":1,"2642":2,"2643":1,"2644":1,"2645":1,"2646":2,"2647":2,"2648":2,"2649":2,"2650":1,"2651":2,"2652":2,"2653":1,"2654":2,"2655":1,"2656":2,"2657":1,"2658":1,"2659":1,"2660":2,"2661":1,"2662":2,"2663":1,"2664":1,"2665":1,"2666":1,"2667":1,"2668":1,"2669":1,"2670":2,"2671":2,"2672":1,"2673":2,"2674":2,"2675":2,"2676":2,"2677":2,"2678":2,"2679":2,"2680":1,"2681":2,"2682":1,"2683":1,"2684":1,"2685":2,"2686":2,"2687":1,"2688":2,"2689":2,"2690":2,"2691":2,"2692":1,"2693":1,"2694":1,"2695":2,"2696":1,"2697":2,"2698":1,"2699":2,"2700":1,"2701":2,"2702":2,"2703":2,"2704":1,"2705":1,"2706":2,"2707":2,"2708":1,"2709":2,"2710":1,"2711":1,"2712":1,"2713":1,"2714":2,"2715":2,"2716":2,"2717":2,"2718":2,"2719":1,"2720":2,"2721":1,"2722":2,"2723":1,"2724":1,"2725":2,"2726":2,"2727":1,"2728":2,"2729":1,"2730":2,"2731":2,"2732":1,"2733":1,"2734":2,"2735":2,"2736":2,"2737":1,"2738":2,"2739":2,"2740":1,"2741":1,"2742":2,"2743":2,"2744":1,"2745":1,"2746":2,"2747":1,"2748":2,"2749":2,"2750":1,"2751":2,"2752":2,"2753":2,"2754":2,"2755":1,"2756":2,"2757":2,"2758":1,"2759":2,"2760":1,"2761":1,"2762":1,"2763":2,"2764":1,"2765":1,"2766":1,"2767":1,"2768":1,"2769":2,"2770":2,"2771":1,"2772":1,"2773":2,"2774":2,"2775":1,"2776":1,"2777":2,"2778":1,"2779":2,"2780":1,"2781":2,"2782":2,"2783":1,"2784":1,"2785":1,"2786":1,"2787":2,"2788":2,"2789":1,"2790":2,"2791":1,"2792":2,"2793":2,"2794":1,"2795":2,"2796":2,"2797":1,"2798":1,"2799":1,"2800":2,"2801":1,"2802":2,"2803":1,"2804":2,"2805":2,"2806":1,"2807":2,"2808":2,"2809":1,"2810":1,"2811":1,"2812":2,"2813":2,"2814":2,"2815":2,"2816":1,"2817":2,"2818":2,"2819":2,"2820":2,"2821":2,"2822":1,"2823":2,"2824":1,"2825":1,"2826":2,"2827":1,"2828":1,"2829":2,"2830":1,"2831":1,"2832":2,"2833":2,"2834":1,"2835":1,"2836":2,"2837":1,"2838":1,"2839":2,"2840":1,"2841":2,"2842":2,"2843":1,"2844":2,"2845":1,"2846":1,"2847":2,"2848":2,"2849":2,"2850":2,"2851":2,"2852":1,"2853":2,"2854":1,"2855":2,"2856":2,"2857":2,"2858":1,"2859":2,"2860":1,"2861":1,"2862":1,"2863":1,"2864":1,"2865":2,"2866":2,"2867":1,"2868":1,"2869":1,"2870":1,"2871":2,"2872":2,"2873":1,"2874":1,"2875":1,"2876":2,"2877":1,"2878":2,"2879":1,"2880":1,"2881":1,"2882":1,"2883":2,"2884":2,"2885":1,"2886":2,"2887":1,"2888":1,"2889":2,"2890":1,"2891":1,"2892":1,"2893":2,"2894":1,"2895":1,"2896":2,"2897":2,"2898":1,"2899":1,"2900":2,"2901":1,"2902":1,"2903":2,"2904":1,"2905":2,"2906":1,"2907":1,"2908":2,"2909":1,"2910":1,"2911":2,"2912":2,"2913":1,"2914":1,"2915":2,"2916":2,"2917":2,"2918":1,"2919":2,"2920":1,"2921":1,"2922":2,"2923":1,"2924":2,"2925":1,"2926":2,"2927":2,"2928":2,"2929":2,"2930":1,"2931":2,"2932":1,"2933":2,"2934":2,"2935":1,"2936":2,"2937":2,"2938":2,"2939":1,"2940":1,"2941":2,"2942":1,"2943":1,"2944":2,"2945":1,"2946":2,"2947":1,"2948":2,"2949":2,"2950":1,"2951":1,"2952":1,"2953":2,"2954":2,"2955":1,"2956":2,"2957":2,"2958":2,"2959":2,"2960":2,"2961":2,"2962":1,"2963":2,"2964":1,"2965":1,"2966":1,"2967":1,"2968":1,"2969":1,"2970":1,"2971":2,"2972":1,"2973":2,"2974":2,"2975":1,"2976":2,"2977":1,"2978":1,"2979":2,"2980":2,"2981":2,"2982":2,"2983":2,"2984":2,"2985":2,"2986":2,"2987":1,"2988":1,"2989":2,"2990":1,"2991":1,"2992":2,"2993":1,"2994":2,"2995":1,"2996":2,"2997":2,"2998":2,"2999":2,"3000":1,"3001":1,"3002":2,"3003":1,"3004":1,"3005":2,"3006":1,"3007":1,"3008":2,"3009":1,"3010":2,"3011":1,"3012":2,"3013":2,"3014":2,"3015":2,"3016":1,"3017":2,"3018":1,"3019":2,"3020":2,"3021":1,"3022":1,"3023":1,"3024":2,"3025":2,"3026":1,"3027":1,"3028":2,"3029":2,"3030":1,"3031":2,"3032":1,"3033":1,"3034":2,"3035":2,"3036":1,"3037":2,"3038":1,"3039":2,"3040":2,"3041":1,"3042":2,"3043":2,"3044":2,"3045":1,"3046":2,"3047":2,"3048":2,"3049":2,"3050":1,"3051":2,"3052":2,"3053":1,"3054":1,"3055":2,"3056":2,"3057":2,"3058":2,"3059":1,"3060":2,"3061":2,"3062":1,"3063":1,"3064":2,"3065":1,"3066":2,"3067":1,"3068":1,"3069":1,"3070":2,"3071":1,"3072":1,"3073":2,"3074":2,"3075":1,"3076":1,"3077":2,"3078":2,"3079":1,"3080":2,"3081":2,"3082":1,"3083":1,"3084":2,"3085":1,"3086":1,"3087":2,"3088":2,"3089":1,"3090":1,"3091":1,"3092":1,"3093":2,"3094":2,"3095":2,"3096":2,"3097":2,"3098":1,"3099":1,"3100":2,"3101":2,"3102":1,"3103":1,"3104":1,"3105":2,"3106":1,"3107":2,"3108":1,"3109":1,"3110":1,"3111":2,"3112":2,"3113":1,"3114":1,"3115":1,"3116":1,"3117":2,"3118":1,"3119":1,"3120":1,"3121":1,"3122":1,"3123":1,"3124":2,"3125":2,"3126":2,"3127":2,"3128":1,"3129":2,"3130":2,"3131":1,"3132":2,"3133":1,"3134":2,"3135":1,"3136":1,"3137":1,"3138":2,"3139":2,"3140":1,"3141":1,"3142":1,"3143":1,"3144":2,"3145":1,"3146":2,"3147":2,"3148":2,"3149":1,"3150":2,"3151":2,"3152":2,"3153":1,"3154":1,"3155":2,"3156":1,"3157":1,"3158":1,"3159":2,"3160":1,"3161":1,"3162":2,"3163":1,"3164":2,"3165":1,"3166":2,"3167":2,"3168":2,"3169":2,"3170":1,"3171":1,"3172":1,"3173":1,"3174":2,"3175":2,"3176":1,"3177":1,"3178":1,"3179":2,"3180":2,"3181":1,"3182":2,"3183":1,"3184":1,"3185":2,"3186":2,"3187":1,"3188":2,"3189":1,"3190":1,"3191":1,"3192":2,"3193":1,"3194":1,"3195":1,"3196":2,"3197":1,"3198":2,"3199":2,"3200":1,"3201":1,"3202":1,"3203":2,"3204":1,"3205":1,"3206":1,"3207":2,"3208":1,"3209":2,"3210":2,"3211":2,"3212":1,"3213":2,"3214":2,"3215":2,"3216":1,"3217":1,"3218":1,"3219":1,"3220":1,"3221":2,"3222":1,"3223":2,"3224":2,"3225":2,"3226":1,"3227":2,"3228":1,"3229":2,"3230":1,"3231":1,"3232":1,"3233":2,"3234":2,"3235":2,"3236":1,"3237":2,"3238":1,"3239":2,"3240":2,"3241":1,"3242":2,"3243":2,"3244":1,"3245":1,"3246":2,"3247":1,"3248":2,"3249":1,"3250":2,"3251":1,"3252":2,"3253":2,"3254":2,"3255":2,"3256":1,"3257":1,"3258":2,"3259":2,"3260":2,"3261":2,"3262":2,"3263":1,"3264":1,"3265":2,"3266":2,"3267":2,"3268":1,"3269":1,"3270":2,"3271":2,"3272":2,"3273":1,"3274":2,"3275":1,"3276":2,"3277":2,"3278":2,"3279":1,"3280":1,"3281":1,"3282":2,"3283":1,"3284":1,"3285":1,"3286":2,"3287":1,"3288":2,"3289":1,"3290":1,"3291":1,"3292":1,"3293":1,"3294":2,"3295":2,"3296":2,"3297":1,"3298":2,"3299":1,"3300":1,"3301":1,"3302":1,"3303":2,"3304":2,"3305":1,"3306":1,"3307":2,"3308":1,"3309":2,"3310":2,"3311":1,"3312":2,"3313":1,"3314":1,"3315":1,"3316":2,"3317":1,"3318":1,"3319":1,"3320":2,"3321":2,"3322":1,"3323":2,"3324":2,"3325":1,"3326":2,"3327":1,"3328":1,"3329":2,"3330":2,"3331":2,"3332":2,"3333":1,"3334":2,"3335":1,"3336":2,"3337":2,"3338":2,"3339":1,"3340":2,"3341":1,"3342":2,"3343":2,"3344":2,"3345":2,"3346":2,"3347":2,"3348":2,"3349":1,"3350":1,"3351":1,"3352":1,"3353":1,"3354":1,"3355":1,"3356":1,"3357":2,"3358":2,"3359":2,"3360":1,"3361":2,"3362":1,"3363":2,"3364":1,"3365":1,"3366":1,"3367":1,"3368":1,"3369":1,"3370":1,"3371":2,"3372":2,"3373":2,"3374":1,"3375":2,"3376":1,"3377":1,"3378":2,"3379":1,"3380":1,"3381":1,"3382":1,"3383":1,"3384":1,"3385":1,"3386":2,"3387":1,"3388":2,"3389":2,"3390":2,"3391":2,"3392":1,"3393":1,"3394":1,"3395":1,"3396":1,"3397":2,"3398":1,"3399":1,"3400":1,"3401":1,"3402":2,"3403":2,"3404":1,"3405":2,"3406":2,"3407":1,"3408":1,"3409":1,"3410":2,"3411":2,"3412":1,"3413":2,"3414":2,"3415":2,"3416":1,"3417":2,"3418":1,"3419":2,"3420":1,"3421":1,"3422":2,"3423":2,"3424":2,"3425":2,"3426":1,"3427":1,"3428":1,"3429":2,"3430":2,"3431":1,"3432":1,"3433":2,"3434":2,"3435":1,"3436":1,"3437":1,"3438":1,"3439":2,"3440":1,"3441":2,"3442":1,"3443":1,"3444":2,"3445":2,"3446":1,"3447":2,"3448":2,"3449":1,"3450":1,"3451":2,"3452":2,"3453":2,"3454":2,"3455":1,"3456":1,"3457":1,"3458":2,"3459":1,"3460":1,"3461":1,"3462":1,"3463":1,"3464":1,"3465":1,"3466":1,"3467":2,"3468":1,"3469":2,"3470":1,"3471":2,"3472":2,"3473":1,"3474":1,"3475":2,"3476":1,"3477":2,"3478":1,"3479":1,"3480":1,"3481":2,"3482":1,"3483":1,"3484":1,"3485":2,"3486":2,"3487":2,"3488":2,"3489":1,"3490":1,"3491":1,"3492":1,"3493":1,"3494":1,"3495":1,"3496":1,"3497":2,"3498":2,"3499":1,"3500":1,"3501":1,"3502":1,"3503":1,"3504":1,"3505":1,"3506":2,"3507":1,"3508":1,"3509":2,"3510":2,"3511":2,"3512":2,"3513":2,"3514":1,"3515":2,"3516":1,"3517":2,"3518":1,"3519":2,"3520":1,"3521":1,"3522":2,"3523":2,"3524":2,"3525":2,"3526":2,"3527":2,"3528":2,"3529":1,"3530":1,"3531":2,"3532":1,"3533":1,"3534":2,"3535":1,"3536":2,"3537":2,"3538":1,"3539":2,"3540":2,"3541":2,"3542":1,"3543":2,"3544":1,"3545":2,"3546":1,"3547":1,"3548":1,"3549":2,"3550":1,"3551":2,"3552":1,"3553":1,"3554":2,"3555":1,"3556":1,"3557":1,"3558":1,"3559":2,"3560":1,"3561":1,"3562":1,"3563":2,"3564":1,"3565":2,"3566":1,"3567":1,"3568":2,"3569":2,"3570":2,"3571":1,"3572":1,"3573":1,"3574":2,"3575":2,"3576":2,"3577":1,"3578":1,"3579":1,"3580":1,"3581":2,"3582":1,"3583":1,"3584":1,"3585":2,"3586":2,"3587":2,"3588":1,"3589":2,"3590":1,"3591":2,"3592":2,"3593":1,"3594":2,"3595":1,"3596":2,"3597":2,"3598":1,"3599":1,"3600":1,"3601":2,"3602":1,"3603":1,"3604":2,"3605":1,"3606":2,"3607":2,"3608":1,"3609":1,"3610":1,"3611":2,"3612":1,"3613":1,"3614":2,"3615":1,"3616":2,"3617":1,"3618":2,"3619":1,"3620":2,"3621":1,"3622":1,"3623":2,"3624":2,"3625":1,"3626":1,"3627":2,"3628":2,"3629":2,"3630":2,"3631":2,"3632":2,"3633":1,"3634":1,"3635":2,"3636":2,"3637":1,"3638":1,"3639":1,"3640":2,"3641":1,"3642":1,"3643":1,"3644":2,"3645":2,"3646":2,"3647":2,"3648":1,"3649":2,"3650":1,"3651":2,"3652":2,"3653":1,"3654":1,"3655":1,"3656":2,"3657":1,"3658":2,"3659":1,"3660":1,"3661":1,"3662":1,"3663":2,"3664":2,"3665":1,"3666":1,"3667":2,"3668":2,"3669":2,"3670":1,"3671":2,"3672":1,"3673":1,"3674":1,"3675":1,"3676":2,"3677":1,"3678":1,"3679":2,"3680":1,"3681":2,"3682":2,"3683":1,"3684":1,"3685":1,"3686":1,"3687":2,"3688":2,"3689":2,"3690":1,"3691":2,"3692":2,"3693":1,"3694":2,"3695":1,"3696":2,"3697":2,"3698":2,"3699":2,"3700":1,"3701":2,"3702":2,"3703":1,"3704":1,"3705":1,"3706":2,"3707":2,"3708":1,"3709":2,"3710":2,"3711":2,"3712":1,"3713":2,"3714":1,"3715":2,"3716":2,"3717":1,"3718":2,"3719":2,"3720":2,"3721":1,"3722":1,"3723":2,"3724":1,"3725":2,"3726":1,"3727":2,"3728":1,"3729":1,"3730":2,"3731":1,"3732":1,"3733":2,"3734":2,"3735":1,"3736":1,"3737":1,"3738":1,"3739":2,"3740":2,"3741":2,"3742":1,"3743":2,"3744":2,"3745":2,"3746":2,"3747":1,"3748":1,"3749":2,"3750":2,"3751":1,"3752":2,"3753":2,"3754":1,"3755":2,"3756":2,"3757":2,"3758":1,"3759":2,"3760":2,"3761":1,"3762":2,"3763":2,"3764":1,"3765":2,"3766":1,"3767":1,"3768":1,"3769":1,"3770":2,"3771":1,"3772":2,"3773":2,"3774":1,"3775":1,"3776":2,"3777":2,"3778":1,"3779":1,"3780":1,"3781":2,"3782":2,"3783":2,"3784":1,"3785":2,"3786":1,"3787":2,"3788":2,"3789":1,"3790":1,"3791":2,"3792":1,"3793":2,"3794":1,"3795":1,"3796":2,"3797":1,"3798":1,"3799":1,"3800":2,"3801":1,"3802":2,"3803":1,"3804":1,"3805":1,"3806":2,"3807":2,"3808":1,"3809":2,"3810":1,"3811":1,"3812":1,"3813":1,"3814":1,"3815":1,"3816":2,"3817":2,"3818":2,"3819":1,"3820":2,"3821":1,"3822":2,"3823":2,"3824":1,"3825":2,"3826":1,"3827":2,"3828":1,"3829":2,"3830":2,"3831":1,"3832":1,"3833":1,"3834":1,"3835":1,"3836":1,"3837":2,"3838":1,"3839":2,"3840":2,"3841":1,"3842":2,"3843":1,"3844":1,"3845":2,"3846":2,"3847":2,"3848":1,"3849":1,"3850":2,"3851":2,"3852":1,"3853":1,"3854":1,"3855":2,"3856":2,"3857":1,"3858":2,"3859":2,"3860":2,"3861":1,"3862":1,"3863":1,"3864":1,"3865":1,"3866":2,"3867":2,"3868":1,"3869":2,"3870":1,"3871":2,"3872":1,"3873":1,"3874":1,"3875":2,"3876":2,"3877":2,"3878":1,"3879":2,"3880":1,"3881":2,"3882":2,"3883":1,"3884":2,"3885":2,"3886":2,"3887":2,"3888":1,"3889":1,"3890":1,"3891":1,"3892":2,"3893":1,"3894":2,"3895":1,"3896":2,"3897":1,"3898":1,"3899":1,"3900":2,"3901":2,"3902":2,"3903":1,"3904":2,"3905":1,"3906":1,"3907":1,"3908":1,"3909":2,"3910":2,"3911":1,"3912":2,"3913":1,"3914":1,"3915":2,"3916":2,"3917":2,"3918":2,"3919":2,"3920":1,"3921":2,"3922":2,"3923":1,"3924":1,"3925":2,"3926":1,"3927":1,"3928":2,"3929":1,"3930":1,"3931":2,"3932":2,"3933":2,"3934":2,"3935":1,"3936":1,"3937":2,"3938":2,"3939":1,"3940":2,"3941":1,"3942":1,"3943":2,"3944":1,"3945":1,"3946":2,"3947":1,"3948":2,"3949":2,"3950":1,"3951":2,"3952":2,"3953":1,"3954":2,"3955":1,"3956":2,"3957":1,"3958":2,"3959":1,"3960":2,"3961":1,"3962":1,"3963":2,"3964":2,"3965":2,"3966":2,"3967":2,"3968":2,"3969":2,"3970":2,"3971":2,"3972":1,"3973":1,"3974":2,"3975":1,"3976":2,"3977":2,"3978":1,"3979":2,"3980":2,"3981":1,"3982":1,"3983":1,"3984":1,"3985":1,"3986":2,"3987":1,"3988":1,"3989":2,"3990":1,"3991":1,"3992":2,"3993":1,"3994":1,"3995":1,"3996":1,"3997":2,"3998":2,"3999":2,"4000":1,"4001":2,"4002":1,"4003":1,"4004":1,"4005":2,"4006":2,"4007":2,"4008":1,"4009":1,"4010":1,"4011":2,"4012":1,"4013":2,"4014":1,"4015":1,"4016":1,"4017":1,"4018":2,"4019":1,"4020":2,"4021":2,"4022":1,"4023":1,"4024":1,"4025":1,"4026":2,"4027":1,"4028":1,"4029":1,"4030":2,"4031":1,"4032":2,"4033":1,"4034":1,"4035":2,"4036":1,"4037":1,"4038":2,"4039":1,"4040":2,"4041":1,"4042":2,"4043":2,"4044":2,"4045":1,"4046":1,"4047":2,"4048":2,"4049":2,"4050":2,"4051":1,"4052":2,"4053":2,"4054":2,"4055":2,"4056":1,"4057":2,"4058":2,"4059":2,"4060":2,"4061":2,"4062":1,"4063":1,"4064":1,"4065":2,"4066":2,"4067":2,"4068":1,"4069":2,"4070":1,"4071":1,"4072":2,"4073":2,"4074":1,"4075":2,"4076":2,"4077":1,"4078":2,"4079":2,"4080":2,"4081":2,"4082":2,"4083":2,"4084":1,"4085":2,"4086":2,"4087":1,"4088":2,"4089":1,"4090":2,"4091":2,"4092":2,"4093":2,"4094":1,"4095":1,"4096":2,"4097":1,"4098":2,"4099":2,"4100":1,"4101":2,"4102":1,"4103":1,"4104":1,"4105":2,"4106":2,"4107":2,"4108":1,"4109":1,"4110":1,"4111":2,"4112":1,"4113":1,"4114":1,"4115":2,"4116":2,"4117":2,"4118":1,"4119":1,"4120":1,"4121":1,"4122":2,"4123":2,"4124":2,"4125":1,"4126":1,"4127":1,"4128":2,"4129":2,"4130":1,"4131":2,"4132":1,"4133":2,"4134":2,"4135":1,"4136":2,"4137":1,"4138":2,"4139":1,"4140":2,"4141":2,"4142":2,"4143":2,"4144":1,"4145":1,"4146":2,"4147":2,"4148":2,"4149":2,"4150":2,"4151":2,"4152":2,"4153":1,"4154":1,"4155":2,"4156":1,"4157":1,"4158":2,"4159":2,"4160":1,"4161":1,"4162":2,"4163":2,"4164":2,"4165":1,"4166":2,"4167":2,"4168":2,"4169":2,"4170":2,"4171":2,"4172":2,"4173":2,"4174":2,"4175":1,"4176":1,"4177":2,"4178":1,"4179":1,"4180":2,"4181":1,"4182":2,"4183":1,"4184":1,"4185":2,"4186":2,"4187":2,"4188":1,"4189":2,"4190":2,"4191":2,"4192":1,"4193":1,"4194":2,"4195":2,"4196":2,"4197":1,"4198":2,"4199":2,"4200":2,"4201":1,"4202":2,"4203":2,"4204":2,"4205":2,"4206":2,"4207":2,"4208":2,"4209":1,"4210":2,"4211":2,"4212":1,"4213":2,"4214":1,"4215":2,"4216":1,"4217":1,"4218":2,"4219":2,"4220":2,"4221":2,"4222":2,"4223":1,"4224":2,"4225":2,"4226":2,"4227":1,"4228":2,"4229":2,"4230":2,"4231":1,"4232":2,"4233":1,"4234":2,"4235":2,"4236":2,"4237":2,"4238":2,"4239":2,"4240":1,"4241":2,"4242":1,"4243":2,"4244":1,"4245":2,"4246":2,"4247":1,"4248":1,"4249":1,"4250":2,"4251":1,"4252":2,"4253":1,"4254":1,"4255":2,"4256":2,"4257":2,"4258":2,"4259":2,"4260":1,"4261":2,"4262":2,"4263":1,"4264":1,"4265":1,"4266":2,"4267":1,"4268":2,"4269":2,"4270":2,"4271":2,"4272":1,"4273":1,"4274":1,"4275":2,"4276":1,"4277":1,"4278":2,"4279":2,"4280":2,"4281":2,"4282":2,"4283":2,"4284":1,"4285":1,"4286":1,"4287":2,"4288":1,"4289":1,"4290":2,"4291":2,"4292":1,"4293":1,"4294":1,"4295":1,"4296":2,"4297":1,"4298":1,"4299":1,"4300":2,"4301":1,"4302":2,"4303":1,"4304":2,"4305":1,"4306":1,"4307":2,"4308":2,"4309":1,"4310":2,"4311":2,"4312":2,"4313":1,"4314":2,"4315":1,"4316":1,"4317":2,"4318":2,"4319":1,"4320":1,"4321":2,"4322":2,"4323":2,"4324":2,"4325":2,"4326":1,"4327":1,"4328":2,"4329":1,"4330":2,"4331":1,"4332":2,"4333":2,"4334":1,"4335":2,"4336":1,"4337":1,"4338":1,"4339":2,"4340":1,"4341":1,"4342":1,"4343":1,"4344":2,"4345":2,"4346":1,"4347":2,"4348":1,"4349":1,"4350":2,"4351":1,"4352":1,"4353":2,"4354":2,"4355":2,"4356":1,"4357":2,"4358":1,"4359":1,"4360":2,"4361":1,"4362":1,"4363":1,"4364":2,"4365":1,"4366":2,"4367":2,"4368":1,"4369":1,"4370":1,"4371":2,"4372":1,"4373":1,"4374":1,"4375":1,"4376":1,"4377":1,"4378":2,"4379":2,"4380":1,"4381":2,"4382":2,"4383":1,"4384":2,"4385":1,"4386":2,"4387":2,"4388":1,"4389":1,"4390":1,"4391":2,"4392":1,"4393":2,"4394":2,"4395":2,"4396":2,"4397":2,"4398":1,"4399":2,"4400":1,"4401":1,"4402":1,"4403":2,"4404":1,"4405":2,"4406":1,"4407":2,"4408":2,"4409":1,"4410":1,"4411":2,"4412":2,"4413":1,"4414":1,"4415":2,"4416":2,"4417":2,"4418":1,"4419":1,"4420":2,"4421":2,"4422":1,"4423":1,"4424":1,"4425":1,"4426":1,"4427":2,"4428":1,"4429":2,"4430":1,"4431":2,"4432":1,"4433":2,"4434":2,"4435":1,"4436":1,"4437":2,"4438":1,"4439":1,"4440":1,"4441":1,"4442":1,"4443":2,"4444":1,"4445":1,"4446":2,"4447":2,"4448":1,"4449":2,"4450":1,"4451":1,"4452":1,"4453":2,"4454":2,"4455":1,"4456":2,"4457":1,"4458":1,"4459":2,"4460":2,"4461":1,"4462":1,"4463":2,"4464":1,"4465":1,"4466":1,"4467":1,"4468":2,"4469":1,"4470":1,"4471":1,"4472":1,"4473":1,"4474":2,"4475":1,"4476":2,"4477":1,"4478":1,"4479":1,"4480":2,"4481":2,"4482":2,"4483":1,"4484":1,"4485":2,"4486":2,"4487":2,"4488":1,"4489":2,"4490":1,"4491":1,"4492":1,"4493":1,"4494":2,"4495":1,"4496":1,"4497":1,"4498":1,"4499":2,"4500":2,"4501":2,"4502":2,"4503":2,"4504":2,"4505":2,"4506":2,"4507":2,"4508":1,"4509":1,"4510":2,"4511":2,"4512":1,"4513":1,"4514":1,"4515":1,"4516":1,"4517":1,"4518":1,"4519":1,"4520":2,"4521":1,"4522":2,"4523":1,"4524":2,"4525":1,"4526":1,"4527":1,"4528":1,"4529":2,"4530":1,"4531":1,"4532":1,"4533":2,"4534":2,"4535":2,"4536":1,"4537":1,"4538":1,"4539":2,"4540":2,"4541":1,"4542":1,"4543":2,"4544":2,"4545":2,"4546":1,"4547":2,"4548":1,"4549":2,"4550":2,"4551":1,"4552":1,"4553":1,"4554":2,"4555":2,"4556":1,"4557":1,"4558":2,"4559":1,"4560":1,"4561":1,"4562":2,"4563":1,"4564":1,"4565":2,"4566":1,"4567":1,"4568":2,"4569":1,"4570":2,"4571":1,"4572":2,"4573":1,"4574":2,"4575":2,"4576":2,"4577":2,"4578":2,"4579":1,"4580":2,"4581":1,"4582":2,"4583":2,"4584":1,"4585":2,"4586":1,"4587":2,"4588":2,"4589":2,"4590":1,"4591":1,"4592":2,"4593":2,"4594":2,"4595":1,"4596":1,"4597":2,"4598":2,"4599":1,"4600":2,"4601":1,"4602":1,"4603":1,"4604":2,"4605":1,"4606":2,"4607":2,"4608":1,"4609":2,"4610":1,"4611":1,"4612":2,"4613":1,"4614":2,"4615":1,"4616":1,"4617":1,"4618":1,"4619":1,"4620":2,"4621":1,"4622":2,"4623":1,"4624":2,"4625":2,"4626":2,"4627":1,"4628":2,"4629":1,"4630":2,"4631":2,"4632":2,"4633":1,"4634":2,"4635":1,"4636":1,"4637":2,"4638":2,"4639":1,"4640":1,"4641":2,"4642":2,"4643":1,"4644":2,"4645":2,"4646":2,"4647":2,"4648":1,"4649":2,"4650":2,"4651":2,"4652":2,"4653":2,"4654":2,"4655":1,"4656":1,"4657":1,"4658":1,"4659":2,"4660":1,"4661":1,"4662":1,"4663":2,"4664":1,"4665":2,"4666":1,"4667":2,"4668":2,"4669":2,"4670":2,"4671":1,"4672":2,"4673":1,"4674":1,"4675":2,"4676":2,"4677":1,"4678":2,"4679":2,"4680":1,"4681":1,"4682":2,"4683":1,"4684":1,"4685":1,"4686":1,"4687":1,"4688":1,"4689":2,"4690":1,"4691":1,"4692":2,"4693":1,"4694":2,"4695":2,"4696":2,"4697":1,"4698":1,"4699":1,"4700":2,"4701":1,"4702":2,"4703":2,"4704":1,"4705":2,"4706":2,"4707":1,"4708":1,"4709":2,"4710":1,"4711":1,"4712":1,"4713":1,"4714":1,"4715":1,"4716":2,"4717":2,"4718":2,"4719":1,"4720":2,"4721":1,"4722":2,"4723":1,"4724":2,"4725":2,"4726":1,"4727":2,"4728":2,"4729":2,"4730":1,"4731":2,"4732":2,"4733":2,"4734":2,"4735":2,"4736":2,"4737":1,"4738":2,"4739":1,"4740":1,"4741":1,"4742":1,"4743":1,"4744":2,"4745":1,"4746":1,"4747":1,"4748":1,"4749":1,"4750":2,"4751":2,"4752":1,"4753":1,"4754":1,"4755":1,"4756":2,"4757":1,"4758":2,"4759":1,"4760":2,"4761":1,"4762":2,"4763":2,"4764":1,"4765":2,"4766":1,"4767":1,"4768":2,"4769":1,"4770":2,"4771":1,"4772":2,"4773":1,"4774":1,"4775":1,"4776":2,"4777":1,"4778":2,"4779":1,"4780":2,"4781":2,"4782":2,"4783":2,"4784":2,"4785":2,"4786":1,"4787":2,"4788":2,"4789":1,"4790":1,"4791":1,"4792":1,"4793":1,"4794":2,"4795":1,"4796":1,"4797":2,"4798":1,"4799":2,"4800":2,"4801":1,"4802":2,"4803":2,"4804":1,"4805":1,"4806":1,"4807":1,"4808":2,"4809":1,"4810":2,"4811":1,"4812":2,"4813":1,"4814":1,"4815":2,"4816":1,"4817":1,"4818":2,"4819":2,"4820":2,"4821":2,"4822":2,"4823":1,"4824":1,"4825":1,"4826":2,"4827":2,"4828":1,"4829":1,"4830":1,"4831":1,"4832":2,"4833":1,"4834":2,"4835":2,"4836":2,"4837":1,"4838":1,"4839":2,"4840":1,"4841":2,"4842":1,"4843":1,"4844":1,"4845":2,"4846":2,"4847":1,"4848":2,"4849":1,"4850":2,"4851":2,"4852":1,"4853":2,"4854":1,"4855":2,"4856":2,"4857":2,"4858":1,"4859":1,"4860":2,"4861":2,"4862":2,"4863":1,"4864":2,"4865":1,"4866":2,"4867":1,"4868":2,"4869":1,"4870":2,"4871":1,"4872":1,"4873":2,"4874":1,"4875":2,"4876":2,"4877":1,"4878":2,"4879":2,"4880":2,"4881":1,"4882":1,"4883":1,"4884":2,"4885":1,"4886":1,"4887":2,"4888":1,"4889":2,"4890":2,"4891":2,"4892":2,"4893":1,"4894":1,"4895":2,"4896":1,"4897":1,"4898":1,"4899":2,"4900":2,"4901":2,"4902":2,"4903":2,"4904":1,"4905":2,"4906":2,"4907":1,"4908":1,"4909":2,"4910":1,"4911":1,"4912":2,"4913":2,"4914":2,"4915":2,"4916":2,"4917":2,"4918":2,"4919":2,"4920":2,"4921":1,"4922":1,"4923":2,"4924":2,"4925":2,"4926":2,"4927":1,"4928":2,"4929":1,"4930":2,"4931":2,"4932":2,"4933":2,"4934":2,"4935":2,"4936":2,"4937":1,"4938":1,"4939":1,"4940":2,"4941":2,"4942":1,"4943":2,"4944":2,"4945":2,"4946":1,"4947":2,"4948":2,"4949":2,"4950":2,"4951":1,"4952":2,"4953":1,"4954":2,"4955":2,"4956":1,"4957":2,"4958":2,"4959":1,"4960":1,"4961":1,"4962":1,"4963":2,"4964":1,"4965":2,"4966":2,"4967":1,"4968":1,"4969":2,"4970":1,"4971":1,"4972":2,"4973":1,"4974":2,"4975":2,"4976":2,"4977":1,"4978":1,"4979":1,"4980":1,"4981":1,"4982":1,"4983":2,"4984":1,"4985":1,"4986":2,"4987":2,"4988":1,"4989":1,"4990":1,"4991":2,"4992":2,"4993":2,"4994":1,"4995":1,"4996":1,"4997":1,"4998":1,"4999":1,"5000":1,"5001":1,"5002":1,"5003":2,"5004":1,"5005":1,"5006":1,"5007":1,"5008":2,"5009":1,"5010":1,"5011":1,"5012":1,"5013":1,"5014":2,"5015":1,"5016":1,"5017":1,"5018":1,"5019":1,"5020":1,"5021":1,"5022":2,"5023":1,"5024":1,"5025":1,"5026":1,"5027":1,"5028":1,"5029":1,"5030":2,"5031":1,"5032":2,"5033":2,"5034":2,"5035":1,"5036":1,"5037":1,"5038":1,"5039":1,"5040":2,"5041":1,"5042":2,"5043":1,"5044":1,"5045":2,"5046":2,"5047":1,"5048":2,"5049":1,"5050":1,"5051":1,"5052":1,"5053":1,"5054":2,"5055":2,"5056":2,"5057":2,"5058":2,"5059":1,"5060":1,"5061":2,"5062":1,"5063":2,"5064":2,"5065":1,"5066":1,"5067":1,"5068":1,"5069":1,"5070":2,"5071":2,"5072":2,"5073":1,"5074":1,"5075":1,"5076":1,"5077":1,"5078":2,"5079":2,"5080":1,"5081":1,"5082":2,"5083":2,"5084":1,"5085":1,"5086":2,"5087":1,"5088":1,"5089":2,"5090":2,"5091":2,"5092":1,"5093":1,"5094":2,"5095":1,"5096":1,"5097":1,"5098":1,"5099":2,"5100":2,"5101":1,"5102":2,"5103":2,"5104":2,"5105":2,"5106":1,"5107":1,"5108":2,"5109":1,"5110":2,"5111":2,"5112":1,"5113":2,"5114":2,"5115":1,"5116":2,"5117":1,"5118":1,"5119":2,"5120":2,"5121":1,"5122":1,"5123":2,"5124":1,"5125":1,"5126":2,"5127":1,"5128":2,"5129":2,"5130":1,"5131":1,"5132":1,"5133":2,"5134":2,"5135":2,"5136":2,"5137":1,"5138":1,"5139":1,"5140":1,"5141":2,"5142":2,"5143":2,"5144":1,"5145":2,"5146":1,"5147":1,"5148":2,"5149":1,"5150":2,"5151":1,"5152":2,"5153":2,"5154":2,"5155":1,"5156":1,"5157":1,"5158":1,"5159":2,"5160":1,"5161":1,"5162":1,"5163":2,"5164":2,"5165":1,"5166":2,"5167":2,"5168":2,"5169":1,"5170":2,"5171":1,"5172":2,"5173":2,"5174":2,"5175":2,"5176":2,"5177":2,"5178":1,"5179":1,"5180":2,"5181":1,"5182":1,"5183":2,"5184":2,"5185":2,"5186":2,"5187":2,"5188":1,"5189":1,"5190":1,"5191":1,"5192":2,"5193":2,"5194":2,"5195":2,"5196":1,"5197":2,"5198":2,"5199":1,"5200":1,"5201":1,"5202":1,"5203":2,"5204":2,"5205":2,"5206":1,"5207":2,"5208":2,"5209":1,"5210":2,"5211":1,"5212":1,"5213":2,"5214":1,"5215":1,"5216":1,"5217":1,"5218":2,"5219":2,"5220":2,"5221":2,"5222":1,"5223":1,"5224":1,"5225":1,"5226":2,"5227":2,"5228":1,"5229":2,"5230":2,"5231":1,"5232":1,"5233":2,"5234":2,"5235":2,"5236":1,"5237":1,"5238":1,"5239":1,"5240":2,"5241":1,"5242":2,"5243":1,"5244":2,"5245":2,"5246":1,"5247":2,"5248":2,"5249":2,"5250":2,"5251":1,"5252":1,"5253":1,"5254":1,"5255":2,"5256":1,"5257":2,"5258":2,"5259":1,"5260":2,"5261":1,"5262":1,"5263":2,"5264":2,"5265":2,"5266":1,"5267":1,"5268":2,"5269":2,"5270":2,"5271":2,"5272":2,"5273":1,"5274":2,"5275":2,"5276":1,"5277":2,"5278":1,"5279":2,"5280":1,"5281":1,"5282":2,"5283":2,"5284":1,"5285":2,"5286":1,"5287":2,"5288":2,"5289":1,"5290":2,"5291":2,"5292":1,"5293":1,"5294":1,"5295":1,"5296":1,"5297":1,"5298":1,"5299":1,"5300":2,"5301":1,"5302":2,"5303":1,"5304":2,"5305":2,"5306":1,"5307":1,"5308":1,"5309":1,"5310":2,"5311":2,"5312":2,"5313":2,"5314":2,"5315":1,"5316":1,"5317":1,"5318":2,"5319":2,"5320":1,"5321":2,"5322":1,"5323":2,"5324":2,"5325":2,"5326":2,"5327":1,"5328":1,"5329":1,"5330":2,"5331":2,"5332":1,"5333":1,"5334":1,"5335":1,"5336":1,"5337":2,"5338":2,"5339":1,"5340":1,"5341":1,"5342":2,"5343":1,"5344":1,"5345":1,"5346":2,"5347":1,"5348":2,"5349":1,"5350":1,"5351":1,"5352":2,"5353":2,"5354":2,"5355":1,"5356":2,"5357":1,"5358":1,"5359":1,"5360":1,"5361":1,"5362":1,"5363":2,"5364":2,"5365":2,"5366":1,"5367":2,"5368":1,"5369":2,"5370":2,"5371":2,"5372":1,"5373":1,"5374":2,"5375":2,"5376":2,"5377":1,"5378":2,"5379":1,"5380":2,"5381":2,"5382":2,"5383":1,"5384":1,"5385":1,"5386":2,"5387":2,"5388":2,"5389":1,"5390":2,"5391":1,"5392":2,"5393":2,"5394":2,"5395":2,"5396":1,"5397":2,"5398":2,"5399":2,"5400":2,"5401":1,"5402":2,"5403":2,"5404":2,"5405":1,"5406":1,"5407":1,"5408":2,"5409":1,"5410":2,"5411":2,"5412":1,"5413":2,"5414":1,"5415":2,"5416":2,"5417":2,"5418":2,"5419":1,"5420":1,"5421":1,"5422":1,"5423":1,"5424":2,"5425":1,"5426":1,"5427":1,"5428":2,"5429":2,"5430":1,"5431":2,"5432":2,"5433":1,"5434":2,"5435":1,"5436":2,"5437":2,"5438":2,"5439":2,"5440":2,"5441":1,"5442":1,"5443":2,"5444":1,"5445":1,"5446":1,"5447":1,"5448":1,"5449":1,"5450":1,"5451":1,"5452":1,"5453":2,"5454":1,"5455":1,"5456":1,"5457":1,"5458":1,"5459":1,"5460":1,"5461":2,"5462":1,"5463":2,"5464":1,"5465":2,"5466":2,"5467":1,"5468":1,"5469":2,"5470":1,"5471":1,"5472":1,"5473":1,"5474":1,"5475":1,"5476":1,"5477":2,"5478":2,"5479":2,"5480":1,"5481":2,"5482":1,"5483":2,"5484":1,"5485":2,"5486":2,"5487":2,"5488":2,"5489":2,"5490":2,"5491":2,"5492":2,"5493":1,"5494":1,"5495":1,"5496":2,"5497":2,"5498":2,"5499":1,"5500":2,"5501":1,"5502":2,"5503":2,"5504":2,"5505":2,"5506":1,"5507":1,"5508":1,"5509":2,"5510":2,"5511":1,"5512":2,"5513":2,"5514":1,"5515":2,"5516":1,"5517":2,"5518":2,"5519":2,"5520":1,"5521":2,"5522":1,"5523":2,"5524":1,"5525":2,"5526":2,"5527":2,"5528":2,"5529":2,"5530":1,"5531":1,"5532":1,"5533":2,"5534":1,"5535":2,"5536":2,"5537":2,"5538":2,"5539":2,"5540":1,"5541":2,"5542":1,"5543":1,"5544":1,"5545":1,"5546":1,"5547":1,"5548":2,"5549":1,"5550":2,"5551":1,"5552":1,"5553":2,"5554":1,"5555":2,"5556":1,"5557":2,"5558":1,"5559":2,"5560":1,"5561":1,"5562":1,"5563":1,"5564":1,"5565":2,"5566":2,"5567":2,"5568":1,"5569":2,"5570":2,"5571":2,"5572":1,"5573":2,"5574":1,"5575":1,"5576":2,"5577":2,"5578":2,"5579":2,"5580":2,"5581":1,"5582":1,"5583":1,"5584":2,"5585":2,"5586":2,"5587":1,"5588":1,"5589":1,"5590":1,"5591":2,"5592":1,"5593":2,"5594":2,"5595":2,"5596":2,"5597":2,"5598":2,"5599":1,"5600":2,"5601":1,"5602":2,"5603":2,"5604":1,"5605":2,"5606":1,"5607":2,"5608":2,"5609":2,"5610":1,"5611":1,"5612":2,"5613":2,"5614":1,"5615":1,"5616":2,"5617":2,"5618":1,"5619":1,"5620":2,"5621":2,"5622":2,"5623":2,"5624":2,"5625":2,"5626":2,"5627":1,"5628":2,"5629":1,"5630":1,"5631":1,"5632":1,"5633":2,"5634":1,"5635":1,"5636":2,"5637":2,"5638":1,"5639":1,"5640":1,"5641":1,"5642":1,"5643":2,"5644":2,"5645":2,"5646":2,"5647":2,"5648":1,"5649":2,"5650":2,"5651":1,"5652":1,"5653":1,"5654":2,"5655":1,"5656":2,"5657":2,"5658":2,"5659":2,"5660":1,"5661":2,"5662":2,"5663":1,"5664":1,"5665":1,"5666":1,"5667":1,"5668":2,"5669":2,"5670":1,"5671":1,"5672":1,"5673":2,"5674":2,"5675":1,"5676":1,"5677":2,"5678":1,"5679":1,"5680":2,"5681":1,"5682":1,"5683":2,"5684":1,"5685":2,"5686":1,"5687":2,"5688":2,"5689":2,"5690":2,"5691":2,"5692":2,"5693":1,"5694":1,"5695":2,"5696":2,"5697":1,"5698":2,"5699":1,"5700":1,"5701":2,"5702":2,"5703":2,"5704":1,"5705":1,"5706":2,"5707":2,"5708":2,"5709":1,"5710":1,"5711":2,"5712":1,"5713":2,"5714":2,"5715":2,"5716":1,"5717":1,"5718":2,"5719":1,"5720":2,"5721":2,"5722":1,"5723":1,"5724":1,"5725":1,"5726":2,"5727":1,"5728":2,"5729":1,"5730":2,"5731":2,"5732":1,"5733":2,"5734":2,"5735":2,"5736":1,"5737":2,"5738":2,"5739":2,"5740":1,"5741":2,"5742":2,"5743":2,"5744":1,"5745":1,"5746":2,"5747":1,"5748":2,"5749":1,"5750":1,"5751":1,"5752":1,"5753":1,"5754":2,"5755":2,"5756":1,"5757":2,"5758":2,"5759":2,"5760":1,"5761":2,"5762":1,"5763":1,"5764":2,"5765":1,"5766":1,"5767":1,"5768":2,"5769":1,"5770":1,"5771":2,"5772":1,"5773":1,"5774":1,"5775":2,"5776":1,"5777":2,"5778":2,"5779":1,"5780":1,"5781":2,"5782":1,"5783":1,"5784":1,"5785":1,"5786":1,"5787":1,"5788":1,"5789":1,"5790":2,"5791":2,"5792":2,"5793":2,"5794":1,"5795":2,"5796":2,"5797":1,"5798":1,"5799":2,"5800":2,"5801":1,"5802":2,"5803":2,"5804":1,"5805":2,"5806":2,"5807":1,"5808":2,"5809":1,"5810":1,"5811":1,"5812":1,"5813":2,"5814":2,"5815":2,"5816":1,"5817":2,"5818":2,"5819":2,"5820":1,"5821":1,"5822":1,"5823":1,"5824":2,"5825":2,"5826":2,"5827":2,"5828":2,"5829":2,"5830":2,"5831":1,"5832":1,"5833":2,"5834":2,"5835":2,"5836":2,"5837":2,"5838":2,"5839":1,"5840":1,"5841":1,"5842":1,"5843":2,"5844":1,"5845":1,"5846":2,"5847":2,"5848":1,"5849":2,"5850":1,"5851":1,"5852":1,"5853":1,"5854":2,"5855":1,"5856":2,"5857":2,"5858":2,"5859":1,"5860":1,"5861":1,"5862":1,"5863":1,"5864":2,"5865":1,"5866":1,"5867":1,"5868":2,"5869":2,"5870":1,"5871":2,"5872":1,"5873":1,"5874":1,"5875":2,"5876":2,"5877":2,"5878":1,"5879":1,"5880":2,"5881":2,"5882":1,"5883":2,"5884":1,"5885":2,"5886":1,"5887":1,"5888":1,"5889":2,"5890":1,"5891":1,"5892":2,"5893":2,"5894":2,"5895":2,"5896":2,"5897":1,"5898":1,"5899":2,"5900":2,"5901":1,"5902":1,"5903":1,"5904":2,"5905":1,"5906":1,"5907":2,"5908":2,"5909":2,"5910":2,"5911":1,"5912":2,"5913":2,"5914":1,"5915":1,"5916":2,"5917":1,"5918":2,"5919":1,"5920":1,"5921":2,"5922":1,"5923":1,"5924":1,"5925":2,"5926":1,"5927":2,"5928":1,"5929":1,"5930":1,"5931":1,"5932":1,"5933":2,"5934":1,"5935":1,"5936":1,"5937":1,"5938":1,"5939":2,"5940":2,"5941":2,"5942":1,"5943":1,"5944":1,"5945":1,"5946":2,"5947":2,"5948":2,"5949":2,"5950":2,"5951":1,"5952":2,"5953":1,"5954":2,"5955":2,"5956":1,"5957":2,"5958":2,"5959":2,"5960":2,"5961":2,"5962":2,"5963":1,"5964":1,"5965":2,"5966":2,"5967":1,"5968":2,"5969":1,"5970":2,"5971":1,"5972":1,"5973":1,"5974":1,"5975":2,"5976":2,"5977":1,"5978":2,"5979":1,"5980":2,"5981":2,"5982":2,"5983":2,"5984":2,"5985":2,"5986":2,"5987":2,"5988":2,"5989":2,"5990":1,"5991":2,"5992":1,"5993":2,"5994":2,"5995":2,"5996":1,"5997":2,"5998":2,"5999":1,"6000":2,"6001":2,"6002":1,"6003":1,"6004":2,"6005":2,"6006":2,"6007":1,"6008":2,"6009":1,"6010":1,"6011":1,"6012":2,"6013":1,"6014":1,"6015":2,"6016":1,"6017":1,"6018":2,"6019":1,"6020":1,"6021":2,"6022":2,"6023":2,"6024":2,"6025":2,"6026":2,"6027":2,"6028":1,"6029":1,"6030":1,"6031":1,"6032":2,"6033":2,"6034":1,"6035":2,"6036":2,"6037":1,"6038":2,"6039":2,"6040":1,"6041":1,"6042":2,"6043":1,"6044":2,"6045":2,"6046":1,"6047":1,"6048":1,"6049":1,"6050":2,"6051":1,"6052":2,"6053":1,"6054":1,"6055":2,"6056":1,"6057":1,"6058":1,"6059":2,"6060":2,"6061":1,"6062":2,"6063":1,"6064":1,"6065":1,"6066":1,"6067":2,"6068":2,"6069":1,"6070":1,"6071":1,"6072":2,"6073":1,"6074":1,"6075":1,"6076":2,"6077":1,"6078":2,"6079":2,"6080":1,"6081":1,"6082":2,"6083":2,"6084":2,"6085":2,"6086":2,"6087":1,"6088":2,"6089":1,"6090":1,"6091":1,"6092":2,"6093":2,"6094":1,"6095":1,"6096":1,"6097":1,"6098":1,"6099":1,"6100":1,"6101":1,"6102":1,"6103":2,"6104":2,"6105":2,"6106":1,"6107":2,"6108":1,"6109":1,"6110":2,"6111":1,"6112":2,"6113":2,"6114":1,"6115":2,"6116":2,"6117":1,"6118":1,"6119":1,"6120":2,"6121":1,"6122":1,"6123":1,"6124":1,"6125":1,"6126":1,"6127":2,"6128":2,"6129":2,"6130":2,"6131":2,"6132":2,"6133":2,"6134":1,"6135":2,"6136":1,"6137":1,"6138":1,"6139":1,"6140":2,"6141":1,"6142":2,"6143":2,"6144":1,"6145":1,"6146":2,"6147":1,"6148":1,"6149":1,"6150":2,"6151":2,"6152":2,"6153":1,"6154":1,"6155":2,"6156":1,"6157":2,"6158":2,"6159":2,"6160":2,"6161":2,"6162":1,"6163":1,"6164":2,"6165":1,"6166":2,"6167":2,"6168":2,"6169":2,"6170":2,"6171":2,"6172":2,"6173":1,"6174":1,"6175":1,"6176":2,"6177":2,"6178":2,"6179":1,"6180":1,"6181":1,"6182":2,"6183":2,"6184":1,"6185":1,"6186":2,"6187":1,"6188":2,"6189":1,"6190":2,"6191":2,"6192":1,"6193":2,"6194":1,"6195":2,"6196":2,"6197":1,"6198":1,"6199":2,"6200":1,"6201":2,"6202":2,"6203":2,"6204":1,"6205":1,"6206":1,"6207":1,"6208":1,"6209":2,"6210":1,"6211":1,"6212":2,"6213":2,"6214":2,"6215":1,"6216":2,"6217":2,"6218":2,"6219":1,"6220":1,"6221":1,"6222":1,"6223":2,"6224":2,"6225":2,"6226":1,"6227":2,"6228":1,"6229":1,"6230":1,"6231":2,"6232":1,"6233":1,"6234":1,"6235":2,"6236":1,"6237":2,"6238":1,"6239":1,"6240":1,"6241":1,"6242":1,"6243":1,"6244":1,"6245":1,"6246":1,"6247":2,"6248":1,"6249":1,"6250":1,"6251":1,"6252":2,"6253":1,"6254":2,"6255":1,"6256":1,"6257":2,"6258":1,"6259":1,"6260":1,"6261":1,"6262":1,"6263":1,"6264":1,"6265":2,"6266":2,"6267":1,"6268":1,"6269":1,"6270":2,"6271":1,"6272":2,"6273":1,"6274":2,"6275":1,"6276":1,"6277":1,"6278":2,"6279":1,"6280":1,"6281":2,"6282":1,"6283":1,"6284":1,"6285":1,"6286":2,"6287":1,"6288":2,"6289":2,"6290":1,"6291":1,"6292":2,"6293":1,"6294":1,"6295":2,"6296":1,"6297":1,"6298":1,"6299":2,"6300":1,"6301":1,"6302":2,"6303":1,"6304":2,"6305":1,"6306":2,"6307":1,"6308":2,"6309":2,"6310":2,"6311":2,"6312":2,"6313":1,"6314":2,"6315":2,"6316":2,"6317":1,"6318":1,"6319":1,"6320":1,"6321":2,"6322":2,"6323":1,"6324":1,"6325":2,"6326":1,"6327":1,"6328":2,"6329":1,"6330":2,"6331":1,"6332":1,"6333":1,"6334":1,"6335":2,"6336":1,"6337":2,"6338":2,"6339":2,"6340":1,"6341":2,"6342":1,"6343":1,"6344":1,"6345":2,"6346":1,"6347":1,"6348":1,"6349":1,"6350":2,"6351":2,"6352":2,"6353":2,"6354":1,"6355":2,"6356":1,"6357":2,"6358":2,"6359":1,"6360":1,"6361":2,"6362":2,"6363":2,"6364":2,"6365":1,"6366":2,"6367":1,"6368":1,"6369":2,"6370":1,"6371":1,"6372":1,"6373":2,"6374":1,"6375":2,"6376":1,"6377":1,"6378":2,"6379":2,"6380":2,"6381":2,"6382":2,"6383":2,"6384":2,"6385":1,"6386":2,"6387":1,"6388":2,"6389":2,"6390":1,"6391":2,"6392":2,"6393":1,"6394":2,"6395":2,"6396":2,"6397":1,"6398":1,"6399":2,"6400":2,"6401":2,"6402":2,"6403":1,"6404":1,"6405":1,"6406":1,"6407":2,"6408":1,"6409":2,"6410":1,"6411":1,"6412":2,"6413":2,"6414":2,"6415":1,"6416":1,"6417":2,"6418":2,"6419":1,"6420":1,"6421":1,"6422":2,"6423":1,"6424":1,"6425":1,"6426":1,"6427":2,"6428":2,"6429":2,"6430":2,"6431":2,"6432":1,"6433":2,"6434":1,"6435":2,"6436":2,"6437":1,"6438":2,"6439":1,"6440":2,"6441":2,"6442":2,"6443":2,"6444":1,"6445":2,"6446":1,"6447":1,"6448":1,"6449":2,"6450":1,"6451":1,"6452":1,"6453":1,"6454":2,"6455":1,"6456":2,"6457":1,"6458":1,"6459":1,"6460":1,"6461":1,"6462":1,"6463":2,"6464":1,"6465":2,"6466":2,"6467":2,"6468":1,"6469":2,"6470":1,"6471":2,"6472":2,"6473":2,"6474":2,"6475":1,"6476":2,"6477":2,"6478":2,"6479":2,"6480":2,"6481":1,"6482":2,"6483":2,"6484":2,"6485":2,"6486":1,"6487":2,"6488":1,"6489":2,"6490":2,"6491":2,"6492":1,"6493":1,"6494":1,"6495":2,"6496":2,"6497":1,"6498":2,"6499":2,"6500":1,"6501":2,"6502":2,"6503":2,"6504":2,"6505":1,"6506":1,"6507":1,"6508":2,"6509":1,"6510":2,"6511":1,"6512":1,"6513":2,"6514":1,"6515":2,"6516":2,"6517":2,"6518":1,"6519":1,"6520":1,"6521":2,"6522":1,"6523":1,"6524":1,"6525":1,"6526":2,"6527":2,"6528":1,"6529":1,"6530":1,"6531":2,"6532":2,"6533":1,"6534":1,"6535":2,"6536":1,"6537":1,"6538":1,"6539":2,"6540":2,"6541":2,"6542":1,"6543":1,"6544":2,"6545":1,"6546":2,"6547":1,"6548":2,"6549":1,"6550":2,"6551":2,"6552":1,"6553":1,"6554":2,"6555":2,"6556":2,"6557":2,"6558":1,"6559":1,"6560":2,"6561":1,"6562":1,"6563":1,"6564":1,"6565":1,"6566":1,"6567":1,"6568":2,"6569":2,"6570":1,"6571":2,"6572":1,"6573":1,"6574":1,"6575":2,"6576":2,"6577":2,"6578":2,"6579":2,"6580":2,"6581":1,"6582":2,"6583":2,"6584":2,"6585":2,"6586":2,"6587":1,"6588":1,"6589":1,"6590":2,"6591":1,"6592":2,"6593":1,"6594":1,"6595":1,"6596":1,"6597":1,"6598":1,"6599":2,"6600":1,"6601":1,"6602":1,"6603":1,"6604":1,"6605":1,"6606":2,"6607":2,"6608":2,"6609":1,"6610":2,"6611":2,"6612":2,"6613":2,"6614":2,"6615":1,"6616":2,"6617":1,"6618":2,"6619":1,"6620":1,"6621":1,"6622":2,"6623":2,"6624":1,"6625":2,"6626":2,"6627":2,"6628":1,"6629":1,"6630":2,"6631":2,"6632":2,"6633":2,"6634":1,"6635":2,"6636":1,"6637":1,"6638":1,"6639":1,"6640":2,"6641":2,"6642":2,"6643":2,"6644":2,"6645":1,"6646":1,"6647":1,"6648":1,"6649":2,"6650":1,"6651":2,"6652":2,"6653":1,"6654":2,"6655":2,"6656":1,"6657":1,"6658":1,"6659":1,"6660":2,"6661":1,"6662":2,"6663":2,"6664":1,"6665":1,"6666":2,"6667":1,"6668":2,"6669":2,"6670":2,"6671":1,"6672":1,"6673":2,"6674":2,"6675":1,"6676":2,"6677":1,"6678":2,"6679":1,"6680":2,"6681":2,"6682":2,"6683":1,"6684":2,"6685":2,"6686":2,"6687":2,"6688":1,"6689":1,"6690":2,"6691":2,"6692":2,"6693":1,"6694":1,"6695":2,"6696":1,"6697":2,"6698":2,"6699":1,"6700":1,"6701":2,"6702":1,"6703":2,"6704":2,"6705":1,"6706":2,"6707":2,"6708":2,"6709":2,"6710":2,"6711":2,"6712":2,"6713":2,"6714":2,"6715":1,"6716":2,"6717":1,"6718":2,"6719":2,"6720":2,"6721":2,"6722":1,"6723":1,"6724":2,"6725":1,"6726":2,"6727":1,"6728":2,"6729":1,"6730":2,"6731":1,"6732":2,"6733":2,"6734":1,"6735":2,"6736":2,"6737":1,"6738":1,"6739":1,"6740":2,"6741":1,"6742":2,"6743":2,"6744":1,"6745":2,"6746":1,"6747":2,"6748":2,"6749":2,"6750":2,"6751":2,"6752":2,"6753":1,"6754":1,"6755":2,"6756":1,"6757":1,"6758":1,"6759":1,"6760":1,"6761":1,"6762":1,"6763":2,"6764":1,"6765":2,"6766":2,"6767":1,"6768":1,"6769":2,"6770":2,"6771":2,"6772":1,"6773":1,"6774":2,"6775":1,"6776":1,"6777":1,"6778":1,"6779":1,"6780":1,"6781":1,"6782":2,"6783":2,"6784":2,"6785":1,"6786":2,"6787":1,"6788":1,"6789":1,"6790":2,"6791":1,"6792":1,"6793":2,"6794":2,"6795":2,"6796":1,"6797":1,"6798":1,"6799":1,"6800":2,"6801":1,"6802":1,"6803":2,"6804":1,"6805":1,"6806":1,"6807":1,"6808":2,"6809":1,"6810":2,"6811":1,"6812":1,"6813":2,"6814":2,"6815":2,"6816":1,"6817":1,"6818":2,"6819":2,"6820":1,"6821":1,"6822":2,"6823":1,"6824":2,"6825":2,"6826":1,"6827":2,"6828":2,"6829":2,"6830":1,"6831":2,"6832":1,"6833":2,"6834":1,"6835":1,"6836":1,"6837":2,"6838":1,"6839":2,"6840":1,"6841":1,"6842":2,"6843":2,"6844":1,"6845":1,"6846":2,"6847":1,"6848":1,"6849":2,"6850":2,"6851":2,"6852":1,"6853":2,"6854":2,"6855":1,"6856":1,"6857":2,"6858":2,"6859":1,"6860":1,"6861":1,"6862":1,"6863":2,"6864":1,"6865":2,"6866":1,"6867":2,"6868":1,"6869":1,"6870":1,"6871":1,"6872":1,"6873":1,"6874":2,"6875":2,"6876":2,"6877":2,"6878":1,"6879":2,"6880":1,"6881":2,"6882":1,"6883":1,"6884":1,"6885":2,"6886":2,"6887":2,"6888":1,"6889":2,"6890":2,"6891":2,"6892":2,"6893":2,"6894":1,"6895":2,"6896":2,"6897":2,"6898":1,"6899":1,"6900":1,"6901":1,"6902":2,"6903":1,"6904":1,"6905":2,"6906":1,"6907":2,"6908":1,"6909":2,"6910":2,"6911":2,"6912":1,"6913":2,"6914":2,"6915":1,"6916":1,"6917":2,"6918":2,"6919":2,"6920":2,"6921":2,"6922":1,"6923":1,"6924":1,"6925":2,"6926":1,"6927":2,"6928":1,"6929":2,"6930":1,"6931":2,"6932":1,"6933":1,"6934":2,"6935":1,"6936":2,"6937":1,"6938":2,"6939":2,"6940":2,"6941":2,"6942":2,"6943":2,"6944":1,"6945":1,"6946":2,"6947":2,"6948":1,"6949":1,"6950":1,"6951":1,"6952":2,"6953":2,"6954":1,"6955":1,"6956":1,"6957":2,"6958":2,"6959":1,"6960":2,"6961":2,"6962":2,"6963":2,"6964":1,"6965":1,"6966":1,"6967":1,"6968":2,"6969":2,"6970":1,"6971":1,"6972":1,"6973":1,"6974":2,"6975":1,"6976":1,"6977":1,"6978":1,"6979":1,"6980":2,"6981":1,"6982":2,"6983":1,"6984":1,"6985":1,"6986":1,"6987":1,"6988":1,"6989":1,"6990":2,"6991":2,"6992":1,"6993":1,"6994":1,"6995":2,"6996":1,"6997":1,"6998":1,"6999":1,"7000":2,"7001":2,"7002":1,"7003":1,"7004":1,"7005":2,"7006":2,"7007":1,"7008":2,"7009":2,"7010":2,"7011":1,"7012":1,"7013":2,"7014":1,"7015":1,"7016":1,"7017":2,"7018":1,"7019":2,"7020":2,"7021":2,"7022":2,"7023":1,"7024":1,"7025":1,"7026":2,"7027":2,"7028":1,"7029":1,"7030":2,"7031":2,"7032":1,"7033":1,"7034":1,"7035":1,"7036":1,"7037":1,"7038":1,"7039":1,"7040":1,"7041":1,"7042":1,"7043":1,"7044":2,"7045":1,"7046":2,"7047":2,"7048":2,"7049":2,"7050":2,"7051":2,"7052":2,"7053":1,"7054":2,"7055":1,"7056":1,"7057":1,"7058":2,"7059":2,"7060":1,"7061":2,"7062":2,"7063":2,"7064":2,"7065":2,"7066":2,"7067":2,"7068":2,"7069":2,"7070":1,"7071":2,"7072":2,"7073":2,"7074":2,"7075":1,"7076":1,"7077":2,"7078":2,"7079":1,"7080":2,"7081":1,"7082":2,"7083":1,"7084":1,"7085":1,"7086":1,"7087":2,"7088":2,"7089":2,"7090":2,"7091":2,"7092":1,"7093":2,"7094":1,"7095":1,"7096":1,"7097":2,"7098":1,"7099":2,"7100":1,"7101":1,"7102":1,"7103":1,"7104":1,"7105":1,"7106":1,"7107":2,"7108":2,"7109":1,"7110":1,"7111":1,"7112":2,"7113":2,"7114":2,"7115":1,"7116":1,"7117":1,"7118":2,"7119":2,"7120":1,"7121":2,"7122":1,"7123":2,"7124":1,"7125":1,"7126":2,"7127":2,"7128":1,"7129":1,"7130":2,"7131":1,"7132":1,"7133":1,"7134":1,"7135":1,"7136":1,"7137":1,"7138":2,"7139":1,"7140":1,"7141":2,"7142":1,"7143":2,"7144":1,"7145":2,"7146":1,"7147":2,"7148":2,"7149":2,"7150":2,"7151":2,"7152":1,"7153":2,"7154":2,"7155":2,"7156":1,"7157":2,"7158":1,"7159":2,"7160":2,"7161":2,"7162":1,"7163":1,"7164":1,"7165":1,"7166":1,"7167":2,"7168":2,"7169":2,"7170":1,"7171":2,"7172":1,"7173":1,"7174":1,"7175":1,"7176":1,"7177":1,"7178":2,"7179":1,"7180":2,"7181":1,"7182":2,"7183":2,"7184":2,"7185":1,"7186":1,"7187":1,"7188":1,"7189":2,"7190":2,"7191":2,"7192":2,"7193":2,"7194":2,"7195":2,"7196":2,"7197":1,"7198":1,"7199":2,"7200":1,"7201":1,"7202":1,"7203":1,"7204":2,"7205":1,"7206":1,"7207":2,"7208":2,"7209":2,"7210":2,"7211":1,"7212":2,"7213":2,"7214":2,"7215":1,"7216":1,"7217":1,"7218":2,"7219":2,"7220":1,"7221":1,"7222":2,"7223":1,"7224":1,"7225":1,"7226":2,"7227":1,"7228":2,"7229":1,"7230":2,"7231":2,"7232":1,"7233":2,"7234":1,"7235":2,"7236":2,"7237":1,"7238":2,"7239":1,"7240":2,"7241":2,"7242":2,"7243":2,"7244":1,"7245":2,"7246":1,"7247":2,"7248":2,"7249":1,"7250":2,"7251":1,"7252":1,"7253":2,"7254":1,"7255":2,"7256":2,"7257":2,"7258":1,"7259":2,"7260":1,"7261":2,"7262":2,"7263":2,"7264":2,"7265":1,"7266":1,"7267":2,"7268":1,"7269":2,"7270":2,"7271":1,"7272":2,"7273":1,"7274":1,"7275":1,"7276":2,"7277":1,"7278":2,"7279":1,"7280":1,"7281":1,"7282":2,"7283":1,"7284":2,"7285":2,"7286":2,"7287":2,"7288":2,"7289":2,"7290":1,"7291":1,"7292":1,"7293":1,"7294":2,"7295":1,"7296":1,"7297":1,"7298":2,"7299":2,"7300":2,"7301":1,"7302":1,"7303":1,"7304":1,"7305":1,"7306":2,"7307":1,"7308":1,"7309":1,"7310":1,"7311":2,"7312":2,"7313":1,"7314":2,"7315":2,"7316":1,"7317":2,"7318":2,"7319":2,"7320":2,"7321":2,"7322":2,"7323":2,"7324":2,"7325":2,"7326":1,"7327":1,"7328":2,"7329":1,"7330":1,"7331":2,"7332":1,"7333":2,"7334":1,"7335":1,"7336":2,"7337":2,"7338":1,"7339":2,"7340":2,"7341":1,"7342":2,"7343":2,"7344":1,"7345":1,"7346":1,"7347":1,"7348":1,"7349":1,"7350":1,"7351":2,"7352":1,"7353":1,"7354":1,"7355":1,"7356":2,"7357":2,"7358":2,"7359":2,"7360":1,"7361":1,"7362":2,"7363":2,"7364":2,"7365":2,"7366":1,"7367":2,"7368":2,"7369":1,"7370":2,"7371":1,"7372":2,"7373":1,"7374":1,"7375":1,"7376":2,"7377":1,"7378":1,"7379":2,"7380":2,"7381":2,"7382":2,"7383":1,"7384":2,"7385":1,"7386":2,"7387":2,"7388":2,"7389":1,"7390":2,"7391":2,"7392":2,"7393":2,"7394":2,"7395":1,"7396":2,"7397":1,"7398":1,"7399":1,"7400":1,"7401":1,"7402":1,"7403":2,"7404":2,"7405":1,"7406":1,"7407":2,"7408":1,"7409":1,"7410":1,"7411":2,"7412":2,"7413":1,"7414":1,"7415":1,"7416":1,"7417":1,"7418":1,"7419":2,"7420":1,"7421":2,"7422":2,"7423":2,"7424":2,"7425":2,"7426":1,"7427":1,"7428":1,"7429":1,"7430":2,"7431":1,"7432":2,"7433":2,"7434":2,"7435":1,"7436":2,"7437":1,"7438":1,"7439":1,"7440":2,"7441":1,"7442":2,"7443":1,"7444":1,"7445":1,"7446":1,"7447":1,"7448":2,"7449":1,"7450":2,"7451":2,"7452":2,"7453":1,"7454":1,"7455":2,"7456":1,"7457":2,"7458":2,"7459":1,"7460":2,"7461":1,"7462":2,"7463":1,"7464":1,"7465":2,"7466":1,"7467":2,"7468":1,"7469":1,"7470":2,"7471":2,"7472":1,"7473":1,"7474":2,"7475":1,"7476":1,"7477":1,"7478":2,"7479":2,"7480":1,"7481":2,"7482":1,"7483":1,"7484":2,"7485":2,"7486":1,"7487":2,"7488":1,"7489":2,"7490":2,"7491":1,"7492":1,"7493":1,"7494":2,"7495":1,"7496":1,"7497":2,"7498":1,"7499":2,"7500":2,"7501":2,"7502":2,"7503":1,"7504":2,"7505":1,"7506":2,"7507":2,"7508":2,"7509":2,"7510":1,"7511":2,"7512":1,"7513":2,"7514":1,"7515":2,"7516":1,"7517":1,"7518":1,"7519":2,"7520":2,"7521":1,"7522":2,"7523":1,"7524":2,"7525":1,"7526":1,"7527":2,"7528":2,"7529":2,"7530":1,"7531":1,"7532":2,"7533":2,"7534":1,"7535":2,"7536":1,"7537":1,"7538":1,"7539":1,"7540":1,"7541":2,"7542":1,"7543":2,"7544":1,"7545":2,"7546":1,"7547":1,"7548":1,"7549":2,"7550":1,"7551":1,"7552":2,"7553":2,"7554":1,"7555":1,"7556":2,"7557":1,"7558":1,"7559":2,"7560":2,"7561":2,"7562":2,"7563":2,"7564":2,"7565":2,"7566":2,"7567":2,"7568":2,"7569":2,"7570":2,"7571":1,"7572":2,"7573":2,"7574":2,"7575":1,"7576":2,"7577":1,"7578":2,"7579":1,"7580":2,"7581":2,"7582":2,"7583":2,"7584":2,"7585":2,"7586":1,"7587":2,"7588":2,"7589":1,"7590":2,"7591":1,"7592":2,"7593":2,"7594":2,"7595":2,"7596":2,"7597":1,"7598":1,"7599":1,"7600":2,"7601":1,"7602":1,"7603":1,"7604":1,"7605":2,"7606":1,"7607":1,"7608":1,"7609":2,"7610":2,"7611":2,"7612":2,"7613":1,"7614":1,"7615":1,"7616":1,"7617":1,"7618":2,"7619":1,"7620":2,"7621":1,"7622":2,"7623":1,"7624":2,"7625":2,"7626":1,"7627":2,"7628":1,"7629":2,"7630":1,"7631":2,"7632":2,"7633":2,"7634":1,"7635":1,"7636":1,"7637":2,"7638":2,"7639":1,"7640":1,"7641":1,"7642":2,"7643":2,"7644":1,"7645":1,"7646":2,"7647":2,"7648":2,"7649":1,"7650":2,"7651":2,"7652":1,"7653":2,"7654":1,"7655":1,"7656":1,"7657":1,"7658":1,"7659":1,"7660":2,"7661":2,"7662":1,"7663":2,"7664":1,"7665":2,"7666":2,"7667":2,"7668":2,"7669":1,"7670":1,"7671":2,"7672":1,"7673":2,"7674":1,"7675":1,"7676":2,"7677":2,"7678":2,"7679":2,"7680":1,"7681":2,"7682":2,"7683":1,"7684":2,"7685":2,"7686":2,"7687":1,"7688":2,"7689":2,"7690":1,"7691":2,"7692":2,"7693":1,"7694":2,"7695":1,"7696":1,"7697":1,"7698":1,"7699":1,"7700":2,"7701":1,"7702":1,"7703":2,"7704":1,"7705":1,"7706":1,"7707":2,"7708":2,"7709":1,"7710":2,"7711":1,"7712":1,"7713":2,"7714":1,"7715":1,"7716":2,"7717":2,"7718":2,"7719":2,"7720":2,"7721":2,"7722":1,"7723":2,"7724":2,"7725":2,"7726":2,"7727":2,"7728":2,"7729":1,"7730":1,"7731":2,"7732":1,"7733":1,"7734":2,"7735":1,"7736":2,"7737":2,"7738":2,"7739":1,"7740":1,"7741":2,"7742":2,"7743":2,"7744":2,"7745":2,"7746":2,"7747":2,"7748":2,"7749":1,"7750":1,"7751":1,"7752":2,"7753":1,"7754":2,"7755":1,"7756":1,"7757":2,"7758":1,"7759":2,"7760":2,"7761":2,"7762":2,"7763":1,"7764":2,"7765":1,"7766":1,"7767":2,"7768":1,"7769":2,"7770":1,"7771":1,"7772":1,"7773":1,"7774":2,"7775":1,"7776":2,"7777":1,"7778":2,"7779":1,"7780":2,"7781":1,"7782":1,"7783":2,"7784":1,"7785":1,"7786":1,"7787":1,"7788":2,"7789":1,"7790":1,"7791":2,"7792":1,"7793":1,"7794":1,"7795":1,"7796":1,"7797":1,"7798":1,"7799":2,"7800":2,"7801":1,"7802":2,"7803":1,"7804":2,"7805":1,"7806":1,"7807":1,"7808":1,"7809":1,"7810":1,"7811":1,"7812":1,"7813":1,"7814":2,"7815":1,"7816":2,"7817":1,"7818":2,"7819":2,"7820":1,"7821":2,"7822":1,"7823":1,"7824":2,"7825":2,"7826":2,"7827":2,"7828":2,"7829":1,"7830":2,"7831":1,"7832":2,"7833":1,"7834":2,"7835":2,"7836":1,"7837":2,"7838":2,"7839":1,"7840":2,"7841":2,"7842":2,"7843":2,"7844":1,"7845":1,"7846":1,"7847":2,"7848":2,"7849":1,"7850":2,"7851":2,"7852":2,"7853":1,"7854":2,"7855":2,"7856":1,"7857":1,"7858":2,"7859":2,"7860":2,"7861":2,"7862":2,"7863":1,"7864":1,"7865":1,"7866":1,"7867":2,"7868":1,"7869":2,"7870":2,"7871":1,"7872":1,"7873":1,"7874":2,"7875":1,"7876":2,"7877":1,"7878":2,"7879":2,"7880":1,"7881":1,"7882":1,"7883":1,"7884":1,"7885":1,"7886":2,"7887":1,"7888":2,"7889":1,"7890":2,"7891":1,"7892":2,"7893":2,"7894":2,"7895":1,"7896":2,"7897":2,"7898":2,"7899":2,"7900":2,"7901":2,"7902":1,"7903":2,"7904":2,"7905":2,"7906":1,"7907":1,"7908":2,"7909":2,"7910":2,"7911":1,"7912":1,"7913":2,"7914":1,"7915":1,"7916":1,"7917":2,"7918":2,"7919":2,"7920":1,"7921":2,"7922":2,"7923":2,"7924":1,"7925":2,"7926":1,"7927":2,"7928":2,"7929":2,"7930":2,"7931":2,"7932":1,"7933":1,"7934":1,"7935":2,"7936":1,"7937":2,"7938":1,"7939":2,"7940":1,"7941":1,"7942":2,"7943":2,"7944":2,"7945":2,"7946":2,"7947":2,"7948":2,"7949":1,"7950":2,"7951":1,"7952":2,"7953":1,"7954":2,"7955":1,"7956":2,"7957":1,"7958":2,"7959":2,"7960":1,"7961":1,"7962":1,"7963":2,"7964":1,"7965":1,"7966":1,"7967":1,"7968":1,"7969":1,"7970":1,"7971":2,"7972":1,"7973":1,"7974":1,"7975":1,"7976":1,"7977":2,"7978":2,"7979":2,"7980":1,"7981":2,"7982":1,"7983":2,"7984":2,"7985":2,"7986":2,"7987":1,"7988":2,"7989":2,"7990":1,"7991":2,"7992":1,"7993":2,"7994":1,"7995":2,"7996":2,"7997":2,"7998":2,"7999":1,"8000":2,"8001":1,"8002":2,"8003":1,"8004":2,"8005":2,"8006":1,"8007":2,"8008":2,"8009":2,"8010":2,"8011":2,"8012":2,"8013":1,"8014":1,"8015":2,"8016":1,"8017":2,"8018":2,"8019":1,"8020":2,"8021":1,"8022":1,"8023":1,"8024":1,"8025":2,"8026":2,"8027":1,"8028":2,"8029":1,"8030":1,"8031":1,"8032":1,"8033":1,"8034":2,"8035":2,"8036":2,"8037":1,"8038":2,"8039":1,"8040":2,"8041":1,"8042":1,"8043":1,"8044":2,"8045":2,"8046":2,"8047":1,"8048":2,"8049":2,"8050":2,"8051":2,"8052":2,"8053":1,"8054":1,"8055":1,"8056":1,"8057":2,"8058":2,"8059":2,"8060":1,"8061":2,"8062":1,"8063":2,"8064":1,"8065":2,"8066":2,"8067":1,"8068":1,"8069":1,"8070":1,"8071":1,"8072":2,"8073":1,"8074":1,"8075":2,"8076":1,"8077":2,"8078":1,"8079":2,"8080":2,"8081":2,"8082":1,"8083":2,"8084":1,"8085":2,"8086":2,"8087":1,"8088":1,"8089":2,"8090":1,"8091":1,"8092":2,"8093":2,"8094":1,"8095":2,"8096":2,"8097":2,"8098":2,"8099":1,"8100":1,"8101":2,"8102":1,"8103":2,"8104":1,"8105":1,"8106":1,"8107":2,"8108":1,"8109":1,"8110":1,"8111":2,"8112":1,"8113":2,"8114":2,"8115":1,"8116":2,"8117":2,"8118":2,"8119":1,"8120":2,"8121":1,"8122":1,"8123":2,"8124":1,"8125":1,"8126":1,"8127":2,"8128":1,"8129":1,"8130":2,"8131":1,"8132":1,"8133":1,"8134":1,"8135":2,"8136":2,"8137":1,"8138":1,"8139":2,"8140":2,"8141":1,"8142":1,"8143":2,"8144":2,"8145":1,"8146":1,"8147":1,"8148":1,"8149":2,"8150":2,"8151":1,"8152":2,"8153":2,"8154":1,"8155":1,"8156":2,"8157":1,"8158":1,"8159":2,"8160":2,"8161":1,"8162":2,"8163":2,"8164":2,"8165":1,"8166":1,"8167":2,"8168":2,"8169":2,"8170":2,"8171":1,"8172":2,"8173":1,"8174":2,"8175":2,"8176":2,"8177":2,"8178":2,"8179":2,"8180":1,"8181":1,"8182":1,"8183":2,"8184":1,"8185":2,"8186":1,"8187":1,"8188":1,"8189":2,"8190":1,"8191":2,"8192":1,"8193":1,"8194":1,"8195":2,"8196":2,"8197":2,"8198":1,"8199":2,"8200":2,"8201":2,"8202":2,"8203":2,"8204":2,"8205":2,"8206":1,"8207":1,"8208":1,"8209":2,"8210":1,"8211":1,"8212":2,"8213":2,"8214":2,"8215":2,"8216":1,"8217":2,"8218":2,"8219":1,"8220":1,"8221":2,"8222":1,"8223":2,"8224":1,"8225":1,"8226":2,"8227":1,"8228":2,"8229":2,"8230":1,"8231":2,"8232":2,"8233":1,"8234":1,"8235":1,"8236":2,"8237":1,"8238":1,"8239":1,"8240":2,"8241":1,"8242":1,"8243":1,"8244":1,"8245":1,"8246":2,"8247":2,"8248":1,"8249":1,"8250":1,"8251":2,"8252":1,"8253":2,"8254":2,"8255":1,"8256":2,"8257":2,"8258":1,"8259":2,"8260":1,"8261":1,"8262":2,"8263":2,"8264":1,"8265":2,"8266":2,"8267":2,"8268":2,"8269":1,"8270":2,"8271":1,"8272":1,"8273":1,"8274":1,"8275":1,"8276":2,"8277":2,"8278":2,"8279":2,"8280":2,"8281":2,"8282":1,"8283":1,"8284":2,"8285":2,"8286":2,"8287":2,"8288":1,"8289":2,"8290":1,"8291":1,"8292":2,"8293":1,"8294":2,"8295":2,"8296":1,"8297":2,"8298":1,"8299":1,"8300":2,"8301":1,"8302":2,"8303":1,"8304":2,"8305":2,"8306":2,"8307":2,"8308":1,"8309":1,"8310":2,"8311":2,"8312":1,"8313":2,"8314":1,"8315":2,"8316":2,"8317":1,"8318":2,"8319":2,"8320":1,"8321":1,"8322":2,"8323":1,"8324":2,"8325":1,"8326":1,"8327":2,"8328":2,"8329":2,"8330":1,"8331":1,"8332":2,"8333":1,"8334":1,"8335":1,"8336":1,"8337":2,"8338":2,"8339":2,"8340":1,"8341":1,"8342":1,"8343":2,"8344":1,"8345":2,"8346":1,"8347":2,"8348":1,"8349":1,"8350":1,"8351":2,"8352":1,"8353":2,"8354":1,"8355":1,"8356":2,"8357":2,"8358":1,"8359":1,"8360":2,"8361":2,"8362":1,"8363":1,"8364":2,"8365":1,"8366":1,"8367":2,"8368":1,"8369":2,"8370":1,"8371":2,"8372":2,"8373":2,"8374":1,"8375":2,"8376":2,"8377":1,"8378":2,"8379":1,"8380":2,"8381":2,"8382":2,"8383":2,"8384":1,"8385":1,"8386":2,"8387":2,"8388":2,"8389":2,"8390":2,"8391":2,"8392":1,"8393":1,"8394":2,"8395":2,"8396":1,"8397":2,"8398":2,"8399":2,"8400":1,"8401":2,"8402":2,"8403":1,"8404":2,"8405":2,"8406":1,"8407":2,"8408":1,"8409":1,"8410":1,"8411":2,"8412":2,"8413":2,"8414":1,"8415":1,"8416":1,"8417":1,"8418":1,"8419":1,"8420":2,"8421":1,"8422":2,"8423":2,"8424":2,"8425":1,"8426":2,"8427":2,"8428":2,"8429":2,"8430":2,"8431":2,"8432":2,"8433":1,"8434":1,"8435":1,"8436":2,"8437":1,"8438":1,"8439":1,"8440":2,"8441":2,"8442":2,"8443":1,"8444":2,"8445":2,"8446":2,"8447":1,"8448":1,"8449":2,"8450":2,"8451":1,"8452":1,"8453":1,"8454":1,"8455":2,"8456":1,"8457":1,"8458":2,"8459":1,"8460":2,"8461":2,"8462":2,"8463":1,"8464":2,"8465":2,"8466":2,"8467":2,"8468":1,"8469":2,"8470":1,"8471":2,"8472":2,"8473":1,"8474":1,"8475":1,"8476":2,"8477":2,"8478":1,"8479":1,"8480":2,"8481":2,"8482":2,"8483":2,"8484":2,"8485":1,"8486":1,"8487":1,"8488":1,"8489":2,"8490":2,"8491":1,"8492":2,"8493":1,"8494":1,"8495":1,"8496":1,"8497":2,"8498":1,"8499":1,"8500":1,"8501":1,"8502":1,"8503":1,"8504":1,"8505":1,"8506":1,"8507":2,"8508":2,"8509":2,"8510":2,"8511":1,"8512":1,"8513":1,"8514":2,"8515":1,"8516":1,"8517":1,"8518":2,"8519":2,"8520":2,"8521":2,"8522":1,"8523":2,"8524":2,"8525":1,"8526":2,"8527":1,"8528":1,"8529":2,"8530":2,"8531":2,"8532":2,"8533":2,"8534":2,"8535":1,"8536":1,"8537":2,"8538":1,"8539":1,"8540":1,"8541":2,"8542":2,"8543":1,"8544":2,"8545":2,"8546":2,"8547":1,"8548":2,"8549":1,"8550":2,"8551":2,"8552":1,"8553":2,"8554":2,"8555":2,"8556":1,"8557":1,"8558":2,"8559":1,"8560":1,"8561":2,"8562":1,"8563":2,"8564":1,"8565":1,"8566":1,"8567":2,"8568":1,"8569":1,"8570":1,"8571":1,"8572":1,"8573":2,"8574":1,"8575":2,"8576":2,"8577":2,"8578":1,"8579":2,"8580":2,"8581":2,"8582":1,"8583":2,"8584":1,"8585":2,"8586":2,"8587":1,"8588":2,"8589":1,"8590":1,"8591":2,"8592":1,"8593":1,"8594":2,"8595":2,"8596":2,"8597":1,"8598":2,"8599":2,"8600":2,"8601":2,"8602":1,"8603":1,"8604":2,"8605":1,"8606":2,"8607":2,"8608":1,"8609":1,"8610":1,"8611":2,"8612":1,"8613":1,"8614":2,"8615":1,"8616":1,"8617":2,"8618":2,"8619":2,"8620":1,"8621":1,"8622":2,"8623":2,"8624":1,"8625":1,"8626":1,"8627":2,"8628":2,"8629":1,"8630":1,"8631":2,"8632":2,"8633":1,"8634":2,"8635":1,"8636":1,"8637":1,"8638":2,"8639":2,"8640":2,"8641":2,"8642":1,"8643":1,"8644":2,"8645":2,"8646":1,"8647":2,"8648":1,"8649":1,"8650":2,"8651":2,"8652":2,"8653":2,"8654":2,"8655":2,"8656":1,"8657":1,"8658":1,"8659":2,"8660":1,"8661":1,"8662":2,"8663":1,"8664":2,"8665":2,"8666":2,"8667":2,"8668":1,"8669":2,"8670":2,"8671":1,"8672":1,"8673":2,"8674":2,"8675":2,"8676":2,"8677":1,"8678":1,"8679":2,"8680":1,"8681":2,"8682":1,"8683":2,"8684":1,"8685":2,"8686":1,"8687":2,"8688":1,"8689":2,"8690":1,"8691":1,"8692":2,"8693":2,"8694":1,"8695":1,"8696":2,"8697":1,"8698":1,"8699":2,"8700":1,"8701":1,"8702":1,"8703":1,"8704":2,"8705":2,"8706":1,"8707":2,"8708":1,"8709":1,"8710":1,"8711":1,"8712":1,"8713":2,"8714":1,"8715":2,"8716":2,"8717":2,"8718":2,"8719":2,"8720":1,"8721":2,"8722":1,"8723":2,"8724":2,"8725":1,"8726":1,"8727":2,"8728":1,"8729":1,"8730":2,"8731":1,"8732":2,"8733":2,"8734":2,"8735":2,"8736":1,"8737":2,"8738":2,"8739":1,"8740":2,"8741":2,"8742":2,"8743":1,"8744":2,"8745":2,"8746":2,"8747":2,"8748":2,"8749":1,"8750":2,"8751":2,"8752":1,"8753":2,"8754":2,"8755":2,"8756":2,"8757":1,"8758":1,"8759":1,"8760":2,"8761":1,"8762":1,"8763":1,"8764":1,"8765":2,"8766":2,"8767":2,"8768":1,"8769":1,"8770":1,"8771":1,"8772":2,"8773":1,"8774":1,"8775":1,"8776":1,"8777":2,"8778":2,"8779":1,"8780":2,"8781":2,"8782":1,"8783":1,"8784":1,"8785":2,"8786":1,"8787":2,"8788":1,"8789":2,"8790":2,"8791":1,"8792":2,"8793":1,"8794":2,"8795":2,"8796":2,"8797":1,"8798":1,"8799":1,"8800":2,"8801":2,"8802":2,"8803":2,"8804":1,"8805":2,"8806":2,"8807":2,"8808":2,"8809":2,"8810":2,"8811":1,"8812":2,"8813":2,"8814":2,"8815":1,"8816":1,"8817":1,"8818":2,"8819":1,"8820":1,"8821":1,"8822":1,"8823":2,"8824":2,"8825":2,"8826":1,"8827":2,"8828":1,"8829":1,"8830":2,"8831":2,"8832":1,"8833":1,"8834":1,"8835":1,"8836":1,"8837":2,"8838":1,"8839":2,"8840":1,"8841":1,"8842":2,"8843":2,"8844":1,"8845":2,"8846":2,"8847":2,"8848":1,"8849":1,"8850":2,"8851":1,"8852":1,"8853":1,"8854":2,"8855":1,"8856":2,"8857":2,"8858":2,"8859":1,"8860":1,"8861":2,"8862":1,"8863":2,"8864":1,"8865":1,"8866":2,"8867":2,"8868":2,"8869":2,"8870":2,"8871":1,"8872":1,"8873":1,"8874":2,"8875":2,"8876":1,"8877":2,"8878":1,"8879":2,"8880":2,"8881":2,"8882":1,"8883":2,"8884":1,"8885":2,"8886":1,"8887":2,"8888":1,"8889":1,"8890":2,"8891":2,"8892":1,"8893":1,"8894":2,"8895":1,"8896":2,"8897":1,"8898":2,"8899":1,"8900":1,"8901":2,"8902":2,"8903":1,"8904":2,"8905":1,"8906":1,"8907":2,"8908":1,"8909":2,"8910":1,"8911":1,"8912":2,"8913":2,"8914":2,"8915":1,"8916":2,"8917":1,"8918":2,"8919":2,"8920":1,"8921":2,"8922":2,"8923":1,"8924":2,"8925":2,"8926":1,"8927":1,"8928":1,"8929":1,"8930":1,"8931":2,"8932":2,"8933":1,"8934":2,"8935":2,"8936":2,"8937":1,"8938":1,"8939":1,"8940":2,"8941":1,"8942":1,"8943":1,"8944":1,"8945":1,"8946":1,"8947":2,"8948":1,"8949":2,"8950":1,"8951":1,"8952":2,"8953":1,"8954":2,"8955":1,"8956":1,"8957":1,"8958":2,"8959":2,"8960":2,"8961":1,"8962":1,"8963":2,"8964":1,"8965":1,"8966":1,"8967":1,"8968":2,"8969":1,"8970":1,"8971":1,"8972":2,"8973":2,"8974":2,"8975":1,"8976":1,"8977":1,"8978":1,"8979":1,"8980":1,"8981":2,"8982":1,"8983":2,"8984":1,"8985":1,"8986":1,"8987":2,"8988":2,"8989":1,"8990":2,"8991":1,"8992":1,"8993":2,"8994":1,"8995":1,"8996":2,"8997":2,"8998":2,"8999":2,"9000":2,"9001":2,"9002":1,"9003":1,"9004":2,"9005":1,"9006":1,"9007":1,"9008":2,"9009":1,"9010":1,"9011":2,"9012":2,"9013":2,"9014":2,"9015":1,"9016":2,"9017":1,"9018":1,"9019":2,"9020":2,"9021":2,"9022":2,"9023":2,"9024":1,"9025":2,"9026":1,"9027":1,"9028":1,"9029":2,"9030":1,"9031":1,"9032":1,"9033":1,"9034":2,"9035":1,"9036":1,"9037":2,"9038":1,"9039":1,"9040":1,"9041":2,"9042":2,"9043":1,"9044":1,"9045":1,"9046":1,"9047":1,"9048":1,"9049":1,"9050":2,"9051":2,"9052":2,"9053":2,"9054":1,"9055":1,"9056":1,"9057":1,"9058":2,"9059":2,"9060":1,"9061":1,"9062":1,"9063":1,"9064":1,"9065":2,"9066":1,"9067":2,"9068":2,"9069":1,"9070":2,"9071":2,"9072":2,"9073":2,"9074":1,"9075":1,"9076":1,"9077":2,"9078":1,"9079":2,"9080":1,"9081":1,"9082":1,"9083":2,"9084":2,"9085":2,"9086":1,"9087":1,"9088":2,"9089":2,"9090":1,"9091":2,"9092":1,"9093":2,"9094":2,"9095":2,"9096":1,"9097":2,"9098":1,"9099":2,"9100":2,"9101":1,"9102":2,"9103":1,"9104":2,"9105":2,"9106":2,"9107":1,"9108":1,"9109":1,"9110":2,"9111":1,"9112":2,"9113":2,"9114":1,"9115":1,"9116":1,"9117":1,"9118":2,"9119":2,"9120":1,"9121":1,"9122":1,"9123":2,"9124":2,"9125":2,"9126":1,"9127":2,"9128":2,"9129":2,"9130":2,"9131":2,"9132":2,"9133":1,"9134":1,"9135":1,"9136":2,"9137":2,"9138":1,"9139":1,"9140":2,"9141":2,"9142":2,"9143":1,"9144":2,"9145":2,"9146":2,"9147":1,"9148":1,"9149":2,"9150":2,"9151":2,"9152":2,"9153":1,"9154":2,"9155":2,"9156":1,"9157":2,"9158":2,"9159":1,"9160":1,"9161":1,"9162":2,"9163":2,"9164":1,"9165":2,"9166":1,"9167":1,"9168":1,"9169":1,"9170":1,"9171":1,"9172":1,"9173":1,"9174":2,"9175":1,"9176":2,"9177":2,"9178":1,"9179":2,"9180":2,"9181":2,"9182":2,"9183":1,"9184":2,"9185":2,"9186":1,"9187":1,"9188":2,"9189":1,"9190":1,"9191":2,"9192":1,"9193":1,"9194":1,"9195":1,"9196":2,"9197":2,"9198":2,"9199":2,"9200":1,"9201":1,"9202":2,"9203":2,"9204":2,"9205":2,"9206":2,"9207":1,"9208":2,"9209":2,"9210":1,"9211":1,"9212":2,"9213":2,"9214":2,"9215":2,"9216":2,"9217":1,"9218":1,"9219":2,"9220":1,"9221":2,"9222":1,"9223":2,"9224":1,"9225":2,"9226":2,"9227":1,"9228":1,"9229":2,"9230":1,"9231":2,"9232":1,"9233":1,"9234":2,"9235":1,"9236":1,"9237":1,"9238":1,"9239":2,"9240":1,"9241":1,"9242":1,"9243":2,"9244":1,"9245":1,"9246":2,"9247":1,"9248":2,"9249":2,"9250":1,"9251":2,"9252":1,"9253":1,"9254":2,"9255":1,"9256":1,"9257":1,"9258":2,"9259":1,"9260":1,"9261":1,"9262":2,"9263":1,"9264":2,"9265":2,"9266":1,"9267":2,"9268":1,"9269":2,"9270":1,"9271":1,"9272":2,"9273":2,"9274":2,"9275":2,"9276":2,"9277":2,"9278":2,"9279":1,"9280":1,"9281":2,"9282":2,"9283":1,"9284":2,"9285":1,"9286":2,"9287":2,"9288":1,"9289":2,"9290":2,"9291":2,"9292":1,"9293":2,"9294":1,"9295":2,"9296":1,"9297":1,"9298":1,"9299":1,"9300":1,"9301":1,"9302":1,"9303":2,"9304":1,"9305":2,"9306":2,"9307":1,"9308":1,"9309":2,"9310":1,"9311":1,"9312":1,"9313":1,"9314":2,"9315":2,"9316":1,"9317":1,"9318":1,"9319":1,"9320":1,"9321":2,"9322":2,"9323":1,"9324":1,"9325":1,"9326":1,"9327":1,"9328":2,"9329":1,"9330":1,"9331":1,"9332":2,"9333":1,"9334":1,"9335":1,"9336":1,"9337":2,"9338":1,"9339":2,"9340":2,"9341":1,"9342":1,"9343":1,"9344":2,"9345":1,"9346":2,"9347":1,"9348":2,"9349":1,"9350":1,"9351":2,"9352":2,"9353":2,"9354":1,"9355":2,"9356":2,"9357":2,"9358":2,"9359":1,"9360":1,"9361":1,"9362":2,"9363":2,"9364":2,"9365":2,"9366":2,"9367":2,"9368":1,"9369":1,"9370":2,"9371":2,"9372":1,"9373":2,"9374":1,"9375":2,"9376":2,"9377":1,"9378":1,"9379":1,"9380":2,"9381":2,"9382":1,"9383":2,"9384":1,"9385":2,"9386":2,"9387":2,"9388":1,"9389":2,"9390":2,"9391":1,"9392":1,"9393":1,"9394":2,"9395":2,"9396":1,"9397":2,"9398":2,"9399":2,"9400":1,"9401":2,"9402":2,"9403":1,"9404":2,"9405":2,"9406":1,"9407":1,"9408":1,"9409":2,"9410":2,"9411":1,"9412":2,"9413":1,"9414":2,"9415":1,"9416":1,"9417":2,"9418":1,"9419":2,"9420":1,"9421":2,"9422":1,"9423":2,"9424":1,"9425":1,"9426":1,"9427":1,"9428":1,"9429":2,"9430":1,"9431":2,"9432":1,"9433":2,"9434":1,"9435":2,"9436":1,"9437":2,"9438":2,"9439":2,"9440":2,"9441":1,"9442":1,"9443":2,"9444":1,"9445":2,"9446":1,"9447":2,"9448":1,"9449":1,"9450":2,"9451":2,"9452":2,"9453":1,"9454":2,"9455":1,"9456":1,"9457":2,"9458":1,"9459":1,"9460":2,"9461":1,"9462":1,"9463":2,"9464":1,"9465":2,"9466":2,"9467":1,"9468":2,"9469":2,"9470":2,"9471":1,"9472":2,"9473":2,"9474":2,"9475":1,"9476":2,"9477":2,"9478":1,"9479":1,"9480":1,"9481":2,"9482":1,"9483":2,"9484":2,"9485":2,"9486":1,"9487":2,"9488":2,"9489":1,"9490":2,"9491":2,"9492":1,"9493":1,"9494":2,"9495":1,"9496":2,"9497":2,"9498":1,"9499":2,"9500":2,"9501":1,"9502":1,"9503":2,"9504":2,"9505":1,"9506":2,"9507":2,"9508":1,"9509":1,"9510":2,"9511":2,"9512":1,"9513":2,"9514":2,"9515":1,"9516":2,"9517":2,"9518":1,"9519":1,"9520":2,"9521":1,"9522":1,"9523":1,"9524":2,"9525":2,"9526":1,"9527":2,"9528":1,"9529":1,"9530":2,"9531":1,"9532":1,"9533":2,"9534":2,"9535":1,"9536":2,"9537":1,"9538":1,"9539":1,"9540":2,"9541":2,"9542":1,"9543":2,"9544":1,"9545":2,"9546":1,"9547":1,"9548":1,"9549":1,"9550":2,"9551":2,"9552":1,"9553":1,"9554":2,"9555":1,"9556":2,"9557":2,"9558":2,"9559":2,"9560":2,"9561":1,"9562":2,"9563":2,"9564":1,"9565":2,"9566":2,"9567":2,"9568":2,"9569":1,"9570":1,"9571":1,"9572":1,"9573":2,"9574":1,"9575":2,"9576":1,"9577":2,"9578":1,"9579":1,"9580":1,"9581":1,"9582":1,"9583":1,"9584":2,"9585":1,"9586":2,"9587":2,"9588":2,"9589":2,"9590":2,"9591":2,"9592":1,"9593":2,"9594":2,"9595":1,"9596":1,"9597":1,"9598":1,"9599":1,"9600":1,"9601":1,"9602":2,"9603":2,"9604":1,"9605":2,"9606":2,"9607":1,"9608":1,"9609":2,"9610":1,"9611":2,"9612":2,"9613":2,"9614":1,"9615":2,"9616":2,"9617":1,"9618":1,"9619":2,"9620":1,"9621":2,"9622":1,"9623":1,"9624":2,"9625":2,"9626":1,"9627":1,"9628":1,"9629":2,"9630":2,"9631":2,"9632":2,"9633":1,"9634":2,"9635":1,"9636":2,"9637":1,"9638":2,"9639":2,"9640":2,"9641":2,"9642":2,"9643":2,"9644":1,"9645":2,"9646":1,"9647":2,"9648":1,"9649":1,"9650":2,"9651":1,"9652":1,"9653":1,"9654":1,"9655":1,"9656":1,"9657":1,"9658":2,"9659":1,"9660":2,"9661":1,"9662":2,"9663":1,"9664":1,"9665":1,"9666":2,"9667":2,"9668":1,"9669":2,"9670":2,"9671":1,"9672":2,"9673":1,"9674":1,"9675":2,"9676":2,"9677":2,"9678":2,"9679":2,"9680":2,"9681":2,"9682":2,"9683":1,"9684":1,"9685":2,"9686":1,"9687":1,"9688":1,"9689":2,"9690":2,"9691":1,"9692":1,"9693":2,"9694":1,"9695":2,"9696":2,"9697":2,"9698":1,"9699":2,"9700":2,"9701":2,"9702":1,"9703":1,"9704":1,"9705":2,"9706":2,"9707":2,"9708":1,"9709":2,"9710":1,"9711":2,"9712":1,"9713":2,"9714":1,"9715":1,"9716":1,"9717":2,"9718":2,"9719":2,"9720":2,"9721":1,"9722":1,"9723":1,"9724":1,"9725":2,"9726":1,"9727":2,"9728":2,"9729":1,"9730":1,"9731":2,"9732":1,"9733":1,"9734":2,"9735":1,"9736":1,"9737":1,"9738":1,"9739":2,"9740":1,"9741":2,"9742":1,"9743":2,"9744":1,"9745":1,"9746":2,"9747":1,"9748":1,"9749":2,"9750":2,"9751":1,"9752":2,"9753":2,"9754":1,"9755":2,"9756":1,"9757":1,"9758":2,"9759":2,"9760":1,"9761":1,"9762":2,"9763":2,"9764":2,"9765":2,"9766":2,"9767":1,"9768":1,"9769":1,"9770":1,"9771":1,"9772":2,"9773":2,"9774":1,"9775":2,"9776":1,"9777":1,"9778":1,"9779":2,"9780":2,"9781":2,"9782":1,"9783":2,"9784":2,"9785":1,"9786":2,"9787":2,"9788":1,"9789":2,"9790":2,"9791":1,"9792":1,"9793":2,"9794":2,"9795":2,"9796":1,"9797":1,"9798":2,"9799":1,"9800":1,"9801":1,"9802":2,"9803":1,"9804":2,"9805":1,"9806":2,"9807":2,"9808":1,"9809":2,"9810":1,"9811":2,"9812":1,"9813":1,"9814":1,"9815":2,"9816":2,"9817":1,"9818":1,"9819":2,"9820":1,"9821":1,"9822":1,"9823":1,"9824":1,"9825":2,"9826":2,"9827":2,"9828":1,"9829":2,"9830":1,"9831":2,"9832":2,"9833":1,"9834":2,"9835":1,"9836":2,"9837":1,"9838":2,"9839":1,"9840":1,"9841":1,"9842":1,"9843":1,"9844":2,"9845":1,"9846":1,"9847":1,"9848":2,"9849":2,"9850":1,"9851":1,"9852":1,"9853":2,"9854":2,"9855":1,"9856":1,"9857":1,"9858":2,"9859":1,"9860":1,"9861":1,"9862":2,"9863":2,"9864":2,"9865":1,"9866":2,"9867":2,"9868":2,"9869":2,"9870":1,"9871":1,"9872":1,"9873":2,"9874":1,"9875":2,"9876":1,"9877":2,"9878":1,"9879":2,"9880":1,"9881":2,"9882":2,"9883":2,"9884":1,"9885":1,"9886":2,"9887":2,"9888":2,"9889":1,"9890":2,"9891":2,"9892":1,"9893":1,"9894":1,"9895":2,"9896":2,"9897":1,"9898":1,"9899":1,"9900":1,"9901":1,"9902":2,"9903":2,"9904":2,"9905":2,"9906":2,"9907":2,"9908":1,"9909":2,"9910":1,"9911":1,"9912":2,"9913":2,"9914":1,"9915":1,"9916":2,"9917":1,"9918":1,"9919":2,"9920":2,"9921":2,"9922":1,"9923":2,"9924":1,"9925":1,"9926":1,"9927":2,"9928":2,"9929":1,"9930":1,"9931":1,"9932":2,"9933":1,"9934":2,"9935":1,"9936":2,"9937":1,"9938":1,"9939":2,"9940":2,"9941":1,"9942":2,"9943":1,"9944":1,"9945":2,"9946":2,"9947":2,"9948":2,"9949":2,"9950":1,"9951":1,"9952":2,"9953":2,"9954":2,"9955":1,"9956":2,"9957":1,"9958":2,"9959":1,"9960":2,"9961":2,"9962":1,"9963":1,"9964":1,"9965":1,"9966":1,"9967":1,"9968":2,"9969":2,"9970":1,"9971":2,"9972":1,"9973":2,"9974":1,"9975":2,"9976":1,"9977":2,"9978":1,"9979":2,"9980":2,"9981":1,"9982":2,"9983":1,"9984":2,"9985":2,"9986":1,"9987":2,"9988":2,"9989":2,"9990":2,"9991":2,"9992":1,"9993":1,"9994":1,"9995":1,"9996":2,"9997":1,"9998":2,"9999":1,"10000":1,"10001":1,"10002":2,"10003":2,"10004":1,"10005":2,"10006":2,"10007":1,"10008":1,"10009":2,"10010":1,"10011":1,"10012":2,"10013":2,"10014":1,"10015":1,"10016":2,"10017":2,"10018":1,"10019":1,"10020":2,"10021":2,"10022":1,"10023":2,"10024":1,"10025":1,"10026":2,"10027":2,"10028":2,"10029":2,"10030":1,"10031":2,"10032":2,"10033":2,"10034":1,"10035":2,"10036":2,"10037":2,"10038":1,"10039":1,"10040":1,"10041":2,"10042":1,"10043":1,"10044":2,"10045":2,"10046":2,"10047":1,"10048":1,"10049":2,"10050":2,"10051":1,"10052":2,"10053":2,"10054":1,"10055":1,"10056":1,"10057":1,"10058":2,"10059":1,"10060":2,"10061":1,"10062":2,"10063":2,"10064":1,"10065":2,"10066":1,"10067":2,"10068":2,"10069":2,"10070":1,"10071":2,"10072":1,"10073":2,"10074":2,"10075":2,"10076":1,"10077":1,"10078":2,"10079":1,"10080":1,"10081":1,"10082":2,"10083":1,"10084":1,"10085":2,"10086":1,"10087":2,"10088":1,"10089":1,"10090":2,"10091":1,"10092":1,"10093":2,"10094":1,"10095":1,"10096":1,"10097":1,"10098":1,"10099":2,"10100":2,"10101":2,"10102":2,"10103":2,"10104":2,"10105":2,"10106":2,"10107":2,"10108":1,"10109":2,"10110":1,"10111":1,"10112":2,"10113":2,"10114":2,"10115":2,"10116":1,"10117":1,"10118":1,"10119":1,"10120":2,"10121":1,"10122":2,"10123":1,"10124":2,"10125":2,"10126":1,"10127":1,"10128":1,"10129":1,"10130":2,"10131":1,"10132":2,"10133":2,"10134":2,"10135":2,"10136":1,"10137":2,"10138":1,"10139":2,"10140":1,"10141":2,"10142":1,"10143":2,"10144":2,"10145":2,"10146":2,"10147":1,"10148":2,"10149":2,"10150":2,"10151":1,"10152":1,"10153":2,"10154":2,"10155":2,"10156":2,"10157":2,"10158":2,"10159":2,"10160":1,"10161":1,"10162":2,"10163":2,"10164":1,"10165":2,"10166":1,"10167":2,"10168":1,"10169":1,"10170":1,"10171":1,"10172":1,"10173":1,"10174":1,"10175":1,"10176":1,"10177":2,"10178":1,"10179":1,"10180":2,"10181":1,"10182":1,"10183":2,"10184":2,"10185":1,"10186":1,"10187":1,"10188":1,"10189":2,"10190":2,"10191":1,"10192":2,"10193":1,"10194":2,"10195":1,"10196":2,"10197":2,"10198":2,"10199":1,"10200":1,"10201":1,"10202":2,"10203":1,"10204":2,"10205":2,"10206":1,"10207":2,"10208":1,"10209":2,"10210":1,"10211":2,"10212":2,"10213":1,"10214":1,"10215":2,"10216":2,"10217":1,"10218":1,"10219":1,"10220":2,"10221":1,"10222":2,"10223":2,"10224":2,"10225":1,"10226":1,"10227":1,"10228":2,"10229":2,"10230":2,"10231":2,"10232":2,"10233":1,"10234":1,"10235":2,"10236":1,"10237":2,"10238":2,"10239":2,"10240":1,"10241":2,"10242":1,"10243":2,"10244":1,"10245":2,"10246":1,"10247":1,"10248":1,"10249":2,"10250":1,"10251":2,"10252":1,"10253":1,"10254":2,"10255":2,"10256":1,"10257":2,"10258":2,"10259":1,"10260":1,"10261":2,"10262":2,"10263":1,"10264":2,"10265":1,"10266":1,"10267":2,"10268":2,"10269":1,"10270":1,"10271":1,"10272":1,"10273":2,"10274":2,"10275":2,"10276":2,"10277":2,"10278":2,"10279":2,"10280":1,"10281":2,"10282":2,"10283":1,"10284":2,"10285":2,"10286":1,"10287":1,"10288":2,"10289":2,"10290":2,"10291":1,"10292":1,"10293":2,"10294":1,"10295":2,"10296":2,"10297":2,"10298":1,"10299":2,"10300":1,"10301":2,"10302":1,"10303":2,"10304":2,"10305":2,"10306":1,"10307":2,"10308":1,"10309":2,"10310":1,"10311":2,"10312":2,"10313":2,"10314":2,"10315":2,"10316":2,"10317":1,"10318":1,"10319":1,"10320":2,"10321":2,"10322":1,"10323":1,"10324":2,"10325":2,"10326":1,"10327":2,"10328":2,"10329":1,"10330":2,"10331":1,"10332":1,"10333":2,"10334":2,"10335":2,"10336":1,"10337":1,"10338":1,"10339":1,"10340":1,"10341":2,"10342":1,"10343":2,"10344":1,"10345":2,"10346":1,"10347":2,"10348":1,"10349":2,"10350":2,"10351":2,"10352":2,"10353":1,"10354":2,"10355":2,"10356":1,"10357":2,"10358":1,"10359":2,"10360":1,"10361":1,"10362":2,"10363":1,"10364":2,"10365":1,"10366":2,"10367":1,"10368":1,"10369":2,"10370":2,"10371":2,"10372":1,"10373":2,"10374":1,"10375":1,"10376":1,"10377":2,"10378":1,"10379":1,"10380":2,"10381":1,"10382":2,"10383":1,"10384":2,"10385":2,"10386":2,"10387":1,"10388":2,"10389":1,"10390":2,"10391":1,"10392":2,"10393":2,"10394":2,"10395":1,"10396":1,"10397":1,"10398":1,"10399":1,"10400":1,"10401":2,"10402":1,"10403":1,"10404":1,"10405":2,"10406":1,"10407":1,"10408":1,"10409":2,"10410":1,"10411":1,"10412":1,"10413":1,"10414":1,"10415":2,"10416":1,"10417":1,"10418":1,"10419":2,"10420":1,"10421":2,"10422":1,"10423":1,"10424":1,"10425":2,"10426":1,"10427":2,"10428":1,"10429":1,"10430":2,"10431":1,"10432":2,"10433":1,"10434":1,"10435":1,"10436":1,"10437":2,"10438":1,"10439":2,"10440":1,"10441":1,"10442":1,"10443":1,"10444":2,"10445":2,"10446":2,"10447":1,"10448":2,"10449":2,"10450":2,"10451":1,"10452":2,"10453":2,"10454":2,"10455":2,"10456":1,"10457":2,"10458":1,"10459":1,"10460":2,"10461":2,"10462":1,"10463":2,"10464":1,"10465":1,"10466":1,"10467":2,"10468":2,"10469":1,"10470":2,"10471":1,"10472":1,"10473":2,"10474":2,"10475":1,"10476":2,"10477":2,"10478":2,"10479":2,"10480":2,"10481":1,"10482":1,"10483":2,"10484":2,"10485":2,"10486":2,"10487":1,"10488":2,"10489":1,"10490":2,"10491":1,"10492":2,"10493":1,"10494":2,"10495":2,"10496":2,"10497":1,"10498":2,"10499":1,"10500":1,"10501":2,"10502":2,"10503":2,"10504":2,"10505":2,"10506":2,"10507":2,"10508":1,"10509":2,"10510":2,"10511":1,"10512":2,"10513":2,"10514":1,"10515":1,"10516":2,"10517":2,"10518":1,"10519":2,"10520":1,"10521":1,"10522":2,"10523":1,"10524":2,"10525":2,"10526":1,"10527":2,"10528":2,"10529":2,"10530":1,"10531":1,"10532":1,"10533":1,"10534":1,"10535":2,"10536":1,"10537":1,"10538":2,"10539":2,"10540":1,"10541":1,"10542":2,"10543":2,"10544":2,"10545":2,"10546":2,"10547":2,"10548":2,"10549":1,"10550":2,"10551":2,"10552":1,"10553":1,"10554":1,"10555":1,"10556":1,"10557":1,"10558":1,"10559":2,"10560":1,"10561":1,"10562":2,"10563":1,"10564":2,"10565":1,"10566":2,"10567":2,"10568":2,"10569":2,"10570":1,"10571":2,"10572":2,"10573":1,"10574":1,"10575":2,"10576":2,"10577":1,"10578":1,"10579":2,"10580":2,"10581":1,"10582":2,"10583":2,"10584":2,"10585":1,"10586":1,"10587":1,"10588":2,"10589":2,"10590":1,"10591":2,"10592":1,"10593":1,"10594":2,"10595":2,"10596":1,"10597":2,"10598":2,"10599":1,"10600":2,"10601":1,"10602":1,"10603":2,"10604":1,"10605":2,"10606":2,"10607":2,"10608":2,"10609":2,"10610":2,"10611":2,"10612":2,"10613":1,"10614":2,"10615":2,"10616":2,"10617":2,"10618":1,"10619":2,"10620":2,"10621":2,"10622":2,"10623":1,"10624":1,"10625":1,"10626":1,"10627":1,"10628":2,"10629":1,"10630":1,"10631":1,"10632":1,"10633":2,"10634":1,"10635":2,"10636":1,"10637":1,"10638":2,"10639":1,"10640":1,"10641":1,"10642":2,"10643":1,"10644":1,"10645":2,"10646":2,"10647":2,"10648":1,"10649":2,"10650":1,"10651":1,"10652":2,"10653":1,"10654":2,"10655":1,"10656":2,"10657":2,"10658":1,"10659":1,"10660":1,"10661":1,"10662":2,"10663":2,"10664":1,"10665":2,"10666":1,"10667":1,"10668":2,"10669":1,"10670":1,"10671":2,"10672":2,"10673":1,"10674":1,"10675":2,"10676":2,"10677":2,"10678":2,"10679":2,"10680":2,"10681":1,"10682":2,"10683":1,"10684":2,"10685":1,"10686":1,"10687":2,"10688":2,"10689":1,"10690":2,"10691":2,"10692":1,"10693":1,"10694":1,"10695":1,"10696":1,"10697":2,"10698":1,"10699":1,"10700":2,"10701":2,"10702":2,"10703":2,"10704":1,"10705":1,"10706":2,"10707":2,"10708":1,"10709":1,"10710":2,"10711":2,"10712":1,"10713":1,"10714":1,"10715":1,"10716":1,"10717":2,"10718":1,"10719":2,"10720":1,"10721":1,"10722":2,"10723":1,"10724":1,"10725":1,"10726":1,"10727":1,"10728":2,"10729":2,"10730":1,"10731":1,"10732":1,"10733":1,"10734":2,"10735":2,"10736":1,"10737":2,"10738":1,"10739":1,"10740":1,"10741":2,"10742":2,"10743":1,"10744":1,"10745":1,"10746":1,"10747":1,"10748":1,"10749":1,"10750":2,"10751":2,"10752":2,"10753":1,"10754":1,"10755":1,"10756":1,"10757":2,"10758":1,"10759":2,"10760":2,"10761":2,"10762":1,"10763":1,"10764":1,"10765":2,"10766":1,"10767":2,"10768":1,"10769":1,"10770":1,"10771":1,"10772":2,"10773":2,"10774":2,"10775":2,"10776":2,"10777":2,"10778":1,"10779":2,"10780":2,"10781":2,"10782":2,"10783":2,"10784":2,"10785":1,"10786":1,"10787":1,"10788":2,"10789":1,"10790":1,"10791":1,"10792":1,"10793":1,"10794":2,"10795":2,"10796":2,"10797":2,"10798":2,"10799":1,"10800":1,"10801":2,"10802":1,"10803":1,"10804":2,"10805":2,"10806":1,"10807":1,"10808":2,"10809":2,"10810":1,"10811":1,"10812":2,"10813":2,"10814":2,"10815":2,"10816":1,"10817":1,"10818":2,"10819":1,"10820":1,"10821":2,"10822":1,"10823":2,"10824":1,"10825":2,"10826":2,"10827":1,"10828":2,"10829":1,"10830":1,"10831":1,"10832":1,"10833":1,"10834":2,"10835":2,"10836":1,"10837":1,"10838":1,"10839":2,"10840":1,"10841":2,"10842":2,"10843":1,"10844":2,"10845":1,"10846":2,"10847":1,"10848":2,"10849":2,"10850":2,"10851":1,"10852":1,"10853":2,"10854":1,"10855":2,"10856":1,"10857":2,"10858":2,"10859":1,"10860":2,"10861":2,"10862":2,"10863":2,"10864":2,"10865":1,"10866":2,"10867":2,"10868":2,"10869":2,"10870":2,"10871":2,"10872":1,"10873":2,"10874":2,"10875":1,"10876":2,"10877":1,"10878":1,"10879":2,"10880":2,"10881":2,"10882":1,"10883":1,"10884":2,"10885":1,"10886":1,"10887":1,"10888":1,"10889":1,"10890":2,"10891":2,"10892":1,"10893":2,"10894":1,"10895":2,"10896":2,"10897":1,"10898":1,"10899":2,"10900":2,"10901":2,"10902":2,"10903":2,"10904":2,"10905":1,"10906":2,"10907":1,"10908":1,"10909":1,"10910":1,"10911":2,"10912":2,"10913":1,"10914":1,"10915":2,"10916":1,"10917":1,"10918":1,"10919":1,"10920":1,"10921":1,"10922":1,"10923":2,"10924":1,"10925":1,"10926":1,"10927":2,"10928":1,"10929":2,"10930":2,"10931":1,"10932":2,"10933":2,"10934":2,"10935":1,"10936":2,"10937":2,"10938":2,"10939":1,"10940":1,"10941":2,"10942":2,"10943":2,"10944":2,"10945":2,"10946":2,"10947":1,"10948":2,"10949":2,"10950":1,"10951":2,"10952":1,"10953":1,"10954":1,"10955":2,"10956":2,"10957":2,"10958":2,"10959":2,"10960":1,"10961":1,"10962":2,"10963":2,"10964":1,"10965":2,"10966":1,"10967":1,"10968":1,"10969":1,"10970":1,"10971":2,"10972":2,"10973":1,"10974":2,"10975":1,"10976":1,"10977":1,"10978":1,"10979":1,"10980":2,"10981":1,"10982":2,"10983":1,"10984":1,"10985":1,"10986":2,"10987":2,"10988":2,"10989":1,"10990":1,"10991":1,"10992":2,"10993":2,"10994":1,"10995":1,"10996":1,"10997":1,"10998":1,"10999":1,"11000":2,"11001":2,"11002":1,"11003":2,"11004":2,"11005":2,"11006":1,"11007":2,"11008":2,"11009":2,"11010":1,"11011":2,"11012":2,"11013":2,"11014":1,"11015":1,"11016":2,"11017":1,"11018":1,"11019":2,"11020":2,"11021":1,"11022":1,"11023":1,"11024":2,"11025":1,"11026":2,"11027":1,"11028":1,"11029":2,"11030":1,"11031":2,"11032":1,"11033":2,"11034":2,"11035":2,"11036":2,"11037":2,"11038":1,"11039":2,"11040":1,"11041":1,"11042":2,"11043":2,"11044":2,"11045":1,"11046":1,"11047":1,"11048":1,"11049":2,"11050":2,"11051":1,"11052":2,"11053":1,"11054":2,"11055":1,"11056":1,"11057":1,"11058":1,"11059":1,"11060":2,"11061":1,"11062":2,"11063":1,"11064":1,"11065":1,"11066":1,"11067":2,"11068":1,"11069":2,"11070":2,"11071":1,"11072":2,"11073":2,"11074":2,"11075":1,"11076":1,"11077":2,"11078":1,"11079":2,"11080":2,"11081":2,"11082":1,"11083":2,"11084":1,"11085":1,"11086":2,"11087":2,"11088":1,"11089":1,"11090":1,"11091":2,"11092":1,"11093":1,"11094":1,"11095":1,"11096":2,"11097":1,"11098":1,"11099":2,"11100":2,"11101":1,"11102":2,"11103":1,"11104":1,"11105":2,"11106":1,"11107":1,"11108":2,"11109":1,"11110":2,"11111":2,"11112":2,"11113":1,"11114":2,"11115":2,"11116":2,"11117":1,"11118":1,"11119":2,"11120":2,"11121":1,"11122":2,"11123":2,"11124":2,"11125":2,"11126":2,"11127":2,"11128":1,"11129":2,"11130":1,"11131":1,"11132":1,"11133":1,"11134":1,"11135":1,"11136":2,"11137":1,"11138":1,"11139":1,"11140":1,"11141":1,"11142":1,"11143":1,"11144":1,"11145":1,"11146":2,"11147":1,"11148":1,"11149":2,"11150":1,"11151":2,"11152":2,"11153":1,"11154":2,"11155":2,"11156":1,"11157":1,"11158":1,"11159":2,"11160":1,"11161":2,"11162":1,"11163":1,"11164":2,"11165":1,"11166":2,"11167":1,"11168":2,"11169":2,"11170":2,"11171":2,"11172":2,"11173":1,"11174":2,"11175":1,"11176":2,"11177":2,"11178":1,"11179":1,"11180":1,"11181":1,"11182":1,"11183":2,"11184":1,"11185":2,"11186":2,"11187":1,"11188":1,"11189":1,"11190":1,"11191":1,"11192":2,"11193":1,"11194":2,"11195":1,"11196":1,"11197":2,"11198":1,"11199":2,"11200":1,"11201":2,"11202":2,"11203":1,"11204":1,"11205":1,"11206":2,"11207":2,"11208":1,"11209":1,"11210":1,"11211":1,"11212":2,"11213":2,"11214":2,"11215":1,"11216":1,"11217":1,"11218":1,"11219":1,"11220":1,"11221":2,"11222":1,"11223":1,"11224":1,"11225":2,"11226":2,"11227":2,"11228":1,"11229":1,"11230":2,"11231":2,"11232":2,"11233":1,"11234":1,"11235":1,"11236":1,"11237":1,"11238":1,"11239":2,"11240":1,"11241":1,"11242":1,"11243":2,"11244":2,"11245":1,"11246":1,"11247":2,"11248":1,"11249":1,"11250":2,"11251":1,"11252":2,"11253":1,"11254":1,"11255":1,"11256":1,"11257":1,"11258":2,"11259":1,"11260":2,"11261":2,"11262":1,"11263":2,"11264":1,"11265":1,"11266":1,"11267":1,"11268":2,"11269":1,"11270":2,"11271":2,"11272":2,"11273":1,"11274":1,"11275":1,"11276":2,"11277":1,"11278":2,"11279":2,"11280":1,"11281":1,"11282":2,"11283":1,"11284":2,"11285":1,"11286":2,"11287":1,"11288":1,"11289":2,"11290":2,"11291":2,"11292":2,"11293":2,"11294":1,"11295":2,"11296":2,"11297":2,"11298":1,"11299":1,"11300":1,"11301":2,"11302":2,"11303":2,"11304":1,"11305":1,"11306":1,"11307":1,"11308":2,"11309":1,"11310":2,"11311":2,"11312":1,"11313":2,"11314":1,"11315":1,"11316":1,"11317":1,"11318":2,"11319":1,"11320":2,"11321":1,"11322":2,"11323":2,"11324":1,"11325":2,"11326":1,"11327":1,"11328":2,"11329":1,"11330":2,"11331":2,"11332":1,"11333":2,"11334":2,"11335":2,"11336":2,"11337":1,"11338":2,"11339":2,"11340":1,"11341":1,"11342":1,"11343":2,"11344":2,"11345":1,"11346":2,"11347":2,"11348":2,"11349":2,"11350":2,"11351":2,"11352":2,"11353":1,"11354":2,"11355":1,"11356":1,"11357":2,"11358":2,"11359":2,"11360":1,"11361":2,"11362":2,"11363":1,"11364":1,"11365":1,"11366":2,"11367":2,"11368":2,"11369":2,"11370":1,"11371":2,"11372":2,"11373":1,"11374":1,"11375":2,"11376":1,"11377":1,"11378":2,"11379":2,"11380":2,"11381":2,"11382":2,"11383":1,"11384":1,"11385":1,"11386":2,"11387":2,"11388":1,"11389":1,"11390":2,"11391":2,"11392":2,"11393":1,"11394":1,"11395":1,"11396":2,"11397":1,"11398":2,"11399":2,"11400":1,"11401":2,"11402":1,"11403":2,"11404":1,"11405":1,"11406":2,"11407":2,"11408":1,"11409":1,"11410":1,"11411":2,"11412":1,"11413":1,"11414":2,"11415":2,"11416":1,"11417":2,"11418":1,"11419":2,"11420":1,"11421":1,"11422":1,"11423":1,"11424":2,"11425":2,"11426":2,"11427":2,"11428":2,"11429":1,"11430":2,"11431":2,"11432":2,"11433":2,"11434":1,"11435":1,"11436":2,"11437":1,"11438":1,"11439":2,"11440":2,"11441":2,"11442":2,"11443":1,"11444":1,"11445":1,"11446":2,"11447":2,"11448":1,"11449":2,"11450":2,"11451":2,"11452":1,"11453":2,"11454":1,"11455":2,"11456":2,"11457":1,"11458":2,"11459":2,"11460":1,"11461":2,"11462":2,"11463":2,"11464":2,"11465":1,"11466":2,"11467":1,"11468":2,"11469":1,"11470":1,"11471":1,"11472":2,"11473":1,"11474":1,"11475":2,"11476":2,"11477":2,"11478":2,"11479":1,"11480":2,"11481":1,"11482":2,"11483":2,"11484":2,"11485":2,"11486":2,"11487":2,"11488":1,"11489":1,"11490":2,"11491":1,"11492":1,"11493":1,"11494":1,"11495":2,"11496":2,"11497":1,"11498":1,"11499":2,"11500":2,"11501":2,"11502":2,"11503":2,"11504":2,"11505":1,"11506":1,"11507":2,"11508":2,"11509":2,"11510":2,"11511":2,"11512":1,"11513":1,"11514":2,"11515":1,"11516":1,"11517":1,"11518":1,"11519":1,"11520":2,"11521":2,"11522":1,"11523":1,"11524":1,"11525":1,"11526":1,"11527":1,"11528":2,"11529":2,"11530":2,"11531":2,"11532":2,"11533":2,"11534":1,"11535":1,"11536":1,"11537":2,"11538":2,"11539":2,"11540":2,"11541":2,"11542":1,"11543":2,"11544":2,"11545":1,"11546":1,"11547":2,"11548":1,"11549":1,"11550":1,"11551":1,"11552":1,"11553":2,"11554":2,"11555":1,"11556":1,"11557":1,"11558":1,"11559":1,"11560":1,"11561":2,"11562":2,"11563":1,"11564":1,"11565":2,"11566":1,"11567":1,"11568":2,"11569":2,"11570":2,"11571":2,"11572":1,"11573":2,"11574":2,"11575":2,"11576":1,"11577":2,"11578":2,"11579":2,"11580":1,"11581":1,"11582":2,"11583":1,"11584":2,"11585":1,"11586":1,"11587":2,"11588":2,"11589":1,"11590":1,"11591":2,"11592":1,"11593":1,"11594":2,"11595":2,"11596":2,"11597":2,"11598":1,"11599":2,"11600":2,"11601":1,"11602":2,"11603":2,"11604":2,"11605":1,"11606":2,"11607":1,"11608":1,"11609":1,"11610":1,"11611":1,"11612":2,"11613":2,"11614":2,"11615":2,"11616":2,"11617":2,"11618":1,"11619":2,"11620":2,"11621":1,"11622":1,"11623":2,"11624":2,"11625":2,"11626":2,"11627":1,"11628":2,"11629":2,"11630":2,"11631":1,"11632":1,"11633":1,"11634":2,"11635":1,"11636":2,"11637":2,"11638":2,"11639":2,"11640":2,"11641":1,"11642":1,"11643":1,"11644":1,"11645":2,"11646":2,"11647":2,"11648":1,"11649":2,"11650":1,"11651":2,"11652":2,"11653":1,"11654":2,"11655":1,"11656":2,"11657":1,"11658":1,"11659":1,"11660":1,"11661":1,"11662":1,"11663":2,"11664":2,"11665":2,"11666":2,"11667":2,"11668":2,"11669":2,"11670":2,"11671":2,"11672":2,"11673":1,"11674":1,"11675":1,"11676":1,"11677":1,"11678":2,"11679":2,"11680":2,"11681":1,"11682":2,"11683":2,"11684":1,"11685":1,"11686":1,"11687":1,"11688":1,"11689":1,"11690":2,"11691":1,"11692":2,"11693":2,"11694":1,"11695":2,"11696":2,"11697":1,"11698":1,"11699":2,"11700":1,"11701":1,"11702":2,"11703":2,"11704":1,"11705":2,"11706":2,"11707":1,"11708":2,"11709":1,"11710":2,"11711":2,"11712":2,"11713":2,"11714":2,"11715":1,"11716":1,"11717":1,"11718":2,"11719":2,"11720":2,"11721":2,"11722":2,"11723":2,"11724":2,"11725":1,"11726":1,"11727":1,"11728":2,"11729":2,"11730":2,"11731":1,"11732":2,"11733":2,"11734":2,"11735":2,"11736":2,"11737":2,"11738":2,"11739":2,"11740":2,"11741":1,"11742":1,"11743":2,"11744":2,"11745":2,"11746":2,"11747":1,"11748":2,"11749":1,"11750":2,"11751":2,"11752":1,"11753":2,"11754":1,"11755":1,"11756":2,"11757":2,"11758":2,"11759":2,"11760":2,"11761":1,"11762":2,"11763":1,"11764":2,"11765":1,"11766":1,"11767":2,"11768":1,"11769":2,"11770":1,"11771":1,"11772":1,"11773":1,"11774":2,"11775":1,"11776":2,"11777":2,"11778":2,"11779":1,"11780":1,"11781":2,"11782":2,"11783":1,"11784":2,"11785":1,"11786":2,"11787":2,"11788":1,"11789":1,"11790":2,"11791":2,"11792":2,"11793":1,"11794":1,"11795":2,"11796":1,"11797":1,"11798":2,"11799":2,"11800":2,"11801":2,"11802":2,"11803":1,"11804":2,"11805":1,"11806":2,"11807":2,"11808":1,"11809":2,"11810":2,"11811":2,"11812":2,"11813":2,"11814":1,"11815":2,"11816":2,"11817":1,"11818":2,"11819":1,"11820":2,"11821":2,"11822":1,"11823":1,"11824":1,"11825":2,"11826":1,"11827":2,"11828":2,"11829":2,"11830":1,"11831":1,"11832":1,"11833":1,"11834":1,"11835":2,"11836":2,"11837":1,"11838":2,"11839":2,"11840":2,"11841":1,"11842":1,"11843":2,"11844":1,"11845":1,"11846":1,"11847":2,"11848":1,"11849":1,"11850":1,"11851":2,"11852":1,"11853":2,"11854":2,"11855":2,"11856":2,"11857":1,"11858":2,"11859":1,"11860":1,"11861":2,"11862":1,"11863":2,"11864":2,"11865":1,"11866":1,"11867":1,"11868":2,"11869":1,"11870":1,"11871":2,"11872":2,"11873":1,"11874":2,"11875":1,"11876":1,"11877":1,"11878":2,"11879":2,"11880":1,"11881":2,"11882":2,"11883":1,"11884":1,"11885":1,"11886":2,"11887":2,"11888":2,"11889":2,"11890":1,"11891":1,"11892":2,"11893":2,"11894":2,"11895":1,"11896":2,"11897":2,"11898":1,"11899":2,"11900":2,"11901":2,"11902":1,"11903":1,"11904":2,"11905":2,"11906":2,"11907":2,"11908":2,"11909":1,"11910":2,"11911":2,"11912":1,"11913":2,"11914":2,"11915":1,"11916":1,"11917":2,"11918":1,"11919":1,"11920":2,"11921":1,"11922":1,"11923":1,"11924":2,"11925":1,"11926":1,"11927":1,"11928":1,"11929":2,"11930":2,"11931":2,"11932":2,"11933":1,"11934":1,"11935":2,"11936":2,"11937":1,"11938":1,"11939":1,"11940":1,"11941":1,"11942":2,"11943":2,"11944":1,"11945":1,"11946":2,"11947":2,"11948":1,"11949":2,"11950":1,"11951":1,"11952":2,"11953":2,"11954":2,"11955":2,"11956":2,"11957":2,"11958":2,"11959":1,"11960":2,"11961":2,"11962":1,"11963":1,"11964":2,"11965":2,"11966":1,"11967":2,"11968":2,"11969":2,"11970":2,"11971":2,"11972":1,"11973":2,"11974":1,"11975":2,"11976":2,"11977":1,"11978":1,"11979":1,"11980":2,"11981":1,"11982":2,"11983":2,"11984":1,"11985":2,"11986":2,"11987":1,"11988":2,"11989":2,"11990":1,"11991":2,"11992":1,"11993":2,"11994":1,"11995":1,"11996":1,"11997":1,"11998":1,"11999":2,"12000":1,"12001":1,"12002":1,"12003":1,"12004":1,"12005":2,"12006":2,"12007":1,"12008":1,"12009":2,"12010":1,"12011":1,"12012":1,"12013":1,"12014":1,"12015":1,"12016":2,"12017":2,"12018":2,"12019":2,"12020":2,"12021":1,"12022":2,"12023":2,"12024":1,"12025":1,"12026":1,"12027":2,"12028":1,"12029":2,"12030":2,"12031":2,"12032":1,"12033":2,"12034":1,"12035":2,"12036":1,"12037":2,"12038":1,"12039":1,"12040":1,"12041":1,"12042":2,"12043":2,"12044":2,"12045":2,"12046":2,"12047":2,"12048":1,"12049":2,"12050":2,"12051":1,"12052":2,"12053":2,"12054":2,"12055":2,"12056":1,"12057":1,"12058":2,"12059":1,"12060":2,"12061":1,"12062":1,"12063":2,"12064":1,"12065":2,"12066":1,"12067":1,"12068":2,"12069":2,"12070":2,"12071":2,"12072":2,"12073":1,"12074":1,"12075":1,"12076":1,"12077":1,"12078":2,"12079":1,"12080":1,"12081":1,"12082":1,"12083":2,"12084":2,"12085":1,"12086":2,"12087":1,"12088":1,"12089":1,"12090":2,"12091":1,"12092":2,"12093":1,"12094":2,"12095":1,"12096":1,"12097":2,"12098":2,"12099":2,"12100":1,"12101":2,"12102":2,"12103":1,"12104":1,"12105":2,"12106":2,"12107":2,"12108":1,"12109":2,"12110":1,"12111":1,"12112":2,"12113":1,"12114":1,"12115":1,"12116":1,"12117":1,"12118":2,"12119":2,"12120":1,"12121":1,"12122":1,"12123":1,"12124":1,"12125":2,"12126":1,"12127":1,"12128":1,"12129":2,"12130":1,"12131":2,"12132":2,"12133":1,"12134":2,"12135":2,"12136":2,"12137":2,"12138":1,"12139":1,"12140":2,"12141":1,"12142":2,"12143":2,"12144":2,"12145":1,"12146":1,"12147":2,"12148":1,"12149":2,"12150":1,"12151":1,"12152":1,"12153":1,"12154":2,"12155":2,"12156":1,"12157":1,"12158":1,"12159":2,"12160":2,"12161":1,"12162":1,"12163":1,"12164":2,"12165":2,"12166":1,"12167":2,"12168":2,"12169":1,"12170":2,"12171":1,"12172":1,"12173":2,"12174":2,"12175":2,"12176":1,"12177":1,"12178":1,"12179":1,"12180":1,"12181":1,"12182":1,"12183":2,"12184":1,"12185":2,"12186":2,"12187":2,"12188":2,"12189":2,"12190":1,"12191":2,"12192":1,"12193":2,"12194":2,"12195":1,"12196":1,"12197":2,"12198":1,"12199":1,"12200":1,"12201":1,"12202":1,"12203":1,"12204":1,"12205":2,"12206":2,"12207":2,"12208":1,"12209":1,"12210":1,"12211":1,"12212":1,"12213":1,"12214":1,"12215":2,"12216":2,"12217":1,"12218":1,"12219":2,"12220":1,"12221":1,"12222":2,"12223":2,"12224":1,"12225":2,"12226":1,"12227":2,"12228":2,"12229":1,"12230":1,"12231":1,"12232":2,"12233":2,"12234":1,"12235":1,"12236":2,"12237":2,"12238":2,"12239":2,"12240":2,"12241":2,"12242":1,"12243":2,"12244":2,"12245":2,"12246":2,"12247":1,"12248":2,"12249":2,"12250":2,"12251":1,"12252":1,"12253":2,"12254":1,"12255":1,"12256":2,"12257":2,"12258":1,"12259":1,"12260":2,"12261":1,"12262":2,"12263":1,"12264":1,"12265":1,"12266":1,"12267":2,"12268":1,"12269":1,"12270":2,"12271":1,"12272":2,"12273":2,"12274":1,"12275":2,"12276":1,"12277":1,"12278":2,"12279":1,"12280":1,"12281":2,"12282":1,"12283":1,"12284":2,"12285":2,"12286":1,"12287":2,"12288":1,"12289":2,"12290":1,"12291":2,"12292":1,"12293":2,"12294":2,"12295":2,"12296":1,"12297":2,"12298":1,"12299":1,"12300":1,"12301":2,"12302":1,"12303":1,"12304":1,"12305":1,"12306":1,"12307":2,"12308":2,"12309":2,"12310":2,"12311":2,"12312":2,"12313":1,"12314":1,"12315":2,"12316":2,"12317":2,"12318":2,"12319":1,"12320":1,"12321":2,"12322":2,"12323":2,"12324":2,"12325":2,"12326":2,"12327":2,"12328":2,"12329":1,"12330":2,"12331":2,"12332":1,"12333":1,"12334":1,"12335":2,"12336":2,"12337":1,"12338":1,"12339":2,"12340":2,"12341":1,"12342":1,"12343":2,"12344":2,"12345":2,"12346":1,"12347":2,"12348":2,"12349":2,"12350":1,"12351":1,"12352":2,"12353":2,"12354":2,"12355":1,"12356":1,"12357":1,"12358":2,"12359":1,"12360":1,"12361":2,"12362":1,"12363":1,"12364":2,"12365":1,"12366":2,"12367":2,"12368":1,"12369":2,"12370":2,"12371":2,"12372":2,"12373":1,"12374":1,"12375":1,"12376":1,"12377":2,"12378":1,"12379":2,"12380":2,"12381":2,"12382":1,"12383":2,"12384":1,"12385":1,"12386":2,"12387":1,"12388":2,"12389":2,"12390":1,"12391":2,"12392":2,"12393":2,"12394":2,"12395":2,"12396":1,"12397":2,"12398":2,"12399":2,"12400":2,"12401":2,"12402":2,"12403":1,"12404":2,"12405":2,"12406":1,"12407":2,"12408":2,"12409":1,"12410":1,"12411":1,"12412":1,"12413":1,"12414":1,"12415":1,"12416":2,"12417":2,"12418":1,"12419":1,"12420":2,"12421":2,"12422":2,"12423":1,"12424":1,"12425":2,"12426":2,"12427":2,"12428":1,"12429":2,"12430":1,"12431":1,"12432":2,"12433":1,"12434":2,"12435":2,"12436":1,"12437":1,"12438":2,"12439":2,"12440":2,"12441":1,"12442":2,"12443":2,"12444":1,"12445":2,"12446":1,"12447":1,"12448":2,"12449":2,"12450":1,"12451":2,"12452":2,"12453":1,"12454":2,"12455":2,"12456":1,"12457":2,"12458":1,"12459":1,"12460":2,"12461":2,"12462":1,"12463":2,"12464":2,"12465":2,"12466":1,"12467":2,"12468":2,"12469":2,"12470":2,"12471":2,"12472":2,"12473":1,"12474":1,"12475":1,"12476":2,"12477":2,"12478":2,"12479":1,"12480":1,"12481":1,"12482":1,"12483":1,"12484":1,"12485":1,"12486":2,"12487":2,"12488":1,"12489":1,"12490":1,"12491":2,"12492":2,"12493":2,"12494":2,"12495":2,"12496":2,"12497":2,"12498":2,"12499":1,"12500":1,"12501":1,"12502":2,"12503":1,"12504":1,"12505":2,"12506":2,"12507":1,"12508":2,"12509":2,"12510":1,"12511":2,"12512":2,"12513":1,"12514":1,"12515":1,"12516":2,"12517":1,"12518":2,"12519":1,"12520":1,"12521":2,"12522":2,"12523":2,"12524":1,"12525":2,"12526":1,"12527":1,"12528":2,"12529":1,"12530":1,"12531":1,"12532":2,"12533":1,"12534":1,"12535":2,"12536":2,"12537":1,"12538":1,"12539":2,"12540":2,"12541":1,"12542":2,"12543":2,"12544":1,"12545":2,"12546":1,"12547":1,"12548":2,"12549":2,"12550":2,"12551":1,"12552":1,"12553":2,"12554":1,"12555":1,"12556":1,"12557":1,"12558":1,"12559":2,"12560":1,"12561":2,"12562":1,"12563":1,"12564":2,"12565":2,"12566":2,"12567":2,"12568":2,"12569":2,"12570":1,"12571":1,"12572":1,"12573":2,"12574":2,"12575":2,"12576":2,"12577":1,"12578":2,"12579":1,"12580":2,"12581":1,"12582":1,"12583":1,"12584":1,"12585":1,"12586":2,"12587":1,"12588":2,"12589":1,"12590":2,"12591":1,"12592":1,"12593":1,"12594":1,"12595":1,"12596":1,"12597":2,"12598":2,"12599":2,"12600":2,"12601":1,"12602":1,"12603":2,"12604":2,"12605":2,"12606":2,"12607":1,"12608":1,"12609":2,"12610":2,"12611":1,"12612":1,"12613":2,"12614":2,"12615":1,"12616":1,"12617":2,"12618":2,"12619":1,"12620":2,"12621":1,"12622":1,"12623":2,"12624":1,"12625":2,"12626":2,"12627":1,"12628":1,"12629":2,"12630":1,"12631":2,"12632":2,"12633":2,"12634":1,"12635":2,"12636":2,"12637":2,"12638":2,"12639":2,"12640":1,"12641":2,"12642":1,"12643":2,"12644":1,"12645":2,"12646":1,"12647":2,"12648":1,"12649":2,"12650":2,"12651":1,"12652":2,"12653":1,"12654":2,"12655":2,"12656":2,"12657":2,"12658":1,"12659":1,"12660":2,"12661":1,"12662":2,"12663":2,"12664":1,"12665":2,"12666":2,"12667":1,"12668":2,"12669":2,"12670":2,"12671":1,"12672":2,"12673":1,"12674":1,"12675":2,"12676":1,"12677":2,"12678":2,"12679":1,"12680":2,"12681":2,"12682":2,"12683":1,"12684":2,"12685":2,"12686":2,"12687":1,"12688":1,"12689":2,"12690":2,"12691":1,"12692":1,"12693":1,"12694":1,"12695":2,"12696":2,"12697":2,"12698":2,"12699":2,"12700":2,"12701":2,"12702":2,"12703":1,"12704":1,"12705":2,"12706":2,"12707":1,"12708":1,"12709":1,"12710":2,"12711":2,"12712":2,"12713":1,"12714":1,"12715":1,"12716":2,"12717":1,"12718":1,"12719":1,"12720":1,"12721":2,"12722":2,"12723":1,"12724":2,"12725":1,"12726":2,"12727":2,"12728":2,"12729":1,"12730":1,"12731":2,"12732":1,"12733":1,"12734":1,"12735":2,"12736":2,"12737":1,"12738":2,"12739":2,"12740":1,"12741":2,"12742":2,"12743":1,"12744":2,"12745":2,"12746":1,"12747":1,"12748":1,"12749":2,"12750":2,"12751":1,"12752":2,"12753":2,"12754":1,"12755":2,"12756":2,"12757":2,"12758":2,"12759":2,"12760":1,"12761":2,"12762":1,"12763":1,"12764":1,"12765":2,"12766":2,"12767":2,"12768":2,"12769":2,"12770":1,"12771":2,"12772":1,"12773":1,"12774":1,"12775":1,"12776":1,"12777":2,"12778":1,"12779":2,"12780":2,"12781":1,"12782":2,"12783":2,"12784":2,"12785":1,"12786":1,"12787":1,"12788":2,"12789":1,"12790":2,"12791":1,"12792":1,"12793":2,"12794":1,"12795":1,"12796":2,"12797":2,"12798":2,"12799":1,"12800":1,"12801":2,"12802":1,"12803":1,"12804":1,"12805":1,"12806":1,"12807":2,"12808":2,"12809":2,"12810":1,"12811":1,"12812":1,"12813":1,"12814":1,"12815":1,"12816":2,"12817":2,"12818":2,"12819":1,"12820":2,"12821":2,"12822":2,"12823":1,"12824":2,"12825":2,"12826":2,"12827":1,"12828":2,"12829":2,"12830":1,"12831":2,"12832":2,"12833":2,"12834":1,"12835":2,"12836":2,"12837":1,"12838":2,"12839":1,"12840":2,"12841":1,"12842":2,"12843":2,"12844":2,"12845":1,"12846":2,"12847":1,"12848":2,"12849":2,"12850":2,"12851":1,"12852":1,"12853":2,"12854":2,"12855":1,"12856":1,"12857":1,"12858":2,"12859":1,"12860":2,"12861":1,"12862":2,"12863":1,"12864":1,"12865":2,"12866":2,"12867":2,"12868":1,"12869":1,"12870":1,"12871":1,"12872":2,"12873":2,"12874":2,"12875":1,"12876":2,"12877":1,"12878":2,"12879":1,"12880":2,"12881":2,"12882":1,"12883":2,"12884":1,"12885":2,"12886":2,"12887":2,"12888":1,"12889":1,"12890":1,"12891":2,"12892":1,"12893":1,"12894":2,"12895":2,"12896":1,"12897":2,"12898":1,"12899":2,"12900":2,"12901":1,"12902":1,"12903":2,"12904":2,"12905":1,"12906":1,"12907":2,"12908":1,"12909":1,"12910":2,"12911":1,"12912":1,"12913":2,"12914":2,"12915":1,"12916":2,"12917":1,"12918":2,"12919":1,"12920":2,"12921":2,"12922":2,"12923":1,"12924":1,"12925":2,"12926":1,"12927":2,"12928":1,"12929":2,"12930":1,"12931":2,"12932":1,"12933":1,"12934":2,"12935":2,"12936":1,"12937":2,"12938":2,"12939":2,"12940":1,"12941":1,"12942":2,"12943":1,"12944":2,"12945":1,"12946":2,"12947":1,"12948":2,"12949":1,"12950":1,"12951":2,"12952":1,"12953":1,"12954":2,"12955":1,"12956":1,"12957":2,"12958":2,"12959":2,"12960":1,"12961":2,"12962":1,"12963":2,"12964":1,"12965":1,"12966":2,"12967":2,"12968":1,"12969":1,"12970":1,"12971":1,"12972":2,"12973":2,"12974":1,"12975":1,"12976":2,"12977":2,"12978":2,"12979":2,"12980":1,"12981":2,"12982":2,"12983":1,"12984":1,"12985":1,"12986":2,"12987":1,"12988":2,"12989":1,"12990":2,"12991":1,"12992":2,"12993":1,"12994":1,"12995":2,"12996":1,"12997":1,"12998":2,"12999":1,"13000":2,"13001":2,"13002":2,"13003":2,"13004":2,"13005":2,"13006":2,"13007":2,"13008":1,"13009":1,"13010":2,"13011":2,"13012":2,"13013":2,"13014":1,"13015":2,"13016":2,"13017":1,"13018":2,"13019":2,"13020":1,"13021":2,"13022":1,"13023":1,"13024":1,"13025":2,"13026":2,"13027":2,"13028":1,"13029":1,"13030":2,"13031":2,"13032":2,"13033":1,"13034":1,"13035":1,"13036":2,"13037":1,"13038":2,"13039":1,"13040":2,"13041":1,"13042":2,"13043":2,"13044":1,"13045":2,"13046":2,"13047":1,"13048":1,"13049":1,"13050":1,"13051":2,"13052":2,"13053":1,"13054":2,"13055":2,"13056":2,"13057":2,"13058":1,"13059":2,"13060":2,"13061":2,"13062":1,"13063":1,"13064":1,"13065":2,"13066":2,"13067":2,"13068":1,"13069":1,"13070":1,"13071":1,"13072":2,"13073":2,"13074":2,"13075":2,"13076":1,"13077":1,"13078":2,"13079":1,"13080":2,"13081":1,"13082":2,"13083":2,"13084":2,"13085":1,"13086":2,"13087":2,"13088":1,"13089":2,"13090":2,"13091":2,"13092":2,"13093":1,"13094":1,"13095":2,"13096":2,"13097":2,"13098":2,"13099":1,"13100":2,"13101":2,"13102":2,"13103":1,"13104":1,"13105":1,"13106":2,"13107":2,"13108":1,"13109":2,"13110":1,"13111":2,"13112":1,"13113":2,"13114":1,"13115":1,"13116":2,"13117":1,"13118":1,"13119":2,"13120":1,"13121":1,"13122":1,"13123":1,"13124":1,"13125":2,"13126":2,"13127":1,"13128":1,"13129":2,"13130":1,"13131":1,"13132":1,"13133":2,"13134":2,"13135":1,"13136":1,"13137":2,"13138":2,"13139":1,"13140":2,"13141":1,"13142":1,"13143":2,"13144":2,"13145":1,"13146":1,"13147":1,"13148":2,"13149":2,"13150":1,"13151":2,"13152":2,"13153":1,"13154":1,"13155":1,"13156":2,"13157":1,"13158":2,"13159":2,"13160":2,"13161":1,"13162":1,"13163":1,"13164":1,"13165":2,"13166":2,"13167":1,"13168":1,"13169":1,"13170":2,"13171":1,"13172":1,"13173":2,"13174":2,"13175":1,"13176":2,"13177":1,"13178":1,"13179":1,"13180":2,"13181":2,"13182":2,"13183":1,"13184":2,"13185":2,"13186":2,"13187":2,"13188":2,"13189":1,"13190":2,"13191":1,"13192":2,"13193":2,"13194":2,"13195":2,"13196":2,"13197":1,"13198":1,"13199":1,"13200":1,"13201":1,"13202":2,"13203":1,"13204":1,"13205":2,"13206":1,"13207":2,"13208":1,"13209":1,"13210":1,"13211":1,"13212":1,"13213":2,"13214":2,"13215":1,"13216":1,"13217":2,"13218":1,"13219":1,"13220":2,"13221":2,"13222":1,"13223":2,"13224":1,"13225":1,"13226":1,"13227":1,"13228":1,"13229":1,"13230":2,"13231":2,"13232":1,"13233":1,"13234":1,"13235":2,"13236":1,"13237":1,"13238":2,"13239":2,"13240":2,"13241":1,"13242":2,"13243":2,"13244":1,"13245":2,"13246":2,"13247":1,"13248":2,"13249":2,"13250":2,"13251":1,"13252":1,"13253":1,"13254":2,"13255":2,"13256":1,"13257":1,"13258":1,"13259":2,"13260":2,"13261":2,"13262":1,"13263":2,"13264":1,"13265":1,"13266":1,"13267":1,"13268":1,"13269":2,"13270":1,"13271":1,"13272":1,"13273":1,"13274":1,"13275":2,"13276":1,"13277":2,"13278":2,"13279":2,"13280":2,"13281":1,"13282":2,"13283":2,"13284":1,"13285":2,"13286":1,"13287":1,"13288":1,"13289":1,"13290":1,"13291":1,"13292":2,"13293":1,"13294":1,"13295":1,"13296":2,"13297":1,"13298":1,"13299":2,"13300":2,"13301":1,"13302":2,"13303":1,"13304":2,"13305":1,"13306":2,"13307":2,"13308":1,"13309":1,"13310":1,"13311":1,"13312":1,"13313":1,"13314":2,"13315":2,"13316":2,"13317":1,"13318":1,"13319":1,"13320":2,"13321":1,"13322":2,"13323":2,"13324":1,"13325":1,"13326":2,"13327":1,"13328":1,"13329":1,"13330":1,"13331":1,"13332":2,"13333":1,"13334":2,"13335":2,"13336":1,"13337":1,"13338":2,"13339":1,"13340":2,"13341":2,"13342":2,"13343":2,"13344":2,"13345":1,"13346":2,"13347":2,"13348":1,"13349":1,"13350":2,"13351":1,"13352":2,"13353":1,"13354":1,"13355":1,"13356":1,"13357":2,"13358":2,"13359":2,"13360":1,"13361":2,"13362":1,"13363":1,"13364":2,"13365":1,"13366":2,"13367":1,"13368":2,"13369":1,"13370":2,"13371":2,"13372":2,"13373":2,"13374":2,"13375":1,"13376":2,"13377":1,"13378":2,"13379":2,"13380":2,"13381":2,"13382":1,"13383":1,"13384":2,"13385":2,"13386":2,"13387":2,"13388":2,"13389":1,"13390":2,"13391":1,"13392":2,"13393":2,"13394":2,"13395":1,"13396":1,"13397":2,"13398":2,"13399":1,"13400":1,"13401":2,"13402":1,"13403":2,"13404":2,"13405":2,"13406":1,"13407":1,"13408":1,"13409":2,"13410":1,"13411":2,"13412":2,"13413":2,"13414":2,"13415":2,"13416":1,"13417":1,"13418":1,"13419":2,"13420":2,"13421":1,"13422":2,"13423":1,"13424":1,"13425":1,"13426":2,"13427":2,"13428":1,"13429":1,"13430":1,"13431":2,"13432":1,"13433":2,"13434":1,"13435":1,"13436":2,"13437":1,"13438":1,"13439":2,"13440":1,"13441":1,"13442":1,"13443":1,"13444":2,"13445":2,"13446":1,"13447":2,"13448":2,"13449":2,"13450":1,"13451":2,"13452":1,"13453":2,"13454":2,"13455":1,"13456":2,"13457":1,"13458":2,"13459":1,"13460":1,"13461":1,"13462":2,"13463":1,"13464":2,"13465":1,"13466":2,"13467":1,"13468":2,"13469":2,"13470":1,"13471":1,"13472":1,"13473":2,"13474":2,"13475":2,"13476":2,"13477":1,"13478":2,"13479":1,"13480":2,"13481":2,"13482":1,"13483":2,"13484":1,"13485":1,"13486":2,"13487":1,"13488":1,"13489":2,"13490":2,"13491":2,"13492":2,"13493":2,"13494":2,"13495":2,"13496":2,"13497":1,"13498":1,"13499":1,"13500":1,"13501":1,"13502":1,"13503":2,"13504":1,"13505":1,"13506":1,"13507":2,"13508":1,"13509":2,"13510":2,"13511":2,"13512":1,"13513":2,"13514":1,"13515":1,"13516":1,"13517":1,"13518":2,"13519":1,"13520":2,"13521":1,"13522":1,"13523":1,"13524":1,"13525":2,"13526":1,"13527":2,"13528":1,"13529":2,"13530":1,"13531":1,"13532":1,"13533":2,"13534":1,"13535":2,"13536":1,"13537":2,"13538":2,"13539":2,"13540":2,"13541":2,"13542":1,"13543":2,"13544":1,"13545":2,"13546":1,"13547":2,"13548":1,"13549":1,"13550":1,"13551":1,"13552":1,"13553":2,"13554":2,"13555":1,"13556":1,"13557":1,"13558":2,"13559":1,"13560":2,"13561":2,"13562":2,"13563":1,"13564":1,"13565":1,"13566":2,"13567":2,"13568":2,"13569":2,"13570":1,"13571":1,"13572":1,"13573":1,"13574":2,"13575":2,"13576":1,"13577":2,"13578":1,"13579":2,"13580":1,"13581":1,"13582":1,"13583":2,"13584":2,"13585":1,"13586":1,"13587":2,"13588":1,"13589":1,"13590":2,"13591":1,"13592":2,"13593":1,"13594":1,"13595":2,"13596":1,"13597":1,"13598":1,"13599":1,"13600":2,"13601":2,"13602":1,"13603":2,"13604":2,"13605":2,"13606":1,"13607":2,"13608":2,"13609":1,"13610":2,"13611":2,"13612":2,"13613":2,"13614":1,"13615":1,"13616":2,"13617":1,"13618":1,"13619":1,"13620":1,"13621":1,"13622":2,"13623":2,"13624":2,"13625":2,"13626":2,"13627":1,"13628":2,"13629":1,"13630":1,"13631":2,"13632":2,"13633":1,"13634":1,"13635":2,"13636":1,"13637":1,"13638":2,"13639":2,"13640":2,"13641":2,"13642":1,"13643":1,"13644":1,"13645":2,"13646":1,"13647":1,"13648":2,"13649":1,"13650":1,"13651":2,"13652":2,"13653":1,"13654":2,"13655":2,"13656":1,"13657":2,"13658":1,"13659":2,"13660":1,"13661":2,"13662":1,"13663":2,"13664":1,"13665":2,"13666":1,"13667":2,"13668":2,"13669":2,"13670":1,"13671":1,"13672":2,"13673":1,"13674":2,"13675":2,"13676":2,"13677":2,"13678":2,"13679":2,"13680":1,"13681":1,"13682":2,"13683":2,"13684":1,"13685":2,"13686":2,"13687":1,"13688":1,"13689":1,"13690":1,"13691":2,"13692":1,"13693":1,"13694":1,"13695":2,"13696":2,"13697":2,"13698":1,"13699":1,"13700":2,"13701":2,"13702":2,"13703":2,"13704":1,"13705":1,"13706":2,"13707":1,"13708":2,"13709":2,"13710":1,"13711":1,"13712":1,"13713":1,"13714":2,"13715":2,"13716":1,"13717":2,"13718":1,"13719":1,"13720":2,"13721":1,"13722":2,"13723":1,"13724":1,"13725":1,"13726":2,"13727":2,"13728":2,"13729":1,"13730":1,"13731":1,"13732":1,"13733":2,"13734":1,"13735":2,"13736":2,"13737":2,"13738":1,"13739":1,"13740":2,"13741":2,"13742":1,"13743":2,"13744":1,"13745":1,"13746":2,"13747":2,"13748":1,"13749":1,"13750":2,"13751":2,"13752":1,"13753":1,"13754":1,"13755":2,"13756":2,"13757":1,"13758":1,"13759":1,"13760":2,"13761":2,"13762":1,"13763":1,"13764":2,"13765":2,"13766":1,"13767":2,"13768":2,"13769":1,"13770":1,"13771":1,"13772":2,"13773":1,"13774":2,"13775":1,"13776":1,"13777":1,"13778":2,"13779":1,"13780":2,"13781":1,"13782":1,"13783":1,"13784":1,"13785":2,"13786":2,"13787":1,"13788":1,"13789":2,"13790":2,"13791":1,"13792":1,"13793":1,"13794":1,"13795":2,"13796":2,"13797":1,"13798":1,"13799":1,"13800":1,"13801":1,"13802":2,"13803":1,"13804":1,"13805":2,"13806":1,"13807":1,"13808":1,"13809":1,"13810":1,"13811":2,"13812":2,"13813":1,"13814":2,"13815":1,"13816":2,"13817":2,"13818":2,"13819":1,"13820":2,"13821":1,"13822":2,"13823":1,"13824":2,"13825":2,"13826":1,"13827":1,"13828":1,"13829":1,"13830":2,"13831":2,"13832":1,"13833":1,"13834":1,"13835":1,"13836":1,"13837":1,"13838":2,"13839":2,"13840":2,"13841":2,"13842":1,"13843":2,"13844":1,"13845":1,"13846":2,"13847":1,"13848":1,"13849":2,"13850":2,"13851":1,"13852":1,"13853":2,"13854":1,"13855":2,"13856":2,"13857":2,"13858":2,"13859":2,"13860":1,"13861":1,"13862":1,"13863":2,"13864":2,"13865":2,"13866":2,"13867":1,"13868":1,"13869":2,"13870":1,"13871":1,"13872":2,"13873":2,"13874":1,"13875":2,"13876":2,"13877":2,"13878":2,"13879":2,"13880":2,"13881":2,"13882":2,"13883":1,"13884":1,"13885":2,"13886":2,"13887":2,"13888":2,"13889":2,"13890":2,"13891":1,"13892":1,"13893":2,"13894":1,"13895":2,"13896":1,"13897":1,"13898":2,"13899":1,"13900":2,"13901":2,"13902":1,"13903":2,"13904":2,"13905":2,"13906":1,"13907":1,"13908":2,"13909":2,"13910":2,"13911":1,"13912":2,"13913":2,"13914":2,"13915":1,"13916":1,"13917":1,"13918":2,"13919":2,"13920":2,"13921":1,"13922":2,"13923":1,"13924":2,"13925":2,"13926":1,"13927":2,"13928":1,"13929":2,"13930":2,"13931":1,"13932":1,"13933":2,"13934":2,"13935":2,"13936":2,"13937":1,"13938":2,"13939":2,"13940":2,"13941":2,"13942":2,"13943":1,"13944":2,"13945":2,"13946":1,"13947":2,"13948":2,"13949":1,"13950":1,"13951":2,"13952":1,"13953":1,"13954":1,"13955":1,"13956":1,"13957":2,"13958":2,"13959":1,"13960":2,"13961":1,"13962":1,"13963":1,"13964":1,"13965":1,"13966":2,"13967":2,"13968":1,"13969":2,"13970":1,"13971":2,"13972":1,"13973":1,"13974":1,"13975":1,"13976":2,"13977":2,"13978":1,"13979":2,"13980":1,"13981":2,"13982":1,"13983":1,"13984":1,"13985":1,"13986":1,"13987":1,"13988":1,"13989":2,"13990":2,"13991":1,"13992":2,"13993":2,"13994":1,"13995":1,"13996":1,"13997":1,"13998":2,"13999":1,"14000":2,"14001":1,"14002":1,"14003":1,"14004":1,"14005":1,"14006":2,"14007":2,"14008":1,"14009":2,"14010":2,"14011":2,"14012":2,"14013":2,"14014":2,"14015":1,"14016":2,"14017":2,"14018":1,"14019":1,"14020":1,"14021":1,"14022":1,"14023":1,"14024":1,"14025":1,"14026":1,"14027":1,"14028":1,"14029":2,"14030":1,"14031":2,"14032":1,"14033":1,"14034":1,"14035":2,"14036":1,"14037":2,"14038":2,"14039":2,"14040":1,"14041":2,"14042":1,"14043":2,"14044":1,"14045":1,"14046":1,"14047":2,"14048":1,"14049":2,"14050":2,"14051":2,"14052":2,"14053":2,"14054":1,"14055":2,"14056":2,"14057":1,"14058":2,"14059":1,"14060":2,"14061":2,"14062":2,"14063":1,"14064":2,"14065":1,"14066":1,"14067":2,"14068":1,"14069":1,"14070":2,"14071":2,"14072":2,"14073":1,"14074":2,"14075":1,"14076":1,"14077":2,"14078":1,"14079":2,"14080":2,"14081":1,"14082":1,"14083":1,"14084":1,"14085":2,"14086":2,"14087":1,"14088":1,"14089":1,"14090":1,"14091":2,"14092":2,"14093":1,"14094":1,"14095":1,"14096":2,"14097":1,"14098":2,"14099":1,"14100":2,"14101":1,"14102":1,"14103":1,"14104":1,"14105":1,"14106":2,"14107":2,"14108":2,"14109":1,"14110":1,"14111":2,"14112":1,"14113":2,"14114":2,"14115":1,"14116":1,"14117":2,"14118":2,"14119":1,"14120":2,"14121":1,"14122":2,"14123":1,"14124":1,"14125":1,"14126":2,"14127":2,"14128":1,"14129":1,"14130":1,"14131":1,"14132":2,"14133":1,"14134":1,"14135":2,"14136":2,"14137":2,"14138":2,"14139":1,"14140":2,"14141":1,"14142":2,"14143":2,"14144":2,"14145":2,"14146":1,"14147":2,"14148":1,"14149":1,"14150":2,"14151":1,"14152":2,"14153":2,"14154":1,"14155":2,"14156":1,"14157":1,"14158":1,"14159":2,"14160":1,"14161":2,"14162":1,"14163":1,"14164":2,"14165":2,"14166":1,"14167":1,"14168":1,"14169":2,"14170":2,"14171":2,"14172":1,"14173":1,"14174":1,"14175":1,"14176":1,"14177":1,"14178":2,"14179":1,"14180":2,"14181":1,"14182":2,"14183":2,"14184":1,"14185":2,"14186":1,"14187":1,"14188":2,"14189":1,"14190":1,"14191":1,"14192":2,"14193":1,"14194":1,"14195":1,"14196":1,"14197":2,"14198":1,"14199":2,"14200":2,"14201":2,"14202":1,"14203":1,"14204":1,"14205":2,"14206":1,"14207":2,"14208":1,"14209":1,"14210":1,"14211":1,"14212":1,"14213":1,"14214":2,"14215":2,"14216":1,"14217":2,"14218":2,"14219":2,"14220":2,"14221":1,"14222":1,"14223":1,"14224":1,"14225":2,"14226":1,"14227":2,"14228":2,"14229":1,"14230":1,"14231":1,"14232":1,"14233":2,"14234":1,"14235":2,"14236":1,"14237":1,"14238":2,"14239":1,"14240":2,"14241":2,"14242":2,"14243":2,"14244":2,"14245":2,"14246":1,"14247":1,"14248":2,"14249":2,"14250":2,"14251":2,"14252":2,"14253":2,"14254":2,"14255":2,"14256":2,"14257":2,"14258":2,"14259":2,"14260":2,"14261":2,"14262":2,"14263":2,"14264":1,"14265":2,"14266":1,"14267":2,"14268":2,"14269":2,"14270":2,"14271":1,"14272":1,"14273":2,"14274":2,"14275":2,"14276":2,"14277":2,"14278":1,"14279":1,"14280":1,"14281":2,"14282":1,"14283":2,"14284":1,"14285":1,"14286":2,"14287":2,"14288":1,"14289":1,"14290":2,"14291":1,"14292":2,"14293":1,"14294":1,"14295":2,"14296":1,"14297":1,"14298":1,"14299":2,"14300":2,"14301":2,"14302":2,"14303":2,"14304":1,"14305":2,"14306":1,"14307":1,"14308":1,"14309":2,"14310":1,"14311":1,"14312":1,"14313":1,"14314":1,"14315":2,"14316":2,"14317":2,"14318":2,"14319":2,"14320":2,"14321":2,"14322":1,"14323":1,"14324":1,"14325":1,"14326":2,"14327":1,"14328":1,"14329":1,"14330":1,"14331":2,"14332":2,"14333":2,"14334":2,"14335":2,"14336":2,"14337":2,"14338":2,"14339":1,"14340":1,"14341":1,"14342":2,"14343":1,"14344":1,"14345":2,"14346":2,"14347":2,"14348":2,"14349":1,"14350":1,"14351":2,"14352":1,"14353":1,"14354":2,"14355":2,"14356":2,"14357":2,"14358":2,"14359":2,"14360":2,"14361":1,"14362":1,"14363":1,"14364":1,"14365":2,"14366":1,"14367":1,"14368":2,"14369":2,"14370":1,"14371":2,"14372":1,"14373":1,"14374":1,"14375":2,"14376":2,"14377":1,"14378":2,"14379":1,"14380":2,"14381":2,"14382":2,"14383":1,"14384":1,"14385":1,"14386":2,"14387":2,"14388":1,"14389":2,"14390":1,"14391":1,"14392":2,"14393":1,"14394":2,"14395":1,"14396":1,"14397":1,"14398":2,"14399":1,"14400":2,"14401":1,"14402":1,"14403":2,"14404":1,"14405":2,"14406":2,"14407":2,"14408":1,"14409":1,"14410":1,"14411":1,"14412":2,"14413":2,"14414":2,"14415":1,"14416":1,"14417":2,"14418":1,"14419":1,"14420":2,"14421":1,"14422":2,"14423":2,"14424":1,"14425":1,"14426":1,"14427":1,"14428":1,"14429":2,"14430":2,"14431":1,"14432":2,"14433":2,"14434":1,"14435":1,"14436":1,"14437":1,"14438":1,"14439":1,"14440":2,"14441":1,"14442":2,"14443":2,"14444":2,"14445":2,"14446":1,"14447":2,"14448":2,"14449":2,"14450":2,"14451":1,"14452":1,"14453":1,"14454":2,"14455":2,"14456":1,"14457":1,"14458":2,"14459":1,"14460":1,"14461":2,"14462":2,"14463":1,"14464":2,"14465":2,"14466":1,"14467":1,"14468":2,"14469":1,"14470":2,"14471":2,"14472":1,"14473":2,"14474":1,"14475":1,"14476":2,"14477":2,"14478":2,"14479":2,"14480":1,"14481":2,"14482":1,"14483":1,"14484":2,"14485":2,"14486":1,"14487":2,"14488":1,"14489":2,"14490":1,"14491":1,"14492":2,"14493":2,"14494":2,"14495":1,"14496":2,"14497":2,"14498":2,"14499":1,"14500":2,"14501":2,"14502":1,"14503":2,"14504":2,"14505":1,"14506":1,"14507":2,"14508":1,"14509":1,"14510":2,"14511":1,"14512":1,"14513":1,"14514":1,"14515":1,"14516":1,"14517":1,"14518":1,"14519":1,"14520":2,"14521":2,"14522":1,"14523":2,"14524":2,"14525":2,"14526":2,"14527":2,"14528":2,"14529":1,"14530":2,"14531":2,"14532":2,"14533":1,"14534":2,"14535":2,"14536":2,"14537":1,"14538":2,"14539":1,"14540":1,"14541":2,"14542":2,"14543":1,"14544":1,"14545":2,"14546":1,"14547":2,"14548":1,"14549":1,"14550":2,"14551":1,"14552":2,"14553":1,"14554":2,"14555":1,"14556":2,"14557":1,"14558":1,"14559":1,"14560":1,"14561":1,"14562":1,"14563":1,"14564":1,"14565":2,"14566":2,"14567":1,"14568":1,"14569":2,"14570":2,"14571":1,"14572":2,"14573":1,"14574":1,"14575":2,"14576":2,"14577":2,"14578":2,"14579":2,"14580":1,"14581":2,"14582":1,"14583":1,"14584":2,"14585":2,"14586":2,"14587":1,"14588":1,"14589":1,"14590":2,"14591":1,"14592":1,"14593":2,"14594":2,"14595":1,"14596":1,"14597":1,"14598":2,"14599":2,"14600":2,"14601":2,"14602":2,"14603":1,"14604":1,"14605":1,"14606":1,"14607":1,"14608":1,"14609":1,"14610":2,"14611":2,"14612":2,"14613":1,"14614":2,"14615":2,"14616":1,"14617":1,"14618":2,"14619":2,"14620":2,"14621":2,"14622":1,"14623":2,"14624":2,"14625":2,"14626":2,"14627":2,"14628":1,"14629":1,"14630":2,"14631":1,"14632":1,"14633":1,"14634":2,"14635":2,"14636":2,"14637":2,"14638":2,"14639":2,"14640":1,"14641":2,"14642":1,"14643":1,"14644":2,"14645":1,"14646":1,"14647":1,"14648":1,"14649":2,"14650":2,"14651":1,"14652":2,"14653":1,"14654":2,"14655":2,"14656":2,"14657":1,"14658":2,"14659":1,"14660":2,"14661":1,"14662":1,"14663":2,"14664":1,"14665":1,"14666":2,"14667":1,"14668":1,"14669":2,"14670":1,"14671":1,"14672":1,"14673":1,"14674":1,"14675":2,"14676":2,"14677":2,"14678":2,"14679":1,"14680":2,"14681":1,"14682":1,"14683":1,"14684":2,"14685":1,"14686":1,"14687":1,"14688":2,"14689":2,"14690":1,"14691":2,"14692":1,"14693":2,"14694":2,"14695":2,"14696":1,"14697":1,"14698":2,"14699":1,"14700":1,"14701":1,"14702":1,"14703":1,"14704":1,"14705":2,"14706":2,"14707":2,"14708":2,"14709":1,"14710":2,"14711":1,"14712":1,"14713":1,"14714":2,"14715":1,"14716":2,"14717":2,"14718":2,"14719":2,"14720":2,"14721":1,"14722":1,"14723":1,"14724":1,"14725":1,"14726":2,"14727":2,"14728":1,"14729":2,"14730":2,"14731":2,"14732":1,"14733":1,"14734":2,"14735":1,"14736":2,"14737":2,"14738":2,"14739":2,"14740":2,"14741":1,"14742":1,"14743":1,"14744":1,"14745":1,"14746":1,"14747":1,"14748":1,"14749":2,"14750":2,"14751":1,"14752":2,"14753":2,"14754":2,"14755":2,"14756":2,"14757":1,"14758":1,"14759":1,"14760":2,"14761":1,"14762":2,"14763":1,"14764":1,"14765":2,"14766":2,"14767":2,"14768":2,"14769":2,"14770":1,"14771":2,"14772":1,"14773":2,"14774":2,"14775":2,"14776":2,"14777":1,"14778":2,"14779":1,"14780":1,"14781":2,"14782":2,"14783":2,"14784":1,"14785":2,"14786":2,"14787":2,"14788":1,"14789":2,"14790":2,"14791":1,"14792":2,"14793":1,"14794":2,"14795":1,"14796":1,"14797":1,"14798":2,"14799":2,"14800":2,"14801":2,"14802":1,"14803":2,"14804":2,"14805":1,"14806":2,"14807":1,"14808":2,"14809":1,"14810":2,"14811":1,"14812":1,"14813":2,"14814":2,"14815":1,"14816":1,"14817":2,"14818":1,"14819":1,"14820":2,"14821":2,"14822":2,"14823":1,"14824":1,"14825":2,"14826":1,"14827":1,"14828":1,"14829":1,"14830":2,"14831":1,"14832":1,"14833":2,"14834":1,"14835":1,"14836":2,"14837":1,"14838":1,"14839":2,"14840":1,"14841":2,"14842":1,"14843":1,"14844":1,"14845":1,"14846":1,"14847":1,"14848":2,"14849":2,"14850":2,"14851":1,"14852":2,"14853":1,"14854":1,"14855":1,"14856":2,"14857":1,"14858":1,"14859":1,"14860":1,"14861":1,"14862":1,"14863":2,"14864":1,"14865":1,"14866":2,"14867":2,"14868":1,"14869":2,"14870":1,"14871":2,"14872":2,"14873":1,"14874":2,"14875":1,"14876":1,"14877":1,"14878":2,"14879":1,"14880":2,"14881":2,"14882":1,"14883":1,"14884":2,"14885":2,"14886":1,"14887":1,"14888":2,"14889":1,"14890":2,"14891":2,"14892":1,"14893":1,"14894":2,"14895":1,"14896":2,"14897":1,"14898":2,"14899":2,"14900":2,"14901":1,"14902":1,"14903":2,"14904":1,"14905":2,"14906":1,"14907":2,"14908":2,"14909":1,"14910":1,"14911":2,"14912":1,"14913":2,"14914":1,"14915":1,"14916":1,"14917":2,"14918":1,"14919":1,"14920":1,"14921":1,"14922":1,"14923":1,"14924":1,"14925":1,"14926":2,"14927":1,"14928":1,"14929":2,"14930":2,"14931":1,"14932":1,"14933":1,"14934":2,"14935":2,"14936":1,"14937":2,"14938":2,"14939":2,"14940":1,"14941":2,"14942":2,"14943":1,"14944":2,"14945":2,"14946":2,"14947":1,"14948":2,"14949":1,"14950":2,"14951":2,"14952":2,"14953":2,"14954":1,"14955":1,"14956":1,"14957":1,"14958":2,"14959":1,"14960":2,"14961":1,"14962":1,"14963":2,"14964":2,"14965":1,"14966":1,"14967":2,"14968":1,"14969":2,"14970":2,"14971":1,"14972":1,"14973":1,"14974":2,"14975":1,"14976":1,"14977":2,"14978":2,"14979":2,"14980":2,"14981":2,"14982":1,"14983":2,"14984":2,"14985":2,"14986":2,"14987":2,"14988":2,"14989":2,"14990":2,"14991":2,"14992":2,"14993":1,"14994":1,"14995":2,"14996":2,"14997":1,"14998":2,"14999":2,"15000":2,"15001":2,"15002":2,"15003":1,"15004":2,"15005":2,"15006":1,"15007":2,"15008":1,"15009":2,"15010":2,"15011":2,"15012":2,"15013":2,"15014":2,"15015":1,"15016":2,"15017":2,"15018":1,"15019":1,"15020":1,"15021":1,"15022":1,"15023":2,"15024":1,"15025":1,"15026":2,"15027":1,"15028":1,"15029":1,"15030":2,"15031":1,"15032":1,"15033":1,"15034":1,"15035":1,"15036":2,"15037":1,"15038":2,"15039":2,"15040":2,"15041":1,"15042":1,"15043":2,"15044":1,"15045":2,"15046":2,"15047":2,"15048":2,"15049":2,"15050":2,"15051":2,"15052":2,"15053":2,"15054":1,"15055":1,"15056":1,"15057":1,"15058":2,"15059":1,"15060":2,"15061":2,"15062":1,"15063":2,"15064":2,"15065":2,"15066":2,"15067":2,"15068":1,"15069":2,"15070":2,"15071":1,"15072":1,"15073":1,"15074":2,"15075":2,"15076":2,"15077":1,"15078":1,"15079":2,"15080":2,"15081":2,"15082":1,"15083":2,"15084":1,"15085":1,"15086":2,"15087":1,"15088":1,"15089":1,"15090":2,"15091":2,"15092":1,"15093":1,"15094":2,"15095":2,"15096":2,"15097":2,"15098":1,"15099":2,"15100":1,"15101":2,"15102":2,"15103":2,"15104":1,"15105":1,"15106":2,"15107":1,"15108":2,"15109":1,"15110":1,"15111":1,"15112":2,"15113":1,"15114":1,"15115":1,"15116":2,"15117":2,"15118":1,"15119":2,"15120":2,"15121":2,"15122":1,"15123":1,"15124":2,"15125":2,"15126":1,"15127":2,"15128":2,"15129":2,"15130":2,"15131":1,"15132":1,"15133":2,"15134":2,"15135":1,"15136":2,"15137":2,"15138":1,"15139":2,"15140":1,"15141":1,"15142":1,"15143":1,"15144":1,"15145":2,"15146":1,"15147":2,"15148":2,"15149":2,"15150":2,"15151":1,"15152":2,"15153":1,"15154":2,"15155":1,"15156":1,"15157":1,"15158":2,"15159":2,"15160":1,"15161":1,"15162":1,"15163":1,"15164":1,"15165":2,"15166":1,"15167":1,"15168":2,"15169":1,"15170":2,"15171":1,"15172":1,"15173":2,"15174":2,"15175":2,"15176":2,"15177":1,"15178":2,"15179":2,"15180":1,"15181":1,"15182":2,"15183":2,"15184":2,"15185":2,"15186":2,"15187":2,"15188":2,"15189":1,"15190":2,"15191":1,"15192":1,"15193":1,"15194":1,"15195":1,"15196":1,"15197":1,"15198":2,"15199":1,"15200":1,"15201":1,"15202":2,"15203":2,"15204":1,"15205":2,"15206":2,"15207":1,"15208":2,"15209":2,"15210":1,"15211":1,"15212":1,"15213":1,"15214":1,"15215":1,"15216":1,"15217":2,"15218":2,"15219":1,"15220":1,"15221":2,"15222":2,"15223":2,"15224":1,"15225":2,"15226":2,"15227":2,"15228":1,"15229":2,"15230":1,"15231":2,"15232":2,"15233":1,"15234":1,"15235":1,"15236":1,"15237":1,"15238":2,"15239":1,"15240":1,"15241":1,"15242":1,"15243":2,"15244":1,"15245":1,"15246":2,"15247":2,"15248":2,"15249":2,"15250":1,"15251":2,"15252":2,"15253":2,"15254":1,"15255":1,"15256":2,"15257":2,"15258":2,"15259":2,"15260":2,"15261":2,"15262":2,"15263":2,"15264":2,"15265":1,"15266":1,"15267":1,"15268":1,"15269":2,"15270":2,"15271":1,"15272":1,"15273":2,"15274":2,"15275":2,"15276":1,"15277":1,"15278":2,"15279":1,"15280":1,"15281":1,"15282":1,"15283":2,"15284":2,"15285":1,"15286":2,"15287":2,"15288":2,"15289":1,"15290":2,"15291":2,"15292":2,"15293":1,"15294":2,"15295":2,"15296":2,"15297":1,"15298":1,"15299":2,"15300":1,"15301":2,"15302":1,"15303":2,"15304":1,"15305":2,"15306":2,"15307":2,"15308":1,"15309":1,"15310":2,"15311":1,"15312":1,"15313":2,"15314":1,"15315":2,"15316":2,"15317":2,"15318":1,"15319":1,"15320":2,"15321":2,"15322":2,"15323":2,"15324":1,"15325":2,"15326":1,"15327":1,"15328":1,"15329":2,"15330":2,"15331":1,"15332":2,"15333":1,"15334":2,"15335":1,"15336":2,"15337":2,"15338":1,"15339":1,"15340":1,"15341":1,"15342":1,"15343":2,"15344":2,"15345":2,"15346":1,"15347":1,"15348":1,"15349":1,"15350":2,"15351":1,"15352":2,"15353":2,"15354":2,"15355":2,"15356":2,"15357":1,"15358":2,"15359":1,"15360":1,"15361":2,"15362":1,"15363":2,"15364":1,"15365":2,"15366":1,"15367":2,"15368":1,"15369":1,"15370":1,"15371":1,"15372":1,"15373":1,"15374":1,"15375":1,"15376":1,"15377":2,"15378":2,"15379":1,"15380":1,"15381":2,"15382":1,"15383":1,"15384":2,"15385":2,"15386":2,"15387":1,"15388":1,"15389":1,"15390":1,"15391":2,"15392":1,"15393":1,"15394":2,"15395":2,"15396":2,"15397":1,"15398":2,"15399":2,"15400":2,"15401":1,"15402":1,"15403":2,"15404":1,"15405":2,"15406":1,"15407":1,"15408":2,"15409":2,"15410":2,"15411":2,"15412":2,"15413":2,"15414":2,"15415":1,"15416":2,"15417":2,"15418":1,"15419":1,"15420":1,"15421":2,"15422":1,"15423":2,"15424":1,"15425":2,"15426":2,"15427":1,"15428":2,"15429":1,"15430":1,"15431":1,"15432":2,"15433":2,"15434":2,"15435":2,"15436":1,"15437":2,"15438":2,"15439":1,"15440":1,"15441":1,"15442":2,"15443":1,"15444":1,"15445":1,"15446":2,"15447":1,"15448":2,"15449":1,"15450":2,"15451":1,"15452":1,"15453":2,"15454":1,"15455":2,"15456":2,"15457":1,"15458":1,"15459":1,"15460":2,"15461":2,"15462":1,"15463":2,"15464":2,"15465":1,"15466":1,"15467":2,"15468":2,"15469":1,"15470":2,"15471":1,"15472":1,"15473":1,"15474":1,"15475":1,"15476":1,"15477":2,"15478":1,"15479":2,"15480":1,"15481":1,"15482":1,"15483":2,"15484":2,"15485":2,"15486":2,"15487":2,"15488":2,"15489":2,"15490":1,"15491":1,"15492":2,"15493":2,"15494":2,"15495":2,"15496":2,"15497":2,"15498":1,"15499":1,"15500":1,"15501":2,"15502":1,"15503":2,"15504":2,"15505":1,"15506":1,"15507":2,"15508":1,"15509":2,"15510":2,"15511":1,"15512":2,"15513":2,"15514":1,"15515":1,"15516":2,"15517":1,"15518":2,"15519":2,"15520":1,"15521":1,"15522":1,"15523":1,"15524":1,"15525":2,"15526":1,"15527":1,"15528":2,"15529":1,"15530":2,"15531":2,"15532":2,"15533":1,"15534":2,"15535":2,"15536":2,"15537":2,"15538":1,"15539":2,"15540":2,"15541":1,"15542":2,"15543":2,"15544":1,"15545":2,"15546":1,"15547":2,"15548":2,"15549":1,"15550":2,"15551":1,"15552":1,"15553":1,"15554":2,"15555":2,"15556":2,"15557":1,"15558":1,"15559":1,"15560":1,"15561":2,"15562":2,"15563":1,"15564":2,"15565":1,"15566":1,"15567":1,"15568":2,"15569":2,"15570":1,"15571":1,"15572":1,"15573":2,"15574":2,"15575":2,"15576":2,"15577":2,"15578":2,"15579":1,"15580":1,"15581":2,"15582":2,"15583":2,"15584":2,"15585":2,"15586":2,"15587":2,"15588":2,"15589":1,"15590":1,"15591":1,"15592":1,"15593":2,"15594":1,"15595":2,"15596":2,"15597":1,"15598":1,"15599":2,"15600":2,"15601":1,"15602":2,"15603":1,"15604":1,"15605":1,"15606":2,"15607":2,"15608":1,"15609":2,"15610":2,"15611":1,"15612":2,"15613":1,"15614":1,"15615":1,"15616":2,"15617":1,"15618":2,"15619":1,"15620":2,"15621":2,"15622":2,"15623":1,"15624":1,"15625":1,"15626":2,"15627":2,"15628":2,"15629":2,"15630":1,"15631":1,"15632":2,"15633":2,"15634":2,"15635":1,"15636":1,"15637":1,"15638":1,"15639":1,"15640":2,"15641":1,"15642":1,"15643":1,"15644":2,"15645":1,"15646":1,"15647":1,"15648":1,"15649":1,"15650":2,"15651":1,"15652":2,"15653":2,"15654":1,"15655":1,"15656":2,"15657":2,"15658":2,"15659":1,"15660":1,"15661":2,"15662":2,"15663":2,"15664":1,"15665":2,"15666":1,"15667":2,"15668":1,"15669":1,"15670":2,"15671":1,"15672":1,"15673":2,"15674":1,"15675":1,"15676":1,"15677":2,"15678":2,"15679":2,"15680":1,"15681":2,"15682":2,"15683":1,"15684":1,"15685":1,"15686":1,"15687":1,"15688":1,"15689":2,"15690":2,"15691":1,"15692":2,"15693":2,"15694":1,"15695":2,"15696":1,"15697":2,"15698":1,"15699":2,"15700":1,"15701":2,"15702":2,"15703":2,"15704":1,"15705":2,"15706":2,"15707":2,"15708":2,"15709":2,"15710":2,"15711":1,"15712":2,"15713":2,"15714":2,"15715":1,"15716":1,"15717":2,"15718":1,"15719":2,"15720":1,"15721":1,"15722":1,"15723":2,"15724":1,"15725":2,"15726":1,"15727":1,"15728":1,"15729":2,"15730":2,"15731":2,"15732":2,"15733":2,"15734":1,"15735":1,"15736":2,"15737":2,"15738":2,"15739":1,"15740":2,"15741":2,"15742":2,"15743":1,"15744":1,"15745":2,"15746":1,"15747":2,"15748":1,"15749":2,"15750":2,"15751":1,"15752":1,"15753":2,"15754":1,"15755":1,"15756":2,"15757":1,"15758":2,"15759":1,"15760":1,"15761":2,"15762":1,"15763":1,"15764":2,"15765":2,"15766":1,"15767":2,"15768":1,"15769":2,"15770":1,"15771":2,"15772":2,"15773":1,"15774":1,"15775":1,"15776":1,"15777":2,"15778":1,"15779":1,"15780":2,"15781":1,"15782":1,"15783":2,"15784":2,"15785":2,"15786":1,"15787":1,"15788":2,"15789":2,"15790":1,"15791":1,"15792":1,"15793":1,"15794":2,"15795":1,"15796":2,"15797":2,"15798":1,"15799":1,"15800":2,"15801":2,"15802":1,"15803":1,"15804":2,"15805":2,"15806":1,"15807":1,"15808":1,"15809":1,"15810":2,"15811":2,"15812":2,"15813":1,"15814":1,"15815":2,"15816":1,"15817":1,"15818":2,"15819":1,"15820":1,"15821":1,"15822":1,"15823":2,"15824":2,"15825":1,"15826":2,"15827":1,"15828":2,"15829":2,"15830":1,"15831":1,"15832":1,"15833":1,"15834":1,"15835":1,"15836":2,"15837":2,"15838":1,"15839":1,"15840":1,"15841":1,"15842":2,"15843":2,"15844":1,"15845":2,"15846":1,"15847":2,"15848":2,"15849":2,"15850":1,"15851":1,"15852":2,"15853":1,"15854":1,"15855":1,"15856":2,"15857":2,"15858":1,"15859":2,"15860":1,"15861":2,"15862":2,"15863":2,"15864":1,"15865":2,"15866":1,"15867":2,"15868":1,"15869":1,"15870":1,"15871":2,"15872":2,"15873":2,"15874":2,"15875":1,"15876":1,"15877":2,"15878":1,"15879":2,"15880":1,"15881":2,"15882":2,"15883":1,"15884":1,"15885":2,"15886":2,"15887":1,"15888":2,"15889":1,"15890":2,"15891":2,"15892":1,"15893":2,"15894":2,"15895":2,"15896":2,"15897":1,"15898":1,"15899":1,"15900":2,"15901":2,"15902":1,"15903":2,"15904":2,"15905":2,"15906":2,"15907":1,"15908":2,"15909":1,"15910":2,"15911":2,"15912":1,"15913":2,"15914":1,"15915":2,"15916":2,"15917":2,"15918":2,"15919":2,"15920":2,"15921":2,"15922":1,"15923":2,"15924":1,"15925":2,"15926":2,"15927":1,"15928":1,"15929":1,"15930":2,"15931":2,"15932":1,"15933":2,"15934":2,"15935":1,"15936":1,"15937":2,"15938":1,"15939":1,"15940":1,"15941":2,"15942":2,"15943":1,"15944":2,"15945":2,"15946":1,"15947":2,"15948":1,"15949":2,"15950":2,"15951":1,"15952":2,"15953":1,"15954":1,"15955":2,"15956":2,"15957":2,"15958":2,"15959":2,"15960":2,"15961":2,"15962":1,"15963":1,"15964":1,"15965":2,"15966":2,"15967":2,"15968":1,"15969":1,"15970":2,"15971":2,"15972":2,"15973":2,"15974":1,"15975":2,"15976":2,"15977":2,"15978":1,"15979":2,"15980":1,"15981":2,"15982":1,"15983":1,"15984":2,"15985":1,"15986":1,"15987":2,"15988":2,"15989":2,"15990":2,"15991":2,"15992":1,"15993":2,"15994":2,"15995":1,"15996":1,"15997":1,"15998":1,"15999":2,"16000":1,"16001":2,"16002":1,"16003":2,"16004":1,"16005":1,"16006":1,"16007":2,"16008":2,"16009":2,"16010":2,"16011":1,"16012":1,"16013":2,"16014":1,"16015":2,"16016":1,"16017":1,"16018":2,"16019":2,"16020":1,"16021":1,"16022":1,"16023":1,"16024":1,"16025":1,"16026":1,"16027":2,"16028":1,"16029":2,"16030":2,"16031":1,"16032":2,"16033":1,"16034":2,"16035":1,"16036":2,"16037":1,"16038":1,"16039":2,"16040":2,"16041":2,"16042":2,"16043":1,"16044":1,"16045":2,"16046":2,"16047":1,"16048":1,"16049":2,"16050":1,"16051":1,"16052":2,"16053":1,"16054":1,"16055":1,"16056":1,"16057":2,"16058":1,"16059":1,"16060":1,"16061":2,"16062":1,"16063":2,"16064":2,"16065":1,"16066":1,"16067":2,"16068":1,"16069":1,"16070":1,"16071":2,"16072":2,"16073":1,"16074":1,"16075":2,"16076":2,"16077":1,"16078":1,"16079":1,"16080":2,"16081":2,"16082":2,"16083":2,"16084":1,"16085":1,"16086":2,"16087":2,"16088":1,"16089":1,"16090":2,"16091":1,"16092":2,"16093":2,"16094":2,"16095":2,"16096":1,"16097":2,"16098":2,"16099":1,"16100":2,"16101":1,"16102":1,"16103":2,"16104":2,"16105":2,"16106":1,"16107":2,"16108":2,"16109":1,"16110":2,"16111":2,"16112":2,"16113":2,"16114":2,"16115":2,"16116":2,"16117":2,"16118":1,"16119":1,"16120":2,"16121":1,"16122":2,"16123":1,"16124":2,"16125":2,"16126":1,"16127":1,"16128":1,"16129":1,"16130":2,"16131":1,"16132":2,"16133":2,"16134":1,"16135":1,"16136":1,"16137":2,"16138":1,"16139":1,"16140":2,"16141":2,"16142":1,"16143":1,"16144":1,"16145":2,"16146":2,"16147":2,"16148":2,"16149":2,"16150":1,"16151":2,"16152":1,"16153":2,"16154":1,"16155":1,"16156":2,"16157":2,"16158":1,"16159":1,"16160":2,"16161":2,"16162":2,"16163":2,"16164":2,"16165":1,"16166":1,"16167":2,"16168":1,"16169":1,"16170":2,"16171":1,"16172":2,"16173":1,"16174":1,"16175":1,"16176":2,"16177":1,"16178":1,"16179":2,"16180":1,"16181":2,"16182":2,"16183":2,"16184":2,"16185":2,"16186":1,"16187":1,"16188":2,"16189":1,"16190":2,"16191":2,"16192":2,"16193":2,"16194":1,"16195":1,"16196":1,"16197":2,"16198":1,"16199":1,"16200":2,"16201":2,"16202":2,"16203":1,"16204":1,"16205":1,"16206":2,"16207":1,"16208":2,"16209":1,"16210":2,"16211":1,"16212":2,"16213":2,"16214":1,"16215":1,"16216":1,"16217":1,"16218":1,"16219":1,"16220":1,"16221":1,"16222":2,"16223":2,"16224":2,"16225":1,"16226":2,"16227":2,"16228":1,"16229":1,"16230":2,"16231":1,"16232":2,"16233":2,"16234":1,"16235":1,"16236":2,"16237":2,"16238":1,"16239":2,"16240":1,"16241":2,"16242":1,"16243":1,"16244":1,"16245":2,"16246":2,"16247":2,"16248":2,"16249":1,"16250":1,"16251":2,"16252":1,"16253":2,"16254":2,"16255":2,"16256":1,"16257":2,"16258":1,"16259":1,"16260":1,"16261":2,"16262":2,"16263":2,"16264":1,"16265":2,"16266":2,"16267":2,"16268":2,"16269":1,"16270":2,"16271":1,"16272":2,"16273":1,"16274":2,"16275":1,"16276":2,"16277":1,"16278":1,"16279":2,"16280":1,"16281":2,"16282":1,"16283":1,"16284":2,"16285":2,"16286":1,"16287":2,"16288":1,"16289":1,"16290":1,"16291":1,"16292":2,"16293":1,"16294":1,"16295":2,"16296":2,"16297":1,"16298":1,"16299":2,"16300":2,"16301":2,"16302":2,"16303":1,"16304":2,"16305":2,"16306":2,"16307":1,"16308":2,"16309":1,"16310":1,"16311":1,"16312":2,"16313":1,"16314":1,"16315":1,"16316":1,"16317":2,"16318":2,"16319":1,"16320":1,"16321":1,"16322":1,"16323":1,"16324":2,"16325":2,"16326":2,"16327":2,"16328":2,"16329":1,"16330":2,"16331":2,"16332":1,"16333":1,"16334":2,"16335":2,"16336":2,"16337":2,"16338":2,"16339":1,"16340":1,"16341":2,"16342":1,"16343":1,"16344":2,"16345":1,"16346":2,"16347":1,"16348":1,"16349":1,"16350":1,"16351":1,"16352":1,"16353":2,"16354":2,"16355":2,"16356":2,"16357":1,"16358":2,"16359":2,"16360":2,"16361":2,"16362":1,"16363":2,"16364":2,"16365":1,"16366":1,"16367":2,"16368":2,"16369":1,"16370":2,"16371":2,"16372":2,"16373":2,"16374":2,"16375":2,"16376":1,"16377":1,"16378":2,"16379":2,"16380":2,"16381":2,"16382":2,"16383":1,"16384":1,"16385":1,"16386":1,"16387":2,"16388":2,"16389":1,"16390":2,"16391":1,"16392":2,"16393":2,"16394":2,"16395":2,"16396":1,"16397":2,"16398":2,"16399":2,"16400":2,"16401":2,"16402":1,"16403":2,"16404":2,"16405":1,"16406":2,"16407":1,"16408":2,"16409":1,"16410":2,"16411":1,"16412":1,"16413":1,"16414":1,"16415":2,"16416":1,"16417":2,"16418":2,"16419":2,"16420":2,"16421":2,"16422":1,"16423":1,"16424":2,"16425":1,"16426":2,"16427":1,"16428":2,"16429":1,"16430":1,"16431":1,"16432":1,"16433":2,"16434":2,"16435":1,"16436":1,"16437":2,"16438":1,"16439":2,"16440":2,"16441":1,"16442":2,"16443":1,"16444":1,"16445":1,"16446":2,"16447":1,"16448":2,"16449":2,"16450":1,"16451":2,"16452":2,"16453":2,"16454":1,"16455":1,"16456":1,"16457":1,"16458":1,"16459":1,"16460":1,"16461":1,"16462":1,"16463":1,"16464":1,"16465":1,"16466":1,"16467":2,"16468":1,"16469":2,"16470":2,"16471":1,"16472":1,"16473":1,"16474":2,"16475":1,"16476":1,"16477":1,"16478":1,"16479":1,"16480":2,"16481":2,"16482":1,"16483":1,"16484":1,"16485":1,"16486":2,"16487":2,"16488":2,"16489":1,"16490":1,"16491":1,"16492":1,"16493":1,"16494":2,"16495":1,"16496":1,"16497":1,"16498":1,"16499":1,"16500":2,"16501":1,"16502":1,"16503":1,"16504":1,"16505":1,"16506":2,"16507":2,"16508":2,"16509":1,"16510":2,"16511":2,"16512":2,"16513":2,"16514":2,"16515":2,"16516":2,"16517":2,"16518":1,"16519":2,"16520":2,"16521":2,"16522":2,"16523":1,"16524":2,"16525":1,"16526":2,"16527":1,"16528":1,"16529":1,"16530":1,"16531":1,"16532":2,"16533":2,"16534":2,"16535":2,"16536":1,"16537":2,"16538":2,"16539":1,"16540":2,"16541":2,"16542":2,"16543":1,"16544":1,"16545":2,"16546":2,"16547":2,"16548":1,"16549":1,"16550":1,"16551":2,"16552":1,"16553":2,"16554":2,"16555":1,"16556":2,"16557":2,"16558":1,"16559":1,"16560":2,"16561":1,"16562":1,"16563":2,"16564":1,"16565":1,"16566":2,"16567":1,"16568":1,"16569":1,"16570":2,"16571":2,"16572":1,"16573":2,"16574":1,"16575":1,"16576":1,"16577":1,"16578":1,"16579":2,"16580":1,"16581":1,"16582":2,"16583":2,"16584":1,"16585":2,"16586":2,"16587":2,"16588":2,"16589":2,"16590":2,"16591":1,"16592":1,"16593":2,"16594":1,"16595":2,"16596":2,"16597":2,"16598":2,"16599":2,"16600":1,"16601":2,"16602":1,"16603":1,"16604":2,"16605":1,"16606":1,"16607":1,"16608":1,"16609":1,"16610":1,"16611":2,"16612":2,"16613":1,"16614":1,"16615":2,"16616":2,"16617":1,"16618":1,"16619":2,"16620":2,"16621":1,"16622":1,"16623":1,"16624":2,"16625":2,"16626":2,"16627":2,"16628":1,"16629":2,"16630":2,"16631":1,"16632":1,"16633":2,"16634":2,"16635":1,"16636":2,"16637":1,"16638":2,"16639":1,"16640":2,"16641":1,"16642":1,"16643":1,"16644":1,"16645":1,"16646":1,"16647":2,"16648":1,"16649":1,"16650":1,"16651":2,"16652":1,"16653":2,"16654":2,"16655":1,"16656":2,"16657":2,"16658":1,"16659":2,"16660":2,"16661":1,"16662":2,"16663":2,"16664":2,"16665":2,"16666":1,"16667":1,"16668":1,"16669":1,"16670":1,"16671":2,"16672":1,"16673":2,"16674":2,"16675":2,"16676":2,"16677":2,"16678":2,"16679":2,"16680":1,"16681":2,"16682":1,"16683":2,"16684":1,"16685":2,"16686":1,"16687":2,"16688":2,"16689":2,"16690":2,"16691":2,"16692":1,"16693":1,"16694":1,"16695":2,"16696":2,"16697":1,"16698":2,"16699":1,"16700":1,"16701":1,"16702":2,"16703":2,"16704":1,"16705":2,"16706":1,"16707":2,"16708":1,"16709":2,"16710":2,"16711":2,"16712":1,"16713":1,"16714":1,"16715":2,"16716":2,"16717":1,"16718":2,"16719":1,"16720":2,"16721":2,"16722":1,"16723":1,"16724":2,"16725":1,"16726":2,"16727":2,"16728":2,"16729":2,"16730":1,"16731":2,"16732":1,"16733":2,"16734":2,"16735":1,"16736":1,"16737":1,"16738":1,"16739":2,"16740":2,"16741":1,"16742":2,"16743":2,"16744":1,"16745":1,"16746":1,"16747":1,"16748":1,"16749":2,"16750":1,"16751":2,"16752":2,"16753":1,"16754":2,"16755":1,"16756":1,"16757":1,"16758":2,"16759":1,"16760":1,"16761":2,"16762":2,"16763":1,"16764":1,"16765":2,"16766":1,"16767":2,"16768":2,"16769":2,"16770":2,"16771":2,"16772":2,"16773":1,"16774":1,"16775":2,"16776":2,"16777":2,"16778":2,"16779":2,"16780":2,"16781":2,"16782":1,"16783":1,"16784":1,"16785":2,"16786":1,"16787":1,"16788":2,"16789":2,"16790":1,"16791":2,"16792":1,"16793":2,"16794":1,"16795":1,"16796":1,"16797":1,"16798":2,"16799":2,"16800":1,"16801":1,"16802":1,"16803":2,"16804":2,"16805":2,"16806":2,"16807":1,"16808":1,"16809":2,"16810":2,"16811":2,"16812":1,"16813":1,"16814":2,"16815":1,"16816":1,"16817":1,"16818":2,"16819":1,"16820":2,"16821":1,"16822":2,"16823":1,"16824":2,"16825":1,"16826":1,"16827":1,"16828":2,"16829":1,"16830":1,"16831":2,"16832":1,"16833":1,"16834":1,"16835":2,"16836":2,"16837":2,"16838":2,"16839":2,"16840":1,"16841":1,"16842":1,"16843":1,"16844":1,"16845":1,"16846":1,"16847":2,"16848":1,"16849":2,"16850":1,"16851":2,"16852":2,"16853":2,"16854":1,"16855":1,"16856":1,"16857":2,"16858":1,"16859":1,"16860":1,"16861":1,"16862":2,"16863":2,"16864":2,"16865":2,"16866":1,"16867":1,"16868":2,"16869":1,"16870":2,"16871":1,"16872":2,"16873":2,"16874":1,"16875":2,"16876":2,"16877":1,"16878":1,"16879":2,"16880":2,"16881":2,"16882":1,"16883":2,"16884":2,"16885":1,"16886":2,"16887":1,"16888":1,"16889":1,"16890":1,"16891":2,"16892":2,"16893":1,"16894":2,"16895":1,"16896":1,"16897":2,"16898":2,"16899":2,"16900":1,"16901":1,"16902":2,"16903":1,"16904":1,"16905":1,"16906":2,"16907":2,"16908":1,"16909":2,"16910":1,"16911":2,"16912":1,"16913":1,"16914":1,"16915":1,"16916":1,"16917":1,"16918":1,"16919":2,"16920":2,"16921":1,"16922":2,"16923":1,"16924":2,"16925":1,"16926":1,"16927":2,"16928":1,"16929":1,"16930":1,"16931":1,"16932":1,"16933":2,"16934":1,"16935":1,"16936":1,"16937":1,"16938":2,"16939":2,"16940":2,"16941":1,"16942":2,"16943":1,"16944":1,"16945":2,"16946":1,"16947":1,"16948":1,"16949":2,"16950":1,"16951":1,"16952":1,"16953":2,"16954":1,"16955":2,"16956":1,"16957":1,"16958":2,"16959":2,"16960":2,"16961":1,"16962":2,"16963":2,"16964":2,"16965":1,"16966":2,"16967":2,"16968":1,"16969":2,"16970":2,"16971":2,"16972":1,"16973":1,"16974":2,"16975":1,"16976":2,"16977":2,"16978":1,"16979":1,"16980":1,"16981":1,"16982":2,"16983":1,"16984":1,"16985":2,"16986":2,"16987":2,"16988":2,"16989":1,"16990":2,"16991":2,"16992":1,"16993":1,"16994":1,"16995":1,"16996":1,"16997":2,"16998":1,"16999":1,"17000":1,"17001":2,"17002":2,"17003":1,"17004":2,"17005":1,"17006":2,"17007":2,"17008":1,"17009":1,"17010":1,"17011":1,"17012":1,"17013":1,"17014":2,"17015":1,"17016":1,"17017":1,"17018":1,"17019":2,"17020":1,"17021":2,"17022":2,"17023":2,"17024":2,"17025":1,"17026":2,"17027":1,"17028":1,"17029":1,"17030":1,"17031":2,"17032":1,"17033":1,"17034":1,"17035":2,"17036":1,"17037":1,"17038":1,"17039":2,"17040":1,"17041":1,"17042":1,"17043":2,"17044":1,"17045":1,"17046":1,"17047":2,"17048":2,"17049":1,"17050":2,"17051":1,"17052":2,"17053":2,"17054":1,"17055":2,"17056":2,"17057":1,"17058":1,"17059":2,"17060":1,"17061":1,"17062":2,"17063":2,"17064":2,"17065":2,"17066":2,"17067":1,"17068":1,"17069":2,"17070":1,"17071":2,"17072":1,"17073":1,"17074":2,"17075":2,"17076":2,"17077":2,"17078":2,"17079":2,"17080":2,"17081":1,"17082":2,"17083":2,"17084":1,"17085":2,"17086":2,"17087":2,"17088":2,"17089":2,"17090":1,"17091":2,"17092":1,"17093":1,"17094":1,"17095":2,"17096":2,"17097":1,"17098":1,"17099":1,"17100":2,"17101":1,"17102":1,"17103":1,"17104":1,"17105":1,"17106":2,"17107":1,"17108":1,"17109":1,"17110":1,"17111":1,"17112":1,"17113":2,"17114":1,"17115":2,"17116":2,"17117":1,"17118":2,"17119":2,"17120":1,"17121":2,"17122":2,"17123":2,"17124":2,"17125":1,"17126":1,"17127":1,"17128":1,"17129":2,"17130":1,"17131":1,"17132":1,"17133":2,"17134":2,"17135":2,"17136":1,"17137":1,"17138":2,"17139":1,"17140":2,"17141":1,"17142":1,"17143":2,"17144":2,"17145":2,"17146":1,"17147":1,"17148":1,"17149":2,"17150":1,"17151":2,"17152":1,"17153":1,"17154":1,"17155":2,"17156":2,"17157":1,"17158":2,"17159":1,"17160":2,"17161":2,"17162":2,"17163":2,"17164":1,"17165":1,"17166":1,"17167":1,"17168":1,"17169":2,"17170":1,"17171":2,"17172":1,"17173":2,"17174":1,"17175":1,"17176":1,"17177":2,"17178":1,"17179":2,"17180":2,"17181":1,"17182":1,"17183":1,"17184":2,"17185":2,"17186":2,"17187":2,"17188":1,"17189":1,"17190":2,"17191":1,"17192":2,"17193":2,"17194":2,"17195":2,"17196":2,"17197":1,"17198":2,"17199":2,"17200":1,"17201":1,"17202":2,"17203":1,"17204":2,"17205":2,"17206":2,"17207":1,"17208":2,"17209":1,"17210":1,"17211":2,"17212":1,"17213":2,"17214":2,"17215":1,"17216":2,"17217":2,"17218":1,"17219":2,"17220":1,"17221":2,"17222":1,"17223":2,"17224":1,"17225":1,"17226":2,"17227":1,"17228":1,"17229":2,"17230":1,"17231":1,"17232":1,"17233":2,"17234":1,"17235":2,"17236":1,"17237":1,"17238":1,"17239":1,"17240":1,"17241":2,"17242":1,"17243":1,"17244":2,"17245":2,"17246":2,"17247":1,"17248":1,"17249":2,"17250":1,"17251":1,"17252":2,"17253":1,"17254":2,"17255":1,"17256":2,"17257":1,"17258":1,"17259":1,"17260":1,"17261":2,"17262":1,"17263":2,"17264":2,"17265":2,"17266":2,"17267":2,"17268":2,"17269":2,"17270":2,"17271":1,"17272":2,"17273":1,"17274":2,"17275":2,"17276":2,"17277":1,"17278":2,"17279":2,"17280":1,"17281":2,"17282":1,"17283":2,"17284":1,"17285":1,"17286":2,"17287":2,"17288":2,"17289":1,"17290":1,"17291":1,"17292":1,"17293":2,"17294":1,"17295":2,"17296":2,"17297":2,"17298":2,"17299":2,"17300":1,"17301":2,"17302":1,"17303":2,"17304":1,"17305":2,"17306":2,"17307":1,"17308":2,"17309":2,"17310":2,"17311":1,"17312":1,"17313":2,"17314":1,"17315":2,"17316":2,"17317":1,"17318":2,"17319":1,"17320":2,"17321":2,"17322":2,"17323":2,"17324":1,"17325":2,"17326":1,"17327":2,"17328":1,"17329":2,"17330":1,"17331":1,"17332":2,"17333":2,"17334":1,"17335":2,"17336":1,"17337":2,"17338":1,"17339":2,"17340":2,"17341":2,"17342":2,"17343":1,"17344":1,"17345":2,"17346":1,"17347":2,"17348":1,"17349":1,"17350":1,"17351":1,"17352":2,"17353":2,"17354":1,"17355":1,"17356":1,"17357":1,"17358":1,"17359":2,"17360":2,"17361":1,"17362":1,"17363":2,"17364":2,"17365":2,"17366":1,"17367":1,"17368":1,"17369":1,"17370":2,"17371":1,"17372":2,"17373":2,"17374":2,"17375":2,"17376":2,"17377":1,"17378":2,"17379":1,"17380":2,"17381":1,"17382":1,"17383":1,"17384":1,"17385":2,"17386":2,"17387":2,"17388":1,"17389":2,"17390":2,"17391":2,"17392":2,"17393":1,"17394":2,"17395":1,"17396":1,"17397":1,"17398":2,"17399":2,"17400":1,"17401":1,"17402":2,"17403":1,"17404":2,"17405":1,"17406":2,"17407":2,"17408":2,"17409":1,"17410":2,"17411":2,"17412":1,"17413":2,"17414":1,"17415":2,"17416":1,"17417":2,"17418":2,"17419":1,"17420":2,"17421":1,"17422":2,"17423":1,"17424":2,"17425":1,"17426":2,"17427":1,"17428":1,"17429":2,"17430":1,"17431":2,"17432":2,"17433":2,"17434":2,"17435":1,"17436":1,"17437":1,"17438":2,"17439":2,"17440":1,"17441":2,"17442":1,"17443":1,"17444":2,"17445":1,"17446":2,"17447":1,"17448":1,"17449":1,"17450":1,"17451":2,"17452":2,"17453":2,"17454":1,"17455":2,"17456":2,"17457":2,"17458":1,"17459":2,"17460":1,"17461":1,"17462":2,"17463":2,"17464":2,"17465":2,"17466":2,"17467":1,"17468":2,"17469":2,"17470":2,"17471":2,"17472":1,"17473":2,"17474":2,"17475":2,"17476":1,"17477":2,"17478":1,"17479":2,"17480":1,"17481":2,"17482":1,"17483":1,"17484":2,"17485":1,"17486":2,"17487":2,"17488":2,"17489":2,"17490":2,"17491":2,"17492":2,"17493":2,"17494":1,"17495":2,"17496":1,"17497":2,"17498":1,"17499":2,"17500":2,"17501":2,"17502":2,"17503":1,"17504":1,"17505":2,"17506":1,"17507":1,"17508":1,"17509":2,"17510":1,"17511":1,"17512":2,"17513":1,"17514":1,"17515":1,"17516":2,"17517":2,"17518":1,"17519":2,"17520":1,"17521":1,"17522":2,"17523":2,"17524":1,"17525":1,"17526":1,"17527":2,"17528":2,"17529":2,"17530":2,"17531":1,"17532":1,"17533":1,"17534":1,"17535":1,"17536":2,"17537":2,"17538":1,"17539":1,"17540":1,"17541":2,"17542":2,"17543":2,"17544":1,"17545":2,"17546":1,"17547":2,"17548":1,"17549":2,"17550":1,"17551":1,"17552":1,"17553":2,"17554":1,"17555":2,"17556":1,"17557":2,"17558":1,"17559":1,"17560":1,"17561":2,"17562":1,"17563":1,"17564":2,"17565":1,"17566":2,"17567":1,"17568":1,"17569":2,"17570":1,"17571":1,"17572":1,"17573":1,"17574":1,"17575":1,"17576":1,"17577":1,"17578":1,"17579":2,"17580":1,"17581":2,"17582":2,"17583":1,"17584":2,"17585":2,"17586":2,"17587":2,"17588":1,"17589":1,"17590":2,"17591":2,"17592":2,"17593":1,"17594":2,"17595":1,"17596":2,"17597":2,"17598":2,"17599":1,"17600":2,"17601":2,"17602":2,"17603":1,"17604":2,"17605":2,"17606":1,"17607":1,"17608":2,"17609":2,"17610":2,"17611":2,"17612":2,"17613":1,"17614":2,"17615":2,"17616":2,"17617":1,"17618":1,"17619":1,"17620":2,"17621":2,"17622":2,"17623":2,"17624":2,"17625":1,"17626":2,"17627":1,"17628":1,"17629":2,"17630":2,"17631":1,"17632":1,"17633":1,"17634":1,"17635":1,"17636":1,"17637":1,"17638":2,"17639":1,"17640":2,"17641":1,"17642":1,"17643":2,"17644":2,"17645":2,"17646":2,"17647":2,"17648":2,"17649":2,"17650":1,"17651":2,"17652":2,"17653":1,"17654":2,"17655":1,"17656":1,"17657":2,"17658":2,"17659":2,"17660":1,"17661":1,"17662":2,"17663":1,"17664":2,"17665":2,"17666":1,"17667":2,"17668":1,"17669":1,"17670":2,"17671":1,"17672":2,"17673":1,"17674":1,"17675":1,"17676":1,"17677":2,"17678":1,"17679":2,"17680":2,"17681":2,"17682":1,"17683":2,"17684":1,"17685":2,"17686":2,"17687":2,"17688":2,"17689":2,"17690":1,"17691":2,"17692":2,"17693":2,"17694":1,"17695":1,"17696":2,"17697":2,"17698":1,"17699":2,"17700":2,"17701":1,"17702":1,"17703":2,"17704":1,"17705":2,"17706":2,"17707":2,"17708":1,"17709":2,"17710":1,"17711":2,"17712":1,"17713":2,"17714":2,"17715":1,"17716":1,"17717":2,"17718":2,"17719":1,"17720":1,"17721":2,"17722":1,"17723":2,"17724":1,"17725":1,"17726":2,"17727":2,"17728":1,"17729":1,"17730":1,"17731":1,"17732":1,"17733":1,"17734":1,"17735":2,"17736":2,"17737":1,"17738":1,"17739":1,"17740":2,"17741":2,"17742":2,"17743":2,"17744":2,"17745":1,"17746":1,"17747":2,"17748":1,"17749":2,"17750":2,"17751":1,"17752":2,"17753":1,"17754":2,"17755":2,"17756":1,"17757":2,"17758":1,"17759":2,"17760":2,"17761":2,"17762":1,"17763":2,"17764":1,"17765":1,"17766":2,"17767":1,"17768":2,"17769":2,"17770":1,"17771":1,"17772":2,"17773":2,"17774":1,"17775":2,"17776":2,"17777":1,"17778":1,"17779":2,"17780":2,"17781":2,"17782":2,"17783":2,"17784":1,"17785":2,"17786":1,"17787":1,"17788":1,"17789":2,"17790":1,"17791":2,"17792":2,"17793":1,"17794":1,"17795":2,"17796":1,"17797":1,"17798":1,"17799":2,"17800":2,"17801":2,"17802":1,"17803":1,"17804":1,"17805":2,"17806":1,"17807":1,"17808":2,"17809":1,"17810":2,"17811":2,"17812":2,"17813":2,"17814":2,"17815":1,"17816":1,"17817":1,"17818":1,"17819":1,"17820":1,"17821":2,"17822":1,"17823":2,"17824":2,"17825":2,"17826":1,"17827":1,"17828":2,"17829":1,"17830":2,"17831":2,"17832":2,"17833":2,"17834":1,"17835":1,"17836":1,"17837":2,"17838":2,"17839":2,"17840":1,"17841":1,"17842":1,"17843":2,"17844":2,"17845":1,"17846":2,"17847":2,"17848":1,"17849":2,"17850":1,"17851":1,"17852":1,"17853":2,"17854":2,"17855":2,"17856":2,"17857":1,"17858":2,"17859":2,"17860":1,"17861":2,"17862":2,"17863":2,"17864":1,"17865":2,"17866":1,"17867":2,"17868":2,"17869":2,"17870":2,"17871":1,"17872":2,"17873":2,"17874":1,"17875":2,"17876":2,"17877":2,"17878":1,"17879":1,"17880":1,"17881":1,"17882":1,"17883":2,"17884":2,"17885":1,"17886":2,"17887":1,"17888":1,"17889":2,"17890":1,"17891":1,"17892":1,"17893":1,"17894":2,"17895":1,"17896":1,"17897":2,"17898":2,"17899":1,"17900":2,"17901":1,"17902":1,"17903":2,"17904":2,"17905":2,"17906":2,"17907":2,"17908":1,"17909":1,"17910":1,"17911":2,"17912":2,"17913":1,"17914":1,"17915":1,"17916":1,"17917":1,"17918":2,"17919":2,"17920":1,"17921":2,"17922":2,"17923":2,"17924":1,"17925":1,"17926":1,"17927":2,"17928":1,"17929":2,"17930":1,"17931":1,"17932":2,"17933":2,"17934":2,"17935":2,"17936":1,"17937":2,"17938":2,"17939":1,"17940":2,"17941":1,"17942":1,"17943":2,"17944":1,"17945":1,"17946":2,"17947":1,"17948":1,"17949":1,"17950":1,"17951":1,"17952":2,"17953":2,"17954":2,"17955":1,"17956":2,"17957":2,"17958":1,"17959":2,"17960":1,"17961":1,"17962":1,"17963":2,"17964":2,"17965":1,"17966":2,"17967":1,"17968":1,"17969":2,"17970":1,"17971":2,"17972":1,"17973":1,"17974":1,"17975":2,"17976":1,"17977":1,"17978":1,"17979":1,"17980":1,"17981":1,"17982":2,"17983":1,"17984":1,"17985":2,"17986":1,"17987":2,"17988":2,"17989":2,"17990":1,"17991":1,"17992":2,"17993":1,"17994":1,"17995":2,"17996":2,"17997":1,"17998":2,"17999":1,"18000":1,"18001":1,"18002":2,"18003":2,"18004":2,"18005":1,"18006":1,"18007":2,"18008":2,"18009":1,"18010":2,"18011":2,"18012":1,"18013":1,"18014":1,"18015":2,"18016":1,"18017":1,"18018":2,"18019":2,"18020":1,"18021":1,"18022":1,"18023":2,"18024":1,"18025":2,"18026":2,"18027":2,"18028":2,"18029":2,"18030":2,"18031":2,"18032":2,"18033":1,"18034":2,"18035":2,"18036":1,"18037":2,"18038":2,"18039":2,"18040":2,"18041":2,"18042":1,"18043":1,"18044":1,"18045":2,"18046":1,"18047":2,"18048":1,"18049":2,"18050":2,"18051":2,"18052":2,"18053":1,"18054":1,"18055":1,"18056":2,"18057":1,"18058":1,"18059":2,"18060":1,"18061":2,"18062":1,"18063":2,"18064":2,"18065":2,"18066":2,"18067":2,"18068":2,"18069":1,"18070":2,"18071":2,"18072":2,"18073":1,"18074":1,"18075":2,"18076":2,"18077":1,"18078":1,"18079":1,"18080":1,"18081":1,"18082":1,"18083":1,"18084":2,"18085":2,"18086":1,"18087":2,"18088":1,"18089":2,"18090":1,"18091":2,"18092":1,"18093":1,"18094":2,"18095":1,"18096":2,"18097":1,"18098":2,"18099":1,"18100":1,"18101":2,"18102":2,"18103":1,"18104":1,"18105":1,"18106":1,"18107":1,"18108":2,"18109":1,"18110":2,"18111":2,"18112":1,"18113":1,"18114":1,"18115":2,"18116":1,"18117":2,"18118":2,"18119":1,"18120":2,"18121":2,"18122":1,"18123":1,"18124":2,"18125":1,"18126":1,"18127":1,"18128":1,"18129":2,"18130":2,"18131":2,"18132":1,"18133":1,"18134":1,"18135":1,"18136":1,"18137":2,"18138":1,"18139":1,"18140":2,"18141":2,"18142":1,"18143":1,"18144":2,"18145":1,"18146":2,"18147":2,"18148":2,"18149":2,"18150":2,"18151":1,"18152":1,"18153":2,"18154":1,"18155":2,"18156":1,"18157":2,"18158":2,"18159":1,"18160":1,"18161":2,"18162":1,"18163":1,"18164":2,"18165":1,"18166":2,"18167":1,"18168":1,"18169":2,"18170":1,"18171":1,"18172":1,"18173":1,"18174":1,"18175":1,"18176":1,"18177":1,"18178":1,"18179":2,"18180":1,"18181":2,"18182":1,"18183":1,"18184":2,"18185":2,"18186":2,"18187":1,"18188":2,"18189":1,"18190":2,"18191":1,"18192":1,"18193":2,"18194":2,"18195":1,"18196":1,"18197":1,"18198":2,"18199":2,"18200":2,"18201":2,"18202":1,"18203":1,"18204":2,"18205":2,"18206":1,"18207":1,"18208":2,"18209":1,"18210":1,"18211":2,"18212":2,"18213":2,"18214":2,"18215":1,"18216":1,"18217":2,"18218":1,"18219":2,"18220":1,"18221":2,"18222":2,"18223":2,"18224":1,"18225":1,"18226":1,"18227":2,"18228":2,"18229":2,"18230":2,"18231":2,"18232":1,"18233":1,"18234":1,"18235":1,"18236":1,"18237":2,"18238":2,"18239":1,"18240":1,"18241":2,"18242":1,"18243":1,"18244":1,"18245":1,"18246":2,"18247":2,"18248":1,"18249":2,"18250":1,"18251":1,"18252":2,"18253":1,"18254":1,"18255":2,"18256":1,"18257":2,"18258":1,"18259":2,"18260":2,"18261":2,"18262":1,"18263":1,"18264":1,"18265":1,"18266":1,"18267":2,"18268":1,"18269":2,"18270":2,"18271":1,"18272":2,"18273":1,"18274":1,"18275":1,"18276":2,"18277":1,"18278":2,"18279":2,"18280":1,"18281":2,"18282":1,"18283":2,"18284":2,"18285":2,"18286":1,"18287":1,"18288":1,"18289":1,"18290":1,"18291":1,"18292":1,"18293":1,"18294":2,"18295":2,"18296":1,"18297":1,"18298":1,"18299":2,"18300":1,"18301":2,"18302":1,"18303":2,"18304":2,"18305":1,"18306":1,"18307":2,"18308":2,"18309":2,"18310":1,"18311":1,"18312":1,"18313":2,"18314":1,"18315":1,"18316":1,"18317":2,"18318":1,"18319":2,"18320":1,"18321":2,"18322":2,"18323":2,"18324":1,"18325":1,"18326":1,"18327":2,"18328":1,"18329":2,"18330":2,"18331":2,"18332":2,"18333":1,"18334":2,"18335":2,"18336":2,"18337":1,"18338":1,"18339":2,"18340":1,"18341":2,"18342":2,"18343":1,"18344":1,"18345":2,"18346":1,"18347":2,"18348":2,"18349":1,"18350":2,"18351":1,"18352":1,"18353":1,"18354":1,"18355":1,"18356":1,"18357":1,"18358":1,"18359":1,"18360":1,"18361":2,"18362":2,"18363":1,"18364":2,"18365":1,"18366":1,"18367":1,"18368":1,"18369":2,"18370":1,"18371":2,"18372":2,"18373":2,"18374":2,"18375":2,"18376":1,"18377":2,"18378":1,"18379":1,"18380":2,"18381":2,"18382":2,"18383":1,"18384":1,"18385":2,"18386":1,"18387":1,"18388":2,"18389":2,"18390":2,"18391":2,"18392":1,"18393":1,"18394":1,"18395":1,"18396":1,"18397":1,"18398":2,"18399":2,"18400":2,"18401":1,"18402":2,"18403":2,"18404":1,"18405":1,"18406":1,"18407":1,"18408":1,"18409":2,"18410":2,"18411":2,"18412":2,"18413":2,"18414":2,"18415":1,"18416":1,"18417":2,"18418":2,"18419":1,"18420":1,"18421":2,"18422":1,"18423":2,"18424":2,"18425":2,"18426":2,"18427":1,"18428":1,"18429":2,"18430":1,"18431":2,"18432":1,"18433":2,"18434":1,"18435":1,"18436":1,"18437":1,"18438":1,"18439":2,"18440":2,"18441":2,"18442":1,"18443":2,"18444":1,"18445":1,"18446":2,"18447":1,"18448":1,"18449":2,"18450":2,"18451":2,"18452":1,"18453":2,"18454":1,"18455":2,"18456":1,"18457":2,"18458":1,"18459":1,"18460":1,"18461":1,"18462":2,"18463":2,"18464":1,"18465":2,"18466":2,"18467":2,"18468":1,"18469":2,"18470":2,"18471":1,"18472":2,"18473":2,"18474":1,"18475":1,"18476":1,"18477":2,"18478":2,"18479":1,"18480":2,"18481":2,"18482":1,"18483":1,"18484":1,"18485":1,"18486":1,"18487":1,"18488":2,"18489":2,"18490":1,"18491":2,"18492":1,"18493":2,"18494":1,"18495":2,"18496":2,"18497":2,"18498":1,"18499":2,"18500":1,"18501":1,"18502":2,"18503":2,"18504":2,"18505":1,"18506":2,"18507":1,"18508":2,"18509":2,"18510":2,"18511":1,"18512":1,"18513":1,"18514":1,"18515":1,"18516":1,"18517":2,"18518":1,"18519":2,"18520":2,"18521":1,"18522":1,"18523":1,"18524":2,"18525":2,"18526":2,"18527":2,"18528":1,"18529":2,"18530":1,"18531":2,"18532":2,"18533":1,"18534":2,"18535":2,"18536":1,"18537":2,"18538":2,"18539":2,"18540":2,"18541":1,"18542":1,"18543":2,"18544":2,"18545":2,"18546":1,"18547":2,"18548":1,"18549":2,"18550":2,"18551":2,"18552":1,"18553":1,"18554":1,"18555":1,"18556":2,"18557":2,"18558":2,"18559":1,"18560":1,"18561":1,"18562":2,"18563":1,"18564":1,"18565":2,"18566":2,"18567":2,"18568":2,"18569":2,"18570":2,"18571":2,"18572":1,"18573":2,"18574":1,"18575":2,"18576":2,"18577":1,"18578":1,"18579":1,"18580":2,"18581":1,"18582":2,"18583":1,"18584":1,"18585":1,"18586":1,"18587":2,"18588":2,"18589":2,"18590":2,"18591":2,"18592":2,"18593":2,"18594":2,"18595":2,"18596":2,"18597":1,"18598":1,"18599":1,"18600":2,"18601":2,"18602":1,"18603":1,"18604":1,"18605":1,"18606":2,"18607":1,"18608":2,"18609":2,"18610":2,"18611":1,"18612":1,"18613":1,"18614":2,"18615":2,"18616":2,"18617":1,"18618":2,"18619":1,"18620":1,"18621":1,"18622":1,"18623":1,"18624":1,"18625":1,"18626":2,"18627":1,"18628":1,"18629":1,"18630":1,"18631":1,"18632":2,"18633":2,"18634":1,"18635":1,"18636":2,"18637":1,"18638":2,"18639":2,"18640":1,"18641":1,"18642":1,"18643":1,"18644":1,"18645":1,"18646":2,"18647":2,"18648":1,"18649":1,"18650":2,"18651":2,"18652":2,"18653":2,"18654":2,"18655":2,"18656":2,"18657":2,"18658":1,"18659":1,"18660":2,"18661":2,"18662":1,"18663":1,"18664":1,"18665":1,"18666":2,"18667":2,"18668":2,"18669":2,"18670":2,"18671":1,"18672":1,"18673":2,"18674":2,"18675":1,"18676":2,"18677":1,"18678":1,"18679":1,"18680":2,"18681":2,"18682":1,"18683":2,"18684":1,"18685":1,"18686":1,"18687":1,"18688":2,"18689":1,"18690":2,"18691":1,"18692":2,"18693":2,"18694":1,"18695":1,"18696":1,"18697":2,"18698":1,"18699":1,"18700":2,"18701":1,"18702":1,"18703":1,"18704":1,"18705":1,"18706":1,"18707":2,"18708":2,"18709":2,"18710":2,"18711":2,"18712":1,"18713":2,"18714":2,"18715":1,"18716":2,"18717":2,"18718":1,"18719":1,"18720":2,"18721":2,"18722":1,"18723":2,"18724":2,"18725":2,"18726":1,"18727":2,"18728":1,"18729":1,"18730":2,"18731":2,"18732":2,"18733":2,"18734":1,"18735":1,"18736":1,"18737":1,"18738":1,"18739":2,"18740":1,"18741":2,"18742":1,"18743":2,"18744":1,"18745":2,"18746":2,"18747":1,"18748":1,"18749":1,"18750":2,"18751":1,"18752":1,"18753":1,"18754":2,"18755":2,"18756":1,"18757":1,"18758":2,"18759":1,"18760":2,"18761":2,"18762":1,"18763":1,"18764":2,"18765":2,"18766":1,"18767":1,"18768":2,"18769":1,"18770":2,"18771":2,"18772":2,"18773":2,"18774":2,"18775":2,"18776":2,"18777":2,"18778":2,"18779":1,"18780":1,"18781":1,"18782":1,"18783":2,"18784":2,"18785":1,"18786":2,"18787":1,"18788":1,"18789":2,"18790":1,"18791":1,"18792":1,"18793":1,"18794":2,"18795":1,"18796":1,"18797":2,"18798":1,"18799":1,"18800":1,"18801":2,"18802":2,"18803":1,"18804":2,"18805":2,"18806":1,"18807":2,"18808":2,"18809":2,"18810":2,"18811":2,"18812":2,"18813":1,"18814":2,"18815":2,"18816":1,"18817":1,"18818":1,"18819":2,"18820":2,"18821":1,"18822":1,"18823":2,"18824":1,"18825":2,"18826":1,"18827":2,"18828":1,"18829":2,"18830":1,"18831":2,"18832":1,"18833":1,"18834":1,"18835":2,"18836":2,"18837":1,"18838":1,"18839":1,"18840":1,"18841":1,"18842":2,"18843":1,"18844":2,"18845":2,"18846":2,"18847":1,"18848":2,"18849":2,"18850":1,"18851":2,"18852":2,"18853":2,"18854":1,"18855":2,"18856":2,"18857":2,"18858":2,"18859":1,"18860":2,"18861":1,"18862":2,"18863":1,"18864":1,"18865":2,"18866":1,"18867":1,"18868":1,"18869":1,"18870":1,"18871":2,"18872":2,"18873":2,"18874":1,"18875":1,"18876":2,"18877":1,"18878":2,"18879":2,"18880":1,"18881":1,"18882":2,"18883":2,"18884":1,"18885":2,"18886":1,"18887":2,"18888":2,"18889":2,"18890":1,"18891":1,"18892":1,"18893":1,"18894":1,"18895":1,"18896":2,"18897":1,"18898":2,"18899":2,"18900":2,"18901":1,"18902":2,"18903":2,"18904":1,"18905":1,"18906":2,"18907":1,"18908":1,"18909":2,"18910":1,"18911":1,"18912":1,"18913":1,"18914":1,"18915":1,"18916":1,"18917":1,"18918":2,"18919":2,"18920":2,"18921":2,"18922":1,"18923":1,"18924":1,"18925":2,"18926":1,"18927":1,"18928":1,"18929":2,"18930":2,"18931":2,"18932":2,"18933":2,"18934":1,"18935":2,"18936":2,"18937":1,"18938":2,"18939":2,"18940":1,"18941":2,"18942":2,"18943":1,"18944":2,"18945":1,"18946":2,"18947":2,"18948":2,"18949":1,"18950":1,"18951":1,"18952":1,"18953":2,"18954":1,"18955":2,"18956":1,"18957":1,"18958":1,"18959":1,"18960":2,"18961":1,"18962":2,"18963":1,"18964":1,"18965":1,"18966":2,"18967":1,"18968":2,"18969":1,"18970":2,"18971":2,"18972":1,"18973":1,"18974":2,"18975":1,"18976":1,"18977":1,"18978":2,"18979":2,"18980":2,"18981":1,"18982":1,"18983":1,"18984":2,"18985":2,"18986":2,"18987":1,"18988":2,"18989":1,"18990":1,"18991":1,"18992":2,"18993":2,"18994":2,"18995":2,"18996":1,"18997":1,"18998":1,"18999":2,"19000":1,"19001":2,"19002":1,"19003":2,"19004":1,"19005":1,"19006":1,"19007":2,"19008":2,"19009":1,"19010":2,"19011":1,"19012":2,"19013":2,"19014":2,"19015":1,"19016":2,"19017":1,"19018":1,"19019":2,"19020":2,"19021":1,"19022":1,"19023":2,"19024":1,"19025":1,"19026":1,"19027":1,"19028":1,"19029":1,"19030":2,"19031":1,"19032":2,"19033":1,"19034":1,"19035":1,"19036":2,"19037":2,"19038":2,"19039":1,"19040":2,"19041":2,"19042":1,"19043":1,"19044":2,"19045":2,"19046":1,"19047":1,"19048":2,"19049":2,"19050":1,"19051":1,"19052":2,"19053":1,"19054":1,"19055":1,"19056":2,"19057":2,"19058":1,"19059":1,"19060":2,"19061":1,"19062":1,"19063":2,"19064":1,"19065":2,"19066":1,"19067":2,"19068":2,"19069":2,"19070":1,"19071":2,"19072":1,"19073":1,"19074":2,"19075":2,"19076":1,"19077":1,"19078":2,"19079":1,"19080":2,"19081":1,"19082":1,"19083":2,"19084":2,"19085":2,"19086":2,"19087":2,"19088":1,"19089":1,"19090":1,"19091":1,"19092":1,"19093":1,"19094":2,"19095":2,"19096":2,"19097":2,"19098":1,"19099":1,"19100":2,"19101":1,"19102":1,"19103":2,"19104":1,"19105":1,"19106":2,"19107":1,"19108":1,"19109":2,"19110":2,"19111":2,"19112":2,"19113":2,"19114":2,"19115":1,"19116":2,"19117":2,"19118":2,"19119":1,"19120":2,"19121":1,"19122":1,"19123":2,"19124":1,"19125":2,"19126":2,"19127":1,"19128":1,"19129":1,"19130":1,"19131":2,"19132":2,"19133":2,"19134":1,"19135":1,"19136":1,"19137":2,"19138":2,"19139":1,"19140":2,"19141":2,"19142":2,"19143":2,"19144":1,"19145":1,"19146":2,"19147":2,"19148":1,"19149":2,"19150":2,"19151":1,"19152":2,"19153":1,"19154":2,"19155":1,"19156":1,"19157":2,"19158":2,"19159":1,"19160":1,"19161":2,"19162":1,"19163":2,"19164":2,"19165":1,"19166":1,"19167":2,"19168":1,"19169":2,"19170":2,"19171":2,"19172":1,"19173":1,"19174":1,"19175":2,"19176":2,"19177":2,"19178":1,"19179":1,"19180":2,"19181":1,"19182":2,"19183":1,"19184":2,"19185":2,"19186":1,"19187":2,"19188":1,"19189":2,"19190":2,"19191":1,"19192":1,"19193":2,"19194":1,"19195":1,"19196":2,"19197":2,"19198":2,"19199":2,"19200":2,"19201":1,"19202":2,"19203":2,"19204":2,"19205":1,"19206":2,"19207":1,"19208":1,"19209":2,"19210":1,"19211":1,"19212":2,"19213":1,"19214":2,"19215":1,"19216":2,"19217":1,"19218":2,"19219":2,"19220":2,"19221":2,"19222":2,"19223":2,"19224":1,"19225":2,"19226":2,"19227":2,"19228":1,"19229":2,"19230":2,"19231":1,"19232":2,"19233":1,"19234":2,"19235":2,"19236":2,"19237":1,"19238":1,"19239":1,"19240":1,"19241":2,"19242":2,"19243":1,"19244":1,"19245":1,"19246":2,"19247":2,"19248":1,"19249":2,"19250":2,"19251":1,"19252":2,"19253":1,"19254":1,"19255":2,"19256":2,"19257":2,"19258":2,"19259":2,"19260":1,"19261":2,"19262":1,"19263":1,"19264":2,"19265":2,"19266":1,"19267":1,"19268":1,"19269":2,"19270":1,"19271":2,"19272":2,"19273":2,"19274":1,"19275":1,"19276":2,"19277":1,"19278":2,"19279":2,"19280":1,"19281":2,"19282":2,"19283":1,"19284":2,"19285":2,"19286":1,"19287":2,"19288":1,"19289":2,"19290":2,"19291":1,"19292":1,"19293":1,"19294":1,"19295":2,"19296":2,"19297":1,"19298":1,"19299":1,"19300":1,"19301":1,"19302":2,"19303":2,"19304":2,"19305":1,"19306":1,"19307":1,"19308":2,"19309":1,"19310":2,"19311":1,"19312":1,"19313":1,"19314":1,"19315":2,"19316":1,"19317":2,"19318":1,"19319":1,"19320":1,"19321":1,"19322":1,"19323":2,"19324":1,"19325":2,"19326":1,"19327":2,"19328":2,"19329":1,"19330":2,"19331":2,"19332":2,"19333":2,"19334":2,"19335":2,"19336":1,"19337":2,"19338":2,"19339":1,"19340":1,"19341":2,"19342":1,"19343":1,"19344":1,"19345":1,"19346":1,"19347":2,"19348":1,"19349":2,"19350":2,"19351":1,"19352":1,"19353":2,"19354":1,"19355":2,"19356":2,"19357":1,"19358":1,"19359":1,"19360":1,"19361":2,"19362":2,"19363":1,"19364":2,"19365":1,"19366":2,"19367":2,"19368":1,"19369":1,"19370":2,"19371":1,"19372":1,"19373":1,"19374":1,"19375":1,"19376":2,"19377":2,"19378":1,"19379":2,"19380":1,"19381":2,"19382":1,"19383":2,"19384":2,"19385":2,"19386":1,"19387":2,"19388":2,"19389":1,"19390":1,"19391":2,"19392":1,"19393":1,"19394":2,"19395":2,"19396":1,"19397":1,"19398":1,"19399":2,"19400":1,"19401":2,"19402":1,"19403":1,"19404":2,"19405":1,"19406":1,"19407":2,"19408":1,"19409":1,"19410":1,"19411":1,"19412":1,"19413":1,"19414":1,"19415":1,"19416":1,"19417":1,"19418":2,"19419":2,"19420":2,"19421":1,"19422":2,"19423":2,"19424":1,"19425":1,"19426":2,"19427":2,"19428":2,"19429":2,"19430":1,"19431":1,"19432":1,"19433":1,"19434":2,"19435":1,"19436":2,"19437":2,"19438":1,"19439":2,"19440":2,"19441":2,"19442":1,"19443":2,"19444":2,"19445":1,"19446":2,"19447":1,"19448":1,"19449":1,"19450":1,"19451":2,"19452":1,"19453":2,"19454":1,"19455":1,"19456":1,"19457":2,"19458":2,"19459":2,"19460":2,"19461":2,"19462":1,"19463":2,"19464":2,"19465":1,"19466":1,"19467":1,"19468":2,"19469":2,"19470":1,"19471":1,"19472":1,"19473":2,"19474":1,"19475":2,"19476":2,"19477":1,"19478":1,"19479":2,"19480":2,"19481":2,"19482":1,"19483":2,"19484":2,"19485":2,"19486":2,"19487":1,"19488":2,"19489":1,"19490":1,"19491":2,"19492":2,"19493":1,"19494":1,"19495":2,"19496":1,"19497":1,"19498":1,"19499":1,"19500":2,"19501":2,"19502":1,"19503":1,"19504":1,"19505":1,"19506":1,"19507":1,"19508":2,"19509":1,"19510":2,"19511":1,"19512":2,"19513":1,"19514":2,"19515":1,"19516":1,"19517":1,"19518":2,"19519":2,"19520":1,"19521":1,"19522":2,"19523":1,"19524":2,"19525":1,"19526":2,"19527":2,"19528":1,"19529":2,"19530":1,"19531":2,"19532":2,"19533":2,"19534":2,"19535":2,"19536":1,"19537":1,"19538":2,"19539":2,"19540":1,"19541":1,"19542":2,"19543":1,"19544":1,"19545":2,"19546":1,"19547":2,"19548":2,"19549":1,"19550":2,"19551":2,"19552":2,"19553":2,"19554":2,"19555":1,"19556":1,"19557":1,"19558":1,"19559":1,"19560":1,"19561":2,"19562":2,"19563":2,"19564":1,"19565":1,"19566":2,"19567":2,"19568":2,"19569":1,"19570":2,"19571":1,"19572":2,"19573":1,"19574":2,"19575":2,"19576":1,"19577":1,"19578":1,"19579":2,"19580":1,"19581":2,"19582":1,"19583":1,"19584":1,"19585":1,"19586":2,"19587":1,"19588":1,"19589":1,"19590":2,"19591":2,"19592":1,"19593":1,"19594":1,"19595":1,"19596":2,"19597":1,"19598":1,"19599":1,"19600":1,"19601":1,"19602":1,"19603":2,"19604":2,"19605":1,"19606":1,"19607":2,"19608":1,"19609":1,"19610":1,"19611":1,"19612":1,"19613":1,"19614":2,"19615":2,"19616":1,"19617":1,"19618":2,"19619":1,"19620":2,"19621":2,"19622":1,"19623":2,"19624":1,"19625":1,"19626":2,"19627":2,"19628":2,"19629":2,"19630":2,"19631":1,"19632":2,"19633":2,"19634":1,"19635":1,"19636":2,"19637":1,"19638":2,"19639":1,"19640":2,"19641":1,"19642":2,"19643":1,"19644":2,"19645":1,"19646":1,"19647":1,"19648":1,"19649":1,"19650":2,"19651":1,"19652":2,"19653":1,"19654":1,"19655":2,"19656":1,"19657":1,"19658":1,"19659":2,"19660":1,"19661":2,"19662":2,"19663":2,"19664":2,"19665":2,"19666":2,"19667":2,"19668":1,"19669":1,"19670":2,"19671":1,"19672":2,"19673":2,"19674":1,"19675":2,"19676":1,"19677":1,"19678":2,"19679":1,"19680":1,"19681":2,"19682":1,"19683":2,"19684":1,"19685":1,"19686":1,"19687":2,"19688":2,"19689":2,"19690":2,"19691":2,"19692":1,"19693":2,"19694":2,"19695":2,"19696":2,"19697":1,"19698":1,"19699":2,"19700":1,"19701":1,"19702":1,"19703":2,"19704":1,"19705":2,"19706":2,"19707":2,"19708":2,"19709":1,"19710":2,"19711":1,"19712":1,"19713":2,"19714":1,"19715":1,"19716":1,"19717":1,"19718":1,"19719":2,"19720":2,"19721":1,"19722":2,"19723":2,"19724":1,"19725":2,"19726":2,"19727":2,"19728":2,"19729":1,"19730":2,"19731":2,"19732":2,"19733":1,"19734":1,"19735":1,"19736":2,"19737":1,"19738":2,"19739":1,"19740":2,"19741":1,"19742":2,"19743":1,"19744":1,"19745":1,"19746":1,"19747":1,"19748":1,"19749":1,"19750":2,"19751":2,"19752":1,"19753":1,"19754":2,"19755":1,"19756":1,"19757":2,"19758":1,"19759":1,"19760":2,"19761":2,"19762":2,"19763":2,"19764":1,"19765":1,"19766":1,"19767":1,"19768":2,"19769":2,"19770":1,"19771":1,"19772":1,"19773":1,"19774":2,"19775":2,"19776":2,"19777":1,"19778":2,"19779":2,"19780":2,"19781":2,"19782":1,"19783":2,"19784":2,"19785":1,"19786":2,"19787":2,"19788":2,"19789":2,"19790":2,"19791":2,"19792":2,"19793":2,"19794":1,"19795":2,"19796":1,"19797":1,"19798":1,"19799":1,"19800":1,"19801":1,"19802":2,"19803":2,"19804":1,"19805":2,"19806":2,"19807":1,"19808":1,"19809":1,"19810":2,"19811":1,"19812":2,"19813":2,"19814":2,"19815":2,"19816":2,"19817":2,"19818":2,"19819":1,"19820":1,"19821":2,"19822":1,"19823":2,"19824":1,"19825":1,"19826":2,"19827":1,"19828":2,"19829":2,"19830":1,"19831":1,"19832":1,"19833":1,"19834":2,"19835":2,"19836":1,"19837":2,"19838":1,"19839":2,"19840":2,"19841":1,"19842":1,"19843":2,"19844":1,"19845":1,"19846":1,"19847":1,"19848":1,"19849":1,"19850":1,"19851":2,"19852":1,"19853":2,"19854":2,"19855":2,"19856":2,"19857":1,"19858":1,"19859":2,"19860":1,"19861":2,"19862":2,"19863":1,"19864":1,"19865":1,"19866":2,"19867":1,"19868":1,"19869":1,"19870":1,"19871":2,"19872":1,"19873":2,"19874":2,"19875":1,"19876":1,"19877":1,"19878":2,"19879":1,"19880":1,"19881":2,"19882":1,"19883":2,"19884":1,"19885":2,"19886":1,"19887":1,"19888":2,"19889":2,"19890":1,"19891":1,"19892":1,"19893":1,"19894":1,"19895":2,"19896":1,"19897":1,"19898":1,"19899":2,"19900":2,"19901":1,"19902":1,"19903":2,"19904":1,"19905":1,"19906":2,"19907":2,"19908":1,"19909":1,"19910":1,"19911":1,"19912":2,"19913":2,"19914":1,"19915":1,"19916":1,"19917":2,"19918":2,"19919":2,"19920":1,"19921":2,"19922":1,"19923":2,"19924":2,"19925":1,"19926":1,"19927":1,"19928":2,"19929":2,"19930":2,"19931":1,"19932":2,"19933":2,"19934":2,"19935":2,"19936":1,"19937":1,"19938":2,"19939":1,"19940":1,"19941":1,"19942":1,"19943":1,"19944":2,"19945":1,"19946":1,"19947":1,"19948":2,"19949":1,"19950":2,"19951":2,"19952":2,"19953":1,"19954":2,"19955":1,"19956":1,"19957":1,"19958":2,"19959":2,"19960":2,"19961":2,"19962":1,"19963":2,"19964":2,"19965":1,"19966":2,"19967":1,"19968":2,"19969":2,"19970":1,"19971":1,"19972":1,"19973":1,"19974":1,"19975":1,"19976":2,"19977":1,"19978":2,"19979":2,"19980":2,"19981":1,"19982":1,"19983":1,"19984":1,"19985":2,"19986":2,"19987":2,"19988":2,"19989":1,"19990":2,"19991":2,"19992":2,"19993":1,"19994":2,"19995":1,"19996":1,"19997":2,"19998":2,"19999":2,"20000":2,"20001":1,"20002":1,"20003":2,"20004":2,"20005":1,"20006":1,"20007":2,"20008":1,"20009":1,"20010":2,"20011":2,"20012":1,"20013":2,"20014":1,"20015":1,"20016":2,"20017":1,"20018":2,"20019":2,"20020":1,"20021":2,"20022":2,"20023":1,"20024":1,"20025":1,"20026":1,"20027":2,"20028":2,"20029":2,"20030":1,"20031":1,"20032":1,"20033":1,"20034":2,"20035":1,"20036":1,"20037":2,"20038":1,"20039":1,"20040":1,"20041":2,"20042":2,"20043":2,"20044":1,"20045":1,"20046":1,"20047":1,"20048":1,"20049":1,"20050":1,"20051":1,"20052":1,"20053":2,"20054":1,"20055":2,"20056":1,"20057":1,"20058":1,"20059":1,"20060":1,"20061":2,"20062":2,"20063":2,"20064":2,"20065":1,"20066":2,"20067":2,"20068":1,"20069":1,"20070":1,"20071":1,"20072":1,"20073":1,"20074":2,"20075":2,"20076":2,"20077":2,"20078":2,"20079":2,"20080":1,"20081":2,"20082":1,"20083":2,"20084":2,"20085":1,"20086":1,"20087":1,"20088":2,"20089":1,"20090":2,"20091":1,"20092":1,"20093":2,"20094":1,"20095":1,"20096":1,"20097":1,"20098":2,"20099":1,"20100":2,"20101":1,"20102":2,"20103":1,"20104":2,"20105":2,"20106":2,"20107":1,"20108":2,"20109":2,"20110":1,"20111":2,"20112":1,"20113":2,"20114":2,"20115":1,"20116":2,"20117":2,"20118":1,"20119":2,"20120":2,"20121":1,"20122":1,"20123":1,"20124":2,"20125":2,"20126":2,"20127":1,"20128":2,"20129":2,"20130":2,"20131":2,"20132":1,"20133":2,"20134":1,"20135":1,"20136":2,"20137":2,"20138":2,"20139":2,"20140":1,"20141":1,"20142":1,"20143":1,"20144":2,"20145":1,"20146":2,"20147":2,"20148":1,"20149":1,"20150":2,"20151":2,"20152":1,"20153":2,"20154":2,"20155":2,"20156":2,"20157":1,"20158":1,"20159":1,"20160":2,"20161":1,"20162":1,"20163":2,"20164":1,"20165":2,"20166":2,"20167":2,"20168":2,"20169":2,"20170":2,"20171":1,"20172":2,"20173":1,"20174":1,"20175":1,"20176":2,"20177":1,"20178":2,"20179":2,"20180":2,"20181":1,"20182":1,"20183":2,"20184":1,"20185":2,"20186":2,"20187":2,"20188":2,"20189":2,"20190":1,"20191":1,"20192":2,"20193":2,"20194":1,"20195":2,"20196":1,"20197":2,"20198":2,"20199":2,"20200":1,"20201":2,"20202":2,"20203":1,"20204":1,"20205":2,"20206":1,"20207":2,"20208":2,"20209":1,"20210":2,"20211":2,"20212":2,"20213":2,"20214":2,"20215":1,"20216":1,"20217":2,"20218":1,"20219":2,"20220":1,"20221":2,"20222":1,"20223":2,"20224":2,"20225":1,"20226":1,"20227":1,"20228":2,"20229":2,"20230":1,"20231":1,"20232":2,"20233":2,"20234":1,"20235":2,"20236":1,"20237":1,"20238":1,"20239":1,"20240":1,"20241":2,"20242":1,"20243":1,"20244":1,"20245":1,"20246":2,"20247":2,"20248":2,"20249":1,"20250":1,"20251":2,"20252":1,"20253":1,"20254":2,"20255":2,"20256":2,"20257":1,"20258":1,"20259":2,"20260":2,"20261":2,"20262":1,"20263":1,"20264":1,"20265":1,"20266":1,"20267":1,"20268":2,"20269":2,"20270":2,"20271":2,"20272":1,"20273":2,"20274":1,"20275":1,"20276":1,"20277":2,"20278":1,"20279":2,"20280":1,"20281":1,"20282":1,"20283":2,"20284":2,"20285":2,"20286":2,"20287":1,"20288":1,"20289":2,"20290":1,"20291":2,"20292":1,"20293":1,"20294":1,"20295":1,"20296":1,"20297":2,"20298":1,"20299":1,"20300":2,"20301":1,"20302":1,"20303":1,"20304":2,"20305":1,"20306":1,"20307":2,"20308":2,"20309":1,"20310":1,"20311":1,"20312":2,"20313":1,"20314":2,"20315":2,"20316":1,"20317":1,"20318":1,"20319":1,"20320":1,"20321":2,"20322":1,"20323":2,"20324":2,"20325":2,"20326":2,"20327":2,"20328":1,"20329":2,"20330":1,"20331":1,"20332":2,"20333":1,"20334":2,"20335":1,"20336":1,"20337":2,"20338":2,"20339":1,"20340":1,"20341":1,"20342":2,"20343":1,"20344":1,"20345":1,"20346":1,"20347":1,"20348":2,"20349":1,"20350":1,"20351":1,"20352":2,"20353":1,"20354":1,"20355":2,"20356":2,"20357":2,"20358":1,"20359":2,"20360":1,"20361":1,"20362":2,"20363":2,"20364":1,"20365":1,"20366":1,"20367":1,"20368":1,"20369":1,"20370":2,"20371":2,"20372":1,"20373":2,"20374":1,"20375":2,"20376":1,"20377":1,"20378":2,"20379":1,"20380":1,"20381":2,"20382":2,"20383":1,"20384":1,"20385":2,"20386":2,"20387":2,"20388":1,"20389":2,"20390":2,"20391":2,"20392":1,"20393":1,"20394":1,"20395":1,"20396":1,"20397":2,"20398":1,"20399":1,"20400":2,"20401":1,"20402":1,"20403":2,"20404":1,"20405":2,"20406":2,"20407":2,"20408":2,"20409":1,"20410":2,"20411":2,"20412":1,"20413":1,"20414":1,"20415":2,"20416":2,"20417":1,"20418":2,"20419":1,"20420":1,"20421":1,"20422":1,"20423":2,"20424":1,"20425":1,"20426":1,"20427":1,"20428":2,"20429":1,"20430":1,"20431":2,"20432":2,"20433":1,"20434":1,"20435":1,"20436":1,"20437":1,"20438":2,"20439":1,"20440":2,"20441":1,"20442":2,"20443":1,"20444":1,"20445":2,"20446":2,"20447":2,"20448":1,"20449":1,"20450":1,"20451":1,"20452":1,"20453":2,"20454":1,"20455":1,"20456":2,"20457":2,"20458":1,"20459":2,"20460":1,"20461":1,"20462":2,"20463":2,"20464":2,"20465":2,"20466":1,"20467":2,"20468":1,"20469":2,"20470":2,"20471":1,"20472":2,"20473":2,"20474":2,"20475":1,"20476":1,"20477":1,"20478":1,"20479":1,"20480":2,"20481":1,"20482":1,"20483":1,"20484":2,"20485":1,"20486":1,"20487":1,"20488":1,"20489":1,"20490":1,"20491":1,"20492":2,"20493":2,"20494":2,"20495":2,"20496":2,"20497":2,"20498":1,"20499":2,"20500":1,"20501":1,"20502":1,"20503":2,"20504":2,"20505":1,"20506":1,"20507":1,"20508":2,"20509":2,"20510":1,"20511":2,"20512":2,"20513":1,"20514":2,"20515":1,"20516":1,"20517":2,"20518":1,"20519":2,"20520":1,"20521":2,"20522":1,"20523":2,"20524":2,"20525":1,"20526":2,"20527":1,"20528":2,"20529":2,"20530":2,"20531":2,"20532":1,"20533":1,"20534":1,"20535":2,"20536":2,"20537":2,"20538":1,"20539":1,"20540":1,"20541":1,"20542":1,"20543":2,"20544":1,"20545":1,"20546":1,"20547":1,"20548":2,"20549":2,"20550":1,"20551":1,"20552":1,"20553":2,"20554":2,"20555":2,"20556":1,"20557":1,"20558":1,"20559":2,"20560":1,"20561":1,"20562":2,"20563":2,"20564":2,"20565":1,"20566":1,"20567":2,"20568":2,"20569":2,"20570":1,"20571":1,"20572":1,"20573":2,"20574":2,"20575":1,"20576":1,"20577":2,"20578":2,"20579":2,"20580":1,"20581":1,"20582":2,"20583":2,"20584":2,"20585":1,"20586":1,"20587":1,"20588":1,"20589":1,"20590":2,"20591":2,"20592":1,"20593":1,"20594":2,"20595":2,"20596":1,"20597":1,"20598":1,"20599":2,"20600":2,"20601":1,"20602":1,"20603":1,"20604":1,"20605":2,"20606":1,"20607":2,"20608":2,"20609":2,"20610":2,"20611":1,"20612":2,"20613":1,"20614":2,"20615":1,"20616":1,"20617":2,"20618":1,"20619":1,"20620":1,"20621":2,"20622":2,"20623":1,"20624":2,"20625":2,"20626":2,"20627":2,"20628":2,"20629":2,"20630":2,"20631":1,"20632":2,"20633":1,"20634":2,"20635":2,"20636":1,"20637":2,"20638":2,"20639":2,"20640":1,"20641":2,"20642":1,"20643":1,"20644":2,"20645":2,"20646":2,"20647":1,"20648":1,"20649":1,"20650":2,"20651":2,"20652":1,"20653":1,"20654":2,"20655":2,"20656":2,"20657":2,"20658":1,"20659":1,"20660":1,"20661":2,"20662":1,"20663":1,"20664":1,"20665":1,"20666":2,"20667":1,"20668":2,"20669":1,"20670":2,"20671":2,"20672":2,"20673":1,"20674":1,"20675":1,"20676":1,"20677":1,"20678":2,"20679":1,"20680":2,"20681":2,"20682":2,"20683":1,"20684":2,"20685":2,"20686":2,"20687":2,"20688":1,"20689":1,"20690":1,"20691":1,"20692":1,"20693":2,"20694":1,"20695":1,"20696":1,"20697":1,"20698":1,"20699":1,"20700":1,"20701":2,"20702":2,"20703":1,"20704":2,"20705":1,"20706":1,"20707":1,"20708":1,"20709":2,"20710":2,"20711":2,"20712":1,"20713":1,"20714":2,"20715":1,"20716":2,"20717":1,"20718":2,"20719":2,"20720":1,"20721":1,"20722":1,"20723":2,"20724":2,"20725":1,"20726":1,"20727":2,"20728":2,"20729":1,"20730":1,"20731":1,"20732":1,"20733":2,"20734":2,"20735":1,"20736":2,"20737":1,"20738":2,"20739":1,"20740":1,"20741":2,"20742":2,"20743":1,"20744":2,"20745":1,"20746":2,"20747":1,"20748":1,"20749":1,"20750":1,"20751":2,"20752":1,"20753":2,"20754":2,"20755":2,"20756":2,"20757":2,"20758":2,"20759":1,"20760":1,"20761":2,"20762":2,"20763":1,"20764":2,"20765":2,"20766":1,"20767":1,"20768":1,"20769":1,"20770":1,"20771":2,"20772":1,"20773":2,"20774":1,"20775":1,"20776":1,"20777":2,"20778":1,"20779":2,"20780":1,"20781":1,"20782":2,"20783":1,"20784":2,"20785":2,"20786":1,"20787":2,"20788":2,"20789":2,"20790":2,"20791":2,"20792":2,"20793":1,"20794":2,"20795":1,"20796":1,"20797":1,"20798":1,"20799":2,"20800":1,"20801":1,"20802":2,"20803":2,"20804":2,"20805":1,"20806":2,"20807":2,"20808":2,"20809":2,"20810":1,"20811":1,"20812":1,"20813":2,"20814":1,"20815":1,"20816":2,"20817":1,"20818":1,"20819":1,"20820":1,"20821":1,"20822":2,"20823":1,"20824":1,"20825":1,"20826":1,"20827":1,"20828":2,"20829":1,"20830":2,"20831":1,"20832":2,"20833":1,"20834":2,"20835":2,"20836":2,"20837":1,"20838":2,"20839":1,"20840":1,"20841":1,"20842":1,"20843":1,"20844":1,"20845":2,"20846":2,"20847":2,"20848":1,"20849":1,"20850":1,"20851":1,"20852":2,"20853":1,"20854":1,"20855":1,"20856":2,"20857":2,"20858":2,"20859":2,"20860":1,"20861":2,"20862":1,"20863":2,"20864":1,"20865":1,"20866":1,"20867":2,"20868":2,"20869":2,"20870":2,"20871":2,"20872":1,"20873":1,"20874":1,"20875":2,"20876":2,"20877":2,"20878":2,"20879":2,"20880":1,"20881":2,"20882":1,"20883":2,"20884":1,"20885":1,"20886":2,"20887":1,"20888":2,"20889":2,"20890":1,"20891":1,"20892":2,"20893":2,"20894":1,"20895":2,"20896":1,"20897":2,"20898":2,"20899":1,"20900":2,"20901":2,"20902":2,"20903":1,"20904":2,"20905":1,"20906":1,"20907":1,"20908":2,"20909":2,"20910":2,"20911":2,"20912":2,"20913":1,"20914":2,"20915":2,"20916":1,"20917":2,"20918":2,"20919":1,"20920":1,"20921":1,"20922":1,"20923":2,"20924":1,"20925":2,"20926":1,"20927":1,"20928":2,"20929":1,"20930":1,"20931":1,"20932":2,"20933":2,"20934":2,"20935":2,"20936":1,"20937":2,"20938":2,"20939":1,"20940":2,"20941":1,"20942":1,"20943":2,"20944":1,"20945":1,"20946":1,"20947":2,"20948":1,"20949":1,"20950":2,"20951":2,"20952":2,"20953":2,"20954":1,"20955":1,"20956":1,"20957":1,"20958":2,"20959":2,"20960":2,"20961":2,"20962":2,"20963":1,"20964":1,"20965":2,"20966":2,"20967":1,"20968":2,"20969":2,"20970":2,"20971":1,"20972":1,"20973":2,"20974":1,"20975":1,"20976":1,"20977":2,"20978":1,"20979":2,"20980":2,"20981":2,"20982":1,"20983":1,"20984":2,"20985":2,"20986":2,"20987":1,"20988":1,"20989":2,"20990":1,"20991":2,"20992":2,"20993":1,"20994":2,"20995":1,"20996":2,"20997":2,"20998":2,"20999":2,"21000":1,"21001":2,"21002":2,"21003":1,"21004":1,"21005":1,"21006":2,"21007":2,"21008":1,"21009":1,"21010":2,"21011":2,"21012":1,"21013":1,"21014":1,"21015":1,"21016":2,"21017":1,"21018":1,"21019":1,"21020":1,"21021":2,"21022":1,"21023":1,"21024":2,"21025":1,"21026":2,"21027":2,"21028":1,"21029":2,"21030":2,"21031":1,"21032":2,"21033":2,"21034":2,"21035":2,"21036":2,"21037":2,"21038":1,"21039":2,"21040":2,"21041":1,"21042":2,"21043":1,"21044":1,"21045":2,"21046":1,"21047":2,"21048":1,"21049":1,"21050":2,"21051":2,"21052":2,"21053":1,"21054":2,"21055":2,"21056":1,"21057":2,"21058":2,"21059":2,"21060":2,"21061":1,"21062":1,"21063":2,"21064":1,"21065":2,"21066":1,"21067":2,"21068":1,"21069":2,"21070":1,"21071":2,"21072":2,"21073":2,"21074":2,"21075":1,"21076":1,"21077":2,"21078":1,"21079":1,"21080":1,"21081":2,"21082":1,"21083":2,"21084":1,"21085":1,"21086":1,"21087":2,"21088":2,"21089":1,"21090":1,"21091":2,"21092":1,"21093":1,"21094":1,"21095":2,"21096":1,"21097":2,"21098":1,"21099":1,"21100":2,"21101":2,"21102":1,"21103":2,"21104":1,"21105":1,"21106":2,"21107":1,"21108":2,"21109":1,"21110":1,"21111":1,"21112":2,"21113":2,"21114":2,"21115":2,"21116":2,"21117":2,"21118":2,"21119":2,"21120":1,"21121":2,"21122":2,"21123":1,"21124":1,"21125":2,"21126":1,"21127":2,"21128":1,"21129":2,"21130":1,"21131":1,"21132":2,"21133":2,"21134":1,"21135":1,"21136":2,"21137":2,"21138":1,"21139":1,"21140":2,"21141":2,"21142":1,"21143":1,"21144":2,"21145":2,"21146":1,"21147":1,"21148":1,"21149":2,"21150":2,"21151":2,"21152":2,"21153":1,"21154":1,"21155":2,"21156":1,"21157":2,"21158":1,"21159":1,"21160":2,"21161":2,"21162":2,"21163":1,"21164":2,"21165":2,"21166":2,"21167":2,"21168":2,"21169":2,"21170":1,"21171":1,"21172":2,"21173":2,"21174":1,"21175":2,"21176":2,"21177":2,"21178":1,"21179":2,"21180":1,"21181":2,"21182":2,"21183":1,"21184":2,"21185":1,"21186":1,"21187":2,"21188":1,"21189":1,"21190":2,"21191":1,"21192":1,"21193":1,"21194":2,"21195":1,"21196":2,"21197":2,"21198":1,"21199":2,"21200":1,"21201":1,"21202":2,"21203":2,"21204":1,"21205":1,"21206":2,"21207":2,"21208":2,"21209":2,"21210":2,"21211":1,"21212":1,"21213":1,"21214":1,"21215":2,"21216":1,"21217":2,"21218":2,"21219":1,"21220":2,"21221":2,"21222":1,"21223":2,"21224":2,"21225":2,"21226":1,"21227":1,"21228":1,"21229":2,"21230":1,"21231":1,"21232":2,"21233":2,"21234":2,"21235":1,"21236":2,"21237":1,"21238":1,"21239":1,"21240":2,"21241":2,"21242":1,"21243":1,"21244":1,"21245":1,"21246":2,"21247":1,"21248":2,"21249":1,"21250":1,"21251":2,"21252":1,"21253":1,"21254":1,"21255":2,"21256":1,"21257":1,"21258":2,"21259":1,"21260":2,"21261":2,"21262":2,"21263":1,"21264":1,"21265":1,"21266":1,"21267":2,"21268":2,"21269":1,"21270":2,"21271":1,"21272":1,"21273":1,"21274":1,"21275":2,"21276":1,"21277":2,"21278":1,"21279":2,"21280":2,"21281":2,"21282":2,"21283":1,"21284":1,"21285":2,"21286":2,"21287":2,"21288":1,"21289":1,"21290":1,"21291":2,"21292":1,"21293":2,"21294":2,"21295":1,"21296":1,"21297":2,"21298":1,"21299":2,"21300":2,"21301":2,"21302":2,"21303":1,"21304":2,"21305":2,"21306":1,"21307":1,"21308":2,"21309":1,"21310":1,"21311":2,"21312":1,"21313":1,"21314":2,"21315":1,"21316":1,"21317":1,"21318":1,"21319":1,"21320":1,"21321":1,"21322":2,"21323":1,"21324":1,"21325":2,"21326":1,"21327":1,"21328":2,"21329":2,"21330":2,"21331":2,"21332":2,"21333":1,"21334":1,"21335":2,"21336":2,"21337":1,"21338":1,"21339":2,"21340":1,"21341":2,"21342":2,"21343":2,"21344":1,"21345":2,"21346":1,"21347":1,"21348":2,"21349":2,"21350":2,"21351":2,"21352":1,"21353":1,"21354":1,"21355":1,"21356":1,"21357":1,"21358":1,"21359":2,"21360":1,"21361":2,"21362":1,"21363":1,"21364":1,"21365":2,"21366":1,"21367":2,"21368":2,"21369":2,"21370":1,"21371":1,"21372":2,"21373":1,"21374":2,"21375":2,"21376":1,"21377":2,"21378":1,"21379":2,"21380":2,"21381":1,"21382":1,"21383":1,"21384":1,"21385":2,"21386":1,"21387":1,"21388":2,"21389":1,"21390":1,"21391":1,"21392":1,"21393":2,"21394":2,"21395":2,"21396":1,"21397":2,"21398":2,"21399":1,"21400":1,"21401":1,"21402":2,"21403":1,"21404":2,"21405":2,"21406":1,"21407":1,"21408":1,"21409":1,"21410":1,"21411":1,"21412":1,"21413":2,"21414":1,"21415":2,"21416":1,"21417":1,"21418":2,"21419":2,"21420":1,"21421":2,"21422":1,"21423":1,"21424":1,"21425":1,"21426":2,"21427":1,"21428":2,"21429":1,"21430":1,"21431":1,"21432":2,"21433":2,"21434":1,"21435":1,"21436":2,"21437":1,"21438":1,"21439":1,"21440":2,"21441":1,"21442":1,"21443":1,"21444":2,"21445":1,"21446":1,"21447":2,"21448":1,"21449":1,"21450":2,"21451":2,"21452":1,"21453":1,"21454":1,"21455":2,"21456":2,"21457":1,"21458":2,"21459":1,"21460":2,"21461":1,"21462":2,"21463":1,"21464":2,"21465":1,"21466":2,"21467":1,"21468":1,"21469":2,"21470":2,"21471":1,"21472":2,"21473":1,"21474":1,"21475":1,"21476":2,"21477":2,"21478":1,"21479":1,"21480":2,"21481":1,"21482":1,"21483":2,"21484":1,"21485":1,"21486":1,"21487":1,"21488":1,"21489":2,"21490":1,"21491":1,"21492":1,"21493":2,"21494":1,"21495":2,"21496":1,"21497":2,"21498":1,"21499":2,"21500":2,"21501":1,"21502":2,"21503":1,"21504":1,"21505":2,"21506":2,"21507":2,"21508":2,"21509":1,"21510":2,"21511":2,"21512":1,"21513":1,"21514":1,"21515":1,"21516":1,"21517":2,"21518":1,"21519":1,"21520":2,"21521":1,"21522":2,"21523":2,"21524":1,"21525":2,"21526":2,"21527":1,"21528":2,"21529":2,"21530":2,"21531":1,"21532":2,"21533":2,"21534":2,"21535":2,"21536":1,"21537":1,"21538":1,"21539":2,"21540":2,"21541":1,"21542":1,"21543":1,"21544":1,"21545":1,"21546":2,"21547":1,"21548":1,"21549":2,"21550":2,"21551":2,"21552":1,"21553":1,"21554":1,"21555":2,"21556":2,"21557":1,"21558":1,"21559":2,"21560":1,"21561":2,"21562":1,"21563":1,"21564":2,"21565":1,"21566":1,"21567":1,"21568":2,"21569":1,"21570":1,"21571":2,"21572":2,"21573":1,"21574":2,"21575":1,"21576":2,"21577":2,"21578":1,"21579":1,"21580":2,"21581":2,"21582":2,"21583":1,"21584":2,"21585":2,"21586":2,"21587":2,"21588":1,"21589":2,"21590":2,"21591":2,"21592":2,"21593":1,"21594":2,"21595":2,"21596":2,"21597":1,"21598":1,"21599":2,"21600":1,"21601":1,"21602":2,"21603":2,"21604":1,"21605":2,"21606":2,"21607":1,"21608":1,"21609":1,"21610":1,"21611":1,"21612":1,"21613":1,"21614":2,"21615":1,"21616":2,"21617":2,"21618":1,"21619":2,"21620":2,"21621":2,"21622":2,"21623":2,"21624":2,"21625":1,"21626":2,"21627":2,"21628":1,"21629":2,"21630":1,"21631":2,"21632":1,"21633":2,"21634":1,"21635":1,"21636":2,"21637":2,"21638":2,"21639":2,"21640":2,"21641":2,"21642":2,"21643":2,"21644":2,"21645":1,"21646":2,"21647":1,"21648":1,"21649":2,"21650":2,"21651":1,"21652":2,"21653":1,"21654":1,"21655":2,"21656":1,"21657":1,"21658":2,"21659":2,"21660":2,"21661":2,"21662":2,"21663":1,"21664":2,"21665":2,"21666":1,"21667":2,"21668":1,"21669":1,"21670":1,"21671":1,"21672":2,"21673":2,"21674":2,"21675":2,"21676":2,"21677":1,"21678":2,"21679":2,"21680":2,"21681":1,"21682":2,"21683":1,"21684":2,"21685":1,"21686":1,"21687":1,"21688":1,"21689":2,"21690":1,"21691":2,"21692":1,"21693":2,"21694":1,"21695":1,"21696":2,"21697":1,"21698":2,"21699":1,"21700":2,"21701":1,"21702":1,"21703":1,"21704":2,"21705":2,"21706":2,"21707":1,"21708":2,"21709":2,"21710":1,"21711":1,"21712":1,"21713":1,"21714":2,"21715":2,"21716":2,"21717":1,"21718":1,"21719":2,"21720":2,"21721":1,"21722":1,"21723":1,"21724":2,"21725":1,"21726":2,"21727":1,"21728":2,"21729":1,"21730":1,"21731":2,"21732":2,"21733":1,"21734":1,"21735":1,"21736":2,"21737":1,"21738":1,"21739":1,"21740":2,"21741":1,"21742":1,"21743":2,"21744":2,"21745":1,"21746":2,"21747":1,"21748":2,"21749":1,"21750":1,"21751":2,"21752":1,"21753":2,"21754":2,"21755":2,"21756":2,"21757":1,"21758":2,"21759":1,"21760":1,"21761":2,"21762":1,"21763":2,"21764":1,"21765":2,"21766":1,"21767":2,"21768":1,"21769":2,"21770":1,"21771":2,"21772":2,"21773":1,"21774":2,"21775":1,"21776":1,"21777":1,"21778":2,"21779":2,"21780":1,"21781":2,"21782":1,"21783":1,"21784":1,"21785":2,"21786":2,"21787":1,"21788":2,"21789":1,"21790":1,"21791":2,"21792":1,"21793":1,"21794":2,"21795":1,"21796":1,"21797":2,"21798":1,"21799":2,"21800":1,"21801":1,"21802":1,"21803":2,"21804":2,"21805":2,"21806":1,"21807":1,"21808":1,"21809":1,"21810":1,"21811":2,"21812":1,"21813":1,"21814":2,"21815":2,"21816":1,"21817":1,"21818":2,"21819":1,"21820":1,"21821":2,"21822":2,"21823":2,"21824":1,"21825":1,"21826":1,"21827":2,"21828":1,"21829":2,"21830":2,"21831":2,"21832":2,"21833":1,"21834":2,"21835":2,"21836":1,"21837":2,"21838":1,"21839":1,"21840":1,"21841":1,"21842":1,"21843":1,"21844":1,"21845":2,"21846":1,"21847":2,"21848":2,"21849":1,"21850":2,"21851":1,"21852":2,"21853":1,"21854":1,"21855":1,"21856":1,"21857":2,"21858":1,"21859":1,"21860":1,"21861":1,"21862":1,"21863":1,"21864":2,"21865":1,"21866":2,"21867":1,"21868":2,"21869":1,"21870":1,"21871":2,"21872":1,"21873":2,"21874":1,"21875":1,"21876":1,"21877":2,"21878":2,"21879":2,"21880":1,"21881":1,"21882":1,"21883":1,"21884":1,"21885":2,"21886":1,"21887":1,"21888":2,"21889":1,"21890":2,"21891":2,"21892":1,"21893":1,"21894":2,"21895":1,"21896":2,"21897":1,"21898":2,"21899":1,"21900":1,"21901":2,"21902":2,"21903":1,"21904":1,"21905":1,"21906":1,"21907":1,"21908":2,"21909":2,"21910":2,"21911":2,"21912":1,"21913":1,"21914":1,"21915":1,"21916":2,"21917":1,"21918":2,"21919":1,"21920":2,"21921":1,"21922":2,"21923":1,"21924":2,"21925":1,"21926":1,"21927":1,"21928":2,"21929":2,"21930":2,"21931":2,"21932":2,"21933":2,"21934":1,"21935":1,"21936":1,"21937":2,"21938":2,"21939":2,"21940":2,"21941":2,"21942":1,"21943":1,"21944":2,"21945":1,"21946":1,"21947":1,"21948":2,"21949":1,"21950":1,"21951":1,"21952":1,"21953":1,"21954":2,"21955":2,"21956":1,"21957":1,"21958":1,"21959":1,"21960":2,"21961":2,"21962":2,"21963":1,"21964":2,"21965":1,"21966":2,"21967":1,"21968":2,"21969":2,"21970":2,"21971":2,"21972":2,"21973":2,"21974":1,"21975":2,"21976":1,"21977":1,"21978":2,"21979":1,"21980":2,"21981":2,"21982":1,"21983":1,"21984":2,"21985":1,"21986":2,"21987":2,"21988":1,"21989":1,"21990":2,"21991":2,"21992":1,"21993":2,"21994":1,"21995":1,"21996":1,"21997":1,"21998":1,"21999":2,"22000":1,"22001":2,"22002":1,"22003":1,"22004":1,"22005":1,"22006":1,"22007":1,"22008":1,"22009":1,"22010":2,"22011":1,"22012":1,"22013":2,"22014":2,"22015":1,"22016":1,"22017":2,"22018":1,"22019":2,"22020":1,"22021":1,"22022":1,"22023":1,"22024":2,"22025":1,"22026":1,"22027":2,"22028":2,"22029":1,"22030":1,"22031":2,"22032":2,"22033":1,"22034":1,"22035":1,"22036":1,"22037":1,"22038":1,"22039":2,"22040":1,"22041":2,"22042":2,"22043":1,"22044":2,"22045":2,"22046":2,"22047":2,"22048":1,"22049":2,"22050":2,"22051":2,"22052":2,"22053":2,"22054":1,"22055":2,"22056":2,"22057":2,"22058":2,"22059":2,"22060":1,"22061":2,"22062":1,"22063":2,"22064":2,"22065":1,"22066":1,"22067":1,"22068":2,"22069":1,"22070":1,"22071":1,"22072":1,"22073":1,"22074":2,"22075":2,"22076":1,"22077":2,"22078":1,"22079":2,"22080":1,"22081":2,"22082":2,"22083":2,"22084":1,"22085":2,"22086":2,"22087":2,"22088":2,"22089":1,"22090":1,"22091":1,"22092":2,"22093":1,"22094":1,"22095":1,"22096":2,"22097":2,"22098":1,"22099":1,"22100":1,"22101":2,"22102":2,"22103":1,"22104":2,"22105":2,"22106":2,"22107":2,"22108":1,"22109":2,"22110":1,"22111":2,"22112":1,"22113":1,"22114":1,"22115":2,"22116":1,"22117":1,"22118":2,"22119":2,"22120":1,"22121":1,"22122":2,"22123":1,"22124":2,"22125":2,"22126":1,"22127":1,"22128":1,"22129":2,"22130":2,"22131":2,"22132":1,"22133":1,"22134":1,"22135":1,"22136":2,"22137":1,"22138":2,"22139":2,"22140":1,"22141":2,"22142":2,"22143":2,"22144":1,"22145":1,"22146":1,"22147":1,"22148":1,"22149":1,"22150":1,"22151":1,"22152":1,"22153":1,"22154":1,"22155":1,"22156":1,"22157":1,"22158":1,"22159":1,"22160":2,"22161":2,"22162":2,"22163":2,"22164":2,"22165":1,"22166":2,"22167":2,"22168":1,"22169":1,"22170":2,"22171":2,"22172":2,"22173":2,"22174":1,"22175":1,"22176":2,"22177":2,"22178":1,"22179":2,"22180":1,"22181":1,"22182":2,"22183":1,"22184":1,"22185":2,"22186":2,"22187":2,"22188":2,"22189":1,"22190":1,"22191":1,"22192":2,"22193":1,"22194":1,"22195":2,"22196":1,"22197":2,"22198":1,"22199":2,"22200":1,"22201":1,"22202":1,"22203":2,"22204":2,"22205":2,"22206":2,"22207":1,"22208":1,"22209":1,"22210":2,"22211":2,"22212":1,"22213":1,"22214":1,"22215":1,"22216":1,"22217":1,"22218":2,"22219":1,"22220":2,"22221":1,"22222":2,"22223":1,"22224":1,"22225":1,"22226":2,"22227":2,"22228":2,"22229":2,"22230":2,"22231":1,"22232":1,"22233":2,"22234":1,"22235":1,"22236":2,"22237":2,"22238":1,"22239":2,"22240":1,"22241":2,"22242":1,"22243":2,"22244":1,"22245":2,"22246":2,"22247":1,"22248":2,"22249":1,"22250":2,"22251":1,"22252":2,"22253":2,"22254":2,"22255":1,"22256":2,"22257":2,"22258":2,"22259":2,"22260":1,"22261":1,"22262":1,"22263":1,"22264":2,"22265":1,"22266":1,"22267":2,"22268":1,"22269":1,"22270":2,"22271":1,"22272":2,"22273":2,"22274":2,"22275":2,"22276":1,"22277":1,"22278":2,"22279":1,"22280":2,"22281":1,"22282":1,"22283":2,"22284":1,"22285":2,"22286":2,"22287":1,"22288":2,"22289":2,"22290":1,"22291":1,"22292":2,"22293":1,"22294":2,"22295":1,"22296":2,"22297":1,"22298":1,"22299":1,"22300":1,"22301":2,"22302":2,"22303":1,"22304":1,"22305":1,"22306":2,"22307":2,"22308":2,"22309":1,"22310":1,"22311":2,"22312":1,"22313":2,"22314":2,"22315":2,"22316":1,"22317":1,"22318":2,"22319":1,"22320":2,"22321":2,"22322":1,"22323":2,"22324":2,"22325":2,"22326":2,"22327":1,"22328":1,"22329":2,"22330":1,"22331":2,"22332":1,"22333":1,"22334":1,"22335":1,"22336":2,"22337":1,"22338":2,"22339":2,"22340":1,"22341":2,"22342":2,"22343":1,"22344":1,"22345":2,"22346":2,"22347":2,"22348":2,"22349":2,"22350":1,"22351":2,"22352":2,"22353":2,"22354":1,"22355":1,"22356":2,"22357":2,"22358":2,"22359":1,"22360":2,"22361":1,"22362":1,"22363":2,"22364":2,"22365":2,"22366":1,"22367":2,"22368":1,"22369":2,"22370":2,"22371":1,"22372":1,"22373":2,"22374":2,"22375":1,"22376":2,"22377":1,"22378":1,"22379":2,"22380":1,"22381":1,"22382":1,"22383":1,"22384":1,"22385":2,"22386":1,"22387":2,"22388":1,"22389":2,"22390":1,"22391":1,"22392":1,"22393":1,"22394":1,"22395":2,"22396":2,"22397":2,"22398":2,"22399":2,"22400":1,"22401":1,"22402":2,"22403":1,"22404":2,"22405":2,"22406":1,"22407":1,"22408":2,"22409":1,"22410":2,"22411":1,"22412":2,"22413":2,"22414":1,"22415":1,"22416":2,"22417":1,"22418":2,"22419":2,"22420":1,"22421":1,"22422":1,"22423":1,"22424":1,"22425":2,"22426":1,"22427":1,"22428":1,"22429":1,"22430":1,"22431":2,"22432":2,"22433":2,"22434":1,"22435":2,"22436":2,"22437":1,"22438":2,"22439":2,"22440":2,"22441":1,"22442":1,"22443":2,"22444":1,"22445":2,"22446":1,"22447":1,"22448":1,"22449":1,"22450":2,"22451":2,"22452":1,"22453":1,"22454":2,"22455":2,"22456":1,"22457":1,"22458":2,"22459":1,"22460":1,"22461":2,"22462":2,"22463":1,"22464":2,"22465":1,"22466":1,"22467":2,"22468":1,"22469":2,"22470":1,"22471":1,"22472":1,"22473":1,"22474":2,"22475":2,"22476":1,"22477":1,"22478":2,"22479":2,"22480":2,"22481":1,"22482":2,"22483":1,"22484":2,"22485":1,"22486":1,"22487":2,"22488":2,"22489":2,"22490":2,"22491":2,"22492":2,"22493":1,"22494":1,"22495":2,"22496":2,"22497":2,"22498":2,"22499":2,"22500":1,"22501":2,"22502":1,"22503":2,"22504":2,"22505":2,"22506":1,"22507":2,"22508":1,"22509":1,"22510":1,"22511":1,"22512":2,"22513":1,"22514":1,"22515":2,"22516":1,"22517":2,"22518":2,"22519":1,"22520":2,"22521":2,"22522":2,"22523":1,"22524":2,"22525":2,"22526":2,"22527":1,"22528":1,"22529":2,"22530":2,"22531":2,"22532":1,"22533":1,"22534":1,"22535":1,"22536":2,"22537":2,"22538":2,"22539":2,"22540":1,"22541":2,"22542":1,"22543":1,"22544":1,"22545":1,"22546":2,"22547":2,"22548":2,"22549":1,"22550":2,"22551":2,"22552":2,"22553":2,"22554":2,"22555":2,"22556":2,"22557":1,"22558":1,"22559":2,"22560":1,"22561":1,"22562":1,"22563":2,"22564":2,"22565":2,"22566":2,"22567":1,"22568":2,"22569":2,"22570":1,"22571":1,"22572":1,"22573":1,"22574":1,"22575":2,"22576":1,"22577":1,"22578":1,"22579":2,"22580":2,"22581":1,"22582":2,"22583":1,"22584":1,"22585":1,"22586":2,"22587":1,"22588":2,"22589":1,"22590":2,"22591":2,"22592":1,"22593":1,"22594":1,"22595":2,"22596":1,"22597":1,"22598":1,"22599":2,"22600":1,"22601":1,"22602":2,"22603":1,"22604":2,"22605":1,"22606":1,"22607":1,"22608":1,"22609":1,"22610":2,"22611":1,"22612":2,"22613":2,"22614":2,"22615":2,"22616":2,"22617":2,"22618":2,"22619":1,"22620":1,"22621":1,"22622":2,"22623":1,"22624":2,"22625":1,"22626":1,"22627":2,"22628":2,"22629":2,"22630":1,"22631":1,"22632":1,"22633":2,"22634":1,"22635":2,"22636":1,"22637":1,"22638":2,"22639":1,"22640":1,"22641":2,"22642":1,"22643":1,"22644":1,"22645":1,"22646":2,"22647":2,"22648":1,"22649":1,"22650":1,"22651":2,"22652":1,"22653":2,"22654":2,"22655":2,"22656":1,"22657":1,"22658":1,"22659":1,"22660":2,"22661":2,"22662":1,"22663":1,"22664":1,"22665":2,"22666":2,"22667":1,"22668":1,"22669":2,"22670":1,"22671":2,"22672":2,"22673":1,"22674":2,"22675":1,"22676":2,"22677":2,"22678":2,"22679":2,"22680":2,"22681":2,"22682":2,"22683":2,"22684":2,"22685":1,"22686":2,"22687":1,"22688":2,"22689":1,"22690":2,"22691":1,"22692":1,"22693":1,"22694":2,"22695":1,"22696":2,"22697":2,"22698":2,"22699":1,"22700":1,"22701":2,"22702":2,"22703":1,"22704":2,"22705":1,"22706":2,"22707":1,"22708":2,"22709":2,"22710":1,"22711":1,"22712":1,"22713":2,"22714":2,"22715":1,"22716":1,"22717":2,"22718":2,"22719":1,"22720":1,"22721":2,"22722":2,"22723":2,"22724":2,"22725":1,"22726":2,"22727":1,"22728":1,"22729":1,"22730":1,"22731":2,"22732":2,"22733":1,"22734":1,"22735":1,"22736":2,"22737":1,"22738":2,"22739":1,"22740":1,"22741":2,"22742":2,"22743":1,"22744":2,"22745":1,"22746":2,"22747":1,"22748":2,"22749":2,"22750":1,"22751":1,"22752":1,"22753":2,"22754":1,"22755":1,"22756":1,"22757":2,"22758":2,"22759":1,"22760":2,"22761":1,"22762":2,"22763":2,"22764":1,"22765":1,"22766":1,"22767":1,"22768":2,"22769":1,"22770":2,"22771":1,"22772":1,"22773":2,"22774":2,"22775":1,"22776":1,"22777":2,"22778":1,"22779":1,"22780":1,"22781":1,"22782":1,"22783":2,"22784":2,"22785":1,"22786":2,"22787":2,"22788":2,"22789":2,"22790":2,"22791":2,"22792":2,"22793":2,"22794":1,"22795":1,"22796":1,"22797":1,"22798":2,"22799":2,"22800":2,"22801":1,"22802":1,"22803":2,"22804":2,"22805":2,"22806":2,"22807":2,"22808":1,"22809":1,"22810":2,"22811":2,"22812":2,"22813":2,"22814":1,"22815":2,"22816":2,"22817":2,"22818":2,"22819":1,"22820":2,"22821":2,"22822":1,"22823":2,"22824":1,"22825":2,"22826":2,"22827":2,"22828":1,"22829":2,"22830":1,"22831":1,"22832":1,"22833":2,"22834":2,"22835":1,"22836":1,"22837":1,"22838":2,"22839":1,"22840":1,"22841":2,"22842":2,"22843":1,"22844":2,"22845":1,"22846":2,"22847":2,"22848":2,"22849":1,"22850":1,"22851":2,"22852":2,"22853":1,"22854":1,"22855":2,"22856":1,"22857":1,"22858":1,"22859":2,"22860":2,"22861":2,"22862":2,"22863":2,"22864":1,"22865":2,"22866":1,"22867":2,"22868":1,"22869":2,"22870":2,"22871":2,"22872":2,"22873":2,"22874":1,"22875":1,"22876":1,"22877":1,"22878":2,"22879":2,"22880":1,"22881":2,"22882":1,"22883":2,"22884":2,"22885":1,"22886":1,"22887":1,"22888":1,"22889":2,"22890":2,"22891":1,"22892":1,"22893":2,"22894":2,"22895":1,"22896":2,"22897":1,"22898":1,"22899":2,"22900":2,"22901":2,"22902":1,"22903":1,"22904":2,"22905":2,"22906":1,"22907":1,"22908":1,"22909":1,"22910":2,"22911":2,"22912":1,"22913":1,"22914":2,"22915":2,"22916":2,"22917":2,"22918":1,"22919":1,"22920":1,"22921":1,"22922":2,"22923":1,"22924":2,"22925":1,"22926":2,"22927":2,"22928":2,"22929":2,"22930":1,"22931":2,"22932":1,"22933":2,"22934":1,"22935":1,"22936":2,"22937":1,"22938":2,"22939":1,"22940":1,"22941":1,"22942":1,"22943":2,"22944":1,"22945":1,"22946":1,"22947":1,"22948":1,"22949":1,"22950":1,"22951":2,"22952":1,"22953":2,"22954":2,"22955":1,"22956":2,"22957":1,"22958":1,"22959":2,"22960":2,"22961":2,"22962":2,"22963":2,"22964":1,"22965":2,"22966":1,"22967":1,"22968":2,"22969":1,"22970":2,"22971":2,"22972":2,"22973":2,"22974":1,"22975":2,"22976":2,"22977":1,"22978":1,"22979":2,"22980":2,"22981":2,"22982":2,"22983":2,"22984":1,"22985":2,"22986":1,"22987":1,"22988":2,"22989":1,"22990":2,"22991":1,"22992":2,"22993":1,"22994":1,"22995":1,"22996":1,"22997":2,"22998":2,"22999":1,"23000":1,"23001":1,"23002":2,"23003":1,"23004":1,"23005":1,"23006":1,"23007":2,"23008":2,"23009":1,"23010":1,"23011":1,"23012":1,"23013":2,"23014":1,"23015":1,"23016":2,"23017":2,"23018":1,"23019":1,"23020":2,"23021":2,"23022":2,"23023":1,"23024":2,"23025":1,"23026":2,"23027":1,"23028":2,"23029":1,"23030":1,"23031":1,"23032":2,"23033":2,"23034":1,"23035":1,"23036":2,"23037":1,"23038":2,"23039":1,"23040":1,"23041":2,"23042":2,"23043":1,"23044":2,"23045":2,"23046":1,"23047":2,"23048":1,"23049":2,"23050":1,"23051":1,"23052":2,"23053":2,"23054":1,"23055":2,"23056":2,"23057":2,"23058":1,"23059":2,"23060":2,"23061":2,"23062":2,"23063":1,"23064":2,"23065":2,"23066":2,"23067":1,"23068":2,"23069":1,"23070":2,"23071":1,"23072":1,"23073":2,"23074":1,"23075":1,"23076":2,"23077":2,"23078":1,"23079":1,"23080":1,"23081":1,"23082":2,"23083":1,"23084":2,"23085":2,"23086":2,"23087":1,"23088":1,"23089":1,"23090":1,"23091":1,"23092":1,"23093":2,"23094":1,"23095":1,"23096":1,"23097":1,"23098":2,"23099":2,"23100":2,"23101":2,"23102":2,"23103":1,"23104":1,"23105":1,"23106":1,"23107":2,"23108":2,"23109":1,"23110":2,"23111":1,"23112":1,"23113":2,"23114":2,"23115":1,"23116":2,"23117":1,"23118":1,"23119":1,"23120":2,"23121":2,"23122":2,"23123":2,"23124":1,"23125":2,"23126":2,"23127":1,"23128":2,"23129":1,"23130":2,"23131":1,"23132":2,"23133":1,"23134":1,"23135":1,"23136":1,"23137":2,"23138":1,"23139":2,"23140":2,"23141":1,"23142":2,"23143":2,"23144":1,"23145":1,"23146":1,"23147":1,"23148":1,"23149":2,"23150":2,"23151":1,"23152":1,"23153":2,"23154":1,"23155":2,"23156":2,"23157":1,"23158":1,"23159":1,"23160":2,"23161":2,"23162":1,"23163":1,"23164":1,"23165":2,"23166":2,"23167":1,"23168":1,"23169":1,"23170":2,"23171":1,"23172":2,"23173":2,"23174":2,"23175":1,"23176":2,"23177":2,"23178":2,"23179":2,"23180":1,"23181":2,"23182":1,"23183":2,"23184":1,"23185":2,"23186":2,"23187":1,"23188":2,"23189":1,"23190":2,"23191":2,"23192":1,"23193":1,"23194":1,"23195":2,"23196":1,"23197":1,"23198":1,"23199":1,"23200":2,"23201":1,"23202":1,"23203":1,"23204":2,"23205":2,"23206":2,"23207":2,"23208":2,"23209":2,"23210":2,"23211":2,"23212":1,"23213":1,"23214":2,"23215":2,"23216":1,"23217":2,"23218":2,"23219":1,"23220":2,"23221":2,"23222":1,"23223":1,"23224":1,"23225":2,"23226":2,"23227":2,"23228":2,"23229":2,"23230":2,"23231":2,"23232":1,"23233":1,"23234":2,"23235":2,"23236":2,"23237":1,"23238":1,"23239":2,"23240":1,"23241":1,"23242":1,"23243":1,"23244":2,"23245":2,"23246":2,"23247":2,"23248":1,"23249":2,"23250":2,"23251":2,"23252":2,"23253":1,"23254":1,"23255":2,"23256":1,"23257":1,"23258":1,"23259":1,"23260":2,"23261":2,"23262":2,"23263":2,"23264":2,"23265":2,"23266":1,"23267":1,"23268":1,"23269":2,"23270":2,"23271":1,"23272":1,"23273":2,"23274":1,"23275":2,"23276":2,"23277":2,"23278":1,"23279":2,"23280":1,"23281":1,"23282":2,"23283":1,"23284":2,"23285":1,"23286":1,"23287":2,"23288":1,"23289":2,"23290":2,"23291":1,"23292":1,"23293":2,"23294":1,"23295":1,"23296":1,"23297":1,"23298":2,"23299":2,"23300":1,"23301":2,"23302":1,"23303":2,"23304":1,"23305":1,"23306":2,"23307":1,"23308":2,"23309":2,"23310":2,"23311":2,"23312":1,"23313":1,"23314":2,"23315":2,"23316":2,"23317":2,"23318":1,"23319":2,"23320":2,"23321":2,"23322":2,"23323":2,"23324":2,"23325":1,"23326":2,"23327":2,"23328":2,"23329":1,"23330":1,"23331":2,"23332":1,"23333":1,"23334":2,"23335":1,"23336":2,"23337":1,"23338":1,"23339":2,"23340":1,"23341":1,"23342":2,"23343":2,"23344":2,"23345":2,"23346":2,"23347":2,"23348":2,"23349":1,"23350":1,"23351":2,"23352":2,"23353":1,"23354":1,"23355":2,"23356":1,"23357":2,"23358":2,"23359":1,"23360":1,"23361":2,"23362":2,"23363":2,"23364":1,"23365":1,"23366":1,"23367":2,"23368":1,"23369":1,"23370":2,"23371":1,"23372":2,"23373":1,"23374":2,"23375":1,"23376":2,"23377":1,"23378":2,"23379":2,"23380":2,"23381":1,"23382":2,"23383":1,"23384":1,"23385":1,"23386":1,"23387":1,"23388":1,"23389":1,"23390":2,"23391":1,"23392":2,"23393":2,"23394":2,"23395":2,"23396":2,"23397":2,"23398":2,"23399":1,"23400":1,"23401":1,"23402":2,"23403":1,"23404":2,"23405":2,"23406":1,"23407":1,"23408":2,"23409":2,"23410":2,"23411":1,"23412":2,"23413":1,"23414":1,"23415":2,"23416":2,"23417":1,"23418":2,"23419":2,"23420":2,"23421":2,"23422":2,"23423":2,"23424":2,"23425":1,"23426":2,"23427":2,"23428":2,"23429":1,"23430":1,"23431":1,"23432":2,"23433":2,"23434":2,"23435":1,"23436":2,"23437":2,"23438":2,"23439":1,"23440":2,"23441":1,"23442":1,"23443":2,"23444":1,"23445":1,"23446":1,"23447":2,"23448":1,"23449":1,"23450":2,"23451":2,"23452":1,"23453":1,"23454":1,"23455":1,"23456":2,"23457":1,"23458":2,"23459":1,"23460":2,"23461":2,"23462":2,"23463":2,"23464":2,"23465":2,"23466":2,"23467":2,"23468":2,"23469":1,"23470":2,"23471":1,"23472":2,"23473":2,"23474":1,"23475":2,"23476":1,"23477":2,"23478":2,"23479":1,"23480":2,"23481":2,"23482":2,"23483":1,"23484":1,"23485":2,"23486":1,"23487":1,"23488":1,"23489":2,"23490":1,"23491":1,"23492":2,"23493":1,"23494":2,"23495":1,"23496":2,"23497":1,"23498":1,"23499":2,"23500":2,"23501":1,"23502":2,"23503":1,"23504":2,"23505":2,"23506":2,"23507":1,"23508":2,"23509":2,"23510":1,"23511":1,"23512":1,"23513":2,"23514":1,"23515":2,"23516":1,"23517":1,"23518":2,"23519":1,"23520":2,"23521":2,"23522":1,"23523":1,"23524":1,"23525":1,"23526":1,"23527":1,"23528":2,"23529":2,"23530":1,"23531":2,"23532":2,"23533":1,"23534":2,"23535":1,"23536":1,"23537":1,"23538":1,"23539":1,"23540":1,"23541":1,"23542":2,"23543":2,"23544":1,"23545":1,"23546":2,"23547":2,"23548":2,"23549":2,"23550":1,"23551":2,"23552":1,"23553":2,"23554":2,"23555":2,"23556":2,"23557":2,"23558":1,"23559":2,"23560":2,"23561":1,"23562":2,"23563":2,"23564":1,"23565":2,"23566":2,"23567":1,"23568":1,"23569":1,"23570":1,"23571":2,"23572":1,"23573":2,"23574":2,"23575":2,"23576":1,"23577":1,"23578":1,"23579":2,"23580":2,"23581":2,"23582":2,"23583":1,"23584":2,"23585":1,"23586":1,"23587":1,"23588":1,"23589":2,"23590":2,"23591":2,"23592":2,"23593":2,"23594":2,"23595":1,"23596":1,"23597":1,"23598":1,"23599":2,"23600":2,"23601":1,"23602":2,"23603":1,"23604":1,"23605":1,"23606":1,"23607":1,"23608":2,"23609":1,"23610":2,"23611":1,"23612":2,"23613":1,"23614":2,"23615":1,"23616":2,"23617":1,"23618":2,"23619":1,"23620":1,"23621":2,"23622":2,"23623":1,"23624":2,"23625":2,"23626":1,"23627":1,"23628":2,"23629":2,"23630":1,"23631":2,"23632":1,"23633":2,"23634":2,"23635":2,"23636":1,"23637":2,"23638":1,"23639":2,"23640":2,"23641":1,"23642":1,"23643":2,"23644":2,"23645":2,"23646":1,"23647":1,"23648":1,"23649":2,"23650":1,"23651":2,"23652":1,"23653":2,"23654":1,"23655":2,"23656":1,"23657":1,"23658":2,"23659":2,"23660":1,"23661":2,"23662":1,"23663":1,"23664":2,"23665":2,"23666":1,"23667":2,"23668":2,"23669":1,"23670":2,"23671":1,"23672":1,"23673":1,"23674":2,"23675":1,"23676":2,"23677":1,"23678":2,"23679":2,"23680":2,"23681":2,"23682":1,"23683":1,"23684":1,"23685":1,"23686":1,"23687":2,"23688":1,"23689":2,"23690":2,"23691":1,"23692":2,"23693":2,"23694":2,"23695":1,"23696":1,"23697":1,"23698":2,"23699":1,"23700":2,"23701":1,"23702":2,"23703":1,"23704":2,"23705":2,"23706":2,"23707":1,"23708":2,"23709":2,"23710":1,"23711":2,"23712":2,"23713":2,"23714":1,"23715":2,"23716":1,"23717":1,"23718":1,"23719":2,"23720":1,"23721":2,"23722":2,"23723":2,"23724":1,"23725":2,"23726":1,"23727":2,"23728":2,"23729":2,"23730":1,"23731":1,"23732":1,"23733":1,"23734":1,"23735":1,"23736":2,"23737":2,"23738":1,"23739":2,"23740":1,"23741":2,"23742":2,"23743":2,"23744":2,"23745":2,"23746":2,"23747":2,"23748":1,"23749":2,"23750":1,"23751":1,"23752":2,"23753":1,"23754":2,"23755":1,"23756":2,"23757":1,"23758":1,"23759":1,"23760":2,"23761":2,"23762":2,"23763":2,"23764":1,"23765":2,"23766":2,"23767":2,"23768":1,"23769":2,"23770":1,"23771":2,"23772":1,"23773":1,"23774":2,"23775":1,"23776":1,"23777":2,"23778":1,"23779":2,"23780":1,"23781":1,"23782":2,"23783":1,"23784":1,"23785":1,"23786":2,"23787":2,"23788":1,"23789":2,"23790":2,"23791":1,"23792":2,"23793":2,"23794":2,"23795":2,"23796":2,"23797":2,"23798":2,"23799":1,"23800":2,"23801":2,"23802":2,"23803":2,"23804":2,"23805":2,"23806":1,"23807":1,"23808":2,"23809":1,"23810":1,"23811":2,"23812":1,"23813":1,"23814":1,"23815":1,"23816":2,"23817":1,"23818":2,"23819":2,"23820":2,"23821":1,"23822":1,"23823":2,"23824":1,"23825":1,"23826":2,"23827":1,"23828":2,"23829":1,"23830":1,"23831":1,"23832":1,"23833":2,"23834":1,"23835":1,"23836":1,"23837":2,"23838":1,"23839":1,"23840":1,"23841":1,"23842":1,"23843":1,"23844":2,"23845":1,"23846":1,"23847":2,"23848":2,"23849":2,"23850":1,"23851":2,"23852":1,"23853":1,"23854":2,"23855":1,"23856":1,"23857":1,"23858":2,"23859":1,"23860":1,"23861":2,"23862":1,"23863":2,"23864":1,"23865":2,"23866":1,"23867":2,"23868":2,"23869":1,"23870":2,"23871":1,"23872":1,"23873":2,"23874":1,"23875":1,"23876":2,"23877":1,"23878":1,"23879":1,"23880":1,"23881":1,"23882":2,"23883":2,"23884":2,"23885":2,"23886":1,"23887":1,"23888":1,"23889":2,"23890":1,"23891":1,"23892":1,"23893":2,"23894":1,"23895":1,"23896":1,"23897":2,"23898":1,"23899":2,"23900":2,"23901":2,"23902":1,"23903":2,"23904":2,"23905":2,"23906":1,"23907":2,"23908":2,"23909":1,"23910":2,"23911":2,"23912":1,"23913":2,"23914":1,"23915":2,"23916":2,"23917":1,"23918":1,"23919":1,"23920":2,"23921":2,"23922":1,"23923":1,"23924":1,"23925":2,"23926":1,"23927":1,"23928":2,"23929":1,"23930":2,"23931":1,"23932":1,"23933":2,"23934":1,"23935":1,"23936":2,"23937":2,"23938":2,"23939":2,"23940":2,"23941":2,"23942":2,"23943":1,"23944":1,"23945":1,"23946":1,"23947":1,"23948":2,"23949":2,"23950":2,"23951":2,"23952":1,"23953":2,"23954":1,"23955":1,"23956":1,"23957":2,"23958":2,"23959":2,"23960":1,"23961":1,"23962":2,"23963":1,"23964":1,"23965":2,"23966":2,"23967":2,"23968":1,"23969":2,"23970":1,"23971":1,"23972":1,"23973":2,"23974":1,"23975":2,"23976":2,"23977":1,"23978":1,"23979":2,"23980":1,"23981":2,"23982":1,"23983":2,"23984":1,"23985":2,"23986":1,"23987":2,"23988":2,"23989":2,"23990":2,"23991":1,"23992":1,"23993":1,"23994":2,"23995":2,"23996":1,"23997":2,"23998":2,"23999":2,"24000":2,"24001":1,"24002":1,"24003":2,"24004":1,"24005":1,"24006":2,"24007":1,"24008":2,"24009":1,"24010":2,"24011":1,"24012":2,"24013":1,"24014":2,"24015":1,"24016":2,"24017":2,"24018":2,"24019":2,"24020":1,"24021":2,"24022":1,"24023":2,"24024":1,"24025":2,"24026":2,"24027":1,"24028":2,"24029":2,"24030":1,"24031":1,"24032":1,"24033":2,"24034":1,"24035":1,"24036":1,"24037":2,"24038":2,"24039":2,"24040":1,"24041":1,"24042":1,"24043":1,"24044":2,"24045":1,"24046":1,"24047":2,"24048":2,"24049":2,"24050":2,"24051":2,"24052":2,"24053":1,"24054":2,"24055":2,"24056":1,"24057":2,"24058":1,"24059":2,"24060":1,"24061":2,"24062":1,"24063":1,"24064":2,"24065":1,"24066":1,"24067":1,"24068":1,"24069":2,"24070":1,"24071":1,"24072":1,"24073":2,"24074":2,"24075":1,"24076":1,"24077":1,"24078":2,"24079":2,"24080":2,"24081":2,"24082":1,"24083":2,"24084":2,"24085":1,"24086":1,"24087":2,"24088":2,"24089":1,"24090":1,"24091":2,"24092":2,"24093":2,"24094":1,"24095":2,"24096":2,"24097":1,"24098":1,"24099":2,"24100":1,"24101":2,"24102":2,"24103":1,"24104":1,"24105":1,"24106":1,"24107":2,"24108":1,"24109":2,"24110":2,"24111":1,"24112":2,"24113":2,"24114":1,"24115":1,"24116":2,"24117":1,"24118":2,"24119":1,"24120":1,"24121":1,"24122":1,"24123":1,"24124":2,"24125":2,"24126":2,"24127":2,"24128":2,"24129":1,"24130":2,"24131":2,"24132":2,"24133":1,"24134":1,"24135":2,"24136":1,"24137":2,"24138":2,"24139":1,"24140":2,"24141":1,"24142":1,"24143":2,"24144":1,"24145":1,"24146":1,"24147":2,"24148":1,"24149":1,"24150":2,"24151":1,"24152":2,"24153":1,"24154":1,"24155":1,"24156":1,"24157":2,"24158":1,"24159":1,"24160":2,"24161":1,"24162":2,"24163":1,"24164":2,"24165":1,"24166":2,"24167":1,"24168":2,"24169":1,"24170":1,"24171":1,"24172":2,"24173":2,"24174":2,"24175":1,"24176":2,"24177":1,"24178":2,"24179":2,"24180":1,"24181":1,"24182":1,"24183":1,"24184":1,"24185":2,"24186":2,"24187":1,"24188":2,"24189":2,"24190":1,"24191":2,"24192":1,"24193":1,"24194":2,"24195":1,"24196":1,"24197":1,"24198":1,"24199":2,"24200":1,"24201":1,"24202":2,"24203":2,"24204":2,"24205":1,"24206":2,"24207":2,"24208":1,"24209":1,"24210":2,"24211":1,"24212":1,"24213":2,"24214":1,"24215":2,"24216":2,"24217":1,"24218":1,"24219":1,"24220":1,"24221":2,"24222":1,"24223":1,"24224":2,"24225":1,"24226":2,"24227":2,"24228":2,"24229":2,"24230":2,"24231":1,"24232":2,"24233":2,"24234":1,"24235":1,"24236":2,"24237":2,"24238":1,"24239":1,"24240":1,"24241":2,"24242":2,"24243":2,"24244":1,"24245":2,"24246":2,"24247":2,"24248":1,"24249":2,"24250":1,"24251":2,"24252":1,"24253":2,"24254":2,"24255":2,"24256":2,"24257":1,"24258":1,"24259":2,"24260":1,"24261":1,"24262":1,"24263":1,"24264":1,"24265":2,"24266":2,"24267":1,"24268":1,"24269":2,"24270":2,"24271":1,"24272":2,"24273":2,"24274":2,"24275":2,"24276":1,"24277":2,"24278":2,"24279":2,"24280":2,"24281":2,"24282":2,"24283":2,"24284":2,"24285":2,"24286":1,"24287":2,"24288":2,"24289":1,"24290":1,"24291":2,"24292":1,"24293":1,"24294":1,"24295":1,"24296":1,"24297":2,"24298":2,"24299":2,"24300":2,"24301":2,"24302":2,"24303":2,"24304":2,"24305":2,"24306":1,"24307":1,"24308":2,"24309":1,"24310":2,"24311":2,"24312":2,"24313":1,"24314":2,"24315":1,"24316":1,"24317":2,"24318":1,"24319":1,"24320":2,"24321":2,"24322":2,"24323":2,"24324":2,"24325":2,"24326":1,"24327":2,"24328":1,"24329":1,"24330":2,"24331":2,"24332":2,"24333":1,"24334":1,"24335":2,"24336":1,"24337":1,"24338":1,"24339":1,"24340":2,"24341":1,"24342":2,"24343":2,"24344":1,"24345":2,"24346":2,"24347":1,"24348":2,"24349":1,"24350":2,"24351":1,"24352":2,"24353":1,"24354":1,"24355":2,"24356":2,"24357":1,"24358":2,"24359":2,"24360":2,"24361":2,"24362":2,"24363":1,"24364":1,"24365":1,"24366":1,"24367":2,"24368":2,"24369":2,"24370":1,"24371":2,"24372":1,"24373":2,"24374":1,"24375":2,"24376":2,"24377":2,"24378":1,"24379":2,"24380":1,"24381":2,"24382":1,"24383":2,"24384":1,"24385":2,"24386":1,"24387":1,"24388":2,"24389":1,"24390":1,"24391":2,"24392":1,"24393":2,"24394":2,"24395":1,"24396":1,"24397":2,"24398":1,"24399":1,"24400":2,"24401":2,"24402":2,"24403":1,"24404":2,"24405":2,"24406":1,"24407":2,"24408":2,"24409":1,"24410":1,"24411":1,"24412":1,"24413":2,"24414":2,"24415":2,"24416":2,"24417":2,"24418":1,"24419":2,"24420":2,"24421":2,"24422":1,"24423":2,"24424":1,"24425":2,"24426":1,"24427":1,"24428":1,"24429":1,"24430":2,"24431":2,"24432":2,"24433":2,"24434":2,"24435":2,"24436":2,"24437":2,"24438":1,"24439":2,"24440":1,"24441":2,"24442":1,"24443":1,"24444":2,"24445":1,"24446":2,"24447":2,"24448":1,"24449":1,"24450":2,"24451":1,"24452":1,"24453":2,"24454":2,"24455":2,"24456":2,"24457":2,"24458":1,"24459":1,"24460":2,"24461":2,"24462":1,"24463":1,"24464":2,"24465":2,"24466":1,"24467":1,"24468":1,"24469":1,"24470":2,"24471":2,"24472":2,"24473":2,"24474":1,"24475":1,"24476":2,"24477":2,"24478":1,"24479":2,"24480":1,"24481":2,"24482":2,"24483":1,"24484":2,"24485":2,"24486":1,"24487":2,"24488":1,"24489":2,"24490":2,"24491":2,"24492":1,"24493":1,"24494":1,"24495":2,"24496":2,"24497":2,"24498":2,"24499":2,"24500":2,"24501":1,"24502":2,"24503":1,"24504":1,"24505":2,"24506":1,"24507":1,"24508":2,"24509":1,"24510":1,"24511":1,"24512":1,"24513":2,"24514":1,"24515":2,"24516":1,"24517":2,"24518":1,"24519":2,"24520":1,"24521":2,"24522":2,"24523":2,"24524":2,"24525":2,"24526":2,"24527":2,"24528":2,"24529":1,"24530":1,"24531":2,"24532":1,"24533":2,"24534":1,"24535":2,"24536":2,"24537":1,"24538":2,"24539":1,"24540":1,"24541":2,"24542":1,"24543":1,"24544":1,"24545":1,"24546":2,"24547":1,"24548":1,"24549":1,"24550":2,"24551":2,"24552":2,"24553":1,"24554":2,"24555":2,"24556":2,"24557":2,"24558":1,"24559":1,"24560":1,"24561":2,"24562":2,"24563":2,"24564":2,"24565":2,"24566":2,"24567":2,"24568":2,"24569":2,"24570":2,"24571":2,"24572":1,"24573":2,"24574":2,"24575":1,"24576":2,"24577":1,"24578":2,"24579":2,"24580":1,"24581":1,"24582":2,"24583":1,"24584":1,"24585":2,"24586":2,"24587":2,"24588":2,"24589":2,"24590":2,"24591":2,"24592":1,"24593":1,"24594":1,"24595":2,"24596":2,"24597":1,"24598":1,"24599":2,"24600":2,"24601":1,"24602":1,"24603":2,"24604":2,"24605":2,"24606":1,"24607":1,"24608":1,"24609":1,"24610":1,"24611":2,"24612":2,"24613":1,"24614":1,"24615":1,"24616":2,"24617":2,"24618":2,"24619":2,"24620":1,"24621":2,"24622":1,"24623":1,"24624":1,"24625":1,"24626":2,"24627":1,"24628":2,"24629":2,"24630":2,"24631":1,"24632":1,"24633":2,"24634":2,"24635":2,"24636":1,"24637":1,"24638":2,"24639":1,"24640":1,"24641":1,"24642":2,"24643":1,"24644":2,"24645":2,"24646":2,"24647":1,"24648":2,"24649":2,"24650":1,"24651":1,"24652":1,"24653":2,"24654":1,"24655":1,"24656":2,"24657":2,"24658":1,"24659":1,"24660":2,"24661":2,"24662":2,"24663":2,"24664":2,"24665":2,"24666":2,"24667":2,"24668":1,"24669":1,"24670":1,"24671":2,"24672":2,"24673":1,"24674":2,"24675":1,"24676":1,"24677":1,"24678":2,"24679":2,"24680":2,"24681":1,"24682":1,"24683":2,"24684":1,"24685":1,"24686":2,"24687":2,"24688":1,"24689":1,"24690":2,"24691":2,"24692":1,"24693":2,"24694":2,"24695":1,"24696":1,"24697":2,"24698":2,"24699":1,"24700":1,"24701":2,"24702":1,"24703":1,"24704":1,"24705":1,"24706":1,"24707":1,"24708":2,"24709":1,"24710":2,"24711":2,"24712":1,"24713":2,"24714":1,"24715":2,"24716":1,"24717":1,"24718":1,"24719":1,"24720":1,"24721":2,"24722":2,"24723":2,"24724":2,"24725":2,"24726":1,"24727":1,"24728":1,"24729":1,"24730":1,"24731":2,"24732":1,"24733":1,"24734":2,"24735":1,"24736":1,"24737":1,"24738":2,"24739":2,"24740":1,"24741":2,"24742":1,"24743":1,"24744":2,"24745":2,"24746":1,"24747":2,"24748":2,"24749":1,"24750":2,"24751":1,"24752":2,"24753":2,"24754":1,"24755":1,"24756":2,"24757":2,"24758":2,"24759":2,"24760":1,"24761":1,"24762":1,"24763":1,"24764":1,"24765":2,"24766":2,"24767":2,"24768":1,"24769":1,"24770":2,"24771":1,"24772":1,"24773":2,"24774":1,"24775":1,"24776":1,"24777":2,"24778":1,"24779":1,"24780":2,"24781":1,"24782":1,"24783":2,"24784":1,"24785":2,"24786":2,"24787":2,"24788":1,"24789":2,"24790":1,"24791":1,"24792":1,"24793":2,"24794":1,"24795":2,"24796":1,"24797":2,"24798":2,"24799":2,"24800":1,"24801":1,"24802":2,"24803":1,"24804":2,"24805":2,"24806":1,"24807":1,"24808":1,"24809":2,"24810":1,"24811":2,"24812":1,"24813":1,"24814":2,"24815":1,"24816":1,"24817":1,"24818":2,"24819":1,"24820":1,"24821":2,"24822":1,"24823":2,"24824":2,"24825":1,"24826":1,"24827":1,"24828":2,"24829":2,"24830":2,"24831":2,"24832":1,"24833":2,"24834":2,"24835":1,"24836":2,"24837":1,"24838":2,"24839":1,"24840":2,"24841":1,"24842":2,"24843":1,"24844":2,"24845":1,"24846":1,"24847":2,"24848":2,"24849":1,"24850":1,"24851":1,"24852":1,"24853":2,"24854":1,"24855":1,"24856":2,"24857":1,"24858":2,"24859":1,"24860":2,"24861":2,"24862":1,"24863":2,"24864":2,"24865":1,"24866":1,"24867":1,"24868":1,"24869":1,"24870":2,"24871":1,"24872":1,"24873":2,"24874":2,"24875":1,"24876":1,"24877":2,"24878":2,"24879":1,"24880":1,"24881":2,"24882":1,"24883":2,"24884":1,"24885":1,"24886":2,"24887":2,"24888":1,"24889":1,"24890":1,"24891":2,"24892":1,"24893":1,"24894":2,"24895":2,"24896":1,"24897":1,"24898":2,"24899":1,"24900":2,"24901":1,"24902":2,"24903":1,"24904":1,"24905":2,"24906":1,"24907":2,"24908":1,"24909":1,"24910":1,"24911":2,"24912":2,"24913":2,"24914":2,"24915":1,"24916":2,"24917":1,"24918":1,"24919":2,"24920":1,"24921":1,"24922":1,"24923":2,"24924":1,"24925":2,"24926":1,"24927":2,"24928":1,"24929":2,"24930":2,"24931":1,"24932":2,"24933":2,"24934":2,"24935":1,"24936":2,"24937":1,"24938":1,"24939":2,"24940":1,"24941":2,"24942":2,"24943":2,"24944":2,"24945":1,"24946":2,"24947":1,"24948":2,"24949":2,"24950":1,"24951":2,"24952":1,"24953":1,"24954":2,"24955":1,"24956":1,"24957":2,"24958":1,"24959":2,"24960":2,"24961":1,"24962":2,"24963":1,"24964":1,"24965":1,"24966":1,"24967":1,"24968":1,"24969":2,"24970":1,"24971":2,"24972":1,"24973":2,"24974":1,"24975":2,"24976":1,"24977":2,"24978":2,"24979":2,"24980":1,"24981":2,"24982":1,"24983":1,"24984":1,"24985":1,"24986":2,"24987":1,"24988":2,"24989":1,"24990":2,"24991":2,"24992":2,"24993":2,"24994":2,"24995":2,"24996":1,"24997":1,"24998":2,"24999":1,"25000":2,"25001":1,"25002":2,"25003":2,"25004":2,"25005":1,"25006":1,"25007":2,"25008":1,"25009":2,"25010":1,"25011":2,"25012":1,"25013":2,"25014":2,"25015":1,"25016":2,"25017":2,"25018":2,"25019":2,"25020":2,"25021":1,"25022":2,"25023":1,"25024":2,"25025":1,"25026":2,"25027":2,"25028":1,"25029":2,"25030":1,"25031":1,"25032":2,"25033":2,"25034":1,"25035":2,"25036":1,"25037":2,"25038":1,"25039":1,"25040":2,"25041":1,"25042":1,"25043":1,"25044":2,"25045":2,"25046":1,"25047":1,"25048":2,"25049":1,"25050":1,"25051":1,"25052":2,"25053":2,"25054":2,"25055":1,"25056":2,"25057":2,"25058":2,"25059":1,"25060":1,"25061":1,"25062":2,"25063":2,"25064":2,"25065":2,"25066":2,"25067":1,"25068":1,"25069":1,"25070":1,"25071":2,"25072":2,"25073":1,"25074":1,"25075":1,"25076":1,"25077":2,"25078":1,"25079":1,"25080":1,"25081":2,"25082":2,"25083":2,"25084":1,"25085":2,"25086":1,"25087":1,"25088":2,"25089":1,"25090":1,"25091":1,"25092":2,"25093":1,"25094":1,"25095":2,"25096":2,"25097":1,"25098":1,"25099":2,"25100":1,"25101":2,"25102":1,"25103":1,"25104":1,"25105":2,"25106":1,"25107":2,"25108":2,"25109":1,"25110":2,"25111":2,"25112":2,"25113":1,"25114":1,"25115":1,"25116":2,"25117":1,"25118":1,"25119":2,"25120":1,"25121":2,"25122":1,"25123":1,"25124":2,"25125":1,"25126":1,"25127":2,"25128":2,"25129":2,"25130":2,"25131":1,"25132":2,"25133":2,"25134":1,"25135":2,"25136":1,"25137":1,"25138":2,"25139":1,"25140":1,"25141":1,"25142":2,"25143":1,"25144":2,"25145":1,"25146":2,"25147":2,"25148":2,"25149":1,"25150":2,"25151":1,"25152":1,"25153":1,"25154":1,"25155":2,"25156":1,"25157":2,"25158":1,"25159":2,"25160":2,"25161":1,"25162":2,"25163":2,"25164":1,"25165":1,"25166":1,"25167":1,"25168":1,"25169":2,"25170":1,"25171":2,"25172":2,"25173":1,"25174":2,"25175":1,"25176":2,"25177":1,"25178":1,"25179":1,"25180":1,"25181":2,"25182":2,"25183":2,"25184":2,"25185":1,"25186":1,"25187":1,"25188":2,"25189":2,"25190":2,"25191":1,"25192":2,"25193":2,"25194":2,"25195":1,"25196":2,"25197":1,"25198":2,"25199":1,"25200":2,"25201":2,"25202":1,"25203":1,"25204":2,"25205":2,"25206":2,"25207":2,"25208":2,"25209":1,"25210":1,"25211":1,"25212":2,"25213":2,"25214":1,"25215":1,"25216":2,"25217":2,"25218":1,"25219":1,"25220":1,"25221":1,"25222":1,"25223":2,"25224":2,"25225":2,"25226":2,"25227":1,"25228":1,"25229":2,"25230":1,"25231":1,"25232":2,"25233":1,"25234":1,"25235":1,"25236":1,"25237":2,"25238":2,"25239":1,"25240":2,"25241":1,"25242":1,"25243":2,"25244":1,"25245":2,"25246":1,"25247":1,"25248":1,"25249":1,"25250":1,"25251":2,"25252":1,"25253":1,"25254":1,"25255":1,"25256":1,"25257":2,"25258":2,"25259":2,"25260":1,"25261":1,"25262":1,"25263":2,"25264":2,"25265":2,"25266":1,"25267":2,"25268":2,"25269":2,"25270":1,"25271":1,"25272":1,"25273":2,"25274":1,"25275":1,"25276":2,"25277":2,"25278":1,"25279":1,"25280":1,"25281":2,"25282":2,"25283":2,"25284":1,"25285":1,"25286":1,"25287":1,"25288":2,"25289":1,"25290":2,"25291":1,"25292":1,"25293":1,"25294":1,"25295":2,"25296":2,"25297":1,"25298":2,"25299":2,"25300":2,"25301":2,"25302":1,"25303":1,"25304":1,"25305":1,"25306":1,"25307":2,"25308":2,"25309":1,"25310":1,"25311":2,"25312":1,"25313":2,"25314":2,"25315":2,"25316":1,"25317":2,"25318":2,"25319":1,"25320":2,"25321":2,"25322":1,"25323":1,"25324":1,"25325":1,"25326":1,"25327":2,"25328":1,"25329":1,"25330":2,"25331":1,"25332":1,"25333":1,"25334":2,"25335":2,"25336":1,"25337":2,"25338":1,"25339":1,"25340":2,"25341":2,"25342":2,"25343":2,"25344":2,"25345":2,"25346":2,"25347":1,"25348":2,"25349":2,"25350":2,"25351":1,"25352":2,"25353":2,"25354":1,"25355":1,"25356":2,"25357":1,"25358":1,"25359":1,"25360":1,"25361":2,"25362":2,"25363":2,"25364":1,"25365":1,"25366":1,"25367":1,"25368":1,"25369":1,"25370":1,"25371":1,"25372":1,"25373":2,"25374":1,"25375":1,"25376":2,"25377":1,"25378":1,"25379":2,"25380":2,"25381":1,"25382":2,"25383":2,"25384":2,"25385":1,"25386":1,"25387":1,"25388":2,"25389":1,"25390":2,"25391":2,"25392":1,"25393":2,"25394":2,"25395":1,"25396":1,"25397":2,"25398":2,"25399":1,"25400":2,"25401":1,"25402":2,"25403":1,"25404":1,"25405":1,"25406":2,"25407":1,"25408":1,"25409":2,"25410":1,"25411":2,"25412":2,"25413":1,"25414":2,"25415":1,"25416":1,"25417":2,"25418":2,"25419":2,"25420":2,"25421":1,"25422":1,"25423":1,"25424":1,"25425":2,"25426":2,"25427":1,"25428":1,"25429":2,"25430":2,"25431":2,"25432":1,"25433":1,"25434":2,"25435":2,"25436":2,"25437":2,"25438":1,"25439":2,"25440":1,"25441":2,"25442":1,"25443":2,"25444":1,"25445":1,"25446":1,"25447":1,"25448":2,"25449":2,"25450":2,"25451":2,"25452":2,"25453":2,"25454":1,"25455":1,"25456":1,"25457":1,"25458":1,"25459":1,"25460":1,"25461":1,"25462":1,"25463":1,"25464":2,"25465":1,"25466":1,"25467":1,"25468":1,"25469":1,"25470":1,"25471":2,"25472":1,"25473":1,"25474":1,"25475":2,"25476":2,"25477":2,"25478":2,"25479":1,"25480":1,"25481":1,"25482":1,"25483":2,"25484":1,"25485":2,"25486":1,"25487":2,"25488":2,"25489":2,"25490":1,"25491":1,"25492":1,"25493":1,"25494":1,"25495":2,"25496":2,"25497":2,"25498":2,"25499":1,"25500":1,"25501":1,"25502":2,"25503":2,"25504":1,"25505":2,"25506":1,"25507":2,"25508":1,"25509":1,"25510":2,"25511":1,"25512":2,"25513":1,"25514":2,"25515":2,"25516":1,"25517":1,"25518":2,"25519":2,"25520":1,"25521":1,"25522":1,"25523":1,"25524":1,"25525":2,"25526":1,"25527":2,"25528":2,"25529":1,"25530":2,"25531":2,"25532":2,"25533":2,"25534":1,"25535":1,"25536":1,"25537":2,"25538":1,"25539":2,"25540":2,"25541":2,"25542":2,"25543":1,"25544":2,"25545":1,"25546":1,"25547":2,"25548":2,"25549":1,"25550":1,"25551":2,"25552":1,"25553":1,"25554":2,"25555":2,"25556":1,"25557":1,"25558":2,"25559":2,"25560":1,"25561":2,"25562":2,"25563":1,"25564":2,"25565":1,"25566":1,"25567":1,"25568":2,"25569":1,"25570":2,"25571":2,"25572":1,"25573":1,"25574":1,"25575":2,"25576":2,"25577":1,"25578":2,"25579":2,"25580":1,"25581":2,"25582":2,"25583":2,"25584":1,"25585":2,"25586":2,"25587":1,"25588":1,"25589":1,"25590":2,"25591":2,"25592":2,"25593":1,"25594":2,"25595":1,"25596":1,"25597":2,"25598":2,"25599":2,"25600":2,"25601":2,"25602":2,"25603":1,"25604":2,"25605":2,"25606":2,"25607":2,"25608":2,"25609":1,"25610":1,"25611":1,"25612":2,"25613":1,"25614":2,"25615":2,"25616":2,"25617":1,"25618":1,"25619":1,"25620":1,"25621":2,"25622":2,"25623":2,"25624":1,"25625":1,"25626":2,"25627":2,"25628":2,"25629":2,"25630":2,"25631":2,"25632":1,"25633":1,"25634":1,"25635":2,"25636":1,"25637":2,"25638":2,"25639":2,"25640":1,"25641":2,"25642":1,"25643":2,"25644":1,"25645":1,"25646":1,"25647":2,"25648":1,"25649":2,"25650":1,"25651":2,"25652":2,"25653":2,"25654":1,"25655":1,"25656":2,"25657":2,"25658":1,"25659":2,"25660":2,"25661":2,"25662":2,"25663":2,"25664":1,"25665":1,"25666":1,"25667":1,"25668":2,"25669":2,"25670":1,"25671":2,"25672":2,"25673":2,"25674":2,"25675":1,"25676":2,"25677":1,"25678":2,"25679":2,"25680":2,"25681":2,"25682":1,"25683":1,"25684":1,"25685":2,"25686":1,"25687":2,"25688":1,"25689":1,"25690":2,"25691":1,"25692":2,"25693":1,"25694":1,"25695":2,"25696":1,"25697":2,"25698":1,"25699":2,"25700":1,"25701":2,"25702":1,"25703":2,"25704":1,"25705":1,"25706":2,"25707":1,"25708":2,"25709":1,"25710":2,"25711":1,"25712":1,"25713":1,"25714":2,"25715":1,"25716":2,"25717":1,"25718":1,"25719":2,"25720":2,"25721":1,"25722":2,"25723":1,"25724":1,"25725":1,"25726":2,"25727":2,"25728":1,"25729":1,"25730":2,"25731":1,"25732":1,"25733":1,"25734":2,"25735":1,"25736":1,"25737":1,"25738":1,"25739":2,"25740":1,"25741":2,"25742":2,"25743":2,"25744":1,"25745":2,"25746":2,"25747":2,"25748":1,"25749":2,"25750":1,"25751":2,"25752":2,"25753":1,"25754":1,"25755":2,"25756":1,"25757":2,"25758":2,"25759":2,"25760":1,"25761":1,"25762":1,"25763":2,"25764":1,"25765":2,"25766":2,"25767":2,"25768":1,"25769":1,"25770":2,"25771":2,"25772":1,"25773":2,"25774":1,"25775":2,"25776":2,"25777":1,"25778":2,"25779":1,"25780":2,"25781":2,"25782":2,"25783":2,"25784":1,"25785":2,"25786":2,"25787":1,"25788":2,"25789":1,"25790":1,"25791":1,"25792":2,"25793":1,"25794":1,"25795":2,"25796":1,"25797":2,"25798":1,"25799":1,"25800":2,"25801":2,"25802":1,"25803":2,"25804":1,"25805":2,"25806":2,"25807":1,"25808":2,"25809":2,"25810":1,"25811":2,"25812":2,"25813":2,"25814":2,"25815":1,"25816":2,"25817":1,"25818":2,"25819":1,"25820":1,"25821":2,"25822":1,"25823":1,"25824":1,"25825":1,"25826":1,"25827":1,"25828":1,"25829":1,"25830":2,"25831":1,"25832":1,"25833":1,"25834":2,"25835":1,"25836":2,"25837":2,"25838":2,"25839":2,"25840":2,"25841":2,"25842":1,"25843":2,"25844":2,"25845":2,"25846":1,"25847":1,"25848":2,"25849":2,"25850":2,"25851":2,"25852":2,"25853":1,"25854":1,"25855":2,"25856":2,"25857":1,"25858":2,"25859":1,"25860":2,"25861":1,"25862":2,"25863":2,"25864":1,"25865":1,"25866":2,"25867":1,"25868":1,"25869":1,"25870":1,"25871":1,"25872":2,"25873":2,"25874":2,"25875":2,"25876":1,"25877":1,"25878":2,"25879":2,"25880":2,"25881":2,"25882":2,"25883":1,"25884":1,"25885":2,"25886":2,"25887":2,"25888":1,"25889":1,"25890":1,"25891":1,"25892":1,"25893":1,"25894":1,"25895":2,"25896":2,"25897":2,"25898":1,"25899":2,"25900":1,"25901":1,"25902":1,"25903":2,"25904":1,"25905":2,"25906":1,"25907":1,"25908":2,"25909":2,"25910":1,"25911":2,"25912":1,"25913":2,"25914":2,"25915":2,"25916":1,"25917":2,"25918":2,"25919":1,"25920":2,"25921":1,"25922":2,"25923":1,"25924":2,"25925":2,"25926":1,"25927":2,"25928":2,"25929":2,"25930":2,"25931":2,"25932":2,"25933":2,"25934":1,"25935":1,"25936":1,"25937":2,"25938":2,"25939":2,"25940":1,"25941":1,"25942":2,"25943":1,"25944":1,"25945":1,"25946":2,"25947":1,"25948":1,"25949":2,"25950":1,"25951":2,"25952":2,"25953":1,"25954":2,"25955":2,"25956":2,"25957":2,"25958":2,"25959":2,"25960":1,"25961":1,"25962":2,"25963":1,"25964":1,"25965":1,"25966":1,"25967":2,"25968":1,"25969":1,"25970":1,"25971":2,"25972":1,"25973":1,"25974":2,"25975":1,"25976":2,"25977":1,"25978":2,"25979":1,"25980":1,"25981":2,"25982":1,"25983":2,"25984":2,"25985":2,"25986":2,"25987":2,"25988":1,"25989":1,"25990":2,"25991":2,"25992":2,"25993":2,"25994":1,"25995":2,"25996":2,"25997":1,"25998":1,"25999":1,"26000":1,"26001":1,"26002":1,"26003":1,"26004":2,"26005":1,"26006":1,"26007":1,"26008":2,"26009":1,"26010":1,"26011":1,"26012":2,"26013":2,"26014":2,"26015":2,"26016":1,"26017":1,"26018":1,"26019":1,"26020":1,"26021":2,"26022":2,"26023":2,"26024":2,"26025":1,"26026":2,"26027":2,"26028":1,"26029":2,"26030":1,"26031":2,"26032":2,"26033":2,"26034":2,"26035":1,"26036":1,"26037":2,"26038":1,"26039":2,"26040":1,"26041":1,"26042":1,"26043":1,"26044":1,"26045":2,"26046":2,"26047":2,"26048":2,"26049":2,"26050":1,"26051":2,"26052":2,"26053":2,"26054":2,"26055":2,"26056":2,"26057":1,"26058":1,"26059":1,"26060":2,"26061":2,"26062":2,"26063":1,"26064":2,"26065":2,"26066":2,"26067":1,"26068":2,"26069":2,"26070":2,"26071":2,"26072":1,"26073":1,"26074":1,"26075":2,"26076":2,"26077":1,"26078":1,"26079":2,"26080":1,"26081":1,"26082":2,"26083":1,"26084":2,"26085":2,"26086":2,"26087":2,"26088":2,"26089":2,"26090":1,"26091":2,"26092":1,"26093":1,"26094":2,"26095":2,"26096":1,"26097":1,"26098":2,"26099":2,"26100":1,"26101":2,"26102":2,"26103":2,"26104":2,"26105":1,"26106":2,"26107":1,"26108":1,"26109":1,"26110":2,"26111":2,"26112":1,"26113":1,"26114":2,"26115":1,"26116":2,"26117":2,"26118":2,"26119":1,"26120":2,"26121":2,"26122":1,"26123":2,"26124":2,"26125":2,"26126":1,"26127":1,"26128":2,"26129":2,"26130":2,"26131":2,"26132":1,"26133":1,"26134":1,"26135":1,"26136":2,"26137":1,"26138":2,"26139":1,"26140":2,"26141":1,"26142":1,"26143":1,"26144":1,"26145":2,"26146":1,"26147":2,"26148":1,"26149":1,"26150":1,"26151":1,"26152":1,"26153":2,"26154":2,"26155":1,"26156":2,"26157":2,"26158":1,"26159":1,"26160":1,"26161":1,"26162":2,"26163":2,"26164":1,"26165":1,"26166":1,"26167":2,"26168":2,"26169":2,"26170":1,"26171":2,"26172":1,"26173":2,"26174":2,"26175":1,"26176":2,"26177":1,"26178":1,"26179":2,"26180":1,"26181":1,"26182":1,"26183":1,"26184":1,"26185":1,"26186":1,"26187":1,"26188":2,"26189":2,"26190":2,"26191":1,"26192":2,"26193":1,"26194":1,"26195":1,"26196":1,"26197":1,"26198":1,"26199":2,"26200":1,"26201":2,"26202":1,"26203":2,"26204":1,"26205":2,"26206":2,"26207":1,"26208":1,"26209":2,"26210":1,"26211":1,"26212":2,"26213":1,"26214":1,"26215":1,"26216":2,"26217":1,"26218":1,"26219":1,"26220":1,"26221":1,"26222":1,"26223":2,"26224":1,"26225":2,"26226":1,"26227":2,"26228":1,"26229":2,"26230":2,"26231":2,"26232":1,"26233":1,"26234":1,"26235":1,"26236":1,"26237":1,"26238":1,"26239":2,"26240":2,"26241":2,"26242":1,"26243":2,"26244":1,"26245":1,"26246":2,"26247":1,"26248":2,"26249":1,"26250":2,"26251":2,"26252":1,"26253":2,"26254":2,"26255":2,"26256":1,"26257":2,"26258":2,"26259":1,"26260":1,"26261":1,"26262":1,"26263":2,"26264":2,"26265":1,"26266":2,"26267":1,"26268":2,"26269":1,"26270":2,"26271":1,"26272":2,"26273":2,"26274":1,"26275":1,"26276":1,"26277":2,"26278":2,"26279":2,"26280":2,"26281":1,"26282":1,"26283":2,"26284":2,"26285":2,"26286":1,"26287":1,"26288":2,"26289":1,"26290":2,"26291":2,"26292":1,"26293":2,"26294":2,"26295":2,"26296":1,"26297":2,"26298":1,"26299":1,"26300":2,"26301":2,"26302":2,"26303":2,"26304":2,"26305":2,"26306":1,"26307":1,"26308":2,"26309":1,"26310":1,"26311":1,"26312":1,"26313":2,"26314":1,"26315":1,"26316":2,"26317":2,"26318":2,"26319":1,"26320":2,"26321":1,"26322":2,"26323":1,"26324":1,"26325":2,"26326":1,"26327":1,"26328":1,"26329":1,"26330":2,"26331":1,"26332":1,"26333":1,"26334":1,"26335":2,"26336":1,"26337":2,"26338":1,"26339":1,"26340":2,"26341":2,"26342":2,"26343":2,"26344":2,"26345":1,"26346":2,"26347":2,"26348":1,"26349":2,"26350":1,"26351":2,"26352":2,"26353":2,"26354":2,"26355":1,"26356":2,"26357":2,"26358":2,"26359":1,"26360":1,"26361":1,"26362":1,"26363":1,"26364":2,"26365":2,"26366":1,"26367":2,"26368":1,"26369":2,"26370":2,"26371":1,"26372":1,"26373":1,"26374":2,"26375":1,"26376":1,"26377":1,"26378":2,"26379":1,"26380":2,"26381":2,"26382":2,"26383":2,"26384":1,"26385":2,"26386":2,"26387":1,"26388":1,"26389":2,"26390":1,"26391":2,"26392":1,"26393":1,"26394":2,"26395":2,"26396":2,"26397":2,"26398":1,"26399":2,"26400":2,"26401":2,"26402":2,"26403":1,"26404":1,"26405":2,"26406":2,"26407":2,"26408":1,"26409":1,"26410":2,"26411":1,"26412":1,"26413":2,"26414":1,"26415":2,"26416":2,"26417":1,"26418":2,"26419":1,"26420":2,"26421":2,"26422":2,"26423":1,"26424":2,"26425":1,"26426":1,"26427":1,"26428":1,"26429":2,"26430":2,"26431":1,"26432":2,"26433":2,"26434":1,"26435":2,"26436":2,"26437":2,"26438":2,"26439":2,"26440":1,"26441":1,"26442":2,"26443":2,"26444":1,"26445":1,"26446":2,"26447":2,"26448":2,"26449":1,"26450":1,"26451":1,"26452":2,"26453":2,"26454":2,"26455":1,"26456":1,"26457":2,"26458":2,"26459":2,"26460":2,"26461":2,"26462":2,"26463":1,"26464":2,"26465":2,"26466":1,"26467":1,"26468":2,"26469":2,"26470":1,"26471":1,"26472":2,"26473":1,"26474":2,"26475":2,"26476":2,"26477":1,"26478":1,"26479":2,"26480":2,"26481":2,"26482":2,"26483":2,"26484":2,"26485":1,"26486":2,"26487":2,"26488":2,"26489":1,"26490":1,"26491":1,"26492":2,"26493":1,"26494":2,"26495":2,"26496":1,"26497":2,"26498":1,"26499":1,"26500":2,"26501":1,"26502":1,"26503":2,"26504":1,"26505":2,"26506":2,"26507":2,"26508":1,"26509":2,"26510":1,"26511":1,"26512":2,"26513":1,"26514":1,"26515":2,"26516":1,"26517":2,"26518":1,"26519":1,"26520":1,"26521":1,"26522":1,"26523":2,"26524":2,"26525":1,"26526":1,"26527":2,"26528":1,"26529":2,"26530":1,"26531":1,"26532":2,"26533":1,"26534":2,"26535":2,"26536":2,"26537":2,"26538":2,"26539":2,"26540":2,"26541":2,"26542":1,"26543":2,"26544":2,"26545":1,"26546":1,"26547":1,"26548":1,"26549":2,"26550":1,"26551":1,"26552":1,"26553":2,"26554":1,"26555":1,"26556":2,"26557":2,"26558":2,"26559":2,"26560":1,"26561":2,"26562":2,"26563":1,"26564":2,"26565":2,"26566":2,"26567":2,"26568":1,"26569":1,"26570":2,"26571":1,"26572":1,"26573":2,"26574":1,"26575":2,"26576":1,"26577":1,"26578":1,"26579":1,"26580":1,"26581":1,"26582":2,"26583":2,"26584":2,"26585":1,"26586":1,"26587":1,"26588":1,"26589":2,"26590":2,"26591":1,"26592":1,"26593":1,"26594":2,"26595":2,"26596":2,"26597":1,"26598":2,"26599":2,"26600":1,"26601":2,"26602":2,"26603":1,"26604":1,"26605":2,"26606":2,"26607":2,"26608":2,"26609":2,"26610":1,"26611":1,"26612":2,"26613":2,"26614":2,"26615":1,"26616":1,"26617":2,"26618":2,"26619":2,"26620":2,"26621":1,"26622":2,"26623":2,"26624":2,"26625":2,"26626":2,"26627":2,"26628":2,"26629":2,"26630":1,"26631":2,"26632":1,"26633":2,"26634":2,"26635":2,"26636":1,"26637":2,"26638":1,"26639":1,"26640":2,"26641":2,"26642":1,"26643":2,"26644":1,"26645":1,"26646":1,"26647":2,"26648":1,"26649":2,"26650":2,"26651":2,"26652":2,"26653":2,"26654":2,"26655":2,"26656":2,"26657":2,"26658":2,"26659":2,"26660":1,"26661":2,"26662":1,"26663":1,"26664":1,"26665":1,"26666":2,"26667":1,"26668":2,"26669":1,"26670":2,"26671":2,"26672":2,"26673":1,"26674":2,"26675":2,"26676":1,"26677":2,"26678":1,"26679":1,"26680":2,"26681":1,"26682":2,"26683":2,"26684":1,"26685":2,"26686":2,"26687":1,"26688":2,"26689":1,"26690":1,"26691":1,"26692":1,"26693":2,"26694":1,"26695":1,"26696":1,"26697":1,"26698":2,"26699":2,"26700":2,"26701":2,"26702":2,"26703":2,"26704":1,"26705":2,"26706":2,"26707":2,"26708":1,"26709":1,"26710":2,"26711":2,"26712":1,"26713":1,"26714":2,"26715":1,"26716":2,"26717":1,"26718":2,"26719":1,"26720":2,"26721":2,"26722":1,"26723":1,"26724":2,"26725":1,"26726":1,"26727":2,"26728":1,"26729":2,"26730":1,"26731":1,"26732":2,"26733":2,"26734":1,"26735":1,"26736":2,"26737":2,"26738":2,"26739":2,"26740":2,"26741":1,"26742":1,"26743":1,"26744":2,"26745":2,"26746":2,"26747":1,"26748":1,"26749":1,"26750":1,"26751":2,"26752":1,"26753":2,"26754":2,"26755":2,"26756":1,"26757":1,"26758":1,"26759":2,"26760":1,"26761":2,"26762":1,"26763":1,"26764":2,"26765":1,"26766":1,"26767":1,"26768":2,"26769":2,"26770":2,"26771":1,"26772":1,"26773":1,"26774":2,"26775":2,"26776":1,"26777":1,"26778":2,"26779":1,"26780":1,"26781":2,"26782":2,"26783":1,"26784":2,"26785":2,"26786":1,"26787":2,"26788":2,"26789":1,"26790":2,"26791":1,"26792":1,"26793":2,"26794":2,"26795":1,"26796":1,"26797":2,"26798":1,"26799":1,"26800":2,"26801":1,"26802":1,"26803":1,"26804":1,"26805":1,"26806":1,"26807":2,"26808":2,"26809":2,"26810":1,"26811":1,"26812":1,"26813":1,"26814":2,"26815":2,"26816":2,"26817":1,"26818":1,"26819":2,"26820":1,"26821":2,"26822":2,"26823":1,"26824":2,"26825":1,"26826":2,"26827":1,"26828":1,"26829":2,"26830":1,"26831":2,"26832":2,"26833":1,"26834":1,"26835":2,"26836":2,"26837":2,"26838":1,"26839":2,"26840":2,"26841":2,"26842":2,"26843":2,"26844":1,"26845":2,"26846":1,"26847":2,"26848":2,"26849":2,"26850":1,"26851":2,"26852":1,"26853":2,"26854":1,"26855":1,"26856":1,"26857":1,"26858":2,"26859":2,"26860":2,"26861":1,"26862":1,"26863":1,"26864":2,"26865":1,"26866":1,"26867":2,"26868":2,"26869":1,"26870":1,"26871":1,"26872":1,"26873":2,"26874":1,"26875":1,"26876":1,"26877":1,"26878":2,"26879":1,"26880":1,"26881":2,"26882":1,"26883":1,"26884":2,"26885":1,"26886":1,"26887":2,"26888":1,"26889":1,"26890":2,"26891":1,"26892":1,"26893":1,"26894":1,"26895":1,"26896":1,"26897":1,"26898":1,"26899":1,"26900":1,"26901":2,"26902":1,"26903":1,"26904":1,"26905":2,"26906":2,"26907":2,"26908":2,"26909":1,"26910":1,"26911":1,"26912":1,"26913":1,"26914":1,"26915":1,"26916":1,"26917":2,"26918":1,"26919":1,"26920":1,"26921":1,"26922":1,"26923":2,"26924":1,"26925":2,"26926":2,"26927":2,"26928":1,"26929":1,"26930":2,"26931":1,"26932":2,"26933":2,"26934":2,"26935":2,"26936":2,"26937":2,"26938":2,"26939":1,"26940":2,"26941":1,"26942":2,"26943":2,"26944":1,"26945":2,"26946":1,"26947":2,"26948":2,"26949":1,"26950":2,"26951":1,"26952":1,"26953":1,"26954":1,"26955":2,"26956":2,"26957":1,"26958":2,"26959":1,"26960":2,"26961":1,"26962":2,"26963":1,"26964":1,"26965":2,"26966":2,"26967":1,"26968":1,"26969":2,"26970":1,"26971":2,"26972":1,"26973":2,"26974":1,"26975":2,"26976":2,"26977":2,"26978":2,"26979":2,"26980":2,"26981":1,"26982":1,"26983":2,"26984":2,"26985":1,"26986":2,"26987":1,"26988":1,"26989":1,"26990":1,"26991":2,"26992":1,"26993":2,"26994":2,"26995":2,"26996":2,"26997":1,"26998":2,"26999":1,"27000":1,"27001":1,"27002":1,"27003":2,"27004":2,"27005":2,"27006":2,"27007":2,"27008":2,"27009":2,"27010":2,"27011":1,"27012":2,"27013":2,"27014":1,"27015":2,"27016":2,"27017":1,"27018":2,"27019":2,"27020":1,"27021":1,"27022":1,"27023":2,"27024":1,"27025":2,"27026":1,"27027":2,"27028":2,"27029":2,"27030":1,"27031":1,"27032":2,"27033":1,"27034":1,"27035":2,"27036":2,"27037":2,"27038":1,"27039":1,"27040":1,"27041":2,"27042":2,"27043":2,"27044":1,"27045":2,"27046":2,"27047":2,"27048":1,"27049":1,"27050":2,"27051":2,"27052":1,"27053":1,"27054":2,"27055":1,"27056":1,"27057":1,"27058":2,"27059":2,"27060":1,"27061":1,"27062":1,"27063":1,"27064":2,"27065":2,"27066":1,"27067":2,"27068":2,"27069":1,"27070":1,"27071":1,"27072":1,"27073":1,"27074":1,"27075":2,"27076":2,"27077":1,"27078":1,"27079":1,"27080":1,"27081":1,"27082":1,"27083":1,"27084":1,"27085":1,"27086":1,"27087":1,"27088":1,"27089":1,"27090":1,"27091":1,"27092":1,"27093":1,"27094":1,"27095":2,"27096":1,"27097":1,"27098":1,"27099":2,"27100":2,"27101":2,"27102":2,"27103":2,"27104":2,"27105":1,"27106":1,"27107":1,"27108":2,"27109":1,"27110":2,"27111":2,"27112":1,"27113":2,"27114":1,"27115":2,"27116":1,"27117":1,"27118":2,"27119":2,"27120":1,"27121":2,"27122":2,"27123":1,"27124":2,"27125":2,"27126":1,"27127":1,"27128":1,"27129":2,"27130":1,"27131":2,"27132":2,"27133":2,"27134":2,"27135":1,"27136":1,"27137":1,"27138":1,"27139":2,"27140":2,"27141":2,"27142":1,"27143":1,"27144":1,"27145":2,"27146":2,"27147":2,"27148":2,"27149":2,"27150":1,"27151":1,"27152":2,"27153":1,"27154":2,"27155":2,"27156":1,"27157":2,"27158":1,"27159":2,"27160":1,"27161":2,"27162":2,"27163":1,"27164":1,"27165":1,"27166":2,"27167":1,"27168":1,"27169":1,"27170":1,"27171":1,"27172":2,"27173":1,"27174":2,"27175":2,"27176":1,"27177":2,"27178":2,"27179":2,"27180":1,"27181":1,"27182":2,"27183":1,"27184":2,"27185":2,"27186":2,"27187":1,"27188":2,"27189":1,"27190":2,"27191":2,"27192":1,"27193":2,"27194":2,"27195":2,"27196":1,"27197":2,"27198":2,"27199":2,"27200":1,"27201":1,"27202":1,"27203":1,"27204":1,"27205":2,"27206":2,"27207":2,"27208":2,"27209":1,"27210":2,"27211":1,"27212":1,"27213":1,"27214":1,"27215":2,"27216":2,"27217":2,"27218":1,"27219":1,"27220":1,"27221":2,"27222":2,"27223":2,"27224":1,"27225":2,"27226":1,"27227":2,"27228":1,"27229":1,"27230":2,"27231":1,"27232":1,"27233":1,"27234":2,"27235":1,"27236":2,"27237":1,"27238":1,"27239":1,"27240":1,"27241":2,"27242":1,"27243":2,"27244":1,"27245":2,"27246":2,"27247":1,"27248":2,"27249":1,"27250":2,"27251":1,"27252":2,"27253":2,"27254":1,"27255":1,"27256":2,"27257":1,"27258":1,"27259":1,"27260":2,"27261":1,"27262":2,"27263":1,"27264":2,"27265":1,"27266":1,"27267":2,"27268":2,"27269":2,"27270":2,"27271":2,"27272":2,"27273":1,"27274":1,"27275":1,"27276":1,"27277":1,"27278":1,"27279":1,"27280":1,"27281":2,"27282":2,"27283":1,"27284":2,"27285":1,"27286":2,"27287":1,"27288":1,"27289":1,"27290":1,"27291":1,"27292":1,"27293":2,"27294":1,"27295":2,"27296":1,"27297":1,"27298":2,"27299":2,"27300":2,"27301":2,"27302":1,"27303":1,"27304":1,"27305":1,"27306":2,"27307":2,"27308":2,"27309":2,"27310":2,"27311":2,"27312":2,"27313":2,"27314":2,"27315":2,"27316":1,"27317":2,"27318":1,"27319":2,"27320":2,"27321":2,"27322":1,"27323":2,"27324":1,"27325":1,"27326":2,"27327":1,"27328":2,"27329":1,"27330":2,"27331":2,"27332":1,"27333":1,"27334":2,"27335":1,"27336":2,"27337":1,"27338":1,"27339":1,"27340":2,"27341":2,"27342":1,"27343":2,"27344":1,"27345":2,"27346":1,"27347":2,"27348":1,"27349":2,"27350":2,"27351":2,"27352":1,"27353":2,"27354":1,"27355":1,"27356":2,"27357":2,"27358":2,"27359":1,"27360":2,"27361":2,"27362":2,"27363":1,"27364":2,"27365":1,"27366":1,"27367":2,"27368":1,"27369":1,"27370":2,"27371":2,"27372":1,"27373":2,"27374":1,"27375":2,"27376":1,"27377":1,"27378":1,"27379":2,"27380":2,"27381":1,"27382":1,"27383":2,"27384":1,"27385":2,"27386":2,"27387":1,"27388":1,"27389":1,"27390":1,"27391":1,"27392":1,"27393":1,"27394":2,"27395":2,"27396":1,"27397":1,"27398":2,"27399":1,"27400":2,"27401":1,"27402":1,"27403":2,"27404":1,"27405":2,"27406":2,"27407":2,"27408":1,"27409":2,"27410":1,"27411":1,"27412":1,"27413":1,"27414":1,"27415":2,"27416":2,"27417":2,"27418":2,"27419":1,"27420":1,"27421":1,"27422":1,"27423":2,"27424":2,"27425":2,"27426":2,"27427":1,"27428":1,"27429":1,"27430":1,"27431":2,"27432":1,"27433":2,"27434":2,"27435":1,"27436":2,"27437":2,"27438":1,"27439":1,"27440":1,"27441":2,"27442":2,"27443":2,"27444":2,"27445":1,"27446":1,"27447":1,"27448":1,"27449":1,"27450":1,"27451":1,"27452":1,"27453":2,"27454":2,"27455":2,"27456":1,"27457":1,"27458":1,"27459":1,"27460":2,"27461":2,"27462":2,"27463":1,"27464":2,"27465":1,"27466":2,"27467":2,"27468":2,"27469":2,"27470":2,"27471":1,"27472":2,"27473":1,"27474":1,"27475":1,"27476":1,"27477":1,"27478":2,"27479":2,"27480":1,"27481":1,"27482":1,"27483":2,"27484":2,"27485":2,"27486":2,"27487":2,"27488":2,"27489":1,"27490":1,"27491":1,"27492":2,"27493":1,"27494":2,"27495":1,"27496":1,"27497":1,"27498":2,"27499":2,"27500":2,"27501":1,"27502":1,"27503":2,"27504":1,"27505":2,"27506":1,"27507":1,"27508":2,"27509":2,"27510":1,"27511":1,"27512":2,"27513":1,"27514":1,"27515":1,"27516":1,"27517":2,"27518":2,"27519":2,"27520":2,"27521":2,"27522":1,"27523":1,"27524":1,"27525":1,"27526":2,"27527":1,"27528":1,"27529":2,"27530":1,"27531":2,"27532":1,"27533":1,"27534":1,"27535":2,"27536":1,"27537":2,"27538":1,"27539":1,"27540":2,"27541":2,"27542":2,"27543":2,"27544":1,"27545":1,"27546":1,"27547":1,"27548":1,"27549":1,"27550":1,"27551":1,"27552":2,"27553":2,"27554":1,"27555":1,"27556":2,"27557":2,"27558":1,"27559":1,"27560":1,"27561":1,"27562":2,"27563":2,"27564":2,"27565":1,"27566":2,"27567":2,"27568":1,"27569":1,"27570":1,"27571":2,"27572":1,"27573":2,"27574":2,"27575":1,"27576":2,"27577":2,"27578":2,"27579":2,"27580":1,"27581":1,"27582":2,"27583":2,"27584":1,"27585":1,"27586":1,"27587":1,"27588":1,"27589":2,"27590":1,"27591":2,"27592":2,"27593":1,"27594":1,"27595":1,"27596":2,"27597":2,"27598":2,"27599":1,"27600":2,"27601":2,"27602":2,"27603":1,"27604":1,"27605":1,"27606":2,"27607":1,"27608":2,"27609":1,"27610":2,"27611":2,"27612":1,"27613":2,"27614":1,"27615":2,"27616":2,"27617":1,"27618":1,"27619":2,"27620":1,"27621":1,"27622":2,"27623":1,"27624":1,"27625":2,"27626":2,"27627":2,"27628":1,"27629":1,"27630":1,"27631":2,"27632":1,"27633":1,"27634":1,"27635":1,"27636":1,"27637":2,"27638":2,"27639":1,"27640":2,"27641":1,"27642":2,"27643":1,"27644":2,"27645":2,"27646":1,"27647":1,"27648":2,"27649":2,"27650":2,"27651":2,"27652":2,"27653":1,"27654":1,"27655":1,"27656":1,"27657":1,"27658":2,"27659":2,"27660":1,"27661":1,"27662":2,"27663":1,"27664":2,"27665":1,"27666":2,"27667":2,"27668":2,"27669":1,"27670":2,"27671":1,"27672":1,"27673":1,"27674":1,"27675":2,"27676":2,"27677":1,"27678":2,"27679":1,"27680":1,"27681":1,"27682":1,"27683":1,"27684":2,"27685":2,"27686":2,"27687":2,"27688":2,"27689":2,"27690":1,"27691":1,"27692":1,"27693":1,"27694":2,"27695":1,"27696":1,"27697":1,"27698":1,"27699":2,"27700":1,"27701":1,"27702":2,"27703":2,"27704":2,"27705":2,"27706":2,"27707":1,"27708":2,"27709":1,"27710":1,"27711":2,"27712":1,"27713":2,"27714":2,"27715":2,"27716":2,"27717":2,"27718":2,"27719":1,"27720":2,"27721":1,"27722":2,"27723":1,"27724":2,"27725":2,"27726":2,"27727":1,"27728":2,"27729":1,"27730":2,"27731":1,"27732":2,"27733":2,"27734":2,"27735":2,"27736":2,"27737":1,"27738":1,"27739":1,"27740":1,"27741":2,"27742":1,"27743":2,"27744":2,"27745":1,"27746":1,"27747":1,"27748":2,"27749":2,"27750":2,"27751":1,"27752":1,"27753":1,"27754":1,"27755":2,"27756":1,"27757":1,"27758":1,"27759":2,"27760":1,"27761":2,"27762":1,"27763":1,"27764":1,"27765":2,"27766":1,"27767":2,"27768":1,"27769":2,"27770":1,"27771":1,"27772":1,"27773":1,"27774":1,"27775":1,"27776":2,"27777":1,"27778":2,"27779":2,"27780":1,"27781":2,"27782":2,"27783":1,"27784":2,"27785":2,"27786":1,"27787":2,"27788":1,"27789":1,"27790":1,"27791":2,"27792":1,"27793":1,"27794":1,"27795":1,"27796":2,"27797":2,"27798":2,"27799":2,"27800":2,"27801":1,"27802":2,"27803":1,"27804":2,"27805":1,"27806":2,"27807":1,"27808":2,"27809":1,"27810":2,"27811":1,"27812":1,"27813":2,"27814":1,"27815":2,"27816":2,"27817":1,"27818":2,"27819":1,"27820":1,"27821":2,"27822":1,"27823":1,"27824":1,"27825":1,"27826":1,"27827":1,"27828":1,"27829":1,"27830":2,"27831":1,"27832":1,"27833":1,"27834":1,"27835":1,"27836":1,"27837":1,"27838":1,"27839":1,"27840":1,"27841":2,"27842":1,"27843":1,"27844":1,"27845":1,"27846":1,"27847":2,"27848":1,"27849":2,"27850":1,"27851":1,"27852":1,"27853":2,"27854":2,"27855":1,"27856":1,"27857":1,"27858":1,"27859":2,"27860":1,"27861":1,"27862":2,"27863":1,"27864":2,"27865":2,"27866":2,"27867":2,"27868":1,"27869":1,"27870":1,"27871":2,"27872":1,"27873":1,"27874":2,"27875":1,"27876":2,"27877":2,"27878":1,"27879":2,"27880":2,"27881":1,"27882":2,"27883":2,"27884":2,"27885":2,"27886":2,"27887":2,"27888":1,"27889":1,"27890":1,"27891":2,"27892":2,"27893":1,"27894":1,"27895":1,"27896":2,"27897":1,"27898":2,"27899":2,"27900":1,"27901":1,"27902":2,"27903":2,"27904":2,"27905":1,"27906":1,"27907":1,"27908":1,"27909":2,"27910":2,"27911":2,"27912":1,"27913":1,"27914":2,"27915":2,"27916":2,"27917":1,"27918":2,"27919":1,"27920":1,"27921":1,"27922":2,"27923":2,"27924":1,"27925":1,"27926":1,"27927":2,"27928":1,"27929":1,"27930":1,"27931":2,"27932":2,"27933":2,"27934":1,"27935":2,"27936":1,"27937":2,"27938":1,"27939":1,"27940":1,"27941":2,"27942":2,"27943":1,"27944":1,"27945":1,"27946":1,"27947":2,"27948":2,"27949":2,"27950":2,"27951":2,"27952":2,"27953":1,"27954":1,"27955":2,"27956":1,"27957":1,"27958":2,"27959":1,"27960":1,"27961":2,"27962":2,"27963":1,"27964":2,"27965":2,"27966":2,"27967":1,"27968":2,"27969":1,"27970":1,"27971":1,"27972":2,"27973":2,"27974":2,"27975":2,"27976":1,"27977":2,"27978":2,"27979":1,"27980":2,"27981":2,"27982":2,"27983":2,"27984":1,"27985":2,"27986":2,"27987":2,"27988":1,"27989":2,"27990":2,"27991":1,"27992":2,"27993":2,"27994":2,"27995":1,"27996":2,"27997":1,"27998":1,"27999":1,"28000":2,"28001":2,"28002":2,"28003":1,"28004":2,"28005":2,"28006":2,"28007":1,"28008":1,"28009":1,"28010":2,"28011":1,"28012":2,"28013":1,"28014":2,"28015":2,"28016":1,"28017":1,"28018":2,"28019":2,"28020":1,"28021":1,"28022":1,"28023":1,"28024":2,"28025":1,"28026":2,"28027":1,"28028":1,"28029":2,"28030":2,"28031":1,"28032":1,"28033":1,"28034":2,"28035":1,"28036":2,"28037":2,"28038":2,"28039":2,"28040":1,"28041":1,"28042":2,"28043":2,"28044":2,"28045":1,"28046":2,"28047":2,"28048":1,"28049":1,"28050":2,"28051":1,"28052":1,"28053":2,"28054":2,"28055":2,"28056":1,"28057":2,"28058":1,"28059":2,"28060":2,"28061":1,"28062":2,"28063":2,"28064":2,"28065":1,"28066":1,"28067":1,"28068":1,"28069":2,"28070":1,"28071":2,"28072":1,"28073":1,"28074":2,"28075":2,"28076":2,"28077":1,"28078":1,"28079":1,"28080":1,"28081":1,"28082":1,"28083":1,"28084":1,"28085":2,"28086":1,"28087":1,"28088":1,"28089":1,"28090":2,"28091":1,"28092":2,"28093":1,"28094":1,"28095":1,"28096":2,"28097":1,"28098":1,"28099":2,"28100":2,"28101":2,"28102":1,"28103":1,"28104":1,"28105":1,"28106":1,"28107":1,"28108":2,"28109":1,"28110":1,"28111":2,"28112":2,"28113":2,"28114":1,"28115":1,"28116":2,"28117":1,"28118":1,"28119":1,"28120":2,"28121":2,"28122":2,"28123":2,"28124":2,"28125":1,"28126":1,"28127":1,"28128":1,"28129":1,"28130":1,"28131":1,"28132":2,"28133":2,"28134":2,"28135":2,"28136":2,"28137":1,"28138":1,"28139":2,"28140":1,"28141":1,"28142":2,"28143":2,"28144":2,"28145":2,"28146":2,"28147":1,"28148":1,"28149":2,"28150":2,"28151":2,"28152":1,"28153":2,"28154":2,"28155":1,"28156":2,"28157":2,"28158":1,"28159":1,"28160":2,"28161":2,"28162":1,"28163":2,"28164":1,"28165":1,"28166":2,"28167":2,"28168":1,"28169":1,"28170":1,"28171":2,"28172":1,"28173":1,"28174":1,"28175":1,"28176":1,"28177":2,"28178":2,"28179":2,"28180":1,"28181":1,"28182":1,"28183":2,"28184":1,"28185":1,"28186":2,"28187":2,"28188":1,"28189":2,"28190":2,"28191":1,"28192":2,"28193":1,"28194":1,"28195":1,"28196":1,"28197":2,"28198":2,"28199":1,"28200":2,"28201":1,"28202":2,"28203":1,"28204":1,"28205":1,"28206":2,"28207":2,"28208":2,"28209":2,"28210":1,"28211":1,"28212":1,"28213":2,"28214":2,"28215":1,"28216":1,"28217":2,"28218":1,"28219":2,"28220":1,"28221":2,"28222":1,"28223":1,"28224":1,"28225":1,"28226":2,"28227":2,"28228":1,"28229":2,"28230":2,"28231":1,"28232":2,"28233":2,"28234":2,"28235":1,"28236":2,"28237":1,"28238":2,"28239":2,"28240":1,"28241":1,"28242":2,"28243":2,"28244":1,"28245":2,"28246":2,"28247":1,"28248":2,"28249":1,"28250":1,"28251":2,"28252":2,"28253":2,"28254":1,"28255":2,"28256":2,"28257":2,"28258":2,"28259":2,"28260":2,"28261":2,"28262":2,"28263":1,"28264":1,"28265":1,"28266":1,"28267":1,"28268":1,"28269":2,"28270":2,"28271":1,"28272":2,"28273":2,"28274":1,"28275":1,"28276":1,"28277":1,"28278":2,"28279":1,"28280":1,"28281":2,"28282":2,"28283":2,"28284":2,"28285":1,"28286":1,"28287":1,"28288":2,"28289":1,"28290":1,"28291":2,"28292":1,"28293":2,"28294":1,"28295":2,"28296":2,"28297":1,"28298":2,"28299":1,"28300":2,"28301":1,"28302":2,"28303":2,"28304":1,"28305":2,"28306":1,"28307":2,"28308":2,"28309":1,"28310":1,"28311":1,"28312":2,"28313":2,"28314":2,"28315":2,"28316":2,"28317":2,"28318":1,"28319":2,"28320":1,"28321":2,"28322":2,"28323":2,"28324":1,"28325":1,"28326":2,"28327":1,"28328":2,"28329":2,"28330":2,"28331":1,"28332":2,"28333":2,"28334":1,"28335":1,"28336":1,"28337":1,"28338":1,"28339":2,"28340":2,"28341":2,"28342":2,"28343":1,"28344":1,"28345":2,"28346":1,"28347":1,"28348":2,"28349":2,"28350":2,"28351":2,"28352":2,"28353":2,"28354":1,"28355":2,"28356":2,"28357":1,"28358":1,"28359":2,"28360":1,"28361":1,"28362":2,"28363":1,"28364":2,"28365":1,"28366":2,"28367":1,"28368":2,"28369":2,"28370":2,"28371":2,"28372":2,"28373":2,"28374":2,"28375":2,"28376":2,"28377":2,"28378":1,"28379":2,"28380":1,"28381":1,"28382":2,"28383":1,"28384":2,"28385":1,"28386":1,"28387":1,"28388":1,"28389":2,"28390":1,"28391":1,"28392":1,"28393":2,"28394":1,"28395":1,"28396":2,"28397":1,"28398":1,"28399":2,"28400":1,"28401":2,"28402":2,"28403":2,"28404":2,"28405":1,"28406":1,"28407":2,"28408":2,"28409":1,"28410":1,"28411":1,"28412":2,"28413":1,"28414":2,"28415":2,"28416":1,"28417":1,"28418":2,"28419":1,"28420":2,"28421":1,"28422":2,"28423":1,"28424":1,"28425":2,"28426":2,"28427":2,"28428":2,"28429":2,"28430":1,"28431":1,"28432":2,"28433":1,"28434":2,"28435":1,"28436":1,"28437":1,"28438":2,"28439":2,"28440":1,"28441":2,"28442":2,"28443":2,"28444":2,"28445":2,"28446":1,"28447":1,"28448":1,"28449":2,"28450":1,"28451":1,"28452":1,"28453":1,"28454":1,"28455":2,"28456":2,"28457":2,"28458":2,"28459":1,"28460":1,"28461":2,"28462":1,"28463":2,"28464":1,"28465":1,"28466":1,"28467":1,"28468":1,"28469":1,"28470":2,"28471":2,"28472":1,"28473":2,"28474":1,"28475":2,"28476":1,"28477":1,"28478":2,"28479":1,"28480":2,"28481":1,"28482":2,"28483":2,"28484":2,"28485":1,"28486":2,"28487":1,"28488":2,"28489":1,"28490":2,"28491":1,"28492":1,"28493":2,"28494":2,"28495":1,"28496":1,"28497":2,"28498":2,"28499":2,"28500":2,"28501":1,"28502":2,"28503":2,"28504":2,"28505":1,"28506":2,"28507":2,"28508":2,"28509":1,"28510":2,"28511":1,"28512":1,"28513":1,"28514":1,"28515":2,"28516":2,"28517":1,"28518":1,"28519":2,"28520":2,"28521":2,"28522":2,"28523":1,"28524":2,"28525":1,"28526":2,"28527":1,"28528":1,"28529":2,"28530":2,"28531":1,"28532":1,"28533":2,"28534":2,"28535":1,"28536":2,"28537":1,"28538":1,"28539":2,"28540":2,"28541":1,"28542":2,"28543":1,"28544":2,"28545":1,"28546":1,"28547":1,"28548":2,"28549":2,"28550":1,"28551":1,"28552":1,"28553":2,"28554":1,"28555":2,"28556":2,"28557":1,"28558":1,"28559":2,"28560":2,"28561":1,"28562":2,"28563":2,"28564":2,"28565":2,"28566":2,"28567":1,"28568":1,"28569":1,"28570":1,"28571":2,"28572":2,"28573":2,"28574":2,"28575":2,"28576":1,"28577":1,"28578":1,"28579":1,"28580":1,"28581":2,"28582":1,"28583":2,"28584":2,"28585":1,"28586":2,"28587":1,"28588":2,"28589":1,"28590":1,"28591":2,"28592":2,"28593":2,"28594":1,"28595":1,"28596":1,"28597":1,"28598":1,"28599":1,"28600":2,"28601":2,"28602":2,"28603":1,"28604":2,"28605":2,"28606":1,"28607":2,"28608":1,"28609":2,"28610":2,"28611":2,"28612":1,"28613":1,"28614":1,"28615":1,"28616":1,"28617":2,"28618":2,"28619":2,"28620":2,"28621":2,"28622":2,"28623":1,"28624":1,"28625":1,"28626":1,"28627":2,"28628":2,"28629":2,"28630":1,"28631":2,"28632":1,"28633":1,"28634":2,"28635":1,"28636":2,"28637":2,"28638":1,"28639":2,"28640":1,"28641":2,"28642":2,"28643":2,"28644":1,"28645":2,"28646":2,"28647":2,"28648":2,"28649":2,"28650":2,"28651":1,"28652":2,"28653":1,"28654":1,"28655":2,"28656":2,"28657":1,"28658":2,"28659":2,"28660":1,"28661":1,"28662":2,"28663":2,"28664":1,"28665":2,"28666":2,"28667":1,"28668":2,"28669":2,"28670":1,"28671":1,"28672":2,"28673":2,"28674":2,"28675":2,"28676":2,"28677":2,"28678":1,"28679":2,"28680":2,"28681":1,"28682":1,"28683":2,"28684":1,"28685":1,"28686":2,"28687":1,"28688":1,"28689":1,"28690":1,"28691":2,"28692":2,"28693":1,"28694":1,"28695":1,"28696":2,"28697":1,"28698":1,"28699":2,"28700":2,"28701":2,"28702":2,"28703":1,"28704":1,"28705":1,"28706":2,"28707":2,"28708":2,"28709":1,"28710":2,"28711":1,"28712":1,"28713":2,"28714":2,"28715":2,"28716":2,"28717":2,"28718":2,"28719":1,"28720":1,"28721":1,"28722":2,"28723":1,"28724":1,"28725":1,"28726":1,"28727":2,"28728":2,"28729":2,"28730":1,"28731":2,"28732":1,"28733":2,"28734":2,"28735":2,"28736":1,"28737":1,"28738":1,"28739":2,"28740":1,"28741":1,"28742":2,"28743":2,"28744":2,"28745":1,"28746":2,"28747":1,"28748":1,"28749":2,"28750":1,"28751":2,"28752":1,"28753":1,"28754":1,"28755":1,"28756":1,"28757":1,"28758":1,"28759":1,"28760":1,"28761":1,"28762":2,"28763":1,"28764":1,"28765":1,"28766":2,"28767":1,"28768":2,"28769":1,"28770":1,"28771":2,"28772":2,"28773":1,"28774":2,"28775":2,"28776":2,"28777":1,"28778":2,"28779":1,"28780":2,"28781":1,"28782":1,"28783":1,"28784":1,"28785":2,"28786":2,"28787":2,"28788":1,"28789":1,"28790":2,"28791":1,"28792":1,"28793":1,"28794":1,"28795":1,"28796":2,"28797":2,"28798":1,"28799":2,"28800":2,"28801":2,"28802":1,"28803":1,"28804":2,"28805":1,"28806":2,"28807":2,"28808":1,"28809":2,"28810":1,"28811":1,"28812":1,"28813":2,"28814":1,"28815":2,"28816":2,"28817":2,"28818":2,"28819":1,"28820":2,"28821":2,"28822":1,"28823":2,"28824":1,"28825":1,"28826":1,"28827":1,"28828":1,"28829":1,"28830":1,"28831":2,"28832":1,"28833":1,"28834":2,"28835":1,"28836":2,"28837":2,"28838":2,"28839":2,"28840":1,"28841":1,"28842":2,"28843":2,"28844":2,"28845":1,"28846":2,"28847":2,"28848":1,"28849":1,"28850":1,"28851":2,"28852":2,"28853":1,"28854":2,"28855":2,"28856":2,"28857":2,"28858":2,"28859":1,"28860":1,"28861":2,"28862":1,"28863":1,"28864":1,"28865":1,"28866":1,"28867":1,"28868":1,"28869":2,"28870":2,"28871":1,"28872":1,"28873":2,"28874":2,"28875":1,"28876":1,"28877":1,"28878":1,"28879":2,"28880":2,"28881":2,"28882":2,"28883":1,"28884":1,"28885":1,"28886":1,"28887":2,"28888":1,"28889":1,"28890":1,"28891":1,"28892":1,"28893":1,"28894":2,"28895":1,"28896":2,"28897":1,"28898":2,"28899":2,"28900":1,"28901":2,"28902":2,"28903":2,"28904":2,"28905":2,"28906":2,"28907":2,"28908":2,"28909":1,"28910":1,"28911":2,"28912":1,"28913":2,"28914":2,"28915":1,"28916":1,"28917":2,"28918":1,"28919":2,"28920":1,"28921":2,"28922":2,"28923":1,"28924":1,"28925":1,"28926":2,"28927":1,"28928":2,"28929":1,"28930":1,"28931":1,"28932":1,"28933":1,"28934":1,"28935":2,"28936":2,"28937":2,"28938":1,"28939":2,"28940":1,"28941":2,"28942":2,"28943":1,"28944":1,"28945":1,"28946":2,"28947":2,"28948":2,"28949":1,"28950":1,"28951":2,"28952":1,"28953":1,"28954":2,"28955":2,"28956":2,"28957":2,"28958":1,"28959":2,"28960":2,"28961":2,"28962":1,"28963":1,"28964":1,"28965":1,"28966":1,"28967":1,"28968":1,"28969":1,"28970":1,"28971":1,"28972":2,"28973":2,"28974":2,"28975":2,"28976":1,"28977":1,"28978":2,"28979":1,"28980":2,"28981":2,"28982":2,"28983":1,"28984":1,"28985":1,"28986":1,"28987":1,"28988":2,"28989":2,"28990":1,"28991":2,"28992":1,"28993":1,"28994":2,"28995":1,"28996":2,"28997":1,"28998":2,"28999":1,"29000":1,"29001":1,"29002":1,"29003":1,"29004":2,"29005":2,"29006":1,"29007":1,"29008":2,"29009":2,"29010":2,"29011":1,"29012":1,"29013":1,"29014":2,"29015":1,"29016":1,"29017":2,"29018":1,"29019":1,"29020":1,"29021":1,"29022":2,"29023":1,"29024":1,"29025":2,"29026":2,"29027":2,"29028":1,"29029":2,"29030":1,"29031":2,"29032":2,"29033":2,"29034":2,"29035":2,"29036":1,"29037":1,"29038":1,"29039":2,"29040":1,"29041":1,"29042":1,"29043":2,"29044":2,"29045":2,"29046":2,"29047":2,"29048":1,"29049":2,"29050":2,"29051":1,"29052":1,"29053":2,"29054":1,"29055":2,"29056":2,"29057":2,"29058":2,"29059":1,"29060":1,"29061":2,"29062":2,"29063":2,"29064":2,"29065":2,"29066":2,"29067":2,"29068":1,"29069":1,"29070":1,"29071":1,"29072":2,"29073":1,"29074":2,"29075":1,"29076":2,"29077":2,"29078":1,"29079":2,"29080":1,"29081":1,"29082":2,"29083":1,"29084":2,"29085":2,"29086":2,"29087":2,"29088":1,"29089":2,"29090":1,"29091":1,"29092":1,"29093":2,"29094":2,"29095":1,"29096":2,"29097":2,"29098":1,"29099":1,"29100":1,"29101":1,"29102":1,"29103":1,"29104":1,"29105":2,"29106":2,"29107":2,"29108":1,"29109":1,"29110":2,"29111":1,"29112":2,"29113":1,"29114":1,"29115":1,"29116":2,"29117":1,"29118":2,"29119":1,"29120":1,"29121":1,"29122":2,"29123":2,"29124":1,"29125":2,"29126":2,"29127":2,"29128":2,"29129":1,"29130":1,"29131":2,"29132":2,"29133":2,"29134":2,"29135":2,"29136":2,"29137":2,"29138":2,"29139":1,"29140":1,"29141":2,"29142":1,"29143":2,"29144":2,"29145":2,"29146":2,"29147":2,"29148":2,"29149":2,"29150":2,"29151":2,"29152":1,"29153":1,"29154":1,"29155":1,"29156":2,"29157":2,"29158":1,"29159":2,"29160":2,"29161":2,"29162":2,"29163":2,"29164":1,"29165":1,"29166":1,"29167":2,"29168":1,"29169":2,"29170":1,"29171":2,"29172":2,"29173":1,"29174":2,"29175":2,"29176":1,"29177":2,"29178":2,"29179":1,"29180":2,"29181":1,"29182":1,"29183":2,"29184":1,"29185":1,"29186":1,"29187":2,"29188":2,"29189":1,"29190":2,"29191":1,"29192":2,"29193":1,"29194":1,"29195":1,"29196":2,"29197":2,"29198":1,"29199":2,"29200":1,"29201":1,"29202":1,"29203":1,"29204":1,"29205":2,"29206":2,"29207":2,"29208":1,"29209":1,"29210":1,"29211":1,"29212":1,"29213":2,"29214":2,"29215":2,"29216":2,"29217":2,"29218":1,"29219":2,"29220":1,"29221":2,"29222":1,"29223":2,"29224":2,"29225":1,"29226":2,"29227":2,"29228":1,"29229":2,"29230":2,"29231":1,"29232":1,"29233":2,"29234":2,"29235":1,"29236":1,"29237":1,"29238":2,"29239":1,"29240":1,"29241":2,"29242":2,"29243":2,"29244":2,"29245":1,"29246":1,"29247":2,"29248":2,"29249":2,"29250":2,"29251":1,"29252":1,"29253":2,"29254":1,"29255":2,"29256":1,"29257":1,"29258":1,"29259":1,"29260":2,"29261":1,"29262":2,"29263":2,"29264":1,"29265":2,"29266":2,"29267":1,"29268":2,"29269":2,"29270":2,"29271":1,"29272":2,"29273":2,"29274":2,"29275":1,"29276":2,"29277":2,"29278":2,"29279":1,"29280":2,"29281":2,"29282":2,"29283":2,"29284":2,"29285":1,"29286":2,"29287":2,"29288":2,"29289":1,"29290":1,"29291":2,"29292":1,"29293":1,"29294":2,"29295":1,"29296":1,"29297":1,"29298":1,"29299":1,"29300":1,"29301":2,"29302":2,"29303":2,"29304":2,"29305":2,"29306":2,"29307":2,"29308":2,"29309":2,"29310":1,"29311":2,"29312":2,"29313":2,"29314":1,"29315":1,"29316":1,"29317":2,"29318":2,"29319":1,"29320":2,"29321":1,"29322":2,"29323":2,"29324":2,"29325":1,"29326":2,"29327":1,"29328":2,"29329":1,"29330":2,"29331":1,"29332":2,"29333":1,"29334":1,"29335":2,"29336":1,"29337":1,"29338":1,"29339":2,"29340":1,"29341":2,"29342":1,"29343":2,"29344":1,"29345":1,"29346":2,"29347":1,"29348":1,"29349":1,"29350":2,"29351":1,"29352":2,"29353":2,"29354":2,"29355":2,"29356":1,"29357":1,"29358":2,"29359":2,"29360":1,"29361":2,"29362":1,"29363":2,"29364":2,"29365":2,"29366":2,"29367":1,"29368":1,"29369":1,"29370":1,"29371":1,"29372":1,"29373":2,"29374":2,"29375":1,"29376":1,"29377":1,"29378":2,"29379":1,"29380":1,"29381":1,"29382":1,"29383":1,"29384":1,"29385":1,"29386":2,"29387":2,"29388":2,"29389":1,"29390":1,"29391":2,"29392":2,"29393":1,"29394":1,"29395":1,"29396":1,"29397":2,"29398":1,"29399":1,"29400":1,"29401":2,"29402":1,"29403":2,"29404":1,"29405":1,"29406":1,"29407":2,"29408":2,"29409":2,"29410":2,"29411":2,"29412":2,"29413":1,"29414":1,"29415":2,"29416":2,"29417":2,"29418":1,"29419":2,"29420":2,"29421":1,"29422":2,"29423":1,"29424":1,"29425":2,"29426":1,"29427":2,"29428":2,"29429":2,"29430":2,"29431":2,"29432":2,"29433":1,"29434":1,"29435":2,"29436":1,"29437":1,"29438":2,"29439":1,"29440":1,"29441":1,"29442":2,"29443":2,"29444":1,"29445":1,"29446":1,"29447":2,"29448":1,"29449":2,"29450":1,"29451":2,"29452":1,"29453":2,"29454":2,"29455":1,"29456":1,"29457":2,"29458":2,"29459":2,"29460":2,"29461":2,"29462":1,"29463":1,"29464":2,"29465":2,"29466":1,"29467":1,"29468":2,"29469":2,"29470":1,"29471":1,"29472":1,"29473":1,"29474":2,"29475":2,"29476":2,"29477":1,"29478":1,"29479":2,"29480":2,"29481":2,"29482":2,"29483":2,"29484":2,"29485":2,"29486":1,"29487":1,"29488":2,"29489":2,"29490":1,"29491":2,"29492":2,"29493":1,"29494":1,"29495":2,"29496":1,"29497":2,"29498":1,"29499":1,"29500":1,"29501":2,"29502":1,"29503":2,"29504":1,"29505":1,"29506":2,"29507":2,"29508":1,"29509":2,"29510":1,"29511":1,"29512":2,"29513":1,"29514":1,"29515":2,"29516":1,"29517":2,"29518":2,"29519":1,"29520":1,"29521":2,"29522":1,"29523":2,"29524":1,"29525":1,"29526":1,"29527":2,"29528":2,"29529":1,"29530":2,"29531":2,"29532":1,"29533":1,"29534":1,"29535":1,"29536":1,"29537":1,"29538":2,"29539":2,"29540":1,"29541":1,"29542":2,"29543":2,"29544":1,"29545":2,"29546":1,"29547":1,"29548":2,"29549":2,"29550":1,"29551":2,"29552":2,"29553":1,"29554":1,"29555":1,"29556":1,"29557":2,"29558":1,"29559":1,"29560":2,"29561":2,"29562":2,"29563":2,"29564":1,"29565":2,"29566":1,"29567":1,"29568":2,"29569":2,"29570":1,"29571":2,"29572":2,"29573":2,"29574":2,"29575":2,"29576":2,"29577":1,"29578":1,"29579":1,"29580":1,"29581":2,"29582":1,"29583":1,"29584":1,"29585":2,"29586":2,"29587":2,"29588":2,"29589":2,"29590":1,"29591":1,"29592":1,"29593":1,"29594":1,"29595":2,"29596":2,"29597":1,"29598":1,"29599":1,"29600":1,"29601":2,"29602":2,"29603":1,"29604":2,"29605":1,"29606":1,"29607":2,"29608":1,"29609":1,"29610":1,"29611":1,"29612":1,"29613":1,"29614":2,"29615":1,"29616":1,"29617":2,"29618":1,"29619":2,"29620":2,"29621":2,"29622":1,"29623":2,"29624":1,"29625":2,"29626":1,"29627":1,"29628":2,"29629":1,"29630":1,"29631":2,"29632":2,"29633":1,"29634":1,"29635":1,"29636":2,"29637":2,"29638":2,"29639":2,"29640":2,"29641":1,"29642":1,"29643":1,"29644":1,"29645":2,"29646":1,"29647":1,"29648":2,"29649":1,"29650":1,"29651":1,"29652":2,"29653":2,"29654":1,"29655":2,"29656":2,"29657":1,"29658":2,"29659":2,"29660":2,"29661":2,"29662":1,"29663":1,"29664":1,"29665":1,"29666":2,"29667":1,"29668":2,"29669":2,"29670":1,"29671":1,"29672":2,"29673":1,"29674":1,"29675":2,"29676":2,"29677":2,"29678":2,"29679":1,"29680":2,"29681":1,"29682":2,"29683":2,"29684":1,"29685":2,"29686":2,"29687":1,"29688":1,"29689":2,"29690":1,"29691":2,"29692":2,"29693":1,"29694":1,"29695":1,"29696":2,"29697":2,"29698":2,"29699":2,"29700":2,"29701":2,"29702":2,"29703":2,"29704":2,"29705":2,"29706":1,"29707":2,"29708":2,"29709":2,"29710":2,"29711":1,"29712":1,"29713":2,"29714":2,"29715":2,"29716":1,"29717":1,"29718":1,"29719":2,"29720":1,"29721":2,"29722":1,"29723":2,"29724":2,"29725":2,"29726":1,"29727":1,"29728":1,"29729":2,"29730":2,"29731":2,"29732":1,"29733":2,"29734":2,"29735":2,"29736":2,"29737":2,"29738":2,"29739":2,"29740":1,"29741":1,"29742":1,"29743":2,"29744":1,"29745":1,"29746":2,"29747":2,"29748":1,"29749":1,"29750":1,"29751":1,"29752":1,"29753":2,"29754":1,"29755":1,"29756":1,"29757":2,"29758":2,"29759":1,"29760":1,"29761":1,"29762":1,"29763":2,"29764":1,"29765":1,"29766":1,"29767":1,"29768":2,"29769":2,"29770":2,"29771":2,"29772":2,"29773":2,"29774":1,"29775":1,"29776":1,"29777":1,"29778":2,"29779":1,"29780":2,"29781":1,"29782":2,"29783":1,"29784":2,"29785":2,"29786":1,"29787":1,"29788":2,"29789":1,"29790":1,"29791":2,"29792":2,"29793":1,"29794":2,"29795":2,"29796":2,"29797":2,"29798":2,"29799":2,"29800":1,"29801":2,"29802":2,"29803":2,"29804":1,"29805":1,"29806":1,"29807":2,"29808":1,"29809":2,"29810":1,"29811":2,"29812":1,"29813":2,"29814":1,"29815":1,"29816":1,"29817":2,"29818":1,"29819":1,"29820":1,"29821":2,"29822":2,"29823":2,"29824":2,"29825":2,"29826":2,"29827":1,"29828":2,"29829":2,"29830":2,"29831":1,"29832":2,"29833":2,"29834":1,"29835":2,"29836":2,"29837":2,"29838":2,"29839":1,"29840":2,"29841":2,"29842":2,"29843":1,"29844":1,"29845":1,"29846":2,"29847":2,"29848":1,"29849":2,"29850":2,"29851":2,"29852":2,"29853":1,"29854":1,"29855":1,"29856":2,"29857":2,"29858":1,"29859":1,"29860":2,"29861":1,"29862":1,"29863":1,"29864":1,"29865":2,"29866":2,"29867":1,"29868":1,"29869":1,"29870":1,"29871":1,"29872":2,"29873":1,"29874":1,"29875":2,"29876":2,"29877":1,"29878":2,"29879":1,"29880":2,"29881":2,"29882":1,"29883":2,"29884":1,"29885":1,"29886":2,"29887":2,"29888":2,"29889":1,"29890":1,"29891":2,"29892":1,"29893":1,"29894":1,"29895":1,"29896":2,"29897":2,"29898":1,"29899":2,"29900":1,"29901":1,"29902":2,"29903":2,"29904":2,"29905":2,"29906":2,"29907":2,"29908":1,"29909":2,"29910":1,"29911":1,"29912":2,"29913":1,"29914":1,"29915":1,"29916":1,"29917":2,"29918":2,"29919":1,"29920":2,"29921":1,"29922":1,"29923":2,"29924":1,"29925":1,"29926":2,"29927":1,"29928":2,"29929":2,"29930":1,"29931":1,"29932":1,"29933":2,"29934":1,"29935":1,"29936":1,"29937":2,"29938":2,"29939":2,"29940":1,"29941":2,"29942":2,"29943":1,"29944":1,"29945":1,"29946":2,"29947":2,"29948":1,"29949":2,"29950":1,"29951":1,"29952":2,"29953":2,"29954":1,"29955":1,"29956":1,"29957":1,"29958":1,"29959":2,"29960":1,"29961":2,"29962":1,"29963":2,"29964":2,"29965":2,"29966":2,"29967":1,"29968":1,"29969":2,"29970":1,"29971":1,"29972":1,"29973":1,"29974":2,"29975":2,"29976":2,"29977":1,"29978":2,"29979":1,"29980":2,"29981":1,"29982":2,"29983":1,"29984":1,"29985":1,"29986":1,"29987":2,"29988":1,"29989":2,"29990":2,"29991":1,"29992":2,"29993":1,"29994":2,"29995":1,"29996":1,"29997":1,"29998":2,"29999":2,"30000":2,"30001":1,"30002":2,"30003":2,"30004":1,"30005":2,"30006":1,"30007":1,"30008":2,"30009":2,"30010":1,"30011":1,"30012":1,"30013":2,"30014":1,"30015":2,"30016":1,"30017":1,"30018":2,"30019":2,"30020":1,"30021":1,"30022":1,"30023":1,"30024":1,"30025":1,"30026":2,"30027":1,"30028":2,"30029":1,"30030":2,"30031":1,"30032":1,"30033":2,"30034":1,"30035":1,"30036":1,"30037":1,"30038":2,"30039":1,"30040":1,"30041":2,"30042":1,"30043":2,"30044":2,"30045":1,"30046":1,"30047":1,"30048":2,"30049":2,"30050":1,"30051":2,"30052":2,"30053":2,"30054":1,"30055":2,"30056":2,"30057":1,"30058":2,"30059":1,"30060":2,"30061":1,"30062":2,"30063":2,"30064":1,"30065":1,"30066":1,"30067":2,"30068":1,"30069":2,"30070":1,"30071":1,"30072":1,"30073":2,"30074":2,"30075":2,"30076":1,"30077":2,"30078":1,"30079":1,"30080":1,"30081":2,"30082":2,"30083":1,"30084":1,"30085":1,"30086":1,"30087":2,"30088":1,"30089":2,"30090":1,"30091":2,"30092":1,"30093":1,"30094":1,"30095":1,"30096":2,"30097":2,"30098":1,"30099":1,"30100":2,"30101":2,"30102":2,"30103":2,"30104":1,"30105":1,"30106":1,"30107":2,"30108":1,"30109":1,"30110":2,"30111":1,"30112":2,"30113":2,"30114":2,"30115":1,"30116":2,"30117":2,"30118":1,"30119":1,"30120":1,"30121":1,"30122":2,"30123":1,"30124":2,"30125":2,"30126":2,"30127":2,"30128":1,"30129":2,"30130":2,"30131":2,"30132":2,"30133":2,"30134":2,"30135":1,"30136":1,"30137":2,"30138":1,"30139":2,"30140":1,"30141":2,"30142":2,"30143":2,"30144":2,"30145":1,"30146":1,"30147":2,"30148":2,"30149":2,"30150":1,"30151":2,"30152":2,"30153":2,"30154":1,"30155":2,"30156":1,"30157":1,"30158":1,"30159":1,"30160":2,"30161":1,"30162":2,"30163":1,"30164":1,"30165":1,"30166":1,"30167":2,"30168":2,"30169":1,"30170":2,"30171":2,"30172":1,"30173":2,"30174":2,"30175":1,"30176":1,"30177":1,"30178":1,"30179":2,"30180":1,"30181":2,"30182":2,"30183":2,"30184":1,"30185":1,"30186":2,"30187":2,"30188":2,"30189":1,"30190":2,"30191":1,"30192":1,"30193":2,"30194":1,"30195":1,"30196":1,"30197":1,"30198":1,"30199":2,"30200":2,"30201":1,"30202":1,"30203":2,"30204":1,"30205":2,"30206":2,"30207":1,"30208":2,"30209":1,"30210":1,"30211":1,"30212":2,"30213":2,"30214":2,"30215":2,"30216":2,"30217":2,"30218":1,"30219":2,"30220":2,"30221":1,"30222":1,"30223":2,"30224":2,"30225":2,"30226":1,"30227":2,"30228":1,"30229":2,"30230":1,"30231":1,"30232":1,"30233":2,"30234":1,"30235":2,"30236":2,"30237":1,"30238":2,"30239":2,"30240":2,"30241":1,"30242":2,"30243":1,"30244":1,"30245":1,"30246":1,"30247":1,"30248":1,"30249":2,"30250":1,"30251":1,"30252":1,"30253":2,"30254":2,"30255":2,"30256":2,"30257":2,"30258":2,"30259":1,"30260":2,"30261":2,"30262":2,"30263":1,"30264":1,"30265":1,"30266":2,"30267":2,"30268":2,"30269":2,"30270":2,"30271":2,"30272":2,"30273":2,"30274":2,"30275":1,"30276":1,"30277":1,"30278":1,"30279":1,"30280":1,"30281":2,"30282":1,"30283":1,"30284":1,"30285":2,"30286":1,"30287":1,"30288":2,"30289":2,"30290":1,"30291":2,"30292":1,"30293":1,"30294":1,"30295":2,"30296":1,"30297":1,"30298":2,"30299":1,"30300":1,"30301":1,"30302":1,"30303":1,"30304":1,"30305":1,"30306":1,"30307":1,"30308":2,"30309":2,"30310":2,"30311":1,"30312":2,"30313":2,"30314":2,"30315":1,"30316":2,"30317":2,"30318":1,"30319":1,"30320":1,"30321":1,"30322":2,"30323":2,"30324":2,"30325":1,"30326":2,"30327":2,"30328":1,"30329":1,"30330":1,"30331":1,"30332":1,"30333":1,"30334":2,"30335":1,"30336":2,"30337":1,"30338":1,"30339":1,"30340":1,"30341":1,"30342":2,"30343":1,"30344":1,"30345":1,"30346":2,"30347":1,"30348":1,"30349":2,"30350":2,"30351":1,"30352":1,"30353":1,"30354":2,"30355":2,"30356":2,"30357":1,"30358":1,"30359":2,"30360":2,"30361":1,"30362":1,"30363":1,"30364":2,"30365":2,"30366":1,"30367":2,"30368":2,"30369":2,"30370":1,"30371":1,"30372":2,"30373":2,"30374":1,"30375":2,"30376":1,"30377":2,"30378":2,"30379":2,"30380":1,"30381":2,"30382":2,"30383":2,"30384":2,"30385":1,"30386":1,"30387":2,"30388":1,"30389":1,"30390":2,"30391":1,"30392":2,"30393":2,"30394":2,"30395":1,"30396":1,"30397":2,"30398":2,"30399":2,"30400":2,"30401":1,"30402":1,"30403":2,"30404":1,"30405":2,"30406":2,"30407":1,"30408":1,"30409":2,"30410":2,"30411":2,"30412":1,"30413":2,"30414":2,"30415":1,"30416":1,"30417":2,"30418":1,"30419":1,"30420":2,"30421":1,"30422":1,"30423":1,"30424":1,"30425":1,"30426":2,"30427":1,"30428":1,"30429":1,"30430":1,"30431":1,"30432":2,"30433":2,"30434":2,"30435":1,"30436":2,"30437":1,"30438":2,"30439":1,"30440":2,"30441":1,"30442":2,"30443":2,"30444":2,"30445":2,"30446":2,"30447":1,"30448":2,"30449":1,"30450":2,"30451":1,"30452":2,"30453":2,"30454":2,"30455":1,"30456":2,"30457":1,"30458":1,"30459":2,"30460":1,"30461":2,"30462":1,"30463":2,"30464":1,"30465":1,"30466":1,"30467":2,"30468":2,"30469":1,"30470":1,"30471":2,"30472":2,"30473":2,"30474":1,"30475":1,"30476":2,"30477":1,"30478":1,"30479":1,"30480":2,"30481":1,"30482":1,"30483":2,"30484":1,"30485":2,"30486":2,"30487":2,"30488":1,"30489":1,"30490":1,"30491":2,"30492":1,"30493":2,"30494":1,"30495":2,"30496":1,"30497":2,"30498":2,"30499":1,"30500":1,"30501":2,"30502":1,"30503":1,"30504":2,"30505":2,"30506":2,"30507":2,"30508":2,"30509":2,"30510":1,"30511":2,"30512":2,"30513":2,"30514":1,"30515":2,"30516":1,"30517":2,"30518":2,"30519":2,"30520":1,"30521":2,"30522":2,"30523":2,"30524":2,"30525":1,"30526":2,"30527":1,"30528":1,"30529":1,"30530":1,"30531":1,"30532":1,"30533":2,"30534":2,"30535":2,"30536":2,"30537":2,"30538":2,"30539":1,"30540":1,"30541":2,"30542":2,"30543":2,"30544":2,"30545":2,"30546":1,"30547":2,"30548":2,"30549":1,"30550":2,"30551":1,"30552":1,"30553":1,"30554":2,"30555":2,"30556":1,"30557":2,"30558":2,"30559":1,"30560":2,"30561":2,"30562":1,"30563":1,"30564":1,"30565":1,"30566":1,"30567":2,"30568":1,"30569":1,"30570":1,"30571":1,"30572":1,"30573":2,"30574":1,"30575":1,"30576":2,"30577":2,"30578":1,"30579":2,"30580":1,"30581":2,"30582":1,"30583":1,"30584":2,"30585":2,"30586":2,"30587":1,"30588":2,"30589":1,"30590":1,"30591":1,"30592":2,"30593":2,"30594":1,"30595":2,"30596":1,"30597":1,"30598":2,"30599":2,"30600":1,"30601":2,"30602":2,"30603":2,"30604":1,"30605":1,"30606":1,"30607":2,"30608":1,"30609":2,"30610":1,"30611":1,"30612":2,"30613":1,"30614":2,"30615":2,"30616":1,"30617":2,"30618":2,"30619":2,"30620":1,"30621":1,"30622":2,"30623":1,"30624":1,"30625":1,"30626":1,"30627":2,"30628":1,"30629":1,"30630":1,"30631":1,"30632":2,"30633":2,"30634":2,"30635":1,"30636":2,"30637":2,"30638":2,"30639":2,"30640":2,"30641":2,"30642":2,"30643":1,"30644":1,"30645":1,"30646":1,"30647":1,"30648":2,"30649":2,"30650":1,"30651":1,"30652":2,"30653":1,"30654":1,"30655":1,"30656":1,"30657":1,"30658":1,"30659":2,"30660":1,"30661":1,"30662":1,"30663":1,"30664":1,"30665":1,"30666":2,"30667":1,"30668":1,"30669":2,"30670":1,"30671":1,"30672":1,"30673":1,"30674":2,"30675":2,"30676":1,"30677":1,"30678":1,"30679":2,"30680":1,"30681":1,"30682":2,"30683":1,"30684":1,"30685":2,"30686":2,"30687":1,"30688":2,"30689":1,"30690":2,"30691":2,"30692":1,"30693":2,"30694":1,"30695":2,"30696":2,"30697":1,"30698":2,"30699":1,"30700":1,"30701":1,"30702":1,"30703":1,"30704":1,"30705":1,"30706":2,"30707":1,"30708":1,"30709":2,"30710":1,"30711":1,"30712":2,"30713":1,"30714":1,"30715":2,"30716":2,"30717":1,"30718":1,"30719":1,"30720":2,"30721":1,"30722":2,"30723":2,"30724":2,"30725":2,"30726":1,"30727":2,"30728":2,"30729":1,"30730":1,"30731":2,"30732":2,"30733":1,"30734":1,"30735":1,"30736":1,"30737":1,"30738":1,"30739":2,"30740":2,"30741":2,"30742":1,"30743":1,"30744":1,"30745":1,"30746":1,"30747":1,"30748":1,"30749":2,"30750":1,"30751":2,"30752":1,"30753":2,"30754":1,"30755":1,"30756":1,"30757":1,"30758":2,"30759":2,"30760":2,"30761":2,"30762":2,"30763":2,"30764":2,"30765":2,"30766":2,"30767":2,"30768":2,"30769":1,"30770":2,"30771":1,"30772":2,"30773":2,"30774":2,"30775":1,"30776":1,"30777":2,"30778":1,"30779":2,"30780":1,"30781":2,"30782":2,"30783":1,"30784":1,"30785":2,"30786":2,"30787":2,"30788":1,"30789":2,"30790":2,"30791":2,"30792":1,"30793":1,"30794":1,"30795":1,"30796":1,"30797":2,"30798":2,"30799":1,"30800":2,"30801":2,"30802":2,"30803":2,"30804":2,"30805":1,"30806":2,"30807":1,"30808":2,"30809":2,"30810":2,"30811":2,"30812":2,"30813":2,"30814":1,"30815":2,"30816":2,"30817":1,"30818":1,"30819":2,"30820":1,"30821":2,"30822":2,"30823":2,"30824":2,"30825":2,"30826":1,"30827":1,"30828":2,"30829":2,"30830":1,"30831":2,"30832":1,"30833":2,"30834":2,"30835":2,"30836":1,"30837":1,"30838":1,"30839":2,"30840":2,"30841":2,"30842":2,"30843":2,"30844":1,"30845":2,"30846":1,"30847":2,"30848":2,"30849":1,"30850":2,"30851":2,"30852":1,"30853":1,"30854":2,"30855":1,"30856":2,"30857":2,"30858":2,"30859":2,"30860":1,"30861":2,"30862":2,"30863":1,"30864":2,"30865":2,"30866":2,"30867":1,"30868":2,"30869":1,"30870":2,"30871":2,"30872":1,"30873":2,"30874":2,"30875":1,"30876":2,"30877":1,"30878":1,"30879":2,"30880":2,"30881":1,"30882":1,"30883":2,"30884":1,"30885":1,"30886":1,"30887":2,"30888":1,"30889":2,"30890":2,"30891":2,"30892":1,"30893":1,"30894":1,"30895":2,"30896":2,"30897":1,"30898":1,"30899":1,"30900":2,"30901":2,"30902":2,"30903":1,"30904":1,"30905":2,"30906":2,"30907":1,"30908":1,"30909":2,"30910":1,"30911":1,"30912":1,"30913":1,"30914":1,"30915":2,"30916":2,"30917":2,"30918":1,"30919":1,"30920":1,"30921":1,"30922":2,"30923":2,"30924":1,"30925":1,"30926":1,"30927":2,"30928":2,"30929":1,"30930":1,"30931":1,"30932":2,"30933":2,"30934":1,"30935":2,"30936":1,"30937":2,"30938":2,"30939":2,"30940":1,"30941":1,"30942":1,"30943":1,"30944":2,"30945":1,"30946":2,"30947":2,"30948":2,"30949":1,"30950":2,"30951":1,"30952":2,"30953":1,"30954":1,"30955":2,"30956":1,"30957":2,"30958":1,"30959":1,"30960":2,"30961":2,"30962":1,"30963":1,"30964":1,"30965":2,"30966":1,"30967":1,"30968":1,"30969":2,"30970":1,"30971":2,"30972":1,"30973":2,"30974":1,"30975":2,"30976":1,"30977":1,"30978":1,"30979":1,"30980":1,"30981":1,"30982":2,"30983":1,"30984":1,"30985":2,"30986":2,"30987":2,"30988":2,"30989":2,"30990":1,"30991":1,"30992":2,"30993":2,"30994":1,"30995":1,"30996":1,"30997":2,"30998":2,"30999":2,"31000":1,"31001":1,"31002":1,"31003":2,"31004":2,"31005":1,"31006":2,"31007":1,"31008":2,"31009":1,"31010":2,"31011":2,"31012":2,"31013":2,"31014":1,"31015":2,"31016":1,"31017":2,"31018":1,"31019":1,"31020":1,"31021":2,"31022":1,"31023":2,"31024":2,"31025":1,"31026":1,"31027":2,"31028":1,"31029":2,"31030":2,"31031":1,"31032":1,"31033":2,"31034":2,"31035":2,"31036":1,"31037":1,"31038":2,"31039":2,"31040":1,"31041":2,"31042":2,"31043":1,"31044":2,"31045":1,"31046":1,"31047":2,"31048":1,"31049":2,"31050":1,"31051":1,"31052":1,"31053":2,"31054":1,"31055":2,"31056":1,"31057":2,"31058":1,"31059":1,"31060":1,"31061":2,"31062":2,"31063":2,"31064":2,"31065":1,"31066":1,"31067":2,"31068":2,"31069":1,"31070":1,"31071":2,"31072":1,"31073":2,"31074":2,"31075":1,"31076":1,"31077":2,"31078":1,"31079":1,"31080":2,"31081":1,"31082":2,"31083":1,"31084":2,"31085":1,"31086":2,"31087":2,"31088":2,"31089":2,"31090":1,"31091":1,"31092":2,"31093":2,"31094":2,"31095":1,"31096":2,"31097":2,"31098":1,"31099":2,"31100":1,"31101":1,"31102":2,"31103":2,"31104":1,"31105":1,"31106":1,"31107":1,"31108":1,"31109":1,"31110":1,"31111":1,"31112":2,"31113":2,"31114":1,"31115":2,"31116":1,"31117":1,"31118":1,"31119":2,"31120":2,"31121":2,"31122":1,"31123":1,"31124":2,"31125":2,"31126":1,"31127":1,"31128":2,"31129":1,"31130":1,"31131":1,"31132":2,"31133":1,"31134":1,"31135":1,"31136":1,"31137":1,"31138":1,"31139":2,"31140":2,"31141":1,"31142":2,"31143":2,"31144":2,"31145":1,"31146":2,"31147":1,"31148":2,"31149":2,"31150":2,"31151":2,"31152":1,"31153":2,"31154":1,"31155":1,"31156":1,"31157":1,"31158":2,"31159":2,"31160":1,"31161":2,"31162":1,"31163":2,"31164":2,"31165":2,"31166":2,"31167":1,"31168":1,"31169":2,"31170":2,"31171":1,"31172":1,"31173":1,"31174":1,"31175":2,"31176":2,"31177":1,"31178":2,"31179":2,"31180":2,"31181":2,"31182":2,"31183":1,"31184":1,"31185":1,"31186":1,"31187":1,"31188":2,"31189":1,"31190":1,"31191":1,"31192":1,"31193":2,"31194":2,"31195":1,"31196":2,"31197":2,"31198":1,"31199":1,"31200":2,"31201":1,"31202":1,"31203":2,"31204":2,"31205":1,"31206":1,"31207":1,"31208":1,"31209":2,"31210":2,"31211":1,"31212":1,"31213":1,"31214":1,"31215":1,"31216":1,"31217":2,"31218":2,"31219":1,"31220":1,"31221":1,"31222":2,"31223":1,"31224":1,"31225":1,"31226":1,"31227":1,"31228":1,"31229":2,"31230":1,"31231":2,"31232":1,"31233":1,"31234":1,"31235":1,"31236":2,"31237":1,"31238":2,"31239":1,"31240":2,"31241":1,"31242":2,"31243":1,"31244":1,"31245":2,"31246":1,"31247":1,"31248":1,"31249":2,"31250":1,"31251":2,"31252":1,"31253":1,"31254":2,"31255":2,"31256":1,"31257":1,"31258":1,"31259":1,"31260":1,"31261":1,"31262":1,"31263":2,"31264":1,"31265":1,"31266":1,"31267":1,"31268":2,"31269":1,"31270":1,"31271":2,"31272":2,"31273":1,"31274":1,"31275":1,"31276":2,"31277":2,"31278":1,"31279":1,"31280":2,"31281":2,"31282":2,"31283":1,"31284":1,"31285":2,"31286":2,"31287":2,"31288":2,"31289":1,"31290":1,"31291":2,"31292":1,"31293":2,"31294":2,"31295":2,"31296":2,"31297":2,"31298":2,"31299":2,"31300":2,"31301":2,"31302":1,"31303":1,"31304":1,"31305":1,"31306":2,"31307":2,"31308":1,"31309":2,"31310":2,"31311":1,"31312":2,"31313":2,"31314":2,"31315":1,"31316":2,"31317":2,"31318":1,"31319":1,"31320":1,"31321":2,"31322":2,"31323":1,"31324":1,"31325":2,"31326":2,"31327":2,"31328":2,"31329":2,"31330":1,"31331":2,"31332":1,"31333":2,"31334":2,"31335":2,"31336":1,"31337":2,"31338":2,"31339":1,"31340":2,"31341":1,"31342":1,"31343":2,"31344":2,"31345":2,"31346":1,"31347":1,"31348":2,"31349":2,"31350":2,"31351":1,"31352":2,"31353":2,"31354":2,"31355":2,"31356":2,"31357":1,"31358":1,"31359":2,"31360":2,"31361":2,"31362":2,"31363":2,"31364":2,"31365":1,"31366":1,"31367":1,"31368":2,"31369":1,"31370":1,"31371":1,"31372":2,"31373":2,"31374":2,"31375":1,"31376":1,"31377":2,"31378":2,"31379":2,"31380":2,"31381":2,"31382":1,"31383":2,"31384":2,"31385":2,"31386":2,"31387":2,"31388":2,"31389":2,"31390":2,"31391":1,"31392":1,"31393":1,"31394":1,"31395":1,"31396":2,"31397":2,"31398":2,"31399":2,"31400":2,"31401":2,"31402":2,"31403":2,"31404":2,"31405":1,"31406":1,"31407":1,"31408":1,"31409":1,"31410":1,"31411":2,"31412":1,"31413":2,"31414":1,"31415":2,"31416":1,"31417":2,"31418":1,"31419":1,"31420":1,"31421":1,"31422":1,"31423":2,"31424":2,"31425":1,"31426":1,"31427":2,"31428":1,"31429":1,"31430":2,"31431":1,"31432":2,"31433":1,"31434":2,"31435":1,"31436":1,"31437":2,"31438":1,"31439":2,"31440":2,"31441":1,"31442":2,"31443":1,"31444":2,"31445":1,"31446":2,"31447":2,"31448":1,"31449":1,"31450":1,"31451":1,"31452":2,"31453":2,"31454":2,"31455":1,"31456":2,"31457":1,"31458":1,"31459":2,"31460":1,"31461":1,"31462":1,"31463":1,"31464":1,"31465":2,"31466":1,"31467":2,"31468":1,"31469":1,"31470":2,"31471":2,"31472":2,"31473":1,"31474":1,"31475":1,"31476":1,"31477":2,"31478":2,"31479":2,"31480":1,"31481":1,"31482":2,"31483":1,"31484":2,"31485":2,"31486":1,"31487":2,"31488":1,"31489":1,"31490":2,"31491":1,"31492":1,"31493":2,"31494":1,"31495":1,"31496":2,"31497":1,"31498":2,"31499":1,"31500":1,"31501":2,"31502":2,"31503":2,"31504":1,"31505":2,"31506":1,"31507":1,"31508":2,"31509":2,"31510":1,"31511":1,"31512":1,"31513":2,"31514":2,"31515":2,"31516":2,"31517":1,"31518":2,"31519":2,"31520":1,"31521":2,"31522":1,"31523":1,"31524":2,"31525":1,"31526":1,"31527":2,"31528":2,"31529":1,"31530":2,"31531":1,"31532":1,"31533":1,"31534":1,"31535":1,"31536":2,"31537":2,"31538":2,"31539":2,"31540":1,"31541":1,"31542":1,"31543":2,"31544":2,"31545":2,"31546":1,"31547":2,"31548":1,"31549":2,"31550":2,"31551":2,"31552":1,"31553":1,"31554":1,"31555":2,"31556":2,"31557":2,"31558":2,"31559":1,"31560":1,"31561":2,"31562":1,"31563":2,"31564":1,"31565":1,"31566":2,"31567":1,"31568":2,"31569":2,"31570":1,"31571":2,"31572":1,"31573":2,"31574":1,"31575":2,"31576":1,"31577":2,"31578":1,"31579":2,"31580":1,"31581":1,"31582":1,"31583":2,"31584":1,"31585":1,"31586":2,"31587":2,"31588":1,"31589":2,"31590":2,"31591":1,"31592":1,"31593":2,"31594":1,"31595":2,"31596":2,"31597":2,"31598":1,"31599":2,"31600":1,"31601":2,"31602":2,"31603":1,"31604":2,"31605":2,"31606":2,"31607":2,"31608":2,"31609":2,"31610":1,"31611":1,"31612":1,"31613":2,"31614":2,"31615":1,"31616":2,"31617":1,"31618":2,"31619":2,"31620":2,"31621":1,"31622":2,"31623":2,"31624":2,"31625":2,"31626":1,"31627":2,"31628":1,"31629":2,"31630":2,"31631":2,"31632":1,"31633":2,"31634":2,"31635":2,"31636":1,"31637":1,"31638":1,"31639":2,"31640":1,"31641":2,"31642":2,"31643":2,"31644":2,"31645":2,"31646":2,"31647":1,"31648":2,"31649":2,"31650":1,"31651":1,"31652":2,"31653":1,"31654":1,"31655":1,"31656":2,"31657":1,"31658":1,"31659":2,"31660":1,"31661":1,"31662":2,"31663":1,"31664":1,"31665":1,"31666":2,"31667":2,"31668":2,"31669":1,"31670":1,"31671":1,"31672":2,"31673":2,"31674":1,"31675":1,"31676":1,"31677":2,"31678":1,"31679":1,"31680":2,"31681":1,"31682":1,"31683":1,"31684":2,"31685":1,"31686":1,"31687":2,"31688":1,"31689":1,"31690":2,"31691":1,"31692":2,"31693":2,"31694":2,"31695":2,"31696":2,"31697":1,"31698":2,"31699":1,"31700":2,"31701":1,"31702":2,"31703":2,"31704":2,"31705":1,"31706":1,"31707":2,"31708":2,"31709":2,"31710":2,"31711":2,"31712":1,"31713":2,"31714":2,"31715":2,"31716":1,"31717":2,"31718":1,"31719":2,"31720":1,"31721":2,"31722":1,"31723":1,"31724":2,"31725":1,"31726":2,"31727":2,"31728":2,"31729":1,"31730":2,"31731":1,"31732":1,"31733":2,"31734":1,"31735":2,"31736":1,"31737":2,"31738":1,"31739":1,"31740":1,"31741":2,"31742":2,"31743":1,"31744":2,"31745":2,"31746":2,"31747":1,"31748":1,"31749":2,"31750":1,"31751":1,"31752":1,"31753":1,"31754":2,"31755":1,"31756":1,"31757":2,"31758":2,"31759":1,"31760":2,"31761":2,"31762":1,"31763":1,"31764":2,"31765":2,"31766":1,"31767":1,"31768":2,"31769":2,"31770":2,"31771":2,"31772":2,"31773":1,"31774":1,"31775":2,"31776":1,"31777":1,"31778":2,"31779":1,"31780":1,"31781":2,"31782":1,"31783":1,"31784":2,"31785":2,"31786":2,"31787":2,"31788":2,"31789":1,"31790":2,"31791":2,"31792":2,"31793":2,"31794":1,"31795":1,"31796":2,"31797":1,"31798":1,"31799":1,"31800":2,"31801":1,"31802":1,"31803":1,"31804":1,"31805":1,"31806":2,"31807":2,"31808":1,"31809":2,"31810":2,"31811":1,"31812":2,"31813":2,"31814":1,"31815":2,"31816":2,"31817":1,"31818":2,"31819":2,"31820":1,"31821":1,"31822":2,"31823":1,"31824":2,"31825":2,"31826":1,"31827":2,"31828":1,"31829":1,"31830":1,"31831":2,"31832":2,"31833":2,"31834":2,"31835":1,"31836":2,"31837":2,"31838":2,"31839":1,"31840":2,"31841":1,"31842":2,"31843":2,"31844":1,"31845":2,"31846":2,"31847":2,"31848":1,"31849":1,"31850":2,"31851":1,"31852":1,"31853":2,"31854":2,"31855":1,"31856":1,"31857":2,"31858":2,"31859":2,"31860":2,"31861":2,"31862":1,"31863":2,"31864":2,"31865":2,"31866":1,"31867":1,"31868":1,"31869":2,"31870":2,"31871":1,"31872":2,"31873":2,"31874":1,"31875":1,"31876":1,"31877":1,"31878":1,"31879":1,"31880":2,"31881":2,"31882":2,"31883":2,"31884":2,"31885":2,"31886":1,"31887":2,"31888":1,"31889":1,"31890":1,"31891":2,"31892":1,"31893":2,"31894":1,"31895":2,"31896":2,"31897":1,"31898":2,"31899":1,"31900":1,"31901":2,"31902":2,"31903":2,"31904":1,"31905":1,"31906":2,"31907":1,"31908":1,"31909":2,"31910":2,"31911":1,"31912":2,"31913":1,"31914":2,"31915":1,"31916":1,"31917":1,"31918":1,"31919":2,"31920":2,"31921":1,"31922":1,"31923":1,"31924":1,"31925":1,"31926":1,"31927":2,"31928":2,"31929":1,"31930":1,"31931":2,"31932":1,"31933":2,"31934":1,"31935":2,"31936":2,"31937":1,"31938":1,"31939":2,"31940":1,"31941":1,"31942":2,"31943":2,"31944":1,"31945":1,"31946":1,"31947":2,"31948":1,"31949":2,"31950":1,"31951":1,"31952":1,"31953":2,"31954":1,"31955":2,"31956":1,"31957":2,"31958":2,"31959":1,"31960":1,"31961":1,"31962":2,"31963":2,"31964":1,"31965":1,"31966":2,"31967":1,"31968":2,"31969":1,"31970":2,"31971":1,"31972":1,"31973":2,"31974":2,"31975":2,"31976":2,"31977":2,"31978":1,"31979":2,"31980":1,"31981":1,"31982":1,"31983":1,"31984":2,"31985":1,"31986":2,"31987":2,"31988":1,"31989":1,"31990":1,"31991":2,"31992":2,"31993":2,"31994":1,"31995":2,"31996":1,"31997":2,"31998":2,"31999":1,"32000":1,"32001":2,"32002":2,"32003":1,"32004":1,"32005":1,"32006":1,"32007":2,"32008":2,"32009":2,"32010":2,"32011":2,"32012":2,"32013":1,"32014":1,"32015":2,"32016":2,"32017":1,"32018":2,"32019":2,"32020":2,"32021":2,"32022":2,"32023":1,"32024":1,"32025":1,"32026":1,"32027":2,"32028":1,"32029":1,"32030":2,"32031":2,"32032":2,"32033":2,"32034":1,"32035":2,"32036":2,"32037":1,"32038":2,"32039":1,"32040":1,"32041":2,"32042":1,"32043":2,"32044":2,"32045":1,"32046":2,"32047":2,"32048":1,"32049":1,"32050":2,"32051":2,"32052":2,"32053":1,"32054":1,"32055":1,"32056":1,"32057":2,"32058":1,"32059":1,"32060":2,"32061":1,"32062":1,"32063":1,"32064":2,"32065":2,"32066":2,"32067":1,"32068":1,"32069":2,"32070":1,"32071":1,"32072":2,"32073":2,"32074":1,"32075":1,"32076":1,"32077":1,"32078":1,"32079":2,"32080":2,"32081":1,"32082":1,"32083":1,"32084":1,"32085":2,"32086":2,"32087":1,"32088":2,"32089":1,"32090":2,"32091":1,"32092":1,"32093":1,"32094":2,"32095":1,"32096":2,"32097":1,"32098":1,"32099":1,"32100":1,"32101":1,"32102":2,"32103":1,"32104":1,"32105":2,"32106":2,"32107":1,"32108":1,"32109":1,"32110":1,"32111":2,"32112":1,"32113":2,"32114":2,"32115":2,"32116":2,"32117":2,"32118":2,"32119":2,"32120":1,"32121":2,"32122":1,"32123":1,"32124":1,"32125":1,"32126":2,"32127":1,"32128":2,"32129":1,"32130":2,"32131":2,"32132":2,"32133":2,"32134":1,"32135":2,"32136":1,"32137":2,"32138":1,"32139":2,"32140":2,"32141":1,"32142":2,"32143":2,"32144":1,"32145":1,"32146":2,"32147":1,"32148":2,"32149":1,"32150":2,"32151":2,"32152":2,"32153":1,"32154":1,"32155":1,"32156":1,"32157":1,"32158":1,"32159":2,"32160":2,"32161":1,"32162":1,"32163":1,"32164":1,"32165":1,"32166":2,"32167":1,"32168":1,"32169":2,"32170":2,"32171":2,"32172":2,"32173":2,"32174":2,"32175":1,"32176":2,"32177":2,"32178":1,"32179":2,"32180":2,"32181":1,"32182":1,"32183":1,"32184":1,"32185":2,"32186":2,"32187":1,"32188":2,"32189":1,"32190":2,"32191":1,"32192":2,"32193":2,"32194":1,"32195":1,"32196":2,"32197":1,"32198":1,"32199":2,"32200":1,"32201":1,"32202":2,"32203":2,"32204":2,"32205":1,"32206":1,"32207":1,"32208":1,"32209":2,"32210":2,"32211":1,"32212":1,"32213":1,"32214":1,"32215":2,"32216":1,"32217":2,"32218":1,"32219":1,"32220":1,"32221":2,"32222":2,"32223":2,"32224":1,"32225":2,"32226":1,"32227":1,"32228":1,"32229":2,"32230":1,"32231":2,"32232":2,"32233":2,"32234":2,"32235":2,"32236":2,"32237":1,"32238":1,"32239":2,"32240":2,"32241":1,"32242":1,"32243":2,"32244":1,"32245":1,"32246":1,"32247":1,"32248":2,"32249":2,"32250":2,"32251":2,"32252":2,"32253":2,"32254":2,"32255":1,"32256":1,"32257":2,"32258":2,"32259":2,"32260":1,"32261":1,"32262":2,"32263":1,"32264":2,"32265":1,"32266":1,"32267":1,"32268":2,"32269":1,"32270":2,"32271":1,"32272":2,"32273":1,"32274":1,"32275":2,"32276":2,"32277":2,"32278":1,"32279":2,"32280":2,"32281":1,"32282":1,"32283":1,"32284":2,"32285":2,"32286":1,"32287":1,"32288":2,"32289":1,"32290":1,"32291":1,"32292":1,"32293":2,"32294":1,"32295":1,"32296":1,"32297":1,"32298":1,"32299":1,"32300":1,"32301":1,"32302":1,"32303":1,"32304":1,"32305":2,"32306":1,"32307":1,"32308":1,"32309":2,"32310":2,"32311":2,"32312":2,"32313":2,"32314":2,"32315":1,"32316":1,"32317":2,"32318":1,"32319":2,"32320":2,"32321":2,"32322":1,"32323":1,"32324":2,"32325":1,"32326":1,"32327":2,"32328":2,"32329":1,"32330":1,"32331":1,"32332":2,"32333":1,"32334":2,"32335":1,"32336":2,"32337":2,"32338":2,"32339":2,"32340":2,"32341":1,"32342":2,"32343":1,"32344":2,"32345":1,"32346":1,"32347":1,"32348":2,"32349":1,"32350":2,"32351":2,"32352":1,"32353":2,"32354":2,"32355":1,"32356":1,"32357":1,"32358":1,"32359":1,"32360":2,"32361":1,"32362":2,"32363":2,"32364":1,"32365":1,"32366":2,"32367":1,"32368":2,"32369":2,"32370":1,"32371":2,"32372":1,"32373":1,"32374":2,"32375":1,"32376":1,"32377":2,"32378":2,"32379":1,"32380":2,"32381":1,"32382":2,"32383":2,"32384":1,"32385":2,"32386":2,"32387":2,"32388":1,"32389":2,"32390":2,"32391":2,"32392":2,"32393":1,"32394":1,"32395":2,"32396":2,"32397":2,"32398":2,"32399":2,"32400":1,"32401":2,"32402":1,"32403":1,"32404":2,"32405":1,"32406":2,"32407":1,"32408":2,"32409":2,"32410":1,"32411":1,"32412":1,"32413":1,"32414":1,"32415":2,"32416":2,"32417":2,"32418":1,"32419":2,"32420":1,"32421":2,"32422":1,"32423":1,"32424":1,"32425":2,"32426":1,"32427":2,"32428":1,"32429":2,"32430":1,"32431":2,"32432":2,"32433":1,"32434":2,"32435":1,"32436":2,"32437":1,"32438":2,"32439":2,"32440":2,"32441":2,"32442":1,"32443":2,"32444":2,"32445":2,"32446":2,"32447":1,"32448":2,"32449":2,"32450":2,"32451":2,"32452":1,"32453":1,"32454":1,"32455":2,"32456":2,"32457":1,"32458":1,"32459":2,"32460":2,"32461":2,"32462":2,"32463":1,"32464":2,"32465":2,"32466":1,"32467":1,"32468":1,"32469":2,"32470":2,"32471":1,"32472":1,"32473":1,"32474":1,"32475":2,"32476":1,"32477":1,"32478":2,"32479":2,"32480":2,"32481":2,"32482":2,"32483":1,"32484":2,"32485":1,"32486":2,"32487":2,"32488":1,"32489":2,"32490":2,"32491":2,"32492":2,"32493":2,"32494":1,"32495":2,"32496":2,"32497":2,"32498":2,"32499":2,"32500":1,"32501":2,"32502":2,"32503":2,"32504":2,"32505":1,"32506":2,"32507":2,"32508":2,"32509":2,"32510":1,"32511":2,"32512":1,"32513":2,"32514":2,"32515":1,"32516":2,"32517":1,"32518":1,"32519":1,"32520":2,"32521":2,"32522":1,"32523":1,"32524":2,"32525":1,"32526":1,"32527":2,"32528":2,"32529":2,"32530":1,"32531":1,"32532":2,"32533":2,"32534":2,"32535":1,"32536":2,"32537":1,"32538":1,"32539":2,"32540":2,"32541":2,"32542":2,"32543":2,"32544":2,"32545":1,"32546":2,"32547":2,"32548":1,"32549":1,"32550":2,"32551":2,"32552":1,"32553":1,"32554":1,"32555":1,"32556":1,"32557":2,"32558":2,"32559":1,"32560":2,"32561":1,"32562":1,"32563":1,"32564":1,"32565":1,"32566":2,"32567":1,"32568":1,"32569":2,"32570":1,"32571":1,"32572":2,"32573":1,"32574":2,"32575":1,"32576":1,"32577":1,"32578":1,"32579":2,"32580":2,"32581":1,"32582":2,"32583":1,"32584":1,"32585":1,"32586":1,"32587":2,"32588":2,"32589":1,"32590":1,"32591":1,"32592":1,"32593":1,"32594":2,"32595":1,"32596":1,"32597":1,"32598":2,"32599":1,"32600":2,"32601":2,"32602":2,"32603":1,"32604":1,"32605":1,"32606":1,"32607":2,"32608":1,"32609":2,"32610":2,"32611":1,"32612":2,"32613":2,"32614":1,"32615":1,"32616":1,"32617":2,"32618":2,"32619":2,"32620":2,"32621":1,"32622":2,"32623":2,"32624":1,"32625":1,"32626":1,"32627":1,"32628":1,"32629":1,"32630":2,"32631":1,"32632":1,"32633":1,"32634":2,"32635":2,"32636":1,"32637":1,"32638":1,"32639":1,"32640":2,"32641":1,"32642":1,"32643":2,"32644":1,"32645":1,"32646":1,"32647":2,"32648":1,"32649":1,"32650":1,"32651":1,"32652":1,"32653":2,"32654":1,"32655":1,"32656":1,"32657":1,"32658":1,"32659":1,"32660":1,"32661":2,"32662":2,"32663":1,"32664":2,"32665":2,"32666":2,"32667":1,"32668":1,"32669":1,"32670":2,"32671":2,"32672":1,"32673":1,"32674":1,"32675":1,"32676":2,"32677":2,"32678":2,"32679":1,"32680":2,"32681":1,"32682":1,"32683":1,"32684":2,"32685":2,"32686":2,"32687":2,"32688":2,"32689":1,"32690":2,"32691":1,"32692":1,"32693":2,"32694":1,"32695":2,"32696":1,"32697":2,"32698":2,"32699":1,"32700":2,"32701":1,"32702":2,"32703":2,"32704":2,"32705":1,"32706":2,"32707":1,"32708":2,"32709":1,"32710":2,"32711":1,"32712":2,"32713":2,"32714":1,"32715":1,"32716":2,"32717":1,"32718":2,"32719":2,"32720":2,"32721":2,"32722":2,"32723":2,"32724":2,"32725":1,"32726":2,"32727":1,"32728":1,"32729":1,"32730":2,"32731":1,"32732":1,"32733":1,"32734":1,"32735":2,"32736":1,"32737":1,"32738":1,"32739":1,"32740":2,"32741":2,"32742":1,"32743":1,"32744":1,"32745":1,"32746":2,"32747":1,"32748":2,"32749":2,"32750":1,"32751":2,"32752":1,"32753":1,"32754":1,"32755":2,"32756":2,"32757":1,"32758":2,"32759":1,"32760":2,"32761":2,"32762":2,"32763":2,"32764":2,"32765":2,"32766":1,"32767":2,"32768":1,"32769":1,"32770":1,"32771":2,"32772":2,"32773":2,"32774":1,"32775":1,"32776":2,"32777":1,"32778":1,"32779":2,"32780":2,"32781":2,"32782":1,"32783":2,"32784":1,"32785":2,"32786":1,"32787":1,"32788":1,"32789":1,"32790":1,"32791":1,"32792":1,"32793":1,"32794":1,"32795":1,"32796":1,"32797":2,"32798":2,"32799":1,"32800":1,"32801":1,"32802":2,"32803":1,"32804":1,"32805":2,"32806":1,"32807":2,"32808":2,"32809":1,"32810":2,"32811":1,"32812":2,"32813":2,"32814":2,"32815":1,"32816":2,"32817":1,"32818":2,"32819":2,"32820":1,"32821":1,"32822":2,"32823":1,"32824":1,"32825":2,"32826":2,"32827":2,"32828":1,"32829":1,"32830":2,"32831":1,"32832":2,"32833":2,"32834":2,"32835":1,"32836":1,"32837":1,"32838":1,"32839":2,"32840":2,"32841":1,"32842":2,"32843":2,"32844":2,"32845":2,"32846":1,"32847":2,"32848":1,"32849":2,"32850":1,"32851":1,"32852":1,"32853":1,"32854":2,"32855":2,"32856":2,"32857":1,"32858":1,"32859":1,"32860":1,"32861":1,"32862":2,"32863":1,"32864":2,"32865":2,"32866":2,"32867":1,"32868":1,"32869":2,"32870":1,"32871":2,"32872":1,"32873":1,"32874":1,"32875":2,"32876":2,"32877":2,"32878":2,"32879":1,"32880":2,"32881":1,"32882":2,"32883":1,"32884":1,"32885":2,"32886":1,"32887":2,"32888":2,"32889":2,"32890":1,"32891":1,"32892":1,"32893":2,"32894":2,"32895":2,"32896":1,"32897":1,"32898":1,"32899":2,"32900":2,"32901":2,"32902":1,"32903":2,"32904":1,"32905":1,"32906":2,"32907":1,"32908":1,"32909":2,"32910":1,"32911":2,"32912":2,"32913":1,"32914":1,"32915":1,"32916":1,"32917":2,"32918":1,"32919":2,"32920":2,"32921":2,"32922":1,"32923":2,"32924":1,"32925":2,"32926":2,"32927":1,"32928":1,"32929":2,"32930":1,"32931":1,"32932":2,"32933":1,"32934":2,"32935":1,"32936":1,"32937":1,"32938":1,"32939":2,"32940":1,"32941":1,"32942":1,"32943":2,"32944":1,"32945":1,"32946":2,"32947":2,"32948":2,"32949":2,"32950":2,"32951":2,"32952":2,"32953":2,"32954":1,"32955":2,"32956":1,"32957":1,"32958":2,"32959":1,"32960":2,"32961":1,"32962":1,"32963":1,"32964":1,"32965":2,"32966":1,"32967":1,"32968":2,"32969":2,"32970":1,"32971":1,"32972":2,"32973":2,"32974":2,"32975":2,"32976":1,"32977":2,"32978":2,"32979":2,"32980":2,"32981":2,"32982":2,"32983":1,"32984":2,"32985":2,"32986":1,"32987":2,"32988":1,"32989":1,"32990":2,"32991":1,"32992":1,"32993":1,"32994":2,"32995":2,"32996":2,"32997":1,"32998":2,"32999":1,"33000":2,"33001":1,"33002":1,"33003":1,"33004":2,"33005":1,"33006":2,"33007":1,"33008":2,"33009":1,"33010":1,"33011":1,"33012":1,"33013":2,"33014":1,"33015":1,"33016":1,"33017":1,"33018":1,"33019":1,"33020":2,"33021":1,"33022":1,"33023":2,"33024":1,"33025":2,"33026":2,"33027":2,"33028":2,"33029":2,"33030":2,"33031":2,"33032":1,"33033":2,"33034":2,"33035":2,"33036":2,"33037":2,"33038":2,"33039":1,"33040":1,"33041":2,"33042":1,"33043":1,"33044":1,"33045":2,"33046":1,"33047":1,"33048":1,"33049":2,"33050":1,"33051":2,"33052":1,"33053":1,"33054":1,"33055":2,"33056":2,"33057":1,"33058":1,"33059":1,"33060":2,"33061":1,"33062":1,"33063":1,"33064":2,"33065":1,"33066":2,"33067":1,"33068":1,"33069":1,"33070":1,"33071":1,"33072":1,"33073":2,"33074":1,"33075":1,"33076":2,"33077":1,"33078":1,"33079":2,"33080":2,"33081":2,"33082":1,"33083":2,"33084":1,"33085":1,"33086":1,"33087":1,"33088":2,"33089":1,"33090":1,"33091":2,"33092":2,"33093":2,"33094":2,"33095":2,"33096":1,"33097":1,"33098":1,"33099":2,"33100":1,"33101":2,"33102":2,"33103":1,"33104":1,"33105":2,"33106":1,"33107":1,"33108":2,"33109":1,"33110":2,"33111":1,"33112":1,"33113":1,"33114":1,"33115":2,"33116":1,"33117":1,"33118":2,"33119":2,"33120":2,"33121":1,"33122":2,"33123":2,"33124":1,"33125":2,"33126":2,"33127":1,"33128":1,"33129":2,"33130":2,"33131":2,"33132":2,"33133":1,"33134":1,"33135":1,"33136":1,"33137":2,"33138":1,"33139":1,"33140":2,"33141":2,"33142":1,"33143":2,"33144":1,"33145":1,"33146":2,"33147":1,"33148":1,"33149":1,"33150":2,"33151":2,"33152":2,"33153":2,"33154":2,"33155":1,"33156":2,"33157":2,"33158":2,"33159":2,"33160":2,"33161":1,"33162":2,"33163":2,"33164":2,"33165":2,"33166":1,"33167":2,"33168":2,"33169":1,"33170":1,"33171":2,"33172":2,"33173":2,"33174":1,"33175":1,"33176":2,"33177":1,"33178":1,"33179":2,"33180":2,"33181":1,"33182":1,"33183":1,"33184":1,"33185":1,"33186":2,"33187":1,"33188":2,"33189":1,"33190":1,"33191":1,"33192":2,"33193":2,"33194":2,"33195":2,"33196":2,"33197":1,"33198":1,"33199":1,"33200":2,"33201":1,"33202":2,"33203":2,"33204":1,"33205":1,"33206":1,"33207":1,"33208":1,"33209":2,"33210":2,"33211":2,"33212":1,"33213":1,"33214":2,"33215":2,"33216":2,"33217":2,"33218":1,"33219":2,"33220":2,"33221":1,"33222":1,"33223":1,"33224":2,"33225":2,"33226":2,"33227":1,"33228":1,"33229":1,"33230":1,"33231":1,"33232":2,"33233":2,"33234":2,"33235":1,"33236":2,"33237":1,"33238":1,"33239":1,"33240":2,"33241":2,"33242":2,"33243":2,"33244":1,"33245":1,"33246":2,"33247":1,"33248":1,"33249":2,"33250":1,"33251":1,"33252":1,"33253":1,"33254":1,"33255":2,"33256":1,"33257":2,"33258":1,"33259":2,"33260":1,"33261":1,"33262":2,"33263":2,"33264":1,"33265":2,"33266":2,"33267":2,"33268":2,"33269":2,"33270":2,"33271":1,"33272":1,"33273":1,"33274":1,"33275":2,"33276":1,"33277":2,"33278":1,"33279":1,"33280":2,"33281":1,"33282":1,"33283":1,"33284":1,"33285":1,"33286":1,"33287":2,"33288":2,"33289":2,"33290":1,"33291":1,"33292":2,"33293":2,"33294":1,"33295":1,"33296":1,"33297":1,"33298":1,"33299":1,"33300":1,"33301":1,"33302":1,"33303":1,"33304":1,"33305":2,"33306":2,"33307":2,"33308":1,"33309":1,"33310":2,"33311":1,"33312":2,"33313":1,"33314":2,"33315":2,"33316":1,"33317":1,"33318":2,"33319":1,"33320":1,"33321":2,"33322":1,"33323":2,"33324":2,"33325":2,"33326":2,"33327":1,"33328":1,"33329":1,"33330":2,"33331":2,"33332":2,"33333":1,"33334":1,"33335":1,"33336":1,"33337":2,"33338":1,"33339":2,"33340":2,"33341":1,"33342":2,"33343":1,"33344":2,"33345":2,"33346":1,"33347":2,"33348":1,"33349":1,"33350":1,"33351":1,"33352":2,"33353":2,"33354":2,"33355":1,"33356":2,"33357":1,"33358":1,"33359":1,"33360":1,"33361":1,"33362":1,"33363":2,"33364":2,"33365":2,"33366":2,"33367":2,"33368":2,"33369":1,"33370":1,"33371":2,"33372":1,"33373":2,"33374":1,"33375":2,"33376":2,"33377":2,"33378":1,"33379":1,"33380":1,"33381":1,"33382":1,"33383":1,"33384":1,"33385":1,"33386":2,"33387":2,"33388":2,"33389":1,"33390":1,"33391":1,"33392":2,"33393":1,"33394":1,"33395":2,"33396":1,"33397":2,"33398":2,"33399":2,"33400":2,"33401":1,"33402":1,"33403":2,"33404":1,"33405":1,"33406":2,"33407":1,"33408":1,"33409":2,"33410":1,"33411":2,"33412":1,"33413":1,"33414":1,"33415":2,"33416":2,"33417":1,"33418":2,"33419":1,"33420":2,"33421":1,"33422":2,"33423":2,"33424":1,"33425":2,"33426":1,"33427":2,"33428":1,"33429":1,"33430":1,"33431":1,"33432":1,"33433":1,"33434":1,"33435":2,"33436":2,"33437":2,"33438":2,"33439":1,"33440":2,"33441":1,"33442":1,"33443":1,"33444":1,"33445":1,"33446":2,"33447":2,"33448":1,"33449":1,"33450":2,"33451":2,"33452":1,"33453":1,"33454":2,"33455":2,"33456":1,"33457":2,"33458":2,"33459":2,"33460":1,"33461":2,"33462":2,"33463":1,"33464":2,"33465":1,"33466":2,"33467":1,"33468":2,"33469":2,"33470":2,"33471":2,"33472":2,"33473":2,"33474":2,"33475":2,"33476":1,"33477":2,"33478":2,"33479":1,"33480":2,"33481":1,"33482":2,"33483":1,"33484":2,"33485":2,"33486":2,"33487":1,"33488":2,"33489":1,"33490":1,"33491":2,"33492":1,"33493":2,"33494":1,"33495":2,"33496":1,"33497":2,"33498":1,"33499":2,"33500":1,"33501":1,"33502":2,"33503":1,"33504":2,"33505":2,"33506":2,"33507":1,"33508":2,"33509":1,"33510":1,"33511":1,"33512":1,"33513":2,"33514":2,"33515":1,"33516":2,"33517":2,"33518":1,"33519":2,"33520":2,"33521":1,"33522":1,"33523":1,"33524":1,"33525":1,"33526":1,"33527":2,"33528":1,"33529":1,"33530":2,"33531":1,"33532":1,"33533":2,"33534":2,"33535":1,"33536":1,"33537":2,"33538":2,"33539":2,"33540":1,"33541":1,"33542":1,"33543":1,"33544":1,"33545":1,"33546":2,"33547":2,"33548":2,"33549":1,"33550":1,"33551":1,"33552":1,"33553":2,"33554":1,"33555":1,"33556":2,"33557":1,"33558":2,"33559":2,"33560":2,"33561":2,"33562":2,"33563":1,"33564":2,"33565":2,"33566":2,"33567":2,"33568":1,"33569":2,"33570":2,"33571":2,"33572":2,"33573":1,"33574":2,"33575":1,"33576":2,"33577":1,"33578":1,"33579":2,"33580":2,"33581":1,"33582":1,"33583":1,"33584":1,"33585":2,"33586":2,"33587":1,"33588":2,"33589":1,"33590":1,"33591":2,"33592":2,"33593":2,"33594":1,"33595":1,"33596":1,"33597":2,"33598":2,"33599":2,"33600":1,"33601":1,"33602":2,"33603":1,"33604":2,"33605":2,"33606":2,"33607":1,"33608":2,"33609":1,"33610":2,"33611":2,"33612":2,"33613":1,"33614":2,"33615":1,"33616":1,"33617":2,"33618":2,"33619":1,"33620":2,"33621":1,"33622":1,"33623":2,"33624":2,"33625":2,"33626":1,"33627":1,"33628":2,"33629":2,"33630":2,"33631":1,"33632":1,"33633":2,"33634":1,"33635":2,"33636":1,"33637":2,"33638":1,"33639":1,"33640":2,"33641":2,"33642":1,"33643":2,"33644":2,"33645":1,"33646":1,"33647":1,"33648":2,"33649":1,"33650":2,"33651":1,"33652":2,"33653":2,"33654":1,"33655":2,"33656":2,"33657":2,"33658":1,"33659":1,"33660":1,"33661":1,"33662":1,"33663":2,"33664":1,"33665":2,"33666":1,"33667":2,"33668":1,"33669":2,"33670":1,"33671":1,"33672":2,"33673":2,"33674":2,"33675":1,"33676":2,"33677":1,"33678":2,"33679":2,"33680":1,"33681":1,"33682":1,"33683":2,"33684":2,"33685":1,"33686":1,"33687":2,"33688":2,"33689":2,"33690":2,"33691":1,"33692":2,"33693":1,"33694":1,"33695":1,"33696":1,"33697":1,"33698":1,"33699":2,"33700":1,"33701":2,"33702":1,"33703":1,"33704":1,"33705":2,"33706":2,"33707":2,"33708":2,"33709":2,"33710":1,"33711":2,"33712":1,"33713":1,"33714":2,"33715":1,"33716":2,"33717":2,"33718":2,"33719":2,"33720":1,"33721":1,"33722":2,"33723":1,"33724":1,"33725":2,"33726":2,"33727":1,"33728":1,"33729":1,"33730":1,"33731":1,"33732":2,"33733":1,"33734":2,"33735":2,"33736":1,"33737":1,"33738":1,"33739":2,"33740":2,"33741":2,"33742":1,"33743":2,"33744":1,"33745":2,"33746":2,"33747":1,"33748":2,"33749":1,"33750":1,"33751":1,"33752":1,"33753":2,"33754":2,"33755":2,"33756":1,"33757":1,"33758":2,"33759":2,"33760":2,"33761":1,"33762":2,"33763":2,"33764":1,"33765":1,"33766":2,"33767":1,"33768":2,"33769":2,"33770":2,"33771":2,"33772":2,"33773":1,"33774":1,"33775":1,"33776":1,"33777":2,"33778":1,"33779":2,"33780":1,"33781":1,"33782":1,"33783":1,"33784":1,"33785":2,"33786":2,"33787":2,"33788":1,"33789":2,"33790":2,"33791":2,"33792":1,"33793":2,"33794":1,"33795":1,"33796":1,"33797":2,"33798":2,"33799":2,"33800":2,"33801":1,"33802":2,"33803":1,"33804":2,"33805":2,"33806":1,"33807":1,"33808":1,"33809":2,"33810":1,"33811":2,"33812":1,"33813":2,"33814":1,"33815":2,"33816":1,"33817":2,"33818":2,"33819":1,"33820":1,"33821":2,"33822":1,"33823":1,"33824":1,"33825":2,"33826":2,"33827":2,"33828":1,"33829":1,"33830":2,"33831":2,"33832":2,"33833":2,"33834":1,"33835":1,"33836":2,"33837":1,"33838":1,"33839":1,"33840":1,"33841":1,"33842":1,"33843":1,"33844":2,"33845":2,"33846":1,"33847":2,"33848":2,"33849":1,"33850":1,"33851":1,"33852":2,"33853":2,"33854":2,"33855":2,"33856":1,"33857":1,"33858":2,"33859":1,"33860":2,"33861":2,"33862":1,"33863":1,"33864":1,"33865":1,"33866":1,"33867":2,"33868":1,"33869":1,"33870":1,"33871":2,"33872":2,"33873":1,"33874":2,"33875":1,"33876":1,"33877":1,"33878":2,"33879":1,"33880":2,"33881":2,"33882":2,"33883":1,"33884":1,"33885":1,"33886":2,"33887":1,"33888":1,"33889":1,"33890":2,"33891":1,"33892":2,"33893":2,"33894":1,"33895":1,"33896":1,"33897":2,"33898":2,"33899":1,"33900":1,"33901":1,"33902":2,"33903":2,"33904":1,"33905":2,"33906":1,"33907":2,"33908":2,"33909":2,"33910":2,"33911":2,"33912":1,"33913":2,"33914":1,"33915":1,"33916":2,"33917":1,"33918":2,"33919":2,"33920":2,"33921":1,"33922":1,"33923":1,"33924":2,"33925":1,"33926":1,"33927":1,"33928":2,"33929":1,"33930":1,"33931":2,"33932":2,"33933":1,"33934":1,"33935":2,"33936":1,"33937":2,"33938":2,"33939":1,"33940":2,"33941":1,"33942":1,"33943":2,"33944":2,"33945":2,"33946":1,"33947":2,"33948":1,"33949":1,"33950":2,"33951":1,"33952":2,"33953":2,"33954":2,"33955":1,"33956":1,"33957":2,"33958":1,"33959":1,"33960":1,"33961":2,"33962":1,"33963":1,"33964":1,"33965":1,"33966":2,"33967":1,"33968":2,"33969":1,"33970":2,"33971":1,"33972":2,"33973":2,"33974":2,"33975":2,"33976":1,"33977":1,"33978":1,"33979":2,"33980":1,"33981":1,"33982":2,"33983":2,"33984":1,"33985":1,"33986":1,"33987":2,"33988":2,"33989":1,"33990":1,"33991":1,"33992":1,"33993":2,"33994":2,"33995":1,"33996":2,"33997":1,"33998":2,"33999":2,"34000":2,"34001":1,"34002":2,"34003":1,"34004":2,"34005":1,"34006":2,"34007":1,"34008":2,"34009":2,"34010":2,"34011":2,"34012":2,"34013":1,"34014":1,"34015":1,"34016":1,"34017":1,"34018":2,"34019":1,"34020":1,"34021":1,"34022":2,"34023":1,"34024":2,"34025":2,"34026":2,"34027":2,"34028":2,"34029":2,"34030":1,"34031":1,"34032":2,"34033":1,"34034":2,"34035":2,"34036":2,"34037":2,"34038":1,"34039":2,"34040":1,"34041":2,"34042":1,"34043":1,"34044":1,"34045":2,"34046":2,"34047":1,"34048":1,"34049":1,"34050":1,"34051":2,"34052":2,"34053":1,"34054":1,"34055":2,"34056":1,"34057":2,"34058":1,"34059":2,"34060":1,"34061":2,"34062":2,"34063":2,"34064":2,"34065":1,"34066":2,"34067":2,"34068":2,"34069":2,"34070":2,"34071":2,"34072":1,"34073":1,"34074":1,"34075":2,"34076":1,"34077":2,"34078":1,"34079":2,"34080":2,"34081":2,"34082":2,"34083":2,"34084":2,"34085":1,"34086":1,"34087":2,"34088":1,"34089":1,"34090":1,"34091":1,"34092":1,"34093":1,"34094":1,"34095":2,"34096":2,"34097":2,"34098":2,"34099":1,"34100":2,"34101":1,"34102":1,"34103":1,"34104":1,"34105":2,"34106":1,"34107":1,"34108":2,"34109":2,"34110":1,"34111":2,"34112":2,"34113":2,"34114":1,"34115":2,"34116":2,"34117":1,"34118":2,"34119":2,"34120":2,"34121":2,"34122":1,"34123":2,"34124":2,"34125":2,"34126":2,"34127":1,"34128":2,"34129":1,"34130":1,"34131":1,"34132":1,"34133":2,"34134":2,"34135":1,"34136":1,"34137":1,"34138":2,"34139":2,"34140":2,"34141":2,"34142":2,"34143":2,"34144":2,"34145":1,"34146":2,"34147":2,"34148":1,"34149":2,"34150":2,"34151":2,"34152":2,"34153":1,"34154":2,"34155":1,"34156":2,"34157":2,"34158":1,"34159":2,"34160":1,"34161":1,"34162":2,"34163":2,"34164":1,"34165":1,"34166":2,"34167":2,"34168":2,"34169":2,"34170":1,"34171":2,"34172":2,"34173":2,"34174":2,"34175":1,"34176":1,"34177":1,"34178":1,"34179":1,"34180":1,"34181":2,"34182":2,"34183":1,"34184":1,"34185":1,"34186":1,"34187":1,"34188":2,"34189":2,"34190":1,"34191":2,"34192":1,"34193":2,"34194":1,"34195":1,"34196":1,"34197":2,"34198":2,"34199":1,"34200":2,"34201":1,"34202":1,"34203":1,"34204":2,"34205":2,"34206":2,"34207":1,"34208":1,"34209":2,"34210":1,"34211":1,"34212":1,"34213":2,"34214":2,"34215":1,"34216":2,"34217":1,"34218":2,"34219":2,"34220":1,"34221":1,"34222":1,"34223":2,"34224":1,"34225":1,"34226":1,"34227":1,"34228":1,"34229":1,"34230":2,"34231":1,"34232":2,"34233":2,"34234":1,"34235":2,"34236":1,"34237":2,"34238":1,"34239":2,"34240":1,"34241":1,"34242":1,"34243":2,"34244":2,"34245":2,"34246":1,"34247":2,"34248":2,"34249":1,"34250":1,"34251":2,"34252":2,"34253":2,"34254":2,"34255":2,"34256":1,"34257":2,"34258":2,"34259":1,"34260":2,"34261":1,"34262":1,"34263":1,"34264":1,"34265":1,"34266":1,"34267":1,"34268":1,"34269":2,"34270":2,"34271":1,"34272":1,"34273":1,"34274":1,"34275":1,"34276":2,"34277":2,"34278":1,"34279":1,"34280":1,"34281":2,"34282":2,"34283":1,"34284":1,"34285":2,"34286":1,"34287":2,"34288":1,"34289":2,"34290":1,"34291":2,"34292":2,"34293":2,"34294":2,"34295":2,"34296":2,"34297":1,"34298":1,"34299":1,"34300":2,"34301":1,"34302":2,"34303":2,"34304":1,"34305":2,"34306":2,"34307":1,"34308":1,"34309":1,"34310":1,"34311":1,"34312":1,"34313":2,"34314":1,"34315":1,"34316":1,"34317":2,"34318":1,"34319":1,"34320":1,"34321":1,"34322":2,"34323":2,"34324":2,"34325":2,"34326":1,"34327":2,"34328":2,"34329":1,"34330":2,"34331":2,"34332":1,"34333":2,"34334":1,"34335":1,"34336":1,"34337":1,"34338":2,"34339":1,"34340":2,"34341":2,"34342":1,"34343":2,"34344":2,"34345":1,"34346":2,"34347":1,"34348":1,"34349":2,"34350":1,"34351":2,"34352":2,"34353":2,"34354":1,"34355":1,"34356":2,"34357":1,"34358":1,"34359":1,"34360":2,"34361":2,"34362":1,"34363":2,"34364":2,"34365":1,"34366":1,"34367":1,"34368":2,"34369":1,"34370":2,"34371":2,"34372":2,"34373":2,"34374":2,"34375":1,"34376":2,"34377":2,"34378":2,"34379":2,"34380":2,"34381":1,"34382":1,"34383":1,"34384":2,"34385":1,"34386":2,"34387":2,"34388":1,"34389":1,"34390":2,"34391":2,"34392":2,"34393":1,"34394":1,"34395":2,"34396":2,"34397":1,"34398":2,"34399":2,"34400":1,"34401":1,"34402":1,"34403":2,"34404":1,"34405":2,"34406":2,"34407":2,"34408":2,"34409":2,"34410":1,"34411":2,"34412":2,"34413":2,"34414":1,"34415":1,"34416":1,"34417":1,"34418":2,"34419":2,"34420":2,"34421":2,"34422":1,"34423":1,"34424":2,"34425":2,"34426":1,"34427":1,"34428":2,"34429":1,"34430":2,"34431":2,"34432":2,"34433":1,"34434":1,"34435":1,"34436":2,"34437":2,"34438":2,"34439":2,"34440":2,"34441":2,"34442":1,"34443":1,"34444":1,"34445":1,"34446":2,"34447":2,"34448":1,"34449":2,"34450":1,"34451":2,"34452":2,"34453":1,"34454":2,"34455":1,"34456":2,"34457":1,"34458":2,"34459":1,"34460":1,"34461":1,"34462":1,"34463":2,"34464":2,"34465":2,"34466":1,"34467":2,"34468":1,"34469":1,"34470":1,"34471":2,"34472":1,"34473":1,"34474":2,"34475":1,"34476":1,"34477":1,"34478":1,"34479":1,"34480":2,"34481":2,"34482":1,"34483":1,"34484":1,"34485":1,"34486":1,"34487":2,"34488":2,"34489":2,"34490":2,"34491":2,"34492":1,"34493":2,"34494":1,"34495":1,"34496":2,"34497":2,"34498":2,"34499":1,"34500":1,"34501":2,"34502":1,"34503":2,"34504":1,"34505":1,"34506":1,"34507":1,"34508":1,"34509":1,"34510":2,"34511":1,"34512":2,"34513":2,"34514":2,"34515":1,"34516":2,"34517":2,"34518":2,"34519":1,"34520":1,"34521":1,"34522":1,"34523":2,"34524":2,"34525":1,"34526":1,"34527":2,"34528":2,"34529":2,"34530":2,"34531":2,"34532":1,"34533":1,"34534":1,"34535":2,"34536":2,"34537":2,"34538":1,"34539":1,"34540":2,"34541":2,"34542":2,"34543":1,"34544":1,"34545":2,"34546":2,"34547":1,"34548":1,"34549":1,"34550":1,"34551":1,"34552":2,"34553":2,"34554":2,"34555":1,"34556":1,"34557":2,"34558":2,"34559":2,"34560":1,"34561":2,"34562":2,"34563":1,"34564":2,"34565":2,"34566":1,"34567":2,"34568":2,"34569":2,"34570":2,"34571":1,"34572":2,"34573":2,"34574":2,"34575":2,"34576":2,"34577":2,"34578":2,"34579":2,"34580":1,"34581":2,"34582":2,"34583":2,"34584":1,"34585":1,"34586":2,"34587":1,"34588":2,"34589":1,"34590":1,"34591":1,"34592":2,"34593":2,"34594":1,"34595":2,"34596":2,"34597":1,"34598":2,"34599":2,"34600":2,"34601":1,"34602":1,"34603":2,"34604":1,"34605":2,"34606":1,"34607":2,"34608":2,"34609":1,"34610":2,"34611":1,"34612":1,"34613":2,"34614":2,"34615":2,"34616":1,"34617":2,"34618":1,"34619":1,"34620":1,"34621":1,"34622":1,"34623":1,"34624":1,"34625":2,"34626":2,"34627":1,"34628":2,"34629":1,"34630":1,"34631":1,"34632":2,"34633":2,"34634":2,"34635":1,"34636":1,"34637":1,"34638":1,"34639":1,"34640":1,"34641":1,"34642":1,"34643":2,"34644":2,"34645":1,"34646":1,"34647":2,"34648":2,"34649":1,"34650":1,"34651":1,"34652":1,"34653":2,"34654":1,"34655":2,"34656":2,"34657":1,"34658":1,"34659":2,"34660":1,"34661":1,"34662":2,"34663":1,"34664":1,"34665":1,"34666":2,"34667":1,"34668":1,"34669":2,"34670":2,"34671":1,"34672":2,"34673":1,"34674":2,"34675":2,"34676":2,"34677":1,"34678":2,"34679":2,"34680":2,"34681":1,"34682":1,"34683":1,"34684":1,"34685":2,"34686":2,"34687":2,"34688":1,"34689":2,"34690":1,"34691":1,"34692":1,"34693":1,"34694":2,"34695":1,"34696":1,"34697":2,"34698":1,"34699":1,"34700":1,"34701":1,"34702":2,"34703":1,"34704":1,"34705":1,"34706":2,"34707":1,"34708":2,"34709":1,"34710":2,"34711":2,"34712":1,"34713":2,"34714":1,"34715":2,"34716":1,"34717":2,"34718":1,"34719":2,"34720":2,"34721":2,"34722":1,"34723":2,"34724":2,"34725":2,"34726":2,"34727":1,"34728":2,"34729":1,"34730":2,"34731":1,"34732":1,"34733":1,"34734":1,"34735":1,"34736":2,"34737":2,"34738":2,"34739":1,"34740":2,"34741":2,"34742":1,"34743":1,"34744":2,"34745":1,"34746":2,"34747":1,"34748":2,"34749":2,"34750":1,"34751":2,"34752":1,"34753":2,"34754":2,"34755":1,"34756":2,"34757":2,"34758":1,"34759":1,"34760":1,"34761":2,"34762":1,"34763":2,"34764":2,"34765":1,"34766":1,"34767":2,"34768":1,"34769":2,"34770":2,"34771":2,"34772":2,"34773":1,"34774":1,"34775":2,"34776":2,"34777":2,"34778":2,"34779":1,"34780":1,"34781":2,"34782":1,"34783":1,"34784":1,"34785":1,"34786":1,"34787":2,"34788":2,"34789":2,"34790":2,"34791":1,"34792":2,"34793":2,"34794":1,"34795":1,"34796":2,"34797":2,"34798":1,"34799":1,"34800":1,"34801":2,"34802":2,"34803":1,"34804":1,"34805":2,"34806":1,"34807":1,"34808":1,"34809":1,"34810":2,"34811":1,"34812":2,"34813":2,"34814":1,"34815":2,"34816":2,"34817":1,"34818":2,"34819":1,"34820":1,"34821":1,"34822":2,"34823":2,"34824":2,"34825":2,"34826":2,"34827":2,"34828":1,"34829":2,"34830":2,"34831":1,"34832":2,"34833":2,"34834":1,"34835":1,"34836":2,"34837":2,"34838":2,"34839":1,"34840":2,"34841":1,"34842":1,"34843":1,"34844":1,"34845":1,"34846":2,"34847":1,"34848":2,"34849":2,"34850":2,"34851":1,"34852":1,"34853":1,"34854":2,"34855":1,"34856":1,"34857":2,"34858":1,"34859":1,"34860":2,"34861":1,"34862":2,"34863":2,"34864":1,"34865":1,"34866":2,"34867":1,"34868":2,"34869":2,"34870":2,"34871":2,"34872":1,"34873":1,"34874":2,"34875":2,"34876":1,"34877":1,"34878":1,"34879":1,"34880":2,"34881":1,"34882":2,"34883":2,"34884":2,"34885":2,"34886":1,"34887":2,"34888":1,"34889":2,"34890":1,"34891":2,"34892":1,"34893":1,"34894":2,"34895":2,"34896":1,"34897":2,"34898":1,"34899":2,"34900":2,"34901":2,"34902":1,"34903":2,"34904":1,"34905":1,"34906":2,"34907":1,"34908":2,"34909":1,"34910":1,"34911":2,"34912":1,"34913":2,"34914":1,"34915":2,"34916":1,"34917":2,"34918":1,"34919":2,"34920":1,"34921":2,"34922":2,"34923":1,"34924":1,"34925":1,"34926":2,"34927":1,"34928":1,"34929":2,"34930":1,"34931":1,"34932":2,"34933":1,"34934":1,"34935":1,"34936":1,"34937":1,"34938":2,"34939":2,"34940":2,"34941":2,"34942":2,"34943":2,"34944":1,"34945":1,"34946":2,"34947":2,"34948":1,"34949":2,"34950":1,"34951":1,"34952":1,"34953":2,"34954":1,"34955":2,"34956":1,"34957":1,"34958":2,"34959":2,"34960":2,"34961":1,"34962":2,"34963":1,"34964":1,"34965":2,"34966":2,"34967":2,"34968":1,"34969":2,"34970":1,"34971":2,"34972":1,"34973":2,"34974":2,"34975":1,"34976":2,"34977":1,"34978":2,"34979":2,"34980":2,"34981":2,"34982":2,"34983":2,"34984":2,"34985":1,"34986":2,"34987":1,"34988":1,"34989":2,"34990":2,"34991":1,"34992":2,"34993":2,"34994":2,"34995":1,"34996":2,"34997":1,"34998":2,"34999":1,"35000":1,"35001":2,"35002":1,"35003":2,"35004":1,"35005":1,"35006":1,"35007":2,"35008":1,"35009":1,"35010":2,"35011":1,"35012":1,"35013":1,"35014":1,"35015":1,"35016":2,"35017":2,"35018":1,"35019":1,"35020":1,"35021":2,"35022":1,"35023":2,"35024":1,"35025":1,"35026":2,"35027":2,"35028":1,"35029":2,"35030":2,"35031":1,"35032":2,"35033":2,"35034":2,"35035":1,"35036":2,"35037":1,"35038":1,"35039":1,"35040":1,"35041":2,"35042":2,"35043":1,"35044":2,"35045":1,"35046":2,"35047":2,"35048":1,"35049":2,"35050":1,"35051":2,"35052":2,"35053":1,"35054":2,"35055":1,"35056":2,"35057":2,"35058":1,"35059":2,"35060":1,"35061":1,"35062":2,"35063":2,"35064":2,"35065":1,"35066":1,"35067":1,"35068":2,"35069":1,"35070":2,"35071":1,"35072":2,"35073":1,"35074":1,"35075":2,"35076":1,"35077":2,"35078":1,"35079":1,"35080":1,"35081":1,"35082":1,"35083":1,"35084":1,"35085":2,"35086":2,"35087":1,"35088":2,"35089":2,"35090":2,"35091":1,"35092":2,"35093":1,"35094":2,"35095":2,"35096":1,"35097":2,"35098":2,"35099":2,"35100":2,"35101":1,"35102":1,"35103":1,"35104":2,"35105":1,"35106":1,"35107":1,"35108":1,"35109":2,"35110":1,"35111":2,"35112":1,"35113":1,"35114":1,"35115":2,"35116":1,"35117":1,"35118":2,"35119":2,"35120":1,"35121":1,"35122":2,"35123":2,"35124":2,"35125":2,"35126":1,"35127":2,"35128":2,"35129":1,"35130":1,"35131":2,"35132":1,"35133":2,"35134":1,"35135":2,"35136":2,"35137":2,"35138":1,"35139":2,"35140":2,"35141":2,"35142":1,"35143":1,"35144":1,"35145":1,"35146":2,"35147":2,"35148":2,"35149":1,"35150":2,"35151":1,"35152":1,"35153":1,"35154":2,"35155":1,"35156":2,"35157":1,"35158":2,"35159":2,"35160":1,"35161":2,"35162":1,"35163":1,"35164":2,"35165":2,"35166":2,"35167":2,"35168":2,"35169":1,"35170":1,"35171":1,"35172":2,"35173":1,"35174":2,"35175":1,"35176":2,"35177":1,"35178":1,"35179":2,"35180":2,"35181":2,"35182":2,"35183":2,"35184":1,"35185":1,"35186":1,"35187":2,"35188":1,"35189":2,"35190":1,"35191":2,"35192":1,"35193":2,"35194":2,"35195":1,"35196":1,"35197":2,"35198":1,"35199":1,"35200":2,"35201":1,"35202":2,"35203":1,"35204":2,"35205":2,"35206":1,"35207":2,"35208":2,"35209":2,"35210":2,"35211":2,"35212":2,"35213":2,"35214":2,"35215":2,"35216":1,"35217":1,"35218":1,"35219":1,"35220":1,"35221":2,"35222":1,"35223":1,"35224":1,"35225":1,"35226":1,"35227":1,"35228":1,"35229":2,"35230":2,"35231":1,"35232":1,"35233":1,"35234":2,"35235":2,"35236":1,"35237":2,"35238":1,"35239":1,"35240":2,"35241":1,"35242":2,"35243":1,"35244":2,"35245":2,"35246":1,"35247":2,"35248":2,"35249":2,"35250":1,"35251":1,"35252":1,"35253":1,"35254":2,"35255":1,"35256":2,"35257":2,"35258":2,"35259":2,"35260":1,"35261":1,"35262":1,"35263":1,"35264":1,"35265":1,"35266":2,"35267":2,"35268":1,"35269":2,"35270":2,"35271":1,"35272":1,"35273":2,"35274":1,"35275":1,"35276":1,"35277":1,"35278":1,"35279":1,"35280":1,"35281":1,"35282":1,"35283":2,"35284":2,"35285":2,"35286":1,"35287":1,"35288":1,"35289":2,"35290":1,"35291":1,"35292":2,"35293":2,"35294":1,"35295":2,"35296":2,"35297":2,"35298":2,"35299":1,"35300":2,"35301":2,"35302":2,"35303":2,"35304":2,"35305":2,"35306":2,"35307":1,"35308":2,"35309":2,"35310":1,"35311":1,"35312":2,"35313":2,"35314":2,"35315":1,"35316":1,"35317":1,"35318":1,"35319":2,"35320":2,"35321":1,"35322":1,"35323":1,"35324":1,"35325":2,"35326":2,"35327":2,"35328":2,"35329":2,"35330":2,"35331":1,"35332":2,"35333":1,"35334":1,"35335":2,"35336":1,"35337":1,"35338":2,"35339":2,"35340":1,"35341":2,"35342":1,"35343":1,"35344":1,"35345":2,"35346":1,"35347":2,"35348":2,"35349":2,"35350":1,"35351":2,"35352":1,"35353":2,"35354":1,"35355":1,"35356":2,"35357":2,"35358":1,"35359":2,"35360":1,"35361":2,"35362":2,"35363":1,"35364":2,"35365":1,"35366":2,"35367":2,"35368":1,"35369":1,"35370":1,"35371":2,"35372":2,"35373":2,"35374":2,"35375":2,"35376":2,"35377":1,"35378":1,"35379":1,"35380":1,"35381":2,"35382":1,"35383":1,"35384":1,"35385":1,"35386":1,"35387":1,"35388":2,"35389":1,"35390":2,"35391":1,"35392":1,"35393":1,"35394":1,"35395":1,"35396":2,"35397":2,"35398":1,"35399":2,"35400":1,"35401":2,"35402":1,"35403":1,"35404":2,"35405":1,"35406":1,"35407":1,"35408":1,"35409":1,"35410":2,"35411":2,"35412":1,"35413":2,"35414":1,"35415":2,"35416":1,"35417":2,"35418":2,"35419":2,"35420":1,"35421":1,"35422":2,"35423":2,"35424":1,"35425":1,"35426":2,"35427":2,"35428":2,"35429":1,"35430":2,"35431":1,"35432":2,"35433":2,"35434":2,"35435":2,"35436":2,"35437":2,"35438":1,"35439":1,"35440":2,"35441":1,"35442":1,"35443":1,"35444":2,"35445":2,"35446":1,"35447":2,"35448":2,"35449":2,"35450":2,"35451":1,"35452":2,"35453":1,"35454":2,"35455":2,"35456":1,"35457":2,"35458":1,"35459":2,"35460":1,"35461":2,"35462":2,"35463":1,"35464":1,"35465":1,"35466":1,"35467":2,"35468":1,"35469":2,"35470":1,"35471":1,"35472":2,"35473":1,"35474":2,"35475":2,"35476":1,"35477":2,"35478":2,"35479":2,"35480":1,"35481":1,"35482":1,"35483":1,"35484":2,"35485":1,"35486":2,"35487":2,"35488":2,"35489":2,"35490":1,"35491":2,"35492":2,"35493":1,"35494":1,"35495":1,"35496":2,"35497":1,"35498":2,"35499":2,"35500":1,"35501":2,"35502":2,"35503":1,"35504":1,"35505":2,"35506":1,"35507":1,"35508":1,"35509":2,"35510":1,"35511":2,"35512":1,"35513":2,"35514":1,"35515":2,"35516":1,"35517":2,"35518":1,"35519":2,"35520":2,"35521":2,"35522":1,"35523":1,"35524":1,"35525":2,"35526":1,"35527":1,"35528":1,"35529":1,"35530":1,"35531":2,"35532":2,"35533":1,"35534":1,"35535":2,"35536":2,"35537":1,"35538":1,"35539":2,"35540":2,"35541":1,"35542":1,"35543":1,"35544":1,"35545":2,"35546":2,"35547":2,"35548":2,"35549":1,"35550":1,"35551":1,"35552":1,"35553":2,"35554":2,"35555":1,"35556":2,"35557":1,"35558":2,"35559":1,"35560":2,"35561":2,"35562":2,"35563":2,"35564":2,"35565":2,"35566":2,"35567":2,"35568":1,"35569":1,"35570":2,"35571":2,"35572":1,"35573":1,"35574":1,"35575":1,"35576":1,"35577":2,"35578":2,"35579":1,"35580":2,"35581":2,"35582":2,"35583":1,"35584":2,"35585":2,"35586":2,"35587":1,"35588":1,"35589":1,"35590":2,"35591":2,"35592":1,"35593":2,"35594":2,"35595":2,"35596":2,"35597":2,"35598":1,"35599":1,"35600":1,"35601":2,"35602":1,"35603":1,"35604":1,"35605":2,"35606":2,"35607":2,"35608":2,"35609":2,"35610":2,"35611":1,"35612":1,"35613":1,"35614":2,"35615":2,"35616":1,"35617":1,"35618":2,"35619":2,"35620":1,"35621":2,"35622":2,"35623":1,"35624":1,"35625":2,"35626":1,"35627":1,"35628":1,"35629":2,"35630":2,"35631":2,"35632":1,"35633":1,"35634":1,"35635":2,"35636":1,"35637":2,"35638":2,"35639":2,"35640":1,"35641":1,"35642":2,"35643":2,"35644":2,"35645":2,"35646":2,"35647":1,"35648":2,"35649":2,"35650":2,"35651":2,"35652":1,"35653":2,"35654":2,"35655":2,"35656":1,"35657":1,"35658":2,"35659":2,"35660":2,"35661":1,"35662":1,"35663":2,"35664":1,"35665":2,"35666":1,"35667":2,"35668":2,"35669":1,"35670":1,"35671":1,"35672":1,"35673":2,"35674":1,"35675":1,"35676":2,"35677":2,"35678":2,"35679":1,"35680":2,"35681":2,"35682":1,"35683":2,"35684":2,"35685":2,"35686":2,"35687":2,"35688":2,"35689":2,"35690":1,"35691":1,"35692":2,"35693":2,"35694":2,"35695":2,"35696":2,"35697":2,"35698":2,"35699":1,"35700":1,"35701":2,"35702":2,"35703":1,"35704":1,"35705":1,"35706":1,"35707":1,"35708":2,"35709":1,"35710":2,"35711":2,"35712":1,"35713":2,"35714":2,"35715":2,"35716":1,"35717":2,"35718":1,"35719":2,"35720":1,"35721":1,"35722":1,"35723":1,"35724":2,"35725":2,"35726":1,"35727":2,"35728":1,"35729":1,"35730":2,"35731":1,"35732":2,"35733":2,"35734":1,"35735":2,"35736":1,"35737":2,"35738":2,"35739":2,"35740":2,"35741":2,"35742":2,"35743":2,"35744":2,"35745":2,"35746":2,"35747":2,"35748":1,"35749":1,"35750":1,"35751":1,"35752":1,"35753":1,"35754":1,"35755":2,"35756":1,"35757":2,"35758":1,"35759":1,"35760":1,"35761":2,"35762":2,"35763":2,"35764":2,"35765":2,"35766":2,"35767":2,"35768":2,"35769":1,"35770":2,"35771":1,"35772":2,"35773":2,"35774":2,"35775":2,"35776":1,"35777":1,"35778":2,"35779":2,"35780":2,"35781":1,"35782":2,"35783":1,"35784":2,"35785":2,"35786":1,"35787":2,"35788":2,"35789":1,"35790":2,"35791":2,"35792":2,"35793":2,"35794":1,"35795":2,"35796":2,"35797":1,"35798":1,"35799":2,"35800":2,"35801":2,"35802":1,"35803":1,"35804":2,"35805":1,"35806":1,"35807":2,"35808":2,"35809":2,"35810":2,"35811":1,"35812":2,"35813":1,"35814":2,"35815":2,"35816":1,"35817":1,"35818":1,"35819":2,"35820":2,"35821":1,"35822":1,"35823":2,"35824":1,"35825":2,"35826":1,"35827":2,"35828":1,"35829":2,"35830":1,"35831":2,"35832":2,"35833":2,"35834":1,"35835":1,"35836":1,"35837":1,"35838":1,"35839":2,"35840":1,"35841":2,"35842":2,"35843":2,"35844":2,"35845":2,"35846":2,"35847":1,"35848":2,"35849":1,"35850":2,"35851":2,"35852":1,"35853":1,"35854":2,"35855":1,"35856":2,"35857":1,"35858":1,"35859":2,"35860":2,"35861":1,"35862":1,"35863":1,"35864":1,"35865":2,"35866":1,"35867":1,"35868":2,"35869":2,"35870":1,"35871":1,"35872":2,"35873":2,"35874":1,"35875":1,"35876":2,"35877":2,"35878":2,"35879":1,"35880":1,"35881":1,"35882":2,"35883":1,"35884":2,"35885":1,"35886":1,"35887":2,"35888":2,"35889":1,"35890":1,"35891":1,"35892":2,"35893":1,"35894":2,"35895":2,"35896":2,"35897":2,"35898":1,"35899":2,"35900":1,"35901":2,"35902":2,"35903":2,"35904":2,"35905":1,"35906":1,"35907":2,"35908":2,"35909":2,"35910":2,"35911":2,"35912":1,"35913":1,"35914":2,"35915":1,"35916":2,"35917":2,"35918":2,"35919":2,"35920":1,"35921":1,"35922":1,"35923":2,"35924":1,"35925":1,"35926":1,"35927":1,"35928":2,"35929":1,"35930":2,"35931":1,"35932":2,"35933":1,"35934":1,"35935":2,"35936":1,"35937":1,"35938":1,"35939":2,"35940":2,"35941":1,"35942":2,"35943":1,"35944":1,"35945":2,"35946":1,"35947":1,"35948":1,"35949":2,"35950":2,"35951":2,"35952":2,"35953":2,"35954":2,"35955":2,"35956":1,"35957":1,"35958":1,"35959":2,"35960":1,"35961":1,"35962":2,"35963":1,"35964":2,"35965":1,"35966":1,"35967":1,"35968":2,"35969":2,"35970":1,"35971":2,"35972":2,"35973":1,"35974":2,"35975":2,"35976":1,"35977":1,"35978":1,"35979":2,"35980":1,"35981":1,"35982":2,"35983":1,"35984":1,"35985":1,"35986":1,"35987":2,"35988":2,"35989":2,"35990":2,"35991":1,"35992":1,"35993":1,"35994":1,"35995":1,"35996":1,"35997":1,"35998":2,"35999":2,"36000":2,"36001":2,"36002":1,"36003":1,"36004":2,"36005":2,"36006":2,"36007":1,"36008":2,"36009":2,"36010":1,"36011":1,"36012":2,"36013":2,"36014":2,"36015":1,"36016":2,"36017":1,"36018":2,"36019":2,"36020":2,"36021":1,"36022":1,"36023":2,"36024":2,"36025":2,"36026":1,"36027":2,"36028":1,"36029":2,"36030":1,"36031":1,"36032":1,"36033":2,"36034":2,"36035":1,"36036":1,"36037":1,"36038":2,"36039":2,"36040":2,"36041":1,"36042":2,"36043":2,"36044":1,"36045":2,"36046":2,"36047":2,"36048":1,"36049":1,"36050":1,"36051":1,"36052":1,"36053":1,"36054":1,"36055":2,"36056":1,"36057":1,"36058":2,"36059":2,"36060":1,"36061":1,"36062":2,"36063":1,"36064":2,"36065":1,"36066":1,"36067":2,"36068":2,"36069":1,"36070":1,"36071":1,"36072":1,"36073":2,"36074":1,"36075":2,"36076":2,"36077":2,"36078":1,"36079":2,"36080":2,"36081":2,"36082":2,"36083":1,"36084":1,"36085":2,"36086":1,"36087":1,"36088":2,"36089":2,"36090":1,"36091":2,"36092":2,"36093":1,"36094":2,"36095":2,"36096":2,"36097":2,"36098":2,"36099":2,"36100":1,"36101":2,"36102":2,"36103":2,"36104":2,"36105":1,"36106":2,"36107":1,"36108":1,"36109":2,"36110":1,"36111":1,"36112":2,"36113":1,"36114":2,"36115":2,"36116":2,"36117":1,"36118":1,"36119":2,"36120":1,"36121":2,"36122":1,"36123":1,"36124":1,"36125":2,"36126":1,"36127":2,"36128":2,"36129":2,"36130":1,"36131":2,"36132":2,"36133":2,"36134":1,"36135":1,"36136":1,"36137":2,"36138":2,"36139":2,"36140":2,"36141":2,"36142":2,"36143":1,"36144":1,"36145":1,"36146":1,"36147":1,"36148":2,"36149":2,"36150":2,"36151":1,"36152":2,"36153":1,"36154":1,"36155":1,"36156":1,"36157":2,"36158":1,"36159":2,"36160":2,"36161":1,"36162":1,"36163":1,"36164":2,"36165":1,"36166":2,"36167":1,"36168":1,"36169":1,"36170":2,"36171":2,"36172":1,"36173":2,"36174":1,"36175":1,"36176":2,"36177":2,"36178":1,"36179":2,"36180":1,"36181":1,"36182":2,"36183":1,"36184":1,"36185":2,"36186":2,"36187":1,"36188":1,"36189":2,"36190":1,"36191":2,"36192":1,"36193":2,"36194":1,"36195":1,"36196":1,"36197":1,"36198":2,"36199":1,"36200":1,"36201":1,"36202":1,"36203":2,"36204":1,"36205":2,"36206":1,"36207":1,"36208":1,"36209":2,"36210":2,"36211":2,"36212":2,"36213":1,"36214":1,"36215":1,"36216":1,"36217":2,"36218":2,"36219":2,"36220":2,"36221":1,"36222":2,"36223":2,"36224":1,"36225":2,"36226":2,"36227":1,"36228":2,"36229":2,"36230":1,"36231":2,"36232":1,"36233":2,"36234":1,"36235":2,"36236":2,"36237":1,"36238":2,"36239":1,"36240":2,"36241":2,"36242":1,"36243":2,"36244":2,"36245":2,"36246":2,"36247":1,"36248":1,"36249":2,"36250":2,"36251":1,"36252":2,"36253":1,"36254":1,"36255":1,"36256":2,"36257":1,"36258":2,"36259":2,"36260":1,"36261":2,"36262":2,"36263":1,"36264":2,"36265":2,"36266":1,"36267":1,"36268":1,"36269":2,"36270":2,"36271":1,"36272":2,"36273":2,"36274":2,"36275":1,"36276":2,"36277":1,"36278":1,"36279":1,"36280":1,"36281":1,"36282":1,"36283":1,"36284":2,"36285":1,"36286":1,"36287":1,"36288":2,"36289":2,"36290":2,"36291":2,"36292":2,"36293":2,"36294":2,"36295":1,"36296":1,"36297":1,"36298":1,"36299":2,"36300":2,"36301":1,"36302":1,"36303":2,"36304":2,"36305":2,"36306":1,"36307":2,"36308":1,"36309":2,"36310":2,"36311":1,"36312":2,"36313":2,"36314":2,"36315":1,"36316":2,"36317":1,"36318":2,"36319":2,"36320":2,"36321":1,"36322":2,"36323":2,"36324":1,"36325":2,"36326":2,"36327":1,"36328":1,"36329":1,"36330":2,"36331":2,"36332":1,"36333":2,"36334":1,"36335":1,"36336":1,"36337":1,"36338":2,"36339":2,"36340":1,"36341":2,"36342":1,"36343":2,"36344":2,"36345":2,"36346":1,"36347":1,"36348":2,"36349":2,"36350":1,"36351":2,"36352":2,"36353":1,"36354":1,"36355":2,"36356":2,"36357":1,"36358":1,"36359":2,"36360":1,"36361":1,"36362":2,"36363":1,"36364":2,"36365":2,"36366":1,"36367":2,"36368":2,"36369":2,"36370":1,"36371":2,"36372":2,"36373":2,"36374":1,"36375":1,"36376":2,"36377":1,"36378":1,"36379":2,"36380":2,"36381":2,"36382":2,"36383":2,"36384":1,"36385":2,"36386":2,"36387":2,"36388":1,"36389":2,"36390":2,"36391":2,"36392":2,"36393":1,"36394":1,"36395":1,"36396":2,"36397":1,"36398":1,"36399":1,"36400":1,"36401":1,"36402":2,"36403":1,"36404":2,"36405":1,"36406":2,"36407":1,"36408":1,"36409":2,"36410":1,"36411":2,"36412":2,"36413":2,"36414":1,"36415":1,"36416":2,"36417":1,"36418":2,"36419":2,"36420":2,"36421":1,"36422":2,"36423":2,"36424":2,"36425":2,"36426":2,"36427":1,"36428":2,"36429":1,"36430":1,"36431":2,"36432":2,"36433":1,"36434":1,"36435":1,"36436":1,"36437":1,"36438":1,"36439":1,"36440":2,"36441":2,"36442":1,"36443":2,"36444":1,"36445":2,"36446":2,"36447":2,"36448":2,"36449":2,"36450":1,"36451":1,"36452":1,"36453":1,"36454":2,"36455":2,"36456":2,"36457":1,"36458":2,"36459":1,"36460":2,"36461":2,"36462":2,"36463":2,"36464":2,"36465":2,"36466":1,"36467":2,"36468":1,"36469":1,"36470":2,"36471":1,"36472":2,"36473":1,"36474":1,"36475":1,"36476":2,"36477":1,"36478":1,"36479":2,"36480":2,"36481":2,"36482":2,"36483":1,"36484":2,"36485":1,"36486":1,"36487":1,"36488":1,"36489":2,"36490":1,"36491":1,"36492":1,"36493":1,"36494":1,"36495":1,"36496":1,"36497":1,"36498":2,"36499":2,"36500":2,"36501":2,"36502":1,"36503":2,"36504":2,"36505":2,"36506":2,"36507":2,"36508":2,"36509":1,"36510":2,"36511":2,"36512":1,"36513":2,"36514":1,"36515":1,"36516":2,"36517":2,"36518":2,"36519":2,"36520":1,"36521":1,"36522":1,"36523":2,"36524":2,"36525":1,"36526":1,"36527":1,"36528":2,"36529":1,"36530":1,"36531":2,"36532":1,"36533":2,"36534":2,"36535":1,"36536":2,"36537":1,"36538":2,"36539":2,"36540":1,"36541":2,"36542":1,"36543":1,"36544":2,"36545":1,"36546":1,"36547":2,"36548":2,"36549":1,"36550":2,"36551":1,"36552":2,"36553":1,"36554":1,"36555":1,"36556":1,"36557":1,"36558":2,"36559":2,"36560":1,"36561":1,"36562":2,"36563":1,"36564":1,"36565":2,"36566":1,"36567":1,"36568":2,"36569":1,"36570":2,"36571":2,"36572":2,"36573":1,"36574":2,"36575":2,"36576":2,"36577":1,"36578":1,"36579":1,"36580":2,"36581":1,"36582":2,"36583":1,"36584":1,"36585":1,"36586":1,"36587":2,"36588":2,"36589":2,"36590":2,"36591":2,"36592":1,"36593":1,"36594":2,"36595":1,"36596":1,"36597":2,"36598":1,"36599":1,"36600":2,"36601":1,"36602":2,"36603":1,"36604":1,"36605":1,"36606":1,"36607":2,"36608":1,"36609":2,"36610":1,"36611":2,"36612":2,"36613":2,"36614":1,"36615":2,"36616":2,"36617":1,"36618":1,"36619":2,"36620":1,"36621":1,"36622":1,"36623":2,"36624":2,"36625":2,"36626":2,"36627":1,"36628":1,"36629":1,"36630":1,"36631":2,"36632":2,"36633":1,"36634":2,"36635":2,"36636":1,"36637":2,"36638":2,"36639":1,"36640":2,"36641":2,"36642":2,"36643":2,"36644":2,"36645":2,"36646":2,"36647":2,"36648":2,"36649":2,"36650":1,"36651":1,"36652":2,"36653":2,"36654":1,"36655":2,"36656":2,"36657":1,"36658":1,"36659":1,"36660":1,"36661":2,"36662":1,"36663":2,"36664":2,"36665":2,"36666":1,"36667":2,"36668":1,"36669":1,"36670":1,"36671":1,"36672":2,"36673":2,"36674":2,"36675":2,"36676":2,"36677":1,"36678":1,"36679":2,"36680":1,"36681":2,"36682":2,"36683":2,"36684":1,"36685":2,"36686":2,"36687":2,"36688":2,"36689":2,"36690":1,"36691":1,"36692":2,"36693":2,"36694":1,"36695":2,"36696":2,"36697":1,"36698":1,"36699":1,"36700":1,"36701":2,"36702":2,"36703":1,"36704":1,"36705":2,"36706":1,"36707":2,"36708":2,"36709":1,"36710":1,"36711":2,"36712":1,"36713":2,"36714":1,"36715":2,"36716":1,"36717":2,"36718":2,"36719":1,"36720":1,"36721":1,"36722":1,"36723":2,"36724":1,"36725":1,"36726":2,"36727":1,"36728":1,"36729":1,"36730":1,"36731":2,"36732":1,"36733":1,"36734":2,"36735":2,"36736":1,"36737":1,"36738":1,"36739":2,"36740":2,"36741":2,"36742":2,"36743":1,"36744":1,"36745":1,"36746":1,"36747":2,"36748":2,"36749":1,"36750":2,"36751":1,"36752":2,"36753":1,"36754":1,"36755":2,"36756":2,"36757":2,"36758":2,"36759":1,"36760":1,"36761":2,"36762":2,"36763":2,"36764":2,"36765":1,"36766":2,"36767":2,"36768":2,"36769":1,"36770":1,"36771":2,"36772":1,"36773":1,"36774":2,"36775":2,"36776":1,"36777":1,"36778":2,"36779":1,"36780":1,"36781":1,"36782":1,"36783":1,"36784":1,"36785":1,"36786":2,"36787":1,"36788":2,"36789":1,"36790":2,"36791":1,"36792":1,"36793":2,"36794":2,"36795":1,"36796":2,"36797":1,"36798":1,"36799":1,"36800":2,"36801":1,"36802":1,"36803":1,"36804":2,"36805":1,"36806":1,"36807":2,"36808":1,"36809":2,"36810":2,"36811":1,"36812":1,"36813":1,"36814":1,"36815":1,"36816":1,"36817":2,"36818":1,"36819":2,"36820":2,"36821":2,"36822":2,"36823":1,"36824":1,"36825":2,"36826":1,"36827":1,"36828":2,"36829":1,"36830":1,"36831":1,"36832":1,"36833":2,"36834":1,"36835":1,"36836":2,"36837":1,"36838":1,"36839":1,"36840":1,"36841":2,"36842":1,"36843":1,"36844":2,"36845":2,"36846":2,"36847":1,"36848":2,"36849":2,"36850":1,"36851":1,"36852":2,"36853":1,"36854":2,"36855":2,"36856":1,"36857":1,"36858":2,"36859":1,"36860":1,"36861":2,"36862":1,"36863":1,"36864":1,"36865":2,"36866":2,"36867":1,"36868":2,"36869":2,"36870":2,"36871":2,"36872":1,"36873":2,"36874":2,"36875":1,"36876":2,"36877":2,"36878":2,"36879":2,"36880":2,"36881":1,"36882":2,"36883":2,"36884":2,"36885":2,"36886":2,"36887":2,"36888":1,"36889":2,"36890":2,"36891":1,"36892":1,"36893":2,"36894":1,"36895":1,"36896":2,"36897":1,"36898":2,"36899":2,"36900":1,"36901":2,"36902":2,"36903":2,"36904":1,"36905":1,"36906":1,"36907":2,"36908":2,"36909":2,"36910":1,"36911":2,"36912":2,"36913":1,"36914":2,"36915":2,"36916":2,"36917":1,"36918":2,"36919":1,"36920":1,"36921":1,"36922":1,"36923":1,"36924":2,"36925":1,"36926":2,"36927":2,"36928":1,"36929":1,"36930":1,"36931":2,"36932":1,"36933":1,"36934":2,"36935":1,"36936":2,"36937":2,"36938":2,"36939":1,"36940":2,"36941":1,"36942":1,"36943":1,"36944":1,"36945":1,"36946":1,"36947":1,"36948":2,"36949":1,"36950":2,"36951":2,"36952":2,"36953":2,"36954":1,"36955":1,"36956":2,"36957":2,"36958":1,"36959":1,"36960":1,"36961":1,"36962":1,"36963":2,"36964":1,"36965":2,"36966":1,"36967":2,"36968":2,"36969":2,"36970":2,"36971":2,"36972":1,"36973":1,"36974":1,"36975":1,"36976":1,"36977":2,"36978":2,"36979":2,"36980":1,"36981":1,"36982":2,"36983":1,"36984":1,"36985":2,"36986":1,"36987":2,"36988":2,"36989":2,"36990":1,"36991":2,"36992":1,"36993":2,"36994":1,"36995":1,"36996":2,"36997":1,"36998":2,"36999":1,"37000":2,"37001":1,"37002":2,"37003":1,"37004":1,"37005":1,"37006":1,"37007":1,"37008":2,"37009":2,"37010":1,"37011":2,"37012":1,"37013":2,"37014":1,"37015":2,"37016":1,"37017":1,"37018":2,"37019":2,"37020":2,"37021":2,"37022":1,"37023":1,"37024":2,"37025":2,"37026":1,"37027":2,"37028":1,"37029":2,"37030":2,"37031":1,"37032":1,"37033":2,"37034":2,"37035":1,"37036":2,"37037":1,"37038":1,"37039":1,"37040":2,"37041":2,"37042":1,"37043":2,"37044":2,"37045":2,"37046":2,"37047":1,"37048":1,"37049":2,"37050":2,"37051":1,"37052":1,"37053":2,"37054":2,"37055":1,"37056":2,"37057":1,"37058":1,"37059":1,"37060":2,"37061":1,"37062":1,"37063":1,"37064":2,"37065":2,"37066":1,"37067":1,"37068":1,"37069":2,"37070":1,"37071":1,"37072":1,"37073":2,"37074":2,"37075":1,"37076":2,"37077":1,"37078":2,"37079":1,"37080":2,"37081":2,"37082":1,"37083":2,"37084":1,"37085":2,"37086":2,"37087":2,"37088":1,"37089":1,"37090":2,"37091":1,"37092":2,"37093":1,"37094":2,"37095":2,"37096":1,"37097":1,"37098":1,"37099":2,"37100":1,"37101":1,"37102":1,"37103":1,"37104":1,"37105":2,"37106":1,"37107":1,"37108":1,"37109":2,"37110":2,"37111":2,"37112":2,"37113":2,"37114":2,"37115":1,"37116":2,"37117":1,"37118":1,"37119":1,"37120":2,"37121":2,"37122":2,"37123":1,"37124":2,"37125":2,"37126":2,"37127":2,"37128":2,"37129":1,"37130":1,"37131":2,"37132":1,"37133":1,"37134":1,"37135":2,"37136":1,"37137":2,"37138":1,"37139":2,"37140":2,"37141":1,"37142":2,"37143":2,"37144":1,"37145":1,"37146":1,"37147":2,"37148":1,"37149":2,"37150":2,"37151":2,"37152":1,"37153":2,"37154":1,"37155":2,"37156":2,"37157":2,"37158":1,"37159":2,"37160":2,"37161":2,"37162":1,"37163":2,"37164":2,"37165":2,"37166":2,"37167":1,"37168":1,"37169":2,"37170":1,"37171":2,"37172":2,"37173":1,"37174":1,"37175":2,"37176":2,"37177":2,"37178":2,"37179":1,"37180":1,"37181":2,"37182":1,"37183":2,"37184":2,"37185":1,"37186":2,"37187":1,"37188":1,"37189":1,"37190":1,"37191":2,"37192":2,"37193":2,"37194":2,"37195":1,"37196":2,"37197":1,"37198":1,"37199":2,"37200":1,"37201":2,"37202":2,"37203":1,"37204":2,"37205":1,"37206":1,"37207":2,"37208":1,"37209":1,"37210":2,"37211":1,"37212":2,"37213":2,"37214":1,"37215":1,"37216":2,"37217":1,"37218":2,"37219":1,"37220":1,"37221":1,"37222":1,"37223":2,"37224":1,"37225":2,"37226":1,"37227":1,"37228":1,"37229":2,"37230":2,"37231":2,"37232":1,"37233":1,"37234":1,"37235":1,"37236":1,"37237":2,"37238":1,"37239":2,"37240":1,"37241":1,"37242":2,"37243":1,"37244":1,"37245":1,"37246":1,"37247":2,"37248":2,"37249":1,"37250":2,"37251":2,"37252":2,"37253":2,"37254":2,"37255":2,"37256":1,"37257":1,"37258":2,"37259":1,"37260":2,"37261":2,"37262":1,"37263":2,"37264":2,"37265":2,"37266":2,"37267":1,"37268":1,"37269":2,"37270":2,"37271":1,"37272":2,"37273":1,"37274":2,"37275":1,"37276":2,"37277":2,"37278":1,"37279":1,"37280":1,"37281":2,"37282":2,"37283":1,"37284":1,"37285":2,"37286":2,"37287":1,"37288":2,"37289":2,"37290":1,"37291":2,"37292":2,"37293":1,"37294":2,"37295":1,"37296":2,"37297":1,"37298":1,"37299":1,"37300":1,"37301":1,"37302":1,"37303":1,"37304":1,"37305":1,"37306":1,"37307":1,"37308":1,"37309":2,"37310":2,"37311":1,"37312":2,"37313":2,"37314":2,"37315":2,"37316":1,"37317":2,"37318":1,"37319":2,"37320":2,"37321":1,"37322":1,"37323":1,"37324":2,"37325":1,"37326":1,"37327":2,"37328":2,"37329":1,"37330":1,"37331":1,"37332":2,"37333":2,"37334":2,"37335":2,"37336":1,"37337":1,"37338":1,"37339":1,"37340":2,"37341":1,"37342":1,"37343":1,"37344":1,"37345":1,"37346":1,"37347":2,"37348":1,"37349":1,"37350":1,"37351":1,"37352":1,"37353":2,"37354":1,"37355":2,"37356":1,"37357":1,"37358":1,"37359":2,"37360":2,"37361":1,"37362":1,"37363":1,"37364":2,"37365":2,"37366":1,"37367":1,"37368":2,"37369":1,"37370":1,"37371":2,"37372":2,"37373":2,"37374":2,"37375":1,"37376":1,"37377":1,"37378":2,"37379":1,"37380":2,"37381":1,"37382":1,"37383":1,"37384":2,"37385":2,"37386":2,"37387":1,"37388":1,"37389":1,"37390":2,"37391":1,"37392":2,"37393":1,"37394":1,"37395":2,"37396":1,"37397":2,"37398":1,"37399":1,"37400":1,"37401":2,"37402":1,"37403":1,"37404":2,"37405":1,"37406":2,"37407":2,"37408":1,"37409":1,"37410":2,"37411":1,"37412":1,"37413":2,"37414":1,"37415":2,"37416":2,"37417":1,"37418":2,"37419":1,"37420":1,"37421":2,"37422":2,"37423":1,"37424":1,"37425":1,"37426":2,"37427":1,"37428":1,"37429":2,"37430":1,"37431":2,"37432":1,"37433":1,"37434":1,"37435":2,"37436":2,"37437":1,"37438":2,"37439":1,"37440":1,"37441":2,"37442":2,"37443":2,"37444":2,"37445":1,"37446":1,"37447":2,"37448":1,"37449":1,"37450":2,"37451":2,"37452":2,"37453":2,"37454":1,"37455":2,"37456":1,"37457":2,"37458":1,"37459":1,"37460":1,"37461":2,"37462":1,"37463":1,"37464":2,"37465":1,"37466":2,"37467":1,"37468":1,"37469":2,"37470":1,"37471":1,"37472":1,"37473":2,"37474":1,"37475":2,"37476":1,"37477":2,"37478":1,"37479":1,"37480":2,"37481":2,"37482":1,"37483":2,"37484":2,"37485":2,"37486":2,"37487":1,"37488":1,"37489":2,"37490":2,"37491":2,"37492":2,"37493":2,"37494":2,"37495":2,"37496":2,"37497":1,"37498":2,"37499":1,"37500":2,"37501":2,"37502":1,"37503":1,"37504":2,"37505":2,"37506":1,"37507":1,"37508":1,"37509":2,"37510":2,"37511":2,"37512":1,"37513":2,"37514":1,"37515":1,"37516":2,"37517":1,"37518":1,"37519":2,"37520":2,"37521":2,"37522":2,"37523":2,"37524":2,"37525":2,"37526":1,"37527":1,"37528":2,"37529":2,"37530":1,"37531":2,"37532":2,"37533":1,"37534":1,"37535":1,"37536":2,"37537":1,"37538":2,"37539":2,"37540":1,"37541":2,"37542":2,"37543":1,"37544":1,"37545":1,"37546":2,"37547":2,"37548":1,"37549":2,"37550":1,"37551":2,"37552":2,"37553":2,"37554":1,"37555":2,"37556":2,"37557":2,"37558":2,"37559":1,"37560":1,"37561":2,"37562":2,"37563":2,"37564":1,"37565":2,"37566":1,"37567":2,"37568":1,"37569":2,"37570":2,"37571":2,"37572":1,"37573":1,"37574":2,"37575":2,"37576":2,"37577":2,"37578":2,"37579":1,"37580":1,"37581":1,"37582":1,"37583":2,"37584":2,"37585":2,"37586":1,"37587":2,"37588":2,"37589":1,"37590":2,"37591":2,"37592":1,"37593":2,"37594":1,"37595":2,"37596":1,"37597":2,"37598":1,"37599":1,"37600":1,"37601":1,"37602":1,"37603":2,"37604":1,"37605":2,"37606":2,"37607":1,"37608":2,"37609":1,"37610":2,"37611":2,"37612":2,"37613":1,"37614":1,"37615":1,"37616":2,"37617":2,"37618":1,"37619":2,"37620":1,"37621":1,"37622":1,"37623":2,"37624":2,"37625":2,"37626":2,"37627":1,"37628":2,"37629":1,"37630":1,"37631":1,"37632":2,"37633":1,"37634":2,"37635":1,"37636":1,"37637":1,"37638":2,"37639":2,"37640":2,"37641":2,"37642":1,"37643":1,"37644":1,"37645":2,"37646":2,"37647":1,"37648":1,"37649":2,"37650":2,"37651":1,"37652":1,"37653":2,"37654":1,"37655":2,"37656":1,"37657":1,"37658":1,"37659":1,"37660":2,"37661":2,"37662":1,"37663":1,"37664":2,"37665":1,"37666":2,"37667":1,"37668":1,"37669":2,"37670":2,"37671":2,"37672":2,"37673":2,"37674":2,"37675":2,"37676":1,"37677":1,"37678":2,"37679":1,"37680":1,"37681":2,"37682":1,"37683":1,"37684":1,"37685":1,"37686":1,"37687":1,"37688":1,"37689":2,"37690":2,"37691":2,"37692":1,"37693":2,"37694":1,"37695":2,"37696":2,"37697":1,"37698":1,"37699":1,"37700":1,"37701":1,"37702":1,"37703":1,"37704":2,"37705":2,"37706":2,"37707":1,"37708":1,"37709":1,"37710":2,"37711":1,"37712":2,"37713":1,"37714":1,"37715":2,"37716":2,"37717":2,"37718":2,"37719":2,"37720":1,"37721":1,"37722":2,"37723":1,"37724":2,"37725":2,"37726":1,"37727":1,"37728":1,"37729":1,"37730":2,"37731":2,"37732":1,"37733":2,"37734":2,"37735":1,"37736":2,"37737":1,"37738":2,"37739":2,"37740":2,"37741":1,"37742":2,"37743":2,"37744":1,"37745":2,"37746":2,"37747":1,"37748":2,"37749":1,"37750":1,"37751":2,"37752":2,"37753":2,"37754":2,"37755":1,"37756":1,"37757":2,"37758":2,"37759":2,"37760":2,"37761":2,"37762":1,"37763":1,"37764":1,"37765":1,"37766":2,"37767":2,"37768":2,"37769":1,"37770":1,"37771":2,"37772":1,"37773":1,"37774":2,"37775":1,"37776":2,"37777":2,"37778":1,"37779":2,"37780":1,"37781":1,"37782":2,"37783":2,"37784":1,"37785":2,"37786":2,"37787":1,"37788":1,"37789":2,"37790":1,"37791":2,"37792":2,"37793":1,"37794":2,"37795":1,"37796":2,"37797":2,"37798":1,"37799":1,"37800":1,"37801":2,"37802":1,"37803":1,"37804":2,"37805":1,"37806":2,"37807":1,"37808":1,"37809":1,"37810":2,"37811":1,"37812":2,"37813":2,"37814":1,"37815":1,"37816":2,"37817":1,"37818":2,"37819":2,"37820":1,"37821":2,"37822":2,"37823":1,"37824":1,"37825":1,"37826":1,"37827":2,"37828":1,"37829":2,"37830":1,"37831":2,"37832":2,"37833":1,"37834":1,"37835":2,"37836":2,"37837":2,"37838":2,"37839":2,"37840":1,"37841":2,"37842":2,"37843":1,"37844":2,"37845":2,"37846":2,"37847":1,"37848":2,"37849":2,"37850":1,"37851":2,"37852":2,"37853":1,"37854":1,"37855":2,"37856":1,"37857":1,"37858":1,"37859":2,"37860":2,"37861":1,"37862":2,"37863":1,"37864":1,"37865":1,"37866":2,"37867":1,"37868":2,"37869":1,"37870":1,"37871":2,"37872":1,"37873":2,"37874":1,"37875":1,"37876":2,"37877":1,"37878":1,"37879":2,"37880":2,"37881":2,"37882":2,"37883":2,"37884":1,"37885":1,"37886":1,"37887":2,"37888":2,"37889":2,"37890":2,"37891":1,"37892":1,"37893":1,"37894":1,"37895":2,"37896":1,"37897":2,"37898":2,"37899":2,"37900":1,"37901":1,"37902":1,"37903":2,"37904":1,"37905":2,"37906":2,"37907":2,"37908":1,"37909":2,"37910":2,"37911":2,"37912":2,"37913":1,"37914":2,"37915":1,"37916":2,"37917":1,"37918":2,"37919":1,"37920":2,"37921":1,"37922":1,"37923":2,"37924":2,"37925":2,"37926":2,"37927":2,"37928":1,"37929":1,"37930":1,"37931":2,"37932":1,"37933":1,"37934":2,"37935":2,"37936":2,"37937":1,"37938":1,"37939":1,"37940":2,"37941":2,"37942":1,"37943":1,"37944":1,"37945":2,"37946":2,"37947":1,"37948":2,"37949":1,"37950":2,"37951":2,"37952":1,"37953":1,"37954":2,"37955":1,"37956":1,"37957":2,"37958":1,"37959":1,"37960":1,"37961":2,"37962":1,"37963":1,"37964":2,"37965":2,"37966":1,"37967":1,"37968":1,"37969":1,"37970":1,"37971":2,"37972":1,"37973":1,"37974":2,"37975":2,"37976":1,"37977":2,"37978":1,"37979":2,"37980":2,"37981":1,"37982":2,"37983":2,"37984":1,"37985":1,"37986":1,"37987":2,"37988":1,"37989":2,"37990":2,"37991":1,"37992":2,"37993":2,"37994":1,"37995":1,"37996":1,"37997":1,"37998":1,"37999":1,"38000":1,"38001":1,"38002":2,"38003":2,"38004":1,"38005":1,"38006":2,"38007":2,"38008":1,"38009":2,"38010":1,"38011":2,"38012":2,"38013":2,"38014":2,"38015":1,"38016":1,"38017":2,"38018":2,"38019":1,"38020":1,"38021":1,"38022":2,"38023":1,"38024":1,"38025":2,"38026":1,"38027":2,"38028":2,"38029":1,"38030":1,"38031":1,"38032":2,"38033":1,"38034":2,"38035":1,"38036":1,"38037":2,"38038":1,"38039":2,"38040":2,"38041":2,"38042":1,"38043":2,"38044":1,"38045":2,"38046":2,"38047":1,"38048":2,"38049":1,"38050":1,"38051":1,"38052":2,"38053":2,"38054":1,"38055":1,"38056":1,"38057":1,"38058":1,"38059":2,"38060":2,"38061":1,"38062":2,"38063":1,"38064":2,"38065":1,"38066":1,"38067":2,"38068":2,"38069":2,"38070":1,"38071":1,"38072":1,"38073":2,"38074":2,"38075":2,"38076":1,"38077":1,"38078":1,"38079":2,"38080":1,"38081":2,"38082":2,"38083":1,"38084":1,"38085":1,"38086":2,"38087":2,"38088":1,"38089":2,"38090":1,"38091":2,"38092":2,"38093":2,"38094":2,"38095":2,"38096":2,"38097":2,"38098":2,"38099":1,"38100":2,"38101":2,"38102":2,"38103":2,"38104":2,"38105":1,"38106":1,"38107":2,"38108":1,"38109":2,"38110":1,"38111":1,"38112":2,"38113":2,"38114":2,"38115":2,"38116":2,"38117":2,"38118":1,"38119":2,"38120":1,"38121":1,"38122":2,"38123":2,"38124":2,"38125":1,"38126":1,"38127":2,"38128":2,"38129":1,"38130":1,"38131":1,"38132":1,"38133":2,"38134":1,"38135":2,"38136":1,"38137":2,"38138":2,"38139":1,"38140":2,"38141":1,"38142":2,"38143":2,"38144":1,"38145":2,"38146":1,"38147":1,"38148":2,"38149":2,"38150":2,"38151":2,"38152":1,"38153":1,"38154":2,"38155":2,"38156":1,"38157":1,"38158":1,"38159":2,"38160":1,"38161":1,"38162":1,"38163":2,"38164":2,"38165":1,"38166":1,"38167":1,"38168":2,"38169":2,"38170":2,"38171":2,"38172":2,"38173":2,"38174":1,"38175":1,"38176":2,"38177":1,"38178":1,"38179":1,"38180":1,"38181":2,"38182":1,"38183":2,"38184":1,"38185":2,"38186":1,"38187":1,"38188":1,"38189":2,"38190":1,"38191":2,"38192":2,"38193":1,"38194":2,"38195":2,"38196":2,"38197":2,"38198":2,"38199":2,"38200":1,"38201":1,"38202":2,"38203":1,"38204":1,"38205":1,"38206":1,"38207":1,"38208":2,"38209":2,"38210":2,"38211":2,"38212":1,"38213":1,"38214":1,"38215":1,"38216":1,"38217":1,"38218":2,"38219":2,"38220":1,"38221":2,"38222":1,"38223":2,"38224":1,"38225":1,"38226":2,"38227":1,"38228":2,"38229":1,"38230":2,"38231":2,"38232":1,"38233":1,"38234":1,"38235":1,"38236":1,"38237":2,"38238":1,"38239":1,"38240":2,"38241":2,"38242":1,"38243":2,"38244":2,"38245":2,"38246":2,"38247":1,"38248":2,"38249":1,"38250":1,"38251":2,"38252":2,"38253":2,"38254":1,"38255":1,"38256":2,"38257":2,"38258":1,"38259":1,"38260":2,"38261":2,"38262":1,"38263":2,"38264":2,"38265":1,"38266":2,"38267":1,"38268":1,"38269":2,"38270":2,"38271":2,"38272":2,"38273":1,"38274":2,"38275":1,"38276":1,"38277":1,"38278":2,"38279":1,"38280":1,"38281":2,"38282":1,"38283":1,"38284":1,"38285":1,"38286":1,"38287":2,"38288":2,"38289":1,"38290":2,"38291":2,"38292":1,"38293":2,"38294":1,"38295":2,"38296":1,"38297":2,"38298":2,"38299":2,"38300":2,"38301":1,"38302":2,"38303":2,"38304":1,"38305":2,"38306":1,"38307":1,"38308":2,"38309":2,"38310":1,"38311":2,"38312":2,"38313":1,"38314":1,"38315":2,"38316":1,"38317":2,"38318":2,"38319":1,"38320":1,"38321":1,"38322":2,"38323":2,"38324":1,"38325":2,"38326":2,"38327":2,"38328":2,"38329":2,"38330":2,"38331":1,"38332":1,"38333":1,"38334":2,"38335":1,"38336":2,"38337":1,"38338":1,"38339":1,"38340":2,"38341":2,"38342":1,"38343":2,"38344":1,"38345":1,"38346":1,"38347":2,"38348":2,"38349":2,"38350":1,"38351":2,"38352":1,"38353":2,"38354":1,"38355":1,"38356":1,"38357":1,"38358":2,"38359":2,"38360":2,"38361":2,"38362":2,"38363":2,"38364":1,"38365":1,"38366":2,"38367":2,"38368":2,"38369":2,"38370":2,"38371":1,"38372":2,"38373":2,"38374":2,"38375":1,"38376":2,"38377":2,"38378":2,"38379":1,"38380":1,"38381":1,"38382":2,"38383":2,"38384":1,"38385":2,"38386":1,"38387":1,"38388":1,"38389":1,"38390":2,"38391":2,"38392":2,"38393":1,"38394":2,"38395":1,"38396":1,"38397":2,"38398":2,"38399":2,"38400":1,"38401":2,"38402":1,"38403":2,"38404":1,"38405":2,"38406":2,"38407":1,"38408":2,"38409":1,"38410":2,"38411":1,"38412":2,"38413":2,"38414":2,"38415":1,"38416":2,"38417":1,"38418":2,"38419":2,"38420":1,"38421":2,"38422":2,"38423":1,"38424":2,"38425":1,"38426":1,"38427":2,"38428":2,"38429":1,"38430":1,"38431":2,"38432":1,"38433":1,"38434":1,"38435":1,"38436":1,"38437":2,"38438":1,"38439":1,"38440":2,"38441":1,"38442":2,"38443":2,"38444":2,"38445":1,"38446":2,"38447":1,"38448":2,"38449":2,"38450":1,"38451":2,"38452":2,"38453":2,"38454":2,"38455":2,"38456":2,"38457":2,"38458":1,"38459":1,"38460":1,"38461":1,"38462":2,"38463":1,"38464":2,"38465":2,"38466":2,"38467":1,"38468":1,"38469":2,"38470":2,"38471":1,"38472":1,"38473":2,"38474":1,"38475":1,"38476":1,"38477":1,"38478":2,"38479":2,"38480":2,"38481":1,"38482":2,"38483":2,"38484":2,"38485":1,"38486":1,"38487":1,"38488":1,"38489":1,"38490":1,"38491":2,"38492":2,"38493":2,"38494":2,"38495":2,"38496":1,"38497":1,"38498":1,"38499":1,"38500":1,"38501":2,"38502":2,"38503":1,"38504":2,"38505":2,"38506":2,"38507":1,"38508":2,"38509":1,"38510":1,"38511":1,"38512":1,"38513":1,"38514":1,"38515":1,"38516":1,"38517":2,"38518":2,"38519":1,"38520":1,"38521":1,"38522":2,"38523":1,"38524":2,"38525":1,"38526":1,"38527":2,"38528":1,"38529":2,"38530":2,"38531":1,"38532":2,"38533":2,"38534":1,"38535":2,"38536":2,"38537":1,"38538":2,"38539":1,"38540":2,"38541":2,"38542":2,"38543":2,"38544":2,"38545":1,"38546":1,"38547":1,"38548":1,"38549":2,"38550":2,"38551":2,"38552":1,"38553":2,"38554":1,"38555":2,"38556":2,"38557":2,"38558":2,"38559":2,"38560":1,"38561":1,"38562":2,"38563":2,"38564":2,"38565":1,"38566":1,"38567":1,"38568":2,"38569":2,"38570":1,"38571":2,"38572":1,"38573":2,"38574":1,"38575":1,"38576":2,"38577":2,"38578":2,"38579":1,"38580":2,"38581":2,"38582":2,"38583":2,"38584":2,"38585":1,"38586":2,"38587":1,"38588":1,"38589":2,"38590":1,"38591":2,"38592":1,"38593":2,"38594":2,"38595":1,"38596":2,"38597":1,"38598":2,"38599":2,"38600":1,"38601":1,"38602":2,"38603":2,"38604":1,"38605":2,"38606":1,"38607":2,"38608":2,"38609":1,"38610":2,"38611":2,"38612":1,"38613":2,"38614":2,"38615":2,"38616":2,"38617":2,"38618":1,"38619":1,"38620":2,"38621":1,"38622":1,"38623":2,"38624":2,"38625":2,"38626":1,"38627":1,"38628":2,"38629":1,"38630":2,"38631":1,"38632":2,"38633":2,"38634":2,"38635":1,"38636":1,"38637":2,"38638":2,"38639":2,"38640":1,"38641":1,"38642":2,"38643":1,"38644":2,"38645":2,"38646":2,"38647":2,"38648":1,"38649":2,"38650":2,"38651":2,"38652":1,"38653":2,"38654":1,"38655":2,"38656":1,"38657":1,"38658":2,"38659":1,"38660":2,"38661":2,"38662":1,"38663":1,"38664":1,"38665":1,"38666":1,"38667":2,"38668":1,"38669":1,"38670":2,"38671":1,"38672":1,"38673":2,"38674":1,"38675":2,"38676":2,"38677":1,"38678":1,"38679":1,"38680":1,"38681":1,"38682":2,"38683":2,"38684":2,"38685":1,"38686":1,"38687":2,"38688":2,"38689":2,"38690":1,"38691":1,"38692":1,"38693":1,"38694":1,"38695":1,"38696":1,"38697":2,"38698":1,"38699":2,"38700":1,"38701":2,"38702":1,"38703":1,"38704":2,"38705":2,"38706":1,"38707":2,"38708":1,"38709":1,"38710":1,"38711":2,"38712":2,"38713":2,"38714":1,"38715":2,"38716":2,"38717":2,"38718":2,"38719":1,"38720":1,"38721":2,"38722":1,"38723":1,"38724":1,"38725":2,"38726":1,"38727":2,"38728":2,"38729":2,"38730":2,"38731":2,"38732":1,"38733":1,"38734":2,"38735":2,"38736":2,"38737":1,"38738":2,"38739":1,"38740":1,"38741":1,"38742":1,"38743":1,"38744":2,"38745":2,"38746":1,"38747":1,"38748":2,"38749":2,"38750":2,"38751":1,"38752":1,"38753":1,"38754":1,"38755":2,"38756":1,"38757":2,"38758":2,"38759":2,"38760":2,"38761":2,"38762":2,"38763":2,"38764":2,"38765":2,"38766":1,"38767":1,"38768":2,"38769":1,"38770":1,"38771":2,"38772":2,"38773":2,"38774":1,"38775":1,"38776":2,"38777":2,"38778":2,"38779":1,"38780":2,"38781":2,"38782":2,"38783":1,"38784":2,"38785":2,"38786":1,"38787":2,"38788":2,"38789":1,"38790":2,"38791":2,"38792":1,"38793":1,"38794":1,"38795":2,"38796":2,"38797":1,"38798":1,"38799":2,"38800":2,"38801":2,"38802":2,"38803":1,"38804":2,"38805":1,"38806":1,"38807":2,"38808":1,"38809":2,"38810":2,"38811":2,"38812":1,"38813":1,"38814":2,"38815":2,"38816":2,"38817":1,"38818":1,"38819":1,"38820":2,"38821":2,"38822":2,"38823":2,"38824":2,"38825":1,"38826":2,"38827":2,"38828":2,"38829":2,"38830":1,"38831":2,"38832":2,"38833":2,"38834":1,"38835":2,"38836":1,"38837":2,"38838":1,"38839":1,"38840":1,"38841":2,"38842":1,"38843":2,"38844":2,"38845":2,"38846":2,"38847":1,"38848":2,"38849":1,"38850":1,"38851":1,"38852":2,"38853":2,"38854":1,"38855":2,"38856":2,"38857":1,"38858":1,"38859":1,"38860":1,"38861":1,"38862":2,"38863":2,"38864":2,"38865":1,"38866":1,"38867":2,"38868":2,"38869":1,"38870":1,"38871":2,"38872":1,"38873":1,"38874":2,"38875":2,"38876":2,"38877":1,"38878":1,"38879":1,"38880":1,"38881":1,"38882":2,"38883":1,"38884":1,"38885":2,"38886":2,"38887":2,"38888":2,"38889":2,"38890":1,"38891":2,"38892":1,"38893":2,"38894":2,"38895":2,"38896":1,"38897":2,"38898":2,"38899":2,"38900":2,"38901":1,"38902":2,"38903":2,"38904":2,"38905":1,"38906":2,"38907":2,"38908":1,"38909":1,"38910":1,"38911":2,"38912":2,"38913":1,"38914":2,"38915":2,"38916":2,"38917":2,"38918":1,"38919":2,"38920":2,"38921":2,"38922":2,"38923":2,"38924":2,"38925":1,"38926":2,"38927":2,"38928":1,"38929":2,"38930":2,"38931":2,"38932":2,"38933":2,"38934":1,"38935":2,"38936":1,"38937":1,"38938":1,"38939":2,"38940":1,"38941":1,"38942":2,"38943":1,"38944":1,"38945":2,"38946":1,"38947":1,"38948":2,"38949":1,"38950":2,"38951":1,"38952":2,"38953":1,"38954":2,"38955":1,"38956":1,"38957":2,"38958":1,"38959":1,"38960":2,"38961":1,"38962":1,"38963":1,"38964":1,"38965":1,"38966":2,"38967":2,"38968":2,"38969":2,"38970":1,"38971":1,"38972":2,"38973":1,"38974":2,"38975":2,"38976":2,"38977":1,"38978":2,"38979":1,"38980":2,"38981":2,"38982":2,"38983":2,"38984":2,"38985":1,"38986":2,"38987":2,"38988":2,"38989":1,"38990":1,"38991":2,"38992":2,"38993":1,"38994":1,"38995":2,"38996":2,"38997":2,"38998":1,"38999":2,"39000":2,"39001":1,"39002":2,"39003":1,"39004":2,"39005":2,"39006":2,"39007":2,"39008":1,"39009":1,"39010":2,"39011":1,"39012":1,"39013":2,"39014":2,"39015":2,"39016":2,"39017":1,"39018":2,"39019":1,"39020":1,"39021":1,"39022":1,"39023":1,"39024":2,"39025":2,"39026":1,"39027":1,"39028":1,"39029":2,"39030":2,"39031":1,"39032":2,"39033":1,"39034":1,"39035":1,"39036":2,"39037":2,"39038":2,"39039":2,"39040":1,"39041":1,"39042":2,"39043":2,"39044":2,"39045":1,"39046":2,"39047":1,"39048":1,"39049":2,"39050":2,"39051":2,"39052":2,"39053":2,"39054":1,"39055":2,"39056":1,"39057":2,"39058":2,"39059":1,"39060":1,"39061":1,"39062":2,"39063":1,"39064":2,"39065":1,"39066":2,"39067":2,"39068":1,"39069":1,"39070":2,"39071":2,"39072":1,"39073":1,"39074":1,"39075":1,"39076":2,"39077":1,"39078":2,"39079":2,"39080":1,"39081":2,"39082":2,"39083":2,"39084":1,"39085":2,"39086":2,"39087":1,"39088":1,"39089":2,"39090":2,"39091":1,"39092":1,"39093":2,"39094":2,"39095":1,"39096":2,"39097":1,"39098":1,"39099":2,"39100":2,"39101":2,"39102":2,"39103":2,"39104":1,"39105":2,"39106":2,"39107":1,"39108":2,"39109":2,"39110":1,"39111":2,"39112":2,"39113":2,"39114":2,"39115":2,"39116":2,"39117":1,"39118":2,"39119":1,"39120":2,"39121":1,"39122":2,"39123":2,"39124":2,"39125":2,"39126":1,"39127":1,"39128":1,"39129":1,"39130":1,"39131":1,"39132":2,"39133":1,"39134":1,"39135":1,"39136":2,"39137":1,"39138":1,"39139":1,"39140":2,"39141":1,"39142":1,"39143":1,"39144":2,"39145":2,"39146":2,"39147":1,"39148":2,"39149":1,"39150":2,"39151":1,"39152":2,"39153":1,"39154":1,"39155":1,"39156":1,"39157":1,"39158":1,"39159":2,"39160":2,"39161":2,"39162":2,"39163":2,"39164":2,"39165":1,"39166":2,"39167":1,"39168":1,"39169":2,"39170":2,"39171":2,"39172":1,"39173":2,"39174":2,"39175":1,"39176":1,"39177":1,"39178":2,"39179":2,"39180":1,"39181":2,"39182":1,"39183":1,"39184":2,"39185":1,"39186":1,"39187":1,"39188":1,"39189":2,"39190":2,"39191":1,"39192":2,"39193":2,"39194":2,"39195":2,"39196":1,"39197":2,"39198":2,"39199":2,"39200":1,"39201":2,"39202":2,"39203":1,"39204":2,"39205":1,"39206":2,"39207":2,"39208":1,"39209":2,"39210":2,"39211":2,"39212":2,"39213":1,"39214":1,"39215":2,"39216":1,"39217":1,"39218":2,"39219":1,"39220":1,"39221":1,"39222":2,"39223":1,"39224":1,"39225":1,"39226":1,"39227":2,"39228":1,"39229":2,"39230":1,"39231":2,"39232":1,"39233":2,"39234":1,"39235":2,"39236":1,"39237":2,"39238":1,"39239":2,"39240":2,"39241":1,"39242":1,"39243":2,"39244":1,"39245":2,"39246":1,"39247":1,"39248":2,"39249":1,"39250":1,"39251":1,"39252":1,"39253":2,"39254":1,"39255":2,"39256":2,"39257":1,"39258":2,"39259":2,"39260":2,"39261":1,"39262":1,"39263":1,"39264":2,"39265":1,"39266":2,"39267":2,"39268":1,"39269":1,"39270":2,"39271":2,"39272":2,"39273":2,"39274":2,"39275":1,"39276":1,"39277":1,"39278":1,"39279":2,"39280":2,"39281":1,"39282":2,"39283":1,"39284":2,"39285":2,"39286":1,"39287":1,"39288":2,"39289":1,"39290":1,"39291":2,"39292":2,"39293":2,"39294":1,"39295":1,"39296":2,"39297":2,"39298":2,"39299":2,"39300":2,"39301":2,"39302":2,"39303":1,"39304":2,"39305":1,"39306":2,"39307":2,"39308":1,"39309":2,"39310":2,"39311":1,"39312":2,"39313":1,"39314":1,"39315":1,"39316":1,"39317":1,"39318":1,"39319":2,"39320":2,"39321":2,"39322":1,"39323":1,"39324":2,"39325":2,"39326":1,"39327":1,"39328":2,"39329":1,"39330":1,"39331":2,"39332":2,"39333":2,"39334":2,"39335":2,"39336":2,"39337":2,"39338":2,"39339":2,"39340":1,"39341":1,"39342":2,"39343":1,"39344":1,"39345":1,"39346":2,"39347":2,"39348":1,"39349":1,"39350":2,"39351":1,"39352":1,"39353":2,"39354":1,"39355":2,"39356":1,"39357":1,"39358":1,"39359":2,"39360":2,"39361":1,"39362":1,"39363":2,"39364":1,"39365":2,"39366":2,"39367":2,"39368":2,"39369":2,"39370":2,"39371":1,"39372":2,"39373":2,"39374":1,"39375":2,"39376":2,"39377":2,"39378":2,"39379":1,"39380":1,"39381":2,"39382":1,"39383":1,"39384":1,"39385":1,"39386":1,"39387":1,"39388":2,"39389":2,"39390":2,"39391":1,"39392":2,"39393":1,"39394":1,"39395":2,"39396":1,"39397":2,"39398":2,"39399":1,"39400":2,"39401":1,"39402":1,"39403":2,"39404":1,"39405":1,"39406":2,"39407":1,"39408":1,"39409":1,"39410":2,"39411":2,"39412":2,"39413":1,"39414":2,"39415":1,"39416":2,"39417":1,"39418":1,"39419":2,"39420":2,"39421":1,"39422":1,"39423":1,"39424":1,"39425":2,"39426":2,"39427":2,"39428":1,"39429":1,"39430":1,"39431":1,"39432":1,"39433":1,"39434":1,"39435":2,"39436":2,"39437":2,"39438":2,"39439":2,"39440":1,"39441":2,"39442":1,"39443":2,"39444":2,"39445":2,"39446":2,"39447":2,"39448":2,"39449":1,"39450":1,"39451":1,"39452":1,"39453":2,"39454":2,"39455":1,"39456":1,"39457":2,"39458":1,"39459":1,"39460":1,"39461":1,"39462":2,"39463":2,"39464":2,"39465":2,"39466":1,"39467":1,"39468":2,"39469":2,"39470":2,"39471":2,"39472":2,"39473":1,"39474":2,"39475":2,"39476":1,"39477":2,"39478":2,"39479":2,"39480":2,"39481":1,"39482":2,"39483":2,"39484":2,"39485":1,"39486":2,"39487":2,"39488":2,"39489":1,"39490":2,"39491":2,"39492":2,"39493":1,"39494":1,"39495":2,"39496":1,"39497":1,"39498":2,"39499":1,"39500":2,"39501":1,"39502":1,"39503":2,"39504":1,"39505":1,"39506":2,"39507":2,"39508":1,"39509":1,"39510":2,"39511":2,"39512":2,"39513":1,"39514":2,"39515":1,"39516":2,"39517":2,"39518":1,"39519":1,"39520":1,"39521":2,"39522":1,"39523":2,"39524":1,"39525":2,"39526":1,"39527":1,"39528":2,"39529":1,"39530":1,"39531":2,"39532":2,"39533":1,"39534":1,"39535":2,"39536":1,"39537":2,"39538":1,"39539":1,"39540":2,"39541":2,"39542":2,"39543":2,"39544":1,"39545":2,"39546":1,"39547":1,"39548":1,"39549":1,"39550":2,"39551":2,"39552":2,"39553":1,"39554":2,"39555":2,"39556":2,"39557":2,"39558":1,"39559":1,"39560":1,"39561":2,"39562":2,"39563":2,"39564":2,"39565":2,"39566":2,"39567":1,"39568":1,"39569":1,"39570":2,"39571":1,"39572":1,"39573":1,"39574":1,"39575":1,"39576":2,"39577":1,"39578":2,"39579":2,"39580":1,"39581":2,"39582":1,"39583":2,"39584":1,"39585":1,"39586":2,"39587":2,"39588":2,"39589":1,"39590":1,"39591":1,"39592":2,"39593":2,"39594":2,"39595":1,"39596":2,"39597":1,"39598":1,"39599":2,"39600":2,"39601":1,"39602":2,"39603":1,"39604":1,"39605":2,"39606":2,"39607":2,"39608":1,"39609":2,"39610":2,"39611":2,"39612":1,"39613":1,"39614":1,"39615":1,"39616":2,"39617":2,"39618":1,"39619":1,"39620":1,"39621":1,"39622":1,"39623":1,"39624":2,"39625":1,"39626":2,"39627":2,"39628":2,"39629":2,"39630":2,"39631":1,"39632":1,"39633":2,"39634":1,"39635":1,"39636":2,"39637":2,"39638":1,"39639":2,"39640":2,"39641":1,"39642":2,"39643":2,"39644":1,"39645":2,"39646":2,"39647":2,"39648":2,"39649":2,"39650":1,"39651":2,"39652":2,"39653":1,"39654":2,"39655":2,"39656":2,"39657":1,"39658":2,"39659":1,"39660":1,"39661":1,"39662":2,"39663":2,"39664":1,"39665":2,"39666":2,"39667":2,"39668":2,"39669":1,"39670":1,"39671":1,"39672":1,"39673":2,"39674":1,"39675":1,"39676":1,"39677":1,"39678":2,"39679":2,"39680":1,"39681":1,"39682":2,"39683":1,"39684":2,"39685":2,"39686":2,"39687":2,"39688":1,"39689":2,"39690":1,"39691":1,"39692":2,"39693":2,"39694":1,"39695":2,"39696":2,"39697":2,"39698":1,"39699":1,"39700":1,"39701":1,"39702":2,"39703":2,"39704":2,"39705":1,"39706":2,"39707":2,"39708":1,"39709":2,"39710":1,"39711":2,"39712":2,"39713":1,"39714":2,"39715":2,"39716":1,"39717":2,"39718":2,"39719":2,"39720":2,"39721":1,"39722":2,"39723":2,"39724":2,"39725":2,"39726":2,"39727":2,"39728":1,"39729":1,"39730":2,"39731":2,"39732":1,"39733":2,"39734":1,"39735":2,"39736":1,"39737":2,"39738":1,"39739":1,"39740":2,"39741":1,"39742":1,"39743":1,"39744":1,"39745":2,"39746":2,"39747":2,"39748":2,"39749":2,"39750":2,"39751":1,"39752":1,"39753":2,"39754":2,"39755":1,"39756":1,"39757":2,"39758":1,"39759":1,"39760":2,"39761":1,"39762":2,"39763":2,"39764":1,"39765":1,"39766":1,"39767":2,"39768":2,"39769":2,"39770":2,"39771":1,"39772":2,"39773":1,"39774":1,"39775":1,"39776":2,"39777":2,"39778":1,"39779":1,"39780":1,"39781":1,"39782":2,"39783":1,"39784":2,"39785":1,"39786":2,"39787":1,"39788":2,"39789":1,"39790":1,"39791":2,"39792":2,"39793":1,"39794":1,"39795":1,"39796":2,"39797":1,"39798":1,"39799":2,"39800":1,"39801":2,"39802":1,"39803":1,"39804":1,"39805":1,"39806":2,"39807":2,"39808":1,"39809":1,"39810":2,"39811":1,"39812":1,"39813":2,"39814":1,"39815":1,"39816":2,"39817":1,"39818":2,"39819":1,"39820":1,"39821":1,"39822":1,"39823":2,"39824":1,"39825":2,"39826":2,"39827":1,"39828":2,"39829":1,"39830":2,"39831":1,"39832":2,"39833":2,"39834":1,"39835":2,"39836":2,"39837":2,"39838":2,"39839":1,"39840":1,"39841":1,"39842":1,"39843":2,"39844":2,"39845":1,"39846":2,"39847":1,"39848":1,"39849":1,"39850":1,"39851":1,"39852":2,"39853":1,"39854":1,"39855":2,"39856":1,"39857":1,"39858":2,"39859":1,"39860":2,"39861":1,"39862":1,"39863":1,"39864":1,"39865":2,"39866":2,"39867":1,"39868":1,"39869":2,"39870":2,"39871":2,"39872":1,"39873":2,"39874":2,"39875":1,"39876":2,"39877":2,"39878":1,"39879":2,"39880":1,"39881":1,"39882":2,"39883":1,"39884":2,"39885":1,"39886":2,"39887":1,"39888":1,"39889":1,"39890":1,"39891":1,"39892":2,"39893":2,"39894":2,"39895":1,"39896":1,"39897":1,"39898":2,"39899":1,"39900":2,"39901":1,"39902":1,"39903":1,"39904":1,"39905":2,"39906":2,"39907":1,"39908":2,"39909":2,"39910":2,"39911":2,"39912":2,"39913":2,"39914":1,"39915":2,"39916":1,"39917":1,"39918":2,"39919":2,"39920":2,"39921":2,"39922":1,"39923":1,"39924":1,"39925":1,"39926":1,"39927":2,"39928":2,"39929":2,"39930":1,"39931":1,"39932":1,"39933":1,"39934":2,"39935":2,"39936":2,"39937":1,"39938":1,"39939":1,"39940":2,"39941":1,"39942":2,"39943":2,"39944":2,"39945":2,"39946":1,"39947":1,"39948":2,"39949":2,"39950":1,"39951":1,"39952":2,"39953":1,"39954":1,"39955":2,"39956":1,"39957":1,"39958":1,"39959":1,"39960":1,"39961":2,"39962":2,"39963":1,"39964":2,"39965":1,"39966":2,"39967":1,"39968":2,"39969":2,"39970":1,"39971":2,"39972":2,"39973":2,"39974":2,"39975":1,"39976":2,"39977":2,"39978":2,"39979":2,"39980":2,"39981":1,"39982":1,"39983":1,"39984":2,"39985":1,"39986":1,"39987":1,"39988":2,"39989":2,"39990":2,"39991":1,"39992":2,"39993":1,"39994":1,"39995":2,"39996":1,"39997":2,"39998":2,"39999":2,"40000":1,"40001":2,"40002":1,"40003":1,"40004":1,"40005":1,"40006":1,"40007":2,"40008":1,"40009":1,"40010":1,"40011":1,"40012":1,"40013":2,"40014":1,"40015":1,"40016":1,"40017":2,"40018":2,"40019":2,"40020":2,"40021":2,"40022":2,"40023":1,"40024":1,"40025":1,"40026":2,"40027":1,"40028":2,"40029":1,"40030":2,"40031":1,"40032":2,"40033":1,"40034":2,"40035":1,"40036":2,"40037":2,"40038":2,"40039":1,"40040":1,"40041":1,"40042":1,"40043":2,"40044":2,"40045":2,"40046":1,"40047":1,"40048":1,"40049":2,"40050":2,"40051":1,"40052":1,"40053":1,"40054":2,"40055":1,"40056":2,"40057":2,"40058":1,"40059":1,"40060":2,"40061":1,"40062":2,"40063":1,"40064":2,"40065":2,"40066":2,"40067":1,"40068":2,"40069":2,"40070":1,"40071":1,"40072":1,"40073":1,"40074":2,"40075":1,"40076":2,"40077":2,"40078":1,"40079":2,"40080":2,"40081":2,"40082":2,"40083":1,"40084":1,"40085":1,"40086":1,"40087":1,"40088":2,"40089":2,"40090":1,"40091":1,"40092":1,"40093":2,"40094":2,"40095":2,"40096":1,"40097":2,"40098":2,"40099":2,"40100":2,"40101":2,"40102":2,"40103":1,"40104":2,"40105":1,"40106":1,"40107":2,"40108":2,"40109":1,"40110":1,"40111":1,"40112":1,"40113":1,"40114":2,"40115":1,"40116":2,"40117":1,"40118":2,"40119":1,"40120":2,"40121":1,"40122":1,"40123":1,"40124":1,"40125":2,"40126":2,"40127":1,"40128":2,"40129":1,"40130":1,"40131":2,"40132":1,"40133":2,"40134":2,"40135":1,"40136":2,"40137":1,"40138":1,"40139":1,"40140":1,"40141":1,"40142":2,"40143":1,"40144":1,"40145":1,"40146":2,"40147":1,"40148":1,"40149":2,"40150":1,"40151":1,"40152":2,"40153":1,"40154":2,"40155":1,"40156":2,"40157":1,"40158":2,"40159":2,"40160":1,"40161":2,"40162":2,"40163":2,"40164":1,"40165":1,"40166":2,"40167":2,"40168":1,"40169":2,"40170":2,"40171":2,"40172":2,"40173":1,"40174":1,"40175":2,"40176":2,"40177":2,"40178":1,"40179":2,"40180":1,"40181":1,"40182":2,"40183":1,"40184":1,"40185":1,"40186":1,"40187":2,"40188":2,"40189":2,"40190":1,"40191":2,"40192":1,"40193":2,"40194":2,"40195":2,"40196":1,"40197":1,"40198":1,"40199":1,"40200":2,"40201":2,"40202":2,"40203":1,"40204":1,"40205":2,"40206":1,"40207":1,"40208":1,"40209":1,"40210":1,"40211":1,"40212":1,"40213":1,"40214":2,"40215":2,"40216":2,"40217":2,"40218":2,"40219":1,"40220":1,"40221":1,"40222":1,"40223":2,"40224":2,"40225":2,"40226":2,"40227":1,"40228":2,"40229":1,"40230":1,"40231":2,"40232":1,"40233":2,"40234":1,"40235":2,"40236":2,"40237":1,"40238":1,"40239":1,"40240":2,"40241":2,"40242":1,"40243":2,"40244":2,"40245":2,"40246":2,"40247":2,"40248":1,"40249":2,"40250":1,"40251":1,"40252":2,"40253":2,"40254":2,"40255":2,"40256":2,"40257":2,"40258":2,"40259":1,"40260":2,"40261":1,"40262":1,"40263":2,"40264":1,"40265":2,"40266":2,"40267":2,"40268":1,"40269":2,"40270":2,"40271":1,"40272":1,"40273":1,"40274":1,"40275":2,"40276":1,"40277":1,"40278":1,"40279":1,"40280":2,"40281":2,"40282":1,"40283":1,"40284":1,"40285":1,"40286":1,"40287":1,"40288":1,"40289":2,"40290":1,"40291":2,"40292":1,"40293":1,"40294":1,"40295":2,"40296":2,"40297":2,"40298":2,"40299":2,"40300":1,"40301":1,"40302":1,"40303":2,"40304":2,"40305":1,"40306":2,"40307":2,"40308":2,"40309":1,"40310":1,"40311":1,"40312":1,"40313":1,"40314":2,"40315":1,"40316":1,"40317":2,"40318":2,"40319":2,"40320":1,"40321":1,"40322":2,"40323":2,"40324":1,"40325":2,"40326":1,"40327":2,"40328":1,"40329":1,"40330":2,"40331":1,"40332":2,"40333":2,"40334":1,"40335":2,"40336":2,"40337":1,"40338":1,"40339":1,"40340":2,"40341":2,"40342":1,"40343":2,"40344":1,"40345":2,"40346":1,"40347":2,"40348":2,"40349":2,"40350":2,"40351":1,"40352":2,"40353":2,"40354":2,"40355":2,"40356":2,"40357":2,"40358":1,"40359":1,"40360":1,"40361":2,"40362":1,"40363":1,"40364":1,"40365":1,"40366":1,"40367":1,"40368":1,"40369":1,"40370":1,"40371":1,"40372":2,"40373":1,"40374":2,"40375":2,"40376":2,"40377":1,"40378":2,"40379":1,"40380":2,"40381":2,"40382":2,"40383":2,"40384":2,"40385":2,"40386":1,"40387":2,"40388":2,"40389":1,"40390":1,"40391":2,"40392":2,"40393":1,"40394":1,"40395":1,"40396":2,"40397":2,"40398":1,"40399":1,"40400":1,"40401":1,"40402":2,"40403":2,"40404":2,"40405":1,"40406":1,"40407":2,"40408":1,"40409":2,"40410":2,"40411":1,"40412":2,"40413":2,"40414":2,"40415":1,"40416":1,"40417":1,"40418":2,"40419":2,"40420":1,"40421":2,"40422":1,"40423":2,"40424":1,"40425":2,"40426":2,"40427":2,"40428":1,"40429":2,"40430":2,"40431":2,"40432":2,"40433":2,"40434":1,"40435":1,"40436":2,"40437":2,"40438":2,"40439":1,"40440":1,"40441":2,"40442":1,"40443":1,"40444":2,"40445":2,"40446":2,"40447":1,"40448":2,"40449":2,"40450":2,"40451":1,"40452":2,"40453":1,"40454":2,"40455":1,"40456":2,"40457":1,"40458":2,"40459":1,"40460":1,"40461":2,"40462":1,"40463":1,"40464":1,"40465":1,"40466":2,"40467":1,"40468":1,"40469":1,"40470":2,"40471":1,"40472":1,"40473":2,"40474":1,"40475":2,"40476":1,"40477":1,"40478":1,"40479":1,"40480":1,"40481":1,"40482":1,"40483":2,"40484":1,"40485":2,"40486":2,"40487":2,"40488":2,"40489":1,"40490":1,"40491":2,"40492":1,"40493":1,"40494":1,"40495":2,"40496":1,"40497":2,"40498":1,"40499":1,"40500":2,"40501":1,"40502":1,"40503":2,"40504":1,"40505":2,"40506":2,"40507":1,"40508":2,"40509":2,"40510":1,"40511":1,"40512":1,"40513":1,"40514":2,"40515":2,"40516":1,"40517":2,"40518":2,"40519":1,"40520":1,"40521":2,"40522":1,"40523":2,"40524":2,"40525":1,"40526":2,"40527":1,"40528":2,"40529":1,"40530":2,"40531":1,"40532":2,"40533":2,"40534":2,"40535":1,"40536":1,"40537":2,"40538":2,"40539":2,"40540":1,"40541":2,"40542":1,"40543":2,"40544":1,"40545":2,"40546":2,"40547":2,"40548":2,"40549":1,"40550":1,"40551":1,"40552":1,"40553":1,"40554":2,"40555":2,"40556":1,"40557":1,"40558":1,"40559":1,"40560":2,"40561":1,"40562":1,"40563":1,"40564":1,"40565":2,"40566":1,"40567":1,"40568":2,"40569":2,"40570":2,"40571":1,"40572":2,"40573":1,"40574":2,"40575":2,"40576":2,"40577":1,"40578":2,"40579":1,"40580":2,"40581":2,"40582":1,"40583":2,"40584":1,"40585":1,"40586":2,"40587":2,"40588":1,"40589":1,"40590":1,"40591":2,"40592":2,"40593":2,"40594":1,"40595":2,"40596":2,"40597":1,"40598":2,"40599":1,"40600":2,"40601":2,"40602":2,"40603":2,"40604":2,"40605":1,"40606":1,"40607":1,"40608":1,"40609":2,"40610":1,"40611":2,"40612":2,"40613":2,"40614":1,"40615":2,"40616":2,"40617":1,"40618":1,"40619":2,"40620":1,"40621":2,"40622":1,"40623":1,"40624":2,"40625":1,"40626":2,"40627":1,"40628":2,"40629":2,"40630":1,"40631":2,"40632":1,"40633":2,"40634":2,"40635":2,"40636":1,"40637":2,"40638":1,"40639":2,"40640":1,"40641":1,"40642":1,"40643":2,"40644":1,"40645":1,"40646":2,"40647":1,"40648":2,"40649":2,"40650":1,"40651":2,"40652":2,"40653":1,"40654":1,"40655":1,"40656":1,"40657":2,"40658":2,"40659":1,"40660":2,"40661":1,"40662":1,"40663":2,"40664":2,"40665":2,"40666":1,"40667":2,"40668":1,"40669":1,"40670":1,"40671":2,"40672":1,"40673":1,"40674":1,"40675":2,"40676":2,"40677":2,"40678":1,"40679":2,"40680":2,"40681":1,"40682":2,"40683":2,"40684":2,"40685":1,"40686":1,"40687":2,"40688":1,"40689":1,"40690":1,"40691":2,"40692":2,"40693":2,"40694":1,"40695":2,"40696":2,"40697":1,"40698":1,"40699":1,"40700":2,"40701":2,"40702":1,"40703":1,"40704":2,"40705":2,"40706":1,"40707":2,"40708":1,"40709":2,"40710":2,"40711":1,"40712":2,"40713":2,"40714":1,"40715":1,"40716":1,"40717":1,"40718":1,"40719":1,"40720":1,"40721":1,"40722":1,"40723":1,"40724":1,"40725":1,"40726":2,"40727":2,"40728":1,"40729":2,"40730":2,"40731":2,"40732":2,"40733":2,"40734":1,"40735":1,"40736":1,"40737":1,"40738":1,"40739":2,"40740":2,"40741":2,"40742":2,"40743":1,"40744":2,"40745":2,"40746":1,"40747":1,"40748":1,"40749":2,"40750":1,"40751":1,"40752":1,"40753":2,"40754":1,"40755":1,"40756":1,"40757":1,"40758":1,"40759":1,"40760":1,"40761":1,"40762":1,"40763":1,"40764":2,"40765":2,"40766":2,"40767":1,"40768":2,"40769":1,"40770":2,"40771":2,"40772":2,"40773":1,"40774":1,"40775":1,"40776":1,"40777":1,"40778":1,"40779":2,"40780":2,"40781":1,"40782":2,"40783":1,"40784":1,"40785":2,"40786":2,"40787":2,"40788":1,"40789":2,"40790":1,"40791":2,"40792":1,"40793":1,"40794":2,"40795":1,"40796":2,"40797":1,"40798":1,"40799":1,"40800":1,"40801":2,"40802":2,"40803":1,"40804":2,"40805":1,"40806":2,"40807":1,"40808":1,"40809":2,"40810":1,"40811":2,"40812":2,"40813":2,"40814":2,"40815":2,"40816":1,"40817":1,"40818":2,"40819":1,"40820":2,"40821":1,"40822":1,"40823":1,"40824":2,"40825":1,"40826":1,"40827":2,"40828":1,"40829":1,"40830":1,"40831":2,"40832":1,"40833":1,"40834":2,"40835":2,"40836":2,"40837":1,"40838":1,"40839":1,"40840":1,"40841":1,"40842":2,"40843":1,"40844":2,"40845":1,"40846":1,"40847":1,"40848":2,"40849":2,"40850":2,"40851":1,"40852":2,"40853":1,"40854":2,"40855":2,"40856":2,"40857":1,"40858":1,"40859":2,"40860":1,"40861":1,"40862":2,"40863":2,"40864":2,"40865":2,"40866":2,"40867":2,"40868":1,"40869":1,"40870":2,"40871":1,"40872":1,"40873":1,"40874":1,"40875":1,"40876":2,"40877":2,"40878":2,"40879":2,"40880":1,"40881":2,"40882":1,"40883":2,"40884":1,"40885":1,"40886":2,"40887":2,"40888":1,"40889":2,"40890":2,"40891":2,"40892":1,"40893":2,"40894":1,"40895":1,"40896":1,"40897":1,"40898":2,"40899":2,"40900":2,"40901":1,"40902":2,"40903":2,"40904":2,"40905":2,"40906":2,"40907":1,"40908":1,"40909":1,"40910":2,"40911":1,"40912":1,"40913":2,"40914":2,"40915":2,"40916":1,"40917":2,"40918":1,"40919":2,"40920":1,"40921":1,"40922":1,"40923":2,"40924":2,"40925":1,"40926":1,"40927":2,"40928":2,"40929":2,"40930":2,"40931":2,"40932":1,"40933":2,"40934":2,"40935":1,"40936":2,"40937":1,"40938":1,"40939":2,"40940":1,"40941":2,"40942":2,"40943":1,"40944":1,"40945":1,"40946":2,"40947":1,"40948":1,"40949":1,"40950":2,"40951":2,"40952":2,"40953":1,"40954":2,"40955":2,"40956":1,"40957":2,"40958":1,"40959":1,"40960":2,"40961":1,"40962":1,"40963":2,"40964":2,"40965":2,"40966":1,"40967":2,"40968":2,"40969":1,"40970":1,"40971":1,"40972":2,"40973":1,"40974":2,"40975":1,"40976":1,"40977":1,"40978":1,"40979":1,"40980":1,"40981":2,"40982":2,"40983":1,"40984":2,"40985":1,"40986":1,"40987":1,"40988":2,"40989":2,"40990":1,"40991":1,"40992":2,"40993":1,"40994":1,"40995":1,"40996":1,"40997":2,"40998":2,"40999":2,"41000":1,"41001":2,"41002":2,"41003":2,"41004":2,"41005":2,"41006":2,"41007":2,"41008":2,"41009":2,"41010":1,"41011":1,"41012":1,"41013":1,"41014":1,"41015":2,"41016":2,"41017":1,"41018":2,"41019":1,"41020":2,"41021":2,"41022":2,"41023":2,"41024":2,"41025":2,"41026":2,"41027":1,"41028":1,"41029":2,"41030":2,"41031":2,"41032":1,"41033":2,"41034":1,"41035":1,"41036":1,"41037":1,"41038":1,"41039":2,"41040":1,"41041":1,"41042":2,"41043":2,"41044":2,"41045":2,"41046":2,"41047":1,"41048":1,"41049":2,"41050":2,"41051":2,"41052":1,"41053":2,"41054":1,"41055":1,"41056":1,"41057":2,"41058":2,"41059":1,"41060":1,"41061":1,"41062":1,"41063":1,"41064":2,"41065":1,"41066":1,"41067":2,"41068":1,"41069":1,"41070":1,"41071":2,"41072":1,"41073":2,"41074":1,"41075":1,"41076":2,"41077":2,"41078":1,"41079":2,"41080":2,"41081":2,"41082":2,"41083":2,"41084":1,"41085":2,"41086":1,"41087":1,"41088":2,"41089":1,"41090":1,"41091":1,"41092":1,"41093":2,"41094":1,"41095":1,"41096":2,"41097":1,"41098":1,"41099":1,"41100":2,"41101":1,"41102":1,"41103":2,"41104":1,"41105":1,"41106":2,"41107":1,"41108":1,"41109":1,"41110":1,"41111":1,"41112":1,"41113":1,"41114":1,"41115":2,"41116":1,"41117":1,"41118":1,"41119":2,"41120":1,"41121":1,"41122":1,"41123":1,"41124":2,"41125":2,"41126":1,"41127":1,"41128":2,"41129":1,"41130":1,"41131":2,"41132":2,"41133":2,"41134":1,"41135":1,"41136":1,"41137":2,"41138":2,"41139":2,"41140":1,"41141":2,"41142":2,"41143":2,"41144":2,"41145":2,"41146":2,"41147":2,"41148":1,"41149":2,"41150":2,"41151":1,"41152":2,"41153":1,"41154":1,"41155":2,"41156":2,"41157":2,"41158":2,"41159":2,"41160":1,"41161":1,"41162":2,"41163":1,"41164":1,"41165":2,"41166":1,"41167":1,"41168":2,"41169":1,"41170":1,"41171":1,"41172":2,"41173":1,"41174":1,"41175":1,"41176":2,"41177":1,"41178":1,"41179":2,"41180":2,"41181":1,"41182":2,"41183":1,"41184":1,"41185":1,"41186":2,"41187":1,"41188":2,"41189":2,"41190":1,"41191":2,"41192":1,"41193":1,"41194":1,"41195":2,"41196":2,"41197":1,"41198":2,"41199":2,"41200":1,"41201":2,"41202":1,"41203":2,"41204":2,"41205":1,"41206":1,"41207":1,"41208":2,"41209":2,"41210":2,"41211":2,"41212":2,"41213":2,"41214":1,"41215":1,"41216":2,"41217":2,"41218":2,"41219":2,"41220":2,"41221":1,"41222":2,"41223":1,"41224":1,"41225":1,"41226":2,"41227":1,"41228":2,"41229":1,"41230":2,"41231":2,"41232":2,"41233":1,"41234":2,"41235":2,"41236":1,"41237":2,"41238":2,"41239":2,"41240":1,"41241":2,"41242":1,"41243":2,"41244":2,"41245":1,"41246":1,"41247":2,"41248":2,"41249":2,"41250":1,"41251":2,"41252":1,"41253":2,"41254":1,"41255":1,"41256":2,"41257":1,"41258":2,"41259":1,"41260":2,"41261":2,"41262":2,"41263":1,"41264":1,"41265":2,"41266":1,"41267":2,"41268":2,"41269":2,"41270":1,"41271":1,"41272":1,"41273":2,"41274":1,"41275":2,"41276":1,"41277":1,"41278":1,"41279":2,"41280":2,"41281":1,"41282":2,"41283":2,"41284":1,"41285":2,"41286":2,"41287":2,"41288":2,"41289":2,"41290":1,"41291":2,"41292":1,"41293":2,"41294":2,"41295":2,"41296":2,"41297":1,"41298":1,"41299":2,"41300":2,"41301":1,"41302":2,"41303":2,"41304":1,"41305":1,"41306":2,"41307":2,"41308":2,"41309":1,"41310":2,"41311":1,"41312":2,"41313":2,"41314":2,"41315":2,"41316":1,"41317":1,"41318":1,"41319":2,"41320":1,"41321":1,"41322":1,"41323":1,"41324":2,"41325":2,"41326":1,"41327":1,"41328":1,"41329":1,"41330":2,"41331":1,"41332":1,"41333":2,"41334":2,"41335":2,"41336":1,"41337":1,"41338":1,"41339":2,"41340":1,"41341":1,"41342":1,"41343":1,"41344":2,"41345":1,"41346":2,"41347":2,"41348":1,"41349":1,"41350":2,"41351":2,"41352":1,"41353":1,"41354":1,"41355":1,"41356":1,"41357":2,"41358":2,"41359":1,"41360":2,"41361":1,"41362":2,"41363":2,"41364":1,"41365":2,"41366":2,"41367":1,"41368":1,"41369":1,"41370":1,"41371":2,"41372":1,"41373":1,"41374":2,"41375":2,"41376":2,"41377":1,"41378":2,"41379":1,"41380":1,"41381":2,"41382":2,"41383":1,"41384":1,"41385":1,"41386":2,"41387":2,"41388":1,"41389":2,"41390":2,"41391":2,"41392":1,"41393":2,"41394":1,"41395":1,"41396":1,"41397":1,"41398":1,"41399":1,"41400":2,"41401":1,"41402":2,"41403":2,"41404":1,"41405":1,"41406":2,"41407":1,"41408":2,"41409":1,"41410":2,"41411":2,"41412":2,"41413":1,"41414":1,"41415":2,"41416":2,"41417":2,"41418":1,"41419":1,"41420":2,"41421":2,"41422":2,"41423":2,"41424":2,"41425":1,"41426":1,"41427":1,"41428":2,"41429":1,"41430":2,"41431":1,"41432":2,"41433":1,"41434":1,"41435":1,"41436":2,"41437":1,"41438":2,"41439":1,"41440":1,"41441":1,"41442":1,"41443":1,"41444":2,"41445":2,"41446":2,"41447":1,"41448":2,"41449":1,"41450":2,"41451":2,"41452":1,"41453":1,"41454":1,"41455":2,"41456":1,"41457":1,"41458":1,"41459":1,"41460":1,"41461":2,"41462":2,"41463":1,"41464":2,"41465":1,"41466":2,"41467":1,"41468":2,"41469":2,"41470":2,"41471":1,"41472":1,"41473":1,"41474":2,"41475":1,"41476":2,"41477":1,"41478":2,"41479":1,"41480":1,"41481":1,"41482":1,"41483":1,"41484":2,"41485":1,"41486":1,"41487":2,"41488":2,"41489":2,"41490":2,"41491":2,"41492":1,"41493":1,"41494":1,"41495":1,"41496":1,"41497":2,"41498":1,"41499":2,"41500":1,"41501":2,"41502":1,"41503":2,"41504":2,"41505":2,"41506":1,"41507":1,"41508":2,"41509":2,"41510":2,"41511":1,"41512":2,"41513":2,"41514":1,"41515":1,"41516":1,"41517":1,"41518":2,"41519":2,"41520":1,"41521":1,"41522":2,"41523":2,"41524":1,"41525":1,"41526":1,"41527":2,"41528":1,"41529":1,"41530":1,"41531":2,"41532":1,"41533":1,"41534":2,"41535":2,"41536":1,"41537":2,"41538":1,"41539":2,"41540":1,"41541":2,"41542":1,"41543":2,"41544":2,"41545":2,"41546":1,"41547":1,"41548":1,"41549":1,"41550":2,"41551":2,"41552":2,"41553":2,"41554":1,"41555":1,"41556":1,"41557":1,"41558":2,"41559":1,"41560":2,"41561":2,"41562":2,"41563":1,"41564":1,"41565":2,"41566":1,"41567":2,"41568":1,"41569":2,"41570":1,"41571":1,"41572":1,"41573":2,"41574":2,"41575":2,"41576":2,"41577":1,"41578":2,"41579":1,"41580":1,"41581":1,"41582":1,"41583":2,"41584":2,"41585":2,"41586":1,"41587":1,"41588":1,"41589":1,"41590":2,"41591":1,"41592":1,"41593":1,"41594":1,"41595":2,"41596":1,"41597":1,"41598":2,"41599":2,"41600":1,"41601":1,"41602":2,"41603":1,"41604":1,"41605":1,"41606":2,"41607":2,"41608":2,"41609":1,"41610":2,"41611":1,"41612":1,"41613":2,"41614":2,"41615":1,"41616":1,"41617":1,"41618":2,"41619":1,"41620":2,"41621":2,"41622":1,"41623":1,"41624":1,"41625":2,"41626":2,"41627":2,"41628":2,"41629":2,"41630":2,"41631":1,"41632":1,"41633":1,"41634":2,"41635":2,"41636":2,"41637":1,"41638":1,"41639":2,"41640":2,"41641":2,"41642":1,"41643":2,"41644":2,"41645":1,"41646":2,"41647":2,"41648":1,"41649":1,"41650":1,"41651":1,"41652":2,"41653":2,"41654":2,"41655":2,"41656":2,"41657":2,"41658":1,"41659":1,"41660":1,"41661":1,"41662":2,"41663":1,"41664":2,"41665":2,"41666":1,"41667":2,"41668":1,"41669":2,"41670":1,"41671":2,"41672":2,"41673":1,"41674":2,"41675":2,"41676":2,"41677":2,"41678":1,"41679":1,"41680":2,"41681":2,"41682":1,"41683":2,"41684":2,"41685":1,"41686":2,"41687":1,"41688":2,"41689":2,"41690":1,"41691":1,"41692":2,"41693":2,"41694":1,"41695":2,"41696":1,"41697":1,"41698":2,"41699":1,"41700":2,"41701":1,"41702":1,"41703":1,"41704":2,"41705":2,"41706":1,"41707":1,"41708":2,"41709":2,"41710":1,"41711":2,"41712":2,"41713":2,"41714":1,"41715":2,"41716":1,"41717":1,"41718":1,"41719":1,"41720":2,"41721":2,"41722":2,"41723":1,"41724":2,"41725":1,"41726":1,"41727":1,"41728":1,"41729":1,"41730":1,"41731":2,"41732":1,"41733":1,"41734":2,"41735":2,"41736":1,"41737":2,"41738":2,"41739":2,"41740":1,"41741":2,"41742":1,"41743":1,"41744":2,"41745":1,"41746":2,"41747":1,"41748":2,"41749":2,"41750":2,"41751":2,"41752":1,"41753":2,"41754":1,"41755":1,"41756":1,"41757":2,"41758":1,"41759":2,"41760":2,"41761":2,"41762":1,"41763":2,"41764":1,"41765":2,"41766":1,"41767":2,"41768":1,"41769":1,"41770":2,"41771":1,"41772":1,"41773":2,"41774":1,"41775":1,"41776":1,"41777":2,"41778":2,"41779":1,"41780":1,"41781":2,"41782":2,"41783":1,"41784":1,"41785":1,"41786":1,"41787":1,"41788":1,"41789":2,"41790":2,"41791":1,"41792":1,"41793":1,"41794":1,"41795":1,"41796":2,"41797":1,"41798":1,"41799":2,"41800":1,"41801":2,"41802":2,"41803":1,"41804":1,"41805":1,"41806":1,"41807":2,"41808":2,"41809":1,"41810":2,"41811":2,"41812":1,"41813":2,"41814":1,"41815":1,"41816":1,"41817":2,"41818":1,"41819":1,"41820":2,"41821":2,"41822":2,"41823":2,"41824":2,"41825":1,"41826":1,"41827":1,"41828":2,"41829":1,"41830":1,"41831":1,"41832":1,"41833":1,"41834":2,"41835":2,"41836":2,"41837":2,"41838":2,"41839":1,"41840":1,"41841":1,"41842":2,"41843":2,"41844":2,"41845":1,"41846":1,"41847":1,"41848":2,"41849":1,"41850":1,"41851":1,"41852":1,"41853":1,"41854":1,"41855":2,"41856":2,"41857":2,"41858":2,"41859":1,"41860":1,"41861":1,"41862":2,"41863":1,"41864":2,"41865":2,"41866":2,"41867":1,"41868":2,"41869":1,"41870":1,"41871":1,"41872":2,"41873":2,"41874":1,"41875":1,"41876":2,"41877":2,"41878":2,"41879":2,"41880":1,"41881":2,"41882":1,"41883":2,"41884":1,"41885":2,"41886":1,"41887":2,"41888":1,"41889":2,"41890":2,"41891":1,"41892":2,"41893":1,"41894":2,"41895":1,"41896":2,"41897":2,"41898":2,"41899":2,"41900":1,"41901":2,"41902":1,"41903":2,"41904":2,"41905":2,"41906":2,"41907":2,"41908":1,"41909":1,"41910":1,"41911":2,"41912":1,"41913":1,"41914":2,"41915":2,"41916":1,"41917":2,"41918":1,"41919":1,"41920":2,"41921":1,"41922":1,"41923":2,"41924":2,"41925":1,"41926":1,"41927":1,"41928":2,"41929":1,"41930":1,"41931":2,"41932":2,"41933":2,"41934":2,"41935":2,"41936":2,"41937":2,"41938":2,"41939":1,"41940":2,"41941":1,"41942":1,"41943":2,"41944":1,"41945":2,"41946":1,"41947":2,"41948":1,"41949":1,"41950":2,"41951":1,"41952":1,"41953":2,"41954":1,"41955":2,"41956":1,"41957":2,"41958":2,"41959":2,"41960":1,"41961":1,"41962":2,"41963":1,"41964":2,"41965":1,"41966":1,"41967":1,"41968":2,"41969":1,"41970":1,"41971":2,"41972":1,"41973":2,"41974":2,"41975":2,"41976":1,"41977":2,"41978":2,"41979":2,"41980":2,"41981":2,"41982":1,"41983":2,"41984":1,"41985":2,"41986":2,"41987":1,"41988":1,"41989":2,"41990":1,"41991":2,"41992":2,"41993":1,"41994":1,"41995":2,"41996":2,"41997":1,"41998":2,"41999":1,"42000":1,"42001":1,"42002":2,"42003":2,"42004":1,"42005":2,"42006":1,"42007":1,"42008":2,"42009":2,"42010":2,"42011":2,"42012":1,"42013":1,"42014":1,"42015":1,"42016":2,"42017":2,"42018":1,"42019":1,"42020":1,"42021":1,"42022":1,"42023":1,"42024":2,"42025":2,"42026":1,"42027":2,"42028":2,"42029":2,"42030":1,"42031":1,"42032":1,"42033":1,"42034":1,"42035":1,"42036":2,"42037":2,"42038":1,"42039":2,"42040":2,"42041":1,"42042":1,"42043":2,"42044":1,"42045":1,"42046":2,"42047":2,"42048":2,"42049":1,"42050":2,"42051":1,"42052":2,"42053":2,"42054":2,"42055":2,"42056":2,"42057":1,"42058":2,"42059":1,"42060":2,"42061":1,"42062":1,"42063":1,"42064":1,"42065":2,"42066":2,"42067":1,"42068":2,"42069":1,"42070":1,"42071":2,"42072":2,"42073":1,"42074":1,"42075":1,"42076":2,"42077":1,"42078":1,"42079":1,"42080":2,"42081":1,"42082":2,"42083":1,"42084":2,"42085":2,"42086":1,"42087":2,"42088":2,"42089":2,"42090":2,"42091":2,"42092":2,"42093":2,"42094":2,"42095":1,"42096":2,"42097":1,"42098":2,"42099":2,"42100":2,"42101":2,"42102":2,"42103":1,"42104":2,"42105":2,"42106":2,"42107":1,"42108":2,"42109":2,"42110":2,"42111":2,"42112":1,"42113":2,"42114":1,"42115":2,"42116":1,"42117":2,"42118":2,"42119":1,"42120":1,"42121":1,"42122":1,"42123":1,"42124":2,"42125":2,"42126":2,"42127":2,"42128":1,"42129":1,"42130":2,"42131":1,"42132":2,"42133":1,"42134":1,"42135":2,"42136":1,"42137":2,"42138":2,"42139":1,"42140":1,"42141":1,"42142":1,"42143":2,"42144":1,"42145":2,"42146":1,"42147":2,"42148":1,"42149":1,"42150":1,"42151":2,"42152":2,"42153":1,"42154":2,"42155":1,"42156":1,"42157":2,"42158":2,"42159":1,"42160":2,"42161":2,"42162":2,"42163":2,"42164":1,"42165":1,"42166":2,"42167":1,"42168":2,"42169":2,"42170":2,"42171":2,"42172":2,"42173":2,"42174":1,"42175":1,"42176":2,"42177":1,"42178":1,"42179":1,"42180":1,"42181":1,"42182":2,"42183":2,"42184":2,"42185":1,"42186":1,"42187":1,"42188":2,"42189":2,"42190":1,"42191":1,"42192":1,"42193":1,"42194":2,"42195":1,"42196":2,"42197":1,"42198":1,"42199":2,"42200":2,"42201":2,"42202":1,"42203":1,"42204":1,"42205":1,"42206":2,"42207":1,"42208":2,"42209":2,"42210":2,"42211":2,"42212":1,"42213":2,"42214":1,"42215":1,"42216":2,"42217":1,"42218":2,"42219":2,"42220":2,"42221":2,"42222":1,"42223":2,"42224":1,"42225":1,"42226":2,"42227":2,"42228":2,"42229":1,"42230":2,"42231":1,"42232":1,"42233":2,"42234":2,"42235":2,"42236":2,"42237":1,"42238":1,"42239":2,"42240":2,"42241":1,"42242":1,"42243":2,"42244":1,"42245":2,"42246":1,"42247":2,"42248":1,"42249":2,"42250":2,"42251":1,"42252":2,"42253":2,"42254":2,"42255":2,"42256":2,"42257":2,"42258":1,"42259":2,"42260":1,"42261":1,"42262":2,"42263":1,"42264":2,"42265":1,"42266":1,"42267":1,"42268":2,"42269":1,"42270":2,"42271":2,"42272":1,"42273":2,"42274":2,"42275":1,"42276":2,"42277":2,"42278":2,"42279":1,"42280":1,"42281":2,"42282":2,"42283":1,"42284":1,"42285":1,"42286":1,"42287":2,"42288":1,"42289":2,"42290":1,"42291":1,"42292":2,"42293":2,"42294":2,"42295":2,"42296":1,"42297":2,"42298":2,"42299":1,"42300":2,"42301":2,"42302":2,"42303":2,"42304":2,"42305":1,"42306":2,"42307":2,"42308":2,"42309":1,"42310":1,"42311":1,"42312":1,"42313":2,"42314":2,"42315":1,"42316":1,"42317":2,"42318":1,"42319":2,"42320":1,"42321":2,"42322":1,"42323":2,"42324":2,"42325":2,"42326":2,"42327":2,"42328":1,"42329":1,"42330":2,"42331":1,"42332":2,"42333":1,"42334":1,"42335":1,"42336":2,"42337":2,"42338":2,"42339":2,"42340":2,"42341":2,"42342":2,"42343":1,"42344":1,"42345":2,"42346":1,"42347":2,"42348":1,"42349":2,"42350":2,"42351":1,"42352":2,"42353":2,"42354":1,"42355":1,"42356":1,"42357":2,"42358":2,"42359":2,"42360":2,"42361":1,"42362":2,"42363":2,"42364":1,"42365":1,"42366":2,"42367":1,"42368":1,"42369":1,"42370":1,"42371":2,"42372":2,"42373":1,"42374":2,"42375":1,"42376":2,"42377":2,"42378":1,"42379":2,"42380":2,"42381":1,"42382":1,"42383":2,"42384":2,"42385":1,"42386":2,"42387":1,"42388":2,"42389":2,"42390":2,"42391":2,"42392":2,"42393":2,"42394":1,"42395":1,"42396":2,"42397":1,"42398":1,"42399":2,"42400":1,"42401":1,"42402":2,"42403":1,"42404":1,"42405":2,"42406":2,"42407":1,"42408":1,"42409":2,"42410":2,"42411":2,"42412":2,"42413":1,"42414":1,"42415":1,"42416":2,"42417":1,"42418":2,"42419":2,"42420":2,"42421":2,"42422":2,"42423":1,"42424":2,"42425":2,"42426":2,"42427":2,"42428":2,"42429":2,"42430":1,"42431":1,"42432":1,"42433":2,"42434":1,"42435":1,"42436":2,"42437":2,"42438":1,"42439":2,"42440":1,"42441":1,"42442":2,"42443":2,"42444":1,"42445":2,"42446":2,"42447":1,"42448":2,"42449":1,"42450":2,"42451":2,"42452":1,"42453":1,"42454":1,"42455":2,"42456":1,"42457":1,"42458":2,"42459":1,"42460":1,"42461":2,"42462":1,"42463":1,"42464":2,"42465":2,"42466":2,"42467":2,"42468":2,"42469":2,"42470":1,"42471":1,"42472":2,"42473":1,"42474":2,"42475":2,"42476":1,"42477":2,"42478":1,"42479":2,"42480":1,"42481":2,"42482":1,"42483":2,"42484":1,"42485":1,"42486":1,"42487":1,"42488":2,"42489":1,"42490":1,"42491":2,"42492":2,"42493":2,"42494":2,"42495":2,"42496":1,"42497":1,"42498":2,"42499":2,"42500":2,"42501":2,"42502":1,"42503":2,"42504":1,"42505":2,"42506":2,"42507":1,"42508":1,"42509":1,"42510":2,"42511":1,"42512":1,"42513":2,"42514":2,"42515":1,"42516":1,"42517":2,"42518":1,"42519":2,"42520":1,"42521":2,"42522":1,"42523":1,"42524":2,"42525":1,"42526":2,"42527":1,"42528":2,"42529":1,"42530":2,"42531":1,"42532":2,"42533":1,"42534":1,"42535":2,"42536":2,"42537":1,"42538":2,"42539":2,"42540":2,"42541":2,"42542":1,"42543":1,"42544":1,"42545":1,"42546":2,"42547":1,"42548":1,"42549":1,"42550":1,"42551":2,"42552":1,"42553":1,"42554":2,"42555":1,"42556":1,"42557":2,"42558":2,"42559":2,"42560":1,"42561":1,"42562":1,"42563":1,"42564":1,"42565":2,"42566":1,"42567":2,"42568":2,"42569":1,"42570":2,"42571":1,"42572":1,"42573":1,"42574":2,"42575":2,"42576":1,"42577":2,"42578":2,"42579":1,"42580":1,"42581":2,"42582":2,"42583":2,"42584":1,"42585":1,"42586":1,"42587":2,"42588":2,"42589":2,"42590":2,"42591":2,"42592":1,"42593":2,"42594":2,"42595":1,"42596":2,"42597":2,"42598":2,"42599":2,"42600":2,"42601":2,"42602":1,"42603":1,"42604":2,"42605":2,"42606":2,"42607":2,"42608":1,"42609":2,"42610":1,"42611":1,"42612":2,"42613":2,"42614":2,"42615":1,"42616":1,"42617":2,"42618":2,"42619":2,"42620":1,"42621":1,"42622":2,"42623":1,"42624":2,"42625":2,"42626":2,"42627":2,"42628":1,"42629":1,"42630":1,"42631":1,"42632":2,"42633":2,"42634":1,"42635":2,"42636":2,"42637":1,"42638":2,"42639":2,"42640":2,"42641":1,"42642":1,"42643":2,"42644":2,"42645":1,"42646":1,"42647":2,"42648":1,"42649":1,"42650":1,"42651":1,"42652":2,"42653":2,"42654":2,"42655":2,"42656":2,"42657":2,"42658":2,"42659":1,"42660":1,"42661":1,"42662":2,"42663":1,"42664":2,"42665":2,"42666":2,"42667":2,"42668":2,"42669":2,"42670":2,"42671":2,"42672":2,"42673":2,"42674":1,"42675":2,"42676":1,"42677":2,"42678":2,"42679":1,"42680":2,"42681":1,"42682":1,"42683":1,"42684":1,"42685":1,"42686":2,"42687":1,"42688":1,"42689":1,"42690":1,"42691":1,"42692":2,"42693":1,"42694":1,"42695":2,"42696":1,"42697":2,"42698":1,"42699":2,"42700":1,"42701":1,"42702":1,"42703":1,"42704":2,"42705":1,"42706":1,"42707":2,"42708":1,"42709":1,"42710":1,"42711":1,"42712":2,"42713":2,"42714":1,"42715":2,"42716":2,"42717":2,"42718":1,"42719":2,"42720":2,"42721":1,"42722":2,"42723":1,"42724":1,"42725":2,"42726":2,"42727":2,"42728":2,"42729":2,"42730":2,"42731":2,"42732":1,"42733":1,"42734":1,"42735":2,"42736":1,"42737":1,"42738":1,"42739":1,"42740":1,"42741":1,"42742":1,"42743":1,"42744":2,"42745":1,"42746":2,"42747":2,"42748":2,"42749":1,"42750":2,"42751":2,"42752":1,"42753":2,"42754":2,"42755":1,"42756":2,"42757":1,"42758":1,"42759":2,"42760":1,"42761":1,"42762":1,"42763":2,"42764":2,"42765":2,"42766":2,"42767":1,"42768":1,"42769":2,"42770":2,"42771":1,"42772":2,"42773":2,"42774":1,"42775":2,"42776":1,"42777":1,"42778":1,"42779":1,"42780":2,"42781":1,"42782":2,"42783":1,"42784":2,"42785":1,"42786":1,"42787":1,"42788":1,"42789":1,"42790":1,"42791":2,"42792":2,"42793":2,"42794":1,"42795":1,"42796":2,"42797":1,"42798":1,"42799":1,"42800":2,"42801":2,"42802":1,"42803":1,"42804":1,"42805":1,"42806":2,"42807":1,"42808":2,"42809":2,"42810":2,"42811":2,"42812":2,"42813":2,"42814":2,"42815":1,"42816":2,"42817":2,"42818":2,"42819":1,"42820":2,"42821":1,"42822":1,"42823":2,"42824":2,"42825":2,"42826":2,"42827":1,"42828":2,"42829":1,"42830":1,"42831":1,"42832":2,"42833":1,"42834":2,"42835":1,"42836":1,"42837":1,"42838":2,"42839":1,"42840":2,"42841":1,"42842":1,"42843":1,"42844":2,"42845":2,"42846":2,"42847":2,"42848":1,"42849":2,"42850":2,"42851":1,"42852":1,"42853":2,"42854":2,"42855":1,"42856":1,"42857":2,"42858":2,"42859":1,"42860":1,"42861":2,"42862":2,"42863":1,"42864":1,"42865":1,"42866":2,"42867":1,"42868":1,"42869":2,"42870":1,"42871":2,"42872":2,"42873":1,"42874":1,"42875":1,"42876":1,"42877":2,"42878":1,"42879":2,"42880":2,"42881":1,"42882":1,"42883":1,"42884":2,"42885":2,"42886":1,"42887":2,"42888":2,"42889":1,"42890":1,"42891":2,"42892":2,"42893":2,"42894":1,"42895":2,"42896":2,"42897":2,"42898":2,"42899":1,"42900":2,"42901":1,"42902":2,"42903":1,"42904":2,"42905":1,"42906":2,"42907":2,"42908":1,"42909":1,"42910":2,"42911":1,"42912":2,"42913":2,"42914":1,"42915":2,"42916":2,"42917":1,"42918":1,"42919":1,"42920":1,"42921":1,"42922":2,"42923":2,"42924":2,"42925":1,"42926":1,"42927":2,"42928":1,"42929":2,"42930":1,"42931":2,"42932":1,"42933":2,"42934":1,"42935":2,"42936":1,"42937":1,"42938":2,"42939":2,"42940":1,"42941":2,"42942":1,"42943":1,"42944":2,"42945":2,"42946":1,"42947":1,"42948":2,"42949":2,"42950":1,"42951":2,"42952":2,"42953":1,"42954":1,"42955":1,"42956":1,"42957":2,"42958":2,"42959":1,"42960":2,"42961":1,"42962":2,"42963":2,"42964":1,"42965":2,"42966":1,"42967":2,"42968":1,"42969":1,"42970":2,"42971":1,"42972":2,"42973":2,"42974":2,"42975":1,"42976":2,"42977":1,"42978":1,"42979":1,"42980":1,"42981":2,"42982":1,"42983":2,"42984":1,"42985":1,"42986":1,"42987":1,"42988":1,"42989":1,"42990":2,"42991":1,"42992":2,"42993":2,"42994":2,"42995":1,"42996":2,"42997":2,"42998":2,"42999":1,"43000":1,"43001":1,"43002":1,"43003":1,"43004":2,"43005":1,"43006":1,"43007":1,"43008":2,"43009":1,"43010":2,"43011":1,"43012":2,"43013":2,"43014":2,"43015":2,"43016":1,"43017":2,"43018":1,"43019":1,"43020":2,"43021":1,"43022":1,"43023":2,"43024":2,"43025":2,"43026":1,"43027":2,"43028":1,"43029":2,"43030":2,"43031":2,"43032":1,"43033":2,"43034":1,"43035":1,"43036":2,"43037":2,"43038":2,"43039":1,"43040":1,"43041":1,"43042":1,"43043":1,"43044":2,"43045":2,"43046":2,"43047":2,"43048":2,"43049":2,"43050":2,"43051":1,"43052":1,"43053":1,"43054":1,"43055":2,"43056":2,"43057":2,"43058":2,"43059":1,"43060":1,"43061":1,"43062":1,"43063":2,"43064":1,"43065":2,"43066":2,"43067":1,"43068":2,"43069":2,"43070":2,"43071":2,"43072":2,"43073":1,"43074":1,"43075":1,"43076":2,"43077":1,"43078":2,"43079":2,"43080":1,"43081":1,"43082":2,"43083":1,"43084":1,"43085":1,"43086":2,"43087":2,"43088":2,"43089":1,"43090":1,"43091":2,"43092":2,"43093":1,"43094":1,"43095":1,"43096":2,"43097":1,"43098":2,"43099":2,"43100":2,"43101":1,"43102":1,"43103":1,"43104":1,"43105":2,"43106":1,"43107":1,"43108":1,"43109":2,"43110":2,"43111":2,"43112":2,"43113":2,"43114":2,"43115":2,"43116":2,"43117":2,"43118":1,"43119":2,"43120":1,"43121":1,"43122":2,"43123":1,"43124":1,"43125":2,"43126":1,"43127":2,"43128":1,"43129":1,"43130":1,"43131":2,"43132":2,"43133":1,"43134":2,"43135":2,"43136":1,"43137":1,"43138":2,"43139":1,"43140":2,"43141":1,"43142":2,"43143":2,"43144":2,"43145":2,"43146":1,"43147":2,"43148":1,"43149":1,"43150":2,"43151":1,"43152":1,"43153":1,"43154":2,"43155":1,"43156":2,"43157":1,"43158":1,"43159":1,"43160":1,"43161":1,"43162":2,"43163":2,"43164":1,"43165":1,"43166":2,"43167":1,"43168":2,"43169":2,"43170":1,"43171":2,"43172":1,"43173":1,"43174":2,"43175":2,"43176":2,"43177":2,"43178":1,"43179":1,"43180":1,"43181":2,"43182":1,"43183":2,"43184":2,"43185":1,"43186":1,"43187":1,"43188":2,"43189":2,"43190":1,"43191":2,"43192":1,"43193":1,"43194":2,"43195":1,"43196":1,"43197":2,"43198":1,"43199":1,"43200":1,"43201":2,"43202":2,"43203":1,"43204":2,"43205":1,"43206":2,"43207":2,"43208":2,"43209":1,"43210":1,"43211":1,"43212":1,"43213":2,"43214":2,"43215":1,"43216":2,"43217":2,"43218":1,"43219":2,"43220":2,"43221":1,"43222":1,"43223":2,"43224":2,"43225":1,"43226":2,"43227":1,"43228":1,"43229":1,"43230":1,"43231":1,"43232":2,"43233":2,"43234":1,"43235":2,"43236":2,"43237":1,"43238":1,"43239":1,"43240":2,"43241":2,"43242":2,"43243":1,"43244":2,"43245":1,"43246":1,"43247":1,"43248":1,"43249":1,"43250":1,"43251":1,"43252":2,"43253":1,"43254":2,"43255":2,"43256":1,"43257":2,"43258":1,"43259":2,"43260":1,"43261":1,"43262":1,"43263":1,"43264":1,"43265":1,"43266":2,"43267":2,"43268":1,"43269":2,"43270":1,"43271":2,"43272":1,"43273":2,"43274":2,"43275":2,"43276":2,"43277":1,"43278":2,"43279":1,"43280":2,"43281":2,"43282":1,"43283":2,"43284":1,"43285":2,"43286":2,"43287":1,"43288":2,"43289":2,"43290":1,"43291":1,"43292":2,"43293":1,"43294":2,"43295":2,"43296":1,"43297":2,"43298":1,"43299":2,"43300":2,"43301":1,"43302":1,"43303":2,"43304":1,"43305":2,"43306":2,"43307":2,"43308":2,"43309":2,"43310":1,"43311":1,"43312":1,"43313":2,"43314":1,"43315":1,"43316":1,"43317":1,"43318":2,"43319":1,"43320":1,"43321":1,"43322":1,"43323":2,"43324":1,"43325":1,"43326":1,"43327":2,"43328":1,"43329":2,"43330":2,"43331":1,"43332":1,"43333":2,"43334":1,"43335":2,"43336":1,"43337":2,"43338":1,"43339":1,"43340":2,"43341":1,"43342":2,"43343":2,"43344":2,"43345":1,"43346":2,"43347":1,"43348":2,"43349":2,"43350":1,"43351":1,"43352":1,"43353":2,"43354":2,"43355":2,"43356":2,"43357":2,"43358":2,"43359":2,"43360":1,"43361":1,"43362":1,"43363":1,"43364":1,"43365":2,"43366":2,"43367":1,"43368":1,"43369":2,"43370":2,"43371":2,"43372":1,"43373":1,"43374":2,"43375":2,"43376":2,"43377":1,"43378":1,"43379":2,"43380":2,"43381":1,"43382":2,"43383":1,"43384":2,"43385":1,"43386":1,"43387":1,"43388":2,"43389":1,"43390":2,"43391":1,"43392":2,"43393":2,"43394":2,"43395":1,"43396":2,"43397":1,"43398":2,"43399":2,"43400":2,"43401":2,"43402":1,"43403":1,"43404":2,"43405":1,"43406":2,"43407":2,"43408":1,"43409":1,"43410":2,"43411":2,"43412":1,"43413":2,"43414":1,"43415":1,"43416":1,"43417":1,"43418":1,"43419":1,"43420":2,"43421":2,"43422":1,"43423":1,"43424":1,"43425":2,"43426":1,"43427":1,"43428":1,"43429":2,"43430":1,"43431":2,"43432":1,"43433":2,"43434":1,"43435":2,"43436":1,"43437":2,"43438":2,"43439":1,"43440":1,"43441":2,"43442":2,"43443":2,"43444":1,"43445":1,"43446":2,"43447":1,"43448":1,"43449":2,"43450":1,"43451":2,"43452":2,"43453":1,"43454":2,"43455":1,"43456":1,"43457":2,"43458":2,"43459":1,"43460":2,"43461":2,"43462":2,"43463":1,"43464":1,"43465":2,"43466":1,"43467":1,"43468":1,"43469":2,"43470":1,"43471":1,"43472":2,"43473":1,"43474":2,"43475":1,"43476":1,"43477":1,"43478":2,"43479":2,"43480":2,"43481":2,"43482":1,"43483":1,"43484":2,"43485":1,"43486":2,"43487":1,"43488":2,"43489":1,"43490":1,"43491":2,"43492":2,"43493":2,"43494":2,"43495":2,"43496":1,"43497":2,"43498":1,"43499":1,"43500":1,"43501":1,"43502":2,"43503":1,"43504":1,"43505":1,"43506":1,"43507":2,"43508":1,"43509":1,"43510":2,"43511":2,"43512":2,"43513":1,"43514":2,"43515":1,"43516":2,"43517":2,"43518":1,"43519":1,"43520":1,"43521":1,"43522":1,"43523":2,"43524":2,"43525":2,"43526":1,"43527":2,"43528":1,"43529":1,"43530":2,"43531":2,"43532":1,"43533":2,"43534":1,"43535":1,"43536":2,"43537":1,"43538":2,"43539":2,"43540":2,"43541":1,"43542":2,"43543":2,"43544":2,"43545":2,"43546":2,"43547":2,"43548":2,"43549":2,"43550":2,"43551":1,"43552":1,"43553":1,"43554":1,"43555":2,"43556":1,"43557":2,"43558":2,"43559":1,"43560":2,"43561":1,"43562":1,"43563":2,"43564":2,"43565":2,"43566":1,"43567":2,"43568":1,"43569":2,"43570":1,"43571":2,"43572":2,"43573":1,"43574":2,"43575":2,"43576":1,"43577":2,"43578":1,"43579":1,"43580":1,"43581":2,"43582":1,"43583":2,"43584":1,"43585":1,"43586":1,"43587":2,"43588":1,"43589":1,"43590":2,"43591":2,"43592":1,"43593":1,"43594":2,"43595":2,"43596":2,"43597":2,"43598":1,"43599":2,"43600":2,"43601":1,"43602":2,"43603":1,"43604":2,"43605":1,"43606":2,"43607":1,"43608":2,"43609":2,"43610":2,"43611":1,"43612":2,"43613":1,"43614":2,"43615":1,"43616":1,"43617":2,"43618":1,"43619":2,"43620":2,"43621":2,"43622":2,"43623":1,"43624":1,"43625":1,"43626":1,"43627":2,"43628":2,"43629":2,"43630":2,"43631":2,"43632":1,"43633":1,"43634":1,"43635":1,"43636":2,"43637":2,"43638":1,"43639":2,"43640":1,"43641":1,"43642":1,"43643":2,"43644":1,"43645":1,"43646":1,"43647":1,"43648":1,"43649":1,"43650":1,"43651":1,"43652":1,"43653":1,"43654":1,"43655":1,"43656":1,"43657":2,"43658":2,"43659":2,"43660":1,"43661":2,"43662":1,"43663":2,"43664":1,"43665":2,"43666":1,"43667":2,"43668":2,"43669":1,"43670":2,"43671":2,"43672":1,"43673":2,"43674":2,"43675":1,"43676":1,"43677":2,"43678":2,"43679":2,"43680":2,"43681":2,"43682":1,"43683":2,"43684":2,"43685":1,"43686":1,"43687":1,"43688":1,"43689":2,"43690":1,"43691":1,"43692":1,"43693":2,"43694":2,"43695":1,"43696":2,"43697":2,"43698":1,"43699":1,"43700":2,"43701":2,"43702":2,"43703":2,"43704":1,"43705":2,"43706":1,"43707":2,"43708":1,"43709":2,"43710":2,"43711":2,"43712":2,"43713":2,"43714":2,"43715":2,"43716":1,"43717":2,"43718":1,"43719":1,"43720":1,"43721":1,"43722":2,"43723":1,"43724":2,"43725":1,"43726":1,"43727":2,"43728":1,"43729":1,"43730":2,"43731":1,"43732":2,"43733":2,"43734":1,"43735":1,"43736":2,"43737":2,"43738":1,"43739":2,"43740":1,"43741":2,"43742":1,"43743":1,"43744":1,"43745":2,"43746":2,"43747":1,"43748":1,"43749":1,"43750":1,"43751":1,"43752":1,"43753":1,"43754":2,"43755":1,"43756":1,"43757":2,"43758":2,"43759":1,"43760":1,"43761":2,"43762":1,"43763":2,"43764":2,"43765":2,"43766":1,"43767":1,"43768":2,"43769":1,"43770":2,"43771":2,"43772":2,"43773":2,"43774":1,"43775":2,"43776":1,"43777":1,"43778":1,"43779":1,"43780":1,"43781":1,"43782":2,"43783":2,"43784":1,"43785":2,"43786":1,"43787":1,"43788":1,"43789":2,"43790":2,"43791":2,"43792":1,"43793":1,"43794":1,"43795":2,"43796":1,"43797":2,"43798":2,"43799":1,"43800":1,"43801":2,"43802":1,"43803":2,"43804":1,"43805":2,"43806":1,"43807":2,"43808":2,"43809":2,"43810":2,"43811":1,"43812":1,"43813":1,"43814":1,"43815":2,"43816":2,"43817":2,"43818":1,"43819":1,"43820":1,"43821":2,"43822":2,"43823":2,"43824":2,"43825":1,"43826":2,"43827":2,"43828":2,"43829":2,"43830":2,"43831":2,"43832":2,"43833":2,"43834":1,"43835":1,"43836":1,"43837":1,"43838":2,"43839":1,"43840":2,"43841":2,"43842":1,"43843":2,"43844":2,"43845":1,"43846":2,"43847":1,"43848":1,"43849":1,"43850":1,"43851":2,"43852":2,"43853":2,"43854":2,"43855":2,"43856":2,"43857":2,"43858":2,"43859":1,"43860":2,"43861":1,"43862":2,"43863":1,"43864":1,"43865":1,"43866":2,"43867":2,"43868":2,"43869":2,"43870":1,"43871":1,"43872":1,"43873":2,"43874":2,"43875":1,"43876":1,"43877":1,"43878":2,"43879":1,"43880":1,"43881":1,"43882":2,"43883":2,"43884":2,"43885":2,"43886":2,"43887":1,"43888":1,"43889":2,"43890":2,"43891":1,"43892":1,"43893":1,"43894":1,"43895":1,"43896":2,"43897":2,"43898":2,"43899":1,"43900":1,"43901":2,"43902":1,"43903":1,"43904":2,"43905":2,"43906":1,"43907":2,"43908":2,"43909":2,"43910":2,"43911":2,"43912":1,"43913":1,"43914":1,"43915":1,"43916":1,"43917":1,"43918":1,"43919":2,"43920":1,"43921":1,"43922":1,"43923":2,"43924":2,"43925":2,"43926":1,"43927":1,"43928":2,"43929":1,"43930":1,"43931":1,"43932":2,"43933":1,"43934":1,"43935":1,"43936":2,"43937":2,"43938":1,"43939":1,"43940":2,"43941":1,"43942":1,"43943":2,"43944":2,"43945":1,"43946":2,"43947":2,"43948":2,"43949":2,"43950":2,"43951":2,"43952":1,"43953":2,"43954":1,"43955":1,"43956":1,"43957":1,"43958":1,"43959":1,"43960":1,"43961":1,"43962":1,"43963":2,"43964":2,"43965":2,"43966":1,"43967":2,"43968":1,"43969":1,"43970":1,"43971":1,"43972":2,"43973":1,"43974":1,"43975":2,"43976":2,"43977":2,"43978":1,"43979":1,"43980":1,"43981":2,"43982":2,"43983":2,"43984":1,"43985":2,"43986":1,"43987":2,"43988":1,"43989":2,"43990":1,"43991":1,"43992":2,"43993":2,"43994":1,"43995":2,"43996":2,"43997":2,"43998":1,"43999":1,"44000":1,"44001":2,"44002":1,"44003":2,"44004":1,"44005":1,"44006":1,"44007":1,"44008":1,"44009":1,"44010":1,"44011":1,"44012":2,"44013":1,"44014":1,"44015":2,"44016":1,"44017":1,"44018":2,"44019":1,"44020":1,"44021":1,"44022":2,"44023":2,"44024":2,"44025":1,"44026":2,"44027":2,"44028":1,"44029":1,"44030":1,"44031":1,"44032":2,"44033":1,"44034":2,"44035":1,"44036":1,"44037":2,"44038":1,"44039":1,"44040":2,"44041":1,"44042":1,"44043":2,"44044":1,"44045":1,"44046":2,"44047":1,"44048":2,"44049":2,"44050":2,"44051":1,"44052":2,"44053":2,"44054":2,"44055":1,"44056":2,"44057":2,"44058":2,"44059":1,"44060":1,"44061":1,"44062":2,"44063":2,"44064":2,"44065":1,"44066":2,"44067":1,"44068":1,"44069":1,"44070":2,"44071":1,"44072":1,"44073":1,"44074":1,"44075":1,"44076":2,"44077":2,"44078":2,"44079":2,"44080":2,"44081":2,"44082":1,"44083":1,"44084":2,"44085":1,"44086":1,"44087":2,"44088":2,"44089":1,"44090":1,"44091":2,"44092":1,"44093":1,"44094":2,"44095":2,"44096":2,"44097":1,"44098":2,"44099":2,"44100":2,"44101":2,"44102":2,"44103":2,"44104":1,"44105":1,"44106":1,"44107":1,"44108":1,"44109":1,"44110":2,"44111":2,"44112":1,"44113":2,"44114":2,"44115":1,"44116":2,"44117":2,"44118":2,"44119":2,"44120":2,"44121":1,"44122":1,"44123":2,"44124":2,"44125":2,"44126":2,"44127":2,"44128":2,"44129":1,"44130":1,"44131":2,"44132":2,"44133":1,"44134":2,"44135":1,"44136":2,"44137":2,"44138":2,"44139":2,"44140":2,"44141":1,"44142":1,"44143":2,"44144":1,"44145":2,"44146":1,"44147":1,"44148":1,"44149":2,"44150":2,"44151":1,"44152":1,"44153":1,"44154":2,"44155":1,"44156":1,"44157":2,"44158":1,"44159":2,"44160":2,"44161":2,"44162":2,"44163":1,"44164":1,"44165":2,"44166":2,"44167":2,"44168":2,"44169":2,"44170":2,"44171":1,"44172":2,"44173":2,"44174":1,"44175":1,"44176":1,"44177":2,"44178":1,"44179":1,"44180":2,"44181":1,"44182":2,"44183":1,"44184":1,"44185":1,"44186":2,"44187":2,"44188":2,"44189":1,"44190":1,"44191":1,"44192":1,"44193":2,"44194":2,"44195":2,"44196":1,"44197":2,"44198":1,"44199":2,"44200":2,"44201":1,"44202":2,"44203":2,"44204":2,"44205":1,"44206":1,"44207":2,"44208":2,"44209":1,"44210":2,"44211":1,"44212":2,"44213":1,"44214":1,"44215":2,"44216":2,"44217":2,"44218":2,"44219":1,"44220":1,"44221":2,"44222":1,"44223":2,"44224":1,"44225":2,"44226":2,"44227":2,"44228":2,"44229":1,"44230":1,"44231":1,"44232":1,"44233":2,"44234":2,"44235":2,"44236":2,"44237":2,"44238":1,"44239":2,"44240":2,"44241":2,"44242":1,"44243":1,"44244":1,"44245":1,"44246":2,"44247":2,"44248":1,"44249":2,"44250":2,"44251":2,"44252":2,"44253":2,"44254":2,"44255":2,"44256":2,"44257":1,"44258":2,"44259":1,"44260":2,"44261":1,"44262":2,"44263":1,"44264":2,"44265":1,"44266":2,"44267":1,"44268":1,"44269":2,"44270":2,"44271":1,"44272":1,"44273":2,"44274":2,"44275":2,"44276":1,"44277":2,"44278":2,"44279":1,"44280":1,"44281":2,"44282":2,"44283":2,"44284":2,"44285":1,"44286":2,"44287":2,"44288":1,"44289":2,"44290":1,"44291":1,"44292":2,"44293":2,"44294":2,"44295":1,"44296":1,"44297":1,"44298":2,"44299":1,"44300":2,"44301":1,"44302":1,"44303":1,"44304":2,"44305":2,"44306":1,"44307":2,"44308":1,"44309":2,"44310":1,"44311":2,"44312":2,"44313":1,"44314":2,"44315":1,"44316":2,"44317":1,"44318":2,"44319":2,"44320":1,"44321":1,"44322":2,"44323":1,"44324":1,"44325":1,"44326":1,"44327":2,"44328":2,"44329":1,"44330":2,"44331":2,"44332":2,"44333":1,"44334":1,"44335":2,"44336":2,"44337":2,"44338":1,"44339":1,"44340":1,"44341":1,"44342":1,"44343":2,"44344":2,"44345":1,"44346":2,"44347":2,"44348":1,"44349":2,"44350":1,"44351":1,"44352":2,"44353":2,"44354":2,"44355":2,"44356":2,"44357":1,"44358":1,"44359":1,"44360":1,"44361":2,"44362":1,"44363":1,"44364":2,"44365":2,"44366":2,"44367":2,"44368":2,"44369":2,"44370":2,"44371":2,"44372":1,"44373":1,"44374":1,"44375":1,"44376":1,"44377":1,"44378":2,"44379":1,"44380":1,"44381":1,"44382":2,"44383":1,"44384":1,"44385":2,"44386":1,"44387":1,"44388":1,"44389":1,"44390":1,"44391":1,"44392":2,"44393":2,"44394":2,"44395":2,"44396":2,"44397":2,"44398":2,"44399":1,"44400":2,"44401":1,"44402":2,"44403":1,"44404":2,"44405":1,"44406":2,"44407":1,"44408":2,"44409":1,"44410":1,"44411":1,"44412":2,"44413":2,"44414":2,"44415":2,"44416":2,"44417":2,"44418":2,"44419":1,"44420":2,"44421":2,"44422":2,"44423":1,"44424":2,"44425":1,"44426":1,"44427":2,"44428":2,"44429":2,"44430":2,"44431":2,"44432":1,"44433":1,"44434":2,"44435":1,"44436":1,"44437":1,"44438":2,"44439":1,"44440":2,"44441":2,"44442":2,"44443":1,"44444":1,"44445":1,"44446":1,"44447":2,"44448":2,"44449":2,"44450":1,"44451":2,"44452":2,"44453":2,"44454":2,"44455":1,"44456":2,"44457":1,"44458":2,"44459":1,"44460":2,"44461":1,"44462":2,"44463":2,"44464":2,"44465":1,"44466":2,"44467":2,"44468":2,"44469":1,"44470":1,"44471":2,"44472":1,"44473":1,"44474":2,"44475":2,"44476":2,"44477":1,"44478":2,"44479":2,"44480":1,"44481":2,"44482":1,"44483":1,"44484":2,"44485":2,"44486":2,"44487":2,"44488":2,"44489":2,"44490":2,"44491":2,"44492":2,"44493":1,"44494":2,"44495":2,"44496":1,"44497":2,"44498":2,"44499":2,"44500":2,"44501":2,"44502":2,"44503":2,"44504":2,"44505":2,"44506":1,"44507":1,"44508":2,"44509":1,"44510":1,"44511":2,"44512":1,"44513":1,"44514":1,"44515":2,"44516":1,"44517":2,"44518":1,"44519":2,"44520":2,"44521":1,"44522":2,"44523":2,"44524":2,"44525":1,"44526":1,"44527":1,"44528":1,"44529":1,"44530":2,"44531":1,"44532":1,"44533":1,"44534":1,"44535":1,"44536":2,"44537":2,"44538":1,"44539":1,"44540":2,"44541":2,"44542":2,"44543":2,"44544":1,"44545":1,"44546":1,"44547":1,"44548":2,"44549":2,"44550":1,"44551":2,"44552":2,"44553":2,"44554":1,"44555":2,"44556":1,"44557":2,"44558":2,"44559":1,"44560":1,"44561":2,"44562":2,"44563":2,"44564":2,"44565":2,"44566":2,"44567":1,"44568":2,"44569":2,"44570":2,"44571":2,"44572":2,"44573":2,"44574":1,"44575":2,"44576":2,"44577":1,"44578":2,"44579":2,"44580":1,"44581":2,"44582":1,"44583":1,"44584":2,"44585":1,"44586":2,"44587":1,"44588":2,"44589":2,"44590":2,"44591":1,"44592":1,"44593":2,"44594":2,"44595":1,"44596":1,"44597":1,"44598":1,"44599":2,"44600":2,"44601":2,"44602":2,"44603":2,"44604":1,"44605":1,"44606":2,"44607":2,"44608":1,"44609":2,"44610":2,"44611":2,"44612":1,"44613":2,"44614":1,"44615":1,"44616":2,"44617":2,"44618":2,"44619":2,"44620":1,"44621":1,"44622":1,"44623":1,"44624":2,"44625":1,"44626":2,"44627":2,"44628":1,"44629":2,"44630":2,"44631":2,"44632":2,"44633":2,"44634":1,"44635":1,"44636":2,"44637":1,"44638":2,"44639":2,"44640":2,"44641":1,"44642":1,"44643":1,"44644":1,"44645":1,"44646":2,"44647":1,"44648":2,"44649":2,"44650":1,"44651":1,"44652":2,"44653":1,"44654":2,"44655":2,"44656":1,"44657":1,"44658":1,"44659":2,"44660":2,"44661":1,"44662":1,"44663":2,"44664":2,"44665":2,"44666":2,"44667":1,"44668":1,"44669":1,"44670":1,"44671":2,"44672":1,"44673":1,"44674":1,"44675":2,"44676":2,"44677":2,"44678":1,"44679":1,"44680":2,"44681":1,"44682":2,"44683":1,"44684":1,"44685":2,"44686":1,"44687":1,"44688":2,"44689":2,"44690":2,"44691":2,"44692":2,"44693":2,"44694":1,"44695":2,"44696":2,"44697":2,"44698":2,"44699":2,"44700":1,"44701":2,"44702":2,"44703":2,"44704":2,"44705":2,"44706":1,"44707":1,"44708":2,"44709":1,"44710":2,"44711":2,"44712":2,"44713":2,"44714":2,"44715":1,"44716":1,"44717":2,"44718":1,"44719":1,"44720":1,"44721":1,"44722":1,"44723":1,"44724":1,"44725":2,"44726":1,"44727":2,"44728":2,"44729":1,"44730":1,"44731":2,"44732":2,"44733":1,"44734":2,"44735":1,"44736":1,"44737":2,"44738":1,"44739":2,"44740":1,"44741":1,"44742":2,"44743":2,"44744":1,"44745":1,"44746":2,"44747":2,"44748":1,"44749":2,"44750":1,"44751":1,"44752":1,"44753":2,"44754":2,"44755":1,"44756":2,"44757":1,"44758":2,"44759":2,"44760":1,"44761":2,"44762":2,"44763":1,"44764":1,"44765":1,"44766":2,"44767":2,"44768":1,"44769":2,"44770":2,"44771":2,"44772":2,"44773":1,"44774":2,"44775":2,"44776":2,"44777":2,"44778":2,"44779":2,"44780":1,"44781":1,"44782":2,"44783":1,"44784":1,"44785":2,"44786":1,"44787":2,"44788":1,"44789":1,"44790":2,"44791":1,"44792":2,"44793":1,"44794":1,"44795":2,"44796":2,"44797":2,"44798":2,"44799":1,"44800":1,"44801":2,"44802":2,"44803":2,"44804":2,"44805":1,"44806":2,"44807":1,"44808":1,"44809":1,"44810":2,"44811":2,"44812":2,"44813":2,"44814":2,"44815":1,"44816":1,"44817":2,"44818":1,"44819":1,"44820":1,"44821":2,"44822":2,"44823":1,"44824":2,"44825":2,"44826":2,"44827":1,"44828":1,"44829":2,"44830":2,"44831":1,"44832":1,"44833":1,"44834":1,"44835":1,"44836":2,"44837":1,"44838":2,"44839":1,"44840":1,"44841":1,"44842":2,"44843":1,"44844":1,"44845":1,"44846":2,"44847":2,"44848":1,"44849":1,"44850":1,"44851":1,"44852":1,"44853":2,"44854":1,"44855":1,"44856":1,"44857":1,"44858":2,"44859":2,"44860":2,"44861":1,"44862":1,"44863":1,"44864":1,"44865":2,"44866":1,"44867":1,"44868":2,"44869":2,"44870":2,"44871":2,"44872":1,"44873":1,"44874":1,"44875":1,"44876":1,"44877":1,"44878":1,"44879":1,"44880":2,"44881":1,"44882":1,"44883":1,"44884":1,"44885":1,"44886":2,"44887":1,"44888":2,"44889":2,"44890":1,"44891":2,"44892":2,"44893":2,"44894":1,"44895":2,"44896":1,"44897":2,"44898":2,"44899":1,"44900":2,"44901":1,"44902":1,"44903":1,"44904":1,"44905":2,"44906":1,"44907":1,"44908":1,"44909":1,"44910":1,"44911":1,"44912":1,"44913":2,"44914":2,"44915":1,"44916":1,"44917":1,"44918":1,"44919":2,"44920":2,"44921":1,"44922":2,"44923":2,"44924":1,"44925":1,"44926":1,"44927":2,"44928":2,"44929":1,"44930":1,"44931":2,"44932":1,"44933":1,"44934":2,"44935":1,"44936":2,"44937":1,"44938":2,"44939":1,"44940":2,"44941":2,"44942":1,"44943":1,"44944":1,"44945":2,"44946":2,"44947":1,"44948":2,"44949":1,"44950":2,"44951":1,"44952":1,"44953":2,"44954":2,"44955":1,"44956":2,"44957":2,"44958":1,"44959":1,"44960":2,"44961":2,"44962":2,"44963":2,"44964":1,"44965":1,"44966":1,"44967":1,"44968":2,"44969":2,"44970":1,"44971":2,"44972":2,"44973":1,"44974":1,"44975":2,"44976":1,"44977":1,"44978":2,"44979":2,"44980":1,"44981":1,"44982":1,"44983":2,"44984":2,"44985":1,"44986":2,"44987":2,"44988":2,"44989":2,"44990":2,"44991":1,"44992":1,"44993":1,"44994":1,"44995":1,"44996":2,"44997":2,"44998":1,"44999":2,"45000":2,"45001":2,"45002":1,"45003":1,"45004":1,"45005":1,"45006":1,"45007":2,"45008":2,"45009":2,"45010":2,"45011":1,"45012":2,"45013":2,"45014":2,"45015":2,"45016":2,"45017":2,"45018":2,"45019":2,"45020":2,"45021":2,"45022":1,"45023":2,"45024":2,"45025":2,"45026":2,"45027":1,"45028":2,"45029":1,"45030":1,"45031":2,"45032":1,"45033":1,"45034":2,"45035":1,"45036":2,"45037":2,"45038":1,"45039":2,"45040":2,"45041":1,"45042":2,"45043":1,"45044":1,"45045":1,"45046":2,"45047":2,"45048":1,"45049":1,"45050":1,"45051":1,"45052":2,"45053":1,"45054":1,"45055":2,"45056":2,"45057":1,"45058":2,"45059":2,"45060":1,"45061":1,"45062":2,"45063":2,"45064":1,"45065":1,"45066":1,"45067":2,"45068":2,"45069":1,"45070":1,"45071":1,"45072":2,"45073":2,"45074":2,"45075":1,"45076":2,"45077":2,"45078":1,"45079":2,"45080":1,"45081":1,"45082":1,"45083":2,"45084":2,"45085":2,"45086":2,"45087":1,"45088":2,"45089":1,"45090":2,"45091":2,"45092":2,"45093":2,"45094":1,"45095":2,"45096":2,"45097":1,"45098":2,"45099":2,"45100":2,"45101":2,"45102":2,"45103":1,"45104":1,"45105":2,"45106":1,"45107":1,"45108":1,"45109":1,"45110":1,"45111":1,"45112":2,"45113":1,"45114":2,"45115":2,"45116":2,"45117":2,"45118":1,"45119":2,"45120":2,"45121":1,"45122":1,"45123":2,"45124":2,"45125":1,"45126":2,"45127":2,"45128":2,"45129":1,"45130":2,"45131":2,"45132":1,"45133":1,"45134":1,"45135":2,"45136":1,"45137":2,"45138":1,"45139":1,"45140":2,"45141":2,"45142":2,"45143":2,"45144":1,"45145":1,"45146":2,"45147":2,"45148":2,"45149":1,"45150":1,"45151":1,"45152":2,"45153":1,"45154":1,"45155":1,"45156":1,"45157":2,"45158":1,"45159":1,"45160":1,"45161":2,"45162":2,"45163":1,"45164":2,"45165":1,"45166":2,"45167":2,"45168":1,"45169":1,"45170":2,"45171":1,"45172":1,"45173":1,"45174":2,"45175":2,"45176":1,"45177":2,"45178":1,"45179":1,"45180":2,"45181":1,"45182":2,"45183":2,"45184":1,"45185":2,"45186":1,"45187":1,"45188":2,"45189":2,"45190":1,"45191":1,"45192":1,"45193":2,"45194":1,"45195":2,"45196":2,"45197":1,"45198":2,"45199":2,"45200":2,"45201":1,"45202":2,"45203":1,"45204":1,"45205":2,"45206":1,"45207":1,"45208":2,"45209":2,"45210":2,"45211":1,"45212":2,"45213":2,"45214":2,"45215":2,"45216":2,"45217":2,"45218":2,"45219":2,"45220":1,"45221":1,"45222":1,"45223":2,"45224":1,"45225":2,"45226":2,"45227":1,"45228":1,"45229":1,"45230":2,"45231":2,"45232":1,"45233":2,"45234":2,"45235":2,"45236":1,"45237":1,"45238":2,"45239":2,"45240":1,"45241":2,"45242":1,"45243":1,"45244":2,"45245":2,"45246":1,"45247":2,"45248":2,"45249":1,"45250":1,"45251":1,"45252":1,"45253":1,"45254":1,"45255":1,"45256":1,"45257":1,"45258":2,"45259":2,"45260":1,"45261":2,"45262":1,"45263":2,"45264":1,"45265":1,"45266":2,"45267":2,"45268":1,"45269":2,"45270":1,"45271":1,"45272":2,"45273":2,"45274":1,"45275":2,"45276":1,"45277":1,"45278":2,"45279":1,"45280":2,"45281":1,"45282":2,"45283":1,"45284":2,"45285":2,"45286":2,"45287":1,"45288":1,"45289":1,"45290":1,"45291":2,"45292":2,"45293":1,"45294":1,"45295":2,"45296":1,"45297":1,"45298":1,"45299":2,"45300":2,"45301":1,"45302":1,"45303":2,"45304":2,"45305":2,"45306":1,"45307":1,"45308":2,"45309":1,"45310":2,"45311":1,"45312":2,"45313":1,"45314":2,"45315":2,"45316":1,"45317":2,"45318":2,"45319":1,"45320":2,"45321":2,"45322":1,"45323":2,"45324":1,"45325":1,"45326":2,"45327":1,"45328":1,"45329":1,"45330":1,"45331":1,"45332":1,"45333":1,"45334":2,"45335":2,"45336":1,"45337":2,"45338":1,"45339":2,"45340":1,"45341":2,"45342":1,"45343":2,"45344":2,"45345":2,"45346":1,"45347":1,"45348":1,"45349":1,"45350":2,"45351":2,"45352":2,"45353":2,"45354":2,"45355":2,"45356":2,"45357":1,"45358":2,"45359":2,"45360":2,"45361":1,"45362":2,"45363":1,"45364":1,"45365":2,"45366":2,"45367":1,"45368":1,"45369":2,"45370":2,"45371":1,"45372":2,"45373":2,"45374":2,"45375":2,"45376":1,"45377":1,"45378":1,"45379":1,"45380":1,"45381":1,"45382":2,"45383":2,"45384":1,"45385":1,"45386":2,"45387":1,"45388":1,"45389":2,"45390":1,"45391":1,"45392":2,"45393":2,"45394":1,"45395":1,"45396":2,"45397":2,"45398":2,"45399":2,"45400":1,"45401":1,"45402":1,"45403":2,"45404":1,"45405":2,"45406":1,"45407":1,"45408":1,"45409":1,"45410":1,"45411":1,"45412":1,"45413":2,"45414":1,"45415":2,"45416":1,"45417":1,"45418":2,"45419":1,"45420":1,"45421":1,"45422":1,"45423":1,"45424":1,"45425":1,"45426":2,"45427":1,"45428":1,"45429":1,"45430":2,"45431":2,"45432":2,"45433":1,"45434":2,"45435":1,"45436":2,"45437":2,"45438":1,"45439":1,"45440":1,"45441":1,"45442":1,"45443":1,"45444":1,"45445":1,"45446":2,"45447":1,"45448":1,"45449":1,"45450":1,"45451":1,"45452":1,"45453":2,"45454":1,"45455":1,"45456":1,"45457":1,"45458":2,"45459":1,"45460":2,"45461":2,"45462":1,"45463":1,"45464":1,"45465":1,"45466":2,"45467":2,"45468":1,"45469":2,"45470":2,"45471":2,"45472":1,"45473":1,"45474":2,"45475":2,"45476":1,"45477":2,"45478":2,"45479":2,"45480":1,"45481":2,"45482":1,"45483":1,"45484":1,"45485":2,"45486":1,"45487":1,"45488":2,"45489":2,"45490":2,"45491":1,"45492":2,"45493":2,"45494":2,"45495":1,"45496":1,"45497":2,"45498":2,"45499":2,"45500":2,"45501":1,"45502":1,"45503":1,"45504":2,"45505":2,"45506":1,"45507":2,"45508":1,"45509":2,"45510":1,"45511":2,"45512":2,"45513":1,"45514":1,"45515":2,"45516":1,"45517":2,"45518":2,"45519":2,"45520":2,"45521":1,"45522":1,"45523":1,"45524":1,"45525":1,"45526":2,"45527":2,"45528":1,"45529":2,"45530":2,"45531":1,"45532":2,"45533":1,"45534":2,"45535":2,"45536":2,"45537":2,"45538":2,"45539":2,"45540":2,"45541":2,"45542":1,"45543":1,"45544":1,"45545":2,"45546":2,"45547":2,"45548":2,"45549":2,"45550":2,"45551":1,"45552":2,"45553":1,"45554":1,"45555":1,"45556":2,"45557":1,"45558":1,"45559":1,"45560":1,"45561":2,"45562":1,"45563":1,"45564":2,"45565":1,"45566":1,"45567":2,"45568":2,"45569":1,"45570":1,"45571":1,"45572":2,"45573":1,"45574":2,"45575":2,"45576":1,"45577":1,"45578":1,"45579":1,"45580":1,"45581":2,"45582":1,"45583":1,"45584":1,"45585":2,"45586":2,"45587":1,"45588":2,"45589":1,"45590":2,"45591":2,"45592":1,"45593":2,"45594":2,"45595":2,"45596":2,"45597":2,"45598":2,"45599":1,"45600":2,"45601":1,"45602":2,"45603":2,"45604":1,"45605":2,"45606":2,"45607":2,"45608":2,"45609":1,"45610":2,"45611":2,"45612":1,"45613":1,"45614":1,"45615":2,"45616":1,"45617":2,"45618":1,"45619":2,"45620":1,"45621":1,"45622":1,"45623":1,"45624":1,"45625":1,"45626":1,"45627":1,"45628":1,"45629":1,"45630":1,"45631":2,"45632":2,"45633":1,"45634":2,"45635":1,"45636":2,"45637":1,"45638":1,"45639":2,"45640":1,"45641":1,"45642":2,"45643":2,"45644":2,"45645":1,"45646":2,"45647":1,"45648":1,"45649":1,"45650":2,"45651":1,"45652":2,"45653":1,"45654":2,"45655":2,"45656":2,"45657":1,"45658":2,"45659":2,"45660":1,"45661":1,"45662":1,"45663":1,"45664":1,"45665":1,"45666":1,"45667":1,"45668":2,"45669":2,"45670":1,"45671":1,"45672":2,"45673":1,"45674":1,"45675":1,"45676":2,"45677":1,"45678":1,"45679":1,"45680":1,"45681":1,"45682":2,"45683":1,"45684":2,"45685":1,"45686":1,"45687":2,"45688":1,"45689":1,"45690":1,"45691":2,"45692":2,"45693":1,"45694":1,"45695":2,"45696":2,"45697":1,"45698":2,"45699":1,"45700":1,"45701":2,"45702":2,"45703":2,"45704":2,"45705":1,"45706":1,"45707":2,"45708":2,"45709":2,"45710":2,"45711":2,"45712":2,"45713":2,"45714":1,"45715":1,"45716":2,"45717":2,"45718":1,"45719":1,"45720":2,"45721":2,"45722":2,"45723":1,"45724":2,"45725":2,"45726":1,"45727":1,"45728":2,"45729":1,"45730":2,"45731":2,"45732":2,"45733":2,"45734":1,"45735":1,"45736":2,"45737":2,"45738":2,"45739":2,"45740":2,"45741":2,"45742":2,"45743":1,"45744":1,"45745":2,"45746":2,"45747":1,"45748":2,"45749":2,"45750":1,"45751":2,"45752":1,"45753":2,"45754":2,"45755":2,"45756":2,"45757":2,"45758":2,"45759":2,"45760":2,"45761":2,"45762":2,"45763":1,"45764":1,"45765":2,"45766":1,"45767":2,"45768":2,"45769":2,"45770":1,"45771":1,"45772":2,"45773":1,"45774":1,"45775":2,"45776":1,"45777":1,"45778":2,"45779":1,"45780":1,"45781":2,"45782":2,"45783":1,"45784":1,"45785":2,"45786":2,"45787":1,"45788":1,"45789":1,"45790":1,"45791":2,"45792":1,"45793":1,"45794":2,"45795":2,"45796":1,"45797":2,"45798":1,"45799":1,"45800":2,"45801":2,"45802":1,"45803":1,"45804":1,"45805":1,"45806":1,"45807":1,"45808":1,"45809":2,"45810":1,"45811":1,"45812":1,"45813":1,"45814":1,"45815":2,"45816":2,"45817":2,"45818":2,"45819":2,"45820":1,"45821":1,"45822":1,"45823":1,"45824":2,"45825":2,"45826":2,"45827":1,"45828":2,"45829":1,"45830":2,"45831":2,"45832":1,"45833":1,"45834":2,"45835":2,"45836":2,"45837":2,"45838":1,"45839":2,"45840":1,"45841":2,"45842":2,"45843":1,"45844":1,"45845":1,"45846":2,"45847":1,"45848":2,"45849":2,"45850":1,"45851":1,"45852":1,"45853":1,"45854":1,"45855":1,"45856":1,"45857":1,"45858":1,"45859":2,"45860":2,"45861":1,"45862":1,"45863":1,"45864":1,"45865":2,"45866":2,"45867":1,"45868":2,"45869":1,"45870":2,"45871":1,"45872":2,"45873":1,"45874":1,"45875":2,"45876":2,"45877":1,"45878":2,"45879":2,"45880":2,"45881":2,"45882":1,"45883":1,"45884":2,"45885":1,"45886":2,"45887":2,"45888":2,"45889":1,"45890":1,"45891":2,"45892":2,"45893":2,"45894":2,"45895":1,"45896":1,"45897":2,"45898":1,"45899":1,"45900":2,"45901":2,"45902":1,"45903":2,"45904":1,"45905":1,"45906":2,"45907":2,"45908":2,"45909":2,"45910":1,"45911":1,"45912":2,"45913":2,"45914":2,"45915":1,"45916":2,"45917":2,"45918":2,"45919":2,"45920":1,"45921":2,"45922":2,"45923":1,"45924":1,"45925":1,"45926":1,"45927":1,"45928":2,"45929":2,"45930":1,"45931":2,"45932":2,"45933":1,"45934":2,"45935":2,"45936":2,"45937":2,"45938":1,"45939":1,"45940":2,"45941":2,"45942":1,"45943":1,"45944":1,"45945":1,"45946":2,"45947":2,"45948":1,"45949":2,"45950":1,"45951":1,"45952":2,"45953":2,"45954":2,"45955":1,"45956":2,"45957":1,"45958":1,"45959":1,"45960":1,"45961":1,"45962":2,"45963":1,"45964":1,"45965":2,"45966":2,"45967":2,"45968":1,"45969":2,"45970":1,"45971":1,"45972":2,"45973":2,"45974":1,"45975":2,"45976":2,"45977":1,"45978":1,"45979":2,"45980":2,"45981":1,"45982":1,"45983":1,"45984":2,"45985":1,"45986":1,"45987":1,"45988":1,"45989":2,"45990":2,"45991":1,"45992":2,"45993":1,"45994":2,"45995":1,"45996":1,"45997":1,"45998":2,"45999":2,"46000":2,"46001":2,"46002":1,"46003":1,"46004":2,"46005":2,"46006":2,"46007":2,"46008":2,"46009":2,"46010":1,"46011":2,"46012":1,"46013":1,"46014":1,"46015":1,"46016":1,"46017":2,"46018":1,"46019":2,"46020":1,"46021":2,"46022":1,"46023":2,"46024":1,"46025":2,"46026":1,"46027":1,"46028":1,"46029":2,"46030":1,"46031":1,"46032":2,"46033":1,"46034":2,"46035":2,"46036":2,"46037":1,"46038":1,"46039":1,"46040":2,"46041":1,"46042":1,"46043":2,"46044":2,"46045":1,"46046":2,"46047":1,"46048":1,"46049":1,"46050":1,"46051":1,"46052":1,"46053":1,"46054":2,"46055":1,"46056":2,"46057":1,"46058":2,"46059":2,"46060":1,"46061":1,"46062":1,"46063":2,"46064":2,"46065":2,"46066":1,"46067":1,"46068":2,"46069":2,"46070":1,"46071":1,"46072":2,"46073":1,"46074":2,"46075":1,"46076":1,"46077":2,"46078":1,"46079":1,"46080":2,"46081":1,"46082":2,"46083":2,"46084":2,"46085":2,"46086":1,"46087":1,"46088":1,"46089":1,"46090":2,"46091":1,"46092":1,"46093":2,"46094":2,"46095":2,"46096":2,"46097":1,"46098":2,"46099":1,"46100":2,"46101":2,"46102":2,"46103":2,"46104":2,"46105":2,"46106":1,"46107":2,"46108":1,"46109":2,"46110":1,"46111":1,"46112":2,"46113":2,"46114":2,"46115":2,"46116":2,"46117":2,"46118":1,"46119":1,"46120":1,"46121":1,"46122":2,"46123":2,"46124":1,"46125":1,"46126":1,"46127":1,"46128":1,"46129":2,"46130":1,"46131":1,"46132":1,"46133":2,"46134":2,"46135":2,"46136":1,"46137":1,"46138":1,"46139":2,"46140":2,"46141":2,"46142":1,"46143":1,"46144":1,"46145":2,"46146":2,"46147":2,"46148":1,"46149":1,"46150":1,"46151":1,"46152":1,"46153":2,"46154":1,"46155":2,"46156":1,"46157":2,"46158":1,"46159":2,"46160":1,"46161":1,"46162":2,"46163":1,"46164":1,"46165":2,"46166":1,"46167":1,"46168":1,"46169":1,"46170":1,"46171":2,"46172":2,"46173":2,"46174":2,"46175":1,"46176":1,"46177":2,"46178":2,"46179":1,"46180":1,"46181":1,"46182":2,"46183":1,"46184":2,"46185":1,"46186":1,"46187":1,"46188":1,"46189":2,"46190":2,"46191":1,"46192":1,"46193":2,"46194":2,"46195":1,"46196":1,"46197":1,"46198":1,"46199":2,"46200":1,"46201":2,"46202":1,"46203":1,"46204":2,"46205":1,"46206":1,"46207":2,"46208":2,"46209":2,"46210":2,"46211":2,"46212":2,"46213":2,"46214":1,"46215":2,"46216":2,"46217":1,"46218":1,"46219":2,"46220":1,"46221":2,"46222":1,"46223":1,"46224":2,"46225":2,"46226":2,"46227":1,"46228":1,"46229":2,"46230":2,"46231":2,"46232":1,"46233":1,"46234":1,"46235":1,"46236":1,"46237":2,"46238":2,"46239":2,"46240":2,"46241":1,"46242":1,"46243":2,"46244":1,"46245":1,"46246":2,"46247":2,"46248":2,"46249":2,"46250":2,"46251":1,"46252":2,"46253":1,"46254":1,"46255":1,"46256":1,"46257":2,"46258":1,"46259":1,"46260":2,"46261":2,"46262":2,"46263":2,"46264":2,"46265":1,"46266":1,"46267":1,"46268":2,"46269":2,"46270":1,"46271":1,"46272":2,"46273":2,"46274":2,"46275":1,"46276":2,"46277":1,"46278":1,"46279":2,"46280":1,"46281":1,"46282":1,"46283":2,"46284":1,"46285":1,"46286":2,"46287":2,"46288":1,"46289":2,"46290":1,"46291":2,"46292":2,"46293":2,"46294":1,"46295":1,"46296":2,"46297":2,"46298":2,"46299":1,"46300":1,"46301":1,"46302":1,"46303":2,"46304":2,"46305":1,"46306":1,"46307":2,"46308":1,"46309":2,"46310":2,"46311":2,"46312":2,"46313":1,"46314":2,"46315":2,"46316":1,"46317":1,"46318":1,"46319":1,"46320":1,"46321":1,"46322":2,"46323":1,"46324":2,"46325":1,"46326":2,"46327":1,"46328":2,"46329":2,"46330":2,"46331":2,"46332":1,"46333":2,"46334":1,"46335":1,"46336":2,"46337":2,"46338":2,"46339":2,"46340":2,"46341":2,"46342":1,"46343":1,"46344":1,"46345":1,"46346":2,"46347":1,"46348":2,"46349":2,"46350":1,"46351":2,"46352":2,"46353":1,"46354":2,"46355":2,"46356":2,"46357":2,"46358":1,"46359":1,"46360":2,"46361":2,"46362":2,"46363":2,"46364":1,"46365":2,"46366":2,"46367":2,"46368":2,"46369":1,"46370":1,"46371":1,"46372":2,"46373":1,"46374":2,"46375":1,"46376":1,"46377":2,"46378":2,"46379":2,"46380":2,"46381":1,"46382":2,"46383":1,"46384":2,"46385":2,"46386":2,"46387":2,"46388":1,"46389":1,"46390":2,"46391":1,"46392":1,"46393":1,"46394":1,"46395":1,"46396":1,"46397":1,"46398":2,"46399":1,"46400":1,"46401":1,"46402":2,"46403":1,"46404":1,"46405":1,"46406":2,"46407":1,"46408":1,"46409":2,"46410":2,"46411":2,"46412":1,"46413":2,"46414":1,"46415":1,"46416":2,"46417":1,"46418":2,"46419":2,"46420":2,"46421":1,"46422":2,"46423":2,"46424":2,"46425":1,"46426":1,"46427":1,"46428":1,"46429":2,"46430":1,"46431":1,"46432":1,"46433":1,"46434":2,"46435":1,"46436":2,"46437":2,"46438":1,"46439":2,"46440":2,"46441":2,"46442":1,"46443":2,"46444":2,"46445":2,"46446":1,"46447":1,"46448":1,"46449":2,"46450":1,"46451":1,"46452":1,"46453":2,"46454":2,"46455":1,"46456":1,"46457":2,"46458":1,"46459":2,"46460":1,"46461":1,"46462":2,"46463":1,"46464":1,"46465":1,"46466":1,"46467":2,"46468":2,"46469":1,"46470":2,"46471":2,"46472":2,"46473":1,"46474":1,"46475":2,"46476":2,"46477":2,"46478":2,"46479":1,"46480":2,"46481":1,"46482":2,"46483":1,"46484":1,"46485":1,"46486":2,"46487":2,"46488":1,"46489":1,"46490":1,"46491":1,"46492":1,"46493":2,"46494":1,"46495":2,"46496":1,"46497":2,"46498":2,"46499":1,"46500":2,"46501":1,"46502":1,"46503":2,"46504":2,"46505":1,"46506":1,"46507":2,"46508":1,"46509":1,"46510":2,"46511":1,"46512":2,"46513":2,"46514":2,"46515":1,"46516":1,"46517":1,"46518":1,"46519":2,"46520":2,"46521":2,"46522":2,"46523":2,"46524":1,"46525":2,"46526":1,"46527":2,"46528":2,"46529":2,"46530":1,"46531":1,"46532":2,"46533":1,"46534":2,"46535":1,"46536":1,"46537":1,"46538":1,"46539":2,"46540":2,"46541":2,"46542":1,"46543":2,"46544":1,"46545":1,"46546":1,"46547":2,"46548":1,"46549":2,"46550":2,"46551":1,"46552":2,"46553":2,"46554":2,"46555":2,"46556":2,"46557":2,"46558":2,"46559":2,"46560":2,"46561":1,"46562":1,"46563":1,"46564":2,"46565":2,"46566":1,"46567":1,"46568":1,"46569":2,"46570":1,"46571":2,"46572":2,"46573":2,"46574":2,"46575":2,"46576":1,"46577":1,"46578":2,"46579":2,"46580":2,"46581":2,"46582":1,"46583":1,"46584":1,"46585":2,"46586":1,"46587":2,"46588":2,"46589":1,"46590":1,"46591":1,"46592":2,"46593":2,"46594":2,"46595":1,"46596":1,"46597":2,"46598":2,"46599":1,"46600":1,"46601":1,"46602":1,"46603":2,"46604":1,"46605":2,"46606":2,"46607":2,"46608":1,"46609":1,"46610":1,"46611":2,"46612":1,"46613":2,"46614":2,"46615":1,"46616":2,"46617":1,"46618":2,"46619":2,"46620":1,"46621":2,"46622":2,"46623":1,"46624":1,"46625":2,"46626":1,"46627":2,"46628":2,"46629":1,"46630":2,"46631":1,"46632":1,"46633":2,"46634":2,"46635":2,"46636":1,"46637":2,"46638":2,"46639":1,"46640":2,"46641":2,"46642":2,"46643":1,"46644":1,"46645":2,"46646":2,"46647":2,"46648":2,"46649":1,"46650":2,"46651":1,"46652":2,"46653":2,"46654":1,"46655":1,"46656":2,"46657":2,"46658":1,"46659":1,"46660":2,"46661":2,"46662":1,"46663":2,"46664":2,"46665":1,"46666":2,"46667":1,"46668":1,"46669":2,"46670":1,"46671":2,"46672":1,"46673":2,"46674":1,"46675":1,"46676":2,"46677":2,"46678":1,"46679":2,"46680":1,"46681":2,"46682":2,"46683":1,"46684":2,"46685":1,"46686":1,"46687":2,"46688":1,"46689":2,"46690":2,"46691":1,"46692":1,"46693":2,"46694":2,"46695":2,"46696":2,"46697":2,"46698":1,"46699":2,"46700":2,"46701":2,"46702":1,"46703":1,"46704":1,"46705":2,"46706":2,"46707":1,"46708":1,"46709":1,"46710":1,"46711":1,"46712":2,"46713":1,"46714":1,"46715":1,"46716":1,"46717":2,"46718":2,"46719":2,"46720":2,"46721":1,"46722":1,"46723":2,"46724":2,"46725":2,"46726":1,"46727":1,"46728":2,"46729":2,"46730":1,"46731":1,"46732":1,"46733":1,"46734":1,"46735":1,"46736":2,"46737":1,"46738":1,"46739":1,"46740":1,"46741":1,"46742":1,"46743":1,"46744":2,"46745":1,"46746":2,"46747":1,"46748":2,"46749":2,"46750":2,"46751":1,"46752":1,"46753":2,"46754":1,"46755":2,"46756":2,"46757":1,"46758":2,"46759":1,"46760":1,"46761":1,"46762":1,"46763":1,"46764":1,"46765":1,"46766":2,"46767":1,"46768":2,"46769":1,"46770":1,"46771":1,"46772":2,"46773":1,"46774":2,"46775":1,"46776":1,"46777":1,"46778":2,"46779":1,"46780":2,"46781":1,"46782":2,"46783":1,"46784":2,"46785":1,"46786":2,"46787":1,"46788":2,"46789":2,"46790":1,"46791":2,"46792":1,"46793":1,"46794":2,"46795":2,"46796":1,"46797":2,"46798":2,"46799":1,"46800":1,"46801":1,"46802":2,"46803":2,"46804":1,"46805":1,"46806":2,"46807":2,"46808":1,"46809":2,"46810":1,"46811":1,"46812":2,"46813":2,"46814":2,"46815":2,"46816":1,"46817":2,"46818":1,"46819":2,"46820":1,"46821":2,"46822":1,"46823":1,"46824":1,"46825":1,"46826":2,"46827":1,"46828":2,"46829":1,"46830":1,"46831":2,"46832":1,"46833":2,"46834":1,"46835":2,"46836":1,"46837":1,"46838":1,"46839":2,"46840":2,"46841":1,"46842":2,"46843":1,"46844":2,"46845":2,"46846":2,"46847":2,"46848":2,"46849":1,"46850":2,"46851":2,"46852":2,"46853":1,"46854":2,"46855":2,"46856":2,"46857":2,"46858":2,"46859":2,"46860":1,"46861":1,"46862":1,"46863":2,"46864":1,"46865":1,"46866":2,"46867":1,"46868":1,"46869":1,"46870":1,"46871":2,"46872":1,"46873":2,"46874":1,"46875":2,"46876":2,"46877":2,"46878":1,"46879":1,"46880":1,"46881":2,"46882":2,"46883":2,"46884":2,"46885":1,"46886":2,"46887":2,"46888":1,"46889":1,"46890":2,"46891":1,"46892":1,"46893":2,"46894":1,"46895":2,"46896":1,"46897":1,"46898":2,"46899":2,"46900":2,"46901":2,"46902":1,"46903":1,"46904":1,"46905":1,"46906":1,"46907":1,"46908":2,"46909":2,"46910":1,"46911":2,"46912":1,"46913":1,"46914":1,"46915":1,"46916":1,"46917":2,"46918":1,"46919":1,"46920":1,"46921":1,"46922":2,"46923":2,"46924":1,"46925":1,"46926":2,"46927":1,"46928":1,"46929":2,"46930":1,"46931":1,"46932":1,"46933":1,"46934":1,"46935":1,"46936":2,"46937":1,"46938":2,"46939":1,"46940":1,"46941":2,"46942":1,"46943":1,"46944":2,"46945":2,"46946":2,"46947":1,"46948":1,"46949":1,"46950":1,"46951":1,"46952":1,"46953":1,"46954":1,"46955":2,"46956":1,"46957":1,"46958":1,"46959":1,"46960":1,"46961":2,"46962":2,"46963":1,"46964":2,"46965":2,"46966":2,"46967":1,"46968":1,"46969":1,"46970":1,"46971":1,"46972":1,"46973":2,"46974":1,"46975":2,"46976":1,"46977":2,"46978":2,"46979":2,"46980":2,"46981":2,"46982":2,"46983":2,"46984":1,"46985":1,"46986":2,"46987":2,"46988":2,"46989":2,"46990":1,"46991":2,"46992":1,"46993":1,"46994":2,"46995":1,"46996":1,"46997":2,"46998":1,"46999":1,"47000":2,"47001":1,"47002":1,"47003":1,"47004":2,"47005":1,"47006":2,"47007":2,"47008":1,"47009":2,"47010":1,"47011":2,"47012":1,"47013":2,"47014":2,"47015":2,"47016":2,"47017":2,"47018":2,"47019":2,"47020":2,"47021":1,"47022":1,"47023":1,"47024":1,"47025":2,"47026":2,"47027":2,"47028":1,"47029":1,"47030":2,"47031":1,"47032":2,"47033":2,"47034":2,"47035":1,"47036":2,"47037":2,"47038":2,"47039":2,"47040":1,"47041":1,"47042":1,"47043":1,"47044":2,"47045":1,"47046":2,"47047":2,"47048":2,"47049":2,"47050":1,"47051":2,"47052":2,"47053":2,"47054":1,"47055":1,"47056":2,"47057":2,"47058":1,"47059":2,"47060":1,"47061":1,"47062":2,"47063":1,"47064":1,"47065":1,"47066":1,"47067":1,"47068":1,"47069":2,"47070":2,"47071":2,"47072":2,"47073":1,"47074":2,"47075":2,"47076":1,"47077":2,"47078":1,"47079":1,"47080":2,"47081":1,"47082":1,"47083":1,"47084":2,"47085":1,"47086":1,"47087":1,"47088":2,"47089":2,"47090":2,"47091":1,"47092":2,"47093":1,"47094":2,"47095":2,"47096":2,"47097":1,"47098":1,"47099":1,"47100":2,"47101":1,"47102":1,"47103":2,"47104":1,"47105":2,"47106":2,"47107":2,"47108":2,"47109":1,"47110":2,"47111":1,"47112":1,"47113":1,"47114":2,"47115":1,"47116":1,"47117":1,"47118":1,"47119":2,"47120":1,"47121":1,"47122":1,"47123":1,"47124":1,"47125":1,"47126":2,"47127":2,"47128":1,"47129":2,"47130":1,"47131":2,"47132":1,"47133":1,"47134":1,"47135":2,"47136":2,"47137":2,"47138":2,"47139":2,"47140":1,"47141":2,"47142":2,"47143":2,"47144":1,"47145":1,"47146":2,"47147":2,"47148":2,"47149":1,"47150":1,"47151":1,"47152":2,"47153":2,"47154":2,"47155":2,"47156":1,"47157":1,"47158":2,"47159":2,"47160":1,"47161":2,"47162":2,"47163":2,"47164":2,"47165":2,"47166":2,"47167":1,"47168":2,"47169":2,"47170":2,"47171":2,"47172":1,"47173":1,"47174":2,"47175":1,"47176":1,"47177":1,"47178":1,"47179":2,"47180":1,"47181":2,"47182":1,"47183":2,"47184":1,"47185":2,"47186":1,"47187":1,"47188":2,"47189":2,"47190":2,"47191":2,"47192":2,"47193":1,"47194":1,"47195":2,"47196":2,"47197":1,"47198":1,"47199":2,"47200":2,"47201":1,"47202":2,"47203":1,"47204":1,"47205":1,"47206":2,"47207":2,"47208":2,"47209":1,"47210":2,"47211":2,"47212":2,"47213":2,"47214":1,"47215":1,"47216":2,"47217":2,"47218":2,"47219":2,"47220":2,"47221":1,"47222":2,"47223":1,"47224":2,"47225":2,"47226":2,"47227":1,"47228":1,"47229":1,"47230":2,"47231":1,"47232":2,"47233":2,"47234":2,"47235":2,"47236":2,"47237":2,"47238":2,"47239":2,"47240":1,"47241":2,"47242":1,"47243":1,"47244":1,"47245":1,"47246":2,"47247":2,"47248":1,"47249":1,"47250":2,"47251":1,"47252":1,"47253":2,"47254":1,"47255":2,"47256":1,"47257":2,"47258":2,"47259":1,"47260":2,"47261":1,"47262":2,"47263":1,"47264":1,"47265":2,"47266":1,"47267":2,"47268":1,"47269":2,"47270":1,"47271":1,"47272":2,"47273":1,"47274":1,"47275":2,"47276":2,"47277":1,"47278":1,"47279":1,"47280":1,"47281":1,"47282":1,"47283":2,"47284":1,"47285":2,"47286":1,"47287":1,"47288":1,"47289":2,"47290":2,"47291":1,"47292":1,"47293":2,"47294":2,"47295":2,"47296":1,"47297":2,"47298":1,"47299":2,"47300":2,"47301":2,"47302":1,"47303":1,"47304":2,"47305":1,"47306":1,"47307":2,"47308":2,"47309":1,"47310":1,"47311":1,"47312":1,"47313":2,"47314":2,"47315":1,"47316":1,"47317":2,"47318":2,"47319":1,"47320":1,"47321":1,"47322":1,"47323":1,"47324":2,"47325":1,"47326":2,"47327":1,"47328":2,"47329":2,"47330":2,"47331":1,"47332":2,"47333":2,"47334":2,"47335":2,"47336":2,"47337":2,"47338":2,"47339":1,"47340":2,"47341":1,"47342":1,"47343":1,"47344":1,"47345":1,"47346":2,"47347":2,"47348":1,"47349":1,"47350":1,"47351":2,"47352":1,"47353":1,"47354":2,"47355":1,"47356":1,"47357":2,"47358":2,"47359":1,"47360":2,"47361":1,"47362":2,"47363":2,"47364":1,"47365":2,"47366":1,"47367":1,"47368":2,"47369":2,"47370":1,"47371":2,"47372":1,"47373":1,"47374":2,"47375":1,"47376":2,"47377":2,"47378":1,"47379":1,"47380":1,"47381":1,"47382":1,"47383":2,"47384":1,"47385":2,"47386":2,"47387":1,"47388":2,"47389":2,"47390":1,"47391":2,"47392":1,"47393":2,"47394":2,"47395":1,"47396":1,"47397":2,"47398":2,"47399":1,"47400":1,"47401":1,"47402":1,"47403":1,"47404":2,"47405":1,"47406":2,"47407":2,"47408":1,"47409":2,"47410":1,"47411":1,"47412":1,"47413":1,"47414":2,"47415":1,"47416":2,"47417":1,"47418":2,"47419":1,"47420":1,"47421":2,"47422":2,"47423":2,"47424":1,"47425":2,"47426":2,"47427":2,"47428":1,"47429":2,"47430":2,"47431":1,"47432":1,"47433":2,"47434":1,"47435":2,"47436":1,"47437":2,"47438":1,"47439":1,"47440":1,"47441":2,"47442":2,"47443":2,"47444":2,"47445":2,"47446":2,"47447":1,"47448":1,"47449":1,"47450":2,"47451":1,"47452":1,"47453":2,"47454":1,"47455":2,"47456":1,"47457":1,"47458":2,"47459":2,"47460":1,"47461":1,"47462":2,"47463":2,"47464":1,"47465":1,"47466":1,"47467":2,"47468":1,"47469":1,"47470":2,"47471":2,"47472":2,"47473":2,"47474":1,"47475":1,"47476":2,"47477":2,"47478":1,"47479":1,"47480":2,"47481":2,"47482":2,"47483":2,"47484":2,"47485":1,"47486":2,"47487":2,"47488":1,"47489":2,"47490":2,"47491":1,"47492":2,"47493":1,"47494":2,"47495":2,"47496":1,"47497":2,"47498":2,"47499":1,"47500":1,"47501":2,"47502":2,"47503":1,"47504":1,"47505":1,"47506":1,"47507":1,"47508":1,"47509":2,"47510":1,"47511":2,"47512":1,"47513":2,"47514":2,"47515":1,"47516":1,"47517":1,"47518":1,"47519":1,"47520":2,"47521":2,"47522":1,"47523":1,"47524":1,"47525":1,"47526":1,"47527":1,"47528":2,"47529":1,"47530":2,"47531":2,"47532":1,"47533":2,"47534":1,"47535":2,"47536":2,"47537":2,"47538":2,"47539":2,"47540":2,"47541":1,"47542":1,"47543":1,"47544":1,"47545":1,"47546":1,"47547":2,"47548":2,"47549":1,"47550":2,"47551":1,"47552":2,"47553":1,"47554":2,"47555":1,"47556":1,"47557":2,"47558":2,"47559":1,"47560":2,"47561":1,"47562":1,"47563":2,"47564":1,"47565":2,"47566":2,"47567":2,"47568":2,"47569":1,"47570":1,"47571":2,"47572":2,"47573":1,"47574":2,"47575":2,"47576":1,"47577":1,"47578":1,"47579":2,"47580":1,"47581":1,"47582":2,"47583":1,"47584":2,"47585":1,"47586":2,"47587":1,"47588":2,"47589":2,"47590":2,"47591":1,"47592":1,"47593":2,"47594":2,"47595":1,"47596":1,"47597":1,"47598":2,"47599":1,"47600":2,"47601":1,"47602":2,"47603":2,"47604":1,"47605":1,"47606":1,"47607":1,"47608":1,"47609":1,"47610":1,"47611":1,"47612":2,"47613":1,"47614":1,"47615":2,"47616":1,"47617":1,"47618":2,"47619":1,"47620":2,"47621":2,"47622":1,"47623":1,"47624":1,"47625":2,"47626":2,"47627":2,"47628":2,"47629":1,"47630":1,"47631":2,"47632":2,"47633":2,"47634":2,"47635":2,"47636":1,"47637":2,"47638":2,"47639":2,"47640":2,"47641":2,"47642":2,"47643":2,"47644":1,"47645":1,"47646":2,"47647":1,"47648":1,"47649":1,"47650":1,"47651":1,"47652":2,"47653":2,"47654":2,"47655":1,"47656":1,"47657":1,"47658":1,"47659":1,"47660":1,"47661":1,"47662":1,"47663":1,"47664":1,"47665":2,"47666":1,"47667":1,"47668":1,"47669":1,"47670":2,"47671":2,"47672":1,"47673":1,"47674":2,"47675":1,"47676":1,"47677":2,"47678":1,"47679":1,"47680":1,"47681":2,"47682":2,"47683":2,"47684":1,"47685":1,"47686":2,"47687":2,"47688":1,"47689":2,"47690":2,"47691":2,"47692":1,"47693":1,"47694":1,"47695":2,"47696":2,"47697":2,"47698":2,"47699":1,"47700":1,"47701":1,"47702":1,"47703":2,"47704":1,"47705":2,"47706":1,"47707":1,"47708":1,"47709":1,"47710":1,"47711":1,"47712":1,"47713":1,"47714":2,"47715":1,"47716":2,"47717":1,"47718":2,"47719":1,"47720":2,"47721":2,"47722":2,"47723":1,"47724":1,"47725":1,"47726":1,"47727":1,"47728":2,"47729":2,"47730":2,"47731":2,"47732":1,"47733":1,"47734":1,"47735":1,"47736":2,"47737":1,"47738":1,"47739":2,"47740":1,"47741":1,"47742":1,"47743":2,"47744":1,"47745":1,"47746":2,"47747":1,"47748":2,"47749":1,"47750":1,"47751":1,"47752":2,"47753":1,"47754":1,"47755":2,"47756":1,"47757":1,"47758":2,"47759":2,"47760":2,"47761":2,"47762":2,"47763":1,"47764":2,"47765":2,"47766":2,"47767":1,"47768":2,"47769":1,"47770":1,"47771":1,"47772":1,"47773":2,"47774":2,"47775":1,"47776":2,"47777":1,"47778":2,"47779":1,"47780":1,"47781":2,"47782":1,"47783":2,"47784":2,"47785":2,"47786":1,"47787":2,"47788":2,"47789":2,"47790":1,"47791":2,"47792":2,"47793":2,"47794":2,"47795":1,"47796":1,"47797":1,"47798":2,"47799":1,"47800":1,"47801":2,"47802":2,"47803":1,"47804":1,"47805":2,"47806":2,"47807":2,"47808":1,"47809":2,"47810":1,"47811":2,"47812":2,"47813":2,"47814":1,"47815":2,"47816":2,"47817":1,"47818":1,"47819":1,"47820":1,"47821":2,"47822":1,"47823":1,"47824":2,"47825":1,"47826":1,"47827":2,"47828":2,"47829":2,"47830":1,"47831":1,"47832":2,"47833":1,"47834":1,"47835":2,"47836":2,"47837":1,"47838":1,"47839":2,"47840":2,"47841":1,"47842":2,"47843":2,"47844":1,"47845":2,"47846":2,"47847":2,"47848":2,"47849":1,"47850":1,"47851":1,"47852":2,"47853":2,"47854":2,"47855":1,"47856":2,"47857":1,"47858":2,"47859":2,"47860":1,"47861":2,"47862":1,"47863":2,"47864":1,"47865":1,"47866":2,"47867":2,"47868":1,"47869":2,"47870":2,"47871":2,"47872":2,"47873":1,"47874":2,"47875":2,"47876":2,"47877":2,"47878":1,"47879":2,"47880":2,"47881":2,"47882":2,"47883":2,"47884":2,"47885":1,"47886":2,"47887":2,"47888":1,"47889":1,"47890":1,"47891":1,"47892":1,"47893":1,"47894":1,"47895":2,"47896":2,"47897":1,"47898":2,"47899":1,"47900":1,"47901":2,"47902":2,"47903":2,"47904":1,"47905":1,"47906":1,"47907":2,"47908":1,"47909":2,"47910":2,"47911":2,"47912":2,"47913":1,"47914":1,"47915":1,"47916":1,"47917":2,"47918":1,"47919":2,"47920":2,"47921":2,"47922":2,"47923":1,"47924":1,"47925":2,"47926":2,"47927":2,"47928":2,"47929":2,"47930":2,"47931":1,"47932":2,"47933":2,"47934":2,"47935":1,"47936":1,"47937":1,"47938":1,"47939":2,"47940":1,"47941":1,"47942":2,"47943":1,"47944":1,"47945":1,"47946":2,"47947":1,"47948":2,"47949":2,"47950":1,"47951":2,"47952":1,"47953":1,"47954":2,"47955":1,"47956":2,"47957":2,"47958":2,"47959":1,"47960":1,"47961":1,"47962":1,"47963":2,"47964":2,"47965":2,"47966":1,"47967":2,"47968":2,"47969":1,"47970":2,"47971":1,"47972":1,"47973":1,"47974":1,"47975":2,"47976":2,"47977":1,"47978":1,"47979":1,"47980":1,"47981":1,"47982":2,"47983":2,"47984":2,"47985":2,"47986":1,"47987":1,"47988":1,"47989":1,"47990":1,"47991":2,"47992":2,"47993":1,"47994":1,"47995":2,"47996":2,"47997":1,"47998":1,"47999":2,"48000":1,"48001":1,"48002":2,"48003":1,"48004":2,"48005":2,"48006":2,"48007":2,"48008":2,"48009":1,"48010":2,"48011":1,"48012":1,"48013":2,"48014":1,"48015":1,"48016":1,"48017":2,"48018":2,"48019":1,"48020":2,"48021":1,"48022":2,"48023":2,"48024":2,"48025":2,"48026":2,"48027":2,"48028":1,"48029":1,"48030":2,"48031":2,"48032":2,"48033":1,"48034":2,"48035":2,"48036":2,"48037":2,"48038":2,"48039":1,"48040":2,"48041":2,"48042":1,"48043":2,"48044":2,"48045":1,"48046":1,"48047":1,"48048":1,"48049":1,"48050":2,"48051":2,"48052":1,"48053":2,"48054":1,"48055":2,"48056":1,"48057":1,"48058":1,"48059":2,"48060":1,"48061":1,"48062":2,"48063":2,"48064":1,"48065":2,"48066":2,"48067":2,"48068":2,"48069":2,"48070":1,"48071":2,"48072":1,"48073":1,"48074":2,"48075":1,"48076":1,"48077":1,"48078":2,"48079":2,"48080":1,"48081":2,"48082":2,"48083":2,"48084":1,"48085":2,"48086":1,"48087":2,"48088":1,"48089":2,"48090":1,"48091":1,"48092":1,"48093":1,"48094":2,"48095":1,"48096":1,"48097":2,"48098":2,"48099":1,"48100":2,"48101":1,"48102":1,"48103":2,"48104":2,"48105":2,"48106":2,"48107":1,"48108":1,"48109":1,"48110":2,"48111":1,"48112":2,"48113":2,"48114":2,"48115":2,"48116":1,"48117":1,"48118":1,"48119":1,"48120":1,"48121":2,"48122":1,"48123":1,"48124":1,"48125":1,"48126":2,"48127":1,"48128":1,"48129":1,"48130":2,"48131":2,"48132":2,"48133":2,"48134":1,"48135":1,"48136":1,"48137":2,"48138":2,"48139":2,"48140":2,"48141":1,"48142":2,"48143":2,"48144":1,"48145":1,"48146":2,"48147":1,"48148":2,"48149":1,"48150":1,"48151":1,"48152":2,"48153":2,"48154":1,"48155":2,"48156":2,"48157":2,"48158":2,"48159":2,"48160":1,"48161":1,"48162":2,"48163":2,"48164":2,"48165":1,"48166":2,"48167":1,"48168":1,"48169":1,"48170":1,"48171":2,"48172":2,"48173":1,"48174":1,"48175":1,"48176":1,"48177":2,"48178":1,"48179":1,"48180":1,"48181":2,"48182":1,"48183":1,"48184":2,"48185":2,"48186":1,"48187":2,"48188":1,"48189":1,"48190":1,"48191":2,"48192":2,"48193":2,"48194":1,"48195":2,"48196":1,"48197":1,"48198":2,"48199":1,"48200":2,"48201":1,"48202":1,"48203":1,"48204":1,"48205":2,"48206":2,"48207":1,"48208":2,"48209":1,"48210":1,"48211":2,"48212":2,"48213":1,"48214":1,"48215":2,"48216":2,"48217":1,"48218":2,"48219":2,"48220":1,"48221":1,"48222":1,"48223":2,"48224":2,"48225":2,"48226":2,"48227":1,"48228":1,"48229":2,"48230":2,"48231":1,"48232":2,"48233":1,"48234":1,"48235":1,"48236":1,"48237":2,"48238":1,"48239":1,"48240":2,"48241":1,"48242":2,"48243":1,"48244":2,"48245":2,"48246":1,"48247":2,"48248":2,"48249":2,"48250":1,"48251":2,"48252":2,"48253":2,"48254":2,"48255":1,"48256":2,"48257":2,"48258":2,"48259":1,"48260":1,"48261":1,"48262":1,"48263":2,"48264":2,"48265":1,"48266":2,"48267":1,"48268":2,"48269":2,"48270":2,"48271":1,"48272":1,"48273":1,"48274":2,"48275":2,"48276":1,"48277":1,"48278":1,"48279":2,"48280":2,"48281":1,"48282":1,"48283":1,"48284":1,"48285":1,"48286":1,"48287":1,"48288":2,"48289":1,"48290":1,"48291":2,"48292":1,"48293":2,"48294":1,"48295":1,"48296":1,"48297":2,"48298":2,"48299":1,"48300":1,"48301":1,"48302":1,"48303":2,"48304":2,"48305":2,"48306":2,"48307":2,"48308":2,"48309":2,"48310":1,"48311":2,"48312":1,"48313":1,"48314":1,"48315":1,"48316":1,"48317":2,"48318":1,"48319":2,"48320":2,"48321":1,"48322":2,"48323":1,"48324":1,"48325":1,"48326":2,"48327":2,"48328":1,"48329":2,"48330":1,"48331":2,"48332":2,"48333":2,"48334":2,"48335":1,"48336":2,"48337":1,"48338":1,"48339":2,"48340":2,"48341":1,"48342":2,"48343":1,"48344":2,"48345":1,"48346":1,"48347":2,"48348":1,"48349":1,"48350":2,"48351":1,"48352":1,"48353":2,"48354":2,"48355":2,"48356":1,"48357":2,"48358":2,"48359":1,"48360":1,"48361":1,"48362":2,"48363":1,"48364":1,"48365":1,"48366":2,"48367":1,"48368":1,"48369":2,"48370":1,"48371":1,"48372":1,"48373":2,"48374":1,"48375":1,"48376":2,"48377":2,"48378":2,"48379":1,"48380":2,"48381":1,"48382":1,"48383":1,"48384":1,"48385":1,"48386":1,"48387":2,"48388":2,"48389":2,"48390":2,"48391":2,"48392":1,"48393":2,"48394":2,"48395":2,"48396":1,"48397":1,"48398":2,"48399":1,"48400":2,"48401":2,"48402":1,"48403":1,"48404":2,"48405":2,"48406":2,"48407":2,"48408":2,"48409":2,"48410":2,"48411":1,"48412":2,"48413":2,"48414":1,"48415":1,"48416":1,"48417":1,"48418":1,"48419":1,"48420":2,"48421":1,"48422":1,"48423":1,"48424":1,"48425":2,"48426":2,"48427":1,"48428":1,"48429":1,"48430":2,"48431":1,"48432":1,"48433":2,"48434":1,"48435":2,"48436":1,"48437":1,"48438":2,"48439":2,"48440":2,"48441":1,"48442":1,"48443":2,"48444":2,"48445":1,"48446":1,"48447":1,"48448":1,"48449":1,"48450":2,"48451":1,"48452":1,"48453":2,"48454":2,"48455":2,"48456":1,"48457":1,"48458":2,"48459":2,"48460":2,"48461":2,"48462":2,"48463":1,"48464":2,"48465":1,"48466":1,"48467":2,"48468":2,"48469":2,"48470":1,"48471":1,"48472":1,"48473":2,"48474":1,"48475":1,"48476":2,"48477":1,"48478":1,"48479":1,"48480":1,"48481":1,"48482":2,"48483":2,"48484":2,"48485":2,"48486":2,"48487":2,"48488":1,"48489":2,"48490":2,"48491":1,"48492":1,"48493":1,"48494":2,"48495":2,"48496":1,"48497":1,"48498":1,"48499":2,"48500":2,"48501":1,"48502":2,"48503":1,"48504":1,"48505":1,"48506":1,"48507":1,"48508":1,"48509":1,"48510":1,"48511":2,"48512":1,"48513":1,"48514":1,"48515":2,"48516":1,"48517":2,"48518":2,"48519":2,"48520":2,"48521":1,"48522":2,"48523":1,"48524":2,"48525":1,"48526":1,"48527":1,"48528":1,"48529":1,"48530":2,"48531":2,"48532":2,"48533":2,"48534":1,"48535":2,"48536":1,"48537":2,"48538":1,"48539":1,"48540":1,"48541":1,"48542":1,"48543":2,"48544":1,"48545":1,"48546":2,"48547":1,"48548":1,"48549":1,"48550":1,"48551":2,"48552":1,"48553":2,"48554":2,"48555":1,"48556":1,"48557":1,"48558":2,"48559":2,"48560":2,"48561":1,"48562":1,"48563":2,"48564":2,"48565":2,"48566":1,"48567":2,"48568":1,"48569":1,"48570":1,"48571":1,"48572":2,"48573":2,"48574":1,"48575":2,"48576":2,"48577":1,"48578":2,"48579":2,"48580":1,"48581":2,"48582":2,"48583":2,"48584":2,"48585":1,"48586":2,"48587":1,"48588":1,"48589":1,"48590":1,"48591":2,"48592":1,"48593":1,"48594":2,"48595":1,"48596":1,"48597":2,"48598":1,"48599":1,"48600":2,"48601":1,"48602":2,"48603":1,"48604":1,"48605":1,"48606":1,"48607":1,"48608":2,"48609":1,"48610":2,"48611":1,"48612":2,"48613":1,"48614":1,"48615":2,"48616":2,"48617":2,"48618":1,"48619":1,"48620":2,"48621":2,"48622":1,"48623":1,"48624":1,"48625":1,"48626":2,"48627":1,"48628":1,"48629":2,"48630":2,"48631":2,"48632":1,"48633":1,"48634":1,"48635":1,"48636":1,"48637":1,"48638":1,"48639":1,"48640":1,"48641":2,"48642":1,"48643":2,"48644":2,"48645":1,"48646":1,"48647":1,"48648":2,"48649":2,"48650":1,"48651":1,"48652":2,"48653":1,"48654":2,"48655":1,"48656":2,"48657":1,"48658":1,"48659":1,"48660":2,"48661":2,"48662":2,"48663":1,"48664":2,"48665":2,"48666":1,"48667":2,"48668":1,"48669":1,"48670":2,"48671":1,"48672":2,"48673":1,"48674":2,"48675":1,"48676":2,"48677":2,"48678":1,"48679":1,"48680":1,"48681":1,"48682":1,"48683":2,"48684":2,"48685":2,"48686":2,"48687":1,"48688":1,"48689":1,"48690":1,"48691":2,"48692":1,"48693":1,"48694":2,"48695":2,"48696":2,"48697":2,"48698":2,"48699":2,"48700":2,"48701":1,"48702":2,"48703":2,"48704":1,"48705":2,"48706":1,"48707":1,"48708":1,"48709":2,"48710":2,"48711":2,"48712":2,"48713":1,"48714":2,"48715":1,"48716":2,"48717":1,"48718":1,"48719":1,"48720":2,"48721":1,"48722":2,"48723":2,"48724":2,"48725":2,"48726":1,"48727":2,"48728":1,"48729":1,"48730":1,"48731":1,"48732":2,"48733":2,"48734":2,"48735":1,"48736":2,"48737":2,"48738":2,"48739":2,"48740":2,"48741":2,"48742":1,"48743":2,"48744":1,"48745":1,"48746":2,"48747":2,"48748":2,"48749":1,"48750":2,"48751":1,"48752":1,"48753":2,"48754":1,"48755":1,"48756":1,"48757":2,"48758":1,"48759":1,"48760":2,"48761":1,"48762":2,"48763":1,"48764":2,"48765":2,"48766":2,"48767":1,"48768":1,"48769":2,"48770":1,"48771":2,"48772":1,"48773":2,"48774":1,"48775":2,"48776":2,"48777":2,"48778":1,"48779":2,"48780":2,"48781":2,"48782":2,"48783":1,"48784":2,"48785":1,"48786":2,"48787":1,"48788":2,"48789":2,"48790":1,"48791":1,"48792":1,"48793":2,"48794":1,"48795":2,"48796":2,"48797":1,"48798":1,"48799":2,"48800":2,"48801":2,"48802":2,"48803":2,"48804":1,"48805":2,"48806":1,"48807":2,"48808":2,"48809":1,"48810":1,"48811":2,"48812":2,"48813":1,"48814":1,"48815":2,"48816":2,"48817":1,"48818":1,"48819":1,"48820":2,"48821":1,"48822":2,"48823":1,"48824":2,"48825":2,"48826":1,"48827":2,"48828":2,"48829":1,"48830":2,"48831":1,"48832":1,"48833":1,"48834":1,"48835":1,"48836":2,"48837":1,"48838":2,"48839":1,"48840":1,"48841":1,"48842":2,"48843":1,"48844":1,"48845":1,"48846":2,"48847":1,"48848":2,"48849":1,"48850":1,"48851":1,"48852":1,"48853":2,"48854":2,"48855":2,"48856":1,"48857":2,"48858":2,"48859":1,"48860":2,"48861":2,"48862":2,"48863":1,"48864":2,"48865":1,"48866":2,"48867":2,"48868":1,"48869":2,"48870":2,"48871":2,"48872":2,"48873":2,"48874":2,"48875":2,"48876":2,"48877":1,"48878":1,"48879":1,"48880":1,"48881":1,"48882":2,"48883":2,"48884":1,"48885":1,"48886":2,"48887":1,"48888":2,"48889":1,"48890":2,"48891":1,"48892":1,"48893":2,"48894":2,"48895":2,"48896":2,"48897":2,"48898":2,"48899":2,"48900":1,"48901":2,"48902":1,"48903":2,"48904":1,"48905":2,"48906":1,"48907":2,"48908":1,"48909":2,"48910":2,"48911":1,"48912":1,"48913":1,"48914":1,"48915":2,"48916":1,"48917":2,"48918":1,"48919":2,"48920":2,"48921":1,"48922":1,"48923":2,"48924":2,"48925":2,"48926":1,"48927":1,"48928":2,"48929":2,"48930":2,"48931":1,"48932":2,"48933":1,"48934":1,"48935":2,"48936":2,"48937":1,"48938":1,"48939":1,"48940":2,"48941":2,"48942":1,"48943":2,"48944":1,"48945":1,"48946":2,"48947":1,"48948":2,"48949":1,"48950":2,"48951":2,"48952":1,"48953":1,"48954":2,"48955":1,"48956":1,"48957":2,"48958":2,"48959":1,"48960":1,"48961":2,"48962":1,"48963":2,"48964":2,"48965":2,"48966":2,"48967":1,"48968":1,"48969":2,"48970":1,"48971":2,"48972":1,"48973":2,"48974":2,"48975":1,"48976":1,"48977":2,"48978":2,"48979":2,"48980":2,"48981":1,"48982":2,"48983":2,"48984":1,"48985":2,"48986":1,"48987":2,"48988":2,"48989":1,"48990":2,"48991":1,"48992":2,"48993":1,"48994":1,"48995":1,"48996":2,"48997":1,"48998":1,"48999":2,"49000":2,"49001":1,"49002":2,"49003":1,"49004":2,"49005":2,"49006":2,"49007":2,"49008":1,"49009":1,"49010":2,"49011":1,"49012":1,"49013":2,"49014":2,"49015":2,"49016":2,"49017":2,"49018":1,"49019":2,"49020":2,"49021":2,"49022":1,"49023":2,"49024":2,"49025":2,"49026":2,"49027":1,"49028":1,"49029":1,"49030":2,"49031":1,"49032":1,"49033":2,"49034":2,"49035":2,"49036":1,"49037":2,"49038":2,"49039":1,"49040":1,"49041":2,"49042":1,"49043":1,"49044":2,"49045":1,"49046":1,"49047":2,"49048":1,"49049":1,"49050":2,"49051":1,"49052":2,"49053":1,"49054":1,"49055":1,"49056":1,"49057":1,"49058":1,"49059":1,"49060":2,"49061":2,"49062":1,"49063":2,"49064":1,"49065":2,"49066":1,"49067":1,"49068":1,"49069":2,"49070":1,"49071":1,"49072":2,"49073":1,"49074":2,"49075":2,"49076":2,"49077":2,"49078":2,"49079":1,"49080":1,"49081":1,"49082":1,"49083":2,"49084":2,"49085":2,"49086":1,"49087":1,"49088":2,"49089":2,"49090":2,"49091":1,"49092":2,"49093":1,"49094":2,"49095":1,"49096":1,"49097":1,"49098":2,"49099":2,"49100":2,"49101":1,"49102":1,"49103":2,"49104":2,"49105":1,"49106":1,"49107":1,"49108":1,"49109":2,"49110":2,"49111":2,"49112":1,"49113":1,"49114":2,"49115":1,"49116":2,"49117":1,"49118":2,"49119":2,"49120":2,"49121":2,"49122":2,"49123":1,"49124":2,"49125":1,"49126":2,"49127":2,"49128":1,"49129":1,"49130":1,"49131":1,"49132":1,"49133":1,"49134":2,"49135":2,"49136":1,"49137":2,"49138":2,"49139":1,"49140":2,"49141":1,"49142":2,"49143":2,"49144":1,"49145":2,"49146":1,"49147":2,"49148":2,"49149":2,"49150":1,"49151":2,"49152":1,"49153":1,"49154":2,"49155":1,"49156":2,"49157":2,"49158":1,"49159":2,"49160":1,"49161":1,"49162":1,"49163":1,"49164":2,"49165":1,"49166":1,"49167":1,"49168":1,"49169":2,"49170":1,"49171":1,"49172":2,"49173":2,"49174":2,"49175":1,"49176":1,"49177":1,"49178":2,"49179":1,"49180":1,"49181":1,"49182":1,"49183":1,"49184":1,"49185":2,"49186":2,"49187":2,"49188":1,"49189":2,"49190":2,"49191":2,"49192":1,"49193":2,"49194":1,"49195":1,"49196":1,"49197":2,"49198":1,"49199":2,"49200":1,"49201":2,"49202":1,"49203":1,"49204":1,"49205":2,"49206":1,"49207":2,"49208":2,"49209":2,"49210":1,"49211":1,"49212":2,"49213":2,"49214":2,"49215":2,"49216":2,"49217":1,"49218":2,"49219":1,"49220":2,"49221":2,"49222":2,"49223":1,"49224":2,"49225":1,"49226":2,"49227":2,"49228":1,"49229":1,"49230":2,"49231":2,"49232":2,"49233":2,"49234":1,"49235":1,"49236":2,"49237":1,"49238":2,"49239":1,"49240":2,"49241":1,"49242":2,"49243":2,"49244":1,"49245":1,"49246":1,"49247":1,"49248":2,"49249":2,"49250":2,"49251":1,"49252":2,"49253":1,"49254":2,"49255":2,"49256":1,"49257":2,"49258":1,"49259":2,"49260":1,"49261":1,"49262":1,"49263":1,"49264":1,"49265":2,"49266":1,"49267":2,"49268":1,"49269":1,"49270":1,"49271":2,"49272":2,"49273":2,"49274":1,"49275":1,"49276":1,"49277":1,"49278":1,"49279":1,"49280":2,"49281":1,"49282":1,"49283":2,"49284":1,"49285":2,"49286":2,"49287":2,"49288":1,"49289":2,"49290":2,"49291":2,"49292":2,"49293":1,"49294":2,"49295":2,"49296":2,"49297":1,"49298":2,"49299":2,"49300":1,"49301":2,"49302":1,"49303":2,"49304":1,"49305":1,"49306":1,"49307":1,"49308":1,"49309":1,"49310":1,"49311":2,"49312":1,"49313":1,"49314":2,"49315":1,"49316":2,"49317":1,"49318":1,"49319":2,"49320":1,"49321":1,"49322":2,"49323":2,"49324":2,"49325":2,"49326":1,"49327":2,"49328":2,"49329":1,"49330":2,"49331":1,"49332":1,"49333":2,"49334":2,"49335":1,"49336":1,"49337":1,"49338":1,"49339":1,"49340":2,"49341":2,"49342":1,"49343":2,"49344":2,"49345":2,"49346":2,"49347":1,"49348":1,"49349":2,"49350":2,"49351":2,"49352":2,"49353":1,"49354":1,"49355":2,"49356":1,"49357":1,"49358":2,"49359":1,"49360":1,"49361":1,"49362":2,"49363":2,"49364":2,"49365":2,"49366":2,"49367":1,"49368":1,"49369":2,"49370":2,"49371":2,"49372":2,"49373":2,"49374":1,"49375":1,"49376":1,"49377":2,"49378":2,"49379":1,"49380":1,"49381":2,"49382":2,"49383":1,"49384":2,"49385":2,"49386":2,"49387":1,"49388":1,"49389":2,"49390":2,"49391":1,"49392":1,"49393":1,"49394":1,"49395":1,"49396":2,"49397":2,"49398":1,"49399":2,"49400":1,"49401":2,"49402":1,"49403":1,"49404":1,"49405":1,"49406":1,"49407":1,"49408":1,"49409":2,"49410":1,"49411":1,"49412":1,"49413":2,"49414":1,"49415":2,"49416":1,"49417":2,"49418":2,"49419":2,"49420":2,"49421":1,"49422":1,"49423":2,"49424":2,"49425":2,"49426":2,"49427":2,"49428":1,"49429":2,"49430":2,"49431":2,"49432":1,"49433":2,"49434":2,"49435":2,"49436":1,"49437":2,"49438":1,"49439":2,"49440":1,"49441":2,"49442":1,"49443":2,"49444":1,"49445":1,"49446":1,"49447":1,"49448":1,"49449":1,"49450":2,"49451":1,"49452":1,"49453":1,"49454":2,"49455":2,"49456":1,"49457":2,"49458":2,"49459":1,"49460":2,"49461":1,"49462":2,"49463":2,"49464":1,"49465":1,"49466":2,"49467":1,"49468":1,"49469":2,"49470":1,"49471":2,"49472":1,"49473":2,"49474":2,"49475":2,"49476":1,"49477":1,"49478":2,"49479":1,"49480":2,"49481":1,"49482":1,"49483":2,"49484":2,"49485":2,"49486":2,"49487":2,"49488":2,"49489":1,"49490":1,"49491":2,"49492":2,"49493":2,"49494":1,"49495":2,"49496":2,"49497":1,"49498":2,"49499":2,"49500":1,"49501":2,"49502":2,"49503":1,"49504":2,"49505":2,"49506":1,"49507":1,"49508":2,"49509":2,"49510":2,"49511":2,"49512":1,"49513":2,"49514":2,"49515":1,"49516":2,"49517":1,"49518":1,"49519":1,"49520":1,"49521":2,"49522":1,"49523":1,"49524":1,"49525":2,"49526":2,"49527":2,"49528":2,"49529":1,"49530":1,"49531":1,"49532":2,"49533":2,"49534":2,"49535":2,"49536":2,"49537":2,"49538":2,"49539":2,"49540":1,"49541":2,"49542":2,"49543":1,"49544":1,"49545":1,"49546":1,"49547":1,"49548":1,"49549":2,"49550":1,"49551":1,"49552":1,"49553":2,"49554":2,"49555":2,"49556":2,"49557":2,"49558":2,"49559":2,"49560":2,"49561":2,"49562":1,"49563":2,"49564":2,"49565":1,"49566":1,"49567":1,"49568":1,"49569":2,"49570":2,"49571":2,"49572":2,"49573":1,"49574":1,"49575":2,"49576":2,"49577":2,"49578":1,"49579":1,"49580":2,"49581":1,"49582":2,"49583":2,"49584":2,"49585":2,"49586":2,"49587":1,"49588":1,"49589":1,"49590":2,"49591":2,"49592":2,"49593":1,"49594":2,"49595":1,"49596":1,"49597":2,"49598":1,"49599":1,"49600":1,"49601":1,"49602":1,"49603":1,"49604":2,"49605":2,"49606":1,"49607":1,"49608":1,"49609":2,"49610":1,"49611":2,"49612":1,"49613":1,"49614":2,"49615":2,"49616":2,"49617":1,"49618":1,"49619":2,"49620":2,"49621":2,"49622":1,"49623":1,"49624":2,"49625":2,"49626":1,"49627":1,"49628":1,"49629":1,"49630":2,"49631":1,"49632":1,"49633":1,"49634":2,"49635":2,"49636":2,"49637":2,"49638":1,"49639":1,"49640":2,"49641":1,"49642":2,"49643":1,"49644":1,"49645":2,"49646":1,"49647":1,"49648":2,"49649":2,"49650":2,"49651":1,"49652":1,"49653":2,"49654":2,"49655":2,"49656":1,"49657":1,"49658":1,"49659":1,"49660":1,"49661":2,"49662":2,"49663":1,"49664":2,"49665":2,"49666":2,"49667":1,"49668":1,"49669":1,"49670":2,"49671":1,"49672":2,"49673":2,"49674":1,"49675":1,"49676":1,"49677":2,"49678":1,"49679":1,"49680":2,"49681":1,"49682":1,"49683":1,"49684":2,"49685":2,"49686":2,"49687":1,"49688":1,"49689":2,"49690":1,"49691":1,"49692":1,"49693":1,"49694":1,"49695":1,"49696":1,"49697":2,"49698":2,"49699":1,"49700":2,"49701":1,"49702":2,"49703":1,"49704":1,"49705":1,"49706":2,"49707":1,"49708":1,"49709":1,"49710":1,"49711":2,"49712":2,"49713":2,"49714":2,"49715":2,"49716":1,"49717":2,"49718":2,"49719":2,"49720":2,"49721":1,"49722":2,"49723":2,"49724":1,"49725":2,"49726":2,"49727":2,"49728":2,"49729":1,"49730":2,"49731":1,"49732":1,"49733":1,"49734":1,"49735":1,"49736":2,"49737":2,"49738":1,"49739":2,"49740":2,"49741":2,"49742":2,"49743":2,"49744":2,"49745":1,"49746":2,"49747":2,"49748":1,"49749":1,"49750":1,"49751":1,"49752":2,"49753":2,"49754":1,"49755":2,"49756":2,"49757":2,"49758":1,"49759":2,"49760":2,"49761":1,"49762":1,"49763":2,"49764":2,"49765":2,"49766":1,"49767":2,"49768":1,"49769":2,"49770":1,"49771":1,"49772":2,"49773":2,"49774":2,"49775":1,"49776":2,"49777":2,"49778":1,"49779":1,"49780":2,"49781":2,"49782":1,"49783":1,"49784":1,"49785":1,"49786":1,"49787":2,"49788":2,"49789":2,"49790":1,"49791":2,"49792":2,"49793":2,"49794":2,"49795":2,"49796":2,"49797":2,"49798":1,"49799":2,"49800":1,"49801":2,"49802":2,"49803":1,"49804":1,"49805":1,"49806":1,"49807":1,"49808":2,"49809":2,"49810":2,"49811":1,"49812":2,"49813":2,"49814":1,"49815":2,"49816":2,"49817":1,"49818":2,"49819":1,"49820":1,"49821":2,"49822":1,"49823":2,"49824":1,"49825":1,"49826":1,"49827":2,"49828":1,"49829":2,"49830":2,"49831":2,"49832":1,"49833":2,"49834":1,"49835":2,"49836":1,"49837":1,"49838":1,"49839":1,"49840":2,"49841":1,"49842":1,"49843":1,"49844":2,"49845":1,"49846":1,"49847":2,"49848":2,"49849":2,"49850":1,"49851":2,"49852":2,"49853":1,"49854":1,"49855":1,"49856":1,"49857":2,"49858":2,"49859":2,"49860":2,"49861":2,"49862":1,"49863":2,"49864":2,"49865":1,"49866":1,"49867":1,"49868":2,"49869":1,"49870":2,"49871":2,"49872":1,"49873":1,"49874":2,"49875":2,"49876":2,"49877":1,"49878":1,"49879":2,"49880":2,"49881":2,"49882":2,"49883":1,"49884":1,"49885":2,"49886":1,"49887":2,"49888":1,"49889":2,"49890":2,"49891":1,"49892":1,"49893":2,"49894":1,"49895":1,"49896":1,"49897":2,"49898":2,"49899":1,"49900":1,"49901":1,"49902":2,"49903":2,"49904":2,"49905":2,"49906":2,"49907":1,"49908":1,"49909":1,"49910":1,"49911":1,"49912":1,"49913":1,"49914":1,"49915":1,"49916":1,"49917":2,"49918":2,"49919":2,"49920":1,"49921":1,"49922":1,"49923":2,"49924":2,"49925":1,"49926":1,"49927":1,"49928":1,"49929":1,"49930":1,"49931":1,"49932":1,"49933":2,"49934":2,"49935":1,"49936":1,"49937":2,"49938":2,"49939":2,"49940":2,"49941":2,"49942":2,"49943":1,"49944":1,"49945":1,"49946":2,"49947":2,"49948":1,"49949":2,"49950":1,"49951":1,"49952":1,"49953":1,"49954":2,"49955":2,"49956":1,"49957":2,"49958":1,"49959":1,"49960":2,"49961":2,"49962":2,"49963":2,"49964":1,"49965":2,"49966":2,"49967":1,"49968":1,"49969":2,"49970":1,"49971":1,"49972":2,"49973":1,"49974":2,"49975":2,"49976":1,"49977":2,"49978":2,"49979":1,"49980":1,"49981":2,"49982":2,"49983":2,"49984":2,"49985":2,"49986":1,"49987":1,"49988":1,"49989":1,"49990":2,"49991":2,"49992":1,"49993":1,"49994":2,"49995":2,"49996":1,"49997":2,"49998":2,"49999":2,"50000":1,"50001":1,"50002":1,"50003":2,"50004":2,"50005":1,"50006":2,"50007":2,"50008":1,"50009":1,"50010":1,"50011":1,"50012":1,"50013":1,"50014":2,"50015":1,"50016":2,"50017":1,"50018":2,"50019":2,"50020":1,"50021":1,"50022":1,"50023":2,"50024":1,"50025":2,"50026":2,"50027":2,"50028":1,"50029":1,"50030":1,"50031":1,"50032":2,"50033":2,"50034":2,"50035":1,"50036":2,"50037":2,"50038":1,"50039":2,"50040":1,"50041":1,"50042":1,"50043":1,"50044":1,"50045":2,"50046":2,"50047":2,"50048":2,"50049":1,"50050":2,"50051":1,"50052":1,"50053":1,"50054":2,"50055":1,"50056":1,"50057":2,"50058":2,"50059":1,"50060":2,"50061":2,"50062":1,"50063":1,"50064":2,"50065":2,"50066":1,"50067":2,"50068":1,"50069":1,"50070":2,"50071":2,"50072":2,"50073":2,"50074":1,"50075":2,"50076":1,"50077":2,"50078":2,"50079":2,"50080":2,"50081":1,"50082":2,"50083":2,"50084":1,"50085":1,"50086":1,"50087":2,"50088":1,"50089":1,"50090":1,"50091":1,"50092":2,"50093":1,"50094":2,"50095":2,"50096":1,"50097":1,"50098":2,"50099":1,"50100":1,"50101":1,"50102":1,"50103":2,"50104":1,"50105":1,"50106":1,"50107":2,"50108":1,"50109":2,"50110":2,"50111":2,"50112":1,"50113":2,"50114":2,"50115":2,"50116":1,"50117":1,"50118":1,"50119":1,"50120":2,"50121":2,"50122":1,"50123":1,"50124":1,"50125":1,"50126":1,"50127":2,"50128":2,"50129":1,"50130":1,"50131":1,"50132":2,"50133":1,"50134":1,"50135":1,"50136":1,"50137":2,"50138":2,"50139":1,"50140":1,"50141":1,"50142":1,"50143":1,"50144":2,"50145":1,"50146":2,"50147":1,"50148":2,"50149":1,"50150":1,"50151":1,"50152":2,"50153":2,"50154":1,"50155":1,"50156":2,"50157":2,"50158":2,"50159":2,"50160":1,"50161":1,"50162":1,"50163":2,"50164":1,"50165":1,"50166":1,"50167":1,"50168":2,"50169":2,"50170":1,"50171":2,"50172":2,"50173":2,"50174":1,"50175":1,"50176":1,"50177":1,"50178":1,"50179":2,"50180":2,"50181":1,"50182":1,"50183":2,"50184":2,"50185":2,"50186":1,"50187":1,"50188":1,"50189":1,"50190":2,"50191":1,"50192":2,"50193":1,"50194":2,"50195":1,"50196":2,"50197":1,"50198":1,"50199":1,"50200":1,"50201":1,"50202":2,"50203":2,"50204":1,"50205":2,"50206":2,"50207":1,"50208":1,"50209":1,"50210":1,"50211":1,"50212":2,"50213":2,"50214":2,"50215":2,"50216":1,"50217":1,"50218":2,"50219":1,"50220":1,"50221":1,"50222":1,"50223":1,"50224":1,"50225":2,"50226":2,"50227":2,"50228":1,"50229":2,"50230":2,"50231":1,"50232":1,"50233":2,"50234":2,"50235":2,"50236":1,"50237":1,"50238":2,"50239":1,"50240":2,"50241":2,"50242":2,"50243":1,"50244":2,"50245":2,"50246":2,"50247":1,"50248":1,"50249":1,"50250":2,"50251":2,"50252":1,"50253":2,"50254":1,"50255":2,"50256":1,"50257":2,"50258":2,"50259":1,"50260":1,"50261":2,"50262":1,"50263":1,"50264":1,"50265":2,"50266":1,"50267":1,"50268":2,"50269":2,"50270":2,"50271":2,"50272":2,"50273":1,"50274":2,"50275":1,"50276":1,"50277":1,"50278":1,"50279":1,"50280":2,"50281":2,"50282":2,"50283":1,"50284":2,"50285":2,"50286":1,"50287":2,"50288":1,"50289":1,"50290":2,"50291":1,"50292":2,"50293":2,"50294":2,"50295":2,"50296":2,"50297":1,"50298":1,"50299":1,"50300":2,"50301":1,"50302":2,"50303":2,"50304":2,"50305":2,"50306":2,"50307":2,"50308":1,"50309":1,"50310":1,"50311":2,"50312":2,"50313":1,"50314":1,"50315":2,"50316":1,"50317":1,"50318":2,"50319":1,"50320":2,"50321":2,"50322":1,"50323":1,"50324":2,"50325":1,"50326":2,"50327":1,"50328":2,"50329":2,"50330":1,"50331":1,"50332":1,"50333":2,"50334":2,"50335":2,"50336":2,"50337":2,"50338":1,"50339":1,"50340":2,"50341":1,"50342":1,"50343":1,"50344":1,"50345":1,"50346":1,"50347":1,"50348":2,"50349":1,"50350":1,"50351":2,"50352":1,"50353":1,"50354":2,"50355":1,"50356":2,"50357":1,"50358":2,"50359":1,"50360":1,"50361":1,"50362":1,"50363":1,"50364":1,"50365":1,"50366":1,"50367":1,"50368":2,"50369":1,"50370":1,"50371":2,"50372":1,"50373":1,"50374":2,"50375":1,"50376":2,"50377":2,"50378":2,"50379":1,"50380":1,"50381":1,"50382":2,"50383":1,"50384":1,"50385":1,"50386":1,"50387":2,"50388":1,"50389":2,"50390":2,"50391":1,"50392":2,"50393":2,"50394":2,"50395":1,"50396":2,"50397":1,"50398":2,"50399":1,"50400":1,"50401":1,"50402":2,"50403":1,"50404":2,"50405":2,"50406":2,"50407":2,"50408":1,"50409":1,"50410":1,"50411":1,"50412":1,"50413":2,"50414":2,"50415":2,"50416":2,"50417":2,"50418":1,"50419":2,"50420":2,"50421":1,"50422":1,"50423":2,"50424":1,"50425":1,"50426":2,"50427":2,"50428":2,"50429":2,"50430":1,"50431":2,"50432":2,"50433":1,"50434":2,"50435":1,"50436":2,"50437":1,"50438":2,"50439":1,"50440":1,"50441":2,"50442":1,"50443":1,"50444":2,"50445":1,"50446":1,"50447":2,"50448":2,"50449":2,"50450":1,"50451":1,"50452":2,"50453":2,"50454":1,"50455":2,"50456":1,"50457":1,"50458":1,"50459":1,"50460":2,"50461":1,"50462":2,"50463":1,"50464":2,"50465":1,"50466":2,"50467":1,"50468":1,"50469":1,"50470":2,"50471":2,"50472":1,"50473":1,"50474":2,"50475":2,"50476":2,"50477":2,"50478":2,"50479":2,"50480":2,"50481":2,"50482":1,"50483":2,"50484":1,"50485":1,"50486":1,"50487":1,"50488":2,"50489":2,"50490":2,"50491":1,"50492":1,"50493":1,"50494":2,"50495":2,"50496":1,"50497":1,"50498":2,"50499":2,"50500":2,"50501":2,"50502":1,"50503":2,"50504":1,"50505":1,"50506":2,"50507":2,"50508":1,"50509":2,"50510":2,"50511":1,"50512":2,"50513":2,"50514":1,"50515":1,"50516":2,"50517":1,"50518":1,"50519":1,"50520":1,"50521":1,"50522":2,"50523":2,"50524":2,"50525":1,"50526":2,"50527":2,"50528":1,"50529":2,"50530":2,"50531":2,"50532":2,"50533":1,"50534":2,"50535":2,"50536":1,"50537":1,"50538":1,"50539":2,"50540":2,"50541":2,"50542":2,"50543":2,"50544":1,"50545":1,"50546":1,"50547":1,"50548":2,"50549":2,"50550":2,"50551":1,"50552":2,"50553":2,"50554":1,"50555":2,"50556":1,"50557":1,"50558":1,"50559":2,"50560":2,"50561":2,"50562":1,"50563":2,"50564":1,"50565":1,"50566":2,"50567":1,"50568":1,"50569":1,"50570":1,"50571":1,"50572":1,"50573":2,"50574":1,"50575":2,"50576":2,"50577":1,"50578":2,"50579":1,"50580":2,"50581":1,"50582":2,"50583":1,"50584":2,"50585":2,"50586":2,"50587":2,"50588":2,"50589":2,"50590":1,"50591":2,"50592":2,"50593":1,"50594":1,"50595":2,"50596":1,"50597":1,"50598":2,"50599":2,"50600":1,"50601":1,"50602":2,"50603":1,"50604":1,"50605":1,"50606":2,"50607":1,"50608":2,"50609":2,"50610":1,"50611":2,"50612":1,"50613":2,"50614":2,"50615":2,"50616":1,"50617":1,"50618":1,"50619":1,"50620":1,"50621":1,"50622":2,"50623":1,"50624":1,"50625":1,"50626":1,"50627":1,"50628":2,"50629":2,"50630":1,"50631":2,"50632":1,"50633":1,"50634":2,"50635":2,"50636":2,"50637":1,"50638":2,"50639":1,"50640":2,"50641":1,"50642":1,"50643":1,"50644":1,"50645":2,"50646":1,"50647":1,"50648":2,"50649":2,"50650":1,"50651":2,"50652":2,"50653":1,"50654":2,"50655":2,"50656":2,"50657":2,"50658":1,"50659":2,"50660":1,"50661":1,"50662":2,"50663":1,"50664":2,"50665":1,"50666":1,"50667":1,"50668":1,"50669":2,"50670":2,"50671":1,"50672":2,"50673":1,"50674":1,"50675":1,"50676":2,"50677":2,"50678":1,"50679":1,"50680":1,"50681":2,"50682":2,"50683":1,"50684":2,"50685":2,"50686":2,"50687":1,"50688":1,"50689":1,"50690":2,"50691":2,"50692":2,"50693":1,"50694":1,"50695":2,"50696":1,"50697":1,"50698":2,"50699":1,"50700":2,"50701":2,"50702":1,"50703":1,"50704":1,"50705":2,"50706":2,"50707":1,"50708":2,"50709":1,"50710":1,"50711":1,"50712":2,"50713":2,"50714":1,"50715":2,"50716":1,"50717":1,"50718":1,"50719":1,"50720":2,"50721":2,"50722":2,"50723":1,"50724":2,"50725":2,"50726":1,"50727":1,"50728":1,"50729":2,"50730":2,"50731":2,"50732":1,"50733":2,"50734":2,"50735":2,"50736":2,"50737":2,"50738":2,"50739":1,"50740":2,"50741":2,"50742":1,"50743":1,"50744":2,"50745":1,"50746":1,"50747":2,"50748":2,"50749":2,"50750":2,"50751":2,"50752":2,"50753":2,"50754":2,"50755":1,"50756":2,"50757":2,"50758":2,"50759":1,"50760":2,"50761":1,"50762":1,"50763":2,"50764":2,"50765":2,"50766":2,"50767":2,"50768":2,"50769":2,"50770":1,"50771":1,"50772":1,"50773":2,"50774":2,"50775":2,"50776":1,"50777":2,"50778":2,"50779":2,"50780":2,"50781":2,"50782":1,"50783":1,"50784":1,"50785":2,"50786":2,"50787":2,"50788":1,"50789":1,"50790":1,"50791":1,"50792":2,"50793":2,"50794":1,"50795":1,"50796":1,"50797":1,"50798":1,"50799":1,"50800":2,"50801":2,"50802":2,"50803":2,"50804":2,"50805":1,"50806":2,"50807":1,"50808":1,"50809":2,"50810":1,"50811":1,"50812":2,"50813":2,"50814":1,"50815":1,"50816":1,"50817":2,"50818":2,"50819":1,"50820":1,"50821":2,"50822":1,"50823":1,"50824":1,"50825":2,"50826":2,"50827":2,"50828":1,"50829":2,"50830":1,"50831":1,"50832":2,"50833":1,"50834":1,"50835":1,"50836":2,"50837":2,"50838":2,"50839":2,"50840":2,"50841":2,"50842":1,"50843":1,"50844":2,"50845":1,"50846":1,"50847":2,"50848":1,"50849":1,"50850":1,"50851":2,"50852":2,"50853":2,"50854":1,"50855":1,"50856":2,"50857":1,"50858":2,"50859":1,"50860":2,"50861":1,"50862":2,"50863":2,"50864":1,"50865":1,"50866":2,"50867":1,"50868":2,"50869":1,"50870":1,"50871":2,"50872":1,"50873":1,"50874":1,"50875":2,"50876":1,"50877":1,"50878":2,"50879":1,"50880":1,"50881":2,"50882":1,"50883":1,"50884":1,"50885":2,"50886":2,"50887":2,"50888":1,"50889":2,"50890":1,"50891":2,"50892":2,"50893":2,"50894":1,"50895":1,"50896":1,"50897":2,"50898":1,"50899":2,"50900":1,"50901":1,"50902":2,"50903":1,"50904":1,"50905":1,"50906":1,"50907":2,"50908":1,"50909":2,"50910":2,"50911":2,"50912":2,"50913":1,"50914":2,"50915":2,"50916":1,"50917":1,"50918":1,"50919":1,"50920":1,"50921":1,"50922":1,"50923":1,"50924":1,"50925":2,"50926":2,"50927":2,"50928":2,"50929":1,"50930":1,"50931":1,"50932":1,"50933":1,"50934":2,"50935":1,"50936":2,"50937":1,"50938":2,"50939":2,"50940":1,"50941":2,"50942":2,"50943":1,"50944":1,"50945":1,"50946":1,"50947":2,"50948":1,"50949":1,"50950":2,"50951":1,"50952":1,"50953":2,"50954":1,"50955":2,"50956":1,"50957":2,"50958":1,"50959":2,"50960":2,"50961":1,"50962":1,"50963":2,"50964":2,"50965":2,"50966":1,"50967":1,"50968":2,"50969":1,"50970":2,"50971":1,"50972":1,"50973":2,"50974":1,"50975":2,"50976":2,"50977":2,"50978":2,"50979":1,"50980":2,"50981":2,"50982":1,"50983":1,"50984":1,"50985":2,"50986":1,"50987":1,"50988":2,"50989":1,"50990":1,"50991":1,"50992":1,"50993":1,"50994":1,"50995":1,"50996":1,"50997":1,"50998":2,"50999":1,"51000":2,"51001":1,"51002":2,"51003":1,"51004":1,"51005":2,"51006":2,"51007":2,"51008":1,"51009":2,"51010":1,"51011":2,"51012":2,"51013":2,"51014":1,"51015":2,"51016":1,"51017":1,"51018":2,"51019":1,"51020":2,"51021":1,"51022":2,"51023":1,"51024":2,"51025":1,"51026":2,"51027":1,"51028":2,"51029":2,"51030":1,"51031":1,"51032":2,"51033":2,"51034":2,"51035":1,"51036":1,"51037":1,"51038":2,"51039":2,"51040":2,"51041":2,"51042":2,"51043":2,"51044":1,"51045":1,"51046":2,"51047":1,"51048":2,"51049":2,"51050":2,"51051":2,"51052":1,"51053":2,"51054":1,"51055":1,"51056":2,"51057":2,"51058":1,"51059":2,"51060":1,"51061":2,"51062":1,"51063":2,"51064":1,"51065":2,"51066":1,"51067":2,"51068":1,"51069":1,"51070":2,"51071":1,"51072":1,"51073":2,"51074":1,"51075":2,"51076":2,"51077":1,"51078":1,"51079":1,"51080":2,"51081":1,"51082":1,"51083":2,"51084":1,"51085":2,"51086":2,"51087":2,"51088":2,"51089":2,"51090":1,"51091":2,"51092":1,"51093":2,"51094":2,"51095":1,"51096":1,"51097":2,"51098":1,"51099":1,"51100":1,"51101":2,"51102":1,"51103":2,"51104":1,"51105":1,"51106":1,"51107":2,"51108":2,"51109":2,"51110":2,"51111":2,"51112":1,"51113":1,"51114":1,"51115":1,"51116":2,"51117":1,"51118":1,"51119":2,"51120":2,"51121":1,"51122":1,"51123":2,"51124":1,"51125":2,"51126":2,"51127":2,"51128":2,"51129":1,"51130":2,"51131":1,"51132":2,"51133":1,"51134":1,"51135":1,"51136":1,"51137":1,"51138":1,"51139":1,"51140":1,"51141":1,"51142":2,"51143":1,"51144":1,"51145":1,"51146":1,"51147":1,"51148":1,"51149":1,"51150":2,"51151":1,"51152":1,"51153":2,"51154":1,"51155":1,"51156":1,"51157":2,"51158":1,"51159":2,"51160":1,"51161":2,"51162":1,"51163":1,"51164":2,"51165":1,"51166":2,"51167":2,"51168":1,"51169":1,"51170":1,"51171":2,"51172":1,"51173":1,"51174":1,"51175":2,"51176":1,"51177":2,"51178":1,"51179":1,"51180":1,"51181":2,"51182":2,"51183":2,"51184":1,"51185":2,"51186":2,"51187":2,"51188":2,"51189":2,"51190":1,"51191":1,"51192":1,"51193":1,"51194":1,"51195":1,"51196":2,"51197":2,"51198":2,"51199":2,"51200":1,"51201":2,"51202":2,"51203":1,"51204":1,"51205":2,"51206":2,"51207":1,"51208":1,"51209":2,"51210":1,"51211":2,"51212":2,"51213":2,"51214":2,"51215":2,"51216":2,"51217":2,"51218":2,"51219":1,"51220":1,"51221":1,"51222":1,"51223":1,"51224":2,"51225":2,"51226":1,"51227":1,"51228":2,"51229":2,"51230":2,"51231":1,"51232":1,"51233":1,"51234":1,"51235":1,"51236":2,"51237":2,"51238":2,"51239":2,"51240":2,"51241":1,"51242":2,"51243":1,"51244":2,"51245":2,"51246":1,"51247":2,"51248":1,"51249":2,"51250":2,"51251":2,"51252":2,"51253":1,"51254":1,"51255":2,"51256":2,"51257":2,"51258":1,"51259":1,"51260":1,"51261":1,"51262":2,"51263":2,"51264":1,"51265":2,"51266":1,"51267":1,"51268":1,"51269":1,"51270":1,"51271":1,"51272":2,"51273":1,"51274":2,"51275":2,"51276":1,"51277":1,"51278":1,"51279":1,"51280":2,"51281":2,"51282":1,"51283":1,"51284":2,"51285":2,"51286":1,"51287":1,"51288":1,"51289":1,"51290":1,"51291":1,"51292":1,"51293":2,"51294":1,"51295":2,"51296":2,"51297":2,"51298":2,"51299":2,"51300":1,"51301":2,"51302":1,"51303":2,"51304":2,"51305":1,"51306":1,"51307":2,"51308":1,"51309":1,"51310":2,"51311":1,"51312":2,"51313":2,"51314":1,"51315":1,"51316":2,"51317":1,"51318":2,"51319":2,"51320":1,"51321":1,"51322":2,"51323":2,"51324":1,"51325":2,"51326":2,"51327":2,"51328":1,"51329":1,"51330":2,"51331":2,"51332":1,"51333":2,"51334":1,"51335":1,"51336":1,"51337":2,"51338":2,"51339":2,"51340":2,"51341":2,"51342":2,"51343":1,"51344":1,"51345":1,"51346":1,"51347":1,"51348":2,"51349":1,"51350":2,"51351":1,"51352":1,"51353":1,"51354":2,"51355":2,"51356":1,"51357":2,"51358":2,"51359":2,"51360":2,"51361":1,"51362":1,"51363":1,"51364":2,"51365":2,"51366":2,"51367":2,"51368":1,"51369":1,"51370":1,"51371":2,"51372":1,"51373":1,"51374":2,"51375":1,"51376":1,"51377":1,"51378":1,"51379":2,"51380":1,"51381":1,"51382":2,"51383":1,"51384":2,"51385":1,"51386":2,"51387":1,"51388":1,"51389":1,"51390":1,"51391":2,"51392":2,"51393":1,"51394":2,"51395":1,"51396":1,"51397":1,"51398":1,"51399":1,"51400":2,"51401":2,"51402":1,"51403":2,"51404":1,"51405":1,"51406":1,"51407":2,"51408":1,"51409":1,"51410":1,"51411":1,"51412":2,"51413":1,"51414":1,"51415":2,"51416":2,"51417":1,"51418":2,"51419":2,"51420":1,"51421":1,"51422":2,"51423":2,"51424":1,"51425":1,"51426":2,"51427":2,"51428":1,"51429":2,"51430":2,"51431":1,"51432":2,"51433":1,"51434":1,"51435":1,"51436":2,"51437":2,"51438":1,"51439":2,"51440":1,"51441":1,"51442":2,"51443":2,"51444":2,"51445":2,"51446":2,"51447":2,"51448":2,"51449":1,"51450":2,"51451":1,"51452":2,"51453":1,"51454":2,"51455":2,"51456":2,"51457":1,"51458":1,"51459":1,"51460":2,"51461":1,"51462":1,"51463":1,"51464":2,"51465":1,"51466":2,"51467":2,"51468":2,"51469":2,"51470":2,"51471":1,"51472":2,"51473":1,"51474":1,"51475":1,"51476":2,"51477":2,"51478":1,"51479":2,"51480":1,"51481":1,"51482":1,"51483":1,"51484":1,"51485":1,"51486":1,"51487":1,"51488":2,"51489":1,"51490":2,"51491":2,"51492":2,"51493":2,"51494":1,"51495":2,"51496":1,"51497":2,"51498":1,"51499":1,"51500":2,"51501":2,"51502":1,"51503":1,"51504":1,"51505":2,"51506":2,"51507":2,"51508":2,"51509":1,"51510":2,"51511":1,"51512":2,"51513":1,"51514":2,"51515":1,"51516":2,"51517":1,"51518":2,"51519":1,"51520":2,"51521":1,"51522":1,"51523":2,"51524":2,"51525":2,"51526":1,"51527":1,"51528":1,"51529":1,"51530":2,"51531":2,"51532":1,"51533":2,"51534":2,"51535":1,"51536":1,"51537":2,"51538":1,"51539":1,"51540":2,"51541":1,"51542":1,"51543":1,"51544":1,"51545":1,"51546":2,"51547":1,"51548":1,"51549":1,"51550":2,"51551":2,"51552":1,"51553":2,"51554":1,"51555":2,"51556":2,"51557":1,"51558":1,"51559":2,"51560":1,"51561":2,"51562":1,"51563":1,"51564":2,"51565":2,"51566":2,"51567":1,"51568":2,"51569":1,"51570":1,"51571":2,"51572":2,"51573":2,"51574":2,"51575":1,"51576":1,"51577":2,"51578":1,"51579":1,"51580":2,"51581":2,"51582":1,"51583":2,"51584":2,"51585":1,"51586":1,"51587":2,"51588":1,"51589":1,"51590":2,"51591":2,"51592":1,"51593":2,"51594":2,"51595":1,"51596":2,"51597":2,"51598":1,"51599":2,"51600":1,"51601":2,"51602":1,"51603":2,"51604":1,"51605":2,"51606":1,"51607":2,"51608":1,"51609":1,"51610":2,"51611":1,"51612":1,"51613":1,"51614":1,"51615":2,"51616":1,"51617":1,"51618":2,"51619":1,"51620":1,"51621":2,"51622":1,"51623":1,"51624":1,"51625":2,"51626":1,"51627":2,"51628":2,"51629":2,"51630":2,"51631":1,"51632":2,"51633":2,"51634":2,"51635":2,"51636":2,"51637":1,"51638":2,"51639":1,"51640":2,"51641":2,"51642":2,"51643":2,"51644":1,"51645":1,"51646":1,"51647":2,"51648":2,"51649":1,"51650":2,"51651":1,"51652":2,"51653":1,"51654":1,"51655":2,"51656":1,"51657":1,"51658":2,"51659":1,"51660":2,"51661":2,"51662":1,"51663":2,"51664":1,"51665":2,"51666":2,"51667":2,"51668":2,"51669":2,"51670":1,"51671":2,"51672":1,"51673":1,"51674":1,"51675":1,"51676":2,"51677":2,"51678":1,"51679":2,"51680":1,"51681":1,"51682":2,"51683":1,"51684":1,"51685":2,"51686":1,"51687":1,"51688":1,"51689":2,"51690":2,"51691":2,"51692":1,"51693":1,"51694":1,"51695":1,"51696":1,"51697":2,"51698":2,"51699":2,"51700":1,"51701":1,"51702":2,"51703":2,"51704":1,"51705":1,"51706":1,"51707":1,"51708":2,"51709":1,"51710":1,"51711":2,"51712":2,"51713":1,"51714":1,"51715":1,"51716":2,"51717":1,"51718":1,"51719":2,"51720":1,"51721":1,"51722":2,"51723":1,"51724":2,"51725":2,"51726":2,"51727":1,"51728":2,"51729":1,"51730":1,"51731":2,"51732":1,"51733":2,"51734":1,"51735":2,"51736":1,"51737":2,"51738":2,"51739":2,"51740":1,"51741":1,"51742":1,"51743":2,"51744":1,"51745":1,"51746":1,"51747":2,"51748":1,"51749":2,"51750":1,"51751":1,"51752":1,"51753":1,"51754":2,"51755":2,"51756":2,"51757":1,"51758":1,"51759":2,"51760":1,"51761":2,"51762":2,"51763":2,"51764":2,"51765":2,"51766":1,"51767":1,"51768":2,"51769":1,"51770":1,"51771":1,"51772":2,"51773":1,"51774":2,"51775":2,"51776":1,"51777":2,"51778":2,"51779":1,"51780":2,"51781":1,"51782":1,"51783":2,"51784":2,"51785":2,"51786":2,"51787":2,"51788":2,"51789":1,"51790":2,"51791":1,"51792":2,"51793":2,"51794":1,"51795":2,"51796":1,"51797":1,"51798":1,"51799":2,"51800":1,"51801":2,"51802":2,"51803":1,"51804":1,"51805":2,"51806":1,"51807":2,"51808":2,"51809":2,"51810":2,"51811":1,"51812":1,"51813":2,"51814":2,"51815":1,"51816":1,"51817":1,"51818":1,"51819":2,"51820":2,"51821":2,"51822":2,"51823":1,"51824":1,"51825":1,"51826":1,"51827":1,"51828":2,"51829":2,"51830":2,"51831":2,"51832":1,"51833":2,"51834":2,"51835":1,"51836":2,"51837":1,"51838":2,"51839":2,"51840":2,"51841":1,"51842":2,"51843":2,"51844":1,"51845":1,"51846":1,"51847":2,"51848":2,"51849":2,"51850":2,"51851":1,"51852":1,"51853":1,"51854":1,"51855":2,"51856":1,"51857":2,"51858":2,"51859":2,"51860":1,"51861":1,"51862":2,"51863":2,"51864":1,"51865":2,"51866":2,"51867":1,"51868":2,"51869":2,"51870":2,"51871":2,"51872":1,"51873":2,"51874":2,"51875":1,"51876":2,"51877":1,"51878":1,"51879":2,"51880":2,"51881":2,"51882":1,"51883":1,"51884":2,"51885":2,"51886":1,"51887":2,"51888":2,"51889":1,"51890":1,"51891":1,"51892":1,"51893":2,"51894":1,"51895":1,"51896":1,"51897":2,"51898":2,"51899":1,"51900":1,"51901":2,"51902":2,"51903":1,"51904":1,"51905":1,"51906":2,"51907":2,"51908":2,"51909":1,"51910":1,"51911":2,"51912":2,"51913":1,"51914":2,"51915":1,"51916":2,"51917":2,"51918":2,"51919":1,"51920":1,"51921":2,"51922":2,"51923":2,"51924":1,"51925":1,"51926":1,"51927":2,"51928":2,"51929":1,"51930":1,"51931":2,"51932":2,"51933":1,"51934":1,"51935":2,"51936":2,"51937":2,"51938":2,"51939":2,"51940":2,"51941":2,"51942":2,"51943":2,"51944":2,"51945":1,"51946":1,"51947":1,"51948":1,"51949":1,"51950":2,"51951":2,"51952":1,"51953":1,"51954":2,"51955":1,"51956":2,"51957":2,"51958":2,"51959":1,"51960":1,"51961":1,"51962":1,"51963":2,"51964":2,"51965":1,"51966":2,"51967":1,"51968":1,"51969":1,"51970":1,"51971":2,"51972":2,"51973":1,"51974":2,"51975":2,"51976":2,"51977":1,"51978":1,"51979":1,"51980":2,"51981":2,"51982":2,"51983":1,"51984":1,"51985":1,"51986":2,"51987":1,"51988":2,"51989":1,"51990":2,"51991":1,"51992":2,"51993":1,"51994":2,"51995":1,"51996":1,"51997":2,"51998":1,"51999":2,"52000":1,"52001":2,"52002":1,"52003":2,"52004":2,"52005":2,"52006":1,"52007":2,"52008":2,"52009":2,"52010":2,"52011":2,"52012":1,"52013":1,"52014":2,"52015":2,"52016":2,"52017":1,"52018":2,"52019":2,"52020":1,"52021":1,"52022":1,"52023":1,"52024":2,"52025":2,"52026":1,"52027":2,"52028":1,"52029":2,"52030":1,"52031":1,"52032":1,"52033":1,"52034":1,"52035":1,"52036":1,"52037":2,"52038":2,"52039":2,"52040":2,"52041":1,"52042":1,"52043":1,"52044":1,"52045":1,"52046":2,"52047":1,"52048":2,"52049":2,"52050":2,"52051":1,"52052":2,"52053":2,"52054":2,"52055":1,"52056":1,"52057":1,"52058":2,"52059":2,"52060":2,"52061":1,"52062":2,"52063":1,"52064":1,"52065":1,"52066":1,"52067":1,"52068":1,"52069":1,"52070":1,"52071":2,"52072":1,"52073":2,"52074":2,"52075":2,"52076":2,"52077":2,"52078":1,"52079":1,"52080":1,"52081":2,"52082":1,"52083":1,"52084":1,"52085":1,"52086":2,"52087":2,"52088":1,"52089":2,"52090":1,"52091":1,"52092":2,"52093":2,"52094":1,"52095":2,"52096":1,"52097":1,"52098":2,"52099":2,"52100":1,"52101":2,"52102":2,"52103":1,"52104":1,"52105":1,"52106":2,"52107":1,"52108":2,"52109":2,"52110":1,"52111":2,"52112":2,"52113":2,"52114":2,"52115":1,"52116":1,"52117":2,"52118":1,"52119":2,"52120":2,"52121":2,"52122":1,"52123":1,"52124":2,"52125":1,"52126":1,"52127":1,"52128":1,"52129":1,"52130":2,"52131":2,"52132":2,"52133":2,"52134":1,"52135":2,"52136":1,"52137":1,"52138":1,"52139":1,"52140":1,"52141":2,"52142":2,"52143":1,"52144":2,"52145":1,"52146":1,"52147":1,"52148":2,"52149":1,"52150":2,"52151":1,"52152":2,"52153":2,"52154":1,"52155":2,"52156":1,"52157":2,"52158":1,"52159":1,"52160":1,"52161":2,"52162":1,"52163":2,"52164":1,"52165":1,"52166":2,"52167":1,"52168":2,"52169":2,"52170":2,"52171":1,"52172":1,"52173":1,"52174":2,"52175":2,"52176":2,"52177":1,"52178":1,"52179":2,"52180":2,"52181":1,"52182":2,"52183":2,"52184":1,"52185":1,"52186":1,"52187":2,"52188":2,"52189":1,"52190":1,"52191":2,"52192":2,"52193":1,"52194":1,"52195":2,"52196":2,"52197":1,"52198":1,"52199":1,"52200":2,"52201":2,"52202":2,"52203":2,"52204":1,"52205":1,"52206":1,"52207":2,"52208":2,"52209":1,"52210":1,"52211":2,"52212":1,"52213":2,"52214":1,"52215":1,"52216":2,"52217":2,"52218":2,"52219":2,"52220":2,"52221":2,"52222":1,"52223":1,"52224":2,"52225":1,"52226":1,"52227":1,"52228":2,"52229":1,"52230":2,"52231":2,"52232":2,"52233":1,"52234":1,"52235":1,"52236":2,"52237":2,"52238":1,"52239":2,"52240":1,"52241":1,"52242":2,"52243":1,"52244":1,"52245":2,"52246":1,"52247":1,"52248":1,"52249":2,"52250":1,"52251":1,"52252":2,"52253":2,"52254":1,"52255":2,"52256":2,"52257":2,"52258":1,"52259":2,"52260":1,"52261":2,"52262":1,"52263":2,"52264":1,"52265":2,"52266":2,"52267":2,"52268":2,"52269":1,"52270":2,"52271":1,"52272":1,"52273":1,"52274":1,"52275":1,"52276":1,"52277":1,"52278":1,"52279":2,"52280":1,"52281":2,"52282":2,"52283":1,"52284":2,"52285":2,"52286":2,"52287":2,"52288":2,"52289":2,"52290":1,"52291":1,"52292":2,"52293":2,"52294":1,"52295":2,"52296":2,"52297":2,"52298":2,"52299":2,"52300":2,"52301":2,"52302":2,"52303":2,"52304":2,"52305":1,"52306":2,"52307":2,"52308":2,"52309":1,"52310":2,"52311":1,"52312":2,"52313":1,"52314":2,"52315":1,"52316":1,"52317":2,"52318":1,"52319":2,"52320":2,"52321":1,"52322":2,"52323":1,"52324":2,"52325":1,"52326":1,"52327":1,"52328":2,"52329":1,"52330":2,"52331":1,"52332":2,"52333":2,"52334":2,"52335":2,"52336":1,"52337":2,"52338":2,"52339":2,"52340":2,"52341":2,"52342":1,"52343":1,"52344":1,"52345":2,"52346":2,"52347":2,"52348":1,"52349":2,"52350":1,"52351":1,"52352":1,"52353":1,"52354":2,"52355":2,"52356":2,"52357":1,"52358":1,"52359":1,"52360":1,"52361":2,"52362":1,"52363":1,"52364":1,"52365":1,"52366":2,"52367":2,"52368":2,"52369":1,"52370":2,"52371":1,"52372":1,"52373":1,"52374":1,"52375":2,"52376":1,"52377":2,"52378":2,"52379":1,"52380":1,"52381":1,"52382":2,"52383":2,"52384":2,"52385":2,"52386":1,"52387":1,"52388":2,"52389":2,"52390":2,"52391":2,"52392":2,"52393":1,"52394":1,"52395":2,"52396":2,"52397":1,"52398":2,"52399":2,"52400":1,"52401":2,"52402":2,"52403":1,"52404":1,"52405":1,"52406":2,"52407":2,"52408":1,"52409":2,"52410":2,"52411":1,"52412":1,"52413":1,"52414":1,"52415":1,"52416":2,"52417":2,"52418":2,"52419":2,"52420":2,"52421":1,"52422":1,"52423":2,"52424":2,"52425":2,"52426":2,"52427":1,"52428":2,"52429":2,"52430":2,"52431":1,"52432":1,"52433":1,"52434":2,"52435":1,"52436":2,"52437":2,"52438":2,"52439":1,"52440":2,"52441":2,"52442":2,"52443":1,"52444":2,"52445":2,"52446":1,"52447":2,"52448":2,"52449":1,"52450":2,"52451":1,"52452":2,"52453":2,"52454":1,"52455":2,"52456":1,"52457":2,"52458":1,"52459":2,"52460":2,"52461":1,"52462":2,"52463":2,"52464":2,"52465":1,"52466":1,"52467":1,"52468":2,"52469":1,"52470":1,"52471":1,"52472":2,"52473":2,"52474":2,"52475":1,"52476":1,"52477":2,"52478":2,"52479":1,"52480":1,"52481":2,"52482":1,"52483":2,"52484":1,"52485":2,"52486":2,"52487":2,"52488":1,"52489":1,"52490":1,"52491":2,"52492":2,"52493":2,"52494":2,"52495":2,"52496":2,"52497":1,"52498":2,"52499":1,"52500":2,"52501":1,"52502":1,"52503":1,"52504":2,"52505":1,"52506":2,"52507":1,"52508":1,"52509":2,"52510":2,"52511":1,"52512":1,"52513":1,"52514":2,"52515":2,"52516":2,"52517":2,"52518":1,"52519":2,"52520":2,"52521":1,"52522":2,"52523":2,"52524":1,"52525":2,"52526":1,"52527":1,"52528":1,"52529":1,"52530":1,"52531":1,"52532":1,"52533":2,"52534":1,"52535":2,"52536":1,"52537":2,"52538":2,"52539":1,"52540":2,"52541":1,"52542":2,"52543":2,"52544":2,"52545":1,"52546":1,"52547":2,"52548":2,"52549":2,"52550":1,"52551":1,"52552":1,"52553":2,"52554":1,"52555":2,"52556":1,"52557":1,"52558":2,"52559":2,"52560":2,"52561":2,"52562":2,"52563":1,"52564":1,"52565":1,"52566":1,"52567":2,"52568":1,"52569":2,"52570":2,"52571":2,"52572":1,"52573":1,"52574":2,"52575":1,"52576":1,"52577":1,"52578":1,"52579":2,"52580":2,"52581":1,"52582":1,"52583":2,"52584":1,"52585":2,"52586":2,"52587":2,"52588":2,"52589":1,"52590":1,"52591":1,"52592":2,"52593":1,"52594":1,"52595":1,"52596":2,"52597":2,"52598":2,"52599":2,"52600":1,"52601":2,"52602":1,"52603":1,"52604":1,"52605":1,"52606":1,"52607":1,"52608":1,"52609":2,"52610":2,"52611":2,"52612":2,"52613":2,"52614":2,"52615":2,"52616":1,"52617":1,"52618":2,"52619":1,"52620":1,"52621":1,"52622":2,"52623":1,"52624":2,"52625":2,"52626":2,"52627":2,"52628":1,"52629":1,"52630":2,"52631":1,"52632":1,"52633":2,"52634":1,"52635":2,"52636":2,"52637":2,"52638":2,"52639":1,"52640":1,"52641":2,"52642":1,"52643":2,"52644":1,"52645":1,"52646":2,"52647":1,"52648":2,"52649":2,"52650":2,"52651":2,"52652":1,"52653":2,"52654":2,"52655":1,"52656":1,"52657":2,"52658":1,"52659":2,"52660":2,"52661":1,"52662":1,"52663":2,"52664":2,"52665":2,"52666":2,"52667":1,"52668":1,"52669":1,"52670":1,"52671":1,"52672":1,"52673":1,"52674":1,"52675":2,"52676":2,"52677":2,"52678":1,"52679":1,"52680":1,"52681":1,"52682":1,"52683":1,"52684":1,"52685":1,"52686":1,"52687":2,"52688":1,"52689":1,"52690":1,"52691":1,"52692":1,"52693":2,"52694":2,"52695":1,"52696":1,"52697":2,"52698":2,"52699":1,"52700":1,"52701":2,"52702":1,"52703":2,"52704":1,"52705":2,"52706":2,"52707":2,"52708":2,"52709":1,"52710":1,"52711":1,"52712":1,"52713":2,"52714":1,"52715":2,"52716":2,"52717":1,"52718":1,"52719":2,"52720":2,"52721":2,"52722":1,"52723":2,"52724":2,"52725":2,"52726":1,"52727":1,"52728":1,"52729":2,"52730":1,"52731":1,"52732":2,"52733":2,"52734":2,"52735":1,"52736":1,"52737":1,"52738":2,"52739":1,"52740":1,"52741":1,"52742":1,"52743":2,"52744":1,"52745":1,"52746":2,"52747":2,"52748":1,"52749":2,"52750":2,"52751":2,"52752":1,"52753":1,"52754":1,"52755":2,"52756":1,"52757":2,"52758":1,"52759":1,"52760":2,"52761":1,"52762":1,"52763":2,"52764":1,"52765":1,"52766":1,"52767":1,"52768":2,"52769":2,"52770":2,"52771":1,"52772":2,"52773":1,"52774":1,"52775":2,"52776":1,"52777":2,"52778":2,"52779":2,"52780":2,"52781":1,"52782":1,"52783":1,"52784":2,"52785":1,"52786":2,"52787":2,"52788":2,"52789":2,"52790":1,"52791":2,"52792":2,"52793":2,"52794":1,"52795":2,"52796":1,"52797":2,"52798":1,"52799":1,"52800":1,"52801":2,"52802":2,"52803":2,"52804":1,"52805":1,"52806":2,"52807":2,"52808":1,"52809":1,"52810":1,"52811":1,"52812":1,"52813":2,"52814":2,"52815":2,"52816":2,"52817":1,"52818":2,"52819":1,"52820":1,"52821":2,"52822":2,"52823":2,"52824":2,"52825":1,"52826":2,"52827":1,"52828":2,"52829":2,"52830":2,"52831":1,"52832":1,"52833":2,"52834":1,"52835":1,"52836":1,"52837":1,"52838":2,"52839":1,"52840":1,"52841":2,"52842":1,"52843":1,"52844":1,"52845":2,"52846":2,"52847":2,"52848":1,"52849":1,"52850":1,"52851":1,"52852":1,"52853":1,"52854":2,"52855":1,"52856":1,"52857":2,"52858":2,"52859":2,"52860":2,"52861":2,"52862":1,"52863":1,"52864":2,"52865":1,"52866":1,"52867":1,"52868":2,"52869":2,"52870":2,"52871":1,"52872":2,"52873":1,"52874":2,"52875":2,"52876":1,"52877":2,"52878":2,"52879":2,"52880":2,"52881":1,"52882":1,"52883":2,"52884":1,"52885":1,"52886":2,"52887":1,"52888":1,"52889":1,"52890":1,"52891":2,"52892":2,"52893":1,"52894":1,"52895":1,"52896":2,"52897":1,"52898":2,"52899":2,"52900":1,"52901":1,"52902":2,"52903":2,"52904":2,"52905":2,"52906":2,"52907":2,"52908":2,"52909":2,"52910":2,"52911":2,"52912":2,"52913":1,"52914":1,"52915":1,"52916":1,"52917":1,"52918":1,"52919":2,"52920":2,"52921":1,"52922":2,"52923":1,"52924":1,"52925":1,"52926":1,"52927":1,"52928":2,"52929":1,"52930":1,"52931":1,"52932":2,"52933":2,"52934":2,"52935":2,"52936":1,"52937":2,"52938":2,"52939":2,"52940":1,"52941":1,"52942":1,"52943":1,"52944":2,"52945":2,"52946":1,"52947":2,"52948":1,"52949":2,"52950":2,"52951":1,"52952":2,"52953":1,"52954":1,"52955":2,"52956":1,"52957":2,"52958":2,"52959":1,"52960":1,"52961":1,"52962":1,"52963":2,"52964":2,"52965":2,"52966":1,"52967":2,"52968":1,"52969":2,"52970":1,"52971":2,"52972":2,"52973":1,"52974":1,"52975":1,"52976":2,"52977":2,"52978":1,"52979":1,"52980":1,"52981":1,"52982":2,"52983":1,"52984":1,"52985":2,"52986":2,"52987":2,"52988":2,"52989":2,"52990":2,"52991":1,"52992":1,"52993":1,"52994":2,"52995":2,"52996":1,"52997":2,"52998":2,"52999":2,"53000":2,"53001":1,"53002":2,"53003":2,"53004":1,"53005":2,"53006":2,"53007":2,"53008":1,"53009":1,"53010":2,"53011":2,"53012":2,"53013":1,"53014":2,"53015":1,"53016":1,"53017":1,"53018":1,"53019":1,"53020":1,"53021":2,"53022":2,"53023":2,"53024":1,"53025":1,"53026":1,"53027":2,"53028":1,"53029":1,"53030":2,"53031":1,"53032":1,"53033":1,"53034":2,"53035":2,"53036":1,"53037":1,"53038":2,"53039":1,"53040":1,"53041":1,"53042":1,"53043":1,"53044":2,"53045":2,"53046":2,"53047":1,"53048":2,"53049":1,"53050":2,"53051":1,"53052":2,"53053":1,"53054":1,"53055":2,"53056":1,"53057":1,"53058":2,"53059":1,"53060":2,"53061":2,"53062":2,"53063":2,"53064":1,"53065":2,"53066":1,"53067":2,"53068":2,"53069":2,"53070":1,"53071":2,"53072":2,"53073":2,"53074":2,"53075":2,"53076":2,"53077":1,"53078":2,"53079":2,"53080":2,"53081":1,"53082":2,"53083":1,"53084":1,"53085":1,"53086":1,"53087":1,"53088":1,"53089":2,"53090":1,"53091":2,"53092":2,"53093":2,"53094":2,"53095":1,"53096":2,"53097":2,"53098":2,"53099":1,"53100":2,"53101":1,"53102":2,"53103":1,"53104":1,"53105":1,"53106":2,"53107":1,"53108":1,"53109":2,"53110":1,"53111":2,"53112":1,"53113":1,"53114":1,"53115":2,"53116":2,"53117":2,"53118":1,"53119":1,"53120":2,"53121":2,"53122":1,"53123":2,"53124":2,"53125":1,"53126":1,"53127":1,"53128":2,"53129":1,"53130":2,"53131":1,"53132":2,"53133":1,"53134":1,"53135":2,"53136":2,"53137":2,"53138":2,"53139":2,"53140":2,"53141":1,"53142":2,"53143":2,"53144":2,"53145":1,"53146":2,"53147":2,"53148":2,"53149":1,"53150":2,"53151":2,"53152":1,"53153":2,"53154":1,"53155":2,"53156":1,"53157":1,"53158":2,"53159":2,"53160":2,"53161":2,"53162":1,"53163":1,"53164":2,"53165":2,"53166":1,"53167":2,"53168":2,"53169":2,"53170":2,"53171":1,"53172":2,"53173":1,"53174":2,"53175":1,"53176":2,"53177":2,"53178":1,"53179":2,"53180":2,"53181":1,"53182":2,"53183":2,"53184":2,"53185":2,"53186":1,"53187":2,"53188":1,"53189":1,"53190":1,"53191":1,"53192":2,"53193":2,"53194":1,"53195":2,"53196":1,"53197":2,"53198":1,"53199":1,"53200":2,"53201":2,"53202":1,"53203":2,"53204":2,"53205":1,"53206":2,"53207":1,"53208":1,"53209":1,"53210":1,"53211":1,"53212":2,"53213":1,"53214":2,"53215":2,"53216":1,"53217":1,"53218":2,"53219":2,"53220":1,"53221":2,"53222":2,"53223":1,"53224":1,"53225":2,"53226":2,"53227":2,"53228":1,"53229":2,"53230":2,"53231":1,"53232":2,"53233":1,"53234":1,"53235":1,"53236":1,"53237":1,"53238":2,"53239":1,"53240":2,"53241":1,"53242":1,"53243":2,"53244":2,"53245":2,"53246":1,"53247":1,"53248":1,"53249":1,"53250":1,"53251":1,"53252":2,"53253":2,"53254":2,"53255":1,"53256":1,"53257":2,"53258":2,"53259":2,"53260":1,"53261":2,"53262":2,"53263":2,"53264":1,"53265":1,"53266":2,"53267":1,"53268":1,"53269":2,"53270":2,"53271":2,"53272":2,"53273":2,"53274":1,"53275":1,"53276":2,"53277":2,"53278":1,"53279":2,"53280":1,"53281":2,"53282":1,"53283":1,"53284":2,"53285":1,"53286":2,"53287":2,"53288":2,"53289":1,"53290":2,"53291":2,"53292":1,"53293":2,"53294":2,"53295":2,"53296":2,"53297":1,"53298":2,"53299":2,"53300":1,"53301":2,"53302":2,"53303":1,"53304":1,"53305":1,"53306":2,"53307":2,"53308":1,"53309":2,"53310":1,"53311":1,"53312":2,"53313":1,"53314":2,"53315":1,"53316":1,"53317":1,"53318":1,"53319":2,"53320":1,"53321":1,"53322":1,"53323":1,"53324":2,"53325":2,"53326":1,"53327":2,"53328":2,"53329":2,"53330":2,"53331":1,"53332":2,"53333":2,"53334":1,"53335":2,"53336":1,"53337":2,"53338":1,"53339":1,"53340":1,"53341":1,"53342":2,"53343":2,"53344":1,"53345":1,"53346":2,"53347":1,"53348":1,"53349":2,"53350":2,"53351":1,"53352":1,"53353":2,"53354":1,"53355":2,"53356":1,"53357":2,"53358":1,"53359":2,"53360":1,"53361":1,"53362":1,"53363":2,"53364":1,"53365":1,"53366":1,"53367":2,"53368":2,"53369":1,"53370":1,"53371":2,"53372":2,"53373":2,"53374":2,"53375":1,"53376":2,"53377":1,"53378":2,"53379":1,"53380":1,"53381":1,"53382":1,"53383":2,"53384":2,"53385":2,"53386":1,"53387":2,"53388":2,"53389":2,"53390":1,"53391":2,"53392":1,"53393":1,"53394":1,"53395":1,"53396":1,"53397":1,"53398":1,"53399":1,"53400":2,"53401":1,"53402":1,"53403":1,"53404":1,"53405":1,"53406":2,"53407":1,"53408":1,"53409":1,"53410":1,"53411":2,"53412":2,"53413":2,"53414":2,"53415":1,"53416":1,"53417":2,"53418":1,"53419":2,"53420":2,"53421":2,"53422":2,"53423":1,"53424":1,"53425":1,"53426":2,"53427":2,"53428":2,"53429":1,"53430":1,"53431":1,"53432":2,"53433":2,"53434":1,"53435":1,"53436":2,"53437":2,"53438":2,"53439":1,"53440":1,"53441":1,"53442":1,"53443":1,"53444":1,"53445":2,"53446":1,"53447":1,"53448":2,"53449":2,"53450":1,"53451":1,"53452":1,"53453":2,"53454":2,"53455":2,"53456":1,"53457":1,"53458":2,"53459":1,"53460":1,"53461":1,"53462":2,"53463":2,"53464":2,"53465":2,"53466":1,"53467":2,"53468":1,"53469":1,"53470":1,"53471":2,"53472":2,"53473":2,"53474":1,"53475":2,"53476":2,"53477":2,"53478":1,"53479":2,"53480":1,"53481":2,"53482":1,"53483":1,"53484":1,"53485":2,"53486":2,"53487":1,"53488":1,"53489":1,"53490":1,"53491":1,"53492":2,"53493":1,"53494":2,"53495":2,"53496":2,"53497":2,"53498":1,"53499":2,"53500":2,"53501":2,"53502":2,"53503":1,"53504":1,"53505":2,"53506":1,"53507":2,"53508":1,"53509":1,"53510":1,"53511":1,"53512":1,"53513":1,"53514":2,"53515":1,"53516":2,"53517":2,"53518":1,"53519":2,"53520":2,"53521":2,"53522":1,"53523":2,"53524":1,"53525":1,"53526":1,"53527":1,"53528":2,"53529":2,"53530":2,"53531":2,"53532":2,"53533":2,"53534":1,"53535":2,"53536":1,"53537":1,"53538":2,"53539":2,"53540":1,"53541":2,"53542":1,"53543":2,"53544":1,"53545":1,"53546":1,"53547":1,"53548":1,"53549":1,"53550":1,"53551":2,"53552":2,"53553":2,"53554":2,"53555":2,"53556":1,"53557":1,"53558":1,"53559":2,"53560":2,"53561":2,"53562":1,"53563":1,"53564":1,"53565":2,"53566":2,"53567":2,"53568":2,"53569":2,"53570":1,"53571":2,"53572":2,"53573":1,"53574":1,"53575":1,"53576":1,"53577":2,"53578":2,"53579":1,"53580":1,"53581":2,"53582":1,"53583":2,"53584":2,"53585":2,"53586":1,"53587":2,"53588":2,"53589":2,"53590":2,"53591":2,"53592":1,"53593":1,"53594":2,"53595":2,"53596":2,"53597":2,"53598":2,"53599":2,"53600":2,"53601":1,"53602":1,"53603":2,"53604":1,"53605":1,"53606":2,"53607":1,"53608":1,"53609":2,"53610":1,"53611":2,"53612":1,"53613":1,"53614":1,"53615":2,"53616":1,"53617":2,"53618":2,"53619":1,"53620":2,"53621":2,"53622":1,"53623":1,"53624":2,"53625":1,"53626":2,"53627":2,"53628":2,"53629":1,"53630":2,"53631":2,"53632":2,"53633":2,"53634":1,"53635":1,"53636":1,"53637":1,"53638":1,"53639":2,"53640":1,"53641":1,"53642":2,"53643":1,"53644":2,"53645":1,"53646":2,"53647":2,"53648":1,"53649":1,"53650":2,"53651":2,"53652":2,"53653":2,"53654":1,"53655":1,"53656":1,"53657":2,"53658":2,"53659":2,"53660":2,"53661":2,"53662":1,"53663":1,"53664":1,"53665":1,"53666":2,"53667":2,"53668":2,"53669":2,"53670":2,"53671":2,"53672":1,"53673":1,"53674":2,"53675":2,"53676":2,"53677":2,"53678":2,"53679":1,"53680":2,"53681":2,"53682":1,"53683":2,"53684":1,"53685":2,"53686":2,"53687":2,"53688":1,"53689":2,"53690":2,"53691":2,"53692":1,"53693":2,"53694":1,"53695":1,"53696":2,"53697":1,"53698":2,"53699":1,"53700":2,"53701":2,"53702":1,"53703":2,"53704":1,"53705":2,"53706":2,"53707":1,"53708":2,"53709":2,"53710":2,"53711":2,"53712":1,"53713":2,"53714":2,"53715":2,"53716":1,"53717":1,"53718":2,"53719":2,"53720":1,"53721":2,"53722":2,"53723":1,"53724":1,"53725":2,"53726":1,"53727":1,"53728":1,"53729":1,"53730":2,"53731":1,"53732":1,"53733":2,"53734":2,"53735":2,"53736":2,"53737":2,"53738":1,"53739":2,"53740":1,"53741":1,"53742":2,"53743":2,"53744":2,"53745":2,"53746":1,"53747":1,"53748":2,"53749":2,"53750":1,"53751":1,"53752":2,"53753":1,"53754":2,"53755":1,"53756":2,"53757":1,"53758":1,"53759":1,"53760":2,"53761":1,"53762":2,"53763":2,"53764":2,"53765":1,"53766":2,"53767":1,"53768":1,"53769":2,"53770":1,"53771":2,"53772":1,"53773":2,"53774":2,"53775":2,"53776":2,"53777":1,"53778":2,"53779":2,"53780":1,"53781":2,"53782":1,"53783":1,"53784":2,"53785":1,"53786":2,"53787":1,"53788":2,"53789":2,"53790":2,"53791":1,"53792":2,"53793":1,"53794":1,"53795":2,"53796":2,"53797":2,"53798":2,"53799":2,"53800":2,"53801":1,"53802":1,"53803":2,"53804":2,"53805":2,"53806":2,"53807":2,"53808":1,"53809":2,"53810":1,"53811":2,"53812":1,"53813":1,"53814":2,"53815":2,"53816":2,"53817":1,"53818":2,"53819":1,"53820":2,"53821":1,"53822":1,"53823":2,"53824":1,"53825":2,"53826":2,"53827":2,"53828":1,"53829":1,"53830":1,"53831":1,"53832":1,"53833":2,"53834":2,"53835":1,"53836":1,"53837":2,"53838":2,"53839":1,"53840":1,"53841":2,"53842":1,"53843":1,"53844":2,"53845":1,"53846":2,"53847":2,"53848":2,"53849":2,"53850":1,"53851":2,"53852":1,"53853":1,"53854":1,"53855":2,"53856":2,"53857":2,"53858":1,"53859":2,"53860":2,"53861":1,"53862":1,"53863":1,"53864":1,"53865":2,"53866":2,"53867":2,"53868":1,"53869":2,"53870":1,"53871":2,"53872":2,"53873":2,"53874":2,"53875":1,"53876":2,"53877":2,"53878":1,"53879":1,"53880":2,"53881":2,"53882":2,"53883":1,"53884":2,"53885":2,"53886":1,"53887":1,"53888":1,"53889":1,"53890":2,"53891":2,"53892":1,"53893":1,"53894":2,"53895":2,"53896":1,"53897":1,"53898":1,"53899":1,"53900":1,"53901":2,"53902":1,"53903":2,"53904":2,"53905":1,"53906":2,"53907":2,"53908":1,"53909":2,"53910":2,"53911":2,"53912":2,"53913":2,"53914":2,"53915":1,"53916":2,"53917":1,"53918":1,"53919":2,"53920":1,"53921":1,"53922":2,"53923":2,"53924":1,"53925":1,"53926":1,"53927":2,"53928":1,"53929":2,"53930":2,"53931":1,"53932":1,"53933":1,"53934":1,"53935":2,"53936":2,"53937":2,"53938":2,"53939":1,"53940":2,"53941":2,"53942":2,"53943":2,"53944":2,"53945":2,"53946":2,"53947":2,"53948":2,"53949":2,"53950":1,"53951":1,"53952":1,"53953":1,"53954":1,"53955":2,"53956":2,"53957":2,"53958":1,"53959":1,"53960":1,"53961":1,"53962":2,"53963":2,"53964":2,"53965":1,"53966":1,"53967":1,"53968":2,"53969":1,"53970":1,"53971":1,"53972":2,"53973":1,"53974":1,"53975":1,"53976":2,"53977":2,"53978":1,"53979":1,"53980":2,"53981":2,"53982":1,"53983":1,"53984":1,"53985":1,"53986":1,"53987":2,"53988":2,"53989":2,"53990":1,"53991":1,"53992":1,"53993":1,"53994":2,"53995":2,"53996":1,"53997":1,"53998":2,"53999":2,"54000":1,"54001":2,"54002":1,"54003":1,"54004":2,"54005":1,"54006":1,"54007":1,"54008":2,"54009":2,"54010":2,"54011":2,"54012":2,"54013":1,"54014":1,"54015":2,"54016":1,"54017":1,"54018":1,"54019":2,"54020":2,"54021":1,"54022":1,"54023":2,"54024":2,"54025":2,"54026":2,"54027":1,"54028":1,"54029":2,"54030":2,"54031":2,"54032":1,"54033":2,"54034":1,"54035":2,"54036":2,"54037":1,"54038":1,"54039":1,"54040":1,"54041":2,"54042":2,"54043":2,"54044":1,"54045":1,"54046":1,"54047":1,"54048":2,"54049":2,"54050":2,"54051":1,"54052":2,"54053":2,"54054":1,"54055":2,"54056":1,"54057":2,"54058":2,"54059":1,"54060":2,"54061":2,"54062":2,"54063":2,"54064":1,"54065":2,"54066":1,"54067":2,"54068":2,"54069":2,"54070":2,"54071":2,"54072":2,"54073":2,"54074":1,"54075":2,"54076":2,"54077":1,"54078":1,"54079":2,"54080":1,"54081":1,"54082":2,"54083":2,"54084":2,"54085":2,"54086":1,"54087":2,"54088":2,"54089":1,"54090":1,"54091":2,"54092":1,"54093":1,"54094":1,"54095":1,"54096":1,"54097":2,"54098":1,"54099":2,"54100":1,"54101":1,"54102":1,"54103":1,"54104":2,"54105":1,"54106":1,"54107":1,"54108":2,"54109":2,"54110":1,"54111":2,"54112":2,"54113":2,"54114":1,"54115":2,"54116":2,"54117":1,"54118":2,"54119":2,"54120":1,"54121":1,"54122":2,"54123":1,"54124":1,"54125":1,"54126":2,"54127":1,"54128":2,"54129":1,"54130":1,"54131":2,"54132":2,"54133":2,"54134":2,"54135":2,"54136":2,"54137":2,"54138":2,"54139":1,"54140":1,"54141":1,"54142":2,"54143":2,"54144":2,"54145":1,"54146":1,"54147":2,"54148":2,"54149":1,"54150":1,"54151":2,"54152":1,"54153":2,"54154":1,"54155":2,"54156":2,"54157":1,"54158":2,"54159":1,"54160":1,"54161":1,"54162":1,"54163":1,"54164":1,"54165":2,"54166":2,"54167":2,"54168":1,"54169":1,"54170":2,"54171":2,"54172":2,"54173":2,"54174":1,"54175":2,"54176":1,"54177":2,"54178":2,"54179":1,"54180":2,"54181":2,"54182":2,"54183":2,"54184":1,"54185":1,"54186":1,"54187":1,"54188":2,"54189":1,"54190":2,"54191":1,"54192":2,"54193":2,"54194":1,"54195":2,"54196":2,"54197":2,"54198":1,"54199":2,"54200":1,"54201":1,"54202":2,"54203":2,"54204":1,"54205":1,"54206":1,"54207":1,"54208":1,"54209":1,"54210":1,"54211":1,"54212":1,"54213":1,"54214":1,"54215":1,"54216":2,"54217":2,"54218":1,"54219":2,"54220":2,"54221":1,"54222":1,"54223":2,"54224":1,"54225":1,"54226":2,"54227":2,"54228":1,"54229":2,"54230":2,"54231":1,"54232":1,"54233":2,"54234":2,"54235":2,"54236":1,"54237":1,"54238":1,"54239":2,"54240":1,"54241":1,"54242":2,"54243":1,"54244":2,"54245":1,"54246":2,"54247":1,"54248":1,"54249":2,"54250":2,"54251":1,"54252":1,"54253":1,"54254":1,"54255":1,"54256":1,"54257":1,"54258":2,"54259":2,"54260":1,"54261":2,"54262":1,"54263":1,"54264":2,"54265":2,"54266":2,"54267":1,"54268":1,"54269":1,"54270":2,"54271":2,"54272":1,"54273":1,"54274":1,"54275":1,"54276":1,"54277":1,"54278":2,"54279":1,"54280":1,"54281":1,"54282":2,"54283":2,"54284":2,"54285":1,"54286":2,"54287":2,"54288":2,"54289":2,"54290":1,"54291":2,"54292":1,"54293":2,"54294":1,"54295":2,"54296":1,"54297":2,"54298":2,"54299":2,"54300":1,"54301":1,"54302":1,"54303":1,"54304":1,"54305":1,"54306":2,"54307":1,"54308":1,"54309":1,"54310":2,"54311":2,"54312":2,"54313":2,"54314":1,"54315":2,"54316":2,"54317":2,"54318":1,"54319":1,"54320":2,"54321":1,"54322":1,"54323":2,"54324":1,"54325":1,"54326":2,"54327":2,"54328":1,"54329":2,"54330":2,"54331":2,"54332":2,"54333":2,"54334":1,"54335":1,"54336":1,"54337":2,"54338":1,"54339":1,"54340":2,"54341":1,"54342":1,"54343":2,"54344":1,"54345":1,"54346":2,"54347":1,"54348":1,"54349":2,"54350":1,"54351":1,"54352":2,"54353":1,"54354":2,"54355":1,"54356":1,"54357":1,"54358":2,"54359":1,"54360":1,"54361":1,"54362":2,"54363":1,"54364":1,"54365":1,"54366":2,"54367":2,"54368":1,"54369":2,"54370":1,"54371":1,"54372":1,"54373":1,"54374":2,"54375":1,"54376":2,"54377":1,"54378":2,"54379":2,"54380":2,"54381":1,"54382":2,"54383":1,"54384":1,"54385":2,"54386":2,"54387":1,"54388":1,"54389":2,"54390":1,"54391":1,"54392":1,"54393":2,"54394":1,"54395":1,"54396":1,"54397":1,"54398":1,"54399":1,"54400":1,"54401":1,"54402":1,"54403":1,"54404":1,"54405":1,"54406":2,"54407":1,"54408":2,"54409":1,"54410":2,"54411":1,"54412":1,"54413":1,"54414":2,"54415":1,"54416":2,"54417":1,"54418":2,"54419":2,"54420":2,"54421":2,"54422":2,"54423":2,"54424":1,"54425":2,"54426":1,"54427":1,"54428":2,"54429":2,"54430":2,"54431":1,"54432":2,"54433":1,"54434":1,"54435":2,"54436":2,"54437":1,"54438":1,"54439":1,"54440":2,"54441":1,"54442":1,"54443":2,"54444":1,"54445":2,"54446":1,"54447":2,"54448":2,"54449":2,"54450":1,"54451":1,"54452":1,"54453":1,"54454":2,"54455":1,"54456":1,"54457":1,"54458":1,"54459":1,"54460":1,"54461":1,"54462":2,"54463":2,"54464":1,"54465":2,"54466":2,"54467":1,"54468":1,"54469":1,"54470":1,"54471":1,"54472":1,"54473":1,"54474":1,"54475":2,"54476":1,"54477":2,"54478":1,"54479":2,"54480":2,"54481":2,"54482":1,"54483":2,"54484":2,"54485":2,"54486":2,"54487":1,"54488":2,"54489":2,"54490":1,"54491":2,"54492":2,"54493":2,"54494":1,"54495":1,"54496":2,"54497":2,"54498":1,"54499":1,"54500":2,"54501":2,"54502":1,"54503":1,"54504":2,"54505":1,"54506":1,"54507":1,"54508":1,"54509":1,"54510":2,"54511":2,"54512":2,"54513":2,"54514":2,"54515":1,"54516":1,"54517":1,"54518":1,"54519":2,"54520":2,"54521":2,"54522":2,"54523":2,"54524":2,"54525":1,"54526":1,"54527":2,"54528":2,"54529":1,"54530":2,"54531":1,"54532":2,"54533":1,"54534":2,"54535":1,"54536":2,"54537":1,"54538":1,"54539":1,"54540":2,"54541":1,"54542":2,"54543":1,"54544":1,"54545":2,"54546":2,"54547":2,"54548":2,"54549":1,"54550":2,"54551":2,"54552":2,"54553":1,"54554":1,"54555":2,"54556":2,"54557":1,"54558":1,"54559":1,"54560":2,"54561":1,"54562":2,"54563":2,"54564":2,"54565":2,"54566":2,"54567":1,"54568":2,"54569":1,"54570":2,"54571":1,"54572":2,"54573":1,"54574":2,"54575":1,"54576":2,"54577":2,"54578":1,"54579":2,"54580":2,"54581":1,"54582":2,"54583":1,"54584":2,"54585":2,"54586":2,"54587":2,"54588":1,"54589":2,"54590":2,"54591":1,"54592":1,"54593":2,"54594":2,"54595":2,"54596":1,"54597":1,"54598":2,"54599":2,"54600":2,"54601":1,"54602":1,"54603":2,"54604":1,"54605":1,"54606":2,"54607":1,"54608":2,"54609":1,"54610":2,"54611":1,"54612":2,"54613":2,"54614":1,"54615":2,"54616":1,"54617":2,"54618":1,"54619":2,"54620":1,"54621":1,"54622":2,"54623":2,"54624":1,"54625":2,"54626":2,"54627":1,"54628":1,"54629":1,"54630":1,"54631":2,"54632":2,"54633":2,"54634":2,"54635":2,"54636":1,"54637":2,"54638":1,"54639":1,"54640":2,"54641":1,"54642":1,"54643":1,"54644":1,"54645":2,"54646":2,"54647":2,"54648":2,"54649":2,"54650":1,"54651":2,"54652":1,"54653":1,"54654":2,"54655":2,"54656":2,"54657":2,"54658":2,"54659":1,"54660":1,"54661":2,"54662":1,"54663":2,"54664":2,"54665":1,"54666":1,"54667":1,"54668":2,"54669":1,"54670":1,"54671":1,"54672":1,"54673":2,"54674":2,"54675":2,"54676":1,"54677":1,"54678":1,"54679":2,"54680":1,"54681":1,"54682":2,"54683":1,"54684":1,"54685":2,"54686":1,"54687":2,"54688":2,"54689":1,"54690":1,"54691":1,"54692":1,"54693":1,"54694":1,"54695":1,"54696":1,"54697":2,"54698":1,"54699":2,"54700":1,"54701":1,"54702":1,"54703":1,"54704":1,"54705":2,"54706":2,"54707":2,"54708":1,"54709":2,"54710":1,"54711":2,"54712":1,"54713":1,"54714":2,"54715":1,"54716":1,"54717":2,"54718":1,"54719":2,"54720":1,"54721":2,"54722":1,"54723":2,"54724":1,"54725":2,"54726":2,"54727":2,"54728":1,"54729":2,"54730":1,"54731":1,"54732":2,"54733":2,"54734":1,"54735":1,"54736":1,"54737":2,"54738":2,"54739":2,"54740":2,"54741":1,"54742":2,"54743":2,"54744":1,"54745":1,"54746":1,"54747":1,"54748":1,"54749":2,"54750":1,"54751":1,"54752":2,"54753":2,"54754":1,"54755":2,"54756":2,"54757":1,"54758":1,"54759":1,"54760":1,"54761":2,"54762":1,"54763":2,"54764":2,"54765":1,"54766":2,"54767":1,"54768":2,"54769":1,"54770":2,"54771":1,"54772":2,"54773":1,"54774":2,"54775":1,"54776":2,"54777":1,"54778":2,"54779":2,"54780":2,"54781":2,"54782":1,"54783":1,"54784":1,"54785":2,"54786":2,"54787":2,"54788":1,"54789":2,"54790":2,"54791":1,"54792":2,"54793":1,"54794":2,"54795":1,"54796":1,"54797":2,"54798":2,"54799":1,"54800":1,"54801":1,"54802":2,"54803":2,"54804":2,"54805":2,"54806":1,"54807":2,"54808":1,"54809":2,"54810":2,"54811":2,"54812":2,"54813":2,"54814":2,"54815":2,"54816":1,"54817":2,"54818":2,"54819":1,"54820":1,"54821":2,"54822":2,"54823":2,"54824":2,"54825":2,"54826":1,"54827":2,"54828":1,"54829":1,"54830":2,"54831":1,"54832":2,"54833":1,"54834":1,"54835":2,"54836":2,"54837":1,"54838":1,"54839":2,"54840":2,"54841":1,"54842":2,"54843":2,"54844":2,"54845":2,"54846":2,"54847":1,"54848":2,"54849":2,"54850":2,"54851":1,"54852":1,"54853":1,"54854":2,"54855":2,"54856":1,"54857":2,"54858":2,"54859":2,"54860":1,"54861":2,"54862":1,"54863":2,"54864":1,"54865":1,"54866":1,"54867":1,"54868":1,"54869":2,"54870":1,"54871":2,"54872":2,"54873":2,"54874":1,"54875":2,"54876":2,"54877":2,"54878":1,"54879":2,"54880":2,"54881":1,"54882":1,"54883":1,"54884":2,"54885":1,"54886":1,"54887":1,"54888":2,"54889":2,"54890":2,"54891":2,"54892":1,"54893":1,"54894":1,"54895":1,"54896":2,"54897":1,"54898":2,"54899":2,"54900":1,"54901":1,"54902":2,"54903":1,"54904":2,"54905":2,"54906":2,"54907":2,"54908":1,"54909":1,"54910":2,"54911":2,"54912":2,"54913":1,"54914":2,"54915":2,"54916":2,"54917":1,"54918":2,"54919":1,"54920":1,"54921":1,"54922":1,"54923":2,"54924":2,"54925":2,"54926":1,"54927":2,"54928":1,"54929":2,"54930":1,"54931":1,"54932":2,"54933":2,"54934":2,"54935":2,"54936":2,"54937":1,"54938":1,"54939":2,"54940":1,"54941":2,"54942":2,"54943":1,"54944":1,"54945":2,"54946":2,"54947":2,"54948":2,"54949":2,"54950":2,"54951":1,"54952":2,"54953":1,"54954":1,"54955":1,"54956":1,"54957":2,"54958":1,"54959":1,"54960":2,"54961":2,"54962":1,"54963":2,"54964":1,"54965":1,"54966":1,"54967":2,"54968":2,"54969":2,"54970":2,"54971":2,"54972":2,"54973":1,"54974":2,"54975":1,"54976":2,"54977":1,"54978":1,"54979":2,"54980":2,"54981":2,"54982":1,"54983":2,"54984":1,"54985":2,"54986":2,"54987":2,"54988":2,"54989":2,"54990":1,"54991":1,"54992":2,"54993":1,"54994":2,"54995":1,"54996":2,"54997":1,"54998":2,"54999":2,"55000":2,"55001":2,"55002":1,"55003":2,"55004":1,"55005":1,"55006":1,"55007":1,"55008":1,"55009":2,"55010":1,"55011":2,"55012":1,"55013":2,"55014":1,"55015":2,"55016":1,"55017":2,"55018":1,"55019":1,"55020":1,"55021":1,"55022":1,"55023":1,"55024":2,"55025":2,"55026":1,"55027":1,"55028":2,"55029":2,"55030":2,"55031":1,"55032":1,"55033":2,"55034":2,"55035":1,"55036":1,"55037":2,"55038":1,"55039":1,"55040":2,"55041":1,"55042":2,"55043":1,"55044":1,"55045":2,"55046":1,"55047":1,"55048":2,"55049":1,"55050":2,"55051":1,"55052":2,"55053":1,"55054":1,"55055":2,"55056":2,"55057":2,"55058":2,"55059":1,"55060":2,"55061":1,"55062":2,"55063":2,"55064":2,"55065":2,"55066":2,"55067":1,"55068":1,"55069":1,"55070":2,"55071":2,"55072":2,"55073":1,"55074":2,"55075":2,"55076":2,"55077":2,"55078":2,"55079":1,"55080":1,"55081":2,"55082":1,"55083":2,"55084":2,"55085":2,"55086":1,"55087":2,"55088":2,"55089":2,"55090":1,"55091":1,"55092":1,"55093":2,"55094":1,"55095":1,"55096":1,"55097":1,"55098":1,"55099":2,"55100":1,"55101":2,"55102":1,"55103":2,"55104":1,"55105":2,"55106":1,"55107":1,"55108":2,"55109":1,"55110":1,"55111":1,"55112":2,"55113":1,"55114":1,"55115":2,"55116":1,"55117":2,"55118":1,"55119":1,"55120":1,"55121":1,"55122":2,"55123":2,"55124":1,"55125":2,"55126":2,"55127":1,"55128":2,"55129":1,"55130":2,"55131":1,"55132":1,"55133":1,"55134":2,"55135":2,"55136":1,"55137":1,"55138":2,"55139":2,"55140":2,"55141":1,"55142":1,"55143":1,"55144":1,"55145":2,"55146":1,"55147":1,"55148":1,"55149":2,"55150":1,"55151":2,"55152":2,"55153":2,"55154":2,"55155":1,"55156":2,"55157":1,"55158":1,"55159":2,"55160":2,"55161":1,"55162":2,"55163":2,"55164":2,"55165":2,"55166":2,"55167":2,"55168":2,"55169":1,"55170":1,"55171":1,"55172":2,"55173":1,"55174":2,"55175":1,"55176":1,"55177":1,"55178":2,"55179":1,"55180":1,"55181":2,"55182":1,"55183":2,"55184":1,"55185":2,"55186":2,"55187":1,"55188":1,"55189":2,"55190":2,"55191":2,"55192":1,"55193":1,"55194":1,"55195":2,"55196":1,"55197":1,"55198":1,"55199":2,"55200":1,"55201":2,"55202":2,"55203":2,"55204":1,"55205":1,"55206":2,"55207":1,"55208":1,"55209":1,"55210":1,"55211":1,"55212":1,"55213":1,"55214":2,"55215":2,"55216":1,"55217":1,"55218":2,"55219":1,"55220":2,"55221":2,"55222":1,"55223":1,"55224":1,"55225":1,"55226":1,"55227":1,"55228":1,"55229":1,"55230":2,"55231":1,"55232":2,"55233":2,"55234":1,"55235":2,"55236":2,"55237":1,"55238":1,"55239":1,"55240":2,"55241":2,"55242":1,"55243":2,"55244":1,"55245":2,"55246":2,"55247":2,"55248":1,"55249":2,"55250":1,"55251":2,"55252":1,"55253":1,"55254":2,"55255":1,"55256":2,"55257":2,"55258":2,"55259":2,"55260":2,"55261":2,"55262":1,"55263":2,"55264":1,"55265":2,"55266":1,"55267":2,"55268":2,"55269":1,"55270":1,"55271":1,"55272":1,"55273":1,"55274":2,"55275":2,"55276":1,"55277":1,"55278":2,"55279":2,"55280":2,"55281":1,"55282":2,"55283":1,"55284":1,"55285":2,"55286":1,"55287":1,"55288":1,"55289":1,"55290":1,"55291":1,"55292":2,"55293":2,"55294":1,"55295":1,"55296":2,"55297":2,"55298":1,"55299":1,"55300":2,"55301":2,"55302":2,"55303":2,"55304":2,"55305":1,"55306":2,"55307":2,"55308":2,"55309":2,"55310":1,"55311":1,"55312":1,"55313":1,"55314":1,"55315":2,"55316":1,"55317":1,"55318":2,"55319":1,"55320":1,"55321":1,"55322":2,"55323":2,"55324":2,"55325":1,"55326":2,"55327":2,"55328":2,"55329":2,"55330":1,"55331":2,"55332":1,"55333":2,"55334":2,"55335":1,"55336":2,"55337":2,"55338":1,"55339":2,"55340":2,"55341":2,"55342":1,"55343":2,"55344":2,"55345":1,"55346":1,"55347":1,"55348":1,"55349":2,"55350":1,"55351":2,"55352":1,"55353":1,"55354":2,"55355":1,"55356":1,"55357":1,"55358":1,"55359":1,"55360":1,"55361":1,"55362":1,"55363":2,"55364":1,"55365":2,"55366":1,"55367":2,"55368":1,"55369":2,"55370":2,"55371":1,"55372":1,"55373":1,"55374":2,"55375":2,"55376":2,"55377":2,"55378":2,"55379":2,"55380":1,"55381":2,"55382":2,"55383":1,"55384":2,"55385":2,"55386":1,"55387":1,"55388":1,"55389":2,"55390":1,"55391":2,"55392":2,"55393":2,"55394":1,"55395":2,"55396":2,"55397":2,"55398":2,"55399":2,"55400":2,"55401":1,"55402":2,"55403":2,"55404":2,"55405":2,"55406":2,"55407":2,"55408":2,"55409":1,"55410":1,"55411":2,"55412":2,"55413":2,"55414":1,"55415":1,"55416":2,"55417":2,"55418":1,"55419":1,"55420":2,"55421":2,"55422":1,"55423":1,"55424":1,"55425":1,"55426":2,"55427":2,"55428":1,"55429":1,"55430":2,"55431":1,"55432":1,"55433":1,"55434":1,"55435":1,"55436":1,"55437":2,"55438":2,"55439":2,"55440":1,"55441":1,"55442":2,"55443":1,"55444":1,"55445":1,"55446":2,"55447":1,"55448":1,"55449":2,"55450":1,"55451":2,"55452":1,"55453":1,"55454":1,"55455":2,"55456":2,"55457":2,"55458":1,"55459":1,"55460":1,"55461":1,"55462":1,"55463":2,"55464":1,"55465":1,"55466":1,"55467":2,"55468":2,"55469":1,"55470":2,"55471":2,"55472":1,"55473":1,"55474":1,"55475":2,"55476":1,"55477":2,"55478":2,"55479":2,"55480":1,"55481":1,"55482":2,"55483":1,"55484":1,"55485":2,"55486":1,"55487":1,"55488":2,"55489":1,"55490":2,"55491":2,"55492":1,"55493":2,"55494":1,"55495":1,"55496":2,"55497":2,"55498":2,"55499":1,"55500":2,"55501":1,"55502":1,"55503":1,"55504":1,"55505":1,"55506":1,"55507":1,"55508":2,"55509":2,"55510":1,"55511":1,"55512":2,"55513":2,"55514":1,"55515":2,"55516":1,"55517":1,"55518":1,"55519":1,"55520":1,"55521":1,"55522":1,"55523":2,"55524":1,"55525":2,"55526":1,"55527":1,"55528":1,"55529":2,"55530":1,"55531":1,"55532":1,"55533":1,"55534":2,"55535":1,"55536":2,"55537":2,"55538":1,"55539":1,"55540":1,"55541":2,"55542":2,"55543":1,"55544":2,"55545":2,"55546":2,"55547":1,"55548":2,"55549":1,"55550":2,"55551":2,"55552":1,"55553":1,"55554":2,"55555":2,"55556":2,"55557":1,"55558":2,"55559":1,"55560":1,"55561":2,"55562":1,"55563":2,"55564":1,"55565":2,"55566":2,"55567":2,"55568":1,"55569":1,"55570":2,"55571":2,"55572":2,"55573":1,"55574":2,"55575":1,"55576":2,"55577":1,"55578":2,"55579":1,"55580":1,"55581":1,"55582":1,"55583":1,"55584":1,"55585":2,"55586":2,"55587":2,"55588":2,"55589":1,"55590":2,"55591":2,"55592":2,"55593":2,"55594":1,"55595":1,"55596":1,"55597":2,"55598":1,"55599":2,"55600":2,"55601":2,"55602":2,"55603":2,"55604":1,"55605":1,"55606":1,"55607":2,"55608":1,"55609":1,"55610":2,"55611":1,"55612":1,"55613":2,"55614":1,"55615":1,"55616":2,"55617":2,"55618":1,"55619":1,"55620":1,"55621":2,"55622":2,"55623":2,"55624":2,"55625":1,"55626":2,"55627":2,"55628":2,"55629":1,"55630":2,"55631":2,"55632":1,"55633":2,"55634":2,"55635":1,"55636":1,"55637":2,"55638":1,"55639":2,"55640":2,"55641":1,"55642":1,"55643":2,"55644":1,"55645":2,"55646":2,"55647":1,"55648":1,"55649":1,"55650":1,"55651":1,"55652":2,"55653":2,"55654":2,"55655":1,"55656":1,"55657":2,"55658":2,"55659":1,"55660":1,"55661":1,"55662":1,"55663":1,"55664":2,"55665":1,"55666":1,"55667":1,"55668":1,"55669":1,"55670":2,"55671":1,"55672":2,"55673":1,"55674":2,"55675":2,"55676":2,"55677":1,"55678":2,"55679":1,"55680":1,"55681":2,"55682":2,"55683":2,"55684":2,"55685":2,"55686":2,"55687":2,"55688":2,"55689":1,"55690":1,"55691":2,"55692":2,"55693":2,"55694":2,"55695":1,"55696":1,"55697":2,"55698":2,"55699":1,"55700":1,"55701":2,"55702":2,"55703":1,"55704":1,"55705":1,"55706":1,"55707":1,"55708":1,"55709":1,"55710":2,"55711":2,"55712":1,"55713":1,"55714":2,"55715":1,"55716":1,"55717":2,"55718":2,"55719":2,"55720":1,"55721":1,"55722":2,"55723":2,"55724":2,"55725":1,"55726":2,"55727":1,"55728":1,"55729":1,"55730":1,"55731":2,"55732":1,"55733":2,"55734":1,"55735":1,"55736":1,"55737":1,"55738":2,"55739":2,"55740":1,"55741":2,"55742":2,"55743":2,"55744":2,"55745":2,"55746":2,"55747":2,"55748":1,"55749":2,"55750":2,"55751":2,"55752":2,"55753":2,"55754":2,"55755":1,"55756":1,"55757":2,"55758":1,"55759":2,"55760":2,"55761":1,"55762":2,"55763":2,"55764":2,"55765":1,"55766":1,"55767":2,"55768":2,"55769":1,"55770":2,"55771":2,"55772":1,"55773":2,"55774":2,"55775":1,"55776":2,"55777":2,"55778":1,"55779":1,"55780":1,"55781":2,"55782":1,"55783":2,"55784":1,"55785":2,"55786":2,"55787":1,"55788":2,"55789":1,"55790":2,"55791":2,"55792":2,"55793":2,"55794":2,"55795":2,"55796":1,"55797":1,"55798":1,"55799":1,"55800":2,"55801":2,"55802":1,"55803":1,"55804":1,"55805":2,"55806":1,"55807":1,"55808":1,"55809":2,"55810":2,"55811":2,"55812":2,"55813":1,"55814":2,"55815":2,"55816":1,"55817":2,"55818":1,"55819":1,"55820":1,"55821":1,"55822":2,"55823":2,"55824":2,"55825":2,"55826":1,"55827":1,"55828":1,"55829":2,"55830":1,"55831":1,"55832":1,"55833":2,"55834":2,"55835":2,"55836":2,"55837":2,"55838":1,"55839":2,"55840":2,"55841":2,"55842":2,"55843":2,"55844":1,"55845":1,"55846":1,"55847":2,"55848":1,"55849":2,"55850":1,"55851":1,"55852":1,"55853":1,"55854":2,"55855":2,"55856":1,"55857":2,"55858":2,"55859":1,"55860":1,"55861":1,"55862":1,"55863":1,"55864":1,"55865":2,"55866":1,"55867":2,"55868":1,"55869":1,"55870":2,"55871":1,"55872":2,"55873":2,"55874":2,"55875":2,"55876":1,"55877":2,"55878":1,"55879":1,"55880":1,"55881":2,"55882":1,"55883":1,"55884":1,"55885":1,"55886":2,"55887":1,"55888":2,"55889":1,"55890":2,"55891":2,"55892":1,"55893":1,"55894":1,"55895":2,"55896":1,"55897":1,"55898":2,"55899":1,"55900":1,"55901":2,"55902":2,"55903":2,"55904":1,"55905":2,"55906":2,"55907":1,"55908":1,"55909":2,"55910":1,"55911":1,"55912":2,"55913":2,"55914":1,"55915":1,"55916":1,"55917":1,"55918":1,"55919":2,"55920":1,"55921":2,"55922":2,"55923":1,"55924":1,"55925":1,"55926":1,"55927":2,"55928":1,"55929":2,"55930":2,"55931":2,"55932":2,"55933":2,"55934":2,"55935":1,"55936":1,"55937":2,"55938":1,"55939":2,"55940":2,"55941":2,"55942":2,"55943":2,"55944":1,"55945":2,"55946":1,"55947":1,"55948":1,"55949":2,"55950":2,"55951":2,"55952":2,"55953":1,"55954":1,"55955":1,"55956":2,"55957":1,"55958":2,"55959":1,"55960":2,"55961":2,"55962":2,"55963":1,"55964":1,"55965":2,"55966":1,"55967":2,"55968":1,"55969":2,"55970":1,"55971":1,"55972":2,"55973":1,"55974":2,"55975":1,"55976":2,"55977":1,"55978":2,"55979":2,"55980":2,"55981":1,"55982":2,"55983":1,"55984":2,"55985":2,"55986":2,"55987":2,"55988":1,"55989":2,"55990":2,"55991":2,"55992":2,"55993":1,"55994":1,"55995":1,"55996":1,"55997":1,"55998":2,"55999":1,"56000":2,"56001":2,"56002":2,"56003":2,"56004":1,"56005":2,"56006":2,"56007":1,"56008":2,"56009":1,"56010":2,"56011":1,"56012":2,"56013":1,"56014":2,"56015":1,"56016":2,"56017":2,"56018":1,"56019":2,"56020":2,"56021":2,"56022":1,"56023":2,"56024":1,"56025":2,"56026":1,"56027":2,"56028":2,"56029":2,"56030":1,"56031":2,"56032":1,"56033":2,"56034":1,"56035":1,"56036":2,"56037":1,"56038":1,"56039":2,"56040":1,"56041":2,"56042":2,"56043":1,"56044":2,"56045":2,"56046":2,"56047":2,"56048":1,"56049":1,"56050":2,"56051":2,"56052":1,"56053":1,"56054":1,"56055":1,"56056":2,"56057":2,"56058":1,"56059":2,"56060":2,"56061":1,"56062":2,"56063":1,"56064":1,"56065":1,"56066":1,"56067":2,"56068":1,"56069":2,"56070":1,"56071":2,"56072":1,"56073":2,"56074":1,"56075":1,"56076":1,"56077":2,"56078":1,"56079":2,"56080":1,"56081":1,"56082":1,"56083":1,"56084":1,"56085":1,"56086":2,"56087":1,"56088":2,"56089":1,"56090":1,"56091":1,"56092":2,"56093":2,"56094":2,"56095":1,"56096":1,"56097":1,"56098":2,"56099":2,"56100":2,"56101":2,"56102":1,"56103":2,"56104":1,"56105":1,"56106":2,"56107":1,"56108":1,"56109":2,"56110":1,"56111":2,"56112":2,"56113":1,"56114":1,"56115":2,"56116":2,"56117":2,"56118":2,"56119":1,"56120":1,"56121":1,"56122":1,"56123":2,"56124":1,"56125":1,"56126":2,"56127":1,"56128":2,"56129":1,"56130":2,"56131":2,"56132":2,"56133":2,"56134":2,"56135":2,"56136":1,"56137":1,"56138":1,"56139":2,"56140":2,"56141":2,"56142":1,"56143":2,"56144":1,"56145":1,"56146":1,"56147":2,"56148":1,"56149":1,"56150":2,"56151":2,"56152":1,"56153":2,"56154":1,"56155":2,"56156":2,"56157":2,"56158":2,"56159":2,"56160":2,"56161":1,"56162":2,"56163":1,"56164":2,"56165":1,"56166":2,"56167":1,"56168":2,"56169":2,"56170":2,"56171":2,"56172":2,"56173":1,"56174":1,"56175":2,"56176":2,"56177":2,"56178":1,"56179":1,"56180":2,"56181":1,"56182":2,"56183":1,"56184":2,"56185":1,"56186":2,"56187":2,"56188":2,"56189":2,"56190":2,"56191":1,"56192":1,"56193":2,"56194":2,"56195":1,"56196":1,"56197":1,"56198":1,"56199":1,"56200":2,"56201":1,"56202":1,"56203":2,"56204":1,"56205":2,"56206":2,"56207":1,"56208":1,"56209":2,"56210":2,"56211":2,"56212":1,"56213":2,"56214":2,"56215":2,"56216":2,"56217":1,"56218":2,"56219":1,"56220":1,"56221":2,"56222":1,"56223":1,"56224":2,"56225":1,"56226":2,"56227":2,"56228":1,"56229":2,"56230":1,"56231":2,"56232":2,"56233":1,"56234":2,"56235":1,"56236":2,"56237":2,"56238":2,"56239":2,"56240":2,"56241":1,"56242":1,"56243":2,"56244":1,"56245":2,"56246":2,"56247":1,"56248":2,"56249":1,"56250":2,"56251":1,"56252":2,"56253":2,"56254":2,"56255":2,"56256":1,"56257":1,"56258":1,"56259":1,"56260":1,"56261":1,"56262":1,"56263":1,"56264":2,"56265":1,"56266":1,"56267":2,"56268":2,"56269":2,"56270":2,"56271":2,"56272":2,"56273":2,"56274":1,"56275":1,"56276":2,"56277":2,"56278":1,"56279":1,"56280":2,"56281":1,"56282":2,"56283":2,"56284":1,"56285":1,"56286":2,"56287":1,"56288":2,"56289":1,"56290":1,"56291":1,"56292":2,"56293":2,"56294":1,"56295":2,"56296":2,"56297":2,"56298":1,"56299":2,"56300":2,"56301":2,"56302":1,"56303":1,"56304":1,"56305":2,"56306":1,"56307":1,"56308":2,"56309":1,"56310":2,"56311":2,"56312":1,"56313":1,"56314":1,"56315":1,"56316":2,"56317":2,"56318":2,"56319":2,"56320":2,"56321":2,"56322":2,"56323":2,"56324":2,"56325":2,"56326":2,"56327":1,"56328":2,"56329":2,"56330":2,"56331":2,"56332":2,"56333":2,"56334":1,"56335":1,"56336":2,"56337":2,"56338":1,"56339":1,"56340":2,"56341":1,"56342":1,"56343":2,"56344":2,"56345":1,"56346":2,"56347":1,"56348":1,"56349":1,"56350":2,"56351":2,"56352":2,"56353":1,"56354":2,"56355":2,"56356":2,"56357":2,"56358":2,"56359":1,"56360":2,"56361":2,"56362":1,"56363":2,"56364":1,"56365":2,"56366":2,"56367":1,"56368":1,"56369":1,"56370":1,"56371":1,"56372":2,"56373":1,"56374":2,"56375":1,"56376":1,"56377":2,"56378":2,"56379":2,"56380":1,"56381":1,"56382":1,"56383":1,"56384":1,"56385":2,"56386":2,"56387":2,"56388":2,"56389":1,"56390":1,"56391":2,"56392":2,"56393":2,"56394":2,"56395":1,"56396":2,"56397":2,"56398":1,"56399":2,"56400":2,"56401":2,"56402":1,"56403":2,"56404":2,"56405":1,"56406":1,"56407":1,"56408":2,"56409":2,"56410":2,"56411":2,"56412":1,"56413":1,"56414":2,"56415":2,"56416":2,"56417":1,"56418":1,"56419":2,"56420":1,"56421":2,"56422":2,"56423":1,"56424":1,"56425":1,"56426":1,"56427":1,"56428":2,"56429":2,"56430":2,"56431":1,"56432":2,"56433":1,"56434":1,"56435":2,"56436":2,"56437":1,"56438":2,"56439":2,"56440":1,"56441":1,"56442":1,"56443":2,"56444":2,"56445":2,"56446":1,"56447":2,"56448":2,"56449":1,"56450":2,"56451":1,"56452":2,"56453":1,"56454":2,"56455":2,"56456":2,"56457":1,"56458":1,"56459":2,"56460":1,"56461":2,"56462":2,"56463":1,"56464":1,"56465":1,"56466":1,"56467":2,"56468":1,"56469":2,"56470":1,"56471":1,"56472":2,"56473":2,"56474":2,"56475":2,"56476":2,"56477":1,"56478":2,"56479":2,"56480":2,"56481":2,"56482":2,"56483":2,"56484":1,"56485":1,"56486":1,"56487":2,"56488":1,"56489":2,"56490":2,"56491":1,"56492":1,"56493":1,"56494":1,"56495":2,"56496":1,"56497":2,"56498":2,"56499":1,"56500":2,"56501":2,"56502":2,"56503":2,"56504":1,"56505":2,"56506":1,"56507":2,"56508":2,"56509":1,"56510":1,"56511":1,"56512":2,"56513":1,"56514":2,"56515":1,"56516":1,"56517":1,"56518":2,"56519":2,"56520":1,"56521":2,"56522":2,"56523":2,"56524":1,"56525":2,"56526":1,"56527":1,"56528":2,"56529":2,"56530":2,"56531":2,"56532":1,"56533":2,"56534":1,"56535":1,"56536":2,"56537":2,"56538":1,"56539":1,"56540":1,"56541":1,"56542":2,"56543":1,"56544":1,"56545":2,"56546":1,"56547":2,"56548":2,"56549":2,"56550":2,"56551":2,"56552":2,"56553":1,"56554":2,"56555":1,"56556":2,"56557":1,"56558":2,"56559":1,"56560":1,"56561":1,"56562":2,"56563":2,"56564":2,"56565":2,"56566":1,"56567":2,"56568":2,"56569":2,"56570":2,"56571":1,"56572":2,"56573":2,"56574":1,"56575":1,"56576":2,"56577":1,"56578":1,"56579":2,"56580":1,"56581":1,"56582":1,"56583":2,"56584":2,"56585":1,"56586":2,"56587":2,"56588":1,"56589":2,"56590":1,"56591":1,"56592":1,"56593":2,"56594":2,"56595":1,"56596":2,"56597":1,"56598":2,"56599":2,"56600":1,"56601":2,"56602":1,"56603":1,"56604":1,"56605":2,"56606":2,"56607":1,"56608":2,"56609":1,"56610":2,"56611":1,"56612":2,"56613":1,"56614":1,"56615":1,"56616":2,"56617":2,"56618":2,"56619":2,"56620":1,"56621":2,"56622":2,"56623":2,"56624":1,"56625":1,"56626":2,"56627":2,"56628":1,"56629":1,"56630":2,"56631":1,"56632":1,"56633":1,"56634":2,"56635":1,"56636":2,"56637":2,"56638":1,"56639":1,"56640":2,"56641":1,"56642":1,"56643":1,"56644":1,"56645":2,"56646":2,"56647":2,"56648":1,"56649":1,"56650":2,"56651":1,"56652":1,"56653":1,"56654":2,"56655":2,"56656":1,"56657":1,"56658":1,"56659":2,"56660":1,"56661":1,"56662":1,"56663":2,"56664":1,"56665":2,"56666":2,"56667":1,"56668":2,"56669":1,"56670":1,"56671":2,"56672":1,"56673":2,"56674":1,"56675":1,"56676":1,"56677":2,"56678":2,"56679":1,"56680":2,"56681":1,"56682":1,"56683":2,"56684":1,"56685":2,"56686":1,"56687":1,"56688":2,"56689":1,"56690":1,"56691":2,"56692":2,"56693":2,"56694":2,"56695":2,"56696":1,"56697":1,"56698":1,"56699":1,"56700":2,"56701":1,"56702":1,"56703":2,"56704":2,"56705":1,"56706":1,"56707":1,"56708":2,"56709":1,"56710":1,"56711":2,"56712":2,"56713":1,"56714":1,"56715":1,"56716":2,"56717":2,"56718":1,"56719":1,"56720":2,"56721":1,"56722":1,"56723":2,"56724":1,"56725":1,"56726":2,"56727":1,"56728":1,"56729":2,"56730":2,"56731":1,"56732":2,"56733":1,"56734":2,"56735":1,"56736":1,"56737":2,"56738":1,"56739":1,"56740":2,"56741":1,"56742":2,"56743":1,"56744":1,"56745":1,"56746":1,"56747":1,"56748":1,"56749":2,"56750":2,"56751":2,"56752":1,"56753":2,"56754":2,"56755":2,"56756":1,"56757":2,"56758":2,"56759":2,"56760":2,"56761":2,"56762":1,"56763":2,"56764":1,"56765":2,"56766":2,"56767":2,"56768":2,"56769":1,"56770":1,"56771":2,"56772":2,"56773":1,"56774":2,"56775":1,"56776":1,"56777":2,"56778":2,"56779":1,"56780":1,"56781":1,"56782":2,"56783":2,"56784":1,"56785":1,"56786":2,"56787":1,"56788":1,"56789":2,"56790":1,"56791":2,"56792":1,"56793":1,"56794":2,"56795":2,"56796":2,"56797":2,"56798":1,"56799":1,"56800":1,"56801":1,"56802":2,"56803":2,"56804":1,"56805":1,"56806":2,"56807":2,"56808":1,"56809":2,"56810":2,"56811":1,"56812":1,"56813":2,"56814":2,"56815":1,"56816":2,"56817":2,"56818":1,"56819":2,"56820":2,"56821":1,"56822":2,"56823":1,"56824":2,"56825":2,"56826":2,"56827":1,"56828":2,"56829":2,"56830":2,"56831":1,"56832":1,"56833":2,"56834":2,"56835":2,"56836":2,"56837":1,"56838":1,"56839":2,"56840":1,"56841":2,"56842":2,"56843":2,"56844":2,"56845":1,"56846":2,"56847":1,"56848":1,"56849":1,"56850":2,"56851":1,"56852":1,"56853":1,"56854":1,"56855":1,"56856":2,"56857":2,"56858":1,"56859":2,"56860":2,"56861":1,"56862":2,"56863":1,"56864":2,"56865":2,"56866":2,"56867":1,"56868":1,"56869":2,"56870":2,"56871":2,"56872":2,"56873":2,"56874":2,"56875":2,"56876":1,"56877":1,"56878":1,"56879":1,"56880":1,"56881":2,"56882":1,"56883":2,"56884":2,"56885":2,"56886":2,"56887":2,"56888":2,"56889":1,"56890":2,"56891":2,"56892":2,"56893":1,"56894":2,"56895":2,"56896":1,"56897":2,"56898":1,"56899":1,"56900":1,"56901":2,"56902":2,"56903":2,"56904":2,"56905":1,"56906":1,"56907":1,"56908":1,"56909":2,"56910":1,"56911":1,"56912":2,"56913":1,"56914":2,"56915":1,"56916":2,"56917":2,"56918":2,"56919":1,"56920":2,"56921":2,"56922":1,"56923":1,"56924":2,"56925":2,"56926":1,"56927":1,"56928":1,"56929":1,"56930":1,"56931":1,"56932":1,"56933":1,"56934":1,"56935":2,"56936":2,"56937":1,"56938":1,"56939":2,"56940":2,"56941":2,"56942":2,"56943":1,"56944":2,"56945":1,"56946":2,"56947":2,"56948":2,"56949":1,"56950":2,"56951":1,"56952":1,"56953":1,"56954":2,"56955":2,"56956":1,"56957":1,"56958":2,"56959":1,"56960":2,"56961":2,"56962":1,"56963":1,"56964":2,"56965":1,"56966":2,"56967":2,"56968":1,"56969":1,"56970":2,"56971":1,"56972":2,"56973":2,"56974":1,"56975":2,"56976":1,"56977":2,"56978":2,"56979":2,"56980":1,"56981":1,"56982":1,"56983":2,"56984":2,"56985":2,"56986":1,"56987":2,"56988":2,"56989":2,"56990":2,"56991":2,"56992":1,"56993":1,"56994":1,"56995":2,"56996":1,"56997":1,"56998":1,"56999":2,"57000":2,"57001":1,"57002":2,"57003":1,"57004":2,"57005":1,"57006":1,"57007":2,"57008":2,"57009":2,"57010":1,"57011":1,"57012":2,"57013":2,"57014":1,"57015":1,"57016":1,"57017":1,"57018":1,"57019":2,"57020":2,"57021":2,"57022":2,"57023":2,"57024":1,"57025":2,"57026":1,"57027":1,"57028":2,"57029":2,"57030":1,"57031":2,"57032":1,"57033":1,"57034":1,"57035":2,"57036":1,"57037":2,"57038":1,"57039":2,"57040":1,"57041":2,"57042":2,"57043":2,"57044":1,"57045":2,"57046":2,"57047":2,"57048":1,"57049":2,"57050":2,"57051":1,"57052":2,"57053":1,"57054":2,"57055":1,"57056":2,"57057":2,"57058":1,"57059":1,"57060":2,"57061":2,"57062":1,"57063":2,"57064":2,"57065":2,"57066":1,"57067":2,"57068":2,"57069":1,"57070":2,"57071":2,"57072":2,"57073":1,"57074":1,"57075":2,"57076":1,"57077":2,"57078":2,"57079":2,"57080":2,"57081":1,"57082":2,"57083":1,"57084":2,"57085":1,"57086":2,"57087":1,"57088":1,"57089":2,"57090":2,"57091":2,"57092":2,"57093":1,"57094":2,"57095":2,"57096":1,"57097":1,"57098":2,"57099":1,"57100":1,"57101":1,"57102":2,"57103":2,"57104":2,"57105":2,"57106":1,"57107":1,"57108":2,"57109":1,"57110":1,"57111":1,"57112":1,"57113":1,"57114":2,"57115":1,"57116":1,"57117":1,"57118":2,"57119":1,"57120":2,"57121":1,"57122":2,"57123":1,"57124":2,"57125":1,"57126":1,"57127":1,"57128":2,"57129":1,"57130":1,"57131":2,"57132":2,"57133":2,"57134":1,"57135":1,"57136":1,"57137":1,"57138":2,"57139":2,"57140":1,"57141":1,"57142":1,"57143":2,"57144":1,"57145":2,"57146":1,"57147":1,"57148":1,"57149":1,"57150":1,"57151":2,"57152":1,"57153":2,"57154":2,"57155":2,"57156":1,"57157":2,"57158":1,"57159":2,"57160":1,"57161":1,"57162":2,"57163":2,"57164":2,"57165":1,"57166":1,"57167":1,"57168":2,"57169":1,"57170":1,"57171":1,"57172":2,"57173":1,"57174":1,"57175":1,"57176":2,"57177":1,"57178":2,"57179":2,"57180":2,"57181":2,"57182":2,"57183":2,"57184":1,"57185":1,"57186":1,"57187":1,"57188":2,"57189":1,"57190":1,"57191":1,"57192":1,"57193":2,"57194":1,"57195":2,"57196":1,"57197":2,"57198":2,"57199":1,"57200":1,"57201":1,"57202":2,"57203":2,"57204":2,"57205":1,"57206":2,"57207":1,"57208":1,"57209":1,"57210":1,"57211":1,"57212":2,"57213":1,"57214":1,"57215":1,"57216":2,"57217":2,"57218":2,"57219":2,"57220":1,"57221":2,"57222":1,"57223":1,"57224":2,"57225":2,"57226":1,"57227":2,"57228":1,"57229":1,"57230":2,"57231":2,"57232":1,"57233":1,"57234":1,"57235":1,"57236":2,"57237":1,"57238":1,"57239":2,"57240":1,"57241":2,"57242":2,"57243":1,"57244":1,"57245":2,"57246":1,"57247":2,"57248":1,"57249":1,"57250":1,"57251":1,"57252":1,"57253":2,"57254":2,"57255":2,"57256":1,"57257":1,"57258":2,"57259":1,"57260":2,"57261":1,"57262":2,"57263":2,"57264":2,"57265":2,"57266":1,"57267":1,"57268":2,"57269":1,"57270":1,"57271":1,"57272":1,"57273":1,"57274":2,"57275":2,"57276":2,"57277":2,"57278":2,"57279":1,"57280":2,"57281":1,"57282":1,"57283":1,"57284":1,"57285":1,"57286":2,"57287":1,"57288":1,"57289":1,"57290":2,"57291":2,"57292":1,"57293":2,"57294":1,"57295":2,"57296":1,"57297":2,"57298":2,"57299":2,"57300":1,"57301":1,"57302":2,"57303":2,"57304":2,"57305":2,"57306":2,"57307":2,"57308":1,"57309":1,"57310":2,"57311":2,"57312":2,"57313":1,"57314":1,"57315":1,"57316":2,"57317":2,"57318":2,"57319":2,"57320":1,"57321":1,"57322":1,"57323":1,"57324":2,"57325":1,"57326":1,"57327":1,"57328":2,"57329":1,"57330":2,"57331":2,"57332":2,"57333":2,"57334":2,"57335":1,"57336":1,"57337":1,"57338":2,"57339":1,"57340":1,"57341":2,"57342":1,"57343":2,"57344":1,"57345":1,"57346":2,"57347":2,"57348":2,"57349":2,"57350":1,"57351":2,"57352":2,"57353":1,"57354":2,"57355":2,"57356":2,"57357":2,"57358":1,"57359":1,"57360":1,"57361":2,"57362":1,"57363":1,"57364":1,"57365":1,"57366":2,"57367":1,"57368":1,"57369":2,"57370":1,"57371":2,"57372":1,"57373":1,"57374":2,"57375":2,"57376":2,"57377":2,"57378":1,"57379":2,"57380":1,"57381":1,"57382":1,"57383":1,"57384":2,"57385":2,"57386":1,"57387":2,"57388":2,"57389":2,"57390":2,"57391":2,"57392":1,"57393":2,"57394":1,"57395":1,"57396":2,"57397":2,"57398":2,"57399":1,"57400":2,"57401":2,"57402":1,"57403":1,"57404":1,"57405":1,"57406":2,"57407":2,"57408":1,"57409":2,"57410":2,"57411":1,"57412":2,"57413":1,"57414":2,"57415":2,"57416":1,"57417":2,"57418":1,"57419":1,"57420":1,"57421":1,"57422":2,"57423":2,"57424":1,"57425":1,"57426":2,"57427":1,"57428":2,"57429":2,"57430":1,"57431":2,"57432":2,"57433":1,"57434":2,"57435":1,"57436":2,"57437":1,"57438":1,"57439":1,"57440":2,"57441":2,"57442":2,"57443":1,"57444":2,"57445":2,"57446":2,"57447":2,"57448":2,"57449":1,"57450":2,"57451":2,"57452":2,"57453":1,"57454":1,"57455":1,"57456":1,"57457":2,"57458":2,"57459":2,"57460":2,"57461":2,"57462":2,"57463":1,"57464":2,"57465":1,"57466":2,"57467":2,"57468":1,"57469":1,"57470":1,"57471":2,"57472":2,"57473":2,"57474":2,"57475":2,"57476":1,"57477":1,"57478":1,"57479":1,"57480":2,"57481":1,"57482":1,"57483":2,"57484":2,"57485":1,"57486":2,"57487":1,"57488":2,"57489":2,"57490":2,"57491":2,"57492":1,"57493":1,"57494":1,"57495":1,"57496":1,"57497":2,"57498":2,"57499":2,"57500":2,"57501":1,"57502":2,"57503":2,"57504":2,"57505":2,"57506":2,"57507":1,"57508":1,"57509":2,"57510":2,"57511":2,"57512":1,"57513":1,"57514":2,"57515":1,"57516":1,"57517":2,"57518":2,"57519":2,"57520":2,"57521":2,"57522":2,"57523":2,"57524":1,"57525":1,"57526":1,"57527":1,"57528":2,"57529":1,"57530":2,"57531":2,"57532":2,"57533":2,"57534":1,"57535":1,"57536":1,"57537":1,"57538":1,"57539":2,"57540":2,"57541":1,"57542":1,"57543":1,"57544":2,"57545":2,"57546":2,"57547":1,"57548":2,"57549":2,"57550":2,"57551":1,"57552":1,"57553":1,"57554":2,"57555":1,"57556":1,"57557":2,"57558":2,"57559":1,"57560":1,"57561":1,"57562":1,"57563":1,"57564":2,"57565":1,"57566":2,"57567":1,"57568":1,"57569":2,"57570":2,"57571":1,"57572":1,"57573":1,"57574":2,"57575":2,"57576":1,"57577":2,"57578":1,"57579":1,"57580":2,"57581":1,"57582":1,"57583":1,"57584":2,"57585":1,"57586":2,"57587":1,"57588":1,"57589":2,"57590":2,"57591":1,"57592":1,"57593":2,"57594":1,"57595":1,"57596":2,"57597":2,"57598":2,"57599":2,"57600":1,"57601":1,"57602":1,"57603":2,"57604":2,"57605":2,"57606":1,"57607":1,"57608":2,"57609":1,"57610":2,"57611":1,"57612":2,"57613":1,"57614":2,"57615":1,"57616":2,"57617":1,"57618":1,"57619":2,"57620":2,"57621":1,"57622":1,"57623":1,"57624":2,"57625":2,"57626":1,"57627":1,"57628":2,"57629":1,"57630":2,"57631":2,"57632":1,"57633":1,"57634":2,"57635":1,"57636":1,"57637":2,"57638":1,"57639":1,"57640":2,"57641":1,"57642":2,"57643":1,"57644":2,"57645":2,"57646":2,"57647":2,"57648":2,"57649":2,"57650":2,"57651":1,"57652":2,"57653":2,"57654":1,"57655":1,"57656":2,"57657":2,"57658":1,"57659":1,"57660":1,"57661":1,"57662":1,"57663":2,"57664":1,"57665":2,"57666":1,"57667":2,"57668":1,"57669":1,"57670":2,"57671":1,"57672":2,"57673":2,"57674":2,"57675":2,"57676":1,"57677":2,"57678":2,"57679":2,"57680":1,"57681":2,"57682":1,"57683":2,"57684":1,"57685":2,"57686":1,"57687":2,"57688":2,"57689":1,"57690":2,"57691":2,"57692":1,"57693":2,"57694":1,"57695":2,"57696":2,"57697":2,"57698":2,"57699":1,"57700":2,"57701":1,"57702":2,"57703":2,"57704":2,"57705":1,"57706":1,"57707":1,"57708":2,"57709":2,"57710":1,"57711":1,"57712":2,"57713":1,"57714":2,"57715":2,"57716":2,"57717":2,"57718":2,"57719":1,"57720":1,"57721":2,"57722":1,"57723":1,"57724":2,"57725":1,"57726":1,"57727":2,"57728":1,"57729":2,"57730":1,"57731":2,"57732":1,"57733":2,"57734":2,"57735":2,"57736":1,"57737":2,"57738":1,"57739":2,"57740":1,"57741":1,"57742":2,"57743":1,"57744":2,"57745":2,"57746":2,"57747":1,"57748":2,"57749":1,"57750":2,"57751":2,"57752":1,"57753":1,"57754":2,"57755":1,"57756":2,"57757":2,"57758":1,"57759":2,"57760":1,"57761":2,"57762":1,"57763":2,"57764":2,"57765":1,"57766":2,"57767":1,"57768":1,"57769":2,"57770":2,"57771":2,"57772":1,"57773":1,"57774":2,"57775":1,"57776":1,"57777":2,"57778":2,"57779":2,"57780":2,"57781":2,"57782":1,"57783":2,"57784":1,"57785":1,"57786":2,"57787":1,"57788":2,"57789":1,"57790":1,"57791":1,"57792":1,"57793":1,"57794":1,"57795":1,"57796":2,"57797":2,"57798":1,"57799":2,"57800":1,"57801":2,"57802":1,"57803":1,"57804":2,"57805":2,"57806":1,"57807":1,"57808":1,"57809":1,"57810":1,"57811":1,"57812":2,"57813":1,"57814":1,"57815":1,"57816":2,"57817":2,"57818":1,"57819":2,"57820":1,"57821":1,"57822":1,"57823":1,"57824":2,"57825":1,"57826":2,"57827":2,"57828":1,"57829":1,"57830":2,"57831":1,"57832":1,"57833":1,"57834":1,"57835":1,"57836":1,"57837":2,"57838":2,"57839":2,"57840":2,"57841":2,"57842":1,"57843":1,"57844":1,"57845":1,"57846":2,"57847":2,"57848":2,"57849":2,"57850":1,"57851":2,"57852":2,"57853":2,"57854":2,"57855":1,"57856":1,"57857":1,"57858":1,"57859":1,"57860":2,"57861":1,"57862":1,"57863":2,"57864":2,"57865":2,"57866":1,"57867":1,"57868":2,"57869":2,"57870":2,"57871":1,"57872":1,"57873":2,"57874":1,"57875":2,"57876":1,"57877":1,"57878":1,"57879":2,"57880":1,"57881":1,"57882":1,"57883":2,"57884":1,"57885":2,"57886":2,"57887":1,"57888":2,"57889":1,"57890":2,"57891":1,"57892":1,"57893":2,"57894":2,"57895":1,"57896":2,"57897":1,"57898":2,"57899":1,"57900":1,"57901":1,"57902":2,"57903":2,"57904":2,"57905":2,"57906":1,"57907":2,"57908":1,"57909":2,"57910":1,"57911":2,"57912":1,"57913":2,"57914":2,"57915":1,"57916":1,"57917":2,"57918":1,"57919":1,"57920":2,"57921":1,"57922":2,"57923":1,"57924":2,"57925":1,"57926":1,"57927":2,"57928":1,"57929":2,"57930":1,"57931":1,"57932":1,"57933":1,"57934":2,"57935":2,"57936":1,"57937":2,"57938":2,"57939":1,"57940":1,"57941":1,"57942":2,"57943":1,"57944":2,"57945":1,"57946":1,"57947":1,"57948":2,"57949":2,"57950":2,"57951":1,"57952":2,"57953":1,"57954":1,"57955":1,"57956":1,"57957":1,"57958":1,"57959":1,"57960":1,"57961":1,"57962":1,"57963":1,"57964":1,"57965":2,"57966":1,"57967":2,"57968":1,"57969":1,"57970":1,"57971":1,"57972":2,"57973":2,"57974":2,"57975":1,"57976":1,"57977":1,"57978":2,"57979":1,"57980":1,"57981":2,"57982":1,"57983":1,"57984":1,"57985":1,"57986":2,"57987":1,"57988":1,"57989":2,"57990":2,"57991":1,"57992":2,"57993":1,"57994":1,"57995":2,"57996":2,"57997":2,"57998":2,"57999":1,"58000":1,"58001":1,"58002":1,"58003":1,"58004":2,"58005":1,"58006":1,"58007":2,"58008":2,"58009":2,"58010":1,"58011":2,"58012":1,"58013":1,"58014":2,"58015":2,"58016":2,"58017":1,"58018":2,"58019":1,"58020":1,"58021":2,"58022":2,"58023":1,"58024":1,"58025":1,"58026":2,"58027":2,"58028":1,"58029":1,"58030":1,"58031":2,"58032":2,"58033":1,"58034":2,"58035":1,"58036":2,"58037":2,"58038":2,"58039":1,"58040":1,"58041":1,"58042":2,"58043":2,"58044":2,"58045":1,"58046":2,"58047":2,"58048":1,"58049":2,"58050":1,"58051":2,"58052":2,"58053":1,"58054":1,"58055":2,"58056":1,"58057":2,"58058":2,"58059":1,"58060":2,"58061":1,"58062":1,"58063":2,"58064":2,"58065":2,"58066":1,"58067":2,"58068":2,"58069":2,"58070":1,"58071":2,"58072":1,"58073":2,"58074":1,"58075":2,"58076":1,"58077":2,"58078":2,"58079":1,"58080":2,"58081":2,"58082":1,"58083":2,"58084":1,"58085":1,"58086":2,"58087":2,"58088":1,"58089":2,"58090":2,"58091":2,"58092":2,"58093":2,"58094":2,"58095":1,"58096":1,"58097":1,"58098":1,"58099":1,"58100":2,"58101":1,"58102":2,"58103":1,"58104":1,"58105":2,"58106":2,"58107":1,"58108":1,"58109":1,"58110":1,"58111":2,"58112":1,"58113":2,"58114":1,"58115":1,"58116":2,"58117":1,"58118":1,"58119":1,"58120":1,"58121":2,"58122":1,"58123":2,"58124":2,"58125":2,"58126":2,"58127":2,"58128":2,"58129":2,"58130":2,"58131":1,"58132":2,"58133":2,"58134":1,"58135":2,"58136":1,"58137":1,"58138":2,"58139":1,"58140":2,"58141":1,"58142":2,"58143":2,"58144":2,"58145":1,"58146":2,"58147":2,"58148":2,"58149":1,"58150":2,"58151":1,"58152":2,"58153":1,"58154":1,"58155":1,"58156":1,"58157":2,"58158":2,"58159":2,"58160":2,"58161":2,"58162":2,"58163":1,"58164":2,"58165":2,"58166":1,"58167":1,"58168":2,"58169":1,"58170":1,"58171":2,"58172":2,"58173":1,"58174":2,"58175":1,"58176":2,"58177":1,"58178":2,"58179":2,"58180":1,"58181":1,"58182":2,"58183":2,"58184":1,"58185":1,"58186":1,"58187":1,"58188":2,"58189":1,"58190":1,"58191":2,"58192":1,"58193":2,"58194":2,"58195":1,"58196":2,"58197":1,"58198":2,"58199":2,"58200":2,"58201":2,"58202":1,"58203":1,"58204":2,"58205":2,"58206":1,"58207":2,"58208":2,"58209":2,"58210":1,"58211":1,"58212":1,"58213":1,"58214":2,"58215":1,"58216":1,"58217":1,"58218":2,"58219":1,"58220":2,"58221":2,"58222":1,"58223":2,"58224":1,"58225":2,"58226":2,"58227":1,"58228":2,"58229":1,"58230":2,"58231":1,"58232":1,"58233":2,"58234":2,"58235":2,"58236":2,"58237":1,"58238":2,"58239":2,"58240":1,"58241":2,"58242":1,"58243":2,"58244":2,"58245":1,"58246":2,"58247":1,"58248":1,"58249":1,"58250":1,"58251":1,"58252":1,"58253":1,"58254":1,"58255":2,"58256":2,"58257":2,"58258":1,"58259":1,"58260":2,"58261":1,"58262":2,"58263":2,"58264":1,"58265":2,"58266":1,"58267":2,"58268":1,"58269":1,"58270":2,"58271":1,"58272":1,"58273":2,"58274":2,"58275":1,"58276":2,"58277":1,"58278":2,"58279":2,"58280":2,"58281":1,"58282":2,"58283":1,"58284":1,"58285":1,"58286":1,"58287":1,"58288":2,"58289":2,"58290":2,"58291":1,"58292":1,"58293":2,"58294":2,"58295":1,"58296":2,"58297":2,"58298":2,"58299":2,"58300":1,"58301":1,"58302":2,"58303":2,"58304":2,"58305":1,"58306":1,"58307":2,"58308":2,"58309":1,"58310":2,"58311":1,"58312":1,"58313":2,"58314":2,"58315":2,"58316":2,"58317":1,"58318":2,"58319":1,"58320":1,"58321":2,"58322":1,"58323":2,"58324":2,"58325":2,"58326":2,"58327":2,"58328":2,"58329":2,"58330":2,"58331":1,"58332":2,"58333":1,"58334":1,"58335":1,"58336":2,"58337":2,"58338":2,"58339":1,"58340":2,"58341":2,"58342":2,"58343":1,"58344":1,"58345":1,"58346":1,"58347":1,"58348":2,"58349":1,"58350":1,"58351":1,"58352":2,"58353":1,"58354":1,"58355":2,"58356":2,"58357":2,"58358":1,"58359":2,"58360":1,"58361":2,"58362":1,"58363":1,"58364":1,"58365":1,"58366":2,"58367":1,"58368":2,"58369":1,"58370":1,"58371":2,"58372":1,"58373":2,"58374":2,"58375":2,"58376":1,"58377":1,"58378":2,"58379":2,"58380":2,"58381":1,"58382":1,"58383":1,"58384":2,"58385":1,"58386":1,"58387":1,"58388":1,"58389":1,"58390":1,"58391":2,"58392":1,"58393":2,"58394":1,"58395":2,"58396":1,"58397":2,"58398":2,"58399":1,"58400":1,"58401":2,"58402":1,"58403":2,"58404":2,"58405":1,"58406":1,"58407":1,"58408":2,"58409":1,"58410":1,"58411":1,"58412":2,"58413":1,"58414":2,"58415":1,"58416":2,"58417":2,"58418":1,"58419":2,"58420":1,"58421":2,"58422":1,"58423":2,"58424":2,"58425":2,"58426":1,"58427":1,"58428":2,"58429":1,"58430":1,"58431":1,"58432":1,"58433":1,"58434":2,"58435":1,"58436":2,"58437":2,"58438":1,"58439":1,"58440":1,"58441":2,"58442":2,"58443":1,"58444":2,"58445":2,"58446":1,"58447":1,"58448":1,"58449":1,"58450":2,"58451":1,"58452":1,"58453":2,"58454":1,"58455":2,"58456":2,"58457":2,"58458":2,"58459":2,"58460":1,"58461":1,"58462":1,"58463":1,"58464":1,"58465":2,"58466":1,"58467":2,"58468":2,"58469":2,"58470":1,"58471":2,"58472":1,"58473":1,"58474":1,"58475":1,"58476":1,"58477":2,"58478":2,"58479":1,"58480":1,"58481":1,"58482":2,"58483":2,"58484":1,"58485":2,"58486":1,"58487":2,"58488":2,"58489":1,"58490":2,"58491":1,"58492":2,"58493":1,"58494":2,"58495":1,"58496":1,"58497":1,"58498":1,"58499":1,"58500":1,"58501":2,"58502":2,"58503":2,"58504":1,"58505":2,"58506":1,"58507":2,"58508":2,"58509":2,"58510":2,"58511":2,"58512":2,"58513":2,"58514":1,"58515":1,"58516":2,"58517":2,"58518":1,"58519":1,"58520":2,"58521":1,"58522":2,"58523":2,"58524":2,"58525":2,"58526":2,"58527":2,"58528":2,"58529":2,"58530":1,"58531":2,"58532":1,"58533":1,"58534":2,"58535":1,"58536":2,"58537":2,"58538":2,"58539":2,"58540":2,"58541":2,"58542":2,"58543":1,"58544":2,"58545":2,"58546":1,"58547":1,"58548":2,"58549":1,"58550":1,"58551":1,"58552":1,"58553":1,"58554":2,"58555":1,"58556":1,"58557":1,"58558":1,"58559":1,"58560":1,"58561":2,"58562":1,"58563":2,"58564":1,"58565":2,"58566":2,"58567":2,"58568":2,"58569":1,"58570":1,"58571":2,"58572":1,"58573":1,"58574":2,"58575":2,"58576":1,"58577":2,"58578":1,"58579":2,"58580":2,"58581":2,"58582":1,"58583":1,"58584":2,"58585":2,"58586":2,"58587":2,"58588":1,"58589":2,"58590":2,"58591":2,"58592":1,"58593":1,"58594":1,"58595":2,"58596":1,"58597":1,"58598":2,"58599":2,"58600":1,"58601":1,"58602":2,"58603":2,"58604":1,"58605":1,"58606":1,"58607":2,"58608":2,"58609":1,"58610":1,"58611":1,"58612":2,"58613":2,"58614":2,"58615":2,"58616":2,"58617":1,"58618":2,"58619":2,"58620":2,"58621":2,"58622":1,"58623":2,"58624":1,"58625":2,"58626":1,"58627":1,"58628":2,"58629":1,"58630":2,"58631":1,"58632":1,"58633":2,"58634":1,"58635":1,"58636":1,"58637":2,"58638":1,"58639":2,"58640":2,"58641":1,"58642":1,"58643":2,"58644":2,"58645":2,"58646":2,"58647":1,"58648":2,"58649":2,"58650":2,"58651":2,"58652":1,"58653":2,"58654":2,"58655":1,"58656":2,"58657":1,"58658":2,"58659":1,"58660":1,"58661":2,"58662":2,"58663":1,"58664":2,"58665":1,"58666":1,"58667":1,"58668":2,"58669":1,"58670":1,"58671":1,"58672":2,"58673":1,"58674":2,"58675":1,"58676":1,"58677":2,"58678":1,"58679":1,"58680":1,"58681":1,"58682":2,"58683":1,"58684":2,"58685":1,"58686":2,"58687":2,"58688":1,"58689":1,"58690":1,"58691":2,"58692":1,"58693":1,"58694":2,"58695":1,"58696":1,"58697":1,"58698":1,"58699":1,"58700":2,"58701":1,"58702":2,"58703":1,"58704":1,"58705":2,"58706":2,"58707":1,"58708":1,"58709":1,"58710":2,"58711":2,"58712":2,"58713":1,"58714":2,"58715":2,"58716":1,"58717":1,"58718":1,"58719":1,"58720":2,"58721":2,"58722":1,"58723":2,"58724":1,"58725":2,"58726":1,"58727":2,"58728":2,"58729":1,"58730":1,"58731":2,"58732":1,"58733":1,"58734":2,"58735":1,"58736":2,"58737":1,"58738":1,"58739":2,"58740":1,"58741":1,"58742":2,"58743":2,"58744":1,"58745":1,"58746":1,"58747":1,"58748":2,"58749":1,"58750":2,"58751":2,"58752":1,"58753":1,"58754":2,"58755":2,"58756":2,"58757":1,"58758":2,"58759":2,"58760":1,"58761":2,"58762":2,"58763":1,"58764":1,"58765":1,"58766":2,"58767":2,"58768":2,"58769":2,"58770":2,"58771":1,"58772":2,"58773":1,"58774":1,"58775":1,"58776":2,"58777":2,"58778":1,"58779":1,"58780":2,"58781":1,"58782":1,"58783":2,"58784":2,"58785":1,"58786":2,"58787":2,"58788":1,"58789":1,"58790":2,"58791":1,"58792":1,"58793":2,"58794":2,"58795":2,"58796":1,"58797":2,"58798":1,"58799":2,"58800":2,"58801":2,"58802":1,"58803":2,"58804":1,"58805":2,"58806":1,"58807":1,"58808":2,"58809":2,"58810":1,"58811":2,"58812":2,"58813":1,"58814":2,"58815":2,"58816":1,"58817":2,"58818":2,"58819":2,"58820":1,"58821":1,"58822":2,"58823":1,"58824":1,"58825":2,"58826":2,"58827":1,"58828":1,"58829":1,"58830":2,"58831":2,"58832":2,"58833":2,"58834":2,"58835":2,"58836":2,"58837":2,"58838":1,"58839":1,"58840":1,"58841":1,"58842":2,"58843":1,"58844":1,"58845":1,"58846":1,"58847":2,"58848":1,"58849":2,"58850":2,"58851":2,"58852":2,"58853":1,"58854":1,"58855":2,"58856":1,"58857":2,"58858":1,"58859":1,"58860":1,"58861":2,"58862":1,"58863":1,"58864":1,"58865":2,"58866":2,"58867":2,"58868":2,"58869":2,"58870":2,"58871":1,"58872":2,"58873":2,"58874":2,"58875":1,"58876":1,"58877":2,"58878":1,"58879":2,"58880":2,"58881":2,"58882":1,"58883":1,"58884":1,"58885":1,"58886":2,"58887":1,"58888":2,"58889":2,"58890":1,"58891":2,"58892":1,"58893":1,"58894":2,"58895":1,"58896":2,"58897":1,"58898":1,"58899":2,"58900":2,"58901":1,"58902":2,"58903":1,"58904":1,"58905":1,"58906":1,"58907":1,"58908":2,"58909":1,"58910":2,"58911":1,"58912":1,"58913":1,"58914":1,"58915":1,"58916":1,"58917":2,"58918":2,"58919":2,"58920":1,"58921":1,"58922":1,"58923":1,"58924":2,"58925":1,"58926":1,"58927":1,"58928":1,"58929":2,"58930":2,"58931":1,"58932":2,"58933":1,"58934":1,"58935":2,"58936":2,"58937":2,"58938":1,"58939":2,"58940":2,"58941":1,"58942":1,"58943":2,"58944":1,"58945":2,"58946":2,"58947":1,"58948":1,"58949":2,"58950":1,"58951":1,"58952":1,"58953":2,"58954":1,"58955":2,"58956":1,"58957":1,"58958":1,"58959":2,"58960":1,"58961":2,"58962":1,"58963":1,"58964":2,"58965":1,"58966":1,"58967":1,"58968":1,"58969":2,"58970":1,"58971":1,"58972":2,"58973":1,"58974":1,"58975":2,"58976":2,"58977":2,"58978":2,"58979":1,"58980":2,"58981":1,"58982":1,"58983":2,"58984":1,"58985":1,"58986":1,"58987":2,"58988":1,"58989":1,"58990":1,"58991":1,"58992":2,"58993":1,"58994":1,"58995":1,"58996":2,"58997":1,"58998":2,"58999":2,"59000":1,"59001":1,"59002":2,"59003":2,"59004":2,"59005":1,"59006":2,"59007":2,"59008":2,"59009":1,"59010":1,"59011":2,"59012":2,"59013":1,"59014":1,"59015":2,"59016":1,"59017":2,"59018":2,"59019":1,"59020":1,"59021":1,"59022":2,"59023":2,"59024":1,"59025":2,"59026":2,"59027":2,"59028":1,"59029":2,"59030":1,"59031":2,"59032":1,"59033":1,"59034":2,"59035":2,"59036":1,"59037":2,"59038":2,"59039":1,"59040":1,"59041":1,"59042":1,"59043":1,"59044":2,"59045":2,"59046":1,"59047":1,"59048":1,"59049":1,"59050":2,"59051":2,"59052":1,"59053":1,"59054":1,"59055":2,"59056":1,"59057":1,"59058":1,"59059":2,"59060":2,"59061":1,"59062":1,"59063":1,"59064":1,"59065":2,"59066":1,"59067":2,"59068":1,"59069":2,"59070":2,"59071":1,"59072":1,"59073":2,"59074":2,"59075":2,"59076":2,"59077":2,"59078":2,"59079":2,"59080":2,"59081":2,"59082":2,"59083":2,"59084":2,"59085":1,"59086":2,"59087":2,"59088":1,"59089":2,"59090":1,"59091":2,"59092":2,"59093":2,"59094":2,"59095":1,"59096":1,"59097":2,"59098":2,"59099":1,"59100":2,"59101":1,"59102":1,"59103":1,"59104":1,"59105":2,"59106":2,"59107":1,"59108":1,"59109":2,"59110":1,"59111":2,"59112":1,"59113":1,"59114":2,"59115":2,"59116":1,"59117":1,"59118":2,"59119":2,"59120":1,"59121":1,"59122":1,"59123":1,"59124":1,"59125":2,"59126":2,"59127":1,"59128":1,"59129":2,"59130":1,"59131":1,"59132":2,"59133":2,"59134":1,"59135":1,"59136":2,"59137":1,"59138":2,"59139":2,"59140":2,"59141":1,"59142":1,"59143":2,"59144":1,"59145":2,"59146":2,"59147":2,"59148":1,"59149":1,"59150":1,"59151":1,"59152":1,"59153":2,"59154":1,"59155":1,"59156":2,"59157":1,"59158":2,"59159":1,"59160":2,"59161":1,"59162":2,"59163":1,"59164":1,"59165":1,"59166":2,"59167":2,"59168":2,"59169":2,"59170":1,"59171":2,"59172":2,"59173":2,"59174":2,"59175":2,"59176":2,"59177":1,"59178":2,"59179":1,"59180":1,"59181":1,"59182":1,"59183":1,"59184":2,"59185":1,"59186":2,"59187":2,"59188":1,"59189":1,"59190":2,"59191":2,"59192":2,"59193":1,"59194":2,"59195":2,"59196":1,"59197":1,"59198":2,"59199":1,"59200":2,"59201":1,"59202":1,"59203":1,"59204":2,"59205":1,"59206":1,"59207":2,"59208":2,"59209":2,"59210":2,"59211":2,"59212":2,"59213":2,"59214":1,"59215":1,"59216":2,"59217":2,"59218":2,"59219":1,"59220":1,"59221":2,"59222":2,"59223":2,"59224":2,"59225":1,"59226":2,"59227":1,"59228":1,"59229":1,"59230":1,"59231":1,"59232":1,"59233":1,"59234":1,"59235":2,"59236":2,"59237":1,"59238":2,"59239":2,"59240":2,"59241":2,"59242":2,"59243":1,"59244":1,"59245":2,"59246":1,"59247":1,"59248":1,"59249":1,"59250":2,"59251":2,"59252":1,"59253":2,"59254":1,"59255":2,"59256":2,"59257":2,"59258":2,"59259":1,"59260":2,"59261":2,"59262":1,"59263":1,"59264":1,"59265":1,"59266":2,"59267":2,"59268":2,"59269":1,"59270":2,"59271":2,"59272":2,"59273":1,"59274":2,"59275":1,"59276":2,"59277":2,"59278":1,"59279":2,"59280":1,"59281":2,"59282":1,"59283":1,"59284":1,"59285":1,"59286":2,"59287":1,"59288":2,"59289":2,"59290":1,"59291":2,"59292":1,"59293":2,"59294":1,"59295":2,"59296":2,"59297":2,"59298":1,"59299":2,"59300":1,"59301":1,"59302":1,"59303":2,"59304":2,"59305":1,"59306":1,"59307":2,"59308":1,"59309":2,"59310":1,"59311":2,"59312":1,"59313":2,"59314":2,"59315":1,"59316":2,"59317":2,"59318":2,"59319":1,"59320":1,"59321":2,"59322":1,"59323":1,"59324":1,"59325":2,"59326":2,"59327":1,"59328":1,"59329":2,"59330":1,"59331":2,"59332":2,"59333":2,"59334":2,"59335":2,"59336":2,"59337":1,"59338":2,"59339":1,"59340":1,"59341":2,"59342":1,"59343":1,"59344":1,"59345":2,"59346":2,"59347":1,"59348":2,"59349":1,"59350":1,"59351":1,"59352":2,"59353":2,"59354":2,"59355":1,"59356":1,"59357":1,"59358":2,"59359":2,"59360":2,"59361":2,"59362":1,"59363":1,"59364":2,"59365":2,"59366":2,"59367":1,"59368":2,"59369":2,"59370":2,"59371":1,"59372":2,"59373":1,"59374":2,"59375":2,"59376":1,"59377":2,"59378":1,"59379":1,"59380":2,"59381":2,"59382":1,"59383":1,"59384":2,"59385":2,"59386":2,"59387":2,"59388":1,"59389":2,"59390":1,"59391":1,"59392":2,"59393":2,"59394":1,"59395":1,"59396":1,"59397":1,"59398":2,"59399":2,"59400":1,"59401":2,"59402":2,"59403":2,"59404":2,"59405":2,"59406":1,"59407":1,"59408":1,"59409":2,"59410":1,"59411":1,"59412":2,"59413":2,"59414":1,"59415":1,"59416":2,"59417":1,"59418":1,"59419":1,"59420":1,"59421":2,"59422":2,"59423":1,"59424":2,"59425":2,"59426":1,"59427":2,"59428":1,"59429":1,"59430":2,"59431":2,"59432":2,"59433":2,"59434":1,"59435":2,"59436":2,"59437":1,"59438":1,"59439":2,"59440":2,"59441":1,"59442":1,"59443":2,"59444":2,"59445":2,"59446":1,"59447":2,"59448":2,"59449":2,"59450":1,"59451":1,"59452":2,"59453":2,"59454":2,"59455":2,"59456":1,"59457":2,"59458":2,"59459":1,"59460":1,"59461":2,"59462":1,"59463":2,"59464":2,"59465":2,"59466":2,"59467":1,"59468":1,"59469":2,"59470":2,"59471":2,"59472":2,"59473":2,"59474":1,"59475":2,"59476":2,"59477":2,"59478":2,"59479":1,"59480":1,"59481":1,"59482":1,"59483":2,"59484":1,"59485":1,"59486":2,"59487":2,"59488":2,"59489":2,"59490":2,"59491":2,"59492":1,"59493":1,"59494":2,"59495":1,"59496":1,"59497":1,"59498":2,"59499":1,"59500":1,"59501":1,"59502":1,"59503":2,"59504":2,"59505":1,"59506":1,"59507":1,"59508":2,"59509":2,"59510":2,"59511":1,"59512":2,"59513":1,"59514":2,"59515":2,"59516":2,"59517":2,"59518":2,"59519":2,"59520":2,"59521":1,"59522":2,"59523":1,"59524":2,"59525":1,"59526":2,"59527":2,"59528":2,"59529":2,"59530":2,"59531":2,"59532":2,"59533":2,"59534":1,"59535":1,"59536":2,"59537":1,"59538":1,"59539":2,"59540":2,"59541":2,"59542":2,"59543":1,"59544":2,"59545":1,"59546":2,"59547":1,"59548":2,"59549":2,"59550":2,"59551":2,"59552":2,"59553":2,"59554":1,"59555":2,"59556":2,"59557":2,"59558":2,"59559":2,"59560":2,"59561":1,"59562":1,"59563":1,"59564":2,"59565":2,"59566":1,"59567":1,"59568":2,"59569":1,"59570":1,"59571":2,"59572":2,"59573":1,"59574":2,"59575":1,"59576":1,"59577":1,"59578":2,"59579":1,"59580":2,"59581":2,"59582":1,"59583":1,"59584":2,"59585":2,"59586":2,"59587":1,"59588":1,"59589":2,"59590":1,"59591":1,"59592":1,"59593":1,"59594":1,"59595":2,"59596":2,"59597":2,"59598":2,"59599":1,"59600":2,"59601":2,"59602":2,"59603":2,"59604":1,"59605":2,"59606":1,"59607":2,"59608":2,"59609":1,"59610":1,"59611":2,"59612":2,"59613":2,"59614":1,"59615":2,"59616":2,"59617":1,"59618":1,"59619":2,"59620":1,"59621":1,"59622":1,"59623":1,"59624":2,"59625":1,"59626":2,"59627":2,"59628":1,"59629":1,"59630":1,"59631":2,"59632":1,"59633":2,"59634":2,"59635":2,"59636":2,"59637":2,"59638":1,"59639":2,"59640":2,"59641":1,"59642":2,"59643":2,"59644":2,"59645":1,"59646":1,"59647":1,"59648":1,"59649":1,"59650":1,"59651":1,"59652":1,"59653":2,"59654":1,"59655":1,"59656":2,"59657":1,"59658":1,"59659":2,"59660":1,"59661":1,"59662":2,"59663":2,"59664":1,"59665":2,"59666":2,"59667":2,"59668":2,"59669":2,"59670":2,"59671":2,"59672":1,"59673":1,"59674":1,"59675":1,"59676":1,"59677":1,"59678":1,"59679":2,"59680":1,"59681":1,"59682":2,"59683":1,"59684":2,"59685":2,"59686":2,"59687":1,"59688":1,"59689":1,"59690":2,"59691":2,"59692":2,"59693":2,"59694":1,"59695":2,"59696":2,"59697":1,"59698":1,"59699":2,"59700":1,"59701":1,"59702":1,"59703":2,"59704":1,"59705":1,"59706":1,"59707":2,"59708":2,"59709":2,"59710":1,"59711":1,"59712":1,"59713":2,"59714":1,"59715":1,"59716":1,"59717":2,"59718":1,"59719":2,"59720":1,"59721":2,"59722":2,"59723":2,"59724":1,"59725":2,"59726":1,"59727":1,"59728":1,"59729":1,"59730":1,"59731":1,"59732":1,"59733":2,"59734":2,"59735":2,"59736":2,"59737":2,"59738":2,"59739":1,"59740":2,"59741":1,"59742":2,"59743":1,"59744":2,"59745":2,"59746":2,"59747":2,"59748":2,"59749":2,"59750":2,"59751":2,"59752":1,"59753":2,"59754":1,"59755":2,"59756":2,"59757":2,"59758":2,"59759":2,"59760":2,"59761":2,"59762":2,"59763":1,"59764":1,"59765":2,"59766":2,"59767":1,"59768":2,"59769":1,"59770":1,"59771":1,"59772":2,"59773":1,"59774":2,"59775":1,"59776":2,"59777":1,"59778":2,"59779":2,"59780":1,"59781":1,"59782":1,"59783":1,"59784":2,"59785":1,"59786":1,"59787":2,"59788":1,"59789":1,"59790":2,"59791":1,"59792":2,"59793":2,"59794":1,"59795":1,"59796":1,"59797":1,"59798":2,"59799":1,"59800":1,"59801":1,"59802":2,"59803":1,"59804":1,"59805":1,"59806":1,"59807":1,"59808":1,"59809":1,"59810":1,"59811":1,"59812":1,"59813":1,"59814":1,"59815":2,"59816":2,"59817":1,"59818":2,"59819":1,"59820":2,"59821":1,"59822":2,"59823":2,"59824":2,"59825":2,"59826":1,"59827":1,"59828":1,"59829":2,"59830":1,"59831":1,"59832":2,"59833":1,"59834":2,"59835":1,"59836":1,"59837":1,"59838":2,"59839":1,"59840":2,"59841":2,"59842":2,"59843":1,"59844":2,"59845":1,"59846":1,"59847":1,"59848":2,"59849":1,"59850":1,"59851":2,"59852":2,"59853":1,"59854":2,"59855":2,"59856":2,"59857":2,"59858":2,"59859":1,"59860":2,"59861":1,"59862":2,"59863":1,"59864":2,"59865":2,"59866":2,"59867":1,"59868":2,"59869":1,"59870":2,"59871":1,"59872":2,"59873":1,"59874":1,"59875":1,"59876":1,"59877":1,"59878":1,"59879":1,"59880":1,"59881":2,"59882":2,"59883":2,"59884":2,"59885":1,"59886":2,"59887":2,"59888":2,"59889":1,"59890":1,"59891":2,"59892":1,"59893":2,"59894":2,"59895":1,"59896":2,"59897":2,"59898":1,"59899":2,"59900":1,"59901":2,"59902":2,"59903":1,"59904":2,"59905":2,"59906":1,"59907":2,"59908":1,"59909":2,"59910":2,"59911":1,"59912":1,"59913":1,"59914":1,"59915":1,"59916":2,"59917":2,"59918":1,"59919":1,"59920":1,"59921":2,"59922":2,"59923":1,"59924":2,"59925":1,"59926":1,"59927":1,"59928":1,"59929":1,"59930":1,"59931":1,"59932":2,"59933":2,"59934":2,"59935":1,"59936":2,"59937":1,"59938":1,"59939":2,"59940":2,"59941":2,"59942":2,"59943":1,"59944":2,"59945":1,"59946":2,"59947":2,"59948":1,"59949":1,"59950":2,"59951":2,"59952":1,"59953":2,"59954":1,"59955":2,"59956":1,"59957":1,"59958":1,"59959":2,"59960":1,"59961":1,"59962":2,"59963":1,"59964":2,"59965":2,"59966":1,"59967":2,"59968":2,"59969":1,"59970":1,"59971":2,"59972":2,"59973":1,"59974":2,"59975":2,"59976":1,"59977":2,"59978":2,"59979":2,"59980":1,"59981":1,"59982":2,"59983":1,"59984":1,"59985":2,"59986":1,"59987":2,"59988":2,"59989":1,"59990":2,"59991":2,"59992":2,"59993":1,"59994":2,"59995":2,"59996":1,"59997":1,"59998":2,"59999":1,"60000":2,"60001":1,"60002":2,"60003":2,"60004":2,"60005":2,"60006":2,"60007":1,"60008":1,"60009":2,"60010":1,"60011":2,"60012":2,"60013":1,"60014":1,"60015":2,"60016":2,"60017":1,"60018":2,"60019":2,"60020":1,"60021":2,"60022":2,"60023":1,"60024":2,"60025":2,"60026":2,"60027":2,"60028":1,"60029":1,"60030":1,"60031":2,"60032":2,"60033":1,"60034":1,"60035":2,"60036":1,"60037":2,"60038":1,"60039":2,"60040":1,"60041":1,"60042":1,"60043":1,"60044":1,"60045":1,"60046":1,"60047":1,"60048":1,"60049":2,"60050":1,"60051":1,"60052":1,"60053":1,"60054":1,"60055":2,"60056":2,"60057":1,"60058":1,"60059":1,"60060":2,"60061":1,"60062":2,"60063":2,"60064":1,"60065":1,"60066":2,"60067":2,"60068":1,"60069":1,"60070":2,"60071":2,"60072":1,"60073":1,"60074":1,"60075":1,"60076":2,"60077":2,"60078":2,"60079":2,"60080":1,"60081":2,"60082":2,"60083":1,"60084":2,"60085":2,"60086":2,"60087":1,"60088":2,"60089":2,"60090":1,"60091":2,"60092":1,"60093":1,"60094":2,"60095":1,"60096":1,"60097":2,"60098":2,"60099":2,"60100":2,"60101":2,"60102":1,"60103":2,"60104":1,"60105":2,"60106":2,"60107":1,"60108":2,"60109":2,"60110":1,"60111":1,"60112":2,"60113":1,"60114":2,"60115":2,"60116":1,"60117":1,"60118":1,"60119":1,"60120":2,"60121":2,"60122":1,"60123":1,"60124":2,"60125":1,"60126":1,"60127":1,"60128":1,"60129":1,"60130":1,"60131":2,"60132":1,"60133":2,"60134":1,"60135":1,"60136":2,"60137":1,"60138":2,"60139":2,"60140":2,"60141":2,"60142":2,"60143":1,"60144":2,"60145":1,"60146":1,"60147":2,"60148":1,"60149":1,"60150":2,"60151":2,"60152":2,"60153":2,"60154":1,"60155":2,"60156":2,"60157":2,"60158":2,"60159":1,"60160":2,"60161":2,"60162":1,"60163":1,"60164":1,"60165":2,"60166":1,"60167":2,"60168":2,"60169":1,"60170":2,"60171":2,"60172":1,"60173":1,"60174":2,"60175":2,"60176":2,"60177":1,"60178":1,"60179":2,"60180":2,"60181":1,"60182":2,"60183":2,"60184":1,"60185":1,"60186":1,"60187":2,"60188":1,"60189":1,"60190":1,"60191":2,"60192":1,"60193":2,"60194":1,"60195":1,"60196":2,"60197":2,"60198":1,"60199":2,"60200":2,"60201":1,"60202":1,"60203":2,"60204":2,"60205":2,"60206":1,"60207":1,"60208":2,"60209":2,"60210":2,"60211":1,"60212":1,"60213":1,"60214":1,"60215":2,"60216":1,"60217":2,"60218":2,"60219":1,"60220":2,"60221":2,"60222":1,"60223":1,"60224":2,"60225":2,"60226":1,"60227":2,"60228":1,"60229":2,"60230":2,"60231":1,"60232":2,"60233":2,"60234":1,"60235":2,"60236":1,"60237":2,"60238":1,"60239":1,"60240":2,"60241":1,"60242":1,"60243":1,"60244":2,"60245":1,"60246":2,"60247":2,"60248":2,"60249":1,"60250":1,"60251":2,"60252":2,"60253":1,"60254":1,"60255":2,"60256":2,"60257":1,"60258":2,"60259":1,"60260":1,"60261":2,"60262":2,"60263":2,"60264":1,"60265":1,"60266":1,"60267":2,"60268":2,"60269":2,"60270":1,"60271":1,"60272":1,"60273":2,"60274":2,"60275":1,"60276":2,"60277":2,"60278":1,"60279":2,"60280":2,"60281":2,"60282":2,"60283":2,"60284":2,"60285":1,"60286":1,"60287":2,"60288":2,"60289":1,"60290":2,"60291":1,"60292":1,"60293":2,"60294":2,"60295":1,"60296":2,"60297":1,"60298":1,"60299":2,"60300":2,"60301":2,"60302":2,"60303":2,"60304":2,"60305":1,"60306":2,"60307":2,"60308":2,"60309":1,"60310":2,"60311":2,"60312":2,"60313":2,"60314":1,"60315":2,"60316":2,"60317":2,"60318":1,"60319":2,"60320":2,"60321":1,"60322":2,"60323":2,"60324":2,"60325":2,"60326":1,"60327":2,"60328":1,"60329":2,"60330":1,"60331":2,"60332":1,"60333":2,"60334":1,"60335":2,"60336":2,"60337":2,"60338":2,"60339":2,"60340":2,"60341":2,"60342":2,"60343":2,"60344":1,"60345":1,"60346":1,"60347":2,"60348":1,"60349":1,"60350":2,"60351":1,"60352":1,"60353":2,"60354":2,"60355":1,"60356":1,"60357":1,"60358":1,"60359":2,"60360":1,"60361":1,"60362":2,"60363":2,"60364":2,"60365":1,"60366":2,"60367":2,"60368":1,"60369":1,"60370":2,"60371":1,"60372":1,"60373":2,"60374":2,"60375":1,"60376":2,"60377":1,"60378":1,"60379":1,"60380":2,"60381":1,"60382":1,"60383":1,"60384":1,"60385":1,"60386":1,"60387":2,"60388":2,"60389":2,"60390":1,"60391":1,"60392":2,"60393":2,"60394":1,"60395":2,"60396":1,"60397":2,"60398":1,"60399":2,"60400":2,"60401":2,"60402":1,"60403":1,"60404":1,"60405":1,"60406":2,"60407":1,"60408":1,"60409":2,"60410":2,"60411":1,"60412":1,"60413":1,"60414":2,"60415":1,"60416":1,"60417":2,"60418":1,"60419":1,"60420":1,"60421":1,"60422":1,"60423":2,"60424":1,"60425":1,"60426":1,"60427":1,"60428":2,"60429":1,"60430":1,"60431":1,"60432":1,"60433":2,"60434":2,"60435":2,"60436":2,"60437":1,"60438":2,"60439":2,"60440":2,"60441":1,"60442":2,"60443":2,"60444":1,"60445":1,"60446":2,"60447":2,"60448":2,"60449":2,"60450":2,"60451":2,"60452":2,"60453":2,"60454":1,"60455":1,"60456":1,"60457":2,"60458":1,"60459":2,"60460":1,"60461":2,"60462":1,"60463":2,"60464":1,"60465":1,"60466":1,"60467":2,"60468":1,"60469":2,"60470":2,"60471":1,"60472":2,"60473":1,"60474":2,"60475":1,"60476":1,"60477":2,"60478":1,"60479":1,"60480":1,"60481":2,"60482":2,"60483":2,"60484":2,"60485":2,"60486":1,"60487":1,"60488":2,"60489":2,"60490":1,"60491":2,"60492":2,"60493":2,"60494":1,"60495":1,"60496":1,"60497":2,"60498":1,"60499":1,"60500":1,"60501":1,"60502":2,"60503":1,"60504":2,"60505":2,"60506":2,"60507":2,"60508":2,"60509":1,"60510":2,"60511":2,"60512":1,"60513":2,"60514":1,"60515":1,"60516":1,"60517":1,"60518":2,"60519":1,"60520":1,"60521":1,"60522":1,"60523":2,"60524":2,"60525":1,"60526":2,"60527":1,"60528":1,"60529":2,"60530":2,"60531":2,"60532":1,"60533":1,"60534":1,"60535":1,"60536":1,"60537":1,"60538":1,"60539":2,"60540":2,"60541":1,"60542":2,"60543":2,"60544":2,"60545":2,"60546":2,"60547":1,"60548":1,"60549":1,"60550":2,"60551":2,"60552":2,"60553":1,"60554":1,"60555":2,"60556":2,"60557":1,"60558":1,"60559":2,"60560":2,"60561":2,"60562":1,"60563":2,"60564":2,"60565":2,"60566":2,"60567":2,"60568":1,"60569":1,"60570":1,"60571":1,"60572":2,"60573":2,"60574":1,"60575":1,"60576":2,"60577":2,"60578":1,"60579":2,"60580":1,"60581":2,"60582":1,"60583":2,"60584":2,"60585":2,"60586":2,"60587":2,"60588":2,"60589":2,"60590":2,"60591":1,"60592":1,"60593":2,"60594":2,"60595":1,"60596":1,"60597":2,"60598":2,"60599":2,"60600":2,"60601":2,"60602":2,"60603":2,"60604":1,"60605":2,"60606":2,"60607":2,"60608":2,"60609":1,"60610":1,"60611":1,"60612":2,"60613":2,"60614":2,"60615":2,"60616":1,"60617":1,"60618":2,"60619":2,"60620":1,"60621":2,"60622":1,"60623":1,"60624":1,"60625":1,"60626":2,"60627":1,"60628":2,"60629":2,"60630":1,"60631":1,"60632":2,"60633":1,"60634":2,"60635":2,"60636":2,"60637":1,"60638":1,"60639":2,"60640":2,"60641":1,"60642":2,"60643":1,"60644":1,"60645":1,"60646":1,"60647":2,"60648":1,"60649":2,"60650":1,"60651":1,"60652":1,"60653":2,"60654":2,"60655":2,"60656":1,"60657":1,"60658":1,"60659":1,"60660":1,"60661":2,"60662":2,"60663":2,"60664":2,"60665":1,"60666":2,"60667":1,"60668":2,"60669":1,"60670":2,"60671":1,"60672":2,"60673":2,"60674":1,"60675":1,"60676":1,"60677":1,"60678":1,"60679":2,"60680":1,"60681":2,"60682":2,"60683":1,"60684":1,"60685":1,"60686":1,"60687":1,"60688":1,"60689":1,"60690":1,"60691":2,"60692":2,"60693":2,"60694":2,"60695":2,"60696":2,"60697":2,"60698":2,"60699":2,"60700":2,"60701":2,"60702":2,"60703":1,"60704":2,"60705":2,"60706":1,"60707":1,"60708":2,"60709":2,"60710":1,"60711":1,"60712":1,"60713":1,"60714":1,"60715":1,"60716":1,"60717":2,"60718":1,"60719":1,"60720":1,"60721":1,"60722":2,"60723":1,"60724":1,"60725":1,"60726":1,"60727":1,"60728":1,"60729":1,"60730":1,"60731":1,"60732":1,"60733":1,"60734":1,"60735":2,"60736":1,"60737":2,"60738":2,"60739":2,"60740":2,"60741":1,"60742":1,"60743":1,"60744":1,"60745":1,"60746":2,"60747":2,"60748":1,"60749":2,"60750":1,"60751":1,"60752":1,"60753":2,"60754":1,"60755":1,"60756":1,"60757":1,"60758":1,"60759":1,"60760":2,"60761":2,"60762":1,"60763":2,"60764":1,"60765":2,"60766":2,"60767":2,"60768":2,"60769":1,"60770":2,"60771":2,"60772":2,"60773":2,"60774":2,"60775":2,"60776":1,"60777":2,"60778":1,"60779":1,"60780":2,"60781":1,"60782":2,"60783":1,"60784":2,"60785":1,"60786":1,"60787":2,"60788":1,"60789":2,"60790":2,"60791":2,"60792":2,"60793":2,"60794":1,"60795":1,"60796":1,"60797":2,"60798":2,"60799":2,"60800":2,"60801":1,"60802":1,"60803":2,"60804":2,"60805":1,"60806":2,"60807":1,"60808":1,"60809":1,"60810":2,"60811":2,"60812":2,"60813":2,"60814":1,"60815":2,"60816":2,"60817":2,"60818":2,"60819":2,"60820":1,"60821":1,"60822":1,"60823":1,"60824":2,"60825":2,"60826":2,"60827":1,"60828":1,"60829":2,"60830":1,"60831":1,"60832":2,"60833":1,"60834":2,"60835":1,"60836":1,"60837":2,"60838":2,"60839":1,"60840":1,"60841":1,"60842":1,"60843":2,"60844":2,"60845":1,"60846":2,"60847":1,"60848":1,"60849":2,"60850":2,"60851":2,"60852":1,"60853":2,"60854":1,"60855":1,"60856":2,"60857":1,"60858":2,"60859":2,"60860":1,"60861":1,"60862":1,"60863":1,"60864":1,"60865":1,"60866":2,"60867":1,"60868":1,"60869":1,"60870":2,"60871":1,"60872":2,"60873":2,"60874":1,"60875":2,"60876":2,"60877":1,"60878":2,"60879":1,"60880":2,"60881":2,"60882":2,"60883":1,"60884":1,"60885":2,"60886":2,"60887":2,"60888":1,"60889":1,"60890":2,"60891":2,"60892":1,"60893":2,"60894":1,"60895":1,"60896":1,"60897":1,"60898":1,"60899":1,"60900":1,"60901":1,"60902":2,"60903":1,"60904":2,"60905":1,"60906":1,"60907":1,"60908":2,"60909":2,"60910":2,"60911":2,"60912":2,"60913":2,"60914":1,"60915":1,"60916":2,"60917":1,"60918":2,"60919":2,"60920":1,"60921":1,"60922":2,"60923":2,"60924":1,"60925":2,"60926":1,"60927":1,"60928":2,"60929":2,"60930":1,"60931":1,"60932":1,"60933":1,"60934":1,"60935":1,"60936":2,"60937":1,"60938":2,"60939":1,"60940":1,"60941":2,"60942":2,"60943":2,"60944":2,"60945":2,"60946":1,"60947":2,"60948":1,"60949":1,"60950":1,"60951":1,"60952":2,"60953":1,"60954":1,"60955":2,"60956":1,"60957":2,"60958":2,"60959":1,"60960":1,"60961":2,"60962":2,"60963":1,"60964":1,"60965":1,"60966":2,"60967":1,"60968":2,"60969":1,"60970":1,"60971":2,"60972":2,"60973":1,"60974":2,"60975":1,"60976":2,"60977":1,"60978":1,"60979":1,"60980":2,"60981":2,"60982":1,"60983":1,"60984":1,"60985":2,"60986":2,"60987":1,"60988":2,"60989":2,"60990":2,"60991":1,"60992":1,"60993":1,"60994":2,"60995":1,"60996":1,"60997":1,"60998":1,"60999":2,"61000":2,"61001":1,"61002":1,"61003":2,"61004":1,"61005":2,"61006":1,"61007":1,"61008":2,"61009":1,"61010":2,"61011":1,"61012":2,"61013":1,"61014":2,"61015":1,"61016":2,"61017":1,"61018":2,"61019":1,"61020":2,"61021":2,"61022":2,"61023":2,"61024":1,"61025":1,"61026":2,"61027":2,"61028":1,"61029":1,"61030":2,"61031":1,"61032":1,"61033":1,"61034":1,"61035":1,"61036":1,"61037":2,"61038":2,"61039":1,"61040":1,"61041":1,"61042":2,"61043":1,"61044":2,"61045":1,"61046":2,"61047":1,"61048":1,"61049":1,"61050":2,"61051":2,"61052":1,"61053":2,"61054":2,"61055":2,"61056":1,"61057":2,"61058":2,"61059":2,"61060":2,"61061":2,"61062":2,"61063":2,"61064":2,"61065":1,"61066":1,"61067":1,"61068":2,"61069":1,"61070":2,"61071":2,"61072":1,"61073":2,"61074":1,"61075":1,"61076":2,"61077":1,"61078":2,"61079":2,"61080":1,"61081":1,"61082":2,"61083":1,"61084":2,"61085":2,"61086":1,"61087":2,"61088":1,"61089":2,"61090":2,"61091":2,"61092":1,"61093":2,"61094":1,"61095":2,"61096":1,"61097":2,"61098":2,"61099":2,"61100":1,"61101":1,"61102":1,"61103":1,"61104":1,"61105":2,"61106":2,"61107":1,"61108":1,"61109":1,"61110":2,"61111":2,"61112":2,"61113":2,"61114":2,"61115":1,"61116":2,"61117":1,"61118":1,"61119":1,"61120":1,"61121":2,"61122":1,"61123":1,"61124":2,"61125":1,"61126":1,"61127":1,"61128":2,"61129":2,"61130":2,"61131":1,"61132":1,"61133":2,"61134":2,"61135":1,"61136":2,"61137":1,"61138":1,"61139":1,"61140":2,"61141":2,"61142":2,"61143":1,"61144":1,"61145":1,"61146":1,"61147":2,"61148":1,"61149":2,"61150":2,"61151":2,"61152":2,"61153":1,"61154":2,"61155":2,"61156":1,"61157":1,"61158":1,"61159":2,"61160":2,"61161":2,"61162":2,"61163":1,"61164":2,"61165":1,"61166":2,"61167":1,"61168":2,"61169":1,"61170":1,"61171":1,"61172":2,"61173":2,"61174":1,"61175":2,"61176":2,"61177":1,"61178":2,"61179":2,"61180":1,"61181":1,"61182":2,"61183":1,"61184":1,"61185":2,"61186":2,"61187":1,"61188":1,"61189":1,"61190":2,"61191":2,"61192":1,"61193":2,"61194":1,"61195":1,"61196":1,"61197":2,"61198":2,"61199":2,"61200":2,"61201":2,"61202":1,"61203":2,"61204":2,"61205":2,"61206":2,"61207":2,"61208":1,"61209":1,"61210":2,"61211":1,"61212":1,"61213":2,"61214":1,"61215":2,"61216":2,"61217":1,"61218":1,"61219":2,"61220":2,"61221":1,"61222":2,"61223":2,"61224":1,"61225":2,"61226":2,"61227":2,"61228":2,"61229":2,"61230":1,"61231":1,"61232":2,"61233":1,"61234":2,"61235":1,"61236":2,"61237":2,"61238":1,"61239":1,"61240":1,"61241":2,"61242":1,"61243":2,"61244":2,"61245":2,"61246":2,"61247":2,"61248":2,"61249":2,"61250":2,"61251":2,"61252":2,"61253":2,"61254":2,"61255":1,"61256":1,"61257":2,"61258":2,"61259":2,"61260":2,"61261":1,"61262":2,"61263":1,"61264":2,"61265":2,"61266":1,"61267":1,"61268":2,"61269":2,"61270":2,"61271":2,"61272":1,"61273":2,"61274":1,"61275":2,"61276":1,"61277":1,"61278":2,"61279":2,"61280":2,"61281":2,"61282":1,"61283":1,"61284":2,"61285":2,"61286":1,"61287":1,"61288":2,"61289":1,"61290":1,"61291":2,"61292":1,"61293":1,"61294":2,"61295":1,"61296":2,"61297":1,"61298":1,"61299":1,"61300":2,"61301":1,"61302":1,"61303":1,"61304":1,"61305":1,"61306":2,"61307":1,"61308":1,"61309":1,"61310":1,"61311":1,"61312":2,"61313":2,"61314":2,"61315":1,"61316":1,"61317":2,"61318":1,"61319":1,"61320":1,"61321":1,"61322":1,"61323":1,"61324":2,"61325":2,"61326":1,"61327":1,"61328":1,"61329":1,"61330":1,"61331":1,"61332":2,"61333":1,"61334":2,"61335":1,"61336":2,"61337":2,"61338":1,"61339":2,"61340":1,"61341":1,"61342":2,"61343":2,"61344":2,"61345":2,"61346":1,"61347":1,"61348":1,"61349":1,"61350":1,"61351":1,"61352":2,"61353":2,"61354":2,"61355":2,"61356":2,"61357":1,"61358":1,"61359":2,"61360":1,"61361":2,"61362":1,"61363":1,"61364":1,"61365":2,"61366":1,"61367":2,"61368":1,"61369":2,"61370":2,"61371":1,"61372":2,"61373":2,"61374":1,"61375":1,"61376":2,"61377":1,"61378":1,"61379":1,"61380":2,"61381":1,"61382":1,"61383":1,"61384":1,"61385":1,"61386":2,"61387":2,"61388":1,"61389":2,"61390":2,"61391":1,"61392":2,"61393":1,"61394":1,"61395":2,"61396":2,"61397":2,"61398":1,"61399":1,"61400":1,"61401":2,"61402":1,"61403":2,"61404":2,"61405":1,"61406":2,"61407":2,"61408":1,"61409":2,"61410":2,"61411":1,"61412":1,"61413":2,"61414":2,"61415":1,"61416":1,"61417":1,"61418":1,"61419":2,"61420":1,"61421":2,"61422":1,"61423":1,"61424":2,"61425":1,"61426":2,"61427":1,"61428":2,"61429":2,"61430":2,"61431":2,"61432":2,"61433":1,"61434":1,"61435":1,"61436":2,"61437":2,"61438":1,"61439":2,"61440":1,"61441":2,"61442":1,"61443":2,"61444":1,"61445":1,"61446":1,"61447":1,"61448":1,"61449":1,"61450":1,"61451":1,"61452":2,"61453":2,"61454":1,"61455":2,"61456":2,"61457":2,"61458":1,"61459":2,"61460":1,"61461":1,"61462":1,"61463":2,"61464":2,"61465":1,"61466":1,"61467":1,"61468":1,"61469":1,"61470":1,"61471":2,"61472":2,"61473":1,"61474":1,"61475":1,"61476":1,"61477":2,"61478":2,"61479":1,"61480":1,"61481":2,"61482":1,"61483":1,"61484":2,"61485":2,"61486":2,"61487":1,"61488":2,"61489":2,"61490":2,"61491":1,"61492":2,"61493":1,"61494":1,"61495":2,"61496":2,"61497":2,"61498":1,"61499":2,"61500":1,"61501":2,"61502":2,"61503":2,"61504":2,"61505":2,"61506":1,"61507":1,"61508":2,"61509":1,"61510":2,"61511":1,"61512":1,"61513":1,"61514":1,"61515":1,"61516":1,"61517":1,"61518":1,"61519":2,"61520":1,"61521":2,"61522":2,"61523":1,"61524":2,"61525":1,"61526":2,"61527":1,"61528":2,"61529":1,"61530":2,"61531":2,"61532":1,"61533":1,"61534":2,"61535":2,"61536":2,"61537":1,"61538":2,"61539":2,"61540":1,"61541":2,"61542":2,"61543":1,"61544":2,"61545":2,"61546":2,"61547":2,"61548":2,"61549":2,"61550":1,"61551":2,"61552":2,"61553":2,"61554":2,"61555":1,"61556":2,"61557":1,"61558":2,"61559":1,"61560":2,"61561":1,"61562":2,"61563":2,"61564":1,"61565":2,"61566":1,"61567":1,"61568":2,"61569":2,"61570":2,"61571":2,"61572":1,"61573":1,"61574":2,"61575":2,"61576":2,"61577":1,"61578":2,"61579":2,"61580":2,"61581":1,"61582":1,"61583":1,"61584":2,"61585":2,"61586":1,"61587":1,"61588":2,"61589":2,"61590":2,"61591":1,"61592":2,"61593":1,"61594":2,"61595":2,"61596":2,"61597":1,"61598":2,"61599":2,"61600":2,"61601":2,"61602":2,"61603":2,"61604":2,"61605":1,"61606":1,"61607":1,"61608":2,"61609":2,"61610":1,"61611":1,"61612":2,"61613":1,"61614":1,"61615":1,"61616":1,"61617":1,"61618":1,"61619":2,"61620":1,"61621":1,"61622":1,"61623":2,"61624":1,"61625":1,"61626":2,"61627":2,"61628":2,"61629":2,"61630":1,"61631":1,"61632":2,"61633":1,"61634":1,"61635":1,"61636":2,"61637":1,"61638":1,"61639":1,"61640":2,"61641":2,"61642":1,"61643":2,"61644":2,"61645":1,"61646":2,"61647":1,"61648":2,"61649":1,"61650":1,"61651":2,"61652":2,"61653":2,"61654":1,"61655":2,"61656":1,"61657":2,"61658":2,"61659":1,"61660":2,"61661":1,"61662":2,"61663":1,"61664":1,"61665":1,"61666":1,"61667":1,"61668":2,"61669":2,"61670":1,"61671":1,"61672":2,"61673":2,"61674":2,"61675":2,"61676":1,"61677":2,"61678":2,"61679":1,"61680":2,"61681":1,"61682":2,"61683":1,"61684":1,"61685":2,"61686":1,"61687":2,"61688":2,"61689":2,"61690":1,"61691":1,"61692":1,"61693":2,"61694":2,"61695":2,"61696":1,"61697":2,"61698":2,"61699":2,"61700":2,"61701":1,"61702":1,"61703":1,"61704":2,"61705":2,"61706":2,"61707":1,"61708":1,"61709":1,"61710":2,"61711":1,"61712":2,"61713":2,"61714":2,"61715":1,"61716":1,"61717":1,"61718":2,"61719":1,"61720":1,"61721":1,"61722":1,"61723":2,"61724":2,"61725":1,"61726":2,"61727":2,"61728":2,"61729":1,"61730":1,"61731":2,"61732":2,"61733":2,"61734":2,"61735":2,"61736":2,"61737":2,"61738":2,"61739":1,"61740":2,"61741":1,"61742":2,"61743":1,"61744":1,"61745":2,"61746":2,"61747":1,"61748":2,"61749":2,"61750":2,"61751":2,"61752":2,"61753":2,"61754":2,"61755":2,"61756":1,"61757":2,"61758":2,"61759":1,"61760":1,"61761":1,"61762":2,"61763":2,"61764":2,"61765":1,"61766":2,"61767":1,"61768":2,"61769":2,"61770":2,"61771":2,"61772":1,"61773":2,"61774":1,"61775":1,"61776":1,"61777":2,"61778":1,"61779":2,"61780":2,"61781":2,"61782":1,"61783":2,"61784":1,"61785":2,"61786":2,"61787":1,"61788":1,"61789":2,"61790":1,"61791":2,"61792":2,"61793":2,"61794":1,"61795":2,"61796":1,"61797":1,"61798":2,"61799":1,"61800":2,"61801":1,"61802":2,"61803":1,"61804":2,"61805":2,"61806":1,"61807":2,"61808":2,"61809":1,"61810":2,"61811":2,"61812":1,"61813":2,"61814":1,"61815":1,"61816":2,"61817":1,"61818":2,"61819":2,"61820":2,"61821":2,"61822":2,"61823":2,"61824":1,"61825":1,"61826":2,"61827":1,"61828":1,"61829":2,"61830":1,"61831":2,"61832":1,"61833":1,"61834":1,"61835":2,"61836":2,"61837":2,"61838":1,"61839":2,"61840":2,"61841":1,"61842":2,"61843":1,"61844":1,"61845":2,"61846":1,"61847":1,"61848":1,"61849":2,"61850":1,"61851":2,"61852":1,"61853":2,"61854":2,"61855":2,"61856":1,"61857":2,"61858":2,"61859":2,"61860":2,"61861":1,"61862":1,"61863":1,"61864":1,"61865":1,"61866":1,"61867":2,"61868":2,"61869":1,"61870":2,"61871":2,"61872":2,"61873":2,"61874":2,"61875":2,"61876":1,"61877":2,"61878":2,"61879":1,"61880":1,"61881":1,"61882":2,"61883":2,"61884":2,"61885":2,"61886":1,"61887":1,"61888":2,"61889":1,"61890":2,"61891":2,"61892":2,"61893":1,"61894":1,"61895":1,"61896":1,"61897":2,"61898":1,"61899":1,"61900":1,"61901":1,"61902":2,"61903":2,"61904":1,"61905":1,"61906":1,"61907":1,"61908":2,"61909":1,"61910":1,"61911":2,"61912":2,"61913":1,"61914":1,"61915":2,"61916":2,"61917":1,"61918":2,"61919":1,"61920":1,"61921":1,"61922":1,"61923":2,"61924":2,"61925":1,"61926":1,"61927":2,"61928":1,"61929":2,"61930":2,"61931":2,"61932":1,"61933":2,"61934":2,"61935":2,"61936":1,"61937":1,"61938":2,"61939":1,"61940":1,"61941":2,"61942":1,"61943":1,"61944":1,"61945":1,"61946":2,"61947":1,"61948":2,"61949":1,"61950":2,"61951":2,"61952":1,"61953":1,"61954":1,"61955":1,"61956":2,"61957":1,"61958":2,"61959":1,"61960":1,"61961":2,"61962":2,"61963":2,"61964":1,"61965":2,"61966":1,"61967":1,"61968":1,"61969":2,"61970":1,"61971":2,"61972":1,"61973":1,"61974":2,"61975":2,"61976":1,"61977":1,"61978":1,"61979":2,"61980":1,"61981":1,"61982":2,"61983":2,"61984":1,"61985":1,"61986":1,"61987":2,"61988":1,"61989":1,"61990":2,"61991":2,"61992":1,"61993":2,"61994":2,"61995":2,"61996":1,"61997":1,"61998":2,"61999":1,"62000":2,"62001":2,"62002":2,"62003":1,"62004":1,"62005":1,"62006":2,"62007":2,"62008":1,"62009":1,"62010":1,"62011":1,"62012":1,"62013":2,"62014":1,"62015":1,"62016":1,"62017":1,"62018":2,"62019":1,"62020":1,"62021":1,"62022":2,"62023":2,"62024":2,"62025":1,"62026":2,"62027":1,"62028":2,"62029":1,"62030":2,"62031":2,"62032":1,"62033":2,"62034":1,"62035":2,"62036":1,"62037":2,"62038":1,"62039":2,"62040":2,"62041":1,"62042":2,"62043":1,"62044":2,"62045":1,"62046":2,"62047":1,"62048":1,"62049":2,"62050":1,"62051":2,"62052":1,"62053":2,"62054":2,"62055":2,"62056":1,"62057":1,"62058":2,"62059":1,"62060":1,"62061":1,"62062":1,"62063":2,"62064":2,"62065":1,"62066":2,"62067":2,"62068":1,"62069":1,"62070":2,"62071":2,"62072":2,"62073":2,"62074":1,"62075":2,"62076":2,"62077":2,"62078":1,"62079":1,"62080":1,"62081":1,"62082":1,"62083":2,"62084":1,"62085":2,"62086":2,"62087":2,"62088":2,"62089":2,"62090":1,"62091":2,"62092":2,"62093":2,"62094":1,"62095":1,"62096":1,"62097":2,"62098":1,"62099":2,"62100":2,"62101":2,"62102":1,"62103":2,"62104":1,"62105":1,"62106":2,"62107":2,"62108":1,"62109":2,"62110":1,"62111":2,"62112":2,"62113":2,"62114":1,"62115":2,"62116":1,"62117":1,"62118":2,"62119":1,"62120":2,"62121":1,"62122":1,"62123":1,"62124":2,"62125":1,"62126":2,"62127":2,"62128":1,"62129":1,"62130":1,"62131":2,"62132":2,"62133":1,"62134":1,"62135":1,"62136":2,"62137":1,"62138":2,"62139":2,"62140":2,"62141":2,"62142":1,"62143":1,"62144":1,"62145":2,"62146":2,"62147":2,"62148":1,"62149":1,"62150":1,"62151":1,"62152":1,"62153":2,"62154":2,"62155":2,"62156":1,"62157":1,"62158":2,"62159":2,"62160":1,"62161":1,"62162":1,"62163":2,"62164":1,"62165":1,"62166":2,"62167":1,"62168":1,"62169":2,"62170":2,"62171":2,"62172":1,"62173":1,"62174":2,"62175":2,"62176":1,"62177":2,"62178":2,"62179":2,"62180":2,"62181":1,"62182":1,"62183":2,"62184":2,"62185":2,"62186":2,"62187":1,"62188":2,"62189":1,"62190":2,"62191":2,"62192":2,"62193":2,"62194":2,"62195":2,"62196":2,"62197":1,"62198":1,"62199":1,"62200":1,"62201":1,"62202":1,"62203":1,"62204":1,"62205":1,"62206":1,"62207":2,"62208":1,"62209":2,"62210":1,"62211":2,"62212":2,"62213":2,"62214":2,"62215":2,"62216":1,"62217":1,"62218":2,"62219":1,"62220":2,"62221":2,"62222":2,"62223":2,"62224":2,"62225":1,"62226":2,"62227":2,"62228":2,"62229":1,"62230":1,"62231":1,"62232":2,"62233":2,"62234":2,"62235":1,"62236":1,"62237":2,"62238":2,"62239":1,"62240":1,"62241":1,"62242":2,"62243":2,"62244":2,"62245":2,"62246":1,"62247":1,"62248":2,"62249":1,"62250":1,"62251":2,"62252":1,"62253":1,"62254":1,"62255":2,"62256":2,"62257":2,"62258":2,"62259":1,"62260":2,"62261":1,"62262":1,"62263":2,"62264":1,"62265":2,"62266":1,"62267":1,"62268":1,"62269":2,"62270":1,"62271":1,"62272":1,"62273":2,"62274":1,"62275":2,"62276":1,"62277":1,"62278":2,"62279":1,"62280":2,"62281":2,"62282":1,"62283":1,"62284":1,"62285":1,"62286":1,"62287":2,"62288":2,"62289":2,"62290":2,"62291":1,"62292":1,"62293":1,"62294":2,"62295":2,"62296":2,"62297":1,"62298":1,"62299":1,"62300":1,"62301":1,"62302":2,"62303":2,"62304":2,"62305":2,"62306":2,"62307":1,"62308":1,"62309":2,"62310":2,"62311":2,"62312":1,"62313":1,"62314":1,"62315":1,"62316":2,"62317":1,"62318":2,"62319":2,"62320":2,"62321":1,"62322":1,"62323":2,"62324":1,"62325":2,"62326":2,"62327":1,"62328":1,"62329":2,"62330":1,"62331":2,"62332":2,"62333":2,"62334":2,"62335":1,"62336":2,"62337":2,"62338":1,"62339":2,"62340":2,"62341":2,"62342":2,"62343":2,"62344":2,"62345":1,"62346":2,"62347":2,"62348":2,"62349":2,"62350":1,"62351":1,"62352":1,"62353":1,"62354":2,"62355":2,"62356":1,"62357":1,"62358":1,"62359":1,"62360":2,"62361":2,"62362":2,"62363":1,"62364":2,"62365":1,"62366":2,"62367":2,"62368":1,"62369":2,"62370":1,"62371":2,"62372":1,"62373":2,"62374":2,"62375":2,"62376":1,"62377":2,"62378":2,"62379":2,"62380":1,"62381":1,"62382":1,"62383":2,"62384":1,"62385":1,"62386":1,"62387":2,"62388":1,"62389":1,"62390":2,"62391":2,"62392":1,"62393":2,"62394":1,"62395":2,"62396":1,"62397":1,"62398":1,"62399":2,"62400":1,"62401":1,"62402":2,"62403":2,"62404":2,"62405":1,"62406":2,"62407":2,"62408":2,"62409":1,"62410":2,"62411":1,"62412":2,"62413":2,"62414":2,"62415":2,"62416":2,"62417":2,"62418":1,"62419":2,"62420":1,"62421":1,"62422":2,"62423":1,"62424":2,"62425":2,"62426":1,"62427":2,"62428":1,"62429":2,"62430":2,"62431":1,"62432":2,"62433":2,"62434":1,"62435":1,"62436":1,"62437":2,"62438":2,"62439":2,"62440":1,"62441":1,"62442":2,"62443":2,"62444":1,"62445":1,"62446":2,"62447":2,"62448":2,"62449":1,"62450":1,"62451":2,"62452":2,"62453":2,"62454":2,"62455":2,"62456":1,"62457":2,"62458":2,"62459":2,"62460":2,"62461":1,"62462":2,"62463":2,"62464":2,"62465":1,"62466":2,"62467":1,"62468":1,"62469":2,"62470":1,"62471":2,"62472":2,"62473":1,"62474":2,"62475":1,"62476":1,"62477":2,"62478":1,"62479":1,"62480":1,"62481":1,"62482":2,"62483":2,"62484":2,"62485":1,"62486":2,"62487":2,"62488":1,"62489":1,"62490":1,"62491":1,"62492":1,"62493":2,"62494":1,"62495":2,"62496":2,"62497":1,"62498":2,"62499":2,"62500":2,"62501":2,"62502":1,"62503":2,"62504":1,"62505":1,"62506":2,"62507":1,"62508":1,"62509":1,"62510":1,"62511":2,"62512":1,"62513":2,"62514":1,"62515":2,"62516":1,"62517":1,"62518":1,"62519":2,"62520":2,"62521":2,"62522":2,"62523":2,"62524":2,"62525":2,"62526":2,"62527":1,"62528":2,"62529":1,"62530":2,"62531":2,"62532":1,"62533":1,"62534":2,"62535":2,"62536":2,"62537":2,"62538":1,"62539":2,"62540":1,"62541":1,"62542":1,"62543":1,"62544":2,"62545":1,"62546":1,"62547":2,"62548":1,"62549":1,"62550":1,"62551":2,"62552":2,"62553":1,"62554":1,"62555":1,"62556":2,"62557":2,"62558":2,"62559":1,"62560":1,"62561":2,"62562":2,"62563":1,"62564":2,"62565":2,"62566":1,"62567":1,"62568":2,"62569":2,"62570":1,"62571":1,"62572":2,"62573":1,"62574":1,"62575":1,"62576":2,"62577":1,"62578":1,"62579":1,"62580":2,"62581":2,"62582":1,"62583":1,"62584":1,"62585":2,"62586":1,"62587":1,"62588":2,"62589":1,"62590":2,"62591":2,"62592":2,"62593":2,"62594":1,"62595":2,"62596":2,"62597":1,"62598":2,"62599":2,"62600":2,"62601":2,"62602":2,"62603":1,"62604":2,"62605":2,"62606":2,"62607":2,"62608":1,"62609":2,"62610":2,"62611":1,"62612":1,"62613":1,"62614":1,"62615":2,"62616":1,"62617":2,"62618":2,"62619":2,"62620":2,"62621":1,"62622":2,"62623":1,"62624":1,"62625":1,"62626":1,"62627":1,"62628":1,"62629":2,"62630":2,"62631":1,"62632":2,"62633":1,"62634":1,"62635":1,"62636":1,"62637":1,"62638":2,"62639":2,"62640":2,"62641":1,"62642":2,"62643":2,"62644":2,"62645":2,"62646":1,"62647":1,"62648":1,"62649":1,"62650":2,"62651":1,"62652":1,"62653":1,"62654":2,"62655":1,"62656":1,"62657":1,"62658":2,"62659":2,"62660":2,"62661":1,"62662":1,"62663":2,"62664":1,"62665":2,"62666":1,"62667":2,"62668":1,"62669":1,"62670":1,"62671":1,"62672":1,"62673":2,"62674":1,"62675":1,"62676":2,"62677":2,"62678":1,"62679":2,"62680":2,"62681":2,"62682":2,"62683":1,"62684":1,"62685":2,"62686":1,"62687":1,"62688":1,"62689":1,"62690":1,"62691":2,"62692":1,"62693":2,"62694":1,"62695":2,"62696":1,"62697":2,"62698":1,"62699":1,"62700":1,"62701":1,"62702":2,"62703":1,"62704":2,"62705":1,"62706":2,"62707":1,"62708":2,"62709":1,"62710":2,"62711":1,"62712":2,"62713":2,"62714":1,"62715":1,"62716":2,"62717":1,"62718":1,"62719":1,"62720":1,"62721":2,"62722":2,"62723":2,"62724":1,"62725":1,"62726":2,"62727":2,"62728":1,"62729":2,"62730":2,"62731":1,"62732":1,"62733":1,"62734":1,"62735":2,"62736":1,"62737":1,"62738":2,"62739":1,"62740":1,"62741":1,"62742":2,"62743":2,"62744":2,"62745":2,"62746":1,"62747":2,"62748":1,"62749":2,"62750":2,"62751":1,"62752":2,"62753":1,"62754":1,"62755":2,"62756":2,"62757":1,"62758":2,"62759":2,"62760":2,"62761":1,"62762":2,"62763":1,"62764":2,"62765":2,"62766":1,"62767":2,"62768":1,"62769":2,"62770":1,"62771":2,"62772":2,"62773":1,"62774":1,"62775":1,"62776":1,"62777":2,"62778":2,"62779":1,"62780":2,"62781":1,"62782":1,"62783":2,"62784":1,"62785":1,"62786":2,"62787":2,"62788":2,"62789":1,"62790":2,"62791":1,"62792":1,"62793":2,"62794":2,"62795":2,"62796":2,"62797":2,"62798":2,"62799":1,"62800":2,"62801":1,"62802":2,"62803":1,"62804":2,"62805":1,"62806":2,"62807":1,"62808":2,"62809":2,"62810":2,"62811":2,"62812":2,"62813":1,"62814":1,"62815":1,"62816":1,"62817":1,"62818":2,"62819":2,"62820":1,"62821":1,"62822":1,"62823":1,"62824":1,"62825":1,"62826":2,"62827":1,"62828":2,"62829":2,"62830":2,"62831":1,"62832":1,"62833":2,"62834":2,"62835":2,"62836":2,"62837":1,"62838":2,"62839":2,"62840":2,"62841":2,"62842":1,"62843":2,"62844":1,"62845":2,"62846":1,"62847":1,"62848":2,"62849":1,"62850":2,"62851":1,"62852":2,"62853":1,"62854":2,"62855":1,"62856":2,"62857":2,"62858":1,"62859":1,"62860":2,"62861":2,"62862":1,"62863":2,"62864":2,"62865":2,"62866":2,"62867":2,"62868":2,"62869":1,"62870":2,"62871":2,"62872":2,"62873":1,"62874":2,"62875":1,"62876":2,"62877":1,"62878":2,"62879":2,"62880":2,"62881":2,"62882":1,"62883":1,"62884":2,"62885":1,"62886":1,"62887":2,"62888":1,"62889":2,"62890":1,"62891":1,"62892":2,"62893":2,"62894":2,"62895":1,"62896":1,"62897":1,"62898":2,"62899":1,"62900":1,"62901":2,"62902":1,"62903":2,"62904":1,"62905":1,"62906":1,"62907":1,"62908":1,"62909":2,"62910":1,"62911":1,"62912":1,"62913":1,"62914":1,"62915":1,"62916":1,"62917":2,"62918":2,"62919":1,"62920":2,"62921":2,"62922":1,"62923":2,"62924":2,"62925":2,"62926":2,"62927":1,"62928":2,"62929":1,"62930":1,"62931":2,"62932":1,"62933":1,"62934":1,"62935":2,"62936":1,"62937":2,"62938":1,"62939":2,"62940":1,"62941":2,"62942":2,"62943":2,"62944":2,"62945":1,"62946":2,"62947":2,"62948":2,"62949":2,"62950":1,"62951":2,"62952":2,"62953":1,"62954":1,"62955":2,"62956":2,"62957":2,"62958":2,"62959":2,"62960":1,"62961":2,"62962":2,"62963":1,"62964":2,"62965":2,"62966":2,"62967":1,"62968":2,"62969":1,"62970":2,"62971":1,"62972":1,"62973":1,"62974":2,"62975":1,"62976":2,"62977":1,"62978":2,"62979":2,"62980":1,"62981":1,"62982":2,"62983":1,"62984":2,"62985":2,"62986":1,"62987":1,"62988":1,"62989":2,"62990":1,"62991":1,"62992":1,"62993":1,"62994":1,"62995":2,"62996":2,"62997":1,"62998":2,"62999":2,"63000":1,"63001":2,"63002":2,"63003":1,"63004":1,"63005":1,"63006":1,"63007":2,"63008":2,"63009":1,"63010":1,"63011":1,"63012":2,"63013":2,"63014":1,"63015":2,"63016":2,"63017":2,"63018":1,"63019":1,"63020":1,"63021":1,"63022":2,"63023":1,"63024":1,"63025":1,"63026":2,"63027":2,"63028":2,"63029":2,"63030":2,"63031":1,"63032":1,"63033":1,"63034":1,"63035":1,"63036":1,"63037":1,"63038":1,"63039":1,"63040":1,"63041":2,"63042":2,"63043":2,"63044":2,"63045":2,"63046":1,"63047":1,"63048":2,"63049":1,"63050":2,"63051":2,"63052":2,"63053":2,"63054":2,"63055":1,"63056":2,"63057":1,"63058":2,"63059":2,"63060":2,"63061":1,"63062":1,"63063":2,"63064":2,"63065":1,"63066":2,"63067":1,"63068":1,"63069":2,"63070":1,"63071":1,"63072":1,"63073":2,"63074":2,"63075":1,"63076":2,"63077":1,"63078":2,"63079":1,"63080":2,"63081":1,"63082":2,"63083":2,"63084":1,"63085":1,"63086":2,"63087":2,"63088":1,"63089":1,"63090":2,"63091":2,"63092":1,"63093":1,"63094":1,"63095":1,"63096":2,"63097":2,"63098":1,"63099":1,"63100":1,"63101":2,"63102":2,"63103":1,"63104":1,"63105":1,"63106":2,"63107":2,"63108":1,"63109":1,"63110":2,"63111":2,"63112":2,"63113":2,"63114":1,"63115":2,"63116":2,"63117":2,"63118":1,"63119":2,"63120":2,"63121":1,"63122":1,"63123":2,"63124":2,"63125":2,"63126":1,"63127":2,"63128":1,"63129":2,"63130":2,"63131":1,"63132":2,"63133":2,"63134":1,"63135":2,"63136":1,"63137":1,"63138":1,"63139":1,"63140":2,"63141":1,"63142":2,"63143":2,"63144":2,"63145":1,"63146":1,"63147":2,"63148":1,"63149":1,"63150":2,"63151":2,"63152":1,"63153":1,"63154":2,"63155":1,"63156":2,"63157":2,"63158":2,"63159":1,"63160":1,"63161":1,"63162":2,"63163":1,"63164":2,"63165":2,"63166":1,"63167":1,"63168":2,"63169":2,"63170":2,"63171":2,"63172":2,"63173":2,"63174":2,"63175":2,"63176":2,"63177":2,"63178":2,"63179":1,"63180":1,"63181":1,"63182":1,"63183":1,"63184":1,"63185":2,"63186":2,"63187":2,"63188":2,"63189":1,"63190":1,"63191":2,"63192":1,"63193":1,"63194":1,"63195":2,"63196":1,"63197":1,"63198":2,"63199":2,"63200":2,"63201":2,"63202":1,"63203":1,"63204":1,"63205":2,"63206":2,"63207":1,"63208":1,"63209":1,"63210":2,"63211":2,"63212":2,"63213":1,"63214":2,"63215":1,"63216":2,"63217":2,"63218":1,"63219":2,"63220":1,"63221":1,"63222":2,"63223":1,"63224":2,"63225":2,"63226":1,"63227":1,"63228":1,"63229":1,"63230":2,"63231":2,"63232":1,"63233":2,"63234":1,"63235":1,"63236":2,"63237":1,"63238":1,"63239":1,"63240":1,"63241":2,"63242":2,"63243":1,"63244":1,"63245":1,"63246":2,"63247":2,"63248":2,"63249":2,"63250":2,"63251":2,"63252":2,"63253":2,"63254":2,"63255":1,"63256":1,"63257":1,"63258":1,"63259":1,"63260":2,"63261":1,"63262":1,"63263":1,"63264":1,"63265":1,"63266":2,"63267":2,"63268":2,"63269":1,"63270":1,"63271":2,"63272":1,"63273":2,"63274":1,"63275":1,"63276":2,"63277":2,"63278":1,"63279":2,"63280":2,"63281":2,"63282":1,"63283":1,"63284":2,"63285":2,"63286":2,"63287":1,"63288":1,"63289":2,"63290":1,"63291":1,"63292":2,"63293":1,"63294":2,"63295":1,"63296":1,"63297":2,"63298":2,"63299":2,"63300":1,"63301":1,"63302":2,"63303":2,"63304":2,"63305":1,"63306":1,"63307":1,"63308":1,"63309":1,"63310":1,"63311":2,"63312":1,"63313":2,"63314":2,"63315":2,"63316":2,"63317":1,"63318":2,"63319":1,"63320":2,"63321":2,"63322":1,"63323":2,"63324":1,"63325":2,"63326":1,"63327":2,"63328":2,"63329":2,"63330":1,"63331":2,"63332":2,"63333":1,"63334":1,"63335":2,"63336":2,"63337":1,"63338":2,"63339":2,"63340":1,"63341":1,"63342":2,"63343":1,"63344":2,"63345":2,"63346":2,"63347":2,"63348":2,"63349":2,"63350":2,"63351":1,"63352":1,"63353":1,"63354":2,"63355":1,"63356":2,"63357":2,"63358":1,"63359":2,"63360":1,"63361":1,"63362":1,"63363":1,"63364":2,"63365":1,"63366":2,"63367":2,"63368":1,"63369":1,"63370":1,"63371":2,"63372":2,"63373":1,"63374":2,"63375":1,"63376":1,"63377":2,"63378":2,"63379":2,"63380":1,"63381":1,"63382":2,"63383":1,"63384":1,"63385":2,"63386":1,"63387":1,"63388":1,"63389":1,"63390":2,"63391":1,"63392":1,"63393":2,"63394":2,"63395":2,"63396":1,"63397":1,"63398":1,"63399":1,"63400":1,"63401":2,"63402":2,"63403":1,"63404":2,"63405":2,"63406":1,"63407":1,"63408":2,"63409":2,"63410":2,"63411":1,"63412":1,"63413":1,"63414":1,"63415":2,"63416":2,"63417":1,"63418":1,"63419":2,"63420":1,"63421":2,"63422":2,"63423":1,"63424":1,"63425":2,"63426":2,"63427":1,"63428":1,"63429":1,"63430":2,"63431":1,"63432":2,"63433":1,"63434":2,"63435":1,"63436":1,"63437":1,"63438":1,"63439":1,"63440":2,"63441":2,"63442":1,"63443":2,"63444":1,"63445":1,"63446":1,"63447":2,"63448":1,"63449":2,"63450":1,"63451":2,"63452":2,"63453":2,"63454":2,"63455":1,"63456":1,"63457":1,"63458":1,"63459":1,"63460":1,"63461":2,"63462":2,"63463":2,"63464":2,"63465":2,"63466":1,"63467":2,"63468":1,"63469":2,"63470":2,"63471":2,"63472":2,"63473":2,"63474":2,"63475":1,"63476":1,"63477":1,"63478":1,"63479":1,"63480":1,"63481":1,"63482":1,"63483":2,"63484":2,"63485":1,"63486":1,"63487":2,"63488":1,"63489":1,"63490":2,"63491":1,"63492":2,"63493":1,"63494":2,"63495":2,"63496":2,"63497":1,"63498":2,"63499":1,"63500":2,"63501":2,"63502":1,"63503":2,"63504":1,"63505":1,"63506":2,"63507":1,"63508":1,"63509":2,"63510":2,"63511":2,"63512":1,"63513":1,"63514":1,"63515":1,"63516":2,"63517":1,"63518":1,"63519":1,"63520":1,"63521":2,"63522":2,"63523":2,"63524":1,"63525":1,"63526":2,"63527":1,"63528":1,"63529":1,"63530":2,"63531":2,"63532":1,"63533":2,"63534":2,"63535":2,"63536":1,"63537":2,"63538":2,"63539":2,"63540":1,"63541":2,"63542":1,"63543":2,"63544":2,"63545":1,"63546":1,"63547":1,"63548":1,"63549":2,"63550":1,"63551":2,"63552":1,"63553":2,"63554":2,"63555":2,"63556":2,"63557":1,"63558":1,"63559":2,"63560":2,"63561":1,"63562":2,"63563":2,"63564":2,"63565":2,"63566":1,"63567":2,"63568":2,"63569":1,"63570":2,"63571":1,"63572":2,"63573":1,"63574":1,"63575":1,"63576":2,"63577":1,"63578":1,"63579":1,"63580":2,"63581":1,"63582":1,"63583":1,"63584":1,"63585":1,"63586":1,"63587":2,"63588":2,"63589":1,"63590":1,"63591":1,"63592":2,"63593":1,"63594":2,"63595":2,"63596":2,"63597":1,"63598":1,"63599":2,"63600":2,"63601":2,"63602":1,"63603":1,"63604":2,"63605":1,"63606":2,"63607":2,"63608":2,"63609":1,"63610":2,"63611":2,"63612":1,"63613":1,"63614":1,"63615":2,"63616":2,"63617":1,"63618":1,"63619":1,"63620":1,"63621":2,"63622":1,"63623":2,"63624":2,"63625":1,"63626":2,"63627":1,"63628":1,"63629":1,"63630":2,"63631":2,"63632":2,"63633":2,"63634":1,"63635":2,"63636":2,"63637":1,"63638":1,"63639":2,"63640":1,"63641":1,"63642":1,"63643":1,"63644":1,"63645":2,"63646":2,"63647":2,"63648":1,"63649":2,"63650":2,"63651":2,"63652":2,"63653":1,"63654":1,"63655":1,"63656":2,"63657":1,"63658":1,"63659":2,"63660":1,"63661":1,"63662":1,"63663":1,"63664":1,"63665":2,"63666":2,"63667":1,"63668":1,"63669":1,"63670":1,"63671":2,"63672":1,"63673":1,"63674":1,"63675":2,"63676":2,"63677":1,"63678":1,"63679":1,"63680":2,"63681":1,"63682":2,"63683":1,"63684":2,"63685":2,"63686":1,"63687":2,"63688":2,"63689":1,"63690":1,"63691":2,"63692":1,"63693":1,"63694":1,"63695":1,"63696":2,"63697":2,"63698":1,"63699":2,"63700":1,"63701":1,"63702":2,"63703":1,"63704":1,"63705":1,"63706":1,"63707":1,"63708":1,"63709":1,"63710":2,"63711":1,"63712":1,"63713":1,"63714":1,"63715":2,"63716":2,"63717":2,"63718":2,"63719":2,"63720":1,"63721":2,"63722":2,"63723":1,"63724":2,"63725":2,"63726":2,"63727":2,"63728":1,"63729":2,"63730":1,"63731":2,"63732":1,"63733":1,"63734":2,"63735":1,"63736":1,"63737":2,"63738":1,"63739":2,"63740":2,"63741":2,"63742":2,"63743":2,"63744":2,"63745":1,"63746":2,"63747":1,"63748":2,"63749":1,"63750":2,"63751":1,"63752":1,"63753":2,"63754":2,"63755":2,"63756":2,"63757":1,"63758":2,"63759":2,"63760":1,"63761":2,"63762":1,"63763":1,"63764":1,"63765":1,"63766":1,"63767":1,"63768":1,"63769":2,"63770":2,"63771":2,"63772":1,"63773":2,"63774":2,"63775":2,"63776":1,"63777":2,"63778":1,"63779":1,"63780":1,"63781":2,"63782":1,"63783":1,"63784":2,"63785":1,"63786":1,"63787":1,"63788":1,"63789":1,"63790":2,"63791":2,"63792":2,"63793":1,"63794":2,"63795":2,"63796":1,"63797":2,"63798":1,"63799":2,"63800":2,"63801":1,"63802":1,"63803":2,"63804":1,"63805":1,"63806":1,"63807":1,"63808":2,"63809":1,"63810":2,"63811":2,"63812":2,"63813":2,"63814":2,"63815":2,"63816":2,"63817":2,"63818":1,"63819":2,"63820":1,"63821":1,"63822":2,"63823":2,"63824":2,"63825":1,"63826":2,"63827":2,"63828":2,"63829":1,"63830":2,"63831":1,"63832":1,"63833":2,"63834":1,"63835":1,"63836":2,"63837":1,"63838":1,"63839":1,"63840":1,"63841":2,"63842":1,"63843":2,"63844":1,"63845":2,"63846":2,"63847":2,"63848":2,"63849":1,"63850":2,"63851":2,"63852":2,"63853":2,"63854":1,"63855":2,"63856":1,"63857":2,"63858":2,"63859":1,"63860":2,"63861":2,"63862":2,"63863":1,"63864":1,"63865":2,"63866":2,"63867":1,"63868":1,"63869":1,"63870":2,"63871":2,"63872":1,"63873":1,"63874":1,"63875":2,"63876":1,"63877":1,"63878":1,"63879":2,"63880":1,"63881":2,"63882":1,"63883":2,"63884":2,"63885":1,"63886":1,"63887":2,"63888":1,"63889":2,"63890":1,"63891":2,"63892":2,"63893":1,"63894":1,"63895":2,"63896":1,"63897":2,"63898":2,"63899":1,"63900":1,"63901":1,"63902":2,"63903":2,"63904":1,"63905":2,"63906":2,"63907":1,"63908":2,"63909":1,"63910":1,"63911":1,"63912":1,"63913":1,"63914":1,"63915":2,"63916":2,"63917":2,"63918":1,"63919":2,"63920":2,"63921":2,"63922":2,"63923":1,"63924":1,"63925":2,"63926":1,"63927":2,"63928":1,"63929":1,"63930":1,"63931":2,"63932":2,"63933":2,"63934":2,"63935":1,"63936":1,"63937":2,"63938":2,"63939":1,"63940":2,"63941":2,"63942":2,"63943":2,"63944":2,"63945":1,"63946":1,"63947":1,"63948":2,"63949":1,"63950":2,"63951":2,"63952":1,"63953":2,"63954":1,"63955":2,"63956":1,"63957":2,"63958":2,"63959":2,"63960":2,"63961":1,"63962":2,"63963":1,"63964":1,"63965":1,"63966":1,"63967":2,"63968":2,"63969":2,"63970":1,"63971":2,"63972":2,"63973":1,"63974":1,"63975":2,"63976":2,"63977":2,"63978":2,"63979":1,"63980":2,"63981":1,"63982":1,"63983":1,"63984":2,"63985":1,"63986":1,"63987":2,"63988":1,"63989":2,"63990":2,"63991":2,"63992":1,"63993":2,"63994":2,"63995":2,"63996":1,"63997":2,"63998":2,"63999":1,"64000":1,"64001":1,"64002":1,"64003":1,"64004":1,"64005":2,"64006":2,"64007":2,"64008":2,"64009":1,"64010":1,"64011":1,"64012":1,"64013":2,"64014":1,"64015":2,"64016":1,"64017":1,"64018":2,"64019":2,"64020":1,"64021":2,"64022":1,"64023":1,"64024":1,"64025":1,"64026":1,"64027":1,"64028":1,"64029":2,"64030":2,"64031":2,"64032":1,"64033":2,"64034":1,"64035":1,"64036":1,"64037":2,"64038":2,"64039":2,"64040":1,"64041":2,"64042":1,"64043":1,"64044":2,"64045":1,"64046":2,"64047":1,"64048":2,"64049":2,"64050":2,"64051":1,"64052":2,"64053":1,"64054":1,"64055":2,"64056":2,"64057":1,"64058":1,"64059":2,"64060":2,"64061":1,"64062":1,"64063":2,"64064":2,"64065":1,"64066":2,"64067":1,"64068":1,"64069":2,"64070":1,"64071":1,"64072":2,"64073":2,"64074":2,"64075":2,"64076":2,"64077":2,"64078":1,"64079":1,"64080":2,"64081":2,"64082":2,"64083":1,"64084":2,"64085":2,"64086":2,"64087":2,"64088":2,"64089":1,"64090":1,"64091":1,"64092":1,"64093":2,"64094":1,"64095":2,"64096":2,"64097":1,"64098":2,"64099":2,"64100":1,"64101":2,"64102":1,"64103":2,"64104":1,"64105":1,"64106":2,"64107":1,"64108":1,"64109":1,"64110":1,"64111":1,"64112":2,"64113":1,"64114":1,"64115":1,"64116":1,"64117":2,"64118":2,"64119":1,"64120":1,"64121":2,"64122":1,"64123":2,"64124":2,"64125":2,"64126":2,"64127":2,"64128":1,"64129":2,"64130":2,"64131":2,"64132":2,"64133":1,"64134":1,"64135":2,"64136":2,"64137":2,"64138":2,"64139":2,"64140":2,"64141":1,"64142":1,"64143":1,"64144":2,"64145":2,"64146":2,"64147":1,"64148":1,"64149":2,"64150":2,"64151":1,"64152":2,"64153":1,"64154":2,"64155":1,"64156":1,"64157":2,"64158":1,"64159":2,"64160":2,"64161":1,"64162":2,"64163":1,"64164":1,"64165":2,"64166":1,"64167":1,"64168":2,"64169":2,"64170":1,"64171":1,"64172":2,"64173":2,"64174":1,"64175":1,"64176":2,"64177":2,"64178":1,"64179":1,"64180":2,"64181":1,"64182":2,"64183":1,"64184":1,"64185":2,"64186":1,"64187":2,"64188":2,"64189":2,"64190":1,"64191":2,"64192":1,"64193":2,"64194":1,"64195":2,"64196":1,"64197":2,"64198":1,"64199":2,"64200":1,"64201":2,"64202":1,"64203":1,"64204":2,"64205":2,"64206":1,"64207":2,"64208":2,"64209":1,"64210":1,"64211":2,"64212":2,"64213":2,"64214":1,"64215":1,"64216":1,"64217":1,"64218":1,"64219":2,"64220":1,"64221":1,"64222":2,"64223":2,"64224":1,"64225":1,"64226":1,"64227":1,"64228":1,"64229":2,"64230":2,"64231":1,"64232":2,"64233":1,"64234":1,"64235":2,"64236":2,"64237":1,"64238":2,"64239":1,"64240":1,"64241":2,"64242":1,"64243":1,"64244":2,"64245":2,"64246":2,"64247":1,"64248":1,"64249":2,"64250":1,"64251":1,"64252":2,"64253":1,"64254":1,"64255":1,"64256":2,"64257":2,"64258":2,"64259":1,"64260":1,"64261":2,"64262":2,"64263":2,"64264":1,"64265":2,"64266":1,"64267":1,"64268":2,"64269":2,"64270":1,"64271":2,"64272":1,"64273":2,"64274":1,"64275":2,"64276":2,"64277":2,"64278":1,"64279":2,"64280":1,"64281":1,"64282":2,"64283":2,"64284":1,"64285":2,"64286":1,"64287":1,"64288":2,"64289":2,"64290":1,"64291":2,"64292":2,"64293":2,"64294":1,"64295":1,"64296":2,"64297":1,"64298":1,"64299":2,"64300":1,"64301":1,"64302":2,"64303":1,"64304":2,"64305":1,"64306":1,"64307":1,"64308":2,"64309":2,"64310":2,"64311":2,"64312":2,"64313":1,"64314":2,"64315":2,"64316":1,"64317":1,"64318":1,"64319":2,"64320":1,"64321":1,"64322":1,"64323":2,"64324":2,"64325":2,"64326":2,"64327":1,"64328":1,"64329":2,"64330":2,"64331":2,"64332":1,"64333":2,"64334":1,"64335":1,"64336":1,"64337":1,"64338":1,"64339":1,"64340":1,"64341":2,"64342":2,"64343":2,"64344":2,"64345":2,"64346":2,"64347":1,"64348":1,"64349":1,"64350":2,"64351":2,"64352":2,"64353":1,"64354":2,"64355":2,"64356":2,"64357":1,"64358":1,"64359":1,"64360":1,"64361":2,"64362":1,"64363":2,"64364":1,"64365":1,"64366":1,"64367":2,"64368":1,"64369":1,"64370":2,"64371":2,"64372":1,"64373":2,"64374":2,"64375":2,"64376":2,"64377":1,"64378":1,"64379":2,"64380":2,"64381":2,"64382":2,"64383":2,"64384":1,"64385":1,"64386":1,"64387":2,"64388":2,"64389":1,"64390":2,"64391":2,"64392":1,"64393":2,"64394":2,"64395":1,"64396":1,"64397":2,"64398":1,"64399":2,"64400":2,"64401":1,"64402":1,"64403":2,"64404":2,"64405":1,"64406":2,"64407":1,"64408":2,"64409":2,"64410":2,"64411":2,"64412":2,"64413":1,"64414":2,"64415":2,"64416":1,"64417":2,"64418":1,"64419":1,"64420":2,"64421":2,"64422":2,"64423":1,"64424":1,"64425":2,"64426":2,"64427":2,"64428":1,"64429":2,"64430":2,"64431":1,"64432":2,"64433":2,"64434":1,"64435":2,"64436":1,"64437":1,"64438":2,"64439":2,"64440":1,"64441":2,"64442":2,"64443":1,"64444":1,"64445":1,"64446":2,"64447":1,"64448":2,"64449":1,"64450":1,"64451":2,"64452":1,"64453":2,"64454":1,"64455":2,"64456":1,"64457":2,"64458":2,"64459":2,"64460":1,"64461":1,"64462":1,"64463":1,"64464":2,"64465":1,"64466":1,"64467":1,"64468":1,"64469":2,"64470":1,"64471":2,"64472":1,"64473":2,"64474":2,"64475":2,"64476":2,"64477":2,"64478":2,"64479":2,"64480":1,"64481":1,"64482":2,"64483":2,"64484":1,"64485":1,"64486":2,"64487":1,"64488":2,"64489":1,"64490":1,"64491":2,"64492":2,"64493":1,"64494":1,"64495":2,"64496":1,"64497":2,"64498":1,"64499":2,"64500":2,"64501":2,"64502":2,"64503":1,"64504":1,"64505":2,"64506":1,"64507":1,"64508":2,"64509":1,"64510":1,"64511":1,"64512":2,"64513":1,"64514":2,"64515":1,"64516":2,"64517":2,"64518":1,"64519":1,"64520":1,"64521":2,"64522":2,"64523":2,"64524":2,"64525":2,"64526":2,"64527":2,"64528":2,"64529":2,"64530":1,"64531":1,"64532":2,"64533":1,"64534":2,"64535":2,"64536":1,"64537":1,"64538":1,"64539":1,"64540":1,"64541":2,"64542":1,"64543":1,"64544":2,"64545":1,"64546":1,"64547":2,"64548":1,"64549":2,"64550":2,"64551":2,"64552":1,"64553":2,"64554":2,"64555":1,"64556":1,"64557":2,"64558":2,"64559":1,"64560":2,"64561":2,"64562":2,"64563":1,"64564":2,"64565":2,"64566":1,"64567":1,"64568":1,"64569":2,"64570":1,"64571":2,"64572":2,"64573":2,"64574":1,"64575":1,"64576":2,"64577":1,"64578":1,"64579":2,"64580":2,"64581":1,"64582":2,"64583":2,"64584":2,"64585":2,"64586":1,"64587":1,"64588":1,"64589":1,"64590":2,"64591":1,"64592":1,"64593":2,"64594":2,"64595":1,"64596":1,"64597":2,"64598":1,"64599":2,"64600":1,"64601":1,"64602":2,"64603":2,"64604":2,"64605":1,"64606":2,"64607":2,"64608":2,"64609":2,"64610":2,"64611":1,"64612":2,"64613":2,"64614":2,"64615":2,"64616":2,"64617":1,"64618":2,"64619":2,"64620":2,"64621":1,"64622":2,"64623":2,"64624":1,"64625":1,"64626":1,"64627":2,"64628":1,"64629":2,"64630":2,"64631":2,"64632":1,"64633":2,"64634":2,"64635":1,"64636":2,"64637":2,"64638":1,"64639":2,"64640":1,"64641":2,"64642":1,"64643":1,"64644":1,"64645":2,"64646":1,"64647":1,"64648":2,"64649":2,"64650":1,"64651":2,"64652":2,"64653":2,"64654":2,"64655":2,"64656":1,"64657":1,"64658":2,"64659":1,"64660":2,"64661":2,"64662":2,"64663":1,"64664":1,"64665":2,"64666":2,"64667":1,"64668":1,"64669":2,"64670":1,"64671":2,"64672":1,"64673":2,"64674":2,"64675":2,"64676":2,"64677":2,"64678":2,"64679":1,"64680":2,"64681":1,"64682":2,"64683":1,"64684":2,"64685":2,"64686":1,"64687":2,"64688":1,"64689":1,"64690":1,"64691":1,"64692":2,"64693":1,"64694":2,"64695":2,"64696":2,"64697":1,"64698":1,"64699":1,"64700":2,"64701":2,"64702":2,"64703":2,"64704":2,"64705":2,"64706":2,"64707":1,"64708":2,"64709":1,"64710":2,"64711":2,"64712":2,"64713":2,"64714":2,"64715":1,"64716":1,"64717":1,"64718":2,"64719":1,"64720":1,"64721":1,"64722":1,"64723":2,"64724":1,"64725":1,"64726":2,"64727":1,"64728":1,"64729":1,"64730":2,"64731":2,"64732":2,"64733":1,"64734":2,"64735":2,"64736":2,"64737":2,"64738":1,"64739":2,"64740":1,"64741":1,"64742":1,"64743":2,"64744":2,"64745":2,"64746":2,"64747":1,"64748":1,"64749":1,"64750":1,"64751":1,"64752":1,"64753":1,"64754":2,"64755":1,"64756":1,"64757":2,"64758":1,"64759":1,"64760":2,"64761":1,"64762":2,"64763":2,"64764":2,"64765":2,"64766":2,"64767":1,"64768":2,"64769":2,"64770":1,"64771":2,"64772":1,"64773":1,"64774":1,"64775":1,"64776":2,"64777":2,"64778":2,"64779":1,"64780":1,"64781":1,"64782":1,"64783":2,"64784":1,"64785":2,"64786":2,"64787":1,"64788":2,"64789":2,"64790":2,"64791":2,"64792":2,"64793":1,"64794":2,"64795":1,"64796":1,"64797":1,"64798":2,"64799":2,"64800":2,"64801":2,"64802":2,"64803":1,"64804":1,"64805":2,"64806":1,"64807":2,"64808":1,"64809":1,"64810":2,"64811":1,"64812":2,"64813":1,"64814":1,"64815":2,"64816":1,"64817":1,"64818":1,"64819":2,"64820":1,"64821":2,"64822":2,"64823":2,"64824":2,"64825":1,"64826":2,"64827":2,"64828":2,"64829":2,"64830":2,"64831":2,"64832":2,"64833":1,"64834":1,"64835":1,"64836":1,"64837":1,"64838":2,"64839":2,"64840":1,"64841":1,"64842":2,"64843":2,"64844":1,"64845":1,"64846":1,"64847":2,"64848":2,"64849":2,"64850":2,"64851":2,"64852":2,"64853":1,"64854":1,"64855":2,"64856":2,"64857":2,"64858":1,"64859":2,"64860":2,"64861":2,"64862":1,"64863":2,"64864":1,"64865":2,"64866":2,"64867":1,"64868":1,"64869":1,"64870":2,"64871":1,"64872":1,"64873":2,"64874":1,"64875":2,"64876":1,"64877":2,"64878":2,"64879":1,"64880":1,"64881":1,"64882":2,"64883":2,"64884":1,"64885":1,"64886":1,"64887":1,"64888":2,"64889":1,"64890":2,"64891":2,"64892":2,"64893":1,"64894":1,"64895":2,"64896":2,"64897":1,"64898":1,"64899":1,"64900":2,"64901":2,"64902":1,"64903":1,"64904":2,"64905":1,"64906":1,"64907":2,"64908":1,"64909":2,"64910":2,"64911":1,"64912":2,"64913":1,"64914":1,"64915":1,"64916":1,"64917":1,"64918":1,"64919":2,"64920":2,"64921":2,"64922":1,"64923":2,"64924":1,"64925":1,"64926":2,"64927":1,"64928":1,"64929":1,"64930":2,"64931":2,"64932":2,"64933":1,"64934":2,"64935":2,"64936":1,"64937":1,"64938":1,"64939":1,"64940":1,"64941":2,"64942":1,"64943":2,"64944":2,"64945":1,"64946":1,"64947":2,"64948":1,"64949":1,"64950":2,"64951":1,"64952":1,"64953":2,"64954":2,"64955":1,"64956":2,"64957":1,"64958":1,"64959":2,"64960":2,"64961":1,"64962":1,"64963":1,"64964":2,"64965":2,"64966":2,"64967":2,"64968":1,"64969":1,"64970":2,"64971":2,"64972":2,"64973":1,"64974":2,"64975":1,"64976":1,"64977":2,"64978":2,"64979":2,"64980":1,"64981":1,"64982":2,"64983":2,"64984":1,"64985":2,"64986":1,"64987":1,"64988":1,"64989":1,"64990":2,"64991":2,"64992":2,"64993":2,"64994":1,"64995":1,"64996":2,"64997":2,"64998":2,"64999":2,"65000":1,"65001":1,"65002":1,"65003":2,"65004":2,"65005":1,"65006":2,"65007":1,"65008":1,"65009":1,"65010":2,"65011":2,"65012":1,"65013":1,"65014":1,"65015":1,"65016":1,"65017":1,"65018":1,"65019":1,"65020":2,"65021":2,"65022":1,"65023":2,"65024":1,"65025":2,"65026":1,"65027":1,"65028":1,"65029":2,"65030":2,"65031":2,"65032":1,"65033":1,"65034":1,"65035":2,"65036":2,"65037":2,"65038":1,"65039":1,"65040":2,"65041":1,"65042":1,"65043":2,"65044":2,"65045":2,"65046":1,"65047":1,"65048":2,"65049":1,"65050":2,"65051":1,"65052":2,"65053":2,"65054":1,"65055":1,"65056":2,"65057":1,"65058":2,"65059":2,"65060":1,"65061":2,"65062":1,"65063":1,"65064":2,"65065":2,"65066":1,"65067":1,"65068":2,"65069":2,"65070":2,"65071":1,"65072":2,"65073":2,"65074":1,"65075":1,"65076":2,"65077":2,"65078":1,"65079":2,"65080":2,"65081":2,"65082":2,"65083":1,"65084":2,"65085":1,"65086":2,"65087":1,"65088":2,"65089":1,"65090":2,"65091":1,"65092":1,"65093":1,"65094":1,"65095":2,"65096":1,"65097":1,"65098":1,"65099":1,"65100":1,"65101":2,"65102":2,"65103":1,"65104":2,"65105":2,"65106":2,"65107":2,"65108":1,"65109":2,"65110":1,"65111":1,"65112":1,"65113":1,"65114":2,"65115":1,"65116":2,"65117":2,"65118":1,"65119":2,"65120":1,"65121":2,"65122":2,"65123":1,"65124":1,"65125":2,"65126":2,"65127":2,"65128":1,"65129":2,"65130":1,"65131":1,"65132":2,"65133":2,"65134":2,"65135":2,"65136":1,"65137":2,"65138":1,"65139":1,"65140":1,"65141":1,"65142":2,"65143":1,"65144":2,"65145":2,"65146":1,"65147":1,"65148":2,"65149":1,"65150":2,"65151":1,"65152":2,"65153":1,"65154":1,"65155":1,"65156":1,"65157":2,"65158":2,"65159":2,"65160":2,"65161":2,"65162":1,"65163":2,"65164":2,"65165":1,"65166":1,"65167":1,"65168":1,"65169":1,"65170":1,"65171":1,"65172":2,"65173":1,"65174":1,"65175":1,"65176":1,"65177":2,"65178":1,"65179":2,"65180":2,"65181":1,"65182":1,"65183":1,"65184":1,"65185":2,"65186":1,"65187":2,"65188":2,"65189":2,"65190":2,"65191":1,"65192":2,"65193":1,"65194":2,"65195":2,"65196":1,"65197":1,"65198":1,"65199":1,"65200":1,"65201":2,"65202":2,"65203":2,"65204":1,"65205":2,"65206":1,"65207":2,"65208":1,"65209":1,"65210":1,"65211":1,"65212":2,"65213":1,"65214":2,"65215":1,"65216":2,"65217":1,"65218":1,"65219":2,"65220":2,"65221":2,"65222":1,"65223":2,"65224":1,"65225":2,"65226":2,"65227":2,"65228":2,"65229":1,"65230":1,"65231":1,"65232":2,"65233":2,"65234":2,"65235":1,"65236":1,"65237":2,"65238":1,"65239":1,"65240":2,"65241":1,"65242":1,"65243":1,"65244":2,"65245":1,"65246":2,"65247":1,"65248":1,"65249":1,"65250":1,"65251":2,"65252":1,"65253":1,"65254":2,"65255":2,"65256":1,"65257":1,"65258":1,"65259":1,"65260":2,"65261":1,"65262":1,"65263":2,"65264":2,"65265":1,"65266":1,"65267":1,"65268":2,"65269":1,"65270":2,"65271":1,"65272":1,"65273":2,"65274":2,"65275":1,"65276":2,"65277":1,"65278":2,"65279":1,"65280":2,"65281":1,"65282":2,"65283":2,"65284":1,"65285":1,"65286":1,"65287":1,"65288":2,"65289":2,"65290":2,"65291":2,"65292":1,"65293":1,"65294":1,"65295":1,"65296":1,"65297":1,"65298":2,"65299":1,"65300":1,"65301":2,"65302":2,"65303":2,"65304":2,"65305":2,"65306":2,"65307":2,"65308":2,"65309":1,"65310":2,"65311":1,"65312":1,"65313":2,"65314":2,"65315":2,"65316":2,"65317":2,"65318":2,"65319":2,"65320":2,"65321":1,"65322":1,"65323":2,"65324":2,"65325":1,"65326":2,"65327":1,"65328":2,"65329":2,"65330":1,"65331":1,"65332":2,"65333":1,"65334":2,"65335":2,"65336":2,"65337":2,"65338":1,"65339":1,"65340":1,"65341":1,"65342":1,"65343":1,"65344":1,"65345":2,"65346":2,"65347":1,"65348":1,"65349":2,"65350":1,"65351":1,"65352":2,"65353":1,"65354":1,"65355":1,"65356":2,"65357":1,"65358":2,"65359":2,"65360":1,"65361":2,"65362":2,"65363":1,"65364":1,"65365":2,"65366":2,"65367":2,"65368":2,"65369":1,"65370":2,"65371":1,"65372":2,"65373":2,"65374":2,"65375":1,"65376":2,"65377":1,"65378":2,"65379":2,"65380":1,"65381":2,"65382":1,"65383":2,"65384":1,"65385":2,"65386":2,"65387":1,"65388":1,"65389":1,"65390":2,"65391":2,"65392":2,"65393":2,"65394":1,"65395":1,"65396":2,"65397":1,"65398":2,"65399":2,"65400":1,"65401":1,"65402":2,"65403":2,"65404":2,"65405":2,"65406":2,"65407":2,"65408":2,"65409":1,"65410":2,"65411":2,"65412":1,"65413":1,"65414":2,"65415":2,"65416":1,"65417":2,"65418":1,"65419":1,"65420":1,"65421":1,"65422":1,"65423":1,"65424":1,"65425":2,"65426":2,"65427":2,"65428":1,"65429":2,"65430":2,"65431":1,"65432":1,"65433":1,"65434":2,"65435":1,"65436":1,"65437":1,"65438":2,"65439":2,"65440":1,"65441":2,"65442":1,"65443":2,"65444":1,"65445":2,"65446":1,"65447":1,"65448":1,"65449":1,"65450":1,"65451":1,"65452":1,"65453":1,"65454":1,"65455":2,"65456":2,"65457":2,"65458":2,"65459":2,"65460":1,"65461":1,"65462":2,"65463":2,"65464":1,"65465":1,"65466":1,"65467":1,"65468":2,"65469":2,"65470":2,"65471":2,"65472":1,"65473":2,"65474":2,"65475":2,"65476":1,"65477":1,"65478":1,"65479":2,"65480":2,"65481":1,"65482":1,"65483":1,"65484":2,"65485":2,"65486":1,"65487":2,"65488":1,"65489":2,"65490":2,"65491":2,"65492":2,"65493":1,"65494":2,"65495":1,"65496":2,"65497":1,"65498":2,"65499":1,"65500":1,"65501":2,"65502":1,"65503":1,"65504":2,"65505":1,"65506":1,"65507":1,"65508":1,"65509":2,"65510":2,"65511":1,"65512":1,"65513":1,"65514":2,"65515":2,"65516":2,"65517":2,"65518":1,"65519":2,"65520":2,"65521":2,"65522":1,"65523":1,"65524":2,"65525":2,"65526":2,"65527":1,"65528":1,"65529":2,"65530":1,"65531":2,"65532":1,"65533":2,"65534":1,"65535":2,"65536":1,"65537":2,"65538":1,"65539":1,"65540":2,"65541":2,"65542":2,"65543":1,"65544":2,"65545":2,"65546":1,"65547":1,"65548":1,"65549":2,"65550":2,"65551":2,"65552":2,"65553":1,"65554":2,"65555":2,"65556":1,"65557":2,"65558":2,"65559":1,"65560":1,"65561":1,"65562":1,"65563":1,"65564":2,"65565":1,"65566":2,"65567":1,"65568":2,"65569":1,"65570":1,"65571":2,"65572":2,"65573":2,"65574":2,"65575":1,"65576":2,"65577":2,"65578":1,"65579":2,"65580":2,"65581":2,"65582":2,"65583":1,"65584":1,"65585":2,"65586":1,"65587":1,"65588":2,"65589":1,"65590":1,"65591":1,"65592":2,"65593":2,"65594":1,"65595":2,"65596":2,"65597":2,"65598":1,"65599":1,"65600":1,"65601":2,"65602":2,"65603":1,"65604":2,"65605":2,"65606":2,"65607":1,"65608":2,"65609":2,"65610":2,"65611":1,"65612":1,"65613":2,"65614":1,"65615":1,"65616":1,"65617":1,"65618":2,"65619":1,"65620":1,"65621":2,"65622":1,"65623":2,"65624":2,"65625":2,"65626":2,"65627":1,"65628":2,"65629":2,"65630":2,"65631":2,"65632":2,"65633":1,"65634":2,"65635":1,"65636":1,"65637":1,"65638":1,"65639":1,"65640":2,"65641":1,"65642":1,"65643":2,"65644":1,"65645":2,"65646":2,"65647":1,"65648":1,"65649":2,"65650":2,"65651":1,"65652":1,"65653":1,"65654":1,"65655":1,"65656":1,"65657":2,"65658":2,"65659":1,"65660":2,"65661":2,"65662":2,"65663":2,"65664":2,"65665":1,"65666":2,"65667":2,"65668":1,"65669":1,"65670":1,"65671":2,"65672":2,"65673":1,"65674":2,"65675":2,"65676":1,"65677":1,"65678":1,"65679":1,"65680":2,"65681":1,"65682":2,"65683":1,"65684":2,"65685":1,"65686":1,"65687":1,"65688":1,"65689":2,"65690":2,"65691":2,"65692":2,"65693":2,"65694":2,"65695":2,"65696":1,"65697":2,"65698":1,"65699":2,"65700":1,"65701":1,"65702":2,"65703":2,"65704":1,"65705":1,"65706":1,"65707":2,"65708":1,"65709":2,"65710":1,"65711":2,"65712":2,"65713":2,"65714":2,"65715":2,"65716":2,"65717":2,"65718":1,"65719":1,"65720":1,"65721":1,"65722":1,"65723":1,"65724":1,"65725":1,"65726":2,"65727":1,"65728":1,"65729":2,"65730":1,"65731":2,"65732":1,"65733":1,"65734":1,"65735":1,"65736":2,"65737":2,"65738":2,"65739":2,"65740":2,"65741":2,"65742":2,"65743":1,"65744":2,"65745":2,"65746":1,"65747":1,"65748":2,"65749":1,"65750":1,"65751":2,"65752":1,"65753":2,"65754":1,"65755":1,"65756":2,"65757":1,"65758":2,"65759":2,"65760":1,"65761":2,"65762":2,"65763":1,"65764":2,"65765":1,"65766":1,"65767":1,"65768":1,"65769":1,"65770":2,"65771":2,"65772":2,"65773":1,"65774":1,"65775":2,"65776":1,"65777":1,"65778":2,"65779":2,"65780":1,"65781":1,"65782":2,"65783":1,"65784":2,"65785":2,"65786":2,"65787":1,"65788":2,"65789":1,"65790":2,"65791":2,"65792":1,"65793":1,"65794":1,"65795":2,"65796":2,"65797":1,"65798":1,"65799":2,"65800":2,"65801":1,"65802":1,"65803":1,"65804":2,"65805":1,"65806":2,"65807":2,"65808":1,"65809":2,"65810":1,"65811":2,"65812":2,"65813":2,"65814":2,"65815":1,"65816":1,"65817":2,"65818":1,"65819":1,"65820":2,"65821":2,"65822":2,"65823":2,"65824":2,"65825":1,"65826":2,"65827":2,"65828":2,"65829":1,"65830":1,"65831":2,"65832":1,"65833":1,"65834":2,"65835":1,"65836":2,"65837":2,"65838":1,"65839":2,"65840":1,"65841":2,"65842":1,"65843":1,"65844":2,"65845":2,"65846":1,"65847":1,"65848":1,"65849":2,"65850":2,"65851":2,"65852":1,"65853":2,"65854":1,"65855":1,"65856":2,"65857":2,"65858":1,"65859":1,"65860":2,"65861":1,"65862":2,"65863":2,"65864":2,"65865":1,"65866":2,"65867":1,"65868":1,"65869":2,"65870":1,"65871":1,"65872":1,"65873":1,"65874":2,"65875":2,"65876":1,"65877":1,"65878":1,"65879":1,"65880":1,"65881":1,"65882":1,"65883":1,"65884":1,"65885":2,"65886":2,"65887":2,"65888":2,"65889":1,"65890":1,"65891":1,"65892":2,"65893":2,"65894":1,"65895":1,"65896":1,"65897":1,"65898":2,"65899":1,"65900":2,"65901":1,"65902":2,"65903":2,"65904":2,"65905":2,"65906":2,"65907":1,"65908":1,"65909":2,"65910":1,"65911":2,"65912":2,"65913":2,"65914":1,"65915":1,"65916":1,"65917":2,"65918":1,"65919":1,"65920":2,"65921":1,"65922":2,"65923":1,"65924":2,"65925":1,"65926":1,"65927":1,"65928":2,"65929":1,"65930":2,"65931":1,"65932":1,"65933":2,"65934":2,"65935":2,"65936":2,"65937":2,"65938":1,"65939":1,"65940":2,"65941":1,"65942":1,"65943":2,"65944":1,"65945":2,"65946":1,"65947":2,"65948":1,"65949":1,"65950":2,"65951":1,"65952":1,"65953":1,"65954":1,"65955":1,"65956":1,"65957":2,"65958":2,"65959":1,"65960":2,"65961":1,"65962":1,"65963":1,"65964":1,"65965":2,"65966":1,"65967":2,"65968":2,"65969":1,"65970":1,"65971":1,"65972":1,"65973":1,"65974":2,"65975":1,"65976":2,"65977":1,"65978":2,"65979":1,"65980":1,"65981":2,"65982":2,"65983":2,"65984":1,"65985":1,"65986":1,"65987":1,"65988":1,"65989":2,"65990":1,"65991":2,"65992":2,"65993":1,"65994":1,"65995":1,"65996":2,"65997":2,"65998":2,"65999":1,"66000":2,"66001":2,"66002":1,"66003":2,"66004":2,"66005":1,"66006":1,"66007":2,"66008":2,"66009":2,"66010":2,"66011":1,"66012":2,"66013":1,"66014":2,"66015":2,"66016":2,"66017":2,"66018":1,"66019":2,"66020":1,"66021":2,"66022":1,"66023":1,"66024":2,"66025":2,"66026":1,"66027":2,"66028":2,"66029":1,"66030":2,"66031":1,"66032":1,"66033":1,"66034":2,"66035":1,"66036":2,"66037":2,"66038":2,"66039":2,"66040":1,"66041":2,"66042":1,"66043":1,"66044":1,"66045":2,"66046":1,"66047":2,"66048":1,"66049":2,"66050":1,"66051":2,"66052":1,"66053":1,"66054":1,"66055":1,"66056":2,"66057":1,"66058":1,"66059":1,"66060":1,"66061":2,"66062":2,"66063":2,"66064":2,"66065":2,"66066":1,"66067":1,"66068":2,"66069":2,"66070":1,"66071":2,"66072":1,"66073":1,"66074":2,"66075":1,"66076":1,"66077":2,"66078":2,"66079":2,"66080":2,"66081":2,"66082":2,"66083":1,"66084":2,"66085":2,"66086":1,"66087":2,"66088":2,"66089":2,"66090":1,"66091":2,"66092":1,"66093":2,"66094":1,"66095":2,"66096":2,"66097":1,"66098":2,"66099":2,"66100":1,"66101":2,"66102":2,"66103":1,"66104":2,"66105":2,"66106":1,"66107":1,"66108":2,"66109":2,"66110":1,"66111":2,"66112":1,"66113":1,"66114":2,"66115":2,"66116":1,"66117":2,"66118":1,"66119":2,"66120":2,"66121":1,"66122":1,"66123":1,"66124":2,"66125":1,"66126":2,"66127":2,"66128":2,"66129":1,"66130":1,"66131":1,"66132":2,"66133":2,"66134":2,"66135":1,"66136":2,"66137":2,"66138":1,"66139":2,"66140":2,"66141":2,"66142":2,"66143":2,"66144":1,"66145":1,"66146":1,"66147":2,"66148":1,"66149":2,"66150":1,"66151":2,"66152":1,"66153":2,"66154":1,"66155":1,"66156":2,"66157":1,"66158":2,"66159":2,"66160":1,"66161":2,"66162":1,"66163":2,"66164":1,"66165":2,"66166":2,"66167":2,"66168":2,"66169":2,"66170":2,"66171":2,"66172":1,"66173":2,"66174":1,"66175":1,"66176":2,"66177":2,"66178":1,"66179":2,"66180":1,"66181":2,"66182":2,"66183":2,"66184":1,"66185":1,"66186":1,"66187":1,"66188":2,"66189":1,"66190":2,"66191":1,"66192":2,"66193":2,"66194":1,"66195":1,"66196":2,"66197":2,"66198":1,"66199":2,"66200":2,"66201":1,"66202":2,"66203":1,"66204":2,"66205":2,"66206":1,"66207":2,"66208":1,"66209":2,"66210":1,"66211":1,"66212":2,"66213":2,"66214":1,"66215":2,"66216":2,"66217":2,"66218":1,"66219":2,"66220":2,"66221":1,"66222":2,"66223":2,"66224":1,"66225":2,"66226":2,"66227":1,"66228":2,"66229":2,"66230":1,"66231":1,"66232":2,"66233":1,"66234":2,"66235":2,"66236":1,"66237":2,"66238":2,"66239":2,"66240":2,"66241":1,"66242":1,"66243":2,"66244":1,"66245":2,"66246":1,"66247":1,"66248":2,"66249":2,"66250":2,"66251":2,"66252":1,"66253":1,"66254":1,"66255":2,"66256":2,"66257":2,"66258":2,"66259":2,"66260":2,"66261":2,"66262":2,"66263":1,"66264":1,"66265":2,"66266":1,"66267":2,"66268":1,"66269":1,"66270":1,"66271":2,"66272":1,"66273":2,"66274":1,"66275":2,"66276":2,"66277":2,"66278":1,"66279":2,"66280":1,"66281":2,"66282":2,"66283":2,"66284":1,"66285":1,"66286":2,"66287":2,"66288":2,"66289":1,"66290":2,"66291":2,"66292":2,"66293":2,"66294":1,"66295":2,"66296":2,"66297":1,"66298":1,"66299":2,"66300":2,"66301":2,"66302":1,"66303":2,"66304":1,"66305":2,"66306":2,"66307":1,"66308":2,"66309":1,"66310":2,"66311":1,"66312":1,"66313":2,"66314":2,"66315":2,"66316":2,"66317":1,"66318":2,"66319":1,"66320":2,"66321":1,"66322":1,"66323":1,"66324":2,"66325":2,"66326":1,"66327":2,"66328":1,"66329":1,"66330":2,"66331":2,"66332":2,"66333":2,"66334":2,"66335":1,"66336":1,"66337":1,"66338":1,"66339":2,"66340":1,"66341":1,"66342":2,"66343":2,"66344":2,"66345":2,"66346":2,"66347":2,"66348":1,"66349":2,"66350":1,"66351":1,"66352":2,"66353":2,"66354":1,"66355":2,"66356":1,"66357":2,"66358":2,"66359":1,"66360":1,"66361":2,"66362":1,"66363":2,"66364":2,"66365":1,"66366":2,"66367":1,"66368":2,"66369":1,"66370":2,"66371":1,"66372":1,"66373":2,"66374":2,"66375":2,"66376":1,"66377":2,"66378":1,"66379":2,"66380":1,"66381":1,"66382":1,"66383":1,"66384":1,"66385":2,"66386":1,"66387":1,"66388":2,"66389":2,"66390":2,"66391":1,"66392":2,"66393":2,"66394":1,"66395":2,"66396":2,"66397":1,"66398":2,"66399":1,"66400":1,"66401":2,"66402":1,"66403":1,"66404":1,"66405":1,"66406":1,"66407":2,"66408":2,"66409":1,"66410":2,"66411":1,"66412":2,"66413":1,"66414":2,"66415":2,"66416":1,"66417":1,"66418":2,"66419":1,"66420":1,"66421":1,"66422":1,"66423":1,"66424":1,"66425":1,"66426":2,"66427":1,"66428":2,"66429":1,"66430":2,"66431":1,"66432":1,"66433":2,"66434":1,"66435":1,"66436":2,"66437":2,"66438":1,"66439":2,"66440":2,"66441":2,"66442":1,"66443":2,"66444":1,"66445":2,"66446":1,"66447":1,"66448":1,"66449":1,"66450":2,"66451":2,"66452":1,"66453":2,"66454":1,"66455":2,"66456":2,"66457":2,"66458":1,"66459":2,"66460":2,"66461":1,"66462":2,"66463":1,"66464":2,"66465":2,"66466":2,"66467":2,"66468":2,"66469":2,"66470":1,"66471":1,"66472":2,"66473":1,"66474":2,"66475":1,"66476":2,"66477":1,"66478":2,"66479":1,"66480":2,"66481":1,"66482":1,"66483":2,"66484":1,"66485":1,"66486":2,"66487":2,"66488":2,"66489":2,"66490":1,"66491":1,"66492":2,"66493":2,"66494":2,"66495":2,"66496":2,"66497":1,"66498":2,"66499":1,"66500":2,"66501":2,"66502":2,"66503":2,"66504":2,"66505":1,"66506":2,"66507":1,"66508":1,"66509":2,"66510":2,"66511":1,"66512":2,"66513":1,"66514":2,"66515":2,"66516":1,"66517":2,"66518":1,"66519":2,"66520":2,"66521":1,"66522":1,"66523":1,"66524":1,"66525":1,"66526":2,"66527":1,"66528":2,"66529":1,"66530":1,"66531":2,"66532":1,"66533":2,"66534":1,"66535":1,"66536":2,"66537":1,"66538":2,"66539":1,"66540":2,"66541":1,"66542":1,"66543":1,"66544":1,"66545":2,"66546":1,"66547":1,"66548":2,"66549":2,"66550":2,"66551":2,"66552":1,"66553":2,"66554":2,"66555":2,"66556":2,"66557":1,"66558":1,"66559":2,"66560":1,"66561":2,"66562":2,"66563":1,"66564":1,"66565":1,"66566":2,"66567":2,"66568":1,"66569":1,"66570":1,"66571":2,"66572":1,"66573":1,"66574":1,"66575":2,"66576":1,"66577":2,"66578":2,"66579":2,"66580":1,"66581":2,"66582":2,"66583":2,"66584":1,"66585":2,"66586":1,"66587":1,"66588":1,"66589":2,"66590":1,"66591":2,"66592":2,"66593":1,"66594":1,"66595":2,"66596":2,"66597":2,"66598":2,"66599":1,"66600":2,"66601":2,"66602":2,"66603":2,"66604":1,"66605":1,"66606":2,"66607":1,"66608":2,"66609":2,"66610":2,"66611":1,"66612":2,"66613":2,"66614":1,"66615":2,"66616":1,"66617":2,"66618":2,"66619":2,"66620":1,"66621":2,"66622":2,"66623":1,"66624":2,"66625":1,"66626":2,"66627":2,"66628":2,"66629":2,"66630":2,"66631":2,"66632":2,"66633":2,"66634":2,"66635":1,"66636":1,"66637":1,"66638":2,"66639":1,"66640":1,"66641":1,"66642":2,"66643":2,"66644":2,"66645":1,"66646":2,"66647":2,"66648":2,"66649":2,"66650":2,"66651":2,"66652":2,"66653":1,"66654":2,"66655":1,"66656":2,"66657":1,"66658":1,"66659":2,"66660":2,"66661":2,"66662":2,"66663":1,"66664":1,"66665":2,"66666":1,"66667":2,"66668":1,"66669":2,"66670":1,"66671":2,"66672":1,"66673":2,"66674":1,"66675":2,"66676":2,"66677":1,"66678":2,"66679":1,"66680":1,"66681":2,"66682":1,"66683":2,"66684":2,"66685":1,"66686":1,"66687":2,"66688":2,"66689":2,"66690":1,"66691":1,"66692":1,"66693":1,"66694":2,"66695":2,"66696":1,"66697":2,"66698":1,"66699":1,"66700":2,"66701":2,"66702":1,"66703":1,"66704":1,"66705":2,"66706":2,"66707":2,"66708":1,"66709":1,"66710":1,"66711":2,"66712":1,"66713":2,"66714":2,"66715":2,"66716":2,"66717":1,"66718":2,"66719":1,"66720":1,"66721":1,"66722":1,"66723":1,"66724":1,"66725":1,"66726":2,"66727":1,"66728":2,"66729":2,"66730":1,"66731":1,"66732":2,"66733":2,"66734":1,"66735":2,"66736":1,"66737":1,"66738":1,"66739":2,"66740":2,"66741":1,"66742":2,"66743":1,"66744":1,"66745":1,"66746":2,"66747":1,"66748":1,"66749":2,"66750":1,"66751":1,"66752":1,"66753":1,"66754":2,"66755":2,"66756":1,"66757":1,"66758":2,"66759":1,"66760":1,"66761":1,"66762":2,"66763":1,"66764":1,"66765":1,"66766":2,"66767":1,"66768":1,"66769":1,"66770":2,"66771":2,"66772":1,"66773":2,"66774":1,"66775":2,"66776":2,"66777":2,"66778":2,"66779":1,"66780":1,"66781":1,"66782":2,"66783":1,"66784":1,"66785":2,"66786":2,"66787":1,"66788":2,"66789":1,"66790":1,"66791":1,"66792":2,"66793":2,"66794":2,"66795":1,"66796":2,"66797":2,"66798":1,"66799":1,"66800":1,"66801":2,"66802":1,"66803":1,"66804":2,"66805":2,"66806":2,"66807":2,"66808":2,"66809":2,"66810":2,"66811":2,"66812":1,"66813":1,"66814":1,"66815":2,"66816":2,"66817":2,"66818":2,"66819":2,"66820":2,"66821":2,"66822":2,"66823":1,"66824":1,"66825":2,"66826":1,"66827":2,"66828":2,"66829":1,"66830":1,"66831":2,"66832":1,"66833":2,"66834":2,"66835":1,"66836":2,"66837":1,"66838":1,"66839":1,"66840":2,"66841":2,"66842":1,"66843":1,"66844":1,"66845":2,"66846":1,"66847":1,"66848":1,"66849":2,"66850":1,"66851":2,"66852":2,"66853":2,"66854":1,"66855":1,"66856":1,"66857":1,"66858":2,"66859":1,"66860":2,"66861":2,"66862":2,"66863":2,"66864":1,"66865":2,"66866":2,"66867":1,"66868":2,"66869":2,"66870":1,"66871":1,"66872":1,"66873":2,"66874":2,"66875":1,"66876":1,"66877":1,"66878":1,"66879":2,"66880":2,"66881":1,"66882":2,"66883":1,"66884":2,"66885":2,"66886":1,"66887":1,"66888":2,"66889":1,"66890":2,"66891":1,"66892":2,"66893":2,"66894":1,"66895":1,"66896":2,"66897":2,"66898":1,"66899":2,"66900":1,"66901":2,"66902":2,"66903":2,"66904":1,"66905":2,"66906":1,"66907":2,"66908":2,"66909":2,"66910":1,"66911":1,"66912":1,"66913":2,"66914":1,"66915":1,"66916":1,"66917":2,"66918":1,"66919":1,"66920":1,"66921":2,"66922":1,"66923":1,"66924":1,"66925":2,"66926":1,"66927":2,"66928":1,"66929":1,"66930":1,"66931":1,"66932":2,"66933":1,"66934":1,"66935":1,"66936":1,"66937":2,"66938":1,"66939":2,"66940":2,"66941":2,"66942":1,"66943":1,"66944":2,"66945":1,"66946":2,"66947":2,"66948":1,"66949":1,"66950":2,"66951":2,"66952":1,"66953":1,"66954":2,"66955":2,"66956":1,"66957":2,"66958":2,"66959":1,"66960":2,"66961":2,"66962":1,"66963":1,"66964":1,"66965":1,"66966":2,"66967":2,"66968":1,"66969":2,"66970":1,"66971":1,"66972":2,"66973":2,"66974":1,"66975":2,"66976":2,"66977":1,"66978":2,"66979":2,"66980":2,"66981":2,"66982":2,"66983":1,"66984":2,"66985":2,"66986":1,"66987":1,"66988":2,"66989":2,"66990":2,"66991":2,"66992":1,"66993":2,"66994":1,"66995":1,"66996":2,"66997":2,"66998":2,"66999":2,"67000":1,"67001":1,"67002":2,"67003":1,"67004":1,"67005":1,"67006":1,"67007":1,"67008":1,"67009":1,"67010":1,"67011":1,"67012":2,"67013":1,"67014":2,"67015":2,"67016":1,"67017":1,"67018":1,"67019":1,"67020":1,"67021":1,"67022":2,"67023":2,"67024":2,"67025":1,"67026":1,"67027":1,"67028":2,"67029":2,"67030":2,"67031":1,"67032":2,"67033":2,"67034":1,"67035":2,"67036":1,"67037":1,"67038":2,"67039":2,"67040":1,"67041":2,"67042":2,"67043":2,"67044":1,"67045":2,"67046":2,"67047":1,"67048":1,"67049":1,"67050":1,"67051":1,"67052":2,"67053":1,"67054":2,"67055":1,"67056":2,"67057":2,"67058":1,"67059":2,"67060":2,"67061":2,"67062":2,"67063":1,"67064":1,"67065":2,"67066":1,"67067":1,"67068":1,"67069":2,"67070":2,"67071":2,"67072":2,"67073":1,"67074":1,"67075":1,"67076":1,"67077":1,"67078":1,"67079":2,"67080":2,"67081":2,"67082":2,"67083":2,"67084":2,"67085":1,"67086":2,"67087":2,"67088":1,"67089":2,"67090":2,"67091":1,"67092":2,"67093":2,"67094":2,"67095":1,"67096":2,"67097":2,"67098":1,"67099":1,"67100":2,"67101":1,"67102":2,"67103":1,"67104":2,"67105":2,"67106":2,"67107":2,"67108":2,"67109":2,"67110":2,"67111":1,"67112":1,"67113":2,"67114":1,"67115":1,"67116":1,"67117":1,"67118":2,"67119":1,"67120":2,"67121":2,"67122":1,"67123":1,"67124":1,"67125":2,"67126":1,"67127":2,"67128":1,"67129":2,"67130":2,"67131":1,"67132":2,"67133":2,"67134":2,"67135":2,"67136":1,"67137":2,"67138":2,"67139":2,"67140":2,"67141":1,"67142":2,"67143":2,"67144":2,"67145":2,"67146":1,"67147":2,"67148":2,"67149":2,"67150":2,"67151":2,"67152":2,"67153":1,"67154":2,"67155":2,"67156":2,"67157":1,"67158":2,"67159":2,"67160":2,"67161":1,"67162":1,"67163":2,"67164":1,"67165":2,"67166":2,"67167":2,"67168":1,"67169":1,"67170":2,"67171":1,"67172":2,"67173":1,"67174":2,"67175":2,"67176":1,"67177":2,"67178":2,"67179":1,"67180":1,"67181":1,"67182":2,"67183":1,"67184":1,"67185":1,"67186":2,"67187":1,"67188":1,"67189":2,"67190":2,"67191":2,"67192":2,"67193":2,"67194":2,"67195":1,"67196":1,"67197":2,"67198":1,"67199":1,"67200":2,"67201":2,"67202":2,"67203":1,"67204":1,"67205":2,"67206":1,"67207":1,"67208":2,"67209":1,"67210":1,"67211":1,"67212":1,"67213":2,"67214":1,"67215":2,"67216":2,"67217":1,"67218":1,"67219":1,"67220":1,"67221":1,"67222":1,"67223":1,"67224":1,"67225":1,"67226":2,"67227":2,"67228":2,"67229":2,"67230":1,"67231":1,"67232":2,"67233":1,"67234":2,"67235":1,"67236":2,"67237":1,"67238":2,"67239":1,"67240":2,"67241":1,"67242":1,"67243":1,"67244":1,"67245":1,"67246":1,"67247":1,"67248":2,"67249":2,"67250":2,"67251":1,"67252":1,"67253":2,"67254":2,"67255":1,"67256":2,"67257":2,"67258":2,"67259":1,"67260":1,"67261":2,"67262":2,"67263":2,"67264":2,"67265":2,"67266":1,"67267":2,"67268":1,"67269":2,"67270":1,"67271":2,"67272":2,"67273":2,"67274":1,"67275":1,"67276":2,"67277":2,"67278":1,"67279":1,"67280":1,"67281":1,"67282":1,"67283":1,"67284":1,"67285":1,"67286":2,"67287":2,"67288":2,"67289":2,"67290":1,"67291":2,"67292":1,"67293":2,"67294":1,"67295":2,"67296":2,"67297":1,"67298":2,"67299":1,"67300":2,"67301":1,"67302":1,"67303":1,"67304":2,"67305":1,"67306":1,"67307":1,"67308":1,"67309":2,"67310":1,"67311":1,"67312":1,"67313":2,"67314":1,"67315":2,"67316":1,"67317":1,"67318":1,"67319":1,"67320":1,"67321":2,"67322":1,"67323":2,"67324":1,"67325":2,"67326":1,"67327":1,"67328":1,"67329":1,"67330":2,"67331":2,"67332":1,"67333":2,"67334":2,"67335":1,"67336":1,"67337":2,"67338":1,"67339":1,"67340":1,"67341":2,"67342":1,"67343":1,"67344":1,"67345":2,"67346":2,"67347":2,"67348":1,"67349":1,"67350":1,"67351":1,"67352":1,"67353":1,"67354":2,"67355":1,"67356":2,"67357":1,"67358":2,"67359":2,"67360":1,"67361":2,"67362":2,"67363":2,"67364":2,"67365":2,"67366":1,"67367":2,"67368":1,"67369":2,"67370":2,"67371":1,"67372":1,"67373":1,"67374":2,"67375":2,"67376":1,"67377":2,"67378":1,"67379":1,"67380":1,"67381":2,"67382":2,"67383":1,"67384":1,"67385":1,"67386":1,"67387":1,"67388":1,"67389":1,"67390":1,"67391":2,"67392":2,"67393":1,"67394":2,"67395":1,"67396":2,"67397":2,"67398":1,"67399":2,"67400":1,"67401":1,"67402":1,"67403":1,"67404":2,"67405":1,"67406":1,"67407":1,"67408":1,"67409":1,"67410":2,"67411":1,"67412":2,"67413":2,"67414":1,"67415":1,"67416":1,"67417":1,"67418":1,"67419":1,"67420":1,"67421":1,"67422":2,"67423":1,"67424":2,"67425":1,"67426":2,"67427":1,"67428":1,"67429":2,"67430":2,"67431":2,"67432":2,"67433":2,"67434":1,"67435":1,"67436":2,"67437":2,"67438":2,"67439":1,"67440":1,"67441":1,"67442":1,"67443":1,"67444":1,"67445":1,"67446":1,"67447":1,"67448":1,"67449":2,"67450":1,"67451":2,"67452":1,"67453":1,"67454":2,"67455":2,"67456":2,"67457":2,"67458":1,"67459":1,"67460":1,"67461":2,"67462":1,"67463":2,"67464":2,"67465":2,"67466":2,"67467":2,"67468":2,"67469":1,"67470":1,"67471":1,"67472":1,"67473":1,"67474":2,"67475":2,"67476":2,"67477":2,"67478":2,"67479":2,"67480":2,"67481":2,"67482":1,"67483":1,"67484":1,"67485":1,"67486":2,"67487":1,"67488":2,"67489":2,"67490":1,"67491":2,"67492":1,"67493":1,"67494":2,"67495":1,"67496":2,"67497":2,"67498":2,"67499":1,"67500":1,"67501":2,"67502":1,"67503":1,"67504":1,"67505":2,"67506":2,"67507":1,"67508":2,"67509":1,"67510":1,"67511":1,"67512":1,"67513":1,"67514":1,"67515":2,"67516":1,"67517":2,"67518":2,"67519":1,"67520":1,"67521":1,"67522":2,"67523":2,"67524":2,"67525":2,"67526":1,"67527":2,"67528":2,"67529":2,"67530":1,"67531":1,"67532":1,"67533":2,"67534":2,"67535":2,"67536":2,"67537":2,"67538":1,"67539":1,"67540":1,"67541":2,"67542":1,"67543":2,"67544":1,"67545":2,"67546":2,"67547":2,"67548":1,"67549":2,"67550":2,"67551":2,"67552":2,"67553":1,"67554":2,"67555":2,"67556":1,"67557":2,"67558":1,"67559":1,"67560":2,"67561":2,"67562":1,"67563":2,"67564":2,"67565":1,"67566":2,"67567":2,"67568":2,"67569":1,"67570":1,"67571":1,"67572":1,"67573":2,"67574":1,"67575":1,"67576":1,"67577":1,"67578":1,"67579":2,"67580":2,"67581":2,"67582":2,"67583":2,"67584":2,"67585":2,"67586":2,"67587":2,"67588":1,"67589":2,"67590":1,"67591":2,"67592":2,"67593":2,"67594":1,"67595":1,"67596":1,"67597":2,"67598":2,"67599":2,"67600":2,"67601":2,"67602":2,"67603":1,"67604":1,"67605":1,"67606":2,"67607":1,"67608":2,"67609":2,"67610":1,"67611":1,"67612":2,"67613":2,"67614":2,"67615":2,"67616":1,"67617":2,"67618":1,"67619":1,"67620":1,"67621":2,"67622":2,"67623":2,"67624":2,"67625":2,"67626":2,"67627":1,"67628":2,"67629":1,"67630":1,"67631":2,"67632":1,"67633":2,"67634":2,"67635":1,"67636":2,"67637":1,"67638":1,"67639":2,"67640":1,"67641":1,"67642":1,"67643":1,"67644":1,"67645":1,"67646":1,"67647":2,"67648":2,"67649":1,"67650":1,"67651":2,"67652":1,"67653":1,"67654":1,"67655":2,"67656":1,"67657":2,"67658":2,"67659":1,"67660":2,"67661":1,"67662":2,"67663":2,"67664":2,"67665":2,"67666":1,"67667":1,"67668":2,"67669":1,"67670":2,"67671":1,"67672":2,"67673":1,"67674":1,"67675":2,"67676":1,"67677":2,"67678":2,"67679":1,"67680":1,"67681":1,"67682":1,"67683":2,"67684":1,"67685":2,"67686":1,"67687":1,"67688":2,"67689":2,"67690":2,"67691":2,"67692":2,"67693":2,"67694":2,"67695":1,"67696":1,"67697":2,"67698":1,"67699":2,"67700":1,"67701":2,"67702":2,"67703":2,"67704":1,"67705":1,"67706":2,"67707":2,"67708":1,"67709":2,"67710":2,"67711":2,"67712":2,"67713":1,"67714":1,"67715":1,"67716":1,"67717":1,"67718":2,"67719":2,"67720":2,"67721":2,"67722":2,"67723":1,"67724":2,"67725":2,"67726":2,"67727":1,"67728":2,"67729":2,"67730":1,"67731":1,"67732":1,"67733":2,"67734":2,"67735":1,"67736":2,"67737":2,"67738":1,"67739":1,"67740":1,"67741":2,"67742":1,"67743":2,"67744":2,"67745":1,"67746":2,"67747":2,"67748":2,"67749":2,"67750":2,"67751":2,"67752":1,"67753":1,"67754":2,"67755":1,"67756":2,"67757":1,"67758":2,"67759":1,"67760":2,"67761":1,"67762":1,"67763":1,"67764":1,"67765":2,"67766":2,"67767":2,"67768":2,"67769":2,"67770":1,"67771":2,"67772":1,"67773":1,"67774":2,"67775":2,"67776":1,"67777":2,"67778":2,"67779":2,"67780":1,"67781":1,"67782":1,"67783":2,"67784":2,"67785":2,"67786":1,"67787":1,"67788":2,"67789":1,"67790":1,"67791":1,"67792":1,"67793":2,"67794":1,"67795":1,"67796":2,"67797":2,"67798":2,"67799":1,"67800":2,"67801":2,"67802":1,"67803":1,"67804":2,"67805":1,"67806":2,"67807":2,"67808":2,"67809":1,"67810":1,"67811":2,"67812":1,"67813":1,"67814":2,"67815":1,"67816":2,"67817":1,"67818":2,"67819":1,"67820":2,"67821":2,"67822":1,"67823":1,"67824":2,"67825":2,"67826":2,"67827":1,"67828":2,"67829":2,"67830":2,"67831":2,"67832":2,"67833":2,"67834":2,"67835":2,"67836":2,"67837":1,"67838":1,"67839":1,"67840":2,"67841":1,"67842":1,"67843":1,"67844":2,"67845":2,"67846":2,"67847":1,"67848":2,"67849":1,"67850":1,"67851":1,"67852":2,"67853":1,"67854":2,"67855":2,"67856":2,"67857":1,"67858":1,"67859":2,"67860":1,"67861":1,"67862":2,"67863":1,"67864":2,"67865":2,"67866":2,"67867":2,"67868":1,"67869":2,"67870":2,"67871":2,"67872":1,"67873":1,"67874":1,"67875":2,"67876":2,"67877":1,"67878":2,"67879":2,"67880":1,"67881":1,"67882":2,"67883":2,"67884":2,"67885":1,"67886":2,"67887":2,"67888":2,"67889":2,"67890":1,"67891":1,"67892":1,"67893":2,"67894":2,"67895":2,"67896":2,"67897":1,"67898":1,"67899":2,"67900":2,"67901":1,"67902":2,"67903":1,"67904":2,"67905":1,"67906":1,"67907":2,"67908":2,"67909":1,"67910":2,"67911":1,"67912":1,"67913":2,"67914":2,"67915":2,"67916":2,"67917":2,"67918":2,"67919":2,"67920":2,"67921":1,"67922":1,"67923":1,"67924":2,"67925":1,"67926":1,"67927":1,"67928":2,"67929":1,"67930":2,"67931":2,"67932":1,"67933":2,"67934":2,"67935":2,"67936":1,"67937":2,"67938":1,"67939":1,"67940":1,"67941":2,"67942":1,"67943":1,"67944":1,"67945":2,"67946":1,"67947":1,"67948":2,"67949":1,"67950":1,"67951":2,"67952":1,"67953":1,"67954":2,"67955":2,"67956":1,"67957":2,"67958":2,"67959":1,"67960":1,"67961":1,"67962":2,"67963":1,"67964":2,"67965":1,"67966":2,"67967":1,"67968":1,"67969":2,"67970":2,"67971":2,"67972":2,"67973":1,"67974":1,"67975":2,"67976":2,"67977":1,"67978":2,"67979":2,"67980":2,"67981":2,"67982":1,"67983":2,"67984":2,"67985":2,"67986":2,"67987":1,"67988":1,"67989":1,"67990":1,"67991":2,"67992":2,"67993":1,"67994":1,"67995":1,"67996":2,"67997":1,"67998":1,"67999":1,"68000":2,"68001":2,"68002":1,"68003":2,"68004":1,"68005":1,"68006":1,"68007":2,"68008":1,"68009":2,"68010":1,"68011":2,"68012":2,"68013":1,"68014":2,"68015":2,"68016":1,"68017":2,"68018":2,"68019":2,"68020":1,"68021":2,"68022":1,"68023":1,"68024":1,"68025":2,"68026":1,"68027":2,"68028":1,"68029":1,"68030":1,"68031":2,"68032":1,"68033":2,"68034":1,"68035":2,"68036":1,"68037":1,"68038":1,"68039":1,"68040":2,"68041":1,"68042":2,"68043":1,"68044":1,"68045":2,"68046":1,"68047":1,"68048":2,"68049":1,"68050":2,"68051":1,"68052":2,"68053":1,"68054":2,"68055":1,"68056":2,"68057":2,"68058":2,"68059":1,"68060":2,"68061":1,"68062":1,"68063":2,"68064":2,"68065":2,"68066":2,"68067":1,"68068":1,"68069":1,"68070":2,"68071":1,"68072":2,"68073":2,"68074":2,"68075":2,"68076":2,"68077":1,"68078":2,"68079":2,"68080":1,"68081":1,"68082":2,"68083":1,"68084":2,"68085":1,"68086":1,"68087":1,"68088":1,"68089":1,"68090":1,"68091":2,"68092":1,"68093":2,"68094":1,"68095":1,"68096":1,"68097":1,"68098":1,"68099":1,"68100":1,"68101":2,"68102":2,"68103":2,"68104":1,"68105":1,"68106":1,"68107":2,"68108":1,"68109":1,"68110":2,"68111":2,"68112":1,"68113":1,"68114":1,"68115":1,"68116":1,"68117":1,"68118":2,"68119":2,"68120":2,"68121":2,"68122":2,"68123":1,"68124":1,"68125":2,"68126":2,"68127":1,"68128":1,"68129":2,"68130":2,"68131":2,"68132":1,"68133":2,"68134":2,"68135":1,"68136":2,"68137":1,"68138":2,"68139":2,"68140":2,"68141":2,"68142":1,"68143":1,"68144":2,"68145":1,"68146":1,"68147":1,"68148":1,"68149":2,"68150":1,"68151":2,"68152":1,"68153":1,"68154":2,"68155":1,"68156":1,"68157":2,"68158":1,"68159":1,"68160":2,"68161":1,"68162":2,"68163":1,"68164":1,"68165":2,"68166":1,"68167":1,"68168":1,"68169":1,"68170":2,"68171":2,"68172":2,"68173":1,"68174":1,"68175":2,"68176":1,"68177":1,"68178":1,"68179":2,"68180":1,"68181":2,"68182":2,"68183":2,"68184":2,"68185":2,"68186":2,"68187":2,"68188":2,"68189":2,"68190":1,"68191":2,"68192":2,"68193":1,"68194":2,"68195":1,"68196":2,"68197":2,"68198":1,"68199":2,"68200":1,"68201":1,"68202":1,"68203":1,"68204":2,"68205":2,"68206":1,"68207":1,"68208":1,"68209":1,"68210":1,"68211":2,"68212":1,"68213":1,"68214":1,"68215":1,"68216":2,"68217":2,"68218":1,"68219":1,"68220":2,"68221":1,"68222":1,"68223":2,"68224":2,"68225":1,"68226":2,"68227":1,"68228":2,"68229":1,"68230":2,"68231":2,"68232":2,"68233":2,"68234":2,"68235":1,"68236":2,"68237":1,"68238":2,"68239":2,"68240":1,"68241":2,"68242":1,"68243":1,"68244":1,"68245":1,"68246":1,"68247":1,"68248":1,"68249":2,"68250":1,"68251":2,"68252":2,"68253":2,"68254":2,"68255":1,"68256":1,"68257":2,"68258":1,"68259":1,"68260":1,"68261":1,"68262":2,"68263":1,"68264":2,"68265":2,"68266":1,"68267":1,"68268":2,"68269":2,"68270":1,"68271":1,"68272":2,"68273":2,"68274":2,"68275":2,"68276":2,"68277":2,"68278":1,"68279":2,"68280":1,"68281":2,"68282":1,"68283":2,"68284":2,"68285":1,"68286":2,"68287":2,"68288":1,"68289":1,"68290":1,"68291":2,"68292":2,"68293":2,"68294":1,"68295":1,"68296":1,"68297":1,"68298":2,"68299":2,"68300":2,"68301":2,"68302":2,"68303":1,"68304":2,"68305":1,"68306":1,"68307":2,"68308":1,"68309":2,"68310":1,"68311":1,"68312":2,"68313":2,"68314":1,"68315":1,"68316":1,"68317":2,"68318":2,"68319":2,"68320":1,"68321":2,"68322":2,"68323":1,"68324":2,"68325":1,"68326":1,"68327":2,"68328":1,"68329":1,"68330":2,"68331":2,"68332":2,"68333":2,"68334":1,"68335":2,"68336":2,"68337":2,"68338":1,"68339":1,"68340":1,"68341":2,"68342":1,"68343":1,"68344":1,"68345":1,"68346":1,"68347":1,"68348":2,"68349":1,"68350":2,"68351":1,"68352":1,"68353":1,"68354":2,"68355":1,"68356":1,"68357":2,"68358":2,"68359":2,"68360":2,"68361":2,"68362":1,"68363":2,"68364":2,"68365":1,"68366":1,"68367":2,"68368":1,"68369":1,"68370":2,"68371":1,"68372":2,"68373":1,"68374":1,"68375":2,"68376":1,"68377":1,"68378":1,"68379":1,"68380":1,"68381":2,"68382":1,"68383":2,"68384":2,"68385":2,"68386":2,"68387":2,"68388":2,"68389":2,"68390":2,"68391":2,"68392":1,"68393":2,"68394":2,"68395":1,"68396":2,"68397":2,"68398":1,"68399":1,"68400":2,"68401":1,"68402":2,"68403":1,"68404":1,"68405":1,"68406":1,"68407":2,"68408":1,"68409":2,"68410":2,"68411":2,"68412":2,"68413":1,"68414":1,"68415":2,"68416":1,"68417":2,"68418":1,"68419":1,"68420":2,"68421":1,"68422":1,"68423":1,"68424":1,"68425":2,"68426":1,"68427":1,"68428":2,"68429":1,"68430":1,"68431":2,"68432":1,"68433":2,"68434":2,"68435":2,"68436":1,"68437":2,"68438":1,"68439":2,"68440":2,"68441":1,"68442":2,"68443":2,"68444":2,"68445":1,"68446":2,"68447":1,"68448":1,"68449":1,"68450":1,"68451":2,"68452":1,"68453":2,"68454":2,"68455":1,"68456":1,"68457":1,"68458":2,"68459":1,"68460":2,"68461":2,"68462":1,"68463":1,"68464":1,"68465":2,"68466":2,"68467":2,"68468":2,"68469":2,"68470":2,"68471":2,"68472":2,"68473":2,"68474":1,"68475":2,"68476":1,"68477":1,"68478":2,"68479":2,"68480":1,"68481":2,"68482":2,"68483":1,"68484":1,"68485":2,"68486":1,"68487":1,"68488":1,"68489":2,"68490":1,"68491":2,"68492":1,"68493":2,"68494":1,"68495":2,"68496":1,"68497":2,"68498":1,"68499":2,"68500":2,"68501":1,"68502":2,"68503":2,"68504":2,"68505":2,"68506":1,"68507":1,"68508":2,"68509":2,"68510":1,"68511":1,"68512":2,"68513":2,"68514":2,"68515":1,"68516":2,"68517":1,"68518":2,"68519":1,"68520":1,"68521":1,"68522":1,"68523":2,"68524":1,"68525":2,"68526":2,"68527":2,"68528":2,"68529":1,"68530":2,"68531":2,"68532":1,"68533":2,"68534":1,"68535":2,"68536":1,"68537":2,"68538":1,"68539":1,"68540":1,"68541":2,"68542":2,"68543":2,"68544":1,"68545":1,"68546":1,"68547":1,"68548":1,"68549":1,"68550":1,"68551":1,"68552":1,"68553":2,"68554":2,"68555":1,"68556":2,"68557":1,"68558":2,"68559":1,"68560":2,"68561":2,"68562":1,"68563":1,"68564":2,"68565":1,"68566":2,"68567":1,"68568":1,"68569":2,"68570":1,"68571":1,"68572":2,"68573":1,"68574":2,"68575":1,"68576":2,"68577":1,"68578":2,"68579":2,"68580":2,"68581":1,"68582":1,"68583":2,"68584":1,"68585":2,"68586":2,"68587":1,"68588":1,"68589":2,"68590":2,"68591":1,"68592":1,"68593":2,"68594":1,"68595":2,"68596":1,"68597":1,"68598":1,"68599":1,"68600":1,"68601":2,"68602":1,"68603":2,"68604":2,"68605":1,"68606":2,"68607":1,"68608":1,"68609":1,"68610":1,"68611":2,"68612":1,"68613":1,"68614":1,"68615":2,"68616":2,"68617":1,"68618":1,"68619":1,"68620":2,"68621":2,"68622":1,"68623":1,"68624":1,"68625":2,"68626":1,"68627":2,"68628":1,"68629":2,"68630":1,"68631":2,"68632":2,"68633":1,"68634":2,"68635":2,"68636":1,"68637":1,"68638":2,"68639":1,"68640":2,"68641":1,"68642":2,"68643":2,"68644":1,"68645":2,"68646":1,"68647":1,"68648":2,"68649":1,"68650":2,"68651":2,"68652":1,"68653":1,"68654":1,"68655":1,"68656":1,"68657":1,"68658":2,"68659":2,"68660":2,"68661":2,"68662":2,"68663":2,"68664":1,"68665":2,"68666":2,"68667":2,"68668":1,"68669":2,"68670":2,"68671":1,"68672":1,"68673":2,"68674":1,"68675":1,"68676":1,"68677":2,"68678":1,"68679":2,"68680":1,"68681":1,"68682":1,"68683":2,"68684":1,"68685":2,"68686":2,"68687":2,"68688":2,"68689":1,"68690":2,"68691":2,"68692":1,"68693":1,"68694":1,"68695":1,"68696":2,"68697":2,"68698":2,"68699":1,"68700":2,"68701":2,"68702":1,"68703":1,"68704":2,"68705":2,"68706":2,"68707":1,"68708":2,"68709":2,"68710":1,"68711":2,"68712":2,"68713":2,"68714":1,"68715":1,"68716":1,"68717":2,"68718":1,"68719":1,"68720":1,"68721":1,"68722":2,"68723":2,"68724":1,"68725":1,"68726":2,"68727":2,"68728":2,"68729":1,"68730":2,"68731":2,"68732":2,"68733":2,"68734":1,"68735":2,"68736":1,"68737":2,"68738":1,"68739":2,"68740":2,"68741":2,"68742":1,"68743":1,"68744":1,"68745":2,"68746":1,"68747":1,"68748":2,"68749":1,"68750":1,"68751":2,"68752":2,"68753":1,"68754":1,"68755":2,"68756":1,"68757":1,"68758":2,"68759":1,"68760":1,"68761":1,"68762":2,"68763":1,"68764":2,"68765":2,"68766":2,"68767":1,"68768":2,"68769":1,"68770":2,"68771":1,"68772":1,"68773":2,"68774":1,"68775":2,"68776":2,"68777":1,"68778":2,"68779":2,"68780":2,"68781":1,"68782":2,"68783":1,"68784":1,"68785":2,"68786":1,"68787":2,"68788":1,"68789":1,"68790":1,"68791":2,"68792":1,"68793":2,"68794":1,"68795":1,"68796":1,"68797":1,"68798":1,"68799":1,"68800":1,"68801":1,"68802":2,"68803":2,"68804":1,"68805":1,"68806":1,"68807":1,"68808":1,"68809":2,"68810":1,"68811":1,"68812":1,"68813":1,"68814":2,"68815":1,"68816":2,"68817":1,"68818":2,"68819":1,"68820":2,"68821":2,"68822":2,"68823":1,"68824":1,"68825":2,"68826":1,"68827":2,"68828":1,"68829":2,"68830":1,"68831":1,"68832":1,"68833":2,"68834":1,"68835":1,"68836":2,"68837":2,"68838":2,"68839":1,"68840":1,"68841":2,"68842":2,"68843":2,"68844":1,"68845":2,"68846":1,"68847":2,"68848":1,"68849":2,"68850":2,"68851":2,"68852":2,"68853":1,"68854":2,"68855":2,"68856":2,"68857":2,"68858":1,"68859":2,"68860":1,"68861":1,"68862":2,"68863":2,"68864":1,"68865":1,"68866":1,"68867":2,"68868":2,"68869":2,"68870":1,"68871":1,"68872":1,"68873":1,"68874":1,"68875":2,"68876":1,"68877":1,"68878":2,"68879":1,"68880":2,"68881":2,"68882":2,"68883":2,"68884":2,"68885":2,"68886":1,"68887":2,"68888":2,"68889":2,"68890":2,"68891":1,"68892":1,"68893":2,"68894":1,"68895":1,"68896":2,"68897":1,"68898":1,"68899":2,"68900":2,"68901":1,"68902":1,"68903":2,"68904":2,"68905":1,"68906":2,"68907":1,"68908":1,"68909":2,"68910":2,"68911":2,"68912":1,"68913":2,"68914":2,"68915":2,"68916":2,"68917":1,"68918":1,"68919":1,"68920":2,"68921":1,"68922":1,"68923":1,"68924":1,"68925":2,"68926":2,"68927":2,"68928":1,"68929":2,"68930":1,"68931":1,"68932":1,"68933":1,"68934":1,"68935":2,"68936":2,"68937":2,"68938":1,"68939":1,"68940":1,"68941":2,"68942":2,"68943":2,"68944":1,"68945":1,"68946":2,"68947":1,"68948":1,"68949":1,"68950":1,"68951":2,"68952":2,"68953":2,"68954":1,"68955":2,"68956":1,"68957":1,"68958":2,"68959":2,"68960":2,"68961":1,"68962":2,"68963":2,"68964":2,"68965":1,"68966":2,"68967":1,"68968":1,"68969":2,"68970":2,"68971":1,"68972":2,"68973":1,"68974":1,"68975":1,"68976":2,"68977":2,"68978":2,"68979":2,"68980":2,"68981":2,"68982":2,"68983":2,"68984":1,"68985":2,"68986":2,"68987":1,"68988":1,"68989":1,"68990":2,"68991":1,"68992":1,"68993":1,"68994":2,"68995":1,"68996":2,"68997":2,"68998":1,"68999":2,"69000":1,"69001":1,"69002":1,"69003":1,"69004":1,"69005":2,"69006":1,"69007":2,"69008":2,"69009":2,"69010":1,"69011":1,"69012":2,"69013":1,"69014":1,"69015":1,"69016":2,"69017":1,"69018":1,"69019":2,"69020":1,"69021":1,"69022":2,"69023":1,"69024":2,"69025":2,"69026":1,"69027":2,"69028":1,"69029":2,"69030":2,"69031":1,"69032":1,"69033":2,"69034":2,"69035":1,"69036":2,"69037":2,"69038":1,"69039":1,"69040":1,"69041":2,"69042":2,"69043":1,"69044":2,"69045":1,"69046":2,"69047":1,"69048":2,"69049":1,"69050":2,"69051":2,"69052":1,"69053":2,"69054":1,"69055":2,"69056":1,"69057":2,"69058":2,"69059":2,"69060":1,"69061":2,"69062":1,"69063":2,"69064":1,"69065":1,"69066":1,"69067":2,"69068":1,"69069":1,"69070":2,"69071":1,"69072":1,"69073":2,"69074":1,"69075":1,"69076":2,"69077":1,"69078":1,"69079":1,"69080":1,"69081":1,"69082":2,"69083":1,"69084":1,"69085":2,"69086":2,"69087":1,"69088":2,"69089":1,"69090":2,"69091":2,"69092":2,"69093":1,"69094":2,"69095":2,"69096":2,"69097":2,"69098":1,"69099":2,"69100":1,"69101":1,"69102":1,"69103":2,"69104":2,"69105":2,"69106":2,"69107":1,"69108":2,"69109":1,"69110":1,"69111":1,"69112":2,"69113":1,"69114":1,"69115":2,"69116":2,"69117":1,"69118":2,"69119":1,"69120":2,"69121":2,"69122":2,"69123":1,"69124":1,"69125":2,"69126":1,"69127":2,"69128":2,"69129":1,"69130":1,"69131":1,"69132":1,"69133":1,"69134":2,"69135":2,"69136":1,"69137":2,"69138":1,"69139":1,"69140":1,"69141":2,"69142":2,"69143":2,"69144":2,"69145":2,"69146":1,"69147":2,"69148":1,"69149":1,"69150":2,"69151":1,"69152":2,"69153":2,"69154":1,"69155":2,"69156":2,"69157":1,"69158":2,"69159":2,"69160":1,"69161":2,"69162":2,"69163":1,"69164":2,"69165":1,"69166":1,"69167":1,"69168":2,"69169":1,"69170":2,"69171":1,"69172":1,"69173":2,"69174":1,"69175":2,"69176":1,"69177":1,"69178":1,"69179":2,"69180":2,"69181":2,"69182":1,"69183":1,"69184":1,"69185":2,"69186":1,"69187":1,"69188":2,"69189":1,"69190":1,"69191":2,"69192":1,"69193":1,"69194":2,"69195":1,"69196":1,"69197":1,"69198":1,"69199":2,"69200":2,"69201":2,"69202":1,"69203":2,"69204":2,"69205":1,"69206":1,"69207":2,"69208":1,"69209":2,"69210":1,"69211":2,"69212":2,"69213":2,"69214":2,"69215":1,"69216":1,"69217":1,"69218":2,"69219":1,"69220":1,"69221":2,"69222":1,"69223":2,"69224":1,"69225":1,"69226":2,"69227":2,"69228":1,"69229":1,"69230":1,"69231":2,"69232":1,"69233":1,"69234":2,"69235":1,"69236":2,"69237":2,"69238":1,"69239":2,"69240":2,"69241":1,"69242":1,"69243":2,"69244":1,"69245":2,"69246":2,"69247":1,"69248":2,"69249":1,"69250":2,"69251":1,"69252":1,"69253":1,"69254":1,"69255":2,"69256":2,"69257":1,"69258":2,"69259":2,"69260":1,"69261":2,"69262":2,"69263":1,"69264":1,"69265":1,"69266":2,"69267":2,"69268":2,"69269":1,"69270":1,"69271":2,"69272":2,"69273":2,"69274":1,"69275":1,"69276":2,"69277":2,"69278":2,"69279":2,"69280":2,"69281":1,"69282":1,"69283":1,"69284":2,"69285":2,"69286":2,"69287":2,"69288":1,"69289":1,"69290":1,"69291":2,"69292":1,"69293":2,"69294":1,"69295":1,"69296":2,"69297":1,"69298":1,"69299":2,"69300":1,"69301":2,"69302":2,"69303":1,"69304":2,"69305":2,"69306":1,"69307":2,"69308":2,"69309":2,"69310":1,"69311":2,"69312":2,"69313":2,"69314":1,"69315":2,"69316":2,"69317":1,"69318":2,"69319":2,"69320":2,"69321":1,"69322":1,"69323":1,"69324":2,"69325":1,"69326":2,"69327":2,"69328":2,"69329":1,"69330":2,"69331":1,"69332":1,"69333":1,"69334":1,"69335":2,"69336":2,"69337":2,"69338":1,"69339":2,"69340":1,"69341":1,"69342":2,"69343":2,"69344":2,"69345":1,"69346":2,"69347":1,"69348":1,"69349":2,"69350":1,"69351":1,"69352":1,"69353":1,"69354":2,"69355":1,"69356":1,"69357":1,"69358":1,"69359":1,"69360":2,"69361":2,"69362":2,"69363":1,"69364":2,"69365":1,"69366":1,"69367":1,"69368":2,"69369":2,"69370":2,"69371":2,"69372":2,"69373":2,"69374":1,"69375":2,"69376":1,"69377":1,"69378":1,"69379":1,"69380":1,"69381":2,"69382":1,"69383":1,"69384":2,"69385":2,"69386":1,"69387":1,"69388":1,"69389":1,"69390":1,"69391":2,"69392":1,"69393":2,"69394":1,"69395":1,"69396":2,"69397":2,"69398":2,"69399":1,"69400":2,"69401":2,"69402":2,"69403":2,"69404":1,"69405":2,"69406":1,"69407":2,"69408":1,"69409":2,"69410":1,"69411":2,"69412":2,"69413":1,"69414":1,"69415":2,"69416":1,"69417":2,"69418":2,"69419":2,"69420":2,"69421":1,"69422":1,"69423":1,"69424":1,"69425":1,"69426":2,"69427":1,"69428":2,"69429":2,"69430":1,"69431":1,"69432":2,"69433":2,"69434":2,"69435":1,"69436":1,"69437":2,"69438":1,"69439":2,"69440":2,"69441":1,"69442":1,"69443":2,"69444":2,"69445":2,"69446":2,"69447":1,"69448":2,"69449":1,"69450":1,"69451":1,"69452":2,"69453":1,"69454":1,"69455":1,"69456":2,"69457":1,"69458":1,"69459":1,"69460":2,"69461":2,"69462":2,"69463":2,"69464":2,"69465":2,"69466":2,"69467":1,"69468":2,"69469":2,"69470":1,"69471":2,"69472":1,"69473":2,"69474":2,"69475":2,"69476":1,"69477":2,"69478":1,"69479":2,"69480":1,"69481":2,"69482":1,"69483":2,"69484":1,"69485":2,"69486":2,"69487":2,"69488":1,"69489":1,"69490":2,"69491":2,"69492":2,"69493":2,"69494":1,"69495":2,"69496":1,"69497":2,"69498":1,"69499":1,"69500":1,"69501":2,"69502":2,"69503":1,"69504":2,"69505":1,"69506":1,"69507":2,"69508":2,"69509":1,"69510":2,"69511":2,"69512":1,"69513":1,"69514":2,"69515":1,"69516":2,"69517":1,"69518":1,"69519":2,"69520":1,"69521":1,"69522":2,"69523":2,"69524":2,"69525":1,"69526":1,"69527":2,"69528":1,"69529":2,"69530":2,"69531":1,"69532":1,"69533":2,"69534":2,"69535":2,"69536":1,"69537":2,"69538":1,"69539":2,"69540":1,"69541":1,"69542":1,"69543":1,"69544":1,"69545":1,"69546":2,"69547":1,"69548":1,"69549":2,"69550":2,"69551":1,"69552":1,"69553":2,"69554":2,"69555":2,"69556":1,"69557":2,"69558":2,"69559":1,"69560":1,"69561":2,"69562":1,"69563":2,"69564":2,"69565":1,"69566":1,"69567":1,"69568":2,"69569":1,"69570":1,"69571":2,"69572":2,"69573":1,"69574":2,"69575":1,"69576":1,"69577":2,"69578":2,"69579":2,"69580":1,"69581":2,"69582":2,"69583":2,"69584":1,"69585":2,"69586":1,"69587":2,"69588":2,"69589":2,"69590":2,"69591":1,"69592":2,"69593":2,"69594":1,"69595":2,"69596":2,"69597":1,"69598":1,"69599":2,"69600":2,"69601":2,"69602":1,"69603":1,"69604":1,"69605":1,"69606":2,"69607":1,"69608":2,"69609":1,"69610":2,"69611":2,"69612":1,"69613":1,"69614":1,"69615":1,"69616":2,"69617":1,"69618":2,"69619":1,"69620":2,"69621":2,"69622":2,"69623":2,"69624":2,"69625":1,"69626":2,"69627":1,"69628":1,"69629":1,"69630":1,"69631":2,"69632":2,"69633":2,"69634":2,"69635":2,"69636":1,"69637":1,"69638":2,"69639":1,"69640":2,"69641":1,"69642":1,"69643":1,"69644":2,"69645":1,"69646":2,"69647":2,"69648":1,"69649":1,"69650":1,"69651":2,"69652":2,"69653":2,"69654":1,"69655":2,"69656":1,"69657":1,"69658":1,"69659":2,"69660":2,"69661":1,"69662":1,"69663":2,"69664":1,"69665":1,"69666":1,"69667":1,"69668":1,"69669":2,"69670":1,"69671":2,"69672":2,"69673":2,"69674":1,"69675":2,"69676":1,"69677":1,"69678":2,"69679":1,"69680":2,"69681":1,"69682":2,"69683":1,"69684":1,"69685":2,"69686":1,"69687":2,"69688":2,"69689":1,"69690":2,"69691":2,"69692":2,"69693":1,"69694":2,"69695":2,"69696":2,"69697":1,"69698":2,"69699":2,"69700":2,"69701":2,"69702":2,"69703":2,"69704":1,"69705":2,"69706":2,"69707":1,"69708":1,"69709":1,"69710":2,"69711":1,"69712":2,"69713":2,"69714":2,"69715":2,"69716":2,"69717":2,"69718":1,"69719":2,"69720":1,"69721":2,"69722":1,"69723":2,"69724":1,"69725":1,"69726":1,"69727":1,"69728":1,"69729":1,"69730":1,"69731":2,"69732":1,"69733":1,"69734":2,"69735":2,"69736":2,"69737":2,"69738":2,"69739":2,"69740":2,"69741":1,"69742":2,"69743":1,"69744":2,"69745":2,"69746":1,"69747":1,"69748":1,"69749":2,"69750":2,"69751":2,"69752":2,"69753":2,"69754":2,"69755":2,"69756":2,"69757":1,"69758":1,"69759":2,"69760":1,"69761":2,"69762":1,"69763":2,"69764":2,"69765":1,"69766":2,"69767":1,"69768":1,"69769":1,"69770":1,"69771":2,"69772":2,"69773":2,"69774":2,"69775":1,"69776":1,"69777":2,"69778":1,"69779":2,"69780":2,"69781":1,"69782":2,"69783":1,"69784":1,"69785":1,"69786":1,"69787":2,"69788":2,"69789":2,"69790":1,"69791":1,"69792":2,"69793":1,"69794":2,"69795":1,"69796":2,"69797":1,"69798":1,"69799":1,"69800":1,"69801":2,"69802":1,"69803":2,"69804":2,"69805":2,"69806":2,"69807":2,"69808":1,"69809":2,"69810":1,"69811":2,"69812":1,"69813":2,"69814":2,"69815":1,"69816":1,"69817":2,"69818":2,"69819":1,"69820":2,"69821":2,"69822":1,"69823":1,"69824":1,"69825":1,"69826":2,"69827":1,"69828":2,"69829":1,"69830":2,"69831":2,"69832":2,"69833":1,"69834":1,"69835":2,"69836":2,"69837":2,"69838":2,"69839":1,"69840":2,"69841":1,"69842":1,"69843":1,"69844":1,"69845":1,"69846":2,"69847":1,"69848":1,"69849":2,"69850":2,"69851":2,"69852":2,"69853":2,"69854":1,"69855":2,"69856":2,"69857":2,"69858":2,"69859":2,"69860":2,"69861":1,"69862":2,"69863":1,"69864":1,"69865":2,"69866":1,"69867":2,"69868":1,"69869":2,"69870":2,"69871":1,"69872":1,"69873":1,"69874":1,"69875":2,"69876":1,"69877":1,"69878":2,"69879":2,"69880":1,"69881":2,"69882":2,"69883":2,"69884":1,"69885":2,"69886":2,"69887":1,"69888":2,"69889":2,"69890":1,"69891":1,"69892":2,"69893":1,"69894":1,"69895":1,"69896":2,"69897":2,"69898":1,"69899":1,"69900":1,"69901":1,"69902":1,"69903":2,"69904":1,"69905":2,"69906":1,"69907":2,"69908":1,"69909":2,"69910":2,"69911":1,"69912":1,"69913":1,"69914":2,"69915":1,"69916":2,"69917":1,"69918":1,"69919":2,"69920":2,"69921":1,"69922":1,"69923":2,"69924":1,"69925":2,"69926":1,"69927":2,"69928":1,"69929":2,"69930":1,"69931":2,"69932":2,"69933":1,"69934":2,"69935":2,"69936":2,"69937":2,"69938":2,"69939":1,"69940":2,"69941":1,"69942":1,"69943":1,"69944":2,"69945":2,"69946":2,"69947":1,"69948":2,"69949":1,"69950":2,"69951":1,"69952":2,"69953":2,"69954":2,"69955":1,"69956":1,"69957":1,"69958":2,"69959":2,"69960":2,"69961":2,"69962":1,"69963":1,"69964":1,"69965":2,"69966":2,"69967":1,"69968":2,"69969":2,"69970":1,"69971":1,"69972":2,"69973":2,"69974":1,"69975":1,"69976":2,"69977":2,"69978":2,"69979":2,"69980":2,"69981":1,"69982":1,"69983":1,"69984":1,"69985":2,"69986":1,"69987":2,"69988":2,"69989":1,"69990":2,"69991":2,"69992":1,"69993":1,"69994":2,"69995":2,"69996":2,"69997":1,"69998":2,"69999":1,"70000":2,"70001":2,"70002":1,"70003":2,"70004":1,"70005":1,"70006":2,"70007":1,"70008":1,"70009":2,"70010":1,"70011":1,"70012":1,"70013":1,"70014":1,"70015":1,"70016":2,"70017":1,"70018":2,"70019":2,"70020":1,"70021":1,"70022":2,"70023":2,"70024":1,"70025":1,"70026":1,"70027":2,"70028":1,"70029":2,"70030":1,"70031":2,"70032":1,"70033":2,"70034":2,"70035":1,"70036":2,"70037":1,"70038":1,"70039":2,"70040":2,"70041":2,"70042":2,"70043":2,"70044":2,"70045":1,"70046":1,"70047":2,"70048":1,"70049":1,"70050":1,"70051":1,"70052":2,"70053":2,"70054":1,"70055":1,"70056":2,"70057":1,"70058":2,"70059":1,"70060":2,"70061":1,"70062":1,"70063":2,"70064":2,"70065":2,"70066":2,"70067":2,"70068":1,"70069":1,"70070":1,"70071":1,"70072":2,"70073":2,"70074":2,"70075":1,"70076":1,"70077":2,"70078":2,"70079":2,"70080":2,"70081":1,"70082":2,"70083":2,"70084":2,"70085":1,"70086":2,"70087":1,"70088":2,"70089":1,"70090":1,"70091":2,"70092":2,"70093":2,"70094":2,"70095":2,"70096":1,"70097":1,"70098":1,"70099":1,"70100":1,"70101":1,"70102":1,"70103":2,"70104":1,"70105":2,"70106":2,"70107":1,"70108":1,"70109":1,"70110":2,"70111":1,"70112":1,"70113":1,"70114":1,"70115":1,"70116":1,"70117":2,"70118":2,"70119":2,"70120":2,"70121":2,"70122":2,"70123":2,"70124":2,"70125":1,"70126":2,"70127":1,"70128":1,"70129":2,"70130":2,"70131":2,"70132":2,"70133":2,"70134":1,"70135":1,"70136":1,"70137":2,"70138":2,"70139":2,"70140":1,"70141":2,"70142":1,"70143":1,"70144":2,"70145":1,"70146":2,"70147":1,"70148":2,"70149":1,"70150":2,"70151":2,"70152":2,"70153":1,"70154":2,"70155":1,"70156":1,"70157":1,"70158":2,"70159":1,"70160":1,"70161":2,"70162":2,"70163":2,"70164":1,"70165":2,"70166":2,"70167":1,"70168":2,"70169":1,"70170":1,"70171":2,"70172":1,"70173":2,"70174":2,"70175":1,"70176":1,"70177":1,"70178":1,"70179":2,"70180":1,"70181":1,"70182":1,"70183":1,"70184":1,"70185":1,"70186":1,"70187":1,"70188":1,"70189":2,"70190":2,"70191":1,"70192":2,"70193":1,"70194":1,"70195":2,"70196":1,"70197":1,"70198":2,"70199":2,"70200":1,"70201":2,"70202":2,"70203":1,"70204":1,"70205":2,"70206":1,"70207":1,"70208":1,"70209":2,"70210":1,"70211":2,"70212":1,"70213":1,"70214":2,"70215":1,"70216":2,"70217":2,"70218":2,"70219":1,"70220":2,"70221":1,"70222":1,"70223":1,"70224":2,"70225":1,"70226":1,"70227":2,"70228":1,"70229":2,"70230":2,"70231":2,"70232":2,"70233":1,"70234":1,"70235":1,"70236":1,"70237":2,"70238":1,"70239":1,"70240":1,"70241":1,"70242":2,"70243":2,"70244":1,"70245":1,"70246":1,"70247":1,"70248":2,"70249":1,"70250":2,"70251":1,"70252":1,"70253":2,"70254":1,"70255":1,"70256":2,"70257":2,"70258":2,"70259":2,"70260":1,"70261":1,"70262":1,"70263":2,"70264":1,"70265":2,"70266":2,"70267":1,"70268":1,"70269":2,"70270":2,"70271":1,"70272":2,"70273":2,"70274":1,"70275":2,"70276":2,"70277":1,"70278":2,"70279":1,"70280":1,"70281":1,"70282":2,"70283":2,"70284":1,"70285":2,"70286":2,"70287":1,"70288":2,"70289":2,"70290":2,"70291":2,"70292":2,"70293":2,"70294":1,"70295":1,"70296":2,"70297":2,"70298":1,"70299":2,"70300":2,"70301":2,"70302":2,"70303":2,"70304":1,"70305":1,"70306":1,"70307":1,"70308":1,"70309":1,"70310":1,"70311":1,"70312":2,"70313":2,"70314":2,"70315":1,"70316":1,"70317":2,"70318":2,"70319":1,"70320":2,"70321":1,"70322":2,"70323":2,"70324":2,"70325":1,"70326":2,"70327":2,"70328":1,"70329":1,"70330":1,"70331":1,"70332":2,"70333":1,"70334":1,"70335":1,"70336":1,"70337":1,"70338":1,"70339":1,"70340":1,"70341":2,"70342":2,"70343":2,"70344":1,"70345":1,"70346":2,"70347":1,"70348":2,"70349":1,"70350":1,"70351":2,"70352":1,"70353":2,"70354":1,"70355":2,"70356":2,"70357":1,"70358":1,"70359":2,"70360":1,"70361":1,"70362":1,"70363":2,"70364":2,"70365":2,"70366":1,"70367":1,"70368":1,"70369":1,"70370":2,"70371":1,"70372":1,"70373":1,"70374":1,"70375":1,"70376":1,"70377":2,"70378":2,"70379":1,"70380":1,"70381":2,"70382":2,"70383":2,"70384":1,"70385":1,"70386":2,"70387":2,"70388":2,"70389":2,"70390":2,"70391":1,"70392":2,"70393":2,"70394":1,"70395":1,"70396":1,"70397":2,"70398":2,"70399":2,"70400":1,"70401":2,"70402":1,"70403":1,"70404":1,"70405":1,"70406":2,"70407":1,"70408":1,"70409":2,"70410":1,"70411":2,"70412":1,"70413":1,"70414":2,"70415":1,"70416":1,"70417":2,"70418":1,"70419":1,"70420":1,"70421":2,"70422":1,"70423":2,"70424":2,"70425":1,"70426":1,"70427":1,"70428":2,"70429":1,"70430":1,"70431":1,"70432":1,"70433":1,"70434":1,"70435":2,"70436":1,"70437":1,"70438":2,"70439":2,"70440":2,"70441":2,"70442":1,"70443":1,"70444":1,"70445":1,"70446":1,"70447":2,"70448":1,"70449":2,"70450":2,"70451":1,"70452":2,"70453":2,"70454":2,"70455":1,"70456":1,"70457":1,"70458":2,"70459":1,"70460":1,"70461":1,"70462":1,"70463":1,"70464":1,"70465":2,"70466":1,"70467":1,"70468":1,"70469":1,"70470":1,"70471":1,"70472":1,"70473":1,"70474":1,"70475":1,"70476":2,"70477":1,"70478":2,"70479":2,"70480":1,"70481":2,"70482":1,"70483":2,"70484":2,"70485":1,"70486":2,"70487":2,"70488":2,"70489":1,"70490":2,"70491":1,"70492":2,"70493":1,"70494":2,"70495":1,"70496":2,"70497":1,"70498":1,"70499":1,"70500":2,"70501":2,"70502":2,"70503":1,"70504":1,"70505":1,"70506":2,"70507":1,"70508":2,"70509":2,"70510":1,"70511":1,"70512":2,"70513":1,"70514":1,"70515":2,"70516":2,"70517":1,"70518":2,"70519":2,"70520":1,"70521":1,"70522":1,"70523":1,"70524":2,"70525":2,"70526":1,"70527":1,"70528":1,"70529":1,"70530":1,"70531":1,"70532":2,"70533":2,"70534":2,"70535":1,"70536":2,"70537":1,"70538":1,"70539":1,"70540":1,"70541":2,"70542":1,"70543":1,"70544":1,"70545":1,"70546":2,"70547":1,"70548":1,"70549":1,"70550":2,"70551":1,"70552":2,"70553":2,"70554":2,"70555":1,"70556":1,"70557":2,"70558":2,"70559":1,"70560":1,"70561":2,"70562":1,"70563":2,"70564":1,"70565":2,"70566":2,"70567":1,"70568":2,"70569":1,"70570":1,"70571":1,"70572":1,"70573":1,"70574":1,"70575":2,"70576":2,"70577":2,"70578":1,"70579":2,"70580":2,"70581":2,"70582":1,"70583":1,"70584":2,"70585":2,"70586":1,"70587":2,"70588":2,"70589":1,"70590":1,"70591":2,"70592":2,"70593":2,"70594":1,"70595":1,"70596":2,"70597":1,"70598":1,"70599":1,"70600":1,"70601":1,"70602":2,"70603":2,"70604":2,"70605":1,"70606":1,"70607":2,"70608":2,"70609":1,"70610":1,"70611":2,"70612":1,"70613":2,"70614":2,"70615":1,"70616":1,"70617":1,"70618":1,"70619":2,"70620":1,"70621":1,"70622":2,"70623":1,"70624":2,"70625":1,"70626":1,"70627":1,"70628":2,"70629":2,"70630":2,"70631":1,"70632":1,"70633":1,"70634":2,"70635":1,"70636":2,"70637":2,"70638":1,"70639":1,"70640":1,"70641":2,"70642":2,"70643":1,"70644":2,"70645":2,"70646":1,"70647":2,"70648":1,"70649":1,"70650":1,"70651":2,"70652":2,"70653":1,"70654":2,"70655":1,"70656":1,"70657":1,"70658":1,"70659":2,"70660":2,"70661":1,"70662":1,"70663":2,"70664":1,"70665":2,"70666":2,"70667":1,"70668":1,"70669":2,"70670":1,"70671":1,"70672":2,"70673":1,"70674":1,"70675":1,"70676":1,"70677":1,"70678":1,"70679":1,"70680":1,"70681":1,"70682":1,"70683":2,"70684":2,"70685":1,"70686":2,"70687":1,"70688":2,"70689":1,"70690":2,"70691":2,"70692":1,"70693":1,"70694":1,"70695":1,"70696":1,"70697":2,"70698":1,"70699":1,"70700":1,"70701":1,"70702":2,"70703":2,"70704":2,"70705":2,"70706":2,"70707":1,"70708":1,"70709":1,"70710":2,"70711":2,"70712":1,"70713":1,"70714":2,"70715":1,"70716":2,"70717":2,"70718":1,"70719":1,"70720":2,"70721":2,"70722":1,"70723":2,"70724":1,"70725":1,"70726":1,"70727":1,"70728":2,"70729":2,"70730":1,"70731":1,"70732":2,"70733":1,"70734":1,"70735":2,"70736":1,"70737":1,"70738":1,"70739":2,"70740":1,"70741":1,"70742":2,"70743":2,"70744":1,"70745":1,"70746":1,"70747":1,"70748":1,"70749":1,"70750":2,"70751":2,"70752":1,"70753":2,"70754":1,"70755":1,"70756":2,"70757":1,"70758":2,"70759":2,"70760":2,"70761":2,"70762":1,"70763":2,"70764":1,"70765":2,"70766":1,"70767":2,"70768":2,"70769":1,"70770":1,"70771":2,"70772":1,"70773":2,"70774":1,"70775":2,"70776":1,"70777":1,"70778":1,"70779":2,"70780":2,"70781":1,"70782":1,"70783":2,"70784":1,"70785":1,"70786":1,"70787":1,"70788":2,"70789":1,"70790":1,"70791":2,"70792":1,"70793":1,"70794":1,"70795":2,"70796":2,"70797":2,"70798":1,"70799":2,"70800":2,"70801":1,"70802":1,"70803":2,"70804":2,"70805":2,"70806":1,"70807":2,"70808":2,"70809":2,"70810":1,"70811":1,"70812":1,"70813":1,"70814":2,"70815":1,"70816":2,"70817":1,"70818":1,"70819":1,"70820":2,"70821":1,"70822":1,"70823":1,"70824":2,"70825":1,"70826":2,"70827":1,"70828":1,"70829":2,"70830":2,"70831":1,"70832":1,"70833":1,"70834":1,"70835":2,"70836":1,"70837":2,"70838":2,"70839":2,"70840":1,"70841":1,"70842":1,"70843":1,"70844":2,"70845":2,"70846":1,"70847":1,"70848":1,"70849":2,"70850":2,"70851":2,"70852":1,"70853":1,"70854":2,"70855":2,"70856":2,"70857":2,"70858":2,"70859":1,"70860":1,"70861":2,"70862":1,"70863":1,"70864":2,"70865":1,"70866":2,"70867":2,"70868":2,"70869":2,"70870":1,"70871":2,"70872":2,"70873":2,"70874":1,"70875":1,"70876":2,"70877":1,"70878":2,"70879":2,"70880":1,"70881":1,"70882":2,"70883":1,"70884":2,"70885":2,"70886":1,"70887":2,"70888":1,"70889":1,"70890":2,"70891":1,"70892":2,"70893":2,"70894":2,"70895":2,"70896":1,"70897":1,"70898":2,"70899":1,"70900":2,"70901":2,"70902":2,"70903":1,"70904":2,"70905":2,"70906":1,"70907":1,"70908":2,"70909":2,"70910":2,"70911":2,"70912":1,"70913":1,"70914":2,"70915":2,"70916":1,"70917":1,"70918":2,"70919":1,"70920":1,"70921":2,"70922":2,"70923":2,"70924":1,"70925":1,"70926":2,"70927":2,"70928":1,"70929":2,"70930":2,"70931":1,"70932":2,"70933":1,"70934":1,"70935":2,"70936":1,"70937":2,"70938":1,"70939":2,"70940":2,"70941":2,"70942":2,"70943":1,"70944":2,"70945":1,"70946":1,"70947":2,"70948":2,"70949":2,"70950":2,"70951":1,"70952":2,"70953":2,"70954":1,"70955":2,"70956":1,"70957":2,"70958":1,"70959":2,"70960":2,"70961":1,"70962":1,"70963":1,"70964":2,"70965":1,"70966":2,"70967":1,"70968":2,"70969":2,"70970":2,"70971":1,"70972":2,"70973":1,"70974":1,"70975":1,"70976":2,"70977":1,"70978":1,"70979":2,"70980":1,"70981":1,"70982":1,"70983":2,"70984":2,"70985":2,"70986":2,"70987":1,"70988":2,"70989":2,"70990":2,"70991":1,"70992":1,"70993":2,"70994":2,"70995":2,"70996":1,"70997":1,"70998":2,"70999":2,"71000":2,"71001":1,"71002":2,"71003":1,"71004":1,"71005":2,"71006":2,"71007":2,"71008":1,"71009":1,"71010":2,"71011":2,"71012":1,"71013":1,"71014":1,"71015":2,"71016":1,"71017":1,"71018":1,"71019":1,"71020":2,"71021":2,"71022":2,"71023":2,"71024":1,"71025":2,"71026":2,"71027":1,"71028":1,"71029":1,"71030":2,"71031":1,"71032":1,"71033":2,"71034":1,"71035":1,"71036":1,"71037":2,"71038":2,"71039":2,"71040":1,"71041":1,"71042":1,"71043":2,"71044":2,"71045":1,"71046":1,"71047":1,"71048":1,"71049":1,"71050":1,"71051":1,"71052":2,"71053":1,"71054":2,"71055":2,"71056":1,"71057":2,"71058":2,"71059":1,"71060":1,"71061":1,"71062":1,"71063":1,"71064":2,"71065":1,"71066":2,"71067":1,"71068":1,"71069":1,"71070":2,"71071":1,"71072":2,"71073":1,"71074":1,"71075":1,"71076":1,"71077":2,"71078":2,"71079":2,"71080":2,"71081":1,"71082":1,"71083":1,"71084":2,"71085":1,"71086":2,"71087":1,"71088":2,"71089":1,"71090":1,"71091":1,"71092":1,"71093":1,"71094":1,"71095":2,"71096":1,"71097":1,"71098":1,"71099":2,"71100":1,"71101":1,"71102":1,"71103":2,"71104":1,"71105":1,"71106":2,"71107":2,"71108":2,"71109":2,"71110":2,"71111":1,"71112":2,"71113":2,"71114":2,"71115":1,"71116":2,"71117":1,"71118":1,"71119":2,"71120":2,"71121":1,"71122":2,"71123":2,"71124":1,"71125":2,"71126":1,"71127":1,"71128":1,"71129":2,"71130":1,"71131":2,"71132":1,"71133":2,"71134":2,"71135":1,"71136":1,"71137":1,"71138":2,"71139":1,"71140":2,"71141":1,"71142":1,"71143":1,"71144":2,"71145":1,"71146":2,"71147":2,"71148":2,"71149":1,"71150":2,"71151":2,"71152":1,"71153":2,"71154":2,"71155":2,"71156":1,"71157":1,"71158":1,"71159":2,"71160":1,"71161":1,"71162":1,"71163":2,"71164":1,"71165":2,"71166":1,"71167":1,"71168":1,"71169":1,"71170":1,"71171":2,"71172":2,"71173":1,"71174":2,"71175":2,"71176":2,"71177":2,"71178":1,"71179":2,"71180":2,"71181":1,"71182":1,"71183":2,"71184":1,"71185":2,"71186":1,"71187":2,"71188":1,"71189":1,"71190":2,"71191":2,"71192":1,"71193":1,"71194":1,"71195":1,"71196":2,"71197":2,"71198":1,"71199":1,"71200":2,"71201":1,"71202":2,"71203":2,"71204":1,"71205":1,"71206":2,"71207":2,"71208":2,"71209":2,"71210":1,"71211":1,"71212":1,"71213":2,"71214":2,"71215":2,"71216":2,"71217":1,"71218":2,"71219":1,"71220":1,"71221":1,"71222":1,"71223":2,"71224":1,"71225":2,"71226":1,"71227":2,"71228":2,"71229":2,"71230":2,"71231":1,"71232":2,"71233":2,"71234":1,"71235":1,"71236":2,"71237":1,"71238":2,"71239":1,"71240":1,"71241":2,"71242":1,"71243":1,"71244":1,"71245":2,"71246":2,"71247":1,"71248":1,"71249":1,"71250":2,"71251":1,"71252":2,"71253":1,"71254":1,"71255":1,"71256":1,"71257":1,"71258":1,"71259":1,"71260":1,"71261":1,"71262":2,"71263":2,"71264":1,"71265":2,"71266":2,"71267":2,"71268":2,"71269":2,"71270":1,"71271":1,"71272":2,"71273":2,"71274":1,"71275":2,"71276":1,"71277":2,"71278":1,"71279":2,"71280":1,"71281":1,"71282":1,"71283":1,"71284":2,"71285":1,"71286":2,"71287":1,"71288":1,"71289":1,"71290":1,"71291":2,"71292":1,"71293":1,"71294":2,"71295":1,"71296":1,"71297":2,"71298":1,"71299":2,"71300":2,"71301":2,"71302":2,"71303":1,"71304":2,"71305":1,"71306":2,"71307":2,"71308":1,"71309":2,"71310":1,"71311":2,"71312":2,"71313":1,"71314":1,"71315":2,"71316":1,"71317":1,"71318":1,"71319":1,"71320":1,"71321":1,"71322":2,"71323":1,"71324":1,"71325":1,"71326":1,"71327":2,"71328":2,"71329":1,"71330":2,"71331":2,"71332":2,"71333":2,"71334":1,"71335":1,"71336":1,"71337":1,"71338":2,"71339":1,"71340":1,"71341":2,"71342":2,"71343":2,"71344":2,"71345":1,"71346":1,"71347":2,"71348":1,"71349":2,"71350":1,"71351":2,"71352":2,"71353":2,"71354":2,"71355":2,"71356":2,"71357":2,"71358":2,"71359":1,"71360":1,"71361":1,"71362":1,"71363":2,"71364":2,"71365":2,"71366":1,"71367":1,"71368":1,"71369":2,"71370":2,"71371":1,"71372":2,"71373":1,"71374":2,"71375":1,"71376":1,"71377":2,"71378":2,"71379":2,"71380":2,"71381":2,"71382":1,"71383":2,"71384":1,"71385":1,"71386":2,"71387":2,"71388":1,"71389":2,"71390":2,"71391":1,"71392":1,"71393":2,"71394":1,"71395":2,"71396":2,"71397":2,"71398":2,"71399":1,"71400":2,"71401":1,"71402":1,"71403":1,"71404":2,"71405":2,"71406":1,"71407":2,"71408":1,"71409":2,"71410":1,"71411":2,"71412":2,"71413":1,"71414":1,"71415":1,"71416":2,"71417":2,"71418":1,"71419":2,"71420":1,"71421":1,"71422":1,"71423":2,"71424":2,"71425":1,"71426":1,"71427":2,"71428":2,"71429":2,"71430":2,"71431":1,"71432":2,"71433":1,"71434":2,"71435":2,"71436":1,"71437":2,"71438":1,"71439":1,"71440":1,"71441":1,"71442":2,"71443":1,"71444":1,"71445":2,"71446":1,"71447":2,"71448":1,"71449":1,"71450":2,"71451":1,"71452":2,"71453":2,"71454":1,"71455":2,"71456":2,"71457":2,"71458":1,"71459":2,"71460":2,"71461":1,"71462":1,"71463":2,"71464":1,"71465":1,"71466":1,"71467":2,"71468":1,"71469":1,"71470":1,"71471":2,"71472":2,"71473":2,"71474":1,"71475":2,"71476":1,"71477":2,"71478":2,"71479":1,"71480":2,"71481":1,"71482":2,"71483":2,"71484":2,"71485":2,"71486":2,"71487":1,"71488":2,"71489":2,"71490":1,"71491":1,"71492":2,"71493":2,"71494":1,"71495":1,"71496":2,"71497":1,"71498":2,"71499":1,"71500":1,"71501":1,"71502":2,"71503":1,"71504":1,"71505":2,"71506":1,"71507":2,"71508":2,"71509":1,"71510":1,"71511":1,"71512":1,"71513":2,"71514":1,"71515":2,"71516":2,"71517":1,"71518":2,"71519":2,"71520":2,"71521":2,"71522":1,"71523":2,"71524":1,"71525":1,"71526":2,"71527":1,"71528":1,"71529":1,"71530":2,"71531":1,"71532":1,"71533":2,"71534":1,"71535":1,"71536":1,"71537":1,"71538":1,"71539":2,"71540":1,"71541":1,"71542":2,"71543":2,"71544":1,"71545":1,"71546":2,"71547":2,"71548":2,"71549":2,"71550":1,"71551":2,"71552":1,"71553":1,"71554":1,"71555":2,"71556":2,"71557":1,"71558":2,"71559":2,"71560":1,"71561":1,"71562":1,"71563":2,"71564":2,"71565":1,"71566":2,"71567":1,"71568":1,"71569":2,"71570":1,"71571":2,"71572":1,"71573":1,"71574":2,"71575":2,"71576":2,"71577":2,"71578":1,"71579":1,"71580":1,"71581":1,"71582":2,"71583":1,"71584":1,"71585":2,"71586":2,"71587":2,"71588":1,"71589":1,"71590":1,"71591":1,"71592":2,"71593":1,"71594":2,"71595":2,"71596":1,"71597":1,"71598":1,"71599":1,"71600":2,"71601":2,"71602":1,"71603":2,"71604":1,"71605":2,"71606":2,"71607":2,"71608":1,"71609":2,"71610":1,"71611":2,"71612":2,"71613":1,"71614":1,"71615":1,"71616":2,"71617":2,"71618":1,"71619":1,"71620":1,"71621":1,"71622":1,"71623":2,"71624":1,"71625":2,"71626":1,"71627":1,"71628":1,"71629":2,"71630":1,"71631":2,"71632":1,"71633":1,"71634":2,"71635":2,"71636":2,"71637":2,"71638":2,"71639":1,"71640":1,"71641":1,"71642":1,"71643":1,"71644":2,"71645":1,"71646":2,"71647":1,"71648":1,"71649":1,"71650":2,"71651":2,"71652":2,"71653":2,"71654":1,"71655":2,"71656":2,"71657":2,"71658":2,"71659":2,"71660":1,"71661":2,"71662":1,"71663":2,"71664":2,"71665":2,"71666":1,"71667":1,"71668":2,"71669":2,"71670":1,"71671":1,"71672":2,"71673":2,"71674":2,"71675":1,"71676":2,"71677":1,"71678":2,"71679":2,"71680":1,"71681":1,"71682":2,"71683":1,"71684":2,"71685":2,"71686":1,"71687":2,"71688":2,"71689":2,"71690":2,"71691":1,"71692":1,"71693":2,"71694":2,"71695":2,"71696":2,"71697":1,"71698":2,"71699":2,"71700":2,"71701":1,"71702":2,"71703":2,"71704":1,"71705":2,"71706":1,"71707":1,"71708":1,"71709":2,"71710":1,"71711":1,"71712":2,"71713":2,"71714":2,"71715":2,"71716":2,"71717":1,"71718":2,"71719":2,"71720":2,"71721":2,"71722":1,"71723":2,"71724":2,"71725":1,"71726":1,"71727":1,"71728":2,"71729":1,"71730":1,"71731":1,"71732":2,"71733":2,"71734":2,"71735":1,"71736":2,"71737":1,"71738":1,"71739":1,"71740":2,"71741":1,"71742":1,"71743":1,"71744":2,"71745":2,"71746":1,"71747":1,"71748":1,"71749":2,"71750":1,"71751":2,"71752":1,"71753":1,"71754":1,"71755":1,"71756":1,"71757":2,"71758":1,"71759":1,"71760":1,"71761":2,"71762":2,"71763":1,"71764":1,"71765":1,"71766":1,"71767":2,"71768":1,"71769":2,"71770":2,"71771":2,"71772":1,"71773":1,"71774":1,"71775":1,"71776":2,"71777":1,"71778":1,"71779":1,"71780":2,"71781":1,"71782":1,"71783":2,"71784":1,"71785":1,"71786":2,"71787":1,"71788":1,"71789":2,"71790":2,"71791":2,"71792":1,"71793":1,"71794":1,"71795":2,"71796":1,"71797":1,"71798":2,"71799":1,"71800":2,"71801":2,"71802":2,"71803":1,"71804":2,"71805":1,"71806":2,"71807":2,"71808":1,"71809":2,"71810":1,"71811":2,"71812":2,"71813":2,"71814":1,"71815":1,"71816":2,"71817":2,"71818":2,"71819":2,"71820":1,"71821":2,"71822":1,"71823":1,"71824":1,"71825":1,"71826":2,"71827":1,"71828":2,"71829":1,"71830":1,"71831":1,"71832":2,"71833":2,"71834":2,"71835":2,"71836":2,"71837":1,"71838":1,"71839":1,"71840":2,"71841":1,"71842":2,"71843":1,"71844":1,"71845":2,"71846":1,"71847":2,"71848":1,"71849":1,"71850":1,"71851":2,"71852":2,"71853":2,"71854":2,"71855":1,"71856":1,"71857":2,"71858":2,"71859":1,"71860":2,"71861":1,"71862":2,"71863":1,"71864":1,"71865":2,"71866":1,"71867":1,"71868":2,"71869":2,"71870":2,"71871":2,"71872":1,"71873":1,"71874":1,"71875":2,"71876":1,"71877":1,"71878":2,"71879":2,"71880":1,"71881":2,"71882":1,"71883":2,"71884":1,"71885":1,"71886":2,"71887":2,"71888":2,"71889":1,"71890":2,"71891":1,"71892":1,"71893":2,"71894":1,"71895":1,"71896":2,"71897":1,"71898":1,"71899":2,"71900":1,"71901":2,"71902":1,"71903":2,"71904":1,"71905":2,"71906":2,"71907":1,"71908":1,"71909":2,"71910":1,"71911":1,"71912":2,"71913":1,"71914":2,"71915":1,"71916":1,"71917":2,"71918":2,"71919":2,"71920":1,"71921":2,"71922":2,"71923":1,"71924":1,"71925":1,"71926":2,"71927":1,"71928":1,"71929":2,"71930":1,"71931":1,"71932":1,"71933":2,"71934":2,"71935":2,"71936":2,"71937":2,"71938":1,"71939":2,"71940":2,"71941":1,"71942":2,"71943":1,"71944":1,"71945":1,"71946":1,"71947":2,"71948":2,"71949":1,"71950":1,"71951":1,"71952":2,"71953":2,"71954":1,"71955":2,"71956":2,"71957":1,"71958":1,"71959":1,"71960":1,"71961":1,"71962":2,"71963":2,"71964":2,"71965":1,"71966":2,"71967":2,"71968":1,"71969":2,"71970":2,"71971":2,"71972":2,"71973":2,"71974":1,"71975":2,"71976":2,"71977":2,"71978":2,"71979":1,"71980":1,"71981":1,"71982":1,"71983":2,"71984":1,"71985":1,"71986":2,"71987":2,"71988":1,"71989":2,"71990":2,"71991":2,"71992":1,"71993":2,"71994":1,"71995":1,"71996":2,"71997":1,"71998":1,"71999":1,"72000":2,"72001":1,"72002":2,"72003":1,"72004":1,"72005":1,"72006":2,"72007":2,"72008":1,"72009":2,"72010":1,"72011":2,"72012":2,"72013":2,"72014":2,"72015":2,"72016":1,"72017":1,"72018":2,"72019":2,"72020":1,"72021":1,"72022":1,"72023":1,"72024":1,"72025":1,"72026":2,"72027":2,"72028":2,"72029":2,"72030":2,"72031":1,"72032":2,"72033":2,"72034":2,"72035":2,"72036":2,"72037":1,"72038":2,"72039":1,"72040":1,"72041":1,"72042":1,"72043":2,"72044":1,"72045":1,"72046":1,"72047":2,"72048":2,"72049":1,"72050":1,"72051":1,"72052":1,"72053":2,"72054":1,"72055":1,"72056":1,"72057":2,"72058":1,"72059":1,"72060":1,"72061":2,"72062":1,"72063":2,"72064":1,"72065":1,"72066":1,"72067":2,"72068":1,"72069":2,"72070":1,"72071":2,"72072":2,"72073":2,"72074":2,"72075":1,"72076":2,"72077":1,"72078":2,"72079":2,"72080":2,"72081":2,"72082":1,"72083":1,"72084":2,"72085":2,"72086":2,"72087":2,"72088":2,"72089":1,"72090":1,"72091":2,"72092":1,"72093":2,"72094":1,"72095":1,"72096":1,"72097":1,"72098":2,"72099":1,"72100":1,"72101":1,"72102":2,"72103":2,"72104":2,"72105":2,"72106":2,"72107":2,"72108":1,"72109":2,"72110":1,"72111":1,"72112":1,"72113":1,"72114":1,"72115":2,"72116":1,"72117":2,"72118":1,"72119":2,"72120":1,"72121":1,"72122":1,"72123":1,"72124":2,"72125":1,"72126":1,"72127":2,"72128":2,"72129":2,"72130":1,"72131":2,"72132":1,"72133":1,"72134":1,"72135":2,"72136":2,"72137":1,"72138":2,"72139":2,"72140":1,"72141":1,"72142":2,"72143":2,"72144":2,"72145":1,"72146":2,"72147":2,"72148":1,"72149":1,"72150":1,"72151":2,"72152":1,"72153":1,"72154":1,"72155":2,"72156":1,"72157":2,"72158":1,"72159":2,"72160":2,"72161":2,"72162":2,"72163":2,"72164":2,"72165":1,"72166":2,"72167":2,"72168":1,"72169":2,"72170":2,"72171":2,"72172":1,"72173":1,"72174":1,"72175":1,"72176":1,"72177":1,"72178":2,"72179":2,"72180":2,"72181":2,"72182":1,"72183":1,"72184":2,"72185":1,"72186":2,"72187":2,"72188":2,"72189":1,"72190":2,"72191":2,"72192":1,"72193":2,"72194":1,"72195":2,"72196":2,"72197":1,"72198":1,"72199":2,"72200":2,"72201":1,"72202":1,"72203":1,"72204":2,"72205":2,"72206":1,"72207":1,"72208":1,"72209":1,"72210":1,"72211":1,"72212":1,"72213":1,"72214":1,"72215":2,"72216":2,"72217":2,"72218":2,"72219":1,"72220":2,"72221":1,"72222":1,"72223":1,"72224":2,"72225":2,"72226":1,"72227":2,"72228":2,"72229":2,"72230":2,"72231":2,"72232":1,"72233":2,"72234":1,"72235":2,"72236":2,"72237":2,"72238":2,"72239":1,"72240":1,"72241":2,"72242":1,"72243":1,"72244":2,"72245":1,"72246":2,"72247":2,"72248":1,"72249":2,"72250":1,"72251":1,"72252":2,"72253":1,"72254":1,"72255":1,"72256":2,"72257":1,"72258":2,"72259":2,"72260":1,"72261":2,"72262":2,"72263":1,"72264":2,"72265":2,"72266":2,"72267":1,"72268":2,"72269":2,"72270":1,"72271":1,"72272":1,"72273":2,"72274":1,"72275":1,"72276":1,"72277":1,"72278":1,"72279":2,"72280":2,"72281":1,"72282":1,"72283":1,"72284":2,"72285":2,"72286":2,"72287":1,"72288":2,"72289":1,"72290":2,"72291":2,"72292":2,"72293":1,"72294":1,"72295":1,"72296":2,"72297":2,"72298":1,"72299":1,"72300":1,"72301":2,"72302":2,"72303":1,"72304":1,"72305":2,"72306":2,"72307":2,"72308":2,"72309":1,"72310":2,"72311":1,"72312":1,"72313":1,"72314":2,"72315":1,"72316":1,"72317":2,"72318":1,"72319":2,"72320":2,"72321":1,"72322":1,"72323":2,"72324":1,"72325":1,"72326":2,"72327":1,"72328":2,"72329":1,"72330":2,"72331":1,"72332":2,"72333":1,"72334":1,"72335":2,"72336":1,"72337":1,"72338":2,"72339":2,"72340":1,"72341":1,"72342":2,"72343":1,"72344":1,"72345":1,"72346":2,"72347":2,"72348":1,"72349":1,"72350":1,"72351":1,"72352":1,"72353":1,"72354":1,"72355":2,"72356":2,"72357":1,"72358":2,"72359":2,"72360":2,"72361":2,"72362":2,"72363":1,"72364":2,"72365":1,"72366":2,"72367":1,"72368":2,"72369":1,"72370":2,"72371":1,"72372":1,"72373":1,"72374":1,"72375":2,"72376":2,"72377":2,"72378":1,"72379":2,"72380":1,"72381":2,"72382":2,"72383":2,"72384":1,"72385":1,"72386":2,"72387":1,"72388":2,"72389":2,"72390":1,"72391":2,"72392":2,"72393":1,"72394":2,"72395":1,"72396":1,"72397":2,"72398":1,"72399":2,"72400":1,"72401":1,"72402":1,"72403":2,"72404":2,"72405":2,"72406":2,"72407":1,"72408":1,"72409":1,"72410":2,"72411":1,"72412":2,"72413":2,"72414":2,"72415":2,"72416":2,"72417":1,"72418":2,"72419":2,"72420":1,"72421":2,"72422":1,"72423":2,"72424":2,"72425":2,"72426":2,"72427":2,"72428":2,"72429":2,"72430":2,"72431":1,"72432":1,"72433":2,"72434":1,"72435":1,"72436":2,"72437":2,"72438":2,"72439":2,"72440":2,"72441":1,"72442":1,"72443":1,"72444":1,"72445":1,"72446":1,"72447":1,"72448":2,"72449":2,"72450":1,"72451":1,"72452":1,"72453":1,"72454":1,"72455":2,"72456":1,"72457":1,"72458":1,"72459":1,"72460":1,"72461":2,"72462":2,"72463":2,"72464":1,"72465":2,"72466":2,"72467":2,"72468":1,"72469":1,"72470":2,"72471":2,"72472":1,"72473":1,"72474":1,"72475":1,"72476":2,"72477":1,"72478":1,"72479":2,"72480":1,"72481":1,"72482":1,"72483":2,"72484":1,"72485":1,"72486":2,"72487":2,"72488":2,"72489":2,"72490":1,"72491":2,"72492":1,"72493":2,"72494":1,"72495":2,"72496":2,"72497":2,"72498":1,"72499":2,"72500":2,"72501":1,"72502":1,"72503":1,"72504":2,"72505":2,"72506":1,"72507":2,"72508":2,"72509":1,"72510":1,"72511":1,"72512":1,"72513":1,"72514":1,"72515":2,"72516":1,"72517":2,"72518":1,"72519":1,"72520":2,"72521":1,"72522":2,"72523":2,"72524":2,"72525":1,"72526":1,"72527":1,"72528":2,"72529":1,"72530":2,"72531":2,"72532":2,"72533":1,"72534":2,"72535":1,"72536":2,"72537":1,"72538":1,"72539":2,"72540":1,"72541":1,"72542":1,"72543":2,"72544":2,"72545":1,"72546":1,"72547":2,"72548":2,"72549":2,"72550":1,"72551":2,"72552":2,"72553":1,"72554":2,"72555":1,"72556":1,"72557":2,"72558":1,"72559":1,"72560":1,"72561":2,"72562":2,"72563":2,"72564":2,"72565":2,"72566":1,"72567":2,"72568":1,"72569":2,"72570":1,"72571":1,"72572":2,"72573":1,"72574":2,"72575":2,"72576":1,"72577":2,"72578":1,"72579":1,"72580":2,"72581":1,"72582":2,"72583":2,"72584":1,"72585":2,"72586":2,"72587":1,"72588":1,"72589":1,"72590":1,"72591":1,"72592":1,"72593":2,"72594":1,"72595":1,"72596":2,"72597":2,"72598":2,"72599":1,"72600":1,"72601":1,"72602":1,"72603":2,"72604":1,"72605":1,"72606":1,"72607":1,"72608":2,"72609":1,"72610":1,"72611":2,"72612":2,"72613":2,"72614":2,"72615":1,"72616":1,"72617":1,"72618":1,"72619":2,"72620":2,"72621":1,"72622":1,"72623":1,"72624":1,"72625":2,"72626":1,"72627":2,"72628":2,"72629":1,"72630":1,"72631":1,"72632":2,"72633":1,"72634":1,"72635":2,"72636":2,"72637":1,"72638":2,"72639":2,"72640":1,"72641":2,"72642":1,"72643":2,"72644":2,"72645":1,"72646":2,"72647":2,"72648":1,"72649":2,"72650":1,"72651":2,"72652":1,"72653":2,"72654":1,"72655":1,"72656":2,"72657":2,"72658":2,"72659":2,"72660":1,"72661":1,"72662":1,"72663":1,"72664":2,"72665":1,"72666":2,"72667":2,"72668":1,"72669":1,"72670":1,"72671":1,"72672":1,"72673":1,"72674":2,"72675":2,"72676":1,"72677":1,"72678":2,"72679":1,"72680":1,"72681":2,"72682":2,"72683":2,"72684":2,"72685":1,"72686":2,"72687":2,"72688":2,"72689":2,"72690":2,"72691":1,"72692":2,"72693":1,"72694":1,"72695":1,"72696":1,"72697":1,"72698":2,"72699":2,"72700":1,"72701":1,"72702":1,"72703":2,"72704":2,"72705":2,"72706":2,"72707":1,"72708":2,"72709":2,"72710":1,"72711":2,"72712":1,"72713":1,"72714":2,"72715":2,"72716":1,"72717":1,"72718":2,"72719":1,"72720":1,"72721":2,"72722":2,"72723":1,"72724":2,"72725":1,"72726":1,"72727":1,"72728":2,"72729":1,"72730":1,"72731":1,"72732":2,"72733":1,"72734":1,"72735":2,"72736":1,"72737":1,"72738":2,"72739":2,"72740":2,"72741":2,"72742":1,"72743":1,"72744":1,"72745":1,"72746":2,"72747":2,"72748":2,"72749":1,"72750":1,"72751":2,"72752":2,"72753":1,"72754":2,"72755":2,"72756":1,"72757":2,"72758":1,"72759":2,"72760":2,"72761":1,"72762":2,"72763":1,"72764":1,"72765":2,"72766":2,"72767":2,"72768":2,"72769":2,"72770":2,"72771":2,"72772":1,"72773":2,"72774":2,"72775":2,"72776":1,"72777":1,"72778":2,"72779":1,"72780":1,"72781":2,"72782":2,"72783":1,"72784":1,"72785":2,"72786":2,"72787":1,"72788":1,"72789":1,"72790":2,"72791":2,"72792":2,"72793":1,"72794":2,"72795":2,"72796":2,"72797":1,"72798":2,"72799":2,"72800":1,"72801":1,"72802":1,"72803":2,"72804":1,"72805":2,"72806":1,"72807":1,"72808":2,"72809":2,"72810":1,"72811":1,"72812":2,"72813":1,"72814":2,"72815":2,"72816":1,"72817":2,"72818":1,"72819":1,"72820":1,"72821":2,"72822":1,"72823":2,"72824":2,"72825":2,"72826":2,"72827":2,"72828":2,"72829":2,"72830":1,"72831":2,"72832":2,"72833":2,"72834":2,"72835":2,"72836":2,"72837":1,"72838":1,"72839":2,"72840":2,"72841":2,"72842":2,"72843":2,"72844":1,"72845":1,"72846":1,"72847":1,"72848":1,"72849":1,"72850":2,"72851":2,"72852":2,"72853":1,"72854":1,"72855":2,"72856":2,"72857":1,"72858":2,"72859":1,"72860":1,"72861":1,"72862":2,"72863":2,"72864":1,"72865":2,"72866":1,"72867":2,"72868":2,"72869":2,"72870":2,"72871":1,"72872":2,"72873":1,"72874":1,"72875":2,"72876":1,"72877":1,"72878":2,"72879":1,"72880":1,"72881":2,"72882":1,"72883":2,"72884":2,"72885":1,"72886":1,"72887":2,"72888":2,"72889":2,"72890":2,"72891":1,"72892":1,"72893":1,"72894":1,"72895":2,"72896":1,"72897":2,"72898":1,"72899":2,"72900":2,"72901":1,"72902":1,"72903":1,"72904":1,"72905":2,"72906":2,"72907":1,"72908":1,"72909":2,"72910":1,"72911":1,"72912":2,"72913":1,"72914":2,"72915":2,"72916":2,"72917":1,"72918":2,"72919":2,"72920":1,"72921":2,"72922":1,"72923":1,"72924":2,"72925":1,"72926":1,"72927":1,"72928":2,"72929":1,"72930":1,"72931":2,"72932":1,"72933":1,"72934":2,"72935":1,"72936":1,"72937":2,"72938":2,"72939":1,"72940":1,"72941":1,"72942":1,"72943":1,"72944":2,"72945":2,"72946":1,"72947":2,"72948":2,"72949":2,"72950":2,"72951":2,"72952":2,"72953":1,"72954":2,"72955":2,"72956":2,"72957":2,"72958":1,"72959":1,"72960":1,"72961":2,"72962":2,"72963":2,"72964":2,"72965":2,"72966":2,"72967":1,"72968":2,"72969":1,"72970":2,"72971":1,"72972":1,"72973":2,"72974":2,"72975":1,"72976":2,"72977":2,"72978":2,"72979":2,"72980":2,"72981":2,"72982":2,"72983":2,"72984":1,"72985":2,"72986":1,"72987":1,"72988":1,"72989":1,"72990":2,"72991":1,"72992":1,"72993":1,"72994":1,"72995":2,"72996":2,"72997":2,"72998":1,"72999":2,"73000":1,"73001":1,"73002":2,"73003":2,"73004":1,"73005":2,"73006":2,"73007":2,"73008":2,"73009":1,"73010":1,"73011":2,"73012":2,"73013":2,"73014":2,"73015":1,"73016":1,"73017":1,"73018":1,"73019":2,"73020":1,"73021":2,"73022":2,"73023":2,"73024":2,"73025":2,"73026":1,"73027":1,"73028":1,"73029":2,"73030":2,"73031":2,"73032":2,"73033":1,"73034":1,"73035":1,"73036":1,"73037":1,"73038":1,"73039":1,"73040":2,"73041":2,"73042":2,"73043":2,"73044":1,"73045":2,"73046":2,"73047":2,"73048":1,"73049":2,"73050":1,"73051":1,"73052":1,"73053":1,"73054":1,"73055":1,"73056":1,"73057":2,"73058":1,"73059":2,"73060":2,"73061":2,"73062":1,"73063":1,"73064":1,"73065":2,"73066":1,"73067":1,"73068":1,"73069":1,"73070":1,"73071":1,"73072":1,"73073":1,"73074":1,"73075":2,"73076":2,"73077":1,"73078":1,"73079":2,"73080":2,"73081":2,"73082":1,"73083":1,"73084":2,"73085":2,"73086":1,"73087":1,"73088":1,"73089":2,"73090":1,"73091":2,"73092":2,"73093":1,"73094":1,"73095":1,"73096":1,"73097":2,"73098":1,"73099":1,"73100":2,"73101":2,"73102":1,"73103":1,"73104":2,"73105":2,"73106":1,"73107":2,"73108":2,"73109":2,"73110":2,"73111":2,"73112":2,"73113":1,"73114":2,"73115":1,"73116":1,"73117":1,"73118":1,"73119":2,"73120":1,"73121":1,"73122":2,"73123":1,"73124":2,"73125":2,"73126":1,"73127":1,"73128":1,"73129":2,"73130":2,"73131":1,"73132":2,"73133":2,"73134":1,"73135":1,"73136":2,"73137":1,"73138":1,"73139":1,"73140":1,"73141":2,"73142":2,"73143":1,"73144":1,"73145":2,"73146":1,"73147":2,"73148":1,"73149":2,"73150":2,"73151":1,"73152":1,"73153":1,"73154":2,"73155":1,"73156":2,"73157":2,"73158":1,"73159":2,"73160":1,"73161":2,"73162":2,"73163":2,"73164":2,"73165":1,"73166":2,"73167":2,"73168":2,"73169":2,"73170":1,"73171":1,"73172":1,"73173":2,"73174":2,"73175":1,"73176":1,"73177":1,"73178":1,"73179":1,"73180":2,"73181":2,"73182":2,"73183":2,"73184":1,"73185":2,"73186":2,"73187":1,"73188":2,"73189":2,"73190":1,"73191":2,"73192":1,"73193":2,"73194":2,"73195":2,"73196":1,"73197":1,"73198":2,"73199":1,"73200":2,"73201":2,"73202":2,"73203":2,"73204":2,"73205":1,"73206":1,"73207":1,"73208":1,"73209":1,"73210":1,"73211":2,"73212":1,"73213":1,"73214":2,"73215":1,"73216":2,"73217":2,"73218":2,"73219":2,"73220":2,"73221":1,"73222":2,"73223":1,"73224":1,"73225":2,"73226":2,"73227":1,"73228":2,"73229":1,"73230":2,"73231":1,"73232":2,"73233":1,"73234":1,"73235":1,"73236":1,"73237":1,"73238":1,"73239":2,"73240":2,"73241":1,"73242":2,"73243":2,"73244":1,"73245":1,"73246":1,"73247":2,"73248":1,"73249":2,"73250":2,"73251":1,"73252":2,"73253":2,"73254":2,"73255":1,"73256":1,"73257":2,"73258":1,"73259":1,"73260":2,"73261":1,"73262":1,"73263":1,"73264":2,"73265":2,"73266":1,"73267":1,"73268":2,"73269":1,"73270":1,"73271":1,"73272":1,"73273":2,"73274":2,"73275":2,"73276":1,"73277":2,"73278":1,"73279":2,"73280":1,"73281":2,"73282":2,"73283":2,"73284":1,"73285":1,"73286":1,"73287":2,"73288":2,"73289":1,"73290":2,"73291":2,"73292":2,"73293":1,"73294":2,"73295":2,"73296":1,"73297":2,"73298":1,"73299":1,"73300":2,"73301":2,"73302":1,"73303":1,"73304":1,"73305":2,"73306":2,"73307":1,"73308":1,"73309":2,"73310":1,"73311":1,"73312":1,"73313":2,"73314":1,"73315":2,"73316":2,"73317":2,"73318":1,"73319":1,"73320":2,"73321":2,"73322":2,"73323":1,"73324":1,"73325":1,"73326":1,"73327":1,"73328":1,"73329":2,"73330":2,"73331":1,"73332":2,"73333":2,"73334":1,"73335":1,"73336":1,"73337":2,"73338":1,"73339":2,"73340":2,"73341":1,"73342":1,"73343":1,"73344":2,"73345":1,"73346":2,"73347":2,"73348":1,"73349":2,"73350":1,"73351":2,"73352":1,"73353":1,"73354":1,"73355":2,"73356":1,"73357":2,"73358":2,"73359":1,"73360":1,"73361":1,"73362":1,"73363":1,"73364":1,"73365":2,"73366":2,"73367":1,"73368":2,"73369":2,"73370":1,"73371":1,"73372":1,"73373":1,"73374":1,"73375":2,"73376":1,"73377":1,"73378":2,"73379":1,"73380":2,"73381":1,"73382":1,"73383":2,"73384":2,"73385":1,"73386":1,"73387":2,"73388":1,"73389":2,"73390":1,"73391":2,"73392":2,"73393":1,"73394":1,"73395":2,"73396":2,"73397":2,"73398":2,"73399":1,"73400":2,"73401":1,"73402":1,"73403":2,"73404":2,"73405":1,"73406":2,"73407":2,"73408":2,"73409":2,"73410":1,"73411":2,"73412":2,"73413":1,"73414":2,"73415":1,"73416":1,"73417":2,"73418":1,"73419":2,"73420":1,"73421":2,"73422":1,"73423":1,"73424":1,"73425":2,"73426":1,"73427":1,"73428":1,"73429":2,"73430":2,"73431":2,"73432":1,"73433":1,"73434":1,"73435":2,"73436":1,"73437":2,"73438":2,"73439":1,"73440":2,"73441":1,"73442":1,"73443":1,"73444":1,"73445":2,"73446":2,"73447":1,"73448":2,"73449":2,"73450":2,"73451":2,"73452":1,"73453":2,"73454":2,"73455":2,"73456":1,"73457":1,"73458":2,"73459":1,"73460":2,"73461":1,"73462":2,"73463":2,"73464":1,"73465":2,"73466":2,"73467":1,"73468":1,"73469":2,"73470":1,"73471":1,"73472":2,"73473":2,"73474":2,"73475":1,"73476":1,"73477":2,"73478":2,"73479":2,"73480":1,"73481":2,"73482":2,"73483":1,"73484":2,"73485":2,"73486":1,"73487":1,"73488":2,"73489":1,"73490":2,"73491":1,"73492":2,"73493":1,"73494":2,"73495":1,"73496":1,"73497":1,"73498":1,"73499":2,"73500":2,"73501":1,"73502":1,"73503":1,"73504":1,"73505":2,"73506":2,"73507":2,"73508":1,"73509":2,"73510":1,"73511":2,"73512":1,"73513":2,"73514":1,"73515":2,"73516":2,"73517":1,"73518":2,"73519":1,"73520":1,"73521":1,"73522":1,"73523":1,"73524":2,"73525":2,"73526":1,"73527":1,"73528":1,"73529":2,"73530":1,"73531":2,"73532":1,"73533":1,"73534":2,"73535":1,"73536":2,"73537":1,"73538":1,"73539":2,"73540":2,"73541":1,"73542":1,"73543":2,"73544":2,"73545":1,"73546":1,"73547":2,"73548":1,"73549":2,"73550":1,"73551":1,"73552":1,"73553":1,"73554":2,"73555":2,"73556":2,"73557":2,"73558":2,"73559":1,"73560":1,"73561":2,"73562":2,"73563":2,"73564":2,"73565":1,"73566":2,"73567":2,"73568":1,"73569":2,"73570":1,"73571":2,"73572":1,"73573":1,"73574":1,"73575":2,"73576":1,"73577":1,"73578":2,"73579":2,"73580":2,"73581":2,"73582":2,"73583":1,"73584":1,"73585":2,"73586":1,"73587":2,"73588":2,"73589":1,"73590":1,"73591":1,"73592":1,"73593":2,"73594":1,"73595":1,"73596":2,"73597":1,"73598":1,"73599":1,"73600":1,"73601":2,"73602":1,"73603":2,"73604":1,"73605":1,"73606":1,"73607":2,"73608":1,"73609":2,"73610":2,"73611":2,"73612":1,"73613":1,"73614":1,"73615":1,"73616":2,"73617":1,"73618":1,"73619":1,"73620":2,"73621":2,"73622":2,"73623":1,"73624":1,"73625":1,"73626":1,"73627":2,"73628":2,"73629":1,"73630":2,"73631":2,"73632":1,"73633":1,"73634":1,"73635":2,"73636":2,"73637":1,"73638":1,"73639":2,"73640":1,"73641":2,"73642":2,"73643":1,"73644":2,"73645":2,"73646":1,"73647":1,"73648":1,"73649":1,"73650":1,"73651":2,"73652":1,"73653":2,"73654":1,"73655":2,"73656":1,"73657":2,"73658":2,"73659":1,"73660":2,"73661":2,"73662":2,"73663":2,"73664":1,"73665":2,"73666":1,"73667":2,"73668":1,"73669":2,"73670":1,"73671":1,"73672":2,"73673":1,"73674":1,"73675":1,"73676":1,"73677":1,"73678":2,"73679":1,"73680":2,"73681":2,"73682":1,"73683":2,"73684":1,"73685":2,"73686":1,"73687":1,"73688":1,"73689":1,"73690":2,"73691":2,"73692":1,"73693":2,"73694":2,"73695":1,"73696":2,"73697":2,"73698":1,"73699":1,"73700":2,"73701":1,"73702":1,"73703":2,"73704":2,"73705":1,"73706":2,"73707":2,"73708":1,"73709":1,"73710":2,"73711":2,"73712":1,"73713":2,"73714":2,"73715":1,"73716":1,"73717":2,"73718":1,"73719":2,"73720":2,"73721":1,"73722":1,"73723":1,"73724":2,"73725":2,"73726":1,"73727":1,"73728":1,"73729":2,"73730":1,"73731":2,"73732":1,"73733":2,"73734":1,"73735":1,"73736":2,"73737":1,"73738":2,"73739":1,"73740":2,"73741":1,"73742":1,"73743":1,"73744":2,"73745":1,"73746":1,"73747":1,"73748":1,"73749":1,"73750":1,"73751":2,"73752":1,"73753":1,"73754":2,"73755":2,"73756":2,"73757":1,"73758":2,"73759":2,"73760":2,"73761":1,"73762":1,"73763":2,"73764":1,"73765":1,"73766":1,"73767":1,"73768":1,"73769":2,"73770":1,"73771":1,"73772":2,"73773":1,"73774":1,"73775":1,"73776":1,"73777":1,"73778":2,"73779":2,"73780":1,"73781":2,"73782":1,"73783":2,"73784":1,"73785":2,"73786":2,"73787":1,"73788":2,"73789":2,"73790":2,"73791":1,"73792":1,"73793":2,"73794":2,"73795":2,"73796":2,"73797":1,"73798":2,"73799":1,"73800":1,"73801":1,"73802":2,"73803":1,"73804":2,"73805":2,"73806":1},"age":{"0":5,"1":9,"2":5,"3":1,"4":6,"5":2,"6":7,"7":8,"8":10,"9":9,"10":5,"11":6,"12":7,"13":5,"14":7,"15":3,"16":7,"17":8,"18":9,"19":8,"20":3,"21":7,"22":9,"23":9,"24":9,"25":2,"26":7,"27":9,"28":3,"29":8,"30":7,"31":4,"32":7,"33":10,"34":10,"35":2,"36":5,"37":4,"38":10,"39":7,"40":1,"41":10,"42":5,"43":2,"44":8,"45":10,"46":7,"47":7,"48":3,"49":6,"50":10,"51":8,"52":9,"53":5,"54":7,"55":7,"56":7,"57":5,"58":6,"59":4,"60":2,"61":9,"62":8,"63":8,"64":7,"65":7,"66":10,"67":6,"68":9,"69":5,"70":8,"71":5,"72":5,"73":9,"74":2,"75":8,"76":8,"77":5,"78":9,"79":5,"80":6,"81":5,"82":10,"83":8,"84":5,"85":8,"86":9,"87":5,"88":10,"89":7,"90":7,"91":4,"92":1,"93":10,"94":1,"95":7,"96":9,"97":5,"98":3,"99":9,"100":7,"101":5,"102":5,"103":6,"104":1,"105":5,"106":8,"107":3,"108":8,"109":6,"110":9,"111":2,"112":2,"113":2,"114":8,"115":7,"116":7,"117":2,"118":6,"119":7,"120":8,"121":7,"122":2,"123":7,"124":3,"125":3,"126":2,"127":2,"128":8,"129":5,"130":9,"131":2,"132":5,"133":5,"134":7,"135":2,"136":9,"137":5,"138":7,"139":2,"140":3,"141":8,"142":6,"143":7,"144":8,"145":8,"146":8,"147":5,"148":8,"149":10,"150":9,"151":8,"152":3,"153":2,"154":7,"155":8,"156":5,"157":7,"158":1,"159":8,"160":7,"161":7,"162":2,"163":1,"164":9,"165":8,"166":9,"167":2,"168":5,"169":7,"170":7,"171":1,"172":3,"173":8,"174":2,"175":7,"176":7,"177":9,"178":10,"179":5,"180":3,"181":7,"182":7,"183":7,"184":5,"185":1,"186":7,"187":7,"188":7,"189":10,"190":7,"191":8,"192":8,"193":9,"194":9,"195":8,"196":2,"197":8,"198":5,"199":7,"200":1,"201":9,"202":7,"203":4,"204":8,"205":1,"206":5,"207":3,"208":4,"209":2,"210":8,"211":9,"212":8,"213":5,"214":5,"215":1,"216":9,"217":7,"218":4,"219":9,"220":6,"221":7,"222":8,"223":2,"224":7,"225":9,"226":3,"227":5,"228":1,"229":9,"230":9,"231":5,"232":2,"233":6,"234":2,"235":7,"236":2,"237":2,"238":8,"239":3,"240":8,"241":9,"242":7,"243":1,"244":6,"245":5,"246":3,"247":7,"248":6,"249":2,"250":7,"251":3,"252":9,"253":9,"254":7,"255":7,"256":10,"257":9,"258":1,"259":5,"260":9,"261":8,"262":8,"263":7,"264":7,"265":1,"266":7,"267":8,"268":4,"269":8,"270":8,"271":4,"272":2,"273":5,"274":1,"275":2,"276":7,"277":8,"278":2,"279":7,"280":2,"281":10,"282":8,"283":7,"284":8,"285":4,"286":9,"287":8,"288":4,"289":8,"290":3,"291":8,"292":7,"293":7,"294":7,"295":2,"296":9,"297":9,"298":9,"299":5,"300":9,"301":8,"302":7,"303":1,"304":9,"305":10,"306":2,"307":8,"308":8,"309":7,"310":4,"311":8,"312":9,"313":8,"314":6,"315":6,"316":8,"317":7,"318":2,"319":8,"320":9,"321":8,"322":8,"323":6,"324":8,"325":9,"326":1,"327":9,"328":5,"329":5,"330":8,"331":9,"332":7,"333":7,"334":2,"335":10,"336":4,"337":9,"338":6,"339":7,"340":8,"341":5,"342":8,"343":2,"344":8,"345":1,"346":7,"347":2,"348":9,"349":9,"350":7,"351":1,"352":1,"353":5,"354":7,"355":2,"356":9,"357":9,"358":9,"359":7,"360":8,"361":8,"362":8,"363":6,"364":2,"365":7,"366":10,"367":5,"368":9,"369":7,"370":9,"371":9,"372":1,"373":7,"374":10,"375":10,"376":7,"377":7,"378":3,"379":9,"380":3,"381":7,"382":8,"383":8,"384":6,"385":2,"386":8,"387":8,"388":8,"389":2,"390":8,"391":3,"392":9,"393":8,"394":9,"395":5,"396":8,"397":6,"398":6,"399":9,"400":9,"401":7,"402":2,"403":7,"404":8,"405":6,"406":1,"407":5,"408":9,"409":8,"410":8,"411":1,"412":5,"413":5,"414":9,"415":4,"416":2,"417":5,"418":9,"419":8,"420":1,"421":8,"422":7,"423":7,"424":1,"425":2,"426":9,"427":2,"428":10,"429":7,"430":7,"431":7,"432":5,"433":3,"434":6,"435":1,"436":4,"437":7,"438":7,"439":5,"440":3,"441":8,"442":2,"443":6,"444":8,"445":8,"446":2,"447":10,"448":2,"449":3,"450":7,"451":7,"452":1,"453":5,"454":3,"455":7,"456":9,"457":9,"458":1,"459":9,"460":2,"461":7,"462":7,"463":7,"464":7,"465":7,"466":5,"467":10,"468":9,"469":9,"470":7,"471":1,"472":9,"473":8,"474":7,"475":8,"476":8,"477":6,"478":8,"479":8,"480":8,"481":9,"482":9,"483":1,"484":5,"485":7,"486":8,"487":4,"488":2,"489":4,"490":3,"491":1,"492":10,"493":7,"494":10,"495":9,"496":2,"497":1,"498":4,"499":6,"500":7,"501":4,"502":8,"503":6,"504":8,"505":8,"506":5,"507":8,"508":2,"509":9,"510":8,"511":5,"512":2,"513":9,"514":9,"515":7,"516":5,"517":4,"518":9,"519":7,"520":6,"521":1,"522":8,"523":7,"524":7,"525":9,"526":9,"527":7,"528":8,"529":5,"530":2,"531":7,"532":4,"533":9,"534":8,"535":9,"536":8,"537":3,"538":8,"539":8,"540":9,"541":6,"542":6,"543":9,"544":3,"545":10,"546":4,"547":4,"548":5,"549":1,"550":4,"551":8,"552":10,"553":8,"554":7,"555":10,"556":7,"557":7,"558":8,"559":9,"560":8,"561":7,"562":6,"563":8,"564":5,"565":8,"566":2,"567":2,"568":7,"569":8,"570":5,"571":2,"572":7,"573":8,"574":9,"575":2,"576":7,"577":3,"578":8,"579":8,"580":7,"581":8,"582":7,"583":9,"584":9,"585":2,"586":8,"587":2,"588":5,"589":9,"590":7,"591":8,"592":9,"593":5,"594":5,"595":8,"596":2,"597":8,"598":6,"599":6,"600":3,"601":7,"602":8,"603":8,"604":10,"605":7,"606":6,"607":7,"608":8,"609":6,"610":5,"611":9,"612":8,"613":6,"614":8,"615":9,"616":7,"617":8,"618":6,"619":1,"620":5,"621":3,"622":7,"623":9,"624":3,"625":2,"626":2,"627":8,"628":9,"629":1,"630":3,"631":9,"632":7,"633":4,"634":5,"635":10,"636":7,"637":5,"638":8,"639":3,"640":8,"641":5,"642":7,"643":6,"644":2,"645":7,"646":4,"647":9,"648":10,"649":2,"650":9,"651":5,"652":4,"653":1,"654":2,"655":1,"656":7,"657":3,"658":5,"659":5,"660":10,"661":5,"662":8,"663":5,"664":8,"665":8,"666":9,"667":3,"668":4,"669":8,"670":7,"671":10,"672":3,"673":5,"674":8,"675":5,"676":9,"677":10,"678":7,"679":9,"680":2,"681":7,"682":2,"683":2,"684":8,"685":9,"686":8,"687":7,"688":8,"689":2,"690":9,"691":2,"692":9,"693":2,"694":8,"695":8,"696":7,"697":3,"698":2,"699":9,"700":9,"701":7,"702":7,"703":7,"704":8,"705":8,"706":7,"707":8,"708":9,"709":9,"710":4,"711":5,"712":8,"713":9,"714":2,"715":8,"716":7,"717":7,"718":5,"719":4,"720":8,"721":8,"722":6,"723":10,"724":9,"725":9,"726":1,"727":2,"728":7,"729":9,"730":7,"731":1,"732":2,"733":10,"734":9,"735":2,"736":9,"737":4,"738":8,"739":7,"740":6,"741":8,"742":4,"743":2,"744":7,"745":2,"746":9,"747":1,"748":4,"749":2,"750":2,"751":3,"752":10,"753":2,"754":8,"755":9,"756":8,"757":3,"758":8,"759":7,"760":8,"761":5,"762":7,"763":7,"764":10,"765":8,"766":7,"767":8,"768":10,"769":9,"770":10,"771":5,"772":2,"773":4,"774":8,"775":5,"776":7,"777":8,"778":2,"779":4,"780":4,"781":3,"782":8,"783":9,"784":6,"785":8,"786":5,"787":2,"788":9,"789":9,"790":10,"791":1,"792":1,"793":7,"794":1,"795":2,"796":9,"797":6,"798":2,"799":8,"800":7,"801":8,"802":7,"803":5,"804":4,"805":8,"806":3,"807":1,"808":7,"809":5,"810":2,"811":1,"812":5,"813":8,"814":1,"815":8,"816":2,"817":2,"818":9,"819":7,"820":7,"821":9,"822":2,"823":5,"824":3,"825":8,"826":10,"827":8,"828":8,"829":2,"830":7,"831":7,"832":7,"833":10,"834":2,"835":5,"836":8,"837":7,"838":7,"839":8,"840":5,"841":1,"842":9,"843":7,"844":8,"845":2,"846":7,"847":3,"848":9,"849":10,"850":3,"851":6,"852":8,"853":10,"854":4,"855":1,"856":6,"857":8,"858":7,"859":4,"860":7,"861":8,"862":7,"863":8,"864":5,"865":5,"866":8,"867":8,"868":10,"869":10,"870":3,"871":9,"872":7,"873":8,"874":7,"875":7,"876":7,"877":6,"878":9,"879":7,"880":8,"881":9,"882":7,"883":8,"884":3,"885":7,"886":8,"887":9,"888":8,"889":8,"890":6,"891":8,"892":5,"893":5,"894":5,"895":2,"896":2,"897":8,"898":8,"899":7,"900":8,"901":5,"902":4,"903":7,"904":9,"905":2,"906":8,"907":7,"908":5,"909":7,"910":5,"911":5,"912":8,"913":8,"914":8,"915":8,"916":4,"917":9,"918":7,"919":7,"920":2,"921":2,"922":8,"923":10,"924":5,"925":7,"926":9,"927":8,"928":8,"929":2,"930":9,"931":7,"932":8,"933":1,"934":7,"935":1,"936":8,"937":10,"938":8,"939":8,"940":10,"941":9,"942":4,"943":9,"944":7,"945":9,"946":5,"947":8,"948":8,"949":2,"950":2,"951":3,"952":8,"953":3,"954":6,"955":2,"956":7,"957":8,"958":5,"959":5,"960":6,"961":2,"962":7,"963":2,"964":6,"965":1,"966":3,"967":9,"968":7,"969":7,"970":5,"971":7,"972":2,"973":9,"974":8,"975":8,"976":2,"977":2,"978":9,"979":9,"980":6,"981":9,"982":3,"983":7,"984":4,"985":2,"986":8,"987":1,"988":8,"989":1,"990":8,"991":5,"992":2,"993":9,"994":6,"995":2,"996":8,"997":9,"998":4,"999":8,"1000":7,"1001":2,"1002":10,"1003":7,"1004":5,"1005":5,"1006":7,"1007":2,"1008":9,"1009":4,"1010":4,"1011":8,"1012":8,"1013":5,"1014":6,"1015":1,"1016":9,"1017":5,"1018":3,"1019":7,"1020":4,"1021":6,"1022":2,"1023":8,"1024":6,"1025":9,"1026":9,"1027":8,"1028":2,"1029":9,"1030":10,"1031":5,"1032":3,"1033":7,"1034":2,"1035":8,"1036":7,"1037":1,"1038":9,"1039":9,"1040":9,"1041":9,"1042":8,"1043":8,"1044":2,"1045":1,"1046":6,"1047":2,"1048":8,"1049":4,"1050":8,"1051":7,"1052":4,"1053":2,"1054":4,"1055":5,"1056":8,"1057":10,"1058":9,"1059":9,"1060":10,"1061":9,"1062":9,"1063":2,"1064":9,"1065":7,"1066":7,"1067":7,"1068":8,"1069":2,"1070":1,"1071":8,"1072":5,"1073":8,"1074":1,"1075":3,"1076":8,"1077":9,"1078":4,"1079":7,"1080":9,"1081":7,"1082":4,"1083":2,"1084":9,"1085":9,"1086":8,"1087":3,"1088":1,"1089":8,"1090":7,"1091":4,"1092":9,"1093":4,"1094":2,"1095":7,"1096":5,"1097":9,"1098":8,"1099":7,"1100":8,"1101":7,"1102":5,"1103":6,"1104":9,"1105":7,"1106":7,"1107":8,"1108":10,"1109":4,"1110":5,"1111":9,"1112":7,"1113":9,"1114":9,"1115":7,"1116":3,"1117":7,"1118":6,"1119":8,"1120":9,"1121":7,"1122":8,"1123":7,"1124":7,"1125":7,"1126":2,"1127":9,"1128":7,"1129":8,"1130":9,"1131":6,"1132":9,"1133":7,"1134":7,"1135":8,"1136":7,"1137":5,"1138":1,"1139":3,"1140":8,"1141":4,"1142":8,"1143":2,"1144":9,"1145":1,"1146":8,"1147":2,"1148":9,"1149":6,"1150":8,"1151":1,"1152":4,"1153":9,"1154":9,"1155":6,"1156":8,"1157":8,"1158":3,"1159":7,"1160":10,"1161":2,"1162":9,"1163":8,"1164":1,"1165":9,"1166":2,"1167":7,"1168":7,"1169":9,"1170":2,"1171":6,"1172":7,"1173":3,"1174":9,"1175":1,"1176":8,"1177":8,"1178":9,"1179":9,"1180":5,"1181":9,"1182":8,"1183":2,"1184":2,"1185":8,"1186":7,"1187":5,"1188":4,"1189":8,"1190":5,"1191":9,"1192":7,"1193":7,"1194":7,"1195":7,"1196":2,"1197":5,"1198":2,"1199":3,"1200":4,"1201":1,"1202":10,"1203":9,"1204":2,"1205":10,"1206":8,"1207":7,"1208":2,"1209":9,"1210":2,"1211":7,"1212":8,"1213":5,"1214":2,"1215":5,"1216":3,"1217":2,"1218":8,"1219":9,"1220":9,"1221":1,"1222":7,"1223":8,"1224":7,"1225":1,"1226":9,"1227":8,"1228":7,"1229":1,"1230":9,"1231":5,"1232":9,"1233":7,"1234":9,"1235":2,"1236":2,"1237":4,"1238":5,"1239":1,"1240":8,"1241":8,"1242":8,"1243":6,"1244":5,"1245":7,"1246":8,"1247":10,"1248":7,"1249":8,"1250":2,"1251":7,"1252":5,"1253":5,"1254":5,"1255":9,"1256":4,"1257":1,"1258":8,"1259":7,"1260":7,"1261":5,"1262":6,"1263":9,"1264":8,"1265":9,"1266":7,"1267":1,"1268":5,"1269":8,"1270":10,"1271":9,"1272":10,"1273":8,"1274":1,"1275":5,"1276":5,"1277":2,"1278":9,"1279":8,"1280":6,"1281":5,"1282":3,"1283":9,"1284":7,"1285":4,"1286":1,"1287":1,"1288":7,"1289":8,"1290":7,"1291":7,"1292":6,"1293":7,"1294":1,"1295":4,"1296":8,"1297":9,"1298":2,"1299":6,"1300":2,"1301":5,"1302":7,"1303":4,"1304":2,"1305":8,"1306":4,"1307":7,"1308":7,"1309":9,"1310":6,"1311":6,"1312":4,"1313":2,"1314":1,"1315":6,"1316":7,"1317":7,"1318":8,"1319":3,"1320":5,"1321":2,"1322":10,"1323":6,"1324":5,"1325":9,"1326":9,"1327":8,"1328":7,"1329":8,"1330":8,"1331":9,"1332":2,"1333":4,"1334":3,"1335":9,"1336":8,"1337":2,"1338":1,"1339":2,"1340":5,"1341":2,"1342":2,"1343":5,"1344":7,"1345":1,"1346":2,"1347":5,"1348":3,"1349":9,"1350":10,"1351":5,"1352":7,"1353":4,"1354":8,"1355":8,"1356":5,"1357":1,"1358":2,"1359":8,"1360":10,"1361":7,"1362":9,"1363":7,"1364":4,"1365":7,"1366":9,"1367":9,"1368":9,"1369":9,"1370":5,"1371":10,"1372":2,"1373":7,"1374":1,"1375":7,"1376":7,"1377":5,"1378":6,"1379":7,"1380":4,"1381":8,"1382":9,"1383":9,"1384":1,"1385":5,"1386":9,"1387":8,"1388":7,"1389":7,"1390":1,"1391":10,"1392":7,"1393":7,"1394":2,"1395":1,"1396":9,"1397":10,"1398":7,"1399":10,"1400":9,"1401":7,"1402":3,"1403":5,"1404":2,"1405":8,"1406":8,"1407":1,"1408":7,"1409":7,"1410":8,"1411":3,"1412":3,"1413":9,"1414":8,"1415":9,"1416":7,"1417":8,"1418":7,"1419":7,"1420":8,"1421":8,"1422":6,"1423":7,"1424":10,"1425":5,"1426":3,"1427":8,"1428":4,"1429":10,"1430":2,"1431":6,"1432":9,"1433":7,"1434":7,"1435":7,"1436":9,"1437":7,"1438":5,"1439":5,"1440":7,"1441":8,"1442":5,"1443":7,"1444":8,"1445":7,"1446":9,"1447":7,"1448":8,"1449":10,"1450":1,"1451":2,"1452":7,"1453":2,"1454":7,"1455":2,"1456":2,"1457":10,"1458":7,"1459":8,"1460":8,"1461":3,"1462":7,"1463":6,"1464":10,"1465":3,"1466":7,"1467":9,"1468":4,"1469":9,"1470":8,"1471":3,"1472":8,"1473":3,"1474":7,"1475":2,"1476":6,"1477":2,"1478":9,"1479":10,"1480":3,"1481":8,"1482":7,"1483":8,"1484":5,"1485":2,"1486":3,"1487":7,"1488":5,"1489":8,"1490":5,"1491":8,"1492":4,"1493":8,"1494":8,"1495":8,"1496":8,"1497":9,"1498":4,"1499":4,"1500":9,"1501":3,"1502":10,"1503":2,"1504":4,"1505":9,"1506":3,"1507":9,"1508":1,"1509":8,"1510":7,"1511":8,"1512":10,"1513":8,"1514":3,"1515":8,"1516":8,"1517":8,"1518":8,"1519":9,"1520":6,"1521":8,"1522":9,"1523":9,"1524":2,"1525":9,"1526":5,"1527":4,"1528":9,"1529":3,"1530":9,"1531":3,"1532":4,"1533":8,"1534":5,"1535":5,"1536":8,"1537":7,"1538":7,"1539":7,"1540":2,"1541":4,"1542":10,"1543":10,"1544":3,"1545":5,"1546":2,"1547":8,"1548":5,"1549":5,"1550":4,"1551":8,"1552":8,"1553":8,"1554":4,"1555":4,"1556":8,"1557":7,"1558":8,"1559":3,"1560":7,"1561":6,"1562":5,"1563":7,"1564":1,"1565":5,"1566":10,"1567":7,"1568":8,"1569":8,"1570":8,"1571":7,"1572":7,"1573":9,"1574":2,"1575":7,"1576":9,"1577":9,"1578":7,"1579":2,"1580":4,"1581":5,"1582":3,"1583":3,"1584":8,"1585":3,"1586":10,"1587":2,"1588":7,"1589":6,"1590":7,"1591":5,"1592":8,"1593":3,"1594":5,"1595":7,"1596":2,"1597":8,"1598":7,"1599":3,"1600":7,"1601":3,"1602":10,"1603":9,"1604":2,"1605":10,"1606":8,"1607":6,"1608":9,"1609":9,"1610":8,"1611":2,"1612":9,"1613":1,"1614":9,"1615":5,"1616":8,"1617":7,"1618":7,"1619":7,"1620":8,"1621":5,"1622":10,"1623":4,"1624":2,"1625":8,"1626":10,"1627":10,"1628":7,"1629":9,"1630":9,"1631":8,"1632":2,"1633":9,"1634":7,"1635":7,"1636":4,"1637":2,"1638":5,"1639":9,"1640":2,"1641":9,"1642":2,"1643":9,"1644":7,"1645":9,"1646":9,"1647":8,"1648":8,"1649":8,"1650":7,"1651":2,"1652":10,"1653":2,"1654":9,"1655":8,"1656":3,"1657":2,"1658":7,"1659":5,"1660":5,"1661":2,"1662":10,"1663":2,"1664":9,"1665":7,"1666":8,"1667":10,"1668":9,"1669":7,"1670":9,"1671":9,"1672":8,"1673":8,"1674":8,"1675":9,"1676":7,"1677":8,"1678":6,"1679":8,"1680":1,"1681":8,"1682":7,"1683":2,"1684":9,"1685":6,"1686":8,"1687":2,"1688":8,"1689":2,"1690":7,"1691":8,"1692":7,"1693":5,"1694":1,"1695":9,"1696":9,"1697":9,"1698":7,"1699":9,"1700":8,"1701":3,"1702":3,"1703":9,"1704":4,"1705":8,"1706":4,"1707":8,"1708":3,"1709":8,"1710":7,"1711":1,"1712":2,"1713":9,"1714":7,"1715":5,"1716":5,"1717":2,"1718":1,"1719":2,"1720":8,"1721":2,"1722":7,"1723":7,"1724":5,"1725":2,"1726":1,"1727":8,"1728":4,"1729":8,"1730":8,"1731":9,"1732":8,"1733":7,"1734":7,"1735":10,"1736":5,"1737":2,"1738":8,"1739":10,"1740":5,"1741":9,"1742":8,"1743":8,"1744":6,"1745":2,"1746":8,"1747":9,"1748":5,"1749":7,"1750":7,"1751":5,"1752":6,"1753":4,"1754":6,"1755":9,"1756":8,"1757":5,"1758":9,"1759":5,"1760":7,"1761":9,"1762":5,"1763":2,"1764":3,"1765":7,"1766":8,"1767":6,"1768":4,"1769":4,"1770":5,"1771":2,"1772":4,"1773":8,"1774":6,"1775":7,"1776":9,"1777":1,"1778":3,"1779":7,"1780":5,"1781":3,"1782":1,"1783":1,"1784":5,"1785":3,"1786":3,"1787":8,"1788":8,"1789":1,"1790":5,"1791":2,"1792":1,"1793":10,"1794":9,"1795":9,"1796":5,"1797":9,"1798":6,"1799":8,"1800":9,"1801":3,"1802":7,"1803":10,"1804":8,"1805":8,"1806":5,"1807":7,"1808":8,"1809":8,"1810":2,"1811":9,"1812":7,"1813":1,"1814":7,"1815":4,"1816":2,"1817":1,"1818":3,"1819":9,"1820":9,"1821":6,"1822":8,"1823":10,"1824":4,"1825":7,"1826":7,"1827":1,"1828":8,"1829":7,"1830":3,"1831":7,"1832":5,"1833":8,"1834":8,"1835":8,"1836":8,"1837":8,"1838":2,"1839":3,"1840":3,"1841":5,"1842":3,"1843":2,"1844":8,"1845":3,"1846":8,"1847":2,"1848":7,"1849":9,"1850":9,"1851":5,"1852":5,"1853":2,"1854":9,"1855":7,"1856":5,"1857":8,"1858":9,"1859":4,"1860":7,"1861":6,"1862":6,"1863":9,"1864":2,"1865":8,"1866":9,"1867":6,"1868":4,"1869":7,"1870":3,"1871":3,"1872":2,"1873":5,"1874":2,"1875":7,"1876":8,"1877":8,"1878":5,"1879":9,"1880":9,"1881":8,"1882":5,"1883":8,"1884":7,"1885":9,"1886":1,"1887":5,"1888":7,"1889":7,"1890":5,"1891":8,"1892":6,"1893":2,"1894":5,"1895":5,"1896":10,"1897":6,"1898":7,"1899":7,"1900":9,"1901":4,"1902":9,"1903":4,"1904":5,"1905":8,"1906":9,"1907":2,"1908":7,"1909":7,"1910":4,"1911":5,"1912":9,"1913":5,"1914":9,"1915":5,"1916":2,"1917":8,"1918":9,"1919":5,"1920":2,"1921":2,"1922":6,"1923":2,"1924":7,"1925":8,"1926":10,"1927":4,"1928":9,"1929":5,"1930":5,"1931":4,"1932":8,"1933":8,"1934":7,"1935":7,"1936":7,"1937":8,"1938":8,"1939":2,"1940":4,"1941":7,"1942":5,"1943":2,"1944":8,"1945":6,"1946":2,"1947":5,"1948":7,"1949":8,"1950":3,"1951":9,"1952":7,"1953":9,"1954":2,"1955":7,"1956":7,"1957":6,"1958":8,"1959":5,"1960":5,"1961":9,"1962":7,"1963":5,"1964":7,"1965":4,"1966":3,"1967":1,"1968":8,"1969":6,"1970":7,"1971":8,"1972":5,"1973":8,"1974":7,"1975":2,"1976":8,"1977":2,"1978":8,"1979":7,"1980":4,"1981":8,"1982":8,"1983":9,"1984":8,"1985":7,"1986":7,"1987":7,"1988":5,"1989":10,"1990":7,"1991":7,"1992":8,"1993":6,"1994":10,"1995":8,"1996":7,"1997":9,"1998":9,"1999":5,"2000":8,"2001":2,"2002":5,"2003":7,"2004":7,"2005":9,"2006":4,"2007":8,"2008":9,"2009":7,"2010":7,"2011":8,"2012":7,"2013":7,"2014":5,"2015":7,"2016":4,"2017":6,"2018":2,"2019":2,"2020":8,"2021":9,"2022":2,"2023":7,"2024":10,"2025":4,"2026":9,"2027":7,"2028":7,"2029":7,"2030":7,"2031":7,"2032":5,"2033":9,"2034":8,"2035":2,"2036":6,"2037":8,"2038":8,"2039":1,"2040":7,"2041":4,"2042":8,"2043":2,"2044":2,"2045":9,"2046":3,"2047":9,"2048":8,"2049":9,"2050":5,"2051":5,"2052":2,"2053":8,"2054":8,"2055":8,"2056":8,"2057":9,"2058":7,"2059":6,"2060":4,"2061":5,"2062":4,"2063":10,"2064":7,"2065":7,"2066":9,"2067":5,"2068":8,"2069":7,"2070":9,"2071":3,"2072":7,"2073":9,"2074":5,"2075":9,"2076":9,"2077":2,"2078":8,"2079":4,"2080":5,"2081":2,"2082":5,"2083":8,"2084":9,"2085":7,"2086":9,"2087":6,"2088":8,"2089":8,"2090":1,"2091":2,"2092":8,"2093":5,"2094":7,"2095":4,"2096":6,"2097":8,"2098":5,"2099":5,"2100":9,"2101":3,"2102":4,"2103":3,"2104":8,"2105":10,"2106":5,"2107":8,"2108":5,"2109":5,"2110":2,"2111":9,"2112":5,"2113":5,"2114":8,"2115":5,"2116":8,"2117":9,"2118":9,"2119":8,"2120":9,"2121":3,"2122":9,"2123":8,"2124":6,"2125":8,"2126":3,"2127":4,"2128":8,"2129":2,"2130":10,"2131":7,"2132":2,"2133":6,"2134":7,"2135":7,"2136":4,"2137":1,"2138":5,"2139":7,"2140":5,"2141":7,"2142":1,"2143":1,"2144":5,"2145":6,"2146":6,"2147":5,"2148":2,"2149":8,"2150":2,"2151":9,"2152":8,"2153":5,"2154":5,"2155":8,"2156":6,"2157":1,"2158":7,"2159":4,"2160":7,"2161":4,"2162":5,"2163":5,"2164":6,"2165":8,"2166":5,"2167":6,"2168":7,"2169":9,"2170":7,"2171":1,"2172":9,"2173":8,"2174":6,"2175":2,"2176":6,"2177":1,"2178":9,"2179":5,"2180":2,"2181":8,"2182":2,"2183":8,"2184":7,"2185":10,"2186":9,"2187":9,"2188":10,"2189":8,"2190":5,"2191":2,"2192":9,"2193":2,"2194":5,"2195":8,"2196":7,"2197":3,"2198":8,"2199":8,"2200":7,"2201":8,"2202":9,"2203":9,"2204":4,"2205":2,"2206":8,"2207":5,"2208":8,"2209":9,"2210":9,"2211":3,"2212":2,"2213":6,"2214":7,"2215":7,"2216":7,"2217":9,"2218":8,"2219":8,"2220":7,"2221":3,"2222":7,"2223":5,"2224":9,"2225":1,"2226":9,"2227":2,"2228":7,"2229":9,"2230":1,"2231":3,"2232":5,"2233":4,"2234":4,"2235":10,"2236":6,"2237":9,"2238":8,"2239":3,"2240":9,"2241":8,"2242":7,"2243":7,"2244":2,"2245":3,"2246":2,"2247":2,"2248":3,"2249":6,"2250":7,"2251":9,"2252":2,"2253":7,"2254":8,"2255":10,"2256":4,"2257":5,"2258":9,"2259":6,"2260":7,"2261":8,"2262":8,"2263":9,"2264":6,"2265":8,"2266":3,"2267":10,"2268":5,"2269":9,"2270":8,"2271":7,"2272":7,"2273":4,"2274":5,"2275":5,"2276":8,"2277":7,"2278":3,"2279":5,"2280":7,"2281":7,"2282":8,"2283":7,"2284":7,"2285":8,"2286":5,"2287":10,"2288":7,"2289":6,"2290":5,"2291":7,"2292":9,"2293":6,"2294":8,"2295":7,"2296":9,"2297":10,"2298":7,"2299":2,"2300":8,"2301":9,"2302":5,"2303":3,"2304":7,"2305":5,"2306":5,"2307":1,"2308":7,"2309":2,"2310":8,"2311":3,"2312":9,"2313":9,"2314":8,"2315":3,"2316":5,"2317":10,"2318":4,"2319":8,"2320":5,"2321":6,"2322":9,"2323":6,"2324":5,"2325":7,"2326":4,"2327":7,"2328":9,"2329":8,"2330":9,"2331":9,"2332":8,"2333":8,"2334":4,"2335":2,"2336":8,"2337":9,"2338":9,"2339":1,"2340":5,"2341":9,"2342":5,"2343":9,"2344":7,"2345":9,"2346":6,"2347":6,"2348":7,"2349":1,"2350":7,"2351":2,"2352":8,"2353":7,"2354":6,"2355":8,"2356":7,"2357":3,"2358":5,"2359":2,"2360":8,"2361":8,"2362":1,"2363":8,"2364":5,"2365":8,"2366":8,"2367":7,"2368":10,"2369":9,"2370":2,"2371":9,"2372":2,"2373":3,"2374":9,"2375":9,"2376":8,"2377":8,"2378":7,"2379":2,"2380":7,"2381":4,"2382":7,"2383":8,"2384":5,"2385":6,"2386":8,"2387":8,"2388":5,"2389":8,"2390":7,"2391":5,"2392":7,"2393":1,"2394":9,"2395":2,"2396":1,"2397":8,"2398":2,"2399":7,"2400":8,"2401":3,"2402":4,"2403":8,"2404":1,"2405":5,"2406":5,"2407":1,"2408":2,"2409":8,"2410":10,"2411":6,"2412":3,"2413":7,"2414":4,"2415":7,"2416":1,"2417":4,"2418":7,"2419":2,"2420":7,"2421":3,"2422":7,"2423":7,"2424":4,"2425":7,"2426":8,"2427":9,"2428":5,"2429":3,"2430":7,"2431":8,"2432":1,"2433":2,"2434":8,"2435":5,"2436":7,"2437":7,"2438":9,"2439":8,"2440":7,"2441":7,"2442":1,"2443":3,"2444":7,"2445":9,"2446":1,"2447":7,"2448":5,"2449":8,"2450":9,"2451":6,"2452":9,"2453":7,"2454":1,"2455":7,"2456":7,"2457":7,"2458":10,"2459":7,"2460":7,"2461":9,"2462":7,"2463":5,"2464":8,"2465":2,"2466":7,"2467":9,"2468":2,"2469":8,"2470":10,"2471":5,"2472":2,"2473":9,"2474":9,"2475":8,"2476":8,"2477":7,"2478":4,"2479":6,"2480":1,"2481":8,"2482":9,"2483":2,"2484":6,"2485":7,"2486":8,"2487":6,"2488":9,"2489":7,"2490":5,"2491":9,"2492":9,"2493":1,"2494":7,"2495":7,"2496":7,"2497":9,"2498":8,"2499":9,"2500":2,"2501":6,"2502":9,"2503":7,"2504":2,"2505":8,"2506":1,"2507":9,"2508":2,"2509":5,"2510":9,"2511":8,"2512":9,"2513":7,"2514":7,"2515":5,"2516":9,"2517":7,"2518":8,"2519":5,"2520":7,"2521":7,"2522":7,"2523":8,"2524":7,"2525":8,"2526":8,"2527":7,"2528":8,"2529":9,"2530":8,"2531":8,"2532":8,"2533":8,"2534":1,"2535":9,"2536":8,"2537":9,"2538":6,"2539":8,"2540":8,"2541":7,"2542":9,"2543":1,"2544":1,"2545":7,"2546":4,"2547":9,"2548":10,"2549":7,"2550":8,"2551":9,"2552":4,"2553":9,"2554":5,"2555":8,"2556":2,"2557":5,"2558":9,"2559":4,"2560":8,"2561":7,"2562":1,"2563":9,"2564":6,"2565":7,"2566":7,"2567":3,"2568":9,"2569":7,"2570":7,"2571":5,"2572":9,"2573":7,"2574":8,"2575":8,"2576":9,"2577":7,"2578":3,"2579":5,"2580":7,"2581":9,"2582":8,"2583":4,"2584":6,"2585":7,"2586":9,"2587":7,"2588":10,"2589":4,"2590":8,"2591":2,"2592":7,"2593":8,"2594":7,"2595":2,"2596":8,"2597":2,"2598":10,"2599":5,"2600":6,"2601":5,"2602":2,"2603":9,"2604":7,"2605":1,"2606":5,"2607":7,"2608":7,"2609":10,"2610":6,"2611":10,"2612":8,"2613":9,"2614":6,"2615":8,"2616":8,"2617":1,"2618":1,"2619":5,"2620":2,"2621":3,"2622":9,"2623":1,"2624":7,"2625":8,"2626":8,"2627":9,"2628":7,"2629":9,"2630":9,"2631":7,"2632":7,"2633":8,"2634":7,"2635":1,"2636":8,"2637":6,"2638":3,"2639":2,"2640":2,"2641":9,"2642":7,"2643":6,"2644":5,"2645":1,"2646":2,"2647":5,"2648":8,"2649":6,"2650":9,"2651":9,"2652":2,"2653":5,"2654":7,"2655":8,"2656":9,"2657":10,"2658":4,"2659":7,"2660":6,"2661":5,"2662":8,"2663":2,"2664":9,"2665":8,"2666":7,"2667":5,"2668":9,"2669":9,"2670":1,"2671":4,"2672":2,"2673":8,"2674":3,"2675":8,"2676":2,"2677":1,"2678":9,"2679":8,"2680":8,"2681":8,"2682":8,"2683":2,"2684":7,"2685":8,"2686":7,"2687":3,"2688":7,"2689":8,"2690":2,"2691":2,"2692":8,"2693":5,"2694":1,"2695":6,"2696":9,"2697":8,"2698":7,"2699":8,"2700":8,"2701":8,"2702":7,"2703":5,"2704":5,"2705":2,"2706":8,"2707":7,"2708":5,"2709":1,"2710":6,"2711":7,"2712":4,"2713":6,"2714":7,"2715":7,"2716":8,"2717":3,"2718":8,"2719":10,"2720":8,"2721":8,"2722":2,"2723":10,"2724":9,"2725":9,"2726":9,"2727":2,"2728":7,"2729":8,"2730":8,"2731":7,"2732":4,"2733":2,"2734":8,"2735":5,"2736":8,"2737":7,"2738":9,"2739":9,"2740":3,"2741":7,"2742":2,"2743":4,"2744":7,"2745":7,"2746":7,"2747":8,"2748":8,"2749":8,"2750":7,"2751":7,"2752":7,"2753":8,"2754":3,"2755":8,"2756":7,"2757":4,"2758":7,"2759":2,"2760":9,"2761":9,"2762":10,"2763":2,"2764":4,"2765":7,"2766":10,"2767":7,"2768":10,"2769":8,"2770":8,"2771":7,"2772":8,"2773":2,"2774":7,"2775":5,"2776":9,"2777":7,"2778":9,"2779":10,"2780":1,"2781":7,"2782":1,"2783":9,"2784":8,"2785":8,"2786":5,"2787":8,"2788":10,"2789":2,"2790":3,"2791":1,"2792":5,"2793":5,"2794":2,"2795":4,"2796":5,"2797":1,"2798":7,"2799":3,"2800":9,"2801":5,"2802":9,"2803":7,"2804":2,"2805":5,"2806":8,"2807":6,"2808":8,"2809":4,"2810":8,"2811":7,"2812":9,"2813":9,"2814":4,"2815":7,"2816":9,"2817":8,"2818":9,"2819":9,"2820":8,"2821":8,"2822":1,"2823":8,"2824":5,"2825":8,"2826":7,"2827":7,"2828":6,"2829":8,"2830":9,"2831":6,"2832":6,"2833":4,"2834":9,"2835":7,"2836":9,"2837":2,"2838":4,"2839":5,"2840":9,"2841":8,"2842":8,"2843":8,"2844":9,"2845":9,"2846":3,"2847":8,"2848":7,"2849":8,"2850":9,"2851":7,"2852":8,"2853":7,"2854":10,"2855":7,"2856":7,"2857":7,"2858":6,"2859":5,"2860":9,"2861":8,"2862":1,"2863":1,"2864":4,"2865":7,"2866":3,"2867":3,"2868":8,"2869":9,"2870":4,"2871":10,"2872":9,"2873":9,"2874":3,"2875":2,"2876":6,"2877":7,"2878":1,"2879":9,"2880":7,"2881":8,"2882":9,"2883":2,"2884":5,"2885":2,"2886":6,"2887":8,"2888":9,"2889":9,"2890":9,"2891":10,"2892":4,"2893":7,"2894":4,"2895":9,"2896":3,"2897":9,"2898":10,"2899":7,"2900":6,"2901":5,"2902":3,"2903":7,"2904":7,"2905":8,"2906":6,"2907":7,"2908":7,"2909":7,"2910":1,"2911":4,"2912":7,"2913":9,"2914":5,"2915":7,"2916":8,"2917":7,"2918":9,"2919":5,"2920":2,"2921":6,"2922":2,"2923":8,"2924":3,"2925":7,"2926":5,"2927":2,"2928":5,"2929":10,"2930":5,"2931":9,"2932":7,"2933":9,"2934":6,"2935":8,"2936":7,"2937":8,"2938":7,"2939":10,"2940":8,"2941":9,"2942":9,"2943":2,"2944":8,"2945":7,"2946":1,"2947":8,"2948":5,"2949":2,"2950":7,"2951":7,"2952":3,"2953":7,"2954":1,"2955":9,"2956":2,"2957":1,"2958":2,"2959":7,"2960":7,"2961":6,"2962":8,"2963":6,"2964":6,"2965":5,"2966":8,"2967":6,"2968":8,"2969":7,"2970":8,"2971":5,"2972":3,"2973":4,"2974":10,"2975":7,"2976":2,"2977":7,"2978":7,"2979":9,"2980":2,"2981":2,"2982":8,"2983":3,"2984":7,"2985":5,"2986":7,"2987":7,"2988":7,"2989":8,"2990":9,"2991":4,"2992":5,"2993":9,"2994":10,"2995":8,"2996":5,"2997":5,"2998":8,"2999":10,"3000":3,"3001":1,"3002":8,"3003":8,"3004":7,"3005":2,"3006":8,"3007":2,"3008":8,"3009":4,"3010":2,"3011":2,"3012":8,"3013":9,"3014":7,"3015":8,"3016":9,"3017":8,"3018":9,"3019":6,"3020":7,"3021":10,"3022":2,"3023":5,"3024":8,"3025":7,"3026":3,"3027":8,"3028":8,"3029":5,"3030":2,"3031":7,"3032":7,"3033":8,"3034":7,"3035":7,"3036":7,"3037":8,"3038":9,"3039":2,"3040":2,"3041":7,"3042":9,"3043":7,"3044":9,"3045":8,"3046":10,"3047":9,"3048":1,"3049":9,"3050":9,"3051":2,"3052":1,"3053":4,"3054":1,"3055":4,"3056":9,"3057":9,"3058":7,"3059":8,"3060":7,"3061":8,"3062":10,"3063":2,"3064":7,"3065":5,"3066":7,"3067":6,"3068":5,"3069":2,"3070":8,"3071":7,"3072":5,"3073":7,"3074":1,"3075":9,"3076":4,"3077":9,"3078":10,"3079":4,"3080":7,"3081":8,"3082":2,"3083":7,"3084":9,"3085":5,"3086":3,"3087":7,"3088":4,"3089":9,"3090":9,"3091":8,"3092":3,"3093":9,"3094":5,"3095":8,"3096":8,"3097":8,"3098":10,"3099":8,"3100":9,"3101":9,"3102":8,"3103":8,"3104":9,"3105":2,"3106":10,"3107":9,"3108":1,"3109":4,"3110":6,"3111":8,"3112":7,"3113":6,"3114":3,"3115":8,"3116":2,"3117":4,"3118":5,"3119":5,"3120":9,"3121":5,"3122":2,"3123":9,"3124":2,"3125":2,"3126":8,"3127":7,"3128":9,"3129":2,"3130":2,"3131":5,"3132":8,"3133":8,"3134":8,"3135":2,"3136":3,"3137":8,"3138":8,"3139":4,"3140":4,"3141":6,"3142":10,"3143":2,"3144":2,"3145":2,"3146":1,"3147":9,"3148":5,"3149":10,"3150":8,"3151":8,"3152":10,"3153":1,"3154":8,"3155":9,"3156":2,"3157":5,"3158":6,"3159":6,"3160":8,"3161":2,"3162":7,"3163":6,"3164":2,"3165":7,"3166":7,"3167":8,"3168":2,"3169":4,"3170":8,"3171":8,"3172":4,"3173":1,"3174":9,"3175":8,"3176":6,"3177":7,"3178":10,"3179":7,"3180":9,"3181":7,"3182":3,"3183":8,"3184":10,"3185":9,"3186":9,"3187":2,"3188":4,"3189":8,"3190":1,"3191":9,"3192":7,"3193":7,"3194":2,"3195":4,"3196":6,"3197":4,"3198":2,"3199":3,"3200":7,"3201":8,"3202":9,"3203":4,"3204":9,"3205":8,"3206":1,"3207":7,"3208":8,"3209":9,"3210":6,"3211":7,"3212":10,"3213":8,"3214":3,"3215":8,"3216":8,"3217":7,"3218":7,"3219":5,"3220":1,"3221":4,"3222":7,"3223":10,"3224":5,"3225":8,"3226":7,"3227":8,"3228":7,"3229":7,"3230":7,"3231":2,"3232":8,"3233":3,"3234":9,"3235":6,"3236":8,"3237":8,"3238":8,"3239":3,"3240":10,"3241":5,"3242":10,"3243":8,"3244":9,"3245":5,"3246":8,"3247":5,"3248":2,"3249":8,"3250":9,"3251":2,"3252":7,"3253":3,"3254":9,"3255":8,"3256":7,"3257":1,"3258":7,"3259":10,"3260":9,"3261":8,"3262":9,"3263":8,"3264":10,"3265":5,"3266":3,"3267":5,"3268":7,"3269":2,"3270":8,"3271":5,"3272":2,"3273":4,"3274":8,"3275":8,"3276":5,"3277":8,"3278":8,"3279":5,"3280":8,"3281":10,"3282":7,"3283":5,"3284":2,"3285":7,"3286":5,"3287":7,"3288":8,"3289":7,"3290":7,"3291":5,"3292":9,"3293":8,"3294":5,"3295":8,"3296":7,"3297":7,"3298":6,"3299":7,"3300":7,"3301":2,"3302":9,"3303":8,"3304":8,"3305":8,"3306":8,"3307":8,"3308":6,"3309":8,"3310":9,"3311":9,"3312":5,"3313":2,"3314":9,"3315":7,"3316":7,"3317":7,"3318":7,"3319":5,"3320":2,"3321":9,"3322":8,"3323":8,"3324":5,"3325":10,"3326":1,"3327":2,"3328":5,"3329":5,"3330":7,"3331":8,"3332":9,"3333":10,"3334":8,"3335":8,"3336":7,"3337":7,"3338":8,"3339":7,"3340":7,"3341":5,"3342":2,"3343":1,"3344":7,"3345":8,"3346":9,"3347":7,"3348":7,"3349":1,"3350":4,"3351":6,"3352":7,"3353":9,"3354":2,"3355":4,"3356":8,"3357":8,"3358":10,"3359":7,"3360":9,"3361":2,"3362":7,"3363":7,"3364":10,"3365":5,"3366":8,"3367":9,"3368":6,"3369":9,"3370":7,"3371":9,"3372":9,"3373":10,"3374":5,"3375":7,"3376":8,"3377":4,"3378":7,"3379":5,"3380":8,"3381":8,"3382":6,"3383":4,"3384":7,"3385":9,"3386":8,"3387":8,"3388":7,"3389":9,"3390":8,"3391":2,"3392":9,"3393":8,"3394":7,"3395":8,"3396":1,"3397":5,"3398":6,"3399":10,"3400":8,"3401":5,"3402":9,"3403":9,"3404":5,"3405":8,"3406":7,"3407":10,"3408":7,"3409":2,"3410":7,"3411":4,"3412":6,"3413":2,"3414":3,"3415":7,"3416":7,"3417":9,"3418":9,"3419":1,"3420":8,"3421":8,"3422":8,"3423":7,"3424":5,"3425":8,"3426":9,"3427":2,"3428":4,"3429":3,"3430":7,"3431":7,"3432":2,"3433":9,"3434":8,"3435":3,"3436":5,"3437":9,"3438":10,"3439":8,"3440":9,"3441":7,"3442":2,"3443":2,"3444":9,"3445":8,"3446":5,"3447":8,"3448":4,"3449":5,"3450":2,"3451":3,"3452":7,"3453":7,"3454":7,"3455":7,"3456":8,"3457":6,"3458":2,"3459":6,"3460":5,"3461":9,"3462":9,"3463":8,"3464":7,"3465":4,"3466":7,"3467":5,"3468":3,"3469":5,"3470":2,"3471":9,"3472":9,"3473":8,"3474":9,"3475":7,"3476":7,"3477":8,"3478":7,"3479":3,"3480":8,"3481":7,"3482":8,"3483":4,"3484":7,"3485":9,"3486":1,"3487":8,"3488":9,"3489":8,"3490":1,"3491":8,"3492":1,"3493":1,"3494":8,"3495":7,"3496":7,"3497":5,"3498":6,"3499":8,"3500":9,"3501":8,"3502":6,"3503":8,"3504":2,"3505":9,"3506":4,"3507":5,"3508":2,"3509":10,"3510":2,"3511":10,"3512":9,"3513":5,"3514":7,"3515":9,"3516":7,"3517":8,"3518":7,"3519":6,"3520":1,"3521":9,"3522":8,"3523":5,"3524":2,"3525":6,"3526":2,"3527":9,"3528":5,"3529":1,"3530":9,"3531":7,"3532":3,"3533":9,"3534":3,"3535":1,"3536":10,"3537":4,"3538":8,"3539":9,"3540":7,"3541":6,"3542":10,"3543":8,"3544":10,"3545":8,"3546":1,"3547":8,"3548":9,"3549":9,"3550":8,"3551":5,"3552":2,"3553":5,"3554":4,"3555":7,"3556":9,"3557":7,"3558":9,"3559":6,"3560":4,"3561":5,"3562":5,"3563":5,"3564":9,"3565":8,"3566":2,"3567":7,"3568":2,"3569":5,"3570":5,"3571":8,"3572":3,"3573":7,"3574":4,"3575":8,"3576":5,"3577":8,"3578":7,"3579":8,"3580":5,"3581":6,"3582":4,"3583":8,"3584":10,"3585":5,"3586":7,"3587":2,"3588":5,"3589":5,"3590":5,"3591":9,"3592":6,"3593":4,"3594":10,"3595":7,"3596":7,"3597":3,"3598":8,"3599":8,"3600":5,"3601":7,"3602":2,"3603":6,"3604":7,"3605":9,"3606":9,"3607":5,"3608":8,"3609":9,"3610":7,"3611":3,"3612":8,"3613":10,"3614":5,"3615":8,"3616":7,"3617":8,"3618":5,"3619":7,"3620":9,"3621":7,"3622":8,"3623":8,"3624":6,"3625":7,"3626":5,"3627":8,"3628":9,"3629":6,"3630":8,"3631":3,"3632":6,"3633":8,"3634":8,"3635":9,"3636":7,"3637":9,"3638":7,"3639":5,"3640":1,"3641":9,"3642":10,"3643":3,"3644":2,"3645":6,"3646":2,"3647":7,"3648":8,"3649":9,"3650":7,"3651":7,"3652":3,"3653":10,"3654":6,"3655":10,"3656":1,"3657":9,"3658":3,"3659":8,"3660":5,"3661":7,"3662":3,"3663":8,"3664":7,"3665":9,"3666":3,"3667":8,"3668":2,"3669":10,"3670":9,"3671":1,"3672":7,"3673":9,"3674":8,"3675":8,"3676":10,"3677":5,"3678":8,"3679":9,"3680":1,"3681":7,"3682":1,"3683":8,"3684":9,"3685":10,"3686":4,"3687":3,"3688":1,"3689":9,"3690":10,"3691":4,"3692":8,"3693":10,"3694":10,"3695":9,"3696":8,"3697":7,"3698":7,"3699":9,"3700":9,"3701":9,"3702":4,"3703":9,"3704":8,"3705":4,"3706":2,"3707":8,"3708":5,"3709":5,"3710":5,"3711":9,"3712":8,"3713":4,"3714":7,"3715":9,"3716":7,"3717":7,"3718":8,"3719":9,"3720":4,"3721":7,"3722":8,"3723":4,"3724":9,"3725":5,"3726":9,"3727":7,"3728":3,"3729":7,"3730":2,"3731":7,"3732":8,"3733":8,"3734":2,"3735":9,"3736":7,"3737":5,"3738":2,"3739":5,"3740":3,"3741":5,"3742":8,"3743":8,"3744":7,"3745":8,"3746":5,"3747":10,"3748":10,"3749":7,"3750":10,"3751":8,"3752":7,"3753":7,"3754":2,"3755":9,"3756":8,"3757":5,"3758":9,"3759":9,"3760":7,"3761":10,"3762":9,"3763":2,"3764":8,"3765":7,"3766":3,"3767":2,"3768":5,"3769":8,"3770":4,"3771":10,"3772":1,"3773":9,"3774":4,"3775":7,"3776":10,"3777":2,"3778":9,"3779":9,"3780":7,"3781":6,"3782":3,"3783":5,"3784":7,"3785":7,"3786":2,"3787":7,"3788":7,"3789":8,"3790":8,"3791":2,"3792":7,"3793":4,"3794":9,"3795":3,"3796":8,"3797":9,"3798":2,"3799":7,"3800":9,"3801":3,"3802":7,"3803":4,"3804":10,"3805":9,"3806":1,"3807":9,"3808":8,"3809":7,"3810":8,"3811":3,"3812":10,"3813":7,"3814":7,"3815":2,"3816":9,"3817":7,"3818":8,"3819":9,"3820":5,"3821":6,"3822":7,"3823":2,"3824":7,"3825":5,"3826":6,"3827":10,"3828":7,"3829":9,"3830":8,"3831":9,"3832":2,"3833":2,"3834":6,"3835":5,"3836":2,"3837":4,"3838":9,"3839":7,"3840":2,"3841":8,"3842":10,"3843":9,"3844":8,"3845":3,"3846":8,"3847":3,"3848":7,"3849":2,"3850":8,"3851":1,"3852":9,"3853":5,"3854":7,"3855":2,"3856":4,"3857":9,"3858":9,"3859":8,"3860":8,"3861":7,"3862":8,"3863":9,"3864":8,"3865":9,"3866":8,"3867":8,"3868":8,"3869":8,"3870":1,"3871":2,"3872":9,"3873":8,"3874":8,"3875":7,"3876":7,"3877":9,"3878":8,"3879":10,"3880":1,"3881":3,"3882":7,"3883":5,"3884":8,"3885":1,"3886":4,"3887":7,"3888":1,"3889":7,"3890":9,"3891":7,"3892":5,"3893":2,"3894":8,"3895":9,"3896":2,"3897":9,"3898":2,"3899":10,"3900":1,"3901":1,"3902":7,"3903":8,"3904":7,"3905":7,"3906":7,"3907":7,"3908":2,"3909":8,"3910":2,"3911":8,"3912":8,"3913":10,"3914":9,"3915":1,"3916":7,"3917":8,"3918":7,"3919":8,"3920":5,"3921":9,"3922":6,"3923":4,"3924":2,"3925":8,"3926":7,"3927":1,"3928":1,"3929":5,"3930":8,"3931":10,"3932":8,"3933":1,"3934":7,"3935":5,"3936":8,"3937":8,"3938":7,"3939":8,"3940":8,"3941":6,"3942":9,"3943":2,"3944":9,"3945":10,"3946":9,"3947":8,"3948":3,"3949":8,"3950":9,"3951":5,"3952":7,"3953":7,"3954":7,"3955":7,"3956":7,"3957":9,"3958":8,"3959":8,"3960":7,"3961":9,"3962":9,"3963":10,"3964":7,"3965":10,"3966":4,"3967":7,"3968":5,"3969":8,"3970":8,"3971":3,"3972":9,"3973":1,"3974":9,"3975":5,"3976":10,"3977":8,"3978":2,"3979":7,"3980":2,"3981":9,"3982":9,"3983":10,"3984":10,"3985":10,"3986":2,"3987":5,"3988":1,"3989":2,"3990":9,"3991":6,"3992":3,"3993":6,"3994":2,"3995":3,"3996":7,"3997":8,"3998":8,"3999":9,"4000":7,"4001":4,"4002":9,"4003":3,"4004":2,"4005":9,"4006":3,"4007":7,"4008":9,"4009":9,"4010":7,"4011":9,"4012":2,"4013":4,"4014":1,"4015":7,"4016":7,"4017":8,"4018":7,"4019":3,"4020":7,"4021":8,"4022":7,"4023":1,"4024":4,"4025":7,"4026":8,"4027":8,"4028":9,"4029":5,"4030":3,"4031":5,"4032":10,"4033":8,"4034":7,"4035":8,"4036":9,"4037":6,"4038":8,"4039":4,"4040":2,"4041":2,"4042":1,"4043":8,"4044":5,"4045":5,"4046":9,"4047":7,"4048":7,"4049":2,"4050":7,"4051":8,"4052":2,"4053":2,"4054":1,"4055":7,"4056":5,"4057":8,"4058":8,"4059":9,"4060":10,"4061":7,"4062":2,"4063":1,"4064":2,"4065":8,"4066":9,"4067":8,"4068":6,"4069":5,"4070":10,"4071":3,"4072":8,"4073":7,"4074":7,"4075":9,"4076":7,"4077":7,"4078":6,"4079":9,"4080":7,"4081":2,"4082":2,"4083":8,"4084":9,"4085":2,"4086":1,"4087":8,"4088":2,"4089":7,"4090":8,"4091":10,"4092":2,"4093":8,"4094":9,"4095":5,"4096":9,"4097":8,"4098":6,"4099":6,"4100":2,"4101":7,"4102":1,"4103":8,"4104":7,"4105":1,"4106":9,"4107":7,"4108":6,"4109":7,"4110":7,"4111":2,"4112":7,"4113":9,"4114":4,"4115":7,"4116":9,"4117":9,"4118":8,"4119":2,"4120":3,"4121":8,"4122":7,"4123":2,"4124":10,"4125":1,"4126":9,"4127":1,"4128":9,"4129":8,"4130":9,"4131":2,"4132":8,"4133":8,"4134":4,"4135":6,"4136":9,"4137":9,"4138":8,"4139":5,"4140":1,"4141":1,"4142":8,"4143":2,"4144":10,"4145":5,"4146":8,"4147":8,"4148":8,"4149":6,"4150":6,"4151":8,"4152":5,"4153":7,"4154":8,"4155":8,"4156":5,"4157":8,"4158":7,"4159":7,"4160":8,"4161":7,"4162":8,"4163":10,"4164":2,"4165":7,"4166":10,"4167":9,"4168":8,"4169":8,"4170":7,"4171":2,"4172":7,"4173":2,"4174":2,"4175":2,"4176":2,"4177":4,"4178":7,"4179":2,"4180":8,"4181":9,"4182":4,"4183":7,"4184":5,"4185":3,"4186":7,"4187":9,"4188":9,"4189":8,"4190":8,"4191":8,"4192":8,"4193":5,"4194":9,"4195":9,"4196":5,"4197":8,"4198":2,"4199":7,"4200":7,"4201":10,"4202":7,"4203":7,"4204":9,"4205":9,"4206":9,"4207":2,"4208":3,"4209":2,"4210":9,"4211":1,"4212":2,"4213":9,"4214":3,"4215":8,"4216":7,"4217":7,"4218":5,"4219":8,"4220":3,"4221":8,"4222":8,"4223":9,"4224":3,"4225":2,"4226":8,"4227":8,"4228":2,"4229":9,"4230":5,"4231":10,"4232":9,"4233":4,"4234":5,"4235":5,"4236":9,"4237":7,"4238":4,"4239":2,"4240":10,"4241":8,"4242":8,"4243":3,"4244":8,"4245":3,"4246":1,"4247":8,"4248":9,"4249":5,"4250":2,"4251":10,"4252":5,"4253":2,"4254":8,"4255":7,"4256":9,"4257":6,"4258":3,"4259":2,"4260":9,"4261":7,"4262":2,"4263":8,"4264":8,"4265":10,"4266":7,"4267":7,"4268":5,"4269":2,"4270":1,"4271":5,"4272":5,"4273":7,"4274":7,"4275":7,"4276":7,"4277":9,"4278":8,"4279":3,"4280":8,"4281":8,"4282":8,"4283":7,"4284":1,"4285":9,"4286":9,"4287":8,"4288":5,"4289":9,"4290":8,"4291":7,"4292":9,"4293":10,"4294":2,"4295":9,"4296":7,"4297":8,"4298":1,"4299":4,"4300":4,"4301":7,"4302":9,"4303":8,"4304":7,"4305":7,"4306":8,"4307":7,"4308":8,"4309":6,"4310":6,"4311":4,"4312":8,"4313":5,"4314":1,"4315":7,"4316":5,"4317":7,"4318":7,"4319":7,"4320":9,"4321":10,"4322":2,"4323":8,"4324":6,"4325":9,"4326":8,"4327":9,"4328":4,"4329":7,"4330":7,"4331":9,"4332":3,"4333":6,"4334":6,"4335":7,"4336":2,"4337":9,"4338":9,"4339":2,"4340":8,"4341":7,"4342":4,"4343":8,"4344":2,"4345":2,"4346":8,"4347":4,"4348":6,"4349":9,"4350":7,"4351":7,"4352":5,"4353":4,"4354":9,"4355":7,"4356":3,"4357":10,"4358":8,"4359":3,"4360":1,"4361":8,"4362":2,"4363":6,"4364":5,"4365":8,"4366":1,"4367":7,"4368":8,"4369":2,"4370":1,"4371":7,"4372":8,"4373":3,"4374":7,"4375":5,"4376":6,"4377":7,"4378":8,"4379":7,"4380":3,"4381":3,"4382":2,"4383":7,"4384":5,"4385":7,"4386":7,"4387":7,"4388":4,"4389":8,"4390":8,"4391":9,"4392":8,"4393":8,"4394":9,"4395":8,"4396":10,"4397":8,"4398":8,"4399":6,"4400":2,"4401":3,"4402":9,"4403":3,"4404":8,"4405":1,"4406":8,"4407":2,"4408":6,"4409":7,"4410":8,"4411":8,"4412":8,"4413":8,"4414":9,"4415":5,"4416":7,"4417":9,"4418":5,"4419":7,"4420":4,"4421":8,"4422":8,"4423":10,"4424":8,"4425":5,"4426":8,"4427":5,"4428":6,"4429":5,"4430":8,"4431":9,"4432":6,"4433":9,"4434":6,"4435":9,"4436":9,"4437":5,"4438":9,"4439":10,"4440":8,"4441":7,"4442":2,"4443":8,"4444":7,"4445":7,"4446":8,"4447":8,"4448":7,"4449":7,"4450":8,"4451":6,"4452":6,"4453":9,"4454":9,"4455":9,"4456":5,"4457":2,"4458":8,"4459":1,"4460":8,"4461":2,"4462":8,"4463":1,"4464":7,"4465":10,"4466":7,"4467":8,"4468":4,"4469":7,"4470":9,"4471":2,"4472":4,"4473":3,"4474":7,"4475":10,"4476":2,"4477":8,"4478":8,"4479":8,"4480":7,"4481":9,"4482":3,"4483":4,"4484":7,"4485":4,"4486":9,"4487":7,"4488":3,"4489":8,"4490":7,"4491":6,"4492":8,"4493":7,"4494":5,"4495":8,"4496":9,"4497":4,"4498":5,"4499":8,"4500":1,"4501":7,"4502":2,"4503":3,"4504":7,"4505":2,"4506":8,"4507":9,"4508":4,"4509":8,"4510":9,"4511":8,"4512":3,"4513":5,"4514":5,"4515":2,"4516":7,"4517":10,"4518":9,"4519":8,"4520":2,"4521":8,"4522":5,"4523":7,"4524":7,"4525":8,"4526":2,"4527":5,"4528":8,"4529":4,"4530":7,"4531":6,"4532":8,"4533":2,"4534":5,"4535":3,"4536":8,"4537":9,"4538":8,"4539":7,"4540":4,"4541":5,"4542":5,"4543":7,"4544":8,"4545":1,"4546":9,"4547":1,"4548":2,"4549":9,"4550":7,"4551":6,"4552":4,"4553":4,"4554":2,"4555":9,"4556":4,"4557":5,"4558":5,"4559":8,"4560":5,"4561":8,"4562":9,"4563":2,"4564":10,"4565":7,"4566":2,"4567":4,"4568":6,"4569":4,"4570":5,"4571":5,"4572":9,"4573":7,"4574":6,"4575":6,"4576":8,"4577":9,"4578":10,"4579":10,"4580":9,"4581":8,"4582":5,"4583":1,"4584":6,"4585":10,"4586":5,"4587":2,"4588":9,"4589":6,"4590":9,"4591":5,"4592":3,"4593":7,"4594":3,"4595":2,"4596":8,"4597":9,"4598":7,"4599":10,"4600":5,"4601":4,"4602":5,"4603":2,"4604":1,"4605":9,"4606":1,"4607":4,"4608":8,"4609":5,"4610":1,"4611":7,"4612":7,"4613":2,"4614":9,"4615":10,"4616":4,"4617":9,"4618":5,"4619":2,"4620":5,"4621":7,"4622":4,"4623":9,"4624":9,"4625":2,"4626":7,"4627":9,"4628":5,"4629":8,"4630":5,"4631":4,"4632":7,"4633":9,"4634":5,"4635":7,"4636":2,"4637":4,"4638":8,"4639":10,"4640":5,"4641":7,"4642":10,"4643":7,"4644":5,"4645":7,"4646":4,"4647":10,"4648":5,"4649":8,"4650":7,"4651":9,"4652":7,"4653":9,"4654":2,"4655":10,"4656":7,"4657":8,"4658":7,"4659":10,"4660":9,"4661":1,"4662":5,"4663":9,"4664":8,"4665":10,"4666":5,"4667":10,"4668":7,"4669":8,"4670":8,"4671":2,"4672":3,"4673":2,"4674":9,"4675":2,"4676":3,"4677":5,"4678":8,"4679":7,"4680":7,"4681":9,"4682":8,"4683":5,"4684":7,"4685":7,"4686":10,"4687":9,"4688":2,"4689":4,"4690":9,"4691":8,"4692":8,"4693":9,"4694":9,"4695":8,"4696":7,"4697":4,"4698":8,"4699":6,"4700":8,"4701":6,"4702":2,"4703":8,"4704":5,"4705":5,"4706":8,"4707":8,"4708":2,"4709":5,"4710":7,"4711":5,"4712":4,"4713":6,"4714":6,"4715":9,"4716":1,"4717":6,"4718":8,"4719":5,"4720":10,"4721":9,"4722":5,"4723":5,"4724":8,"4725":7,"4726":1,"4727":9,"4728":7,"4729":8,"4730":7,"4731":7,"4732":2,"4733":8,"4734":3,"4735":6,"4736":2,"4737":2,"4738":9,"4739":7,"4740":7,"4741":2,"4742":2,"4743":2,"4744":7,"4745":7,"4746":8,"4747":9,"4748":5,"4749":6,"4750":7,"4751":7,"4752":6,"4753":7,"4754":7,"4755":7,"4756":9,"4757":6,"4758":8,"4759":7,"4760":8,"4761":9,"4762":9,"4763":4,"4764":9,"4765":2,"4766":5,"4767":2,"4768":9,"4769":3,"4770":2,"4771":3,"4772":4,"4773":5,"4774":9,"4775":2,"4776":1,"4777":2,"4778":1,"4779":5,"4780":7,"4781":7,"4782":5,"4783":10,"4784":3,"4785":9,"4786":9,"4787":9,"4788":8,"4789":7,"4790":9,"4791":2,"4792":8,"4793":8,"4794":8,"4795":7,"4796":5,"4797":8,"4798":1,"4799":9,"4800":10,"4801":10,"4802":9,"4803":10,"4804":2,"4805":7,"4806":7,"4807":2,"4808":8,"4809":8,"4810":6,"4811":8,"4812":1,"4813":9,"4814":8,"4815":1,"4816":7,"4817":3,"4818":1,"4819":5,"4820":8,"4821":6,"4822":8,"4823":8,"4824":6,"4825":8,"4826":5,"4827":8,"4828":9,"4829":9,"4830":7,"4831":8,"4832":4,"4833":7,"4834":4,"4835":9,"4836":9,"4837":5,"4838":8,"4839":9,"4840":3,"4841":9,"4842":7,"4843":4,"4844":2,"4845":8,"4846":5,"4847":9,"4848":9,"4849":8,"4850":6,"4851":4,"4852":3,"4853":7,"4854":1,"4855":4,"4856":7,"4857":5,"4858":8,"4859":3,"4860":9,"4861":4,"4862":5,"4863":8,"4864":1,"4865":2,"4866":2,"4867":2,"4868":9,"4869":8,"4870":5,"4871":10,"4872":7,"4873":8,"4874":2,"4875":7,"4876":8,"4877":9,"4878":4,"4879":9,"4880":8,"4881":9,"4882":7,"4883":10,"4884":3,"4885":7,"4886":7,"4887":5,"4888":9,"4889":8,"4890":9,"4891":8,"4892":2,"4893":8,"4894":8,"4895":2,"4896":9,"4897":2,"4898":3,"4899":8,"4900":7,"4901":8,"4902":5,"4903":2,"4904":2,"4905":3,"4906":9,"4907":7,"4908":7,"4909":10,"4910":7,"4911":9,"4912":3,"4913":6,"4914":5,"4915":3,"4916":1,"4917":9,"4918":8,"4919":9,"4920":5,"4921":2,"4922":8,"4923":8,"4924":5,"4925":9,"4926":7,"4927":3,"4928":7,"4929":1,"4930":8,"4931":10,"4932":1,"4933":7,"4934":6,"4935":2,"4936":7,"4937":2,"4938":8,"4939":9,"4940":9,"4941":5,"4942":7,"4943":2,"4944":2,"4945":8,"4946":3,"4947":5,"4948":8,"4949":6,"4950":6,"4951":5,"4952":4,"4953":7,"4954":5,"4955":9,"4956":7,"4957":10,"4958":8,"4959":9,"4960":9,"4961":9,"4962":6,"4963":2,"4964":5,"4965":7,"4966":1,"4967":7,"4968":7,"4969":6,"4970":7,"4971":5,"4972":6,"4973":3,"4974":10,"4975":8,"4976":2,"4977":6,"4978":2,"4979":10,"4980":8,"4981":9,"4982":7,"4983":9,"4984":6,"4985":8,"4986":7,"4987":1,"4988":7,"4989":9,"4990":7,"4991":8,"4992":1,"4993":5,"4994":5,"4995":10,"4996":8,"4997":9,"4998":8,"4999":9,"5000":4,"5001":7,"5002":7,"5003":8,"5004":10,"5005":8,"5006":2,"5007":4,"5008":9,"5009":4,"5010":1,"5011":2,"5012":7,"5013":3,"5014":9,"5015":8,"5016":9,"5017":7,"5018":8,"5019":9,"5020":8,"5021":8,"5022":6,"5023":9,"5024":5,"5025":6,"5026":9,"5027":7,"5028":8,"5029":6,"5030":9,"5031":2,"5032":8,"5033":7,"5034":8,"5035":8,"5036":9,"5037":8,"5038":9,"5039":9,"5040":2,"5041":2,"5042":10,"5043":8,"5044":2,"5045":7,"5046":7,"5047":8,"5048":9,"5049":7,"5050":10,"5051":5,"5052":3,"5053":3,"5054":6,"5055":8,"5056":8,"5057":5,"5058":8,"5059":5,"5060":4,"5061":5,"5062":3,"5063":3,"5064":9,"5065":1,"5066":3,"5067":9,"5068":2,"5069":8,"5070":8,"5071":10,"5072":10,"5073":1,"5074":8,"5075":5,"5076":9,"5077":8,"5078":4,"5079":7,"5080":8,"5081":1,"5082":8,"5083":7,"5084":2,"5085":1,"5086":6,"5087":10,"5088":6,"5089":9,"5090":4,"5091":7,"5092":10,"5093":9,"5094":8,"5095":3,"5096":8,"5097":8,"5098":1,"5099":10,"5100":8,"5101":1,"5102":9,"5103":3,"5104":8,"5105":8,"5106":8,"5107":8,"5108":6,"5109":3,"5110":1,"5111":2,"5112":7,"5113":8,"5114":7,"5115":5,"5116":7,"5117":8,"5118":9,"5119":7,"5120":8,"5121":7,"5122":10,"5123":5,"5124":7,"5125":5,"5126":6,"5127":6,"5128":2,"5129":8,"5130":3,"5131":7,"5132":9,"5133":7,"5134":9,"5135":1,"5136":8,"5137":4,"5138":8,"5139":10,"5140":4,"5141":4,"5142":8,"5143":3,"5144":8,"5145":7,"5146":9,"5147":9,"5148":8,"5149":7,"5150":2,"5151":5,"5152":7,"5153":8,"5154":8,"5155":7,"5156":3,"5157":6,"5158":8,"5159":7,"5160":9,"5161":6,"5162":9,"5163":10,"5164":8,"5165":9,"5166":6,"5167":8,"5168":8,"5169":2,"5170":9,"5171":6,"5172":9,"5173":8,"5174":2,"5175":1,"5176":1,"5177":10,"5178":8,"5179":8,"5180":5,"5181":8,"5182":8,"5183":4,"5184":6,"5185":3,"5186":7,"5187":5,"5188":8,"5189":8,"5190":2,"5191":6,"5192":2,"5193":7,"5194":9,"5195":9,"5196":9,"5197":7,"5198":3,"5199":7,"5200":6,"5201":4,"5202":8,"5203":2,"5204":8,"5205":7,"5206":7,"5207":7,"5208":7,"5209":5,"5210":7,"5211":8,"5212":9,"5213":2,"5214":3,"5215":8,"5216":8,"5217":6,"5218":8,"5219":3,"5220":9,"5221":3,"5222":7,"5223":2,"5224":2,"5225":7,"5226":7,"5227":9,"5228":4,"5229":4,"5230":1,"5231":7,"5232":9,"5233":2,"5234":9,"5235":9,"5236":5,"5237":7,"5238":8,"5239":9,"5240":9,"5241":7,"5242":7,"5243":7,"5244":2,"5245":2,"5246":7,"5247":6,"5248":8,"5249":7,"5250":8,"5251":4,"5252":5,"5253":7,"5254":9,"5255":2,"5256":5,"5257":10,"5258":8,"5259":4,"5260":8,"5261":5,"5262":9,"5263":7,"5264":10,"5265":5,"5266":2,"5267":5,"5268":7,"5269":9,"5270":2,"5271":3,"5272":9,"5273":8,"5274":2,"5275":7,"5276":1,"5277":9,"5278":7,"5279":7,"5280":4,"5281":7,"5282":8,"5283":7,"5284":4,"5285":7,"5286":7,"5287":8,"5288":7,"5289":10,"5290":8,"5291":7,"5292":9,"5293":2,"5294":7,"5295":8,"5296":2,"5297":7,"5298":2,"5299":7,"5300":9,"5301":10,"5302":3,"5303":9,"5304":9,"5305":7,"5306":7,"5307":2,"5308":2,"5309":5,"5310":2,"5311":8,"5312":1,"5313":9,"5314":7,"5315":7,"5316":5,"5317":6,"5318":7,"5319":2,"5320":2,"5321":7,"5322":5,"5323":8,"5324":4,"5325":5,"5326":2,"5327":5,"5328":2,"5329":8,"5330":6,"5331":2,"5332":2,"5333":4,"5334":1,"5335":9,"5336":2,"5337":9,"5338":7,"5339":9,"5340":2,"5341":7,"5342":5,"5343":5,"5344":9,"5345":6,"5346":7,"5347":3,"5348":3,"5349":2,"5350":8,"5351":8,"5352":7,"5353":4,"5354":1,"5355":10,"5356":7,"5357":5,"5358":5,"5359":7,"5360":7,"5361":7,"5362":7,"5363":9,"5364":7,"5365":10,"5366":3,"5367":3,"5368":6,"5369":1,"5370":7,"5371":10,"5372":5,"5373":5,"5374":3,"5375":9,"5376":7,"5377":8,"5378":7,"5379":4,"5380":8,"5381":7,"5382":7,"5383":5,"5384":4,"5385":2,"5386":7,"5387":2,"5388":6,"5389":3,"5390":6,"5391":7,"5392":8,"5393":1,"5394":2,"5395":8,"5396":8,"5397":6,"5398":8,"5399":7,"5400":10,"5401":8,"5402":5,"5403":5,"5404":1,"5405":6,"5406":7,"5407":7,"5408":1,"5409":8,"5410":2,"5411":9,"5412":9,"5413":9,"5414":3,"5415":8,"5416":2,"5417":10,"5418":8,"5419":3,"5420":5,"5421":4,"5422":9,"5423":8,"5424":7,"5425":3,"5426":1,"5427":10,"5428":7,"5429":2,"5430":2,"5431":9,"5432":8,"5433":8,"5434":9,"5435":4,"5436":8,"5437":7,"5438":3,"5439":8,"5440":1,"5441":1,"5442":5,"5443":6,"5444":7,"5445":1,"5446":8,"5447":9,"5448":7,"5449":9,"5450":8,"5451":5,"5452":5,"5453":8,"5454":8,"5455":1,"5456":8,"5457":8,"5458":4,"5459":8,"5460":7,"5461":5,"5462":9,"5463":7,"5464":1,"5465":5,"5466":5,"5467":1,"5468":8,"5469":2,"5470":4,"5471":9,"5472":2,"5473":1,"5474":4,"5475":8,"5476":8,"5477":8,"5478":9,"5479":8,"5480":9,"5481":1,"5482":7,"5483":4,"5484":6,"5485":9,"5486":6,"5487":10,"5488":8,"5489":6,"5490":9,"5491":4,"5492":10,"5493":8,"5494":7,"5495":4,"5496":5,"5497":7,"5498":8,"5499":8,"5500":7,"5501":8,"5502":8,"5503":7,"5504":8,"5505":5,"5506":9,"5507":6,"5508":4,"5509":10,"5510":9,"5511":9,"5512":8,"5513":8,"5514":7,"5515":5,"5516":7,"5517":2,"5518":2,"5519":4,"5520":7,"5521":3,"5522":7,"5523":6,"5524":1,"5525":7,"5526":8,"5527":2,"5528":2,"5529":10,"5530":5,"5531":10,"5532":7,"5533":1,"5534":9,"5535":8,"5536":10,"5537":8,"5538":2,"5539":1,"5540":6,"5541":7,"5542":9,"5543":5,"5544":2,"5545":7,"5546":10,"5547":6,"5548":5,"5549":2,"5550":8,"5551":6,"5552":1,"5553":8,"5554":2,"5555":3,"5556":2,"5557":5,"5558":7,"5559":7,"5560":6,"5561":6,"5562":8,"5563":8,"5564":5,"5565":10,"5566":8,"5567":7,"5568":9,"5569":7,"5570":5,"5571":7,"5572":5,"5573":7,"5574":8,"5575":1,"5576":1,"5577":8,"5578":8,"5579":2,"5580":2,"5581":6,"5582":5,"5583":5,"5584":9,"5585":7,"5586":10,"5587":8,"5588":2,"5589":8,"5590":2,"5591":2,"5592":7,"5593":7,"5594":7,"5595":3,"5596":4,"5597":8,"5598":5,"5599":2,"5600":8,"5601":5,"5602":7,"5603":7,"5604":8,"5605":2,"5606":9,"5607":2,"5608":8,"5609":9,"5610":7,"5611":9,"5612":10,"5613":3,"5614":5,"5615":8,"5616":8,"5617":5,"5618":2,"5619":2,"5620":8,"5621":2,"5622":2,"5623":5,"5624":5,"5625":5,"5626":2,"5627":5,"5628":6,"5629":5,"5630":5,"5631":1,"5632":8,"5633":7,"5634":2,"5635":7,"5636":6,"5637":10,"5638":9,"5639":4,"5640":4,"5641":8,"5642":10,"5643":3,"5644":1,"5645":7,"5646":8,"5647":7,"5648":7,"5649":8,"5650":8,"5651":3,"5652":9,"5653":7,"5654":8,"5655":7,"5656":3,"5657":8,"5658":6,"5659":4,"5660":7,"5661":2,"5662":7,"5663":8,"5664":7,"5665":9,"5666":5,"5667":9,"5668":3,"5669":8,"5670":7,"5671":7,"5672":2,"5673":7,"5674":8,"5675":5,"5676":9,"5677":6,"5678":5,"5679":9,"5680":8,"5681":2,"5682":1,"5683":9,"5684":9,"5685":3,"5686":6,"5687":6,"5688":3,"5689":7,"5690":1,"5691":9,"5692":6,"5693":5,"5694":5,"5695":8,"5696":8,"5697":5,"5698":10,"5699":3,"5700":4,"5701":9,"5702":8,"5703":7,"5704":7,"5705":9,"5706":7,"5707":9,"5708":7,"5709":9,"5710":8,"5711":7,"5712":2,"5713":9,"5714":9,"5715":10,"5716":9,"5717":8,"5718":9,"5719":9,"5720":2,"5721":9,"5722":9,"5723":6,"5724":3,"5725":10,"5726":7,"5727":2,"5728":9,"5729":7,"5730":7,"5731":1,"5732":9,"5733":8,"5734":3,"5735":6,"5736":7,"5737":7,"5738":7,"5739":9,"5740":1,"5741":10,"5742":8,"5743":3,"5744":3,"5745":9,"5746":1,"5747":7,"5748":9,"5749":1,"5750":5,"5751":9,"5752":7,"5753":9,"5754":2,"5755":8,"5756":3,"5757":1,"5758":4,"5759":10,"5760":10,"5761":8,"5762":8,"5763":8,"5764":8,"5765":7,"5766":9,"5767":9,"5768":2,"5769":1,"5770":2,"5771":7,"5772":8,"5773":7,"5774":2,"5775":2,"5776":9,"5777":4,"5778":2,"5779":5,"5780":9,"5781":2,"5782":3,"5783":10,"5784":9,"5785":7,"5786":7,"5787":7,"5788":8,"5789":7,"5790":3,"5791":8,"5792":10,"5793":6,"5794":5,"5795":7,"5796":8,"5797":7,"5798":7,"5799":1,"5800":2,"5801":3,"5802":5,"5803":5,"5804":8,"5805":6,"5806":3,"5807":8,"5808":10,"5809":5,"5810":7,"5811":7,"5812":8,"5813":6,"5814":5,"5815":5,"5816":5,"5817":9,"5818":3,"5819":7,"5820":7,"5821":2,"5822":7,"5823":7,"5824":7,"5825":5,"5826":3,"5827":7,"5828":8,"5829":10,"5830":9,"5831":7,"5832":7,"5833":2,"5834":7,"5835":8,"5836":9,"5837":8,"5838":7,"5839":7,"5840":9,"5841":3,"5842":7,"5843":8,"5844":1,"5845":9,"5846":2,"5847":7,"5848":7,"5849":10,"5850":7,"5851":7,"5852":1,"5853":7,"5854":5,"5855":8,"5856":10,"5857":8,"5858":2,"5859":5,"5860":1,"5861":8,"5862":8,"5863":8,"5864":7,"5865":8,"5866":8,"5867":8,"5868":8,"5869":2,"5870":8,"5871":9,"5872":8,"5873":7,"5874":7,"5875":7,"5876":5,"5877":1,"5878":9,"5879":8,"5880":7,"5881":3,"5882":8,"5883":7,"5884":8,"5885":8,"5886":7,"5887":8,"5888":5,"5889":6,"5890":9,"5891":2,"5892":8,"5893":7,"5894":8,"5895":9,"5896":9,"5897":2,"5898":6,"5899":2,"5900":8,"5901":1,"5902":1,"5903":9,"5904":6,"5905":9,"5906":8,"5907":8,"5908":1,"5909":6,"5910":1,"5911":8,"5912":7,"5913":1,"5914":7,"5915":5,"5916":5,"5917":7,"5918":7,"5919":10,"5920":3,"5921":8,"5922":9,"5923":4,"5924":1,"5925":2,"5926":4,"5927":2,"5928":10,"5929":2,"5930":2,"5931":2,"5932":8,"5933":2,"5934":2,"5935":2,"5936":4,"5937":9,"5938":8,"5939":9,"5940":5,"5941":8,"5942":1,"5943":4,"5944":3,"5945":9,"5946":1,"5947":1,"5948":3,"5949":3,"5950":10,"5951":9,"5952":10,"5953":8,"5954":2,"5955":1,"5956":7,"5957":5,"5958":9,"5959":2,"5960":2,"5961":6,"5962":8,"5963":9,"5964":3,"5965":5,"5966":1,"5967":9,"5968":10,"5969":5,"5970":6,"5971":2,"5972":9,"5973":10,"5974":9,"5975":8,"5976":1,"5977":7,"5978":6,"5979":6,"5980":7,"5981":9,"5982":10,"5983":9,"5984":5,"5985":9,"5986":9,"5987":9,"5988":3,"5989":7,"5990":8,"5991":8,"5992":9,"5993":10,"5994":2,"5995":9,"5996":4,"5997":5,"5998":5,"5999":7,"6000":9,"6001":8,"6002":2,"6003":5,"6004":8,"6005":7,"6006":4,"6007":8,"6008":7,"6009":6,"6010":6,"6011":7,"6012":10,"6013":7,"6014":7,"6015":7,"6016":5,"6017":8,"6018":6,"6019":5,"6020":5,"6021":4,"6022":1,"6023":5,"6024":2,"6025":5,"6026":2,"6027":10,"6028":4,"6029":8,"6030":6,"6031":7,"6032":5,"6033":8,"6034":7,"6035":9,"6036":6,"6037":8,"6038":9,"6039":7,"6040":9,"6041":2,"6042":5,"6043":7,"6044":9,"6045":9,"6046":8,"6047":4,"6048":1,"6049":9,"6050":7,"6051":8,"6052":9,"6053":9,"6054":7,"6055":2,"6056":1,"6057":7,"6058":2,"6059":9,"6060":5,"6061":8,"6062":5,"6063":9,"6064":5,"6065":8,"6066":1,"6067":2,"6068":9,"6069":2,"6070":8,"6071":9,"6072":8,"6073":10,"6074":9,"6075":9,"6076":3,"6077":8,"6078":8,"6079":9,"6080":5,"6081":6,"6082":1,"6083":7,"6084":10,"6085":2,"6086":9,"6087":6,"6088":9,"6089":9,"6090":5,"6091":7,"6092":1,"6093":8,"6094":2,"6095":2,"6096":5,"6097":2,"6098":5,"6099":8,"6100":7,"6101":7,"6102":10,"6103":1,"6104":9,"6105":3,"6106":5,"6107":6,"6108":7,"6109":5,"6110":1,"6111":7,"6112":5,"6113":8,"6114":5,"6115":6,"6116":8,"6117":8,"6118":2,"6119":3,"6120":2,"6121":4,"6122":3,"6123":8,"6124":8,"6125":7,"6126":8,"6127":4,"6128":4,"6129":8,"6130":1,"6131":9,"6132":7,"6133":7,"6134":8,"6135":4,"6136":8,"6137":2,"6138":1,"6139":9,"6140":3,"6141":1,"6142":7,"6143":7,"6144":9,"6145":6,"6146":4,"6147":1,"6148":9,"6149":8,"6150":7,"6151":7,"6152":8,"6153":1,"6154":9,"6155":9,"6156":5,"6157":9,"6158":3,"6159":9,"6160":2,"6161":2,"6162":7,"6163":5,"6164":9,"6165":3,"6166":1,"6167":2,"6168":4,"6169":1,"6170":4,"6171":8,"6172":8,"6173":7,"6174":8,"6175":7,"6176":4,"6177":5,"6178":5,"6179":9,"6180":8,"6181":9,"6182":5,"6183":8,"6184":1,"6185":5,"6186":8,"6187":8,"6188":2,"6189":2,"6190":8,"6191":4,"6192":9,"6193":7,"6194":1,"6195":7,"6196":8,"6197":2,"6198":7,"6199":7,"6200":10,"6201":9,"6202":7,"6203":9,"6204":7,"6205":3,"6206":8,"6207":6,"6208":10,"6209":9,"6210":8,"6211":2,"6212":8,"6213":8,"6214":8,"6215":8,"6216":6,"6217":5,"6218":5,"6219":9,"6220":5,"6221":9,"6222":5,"6223":3,"6224":7,"6225":6,"6226":2,"6227":9,"6228":5,"6229":9,"6230":9,"6231":8,"6232":9,"6233":9,"6234":5,"6235":9,"6236":4,"6237":8,"6238":6,"6239":6,"6240":10,"6241":1,"6242":6,"6243":3,"6244":7,"6245":9,"6246":1,"6247":8,"6248":1,"6249":5,"6250":2,"6251":7,"6252":7,"6253":5,"6254":7,"6255":7,"6256":9,"6257":9,"6258":8,"6259":10,"6260":8,"6261":5,"6262":7,"6263":8,"6264":7,"6265":9,"6266":9,"6267":9,"6268":8,"6269":7,"6270":7,"6271":7,"6272":4,"6273":8,"6274":7,"6275":4,"6276":2,"6277":5,"6278":10,"6279":2,"6280":7,"6281":8,"6282":5,"6283":7,"6284":2,"6285":8,"6286":5,"6287":9,"6288":3,"6289":9,"6290":5,"6291":6,"6292":5,"6293":8,"6294":2,"6295":6,"6296":8,"6297":2,"6298":7,"6299":8,"6300":4,"6301":9,"6302":1,"6303":3,"6304":6,"6305":1,"6306":5,"6307":9,"6308":3,"6309":8,"6310":8,"6311":9,"6312":7,"6313":10,"6314":2,"6315":7,"6316":8,"6317":9,"6318":8,"6319":10,"6320":1,"6321":1,"6322":7,"6323":10,"6324":4,"6325":3,"6326":9,"6327":3,"6328":8,"6329":6,"6330":7,"6331":2,"6332":9,"6333":8,"6334":7,"6335":6,"6336":3,"6337":7,"6338":7,"6339":5,"6340":7,"6341":8,"6342":3,"6343":9,"6344":5,"6345":3,"6346":8,"6347":1,"6348":4,"6349":7,"6350":7,"6351":5,"6352":5,"6353":9,"6354":7,"6355":8,"6356":7,"6357":8,"6358":5,"6359":1,"6360":3,"6361":8,"6362":7,"6363":9,"6364":2,"6365":8,"6366":7,"6367":6,"6368":10,"6369":7,"6370":2,"6371":9,"6372":7,"6373":7,"6374":8,"6375":9,"6376":9,"6377":8,"6378":7,"6379":8,"6380":7,"6381":7,"6382":7,"6383":7,"6384":7,"6385":4,"6386":9,"6387":3,"6388":8,"6389":2,"6390":8,"6391":8,"6392":2,"6393":8,"6394":7,"6395":6,"6396":2,"6397":5,"6398":10,"6399":4,"6400":2,"6401":9,"6402":1,"6403":5,"6404":8,"6405":8,"6406":2,"6407":2,"6408":2,"6409":7,"6410":8,"6411":7,"6412":7,"6413":9,"6414":1,"6415":5,"6416":7,"6417":5,"6418":3,"6419":3,"6420":7,"6421":10,"6422":7,"6423":3,"6424":7,"6425":2,"6426":9,"6427":2,"6428":5,"6429":2,"6430":4,"6431":5,"6432":8,"6433":2,"6434":3,"6435":9,"6436":2,"6437":8,"6438":8,"6439":5,"6440":5,"6441":8,"6442":10,"6443":8,"6444":5,"6445":4,"6446":3,"6447":2,"6448":4,"6449":10,"6450":10,"6451":7,"6452":9,"6453":10,"6454":8,"6455":9,"6456":2,"6457":6,"6458":9,"6459":6,"6460":8,"6461":6,"6462":8,"6463":5,"6464":5,"6465":7,"6466":8,"6467":9,"6468":8,"6469":8,"6470":7,"6471":6,"6472":9,"6473":7,"6474":5,"6475":9,"6476":8,"6477":8,"6478":8,"6479":4,"6480":5,"6481":6,"6482":2,"6483":8,"6484":8,"6485":1,"6486":7,"6487":9,"6488":7,"6489":8,"6490":5,"6491":2,"6492":7,"6493":9,"6494":5,"6495":6,"6496":8,"6497":8,"6498":5,"6499":3,"6500":10,"6501":9,"6502":7,"6503":8,"6504":5,"6505":3,"6506":8,"6507":7,"6508":8,"6509":2,"6510":5,"6511":7,"6512":8,"6513":8,"6514":8,"6515":8,"6516":1,"6517":5,"6518":9,"6519":3,"6520":1,"6521":4,"6522":7,"6523":8,"6524":7,"6525":7,"6526":8,"6527":1,"6528":6,"6529":3,"6530":8,"6531":1,"6532":5,"6533":10,"6534":5,"6535":6,"6536":7,"6537":7,"6538":6,"6539":10,"6540":2,"6541":8,"6542":7,"6543":2,"6544":5,"6545":7,"6546":9,"6547":9,"6548":8,"6549":7,"6550":8,"6551":2,"6552":5,"6553":1,"6554":3,"6555":7,"6556":7,"6557":7,"6558":10,"6559":9,"6560":4,"6561":2,"6562":9,"6563":2,"6564":9,"6565":2,"6566":8,"6567":3,"6568":7,"6569":2,"6570":6,"6571":4,"6572":10,"6573":5,"6574":8,"6575":9,"6576":9,"6577":9,"6578":5,"6579":6,"6580":3,"6581":7,"6582":5,"6583":8,"6584":9,"6585":6,"6586":9,"6587":7,"6588":7,"6589":3,"6590":2,"6591":6,"6592":4,"6593":5,"6594":8,"6595":4,"6596":4,"6597":1,"6598":3,"6599":9,"6600":8,"6601":2,"6602":4,"6603":5,"6604":1,"6605":8,"6606":8,"6607":4,"6608":9,"6609":8,"6610":8,"6611":2,"6612":9,"6613":9,"6614":2,"6615":5,"6616":7,"6617":7,"6618":1,"6619":8,"6620":5,"6621":7,"6622":2,"6623":8,"6624":5,"6625":5,"6626":9,"6627":8,"6628":6,"6629":8,"6630":7,"6631":7,"6632":9,"6633":8,"6634":9,"6635":3,"6636":8,"6637":8,"6638":2,"6639":7,"6640":5,"6641":8,"6642":1,"6643":8,"6644":5,"6645":7,"6646":2,"6647":8,"6648":8,"6649":7,"6650":8,"6651":2,"6652":8,"6653":4,"6654":7,"6655":10,"6656":7,"6657":2,"6658":8,"6659":8,"6660":8,"6661":5,"6662":9,"6663":8,"6664":8,"6665":7,"6666":9,"6667":7,"6668":8,"6669":5,"6670":5,"6671":8,"6672":6,"6673":2,"6674":2,"6675":9,"6676":3,"6677":9,"6678":3,"6679":7,"6680":8,"6681":9,"6682":5,"6683":5,"6684":10,"6685":10,"6686":9,"6687":8,"6688":1,"6689":10,"6690":5,"6691":8,"6692":8,"6693":8,"6694":9,"6695":9,"6696":9,"6697":7,"6698":7,"6699":9,"6700":8,"6701":6,"6702":8,"6703":8,"6704":9,"6705":9,"6706":7,"6707":5,"6708":4,"6709":4,"6710":7,"6711":8,"6712":7,"6713":8,"6714":8,"6715":6,"6716":2,"6717":9,"6718":5,"6719":5,"6720":9,"6721":8,"6722":5,"6723":8,"6724":7,"6725":5,"6726":5,"6727":8,"6728":7,"6729":8,"6730":2,"6731":5,"6732":9,"6733":7,"6734":8,"6735":8,"6736":5,"6737":7,"6738":6,"6739":8,"6740":4,"6741":9,"6742":1,"6743":7,"6744":8,"6745":8,"6746":8,"6747":5,"6748":9,"6749":3,"6750":7,"6751":7,"6752":10,"6753":8,"6754":5,"6755":8,"6756":8,"6757":3,"6758":1,"6759":7,"6760":6,"6761":2,"6762":6,"6763":8,"6764":8,"6765":9,"6766":5,"6767":7,"6768":8,"6769":7,"6770":7,"6771":8,"6772":8,"6773":10,"6774":2,"6775":2,"6776":10,"6777":7,"6778":6,"6779":7,"6780":8,"6781":8,"6782":6,"6783":7,"6784":2,"6785":5,"6786":7,"6787":7,"6788":1,"6789":2,"6790":2,"6791":8,"6792":6,"6793":7,"6794":8,"6795":3,"6796":2,"6797":9,"6798":9,"6799":8,"6800":7,"6801":9,"6802":3,"6803":3,"6804":7,"6805":9,"6806":5,"6807":9,"6808":5,"6809":9,"6810":7,"6811":8,"6812":9,"6813":2,"6814":7,"6815":7,"6816":5,"6817":7,"6818":8,"6819":1,"6820":7,"6821":6,"6822":9,"6823":9,"6824":9,"6825":4,"6826":7,"6827":7,"6828":2,"6829":5,"6830":2,"6831":9,"6832":1,"6833":7,"6834":5,"6835":8,"6836":8,"6837":9,"6838":8,"6839":7,"6840":8,"6841":6,"6842":4,"6843":1,"6844":8,"6845":10,"6846":7,"6847":7,"6848":7,"6849":9,"6850":8,"6851":9,"6852":6,"6853":5,"6854":5,"6855":5,"6856":2,"6857":9,"6858":9,"6859":2,"6860":8,"6861":9,"6862":7,"6863":8,"6864":9,"6865":7,"6866":8,"6867":2,"6868":8,"6869":5,"6870":8,"6871":6,"6872":8,"6873":8,"6874":7,"6875":5,"6876":9,"6877":4,"6878":5,"6879":3,"6880":8,"6881":8,"6882":2,"6883":8,"6884":10,"6885":7,"6886":5,"6887":3,"6888":8,"6889":5,"6890":8,"6891":8,"6892":3,"6893":7,"6894":6,"6895":8,"6896":6,"6897":10,"6898":9,"6899":8,"6900":10,"6901":4,"6902":9,"6903":2,"6904":10,"6905":5,"6906":3,"6907":7,"6908":2,"6909":7,"6910":4,"6911":8,"6912":8,"6913":5,"6914":5,"6915":1,"6916":8,"6917":7,"6918":8,"6919":8,"6920":9,"6921":4,"6922":5,"6923":9,"6924":7,"6925":8,"6926":9,"6927":5,"6928":4,"6929":5,"6930":9,"6931":8,"6932":1,"6933":6,"6934":5,"6935":5,"6936":8,"6937":2,"6938":5,"6939":6,"6940":4,"6941":6,"6942":3,"6943":9,"6944":5,"6945":10,"6946":7,"6947":1,"6948":9,"6949":8,"6950":6,"6951":5,"6952":9,"6953":2,"6954":10,"6955":9,"6956":1,"6957":7,"6958":6,"6959":10,"6960":9,"6961":9,"6962":8,"6963":8,"6964":2,"6965":4,"6966":8,"6967":9,"6968":2,"6969":2,"6970":8,"6971":7,"6972":7,"6973":8,"6974":9,"6975":9,"6976":5,"6977":8,"6978":2,"6979":7,"6980":5,"6981":4,"6982":2,"6983":7,"6984":8,"6985":1,"6986":8,"6987":3,"6988":5,"6989":5,"6990":10,"6991":8,"6992":8,"6993":2,"6994":3,"6995":8,"6996":8,"6997":9,"6998":8,"6999":6,"7000":2,"7001":7,"7002":8,"7003":2,"7004":8,"7005":8,"7006":5,"7007":4,"7008":1,"7009":4,"7010":7,"7011":7,"7012":10,"7013":10,"7014":7,"7015":1,"7016":9,"7017":5,"7018":7,"7019":10,"7020":7,"7021":10,"7022":8,"7023":7,"7024":7,"7025":2,"7026":5,"7027":7,"7028":4,"7029":6,"7030":8,"7031":2,"7032":2,"7033":5,"7034":8,"7035":7,"7036":6,"7037":3,"7038":6,"7039":3,"7040":9,"7041":8,"7042":8,"7043":7,"7044":7,"7045":5,"7046":7,"7047":8,"7048":8,"7049":8,"7050":2,"7051":8,"7052":9,"7053":8,"7054":6,"7055":5,"7056":4,"7057":1,"7058":3,"7059":8,"7060":7,"7061":5,"7062":7,"7063":3,"7064":3,"7065":8,"7066":1,"7067":9,"7068":5,"7069":8,"7070":7,"7071":9,"7072":7,"7073":10,"7074":9,"7075":5,"7076":9,"7077":7,"7078":2,"7079":2,"7080":8,"7081":2,"7082":8,"7083":2,"7084":4,"7085":4,"7086":8,"7087":9,"7088":2,"7089":7,"7090":8,"7091":2,"7092":7,"7093":2,"7094":3,"7095":7,"7096":2,"7097":7,"7098":3,"7099":5,"7100":5,"7101":7,"7102":7,"7103":6,"7104":7,"7105":3,"7106":2,"7107":1,"7108":5,"7109":2,"7110":9,"7111":1,"7112":6,"7113":7,"7114":7,"7115":2,"7116":9,"7117":6,"7118":8,"7119":6,"7120":7,"7121":7,"7122":10,"7123":7,"7124":3,"7125":1,"7126":10,"7127":9,"7128":7,"7129":9,"7130":8,"7131":8,"7132":4,"7133":5,"7134":7,"7135":6,"7136":4,"7137":7,"7138":8,"7139":5,"7140":8,"7141":7,"7142":2,"7143":7,"7144":7,"7145":1,"7146":8,"7147":9,"7148":4,"7149":2,"7150":9,"7151":7,"7152":8,"7153":7,"7154":1,"7155":8,"7156":4,"7157":7,"7158":8,"7159":2,"7160":7,"7161":10,"7162":7,"7163":7,"7164":9,"7165":7,"7166":8,"7167":8,"7168":9,"7169":5,"7170":7,"7171":7,"7172":10,"7173":7,"7174":3,"7175":5,"7176":9,"7177":8,"7178":10,"7179":2,"7180":7,"7181":7,"7182":3,"7183":7,"7184":6,"7185":9,"7186":1,"7187":8,"7188":5,"7189":7,"7190":9,"7191":7,"7192":10,"7193":9,"7194":1,"7195":9,"7196":8,"7197":8,"7198":5,"7199":8,"7200":7,"7201":3,"7202":8,"7203":3,"7204":7,"7205":3,"7206":10,"7207":8,"7208":7,"7209":8,"7210":4,"7211":2,"7212":8,"7213":7,"7214":9,"7215":4,"7216":7,"7217":7,"7218":4,"7219":5,"7220":8,"7221":3,"7222":8,"7223":8,"7224":7,"7225":7,"7226":7,"7227":3,"7228":6,"7229":5,"7230":10,"7231":9,"7232":7,"7233":6,"7234":8,"7235":8,"7236":8,"7237":8,"7238":10,"7239":7,"7240":8,"7241":5,"7242":7,"7243":9,"7244":3,"7245":5,"7246":8,"7247":10,"7248":8,"7249":5,"7250":8,"7251":7,"7252":9,"7253":8,"7254":1,"7255":8,"7256":8,"7257":2,"7258":2,"7259":7,"7260":9,"7261":7,"7262":9,"7263":9,"7264":8,"7265":8,"7266":7,"7267":7,"7268":4,"7269":2,"7270":2,"7271":8,"7272":5,"7273":8,"7274":8,"7275":8,"7276":7,"7277":9,"7278":8,"7279":4,"7280":8,"7281":2,"7282":5,"7283":8,"7284":7,"7285":8,"7286":8,"7287":8,"7288":2,"7289":9,"7290":8,"7291":6,"7292":9,"7293":8,"7294":4,"7295":10,"7296":8,"7297":5,"7298":7,"7299":2,"7300":10,"7301":2,"7302":3,"7303":7,"7304":8,"7305":7,"7306":7,"7307":2,"7308":3,"7309":9,"7310":9,"7311":8,"7312":7,"7313":5,"7314":8,"7315":8,"7316":5,"7317":6,"7318":7,"7319":7,"7320":9,"7321":7,"7322":7,"7323":9,"7324":2,"7325":3,"7326":9,"7327":7,"7328":4,"7329":9,"7330":6,"7331":2,"7332":1,"7333":7,"7334":3,"7335":2,"7336":3,"7337":2,"7338":8,"7339":9,"7340":9,"7341":8,"7342":7,"7343":5,"7344":8,"7345":8,"7346":9,"7347":5,"7348":8,"7349":10,"7350":6,"7351":2,"7352":8,"7353":6,"7354":7,"7355":1,"7356":1,"7357":7,"7358":7,"7359":2,"7360":5,"7361":8,"7362":1,"7363":7,"7364":9,"7365":7,"7366":7,"7367":5,"7368":5,"7369":5,"7370":3,"7371":6,"7372":5,"7373":9,"7374":9,"7375":7,"7376":7,"7377":8,"7378":8,"7379":10,"7380":9,"7381":2,"7382":8,"7383":9,"7384":4,"7385":3,"7386":3,"7387":10,"7388":6,"7389":8,"7390":9,"7391":8,"7392":7,"7393":2,"7394":8,"7395":8,"7396":5,"7397":8,"7398":3,"7399":2,"7400":8,"7401":9,"7402":2,"7403":7,"7404":1,"7405":1,"7406":7,"7407":8,"7408":5,"7409":10,"7410":9,"7411":7,"7412":9,"7413":8,"7414":2,"7415":9,"7416":2,"7417":7,"7418":8,"7419":7,"7420":4,"7421":2,"7422":3,"7423":5,"7424":7,"7425":7,"7426":7,"7427":7,"7428":1,"7429":2,"7430":7,"7431":7,"7432":4,"7433":8,"7434":2,"7435":4,"7436":5,"7437":3,"7438":2,"7439":9,"7440":5,"7441":5,"7442":5,"7443":7,"7444":10,"7445":7,"7446":8,"7447":10,"7448":7,"7449":7,"7450":9,"7451":2,"7452":8,"7453":9,"7454":1,"7455":7,"7456":8,"7457":9,"7458":2,"7459":10,"7460":8,"7461":10,"7462":9,"7463":5,"7464":3,"7465":7,"7466":2,"7467":8,"7468":3,"7469":8,"7470":9,"7471":2,"7472":7,"7473":7,"7474":8,"7475":9,"7476":9,"7477":9,"7478":8,"7479":8,"7480":7,"7481":5,"7482":4,"7483":9,"7484":9,"7485":7,"7486":10,"7487":7,"7488":2,"7489":2,"7490":9,"7491":8,"7492":5,"7493":3,"7494":7,"7495":9,"7496":3,"7497":8,"7498":8,"7499":3,"7500":8,"7501":9,"7502":8,"7503":5,"7504":7,"7505":4,"7506":5,"7507":9,"7508":10,"7509":9,"7510":10,"7511":7,"7512":10,"7513":8,"7514":4,"7515":9,"7516":8,"7517":6,"7518":9,"7519":8,"7520":7,"7521":8,"7522":8,"7523":7,"7524":3,"7525":5,"7526":9,"7527":10,"7528":9,"7529":8,"7530":7,"7531":5,"7532":2,"7533":10,"7534":8,"7535":2,"7536":9,"7537":7,"7538":8,"7539":7,"7540":9,"7541":9,"7542":8,"7543":5,"7544":7,"7545":3,"7546":9,"7547":6,"7548":5,"7549":1,"7550":5,"7551":8,"7552":2,"7553":8,"7554":9,"7555":7,"7556":9,"7557":4,"7558":5,"7559":5,"7560":8,"7561":7,"7562":8,"7563":8,"7564":2,"7565":9,"7566":7,"7567":5,"7568":4,"7569":2,"7570":3,"7571":9,"7572":9,"7573":7,"7574":6,"7575":3,"7576":8,"7577":8,"7578":10,"7579":7,"7580":2,"7581":7,"7582":3,"7583":7,"7584":10,"7585":7,"7586":3,"7587":8,"7588":8,"7589":8,"7590":5,"7591":9,"7592":7,"7593":8,"7594":9,"7595":10,"7596":7,"7597":9,"7598":9,"7599":9,"7600":7,"7601":8,"7602":8,"7603":2,"7604":10,"7605":5,"7606":10,"7607":2,"7608":8,"7609":9,"7610":1,"7611":6,"7612":3,"7613":7,"7614":8,"7615":3,"7616":7,"7617":9,"7618":9,"7619":9,"7620":7,"7621":3,"7622":8,"7623":8,"7624":6,"7625":6,"7626":8,"7627":5,"7628":2,"7629":5,"7630":6,"7631":7,"7632":7,"7633":8,"7634":3,"7635":10,"7636":4,"7637":9,"7638":7,"7639":9,"7640":8,"7641":2,"7642":1,"7643":7,"7644":5,"7645":5,"7646":3,"7647":1,"7648":5,"7649":8,"7650":8,"7651":8,"7652":10,"7653":8,"7654":5,"7655":10,"7656":9,"7657":7,"7658":8,"7659":2,"7660":5,"7661":7,"7662":9,"7663":9,"7664":8,"7665":8,"7666":8,"7667":9,"7668":9,"7669":9,"7670":9,"7671":2,"7672":7,"7673":8,"7674":8,"7675":7,"7676":9,"7677":9,"7678":8,"7679":7,"7680":4,"7681":8,"7682":8,"7683":6,"7684":4,"7685":3,"7686":1,"7687":9,"7688":8,"7689":7,"7690":2,"7691":2,"7692":5,"7693":5,"7694":9,"7695":2,"7696":6,"7697":7,"7698":8,"7699":3,"7700":9,"7701":5,"7702":7,"7703":8,"7704":6,"7705":9,"7706":7,"7707":3,"7708":5,"7709":4,"7710":9,"7711":3,"7712":5,"7713":2,"7714":7,"7715":9,"7716":7,"7717":7,"7718":5,"7719":3,"7720":8,"7721":8,"7722":8,"7723":2,"7724":7,"7725":3,"7726":7,"7727":6,"7728":8,"7729":10,"7730":8,"7731":7,"7732":9,"7733":9,"7734":7,"7735":3,"7736":7,"7737":7,"7738":6,"7739":8,"7740":8,"7741":2,"7742":7,"7743":9,"7744":7,"7745":1,"7746":8,"7747":7,"7748":6,"7749":8,"7750":8,"7751":8,"7752":7,"7753":8,"7754":7,"7755":2,"7756":8,"7757":2,"7758":5,"7759":2,"7760":10,"7761":4,"7762":7,"7763":8,"7764":7,"7765":8,"7766":2,"7767":9,"7768":3,"7769":7,"7770":7,"7771":7,"7772":4,"7773":2,"7774":10,"7775":5,"7776":2,"7777":7,"7778":7,"7779":7,"7780":4,"7781":3,"7782":7,"7783":10,"7784":7,"7785":1,"7786":8,"7787":1,"7788":9,"7789":8,"7790":8,"7791":8,"7792":7,"7793":8,"7794":1,"7795":8,"7796":9,"7797":7,"7798":5,"7799":8,"7800":7,"7801":7,"7802":9,"7803":9,"7804":7,"7805":8,"7806":2,"7807":6,"7808":9,"7809":5,"7810":2,"7811":1,"7812":8,"7813":8,"7814":9,"7815":6,"7816":9,"7817":7,"7818":7,"7819":7,"7820":7,"7821":8,"7822":7,"7823":9,"7824":9,"7825":7,"7826":7,"7827":5,"7828":3,"7829":7,"7830":8,"7831":9,"7832":5,"7833":9,"7834":4,"7835":9,"7836":9,"7837":7,"7838":1,"7839":9,"7840":9,"7841":7,"7842":5,"7843":7,"7844":4,"7845":9,"7846":5,"7847":8,"7848":10,"7849":2,"7850":5,"7851":8,"7852":9,"7853":5,"7854":9,"7855":1,"7856":9,"7857":2,"7858":6,"7859":9,"7860":1,"7861":7,"7862":2,"7863":3,"7864":1,"7865":10,"7866":3,"7867":9,"7868":7,"7869":8,"7870":8,"7871":7,"7872":7,"7873":5,"7874":5,"7875":8,"7876":6,"7877":6,"7878":7,"7879":8,"7880":7,"7881":9,"7882":9,"7883":8,"7884":6,"7885":9,"7886":8,"7887":7,"7888":3,"7889":8,"7890":8,"7891":9,"7892":5,"7893":9,"7894":6,"7895":7,"7896":10,"7897":1,"7898":7,"7899":10,"7900":7,"7901":5,"7902":8,"7903":2,"7904":2,"7905":8,"7906":8,"7907":6,"7908":8,"7909":7,"7910":8,"7911":2,"7912":7,"7913":6,"7914":5,"7915":2,"7916":7,"7917":4,"7918":8,"7919":7,"7920":8,"7921":2,"7922":10,"7923":9,"7924":8,"7925":10,"7926":9,"7927":7,"7928":7,"7929":5,"7930":8,"7931":4,"7932":9,"7933":6,"7934":6,"7935":2,"7936":10,"7937":8,"7938":7,"7939":4,"7940":7,"7941":8,"7942":7,"7943":5,"7944":8,"7945":8,"7946":7,"7947":8,"7948":9,"7949":8,"7950":7,"7951":8,"7952":8,"7953":7,"7954":3,"7955":6,"7956":8,"7957":3,"7958":5,"7959":3,"7960":7,"7961":10,"7962":8,"7963":7,"7964":8,"7965":6,"7966":3,"7967":9,"7968":9,"7969":4,"7970":8,"7971":2,"7972":7,"7973":3,"7974":8,"7975":4,"7976":8,"7977":5,"7978":4,"7979":4,"7980":10,"7981":1,"7982":7,"7983":5,"7984":6,"7985":5,"7986":4,"7987":3,"7988":7,"7989":8,"7990":8,"7991":7,"7992":8,"7993":2,"7994":2,"7995":5,"7996":6,"7997":7,"7998":6,"7999":7,"8000":3,"8001":8,"8002":7,"8003":7,"8004":8,"8005":7,"8006":7,"8007":8,"8008":7,"8009":9,"8010":8,"8011":8,"8012":8,"8013":7,"8014":8,"8015":9,"8016":2,"8017":8,"8018":7,"8019":7,"8020":9,"8021":5,"8022":9,"8023":8,"8024":2,"8025":8,"8026":8,"8027":8,"8028":9,"8029":8,"8030":9,"8031":4,"8032":5,"8033":7,"8034":8,"8035":7,"8036":2,"8037":1,"8038":5,"8039":8,"8040":3,"8041":2,"8042":3,"8043":10,"8044":7,"8045":9,"8046":8,"8047":9,"8048":8,"8049":4,"8050":8,"8051":8,"8052":5,"8053":5,"8054":8,"8055":9,"8056":9,"8057":8,"8058":4,"8059":7,"8060":3,"8061":9,"8062":7,"8063":9,"8064":9,"8065":7,"8066":7,"8067":7,"8068":3,"8069":6,"8070":2,"8071":9,"8072":5,"8073":8,"8074":1,"8075":5,"8076":8,"8077":9,"8078":7,"8079":7,"8080":10,"8081":8,"8082":8,"8083":7,"8084":5,"8085":8,"8086":8,"8087":7,"8088":8,"8089":7,"8090":3,"8091":9,"8092":4,"8093":9,"8094":9,"8095":8,"8096":10,"8097":5,"8098":2,"8099":9,"8100":1,"8101":8,"8102":2,"8103":9,"8104":7,"8105":10,"8106":9,"8107":2,"8108":2,"8109":4,"8110":8,"8111":2,"8112":7,"8113":2,"8114":7,"8115":5,"8116":8,"8117":7,"8118":7,"8119":10,"8120":8,"8121":7,"8122":4,"8123":10,"8124":2,"8125":2,"8126":4,"8127":7,"8128":7,"8129":8,"8130":3,"8131":8,"8132":4,"8133":5,"8134":9,"8135":9,"8136":5,"8137":5,"8138":8,"8139":8,"8140":7,"8141":4,"8142":9,"8143":8,"8144":7,"8145":7,"8146":9,"8147":8,"8148":7,"8149":6,"8150":8,"8151":7,"8152":8,"8153":8,"8154":8,"8155":8,"8156":4,"8157":7,"8158":1,"8159":7,"8160":5,"8161":5,"8162":4,"8163":4,"8164":4,"8165":8,"8166":9,"8167":3,"8168":8,"8169":8,"8170":7,"8171":10,"8172":8,"8173":9,"8174":4,"8175":9,"8176":5,"8177":3,"8178":3,"8179":7,"8180":7,"8181":7,"8182":7,"8183":4,"8184":1,"8185":5,"8186":8,"8187":2,"8188":5,"8189":2,"8190":7,"8191":2,"8192":2,"8193":8,"8194":9,"8195":8,"8196":4,"8197":9,"8198":4,"8199":9,"8200":2,"8201":3,"8202":7,"8203":6,"8204":6,"8205":3,"8206":9,"8207":2,"8208":6,"8209":1,"8210":9,"8211":4,"8212":3,"8213":8,"8214":8,"8215":7,"8216":10,"8217":4,"8218":7,"8219":5,"8220":3,"8221":10,"8222":7,"8223":5,"8224":3,"8225":9,"8226":6,"8227":7,"8228":7,"8229":7,"8230":7,"8231":3,"8232":2,"8233":8,"8234":7,"8235":8,"8236":2,"8237":6,"8238":9,"8239":9,"8240":2,"8241":8,"8242":4,"8243":9,"8244":7,"8245":8,"8246":10,"8247":7,"8248":8,"8249":8,"8250":7,"8251":5,"8252":8,"8253":1,"8254":9,"8255":7,"8256":8,"8257":9,"8258":9,"8259":8,"8260":8,"8261":6,"8262":2,"8263":4,"8264":9,"8265":8,"8266":9,"8267":7,"8268":8,"8269":8,"8270":3,"8271":9,"8272":5,"8273":5,"8274":9,"8275":7,"8276":7,"8277":5,"8278":7,"8279":5,"8280":5,"8281":8,"8282":9,"8283":2,"8284":2,"8285":2,"8286":8,"8287":4,"8288":9,"8289":8,"8290":7,"8291":8,"8292":6,"8293":8,"8294":9,"8295":2,"8296":9,"8297":7,"8298":4,"8299":8,"8300":2,"8301":2,"8302":2,"8303":7,"8304":7,"8305":8,"8306":2,"8307":2,"8308":3,"8309":7,"8310":2,"8311":8,"8312":4,"8313":9,"8314":6,"8315":8,"8316":6,"8317":7,"8318":9,"8319":6,"8320":10,"8321":7,"8322":1,"8323":7,"8324":7,"8325":7,"8326":8,"8327":5,"8328":8,"8329":2,"8330":10,"8331":9,"8332":7,"8333":8,"8334":7,"8335":2,"8336":5,"8337":8,"8338":9,"8339":9,"8340":5,"8341":1,"8342":8,"8343":8,"8344":8,"8345":2,"8346":7,"8347":9,"8348":7,"8349":7,"8350":5,"8351":2,"8352":8,"8353":8,"8354":8,"8355":8,"8356":9,"8357":4,"8358":4,"8359":7,"8360":3,"8361":1,"8362":7,"8363":10,"8364":8,"8365":8,"8366":8,"8367":7,"8368":7,"8369":9,"8370":2,"8371":3,"8372":3,"8373":7,"8374":6,"8375":7,"8376":5,"8377":7,"8378":7,"8379":2,"8380":9,"8381":6,"8382":2,"8383":7,"8384":7,"8385":3,"8386":9,"8387":7,"8388":5,"8389":2,"8390":9,"8391":7,"8392":1,"8393":1,"8394":6,"8395":9,"8396":8,"8397":2,"8398":8,"8399":2,"8400":8,"8401":9,"8402":2,"8403":10,"8404":6,"8405":8,"8406":7,"8407":8,"8408":10,"8409":1,"8410":8,"8411":9,"8412":4,"8413":9,"8414":9,"8415":3,"8416":8,"8417":8,"8418":8,"8419":2,"8420":7,"8421":9,"8422":3,"8423":7,"8424":7,"8425":9,"8426":7,"8427":8,"8428":10,"8429":5,"8430":8,"8431":9,"8432":8,"8433":7,"8434":9,"8435":7,"8436":3,"8437":8,"8438":7,"8439":9,"8440":1,"8441":2,"8442":2,"8443":8,"8444":3,"8445":5,"8446":9,"8447":9,"8448":5,"8449":8,"8450":9,"8451":5,"8452":7,"8453":10,"8454":7,"8455":2,"8456":9,"8457":8,"8458":8,"8459":5,"8460":8,"8461":10,"8462":7,"8463":2,"8464":7,"8465":5,"8466":5,"8467":8,"8468":7,"8469":8,"8470":8,"8471":7,"8472":8,"8473":8,"8474":3,"8475":5,"8476":8,"8477":8,"8478":10,"8479":8,"8480":9,"8481":8,"8482":8,"8483":8,"8484":9,"8485":8,"8486":7,"8487":10,"8488":1,"8489":8,"8490":2,"8491":2,"8492":7,"8493":8,"8494":2,"8495":7,"8496":8,"8497":2,"8498":10,"8499":2,"8500":8,"8501":3,"8502":9,"8503":9,"8504":5,"8505":7,"8506":7,"8507":10,"8508":8,"8509":7,"8510":4,"8511":4,"8512":7,"8513":2,"8514":5,"8515":8,"8516":7,"8517":10,"8518":8,"8519":5,"8520":9,"8521":7,"8522":7,"8523":5,"8524":8,"8525":7,"8526":8,"8527":9,"8528":7,"8529":8,"8530":3,"8531":8,"8532":1,"8533":5,"8534":7,"8535":2,"8536":5,"8537":7,"8538":10,"8539":5,"8540":1,"8541":8,"8542":9,"8543":8,"8544":4,"8545":7,"8546":7,"8547":5,"8548":5,"8549":3,"8550":1,"8551":8,"8552":8,"8553":7,"8554":2,"8555":8,"8556":1,"8557":5,"8558":2,"8559":4,"8560":5,"8561":8,"8562":1,"8563":4,"8564":2,"8565":7,"8566":9,"8567":9,"8568":6,"8569":5,"8570":9,"8571":7,"8572":8,"8573":3,"8574":8,"8575":6,"8576":9,"8577":8,"8578":6,"8579":1,"8580":7,"8581":2,"8582":9,"8583":5,"8584":5,"8585":2,"8586":7,"8587":5,"8588":10,"8589":5,"8590":2,"8591":7,"8592":5,"8593":2,"8594":7,"8595":6,"8596":9,"8597":7,"8598":9,"8599":7,"8600":7,"8601":8,"8602":2,"8603":9,"8604":2,"8605":8,"8606":7,"8607":1,"8608":5,"8609":1,"8610":8,"8611":10,"8612":7,"8613":2,"8614":4,"8615":8,"8616":9,"8617":2,"8618":7,"8619":8,"8620":5,"8621":9,"8622":9,"8623":8,"8624":6,"8625":1,"8626":8,"8627":6,"8628":5,"8629":8,"8630":8,"8631":7,"8632":8,"8633":8,"8634":4,"8635":5,"8636":1,"8637":5,"8638":7,"8639":6,"8640":7,"8641":5,"8642":8,"8643":8,"8644":8,"8645":1,"8646":9,"8647":9,"8648":7,"8649":5,"8650":5,"8651":2,"8652":5,"8653":5,"8654":1,"8655":8,"8656":9,"8657":7,"8658":5,"8659":9,"8660":5,"8661":8,"8662":8,"8663":8,"8664":8,"8665":3,"8666":5,"8667":2,"8668":1,"8669":2,"8670":7,"8671":8,"8672":7,"8673":3,"8674":7,"8675":6,"8676":9,"8677":1,"8678":7,"8679":4,"8680":9,"8681":8,"8682":2,"8683":4,"8684":10,"8685":8,"8686":1,"8687":8,"8688":8,"8689":2,"8690":9,"8691":7,"8692":8,"8693":9,"8694":8,"8695":10,"8696":5,"8697":8,"8698":7,"8699":4,"8700":9,"8701":7,"8702":4,"8703":9,"8704":4,"8705":2,"8706":8,"8707":7,"8708":4,"8709":9,"8710":9,"8711":7,"8712":8,"8713":9,"8714":6,"8715":7,"8716":8,"8717":8,"8718":7,"8719":8,"8720":2,"8721":8,"8722":7,"8723":8,"8724":10,"8725":5,"8726":2,"8727":8,"8728":9,"8729":8,"8730":10,"8731":8,"8732":8,"8733":9,"8734":8,"8735":7,"8736":3,"8737":8,"8738":8,"8739":3,"8740":8,"8741":4,"8742":1,"8743":9,"8744":1,"8745":7,"8746":8,"8747":2,"8748":9,"8749":7,"8750":8,"8751":8,"8752":9,"8753":8,"8754":7,"8755":4,"8756":9,"8757":3,"8758":6,"8759":9,"8760":6,"8761":6,"8762":7,"8763":9,"8764":6,"8765":2,"8766":2,"8767":9,"8768":8,"8769":10,"8770":7,"8771":9,"8772":2,"8773":1,"8774":5,"8775":2,"8776":7,"8777":5,"8778":7,"8779":1,"8780":3,"8781":2,"8782":7,"8783":5,"8784":8,"8785":8,"8786":10,"8787":8,"8788":9,"8789":9,"8790":7,"8791":3,"8792":5,"8793":7,"8794":5,"8795":4,"8796":5,"8797":2,"8798":3,"8799":3,"8800":9,"8801":8,"8802":5,"8803":8,"8804":9,"8805":7,"8806":7,"8807":8,"8808":6,"8809":7,"8810":2,"8811":1,"8812":5,"8813":5,"8814":3,"8815":7,"8816":9,"8817":7,"8818":7,"8819":10,"8820":8,"8821":4,"8822":9,"8823":6,"8824":8,"8825":10,"8826":8,"8827":4,"8828":9,"8829":7,"8830":9,"8831":4,"8832":5,"8833":8,"8834":10,"8835":5,"8836":3,"8837":10,"8838":7,"8839":7,"8840":8,"8841":9,"8842":9,"8843":4,"8844":5,"8845":7,"8846":2,"8847":8,"8848":2,"8849":2,"8850":8,"8851":9,"8852":6,"8853":3,"8854":2,"8855":6,"8856":8,"8857":2,"8858":2,"8859":2,"8860":8,"8861":5,"8862":7,"8863":3,"8864":7,"8865":2,"8866":7,"8867":2,"8868":8,"8869":2,"8870":7,"8871":8,"8872":9,"8873":7,"8874":7,"8875":10,"8876":7,"8877":2,"8878":2,"8879":4,"8880":3,"8881":1,"8882":4,"8883":10,"8884":10,"8885":7,"8886":8,"8887":9,"8888":7,"8889":2,"8890":5,"8891":9,"8892":3,"8893":9,"8894":2,"8895":8,"8896":7,"8897":8,"8898":5,"8899":7,"8900":9,"8901":7,"8902":7,"8903":4,"8904":7,"8905":1,"8906":7,"8907":2,"8908":7,"8909":7,"8910":2,"8911":10,"8912":8,"8913":8,"8914":3,"8915":2,"8916":5,"8917":2,"8918":8,"8919":9,"8920":6,"8921":7,"8922":8,"8923":3,"8924":8,"8925":5,"8926":2,"8927":8,"8928":7,"8929":8,"8930":5,"8931":2,"8932":3,"8933":8,"8934":7,"8935":10,"8936":3,"8937":8,"8938":5,"8939":8,"8940":9,"8941":5,"8942":10,"8943":7,"8944":5,"8945":7,"8946":1,"8947":7,"8948":5,"8949":7,"8950":5,"8951":9,"8952":10,"8953":4,"8954":8,"8955":7,"8956":3,"8957":2,"8958":9,"8959":5,"8960":8,"8961":1,"8962":4,"8963":2,"8964":3,"8965":4,"8966":4,"8967":7,"8968":5,"8969":7,"8970":9,"8971":4,"8972":8,"8973":1,"8974":7,"8975":1,"8976":8,"8977":8,"8978":7,"8979":5,"8980":2,"8981":7,"8982":8,"8983":8,"8984":5,"8985":7,"8986":8,"8987":5,"8988":8,"8989":7,"8990":9,"8991":10,"8992":5,"8993":2,"8994":4,"8995":8,"8996":2,"8997":10,"8998":7,"8999":9,"9000":8,"9001":9,"9002":10,"9003":7,"9004":8,"9005":6,"9006":10,"9007":8,"9008":3,"9009":5,"9010":7,"9011":5,"9012":7,"9013":2,"9014":7,"9015":8,"9016":1,"9017":8,"9018":9,"9019":5,"9020":8,"9021":8,"9022":8,"9023":9,"9024":8,"9025":4,"9026":3,"9027":9,"9028":7,"9029":9,"9030":5,"9031":10,"9032":10,"9033":2,"9034":9,"9035":7,"9036":7,"9037":7,"9038":7,"9039":3,"9040":9,"9041":9,"9042":8,"9043":8,"9044":2,"9045":9,"9046":10,"9047":1,"9048":9,"9049":8,"9050":8,"9051":1,"9052":6,"9053":9,"9054":7,"9055":5,"9056":5,"9057":2,"9058":5,"9059":4,"9060":7,"9061":1,"9062":6,"9063":7,"9064":8,"9065":8,"9066":4,"9067":3,"9068":8,"9069":9,"9070":7,"9071":2,"9072":7,"9073":7,"9074":2,"9075":3,"9076":9,"9077":5,"9078":5,"9079":1,"9080":1,"9081":6,"9082":5,"9083":5,"9084":8,"9085":3,"9086":8,"9087":2,"9088":7,"9089":3,"9090":3,"9091":7,"9092":2,"9093":7,"9094":8,"9095":6,"9096":8,"9097":7,"9098":8,"9099":7,"9100":2,"9101":7,"9102":7,"9103":10,"9104":6,"9105":9,"9106":9,"9107":5,"9108":8,"9109":9,"9110":1,"9111":2,"9112":8,"9113":2,"9114":7,"9115":7,"9116":7,"9117":7,"9118":2,"9119":4,"9120":8,"9121":3,"9122":2,"9123":1,"9124":5,"9125":1,"9126":7,"9127":7,"9128":5,"9129":6,"9130":9,"9131":5,"9132":8,"9133":8,"9134":7,"9135":5,"9136":4,"9137":2,"9138":9,"9139":7,"9140":6,"9141":5,"9142":8,"9143":7,"9144":8,"9145":7,"9146":10,"9147":7,"9148":1,"9149":3,"9150":3,"9151":7,"9152":5,"9153":7,"9154":10,"9155":5,"9156":3,"9157":7,"9158":1,"9159":7,"9160":2,"9161":8,"9162":8,"9163":1,"9164":6,"9165":4,"9166":8,"9167":9,"9168":2,"9169":9,"9170":8,"9171":9,"9172":9,"9173":8,"9174":2,"9175":3,"9176":7,"9177":7,"9178":6,"9179":7,"9180":6,"9181":9,"9182":4,"9183":7,"9184":5,"9185":7,"9186":9,"9187":8,"9188":7,"9189":5,"9190":7,"9191":7,"9192":9,"9193":5,"9194":7,"9195":8,"9196":9,"9197":10,"9198":8,"9199":8,"9200":5,"9201":8,"9202":9,"9203":9,"9204":9,"9205":5,"9206":6,"9207":5,"9208":7,"9209":8,"9210":7,"9211":5,"9212":7,"9213":9,"9214":7,"9215":1,"9216":6,"9217":2,"9218":9,"9219":4,"9220":9,"9221":7,"9222":8,"9223":8,"9224":8,"9225":5,"9226":8,"9227":5,"9228":9,"9229":8,"9230":9,"9231":7,"9232":2,"9233":3,"9234":9,"9235":8,"9236":5,"9237":2,"9238":7,"9239":7,"9240":4,"9241":9,"9242":8,"9243":5,"9244":9,"9245":7,"9246":7,"9247":8,"9248":8,"9249":8,"9250":8,"9251":9,"9252":8,"9253":7,"9254":7,"9255":2,"9256":5,"9257":10,"9258":3,"9259":7,"9260":7,"9261":2,"9262":9,"9263":10,"9264":4,"9265":7,"9266":8,"9267":8,"9268":7,"9269":9,"9270":5,"9271":8,"9272":1,"9273":8,"9274":9,"9275":9,"9276":5,"9277":1,"9278":9,"9279":5,"9280":10,"9281":4,"9282":7,"9283":7,"9284":7,"9285":6,"9286":4,"9287":9,"9288":6,"9289":8,"9290":4,"9291":8,"9292":9,"9293":2,"9294":5,"9295":7,"9296":8,"9297":5,"9298":7,"9299":4,"9300":10,"9301":2,"9302":8,"9303":7,"9304":6,"9305":9,"9306":2,"9307":8,"9308":4,"9309":7,"9310":6,"9311":1,"9312":5,"9313":4,"9314":2,"9315":4,"9316":2,"9317":5,"9318":9,"9319":8,"9320":7,"9321":6,"9322":2,"9323":7,"9324":2,"9325":8,"9326":8,"9327":2,"9328":9,"9329":7,"9330":10,"9331":8,"9332":2,"9333":1,"9334":4,"9335":7,"9336":2,"9337":9,"9338":5,"9339":9,"9340":7,"9341":8,"9342":10,"9343":1,"9344":5,"9345":1,"9346":5,"9347":8,"9348":3,"9349":8,"9350":7,"9351":3,"9352":2,"9353":9,"9354":9,"9355":4,"9356":10,"9357":6,"9358":8,"9359":8,"9360":6,"9361":8,"9362":9,"9363":8,"9364":9,"9365":10,"9366":7,"9367":8,"9368":10,"9369":2,"9370":8,"9371":8,"9372":5,"9373":7,"9374":9,"9375":9,"9376":9,"9377":10,"9378":7,"9379":7,"9380":6,"9381":8,"9382":9,"9383":6,"9384":8,"9385":2,"9386":6,"9387":10,"9388":7,"9389":9,"9390":9,"9391":7,"9392":10,"9393":9,"9394":4,"9395":9,"9396":7,"9397":8,"9398":8,"9399":10,"9400":9,"9401":2,"9402":9,"9403":7,"9404":2,"9405":7,"9406":6,"9407":2,"9408":5,"9409":9,"9410":8,"9411":7,"9412":6,"9413":8,"9414":9,"9415":7,"9416":2,"9417":9,"9418":7,"9419":8,"9420":7,"9421":9,"9422":7,"9423":9,"9424":6,"9425":10,"9426":6,"9427":3,"9428":2,"9429":5,"9430":7,"9431":6,"9432":2,"9433":10,"9434":2,"9435":5,"9436":8,"9437":4,"9438":10,"9439":6,"9440":7,"9441":8,"9442":5,"9443":7,"9444":10,"9445":8,"9446":10,"9447":1,"9448":6,"9449":2,"9450":1,"9451":7,"9452":1,"9453":8,"9454":5,"9455":7,"9456":4,"9457":4,"9458":4,"9459":2,"9460":8,"9461":5,"9462":7,"9463":7,"9464":4,"9465":2,"9466":8,"9467":10,"9468":4,"9469":9,"9470":8,"9471":8,"9472":8,"9473":8,"9474":2,"9475":10,"9476":1,"9477":8,"9478":7,"9479":2,"9480":7,"9481":7,"9482":8,"9483":6,"9484":10,"9485":9,"9486":5,"9487":7,"9488":2,"9489":8,"9490":5,"9491":8,"9492":7,"9493":3,"9494":4,"9495":2,"9496":2,"9497":8,"9498":9,"9499":3,"9500":3,"9501":9,"9502":7,"9503":6,"9504":1,"9505":6,"9506":5,"9507":7,"9508":7,"9509":10,"9510":9,"9511":10,"9512":6,"9513":2,"9514":2,"9515":7,"9516":9,"9517":4,"9518":7,"9519":8,"9520":9,"9521":8,"9522":3,"9523":8,"9524":4,"9525":8,"9526":7,"9527":2,"9528":5,"9529":7,"9530":8,"9531":4,"9532":4,"9533":2,"9534":1,"9535":4,"9536":5,"9537":5,"9538":7,"9539":8,"9540":5,"9541":1,"9542":10,"9543":5,"9544":7,"9545":3,"9546":7,"9547":9,"9548":2,"9549":7,"9550":7,"9551":9,"9552":9,"9553":2,"9554":7,"9555":3,"9556":4,"9557":10,"9558":6,"9559":7,"9560":10,"9561":6,"9562":2,"9563":9,"9564":8,"9565":7,"9566":7,"9567":3,"9568":8,"9569":7,"9570":1,"9571":6,"9572":9,"9573":7,"9574":7,"9575":6,"9576":8,"9577":10,"9578":6,"9579":8,"9580":6,"9581":4,"9582":9,"9583":7,"9584":7,"9585":3,"9586":3,"9587":2,"9588":8,"9589":3,"9590":1,"9591":7,"9592":1,"9593":9,"9594":10,"9595":3,"9596":8,"9597":2,"9598":6,"9599":7,"9600":2,"9601":5,"9602":3,"9603":9,"9604":5,"9605":9,"9606":9,"9607":2,"9608":7,"9609":8,"9610":4,"9611":7,"9612":8,"9613":7,"9614":6,"9615":8,"9616":8,"9617":8,"9618":7,"9619":9,"9620":1,"9621":5,"9622":8,"9623":2,"9624":10,"9625":2,"9626":5,"9627":3,"9628":8,"9629":1,"9630":9,"9631":2,"9632":6,"9633":1,"9634":6,"9635":9,"9636":1,"9637":8,"9638":8,"9639":7,"9640":10,"9641":9,"9642":7,"9643":7,"9644":9,"9645":5,"9646":1,"9647":2,"9648":7,"9649":10,"9650":7,"9651":9,"9652":3,"9653":9,"9654":9,"9655":2,"9656":2,"9657":4,"9658":2,"9659":8,"9660":9,"9661":1,"9662":2,"9663":9,"9664":5,"9665":5,"9666":4,"9667":8,"9668":7,"9669":7,"9670":7,"9671":8,"9672":8,"9673":7,"9674":7,"9675":9,"9676":7,"9677":8,"9678":9,"9679":3,"9680":6,"9681":8,"9682":9,"9683":8,"9684":8,"9685":5,"9686":8,"9687":7,"9688":2,"9689":7,"9690":8,"9691":7,"9692":7,"9693":9,"9694":8,"9695":4,"9696":5,"9697":7,"9698":8,"9699":5,"9700":5,"9701":7,"9702":7,"9703":8,"9704":4,"9705":9,"9706":1,"9707":7,"9708":2,"9709":2,"9710":7,"9711":1,"9712":9,"9713":7,"9714":8,"9715":8,"9716":7,"9717":5,"9718":8,"9719":10,"9720":1,"9721":9,"9722":2,"9723":8,"9724":8,"9725":2,"9726":1,"9727":7,"9728":5,"9729":3,"9730":7,"9731":3,"9732":8,"9733":8,"9734":7,"9735":9,"9736":7,"9737":7,"9738":7,"9739":4,"9740":7,"9741":8,"9742":7,"9743":8,"9744":4,"9745":8,"9746":8,"9747":10,"9748":5,"9749":8,"9750":8,"9751":8,"9752":9,"9753":7,"9754":10,"9755":5,"9756":10,"9757":3,"9758":9,"9759":10,"9760":7,"9761":3,"9762":9,"9763":7,"9764":7,"9765":2,"9766":2,"9767":6,"9768":5,"9769":7,"9770":7,"9771":8,"9772":8,"9773":9,"9774":8,"9775":6,"9776":9,"9777":8,"9778":9,"9779":10,"9780":8,"9781":6,"9782":9,"9783":7,"9784":9,"9785":1,"9786":3,"9787":9,"9788":2,"9789":2,"9790":5,"9791":7,"9792":5,"9793":8,"9794":9,"9795":7,"9796":7,"9797":6,"9798":7,"9799":8,"9800":7,"9801":2,"9802":8,"9803":9,"9804":2,"9805":6,"9806":1,"9807":8,"9808":4,"9809":8,"9810":8,"9811":10,"9812":1,"9813":7,"9814":9,"9815":8,"9816":10,"9817":8,"9818":10,"9819":9,"9820":2,"9821":10,"9822":7,"9823":7,"9824":2,"9825":2,"9826":2,"9827":2,"9828":8,"9829":7,"9830":3,"9831":10,"9832":10,"9833":8,"9834":5,"9835":10,"9836":9,"9837":1,"9838":8,"9839":1,"9840":5,"9841":8,"9842":10,"9843":7,"9844":9,"9845":7,"9846":6,"9847":9,"9848":3,"9849":1,"9850":2,"9851":7,"9852":7,"9853":3,"9854":8,"9855":5,"9856":5,"9857":7,"9858":8,"9859":7,"9860":8,"9861":1,"9862":3,"9863":7,"9864":6,"9865":9,"9866":7,"9867":3,"9868":8,"9869":7,"9870":8,"9871":7,"9872":7,"9873":9,"9874":7,"9875":8,"9876":9,"9877":5,"9878":7,"9879":1,"9880":5,"9881":9,"9882":7,"9883":3,"9884":9,"9885":9,"9886":2,"9887":8,"9888":7,"9889":7,"9890":2,"9891":7,"9892":1,"9893":7,"9894":1,"9895":8,"9896":9,"9897":1,"9898":10,"9899":2,"9900":8,"9901":9,"9902":2,"9903":8,"9904":1,"9905":3,"9906":8,"9907":9,"9908":10,"9909":4,"9910":4,"9911":7,"9912":9,"9913":3,"9914":7,"9915":7,"9916":5,"9917":7,"9918":9,"9919":2,"9920":9,"9921":2,"9922":4,"9923":7,"9924":6,"9925":3,"9926":8,"9927":7,"9928":3,"9929":2,"9930":7,"9931":9,"9932":7,"9933":7,"9934":9,"9935":8,"9936":3,"9937":7,"9938":9,"9939":8,"9940":9,"9941":8,"9942":8,"9943":8,"9944":7,"9945":9,"9946":8,"9947":2,"9948":2,"9949":6,"9950":7,"9951":9,"9952":5,"9953":8,"9954":9,"9955":7,"9956":9,"9957":8,"9958":7,"9959":8,"9960":4,"9961":7,"9962":3,"9963":2,"9964":5,"9965":9,"9966":5,"9967":8,"9968":2,"9969":1,"9970":4,"9971":9,"9972":9,"9973":10,"9974":5,"9975":9,"9976":10,"9977":9,"9978":2,"9979":9,"9980":5,"9981":3,"9982":8,"9983":7,"9984":2,"9985":8,"9986":8,"9987":6,"9988":7,"9989":7,"9990":10,"9991":10,"9992":5,"9993":7,"9994":8,"9995":8,"9996":9,"9997":5,"9998":1,"9999":7,"10000":9,"10001":8,"10002":2,"10003":9,"10004":9,"10005":3,"10006":8,"10007":5,"10008":8,"10009":5,"10010":9,"10011":7,"10012":2,"10013":2,"10014":9,"10015":2,"10016":8,"10017":3,"10018":6,"10019":7,"10020":8,"10021":10,"10022":9,"10023":8,"10024":7,"10025":9,"10026":8,"10027":9,"10028":5,"10029":2,"10030":5,"10031":5,"10032":10,"10033":9,"10034":7,"10035":2,"10036":3,"10037":8,"10038":3,"10039":10,"10040":5,"10041":6,"10042":3,"10043":1,"10044":10,"10045":7,"10046":4,"10047":9,"10048":2,"10049":4,"10050":5,"10051":2,"10052":6,"10053":9,"10054":9,"10055":9,"10056":5,"10057":7,"10058":7,"10059":7,"10060":4,"10061":10,"10062":9,"10063":9,"10064":5,"10065":1,"10066":8,"10067":7,"10068":4,"10069":8,"10070":2,"10071":8,"10072":7,"10073":3,"10074":9,"10075":4,"10076":6,"10077":9,"10078":10,"10079":6,"10080":6,"10081":6,"10082":8,"10083":8,"10084":5,"10085":5,"10086":8,"10087":7,"10088":6,"10089":6,"10090":4,"10091":9,"10092":7,"10093":9,"10094":2,"10095":5,"10096":8,"10097":5,"10098":8,"10099":2,"10100":5,"10101":2,"10102":9,"10103":8,"10104":10,"10105":8,"10106":7,"10107":8,"10108":8,"10109":3,"10110":6,"10111":8,"10112":5,"10113":8,"10114":9,"10115":9,"10116":6,"10117":7,"10118":7,"10119":2,"10120":7,"10121":9,"10122":2,"10123":8,"10124":7,"10125":5,"10126":7,"10127":3,"10128":5,"10129":7,"10130":5,"10131":7,"10132":8,"10133":9,"10134":9,"10135":6,"10136":9,"10137":8,"10138":7,"10139":9,"10140":5,"10141":8,"10142":7,"10143":9,"10144":7,"10145":8,"10146":5,"10147":3,"10148":7,"10149":5,"10150":7,"10151":7,"10152":5,"10153":7,"10154":10,"10155":7,"10156":5,"10157":10,"10158":3,"10159":7,"10160":8,"10161":8,"10162":7,"10163":9,"10164":3,"10165":9,"10166":2,"10167":7,"10168":9,"10169":10,"10170":7,"10171":2,"10172":8,"10173":2,"10174":10,"10175":4,"10176":8,"10177":5,"10178":7,"10179":7,"10180":1,"10181":9,"10182":4,"10183":6,"10184":8,"10185":9,"10186":6,"10187":7,"10188":9,"10189":5,"10190":5,"10191":9,"10192":10,"10193":9,"10194":9,"10195":5,"10196":9,"10197":9,"10198":4,"10199":9,"10200":8,"10201":7,"10202":5,"10203":1,"10204":8,"10205":4,"10206":2,"10207":7,"10208":8,"10209":7,"10210":2,"10211":2,"10212":6,"10213":7,"10214":7,"10215":3,"10216":8,"10217":9,"10218":8,"10219":5,"10220":2,"10221":9,"10222":7,"10223":5,"10224":5,"10225":7,"10226":8,"10227":3,"10228":9,"10229":1,"10230":9,"10231":6,"10232":3,"10233":6,"10234":2,"10235":8,"10236":2,"10237":9,"10238":7,"10239":8,"10240":2,"10241":7,"10242":6,"10243":9,"10244":9,"10245":10,"10246":8,"10247":7,"10248":7,"10249":6,"10250":10,"10251":9,"10252":9,"10253":8,"10254":5,"10255":7,"10256":4,"10257":2,"10258":10,"10259":2,"10260":2,"10261":2,"10262":3,"10263":9,"10264":2,"10265":2,"10266":8,"10267":5,"10268":7,"10269":6,"10270":10,"10271":10,"10272":10,"10273":7,"10274":8,"10275":9,"10276":3,"10277":8,"10278":2,"10279":9,"10280":7,"10281":7,"10282":6,"10283":6,"10284":2,"10285":7,"10286":3,"10287":10,"10288":7,"10289":9,"10290":9,"10291":5,"10292":7,"10293":4,"10294":5,"10295":8,"10296":8,"10297":7,"10298":5,"10299":5,"10300":5,"10301":8,"10302":5,"10303":9,"10304":9,"10305":2,"10306":4,"10307":8,"10308":7,"10309":8,"10310":7,"10311":7,"10312":7,"10313":4,"10314":8,"10315":7,"10316":9,"10317":5,"10318":10,"10319":7,"10320":10,"10321":4,"10322":8,"10323":3,"10324":9,"10325":8,"10326":3,"10327":1,"10328":9,"10329":1,"10330":8,"10331":1,"10332":5,"10333":2,"10334":10,"10335":7,"10336":8,"10337":7,"10338":1,"10339":1,"10340":7,"10341":7,"10342":2,"10343":5,"10344":1,"10345":8,"10346":5,"10347":3,"10348":8,"10349":8,"10350":1,"10351":3,"10352":5,"10353":9,"10354":10,"10355":6,"10356":5,"10357":2,"10358":6,"10359":3,"10360":7,"10361":8,"10362":8,"10363":8,"10364":5,"10365":9,"10366":9,"10367":10,"10368":8,"10369":9,"10370":7,"10371":10,"10372":9,"10373":7,"10374":8,"10375":1,"10376":5,"10377":8,"10378":4,"10379":2,"10380":1,"10381":3,"10382":9,"10383":5,"10384":10,"10385":7,"10386":8,"10387":10,"10388":5,"10389":5,"10390":2,"10391":7,"10392":3,"10393":2,"10394":8,"10395":3,"10396":2,"10397":7,"10398":6,"10399":1,"10400":2,"10401":9,"10402":3,"10403":9,"10404":7,"10405":8,"10406":7,"10407":7,"10408":7,"10409":4,"10410":8,"10411":9,"10412":1,"10413":5,"10414":10,"10415":9,"10416":1,"10417":2,"10418":2,"10419":5,"10420":3,"10421":9,"10422":9,"10423":8,"10424":7,"10425":7,"10426":5,"10427":8,"10428":7,"10429":2,"10430":2,"10431":7,"10432":7,"10433":8,"10434":3,"10435":9,"10436":10,"10437":8,"10438":9,"10439":9,"10440":9,"10441":9,"10442":7,"10443":3,"10444":1,"10445":8,"10446":7,"10447":9,"10448":4,"10449":3,"10450":7,"10451":1,"10452":7,"10453":1,"10454":7,"10455":2,"10456":3,"10457":6,"10458":1,"10459":1,"10460":5,"10461":9,"10462":9,"10463":8,"10464":7,"10465":8,"10466":7,"10467":7,"10468":7,"10469":1,"10470":7,"10471":8,"10472":8,"10473":8,"10474":7,"10475":3,"10476":5,"10477":8,"10478":8,"10479":9,"10480":6,"10481":2,"10482":4,"10483":2,"10484":4,"10485":2,"10486":9,"10487":8,"10488":7,"10489":8,"10490":8,"10491":3,"10492":1,"10493":9,"10494":9,"10495":8,"10496":5,"10497":7,"10498":7,"10499":5,"10500":9,"10501":7,"10502":5,"10503":10,"10504":7,"10505":1,"10506":8,"10507":8,"10508":8,"10509":2,"10510":7,"10511":7,"10512":8,"10513":2,"10514":7,"10515":7,"10516":5,"10517":8,"10518":2,"10519":6,"10520":7,"10521":4,"10522":8,"10523":7,"10524":1,"10525":7,"10526":4,"10527":5,"10528":7,"10529":10,"10530":3,"10531":8,"10532":9,"10533":6,"10534":5,"10535":7,"10536":7,"10537":1,"10538":4,"10539":7,"10540":3,"10541":7,"10542":7,"10543":2,"10544":10,"10545":1,"10546":10,"10547":7,"10548":7,"10549":4,"10550":5,"10551":3,"10552":10,"10553":9,"10554":8,"10555":10,"10556":7,"10557":10,"10558":7,"10559":8,"10560":8,"10561":9,"10562":7,"10563":7,"10564":9,"10565":8,"10566":2,"10567":8,"10568":9,"10569":9,"10570":9,"10571":8,"10572":5,"10573":9,"10574":4,"10575":2,"10576":10,"10577":1,"10578":7,"10579":7,"10580":7,"10581":5,"10582":9,"10583":10,"10584":7,"10585":5,"10586":9,"10587":1,"10588":5,"10589":8,"10590":10,"10591":8,"10592":1,"10593":10,"10594":6,"10595":7,"10596":7,"10597":8,"10598":8,"10599":8,"10600":9,"10601":5,"10602":2,"10603":7,"10604":4,"10605":7,"10606":5,"10607":9,"10608":8,"10609":2,"10610":9,"10611":4,"10612":2,"10613":9,"10614":7,"10615":1,"10616":7,"10617":7,"10618":4,"10619":7,"10620":7,"10621":4,"10622":7,"10623":8,"10624":8,"10625":8,"10626":8,"10627":5,"10628":5,"10629":6,"10630":2,"10631":9,"10632":7,"10633":2,"10634":8,"10635":1,"10636":7,"10637":5,"10638":3,"10639":5,"10640":2,"10641":8,"10642":8,"10643":9,"10644":6,"10645":7,"10646":9,"10647":8,"10648":7,"10649":7,"10650":9,"10651":5,"10652":4,"10653":9,"10654":6,"10655":10,"10656":5,"10657":5,"10658":5,"10659":8,"10660":9,"10661":7,"10662":9,"10663":9,"10664":7,"10665":6,"10666":3,"10667":8,"10668":8,"10669":3,"10670":1,"10671":4,"10672":5,"10673":4,"10674":2,"10675":5,"10676":5,"10677":9,"10678":3,"10679":8,"10680":7,"10681":7,"10682":5,"10683":9,"10684":8,"10685":5,"10686":7,"10687":4,"10688":5,"10689":2,"10690":8,"10691":9,"10692":1,"10693":9,"10694":2,"10695":3,"10696":7,"10697":8,"10698":8,"10699":9,"10700":6,"10701":3,"10702":8,"10703":5,"10704":7,"10705":7,"10706":7,"10707":3,"10708":7,"10709":8,"10710":3,"10711":8,"10712":8,"10713":10,"10714":2,"10715":5,"10716":8,"10717":9,"10718":8,"10719":5,"10720":9,"10721":9,"10722":3,"10723":2,"10724":7,"10725":8,"10726":7,"10727":8,"10728":3,"10729":2,"10730":1,"10731":9,"10732":7,"10733":8,"10734":8,"10735":8,"10736":7,"10737":1,"10738":8,"10739":2,"10740":5,"10741":5,"10742":7,"10743":8,"10744":3,"10745":4,"10746":2,"10747":7,"10748":8,"10749":9,"10750":7,"10751":10,"10752":8,"10753":2,"10754":7,"10755":4,"10756":10,"10757":2,"10758":2,"10759":9,"10760":9,"10761":5,"10762":7,"10763":7,"10764":7,"10765":8,"10766":9,"10767":10,"10768":2,"10769":5,"10770":3,"10771":9,"10772":8,"10773":7,"10774":10,"10775":8,"10776":3,"10777":8,"10778":9,"10779":8,"10780":1,"10781":2,"10782":7,"10783":4,"10784":2,"10785":8,"10786":5,"10787":5,"10788":9,"10789":9,"10790":7,"10791":8,"10792":2,"10793":5,"10794":6,"10795":4,"10796":8,"10797":10,"10798":9,"10799":9,"10800":1,"10801":5,"10802":2,"10803":3,"10804":10,"10805":8,"10806":5,"10807":9,"10808":9,"10809":9,"10810":1,"10811":7,"10812":5,"10813":8,"10814":2,"10815":1,"10816":10,"10817":6,"10818":3,"10819":7,"10820":10,"10821":8,"10822":7,"10823":10,"10824":2,"10825":1,"10826":4,"10827":7,"10828":2,"10829":8,"10830":9,"10831":9,"10832":8,"10833":2,"10834":8,"10835":3,"10836":8,"10837":2,"10838":8,"10839":9,"10840":9,"10841":7,"10842":9,"10843":8,"10844":6,"10845":8,"10846":8,"10847":2,"10848":10,"10849":7,"10850":8,"10851":2,"10852":5,"10853":3,"10854":4,"10855":9,"10856":8,"10857":9,"10858":9,"10859":9,"10860":8,"10861":4,"10862":7,"10863":5,"10864":5,"10865":9,"10866":6,"10867":7,"10868":5,"10869":9,"10870":7,"10871":1,"10872":2,"10873":6,"10874":3,"10875":3,"10876":7,"10877":6,"10878":7,"10879":10,"10880":7,"10881":10,"10882":2,"10883":5,"10884":8,"10885":2,"10886":8,"10887":9,"10888":1,"10889":9,"10890":1,"10891":4,"10892":8,"10893":4,"10894":10,"10895":4,"10896":9,"10897":3,"10898":6,"10899":7,"10900":7,"10901":1,"10902":9,"10903":7,"10904":9,"10905":8,"10906":9,"10907":8,"10908":2,"10909":8,"10910":7,"10911":8,"10912":9,"10913":9,"10914":1,"10915":9,"10916":5,"10917":2,"10918":2,"10919":6,"10920":2,"10921":7,"10922":4,"10923":7,"10924":8,"10925":9,"10926":1,"10927":9,"10928":8,"10929":2,"10930":7,"10931":7,"10932":9,"10933":4,"10934":7,"10935":8,"10936":4,"10937":10,"10938":9,"10939":7,"10940":9,"10941":9,"10942":7,"10943":7,"10944":4,"10945":5,"10946":9,"10947":7,"10948":6,"10949":9,"10950":7,"10951":4,"10952":4,"10953":2,"10954":8,"10955":8,"10956":5,"10957":8,"10958":1,"10959":8,"10960":1,"10961":2,"10962":7,"10963":6,"10964":8,"10965":7,"10966":5,"10967":10,"10968":7,"10969":10,"10970":8,"10971":7,"10972":8,"10973":10,"10974":8,"10975":8,"10976":7,"10977":2,"10978":5,"10979":7,"10980":5,"10981":2,"10982":6,"10983":8,"10984":1,"10985":8,"10986":7,"10987":5,"10988":8,"10989":8,"10990":5,"10991":6,"10992":1,"10993":2,"10994":7,"10995":10,"10996":1,"10997":8,"10998":2,"10999":8,"11000":6,"11001":6,"11002":2,"11003":9,"11004":6,"11005":8,"11006":6,"11007":7,"11008":3,"11009":8,"11010":2,"11011":4,"11012":10,"11013":5,"11014":9,"11015":3,"11016":8,"11017":7,"11018":9,"11019":8,"11020":2,"11021":9,"11022":7,"11023":9,"11024":6,"11025":9,"11026":2,"11027":8,"11028":7,"11029":8,"11030":9,"11031":9,"11032":10,"11033":5,"11034":10,"11035":5,"11036":2,"11037":8,"11038":9,"11039":2,"11040":7,"11041":8,"11042":8,"11043":3,"11044":9,"11045":2,"11046":7,"11047":7,"11048":5,"11049":10,"11050":6,"11051":8,"11052":7,"11053":7,"11054":9,"11055":5,"11056":7,"11057":1,"11058":2,"11059":10,"11060":3,"11061":9,"11062":4,"11063":8,"11064":1,"11065":7,"11066":5,"11067":9,"11068":8,"11069":8,"11070":9,"11071":5,"11072":7,"11073":3,"11074":9,"11075":10,"11076":6,"11077":8,"11078":9,"11079":9,"11080":2,"11081":5,"11082":4,"11083":10,"11084":8,"11085":5,"11086":8,"11087":9,"11088":5,"11089":9,"11090":7,"11091":4,"11092":2,"11093":2,"11094":9,"11095":5,"11096":10,"11097":3,"11098":7,"11099":2,"11100":1,"11101":7,"11102":5,"11103":3,"11104":2,"11105":7,"11106":5,"11107":5,"11108":5,"11109":7,"11110":7,"11111":8,"11112":5,"11113":7,"11114":2,"11115":9,"11116":8,"11117":9,"11118":7,"11119":2,"11120":7,"11121":5,"11122":2,"11123":8,"11124":9,"11125":9,"11126":9,"11127":2,"11128":8,"11129":1,"11130":2,"11131":7,"11132":5,"11133":9,"11134":2,"11135":2,"11136":9,"11137":9,"11138":10,"11139":6,"11140":5,"11141":5,"11142":1,"11143":7,"11144":7,"11145":7,"11146":5,"11147":8,"11148":8,"11149":6,"11150":2,"11151":9,"11152":7,"11153":6,"11154":6,"11155":9,"11156":5,"11157":2,"11158":9,"11159":7,"11160":3,"11161":7,"11162":9,"11163":7,"11164":7,"11165":7,"11166":6,"11167":9,"11168":2,"11169":2,"11170":7,"11171":7,"11172":6,"11173":7,"11174":6,"11175":8,"11176":7,"11177":2,"11178":8,"11179":2,"11180":1,"11181":6,"11182":4,"11183":8,"11184":5,"11185":7,"11186":4,"11187":7,"11188":9,"11189":8,"11190":7,"11191":10,"11192":2,"11193":8,"11194":7,"11195":1,"11196":7,"11197":5,"11198":8,"11199":7,"11200":7,"11201":7,"11202":7,"11203":9,"11204":5,"11205":8,"11206":9,"11207":7,"11208":2,"11209":9,"11210":7,"11211":7,"11212":9,"11213":8,"11214":6,"11215":10,"11216":7,"11217":1,"11218":2,"11219":6,"11220":6,"11221":5,"11222":5,"11223":4,"11224":1,"11225":5,"11226":7,"11227":10,"11228":5,"11229":4,"11230":7,"11231":10,"11232":9,"11233":7,"11234":7,"11235":5,"11236":8,"11237":7,"11238":9,"11239":8,"11240":7,"11241":4,"11242":2,"11243":8,"11244":7,"11245":2,"11246":9,"11247":9,"11248":4,"11249":7,"11250":5,"11251":8,"11252":6,"11253":7,"11254":9,"11255":6,"11256":9,"11257":9,"11258":1,"11259":8,"11260":5,"11261":8,"11262":2,"11263":4,"11264":7,"11265":7,"11266":9,"11267":8,"11268":10,"11269":8,"11270":9,"11271":7,"11272":10,"11273":7,"11274":7,"11275":7,"11276":5,"11277":2,"11278":9,"11279":9,"11280":7,"11281":8,"11282":2,"11283":5,"11284":8,"11285":9,"11286":10,"11287":7,"11288":7,"11289":8,"11290":2,"11291":7,"11292":4,"11293":1,"11294":7,"11295":3,"11296":8,"11297":2,"11298":7,"11299":8,"11300":6,"11301":8,"11302":9,"11303":2,"11304":7,"11305":10,"11306":2,"11307":8,"11308":6,"11309":5,"11310":8,"11311":5,"11312":3,"11313":3,"11314":6,"11315":7,"11316":8,"11317":8,"11318":9,"11319":4,"11320":7,"11321":2,"11322":5,"11323":7,"11324":6,"11325":7,"11326":5,"11327":9,"11328":6,"11329":3,"11330":5,"11331":10,"11332":3,"11333":7,"11334":8,"11335":7,"11336":6,"11337":8,"11338":7,"11339":8,"11340":9,"11341":8,"11342":5,"11343":6,"11344":8,"11345":8,"11346":5,"11347":8,"11348":8,"11349":8,"11350":7,"11351":4,"11352":6,"11353":7,"11354":5,"11355":5,"11356":9,"11357":7,"11358":8,"11359":7,"11360":2,"11361":8,"11362":8,"11363":4,"11364":3,"11365":8,"11366":8,"11367":5,"11368":7,"11369":5,"11370":7,"11371":9,"11372":8,"11373":7,"11374":7,"11375":7,"11376":9,"11377":1,"11378":6,"11379":3,"11380":2,"11381":2,"11382":7,"11383":8,"11384":7,"11385":9,"11386":7,"11387":4,"11388":9,"11389":9,"11390":6,"11391":5,"11392":8,"11393":2,"11394":6,"11395":7,"11396":8,"11397":5,"11398":7,"11399":8,"11400":7,"11401":9,"11402":8,"11403":7,"11404":4,"11405":7,"11406":7,"11407":8,"11408":6,"11409":8,"11410":4,"11411":7,"11412":2,"11413":9,"11414":5,"11415":8,"11416":5,"11417":10,"11418":5,"11419":7,"11420":7,"11421":7,"11422":3,"11423":5,"11424":1,"11425":2,"11426":6,"11427":7,"11428":8,"11429":1,"11430":2,"11431":1,"11432":6,"11433":7,"11434":8,"11435":8,"11436":2,"11437":8,"11438":2,"11439":7,"11440":1,"11441":8,"11442":7,"11443":4,"11444":9,"11445":8,"11446":8,"11447":2,"11448":7,"11449":2,"11450":2,"11451":7,"11452":8,"11453":8,"11454":9,"11455":9,"11456":7,"11457":4,"11458":8,"11459":8,"11460":2,"11461":7,"11462":7,"11463":2,"11464":7,"11465":8,"11466":7,"11467":1,"11468":10,"11469":9,"11470":7,"11471":1,"11472":8,"11473":7,"11474":8,"11475":4,"11476":2,"11477":8,"11478":7,"11479":9,"11480":6,"11481":2,"11482":2,"11483":5,"11484":5,"11485":4,"11486":7,"11487":2,"11488":8,"11489":10,"11490":8,"11491":9,"11492":4,"11493":7,"11494":9,"11495":7,"11496":5,"11497":8,"11498":3,"11499":8,"11500":7,"11501":7,"11502":2,"11503":1,"11504":8,"11505":7,"11506":2,"11507":8,"11508":7,"11509":2,"11510":4,"11511":5,"11512":9,"11513":7,"11514":7,"11515":7,"11516":8,"11517":4,"11518":5,"11519":7,"11520":7,"11521":8,"11522":8,"11523":6,"11524":10,"11525":3,"11526":8,"11527":8,"11528":9,"11529":4,"11530":9,"11531":7,"11532":7,"11533":7,"11534":7,"11535":2,"11536":8,"11537":2,"11538":3,"11539":1,"11540":1,"11541":8,"11542":2,"11543":9,"11544":9,"11545":7,"11546":7,"11547":2,"11548":9,"11549":7,"11550":8,"11551":7,"11552":8,"11553":7,"11554":4,"11555":9,"11556":5,"11557":8,"11558":8,"11559":6,"11560":9,"11561":7,"11562":2,"11563":9,"11564":8,"11565":10,"11566":8,"11567":5,"11568":2,"11569":7,"11570":9,"11571":7,"11572":7,"11573":2,"11574":5,"11575":1,"11576":8,"11577":8,"11578":8,"11579":9,"11580":2,"11581":8,"11582":3,"11583":8,"11584":5,"11585":10,"11586":6,"11587":7,"11588":8,"11589":8,"11590":7,"11591":5,"11592":8,"11593":9,"11594":10,"11595":8,"11596":6,"11597":2,"11598":4,"11599":9,"11600":1,"11601":5,"11602":10,"11603":9,"11604":2,"11605":7,"11606":3,"11607":7,"11608":9,"11609":2,"11610":8,"11611":10,"11612":5,"11613":7,"11614":10,"11615":5,"11616":5,"11617":1,"11618":7,"11619":3,"11620":9,"11621":8,"11622":3,"11623":8,"11624":8,"11625":7,"11626":9,"11627":7,"11628":9,"11629":1,"11630":10,"11631":6,"11632":8,"11633":1,"11634":8,"11635":7,"11636":9,"11637":9,"11638":5,"11639":9,"11640":9,"11641":7,"11642":10,"11643":5,"11644":9,"11645":7,"11646":5,"11647":9,"11648":8,"11649":7,"11650":9,"11651":4,"11652":1,"11653":4,"11654":10,"11655":10,"11656":9,"11657":8,"11658":8,"11659":5,"11660":7,"11661":9,"11662":5,"11663":5,"11664":7,"11665":4,"11666":7,"11667":7,"11668":7,"11669":7,"11670":4,"11671":6,"11672":1,"11673":4,"11674":3,"11675":7,"11676":6,"11677":5,"11678":6,"11679":1,"11680":2,"11681":5,"11682":8,"11683":5,"11684":8,"11685":10,"11686":7,"11687":7,"11688":7,"11689":8,"11690":8,"11691":8,"11692":7,"11693":7,"11694":7,"11695":7,"11696":5,"11697":7,"11698":7,"11699":8,"11700":7,"11701":7,"11702":4,"11703":1,"11704":10,"11705":9,"11706":7,"11707":2,"11708":9,"11709":7,"11710":4,"11711":3,"11712":8,"11713":9,"11714":4,"11715":7,"11716":2,"11717":7,"11718":4,"11719":9,"11720":2,"11721":9,"11722":2,"11723":9,"11724":4,"11725":4,"11726":9,"11727":4,"11728":9,"11729":5,"11730":5,"11731":7,"11732":5,"11733":4,"11734":7,"11735":7,"11736":7,"11737":9,"11738":4,"11739":7,"11740":7,"11741":10,"11742":7,"11743":7,"11744":10,"11745":8,"11746":5,"11747":2,"11748":8,"11749":8,"11750":9,"11751":9,"11752":1,"11753":8,"11754":7,"11755":8,"11756":2,"11757":4,"11758":2,"11759":8,"11760":7,"11761":7,"11762":9,"11763":9,"11764":8,"11765":1,"11766":8,"11767":8,"11768":1,"11769":4,"11770":7,"11771":6,"11772":10,"11773":7,"11774":9,"11775":9,"11776":6,"11777":10,"11778":4,"11779":4,"11780":7,"11781":8,"11782":6,"11783":9,"11784":9,"11785":6,"11786":2,"11787":8,"11788":2,"11789":9,"11790":8,"11791":10,"11792":10,"11793":5,"11794":5,"11795":8,"11796":9,"11797":7,"11798":7,"11799":2,"11800":2,"11801":4,"11802":3,"11803":9,"11804":9,"11805":1,"11806":4,"11807":7,"11808":5,"11809":9,"11810":1,"11811":8,"11812":8,"11813":9,"11814":4,"11815":9,"11816":7,"11817":7,"11818":3,"11819":3,"11820":8,"11821":9,"11822":2,"11823":1,"11824":5,"11825":2,"11826":2,"11827":9,"11828":6,"11829":8,"11830":9,"11831":8,"11832":8,"11833":7,"11834":9,"11835":3,"11836":8,"11837":7,"11838":4,"11839":8,"11840":5,"11841":7,"11842":6,"11843":7,"11844":8,"11845":7,"11846":7,"11847":8,"11848":1,"11849":7,"11850":8,"11851":4,"11852":2,"11853":8,"11854":6,"11855":8,"11856":8,"11857":7,"11858":7,"11859":4,"11860":8,"11861":7,"11862":7,"11863":8,"11864":5,"11865":2,"11866":7,"11867":6,"11868":7,"11869":7,"11870":8,"11871":1,"11872":1,"11873":10,"11874":7,"11875":9,"11876":7,"11877":6,"11878":8,"11879":8,"11880":9,"11881":9,"11882":7,"11883":9,"11884":2,"11885":5,"11886":8,"11887":8,"11888":2,"11889":6,"11890":3,"11891":2,"11892":6,"11893":9,"11894":7,"11895":6,"11896":8,"11897":9,"11898":9,"11899":8,"11900":8,"11901":5,"11902":8,"11903":2,"11904":3,"11905":7,"11906":8,"11907":7,"11908":8,"11909":2,"11910":9,"11911":1,"11912":6,"11913":1,"11914":8,"11915":8,"11916":7,"11917":8,"11918":2,"11919":8,"11920":9,"11921":7,"11922":1,"11923":9,"11924":8,"11925":8,"11926":2,"11927":9,"11928":9,"11929":4,"11930":7,"11931":9,"11932":5,"11933":9,"11934":8,"11935":3,"11936":10,"11937":3,"11938":4,"11939":9,"11940":2,"11941":2,"11942":9,"11943":9,"11944":7,"11945":2,"11946":8,"11947":1,"11948":5,"11949":9,"11950":8,"11951":3,"11952":5,"11953":6,"11954":7,"11955":2,"11956":4,"11957":8,"11958":9,"11959":9,"11960":8,"11961":9,"11962":7,"11963":3,"11964":7,"11965":7,"11966":2,"11967":9,"11968":9,"11969":9,"11970":9,"11971":8,"11972":9,"11973":2,"11974":1,"11975":7,"11976":7,"11977":8,"11978":5,"11979":9,"11980":2,"11981":5,"11982":9,"11983":2,"11984":2,"11985":9,"11986":7,"11987":3,"11988":3,"11989":9,"11990":9,"11991":6,"11992":7,"11993":2,"11994":8,"11995":7,"11996":10,"11997":8,"11998":7,"11999":9,"12000":8,"12001":8,"12002":7,"12003":5,"12004":9,"12005":4,"12006":8,"12007":4,"12008":5,"12009":7,"12010":8,"12011":5,"12012":1,"12013":9,"12014":5,"12015":7,"12016":5,"12017":9,"12018":7,"12019":7,"12020":7,"12021":7,"12022":5,"12023":8,"12024":8,"12025":3,"12026":8,"12027":4,"12028":7,"12029":8,"12030":7,"12031":7,"12032":4,"12033":9,"12034":7,"12035":6,"12036":7,"12037":3,"12038":5,"12039":5,"12040":9,"12041":9,"12042":2,"12043":6,"12044":8,"12045":2,"12046":5,"12047":1,"12048":5,"12049":7,"12050":8,"12051":8,"12052":8,"12053":1,"12054":5,"12055":7,"12056":7,"12057":3,"12058":9,"12059":2,"12060":2,"12061":8,"12062":7,"12063":9,"12064":7,"12065":8,"12066":2,"12067":9,"12068":6,"12069":7,"12070":7,"12071":1,"12072":9,"12073":4,"12074":2,"12075":7,"12076":7,"12077":5,"12078":5,"12079":9,"12080":5,"12081":7,"12082":6,"12083":7,"12084":8,"12085":8,"12086":2,"12087":8,"12088":4,"12089":8,"12090":3,"12091":7,"12092":7,"12093":7,"12094":5,"12095":8,"12096":5,"12097":5,"12098":2,"12099":2,"12100":9,"12101":7,"12102":8,"12103":7,"12104":2,"12105":3,"12106":1,"12107":7,"12108":9,"12109":2,"12110":7,"12111":5,"12112":8,"12113":9,"12114":5,"12115":2,"12116":8,"12117":7,"12118":8,"12119":5,"12120":5,"12121":1,"12122":2,"12123":2,"12124":7,"12125":2,"12126":7,"12127":7,"12128":7,"12129":8,"12130":8,"12131":7,"12132":6,"12133":4,"12134":7,"12135":8,"12136":7,"12137":8,"12138":9,"12139":10,"12140":9,"12141":7,"12142":9,"12143":5,"12144":7,"12145":7,"12146":5,"12147":8,"12148":9,"12149":9,"12150":7,"12151":1,"12152":9,"12153":8,"12154":8,"12155":9,"12156":7,"12157":8,"12158":2,"12159":8,"12160":8,"12161":2,"12162":9,"12163":3,"12164":8,"12165":8,"12166":9,"12167":9,"12168":5,"12169":1,"12170":8,"12171":3,"12172":5,"12173":8,"12174":8,"12175":7,"12176":8,"12177":5,"12178":8,"12179":2,"12180":10,"12181":10,"12182":8,"12183":3,"12184":9,"12185":1,"12186":8,"12187":8,"12188":8,"12189":7,"12190":8,"12191":7,"12192":7,"12193":9,"12194":2,"12195":9,"12196":3,"12197":9,"12198":8,"12199":4,"12200":9,"12201":8,"12202":9,"12203":8,"12204":7,"12205":8,"12206":3,"12207":5,"12208":4,"12209":9,"12210":5,"12211":7,"12212":7,"12213":8,"12214":7,"12215":1,"12216":8,"12217":5,"12218":1,"12219":3,"12220":3,"12221":7,"12222":7,"12223":3,"12224":8,"12225":7,"12226":8,"12227":1,"12228":6,"12229":7,"12230":8,"12231":3,"12232":2,"12233":8,"12234":5,"12235":7,"12236":3,"12237":6,"12238":7,"12239":7,"12240":3,"12241":8,"12242":6,"12243":6,"12244":8,"12245":6,"12246":7,"12247":5,"12248":6,"12249":8,"12250":4,"12251":8,"12252":8,"12253":4,"12254":9,"12255":2,"12256":3,"12257":8,"12258":9,"12259":7,"12260":7,"12261":7,"12262":8,"12263":8,"12264":8,"12265":9,"12266":7,"12267":7,"12268":7,"12269":3,"12270":8,"12271":9,"12272":7,"12273":8,"12274":4,"12275":8,"12276":1,"12277":4,"12278":6,"12279":2,"12280":6,"12281":9,"12282":9,"12283":4,"12284":7,"12285":2,"12286":9,"12287":10,"12288":1,"12289":8,"12290":8,"12291":9,"12292":8,"12293":2,"12294":8,"12295":2,"12296":7,"12297":4,"12298":7,"12299":2,"12300":5,"12301":9,"12302":3,"12303":4,"12304":1,"12305":7,"12306":8,"12307":4,"12308":8,"12309":8,"12310":7,"12311":7,"12312":6,"12313":2,"12314":6,"12315":3,"12316":4,"12317":8,"12318":8,"12319":8,"12320":7,"12321":8,"12322":5,"12323":5,"12324":1,"12325":7,"12326":7,"12327":2,"12328":8,"12329":7,"12330":9,"12331":7,"12332":4,"12333":7,"12334":9,"12335":2,"12336":5,"12337":9,"12338":9,"12339":9,"12340":6,"12341":5,"12342":2,"12343":8,"12344":2,"12345":2,"12346":7,"12347":4,"12348":7,"12349":2,"12350":4,"12351":7,"12352":8,"12353":1,"12354":3,"12355":8,"12356":1,"12357":9,"12358":9,"12359":9,"12360":7,"12361":2,"12362":7,"12363":3,"12364":5,"12365":5,"12366":7,"12367":4,"12368":7,"12369":8,"12370":7,"12371":7,"12372":1,"12373":1,"12374":7,"12375":7,"12376":9,"12377":2,"12378":9,"12379":7,"12380":8,"12381":8,"12382":5,"12383":2,"12384":8,"12385":9,"12386":1,"12387":5,"12388":10,"12389":2,"12390":8,"12391":5,"12392":10,"12393":5,"12394":1,"12395":9,"12396":4,"12397":8,"12398":9,"12399":7,"12400":1,"12401":8,"12402":7,"12403":1,"12404":5,"12405":6,"12406":9,"12407":8,"12408":5,"12409":9,"12410":7,"12411":5,"12412":9,"12413":7,"12414":7,"12415":8,"12416":8,"12417":3,"12418":1,"12419":9,"12420":8,"12421":5,"12422":8,"12423":8,"12424":10,"12425":3,"12426":2,"12427":7,"12428":8,"12429":7,"12430":10,"12431":2,"12432":6,"12433":2,"12434":2,"12435":4,"12436":8,"12437":8,"12438":9,"12439":8,"12440":6,"12441":8,"12442":5,"12443":8,"12444":7,"12445":7,"12446":7,"12447":10,"12448":8,"12449":4,"12450":2,"12451":2,"12452":5,"12453":5,"12454":10,"12455":7,"12456":1,"12457":4,"12458":4,"12459":9,"12460":4,"12461":2,"12462":10,"12463":9,"12464":9,"12465":4,"12466":6,"12467":5,"12468":6,"12469":7,"12470":5,"12471":6,"12472":8,"12473":9,"12474":7,"12475":9,"12476":7,"12477":7,"12478":5,"12479":6,"12480":5,"12481":7,"12482":2,"12483":8,"12484":5,"12485":10,"12486":9,"12487":3,"12488":9,"12489":2,"12490":3,"12491":6,"12492":8,"12493":8,"12494":8,"12495":2,"12496":4,"12497":7,"12498":7,"12499":5,"12500":8,"12501":4,"12502":9,"12503":2,"12504":4,"12505":7,"12506":5,"12507":5,"12508":10,"12509":5,"12510":7,"12511":9,"12512":6,"12513":8,"12514":8,"12515":8,"12516":5,"12517":9,"12518":9,"12519":4,"12520":8,"12521":8,"12522":4,"12523":9,"12524":6,"12525":7,"12526":1,"12527":9,"12528":3,"12529":7,"12530":7,"12531":7,"12532":8,"12533":9,"12534":5,"12535":9,"12536":7,"12537":7,"12538":1,"12539":1,"12540":7,"12541":3,"12542":10,"12543":5,"12544":3,"12545":2,"12546":7,"12547":9,"12548":7,"12549":5,"12550":9,"12551":2,"12552":7,"12553":8,"12554":5,"12555":2,"12556":2,"12557":9,"12558":2,"12559":6,"12560":6,"12561":8,"12562":8,"12563":4,"12564":10,"12565":10,"12566":5,"12567":5,"12568":2,"12569":8,"12570":9,"12571":1,"12572":8,"12573":6,"12574":8,"12575":10,"12576":10,"12577":8,"12578":1,"12579":9,"12580":8,"12581":3,"12582":2,"12583":8,"12584":9,"12585":9,"12586":7,"12587":3,"12588":5,"12589":2,"12590":9,"12591":5,"12592":7,"12593":6,"12594":6,"12595":7,"12596":9,"12597":5,"12598":3,"12599":9,"12600":1,"12601":2,"12602":5,"12603":7,"12604":8,"12605":7,"12606":8,"12607":8,"12608":8,"12609":2,"12610":8,"12611":8,"12612":8,"12613":9,"12614":9,"12615":9,"12616":7,"12617":7,"12618":9,"12619":7,"12620":7,"12621":9,"12622":5,"12623":7,"12624":7,"12625":5,"12626":5,"12627":7,"12628":4,"12629":9,"12630":8,"12631":5,"12632":8,"12633":7,"12634":4,"12635":3,"12636":2,"12637":8,"12638":8,"12639":2,"12640":10,"12641":8,"12642":8,"12643":9,"12644":8,"12645":2,"12646":2,"12647":2,"12648":8,"12649":7,"12650":5,"12651":2,"12652":7,"12653":8,"12654":9,"12655":5,"12656":7,"12657":8,"12658":9,"12659":2,"12660":8,"12661":2,"12662":8,"12663":5,"12664":10,"12665":7,"12666":7,"12667":8,"12668":8,"12669":3,"12670":9,"12671":5,"12672":7,"12673":7,"12674":8,"12675":7,"12676":2,"12677":9,"12678":7,"12679":6,"12680":4,"12681":2,"12682":4,"12683":8,"12684":9,"12685":9,"12686":9,"12687":10,"12688":2,"12689":3,"12690":2,"12691":7,"12692":3,"12693":2,"12694":2,"12695":6,"12696":7,"12697":8,"12698":7,"12699":9,"12700":6,"12701":8,"12702":7,"12703":3,"12704":7,"12705":4,"12706":9,"12707":7,"12708":7,"12709":7,"12710":10,"12711":7,"12712":3,"12713":5,"12714":3,"12715":2,"12716":7,"12717":8,"12718":5,"12719":8,"12720":8,"12721":6,"12722":7,"12723":7,"12724":6,"12725":2,"12726":10,"12727":2,"12728":7,"12729":7,"12730":9,"12731":9,"12732":9,"12733":9,"12734":8,"12735":2,"12736":9,"12737":8,"12738":1,"12739":5,"12740":7,"12741":7,"12742":8,"12743":8,"12744":9,"12745":4,"12746":7,"12747":7,"12748":10,"12749":1,"12750":9,"12751":2,"12752":5,"12753":7,"12754":8,"12755":9,"12756":7,"12757":1,"12758":9,"12759":8,"12760":2,"12761":9,"12762":1,"12763":8,"12764":1,"12765":2,"12766":10,"12767":7,"12768":6,"12769":5,"12770":4,"12771":9,"12772":1,"12773":8,"12774":2,"12775":8,"12776":8,"12777":8,"12778":7,"12779":9,"12780":9,"12781":7,"12782":8,"12783":9,"12784":7,"12785":9,"12786":9,"12787":2,"12788":9,"12789":9,"12790":7,"12791":8,"12792":7,"12793":7,"12794":4,"12795":10,"12796":6,"12797":7,"12798":7,"12799":1,"12800":9,"12801":8,"12802":8,"12803":4,"12804":5,"12805":7,"12806":5,"12807":9,"12808":8,"12809":2,"12810":9,"12811":4,"12812":8,"12813":7,"12814":9,"12815":8,"12816":7,"12817":8,"12818":7,"12819":4,"12820":5,"12821":7,"12822":2,"12823":7,"12824":9,"12825":6,"12826":4,"12827":9,"12828":9,"12829":9,"12830":8,"12831":4,"12832":5,"12833":1,"12834":7,"12835":3,"12836":9,"12837":6,"12838":7,"12839":8,"12840":7,"12841":4,"12842":7,"12843":5,"12844":8,"12845":9,"12846":6,"12847":9,"12848":5,"12849":1,"12850":8,"12851":3,"12852":2,"12853":5,"12854":8,"12855":4,"12856":2,"12857":7,"12858":10,"12859":5,"12860":8,"12861":9,"12862":8,"12863":9,"12864":4,"12865":5,"12866":7,"12867":8,"12868":2,"12869":4,"12870":1,"12871":8,"12872":8,"12873":7,"12874":7,"12875":2,"12876":9,"12877":2,"12878":9,"12879":2,"12880":7,"12881":8,"12882":9,"12883":2,"12884":6,"12885":9,"12886":9,"12887":4,"12888":9,"12889":8,"12890":8,"12891":6,"12892":9,"12893":5,"12894":8,"12895":2,"12896":7,"12897":7,"12898":8,"12899":9,"12900":7,"12901":3,"12902":7,"12903":10,"12904":8,"12905":2,"12906":9,"12907":8,"12908":7,"12909":9,"12910":10,"12911":1,"12912":2,"12913":2,"12914":5,"12915":7,"12916":9,"12917":7,"12918":8,"12919":7,"12920":1,"12921":8,"12922":4,"12923":8,"12924":5,"12925":10,"12926":9,"12927":4,"12928":7,"12929":8,"12930":6,"12931":5,"12932":7,"12933":7,"12934":9,"12935":9,"12936":7,"12937":5,"12938":10,"12939":7,"12940":9,"12941":7,"12942":7,"12943":2,"12944":8,"12945":9,"12946":7,"12947":3,"12948":9,"12949":8,"12950":7,"12951":7,"12952":2,"12953":8,"12954":7,"12955":8,"12956":5,"12957":9,"12958":7,"12959":10,"12960":8,"12961":2,"12962":9,"12963":2,"12964":9,"12965":3,"12966":8,"12967":3,"12968":9,"12969":5,"12970":5,"12971":2,"12972":3,"12973":1,"12974":10,"12975":8,"12976":8,"12977":2,"12978":4,"12979":2,"12980":7,"12981":7,"12982":7,"12983":4,"12984":6,"12985":7,"12986":5,"12987":8,"12988":4,"12989":8,"12990":8,"12991":7,"12992":8,"12993":5,"12994":8,"12995":3,"12996":7,"12997":1,"12998":2,"12999":8,"13000":3,"13001":2,"13002":8,"13003":3,"13004":4,"13005":7,"13006":5,"13007":7,"13008":6,"13009":6,"13010":1,"13011":9,"13012":9,"13013":5,"13014":9,"13015":9,"13016":10,"13017":1,"13018":8,"13019":5,"13020":10,"13021":4,"13022":6,"13023":9,"13024":7,"13025":9,"13026":9,"13027":7,"13028":9,"13029":6,"13030":8,"13031":7,"13032":7,"13033":8,"13034":8,"13035":9,"13036":3,"13037":9,"13038":2,"13039":8,"13040":6,"13041":2,"13042":5,"13043":8,"13044":2,"13045":6,"13046":2,"13047":7,"13048":5,"13049":8,"13050":5,"13051":2,"13052":8,"13053":9,"13054":6,"13055":7,"13056":8,"13057":3,"13058":7,"13059":5,"13060":8,"13061":7,"13062":8,"13063":1,"13064":8,"13065":8,"13066":7,"13067":9,"13068":7,"13069":9,"13070":8,"13071":3,"13072":8,"13073":5,"13074":2,"13075":8,"13076":2,"13077":8,"13078":6,"13079":7,"13080":8,"13081":1,"13082":9,"13083":8,"13084":7,"13085":9,"13086":8,"13087":8,"13088":5,"13089":7,"13090":1,"13091":3,"13092":1,"13093":10,"13094":10,"13095":9,"13096":8,"13097":7,"13098":6,"13099":7,"13100":7,"13101":8,"13102":9,"13103":8,"13104":8,"13105":7,"13106":8,"13107":7,"13108":5,"13109":2,"13110":9,"13111":1,"13112":7,"13113":3,"13114":1,"13115":5,"13116":6,"13117":8,"13118":9,"13119":7,"13120":2,"13121":2,"13122":10,"13123":6,"13124":10,"13125":9,"13126":2,"13127":2,"13128":8,"13129":4,"13130":8,"13131":5,"13132":1,"13133":7,"13134":8,"13135":7,"13136":5,"13137":1,"13138":3,"13139":8,"13140":8,"13141":7,"13142":9,"13143":3,"13144":2,"13145":9,"13146":7,"13147":9,"13148":6,"13149":3,"13150":7,"13151":9,"13152":9,"13153":6,"13154":3,"13155":7,"13156":5,"13157":7,"13158":7,"13159":8,"13160":7,"13161":7,"13162":7,"13163":5,"13164":5,"13165":5,"13166":9,"13167":3,"13168":9,"13169":8,"13170":7,"13171":4,"13172":3,"13173":2,"13174":6,"13175":8,"13176":10,"13177":2,"13178":8,"13179":2,"13180":6,"13181":3,"13182":9,"13183":3,"13184":7,"13185":8,"13186":8,"13187":7,"13188":7,"13189":7,"13190":5,"13191":6,"13192":9,"13193":9,"13194":7,"13195":7,"13196":7,"13197":7,"13198":5,"13199":8,"13200":9,"13201":4,"13202":1,"13203":7,"13204":9,"13205":1,"13206":7,"13207":3,"13208":2,"13209":7,"13210":8,"13211":3,"13212":9,"13213":7,"13214":8,"13215":1,"13216":8,"13217":7,"13218":10,"13219":5,"13220":8,"13221":8,"13222":7,"13223":8,"13224":5,"13225":7,"13226":9,"13227":7,"13228":5,"13229":9,"13230":7,"13231":2,"13232":7,"13233":5,"13234":5,"13235":9,"13236":7,"13237":5,"13238":3,"13239":10,"13240":8,"13241":8,"13242":7,"13243":4,"13244":7,"13245":5,"13246":5,"13247":7,"13248":8,"13249":5,"13250":7,"13251":8,"13252":8,"13253":9,"13254":3,"13255":6,"13256":2,"13257":2,"13258":7,"13259":7,"13260":8,"13261":7,"13262":7,"13263":8,"13264":9,"13265":9,"13266":1,"13267":5,"13268":9,"13269":5,"13270":7,"13271":9,"13272":7,"13273":4,"13274":5,"13275":1,"13276":9,"13277":8,"13278":10,"13279":7,"13280":9,"13281":4,"13282":2,"13283":7,"13284":7,"13285":3,"13286":7,"13287":1,"13288":10,"13289":2,"13290":8,"13291":9,"13292":9,"13293":8,"13294":6,"13295":9,"13296":9,"13297":9,"13298":9,"13299":2,"13300":3,"13301":4,"13302":2,"13303":10,"13304":4,"13305":9,"13306":7,"13307":5,"13308":7,"13309":5,"13310":2,"13311":6,"13312":7,"13313":8,"13314":2,"13315":2,"13316":7,"13317":7,"13318":7,"13319":5,"13320":3,"13321":6,"13322":9,"13323":5,"13324":8,"13325":8,"13326":7,"13327":8,"13328":7,"13329":8,"13330":3,"13331":7,"13332":3,"13333":8,"13334":8,"13335":2,"13336":10,"13337":10,"13338":9,"13339":2,"13340":10,"13341":5,"13342":3,"13343":5,"13344":2,"13345":8,"13346":7,"13347":7,"13348":8,"13349":2,"13350":7,"13351":9,"13352":2,"13353":7,"13354":9,"13355":1,"13356":8,"13357":7,"13358":5,"13359":2,"13360":8,"13361":6,"13362":1,"13363":5,"13364":7,"13365":7,"13366":10,"13367":2,"13368":9,"13369":7,"13370":8,"13371":10,"13372":8,"13373":2,"13374":9,"13375":7,"13376":9,"13377":3,"13378":2,"13379":8,"13380":7,"13381":1,"13382":7,"13383":4,"13384":5,"13385":5,"13386":10,"13387":7,"13388":8,"13389":5,"13390":1,"13391":5,"13392":7,"13393":9,"13394":7,"13395":7,"13396":9,"13397":9,"13398":8,"13399":7,"13400":7,"13401":7,"13402":5,"13403":4,"13404":8,"13405":10,"13406":7,"13407":4,"13408":7,"13409":10,"13410":7,"13411":7,"13412":1,"13413":10,"13414":8,"13415":4,"13416":7,"13417":8,"13418":3,"13419":7,"13420":2,"13421":6,"13422":3,"13423":7,"13424":5,"13425":9,"13426":3,"13427":9,"13428":7,"13429":10,"13430":4,"13431":5,"13432":8,"13433":9,"13434":7,"13435":7,"13436":7,"13437":9,"13438":4,"13439":7,"13440":9,"13441":7,"13442":2,"13443":9,"13444":7,"13445":9,"13446":5,"13447":7,"13448":2,"13449":1,"13450":5,"13451":9,"13452":7,"13453":7,"13454":9,"13455":7,"13456":9,"13457":7,"13458":8,"13459":8,"13460":6,"13461":7,"13462":7,"13463":6,"13464":3,"13465":2,"13466":5,"13467":8,"13468":3,"13469":8,"13470":8,"13471":7,"13472":7,"13473":7,"13474":1,"13475":8,"13476":1,"13477":8,"13478":3,"13479":10,"13480":9,"13481":8,"13482":8,"13483":7,"13484":7,"13485":4,"13486":2,"13487":4,"13488":5,"13489":7,"13490":1,"13491":7,"13492":8,"13493":4,"13494":2,"13495":7,"13496":3,"13497":7,"13498":8,"13499":9,"13500":9,"13501":1,"13502":3,"13503":7,"13504":8,"13505":8,"13506":7,"13507":8,"13508":7,"13509":9,"13510":5,"13511":5,"13512":8,"13513":5,"13514":8,"13515":1,"13516":7,"13517":3,"13518":7,"13519":4,"13520":8,"13521":8,"13522":2,"13523":3,"13524":5,"13525":5,"13526":2,"13527":4,"13528":8,"13529":8,"13530":7,"13531":2,"13532":7,"13533":8,"13534":10,"13535":4,"13536":2,"13537":4,"13538":7,"13539":4,"13540":8,"13541":9,"13542":3,"13543":2,"13544":9,"13545":7,"13546":5,"13547":9,"13548":5,"13549":7,"13550":10,"13551":7,"13552":5,"13553":6,"13554":8,"13555":9,"13556":7,"13557":1,"13558":8,"13559":4,"13560":2,"13561":7,"13562":3,"13563":7,"13564":9,"13565":3,"13566":5,"13567":9,"13568":5,"13569":7,"13570":6,"13571":8,"13572":7,"13573":5,"13574":8,"13575":7,"13576":8,"13577":7,"13578":9,"13579":10,"13580":8,"13581":7,"13582":9,"13583":7,"13584":9,"13585":10,"13586":2,"13587":4,"13588":5,"13589":8,"13590":2,"13591":8,"13592":7,"13593":4,"13594":2,"13595":7,"13596":8,"13597":7,"13598":10,"13599":5,"13600":6,"13601":7,"13602":1,"13603":8,"13604":7,"13605":7,"13606":6,"13607":8,"13608":4,"13609":2,"13610":8,"13611":8,"13612":7,"13613":6,"13614":10,"13615":5,"13616":9,"13617":9,"13618":5,"13619":10,"13620":6,"13621":9,"13622":4,"13623":7,"13624":7,"13625":9,"13626":9,"13627":8,"13628":1,"13629":9,"13630":2,"13631":8,"13632":4,"13633":2,"13634":2,"13635":10,"13636":7,"13637":8,"13638":3,"13639":9,"13640":2,"13641":2,"13642":8,"13643":9,"13644":10,"13645":6,"13646":5,"13647":8,"13648":8,"13649":7,"13650":7,"13651":8,"13652":8,"13653":8,"13654":3,"13655":10,"13656":3,"13657":7,"13658":9,"13659":9,"13660":7,"13661":2,"13662":5,"13663":2,"13664":7,"13665":7,"13666":10,"13667":2,"13668":5,"13669":5,"13670":6,"13671":8,"13672":4,"13673":7,"13674":2,"13675":3,"13676":6,"13677":8,"13678":7,"13679":8,"13680":8,"13681":8,"13682":8,"13683":2,"13684":6,"13685":2,"13686":7,"13687":9,"13688":7,"13689":3,"13690":3,"13691":9,"13692":9,"13693":6,"13694":2,"13695":7,"13696":3,"13697":9,"13698":2,"13699":9,"13700":8,"13701":8,"13702":5,"13703":5,"13704":8,"13705":8,"13706":2,"13707":2,"13708":7,"13709":9,"13710":8,"13711":3,"13712":7,"13713":9,"13714":8,"13715":5,"13716":8,"13717":9,"13718":7,"13719":3,"13720":9,"13721":7,"13722":7,"13723":9,"13724":3,"13725":9,"13726":3,"13727":8,"13728":3,"13729":9,"13730":5,"13731":9,"13732":5,"13733":3,"13734":3,"13735":7,"13736":1,"13737":5,"13738":7,"13739":5,"13740":8,"13741":7,"13742":7,"13743":9,"13744":3,"13745":8,"13746":10,"13747":7,"13748":7,"13749":7,"13750":8,"13751":8,"13752":9,"13753":7,"13754":2,"13755":8,"13756":7,"13757":2,"13758":1,"13759":9,"13760":3,"13761":5,"13762":8,"13763":8,"13764":2,"13765":9,"13766":8,"13767":7,"13768":5,"13769":9,"13770":7,"13771":10,"13772":7,"13773":5,"13774":9,"13775":9,"13776":8,"13777":10,"13778":7,"13779":7,"13780":8,"13781":8,"13782":2,"13783":8,"13784":8,"13785":8,"13786":4,"13787":2,"13788":8,"13789":7,"13790":3,"13791":9,"13792":2,"13793":9,"13794":5,"13795":9,"13796":5,"13797":8,"13798":1,"13799":7,"13800":2,"13801":8,"13802":8,"13803":9,"13804":8,"13805":6,"13806":8,"13807":8,"13808":6,"13809":3,"13810":2,"13811":7,"13812":2,"13813":2,"13814":3,"13815":8,"13816":2,"13817":4,"13818":10,"13819":2,"13820":5,"13821":2,"13822":1,"13823":8,"13824":10,"13825":7,"13826":7,"13827":9,"13828":9,"13829":3,"13830":7,"13831":4,"13832":8,"13833":8,"13834":8,"13835":7,"13836":2,"13837":4,"13838":8,"13839":9,"13840":9,"13841":6,"13842":7,"13843":8,"13844":8,"13845":4,"13846":7,"13847":7,"13848":7,"13849":9,"13850":5,"13851":7,"13852":3,"13853":1,"13854":8,"13855":5,"13856":7,"13857":6,"13858":10,"13859":5,"13860":7,"13861":7,"13862":2,"13863":5,"13864":6,"13865":6,"13866":8,"13867":9,"13868":8,"13869":9,"13870":8,"13871":2,"13872":10,"13873":3,"13874":10,"13875":7,"13876":2,"13877":2,"13878":9,"13879":7,"13880":2,"13881":1,"13882":5,"13883":7,"13884":6,"13885":7,"13886":1,"13887":7,"13888":10,"13889":7,"13890":9,"13891":3,"13892":8,"13893":5,"13894":7,"13895":9,"13896":4,"13897":5,"13898":8,"13899":7,"13900":2,"13901":7,"13902":7,"13903":8,"13904":2,"13905":9,"13906":4,"13907":9,"13908":5,"13909":5,"13910":7,"13911":9,"13912":10,"13913":7,"13914":7,"13915":8,"13916":5,"13917":6,"13918":9,"13919":5,"13920":2,"13921":9,"13922":8,"13923":2,"13924":5,"13925":8,"13926":7,"13927":7,"13928":5,"13929":10,"13930":5,"13931":9,"13932":2,"13933":1,"13934":10,"13935":8,"13936":8,"13937":3,"13938":8,"13939":2,"13940":1,"13941":7,"13942":7,"13943":5,"13944":9,"13945":10,"13946":7,"13947":8,"13948":3,"13949":8,"13950":3,"13951":7,"13952":2,"13953":4,"13954":7,"13955":8,"13956":2,"13957":7,"13958":6,"13959":8,"13960":7,"13961":4,"13962":9,"13963":9,"13964":2,"13965":10,"13966":2,"13967":4,"13968":7,"13969":9,"13970":9,"13971":7,"13972":3,"13973":10,"13974":1,"13975":8,"13976":7,"13977":2,"13978":10,"13979":6,"13980":6,"13981":9,"13982":8,"13983":5,"13984":8,"13985":1,"13986":10,"13987":7,"13988":6,"13989":7,"13990":4,"13991":8,"13992":8,"13993":2,"13994":8,"13995":5,"13996":8,"13997":8,"13998":8,"13999":7,"14000":2,"14001":3,"14002":9,"14003":7,"14004":8,"14005":9,"14006":8,"14007":9,"14008":7,"14009":1,"14010":7,"14011":7,"14012":10,"14013":5,"14014":10,"14015":10,"14016":8,"14017":1,"14018":7,"14019":7,"14020":5,"14021":7,"14022":1,"14023":5,"14024":6,"14025":7,"14026":7,"14027":1,"14028":7,"14029":9,"14030":3,"14031":5,"14032":7,"14033":8,"14034":7,"14035":7,"14036":5,"14037":10,"14038":9,"14039":7,"14040":1,"14041":3,"14042":2,"14043":9,"14044":10,"14045":8,"14046":9,"14047":2,"14048":10,"14049":6,"14050":9,"14051":2,"14052":9,"14053":1,"14054":8,"14055":8,"14056":9,"14057":2,"14058":7,"14059":7,"14060":3,"14061":8,"14062":5,"14063":10,"14064":2,"14065":8,"14066":6,"14067":1,"14068":9,"14069":7,"14070":7,"14071":3,"14072":8,"14073":5,"14074":10,"14075":1,"14076":7,"14077":5,"14078":7,"14079":7,"14080":9,"14081":9,"14082":8,"14083":9,"14084":8,"14085":7,"14086":2,"14087":7,"14088":3,"14089":7,"14090":8,"14091":10,"14092":7,"14093":8,"14094":8,"14095":9,"14096":8,"14097":7,"14098":7,"14099":8,"14100":4,"14101":7,"14102":1,"14103":2,"14104":8,"14105":5,"14106":7,"14107":6,"14108":7,"14109":1,"14110":1,"14111":8,"14112":5,"14113":4,"14114":9,"14115":7,"14116":9,"14117":2,"14118":7,"14119":3,"14120":10,"14121":4,"14122":8,"14123":5,"14124":7,"14125":9,"14126":6,"14127":7,"14128":10,"14129":10,"14130":9,"14131":6,"14132":6,"14133":7,"14134":8,"14135":7,"14136":7,"14137":5,"14138":9,"14139":7,"14140":9,"14141":7,"14142":6,"14143":10,"14144":7,"14145":7,"14146":7,"14147":8,"14148":4,"14149":1,"14150":6,"14151":9,"14152":2,"14153":2,"14154":4,"14155":5,"14156":4,"14157":8,"14158":2,"14159":8,"14160":8,"14161":9,"14162":10,"14163":9,"14164":3,"14165":5,"14166":2,"14167":8,"14168":2,"14169":9,"14170":1,"14171":7,"14172":10,"14173":3,"14174":9,"14175":7,"14176":10,"14177":8,"14178":9,"14179":5,"14180":5,"14181":7,"14182":4,"14183":8,"14184":7,"14185":4,"14186":5,"14187":9,"14188":7,"14189":8,"14190":7,"14191":2,"14192":9,"14193":8,"14194":8,"14195":9,"14196":5,"14197":1,"14198":9,"14199":7,"14200":9,"14201":7,"14202":7,"14203":9,"14204":9,"14205":8,"14206":9,"14207":8,"14208":2,"14209":9,"14210":8,"14211":4,"14212":7,"14213":2,"14214":9,"14215":2,"14216":8,"14217":7,"14218":7,"14219":9,"14220":3,"14221":3,"14222":6,"14223":2,"14224":7,"14225":10,"14226":7,"14227":3,"14228":4,"14229":5,"14230":7,"14231":1,"14232":8,"14233":7,"14234":1,"14235":10,"14236":7,"14237":7,"14238":10,"14239":4,"14240":9,"14241":3,"14242":9,"14243":5,"14244":9,"14245":1,"14246":7,"14247":9,"14248":7,"14249":5,"14250":7,"14251":5,"14252":2,"14253":1,"14254":9,"14255":9,"14256":9,"14257":10,"14258":2,"14259":2,"14260":8,"14261":9,"14262":10,"14263":6,"14264":9,"14265":7,"14266":6,"14267":5,"14268":10,"14269":5,"14270":8,"14271":7,"14272":3,"14273":9,"14274":8,"14275":8,"14276":4,"14277":5,"14278":9,"14279":5,"14280":1,"14281":9,"14282":1,"14283":8,"14284":6,"14285":8,"14286":8,"14287":8,"14288":2,"14289":9,"14290":9,"14291":5,"14292":9,"14293":8,"14294":8,"14295":9,"14296":9,"14297":1,"14298":7,"14299":8,"14300":5,"14301":9,"14302":9,"14303":2,"14304":5,"14305":7,"14306":7,"14307":2,"14308":8,"14309":10,"14310":3,"14311":4,"14312":2,"14313":4,"14314":5,"14315":3,"14316":5,"14317":10,"14318":9,"14319":2,"14320":9,"14321":2,"14322":8,"14323":7,"14324":3,"14325":7,"14326":8,"14327":10,"14328":9,"14329":6,"14330":9,"14331":7,"14332":9,"14333":7,"14334":8,"14335":7,"14336":8,"14337":2,"14338":8,"14339":8,"14340":7,"14341":10,"14342":8,"14343":1,"14344":2,"14345":6,"14346":4,"14347":9,"14348":7,"14349":1,"14350":9,"14351":8,"14352":8,"14353":3,"14354":8,"14355":7,"14356":2,"14357":2,"14358":2,"14359":7,"14360":8,"14361":2,"14362":8,"14363":9,"14364":1,"14365":7,"14366":7,"14367":9,"14368":2,"14369":6,"14370":5,"14371":7,"14372":7,"14373":10,"14374":7,"14375":3,"14376":10,"14377":9,"14378":9,"14379":4,"14380":8,"14381":7,"14382":8,"14383":6,"14384":7,"14385":8,"14386":1,"14387":8,"14388":3,"14389":2,"14390":2,"14391":7,"14392":5,"14393":7,"14394":9,"14395":10,"14396":7,"14397":7,"14398":2,"14399":7,"14400":4,"14401":10,"14402":2,"14403":9,"14404":6,"14405":7,"14406":2,"14407":7,"14408":4,"14409":8,"14410":4,"14411":8,"14412":2,"14413":8,"14414":9,"14415":9,"14416":2,"14417":8,"14418":7,"14419":9,"14420":5,"14421":8,"14422":2,"14423":9,"14424":9,"14425":9,"14426":7,"14427":8,"14428":8,"14429":6,"14430":7,"14431":9,"14432":1,"14433":4,"14434":7,"14435":7,"14436":5,"14437":2,"14438":8,"14439":8,"14440":5,"14441":2,"14442":8,"14443":2,"14444":4,"14445":8,"14446":8,"14447":7,"14448":10,"14449":7,"14450":9,"14451":9,"14452":10,"14453":9,"14454":2,"14455":6,"14456":7,"14457":10,"14458":7,"14459":7,"14460":6,"14461":3,"14462":2,"14463":10,"14464":2,"14465":5,"14466":9,"14467":9,"14468":5,"14469":1,"14470":8,"14471":8,"14472":10,"14473":9,"14474":7,"14475":6,"14476":8,"14477":1,"14478":2,"14479":3,"14480":1,"14481":6,"14482":2,"14483":2,"14484":7,"14485":7,"14486":7,"14487":8,"14488":7,"14489":7,"14490":2,"14491":2,"14492":7,"14493":9,"14494":5,"14495":5,"14496":9,"14497":2,"14498":7,"14499":5,"14500":6,"14501":8,"14502":9,"14503":8,"14504":7,"14505":2,"14506":6,"14507":2,"14508":1,"14509":8,"14510":10,"14511":1,"14512":8,"14513":5,"14514":7,"14515":3,"14516":7,"14517":9,"14518":8,"14519":6,"14520":8,"14521":1,"14522":4,"14523":8,"14524":9,"14525":3,"14526":8,"14527":5,"14528":7,"14529":10,"14530":2,"14531":5,"14532":9,"14533":6,"14534":9,"14535":8,"14536":2,"14537":3,"14538":6,"14539":4,"14540":4,"14541":8,"14542":5,"14543":5,"14544":7,"14545":3,"14546":7,"14547":6,"14548":6,"14549":8,"14550":7,"14551":5,"14552":4,"14553":8,"14554":8,"14555":4,"14556":9,"14557":7,"14558":8,"14559":10,"14560":7,"14561":7,"14562":7,"14563":7,"14564":9,"14565":7,"14566":9,"14567":8,"14568":1,"14569":4,"14570":7,"14571":1,"14572":7,"14573":4,"14574":3,"14575":7,"14576":2,"14577":9,"14578":7,"14579":7,"14580":10,"14581":8,"14582":10,"14583":4,"14584":9,"14585":7,"14586":9,"14587":7,"14588":5,"14589":8,"14590":4,"14591":7,"14592":7,"14593":9,"14594":10,"14595":10,"14596":10,"14597":8,"14598":2,"14599":7,"14600":2,"14601":9,"14602":8,"14603":1,"14604":9,"14605":7,"14606":4,"14607":1,"14608":2,"14609":9,"14610":8,"14611":8,"14612":4,"14613":7,"14614":7,"14615":9,"14616":6,"14617":4,"14618":1,"14619":2,"14620":7,"14621":7,"14622":2,"14623":9,"14624":7,"14625":8,"14626":4,"14627":1,"14628":8,"14629":4,"14630":5,"14631":8,"14632":8,"14633":7,"14634":5,"14635":5,"14636":8,"14637":8,"14638":9,"14639":8,"14640":4,"14641":9,"14642":5,"14643":2,"14644":7,"14645":5,"14646":7,"14647":5,"14648":5,"14649":1,"14650":7,"14651":9,"14652":2,"14653":9,"14654":9,"14655":7,"14656":7,"14657":9,"14658":10,"14659":1,"14660":7,"14661":2,"14662":8,"14663":9,"14664":8,"14665":7,"14666":10,"14667":9,"14668":10,"14669":8,"14670":2,"14671":5,"14672":8,"14673":8,"14674":1,"14675":5,"14676":5,"14677":2,"14678":2,"14679":10,"14680":2,"14681":8,"14682":3,"14683":7,"14684":3,"14685":9,"14686":7,"14687":7,"14688":7,"14689":8,"14690":7,"14691":9,"14692":6,"14693":9,"14694":4,"14695":8,"14696":4,"14697":2,"14698":8,"14699":8,"14700":7,"14701":9,"14702":4,"14703":8,"14704":6,"14705":7,"14706":5,"14707":9,"14708":7,"14709":8,"14710":4,"14711":2,"14712":4,"14713":8,"14714":9,"14715":9,"14716":5,"14717":8,"14718":2,"14719":1,"14720":7,"14721":5,"14722":6,"14723":5,"14724":9,"14725":10,"14726":9,"14727":9,"14728":8,"14729":10,"14730":7,"14731":5,"14732":1,"14733":4,"14734":2,"14735":9,"14736":5,"14737":2,"14738":8,"14739":8,"14740":6,"14741":5,"14742":4,"14743":1,"14744":2,"14745":7,"14746":3,"14747":4,"14748":3,"14749":7,"14750":1,"14751":5,"14752":9,"14753":9,"14754":8,"14755":7,"14756":9,"14757":8,"14758":9,"14759":8,"14760":7,"14761":3,"14762":1,"14763":2,"14764":8,"14765":2,"14766":1,"14767":10,"14768":5,"14769":2,"14770":1,"14771":9,"14772":8,"14773":8,"14774":8,"14775":5,"14776":3,"14777":6,"14778":2,"14779":9,"14780":9,"14781":5,"14782":8,"14783":8,"14784":7,"14785":8,"14786":8,"14787":4,"14788":9,"14789":8,"14790":4,"14791":5,"14792":2,"14793":8,"14794":9,"14795":7,"14796":9,"14797":8,"14798":7,"14799":8,"14800":7,"14801":5,"14802":8,"14803":2,"14804":2,"14805":9,"14806":5,"14807":9,"14808":1,"14809":10,"14810":7,"14811":1,"14812":5,"14813":7,"14814":8,"14815":2,"14816":7,"14817":2,"14818":8,"14819":4,"14820":7,"14821":4,"14822":8,"14823":9,"14824":10,"14825":8,"14826":5,"14827":5,"14828":6,"14829":7,"14830":6,"14831":3,"14832":4,"14833":6,"14834":4,"14835":8,"14836":3,"14837":7,"14838":6,"14839":8,"14840":9,"14841":10,"14842":9,"14843":6,"14844":10,"14845":9,"14846":5,"14847":7,"14848":5,"14849":6,"14850":4,"14851":7,"14852":1,"14853":7,"14854":8,"14855":10,"14856":9,"14857":5,"14858":8,"14859":9,"14860":1,"14861":9,"14862":7,"14863":2,"14864":10,"14865":7,"14866":5,"14867":8,"14868":2,"14869":9,"14870":8,"14871":8,"14872":3,"14873":9,"14874":5,"14875":9,"14876":7,"14877":2,"14878":2,"14879":1,"14880":6,"14881":6,"14882":7,"14883":9,"14884":6,"14885":8,"14886":9,"14887":7,"14888":8,"14889":2,"14890":4,"14891":7,"14892":9,"14893":6,"14894":6,"14895":2,"14896":2,"14897":2,"14898":5,"14899":7,"14900":8,"14901":7,"14902":3,"14903":7,"14904":9,"14905":7,"14906":2,"14907":2,"14908":4,"14909":4,"14910":9,"14911":9,"14912":6,"14913":8,"14914":1,"14915":5,"14916":2,"14917":8,"14918":6,"14919":7,"14920":2,"14921":10,"14922":10,"14923":8,"14924":6,"14925":1,"14926":4,"14927":5,"14928":9,"14929":8,"14930":7,"14931":8,"14932":5,"14933":1,"14934":8,"14935":7,"14936":8,"14937":7,"14938":1,"14939":5,"14940":1,"14941":7,"14942":9,"14943":5,"14944":9,"14945":7,"14946":5,"14947":6,"14948":9,"14949":9,"14950":5,"14951":9,"14952":3,"14953":7,"14954":7,"14955":7,"14956":10,"14957":1,"14958":9,"14959":8,"14960":7,"14961":7,"14962":8,"14963":9,"14964":9,"14965":3,"14966":7,"14967":2,"14968":7,"14969":5,"14970":4,"14971":2,"14972":6,"14973":2,"14974":7,"14975":7,"14976":9,"14977":2,"14978":8,"14979":2,"14980":8,"14981":1,"14982":8,"14983":10,"14984":3,"14985":4,"14986":8,"14987":7,"14988":4,"14989":8,"14990":5,"14991":10,"14992":7,"14993":5,"14994":9,"14995":8,"14996":8,"14997":8,"14998":8,"14999":9,"15000":2,"15001":7,"15002":8,"15003":7,"15004":7,"15005":10,"15006":8,"15007":8,"15008":9,"15009":2,"15010":4,"15011":10,"15012":9,"15013":7,"15014":8,"15015":7,"15016":4,"15017":7,"15018":2,"15019":2,"15020":9,"15021":3,"15022":2,"15023":4,"15024":8,"15025":8,"15026":8,"15027":2,"15028":9,"15029":2,"15030":8,"15031":1,"15032":5,"15033":9,"15034":7,"15035":8,"15036":5,"15037":8,"15038":7,"15039":5,"15040":7,"15041":8,"15042":2,"15043":8,"15044":2,"15045":8,"15046":9,"15047":7,"15048":9,"15049":8,"15050":7,"15051":2,"15052":4,"15053":7,"15054":2,"15055":8,"15056":8,"15057":5,"15058":9,"15059":5,"15060":7,"15061":9,"15062":9,"15063":8,"15064":5,"15065":7,"15066":9,"15067":7,"15068":5,"15069":9,"15070":9,"15071":5,"15072":4,"15073":7,"15074":10,"15075":6,"15076":9,"15077":9,"15078":9,"15079":8,"15080":8,"15081":9,"15082":2,"15083":2,"15084":5,"15085":1,"15086":10,"15087":9,"15088":8,"15089":3,"15090":2,"15091":5,"15092":7,"15093":7,"15094":5,"15095":8,"15096":5,"15097":9,"15098":3,"15099":7,"15100":8,"15101":1,"15102":7,"15103":6,"15104":7,"15105":10,"15106":7,"15107":7,"15108":7,"15109":5,"15110":9,"15111":3,"15112":1,"15113":9,"15114":9,"15115":1,"15116":6,"15117":5,"15118":5,"15119":8,"15120":8,"15121":5,"15122":7,"15123":8,"15124":8,"15125":9,"15126":6,"15127":2,"15128":8,"15129":7,"15130":5,"15131":8,"15132":7,"15133":7,"15134":9,"15135":5,"15136":3,"15137":8,"15138":8,"15139":7,"15140":5,"15141":7,"15142":10,"15143":9,"15144":8,"15145":8,"15146":6,"15147":3,"15148":7,"15149":8,"15150":7,"15151":7,"15152":7,"15153":9,"15154":10,"15155":10,"15156":9,"15157":9,"15158":9,"15159":9,"15160":2,"15161":10,"15162":5,"15163":9,"15164":7,"15165":7,"15166":9,"15167":5,"15168":8,"15169":6,"15170":8,"15171":9,"15172":6,"15173":6,"15174":4,"15175":1,"15176":9,"15177":9,"15178":8,"15179":9,"15180":9,"15181":2,"15182":5,"15183":9,"15184":2,"15185":9,"15186":2,"15187":7,"15188":8,"15189":9,"15190":1,"15191":8,"15192":2,"15193":7,"15194":6,"15195":9,"15196":7,"15197":8,"15198":7,"15199":8,"15200":7,"15201":8,"15202":8,"15203":8,"15204":3,"15205":2,"15206":2,"15207":9,"15208":3,"15209":8,"15210":5,"15211":9,"15212":10,"15213":8,"15214":7,"15215":10,"15216":8,"15217":5,"15218":7,"15219":2,"15220":8,"15221":2,"15222":8,"15223":3,"15224":1,"15225":8,"15226":7,"15227":5,"15228":2,"15229":6,"15230":6,"15231":7,"15232":5,"15233":5,"15234":5,"15235":7,"15236":5,"15237":2,"15238":5,"15239":8,"15240":5,"15241":9,"15242":9,"15243":9,"15244":6,"15245":1,"15246":2,"15247":9,"15248":9,"15249":10,"15250":8,"15251":3,"15252":8,"15253":9,"15254":4,"15255":9,"15256":7,"15257":9,"15258":7,"15259":7,"15260":7,"15261":7,"15262":1,"15263":5,"15264":9,"15265":7,"15266":7,"15267":8,"15268":9,"15269":7,"15270":7,"15271":10,"15272":6,"15273":4,"15274":8,"15275":7,"15276":5,"15277":2,"15278":5,"15279":9,"15280":4,"15281":7,"15282":7,"15283":8,"15284":4,"15285":5,"15286":9,"15287":7,"15288":5,"15289":1,"15290":9,"15291":7,"15292":8,"15293":5,"15294":8,"15295":9,"15296":1,"15297":2,"15298":5,"15299":9,"15300":1,"15301":3,"15302":9,"15303":9,"15304":1,"15305":9,"15306":7,"15307":5,"15308":4,"15309":10,"15310":7,"15311":5,"15312":8,"15313":5,"15314":9,"15315":2,"15316":10,"15317":8,"15318":9,"15319":7,"15320":6,"15321":9,"15322":8,"15323":7,"15324":7,"15325":1,"15326":9,"15327":5,"15328":7,"15329":9,"15330":8,"15331":9,"15332":8,"15333":3,"15334":8,"15335":9,"15336":5,"15337":2,"15338":1,"15339":5,"15340":2,"15341":9,"15342":8,"15343":7,"15344":2,"15345":5,"15346":8,"15347":7,"15348":7,"15349":1,"15350":5,"15351":7,"15352":9,"15353":8,"15354":7,"15355":7,"15356":1,"15357":8,"15358":5,"15359":8,"15360":5,"15361":7,"15362":7,"15363":7,"15364":9,"15365":4,"15366":8,"15367":7,"15368":8,"15369":7,"15370":9,"15371":2,"15372":7,"15373":5,"15374":9,"15375":9,"15376":6,"15377":10,"15378":9,"15379":7,"15380":9,"15381":3,"15382":9,"15383":7,"15384":9,"15385":8,"15386":5,"15387":9,"15388":8,"15389":1,"15390":5,"15391":5,"15392":8,"15393":8,"15394":9,"15395":7,"15396":7,"15397":9,"15398":8,"15399":8,"15400":1,"15401":7,"15402":8,"15403":6,"15404":8,"15405":1,"15406":7,"15407":6,"15408":7,"15409":1,"15410":4,"15411":5,"15412":5,"15413":4,"15414":9,"15415":9,"15416":7,"15417":6,"15418":7,"15419":2,"15420":1,"15421":1,"15422":2,"15423":5,"15424":7,"15425":5,"15426":2,"15427":8,"15428":1,"15429":2,"15430":9,"15431":6,"15432":6,"15433":9,"15434":2,"15435":9,"15436":3,"15437":9,"15438":2,"15439":9,"15440":4,"15441":8,"15442":2,"15443":4,"15444":7,"15445":1,"15446":6,"15447":9,"15448":2,"15449":2,"15450":8,"15451":7,"15452":7,"15453":3,"15454":5,"15455":8,"15456":5,"15457":9,"15458":7,"15459":8,"15460":4,"15461":7,"15462":9,"15463":7,"15464":7,"15465":9,"15466":8,"15467":10,"15468":1,"15469":8,"15470":8,"15471":10,"15472":3,"15473":8,"15474":9,"15475":7,"15476":1,"15477":9,"15478":8,"15479":2,"15480":8,"15481":10,"15482":7,"15483":9,"15484":5,"15485":9,"15486":8,"15487":7,"15488":9,"15489":9,"15490":9,"15491":7,"15492":2,"15493":8,"15494":10,"15495":2,"15496":2,"15497":1,"15498":9,"15499":5,"15500":2,"15501":9,"15502":2,"15503":9,"15504":7,"15505":5,"15506":5,"15507":2,"15508":2,"15509":2,"15510":5,"15511":8,"15512":5,"15513":5,"15514":9,"15515":6,"15516":9,"15517":10,"15518":7,"15519":1,"15520":7,"15521":2,"15522":9,"15523":8,"15524":6,"15525":7,"15526":5,"15527":2,"15528":7,"15529":8,"15530":1,"15531":7,"15532":6,"15533":2,"15534":2,"15535":3,"15536":8,"15537":7,"15538":5,"15539":8,"15540":9,"15541":4,"15542":7,"15543":5,"15544":9,"15545":2,"15546":7,"15547":2,"15548":9,"15549":7,"15550":4,"15551":9,"15552":8,"15553":7,"15554":8,"15555":9,"15556":7,"15557":9,"15558":8,"15559":2,"15560":7,"15561":8,"15562":6,"15563":8,"15564":5,"15565":4,"15566":5,"15567":8,"15568":2,"15569":2,"15570":5,"15571":9,"15572":8,"15573":1,"15574":7,"15575":8,"15576":6,"15577":9,"15578":9,"15579":2,"15580":5,"15581":9,"15582":5,"15583":7,"15584":8,"15585":3,"15586":6,"15587":8,"15588":3,"15589":5,"15590":5,"15591":2,"15592":8,"15593":10,"15594":7,"15595":7,"15596":5,"15597":1,"15598":8,"15599":9,"15600":5,"15601":9,"15602":9,"15603":7,"15604":5,"15605":6,"15606":1,"15607":8,"15608":7,"15609":6,"15610":4,"15611":7,"15612":7,"15613":7,"15614":8,"15615":6,"15616":10,"15617":8,"15618":9,"15619":7,"15620":9,"15621":2,"15622":10,"15623":5,"15624":5,"15625":6,"15626":5,"15627":5,"15628":6,"15629":4,"15630":2,"15631":8,"15632":6,"15633":9,"15634":9,"15635":2,"15636":9,"15637":9,"15638":8,"15639":7,"15640":6,"15641":3,"15642":1,"15643":9,"15644":7,"15645":1,"15646":3,"15647":7,"15648":5,"15649":7,"15650":3,"15651":5,"15652":8,"15653":2,"15654":7,"15655":4,"15656":9,"15657":8,"15658":1,"15659":8,"15660":10,"15661":8,"15662":4,"15663":5,"15664":5,"15665":8,"15666":9,"15667":9,"15668":5,"15669":2,"15670":8,"15671":9,"15672":7,"15673":9,"15674":1,"15675":9,"15676":9,"15677":7,"15678":7,"15679":2,"15680":2,"15681":9,"15682":4,"15683":8,"15684":9,"15685":6,"15686":9,"15687":8,"15688":7,"15689":7,"15690":5,"15691":5,"15692":8,"15693":6,"15694":7,"15695":4,"15696":4,"15697":6,"15698":1,"15699":8,"15700":3,"15701":8,"15702":2,"15703":7,"15704":6,"15705":6,"15706":9,"15707":8,"15708":8,"15709":10,"15710":8,"15711":4,"15712":1,"15713":9,"15714":9,"15715":8,"15716":9,"15717":8,"15718":8,"15719":6,"15720":9,"15721":7,"15722":3,"15723":4,"15724":5,"15725":8,"15726":8,"15727":4,"15728":6,"15729":8,"15730":9,"15731":1,"15732":3,"15733":4,"15734":8,"15735":8,"15736":7,"15737":2,"15738":4,"15739":4,"15740":9,"15741":7,"15742":5,"15743":4,"15744":8,"15745":9,"15746":8,"15747":8,"15748":8,"15749":9,"15750":5,"15751":5,"15752":7,"15753":9,"15754":8,"15755":6,"15756":1,"15757":2,"15758":10,"15759":3,"15760":10,"15761":9,"15762":8,"15763":5,"15764":8,"15765":9,"15766":1,"15767":9,"15768":8,"15769":2,"15770":5,"15771":1,"15772":8,"15773":5,"15774":1,"15775":10,"15776":10,"15777":9,"15778":1,"15779":6,"15780":10,"15781":4,"15782":8,"15783":5,"15784":1,"15785":2,"15786":1,"15787":2,"15788":3,"15789":7,"15790":9,"15791":7,"15792":7,"15793":8,"15794":8,"15795":9,"15796":5,"15797":5,"15798":1,"15799":8,"15800":10,"15801":10,"15802":7,"15803":7,"15804":1,"15805":9,"15806":9,"15807":8,"15808":7,"15809":7,"15810":7,"15811":7,"15812":8,"15813":2,"15814":8,"15815":7,"15816":9,"15817":5,"15818":1,"15819":7,"15820":7,"15821":6,"15822":8,"15823":2,"15824":9,"15825":6,"15826":10,"15827":5,"15828":3,"15829":8,"15830":6,"15831":1,"15832":8,"15833":3,"15834":5,"15835":1,"15836":5,"15837":9,"15838":8,"15839":3,"15840":9,"15841":7,"15842":8,"15843":7,"15844":7,"15845":3,"15846":10,"15847":9,"15848":7,"15849":8,"15850":5,"15851":6,"15852":9,"15853":9,"15854":9,"15855":9,"15856":9,"15857":2,"15858":8,"15859":4,"15860":9,"15861":7,"15862":1,"15863":4,"15864":1,"15865":9,"15866":1,"15867":1,"15868":7,"15869":7,"15870":3,"15871":9,"15872":5,"15873":8,"15874":4,"15875":8,"15876":2,"15877":5,"15878":4,"15879":3,"15880":7,"15881":2,"15882":3,"15883":3,"15884":9,"15885":9,"15886":2,"15887":8,"15888":1,"15889":2,"15890":7,"15891":5,"15892":7,"15893":2,"15894":5,"15895":5,"15896":5,"15897":5,"15898":5,"15899":8,"15900":2,"15901":7,"15902":8,"15903":9,"15904":5,"15905":6,"15906":2,"15907":2,"15908":1,"15909":10,"15910":9,"15911":8,"15912":5,"15913":7,"15914":8,"15915":8,"15916":1,"15917":2,"15918":6,"15919":10,"15920":2,"15921":7,"15922":2,"15923":9,"15924":8,"15925":9,"15926":10,"15927":2,"15928":7,"15929":1,"15930":7,"15931":8,"15932":9,"15933":7,"15934":7,"15935":2,"15936":6,"15937":10,"15938":6,"15939":1,"15940":7,"15941":2,"15942":8,"15943":5,"15944":4,"15945":7,"15946":5,"15947":10,"15948":8,"15949":1,"15950":9,"15951":9,"15952":9,"15953":5,"15954":9,"15955":6,"15956":4,"15957":2,"15958":7,"15959":9,"15960":2,"15961":8,"15962":3,"15963":7,"15964":7,"15965":8,"15966":7,"15967":7,"15968":10,"15969":4,"15970":9,"15971":8,"15972":1,"15973":6,"15974":8,"15975":8,"15976":10,"15977":8,"15978":7,"15979":7,"15980":5,"15981":9,"15982":1,"15983":5,"15984":8,"15985":8,"15986":9,"15987":3,"15988":10,"15989":3,"15990":7,"15991":7,"15992":2,"15993":8,"15994":3,"15995":8,"15996":8,"15997":2,"15998":8,"15999":3,"16000":7,"16001":3,"16002":8,"16003":7,"16004":9,"16005":8,"16006":3,"16007":10,"16008":8,"16009":9,"16010":9,"16011":8,"16012":1,"16013":7,"16014":9,"16015":8,"16016":6,"16017":6,"16018":9,"16019":1,"16020":7,"16021":8,"16022":7,"16023":6,"16024":7,"16025":7,"16026":8,"16027":1,"16028":10,"16029":1,"16030":5,"16031":7,"16032":8,"16033":7,"16034":2,"16035":10,"16036":7,"16037":1,"16038":8,"16039":8,"16040":9,"16041":2,"16042":3,"16043":8,"16044":7,"16045":8,"16046":1,"16047":7,"16048":5,"16049":7,"16050":8,"16051":10,"16052":8,"16053":10,"16054":4,"16055":8,"16056":7,"16057":9,"16058":7,"16059":7,"16060":5,"16061":7,"16062":1,"16063":6,"16064":5,"16065":8,"16066":8,"16067":7,"16068":1,"16069":8,"16070":5,"16071":8,"16072":10,"16073":7,"16074":9,"16075":1,"16076":7,"16077":4,"16078":7,"16079":7,"16080":8,"16081":2,"16082":1,"16083":9,"16084":5,"16085":8,"16086":5,"16087":7,"16088":2,"16089":7,"16090":1,"16091":10,"16092":7,"16093":8,"16094":8,"16095":6,"16096":4,"16097":4,"16098":8,"16099":7,"16100":5,"16101":4,"16102":4,"16103":10,"16104":5,"16105":8,"16106":8,"16107":6,"16108":5,"16109":8,"16110":9,"16111":9,"16112":10,"16113":9,"16114":10,"16115":10,"16116":5,"16117":9,"16118":2,"16119":7,"16120":9,"16121":8,"16122":9,"16123":6,"16124":7,"16125":5,"16126":7,"16127":2,"16128":5,"16129":5,"16130":7,"16131":6,"16132":8,"16133":2,"16134":7,"16135":8,"16136":8,"16137":8,"16138":8,"16139":4,"16140":2,"16141":5,"16142":6,"16143":9,"16144":8,"16145":9,"16146":5,"16147":7,"16148":7,"16149":8,"16150":9,"16151":9,"16152":7,"16153":10,"16154":3,"16155":2,"16156":2,"16157":7,"16158":4,"16159":7,"16160":7,"16161":7,"16162":8,"16163":5,"16164":9,"16165":2,"16166":7,"16167":9,"16168":7,"16169":10,"16170":8,"16171":9,"16172":7,"16173":7,"16174":7,"16175":8,"16176":8,"16177":3,"16178":8,"16179":9,"16180":2,"16181":5,"16182":10,"16183":9,"16184":7,"16185":2,"16186":7,"16187":5,"16188":7,"16189":9,"16190":7,"16191":7,"16192":8,"16193":2,"16194":2,"16195":1,"16196":9,"16197":5,"16198":8,"16199":1,"16200":6,"16201":1,"16202":5,"16203":7,"16204":7,"16205":7,"16206":5,"16207":10,"16208":7,"16209":3,"16210":10,"16211":9,"16212":7,"16213":8,"16214":7,"16215":8,"16216":7,"16217":7,"16218":8,"16219":8,"16220":8,"16221":8,"16222":2,"16223":5,"16224":9,"16225":9,"16226":9,"16227":2,"16228":8,"16229":9,"16230":9,"16231":8,"16232":2,"16233":5,"16234":9,"16235":7,"16236":2,"16237":8,"16238":1,"16239":9,"16240":5,"16241":9,"16242":2,"16243":6,"16244":5,"16245":8,"16246":7,"16247":2,"16248":2,"16249":9,"16250":3,"16251":2,"16252":8,"16253":9,"16254":2,"16255":2,"16256":2,"16257":8,"16258":5,"16259":7,"16260":9,"16261":9,"16262":8,"16263":4,"16264":2,"16265":7,"16266":9,"16267":3,"16268":6,"16269":7,"16270":1,"16271":7,"16272":7,"16273":8,"16274":9,"16275":6,"16276":6,"16277":6,"16278":7,"16279":7,"16280":8,"16281":4,"16282":4,"16283":8,"16284":3,"16285":5,"16286":2,"16287":10,"16288":2,"16289":2,"16290":2,"16291":8,"16292":6,"16293":9,"16294":6,"16295":9,"16296":7,"16297":7,"16298":7,"16299":9,"16300":8,"16301":9,"16302":7,"16303":10,"16304":10,"16305":8,"16306":9,"16307":7,"16308":8,"16309":7,"16310":7,"16311":8,"16312":8,"16313":7,"16314":6,"16315":4,"16316":8,"16317":9,"16318":7,"16319":9,"16320":1,"16321":9,"16322":8,"16323":2,"16324":9,"16325":7,"16326":7,"16327":2,"16328":8,"16329":9,"16330":7,"16331":7,"16332":10,"16333":1,"16334":5,"16335":6,"16336":7,"16337":8,"16338":7,"16339":9,"16340":7,"16341":7,"16342":8,"16343":8,"16344":2,"16345":2,"16346":2,"16347":9,"16348":7,"16349":1,"16350":7,"16351":10,"16352":10,"16353":7,"16354":9,"16355":7,"16356":6,"16357":7,"16358":9,"16359":5,"16360":7,"16361":3,"16362":7,"16363":7,"16364":8,"16365":7,"16366":9,"16367":7,"16368":2,"16369":8,"16370":8,"16371":2,"16372":7,"16373":10,"16374":10,"16375":8,"16376":8,"16377":3,"16378":8,"16379":7,"16380":3,"16381":2,"16382":4,"16383":8,"16384":6,"16385":9,"16386":7,"16387":9,"16388":2,"16389":9,"16390":7,"16391":2,"16392":9,"16393":8,"16394":5,"16395":5,"16396":3,"16397":8,"16398":7,"16399":9,"16400":8,"16401":8,"16402":9,"16403":10,"16404":7,"16405":6,"16406":2,"16407":1,"16408":5,"16409":8,"16410":6,"16411":9,"16412":7,"16413":10,"16414":7,"16415":2,"16416":3,"16417":8,"16418":3,"16419":1,"16420":2,"16421":3,"16422":5,"16423":9,"16424":8,"16425":10,"16426":1,"16427":8,"16428":2,"16429":9,"16430":4,"16431":9,"16432":9,"16433":7,"16434":10,"16435":2,"16436":2,"16437":9,"16438":7,"16439":9,"16440":2,"16441":4,"16442":3,"16443":8,"16444":5,"16445":1,"16446":6,"16447":6,"16448":4,"16449":7,"16450":8,"16451":10,"16452":7,"16453":6,"16454":8,"16455":9,"16456":5,"16457":10,"16458":8,"16459":8,"16460":6,"16461":10,"16462":5,"16463":7,"16464":8,"16465":8,"16466":8,"16467":1,"16468":8,"16469":4,"16470":9,"16471":8,"16472":7,"16473":10,"16474":8,"16475":2,"16476":10,"16477":8,"16478":5,"16479":6,"16480":8,"16481":6,"16482":8,"16483":7,"16484":10,"16485":5,"16486":3,"16487":2,"16488":8,"16489":7,"16490":8,"16491":6,"16492":2,"16493":8,"16494":8,"16495":3,"16496":9,"16497":2,"16498":5,"16499":9,"16500":7,"16501":9,"16502":6,"16503":4,"16504":6,"16505":1,"16506":8,"16507":9,"16508":9,"16509":8,"16510":8,"16511":10,"16512":1,"16513":8,"16514":1,"16515":8,"16516":3,"16517":5,"16518":8,"16519":8,"16520":9,"16521":9,"16522":8,"16523":5,"16524":4,"16525":10,"16526":9,"16527":2,"16528":8,"16529":8,"16530":8,"16531":5,"16532":9,"16533":8,"16534":2,"16535":5,"16536":1,"16537":3,"16538":9,"16539":7,"16540":8,"16541":1,"16542":9,"16543":8,"16544":9,"16545":8,"16546":2,"16547":8,"16548":8,"16549":7,"16550":5,"16551":2,"16552":7,"16553":8,"16554":4,"16555":9,"16556":9,"16557":10,"16558":5,"16559":7,"16560":9,"16561":10,"16562":10,"16563":3,"16564":7,"16565":7,"16566":9,"16567":7,"16568":7,"16569":3,"16570":7,"16571":6,"16572":3,"16573":3,"16574":4,"16575":2,"16576":9,"16577":7,"16578":8,"16579":8,"16580":7,"16581":6,"16582":9,"16583":5,"16584":7,"16585":5,"16586":9,"16587":5,"16588":10,"16589":7,"16590":10,"16591":10,"16592":7,"16593":9,"16594":7,"16595":7,"16596":5,"16597":4,"16598":5,"16599":7,"16600":3,"16601":9,"16602":5,"16603":8,"16604":5,"16605":7,"16606":8,"16607":9,"16608":4,"16609":9,"16610":9,"16611":7,"16612":7,"16613":9,"16614":7,"16615":1,"16616":8,"16617":8,"16618":7,"16619":2,"16620":7,"16621":8,"16622":2,"16623":8,"16624":5,"16625":2,"16626":3,"16627":5,"16628":8,"16629":10,"16630":8,"16631":8,"16632":2,"16633":8,"16634":8,"16635":8,"16636":8,"16637":5,"16638":8,"16639":4,"16640":4,"16641":5,"16642":7,"16643":3,"16644":2,"16645":7,"16646":6,"16647":8,"16648":2,"16649":7,"16650":1,"16651":7,"16652":6,"16653":2,"16654":9,"16655":7,"16656":1,"16657":7,"16658":2,"16659":6,"16660":8,"16661":2,"16662":8,"16663":8,"16664":8,"16665":6,"16666":7,"16667":9,"16668":7,"16669":7,"16670":1,"16671":8,"16672":5,"16673":2,"16674":7,"16675":7,"16676":7,"16677":9,"16678":2,"16679":2,"16680":4,"16681":5,"16682":8,"16683":9,"16684":8,"16685":1,"16686":5,"16687":8,"16688":5,"16689":9,"16690":2,"16691":8,"16692":3,"16693":5,"16694":5,"16695":10,"16696":2,"16697":5,"16698":10,"16699":5,"16700":1,"16701":5,"16702":8,"16703":3,"16704":8,"16705":7,"16706":9,"16707":9,"16708":5,"16709":4,"16710":8,"16711":8,"16712":4,"16713":6,"16714":9,"16715":5,"16716":7,"16717":9,"16718":7,"16719":9,"16720":3,"16721":10,"16722":7,"16723":5,"16724":5,"16725":5,"16726":5,"16727":8,"16728":8,"16729":9,"16730":5,"16731":1,"16732":6,"16733":2,"16734":4,"16735":2,"16736":3,"16737":8,"16738":10,"16739":7,"16740":9,"16741":8,"16742":8,"16743":8,"16744":7,"16745":2,"16746":6,"16747":5,"16748":9,"16749":5,"16750":6,"16751":7,"16752":4,"16753":5,"16754":7,"16755":2,"16756":7,"16757":9,"16758":1,"16759":5,"16760":6,"16761":7,"16762":4,"16763":3,"16764":5,"16765":4,"16766":7,"16767":8,"16768":8,"16769":7,"16770":7,"16771":6,"16772":9,"16773":5,"16774":9,"16775":4,"16776":1,"16777":9,"16778":2,"16779":8,"16780":7,"16781":7,"16782":7,"16783":7,"16784":8,"16785":9,"16786":6,"16787":7,"16788":6,"16789":5,"16790":8,"16791":9,"16792":7,"16793":9,"16794":4,"16795":5,"16796":5,"16797":3,"16798":3,"16799":7,"16800":5,"16801":3,"16802":5,"16803":5,"16804":1,"16805":8,"16806":9,"16807":2,"16808":8,"16809":8,"16810":9,"16811":7,"16812":2,"16813":5,"16814":1,"16815":10,"16816":2,"16817":8,"16818":2,"16819":9,"16820":3,"16821":8,"16822":10,"16823":9,"16824":7,"16825":2,"16826":8,"16827":5,"16828":7,"16829":9,"16830":2,"16831":10,"16832":7,"16833":9,"16834":9,"16835":2,"16836":8,"16837":5,"16838":2,"16839":10,"16840":5,"16841":7,"16842":7,"16843":8,"16844":9,"16845":2,"16846":10,"16847":4,"16848":8,"16849":4,"16850":5,"16851":10,"16852":6,"16853":4,"16854":8,"16855":8,"16856":8,"16857":4,"16858":1,"16859":3,"16860":2,"16861":5,"16862":9,"16863":7,"16864":8,"16865":4,"16866":5,"16867":9,"16868":3,"16869":10,"16870":5,"16871":1,"16872":2,"16873":8,"16874":7,"16875":9,"16876":5,"16877":7,"16878":7,"16879":7,"16880":9,"16881":1,"16882":9,"16883":7,"16884":9,"16885":10,"16886":8,"16887":5,"16888":9,"16889":5,"16890":6,"16891":7,"16892":9,"16893":1,"16894":7,"16895":3,"16896":5,"16897":9,"16898":7,"16899":7,"16900":1,"16901":2,"16902":4,"16903":5,"16904":4,"16905":2,"16906":8,"16907":4,"16908":2,"16909":8,"16910":7,"16911":7,"16912":6,"16913":5,"16914":5,"16915":7,"16916":10,"16917":7,"16918":1,"16919":8,"16920":3,"16921":8,"16922":7,"16923":9,"16924":7,"16925":6,"16926":8,"16927":8,"16928":8,"16929":9,"16930":8,"16931":9,"16932":2,"16933":1,"16934":8,"16935":8,"16936":9,"16937":7,"16938":5,"16939":7,"16940":8,"16941":10,"16942":2,"16943":6,"16944":10,"16945":7,"16946":10,"16947":8,"16948":6,"16949":7,"16950":5,"16951":5,"16952":1,"16953":8,"16954":7,"16955":7,"16956":9,"16957":5,"16958":8,"16959":7,"16960":7,"16961":4,"16962":6,"16963":8,"16964":6,"16965":4,"16966":1,"16967":9,"16968":3,"16969":2,"16970":8,"16971":4,"16972":9,"16973":7,"16974":6,"16975":10,"16976":4,"16977":2,"16978":8,"16979":8,"16980":4,"16981":9,"16982":9,"16983":9,"16984":7,"16985":5,"16986":8,"16987":7,"16988":7,"16989":2,"16990":9,"16991":3,"16992":10,"16993":7,"16994":8,"16995":7,"16996":5,"16997":9,"16998":2,"16999":5,"17000":6,"17001":10,"17002":1,"17003":4,"17004":8,"17005":1,"17006":9,"17007":5,"17008":6,"17009":7,"17010":7,"17011":9,"17012":9,"17013":8,"17014":8,"17015":7,"17016":2,"17017":6,"17018":9,"17019":6,"17020":3,"17021":7,"17022":1,"17023":1,"17024":7,"17025":7,"17026":8,"17027":2,"17028":2,"17029":8,"17030":9,"17031":7,"17032":7,"17033":6,"17034":8,"17035":4,"17036":3,"17037":3,"17038":7,"17039":6,"17040":1,"17041":7,"17042":4,"17043":8,"17044":5,"17045":5,"17046":7,"17047":8,"17048":7,"17049":8,"17050":7,"17051":8,"17052":9,"17053":9,"17054":9,"17055":5,"17056":10,"17057":9,"17058":7,"17059":9,"17060":7,"17061":7,"17062":2,"17063":7,"17064":5,"17065":9,"17066":8,"17067":9,"17068":5,"17069":3,"17070":9,"17071":2,"17072":9,"17073":2,"17074":9,"17075":7,"17076":5,"17077":6,"17078":5,"17079":9,"17080":2,"17081":8,"17082":7,"17083":7,"17084":8,"17085":8,"17086":9,"17087":1,"17088":8,"17089":8,"17090":8,"17091":2,"17092":8,"17093":1,"17094":9,"17095":7,"17096":5,"17097":5,"17098":5,"17099":2,"17100":9,"17101":8,"17102":1,"17103":3,"17104":5,"17105":9,"17106":10,"17107":1,"17108":8,"17109":8,"17110":2,"17111":9,"17112":9,"17113":10,"17114":7,"17115":7,"17116":6,"17117":9,"17118":4,"17119":7,"17120":3,"17121":9,"17122":6,"17123":9,"17124":8,"17125":10,"17126":10,"17127":6,"17128":8,"17129":8,"17130":8,"17131":8,"17132":2,"17133":2,"17134":7,"17135":5,"17136":6,"17137":8,"17138":4,"17139":8,"17140":7,"17141":7,"17142":8,"17143":8,"17144":2,"17145":9,"17146":5,"17147":2,"17148":6,"17149":8,"17150":8,"17151":7,"17152":9,"17153":8,"17154":10,"17155":6,"17156":8,"17157":9,"17158":2,"17159":10,"17160":6,"17161":8,"17162":7,"17163":1,"17164":8,"17165":5,"17166":7,"17167":8,"17168":9,"17169":9,"17170":8,"17171":7,"17172":8,"17173":9,"17174":8,"17175":2,"17176":2,"17177":8,"17178":7,"17179":8,"17180":7,"17181":9,"17182":5,"17183":9,"17184":7,"17185":8,"17186":2,"17187":8,"17188":6,"17189":7,"17190":9,"17191":2,"17192":5,"17193":8,"17194":7,"17195":7,"17196":8,"17197":8,"17198":5,"17199":1,"17200":7,"17201":7,"17202":1,"17203":9,"17204":2,"17205":8,"17206":4,"17207":8,"17208":8,"17209":9,"17210":9,"17211":8,"17212":8,"17213":8,"17214":9,"17215":10,"17216":8,"17217":9,"17218":8,"17219":8,"17220":9,"17221":7,"17222":9,"17223":7,"17224":1,"17225":7,"17226":2,"17227":7,"17228":9,"17229":3,"17230":9,"17231":8,"17232":8,"17233":5,"17234":9,"17235":9,"17236":8,"17237":8,"17238":8,"17239":8,"17240":2,"17241":7,"17242":2,"17243":2,"17244":8,"17245":7,"17246":2,"17247":7,"17248":2,"17249":8,"17250":6,"17251":7,"17252":9,"17253":7,"17254":9,"17255":9,"17256":9,"17257":5,"17258":8,"17259":2,"17260":2,"17261":2,"17262":7,"17263":5,"17264":8,"17265":6,"17266":9,"17267":4,"17268":2,"17269":8,"17270":9,"17271":8,"17272":9,"17273":9,"17274":6,"17275":9,"17276":4,"17277":2,"17278":7,"17279":8,"17280":8,"17281":8,"17282":10,"17283":9,"17284":7,"17285":1,"17286":9,"17287":8,"17288":9,"17289":10,"17290":8,"17291":3,"17292":1,"17293":8,"17294":7,"17295":5,"17296":9,"17297":2,"17298":1,"17299":2,"17300":10,"17301":6,"17302":1,"17303":7,"17304":6,"17305":1,"17306":8,"17307":7,"17308":9,"17309":2,"17310":7,"17311":7,"17312":2,"17313":1,"17314":9,"17315":10,"17316":8,"17317":4,"17318":5,"17319":5,"17320":8,"17321":5,"17322":1,"17323":9,"17324":9,"17325":8,"17326":5,"17327":7,"17328":1,"17329":2,"17330":5,"17331":4,"17332":8,"17333":7,"17334":9,"17335":9,"17336":5,"17337":5,"17338":10,"17339":2,"17340":1,"17341":7,"17342":8,"17343":10,"17344":6,"17345":3,"17346":8,"17347":4,"17348":8,"17349":7,"17350":3,"17351":8,"17352":2,"17353":6,"17354":9,"17355":8,"17356":2,"17357":7,"17358":7,"17359":2,"17360":5,"17361":3,"17362":8,"17363":2,"17364":9,"17365":5,"17366":7,"17367":7,"17368":3,"17369":8,"17370":9,"17371":8,"17372":10,"17373":5,"17374":9,"17375":2,"17376":4,"17377":1,"17378":8,"17379":5,"17380":3,"17381":9,"17382":3,"17383":9,"17384":6,"17385":2,"17386":7,"17387":9,"17388":2,"17389":7,"17390":8,"17391":2,"17392":8,"17393":8,"17394":7,"17395":9,"17396":4,"17397":1,"17398":5,"17399":2,"17400":9,"17401":7,"17402":5,"17403":8,"17404":8,"17405":6,"17406":6,"17407":5,"17408":9,"17409":2,"17410":7,"17411":9,"17412":8,"17413":5,"17414":8,"17415":3,"17416":6,"17417":2,"17418":5,"17419":1,"17420":7,"17421":9,"17422":10,"17423":1,"17424":1,"17425":8,"17426":7,"17427":6,"17428":7,"17429":7,"17430":2,"17431":4,"17432":3,"17433":9,"17434":7,"17435":10,"17436":6,"17437":4,"17438":8,"17439":8,"17440":6,"17441":7,"17442":2,"17443":5,"17444":10,"17445":7,"17446":8,"17447":5,"17448":8,"17449":7,"17450":3,"17451":7,"17452":2,"17453":2,"17454":3,"17455":8,"17456":10,"17457":5,"17458":2,"17459":2,"17460":8,"17461":9,"17462":7,"17463":7,"17464":2,"17465":2,"17466":8,"17467":7,"17468":8,"17469":2,"17470":1,"17471":5,"17472":9,"17473":1,"17474":10,"17475":8,"17476":3,"17477":2,"17478":3,"17479":10,"17480":2,"17481":2,"17482":8,"17483":8,"17484":9,"17485":5,"17486":7,"17487":7,"17488":5,"17489":2,"17490":8,"17491":5,"17492":2,"17493":8,"17494":8,"17495":6,"17496":9,"17497":4,"17498":2,"17499":8,"17500":4,"17501":7,"17502":1,"17503":8,"17504":7,"17505":6,"17506":3,"17507":2,"17508":8,"17509":5,"17510":7,"17511":3,"17512":2,"17513":8,"17514":8,"17515":7,"17516":9,"17517":2,"17518":9,"17519":8,"17520":8,"17521":2,"17522":4,"17523":8,"17524":7,"17525":8,"17526":8,"17527":8,"17528":9,"17529":5,"17530":8,"17531":5,"17532":7,"17533":7,"17534":5,"17535":7,"17536":8,"17537":7,"17538":7,"17539":8,"17540":2,"17541":7,"17542":9,"17543":2,"17544":8,"17545":1,"17546":9,"17547":5,"17548":2,"17549":8,"17550":6,"17551":5,"17552":6,"17553":7,"17554":7,"17555":7,"17556":5,"17557":9,"17558":7,"17559":7,"17560":7,"17561":9,"17562":8,"17563":9,"17564":6,"17565":4,"17566":8,"17567":8,"17568":7,"17569":2,"17570":7,"17571":6,"17572":9,"17573":9,"17574":5,"17575":7,"17576":8,"17577":7,"17578":8,"17579":8,"17580":10,"17581":10,"17582":2,"17583":5,"17584":8,"17585":1,"17586":4,"17587":7,"17588":8,"17589":5,"17590":8,"17591":8,"17592":8,"17593":6,"17594":9,"17595":6,"17596":2,"17597":7,"17598":8,"17599":7,"17600":2,"17601":7,"17602":6,"17603":8,"17604":9,"17605":1,"17606":8,"17607":7,"17608":1,"17609":10,"17610":2,"17611":7,"17612":6,"17613":7,"17614":7,"17615":10,"17616":9,"17617":7,"17618":4,"17619":8,"17620":3,"17621":7,"17622":7,"17623":5,"17624":2,"17625":8,"17626":7,"17627":8,"17628":9,"17629":9,"17630":5,"17631":2,"17632":2,"17633":2,"17634":7,"17635":1,"17636":2,"17637":7,"17638":2,"17639":2,"17640":2,"17641":9,"17642":9,"17643":7,"17644":2,"17645":8,"17646":8,"17647":9,"17648":7,"17649":5,"17650":8,"17651":7,"17652":8,"17653":7,"17654":6,"17655":2,"17656":8,"17657":5,"17658":6,"17659":7,"17660":2,"17661":2,"17662":8,"17663":9,"17664":7,"17665":6,"17666":7,"17667":5,"17668":9,"17669":8,"17670":2,"17671":5,"17672":3,"17673":3,"17674":2,"17675":10,"17676":9,"17677":7,"17678":8,"17679":7,"17680":4,"17681":2,"17682":8,"17683":8,"17684":7,"17685":9,"17686":6,"17687":8,"17688":9,"17689":6,"17690":4,"17691":7,"17692":9,"17693":10,"17694":5,"17695":9,"17696":8,"17697":5,"17698":9,"17699":8,"17700":7,"17701":9,"17702":8,"17703":8,"17704":9,"17705":1,"17706":10,"17707":8,"17708":5,"17709":10,"17710":3,"17711":6,"17712":4,"17713":1,"17714":5,"17715":7,"17716":9,"17717":2,"17718":8,"17719":3,"17720":4,"17721":10,"17722":2,"17723":7,"17724":5,"17725":1,"17726":7,"17727":9,"17728":1,"17729":7,"17730":5,"17731":1,"17732":2,"17733":3,"17734":7,"17735":4,"17736":2,"17737":8,"17738":6,"17739":7,"17740":5,"17741":2,"17742":5,"17743":8,"17744":7,"17745":10,"17746":5,"17747":2,"17748":9,"17749":10,"17750":10,"17751":2,"17752":6,"17753":1,"17754":9,"17755":4,"17756":4,"17757":3,"17758":2,"17759":2,"17760":9,"17761":10,"17762":9,"17763":8,"17764":3,"17765":9,"17766":9,"17767":8,"17768":2,"17769":7,"17770":5,"17771":9,"17772":3,"17773":8,"17774":6,"17775":9,"17776":5,"17777":1,"17778":3,"17779":7,"17780":1,"17781":8,"17782":4,"17783":5,"17784":6,"17785":8,"17786":4,"17787":7,"17788":4,"17789":4,"17790":7,"17791":3,"17792":8,"17793":3,"17794":10,"17795":9,"17796":8,"17797":9,"17798":4,"17799":4,"17800":7,"17801":9,"17802":7,"17803":7,"17804":9,"17805":2,"17806":8,"17807":9,"17808":8,"17809":7,"17810":9,"17811":8,"17812":1,"17813":7,"17814":8,"17815":1,"17816":3,"17817":8,"17818":1,"17819":7,"17820":7,"17821":8,"17822":9,"17823":2,"17824":10,"17825":7,"17826":8,"17827":2,"17828":9,"17829":9,"17830":9,"17831":5,"17832":8,"17833":2,"17834":2,"17835":7,"17836":9,"17837":2,"17838":4,"17839":7,"17840":2,"17841":4,"17842":3,"17843":2,"17844":5,"17845":9,"17846":4,"17847":1,"17848":8,"17849":1,"17850":2,"17851":9,"17852":7,"17853":7,"17854":9,"17855":7,"17856":9,"17857":9,"17858":8,"17859":9,"17860":3,"17861":6,"17862":9,"17863":9,"17864":8,"17865":9,"17866":9,"17867":7,"17868":8,"17869":1,"17870":7,"17871":7,"17872":9,"17873":6,"17874":5,"17875":8,"17876":5,"17877":9,"17878":6,"17879":7,"17880":10,"17881":8,"17882":8,"17883":6,"17884":8,"17885":5,"17886":8,"17887":4,"17888":4,"17889":8,"17890":6,"17891":6,"17892":7,"17893":4,"17894":2,"17895":9,"17896":2,"17897":5,"17898":2,"17899":8,"17900":2,"17901":2,"17902":7,"17903":1,"17904":4,"17905":6,"17906":9,"17907":7,"17908":9,"17909":9,"17910":7,"17911":10,"17912":10,"17913":9,"17914":3,"17915":6,"17916":3,"17917":7,"17918":7,"17919":2,"17920":8,"17921":7,"17922":5,"17923":9,"17924":8,"17925":3,"17926":5,"17927":7,"17928":2,"17929":10,"17930":2,"17931":8,"17932":9,"17933":9,"17934":8,"17935":8,"17936":9,"17937":9,"17938":7,"17939":9,"17940":5,"17941":8,"17942":2,"17943":3,"17944":9,"17945":4,"17946":7,"17947":5,"17948":9,"17949":8,"17950":7,"17951":5,"17952":10,"17953":2,"17954":4,"17955":9,"17956":8,"17957":8,"17958":8,"17959":7,"17960":3,"17961":9,"17962":1,"17963":10,"17964":5,"17965":3,"17966":8,"17967":5,"17968":8,"17969":5,"17970":8,"17971":8,"17972":8,"17973":10,"17974":10,"17975":7,"17976":9,"17977":8,"17978":9,"17979":7,"17980":1,"17981":9,"17982":9,"17983":2,"17984":7,"17985":7,"17986":7,"17987":8,"17988":9,"17989":9,"17990":5,"17991":9,"17992":10,"17993":7,"17994":10,"17995":6,"17996":1,"17997":6,"17998":8,"17999":9,"18000":7,"18001":2,"18002":5,"18003":9,"18004":7,"18005":9,"18006":1,"18007":9,"18008":10,"18009":8,"18010":7,"18011":7,"18012":1,"18013":5,"18014":2,"18015":1,"18016":7,"18017":1,"18018":7,"18019":5,"18020":5,"18021":3,"18022":2,"18023":9,"18024":8,"18025":5,"18026":9,"18027":1,"18028":7,"18029":4,"18030":2,"18031":7,"18032":10,"18033":7,"18034":9,"18035":7,"18036":8,"18037":6,"18038":1,"18039":7,"18040":7,"18041":9,"18042":5,"18043":8,"18044":1,"18045":2,"18046":5,"18047":2,"18048":7,"18049":8,"18050":5,"18051":3,"18052":6,"18053":8,"18054":5,"18055":7,"18056":7,"18057":9,"18058":6,"18059":7,"18060":7,"18061":4,"18062":7,"18063":8,"18064":5,"18065":8,"18066":9,"18067":8,"18068":2,"18069":1,"18070":2,"18071":7,"18072":8,"18073":7,"18074":8,"18075":7,"18076":8,"18077":6,"18078":7,"18079":3,"18080":4,"18081":9,"18082":3,"18083":9,"18084":5,"18085":8,"18086":7,"18087":5,"18088":8,"18089":9,"18090":4,"18091":8,"18092":7,"18093":8,"18094":9,"18095":8,"18096":9,"18097":2,"18098":6,"18099":6,"18100":10,"18101":2,"18102":9,"18103":2,"18104":8,"18105":9,"18106":1,"18107":6,"18108":10,"18109":8,"18110":5,"18111":9,"18112":4,"18113":2,"18114":6,"18115":2,"18116":6,"18117":9,"18118":6,"18119":9,"18120":7,"18121":6,"18122":4,"18123":4,"18124":5,"18125":7,"18126":1,"18127":1,"18128":7,"18129":5,"18130":4,"18131":9,"18132":5,"18133":2,"18134":7,"18135":7,"18136":7,"18137":5,"18138":9,"18139":10,"18140":8,"18141":7,"18142":1,"18143":10,"18144":7,"18145":9,"18146":7,"18147":8,"18148":7,"18149":1,"18150":8,"18151":5,"18152":3,"18153":9,"18154":5,"18155":9,"18156":7,"18157":5,"18158":5,"18159":2,"18160":2,"18161":10,"18162":9,"18163":4,"18164":9,"18165":9,"18166":8,"18167":7,"18168":9,"18169":1,"18170":7,"18171":8,"18172":6,"18173":7,"18174":9,"18175":3,"18176":8,"18177":5,"18178":7,"18179":5,"18180":2,"18181":5,"18182":10,"18183":7,"18184":7,"18185":8,"18186":5,"18187":2,"18188":10,"18189":3,"18190":4,"18191":7,"18192":4,"18193":5,"18194":5,"18195":6,"18196":8,"18197":2,"18198":9,"18199":10,"18200":8,"18201":7,"18202":2,"18203":8,"18204":7,"18205":7,"18206":9,"18207":1,"18208":3,"18209":3,"18210":2,"18211":1,"18212":9,"18213":5,"18214":8,"18215":5,"18216":8,"18217":8,"18218":1,"18219":7,"18220":7,"18221":8,"18222":7,"18223":3,"18224":2,"18225":1,"18226":9,"18227":4,"18228":9,"18229":7,"18230":3,"18231":7,"18232":8,"18233":9,"18234":8,"18235":1,"18236":10,"18237":5,"18238":3,"18239":5,"18240":5,"18241":7,"18242":3,"18243":8,"18244":6,"18245":2,"18246":8,"18247":7,"18248":8,"18249":7,"18250":8,"18251":8,"18252":9,"18253":9,"18254":3,"18255":7,"18256":9,"18257":8,"18258":9,"18259":7,"18260":3,"18261":10,"18262":4,"18263":8,"18264":7,"18265":7,"18266":8,"18267":5,"18268":8,"18269":8,"18270":6,"18271":6,"18272":7,"18273":3,"18274":7,"18275":2,"18276":4,"18277":8,"18278":7,"18279":7,"18280":7,"18281":9,"18282":7,"18283":10,"18284":9,"18285":7,"18286":9,"18287":2,"18288":7,"18289":5,"18290":9,"18291":7,"18292":1,"18293":9,"18294":8,"18295":9,"18296":8,"18297":7,"18298":6,"18299":5,"18300":8,"18301":7,"18302":9,"18303":3,"18304":8,"18305":2,"18306":5,"18307":3,"18308":6,"18309":8,"18310":9,"18311":9,"18312":4,"18313":9,"18314":1,"18315":9,"18316":8,"18317":10,"18318":8,"18319":5,"18320":9,"18321":8,"18322":3,"18323":7,"18324":9,"18325":7,"18326":8,"18327":9,"18328":5,"18329":3,"18330":5,"18331":9,"18332":2,"18333":6,"18334":7,"18335":7,"18336":8,"18337":7,"18338":3,"18339":3,"18340":1,"18341":7,"18342":8,"18343":9,"18344":9,"18345":7,"18346":9,"18347":5,"18348":1,"18349":4,"18350":4,"18351":4,"18352":8,"18353":3,"18354":8,"18355":5,"18356":3,"18357":7,"18358":2,"18359":9,"18360":5,"18361":1,"18362":4,"18363":2,"18364":7,"18365":2,"18366":2,"18367":2,"18368":5,"18369":8,"18370":4,"18371":8,"18372":7,"18373":6,"18374":9,"18375":7,"18376":2,"18377":8,"18378":1,"18379":6,"18380":5,"18381":6,"18382":7,"18383":8,"18384":8,"18385":10,"18386":10,"18387":6,"18388":7,"18389":9,"18390":2,"18391":6,"18392":8,"18393":5,"18394":7,"18395":1,"18396":6,"18397":3,"18398":8,"18399":9,"18400":7,"18401":8,"18402":10,"18403":8,"18404":9,"18405":7,"18406":9,"18407":2,"18408":7,"18409":10,"18410":2,"18411":2,"18412":9,"18413":2,"18414":5,"18415":7,"18416":8,"18417":8,"18418":8,"18419":9,"18420":9,"18421":3,"18422":9,"18423":2,"18424":5,"18425":7,"18426":8,"18427":9,"18428":2,"18429":9,"18430":4,"18431":7,"18432":8,"18433":9,"18434":9,"18435":7,"18436":8,"18437":1,"18438":10,"18439":8,"18440":10,"18441":7,"18442":3,"18443":6,"18444":7,"18445":7,"18446":9,"18447":8,"18448":3,"18449":2,"18450":8,"18451":8,"18452":9,"18453":10,"18454":2,"18455":8,"18456":9,"18457":7,"18458":5,"18459":3,"18460":3,"18461":8,"18462":8,"18463":8,"18464":7,"18465":9,"18466":1,"18467":7,"18468":7,"18469":4,"18470":7,"18471":10,"18472":7,"18473":4,"18474":7,"18475":5,"18476":1,"18477":2,"18478":8,"18479":2,"18480":2,"18481":7,"18482":8,"18483":6,"18484":8,"18485":5,"18486":7,"18487":8,"18488":8,"18489":8,"18490":8,"18491":8,"18492":2,"18493":7,"18494":7,"18495":10,"18496":10,"18497":9,"18498":8,"18499":7,"18500":8,"18501":9,"18502":8,"18503":7,"18504":1,"18505":2,"18506":7,"18507":2,"18508":7,"18509":6,"18510":10,"18511":4,"18512":9,"18513":8,"18514":8,"18515":9,"18516":8,"18517":7,"18518":8,"18519":8,"18520":2,"18521":8,"18522":6,"18523":9,"18524":5,"18525":9,"18526":1,"18527":8,"18528":7,"18529":9,"18530":4,"18531":8,"18532":10,"18533":4,"18534":1,"18535":7,"18536":8,"18537":9,"18538":8,"18539":7,"18540":7,"18541":10,"18542":7,"18543":7,"18544":5,"18545":9,"18546":8,"18547":7,"18548":1,"18549":2,"18550":3,"18551":7,"18552":5,"18553":8,"18554":9,"18555":2,"18556":8,"18557":9,"18558":7,"18559":7,"18560":7,"18561":8,"18562":5,"18563":8,"18564":7,"18565":5,"18566":9,"18567":1,"18568":7,"18569":6,"18570":8,"18571":4,"18572":4,"18573":8,"18574":9,"18575":5,"18576":8,"18577":7,"18578":7,"18579":8,"18580":9,"18581":7,"18582":2,"18583":9,"18584":8,"18585":8,"18586":2,"18587":5,"18588":8,"18589":1,"18590":8,"18591":7,"18592":8,"18593":7,"18594":4,"18595":9,"18596":5,"18597":5,"18598":7,"18599":3,"18600":5,"18601":1,"18602":8,"18603":10,"18604":5,"18605":3,"18606":10,"18607":5,"18608":8,"18609":8,"18610":8,"18611":4,"18612":9,"18613":4,"18614":7,"18615":8,"18616":2,"18617":5,"18618":3,"18619":6,"18620":7,"18621":8,"18622":7,"18623":10,"18624":1,"18625":4,"18626":4,"18627":5,"18628":10,"18629":2,"18630":5,"18631":8,"18632":8,"18633":7,"18634":7,"18635":2,"18636":5,"18637":9,"18638":9,"18639":8,"18640":7,"18641":2,"18642":4,"18643":1,"18644":7,"18645":7,"18646":7,"18647":2,"18648":7,"18649":4,"18650":8,"18651":8,"18652":8,"18653":10,"18654":2,"18655":7,"18656":9,"18657":5,"18658":7,"18659":7,"18660":7,"18661":9,"18662":5,"18663":8,"18664":6,"18665":6,"18666":5,"18667":9,"18668":7,"18669":9,"18670":3,"18671":8,"18672":3,"18673":9,"18674":7,"18675":7,"18676":7,"18677":3,"18678":7,"18679":9,"18680":5,"18681":9,"18682":7,"18683":8,"18684":5,"18685":2,"18686":9,"18687":1,"18688":7,"18689":8,"18690":2,"18691":8,"18692":1,"18693":5,"18694":8,"18695":7,"18696":10,"18697":9,"18698":6,"18699":4,"18700":4,"18701":8,"18702":8,"18703":7,"18704":9,"18705":2,"18706":8,"18707":7,"18708":2,"18709":9,"18710":7,"18711":5,"18712":8,"18713":8,"18714":2,"18715":8,"18716":8,"18717":5,"18718":7,"18719":1,"18720":7,"18721":8,"18722":9,"18723":5,"18724":7,"18725":9,"18726":8,"18727":7,"18728":1,"18729":9,"18730":2,"18731":7,"18732":8,"18733":8,"18734":8,"18735":5,"18736":10,"18737":4,"18738":8,"18739":5,"18740":7,"18741":6,"18742":4,"18743":8,"18744":8,"18745":9,"18746":2,"18747":7,"18748":4,"18749":2,"18750":3,"18751":1,"18752":4,"18753":2,"18754":10,"18755":5,"18756":10,"18757":9,"18758":3,"18759":9,"18760":7,"18761":7,"18762":9,"18763":4,"18764":3,"18765":1,"18766":8,"18767":4,"18768":2,"18769":6,"18770":7,"18771":9,"18772":8,"18773":7,"18774":6,"18775":7,"18776":5,"18777":9,"18778":6,"18779":9,"18780":9,"18781":2,"18782":7,"18783":8,"18784":3,"18785":8,"18786":3,"18787":9,"18788":6,"18789":8,"18790":5,"18791":5,"18792":8,"18793":10,"18794":7,"18795":8,"18796":7,"18797":7,"18798":7,"18799":2,"18800":7,"18801":9,"18802":9,"18803":2,"18804":8,"18805":7,"18806":7,"18807":10,"18808":8,"18809":7,"18810":6,"18811":2,"18812":8,"18813":9,"18814":8,"18815":1,"18816":5,"18817":7,"18818":8,"18819":5,"18820":9,"18821":8,"18822":7,"18823":8,"18824":8,"18825":9,"18826":7,"18827":1,"18828":9,"18829":5,"18830":9,"18831":1,"18832":7,"18833":7,"18834":2,"18835":7,"18836":9,"18837":8,"18838":4,"18839":7,"18840":7,"18841":3,"18842":10,"18843":9,"18844":9,"18845":3,"18846":2,"18847":9,"18848":9,"18849":4,"18850":9,"18851":7,"18852":8,"18853":7,"18854":2,"18855":2,"18856":9,"18857":6,"18858":5,"18859":4,"18860":8,"18861":9,"18862":5,"18863":8,"18864":3,"18865":5,"18866":4,"18867":4,"18868":8,"18869":7,"18870":5,"18871":2,"18872":4,"18873":8,"18874":8,"18875":6,"18876":4,"18877":8,"18878":8,"18879":9,"18880":7,"18881":9,"18882":5,"18883":8,"18884":8,"18885":7,"18886":9,"18887":7,"18888":7,"18889":5,"18890":9,"18891":8,"18892":2,"18893":8,"18894":7,"18895":6,"18896":6,"18897":5,"18898":8,"18899":7,"18900":2,"18901":8,"18902":5,"18903":3,"18904":8,"18905":1,"18906":8,"18907":10,"18908":7,"18909":6,"18910":1,"18911":6,"18912":4,"18913":7,"18914":7,"18915":5,"18916":8,"18917":4,"18918":2,"18919":7,"18920":8,"18921":7,"18922":2,"18923":7,"18924":9,"18925":8,"18926":8,"18927":1,"18928":2,"18929":8,"18930":9,"18931":5,"18932":7,"18933":9,"18934":7,"18935":7,"18936":1,"18937":6,"18938":7,"18939":8,"18940":8,"18941":9,"18942":3,"18943":9,"18944":4,"18945":5,"18946":9,"18947":8,"18948":5,"18949":7,"18950":8,"18951":7,"18952":8,"18953":5,"18954":5,"18955":1,"18956":8,"18957":2,"18958":2,"18959":5,"18960":7,"18961":4,"18962":9,"18963":7,"18964":7,"18965":7,"18966":9,"18967":5,"18968":3,"18969":8,"18970":5,"18971":8,"18972":8,"18973":5,"18974":7,"18975":8,"18976":7,"18977":9,"18978":2,"18979":1,"18980":2,"18981":7,"18982":7,"18983":9,"18984":5,"18985":7,"18986":2,"18987":2,"18988":7,"18989":10,"18990":7,"18991":1,"18992":3,"18993":2,"18994":9,"18995":2,"18996":5,"18997":8,"18998":7,"18999":8,"19000":2,"19001":9,"19002":9,"19003":7,"19004":9,"19005":1,"19006":2,"19007":8,"19008":10,"19009":3,"19010":9,"19011":6,"19012":6,"19013":7,"19014":7,"19015":3,"19016":5,"19017":8,"19018":8,"19019":3,"19020":9,"19021":5,"19022":7,"19023":1,"19024":8,"19025":2,"19026":8,"19027":3,"19028":7,"19029":3,"19030":6,"19031":7,"19032":8,"19033":2,"19034":7,"19035":8,"19036":2,"19037":9,"19038":5,"19039":7,"19040":2,"19041":8,"19042":6,"19043":8,"19044":6,"19045":2,"19046":5,"19047":9,"19048":5,"19049":2,"19050":2,"19051":8,"19052":8,"19053":5,"19054":1,"19055":7,"19056":8,"19057":2,"19058":10,"19059":10,"19060":5,"19061":7,"19062":2,"19063":2,"19064":8,"19065":8,"19066":7,"19067":8,"19068":2,"19069":9,"19070":6,"19071":9,"19072":9,"19073":7,"19074":7,"19075":7,"19076":8,"19077":9,"19078":7,"19079":8,"19080":7,"19081":9,"19082":6,"19083":9,"19084":5,"19085":8,"19086":2,"19087":8,"19088":8,"19089":8,"19090":1,"19091":9,"19092":9,"19093":8,"19094":9,"19095":1,"19096":6,"19097":8,"19098":7,"19099":7,"19100":5,"19101":7,"19102":2,"19103":8,"19104":1,"19105":10,"19106":4,"19107":5,"19108":2,"19109":8,"19110":8,"19111":1,"19112":7,"19113":7,"19114":4,"19115":9,"19116":7,"19117":7,"19118":7,"19119":7,"19120":7,"19121":3,"19122":4,"19123":2,"19124":6,"19125":5,"19126":9,"19127":7,"19128":5,"19129":6,"19130":8,"19131":5,"19132":5,"19133":10,"19134":9,"19135":7,"19136":6,"19137":9,"19138":4,"19139":10,"19140":8,"19141":9,"19142":4,"19143":9,"19144":9,"19145":10,"19146":5,"19147":6,"19148":2,"19149":7,"19150":8,"19151":9,"19152":8,"19153":5,"19154":7,"19155":8,"19156":10,"19157":7,"19158":8,"19159":5,"19160":3,"19161":2,"19162":8,"19163":2,"19164":5,"19165":1,"19166":2,"19167":7,"19168":5,"19169":3,"19170":8,"19171":10,"19172":1,"19173":8,"19174":2,"19175":8,"19176":6,"19177":5,"19178":3,"19179":7,"19180":9,"19181":1,"19182":7,"19183":2,"19184":7,"19185":7,"19186":3,"19187":10,"19188":9,"19189":9,"19190":9,"19191":4,"19192":4,"19193":7,"19194":9,"19195":8,"19196":9,"19197":2,"19198":7,"19199":9,"19200":9,"19201":9,"19202":5,"19203":7,"19204":8,"19205":5,"19206":5,"19207":7,"19208":5,"19209":7,"19210":2,"19211":5,"19212":9,"19213":7,"19214":8,"19215":4,"19216":8,"19217":7,"19218":10,"19219":2,"19220":8,"19221":10,"19222":8,"19223":7,"19224":2,"19225":2,"19226":9,"19227":9,"19228":8,"19229":5,"19230":9,"19231":8,"19232":9,"19233":5,"19234":7,"19235":7,"19236":2,"19237":8,"19238":5,"19239":5,"19240":8,"19241":3,"19242":6,"19243":2,"19244":2,"19245":10,"19246":7,"19247":5,"19248":7,"19249":2,"19250":9,"19251":9,"19252":4,"19253":4,"19254":5,"19255":1,"19256":9,"19257":9,"19258":9,"19259":5,"19260":4,"19261":2,"19262":9,"19263":2,"19264":2,"19265":9,"19266":2,"19267":5,"19268":7,"19269":1,"19270":8,"19271":7,"19272":10,"19273":7,"19274":3,"19275":7,"19276":8,"19277":2,"19278":9,"19279":7,"19280":7,"19281":8,"19282":4,"19283":8,"19284":9,"19285":2,"19286":8,"19287":5,"19288":7,"19289":6,"19290":3,"19291":6,"19292":7,"19293":7,"19294":1,"19295":5,"19296":2,"19297":8,"19298":10,"19299":3,"19300":7,"19301":5,"19302":7,"19303":9,"19304":7,"19305":2,"19306":8,"19307":2,"19308":9,"19309":9,"19310":4,"19311":4,"19312":8,"19313":8,"19314":8,"19315":8,"19316":8,"19317":2,"19318":2,"19319":8,"19320":5,"19321":7,"19322":10,"19323":2,"19324":5,"19325":2,"19326":7,"19327":7,"19328":5,"19329":8,"19330":8,"19331":6,"19332":7,"19333":7,"19334":5,"19335":3,"19336":8,"19337":8,"19338":6,"19339":9,"19340":9,"19341":9,"19342":7,"19343":9,"19344":5,"19345":9,"19346":3,"19347":10,"19348":2,"19349":9,"19350":8,"19351":8,"19352":3,"19353":9,"19354":7,"19355":9,"19356":7,"19357":1,"19358":2,"19359":4,"19360":9,"19361":3,"19362":9,"19363":2,"19364":9,"19365":7,"19366":2,"19367":8,"19368":8,"19369":8,"19370":8,"19371":8,"19372":8,"19373":1,"19374":9,"19375":2,"19376":10,"19377":4,"19378":5,"19379":5,"19380":9,"19381":4,"19382":9,"19383":1,"19384":7,"19385":7,"19386":7,"19387":1,"19388":7,"19389":7,"19390":8,"19391":7,"19392":5,"19393":8,"19394":9,"19395":5,"19396":9,"19397":7,"19398":3,"19399":8,"19400":8,"19401":8,"19402":6,"19403":8,"19404":5,"19405":9,"19406":3,"19407":8,"19408":2,"19409":2,"19410":6,"19411":6,"19412":9,"19413":7,"19414":7,"19415":5,"19416":5,"19417":8,"19418":4,"19419":8,"19420":3,"19421":7,"19422":8,"19423":9,"19424":2,"19425":5,"19426":8,"19427":8,"19428":9,"19429":5,"19430":8,"19431":5,"19432":7,"19433":8,"19434":5,"19435":1,"19436":2,"19437":6,"19438":7,"19439":8,"19440":5,"19441":1,"19442":7,"19443":2,"19444":2,"19445":7,"19446":9,"19447":9,"19448":5,"19449":7,"19450":2,"19451":8,"19452":3,"19453":9,"19454":9,"19455":9,"19456":8,"19457":8,"19458":4,"19459":2,"19460":4,"19461":9,"19462":8,"19463":8,"19464":5,"19465":7,"19466":1,"19467":9,"19468":5,"19469":7,"19470":2,"19471":2,"19472":9,"19473":6,"19474":8,"19475":8,"19476":9,"19477":9,"19478":4,"19479":7,"19480":5,"19481":8,"19482":7,"19483":6,"19484":7,"19485":8,"19486":7,"19487":7,"19488":8,"19489":2,"19490":2,"19491":8,"19492":9,"19493":5,"19494":9,"19495":6,"19496":5,"19497":4,"19498":7,"19499":1,"19500":9,"19501":8,"19502":7,"19503":9,"19504":1,"19505":2,"19506":10,"19507":6,"19508":10,"19509":4,"19510":5,"19511":10,"19512":4,"19513":8,"19514":6,"19515":9,"19516":5,"19517":7,"19518":8,"19519":6,"19520":7,"19521":9,"19522":8,"19523":8,"19524":8,"19525":4,"19526":5,"19527":5,"19528":1,"19529":9,"19530":5,"19531":8,"19532":7,"19533":8,"19534":9,"19535":7,"19536":2,"19537":2,"19538":10,"19539":6,"19540":10,"19541":8,"19542":10,"19543":8,"19544":8,"19545":9,"19546":9,"19547":1,"19548":4,"19549":9,"19550":7,"19551":9,"19552":8,"19553":6,"19554":5,"19555":5,"19556":8,"19557":9,"19558":9,"19559":7,"19560":6,"19561":7,"19562":4,"19563":7,"19564":2,"19565":4,"19566":8,"19567":4,"19568":1,"19569":7,"19570":1,"19571":5,"19572":8,"19573":9,"19574":1,"19575":2,"19576":3,"19577":9,"19578":8,"19579":5,"19580":7,"19581":2,"19582":1,"19583":7,"19584":1,"19585":10,"19586":7,"19587":6,"19588":8,"19589":3,"19590":8,"19591":7,"19592":8,"19593":10,"19594":2,"19595":9,"19596":9,"19597":8,"19598":8,"19599":4,"19600":8,"19601":1,"19602":9,"19603":6,"19604":10,"19605":9,"19606":6,"19607":7,"19608":6,"19609":8,"19610":5,"19611":4,"19612":2,"19613":7,"19614":7,"19615":9,"19616":5,"19617":5,"19618":7,"19619":8,"19620":3,"19621":7,"19622":8,"19623":7,"19624":5,"19625":2,"19626":7,"19627":8,"19628":7,"19629":2,"19630":7,"19631":2,"19632":5,"19633":2,"19634":7,"19635":7,"19636":7,"19637":9,"19638":5,"19639":8,"19640":3,"19641":5,"19642":7,"19643":9,"19644":8,"19645":5,"19646":8,"19647":5,"19648":8,"19649":5,"19650":9,"19651":8,"19652":5,"19653":4,"19654":9,"19655":5,"19656":3,"19657":6,"19658":7,"19659":9,"19660":7,"19661":7,"19662":7,"19663":7,"19664":7,"19665":2,"19666":8,"19667":6,"19668":7,"19669":7,"19670":4,"19671":7,"19672":5,"19673":1,"19674":7,"19675":6,"19676":1,"19677":8,"19678":7,"19679":4,"19680":5,"19681":5,"19682":8,"19683":3,"19684":3,"19685":8,"19686":5,"19687":5,"19688":4,"19689":10,"19690":2,"19691":7,"19692":7,"19693":8,"19694":5,"19695":8,"19696":8,"19697":2,"19698":10,"19699":9,"19700":8,"19701":7,"19702":7,"19703":10,"19704":8,"19705":8,"19706":1,"19707":1,"19708":7,"19709":5,"19710":5,"19711":8,"19712":5,"19713":8,"19714":9,"19715":7,"19716":5,"19717":6,"19718":7,"19719":8,"19720":5,"19721":10,"19722":5,"19723":7,"19724":8,"19725":8,"19726":8,"19727":9,"19728":7,"19729":10,"19730":10,"19731":10,"19732":7,"19733":1,"19734":2,"19735":10,"19736":2,"19737":1,"19738":7,"19739":9,"19740":7,"19741":7,"19742":7,"19743":6,"19744":4,"19745":5,"19746":5,"19747":9,"19748":8,"19749":2,"19750":8,"19751":4,"19752":5,"19753":8,"19754":7,"19755":5,"19756":5,"19757":10,"19758":5,"19759":3,"19760":7,"19761":6,"19762":10,"19763":9,"19764":9,"19765":9,"19766":2,"19767":2,"19768":2,"19769":9,"19770":7,"19771":10,"19772":8,"19773":7,"19774":6,"19775":8,"19776":9,"19777":9,"19778":8,"19779":5,"19780":10,"19781":6,"19782":5,"19783":6,"19784":3,"19785":2,"19786":8,"19787":8,"19788":4,"19789":3,"19790":3,"19791":2,"19792":8,"19793":9,"19794":7,"19795":9,"19796":9,"19797":9,"19798":2,"19799":9,"19800":7,"19801":10,"19802":8,"19803":4,"19804":8,"19805":2,"19806":9,"19807":7,"19808":7,"19809":2,"19810":5,"19811":7,"19812":3,"19813":8,"19814":1,"19815":9,"19816":7,"19817":3,"19818":9,"19819":10,"19820":5,"19821":7,"19822":7,"19823":7,"19824":2,"19825":8,"19826":4,"19827":3,"19828":7,"19829":2,"19830":8,"19831":3,"19832":5,"19833":9,"19834":9,"19835":7,"19836":8,"19837":8,"19838":10,"19839":8,"19840":5,"19841":7,"19842":7,"19843":2,"19844":3,"19845":5,"19846":1,"19847":2,"19848":1,"19849":6,"19850":9,"19851":2,"19852":9,"19853":10,"19854":10,"19855":8,"19856":1,"19857":9,"19858":9,"19859":8,"19860":5,"19861":5,"19862":1,"19863":7,"19864":7,"19865":5,"19866":9,"19867":2,"19868":7,"19869":1,"19870":9,"19871":3,"19872":3,"19873":7,"19874":3,"19875":2,"19876":9,"19877":1,"19878":10,"19879":5,"19880":1,"19881":9,"19882":3,"19883":7,"19884":9,"19885":7,"19886":8,"19887":8,"19888":6,"19889":7,"19890":10,"19891":3,"19892":3,"19893":5,"19894":5,"19895":7,"19896":6,"19897":8,"19898":8,"19899":6,"19900":8,"19901":7,"19902":4,"19903":5,"19904":5,"19905":8,"19906":10,"19907":8,"19908":7,"19909":2,"19910":7,"19911":7,"19912":7,"19913":8,"19914":8,"19915":5,"19916":10,"19917":8,"19918":2,"19919":2,"19920":9,"19921":7,"19922":5,"19923":4,"19924":7,"19925":7,"19926":7,"19927":7,"19928":5,"19929":10,"19930":7,"19931":8,"19932":2,"19933":7,"19934":8,"19935":7,"19936":8,"19937":9,"19938":5,"19939":8,"19940":8,"19941":9,"19942":8,"19943":2,"19944":7,"19945":9,"19946":8,"19947":1,"19948":8,"19949":3,"19950":1,"19951":5,"19952":7,"19953":9,"19954":1,"19955":1,"19956":8,"19957":6,"19958":3,"19959":4,"19960":9,"19961":9,"19962":1,"19963":2,"19964":3,"19965":7,"19966":10,"19967":10,"19968":3,"19969":3,"19970":8,"19971":1,"19972":8,"19973":9,"19974":7,"19975":7,"19976":2,"19977":2,"19978":8,"19979":2,"19980":5,"19981":5,"19982":7,"19983":9,"19984":8,"19985":8,"19986":3,"19987":9,"19988":2,"19989":9,"19990":7,"19991":8,"19992":7,"19993":6,"19994":7,"19995":7,"19996":9,"19997":8,"19998":4,"19999":3,"20000":7,"20001":7,"20002":8,"20003":2,"20004":1,"20005":7,"20006":9,"20007":1,"20008":9,"20009":7,"20010":9,"20011":7,"20012":6,"20013":2,"20014":9,"20015":8,"20016":9,"20017":8,"20018":2,"20019":5,"20020":9,"20021":10,"20022":9,"20023":3,"20024":10,"20025":7,"20026":7,"20027":6,"20028":1,"20029":9,"20030":8,"20031":5,"20032":9,"20033":7,"20034":9,"20035":9,"20036":9,"20037":4,"20038":3,"20039":1,"20040":8,"20041":9,"20042":1,"20043":1,"20044":8,"20045":1,"20046":5,"20047":9,"20048":5,"20049":6,"20050":9,"20051":2,"20052":5,"20053":5,"20054":7,"20055":3,"20056":7,"20057":8,"20058":9,"20059":3,"20060":2,"20061":2,"20062":3,"20063":7,"20064":3,"20065":9,"20066":8,"20067":8,"20068":7,"20069":5,"20070":8,"20071":8,"20072":8,"20073":7,"20074":9,"20075":8,"20076":7,"20077":1,"20078":9,"20079":8,"20080":8,"20081":5,"20082":8,"20083":6,"20084":5,"20085":5,"20086":7,"20087":6,"20088":9,"20089":8,"20090":8,"20091":5,"20092":5,"20093":7,"20094":8,"20095":3,"20096":9,"20097":7,"20098":5,"20099":9,"20100":1,"20101":6,"20102":5,"20103":5,"20104":2,"20105":9,"20106":8,"20107":7,"20108":8,"20109":9,"20110":3,"20111":3,"20112":7,"20113":5,"20114":8,"20115":7,"20116":8,"20117":3,"20118":8,"20119":5,"20120":2,"20121":5,"20122":7,"20123":8,"20124":2,"20125":10,"20126":2,"20127":8,"20128":1,"20129":5,"20130":5,"20131":8,"20132":8,"20133":8,"20134":2,"20135":5,"20136":1,"20137":3,"20138":6,"20139":8,"20140":6,"20141":1,"20142":1,"20143":9,"20144":9,"20145":9,"20146":2,"20147":10,"20148":9,"20149":9,"20150":9,"20151":4,"20152":3,"20153":10,"20154":9,"20155":4,"20156":1,"20157":8,"20158":7,"20159":8,"20160":6,"20161":8,"20162":4,"20163":6,"20164":7,"20165":9,"20166":10,"20167":2,"20168":9,"20169":10,"20170":8,"20171":6,"20172":9,"20173":2,"20174":7,"20175":2,"20176":2,"20177":7,"20178":6,"20179":9,"20180":7,"20181":2,"20182":6,"20183":8,"20184":8,"20185":8,"20186":6,"20187":7,"20188":9,"20189":9,"20190":4,"20191":2,"20192":7,"20193":8,"20194":6,"20195":2,"20196":6,"20197":4,"20198":5,"20199":7,"20200":9,"20201":9,"20202":10,"20203":8,"20204":2,"20205":7,"20206":7,"20207":6,"20208":1,"20209":5,"20210":9,"20211":7,"20212":9,"20213":7,"20214":5,"20215":7,"20216":7,"20217":5,"20218":2,"20219":4,"20220":2,"20221":3,"20222":8,"20223":7,"20224":7,"20225":3,"20226":10,"20227":10,"20228":8,"20229":7,"20230":7,"20231":2,"20232":9,"20233":7,"20234":1,"20235":7,"20236":8,"20237":9,"20238":7,"20239":5,"20240":7,"20241":8,"20242":7,"20243":8,"20244":6,"20245":5,"20246":6,"20247":8,"20248":10,"20249":5,"20250":3,"20251":9,"20252":7,"20253":8,"20254":2,"20255":7,"20256":1,"20257":9,"20258":8,"20259":5,"20260":7,"20261":9,"20262":3,"20263":2,"20264":1,"20265":7,"20266":8,"20267":7,"20268":9,"20269":2,"20270":8,"20271":7,"20272":1,"20273":9,"20274":8,"20275":6,"20276":7,"20277":9,"20278":6,"20279":5,"20280":9,"20281":8,"20282":3,"20283":1,"20284":2,"20285":6,"20286":8,"20287":7,"20288":7,"20289":7,"20290":3,"20291":3,"20292":8,"20293":8,"20294":4,"20295":4,"20296":7,"20297":8,"20298":5,"20299":7,"20300":8,"20301":2,"20302":8,"20303":3,"20304":9,"20305":5,"20306":7,"20307":7,"20308":8,"20309":9,"20310":9,"20311":7,"20312":5,"20313":4,"20314":9,"20315":8,"20316":9,"20317":1,"20318":8,"20319":7,"20320":7,"20321":5,"20322":3,"20323":6,"20324":5,"20325":7,"20326":5,"20327":7,"20328":4,"20329":9,"20330":7,"20331":2,"20332":5,"20333":8,"20334":9,"20335":9,"20336":2,"20337":2,"20338":4,"20339":5,"20340":10,"20341":9,"20342":8,"20343":1,"20344":3,"20345":7,"20346":7,"20347":9,"20348":2,"20349":8,"20350":6,"20351":5,"20352":10,"20353":2,"20354":8,"20355":6,"20356":2,"20357":8,"20358":10,"20359":7,"20360":2,"20361":1,"20362":3,"20363":8,"20364":8,"20365":2,"20366":3,"20367":9,"20368":5,"20369":7,"20370":8,"20371":2,"20372":4,"20373":9,"20374":9,"20375":7,"20376":6,"20377":8,"20378":6,"20379":6,"20380":5,"20381":9,"20382":9,"20383":9,"20384":7,"20385":7,"20386":7,"20387":8,"20388":3,"20389":4,"20390":9,"20391":6,"20392":7,"20393":3,"20394":8,"20395":8,"20396":7,"20397":7,"20398":6,"20399":8,"20400":8,"20401":8,"20402":9,"20403":7,"20404":7,"20405":8,"20406":1,"20407":2,"20408":7,"20409":3,"20410":7,"20411":9,"20412":8,"20413":6,"20414":9,"20415":8,"20416":10,"20417":9,"20418":7,"20419":9,"20420":8,"20421":2,"20422":7,"20423":6,"20424":5,"20425":9,"20426":7,"20427":9,"20428":9,"20429":8,"20430":5,"20431":6,"20432":10,"20433":7,"20434":2,"20435":5,"20436":5,"20437":6,"20438":8,"20439":2,"20440":9,"20441":9,"20442":9,"20443":7,"20444":8,"20445":7,"20446":7,"20447":4,"20448":7,"20449":9,"20450":9,"20451":5,"20452":7,"20453":6,"20454":8,"20455":7,"20456":8,"20457":2,"20458":7,"20459":7,"20460":8,"20461":7,"20462":9,"20463":7,"20464":8,"20465":3,"20466":8,"20467":1,"20468":7,"20469":5,"20470":3,"20471":5,"20472":9,"20473":10,"20474":4,"20475":7,"20476":10,"20477":5,"20478":6,"20479":1,"20480":7,"20481":7,"20482":7,"20483":9,"20484":5,"20485":8,"20486":8,"20487":3,"20488":10,"20489":3,"20490":5,"20491":6,"20492":1,"20493":4,"20494":7,"20495":7,"20496":5,"20497":9,"20498":9,"20499":4,"20500":7,"20501":8,"20502":2,"20503":3,"20504":8,"20505":9,"20506":1,"20507":7,"20508":4,"20509":7,"20510":2,"20511":9,"20512":8,"20513":8,"20514":4,"20515":9,"20516":5,"20517":7,"20518":7,"20519":8,"20520":5,"20521":8,"20522":10,"20523":8,"20524":7,"20525":3,"20526":7,"20527":10,"20528":6,"20529":5,"20530":8,"20531":7,"20532":6,"20533":9,"20534":6,"20535":9,"20536":2,"20537":10,"20538":5,"20539":8,"20540":9,"20541":2,"20542":9,"20543":1,"20544":9,"20545":9,"20546":4,"20547":8,"20548":2,"20549":7,"20550":8,"20551":2,"20552":9,"20553":5,"20554":8,"20555":7,"20556":7,"20557":9,"20558":8,"20559":5,"20560":7,"20561":4,"20562":3,"20563":7,"20564":9,"20565":4,"20566":8,"20567":8,"20568":7,"20569":2,"20570":9,"20571":5,"20572":10,"20573":7,"20574":5,"20575":9,"20576":8,"20577":7,"20578":9,"20579":6,"20580":6,"20581":9,"20582":8,"20583":5,"20584":2,"20585":10,"20586":1,"20587":4,"20588":5,"20589":9,"20590":8,"20591":9,"20592":9,"20593":5,"20594":5,"20595":9,"20596":2,"20597":8,"20598":4,"20599":8,"20600":5,"20601":5,"20602":8,"20603":7,"20604":2,"20605":3,"20606":8,"20607":7,"20608":2,"20609":9,"20610":3,"20611":8,"20612":9,"20613":9,"20614":8,"20615":7,"20616":2,"20617":8,"20618":7,"20619":8,"20620":8,"20621":9,"20622":2,"20623":7,"20624":7,"20625":9,"20626":3,"20627":7,"20628":2,"20629":9,"20630":1,"20631":2,"20632":7,"20633":9,"20634":4,"20635":6,"20636":4,"20637":5,"20638":8,"20639":9,"20640":5,"20641":10,"20642":7,"20643":5,"20644":2,"20645":5,"20646":8,"20647":5,"20648":8,"20649":2,"20650":4,"20651":8,"20652":8,"20653":5,"20654":8,"20655":8,"20656":2,"20657":7,"20658":1,"20659":7,"20660":5,"20661":8,"20662":7,"20663":2,"20664":7,"20665":7,"20666":9,"20667":8,"20668":5,"20669":1,"20670":9,"20671":3,"20672":2,"20673":1,"20674":9,"20675":8,"20676":8,"20677":8,"20678":5,"20679":7,"20680":8,"20681":5,"20682":1,"20683":7,"20684":2,"20685":9,"20686":8,"20687":8,"20688":9,"20689":7,"20690":7,"20691":9,"20692":3,"20693":9,"20694":6,"20695":8,"20696":4,"20697":1,"20698":8,"20699":8,"20700":4,"20701":2,"20702":2,"20703":8,"20704":2,"20705":10,"20706":1,"20707":4,"20708":8,"20709":7,"20710":5,"20711":5,"20712":9,"20713":7,"20714":3,"20715":7,"20716":10,"20717":5,"20718":3,"20719":4,"20720":2,"20721":6,"20722":2,"20723":8,"20724":2,"20725":8,"20726":10,"20727":5,"20728":8,"20729":5,"20730":8,"20731":5,"20732":7,"20733":2,"20734":9,"20735":8,"20736":5,"20737":7,"20738":8,"20739":9,"20740":9,"20741":7,"20742":3,"20743":7,"20744":7,"20745":8,"20746":3,"20747":7,"20748":8,"20749":7,"20750":5,"20751":7,"20752":9,"20753":8,"20754":4,"20755":7,"20756":1,"20757":9,"20758":8,"20759":4,"20760":6,"20761":5,"20762":8,"20763":7,"20764":4,"20765":4,"20766":9,"20767":8,"20768":7,"20769":3,"20770":8,"20771":8,"20772":9,"20773":8,"20774":9,"20775":7,"20776":6,"20777":7,"20778":4,"20779":9,"20780":5,"20781":8,"20782":4,"20783":6,"20784":2,"20785":2,"20786":8,"20787":2,"20788":6,"20789":3,"20790":8,"20791":9,"20792":10,"20793":3,"20794":8,"20795":7,"20796":5,"20797":9,"20798":8,"20799":4,"20800":7,"20801":2,"20802":7,"20803":7,"20804":6,"20805":10,"20806":5,"20807":7,"20808":8,"20809":10,"20810":7,"20811":7,"20812":2,"20813":8,"20814":7,"20815":8,"20816":7,"20817":7,"20818":8,"20819":7,"20820":5,"20821":7,"20822":5,"20823":9,"20824":8,"20825":5,"20826":5,"20827":5,"20828":4,"20829":9,"20830":7,"20831":9,"20832":8,"20833":7,"20834":9,"20835":7,"20836":9,"20837":5,"20838":7,"20839":2,"20840":7,"20841":2,"20842":2,"20843":7,"20844":8,"20845":7,"20846":8,"20847":9,"20848":1,"20849":7,"20850":3,"20851":5,"20852":2,"20853":6,"20854":5,"20855":7,"20856":3,"20857":2,"20858":5,"20859":7,"20860":7,"20861":1,"20862":6,"20863":1,"20864":7,"20865":8,"20866":9,"20867":1,"20868":8,"20869":7,"20870":8,"20871":9,"20872":1,"20873":9,"20874":1,"20875":8,"20876":8,"20877":7,"20878":2,"20879":9,"20880":10,"20881":6,"20882":8,"20883":7,"20884":7,"20885":5,"20886":9,"20887":5,"20888":10,"20889":10,"20890":10,"20891":8,"20892":3,"20893":8,"20894":9,"20895":6,"20896":8,"20897":7,"20898":7,"20899":9,"20900":1,"20901":5,"20902":2,"20903":3,"20904":5,"20905":9,"20906":4,"20907":2,"20908":3,"20909":7,"20910":9,"20911":7,"20912":8,"20913":9,"20914":5,"20915":1,"20916":2,"20917":9,"20918":1,"20919":2,"20920":7,"20921":8,"20922":1,"20923":5,"20924":10,"20925":8,"20926":4,"20927":2,"20928":3,"20929":2,"20930":10,"20931":5,"20932":9,"20933":10,"20934":8,"20935":7,"20936":8,"20937":8,"20938":1,"20939":10,"20940":5,"20941":8,"20942":8,"20943":7,"20944":8,"20945":7,"20946":7,"20947":8,"20948":4,"20949":8,"20950":7,"20951":2,"20952":9,"20953":5,"20954":1,"20955":10,"20956":8,"20957":7,"20958":2,"20959":10,"20960":10,"20961":7,"20962":5,"20963":10,"20964":9,"20965":9,"20966":7,"20967":9,"20968":8,"20969":9,"20970":7,"20971":9,"20972":1,"20973":7,"20974":9,"20975":7,"20976":8,"20977":8,"20978":5,"20979":9,"20980":3,"20981":7,"20982":10,"20983":8,"20984":9,"20985":6,"20986":7,"20987":1,"20988":8,"20989":7,"20990":9,"20991":8,"20992":10,"20993":8,"20994":7,"20995":8,"20996":8,"20997":8,"20998":8,"20999":9,"21000":8,"21001":6,"21002":7,"21003":2,"21004":7,"21005":8,"21006":3,"21007":7,"21008":8,"21009":8,"21010":5,"21011":10,"21012":2,"21013":7,"21014":8,"21015":1,"21016":7,"21017":8,"21018":8,"21019":2,"21020":8,"21021":9,"21022":2,"21023":8,"21024":9,"21025":9,"21026":5,"21027":9,"21028":7,"21029":4,"21030":8,"21031":1,"21032":1,"21033":2,"21034":2,"21035":4,"21036":4,"21037":3,"21038":3,"21039":7,"21040":7,"21041":7,"21042":9,"21043":10,"21044":9,"21045":5,"21046":8,"21047":7,"21048":3,"21049":9,"21050":3,"21051":4,"21052":7,"21053":10,"21054":5,"21055":5,"21056":8,"21057":10,"21058":4,"21059":9,"21060":9,"21061":9,"21062":8,"21063":8,"21064":5,"21065":6,"21066":9,"21067":1,"21068":7,"21069":7,"21070":8,"21071":9,"21072":8,"21073":8,"21074":7,"21075":7,"21076":1,"21077":5,"21078":10,"21079":1,"21080":6,"21081":7,"21082":2,"21083":5,"21084":2,"21085":2,"21086":7,"21087":7,"21088":7,"21089":7,"21090":6,"21091":7,"21092":6,"21093":8,"21094":1,"21095":8,"21096":7,"21097":3,"21098":8,"21099":7,"21100":2,"21101":7,"21102":9,"21103":10,"21104":2,"21105":9,"21106":5,"21107":1,"21108":5,"21109":5,"21110":6,"21111":8,"21112":5,"21113":4,"21114":8,"21115":10,"21116":8,"21117":8,"21118":7,"21119":8,"21120":3,"21121":7,"21122":5,"21123":9,"21124":6,"21125":8,"21126":7,"21127":4,"21128":8,"21129":4,"21130":5,"21131":8,"21132":8,"21133":4,"21134":9,"21135":1,"21136":4,"21137":7,"21138":7,"21139":8,"21140":2,"21141":7,"21142":9,"21143":3,"21144":8,"21145":3,"21146":4,"21147":2,"21148":2,"21149":9,"21150":9,"21151":9,"21152":7,"21153":5,"21154":4,"21155":2,"21156":3,"21157":9,"21158":7,"21159":9,"21160":10,"21161":7,"21162":8,"21163":7,"21164":9,"21165":7,"21166":8,"21167":8,"21168":7,"21169":8,"21170":7,"21171":4,"21172":6,"21173":8,"21174":7,"21175":5,"21176":7,"21177":10,"21178":2,"21179":2,"21180":7,"21181":4,"21182":4,"21183":10,"21184":8,"21185":6,"21186":8,"21187":8,"21188":7,"21189":8,"21190":2,"21191":8,"21192":8,"21193":8,"21194":9,"21195":7,"21196":2,"21197":8,"21198":8,"21199":9,"21200":6,"21201":8,"21202":7,"21203":6,"21204":8,"21205":3,"21206":2,"21207":1,"21208":8,"21209":9,"21210":2,"21211":3,"21212":7,"21213":8,"21214":8,"21215":9,"21216":9,"21217":2,"21218":7,"21219":8,"21220":6,"21221":7,"21222":9,"21223":7,"21224":7,"21225":3,"21226":9,"21227":7,"21228":8,"21229":2,"21230":8,"21231":1,"21232":5,"21233":9,"21234":9,"21235":8,"21236":2,"21237":3,"21238":2,"21239":5,"21240":7,"21241":8,"21242":7,"21243":8,"21244":7,"21245":7,"21246":4,"21247":10,"21248":8,"21249":8,"21250":7,"21251":7,"21252":1,"21253":3,"21254":2,"21255":5,"21256":1,"21257":7,"21258":2,"21259":7,"21260":9,"21261":5,"21262":9,"21263":7,"21264":5,"21265":10,"21266":7,"21267":7,"21268":1,"21269":7,"21270":3,"21271":7,"21272":7,"21273":1,"21274":8,"21275":2,"21276":7,"21277":8,"21278":2,"21279":6,"21280":6,"21281":3,"21282":8,"21283":4,"21284":7,"21285":9,"21286":2,"21287":5,"21288":7,"21289":10,"21290":7,"21291":5,"21292":2,"21293":8,"21294":7,"21295":7,"21296":9,"21297":4,"21298":7,"21299":8,"21300":1,"21301":10,"21302":5,"21303":7,"21304":8,"21305":8,"21306":7,"21307":2,"21308":5,"21309":6,"21310":9,"21311":7,"21312":1,"21313":4,"21314":9,"21315":2,"21316":10,"21317":7,"21318":8,"21319":4,"21320":5,"21321":8,"21322":1,"21323":2,"21324":7,"21325":10,"21326":8,"21327":5,"21328":9,"21329":7,"21330":9,"21331":7,"21332":7,"21333":3,"21334":9,"21335":8,"21336":1,"21337":8,"21338":4,"21339":3,"21340":7,"21341":8,"21342":5,"21343":6,"21344":8,"21345":2,"21346":5,"21347":8,"21348":6,"21349":1,"21350":7,"21351":8,"21352":6,"21353":6,"21354":3,"21355":8,"21356":2,"21357":9,"21358":9,"21359":5,"21360":9,"21361":9,"21362":7,"21363":7,"21364":9,"21365":8,"21366":9,"21367":7,"21368":9,"21369":10,"21370":3,"21371":8,"21372":3,"21373":4,"21374":6,"21375":7,"21376":8,"21377":2,"21378":2,"21379":1,"21380":9,"21381":7,"21382":7,"21383":8,"21384":1,"21385":8,"21386":5,"21387":4,"21388":7,"21389":5,"21390":2,"21391":9,"21392":7,"21393":5,"21394":5,"21395":7,"21396":9,"21397":8,"21398":10,"21399":7,"21400":9,"21401":5,"21402":8,"21403":5,"21404":8,"21405":8,"21406":8,"21407":9,"21408":8,"21409":10,"21410":3,"21411":8,"21412":7,"21413":8,"21414":9,"21415":9,"21416":8,"21417":1,"21418":10,"21419":8,"21420":6,"21421":8,"21422":3,"21423":8,"21424":10,"21425":7,"21426":8,"21427":2,"21428":5,"21429":3,"21430":5,"21431":9,"21432":4,"21433":7,"21434":8,"21435":8,"21436":2,"21437":7,"21438":9,"21439":4,"21440":3,"21441":8,"21442":5,"21443":7,"21444":6,"21445":10,"21446":2,"21447":3,"21448":7,"21449":8,"21450":9,"21451":8,"21452":5,"21453":9,"21454":7,"21455":9,"21456":6,"21457":8,"21458":1,"21459":5,"21460":7,"21461":2,"21462":7,"21463":6,"21464":2,"21465":4,"21466":7,"21467":8,"21468":4,"21469":6,"21470":3,"21471":7,"21472":7,"21473":9,"21474":6,"21475":9,"21476":10,"21477":7,"21478":9,"21479":9,"21480":8,"21481":8,"21482":8,"21483":2,"21484":1,"21485":10,"21486":9,"21487":6,"21488":7,"21489":6,"21490":8,"21491":8,"21492":10,"21493":7,"21494":7,"21495":7,"21496":8,"21497":8,"21498":7,"21499":7,"21500":8,"21501":2,"21502":8,"21503":7,"21504":7,"21505":9,"21506":7,"21507":5,"21508":8,"21509":10,"21510":9,"21511":7,"21512":5,"21513":4,"21514":2,"21515":7,"21516":8,"21517":10,"21518":7,"21519":4,"21520":6,"21521":7,"21522":7,"21523":9,"21524":1,"21525":8,"21526":5,"21527":5,"21528":7,"21529":2,"21530":7,"21531":8,"21532":1,"21533":2,"21534":4,"21535":8,"21536":1,"21537":7,"21538":1,"21539":8,"21540":7,"21541":10,"21542":3,"21543":7,"21544":7,"21545":10,"21546":9,"21547":1,"21548":5,"21549":10,"21550":8,"21551":9,"21552":8,"21553":9,"21554":8,"21555":5,"21556":4,"21557":7,"21558":7,"21559":1,"21560":5,"21561":5,"21562":3,"21563":8,"21564":8,"21565":5,"21566":7,"21567":1,"21568":6,"21569":6,"21570":3,"21571":5,"21572":8,"21573":2,"21574":4,"21575":8,"21576":5,"21577":2,"21578":5,"21579":4,"21580":3,"21581":5,"21582":9,"21583":8,"21584":3,"21585":9,"21586":9,"21587":3,"21588":8,"21589":5,"21590":3,"21591":2,"21592":9,"21593":8,"21594":6,"21595":9,"21596":8,"21597":5,"21598":5,"21599":7,"21600":2,"21601":8,"21602":1,"21603":2,"21604":7,"21605":9,"21606":7,"21607":9,"21608":6,"21609":7,"21610":10,"21611":6,"21612":10,"21613":8,"21614":7,"21615":2,"21616":8,"21617":8,"21618":8,"21619":4,"21620":6,"21621":2,"21622":9,"21623":9,"21624":3,"21625":3,"21626":8,"21627":8,"21628":10,"21629":4,"21630":8,"21631":9,"21632":5,"21633":2,"21634":8,"21635":7,"21636":1,"21637":2,"21638":7,"21639":8,"21640":8,"21641":7,"21642":9,"21643":10,"21644":4,"21645":6,"21646":5,"21647":8,"21648":9,"21649":5,"21650":9,"21651":10,"21652":2,"21653":3,"21654":9,"21655":6,"21656":2,"21657":7,"21658":7,"21659":2,"21660":1,"21661":7,"21662":1,"21663":9,"21664":8,"21665":9,"21666":7,"21667":3,"21668":2,"21669":10,"21670":8,"21671":2,"21672":2,"21673":8,"21674":8,"21675":3,"21676":8,"21677":3,"21678":7,"21679":4,"21680":5,"21681":5,"21682":8,"21683":6,"21684":7,"21685":3,"21686":7,"21687":4,"21688":8,"21689":3,"21690":2,"21691":4,"21692":3,"21693":9,"21694":7,"21695":3,"21696":7,"21697":6,"21698":8,"21699":10,"21700":8,"21701":9,"21702":2,"21703":10,"21704":9,"21705":6,"21706":10,"21707":9,"21708":7,"21709":7,"21710":7,"21711":7,"21712":8,"21713":9,"21714":8,"21715":1,"21716":3,"21717":2,"21718":5,"21719":8,"21720":2,"21721":2,"21722":5,"21723":2,"21724":8,"21725":10,"21726":4,"21727":5,"21728":7,"21729":9,"21730":2,"21731":4,"21732":3,"21733":9,"21734":8,"21735":9,"21736":2,"21737":7,"21738":9,"21739":2,"21740":9,"21741":5,"21742":2,"21743":7,"21744":8,"21745":8,"21746":6,"21747":3,"21748":6,"21749":10,"21750":2,"21751":8,"21752":8,"21753":7,"21754":7,"21755":7,"21756":1,"21757":7,"21758":9,"21759":4,"21760":9,"21761":7,"21762":6,"21763":8,"21764":6,"21765":9,"21766":9,"21767":9,"21768":7,"21769":5,"21770":8,"21771":9,"21772":9,"21773":9,"21774":8,"21775":7,"21776":8,"21777":9,"21778":8,"21779":9,"21780":7,"21781":5,"21782":4,"21783":1,"21784":9,"21785":6,"21786":7,"21787":7,"21788":9,"21789":8,"21790":7,"21791":7,"21792":2,"21793":7,"21794":9,"21795":5,"21796":9,"21797":8,"21798":5,"21799":7,"21800":4,"21801":8,"21802":4,"21803":9,"21804":8,"21805":9,"21806":4,"21807":3,"21808":10,"21809":9,"21810":9,"21811":8,"21812":7,"21813":9,"21814":10,"21815":8,"21816":9,"21817":8,"21818":7,"21819":3,"21820":8,"21821":5,"21822":10,"21823":8,"21824":7,"21825":8,"21826":8,"21827":2,"21828":9,"21829":2,"21830":9,"21831":8,"21832":5,"21833":8,"21834":10,"21835":3,"21836":9,"21837":5,"21838":9,"21839":6,"21840":2,"21841":5,"21842":10,"21843":2,"21844":7,"21845":9,"21846":4,"21847":3,"21848":8,"21849":8,"21850":7,"21851":9,"21852":6,"21853":3,"21854":10,"21855":7,"21856":8,"21857":3,"21858":9,"21859":10,"21860":6,"21861":7,"21862":4,"21863":9,"21864":2,"21865":9,"21866":8,"21867":4,"21868":5,"21869":5,"21870":7,"21871":9,"21872":8,"21873":7,"21874":5,"21875":4,"21876":1,"21877":5,"21878":9,"21879":8,"21880":7,"21881":7,"21882":8,"21883":5,"21884":8,"21885":10,"21886":8,"21887":3,"21888":6,"21889":3,"21890":10,"21891":5,"21892":4,"21893":8,"21894":9,"21895":2,"21896":5,"21897":5,"21898":10,"21899":5,"21900":4,"21901":9,"21902":8,"21903":5,"21904":3,"21905":7,"21906":7,"21907":5,"21908":10,"21909":5,"21910":8,"21911":9,"21912":5,"21913":5,"21914":2,"21915":6,"21916":7,"21917":8,"21918":3,"21919":9,"21920":9,"21921":8,"21922":8,"21923":4,"21924":7,"21925":2,"21926":9,"21927":7,"21928":7,"21929":9,"21930":7,"21931":7,"21932":9,"21933":10,"21934":8,"21935":2,"21936":2,"21937":3,"21938":7,"21939":8,"21940":7,"21941":7,"21942":5,"21943":7,"21944":2,"21945":4,"21946":10,"21947":7,"21948":7,"21949":7,"21950":6,"21951":8,"21952":3,"21953":7,"21954":3,"21955":4,"21956":8,"21957":5,"21958":3,"21959":2,"21960":7,"21961":8,"21962":7,"21963":6,"21964":5,"21965":7,"21966":10,"21967":7,"21968":10,"21969":4,"21970":6,"21971":5,"21972":2,"21973":2,"21974":5,"21975":10,"21976":7,"21977":8,"21978":8,"21979":7,"21980":7,"21981":6,"21982":9,"21983":2,"21984":8,"21985":3,"21986":5,"21987":1,"21988":9,"21989":8,"21990":6,"21991":8,"21992":7,"21993":8,"21994":5,"21995":5,"21996":2,"21997":2,"21998":7,"21999":7,"22000":3,"22001":7,"22002":9,"22003":7,"22004":1,"22005":9,"22006":7,"22007":8,"22008":5,"22009":8,"22010":3,"22011":3,"22012":6,"22013":5,"22014":7,"22015":2,"22016":5,"22017":6,"22018":7,"22019":3,"22020":9,"22021":5,"22022":2,"22023":8,"22024":5,"22025":7,"22026":8,"22027":1,"22028":9,"22029":2,"22030":7,"22031":10,"22032":8,"22033":8,"22034":5,"22035":10,"22036":8,"22037":3,"22038":7,"22039":1,"22040":8,"22041":7,"22042":7,"22043":9,"22044":8,"22045":9,"22046":7,"22047":9,"22048":2,"22049":1,"22050":10,"22051":8,"22052":5,"22053":7,"22054":7,"22055":7,"22056":7,"22057":8,"22058":8,"22059":9,"22060":9,"22061":8,"22062":5,"22063":5,"22064":5,"22065":9,"22066":1,"22067":1,"22068":3,"22069":8,"22070":8,"22071":5,"22072":7,"22073":5,"22074":8,"22075":5,"22076":5,"22077":3,"22078":8,"22079":7,"22080":8,"22081":5,"22082":9,"22083":5,"22084":8,"22085":9,"22086":4,"22087":5,"22088":2,"22089":5,"22090":8,"22091":7,"22092":3,"22093":1,"22094":8,"22095":5,"22096":10,"22097":3,"22098":10,"22099":1,"22100":8,"22101":8,"22102":3,"22103":7,"22104":7,"22105":6,"22106":3,"22107":3,"22108":8,"22109":9,"22110":9,"22111":10,"22112":2,"22113":7,"22114":5,"22115":5,"22116":7,"22117":8,"22118":2,"22119":9,"22120":7,"22121":2,"22122":7,"22123":9,"22124":5,"22125":8,"22126":9,"22127":7,"22128":8,"22129":8,"22130":8,"22131":2,"22132":9,"22133":7,"22134":9,"22135":8,"22136":6,"22137":2,"22138":4,"22139":6,"22140":8,"22141":9,"22142":8,"22143":1,"22144":9,"22145":2,"22146":8,"22147":8,"22148":2,"22149":7,"22150":2,"22151":5,"22152":8,"22153":7,"22154":5,"22155":7,"22156":2,"22157":2,"22158":4,"22159":8,"22160":7,"22161":8,"22162":3,"22163":7,"22164":8,"22165":9,"22166":8,"22167":2,"22168":8,"22169":1,"22170":6,"22171":6,"22172":6,"22173":5,"22174":6,"22175":6,"22176":8,"22177":6,"22178":2,"22179":7,"22180":8,"22181":6,"22182":9,"22183":1,"22184":6,"22185":3,"22186":7,"22187":7,"22188":7,"22189":7,"22190":8,"22191":2,"22192":7,"22193":6,"22194":7,"22195":6,"22196":2,"22197":7,"22198":8,"22199":7,"22200":2,"22201":8,"22202":9,"22203":5,"22204":7,"22205":9,"22206":6,"22207":5,"22208":6,"22209":7,"22210":4,"22211":9,"22212":7,"22213":5,"22214":7,"22215":5,"22216":8,"22217":9,"22218":6,"22219":2,"22220":8,"22221":5,"22222":6,"22223":2,"22224":8,"22225":8,"22226":7,"22227":8,"22228":7,"22229":8,"22230":5,"22231":2,"22232":8,"22233":8,"22234":8,"22235":6,"22236":2,"22237":9,"22238":7,"22239":5,"22240":8,"22241":7,"22242":5,"22243":10,"22244":2,"22245":9,"22246":7,"22247":8,"22248":8,"22249":4,"22250":7,"22251":3,"22252":8,"22253":9,"22254":8,"22255":9,"22256":1,"22257":2,"22258":7,"22259":7,"22260":5,"22261":8,"22262":4,"22263":7,"22264":6,"22265":5,"22266":10,"22267":5,"22268":2,"22269":5,"22270":2,"22271":8,"22272":9,"22273":9,"22274":7,"22275":8,"22276":4,"22277":9,"22278":1,"22279":7,"22280":8,"22281":7,"22282":7,"22283":9,"22284":7,"22285":8,"22286":8,"22287":7,"22288":7,"22289":9,"22290":2,"22291":6,"22292":7,"22293":10,"22294":1,"22295":7,"22296":7,"22297":10,"22298":5,"22299":10,"22300":7,"22301":2,"22302":2,"22303":5,"22304":7,"22305":7,"22306":5,"22307":10,"22308":7,"22309":2,"22310":6,"22311":1,"22312":5,"22313":9,"22314":1,"22315":7,"22316":7,"22317":8,"22318":6,"22319":7,"22320":4,"22321":7,"22322":10,"22323":6,"22324":8,"22325":2,"22326":5,"22327":8,"22328":9,"22329":7,"22330":7,"22331":8,"22332":6,"22333":4,"22334":8,"22335":8,"22336":1,"22337":8,"22338":4,"22339":9,"22340":4,"22341":8,"22342":7,"22343":10,"22344":1,"22345":5,"22346":8,"22347":9,"22348":7,"22349":7,"22350":9,"22351":7,"22352":2,"22353":5,"22354":8,"22355":5,"22356":8,"22357":9,"22358":5,"22359":9,"22360":3,"22361":10,"22362":5,"22363":8,"22364":7,"22365":4,"22366":5,"22367":2,"22368":10,"22369":6,"22370":8,"22371":2,"22372":1,"22373":7,"22374":9,"22375":3,"22376":8,"22377":8,"22378":9,"22379":10,"22380":6,"22381":8,"22382":4,"22383":8,"22384":4,"22385":2,"22386":10,"22387":8,"22388":9,"22389":5,"22390":2,"22391":5,"22392":8,"22393":5,"22394":7,"22395":8,"22396":2,"22397":9,"22398":2,"22399":8,"22400":2,"22401":7,"22402":6,"22403":8,"22404":4,"22405":3,"22406":5,"22407":7,"22408":7,"22409":4,"22410":4,"22411":8,"22412":7,"22413":5,"22414":7,"22415":8,"22416":5,"22417":6,"22418":9,"22419":8,"22420":9,"22421":8,"22422":8,"22423":7,"22424":5,"22425":3,"22426":2,"22427":4,"22428":7,"22429":9,"22430":6,"22431":9,"22432":6,"22433":5,"22434":10,"22435":9,"22436":8,"22437":7,"22438":2,"22439":7,"22440":10,"22441":8,"22442":9,"22443":7,"22444":7,"22445":7,"22446":10,"22447":6,"22448":8,"22449":7,"22450":10,"22451":7,"22452":9,"22453":1,"22454":8,"22455":6,"22456":3,"22457":9,"22458":7,"22459":7,"22460":6,"22461":2,"22462":10,"22463":10,"22464":9,"22465":1,"22466":10,"22467":9,"22468":5,"22469":5,"22470":5,"22471":1,"22472":2,"22473":3,"22474":8,"22475":10,"22476":7,"22477":7,"22478":7,"22479":5,"22480":9,"22481":8,"22482":7,"22483":9,"22484":2,"22485":4,"22486":7,"22487":10,"22488":6,"22489":8,"22490":1,"22491":6,"22492":9,"22493":1,"22494":2,"22495":8,"22496":5,"22497":8,"22498":6,"22499":10,"22500":8,"22501":9,"22502":4,"22503":5,"22504":10,"22505":7,"22506":3,"22507":8,"22508":7,"22509":8,"22510":1,"22511":8,"22512":8,"22513":2,"22514":4,"22515":1,"22516":8,"22517":8,"22518":8,"22519":7,"22520":2,"22521":9,"22522":7,"22523":3,"22524":10,"22525":8,"22526":9,"22527":8,"22528":1,"22529":7,"22530":1,"22531":8,"22532":8,"22533":7,"22534":2,"22535":2,"22536":8,"22537":8,"22538":8,"22539":2,"22540":8,"22541":8,"22542":7,"22543":9,"22544":7,"22545":7,"22546":8,"22547":2,"22548":9,"22549":2,"22550":3,"22551":9,"22552":8,"22553":5,"22554":8,"22555":7,"22556":4,"22557":10,"22558":1,"22559":5,"22560":9,"22561":8,"22562":5,"22563":8,"22564":8,"22565":9,"22566":2,"22567":5,"22568":7,"22569":10,"22570":8,"22571":7,"22572":9,"22573":5,"22574":8,"22575":1,"22576":8,"22577":1,"22578":8,"22579":8,"22580":7,"22581":3,"22582":8,"22583":9,"22584":7,"22585":8,"22586":5,"22587":10,"22588":7,"22589":7,"22590":8,"22591":8,"22592":5,"22593":5,"22594":8,"22595":7,"22596":8,"22597":4,"22598":8,"22599":5,"22600":4,"22601":5,"22602":8,"22603":9,"22604":2,"22605":5,"22606":8,"22607":7,"22608":10,"22609":3,"22610":7,"22611":8,"22612":9,"22613":1,"22614":7,"22615":5,"22616":1,"22617":2,"22618":8,"22619":8,"22620":2,"22621":7,"22622":1,"22623":6,"22624":8,"22625":1,"22626":9,"22627":8,"22628":1,"22629":7,"22630":1,"22631":5,"22632":10,"22633":5,"22634":10,"22635":7,"22636":2,"22637":2,"22638":4,"22639":2,"22640":7,"22641":3,"22642":2,"22643":8,"22644":5,"22645":9,"22646":4,"22647":7,"22648":7,"22649":5,"22650":8,"22651":7,"22652":10,"22653":5,"22654":5,"22655":1,"22656":3,"22657":6,"22658":7,"22659":1,"22660":3,"22661":5,"22662":9,"22663":8,"22664":9,"22665":1,"22666":6,"22667":2,"22668":7,"22669":7,"22670":7,"22671":1,"22672":3,"22673":7,"22674":9,"22675":9,"22676":10,"22677":7,"22678":3,"22679":1,"22680":5,"22681":10,"22682":3,"22683":1,"22684":6,"22685":6,"22686":10,"22687":5,"22688":8,"22689":7,"22690":8,"22691":4,"22692":10,"22693":5,"22694":2,"22695":10,"22696":7,"22697":1,"22698":7,"22699":8,"22700":5,"22701":5,"22702":3,"22703":7,"22704":9,"22705":8,"22706":7,"22707":2,"22708":2,"22709":5,"22710":3,"22711":7,"22712":5,"22713":6,"22714":8,"22715":8,"22716":3,"22717":8,"22718":7,"22719":3,"22720":8,"22721":8,"22722":2,"22723":8,"22724":8,"22725":8,"22726":8,"22727":9,"22728":4,"22729":8,"22730":7,"22731":2,"22732":8,"22733":5,"22734":7,"22735":8,"22736":7,"22737":9,"22738":7,"22739":5,"22740":10,"22741":5,"22742":7,"22743":7,"22744":9,"22745":8,"22746":7,"22747":7,"22748":8,"22749":6,"22750":9,"22751":7,"22752":5,"22753":5,"22754":7,"22755":7,"22756":5,"22757":8,"22758":8,"22759":6,"22760":8,"22761":10,"22762":5,"22763":2,"22764":3,"22765":4,"22766":2,"22767":4,"22768":2,"22769":5,"22770":1,"22771":8,"22772":5,"22773":9,"22774":9,"22775":5,"22776":9,"22777":7,"22778":2,"22779":7,"22780":3,"22781":4,"22782":8,"22783":7,"22784":9,"22785":4,"22786":2,"22787":2,"22788":9,"22789":7,"22790":6,"22791":2,"22792":7,"22793":4,"22794":9,"22795":7,"22796":9,"22797":7,"22798":9,"22799":8,"22800":9,"22801":9,"22802":10,"22803":8,"22804":4,"22805":8,"22806":1,"22807":7,"22808":7,"22809":2,"22810":9,"22811":7,"22812":9,"22813":9,"22814":9,"22815":8,"22816":5,"22817":2,"22818":2,"22819":3,"22820":2,"22821":3,"22822":7,"22823":8,"22824":5,"22825":7,"22826":4,"22827":5,"22828":7,"22829":7,"22830":7,"22831":3,"22832":7,"22833":5,"22834":7,"22835":8,"22836":7,"22837":9,"22838":7,"22839":7,"22840":7,"22841":5,"22842":9,"22843":4,"22844":8,"22845":8,"22846":2,"22847":10,"22848":8,"22849":2,"22850":9,"22851":2,"22852":3,"22853":7,"22854":8,"22855":1,"22856":7,"22857":1,"22858":5,"22859":7,"22860":9,"22861":9,"22862":9,"22863":1,"22864":2,"22865":4,"22866":9,"22867":5,"22868":9,"22869":7,"22870":3,"22871":9,"22872":8,"22873":10,"22874":9,"22875":9,"22876":7,"22877":3,"22878":5,"22879":7,"22880":5,"22881":5,"22882":7,"22883":9,"22884":1,"22885":7,"22886":2,"22887":7,"22888":5,"22889":10,"22890":8,"22891":8,"22892":7,"22893":7,"22894":8,"22895":10,"22896":10,"22897":9,"22898":3,"22899":8,"22900":5,"22901":2,"22902":7,"22903":5,"22904":2,"22905":7,"22906":8,"22907":5,"22908":5,"22909":10,"22910":10,"22911":8,"22912":5,"22913":7,"22914":9,"22915":9,"22916":8,"22917":5,"22918":2,"22919":7,"22920":1,"22921":7,"22922":7,"22923":2,"22924":3,"22925":2,"22926":8,"22927":5,"22928":2,"22929":10,"22930":5,"22931":7,"22932":9,"22933":7,"22934":8,"22935":10,"22936":1,"22937":3,"22938":7,"22939":9,"22940":8,"22941":9,"22942":8,"22943":7,"22944":9,"22945":9,"22946":10,"22947":6,"22948":7,"22949":7,"22950":2,"22951":10,"22952":8,"22953":9,"22954":8,"22955":7,"22956":8,"22957":1,"22958":2,"22959":9,"22960":4,"22961":7,"22962":6,"22963":4,"22964":8,"22965":2,"22966":7,"22967":8,"22968":1,"22969":4,"22970":8,"22971":5,"22972":7,"22973":8,"22974":7,"22975":9,"22976":1,"22977":8,"22978":1,"22979":3,"22980":5,"22981":1,"22982":2,"22983":7,"22984":5,"22985":5,"22986":7,"22987":2,"22988":8,"22989":8,"22990":9,"22991":9,"22992":9,"22993":4,"22994":8,"22995":1,"22996":6,"22997":6,"22998":2,"22999":8,"23000":9,"23001":7,"23002":6,"23003":1,"23004":7,"23005":7,"23006":7,"23007":2,"23008":2,"23009":8,"23010":3,"23011":9,"23012":6,"23013":5,"23014":7,"23015":9,"23016":1,"23017":5,"23018":9,"23019":5,"23020":6,"23021":1,"23022":8,"23023":8,"23024":8,"23025":10,"23026":2,"23027":1,"23028":2,"23029":9,"23030":1,"23031":5,"23032":3,"23033":3,"23034":8,"23035":2,"23036":4,"23037":8,"23038":1,"23039":2,"23040":6,"23041":8,"23042":3,"23043":9,"23044":10,"23045":3,"23046":7,"23047":4,"23048":5,"23049":7,"23050":8,"23051":5,"23052":7,"23053":8,"23054":9,"23055":8,"23056":8,"23057":9,"23058":8,"23059":3,"23060":8,"23061":7,"23062":8,"23063":10,"23064":8,"23065":7,"23066":9,"23067":7,"23068":7,"23069":7,"23070":8,"23071":9,"23072":6,"23073":9,"23074":7,"23075":2,"23076":7,"23077":7,"23078":8,"23079":2,"23080":10,"23081":8,"23082":9,"23083":9,"23084":5,"23085":3,"23086":7,"23087":5,"23088":8,"23089":10,"23090":9,"23091":6,"23092":10,"23093":9,"23094":4,"23095":8,"23096":8,"23097":1,"23098":8,"23099":10,"23100":8,"23101":5,"23102":1,"23103":7,"23104":2,"23105":8,"23106":5,"23107":8,"23108":8,"23109":2,"23110":7,"23111":3,"23112":5,"23113":7,"23114":10,"23115":5,"23116":7,"23117":7,"23118":3,"23119":8,"23120":9,"23121":3,"23122":7,"23123":7,"23124":2,"23125":7,"23126":7,"23127":7,"23128":7,"23129":1,"23130":3,"23131":5,"23132":7,"23133":7,"23134":5,"23135":6,"23136":8,"23137":5,"23138":5,"23139":7,"23140":7,"23141":9,"23142":5,"23143":9,"23144":5,"23145":10,"23146":8,"23147":10,"23148":7,"23149":2,"23150":8,"23151":2,"23152":2,"23153":7,"23154":8,"23155":5,"23156":7,"23157":2,"23158":3,"23159":10,"23160":5,"23161":5,"23162":6,"23163":8,"23164":7,"23165":8,"23166":10,"23167":10,"23168":7,"23169":9,"23170":7,"23171":5,"23172":2,"23173":2,"23174":5,"23175":8,"23176":8,"23177":7,"23178":5,"23179":9,"23180":10,"23181":1,"23182":9,"23183":7,"23184":7,"23185":9,"23186":7,"23187":7,"23188":7,"23189":6,"23190":8,"23191":9,"23192":7,"23193":8,"23194":1,"23195":5,"23196":6,"23197":5,"23198":1,"23199":9,"23200":5,"23201":3,"23202":2,"23203":8,"23204":9,"23205":8,"23206":7,"23207":7,"23208":4,"23209":8,"23210":8,"23211":7,"23212":2,"23213":9,"23214":2,"23215":6,"23216":6,"23217":9,"23218":7,"23219":8,"23220":3,"23221":8,"23222":9,"23223":8,"23224":8,"23225":4,"23226":8,"23227":7,"23228":8,"23229":7,"23230":8,"23231":4,"23232":7,"23233":2,"23234":7,"23235":3,"23236":1,"23237":9,"23238":8,"23239":5,"23240":2,"23241":3,"23242":4,"23243":9,"23244":2,"23245":7,"23246":7,"23247":9,"23248":9,"23249":6,"23250":7,"23251":9,"23252":9,"23253":9,"23254":2,"23255":2,"23256":1,"23257":1,"23258":7,"23259":8,"23260":8,"23261":8,"23262":4,"23263":3,"23264":8,"23265":1,"23266":7,"23267":5,"23268":8,"23269":2,"23270":9,"23271":9,"23272":8,"23273":9,"23274":8,"23275":7,"23276":8,"23277":7,"23278":5,"23279":4,"23280":7,"23281":1,"23282":3,"23283":6,"23284":2,"23285":2,"23286":4,"23287":9,"23288":3,"23289":7,"23290":9,"23291":2,"23292":8,"23293":9,"23294":8,"23295":10,"23296":8,"23297":7,"23298":9,"23299":8,"23300":7,"23301":9,"23302":7,"23303":7,"23304":2,"23305":7,"23306":6,"23307":2,"23308":9,"23309":8,"23310":8,"23311":8,"23312":3,"23313":7,"23314":2,"23315":7,"23316":1,"23317":7,"23318":9,"23319":6,"23320":9,"23321":9,"23322":3,"23323":6,"23324":7,"23325":8,"23326":4,"23327":5,"23328":9,"23329":8,"23330":9,"23331":2,"23332":8,"23333":1,"23334":3,"23335":9,"23336":5,"23337":7,"23338":9,"23339":4,"23340":8,"23341":5,"23342":4,"23343":9,"23344":7,"23345":8,"23346":8,"23347":9,"23348":4,"23349":7,"23350":8,"23351":5,"23352":5,"23353":3,"23354":9,"23355":8,"23356":3,"23357":9,"23358":5,"23359":10,"23360":8,"23361":8,"23362":3,"23363":7,"23364":9,"23365":6,"23366":9,"23367":3,"23368":9,"23369":8,"23370":2,"23371":9,"23372":6,"23373":7,"23374":7,"23375":5,"23376":5,"23377":7,"23378":9,"23379":2,"23380":9,"23381":7,"23382":3,"23383":2,"23384":9,"23385":5,"23386":8,"23387":7,"23388":4,"23389":9,"23390":8,"23391":7,"23392":9,"23393":7,"23394":1,"23395":8,"23396":8,"23397":8,"23398":5,"23399":4,"23400":8,"23401":9,"23402":7,"23403":9,"23404":8,"23405":5,"23406":8,"23407":9,"23408":5,"23409":5,"23410":4,"23411":6,"23412":1,"23413":1,"23414":9,"23415":7,"23416":9,"23417":7,"23418":8,"23419":9,"23420":8,"23421":7,"23422":2,"23423":5,"23424":7,"23425":8,"23426":2,"23427":10,"23428":8,"23429":10,"23430":5,"23431":2,"23432":2,"23433":9,"23434":2,"23435":7,"23436":7,"23437":10,"23438":7,"23439":7,"23440":1,"23441":9,"23442":7,"23443":9,"23444":6,"23445":8,"23446":7,"23447":9,"23448":5,"23449":4,"23450":8,"23451":9,"23452":9,"23453":8,"23454":2,"23455":9,"23456":2,"23457":8,"23458":9,"23459":8,"23460":2,"23461":8,"23462":2,"23463":1,"23464":9,"23465":8,"23466":9,"23467":10,"23468":9,"23469":9,"23470":5,"23471":2,"23472":7,"23473":8,"23474":1,"23475":6,"23476":3,"23477":7,"23478":9,"23479":7,"23480":2,"23481":7,"23482":8,"23483":9,"23484":2,"23485":5,"23486":8,"23487":7,"23488":8,"23489":8,"23490":8,"23491":9,"23492":7,"23493":7,"23494":5,"23495":8,"23496":7,"23497":3,"23498":4,"23499":9,"23500":8,"23501":9,"23502":7,"23503":2,"23504":9,"23505":9,"23506":7,"23507":8,"23508":8,"23509":10,"23510":1,"23511":2,"23512":6,"23513":4,"23514":6,"23515":1,"23516":8,"23517":1,"23518":8,"23519":1,"23520":7,"23521":2,"23522":2,"23523":9,"23524":7,"23525":4,"23526":5,"23527":1,"23528":8,"23529":8,"23530":8,"23531":2,"23532":5,"23533":9,"23534":4,"23535":8,"23536":7,"23537":8,"23538":9,"23539":7,"23540":7,"23541":8,"23542":8,"23543":9,"23544":6,"23545":3,"23546":7,"23547":8,"23548":10,"23549":8,"23550":9,"23551":7,"23552":7,"23553":2,"23554":1,"23555":8,"23556":4,"23557":3,"23558":7,"23559":8,"23560":5,"23561":9,"23562":6,"23563":8,"23564":2,"23565":8,"23566":7,"23567":9,"23568":10,"23569":2,"23570":8,"23571":1,"23572":6,"23573":7,"23574":5,"23575":8,"23576":7,"23577":2,"23578":2,"23579":6,"23580":2,"23581":5,"23582":2,"23583":9,"23584":7,"23585":10,"23586":7,"23587":1,"23588":9,"23589":5,"23590":7,"23591":6,"23592":1,"23593":8,"23594":10,"23595":8,"23596":8,"23597":2,"23598":1,"23599":7,"23600":9,"23601":6,"23602":7,"23603":2,"23604":8,"23605":8,"23606":8,"23607":2,"23608":8,"23609":2,"23610":2,"23611":4,"23612":2,"23613":9,"23614":9,"23615":1,"23616":7,"23617":1,"23618":8,"23619":7,"23620":8,"23621":8,"23622":3,"23623":9,"23624":1,"23625":5,"23626":3,"23627":10,"23628":6,"23629":7,"23630":8,"23631":1,"23632":4,"23633":9,"23634":7,"23635":6,"23636":7,"23637":5,"23638":5,"23639":5,"23640":7,"23641":4,"23642":8,"23643":8,"23644":8,"23645":7,"23646":3,"23647":8,"23648":10,"23649":8,"23650":2,"23651":7,"23652":3,"23653":3,"23654":8,"23655":6,"23656":4,"23657":8,"23658":1,"23659":7,"23660":6,"23661":7,"23662":9,"23663":7,"23664":1,"23665":9,"23666":7,"23667":8,"23668":5,"23669":7,"23670":9,"23671":5,"23672":2,"23673":5,"23674":8,"23675":7,"23676":8,"23677":8,"23678":9,"23679":9,"23680":7,"23681":8,"23682":9,"23683":9,"23684":10,"23685":7,"23686":4,"23687":9,"23688":8,"23689":6,"23690":1,"23691":9,"23692":9,"23693":8,"23694":5,"23695":7,"23696":4,"23697":1,"23698":8,"23699":9,"23700":8,"23701":9,"23702":6,"23703":4,"23704":8,"23705":2,"23706":9,"23707":7,"23708":7,"23709":2,"23710":5,"23711":1,"23712":7,"23713":1,"23714":1,"23715":2,"23716":8,"23717":7,"23718":9,"23719":6,"23720":4,"23721":9,"23722":7,"23723":6,"23724":8,"23725":5,"23726":8,"23727":8,"23728":7,"23729":5,"23730":4,"23731":3,"23732":9,"23733":7,"23734":9,"23735":5,"23736":8,"23737":7,"23738":8,"23739":5,"23740":8,"23741":2,"23742":9,"23743":7,"23744":6,"23745":7,"23746":5,"23747":8,"23748":1,"23749":6,"23750":3,"23751":9,"23752":9,"23753":2,"23754":4,"23755":8,"23756":7,"23757":5,"23758":10,"23759":9,"23760":7,"23761":2,"23762":2,"23763":5,"23764":8,"23765":9,"23766":6,"23767":7,"23768":6,"23769":8,"23770":2,"23771":9,"23772":7,"23773":5,"23774":7,"23775":4,"23776":2,"23777":9,"23778":7,"23779":7,"23780":5,"23781":8,"23782":7,"23783":8,"23784":5,"23785":2,"23786":9,"23787":7,"23788":2,"23789":7,"23790":3,"23791":9,"23792":7,"23793":1,"23794":5,"23795":2,"23796":4,"23797":9,"23798":8,"23799":5,"23800":5,"23801":8,"23802":8,"23803":5,"23804":8,"23805":9,"23806":9,"23807":9,"23808":2,"23809":2,"23810":7,"23811":1,"23812":2,"23813":2,"23814":9,"23815":8,"23816":7,"23817":7,"23818":2,"23819":8,"23820":6,"23821":2,"23822":10,"23823":8,"23824":8,"23825":1,"23826":7,"23827":7,"23828":2,"23829":5,"23830":7,"23831":6,"23832":3,"23833":9,"23834":8,"23835":7,"23836":10,"23837":9,"23838":9,"23839":5,"23840":7,"23841":4,"23842":2,"23843":8,"23844":7,"23845":2,"23846":5,"23847":10,"23848":3,"23849":1,"23850":1,"23851":7,"23852":5,"23853":1,"23854":7,"23855":7,"23856":1,"23857":5,"23858":7,"23859":6,"23860":10,"23861":7,"23862":4,"23863":8,"23864":2,"23865":7,"23866":5,"23867":7,"23868":8,"23869":9,"23870":7,"23871":5,"23872":9,"23873":9,"23874":2,"23875":5,"23876":8,"23877":7,"23878":2,"23879":7,"23880":9,"23881":7,"23882":1,"23883":4,"23884":7,"23885":8,"23886":7,"23887":9,"23888":7,"23889":5,"23890":8,"23891":8,"23892":2,"23893":7,"23894":4,"23895":3,"23896":5,"23897":7,"23898":7,"23899":7,"23900":2,"23901":7,"23902":6,"23903":8,"23904":9,"23905":7,"23906":4,"23907":9,"23908":8,"23909":2,"23910":9,"23911":7,"23912":1,"23913":6,"23914":8,"23915":1,"23916":4,"23917":7,"23918":2,"23919":1,"23920":8,"23921":2,"23922":9,"23923":9,"23924":8,"23925":3,"23926":6,"23927":8,"23928":9,"23929":7,"23930":2,"23931":6,"23932":9,"23933":9,"23934":9,"23935":8,"23936":9,"23937":10,"23938":1,"23939":5,"23940":8,"23941":7,"23942":8,"23943":7,"23944":9,"23945":9,"23946":5,"23947":9,"23948":8,"23949":7,"23950":2,"23951":8,"23952":3,"23953":5,"23954":7,"23955":8,"23956":9,"23957":10,"23958":5,"23959":9,"23960":9,"23961":8,"23962":8,"23963":9,"23964":8,"23965":9,"23966":8,"23967":7,"23968":1,"23969":7,"23970":5,"23971":8,"23972":7,"23973":7,"23974":8,"23975":8,"23976":8,"23977":3,"23978":9,"23979":8,"23980":6,"23981":1,"23982":8,"23983":8,"23984":7,"23985":2,"23986":2,"23987":7,"23988":8,"23989":6,"23990":2,"23991":7,"23992":7,"23993":9,"23994":5,"23995":8,"23996":8,"23997":7,"23998":1,"23999":6,"24000":7,"24001":7,"24002":7,"24003":5,"24004":7,"24005":8,"24006":7,"24007":7,"24008":3,"24009":7,"24010":7,"24011":9,"24012":9,"24013":7,"24014":9,"24015":4,"24016":7,"24017":8,"24018":2,"24019":9,"24020":9,"24021":5,"24022":5,"24023":4,"24024":9,"24025":8,"24026":8,"24027":7,"24028":5,"24029":1,"24030":5,"24031":3,"24032":8,"24033":9,"24034":1,"24035":1,"24036":9,"24037":8,"24038":4,"24039":6,"24040":8,"24041":7,"24042":2,"24043":9,"24044":4,"24045":5,"24046":7,"24047":8,"24048":9,"24049":8,"24050":7,"24051":7,"24052":7,"24053":8,"24054":10,"24055":7,"24056":9,"24057":5,"24058":1,"24059":10,"24060":9,"24061":8,"24062":2,"24063":9,"24064":1,"24065":2,"24066":1,"24067":6,"24068":9,"24069":8,"24070":3,"24071":1,"24072":2,"24073":9,"24074":7,"24075":6,"24076":3,"24077":10,"24078":10,"24079":8,"24080":9,"24081":9,"24082":7,"24083":7,"24084":7,"24085":4,"24086":10,"24087":5,"24088":8,"24089":2,"24090":8,"24091":7,"24092":9,"24093":3,"24094":8,"24095":5,"24096":1,"24097":2,"24098":1,"24099":8,"24100":9,"24101":5,"24102":9,"24103":7,"24104":8,"24105":9,"24106":8,"24107":8,"24108":7,"24109":8,"24110":7,"24111":5,"24112":5,"24113":5,"24114":9,"24115":5,"24116":9,"24117":6,"24118":9,"24119":8,"24120":7,"24121":7,"24122":6,"24123":7,"24124":8,"24125":8,"24126":7,"24127":1,"24128":4,"24129":8,"24130":6,"24131":7,"24132":8,"24133":5,"24134":2,"24135":2,"24136":10,"24137":9,"24138":8,"24139":5,"24140":8,"24141":8,"24142":4,"24143":9,"24144":9,"24145":2,"24146":10,"24147":6,"24148":8,"24149":2,"24150":7,"24151":7,"24152":4,"24153":1,"24154":9,"24155":8,"24156":7,"24157":7,"24158":9,"24159":5,"24160":8,"24161":4,"24162":1,"24163":5,"24164":2,"24165":8,"24166":4,"24167":5,"24168":9,"24169":8,"24170":7,"24171":10,"24172":7,"24173":7,"24174":7,"24175":3,"24176":5,"24177":9,"24178":8,"24179":9,"24180":6,"24181":10,"24182":5,"24183":5,"24184":2,"24185":2,"24186":2,"24187":7,"24188":10,"24189":2,"24190":8,"24191":5,"24192":8,"24193":5,"24194":8,"24195":1,"24196":5,"24197":5,"24198":4,"24199":7,"24200":7,"24201":4,"24202":6,"24203":8,"24204":1,"24205":2,"24206":7,"24207":7,"24208":8,"24209":3,"24210":4,"24211":10,"24212":8,"24213":2,"24214":7,"24215":10,"24216":7,"24217":3,"24218":9,"24219":6,"24220":2,"24221":3,"24222":5,"24223":3,"24224":5,"24225":8,"24226":2,"24227":6,"24228":9,"24229":8,"24230":7,"24231":8,"24232":1,"24233":7,"24234":8,"24235":9,"24236":10,"24237":5,"24238":3,"24239":7,"24240":9,"24241":5,"24242":10,"24243":4,"24244":5,"24245":1,"24246":9,"24247":8,"24248":10,"24249":2,"24250":4,"24251":8,"24252":9,"24253":5,"24254":8,"24255":8,"24256":6,"24257":4,"24258":8,"24259":4,"24260":5,"24261":3,"24262":9,"24263":5,"24264":9,"24265":9,"24266":2,"24267":5,"24268":9,"24269":7,"24270":7,"24271":3,"24272":5,"24273":8,"24274":9,"24275":9,"24276":10,"24277":9,"24278":7,"24279":8,"24280":9,"24281":9,"24282":8,"24283":1,"24284":6,"24285":2,"24286":6,"24287":8,"24288":9,"24289":6,"24290":9,"24291":9,"24292":9,"24293":2,"24294":9,"24295":2,"24296":5,"24297":7,"24298":7,"24299":4,"24300":10,"24301":5,"24302":7,"24303":9,"24304":7,"24305":6,"24306":7,"24307":7,"24308":7,"24309":8,"24310":5,"24311":2,"24312":2,"24313":7,"24314":9,"24315":1,"24316":9,"24317":7,"24318":5,"24319":6,"24320":6,"24321":10,"24322":10,"24323":8,"24324":10,"24325":7,"24326":9,"24327":7,"24328":5,"24329":5,"24330":7,"24331":2,"24332":3,"24333":7,"24334":7,"24335":8,"24336":8,"24337":10,"24338":8,"24339":6,"24340":6,"24341":6,"24342":8,"24343":5,"24344":5,"24345":2,"24346":8,"24347":7,"24348":8,"24349":7,"24350":1,"24351":5,"24352":9,"24353":6,"24354":7,"24355":3,"24356":6,"24357":7,"24358":1,"24359":8,"24360":7,"24361":2,"24362":9,"24363":8,"24364":8,"24365":3,"24366":6,"24367":7,"24368":8,"24369":2,"24370":9,"24371":9,"24372":1,"24373":7,"24374":8,"24375":3,"24376":7,"24377":2,"24378":9,"24379":7,"24380":9,"24381":8,"24382":5,"24383":5,"24384":9,"24385":9,"24386":7,"24387":8,"24388":8,"24389":8,"24390":8,"24391":3,"24392":9,"24393":1,"24394":2,"24395":8,"24396":7,"24397":5,"24398":2,"24399":7,"24400":8,"24401":8,"24402":7,"24403":10,"24404":7,"24405":7,"24406":9,"24407":7,"24408":9,"24409":9,"24410":8,"24411":9,"24412":9,"24413":7,"24414":8,"24415":6,"24416":2,"24417":7,"24418":8,"24419":9,"24420":7,"24421":8,"24422":9,"24423":5,"24424":5,"24425":9,"24426":4,"24427":7,"24428":1,"24429":2,"24430":2,"24431":9,"24432":9,"24433":10,"24434":9,"24435":5,"24436":4,"24437":7,"24438":9,"24439":2,"24440":9,"24441":5,"24442":9,"24443":10,"24444":3,"24445":7,"24446":8,"24447":7,"24448":8,"24449":3,"24450":9,"24451":8,"24452":7,"24453":8,"24454":8,"24455":9,"24456":7,"24457":8,"24458":9,"24459":8,"24460":2,"24461":5,"24462":8,"24463":7,"24464":5,"24465":2,"24466":3,"24467":7,"24468":7,"24469":5,"24470":7,"24471":6,"24472":6,"24473":9,"24474":7,"24475":1,"24476":1,"24477":3,"24478":8,"24479":2,"24480":8,"24481":7,"24482":7,"24483":6,"24484":7,"24485":8,"24486":7,"24487":7,"24488":9,"24489":7,"24490":8,"24491":2,"24492":9,"24493":8,"24494":8,"24495":8,"24496":9,"24497":2,"24498":8,"24499":7,"24500":10,"24501":9,"24502":5,"24503":9,"24504":4,"24505":9,"24506":8,"24507":8,"24508":5,"24509":7,"24510":7,"24511":2,"24512":2,"24513":8,"24514":8,"24515":7,"24516":7,"24517":8,"24518":8,"24519":8,"24520":10,"24521":7,"24522":2,"24523":6,"24524":2,"24525":4,"24526":1,"24527":4,"24528":2,"24529":9,"24530":9,"24531":8,"24532":8,"24533":7,"24534":7,"24535":9,"24536":5,"24537":7,"24538":2,"24539":10,"24540":6,"24541":3,"24542":8,"24543":6,"24544":7,"24545":7,"24546":3,"24547":3,"24548":2,"24549":1,"24550":1,"24551":6,"24552":9,"24553":9,"24554":7,"24555":1,"24556":9,"24557":10,"24558":9,"24559":2,"24560":3,"24561":4,"24562":10,"24563":9,"24564":5,"24565":8,"24566":8,"24567":2,"24568":7,"24569":8,"24570":7,"24571":4,"24572":8,"24573":7,"24574":7,"24575":7,"24576":5,"24577":5,"24578":9,"24579":9,"24580":4,"24581":7,"24582":8,"24583":10,"24584":8,"24585":8,"24586":8,"24587":6,"24588":5,"24589":8,"24590":5,"24591":2,"24592":8,"24593":1,"24594":2,"24595":3,"24596":2,"24597":7,"24598":10,"24599":8,"24600":7,"24601":9,"24602":1,"24603":2,"24604":6,"24605":10,"24606":2,"24607":5,"24608":8,"24609":3,"24610":9,"24611":7,"24612":8,"24613":7,"24614":7,"24615":8,"24616":8,"24617":4,"24618":8,"24619":8,"24620":8,"24621":7,"24622":8,"24623":7,"24624":3,"24625":2,"24626":9,"24627":8,"24628":9,"24629":4,"24630":3,"24631":7,"24632":9,"24633":5,"24634":7,"24635":8,"24636":9,"24637":1,"24638":2,"24639":7,"24640":7,"24641":8,"24642":3,"24643":2,"24644":8,"24645":9,"24646":5,"24647":5,"24648":6,"24649":6,"24650":9,"24651":4,"24652":3,"24653":7,"24654":9,"24655":9,"24656":8,"24657":7,"24658":7,"24659":6,"24660":8,"24661":3,"24662":10,"24663":4,"24664":2,"24665":5,"24666":9,"24667":5,"24668":10,"24669":4,"24670":7,"24671":5,"24672":5,"24673":7,"24674":7,"24675":7,"24676":6,"24677":9,"24678":2,"24679":7,"24680":8,"24681":5,"24682":7,"24683":8,"24684":7,"24685":2,"24686":3,"24687":5,"24688":7,"24689":5,"24690":2,"24691":4,"24692":8,"24693":3,"24694":7,"24695":2,"24696":10,"24697":1,"24698":2,"24699":7,"24700":2,"24701":5,"24702":8,"24703":9,"24704":5,"24705":9,"24706":7,"24707":7,"24708":9,"24709":5,"24710":8,"24711":9,"24712":9,"24713":9,"24714":7,"24715":2,"24716":9,"24717":7,"24718":3,"24719":8,"24720":8,"24721":5,"24722":6,"24723":5,"24724":4,"24725":7,"24726":9,"24727":6,"24728":8,"24729":2,"24730":2,"24731":10,"24732":8,"24733":10,"24734":9,"24735":6,"24736":10,"24737":5,"24738":9,"24739":8,"24740":7,"24741":7,"24742":8,"24743":1,"24744":8,"24745":5,"24746":8,"24747":7,"24748":9,"24749":7,"24750":6,"24751":7,"24752":2,"24753":7,"24754":8,"24755":7,"24756":7,"24757":7,"24758":7,"24759":5,"24760":8,"24761":9,"24762":2,"24763":5,"24764":3,"24765":1,"24766":3,"24767":6,"24768":5,"24769":8,"24770":9,"24771":9,"24772":7,"24773":10,"24774":8,"24775":8,"24776":8,"24777":7,"24778":2,"24779":8,"24780":9,"24781":7,"24782":2,"24783":8,"24784":2,"24785":6,"24786":7,"24787":7,"24788":1,"24789":8,"24790":2,"24791":10,"24792":8,"24793":7,"24794":8,"24795":8,"24796":2,"24797":10,"24798":7,"24799":9,"24800":7,"24801":7,"24802":7,"24803":7,"24804":7,"24805":9,"24806":7,"24807":5,"24808":4,"24809":7,"24810":8,"24811":9,"24812":7,"24813":6,"24814":1,"24815":6,"24816":4,"24817":8,"24818":9,"24819":5,"24820":8,"24821":8,"24822":2,"24823":2,"24824":9,"24825":9,"24826":9,"24827":4,"24828":7,"24829":7,"24830":6,"24831":8,"24832":3,"24833":1,"24834":7,"24835":10,"24836":8,"24837":8,"24838":6,"24839":8,"24840":5,"24841":9,"24842":7,"24843":7,"24844":5,"24845":7,"24846":7,"24847":8,"24848":3,"24849":2,"24850":2,"24851":1,"24852":8,"24853":8,"24854":8,"24855":9,"24856":4,"24857":8,"24858":9,"24859":4,"24860":2,"24861":7,"24862":8,"24863":9,"24864":8,"24865":2,"24866":8,"24867":8,"24868":2,"24869":1,"24870":7,"24871":8,"24872":9,"24873":10,"24874":7,"24875":9,"24876":5,"24877":8,"24878":4,"24879":10,"24880":2,"24881":9,"24882":7,"24883":6,"24884":9,"24885":7,"24886":3,"24887":6,"24888":1,"24889":7,"24890":7,"24891":6,"24892":5,"24893":2,"24894":9,"24895":10,"24896":8,"24897":7,"24898":8,"24899":5,"24900":7,"24901":7,"24902":9,"24903":8,"24904":7,"24905":2,"24906":2,"24907":8,"24908":3,"24909":2,"24910":9,"24911":3,"24912":7,"24913":8,"24914":5,"24915":7,"24916":9,"24917":8,"24918":5,"24919":8,"24920":7,"24921":9,"24922":8,"24923":9,"24924":8,"24925":8,"24926":10,"24927":5,"24928":2,"24929":3,"24930":10,"24931":8,"24932":8,"24933":6,"24934":8,"24935":8,"24936":2,"24937":1,"24938":2,"24939":10,"24940":8,"24941":8,"24942":9,"24943":3,"24944":2,"24945":5,"24946":2,"24947":5,"24948":10,"24949":7,"24950":8,"24951":7,"24952":7,"24953":3,"24954":2,"24955":7,"24956":9,"24957":8,"24958":7,"24959":8,"24960":2,"24961":9,"24962":7,"24963":3,"24964":8,"24965":3,"24966":8,"24967":8,"24968":3,"24969":1,"24970":9,"24971":4,"24972":5,"24973":8,"24974":6,"24975":7,"24976":8,"24977":7,"24978":8,"24979":7,"24980":7,"24981":7,"24982":7,"24983":9,"24984":3,"24985":4,"24986":7,"24987":10,"24988":3,"24989":10,"24990":8,"24991":9,"24992":8,"24993":9,"24994":8,"24995":2,"24996":2,"24997":9,"24998":2,"24999":7,"25000":2,"25001":8,"25002":7,"25003":2,"25004":8,"25005":2,"25006":8,"25007":6,"25008":7,"25009":7,"25010":9,"25011":9,"25012":10,"25013":7,"25014":9,"25015":3,"25016":2,"25017":9,"25018":7,"25019":8,"25020":4,"25021":9,"25022":5,"25023":1,"25024":8,"25025":2,"25026":5,"25027":7,"25028":9,"25029":4,"25030":9,"25031":4,"25032":8,"25033":3,"25034":7,"25035":7,"25036":6,"25037":9,"25038":8,"25039":7,"25040":10,"25041":1,"25042":1,"25043":3,"25044":8,"25045":2,"25046":8,"25047":8,"25048":9,"25049":9,"25050":1,"25051":7,"25052":2,"25053":2,"25054":8,"25055":5,"25056":7,"25057":7,"25058":2,"25059":10,"25060":2,"25061":3,"25062":7,"25063":7,"25064":9,"25065":7,"25066":7,"25067":8,"25068":9,"25069":10,"25070":7,"25071":8,"25072":7,"25073":4,"25074":7,"25075":6,"25076":1,"25077":8,"25078":5,"25079":9,"25080":3,"25081":5,"25082":5,"25083":8,"25084":4,"25085":7,"25086":3,"25087":10,"25088":7,"25089":7,"25090":2,"25091":9,"25092":7,"25093":4,"25094":9,"25095":5,"25096":2,"25097":9,"25098":7,"25099":2,"25100":9,"25101":7,"25102":6,"25103":4,"25104":9,"25105":8,"25106":3,"25107":8,"25108":5,"25109":10,"25110":8,"25111":7,"25112":9,"25113":2,"25114":2,"25115":1,"25116":7,"25117":2,"25118":5,"25119":8,"25120":5,"25121":2,"25122":8,"25123":6,"25124":9,"25125":7,"25126":1,"25127":8,"25128":1,"25129":8,"25130":4,"25131":8,"25132":10,"25133":8,"25134":8,"25135":4,"25136":10,"25137":2,"25138":1,"25139":8,"25140":8,"25141":9,"25142":6,"25143":7,"25144":10,"25145":7,"25146":10,"25147":9,"25148":8,"25149":7,"25150":8,"25151":5,"25152":5,"25153":2,"25154":8,"25155":5,"25156":9,"25157":6,"25158":1,"25159":2,"25160":7,"25161":7,"25162":4,"25163":2,"25164":7,"25165":2,"25166":5,"25167":3,"25168":8,"25169":9,"25170":2,"25171":10,"25172":4,"25173":7,"25174":8,"25175":9,"25176":8,"25177":8,"25178":3,"25179":2,"25180":7,"25181":8,"25182":8,"25183":9,"25184":7,"25185":5,"25186":7,"25187":9,"25188":2,"25189":8,"25190":9,"25191":9,"25192":2,"25193":8,"25194":2,"25195":8,"25196":8,"25197":5,"25198":8,"25199":3,"25200":9,"25201":8,"25202":8,"25203":8,"25204":8,"25205":8,"25206":9,"25207":8,"25208":8,"25209":5,"25210":8,"25211":3,"25212":5,"25213":10,"25214":8,"25215":5,"25216":1,"25217":7,"25218":5,"25219":3,"25220":4,"25221":9,"25222":9,"25223":7,"25224":1,"25225":3,"25226":4,"25227":8,"25228":2,"25229":4,"25230":7,"25231":7,"25232":4,"25233":5,"25234":4,"25235":7,"25236":9,"25237":9,"25238":1,"25239":9,"25240":2,"25241":8,"25242":7,"25243":8,"25244":9,"25245":7,"25246":9,"25247":5,"25248":7,"25249":1,"25250":9,"25251":7,"25252":2,"25253":7,"25254":7,"25255":5,"25256":3,"25257":9,"25258":3,"25259":2,"25260":5,"25261":7,"25262":2,"25263":6,"25264":6,"25265":9,"25266":5,"25267":7,"25268":10,"25269":9,"25270":1,"25271":2,"25272":4,"25273":7,"25274":10,"25275":8,"25276":8,"25277":7,"25278":8,"25279":7,"25280":9,"25281":7,"25282":6,"25283":5,"25284":2,"25285":1,"25286":3,"25287":8,"25288":4,"25289":8,"25290":7,"25291":8,"25292":8,"25293":5,"25294":8,"25295":9,"25296":2,"25297":3,"25298":7,"25299":2,"25300":8,"25301":2,"25302":8,"25303":8,"25304":8,"25305":3,"25306":10,"25307":5,"25308":2,"25309":8,"25310":7,"25311":7,"25312":8,"25313":6,"25314":7,"25315":9,"25316":7,"25317":10,"25318":8,"25319":4,"25320":3,"25321":8,"25322":6,"25323":7,"25324":10,"25325":6,"25326":5,"25327":9,"25328":7,"25329":3,"25330":1,"25331":8,"25332":4,"25333":4,"25334":7,"25335":8,"25336":7,"25337":8,"25338":9,"25339":6,"25340":7,"25341":5,"25342":2,"25343":8,"25344":3,"25345":2,"25346":4,"25347":7,"25348":2,"25349":7,"25350":8,"25351":9,"25352":2,"25353":9,"25354":8,"25355":9,"25356":4,"25357":2,"25358":1,"25359":3,"25360":8,"25361":8,"25362":9,"25363":3,"25364":9,"25365":4,"25366":10,"25367":8,"25368":6,"25369":7,"25370":9,"25371":5,"25372":3,"25373":2,"25374":7,"25375":10,"25376":5,"25377":7,"25378":1,"25379":7,"25380":6,"25381":7,"25382":8,"25383":4,"25384":3,"25385":9,"25386":6,"25387":5,"25388":3,"25389":2,"25390":6,"25391":7,"25392":7,"25393":3,"25394":3,"25395":7,"25396":9,"25397":9,"25398":8,"25399":5,"25400":4,"25401":9,"25402":7,"25403":9,"25404":10,"25405":7,"25406":6,"25407":8,"25408":9,"25409":7,"25410":4,"25411":2,"25412":5,"25413":10,"25414":7,"25415":6,"25416":9,"25417":7,"25418":2,"25419":7,"25420":8,"25421":4,"25422":4,"25423":8,"25424":9,"25425":8,"25426":9,"25427":7,"25428":7,"25429":9,"25430":5,"25431":7,"25432":8,"25433":5,"25434":5,"25435":5,"25436":7,"25437":2,"25438":8,"25439":3,"25440":9,"25441":9,"25442":9,"25443":3,"25444":8,"25445":7,"25446":4,"25447":9,"25448":8,"25449":8,"25450":7,"25451":7,"25452":4,"25453":2,"25454":3,"25455":2,"25456":9,"25457":2,"25458":8,"25459":2,"25460":5,"25461":9,"25462":4,"25463":6,"25464":4,"25465":8,"25466":2,"25467":9,"25468":6,"25469":1,"25470":8,"25471":1,"25472":5,"25473":8,"25474":4,"25475":7,"25476":10,"25477":9,"25478":9,"25479":6,"25480":7,"25481":1,"25482":7,"25483":7,"25484":7,"25485":5,"25486":2,"25487":8,"25488":7,"25489":2,"25490":4,"25491":7,"25492":2,"25493":4,"25494":10,"25495":1,"25496":8,"25497":1,"25498":8,"25499":7,"25500":7,"25501":6,"25502":4,"25503":5,"25504":3,"25505":7,"25506":4,"25507":9,"25508":7,"25509":7,"25510":9,"25511":9,"25512":2,"25513":2,"25514":5,"25515":3,"25516":3,"25517":4,"25518":5,"25519":5,"25520":7,"25521":10,"25522":3,"25523":9,"25524":7,"25525":2,"25526":8,"25527":8,"25528":4,"25529":7,"25530":8,"25531":6,"25532":4,"25533":8,"25534":3,"25535":8,"25536":5,"25537":6,"25538":9,"25539":5,"25540":2,"25541":9,"25542":8,"25543":4,"25544":8,"25545":5,"25546":2,"25547":6,"25548":7,"25549":9,"25550":6,"25551":9,"25552":1,"25553":5,"25554":8,"25555":2,"25556":8,"25557":5,"25558":5,"25559":8,"25560":7,"25561":10,"25562":9,"25563":7,"25564":5,"25565":8,"25566":7,"25567":5,"25568":8,"25569":4,"25570":5,"25571":9,"25572":9,"25573":9,"25574":7,"25575":2,"25576":8,"25577":5,"25578":6,"25579":5,"25580":1,"25581":5,"25582":7,"25583":7,"25584":8,"25585":3,"25586":6,"25587":2,"25588":8,"25589":2,"25590":4,"25591":7,"25592":7,"25593":5,"25594":7,"25595":1,"25596":8,"25597":5,"25598":6,"25599":7,"25600":7,"25601":2,"25602":5,"25603":8,"25604":2,"25605":6,"25606":3,"25607":8,"25608":9,"25609":7,"25610":2,"25611":7,"25612":8,"25613":8,"25614":5,"25615":4,"25616":4,"25617":1,"25618":1,"25619":5,"25620":8,"25621":7,"25622":7,"25623":7,"25624":5,"25625":3,"25626":5,"25627":8,"25628":7,"25629":3,"25630":9,"25631":9,"25632":9,"25633":5,"25634":8,"25635":6,"25636":6,"25637":3,"25638":8,"25639":3,"25640":7,"25641":9,"25642":4,"25643":5,"25644":3,"25645":4,"25646":8,"25647":2,"25648":7,"25649":9,"25650":8,"25651":7,"25652":8,"25653":1,"25654":7,"25655":8,"25656":10,"25657":7,"25658":3,"25659":4,"25660":8,"25661":6,"25662":8,"25663":2,"25664":8,"25665":9,"25666":2,"25667":5,"25668":7,"25669":8,"25670":5,"25671":8,"25672":9,"25673":2,"25674":8,"25675":9,"25676":2,"25677":3,"25678":2,"25679":8,"25680":9,"25681":2,"25682":7,"25683":7,"25684":8,"25685":5,"25686":8,"25687":8,"25688":8,"25689":5,"25690":8,"25691":9,"25692":6,"25693":5,"25694":7,"25695":8,"25696":3,"25697":1,"25698":10,"25699":10,"25700":9,"25701":8,"25702":7,"25703":7,"25704":5,"25705":9,"25706":3,"25707":7,"25708":7,"25709":7,"25710":5,"25711":8,"25712":7,"25713":7,"25714":5,"25715":2,"25716":9,"25717":5,"25718":7,"25719":7,"25720":7,"25721":5,"25722":9,"25723":10,"25724":8,"25725":9,"25726":8,"25727":7,"25728":8,"25729":5,"25730":8,"25731":7,"25732":4,"25733":2,"25734":8,"25735":5,"25736":7,"25737":5,"25738":3,"25739":7,"25740":7,"25741":9,"25742":7,"25743":2,"25744":10,"25745":8,"25746":7,"25747":10,"25748":7,"25749":4,"25750":9,"25751":9,"25752":9,"25753":8,"25754":4,"25755":9,"25756":4,"25757":9,"25758":10,"25759":3,"25760":7,"25761":8,"25762":8,"25763":7,"25764":8,"25765":9,"25766":7,"25767":5,"25768":8,"25769":9,"25770":9,"25771":2,"25772":5,"25773":3,"25774":4,"25775":7,"25776":8,"25777":3,"25778":8,"25779":3,"25780":5,"25781":9,"25782":7,"25783":7,"25784":3,"25785":7,"25786":5,"25787":9,"25788":5,"25789":9,"25790":8,"25791":8,"25792":1,"25793":10,"25794":8,"25795":7,"25796":9,"25797":5,"25798":9,"25799":7,"25800":5,"25801":6,"25802":5,"25803":2,"25804":8,"25805":8,"25806":9,"25807":3,"25808":9,"25809":7,"25810":3,"25811":1,"25812":7,"25813":2,"25814":7,"25815":9,"25816":4,"25817":1,"25818":3,"25819":5,"25820":4,"25821":5,"25822":6,"25823":8,"25824":9,"25825":3,"25826":8,"25827":10,"25828":8,"25829":7,"25830":8,"25831":5,"25832":7,"25833":8,"25834":8,"25835":8,"25836":3,"25837":7,"25838":8,"25839":7,"25840":8,"25841":7,"25842":7,"25843":7,"25844":7,"25845":8,"25846":9,"25847":2,"25848":2,"25849":8,"25850":5,"25851":8,"25852":10,"25853":2,"25854":6,"25855":7,"25856":10,"25857":7,"25858":8,"25859":9,"25860":5,"25861":7,"25862":8,"25863":7,"25864":10,"25865":3,"25866":9,"25867":6,"25868":8,"25869":2,"25870":5,"25871":8,"25872":7,"25873":10,"25874":7,"25875":8,"25876":2,"25877":9,"25878":3,"25879":7,"25880":2,"25881":6,"25882":8,"25883":5,"25884":9,"25885":9,"25886":1,"25887":7,"25888":8,"25889":7,"25890":7,"25891":8,"25892":9,"25893":7,"25894":2,"25895":5,"25896":7,"25897":7,"25898":7,"25899":7,"25900":3,"25901":7,"25902":3,"25903":5,"25904":5,"25905":7,"25906":7,"25907":9,"25908":6,"25909":8,"25910":8,"25911":5,"25912":9,"25913":10,"25914":10,"25915":9,"25916":8,"25917":9,"25918":8,"25919":2,"25920":10,"25921":8,"25922":9,"25923":1,"25924":2,"25925":10,"25926":5,"25927":9,"25928":7,"25929":7,"25930":5,"25931":6,"25932":9,"25933":6,"25934":5,"25935":8,"25936":1,"25937":8,"25938":9,"25939":9,"25940":9,"25941":5,"25942":8,"25943":1,"25944":5,"25945":9,"25946":8,"25947":7,"25948":8,"25949":8,"25950":9,"25951":7,"25952":8,"25953":8,"25954":6,"25955":8,"25956":8,"25957":3,"25958":2,"25959":5,"25960":8,"25961":7,"25962":2,"25963":2,"25964":8,"25965":5,"25966":8,"25967":8,"25968":4,"25969":5,"25970":8,"25971":8,"25972":1,"25973":8,"25974":9,"25975":7,"25976":10,"25977":8,"25978":8,"25979":7,"25980":9,"25981":8,"25982":6,"25983":8,"25984":7,"25985":7,"25986":9,"25987":2,"25988":4,"25989":9,"25990":2,"25991":2,"25992":9,"25993":7,"25994":9,"25995":9,"25996":4,"25997":7,"25998":3,"25999":9,"26000":7,"26001":4,"26002":8,"26003":9,"26004":1,"26005":7,"26006":9,"26007":7,"26008":5,"26009":8,"26010":10,"26011":7,"26012":6,"26013":1,"26014":7,"26015":9,"26016":1,"26017":5,"26018":1,"26019":9,"26020":3,"26021":9,"26022":8,"26023":5,"26024":2,"26025":7,"26026":9,"26027":7,"26028":5,"26029":9,"26030":7,"26031":8,"26032":8,"26033":7,"26034":8,"26035":4,"26036":9,"26037":1,"26038":8,"26039":1,"26040":9,"26041":7,"26042":2,"26043":2,"26044":8,"26045":2,"26046":9,"26047":8,"26048":8,"26049":6,"26050":8,"26051":8,"26052":10,"26053":3,"26054":1,"26055":8,"26056":8,"26057":7,"26058":10,"26059":8,"26060":9,"26061":2,"26062":10,"26063":1,"26064":6,"26065":1,"26066":5,"26067":8,"26068":2,"26069":2,"26070":7,"26071":8,"26072":7,"26073":9,"26074":2,"26075":5,"26076":7,"26077":4,"26078":9,"26079":5,"26080":9,"26081":5,"26082":9,"26083":2,"26084":7,"26085":2,"26086":7,"26087":7,"26088":8,"26089":1,"26090":7,"26091":8,"26092":4,"26093":1,"26094":7,"26095":3,"26096":4,"26097":8,"26098":7,"26099":5,"26100":8,"26101":7,"26102":7,"26103":7,"26104":9,"26105":10,"26106":7,"26107":7,"26108":8,"26109":7,"26110":8,"26111":6,"26112":9,"26113":9,"26114":7,"26115":7,"26116":8,"26117":10,"26118":9,"26119":8,"26120":8,"26121":9,"26122":9,"26123":5,"26124":5,"26125":8,"26126":4,"26127":8,"26128":7,"26129":5,"26130":4,"26131":3,"26132":7,"26133":6,"26134":9,"26135":7,"26136":9,"26137":10,"26138":8,"26139":8,"26140":7,"26141":3,"26142":9,"26143":2,"26144":2,"26145":6,"26146":5,"26147":9,"26148":2,"26149":7,"26150":3,"26151":3,"26152":8,"26153":8,"26154":9,"26155":7,"26156":5,"26157":7,"26158":2,"26159":4,"26160":8,"26161":7,"26162":9,"26163":9,"26164":10,"26165":9,"26166":9,"26167":2,"26168":8,"26169":2,"26170":1,"26171":2,"26172":5,"26173":7,"26174":1,"26175":9,"26176":8,"26177":9,"26178":2,"26179":4,"26180":6,"26181":7,"26182":2,"26183":5,"26184":4,"26185":5,"26186":7,"26187":8,"26188":9,"26189":7,"26190":9,"26191":8,"26192":8,"26193":7,"26194":2,"26195":8,"26196":1,"26197":7,"26198":7,"26199":8,"26200":8,"26201":1,"26202":8,"26203":7,"26204":6,"26205":9,"26206":6,"26207":5,"26208":2,"26209":2,"26210":2,"26211":7,"26212":4,"26213":6,"26214":2,"26215":1,"26216":7,"26217":1,"26218":8,"26219":2,"26220":7,"26221":4,"26222":2,"26223":7,"26224":1,"26225":3,"26226":7,"26227":8,"26228":6,"26229":8,"26230":10,"26231":9,"26232":9,"26233":7,"26234":6,"26235":7,"26236":8,"26237":5,"26238":8,"26239":9,"26240":5,"26241":10,"26242":9,"26243":8,"26244":8,"26245":9,"26246":9,"26247":7,"26248":2,"26249":8,"26250":10,"26251":2,"26252":7,"26253":8,"26254":9,"26255":2,"26256":8,"26257":7,"26258":5,"26259":2,"26260":9,"26261":1,"26262":8,"26263":2,"26264":3,"26265":8,"26266":7,"26267":8,"26268":9,"26269":7,"26270":7,"26271":4,"26272":2,"26273":8,"26274":8,"26275":2,"26276":6,"26277":7,"26278":9,"26279":10,"26280":5,"26281":9,"26282":8,"26283":8,"26284":8,"26285":7,"26286":9,"26287":9,"26288":9,"26289":7,"26290":7,"26291":10,"26292":7,"26293":1,"26294":9,"26295":10,"26296":7,"26297":2,"26298":9,"26299":2,"26300":8,"26301":8,"26302":7,"26303":8,"26304":9,"26305":1,"26306":4,"26307":1,"26308":2,"26309":3,"26310":9,"26311":6,"26312":8,"26313":4,"26314":9,"26315":2,"26316":7,"26317":8,"26318":7,"26319":8,"26320":8,"26321":9,"26322":1,"26323":2,"26324":9,"26325":6,"26326":10,"26327":7,"26328":5,"26329":5,"26330":7,"26331":6,"26332":3,"26333":5,"26334":5,"26335":5,"26336":7,"26337":7,"26338":8,"26339":2,"26340":8,"26341":5,"26342":4,"26343":7,"26344":3,"26345":4,"26346":7,"26347":8,"26348":3,"26349":8,"26350":8,"26351":8,"26352":6,"26353":7,"26354":9,"26355":2,"26356":3,"26357":4,"26358":8,"26359":3,"26360":5,"26361":7,"26362":4,"26363":10,"26364":2,"26365":7,"26366":7,"26367":8,"26368":8,"26369":6,"26370":7,"26371":7,"26372":9,"26373":10,"26374":2,"26375":7,"26376":9,"26377":9,"26378":2,"26379":8,"26380":5,"26381":7,"26382":2,"26383":7,"26384":1,"26385":7,"26386":3,"26387":5,"26388":7,"26389":8,"26390":7,"26391":3,"26392":3,"26393":3,"26394":8,"26395":7,"26396":6,"26397":10,"26398":4,"26399":7,"26400":7,"26401":10,"26402":10,"26403":5,"26404":2,"26405":3,"26406":7,"26407":4,"26408":9,"26409":7,"26410":8,"26411":7,"26412":1,"26413":3,"26414":8,"26415":9,"26416":8,"26417":9,"26418":5,"26419":6,"26420":1,"26421":9,"26422":7,"26423":7,"26424":8,"26425":5,"26426":4,"26427":8,"26428":7,"26429":5,"26430":8,"26431":2,"26432":8,"26433":2,"26434":8,"26435":7,"26436":2,"26437":7,"26438":3,"26439":9,"26440":8,"26441":6,"26442":9,"26443":3,"26444":4,"26445":7,"26446":2,"26447":8,"26448":7,"26449":2,"26450":7,"26451":7,"26452":7,"26453":1,"26454":4,"26455":1,"26456":5,"26457":2,"26458":7,"26459":7,"26460":9,"26461":7,"26462":9,"26463":7,"26464":8,"26465":2,"26466":2,"26467":7,"26468":9,"26469":2,"26470":9,"26471":7,"26472":4,"26473":2,"26474":9,"26475":6,"26476":8,"26477":7,"26478":5,"26479":3,"26480":9,"26481":7,"26482":7,"26483":5,"26484":1,"26485":8,"26486":1,"26487":3,"26488":5,"26489":1,"26490":8,"26491":4,"26492":2,"26493":1,"26494":2,"26495":7,"26496":10,"26497":7,"26498":6,"26499":8,"26500":8,"26501":9,"26502":2,"26503":9,"26504":3,"26505":5,"26506":8,"26507":9,"26508":10,"26509":5,"26510":2,"26511":1,"26512":2,"26513":1,"26514":4,"26515":10,"26516":9,"26517":5,"26518":9,"26519":8,"26520":4,"26521":7,"26522":9,"26523":5,"26524":8,"26525":7,"26526":2,"26527":6,"26528":7,"26529":8,"26530":8,"26531":2,"26532":7,"26533":5,"26534":9,"26535":8,"26536":7,"26537":10,"26538":9,"26539":4,"26540":8,"26541":2,"26542":4,"26543":7,"26544":7,"26545":7,"26546":8,"26547":4,"26548":9,"26549":5,"26550":4,"26551":8,"26552":9,"26553":7,"26554":8,"26555":9,"26556":5,"26557":8,"26558":4,"26559":7,"26560":8,"26561":2,"26562":9,"26563":7,"26564":5,"26565":9,"26566":7,"26567":5,"26568":5,"26569":7,"26570":2,"26571":7,"26572":6,"26573":8,"26574":5,"26575":8,"26576":8,"26577":2,"26578":4,"26579":10,"26580":7,"26581":1,"26582":6,"26583":7,"26584":9,"26585":2,"26586":7,"26587":6,"26588":8,"26589":7,"26590":8,"26591":2,"26592":6,"26593":8,"26594":9,"26595":10,"26596":5,"26597":9,"26598":1,"26599":5,"26600":3,"26601":7,"26602":8,"26603":4,"26604":9,"26605":2,"26606":2,"26607":8,"26608":7,"26609":5,"26610":7,"26611":9,"26612":4,"26613":2,"26614":7,"26615":7,"26616":9,"26617":5,"26618":5,"26619":9,"26620":9,"26621":5,"26622":9,"26623":9,"26624":7,"26625":5,"26626":6,"26627":7,"26628":10,"26629":10,"26630":7,"26631":6,"26632":5,"26633":9,"26634":8,"26635":5,"26636":7,"26637":7,"26638":10,"26639":1,"26640":7,"26641":8,"26642":8,"26643":8,"26644":3,"26645":8,"26646":5,"26647":4,"26648":7,"26649":8,"26650":8,"26651":2,"26652":6,"26653":8,"26654":5,"26655":8,"26656":9,"26657":1,"26658":7,"26659":5,"26660":7,"26661":2,"26662":8,"26663":8,"26664":10,"26665":2,"26666":8,"26667":8,"26668":2,"26669":5,"26670":10,"26671":8,"26672":10,"26673":7,"26674":8,"26675":2,"26676":7,"26677":2,"26678":5,"26679":5,"26680":1,"26681":1,"26682":4,"26683":3,"26684":9,"26685":7,"26686":4,"26687":9,"26688":2,"26689":9,"26690":9,"26691":9,"26692":7,"26693":2,"26694":5,"26695":7,"26696":7,"26697":7,"26698":7,"26699":8,"26700":8,"26701":8,"26702":8,"26703":7,"26704":9,"26705":5,"26706":3,"26707":9,"26708":8,"26709":4,"26710":9,"26711":4,"26712":8,"26713":5,"26714":9,"26715":1,"26716":7,"26717":2,"26718":6,"26719":8,"26720":2,"26721":7,"26722":6,"26723":7,"26724":3,"26725":8,"26726":5,"26727":6,"26728":8,"26729":9,"26730":4,"26731":9,"26732":7,"26733":7,"26734":1,"26735":8,"26736":6,"26737":6,"26738":8,"26739":5,"26740":5,"26741":9,"26742":8,"26743":8,"26744":9,"26745":7,"26746":2,"26747":8,"26748":9,"26749":8,"26750":7,"26751":7,"26752":8,"26753":4,"26754":4,"26755":9,"26756":8,"26757":1,"26758":5,"26759":9,"26760":7,"26761":6,"26762":4,"26763":6,"26764":8,"26765":2,"26766":5,"26767":1,"26768":1,"26769":7,"26770":9,"26771":5,"26772":7,"26773":7,"26774":10,"26775":7,"26776":3,"26777":7,"26778":5,"26779":5,"26780":2,"26781":2,"26782":5,"26783":6,"26784":7,"26785":7,"26786":4,"26787":5,"26788":9,"26789":1,"26790":7,"26791":1,"26792":3,"26793":5,"26794":8,"26795":7,"26796":8,"26797":2,"26798":5,"26799":2,"26800":1,"26801":8,"26802":2,"26803":4,"26804":8,"26805":8,"26806":8,"26807":1,"26808":7,"26809":8,"26810":7,"26811":2,"26812":10,"26813":9,"26814":8,"26815":10,"26816":9,"26817":10,"26818":3,"26819":9,"26820":2,"26821":7,"26822":8,"26823":2,"26824":9,"26825":7,"26826":8,"26827":9,"26828":7,"26829":4,"26830":8,"26831":8,"26832":9,"26833":7,"26834":3,"26835":5,"26836":8,"26837":9,"26838":9,"26839":5,"26840":2,"26841":8,"26842":8,"26843":9,"26844":3,"26845":10,"26846":9,"26847":3,"26848":2,"26849":3,"26850":9,"26851":10,"26852":3,"26853":7,"26854":7,"26855":6,"26856":6,"26857":2,"26858":1,"26859":8,"26860":9,"26861":3,"26862":9,"26863":9,"26864":9,"26865":2,"26866":7,"26867":8,"26868":8,"26869":5,"26870":7,"26871":2,"26872":7,"26873":10,"26874":9,"26875":4,"26876":4,"26877":4,"26878":5,"26879":10,"26880":8,"26881":8,"26882":10,"26883":8,"26884":8,"26885":2,"26886":6,"26887":9,"26888":2,"26889":1,"26890":8,"26891":5,"26892":3,"26893":1,"26894":7,"26895":4,"26896":2,"26897":2,"26898":9,"26899":10,"26900":7,"26901":10,"26902":9,"26903":7,"26904":7,"26905":9,"26906":8,"26907":8,"26908":3,"26909":2,"26910":1,"26911":9,"26912":7,"26913":9,"26914":8,"26915":8,"26916":3,"26917":5,"26918":5,"26919":2,"26920":1,"26921":9,"26922":7,"26923":8,"26924":3,"26925":7,"26926":7,"26927":9,"26928":8,"26929":8,"26930":9,"26931":6,"26932":9,"26933":7,"26934":5,"26935":7,"26936":6,"26937":3,"26938":10,"26939":2,"26940":7,"26941":7,"26942":9,"26943":9,"26944":7,"26945":3,"26946":6,"26947":5,"26948":9,"26949":7,"26950":6,"26951":5,"26952":8,"26953":7,"26954":6,"26955":10,"26956":8,"26957":7,"26958":8,"26959":2,"26960":9,"26961":8,"26962":10,"26963":6,"26964":8,"26965":7,"26966":7,"26967":1,"26968":7,"26969":10,"26970":9,"26971":7,"26972":6,"26973":10,"26974":6,"26975":10,"26976":7,"26977":10,"26978":7,"26979":4,"26980":5,"26981":8,"26982":9,"26983":5,"26984":10,"26985":7,"26986":7,"26987":2,"26988":3,"26989":7,"26990":8,"26991":8,"26992":3,"26993":8,"26994":2,"26995":7,"26996":4,"26997":9,"26998":5,"26999":8,"27000":5,"27001":9,"27002":8,"27003":7,"27004":5,"27005":7,"27006":10,"27007":9,"27008":7,"27009":4,"27010":7,"27011":1,"27012":2,"27013":7,"27014":2,"27015":8,"27016":2,"27017":9,"27018":4,"27019":6,"27020":7,"27021":9,"27022":1,"27023":6,"27024":10,"27025":7,"27026":9,"27027":7,"27028":9,"27029":7,"27030":6,"27031":3,"27032":7,"27033":6,"27034":4,"27035":2,"27036":8,"27037":8,"27038":9,"27039":7,"27040":2,"27041":7,"27042":9,"27043":10,"27044":7,"27045":9,"27046":1,"27047":2,"27048":8,"27049":2,"27050":4,"27051":6,"27052":7,"27053":9,"27054":1,"27055":9,"27056":8,"27057":6,"27058":1,"27059":7,"27060":1,"27061":6,"27062":9,"27063":6,"27064":9,"27065":6,"27066":9,"27067":6,"27068":10,"27069":9,"27070":10,"27071":7,"27072":7,"27073":5,"27074":8,"27075":9,"27076":8,"27077":2,"27078":6,"27079":6,"27080":6,"27081":2,"27082":8,"27083":5,"27084":8,"27085":8,"27086":7,"27087":8,"27088":2,"27089":2,"27090":2,"27091":7,"27092":9,"27093":7,"27094":7,"27095":8,"27096":7,"27097":7,"27098":5,"27099":2,"27100":5,"27101":8,"27102":2,"27103":8,"27104":9,"27105":9,"27106":4,"27107":7,"27108":5,"27109":7,"27110":8,"27111":5,"27112":8,"27113":8,"27114":10,"27115":8,"27116":2,"27117":8,"27118":5,"27119":8,"27120":2,"27121":7,"27122":2,"27123":1,"27124":5,"27125":8,"27126":10,"27127":8,"27128":4,"27129":7,"27130":9,"27131":9,"27132":5,"27133":5,"27134":9,"27135":7,"27136":7,"27137":5,"27138":8,"27139":10,"27140":7,"27141":2,"27142":9,"27143":10,"27144":8,"27145":8,"27146":9,"27147":7,"27148":7,"27149":9,"27150":10,"27151":4,"27152":8,"27153":2,"27154":5,"27155":7,"27156":8,"27157":7,"27158":5,"27159":7,"27160":8,"27161":8,"27162":9,"27163":6,"27164":10,"27165":9,"27166":8,"27167":7,"27168":8,"27169":3,"27170":9,"27171":4,"27172":10,"27173":5,"27174":2,"27175":1,"27176":2,"27177":1,"27178":5,"27179":6,"27180":2,"27181":8,"27182":7,"27183":3,"27184":9,"27185":8,"27186":7,"27187":9,"27188":5,"27189":7,"27190":5,"27191":8,"27192":8,"27193":10,"27194":7,"27195":7,"27196":9,"27197":8,"27198":5,"27199":4,"27200":9,"27201":9,"27202":8,"27203":7,"27204":8,"27205":7,"27206":2,"27207":10,"27208":1,"27209":8,"27210":10,"27211":9,"27212":3,"27213":9,"27214":1,"27215":7,"27216":1,"27217":8,"27218":7,"27219":8,"27220":5,"27221":8,"27222":8,"27223":5,"27224":6,"27225":7,"27226":5,"27227":7,"27228":8,"27229":5,"27230":5,"27231":5,"27232":3,"27233":8,"27234":2,"27235":8,"27236":3,"27237":7,"27238":9,"27239":9,"27240":7,"27241":7,"27242":7,"27243":8,"27244":7,"27245":3,"27246":9,"27247":10,"27248":7,"27249":7,"27250":8,"27251":2,"27252":4,"27253":8,"27254":5,"27255":7,"27256":8,"27257":7,"27258":7,"27259":2,"27260":9,"27261":10,"27262":2,"27263":6,"27264":5,"27265":8,"27266":9,"27267":8,"27268":9,"27269":8,"27270":8,"27271":3,"27272":7,"27273":7,"27274":9,"27275":7,"27276":7,"27277":3,"27278":7,"27279":7,"27280":9,"27281":2,"27282":7,"27283":1,"27284":8,"27285":2,"27286":1,"27287":5,"27288":2,"27289":5,"27290":4,"27291":9,"27292":7,"27293":2,"27294":2,"27295":2,"27296":7,"27297":1,"27298":2,"27299":8,"27300":6,"27301":8,"27302":10,"27303":5,"27304":8,"27305":8,"27306":9,"27307":8,"27308":3,"27309":8,"27310":8,"27311":10,"27312":3,"27313":2,"27314":5,"27315":10,"27316":5,"27317":10,"27318":9,"27319":1,"27320":2,"27321":5,"27322":7,"27323":10,"27324":4,"27325":7,"27326":9,"27327":2,"27328":9,"27329":9,"27330":8,"27331":7,"27332":6,"27333":8,"27334":1,"27335":6,"27336":9,"27337":3,"27338":6,"27339":9,"27340":7,"27341":7,"27342":9,"27343":7,"27344":8,"27345":6,"27346":8,"27347":4,"27348":4,"27349":7,"27350":5,"27351":1,"27352":1,"27353":6,"27354":8,"27355":3,"27356":1,"27357":3,"27358":8,"27359":8,"27360":8,"27361":8,"27362":2,"27363":2,"27364":8,"27365":2,"27366":2,"27367":9,"27368":9,"27369":5,"27370":7,"27371":9,"27372":8,"27373":10,"27374":10,"27375":4,"27376":8,"27377":9,"27378":9,"27379":8,"27380":4,"27381":4,"27382":7,"27383":7,"27384":2,"27385":5,"27386":8,"27387":1,"27388":3,"27389":8,"27390":7,"27391":7,"27392":2,"27393":2,"27394":4,"27395":6,"27396":4,"27397":3,"27398":2,"27399":5,"27400":7,"27401":6,"27402":8,"27403":8,"27404":10,"27405":5,"27406":8,"27407":7,"27408":2,"27409":9,"27410":8,"27411":8,"27412":7,"27413":7,"27414":1,"27415":10,"27416":5,"27417":1,"27418":6,"27419":8,"27420":9,"27421":4,"27422":9,"27423":1,"27424":3,"27425":3,"27426":4,"27427":10,"27428":7,"27429":8,"27430":9,"27431":9,"27432":4,"27433":7,"27434":4,"27435":8,"27436":2,"27437":8,"27438":2,"27439":9,"27440":7,"27441":4,"27442":3,"27443":2,"27444":6,"27445":9,"27446":5,"27447":2,"27448":8,"27449":5,"27450":8,"27451":5,"27452":8,"27453":4,"27454":4,"27455":9,"27456":2,"27457":5,"27458":7,"27459":5,"27460":7,"27461":7,"27462":7,"27463":5,"27464":8,"27465":7,"27466":7,"27467":10,"27468":1,"27469":8,"27470":9,"27471":1,"27472":8,"27473":5,"27474":3,"27475":10,"27476":8,"27477":8,"27478":2,"27479":9,"27480":8,"27481":9,"27482":8,"27483":8,"27484":7,"27485":4,"27486":8,"27487":5,"27488":2,"27489":1,"27490":7,"27491":8,"27492":10,"27493":8,"27494":9,"27495":7,"27496":9,"27497":7,"27498":8,"27499":9,"27500":4,"27501":8,"27502":6,"27503":7,"27504":7,"27505":8,"27506":8,"27507":7,"27508":1,"27509":9,"27510":5,"27511":8,"27512":10,"27513":9,"27514":2,"27515":9,"27516":9,"27517":6,"27518":9,"27519":3,"27520":9,"27521":5,"27522":8,"27523":5,"27524":6,"27525":9,"27526":8,"27527":2,"27528":8,"27529":1,"27530":10,"27531":7,"27532":8,"27533":2,"27534":9,"27535":5,"27536":8,"27537":8,"27538":3,"27539":3,"27540":10,"27541":7,"27542":6,"27543":8,"27544":7,"27545":3,"27546":5,"27547":9,"27548":5,"27549":7,"27550":7,"27551":2,"27552":7,"27553":7,"27554":8,"27555":5,"27556":9,"27557":7,"27558":5,"27559":7,"27560":5,"27561":2,"27562":8,"27563":5,"27564":8,"27565":9,"27566":7,"27567":7,"27568":7,"27569":5,"27570":10,"27571":9,"27572":9,"27573":10,"27574":3,"27575":7,"27576":5,"27577":5,"27578":8,"27579":8,"27580":8,"27581":6,"27582":7,"27583":5,"27584":7,"27585":9,"27586":7,"27587":2,"27588":7,"27589":9,"27590":8,"27591":2,"27592":10,"27593":8,"27594":4,"27595":9,"27596":8,"27597":7,"27598":7,"27599":9,"27600":7,"27601":8,"27602":8,"27603":5,"27604":7,"27605":2,"27606":8,"27607":8,"27608":1,"27609":5,"27610":7,"27611":5,"27612":10,"27613":1,"27614":7,"27615":5,"27616":2,"27617":7,"27618":5,"27619":8,"27620":1,"27621":10,"27622":8,"27623":7,"27624":8,"27625":5,"27626":7,"27627":1,"27628":7,"27629":7,"27630":5,"27631":3,"27632":7,"27633":8,"27634":8,"27635":2,"27636":7,"27637":2,"27638":7,"27639":9,"27640":9,"27641":7,"27642":1,"27643":3,"27644":8,"27645":8,"27646":8,"27647":2,"27648":9,"27649":8,"27650":8,"27651":8,"27652":9,"27653":7,"27654":9,"27655":8,"27656":7,"27657":9,"27658":1,"27659":2,"27660":7,"27661":2,"27662":5,"27663":8,"27664":3,"27665":5,"27666":7,"27667":5,"27668":9,"27669":5,"27670":5,"27671":6,"27672":7,"27673":8,"27674":9,"27675":3,"27676":8,"27677":4,"27678":7,"27679":8,"27680":9,"27681":3,"27682":7,"27683":9,"27684":8,"27685":9,"27686":4,"27687":2,"27688":6,"27689":2,"27690":5,"27691":7,"27692":6,"27693":8,"27694":2,"27695":7,"27696":5,"27697":2,"27698":5,"27699":6,"27700":9,"27701":10,"27702":7,"27703":7,"27704":2,"27705":2,"27706":8,"27707":7,"27708":7,"27709":2,"27710":8,"27711":9,"27712":8,"27713":5,"27714":7,"27715":7,"27716":9,"27717":1,"27718":1,"27719":9,"27720":10,"27721":9,"27722":4,"27723":7,"27724":4,"27725":5,"27726":7,"27727":10,"27728":1,"27729":10,"27730":8,"27731":8,"27732":2,"27733":8,"27734":9,"27735":9,"27736":7,"27737":8,"27738":8,"27739":7,"27740":8,"27741":9,"27742":5,"27743":5,"27744":7,"27745":4,"27746":3,"27747":10,"27748":1,"27749":9,"27750":7,"27751":3,"27752":9,"27753":8,"27754":8,"27755":9,"27756":4,"27757":1,"27758":5,"27759":8,"27760":9,"27761":6,"27762":1,"27763":9,"27764":2,"27765":8,"27766":5,"27767":4,"27768":5,"27769":9,"27770":7,"27771":7,"27772":5,"27773":8,"27774":4,"27775":6,"27776":9,"27777":8,"27778":7,"27779":8,"27780":9,"27781":5,"27782":10,"27783":2,"27784":5,"27785":7,"27786":9,"27787":10,"27788":4,"27789":9,"27790":1,"27791":9,"27792":7,"27793":2,"27794":5,"27795":10,"27796":8,"27797":7,"27798":9,"27799":7,"27800":7,"27801":8,"27802":10,"27803":7,"27804":4,"27805":2,"27806":9,"27807":5,"27808":7,"27809":7,"27810":2,"27811":1,"27812":7,"27813":8,"27814":8,"27815":7,"27816":5,"27817":7,"27818":9,"27819":7,"27820":7,"27821":8,"27822":2,"27823":9,"27824":8,"27825":9,"27826":6,"27827":4,"27828":1,"27829":1,"27830":7,"27831":9,"27832":8,"27833":8,"27834":2,"27835":2,"27836":3,"27837":8,"27838":8,"27839":3,"27840":2,"27841":5,"27842":9,"27843":8,"27844":7,"27845":9,"27846":7,"27847":7,"27848":8,"27849":8,"27850":8,"27851":4,"27852":9,"27853":6,"27854":1,"27855":7,"27856":1,"27857":8,"27858":8,"27859":1,"27860":10,"27861":8,"27862":8,"27863":8,"27864":7,"27865":7,"27866":7,"27867":8,"27868":8,"27869":2,"27870":6,"27871":4,"27872":9,"27873":9,"27874":7,"27875":7,"27876":9,"27877":7,"27878":8,"27879":9,"27880":8,"27881":8,"27882":7,"27883":8,"27884":10,"27885":9,"27886":8,"27887":5,"27888":7,"27889":3,"27890":8,"27891":7,"27892":8,"27893":9,"27894":2,"27895":8,"27896":9,"27897":9,"27898":5,"27899":8,"27900":5,"27901":7,"27902":6,"27903":8,"27904":10,"27905":5,"27906":4,"27907":5,"27908":5,"27909":9,"27910":8,"27911":2,"27912":4,"27913":9,"27914":8,"27915":8,"27916":7,"27917":7,"27918":7,"27919":9,"27920":2,"27921":3,"27922":4,"27923":7,"27924":8,"27925":8,"27926":8,"27927":7,"27928":9,"27929":6,"27930":9,"27931":8,"27932":8,"27933":4,"27934":7,"27935":7,"27936":4,"27937":3,"27938":5,"27939":4,"27940":9,"27941":8,"27942":5,"27943":5,"27944":10,"27945":4,"27946":9,"27947":7,"27948":8,"27949":8,"27950":1,"27951":7,"27952":8,"27953":9,"27954":9,"27955":7,"27956":4,"27957":3,"27958":7,"27959":5,"27960":6,"27961":1,"27962":3,"27963":9,"27964":3,"27965":7,"27966":9,"27967":3,"27968":8,"27969":8,"27970":10,"27971":6,"27972":1,"27973":5,"27974":10,"27975":2,"27976":3,"27977":2,"27978":9,"27979":9,"27980":9,"27981":10,"27982":8,"27983":6,"27984":10,"27985":6,"27986":9,"27987":9,"27988":7,"27989":7,"27990":5,"27991":2,"27992":1,"27993":8,"27994":2,"27995":9,"27996":1,"27997":9,"27998":7,"27999":8,"28000":7,"28001":8,"28002":5,"28003":6,"28004":9,"28005":7,"28006":5,"28007":5,"28008":10,"28009":1,"28010":8,"28011":8,"28012":1,"28013":5,"28014":3,"28015":9,"28016":3,"28017":2,"28018":3,"28019":3,"28020":1,"28021":6,"28022":8,"28023":2,"28024":8,"28025":9,"28026":5,"28027":5,"28028":8,"28029":7,"28030":5,"28031":5,"28032":2,"28033":5,"28034":2,"28035":2,"28036":2,"28037":7,"28038":5,"28039":2,"28040":10,"28041":7,"28042":3,"28043":9,"28044":8,"28045":2,"28046":8,"28047":6,"28048":5,"28049":4,"28050":7,"28051":6,"28052":8,"28053":3,"28054":10,"28055":8,"28056":7,"28057":7,"28058":7,"28059":1,"28060":7,"28061":10,"28062":9,"28063":8,"28064":5,"28065":2,"28066":5,"28067":10,"28068":7,"28069":2,"28070":9,"28071":1,"28072":3,"28073":5,"28074":10,"28075":9,"28076":1,"28077":9,"28078":7,"28079":8,"28080":1,"28081":9,"28082":8,"28083":7,"28084":7,"28085":9,"28086":9,"28087":2,"28088":7,"28089":7,"28090":7,"28091":7,"28092":7,"28093":10,"28094":7,"28095":4,"28096":8,"28097":8,"28098":8,"28099":5,"28100":9,"28101":4,"28102":5,"28103":2,"28104":5,"28105":8,"28106":8,"28107":8,"28108":5,"28109":7,"28110":1,"28111":6,"28112":9,"28113":3,"28114":5,"28115":9,"28116":2,"28117":8,"28118":5,"28119":5,"28120":8,"28121":8,"28122":9,"28123":7,"28124":8,"28125":9,"28126":1,"28127":7,"28128":9,"28129":7,"28130":5,"28131":2,"28132":5,"28133":5,"28134":9,"28135":9,"28136":8,"28137":3,"28138":6,"28139":3,"28140":8,"28141":7,"28142":7,"28143":5,"28144":2,"28145":3,"28146":8,"28147":7,"28148":9,"28149":7,"28150":8,"28151":6,"28152":5,"28153":7,"28154":6,"28155":1,"28156":3,"28157":8,"28158":3,"28159":8,"28160":6,"28161":8,"28162":8,"28163":9,"28164":7,"28165":1,"28166":10,"28167":9,"28168":5,"28169":8,"28170":7,"28171":7,"28172":7,"28173":3,"28174":2,"28175":7,"28176":7,"28177":8,"28178":9,"28179":10,"28180":3,"28181":6,"28182":2,"28183":6,"28184":6,"28185":7,"28186":7,"28187":5,"28188":10,"28189":8,"28190":7,"28191":8,"28192":6,"28193":6,"28194":9,"28195":7,"28196":9,"28197":10,"28198":1,"28199":7,"28200":6,"28201":8,"28202":8,"28203":9,"28204":9,"28205":3,"28206":7,"28207":7,"28208":2,"28209":10,"28210":1,"28211":7,"28212":9,"28213":7,"28214":7,"28215":3,"28216":1,"28217":8,"28218":3,"28219":8,"28220":9,"28221":10,"28222":5,"28223":8,"28224":3,"28225":7,"28226":7,"28227":8,"28228":7,"28229":1,"28230":8,"28231":7,"28232":7,"28233":8,"28234":9,"28235":7,"28236":2,"28237":9,"28238":8,"28239":8,"28240":2,"28241":4,"28242":8,"28243":10,"28244":8,"28245":7,"28246":1,"28247":9,"28248":9,"28249":10,"28250":9,"28251":3,"28252":9,"28253":7,"28254":1,"28255":1,"28256":8,"28257":7,"28258":7,"28259":8,"28260":9,"28261":5,"28262":5,"28263":4,"28264":7,"28265":9,"28266":5,"28267":5,"28268":5,"28269":7,"28270":8,"28271":1,"28272":2,"28273":8,"28274":7,"28275":8,"28276":10,"28277":5,"28278":1,"28279":2,"28280":7,"28281":9,"28282":5,"28283":7,"28284":9,"28285":7,"28286":8,"28287":9,"28288":8,"28289":9,"28290":5,"28291":7,"28292":4,"28293":6,"28294":10,"28295":8,"28296":10,"28297":1,"28298":7,"28299":9,"28300":9,"28301":9,"28302":2,"28303":7,"28304":4,"28305":7,"28306":7,"28307":4,"28308":1,"28309":2,"28310":2,"28311":2,"28312":8,"28313":1,"28314":3,"28315":8,"28316":9,"28317":6,"28318":10,"28319":4,"28320":6,"28321":9,"28322":9,"28323":8,"28324":7,"28325":9,"28326":2,"28327":8,"28328":8,"28329":6,"28330":2,"28331":2,"28332":2,"28333":8,"28334":2,"28335":3,"28336":8,"28337":6,"28338":5,"28339":10,"28340":8,"28341":7,"28342":9,"28343":7,"28344":5,"28345":8,"28346":7,"28347":3,"28348":7,"28349":4,"28350":2,"28351":7,"28352":8,"28353":7,"28354":8,"28355":9,"28356":6,"28357":2,"28358":6,"28359":7,"28360":7,"28361":7,"28362":7,"28363":7,"28364":7,"28365":9,"28366":6,"28367":7,"28368":7,"28369":9,"28370":8,"28371":1,"28372":6,"28373":9,"28374":1,"28375":3,"28376":8,"28377":8,"28378":5,"28379":4,"28380":2,"28381":1,"28382":8,"28383":7,"28384":8,"28385":4,"28386":8,"28387":9,"28388":8,"28389":7,"28390":8,"28391":8,"28392":8,"28393":3,"28394":8,"28395":8,"28396":1,"28397":5,"28398":8,"28399":10,"28400":5,"28401":9,"28402":8,"28403":8,"28404":4,"28405":9,"28406":4,"28407":4,"28408":4,"28409":7,"28410":8,"28411":4,"28412":8,"28413":3,"28414":7,"28415":2,"28416":7,"28417":8,"28418":9,"28419":4,"28420":9,"28421":7,"28422":3,"28423":6,"28424":2,"28425":9,"28426":7,"28427":8,"28428":9,"28429":9,"28430":7,"28431":8,"28432":6,"28433":9,"28434":2,"28435":1,"28436":6,"28437":8,"28438":8,"28439":9,"28440":10,"28441":1,"28442":7,"28443":9,"28444":10,"28445":4,"28446":9,"28447":3,"28448":6,"28449":7,"28450":8,"28451":8,"28452":8,"28453":9,"28454":8,"28455":9,"28456":7,"28457":10,"28458":5,"28459":3,"28460":8,"28461":1,"28462":5,"28463":2,"28464":8,"28465":2,"28466":8,"28467":8,"28468":10,"28469":7,"28470":7,"28471":5,"28472":7,"28473":7,"28474":9,"28475":7,"28476":4,"28477":5,"28478":7,"28479":5,"28480":10,"28481":8,"28482":1,"28483":5,"28484":1,"28485":10,"28486":4,"28487":2,"28488":2,"28489":9,"28490":9,"28491":7,"28492":9,"28493":9,"28494":10,"28495":8,"28496":5,"28497":8,"28498":2,"28499":8,"28500":8,"28501":4,"28502":7,"28503":2,"28504":8,"28505":7,"28506":6,"28507":7,"28508":2,"28509":10,"28510":7,"28511":9,"28512":8,"28513":10,"28514":7,"28515":9,"28516":1,"28517":8,"28518":8,"28519":8,"28520":8,"28521":9,"28522":8,"28523":7,"28524":9,"28525":5,"28526":2,"28527":8,"28528":1,"28529":2,"28530":3,"28531":1,"28532":5,"28533":5,"28534":3,"28535":4,"28536":10,"28537":8,"28538":5,"28539":8,"28540":9,"28541":3,"28542":3,"28543":8,"28544":2,"28545":3,"28546":5,"28547":7,"28548":2,"28549":10,"28550":1,"28551":9,"28552":2,"28553":4,"28554":7,"28555":7,"28556":7,"28557":7,"28558":8,"28559":9,"28560":2,"28561":7,"28562":8,"28563":8,"28564":9,"28565":9,"28566":9,"28567":5,"28568":10,"28569":10,"28570":9,"28571":8,"28572":2,"28573":2,"28574":8,"28575":9,"28576":9,"28577":5,"28578":10,"28579":8,"28580":9,"28581":5,"28582":7,"28583":8,"28584":8,"28585":2,"28586":9,"28587":8,"28588":7,"28589":2,"28590":5,"28591":4,"28592":6,"28593":2,"28594":7,"28595":7,"28596":6,"28597":7,"28598":6,"28599":7,"28600":8,"28601":8,"28602":9,"28603":7,"28604":7,"28605":9,"28606":2,"28607":8,"28608":8,"28609":5,"28610":9,"28611":8,"28612":5,"28613":7,"28614":7,"28615":8,"28616":10,"28617":8,"28618":10,"28619":8,"28620":3,"28621":9,"28622":6,"28623":5,"28624":4,"28625":9,"28626":9,"28627":9,"28628":8,"28629":7,"28630":9,"28631":5,"28632":3,"28633":5,"28634":7,"28635":8,"28636":2,"28637":7,"28638":9,"28639":2,"28640":8,"28641":6,"28642":8,"28643":2,"28644":4,"28645":7,"28646":9,"28647":7,"28648":3,"28649":7,"28650":4,"28651":7,"28652":7,"28653":7,"28654":7,"28655":9,"28656":9,"28657":9,"28658":10,"28659":7,"28660":7,"28661":5,"28662":3,"28663":8,"28664":1,"28665":8,"28666":8,"28667":9,"28668":8,"28669":2,"28670":9,"28671":2,"28672":3,"28673":3,"28674":7,"28675":7,"28676":8,"28677":10,"28678":2,"28679":7,"28680":7,"28681":9,"28682":9,"28683":7,"28684":8,"28685":7,"28686":5,"28687":9,"28688":7,"28689":7,"28690":2,"28691":2,"28692":4,"28693":5,"28694":9,"28695":3,"28696":3,"28697":7,"28698":8,"28699":9,"28700":2,"28701":8,"28702":2,"28703":2,"28704":10,"28705":5,"28706":9,"28707":3,"28708":2,"28709":3,"28710":4,"28711":7,"28712":5,"28713":8,"28714":8,"28715":8,"28716":5,"28717":2,"28718":2,"28719":5,"28720":6,"28721":2,"28722":9,"28723":7,"28724":7,"28725":3,"28726":8,"28727":7,"28728":5,"28729":8,"28730":7,"28731":1,"28732":3,"28733":5,"28734":2,"28735":2,"28736":10,"28737":7,"28738":7,"28739":8,"28740":7,"28741":7,"28742":7,"28743":1,"28744":8,"28745":8,"28746":8,"28747":7,"28748":8,"28749":8,"28750":2,"28751":4,"28752":7,"28753":1,"28754":9,"28755":5,"28756":1,"28757":7,"28758":8,"28759":7,"28760":3,"28761":2,"28762":5,"28763":3,"28764":5,"28765":6,"28766":3,"28767":4,"28768":9,"28769":9,"28770":8,"28771":8,"28772":7,"28773":5,"28774":7,"28775":8,"28776":2,"28777":9,"28778":9,"28779":10,"28780":7,"28781":9,"28782":6,"28783":8,"28784":3,"28785":2,"28786":2,"28787":5,"28788":9,"28789":7,"28790":10,"28791":8,"28792":7,"28793":9,"28794":5,"28795":5,"28796":9,"28797":4,"28798":8,"28799":10,"28800":10,"28801":7,"28802":6,"28803":1,"28804":1,"28805":7,"28806":7,"28807":2,"28808":5,"28809":3,"28810":6,"28811":10,"28812":6,"28813":9,"28814":3,"28815":6,"28816":9,"28817":8,"28818":8,"28819":5,"28820":5,"28821":3,"28822":5,"28823":7,"28824":3,"28825":2,"28826":8,"28827":9,"28828":4,"28829":7,"28830":6,"28831":8,"28832":10,"28833":7,"28834":6,"28835":2,"28836":2,"28837":2,"28838":8,"28839":2,"28840":1,"28841":1,"28842":1,"28843":7,"28844":5,"28845":8,"28846":7,"28847":10,"28848":7,"28849":8,"28850":10,"28851":5,"28852":7,"28853":8,"28854":8,"28855":2,"28856":8,"28857":8,"28858":8,"28859":9,"28860":7,"28861":6,"28862":10,"28863":7,"28864":8,"28865":4,"28866":9,"28867":9,"28868":2,"28869":3,"28870":2,"28871":1,"28872":9,"28873":6,"28874":5,"28875":2,"28876":9,"28877":8,"28878":6,"28879":6,"28880":8,"28881":5,"28882":2,"28883":5,"28884":1,"28885":8,"28886":8,"28887":8,"28888":7,"28889":8,"28890":8,"28891":2,"28892":7,"28893":10,"28894":6,"28895":8,"28896":7,"28897":8,"28898":8,"28899":7,"28900":1,"28901":9,"28902":8,"28903":10,"28904":5,"28905":9,"28906":8,"28907":8,"28908":8,"28909":6,"28910":8,"28911":5,"28912":7,"28913":9,"28914":8,"28915":8,"28916":2,"28917":10,"28918":6,"28919":9,"28920":5,"28921":9,"28922":4,"28923":7,"28924":8,"28925":5,"28926":9,"28927":7,"28928":8,"28929":7,"28930":9,"28931":5,"28932":8,"28933":2,"28934":2,"28935":9,"28936":9,"28937":8,"28938":6,"28939":5,"28940":7,"28941":5,"28942":8,"28943":8,"28944":5,"28945":2,"28946":7,"28947":10,"28948":7,"28949":4,"28950":10,"28951":1,"28952":3,"28953":4,"28954":7,"28955":8,"28956":8,"28957":9,"28958":7,"28959":8,"28960":5,"28961":8,"28962":9,"28963":6,"28964":8,"28965":5,"28966":8,"28967":9,"28968":8,"28969":8,"28970":9,"28971":4,"28972":8,"28973":5,"28974":7,"28975":7,"28976":8,"28977":7,"28978":3,"28979":4,"28980":7,"28981":7,"28982":8,"28983":8,"28984":2,"28985":9,"28986":7,"28987":1,"28988":7,"28989":7,"28990":8,"28991":6,"28992":5,"28993":6,"28994":1,"28995":2,"28996":7,"28997":7,"28998":10,"28999":10,"29000":9,"29001":7,"29002":2,"29003":2,"29004":1,"29005":7,"29006":7,"29007":2,"29008":7,"29009":6,"29010":8,"29011":8,"29012":7,"29013":1,"29014":7,"29015":2,"29016":2,"29017":7,"29018":8,"29019":9,"29020":4,"29021":8,"29022":9,"29023":9,"29024":6,"29025":2,"29026":1,"29027":7,"29028":8,"29029":7,"29030":8,"29031":10,"29032":7,"29033":9,"29034":8,"29035":7,"29036":2,"29037":1,"29038":7,"29039":8,"29040":7,"29041":7,"29042":8,"29043":7,"29044":3,"29045":9,"29046":7,"29047":5,"29048":7,"29049":7,"29050":2,"29051":7,"29052":7,"29053":10,"29054":8,"29055":8,"29056":7,"29057":3,"29058":5,"29059":9,"29060":7,"29061":5,"29062":7,"29063":7,"29064":2,"29065":7,"29066":7,"29067":9,"29068":7,"29069":10,"29070":7,"29071":2,"29072":8,"29073":8,"29074":1,"29075":9,"29076":7,"29077":9,"29078":7,"29079":7,"29080":8,"29081":7,"29082":7,"29083":8,"29084":2,"29085":3,"29086":5,"29087":5,"29088":8,"29089":7,"29090":2,"29091":8,"29092":4,"29093":2,"29094":8,"29095":5,"29096":8,"29097":5,"29098":7,"29099":5,"29100":7,"29101":8,"29102":8,"29103":9,"29104":7,"29105":2,"29106":5,"29107":2,"29108":5,"29109":5,"29110":5,"29111":8,"29112":2,"29113":2,"29114":8,"29115":8,"29116":2,"29117":4,"29118":2,"29119":7,"29120":8,"29121":5,"29122":10,"29123":8,"29124":8,"29125":7,"29126":6,"29127":8,"29128":9,"29129":7,"29130":9,"29131":7,"29132":10,"29133":5,"29134":8,"29135":10,"29136":9,"29137":8,"29138":7,"29139":9,"29140":3,"29141":9,"29142":2,"29143":2,"29144":2,"29145":1,"29146":10,"29147":9,"29148":3,"29149":2,"29150":2,"29151":7,"29152":8,"29153":7,"29154":8,"29155":5,"29156":5,"29157":4,"29158":6,"29159":9,"29160":7,"29161":2,"29162":8,"29163":6,"29164":2,"29165":5,"29166":2,"29167":2,"29168":9,"29169":6,"29170":7,"29171":1,"29172":8,"29173":4,"29174":5,"29175":3,"29176":2,"29177":8,"29178":1,"29179":3,"29180":8,"29181":8,"29182":9,"29183":8,"29184":7,"29185":7,"29186":5,"29187":1,"29188":9,"29189":7,"29190":3,"29191":7,"29192":8,"29193":6,"29194":6,"29195":7,"29196":8,"29197":8,"29198":5,"29199":9,"29200":9,"29201":8,"29202":7,"29203":7,"29204":2,"29205":8,"29206":6,"29207":7,"29208":4,"29209":7,"29210":3,"29211":10,"29212":3,"29213":9,"29214":7,"29215":6,"29216":4,"29217":1,"29218":7,"29219":8,"29220":5,"29221":7,"29222":8,"29223":8,"29224":8,"29225":3,"29226":3,"29227":8,"29228":5,"29229":2,"29230":3,"29231":9,"29232":5,"29233":7,"29234":8,"29235":7,"29236":6,"29237":8,"29238":5,"29239":8,"29240":1,"29241":8,"29242":3,"29243":9,"29244":9,"29245":1,"29246":8,"29247":4,"29248":7,"29249":1,"29250":6,"29251":8,"29252":7,"29253":4,"29254":7,"29255":9,"29256":8,"29257":7,"29258":6,"29259":8,"29260":10,"29261":8,"29262":9,"29263":7,"29264":7,"29265":8,"29266":1,"29267":6,"29268":3,"29269":6,"29270":7,"29271":7,"29272":8,"29273":7,"29274":4,"29275":8,"29276":8,"29277":2,"29278":4,"29279":7,"29280":8,"29281":7,"29282":4,"29283":2,"29284":9,"29285":5,"29286":7,"29287":5,"29288":9,"29289":4,"29290":3,"29291":2,"29292":9,"29293":5,"29294":2,"29295":8,"29296":8,"29297":5,"29298":7,"29299":6,"29300":5,"29301":9,"29302":6,"29303":7,"29304":3,"29305":6,"29306":9,"29307":7,"29308":10,"29309":3,"29310":5,"29311":2,"29312":7,"29313":7,"29314":3,"29315":4,"29316":7,"29317":3,"29318":8,"29319":1,"29320":7,"29321":5,"29322":2,"29323":8,"29324":7,"29325":8,"29326":8,"29327":7,"29328":9,"29329":9,"29330":9,"29331":3,"29332":8,"29333":9,"29334":5,"29335":7,"29336":2,"29337":9,"29338":2,"29339":10,"29340":7,"29341":7,"29342":8,"29343":2,"29344":9,"29345":8,"29346":10,"29347":5,"29348":8,"29349":9,"29350":1,"29351":3,"29352":8,"29353":1,"29354":7,"29355":1,"29356":5,"29357":7,"29358":3,"29359":2,"29360":8,"29361":5,"29362":9,"29363":8,"29364":9,"29365":8,"29366":7,"29367":9,"29368":1,"29369":7,"29370":7,"29371":9,"29372":1,"29373":1,"29374":8,"29375":6,"29376":5,"29377":4,"29378":4,"29379":8,"29380":10,"29381":9,"29382":8,"29383":1,"29384":9,"29385":8,"29386":8,"29387":5,"29388":7,"29389":2,"29390":2,"29391":8,"29392":2,"29393":8,"29394":7,"29395":3,"29396":7,"29397":7,"29398":4,"29399":7,"29400":5,"29401":1,"29402":8,"29403":7,"29404":5,"29405":5,"29406":3,"29407":9,"29408":2,"29409":9,"29410":5,"29411":8,"29412":7,"29413":5,"29414":10,"29415":5,"29416":5,"29417":7,"29418":7,"29419":8,"29420":1,"29421":7,"29422":7,"29423":2,"29424":4,"29425":10,"29426":9,"29427":7,"29428":9,"29429":2,"29430":8,"29431":7,"29432":9,"29433":8,"29434":9,"29435":8,"29436":9,"29437":6,"29438":9,"29439":5,"29440":7,"29441":9,"29442":7,"29443":7,"29444":9,"29445":2,"29446":4,"29447":5,"29448":3,"29449":7,"29450":8,"29451":9,"29452":7,"29453":9,"29454":9,"29455":6,"29456":8,"29457":9,"29458":7,"29459":4,"29460":9,"29461":3,"29462":7,"29463":8,"29464":2,"29465":5,"29466":6,"29467":2,"29468":8,"29469":5,"29470":6,"29471":7,"29472":4,"29473":2,"29474":6,"29475":6,"29476":9,"29477":9,"29478":7,"29479":5,"29480":8,"29481":10,"29482":6,"29483":9,"29484":8,"29485":8,"29486":10,"29487":9,"29488":1,"29489":2,"29490":9,"29491":7,"29492":7,"29493":4,"29494":5,"29495":9,"29496":8,"29497":10,"29498":4,"29499":6,"29500":7,"29501":4,"29502":8,"29503":9,"29504":9,"29505":9,"29506":9,"29507":1,"29508":3,"29509":7,"29510":2,"29511":2,"29512":6,"29513":5,"29514":8,"29515":1,"29516":7,"29517":8,"29518":8,"29519":8,"29520":8,"29521":7,"29522":7,"29523":9,"29524":7,"29525":8,"29526":6,"29527":5,"29528":2,"29529":2,"29530":7,"29531":8,"29532":7,"29533":8,"29534":8,"29535":10,"29536":7,"29537":7,"29538":7,"29539":9,"29540":2,"29541":1,"29542":10,"29543":7,"29544":6,"29545":10,"29546":5,"29547":5,"29548":1,"29549":2,"29550":8,"29551":9,"29552":5,"29553":9,"29554":9,"29555":3,"29556":1,"29557":4,"29558":9,"29559":8,"29560":8,"29561":2,"29562":10,"29563":6,"29564":9,"29565":4,"29566":2,"29567":9,"29568":8,"29569":8,"29570":8,"29571":7,"29572":7,"29573":3,"29574":5,"29575":3,"29576":7,"29577":8,"29578":2,"29579":5,"29580":5,"29581":4,"29582":8,"29583":9,"29584":7,"29585":10,"29586":5,"29587":7,"29588":9,"29589":8,"29590":7,"29591":7,"29592":5,"29593":1,"29594":7,"29595":9,"29596":5,"29597":9,"29598":7,"29599":6,"29600":6,"29601":3,"29602":1,"29603":2,"29604":8,"29605":7,"29606":10,"29607":2,"29608":4,"29609":7,"29610":7,"29611":7,"29612":4,"29613":7,"29614":9,"29615":3,"29616":3,"29617":9,"29618":10,"29619":6,"29620":1,"29621":10,"29622":7,"29623":2,"29624":1,"29625":6,"29626":8,"29627":7,"29628":9,"29629":7,"29630":4,"29631":7,"29632":2,"29633":5,"29634":8,"29635":8,"29636":8,"29637":7,"29638":7,"29639":4,"29640":7,"29641":7,"29642":4,"29643":7,"29644":5,"29645":8,"29646":2,"29647":8,"29648":8,"29649":9,"29650":7,"29651":1,"29652":5,"29653":10,"29654":3,"29655":2,"29656":1,"29657":2,"29658":7,"29659":7,"29660":10,"29661":7,"29662":8,"29663":6,"29664":10,"29665":5,"29666":6,"29667":1,"29668":8,"29669":9,"29670":7,"29671":4,"29672":3,"29673":7,"29674":10,"29675":9,"29676":7,"29677":3,"29678":6,"29679":9,"29680":2,"29681":7,"29682":4,"29683":8,"29684":10,"29685":8,"29686":6,"29687":9,"29688":8,"29689":7,"29690":2,"29691":10,"29692":5,"29693":7,"29694":7,"29695":6,"29696":1,"29697":7,"29698":8,"29699":7,"29700":5,"29701":5,"29702":9,"29703":9,"29704":10,"29705":8,"29706":1,"29707":8,"29708":8,"29709":8,"29710":5,"29711":7,"29712":1,"29713":5,"29714":7,"29715":1,"29716":8,"29717":9,"29718":2,"29719":5,"29720":2,"29721":6,"29722":5,"29723":9,"29724":8,"29725":8,"29726":10,"29727":8,"29728":9,"29729":7,"29730":9,"29731":2,"29732":8,"29733":1,"29734":2,"29735":7,"29736":8,"29737":4,"29738":9,"29739":3,"29740":9,"29741":8,"29742":7,"29743":9,"29744":8,"29745":9,"29746":7,"29747":7,"29748":9,"29749":2,"29750":2,"29751":8,"29752":5,"29753":7,"29754":8,"29755":3,"29756":6,"29757":8,"29758":3,"29759":9,"29760":6,"29761":7,"29762":9,"29763":8,"29764":5,"29765":9,"29766":7,"29767":2,"29768":3,"29769":9,"29770":6,"29771":8,"29772":2,"29773":8,"29774":8,"29775":9,"29776":7,"29777":5,"29778":6,"29779":8,"29780":9,"29781":7,"29782":7,"29783":7,"29784":7,"29785":4,"29786":1,"29787":10,"29788":4,"29789":2,"29790":6,"29791":2,"29792":1,"29793":4,"29794":8,"29795":2,"29796":8,"29797":6,"29798":7,"29799":9,"29800":9,"29801":6,"29802":9,"29803":8,"29804":9,"29805":7,"29806":5,"29807":3,"29808":2,"29809":10,"29810":8,"29811":7,"29812":2,"29813":1,"29814":2,"29815":8,"29816":9,"29817":9,"29818":7,"29819":7,"29820":4,"29821":7,"29822":10,"29823":2,"29824":8,"29825":8,"29826":4,"29827":8,"29828":6,"29829":7,"29830":8,"29831":9,"29832":8,"29833":7,"29834":8,"29835":3,"29836":8,"29837":2,"29838":6,"29839":2,"29840":7,"29841":2,"29842":7,"29843":9,"29844":6,"29845":3,"29846":2,"29847":9,"29848":1,"29849":2,"29850":5,"29851":2,"29852":5,"29853":1,"29854":9,"29855":4,"29856":8,"29857":9,"29858":5,"29859":8,"29860":8,"29861":9,"29862":6,"29863":7,"29864":8,"29865":9,"29866":8,"29867":5,"29868":7,"29869":7,"29870":9,"29871":8,"29872":10,"29873":2,"29874":5,"29875":8,"29876":5,"29877":7,"29878":1,"29879":9,"29880":8,"29881":9,"29882":8,"29883":8,"29884":2,"29885":9,"29886":9,"29887":7,"29888":3,"29889":6,"29890":2,"29891":7,"29892":8,"29893":9,"29894":8,"29895":2,"29896":2,"29897":9,"29898":5,"29899":6,"29900":7,"29901":1,"29902":5,"29903":8,"29904":9,"29905":7,"29906":5,"29907":9,"29908":8,"29909":9,"29910":1,"29911":7,"29912":3,"29913":2,"29914":8,"29915":5,"29916":10,"29917":8,"29918":8,"29919":5,"29920":1,"29921":1,"29922":2,"29923":7,"29924":6,"29925":5,"29926":6,"29927":9,"29928":8,"29929":6,"29930":7,"29931":2,"29932":10,"29933":9,"29934":4,"29935":7,"29936":5,"29937":6,"29938":10,"29939":5,"29940":8,"29941":6,"29942":9,"29943":8,"29944":1,"29945":8,"29946":7,"29947":7,"29948":1,"29949":3,"29950":6,"29951":5,"29952":5,"29953":10,"29954":2,"29955":5,"29956":6,"29957":5,"29958":8,"29959":9,"29960":8,"29961":8,"29962":9,"29963":6,"29964":5,"29965":7,"29966":9,"29967":2,"29968":1,"29969":1,"29970":8,"29971":2,"29972":5,"29973":2,"29974":6,"29975":4,"29976":1,"29977":9,"29978":7,"29979":1,"29980":8,"29981":7,"29982":7,"29983":9,"29984":7,"29985":8,"29986":5,"29987":10,"29988":7,"29989":8,"29990":9,"29991":8,"29992":7,"29993":10,"29994":3,"29995":4,"29996":8,"29997":7,"29998":6,"29999":9,"30000":10,"30001":7,"30002":7,"30003":2,"30004":7,"30005":7,"30006":7,"30007":7,"30008":7,"30009":9,"30010":2,"30011":5,"30012":7,"30013":1,"30014":9,"30015":5,"30016":9,"30017":4,"30018":7,"30019":5,"30020":5,"30021":5,"30022":6,"30023":3,"30024":7,"30025":2,"30026":8,"30027":7,"30028":8,"30029":7,"30030":7,"30031":2,"30032":9,"30033":7,"30034":8,"30035":9,"30036":6,"30037":9,"30038":4,"30039":1,"30040":8,"30041":1,"30042":5,"30043":10,"30044":7,"30045":5,"30046":7,"30047":3,"30048":7,"30049":8,"30050":7,"30051":9,"30052":6,"30053":7,"30054":9,"30055":8,"30056":6,"30057":7,"30058":7,"30059":2,"30060":7,"30061":9,"30062":1,"30063":2,"30064":8,"30065":7,"30066":2,"30067":7,"30068":7,"30069":9,"30070":8,"30071":8,"30072":1,"30073":7,"30074":7,"30075":5,"30076":5,"30077":3,"30078":7,"30079":9,"30080":5,"30081":7,"30082":8,"30083":5,"30084":1,"30085":7,"30086":6,"30087":3,"30088":7,"30089":9,"30090":7,"30091":8,"30092":7,"30093":10,"30094":8,"30095":8,"30096":9,"30097":1,"30098":9,"30099":5,"30100":4,"30101":9,"30102":7,"30103":6,"30104":8,"30105":9,"30106":5,"30107":7,"30108":6,"30109":10,"30110":5,"30111":8,"30112":1,"30113":9,"30114":3,"30115":6,"30116":7,"30117":9,"30118":8,"30119":3,"30120":7,"30121":7,"30122":5,"30123":6,"30124":7,"30125":8,"30126":1,"30127":8,"30128":7,"30129":1,"30130":8,"30131":7,"30132":3,"30133":6,"30134":3,"30135":8,"30136":9,"30137":10,"30138":1,"30139":4,"30140":7,"30141":8,"30142":2,"30143":5,"30144":5,"30145":8,"30146":3,"30147":8,"30148":7,"30149":7,"30150":5,"30151":9,"30152":7,"30153":9,"30154":9,"30155":5,"30156":8,"30157":7,"30158":5,"30159":9,"30160":1,"30161":8,"30162":6,"30163":8,"30164":5,"30165":8,"30166":9,"30167":4,"30168":3,"30169":9,"30170":9,"30171":7,"30172":7,"30173":7,"30174":1,"30175":3,"30176":2,"30177":8,"30178":9,"30179":7,"30180":5,"30181":5,"30182":2,"30183":7,"30184":5,"30185":2,"30186":3,"30187":2,"30188":8,"30189":7,"30190":6,"30191":5,"30192":7,"30193":7,"30194":9,"30195":9,"30196":4,"30197":8,"30198":2,"30199":7,"30200":9,"30201":8,"30202":4,"30203":2,"30204":8,"30205":8,"30206":9,"30207":2,"30208":8,"30209":10,"30210":5,"30211":7,"30212":5,"30213":2,"30214":2,"30215":3,"30216":3,"30217":10,"30218":9,"30219":1,"30220":4,"30221":5,"30222":8,"30223":7,"30224":9,"30225":8,"30226":5,"30227":2,"30228":7,"30229":7,"30230":9,"30231":7,"30232":8,"30233":7,"30234":9,"30235":7,"30236":9,"30237":7,"30238":8,"30239":8,"30240":7,"30241":9,"30242":9,"30243":5,"30244":3,"30245":7,"30246":7,"30247":7,"30248":5,"30249":1,"30250":8,"30251":7,"30252":7,"30253":5,"30254":2,"30255":2,"30256":1,"30257":1,"30258":5,"30259":2,"30260":8,"30261":5,"30262":8,"30263":9,"30264":4,"30265":1,"30266":5,"30267":8,"30268":2,"30269":1,"30270":9,"30271":9,"30272":9,"30273":8,"30274":6,"30275":9,"30276":8,"30277":9,"30278":7,"30279":7,"30280":5,"30281":4,"30282":6,"30283":2,"30284":7,"30285":9,"30286":8,"30287":7,"30288":8,"30289":3,"30290":8,"30291":8,"30292":8,"30293":9,"30294":1,"30295":5,"30296":5,"30297":10,"30298":5,"30299":6,"30300":8,"30301":10,"30302":5,"30303":2,"30304":8,"30305":2,"30306":7,"30307":6,"30308":7,"30309":3,"30310":10,"30311":7,"30312":2,"30313":9,"30314":9,"30315":3,"30316":9,"30317":8,"30318":5,"30319":7,"30320":8,"30321":10,"30322":9,"30323":7,"30324":9,"30325":7,"30326":7,"30327":10,"30328":2,"30329":9,"30330":1,"30331":9,"30332":5,"30333":2,"30334":6,"30335":8,"30336":7,"30337":7,"30338":4,"30339":9,"30340":7,"30341":5,"30342":8,"30343":5,"30344":7,"30345":5,"30346":9,"30347":5,"30348":9,"30349":7,"30350":7,"30351":7,"30352":7,"30353":9,"30354":1,"30355":7,"30356":8,"30357":5,"30358":3,"30359":7,"30360":2,"30361":9,"30362":8,"30363":8,"30364":8,"30365":9,"30366":4,"30367":9,"30368":9,"30369":7,"30370":7,"30371":8,"30372":8,"30373":7,"30374":4,"30375":7,"30376":8,"30377":7,"30378":4,"30379":5,"30380":9,"30381":7,"30382":5,"30383":8,"30384":9,"30385":6,"30386":1,"30387":7,"30388":3,"30389":10,"30390":5,"30391":9,"30392":8,"30393":3,"30394":4,"30395":5,"30396":3,"30397":7,"30398":4,"30399":9,"30400":7,"30401":2,"30402":7,"30403":1,"30404":2,"30405":3,"30406":6,"30407":7,"30408":9,"30409":7,"30410":5,"30411":5,"30412":7,"30413":1,"30414":5,"30415":2,"30416":7,"30417":8,"30418":4,"30419":10,"30420":8,"30421":1,"30422":1,"30423":10,"30424":9,"30425":9,"30426":5,"30427":5,"30428":2,"30429":5,"30430":9,"30431":9,"30432":9,"30433":5,"30434":7,"30435":8,"30436":8,"30437":5,"30438":9,"30439":7,"30440":1,"30441":8,"30442":2,"30443":4,"30444":5,"30445":7,"30446":7,"30447":5,"30448":7,"30449":6,"30450":3,"30451":8,"30452":5,"30453":3,"30454":6,"30455":8,"30456":8,"30457":8,"30458":8,"30459":6,"30460":5,"30461":2,"30462":6,"30463":9,"30464":7,"30465":1,"30466":7,"30467":2,"30468":5,"30469":2,"30470":9,"30471":7,"30472":2,"30473":4,"30474":7,"30475":3,"30476":7,"30477":5,"30478":2,"30479":5,"30480":2,"30481":8,"30482":10,"30483":8,"30484":9,"30485":4,"30486":8,"30487":2,"30488":8,"30489":8,"30490":10,"30491":2,"30492":8,"30493":4,"30494":4,"30495":8,"30496":5,"30497":9,"30498":1,"30499":8,"30500":3,"30501":7,"30502":1,"30503":4,"30504":5,"30505":1,"30506":7,"30507":5,"30508":7,"30509":2,"30510":7,"30511":8,"30512":9,"30513":4,"30514":5,"30515":5,"30516":4,"30517":1,"30518":8,"30519":8,"30520":8,"30521":9,"30522":5,"30523":2,"30524":2,"30525":7,"30526":2,"30527":5,"30528":5,"30529":8,"30530":8,"30531":2,"30532":3,"30533":4,"30534":7,"30535":7,"30536":5,"30537":7,"30538":5,"30539":8,"30540":8,"30541":9,"30542":7,"30543":8,"30544":7,"30545":8,"30546":4,"30547":9,"30548":7,"30549":9,"30550":5,"30551":5,"30552":9,"30553":2,"30554":4,"30555":9,"30556":2,"30557":1,"30558":6,"30559":8,"30560":3,"30561":10,"30562":9,"30563":9,"30564":7,"30565":7,"30566":7,"30567":3,"30568":8,"30569":3,"30570":7,"30571":4,"30572":7,"30573":7,"30574":6,"30575":7,"30576":9,"30577":4,"30578":5,"30579":9,"30580":9,"30581":6,"30582":5,"30583":1,"30584":6,"30585":9,"30586":2,"30587":7,"30588":5,"30589":3,"30590":6,"30591":1,"30592":9,"30593":8,"30594":5,"30595":8,"30596":9,"30597":4,"30598":8,"30599":7,"30600":10,"30601":7,"30602":9,"30603":2,"30604":8,"30605":3,"30606":10,"30607":9,"30608":9,"30609":6,"30610":5,"30611":9,"30612":10,"30613":10,"30614":10,"30615":8,"30616":5,"30617":7,"30618":3,"30619":9,"30620":10,"30621":8,"30622":8,"30623":7,"30624":8,"30625":7,"30626":4,"30627":4,"30628":7,"30629":1,"30630":4,"30631":5,"30632":6,"30633":7,"30634":5,"30635":8,"30636":5,"30637":2,"30638":4,"30639":9,"30640":8,"30641":2,"30642":8,"30643":4,"30644":2,"30645":8,"30646":7,"30647":9,"30648":7,"30649":3,"30650":10,"30651":1,"30652":2,"30653":8,"30654":6,"30655":2,"30656":5,"30657":4,"30658":7,"30659":7,"30660":10,"30661":9,"30662":8,"30663":8,"30664":5,"30665":6,"30666":8,"30667":7,"30668":1,"30669":8,"30670":8,"30671":7,"30672":6,"30673":10,"30674":9,"30675":4,"30676":4,"30677":7,"30678":7,"30679":7,"30680":9,"30681":7,"30682":2,"30683":7,"30684":2,"30685":10,"30686":5,"30687":8,"30688":3,"30689":9,"30690":10,"30691":5,"30692":7,"30693":7,"30694":5,"30695":8,"30696":2,"30697":8,"30698":8,"30699":7,"30700":2,"30701":7,"30702":7,"30703":3,"30704":5,"30705":1,"30706":2,"30707":8,"30708":7,"30709":8,"30710":2,"30711":8,"30712":8,"30713":7,"30714":9,"30715":6,"30716":7,"30717":9,"30718":9,"30719":9,"30720":1,"30721":8,"30722":9,"30723":8,"30724":6,"30725":8,"30726":2,"30727":5,"30728":7,"30729":7,"30730":2,"30731":9,"30732":9,"30733":7,"30734":8,"30735":2,"30736":7,"30737":9,"30738":1,"30739":4,"30740":5,"30741":9,"30742":2,"30743":4,"30744":7,"30745":7,"30746":8,"30747":7,"30748":9,"30749":2,"30750":7,"30751":2,"30752":7,"30753":8,"30754":9,"30755":4,"30756":2,"30757":6,"30758":9,"30759":9,"30760":8,"30761":8,"30762":9,"30763":8,"30764":9,"30765":8,"30766":9,"30767":10,"30768":9,"30769":9,"30770":8,"30771":4,"30772":4,"30773":4,"30774":9,"30775":7,"30776":8,"30777":6,"30778":8,"30779":8,"30780":3,"30781":9,"30782":8,"30783":2,"30784":3,"30785":5,"30786":7,"30787":1,"30788":8,"30789":9,"30790":7,"30791":4,"30792":8,"30793":7,"30794":8,"30795":9,"30796":9,"30797":5,"30798":2,"30799":9,"30800":7,"30801":4,"30802":2,"30803":8,"30804":9,"30805":7,"30806":5,"30807":7,"30808":6,"30809":7,"30810":4,"30811":9,"30812":8,"30813":5,"30814":1,"30815":10,"30816":9,"30817":8,"30818":7,"30819":4,"30820":7,"30821":7,"30822":7,"30823":9,"30824":1,"30825":10,"30826":2,"30827":5,"30828":7,"30829":9,"30830":8,"30831":7,"30832":10,"30833":9,"30834":5,"30835":9,"30836":4,"30837":9,"30838":8,"30839":7,"30840":8,"30841":8,"30842":5,"30843":5,"30844":2,"30845":7,"30846":2,"30847":8,"30848":1,"30849":4,"30850":10,"30851":10,"30852":8,"30853":6,"30854":2,"30855":8,"30856":7,"30857":8,"30858":7,"30859":4,"30860":7,"30861":8,"30862":4,"30863":7,"30864":5,"30865":9,"30866":9,"30867":8,"30868":8,"30869":9,"30870":2,"30871":9,"30872":7,"30873":8,"30874":7,"30875":5,"30876":8,"30877":1,"30878":5,"30879":9,"30880":5,"30881":3,"30882":8,"30883":10,"30884":10,"30885":8,"30886":3,"30887":5,"30888":1,"30889":8,"30890":9,"30891":2,"30892":8,"30893":8,"30894":7,"30895":7,"30896":8,"30897":8,"30898":6,"30899":7,"30900":8,"30901":7,"30902":3,"30903":7,"30904":7,"30905":8,"30906":5,"30907":8,"30908":9,"30909":5,"30910":8,"30911":2,"30912":7,"30913":7,"30914":8,"30915":8,"30916":7,"30917":1,"30918":2,"30919":10,"30920":9,"30921":2,"30922":9,"30923":2,"30924":8,"30925":8,"30926":8,"30927":5,"30928":1,"30929":3,"30930":9,"30931":5,"30932":7,"30933":8,"30934":6,"30935":7,"30936":8,"30937":5,"30938":3,"30939":7,"30940":7,"30941":7,"30942":9,"30943":9,"30944":5,"30945":10,"30946":9,"30947":6,"30948":9,"30949":7,"30950":7,"30951":7,"30952":1,"30953":2,"30954":3,"30955":9,"30956":5,"30957":9,"30958":6,"30959":2,"30960":7,"30961":2,"30962":1,"30963":8,"30964":6,"30965":1,"30966":7,"30967":7,"30968":2,"30969":1,"30970":5,"30971":8,"30972":5,"30973":7,"30974":3,"30975":1,"30976":9,"30977":7,"30978":4,"30979":10,"30980":7,"30981":2,"30982":9,"30983":5,"30984":3,"30985":9,"30986":2,"30987":9,"30988":9,"30989":8,"30990":4,"30991":7,"30992":5,"30993":5,"30994":10,"30995":6,"30996":2,"30997":10,"30998":6,"30999":7,"31000":2,"31001":7,"31002":9,"31003":8,"31004":4,"31005":3,"31006":9,"31007":6,"31008":9,"31009":5,"31010":6,"31011":5,"31012":2,"31013":7,"31014":5,"31015":9,"31016":8,"31017":7,"31018":10,"31019":9,"31020":7,"31021":8,"31022":5,"31023":3,"31024":1,"31025":1,"31026":6,"31027":8,"31028":7,"31029":7,"31030":8,"31031":3,"31032":2,"31033":8,"31034":2,"31035":1,"31036":6,"31037":1,"31038":6,"31039":1,"31040":5,"31041":6,"31042":6,"31043":8,"31044":3,"31045":9,"31046":7,"31047":7,"31048":3,"31049":8,"31050":9,"31051":8,"31052":10,"31053":10,"31054":8,"31055":8,"31056":9,"31057":9,"31058":7,"31059":7,"31060":2,"31061":5,"31062":4,"31063":9,"31064":6,"31065":8,"31066":8,"31067":10,"31068":7,"31069":8,"31070":7,"31071":1,"31072":5,"31073":8,"31074":5,"31075":5,"31076":1,"31077":10,"31078":2,"31079":7,"31080":8,"31081":8,"31082":8,"31083":10,"31084":1,"31085":4,"31086":8,"31087":9,"31088":1,"31089":8,"31090":8,"31091":8,"31092":4,"31093":2,"31094":1,"31095":6,"31096":5,"31097":3,"31098":1,"31099":9,"31100":9,"31101":2,"31102":8,"31103":2,"31104":1,"31105":3,"31106":2,"31107":6,"31108":8,"31109":9,"31110":8,"31111":2,"31112":7,"31113":3,"31114":10,"31115":8,"31116":2,"31117":2,"31118":8,"31119":9,"31120":9,"31121":4,"31122":7,"31123":4,"31124":3,"31125":8,"31126":9,"31127":7,"31128":7,"31129":7,"31130":8,"31131":2,"31132":7,"31133":9,"31134":8,"31135":4,"31136":1,"31137":9,"31138":8,"31139":9,"31140":8,"31141":7,"31142":2,"31143":9,"31144":2,"31145":10,"31146":6,"31147":8,"31148":8,"31149":3,"31150":7,"31151":9,"31152":9,"31153":2,"31154":10,"31155":7,"31156":8,"31157":7,"31158":9,"31159":5,"31160":7,"31161":9,"31162":5,"31163":4,"31164":4,"31165":7,"31166":2,"31167":1,"31168":8,"31169":5,"31170":4,"31171":7,"31172":9,"31173":6,"31174":9,"31175":10,"31176":9,"31177":5,"31178":7,"31179":5,"31180":7,"31181":2,"31182":8,"31183":9,"31184":7,"31185":5,"31186":5,"31187":9,"31188":8,"31189":6,"31190":7,"31191":9,"31192":4,"31193":8,"31194":6,"31195":10,"31196":6,"31197":2,"31198":5,"31199":1,"31200":3,"31201":8,"31202":1,"31203":9,"31204":2,"31205":9,"31206":7,"31207":5,"31208":9,"31209":8,"31210":9,"31211":10,"31212":7,"31213":9,"31214":7,"31215":7,"31216":3,"31217":9,"31218":9,"31219":6,"31220":9,"31221":8,"31222":9,"31223":9,"31224":9,"31225":5,"31226":10,"31227":6,"31228":1,"31229":7,"31230":1,"31231":9,"31232":7,"31233":5,"31234":7,"31235":5,"31236":9,"31237":1,"31238":5,"31239":8,"31240":7,"31241":1,"31242":3,"31243":3,"31244":10,"31245":7,"31246":3,"31247":8,"31248":7,"31249":9,"31250":5,"31251":7,"31252":5,"31253":7,"31254":10,"31255":7,"31256":5,"31257":9,"31258":10,"31259":5,"31260":5,"31261":2,"31262":9,"31263":7,"31264":3,"31265":5,"31266":1,"31267":6,"31268":2,"31269":8,"31270":8,"31271":1,"31272":7,"31273":4,"31274":6,"31275":3,"31276":8,"31277":7,"31278":4,"31279":9,"31280":7,"31281":9,"31282":5,"31283":4,"31284":7,"31285":3,"31286":3,"31287":4,"31288":8,"31289":3,"31290":5,"31291":3,"31292":1,"31293":4,"31294":8,"31295":9,"31296":9,"31297":8,"31298":9,"31299":10,"31300":9,"31301":8,"31302":2,"31303":9,"31304":8,"31305":8,"31306":8,"31307":1,"31308":5,"31309":7,"31310":8,"31311":6,"31312":3,"31313":8,"31314":5,"31315":8,"31316":8,"31317":2,"31318":2,"31319":8,"31320":7,"31321":7,"31322":7,"31323":8,"31324":1,"31325":8,"31326":7,"31327":1,"31328":8,"31329":6,"31330":10,"31331":1,"31332":6,"31333":8,"31334":9,"31335":5,"31336":5,"31337":4,"31338":8,"31339":7,"31340":10,"31341":2,"31342":2,"31343":5,"31344":7,"31345":9,"31346":8,"31347":2,"31348":10,"31349":6,"31350":4,"31351":2,"31352":8,"31353":2,"31354":7,"31355":8,"31356":9,"31357":8,"31358":8,"31359":5,"31360":8,"31361":8,"31362":6,"31363":8,"31364":10,"31365":9,"31366":3,"31367":5,"31368":4,"31369":7,"31370":9,"31371":9,"31372":8,"31373":7,"31374":9,"31375":9,"31376":9,"31377":8,"31378":9,"31379":2,"31380":7,"31381":9,"31382":10,"31383":9,"31384":5,"31385":8,"31386":5,"31387":4,"31388":10,"31389":8,"31390":8,"31391":7,"31392":8,"31393":9,"31394":9,"31395":8,"31396":7,"31397":7,"31398":3,"31399":8,"31400":9,"31401":5,"31402":5,"31403":2,"31404":7,"31405":3,"31406":9,"31407":7,"31408":8,"31409":9,"31410":3,"31411":9,"31412":7,"31413":8,"31414":8,"31415":8,"31416":7,"31417":5,"31418":9,"31419":2,"31420":9,"31421":4,"31422":9,"31423":3,"31424":1,"31425":8,"31426":9,"31427":4,"31428":2,"31429":7,"31430":8,"31431":7,"31432":7,"31433":7,"31434":8,"31435":7,"31436":9,"31437":3,"31438":1,"31439":7,"31440":2,"31441":9,"31442":7,"31443":1,"31444":8,"31445":7,"31446":5,"31447":9,"31448":8,"31449":8,"31450":9,"31451":8,"31452":8,"31453":8,"31454":8,"31455":10,"31456":1,"31457":5,"31458":8,"31459":4,"31460":7,"31461":1,"31462":7,"31463":7,"31464":8,"31465":2,"31466":5,"31467":2,"31468":2,"31469":10,"31470":4,"31471":8,"31472":7,"31473":2,"31474":7,"31475":9,"31476":7,"31477":2,"31478":3,"31479":6,"31480":5,"31481":8,"31482":2,"31483":1,"31484":8,"31485":7,"31486":7,"31487":1,"31488":6,"31489":9,"31490":7,"31491":8,"31492":7,"31493":2,"31494":4,"31495":5,"31496":9,"31497":2,"31498":7,"31499":6,"31500":4,"31501":9,"31502":7,"31503":9,"31504":5,"31505":6,"31506":7,"31507":9,"31508":7,"31509":5,"31510":7,"31511":10,"31512":10,"31513":7,"31514":7,"31515":4,"31516":9,"31517":9,"31518":5,"31519":2,"31520":5,"31521":7,"31522":8,"31523":9,"31524":2,"31525":8,"31526":9,"31527":8,"31528":5,"31529":8,"31530":8,"31531":5,"31532":8,"31533":7,"31534":3,"31535":7,"31536":9,"31537":2,"31538":2,"31539":10,"31540":7,"31541":2,"31542":8,"31543":4,"31544":2,"31545":8,"31546":7,"31547":10,"31548":8,"31549":9,"31550":8,"31551":7,"31552":2,"31553":7,"31554":1,"31555":7,"31556":9,"31557":3,"31558":9,"31559":8,"31560":9,"31561":8,"31562":10,"31563":10,"31564":8,"31565":2,"31566":1,"31567":9,"31568":7,"31569":8,"31570":8,"31571":7,"31572":7,"31573":7,"31574":9,"31575":2,"31576":7,"31577":2,"31578":7,"31579":7,"31580":7,"31581":7,"31582":7,"31583":4,"31584":7,"31585":5,"31586":8,"31587":2,"31588":5,"31589":8,"31590":8,"31591":7,"31592":8,"31593":8,"31594":2,"31595":3,"31596":7,"31597":3,"31598":6,"31599":5,"31600":9,"31601":7,"31602":3,"31603":6,"31604":8,"31605":7,"31606":1,"31607":7,"31608":2,"31609":8,"31610":1,"31611":7,"31612":7,"31613":9,"31614":5,"31615":7,"31616":8,"31617":8,"31618":9,"31619":1,"31620":2,"31621":3,"31622":8,"31623":7,"31624":8,"31625":8,"31626":9,"31627":6,"31628":9,"31629":7,"31630":2,"31631":2,"31632":9,"31633":8,"31634":9,"31635":3,"31636":8,"31637":2,"31638":8,"31639":3,"31640":10,"31641":5,"31642":7,"31643":8,"31644":7,"31645":4,"31646":1,"31647":6,"31648":8,"31649":8,"31650":3,"31651":5,"31652":8,"31653":9,"31654":10,"31655":3,"31656":7,"31657":4,"31658":3,"31659":9,"31660":5,"31661":5,"31662":8,"31663":6,"31664":1,"31665":8,"31666":9,"31667":3,"31668":1,"31669":2,"31670":3,"31671":9,"31672":4,"31673":7,"31674":2,"31675":5,"31676":2,"31677":9,"31678":9,"31679":9,"31680":3,"31681":1,"31682":4,"31683":8,"31684":9,"31685":8,"31686":2,"31687":5,"31688":1,"31689":9,"31690":2,"31691":1,"31692":7,"31693":7,"31694":3,"31695":5,"31696":7,"31697":3,"31698":7,"31699":2,"31700":10,"31701":7,"31702":8,"31703":7,"31704":2,"31705":4,"31706":4,"31707":6,"31708":6,"31709":9,"31710":8,"31711":7,"31712":9,"31713":8,"31714":1,"31715":8,"31716":2,"31717":8,"31718":6,"31719":8,"31720":10,"31721":10,"31722":6,"31723":7,"31724":2,"31725":6,"31726":4,"31727":8,"31728":5,"31729":7,"31730":10,"31731":2,"31732":7,"31733":7,"31734":4,"31735":7,"31736":7,"31737":3,"31738":7,"31739":10,"31740":1,"31741":10,"31742":7,"31743":3,"31744":5,"31745":8,"31746":5,"31747":7,"31748":5,"31749":10,"31750":9,"31751":8,"31752":8,"31753":9,"31754":5,"31755":5,"31756":2,"31757":5,"31758":9,"31759":9,"31760":8,"31761":2,"31762":4,"31763":2,"31764":8,"31765":10,"31766":6,"31767":4,"31768":9,"31769":7,"31770":7,"31771":7,"31772":8,"31773":2,"31774":4,"31775":8,"31776":9,"31777":9,"31778":5,"31779":8,"31780":7,"31781":8,"31782":7,"31783":8,"31784":8,"31785":4,"31786":7,"31787":6,"31788":2,"31789":8,"31790":5,"31791":2,"31792":1,"31793":8,"31794":9,"31795":9,"31796":7,"31797":8,"31798":7,"31799":9,"31800":6,"31801":5,"31802":2,"31803":7,"31804":7,"31805":5,"31806":8,"31807":4,"31808":6,"31809":2,"31810":4,"31811":9,"31812":2,"31813":9,"31814":9,"31815":9,"31816":8,"31817":4,"31818":6,"31819":10,"31820":10,"31821":6,"31822":2,"31823":9,"31824":6,"31825":3,"31826":2,"31827":7,"31828":9,"31829":5,"31830":2,"31831":1,"31832":4,"31833":3,"31834":4,"31835":1,"31836":1,"31837":6,"31838":9,"31839":9,"31840":9,"31841":10,"31842":7,"31843":10,"31844":3,"31845":6,"31846":10,"31847":10,"31848":8,"31849":9,"31850":8,"31851":9,"31852":8,"31853":3,"31854":7,"31855":7,"31856":9,"31857":1,"31858":8,"31859":3,"31860":7,"31861":8,"31862":9,"31863":8,"31864":7,"31865":7,"31866":9,"31867":4,"31868":3,"31869":3,"31870":2,"31871":2,"31872":10,"31873":9,"31874":7,"31875":7,"31876":9,"31877":6,"31878":8,"31879":1,"31880":7,"31881":7,"31882":2,"31883":2,"31884":7,"31885":1,"31886":5,"31887":8,"31888":8,"31889":9,"31890":4,"31891":7,"31892":9,"31893":2,"31894":8,"31895":4,"31896":9,"31897":2,"31898":8,"31899":7,"31900":9,"31901":2,"31902":9,"31903":2,"31904":9,"31905":9,"31906":1,"31907":8,"31908":10,"31909":4,"31910":8,"31911":5,"31912":8,"31913":8,"31914":9,"31915":5,"31916":2,"31917":2,"31918":5,"31919":5,"31920":7,"31921":7,"31922":10,"31923":9,"31924":5,"31925":8,"31926":7,"31927":7,"31928":2,"31929":8,"31930":7,"31931":9,"31932":1,"31933":7,"31934":2,"31935":5,"31936":7,"31937":9,"31938":9,"31939":5,"31940":1,"31941":1,"31942":2,"31943":8,"31944":4,"31945":6,"31946":5,"31947":9,"31948":8,"31949":9,"31950":9,"31951":7,"31952":5,"31953":1,"31954":9,"31955":2,"31956":9,"31957":2,"31958":9,"31959":3,"31960":7,"31961":7,"31962":9,"31963":9,"31964":8,"31965":8,"31966":4,"31967":3,"31968":3,"31969":8,"31970":8,"31971":10,"31972":5,"31973":9,"31974":2,"31975":8,"31976":9,"31977":3,"31978":8,"31979":8,"31980":10,"31981":2,"31982":4,"31983":9,"31984":6,"31985":2,"31986":8,"31987":9,"31988":9,"31989":5,"31990":7,"31991":6,"31992":7,"31993":5,"31994":4,"31995":8,"31996":1,"31997":4,"31998":5,"31999":7,"32000":8,"32001":1,"32002":7,"32003":2,"32004":10,"32005":2,"32006":8,"32007":7,"32008":2,"32009":6,"32010":7,"32011":8,"32012":8,"32013":10,"32014":5,"32015":3,"32016":2,"32017":7,"32018":8,"32019":7,"32020":7,"32021":7,"32022":6,"32023":2,"32024":2,"32025":7,"32026":8,"32027":8,"32028":7,"32029":8,"32030":4,"32031":7,"32032":7,"32033":6,"32034":10,"32035":9,"32036":8,"32037":2,"32038":4,"32039":9,"32040":8,"32041":8,"32042":7,"32043":9,"32044":9,"32045":8,"32046":9,"32047":8,"32048":8,"32049":4,"32050":7,"32051":9,"32052":5,"32053":10,"32054":5,"32055":2,"32056":8,"32057":8,"32058":5,"32059":9,"32060":9,"32061":9,"32062":7,"32063":7,"32064":7,"32065":1,"32066":7,"32067":9,"32068":8,"32069":2,"32070":9,"32071":7,"32072":7,"32073":7,"32074":7,"32075":9,"32076":7,"32077":7,"32078":8,"32079":4,"32080":8,"32081":7,"32082":6,"32083":7,"32084":7,"32085":10,"32086":8,"32087":2,"32088":8,"32089":2,"32090":9,"32091":8,"32092":1,"32093":5,"32094":6,"32095":6,"32096":8,"32097":7,"32098":8,"32099":5,"32100":6,"32101":2,"32102":9,"32103":7,"32104":9,"32105":8,"32106":7,"32107":8,"32108":5,"32109":5,"32110":10,"32111":9,"32112":9,"32113":3,"32114":8,"32115":9,"32116":9,"32117":9,"32118":4,"32119":2,"32120":7,"32121":5,"32122":7,"32123":6,"32124":8,"32125":8,"32126":8,"32127":5,"32128":9,"32129":8,"32130":8,"32131":2,"32132":2,"32133":5,"32134":5,"32135":1,"32136":5,"32137":4,"32138":4,"32139":6,"32140":1,"32141":8,"32142":8,"32143":6,"32144":9,"32145":4,"32146":5,"32147":3,"32148":2,"32149":4,"32150":7,"32151":5,"32152":4,"32153":5,"32154":7,"32155":2,"32156":8,"32157":7,"32158":2,"32159":7,"32160":7,"32161":8,"32162":8,"32163":7,"32164":5,"32165":4,"32166":9,"32167":8,"32168":10,"32169":9,"32170":7,"32171":7,"32172":9,"32173":5,"32174":9,"32175":6,"32176":5,"32177":7,"32178":5,"32179":2,"32180":8,"32181":9,"32182":8,"32183":8,"32184":5,"32185":7,"32186":8,"32187":9,"32188":7,"32189":8,"32190":7,"32191":7,"32192":6,"32193":9,"32194":4,"32195":2,"32196":8,"32197":3,"32198":10,"32199":7,"32200":7,"32201":10,"32202":10,"32203":10,"32204":1,"32205":9,"32206":7,"32207":2,"32208":9,"32209":9,"32210":8,"32211":8,"32212":10,"32213":7,"32214":5,"32215":8,"32216":3,"32217":1,"32218":7,"32219":7,"32220":6,"32221":8,"32222":7,"32223":9,"32224":6,"32225":2,"32226":9,"32227":4,"32228":7,"32229":7,"32230":4,"32231":7,"32232":5,"32233":1,"32234":6,"32235":5,"32236":10,"32237":9,"32238":9,"32239":1,"32240":7,"32241":1,"32242":8,"32243":10,"32244":9,"32245":4,"32246":8,"32247":9,"32248":9,"32249":8,"32250":5,"32251":8,"32252":4,"32253":5,"32254":6,"32255":9,"32256":9,"32257":8,"32258":5,"32259":7,"32260":7,"32261":8,"32262":7,"32263":6,"32264":9,"32265":1,"32266":9,"32267":8,"32268":9,"32269":5,"32270":2,"32271":8,"32272":7,"32273":5,"32274":2,"32275":8,"32276":3,"32277":3,"32278":8,"32279":9,"32280":7,"32281":3,"32282":8,"32283":7,"32284":9,"32285":1,"32286":3,"32287":10,"32288":8,"32289":2,"32290":7,"32291":4,"32292":9,"32293":2,"32294":8,"32295":5,"32296":5,"32297":7,"32298":3,"32299":3,"32300":5,"32301":3,"32302":8,"32303":7,"32304":8,"32305":7,"32306":9,"32307":7,"32308":6,"32309":8,"32310":8,"32311":9,"32312":7,"32313":9,"32314":8,"32315":1,"32316":1,"32317":7,"32318":7,"32319":6,"32320":2,"32321":4,"32322":2,"32323":8,"32324":7,"32325":8,"32326":2,"32327":10,"32328":2,"32329":2,"32330":5,"32331":8,"32332":4,"32333":8,"32334":2,"32335":8,"32336":7,"32337":8,"32338":7,"32339":9,"32340":4,"32341":8,"32342":7,"32343":3,"32344":8,"32345":4,"32346":8,"32347":7,"32348":7,"32349":8,"32350":7,"32351":4,"32352":1,"32353":5,"32354":8,"32355":1,"32356":8,"32357":8,"32358":8,"32359":9,"32360":9,"32361":8,"32362":5,"32363":6,"32364":7,"32365":9,"32366":5,"32367":7,"32368":2,"32369":7,"32370":7,"32371":7,"32372":6,"32373":9,"32374":1,"32375":8,"32376":2,"32377":9,"32378":6,"32379":4,"32380":7,"32381":6,"32382":8,"32383":6,"32384":8,"32385":5,"32386":2,"32387":7,"32388":5,"32389":9,"32390":4,"32391":5,"32392":9,"32393":4,"32394":9,"32395":8,"32396":4,"32397":8,"32398":9,"32399":7,"32400":3,"32401":9,"32402":3,"32403":9,"32404":8,"32405":9,"32406":9,"32407":3,"32408":3,"32409":7,"32410":8,"32411":7,"32412":5,"32413":9,"32414":7,"32415":8,"32416":9,"32417":4,"32418":2,"32419":5,"32420":9,"32421":9,"32422":6,"32423":8,"32424":5,"32425":6,"32426":3,"32427":8,"32428":7,"32429":8,"32430":3,"32431":8,"32432":7,"32433":5,"32434":9,"32435":5,"32436":9,"32437":5,"32438":4,"32439":8,"32440":6,"32441":7,"32442":8,"32443":4,"32444":7,"32445":2,"32446":5,"32447":9,"32448":8,"32449":9,"32450":5,"32451":10,"32452":2,"32453":9,"32454":8,"32455":2,"32456":7,"32457":2,"32458":7,"32459":9,"32460":4,"32461":7,"32462":7,"32463":2,"32464":8,"32465":5,"32466":4,"32467":2,"32468":2,"32469":5,"32470":9,"32471":8,"32472":7,"32473":8,"32474":8,"32475":4,"32476":2,"32477":8,"32478":3,"32479":8,"32480":2,"32481":9,"32482":10,"32483":7,"32484":7,"32485":4,"32486":5,"32487":7,"32488":7,"32489":5,"32490":2,"32491":5,"32492":8,"32493":10,"32494":8,"32495":5,"32496":7,"32497":1,"32498":9,"32499":10,"32500":9,"32501":8,"32502":7,"32503":9,"32504":2,"32505":6,"32506":10,"32507":7,"32508":7,"32509":8,"32510":7,"32511":7,"32512":8,"32513":9,"32514":8,"32515":4,"32516":9,"32517":8,"32518":6,"32519":10,"32520":9,"32521":3,"32522":8,"32523":4,"32524":7,"32525":7,"32526":2,"32527":8,"32528":9,"32529":7,"32530":7,"32531":1,"32532":9,"32533":8,"32534":4,"32535":3,"32536":8,"32537":9,"32538":5,"32539":5,"32540":8,"32541":5,"32542":1,"32543":2,"32544":7,"32545":6,"32546":9,"32547":7,"32548":4,"32549":7,"32550":9,"32551":8,"32552":8,"32553":9,"32554":9,"32555":10,"32556":5,"32557":7,"32558":9,"32559":7,"32560":9,"32561":8,"32562":9,"32563":8,"32564":2,"32565":9,"32566":2,"32567":4,"32568":7,"32569":9,"32570":9,"32571":6,"32572":8,"32573":7,"32574":8,"32575":7,"32576":10,"32577":4,"32578":8,"32579":9,"32580":7,"32581":3,"32582":7,"32583":8,"32584":9,"32585":5,"32586":8,"32587":1,"32588":7,"32589":7,"32590":5,"32591":7,"32592":8,"32593":7,"32594":5,"32595":7,"32596":7,"32597":2,"32598":7,"32599":8,"32600":9,"32601":2,"32602":6,"32603":5,"32604":4,"32605":6,"32606":8,"32607":1,"32608":2,"32609":7,"32610":7,"32611":8,"32612":7,"32613":1,"32614":7,"32615":2,"32616":1,"32617":2,"32618":3,"32619":9,"32620":2,"32621":8,"32622":7,"32623":7,"32624":6,"32625":1,"32626":6,"32627":2,"32628":8,"32629":10,"32630":7,"32631":1,"32632":5,"32633":2,"32634":7,"32635":8,"32636":1,"32637":2,"32638":9,"32639":8,"32640":7,"32641":5,"32642":2,"32643":7,"32644":8,"32645":8,"32646":8,"32647":9,"32648":2,"32649":2,"32650":8,"32651":7,"32652":8,"32653":10,"32654":10,"32655":3,"32656":5,"32657":9,"32658":8,"32659":3,"32660":8,"32661":2,"32662":5,"32663":5,"32664":3,"32665":2,"32666":1,"32667":10,"32668":9,"32669":5,"32670":1,"32671":8,"32672":5,"32673":7,"32674":4,"32675":9,"32676":5,"32677":8,"32678":7,"32679":7,"32680":8,"32681":6,"32682":2,"32683":8,"32684":3,"32685":2,"32686":8,"32687":8,"32688":2,"32689":7,"32690":8,"32691":7,"32692":4,"32693":9,"32694":8,"32695":8,"32696":7,"32697":5,"32698":5,"32699":6,"32700":9,"32701":5,"32702":3,"32703":8,"32704":5,"32705":7,"32706":8,"32707":7,"32708":8,"32709":9,"32710":8,"32711":9,"32712":7,"32713":7,"32714":9,"32715":1,"32716":9,"32717":7,"32718":8,"32719":7,"32720":2,"32721":10,"32722":8,"32723":5,"32724":7,"32725":8,"32726":5,"32727":2,"32728":4,"32729":9,"32730":6,"32731":2,"32732":9,"32733":5,"32734":2,"32735":4,"32736":7,"32737":7,"32738":7,"32739":10,"32740":8,"32741":5,"32742":7,"32743":9,"32744":9,"32745":8,"32746":7,"32747":7,"32748":4,"32749":2,"32750":5,"32751":4,"32752":7,"32753":8,"32754":7,"32755":8,"32756":2,"32757":2,"32758":8,"32759":6,"32760":10,"32761":9,"32762":3,"32763":5,"32764":7,"32765":3,"32766":9,"32767":3,"32768":2,"32769":7,"32770":8,"32771":8,"32772":8,"32773":2,"32774":8,"32775":6,"32776":8,"32777":8,"32778":7,"32779":7,"32780":2,"32781":9,"32782":7,"32783":2,"32784":3,"32785":8,"32786":3,"32787":8,"32788":10,"32789":2,"32790":9,"32791":8,"32792":6,"32793":4,"32794":1,"32795":8,"32796":5,"32797":7,"32798":8,"32799":8,"32800":10,"32801":5,"32802":5,"32803":6,"32804":2,"32805":8,"32806":2,"32807":2,"32808":8,"32809":7,"32810":9,"32811":9,"32812":5,"32813":8,"32814":2,"32815":4,"32816":9,"32817":8,"32818":9,"32819":3,"32820":5,"32821":7,"32822":5,"32823":6,"32824":5,"32825":7,"32826":1,"32827":5,"32828":8,"32829":8,"32830":6,"32831":3,"32832":9,"32833":9,"32834":7,"32835":2,"32836":9,"32837":7,"32838":8,"32839":5,"32840":8,"32841":2,"32842":7,"32843":8,"32844":8,"32845":5,"32846":3,"32847":7,"32848":8,"32849":4,"32850":7,"32851":8,"32852":7,"32853":1,"32854":2,"32855":5,"32856":8,"32857":5,"32858":8,"32859":5,"32860":5,"32861":4,"32862":2,"32863":2,"32864":8,"32865":1,"32866":1,"32867":4,"32868":9,"32869":5,"32870":2,"32871":7,"32872":6,"32873":9,"32874":7,"32875":7,"32876":9,"32877":7,"32878":5,"32879":3,"32880":5,"32881":7,"32882":1,"32883":7,"32884":8,"32885":8,"32886":7,"32887":10,"32888":6,"32889":8,"32890":2,"32891":4,"32892":5,"32893":7,"32894":9,"32895":9,"32896":2,"32897":4,"32898":8,"32899":7,"32900":5,"32901":5,"32902":7,"32903":7,"32904":5,"32905":7,"32906":2,"32907":8,"32908":2,"32909":2,"32910":8,"32911":10,"32912":5,"32913":2,"32914":7,"32915":1,"32916":9,"32917":5,"32918":9,"32919":6,"32920":8,"32921":9,"32922":7,"32923":7,"32924":8,"32925":5,"32926":2,"32927":2,"32928":9,"32929":2,"32930":8,"32931":1,"32932":10,"32933":9,"32934":5,"32935":4,"32936":8,"32937":9,"32938":7,"32939":7,"32940":7,"32941":2,"32942":3,"32943":2,"32944":7,"32945":10,"32946":1,"32947":9,"32948":3,"32949":5,"32950":9,"32951":1,"32952":8,"32953":9,"32954":9,"32955":7,"32956":6,"32957":1,"32958":8,"32959":4,"32960":8,"32961":7,"32962":3,"32963":8,"32964":9,"32965":7,"32966":5,"32967":1,"32968":6,"32969":7,"32970":8,"32971":8,"32972":7,"32973":9,"32974":7,"32975":6,"32976":2,"32977":9,"32978":8,"32979":8,"32980":6,"32981":10,"32982":7,"32983":2,"32984":9,"32985":5,"32986":7,"32987":7,"32988":7,"32989":2,"32990":10,"32991":8,"32992":8,"32993":7,"32994":6,"32995":4,"32996":2,"32997":7,"32998":7,"32999":3,"33000":9,"33001":7,"33002":5,"33003":8,"33004":5,"33005":8,"33006":7,"33007":8,"33008":6,"33009":8,"33010":8,"33011":1,"33012":5,"33013":8,"33014":8,"33015":9,"33016":2,"33017":10,"33018":4,"33019":8,"33020":5,"33021":4,"33022":7,"33023":6,"33024":3,"33025":7,"33026":9,"33027":3,"33028":4,"33029":6,"33030":3,"33031":1,"33032":7,"33033":9,"33034":2,"33035":10,"33036":2,"33037":6,"33038":8,"33039":7,"33040":8,"33041":8,"33042":8,"33043":9,"33044":8,"33045":7,"33046":8,"33047":3,"33048":6,"33049":9,"33050":9,"33051":1,"33052":7,"33053":5,"33054":5,"33055":7,"33056":10,"33057":4,"33058":8,"33059":2,"33060":8,"33061":7,"33062":10,"33063":5,"33064":8,"33065":9,"33066":8,"33067":2,"33068":2,"33069":7,"33070":3,"33071":8,"33072":9,"33073":9,"33074":7,"33075":2,"33076":9,"33077":7,"33078":5,"33079":5,"33080":5,"33081":2,"33082":7,"33083":8,"33084":2,"33085":2,"33086":9,"33087":4,"33088":9,"33089":7,"33090":9,"33091":9,"33092":8,"33093":5,"33094":9,"33095":7,"33096":1,"33097":2,"33098":9,"33099":1,"33100":1,"33101":8,"33102":5,"33103":2,"33104":10,"33105":6,"33106":7,"33107":9,"33108":2,"33109":8,"33110":5,"33111":8,"33112":8,"33113":6,"33114":1,"33115":7,"33116":7,"33117":8,"33118":10,"33119":3,"33120":8,"33121":9,"33122":2,"33123":8,"33124":7,"33125":6,"33126":7,"33127":7,"33128":4,"33129":8,"33130":9,"33131":2,"33132":2,"33133":8,"33134":8,"33135":5,"33136":8,"33137":5,"33138":7,"33139":7,"33140":5,"33141":8,"33142":1,"33143":7,"33144":7,"33145":8,"33146":1,"33147":7,"33148":7,"33149":8,"33150":9,"33151":3,"33152":9,"33153":8,"33154":3,"33155":4,"33156":10,"33157":8,"33158":7,"33159":8,"33160":7,"33161":8,"33162":9,"33163":7,"33164":9,"33165":1,"33166":5,"33167":6,"33168":8,"33169":5,"33170":9,"33171":4,"33172":5,"33173":2,"33174":7,"33175":7,"33176":2,"33177":8,"33178":8,"33179":5,"33180":7,"33181":2,"33182":7,"33183":8,"33184":9,"33185":9,"33186":5,"33187":6,"33188":6,"33189":9,"33190":3,"33191":7,"33192":9,"33193":5,"33194":4,"33195":2,"33196":8,"33197":2,"33198":7,"33199":7,"33200":9,"33201":1,"33202":7,"33203":4,"33204":8,"33205":10,"33206":8,"33207":7,"33208":8,"33209":9,"33210":5,"33211":9,"33212":8,"33213":1,"33214":10,"33215":5,"33216":1,"33217":2,"33218":9,"33219":5,"33220":2,"33221":9,"33222":8,"33223":9,"33224":2,"33225":4,"33226":3,"33227":9,"33228":7,"33229":8,"33230":9,"33231":8,"33232":5,"33233":7,"33234":4,"33235":2,"33236":10,"33237":5,"33238":2,"33239":9,"33240":1,"33241":8,"33242":6,"33243":2,"33244":7,"33245":9,"33246":9,"33247":9,"33248":3,"33249":7,"33250":8,"33251":2,"33252":9,"33253":8,"33254":2,"33255":7,"33256":8,"33257":5,"33258":2,"33259":5,"33260":5,"33261":6,"33262":6,"33263":7,"33264":3,"33265":2,"33266":8,"33267":9,"33268":2,"33269":9,"33270":9,"33271":8,"33272":7,"33273":9,"33274":8,"33275":9,"33276":5,"33277":9,"33278":7,"33279":10,"33280":1,"33281":8,"33282":8,"33283":4,"33284":8,"33285":8,"33286":8,"33287":7,"33288":10,"33289":7,"33290":2,"33291":8,"33292":10,"33293":8,"33294":8,"33295":6,"33296":3,"33297":5,"33298":7,"33299":7,"33300":7,"33301":5,"33302":3,"33303":7,"33304":9,"33305":2,"33306":7,"33307":2,"33308":5,"33309":7,"33310":8,"33311":10,"33312":3,"33313":2,"33314":7,"33315":8,"33316":2,"33317":9,"33318":8,"33319":4,"33320":3,"33321":2,"33322":5,"33323":7,"33324":6,"33325":5,"33326":10,"33327":8,"33328":3,"33329":4,"33330":9,"33331":8,"33332":2,"33333":9,"33334":9,"33335":2,"33336":3,"33337":10,"33338":2,"33339":7,"33340":7,"33341":7,"33342":10,"33343":5,"33344":8,"33345":4,"33346":5,"33347":5,"33348":8,"33349":2,"33350":8,"33351":7,"33352":9,"33353":3,"33354":10,"33355":5,"33356":7,"33357":1,"33358":5,"33359":7,"33360":7,"33361":8,"33362":7,"33363":4,"33364":9,"33365":8,"33366":8,"33367":7,"33368":8,"33369":7,"33370":9,"33371":7,"33372":9,"33373":2,"33374":9,"33375":7,"33376":7,"33377":8,"33378":9,"33379":7,"33380":7,"33381":7,"33382":7,"33383":3,"33384":5,"33385":8,"33386":10,"33387":6,"33388":7,"33389":4,"33390":4,"33391":5,"33392":3,"33393":6,"33394":10,"33395":8,"33396":7,"33397":2,"33398":7,"33399":7,"33400":8,"33401":7,"33402":9,"33403":7,"33404":8,"33405":7,"33406":1,"33407":5,"33408":2,"33409":8,"33410":10,"33411":7,"33412":9,"33413":2,"33414":8,"33415":6,"33416":7,"33417":3,"33418":4,"33419":7,"33420":5,"33421":2,"33422":2,"33423":7,"33424":5,"33425":2,"33426":8,"33427":10,"33428":8,"33429":7,"33430":5,"33431":4,"33432":8,"33433":7,"33434":7,"33435":8,"33436":4,"33437":8,"33438":9,"33439":7,"33440":7,"33441":10,"33442":8,"33443":2,"33444":7,"33445":8,"33446":9,"33447":7,"33448":4,"33449":4,"33450":7,"33451":8,"33452":8,"33453":5,"33454":7,"33455":2,"33456":8,"33457":4,"33458":7,"33459":6,"33460":7,"33461":2,"33462":1,"33463":9,"33464":8,"33465":7,"33466":3,"33467":1,"33468":7,"33469":6,"33470":2,"33471":7,"33472":9,"33473":7,"33474":5,"33475":9,"33476":7,"33477":5,"33478":2,"33479":7,"33480":9,"33481":7,"33482":9,"33483":5,"33484":5,"33485":9,"33486":7,"33487":7,"33488":5,"33489":8,"33490":2,"33491":8,"33492":9,"33493":2,"33494":7,"33495":7,"33496":7,"33497":2,"33498":2,"33499":6,"33500":10,"33501":9,"33502":2,"33503":5,"33504":2,"33505":1,"33506":2,"33507":9,"33508":1,"33509":6,"33510":3,"33511":5,"33512":6,"33513":9,"33514":9,"33515":5,"33516":7,"33517":9,"33518":7,"33519":6,"33520":7,"33521":8,"33522":7,"33523":8,"33524":9,"33525":8,"33526":8,"33527":8,"33528":8,"33529":8,"33530":4,"33531":7,"33532":8,"33533":8,"33534":2,"33535":7,"33536":10,"33537":8,"33538":2,"33539":1,"33540":7,"33541":8,"33542":9,"33543":1,"33544":9,"33545":7,"33546":5,"33547":1,"33548":7,"33549":9,"33550":7,"33551":8,"33552":7,"33553":7,"33554":9,"33555":6,"33556":2,"33557":2,"33558":8,"33559":10,"33560":5,"33561":7,"33562":9,"33563":8,"33564":9,"33565":2,"33566":7,"33567":2,"33568":8,"33569":10,"33570":4,"33571":2,"33572":1,"33573":9,"33574":6,"33575":8,"33576":9,"33577":6,"33578":5,"33579":2,"33580":5,"33581":7,"33582":7,"33583":8,"33584":7,"33585":9,"33586":5,"33587":4,"33588":8,"33589":8,"33590":7,"33591":4,"33592":7,"33593":1,"33594":8,"33595":7,"33596":5,"33597":4,"33598":10,"33599":9,"33600":5,"33601":2,"33602":9,"33603":5,"33604":5,"33605":8,"33606":9,"33607":5,"33608":7,"33609":1,"33610":5,"33611":7,"33612":2,"33613":2,"33614":2,"33615":3,"33616":5,"33617":8,"33618":5,"33619":8,"33620":8,"33621":4,"33622":5,"33623":8,"33624":2,"33625":2,"33626":5,"33627":7,"33628":7,"33629":9,"33630":4,"33631":1,"33632":6,"33633":9,"33634":8,"33635":10,"33636":7,"33637":9,"33638":5,"33639":6,"33640":8,"33641":8,"33642":9,"33643":8,"33644":9,"33645":5,"33646":9,"33647":7,"33648":4,"33649":9,"33650":9,"33651":7,"33652":4,"33653":3,"33654":7,"33655":7,"33656":7,"33657":9,"33658":8,"33659":8,"33660":7,"33661":9,"33662":2,"33663":1,"33664":2,"33665":4,"33666":10,"33667":7,"33668":2,"33669":10,"33670":7,"33671":2,"33672":9,"33673":7,"33674":5,"33675":5,"33676":2,"33677":7,"33678":5,"33679":5,"33680":2,"33681":5,"33682":8,"33683":6,"33684":9,"33685":2,"33686":4,"33687":2,"33688":8,"33689":7,"33690":5,"33691":8,"33692":9,"33693":3,"33694":7,"33695":7,"33696":9,"33697":9,"33698":2,"33699":8,"33700":6,"33701":5,"33702":8,"33703":9,"33704":9,"33705":7,"33706":7,"33707":3,"33708":8,"33709":7,"33710":5,"33711":6,"33712":8,"33713":7,"33714":8,"33715":8,"33716":9,"33717":3,"33718":8,"33719":7,"33720":6,"33721":8,"33722":5,"33723":9,"33724":7,"33725":7,"33726":8,"33727":4,"33728":9,"33729":3,"33730":2,"33731":1,"33732":1,"33733":7,"33734":9,"33735":5,"33736":8,"33737":9,"33738":9,"33739":5,"33740":9,"33741":8,"33742":7,"33743":5,"33744":2,"33745":9,"33746":9,"33747":2,"33748":8,"33749":7,"33750":10,"33751":2,"33752":6,"33753":1,"33754":5,"33755":1,"33756":7,"33757":9,"33758":3,"33759":9,"33760":6,"33761":7,"33762":5,"33763":8,"33764":9,"33765":4,"33766":2,"33767":9,"33768":7,"33769":8,"33770":4,"33771":5,"33772":9,"33773":8,"33774":7,"33775":6,"33776":9,"33777":7,"33778":3,"33779":8,"33780":5,"33781":7,"33782":2,"33783":8,"33784":8,"33785":7,"33786":7,"33787":3,"33788":8,"33789":9,"33790":7,"33791":7,"33792":9,"33793":7,"33794":5,"33795":2,"33796":6,"33797":4,"33798":1,"33799":5,"33800":5,"33801":7,"33802":3,"33803":7,"33804":3,"33805":7,"33806":6,"33807":9,"33808":8,"33809":5,"33810":3,"33811":1,"33812":7,"33813":8,"33814":8,"33815":9,"33816":8,"33817":8,"33818":7,"33819":2,"33820":5,"33821":7,"33822":7,"33823":7,"33824":7,"33825":8,"33826":9,"33827":8,"33828":10,"33829":7,"33830":6,"33831":7,"33832":9,"33833":7,"33834":8,"33835":9,"33836":1,"33837":1,"33838":7,"33839":4,"33840":10,"33841":4,"33842":7,"33843":8,"33844":5,"33845":9,"33846":2,"33847":2,"33848":8,"33849":8,"33850":2,"33851":8,"33852":2,"33853":5,"33854":8,"33855":8,"33856":7,"33857":7,"33858":4,"33859":8,"33860":7,"33861":3,"33862":2,"33863":2,"33864":5,"33865":4,"33866":8,"33867":1,"33868":3,"33869":8,"33870":3,"33871":7,"33872":5,"33873":7,"33874":7,"33875":8,"33876":5,"33877":5,"33878":7,"33879":7,"33880":10,"33881":7,"33882":7,"33883":8,"33884":8,"33885":9,"33886":7,"33887":2,"33888":2,"33889":7,"33890":3,"33891":7,"33892":7,"33893":2,"33894":7,"33895":7,"33896":9,"33897":10,"33898":8,"33899":3,"33900":7,"33901":7,"33902":7,"33903":1,"33904":9,"33905":3,"33906":9,"33907":5,"33908":3,"33909":4,"33910":8,"33911":9,"33912":7,"33913":7,"33914":4,"33915":10,"33916":1,"33917":8,"33918":5,"33919":7,"33920":8,"33921":8,"33922":9,"33923":9,"33924":8,"33925":8,"33926":9,"33927":8,"33928":5,"33929":9,"33930":8,"33931":9,"33932":2,"33933":8,"33934":7,"33935":9,"33936":5,"33937":3,"33938":2,"33939":5,"33940":9,"33941":8,"33942":2,"33943":8,"33944":4,"33945":7,"33946":7,"33947":5,"33948":8,"33949":5,"33950":5,"33951":2,"33952":8,"33953":9,"33954":10,"33955":9,"33956":8,"33957":9,"33958":7,"33959":4,"33960":5,"33961":7,"33962":7,"33963":2,"33964":4,"33965":8,"33966":2,"33967":8,"33968":8,"33969":5,"33970":6,"33971":8,"33972":6,"33973":4,"33974":7,"33975":5,"33976":8,"33977":5,"33978":8,"33979":8,"33980":3,"33981":1,"33982":4,"33983":2,"33984":2,"33985":5,"33986":7,"33987":7,"33988":4,"33989":8,"33990":5,"33991":5,"33992":3,"33993":7,"33994":5,"33995":1,"33996":7,"33997":8,"33998":9,"33999":6,"34000":5,"34001":9,"34002":5,"34003":8,"34004":5,"34005":5,"34006":7,"34007":1,"34008":1,"34009":8,"34010":7,"34011":8,"34012":9,"34013":2,"34014":5,"34015":8,"34016":8,"34017":4,"34018":8,"34019":9,"34020":9,"34021":5,"34022":7,"34023":7,"34024":4,"34025":7,"34026":9,"34027":7,"34028":2,"34029":7,"34030":9,"34031":10,"34032":7,"34033":7,"34034":7,"34035":9,"34036":8,"34037":10,"34038":8,"34039":2,"34040":7,"34041":8,"34042":8,"34043":5,"34044":2,"34045":9,"34046":7,"34047":7,"34048":2,"34049":5,"34050":6,"34051":4,"34052":6,"34053":9,"34054":4,"34055":8,"34056":9,"34057":4,"34058":8,"34059":9,"34060":8,"34061":8,"34062":4,"34063":2,"34064":7,"34065":8,"34066":8,"34067":1,"34068":7,"34069":5,"34070":7,"34071":8,"34072":9,"34073":8,"34074":8,"34075":2,"34076":2,"34077":9,"34078":10,"34079":4,"34080":9,"34081":8,"34082":7,"34083":8,"34084":5,"34085":8,"34086":8,"34087":7,"34088":2,"34089":5,"34090":7,"34091":2,"34092":8,"34093":5,"34094":3,"34095":4,"34096":7,"34097":9,"34098":6,"34099":7,"34100":10,"34101":7,"34102":5,"34103":6,"34104":8,"34105":3,"34106":3,"34107":8,"34108":6,"34109":4,"34110":9,"34111":7,"34112":7,"34113":5,"34114":7,"34115":8,"34116":8,"34117":3,"34118":10,"34119":9,"34120":7,"34121":7,"34122":6,"34123":7,"34124":1,"34125":5,"34126":4,"34127":8,"34128":1,"34129":7,"34130":2,"34131":6,"34132":9,"34133":7,"34134":7,"34135":2,"34136":4,"34137":6,"34138":8,"34139":4,"34140":8,"34141":8,"34142":1,"34143":1,"34144":2,"34145":10,"34146":7,"34147":4,"34148":9,"34149":9,"34150":6,"34151":4,"34152":8,"34153":7,"34154":4,"34155":1,"34156":10,"34157":9,"34158":9,"34159":8,"34160":7,"34161":7,"34162":9,"34163":8,"34164":8,"34165":8,"34166":5,"34167":5,"34168":9,"34169":7,"34170":8,"34171":7,"34172":5,"34173":6,"34174":8,"34175":9,"34176":4,"34177":2,"34178":6,"34179":10,"34180":8,"34181":8,"34182":10,"34183":9,"34184":9,"34185":1,"34186":2,"34187":9,"34188":2,"34189":4,"34190":6,"34191":7,"34192":8,"34193":1,"34194":9,"34195":9,"34196":5,"34197":2,"34198":7,"34199":3,"34200":8,"34201":8,"34202":3,"34203":7,"34204":8,"34205":8,"34206":10,"34207":4,"34208":2,"34209":8,"34210":7,"34211":8,"34212":4,"34213":7,"34214":7,"34215":7,"34216":3,"34217":1,"34218":2,"34219":7,"34220":8,"34221":8,"34222":10,"34223":7,"34224":7,"34225":7,"34226":7,"34227":7,"34228":10,"34229":3,"34230":7,"34231":5,"34232":8,"34233":10,"34234":7,"34235":8,"34236":10,"34237":1,"34238":8,"34239":2,"34240":8,"34241":6,"34242":8,"34243":10,"34244":8,"34245":4,"34246":5,"34247":7,"34248":10,"34249":8,"34250":9,"34251":2,"34252":9,"34253":5,"34254":6,"34255":8,"34256":2,"34257":9,"34258":8,"34259":8,"34260":8,"34261":6,"34262":9,"34263":2,"34264":3,"34265":1,"34266":8,"34267":8,"34268":2,"34269":2,"34270":3,"34271":7,"34272":8,"34273":3,"34274":5,"34275":9,"34276":8,"34277":10,"34278":7,"34279":9,"34280":9,"34281":2,"34282":7,"34283":9,"34284":2,"34285":7,"34286":9,"34287":8,"34288":5,"34289":3,"34290":5,"34291":9,"34292":8,"34293":8,"34294":7,"34295":2,"34296":4,"34297":3,"34298":9,"34299":8,"34300":7,"34301":1,"34302":6,"34303":8,"34304":1,"34305":8,"34306":4,"34307":2,"34308":4,"34309":5,"34310":6,"34311":9,"34312":2,"34313":7,"34314":8,"34315":8,"34316":6,"34317":5,"34318":9,"34319":9,"34320":5,"34321":8,"34322":4,"34323":8,"34324":7,"34325":9,"34326":1,"34327":9,"34328":5,"34329":8,"34330":9,"34331":8,"34332":7,"34333":3,"34334":7,"34335":9,"34336":7,"34337":5,"34338":1,"34339":8,"34340":8,"34341":5,"34342":2,"34343":7,"34344":9,"34345":8,"34346":9,"34347":7,"34348":7,"34349":8,"34350":7,"34351":1,"34352":9,"34353":3,"34354":8,"34355":3,"34356":9,"34357":9,"34358":8,"34359":7,"34360":1,"34361":4,"34362":3,"34363":8,"34364":9,"34365":3,"34366":2,"34367":4,"34368":7,"34369":2,"34370":9,"34371":8,"34372":6,"34373":9,"34374":10,"34375":6,"34376":9,"34377":8,"34378":7,"34379":4,"34380":2,"34381":2,"34382":2,"34383":7,"34384":6,"34385":7,"34386":8,"34387":7,"34388":2,"34389":8,"34390":2,"34391":7,"34392":5,"34393":3,"34394":10,"34395":8,"34396":10,"34397":2,"34398":8,"34399":7,"34400":9,"34401":2,"34402":5,"34403":4,"34404":6,"34405":1,"34406":8,"34407":4,"34408":6,"34409":7,"34410":4,"34411":7,"34412":10,"34413":1,"34414":7,"34415":10,"34416":2,"34417":7,"34418":8,"34419":4,"34420":7,"34421":3,"34422":8,"34423":5,"34424":5,"34425":8,"34426":8,"34427":10,"34428":8,"34429":9,"34430":5,"34431":10,"34432":2,"34433":9,"34434":7,"34435":7,"34436":8,"34437":7,"34438":3,"34439":7,"34440":2,"34441":8,"34442":8,"34443":7,"34444":7,"34445":8,"34446":7,"34447":9,"34448":9,"34449":10,"34450":5,"34451":9,"34452":6,"34453":1,"34454":9,"34455":2,"34456":9,"34457":10,"34458":4,"34459":2,"34460":10,"34461":2,"34462":8,"34463":2,"34464":6,"34465":6,"34466":5,"34467":7,"34468":7,"34469":4,"34470":7,"34471":8,"34472":7,"34473":2,"34474":6,"34475":6,"34476":2,"34477":7,"34478":7,"34479":5,"34480":8,"34481":8,"34482":3,"34483":10,"34484":9,"34485":9,"34486":2,"34487":2,"34488":7,"34489":9,"34490":7,"34491":7,"34492":7,"34493":9,"34494":9,"34495":9,"34496":4,"34497":8,"34498":2,"34499":3,"34500":2,"34501":7,"34502":9,"34503":8,"34504":5,"34505":7,"34506":5,"34507":10,"34508":8,"34509":9,"34510":10,"34511":7,"34512":2,"34513":9,"34514":1,"34515":7,"34516":9,"34517":8,"34518":8,"34519":5,"34520":6,"34521":7,"34522":7,"34523":9,"34524":7,"34525":9,"34526":1,"34527":6,"34528":4,"34529":7,"34530":9,"34531":2,"34532":9,"34533":8,"34534":5,"34535":8,"34536":7,"34537":10,"34538":2,"34539":2,"34540":1,"34541":7,"34542":8,"34543":8,"34544":6,"34545":8,"34546":8,"34547":5,"34548":5,"34549":8,"34550":8,"34551":4,"34552":7,"34553":6,"34554":6,"34555":8,"34556":10,"34557":5,"34558":6,"34559":10,"34560":4,"34561":2,"34562":8,"34563":6,"34564":9,"34565":7,"34566":9,"34567":8,"34568":8,"34569":5,"34570":5,"34571":4,"34572":1,"34573":5,"34574":3,"34575":10,"34576":3,"34577":8,"34578":7,"34579":10,"34580":3,"34581":9,"34582":7,"34583":9,"34584":8,"34585":9,"34586":4,"34587":2,"34588":10,"34589":2,"34590":7,"34591":3,"34592":8,"34593":7,"34594":10,"34595":10,"34596":7,"34597":7,"34598":8,"34599":8,"34600":8,"34601":8,"34602":8,"34603":8,"34604":9,"34605":8,"34606":8,"34607":10,"34608":6,"34609":8,"34610":7,"34611":8,"34612":2,"34613":7,"34614":7,"34615":9,"34616":8,"34617":3,"34618":5,"34619":7,"34620":2,"34621":7,"34622":8,"34623":5,"34624":6,"34625":7,"34626":4,"34627":6,"34628":6,"34629":7,"34630":3,"34631":9,"34632":7,"34633":5,"34634":5,"34635":3,"34636":5,"34637":5,"34638":10,"34639":8,"34640":8,"34641":7,"34642":8,"34643":9,"34644":7,"34645":1,"34646":4,"34647":9,"34648":7,"34649":4,"34650":8,"34651":7,"34652":9,"34653":7,"34654":5,"34655":7,"34656":9,"34657":7,"34658":7,"34659":2,"34660":10,"34661":7,"34662":5,"34663":1,"34664":8,"34665":7,"34666":9,"34667":9,"34668":8,"34669":7,"34670":8,"34671":9,"34672":2,"34673":8,"34674":5,"34675":3,"34676":9,"34677":2,"34678":7,"34679":2,"34680":1,"34681":1,"34682":7,"34683":2,"34684":9,"34685":8,"34686":7,"34687":5,"34688":2,"34689":8,"34690":7,"34691":10,"34692":7,"34693":6,"34694":7,"34695":8,"34696":8,"34697":6,"34698":6,"34699":8,"34700":3,"34701":5,"34702":2,"34703":8,"34704":8,"34705":3,"34706":5,"34707":5,"34708":8,"34709":7,"34710":9,"34711":8,"34712":7,"34713":1,"34714":7,"34715":5,"34716":8,"34717":5,"34718":7,"34719":8,"34720":6,"34721":1,"34722":6,"34723":6,"34724":4,"34725":4,"34726":7,"34727":6,"34728":9,"34729":8,"34730":9,"34731":7,"34732":5,"34733":5,"34734":10,"34735":8,"34736":6,"34737":9,"34738":7,"34739":3,"34740":7,"34741":6,"34742":8,"34743":4,"34744":3,"34745":7,"34746":10,"34747":6,"34748":5,"34749":6,"34750":5,"34751":8,"34752":1,"34753":9,"34754":10,"34755":6,"34756":8,"34757":9,"34758":5,"34759":8,"34760":8,"34761":8,"34762":9,"34763":8,"34764":2,"34765":8,"34766":7,"34767":2,"34768":9,"34769":3,"34770":1,"34771":9,"34772":7,"34773":8,"34774":7,"34775":7,"34776":10,"34777":7,"34778":8,"34779":7,"34780":4,"34781":8,"34782":10,"34783":2,"34784":10,"34785":5,"34786":7,"34787":7,"34788":9,"34789":7,"34790":6,"34791":3,"34792":2,"34793":8,"34794":5,"34795":8,"34796":9,"34797":8,"34798":9,"34799":5,"34800":2,"34801":7,"34802":8,"34803":7,"34804":5,"34805":7,"34806":6,"34807":7,"34808":10,"34809":5,"34810":1,"34811":8,"34812":8,"34813":2,"34814":5,"34815":2,"34816":7,"34817":9,"34818":5,"34819":8,"34820":1,"34821":7,"34822":9,"34823":2,"34824":3,"34825":2,"34826":2,"34827":4,"34828":2,"34829":5,"34830":5,"34831":8,"34832":3,"34833":5,"34834":3,"34835":5,"34836":6,"34837":7,"34838":10,"34839":5,"34840":6,"34841":2,"34842":1,"34843":7,"34844":5,"34845":8,"34846":7,"34847":2,"34848":8,"34849":10,"34850":9,"34851":9,"34852":8,"34853":4,"34854":9,"34855":7,"34856":1,"34857":8,"34858":9,"34859":7,"34860":2,"34861":8,"34862":2,"34863":1,"34864":10,"34865":8,"34866":8,"34867":10,"34868":6,"34869":3,"34870":2,"34871":1,"34872":9,"34873":8,"34874":8,"34875":8,"34876":8,"34877":2,"34878":5,"34879":9,"34880":5,"34881":1,"34882":5,"34883":5,"34884":2,"34885":2,"34886":1,"34887":6,"34888":10,"34889":7,"34890":7,"34891":2,"34892":2,"34893":8,"34894":1,"34895":3,"34896":9,"34897":7,"34898":5,"34899":9,"34900":1,"34901":1,"34902":5,"34903":3,"34904":6,"34905":9,"34906":8,"34907":1,"34908":7,"34909":8,"34910":9,"34911":2,"34912":10,"34913":8,"34914":9,"34915":8,"34916":10,"34917":10,"34918":10,"34919":4,"34920":5,"34921":7,"34922":5,"34923":2,"34924":9,"34925":5,"34926":8,"34927":9,"34928":2,"34929":9,"34930":2,"34931":8,"34932":10,"34933":1,"34934":3,"34935":7,"34936":3,"34937":1,"34938":5,"34939":8,"34940":7,"34941":8,"34942":8,"34943":5,"34944":10,"34945":6,"34946":9,"34947":7,"34948":10,"34949":3,"34950":6,"34951":2,"34952":9,"34953":1,"34954":9,"34955":8,"34956":8,"34957":7,"34958":8,"34959":8,"34960":8,"34961":3,"34962":8,"34963":7,"34964":7,"34965":9,"34966":8,"34967":1,"34968":2,"34969":2,"34970":5,"34971":3,"34972":2,"34973":9,"34974":9,"34975":9,"34976":9,"34977":4,"34978":9,"34979":7,"34980":8,"34981":7,"34982":8,"34983":2,"34984":8,"34985":9,"34986":8,"34987":8,"34988":8,"34989":8,"34990":4,"34991":8,"34992":5,"34993":9,"34994":2,"34995":2,"34996":7,"34997":10,"34998":4,"34999":8,"35000":7,"35001":7,"35002":9,"35003":6,"35004":2,"35005":4,"35006":2,"35007":5,"35008":9,"35009":5,"35010":8,"35011":5,"35012":5,"35013":7,"35014":9,"35015":8,"35016":7,"35017":2,"35018":7,"35019":2,"35020":5,"35021":7,"35022":5,"35023":9,"35024":7,"35025":9,"35026":1,"35027":8,"35028":8,"35029":3,"35030":9,"35031":8,"35032":2,"35033":5,"35034":1,"35035":9,"35036":1,"35037":8,"35038":7,"35039":1,"35040":4,"35041":7,"35042":9,"35043":8,"35044":6,"35045":5,"35046":5,"35047":4,"35048":8,"35049":2,"35050":5,"35051":7,"35052":6,"35053":8,"35054":5,"35055":2,"35056":9,"35057":8,"35058":9,"35059":7,"35060":7,"35061":2,"35062":2,"35063":9,"35064":7,"35065":7,"35066":5,"35067":5,"35068":1,"35069":3,"35070":9,"35071":9,"35072":8,"35073":2,"35074":6,"35075":5,"35076":7,"35077":4,"35078":8,"35079":10,"35080":9,"35081":5,"35082":8,"35083":6,"35084":5,"35085":6,"35086":6,"35087":3,"35088":8,"35089":8,"35090":3,"35091":8,"35092":9,"35093":3,"35094":8,"35095":7,"35096":5,"35097":7,"35098":7,"35099":1,"35100":7,"35101":7,"35102":8,"35103":9,"35104":10,"35105":2,"35106":3,"35107":7,"35108":9,"35109":7,"35110":2,"35111":5,"35112":4,"35113":3,"35114":7,"35115":8,"35116":8,"35117":3,"35118":6,"35119":9,"35120":8,"35121":5,"35122":9,"35123":9,"35124":2,"35125":7,"35126":2,"35127":7,"35128":5,"35129":5,"35130":5,"35131":6,"35132":9,"35133":4,"35134":8,"35135":7,"35136":8,"35137":1,"35138":8,"35139":6,"35140":8,"35141":6,"35142":9,"35143":4,"35144":6,"35145":10,"35146":8,"35147":10,"35148":1,"35149":6,"35150":2,"35151":5,"35152":2,"35153":8,"35154":8,"35155":10,"35156":3,"35157":5,"35158":6,"35159":7,"35160":10,"35161":8,"35162":7,"35163":4,"35164":8,"35165":5,"35166":9,"35167":7,"35168":9,"35169":2,"35170":7,"35171":8,"35172":5,"35173":8,"35174":9,"35175":10,"35176":7,"35177":2,"35178":8,"35179":5,"35180":7,"35181":2,"35182":9,"35183":2,"35184":8,"35185":4,"35186":5,"35187":3,"35188":7,"35189":9,"35190":3,"35191":7,"35192":8,"35193":3,"35194":8,"35195":9,"35196":8,"35197":4,"35198":1,"35199":8,"35200":2,"35201":5,"35202":2,"35203":7,"35204":7,"35205":2,"35206":5,"35207":1,"35208":6,"35209":3,"35210":1,"35211":5,"35212":8,"35213":7,"35214":9,"35215":4,"35216":5,"35217":8,"35218":10,"35219":10,"35220":9,"35221":9,"35222":7,"35223":10,"35224":7,"35225":8,"35226":2,"35227":2,"35228":8,"35229":6,"35230":10,"35231":1,"35232":4,"35233":7,"35234":2,"35235":6,"35236":8,"35237":1,"35238":10,"35239":7,"35240":7,"35241":9,"35242":1,"35243":9,"35244":4,"35245":7,"35246":1,"35247":9,"35248":2,"35249":9,"35250":6,"35251":7,"35252":1,"35253":6,"35254":7,"35255":7,"35256":7,"35257":3,"35258":7,"35259":3,"35260":2,"35261":7,"35262":8,"35263":5,"35264":1,"35265":10,"35266":8,"35267":6,"35268":9,"35269":6,"35270":8,"35271":8,"35272":4,"35273":2,"35274":3,"35275":7,"35276":9,"35277":8,"35278":2,"35279":8,"35280":5,"35281":9,"35282":8,"35283":7,"35284":9,"35285":7,"35286":2,"35287":5,"35288":7,"35289":9,"35290":6,"35291":4,"35292":5,"35293":7,"35294":7,"35295":8,"35296":9,"35297":1,"35298":10,"35299":7,"35300":8,"35301":9,"35302":8,"35303":4,"35304":4,"35305":2,"35306":7,"35307":8,"35308":8,"35309":9,"35310":2,"35311":9,"35312":4,"35313":8,"35314":4,"35315":9,"35316":5,"35317":7,"35318":3,"35319":9,"35320":10,"35321":8,"35322":5,"35323":2,"35324":9,"35325":5,"35326":5,"35327":2,"35328":7,"35329":7,"35330":3,"35331":9,"35332":9,"35333":7,"35334":7,"35335":4,"35336":9,"35337":7,"35338":7,"35339":3,"35340":7,"35341":2,"35342":10,"35343":1,"35344":8,"35345":2,"35346":1,"35347":7,"35348":8,"35349":7,"35350":2,"35351":2,"35352":5,"35353":8,"35354":9,"35355":7,"35356":7,"35357":10,"35358":8,"35359":5,"35360":6,"35361":8,"35362":4,"35363":8,"35364":9,"35365":7,"35366":8,"35367":8,"35368":7,"35369":4,"35370":4,"35371":3,"35372":8,"35373":8,"35374":5,"35375":7,"35376":1,"35377":2,"35378":8,"35379":7,"35380":3,"35381":7,"35382":7,"35383":6,"35384":7,"35385":7,"35386":7,"35387":4,"35388":7,"35389":8,"35390":1,"35391":7,"35392":8,"35393":7,"35394":7,"35395":2,"35396":6,"35397":7,"35398":9,"35399":2,"35400":1,"35401":7,"35402":10,"35403":7,"35404":8,"35405":7,"35406":9,"35407":7,"35408":5,"35409":3,"35410":1,"35411":5,"35412":5,"35413":9,"35414":7,"35415":9,"35416":3,"35417":6,"35418":6,"35419":5,"35420":7,"35421":4,"35422":10,"35423":4,"35424":7,"35425":7,"35426":10,"35427":8,"35428":7,"35429":7,"35430":8,"35431":7,"35432":8,"35433":4,"35434":2,"35435":6,"35436":7,"35437":9,"35438":10,"35439":1,"35440":1,"35441":3,"35442":8,"35443":2,"35444":3,"35445":9,"35446":8,"35447":7,"35448":7,"35449":9,"35450":2,"35451":3,"35452":9,"35453":7,"35454":9,"35455":10,"35456":8,"35457":8,"35458":5,"35459":5,"35460":5,"35461":5,"35462":8,"35463":7,"35464":9,"35465":9,"35466":8,"35467":7,"35468":1,"35469":5,"35470":7,"35471":7,"35472":8,"35473":2,"35474":5,"35475":5,"35476":5,"35477":9,"35478":5,"35479":3,"35480":9,"35481":5,"35482":9,"35483":7,"35484":8,"35485":9,"35486":5,"35487":10,"35488":7,"35489":8,"35490":7,"35491":8,"35492":8,"35493":3,"35494":2,"35495":9,"35496":10,"35497":9,"35498":9,"35499":9,"35500":2,"35501":7,"35502":7,"35503":5,"35504":4,"35505":7,"35506":8,"35507":8,"35508":9,"35509":9,"35510":1,"35511":9,"35512":9,"35513":8,"35514":1,"35515":8,"35516":7,"35517":6,"35518":5,"35519":6,"35520":5,"35521":5,"35522":8,"35523":7,"35524":9,"35525":7,"35526":1,"35527":9,"35528":9,"35529":7,"35530":4,"35531":8,"35532":6,"35533":8,"35534":3,"35535":8,"35536":8,"35537":8,"35538":10,"35539":7,"35540":7,"35541":7,"35542":9,"35543":9,"35544":4,"35545":5,"35546":8,"35547":9,"35548":4,"35549":9,"35550":5,"35551":7,"35552":1,"35553":1,"35554":7,"35555":7,"35556":10,"35557":10,"35558":2,"35559":1,"35560":9,"35561":5,"35562":7,"35563":5,"35564":5,"35565":8,"35566":6,"35567":8,"35568":8,"35569":9,"35570":3,"35571":9,"35572":7,"35573":5,"35574":7,"35575":2,"35576":8,"35577":3,"35578":9,"35579":6,"35580":4,"35581":9,"35582":2,"35583":8,"35584":2,"35585":7,"35586":7,"35587":10,"35588":8,"35589":7,"35590":9,"35591":7,"35592":7,"35593":4,"35594":8,"35595":10,"35596":4,"35597":10,"35598":7,"35599":7,"35600":7,"35601":7,"35602":7,"35603":10,"35604":7,"35605":8,"35606":1,"35607":8,"35608":5,"35609":6,"35610":9,"35611":8,"35612":7,"35613":5,"35614":7,"35615":5,"35616":8,"35617":7,"35618":9,"35619":5,"35620":2,"35621":8,"35622":7,"35623":8,"35624":3,"35625":9,"35626":9,"35627":8,"35628":8,"35629":9,"35630":8,"35631":8,"35632":2,"35633":6,"35634":10,"35635":10,"35636":8,"35637":9,"35638":4,"35639":5,"35640":2,"35641":5,"35642":9,"35643":6,"35644":5,"35645":8,"35646":5,"35647":2,"35648":2,"35649":7,"35650":9,"35651":1,"35652":9,"35653":8,"35654":4,"35655":7,"35656":9,"35657":7,"35658":4,"35659":10,"35660":8,"35661":9,"35662":2,"35663":6,"35664":7,"35665":7,"35666":5,"35667":7,"35668":9,"35669":9,"35670":9,"35671":8,"35672":1,"35673":10,"35674":4,"35675":7,"35676":7,"35677":10,"35678":8,"35679":1,"35680":5,"35681":9,"35682":10,"35683":8,"35684":2,"35685":2,"35686":8,"35687":8,"35688":8,"35689":9,"35690":6,"35691":8,"35692":8,"35693":8,"35694":4,"35695":7,"35696":7,"35697":7,"35698":1,"35699":5,"35700":7,"35701":8,"35702":1,"35703":8,"35704":5,"35705":8,"35706":6,"35707":5,"35708":9,"35709":9,"35710":5,"35711":2,"35712":2,"35713":7,"35714":8,"35715":8,"35716":9,"35717":7,"35718":8,"35719":7,"35720":7,"35721":2,"35722":9,"35723":7,"35724":8,"35725":3,"35726":8,"35727":10,"35728":9,"35729":8,"35730":7,"35731":8,"35732":8,"35733":2,"35734":2,"35735":7,"35736":7,"35737":7,"35738":9,"35739":9,"35740":10,"35741":2,"35742":4,"35743":10,"35744":7,"35745":7,"35746":1,"35747":8,"35748":9,"35749":3,"35750":5,"35751":10,"35752":9,"35753":9,"35754":8,"35755":8,"35756":5,"35757":5,"35758":2,"35759":1,"35760":5,"35761":3,"35762":7,"35763":5,"35764":7,"35765":9,"35766":9,"35767":9,"35768":8,"35769":8,"35770":7,"35771":5,"35772":3,"35773":7,"35774":10,"35775":7,"35776":9,"35777":2,"35778":2,"35779":2,"35780":8,"35781":9,"35782":7,"35783":7,"35784":8,"35785":3,"35786":2,"35787":9,"35788":1,"35789":9,"35790":10,"35791":4,"35792":6,"35793":9,"35794":4,"35795":3,"35796":2,"35797":3,"35798":7,"35799":8,"35800":8,"35801":9,"35802":7,"35803":5,"35804":2,"35805":8,"35806":8,"35807":2,"35808":9,"35809":7,"35810":5,"35811":8,"35812":7,"35813":2,"35814":1,"35815":10,"35816":2,"35817":8,"35818":9,"35819":9,"35820":7,"35821":9,"35822":1,"35823":7,"35824":5,"35825":9,"35826":8,"35827":9,"35828":7,"35829":7,"35830":9,"35831":8,"35832":2,"35833":9,"35834":4,"35835":5,"35836":7,"35837":10,"35838":8,"35839":2,"35840":8,"35841":1,"35842":7,"35843":7,"35844":7,"35845":8,"35846":2,"35847":8,"35848":5,"35849":6,"35850":8,"35851":2,"35852":8,"35853":7,"35854":9,"35855":4,"35856":9,"35857":6,"35858":7,"35859":7,"35860":9,"35861":10,"35862":9,"35863":8,"35864":3,"35865":3,"35866":8,"35867":10,"35868":7,"35869":5,"35870":8,"35871":7,"35872":7,"35873":7,"35874":9,"35875":8,"35876":7,"35877":7,"35878":6,"35879":2,"35880":7,"35881":9,"35882":8,"35883":1,"35884":4,"35885":1,"35886":9,"35887":3,"35888":9,"35889":8,"35890":5,"35891":6,"35892":5,"35893":2,"35894":5,"35895":9,"35896":3,"35897":2,"35898":9,"35899":9,"35900":7,"35901":5,"35902":8,"35903":6,"35904":7,"35905":9,"35906":3,"35907":5,"35908":3,"35909":7,"35910":7,"35911":4,"35912":8,"35913":8,"35914":7,"35915":5,"35916":8,"35917":7,"35918":10,"35919":9,"35920":6,"35921":1,"35922":8,"35923":8,"35924":7,"35925":6,"35926":7,"35927":8,"35928":7,"35929":5,"35930":10,"35931":2,"35932":5,"35933":9,"35934":6,"35935":8,"35936":5,"35937":7,"35938":2,"35939":7,"35940":8,"35941":8,"35942":9,"35943":7,"35944":2,"35945":1,"35946":8,"35947":6,"35948":8,"35949":3,"35950":9,"35951":2,"35952":7,"35953":7,"35954":2,"35955":5,"35956":7,"35957":6,"35958":4,"35959":9,"35960":5,"35961":9,"35962":8,"35963":5,"35964":8,"35965":7,"35966":9,"35967":4,"35968":7,"35969":9,"35970":8,"35971":2,"35972":7,"35973":5,"35974":8,"35975":4,"35976":2,"35977":7,"35978":8,"35979":7,"35980":9,"35981":7,"35982":5,"35983":9,"35984":6,"35985":8,"35986":7,"35987":2,"35988":5,"35989":2,"35990":3,"35991":5,"35992":5,"35993":8,"35994":8,"35995":9,"35996":5,"35997":2,"35998":9,"35999":7,"36000":2,"36001":10,"36002":8,"36003":2,"36004":2,"36005":10,"36006":5,"36007":2,"36008":2,"36009":2,"36010":7,"36011":10,"36012":9,"36013":8,"36014":9,"36015":8,"36016":8,"36017":8,"36018":9,"36019":7,"36020":7,"36021":7,"36022":9,"36023":10,"36024":7,"36025":10,"36026":8,"36027":7,"36028":6,"36029":7,"36030":2,"36031":9,"36032":7,"36033":8,"36034":8,"36035":3,"36036":6,"36037":7,"36038":8,"36039":3,"36040":6,"36041":5,"36042":1,"36043":1,"36044":3,"36045":7,"36046":1,"36047":9,"36048":2,"36049":9,"36050":8,"36051":4,"36052":7,"36053":2,"36054":2,"36055":3,"36056":9,"36057":8,"36058":7,"36059":5,"36060":9,"36061":9,"36062":10,"36063":5,"36064":5,"36065":6,"36066":8,"36067":8,"36068":7,"36069":6,"36070":7,"36071":9,"36072":3,"36073":2,"36074":1,"36075":2,"36076":4,"36077":7,"36078":9,"36079":2,"36080":5,"36081":2,"36082":8,"36083":8,"36084":9,"36085":2,"36086":2,"36087":7,"36088":6,"36089":10,"36090":1,"36091":8,"36092":8,"36093":5,"36094":7,"36095":7,"36096":8,"36097":4,"36098":4,"36099":5,"36100":7,"36101":7,"36102":7,"36103":9,"36104":5,"36105":9,"36106":2,"36107":10,"36108":9,"36109":5,"36110":7,"36111":9,"36112":3,"36113":2,"36114":7,"36115":4,"36116":3,"36117":8,"36118":7,"36119":3,"36120":2,"36121":5,"36122":5,"36123":9,"36124":9,"36125":8,"36126":3,"36127":2,"36128":5,"36129":8,"36130":2,"36131":4,"36132":8,"36133":5,"36134":3,"36135":1,"36136":10,"36137":9,"36138":10,"36139":6,"36140":8,"36141":5,"36142":2,"36143":7,"36144":10,"36145":7,"36146":8,"36147":5,"36148":8,"36149":5,"36150":8,"36151":10,"36152":6,"36153":3,"36154":9,"36155":3,"36156":10,"36157":8,"36158":8,"36159":8,"36160":9,"36161":2,"36162":8,"36163":2,"36164":7,"36165":7,"36166":4,"36167":2,"36168":9,"36169":1,"36170":10,"36171":5,"36172":7,"36173":2,"36174":4,"36175":2,"36176":7,"36177":8,"36178":9,"36179":8,"36180":9,"36181":9,"36182":8,"36183":9,"36184":8,"36185":8,"36186":2,"36187":7,"36188":6,"36189":2,"36190":7,"36191":2,"36192":9,"36193":7,"36194":2,"36195":8,"36196":1,"36197":8,"36198":1,"36199":1,"36200":7,"36201":8,"36202":7,"36203":6,"36204":9,"36205":6,"36206":7,"36207":2,"36208":5,"36209":8,"36210":7,"36211":7,"36212":2,"36213":8,"36214":7,"36215":8,"36216":1,"36217":2,"36218":5,"36219":2,"36220":7,"36221":9,"36222":9,"36223":4,"36224":7,"36225":10,"36226":8,"36227":7,"36228":2,"36229":7,"36230":9,"36231":5,"36232":2,"36233":9,"36234":8,"36235":8,"36236":7,"36237":5,"36238":2,"36239":1,"36240":5,"36241":7,"36242":2,"36243":5,"36244":5,"36245":8,"36246":2,"36247":9,"36248":10,"36249":7,"36250":7,"36251":5,"36252":10,"36253":2,"36254":9,"36255":7,"36256":3,"36257":3,"36258":8,"36259":2,"36260":8,"36261":9,"36262":1,"36263":7,"36264":8,"36265":7,"36266":9,"36267":4,"36268":2,"36269":8,"36270":8,"36271":8,"36272":8,"36273":4,"36274":8,"36275":5,"36276":7,"36277":8,"36278":8,"36279":5,"36280":7,"36281":8,"36282":7,"36283":9,"36284":5,"36285":5,"36286":4,"36287":10,"36288":10,"36289":7,"36290":5,"36291":7,"36292":7,"36293":2,"36294":1,"36295":8,"36296":6,"36297":8,"36298":1,"36299":2,"36300":6,"36301":5,"36302":9,"36303":6,"36304":7,"36305":7,"36306":8,"36307":1,"36308":2,"36309":10,"36310":2,"36311":9,"36312":3,"36313":3,"36314":7,"36315":10,"36316":7,"36317":7,"36318":8,"36319":8,"36320":7,"36321":9,"36322":3,"36323":2,"36324":5,"36325":5,"36326":8,"36327":2,"36328":5,"36329":7,"36330":7,"36331":7,"36332":7,"36333":4,"36334":7,"36335":8,"36336":8,"36337":2,"36338":8,"36339":2,"36340":7,"36341":7,"36342":9,"36343":4,"36344":3,"36345":9,"36346":10,"36347":7,"36348":8,"36349":2,"36350":7,"36351":7,"36352":7,"36353":8,"36354":7,"36355":9,"36356":9,"36357":7,"36358":7,"36359":8,"36360":9,"36361":9,"36362":7,"36363":8,"36364":10,"36365":7,"36366":5,"36367":7,"36368":2,"36369":7,"36370":9,"36371":1,"36372":1,"36373":1,"36374":9,"36375":9,"36376":8,"36377":7,"36378":8,"36379":9,"36380":7,"36381":8,"36382":4,"36383":8,"36384":9,"36385":7,"36386":7,"36387":7,"36388":8,"36389":3,"36390":10,"36391":10,"36392":8,"36393":2,"36394":7,"36395":9,"36396":9,"36397":8,"36398":3,"36399":7,"36400":9,"36401":10,"36402":8,"36403":8,"36404":1,"36405":9,"36406":2,"36407":6,"36408":8,"36409":10,"36410":6,"36411":7,"36412":10,"36413":5,"36414":10,"36415":6,"36416":4,"36417":9,"36418":7,"36419":8,"36420":9,"36421":10,"36422":5,"36423":5,"36424":9,"36425":9,"36426":7,"36427":2,"36428":5,"36429":7,"36430":7,"36431":2,"36432":3,"36433":5,"36434":7,"36435":8,"36436":6,"36437":1,"36438":7,"36439":4,"36440":7,"36441":9,"36442":3,"36443":5,"36444":8,"36445":9,"36446":7,"36447":8,"36448":2,"36449":5,"36450":8,"36451":8,"36452":5,"36453":9,"36454":7,"36455":6,"36456":5,"36457":6,"36458":7,"36459":5,"36460":9,"36461":2,"36462":9,"36463":2,"36464":8,"36465":7,"36466":8,"36467":8,"36468":9,"36469":7,"36470":8,"36471":5,"36472":8,"36473":8,"36474":8,"36475":10,"36476":8,"36477":8,"36478":5,"36479":7,"36480":5,"36481":10,"36482":8,"36483":9,"36484":9,"36485":9,"36486":10,"36487":9,"36488":7,"36489":10,"36490":9,"36491":2,"36492":7,"36493":1,"36494":8,"36495":9,"36496":9,"36497":1,"36498":5,"36499":5,"36500":8,"36501":6,"36502":7,"36503":2,"36504":8,"36505":6,"36506":2,"36507":1,"36508":8,"36509":1,"36510":5,"36511":9,"36512":9,"36513":4,"36514":3,"36515":6,"36516":2,"36517":7,"36518":7,"36519":6,"36520":2,"36521":2,"36522":6,"36523":5,"36524":9,"36525":1,"36526":8,"36527":3,"36528":3,"36529":8,"36530":2,"36531":9,"36532":7,"36533":7,"36534":10,"36535":8,"36536":2,"36537":2,"36538":2,"36539":10,"36540":8,"36541":5,"36542":9,"36543":9,"36544":9,"36545":5,"36546":5,"36547":2,"36548":8,"36549":7,"36550":7,"36551":2,"36552":7,"36553":7,"36554":9,"36555":10,"36556":3,"36557":9,"36558":4,"36559":3,"36560":6,"36561":5,"36562":9,"36563":9,"36564":8,"36565":9,"36566":2,"36567":2,"36568":6,"36569":9,"36570":8,"36571":7,"36572":3,"36573":9,"36574":8,"36575":5,"36576":7,"36577":8,"36578":7,"36579":7,"36580":7,"36581":8,"36582":8,"36583":5,"36584":6,"36585":5,"36586":10,"36587":8,"36588":2,"36589":8,"36590":2,"36591":6,"36592":8,"36593":6,"36594":2,"36595":9,"36596":6,"36597":10,"36598":4,"36599":1,"36600":3,"36601":3,"36602":9,"36603":7,"36604":2,"36605":8,"36606":10,"36607":9,"36608":10,"36609":5,"36610":8,"36611":4,"36612":7,"36613":7,"36614":7,"36615":8,"36616":1,"36617":1,"36618":1,"36619":7,"36620":7,"36621":5,"36622":9,"36623":8,"36624":4,"36625":7,"36626":10,"36627":8,"36628":7,"36629":10,"36630":6,"36631":5,"36632":8,"36633":9,"36634":8,"36635":3,"36636":5,"36637":5,"36638":2,"36639":8,"36640":8,"36641":7,"36642":8,"36643":9,"36644":1,"36645":10,"36646":10,"36647":9,"36648":7,"36649":3,"36650":4,"36651":9,"36652":8,"36653":9,"36654":4,"36655":7,"36656":8,"36657":10,"36658":6,"36659":4,"36660":6,"36661":8,"36662":9,"36663":4,"36664":2,"36665":6,"36666":5,"36667":4,"36668":6,"36669":1,"36670":2,"36671":7,"36672":9,"36673":7,"36674":10,"36675":10,"36676":8,"36677":7,"36678":9,"36679":4,"36680":8,"36681":9,"36682":8,"36683":7,"36684":8,"36685":8,"36686":7,"36687":2,"36688":7,"36689":8,"36690":6,"36691":8,"36692":9,"36693":10,"36694":4,"36695":2,"36696":10,"36697":5,"36698":8,"36699":2,"36700":2,"36701":5,"36702":3,"36703":7,"36704":9,"36705":7,"36706":7,"36707":9,"36708":5,"36709":6,"36710":2,"36711":5,"36712":7,"36713":3,"36714":2,"36715":4,"36716":5,"36717":9,"36718":1,"36719":5,"36720":7,"36721":8,"36722":7,"36723":7,"36724":8,"36725":8,"36726":6,"36727":3,"36728":7,"36729":9,"36730":9,"36731":8,"36732":8,"36733":8,"36734":7,"36735":8,"36736":9,"36737":4,"36738":3,"36739":7,"36740":9,"36741":9,"36742":7,"36743":7,"36744":5,"36745":8,"36746":8,"36747":7,"36748":1,"36749":8,"36750":7,"36751":9,"36752":9,"36753":8,"36754":5,"36755":5,"36756":9,"36757":2,"36758":10,"36759":8,"36760":8,"36761":5,"36762":7,"36763":2,"36764":8,"36765":4,"36766":2,"36767":4,"36768":10,"36769":4,"36770":9,"36771":9,"36772":7,"36773":2,"36774":8,"36775":8,"36776":4,"36777":4,"36778":9,"36779":5,"36780":2,"36781":8,"36782":9,"36783":7,"36784":8,"36785":7,"36786":8,"36787":8,"36788":9,"36789":1,"36790":8,"36791":9,"36792":8,"36793":9,"36794":2,"36795":3,"36796":4,"36797":7,"36798":4,"36799":9,"36800":6,"36801":7,"36802":10,"36803":3,"36804":7,"36805":5,"36806":6,"36807":7,"36808":9,"36809":9,"36810":1,"36811":6,"36812":8,"36813":5,"36814":9,"36815":10,"36816":5,"36817":2,"36818":7,"36819":8,"36820":9,"36821":10,"36822":7,"36823":9,"36824":7,"36825":7,"36826":8,"36827":9,"36828":7,"36829":5,"36830":2,"36831":9,"36832":4,"36833":2,"36834":8,"36835":8,"36836":4,"36837":4,"36838":8,"36839":5,"36840":2,"36841":2,"36842":1,"36843":7,"36844":1,"36845":8,"36846":1,"36847":4,"36848":2,"36849":8,"36850":10,"36851":6,"36852":9,"36853":9,"36854":7,"36855":8,"36856":3,"36857":8,"36858":2,"36859":7,"36860":2,"36861":7,"36862":10,"36863":4,"36864":10,"36865":2,"36866":5,"36867":9,"36868":8,"36869":5,"36870":8,"36871":1,"36872":7,"36873":9,"36874":7,"36875":9,"36876":7,"36877":10,"36878":7,"36879":5,"36880":5,"36881":7,"36882":1,"36883":7,"36884":2,"36885":7,"36886":3,"36887":7,"36888":2,"36889":5,"36890":3,"36891":8,"36892":2,"36893":9,"36894":7,"36895":8,"36896":3,"36897":8,"36898":8,"36899":6,"36900":10,"36901":9,"36902":7,"36903":10,"36904":9,"36905":1,"36906":8,"36907":9,"36908":9,"36909":2,"36910":5,"36911":5,"36912":10,"36913":4,"36914":3,"36915":9,"36916":7,"36917":6,"36918":8,"36919":9,"36920":7,"36921":9,"36922":1,"36923":7,"36924":1,"36925":1,"36926":8,"36927":5,"36928":9,"36929":9,"36930":9,"36931":7,"36932":7,"36933":5,"36934":7,"36935":8,"36936":8,"36937":7,"36938":9,"36939":2,"36940":5,"36941":7,"36942":9,"36943":8,"36944":7,"36945":8,"36946":8,"36947":10,"36948":8,"36949":8,"36950":8,"36951":10,"36952":6,"36953":7,"36954":6,"36955":8,"36956":8,"36957":3,"36958":6,"36959":3,"36960":8,"36961":9,"36962":8,"36963":7,"36964":4,"36965":1,"36966":3,"36967":10,"36968":8,"36969":8,"36970":2,"36971":7,"36972":7,"36973":5,"36974":8,"36975":9,"36976":2,"36977":7,"36978":9,"36979":8,"36980":2,"36981":2,"36982":8,"36983":4,"36984":8,"36985":4,"36986":3,"36987":7,"36988":7,"36989":5,"36990":5,"36991":2,"36992":8,"36993":2,"36994":8,"36995":2,"36996":5,"36997":2,"36998":5,"36999":7,"37000":2,"37001":1,"37002":2,"37003":10,"37004":7,"37005":7,"37006":8,"37007":6,"37008":1,"37009":9,"37010":3,"37011":7,"37012":7,"37013":9,"37014":6,"37015":8,"37016":9,"37017":7,"37018":1,"37019":6,"37020":10,"37021":8,"37022":8,"37023":8,"37024":10,"37025":9,"37026":5,"37027":2,"37028":5,"37029":5,"37030":7,"37031":5,"37032":2,"37033":7,"37034":7,"37035":1,"37036":8,"37037":7,"37038":2,"37039":5,"37040":5,"37041":9,"37042":1,"37043":7,"37044":8,"37045":9,"37046":8,"37047":2,"37048":7,"37049":2,"37050":7,"37051":9,"37052":7,"37053":2,"37054":6,"37055":1,"37056":2,"37057":8,"37058":8,"37059":5,"37060":3,"37061":6,"37062":10,"37063":2,"37064":10,"37065":9,"37066":5,"37067":7,"37068":8,"37069":2,"37070":7,"37071":7,"37072":9,"37073":8,"37074":9,"37075":3,"37076":9,"37077":5,"37078":8,"37079":1,"37080":5,"37081":7,"37082":3,"37083":1,"37084":7,"37085":8,"37086":9,"37087":8,"37088":7,"37089":8,"37090":7,"37091":8,"37092":8,"37093":9,"37094":7,"37095":5,"37096":2,"37097":7,"37098":7,"37099":7,"37100":2,"37101":5,"37102":9,"37103":7,"37104":8,"37105":8,"37106":3,"37107":6,"37108":8,"37109":4,"37110":5,"37111":8,"37112":7,"37113":4,"37114":7,"37115":4,"37116":4,"37117":9,"37118":7,"37119":5,"37120":4,"37121":1,"37122":5,"37123":7,"37124":7,"37125":9,"37126":2,"37127":8,"37128":1,"37129":9,"37130":9,"37131":4,"37132":1,"37133":7,"37134":5,"37135":5,"37136":7,"37137":10,"37138":8,"37139":1,"37140":8,"37141":9,"37142":8,"37143":9,"37144":9,"37145":8,"37146":9,"37147":7,"37148":7,"37149":8,"37150":10,"37151":7,"37152":2,"37153":6,"37154":7,"37155":5,"37156":4,"37157":3,"37158":8,"37159":8,"37160":2,"37161":7,"37162":8,"37163":7,"37164":9,"37165":8,"37166":5,"37167":9,"37168":9,"37169":1,"37170":3,"37171":10,"37172":4,"37173":4,"37174":2,"37175":3,"37176":8,"37177":5,"37178":8,"37179":9,"37180":8,"37181":9,"37182":7,"37183":7,"37184":8,"37185":8,"37186":2,"37187":9,"37188":4,"37189":5,"37190":8,"37191":1,"37192":2,"37193":5,"37194":8,"37195":4,"37196":5,"37197":10,"37198":7,"37199":9,"37200":1,"37201":7,"37202":9,"37203":4,"37204":4,"37205":8,"37206":10,"37207":8,"37208":8,"37209":7,"37210":6,"37211":7,"37212":7,"37213":7,"37214":9,"37215":9,"37216":1,"37217":5,"37218":10,"37219":2,"37220":9,"37221":8,"37222":8,"37223":6,"37224":2,"37225":5,"37226":1,"37227":8,"37228":7,"37229":10,"37230":4,"37231":2,"37232":2,"37233":4,"37234":4,"37235":8,"37236":5,"37237":10,"37238":9,"37239":2,"37240":7,"37241":5,"37242":3,"37243":7,"37244":6,"37245":6,"37246":2,"37247":8,"37248":2,"37249":7,"37250":7,"37251":5,"37252":8,"37253":1,"37254":9,"37255":3,"37256":9,"37257":5,"37258":2,"37259":9,"37260":8,"37261":6,"37262":7,"37263":6,"37264":4,"37265":7,"37266":7,"37267":7,"37268":7,"37269":7,"37270":6,"37271":2,"37272":2,"37273":1,"37274":8,"37275":6,"37276":9,"37277":8,"37278":9,"37279":1,"37280":2,"37281":10,"37282":9,"37283":8,"37284":5,"37285":9,"37286":9,"37287":8,"37288":8,"37289":7,"37290":9,"37291":8,"37292":8,"37293":5,"37294":7,"37295":7,"37296":7,"37297":2,"37298":8,"37299":3,"37300":8,"37301":10,"37302":7,"37303":7,"37304":7,"37305":3,"37306":10,"37307":8,"37308":9,"37309":1,"37310":1,"37311":8,"37312":9,"37313":6,"37314":8,"37315":2,"37316":7,"37317":5,"37318":7,"37319":7,"37320":3,"37321":7,"37322":6,"37323":8,"37324":7,"37325":9,"37326":7,"37327":10,"37328":7,"37329":8,"37330":6,"37331":9,"37332":7,"37333":3,"37334":9,"37335":2,"37336":7,"37337":9,"37338":4,"37339":7,"37340":10,"37341":10,"37342":2,"37343":7,"37344":3,"37345":7,"37346":5,"37347":7,"37348":7,"37349":7,"37350":7,"37351":7,"37352":7,"37353":7,"37354":7,"37355":4,"37356":7,"37357":7,"37358":2,"37359":8,"37360":4,"37361":8,"37362":9,"37363":2,"37364":6,"37365":9,"37366":8,"37367":8,"37368":2,"37369":5,"37370":5,"37371":8,"37372":8,"37373":9,"37374":1,"37375":7,"37376":5,"37377":9,"37378":9,"37379":6,"37380":9,"37381":9,"37382":4,"37383":7,"37384":6,"37385":9,"37386":2,"37387":5,"37388":6,"37389":8,"37390":9,"37391":7,"37392":8,"37393":5,"37394":3,"37395":5,"37396":4,"37397":10,"37398":4,"37399":7,"37400":10,"37401":7,"37402":4,"37403":8,"37404":6,"37405":7,"37406":2,"37407":8,"37408":3,"37409":8,"37410":7,"37411":4,"37412":7,"37413":9,"37414":5,"37415":10,"37416":8,"37417":7,"37418":1,"37419":7,"37420":2,"37421":8,"37422":8,"37423":3,"37424":10,"37425":7,"37426":5,"37427":9,"37428":3,"37429":2,"37430":8,"37431":7,"37432":8,"37433":4,"37434":2,"37435":8,"37436":7,"37437":10,"37438":2,"37439":6,"37440":2,"37441":8,"37442":6,"37443":3,"37444":1,"37445":5,"37446":9,"37447":5,"37448":7,"37449":3,"37450":2,"37451":8,"37452":7,"37453":8,"37454":5,"37455":9,"37456":7,"37457":7,"37458":7,"37459":4,"37460":5,"37461":8,"37462":2,"37463":8,"37464":9,"37465":7,"37466":9,"37467":8,"37468":10,"37469":8,"37470":7,"37471":9,"37472":9,"37473":9,"37474":4,"37475":7,"37476":6,"37477":6,"37478":7,"37479":4,"37480":8,"37481":1,"37482":1,"37483":9,"37484":2,"37485":9,"37486":4,"37487":10,"37488":2,"37489":8,"37490":7,"37491":7,"37492":7,"37493":5,"37494":8,"37495":6,"37496":9,"37497":3,"37498":1,"37499":8,"37500":8,"37501":7,"37502":9,"37503":7,"37504":9,"37505":8,"37506":10,"37507":7,"37508":8,"37509":9,"37510":1,"37511":9,"37512":10,"37513":9,"37514":4,"37515":5,"37516":1,"37517":1,"37518":8,"37519":2,"37520":9,"37521":5,"37522":7,"37523":3,"37524":7,"37525":4,"37526":5,"37527":4,"37528":9,"37529":9,"37530":7,"37531":8,"37532":3,"37533":9,"37534":8,"37535":4,"37536":7,"37537":7,"37538":4,"37539":8,"37540":8,"37541":4,"37542":8,"37543":4,"37544":6,"37545":8,"37546":5,"37547":6,"37548":9,"37549":9,"37550":7,"37551":5,"37552":10,"37553":6,"37554":9,"37555":8,"37556":7,"37557":2,"37558":7,"37559":8,"37560":8,"37561":1,"37562":2,"37563":8,"37564":7,"37565":9,"37566":6,"37567":2,"37568":7,"37569":9,"37570":8,"37571":5,"37572":9,"37573":3,"37574":8,"37575":7,"37576":8,"37577":3,"37578":9,"37579":7,"37580":7,"37581":7,"37582":4,"37583":9,"37584":7,"37585":8,"37586":5,"37587":8,"37588":7,"37589":9,"37590":1,"37591":7,"37592":7,"37593":8,"37594":3,"37595":5,"37596":8,"37597":7,"37598":9,"37599":9,"37600":8,"37601":5,"37602":7,"37603":10,"37604":5,"37605":7,"37606":2,"37607":4,"37608":8,"37609":7,"37610":7,"37611":8,"37612":8,"37613":7,"37614":8,"37615":9,"37616":3,"37617":4,"37618":9,"37619":7,"37620":2,"37621":7,"37622":9,"37623":8,"37624":9,"37625":8,"37626":8,"37627":8,"37628":2,"37629":9,"37630":9,"37631":2,"37632":6,"37633":2,"37634":9,"37635":5,"37636":9,"37637":9,"37638":9,"37639":9,"37640":5,"37641":9,"37642":7,"37643":7,"37644":7,"37645":8,"37646":5,"37647":7,"37648":3,"37649":8,"37650":2,"37651":7,"37652":7,"37653":6,"37654":5,"37655":10,"37656":7,"37657":1,"37658":7,"37659":8,"37660":9,"37661":3,"37662":8,"37663":7,"37664":2,"37665":7,"37666":7,"37667":8,"37668":7,"37669":4,"37670":10,"37671":8,"37672":10,"37673":7,"37674":3,"37675":1,"37676":9,"37677":4,"37678":3,"37679":7,"37680":5,"37681":7,"37682":7,"37683":8,"37684":7,"37685":8,"37686":6,"37687":5,"37688":1,"37689":5,"37690":2,"37691":10,"37692":9,"37693":3,"37694":8,"37695":7,"37696":2,"37697":9,"37698":7,"37699":8,"37700":7,"37701":2,"37702":10,"37703":7,"37704":7,"37705":9,"37706":8,"37707":4,"37708":7,"37709":6,"37710":3,"37711":4,"37712":2,"37713":9,"37714":8,"37715":3,"37716":8,"37717":5,"37718":1,"37719":5,"37720":3,"37721":7,"37722":8,"37723":5,"37724":2,"37725":10,"37726":7,"37727":7,"37728":8,"37729":1,"37730":9,"37731":7,"37732":5,"37733":10,"37734":7,"37735":8,"37736":5,"37737":8,"37738":5,"37739":9,"37740":8,"37741":2,"37742":9,"37743":3,"37744":9,"37745":8,"37746":3,"37747":8,"37748":3,"37749":2,"37750":2,"37751":2,"37752":2,"37753":9,"37754":7,"37755":8,"37756":8,"37757":8,"37758":1,"37759":8,"37760":8,"37761":5,"37762":7,"37763":8,"37764":10,"37765":7,"37766":6,"37767":1,"37768":6,"37769":4,"37770":9,"37771":7,"37772":6,"37773":7,"37774":8,"37775":4,"37776":8,"37777":9,"37778":7,"37779":9,"37780":7,"37781":1,"37782":8,"37783":8,"37784":7,"37785":7,"37786":9,"37787":10,"37788":8,"37789":6,"37790":7,"37791":7,"37792":7,"37793":9,"37794":4,"37795":8,"37796":7,"37797":8,"37798":8,"37799":2,"37800":9,"37801":9,"37802":7,"37803":8,"37804":9,"37805":1,"37806":5,"37807":7,"37808":7,"37809":5,"37810":2,"37811":7,"37812":9,"37813":2,"37814":4,"37815":9,"37816":9,"37817":3,"37818":7,"37819":8,"37820":5,"37821":7,"37822":8,"37823":4,"37824":8,"37825":6,"37826":8,"37827":7,"37828":7,"37829":10,"37830":10,"37831":5,"37832":5,"37833":8,"37834":8,"37835":4,"37836":9,"37837":2,"37838":4,"37839":1,"37840":9,"37841":2,"37842":5,"37843":4,"37844":8,"37845":7,"37846":9,"37847":10,"37848":3,"37849":9,"37850":3,"37851":9,"37852":8,"37853":10,"37854":4,"37855":1,"37856":2,"37857":7,"37858":5,"37859":7,"37860":4,"37861":3,"37862":2,"37863":4,"37864":10,"37865":4,"37866":8,"37867":8,"37868":8,"37869":9,"37870":7,"37871":2,"37872":7,"37873":7,"37874":1,"37875":7,"37876":8,"37877":7,"37878":2,"37879":4,"37880":7,"37881":8,"37882":7,"37883":7,"37884":4,"37885":9,"37886":9,"37887":10,"37888":8,"37889":2,"37890":10,"37891":10,"37892":1,"37893":9,"37894":9,"37895":2,"37896":7,"37897":9,"37898":8,"37899":2,"37900":7,"37901":7,"37902":7,"37903":1,"37904":4,"37905":5,"37906":5,"37907":5,"37908":7,"37909":8,"37910":8,"37911":9,"37912":9,"37913":9,"37914":2,"37915":9,"37916":2,"37917":8,"37918":8,"37919":8,"37920":7,"37921":4,"37922":7,"37923":9,"37924":9,"37925":5,"37926":5,"37927":9,"37928":8,"37929":4,"37930":10,"37931":2,"37932":1,"37933":8,"37934":8,"37935":2,"37936":2,"37937":6,"37938":9,"37939":6,"37940":8,"37941":8,"37942":5,"37943":8,"37944":7,"37945":5,"37946":2,"37947":2,"37948":9,"37949":3,"37950":8,"37951":7,"37952":7,"37953":8,"37954":7,"37955":9,"37956":4,"37957":3,"37958":6,"37959":7,"37960":7,"37961":9,"37962":6,"37963":2,"37964":7,"37965":8,"37966":10,"37967":2,"37968":9,"37969":5,"37970":5,"37971":7,"37972":3,"37973":3,"37974":10,"37975":6,"37976":5,"37977":5,"37978":5,"37979":2,"37980":4,"37981":7,"37982":8,"37983":5,"37984":4,"37985":2,"37986":5,"37987":5,"37988":2,"37989":8,"37990":10,"37991":2,"37992":10,"37993":7,"37994":7,"37995":8,"37996":2,"37997":7,"37998":1,"37999":9,"38000":8,"38001":8,"38002":9,"38003":1,"38004":3,"38005":7,"38006":2,"38007":3,"38008":8,"38009":7,"38010":4,"38011":2,"38012":6,"38013":8,"38014":9,"38015":8,"38016":7,"38017":5,"38018":8,"38019":1,"38020":7,"38021":5,"38022":10,"38023":10,"38024":7,"38025":2,"38026":1,"38027":2,"38028":2,"38029":4,"38030":6,"38031":2,"38032":8,"38033":7,"38034":5,"38035":1,"38036":3,"38037":2,"38038":4,"38039":8,"38040":5,"38041":7,"38042":5,"38043":7,"38044":1,"38045":7,"38046":9,"38047":8,"38048":7,"38049":3,"38050":2,"38051":2,"38052":5,"38053":1,"38054":9,"38055":2,"38056":9,"38057":2,"38058":1,"38059":7,"38060":9,"38061":7,"38062":1,"38063":2,"38064":8,"38065":8,"38066":3,"38067":6,"38068":10,"38069":8,"38070":1,"38071":9,"38072":2,"38073":10,"38074":6,"38075":3,"38076":9,"38077":9,"38078":7,"38079":7,"38080":8,"38081":4,"38082":7,"38083":6,"38084":6,"38085":8,"38086":1,"38087":8,"38088":5,"38089":5,"38090":8,"38091":3,"38092":2,"38093":7,"38094":1,"38095":8,"38096":7,"38097":5,"38098":2,"38099":2,"38100":7,"38101":9,"38102":9,"38103":8,"38104":10,"38105":8,"38106":5,"38107":8,"38108":8,"38109":8,"38110":4,"38111":8,"38112":2,"38113":7,"38114":6,"38115":9,"38116":9,"38117":8,"38118":2,"38119":8,"38120":3,"38121":9,"38122":9,"38123":9,"38124":9,"38125":5,"38126":7,"38127":8,"38128":7,"38129":8,"38130":9,"38131":10,"38132":4,"38133":3,"38134":2,"38135":4,"38136":5,"38137":9,"38138":10,"38139":5,"38140":7,"38141":8,"38142":10,"38143":2,"38144":8,"38145":2,"38146":2,"38147":2,"38148":7,"38149":1,"38150":8,"38151":7,"38152":6,"38153":8,"38154":2,"38155":7,"38156":5,"38157":6,"38158":1,"38159":1,"38160":1,"38161":5,"38162":1,"38163":8,"38164":9,"38165":9,"38166":1,"38167":1,"38168":7,"38169":8,"38170":9,"38171":3,"38172":10,"38173":7,"38174":8,"38175":8,"38176":9,"38177":9,"38178":3,"38179":7,"38180":7,"38181":8,"38182":5,"38183":4,"38184":8,"38185":2,"38186":5,"38187":2,"38188":7,"38189":2,"38190":7,"38191":7,"38192":5,"38193":8,"38194":7,"38195":7,"38196":1,"38197":8,"38198":5,"38199":5,"38200":2,"38201":9,"38202":7,"38203":5,"38204":9,"38205":1,"38206":1,"38207":5,"38208":7,"38209":2,"38210":5,"38211":8,"38212":5,"38213":9,"38214":9,"38215":8,"38216":10,"38217":9,"38218":3,"38219":2,"38220":2,"38221":2,"38222":3,"38223":4,"38224":3,"38225":5,"38226":9,"38227":5,"38228":7,"38229":10,"38230":7,"38231":1,"38232":8,"38233":5,"38234":8,"38235":8,"38236":9,"38237":10,"38238":7,"38239":6,"38240":7,"38241":9,"38242":8,"38243":2,"38244":8,"38245":9,"38246":9,"38247":8,"38248":7,"38249":7,"38250":10,"38251":2,"38252":8,"38253":8,"38254":6,"38255":10,"38256":8,"38257":2,"38258":9,"38259":7,"38260":8,"38261":7,"38262":9,"38263":6,"38264":1,"38265":8,"38266":4,"38267":9,"38268":9,"38269":9,"38270":7,"38271":6,"38272":7,"38273":2,"38274":10,"38275":9,"38276":2,"38277":9,"38278":1,"38279":2,"38280":9,"38281":9,"38282":8,"38283":7,"38284":7,"38285":7,"38286":5,"38287":7,"38288":2,"38289":3,"38290":7,"38291":3,"38292":9,"38293":3,"38294":9,"38295":9,"38296":6,"38297":1,"38298":8,"38299":10,"38300":5,"38301":7,"38302":3,"38303":4,"38304":3,"38305":2,"38306":9,"38307":8,"38308":7,"38309":9,"38310":4,"38311":5,"38312":3,"38313":7,"38314":2,"38315":3,"38316":8,"38317":8,"38318":1,"38319":4,"38320":8,"38321":8,"38322":8,"38323":1,"38324":5,"38325":7,"38326":1,"38327":2,"38328":8,"38329":8,"38330":1,"38331":7,"38332":5,"38333":8,"38334":5,"38335":9,"38336":9,"38337":8,"38338":8,"38339":9,"38340":7,"38341":1,"38342":7,"38343":7,"38344":7,"38345":7,"38346":2,"38347":2,"38348":8,"38349":1,"38350":2,"38351":8,"38352":7,"38353":7,"38354":10,"38355":7,"38356":2,"38357":5,"38358":9,"38359":6,"38360":9,"38361":8,"38362":8,"38363":9,"38364":8,"38365":7,"38366":5,"38367":1,"38368":5,"38369":9,"38370":9,"38371":7,"38372":7,"38373":2,"38374":6,"38375":8,"38376":9,"38377":2,"38378":8,"38379":10,"38380":9,"38381":7,"38382":9,"38383":8,"38384":8,"38385":8,"38386":10,"38387":8,"38388":5,"38389":7,"38390":7,"38391":9,"38392":4,"38393":1,"38394":8,"38395":5,"38396":7,"38397":9,"38398":5,"38399":8,"38400":10,"38401":5,"38402":8,"38403":7,"38404":4,"38405":7,"38406":8,"38407":9,"38408":5,"38409":3,"38410":8,"38411":8,"38412":8,"38413":7,"38414":5,"38415":6,"38416":9,"38417":7,"38418":2,"38419":7,"38420":9,"38421":7,"38422":5,"38423":2,"38424":7,"38425":4,"38426":7,"38427":2,"38428":1,"38429":1,"38430":8,"38431":10,"38432":9,"38433":1,"38434":9,"38435":1,"38436":10,"38437":9,"38438":9,"38439":2,"38440":1,"38441":8,"38442":2,"38443":9,"38444":10,"38445":4,"38446":2,"38447":6,"38448":8,"38449":8,"38450":6,"38451":9,"38452":8,"38453":8,"38454":5,"38455":7,"38456":7,"38457":5,"38458":7,"38459":8,"38460":7,"38461":2,"38462":9,"38463":9,"38464":8,"38465":5,"38466":5,"38467":1,"38468":8,"38469":7,"38470":9,"38471":5,"38472":5,"38473":5,"38474":7,"38475":5,"38476":10,"38477":4,"38478":7,"38479":9,"38480":5,"38481":9,"38482":1,"38483":6,"38484":7,"38485":3,"38486":9,"38487":4,"38488":5,"38489":8,"38490":7,"38491":10,"38492":2,"38493":1,"38494":8,"38495":9,"38496":3,"38497":2,"38498":9,"38499":5,"38500":2,"38501":9,"38502":9,"38503":8,"38504":8,"38505":8,"38506":8,"38507":8,"38508":3,"38509":7,"38510":8,"38511":9,"38512":8,"38513":1,"38514":9,"38515":9,"38516":8,"38517":10,"38518":1,"38519":8,"38520":5,"38521":4,"38522":5,"38523":8,"38524":3,"38525":1,"38526":7,"38527":3,"38528":8,"38529":8,"38530":6,"38531":3,"38532":8,"38533":7,"38534":2,"38535":8,"38536":7,"38537":8,"38538":3,"38539":7,"38540":9,"38541":1,"38542":7,"38543":7,"38544":2,"38545":7,"38546":8,"38547":7,"38548":7,"38549":7,"38550":2,"38551":10,"38552":1,"38553":2,"38554":9,"38555":8,"38556":6,"38557":7,"38558":8,"38559":9,"38560":10,"38561":8,"38562":2,"38563":7,"38564":3,"38565":7,"38566":7,"38567":7,"38568":3,"38569":8,"38570":9,"38571":5,"38572":7,"38573":7,"38574":9,"38575":8,"38576":9,"38577":8,"38578":2,"38579":7,"38580":7,"38581":4,"38582":7,"38583":7,"38584":5,"38585":2,"38586":9,"38587":9,"38588":8,"38589":7,"38590":7,"38591":8,"38592":2,"38593":7,"38594":3,"38595":7,"38596":8,"38597":2,"38598":6,"38599":7,"38600":9,"38601":10,"38602":9,"38603":7,"38604":1,"38605":4,"38606":9,"38607":3,"38608":2,"38609":8,"38610":8,"38611":8,"38612":6,"38613":5,"38614":1,"38615":7,"38616":8,"38617":7,"38618":3,"38619":5,"38620":7,"38621":7,"38622":8,"38623":9,"38624":7,"38625":7,"38626":8,"38627":9,"38628":7,"38629":3,"38630":10,"38631":5,"38632":7,"38633":7,"38634":4,"38635":2,"38636":7,"38637":5,"38638":7,"38639":7,"38640":1,"38641":10,"38642":7,"38643":9,"38644":6,"38645":7,"38646":7,"38647":7,"38648":8,"38649":2,"38650":2,"38651":5,"38652":9,"38653":1,"38654":4,"38655":2,"38656":8,"38657":5,"38658":7,"38659":8,"38660":2,"38661":5,"38662":5,"38663":3,"38664":9,"38665":2,"38666":2,"38667":2,"38668":8,"38669":8,"38670":1,"38671":9,"38672":7,"38673":5,"38674":2,"38675":1,"38676":8,"38677":7,"38678":7,"38679":8,"38680":8,"38681":9,"38682":4,"38683":7,"38684":8,"38685":8,"38686":6,"38687":3,"38688":9,"38689":7,"38690":8,"38691":6,"38692":8,"38693":3,"38694":9,"38695":7,"38696":4,"38697":1,"38698":8,"38699":7,"38700":7,"38701":2,"38702":7,"38703":10,"38704":3,"38705":7,"38706":4,"38707":1,"38708":5,"38709":7,"38710":8,"38711":7,"38712":8,"38713":8,"38714":4,"38715":7,"38716":2,"38717":10,"38718":8,"38719":7,"38720":1,"38721":6,"38722":8,"38723":4,"38724":9,"38725":6,"38726":7,"38727":7,"38728":1,"38729":8,"38730":2,"38731":5,"38732":9,"38733":9,"38734":2,"38735":7,"38736":9,"38737":9,"38738":4,"38739":7,"38740":3,"38741":6,"38742":2,"38743":8,"38744":2,"38745":6,"38746":4,"38747":2,"38748":5,"38749":7,"38750":9,"38751":8,"38752":8,"38753":8,"38754":7,"38755":5,"38756":8,"38757":9,"38758":4,"38759":8,"38760":9,"38761":7,"38762":8,"38763":9,"38764":6,"38765":9,"38766":8,"38767":8,"38768":3,"38769":5,"38770":9,"38771":7,"38772":2,"38773":4,"38774":9,"38775":7,"38776":9,"38777":8,"38778":5,"38779":2,"38780":10,"38781":2,"38782":8,"38783":6,"38784":9,"38785":9,"38786":9,"38787":1,"38788":7,"38789":7,"38790":9,"38791":7,"38792":4,"38793":3,"38794":7,"38795":8,"38796":8,"38797":8,"38798":9,"38799":8,"38800":4,"38801":7,"38802":10,"38803":2,"38804":9,"38805":5,"38806":8,"38807":8,"38808":2,"38809":9,"38810":9,"38811":8,"38812":7,"38813":6,"38814":8,"38815":1,"38816":8,"38817":7,"38818":7,"38819":9,"38820":5,"38821":6,"38822":7,"38823":8,"38824":5,"38825":7,"38826":9,"38827":7,"38828":5,"38829":8,"38830":5,"38831":7,"38832":7,"38833":8,"38834":5,"38835":7,"38836":9,"38837":6,"38838":4,"38839":9,"38840":7,"38841":4,"38842":5,"38843":9,"38844":7,"38845":6,"38846":3,"38847":7,"38848":8,"38849":8,"38850":2,"38851":7,"38852":8,"38853":7,"38854":6,"38855":1,"38856":8,"38857":6,"38858":5,"38859":5,"38860":10,"38861":8,"38862":1,"38863":2,"38864":7,"38865":10,"38866":5,"38867":6,"38868":2,"38869":3,"38870":9,"38871":10,"38872":6,"38873":5,"38874":4,"38875":7,"38876":8,"38877":7,"38878":2,"38879":2,"38880":7,"38881":7,"38882":9,"38883":8,"38884":8,"38885":7,"38886":10,"38887":5,"38888":9,"38889":1,"38890":6,"38891":6,"38892":9,"38893":7,"38894":8,"38895":7,"38896":9,"38897":9,"38898":10,"38899":8,"38900":8,"38901":7,"38902":9,"38903":10,"38904":2,"38905":7,"38906":9,"38907":5,"38908":9,"38909":2,"38910":10,"38911":2,"38912":5,"38913":1,"38914":4,"38915":3,"38916":8,"38917":7,"38918":6,"38919":8,"38920":9,"38921":7,"38922":7,"38923":7,"38924":7,"38925":3,"38926":2,"38927":8,"38928":5,"38929":7,"38930":5,"38931":2,"38932":2,"38933":7,"38934":10,"38935":2,"38936":6,"38937":6,"38938":6,"38939":9,"38940":7,"38941":8,"38942":8,"38943":8,"38944":9,"38945":8,"38946":8,"38947":9,"38948":7,"38949":2,"38950":7,"38951":9,"38952":7,"38953":7,"38954":8,"38955":9,"38956":8,"38957":1,"38958":10,"38959":7,"38960":2,"38961":2,"38962":8,"38963":7,"38964":7,"38965":8,"38966":7,"38967":8,"38968":9,"38969":8,"38970":2,"38971":8,"38972":8,"38973":8,"38974":7,"38975":6,"38976":9,"38977":2,"38978":9,"38979":7,"38980":6,"38981":5,"38982":8,"38983":9,"38984":5,"38985":7,"38986":5,"38987":1,"38988":5,"38989":4,"38990":6,"38991":5,"38992":8,"38993":7,"38994":7,"38995":7,"38996":7,"38997":7,"38998":9,"38999":8,"39000":10,"39001":10,"39002":7,"39003":5,"39004":9,"39005":7,"39006":9,"39007":4,"39008":4,"39009":8,"39010":5,"39011":6,"39012":7,"39013":5,"39014":8,"39015":9,"39016":9,"39017":5,"39018":2,"39019":9,"39020":10,"39021":9,"39022":7,"39023":5,"39024":9,"39025":7,"39026":8,"39027":7,"39028":4,"39029":7,"39030":3,"39031":8,"39032":8,"39033":7,"39034":3,"39035":3,"39036":5,"39037":8,"39038":9,"39039":7,"39040":7,"39041":8,"39042":7,"39043":2,"39044":8,"39045":8,"39046":1,"39047":7,"39048":7,"39049":10,"39050":10,"39051":2,"39052":9,"39053":8,"39054":1,"39055":8,"39056":8,"39057":8,"39058":8,"39059":1,"39060":2,"39061":9,"39062":8,"39063":8,"39064":5,"39065":7,"39066":7,"39067":7,"39068":8,"39069":5,"39070":5,"39071":9,"39072":6,"39073":4,"39074":5,"39075":10,"39076":7,"39077":9,"39078":7,"39079":3,"39080":9,"39081":9,"39082":5,"39083":7,"39084":8,"39085":10,"39086":7,"39087":2,"39088":10,"39089":2,"39090":8,"39091":2,"39092":9,"39093":8,"39094":1,"39095":9,"39096":6,"39097":1,"39098":5,"39099":5,"39100":4,"39101":5,"39102":9,"39103":3,"39104":7,"39105":7,"39106":8,"39107":9,"39108":5,"39109":6,"39110":7,"39111":8,"39112":6,"39113":9,"39114":7,"39115":5,"39116":9,"39117":7,"39118":5,"39119":9,"39120":5,"39121":2,"39122":4,"39123":3,"39124":5,"39125":5,"39126":10,"39127":3,"39128":10,"39129":2,"39130":7,"39131":4,"39132":2,"39133":7,"39134":8,"39135":8,"39136":9,"39137":9,"39138":4,"39139":9,"39140":1,"39141":3,"39142":8,"39143":7,"39144":1,"39145":5,"39146":5,"39147":8,"39148":8,"39149":4,"39150":7,"39151":7,"39152":2,"39153":8,"39154":3,"39155":9,"39156":2,"39157":7,"39158":9,"39159":8,"39160":9,"39161":4,"39162":8,"39163":8,"39164":7,"39165":5,"39166":7,"39167":2,"39168":8,"39169":5,"39170":8,"39171":7,"39172":7,"39173":8,"39174":9,"39175":2,"39176":10,"39177":2,"39178":9,"39179":6,"39180":8,"39181":8,"39182":2,"39183":5,"39184":7,"39185":6,"39186":5,"39187":7,"39188":8,"39189":7,"39190":6,"39191":7,"39192":2,"39193":7,"39194":7,"39195":8,"39196":8,"39197":8,"39198":7,"39199":8,"39200":5,"39201":4,"39202":8,"39203":6,"39204":2,"39205":9,"39206":5,"39207":9,"39208":3,"39209":5,"39210":7,"39211":7,"39212":8,"39213":4,"39214":5,"39215":5,"39216":6,"39217":5,"39218":8,"39219":3,"39220":5,"39221":9,"39222":3,"39223":2,"39224":9,"39225":9,"39226":2,"39227":5,"39228":7,"39229":8,"39230":8,"39231":8,"39232":4,"39233":7,"39234":1,"39235":5,"39236":8,"39237":10,"39238":5,"39239":7,"39240":4,"39241":10,"39242":9,"39243":5,"39244":2,"39245":9,"39246":1,"39247":9,"39248":8,"39249":8,"39250":1,"39251":7,"39252":8,"39253":8,"39254":8,"39255":6,"39256":9,"39257":8,"39258":7,"39259":3,"39260":8,"39261":5,"39262":5,"39263":8,"39264":2,"39265":7,"39266":5,"39267":4,"39268":3,"39269":5,"39270":9,"39271":7,"39272":8,"39273":10,"39274":8,"39275":1,"39276":8,"39277":4,"39278":7,"39279":9,"39280":8,"39281":7,"39282":5,"39283":3,"39284":6,"39285":4,"39286":6,"39287":4,"39288":4,"39289":7,"39290":8,"39291":10,"39292":8,"39293":5,"39294":9,"39295":2,"39296":8,"39297":7,"39298":5,"39299":6,"39300":7,"39301":3,"39302":6,"39303":7,"39304":9,"39305":4,"39306":2,"39307":2,"39308":7,"39309":9,"39310":8,"39311":5,"39312":2,"39313":5,"39314":2,"39315":8,"39316":9,"39317":10,"39318":9,"39319":3,"39320":5,"39321":1,"39322":10,"39323":1,"39324":2,"39325":2,"39326":9,"39327":6,"39328":9,"39329":9,"39330":5,"39331":10,"39332":9,"39333":8,"39334":2,"39335":9,"39336":9,"39337":9,"39338":8,"39339":7,"39340":9,"39341":6,"39342":7,"39343":1,"39344":8,"39345":7,"39346":7,"39347":6,"39348":5,"39349":2,"39350":4,"39351":7,"39352":6,"39353":8,"39354":7,"39355":5,"39356":2,"39357":3,"39358":6,"39359":8,"39360":6,"39361":9,"39362":10,"39363":7,"39364":3,"39365":9,"39366":5,"39367":5,"39368":7,"39369":4,"39370":9,"39371":9,"39372":8,"39373":9,"39374":8,"39375":3,"39376":9,"39377":5,"39378":9,"39379":3,"39380":8,"39381":2,"39382":7,"39383":10,"39384":8,"39385":8,"39386":7,"39387":9,"39388":8,"39389":8,"39390":7,"39391":8,"39392":4,"39393":5,"39394":9,"39395":9,"39396":4,"39397":7,"39398":3,"39399":7,"39400":8,"39401":4,"39402":10,"39403":1,"39404":2,"39405":9,"39406":2,"39407":5,"39408":7,"39409":2,"39410":8,"39411":5,"39412":9,"39413":7,"39414":9,"39415":8,"39416":8,"39417":8,"39418":9,"39419":8,"39420":8,"39421":6,"39422":7,"39423":7,"39424":9,"39425":2,"39426":7,"39427":5,"39428":8,"39429":8,"39430":7,"39431":2,"39432":8,"39433":8,"39434":9,"39435":9,"39436":1,"39437":9,"39438":5,"39439":4,"39440":9,"39441":7,"39442":8,"39443":5,"39444":10,"39445":7,"39446":7,"39447":9,"39448":5,"39449":4,"39450":8,"39451":5,"39452":8,"39453":8,"39454":7,"39455":1,"39456":8,"39457":8,"39458":7,"39459":6,"39460":8,"39461":8,"39462":8,"39463":7,"39464":6,"39465":8,"39466":1,"39467":5,"39468":9,"39469":10,"39470":7,"39471":7,"39472":5,"39473":8,"39474":2,"39475":10,"39476":10,"39477":9,"39478":6,"39479":7,"39480":8,"39481":5,"39482":2,"39483":8,"39484":8,"39485":6,"39486":9,"39487":9,"39488":1,"39489":7,"39490":2,"39491":8,"39492":1,"39493":10,"39494":2,"39495":8,"39496":2,"39497":8,"39498":6,"39499":6,"39500":7,"39501":9,"39502":8,"39503":9,"39504":1,"39505":6,"39506":8,"39507":1,"39508":9,"39509":2,"39510":8,"39511":6,"39512":2,"39513":8,"39514":1,"39515":5,"39516":10,"39517":8,"39518":9,"39519":8,"39520":9,"39521":6,"39522":5,"39523":1,"39524":6,"39525":8,"39526":3,"39527":2,"39528":5,"39529":5,"39530":6,"39531":8,"39532":8,"39533":9,"39534":4,"39535":9,"39536":8,"39537":4,"39538":7,"39539":4,"39540":9,"39541":2,"39542":10,"39543":7,"39544":10,"39545":8,"39546":9,"39547":8,"39548":6,"39549":1,"39550":9,"39551":9,"39552":8,"39553":2,"39554":1,"39555":2,"39556":8,"39557":7,"39558":2,"39559":4,"39560":6,"39561":8,"39562":9,"39563":7,"39564":3,"39565":7,"39566":7,"39567":7,"39568":7,"39569":2,"39570":8,"39571":7,"39572":7,"39573":8,"39574":5,"39575":7,"39576":3,"39577":8,"39578":5,"39579":3,"39580":8,"39581":8,"39582":8,"39583":7,"39584":7,"39585":7,"39586":5,"39587":4,"39588":9,"39589":6,"39590":1,"39591":4,"39592":8,"39593":2,"39594":7,"39595":4,"39596":2,"39597":9,"39598":2,"39599":7,"39600":3,"39601":7,"39602":8,"39603":5,"39604":8,"39605":5,"39606":8,"39607":1,"39608":5,"39609":4,"39610":7,"39611":5,"39612":7,"39613":1,"39614":7,"39615":9,"39616":7,"39617":8,"39618":8,"39619":9,"39620":9,"39621":10,"39622":7,"39623":8,"39624":7,"39625":9,"39626":1,"39627":10,"39628":7,"39629":4,"39630":4,"39631":8,"39632":9,"39633":5,"39634":7,"39635":5,"39636":7,"39637":7,"39638":2,"39639":10,"39640":3,"39641":7,"39642":2,"39643":6,"39644":4,"39645":5,"39646":9,"39647":3,"39648":4,"39649":9,"39650":10,"39651":7,"39652":7,"39653":9,"39654":5,"39655":7,"39656":2,"39657":8,"39658":3,"39659":1,"39660":8,"39661":7,"39662":3,"39663":2,"39664":8,"39665":9,"39666":7,"39667":7,"39668":7,"39669":7,"39670":7,"39671":5,"39672":5,"39673":5,"39674":9,"39675":8,"39676":8,"39677":7,"39678":2,"39679":8,"39680":2,"39681":8,"39682":5,"39683":8,"39684":10,"39685":7,"39686":8,"39687":4,"39688":8,"39689":5,"39690":9,"39691":8,"39692":8,"39693":8,"39694":1,"39695":2,"39696":7,"39697":1,"39698":2,"39699":4,"39700":7,"39701":1,"39702":5,"39703":10,"39704":8,"39705":6,"39706":7,"39707":8,"39708":2,"39709":8,"39710":7,"39711":7,"39712":8,"39713":5,"39714":7,"39715":5,"39716":7,"39717":7,"39718":9,"39719":1,"39720":1,"39721":10,"39722":9,"39723":8,"39724":8,"39725":8,"39726":5,"39727":9,"39728":6,"39729":7,"39730":10,"39731":9,"39732":2,"39733":2,"39734":9,"39735":5,"39736":7,"39737":8,"39738":7,"39739":2,"39740":1,"39741":8,"39742":9,"39743":8,"39744":8,"39745":8,"39746":2,"39747":6,"39748":7,"39749":9,"39750":5,"39751":8,"39752":8,"39753":7,"39754":9,"39755":2,"39756":9,"39757":8,"39758":8,"39759":9,"39760":9,"39761":7,"39762":5,"39763":7,"39764":8,"39765":9,"39766":8,"39767":10,"39768":9,"39769":5,"39770":7,"39771":8,"39772":7,"39773":7,"39774":2,"39775":7,"39776":9,"39777":7,"39778":3,"39779":10,"39780":9,"39781":5,"39782":5,"39783":7,"39784":9,"39785":7,"39786":7,"39787":2,"39788":9,"39789":7,"39790":8,"39791":8,"39792":9,"39793":7,"39794":8,"39795":8,"39796":3,"39797":9,"39798":2,"39799":9,"39800":9,"39801":9,"39802":3,"39803":6,"39804":8,"39805":3,"39806":10,"39807":9,"39808":4,"39809":9,"39810":9,"39811":7,"39812":10,"39813":2,"39814":4,"39815":4,"39816":9,"39817":4,"39818":2,"39819":8,"39820":9,"39821":7,"39822":8,"39823":5,"39824":3,"39825":10,"39826":2,"39827":4,"39828":7,"39829":4,"39830":9,"39831":7,"39832":2,"39833":7,"39834":9,"39835":9,"39836":8,"39837":7,"39838":7,"39839":7,"39840":9,"39841":10,"39842":7,"39843":7,"39844":7,"39845":7,"39846":1,"39847":6,"39848":8,"39849":1,"39850":5,"39851":8,"39852":9,"39853":10,"39854":3,"39855":10,"39856":1,"39857":10,"39858":7,"39859":4,"39860":6,"39861":7,"39862":2,"39863":7,"39864":7,"39865":7,"39866":8,"39867":5,"39868":8,"39869":8,"39870":5,"39871":5,"39872":3,"39873":8,"39874":5,"39875":9,"39876":1,"39877":7,"39878":8,"39879":7,"39880":7,"39881":6,"39882":2,"39883":9,"39884":7,"39885":8,"39886":8,"39887":7,"39888":7,"39889":7,"39890":9,"39891":6,"39892":9,"39893":5,"39894":4,"39895":2,"39896":2,"39897":10,"39898":5,"39899":7,"39900":1,"39901":7,"39902":3,"39903":9,"39904":5,"39905":2,"39906":10,"39907":2,"39908":9,"39909":8,"39910":2,"39911":6,"39912":1,"39913":5,"39914":7,"39915":8,"39916":4,"39917":4,"39918":5,"39919":7,"39920":3,"39921":5,"39922":6,"39923":7,"39924":10,"39925":5,"39926":8,"39927":8,"39928":2,"39929":7,"39930":5,"39931":5,"39932":3,"39933":7,"39934":6,"39935":6,"39936":7,"39937":8,"39938":3,"39939":2,"39940":2,"39941":2,"39942":7,"39943":7,"39944":8,"39945":8,"39946":7,"39947":8,"39948":8,"39949":9,"39950":4,"39951":7,"39952":2,"39953":2,"39954":8,"39955":8,"39956":5,"39957":9,"39958":8,"39959":3,"39960":2,"39961":7,"39962":10,"39963":4,"39964":9,"39965":7,"39966":5,"39967":1,"39968":8,"39969":8,"39970":9,"39971":8,"39972":2,"39973":2,"39974":4,"39975":9,"39976":2,"39977":8,"39978":7,"39979":9,"39980":8,"39981":5,"39982":8,"39983":4,"39984":5,"39985":9,"39986":4,"39987":8,"39988":9,"39989":5,"39990":8,"39991":1,"39992":7,"39993":6,"39994":8,"39995":2,"39996":1,"39997":7,"39998":9,"39999":2,"40000":9,"40001":9,"40002":7,"40003":7,"40004":2,"40005":9,"40006":10,"40007":3,"40008":7,"40009":7,"40010":7,"40011":2,"40012":4,"40013":7,"40014":7,"40015":8,"40016":9,"40017":9,"40018":3,"40019":7,"40020":9,"40021":7,"40022":10,"40023":9,"40024":7,"40025":7,"40026":9,"40027":10,"40028":6,"40029":7,"40030":7,"40031":9,"40032":8,"40033":9,"40034":8,"40035":8,"40036":2,"40037":5,"40038":3,"40039":9,"40040":2,"40041":7,"40042":3,"40043":8,"40044":5,"40045":3,"40046":1,"40047":5,"40048":9,"40049":1,"40050":6,"40051":4,"40052":7,"40053":7,"40054":8,"40055":7,"40056":5,"40057":6,"40058":7,"40059":8,"40060":8,"40061":3,"40062":4,"40063":10,"40064":7,"40065":10,"40066":8,"40067":5,"40068":7,"40069":5,"40070":1,"40071":7,"40072":7,"40073":9,"40074":2,"40075":9,"40076":8,"40077":1,"40078":6,"40079":6,"40080":2,"40081":3,"40082":2,"40083":9,"40084":5,"40085":7,"40086":6,"40087":8,"40088":7,"40089":1,"40090":8,"40091":4,"40092":5,"40093":7,"40094":4,"40095":7,"40096":8,"40097":2,"40098":8,"40099":9,"40100":1,"40101":6,"40102":10,"40103":7,"40104":7,"40105":9,"40106":8,"40107":9,"40108":8,"40109":2,"40110":3,"40111":6,"40112":8,"40113":2,"40114":8,"40115":7,"40116":8,"40117":2,"40118":7,"40119":5,"40120":9,"40121":7,"40122":3,"40123":5,"40124":4,"40125":5,"40126":7,"40127":1,"40128":9,"40129":9,"40130":7,"40131":10,"40132":4,"40133":8,"40134":2,"40135":8,"40136":7,"40137":10,"40138":10,"40139":8,"40140":4,"40141":4,"40142":8,"40143":7,"40144":8,"40145":7,"40146":8,"40147":9,"40148":7,"40149":3,"40150":4,"40151":8,"40152":2,"40153":9,"40154":3,"40155":10,"40156":7,"40157":4,"40158":8,"40159":9,"40160":7,"40161":5,"40162":7,"40163":3,"40164":2,"40165":2,"40166":7,"40167":9,"40168":6,"40169":8,"40170":8,"40171":6,"40172":7,"40173":9,"40174":8,"40175":8,"40176":6,"40177":6,"40178":10,"40179":4,"40180":2,"40181":7,"40182":5,"40183":8,"40184":7,"40185":7,"40186":3,"40187":7,"40188":4,"40189":3,"40190":6,"40191":8,"40192":7,"40193":8,"40194":10,"40195":9,"40196":7,"40197":7,"40198":1,"40199":8,"40200":4,"40201":7,"40202":10,"40203":5,"40204":8,"40205":8,"40206":4,"40207":8,"40208":4,"40209":10,"40210":2,"40211":9,"40212":8,"40213":2,"40214":8,"40215":1,"40216":8,"40217":9,"40218":7,"40219":9,"40220":7,"40221":3,"40222":4,"40223":9,"40224":5,"40225":1,"40226":3,"40227":10,"40228":1,"40229":6,"40230":9,"40231":8,"40232":10,"40233":3,"40234":8,"40235":3,"40236":2,"40237":4,"40238":6,"40239":1,"40240":4,"40241":3,"40242":10,"40243":5,"40244":5,"40245":2,"40246":8,"40247":2,"40248":9,"40249":2,"40250":8,"40251":9,"40252":9,"40253":7,"40254":5,"40255":2,"40256":7,"40257":1,"40258":8,"40259":7,"40260":3,"40261":9,"40262":9,"40263":10,"40264":7,"40265":9,"40266":7,"40267":6,"40268":8,"40269":10,"40270":8,"40271":3,"40272":3,"40273":1,"40274":8,"40275":9,"40276":8,"40277":7,"40278":8,"40279":7,"40280":9,"40281":9,"40282":5,"40283":7,"40284":7,"40285":9,"40286":2,"40287":7,"40288":5,"40289":9,"40290":5,"40291":3,"40292":8,"40293":9,"40294":2,"40295":2,"40296":7,"40297":3,"40298":9,"40299":8,"40300":9,"40301":8,"40302":10,"40303":8,"40304":7,"40305":4,"40306":2,"40307":8,"40308":8,"40309":8,"40310":7,"40311":9,"40312":4,"40313":8,"40314":1,"40315":9,"40316":5,"40317":5,"40318":9,"40319":1,"40320":8,"40321":2,"40322":2,"40323":8,"40324":7,"40325":4,"40326":3,"40327":7,"40328":10,"40329":9,"40330":2,"40331":4,"40332":7,"40333":8,"40334":9,"40335":2,"40336":9,"40337":9,"40338":8,"40339":8,"40340":7,"40341":5,"40342":9,"40343":9,"40344":2,"40345":10,"40346":9,"40347":9,"40348":7,"40349":8,"40350":7,"40351":9,"40352":1,"40353":7,"40354":8,"40355":8,"40356":2,"40357":2,"40358":8,"40359":7,"40360":4,"40361":9,"40362":7,"40363":2,"40364":9,"40365":9,"40366":1,"40367":7,"40368":7,"40369":5,"40370":7,"40371":4,"40372":7,"40373":7,"40374":8,"40375":9,"40376":9,"40377":9,"40378":10,"40379":8,"40380":9,"40381":7,"40382":2,"40383":5,"40384":8,"40385":2,"40386":5,"40387":7,"40388":2,"40389":5,"40390":3,"40391":4,"40392":7,"40393":7,"40394":3,"40395":8,"40396":8,"40397":7,"40398":9,"40399":4,"40400":9,"40401":8,"40402":4,"40403":7,"40404":7,"40405":4,"40406":2,"40407":5,"40408":7,"40409":9,"40410":3,"40411":5,"40412":10,"40413":7,"40414":7,"40415":5,"40416":8,"40417":7,"40418":8,"40419":5,"40420":5,"40421":7,"40422":2,"40423":5,"40424":9,"40425":6,"40426":9,"40427":1,"40428":9,"40429":8,"40430":1,"40431":2,"40432":2,"40433":8,"40434":2,"40435":2,"40436":5,"40437":5,"40438":6,"40439":4,"40440":7,"40441":8,"40442":2,"40443":5,"40444":5,"40445":8,"40446":5,"40447":9,"40448":7,"40449":2,"40450":9,"40451":3,"40452":9,"40453":8,"40454":8,"40455":5,"40456":9,"40457":5,"40458":9,"40459":8,"40460":9,"40461":8,"40462":7,"40463":2,"40464":5,"40465":9,"40466":2,"40467":9,"40468":7,"40469":2,"40470":1,"40471":7,"40472":1,"40473":9,"40474":8,"40475":2,"40476":8,"40477":8,"40478":2,"40479":8,"40480":2,"40481":5,"40482":9,"40483":9,"40484":4,"40485":1,"40486":9,"40487":8,"40488":7,"40489":4,"40490":8,"40491":4,"40492":5,"40493":9,"40494":7,"40495":9,"40496":7,"40497":6,"40498":2,"40499":9,"40500":7,"40501":9,"40502":2,"40503":5,"40504":8,"40505":9,"40506":5,"40507":6,"40508":9,"40509":5,"40510":4,"40511":3,"40512":5,"40513":8,"40514":10,"40515":9,"40516":4,"40517":6,"40518":8,"40519":8,"40520":4,"40521":8,"40522":8,"40523":9,"40524":7,"40525":8,"40526":7,"40527":9,"40528":2,"40529":9,"40530":8,"40531":8,"40532":10,"40533":7,"40534":8,"40535":9,"40536":9,"40537":8,"40538":5,"40539":7,"40540":5,"40541":8,"40542":5,"40543":7,"40544":1,"40545":8,"40546":9,"40547":7,"40548":10,"40549":4,"40550":10,"40551":8,"40552":8,"40553":7,"40554":5,"40555":8,"40556":2,"40557":8,"40558":7,"40559":7,"40560":7,"40561":9,"40562":7,"40563":5,"40564":5,"40565":2,"40566":1,"40567":9,"40568":1,"40569":2,"40570":7,"40571":8,"40572":8,"40573":7,"40574":9,"40575":5,"40576":9,"40577":9,"40578":6,"40579":9,"40580":2,"40581":8,"40582":7,"40583":2,"40584":8,"40585":2,"40586":1,"40587":9,"40588":1,"40589":1,"40590":7,"40591":3,"40592":9,"40593":8,"40594":8,"40595":3,"40596":9,"40597":9,"40598":1,"40599":8,"40600":9,"40601":8,"40602":8,"40603":10,"40604":7,"40605":3,"40606":8,"40607":8,"40608":9,"40609":5,"40610":8,"40611":7,"40612":8,"40613":6,"40614":6,"40615":5,"40616":7,"40617":8,"40618":2,"40619":1,"40620":3,"40621":2,"40622":10,"40623":4,"40624":6,"40625":3,"40626":7,"40627":7,"40628":9,"40629":1,"40630":6,"40631":7,"40632":7,"40633":3,"40634":8,"40635":9,"40636":9,"40637":1,"40638":8,"40639":7,"40640":1,"40641":3,"40642":4,"40643":8,"40644":7,"40645":9,"40646":2,"40647":10,"40648":1,"40649":10,"40650":10,"40651":2,"40652":9,"40653":8,"40654":10,"40655":7,"40656":5,"40657":8,"40658":7,"40659":8,"40660":7,"40661":9,"40662":1,"40663":1,"40664":2,"40665":10,"40666":7,"40667":8,"40668":5,"40669":9,"40670":7,"40671":6,"40672":2,"40673":8,"40674":8,"40675":5,"40676":2,"40677":8,"40678":9,"40679":3,"40680":2,"40681":9,"40682":9,"40683":5,"40684":3,"40685":9,"40686":2,"40687":8,"40688":8,"40689":9,"40690":9,"40691":8,"40692":9,"40693":4,"40694":8,"40695":9,"40696":2,"40697":8,"40698":7,"40699":10,"40700":9,"40701":3,"40702":2,"40703":2,"40704":1,"40705":8,"40706":4,"40707":7,"40708":8,"40709":9,"40710":7,"40711":2,"40712":5,"40713":3,"40714":7,"40715":8,"40716":2,"40717":9,"40718":8,"40719":9,"40720":6,"40721":8,"40722":2,"40723":1,"40724":8,"40725":6,"40726":10,"40727":6,"40728":2,"40729":9,"40730":7,"40731":7,"40732":6,"40733":9,"40734":1,"40735":8,"40736":8,"40737":8,"40738":7,"40739":7,"40740":7,"40741":8,"40742":9,"40743":9,"40744":8,"40745":8,"40746":9,"40747":6,"40748":9,"40749":6,"40750":1,"40751":4,"40752":2,"40753":1,"40754":6,"40755":9,"40756":9,"40757":5,"40758":7,"40759":9,"40760":2,"40761":7,"40762":7,"40763":8,"40764":7,"40765":8,"40766":4,"40767":9,"40768":2,"40769":8,"40770":10,"40771":1,"40772":7,"40773":9,"40774":4,"40775":3,"40776":6,"40777":8,"40778":5,"40779":10,"40780":5,"40781":9,"40782":8,"40783":8,"40784":7,"40785":4,"40786":8,"40787":9,"40788":9,"40789":8,"40790":10,"40791":8,"40792":7,"40793":7,"40794":5,"40795":8,"40796":2,"40797":9,"40798":8,"40799":8,"40800":2,"40801":5,"40802":7,"40803":2,"40804":9,"40805":5,"40806":8,"40807":1,"40808":8,"40809":2,"40810":7,"40811":9,"40812":8,"40813":9,"40814":8,"40815":8,"40816":5,"40817":6,"40818":7,"40819":7,"40820":8,"40821":2,"40822":6,"40823":1,"40824":6,"40825":7,"40826":7,"40827":8,"40828":8,"40829":7,"40830":7,"40831":7,"40832":8,"40833":7,"40834":8,"40835":10,"40836":4,"40837":5,"40838":4,"40839":9,"40840":8,"40841":2,"40842":4,"40843":2,"40844":1,"40845":1,"40846":7,"40847":7,"40848":9,"40849":2,"40850":9,"40851":2,"40852":8,"40853":8,"40854":5,"40855":2,"40856":5,"40857":5,"40858":1,"40859":7,"40860":8,"40861":8,"40862":7,"40863":9,"40864":8,"40865":7,"40866":7,"40867":6,"40868":8,"40869":9,"40870":9,"40871":7,"40872":8,"40873":8,"40874":5,"40875":4,"40876":5,"40877":8,"40878":2,"40879":9,"40880":5,"40881":1,"40882":8,"40883":1,"40884":4,"40885":8,"40886":9,"40887":9,"40888":7,"40889":2,"40890":3,"40891":6,"40892":8,"40893":9,"40894":8,"40895":2,"40896":7,"40897":9,"40898":2,"40899":5,"40900":2,"40901":1,"40902":2,"40903":7,"40904":9,"40905":7,"40906":2,"40907":2,"40908":6,"40909":5,"40910":8,"40911":9,"40912":8,"40913":7,"40914":9,"40915":9,"40916":8,"40917":9,"40918":7,"40919":7,"40920":8,"40921":9,"40922":5,"40923":7,"40924":7,"40925":3,"40926":8,"40927":4,"40928":7,"40929":8,"40930":2,"40931":10,"40932":8,"40933":7,"40934":6,"40935":8,"40936":3,"40937":8,"40938":1,"40939":4,"40940":8,"40941":7,"40942":3,"40943":1,"40944":9,"40945":8,"40946":4,"40947":3,"40948":3,"40949":5,"40950":1,"40951":5,"40952":5,"40953":7,"40954":7,"40955":10,"40956":7,"40957":7,"40958":4,"40959":2,"40960":9,"40961":10,"40962":8,"40963":5,"40964":5,"40965":2,"40966":8,"40967":8,"40968":7,"40969":8,"40970":9,"40971":8,"40972":2,"40973":7,"40974":7,"40975":3,"40976":5,"40977":7,"40978":8,"40979":5,"40980":7,"40981":1,"40982":7,"40983":7,"40984":7,"40985":8,"40986":6,"40987":2,"40988":4,"40989":2,"40990":8,"40991":10,"40992":8,"40993":8,"40994":1,"40995":4,"40996":4,"40997":8,"40998":7,"40999":6,"41000":6,"41001":10,"41002":5,"41003":8,"41004":9,"41005":10,"41006":7,"41007":3,"41008":3,"41009":6,"41010":8,"41011":8,"41012":7,"41013":4,"41014":4,"41015":4,"41016":3,"41017":8,"41018":10,"41019":4,"41020":7,"41021":8,"41022":2,"41023":7,"41024":3,"41025":9,"41026":8,"41027":7,"41028":5,"41029":8,"41030":9,"41031":6,"41032":8,"41033":7,"41034":5,"41035":9,"41036":9,"41037":4,"41038":8,"41039":2,"41040":4,"41041":6,"41042":7,"41043":8,"41044":10,"41045":8,"41046":7,"41047":5,"41048":7,"41049":7,"41050":8,"41051":7,"41052":4,"41053":7,"41054":2,"41055":8,"41056":7,"41057":4,"41058":7,"41059":8,"41060":4,"41061":7,"41062":2,"41063":2,"41064":7,"41065":7,"41066":7,"41067":6,"41068":3,"41069":6,"41070":8,"41071":2,"41072":3,"41073":4,"41074":9,"41075":9,"41076":2,"41077":8,"41078":7,"41079":1,"41080":7,"41081":8,"41082":8,"41083":5,"41084":4,"41085":4,"41086":7,"41087":4,"41088":8,"41089":7,"41090":10,"41091":7,"41092":2,"41093":9,"41094":9,"41095":7,"41096":5,"41097":7,"41098":8,"41099":7,"41100":7,"41101":8,"41102":4,"41103":9,"41104":10,"41105":7,"41106":2,"41107":2,"41108":7,"41109":6,"41110":7,"41111":7,"41112":8,"41113":4,"41114":10,"41115":9,"41116":4,"41117":5,"41118":8,"41119":8,"41120":5,"41121":8,"41122":1,"41123":7,"41124":2,"41125":2,"41126":8,"41127":7,"41128":2,"41129":2,"41130":2,"41131":1,"41132":8,"41133":5,"41134":4,"41135":8,"41136":9,"41137":6,"41138":1,"41139":2,"41140":5,"41141":7,"41142":5,"41143":4,"41144":5,"41145":2,"41146":7,"41147":8,"41148":9,"41149":8,"41150":6,"41151":9,"41152":8,"41153":10,"41154":3,"41155":8,"41156":1,"41157":4,"41158":9,"41159":2,"41160":8,"41161":9,"41162":8,"41163":3,"41164":8,"41165":6,"41166":1,"41167":7,"41168":2,"41169":7,"41170":2,"41171":3,"41172":7,"41173":7,"41174":8,"41175":7,"41176":3,"41177":2,"41178":6,"41179":7,"41180":8,"41181":7,"41182":10,"41183":9,"41184":10,"41185":8,"41186":7,"41187":6,"41188":3,"41189":8,"41190":2,"41191":3,"41192":2,"41193":8,"41194":9,"41195":9,"41196":8,"41197":7,"41198":7,"41199":8,"41200":8,"41201":10,"41202":8,"41203":6,"41204":8,"41205":10,"41206":9,"41207":5,"41208":9,"41209":3,"41210":8,"41211":7,"41212":8,"41213":9,"41214":6,"41215":1,"41216":7,"41217":2,"41218":10,"41219":2,"41220":9,"41221":5,"41222":4,"41223":2,"41224":8,"41225":8,"41226":8,"41227":7,"41228":8,"41229":10,"41230":7,"41231":10,"41232":10,"41233":2,"41234":7,"41235":8,"41236":9,"41237":5,"41238":9,"41239":8,"41240":8,"41241":8,"41242":8,"41243":2,"41244":5,"41245":2,"41246":9,"41247":5,"41248":4,"41249":2,"41250":10,"41251":5,"41252":3,"41253":4,"41254":7,"41255":7,"41256":7,"41257":2,"41258":10,"41259":9,"41260":8,"41261":7,"41262":9,"41263":7,"41264":2,"41265":3,"41266":8,"41267":1,"41268":8,"41269":6,"41270":8,"41271":8,"41272":8,"41273":7,"41274":7,"41275":8,"41276":7,"41277":9,"41278":1,"41279":7,"41280":5,"41281":2,"41282":10,"41283":3,"41284":3,"41285":5,"41286":8,"41287":8,"41288":3,"41289":3,"41290":7,"41291":4,"41292":10,"41293":8,"41294":7,"41295":9,"41296":4,"41297":7,"41298":10,"41299":7,"41300":5,"41301":8,"41302":7,"41303":8,"41304":2,"41305":2,"41306":7,"41307":2,"41308":2,"41309":4,"41310":2,"41311":9,"41312":5,"41313":10,"41314":7,"41315":7,"41316":9,"41317":4,"41318":9,"41319":2,"41320":9,"41321":7,"41322":8,"41323":5,"41324":9,"41325":5,"41326":7,"41327":2,"41328":8,"41329":7,"41330":7,"41331":9,"41332":9,"41333":7,"41334":2,"41335":8,"41336":5,"41337":7,"41338":7,"41339":3,"41340":8,"41341":7,"41342":4,"41343":8,"41344":2,"41345":10,"41346":7,"41347":10,"41348":5,"41349":8,"41350":5,"41351":1,"41352":6,"41353":9,"41354":9,"41355":7,"41356":5,"41357":9,"41358":9,"41359":9,"41360":5,"41361":8,"41362":8,"41363":7,"41364":9,"41365":8,"41366":6,"41367":3,"41368":8,"41369":6,"41370":8,"41371":8,"41372":8,"41373":5,"41374":8,"41375":2,"41376":8,"41377":5,"41378":3,"41379":7,"41380":4,"41381":9,"41382":5,"41383":5,"41384":3,"41385":9,"41386":2,"41387":9,"41388":5,"41389":4,"41390":9,"41391":7,"41392":2,"41393":8,"41394":9,"41395":10,"41396":7,"41397":3,"41398":9,"41399":8,"41400":2,"41401":4,"41402":8,"41403":9,"41404":3,"41405":9,"41406":7,"41407":4,"41408":8,"41409":10,"41410":9,"41411":1,"41412":7,"41413":2,"41414":5,"41415":10,"41416":9,"41417":3,"41418":2,"41419":8,"41420":7,"41421":10,"41422":10,"41423":7,"41424":7,"41425":8,"41426":9,"41427":9,"41428":8,"41429":10,"41430":8,"41431":7,"41432":7,"41433":2,"41434":6,"41435":1,"41436":5,"41437":7,"41438":5,"41439":6,"41440":1,"41441":7,"41442":2,"41443":6,"41444":3,"41445":9,"41446":8,"41447":4,"41448":9,"41449":3,"41450":8,"41451":7,"41452":6,"41453":8,"41454":8,"41455":8,"41456":8,"41457":1,"41458":6,"41459":8,"41460":2,"41461":5,"41462":8,"41463":7,"41464":4,"41465":1,"41466":8,"41467":6,"41468":8,"41469":3,"41470":1,"41471":8,"41472":7,"41473":2,"41474":7,"41475":9,"41476":7,"41477":8,"41478":8,"41479":9,"41480":6,"41481":7,"41482":5,"41483":8,"41484":1,"41485":8,"41486":8,"41487":1,"41488":3,"41489":1,"41490":6,"41491":9,"41492":7,"41493":8,"41494":9,"41495":8,"41496":9,"41497":8,"41498":7,"41499":8,"41500":7,"41501":3,"41502":7,"41503":1,"41504":10,"41505":7,"41506":4,"41507":5,"41508":8,"41509":8,"41510":8,"41511":7,"41512":8,"41513":3,"41514":10,"41515":8,"41516":8,"41517":8,"41518":8,"41519":4,"41520":5,"41521":9,"41522":7,"41523":5,"41524":8,"41525":2,"41526":10,"41527":3,"41528":8,"41529":4,"41530":9,"41531":7,"41532":8,"41533":2,"41534":9,"41535":1,"41536":1,"41537":6,"41538":8,"41539":7,"41540":7,"41541":1,"41542":10,"41543":7,"41544":8,"41545":9,"41546":2,"41547":2,"41548":8,"41549":8,"41550":4,"41551":10,"41552":5,"41553":3,"41554":5,"41555":7,"41556":1,"41557":10,"41558":7,"41559":7,"41560":2,"41561":8,"41562":3,"41563":7,"41564":9,"41565":2,"41566":5,"41567":7,"41568":5,"41569":8,"41570":1,"41571":9,"41572":9,"41573":9,"41574":5,"41575":5,"41576":10,"41577":2,"41578":4,"41579":10,"41580":7,"41581":2,"41582":9,"41583":3,"41584":9,"41585":2,"41586":9,"41587":6,"41588":8,"41589":8,"41590":3,"41591":2,"41592":2,"41593":9,"41594":7,"41595":7,"41596":8,"41597":8,"41598":8,"41599":2,"41600":7,"41601":9,"41602":7,"41603":5,"41604":2,"41605":8,"41606":9,"41607":7,"41608":3,"41609":10,"41610":2,"41611":8,"41612":7,"41613":9,"41614":9,"41615":5,"41616":1,"41617":7,"41618":8,"41619":7,"41620":9,"41621":8,"41622":6,"41623":8,"41624":9,"41625":7,"41626":8,"41627":3,"41628":8,"41629":2,"41630":9,"41631":3,"41632":5,"41633":7,"41634":5,"41635":2,"41636":8,"41637":7,"41638":6,"41639":9,"41640":7,"41641":10,"41642":6,"41643":10,"41644":2,"41645":9,"41646":9,"41647":9,"41648":7,"41649":9,"41650":9,"41651":3,"41652":9,"41653":5,"41654":7,"41655":2,"41656":2,"41657":10,"41658":5,"41659":7,"41660":7,"41661":7,"41662":8,"41663":9,"41664":10,"41665":2,"41666":7,"41667":6,"41668":8,"41669":3,"41670":8,"41671":7,"41672":2,"41673":2,"41674":9,"41675":2,"41676":8,"41677":9,"41678":8,"41679":8,"41680":2,"41681":7,"41682":7,"41683":4,"41684":1,"41685":8,"41686":4,"41687":1,"41688":8,"41689":5,"41690":7,"41691":9,"41692":3,"41693":7,"41694":8,"41695":10,"41696":7,"41697":9,"41698":4,"41699":9,"41700":9,"41701":7,"41702":6,"41703":9,"41704":2,"41705":5,"41706":9,"41707":8,"41708":9,"41709":4,"41710":8,"41711":9,"41712":10,"41713":2,"41714":9,"41715":9,"41716":4,"41717":9,"41718":7,"41719":2,"41720":7,"41721":8,"41722":7,"41723":8,"41724":9,"41725":7,"41726":8,"41727":8,"41728":8,"41729":10,"41730":9,"41731":7,"41732":2,"41733":5,"41734":7,"41735":8,"41736":5,"41737":8,"41738":9,"41739":2,"41740":1,"41741":7,"41742":7,"41743":7,"41744":2,"41745":8,"41746":2,"41747":8,"41748":8,"41749":10,"41750":3,"41751":9,"41752":5,"41753":10,"41754":9,"41755":2,"41756":8,"41757":9,"41758":10,"41759":8,"41760":9,"41761":9,"41762":8,"41763":7,"41764":4,"41765":2,"41766":8,"41767":7,"41768":9,"41769":7,"41770":5,"41771":3,"41772":8,"41773":5,"41774":7,"41775":7,"41776":9,"41777":8,"41778":1,"41779":7,"41780":2,"41781":8,"41782":8,"41783":9,"41784":5,"41785":8,"41786":1,"41787":5,"41788":8,"41789":8,"41790":8,"41791":7,"41792":9,"41793":7,"41794":9,"41795":7,"41796":8,"41797":7,"41798":9,"41799":7,"41800":9,"41801":8,"41802":9,"41803":8,"41804":8,"41805":10,"41806":6,"41807":8,"41808":2,"41809":5,"41810":3,"41811":9,"41812":9,"41813":7,"41814":7,"41815":10,"41816":7,"41817":8,"41818":7,"41819":7,"41820":8,"41821":10,"41822":7,"41823":7,"41824":7,"41825":2,"41826":9,"41827":7,"41828":8,"41829":1,"41830":7,"41831":3,"41832":7,"41833":8,"41834":5,"41835":3,"41836":9,"41837":5,"41838":8,"41839":5,"41840":8,"41841":8,"41842":5,"41843":7,"41844":3,"41845":8,"41846":7,"41847":8,"41848":10,"41849":7,"41850":3,"41851":2,"41852":3,"41853":3,"41854":5,"41855":2,"41856":10,"41857":1,"41858":7,"41859":9,"41860":8,"41861":8,"41862":8,"41863":8,"41864":7,"41865":8,"41866":2,"41867":9,"41868":7,"41869":10,"41870":9,"41871":8,"41872":8,"41873":8,"41874":2,"41875":6,"41876":4,"41877":8,"41878":7,"41879":7,"41880":10,"41881":9,"41882":9,"41883":7,"41884":4,"41885":8,"41886":9,"41887":8,"41888":10,"41889":8,"41890":5,"41891":7,"41892":9,"41893":8,"41894":8,"41895":9,"41896":8,"41897":6,"41898":7,"41899":7,"41900":7,"41901":9,"41902":9,"41903":2,"41904":8,"41905":1,"41906":5,"41907":7,"41908":8,"41909":7,"41910":9,"41911":2,"41912":9,"41913":9,"41914":7,"41915":8,"41916":2,"41917":5,"41918":7,"41919":9,"41920":4,"41921":2,"41922":10,"41923":7,"41924":2,"41925":2,"41926":5,"41927":3,"41928":4,"41929":5,"41930":7,"41931":2,"41932":5,"41933":10,"41934":2,"41935":4,"41936":8,"41937":8,"41938":5,"41939":7,"41940":8,"41941":6,"41942":9,"41943":8,"41944":8,"41945":2,"41946":7,"41947":7,"41948":2,"41949":7,"41950":7,"41951":3,"41952":8,"41953":7,"41954":9,"41955":6,"41956":7,"41957":9,"41958":1,"41959":10,"41960":7,"41961":8,"41962":9,"41963":9,"41964":8,"41965":7,"41966":4,"41967":2,"41968":6,"41969":9,"41970":9,"41971":7,"41972":5,"41973":7,"41974":8,"41975":8,"41976":8,"41977":7,"41978":8,"41979":7,"41980":7,"41981":5,"41982":1,"41983":2,"41984":8,"41985":3,"41986":7,"41987":7,"41988":9,"41989":9,"41990":10,"41991":7,"41992":8,"41993":8,"41994":7,"41995":7,"41996":1,"41997":2,"41998":9,"41999":2,"42000":8,"42001":8,"42002":5,"42003":7,"42004":7,"42005":7,"42006":8,"42007":4,"42008":8,"42009":10,"42010":3,"42011":1,"42012":5,"42013":8,"42014":5,"42015":9,"42016":7,"42017":8,"42018":7,"42019":3,"42020":5,"42021":9,"42022":10,"42023":8,"42024":1,"42025":2,"42026":7,"42027":3,"42028":7,"42029":6,"42030":2,"42031":7,"42032":7,"42033":8,"42034":5,"42035":5,"42036":5,"42037":8,"42038":7,"42039":4,"42040":7,"42041":7,"42042":10,"42043":2,"42044":5,"42045":9,"42046":5,"42047":2,"42048":10,"42049":7,"42050":9,"42051":9,"42052":7,"42053":1,"42054":7,"42055":5,"42056":8,"42057":3,"42058":2,"42059":8,"42060":8,"42061":6,"42062":7,"42063":9,"42064":8,"42065":7,"42066":2,"42067":8,"42068":5,"42069":8,"42070":2,"42071":8,"42072":7,"42073":8,"42074":4,"42075":9,"42076":6,"42077":9,"42078":3,"42079":2,"42080":8,"42081":7,"42082":7,"42083":4,"42084":9,"42085":9,"42086":7,"42087":4,"42088":7,"42089":5,"42090":4,"42091":8,"42092":9,"42093":5,"42094":7,"42095":9,"42096":10,"42097":3,"42098":7,"42099":2,"42100":6,"42101":10,"42102":5,"42103":5,"42104":7,"42105":7,"42106":7,"42107":6,"42108":10,"42109":3,"42110":10,"42111":5,"42112":9,"42113":2,"42114":6,"42115":7,"42116":8,"42117":6,"42118":8,"42119":2,"42120":9,"42121":7,"42122":7,"42123":5,"42124":3,"42125":10,"42126":8,"42127":7,"42128":2,"42129":1,"42130":3,"42131":8,"42132":7,"42133":9,"42134":7,"42135":9,"42136":9,"42137":6,"42138":7,"42139":10,"42140":2,"42141":2,"42142":7,"42143":2,"42144":7,"42145":7,"42146":1,"42147":2,"42148":7,"42149":10,"42150":2,"42151":8,"42152":3,"42153":7,"42154":7,"42155":3,"42156":9,"42157":2,"42158":7,"42159":2,"42160":8,"42161":7,"42162":8,"42163":8,"42164":7,"42165":8,"42166":5,"42167":2,"42168":1,"42169":8,"42170":8,"42171":7,"42172":7,"42173":9,"42174":5,"42175":5,"42176":2,"42177":5,"42178":7,"42179":5,"42180":5,"42181":2,"42182":8,"42183":8,"42184":5,"42185":7,"42186":8,"42187":7,"42188":8,"42189":4,"42190":8,"42191":5,"42192":8,"42193":8,"42194":9,"42195":8,"42196":7,"42197":1,"42198":9,"42199":6,"42200":9,"42201":8,"42202":8,"42203":8,"42204":7,"42205":3,"42206":9,"42207":7,"42208":10,"42209":7,"42210":4,"42211":9,"42212":4,"42213":7,"42214":6,"42215":8,"42216":9,"42217":9,"42218":1,"42219":9,"42220":2,"42221":5,"42222":5,"42223":8,"42224":8,"42225":7,"42226":5,"42227":7,"42228":9,"42229":2,"42230":9,"42231":9,"42232":4,"42233":3,"42234":5,"42235":2,"42236":5,"42237":1,"42238":8,"42239":8,"42240":9,"42241":8,"42242":9,"42243":8,"42244":6,"42245":3,"42246":2,"42247":8,"42248":4,"42249":4,"42250":9,"42251":5,"42252":7,"42253":7,"42254":5,"42255":9,"42256":10,"42257":8,"42258":2,"42259":1,"42260":4,"42261":8,"42262":8,"42263":7,"42264":9,"42265":2,"42266":8,"42267":8,"42268":4,"42269":5,"42270":6,"42271":10,"42272":6,"42273":7,"42274":7,"42275":5,"42276":8,"42277":7,"42278":7,"42279":9,"42280":9,"42281":5,"42282":5,"42283":9,"42284":5,"42285":8,"42286":8,"42287":6,"42288":7,"42289":7,"42290":9,"42291":7,"42292":8,"42293":8,"42294":7,"42295":8,"42296":10,"42297":7,"42298":8,"42299":9,"42300":1,"42301":9,"42302":9,"42303":8,"42304":9,"42305":8,"42306":2,"42307":3,"42308":6,"42309":2,"42310":6,"42311":1,"42312":8,"42313":2,"42314":6,"42315":8,"42316":6,"42317":10,"42318":5,"42319":8,"42320":2,"42321":5,"42322":10,"42323":2,"42324":1,"42325":8,"42326":8,"42327":10,"42328":7,"42329":8,"42330":7,"42331":3,"42332":9,"42333":8,"42334":9,"42335":5,"42336":8,"42337":7,"42338":8,"42339":9,"42340":4,"42341":7,"42342":2,"42343":3,"42344":7,"42345":8,"42346":3,"42347":5,"42348":5,"42349":5,"42350":8,"42351":9,"42352":7,"42353":6,"42354":3,"42355":8,"42356":7,"42357":3,"42358":3,"42359":6,"42360":9,"42361":8,"42362":8,"42363":8,"42364":8,"42365":5,"42366":6,"42367":8,"42368":7,"42369":8,"42370":7,"42371":4,"42372":7,"42373":3,"42374":5,"42375":7,"42376":7,"42377":2,"42378":1,"42379":5,"42380":8,"42381":7,"42382":6,"42383":7,"42384":6,"42385":9,"42386":6,"42387":9,"42388":1,"42389":8,"42390":3,"42391":2,"42392":9,"42393":7,"42394":6,"42395":8,"42396":5,"42397":7,"42398":7,"42399":7,"42400":9,"42401":7,"42402":5,"42403":9,"42404":5,"42405":4,"42406":7,"42407":6,"42408":4,"42409":8,"42410":9,"42411":2,"42412":7,"42413":8,"42414":8,"42415":1,"42416":8,"42417":8,"42418":6,"42419":3,"42420":6,"42421":10,"42422":5,"42423":5,"42424":8,"42425":4,"42426":9,"42427":5,"42428":2,"42429":7,"42430":8,"42431":8,"42432":6,"42433":4,"42434":4,"42435":8,"42436":6,"42437":8,"42438":3,"42439":7,"42440":4,"42441":2,"42442":4,"42443":8,"42444":2,"42445":8,"42446":7,"42447":8,"42448":2,"42449":8,"42450":9,"42451":9,"42452":9,"42453":8,"42454":8,"42455":7,"42456":5,"42457":5,"42458":2,"42459":10,"42460":6,"42461":8,"42462":9,"42463":8,"42464":5,"42465":4,"42466":8,"42467":9,"42468":4,"42469":7,"42470":2,"42471":7,"42472":1,"42473":2,"42474":5,"42475":5,"42476":8,"42477":9,"42478":7,"42479":3,"42480":7,"42481":5,"42482":5,"42483":9,"42484":7,"42485":7,"42486":6,"42487":2,"42488":8,"42489":1,"42490":7,"42491":1,"42492":7,"42493":8,"42494":10,"42495":9,"42496":3,"42497":4,"42498":9,"42499":4,"42500":4,"42501":8,"42502":3,"42503":9,"42504":10,"42505":5,"42506":8,"42507":1,"42508":2,"42509":8,"42510":7,"42511":10,"42512":10,"42513":3,"42514":7,"42515":9,"42516":7,"42517":7,"42518":4,"42519":8,"42520":8,"42521":8,"42522":8,"42523":3,"42524":10,"42525":8,"42526":1,"42527":9,"42528":10,"42529":2,"42530":2,"42531":5,"42532":4,"42533":7,"42534":4,"42535":8,"42536":5,"42537":9,"42538":9,"42539":7,"42540":3,"42541":8,"42542":2,"42543":9,"42544":7,"42545":7,"42546":9,"42547":6,"42548":7,"42549":8,"42550":7,"42551":9,"42552":9,"42553":6,"42554":9,"42555":3,"42556":1,"42557":7,"42558":8,"42559":7,"42560":8,"42561":1,"42562":7,"42563":7,"42564":7,"42565":8,"42566":9,"42567":8,"42568":6,"42569":8,"42570":6,"42571":8,"42572":9,"42573":2,"42574":8,"42575":9,"42576":2,"42577":7,"42578":6,"42579":9,"42580":8,"42581":8,"42582":4,"42583":7,"42584":7,"42585":1,"42586":8,"42587":7,"42588":6,"42589":8,"42590":9,"42591":7,"42592":8,"42593":3,"42594":7,"42595":6,"42596":2,"42597":9,"42598":1,"42599":7,"42600":4,"42601":10,"42602":7,"42603":7,"42604":8,"42605":2,"42606":8,"42607":8,"42608":9,"42609":1,"42610":9,"42611":4,"42612":8,"42613":9,"42614":7,"42615":7,"42616":4,"42617":7,"42618":8,"42619":6,"42620":6,"42621":9,"42622":8,"42623":8,"42624":7,"42625":8,"42626":9,"42627":4,"42628":5,"42629":9,"42630":7,"42631":8,"42632":8,"42633":3,"42634":8,"42635":9,"42636":2,"42637":5,"42638":4,"42639":7,"42640":7,"42641":9,"42642":9,"42643":1,"42644":10,"42645":5,"42646":2,"42647":1,"42648":7,"42649":7,"42650":2,"42651":8,"42652":5,"42653":1,"42654":6,"42655":8,"42656":8,"42657":7,"42658":7,"42659":6,"42660":8,"42661":7,"42662":4,"42663":7,"42664":6,"42665":4,"42666":2,"42667":8,"42668":7,"42669":2,"42670":6,"42671":5,"42672":2,"42673":2,"42674":1,"42675":8,"42676":5,"42677":5,"42678":7,"42679":9,"42680":1,"42681":8,"42682":4,"42683":9,"42684":7,"42685":8,"42686":4,"42687":8,"42688":5,"42689":9,"42690":1,"42691":7,"42692":8,"42693":1,"42694":7,"42695":5,"42696":5,"42697":6,"42698":7,"42699":8,"42700":9,"42701":8,"42702":5,"42703":8,"42704":2,"42705":3,"42706":7,"42707":8,"42708":8,"42709":6,"42710":10,"42711":9,"42712":5,"42713":9,"42714":6,"42715":7,"42716":7,"42717":4,"42718":8,"42719":8,"42720":7,"42721":5,"42722":2,"42723":6,"42724":2,"42725":7,"42726":9,"42727":3,"42728":9,"42729":2,"42730":7,"42731":7,"42732":2,"42733":4,"42734":9,"42735":7,"42736":7,"42737":8,"42738":8,"42739":7,"42740":9,"42741":2,"42742":5,"42743":8,"42744":9,"42745":6,"42746":4,"42747":3,"42748":8,"42749":9,"42750":7,"42751":2,"42752":8,"42753":8,"42754":5,"42755":8,"42756":9,"42757":10,"42758":2,"42759":10,"42760":9,"42761":8,"42762":7,"42763":2,"42764":4,"42765":5,"42766":4,"42767":6,"42768":9,"42769":8,"42770":10,"42771":4,"42772":8,"42773":8,"42774":6,"42775":9,"42776":8,"42777":7,"42778":5,"42779":6,"42780":7,"42781":2,"42782":5,"42783":10,"42784":7,"42785":2,"42786":1,"42787":7,"42788":6,"42789":9,"42790":4,"42791":3,"42792":9,"42793":8,"42794":2,"42795":9,"42796":7,"42797":7,"42798":4,"42799":5,"42800":9,"42801":7,"42802":1,"42803":9,"42804":10,"42805":7,"42806":2,"42807":3,"42808":7,"42809":6,"42810":8,"42811":7,"42812":2,"42813":7,"42814":8,"42815":3,"42816":7,"42817":2,"42818":7,"42819":4,"42820":6,"42821":3,"42822":1,"42823":7,"42824":1,"42825":8,"42826":9,"42827":4,"42828":2,"42829":8,"42830":7,"42831":3,"42832":5,"42833":8,"42834":1,"42835":6,"42836":7,"42837":7,"42838":9,"42839":7,"42840":7,"42841":2,"42842":7,"42843":7,"42844":2,"42845":2,"42846":8,"42847":9,"42848":6,"42849":7,"42850":7,"42851":5,"42852":5,"42853":2,"42854":6,"42855":6,"42856":1,"42857":9,"42858":8,"42859":8,"42860":8,"42861":1,"42862":9,"42863":3,"42864":9,"42865":9,"42866":2,"42867":4,"42868":1,"42869":4,"42870":9,"42871":8,"42872":7,"42873":1,"42874":2,"42875":9,"42876":2,"42877":3,"42878":5,"42879":2,"42880":8,"42881":5,"42882":8,"42883":9,"42884":8,"42885":7,"42886":5,"42887":1,"42888":8,"42889":9,"42890":7,"42891":6,"42892":3,"42893":2,"42894":9,"42895":8,"42896":8,"42897":7,"42898":10,"42899":8,"42900":9,"42901":7,"42902":5,"42903":8,"42904":8,"42905":8,"42906":7,"42907":5,"42908":5,"42909":9,"42910":6,"42911":7,"42912":7,"42913":1,"42914":3,"42915":7,"42916":8,"42917":9,"42918":6,"42919":9,"42920":4,"42921":1,"42922":8,"42923":8,"42924":5,"42925":8,"42926":8,"42927":2,"42928":2,"42929":9,"42930":8,"42931":9,"42932":7,"42933":8,"42934":5,"42935":4,"42936":10,"42937":3,"42938":4,"42939":7,"42940":8,"42941":7,"42942":8,"42943":9,"42944":5,"42945":7,"42946":5,"42947":9,"42948":3,"42949":8,"42950":7,"42951":8,"42952":2,"42953":8,"42954":3,"42955":9,"42956":9,"42957":1,"42958":9,"42959":8,"42960":8,"42961":7,"42962":7,"42963":2,"42964":4,"42965":1,"42966":8,"42967":8,"42968":1,"42969":2,"42970":7,"42971":2,"42972":8,"42973":9,"42974":7,"42975":10,"42976":2,"42977":2,"42978":5,"42979":8,"42980":3,"42981":5,"42982":8,"42983":7,"42984":1,"42985":6,"42986":2,"42987":9,"42988":5,"42989":6,"42990":8,"42991":1,"42992":7,"42993":2,"42994":7,"42995":3,"42996":2,"42997":5,"42998":9,"42999":2,"43000":8,"43001":9,"43002":1,"43003":7,"43004":9,"43005":2,"43006":8,"43007":7,"43008":9,"43009":7,"43010":9,"43011":3,"43012":6,"43013":10,"43014":7,"43015":3,"43016":9,"43017":7,"43018":4,"43019":9,"43020":8,"43021":8,"43022":5,"43023":3,"43024":5,"43025":7,"43026":9,"43027":9,"43028":7,"43029":7,"43030":10,"43031":7,"43032":1,"43033":8,"43034":7,"43035":2,"43036":3,"43037":2,"43038":2,"43039":8,"43040":7,"43041":7,"43042":7,"43043":2,"43044":5,"43045":9,"43046":7,"43047":8,"43048":1,"43049":8,"43050":3,"43051":8,"43052":4,"43053":8,"43054":5,"43055":2,"43056":2,"43057":7,"43058":2,"43059":5,"43060":3,"43061":8,"43062":8,"43063":3,"43064":1,"43065":8,"43066":8,"43067":9,"43068":5,"43069":5,"43070":7,"43071":4,"43072":2,"43073":3,"43074":6,"43075":3,"43076":5,"43077":5,"43078":7,"43079":4,"43080":4,"43081":7,"43082":2,"43083":5,"43084":9,"43085":5,"43086":9,"43087":5,"43088":5,"43089":8,"43090":2,"43091":6,"43092":9,"43093":2,"43094":7,"43095":7,"43096":7,"43097":7,"43098":9,"43099":4,"43100":5,"43101":9,"43102":7,"43103":9,"43104":8,"43105":7,"43106":9,"43107":9,"43108":8,"43109":8,"43110":9,"43111":5,"43112":2,"43113":3,"43114":7,"43115":7,"43116":2,"43117":8,"43118":4,"43119":7,"43120":8,"43121":4,"43122":7,"43123":5,"43124":8,"43125":7,"43126":2,"43127":8,"43128":1,"43129":7,"43130":4,"43131":2,"43132":7,"43133":8,"43134":7,"43135":8,"43136":7,"43137":9,"43138":9,"43139":9,"43140":8,"43141":7,"43142":9,"43143":9,"43144":7,"43145":5,"43146":2,"43147":7,"43148":4,"43149":5,"43150":3,"43151":8,"43152":1,"43153":2,"43154":6,"43155":9,"43156":3,"43157":6,"43158":5,"43159":8,"43160":3,"43161":7,"43162":2,"43163":9,"43164":8,"43165":5,"43166":5,"43167":9,"43168":9,"43169":4,"43170":1,"43171":9,"43172":8,"43173":6,"43174":6,"43175":3,"43176":4,"43177":9,"43178":4,"43179":7,"43180":9,"43181":2,"43182":2,"43183":2,"43184":7,"43185":3,"43186":10,"43187":8,"43188":7,"43189":5,"43190":10,"43191":8,"43192":9,"43193":7,"43194":9,"43195":9,"43196":9,"43197":4,"43198":9,"43199":8,"43200":8,"43201":7,"43202":8,"43203":4,"43204":8,"43205":1,"43206":5,"43207":10,"43208":5,"43209":1,"43210":8,"43211":7,"43212":7,"43213":1,"43214":8,"43215":9,"43216":9,"43217":6,"43218":7,"43219":5,"43220":7,"43221":7,"43222":8,"43223":7,"43224":7,"43225":5,"43226":9,"43227":2,"43228":7,"43229":9,"43230":5,"43231":5,"43232":8,"43233":8,"43234":10,"43235":8,"43236":4,"43237":7,"43238":7,"43239":8,"43240":3,"43241":6,"43242":9,"43243":5,"43244":4,"43245":4,"43246":3,"43247":6,"43248":3,"43249":7,"43250":6,"43251":8,"43252":7,"43253":10,"43254":3,"43255":7,"43256":5,"43257":5,"43258":8,"43259":6,"43260":8,"43261":9,"43262":8,"43263":5,"43264":1,"43265":2,"43266":3,"43267":9,"43268":9,"43269":8,"43270":1,"43271":7,"43272":3,"43273":6,"43274":6,"43275":9,"43276":1,"43277":3,"43278":3,"43279":5,"43280":7,"43281":5,"43282":8,"43283":2,"43284":7,"43285":9,"43286":5,"43287":10,"43288":7,"43289":2,"43290":2,"43291":1,"43292":2,"43293":2,"43294":6,"43295":7,"43296":6,"43297":8,"43298":1,"43299":3,"43300":8,"43301":2,"43302":3,"43303":8,"43304":9,"43305":8,"43306":3,"43307":9,"43308":5,"43309":4,"43310":5,"43311":7,"43312":5,"43313":7,"43314":9,"43315":7,"43316":9,"43317":7,"43318":10,"43319":6,"43320":2,"43321":7,"43322":8,"43323":8,"43324":10,"43325":7,"43326":8,"43327":4,"43328":2,"43329":9,"43330":2,"43331":6,"43332":8,"43333":10,"43334":2,"43335":2,"43336":5,"43337":5,"43338":6,"43339":10,"43340":7,"43341":5,"43342":2,"43343":6,"43344":5,"43345":1,"43346":6,"43347":7,"43348":3,"43349":8,"43350":7,"43351":7,"43352":7,"43353":3,"43354":10,"43355":4,"43356":8,"43357":9,"43358":7,"43359":5,"43360":1,"43361":4,"43362":7,"43363":8,"43364":10,"43365":2,"43366":7,"43367":2,"43368":8,"43369":8,"43370":5,"43371":5,"43372":2,"43373":7,"43374":7,"43375":8,"43376":7,"43377":7,"43378":10,"43379":5,"43380":9,"43381":7,"43382":9,"43383":7,"43384":3,"43385":7,"43386":7,"43387":7,"43388":4,"43389":5,"43390":6,"43391":8,"43392":4,"43393":6,"43394":4,"43395":2,"43396":10,"43397":9,"43398":7,"43399":9,"43400":3,"43401":7,"43402":1,"43403":7,"43404":7,"43405":9,"43406":2,"43407":8,"43408":8,"43409":7,"43410":2,"43411":3,"43412":9,"43413":5,"43414":7,"43415":8,"43416":8,"43417":7,"43418":9,"43419":9,"43420":10,"43421":9,"43422":1,"43423":3,"43424":3,"43425":1,"43426":4,"43427":8,"43428":6,"43429":2,"43430":7,"43431":3,"43432":8,"43433":6,"43434":4,"43435":8,"43436":2,"43437":5,"43438":6,"43439":9,"43440":2,"43441":8,"43442":5,"43443":9,"43444":7,"43445":8,"43446":7,"43447":6,"43448":3,"43449":8,"43450":9,"43451":3,"43452":5,"43453":5,"43454":8,"43455":4,"43456":7,"43457":2,"43458":5,"43459":9,"43460":8,"43461":7,"43462":5,"43463":2,"43464":4,"43465":7,"43466":9,"43467":7,"43468":6,"43469":2,"43470":3,"43471":4,"43472":8,"43473":7,"43474":8,"43475":2,"43476":8,"43477":7,"43478":1,"43479":8,"43480":6,"43481":4,"43482":4,"43483":3,"43484":7,"43485":2,"43486":7,"43487":7,"43488":7,"43489":5,"43490":5,"43491":8,"43492":4,"43493":8,"43494":8,"43495":9,"43496":7,"43497":8,"43498":2,"43499":2,"43500":7,"43501":8,"43502":10,"43503":2,"43504":8,"43505":4,"43506":9,"43507":10,"43508":2,"43509":2,"43510":2,"43511":6,"43512":9,"43513":3,"43514":6,"43515":10,"43516":8,"43517":9,"43518":10,"43519":7,"43520":7,"43521":2,"43522":4,"43523":10,"43524":7,"43525":8,"43526":6,"43527":6,"43528":8,"43529":6,"43530":9,"43531":1,"43532":1,"43533":7,"43534":4,"43535":9,"43536":2,"43537":7,"43538":6,"43539":9,"43540":3,"43541":2,"43542":8,"43543":8,"43544":3,"43545":4,"43546":7,"43547":7,"43548":7,"43549":8,"43550":2,"43551":3,"43552":9,"43553":9,"43554":1,"43555":8,"43556":4,"43557":10,"43558":8,"43559":4,"43560":8,"43561":1,"43562":7,"43563":3,"43564":7,"43565":8,"43566":8,"43567":9,"43568":7,"43569":2,"43570":7,"43571":10,"43572":5,"43573":9,"43574":9,"43575":9,"43576":7,"43577":5,"43578":8,"43579":7,"43580":8,"43581":7,"43582":6,"43583":8,"43584":9,"43585":7,"43586":6,"43587":8,"43588":9,"43589":7,"43590":10,"43591":5,"43592":2,"43593":9,"43594":8,"43595":10,"43596":9,"43597":7,"43598":8,"43599":8,"43600":4,"43601":6,"43602":8,"43603":1,"43604":2,"43605":9,"43606":9,"43607":8,"43608":7,"43609":1,"43610":10,"43611":9,"43612":4,"43613":7,"43614":1,"43615":4,"43616":8,"43617":9,"43618":8,"43619":9,"43620":4,"43621":5,"43622":10,"43623":8,"43624":9,"43625":7,"43626":6,"43627":5,"43628":5,"43629":7,"43630":3,"43631":2,"43632":9,"43633":4,"43634":1,"43635":7,"43636":8,"43637":6,"43638":5,"43639":8,"43640":10,"43641":8,"43642":9,"43643":2,"43644":9,"43645":8,"43646":7,"43647":5,"43648":5,"43649":3,"43650":9,"43651":2,"43652":10,"43653":8,"43654":9,"43655":10,"43656":1,"43657":4,"43658":8,"43659":2,"43660":9,"43661":8,"43662":9,"43663":5,"43664":2,"43665":9,"43666":6,"43667":4,"43668":1,"43669":4,"43670":7,"43671":4,"43672":8,"43673":5,"43674":4,"43675":10,"43676":9,"43677":9,"43678":10,"43679":5,"43680":8,"43681":10,"43682":5,"43683":8,"43684":2,"43685":4,"43686":8,"43687":3,"43688":7,"43689":2,"43690":2,"43691":7,"43692":2,"43693":3,"43694":5,"43695":7,"43696":3,"43697":9,"43698":6,"43699":7,"43700":8,"43701":10,"43702":5,"43703":8,"43704":4,"43705":6,"43706":5,"43707":9,"43708":5,"43709":2,"43710":7,"43711":7,"43712":9,"43713":10,"43714":9,"43715":3,"43716":10,"43717":5,"43718":2,"43719":8,"43720":10,"43721":2,"43722":9,"43723":7,"43724":7,"43725":8,"43726":9,"43727":9,"43728":9,"43729":10,"43730":7,"43731":8,"43732":6,"43733":5,"43734":9,"43735":2,"43736":2,"43737":4,"43738":8,"43739":7,"43740":2,"43741":7,"43742":3,"43743":7,"43744":6,"43745":10,"43746":4,"43747":2,"43748":9,"43749":4,"43750":7,"43751":7,"43752":6,"43753":2,"43754":5,"43755":3,"43756":7,"43757":1,"43758":8,"43759":7,"43760":7,"43761":7,"43762":4,"43763":6,"43764":9,"43765":4,"43766":4,"43767":8,"43768":8,"43769":2,"43770":8,"43771":2,"43772":6,"43773":8,"43774":4,"43775":3,"43776":1,"43777":9,"43778":2,"43779":8,"43780":2,"43781":9,"43782":1,"43783":1,"43784":7,"43785":5,"43786":7,"43787":3,"43788":5,"43789":7,"43790":10,"43791":7,"43792":2,"43793":2,"43794":8,"43795":6,"43796":7,"43797":2,"43798":1,"43799":8,"43800":7,"43801":7,"43802":9,"43803":8,"43804":8,"43805":3,"43806":3,"43807":3,"43808":3,"43809":7,"43810":9,"43811":1,"43812":2,"43813":8,"43814":2,"43815":1,"43816":7,"43817":3,"43818":7,"43819":6,"43820":5,"43821":9,"43822":8,"43823":10,"43824":10,"43825":2,"43826":5,"43827":6,"43828":10,"43829":7,"43830":6,"43831":9,"43832":9,"43833":9,"43834":7,"43835":2,"43836":8,"43837":8,"43838":1,"43839":7,"43840":7,"43841":5,"43842":3,"43843":7,"43844":9,"43845":3,"43846":9,"43847":6,"43848":7,"43849":7,"43850":8,"43851":9,"43852":8,"43853":2,"43854":2,"43855":5,"43856":5,"43857":5,"43858":9,"43859":8,"43860":3,"43861":2,"43862":3,"43863":8,"43864":8,"43865":4,"43866":9,"43867":2,"43868":9,"43869":5,"43870":6,"43871":3,"43872":9,"43873":6,"43874":4,"43875":8,"43876":8,"43877":7,"43878":7,"43879":9,"43880":6,"43881":10,"43882":5,"43883":7,"43884":6,"43885":5,"43886":9,"43887":9,"43888":9,"43889":9,"43890":8,"43891":7,"43892":4,"43893":3,"43894":2,"43895":2,"43896":6,"43897":2,"43898":5,"43899":6,"43900":1,"43901":8,"43902":7,"43903":2,"43904":9,"43905":8,"43906":10,"43907":8,"43908":5,"43909":5,"43910":10,"43911":7,"43912":6,"43913":6,"43914":1,"43915":2,"43916":5,"43917":8,"43918":3,"43919":2,"43920":8,"43921":8,"43922":8,"43923":9,"43924":6,"43925":5,"43926":7,"43927":4,"43928":10,"43929":5,"43930":8,"43931":7,"43932":4,"43933":8,"43934":4,"43935":2,"43936":9,"43937":4,"43938":1,"43939":7,"43940":9,"43941":7,"43942":8,"43943":6,"43944":8,"43945":6,"43946":4,"43947":4,"43948":1,"43949":6,"43950":8,"43951":4,"43952":5,"43953":8,"43954":5,"43955":8,"43956":10,"43957":8,"43958":10,"43959":7,"43960":7,"43961":7,"43962":7,"43963":10,"43964":3,"43965":10,"43966":8,"43967":9,"43968":3,"43969":9,"43970":5,"43971":9,"43972":5,"43973":8,"43974":8,"43975":7,"43976":9,"43977":7,"43978":7,"43979":8,"43980":3,"43981":9,"43982":10,"43983":9,"43984":2,"43985":1,"43986":8,"43987":8,"43988":3,"43989":5,"43990":9,"43991":8,"43992":8,"43993":5,"43994":5,"43995":6,"43996":7,"43997":8,"43998":8,"43999":9,"44000":3,"44001":7,"44002":7,"44003":8,"44004":8,"44005":3,"44006":8,"44007":2,"44008":8,"44009":10,"44010":2,"44011":8,"44012":4,"44013":8,"44014":9,"44015":9,"44016":7,"44017":9,"44018":1,"44019":5,"44020":5,"44021":5,"44022":8,"44023":7,"44024":9,"44025":10,"44026":2,"44027":8,"44028":8,"44029":7,"44030":6,"44031":8,"44032":3,"44033":8,"44034":1,"44035":7,"44036":2,"44037":1,"44038":8,"44039":8,"44040":7,"44041":8,"44042":10,"44043":1,"44044":4,"44045":7,"44046":5,"44047":2,"44048":1,"44049":2,"44050":6,"44051":8,"44052":1,"44053":1,"44054":7,"44055":2,"44056":8,"44057":6,"44058":9,"44059":8,"44060":10,"44061":10,"44062":8,"44063":4,"44064":9,"44065":5,"44066":7,"44067":8,"44068":8,"44069":7,"44070":8,"44071":10,"44072":5,"44073":5,"44074":9,"44075":4,"44076":9,"44077":10,"44078":8,"44079":2,"44080":7,"44081":8,"44082":5,"44083":7,"44084":8,"44085":7,"44086":7,"44087":6,"44088":9,"44089":8,"44090":2,"44091":9,"44092":7,"44093":2,"44094":5,"44095":7,"44096":7,"44097":2,"44098":5,"44099":2,"44100":7,"44101":1,"44102":4,"44103":3,"44104":1,"44105":7,"44106":2,"44107":9,"44108":2,"44109":9,"44110":6,"44111":8,"44112":7,"44113":5,"44114":3,"44115":7,"44116":7,"44117":8,"44118":4,"44119":2,"44120":7,"44121":7,"44122":2,"44123":7,"44124":8,"44125":9,"44126":7,"44127":9,"44128":5,"44129":7,"44130":8,"44131":5,"44132":2,"44133":5,"44134":8,"44135":7,"44136":9,"44137":9,"44138":8,"44139":2,"44140":2,"44141":8,"44142":9,"44143":8,"44144":9,"44145":2,"44146":8,"44147":8,"44148":10,"44149":4,"44150":8,"44151":7,"44152":7,"44153":8,"44154":7,"44155":3,"44156":8,"44157":7,"44158":4,"44159":9,"44160":8,"44161":8,"44162":4,"44163":7,"44164":7,"44165":4,"44166":7,"44167":3,"44168":9,"44169":8,"44170":8,"44171":9,"44172":8,"44173":4,"44174":8,"44175":9,"44176":10,"44177":3,"44178":8,"44179":5,"44180":9,"44181":3,"44182":9,"44183":7,"44184":7,"44185":7,"44186":6,"44187":9,"44188":8,"44189":7,"44190":9,"44191":6,"44192":7,"44193":8,"44194":5,"44195":7,"44196":4,"44197":3,"44198":9,"44199":3,"44200":8,"44201":2,"44202":8,"44203":5,"44204":2,"44205":8,"44206":5,"44207":7,"44208":7,"44209":2,"44210":8,"44211":5,"44212":6,"44213":8,"44214":7,"44215":8,"44216":6,"44217":8,"44218":7,"44219":6,"44220":5,"44221":8,"44222":5,"44223":7,"44224":7,"44225":9,"44226":8,"44227":9,"44228":8,"44229":2,"44230":1,"44231":4,"44232":1,"44233":5,"44234":7,"44235":8,"44236":2,"44237":5,"44238":1,"44239":7,"44240":2,"44241":4,"44242":5,"44243":7,"44244":8,"44245":6,"44246":1,"44247":8,"44248":5,"44249":5,"44250":10,"44251":7,"44252":2,"44253":6,"44254":5,"44255":2,"44256":8,"44257":9,"44258":9,"44259":1,"44260":7,"44261":7,"44262":8,"44263":3,"44264":8,"44265":8,"44266":7,"44267":5,"44268":9,"44269":5,"44270":7,"44271":2,"44272":8,"44273":7,"44274":7,"44275":8,"44276":7,"44277":2,"44278":8,"44279":5,"44280":8,"44281":6,"44282":9,"44283":9,"44284":8,"44285":3,"44286":8,"44287":7,"44288":6,"44289":8,"44290":8,"44291":7,"44292":3,"44293":2,"44294":9,"44295":9,"44296":9,"44297":2,"44298":2,"44299":4,"44300":8,"44301":5,"44302":5,"44303":8,"44304":9,"44305":9,"44306":9,"44307":8,"44308":3,"44309":7,"44310":2,"44311":4,"44312":6,"44313":7,"44314":5,"44315":8,"44316":9,"44317":9,"44318":8,"44319":8,"44320":10,"44321":7,"44322":8,"44323":5,"44324":8,"44325":5,"44326":10,"44327":5,"44328":7,"44329":7,"44330":9,"44331":8,"44332":10,"44333":5,"44334":8,"44335":7,"44336":7,"44337":4,"44338":8,"44339":8,"44340":7,"44341":7,"44342":5,"44343":7,"44344":4,"44345":1,"44346":7,"44347":10,"44348":9,"44349":6,"44350":9,"44351":7,"44352":9,"44353":6,"44354":9,"44355":5,"44356":7,"44357":8,"44358":8,"44359":1,"44360":2,"44361":9,"44362":5,"44363":9,"44364":7,"44365":3,"44366":8,"44367":8,"44368":5,"44369":8,"44370":5,"44371":8,"44372":7,"44373":7,"44374":3,"44375":1,"44376":2,"44377":8,"44378":9,"44379":7,"44380":8,"44381":10,"44382":8,"44383":2,"44384":10,"44385":8,"44386":7,"44387":7,"44388":5,"44389":8,"44390":7,"44391":9,"44392":9,"44393":7,"44394":4,"44395":8,"44396":8,"44397":9,"44398":9,"44399":5,"44400":8,"44401":9,"44402":8,"44403":8,"44404":3,"44405":8,"44406":7,"44407":8,"44408":7,"44409":8,"44410":5,"44411":1,"44412":6,"44413":10,"44414":6,"44415":7,"44416":8,"44417":9,"44418":7,"44419":8,"44420":8,"44421":9,"44422":7,"44423":7,"44424":5,"44425":7,"44426":1,"44427":8,"44428":8,"44429":10,"44430":9,"44431":5,"44432":2,"44433":7,"44434":5,"44435":3,"44436":8,"44437":8,"44438":10,"44439":7,"44440":9,"44441":3,"44442":9,"44443":9,"44444":6,"44445":7,"44446":3,"44447":5,"44448":10,"44449":3,"44450":7,"44451":5,"44452":8,"44453":9,"44454":8,"44455":8,"44456":7,"44457":1,"44458":7,"44459":5,"44460":7,"44461":4,"44462":5,"44463":5,"44464":9,"44465":1,"44466":9,"44467":9,"44468":9,"44469":8,"44470":3,"44471":1,"44472":1,"44473":5,"44474":9,"44475":7,"44476":2,"44477":7,"44478":2,"44479":9,"44480":5,"44481":8,"44482":5,"44483":10,"44484":4,"44485":10,"44486":9,"44487":5,"44488":7,"44489":8,"44490":8,"44491":7,"44492":4,"44493":8,"44494":1,"44495":4,"44496":9,"44497":5,"44498":5,"44499":5,"44500":10,"44501":6,"44502":8,"44503":7,"44504":7,"44505":9,"44506":10,"44507":7,"44508":2,"44509":8,"44510":8,"44511":10,"44512":8,"44513":8,"44514":5,"44515":8,"44516":4,"44517":10,"44518":3,"44519":4,"44520":10,"44521":10,"44522":8,"44523":8,"44524":8,"44525":2,"44526":8,"44527":7,"44528":6,"44529":7,"44530":3,"44531":10,"44532":9,"44533":4,"44534":3,"44535":8,"44536":7,"44537":1,"44538":7,"44539":9,"44540":5,"44541":8,"44542":8,"44543":2,"44544":1,"44545":2,"44546":9,"44547":3,"44548":4,"44549":8,"44550":8,"44551":7,"44552":2,"44553":7,"44554":9,"44555":1,"44556":5,"44557":7,"44558":5,"44559":3,"44560":2,"44561":9,"44562":8,"44563":9,"44564":2,"44565":7,"44566":7,"44567":8,"44568":4,"44569":8,"44570":4,"44571":2,"44572":10,"44573":5,"44574":9,"44575":7,"44576":7,"44577":4,"44578":2,"44579":8,"44580":7,"44581":8,"44582":9,"44583":7,"44584":9,"44585":8,"44586":1,"44587":8,"44588":9,"44589":9,"44590":7,"44591":8,"44592":8,"44593":2,"44594":1,"44595":4,"44596":2,"44597":6,"44598":9,"44599":7,"44600":10,"44601":1,"44602":8,"44603":6,"44604":9,"44605":9,"44606":7,"44607":7,"44608":7,"44609":7,"44610":9,"44611":6,"44612":5,"44613":7,"44614":5,"44615":3,"44616":10,"44617":8,"44618":10,"44619":7,"44620":6,"44621":7,"44622":9,"44623":6,"44624":8,"44625":7,"44626":7,"44627":9,"44628":2,"44629":7,"44630":9,"44631":7,"44632":8,"44633":7,"44634":10,"44635":9,"44636":8,"44637":7,"44638":7,"44639":3,"44640":7,"44641":7,"44642":7,"44643":8,"44644":1,"44645":3,"44646":2,"44647":1,"44648":5,"44649":5,"44650":10,"44651":5,"44652":1,"44653":6,"44654":3,"44655":8,"44656":1,"44657":1,"44658":9,"44659":2,"44660":8,"44661":9,"44662":2,"44663":8,"44664":4,"44665":8,"44666":4,"44667":9,"44668":2,"44669":7,"44670":8,"44671":7,"44672":4,"44673":5,"44674":3,"44675":8,"44676":6,"44677":5,"44678":8,"44679":7,"44680":2,"44681":7,"44682":9,"44683":7,"44684":2,"44685":2,"44686":1,"44687":3,"44688":3,"44689":7,"44690":7,"44691":8,"44692":9,"44693":8,"44694":7,"44695":9,"44696":3,"44697":8,"44698":9,"44699":8,"44700":8,"44701":5,"44702":7,"44703":7,"44704":2,"44705":8,"44706":5,"44707":7,"44708":7,"44709":9,"44710":7,"44711":2,"44712":7,"44713":5,"44714":8,"44715":7,"44716":5,"44717":2,"44718":6,"44719":6,"44720":4,"44721":9,"44722":5,"44723":8,"44724":8,"44725":6,"44726":4,"44727":10,"44728":9,"44729":7,"44730":6,"44731":8,"44732":2,"44733":2,"44734":8,"44735":9,"44736":9,"44737":8,"44738":5,"44739":10,"44740":8,"44741":8,"44742":5,"44743":9,"44744":5,"44745":8,"44746":4,"44747":3,"44748":1,"44749":5,"44750":8,"44751":9,"44752":9,"44753":9,"44754":9,"44755":6,"44756":8,"44757":1,"44758":8,"44759":6,"44760":5,"44761":10,"44762":7,"44763":8,"44764":7,"44765":7,"44766":8,"44767":8,"44768":4,"44769":7,"44770":10,"44771":2,"44772":10,"44773":5,"44774":7,"44775":4,"44776":9,"44777":8,"44778":10,"44779":2,"44780":9,"44781":2,"44782":8,"44783":9,"44784":7,"44785":7,"44786":4,"44787":3,"44788":8,"44789":7,"44790":8,"44791":7,"44792":4,"44793":9,"44794":1,"44795":9,"44796":6,"44797":8,"44798":7,"44799":7,"44800":2,"44801":3,"44802":9,"44803":5,"44804":8,"44805":7,"44806":6,"44807":9,"44808":4,"44809":9,"44810":2,"44811":9,"44812":5,"44813":6,"44814":8,"44815":8,"44816":4,"44817":10,"44818":8,"44819":5,"44820":8,"44821":8,"44822":8,"44823":7,"44824":8,"44825":3,"44826":8,"44827":5,"44828":10,"44829":2,"44830":1,"44831":5,"44832":9,"44833":3,"44834":10,"44835":9,"44836":2,"44837":9,"44838":10,"44839":5,"44840":5,"44841":8,"44842":9,"44843":8,"44844":9,"44845":9,"44846":8,"44847":10,"44848":9,"44849":7,"44850":8,"44851":8,"44852":2,"44853":9,"44854":7,"44855":7,"44856":8,"44857":8,"44858":7,"44859":6,"44860":8,"44861":6,"44862":7,"44863":8,"44864":3,"44865":2,"44866":4,"44867":10,"44868":7,"44869":8,"44870":1,"44871":8,"44872":8,"44873":8,"44874":7,"44875":8,"44876":3,"44877":10,"44878":6,"44879":9,"44880":10,"44881":10,"44882":7,"44883":5,"44884":8,"44885":7,"44886":6,"44887":8,"44888":9,"44889":5,"44890":5,"44891":3,"44892":6,"44893":10,"44894":9,"44895":3,"44896":8,"44897":2,"44898":9,"44899":7,"44900":9,"44901":4,"44902":6,"44903":10,"44904":3,"44905":7,"44906":2,"44907":7,"44908":7,"44909":7,"44910":7,"44911":5,"44912":8,"44913":2,"44914":8,"44915":5,"44916":1,"44917":9,"44918":3,"44919":7,"44920":8,"44921":5,"44922":5,"44923":7,"44924":8,"44925":7,"44926":10,"44927":2,"44928":7,"44929":2,"44930":7,"44931":7,"44932":8,"44933":2,"44934":8,"44935":9,"44936":5,"44937":8,"44938":2,"44939":8,"44940":8,"44941":8,"44942":5,"44943":8,"44944":10,"44945":5,"44946":8,"44947":7,"44948":5,"44949":7,"44950":9,"44951":2,"44952":8,"44953":7,"44954":7,"44955":7,"44956":9,"44957":9,"44958":5,"44959":3,"44960":5,"44961":7,"44962":8,"44963":6,"44964":9,"44965":9,"44966":2,"44967":7,"44968":5,"44969":8,"44970":3,"44971":10,"44972":1,"44973":8,"44974":9,"44975":8,"44976":7,"44977":3,"44978":4,"44979":8,"44980":7,"44981":7,"44982":7,"44983":7,"44984":6,"44985":9,"44986":7,"44987":5,"44988":8,"44989":8,"44990":7,"44991":2,"44992":9,"44993":9,"44994":5,"44995":8,"44996":4,"44997":7,"44998":10,"44999":7,"45000":8,"45001":5,"45002":7,"45003":8,"45004":5,"45005":7,"45006":1,"45007":9,"45008":7,"45009":9,"45010":8,"45011":5,"45012":1,"45013":6,"45014":9,"45015":2,"45016":8,"45017":5,"45018":8,"45019":1,"45020":9,"45021":10,"45022":7,"45023":10,"45024":7,"45025":7,"45026":7,"45027":8,"45028":7,"45029":5,"45030":8,"45031":7,"45032":1,"45033":8,"45034":5,"45035":1,"45036":7,"45037":5,"45038":7,"45039":7,"45040":9,"45041":6,"45042":7,"45043":9,"45044":7,"45045":5,"45046":3,"45047":8,"45048":10,"45049":9,"45050":9,"45051":8,"45052":7,"45053":7,"45054":7,"45055":7,"45056":7,"45057":9,"45058":8,"45059":4,"45060":3,"45061":8,"45062":2,"45063":7,"45064":9,"45065":2,"45066":8,"45067":3,"45068":2,"45069":8,"45070":2,"45071":8,"45072":9,"45073":1,"45074":10,"45075":2,"45076":2,"45077":7,"45078":3,"45079":7,"45080":5,"45081":7,"45082":10,"45083":9,"45084":9,"45085":2,"45086":2,"45087":7,"45088":7,"45089":1,"45090":6,"45091":8,"45092":7,"45093":7,"45094":8,"45095":8,"45096":8,"45097":6,"45098":5,"45099":2,"45100":8,"45101":9,"45102":6,"45103":9,"45104":2,"45105":9,"45106":10,"45107":7,"45108":2,"45109":10,"45110":7,"45111":7,"45112":7,"45113":8,"45114":5,"45115":1,"45116":1,"45117":7,"45118":8,"45119":5,"45120":8,"45121":4,"45122":8,"45123":2,"45124":8,"45125":9,"45126":6,"45127":7,"45128":8,"45129":2,"45130":8,"45131":3,"45132":2,"45133":1,"45134":2,"45135":1,"45136":9,"45137":2,"45138":9,"45139":1,"45140":7,"45141":4,"45142":7,"45143":9,"45144":3,"45145":7,"45146":8,"45147":3,"45148":9,"45149":2,"45150":9,"45151":7,"45152":6,"45153":8,"45154":8,"45155":4,"45156":2,"45157":9,"45158":10,"45159":6,"45160":8,"45161":7,"45162":8,"45163":7,"45164":5,"45165":4,"45166":10,"45167":9,"45168":3,"45169":7,"45170":8,"45171":1,"45172":5,"45173":8,"45174":9,"45175":6,"45176":7,"45177":10,"45178":8,"45179":6,"45180":5,"45181":5,"45182":3,"45183":1,"45184":10,"45185":9,"45186":10,"45187":7,"45188":8,"45189":8,"45190":9,"45191":8,"45192":7,"45193":9,"45194":5,"45195":5,"45196":8,"45197":10,"45198":7,"45199":7,"45200":8,"45201":5,"45202":7,"45203":2,"45204":9,"45205":3,"45206":2,"45207":10,"45208":9,"45209":1,"45210":8,"45211":4,"45212":3,"45213":9,"45214":8,"45215":9,"45216":5,"45217":10,"45218":9,"45219":1,"45220":9,"45221":2,"45222":10,"45223":8,"45224":8,"45225":7,"45226":2,"45227":7,"45228":7,"45229":8,"45230":9,"45231":8,"45232":7,"45233":7,"45234":7,"45235":7,"45236":8,"45237":6,"45238":7,"45239":7,"45240":9,"45241":9,"45242":9,"45243":9,"45244":2,"45245":7,"45246":7,"45247":5,"45248":9,"45249":8,"45250":5,"45251":7,"45252":6,"45253":7,"45254":8,"45255":2,"45256":2,"45257":3,"45258":8,"45259":7,"45260":2,"45261":1,"45262":4,"45263":9,"45264":8,"45265":7,"45266":2,"45267":5,"45268":7,"45269":8,"45270":9,"45271":3,"45272":8,"45273":3,"45274":2,"45275":2,"45276":10,"45277":3,"45278":9,"45279":7,"45280":9,"45281":3,"45282":9,"45283":7,"45284":7,"45285":7,"45286":8,"45287":5,"45288":2,"45289":8,"45290":5,"45291":3,"45292":8,"45293":2,"45294":5,"45295":7,"45296":7,"45297":9,"45298":1,"45299":8,"45300":5,"45301":5,"45302":2,"45303":8,"45304":8,"45305":8,"45306":9,"45307":1,"45308":8,"45309":7,"45310":8,"45311":7,"45312":7,"45313":1,"45314":7,"45315":5,"45316":8,"45317":2,"45318":7,"45319":7,"45320":7,"45321":6,"45322":7,"45323":3,"45324":1,"45325":8,"45326":2,"45327":8,"45328":5,"45329":4,"45330":10,"45331":1,"45332":8,"45333":6,"45334":9,"45335":5,"45336":7,"45337":9,"45338":1,"45339":2,"45340":7,"45341":10,"45342":7,"45343":9,"45344":9,"45345":9,"45346":8,"45347":7,"45348":9,"45349":8,"45350":9,"45351":8,"45352":7,"45353":8,"45354":8,"45355":2,"45356":6,"45357":8,"45358":1,"45359":5,"45360":4,"45361":4,"45362":8,"45363":8,"45364":2,"45365":2,"45366":5,"45367":4,"45368":5,"45369":9,"45370":5,"45371":5,"45372":6,"45373":8,"45374":7,"45375":2,"45376":2,"45377":1,"45378":8,"45379":6,"45380":5,"45381":9,"45382":7,"45383":10,"45384":7,"45385":6,"45386":5,"45387":5,"45388":10,"45389":8,"45390":3,"45391":7,"45392":8,"45393":8,"45394":8,"45395":7,"45396":8,"45397":9,"45398":8,"45399":1,"45400":7,"45401":5,"45402":7,"45403":7,"45404":8,"45405":7,"45406":8,"45407":3,"45408":4,"45409":2,"45410":8,"45411":8,"45412":2,"45413":10,"45414":8,"45415":9,"45416":6,"45417":9,"45418":8,"45419":2,"45420":2,"45421":10,"45422":8,"45423":8,"45424":7,"45425":9,"45426":7,"45427":9,"45428":9,"45429":9,"45430":10,"45431":9,"45432":7,"45433":7,"45434":2,"45435":9,"45436":6,"45437":3,"45438":8,"45439":9,"45440":10,"45441":7,"45442":7,"45443":5,"45444":8,"45445":4,"45446":8,"45447":2,"45448":7,"45449":8,"45450":2,"45451":8,"45452":7,"45453":2,"45454":7,"45455":2,"45456":7,"45457":5,"45458":7,"45459":9,"45460":3,"45461":5,"45462":2,"45463":4,"45464":8,"45465":9,"45466":9,"45467":8,"45468":6,"45469":7,"45470":9,"45471":8,"45472":9,"45473":7,"45474":8,"45475":8,"45476":8,"45477":7,"45478":8,"45479":1,"45480":8,"45481":9,"45482":7,"45483":7,"45484":5,"45485":9,"45486":5,"45487":8,"45488":8,"45489":10,"45490":9,"45491":2,"45492":4,"45493":7,"45494":7,"45495":9,"45496":7,"45497":8,"45498":6,"45499":5,"45500":5,"45501":7,"45502":10,"45503":7,"45504":2,"45505":9,"45506":8,"45507":7,"45508":10,"45509":8,"45510":9,"45511":5,"45512":4,"45513":3,"45514":7,"45515":6,"45516":7,"45517":8,"45518":8,"45519":7,"45520":6,"45521":8,"45522":10,"45523":8,"45524":7,"45525":5,"45526":7,"45527":9,"45528":8,"45529":9,"45530":9,"45531":5,"45532":3,"45533":7,"45534":10,"45535":8,"45536":5,"45537":4,"45538":8,"45539":10,"45540":1,"45541":9,"45542":8,"45543":1,"45544":7,"45545":7,"45546":10,"45547":5,"45548":8,"45549":7,"45550":7,"45551":6,"45552":8,"45553":6,"45554":7,"45555":2,"45556":8,"45557":8,"45558":1,"45559":8,"45560":8,"45561":2,"45562":7,"45563":7,"45564":8,"45565":2,"45566":2,"45567":4,"45568":10,"45569":7,"45570":9,"45571":2,"45572":7,"45573":9,"45574":7,"45575":5,"45576":9,"45577":9,"45578":10,"45579":9,"45580":9,"45581":6,"45582":7,"45583":9,"45584":5,"45585":1,"45586":10,"45587":6,"45588":8,"45589":1,"45590":2,"45591":4,"45592":8,"45593":3,"45594":7,"45595":6,"45596":4,"45597":8,"45598":2,"45599":6,"45600":9,"45601":7,"45602":5,"45603":10,"45604":7,"45605":9,"45606":2,"45607":3,"45608":8,"45609":6,"45610":9,"45611":8,"45612":8,"45613":9,"45614":8,"45615":9,"45616":8,"45617":5,"45618":2,"45619":8,"45620":9,"45621":5,"45622":8,"45623":5,"45624":1,"45625":2,"45626":2,"45627":9,"45628":5,"45629":10,"45630":10,"45631":7,"45632":8,"45633":8,"45634":5,"45635":5,"45636":8,"45637":8,"45638":4,"45639":7,"45640":7,"45641":8,"45642":9,"45643":8,"45644":5,"45645":7,"45646":7,"45647":8,"45648":7,"45649":4,"45650":2,"45651":8,"45652":4,"45653":7,"45654":9,"45655":9,"45656":8,"45657":9,"45658":9,"45659":9,"45660":5,"45661":2,"45662":10,"45663":7,"45664":1,"45665":9,"45666":2,"45667":1,"45668":6,"45669":7,"45670":9,"45671":3,"45672":2,"45673":2,"45674":8,"45675":10,"45676":4,"45677":8,"45678":4,"45679":1,"45680":7,"45681":3,"45682":2,"45683":5,"45684":7,"45685":4,"45686":2,"45687":7,"45688":5,"45689":4,"45690":9,"45691":8,"45692":2,"45693":8,"45694":7,"45695":7,"45696":8,"45697":8,"45698":7,"45699":7,"45700":9,"45701":7,"45702":9,"45703":7,"45704":2,"45705":2,"45706":9,"45707":1,"45708":9,"45709":7,"45710":8,"45711":7,"45712":7,"45713":5,"45714":8,"45715":8,"45716":3,"45717":3,"45718":5,"45719":8,"45720":7,"45721":2,"45722":9,"45723":3,"45724":8,"45725":1,"45726":5,"45727":10,"45728":10,"45729":1,"45730":10,"45731":8,"45732":7,"45733":7,"45734":7,"45735":4,"45736":2,"45737":3,"45738":5,"45739":10,"45740":8,"45741":2,"45742":8,"45743":8,"45744":9,"45745":4,"45746":9,"45747":10,"45748":1,"45749":9,"45750":7,"45751":6,"45752":9,"45753":7,"45754":9,"45755":7,"45756":5,"45757":7,"45758":8,"45759":3,"45760":7,"45761":9,"45762":7,"45763":8,"45764":6,"45765":5,"45766":9,"45767":10,"45768":9,"45769":8,"45770":7,"45771":10,"45772":9,"45773":2,"45774":5,"45775":8,"45776":9,"45777":10,"45778":9,"45779":2,"45780":7,"45781":7,"45782":5,"45783":8,"45784":2,"45785":5,"45786":3,"45787":1,"45788":10,"45789":1,"45790":10,"45791":4,"45792":5,"45793":7,"45794":3,"45795":4,"45796":8,"45797":5,"45798":4,"45799":1,"45800":9,"45801":10,"45802":8,"45803":2,"45804":7,"45805":9,"45806":8,"45807":4,"45808":6,"45809":10,"45810":7,"45811":8,"45812":2,"45813":9,"45814":6,"45815":7,"45816":3,"45817":2,"45818":8,"45819":8,"45820":5,"45821":7,"45822":5,"45823":2,"45824":9,"45825":6,"45826":8,"45827":9,"45828":9,"45829":10,"45830":9,"45831":8,"45832":7,"45833":5,"45834":4,"45835":6,"45836":10,"45837":9,"45838":8,"45839":3,"45840":3,"45841":9,"45842":10,"45843":9,"45844":8,"45845":10,"45846":8,"45847":9,"45848":9,"45849":7,"45850":7,"45851":7,"45852":4,"45853":9,"45854":8,"45855":9,"45856":5,"45857":4,"45858":8,"45859":3,"45860":8,"45861":7,"45862":7,"45863":9,"45864":4,"45865":7,"45866":8,"45867":1,"45868":2,"45869":2,"45870":8,"45871":7,"45872":2,"45873":6,"45874":4,"45875":9,"45876":8,"45877":7,"45878":7,"45879":2,"45880":3,"45881":8,"45882":6,"45883":8,"45884":9,"45885":8,"45886":5,"45887":4,"45888":7,"45889":4,"45890":9,"45891":2,"45892":6,"45893":2,"45894":9,"45895":8,"45896":5,"45897":10,"45898":7,"45899":8,"45900":8,"45901":9,"45902":7,"45903":7,"45904":9,"45905":5,"45906":5,"45907":4,"45908":7,"45909":1,"45910":8,"45911":2,"45912":9,"45913":8,"45914":7,"45915":10,"45916":1,"45917":8,"45918":8,"45919":7,"45920":5,"45921":4,"45922":9,"45923":7,"45924":8,"45925":2,"45926":7,"45927":8,"45928":1,"45929":8,"45930":5,"45931":3,"45932":8,"45933":8,"45934":8,"45935":5,"45936":8,"45937":7,"45938":8,"45939":6,"45940":1,"45941":7,"45942":7,"45943":9,"45944":7,"45945":9,"45946":4,"45947":5,"45948":7,"45949":5,"45950":6,"45951":8,"45952":7,"45953":2,"45954":9,"45955":10,"45956":4,"45957":10,"45958":5,"45959":6,"45960":9,"45961":5,"45962":5,"45963":6,"45964":7,"45965":8,"45966":8,"45967":10,"45968":3,"45969":8,"45970":2,"45971":3,"45972":7,"45973":4,"45974":8,"45975":2,"45976":4,"45977":9,"45978":9,"45979":4,"45980":6,"45981":5,"45982":5,"45983":2,"45984":2,"45985":1,"45986":7,"45987":8,"45988":2,"45989":8,"45990":5,"45991":5,"45992":10,"45993":9,"45994":2,"45995":3,"45996":8,"45997":8,"45998":7,"45999":9,"46000":1,"46001":5,"46002":5,"46003":5,"46004":8,"46005":2,"46006":2,"46007":9,"46008":5,"46009":2,"46010":7,"46011":9,"46012":5,"46013":7,"46014":8,"46015":9,"46016":7,"46017":7,"46018":2,"46019":7,"46020":7,"46021":8,"46022":8,"46023":2,"46024":8,"46025":5,"46026":7,"46027":8,"46028":9,"46029":7,"46030":2,"46031":6,"46032":8,"46033":10,"46034":4,"46035":7,"46036":8,"46037":9,"46038":2,"46039":5,"46040":6,"46041":8,"46042":5,"46043":7,"46044":7,"46045":7,"46046":8,"46047":7,"46048":7,"46049":7,"46050":7,"46051":7,"46052":5,"46053":5,"46054":7,"46055":4,"46056":8,"46057":7,"46058":7,"46059":3,"46060":5,"46061":7,"46062":7,"46063":7,"46064":1,"46065":9,"46066":7,"46067":7,"46068":1,"46069":8,"46070":5,"46071":7,"46072":7,"46073":1,"46074":1,"46075":1,"46076":9,"46077":2,"46078":1,"46079":8,"46080":8,"46081":3,"46082":3,"46083":9,"46084":2,"46085":2,"46086":9,"46087":7,"46088":9,"46089":5,"46090":2,"46091":2,"46092":7,"46093":6,"46094":7,"46095":5,"46096":5,"46097":1,"46098":9,"46099":8,"46100":5,"46101":9,"46102":8,"46103":9,"46104":3,"46105":7,"46106":2,"46107":9,"46108":3,"46109":9,"46110":7,"46111":9,"46112":8,"46113":6,"46114":7,"46115":9,"46116":8,"46117":3,"46118":4,"46119":1,"46120":10,"46121":7,"46122":7,"46123":9,"46124":9,"46125":1,"46126":10,"46127":7,"46128":7,"46129":8,"46130":8,"46131":4,"46132":8,"46133":3,"46134":8,"46135":5,"46136":1,"46137":7,"46138":8,"46139":9,"46140":4,"46141":5,"46142":8,"46143":9,"46144":9,"46145":8,"46146":2,"46147":5,"46148":1,"46149":9,"46150":1,"46151":8,"46152":8,"46153":7,"46154":5,"46155":8,"46156":9,"46157":5,"46158":7,"46159":8,"46160":8,"46161":9,"46162":8,"46163":8,"46164":5,"46165":5,"46166":2,"46167":2,"46168":7,"46169":3,"46170":9,"46171":8,"46172":5,"46173":7,"46174":3,"46175":2,"46176":7,"46177":8,"46178":2,"46179":9,"46180":5,"46181":9,"46182":10,"46183":7,"46184":2,"46185":5,"46186":10,"46187":9,"46188":8,"46189":8,"46190":10,"46191":4,"46192":8,"46193":2,"46194":8,"46195":9,"46196":6,"46197":3,"46198":1,"46199":9,"46200":3,"46201":7,"46202":7,"46203":8,"46204":8,"46205":8,"46206":8,"46207":8,"46208":7,"46209":9,"46210":8,"46211":2,"46212":8,"46213":5,"46214":7,"46215":2,"46216":5,"46217":4,"46218":2,"46219":1,"46220":8,"46221":7,"46222":9,"46223":7,"46224":3,"46225":9,"46226":8,"46227":4,"46228":10,"46229":6,"46230":1,"46231":8,"46232":7,"46233":7,"46234":9,"46235":2,"46236":2,"46237":7,"46238":5,"46239":4,"46240":7,"46241":8,"46242":8,"46243":8,"46244":2,"46245":8,"46246":8,"46247":1,"46248":10,"46249":2,"46250":5,"46251":5,"46252":8,"46253":7,"46254":8,"46255":9,"46256":3,"46257":8,"46258":7,"46259":8,"46260":8,"46261":3,"46262":8,"46263":6,"46264":4,"46265":7,"46266":5,"46267":5,"46268":7,"46269":9,"46270":8,"46271":2,"46272":8,"46273":8,"46274":8,"46275":5,"46276":7,"46277":8,"46278":9,"46279":9,"46280":7,"46281":1,"46282":7,"46283":9,"46284":2,"46285":2,"46286":8,"46287":7,"46288":4,"46289":7,"46290":9,"46291":7,"46292":3,"46293":8,"46294":1,"46295":7,"46296":7,"46297":2,"46298":7,"46299":7,"46300":9,"46301":2,"46302":7,"46303":6,"46304":5,"46305":7,"46306":4,"46307":7,"46308":9,"46309":10,"46310":8,"46311":8,"46312":7,"46313":5,"46314":5,"46315":9,"46316":7,"46317":1,"46318":6,"46319":10,"46320":3,"46321":2,"46322":6,"46323":7,"46324":7,"46325":10,"46326":2,"46327":4,"46328":8,"46329":7,"46330":2,"46331":9,"46332":8,"46333":5,"46334":8,"46335":5,"46336":9,"46337":5,"46338":6,"46339":4,"46340":7,"46341":7,"46342":5,"46343":1,"46344":5,"46345":8,"46346":9,"46347":9,"46348":8,"46349":8,"46350":4,"46351":5,"46352":6,"46353":8,"46354":9,"46355":5,"46356":7,"46357":2,"46358":7,"46359":2,"46360":9,"46361":9,"46362":9,"46363":9,"46364":9,"46365":10,"46366":7,"46367":5,"46368":8,"46369":1,"46370":9,"46371":4,"46372":9,"46373":10,"46374":7,"46375":3,"46376":7,"46377":6,"46378":7,"46379":7,"46380":6,"46381":2,"46382":1,"46383":9,"46384":5,"46385":2,"46386":7,"46387":6,"46388":7,"46389":9,"46390":7,"46391":10,"46392":8,"46393":9,"46394":8,"46395":2,"46396":8,"46397":7,"46398":10,"46399":8,"46400":10,"46401":9,"46402":2,"46403":8,"46404":7,"46405":6,"46406":4,"46407":9,"46408":9,"46409":9,"46410":8,"46411":6,"46412":8,"46413":9,"46414":5,"46415":7,"46416":7,"46417":6,"46418":8,"46419":3,"46420":5,"46421":5,"46422":3,"46423":9,"46424":4,"46425":10,"46426":7,"46427":3,"46428":7,"46429":5,"46430":8,"46431":8,"46432":3,"46433":7,"46434":8,"46435":2,"46436":8,"46437":4,"46438":8,"46439":2,"46440":7,"46441":8,"46442":7,"46443":2,"46444":6,"46445":4,"46446":8,"46447":7,"46448":9,"46449":8,"46450":3,"46451":10,"46452":6,"46453":7,"46454":5,"46455":7,"46456":1,"46457":8,"46458":3,"46459":9,"46460":8,"46461":7,"46462":8,"46463":7,"46464":1,"46465":2,"46466":3,"46467":9,"46468":7,"46469":4,"46470":8,"46471":10,"46472":8,"46473":10,"46474":8,"46475":7,"46476":5,"46477":7,"46478":6,"46479":7,"46480":8,"46481":7,"46482":5,"46483":7,"46484":5,"46485":5,"46486":9,"46487":2,"46488":9,"46489":8,"46490":8,"46491":5,"46492":7,"46493":6,"46494":6,"46495":8,"46496":2,"46497":2,"46498":2,"46499":2,"46500":6,"46501":8,"46502":8,"46503":2,"46504":8,"46505":4,"46506":3,"46507":5,"46508":7,"46509":8,"46510":5,"46511":8,"46512":5,"46513":8,"46514":9,"46515":9,"46516":2,"46517":4,"46518":8,"46519":5,"46520":7,"46521":7,"46522":5,"46523":7,"46524":4,"46525":9,"46526":7,"46527":7,"46528":5,"46529":10,"46530":1,"46531":7,"46532":2,"46533":6,"46534":7,"46535":1,"46536":8,"46537":8,"46538":7,"46539":9,"46540":7,"46541":9,"46542":9,"46543":6,"46544":8,"46545":7,"46546":2,"46547":9,"46548":9,"46549":10,"46550":7,"46551":7,"46552":6,"46553":5,"46554":7,"46555":1,"46556":2,"46557":8,"46558":2,"46559":7,"46560":5,"46561":2,"46562":3,"46563":8,"46564":9,"46565":9,"46566":2,"46567":2,"46568":3,"46569":7,"46570":7,"46571":3,"46572":6,"46573":8,"46574":8,"46575":9,"46576":4,"46577":7,"46578":8,"46579":7,"46580":7,"46581":9,"46582":8,"46583":6,"46584":2,"46585":9,"46586":7,"46587":7,"46588":1,"46589":8,"46590":10,"46591":7,"46592":8,"46593":10,"46594":4,"46595":8,"46596":8,"46597":4,"46598":2,"46599":3,"46600":5,"46601":7,"46602":7,"46603":1,"46604":2,"46605":7,"46606":7,"46607":7,"46608":8,"46609":8,"46610":8,"46611":7,"46612":1,"46613":10,"46614":2,"46615":8,"46616":5,"46617":7,"46618":7,"46619":7,"46620":10,"46621":8,"46622":5,"46623":7,"46624":6,"46625":2,"46626":8,"46627":2,"46628":7,"46629":8,"46630":3,"46631":1,"46632":9,"46633":5,"46634":8,"46635":7,"46636":7,"46637":8,"46638":1,"46639":10,"46640":10,"46641":7,"46642":2,"46643":2,"46644":4,"46645":10,"46646":8,"46647":8,"46648":5,"46649":8,"46650":2,"46651":9,"46652":2,"46653":1,"46654":8,"46655":8,"46656":3,"46657":7,"46658":3,"46659":9,"46660":9,"46661":5,"46662":9,"46663":3,"46664":8,"46665":5,"46666":3,"46667":7,"46668":8,"46669":7,"46670":5,"46671":8,"46672":8,"46673":9,"46674":8,"46675":7,"46676":4,"46677":8,"46678":8,"46679":1,"46680":8,"46681":10,"46682":6,"46683":9,"46684":6,"46685":9,"46686":8,"46687":7,"46688":7,"46689":5,"46690":5,"46691":7,"46692":8,"46693":7,"46694":9,"46695":3,"46696":2,"46697":5,"46698":8,"46699":2,"46700":9,"46701":8,"46702":5,"46703":7,"46704":8,"46705":3,"46706":6,"46707":8,"46708":8,"46709":5,"46710":9,"46711":7,"46712":6,"46713":8,"46714":1,"46715":9,"46716":7,"46717":10,"46718":2,"46719":7,"46720":8,"46721":7,"46722":2,"46723":2,"46724":2,"46725":9,"46726":9,"46727":4,"46728":3,"46729":9,"46730":7,"46731":5,"46732":3,"46733":7,"46734":9,"46735":5,"46736":8,"46737":2,"46738":2,"46739":7,"46740":9,"46741":4,"46742":2,"46743":7,"46744":1,"46745":10,"46746":7,"46747":4,"46748":10,"46749":7,"46750":7,"46751":5,"46752":8,"46753":8,"46754":8,"46755":9,"46756":7,"46757":9,"46758":8,"46759":1,"46760":9,"46761":8,"46762":7,"46763":3,"46764":8,"46765":3,"46766":8,"46767":9,"46768":7,"46769":5,"46770":10,"46771":9,"46772":8,"46773":7,"46774":3,"46775":7,"46776":10,"46777":1,"46778":9,"46779":5,"46780":7,"46781":8,"46782":4,"46783":2,"46784":10,"46785":7,"46786":2,"46787":7,"46788":8,"46789":7,"46790":1,"46791":8,"46792":7,"46793":8,"46794":8,"46795":9,"46796":8,"46797":8,"46798":9,"46799":8,"46800":8,"46801":6,"46802":3,"46803":7,"46804":7,"46805":6,"46806":8,"46807":4,"46808":9,"46809":5,"46810":6,"46811":3,"46812":9,"46813":8,"46814":8,"46815":4,"46816":5,"46817":8,"46818":9,"46819":7,"46820":6,"46821":6,"46822":2,"46823":8,"46824":5,"46825":1,"46826":5,"46827":7,"46828":9,"46829":3,"46830":7,"46831":8,"46832":5,"46833":3,"46834":3,"46835":10,"46836":9,"46837":9,"46838":1,"46839":9,"46840":8,"46841":8,"46842":10,"46843":8,"46844":8,"46845":3,"46846":7,"46847":9,"46848":7,"46849":9,"46850":9,"46851":2,"46852":3,"46853":9,"46854":8,"46855":2,"46856":7,"46857":8,"46858":8,"46859":10,"46860":1,"46861":9,"46862":4,"46863":4,"46864":8,"46865":5,"46866":6,"46867":8,"46868":9,"46869":6,"46870":3,"46871":2,"46872":7,"46873":4,"46874":9,"46875":4,"46876":9,"46877":8,"46878":7,"46879":8,"46880":3,"46881":4,"46882":6,"46883":1,"46884":1,"46885":1,"46886":8,"46887":9,"46888":5,"46889":4,"46890":7,"46891":7,"46892":2,"46893":7,"46894":5,"46895":8,"46896":2,"46897":8,"46898":8,"46899":7,"46900":4,"46901":9,"46902":7,"46903":2,"46904":8,"46905":1,"46906":10,"46907":7,"46908":9,"46909":6,"46910":1,"46911":5,"46912":10,"46913":9,"46914":10,"46915":1,"46916":7,"46917":5,"46918":2,"46919":8,"46920":8,"46921":5,"46922":4,"46923":1,"46924":8,"46925":10,"46926":9,"46927":8,"46928":5,"46929":7,"46930":9,"46931":5,"46932":9,"46933":4,"46934":2,"46935":3,"46936":7,"46937":4,"46938":5,"46939":8,"46940":8,"46941":8,"46942":2,"46943":7,"46944":1,"46945":10,"46946":9,"46947":9,"46948":10,"46949":2,"46950":1,"46951":7,"46952":8,"46953":9,"46954":9,"46955":7,"46956":6,"46957":9,"46958":10,"46959":10,"46960":8,"46961":8,"46962":7,"46963":2,"46964":5,"46965":8,"46966":7,"46967":8,"46968":4,"46969":5,"46970":9,"46971":8,"46972":5,"46973":5,"46974":8,"46975":7,"46976":9,"46977":1,"46978":2,"46979":2,"46980":7,"46981":7,"46982":9,"46983":5,"46984":3,"46985":7,"46986":8,"46987":6,"46988":7,"46989":6,"46990":5,"46991":6,"46992":9,"46993":7,"46994":7,"46995":6,"46996":9,"46997":9,"46998":2,"46999":2,"47000":9,"47001":10,"47002":2,"47003":5,"47004":8,"47005":7,"47006":4,"47007":9,"47008":5,"47009":7,"47010":1,"47011":7,"47012":4,"47013":1,"47014":9,"47015":7,"47016":7,"47017":10,"47018":8,"47019":8,"47020":7,"47021":2,"47022":5,"47023":7,"47024":7,"47025":1,"47026":10,"47027":2,"47028":7,"47029":7,"47030":7,"47031":5,"47032":2,"47033":3,"47034":5,"47035":2,"47036":10,"47037":3,"47038":8,"47039":1,"47040":1,"47041":7,"47042":4,"47043":3,"47044":8,"47045":8,"47046":1,"47047":5,"47048":5,"47049":9,"47050":9,"47051":7,"47052":9,"47053":7,"47054":8,"47055":7,"47056":8,"47057":7,"47058":7,"47059":2,"47060":5,"47061":2,"47062":8,"47063":6,"47064":8,"47065":8,"47066":5,"47067":7,"47068":1,"47069":7,"47070":8,"47071":8,"47072":4,"47073":8,"47074":4,"47075":7,"47076":3,"47077":4,"47078":8,"47079":5,"47080":8,"47081":8,"47082":3,"47083":4,"47084":4,"47085":9,"47086":9,"47087":7,"47088":9,"47089":9,"47090":9,"47091":4,"47092":9,"47093":5,"47094":4,"47095":7,"47096":2,"47097":9,"47098":7,"47099":6,"47100":7,"47101":7,"47102":9,"47103":9,"47104":2,"47105":7,"47106":9,"47107":8,"47108":9,"47109":10,"47110":1,"47111":3,"47112":6,"47113":9,"47114":9,"47115":8,"47116":9,"47117":9,"47118":1,"47119":7,"47120":8,"47121":9,"47122":8,"47123":9,"47124":8,"47125":5,"47126":8,"47127":5,"47128":7,"47129":9,"47130":7,"47131":8,"47132":2,"47133":8,"47134":9,"47135":6,"47136":6,"47137":8,"47138":1,"47139":7,"47140":5,"47141":3,"47142":1,"47143":5,"47144":5,"47145":4,"47146":9,"47147":8,"47148":6,"47149":6,"47150":8,"47151":8,"47152":2,"47153":7,"47154":6,"47155":7,"47156":7,"47157":1,"47158":6,"47159":8,"47160":7,"47161":7,"47162":3,"47163":10,"47164":5,"47165":7,"47166":2,"47167":9,"47168":4,"47169":7,"47170":3,"47171":5,"47172":2,"47173":7,"47174":7,"47175":7,"47176":5,"47177":7,"47178":6,"47179":8,"47180":6,"47181":8,"47182":3,"47183":8,"47184":8,"47185":1,"47186":1,"47187":3,"47188":7,"47189":8,"47190":8,"47191":7,"47192":9,"47193":2,"47194":6,"47195":2,"47196":7,"47197":8,"47198":8,"47199":3,"47200":7,"47201":10,"47202":1,"47203":10,"47204":7,"47205":8,"47206":7,"47207":8,"47208":7,"47209":2,"47210":1,"47211":7,"47212":3,"47213":8,"47214":8,"47215":10,"47216":4,"47217":8,"47218":9,"47219":2,"47220":6,"47221":7,"47222":7,"47223":5,"47224":2,"47225":5,"47226":4,"47227":7,"47228":3,"47229":7,"47230":2,"47231":7,"47232":9,"47233":8,"47234":10,"47235":8,"47236":1,"47237":2,"47238":6,"47239":8,"47240":7,"47241":5,"47242":5,"47243":2,"47244":5,"47245":5,"47246":4,"47247":5,"47248":5,"47249":6,"47250":8,"47251":7,"47252":7,"47253":4,"47254":7,"47255":5,"47256":6,"47257":9,"47258":7,"47259":8,"47260":2,"47261":7,"47262":7,"47263":1,"47264":8,"47265":2,"47266":10,"47267":2,"47268":7,"47269":7,"47270":8,"47271":8,"47272":7,"47273":2,"47274":1,"47275":1,"47276":3,"47277":8,"47278":1,"47279":6,"47280":8,"47281":10,"47282":2,"47283":6,"47284":7,"47285":5,"47286":7,"47287":9,"47288":9,"47289":7,"47290":2,"47291":10,"47292":7,"47293":1,"47294":2,"47295":4,"47296":9,"47297":7,"47298":8,"47299":9,"47300":8,"47301":7,"47302":8,"47303":9,"47304":7,"47305":7,"47306":8,"47307":9,"47308":8,"47309":2,"47310":2,"47311":1,"47312":6,"47313":8,"47314":8,"47315":8,"47316":8,"47317":9,"47318":1,"47319":8,"47320":9,"47321":8,"47322":7,"47323":7,"47324":5,"47325":8,"47326":7,"47327":8,"47328":5,"47329":5,"47330":7,"47331":8,"47332":5,"47333":9,"47334":8,"47335":2,"47336":4,"47337":4,"47338":3,"47339":4,"47340":9,"47341":8,"47342":7,"47343":8,"47344":4,"47345":9,"47346":7,"47347":8,"47348":5,"47349":7,"47350":10,"47351":8,"47352":5,"47353":9,"47354":10,"47355":7,"47356":5,"47357":5,"47358":9,"47359":7,"47360":2,"47361":2,"47362":7,"47363":9,"47364":6,"47365":9,"47366":1,"47367":2,"47368":5,"47369":3,"47370":8,"47371":10,"47372":9,"47373":7,"47374":5,"47375":1,"47376":9,"47377":8,"47378":7,"47379":8,"47380":8,"47381":8,"47382":9,"47383":8,"47384":4,"47385":5,"47386":4,"47387":8,"47388":8,"47389":8,"47390":7,"47391":6,"47392":8,"47393":5,"47394":2,"47395":5,"47396":7,"47397":9,"47398":3,"47399":7,"47400":7,"47401":7,"47402":3,"47403":2,"47404":3,"47405":8,"47406":3,"47407":2,"47408":8,"47409":2,"47410":7,"47411":3,"47412":5,"47413":1,"47414":6,"47415":4,"47416":9,"47417":6,"47418":4,"47419":7,"47420":4,"47421":3,"47422":6,"47423":8,"47424":3,"47425":9,"47426":5,"47427":9,"47428":9,"47429":9,"47430":5,"47431":6,"47432":10,"47433":4,"47434":7,"47435":8,"47436":4,"47437":8,"47438":8,"47439":2,"47440":8,"47441":6,"47442":9,"47443":7,"47444":2,"47445":7,"47446":8,"47447":6,"47448":10,"47449":8,"47450":7,"47451":7,"47452":3,"47453":10,"47454":7,"47455":9,"47456":7,"47457":7,"47458":1,"47459":8,"47460":7,"47461":3,"47462":3,"47463":10,"47464":8,"47465":9,"47466":9,"47467":7,"47468":10,"47469":10,"47470":9,"47471":2,"47472":9,"47473":5,"47474":8,"47475":2,"47476":7,"47477":5,"47478":9,"47479":8,"47480":6,"47481":10,"47482":9,"47483":8,"47484":8,"47485":8,"47486":8,"47487":4,"47488":9,"47489":7,"47490":7,"47491":9,"47492":7,"47493":5,"47494":2,"47495":5,"47496":8,"47497":3,"47498":9,"47499":5,"47500":1,"47501":6,"47502":9,"47503":5,"47504":7,"47505":10,"47506":8,"47507":10,"47508":6,"47509":4,"47510":9,"47511":8,"47512":3,"47513":6,"47514":6,"47515":2,"47516":8,"47517":3,"47518":7,"47519":8,"47520":8,"47521":9,"47522":8,"47523":9,"47524":2,"47525":2,"47526":6,"47527":5,"47528":2,"47529":8,"47530":2,"47531":6,"47532":2,"47533":3,"47534":3,"47535":8,"47536":7,"47537":6,"47538":9,"47539":2,"47540":9,"47541":8,"47542":1,"47543":5,"47544":8,"47545":7,"47546":3,"47547":8,"47548":2,"47549":8,"47550":3,"47551":10,"47552":8,"47553":6,"47554":7,"47555":3,"47556":2,"47557":5,"47558":2,"47559":7,"47560":9,"47561":8,"47562":5,"47563":9,"47564":2,"47565":5,"47566":8,"47567":7,"47568":8,"47569":8,"47570":5,"47571":7,"47572":5,"47573":9,"47574":2,"47575":5,"47576":4,"47577":8,"47578":7,"47579":6,"47580":3,"47581":7,"47582":4,"47583":4,"47584":8,"47585":3,"47586":7,"47587":9,"47588":10,"47589":7,"47590":7,"47591":9,"47592":9,"47593":5,"47594":9,"47595":1,"47596":8,"47597":7,"47598":10,"47599":7,"47600":8,"47601":2,"47602":1,"47603":10,"47604":8,"47605":8,"47606":10,"47607":5,"47608":10,"47609":7,"47610":7,"47611":5,"47612":5,"47613":7,"47614":8,"47615":7,"47616":2,"47617":10,"47618":8,"47619":8,"47620":1,"47621":10,"47622":9,"47623":1,"47624":2,"47625":8,"47626":7,"47627":8,"47628":8,"47629":6,"47630":8,"47631":8,"47632":8,"47633":10,"47634":3,"47635":9,"47636":7,"47637":2,"47638":2,"47639":7,"47640":9,"47641":7,"47642":10,"47643":5,"47644":3,"47645":9,"47646":5,"47647":7,"47648":8,"47649":5,"47650":8,"47651":5,"47652":5,"47653":2,"47654":9,"47655":8,"47656":7,"47657":9,"47658":9,"47659":4,"47660":9,"47661":7,"47662":9,"47663":9,"47664":8,"47665":9,"47666":5,"47667":6,"47668":7,"47669":9,"47670":6,"47671":7,"47672":9,"47673":4,"47674":7,"47675":7,"47676":10,"47677":4,"47678":5,"47679":3,"47680":7,"47681":7,"47682":8,"47683":8,"47684":1,"47685":8,"47686":2,"47687":4,"47688":7,"47689":9,"47690":2,"47691":9,"47692":2,"47693":8,"47694":9,"47695":8,"47696":7,"47697":1,"47698":2,"47699":7,"47700":7,"47701":10,"47702":8,"47703":9,"47704":10,"47705":10,"47706":8,"47707":1,"47708":7,"47709":7,"47710":9,"47711":8,"47712":7,"47713":2,"47714":5,"47715":2,"47716":7,"47717":9,"47718":7,"47719":2,"47720":10,"47721":1,"47722":8,"47723":5,"47724":6,"47725":1,"47726":7,"47727":1,"47728":5,"47729":1,"47730":10,"47731":4,"47732":2,"47733":10,"47734":7,"47735":3,"47736":2,"47737":8,"47738":8,"47739":9,"47740":6,"47741":8,"47742":8,"47743":8,"47744":5,"47745":8,"47746":9,"47747":7,"47748":1,"47749":8,"47750":7,"47751":7,"47752":9,"47753":7,"47754":8,"47755":7,"47756":7,"47757":4,"47758":4,"47759":5,"47760":3,"47761":7,"47762":8,"47763":10,"47764":7,"47765":2,"47766":8,"47767":8,"47768":6,"47769":2,"47770":8,"47771":1,"47772":1,"47773":7,"47774":10,"47775":2,"47776":5,"47777":10,"47778":8,"47779":2,"47780":7,"47781":7,"47782":7,"47783":1,"47784":2,"47785":8,"47786":9,"47787":7,"47788":7,"47789":7,"47790":3,"47791":7,"47792":1,"47793":1,"47794":2,"47795":8,"47796":5,"47797":8,"47798":8,"47799":5,"47800":3,"47801":9,"47802":7,"47803":2,"47804":8,"47805":10,"47806":8,"47807":7,"47808":6,"47809":5,"47810":7,"47811":8,"47812":4,"47813":8,"47814":6,"47815":4,"47816":4,"47817":10,"47818":8,"47819":2,"47820":5,"47821":4,"47822":4,"47823":3,"47824":1,"47825":9,"47826":4,"47827":9,"47828":2,"47829":7,"47830":2,"47831":1,"47832":1,"47833":2,"47834":5,"47835":8,"47836":9,"47837":4,"47838":7,"47839":7,"47840":5,"47841":7,"47842":7,"47843":7,"47844":1,"47845":1,"47846":1,"47847":7,"47848":8,"47849":5,"47850":8,"47851":9,"47852":2,"47853":8,"47854":8,"47855":1,"47856":8,"47857":3,"47858":7,"47859":9,"47860":8,"47861":8,"47862":8,"47863":9,"47864":6,"47865":9,"47866":5,"47867":9,"47868":8,"47869":9,"47870":7,"47871":8,"47872":9,"47873":9,"47874":9,"47875":3,"47876":9,"47877":2,"47878":2,"47879":7,"47880":7,"47881":9,"47882":10,"47883":8,"47884":2,"47885":4,"47886":3,"47887":6,"47888":8,"47889":2,"47890":10,"47891":3,"47892":8,"47893":8,"47894":8,"47895":10,"47896":8,"47897":2,"47898":5,"47899":7,"47900":6,"47901":8,"47902":8,"47903":8,"47904":6,"47905":5,"47906":7,"47907":8,"47908":5,"47909":8,"47910":6,"47911":8,"47912":8,"47913":7,"47914":1,"47915":9,"47916":1,"47917":2,"47918":8,"47919":7,"47920":9,"47921":5,"47922":7,"47923":7,"47924":2,"47925":8,"47926":7,"47927":2,"47928":8,"47929":5,"47930":8,"47931":7,"47932":10,"47933":8,"47934":9,"47935":7,"47936":1,"47937":2,"47938":8,"47939":9,"47940":3,"47941":5,"47942":5,"47943":9,"47944":7,"47945":7,"47946":7,"47947":4,"47948":8,"47949":8,"47950":9,"47951":6,"47952":1,"47953":9,"47954":5,"47955":2,"47956":1,"47957":9,"47958":5,"47959":5,"47960":10,"47961":10,"47962":5,"47963":7,"47964":4,"47965":3,"47966":9,"47967":7,"47968":8,"47969":5,"47970":2,"47971":7,"47972":7,"47973":2,"47974":3,"47975":9,"47976":9,"47977":8,"47978":9,"47979":7,"47980":2,"47981":7,"47982":8,"47983":2,"47984":8,"47985":7,"47986":2,"47987":2,"47988":3,"47989":9,"47990":7,"47991":2,"47992":8,"47993":8,"47994":8,"47995":3,"47996":8,"47997":7,"47998":9,"47999":7,"48000":3,"48001":8,"48002":4,"48003":5,"48004":7,"48005":7,"48006":8,"48007":9,"48008":8,"48009":10,"48010":8,"48011":8,"48012":7,"48013":5,"48014":7,"48015":8,"48016":8,"48017":4,"48018":8,"48019":2,"48020":8,"48021":5,"48022":9,"48023":7,"48024":2,"48025":8,"48026":9,"48027":7,"48028":7,"48029":7,"48030":7,"48031":8,"48032":2,"48033":8,"48034":8,"48035":5,"48036":4,"48037":5,"48038":5,"48039":6,"48040":7,"48041":8,"48042":8,"48043":6,"48044":10,"48045":8,"48046":8,"48047":7,"48048":8,"48049":4,"48050":10,"48051":8,"48052":5,"48053":8,"48054":3,"48055":8,"48056":6,"48057":6,"48058":7,"48059":9,"48060":10,"48061":2,"48062":8,"48063":9,"48064":9,"48065":9,"48066":5,"48067":7,"48068":4,"48069":8,"48070":7,"48071":7,"48072":8,"48073":2,"48074":8,"48075":9,"48076":8,"48077":9,"48078":8,"48079":7,"48080":2,"48081":2,"48082":2,"48083":9,"48084":9,"48085":7,"48086":4,"48087":2,"48088":2,"48089":2,"48090":2,"48091":4,"48092":3,"48093":4,"48094":8,"48095":7,"48096":7,"48097":8,"48098":2,"48099":8,"48100":9,"48101":7,"48102":5,"48103":7,"48104":9,"48105":5,"48106":7,"48107":10,"48108":6,"48109":10,"48110":9,"48111":8,"48112":3,"48113":8,"48114":5,"48115":2,"48116":1,"48117":9,"48118":8,"48119":8,"48120":9,"48121":7,"48122":9,"48123":9,"48124":3,"48125":7,"48126":7,"48127":8,"48128":8,"48129":6,"48130":4,"48131":10,"48132":2,"48133":7,"48134":2,"48135":3,"48136":5,"48137":7,"48138":4,"48139":5,"48140":9,"48141":8,"48142":8,"48143":1,"48144":1,"48145":1,"48146":8,"48147":10,"48148":8,"48149":1,"48150":2,"48151":7,"48152":8,"48153":8,"48154":8,"48155":8,"48156":1,"48157":8,"48158":9,"48159":7,"48160":7,"48161":9,"48162":7,"48163":9,"48164":8,"48165":9,"48166":9,"48167":8,"48168":7,"48169":4,"48170":10,"48171":3,"48172":5,"48173":7,"48174":1,"48175":7,"48176":5,"48177":6,"48178":2,"48179":5,"48180":8,"48181":2,"48182":9,"48183":7,"48184":6,"48185":8,"48186":9,"48187":8,"48188":10,"48189":2,"48190":5,"48191":8,"48192":9,"48193":8,"48194":7,"48195":7,"48196":2,"48197":8,"48198":8,"48199":8,"48200":4,"48201":5,"48202":7,"48203":9,"48204":10,"48205":8,"48206":9,"48207":8,"48208":2,"48209":7,"48210":9,"48211":8,"48212":2,"48213":8,"48214":9,"48215":7,"48216":7,"48217":9,"48218":2,"48219":3,"48220":9,"48221":8,"48222":5,"48223":8,"48224":8,"48225":2,"48226":8,"48227":4,"48228":3,"48229":1,"48230":5,"48231":9,"48232":3,"48233":7,"48234":7,"48235":8,"48236":3,"48237":8,"48238":10,"48239":7,"48240":8,"48241":8,"48242":5,"48243":4,"48244":6,"48245":8,"48246":8,"48247":8,"48248":5,"48249":9,"48250":7,"48251":2,"48252":7,"48253":8,"48254":5,"48255":7,"48256":9,"48257":2,"48258":3,"48259":5,"48260":2,"48261":2,"48262":8,"48263":2,"48264":4,"48265":9,"48266":6,"48267":5,"48268":7,"48269":10,"48270":9,"48271":9,"48272":8,"48273":7,"48274":3,"48275":9,"48276":8,"48277":9,"48278":7,"48279":8,"48280":7,"48281":6,"48282":10,"48283":7,"48284":8,"48285":10,"48286":8,"48287":2,"48288":8,"48289":7,"48290":5,"48291":9,"48292":10,"48293":9,"48294":9,"48295":5,"48296":8,"48297":3,"48298":2,"48299":2,"48300":1,"48301":7,"48302":1,"48303":9,"48304":8,"48305":5,"48306":8,"48307":9,"48308":9,"48309":3,"48310":4,"48311":8,"48312":5,"48313":3,"48314":8,"48315":7,"48316":2,"48317":7,"48318":9,"48319":7,"48320":9,"48321":9,"48322":2,"48323":7,"48324":7,"48325":10,"48326":2,"48327":2,"48328":1,"48329":2,"48330":2,"48331":7,"48332":8,"48333":9,"48334":8,"48335":7,"48336":7,"48337":2,"48338":4,"48339":5,"48340":8,"48341":2,"48342":7,"48343":5,"48344":7,"48345":7,"48346":3,"48347":9,"48348":4,"48349":7,"48350":2,"48351":1,"48352":8,"48353":8,"48354":4,"48355":7,"48356":7,"48357":2,"48358":8,"48359":9,"48360":8,"48361":5,"48362":7,"48363":7,"48364":3,"48365":9,"48366":10,"48367":2,"48368":8,"48369":9,"48370":8,"48371":7,"48372":5,"48373":4,"48374":8,"48375":10,"48376":8,"48377":5,"48378":8,"48379":3,"48380":9,"48381":9,"48382":8,"48383":2,"48384":8,"48385":9,"48386":9,"48387":8,"48388":2,"48389":8,"48390":7,"48391":8,"48392":9,"48393":3,"48394":6,"48395":2,"48396":5,"48397":8,"48398":7,"48399":9,"48400":8,"48401":7,"48402":8,"48403":8,"48404":2,"48405":4,"48406":6,"48407":10,"48408":3,"48409":7,"48410":4,"48411":8,"48412":10,"48413":1,"48414":9,"48415":8,"48416":1,"48417":9,"48418":8,"48419":8,"48420":1,"48421":8,"48422":1,"48423":2,"48424":5,"48425":3,"48426":3,"48427":10,"48428":1,"48429":2,"48430":7,"48431":9,"48432":4,"48433":5,"48434":8,"48435":1,"48436":5,"48437":5,"48438":6,"48439":8,"48440":7,"48441":9,"48442":8,"48443":1,"48444":5,"48445":10,"48446":5,"48447":1,"48448":9,"48449":1,"48450":7,"48451":1,"48452":8,"48453":5,"48454":7,"48455":9,"48456":9,"48457":4,"48458":7,"48459":3,"48460":9,"48461":2,"48462":6,"48463":3,"48464":4,"48465":7,"48466":1,"48467":5,"48468":1,"48469":6,"48470":5,"48471":7,"48472":7,"48473":7,"48474":5,"48475":5,"48476":7,"48477":4,"48478":5,"48479":6,"48480":5,"48481":9,"48482":6,"48483":9,"48484":9,"48485":1,"48486":8,"48487":8,"48488":4,"48489":8,"48490":2,"48491":9,"48492":7,"48493":8,"48494":7,"48495":6,"48496":3,"48497":7,"48498":7,"48499":3,"48500":6,"48501":2,"48502":7,"48503":8,"48504":5,"48505":5,"48506":8,"48507":9,"48508":3,"48509":9,"48510":8,"48511":8,"48512":5,"48513":7,"48514":8,"48515":10,"48516":8,"48517":7,"48518":8,"48519":8,"48520":10,"48521":1,"48522":8,"48523":10,"48524":5,"48525":2,"48526":9,"48527":7,"48528":4,"48529":9,"48530":1,"48531":9,"48532":5,"48533":6,"48534":9,"48535":9,"48536":8,"48537":2,"48538":5,"48539":9,"48540":3,"48541":7,"48542":7,"48543":3,"48544":9,"48545":8,"48546":4,"48547":7,"48548":9,"48549":8,"48550":8,"48551":5,"48552":2,"48553":8,"48554":4,"48555":4,"48556":1,"48557":2,"48558":10,"48559":1,"48560":8,"48561":7,"48562":8,"48563":7,"48564":7,"48565":8,"48566":8,"48567":9,"48568":7,"48569":8,"48570":7,"48571":7,"48572":7,"48573":8,"48574":8,"48575":7,"48576":6,"48577":9,"48578":3,"48579":7,"48580":5,"48581":3,"48582":5,"48583":7,"48584":8,"48585":1,"48586":2,"48587":9,"48588":8,"48589":10,"48590":8,"48591":9,"48592":3,"48593":9,"48594":8,"48595":6,"48596":2,"48597":9,"48598":2,"48599":5,"48600":6,"48601":7,"48602":7,"48603":1,"48604":5,"48605":2,"48606":1,"48607":4,"48608":7,"48609":4,"48610":7,"48611":5,"48612":4,"48613":9,"48614":8,"48615":9,"48616":8,"48617":5,"48618":4,"48619":7,"48620":5,"48621":2,"48622":7,"48623":8,"48624":9,"48625":10,"48626":8,"48627":5,"48628":7,"48629":8,"48630":8,"48631":6,"48632":7,"48633":5,"48634":5,"48635":6,"48636":5,"48637":5,"48638":7,"48639":2,"48640":2,"48641":8,"48642":8,"48643":10,"48644":8,"48645":9,"48646":9,"48647":8,"48648":8,"48649":9,"48650":1,"48651":7,"48652":6,"48653":9,"48654":1,"48655":6,"48656":9,"48657":7,"48658":7,"48659":9,"48660":8,"48661":9,"48662":6,"48663":8,"48664":8,"48665":9,"48666":6,"48667":9,"48668":9,"48669":3,"48670":9,"48671":2,"48672":7,"48673":6,"48674":8,"48675":2,"48676":7,"48677":5,"48678":8,"48679":9,"48680":3,"48681":7,"48682":9,"48683":9,"48684":6,"48685":1,"48686":7,"48687":4,"48688":7,"48689":1,"48690":7,"48691":7,"48692":9,"48693":8,"48694":6,"48695":1,"48696":9,"48697":8,"48698":7,"48699":3,"48700":9,"48701":5,"48702":1,"48703":9,"48704":9,"48705":8,"48706":3,"48707":8,"48708":1,"48709":7,"48710":8,"48711":8,"48712":4,"48713":7,"48714":8,"48715":7,"48716":7,"48717":8,"48718":2,"48719":9,"48720":3,"48721":8,"48722":5,"48723":2,"48724":5,"48725":2,"48726":4,"48727":7,"48728":5,"48729":9,"48730":7,"48731":7,"48732":1,"48733":7,"48734":5,"48735":1,"48736":8,"48737":8,"48738":4,"48739":8,"48740":8,"48741":5,"48742":8,"48743":1,"48744":9,"48745":7,"48746":1,"48747":7,"48748":2,"48749":8,"48750":2,"48751":8,"48752":10,"48753":9,"48754":5,"48755":5,"48756":7,"48757":5,"48758":3,"48759":9,"48760":7,"48761":2,"48762":9,"48763":5,"48764":8,"48765":9,"48766":2,"48767":2,"48768":7,"48769":9,"48770":3,"48771":8,"48772":7,"48773":9,"48774":7,"48775":2,"48776":5,"48777":9,"48778":8,"48779":9,"48780":5,"48781":1,"48782":7,"48783":7,"48784":8,"48785":7,"48786":2,"48787":6,"48788":9,"48789":7,"48790":3,"48791":8,"48792":2,"48793":9,"48794":7,"48795":2,"48796":5,"48797":7,"48798":7,"48799":8,"48800":9,"48801":9,"48802":3,"48803":9,"48804":4,"48805":1,"48806":5,"48807":9,"48808":7,"48809":2,"48810":7,"48811":7,"48812":2,"48813":9,"48814":9,"48815":7,"48816":7,"48817":5,"48818":7,"48819":6,"48820":7,"48821":6,"48822":8,"48823":8,"48824":1,"48825":9,"48826":8,"48827":1,"48828":5,"48829":7,"48830":3,"48831":2,"48832":7,"48833":10,"48834":7,"48835":6,"48836":5,"48837":7,"48838":2,"48839":9,"48840":2,"48841":7,"48842":7,"48843":7,"48844":1,"48845":7,"48846":1,"48847":9,"48848":4,"48849":1,"48850":2,"48851":7,"48852":9,"48853":2,"48854":9,"48855":8,"48856":5,"48857":7,"48858":9,"48859":7,"48860":8,"48861":5,"48862":4,"48863":2,"48864":7,"48865":8,"48866":8,"48867":8,"48868":2,"48869":9,"48870":5,"48871":8,"48872":8,"48873":2,"48874":7,"48875":9,"48876":5,"48877":9,"48878":2,"48879":5,"48880":5,"48881":2,"48882":6,"48883":10,"48884":10,"48885":5,"48886":8,"48887":8,"48888":6,"48889":9,"48890":10,"48891":10,"48892":5,"48893":5,"48894":3,"48895":7,"48896":7,"48897":7,"48898":9,"48899":9,"48900":10,"48901":2,"48902":7,"48903":2,"48904":8,"48905":2,"48906":4,"48907":2,"48908":9,"48909":6,"48910":7,"48911":6,"48912":7,"48913":5,"48914":6,"48915":9,"48916":4,"48917":9,"48918":1,"48919":9,"48920":5,"48921":5,"48922":5,"48923":7,"48924":7,"48925":9,"48926":10,"48927":10,"48928":10,"48929":7,"48930":7,"48931":7,"48932":2,"48933":5,"48934":1,"48935":2,"48936":8,"48937":7,"48938":7,"48939":5,"48940":3,"48941":6,"48942":8,"48943":7,"48944":6,"48945":2,"48946":7,"48947":5,"48948":5,"48949":2,"48950":5,"48951":7,"48952":8,"48953":4,"48954":7,"48955":9,"48956":9,"48957":8,"48958":7,"48959":8,"48960":5,"48961":5,"48962":10,"48963":5,"48964":9,"48965":7,"48966":5,"48967":8,"48968":8,"48969":10,"48970":9,"48971":2,"48972":7,"48973":8,"48974":1,"48975":8,"48976":9,"48977":2,"48978":9,"48979":8,"48980":9,"48981":7,"48982":7,"48983":7,"48984":6,"48985":4,"48986":9,"48987":7,"48988":2,"48989":2,"48990":5,"48991":2,"48992":7,"48993":9,"48994":3,"48995":7,"48996":7,"48997":7,"48998":7,"48999":8,"49000":5,"49001":8,"49002":2,"49003":5,"49004":8,"49005":10,"49006":3,"49007":9,"49008":8,"49009":2,"49010":6,"49011":9,"49012":10,"49013":2,"49014":6,"49015":9,"49016":8,"49017":8,"49018":5,"49019":8,"49020":2,"49021":9,"49022":3,"49023":5,"49024":8,"49025":9,"49026":8,"49027":7,"49028":6,"49029":8,"49030":3,"49031":3,"49032":7,"49033":9,"49034":6,"49035":3,"49036":8,"49037":5,"49038":7,"49039":6,"49040":2,"49041":1,"49042":6,"49043":4,"49044":5,"49045":7,"49046":2,"49047":7,"49048":7,"49049":8,"49050":4,"49051":5,"49052":7,"49053":9,"49054":8,"49055":9,"49056":5,"49057":9,"49058":5,"49059":7,"49060":6,"49061":7,"49062":5,"49063":9,"49064":9,"49065":8,"49066":8,"49067":8,"49068":8,"49069":7,"49070":1,"49071":4,"49072":4,"49073":7,"49074":9,"49075":8,"49076":8,"49077":5,"49078":8,"49079":5,"49080":7,"49081":9,"49082":7,"49083":2,"49084":7,"49085":9,"49086":8,"49087":1,"49088":8,"49089":3,"49090":1,"49091":8,"49092":9,"49093":5,"49094":9,"49095":7,"49096":9,"49097":9,"49098":6,"49099":8,"49100":8,"49101":9,"49102":6,"49103":4,"49104":7,"49105":7,"49106":5,"49107":8,"49108":8,"49109":7,"49110":6,"49111":9,"49112":2,"49113":2,"49114":9,"49115":8,"49116":2,"49117":5,"49118":7,"49119":8,"49120":9,"49121":6,"49122":9,"49123":7,"49124":8,"49125":6,"49126":7,"49127":9,"49128":8,"49129":7,"49130":7,"49131":8,"49132":3,"49133":1,"49134":5,"49135":8,"49136":5,"49137":5,"49138":5,"49139":7,"49140":5,"49141":2,"49142":6,"49143":2,"49144":2,"49145":8,"49146":2,"49147":9,"49148":3,"49149":9,"49150":7,"49151":9,"49152":7,"49153":9,"49154":10,"49155":2,"49156":3,"49157":9,"49158":5,"49159":9,"49160":1,"49161":8,"49162":10,"49163":9,"49164":9,"49165":7,"49166":8,"49167":9,"49168":7,"49169":9,"49170":1,"49171":8,"49172":10,"49173":9,"49174":6,"49175":8,"49176":9,"49177":8,"49178":8,"49179":3,"49180":3,"49181":5,"49182":7,"49183":8,"49184":4,"49185":8,"49186":1,"49187":5,"49188":2,"49189":8,"49190":5,"49191":10,"49192":8,"49193":8,"49194":6,"49195":9,"49196":8,"49197":8,"49198":7,"49199":3,"49200":8,"49201":1,"49202":8,"49203":1,"49204":8,"49205":7,"49206":7,"49207":5,"49208":5,"49209":7,"49210":7,"49211":3,"49212":9,"49213":5,"49214":8,"49215":8,"49216":5,"49217":9,"49218":9,"49219":8,"49220":9,"49221":9,"49222":9,"49223":6,"49224":9,"49225":9,"49226":10,"49227":9,"49228":5,"49229":9,"49230":7,"49231":7,"49232":10,"49233":5,"49234":2,"49235":8,"49236":4,"49237":7,"49238":8,"49239":3,"49240":2,"49241":9,"49242":7,"49243":4,"49244":7,"49245":7,"49246":9,"49247":1,"49248":6,"49249":2,"49250":2,"49251":8,"49252":8,"49253":8,"49254":7,"49255":2,"49256":8,"49257":8,"49258":8,"49259":8,"49260":3,"49261":8,"49262":6,"49263":10,"49264":5,"49265":9,"49266":9,"49267":7,"49268":9,"49269":9,"49270":8,"49271":4,"49272":8,"49273":9,"49274":7,"49275":2,"49276":7,"49277":9,"49278":3,"49279":2,"49280":8,"49281":7,"49282":8,"49283":1,"49284":2,"49285":9,"49286":9,"49287":9,"49288":3,"49289":8,"49290":5,"49291":2,"49292":2,"49293":8,"49294":9,"49295":8,"49296":2,"49297":2,"49298":8,"49299":8,"49300":6,"49301":2,"49302":8,"49303":7,"49304":2,"49305":8,"49306":8,"49307":8,"49308":6,"49309":8,"49310":3,"49311":7,"49312":7,"49313":7,"49314":7,"49315":3,"49316":4,"49317":7,"49318":1,"49319":7,"49320":1,"49321":7,"49322":7,"49323":7,"49324":2,"49325":7,"49326":7,"49327":2,"49328":7,"49329":2,"49330":8,"49331":8,"49332":8,"49333":10,"49334":4,"49335":7,"49336":10,"49337":7,"49338":5,"49339":9,"49340":7,"49341":7,"49342":10,"49343":7,"49344":9,"49345":7,"49346":7,"49347":5,"49348":7,"49349":6,"49350":5,"49351":4,"49352":9,"49353":3,"49354":9,"49355":9,"49356":1,"49357":7,"49358":3,"49359":9,"49360":2,"49361":7,"49362":8,"49363":9,"49364":8,"49365":4,"49366":8,"49367":8,"49368":7,"49369":3,"49370":10,"49371":6,"49372":5,"49373":6,"49374":10,"49375":8,"49376":9,"49377":7,"49378":8,"49379":8,"49380":2,"49381":7,"49382":9,"49383":2,"49384":7,"49385":8,"49386":4,"49387":4,"49388":8,"49389":8,"49390":3,"49391":8,"49392":10,"49393":7,"49394":8,"49395":5,"49396":2,"49397":8,"49398":4,"49399":8,"49400":8,"49401":8,"49402":8,"49403":8,"49404":5,"49405":5,"49406":2,"49407":5,"49408":7,"49409":7,"49410":8,"49411":8,"49412":8,"49413":7,"49414":8,"49415":2,"49416":8,"49417":4,"49418":9,"49419":7,"49420":9,"49421":10,"49422":9,"49423":5,"49424":2,"49425":10,"49426":8,"49427":5,"49428":8,"49429":2,"49430":3,"49431":3,"49432":7,"49433":8,"49434":2,"49435":8,"49436":9,"49437":9,"49438":5,"49439":9,"49440":9,"49441":8,"49442":2,"49443":8,"49444":7,"49445":9,"49446":7,"49447":9,"49448":4,"49449":2,"49450":3,"49451":8,"49452":7,"49453":8,"49454":3,"49455":1,"49456":5,"49457":9,"49458":9,"49459":1,"49460":2,"49461":8,"49462":7,"49463":7,"49464":8,"49465":5,"49466":6,"49467":7,"49468":8,"49469":9,"49470":7,"49471":5,"49472":2,"49473":7,"49474":6,"49475":5,"49476":2,"49477":4,"49478":2,"49479":7,"49480":9,"49481":9,"49482":9,"49483":8,"49484":8,"49485":7,"49486":5,"49487":5,"49488":10,"49489":10,"49490":10,"49491":9,"49492":2,"49493":2,"49494":7,"49495":9,"49496":10,"49497":7,"49498":7,"49499":5,"49500":7,"49501":3,"49502":2,"49503":9,"49504":3,"49505":6,"49506":9,"49507":8,"49508":7,"49509":7,"49510":1,"49511":6,"49512":5,"49513":7,"49514":10,"49515":5,"49516":3,"49517":7,"49518":8,"49519":1,"49520":5,"49521":5,"49522":8,"49523":10,"49524":8,"49525":9,"49526":8,"49527":7,"49528":8,"49529":9,"49530":2,"49531":10,"49532":9,"49533":2,"49534":8,"49535":3,"49536":7,"49537":7,"49538":8,"49539":7,"49540":7,"49541":2,"49542":1,"49543":5,"49544":9,"49545":1,"49546":8,"49547":1,"49548":9,"49549":2,"49550":1,"49551":9,"49552":9,"49553":7,"49554":2,"49555":7,"49556":3,"49557":5,"49558":7,"49559":1,"49560":6,"49561":2,"49562":9,"49563":7,"49564":9,"49565":9,"49566":2,"49567":9,"49568":3,"49569":9,"49570":2,"49571":8,"49572":8,"49573":8,"49574":7,"49575":7,"49576":8,"49577":9,"49578":7,"49579":7,"49580":2,"49581":5,"49582":8,"49583":4,"49584":7,"49585":5,"49586":8,"49587":8,"49588":7,"49589":2,"49590":2,"49591":3,"49592":8,"49593":2,"49594":6,"49595":6,"49596":8,"49597":2,"49598":7,"49599":3,"49600":2,"49601":8,"49602":8,"49603":8,"49604":3,"49605":9,"49606":7,"49607":5,"49608":8,"49609":7,"49610":9,"49611":7,"49612":2,"49613":5,"49614":3,"49615":6,"49616":5,"49617":7,"49618":8,"49619":2,"49620":7,"49621":10,"49622":2,"49623":9,"49624":7,"49625":1,"49626":8,"49627":7,"49628":8,"49629":2,"49630":3,"49631":8,"49632":9,"49633":4,"49634":5,"49635":7,"49636":9,"49637":9,"49638":5,"49639":5,"49640":8,"49641":4,"49642":10,"49643":8,"49644":9,"49645":8,"49646":2,"49647":3,"49648":2,"49649":9,"49650":8,"49651":5,"49652":7,"49653":1,"49654":6,"49655":8,"49656":8,"49657":7,"49658":6,"49659":8,"49660":10,"49661":5,"49662":9,"49663":7,"49664":6,"49665":5,"49666":5,"49667":8,"49668":2,"49669":7,"49670":9,"49671":1,"49672":2,"49673":5,"49674":4,"49675":9,"49676":2,"49677":7,"49678":8,"49679":2,"49680":9,"49681":7,"49682":8,"49683":7,"49684":7,"49685":4,"49686":8,"49687":7,"49688":5,"49689":9,"49690":5,"49691":7,"49692":10,"49693":4,"49694":9,"49695":7,"49696":6,"49697":5,"49698":8,"49699":3,"49700":9,"49701":10,"49702":1,"49703":1,"49704":8,"49705":2,"49706":10,"49707":7,"49708":5,"49709":5,"49710":7,"49711":3,"49712":6,"49713":7,"49714":5,"49715":7,"49716":10,"49717":8,"49718":2,"49719":5,"49720":3,"49721":8,"49722":7,"49723":9,"49724":4,"49725":5,"49726":10,"49727":5,"49728":5,"49729":4,"49730":9,"49731":7,"49732":9,"49733":5,"49734":9,"49735":7,"49736":10,"49737":8,"49738":5,"49739":9,"49740":7,"49741":7,"49742":10,"49743":1,"49744":7,"49745":5,"49746":9,"49747":10,"49748":8,"49749":2,"49750":7,"49751":4,"49752":5,"49753":8,"49754":8,"49755":7,"49756":9,"49757":8,"49758":8,"49759":5,"49760":8,"49761":9,"49762":5,"49763":7,"49764":8,"49765":1,"49766":9,"49767":7,"49768":5,"49769":7,"49770":9,"49771":6,"49772":5,"49773":2,"49774":7,"49775":8,"49776":10,"49777":9,"49778":2,"49779":8,"49780":4,"49781":10,"49782":2,"49783":9,"49784":9,"49785":8,"49786":9,"49787":1,"49788":8,"49789":8,"49790":7,"49791":1,"49792":6,"49793":6,"49794":7,"49795":4,"49796":4,"49797":5,"49798":9,"49799":8,"49800":7,"49801":10,"49802":9,"49803":7,"49804":10,"49805":9,"49806":8,"49807":2,"49808":6,"49809":1,"49810":8,"49811":5,"49812":7,"49813":7,"49814":2,"49815":5,"49816":7,"49817":5,"49818":7,"49819":5,"49820":7,"49821":8,"49822":7,"49823":7,"49824":6,"49825":2,"49826":3,"49827":4,"49828":2,"49829":5,"49830":7,"49831":7,"49832":10,"49833":8,"49834":7,"49835":8,"49836":7,"49837":8,"49838":9,"49839":4,"49840":7,"49841":9,"49842":8,"49843":7,"49844":7,"49845":1,"49846":7,"49847":2,"49848":8,"49849":5,"49850":7,"49851":8,"49852":8,"49853":10,"49854":8,"49855":1,"49856":8,"49857":5,"49858":3,"49859":1,"49860":9,"49861":10,"49862":5,"49863":4,"49864":9,"49865":10,"49866":1,"49867":8,"49868":7,"49869":5,"49870":8,"49871":8,"49872":7,"49873":6,"49874":7,"49875":5,"49876":8,"49877":5,"49878":2,"49879":9,"49880":7,"49881":10,"49882":8,"49883":8,"49884":9,"49885":9,"49886":1,"49887":8,"49888":2,"49889":4,"49890":10,"49891":4,"49892":1,"49893":7,"49894":10,"49895":4,"49896":7,"49897":2,"49898":5,"49899":6,"49900":7,"49901":1,"49902":7,"49903":2,"49904":8,"49905":9,"49906":7,"49907":8,"49908":2,"49909":2,"49910":7,"49911":1,"49912":3,"49913":5,"49914":10,"49915":7,"49916":9,"49917":4,"49918":8,"49919":1,"49920":8,"49921":3,"49922":9,"49923":2,"49924":9,"49925":9,"49926":7,"49927":3,"49928":7,"49929":3,"49930":7,"49931":7,"49932":7,"49933":6,"49934":4,"49935":8,"49936":8,"49937":3,"49938":2,"49939":4,"49940":8,"49941":1,"49942":9,"49943":1,"49944":2,"49945":9,"49946":5,"49947":8,"49948":7,"49949":9,"49950":2,"49951":5,"49952":8,"49953":8,"49954":9,"49955":7,"49956":2,"49957":8,"49958":7,"49959":7,"49960":7,"49961":5,"49962":7,"49963":8,"49964":9,"49965":2,"49966":9,"49967":10,"49968":2,"49969":8,"49970":7,"49971":9,"49972":9,"49973":6,"49974":4,"49975":7,"49976":7,"49977":8,"49978":8,"49979":8,"49980":7,"49981":2,"49982":7,"49983":9,"49984":8,"49985":8,"49986":7,"49987":5,"49988":10,"49989":10,"49990":7,"49991":5,"49992":5,"49993":8,"49994":9,"49995":2,"49996":9,"49997":7,"49998":8,"49999":10,"50000":7,"50001":8,"50002":9,"50003":7,"50004":8,"50005":4,"50006":5,"50007":9,"50008":7,"50009":8,"50010":5,"50011":7,"50012":8,"50013":7,"50014":9,"50015":10,"50016":5,"50017":4,"50018":8,"50019":7,"50020":7,"50021":8,"50022":2,"50023":2,"50024":7,"50025":1,"50026":8,"50027":7,"50028":1,"50029":8,"50030":5,"50031":9,"50032":8,"50033":10,"50034":7,"50035":9,"50036":10,"50037":9,"50038":7,"50039":5,"50040":1,"50041":3,"50042":7,"50043":8,"50044":9,"50045":5,"50046":5,"50047":2,"50048":9,"50049":8,"50050":7,"50051":1,"50052":7,"50053":9,"50054":2,"50055":7,"50056":8,"50057":10,"50058":4,"50059":8,"50060":7,"50061":9,"50062":3,"50063":8,"50064":2,"50065":7,"50066":2,"50067":8,"50068":10,"50069":3,"50070":2,"50071":1,"50072":8,"50073":8,"50074":7,"50075":7,"50076":2,"50077":7,"50078":7,"50079":7,"50080":5,"50081":8,"50082":6,"50083":7,"50084":4,"50085":5,"50086":9,"50087":9,"50088":8,"50089":5,"50090":9,"50091":9,"50092":4,"50093":8,"50094":7,"50095":8,"50096":4,"50097":7,"50098":3,"50099":10,"50100":2,"50101":4,"50102":5,"50103":5,"50104":9,"50105":2,"50106":8,"50107":8,"50108":2,"50109":4,"50110":8,"50111":10,"50112":2,"50113":5,"50114":8,"50115":4,"50116":2,"50117":7,"50118":8,"50119":3,"50120":7,"50121":8,"50122":6,"50123":2,"50124":2,"50125":8,"50126":7,"50127":9,"50128":8,"50129":8,"50130":7,"50131":9,"50132":6,"50133":9,"50134":7,"50135":2,"50136":7,"50137":8,"50138":7,"50139":5,"50140":8,"50141":5,"50142":3,"50143":8,"50144":3,"50145":5,"50146":8,"50147":1,"50148":7,"50149":2,"50150":5,"50151":9,"50152":7,"50153":5,"50154":7,"50155":7,"50156":5,"50157":5,"50158":7,"50159":10,"50160":7,"50161":2,"50162":6,"50163":5,"50164":7,"50165":2,"50166":1,"50167":7,"50168":2,"50169":7,"50170":7,"50171":9,"50172":2,"50173":7,"50174":9,"50175":7,"50176":9,"50177":9,"50178":10,"50179":4,"50180":7,"50181":8,"50182":8,"50183":7,"50184":8,"50185":9,"50186":2,"50187":9,"50188":7,"50189":10,"50190":5,"50191":1,"50192":7,"50193":1,"50194":8,"50195":8,"50196":9,"50197":2,"50198":8,"50199":8,"50200":5,"50201":9,"50202":2,"50203":1,"50204":2,"50205":7,"50206":3,"50207":8,"50208":1,"50209":9,"50210":9,"50211":9,"50212":5,"50213":8,"50214":7,"50215":7,"50216":7,"50217":8,"50218":8,"50219":4,"50220":9,"50221":7,"50222":2,"50223":7,"50224":8,"50225":1,"50226":7,"50227":3,"50228":5,"50229":7,"50230":5,"50231":8,"50232":7,"50233":1,"50234":10,"50235":5,"50236":10,"50237":7,"50238":7,"50239":8,"50240":1,"50241":7,"50242":8,"50243":7,"50244":7,"50245":7,"50246":9,"50247":8,"50248":6,"50249":8,"50250":9,"50251":7,"50252":2,"50253":8,"50254":6,"50255":2,"50256":7,"50257":7,"50258":7,"50259":2,"50260":8,"50261":9,"50262":5,"50263":5,"50264":8,"50265":9,"50266":2,"50267":5,"50268":9,"50269":9,"50270":5,"50271":9,"50272":3,"50273":8,"50274":1,"50275":7,"50276":4,"50277":5,"50278":8,"50279":8,"50280":7,"50281":10,"50282":9,"50283":7,"50284":5,"50285":7,"50286":2,"50287":8,"50288":7,"50289":8,"50290":5,"50291":9,"50292":8,"50293":4,"50294":8,"50295":2,"50296":1,"50297":2,"50298":7,"50299":5,"50300":8,"50301":5,"50302":6,"50303":9,"50304":7,"50305":7,"50306":7,"50307":2,"50308":10,"50309":7,"50310":7,"50311":7,"50312":10,"50313":4,"50314":2,"50315":5,"50316":6,"50317":5,"50318":7,"50319":2,"50320":5,"50321":8,"50322":4,"50323":8,"50324":6,"50325":7,"50326":8,"50327":5,"50328":6,"50329":9,"50330":10,"50331":2,"50332":5,"50333":2,"50334":7,"50335":7,"50336":7,"50337":4,"50338":8,"50339":9,"50340":8,"50341":9,"50342":8,"50343":7,"50344":8,"50345":8,"50346":7,"50347":5,"50348":8,"50349":8,"50350":9,"50351":5,"50352":2,"50353":8,"50354":2,"50355":2,"50356":8,"50357":5,"50358":7,"50359":5,"50360":8,"50361":2,"50362":2,"50363":9,"50364":8,"50365":1,"50366":4,"50367":4,"50368":7,"50369":8,"50370":9,"50371":10,"50372":10,"50373":6,"50374":9,"50375":5,"50376":1,"50377":6,"50378":5,"50379":3,"50380":2,"50381":8,"50382":2,"50383":8,"50384":7,"50385":9,"50386":10,"50387":2,"50388":8,"50389":9,"50390":9,"50391":7,"50392":8,"50393":6,"50394":9,"50395":9,"50396":8,"50397":8,"50398":2,"50399":7,"50400":7,"50401":2,"50402":7,"50403":9,"50404":8,"50405":2,"50406":10,"50407":6,"50408":7,"50409":7,"50410":7,"50411":3,"50412":10,"50413":9,"50414":5,"50415":9,"50416":8,"50417":7,"50418":8,"50419":5,"50420":4,"50421":7,"50422":8,"50423":8,"50424":2,"50425":8,"50426":6,"50427":8,"50428":9,"50429":8,"50430":4,"50431":8,"50432":9,"50433":9,"50434":4,"50435":6,"50436":7,"50437":7,"50438":5,"50439":6,"50440":4,"50441":9,"50442":10,"50443":6,"50444":4,"50445":2,"50446":9,"50447":5,"50448":5,"50449":7,"50450":9,"50451":8,"50452":7,"50453":7,"50454":8,"50455":7,"50456":8,"50457":8,"50458":5,"50459":4,"50460":9,"50461":7,"50462":8,"50463":2,"50464":7,"50465":7,"50466":10,"50467":2,"50468":6,"50469":5,"50470":8,"50471":2,"50472":8,"50473":2,"50474":6,"50475":7,"50476":5,"50477":4,"50478":5,"50479":8,"50480":8,"50481":2,"50482":1,"50483":5,"50484":1,"50485":5,"50486":5,"50487":7,"50488":1,"50489":4,"50490":9,"50491":7,"50492":9,"50493":5,"50494":10,"50495":1,"50496":7,"50497":9,"50498":2,"50499":8,"50500":7,"50501":8,"50502":5,"50503":2,"50504":2,"50505":1,"50506":8,"50507":8,"50508":5,"50509":8,"50510":7,"50511":8,"50512":9,"50513":6,"50514":5,"50515":8,"50516":5,"50517":8,"50518":9,"50519":5,"50520":7,"50521":7,"50522":7,"50523":5,"50524":7,"50525":7,"50526":8,"50527":7,"50528":8,"50529":6,"50530":9,"50531":8,"50532":9,"50533":7,"50534":5,"50535":8,"50536":7,"50537":8,"50538":9,"50539":5,"50540":8,"50541":8,"50542":7,"50543":8,"50544":9,"50545":8,"50546":3,"50547":7,"50548":1,"50549":9,"50550":10,"50551":4,"50552":8,"50553":9,"50554":3,"50555":10,"50556":5,"50557":9,"50558":4,"50559":10,"50560":10,"50561":10,"50562":7,"50563":7,"50564":9,"50565":7,"50566":7,"50567":4,"50568":8,"50569":10,"50570":2,"50571":8,"50572":8,"50573":7,"50574":7,"50575":3,"50576":10,"50577":6,"50578":7,"50579":8,"50580":2,"50581":9,"50582":8,"50583":9,"50584":9,"50585":4,"50586":2,"50587":5,"50588":1,"50589":7,"50590":10,"50591":5,"50592":5,"50593":7,"50594":7,"50595":9,"50596":4,"50597":9,"50598":2,"50599":8,"50600":8,"50601":2,"50602":10,"50603":7,"50604":8,"50605":7,"50606":9,"50607":8,"50608":2,"50609":8,"50610":8,"50611":3,"50612":8,"50613":6,"50614":1,"50615":5,"50616":9,"50617":2,"50618":6,"50619":4,"50620":9,"50621":2,"50622":1,"50623":10,"50624":2,"50625":7,"50626":9,"50627":9,"50628":7,"50629":8,"50630":10,"50631":8,"50632":9,"50633":8,"50634":2,"50635":7,"50636":1,"50637":2,"50638":7,"50639":3,"50640":1,"50641":4,"50642":9,"50643":2,"50644":9,"50645":8,"50646":4,"50647":8,"50648":9,"50649":5,"50650":9,"50651":6,"50652":7,"50653":1,"50654":8,"50655":8,"50656":9,"50657":3,"50658":7,"50659":8,"50660":9,"50661":8,"50662":9,"50663":7,"50664":9,"50665":5,"50666":5,"50667":8,"50668":7,"50669":10,"50670":8,"50671":6,"50672":7,"50673":3,"50674":8,"50675":7,"50676":5,"50677":8,"50678":7,"50679":8,"50680":2,"50681":1,"50682":9,"50683":2,"50684":1,"50685":8,"50686":7,"50687":8,"50688":7,"50689":9,"50690":2,"50691":7,"50692":10,"50693":9,"50694":5,"50695":3,"50696":9,"50697":6,"50698":8,"50699":7,"50700":9,"50701":7,"50702":8,"50703":8,"50704":8,"50705":8,"50706":8,"50707":7,"50708":1,"50709":10,"50710":4,"50711":9,"50712":7,"50713":7,"50714":8,"50715":7,"50716":2,"50717":3,"50718":3,"50719":5,"50720":9,"50721":6,"50722":2,"50723":9,"50724":8,"50725":4,"50726":10,"50727":8,"50728":8,"50729":8,"50730":3,"50731":7,"50732":5,"50733":5,"50734":9,"50735":9,"50736":9,"50737":7,"50738":1,"50739":6,"50740":8,"50741":7,"50742":5,"50743":10,"50744":6,"50745":7,"50746":1,"50747":7,"50748":3,"50749":4,"50750":8,"50751":1,"50752":1,"50753":7,"50754":8,"50755":1,"50756":7,"50757":6,"50758":7,"50759":7,"50760":8,"50761":5,"50762":6,"50763":8,"50764":4,"50765":10,"50766":7,"50767":10,"50768":7,"50769":7,"50770":8,"50771":5,"50772":7,"50773":8,"50774":9,"50775":8,"50776":8,"50777":8,"50778":9,"50779":9,"50780":7,"50781":1,"50782":3,"50783":2,"50784":8,"50785":5,"50786":10,"50787":5,"50788":8,"50789":2,"50790":4,"50791":1,"50792":9,"50793":7,"50794":7,"50795":2,"50796":3,"50797":8,"50798":5,"50799":9,"50800":8,"50801":1,"50802":7,"50803":8,"50804":2,"50805":2,"50806":2,"50807":9,"50808":3,"50809":7,"50810":7,"50811":7,"50812":1,"50813":2,"50814":5,"50815":8,"50816":8,"50817":7,"50818":9,"50819":7,"50820":7,"50821":7,"50822":9,"50823":8,"50824":5,"50825":10,"50826":4,"50827":8,"50828":5,"50829":8,"50830":10,"50831":10,"50832":9,"50833":2,"50834":7,"50835":4,"50836":9,"50837":8,"50838":8,"50839":8,"50840":7,"50841":8,"50842":9,"50843":8,"50844":5,"50845":9,"50846":5,"50847":1,"50848":8,"50849":7,"50850":8,"50851":5,"50852":7,"50853":4,"50854":7,"50855":5,"50856":1,"50857":8,"50858":3,"50859":8,"50860":2,"50861":7,"50862":8,"50863":7,"50864":7,"50865":1,"50866":3,"50867":8,"50868":2,"50869":5,"50870":10,"50871":5,"50872":8,"50873":5,"50874":2,"50875":7,"50876":8,"50877":8,"50878":7,"50879":3,"50880":7,"50881":4,"50882":7,"50883":9,"50884":8,"50885":5,"50886":8,"50887":7,"50888":9,"50889":6,"50890":10,"50891":9,"50892":9,"50893":9,"50894":5,"50895":8,"50896":7,"50897":5,"50898":5,"50899":7,"50900":10,"50901":8,"50902":9,"50903":2,"50904":9,"50905":1,"50906":8,"50907":6,"50908":7,"50909":7,"50910":9,"50911":9,"50912":8,"50913":10,"50914":3,"50915":1,"50916":8,"50917":4,"50918":8,"50919":8,"50920":5,"50921":4,"50922":2,"50923":7,"50924":2,"50925":2,"50926":5,"50927":8,"50928":4,"50929":4,"50930":1,"50931":1,"50932":7,"50933":7,"50934":5,"50935":9,"50936":7,"50937":4,"50938":7,"50939":8,"50940":5,"50941":5,"50942":9,"50943":8,"50944":10,"50945":1,"50946":5,"50947":8,"50948":5,"50949":3,"50950":3,"50951":8,"50952":8,"50953":9,"50954":7,"50955":8,"50956":3,"50957":8,"50958":8,"50959":2,"50960":5,"50961":5,"50962":7,"50963":9,"50964":2,"50965":7,"50966":2,"50967":5,"50968":7,"50969":3,"50970":8,"50971":7,"50972":3,"50973":9,"50974":8,"50975":7,"50976":8,"50977":7,"50978":4,"50979":4,"50980":2,"50981":5,"50982":9,"50983":9,"50984":3,"50985":8,"50986":2,"50987":5,"50988":9,"50989":10,"50990":1,"50991":8,"50992":2,"50993":8,"50994":5,"50995":8,"50996":7,"50997":8,"50998":3,"50999":6,"51000":9,"51001":2,"51002":7,"51003":3,"51004":7,"51005":7,"51006":5,"51007":2,"51008":7,"51009":5,"51010":3,"51011":2,"51012":9,"51013":5,"51014":9,"51015":2,"51016":8,"51017":7,"51018":8,"51019":8,"51020":9,"51021":2,"51022":9,"51023":6,"51024":5,"51025":4,"51026":8,"51027":8,"51028":9,"51029":3,"51030":9,"51031":2,"51032":6,"51033":9,"51034":3,"51035":8,"51036":7,"51037":8,"51038":2,"51039":2,"51040":9,"51041":8,"51042":5,"51043":9,"51044":4,"51045":3,"51046":8,"51047":8,"51048":7,"51049":2,"51050":9,"51051":7,"51052":7,"51053":8,"51054":5,"51055":7,"51056":8,"51057":8,"51058":4,"51059":2,"51060":8,"51061":9,"51062":7,"51063":7,"51064":7,"51065":1,"51066":2,"51067":9,"51068":7,"51069":8,"51070":7,"51071":2,"51072":8,"51073":2,"51074":7,"51075":10,"51076":8,"51077":9,"51078":7,"51079":5,"51080":2,"51081":6,"51082":2,"51083":5,"51084":6,"51085":5,"51086":1,"51087":7,"51088":5,"51089":7,"51090":7,"51091":1,"51092":5,"51093":2,"51094":3,"51095":2,"51096":9,"51097":7,"51098":2,"51099":7,"51100":8,"51101":7,"51102":9,"51103":5,"51104":8,"51105":4,"51106":8,"51107":7,"51108":10,"51109":9,"51110":8,"51111":5,"51112":10,"51113":8,"51114":7,"51115":7,"51116":6,"51117":10,"51118":9,"51119":10,"51120":8,"51121":5,"51122":5,"51123":9,"51124":7,"51125":9,"51126":9,"51127":2,"51128":8,"51129":5,"51130":5,"51131":8,"51132":6,"51133":8,"51134":8,"51135":5,"51136":1,"51137":7,"51138":5,"51139":8,"51140":8,"51141":7,"51142":7,"51143":3,"51144":8,"51145":9,"51146":9,"51147":3,"51148":10,"51149":8,"51150":2,"51151":2,"51152":2,"51153":10,"51154":8,"51155":9,"51156":6,"51157":5,"51158":8,"51159":2,"51160":8,"51161":9,"51162":2,"51163":10,"51164":9,"51165":8,"51166":8,"51167":10,"51168":1,"51169":1,"51170":8,"51171":7,"51172":9,"51173":9,"51174":8,"51175":7,"51176":9,"51177":2,"51178":2,"51179":5,"51180":7,"51181":8,"51182":8,"51183":9,"51184":3,"51185":2,"51186":8,"51187":1,"51188":4,"51189":8,"51190":9,"51191":4,"51192":9,"51193":8,"51194":7,"51195":3,"51196":6,"51197":9,"51198":5,"51199":4,"51200":1,"51201":9,"51202":2,"51203":8,"51204":9,"51205":9,"51206":5,"51207":1,"51208":7,"51209":7,"51210":5,"51211":5,"51212":8,"51213":9,"51214":8,"51215":7,"51216":8,"51217":7,"51218":10,"51219":4,"51220":6,"51221":9,"51222":8,"51223":7,"51224":2,"51225":7,"51226":7,"51227":9,"51228":2,"51229":9,"51230":8,"51231":5,"51232":2,"51233":9,"51234":2,"51235":7,"51236":9,"51237":1,"51238":6,"51239":3,"51240":9,"51241":8,"51242":8,"51243":8,"51244":7,"51245":9,"51246":9,"51247":1,"51248":10,"51249":2,"51250":1,"51251":5,"51252":4,"51253":9,"51254":10,"51255":9,"51256":8,"51257":8,"51258":7,"51259":5,"51260":5,"51261":9,"51262":8,"51263":8,"51264":2,"51265":7,"51266":5,"51267":1,"51268":7,"51269":9,"51270":7,"51271":9,"51272":9,"51273":8,"51274":4,"51275":7,"51276":2,"51277":2,"51278":2,"51279":1,"51280":8,"51281":2,"51282":2,"51283":8,"51284":9,"51285":7,"51286":2,"51287":8,"51288":8,"51289":6,"51290":2,"51291":3,"51292":9,"51293":8,"51294":6,"51295":10,"51296":8,"51297":6,"51298":5,"51299":1,"51300":7,"51301":8,"51302":6,"51303":8,"51304":7,"51305":7,"51306":10,"51307":7,"51308":10,"51309":7,"51310":6,"51311":7,"51312":9,"51313":8,"51314":6,"51315":10,"51316":8,"51317":8,"51318":7,"51319":9,"51320":8,"51321":8,"51322":4,"51323":6,"51324":4,"51325":9,"51326":9,"51327":1,"51328":8,"51329":8,"51330":8,"51331":7,"51332":9,"51333":6,"51334":10,"51335":8,"51336":10,"51337":7,"51338":9,"51339":9,"51340":7,"51341":5,"51342":9,"51343":7,"51344":2,"51345":8,"51346":8,"51347":2,"51348":4,"51349":6,"51350":7,"51351":2,"51352":8,"51353":2,"51354":9,"51355":9,"51356":8,"51357":9,"51358":6,"51359":7,"51360":4,"51361":4,"51362":9,"51363":2,"51364":7,"51365":7,"51366":6,"51367":5,"51368":9,"51369":7,"51370":7,"51371":9,"51372":5,"51373":8,"51374":9,"51375":2,"51376":9,"51377":5,"51378":9,"51379":3,"51380":8,"51381":8,"51382":10,"51383":8,"51384":10,"51385":4,"51386":9,"51387":8,"51388":8,"51389":8,"51390":7,"51391":3,"51392":9,"51393":8,"51394":8,"51395":7,"51396":6,"51397":5,"51398":9,"51399":2,"51400":10,"51401":10,"51402":4,"51403":9,"51404":7,"51405":8,"51406":8,"51407":10,"51408":1,"51409":10,"51410":4,"51411":8,"51412":9,"51413":9,"51414":2,"51415":7,"51416":8,"51417":9,"51418":9,"51419":7,"51420":9,"51421":3,"51422":7,"51423":9,"51424":10,"51425":9,"51426":1,"51427":1,"51428":8,"51429":1,"51430":7,"51431":9,"51432":4,"51433":4,"51434":2,"51435":4,"51436":3,"51437":8,"51438":1,"51439":7,"51440":8,"51441":6,"51442":7,"51443":2,"51444":9,"51445":8,"51446":4,"51447":10,"51448":8,"51449":7,"51450":4,"51451":8,"51452":5,"51453":5,"51454":8,"51455":8,"51456":10,"51457":10,"51458":9,"51459":1,"51460":1,"51461":7,"51462":5,"51463":9,"51464":3,"51465":9,"51466":8,"51467":7,"51468":4,"51469":4,"51470":6,"51471":10,"51472":1,"51473":2,"51474":2,"51475":8,"51476":7,"51477":7,"51478":7,"51479":8,"51480":6,"51481":2,"51482":7,"51483":6,"51484":2,"51485":3,"51486":6,"51487":7,"51488":7,"51489":4,"51490":6,"51491":1,"51492":4,"51493":7,"51494":9,"51495":6,"51496":9,"51497":8,"51498":9,"51499":9,"51500":4,"51501":7,"51502":5,"51503":7,"51504":8,"51505":8,"51506":7,"51507":10,"51508":6,"51509":5,"51510":9,"51511":10,"51512":9,"51513":2,"51514":7,"51515":1,"51516":6,"51517":8,"51518":3,"51519":9,"51520":3,"51521":5,"51522":1,"51523":8,"51524":2,"51525":2,"51526":7,"51527":3,"51528":9,"51529":2,"51530":9,"51531":7,"51532":2,"51533":2,"51534":7,"51535":8,"51536":1,"51537":7,"51538":10,"51539":5,"51540":7,"51541":4,"51542":7,"51543":5,"51544":8,"51545":7,"51546":9,"51547":9,"51548":9,"51549":5,"51550":9,"51551":6,"51552":7,"51553":9,"51554":10,"51555":3,"51556":7,"51557":3,"51558":8,"51559":3,"51560":7,"51561":5,"51562":8,"51563":7,"51564":1,"51565":8,"51566":8,"51567":1,"51568":8,"51569":9,"51570":10,"51571":7,"51572":8,"51573":9,"51574":7,"51575":5,"51576":9,"51577":8,"51578":8,"51579":8,"51580":5,"51581":2,"51582":7,"51583":6,"51584":10,"51585":5,"51586":7,"51587":5,"51588":7,"51589":8,"51590":1,"51591":5,"51592":8,"51593":2,"51594":2,"51595":5,"51596":7,"51597":5,"51598":8,"51599":3,"51600":4,"51601":7,"51602":10,"51603":9,"51604":3,"51605":9,"51606":7,"51607":7,"51608":5,"51609":9,"51610":9,"51611":6,"51612":8,"51613":10,"51614":8,"51615":8,"51616":2,"51617":4,"51618":7,"51619":7,"51620":5,"51621":7,"51622":7,"51623":5,"51624":8,"51625":7,"51626":8,"51627":9,"51628":9,"51629":1,"51630":7,"51631":5,"51632":8,"51633":1,"51634":6,"51635":9,"51636":3,"51637":8,"51638":9,"51639":2,"51640":9,"51641":8,"51642":4,"51643":2,"51644":8,"51645":7,"51646":7,"51647":6,"51648":10,"51649":9,"51650":10,"51651":8,"51652":7,"51653":5,"51654":9,"51655":8,"51656":8,"51657":5,"51658":7,"51659":8,"51660":5,"51661":10,"51662":4,"51663":8,"51664":5,"51665":1,"51666":7,"51667":8,"51668":4,"51669":4,"51670":5,"51671":7,"51672":10,"51673":2,"51674":9,"51675":5,"51676":5,"51677":7,"51678":8,"51679":2,"51680":9,"51681":8,"51682":5,"51683":8,"51684":7,"51685":7,"51686":7,"51687":9,"51688":2,"51689":2,"51690":1,"51691":7,"51692":9,"51693":8,"51694":5,"51695":8,"51696":3,"51697":7,"51698":6,"51699":9,"51700":8,"51701":5,"51702":7,"51703":5,"51704":6,"51705":9,"51706":2,"51707":1,"51708":5,"51709":4,"51710":8,"51711":5,"51712":3,"51713":3,"51714":5,"51715":3,"51716":8,"51717":2,"51718":8,"51719":5,"51720":5,"51721":8,"51722":2,"51723":9,"51724":7,"51725":8,"51726":9,"51727":8,"51728":8,"51729":10,"51730":1,"51731":8,"51732":5,"51733":9,"51734":9,"51735":7,"51736":7,"51737":7,"51738":5,"51739":8,"51740":9,"51741":8,"51742":2,"51743":8,"51744":7,"51745":9,"51746":4,"51747":8,"51748":2,"51749":7,"51750":3,"51751":6,"51752":6,"51753":4,"51754":8,"51755":9,"51756":7,"51757":6,"51758":9,"51759":3,"51760":7,"51761":9,"51762":8,"51763":5,"51764":7,"51765":3,"51766":8,"51767":9,"51768":9,"51769":5,"51770":9,"51771":8,"51772":1,"51773":7,"51774":9,"51775":5,"51776":8,"51777":7,"51778":7,"51779":7,"51780":9,"51781":7,"51782":5,"51783":4,"51784":6,"51785":7,"51786":8,"51787":8,"51788":6,"51789":2,"51790":7,"51791":2,"51792":1,"51793":8,"51794":9,"51795":5,"51796":7,"51797":10,"51798":8,"51799":8,"51800":8,"51801":8,"51802":8,"51803":6,"51804":5,"51805":9,"51806":2,"51807":9,"51808":8,"51809":10,"51810":2,"51811":10,"51812":3,"51813":9,"51814":9,"51815":3,"51816":8,"51817":1,"51818":6,"51819":3,"51820":5,"51821":8,"51822":7,"51823":10,"51824":7,"51825":9,"51826":2,"51827":9,"51828":8,"51829":3,"51830":8,"51831":1,"51832":10,"51833":7,"51834":5,"51835":1,"51836":5,"51837":8,"51838":9,"51839":8,"51840":8,"51841":8,"51842":7,"51843":2,"51844":8,"51845":8,"51846":9,"51847":8,"51848":8,"51849":3,"51850":9,"51851":8,"51852":9,"51853":8,"51854":8,"51855":7,"51856":3,"51857":4,"51858":4,"51859":7,"51860":4,"51861":9,"51862":9,"51863":7,"51864":1,"51865":7,"51866":3,"51867":5,"51868":6,"51869":2,"51870":8,"51871":7,"51872":5,"51873":5,"51874":9,"51875":2,"51876":8,"51877":9,"51878":8,"51879":9,"51880":9,"51881":3,"51882":8,"51883":5,"51884":9,"51885":8,"51886":7,"51887":8,"51888":9,"51889":8,"51890":2,"51891":2,"51892":2,"51893":7,"51894":1,"51895":7,"51896":3,"51897":8,"51898":8,"51899":6,"51900":7,"51901":5,"51902":7,"51903":1,"51904":7,"51905":1,"51906":2,"51907":7,"51908":4,"51909":8,"51910":8,"51911":8,"51912":3,"51913":2,"51914":8,"51915":8,"51916":9,"51917":9,"51918":8,"51919":7,"51920":9,"51921":3,"51922":6,"51923":1,"51924":8,"51925":8,"51926":7,"51927":8,"51928":3,"51929":10,"51930":8,"51931":4,"51932":2,"51933":5,"51934":8,"51935":8,"51936":8,"51937":8,"51938":9,"51939":8,"51940":8,"51941":9,"51942":8,"51943":3,"51944":8,"51945":2,"51946":9,"51947":7,"51948":8,"51949":8,"51950":9,"51951":9,"51952":5,"51953":7,"51954":8,"51955":7,"51956":6,"51957":2,"51958":8,"51959":5,"51960":4,"51961":2,"51962":4,"51963":7,"51964":9,"51965":2,"51966":2,"51967":5,"51968":7,"51969":8,"51970":7,"51971":8,"51972":5,"51973":5,"51974":7,"51975":9,"51976":4,"51977":5,"51978":5,"51979":8,"51980":8,"51981":8,"51982":7,"51983":8,"51984":2,"51985":7,"51986":7,"51987":3,"51988":7,"51989":7,"51990":3,"51991":5,"51992":2,"51993":6,"51994":2,"51995":8,"51996":7,"51997":4,"51998":7,"51999":9,"52000":10,"52001":8,"52002":6,"52003":9,"52004":7,"52005":6,"52006":8,"52007":9,"52008":4,"52009":8,"52010":7,"52011":4,"52012":5,"52013":8,"52014":10,"52015":1,"52016":8,"52017":9,"52018":2,"52019":10,"52020":1,"52021":2,"52022":9,"52023":8,"52024":8,"52025":8,"52026":8,"52027":5,"52028":7,"52029":2,"52030":8,"52031":9,"52032":2,"52033":7,"52034":8,"52035":5,"52036":7,"52037":6,"52038":9,"52039":8,"52040":8,"52041":6,"52042":7,"52043":8,"52044":7,"52045":8,"52046":9,"52047":1,"52048":8,"52049":7,"52050":9,"52051":8,"52052":7,"52053":5,"52054":2,"52055":7,"52056":9,"52057":7,"52058":8,"52059":5,"52060":7,"52061":5,"52062":8,"52063":8,"52064":7,"52065":8,"52066":8,"52067":9,"52068":3,"52069":8,"52070":8,"52071":8,"52072":6,"52073":8,"52074":7,"52075":8,"52076":10,"52077":7,"52078":9,"52079":9,"52080":5,"52081":6,"52082":1,"52083":8,"52084":7,"52085":8,"52086":2,"52087":1,"52088":5,"52089":5,"52090":4,"52091":7,"52092":10,"52093":7,"52094":7,"52095":4,"52096":9,"52097":2,"52098":7,"52099":7,"52100":8,"52101":7,"52102":2,"52103":9,"52104":5,"52105":7,"52106":3,"52107":2,"52108":8,"52109":2,"52110":5,"52111":7,"52112":3,"52113":4,"52114":5,"52115":1,"52116":10,"52117":8,"52118":4,"52119":9,"52120":7,"52121":2,"52122":1,"52123":5,"52124":8,"52125":6,"52126":7,"52127":8,"52128":9,"52129":9,"52130":8,"52131":1,"52132":8,"52133":3,"52134":3,"52135":2,"52136":8,"52137":6,"52138":10,"52139":2,"52140":9,"52141":8,"52142":8,"52143":9,"52144":5,"52145":2,"52146":1,"52147":8,"52148":2,"52149":8,"52150":8,"52151":7,"52152":6,"52153":2,"52154":4,"52155":7,"52156":8,"52157":9,"52158":7,"52159":1,"52160":1,"52161":8,"52162":8,"52163":8,"52164":5,"52165":7,"52166":7,"52167":9,"52168":4,"52169":3,"52170":1,"52171":8,"52172":7,"52173":3,"52174":9,"52175":7,"52176":5,"52177":7,"52178":4,"52179":10,"52180":7,"52181":3,"52182":5,"52183":7,"52184":3,"52185":5,"52186":9,"52187":7,"52188":6,"52189":7,"52190":6,"52191":2,"52192":7,"52193":8,"52194":10,"52195":5,"52196":5,"52197":7,"52198":7,"52199":7,"52200":9,"52201":7,"52202":9,"52203":8,"52204":3,"52205":2,"52206":8,"52207":7,"52208":9,"52209":2,"52210":3,"52211":5,"52212":5,"52213":8,"52214":8,"52215":7,"52216":6,"52217":7,"52218":7,"52219":3,"52220":4,"52221":9,"52222":10,"52223":5,"52224":8,"52225":7,"52226":5,"52227":8,"52228":8,"52229":8,"52230":9,"52231":5,"52232":6,"52233":2,"52234":9,"52235":9,"52236":9,"52237":2,"52238":10,"52239":9,"52240":9,"52241":7,"52242":8,"52243":8,"52244":8,"52245":5,"52246":7,"52247":7,"52248":7,"52249":8,"52250":3,"52251":6,"52252":2,"52253":4,"52254":10,"52255":10,"52256":5,"52257":8,"52258":9,"52259":8,"52260":2,"52261":7,"52262":7,"52263":2,"52264":7,"52265":2,"52266":7,"52267":6,"52268":2,"52269":8,"52270":4,"52271":5,"52272":8,"52273":9,"52274":8,"52275":2,"52276":9,"52277":9,"52278":4,"52279":7,"52280":7,"52281":9,"52282":5,"52283":5,"52284":8,"52285":9,"52286":4,"52287":7,"52288":7,"52289":9,"52290":5,"52291":1,"52292":8,"52293":8,"52294":8,"52295":10,"52296":8,"52297":9,"52298":8,"52299":5,"52300":9,"52301":7,"52302":1,"52303":5,"52304":7,"52305":8,"52306":7,"52307":7,"52308":8,"52309":7,"52310":7,"52311":7,"52312":9,"52313":5,"52314":7,"52315":7,"52316":10,"52317":8,"52318":10,"52319":9,"52320":7,"52321":7,"52322":2,"52323":4,"52324":7,"52325":7,"52326":7,"52327":8,"52328":8,"52329":7,"52330":5,"52331":7,"52332":10,"52333":8,"52334":8,"52335":8,"52336":10,"52337":7,"52338":7,"52339":9,"52340":9,"52341":9,"52342":3,"52343":7,"52344":5,"52345":5,"52346":7,"52347":9,"52348":10,"52349":7,"52350":7,"52351":9,"52352":7,"52353":2,"52354":1,"52355":8,"52356":10,"52357":7,"52358":9,"52359":10,"52360":5,"52361":8,"52362":5,"52363":9,"52364":9,"52365":3,"52366":2,"52367":9,"52368":7,"52369":9,"52370":4,"52371":6,"52372":3,"52373":7,"52374":9,"52375":8,"52376":7,"52377":9,"52378":8,"52379":1,"52380":8,"52381":9,"52382":5,"52383":9,"52384":2,"52385":9,"52386":9,"52387":7,"52388":10,"52389":8,"52390":6,"52391":3,"52392":9,"52393":9,"52394":3,"52395":7,"52396":8,"52397":8,"52398":9,"52399":6,"52400":8,"52401":8,"52402":5,"52403":7,"52404":3,"52405":1,"52406":9,"52407":9,"52408":7,"52409":5,"52410":7,"52411":5,"52412":2,"52413":9,"52414":8,"52415":8,"52416":2,"52417":5,"52418":7,"52419":8,"52420":1,"52421":6,"52422":9,"52423":5,"52424":8,"52425":8,"52426":7,"52427":5,"52428":8,"52429":9,"52430":2,"52431":5,"52432":3,"52433":2,"52434":2,"52435":5,"52436":4,"52437":2,"52438":7,"52439":8,"52440":4,"52441":7,"52442":1,"52443":2,"52444":3,"52445":2,"52446":4,"52447":5,"52448":5,"52449":7,"52450":2,"52451":9,"52452":2,"52453":2,"52454":7,"52455":10,"52456":7,"52457":7,"52458":8,"52459":6,"52460":2,"52461":8,"52462":8,"52463":8,"52464":1,"52465":8,"52466":8,"52467":10,"52468":3,"52469":7,"52470":8,"52471":7,"52472":2,"52473":8,"52474":10,"52475":9,"52476":2,"52477":7,"52478":3,"52479":2,"52480":8,"52481":3,"52482":5,"52483":7,"52484":8,"52485":8,"52486":7,"52487":10,"52488":5,"52489":7,"52490":8,"52491":6,"52492":9,"52493":5,"52494":10,"52495":7,"52496":2,"52497":9,"52498":5,"52499":2,"52500":2,"52501":2,"52502":7,"52503":2,"52504":8,"52505":6,"52506":7,"52507":9,"52508":5,"52509":8,"52510":4,"52511":8,"52512":8,"52513":5,"52514":9,"52515":7,"52516":8,"52517":8,"52518":8,"52519":8,"52520":7,"52521":7,"52522":3,"52523":2,"52524":1,"52525":9,"52526":6,"52527":10,"52528":8,"52529":7,"52530":5,"52531":9,"52532":6,"52533":4,"52534":7,"52535":7,"52536":8,"52537":8,"52538":9,"52539":8,"52540":7,"52541":7,"52542":6,"52543":10,"52544":7,"52545":8,"52546":5,"52547":8,"52548":7,"52549":10,"52550":10,"52551":10,"52552":9,"52553":1,"52554":7,"52555":6,"52556":1,"52557":9,"52558":2,"52559":7,"52560":7,"52561":2,"52562":8,"52563":7,"52564":9,"52565":7,"52566":8,"52567":8,"52568":7,"52569":9,"52570":4,"52571":4,"52572":9,"52573":3,"52574":4,"52575":10,"52576":2,"52577":3,"52578":4,"52579":1,"52580":5,"52581":6,"52582":6,"52583":9,"52584":6,"52585":3,"52586":5,"52587":5,"52588":10,"52589":7,"52590":1,"52591":9,"52592":2,"52593":6,"52594":6,"52595":7,"52596":6,"52597":4,"52598":3,"52599":7,"52600":9,"52601":8,"52602":8,"52603":10,"52604":7,"52605":8,"52606":1,"52607":6,"52608":8,"52609":8,"52610":8,"52611":9,"52612":8,"52613":8,"52614":9,"52615":2,"52616":2,"52617":5,"52618":6,"52619":7,"52620":7,"52621":4,"52622":8,"52623":9,"52624":8,"52625":9,"52626":7,"52627":8,"52628":10,"52629":9,"52630":7,"52631":8,"52632":8,"52633":6,"52634":2,"52635":10,"52636":9,"52637":10,"52638":2,"52639":3,"52640":7,"52641":3,"52642":8,"52643":9,"52644":9,"52645":8,"52646":5,"52647":10,"52648":5,"52649":8,"52650":7,"52651":8,"52652":7,"52653":2,"52654":4,"52655":6,"52656":7,"52657":8,"52658":7,"52659":8,"52660":2,"52661":2,"52662":7,"52663":7,"52664":6,"52665":2,"52666":8,"52667":7,"52668":2,"52669":7,"52670":9,"52671":8,"52672":9,"52673":9,"52674":2,"52675":7,"52676":8,"52677":9,"52678":8,"52679":1,"52680":7,"52681":9,"52682":2,"52683":5,"52684":9,"52685":3,"52686":8,"52687":8,"52688":7,"52689":6,"52690":3,"52691":1,"52692":5,"52693":7,"52694":9,"52695":8,"52696":6,"52697":6,"52698":7,"52699":2,"52700":7,"52701":7,"52702":7,"52703":8,"52704":8,"52705":2,"52706":10,"52707":6,"52708":7,"52709":10,"52710":5,"52711":2,"52712":9,"52713":8,"52714":8,"52715":10,"52716":7,"52717":4,"52718":10,"52719":8,"52720":1,"52721":9,"52722":9,"52723":9,"52724":2,"52725":7,"52726":5,"52727":9,"52728":8,"52729":5,"52730":7,"52731":3,"52732":8,"52733":7,"52734":8,"52735":9,"52736":4,"52737":8,"52738":5,"52739":10,"52740":6,"52741":2,"52742":3,"52743":2,"52744":9,"52745":6,"52746":3,"52747":6,"52748":3,"52749":5,"52750":6,"52751":2,"52752":8,"52753":5,"52754":10,"52755":7,"52756":2,"52757":5,"52758":1,"52759":7,"52760":10,"52761":9,"52762":1,"52763":1,"52764":9,"52765":7,"52766":2,"52767":2,"52768":2,"52769":9,"52770":9,"52771":7,"52772":8,"52773":8,"52774":2,"52775":10,"52776":8,"52777":2,"52778":3,"52779":3,"52780":8,"52781":4,"52782":3,"52783":7,"52784":1,"52785":1,"52786":5,"52787":1,"52788":8,"52789":8,"52790":9,"52791":5,"52792":2,"52793":6,"52794":5,"52795":5,"52796":5,"52797":2,"52798":7,"52799":10,"52800":6,"52801":8,"52802":9,"52803":7,"52804":2,"52805":8,"52806":5,"52807":7,"52808":7,"52809":8,"52810":4,"52811":8,"52812":7,"52813":9,"52814":9,"52815":2,"52816":8,"52817":6,"52818":8,"52819":9,"52820":8,"52821":6,"52822":7,"52823":9,"52824":8,"52825":6,"52826":2,"52827":9,"52828":7,"52829":8,"52830":9,"52831":9,"52832":9,"52833":7,"52834":5,"52835":7,"52836":8,"52837":2,"52838":9,"52839":2,"52840":4,"52841":8,"52842":5,"52843":1,"52844":6,"52845":3,"52846":9,"52847":8,"52848":8,"52849":7,"52850":7,"52851":1,"52852":6,"52853":7,"52854":7,"52855":3,"52856":5,"52857":9,"52858":9,"52859":2,"52860":8,"52861":5,"52862":8,"52863":8,"52864":8,"52865":2,"52866":9,"52867":10,"52868":3,"52869":3,"52870":5,"52871":7,"52872":7,"52873":9,"52874":6,"52875":4,"52876":8,"52877":2,"52878":1,"52879":7,"52880":7,"52881":10,"52882":5,"52883":9,"52884":3,"52885":3,"52886":7,"52887":8,"52888":3,"52889":8,"52890":9,"52891":9,"52892":5,"52893":6,"52894":1,"52895":2,"52896":7,"52897":4,"52898":7,"52899":8,"52900":3,"52901":2,"52902":6,"52903":7,"52904":8,"52905":2,"52906":4,"52907":9,"52908":8,"52909":5,"52910":7,"52911":2,"52912":5,"52913":9,"52914":10,"52915":7,"52916":9,"52917":7,"52918":9,"52919":9,"52920":10,"52921":10,"52922":9,"52923":6,"52924":7,"52925":8,"52926":10,"52927":8,"52928":7,"52929":5,"52930":5,"52931":8,"52932":4,"52933":1,"52934":2,"52935":2,"52936":10,"52937":7,"52938":6,"52939":9,"52940":9,"52941":4,"52942":9,"52943":6,"52944":8,"52945":3,"52946":9,"52947":8,"52948":4,"52949":8,"52950":9,"52951":2,"52952":7,"52953":7,"52954":3,"52955":3,"52956":9,"52957":6,"52958":7,"52959":7,"52960":8,"52961":3,"52962":8,"52963":10,"52964":7,"52965":9,"52966":7,"52967":2,"52968":5,"52969":8,"52970":5,"52971":5,"52972":9,"52973":2,"52974":8,"52975":10,"52976":1,"52977":9,"52978":3,"52979":7,"52980":4,"52981":5,"52982":8,"52983":4,"52984":7,"52985":1,"52986":4,"52987":7,"52988":8,"52989":9,"52990":8,"52991":7,"52992":8,"52993":10,"52994":9,"52995":6,"52996":9,"52997":2,"52998":6,"52999":8,"53000":7,"53001":3,"53002":3,"53003":3,"53004":5,"53005":1,"53006":9,"53007":2,"53008":4,"53009":4,"53010":5,"53011":7,"53012":9,"53013":9,"53014":9,"53015":8,"53016":2,"53017":8,"53018":2,"53019":2,"53020":4,"53021":5,"53022":9,"53023":5,"53024":9,"53025":5,"53026":2,"53027":9,"53028":6,"53029":3,"53030":8,"53031":7,"53032":3,"53033":8,"53034":9,"53035":7,"53036":7,"53037":7,"53038":9,"53039":5,"53040":9,"53041":5,"53042":7,"53043":10,"53044":9,"53045":8,"53046":8,"53047":9,"53048":9,"53049":5,"53050":8,"53051":10,"53052":9,"53053":8,"53054":7,"53055":7,"53056":3,"53057":6,"53058":5,"53059":8,"53060":7,"53061":6,"53062":1,"53063":7,"53064":7,"53065":1,"53066":4,"53067":9,"53068":2,"53069":1,"53070":8,"53071":6,"53072":9,"53073":3,"53074":1,"53075":7,"53076":7,"53077":10,"53078":3,"53079":5,"53080":2,"53081":2,"53082":8,"53083":7,"53084":8,"53085":7,"53086":8,"53087":7,"53088":4,"53089":7,"53090":2,"53091":2,"53092":3,"53093":2,"53094":8,"53095":7,"53096":9,"53097":9,"53098":9,"53099":7,"53100":2,"53101":7,"53102":1,"53103":5,"53104":8,"53105":8,"53106":7,"53107":9,"53108":8,"53109":8,"53110":9,"53111":8,"53112":5,"53113":7,"53114":10,"53115":6,"53116":2,"53117":8,"53118":3,"53119":8,"53120":5,"53121":10,"53122":6,"53123":8,"53124":8,"53125":8,"53126":7,"53127":7,"53128":9,"53129":8,"53130":8,"53131":7,"53132":4,"53133":7,"53134":9,"53135":5,"53136":8,"53137":7,"53138":9,"53139":3,"53140":5,"53141":9,"53142":8,"53143":9,"53144":8,"53145":7,"53146":9,"53147":7,"53148":5,"53149":6,"53150":8,"53151":2,"53152":10,"53153":10,"53154":5,"53155":5,"53156":9,"53157":9,"53158":8,"53159":1,"53160":8,"53161":8,"53162":3,"53163":1,"53164":7,"53165":7,"53166":8,"53167":9,"53168":2,"53169":8,"53170":9,"53171":8,"53172":3,"53173":7,"53174":8,"53175":5,"53176":8,"53177":5,"53178":1,"53179":6,"53180":2,"53181":8,"53182":8,"53183":3,"53184":8,"53185":7,"53186":7,"53187":5,"53188":1,"53189":7,"53190":3,"53191":4,"53192":7,"53193":9,"53194":2,"53195":5,"53196":3,"53197":1,"53198":8,"53199":7,"53200":9,"53201":4,"53202":8,"53203":2,"53204":7,"53205":7,"53206":8,"53207":10,"53208":4,"53209":9,"53210":8,"53211":9,"53212":7,"53213":8,"53214":2,"53215":6,"53216":7,"53217":2,"53218":7,"53219":8,"53220":10,"53221":9,"53222":10,"53223":7,"53224":8,"53225":7,"53226":2,"53227":8,"53228":7,"53229":9,"53230":10,"53231":10,"53232":5,"53233":10,"53234":8,"53235":7,"53236":7,"53237":5,"53238":6,"53239":5,"53240":7,"53241":5,"53242":9,"53243":7,"53244":7,"53245":9,"53246":3,"53247":9,"53248":7,"53249":9,"53250":1,"53251":5,"53252":8,"53253":2,"53254":4,"53255":9,"53256":1,"53257":7,"53258":4,"53259":1,"53260":6,"53261":8,"53262":9,"53263":5,"53264":9,"53265":8,"53266":5,"53267":7,"53268":8,"53269":8,"53270":3,"53271":8,"53272":9,"53273":5,"53274":6,"53275":9,"53276":8,"53277":9,"53278":2,"53279":8,"53280":8,"53281":3,"53282":8,"53283":9,"53284":1,"53285":2,"53286":5,"53287":1,"53288":9,"53289":2,"53290":8,"53291":7,"53292":2,"53293":8,"53294":8,"53295":7,"53296":6,"53297":5,"53298":8,"53299":5,"53300":2,"53301":8,"53302":8,"53303":3,"53304":4,"53305":9,"53306":8,"53307":4,"53308":4,"53309":8,"53310":2,"53311":8,"53312":10,"53313":1,"53314":10,"53315":5,"53316":9,"53317":7,"53318":1,"53319":10,"53320":1,"53321":5,"53322":9,"53323":10,"53324":9,"53325":4,"53326":10,"53327":8,"53328":2,"53329":7,"53330":8,"53331":10,"53332":8,"53333":8,"53334":5,"53335":8,"53336":8,"53337":9,"53338":2,"53339":9,"53340":9,"53341":8,"53342":8,"53343":8,"53344":4,"53345":7,"53346":8,"53347":2,"53348":8,"53349":4,"53350":7,"53351":7,"53352":7,"53353":8,"53354":8,"53355":7,"53356":7,"53357":10,"53358":7,"53359":5,"53360":9,"53361":2,"53362":6,"53363":9,"53364":10,"53365":3,"53366":6,"53367":5,"53368":5,"53369":7,"53370":8,"53371":2,"53372":7,"53373":8,"53374":8,"53375":8,"53376":8,"53377":8,"53378":9,"53379":2,"53380":7,"53381":7,"53382":8,"53383":8,"53384":7,"53385":4,"53386":9,"53387":5,"53388":7,"53389":8,"53390":1,"53391":7,"53392":9,"53393":8,"53394":8,"53395":7,"53396":9,"53397":5,"53398":5,"53399":8,"53400":7,"53401":9,"53402":10,"53403":9,"53404":4,"53405":2,"53406":9,"53407":7,"53408":3,"53409":9,"53410":1,"53411":5,"53412":2,"53413":4,"53414":8,"53415":9,"53416":7,"53417":7,"53418":5,"53419":7,"53420":9,"53421":8,"53422":9,"53423":9,"53424":5,"53425":9,"53426":7,"53427":2,"53428":7,"53429":7,"53430":4,"53431":9,"53432":7,"53433":1,"53434":7,"53435":1,"53436":5,"53437":2,"53438":9,"53439":4,"53440":7,"53441":1,"53442":9,"53443":8,"53444":7,"53445":1,"53446":9,"53447":10,"53448":5,"53449":7,"53450":7,"53451":8,"53452":7,"53453":9,"53454":7,"53455":8,"53456":6,"53457":8,"53458":7,"53459":2,"53460":7,"53461":5,"53462":10,"53463":9,"53464":9,"53465":7,"53466":1,"53467":9,"53468":8,"53469":7,"53470":5,"53471":7,"53472":7,"53473":9,"53474":5,"53475":5,"53476":4,"53477":8,"53478":7,"53479":1,"53480":9,"53481":6,"53482":9,"53483":8,"53484":7,"53485":8,"53486":5,"53487":9,"53488":5,"53489":9,"53490":7,"53491":2,"53492":8,"53493":6,"53494":2,"53495":7,"53496":5,"53497":5,"53498":8,"53499":6,"53500":4,"53501":2,"53502":8,"53503":6,"53504":1,"53505":9,"53506":8,"53507":5,"53508":8,"53509":9,"53510":1,"53511":8,"53512":9,"53513":9,"53514":9,"53515":6,"53516":2,"53517":9,"53518":5,"53519":9,"53520":8,"53521":2,"53522":7,"53523":10,"53524":5,"53525":8,"53526":7,"53527":7,"53528":9,"53529":7,"53530":9,"53531":7,"53532":9,"53533":5,"53534":3,"53535":8,"53536":8,"53537":1,"53538":8,"53539":1,"53540":8,"53541":1,"53542":9,"53543":2,"53544":8,"53545":1,"53546":10,"53547":3,"53548":6,"53549":1,"53550":4,"53551":4,"53552":5,"53553":1,"53554":3,"53555":7,"53556":7,"53557":4,"53558":7,"53559":7,"53560":8,"53561":10,"53562":3,"53563":8,"53564":3,"53565":7,"53566":9,"53567":4,"53568":8,"53569":9,"53570":1,"53571":7,"53572":8,"53573":5,"53574":10,"53575":2,"53576":8,"53577":7,"53578":5,"53579":7,"53580":8,"53581":8,"53582":7,"53583":10,"53584":9,"53585":5,"53586":2,"53587":2,"53588":5,"53589":8,"53590":7,"53591":5,"53592":2,"53593":7,"53594":3,"53595":7,"53596":8,"53597":7,"53598":9,"53599":7,"53600":5,"53601":7,"53602":3,"53603":7,"53604":7,"53605":7,"53606":5,"53607":8,"53608":2,"53609":5,"53610":9,"53611":8,"53612":9,"53613":9,"53614":9,"53615":4,"53616":8,"53617":3,"53618":9,"53619":2,"53620":9,"53621":4,"53622":3,"53623":7,"53624":6,"53625":7,"53626":9,"53627":6,"53628":8,"53629":8,"53630":10,"53631":9,"53632":7,"53633":7,"53634":2,"53635":5,"53636":2,"53637":4,"53638":4,"53639":6,"53640":3,"53641":8,"53642":9,"53643":7,"53644":7,"53645":5,"53646":7,"53647":5,"53648":7,"53649":2,"53650":3,"53651":8,"53652":7,"53653":9,"53654":7,"53655":6,"53656":8,"53657":7,"53658":9,"53659":2,"53660":7,"53661":5,"53662":8,"53663":8,"53664":8,"53665":1,"53666":8,"53667":7,"53668":5,"53669":5,"53670":7,"53671":8,"53672":8,"53673":5,"53674":3,"53675":6,"53676":9,"53677":7,"53678":8,"53679":8,"53680":2,"53681":8,"53682":1,"53683":7,"53684":6,"53685":9,"53686":5,"53687":8,"53688":9,"53689":2,"53690":5,"53691":8,"53692":9,"53693":3,"53694":7,"53695":8,"53696":9,"53697":3,"53698":9,"53699":5,"53700":7,"53701":7,"53702":9,"53703":5,"53704":7,"53705":1,"53706":10,"53707":8,"53708":8,"53709":8,"53710":8,"53711":7,"53712":7,"53713":8,"53714":7,"53715":7,"53716":7,"53717":8,"53718":2,"53719":2,"53720":8,"53721":8,"53722":7,"53723":8,"53724":6,"53725":7,"53726":5,"53727":6,"53728":8,"53729":5,"53730":7,"53731":7,"53732":6,"53733":1,"53734":3,"53735":2,"53736":2,"53737":8,"53738":9,"53739":6,"53740":4,"53741":7,"53742":9,"53743":8,"53744":7,"53745":5,"53746":1,"53747":2,"53748":8,"53749":5,"53750":2,"53751":4,"53752":9,"53753":9,"53754":2,"53755":5,"53756":8,"53757":7,"53758":7,"53759":5,"53760":3,"53761":8,"53762":2,"53763":3,"53764":8,"53765":2,"53766":8,"53767":6,"53768":9,"53769":7,"53770":2,"53771":2,"53772":5,"53773":9,"53774":10,"53775":8,"53776":1,"53777":7,"53778":7,"53779":4,"53780":8,"53781":8,"53782":8,"53783":7,"53784":6,"53785":6,"53786":2,"53787":7,"53788":10,"53789":7,"53790":7,"53791":8,"53792":8,"53793":8,"53794":8,"53795":7,"53796":4,"53797":4,"53798":1,"53799":9,"53800":8,"53801":9,"53802":9,"53803":8,"53804":8,"53805":9,"53806":7,"53807":1,"53808":7,"53809":8,"53810":8,"53811":2,"53812":10,"53813":5,"53814":7,"53815":7,"53816":9,"53817":10,"53818":8,"53819":7,"53820":1,"53821":5,"53822":1,"53823":8,"53824":7,"53825":7,"53826":7,"53827":7,"53828":2,"53829":8,"53830":5,"53831":8,"53832":8,"53833":5,"53834":7,"53835":6,"53836":3,"53837":8,"53838":7,"53839":8,"53840":4,"53841":9,"53842":1,"53843":6,"53844":10,"53845":5,"53846":5,"53847":7,"53848":2,"53849":9,"53850":6,"53851":10,"53852":10,"53853":8,"53854":6,"53855":10,"53856":8,"53857":2,"53858":6,"53859":2,"53860":8,"53861":8,"53862":9,"53863":9,"53864":10,"53865":7,"53866":5,"53867":6,"53868":3,"53869":2,"53870":7,"53871":4,"53872":1,"53873":1,"53874":8,"53875":7,"53876":8,"53877":3,"53878":2,"53879":4,"53880":7,"53881":9,"53882":8,"53883":7,"53884":7,"53885":5,"53886":10,"53887":2,"53888":9,"53889":9,"53890":7,"53891":10,"53892":7,"53893":8,"53894":10,"53895":5,"53896":2,"53897":3,"53898":4,"53899":9,"53900":8,"53901":8,"53902":7,"53903":2,"53904":7,"53905":6,"53906":8,"53907":9,"53908":5,"53909":7,"53910":2,"53911":7,"53912":7,"53913":8,"53914":2,"53915":9,"53916":1,"53917":10,"53918":4,"53919":7,"53920":9,"53921":9,"53922":2,"53923":7,"53924":9,"53925":7,"53926":7,"53927":9,"53928":8,"53929":6,"53930":3,"53931":7,"53932":4,"53933":5,"53934":4,"53935":7,"53936":2,"53937":8,"53938":1,"53939":9,"53940":7,"53941":8,"53942":2,"53943":7,"53944":7,"53945":4,"53946":8,"53947":9,"53948":6,"53949":7,"53950":5,"53951":1,"53952":9,"53953":8,"53954":2,"53955":7,"53956":9,"53957":8,"53958":7,"53959":5,"53960":7,"53961":10,"53962":9,"53963":9,"53964":2,"53965":9,"53966":10,"53967":8,"53968":7,"53969":7,"53970":1,"53971":6,"53972":7,"53973":9,"53974":2,"53975":9,"53976":7,"53977":7,"53978":6,"53979":1,"53980":8,"53981":8,"53982":7,"53983":5,"53984":5,"53985":8,"53986":4,"53987":9,"53988":7,"53989":9,"53990":7,"53991":5,"53992":2,"53993":5,"53994":3,"53995":3,"53996":7,"53997":8,"53998":7,"53999":4,"54000":4,"54001":8,"54002":8,"54003":6,"54004":5,"54005":3,"54006":3,"54007":5,"54008":6,"54009":3,"54010":7,"54011":2,"54012":1,"54013":9,"54014":10,"54015":8,"54016":7,"54017":8,"54018":3,"54019":5,"54020":9,"54021":9,"54022":8,"54023":2,"54024":8,"54025":5,"54026":10,"54027":9,"54028":9,"54029":7,"54030":7,"54031":2,"54032":10,"54033":2,"54034":7,"54035":4,"54036":2,"54037":9,"54038":1,"54039":2,"54040":9,"54041":5,"54042":7,"54043":7,"54044":8,"54045":7,"54046":5,"54047":8,"54048":2,"54049":7,"54050":5,"54051":1,"54052":5,"54053":9,"54054":2,"54055":8,"54056":2,"54057":7,"54058":9,"54059":8,"54060":6,"54061":7,"54062":2,"54063":1,"54064":1,"54065":6,"54066":10,"54067":4,"54068":4,"54069":7,"54070":2,"54071":3,"54072":6,"54073":4,"54074":7,"54075":5,"54076":8,"54077":8,"54078":10,"54079":5,"54080":7,"54081":7,"54082":3,"54083":9,"54084":10,"54085":8,"54086":7,"54087":9,"54088":1,"54089":9,"54090":5,"54091":2,"54092":4,"54093":8,"54094":8,"54095":7,"54096":7,"54097":9,"54098":7,"54099":8,"54100":9,"54101":7,"54102":10,"54103":2,"54104":7,"54105":8,"54106":5,"54107":1,"54108":9,"54109":9,"54110":9,"54111":7,"54112":5,"54113":10,"54114":7,"54115":8,"54116":8,"54117":8,"54118":8,"54119":2,"54120":5,"54121":1,"54122":7,"54123":5,"54124":8,"54125":7,"54126":2,"54127":7,"54128":8,"54129":8,"54130":5,"54131":1,"54132":7,"54133":8,"54134":8,"54135":8,"54136":1,"54137":5,"54138":3,"54139":3,"54140":8,"54141":7,"54142":10,"54143":7,"54144":3,"54145":6,"54146":10,"54147":8,"54148":9,"54149":6,"54150":8,"54151":7,"54152":8,"54153":5,"54154":5,"54155":8,"54156":9,"54157":2,"54158":5,"54159":6,"54160":7,"54161":7,"54162":3,"54163":9,"54164":8,"54165":5,"54166":9,"54167":5,"54168":6,"54169":9,"54170":7,"54171":1,"54172":8,"54173":9,"54174":5,"54175":8,"54176":6,"54177":7,"54178":10,"54179":3,"54180":2,"54181":2,"54182":10,"54183":8,"54184":6,"54185":5,"54186":2,"54187":3,"54188":2,"54189":3,"54190":9,"54191":8,"54192":3,"54193":6,"54194":5,"54195":2,"54196":7,"54197":1,"54198":8,"54199":7,"54200":7,"54201":9,"54202":9,"54203":2,"54204":4,"54205":1,"54206":7,"54207":9,"54208":2,"54209":9,"54210":1,"54211":8,"54212":3,"54213":7,"54214":10,"54215":5,"54216":10,"54217":8,"54218":5,"54219":3,"54220":3,"54221":7,"54222":3,"54223":4,"54224":3,"54225":9,"54226":1,"54227":8,"54228":7,"54229":1,"54230":2,"54231":8,"54232":1,"54233":7,"54234":7,"54235":9,"54236":2,"54237":1,"54238":8,"54239":7,"54240":9,"54241":8,"54242":8,"54243":2,"54244":7,"54245":9,"54246":3,"54247":8,"54248":7,"54249":9,"54250":8,"54251":9,"54252":4,"54253":10,"54254":6,"54255":2,"54256":5,"54257":4,"54258":9,"54259":7,"54260":1,"54261":9,"54262":9,"54263":8,"54264":7,"54265":10,"54266":2,"54267":1,"54268":9,"54269":9,"54270":7,"54271":2,"54272":4,"54273":9,"54274":9,"54275":8,"54276":8,"54277":2,"54278":9,"54279":2,"54280":2,"54281":6,"54282":8,"54283":8,"54284":2,"54285":4,"54286":9,"54287":7,"54288":7,"54289":2,"54290":9,"54291":5,"54292":9,"54293":2,"54294":7,"54295":1,"54296":7,"54297":1,"54298":2,"54299":2,"54300":9,"54301":8,"54302":7,"54303":9,"54304":4,"54305":2,"54306":8,"54307":2,"54308":2,"54309":10,"54310":10,"54311":6,"54312":7,"54313":8,"54314":7,"54315":7,"54316":2,"54317":8,"54318":7,"54319":5,"54320":4,"54321":2,"54322":7,"54323":9,"54324":10,"54325":6,"54326":2,"54327":5,"54328":8,"54329":2,"54330":7,"54331":8,"54332":3,"54333":6,"54334":7,"54335":7,"54336":1,"54337":6,"54338":9,"54339":8,"54340":2,"54341":7,"54342":5,"54343":7,"54344":8,"54345":10,"54346":8,"54347":5,"54348":7,"54349":2,"54350":7,"54351":9,"54352":6,"54353":10,"54354":9,"54355":7,"54356":5,"54357":9,"54358":8,"54359":7,"54360":8,"54361":2,"54362":8,"54363":1,"54364":4,"54365":6,"54366":3,"54367":7,"54368":10,"54369":6,"54370":3,"54371":5,"54372":8,"54373":4,"54374":8,"54375":8,"54376":8,"54377":7,"54378":5,"54379":8,"54380":1,"54381":9,"54382":8,"54383":6,"54384":10,"54385":8,"54386":9,"54387":7,"54388":7,"54389":8,"54390":7,"54391":3,"54392":9,"54393":9,"54394":3,"54395":8,"54396":5,"54397":7,"54398":9,"54399":7,"54400":7,"54401":8,"54402":8,"54403":7,"54404":1,"54405":8,"54406":8,"54407":7,"54408":8,"54409":7,"54410":8,"54411":2,"54412":8,"54413":6,"54414":8,"54415":5,"54416":5,"54417":5,"54418":7,"54419":5,"54420":7,"54421":6,"54422":2,"54423":8,"54424":7,"54425":2,"54426":9,"54427":3,"54428":9,"54429":8,"54430":8,"54431":10,"54432":7,"54433":8,"54434":5,"54435":6,"54436":10,"54437":4,"54438":2,"54439":5,"54440":7,"54441":8,"54442":1,"54443":8,"54444":2,"54445":1,"54446":4,"54447":7,"54448":9,"54449":6,"54450":8,"54451":9,"54452":10,"54453":7,"54454":8,"54455":2,"54456":7,"54457":7,"54458":7,"54459":9,"54460":8,"54461":6,"54462":6,"54463":9,"54464":1,"54465":9,"54466":9,"54467":10,"54468":9,"54469":8,"54470":2,"54471":8,"54472":7,"54473":9,"54474":10,"54475":8,"54476":9,"54477":2,"54478":5,"54479":10,"54480":7,"54481":7,"54482":9,"54483":9,"54484":2,"54485":9,"54486":5,"54487":9,"54488":2,"54489":5,"54490":7,"54491":9,"54492":1,"54493":7,"54494":9,"54495":1,"54496":9,"54497":6,"54498":7,"54499":4,"54500":8,"54501":3,"54502":7,"54503":7,"54504":7,"54505":3,"54506":7,"54507":3,"54508":5,"54509":7,"54510":3,"54511":8,"54512":2,"54513":4,"54514":5,"54515":8,"54516":6,"54517":7,"54518":2,"54519":8,"54520":4,"54521":2,"54522":7,"54523":8,"54524":8,"54525":8,"54526":7,"54527":7,"54528":4,"54529":7,"54530":9,"54531":1,"54532":8,"54533":3,"54534":6,"54535":8,"54536":6,"54537":7,"54538":5,"54539":7,"54540":10,"54541":7,"54542":7,"54543":1,"54544":9,"54545":5,"54546":10,"54547":7,"54548":7,"54549":8,"54550":8,"54551":7,"54552":7,"54553":3,"54554":3,"54555":9,"54556":9,"54557":5,"54558":9,"54559":2,"54560":2,"54561":7,"54562":7,"54563":8,"54564":8,"54565":2,"54566":7,"54567":7,"54568":8,"54569":8,"54570":5,"54571":9,"54572":10,"54573":8,"54574":7,"54575":2,"54576":2,"54577":2,"54578":9,"54579":6,"54580":2,"54581":8,"54582":3,"54583":2,"54584":5,"54585":5,"54586":8,"54587":10,"54588":7,"54589":9,"54590":8,"54591":8,"54592":7,"54593":6,"54594":1,"54595":2,"54596":9,"54597":4,"54598":10,"54599":8,"54600":8,"54601":7,"54602":4,"54603":8,"54604":4,"54605":9,"54606":10,"54607":10,"54608":8,"54609":5,"54610":9,"54611":8,"54612":9,"54613":7,"54614":8,"54615":3,"54616":9,"54617":6,"54618":9,"54619":5,"54620":1,"54621":8,"54622":8,"54623":8,"54624":2,"54625":9,"54626":5,"54627":2,"54628":8,"54629":2,"54630":7,"54631":4,"54632":5,"54633":5,"54634":8,"54635":7,"54636":9,"54637":6,"54638":8,"54639":3,"54640":2,"54641":8,"54642":2,"54643":3,"54644":2,"54645":5,"54646":7,"54647":9,"54648":9,"54649":8,"54650":9,"54651":1,"54652":9,"54653":2,"54654":8,"54655":2,"54656":7,"54657":2,"54658":2,"54659":5,"54660":5,"54661":10,"54662":8,"54663":2,"54664":3,"54665":5,"54666":4,"54667":5,"54668":1,"54669":7,"54670":2,"54671":7,"54672":9,"54673":1,"54674":1,"54675":3,"54676":2,"54677":2,"54678":7,"54679":3,"54680":8,"54681":2,"54682":8,"54683":9,"54684":7,"54685":8,"54686":8,"54687":7,"54688":2,"54689":9,"54690":9,"54691":8,"54692":8,"54693":5,"54694":3,"54695":9,"54696":10,"54697":3,"54698":8,"54699":1,"54700":2,"54701":7,"54702":8,"54703":8,"54704":8,"54705":7,"54706":3,"54707":7,"54708":8,"54709":9,"54710":6,"54711":8,"54712":5,"54713":3,"54714":2,"54715":7,"54716":7,"54717":7,"54718":7,"54719":7,"54720":9,"54721":5,"54722":9,"54723":5,"54724":7,"54725":2,"54726":9,"54727":7,"54728":8,"54729":2,"54730":5,"54731":9,"54732":3,"54733":3,"54734":2,"54735":1,"54736":6,"54737":7,"54738":8,"54739":9,"54740":8,"54741":7,"54742":6,"54743":7,"54744":8,"54745":5,"54746":9,"54747":6,"54748":2,"54749":8,"54750":7,"54751":3,"54752":8,"54753":7,"54754":7,"54755":8,"54756":3,"54757":5,"54758":5,"54759":7,"54760":7,"54761":3,"54762":9,"54763":7,"54764":8,"54765":5,"54766":2,"54767":10,"54768":5,"54769":8,"54770":2,"54771":8,"54772":9,"54773":6,"54774":8,"54775":2,"54776":7,"54777":7,"54778":2,"54779":10,"54780":7,"54781":5,"54782":3,"54783":8,"54784":7,"54785":2,"54786":8,"54787":7,"54788":7,"54789":7,"54790":1,"54791":4,"54792":7,"54793":10,"54794":9,"54795":9,"54796":8,"54797":8,"54798":2,"54799":5,"54800":5,"54801":7,"54802":8,"54803":5,"54804":10,"54805":6,"54806":10,"54807":1,"54808":7,"54809":4,"54810":8,"54811":9,"54812":7,"54813":9,"54814":8,"54815":8,"54816":9,"54817":5,"54818":8,"54819":6,"54820":9,"54821":6,"54822":8,"54823":1,"54824":4,"54825":2,"54826":7,"54827":9,"54828":9,"54829":9,"54830":7,"54831":9,"54832":8,"54833":9,"54834":1,"54835":6,"54836":9,"54837":10,"54838":2,"54839":9,"54840":9,"54841":1,"54842":2,"54843":6,"54844":4,"54845":4,"54846":2,"54847":5,"54848":7,"54849":8,"54850":9,"54851":8,"54852":8,"54853":2,"54854":9,"54855":2,"54856":10,"54857":4,"54858":8,"54859":4,"54860":7,"54861":7,"54862":8,"54863":7,"54864":9,"54865":2,"54866":9,"54867":7,"54868":5,"54869":7,"54870":5,"54871":7,"54872":9,"54873":9,"54874":8,"54875":1,"54876":8,"54877":9,"54878":2,"54879":4,"54880":5,"54881":8,"54882":3,"54883":7,"54884":7,"54885":5,"54886":4,"54887":9,"54888":9,"54889":6,"54890":9,"54891":8,"54892":4,"54893":7,"54894":8,"54895":9,"54896":2,"54897":5,"54898":2,"54899":4,"54900":7,"54901":10,"54902":9,"54903":8,"54904":9,"54905":7,"54906":2,"54907":2,"54908":6,"54909":10,"54910":9,"54911":6,"54912":8,"54913":5,"54914":7,"54915":5,"54916":5,"54917":5,"54918":7,"54919":7,"54920":10,"54921":3,"54922":10,"54923":9,"54924":7,"54925":8,"54926":7,"54927":7,"54928":8,"54929":9,"54930":2,"54931":7,"54932":7,"54933":3,"54934":1,"54935":6,"54936":8,"54937":6,"54938":7,"54939":8,"54940":8,"54941":7,"54942":8,"54943":4,"54944":5,"54945":8,"54946":5,"54947":9,"54948":1,"54949":7,"54950":9,"54951":6,"54952":8,"54953":5,"54954":9,"54955":6,"54956":10,"54957":9,"54958":7,"54959":9,"54960":5,"54961":2,"54962":2,"54963":7,"54964":9,"54965":7,"54966":8,"54967":8,"54968":8,"54969":8,"54970":2,"54971":5,"54972":8,"54973":8,"54974":10,"54975":8,"54976":5,"54977":9,"54978":7,"54979":9,"54980":7,"54981":5,"54982":7,"54983":7,"54984":9,"54985":2,"54986":2,"54987":8,"54988":7,"54989":2,"54990":4,"54991":2,"54992":7,"54993":1,"54994":1,"54995":4,"54996":8,"54997":8,"54998":4,"54999":9,"55000":7,"55001":8,"55002":2,"55003":7,"55004":1,"55005":7,"55006":7,"55007":5,"55008":6,"55009":5,"55010":8,"55011":7,"55012":9,"55013":8,"55014":5,"55015":8,"55016":7,"55017":7,"55018":1,"55019":8,"55020":6,"55021":7,"55022":5,"55023":5,"55024":9,"55025":8,"55026":5,"55027":1,"55028":8,"55029":8,"55030":2,"55031":8,"55032":9,"55033":2,"55034":8,"55035":5,"55036":2,"55037":6,"55038":9,"55039":7,"55040":4,"55041":2,"55042":8,"55043":8,"55044":6,"55045":10,"55046":2,"55047":9,"55048":9,"55049":5,"55050":5,"55051":4,"55052":9,"55053":4,"55054":9,"55055":7,"55056":9,"55057":5,"55058":8,"55059":7,"55060":5,"55061":8,"55062":10,"55063":5,"55064":9,"55065":7,"55066":7,"55067":8,"55068":8,"55069":7,"55070":5,"55071":8,"55072":2,"55073":10,"55074":5,"55075":4,"55076":9,"55077":2,"55078":2,"55079":3,"55080":3,"55081":8,"55082":5,"55083":6,"55084":8,"55085":10,"55086":1,"55087":7,"55088":2,"55089":8,"55090":10,"55091":3,"55092":6,"55093":7,"55094":9,"55095":7,"55096":9,"55097":2,"55098":3,"55099":2,"55100":8,"55101":7,"55102":5,"55103":8,"55104":3,"55105":7,"55106":2,"55107":6,"55108":7,"55109":7,"55110":6,"55111":7,"55112":8,"55113":4,"55114":8,"55115":5,"55116":2,"55117":7,"55118":8,"55119":2,"55120":7,"55121":9,"55122":4,"55123":3,"55124":9,"55125":10,"55126":4,"55127":4,"55128":9,"55129":4,"55130":3,"55131":9,"55132":8,"55133":8,"55134":7,"55135":5,"55136":7,"55137":7,"55138":2,"55139":2,"55140":3,"55141":2,"55142":6,"55143":10,"55144":5,"55145":8,"55146":7,"55147":9,"55148":9,"55149":7,"55150":2,"55151":9,"55152":4,"55153":2,"55154":10,"55155":9,"55156":8,"55157":2,"55158":9,"55159":5,"55160":9,"55161":7,"55162":8,"55163":6,"55164":8,"55165":7,"55166":10,"55167":3,"55168":7,"55169":3,"55170":8,"55171":8,"55172":5,"55173":6,"55174":5,"55175":9,"55176":10,"55177":2,"55178":3,"55179":9,"55180":3,"55181":6,"55182":7,"55183":6,"55184":9,"55185":6,"55186":7,"55187":7,"55188":9,"55189":7,"55190":1,"55191":7,"55192":1,"55193":2,"55194":1,"55195":7,"55196":7,"55197":5,"55198":8,"55199":10,"55200":7,"55201":8,"55202":2,"55203":2,"55204":9,"55205":3,"55206":9,"55207":8,"55208":7,"55209":8,"55210":7,"55211":5,"55212":7,"55213":8,"55214":8,"55215":4,"55216":8,"55217":5,"55218":9,"55219":3,"55220":8,"55221":5,"55222":9,"55223":7,"55224":8,"55225":4,"55226":7,"55227":10,"55228":2,"55229":9,"55230":3,"55231":2,"55232":9,"55233":2,"55234":8,"55235":9,"55236":7,"55237":2,"55238":6,"55239":8,"55240":7,"55241":7,"55242":1,"55243":4,"55244":7,"55245":9,"55246":5,"55247":8,"55248":4,"55249":5,"55250":1,"55251":10,"55252":9,"55253":6,"55254":7,"55255":2,"55256":3,"55257":2,"55258":8,"55259":5,"55260":8,"55261":7,"55262":5,"55263":3,"55264":8,"55265":6,"55266":9,"55267":9,"55268":4,"55269":4,"55270":3,"55271":8,"55272":10,"55273":1,"55274":1,"55275":5,"55276":9,"55277":7,"55278":8,"55279":2,"55280":7,"55281":2,"55282":9,"55283":1,"55284":4,"55285":7,"55286":4,"55287":7,"55288":9,"55289":7,"55290":7,"55291":8,"55292":2,"55293":9,"55294":5,"55295":2,"55296":4,"55297":2,"55298":9,"55299":4,"55300":3,"55301":8,"55302":6,"55303":7,"55304":9,"55305":9,"55306":6,"55307":7,"55308":2,"55309":3,"55310":8,"55311":8,"55312":5,"55313":9,"55314":9,"55315":8,"55316":5,"55317":10,"55318":6,"55319":5,"55320":7,"55321":5,"55322":6,"55323":9,"55324":8,"55325":8,"55326":8,"55327":7,"55328":5,"55329":8,"55330":7,"55331":1,"55332":10,"55333":8,"55334":8,"55335":8,"55336":8,"55337":9,"55338":8,"55339":8,"55340":7,"55341":9,"55342":3,"55343":9,"55344":8,"55345":7,"55346":7,"55347":3,"55348":5,"55349":1,"55350":3,"55351":8,"55352":4,"55353":9,"55354":5,"55355":2,"55356":7,"55357":9,"55358":2,"55359":9,"55360":4,"55361":6,"55362":2,"55363":6,"55364":5,"55365":2,"55366":5,"55367":7,"55368":9,"55369":3,"55370":8,"55371":9,"55372":1,"55373":2,"55374":10,"55375":7,"55376":8,"55377":8,"55378":8,"55379":2,"55380":10,"55381":7,"55382":7,"55383":7,"55384":5,"55385":8,"55386":7,"55387":9,"55388":2,"55389":8,"55390":10,"55391":5,"55392":5,"55393":7,"55394":6,"55395":2,"55396":9,"55397":7,"55398":10,"55399":7,"55400":9,"55401":9,"55402":4,"55403":2,"55404":1,"55405":8,"55406":8,"55407":5,"55408":1,"55409":6,"55410":2,"55411":3,"55412":9,"55413":5,"55414":4,"55415":6,"55416":9,"55417":2,"55418":5,"55419":9,"55420":5,"55421":5,"55422":7,"55423":8,"55424":7,"55425":5,"55426":7,"55427":4,"55428":8,"55429":6,"55430":5,"55431":8,"55432":3,"55433":1,"55434":7,"55435":5,"55436":7,"55437":6,"55438":1,"55439":5,"55440":5,"55441":1,"55442":9,"55443":10,"55444":8,"55445":8,"55446":7,"55447":10,"55448":8,"55449":2,"55450":8,"55451":9,"55452":5,"55453":9,"55454":9,"55455":7,"55456":7,"55457":8,"55458":4,"55459":9,"55460":8,"55461":8,"55462":8,"55463":10,"55464":8,"55465":4,"55466":2,"55467":7,"55468":2,"55469":2,"55470":9,"55471":2,"55472":3,"55473":6,"55474":8,"55475":1,"55476":9,"55477":5,"55478":7,"55479":8,"55480":8,"55481":4,"55482":4,"55483":7,"55484":9,"55485":8,"55486":8,"55487":6,"55488":7,"55489":7,"55490":1,"55491":8,"55492":9,"55493":2,"55494":8,"55495":9,"55496":2,"55497":4,"55498":10,"55499":3,"55500":7,"55501":7,"55502":9,"55503":9,"55504":4,"55505":10,"55506":2,"55507":10,"55508":1,"55509":9,"55510":8,"55511":8,"55512":5,"55513":9,"55514":9,"55515":10,"55516":8,"55517":8,"55518":9,"55519":2,"55520":5,"55521":10,"55522":9,"55523":5,"55524":8,"55525":8,"55526":2,"55527":8,"55528":10,"55529":2,"55530":8,"55531":8,"55532":8,"55533":10,"55534":7,"55535":2,"55536":2,"55537":2,"55538":4,"55539":9,"55540":7,"55541":8,"55542":7,"55543":9,"55544":2,"55545":9,"55546":5,"55547":9,"55548":7,"55549":7,"55550":1,"55551":6,"55552":5,"55553":8,"55554":8,"55555":7,"55556":1,"55557":8,"55558":5,"55559":9,"55560":3,"55561":3,"55562":8,"55563":5,"55564":7,"55565":4,"55566":7,"55567":8,"55568":7,"55569":8,"55570":8,"55571":9,"55572":1,"55573":4,"55574":8,"55575":5,"55576":8,"55577":5,"55578":4,"55579":9,"55580":4,"55581":9,"55582":9,"55583":9,"55584":2,"55585":8,"55586":7,"55587":7,"55588":8,"55589":7,"55590":8,"55591":8,"55592":6,"55593":7,"55594":2,"55595":9,"55596":9,"55597":8,"55598":2,"55599":7,"55600":7,"55601":8,"55602":7,"55603":8,"55604":8,"55605":10,"55606":9,"55607":10,"55608":7,"55609":5,"55610":10,"55611":6,"55612":7,"55613":2,"55614":8,"55615":8,"55616":5,"55617":9,"55618":2,"55619":8,"55620":8,"55621":6,"55622":3,"55623":9,"55624":5,"55625":8,"55626":9,"55627":7,"55628":8,"55629":2,"55630":7,"55631":5,"55632":8,"55633":6,"55634":7,"55635":5,"55636":8,"55637":5,"55638":2,"55639":9,"55640":5,"55641":2,"55642":9,"55643":4,"55644":9,"55645":7,"55646":7,"55647":8,"55648":9,"55649":5,"55650":3,"55651":2,"55652":2,"55653":9,"55654":7,"55655":7,"55656":5,"55657":8,"55658":2,"55659":4,"55660":9,"55661":5,"55662":2,"55663":6,"55664":7,"55665":2,"55666":4,"55667":7,"55668":4,"55669":8,"55670":4,"55671":5,"55672":7,"55673":9,"55674":6,"55675":7,"55676":4,"55677":8,"55678":6,"55679":7,"55680":8,"55681":9,"55682":5,"55683":3,"55684":7,"55685":6,"55686":10,"55687":1,"55688":2,"55689":1,"55690":7,"55691":2,"55692":10,"55693":7,"55694":9,"55695":5,"55696":2,"55697":5,"55698":5,"55699":2,"55700":7,"55701":8,"55702":2,"55703":9,"55704":9,"55705":8,"55706":5,"55707":7,"55708":9,"55709":3,"55710":7,"55711":8,"55712":5,"55713":5,"55714":4,"55715":8,"55716":2,"55717":4,"55718":5,"55719":8,"55720":8,"55721":7,"55722":2,"55723":10,"55724":4,"55725":8,"55726":8,"55727":7,"55728":8,"55729":8,"55730":9,"55731":6,"55732":5,"55733":4,"55734":8,"55735":7,"55736":10,"55737":1,"55738":7,"55739":4,"55740":7,"55741":9,"55742":9,"55743":5,"55744":6,"55745":8,"55746":3,"55747":2,"55748":9,"55749":7,"55750":7,"55751":9,"55752":9,"55753":10,"55754":2,"55755":9,"55756":9,"55757":3,"55758":1,"55759":9,"55760":6,"55761":9,"55762":4,"55763":7,"55764":7,"55765":5,"55766":6,"55767":2,"55768":7,"55769":7,"55770":4,"55771":10,"55772":7,"55773":3,"55774":1,"55775":5,"55776":8,"55777":5,"55778":1,"55779":9,"55780":7,"55781":10,"55782":8,"55783":8,"55784":8,"55785":4,"55786":10,"55787":8,"55788":2,"55789":9,"55790":8,"55791":9,"55792":5,"55793":8,"55794":8,"55795":9,"55796":9,"55797":9,"55798":8,"55799":8,"55800":5,"55801":3,"55802":6,"55803":2,"55804":8,"55805":9,"55806":9,"55807":5,"55808":5,"55809":9,"55810":9,"55811":7,"55812":7,"55813":8,"55814":4,"55815":5,"55816":5,"55817":7,"55818":7,"55819":3,"55820":9,"55821":8,"55822":8,"55823":7,"55824":10,"55825":9,"55826":3,"55827":10,"55828":3,"55829":8,"55830":6,"55831":9,"55832":7,"55833":1,"55834":6,"55835":8,"55836":9,"55837":7,"55838":8,"55839":8,"55840":7,"55841":7,"55842":10,"55843":2,"55844":8,"55845":9,"55846":1,"55847":9,"55848":5,"55849":4,"55850":5,"55851":1,"55852":2,"55853":7,"55854":8,"55855":3,"55856":3,"55857":9,"55858":10,"55859":4,"55860":8,"55861":7,"55862":9,"55863":5,"55864":4,"55865":7,"55866":8,"55867":9,"55868":10,"55869":6,"55870":9,"55871":4,"55872":7,"55873":8,"55874":8,"55875":8,"55876":7,"55877":9,"55878":8,"55879":4,"55880":7,"55881":9,"55882":9,"55883":4,"55884":5,"55885":8,"55886":9,"55887":7,"55888":7,"55889":2,"55890":10,"55891":2,"55892":8,"55893":8,"55894":10,"55895":7,"55896":4,"55897":2,"55898":4,"55899":9,"55900":3,"55901":7,"55902":9,"55903":9,"55904":8,"55905":7,"55906":5,"55907":7,"55908":7,"55909":1,"55910":2,"55911":7,"55912":7,"55913":9,"55914":2,"55915":5,"55916":1,"55917":7,"55918":5,"55919":8,"55920":9,"55921":2,"55922":9,"55923":7,"55924":8,"55925":8,"55926":7,"55927":6,"55928":1,"55929":4,"55930":10,"55931":8,"55932":5,"55933":4,"55934":7,"55935":1,"55936":9,"55937":9,"55938":10,"55939":4,"55940":4,"55941":7,"55942":4,"55943":6,"55944":8,"55945":1,"55946":1,"55947":5,"55948":7,"55949":6,"55950":4,"55951":9,"55952":7,"55953":2,"55954":7,"55955":2,"55956":8,"55957":8,"55958":10,"55959":10,"55960":9,"55961":7,"55962":9,"55963":4,"55964":10,"55965":7,"55966":9,"55967":8,"55968":8,"55969":10,"55970":1,"55971":8,"55972":7,"55973":9,"55974":1,"55975":8,"55976":8,"55977":6,"55978":7,"55979":4,"55980":2,"55981":8,"55982":7,"55983":7,"55984":5,"55985":7,"55986":2,"55987":5,"55988":7,"55989":3,"55990":9,"55991":5,"55992":5,"55993":7,"55994":1,"55995":5,"55996":2,"55997":6,"55998":7,"55999":8,"56000":9,"56001":9,"56002":3,"56003":8,"56004":9,"56005":2,"56006":9,"56007":10,"56008":9,"56009":8,"56010":9,"56011":9,"56012":4,"56013":10,"56014":2,"56015":7,"56016":4,"56017":8,"56018":5,"56019":2,"56020":8,"56021":3,"56022":5,"56023":6,"56024":7,"56025":6,"56026":7,"56027":4,"56028":2,"56029":5,"56030":9,"56031":5,"56032":6,"56033":9,"56034":8,"56035":7,"56036":5,"56037":2,"56038":8,"56039":7,"56040":8,"56041":8,"56042":2,"56043":2,"56044":8,"56045":7,"56046":8,"56047":2,"56048":8,"56049":10,"56050":9,"56051":3,"56052":2,"56053":6,"56054":2,"56055":7,"56056":9,"56057":7,"56058":10,"56059":9,"56060":2,"56061":5,"56062":9,"56063":2,"56064":1,"56065":7,"56066":7,"56067":7,"56068":9,"56069":6,"56070":3,"56071":8,"56072":9,"56073":9,"56074":1,"56075":7,"56076":5,"56077":2,"56078":7,"56079":1,"56080":7,"56081":7,"56082":9,"56083":9,"56084":8,"56085":5,"56086":7,"56087":8,"56088":8,"56089":7,"56090":6,"56091":10,"56092":7,"56093":5,"56094":7,"56095":9,"56096":9,"56097":10,"56098":7,"56099":3,"56100":5,"56101":7,"56102":4,"56103":9,"56104":7,"56105":9,"56106":7,"56107":2,"56108":2,"56109":7,"56110":5,"56111":3,"56112":9,"56113":7,"56114":2,"56115":7,"56116":5,"56117":9,"56118":9,"56119":8,"56120":7,"56121":8,"56122":4,"56123":5,"56124":6,"56125":8,"56126":8,"56127":8,"56128":8,"56129":7,"56130":10,"56131":4,"56132":8,"56133":7,"56134":8,"56135":2,"56136":3,"56137":7,"56138":7,"56139":9,"56140":9,"56141":8,"56142":7,"56143":7,"56144":7,"56145":9,"56146":3,"56147":6,"56148":4,"56149":1,"56150":8,"56151":3,"56152":7,"56153":7,"56154":9,"56155":8,"56156":9,"56157":3,"56158":2,"56159":10,"56160":8,"56161":5,"56162":9,"56163":3,"56164":6,"56165":8,"56166":2,"56167":7,"56168":9,"56169":5,"56170":4,"56171":9,"56172":7,"56173":7,"56174":2,"56175":9,"56176":1,"56177":8,"56178":4,"56179":9,"56180":4,"56181":1,"56182":7,"56183":9,"56184":8,"56185":7,"56186":5,"56187":7,"56188":1,"56189":1,"56190":3,"56191":9,"56192":2,"56193":8,"56194":7,"56195":9,"56196":7,"56197":8,"56198":3,"56199":8,"56200":9,"56201":10,"56202":9,"56203":4,"56204":2,"56205":8,"56206":2,"56207":4,"56208":7,"56209":7,"56210":9,"56211":5,"56212":8,"56213":7,"56214":2,"56215":8,"56216":10,"56217":8,"56218":9,"56219":8,"56220":9,"56221":9,"56222":3,"56223":8,"56224":8,"56225":7,"56226":5,"56227":10,"56228":10,"56229":8,"56230":9,"56231":8,"56232":2,"56233":4,"56234":5,"56235":1,"56236":8,"56237":1,"56238":7,"56239":7,"56240":8,"56241":8,"56242":9,"56243":2,"56244":7,"56245":7,"56246":5,"56247":3,"56248":7,"56249":8,"56250":5,"56251":8,"56252":5,"56253":5,"56254":9,"56255":1,"56256":8,"56257":6,"56258":1,"56259":8,"56260":3,"56261":7,"56262":2,"56263":7,"56264":7,"56265":7,"56266":2,"56267":9,"56268":4,"56269":5,"56270":8,"56271":7,"56272":9,"56273":8,"56274":1,"56275":8,"56276":7,"56277":10,"56278":1,"56279":8,"56280":9,"56281":9,"56282":8,"56283":1,"56284":5,"56285":6,"56286":2,"56287":8,"56288":2,"56289":8,"56290":7,"56291":9,"56292":4,"56293":10,"56294":7,"56295":8,"56296":7,"56297":5,"56298":5,"56299":4,"56300":3,"56301":5,"56302":7,"56303":2,"56304":7,"56305":8,"56306":9,"56307":5,"56308":10,"56309":8,"56310":5,"56311":8,"56312":8,"56313":9,"56314":6,"56315":2,"56316":5,"56317":8,"56318":7,"56319":7,"56320":2,"56321":4,"56322":7,"56323":8,"56324":5,"56325":2,"56326":2,"56327":4,"56328":8,"56329":8,"56330":8,"56331":8,"56332":2,"56333":2,"56334":9,"56335":5,"56336":2,"56337":9,"56338":4,"56339":9,"56340":6,"56341":8,"56342":8,"56343":7,"56344":7,"56345":7,"56346":5,"56347":9,"56348":7,"56349":3,"56350":9,"56351":5,"56352":5,"56353":5,"56354":6,"56355":9,"56356":8,"56357":6,"56358":7,"56359":7,"56360":7,"56361":8,"56362":3,"56363":7,"56364":7,"56365":4,"56366":5,"56367":9,"56368":2,"56369":2,"56370":4,"56371":7,"56372":1,"56373":7,"56374":4,"56375":7,"56376":8,"56377":7,"56378":5,"56379":8,"56380":9,"56381":7,"56382":9,"56383":6,"56384":2,"56385":6,"56386":7,"56387":8,"56388":7,"56389":5,"56390":6,"56391":2,"56392":5,"56393":9,"56394":8,"56395":7,"56396":10,"56397":9,"56398":4,"56399":2,"56400":7,"56401":3,"56402":7,"56403":8,"56404":8,"56405":10,"56406":6,"56407":9,"56408":8,"56409":7,"56410":9,"56411":5,"56412":7,"56413":8,"56414":3,"56415":9,"56416":4,"56417":7,"56418":9,"56419":2,"56420":7,"56421":4,"56422":10,"56423":2,"56424":7,"56425":7,"56426":10,"56427":7,"56428":7,"56429":3,"56430":7,"56431":4,"56432":3,"56433":5,"56434":9,"56435":2,"56436":7,"56437":5,"56438":1,"56439":8,"56440":5,"56441":5,"56442":1,"56443":10,"56444":7,"56445":9,"56446":10,"56447":8,"56448":10,"56449":7,"56450":10,"56451":9,"56452":7,"56453":8,"56454":9,"56455":4,"56456":8,"56457":9,"56458":7,"56459":9,"56460":8,"56461":4,"56462":8,"56463":4,"56464":7,"56465":9,"56466":7,"56467":8,"56468":9,"56469":2,"56470":8,"56471":10,"56472":7,"56473":7,"56474":7,"56475":4,"56476":10,"56477":9,"56478":2,"56479":8,"56480":8,"56481":6,"56482":8,"56483":4,"56484":8,"56485":7,"56486":7,"56487":7,"56488":7,"56489":2,"56490":5,"56491":1,"56492":7,"56493":9,"56494":5,"56495":9,"56496":8,"56497":4,"56498":8,"56499":7,"56500":10,"56501":1,"56502":8,"56503":1,"56504":8,"56505":7,"56506":7,"56507":9,"56508":8,"56509":3,"56510":1,"56511":8,"56512":8,"56513":2,"56514":5,"56515":7,"56516":7,"56517":6,"56518":1,"56519":5,"56520":5,"56521":9,"56522":8,"56523":6,"56524":7,"56525":8,"56526":4,"56527":4,"56528":9,"56529":1,"56530":7,"56531":9,"56532":8,"56533":6,"56534":5,"56535":5,"56536":7,"56537":7,"56538":7,"56539":7,"56540":8,"56541":2,"56542":7,"56543":9,"56544":6,"56545":3,"56546":8,"56547":8,"56548":8,"56549":7,"56550":8,"56551":5,"56552":3,"56553":7,"56554":6,"56555":5,"56556":9,"56557":3,"56558":2,"56559":10,"56560":10,"56561":2,"56562":8,"56563":2,"56564":1,"56565":7,"56566":3,"56567":6,"56568":8,"56569":9,"56570":5,"56571":1,"56572":1,"56573":7,"56574":8,"56575":1,"56576":3,"56577":2,"56578":6,"56579":5,"56580":4,"56581":9,"56582":1,"56583":7,"56584":6,"56585":7,"56586":7,"56587":7,"56588":9,"56589":8,"56590":8,"56591":2,"56592":2,"56593":9,"56594":1,"56595":3,"56596":7,"56597":5,"56598":4,"56599":2,"56600":7,"56601":8,"56602":5,"56603":7,"56604":7,"56605":5,"56606":7,"56607":9,"56608":5,"56609":7,"56610":9,"56611":8,"56612":9,"56613":5,"56614":6,"56615":8,"56616":8,"56617":9,"56618":9,"56619":1,"56620":10,"56621":10,"56622":10,"56623":9,"56624":8,"56625":7,"56626":7,"56627":8,"56628":7,"56629":8,"56630":10,"56631":1,"56632":7,"56633":10,"56634":10,"56635":5,"56636":9,"56637":7,"56638":3,"56639":7,"56640":7,"56641":9,"56642":9,"56643":4,"56644":9,"56645":4,"56646":6,"56647":4,"56648":4,"56649":4,"56650":7,"56651":3,"56652":7,"56653":5,"56654":1,"56655":3,"56656":8,"56657":1,"56658":6,"56659":9,"56660":7,"56661":9,"56662":5,"56663":7,"56664":7,"56665":7,"56666":7,"56667":4,"56668":4,"56669":9,"56670":8,"56671":4,"56672":1,"56673":8,"56674":9,"56675":8,"56676":8,"56677":5,"56678":9,"56679":5,"56680":7,"56681":7,"56682":8,"56683":2,"56684":7,"56685":3,"56686":7,"56687":5,"56688":5,"56689":2,"56690":8,"56691":7,"56692":8,"56693":6,"56694":7,"56695":8,"56696":2,"56697":9,"56698":3,"56699":2,"56700":9,"56701":7,"56702":1,"56703":8,"56704":7,"56705":9,"56706":8,"56707":8,"56708":9,"56709":4,"56710":7,"56711":7,"56712":2,"56713":2,"56714":8,"56715":5,"56716":7,"56717":7,"56718":7,"56719":8,"56720":7,"56721":1,"56722":1,"56723":7,"56724":7,"56725":8,"56726":6,"56727":7,"56728":2,"56729":7,"56730":8,"56731":8,"56732":7,"56733":8,"56734":9,"56735":2,"56736":7,"56737":8,"56738":7,"56739":2,"56740":7,"56741":1,"56742":4,"56743":7,"56744":10,"56745":8,"56746":3,"56747":8,"56748":5,"56749":8,"56750":3,"56751":6,"56752":8,"56753":5,"56754":8,"56755":8,"56756":7,"56757":2,"56758":7,"56759":10,"56760":7,"56761":3,"56762":7,"56763":10,"56764":1,"56765":3,"56766":9,"56767":7,"56768":4,"56769":7,"56770":10,"56771":2,"56772":9,"56773":9,"56774":8,"56775":7,"56776":2,"56777":3,"56778":7,"56779":6,"56780":5,"56781":7,"56782":7,"56783":6,"56784":2,"56785":8,"56786":4,"56787":8,"56788":7,"56789":1,"56790":7,"56791":8,"56792":7,"56793":8,"56794":3,"56795":9,"56796":2,"56797":9,"56798":7,"56799":3,"56800":3,"56801":9,"56802":5,"56803":4,"56804":10,"56805":3,"56806":8,"56807":9,"56808":8,"56809":4,"56810":8,"56811":8,"56812":4,"56813":10,"56814":5,"56815":8,"56816":7,"56817":3,"56818":1,"56819":2,"56820":7,"56821":5,"56822":2,"56823":8,"56824":8,"56825":2,"56826":8,"56827":1,"56828":8,"56829":7,"56830":9,"56831":8,"56832":8,"56833":6,"56834":9,"56835":5,"56836":5,"56837":7,"56838":6,"56839":7,"56840":9,"56841":2,"56842":5,"56843":8,"56844":8,"56845":8,"56846":9,"56847":2,"56848":2,"56849":7,"56850":8,"56851":7,"56852":6,"56853":8,"56854":6,"56855":5,"56856":8,"56857":10,"56858":3,"56859":9,"56860":4,"56861":5,"56862":6,"56863":7,"56864":3,"56865":9,"56866":7,"56867":7,"56868":5,"56869":8,"56870":9,"56871":7,"56872":2,"56873":9,"56874":5,"56875":10,"56876":2,"56877":7,"56878":2,"56879":7,"56880":1,"56881":4,"56882":7,"56883":9,"56884":4,"56885":4,"56886":7,"56887":2,"56888":9,"56889":5,"56890":3,"56891":7,"56892":9,"56893":1,"56894":4,"56895":7,"56896":8,"56897":5,"56898":2,"56899":9,"56900":9,"56901":8,"56902":7,"56903":8,"56904":2,"56905":10,"56906":6,"56907":7,"56908":8,"56909":9,"56910":9,"56911":7,"56912":9,"56913":8,"56914":8,"56915":6,"56916":7,"56917":2,"56918":6,"56919":7,"56920":7,"56921":8,"56922":4,"56923":7,"56924":8,"56925":8,"56926":6,"56927":8,"56928":9,"56929":2,"56930":10,"56931":9,"56932":1,"56933":2,"56934":2,"56935":9,"56936":9,"56937":8,"56938":9,"56939":9,"56940":10,"56941":5,"56942":8,"56943":5,"56944":8,"56945":8,"56946":7,"56947":8,"56948":8,"56949":8,"56950":5,"56951":6,"56952":9,"56953":9,"56954":5,"56955":10,"56956":5,"56957":10,"56958":9,"56959":2,"56960":8,"56961":1,"56962":3,"56963":9,"56964":5,"56965":7,"56966":6,"56967":5,"56968":9,"56969":1,"56970":9,"56971":8,"56972":2,"56973":6,"56974":8,"56975":3,"56976":8,"56977":5,"56978":7,"56979":9,"56980":1,"56981":6,"56982":7,"56983":8,"56984":3,"56985":9,"56986":5,"56987":5,"56988":5,"56989":2,"56990":5,"56991":7,"56992":7,"56993":2,"56994":7,"56995":2,"56996":8,"56997":1,"56998":7,"56999":7,"57000":8,"57001":8,"57002":5,"57003":8,"57004":6,"57005":8,"57006":9,"57007":8,"57008":9,"57009":7,"57010":4,"57011":9,"57012":5,"57013":7,"57014":9,"57015":7,"57016":5,"57017":6,"57018":6,"57019":7,"57020":9,"57021":3,"57022":3,"57023":2,"57024":8,"57025":6,"57026":9,"57027":5,"57028":7,"57029":8,"57030":8,"57031":3,"57032":6,"57033":1,"57034":7,"57035":8,"57036":10,"57037":1,"57038":9,"57039":9,"57040":5,"57041":9,"57042":8,"57043":3,"57044":8,"57045":1,"57046":2,"57047":9,"57048":8,"57049":5,"57050":1,"57051":6,"57052":8,"57053":8,"57054":2,"57055":8,"57056":5,"57057":3,"57058":4,"57059":8,"57060":7,"57061":7,"57062":9,"57063":2,"57064":8,"57065":3,"57066":8,"57067":5,"57068":8,"57069":7,"57070":5,"57071":8,"57072":3,"57073":5,"57074":9,"57075":10,"57076":9,"57077":7,"57078":6,"57079":1,"57080":7,"57081":5,"57082":8,"57083":8,"57084":7,"57085":2,"57086":9,"57087":7,"57088":7,"57089":5,"57090":7,"57091":8,"57092":8,"57093":8,"57094":7,"57095":7,"57096":4,"57097":7,"57098":2,"57099":5,"57100":7,"57101":7,"57102":6,"57103":4,"57104":7,"57105":9,"57106":8,"57107":5,"57108":9,"57109":2,"57110":3,"57111":2,"57112":10,"57113":1,"57114":7,"57115":8,"57116":1,"57117":4,"57118":8,"57119":9,"57120":6,"57121":10,"57122":8,"57123":8,"57124":4,"57125":2,"57126":2,"57127":9,"57128":3,"57129":7,"57130":6,"57131":10,"57132":7,"57133":8,"57134":6,"57135":4,"57136":2,"57137":7,"57138":2,"57139":8,"57140":8,"57141":6,"57142":7,"57143":9,"57144":9,"57145":9,"57146":9,"57147":7,"57148":2,"57149":10,"57150":8,"57151":5,"57152":10,"57153":6,"57154":3,"57155":10,"57156":4,"57157":7,"57158":7,"57159":8,"57160":9,"57161":9,"57162":8,"57163":8,"57164":9,"57165":5,"57166":7,"57167":3,"57168":1,"57169":10,"57170":6,"57171":8,"57172":8,"57173":7,"57174":4,"57175":10,"57176":8,"57177":9,"57178":8,"57179":8,"57180":8,"57181":9,"57182":5,"57183":9,"57184":8,"57185":5,"57186":10,"57187":7,"57188":5,"57189":8,"57190":3,"57191":9,"57192":9,"57193":7,"57194":2,"57195":7,"57196":7,"57197":8,"57198":5,"57199":3,"57200":5,"57201":7,"57202":5,"57203":6,"57204":4,"57205":2,"57206":8,"57207":7,"57208":3,"57209":4,"57210":8,"57211":8,"57212":7,"57213":7,"57214":9,"57215":7,"57216":2,"57217":4,"57218":7,"57219":7,"57220":2,"57221":8,"57222":9,"57223":6,"57224":4,"57225":6,"57226":3,"57227":7,"57228":8,"57229":4,"57230":6,"57231":7,"57232":5,"57233":6,"57234":9,"57235":8,"57236":9,"57237":2,"57238":8,"57239":10,"57240":7,"57241":8,"57242":7,"57243":8,"57244":8,"57245":9,"57246":8,"57247":8,"57248":2,"57249":5,"57250":8,"57251":8,"57252":5,"57253":7,"57254":9,"57255":8,"57256":8,"57257":8,"57258":8,"57259":3,"57260":8,"57261":3,"57262":10,"57263":4,"57264":7,"57265":8,"57266":5,"57267":7,"57268":8,"57269":9,"57270":2,"57271":7,"57272":6,"57273":5,"57274":7,"57275":7,"57276":1,"57277":9,"57278":3,"57279":2,"57280":8,"57281":5,"57282":9,"57283":8,"57284":6,"57285":10,"57286":3,"57287":9,"57288":4,"57289":8,"57290":4,"57291":4,"57292":7,"57293":8,"57294":6,"57295":2,"57296":6,"57297":3,"57298":9,"57299":4,"57300":1,"57301":9,"57302":5,"57303":3,"57304":10,"57305":5,"57306":5,"57307":9,"57308":8,"57309":3,"57310":8,"57311":3,"57312":1,"57313":3,"57314":7,"57315":4,"57316":5,"57317":10,"57318":9,"57319":2,"57320":2,"57321":3,"57322":4,"57323":7,"57324":4,"57325":5,"57326":2,"57327":4,"57328":2,"57329":9,"57330":3,"57331":7,"57332":6,"57333":5,"57334":2,"57335":4,"57336":7,"57337":4,"57338":2,"57339":9,"57340":9,"57341":4,"57342":9,"57343":2,"57344":7,"57345":5,"57346":7,"57347":8,"57348":7,"57349":7,"57350":8,"57351":2,"57352":3,"57353":7,"57354":3,"57355":5,"57356":7,"57357":5,"57358":9,"57359":9,"57360":8,"57361":1,"57362":7,"57363":1,"57364":7,"57365":4,"57366":7,"57367":9,"57368":6,"57369":2,"57370":7,"57371":9,"57372":7,"57373":9,"57374":7,"57375":7,"57376":2,"57377":7,"57378":2,"57379":10,"57380":10,"57381":8,"57382":9,"57383":10,"57384":6,"57385":9,"57386":7,"57387":10,"57388":10,"57389":5,"57390":1,"57391":5,"57392":4,"57393":8,"57394":8,"57395":2,"57396":7,"57397":7,"57398":8,"57399":9,"57400":7,"57401":3,"57402":8,"57403":3,"57404":10,"57405":9,"57406":10,"57407":7,"57408":7,"57409":8,"57410":1,"57411":1,"57412":2,"57413":9,"57414":3,"57415":4,"57416":2,"57417":10,"57418":9,"57419":8,"57420":9,"57421":9,"57422":9,"57423":8,"57424":9,"57425":8,"57426":6,"57427":8,"57428":8,"57429":9,"57430":2,"57431":7,"57432":10,"57433":5,"57434":9,"57435":7,"57436":5,"57437":7,"57438":7,"57439":7,"57440":1,"57441":9,"57442":7,"57443":8,"57444":9,"57445":7,"57446":5,"57447":8,"57448":9,"57449":7,"57450":4,"57451":8,"57452":8,"57453":8,"57454":7,"57455":2,"57456":8,"57457":7,"57458":8,"57459":4,"57460":7,"57461":2,"57462":3,"57463":9,"57464":2,"57465":8,"57466":10,"57467":9,"57468":9,"57469":2,"57470":2,"57471":9,"57472":9,"57473":8,"57474":2,"57475":5,"57476":7,"57477":5,"57478":4,"57479":2,"57480":7,"57481":2,"57482":6,"57483":5,"57484":9,"57485":8,"57486":8,"57487":8,"57488":5,"57489":7,"57490":4,"57491":2,"57492":2,"57493":8,"57494":8,"57495":2,"57496":5,"57497":9,"57498":2,"57499":8,"57500":9,"57501":2,"57502":7,"57503":9,"57504":9,"57505":8,"57506":4,"57507":7,"57508":6,"57509":5,"57510":10,"57511":2,"57512":8,"57513":6,"57514":7,"57515":5,"57516":8,"57517":8,"57518":8,"57519":9,"57520":8,"57521":6,"57522":7,"57523":7,"57524":7,"57525":9,"57526":9,"57527":2,"57528":3,"57529":7,"57530":7,"57531":8,"57532":7,"57533":8,"57534":8,"57535":4,"57536":7,"57537":5,"57538":7,"57539":4,"57540":9,"57541":10,"57542":9,"57543":8,"57544":3,"57545":8,"57546":7,"57547":6,"57548":9,"57549":7,"57550":9,"57551":7,"57552":2,"57553":1,"57554":7,"57555":2,"57556":8,"57557":7,"57558":4,"57559":8,"57560":8,"57561":5,"57562":8,"57563":2,"57564":7,"57565":2,"57566":1,"57567":7,"57568":4,"57569":5,"57570":9,"57571":2,"57572":10,"57573":5,"57574":10,"57575":3,"57576":7,"57577":8,"57578":8,"57579":6,"57580":5,"57581":8,"57582":7,"57583":8,"57584":3,"57585":5,"57586":6,"57587":9,"57588":7,"57589":7,"57590":3,"57591":9,"57592":2,"57593":7,"57594":1,"57595":1,"57596":9,"57597":7,"57598":7,"57599":7,"57600":4,"57601":3,"57602":7,"57603":7,"57604":10,"57605":9,"57606":9,"57607":8,"57608":7,"57609":7,"57610":8,"57611":8,"57612":6,"57613":7,"57614":7,"57615":8,"57616":6,"57617":7,"57618":4,"57619":8,"57620":9,"57621":9,"57622":8,"57623":7,"57624":7,"57625":8,"57626":9,"57627":1,"57628":9,"57629":7,"57630":1,"57631":3,"57632":6,"57633":1,"57634":7,"57635":8,"57636":1,"57637":9,"57638":8,"57639":8,"57640":7,"57641":8,"57642":4,"57643":8,"57644":9,"57645":3,"57646":10,"57647":4,"57648":1,"57649":2,"57650":2,"57651":9,"57652":8,"57653":8,"57654":2,"57655":9,"57656":8,"57657":1,"57658":7,"57659":8,"57660":9,"57661":8,"57662":9,"57663":9,"57664":6,"57665":3,"57666":10,"57667":7,"57668":9,"57669":5,"57670":4,"57671":2,"57672":4,"57673":7,"57674":7,"57675":9,"57676":5,"57677":2,"57678":8,"57679":2,"57680":5,"57681":6,"57682":7,"57683":3,"57684":8,"57685":8,"57686":7,"57687":10,"57688":8,"57689":6,"57690":6,"57691":6,"57692":8,"57693":10,"57694":2,"57695":9,"57696":9,"57697":7,"57698":9,"57699":2,"57700":5,"57701":5,"57702":8,"57703":3,"57704":7,"57705":1,"57706":8,"57707":9,"57708":10,"57709":8,"57710":8,"57711":7,"57712":8,"57713":3,"57714":7,"57715":3,"57716":7,"57717":8,"57718":7,"57719":3,"57720":4,"57721":8,"57722":7,"57723":9,"57724":1,"57725":8,"57726":4,"57727":8,"57728":3,"57729":8,"57730":8,"57731":5,"57732":2,"57733":6,"57734":5,"57735":2,"57736":2,"57737":10,"57738":5,"57739":3,"57740":2,"57741":9,"57742":2,"57743":6,"57744":2,"57745":5,"57746":7,"57747":10,"57748":1,"57749":3,"57750":9,"57751":8,"57752":7,"57753":2,"57754":8,"57755":9,"57756":5,"57757":7,"57758":7,"57759":9,"57760":1,"57761":8,"57762":6,"57763":8,"57764":4,"57765":2,"57766":7,"57767":8,"57768":5,"57769":5,"57770":4,"57771":5,"57772":7,"57773":8,"57774":7,"57775":7,"57776":8,"57777":2,"57778":9,"57779":8,"57780":7,"57781":5,"57782":9,"57783":2,"57784":5,"57785":8,"57786":8,"57787":10,"57788":5,"57789":9,"57790":6,"57791":7,"57792":7,"57793":8,"57794":9,"57795":2,"57796":6,"57797":9,"57798":7,"57799":9,"57800":7,"57801":10,"57802":7,"57803":7,"57804":2,"57805":5,"57806":8,"57807":8,"57808":9,"57809":9,"57810":7,"57811":9,"57812":7,"57813":7,"57814":1,"57815":7,"57816":2,"57817":7,"57818":8,"57819":1,"57820":8,"57821":7,"57822":6,"57823":9,"57824":9,"57825":1,"57826":6,"57827":8,"57828":9,"57829":8,"57830":10,"57831":2,"57832":7,"57833":8,"57834":2,"57835":7,"57836":5,"57837":8,"57838":9,"57839":7,"57840":5,"57841":2,"57842":7,"57843":2,"57844":4,"57845":8,"57846":9,"57847":6,"57848":5,"57849":9,"57850":8,"57851":8,"57852":9,"57853":4,"57854":3,"57855":8,"57856":9,"57857":9,"57858":3,"57859":3,"57860":7,"57861":3,"57862":7,"57863":7,"57864":7,"57865":9,"57866":6,"57867":7,"57868":6,"57869":9,"57870":8,"57871":3,"57872":2,"57873":8,"57874":7,"57875":9,"57876":8,"57877":5,"57878":3,"57879":10,"57880":5,"57881":8,"57882":2,"57883":3,"57884":10,"57885":4,"57886":7,"57887":1,"57888":8,"57889":9,"57890":9,"57891":8,"57892":4,"57893":6,"57894":5,"57895":8,"57896":9,"57897":2,"57898":3,"57899":2,"57900":2,"57901":10,"57902":7,"57903":8,"57904":7,"57905":7,"57906":7,"57907":7,"57908":4,"57909":7,"57910":10,"57911":8,"57912":7,"57913":7,"57914":10,"57915":4,"57916":7,"57917":7,"57918":9,"57919":7,"57920":6,"57921":9,"57922":7,"57923":8,"57924":7,"57925":3,"57926":5,"57927":8,"57928":4,"57929":4,"57930":8,"57931":9,"57932":10,"57933":7,"57934":8,"57935":5,"57936":9,"57937":2,"57938":9,"57939":8,"57940":9,"57941":2,"57942":7,"57943":3,"57944":8,"57945":7,"57946":7,"57947":9,"57948":2,"57949":8,"57950":9,"57951":8,"57952":8,"57953":7,"57954":8,"57955":7,"57956":8,"57957":8,"57958":4,"57959":9,"57960":1,"57961":2,"57962":5,"57963":5,"57964":3,"57965":5,"57966":2,"57967":9,"57968":2,"57969":3,"57970":1,"57971":5,"57972":7,"57973":9,"57974":8,"57975":7,"57976":8,"57977":2,"57978":7,"57979":5,"57980":8,"57981":9,"57982":8,"57983":7,"57984":10,"57985":4,"57986":8,"57987":5,"57988":6,"57989":2,"57990":8,"57991":8,"57992":4,"57993":2,"57994":7,"57995":4,"57996":9,"57997":6,"57998":7,"57999":10,"58000":9,"58001":1,"58002":5,"58003":7,"58004":7,"58005":5,"58006":8,"58007":7,"58008":9,"58009":10,"58010":2,"58011":8,"58012":3,"58013":6,"58014":10,"58015":6,"58016":8,"58017":4,"58018":5,"58019":7,"58020":9,"58021":10,"58022":7,"58023":8,"58024":8,"58025":10,"58026":4,"58027":9,"58028":6,"58029":3,"58030":8,"58031":10,"58032":8,"58033":8,"58034":8,"58035":9,"58036":2,"58037":8,"58038":8,"58039":6,"58040":2,"58041":2,"58042":7,"58043":4,"58044":4,"58045":4,"58046":1,"58047":5,"58048":1,"58049":7,"58050":6,"58051":8,"58052":9,"58053":10,"58054":8,"58055":1,"58056":5,"58057":4,"58058":2,"58059":2,"58060":7,"58061":5,"58062":9,"58063":1,"58064":7,"58065":7,"58066":6,"58067":7,"58068":2,"58069":5,"58070":7,"58071":8,"58072":6,"58073":1,"58074":9,"58075":2,"58076":6,"58077":10,"58078":8,"58079":2,"58080":7,"58081":9,"58082":9,"58083":9,"58084":8,"58085":8,"58086":7,"58087":5,"58088":6,"58089":8,"58090":10,"58091":9,"58092":2,"58093":7,"58094":1,"58095":2,"58096":7,"58097":9,"58098":1,"58099":9,"58100":5,"58101":7,"58102":3,"58103":7,"58104":7,"58105":4,"58106":5,"58107":7,"58108":6,"58109":5,"58110":1,"58111":9,"58112":7,"58113":3,"58114":3,"58115":8,"58116":8,"58117":8,"58118":10,"58119":3,"58120":9,"58121":2,"58122":5,"58123":7,"58124":7,"58125":8,"58126":7,"58127":6,"58128":6,"58129":4,"58130":9,"58131":7,"58132":10,"58133":8,"58134":1,"58135":5,"58136":4,"58137":7,"58138":3,"58139":8,"58140":2,"58141":8,"58142":1,"58143":9,"58144":9,"58145":6,"58146":8,"58147":8,"58148":8,"58149":8,"58150":3,"58151":9,"58152":8,"58153":10,"58154":2,"58155":7,"58156":7,"58157":9,"58158":5,"58159":5,"58160":9,"58161":2,"58162":1,"58163":7,"58164":9,"58165":8,"58166":8,"58167":7,"58168":2,"58169":10,"58170":7,"58171":4,"58172":7,"58173":2,"58174":1,"58175":5,"58176":5,"58177":8,"58178":8,"58179":5,"58180":10,"58181":7,"58182":4,"58183":5,"58184":2,"58185":2,"58186":4,"58187":1,"58188":6,"58189":9,"58190":4,"58191":1,"58192":7,"58193":2,"58194":8,"58195":9,"58196":7,"58197":7,"58198":8,"58199":9,"58200":1,"58201":4,"58202":4,"58203":7,"58204":7,"58205":2,"58206":9,"58207":3,"58208":7,"58209":9,"58210":8,"58211":1,"58212":9,"58213":6,"58214":6,"58215":8,"58216":8,"58217":8,"58218":8,"58219":7,"58220":7,"58221":8,"58222":8,"58223":7,"58224":7,"58225":9,"58226":3,"58227":10,"58228":8,"58229":7,"58230":10,"58231":10,"58232":9,"58233":8,"58234":3,"58235":8,"58236":7,"58237":8,"58238":2,"58239":9,"58240":8,"58241":7,"58242":9,"58243":7,"58244":9,"58245":9,"58246":2,"58247":7,"58248":7,"58249":8,"58250":9,"58251":2,"58252":10,"58253":7,"58254":6,"58255":9,"58256":7,"58257":7,"58258":7,"58259":8,"58260":7,"58261":9,"58262":7,"58263":7,"58264":7,"58265":8,"58266":3,"58267":5,"58268":8,"58269":1,"58270":7,"58271":1,"58272":1,"58273":7,"58274":8,"58275":2,"58276":1,"58277":7,"58278":4,"58279":8,"58280":8,"58281":9,"58282":9,"58283":6,"58284":7,"58285":9,"58286":7,"58287":9,"58288":1,"58289":2,"58290":7,"58291":7,"58292":5,"58293":8,"58294":2,"58295":3,"58296":5,"58297":2,"58298":5,"58299":8,"58300":8,"58301":7,"58302":7,"58303":8,"58304":9,"58305":7,"58306":8,"58307":6,"58308":2,"58309":7,"58310":10,"58311":2,"58312":6,"58313":8,"58314":8,"58315":6,"58316":9,"58317":8,"58318":1,"58319":9,"58320":8,"58321":8,"58322":1,"58323":7,"58324":3,"58325":8,"58326":4,"58327":8,"58328":4,"58329":2,"58330":7,"58331":7,"58332":7,"58333":7,"58334":9,"58335":3,"58336":1,"58337":5,"58338":4,"58339":5,"58340":2,"58341":8,"58342":3,"58343":6,"58344":9,"58345":2,"58346":7,"58347":3,"58348":8,"58349":7,"58350":4,"58351":2,"58352":5,"58353":5,"58354":8,"58355":2,"58356":10,"58357":5,"58358":7,"58359":8,"58360":7,"58361":5,"58362":7,"58363":7,"58364":9,"58365":2,"58366":8,"58367":2,"58368":7,"58369":1,"58370":7,"58371":9,"58372":3,"58373":8,"58374":4,"58375":8,"58376":8,"58377":5,"58378":9,"58379":9,"58380":8,"58381":5,"58382":9,"58383":8,"58384":5,"58385":8,"58386":8,"58387":7,"58388":7,"58389":2,"58390":6,"58391":5,"58392":1,"58393":2,"58394":2,"58395":5,"58396":2,"58397":8,"58398":9,"58399":5,"58400":6,"58401":9,"58402":2,"58403":7,"58404":5,"58405":4,"58406":8,"58407":3,"58408":8,"58409":9,"58410":3,"58411":8,"58412":8,"58413":7,"58414":8,"58415":9,"58416":9,"58417":7,"58418":6,"58419":1,"58420":8,"58421":9,"58422":5,"58423":7,"58424":8,"58425":8,"58426":8,"58427":2,"58428":4,"58429":7,"58430":10,"58431":2,"58432":8,"58433":4,"58434":8,"58435":8,"58436":7,"58437":2,"58438":7,"58439":7,"58440":2,"58441":4,"58442":7,"58443":8,"58444":9,"58445":9,"58446":6,"58447":9,"58448":2,"58449":8,"58450":2,"58451":10,"58452":2,"58453":8,"58454":8,"58455":1,"58456":1,"58457":9,"58458":8,"58459":8,"58460":3,"58461":10,"58462":8,"58463":1,"58464":8,"58465":8,"58466":9,"58467":8,"58468":4,"58469":5,"58470":7,"58471":3,"58472":7,"58473":9,"58474":8,"58475":9,"58476":2,"58477":8,"58478":1,"58479":7,"58480":6,"58481":9,"58482":7,"58483":7,"58484":7,"58485":9,"58486":10,"58487":10,"58488":9,"58489":6,"58490":5,"58491":8,"58492":9,"58493":2,"58494":10,"58495":3,"58496":9,"58497":2,"58498":9,"58499":4,"58500":8,"58501":8,"58502":9,"58503":5,"58504":6,"58505":2,"58506":6,"58507":5,"58508":5,"58509":7,"58510":1,"58511":5,"58512":5,"58513":6,"58514":9,"58515":7,"58516":4,"58517":9,"58518":7,"58519":9,"58520":4,"58521":8,"58522":2,"58523":8,"58524":7,"58525":4,"58526":1,"58527":1,"58528":5,"58529":4,"58530":8,"58531":8,"58532":8,"58533":9,"58534":4,"58535":7,"58536":8,"58537":7,"58538":7,"58539":8,"58540":9,"58541":9,"58542":4,"58543":7,"58544":5,"58545":3,"58546":3,"58547":3,"58548":5,"58549":5,"58550":8,"58551":7,"58552":7,"58553":3,"58554":7,"58555":8,"58556":7,"58557":9,"58558":2,"58559":9,"58560":8,"58561":9,"58562":9,"58563":7,"58564":9,"58565":2,"58566":7,"58567":7,"58568":1,"58569":10,"58570":4,"58571":9,"58572":3,"58573":9,"58574":9,"58575":7,"58576":6,"58577":9,"58578":10,"58579":9,"58580":8,"58581":6,"58582":6,"58583":9,"58584":9,"58585":9,"58586":4,"58587":7,"58588":8,"58589":2,"58590":7,"58591":8,"58592":8,"58593":9,"58594":3,"58595":1,"58596":8,"58597":3,"58598":8,"58599":1,"58600":9,"58601":5,"58602":5,"58603":7,"58604":7,"58605":1,"58606":7,"58607":3,"58608":6,"58609":9,"58610":5,"58611":9,"58612":9,"58613":4,"58614":7,"58615":1,"58616":7,"58617":8,"58618":7,"58619":8,"58620":9,"58621":9,"58622":7,"58623":4,"58624":8,"58625":2,"58626":7,"58627":2,"58628":9,"58629":2,"58630":9,"58631":10,"58632":8,"58633":1,"58634":8,"58635":6,"58636":2,"58637":7,"58638":4,"58639":9,"58640":7,"58641":2,"58642":2,"58643":4,"58644":5,"58645":2,"58646":5,"58647":9,"58648":7,"58649":10,"58650":7,"58651":7,"58652":7,"58653":8,"58654":9,"58655":5,"58656":7,"58657":3,"58658":9,"58659":4,"58660":9,"58661":2,"58662":1,"58663":2,"58664":4,"58665":4,"58666":7,"58667":7,"58668":7,"58669":9,"58670":5,"58671":1,"58672":3,"58673":7,"58674":6,"58675":1,"58676":7,"58677":1,"58678":8,"58679":9,"58680":1,"58681":2,"58682":3,"58683":8,"58684":10,"58685":6,"58686":2,"58687":2,"58688":2,"58689":3,"58690":2,"58691":7,"58692":6,"58693":6,"58694":1,"58695":9,"58696":4,"58697":9,"58698":5,"58699":6,"58700":10,"58701":1,"58702":8,"58703":8,"58704":3,"58705":5,"58706":5,"58707":9,"58708":5,"58709":9,"58710":5,"58711":8,"58712":5,"58713":6,"58714":7,"58715":2,"58716":9,"58717":9,"58718":9,"58719":9,"58720":7,"58721":7,"58722":1,"58723":3,"58724":3,"58725":7,"58726":5,"58727":8,"58728":7,"58729":6,"58730":4,"58731":10,"58732":8,"58733":7,"58734":8,"58735":5,"58736":7,"58737":8,"58738":9,"58739":3,"58740":7,"58741":9,"58742":5,"58743":8,"58744":7,"58745":3,"58746":2,"58747":7,"58748":8,"58749":2,"58750":2,"58751":8,"58752":9,"58753":4,"58754":8,"58755":1,"58756":6,"58757":8,"58758":10,"58759":9,"58760":9,"58761":8,"58762":8,"58763":3,"58764":8,"58765":2,"58766":8,"58767":8,"58768":8,"58769":3,"58770":5,"58771":9,"58772":10,"58773":2,"58774":2,"58775":10,"58776":4,"58777":5,"58778":2,"58779":6,"58780":6,"58781":3,"58782":9,"58783":8,"58784":8,"58785":8,"58786":8,"58787":5,"58788":2,"58789":2,"58790":5,"58791":9,"58792":8,"58793":10,"58794":7,"58795":6,"58796":10,"58797":7,"58798":5,"58799":9,"58800":5,"58801":9,"58802":7,"58803":1,"58804":2,"58805":10,"58806":2,"58807":4,"58808":8,"58809":8,"58810":5,"58811":5,"58812":5,"58813":8,"58814":9,"58815":7,"58816":7,"58817":7,"58818":8,"58819":8,"58820":5,"58821":1,"58822":2,"58823":5,"58824":5,"58825":7,"58826":4,"58827":3,"58828":7,"58829":5,"58830":9,"58831":1,"58832":2,"58833":7,"58834":8,"58835":5,"58836":8,"58837":10,"58838":2,"58839":8,"58840":7,"58841":8,"58842":7,"58843":6,"58844":5,"58845":8,"58846":5,"58847":9,"58848":7,"58849":9,"58850":7,"58851":5,"58852":9,"58853":5,"58854":5,"58855":2,"58856":7,"58857":8,"58858":8,"58859":2,"58860":3,"58861":1,"58862":10,"58863":4,"58864":7,"58865":9,"58866":1,"58867":4,"58868":7,"58869":5,"58870":9,"58871":9,"58872":9,"58873":9,"58874":5,"58875":1,"58876":7,"58877":4,"58878":1,"58879":8,"58880":7,"58881":5,"58882":5,"58883":8,"58884":3,"58885":7,"58886":8,"58887":8,"58888":2,"58889":9,"58890":2,"58891":8,"58892":3,"58893":7,"58894":8,"58895":5,"58896":7,"58897":9,"58898":2,"58899":1,"58900":5,"58901":3,"58902":2,"58903":1,"58904":6,"58905":8,"58906":8,"58907":9,"58908":2,"58909":7,"58910":7,"58911":4,"58912":8,"58913":6,"58914":8,"58915":9,"58916":8,"58917":7,"58918":2,"58919":7,"58920":9,"58921":10,"58922":9,"58923":8,"58924":5,"58925":1,"58926":8,"58927":8,"58928":5,"58929":8,"58930":8,"58931":7,"58932":7,"58933":3,"58934":1,"58935":7,"58936":3,"58937":9,"58938":5,"58939":8,"58940":9,"58941":3,"58942":4,"58943":5,"58944":4,"58945":8,"58946":7,"58947":8,"58948":4,"58949":9,"58950":7,"58951":2,"58952":9,"58953":9,"58954":2,"58955":10,"58956":8,"58957":7,"58958":7,"58959":8,"58960":7,"58961":8,"58962":7,"58963":4,"58964":9,"58965":9,"58966":5,"58967":8,"58968":8,"58969":7,"58970":3,"58971":7,"58972":3,"58973":8,"58974":7,"58975":8,"58976":7,"58977":8,"58978":3,"58979":6,"58980":8,"58981":7,"58982":2,"58983":1,"58984":5,"58985":1,"58986":1,"58987":5,"58988":7,"58989":2,"58990":7,"58991":2,"58992":6,"58993":3,"58994":7,"58995":4,"58996":4,"58997":5,"58998":9,"58999":7,"59000":5,"59001":10,"59002":7,"59003":8,"59004":3,"59005":9,"59006":8,"59007":5,"59008":5,"59009":9,"59010":6,"59011":8,"59012":2,"59013":10,"59014":7,"59015":9,"59016":5,"59017":2,"59018":2,"59019":4,"59020":8,"59021":9,"59022":5,"59023":8,"59024":10,"59025":2,"59026":1,"59027":9,"59028":10,"59029":6,"59030":9,"59031":7,"59032":9,"59033":7,"59034":3,"59035":7,"59036":8,"59037":2,"59038":3,"59039":6,"59040":9,"59041":7,"59042":8,"59043":7,"59044":7,"59045":3,"59046":9,"59047":6,"59048":4,"59049":2,"59050":10,"59051":4,"59052":8,"59053":8,"59054":7,"59055":8,"59056":6,"59057":9,"59058":8,"59059":7,"59060":9,"59061":9,"59062":7,"59063":9,"59064":9,"59065":8,"59066":8,"59067":1,"59068":8,"59069":2,"59070":7,"59071":8,"59072":9,"59073":8,"59074":4,"59075":8,"59076":8,"59077":2,"59078":8,"59079":8,"59080":7,"59081":1,"59082":7,"59083":2,"59084":10,"59085":7,"59086":7,"59087":4,"59088":9,"59089":2,"59090":7,"59091":9,"59092":8,"59093":1,"59094":10,"59095":10,"59096":2,"59097":9,"59098":6,"59099":9,"59100":6,"59101":2,"59102":7,"59103":1,"59104":9,"59105":2,"59106":8,"59107":7,"59108":4,"59109":2,"59110":8,"59111":2,"59112":6,"59113":8,"59114":4,"59115":8,"59116":7,"59117":8,"59118":2,"59119":3,"59120":7,"59121":7,"59122":2,"59123":7,"59124":8,"59125":7,"59126":7,"59127":4,"59128":5,"59129":2,"59130":8,"59131":9,"59132":8,"59133":7,"59134":7,"59135":8,"59136":7,"59137":4,"59138":8,"59139":7,"59140":7,"59141":8,"59142":10,"59143":7,"59144":7,"59145":2,"59146":5,"59147":10,"59148":6,"59149":8,"59150":5,"59151":7,"59152":5,"59153":2,"59154":9,"59155":5,"59156":1,"59157":8,"59158":5,"59159":5,"59160":2,"59161":6,"59162":7,"59163":7,"59164":8,"59165":2,"59166":10,"59167":9,"59168":7,"59169":3,"59170":7,"59171":2,"59172":8,"59173":8,"59174":7,"59175":6,"59176":2,"59177":4,"59178":7,"59179":8,"59180":5,"59181":2,"59182":7,"59183":8,"59184":7,"59185":5,"59186":8,"59187":7,"59188":8,"59189":7,"59190":9,"59191":9,"59192":8,"59193":1,"59194":3,"59195":5,"59196":7,"59197":10,"59198":8,"59199":8,"59200":5,"59201":7,"59202":8,"59203":10,"59204":3,"59205":9,"59206":2,"59207":9,"59208":5,"59209":2,"59210":9,"59211":2,"59212":8,"59213":8,"59214":8,"59215":8,"59216":4,"59217":8,"59218":8,"59219":6,"59220":7,"59221":10,"59222":7,"59223":4,"59224":7,"59225":7,"59226":3,"59227":9,"59228":10,"59229":10,"59230":10,"59231":7,"59232":8,"59233":9,"59234":5,"59235":8,"59236":7,"59237":9,"59238":2,"59239":5,"59240":5,"59241":4,"59242":9,"59243":7,"59244":9,"59245":6,"59246":8,"59247":7,"59248":5,"59249":3,"59250":9,"59251":9,"59252":4,"59253":8,"59254":9,"59255":10,"59256":4,"59257":9,"59258":7,"59259":5,"59260":9,"59261":1,"59262":10,"59263":4,"59264":6,"59265":6,"59266":1,"59267":2,"59268":8,"59269":7,"59270":5,"59271":8,"59272":8,"59273":9,"59274":7,"59275":5,"59276":7,"59277":10,"59278":7,"59279":7,"59280":7,"59281":8,"59282":8,"59283":1,"59284":9,"59285":7,"59286":7,"59287":6,"59288":2,"59289":7,"59290":8,"59291":9,"59292":9,"59293":7,"59294":7,"59295":8,"59296":7,"59297":2,"59298":1,"59299":7,"59300":10,"59301":7,"59302":9,"59303":1,"59304":8,"59305":9,"59306":2,"59307":9,"59308":2,"59309":8,"59310":8,"59311":6,"59312":4,"59313":8,"59314":2,"59315":3,"59316":4,"59317":2,"59318":9,"59319":8,"59320":9,"59321":9,"59322":7,"59323":7,"59324":5,"59325":6,"59326":9,"59327":9,"59328":5,"59329":8,"59330":1,"59331":7,"59332":6,"59333":8,"59334":5,"59335":8,"59336":9,"59337":7,"59338":7,"59339":9,"59340":8,"59341":2,"59342":9,"59343":5,"59344":8,"59345":10,"59346":7,"59347":10,"59348":9,"59349":4,"59350":7,"59351":7,"59352":9,"59353":9,"59354":7,"59355":5,"59356":9,"59357":7,"59358":8,"59359":7,"59360":5,"59361":2,"59362":7,"59363":9,"59364":2,"59365":2,"59366":8,"59367":7,"59368":7,"59369":5,"59370":7,"59371":5,"59372":9,"59373":9,"59374":5,"59375":4,"59376":3,"59377":4,"59378":2,"59379":8,"59380":9,"59381":5,"59382":5,"59383":8,"59384":10,"59385":4,"59386":8,"59387":9,"59388":1,"59389":9,"59390":9,"59391":5,"59392":10,"59393":8,"59394":4,"59395":9,"59396":8,"59397":1,"59398":8,"59399":7,"59400":2,"59401":7,"59402":2,"59403":4,"59404":6,"59405":7,"59406":9,"59407":9,"59408":4,"59409":2,"59410":7,"59411":9,"59412":3,"59413":2,"59414":2,"59415":5,"59416":6,"59417":5,"59418":9,"59419":5,"59420":7,"59421":7,"59422":2,"59423":8,"59424":2,"59425":2,"59426":7,"59427":7,"59428":6,"59429":10,"59430":4,"59431":5,"59432":9,"59433":5,"59434":4,"59435":2,"59436":3,"59437":2,"59438":9,"59439":8,"59440":8,"59441":6,"59442":5,"59443":6,"59444":8,"59445":7,"59446":7,"59447":9,"59448":2,"59449":4,"59450":9,"59451":8,"59452":7,"59453":8,"59454":5,"59455":3,"59456":2,"59457":7,"59458":8,"59459":8,"59460":8,"59461":7,"59462":7,"59463":8,"59464":5,"59465":8,"59466":7,"59467":8,"59468":8,"59469":4,"59470":2,"59471":5,"59472":1,"59473":7,"59474":6,"59475":8,"59476":7,"59477":7,"59478":5,"59479":5,"59480":8,"59481":10,"59482":4,"59483":4,"59484":10,"59485":5,"59486":5,"59487":9,"59488":1,"59489":7,"59490":10,"59491":6,"59492":10,"59493":7,"59494":2,"59495":8,"59496":2,"59497":8,"59498":7,"59499":9,"59500":7,"59501":7,"59502":7,"59503":1,"59504":6,"59505":1,"59506":10,"59507":4,"59508":5,"59509":8,"59510":8,"59511":8,"59512":1,"59513":7,"59514":3,"59515":4,"59516":5,"59517":2,"59518":1,"59519":4,"59520":9,"59521":5,"59522":7,"59523":9,"59524":7,"59525":5,"59526":9,"59527":2,"59528":7,"59529":3,"59530":7,"59531":8,"59532":7,"59533":8,"59534":8,"59535":1,"59536":10,"59537":8,"59538":7,"59539":2,"59540":5,"59541":4,"59542":1,"59543":7,"59544":1,"59545":7,"59546":1,"59547":8,"59548":6,"59549":5,"59550":8,"59551":1,"59552":5,"59553":2,"59554":6,"59555":7,"59556":8,"59557":7,"59558":9,"59559":1,"59560":2,"59561":9,"59562":7,"59563":8,"59564":9,"59565":10,"59566":2,"59567":4,"59568":9,"59569":10,"59570":8,"59571":2,"59572":8,"59573":10,"59574":6,"59575":8,"59576":5,"59577":4,"59578":8,"59579":8,"59580":6,"59581":7,"59582":7,"59583":8,"59584":7,"59585":8,"59586":4,"59587":5,"59588":9,"59589":4,"59590":5,"59591":9,"59592":2,"59593":8,"59594":1,"59595":5,"59596":8,"59597":5,"59598":8,"59599":7,"59600":7,"59601":2,"59602":2,"59603":8,"59604":8,"59605":7,"59606":7,"59607":7,"59608":9,"59609":8,"59610":8,"59611":7,"59612":8,"59613":2,"59614":2,"59615":3,"59616":5,"59617":7,"59618":10,"59619":4,"59620":7,"59621":2,"59622":10,"59623":2,"59624":8,"59625":7,"59626":9,"59627":7,"59628":6,"59629":8,"59630":3,"59631":8,"59632":5,"59633":2,"59634":1,"59635":5,"59636":2,"59637":5,"59638":5,"59639":7,"59640":2,"59641":2,"59642":1,"59643":9,"59644":7,"59645":9,"59646":5,"59647":7,"59648":7,"59649":8,"59650":2,"59651":2,"59652":5,"59653":9,"59654":9,"59655":9,"59656":7,"59657":8,"59658":2,"59659":10,"59660":9,"59661":5,"59662":8,"59663":4,"59664":4,"59665":3,"59666":9,"59667":9,"59668":8,"59669":3,"59670":9,"59671":5,"59672":4,"59673":7,"59674":8,"59675":9,"59676":2,"59677":7,"59678":8,"59679":7,"59680":9,"59681":7,"59682":7,"59683":9,"59684":10,"59685":7,"59686":3,"59687":7,"59688":2,"59689":9,"59690":2,"59691":8,"59692":8,"59693":9,"59694":9,"59695":9,"59696":5,"59697":3,"59698":8,"59699":10,"59700":7,"59701":7,"59702":10,"59703":2,"59704":4,"59705":7,"59706":1,"59707":5,"59708":9,"59709":9,"59710":8,"59711":4,"59712":9,"59713":2,"59714":9,"59715":8,"59716":8,"59717":4,"59718":1,"59719":10,"59720":9,"59721":9,"59722":7,"59723":2,"59724":8,"59725":10,"59726":8,"59727":8,"59728":7,"59729":5,"59730":8,"59731":9,"59732":5,"59733":5,"59734":2,"59735":8,"59736":7,"59737":8,"59738":8,"59739":9,"59740":5,"59741":5,"59742":10,"59743":10,"59744":7,"59745":8,"59746":7,"59747":8,"59748":7,"59749":9,"59750":8,"59751":5,"59752":8,"59753":10,"59754":9,"59755":10,"59756":8,"59757":9,"59758":8,"59759":8,"59760":6,"59761":8,"59762":4,"59763":8,"59764":9,"59765":5,"59766":9,"59767":7,"59768":1,"59769":9,"59770":8,"59771":8,"59772":2,"59773":7,"59774":1,"59775":2,"59776":9,"59777":8,"59778":8,"59779":10,"59780":2,"59781":9,"59782":3,"59783":7,"59784":9,"59785":8,"59786":8,"59787":7,"59788":8,"59789":9,"59790":1,"59791":7,"59792":8,"59793":9,"59794":6,"59795":2,"59796":8,"59797":9,"59798":7,"59799":2,"59800":8,"59801":7,"59802":2,"59803":7,"59804":9,"59805":8,"59806":6,"59807":7,"59808":7,"59809":7,"59810":7,"59811":9,"59812":7,"59813":7,"59814":4,"59815":2,"59816":3,"59817":7,"59818":5,"59819":1,"59820":10,"59821":7,"59822":8,"59823":3,"59824":8,"59825":5,"59826":8,"59827":2,"59828":7,"59829":7,"59830":1,"59831":9,"59832":8,"59833":8,"59834":10,"59835":7,"59836":8,"59837":3,"59838":9,"59839":1,"59840":7,"59841":5,"59842":7,"59843":1,"59844":10,"59845":7,"59846":5,"59847":8,"59848":4,"59849":4,"59850":7,"59851":7,"59852":5,"59853":3,"59854":9,"59855":9,"59856":9,"59857":5,"59858":6,"59859":1,"59860":1,"59861":10,"59862":2,"59863":7,"59864":8,"59865":8,"59866":5,"59867":3,"59868":3,"59869":7,"59870":9,"59871":7,"59872":8,"59873":6,"59874":5,"59875":1,"59876":8,"59877":7,"59878":2,"59879":5,"59880":1,"59881":10,"59882":2,"59883":7,"59884":8,"59885":5,"59886":5,"59887":2,"59888":1,"59889":5,"59890":8,"59891":8,"59892":8,"59893":1,"59894":5,"59895":8,"59896":2,"59897":8,"59898":7,"59899":7,"59900":7,"59901":7,"59902":3,"59903":7,"59904":1,"59905":2,"59906":9,"59907":5,"59908":7,"59909":3,"59910":2,"59911":8,"59912":9,"59913":5,"59914":2,"59915":9,"59916":2,"59917":5,"59918":1,"59919":5,"59920":8,"59921":2,"59922":7,"59923":8,"59924":10,"59925":2,"59926":8,"59927":8,"59928":2,"59929":7,"59930":9,"59931":2,"59932":5,"59933":7,"59934":9,"59935":4,"59936":2,"59937":8,"59938":8,"59939":7,"59940":6,"59941":1,"59942":7,"59943":10,"59944":7,"59945":9,"59946":6,"59947":7,"59948":10,"59949":6,"59950":2,"59951":8,"59952":7,"59953":5,"59954":2,"59955":3,"59956":8,"59957":2,"59958":5,"59959":2,"59960":8,"59961":9,"59962":10,"59963":7,"59964":5,"59965":7,"59966":9,"59967":8,"59968":10,"59969":8,"59970":1,"59971":8,"59972":7,"59973":7,"59974":7,"59975":2,"59976":8,"59977":7,"59978":10,"59979":5,"59980":9,"59981":5,"59982":7,"59983":3,"59984":7,"59985":8,"59986":9,"59987":9,"59988":8,"59989":9,"59990":5,"59991":8,"59992":2,"59993":7,"59994":9,"59995":8,"59996":10,"59997":5,"59998":4,"59999":2,"60000":8,"60001":5,"60002":2,"60003":7,"60004":5,"60005":8,"60006":8,"60007":9,"60008":7,"60009":5,"60010":5,"60011":3,"60012":6,"60013":8,"60014":7,"60015":7,"60016":3,"60017":2,"60018":8,"60019":5,"60020":4,"60021":2,"60022":7,"60023":4,"60024":9,"60025":8,"60026":8,"60027":4,"60028":10,"60029":8,"60030":2,"60031":8,"60032":9,"60033":9,"60034":8,"60035":9,"60036":8,"60037":5,"60038":2,"60039":4,"60040":7,"60041":8,"60042":7,"60043":8,"60044":7,"60045":2,"60046":7,"60047":9,"60048":2,"60049":4,"60050":10,"60051":7,"60052":5,"60053":3,"60054":9,"60055":7,"60056":9,"60057":4,"60058":1,"60059":7,"60060":6,"60061":1,"60062":5,"60063":7,"60064":8,"60065":7,"60066":5,"60067":6,"60068":5,"60069":8,"60070":7,"60071":2,"60072":7,"60073":9,"60074":8,"60075":2,"60076":8,"60077":5,"60078":10,"60079":6,"60080":2,"60081":4,"60082":8,"60083":8,"60084":8,"60085":9,"60086":1,"60087":8,"60088":3,"60089":10,"60090":9,"60091":9,"60092":7,"60093":8,"60094":2,"60095":8,"60096":1,"60097":6,"60098":7,"60099":4,"60100":8,"60101":5,"60102":5,"60103":7,"60104":7,"60105":6,"60106":6,"60107":9,"60108":2,"60109":4,"60110":7,"60111":6,"60112":8,"60113":5,"60114":7,"60115":5,"60116":5,"60117":5,"60118":7,"60119":9,"60120":5,"60121":2,"60122":2,"60123":2,"60124":6,"60125":7,"60126":5,"60127":5,"60128":9,"60129":2,"60130":1,"60131":1,"60132":10,"60133":5,"60134":8,"60135":10,"60136":8,"60137":7,"60138":7,"60139":10,"60140":4,"60141":3,"60142":6,"60143":7,"60144":8,"60145":9,"60146":7,"60147":2,"60148":8,"60149":6,"60150":8,"60151":2,"60152":5,"60153":3,"60154":10,"60155":10,"60156":5,"60157":9,"60158":8,"60159":7,"60160":9,"60161":8,"60162":1,"60163":8,"60164":6,"60165":9,"60166":8,"60167":2,"60168":2,"60169":7,"60170":4,"60171":4,"60172":4,"60173":8,"60174":1,"60175":2,"60176":5,"60177":2,"60178":4,"60179":2,"60180":9,"60181":1,"60182":9,"60183":9,"60184":7,"60185":9,"60186":5,"60187":6,"60188":5,"60189":6,"60190":7,"60191":8,"60192":2,"60193":7,"60194":2,"60195":7,"60196":7,"60197":5,"60198":4,"60199":7,"60200":2,"60201":6,"60202":4,"60203":7,"60204":8,"60205":10,"60206":4,"60207":7,"60208":2,"60209":8,"60210":2,"60211":3,"60212":9,"60213":3,"60214":8,"60215":8,"60216":8,"60217":5,"60218":5,"60219":9,"60220":1,"60221":8,"60222":3,"60223":5,"60224":10,"60225":5,"60226":7,"60227":2,"60228":8,"60229":10,"60230":5,"60231":5,"60232":5,"60233":8,"60234":5,"60235":8,"60236":7,"60237":9,"60238":3,"60239":1,"60240":8,"60241":8,"60242":1,"60243":5,"60244":8,"60245":2,"60246":4,"60247":5,"60248":7,"60249":10,"60250":8,"60251":9,"60252":8,"60253":2,"60254":3,"60255":9,"60256":4,"60257":10,"60258":9,"60259":5,"60260":8,"60261":5,"60262":7,"60263":2,"60264":8,"60265":8,"60266":6,"60267":8,"60268":7,"60269":5,"60270":5,"60271":7,"60272":2,"60273":8,"60274":8,"60275":10,"60276":6,"60277":9,"60278":9,"60279":7,"60280":10,"60281":8,"60282":1,"60283":4,"60284":7,"60285":7,"60286":3,"60287":8,"60288":9,"60289":9,"60290":6,"60291":5,"60292":10,"60293":9,"60294":9,"60295":7,"60296":2,"60297":7,"60298":8,"60299":1,"60300":3,"60301":9,"60302":7,"60303":4,"60304":5,"60305":7,"60306":6,"60307":7,"60308":7,"60309":3,"60310":2,"60311":10,"60312":8,"60313":6,"60314":8,"60315":9,"60316":1,"60317":7,"60318":10,"60319":9,"60320":7,"60321":7,"60322":8,"60323":8,"60324":2,"60325":1,"60326":10,"60327":7,"60328":7,"60329":7,"60330":9,"60331":8,"60332":8,"60333":5,"60334":7,"60335":9,"60336":5,"60337":7,"60338":9,"60339":5,"60340":5,"60341":1,"60342":1,"60343":7,"60344":3,"60345":10,"60346":8,"60347":9,"60348":8,"60349":8,"60350":7,"60351":2,"60352":5,"60353":9,"60354":3,"60355":10,"60356":8,"60357":5,"60358":2,"60359":9,"60360":7,"60361":4,"60362":5,"60363":9,"60364":2,"60365":3,"60366":8,"60367":8,"60368":7,"60369":7,"60370":9,"60371":7,"60372":5,"60373":8,"60374":7,"60375":9,"60376":7,"60377":8,"60378":1,"60379":9,"60380":2,"60381":8,"60382":7,"60383":4,"60384":7,"60385":6,"60386":4,"60387":7,"60388":8,"60389":9,"60390":1,"60391":2,"60392":10,"60393":8,"60394":9,"60395":8,"60396":8,"60397":7,"60398":8,"60399":7,"60400":7,"60401":7,"60402":8,"60403":10,"60404":2,"60405":8,"60406":5,"60407":7,"60408":6,"60409":8,"60410":1,"60411":1,"60412":8,"60413":5,"60414":9,"60415":6,"60416":9,"60417":8,"60418":7,"60419":7,"60420":6,"60421":7,"60422":7,"60423":9,"60424":2,"60425":2,"60426":5,"60427":9,"60428":10,"60429":7,"60430":5,"60431":8,"60432":8,"60433":7,"60434":1,"60435":2,"60436":6,"60437":9,"60438":3,"60439":1,"60440":8,"60441":2,"60442":9,"60443":8,"60444":4,"60445":1,"60446":2,"60447":10,"60448":8,"60449":8,"60450":9,"60451":7,"60452":7,"60453":10,"60454":5,"60455":2,"60456":8,"60457":1,"60458":7,"60459":7,"60460":9,"60461":8,"60462":2,"60463":2,"60464":7,"60465":7,"60466":5,"60467":5,"60468":2,"60469":1,"60470":8,"60471":7,"60472":7,"60473":6,"60474":3,"60475":9,"60476":8,"60477":7,"60478":5,"60479":7,"60480":7,"60481":8,"60482":9,"60483":7,"60484":7,"60485":7,"60486":1,"60487":9,"60488":7,"60489":7,"60490":5,"60491":8,"60492":8,"60493":7,"60494":8,"60495":8,"60496":2,"60497":8,"60498":4,"60499":8,"60500":2,"60501":2,"60502":7,"60503":5,"60504":8,"60505":4,"60506":7,"60507":8,"60508":8,"60509":8,"60510":10,"60511":5,"60512":4,"60513":6,"60514":8,"60515":10,"60516":7,"60517":5,"60518":7,"60519":10,"60520":7,"60521":8,"60522":9,"60523":9,"60524":6,"60525":8,"60526":5,"60527":1,"60528":7,"60529":7,"60530":1,"60531":8,"60532":7,"60533":10,"60534":7,"60535":3,"60536":2,"60537":9,"60538":8,"60539":9,"60540":2,"60541":9,"60542":3,"60543":4,"60544":1,"60545":8,"60546":4,"60547":1,"60548":9,"60549":7,"60550":9,"60551":9,"60552":6,"60553":2,"60554":9,"60555":8,"60556":8,"60557":8,"60558":8,"60559":9,"60560":1,"60561":5,"60562":8,"60563":7,"60564":8,"60565":3,"60566":9,"60567":10,"60568":8,"60569":5,"60570":8,"60571":7,"60572":9,"60573":10,"60574":2,"60575":6,"60576":9,"60577":3,"60578":9,"60579":5,"60580":9,"60581":7,"60582":8,"60583":7,"60584":9,"60585":9,"60586":4,"60587":2,"60588":2,"60589":8,"60590":7,"60591":7,"60592":5,"60593":8,"60594":9,"60595":7,"60596":2,"60597":4,"60598":9,"60599":9,"60600":7,"60601":8,"60602":5,"60603":7,"60604":1,"60605":3,"60606":8,"60607":1,"60608":2,"60609":5,"60610":3,"60611":1,"60612":8,"60613":4,"60614":10,"60615":2,"60616":10,"60617":10,"60618":9,"60619":2,"60620":8,"60621":8,"60622":5,"60623":8,"60624":8,"60625":9,"60626":5,"60627":8,"60628":9,"60629":6,"60630":7,"60631":2,"60632":8,"60633":5,"60634":8,"60635":10,"60636":9,"60637":7,"60638":5,"60639":3,"60640":7,"60641":2,"60642":8,"60643":1,"60644":10,"60645":6,"60646":7,"60647":4,"60648":1,"60649":5,"60650":8,"60651":8,"60652":5,"60653":5,"60654":2,"60655":8,"60656":4,"60657":7,"60658":2,"60659":5,"60660":7,"60661":7,"60662":4,"60663":10,"60664":7,"60665":9,"60666":8,"60667":6,"60668":2,"60669":7,"60670":8,"60671":8,"60672":8,"60673":5,"60674":7,"60675":10,"60676":7,"60677":9,"60678":7,"60679":9,"60680":8,"60681":5,"60682":9,"60683":3,"60684":5,"60685":4,"60686":7,"60687":7,"60688":9,"60689":6,"60690":6,"60691":10,"60692":2,"60693":5,"60694":5,"60695":9,"60696":9,"60697":7,"60698":10,"60699":8,"60700":7,"60701":7,"60702":8,"60703":2,"60704":7,"60705":8,"60706":4,"60707":9,"60708":8,"60709":8,"60710":5,"60711":7,"60712":8,"60713":9,"60714":7,"60715":4,"60716":8,"60717":8,"60718":5,"60719":8,"60720":7,"60721":1,"60722":6,"60723":7,"60724":10,"60725":4,"60726":7,"60727":9,"60728":7,"60729":7,"60730":9,"60731":9,"60732":8,"60733":2,"60734":6,"60735":10,"60736":2,"60737":9,"60738":9,"60739":2,"60740":9,"60741":6,"60742":7,"60743":7,"60744":9,"60745":4,"60746":8,"60747":7,"60748":8,"60749":9,"60750":1,"60751":6,"60752":2,"60753":2,"60754":9,"60755":8,"60756":1,"60757":8,"60758":4,"60759":10,"60760":7,"60761":7,"60762":7,"60763":2,"60764":4,"60765":9,"60766":5,"60767":4,"60768":9,"60769":3,"60770":5,"60771":6,"60772":2,"60773":7,"60774":7,"60775":8,"60776":1,"60777":5,"60778":4,"60779":9,"60780":7,"60781":7,"60782":9,"60783":1,"60784":7,"60785":1,"60786":5,"60787":2,"60788":8,"60789":5,"60790":7,"60791":10,"60792":4,"60793":9,"60794":8,"60795":7,"60796":2,"60797":5,"60798":3,"60799":8,"60800":2,"60801":8,"60802":9,"60803":3,"60804":7,"60805":1,"60806":9,"60807":7,"60808":9,"60809":8,"60810":7,"60811":9,"60812":7,"60813":7,"60814":5,"60815":9,"60816":7,"60817":4,"60818":8,"60819":8,"60820":9,"60821":7,"60822":7,"60823":6,"60824":10,"60825":7,"60826":5,"60827":2,"60828":9,"60829":7,"60830":2,"60831":10,"60832":5,"60833":5,"60834":5,"60835":8,"60836":8,"60837":8,"60838":7,"60839":7,"60840":9,"60841":7,"60842":10,"60843":9,"60844":7,"60845":4,"60846":2,"60847":10,"60848":9,"60849":10,"60850":5,"60851":8,"60852":1,"60853":9,"60854":4,"60855":3,"60856":8,"60857":8,"60858":1,"60859":2,"60860":10,"60861":7,"60862":7,"60863":2,"60864":5,"60865":4,"60866":7,"60867":9,"60868":8,"60869":7,"60870":7,"60871":9,"60872":3,"60873":7,"60874":9,"60875":9,"60876":9,"60877":6,"60878":7,"60879":8,"60880":8,"60881":2,"60882":1,"60883":9,"60884":9,"60885":2,"60886":9,"60887":6,"60888":2,"60889":5,"60890":9,"60891":10,"60892":7,"60893":7,"60894":6,"60895":6,"60896":8,"60897":7,"60898":9,"60899":3,"60900":9,"60901":8,"60902":5,"60903":8,"60904":2,"60905":5,"60906":7,"60907":9,"60908":8,"60909":7,"60910":8,"60911":8,"60912":8,"60913":8,"60914":7,"60915":8,"60916":7,"60917":1,"60918":8,"60919":9,"60920":6,"60921":5,"60922":2,"60923":2,"60924":3,"60925":8,"60926":8,"60927":8,"60928":9,"60929":7,"60930":9,"60931":8,"60932":9,"60933":7,"60934":7,"60935":8,"60936":6,"60937":1,"60938":8,"60939":8,"60940":9,"60941":9,"60942":6,"60943":2,"60944":6,"60945":7,"60946":2,"60947":8,"60948":4,"60949":5,"60950":7,"60951":7,"60952":2,"60953":4,"60954":8,"60955":5,"60956":9,"60957":5,"60958":3,"60959":6,"60960":8,"60961":2,"60962":8,"60963":10,"60964":10,"60965":6,"60966":3,"60967":1,"60968":4,"60969":2,"60970":5,"60971":7,"60972":5,"60973":7,"60974":7,"60975":8,"60976":9,"60977":7,"60978":8,"60979":5,"60980":6,"60981":5,"60982":7,"60983":2,"60984":8,"60985":2,"60986":2,"60987":9,"60988":10,"60989":9,"60990":8,"60991":5,"60992":2,"60993":9,"60994":10,"60995":7,"60996":5,"60997":7,"60998":8,"60999":9,"61000":10,"61001":9,"61002":9,"61003":6,"61004":3,"61005":8,"61006":3,"61007":9,"61008":5,"61009":8,"61010":10,"61011":8,"61012":7,"61013":7,"61014":7,"61015":1,"61016":9,"61017":7,"61018":3,"61019":7,"61020":4,"61021":9,"61022":9,"61023":8,"61024":5,"61025":8,"61026":7,"61027":3,"61028":9,"61029":3,"61030":2,"61031":4,"61032":8,"61033":9,"61034":7,"61035":5,"61036":2,"61037":2,"61038":2,"61039":8,"61040":7,"61041":10,"61042":8,"61043":7,"61044":7,"61045":5,"61046":10,"61047":8,"61048":3,"61049":6,"61050":9,"61051":8,"61052":7,"61053":9,"61054":4,"61055":9,"61056":9,"61057":9,"61058":9,"61059":2,"61060":9,"61061":10,"61062":2,"61063":2,"61064":6,"61065":8,"61066":1,"61067":6,"61068":6,"61069":7,"61070":2,"61071":2,"61072":5,"61073":2,"61074":5,"61075":10,"61076":8,"61077":10,"61078":2,"61079":8,"61080":9,"61081":1,"61082":8,"61083":9,"61084":7,"61085":7,"61086":7,"61087":7,"61088":7,"61089":3,"61090":9,"61091":5,"61092":1,"61093":7,"61094":4,"61095":8,"61096":7,"61097":8,"61098":8,"61099":7,"61100":9,"61101":9,"61102":7,"61103":5,"61104":9,"61105":9,"61106":7,"61107":8,"61108":1,"61109":1,"61110":9,"61111":9,"61112":9,"61113":4,"61114":7,"61115":5,"61116":2,"61117":8,"61118":3,"61119":7,"61120":8,"61121":7,"61122":4,"61123":8,"61124":2,"61125":9,"61126":8,"61127":10,"61128":9,"61129":8,"61130":9,"61131":7,"61132":8,"61133":6,"61134":5,"61135":9,"61136":10,"61137":7,"61138":8,"61139":1,"61140":8,"61141":6,"61142":8,"61143":3,"61144":10,"61145":7,"61146":8,"61147":6,"61148":5,"61149":7,"61150":8,"61151":6,"61152":8,"61153":8,"61154":5,"61155":1,"61156":10,"61157":7,"61158":2,"61159":8,"61160":7,"61161":8,"61162":7,"61163":8,"61164":9,"61165":8,"61166":3,"61167":8,"61168":10,"61169":7,"61170":1,"61171":8,"61172":7,"61173":5,"61174":1,"61175":10,"61176":7,"61177":8,"61178":1,"61179":8,"61180":8,"61181":4,"61182":8,"61183":7,"61184":7,"61185":5,"61186":4,"61187":7,"61188":5,"61189":5,"61190":7,"61191":5,"61192":2,"61193":9,"61194":10,"61195":8,"61196":2,"61197":2,"61198":8,"61199":9,"61200":8,"61201":2,"61202":9,"61203":4,"61204":10,"61205":8,"61206":8,"61207":9,"61208":9,"61209":7,"61210":4,"61211":8,"61212":7,"61213":8,"61214":9,"61215":7,"61216":8,"61217":7,"61218":5,"61219":5,"61220":5,"61221":5,"61222":4,"61223":7,"61224":7,"61225":6,"61226":4,"61227":8,"61228":9,"61229":2,"61230":9,"61231":9,"61232":8,"61233":9,"61234":1,"61235":10,"61236":8,"61237":6,"61238":2,"61239":2,"61240":8,"61241":9,"61242":7,"61243":10,"61244":7,"61245":5,"61246":9,"61247":4,"61248":4,"61249":3,"61250":9,"61251":3,"61252":10,"61253":8,"61254":5,"61255":8,"61256":7,"61257":3,"61258":1,"61259":8,"61260":5,"61261":8,"61262":2,"61263":7,"61264":5,"61265":8,"61266":9,"61267":7,"61268":6,"61269":9,"61270":9,"61271":8,"61272":2,"61273":8,"61274":7,"61275":7,"61276":9,"61277":9,"61278":3,"61279":7,"61280":10,"61281":8,"61282":5,"61283":7,"61284":1,"61285":7,"61286":9,"61287":4,"61288":7,"61289":4,"61290":9,"61291":5,"61292":2,"61293":3,"61294":4,"61295":8,"61296":5,"61297":5,"61298":4,"61299":7,"61300":2,"61301":2,"61302":2,"61303":7,"61304":7,"61305":6,"61306":7,"61307":7,"61308":7,"61309":9,"61310":5,"61311":7,"61312":9,"61313":4,"61314":7,"61315":8,"61316":1,"61317":10,"61318":3,"61319":9,"61320":7,"61321":6,"61322":9,"61323":1,"61324":7,"61325":6,"61326":2,"61327":8,"61328":8,"61329":8,"61330":7,"61331":7,"61332":9,"61333":1,"61334":9,"61335":5,"61336":9,"61337":5,"61338":9,"61339":2,"61340":3,"61341":10,"61342":7,"61343":1,"61344":10,"61345":5,"61346":9,"61347":5,"61348":9,"61349":8,"61350":1,"61351":5,"61352":9,"61353":9,"61354":7,"61355":2,"61356":8,"61357":10,"61358":2,"61359":6,"61360":2,"61361":7,"61362":7,"61363":10,"61364":8,"61365":1,"61366":7,"61367":9,"61368":7,"61369":2,"61370":10,"61371":4,"61372":9,"61373":9,"61374":9,"61375":7,"61376":2,"61377":9,"61378":7,"61379":10,"61380":6,"61381":8,"61382":8,"61383":9,"61384":7,"61385":9,"61386":10,"61387":4,"61388":7,"61389":7,"61390":1,"61391":8,"61392":9,"61393":10,"61394":7,"61395":8,"61396":9,"61397":5,"61398":2,"61399":1,"61400":5,"61401":7,"61402":5,"61403":8,"61404":5,"61405":5,"61406":9,"61407":2,"61408":2,"61409":9,"61410":1,"61411":8,"61412":8,"61413":8,"61414":9,"61415":9,"61416":4,"61417":9,"61418":7,"61419":8,"61420":4,"61421":8,"61422":8,"61423":8,"61424":8,"61425":8,"61426":6,"61427":8,"61428":7,"61429":7,"61430":9,"61431":4,"61432":7,"61433":2,"61434":5,"61435":5,"61436":4,"61437":2,"61438":5,"61439":8,"61440":8,"61441":9,"61442":8,"61443":2,"61444":2,"61445":5,"61446":9,"61447":3,"61448":1,"61449":9,"61450":7,"61451":2,"61452":7,"61453":10,"61454":7,"61455":9,"61456":9,"61457":5,"61458":8,"61459":3,"61460":5,"61461":6,"61462":7,"61463":8,"61464":8,"61465":9,"61466":9,"61467":5,"61468":9,"61469":7,"61470":8,"61471":7,"61472":8,"61473":7,"61474":5,"61475":8,"61476":8,"61477":7,"61478":5,"61479":7,"61480":7,"61481":5,"61482":2,"61483":8,"61484":5,"61485":7,"61486":5,"61487":7,"61488":10,"61489":9,"61490":8,"61491":10,"61492":8,"61493":9,"61494":5,"61495":7,"61496":2,"61497":5,"61498":2,"61499":8,"61500":9,"61501":2,"61502":7,"61503":2,"61504":10,"61505":8,"61506":5,"61507":5,"61508":9,"61509":5,"61510":7,"61511":5,"61512":7,"61513":8,"61514":9,"61515":5,"61516":2,"61517":7,"61518":5,"61519":2,"61520":2,"61521":7,"61522":9,"61523":7,"61524":8,"61525":9,"61526":5,"61527":7,"61528":7,"61529":9,"61530":7,"61531":1,"61532":7,"61533":7,"61534":1,"61535":9,"61536":9,"61537":4,"61538":3,"61539":7,"61540":5,"61541":7,"61542":7,"61543":9,"61544":6,"61545":6,"61546":7,"61547":8,"61548":2,"61549":8,"61550":8,"61551":2,"61552":6,"61553":3,"61554":2,"61555":6,"61556":8,"61557":10,"61558":9,"61559":9,"61560":6,"61561":4,"61562":2,"61563":5,"61564":7,"61565":10,"61566":5,"61567":4,"61568":5,"61569":5,"61570":4,"61571":2,"61572":7,"61573":9,"61574":1,"61575":2,"61576":5,"61577":6,"61578":7,"61579":5,"61580":7,"61581":8,"61582":4,"61583":2,"61584":1,"61585":7,"61586":9,"61587":8,"61588":7,"61589":5,"61590":2,"61591":8,"61592":7,"61593":8,"61594":9,"61595":7,"61596":3,"61597":3,"61598":7,"61599":7,"61600":10,"61601":8,"61602":10,"61603":7,"61604":1,"61605":7,"61606":3,"61607":1,"61608":7,"61609":9,"61610":8,"61611":9,"61612":10,"61613":9,"61614":9,"61615":1,"61616":4,"61617":7,"61618":6,"61619":6,"61620":4,"61621":10,"61622":8,"61623":9,"61624":1,"61625":8,"61626":7,"61627":8,"61628":4,"61629":9,"61630":9,"61631":6,"61632":2,"61633":3,"61634":7,"61635":2,"61636":5,"61637":2,"61638":5,"61639":8,"61640":2,"61641":9,"61642":7,"61643":2,"61644":4,"61645":1,"61646":7,"61647":8,"61648":8,"61649":10,"61650":8,"61651":7,"61652":9,"61653":5,"61654":4,"61655":8,"61656":8,"61657":9,"61658":7,"61659":3,"61660":8,"61661":8,"61662":2,"61663":9,"61664":10,"61665":2,"61666":2,"61667":7,"61668":8,"61669":6,"61670":9,"61671":5,"61672":8,"61673":7,"61674":2,"61675":7,"61676":7,"61677":4,"61678":7,"61679":7,"61680":1,"61681":5,"61682":4,"61683":4,"61684":9,"61685":7,"61686":8,"61687":6,"61688":3,"61689":8,"61690":8,"61691":5,"61692":6,"61693":7,"61694":8,"61695":7,"61696":2,"61697":7,"61698":7,"61699":8,"61700":3,"61701":7,"61702":7,"61703":6,"61704":7,"61705":9,"61706":7,"61707":9,"61708":9,"61709":8,"61710":2,"61711":8,"61712":8,"61713":10,"61714":7,"61715":9,"61716":7,"61717":1,"61718":3,"61719":1,"61720":8,"61721":9,"61722":4,"61723":7,"61724":8,"61725":9,"61726":10,"61727":8,"61728":7,"61729":7,"61730":9,"61731":5,"61732":3,"61733":4,"61734":2,"61735":3,"61736":8,"61737":7,"61738":1,"61739":9,"61740":8,"61741":10,"61742":8,"61743":9,"61744":5,"61745":3,"61746":10,"61747":5,"61748":9,"61749":4,"61750":2,"61751":5,"61752":9,"61753":6,"61754":9,"61755":7,"61756":3,"61757":8,"61758":7,"61759":7,"61760":7,"61761":7,"61762":4,"61763":4,"61764":8,"61765":7,"61766":6,"61767":6,"61768":2,"61769":7,"61770":9,"61771":3,"61772":6,"61773":2,"61774":9,"61775":9,"61776":2,"61777":2,"61778":7,"61779":8,"61780":5,"61781":2,"61782":7,"61783":8,"61784":5,"61785":10,"61786":7,"61787":9,"61788":7,"61789":7,"61790":9,"61791":6,"61792":9,"61793":8,"61794":9,"61795":2,"61796":1,"61797":7,"61798":10,"61799":10,"61800":9,"61801":9,"61802":5,"61803":9,"61804":7,"61805":9,"61806":8,"61807":8,"61808":8,"61809":9,"61810":9,"61811":6,"61812":7,"61813":8,"61814":1,"61815":7,"61816":8,"61817":7,"61818":7,"61819":5,"61820":7,"61821":7,"61822":1,"61823":9,"61824":7,"61825":8,"61826":10,"61827":8,"61828":4,"61829":1,"61830":6,"61831":5,"61832":8,"61833":1,"61834":7,"61835":3,"61836":5,"61837":7,"61838":5,"61839":8,"61840":4,"61841":5,"61842":7,"61843":3,"61844":9,"61845":2,"61846":9,"61847":4,"61848":10,"61849":5,"61850":5,"61851":1,"61852":3,"61853":5,"61854":8,"61855":7,"61856":8,"61857":9,"61858":8,"61859":7,"61860":5,"61861":8,"61862":8,"61863":7,"61864":8,"61865":9,"61866":8,"61867":1,"61868":2,"61869":8,"61870":9,"61871":7,"61872":5,"61873":9,"61874":8,"61875":7,"61876":8,"61877":7,"61878":8,"61879":4,"61880":2,"61881":9,"61882":4,"61883":8,"61884":6,"61885":7,"61886":2,"61887":4,"61888":9,"61889":8,"61890":9,"61891":9,"61892":10,"61893":2,"61894":10,"61895":7,"61896":6,"61897":9,"61898":5,"61899":9,"61900":2,"61901":8,"61902":1,"61903":2,"61904":8,"61905":7,"61906":9,"61907":1,"61908":8,"61909":4,"61910":7,"61911":7,"61912":9,"61913":8,"61914":8,"61915":8,"61916":5,"61917":6,"61918":8,"61919":2,"61920":7,"61921":7,"61922":9,"61923":7,"61924":1,"61925":5,"61926":7,"61927":8,"61928":8,"61929":7,"61930":8,"61931":4,"61932":7,"61933":7,"61934":7,"61935":4,"61936":9,"61937":2,"61938":5,"61939":7,"61940":9,"61941":9,"61942":9,"61943":2,"61944":6,"61945":3,"61946":5,"61947":8,"61948":10,"61949":8,"61950":9,"61951":2,"61952":7,"61953":8,"61954":8,"61955":5,"61956":9,"61957":2,"61958":6,"61959":7,"61960":8,"61961":5,"61962":5,"61963":2,"61964":2,"61965":7,"61966":9,"61967":7,"61968":4,"61969":8,"61970":2,"61971":5,"61972":4,"61973":4,"61974":8,"61975":5,"61976":5,"61977":4,"61978":7,"61979":2,"61980":2,"61981":7,"61982":7,"61983":7,"61984":1,"61985":1,"61986":3,"61987":8,"61988":8,"61989":2,"61990":8,"61991":8,"61992":7,"61993":2,"61994":2,"61995":9,"61996":8,"61997":8,"61998":9,"61999":5,"62000":9,"62001":5,"62002":8,"62003":7,"62004":7,"62005":7,"62006":7,"62007":2,"62008":6,"62009":4,"62010":5,"62011":5,"62012":8,"62013":7,"62014":5,"62015":3,"62016":8,"62017":8,"62018":9,"62019":4,"62020":6,"62021":8,"62022":9,"62023":3,"62024":9,"62025":9,"62026":2,"62027":2,"62028":9,"62029":2,"62030":8,"62031":9,"62032":10,"62033":6,"62034":7,"62035":10,"62036":8,"62037":8,"62038":3,"62039":9,"62040":2,"62041":2,"62042":2,"62043":8,"62044":2,"62045":7,"62046":1,"62047":6,"62048":8,"62049":2,"62050":9,"62051":5,"62052":5,"62053":2,"62054":7,"62055":4,"62056":6,"62057":4,"62058":8,"62059":9,"62060":4,"62061":4,"62062":4,"62063":1,"62064":8,"62065":8,"62066":4,"62067":7,"62068":2,"62069":8,"62070":2,"62071":3,"62072":7,"62073":2,"62074":7,"62075":7,"62076":2,"62077":7,"62078":1,"62079":8,"62080":7,"62081":10,"62082":9,"62083":10,"62084":2,"62085":4,"62086":1,"62087":7,"62088":6,"62089":2,"62090":8,"62091":10,"62092":4,"62093":8,"62094":8,"62095":9,"62096":7,"62097":8,"62098":7,"62099":1,"62100":10,"62101":7,"62102":3,"62103":5,"62104":8,"62105":10,"62106":6,"62107":3,"62108":3,"62109":8,"62110":7,"62111":7,"62112":7,"62113":9,"62114":5,"62115":5,"62116":9,"62117":9,"62118":3,"62119":7,"62120":1,"62121":8,"62122":8,"62123":8,"62124":1,"62125":7,"62126":8,"62127":6,"62128":3,"62129":9,"62130":9,"62131":6,"62132":10,"62133":9,"62134":8,"62135":5,"62136":9,"62137":7,"62138":7,"62139":8,"62140":8,"62141":8,"62142":8,"62143":1,"62144":1,"62145":5,"62146":8,"62147":10,"62148":2,"62149":8,"62150":7,"62151":10,"62152":10,"62153":2,"62154":7,"62155":2,"62156":8,"62157":4,"62158":1,"62159":2,"62160":7,"62161":7,"62162":7,"62163":1,"62164":8,"62165":4,"62166":4,"62167":6,"62168":9,"62169":9,"62170":2,"62171":8,"62172":8,"62173":6,"62174":2,"62175":6,"62176":2,"62177":7,"62178":8,"62179":9,"62180":10,"62181":7,"62182":9,"62183":9,"62184":7,"62185":8,"62186":8,"62187":8,"62188":7,"62189":8,"62190":9,"62191":5,"62192":9,"62193":7,"62194":8,"62195":9,"62196":4,"62197":6,"62198":7,"62199":3,"62200":8,"62201":7,"62202":3,"62203":5,"62204":8,"62205":7,"62206":7,"62207":8,"62208":2,"62209":7,"62210":8,"62211":9,"62212":2,"62213":7,"62214":8,"62215":8,"62216":7,"62217":9,"62218":9,"62219":7,"62220":1,"62221":7,"62222":7,"62223":3,"62224":1,"62225":7,"62226":9,"62227":3,"62228":6,"62229":2,"62230":8,"62231":8,"62232":7,"62233":5,"62234":8,"62235":7,"62236":7,"62237":2,"62238":7,"62239":8,"62240":7,"62241":2,"62242":2,"62243":7,"62244":2,"62245":9,"62246":2,"62247":5,"62248":7,"62249":6,"62250":8,"62251":9,"62252":8,"62253":4,"62254":10,"62255":5,"62256":7,"62257":8,"62258":3,"62259":8,"62260":10,"62261":5,"62262":8,"62263":7,"62264":8,"62265":6,"62266":9,"62267":7,"62268":2,"62269":9,"62270":4,"62271":9,"62272":9,"62273":7,"62274":7,"62275":8,"62276":2,"62277":8,"62278":8,"62279":7,"62280":4,"62281":7,"62282":2,"62283":8,"62284":9,"62285":1,"62286":5,"62287":1,"62288":8,"62289":8,"62290":9,"62291":9,"62292":8,"62293":7,"62294":5,"62295":9,"62296":3,"62297":8,"62298":9,"62299":9,"62300":9,"62301":1,"62302":7,"62303":2,"62304":8,"62305":9,"62306":5,"62307":2,"62308":1,"62309":2,"62310":7,"62311":7,"62312":5,"62313":9,"62314":2,"62315":9,"62316":9,"62317":9,"62318":8,"62319":8,"62320":5,"62321":2,"62322":2,"62323":6,"62324":7,"62325":8,"62326":9,"62327":7,"62328":8,"62329":9,"62330":2,"62331":3,"62332":9,"62333":8,"62334":6,"62335":10,"62336":2,"62337":8,"62338":6,"62339":5,"62340":5,"62341":8,"62342":5,"62343":8,"62344":7,"62345":7,"62346":8,"62347":9,"62348":1,"62349":9,"62350":10,"62351":8,"62352":9,"62353":6,"62354":8,"62355":7,"62356":1,"62357":9,"62358":7,"62359":1,"62360":5,"62361":4,"62362":7,"62363":8,"62364":7,"62365":10,"62366":6,"62367":8,"62368":3,"62369":4,"62370":7,"62371":3,"62372":6,"62373":8,"62374":9,"62375":6,"62376":2,"62377":6,"62378":9,"62379":5,"62380":6,"62381":1,"62382":8,"62383":9,"62384":7,"62385":9,"62386":8,"62387":10,"62388":7,"62389":7,"62390":9,"62391":7,"62392":7,"62393":9,"62394":1,"62395":1,"62396":7,"62397":8,"62398":8,"62399":5,"62400":7,"62401":9,"62402":2,"62403":7,"62404":8,"62405":1,"62406":2,"62407":7,"62408":1,"62409":1,"62410":6,"62411":8,"62412":3,"62413":8,"62414":2,"62415":9,"62416":7,"62417":7,"62418":9,"62419":6,"62420":10,"62421":7,"62422":3,"62423":8,"62424":1,"62425":3,"62426":8,"62427":10,"62428":2,"62429":3,"62430":5,"62431":10,"62432":4,"62433":2,"62434":5,"62435":8,"62436":9,"62437":8,"62438":8,"62439":7,"62440":4,"62441":7,"62442":7,"62443":7,"62444":3,"62445":7,"62446":8,"62447":8,"62448":5,"62449":3,"62450":9,"62451":5,"62452":8,"62453":2,"62454":7,"62455":8,"62456":5,"62457":9,"62458":9,"62459":6,"62460":7,"62461":8,"62462":7,"62463":3,"62464":8,"62465":7,"62466":8,"62467":7,"62468":2,"62469":8,"62470":2,"62471":8,"62472":9,"62473":9,"62474":10,"62475":10,"62476":7,"62477":8,"62478":7,"62479":6,"62480":5,"62481":8,"62482":5,"62483":6,"62484":9,"62485":2,"62486":7,"62487":10,"62488":5,"62489":4,"62490":7,"62491":6,"62492":7,"62493":9,"62494":3,"62495":8,"62496":7,"62497":7,"62498":2,"62499":7,"62500":9,"62501":8,"62502":5,"62503":9,"62504":6,"62505":9,"62506":5,"62507":9,"62508":9,"62509":7,"62510":8,"62511":7,"62512":2,"62513":8,"62514":7,"62515":6,"62516":9,"62517":7,"62518":6,"62519":3,"62520":7,"62521":7,"62522":5,"62523":9,"62524":9,"62525":9,"62526":7,"62527":7,"62528":5,"62529":1,"62530":9,"62531":5,"62532":10,"62533":7,"62534":7,"62535":7,"62536":1,"62537":2,"62538":6,"62539":2,"62540":9,"62541":1,"62542":8,"62543":8,"62544":1,"62545":2,"62546":10,"62547":9,"62548":9,"62549":5,"62550":7,"62551":8,"62552":9,"62553":8,"62554":8,"62555":2,"62556":4,"62557":7,"62558":5,"62559":7,"62560":8,"62561":9,"62562":9,"62563":7,"62564":5,"62565":3,"62566":4,"62567":9,"62568":7,"62569":3,"62570":7,"62571":7,"62572":2,"62573":1,"62574":3,"62575":9,"62576":8,"62577":8,"62578":7,"62579":2,"62580":4,"62581":8,"62582":7,"62583":9,"62584":8,"62585":7,"62586":8,"62587":7,"62588":5,"62589":7,"62590":6,"62591":7,"62592":2,"62593":9,"62594":2,"62595":4,"62596":8,"62597":4,"62598":1,"62599":1,"62600":8,"62601":7,"62602":7,"62603":9,"62604":8,"62605":5,"62606":7,"62607":6,"62608":8,"62609":7,"62610":9,"62611":7,"62612":9,"62613":4,"62614":7,"62615":2,"62616":2,"62617":7,"62618":9,"62619":7,"62620":8,"62621":2,"62622":8,"62623":9,"62624":3,"62625":9,"62626":4,"62627":8,"62628":4,"62629":7,"62630":8,"62631":4,"62632":7,"62633":9,"62634":7,"62635":9,"62636":2,"62637":5,"62638":8,"62639":9,"62640":2,"62641":9,"62642":5,"62643":7,"62644":5,"62645":7,"62646":9,"62647":4,"62648":8,"62649":4,"62650":9,"62651":10,"62652":5,"62653":7,"62654":5,"62655":5,"62656":1,"62657":2,"62658":2,"62659":3,"62660":6,"62661":4,"62662":2,"62663":8,"62664":1,"62665":7,"62666":6,"62667":9,"62668":8,"62669":2,"62670":8,"62671":7,"62672":5,"62673":7,"62674":6,"62675":8,"62676":8,"62677":8,"62678":7,"62679":8,"62680":3,"62681":1,"62682":7,"62683":5,"62684":8,"62685":3,"62686":1,"62687":7,"62688":9,"62689":8,"62690":8,"62691":2,"62692":1,"62693":9,"62694":4,"62695":7,"62696":9,"62697":7,"62698":1,"62699":9,"62700":5,"62701":2,"62702":4,"62703":9,"62704":1,"62705":2,"62706":8,"62707":1,"62708":2,"62709":6,"62710":7,"62711":5,"62712":2,"62713":2,"62714":2,"62715":6,"62716":2,"62717":3,"62718":10,"62719":8,"62720":9,"62721":8,"62722":8,"62723":5,"62724":1,"62725":4,"62726":2,"62727":9,"62728":8,"62729":8,"62730":1,"62731":10,"62732":8,"62733":8,"62734":2,"62735":9,"62736":1,"62737":7,"62738":9,"62739":7,"62740":4,"62741":9,"62742":9,"62743":7,"62744":7,"62745":2,"62746":9,"62747":7,"62748":9,"62749":7,"62750":7,"62751":7,"62752":2,"62753":4,"62754":8,"62755":7,"62756":8,"62757":8,"62758":4,"62759":2,"62760":4,"62761":8,"62762":1,"62763":8,"62764":7,"62765":2,"62766":3,"62767":7,"62768":10,"62769":3,"62770":2,"62771":4,"62772":4,"62773":7,"62774":1,"62775":9,"62776":9,"62777":9,"62778":9,"62779":7,"62780":2,"62781":7,"62782":7,"62783":5,"62784":6,"62785":9,"62786":10,"62787":9,"62788":8,"62789":4,"62790":9,"62791":7,"62792":8,"62793":2,"62794":9,"62795":8,"62796":5,"62797":4,"62798":9,"62799":6,"62800":7,"62801":8,"62802":4,"62803":8,"62804":7,"62805":7,"62806":9,"62807":5,"62808":4,"62809":6,"62810":9,"62811":8,"62812":7,"62813":7,"62814":2,"62815":4,"62816":3,"62817":2,"62818":8,"62819":8,"62820":7,"62821":5,"62822":6,"62823":2,"62824":8,"62825":8,"62826":5,"62827":9,"62828":7,"62829":1,"62830":8,"62831":7,"62832":3,"62833":8,"62834":9,"62835":9,"62836":3,"62837":7,"62838":2,"62839":10,"62840":8,"62841":7,"62842":7,"62843":2,"62844":7,"62845":3,"62846":1,"62847":8,"62848":2,"62849":1,"62850":6,"62851":7,"62852":8,"62853":5,"62854":6,"62855":4,"62856":9,"62857":9,"62858":4,"62859":9,"62860":6,"62861":6,"62862":8,"62863":7,"62864":8,"62865":4,"62866":5,"62867":1,"62868":7,"62869":7,"62870":3,"62871":8,"62872":3,"62873":7,"62874":5,"62875":1,"62876":2,"62877":7,"62878":4,"62879":7,"62880":7,"62881":4,"62882":10,"62883":8,"62884":9,"62885":8,"62886":5,"62887":3,"62888":9,"62889":8,"62890":2,"62891":9,"62892":7,"62893":3,"62894":2,"62895":7,"62896":7,"62897":7,"62898":2,"62899":9,"62900":1,"62901":5,"62902":4,"62903":8,"62904":7,"62905":9,"62906":2,"62907":8,"62908":5,"62909":5,"62910":8,"62911":7,"62912":9,"62913":8,"62914":4,"62915":7,"62916":8,"62917":4,"62918":10,"62919":3,"62920":7,"62921":9,"62922":1,"62923":5,"62924":7,"62925":2,"62926":8,"62927":7,"62928":9,"62929":7,"62930":3,"62931":3,"62932":9,"62933":5,"62934":8,"62935":7,"62936":2,"62937":8,"62938":5,"62939":4,"62940":2,"62941":8,"62942":9,"62943":10,"62944":9,"62945":5,"62946":7,"62947":5,"62948":8,"62949":7,"62950":8,"62951":8,"62952":7,"62953":10,"62954":2,"62955":8,"62956":8,"62957":5,"62958":4,"62959":7,"62960":5,"62961":8,"62962":9,"62963":6,"62964":10,"62965":10,"62966":7,"62967":8,"62968":8,"62969":4,"62970":8,"62971":8,"62972":10,"62973":3,"62974":3,"62975":7,"62976":3,"62977":7,"62978":8,"62979":7,"62980":3,"62981":6,"62982":2,"62983":1,"62984":10,"62985":10,"62986":7,"62987":7,"62988":7,"62989":7,"62990":8,"62991":5,"62992":2,"62993":8,"62994":8,"62995":5,"62996":6,"62997":7,"62998":7,"62999":10,"63000":8,"63001":2,"63002":4,"63003":3,"63004":9,"63005":8,"63006":9,"63007":7,"63008":7,"63009":7,"63010":8,"63011":2,"63012":8,"63013":3,"63014":7,"63015":5,"63016":8,"63017":9,"63018":8,"63019":7,"63020":3,"63021":2,"63022":8,"63023":4,"63024":8,"63025":8,"63026":8,"63027":8,"63028":2,"63029":2,"63030":2,"63031":7,"63032":8,"63033":7,"63034":7,"63035":8,"63036":9,"63037":2,"63038":3,"63039":7,"63040":5,"63041":9,"63042":9,"63043":3,"63044":4,"63045":8,"63046":8,"63047":2,"63048":8,"63049":8,"63050":6,"63051":8,"63052":3,"63053":2,"63054":7,"63055":2,"63056":9,"63057":2,"63058":1,"63059":7,"63060":9,"63061":7,"63062":7,"63063":7,"63064":8,"63065":6,"63066":1,"63067":8,"63068":9,"63069":8,"63070":8,"63071":9,"63072":9,"63073":8,"63074":8,"63075":5,"63076":2,"63077":2,"63078":8,"63079":9,"63080":8,"63081":7,"63082":5,"63083":9,"63084":5,"63085":9,"63086":9,"63087":8,"63088":6,"63089":9,"63090":8,"63091":1,"63092":5,"63093":9,"63094":7,"63095":9,"63096":4,"63097":8,"63098":7,"63099":1,"63100":10,"63101":2,"63102":7,"63103":5,"63104":9,"63105":5,"63106":2,"63107":8,"63108":9,"63109":8,"63110":7,"63111":8,"63112":2,"63113":5,"63114":7,"63115":7,"63116":9,"63117":4,"63118":7,"63119":7,"63120":10,"63121":2,"63122":7,"63123":2,"63124":3,"63125":9,"63126":9,"63127":2,"63128":3,"63129":2,"63130":1,"63131":6,"63132":2,"63133":6,"63134":8,"63135":4,"63136":7,"63137":9,"63138":4,"63139":9,"63140":7,"63141":7,"63142":1,"63143":5,"63144":7,"63145":8,"63146":7,"63147":5,"63148":10,"63149":9,"63150":2,"63151":8,"63152":4,"63153":7,"63154":2,"63155":8,"63156":6,"63157":8,"63158":8,"63159":3,"63160":7,"63161":7,"63162":10,"63163":2,"63164":2,"63165":3,"63166":9,"63167":5,"63168":1,"63169":1,"63170":1,"63171":3,"63172":7,"63173":8,"63174":7,"63175":6,"63176":3,"63177":7,"63178":8,"63179":5,"63180":5,"63181":5,"63182":7,"63183":9,"63184":2,"63185":8,"63186":7,"63187":8,"63188":6,"63189":5,"63190":9,"63191":9,"63192":2,"63193":7,"63194":8,"63195":2,"63196":7,"63197":9,"63198":8,"63199":7,"63200":2,"63201":9,"63202":7,"63203":2,"63204":5,"63205":5,"63206":2,"63207":6,"63208":7,"63209":8,"63210":1,"63211":3,"63212":7,"63213":7,"63214":7,"63215":8,"63216":8,"63217":2,"63218":8,"63219":8,"63220":8,"63221":7,"63222":10,"63223":8,"63224":9,"63225":7,"63226":9,"63227":4,"63228":8,"63229":8,"63230":8,"63231":6,"63232":9,"63233":9,"63234":3,"63235":5,"63236":8,"63237":9,"63238":3,"63239":4,"63240":7,"63241":9,"63242":8,"63243":8,"63244":9,"63245":1,"63246":4,"63247":8,"63248":7,"63249":5,"63250":7,"63251":2,"63252":10,"63253":8,"63254":8,"63255":7,"63256":2,"63257":9,"63258":7,"63259":8,"63260":8,"63261":7,"63262":4,"63263":5,"63264":3,"63265":7,"63266":9,"63267":9,"63268":5,"63269":7,"63270":7,"63271":6,"63272":8,"63273":4,"63274":5,"63275":7,"63276":1,"63277":3,"63278":7,"63279":7,"63280":8,"63281":7,"63282":7,"63283":4,"63284":8,"63285":6,"63286":7,"63287":10,"63288":9,"63289":8,"63290":5,"63291":7,"63292":2,"63293":8,"63294":8,"63295":7,"63296":7,"63297":8,"63298":5,"63299":8,"63300":9,"63301":8,"63302":9,"63303":7,"63304":7,"63305":4,"63306":2,"63307":7,"63308":9,"63309":4,"63310":4,"63311":8,"63312":8,"63313":6,"63314":1,"63315":5,"63316":4,"63317":7,"63318":4,"63319":7,"63320":7,"63321":3,"63322":6,"63323":2,"63324":7,"63325":7,"63326":6,"63327":9,"63328":9,"63329":2,"63330":6,"63331":7,"63332":6,"63333":3,"63334":8,"63335":2,"63336":8,"63337":7,"63338":6,"63339":4,"63340":9,"63341":7,"63342":2,"63343":9,"63344":8,"63345":7,"63346":7,"63347":6,"63348":7,"63349":9,"63350":7,"63351":8,"63352":2,"63353":7,"63354":5,"63355":7,"63356":7,"63357":8,"63358":5,"63359":5,"63360":9,"63361":8,"63362":5,"63363":8,"63364":10,"63365":2,"63366":7,"63367":7,"63368":2,"63369":9,"63370":8,"63371":10,"63372":9,"63373":5,"63374":10,"63375":1,"63376":2,"63377":2,"63378":7,"63379":8,"63380":2,"63381":2,"63382":10,"63383":10,"63384":2,"63385":8,"63386":2,"63387":7,"63388":9,"63389":5,"63390":9,"63391":2,"63392":9,"63393":8,"63394":2,"63395":2,"63396":9,"63397":6,"63398":9,"63399":9,"63400":7,"63401":2,"63402":4,"63403":6,"63404":8,"63405":7,"63406":3,"63407":2,"63408":5,"63409":4,"63410":10,"63411":9,"63412":9,"63413":6,"63414":9,"63415":9,"63416":9,"63417":8,"63418":1,"63419":8,"63420":7,"63421":9,"63422":3,"63423":7,"63424":10,"63425":3,"63426":9,"63427":5,"63428":10,"63429":4,"63430":8,"63431":2,"63432":3,"63433":3,"63434":9,"63435":8,"63436":3,"63437":5,"63438":6,"63439":7,"63440":10,"63441":6,"63442":8,"63443":3,"63444":7,"63445":8,"63446":5,"63447":10,"63448":7,"63449":7,"63450":8,"63451":3,"63452":9,"63453":9,"63454":2,"63455":2,"63456":10,"63457":7,"63458":8,"63459":7,"63460":7,"63461":9,"63462":7,"63463":8,"63464":9,"63465":10,"63466":9,"63467":4,"63468":1,"63469":8,"63470":7,"63471":7,"63472":3,"63473":9,"63474":5,"63475":9,"63476":9,"63477":3,"63478":10,"63479":8,"63480":8,"63481":1,"63482":9,"63483":5,"63484":7,"63485":9,"63486":1,"63487":7,"63488":5,"63489":9,"63490":2,"63491":8,"63492":8,"63493":6,"63494":9,"63495":7,"63496":7,"63497":5,"63498":2,"63499":9,"63500":9,"63501":3,"63502":2,"63503":9,"63504":8,"63505":8,"63506":9,"63507":5,"63508":1,"63509":8,"63510":8,"63511":5,"63512":7,"63513":6,"63514":3,"63515":10,"63516":7,"63517":1,"63518":8,"63519":9,"63520":8,"63521":3,"63522":10,"63523":7,"63524":4,"63525":10,"63526":7,"63527":4,"63528":7,"63529":2,"63530":6,"63531":4,"63532":7,"63533":7,"63534":8,"63535":8,"63536":7,"63537":1,"63538":8,"63539":5,"63540":9,"63541":8,"63542":8,"63543":7,"63544":7,"63545":8,"63546":8,"63547":7,"63548":2,"63549":7,"63550":5,"63551":6,"63552":8,"63553":9,"63554":3,"63555":7,"63556":8,"63557":8,"63558":9,"63559":6,"63560":2,"63561":10,"63562":7,"63563":9,"63564":6,"63565":8,"63566":8,"63567":7,"63568":7,"63569":3,"63570":9,"63571":7,"63572":8,"63573":3,"63574":1,"63575":8,"63576":7,"63577":9,"63578":10,"63579":5,"63580":8,"63581":2,"63582":5,"63583":8,"63584":7,"63585":8,"63586":1,"63587":5,"63588":6,"63589":7,"63590":2,"63591":6,"63592":10,"63593":6,"63594":8,"63595":7,"63596":1,"63597":9,"63598":7,"63599":1,"63600":7,"63601":3,"63602":8,"63603":7,"63604":2,"63605":7,"63606":7,"63607":2,"63608":8,"63609":8,"63610":4,"63611":7,"63612":9,"63613":5,"63614":7,"63615":5,"63616":7,"63617":1,"63618":8,"63619":7,"63620":1,"63621":3,"63622":9,"63623":7,"63624":5,"63625":8,"63626":3,"63627":9,"63628":5,"63629":5,"63630":4,"63631":9,"63632":7,"63633":9,"63634":7,"63635":7,"63636":2,"63637":7,"63638":10,"63639":5,"63640":7,"63641":8,"63642":9,"63643":5,"63644":8,"63645":2,"63646":9,"63647":9,"63648":3,"63649":2,"63650":8,"63651":9,"63652":1,"63653":2,"63654":9,"63655":4,"63656":8,"63657":5,"63658":8,"63659":7,"63660":7,"63661":7,"63662":3,"63663":8,"63664":4,"63665":7,"63666":9,"63667":8,"63668":1,"63669":5,"63670":4,"63671":7,"63672":7,"63673":10,"63674":7,"63675":1,"63676":10,"63677":3,"63678":5,"63679":2,"63680":3,"63681":7,"63682":7,"63683":7,"63684":7,"63685":6,"63686":4,"63687":2,"63688":8,"63689":6,"63690":2,"63691":6,"63692":7,"63693":9,"63694":8,"63695":6,"63696":7,"63697":6,"63698":9,"63699":3,"63700":10,"63701":9,"63702":10,"63703":8,"63704":8,"63705":8,"63706":4,"63707":1,"63708":8,"63709":10,"63710":7,"63711":4,"63712":6,"63713":7,"63714":9,"63715":9,"63716":9,"63717":2,"63718":9,"63719":2,"63720":8,"63721":7,"63722":1,"63723":9,"63724":2,"63725":1,"63726":8,"63727":9,"63728":4,"63729":5,"63730":2,"63731":10,"63732":6,"63733":9,"63734":5,"63735":7,"63736":7,"63737":7,"63738":5,"63739":4,"63740":4,"63741":7,"63742":8,"63743":8,"63744":2,"63745":7,"63746":8,"63747":7,"63748":8,"63749":10,"63750":6,"63751":10,"63752":9,"63753":3,"63754":9,"63755":5,"63756":7,"63757":9,"63758":7,"63759":7,"63760":8,"63761":6,"63762":7,"63763":6,"63764":8,"63765":4,"63766":9,"63767":2,"63768":9,"63769":8,"63770":5,"63771":5,"63772":9,"63773":8,"63774":7,"63775":4,"63776":7,"63777":8,"63778":9,"63779":7,"63780":8,"63781":5,"63782":1,"63783":5,"63784":2,"63785":7,"63786":9,"63787":2,"63788":5,"63789":7,"63790":9,"63791":8,"63792":9,"63793":2,"63794":2,"63795":7,"63796":8,"63797":6,"63798":2,"63799":6,"63800":3,"63801":9,"63802":2,"63803":8,"63804":3,"63805":8,"63806":7,"63807":5,"63808":3,"63809":7,"63810":5,"63811":8,"63812":7,"63813":10,"63814":8,"63815":7,"63816":8,"63817":7,"63818":5,"63819":7,"63820":5,"63821":7,"63822":1,"63823":9,"63824":7,"63825":3,"63826":10,"63827":8,"63828":9,"63829":2,"63830":8,"63831":8,"63832":7,"63833":4,"63834":6,"63835":8,"63836":2,"63837":5,"63838":10,"63839":1,"63840":4,"63841":1,"63842":8,"63843":8,"63844":8,"63845":5,"63846":8,"63847":7,"63848":8,"63849":7,"63850":7,"63851":2,"63852":9,"63853":8,"63854":6,"63855":7,"63856":7,"63857":7,"63858":9,"63859":8,"63860":3,"63861":9,"63862":8,"63863":5,"63864":8,"63865":7,"63866":6,"63867":7,"63868":8,"63869":4,"63870":9,"63871":10,"63872":8,"63873":6,"63874":9,"63875":8,"63876":9,"63877":4,"63878":3,"63879":8,"63880":9,"63881":9,"63882":5,"63883":7,"63884":9,"63885":2,"63886":8,"63887":2,"63888":7,"63889":10,"63890":3,"63891":8,"63892":9,"63893":7,"63894":8,"63895":5,"63896":2,"63897":8,"63898":1,"63899":4,"63900":8,"63901":2,"63902":9,"63903":10,"63904":10,"63905":5,"63906":8,"63907":10,"63908":2,"63909":7,"63910":5,"63911":6,"63912":5,"63913":7,"63914":7,"63915":7,"63916":9,"63917":9,"63918":7,"63919":8,"63920":9,"63921":5,"63922":7,"63923":5,"63924":2,"63925":8,"63926":7,"63927":9,"63928":10,"63929":8,"63930":2,"63931":9,"63932":5,"63933":8,"63934":8,"63935":5,"63936":3,"63937":7,"63938":6,"63939":9,"63940":2,"63941":1,"63942":3,"63943":7,"63944":5,"63945":8,"63946":7,"63947":4,"63948":8,"63949":7,"63950":2,"63951":5,"63952":8,"63953":2,"63954":7,"63955":8,"63956":10,"63957":10,"63958":5,"63959":8,"63960":7,"63961":1,"63962":8,"63963":9,"63964":8,"63965":7,"63966":1,"63967":7,"63968":9,"63969":3,"63970":4,"63971":7,"63972":10,"63973":8,"63974":3,"63975":9,"63976":8,"63977":2,"63978":6,"63979":10,"63980":9,"63981":4,"63982":6,"63983":8,"63984":7,"63985":9,"63986":7,"63987":4,"63988":8,"63989":3,"63990":8,"63991":8,"63992":3,"63993":10,"63994":9,"63995":2,"63996":9,"63997":7,"63998":7,"63999":3,"64000":8,"64001":5,"64002":9,"64003":5,"64004":8,"64005":7,"64006":3,"64007":10,"64008":9,"64009":2,"64010":10,"64011":7,"64012":6,"64013":5,"64014":5,"64015":4,"64016":9,"64017":8,"64018":9,"64019":2,"64020":8,"64021":9,"64022":7,"64023":8,"64024":2,"64025":8,"64026":7,"64027":8,"64028":1,"64029":6,"64030":5,"64031":9,"64032":1,"64033":8,"64034":4,"64035":3,"64036":8,"64037":8,"64038":8,"64039":3,"64040":8,"64041":7,"64042":10,"64043":6,"64044":8,"64045":7,"64046":2,"64047":6,"64048":3,"64049":2,"64050":2,"64051":9,"64052":4,"64053":2,"64054":5,"64055":5,"64056":9,"64057":8,"64058":2,"64059":2,"64060":9,"64061":1,"64062":2,"64063":8,"64064":6,"64065":1,"64066":1,"64067":9,"64068":10,"64069":7,"64070":7,"64071":8,"64072":8,"64073":8,"64074":8,"64075":5,"64076":2,"64077":7,"64078":8,"64079":7,"64080":9,"64081":7,"64082":7,"64083":7,"64084":5,"64085":4,"64086":5,"64087":8,"64088":8,"64089":9,"64090":8,"64091":7,"64092":9,"64093":9,"64094":7,"64095":9,"64096":9,"64097":9,"64098":9,"64099":9,"64100":7,"64101":1,"64102":8,"64103":8,"64104":8,"64105":10,"64106":8,"64107":7,"64108":8,"64109":7,"64110":8,"64111":8,"64112":7,"64113":2,"64114":2,"64115":2,"64116":8,"64117":7,"64118":8,"64119":5,"64120":8,"64121":10,"64122":8,"64123":2,"64124":7,"64125":5,"64126":8,"64127":7,"64128":6,"64129":8,"64130":5,"64131":8,"64132":4,"64133":7,"64134":8,"64135":9,"64136":6,"64137":5,"64138":8,"64139":1,"64140":9,"64141":5,"64142":8,"64143":5,"64144":9,"64145":1,"64146":9,"64147":6,"64148":3,"64149":6,"64150":7,"64151":8,"64152":6,"64153":9,"64154":3,"64155":9,"64156":8,"64157":9,"64158":7,"64159":8,"64160":8,"64161":7,"64162":7,"64163":7,"64164":4,"64165":7,"64166":1,"64167":1,"64168":7,"64169":2,"64170":5,"64171":5,"64172":5,"64173":6,"64174":3,"64175":7,"64176":6,"64177":8,"64178":8,"64179":9,"64180":8,"64181":7,"64182":7,"64183":9,"64184":7,"64185":5,"64186":2,"64187":8,"64188":9,"64189":9,"64190":10,"64191":9,"64192":3,"64193":10,"64194":3,"64195":7,"64196":7,"64197":5,"64198":10,"64199":7,"64200":8,"64201":3,"64202":8,"64203":4,"64204":6,"64205":9,"64206":7,"64207":8,"64208":7,"64209":7,"64210":4,"64211":7,"64212":4,"64213":5,"64214":7,"64215":9,"64216":3,"64217":8,"64218":2,"64219":4,"64220":7,"64221":8,"64222":8,"64223":8,"64224":2,"64225":5,"64226":9,"64227":2,"64228":7,"64229":7,"64230":3,"64231":8,"64232":5,"64233":4,"64234":10,"64235":5,"64236":8,"64237":9,"64238":9,"64239":10,"64240":7,"64241":4,"64242":7,"64243":7,"64244":7,"64245":7,"64246":5,"64247":3,"64248":5,"64249":8,"64250":2,"64251":10,"64252":7,"64253":9,"64254":8,"64255":9,"64256":5,"64257":8,"64258":10,"64259":8,"64260":6,"64261":9,"64262":9,"64263":7,"64264":5,"64265":9,"64266":7,"64267":2,"64268":2,"64269":8,"64270":3,"64271":9,"64272":9,"64273":7,"64274":5,"64275":6,"64276":2,"64277":8,"64278":7,"64279":1,"64280":8,"64281":5,"64282":8,"64283":8,"64284":7,"64285":7,"64286":7,"64287":2,"64288":8,"64289":1,"64290":10,"64291":9,"64292":8,"64293":10,"64294":9,"64295":2,"64296":8,"64297":5,"64298":2,"64299":7,"64300":7,"64301":2,"64302":7,"64303":8,"64304":8,"64305":7,"64306":1,"64307":7,"64308":2,"64309":1,"64310":6,"64311":5,"64312":5,"64313":7,"64314":2,"64315":8,"64316":2,"64317":7,"64318":1,"64319":2,"64320":9,"64321":8,"64322":8,"64323":8,"64324":5,"64325":6,"64326":7,"64327":8,"64328":9,"64329":5,"64330":4,"64331":8,"64332":9,"64333":6,"64334":9,"64335":3,"64336":8,"64337":8,"64338":7,"64339":8,"64340":9,"64341":9,"64342":9,"64343":6,"64344":1,"64345":7,"64346":8,"64347":5,"64348":9,"64349":2,"64350":9,"64351":8,"64352":9,"64353":1,"64354":7,"64355":7,"64356":7,"64357":9,"64358":9,"64359":8,"64360":8,"64361":9,"64362":4,"64363":8,"64364":10,"64365":5,"64366":4,"64367":10,"64368":8,"64369":7,"64370":4,"64371":6,"64372":6,"64373":1,"64374":7,"64375":8,"64376":2,"64377":7,"64378":1,"64379":10,"64380":5,"64381":6,"64382":9,"64383":8,"64384":7,"64385":8,"64386":2,"64387":7,"64388":1,"64389":7,"64390":5,"64391":1,"64392":3,"64393":5,"64394":5,"64395":9,"64396":8,"64397":7,"64398":4,"64399":10,"64400":8,"64401":5,"64402":9,"64403":9,"64404":8,"64405":8,"64406":7,"64407":10,"64408":2,"64409":9,"64410":8,"64411":9,"64412":9,"64413":5,"64414":2,"64415":10,"64416":5,"64417":1,"64418":9,"64419":9,"64420":5,"64421":5,"64422":9,"64423":9,"64424":4,"64425":7,"64426":1,"64427":7,"64428":6,"64429":8,"64430":8,"64431":8,"64432":8,"64433":9,"64434":4,"64435":2,"64436":2,"64437":6,"64438":10,"64439":1,"64440":4,"64441":5,"64442":7,"64443":7,"64444":4,"64445":7,"64446":8,"64447":8,"64448":5,"64449":7,"64450":3,"64451":6,"64452":5,"64453":6,"64454":8,"64455":9,"64456":8,"64457":2,"64458":3,"64459":3,"64460":9,"64461":2,"64462":7,"64463":8,"64464":4,"64465":9,"64466":4,"64467":8,"64468":1,"64469":7,"64470":10,"64471":5,"64472":9,"64473":8,"64474":2,"64475":9,"64476":2,"64477":4,"64478":8,"64479":1,"64480":4,"64481":2,"64482":7,"64483":8,"64484":6,"64485":8,"64486":8,"64487":2,"64488":7,"64489":8,"64490":8,"64491":5,"64492":6,"64493":10,"64494":8,"64495":6,"64496":2,"64497":8,"64498":8,"64499":4,"64500":1,"64501":2,"64502":7,"64503":8,"64504":1,"64505":9,"64506":9,"64507":8,"64508":2,"64509":6,"64510":10,"64511":6,"64512":3,"64513":8,"64514":7,"64515":9,"64516":4,"64517":8,"64518":8,"64519":2,"64520":9,"64521":7,"64522":9,"64523":6,"64524":8,"64525":10,"64526":9,"64527":8,"64528":1,"64529":9,"64530":3,"64531":4,"64532":7,"64533":8,"64534":7,"64535":7,"64536":8,"64537":5,"64538":7,"64539":7,"64540":7,"64541":5,"64542":8,"64543":9,"64544":7,"64545":7,"64546":6,"64547":2,"64548":5,"64549":1,"64550":2,"64551":5,"64552":9,"64553":8,"64554":7,"64555":8,"64556":7,"64557":8,"64558":9,"64559":6,"64560":8,"64561":8,"64562":7,"64563":7,"64564":7,"64565":8,"64566":2,"64567":6,"64568":1,"64569":5,"64570":5,"64571":8,"64572":9,"64573":5,"64574":8,"64575":9,"64576":7,"64577":3,"64578":7,"64579":10,"64580":10,"64581":8,"64582":2,"64583":7,"64584":5,"64585":9,"64586":9,"64587":7,"64588":5,"64589":9,"64590":2,"64591":5,"64592":6,"64593":3,"64594":4,"64595":5,"64596":6,"64597":7,"64598":7,"64599":7,"64600":2,"64601":8,"64602":9,"64603":2,"64604":3,"64605":9,"64606":7,"64607":2,"64608":7,"64609":9,"64610":5,"64611":7,"64612":9,"64613":8,"64614":9,"64615":6,"64616":2,"64617":5,"64618":7,"64619":8,"64620":6,"64621":7,"64622":7,"64623":7,"64624":9,"64625":8,"64626":5,"64627":8,"64628":5,"64629":3,"64630":1,"64631":5,"64632":5,"64633":3,"64634":1,"64635":9,"64636":3,"64637":9,"64638":1,"64639":9,"64640":7,"64641":2,"64642":7,"64643":2,"64644":10,"64645":7,"64646":2,"64647":9,"64648":2,"64649":2,"64650":8,"64651":2,"64652":2,"64653":7,"64654":2,"64655":8,"64656":4,"64657":8,"64658":7,"64659":9,"64660":7,"64661":8,"64662":9,"64663":2,"64664":6,"64665":8,"64666":10,"64667":8,"64668":9,"64669":7,"64670":6,"64671":7,"64672":7,"64673":6,"64674":10,"64675":8,"64676":9,"64677":9,"64678":9,"64679":8,"64680":7,"64681":4,"64682":8,"64683":2,"64684":5,"64685":7,"64686":8,"64687":9,"64688":8,"64689":9,"64690":1,"64691":5,"64692":7,"64693":9,"64694":6,"64695":9,"64696":10,"64697":3,"64698":9,"64699":2,"64700":9,"64701":7,"64702":10,"64703":7,"64704":9,"64705":9,"64706":8,"64707":7,"64708":2,"64709":1,"64710":6,"64711":5,"64712":4,"64713":2,"64714":7,"64715":10,"64716":8,"64717":2,"64718":8,"64719":9,"64720":9,"64721":9,"64722":8,"64723":7,"64724":1,"64725":8,"64726":8,"64727":7,"64728":10,"64729":9,"64730":4,"64731":7,"64732":2,"64733":9,"64734":7,"64735":7,"64736":7,"64737":5,"64738":8,"64739":8,"64740":7,"64741":10,"64742":9,"64743":7,"64744":3,"64745":10,"64746":8,"64747":7,"64748":2,"64749":8,"64750":5,"64751":8,"64752":10,"64753":7,"64754":7,"64755":8,"64756":8,"64757":5,"64758":7,"64759":10,"64760":2,"64761":6,"64762":9,"64763":6,"64764":7,"64765":8,"64766":10,"64767":8,"64768":7,"64769":5,"64770":10,"64771":5,"64772":4,"64773":7,"64774":6,"64775":6,"64776":8,"64777":6,"64778":10,"64779":9,"64780":5,"64781":3,"64782":7,"64783":7,"64784":3,"64785":3,"64786":1,"64787":6,"64788":7,"64789":3,"64790":9,"64791":9,"64792":8,"64793":8,"64794":2,"64795":8,"64796":5,"64797":9,"64798":9,"64799":9,"64800":9,"64801":7,"64802":3,"64803":7,"64804":8,"64805":9,"64806":4,"64807":10,"64808":2,"64809":7,"64810":7,"64811":10,"64812":8,"64813":2,"64814":3,"64815":5,"64816":5,"64817":8,"64818":4,"64819":4,"64820":2,"64821":8,"64822":8,"64823":5,"64824":2,"64825":7,"64826":8,"64827":8,"64828":7,"64829":5,"64830":7,"64831":9,"64832":5,"64833":9,"64834":9,"64835":8,"64836":9,"64837":7,"64838":7,"64839":2,"64840":8,"64841":9,"64842":7,"64843":9,"64844":4,"64845":1,"64846":2,"64847":4,"64848":8,"64849":8,"64850":9,"64851":10,"64852":8,"64853":7,"64854":8,"64855":2,"64856":7,"64857":3,"64858":2,"64859":2,"64860":9,"64861":7,"64862":10,"64863":8,"64864":4,"64865":7,"64866":10,"64867":4,"64868":8,"64869":1,"64870":8,"64871":2,"64872":6,"64873":4,"64874":5,"64875":7,"64876":9,"64877":9,"64878":7,"64879":8,"64880":3,"64881":7,"64882":7,"64883":5,"64884":3,"64885":7,"64886":2,"64887":7,"64888":2,"64889":2,"64890":2,"64891":7,"64892":7,"64893":7,"64894":5,"64895":1,"64896":8,"64897":8,"64898":6,"64899":10,"64900":2,"64901":9,"64902":8,"64903":7,"64904":6,"64905":2,"64906":9,"64907":8,"64908":8,"64909":1,"64910":5,"64911":7,"64912":10,"64913":8,"64914":7,"64915":3,"64916":2,"64917":8,"64918":8,"64919":5,"64920":3,"64921":9,"64922":2,"64923":3,"64924":5,"64925":7,"64926":5,"64927":10,"64928":6,"64929":9,"64930":7,"64931":1,"64932":7,"64933":3,"64934":5,"64935":9,"64936":8,"64937":9,"64938":2,"64939":7,"64940":8,"64941":2,"64942":2,"64943":5,"64944":8,"64945":3,"64946":9,"64947":10,"64948":9,"64949":1,"64950":5,"64951":3,"64952":9,"64953":7,"64954":9,"64955":9,"64956":7,"64957":8,"64958":8,"64959":5,"64960":10,"64961":1,"64962":3,"64963":5,"64964":10,"64965":9,"64966":5,"64967":7,"64968":10,"64969":7,"64970":8,"64971":6,"64972":7,"64973":8,"64974":7,"64975":10,"64976":7,"64977":3,"64978":5,"64979":3,"64980":9,"64981":1,"64982":9,"64983":5,"64984":8,"64985":10,"64986":10,"64987":7,"64988":10,"64989":9,"64990":8,"64991":9,"64992":8,"64993":8,"64994":1,"64995":8,"64996":1,"64997":4,"64998":3,"64999":2,"65000":9,"65001":8,"65002":2,"65003":1,"65004":8,"65005":3,"65006":3,"65007":9,"65008":10,"65009":5,"65010":3,"65011":8,"65012":9,"65013":7,"65014":5,"65015":5,"65016":2,"65017":2,"65018":5,"65019":9,"65020":8,"65021":9,"65022":7,"65023":8,"65024":7,"65025":5,"65026":6,"65027":6,"65028":3,"65029":3,"65030":5,"65031":8,"65032":5,"65033":7,"65034":9,"65035":9,"65036":7,"65037":8,"65038":2,"65039":7,"65040":7,"65041":10,"65042":8,"65043":7,"65044":6,"65045":5,"65046":6,"65047":1,"65048":9,"65049":10,"65050":9,"65051":6,"65052":7,"65053":10,"65054":3,"65055":10,"65056":2,"65057":8,"65058":2,"65059":1,"65060":2,"65061":1,"65062":7,"65063":7,"65064":8,"65065":7,"65066":10,"65067":5,"65068":1,"65069":3,"65070":9,"65071":7,"65072":1,"65073":1,"65074":8,"65075":1,"65076":4,"65077":7,"65078":9,"65079":2,"65080":5,"65081":7,"65082":7,"65083":8,"65084":8,"65085":9,"65086":6,"65087":8,"65088":6,"65089":7,"65090":6,"65091":5,"65092":7,"65093":7,"65094":9,"65095":9,"65096":8,"65097":7,"65098":6,"65099":8,"65100":7,"65101":10,"65102":1,"65103":2,"65104":5,"65105":7,"65106":9,"65107":6,"65108":8,"65109":4,"65110":7,"65111":9,"65112":7,"65113":2,"65114":9,"65115":8,"65116":2,"65117":6,"65118":8,"65119":8,"65120":2,"65121":8,"65122":3,"65123":1,"65124":5,"65125":10,"65126":8,"65127":3,"65128":7,"65129":8,"65130":7,"65131":9,"65132":2,"65133":8,"65134":6,"65135":3,"65136":5,"65137":4,"65138":10,"65139":8,"65140":9,"65141":4,"65142":4,"65143":1,"65144":9,"65145":1,"65146":9,"65147":10,"65148":8,"65149":2,"65150":8,"65151":3,"65152":2,"65153":4,"65154":5,"65155":7,"65156":8,"65157":9,"65158":1,"65159":9,"65160":5,"65161":9,"65162":8,"65163":9,"65164":1,"65165":4,"65166":4,"65167":9,"65168":2,"65169":8,"65170":9,"65171":9,"65172":1,"65173":2,"65174":7,"65175":5,"65176":3,"65177":8,"65178":8,"65179":4,"65180":5,"65181":6,"65182":2,"65183":2,"65184":5,"65185":9,"65186":8,"65187":7,"65188":7,"65189":9,"65190":3,"65191":9,"65192":4,"65193":6,"65194":9,"65195":8,"65196":7,"65197":6,"65198":4,"65199":4,"65200":7,"65201":6,"65202":5,"65203":7,"65204":2,"65205":8,"65206":7,"65207":7,"65208":7,"65209":4,"65210":4,"65211":7,"65212":7,"65213":8,"65214":4,"65215":3,"65216":9,"65217":7,"65218":2,"65219":5,"65220":1,"65221":5,"65222":8,"65223":3,"65224":3,"65225":1,"65226":4,"65227":1,"65228":7,"65229":2,"65230":8,"65231":7,"65232":9,"65233":8,"65234":7,"65235":2,"65236":5,"65237":8,"65238":9,"65239":5,"65240":7,"65241":9,"65242":5,"65243":3,"65244":2,"65245":9,"65246":10,"65247":2,"65248":8,"65249":8,"65250":7,"65251":8,"65252":7,"65253":7,"65254":9,"65255":7,"65256":7,"65257":8,"65258":9,"65259":9,"65260":9,"65261":3,"65262":7,"65263":8,"65264":8,"65265":9,"65266":6,"65267":7,"65268":7,"65269":9,"65270":2,"65271":4,"65272":1,"65273":8,"65274":5,"65275":7,"65276":10,"65277":5,"65278":8,"65279":7,"65280":8,"65281":9,"65282":2,"65283":7,"65284":2,"65285":1,"65286":2,"65287":7,"65288":9,"65289":1,"65290":7,"65291":7,"65292":8,"65293":8,"65294":9,"65295":4,"65296":9,"65297":7,"65298":7,"65299":5,"65300":9,"65301":3,"65302":3,"65303":7,"65304":1,"65305":5,"65306":5,"65307":7,"65308":9,"65309":7,"65310":4,"65311":7,"65312":7,"65313":8,"65314":10,"65315":9,"65316":10,"65317":2,"65318":2,"65319":9,"65320":9,"65321":4,"65322":9,"65323":8,"65324":4,"65325":3,"65326":5,"65327":9,"65328":5,"65329":10,"65330":3,"65331":7,"65332":8,"65333":8,"65334":7,"65335":7,"65336":8,"65337":10,"65338":10,"65339":8,"65340":2,"65341":7,"65342":10,"65343":8,"65344":2,"65345":8,"65346":7,"65347":8,"65348":2,"65349":5,"65350":9,"65351":5,"65352":7,"65353":8,"65354":7,"65355":5,"65356":7,"65357":9,"65358":5,"65359":5,"65360":6,"65361":9,"65362":2,"65363":4,"65364":9,"65365":7,"65366":5,"65367":6,"65368":9,"65369":2,"65370":9,"65371":9,"65372":8,"65373":2,"65374":10,"65375":2,"65376":5,"65377":7,"65378":2,"65379":2,"65380":8,"65381":8,"65382":5,"65383":9,"65384":9,"65385":10,"65386":2,"65387":4,"65388":9,"65389":9,"65390":6,"65391":7,"65392":7,"65393":5,"65394":9,"65395":10,"65396":7,"65397":8,"65398":9,"65399":2,"65400":6,"65401":10,"65402":8,"65403":4,"65404":9,"65405":6,"65406":5,"65407":7,"65408":7,"65409":5,"65410":10,"65411":10,"65412":8,"65413":6,"65414":8,"65415":8,"65416":7,"65417":8,"65418":3,"65419":9,"65420":8,"65421":5,"65422":7,"65423":7,"65424":8,"65425":8,"65426":2,"65427":9,"65428":10,"65429":3,"65430":8,"65431":9,"65432":9,"65433":6,"65434":4,"65435":5,"65436":8,"65437":8,"65438":8,"65439":9,"65440":8,"65441":2,"65442":6,"65443":2,"65444":5,"65445":9,"65446":9,"65447":8,"65448":8,"65449":8,"65450":4,"65451":2,"65452":7,"65453":1,"65454":2,"65455":8,"65456":7,"65457":7,"65458":5,"65459":7,"65460":2,"65461":3,"65462":7,"65463":7,"65464":6,"65465":9,"65466":8,"65467":5,"65468":8,"65469":8,"65470":8,"65471":8,"65472":9,"65473":5,"65474":10,"65475":5,"65476":5,"65477":7,"65478":7,"65479":3,"65480":6,"65481":8,"65482":5,"65483":9,"65484":5,"65485":9,"65486":8,"65487":6,"65488":7,"65489":2,"65490":2,"65491":5,"65492":5,"65493":2,"65494":8,"65495":7,"65496":2,"65497":5,"65498":2,"65499":9,"65500":7,"65501":1,"65502":9,"65503":9,"65504":7,"65505":8,"65506":2,"65507":9,"65508":7,"65509":4,"65510":8,"65511":2,"65512":7,"65513":7,"65514":7,"65515":7,"65516":3,"65517":8,"65518":4,"65519":2,"65520":5,"65521":1,"65522":6,"65523":6,"65524":8,"65525":2,"65526":10,"65527":7,"65528":7,"65529":2,"65530":1,"65531":8,"65532":7,"65533":5,"65534":7,"65535":1,"65536":7,"65537":9,"65538":7,"65539":5,"65540":10,"65541":1,"65542":7,"65543":7,"65544":5,"65545":7,"65546":5,"65547":5,"65548":2,"65549":6,"65550":6,"65551":10,"65552":5,"65553":6,"65554":5,"65555":5,"65556":7,"65557":10,"65558":2,"65559":8,"65560":8,"65561":8,"65562":7,"65563":9,"65564":3,"65565":3,"65566":9,"65567":10,"65568":9,"65569":1,"65570":9,"65571":9,"65572":3,"65573":7,"65574":1,"65575":3,"65576":4,"65577":4,"65578":6,"65579":2,"65580":7,"65581":7,"65582":8,"65583":5,"65584":4,"65585":7,"65586":6,"65587":5,"65588":7,"65589":7,"65590":2,"65591":2,"65592":9,"65593":8,"65594":8,"65595":7,"65596":8,"65597":9,"65598":4,"65599":7,"65600":8,"65601":8,"65602":9,"65603":6,"65604":8,"65605":4,"65606":2,"65607":6,"65608":7,"65609":8,"65610":5,"65611":2,"65612":4,"65613":1,"65614":1,"65615":6,"65616":7,"65617":9,"65618":4,"65619":8,"65620":5,"65621":8,"65622":9,"65623":5,"65624":1,"65625":7,"65626":8,"65627":2,"65628":3,"65629":9,"65630":3,"65631":7,"65632":1,"65633":7,"65634":8,"65635":8,"65636":9,"65637":9,"65638":8,"65639":2,"65640":7,"65641":9,"65642":8,"65643":8,"65644":2,"65645":2,"65646":8,"65647":8,"65648":10,"65649":5,"65650":8,"65651":5,"65652":8,"65653":4,"65654":2,"65655":4,"65656":2,"65657":5,"65658":8,"65659":7,"65660":2,"65661":2,"65662":2,"65663":2,"65664":7,"65665":1,"65666":2,"65667":2,"65668":3,"65669":7,"65670":8,"65671":7,"65672":9,"65673":8,"65674":2,"65675":8,"65676":7,"65677":9,"65678":9,"65679":5,"65680":7,"65681":9,"65682":5,"65683":9,"65684":6,"65685":1,"65686":8,"65687":2,"65688":8,"65689":3,"65690":2,"65691":9,"65692":1,"65693":7,"65694":5,"65695":5,"65696":4,"65697":5,"65698":9,"65699":7,"65700":7,"65701":5,"65702":1,"65703":2,"65704":5,"65705":7,"65706":7,"65707":7,"65708":4,"65709":1,"65710":9,"65711":8,"65712":8,"65713":10,"65714":8,"65715":9,"65716":2,"65717":8,"65718":8,"65719":8,"65720":6,"65721":8,"65722":8,"65723":5,"65724":2,"65725":8,"65726":10,"65727":10,"65728":3,"65729":10,"65730":3,"65731":7,"65732":8,"65733":9,"65734":2,"65735":7,"65736":3,"65737":7,"65738":7,"65739":10,"65740":8,"65741":5,"65742":9,"65743":3,"65744":9,"65745":8,"65746":7,"65747":8,"65748":7,"65749":1,"65750":4,"65751":6,"65752":2,"65753":1,"65754":9,"65755":7,"65756":8,"65757":4,"65758":2,"65759":7,"65760":9,"65761":6,"65762":7,"65763":8,"65764":2,"65765":4,"65766":4,"65767":10,"65768":10,"65769":9,"65770":9,"65771":7,"65772":4,"65773":8,"65774":7,"65775":9,"65776":8,"65777":9,"65778":5,"65779":7,"65780":7,"65781":7,"65782":8,"65783":4,"65784":9,"65785":7,"65786":6,"65787":3,"65788":8,"65789":5,"65790":5,"65791":2,"65792":7,"65793":4,"65794":2,"65795":2,"65796":4,"65797":1,"65798":4,"65799":7,"65800":8,"65801":9,"65802":9,"65803":7,"65804":1,"65805":10,"65806":1,"65807":8,"65808":9,"65809":9,"65810":7,"65811":6,"65812":7,"65813":7,"65814":7,"65815":8,"65816":5,"65817":7,"65818":7,"65819":8,"65820":7,"65821":9,"65822":7,"65823":5,"65824":5,"65825":1,"65826":7,"65827":9,"65828":8,"65829":7,"65830":7,"65831":5,"65832":6,"65833":2,"65834":8,"65835":8,"65836":5,"65837":4,"65838":7,"65839":8,"65840":2,"65841":2,"65842":5,"65843":8,"65844":8,"65845":3,"65846":3,"65847":9,"65848":1,"65849":6,"65850":5,"65851":7,"65852":10,"65853":5,"65854":10,"65855":9,"65856":7,"65857":5,"65858":5,"65859":1,"65860":8,"65861":9,"65862":1,"65863":5,"65864":7,"65865":3,"65866":8,"65867":5,"65868":7,"65869":1,"65870":10,"65871":10,"65872":5,"65873":7,"65874":10,"65875":7,"65876":7,"65877":1,"65878":1,"65879":3,"65880":2,"65881":2,"65882":5,"65883":9,"65884":7,"65885":7,"65886":8,"65887":8,"65888":1,"65889":3,"65890":2,"65891":9,"65892":1,"65893":9,"65894":2,"65895":7,"65896":5,"65897":7,"65898":1,"65899":9,"65900":1,"65901":2,"65902":4,"65903":5,"65904":2,"65905":8,"65906":1,"65907":8,"65908":1,"65909":2,"65910":8,"65911":9,"65912":7,"65913":5,"65914":7,"65915":5,"65916":7,"65917":5,"65918":9,"65919":2,"65920":2,"65921":8,"65922":7,"65923":2,"65924":2,"65925":10,"65926":8,"65927":3,"65928":9,"65929":7,"65930":7,"65931":5,"65932":3,"65933":8,"65934":3,"65935":1,"65936":5,"65937":8,"65938":8,"65939":5,"65940":8,"65941":5,"65942":8,"65943":7,"65944":7,"65945":7,"65946":5,"65947":2,"65948":8,"65949":10,"65950":8,"65951":8,"65952":6,"65953":5,"65954":1,"65955":7,"65956":2,"65957":8,"65958":7,"65959":8,"65960":7,"65961":2,"65962":9,"65963":1,"65964":7,"65965":8,"65966":9,"65967":7,"65968":2,"65969":5,"65970":7,"65971":7,"65972":7,"65973":6,"65974":9,"65975":8,"65976":9,"65977":7,"65978":8,"65979":8,"65980":1,"65981":7,"65982":7,"65983":5,"65984":8,"65985":2,"65986":5,"65987":6,"65988":6,"65989":8,"65990":4,"65991":7,"65992":3,"65993":7,"65994":2,"65995":7,"65996":8,"65997":2,"65998":4,"65999":6,"66000":7,"66001":3,"66002":8,"66003":7,"66004":5,"66005":7,"66006":7,"66007":2,"66008":7,"66009":2,"66010":5,"66011":8,"66012":7,"66013":2,"66014":5,"66015":5,"66016":8,"66017":10,"66018":2,"66019":7,"66020":9,"66021":9,"66022":6,"66023":10,"66024":3,"66025":8,"66026":1,"66027":10,"66028":9,"66029":7,"66030":2,"66031":8,"66032":7,"66033":9,"66034":6,"66035":7,"66036":8,"66037":3,"66038":9,"66039":10,"66040":2,"66041":2,"66042":5,"66043":7,"66044":7,"66045":6,"66046":2,"66047":9,"66048":2,"66049":8,"66050":6,"66051":10,"66052":7,"66053":2,"66054":7,"66055":7,"66056":7,"66057":10,"66058":1,"66059":7,"66060":8,"66061":7,"66062":2,"66063":5,"66064":9,"66065":2,"66066":5,"66067":8,"66068":3,"66069":1,"66070":5,"66071":2,"66072":9,"66073":3,"66074":7,"66075":7,"66076":5,"66077":8,"66078":5,"66079":9,"66080":7,"66081":8,"66082":2,"66083":8,"66084":1,"66085":5,"66086":7,"66087":3,"66088":5,"66089":8,"66090":2,"66091":7,"66092":1,"66093":5,"66094":7,"66095":8,"66096":8,"66097":8,"66098":2,"66099":7,"66100":8,"66101":2,"66102":9,"66103":8,"66104":8,"66105":2,"66106":5,"66107":4,"66108":7,"66109":8,"66110":7,"66111":7,"66112":4,"66113":7,"66114":8,"66115":8,"66116":8,"66117":8,"66118":8,"66119":7,"66120":9,"66121":7,"66122":6,"66123":8,"66124":7,"66125":10,"66126":10,"66127":7,"66128":9,"66129":1,"66130":8,"66131":9,"66132":2,"66133":8,"66134":7,"66135":2,"66136":8,"66137":7,"66138":7,"66139":8,"66140":8,"66141":8,"66142":8,"66143":9,"66144":8,"66145":7,"66146":10,"66147":8,"66148":8,"66149":4,"66150":9,"66151":5,"66152":3,"66153":8,"66154":2,"66155":10,"66156":5,"66157":10,"66158":3,"66159":7,"66160":7,"66161":8,"66162":9,"66163":7,"66164":2,"66165":8,"66166":9,"66167":6,"66168":2,"66169":9,"66170":10,"66171":10,"66172":8,"66173":8,"66174":8,"66175":8,"66176":7,"66177":7,"66178":5,"66179":10,"66180":7,"66181":5,"66182":5,"66183":8,"66184":2,"66185":7,"66186":9,"66187":9,"66188":6,"66189":8,"66190":2,"66191":10,"66192":1,"66193":7,"66194":3,"66195":7,"66196":7,"66197":7,"66198":9,"66199":9,"66200":9,"66201":8,"66202":5,"66203":8,"66204":3,"66205":8,"66206":1,"66207":6,"66208":10,"66209":8,"66210":7,"66211":8,"66212":8,"66213":2,"66214":7,"66215":9,"66216":4,"66217":8,"66218":7,"66219":8,"66220":7,"66221":4,"66222":7,"66223":8,"66224":9,"66225":2,"66226":2,"66227":7,"66228":2,"66229":7,"66230":9,"66231":8,"66232":1,"66233":2,"66234":10,"66235":2,"66236":8,"66237":9,"66238":9,"66239":7,"66240":7,"66241":5,"66242":7,"66243":9,"66244":4,"66245":7,"66246":9,"66247":7,"66248":3,"66249":5,"66250":3,"66251":1,"66252":2,"66253":7,"66254":9,"66255":2,"66256":9,"66257":8,"66258":6,"66259":9,"66260":7,"66261":9,"66262":7,"66263":7,"66264":7,"66265":7,"66266":7,"66267":4,"66268":8,"66269":7,"66270":3,"66271":10,"66272":2,"66273":3,"66274":5,"66275":7,"66276":9,"66277":8,"66278":9,"66279":8,"66280":1,"66281":7,"66282":7,"66283":2,"66284":6,"66285":7,"66286":4,"66287":1,"66288":7,"66289":6,"66290":5,"66291":5,"66292":3,"66293":8,"66294":7,"66295":7,"66296":10,"66297":7,"66298":4,"66299":9,"66300":3,"66301":3,"66302":7,"66303":7,"66304":2,"66305":5,"66306":2,"66307":5,"66308":8,"66309":10,"66310":5,"66311":8,"66312":1,"66313":7,"66314":8,"66315":9,"66316":5,"66317":4,"66318":4,"66319":5,"66320":6,"66321":1,"66322":3,"66323":7,"66324":2,"66325":5,"66326":7,"66327":8,"66328":8,"66329":9,"66330":7,"66331":7,"66332":8,"66333":2,"66334":7,"66335":8,"66336":3,"66337":8,"66338":8,"66339":7,"66340":3,"66341":8,"66342":5,"66343":8,"66344":8,"66345":5,"66346":10,"66347":7,"66348":7,"66349":7,"66350":9,"66351":2,"66352":5,"66353":9,"66354":10,"66355":9,"66356":6,"66357":7,"66358":2,"66359":8,"66360":8,"66361":8,"66362":5,"66363":5,"66364":4,"66365":7,"66366":8,"66367":2,"66368":8,"66369":8,"66370":8,"66371":1,"66372":9,"66373":9,"66374":8,"66375":9,"66376":8,"66377":5,"66378":7,"66379":10,"66380":9,"66381":2,"66382":8,"66383":7,"66384":9,"66385":1,"66386":9,"66387":7,"66388":7,"66389":5,"66390":9,"66391":9,"66392":3,"66393":8,"66394":2,"66395":7,"66396":9,"66397":10,"66398":2,"66399":8,"66400":9,"66401":5,"66402":8,"66403":8,"66404":8,"66405":8,"66406":8,"66407":7,"66408":5,"66409":4,"66410":8,"66411":7,"66412":9,"66413":9,"66414":9,"66415":8,"66416":8,"66417":8,"66418":9,"66419":9,"66420":8,"66421":7,"66422":8,"66423":7,"66424":2,"66425":10,"66426":9,"66427":2,"66428":9,"66429":8,"66430":3,"66431":9,"66432":5,"66433":9,"66434":8,"66435":1,"66436":7,"66437":9,"66438":10,"66439":10,"66440":7,"66441":8,"66442":10,"66443":5,"66444":8,"66445":7,"66446":7,"66447":5,"66448":9,"66449":8,"66450":8,"66451":8,"66452":2,"66453":9,"66454":2,"66455":9,"66456":5,"66457":9,"66458":2,"66459":4,"66460":7,"66461":9,"66462":7,"66463":9,"66464":7,"66465":6,"66466":9,"66467":5,"66468":6,"66469":4,"66470":8,"66471":5,"66472":7,"66473":7,"66474":8,"66475":5,"66476":6,"66477":8,"66478":4,"66479":10,"66480":2,"66481":3,"66482":8,"66483":9,"66484":7,"66485":5,"66486":7,"66487":8,"66488":7,"66489":6,"66490":7,"66491":8,"66492":10,"66493":10,"66494":10,"66495":1,"66496":8,"66497":3,"66498":3,"66499":9,"66500":9,"66501":8,"66502":6,"66503":7,"66504":7,"66505":7,"66506":7,"66507":7,"66508":7,"66509":3,"66510":5,"66511":8,"66512":5,"66513":2,"66514":6,"66515":5,"66516":9,"66517":4,"66518":5,"66519":7,"66520":9,"66521":9,"66522":8,"66523":9,"66524":7,"66525":8,"66526":3,"66527":8,"66528":8,"66529":10,"66530":7,"66531":8,"66532":4,"66533":7,"66534":5,"66535":8,"66536":10,"66537":8,"66538":9,"66539":9,"66540":2,"66541":9,"66542":6,"66543":6,"66544":7,"66545":8,"66546":7,"66547":6,"66548":8,"66549":8,"66550":4,"66551":1,"66552":10,"66553":6,"66554":2,"66555":7,"66556":1,"66557":9,"66558":3,"66559":1,"66560":8,"66561":8,"66562":9,"66563":6,"66564":8,"66565":8,"66566":1,"66567":8,"66568":4,"66569":10,"66570":7,"66571":7,"66572":6,"66573":7,"66574":5,"66575":7,"66576":9,"66577":3,"66578":7,"66579":2,"66580":7,"66581":7,"66582":7,"66583":8,"66584":8,"66585":5,"66586":7,"66587":8,"66588":8,"66589":7,"66590":9,"66591":9,"66592":7,"66593":3,"66594":7,"66595":8,"66596":8,"66597":1,"66598":3,"66599":9,"66600":9,"66601":10,"66602":8,"66603":7,"66604":9,"66605":10,"66606":7,"66607":2,"66608":8,"66609":6,"66610":2,"66611":9,"66612":3,"66613":2,"66614":9,"66615":8,"66616":7,"66617":7,"66618":7,"66619":9,"66620":7,"66621":7,"66622":9,"66623":9,"66624":5,"66625":6,"66626":5,"66627":4,"66628":9,"66629":8,"66630":2,"66631":10,"66632":8,"66633":8,"66634":7,"66635":6,"66636":7,"66637":9,"66638":2,"66639":7,"66640":8,"66641":7,"66642":3,"66643":7,"66644":7,"66645":7,"66646":9,"66647":10,"66648":9,"66649":8,"66650":7,"66651":7,"66652":7,"66653":7,"66654":8,"66655":5,"66656":9,"66657":3,"66658":9,"66659":6,"66660":6,"66661":9,"66662":8,"66663":2,"66664":7,"66665":5,"66666":9,"66667":2,"66668":4,"66669":7,"66670":2,"66671":2,"66672":7,"66673":9,"66674":2,"66675":7,"66676":7,"66677":8,"66678":8,"66679":1,"66680":8,"66681":7,"66682":4,"66683":2,"66684":7,"66685":8,"66686":9,"66687":8,"66688":10,"66689":6,"66690":6,"66691":2,"66692":7,"66693":6,"66694":9,"66695":9,"66696":2,"66697":2,"66698":3,"66699":5,"66700":4,"66701":9,"66702":8,"66703":7,"66704":7,"66705":4,"66706":7,"66707":8,"66708":7,"66709":3,"66710":8,"66711":9,"66712":3,"66713":5,"66714":4,"66715":7,"66716":2,"66717":3,"66718":6,"66719":7,"66720":8,"66721":8,"66722":7,"66723":5,"66724":7,"66725":2,"66726":8,"66727":7,"66728":7,"66729":8,"66730":1,"66731":7,"66732":8,"66733":4,"66734":2,"66735":7,"66736":9,"66737":10,"66738":2,"66739":7,"66740":8,"66741":8,"66742":8,"66743":2,"66744":8,"66745":5,"66746":8,"66747":10,"66748":9,"66749":8,"66750":6,"66751":7,"66752":6,"66753":8,"66754":2,"66755":9,"66756":7,"66757":4,"66758":10,"66759":3,"66760":8,"66761":9,"66762":9,"66763":8,"66764":2,"66765":8,"66766":8,"66767":7,"66768":10,"66769":7,"66770":6,"66771":7,"66772":9,"66773":10,"66774":5,"66775":8,"66776":2,"66777":9,"66778":4,"66779":3,"66780":7,"66781":5,"66782":3,"66783":7,"66784":2,"66785":8,"66786":8,"66787":7,"66788":1,"66789":8,"66790":9,"66791":2,"66792":4,"66793":8,"66794":3,"66795":2,"66796":10,"66797":9,"66798":8,"66799":8,"66800":2,"66801":7,"66802":5,"66803":8,"66804":9,"66805":2,"66806":7,"66807":2,"66808":2,"66809":7,"66810":2,"66811":2,"66812":2,"66813":7,"66814":6,"66815":8,"66816":10,"66817":8,"66818":8,"66819":2,"66820":8,"66821":5,"66822":9,"66823":8,"66824":4,"66825":8,"66826":5,"66827":5,"66828":3,"66829":2,"66830":2,"66831":1,"66832":8,"66833":8,"66834":5,"66835":7,"66836":8,"66837":2,"66838":8,"66839":4,"66840":2,"66841":3,"66842":2,"66843":1,"66844":8,"66845":4,"66846":7,"66847":8,"66848":4,"66849":9,"66850":7,"66851":9,"66852":8,"66853":9,"66854":1,"66855":3,"66856":6,"66857":7,"66858":7,"66859":8,"66860":8,"66861":7,"66862":8,"66863":5,"66864":1,"66865":10,"66866":8,"66867":8,"66868":4,"66869":8,"66870":8,"66871":7,"66872":1,"66873":2,"66874":5,"66875":5,"66876":8,"66877":9,"66878":9,"66879":2,"66880":8,"66881":7,"66882":8,"66883":4,"66884":8,"66885":8,"66886":8,"66887":2,"66888":10,"66889":2,"66890":9,"66891":9,"66892":6,"66893":10,"66894":6,"66895":7,"66896":7,"66897":7,"66898":9,"66899":2,"66900":1,"66901":8,"66902":7,"66903":5,"66904":5,"66905":8,"66906":9,"66907":5,"66908":3,"66909":8,"66910":8,"66911":10,"66912":6,"66913":3,"66914":10,"66915":7,"66916":9,"66917":4,"66918":8,"66919":7,"66920":7,"66921":7,"66922":2,"66923":10,"66924":8,"66925":7,"66926":5,"66927":10,"66928":9,"66929":8,"66930":9,"66931":8,"66932":5,"66933":8,"66934":8,"66935":7,"66936":2,"66937":9,"66938":8,"66939":8,"66940":7,"66941":8,"66942":2,"66943":8,"66944":2,"66945":7,"66946":7,"66947":8,"66948":8,"66949":7,"66950":3,"66951":1,"66952":10,"66953":8,"66954":3,"66955":6,"66956":2,"66957":9,"66958":8,"66959":9,"66960":8,"66961":5,"66962":7,"66963":8,"66964":9,"66965":7,"66966":9,"66967":7,"66968":7,"66969":7,"66970":8,"66971":7,"66972":7,"66973":9,"66974":5,"66975":3,"66976":9,"66977":8,"66978":5,"66979":8,"66980":7,"66981":8,"66982":9,"66983":7,"66984":5,"66985":7,"66986":2,"66987":9,"66988":9,"66989":7,"66990":7,"66991":2,"66992":5,"66993":4,"66994":1,"66995":8,"66996":8,"66997":8,"66998":7,"66999":2,"67000":9,"67001":8,"67002":7,"67003":9,"67004":8,"67005":10,"67006":5,"67007":10,"67008":4,"67009":5,"67010":7,"67011":9,"67012":7,"67013":9,"67014":9,"67015":7,"67016":3,"67017":7,"67018":3,"67019":8,"67020":5,"67021":9,"67022":9,"67023":5,"67024":9,"67025":9,"67026":8,"67027":7,"67028":6,"67029":7,"67030":9,"67031":1,"67032":2,"67033":2,"67034":9,"67035":8,"67036":7,"67037":5,"67038":4,"67039":8,"67040":8,"67041":8,"67042":5,"67043":10,"67044":2,"67045":2,"67046":9,"67047":9,"67048":9,"67049":5,"67050":9,"67051":7,"67052":2,"67053":8,"67054":3,"67055":6,"67056":5,"67057":7,"67058":10,"67059":4,"67060":8,"67061":8,"67062":7,"67063":6,"67064":8,"67065":2,"67066":8,"67067":5,"67068":5,"67069":4,"67070":8,"67071":8,"67072":5,"67073":1,"67074":2,"67075":5,"67076":1,"67077":9,"67078":8,"67079":9,"67080":9,"67081":9,"67082":4,"67083":3,"67084":7,"67085":9,"67086":9,"67087":9,"67088":9,"67089":6,"67090":8,"67091":9,"67092":2,"67093":6,"67094":4,"67095":6,"67096":7,"67097":7,"67098":5,"67099":8,"67100":2,"67101":8,"67102":8,"67103":10,"67104":9,"67105":7,"67106":3,"67107":5,"67108":10,"67109":8,"67110":2,"67111":5,"67112":3,"67113":5,"67114":3,"67115":2,"67116":7,"67117":9,"67118":2,"67119":8,"67120":9,"67121":5,"67122":7,"67123":6,"67124":8,"67125":3,"67126":2,"67127":7,"67128":3,"67129":7,"67130":5,"67131":8,"67132":2,"67133":3,"67134":10,"67135":7,"67136":1,"67137":9,"67138":10,"67139":7,"67140":9,"67141":1,"67142":5,"67143":5,"67144":6,"67145":9,"67146":9,"67147":5,"67148":8,"67149":2,"67150":7,"67151":6,"67152":5,"67153":7,"67154":8,"67155":7,"67156":8,"67157":9,"67158":2,"67159":5,"67160":9,"67161":10,"67162":2,"67163":7,"67164":8,"67165":5,"67166":7,"67167":8,"67168":9,"67169":8,"67170":7,"67171":4,"67172":8,"67173":9,"67174":8,"67175":2,"67176":8,"67177":8,"67178":8,"67179":5,"67180":9,"67181":6,"67182":8,"67183":2,"67184":7,"67185":8,"67186":3,"67187":9,"67188":5,"67189":9,"67190":7,"67191":7,"67192":7,"67193":8,"67194":9,"67195":8,"67196":1,"67197":10,"67198":10,"67199":9,"67200":8,"67201":8,"67202":5,"67203":3,"67204":7,"67205":4,"67206":7,"67207":9,"67208":1,"67209":8,"67210":7,"67211":7,"67212":1,"67213":6,"67214":7,"67215":4,"67216":8,"67217":9,"67218":6,"67219":9,"67220":3,"67221":9,"67222":7,"67223":10,"67224":4,"67225":5,"67226":8,"67227":7,"67228":8,"67229":9,"67230":5,"67231":8,"67232":2,"67233":8,"67234":9,"67235":5,"67236":7,"67237":3,"67238":9,"67239":7,"67240":1,"67241":7,"67242":8,"67243":5,"67244":8,"67245":8,"67246":2,"67247":9,"67248":8,"67249":1,"67250":2,"67251":7,"67252":4,"67253":6,"67254":5,"67255":5,"67256":7,"67257":8,"67258":2,"67259":1,"67260":5,"67261":7,"67262":6,"67263":2,"67264":9,"67265":2,"67266":2,"67267":5,"67268":8,"67269":5,"67270":10,"67271":9,"67272":5,"67273":2,"67274":8,"67275":8,"67276":7,"67277":9,"67278":9,"67279":9,"67280":2,"67281":8,"67282":8,"67283":8,"67284":4,"67285":2,"67286":5,"67287":8,"67288":7,"67289":7,"67290":10,"67291":7,"67292":8,"67293":8,"67294":2,"67295":1,"67296":3,"67297":5,"67298":4,"67299":8,"67300":7,"67301":10,"67302":8,"67303":10,"67304":2,"67305":9,"67306":8,"67307":10,"67308":7,"67309":2,"67310":7,"67311":7,"67312":8,"67313":10,"67314":7,"67315":5,"67316":8,"67317":8,"67318":5,"67319":8,"67320":2,"67321":4,"67322":7,"67323":7,"67324":5,"67325":3,"67326":9,"67327":5,"67328":10,"67329":1,"67330":8,"67331":7,"67332":9,"67333":8,"67334":2,"67335":9,"67336":6,"67337":7,"67338":7,"67339":9,"67340":4,"67341":8,"67342":2,"67343":7,"67344":7,"67345":9,"67346":5,"67347":4,"67348":8,"67349":7,"67350":8,"67351":8,"67352":4,"67353":5,"67354":8,"67355":8,"67356":5,"67357":9,"67358":2,"67359":4,"67360":2,"67361":1,"67362":7,"67363":10,"67364":7,"67365":5,"67366":6,"67367":7,"67368":5,"67369":9,"67370":9,"67371":6,"67372":9,"67373":1,"67374":8,"67375":3,"67376":8,"67377":8,"67378":9,"67379":10,"67380":6,"67381":9,"67382":6,"67383":9,"67384":8,"67385":4,"67386":1,"67387":9,"67388":5,"67389":7,"67390":8,"67391":5,"67392":9,"67393":7,"67394":4,"67395":9,"67396":5,"67397":5,"67398":10,"67399":8,"67400":2,"67401":8,"67402":5,"67403":10,"67404":9,"67405":8,"67406":7,"67407":4,"67408":9,"67409":5,"67410":7,"67411":6,"67412":2,"67413":5,"67414":9,"67415":4,"67416":10,"67417":8,"67418":9,"67419":2,"67420":9,"67421":7,"67422":10,"67423":1,"67424":9,"67425":9,"67426":6,"67427":9,"67428":8,"67429":3,"67430":8,"67431":8,"67432":5,"67433":8,"67434":8,"67435":8,"67436":10,"67437":5,"67438":5,"67439":3,"67440":6,"67441":2,"67442":7,"67443":5,"67444":8,"67445":1,"67446":8,"67447":2,"67448":8,"67449":8,"67450":9,"67451":2,"67452":2,"67453":9,"67454":2,"67455":6,"67456":6,"67457":7,"67458":1,"67459":9,"67460":8,"67461":8,"67462":7,"67463":8,"67464":8,"67465":7,"67466":4,"67467":8,"67468":9,"67469":2,"67470":10,"67471":7,"67472":2,"67473":10,"67474":7,"67475":8,"67476":7,"67477":7,"67478":8,"67479":8,"67480":5,"67481":10,"67482":7,"67483":8,"67484":7,"67485":7,"67486":2,"67487":8,"67488":5,"67489":9,"67490":10,"67491":9,"67492":10,"67493":8,"67494":9,"67495":9,"67496":6,"67497":4,"67498":1,"67499":7,"67500":2,"67501":4,"67502":8,"67503":8,"67504":7,"67505":7,"67506":4,"67507":8,"67508":2,"67509":4,"67510":4,"67511":1,"67512":9,"67513":4,"67514":7,"67515":8,"67516":8,"67517":9,"67518":7,"67519":7,"67520":3,"67521":10,"67522":10,"67523":9,"67524":7,"67525":2,"67526":5,"67527":9,"67528":9,"67529":9,"67530":5,"67531":9,"67532":2,"67533":8,"67534":8,"67535":2,"67536":6,"67537":7,"67538":4,"67539":5,"67540":8,"67541":5,"67542":2,"67543":5,"67544":7,"67545":1,"67546":7,"67547":8,"67548":7,"67549":5,"67550":8,"67551":7,"67552":9,"67553":8,"67554":8,"67555":10,"67556":1,"67557":7,"67558":2,"67559":5,"67560":7,"67561":1,"67562":2,"67563":8,"67564":7,"67565":1,"67566":9,"67567":8,"67568":9,"67569":9,"67570":9,"67571":2,"67572":8,"67573":4,"67574":9,"67575":7,"67576":7,"67577":7,"67578":2,"67579":7,"67580":10,"67581":10,"67582":7,"67583":8,"67584":5,"67585":10,"67586":9,"67587":5,"67588":7,"67589":8,"67590":3,"67591":9,"67592":9,"67593":8,"67594":7,"67595":9,"67596":5,"67597":4,"67598":2,"67599":1,"67600":1,"67601":5,"67602":10,"67603":4,"67604":7,"67605":4,"67606":7,"67607":9,"67608":8,"67609":8,"67610":9,"67611":8,"67612":6,"67613":9,"67614":7,"67615":9,"67616":5,"67617":2,"67618":2,"67619":7,"67620":7,"67621":6,"67622":7,"67623":9,"67624":1,"67625":7,"67626":7,"67627":2,"67628":9,"67629":7,"67630":9,"67631":8,"67632":5,"67633":2,"67634":8,"67635":8,"67636":1,"67637":7,"67638":8,"67639":1,"67640":8,"67641":6,"67642":6,"67643":1,"67644":2,"67645":4,"67646":8,"67647":3,"67648":5,"67649":10,"67650":7,"67651":5,"67652":3,"67653":3,"67654":1,"67655":9,"67656":2,"67657":7,"67658":7,"67659":8,"67660":1,"67661":8,"67662":5,"67663":8,"67664":7,"67665":8,"67666":8,"67667":9,"67668":9,"67669":7,"67670":2,"67671":2,"67672":8,"67673":1,"67674":8,"67675":7,"67676":8,"67677":9,"67678":4,"67679":4,"67680":10,"67681":8,"67682":7,"67683":10,"67684":2,"67685":5,"67686":2,"67687":8,"67688":4,"67689":9,"67690":7,"67691":8,"67692":8,"67693":7,"67694":8,"67695":7,"67696":9,"67697":1,"67698":7,"67699":8,"67700":9,"67701":9,"67702":7,"67703":7,"67704":1,"67705":8,"67706":7,"67707":8,"67708":9,"67709":9,"67710":7,"67711":8,"67712":4,"67713":2,"67714":5,"67715":7,"67716":3,"67717":2,"67718":2,"67719":7,"67720":7,"67721":10,"67722":10,"67723":1,"67724":2,"67725":8,"67726":9,"67727":9,"67728":1,"67729":9,"67730":8,"67731":9,"67732":5,"67733":9,"67734":8,"67735":8,"67736":4,"67737":5,"67738":9,"67739":4,"67740":5,"67741":5,"67742":7,"67743":10,"67744":9,"67745":7,"67746":2,"67747":10,"67748":4,"67749":10,"67750":9,"67751":7,"67752":1,"67753":3,"67754":9,"67755":8,"67756":8,"67757":2,"67758":1,"67759":9,"67760":8,"67761":7,"67762":5,"67763":3,"67764":8,"67765":6,"67766":2,"67767":4,"67768":4,"67769":7,"67770":8,"67771":7,"67772":5,"67773":5,"67774":2,"67775":8,"67776":8,"67777":8,"67778":2,"67779":9,"67780":6,"67781":8,"67782":4,"67783":9,"67784":9,"67785":2,"67786":8,"67787":8,"67788":10,"67789":7,"67790":4,"67791":7,"67792":10,"67793":2,"67794":9,"67795":1,"67796":2,"67797":3,"67798":8,"67799":8,"67800":7,"67801":6,"67802":8,"67803":5,"67804":8,"67805":5,"67806":6,"67807":3,"67808":5,"67809":7,"67810":8,"67811":7,"67812":6,"67813":8,"67814":1,"67815":10,"67816":10,"67817":1,"67818":7,"67819":7,"67820":8,"67821":5,"67822":4,"67823":9,"67824":2,"67825":8,"67826":7,"67827":4,"67828":8,"67829":1,"67830":9,"67831":8,"67832":2,"67833":3,"67834":1,"67835":9,"67836":2,"67837":8,"67838":8,"67839":9,"67840":2,"67841":1,"67842":7,"67843":6,"67844":2,"67845":2,"67846":7,"67847":7,"67848":5,"67849":10,"67850":8,"67851":7,"67852":5,"67853":8,"67854":10,"67855":10,"67856":2,"67857":8,"67858":8,"67859":2,"67860":9,"67861":9,"67862":9,"67863":5,"67864":9,"67865":1,"67866":9,"67867":8,"67868":5,"67869":8,"67870":3,"67871":8,"67872":9,"67873":4,"67874":7,"67875":7,"67876":7,"67877":5,"67878":5,"67879":5,"67880":8,"67881":7,"67882":3,"67883":2,"67884":3,"67885":7,"67886":9,"67887":5,"67888":5,"67889":9,"67890":5,"67891":9,"67892":9,"67893":8,"67894":4,"67895":9,"67896":7,"67897":4,"67898":7,"67899":9,"67900":4,"67901":7,"67902":9,"67903":7,"67904":9,"67905":7,"67906":9,"67907":2,"67908":3,"67909":3,"67910":2,"67911":6,"67912":2,"67913":1,"67914":7,"67915":8,"67916":7,"67917":7,"67918":6,"67919":8,"67920":10,"67921":2,"67922":2,"67923":3,"67924":7,"67925":7,"67926":6,"67927":9,"67928":4,"67929":9,"67930":4,"67931":2,"67932":7,"67933":8,"67934":5,"67935":2,"67936":7,"67937":8,"67938":5,"67939":1,"67940":8,"67941":9,"67942":2,"67943":7,"67944":6,"67945":2,"67946":7,"67947":5,"67948":3,"67949":1,"67950":7,"67951":7,"67952":6,"67953":2,"67954":6,"67955":4,"67956":6,"67957":3,"67958":1,"67959":6,"67960":1,"67961":3,"67962":3,"67963":7,"67964":8,"67965":9,"67966":8,"67967":8,"67968":7,"67969":10,"67970":7,"67971":9,"67972":9,"67973":8,"67974":2,"67975":4,"67976":8,"67977":9,"67978":5,"67979":5,"67980":7,"67981":6,"67982":10,"67983":7,"67984":7,"67985":8,"67986":10,"67987":5,"67988":2,"67989":4,"67990":10,"67991":7,"67992":1,"67993":10,"67994":7,"67995":10,"67996":9,"67997":8,"67998":7,"67999":9,"68000":6,"68001":8,"68002":7,"68003":2,"68004":8,"68005":8,"68006":5,"68007":7,"68008":10,"68009":7,"68010":9,"68011":6,"68012":9,"68013":2,"68014":9,"68015":2,"68016":7,"68017":1,"68018":5,"68019":8,"68020":2,"68021":8,"68022":2,"68023":8,"68024":10,"68025":6,"68026":9,"68027":2,"68028":2,"68029":1,"68030":8,"68031":6,"68032":8,"68033":8,"68034":7,"68035":9,"68036":10,"68037":10,"68038":7,"68039":2,"68040":1,"68041":8,"68042":8,"68043":3,"68044":8,"68045":9,"68046":2,"68047":7,"68048":3,"68049":2,"68050":8,"68051":8,"68052":2,"68053":3,"68054":5,"68055":3,"68056":9,"68057":2,"68058":10,"68059":9,"68060":8,"68061":7,"68062":7,"68063":9,"68064":6,"68065":6,"68066":7,"68067":7,"68068":7,"68069":9,"68070":7,"68071":7,"68072":1,"68073":9,"68074":6,"68075":2,"68076":7,"68077":9,"68078":4,"68079":5,"68080":8,"68081":9,"68082":1,"68083":4,"68084":8,"68085":2,"68086":8,"68087":1,"68088":7,"68089":3,"68090":9,"68091":7,"68092":8,"68093":8,"68094":5,"68095":9,"68096":7,"68097":5,"68098":7,"68099":6,"68100":3,"68101":6,"68102":7,"68103":2,"68104":7,"68105":9,"68106":2,"68107":8,"68108":8,"68109":3,"68110":9,"68111":9,"68112":7,"68113":4,"68114":7,"68115":8,"68116":3,"68117":1,"68118":8,"68119":2,"68120":9,"68121":7,"68122":9,"68123":7,"68124":3,"68125":7,"68126":2,"68127":3,"68128":10,"68129":8,"68130":1,"68131":10,"68132":9,"68133":4,"68134":2,"68135":2,"68136":3,"68137":9,"68138":4,"68139":8,"68140":10,"68141":2,"68142":10,"68143":7,"68144":10,"68145":8,"68146":10,"68147":9,"68148":8,"68149":9,"68150":5,"68151":2,"68152":9,"68153":1,"68154":9,"68155":4,"68156":2,"68157":9,"68158":9,"68159":6,"68160":8,"68161":9,"68162":3,"68163":10,"68164":7,"68165":8,"68166":6,"68167":8,"68168":2,"68169":4,"68170":5,"68171":8,"68172":6,"68173":4,"68174":9,"68175":3,"68176":9,"68177":8,"68178":7,"68179":5,"68180":1,"68181":3,"68182":7,"68183":8,"68184":3,"68185":8,"68186":9,"68187":4,"68188":7,"68189":10,"68190":9,"68191":5,"68192":8,"68193":7,"68194":7,"68195":9,"68196":3,"68197":7,"68198":7,"68199":7,"68200":1,"68201":8,"68202":7,"68203":7,"68204":5,"68205":8,"68206":4,"68207":10,"68208":8,"68209":5,"68210":2,"68211":8,"68212":10,"68213":10,"68214":7,"68215":3,"68216":9,"68217":9,"68218":10,"68219":7,"68220":9,"68221":7,"68222":3,"68223":7,"68224":3,"68225":4,"68226":8,"68227":5,"68228":9,"68229":5,"68230":7,"68231":5,"68232":5,"68233":3,"68234":4,"68235":2,"68236":4,"68237":7,"68238":3,"68239":9,"68240":5,"68241":1,"68242":8,"68243":7,"68244":5,"68245":7,"68246":3,"68247":7,"68248":8,"68249":6,"68250":7,"68251":3,"68252":9,"68253":9,"68254":1,"68255":10,"68256":8,"68257":5,"68258":8,"68259":9,"68260":5,"68261":9,"68262":5,"68263":7,"68264":7,"68265":7,"68266":8,"68267":7,"68268":4,"68269":9,"68270":5,"68271":5,"68272":5,"68273":5,"68274":10,"68275":5,"68276":6,"68277":2,"68278":8,"68279":8,"68280":8,"68281":9,"68282":8,"68283":3,"68284":8,"68285":5,"68286":2,"68287":5,"68288":7,"68289":1,"68290":8,"68291":8,"68292":7,"68293":7,"68294":8,"68295":8,"68296":9,"68297":8,"68298":1,"68299":7,"68300":5,"68301":8,"68302":8,"68303":9,"68304":5,"68305":7,"68306":4,"68307":8,"68308":7,"68309":10,"68310":8,"68311":1,"68312":2,"68313":9,"68314":2,"68315":9,"68316":1,"68317":2,"68318":8,"68319":9,"68320":1,"68321":10,"68322":4,"68323":2,"68324":8,"68325":2,"68326":4,"68327":10,"68328":6,"68329":9,"68330":3,"68331":9,"68332":7,"68333":9,"68334":6,"68335":5,"68336":8,"68337":3,"68338":3,"68339":3,"68340":8,"68341":7,"68342":4,"68343":7,"68344":5,"68345":9,"68346":8,"68347":6,"68348":9,"68349":7,"68350":8,"68351":5,"68352":7,"68353":7,"68354":5,"68355":8,"68356":8,"68357":2,"68358":8,"68359":6,"68360":8,"68361":4,"68362":8,"68363":9,"68364":9,"68365":9,"68366":2,"68367":8,"68368":5,"68369":10,"68370":7,"68371":6,"68372":9,"68373":6,"68374":7,"68375":2,"68376":5,"68377":9,"68378":8,"68379":8,"68380":1,"68381":5,"68382":4,"68383":8,"68384":10,"68385":3,"68386":8,"68387":7,"68388":8,"68389":8,"68390":9,"68391":9,"68392":9,"68393":9,"68394":8,"68395":10,"68396":4,"68397":6,"68398":2,"68399":8,"68400":8,"68401":3,"68402":5,"68403":5,"68404":2,"68405":4,"68406":9,"68407":8,"68408":6,"68409":2,"68410":8,"68411":1,"68412":3,"68413":2,"68414":9,"68415":2,"68416":7,"68417":7,"68418":7,"68419":7,"68420":9,"68421":8,"68422":8,"68423":7,"68424":1,"68425":8,"68426":9,"68427":10,"68428":7,"68429":9,"68430":8,"68431":2,"68432":7,"68433":9,"68434":4,"68435":5,"68436":7,"68437":2,"68438":8,"68439":8,"68440":6,"68441":3,"68442":7,"68443":8,"68444":10,"68445":10,"68446":8,"68447":2,"68448":9,"68449":4,"68450":7,"68451":7,"68452":9,"68453":5,"68454":7,"68455":1,"68456":8,"68457":5,"68458":8,"68459":1,"68460":5,"68461":1,"68462":7,"68463":6,"68464":7,"68465":4,"68466":9,"68467":9,"68468":8,"68469":10,"68470":9,"68471":6,"68472":6,"68473":6,"68474":3,"68475":6,"68476":1,"68477":9,"68478":2,"68479":7,"68480":2,"68481":2,"68482":6,"68483":8,"68484":8,"68485":7,"68486":5,"68487":2,"68488":8,"68489":4,"68490":5,"68491":8,"68492":7,"68493":2,"68494":7,"68495":9,"68496":5,"68497":7,"68498":6,"68499":1,"68500":5,"68501":4,"68502":3,"68503":1,"68504":8,"68505":7,"68506":5,"68507":10,"68508":7,"68509":2,"68510":2,"68511":10,"68512":7,"68513":7,"68514":2,"68515":8,"68516":9,"68517":5,"68518":8,"68519":5,"68520":9,"68521":9,"68522":9,"68523":9,"68524":8,"68525":9,"68526":1,"68527":8,"68528":9,"68529":5,"68530":3,"68531":7,"68532":5,"68533":6,"68534":8,"68535":8,"68536":9,"68537":3,"68538":5,"68539":8,"68540":5,"68541":8,"68542":10,"68543":5,"68544":9,"68545":6,"68546":9,"68547":8,"68548":7,"68549":2,"68550":1,"68551":8,"68552":10,"68553":9,"68554":9,"68555":5,"68556":10,"68557":8,"68558":8,"68559":8,"68560":7,"68561":9,"68562":3,"68563":1,"68564":2,"68565":7,"68566":9,"68567":10,"68568":7,"68569":7,"68570":2,"68571":7,"68572":8,"68573":9,"68574":5,"68575":10,"68576":3,"68577":3,"68578":9,"68579":6,"68580":5,"68581":5,"68582":7,"68583":7,"68584":7,"68585":7,"68586":4,"68587":2,"68588":7,"68589":4,"68590":3,"68591":8,"68592":10,"68593":1,"68594":2,"68595":5,"68596":7,"68597":1,"68598":7,"68599":5,"68600":9,"68601":7,"68602":5,"68603":10,"68604":10,"68605":3,"68606":8,"68607":9,"68608":8,"68609":8,"68610":9,"68611":8,"68612":4,"68613":10,"68614":8,"68615":3,"68616":8,"68617":8,"68618":6,"68619":7,"68620":7,"68621":8,"68622":8,"68623":7,"68624":9,"68625":9,"68626":9,"68627":9,"68628":5,"68629":8,"68630":7,"68631":6,"68632":9,"68633":2,"68634":8,"68635":7,"68636":4,"68637":10,"68638":8,"68639":8,"68640":8,"68641":7,"68642":7,"68643":1,"68644":3,"68645":8,"68646":8,"68647":9,"68648":9,"68649":5,"68650":4,"68651":4,"68652":5,"68653":7,"68654":7,"68655":8,"68656":8,"68657":3,"68658":8,"68659":6,"68660":9,"68661":10,"68662":7,"68663":7,"68664":2,"68665":8,"68666":8,"68667":9,"68668":7,"68669":8,"68670":1,"68671":8,"68672":5,"68673":10,"68674":7,"68675":7,"68676":1,"68677":7,"68678":5,"68679":7,"68680":10,"68681":5,"68682":2,"68683":8,"68684":9,"68685":7,"68686":10,"68687":9,"68688":6,"68689":9,"68690":5,"68691":9,"68692":2,"68693":8,"68694":6,"68695":8,"68696":7,"68697":5,"68698":7,"68699":2,"68700":10,"68701":1,"68702":9,"68703":2,"68704":6,"68705":10,"68706":7,"68707":7,"68708":7,"68709":9,"68710":9,"68711":9,"68712":8,"68713":6,"68714":2,"68715":9,"68716":7,"68717":2,"68718":3,"68719":6,"68720":8,"68721":3,"68722":7,"68723":9,"68724":1,"68725":8,"68726":7,"68727":7,"68728":7,"68729":3,"68730":8,"68731":9,"68732":9,"68733":2,"68734":1,"68735":2,"68736":2,"68737":7,"68738":8,"68739":3,"68740":8,"68741":2,"68742":5,"68743":2,"68744":7,"68745":2,"68746":8,"68747":8,"68748":8,"68749":8,"68750":9,"68751":9,"68752":6,"68753":1,"68754":3,"68755":10,"68756":10,"68757":9,"68758":9,"68759":9,"68760":10,"68761":8,"68762":7,"68763":7,"68764":9,"68765":6,"68766":8,"68767":9,"68768":7,"68769":10,"68770":9,"68771":8,"68772":2,"68773":9,"68774":8,"68775":6,"68776":8,"68777":1,"68778":1,"68779":5,"68780":7,"68781":7,"68782":8,"68783":2,"68784":7,"68785":3,"68786":10,"68787":7,"68788":4,"68789":9,"68790":10,"68791":10,"68792":1,"68793":9,"68794":9,"68795":9,"68796":5,"68797":7,"68798":7,"68799":5,"68800":2,"68801":5,"68802":4,"68803":8,"68804":9,"68805":8,"68806":9,"68807":9,"68808":7,"68809":9,"68810":7,"68811":8,"68812":8,"68813":1,"68814":10,"68815":9,"68816":1,"68817":9,"68818":10,"68819":8,"68820":8,"68821":5,"68822":5,"68823":5,"68824":6,"68825":8,"68826":10,"68827":3,"68828":3,"68829":6,"68830":7,"68831":5,"68832":9,"68833":5,"68834":7,"68835":2,"68836":8,"68837":4,"68838":8,"68839":6,"68840":7,"68841":9,"68842":9,"68843":8,"68844":2,"68845":7,"68846":7,"68847":2,"68848":7,"68849":2,"68850":6,"68851":4,"68852":5,"68853":7,"68854":7,"68855":2,"68856":7,"68857":7,"68858":9,"68859":7,"68860":2,"68861":7,"68862":8,"68863":1,"68864":6,"68865":3,"68866":7,"68867":8,"68868":6,"68869":2,"68870":2,"68871":8,"68872":8,"68873":5,"68874":7,"68875":4,"68876":7,"68877":8,"68878":3,"68879":9,"68880":8,"68881":10,"68882":10,"68883":4,"68884":8,"68885":7,"68886":7,"68887":4,"68888":7,"68889":1,"68890":5,"68891":6,"68892":2,"68893":3,"68894":9,"68895":7,"68896":2,"68897":9,"68898":7,"68899":8,"68900":7,"68901":4,"68902":7,"68903":7,"68904":9,"68905":1,"68906":4,"68907":5,"68908":9,"68909":2,"68910":9,"68911":7,"68912":3,"68913":8,"68914":9,"68915":8,"68916":2,"68917":8,"68918":7,"68919":7,"68920":7,"68921":7,"68922":3,"68923":7,"68924":7,"68925":3,"68926":8,"68927":4,"68928":7,"68929":7,"68930":7,"68931":2,"68932":7,"68933":8,"68934":9,"68935":10,"68936":9,"68937":2,"68938":2,"68939":3,"68940":9,"68941":9,"68942":8,"68943":10,"68944":2,"68945":2,"68946":7,"68947":8,"68948":3,"68949":9,"68950":9,"68951":7,"68952":7,"68953":7,"68954":7,"68955":9,"68956":7,"68957":7,"68958":8,"68959":7,"68960":4,"68961":8,"68962":10,"68963":7,"68964":8,"68965":7,"68966":6,"68967":9,"68968":9,"68969":7,"68970":6,"68971":9,"68972":3,"68973":5,"68974":10,"68975":3,"68976":8,"68977":10,"68978":8,"68979":1,"68980":4,"68981":4,"68982":5,"68983":8,"68984":6,"68985":7,"68986":9,"68987":9,"68988":8,"68989":8,"68990":8,"68991":10,"68992":7,"68993":9,"68994":9,"68995":3,"68996":8,"68997":7,"68998":8,"68999":5,"69000":10,"69001":7,"69002":5,"69003":8,"69004":8,"69005":8,"69006":9,"69007":7,"69008":8,"69009":9,"69010":7,"69011":8,"69012":8,"69013":7,"69014":9,"69015":8,"69016":8,"69017":7,"69018":9,"69019":7,"69020":9,"69021":8,"69022":9,"69023":7,"69024":7,"69025":2,"69026":8,"69027":7,"69028":7,"69029":7,"69030":5,"69031":8,"69032":9,"69033":10,"69034":10,"69035":9,"69036":5,"69037":7,"69038":4,"69039":8,"69040":9,"69041":8,"69042":9,"69043":9,"69044":5,"69045":2,"69046":2,"69047":5,"69048":1,"69049":3,"69050":7,"69051":6,"69052":9,"69053":7,"69054":3,"69055":4,"69056":7,"69057":4,"69058":2,"69059":5,"69060":7,"69061":9,"69062":9,"69063":7,"69064":5,"69065":7,"69066":7,"69067":9,"69068":8,"69069":8,"69070":2,"69071":7,"69072":9,"69073":9,"69074":5,"69075":7,"69076":8,"69077":9,"69078":5,"69079":1,"69080":5,"69081":5,"69082":9,"69083":9,"69084":7,"69085":8,"69086":5,"69087":2,"69088":9,"69089":7,"69090":10,"69091":5,"69092":10,"69093":8,"69094":7,"69095":1,"69096":7,"69097":8,"69098":8,"69099":8,"69100":9,"69101":10,"69102":8,"69103":9,"69104":2,"69105":1,"69106":6,"69107":9,"69108":8,"69109":4,"69110":2,"69111":7,"69112":8,"69113":7,"69114":6,"69115":10,"69116":2,"69117":1,"69118":9,"69119":7,"69120":2,"69121":1,"69122":4,"69123":4,"69124":9,"69125":8,"69126":10,"69127":5,"69128":4,"69129":7,"69130":2,"69131":7,"69132":2,"69133":9,"69134":7,"69135":5,"69136":4,"69137":9,"69138":8,"69139":9,"69140":7,"69141":4,"69142":7,"69143":1,"69144":6,"69145":6,"69146":9,"69147":1,"69148":2,"69149":8,"69150":9,"69151":1,"69152":7,"69153":8,"69154":10,"69155":1,"69156":7,"69157":3,"69158":7,"69159":9,"69160":7,"69161":7,"69162":6,"69163":8,"69164":8,"69165":9,"69166":2,"69167":9,"69168":9,"69169":8,"69170":5,"69171":6,"69172":7,"69173":8,"69174":6,"69175":5,"69176":2,"69177":3,"69178":5,"69179":3,"69180":1,"69181":4,"69182":2,"69183":8,"69184":8,"69185":7,"69186":5,"69187":9,"69188":7,"69189":8,"69190":1,"69191":2,"69192":2,"69193":9,"69194":7,"69195":7,"69196":9,"69197":8,"69198":9,"69199":10,"69200":5,"69201":10,"69202":8,"69203":7,"69204":3,"69205":3,"69206":6,"69207":2,"69208":8,"69209":1,"69210":9,"69211":2,"69212":8,"69213":9,"69214":7,"69215":9,"69216":4,"69217":9,"69218":9,"69219":8,"69220":2,"69221":8,"69222":8,"69223":5,"69224":8,"69225":10,"69226":2,"69227":2,"69228":10,"69229":1,"69230":4,"69231":5,"69232":5,"69233":2,"69234":9,"69235":8,"69236":7,"69237":5,"69238":8,"69239":8,"69240":2,"69241":1,"69242":3,"69243":2,"69244":2,"69245":7,"69246":7,"69247":7,"69248":6,"69249":5,"69250":8,"69251":2,"69252":7,"69253":2,"69254":8,"69255":8,"69256":8,"69257":9,"69258":8,"69259":9,"69260":10,"69261":6,"69262":3,"69263":10,"69264":8,"69265":8,"69266":8,"69267":5,"69268":8,"69269":2,"69270":8,"69271":2,"69272":8,"69273":9,"69274":7,"69275":8,"69276":5,"69277":7,"69278":7,"69279":7,"69280":8,"69281":9,"69282":2,"69283":7,"69284":7,"69285":2,"69286":8,"69287":2,"69288":8,"69289":7,"69290":8,"69291":4,"69292":9,"69293":2,"69294":8,"69295":3,"69296":6,"69297":6,"69298":8,"69299":8,"69300":2,"69301":7,"69302":8,"69303":10,"69304":5,"69305":2,"69306":8,"69307":9,"69308":7,"69309":9,"69310":2,"69311":3,"69312":8,"69313":8,"69314":8,"69315":6,"69316":9,"69317":4,"69318":9,"69319":7,"69320":8,"69321":9,"69322":7,"69323":5,"69324":9,"69325":6,"69326":5,"69327":8,"69328":6,"69329":9,"69330":7,"69331":4,"69332":5,"69333":6,"69334":2,"69335":2,"69336":1,"69337":5,"69338":7,"69339":9,"69340":4,"69341":5,"69342":10,"69343":5,"69344":8,"69345":10,"69346":4,"69347":5,"69348":7,"69349":7,"69350":9,"69351":5,"69352":2,"69353":10,"69354":1,"69355":7,"69356":9,"69357":2,"69358":8,"69359":8,"69360":9,"69361":3,"69362":7,"69363":8,"69364":8,"69365":7,"69366":3,"69367":4,"69368":7,"69369":8,"69370":3,"69371":7,"69372":3,"69373":7,"69374":2,"69375":10,"69376":4,"69377":8,"69378":4,"69379":8,"69380":9,"69381":9,"69382":5,"69383":9,"69384":10,"69385":9,"69386":8,"69387":9,"69388":5,"69389":8,"69390":9,"69391":9,"69392":9,"69393":3,"69394":3,"69395":5,"69396":2,"69397":8,"69398":3,"69399":8,"69400":2,"69401":9,"69402":7,"69403":9,"69404":5,"69405":2,"69406":10,"69407":7,"69408":9,"69409":5,"69410":2,"69411":9,"69412":9,"69413":8,"69414":3,"69415":8,"69416":9,"69417":5,"69418":5,"69419":4,"69420":5,"69421":1,"69422":7,"69423":2,"69424":9,"69425":9,"69426":8,"69427":5,"69428":7,"69429":8,"69430":8,"69431":8,"69432":1,"69433":7,"69434":7,"69435":9,"69436":7,"69437":7,"69438":8,"69439":7,"69440":7,"69441":8,"69442":9,"69443":6,"69444":8,"69445":9,"69446":8,"69447":4,"69448":7,"69449":4,"69450":9,"69451":7,"69452":7,"69453":2,"69454":4,"69455":9,"69456":7,"69457":7,"69458":7,"69459":7,"69460":4,"69461":8,"69462":1,"69463":9,"69464":9,"69465":2,"69466":5,"69467":7,"69468":7,"69469":8,"69470":9,"69471":6,"69472":8,"69473":1,"69474":5,"69475":4,"69476":4,"69477":9,"69478":4,"69479":8,"69480":7,"69481":9,"69482":7,"69483":10,"69484":2,"69485":8,"69486":9,"69487":5,"69488":9,"69489":2,"69490":10,"69491":4,"69492":9,"69493":10,"69494":5,"69495":9,"69496":8,"69497":9,"69498":10,"69499":7,"69500":8,"69501":9,"69502":9,"69503":8,"69504":2,"69505":3,"69506":9,"69507":6,"69508":4,"69509":8,"69510":1,"69511":8,"69512":1,"69513":5,"69514":8,"69515":9,"69516":7,"69517":7,"69518":7,"69519":9,"69520":5,"69521":9,"69522":8,"69523":3,"69524":6,"69525":9,"69526":8,"69527":5,"69528":8,"69529":8,"69530":9,"69531":1,"69532":8,"69533":7,"69534":7,"69535":8,"69536":3,"69537":6,"69538":9,"69539":6,"69540":1,"69541":8,"69542":1,"69543":4,"69544":8,"69545":8,"69546":8,"69547":7,"69548":6,"69549":5,"69550":9,"69551":9,"69552":8,"69553":9,"69554":9,"69555":8,"69556":7,"69557":8,"69558":5,"69559":1,"69560":8,"69561":8,"69562":9,"69563":6,"69564":6,"69565":2,"69566":2,"69567":8,"69568":3,"69569":8,"69570":9,"69571":2,"69572":8,"69573":3,"69574":1,"69575":9,"69576":9,"69577":9,"69578":9,"69579":9,"69580":4,"69581":9,"69582":8,"69583":7,"69584":5,"69585":3,"69586":8,"69587":2,"69588":1,"69589":8,"69590":9,"69591":7,"69592":2,"69593":8,"69594":9,"69595":9,"69596":4,"69597":7,"69598":5,"69599":7,"69600":5,"69601":8,"69602":9,"69603":7,"69604":7,"69605":7,"69606":8,"69607":9,"69608":2,"69609":3,"69610":10,"69611":2,"69612":1,"69613":8,"69614":9,"69615":2,"69616":2,"69617":7,"69618":7,"69619":7,"69620":4,"69621":2,"69622":7,"69623":7,"69624":7,"69625":7,"69626":5,"69627":5,"69628":2,"69629":7,"69630":4,"69631":8,"69632":4,"69633":5,"69634":3,"69635":2,"69636":8,"69637":8,"69638":5,"69639":2,"69640":8,"69641":7,"69642":2,"69643":7,"69644":5,"69645":9,"69646":7,"69647":4,"69648":6,"69649":6,"69650":5,"69651":8,"69652":9,"69653":2,"69654":9,"69655":8,"69656":8,"69657":9,"69658":7,"69659":7,"69660":7,"69661":8,"69662":8,"69663":8,"69664":2,"69665":5,"69666":7,"69667":5,"69668":4,"69669":7,"69670":4,"69671":7,"69672":7,"69673":6,"69674":9,"69675":1,"69676":9,"69677":3,"69678":2,"69679":7,"69680":9,"69681":2,"69682":7,"69683":2,"69684":9,"69685":2,"69686":7,"69687":7,"69688":7,"69689":2,"69690":3,"69691":2,"69692":2,"69693":9,"69694":8,"69695":7,"69696":7,"69697":8,"69698":9,"69699":2,"69700":8,"69701":9,"69702":7,"69703":7,"69704":2,"69705":9,"69706":7,"69707":9,"69708":10,"69709":7,"69710":2,"69711":10,"69712":7,"69713":8,"69714":4,"69715":4,"69716":9,"69717":2,"69718":3,"69719":3,"69720":8,"69721":7,"69722":9,"69723":4,"69724":7,"69725":9,"69726":2,"69727":3,"69728":2,"69729":3,"69730":9,"69731":5,"69732":9,"69733":9,"69734":7,"69735":3,"69736":9,"69737":7,"69738":9,"69739":6,"69740":8,"69741":10,"69742":5,"69743":9,"69744":2,"69745":4,"69746":9,"69747":7,"69748":9,"69749":7,"69750":4,"69751":8,"69752":7,"69753":4,"69754":9,"69755":7,"69756":8,"69757":8,"69758":9,"69759":9,"69760":6,"69761":3,"69762":8,"69763":3,"69764":7,"69765":10,"69766":8,"69767":8,"69768":3,"69769":5,"69770":9,"69771":7,"69772":9,"69773":8,"69774":2,"69775":8,"69776":2,"69777":10,"69778":1,"69779":9,"69780":9,"69781":8,"69782":7,"69783":1,"69784":7,"69785":3,"69786":8,"69787":5,"69788":5,"69789":1,"69790":7,"69791":10,"69792":7,"69793":8,"69794":3,"69795":9,"69796":2,"69797":1,"69798":8,"69799":8,"69800":2,"69801":3,"69802":7,"69803":2,"69804":7,"69805":8,"69806":3,"69807":8,"69808":7,"69809":6,"69810":8,"69811":8,"69812":5,"69813":8,"69814":6,"69815":3,"69816":8,"69817":10,"69818":6,"69819":10,"69820":8,"69821":2,"69822":8,"69823":5,"69824":3,"69825":5,"69826":7,"69827":4,"69828":7,"69829":8,"69830":7,"69831":8,"69832":10,"69833":5,"69834":10,"69835":6,"69836":4,"69837":1,"69838":7,"69839":4,"69840":10,"69841":8,"69842":6,"69843":2,"69844":7,"69845":9,"69846":6,"69847":1,"69848":8,"69849":7,"69850":4,"69851":7,"69852":2,"69853":5,"69854":7,"69855":9,"69856":2,"69857":7,"69858":4,"69859":10,"69860":8,"69861":9,"69862":8,"69863":9,"69864":7,"69865":9,"69866":8,"69867":7,"69868":8,"69869":5,"69870":9,"69871":2,"69872":8,"69873":7,"69874":8,"69875":8,"69876":2,"69877":7,"69878":8,"69879":4,"69880":5,"69881":8,"69882":9,"69883":9,"69884":9,"69885":9,"69886":5,"69887":8,"69888":3,"69889":4,"69890":8,"69891":9,"69892":8,"69893":8,"69894":9,"69895":8,"69896":4,"69897":9,"69898":8,"69899":7,"69900":8,"69901":2,"69902":1,"69903":8,"69904":7,"69905":5,"69906":7,"69907":8,"69908":8,"69909":9,"69910":9,"69911":8,"69912":9,"69913":5,"69914":3,"69915":3,"69916":9,"69917":2,"69918":5,"69919":5,"69920":8,"69921":8,"69922":8,"69923":4,"69924":8,"69925":7,"69926":3,"69927":7,"69928":3,"69929":5,"69930":10,"69931":1,"69932":10,"69933":8,"69934":3,"69935":7,"69936":7,"69937":4,"69938":7,"69939":9,"69940":7,"69941":9,"69942":2,"69943":2,"69944":3,"69945":8,"69946":9,"69947":9,"69948":4,"69949":8,"69950":7,"69951":2,"69952":7,"69953":5,"69954":5,"69955":8,"69956":8,"69957":7,"69958":8,"69959":7,"69960":7,"69961":7,"69962":8,"69963":8,"69964":7,"69965":7,"69966":8,"69967":1,"69968":8,"69969":1,"69970":7,"69971":5,"69972":3,"69973":8,"69974":5,"69975":2,"69976":10,"69977":9,"69978":3,"69979":7,"69980":10,"69981":9,"69982":7,"69983":9,"69984":10,"69985":8,"69986":9,"69987":2,"69988":1,"69989":9,"69990":8,"69991":8,"69992":6,"69993":10,"69994":3,"69995":8,"69996":7,"69997":8,"69998":7,"69999":7,"70000":9,"70001":1,"70002":7,"70003":7,"70004":7,"70005":5,"70006":9,"70007":10,"70008":3,"70009":9,"70010":2,"70011":5,"70012":6,"70013":7,"70014":8,"70015":5,"70016":1,"70017":8,"70018":2,"70019":8,"70020":7,"70021":5,"70022":8,"70023":8,"70024":8,"70025":7,"70026":7,"70027":7,"70028":8,"70029":8,"70030":9,"70031":2,"70032":8,"70033":9,"70034":8,"70035":2,"70036":3,"70037":3,"70038":9,"70039":7,"70040":7,"70041":5,"70042":9,"70043":6,"70044":8,"70045":1,"70046":8,"70047":3,"70048":7,"70049":8,"70050":6,"70051":2,"70052":8,"70053":6,"70054":1,"70055":7,"70056":7,"70057":5,"70058":7,"70059":8,"70060":1,"70061":2,"70062":7,"70063":9,"70064":9,"70065":8,"70066":5,"70067":7,"70068":9,"70069":7,"70070":7,"70071":9,"70072":6,"70073":5,"70074":8,"70075":10,"70076":9,"70077":5,"70078":2,"70079":8,"70080":2,"70081":8,"70082":8,"70083":8,"70084":2,"70085":7,"70086":6,"70087":8,"70088":8,"70089":5,"70090":2,"70091":9,"70092":1,"70093":5,"70094":8,"70095":8,"70096":10,"70097":2,"70098":9,"70099":7,"70100":5,"70101":4,"70102":10,"70103":5,"70104":3,"70105":9,"70106":1,"70107":7,"70108":7,"70109":9,"70110":10,"70111":4,"70112":8,"70113":1,"70114":9,"70115":2,"70116":8,"70117":8,"70118":9,"70119":2,"70120":9,"70121":9,"70122":3,"70123":5,"70124":7,"70125":5,"70126":9,"70127":6,"70128":9,"70129":7,"70130":9,"70131":5,"70132":6,"70133":7,"70134":8,"70135":3,"70136":3,"70137":7,"70138":7,"70139":9,"70140":7,"70141":9,"70142":1,"70143":1,"70144":9,"70145":3,"70146":9,"70147":10,"70148":9,"70149":7,"70150":8,"70151":2,"70152":8,"70153":10,"70154":7,"70155":7,"70156":2,"70157":2,"70158":6,"70159":7,"70160":7,"70161":5,"70162":7,"70163":4,"70164":8,"70165":9,"70166":8,"70167":7,"70168":10,"70169":9,"70170":7,"70171":7,"70172":7,"70173":1,"70174":9,"70175":6,"70176":5,"70177":9,"70178":8,"70179":8,"70180":7,"70181":3,"70182":7,"70183":2,"70184":9,"70185":4,"70186":7,"70187":7,"70188":8,"70189":5,"70190":7,"70191":2,"70192":4,"70193":7,"70194":5,"70195":9,"70196":9,"70197":6,"70198":8,"70199":9,"70200":7,"70201":8,"70202":2,"70203":8,"70204":8,"70205":7,"70206":5,"70207":8,"70208":5,"70209":9,"70210":7,"70211":8,"70212":4,"70213":5,"70214":5,"70215":8,"70216":8,"70217":1,"70218":8,"70219":9,"70220":10,"70221":9,"70222":8,"70223":2,"70224":7,"70225":9,"70226":7,"70227":8,"70228":10,"70229":6,"70230":8,"70231":7,"70232":8,"70233":7,"70234":9,"70235":8,"70236":5,"70237":9,"70238":9,"70239":2,"70240":9,"70241":8,"70242":8,"70243":7,"70244":7,"70245":8,"70246":5,"70247":9,"70248":9,"70249":8,"70250":1,"70251":9,"70252":9,"70253":4,"70254":2,"70255":8,"70256":8,"70257":9,"70258":7,"70259":6,"70260":8,"70261":8,"70262":7,"70263":3,"70264":2,"70265":7,"70266":9,"70267":7,"70268":7,"70269":7,"70270":7,"70271":3,"70272":3,"70273":8,"70274":5,"70275":9,"70276":7,"70277":8,"70278":7,"70279":8,"70280":7,"70281":7,"70282":3,"70283":2,"70284":9,"70285":5,"70286":2,"70287":4,"70288":9,"70289":7,"70290":2,"70291":7,"70292":1,"70293":9,"70294":7,"70295":9,"70296":7,"70297":3,"70298":2,"70299":4,"70300":7,"70301":7,"70302":1,"70303":8,"70304":8,"70305":2,"70306":10,"70307":4,"70308":10,"70309":7,"70310":7,"70311":3,"70312":2,"70313":8,"70314":7,"70315":7,"70316":2,"70317":10,"70318":2,"70319":9,"70320":4,"70321":2,"70322":3,"70323":8,"70324":5,"70325":2,"70326":7,"70327":4,"70328":9,"70329":4,"70330":8,"70331":8,"70332":7,"70333":7,"70334":9,"70335":10,"70336":7,"70337":7,"70338":8,"70339":2,"70340":6,"70341":4,"70342":1,"70343":8,"70344":9,"70345":5,"70346":8,"70347":2,"70348":7,"70349":9,"70350":10,"70351":8,"70352":7,"70353":8,"70354":9,"70355":5,"70356":8,"70357":7,"70358":6,"70359":9,"70360":4,"70361":9,"70362":9,"70363":8,"70364":4,"70365":8,"70366":10,"70367":10,"70368":1,"70369":9,"70370":1,"70371":8,"70372":5,"70373":4,"70374":8,"70375":4,"70376":2,"70377":7,"70378":1,"70379":7,"70380":9,"70381":4,"70382":9,"70383":8,"70384":6,"70385":7,"70386":2,"70387":7,"70388":7,"70389":7,"70390":1,"70391":2,"70392":9,"70393":8,"70394":9,"70395":6,"70396":6,"70397":9,"70398":7,"70399":9,"70400":10,"70401":8,"70402":7,"70403":5,"70404":8,"70405":9,"70406":10,"70407":5,"70408":7,"70409":6,"70410":1,"70411":3,"70412":9,"70413":9,"70414":1,"70415":6,"70416":8,"70417":8,"70418":9,"70419":9,"70420":6,"70421":3,"70422":8,"70423":3,"70424":8,"70425":3,"70426":3,"70427":7,"70428":7,"70429":8,"70430":10,"70431":9,"70432":3,"70433":7,"70434":8,"70435":10,"70436":7,"70437":4,"70438":9,"70439":4,"70440":5,"70441":2,"70442":10,"70443":7,"70444":2,"70445":7,"70446":2,"70447":8,"70448":9,"70449":7,"70450":5,"70451":6,"70452":3,"70453":1,"70454":10,"70455":7,"70456":7,"70457":4,"70458":10,"70459":9,"70460":10,"70461":5,"70462":7,"70463":5,"70464":2,"70465":7,"70466":10,"70467":8,"70468":10,"70469":7,"70470":7,"70471":8,"70472":7,"70473":1,"70474":8,"70475":6,"70476":2,"70477":9,"70478":7,"70479":7,"70480":8,"70481":8,"70482":7,"70483":9,"70484":2,"70485":8,"70486":8,"70487":8,"70488":7,"70489":5,"70490":2,"70491":9,"70492":8,"70493":8,"70494":7,"70495":8,"70496":9,"70497":9,"70498":9,"70499":7,"70500":7,"70501":2,"70502":8,"70503":9,"70504":9,"70505":10,"70506":9,"70507":5,"70508":9,"70509":7,"70510":5,"70511":8,"70512":7,"70513":3,"70514":9,"70515":6,"70516":7,"70517":5,"70518":8,"70519":10,"70520":10,"70521":4,"70522":6,"70523":2,"70524":1,"70525":7,"70526":7,"70527":8,"70528":4,"70529":8,"70530":8,"70531":7,"70532":1,"70533":7,"70534":6,"70535":1,"70536":8,"70537":9,"70538":1,"70539":8,"70540":1,"70541":8,"70542":9,"70543":8,"70544":10,"70545":1,"70546":9,"70547":8,"70548":5,"70549":9,"70550":9,"70551":6,"70552":3,"70553":2,"70554":8,"70555":8,"70556":6,"70557":8,"70558":9,"70559":8,"70560":7,"70561":7,"70562":9,"70563":8,"70564":3,"70565":7,"70566":7,"70567":6,"70568":5,"70569":7,"70570":9,"70571":10,"70572":7,"70573":3,"70574":10,"70575":2,"70576":10,"70577":9,"70578":7,"70579":6,"70580":7,"70581":4,"70582":4,"70583":2,"70584":7,"70585":7,"70586":8,"70587":5,"70588":7,"70589":7,"70590":9,"70591":8,"70592":5,"70593":7,"70594":9,"70595":8,"70596":9,"70597":8,"70598":7,"70599":8,"70600":2,"70601":5,"70602":2,"70603":7,"70604":5,"70605":3,"70606":3,"70607":4,"70608":7,"70609":8,"70610":8,"70611":9,"70612":10,"70613":1,"70614":7,"70615":1,"70616":5,"70617":6,"70618":8,"70619":6,"70620":7,"70621":2,"70622":3,"70623":7,"70624":8,"70625":8,"70626":9,"70627":6,"70628":10,"70629":2,"70630":8,"70631":8,"70632":7,"70633":7,"70634":7,"70635":1,"70636":5,"70637":8,"70638":7,"70639":8,"70640":8,"70641":3,"70642":2,"70643":2,"70644":1,"70645":9,"70646":9,"70647":4,"70648":7,"70649":8,"70650":7,"70651":10,"70652":7,"70653":8,"70654":2,"70655":9,"70656":5,"70657":8,"70658":2,"70659":4,"70660":9,"70661":3,"70662":8,"70663":8,"70664":9,"70665":10,"70666":9,"70667":8,"70668":10,"70669":7,"70670":7,"70671":9,"70672":4,"70673":7,"70674":2,"70675":9,"70676":2,"70677":7,"70678":10,"70679":6,"70680":7,"70681":7,"70682":4,"70683":7,"70684":7,"70685":9,"70686":3,"70687":6,"70688":8,"70689":1,"70690":7,"70691":7,"70692":3,"70693":7,"70694":6,"70695":7,"70696":5,"70697":8,"70698":8,"70699":9,"70700":8,"70701":6,"70702":1,"70703":10,"70704":9,"70705":10,"70706":2,"70707":5,"70708":8,"70709":7,"70710":9,"70711":8,"70712":3,"70713":5,"70714":3,"70715":8,"70716":5,"70717":9,"70718":8,"70719":3,"70720":9,"70721":5,"70722":8,"70723":7,"70724":5,"70725":2,"70726":2,"70727":8,"70728":9,"70729":6,"70730":9,"70731":7,"70732":9,"70733":6,"70734":7,"70735":8,"70736":2,"70737":4,"70738":8,"70739":9,"70740":7,"70741":7,"70742":7,"70743":9,"70744":7,"70745":1,"70746":7,"70747":8,"70748":7,"70749":9,"70750":9,"70751":9,"70752":6,"70753":1,"70754":7,"70755":8,"70756":7,"70757":8,"70758":2,"70759":10,"70760":7,"70761":8,"70762":7,"70763":6,"70764":1,"70765":8,"70766":7,"70767":2,"70768":7,"70769":3,"70770":5,"70771":7,"70772":7,"70773":9,"70774":6,"70775":7,"70776":7,"70777":6,"70778":10,"70779":2,"70780":7,"70781":9,"70782":7,"70783":8,"70784":10,"70785":8,"70786":9,"70787":8,"70788":7,"70789":1,"70790":7,"70791":9,"70792":2,"70793":8,"70794":5,"70795":1,"70796":9,"70797":8,"70798":8,"70799":10,"70800":9,"70801":2,"70802":3,"70803":2,"70804":6,"70805":5,"70806":8,"70807":9,"70808":8,"70809":5,"70810":7,"70811":7,"70812":2,"70813":9,"70814":8,"70815":6,"70816":10,"70817":7,"70818":9,"70819":7,"70820":9,"70821":4,"70822":2,"70823":4,"70824":2,"70825":8,"70826":9,"70827":7,"70828":7,"70829":7,"70830":10,"70831":6,"70832":2,"70833":7,"70834":7,"70835":10,"70836":5,"70837":9,"70838":9,"70839":5,"70840":8,"70841":5,"70842":3,"70843":7,"70844":6,"70845":2,"70846":8,"70847":7,"70848":9,"70849":9,"70850":5,"70851":6,"70852":9,"70853":8,"70854":5,"70855":7,"70856":7,"70857":9,"70858":9,"70859":7,"70860":8,"70861":7,"70862":9,"70863":4,"70864":3,"70865":8,"70866":5,"70867":7,"70868":3,"70869":5,"70870":2,"70871":9,"70872":9,"70873":7,"70874":8,"70875":4,"70876":7,"70877":10,"70878":4,"70879":5,"70880":5,"70881":4,"70882":10,"70883":5,"70884":7,"70885":9,"70886":2,"70887":7,"70888":2,"70889":6,"70890":1,"70891":3,"70892":5,"70893":4,"70894":2,"70895":3,"70896":8,"70897":10,"70898":2,"70899":8,"70900":7,"70901":10,"70902":9,"70903":5,"70904":8,"70905":7,"70906":8,"70907":7,"70908":8,"70909":9,"70910":4,"70911":7,"70912":9,"70913":9,"70914":8,"70915":8,"70916":8,"70917":2,"70918":2,"70919":7,"70920":3,"70921":7,"70922":5,"70923":7,"70924":8,"70925":2,"70926":6,"70927":9,"70928":2,"70929":6,"70930":4,"70931":5,"70932":4,"70933":9,"70934":3,"70935":4,"70936":5,"70937":9,"70938":3,"70939":3,"70940":9,"70941":9,"70942":8,"70943":7,"70944":7,"70945":1,"70946":4,"70947":2,"70948":2,"70949":7,"70950":1,"70951":5,"70952":7,"70953":5,"70954":8,"70955":5,"70956":8,"70957":3,"70958":6,"70959":4,"70960":5,"70961":8,"70962":7,"70963":7,"70964":3,"70965":9,"70966":2,"70967":7,"70968":4,"70969":5,"70970":7,"70971":7,"70972":9,"70973":7,"70974":1,"70975":7,"70976":9,"70977":1,"70978":1,"70979":6,"70980":9,"70981":2,"70982":2,"70983":7,"70984":2,"70985":7,"70986":4,"70987":6,"70988":7,"70989":9,"70990":5,"70991":7,"70992":4,"70993":7,"70994":7,"70995":7,"70996":5,"70997":7,"70998":5,"70999":8,"71000":6,"71001":1,"71002":10,"71003":8,"71004":4,"71005":5,"71006":8,"71007":7,"71008":7,"71009":3,"71010":3,"71011":7,"71012":7,"71013":5,"71014":6,"71015":9,"71016":7,"71017":8,"71018":4,"71019":5,"71020":9,"71021":7,"71022":7,"71023":8,"71024":8,"71025":8,"71026":7,"71027":7,"71028":8,"71029":8,"71030":2,"71031":7,"71032":1,"71033":7,"71034":10,"71035":7,"71036":2,"71037":9,"71038":8,"71039":5,"71040":8,"71041":4,"71042":7,"71043":1,"71044":2,"71045":8,"71046":5,"71047":3,"71048":8,"71049":3,"71050":8,"71051":9,"71052":9,"71053":5,"71054":7,"71055":2,"71056":6,"71057":8,"71058":5,"71059":8,"71060":7,"71061":8,"71062":1,"71063":4,"71064":9,"71065":3,"71066":9,"71067":4,"71068":5,"71069":10,"71070":6,"71071":8,"71072":8,"71073":9,"71074":3,"71075":7,"71076":7,"71077":8,"71078":3,"71079":10,"71080":5,"71081":3,"71082":7,"71083":10,"71084":10,"71085":2,"71086":1,"71087":2,"71088":5,"71089":8,"71090":8,"71091":8,"71092":5,"71093":9,"71094":9,"71095":3,"71096":8,"71097":2,"71098":7,"71099":7,"71100":7,"71101":8,"71102":2,"71103":8,"71104":5,"71105":2,"71106":7,"71107":9,"71108":7,"71109":1,"71110":6,"71111":5,"71112":8,"71113":7,"71114":7,"71115":4,"71116":8,"71117":4,"71118":9,"71119":2,"71120":6,"71121":3,"71122":2,"71123":9,"71124":1,"71125":8,"71126":9,"71127":9,"71128":9,"71129":7,"71130":8,"71131":7,"71132":7,"71133":7,"71134":8,"71135":9,"71136":7,"71137":9,"71138":7,"71139":4,"71140":9,"71141":9,"71142":1,"71143":8,"71144":9,"71145":5,"71146":8,"71147":8,"71148":10,"71149":7,"71150":5,"71151":7,"71152":8,"71153":7,"71154":9,"71155":3,"71156":2,"71157":8,"71158":8,"71159":3,"71160":10,"71161":8,"71162":5,"71163":4,"71164":8,"71165":1,"71166":8,"71167":8,"71168":9,"71169":4,"71170":8,"71171":5,"71172":3,"71173":8,"71174":7,"71175":3,"71176":8,"71177":8,"71178":7,"71179":9,"71180":9,"71181":9,"71182":8,"71183":9,"71184":9,"71185":9,"71186":5,"71187":8,"71188":2,"71189":8,"71190":9,"71191":7,"71192":9,"71193":8,"71194":6,"71195":9,"71196":9,"71197":8,"71198":1,"71199":7,"71200":9,"71201":2,"71202":7,"71203":9,"71204":7,"71205":4,"71206":8,"71207":10,"71208":9,"71209":7,"71210":9,"71211":7,"71212":9,"71213":5,"71214":5,"71215":8,"71216":4,"71217":9,"71218":9,"71219":7,"71220":5,"71221":1,"71222":3,"71223":8,"71224":8,"71225":8,"71226":7,"71227":7,"71228":2,"71229":4,"71230":7,"71231":9,"71232":2,"71233":8,"71234":9,"71235":9,"71236":10,"71237":1,"71238":2,"71239":7,"71240":10,"71241":7,"71242":7,"71243":5,"71244":9,"71245":9,"71246":5,"71247":2,"71248":1,"71249":8,"71250":8,"71251":8,"71252":8,"71253":3,"71254":10,"71255":3,"71256":8,"71257":8,"71258":9,"71259":8,"71260":7,"71261":2,"71262":10,"71263":7,"71264":7,"71265":8,"71266":8,"71267":8,"71268":3,"71269":6,"71270":9,"71271":3,"71272":1,"71273":8,"71274":7,"71275":9,"71276":10,"71277":8,"71278":7,"71279":7,"71280":7,"71281":9,"71282":7,"71283":6,"71284":4,"71285":7,"71286":7,"71287":3,"71288":8,"71289":10,"71290":9,"71291":1,"71292":6,"71293":2,"71294":7,"71295":9,"71296":4,"71297":7,"71298":6,"71299":8,"71300":1,"71301":7,"71302":9,"71303":9,"71304":9,"71305":7,"71306":8,"71307":8,"71308":9,"71309":3,"71310":9,"71311":2,"71312":9,"71313":8,"71314":9,"71315":8,"71316":8,"71317":3,"71318":8,"71319":1,"71320":7,"71321":7,"71322":7,"71323":8,"71324":3,"71325":8,"71326":2,"71327":8,"71328":8,"71329":8,"71330":7,"71331":9,"71332":9,"71333":9,"71334":7,"71335":7,"71336":7,"71337":8,"71338":1,"71339":9,"71340":5,"71341":9,"71342":9,"71343":7,"71344":5,"71345":8,"71346":8,"71347":8,"71348":9,"71349":8,"71350":9,"71351":9,"71352":8,"71353":8,"71354":8,"71355":9,"71356":7,"71357":7,"71358":5,"71359":5,"71360":9,"71361":10,"71362":6,"71363":3,"71364":8,"71365":6,"71366":2,"71367":7,"71368":4,"71369":7,"71370":7,"71371":9,"71372":6,"71373":10,"71374":10,"71375":9,"71376":2,"71377":8,"71378":8,"71379":3,"71380":7,"71381":7,"71382":6,"71383":4,"71384":7,"71385":8,"71386":1,"71387":2,"71388":2,"71389":5,"71390":8,"71391":9,"71392":7,"71393":2,"71394":7,"71395":8,"71396":7,"71397":9,"71398":1,"71399":9,"71400":5,"71401":9,"71402":5,"71403":2,"71404":8,"71405":2,"71406":2,"71407":8,"71408":2,"71409":8,"71410":9,"71411":8,"71412":7,"71413":7,"71414":8,"71415":8,"71416":8,"71417":10,"71418":4,"71419":9,"71420":8,"71421":10,"71422":8,"71423":8,"71424":1,"71425":7,"71426":2,"71427":5,"71428":9,"71429":9,"71430":7,"71431":1,"71432":2,"71433":1,"71434":2,"71435":5,"71436":8,"71437":7,"71438":8,"71439":7,"71440":5,"71441":9,"71442":7,"71443":8,"71444":10,"71445":8,"71446":9,"71447":9,"71448":7,"71449":10,"71450":3,"71451":8,"71452":9,"71453":5,"71454":9,"71455":8,"71456":7,"71457":4,"71458":8,"71459":7,"71460":5,"71461":7,"71462":7,"71463":3,"71464":1,"71465":9,"71466":9,"71467":7,"71468":7,"71469":9,"71470":8,"71471":9,"71472":7,"71473":8,"71474":3,"71475":10,"71476":8,"71477":5,"71478":8,"71479":2,"71480":7,"71481":7,"71482":7,"71483":8,"71484":7,"71485":7,"71486":8,"71487":7,"71488":7,"71489":8,"71490":7,"71491":8,"71492":4,"71493":4,"71494":6,"71495":8,"71496":8,"71497":8,"71498":5,"71499":8,"71500":8,"71501":7,"71502":7,"71503":7,"71504":3,"71505":7,"71506":9,"71507":9,"71508":7,"71509":7,"71510":1,"71511":2,"71512":6,"71513":4,"71514":7,"71515":2,"71516":5,"71517":8,"71518":1,"71519":8,"71520":10,"71521":5,"71522":8,"71523":5,"71524":9,"71525":3,"71526":8,"71527":7,"71528":8,"71529":7,"71530":4,"71531":8,"71532":8,"71533":9,"71534":7,"71535":10,"71536":7,"71537":8,"71538":8,"71539":3,"71540":2,"71541":8,"71542":7,"71543":9,"71544":5,"71545":4,"71546":1,"71547":7,"71548":7,"71549":9,"71550":3,"71551":9,"71552":8,"71553":9,"71554":1,"71555":5,"71556":8,"71557":7,"71558":5,"71559":5,"71560":4,"71561":8,"71562":8,"71563":8,"71564":8,"71565":8,"71566":5,"71567":7,"71568":2,"71569":2,"71570":5,"71571":2,"71572":9,"71573":5,"71574":3,"71575":2,"71576":7,"71577":7,"71578":1,"71579":7,"71580":4,"71581":1,"71582":8,"71583":8,"71584":6,"71585":9,"71586":7,"71587":8,"71588":1,"71589":8,"71590":5,"71591":2,"71592":8,"71593":9,"71594":6,"71595":8,"71596":2,"71597":8,"71598":9,"71599":7,"71600":9,"71601":8,"71602":7,"71603":7,"71604":5,"71605":8,"71606":8,"71607":2,"71608":10,"71609":1,"71610":10,"71611":5,"71612":7,"71613":9,"71614":3,"71615":7,"71616":7,"71617":10,"71618":6,"71619":7,"71620":8,"71621":7,"71622":8,"71623":9,"71624":1,"71625":7,"71626":7,"71627":4,"71628":7,"71629":7,"71630":3,"71631":8,"71632":7,"71633":9,"71634":4,"71635":1,"71636":8,"71637":8,"71638":9,"71639":3,"71640":5,"71641":9,"71642":4,"71643":5,"71644":8,"71645":8,"71646":9,"71647":9,"71648":9,"71649":5,"71650":8,"71651":10,"71652":8,"71653":7,"71654":1,"71655":7,"71656":7,"71657":7,"71658":1,"71659":5,"71660":9,"71661":9,"71662":2,"71663":7,"71664":9,"71665":5,"71666":1,"71667":7,"71668":2,"71669":8,"71670":5,"71671":9,"71672":5,"71673":5,"71674":9,"71675":7,"71676":9,"71677":8,"71678":7,"71679":6,"71680":7,"71681":8,"71682":5,"71683":7,"71684":8,"71685":9,"71686":9,"71687":5,"71688":7,"71689":10,"71690":2,"71691":3,"71692":3,"71693":2,"71694":2,"71695":8,"71696":8,"71697":7,"71698":9,"71699":7,"71700":9,"71701":9,"71702":8,"71703":8,"71704":7,"71705":8,"71706":7,"71707":8,"71708":7,"71709":7,"71710":8,"71711":8,"71712":2,"71713":9,"71714":7,"71715":7,"71716":8,"71717":1,"71718":7,"71719":7,"71720":7,"71721":2,"71722":5,"71723":8,"71724":9,"71725":8,"71726":10,"71727":5,"71728":9,"71729":2,"71730":7,"71731":7,"71732":7,"71733":9,"71734":5,"71735":2,"71736":3,"71737":7,"71738":2,"71739":1,"71740":9,"71741":8,"71742":5,"71743":5,"71744":7,"71745":4,"71746":7,"71747":7,"71748":7,"71749":10,"71750":4,"71751":8,"71752":8,"71753":5,"71754":7,"71755":3,"71756":7,"71757":7,"71758":8,"71759":7,"71760":7,"71761":9,"71762":5,"71763":7,"71764":8,"71765":2,"71766":7,"71767":7,"71768":3,"71769":3,"71770":8,"71771":2,"71772":1,"71773":6,"71774":7,"71775":8,"71776":8,"71777":8,"71778":1,"71779":10,"71780":7,"71781":9,"71782":8,"71783":7,"71784":3,"71785":9,"71786":8,"71787":9,"71788":8,"71789":2,"71790":10,"71791":9,"71792":5,"71793":2,"71794":10,"71795":1,"71796":8,"71797":8,"71798":9,"71799":8,"71800":8,"71801":7,"71802":7,"71803":9,"71804":1,"71805":7,"71806":10,"71807":3,"71808":5,"71809":7,"71810":9,"71811":2,"71812":1,"71813":8,"71814":10,"71815":7,"71816":9,"71817":2,"71818":7,"71819":9,"71820":3,"71821":7,"71822":2,"71823":9,"71824":5,"71825":2,"71826":10,"71827":7,"71828":7,"71829":6,"71830":9,"71831":8,"71832":7,"71833":5,"71834":8,"71835":10,"71836":7,"71837":5,"71838":9,"71839":5,"71840":1,"71841":5,"71842":7,"71843":2,"71844":6,"71845":7,"71846":7,"71847":4,"71848":7,"71849":8,"71850":2,"71851":5,"71852":1,"71853":10,"71854":4,"71855":5,"71856":9,"71857":9,"71858":1,"71859":2,"71860":8,"71861":8,"71862":2,"71863":7,"71864":5,"71865":2,"71866":9,"71867":8,"71868":10,"71869":7,"71870":7,"71871":7,"71872":3,"71873":7,"71874":3,"71875":8,"71876":7,"71877":5,"71878":9,"71879":9,"71880":8,"71881":7,"71882":8,"71883":9,"71884":5,"71885":5,"71886":7,"71887":8,"71888":9,"71889":2,"71890":8,"71891":9,"71892":3,"71893":10,"71894":6,"71895":7,"71896":7,"71897":1,"71898":1,"71899":5,"71900":8,"71901":3,"71902":7,"71903":10,"71904":8,"71905":9,"71906":2,"71907":9,"71908":4,"71909":10,"71910":6,"71911":1,"71912":9,"71913":9,"71914":7,"71915":8,"71916":4,"71917":10,"71918":9,"71919":7,"71920":2,"71921":8,"71922":9,"71923":3,"71924":10,"71925":4,"71926":8,"71927":2,"71928":9,"71929":8,"71930":5,"71931":5,"71932":7,"71933":1,"71934":7,"71935":8,"71936":7,"71937":1,"71938":9,"71939":2,"71940":2,"71941":8,"71942":3,"71943":9,"71944":2,"71945":7,"71946":1,"71947":7,"71948":2,"71949":2,"71950":7,"71951":2,"71952":8,"71953":7,"71954":8,"71955":9,"71956":8,"71957":8,"71958":4,"71959":3,"71960":5,"71961":2,"71962":4,"71963":2,"71964":7,"71965":8,"71966":5,"71967":4,"71968":2,"71969":6,"71970":7,"71971":4,"71972":8,"71973":7,"71974":7,"71975":5,"71976":2,"71977":2,"71978":6,"71979":8,"71980":9,"71981":8,"71982":10,"71983":2,"71984":7,"71985":8,"71986":7,"71987":9,"71988":8,"71989":7,"71990":7,"71991":9,"71992":8,"71993":6,"71994":5,"71995":9,"71996":7,"71997":3,"71998":7,"71999":9,"72000":5,"72001":8,"72002":9,"72003":5,"72004":2,"72005":8,"72006":7,"72007":5,"72008":7,"72009":5,"72010":9,"72011":9,"72012":7,"72013":7,"72014":8,"72015":8,"72016":8,"72017":7,"72018":7,"72019":8,"72020":9,"72021":7,"72022":2,"72023":1,"72024":6,"72025":9,"72026":7,"72027":2,"72028":8,"72029":9,"72030":3,"72031":9,"72032":10,"72033":3,"72034":8,"72035":8,"72036":9,"72037":3,"72038":4,"72039":3,"72040":7,"72041":1,"72042":3,"72043":8,"72044":4,"72045":5,"72046":2,"72047":8,"72048":8,"72049":1,"72050":10,"72051":7,"72052":5,"72053":3,"72054":4,"72055":7,"72056":2,"72057":5,"72058":7,"72059":8,"72060":8,"72061":8,"72062":8,"72063":8,"72064":7,"72065":1,"72066":8,"72067":7,"72068":6,"72069":9,"72070":8,"72071":2,"72072":8,"72073":1,"72074":5,"72075":2,"72076":8,"72077":10,"72078":7,"72079":7,"72080":2,"72081":1,"72082":7,"72083":9,"72084":5,"72085":2,"72086":8,"72087":8,"72088":2,"72089":8,"72090":3,"72091":4,"72092":7,"72093":6,"72094":8,"72095":7,"72096":9,"72097":5,"72098":5,"72099":10,"72100":2,"72101":7,"72102":8,"72103":8,"72104":9,"72105":7,"72106":8,"72107":1,"72108":9,"72109":8,"72110":2,"72111":8,"72112":9,"72113":7,"72114":3,"72115":2,"72116":7,"72117":8,"72118":5,"72119":5,"72120":8,"72121":7,"72122":8,"72123":1,"72124":8,"72125":8,"72126":2,"72127":2,"72128":7,"72129":3,"72130":9,"72131":7,"72132":3,"72133":5,"72134":9,"72135":8,"72136":7,"72137":2,"72138":8,"72139":3,"72140":7,"72141":9,"72142":6,"72143":8,"72144":7,"72145":5,"72146":7,"72147":7,"72148":5,"72149":6,"72150":5,"72151":9,"72152":8,"72153":9,"72154":2,"72155":7,"72156":8,"72157":2,"72158":3,"72159":9,"72160":4,"72161":7,"72162":9,"72163":2,"72164":8,"72165":5,"72166":8,"72167":7,"72168":8,"72169":8,"72170":5,"72171":7,"72172":7,"72173":8,"72174":9,"72175":8,"72176":8,"72177":8,"72178":10,"72179":7,"72180":4,"72181":7,"72182":6,"72183":5,"72184":1,"72185":4,"72186":3,"72187":8,"72188":5,"72189":8,"72190":8,"72191":8,"72192":10,"72193":8,"72194":2,"72195":7,"72196":5,"72197":4,"72198":9,"72199":1,"72200":9,"72201":8,"72202":7,"72203":7,"72204":7,"72205":9,"72206":7,"72207":5,"72208":1,"72209":7,"72210":8,"72211":5,"72212":8,"72213":7,"72214":6,"72215":5,"72216":7,"72217":5,"72218":5,"72219":3,"72220":2,"72221":2,"72222":7,"72223":4,"72224":8,"72225":7,"72226":9,"72227":8,"72228":5,"72229":7,"72230":3,"72231":9,"72232":2,"72233":2,"72234":9,"72235":10,"72236":8,"72237":7,"72238":8,"72239":5,"72240":8,"72241":9,"72242":1,"72243":9,"72244":7,"72245":2,"72246":7,"72247":2,"72248":4,"72249":8,"72250":9,"72251":8,"72252":8,"72253":2,"72254":7,"72255":8,"72256":2,"72257":4,"72258":5,"72259":1,"72260":8,"72261":6,"72262":7,"72263":9,"72264":5,"72265":5,"72266":7,"72267":7,"72268":9,"72269":7,"72270":6,"72271":7,"72272":2,"72273":7,"72274":9,"72275":10,"72276":6,"72277":8,"72278":8,"72279":9,"72280":5,"72281":8,"72282":5,"72283":1,"72284":7,"72285":8,"72286":5,"72287":2,"72288":5,"72289":5,"72290":7,"72291":7,"72292":7,"72293":7,"72294":9,"72295":2,"72296":3,"72297":1,"72298":6,"72299":8,"72300":8,"72301":2,"72302":7,"72303":2,"72304":9,"72305":1,"72306":5,"72307":1,"72308":4,"72309":7,"72310":9,"72311":7,"72312":2,"72313":5,"72314":5,"72315":9,"72316":8,"72317":7,"72318":8,"72319":8,"72320":7,"72321":9,"72322":9,"72323":4,"72324":9,"72325":9,"72326":1,"72327":8,"72328":7,"72329":8,"72330":7,"72331":8,"72332":2,"72333":8,"72334":8,"72335":8,"72336":8,"72337":7,"72338":7,"72339":5,"72340":9,"72341":9,"72342":9,"72343":6,"72344":7,"72345":1,"72346":8,"72347":8,"72348":7,"72349":1,"72350":6,"72351":9,"72352":6,"72353":2,"72354":5,"72355":5,"72356":9,"72357":9,"72358":7,"72359":7,"72360":8,"72361":9,"72362":3,"72363":5,"72364":8,"72365":2,"72366":8,"72367":2,"72368":9,"72369":1,"72370":9,"72371":4,"72372":7,"72373":2,"72374":9,"72375":7,"72376":1,"72377":9,"72378":1,"72379":7,"72380":7,"72381":9,"72382":1,"72383":3,"72384":5,"72385":5,"72386":8,"72387":8,"72388":4,"72389":8,"72390":9,"72391":8,"72392":6,"72393":9,"72394":8,"72395":6,"72396":2,"72397":2,"72398":9,"72399":1,"72400":9,"72401":9,"72402":3,"72403":9,"72404":6,"72405":8,"72406":9,"72407":3,"72408":7,"72409":2,"72410":10,"72411":8,"72412":8,"72413":8,"72414":8,"72415":3,"72416":9,"72417":3,"72418":7,"72419":10,"72420":9,"72421":2,"72422":8,"72423":4,"72424":2,"72425":7,"72426":10,"72427":5,"72428":8,"72429":8,"72430":9,"72431":5,"72432":5,"72433":2,"72434":5,"72435":4,"72436":1,"72437":3,"72438":7,"72439":7,"72440":2,"72441":8,"72442":6,"72443":8,"72444":8,"72445":1,"72446":8,"72447":3,"72448":8,"72449":5,"72450":9,"72451":1,"72452":2,"72453":9,"72454":5,"72455":2,"72456":2,"72457":1,"72458":7,"72459":1,"72460":2,"72461":7,"72462":9,"72463":7,"72464":8,"72465":5,"72466":8,"72467":3,"72468":8,"72469":4,"72470":1,"72471":8,"72472":3,"72473":9,"72474":8,"72475":7,"72476":3,"72477":7,"72478":3,"72479":6,"72480":8,"72481":9,"72482":4,"72483":4,"72484":7,"72485":9,"72486":9,"72487":9,"72488":8,"72489":8,"72490":2,"72491":4,"72492":8,"72493":8,"72494":7,"72495":5,"72496":10,"72497":7,"72498":8,"72499":3,"72500":8,"72501":1,"72502":7,"72503":3,"72504":4,"72505":4,"72506":7,"72507":7,"72508":3,"72509":5,"72510":3,"72511":4,"72512":7,"72513":7,"72514":7,"72515":7,"72516":7,"72517":9,"72518":8,"72519":2,"72520":5,"72521":8,"72522":10,"72523":9,"72524":8,"72525":7,"72526":9,"72527":9,"72528":1,"72529":8,"72530":7,"72531":9,"72532":8,"72533":9,"72534":5,"72535":4,"72536":7,"72537":8,"72538":8,"72539":9,"72540":2,"72541":5,"72542":7,"72543":7,"72544":9,"72545":7,"72546":2,"72547":8,"72548":6,"72549":7,"72550":6,"72551":9,"72552":2,"72553":3,"72554":8,"72555":9,"72556":2,"72557":6,"72558":5,"72559":8,"72560":2,"72561":5,"72562":9,"72563":8,"72564":8,"72565":2,"72566":10,"72567":8,"72568":8,"72569":4,"72570":5,"72571":2,"72572":9,"72573":7,"72574":1,"72575":10,"72576":7,"72577":8,"72578":5,"72579":9,"72580":4,"72581":8,"72582":9,"72583":7,"72584":5,"72585":7,"72586":6,"72587":7,"72588":6,"72589":7,"72590":10,"72591":7,"72592":9,"72593":8,"72594":6,"72595":7,"72596":2,"72597":3,"72598":5,"72599":7,"72600":9,"72601":8,"72602":5,"72603":8,"72604":6,"72605":8,"72606":5,"72607":8,"72608":10,"72609":7,"72610":7,"72611":5,"72612":5,"72613":3,"72614":3,"72615":3,"72616":9,"72617":7,"72618":5,"72619":9,"72620":4,"72621":4,"72622":8,"72623":2,"72624":9,"72625":8,"72626":9,"72627":7,"72628":8,"72629":6,"72630":3,"72631":8,"72632":5,"72633":2,"72634":4,"72635":8,"72636":3,"72637":8,"72638":2,"72639":5,"72640":1,"72641":9,"72642":7,"72643":8,"72644":6,"72645":8,"72646":10,"72647":5,"72648":2,"72649":2,"72650":8,"72651":1,"72652":2,"72653":9,"72654":9,"72655":10,"72656":7,"72657":8,"72658":8,"72659":9,"72660":5,"72661":8,"72662":9,"72663":9,"72664":5,"72665":8,"72666":6,"72667":8,"72668":1,"72669":8,"72670":5,"72671":2,"72672":7,"72673":10,"72674":7,"72675":9,"72676":7,"72677":2,"72678":2,"72679":3,"72680":7,"72681":9,"72682":3,"72683":7,"72684":2,"72685":3,"72686":7,"72687":10,"72688":8,"72689":10,"72690":5,"72691":7,"72692":7,"72693":5,"72694":2,"72695":10,"72696":2,"72697":8,"72698":7,"72699":8,"72700":4,"72701":7,"72702":10,"72703":7,"72704":3,"72705":8,"72706":1,"72707":7,"72708":10,"72709":2,"72710":2,"72711":7,"72712":8,"72713":7,"72714":2,"72715":1,"72716":7,"72717":7,"72718":7,"72719":9,"72720":8,"72721":7,"72722":8,"72723":2,"72724":7,"72725":7,"72726":8,"72727":8,"72728":8,"72729":8,"72730":10,"72731":1,"72732":8,"72733":3,"72734":9,"72735":5,"72736":6,"72737":5,"72738":1,"72739":8,"72740":9,"72741":4,"72742":4,"72743":9,"72744":6,"72745":8,"72746":4,"72747":2,"72748":8,"72749":1,"72750":1,"72751":8,"72752":8,"72753":8,"72754":7,"72755":7,"72756":9,"72757":3,"72758":1,"72759":8,"72760":8,"72761":9,"72762":4,"72763":9,"72764":5,"72765":7,"72766":2,"72767":2,"72768":7,"72769":9,"72770":5,"72771":5,"72772":3,"72773":8,"72774":6,"72775":7,"72776":4,"72777":1,"72778":7,"72779":9,"72780":9,"72781":3,"72782":9,"72783":2,"72784":7,"72785":10,"72786":8,"72787":8,"72788":7,"72789":8,"72790":5,"72791":7,"72792":4,"72793":5,"72794":8,"72795":8,"72796":8,"72797":1,"72798":8,"72799":9,"72800":8,"72801":2,"72802":6,"72803":5,"72804":7,"72805":2,"72806":7,"72807":4,"72808":1,"72809":9,"72810":7,"72811":3,"72812":8,"72813":8,"72814":5,"72815":7,"72816":5,"72817":3,"72818":8,"72819":7,"72820":8,"72821":5,"72822":10,"72823":3,"72824":7,"72825":8,"72826":2,"72827":7,"72828":8,"72829":6,"72830":7,"72831":10,"72832":3,"72833":3,"72834":2,"72835":7,"72836":4,"72837":5,"72838":5,"72839":9,"72840":9,"72841":8,"72842":3,"72843":9,"72844":7,"72845":2,"72846":7,"72847":8,"72848":1,"72849":5,"72850":8,"72851":9,"72852":7,"72853":7,"72854":7,"72855":1,"72856":9,"72857":8,"72858":1,"72859":3,"72860":1,"72861":8,"72862":5,"72863":3,"72864":1,"72865":8,"72866":9,"72867":6,"72868":9,"72869":9,"72870":10,"72871":9,"72872":8,"72873":7,"72874":2,"72875":9,"72876":5,"72877":8,"72878":7,"72879":6,"72880":8,"72881":6,"72882":7,"72883":10,"72884":9,"72885":8,"72886":6,"72887":5,"72888":2,"72889":3,"72890":5,"72891":7,"72892":8,"72893":2,"72894":10,"72895":10,"72896":8,"72897":8,"72898":9,"72899":7,"72900":8,"72901":8,"72902":2,"72903":7,"72904":5,"72905":2,"72906":6,"72907":7,"72908":6,"72909":3,"72910":8,"72911":7,"72912":9,"72913":9,"72914":1,"72915":3,"72916":6,"72917":7,"72918":7,"72919":9,"72920":6,"72921":8,"72922":9,"72923":8,"72924":4,"72925":1,"72926":5,"72927":9,"72928":5,"72929":9,"72930":5,"72931":8,"72932":8,"72933":5,"72934":2,"72935":9,"72936":7,"72937":7,"72938":8,"72939":6,"72940":9,"72941":9,"72942":2,"72943":1,"72944":3,"72945":6,"72946":8,"72947":4,"72948":4,"72949":6,"72950":5,"72951":7,"72952":9,"72953":7,"72954":7,"72955":5,"72956":4,"72957":2,"72958":9,"72959":7,"72960":5,"72961":6,"72962":10,"72963":1,"72964":7,"72965":5,"72966":7,"72967":6,"72968":7,"72969":8,"72970":8,"72971":8,"72972":7,"72973":7,"72974":7,"72975":8,"72976":8,"72977":1,"72978":7,"72979":5,"72980":10,"72981":8,"72982":7,"72983":9,"72984":10,"72985":5,"72986":1,"72987":8,"72988":5,"72989":5,"72990":2,"72991":3,"72992":1,"72993":8,"72994":6,"72995":7,"72996":7,"72997":9,"72998":3,"72999":5,"73000":1,"73001":10,"73002":7,"73003":8,"73004":2,"73005":8,"73006":7,"73007":1,"73008":2,"73009":8,"73010":2,"73011":6,"73012":7,"73013":9,"73014":8,"73015":2,"73016":6,"73017":8,"73018":7,"73019":3,"73020":8,"73021":3,"73022":4,"73023":2,"73024":7,"73025":5,"73026":7,"73027":3,"73028":5,"73029":1,"73030":8,"73031":8,"73032":10,"73033":3,"73034":3,"73035":5,"73036":6,"73037":7,"73038":8,"73039":8,"73040":6,"73041":8,"73042":8,"73043":9,"73044":8,"73045":7,"73046":7,"73047":3,"73048":2,"73049":9,"73050":10,"73051":2,"73052":3,"73053":4,"73054":2,"73055":8,"73056":7,"73057":9,"73058":5,"73059":10,"73060":8,"73061":7,"73062":9,"73063":9,"73064":2,"73065":10,"73066":1,"73067":9,"73068":7,"73069":7,"73070":2,"73071":2,"73072":2,"73073":1,"73074":9,"73075":5,"73076":8,"73077":5,"73078":7,"73079":8,"73080":1,"73081":7,"73082":2,"73083":6,"73084":9,"73085":8,"73086":7,"73087":7,"73088":6,"73089":5,"73090":5,"73091":7,"73092":2,"73093":5,"73094":2,"73095":5,"73096":2,"73097":2,"73098":1,"73099":8,"73100":5,"73101":7,"73102":5,"73103":7,"73104":9,"73105":9,"73106":4,"73107":4,"73108":7,"73109":7,"73110":9,"73111":2,"73112":9,"73113":7,"73114":7,"73115":2,"73116":9,"73117":6,"73118":5,"73119":5,"73120":7,"73121":6,"73122":2,"73123":9,"73124":7,"73125":8,"73126":9,"73127":6,"73128":6,"73129":9,"73130":8,"73131":9,"73132":2,"73133":7,"73134":8,"73135":7,"73136":8,"73137":5,"73138":5,"73139":9,"73140":2,"73141":7,"73142":8,"73143":9,"73144":2,"73145":1,"73146":8,"73147":8,"73148":7,"73149":2,"73150":8,"73151":7,"73152":7,"73153":4,"73154":9,"73155":5,"73156":10,"73157":8,"73158":2,"73159":1,"73160":9,"73161":4,"73162":9,"73163":7,"73164":1,"73165":9,"73166":8,"73167":5,"73168":2,"73169":7,"73170":8,"73171":9,"73172":7,"73173":8,"73174":2,"73175":10,"73176":5,"73177":8,"73178":7,"73179":5,"73180":5,"73181":6,"73182":9,"73183":8,"73184":7,"73185":5,"73186":7,"73187":2,"73188":1,"73189":4,"73190":7,"73191":9,"73192":3,"73193":9,"73194":9,"73195":3,"73196":10,"73197":2,"73198":2,"73199":8,"73200":9,"73201":2,"73202":9,"73203":7,"73204":7,"73205":8,"73206":7,"73207":8,"73208":7,"73209":2,"73210":1,"73211":10,"73212":9,"73213":9,"73214":2,"73215":3,"73216":4,"73217":9,"73218":8,"73219":6,"73220":6,"73221":7,"73222":5,"73223":7,"73224":7,"73225":5,"73226":1,"73227":8,"73228":7,"73229":7,"73230":3,"73231":8,"73232":8,"73233":1,"73234":8,"73235":8,"73236":7,"73237":8,"73238":4,"73239":5,"73240":8,"73241":9,"73242":9,"73243":8,"73244":2,"73245":9,"73246":9,"73247":8,"73248":5,"73249":5,"73250":2,"73251":7,"73252":7,"73253":9,"73254":8,"73255":7,"73256":9,"73257":6,"73258":5,"73259":5,"73260":9,"73261":1,"73262":7,"73263":1,"73264":5,"73265":2,"73266":5,"73267":9,"73268":7,"73269":4,"73270":6,"73271":1,"73272":8,"73273":9,"73274":9,"73275":9,"73276":8,"73277":8,"73278":2,"73279":4,"73280":5,"73281":1,"73282":4,"73283":2,"73284":8,"73285":2,"73286":9,"73287":9,"73288":7,"73289":3,"73290":4,"73291":9,"73292":10,"73293":5,"73294":9,"73295":9,"73296":3,"73297":5,"73298":1,"73299":7,"73300":1,"73301":8,"73302":6,"73303":4,"73304":8,"73305":8,"73306":2,"73307":7,"73308":3,"73309":5,"73310":2,"73311":6,"73312":7,"73313":9,"73314":10,"73315":9,"73316":7,"73317":7,"73318":8,"73319":6,"73320":4,"73321":2,"73322":9,"73323":2,"73324":5,"73325":1,"73326":8,"73327":8,"73328":2,"73329":3,"73330":7,"73331":7,"73332":9,"73333":2,"73334":8,"73335":2,"73336":3,"73337":6,"73338":1,"73339":2,"73340":10,"73341":4,"73342":9,"73343":5,"73344":9,"73345":10,"73346":7,"73347":7,"73348":7,"73349":2,"73350":7,"73351":4,"73352":3,"73353":8,"73354":8,"73355":3,"73356":1,"73357":7,"73358":8,"73359":1,"73360":8,"73361":8,"73362":2,"73363":3,"73364":9,"73365":2,"73366":7,"73367":2,"73368":7,"73369":8,"73370":8,"73371":8,"73372":2,"73373":8,"73374":8,"73375":7,"73376":9,"73377":5,"73378":9,"73379":8,"73380":8,"73381":9,"73382":2,"73383":1,"73384":2,"73385":9,"73386":5,"73387":10,"73388":3,"73389":8,"73390":7,"73391":10,"73392":7,"73393":5,"73394":8,"73395":9,"73396":5,"73397":7,"73398":3,"73399":8,"73400":10,"73401":8,"73402":5,"73403":2,"73404":8,"73405":2,"73406":8,"73407":2,"73408":9,"73409":7,"73410":1,"73411":7,"73412":8,"73413":9,"73414":8,"73415":3,"73416":8,"73417":4,"73418":2,"73419":4,"73420":7,"73421":3,"73422":7,"73423":2,"73424":8,"73425":2,"73426":5,"73427":8,"73428":8,"73429":4,"73430":8,"73431":7,"73432":9,"73433":2,"73434":6,"73435":7,"73436":7,"73437":7,"73438":8,"73439":8,"73440":7,"73441":5,"73442":6,"73443":10,"73444":8,"73445":10,"73446":7,"73447":7,"73448":10,"73449":8,"73450":8,"73451":2,"73452":9,"73453":3,"73454":7,"73455":9,"73456":3,"73457":3,"73458":8,"73459":5,"73460":9,"73461":1,"73462":7,"73463":1,"73464":7,"73465":5,"73466":4,"73467":9,"73468":8,"73469":1,"73470":8,"73471":8,"73472":9,"73473":6,"73474":7,"73475":7,"73476":8,"73477":8,"73478":7,"73479":8,"73480":7,"73481":3,"73482":5,"73483":7,"73484":6,"73485":8,"73486":8,"73487":1,"73488":2,"73489":7,"73490":7,"73491":7,"73492":9,"73493":5,"73494":9,"73495":1,"73496":9,"73497":8,"73498":9,"73499":8,"73500":5,"73501":7,"73502":1,"73503":8,"73504":4,"73505":7,"73506":8,"73507":9,"73508":2,"73509":8,"73510":9,"73511":7,"73512":5,"73513":8,"73514":9,"73515":9,"73516":8,"73517":2,"73518":7,"73519":3,"73520":8,"73521":9,"73522":3,"73523":10,"73524":8,"73525":7,"73526":8,"73527":10,"73528":2,"73529":8,"73530":10,"73531":8,"73532":7,"73533":4,"73534":8,"73535":7,"73536":2,"73537":2,"73538":8,"73539":9,"73540":7,"73541":1,"73542":9,"73543":7,"73544":9,"73545":9,"73546":9,"73547":7,"73548":10,"73549":9,"73550":8,"73551":9,"73552":9,"73553":2,"73554":4,"73555":10,"73556":2,"73557":3,"73558":3,"73559":8,"73560":9,"73561":9,"73562":9,"73563":1,"73564":8,"73565":6,"73566":9,"73567":9,"73568":8,"73569":8,"73570":7,"73571":5,"73572":8,"73573":3,"73574":2,"73575":7,"73576":8,"73577":8,"73578":10,"73579":2,"73580":9,"73581":5,"73582":6,"73583":5,"73584":9,"73585":9,"73586":3,"73587":9,"73588":8,"73589":2,"73590":7,"73591":2,"73592":5,"73593":7,"73594":8,"73595":8,"73596":3,"73597":9,"73598":9,"73599":4,"73600":6,"73601":5,"73602":4,"73603":5,"73604":7,"73605":5,"73606":4,"73607":9,"73608":5,"73609":3,"73610":2,"73611":7,"73612":1,"73613":6,"73614":8,"73615":5,"73616":1,"73617":9,"73618":7,"73619":2,"73620":4,"73621":10,"73622":1,"73623":7,"73624":6,"73625":2,"73626":2,"73627":1,"73628":1,"73629":8,"73630":7,"73631":7,"73632":8,"73633":7,"73634":9,"73635":7,"73636":7,"73637":9,"73638":7,"73639":2,"73640":6,"73641":7,"73642":9,"73643":7,"73644":8,"73645":8,"73646":5,"73647":8,"73648":7,"73649":7,"73650":9,"73651":3,"73652":2,"73653":9,"73654":7,"73655":8,"73656":2,"73657":5,"73658":9,"73659":6,"73660":5,"73661":9,"73662":8,"73663":8,"73664":1,"73665":5,"73666":4,"73667":5,"73668":9,"73669":7,"73670":9,"73671":8,"73672":8,"73673":1,"73674":8,"73675":7,"73676":7,"73677":3,"73678":2,"73679":4,"73680":7,"73681":8,"73682":4,"73683":8,"73684":2,"73685":8,"73686":7,"73687":3,"73688":7,"73689":10,"73690":9,"73691":7,"73692":5,"73693":7,"73694":5,"73695":2,"73696":5,"73697":2,"73698":5,"73699":9,"73700":8,"73701":3,"73702":4,"73703":7,"73704":7,"73705":4,"73706":3,"73707":6,"73708":5,"73709":9,"73710":8,"73711":5,"73712":8,"73713":7,"73714":7,"73715":8,"73716":4,"73717":9,"73718":8,"73719":9,"73720":7,"73721":7,"73722":4,"73723":4,"73724":9,"73725":5,"73726":7,"73727":8,"73728":7,"73729":9,"73730":9,"73731":8,"73732":7,"73733":9,"73734":3,"73735":2,"73736":7,"73737":3,"73738":5,"73739":5,"73740":8,"73741":9,"73742":9,"73743":6,"73744":9,"73745":3,"73746":9,"73747":8,"73748":3,"73749":3,"73750":7,"73751":8,"73752":9,"73753":8,"73754":3,"73755":2,"73756":7,"73757":9,"73758":7,"73759":8,"73760":9,"73761":9,"73762":8,"73763":2,"73764":7,"73765":10,"73766":9,"73767":7,"73768":7,"73769":6,"73770":9,"73771":5,"73772":7,"73773":6,"73774":7,"73775":5,"73776":7,"73777":1,"73778":2,"73779":5,"73780":1,"73781":3,"73782":4,"73783":8,"73784":9,"73785":8,"73786":7,"73787":1,"73788":5,"73789":3,"73790":8,"73791":3,"73792":9,"73793":8,"73794":2,"73795":7,"73796":2,"73797":1,"73798":9,"73799":3,"73800":7,"73801":10,"73802":8,"73803":10,"73804":7,"73805":7,"73806":7},"eduattstat":{"0":4,"1":2,"2":5,"3":3,"4":3,"5":3,"6":5,"7":2,"8":3,"9":3,"10":2,"11":3,"12":5,"13":3,"14":3,"15":2,"16":3,"17":4,"18":3,"19":2,"20":1,"21":4,"22":4,"23":1,"24":2,"25":3,"26":3,"27":3,"28":4,"29":3,"30":1,"31":3,"32":4,"33":4,"34":4,"35":2,"36":3,"37":2,"38":3,"39":3,"40":4,"41":2,"42":4,"43":1,"44":2,"45":4,"46":2,"47":2,"48":2,"49":3,"50":4,"51":4,"52":3,"53":1,"54":3,"55":1,"56":4,"57":1,"58":4,"59":4,"60":4,"61":4,"62":2,"63":2,"64":4,"65":5,"66":2,"67":4,"68":3,"69":4,"70":2,"71":3,"72":4,"73":4,"74":3,"75":1,"76":3,"77":2,"78":4,"79":3,"80":2,"81":5,"82":4,"83":3,"84":4,"85":1,"86":5,"87":2,"88":4,"89":3,"90":3,"91":3,"92":1,"93":3,"94":4,"95":2,"96":3,"97":4,"98":3,"99":3,"100":2,"101":4,"102":2,"103":2,"104":4,"105":1,"106":2,"107":3,"108":4,"109":3,"110":3,"111":4,"112":3,"113":2,"114":3,"115":2,"116":3,"117":4,"118":3,"119":2,"120":3,"121":3,"122":4,"123":2,"124":4,"125":1,"126":3,"127":2,"128":3,"129":2,"130":5,"131":2,"132":1,"133":2,"134":5,"135":3,"136":2,"137":3,"138":3,"139":4,"140":1,"141":3,"142":1,"143":1,"144":2,"145":5,"146":3,"147":2,"148":5,"149":3,"150":5,"151":2,"152":3,"153":3,"154":4,"155":4,"156":4,"157":3,"158":3,"159":3,"160":1,"161":4,"162":2,"163":1,"164":3,"165":3,"166":3,"167":3,"168":3,"169":3,"170":2,"171":3,"172":4,"173":3,"174":1,"175":2,"176":4,"177":3,"178":3,"179":3,"180":3,"181":1,"182":1,"183":3,"184":3,"185":3,"186":4,"187":4,"188":4,"189":4,"190":1,"191":1,"192":5,"193":4,"194":4,"195":3,"196":3,"197":3,"198":2,"199":4,"200":3,"201":3,"202":3,"203":2,"204":5,"205":5,"206":4,"207":4,"208":4,"209":4,"210":5,"211":3,"212":5,"213":3,"214":4,"215":2,"216":4,"217":3,"218":2,"219":4,"220":5,"221":4,"222":4,"223":4,"224":3,"225":2,"226":4,"227":5,"228":3,"229":5,"230":2,"231":5,"232":4,"233":3,"234":3,"235":3,"236":3,"237":2,"238":3,"239":3,"240":4,"241":5,"242":2,"243":3,"244":3,"245":2,"246":2,"247":3,"248":3,"249":3,"250":3,"251":4,"252":2,"253":4,"254":3,"255":3,"256":1,"257":5,"258":5,"259":3,"260":3,"261":5,"262":4,"263":1,"264":4,"265":1,"266":5,"267":4,"268":4,"269":4,"270":3,"271":3,"272":5,"273":4,"274":4,"275":4,"276":2,"277":4,"278":4,"279":1,"280":2,"281":1,"282":3,"283":5,"284":2,"285":4,"286":3,"287":2,"288":3,"289":4,"290":3,"291":5,"292":2,"293":2,"294":5,"295":5,"296":3,"297":3,"298":3,"299":1,"300":2,"301":4,"302":3,"303":3,"304":1,"305":2,"306":3,"307":2,"308":2,"309":2,"310":5,"311":5,"312":3,"313":5,"314":2,"315":3,"316":5,"317":3,"318":3,"319":3,"320":3,"321":4,"322":3,"323":3,"324":2,"325":3,"326":4,"327":4,"328":1,"329":3,"330":4,"331":1,"332":2,"333":4,"334":3,"335":2,"336":4,"337":1,"338":4,"339":1,"340":4,"341":4,"342":3,"343":4,"344":4,"345":4,"346":3,"347":4,"348":4,"349":3,"350":3,"351":3,"352":4,"353":4,"354":1,"355":2,"356":2,"357":2,"358":5,"359":2,"360":2,"361":3,"362":4,"363":3,"364":4,"365":3,"366":4,"367":2,"368":4,"369":5,"370":2,"371":1,"372":2,"373":3,"374":3,"375":4,"376":3,"377":2,"378":3,"379":3,"380":3,"381":4,"382":5,"383":4,"384":3,"385":5,"386":4,"387":4,"388":3,"389":2,"390":4,"391":4,"392":3,"393":3,"394":3,"395":3,"396":2,"397":3,"398":4,"399":1,"400":2,"401":3,"402":2,"403":4,"404":3,"405":4,"406":2,"407":4,"408":4,"409":3,"410":4,"411":2,"412":4,"413":5,"414":3,"415":3,"416":3,"417":1,"418":3,"419":3,"420":4,"421":4,"422":4,"423":5,"424":2,"425":3,"426":3,"427":3,"428":4,"429":4,"430":4,"431":2,"432":4,"433":4,"434":5,"435":5,"436":1,"437":3,"438":4,"439":4,"440":4,"441":1,"442":3,"443":2,"444":5,"445":3,"446":3,"447":4,"448":3,"449":4,"450":3,"451":5,"452":4,"453":3,"454":3,"455":3,"456":2,"457":2,"458":2,"459":3,"460":4,"461":4,"462":2,"463":3,"464":2,"465":2,"466":3,"467":2,"468":3,"469":2,"470":1,"471":2,"472":4,"473":3,"474":2,"475":2,"476":2,"477":1,"478":3,"479":3,"480":5,"481":3,"482":3,"483":3,"484":3,"485":3,"486":2,"487":3,"488":4,"489":3,"490":2,"491":2,"492":4,"493":3,"494":4,"495":3,"496":3,"497":4,"498":1,"499":3,"500":3,"501":2,"502":3,"503":2,"504":2,"505":4,"506":4,"507":1,"508":3,"509":2,"510":3,"511":2,"512":1,"513":2,"514":4,"515":1,"516":3,"517":3,"518":2,"519":3,"520":3,"521":4,"522":3,"523":4,"524":3,"525":2,"526":2,"527":4,"528":1,"529":1,"530":3,"531":2,"532":3,"533":2,"534":2,"535":4,"536":5,"537":3,"538":1,"539":4,"540":2,"541":3,"542":3,"543":3,"544":3,"545":4,"546":4,"547":4,"548":4,"549":5,"550":1,"551":4,"552":4,"553":4,"554":3,"555":3,"556":3,"557":3,"558":2,"559":1,"560":1,"561":2,"562":3,"563":2,"564":4,"565":2,"566":4,"567":3,"568":3,"569":3,"570":2,"571":5,"572":2,"573":3,"574":3,"575":4,"576":3,"577":2,"578":3,"579":1,"580":3,"581":1,"582":3,"583":2,"584":2,"585":4,"586":3,"587":4,"588":3,"589":2,"590":5,"591":2,"592":3,"593":3,"594":1,"595":4,"596":4,"597":2,"598":5,"599":2,"600":4,"601":4,"602":4,"603":1,"604":2,"605":5,"606":3,"607":2,"608":2,"609":4,"610":3,"611":3,"612":4,"613":1,"614":3,"615":3,"616":5,"617":2,"618":4,"619":4,"620":3,"621":4,"622":1,"623":4,"624":4,"625":2,"626":1,"627":4,"628":3,"629":1,"630":3,"631":4,"632":3,"633":5,"634":3,"635":3,"636":2,"637":1,"638":3,"639":3,"640":5,"641":5,"642":1,"643":2,"644":2,"645":4,"646":4,"647":3,"648":3,"649":4,"650":4,"651":4,"652":4,"653":3,"654":3,"655":3,"656":2,"657":4,"658":1,"659":2,"660":3,"661":3,"662":2,"663":4,"664":4,"665":3,"666":4,"667":4,"668":3,"669":3,"670":3,"671":2,"672":3,"673":2,"674":3,"675":4,"676":3,"677":5,"678":3,"679":2,"680":2,"681":4,"682":3,"683":4,"684":4,"685":5,"686":4,"687":3,"688":2,"689":4,"690":4,"691":3,"692":4,"693":5,"694":5,"695":3,"696":2,"697":2,"698":3,"699":4,"700":4,"701":5,"702":5,"703":2,"704":3,"705":3,"706":3,"707":2,"708":3,"709":4,"710":3,"711":4,"712":4,"713":2,"714":2,"715":2,"716":1,"717":4,"718":2,"719":4,"720":4,"721":3,"722":3,"723":5,"724":3,"725":4,"726":3,"727":5,"728":3,"729":3,"730":4,"731":3,"732":4,"733":2,"734":5,"735":2,"736":3,"737":2,"738":2,"739":2,"740":4,"741":4,"742":2,"743":2,"744":4,"745":2,"746":2,"747":1,"748":3,"749":3,"750":2,"751":4,"752":3,"753":3,"754":3,"755":4,"756":2,"757":2,"758":4,"759":3,"760":5,"761":3,"762":4,"763":4,"764":4,"765":4,"766":1,"767":2,"768":3,"769":2,"770":5,"771":4,"772":3,"773":2,"774":5,"775":5,"776":1,"777":3,"778":2,"779":4,"780":2,"781":4,"782":3,"783":2,"784":1,"785":3,"786":4,"787":2,"788":3,"789":4,"790":2,"791":4,"792":3,"793":3,"794":2,"795":3,"796":4,"797":4,"798":4,"799":5,"800":4,"801":2,"802":2,"803":1,"804":4,"805":1,"806":3,"807":2,"808":5,"809":2,"810":4,"811":1,"812":2,"813":4,"814":4,"815":5,"816":1,"817":2,"818":3,"819":4,"820":3,"821":3,"822":3,"823":3,"824":3,"825":3,"826":2,"827":3,"828":3,"829":2,"830":2,"831":3,"832":4,"833":1,"834":2,"835":3,"836":2,"837":4,"838":3,"839":1,"840":3,"841":3,"842":3,"843":3,"844":3,"845":3,"846":2,"847":3,"848":4,"849":4,"850":4,"851":5,"852":4,"853":5,"854":2,"855":2,"856":3,"857":3,"858":2,"859":3,"860":4,"861":3,"862":3,"863":5,"864":1,"865":3,"866":4,"867":4,"868":1,"869":2,"870":2,"871":3,"872":2,"873":3,"874":3,"875":1,"876":3,"877":4,"878":4,"879":4,"880":3,"881":4,"882":4,"883":5,"884":4,"885":3,"886":1,"887":3,"888":3,"889":5,"890":4,"891":4,"892":3,"893":5,"894":5,"895":4,"896":2,"897":2,"898":3,"899":2,"900":4,"901":2,"902":3,"903":4,"904":3,"905":3,"906":2,"907":3,"908":4,"909":2,"910":4,"911":2,"912":2,"913":2,"914":3,"915":2,"916":3,"917":3,"918":2,"919":5,"920":5,"921":4,"922":2,"923":3,"924":2,"925":3,"926":3,"927":1,"928":3,"929":2,"930":4,"931":4,"932":2,"933":3,"934":3,"935":2,"936":3,"937":2,"938":4,"939":3,"940":4,"941":4,"942":3,"943":1,"944":3,"945":4,"946":5,"947":4,"948":2,"949":1,"950":3,"951":3,"952":5,"953":2,"954":2,"955":3,"956":2,"957":3,"958":3,"959":3,"960":5,"961":2,"962":4,"963":3,"964":1,"965":3,"966":3,"967":2,"968":2,"969":4,"970":3,"971":4,"972":2,"973":3,"974":3,"975":4,"976":2,"977":5,"978":3,"979":5,"980":3,"981":3,"982":4,"983":1,"984":2,"985":4,"986":3,"987":4,"988":5,"989":2,"990":3,"991":4,"992":3,"993":3,"994":4,"995":3,"996":2,"997":1,"998":4,"999":3,"1000":4,"1001":4,"1002":3,"1003":4,"1004":3,"1005":3,"1006":2,"1007":2,"1008":3,"1009":3,"1010":2,"1011":4,"1012":3,"1013":2,"1014":3,"1015":3,"1016":5,"1017":1,"1018":4,"1019":4,"1020":5,"1021":4,"1022":3,"1023":4,"1024":5,"1025":1,"1026":1,"1027":2,"1028":4,"1029":4,"1030":2,"1031":2,"1032":4,"1033":2,"1034":4,"1035":3,"1036":1,"1037":3,"1038":4,"1039":3,"1040":3,"1041":4,"1042":1,"1043":3,"1044":3,"1045":1,"1046":2,"1047":4,"1048":4,"1049":3,"1050":5,"1051":3,"1052":3,"1053":2,"1054":2,"1055":3,"1056":4,"1057":4,"1058":3,"1059":3,"1060":4,"1061":5,"1062":1,"1063":1,"1064":4,"1065":3,"1066":3,"1067":3,"1068":3,"1069":4,"1070":4,"1071":3,"1072":1,"1073":2,"1074":3,"1075":4,"1076":4,"1077":3,"1078":2,"1079":2,"1080":2,"1081":2,"1082":3,"1083":1,"1084":4,"1085":4,"1086":5,"1087":3,"1088":1,"1089":3,"1090":3,"1091":2,"1092":2,"1093":3,"1094":3,"1095":2,"1096":3,"1097":3,"1098":5,"1099":3,"1100":3,"1101":2,"1102":2,"1103":3,"1104":2,"1105":3,"1106":4,"1107":4,"1108":1,"1109":3,"1110":1,"1111":2,"1112":3,"1113":4,"1114":2,"1115":2,"1116":2,"1117":4,"1118":2,"1119":2,"1120":4,"1121":3,"1122":3,"1123":2,"1124":3,"1125":4,"1126":2,"1127":3,"1128":3,"1129":1,"1130":2,"1131":3,"1132":2,"1133":3,"1134":3,"1135":1,"1136":2,"1137":4,"1138":2,"1139":3,"1140":3,"1141":1,"1142":4,"1143":4,"1144":4,"1145":3,"1146":5,"1147":4,"1148":4,"1149":4,"1150":3,"1151":4,"1152":3,"1153":4,"1154":1,"1155":1,"1156":2,"1157":5,"1158":3,"1159":4,"1160":3,"1161":3,"1162":5,"1163":3,"1164":3,"1165":2,"1166":3,"1167":1,"1168":2,"1169":3,"1170":3,"1171":2,"1172":3,"1173":2,"1174":4,"1175":3,"1176":3,"1177":3,"1178":4,"1179":2,"1180":2,"1181":2,"1182":3,"1183":2,"1184":4,"1185":3,"1186":4,"1187":3,"1188":4,"1189":4,"1190":5,"1191":3,"1192":5,"1193":1,"1194":3,"1195":3,"1196":3,"1197":4,"1198":2,"1199":3,"1200":2,"1201":2,"1202":3,"1203":4,"1204":4,"1205":2,"1206":1,"1207":4,"1208":4,"1209":3,"1210":3,"1211":3,"1212":4,"1213":3,"1214":4,"1215":3,"1216":2,"1217":3,"1218":2,"1219":5,"1220":1,"1221":4,"1222":4,"1223":2,"1224":4,"1225":5,"1226":2,"1227":4,"1228":3,"1229":2,"1230":4,"1231":5,"1232":3,"1233":2,"1234":3,"1235":1,"1236":4,"1237":3,"1238":2,"1239":3,"1240":4,"1241":1,"1242":4,"1243":2,"1244":2,"1245":3,"1246":2,"1247":4,"1248":2,"1249":5,"1250":2,"1251":4,"1252":4,"1253":3,"1254":2,"1255":3,"1256":4,"1257":3,"1258":1,"1259":2,"1260":4,"1261":5,"1262":2,"1263":3,"1264":4,"1265":4,"1266":1,"1267":1,"1268":2,"1269":2,"1270":5,"1271":2,"1272":4,"1273":2,"1274":5,"1275":1,"1276":2,"1277":2,"1278":4,"1279":2,"1280":2,"1281":5,"1282":3,"1283":2,"1284":3,"1285":1,"1286":3,"1287":3,"1288":2,"1289":4,"1290":4,"1291":1,"1292":2,"1293":4,"1294":1,"1295":1,"1296":2,"1297":2,"1298":2,"1299":3,"1300":4,"1301":4,"1302":1,"1303":1,"1304":3,"1305":3,"1306":2,"1307":2,"1308":3,"1309":1,"1310":3,"1311":2,"1312":4,"1313":4,"1314":1,"1315":3,"1316":5,"1317":2,"1318":4,"1319":5,"1320":1,"1321":1,"1322":3,"1323":3,"1324":4,"1325":5,"1326":3,"1327":3,"1328":4,"1329":5,"1330":2,"1331":2,"1332":3,"1333":3,"1334":3,"1335":3,"1336":1,"1337":3,"1338":3,"1339":5,"1340":5,"1341":3,"1342":1,"1343":2,"1344":3,"1345":3,"1346":4,"1347":4,"1348":4,"1349":5,"1350":3,"1351":4,"1352":3,"1353":3,"1354":3,"1355":4,"1356":3,"1357":2,"1358":5,"1359":4,"1360":3,"1361":1,"1362":2,"1363":1,"1364":3,"1365":4,"1366":1,"1367":2,"1368":2,"1369":4,"1370":4,"1371":3,"1372":3,"1373":3,"1374":4,"1375":3,"1376":2,"1377":3,"1378":4,"1379":4,"1380":2,"1381":2,"1382":2,"1383":2,"1384":3,"1385":3,"1386":3,"1387":2,"1388":2,"1389":3,"1390":3,"1391":4,"1392":4,"1393":5,"1394":2,"1395":2,"1396":4,"1397":4,"1398":2,"1399":3,"1400":5,"1401":4,"1402":4,"1403":1,"1404":1,"1405":4,"1406":2,"1407":2,"1408":3,"1409":3,"1410":2,"1411":4,"1412":4,"1413":3,"1414":3,"1415":3,"1416":2,"1417":2,"1418":2,"1419":3,"1420":4,"1421":1,"1422":4,"1423":3,"1424":3,"1425":3,"1426":2,"1427":4,"1428":4,"1429":3,"1430":3,"1431":4,"1432":4,"1433":3,"1434":3,"1435":5,"1436":2,"1437":3,"1438":2,"1439":5,"1440":3,"1441":5,"1442":3,"1443":4,"1444":4,"1445":3,"1446":4,"1447":4,"1448":4,"1449":4,"1450":5,"1451":2,"1452":2,"1453":3,"1454":4,"1455":1,"1456":3,"1457":4,"1458":2,"1459":2,"1460":1,"1461":3,"1462":4,"1463":3,"1464":2,"1465":1,"1466":3,"1467":4,"1468":3,"1469":2,"1470":2,"1471":1,"1472":1,"1473":4,"1474":5,"1475":3,"1476":2,"1477":2,"1478":4,"1479":1,"1480":2,"1481":4,"1482":3,"1483":3,"1484":3,"1485":3,"1486":3,"1487":3,"1488":3,"1489":3,"1490":5,"1491":4,"1492":3,"1493":3,"1494":3,"1495":3,"1496":5,"1497":4,"1498":5,"1499":4,"1500":3,"1501":2,"1502":4,"1503":4,"1504":3,"1505":3,"1506":2,"1507":3,"1508":3,"1509":1,"1510":4,"1511":2,"1512":3,"1513":1,"1514":5,"1515":4,"1516":1,"1517":5,"1518":4,"1519":3,"1520":4,"1521":1,"1522":3,"1523":3,"1524":3,"1525":4,"1526":4,"1527":2,"1528":2,"1529":4,"1530":2,"1531":5,"1532":1,"1533":5,"1534":3,"1535":3,"1536":3,"1537":3,"1538":4,"1539":3,"1540":3,"1541":3,"1542":5,"1543":3,"1544":4,"1545":4,"1546":2,"1547":2,"1548":4,"1549":4,"1550":3,"1551":1,"1552":1,"1553":2,"1554":4,"1555":3,"1556":4,"1557":4,"1558":3,"1559":3,"1560":3,"1561":2,"1562":3,"1563":4,"1564":3,"1565":4,"1566":1,"1567":4,"1568":3,"1569":3,"1570":3,"1571":2,"1572":2,"1573":4,"1574":5,"1575":3,"1576":3,"1577":4,"1578":3,"1579":3,"1580":4,"1581":4,"1582":2,"1583":2,"1584":4,"1585":2,"1586":3,"1587":3,"1588":4,"1589":4,"1590":3,"1591":3,"1592":4,"1593":3,"1594":4,"1595":3,"1596":3,"1597":2,"1598":2,"1599":2,"1600":3,"1601":4,"1602":3,"1603":5,"1604":1,"1605":5,"1606":1,"1607":5,"1608":5,"1609":5,"1610":2,"1611":3,"1612":3,"1613":3,"1614":3,"1615":1,"1616":3,"1617":3,"1618":3,"1619":2,"1620":5,"1621":1,"1622":4,"1623":2,"1624":2,"1625":4,"1626":2,"1627":3,"1628":4,"1629":1,"1630":5,"1631":3,"1632":1,"1633":3,"1634":2,"1635":3,"1636":3,"1637":4,"1638":1,"1639":4,"1640":3,"1641":4,"1642":4,"1643":4,"1644":4,"1645":4,"1646":5,"1647":4,"1648":2,"1649":2,"1650":3,"1651":3,"1652":2,"1653":4,"1654":3,"1655":4,"1656":3,"1657":4,"1658":3,"1659":3,"1660":3,"1661":3,"1662":2,"1663":4,"1664":3,"1665":4,"1666":2,"1667":4,"1668":5,"1669":4,"1670":2,"1671":2,"1672":4,"1673":3,"1674":2,"1675":3,"1676":3,"1677":2,"1678":3,"1679":1,"1680":2,"1681":1,"1682":2,"1683":2,"1684":4,"1685":1,"1686":2,"1687":4,"1688":3,"1689":4,"1690":4,"1691":4,"1692":4,"1693":4,"1694":4,"1695":3,"1696":2,"1697":2,"1698":3,"1699":3,"1700":2,"1701":3,"1702":2,"1703":4,"1704":4,"1705":5,"1706":5,"1707":2,"1708":4,"1709":2,"1710":3,"1711":3,"1712":1,"1713":2,"1714":4,"1715":3,"1716":3,"1717":4,"1718":2,"1719":3,"1720":4,"1721":5,"1722":5,"1723":3,"1724":2,"1725":3,"1726":2,"1727":2,"1728":3,"1729":4,"1730":1,"1731":4,"1732":2,"1733":5,"1734":3,"1735":4,"1736":3,"1737":2,"1738":3,"1739":3,"1740":1,"1741":4,"1742":3,"1743":5,"1744":1,"1745":4,"1746":3,"1747":4,"1748":5,"1749":4,"1750":4,"1751":3,"1752":3,"1753":3,"1754":3,"1755":1,"1756":3,"1757":2,"1758":1,"1759":3,"1760":3,"1761":3,"1762":4,"1763":4,"1764":1,"1765":1,"1766":2,"1767":4,"1768":4,"1769":3,"1770":4,"1771":4,"1772":3,"1773":1,"1774":3,"1775":1,"1776":4,"1777":2,"1778":3,"1779":2,"1780":2,"1781":2,"1782":2,"1783":3,"1784":1,"1785":3,"1786":3,"1787":4,"1788":3,"1789":3,"1790":4,"1791":2,"1792":3,"1793":1,"1794":3,"1795":1,"1796":4,"1797":2,"1798":3,"1799":3,"1800":3,"1801":4,"1802":3,"1803":3,"1804":3,"1805":3,"1806":4,"1807":2,"1808":3,"1809":3,"1810":1,"1811":3,"1812":3,"1813":4,"1814":3,"1815":4,"1816":2,"1817":4,"1818":5,"1819":5,"1820":4,"1821":4,"1822":3,"1823":1,"1824":2,"1825":4,"1826":3,"1827":3,"1828":5,"1829":1,"1830":4,"1831":4,"1832":3,"1833":2,"1834":4,"1835":5,"1836":4,"1837":3,"1838":1,"1839":1,"1840":3,"1841":2,"1842":2,"1843":2,"1844":3,"1845":2,"1846":3,"1847":2,"1848":3,"1849":4,"1850":2,"1851":3,"1852":3,"1853":3,"1854":2,"1855":3,"1856":2,"1857":1,"1858":3,"1859":2,"1860":2,"1861":2,"1862":3,"1863":2,"1864":4,"1865":4,"1866":4,"1867":1,"1868":2,"1869":3,"1870":3,"1871":4,"1872":3,"1873":1,"1874":4,"1875":2,"1876":4,"1877":2,"1878":1,"1879":2,"1880":4,"1881":3,"1882":4,"1883":3,"1884":2,"1885":3,"1886":3,"1887":4,"1888":3,"1889":2,"1890":3,"1891":2,"1892":4,"1893":4,"1894":5,"1895":3,"1896":2,"1897":1,"1898":1,"1899":3,"1900":5,"1901":2,"1902":5,"1903":4,"1904":3,"1905":5,"1906":3,"1907":2,"1908":1,"1909":3,"1910":5,"1911":4,"1912":2,"1913":1,"1914":2,"1915":2,"1916":4,"1917":4,"1918":2,"1919":3,"1920":3,"1921":1,"1922":3,"1923":3,"1924":2,"1925":1,"1926":3,"1927":1,"1928":3,"1929":4,"1930":2,"1931":3,"1932":2,"1933":2,"1934":5,"1935":2,"1936":3,"1937":4,"1938":4,"1939":4,"1940":4,"1941":1,"1942":4,"1943":3,"1944":3,"1945":5,"1946":1,"1947":3,"1948":1,"1949":3,"1950":5,"1951":5,"1952":2,"1953":4,"1954":1,"1955":4,"1956":2,"1957":3,"1958":3,"1959":2,"1960":2,"1961":1,"1962":3,"1963":3,"1964":2,"1965":5,"1966":2,"1967":2,"1968":3,"1969":4,"1970":3,"1971":3,"1972":3,"1973":3,"1974":3,"1975":3,"1976":1,"1977":1,"1978":3,"1979":5,"1980":2,"1981":4,"1982":3,"1983":1,"1984":3,"1985":3,"1986":4,"1987":3,"1988":2,"1989":3,"1990":4,"1991":4,"1992":3,"1993":4,"1994":4,"1995":3,"1996":4,"1997":5,"1998":3,"1999":4,"2000":2,"2001":4,"2002":4,"2003":3,"2004":2,"2005":2,"2006":2,"2007":5,"2008":3,"2009":3,"2010":2,"2011":3,"2012":3,"2013":3,"2014":4,"2015":2,"2016":2,"2017":2,"2018":3,"2019":4,"2020":3,"2021":3,"2022":3,"2023":3,"2024":2,"2025":1,"2026":1,"2027":4,"2028":1,"2029":2,"2030":4,"2031":3,"2032":3,"2033":3,"2034":5,"2035":4,"2036":3,"2037":1,"2038":3,"2039":3,"2040":1,"2041":2,"2042":4,"2043":4,"2044":3,"2045":2,"2046":2,"2047":1,"2048":5,"2049":1,"2050":4,"2051":2,"2052":3,"2053":5,"2054":2,"2055":3,"2056":3,"2057":5,"2058":3,"2059":2,"2060":2,"2061":3,"2062":2,"2063":2,"2064":3,"2065":1,"2066":5,"2067":4,"2068":3,"2069":5,"2070":4,"2071":4,"2072":4,"2073":4,"2074":4,"2075":5,"2076":3,"2077":3,"2078":2,"2079":2,"2080":3,"2081":3,"2082":2,"2083":3,"2084":4,"2085":1,"2086":2,"2087":1,"2088":3,"2089":3,"2090":3,"2091":3,"2092":4,"2093":3,"2094":1,"2095":4,"2096":1,"2097":4,"2098":3,"2099":2,"2100":3,"2101":3,"2102":1,"2103":4,"2104":2,"2105":3,"2106":2,"2107":2,"2108":4,"2109":4,"2110":3,"2111":3,"2112":4,"2113":3,"2114":4,"2115":3,"2116":3,"2117":3,"2118":4,"2119":3,"2120":1,"2121":2,"2122":3,"2123":2,"2124":4,"2125":5,"2126":2,"2127":3,"2128":4,"2129":3,"2130":4,"2131":4,"2132":2,"2133":4,"2134":4,"2135":3,"2136":4,"2137":1,"2138":4,"2139":5,"2140":3,"2141":4,"2142":3,"2143":4,"2144":3,"2145":3,"2146":3,"2147":3,"2148":3,"2149":4,"2150":3,"2151":3,"2152":4,"2153":3,"2154":2,"2155":1,"2156":3,"2157":2,"2158":4,"2159":3,"2160":4,"2161":4,"2162":2,"2163":3,"2164":3,"2165":2,"2166":3,"2167":1,"2168":3,"2169":4,"2170":3,"2171":4,"2172":3,"2173":4,"2174":3,"2175":3,"2176":5,"2177":3,"2178":4,"2179":3,"2180":3,"2181":3,"2182":2,"2183":3,"2184":2,"2185":3,"2186":2,"2187":3,"2188":3,"2189":5,"2190":4,"2191":1,"2192":1,"2193":4,"2194":5,"2195":1,"2196":4,"2197":4,"2198":3,"2199":1,"2200":2,"2201":4,"2202":2,"2203":3,"2204":2,"2205":3,"2206":3,"2207":3,"2208":4,"2209":2,"2210":3,"2211":3,"2212":3,"2213":2,"2214":2,"2215":3,"2216":2,"2217":4,"2218":2,"2219":2,"2220":3,"2221":4,"2222":2,"2223":1,"2224":3,"2225":2,"2226":4,"2227":2,"2228":2,"2229":3,"2230":3,"2231":2,"2232":4,"2233":4,"2234":4,"2235":4,"2236":4,"2237":5,"2238":4,"2239":5,"2240":2,"2241":4,"2242":5,"2243":1,"2244":3,"2245":4,"2246":4,"2247":4,"2248":4,"2249":2,"2250":2,"2251":3,"2252":4,"2253":2,"2254":2,"2255":2,"2256":4,"2257":3,"2258":4,"2259":2,"2260":3,"2261":3,"2262":2,"2263":3,"2264":3,"2265":3,"2266":3,"2267":3,"2268":3,"2269":2,"2270":3,"2271":4,"2272":3,"2273":3,"2274":4,"2275":4,"2276":4,"2277":3,"2278":3,"2279":3,"2280":4,"2281":1,"2282":4,"2283":2,"2284":3,"2285":3,"2286":4,"2287":2,"2288":2,"2289":5,"2290":5,"2291":2,"2292":3,"2293":3,"2294":3,"2295":1,"2296":2,"2297":2,"2298":5,"2299":4,"2300":3,"2301":2,"2302":2,"2303":2,"2304":2,"2305":4,"2306":3,"2307":4,"2308":5,"2309":4,"2310":3,"2311":4,"2312":4,"2313":3,"2314":3,"2315":4,"2316":3,"2317":4,"2318":3,"2319":2,"2320":2,"2321":3,"2322":2,"2323":2,"2324":2,"2325":2,"2326":2,"2327":4,"2328":3,"2329":3,"2330":2,"2331":2,"2332":4,"2333":2,"2334":2,"2335":4,"2336":2,"2337":5,"2338":3,"2339":3,"2340":4,"2341":5,"2342":2,"2343":4,"2344":5,"2345":4,"2346":4,"2347":3,"2348":2,"2349":3,"2350":2,"2351":5,"2352":5,"2353":1,"2354":4,"2355":5,"2356":4,"2357":4,"2358":2,"2359":4,"2360":3,"2361":2,"2362":3,"2363":2,"2364":3,"2365":4,"2366":3,"2367":3,"2368":4,"2369":3,"2370":5,"2371":2,"2372":3,"2373":4,"2374":2,"2375":2,"2376":3,"2377":3,"2378":2,"2379":2,"2380":3,"2381":3,"2382":3,"2383":3,"2384":4,"2385":2,"2386":2,"2387":4,"2388":1,"2389":3,"2390":5,"2391":4,"2392":3,"2393":2,"2394":1,"2395":2,"2396":3,"2397":5,"2398":1,"2399":3,"2400":2,"2401":3,"2402":3,"2403":3,"2404":4,"2405":4,"2406":4,"2407":3,"2408":4,"2409":3,"2410":3,"2411":3,"2412":2,"2413":3,"2414":3,"2415":4,"2416":2,"2417":2,"2418":4,"2419":4,"2420":2,"2421":4,"2422":4,"2423":3,"2424":1,"2425":3,"2426":3,"2427":4,"2428":3,"2429":4,"2430":4,"2431":4,"2432":2,"2433":2,"2434":5,"2435":4,"2436":3,"2437":4,"2438":3,"2439":4,"2440":2,"2441":3,"2442":4,"2443":2,"2444":3,"2445":2,"2446":4,"2447":3,"2448":1,"2449":4,"2450":3,"2451":3,"2452":4,"2453":3,"2454":3,"2455":4,"2456":3,"2457":4,"2458":2,"2459":3,"2460":3,"2461":4,"2462":4,"2463":3,"2464":4,"2465":3,"2466":2,"2467":5,"2468":2,"2469":3,"2470":3,"2471":3,"2472":2,"2473":2,"2474":4,"2475":3,"2476":3,"2477":1,"2478":2,"2479":3,"2480":4,"2481":1,"2482":2,"2483":5,"2484":1,"2485":3,"2486":3,"2487":2,"2488":3,"2489":3,"2490":3,"2491":4,"2492":3,"2493":5,"2494":4,"2495":5,"2496":3,"2497":3,"2498":4,"2499":3,"2500":3,"2501":3,"2502":3,"2503":1,"2504":3,"2505":4,"2506":3,"2507":4,"2508":2,"2509":1,"2510":5,"2511":2,"2512":3,"2513":3,"2514":2,"2515":3,"2516":3,"2517":3,"2518":3,"2519":3,"2520":2,"2521":2,"2522":4,"2523":5,"2524":5,"2525":2,"2526":3,"2527":5,"2528":2,"2529":3,"2530":3,"2531":4,"2532":4,"2533":1,"2534":1,"2535":2,"2536":3,"2537":4,"2538":5,"2539":2,"2540":1,"2541":3,"2542":3,"2543":3,"2544":3,"2545":1,"2546":3,"2547":3,"2548":2,"2549":3,"2550":5,"2551":3,"2552":2,"2553":2,"2554":4,"2555":3,"2556":2,"2557":4,"2558":2,"2559":3,"2560":2,"2561":3,"2562":4,"2563":2,"2564":5,"2565":4,"2566":3,"2567":1,"2568":3,"2569":3,"2570":1,"2571":5,"2572":1,"2573":3,"2574":2,"2575":5,"2576":3,"2577":1,"2578":3,"2579":2,"2580":5,"2581":4,"2582":3,"2583":3,"2584":2,"2585":3,"2586":3,"2587":4,"2588":2,"2589":4,"2590":3,"2591":4,"2592":3,"2593":2,"2594":3,"2595":3,"2596":2,"2597":3,"2598":3,"2599":5,"2600":3,"2601":4,"2602":3,"2603":3,"2604":4,"2605":5,"2606":3,"2607":2,"2608":4,"2609":3,"2610":2,"2611":3,"2612":4,"2613":4,"2614":1,"2615":4,"2616":4,"2617":5,"2618":3,"2619":4,"2620":3,"2621":3,"2622":2,"2623":3,"2624":4,"2625":3,"2626":2,"2627":3,"2628":4,"2629":3,"2630":4,"2631":5,"2632":3,"2633":3,"2634":2,"2635":4,"2636":2,"2637":1,"2638":3,"2639":1,"2640":3,"2641":3,"2642":4,"2643":3,"2644":2,"2645":3,"2646":3,"2647":4,"2648":3,"2649":4,"2650":3,"2651":2,"2652":2,"2653":3,"2654":3,"2655":4,"2656":4,"2657":2,"2658":1,"2659":3,"2660":3,"2661":1,"2662":2,"2663":1,"2664":3,"2665":3,"2666":3,"2667":1,"2668":5,"2669":4,"2670":2,"2671":4,"2672":3,"2673":4,"2674":5,"2675":2,"2676":2,"2677":4,"2678":2,"2679":3,"2680":3,"2681":5,"2682":1,"2683":3,"2684":3,"2685":4,"2686":3,"2687":4,"2688":1,"2689":3,"2690":5,"2691":4,"2692":1,"2693":1,"2694":2,"2695":3,"2696":3,"2697":5,"2698":1,"2699":3,"2700":3,"2701":2,"2702":3,"2703":2,"2704":1,"2705":4,"2706":3,"2707":3,"2708":3,"2709":4,"2710":4,"2711":3,"2712":3,"2713":4,"2714":3,"2715":4,"2716":3,"2717":2,"2718":3,"2719":2,"2720":3,"2721":3,"2722":3,"2723":2,"2724":1,"2725":4,"2726":1,"2727":2,"2728":1,"2729":4,"2730":4,"2731":3,"2732":3,"2733":3,"2734":1,"2735":3,"2736":1,"2737":3,"2738":4,"2739":2,"2740":3,"2741":3,"2742":3,"2743":4,"2744":3,"2745":3,"2746":4,"2747":3,"2748":3,"2749":2,"2750":2,"2751":4,"2752":3,"2753":5,"2754":2,"2755":4,"2756":4,"2757":1,"2758":3,"2759":2,"2760":1,"2761":2,"2762":2,"2763":4,"2764":2,"2765":2,"2766":5,"2767":4,"2768":3,"2769":2,"2770":4,"2771":4,"2772":3,"2773":4,"2774":5,"2775":3,"2776":2,"2777":2,"2778":3,"2779":3,"2780":3,"2781":3,"2782":4,"2783":5,"2784":3,"2785":3,"2786":2,"2787":2,"2788":4,"2789":3,"2790":5,"2791":2,"2792":2,"2793":5,"2794":2,"2795":3,"2796":2,"2797":2,"2798":2,"2799":4,"2800":4,"2801":3,"2802":4,"2803":2,"2804":5,"2805":3,"2806":2,"2807":4,"2808":4,"2809":3,"2810":3,"2811":2,"2812":3,"2813":3,"2814":3,"2815":4,"2816":1,"2817":4,"2818":3,"2819":2,"2820":4,"2821":4,"2822":2,"2823":4,"2824":4,"2825":3,"2826":2,"2827":1,"2828":3,"2829":4,"2830":4,"2831":2,"2832":2,"2833":2,"2834":1,"2835":2,"2836":3,"2837":4,"2838":2,"2839":1,"2840":3,"2841":1,"2842":4,"2843":4,"2844":4,"2845":3,"2846":1,"2847":4,"2848":3,"2849":4,"2850":4,"2851":2,"2852":4,"2853":3,"2854":1,"2855":3,"2856":4,"2857":4,"2858":3,"2859":3,"2860":3,"2861":3,"2862":3,"2863":2,"2864":1,"2865":4,"2866":3,"2867":3,"2868":3,"2869":2,"2870":1,"2871":2,"2872":2,"2873":4,"2874":4,"2875":3,"2876":2,"2877":2,"2878":4,"2879":3,"2880":3,"2881":5,"2882":4,"2883":2,"2884":5,"2885":3,"2886":3,"2887":4,"2888":4,"2889":1,"2890":4,"2891":3,"2892":3,"2893":5,"2894":3,"2895":4,"2896":4,"2897":3,"2898":4,"2899":2,"2900":4,"2901":3,"2902":3,"2903":4,"2904":3,"2905":2,"2906":4,"2907":1,"2908":4,"2909":2,"2910":4,"2911":1,"2912":1,"2913":2,"2914":1,"2915":3,"2916":3,"2917":4,"2918":3,"2919":4,"2920":4,"2921":1,"2922":2,"2923":2,"2924":2,"2925":3,"2926":3,"2927":4,"2928":2,"2929":2,"2930":1,"2931":3,"2932":3,"2933":3,"2934":2,"2935":3,"2936":2,"2937":4,"2938":1,"2939":3,"2940":2,"2941":2,"2942":5,"2943":4,"2944":3,"2945":3,"2946":1,"2947":5,"2948":4,"2949":2,"2950":4,"2951":3,"2952":3,"2953":3,"2954":4,"2955":3,"2956":4,"2957":3,"2958":2,"2959":4,"2960":4,"2961":3,"2962":2,"2963":4,"2964":3,"2965":3,"2966":4,"2967":4,"2968":4,"2969":4,"2970":3,"2971":4,"2972":2,"2973":3,"2974":2,"2975":3,"2976":4,"2977":3,"2978":4,"2979":4,"2980":3,"2981":2,"2982":3,"2983":4,"2984":1,"2985":4,"2986":4,"2987":1,"2988":5,"2989":2,"2990":2,"2991":1,"2992":5,"2993":3,"2994":5,"2995":2,"2996":4,"2997":4,"2998":3,"2999":4,"3000":3,"3001":3,"3002":3,"3003":3,"3004":2,"3005":4,"3006":3,"3007":4,"3008":3,"3009":3,"3010":4,"3011":1,"3012":2,"3013":5,"3014":3,"3015":3,"3016":4,"3017":2,"3018":4,"3019":3,"3020":2,"3021":3,"3022":3,"3023":1,"3024":3,"3025":3,"3026":3,"3027":2,"3028":4,"3029":2,"3030":4,"3031":4,"3032":3,"3033":2,"3034":5,"3035":3,"3036":3,"3037":3,"3038":2,"3039":2,"3040":3,"3041":4,"3042":3,"3043":3,"3044":5,"3045":2,"3046":2,"3047":3,"3048":1,"3049":2,"3050":3,"3051":5,"3052":3,"3053":3,"3054":3,"3055":3,"3056":5,"3057":3,"3058":4,"3059":3,"3060":3,"3061":3,"3062":2,"3063":3,"3064":4,"3065":2,"3066":5,"3067":1,"3068":4,"3069":4,"3070":4,"3071":4,"3072":3,"3073":3,"3074":2,"3075":1,"3076":2,"3077":3,"3078":3,"3079":2,"3080":1,"3081":4,"3082":2,"3083":4,"3084":5,"3085":3,"3086":3,"3087":2,"3088":4,"3089":2,"3090":3,"3091":2,"3092":2,"3093":2,"3094":4,"3095":3,"3096":4,"3097":4,"3098":2,"3099":4,"3100":1,"3101":1,"3102":4,"3103":3,"3104":4,"3105":4,"3106":3,"3107":2,"3108":2,"3109":3,"3110":4,"3111":3,"3112":4,"3113":2,"3114":3,"3115":2,"3116":3,"3117":3,"3118":2,"3119":3,"3120":4,"3121":2,"3122":3,"3123":5,"3124":4,"3125":4,"3126":3,"3127":3,"3128":3,"3129":3,"3130":1,"3131":5,"3132":2,"3133":3,"3134":2,"3135":3,"3136":3,"3137":3,"3138":4,"3139":1,"3140":4,"3141":5,"3142":4,"3143":2,"3144":3,"3145":1,"3146":3,"3147":2,"3148":1,"3149":4,"3150":5,"3151":3,"3152":4,"3153":2,"3154":3,"3155":1,"3156":3,"3157":3,"3158":2,"3159":1,"3160":3,"3161":4,"3162":4,"3163":4,"3164":4,"3165":2,"3166":3,"3167":3,"3168":4,"3169":2,"3170":4,"3171":3,"3172":2,"3173":4,"3174":5,"3175":4,"3176":1,"3177":3,"3178":3,"3179":3,"3180":4,"3181":1,"3182":2,"3183":3,"3184":4,"3185":4,"3186":4,"3187":4,"3188":3,"3189":3,"3190":2,"3191":4,"3192":3,"3193":3,"3194":2,"3195":2,"3196":2,"3197":3,"3198":2,"3199":2,"3200":2,"3201":3,"3202":3,"3203":5,"3204":3,"3205":2,"3206":2,"3207":2,"3208":2,"3209":4,"3210":4,"3211":3,"3212":5,"3213":3,"3214":3,"3215":3,"3216":3,"3217":4,"3218":3,"3219":2,"3220":3,"3221":5,"3222":3,"3223":4,"3224":4,"3225":5,"3226":2,"3227":1,"3228":2,"3229":2,"3230":4,"3231":3,"3232":3,"3233":3,"3234":2,"3235":3,"3236":3,"3237":2,"3238":3,"3239":2,"3240":4,"3241":1,"3242":5,"3243":3,"3244":4,"3245":2,"3246":4,"3247":3,"3248":2,"3249":1,"3250":4,"3251":2,"3252":3,"3253":3,"3254":4,"3255":3,"3256":3,"3257":2,"3258":2,"3259":4,"3260":4,"3261":4,"3262":4,"3263":1,"3264":4,"3265":4,"3266":4,"3267":5,"3268":3,"3269":4,"3270":1,"3271":5,"3272":4,"3273":2,"3274":2,"3275":4,"3276":3,"3277":5,"3278":4,"3279":2,"3280":3,"3281":3,"3282":5,"3283":3,"3284":1,"3285":3,"3286":1,"3287":2,"3288":2,"3289":3,"3290":3,"3291":3,"3292":2,"3293":4,"3294":2,"3295":3,"3296":4,"3297":3,"3298":1,"3299":3,"3300":3,"3301":3,"3302":5,"3303":2,"3304":4,"3305":3,"3306":3,"3307":4,"3308":4,"3309":4,"3310":3,"3311":2,"3312":2,"3313":3,"3314":2,"3315":1,"3316":2,"3317":2,"3318":5,"3319":3,"3320":3,"3321":5,"3322":3,"3323":4,"3324":5,"3325":2,"3326":2,"3327":2,"3328":3,"3329":3,"3330":1,"3331":4,"3332":4,"3333":5,"3334":4,"3335":2,"3336":5,"3337":4,"3338":2,"3339":1,"3340":2,"3341":3,"3342":2,"3343":4,"3344":4,"3345":1,"3346":3,"3347":4,"3348":2,"3349":3,"3350":1,"3351":2,"3352":3,"3353":4,"3354":4,"3355":2,"3356":3,"3357":2,"3358":1,"3359":3,"3360":2,"3361":4,"3362":4,"3363":2,"3364":2,"3365":5,"3366":2,"3367":3,"3368":1,"3369":3,"3370":3,"3371":5,"3372":2,"3373":4,"3374":2,"3375":3,"3376":3,"3377":3,"3378":3,"3379":3,"3380":3,"3381":2,"3382":3,"3383":4,"3384":3,"3385":2,"3386":4,"3387":3,"3388":5,"3389":5,"3390":3,"3391":4,"3392":3,"3393":1,"3394":3,"3395":3,"3396":3,"3397":2,"3398":3,"3399":1,"3400":3,"3401":3,"3402":2,"3403":3,"3404":2,"3405":4,"3406":1,"3407":1,"3408":4,"3409":3,"3410":3,"3411":2,"3412":4,"3413":5,"3414":4,"3415":2,"3416":3,"3417":2,"3418":3,"3419":1,"3420":3,"3421":1,"3422":4,"3423":1,"3424":4,"3425":2,"3426":3,"3427":2,"3428":3,"3429":4,"3430":3,"3431":2,"3432":2,"3433":3,"3434":3,"3435":3,"3436":4,"3437":3,"3438":3,"3439":3,"3440":3,"3441":5,"3442":3,"3443":3,"3444":3,"3445":5,"3446":1,"3447":3,"3448":4,"3449":1,"3450":4,"3451":5,"3452":1,"3453":4,"3454":4,"3455":2,"3456":3,"3457":2,"3458":4,"3459":4,"3460":1,"3461":2,"3462":2,"3463":2,"3464":4,"3465":3,"3466":3,"3467":2,"3468":4,"3469":5,"3470":2,"3471":3,"3472":5,"3473":4,"3474":3,"3475":4,"3476":1,"3477":4,"3478":3,"3479":3,"3480":2,"3481":2,"3482":3,"3483":3,"3484":4,"3485":3,"3486":3,"3487":2,"3488":4,"3489":3,"3490":1,"3491":3,"3492":5,"3493":3,"3494":3,"3495":1,"3496":2,"3497":3,"3498":5,"3499":2,"3500":2,"3501":3,"3502":4,"3503":3,"3504":2,"3505":3,"3506":2,"3507":3,"3508":3,"3509":1,"3510":3,"3511":3,"3512":1,"3513":4,"3514":2,"3515":3,"3516":3,"3517":3,"3518":1,"3519":2,"3520":2,"3521":3,"3522":1,"3523":5,"3524":4,"3525":3,"3526":1,"3527":3,"3528":4,"3529":4,"3530":2,"3531":3,"3532":1,"3533":4,"3534":3,"3535":3,"3536":2,"3537":4,"3538":4,"3539":3,"3540":1,"3541":2,"3542":4,"3543":4,"3544":3,"3545":4,"3546":2,"3547":2,"3548":3,"3549":1,"3550":3,"3551":5,"3552":2,"3553":2,"3554":4,"3555":3,"3556":2,"3557":4,"3558":4,"3559":1,"3560":1,"3561":3,"3562":4,"3563":4,"3564":2,"3565":2,"3566":3,"3567":2,"3568":3,"3569":2,"3570":2,"3571":3,"3572":3,"3573":3,"3574":1,"3575":4,"3576":2,"3577":4,"3578":3,"3579":2,"3580":3,"3581":3,"3582":2,"3583":2,"3584":3,"3585":1,"3586":1,"3587":2,"3588":4,"3589":5,"3590":3,"3591":3,"3592":3,"3593":4,"3594":3,"3595":4,"3596":4,"3597":3,"3598":4,"3599":2,"3600":2,"3601":3,"3602":3,"3603":3,"3604":4,"3605":4,"3606":4,"3607":4,"3608":4,"3609":1,"3610":1,"3611":4,"3612":2,"3613":4,"3614":2,"3615":3,"3616":3,"3617":1,"3618":4,"3619":5,"3620":4,"3621":3,"3622":2,"3623":3,"3624":5,"3625":4,"3626":1,"3627":4,"3628":5,"3629":3,"3630":3,"3631":3,"3632":3,"3633":1,"3634":2,"3635":2,"3636":4,"3637":2,"3638":4,"3639":3,"3640":5,"3641":3,"3642":3,"3643":4,"3644":2,"3645":3,"3646":2,"3647":4,"3648":4,"3649":4,"3650":2,"3651":3,"3652":4,"3653":1,"3654":2,"3655":2,"3656":3,"3657":1,"3658":4,"3659":3,"3660":3,"3661":1,"3662":3,"3663":2,"3664":2,"3665":1,"3666":4,"3667":3,"3668":4,"3669":4,"3670":1,"3671":4,"3672":5,"3673":2,"3674":1,"3675":4,"3676":1,"3677":5,"3678":3,"3679":1,"3680":3,"3681":3,"3682":3,"3683":3,"3684":2,"3685":3,"3686":4,"3687":3,"3688":2,"3689":4,"3690":3,"3691":5,"3692":1,"3693":3,"3694":2,"3695":3,"3696":3,"3697":2,"3698":4,"3699":2,"3700":1,"3701":4,"3702":3,"3703":3,"3704":3,"3705":3,"3706":1,"3707":2,"3708":2,"3709":1,"3710":2,"3711":3,"3712":1,"3713":5,"3714":1,"3715":4,"3716":3,"3717":4,"3718":3,"3719":1,"3720":2,"3721":2,"3722":3,"3723":1,"3724":1,"3725":2,"3726":3,"3727":3,"3728":1,"3729":1,"3730":3,"3731":3,"3732":3,"3733":1,"3734":4,"3735":3,"3736":3,"3737":2,"3738":3,"3739":2,"3740":4,"3741":4,"3742":2,"3743":5,"3744":2,"3745":3,"3746":3,"3747":4,"3748":2,"3749":3,"3750":4,"3751":1,"3752":4,"3753":4,"3754":3,"3755":3,"3756":3,"3757":4,"3758":3,"3759":3,"3760":4,"3761":2,"3762":5,"3763":2,"3764":2,"3765":4,"3766":4,"3767":1,"3768":4,"3769":3,"3770":4,"3771":2,"3772":3,"3773":2,"3774":2,"3775":2,"3776":3,"3777":1,"3778":2,"3779":4,"3780":2,"3781":5,"3782":3,"3783":5,"3784":3,"3785":2,"3786":3,"3787":5,"3788":1,"3789":3,"3790":2,"3791":2,"3792":5,"3793":1,"3794":3,"3795":4,"3796":3,"3797":5,"3798":2,"3799":3,"3800":1,"3801":1,"3802":4,"3803":3,"3804":2,"3805":1,"3806":4,"3807":5,"3808":3,"3809":3,"3810":3,"3811":1,"3812":3,"3813":2,"3814":3,"3815":2,"3816":4,"3817":3,"3818":3,"3819":3,"3820":4,"3821":3,"3822":3,"3823":1,"3824":1,"3825":5,"3826":3,"3827":2,"3828":3,"3829":2,"3830":4,"3831":5,"3832":4,"3833":2,"3834":3,"3835":4,"3836":2,"3837":2,"3838":2,"3839":5,"3840":1,"3841":3,"3842":2,"3843":3,"3844":3,"3845":3,"3846":1,"3847":4,"3848":3,"3849":2,"3850":2,"3851":4,"3852":2,"3853":4,"3854":4,"3855":1,"3856":3,"3857":4,"3858":4,"3859":4,"3860":4,"3861":4,"3862":2,"3863":3,"3864":3,"3865":1,"3866":5,"3867":4,"3868":2,"3869":4,"3870":3,"3871":3,"3872":5,"3873":3,"3874":2,"3875":4,"3876":2,"3877":2,"3878":3,"3879":2,"3880":3,"3881":3,"3882":4,"3883":1,"3884":2,"3885":1,"3886":4,"3887":1,"3888":3,"3889":3,"3890":3,"3891":5,"3892":5,"3893":3,"3894":5,"3895":4,"3896":3,"3897":2,"3898":4,"3899":1,"3900":3,"3901":4,"3902":5,"3903":4,"3904":3,"3905":2,"3906":2,"3907":3,"3908":4,"3909":3,"3910":3,"3911":4,"3912":4,"3913":2,"3914":3,"3915":4,"3916":1,"3917":4,"3918":3,"3919":3,"3920":3,"3921":3,"3922":4,"3923":3,"3924":2,"3925":5,"3926":3,"3927":2,"3928":3,"3929":3,"3930":5,"3931":3,"3932":2,"3933":2,"3934":2,"3935":2,"3936":3,"3937":4,"3938":1,"3939":1,"3940":2,"3941":4,"3942":4,"3943":2,"3944":1,"3945":1,"3946":3,"3947":4,"3948":3,"3949":4,"3950":2,"3951":3,"3952":4,"3953":3,"3954":3,"3955":3,"3956":3,"3957":3,"3958":2,"3959":2,"3960":1,"3961":4,"3962":4,"3963":5,"3964":5,"3965":5,"3966":5,"3967":2,"3968":2,"3969":3,"3970":5,"3971":3,"3972":3,"3973":2,"3974":1,"3975":4,"3976":5,"3977":4,"3978":3,"3979":3,"3980":4,"3981":2,"3982":1,"3983":4,"3984":3,"3985":3,"3986":4,"3987":2,"3988":3,"3989":5,"3990":3,"3991":1,"3992":3,"3993":2,"3994":2,"3995":1,"3996":3,"3997":4,"3998":1,"3999":4,"4000":1,"4001":5,"4002":2,"4003":5,"4004":2,"4005":2,"4006":4,"4007":3,"4008":2,"4009":2,"4010":2,"4011":1,"4012":5,"4013":5,"4014":3,"4015":1,"4016":3,"4017":3,"4018":1,"4019":4,"4020":2,"4021":3,"4022":2,"4023":3,"4024":1,"4025":1,"4026":3,"4027":3,"4028":2,"4029":3,"4030":1,"4031":3,"4032":2,"4033":2,"4034":3,"4035":5,"4036":2,"4037":2,"4038":4,"4039":2,"4040":3,"4041":3,"4042":2,"4043":4,"4044":2,"4045":3,"4046":3,"4047":4,"4048":4,"4049":1,"4050":3,"4051":3,"4052":2,"4053":4,"4054":2,"4055":3,"4056":4,"4057":1,"4058":5,"4059":3,"4060":4,"4061":3,"4062":1,"4063":3,"4064":4,"4065":2,"4066":4,"4067":4,"4068":4,"4069":3,"4070":1,"4071":2,"4072":2,"4073":3,"4074":2,"4075":3,"4076":3,"4077":3,"4078":4,"4079":4,"4080":1,"4081":5,"4082":1,"4083":5,"4084":3,"4085":5,"4086":3,"4087":3,"4088":4,"4089":3,"4090":5,"4091":4,"4092":4,"4093":5,"4094":5,"4095":1,"4096":4,"4097":2,"4098":5,"4099":4,"4100":3,"4101":4,"4102":4,"4103":3,"4104":1,"4105":4,"4106":4,"4107":2,"4108":3,"4109":2,"4110":4,"4111":4,"4112":2,"4113":1,"4114":2,"4115":2,"4116":2,"4117":3,"4118":3,"4119":2,"4120":3,"4121":1,"4122":1,"4123":1,"4124":2,"4125":4,"4126":4,"4127":3,"4128":3,"4129":4,"4130":3,"4131":3,"4132":3,"4133":3,"4134":4,"4135":1,"4136":4,"4137":2,"4138":3,"4139":3,"4140":3,"4141":3,"4142":4,"4143":4,"4144":4,"4145":3,"4146":4,"4147":1,"4148":4,"4149":2,"4150":3,"4151":4,"4152":3,"4153":3,"4154":2,"4155":3,"4156":3,"4157":4,"4158":1,"4159":4,"4160":2,"4161":3,"4162":3,"4163":3,"4164":4,"4165":4,"4166":3,"4167":2,"4168":3,"4169":3,"4170":4,"4171":3,"4172":4,"4173":5,"4174":2,"4175":3,"4176":3,"4177":4,"4178":2,"4179":5,"4180":2,"4181":2,"4182":4,"4183":5,"4184":5,"4185":4,"4186":3,"4187":4,"4188":2,"4189":3,"4190":4,"4191":2,"4192":3,"4193":3,"4194":4,"4195":3,"4196":3,"4197":4,"4198":2,"4199":4,"4200":4,"4201":1,"4202":4,"4203":2,"4204":1,"4205":4,"4206":5,"4207":1,"4208":2,"4209":4,"4210":3,"4211":2,"4212":2,"4213":2,"4214":2,"4215":3,"4216":3,"4217":4,"4218":4,"4219":4,"4220":5,"4221":3,"4222":2,"4223":2,"4224":4,"4225":4,"4226":3,"4227":2,"4228":4,"4229":3,"4230":3,"4231":3,"4232":2,"4233":3,"4234":5,"4235":3,"4236":1,"4237":3,"4238":5,"4239":4,"4240":1,"4241":5,"4242":3,"4243":3,"4244":5,"4245":3,"4246":2,"4247":4,"4248":2,"4249":5,"4250":1,"4251":1,"4252":4,"4253":1,"4254":1,"4255":4,"4256":2,"4257":3,"4258":5,"4259":2,"4260":4,"4261":2,"4262":3,"4263":3,"4264":1,"4265":4,"4266":3,"4267":3,"4268":3,"4269":2,"4270":3,"4271":4,"4272":2,"4273":3,"4274":5,"4275":4,"4276":2,"4277":2,"4278":4,"4279":5,"4280":3,"4281":3,"4282":2,"4283":3,"4284":5,"4285":4,"4286":2,"4287":4,"4288":3,"4289":2,"4290":2,"4291":3,"4292":2,"4293":4,"4294":3,"4295":3,"4296":1,"4297":1,"4298":4,"4299":1,"4300":3,"4301":4,"4302":3,"4303":2,"4304":1,"4305":2,"4306":3,"4307":4,"4308":3,"4309":1,"4310":3,"4311":2,"4312":2,"4313":4,"4314":5,"4315":3,"4316":4,"4317":1,"4318":4,"4319":3,"4320":1,"4321":3,"4322":4,"4323":5,"4324":3,"4325":2,"4326":2,"4327":2,"4328":1,"4329":3,"4330":3,"4331":3,"4332":4,"4333":5,"4334":4,"4335":4,"4336":3,"4337":4,"4338":4,"4339":5,"4340":4,"4341":3,"4342":1,"4343":3,"4344":5,"4345":2,"4346":2,"4347":1,"4348":4,"4349":2,"4350":2,"4351":2,"4352":2,"4353":4,"4354":4,"4355":2,"4356":1,"4357":2,"4358":3,"4359":4,"4360":4,"4361":3,"4362":2,"4363":4,"4364":2,"4365":4,"4366":4,"4367":3,"4368":3,"4369":3,"4370":1,"4371":5,"4372":4,"4373":4,"4374":3,"4375":1,"4376":3,"4377":3,"4378":5,"4379":3,"4380":2,"4381":1,"4382":5,"4383":2,"4384":4,"4385":2,"4386":1,"4387":2,"4388":4,"4389":3,"4390":2,"4391":4,"4392":3,"4393":4,"4394":5,"4395":5,"4396":3,"4397":4,"4398":3,"4399":5,"4400":3,"4401":5,"4402":2,"4403":2,"4404":3,"4405":1,"4406":3,"4407":2,"4408":4,"4409":3,"4410":3,"4411":2,"4412":4,"4413":3,"4414":3,"4415":3,"4416":3,"4417":3,"4418":3,"4419":4,"4420":2,"4421":2,"4422":3,"4423":3,"4424":3,"4425":1,"4426":3,"4427":2,"4428":3,"4429":2,"4430":2,"4431":2,"4432":3,"4433":5,"4434":1,"4435":3,"4436":2,"4437":4,"4438":2,"4439":4,"4440":3,"4441":2,"4442":3,"4443":3,"4444":4,"4445":3,"4446":3,"4447":3,"4448":2,"4449":2,"4450":3,"4451":4,"4452":4,"4453":3,"4454":2,"4455":5,"4456":3,"4457":1,"4458":1,"4459":3,"4460":1,"4461":2,"4462":4,"4463":4,"4464":5,"4465":4,"4466":1,"4467":5,"4468":4,"4469":3,"4470":3,"4471":1,"4472":3,"4473":3,"4474":2,"4475":5,"4476":3,"4477":2,"4478":2,"4479":3,"4480":2,"4481":3,"4482":3,"4483":2,"4484":1,"4485":4,"4486":3,"4487":3,"4488":5,"4489":3,"4490":3,"4491":3,"4492":4,"4493":3,"4494":3,"4495":5,"4496":4,"4497":1,"4498":3,"4499":1,"4500":3,"4501":3,"4502":3,"4503":1,"4504":4,"4505":3,"4506":3,"4507":2,"4508":3,"4509":3,"4510":2,"4511":2,"4512":3,"4513":4,"4514":4,"4515":3,"4516":3,"4517":2,"4518":3,"4519":3,"4520":3,"4521":2,"4522":4,"4523":3,"4524":4,"4525":4,"4526":4,"4527":3,"4528":1,"4529":4,"4530":4,"4531":4,"4532":1,"4533":3,"4534":4,"4535":4,"4536":3,"4537":4,"4538":2,"4539":4,"4540":4,"4541":3,"4542":2,"4543":1,"4544":5,"4545":4,"4546":3,"4547":2,"4548":3,"4549":4,"4550":3,"4551":2,"4552":1,"4553":2,"4554":2,"4555":3,"4556":3,"4557":3,"4558":4,"4559":1,"4560":3,"4561":3,"4562":5,"4563":4,"4564":3,"4565":3,"4566":1,"4567":1,"4568":4,"4569":5,"4570":3,"4571":3,"4572":4,"4573":5,"4574":2,"4575":4,"4576":4,"4577":4,"4578":2,"4579":3,"4580":5,"4581":3,"4582":3,"4583":4,"4584":3,"4585":1,"4586":4,"4587":3,"4588":3,"4589":4,"4590":2,"4591":5,"4592":3,"4593":4,"4594":3,"4595":3,"4596":3,"4597":4,"4598":3,"4599":4,"4600":5,"4601":3,"4602":2,"4603":1,"4604":1,"4605":3,"4606":1,"4607":2,"4608":3,"4609":5,"4610":3,"4611":2,"4612":3,"4613":3,"4614":4,"4615":2,"4616":3,"4617":3,"4618":3,"4619":4,"4620":4,"4621":2,"4622":4,"4623":2,"4624":3,"4625":3,"4626":3,"4627":2,"4628":4,"4629":4,"4630":5,"4631":4,"4632":3,"4633":3,"4634":3,"4635":3,"4636":3,"4637":3,"4638":3,"4639":3,"4640":1,"4641":4,"4642":2,"4643":4,"4644":4,"4645":4,"4646":3,"4647":5,"4648":2,"4649":3,"4650":4,"4651":2,"4652":3,"4653":2,"4654":2,"4655":4,"4656":3,"4657":5,"4658":3,"4659":4,"4660":2,"4661":2,"4662":3,"4663":3,"4664":3,"4665":2,"4666":3,"4667":3,"4668":3,"4669":5,"4670":3,"4671":3,"4672":1,"4673":2,"4674":4,"4675":4,"4676":2,"4677":2,"4678":4,"4679":3,"4680":3,"4681":1,"4682":3,"4683":2,"4684":2,"4685":5,"4686":3,"4687":1,"4688":2,"4689":3,"4690":2,"4691":4,"4692":3,"4693":3,"4694":3,"4695":5,"4696":1,"4697":3,"4698":3,"4699":2,"4700":3,"4701":2,"4702":1,"4703":2,"4704":1,"4705":5,"4706":2,"4707":3,"4708":3,"4709":3,"4710":4,"4711":1,"4712":2,"4713":3,"4714":3,"4715":4,"4716":4,"4717":4,"4718":4,"4719":3,"4720":4,"4721":1,"4722":2,"4723":1,"4724":3,"4725":1,"4726":3,"4727":2,"4728":2,"4729":3,"4730":3,"4731":2,"4732":1,"4733":2,"4734":2,"4735":3,"4736":2,"4737":2,"4738":4,"4739":4,"4740":1,"4741":1,"4742":4,"4743":4,"4744":3,"4745":3,"4746":3,"4747":3,"4748":1,"4749":5,"4750":3,"4751":3,"4752":3,"4753":1,"4754":2,"4755":5,"4756":3,"4757":4,"4758":5,"4759":2,"4760":4,"4761":2,"4762":3,"4763":4,"4764":3,"4765":3,"4766":4,"4767":3,"4768":2,"4769":4,"4770":3,"4771":2,"4772":5,"4773":3,"4774":3,"4775":2,"4776":4,"4777":2,"4778":1,"4779":1,"4780":4,"4781":4,"4782":2,"4783":2,"4784":4,"4785":2,"4786":2,"4787":2,"4788":3,"4789":1,"4790":2,"4791":2,"4792":2,"4793":4,"4794":4,"4795":2,"4796":3,"4797":2,"4798":4,"4799":4,"4800":2,"4801":3,"4802":2,"4803":4,"4804":3,"4805":2,"4806":3,"4807":4,"4808":2,"4809":4,"4810":3,"4811":2,"4812":4,"4813":3,"4814":3,"4815":4,"4816":4,"4817":3,"4818":4,"4819":1,"4820":3,"4821":2,"4822":1,"4823":3,"4824":3,"4825":3,"4826":4,"4827":3,"4828":3,"4829":4,"4830":2,"4831":4,"4832":2,"4833":2,"4834":2,"4835":3,"4836":2,"4837":1,"4838":5,"4839":4,"4840":4,"4841":4,"4842":3,"4843":1,"4844":3,"4845":4,"4846":3,"4847":2,"4848":5,"4849":1,"4850":4,"4851":5,"4852":3,"4853":4,"4854":3,"4855":4,"4856":3,"4857":3,"4858":3,"4859":4,"4860":4,"4861":4,"4862":5,"4863":3,"4864":5,"4865":2,"4866":3,"4867":3,"4868":3,"4869":1,"4870":3,"4871":3,"4872":4,"4873":4,"4874":3,"4875":2,"4876":4,"4877":4,"4878":1,"4879":2,"4880":5,"4881":1,"4882":4,"4883":4,"4884":5,"4885":2,"4886":1,"4887":4,"4888":4,"4889":1,"4890":3,"4891":5,"4892":3,"4893":2,"4894":2,"4895":2,"4896":1,"4897":3,"4898":4,"4899":5,"4900":2,"4901":3,"4902":3,"4903":4,"4904":2,"4905":5,"4906":3,"4907":3,"4908":1,"4909":4,"4910":2,"4911":2,"4912":3,"4913":3,"4914":3,"4915":3,"4916":3,"4917":2,"4918":3,"4919":4,"4920":3,"4921":3,"4922":3,"4923":1,"4924":2,"4925":3,"4926":3,"4927":4,"4928":5,"4929":4,"4930":2,"4931":4,"4932":3,"4933":4,"4934":3,"4935":2,"4936":4,"4937":3,"4938":3,"4939":3,"4940":2,"4941":3,"4942":3,"4943":3,"4944":4,"4945":3,"4946":2,"4947":4,"4948":3,"4949":2,"4950":2,"4951":3,"4952":4,"4953":3,"4954":1,"4955":4,"4956":3,"4957":3,"4958":4,"4959":4,"4960":5,"4961":5,"4962":2,"4963":3,"4964":3,"4965":5,"4966":1,"4967":2,"4968":3,"4969":3,"4970":1,"4971":4,"4972":4,"4973":3,"4974":4,"4975":2,"4976":4,"4977":4,"4978":4,"4979":2,"4980":1,"4981":3,"4982":3,"4983":2,"4984":3,"4985":4,"4986":4,"4987":3,"4988":4,"4989":2,"4990":3,"4991":1,"4992":4,"4993":2,"4994":1,"4995":2,"4996":2,"4997":1,"4998":3,"4999":3,"5000":5,"5001":3,"5002":1,"5003":3,"5004":3,"5005":4,"5006":3,"5007":2,"5008":3,"5009":2,"5010":4,"5011":2,"5012":1,"5013":5,"5014":5,"5015":1,"5016":4,"5017":2,"5018":2,"5019":3,"5020":4,"5021":3,"5022":2,"5023":2,"5024":4,"5025":2,"5026":3,"5027":3,"5028":2,"5029":3,"5030":2,"5031":1,"5032":4,"5033":5,"5034":2,"5035":4,"5036":4,"5037":2,"5038":2,"5039":3,"5040":2,"5041":2,"5042":3,"5043":3,"5044":4,"5045":3,"5046":2,"5047":3,"5048":3,"5049":5,"5050":3,"5051":2,"5052":4,"5053":3,"5054":1,"5055":4,"5056":1,"5057":4,"5058":4,"5059":1,"5060":3,"5061":3,"5062":3,"5063":3,"5064":5,"5065":1,"5066":2,"5067":4,"5068":3,"5069":4,"5070":4,"5071":2,"5072":4,"5073":3,"5074":1,"5075":5,"5076":3,"5077":3,"5078":4,"5079":3,"5080":1,"5081":1,"5082":5,"5083":3,"5084":4,"5085":2,"5086":1,"5087":4,"5088":3,"5089":2,"5090":3,"5091":5,"5092":4,"5093":2,"5094":5,"5095":4,"5096":2,"5097":4,"5098":3,"5099":1,"5100":3,"5101":4,"5102":3,"5103":1,"5104":3,"5105":4,"5106":3,"5107":3,"5108":4,"5109":4,"5110":5,"5111":2,"5112":1,"5113":3,"5114":2,"5115":3,"5116":4,"5117":2,"5118":3,"5119":4,"5120":1,"5121":1,"5122":3,"5123":2,"5124":3,"5125":3,"5126":4,"5127":3,"5128":2,"5129":4,"5130":3,"5131":3,"5132":3,"5133":3,"5134":4,"5135":2,"5136":5,"5137":2,"5138":4,"5139":4,"5140":3,"5141":2,"5142":2,"5143":4,"5144":2,"5145":4,"5146":4,"5147":3,"5148":3,"5149":1,"5150":4,"5151":4,"5152":2,"5153":3,"5154":4,"5155":3,"5156":3,"5157":3,"5158":4,"5159":2,"5160":1,"5161":2,"5162":2,"5163":5,"5164":4,"5165":4,"5166":4,"5167":2,"5168":3,"5169":2,"5170":3,"5171":4,"5172":3,"5173":4,"5174":3,"5175":5,"5176":3,"5177":2,"5178":2,"5179":1,"5180":2,"5181":3,"5182":2,"5183":4,"5184":3,"5185":1,"5186":4,"5187":2,"5188":2,"5189":1,"5190":5,"5191":2,"5192":2,"5193":5,"5194":2,"5195":1,"5196":3,"5197":4,"5198":2,"5199":2,"5200":2,"5201":3,"5202":2,"5203":1,"5204":3,"5205":4,"5206":2,"5207":4,"5208":4,"5209":3,"5210":2,"5211":2,"5212":1,"5213":3,"5214":4,"5215":2,"5216":5,"5217":2,"5218":2,"5219":4,"5220":4,"5221":3,"5222":2,"5223":4,"5224":4,"5225":3,"5226":2,"5227":5,"5228":1,"5229":3,"5230":5,"5231":2,"5232":3,"5233":5,"5234":4,"5235":2,"5236":3,"5237":1,"5238":3,"5239":5,"5240":1,"5241":2,"5242":3,"5243":3,"5244":2,"5245":4,"5246":4,"5247":3,"5248":4,"5249":3,"5250":4,"5251":2,"5252":2,"5253":4,"5254":2,"5255":1,"5256":2,"5257":4,"5258":5,"5259":3,"5260":2,"5261":5,"5262":5,"5263":3,"5264":2,"5265":3,"5266":3,"5267":3,"5268":3,"5269":4,"5270":4,"5271":3,"5272":4,"5273":1,"5274":3,"5275":3,"5276":5,"5277":4,"5278":5,"5279":2,"5280":1,"5281":2,"5282":1,"5283":3,"5284":2,"5285":2,"5286":1,"5287":3,"5288":3,"5289":5,"5290":5,"5291":2,"5292":4,"5293":3,"5294":3,"5295":3,"5296":2,"5297":2,"5298":5,"5299":4,"5300":5,"5301":3,"5302":5,"5303":1,"5304":2,"5305":4,"5306":3,"5307":2,"5308":4,"5309":3,"5310":3,"5311":2,"5312":2,"5313":4,"5314":4,"5315":5,"5316":3,"5317":2,"5318":5,"5319":4,"5320":3,"5321":4,"5322":4,"5323":4,"5324":1,"5325":1,"5326":5,"5327":4,"5328":2,"5329":2,"5330":4,"5331":1,"5332":2,"5333":5,"5334":4,"5335":4,"5336":4,"5337":3,"5338":2,"5339":4,"5340":3,"5341":4,"5342":2,"5343":4,"5344":3,"5345":3,"5346":4,"5347":1,"5348":2,"5349":1,"5350":2,"5351":3,"5352":4,"5353":3,"5354":5,"5355":3,"5356":5,"5357":2,"5358":4,"5359":2,"5360":3,"5361":4,"5362":2,"5363":3,"5364":5,"5365":4,"5366":4,"5367":5,"5368":3,"5369":4,"5370":2,"5371":5,"5372":3,"5373":2,"5374":4,"5375":4,"5376":3,"5377":3,"5378":4,"5379":1,"5380":4,"5381":1,"5382":4,"5383":3,"5384":4,"5385":3,"5386":2,"5387":4,"5388":3,"5389":4,"5390":3,"5391":3,"5392":3,"5393":3,"5394":2,"5395":4,"5396":2,"5397":3,"5398":4,"5399":3,"5400":1,"5401":3,"5402":5,"5403":3,"5404":1,"5405":3,"5406":5,"5407":3,"5408":2,"5409":3,"5410":4,"5411":2,"5412":3,"5413":1,"5414":5,"5415":4,"5416":5,"5417":5,"5418":2,"5419":3,"5420":3,"5421":3,"5422":4,"5423":3,"5424":2,"5425":2,"5426":3,"5427":4,"5428":1,"5429":3,"5430":2,"5431":2,"5432":2,"5433":1,"5434":5,"5435":2,"5436":4,"5437":5,"5438":2,"5439":3,"5440":5,"5441":3,"5442":3,"5443":4,"5444":4,"5445":4,"5446":3,"5447":3,"5448":4,"5449":5,"5450":1,"5451":3,"5452":4,"5453":1,"5454":2,"5455":3,"5456":3,"5457":1,"5458":4,"5459":3,"5460":2,"5461":3,"5462":2,"5463":4,"5464":4,"5465":4,"5466":2,"5467":4,"5468":2,"5469":4,"5470":2,"5471":2,"5472":3,"5473":3,"5474":3,"5475":4,"5476":2,"5477":3,"5478":4,"5479":4,"5480":3,"5481":4,"5482":3,"5483":4,"5484":4,"5485":1,"5486":2,"5487":2,"5488":4,"5489":3,"5490":3,"5491":3,"5492":3,"5493":2,"5494":3,"5495":3,"5496":3,"5497":3,"5498":5,"5499":3,"5500":2,"5501":2,"5502":1,"5503":2,"5504":5,"5505":2,"5506":3,"5507":1,"5508":4,"5509":4,"5510":3,"5511":3,"5512":3,"5513":3,"5514":3,"5515":3,"5516":1,"5517":4,"5518":3,"5519":3,"5520":2,"5521":2,"5522":4,"5523":1,"5524":4,"5525":4,"5526":4,"5527":4,"5528":3,"5529":4,"5530":1,"5531":1,"5532":2,"5533":4,"5534":2,"5535":4,"5536":4,"5537":4,"5538":5,"5539":3,"5540":5,"5541":4,"5542":3,"5543":5,"5544":2,"5545":2,"5546":3,"5547":3,"5548":2,"5549":2,"5550":5,"5551":3,"5552":4,"5553":3,"5554":2,"5555":4,"5556":4,"5557":3,"5558":5,"5559":5,"5560":1,"5561":2,"5562":3,"5563":2,"5564":2,"5565":2,"5566":1,"5567":3,"5568":3,"5569":3,"5570":3,"5571":2,"5572":2,"5573":3,"5574":3,"5575":3,"5576":4,"5577":3,"5578":4,"5579":2,"5580":4,"5581":3,"5582":3,"5583":4,"5584":2,"5585":3,"5586":4,"5587":3,"5588":3,"5589":3,"5590":3,"5591":3,"5592":1,"5593":3,"5594":5,"5595":3,"5596":4,"5597":3,"5598":5,"5599":3,"5600":3,"5601":3,"5602":2,"5603":3,"5604":1,"5605":4,"5606":1,"5607":2,"5608":3,"5609":2,"5610":2,"5611":4,"5612":2,"5613":4,"5614":2,"5615":4,"5616":3,"5617":5,"5618":4,"5619":4,"5620":5,"5621":1,"5622":3,"5623":1,"5624":1,"5625":5,"5626":5,"5627":3,"5628":1,"5629":3,"5630":3,"5631":3,"5632":5,"5633":4,"5634":4,"5635":3,"5636":3,"5637":2,"5638":2,"5639":4,"5640":3,"5641":3,"5642":3,"5643":2,"5644":4,"5645":3,"5646":3,"5647":4,"5648":3,"5649":3,"5650":2,"5651":4,"5652":3,"5653":1,"5654":2,"5655":5,"5656":5,"5657":4,"5658":2,"5659":4,"5660":2,"5661":4,"5662":2,"5663":4,"5664":3,"5665":2,"5666":2,"5667":2,"5668":2,"5669":1,"5670":1,"5671":3,"5672":5,"5673":3,"5674":2,"5675":3,"5676":3,"5677":3,"5678":1,"5679":2,"5680":4,"5681":4,"5682":5,"5683":3,"5684":3,"5685":4,"5686":3,"5687":3,"5688":3,"5689":4,"5690":1,"5691":4,"5692":3,"5693":4,"5694":1,"5695":3,"5696":4,"5697":2,"5698":3,"5699":2,"5700":4,"5701":2,"5702":3,"5703":5,"5704":3,"5705":3,"5706":1,"5707":3,"5708":4,"5709":3,"5710":1,"5711":5,"5712":3,"5713":4,"5714":4,"5715":2,"5716":2,"5717":3,"5718":3,"5719":4,"5720":1,"5721":3,"5722":4,"5723":3,"5724":3,"5725":3,"5726":5,"5727":3,"5728":1,"5729":3,"5730":1,"5731":5,"5732":1,"5733":2,"5734":5,"5735":3,"5736":2,"5737":3,"5738":1,"5739":4,"5740":1,"5741":3,"5742":4,"5743":3,"5744":2,"5745":3,"5746":3,"5747":1,"5748":3,"5749":3,"5750":4,"5751":4,"5752":4,"5753":3,"5754":3,"5755":3,"5756":4,"5757":2,"5758":4,"5759":4,"5760":3,"5761":4,"5762":3,"5763":2,"5764":2,"5765":3,"5766":2,"5767":3,"5768":2,"5769":4,"5770":2,"5771":2,"5772":3,"5773":2,"5774":3,"5775":4,"5776":3,"5777":2,"5778":4,"5779":3,"5780":2,"5781":3,"5782":3,"5783":4,"5784":2,"5785":3,"5786":3,"5787":1,"5788":2,"5789":2,"5790":2,"5791":4,"5792":3,"5793":4,"5794":3,"5795":4,"5796":4,"5797":2,"5798":3,"5799":4,"5800":5,"5801":4,"5802":4,"5803":4,"5804":3,"5805":2,"5806":2,"5807":2,"5808":2,"5809":4,"5810":2,"5811":1,"5812":2,"5813":4,"5814":4,"5815":3,"5816":3,"5817":4,"5818":4,"5819":2,"5820":2,"5821":2,"5822":1,"5823":2,"5824":4,"5825":3,"5826":1,"5827":4,"5828":2,"5829":3,"5830":2,"5831":3,"5832":2,"5833":4,"5834":1,"5835":4,"5836":1,"5837":3,"5838":3,"5839":4,"5840":3,"5841":2,"5842":3,"5843":4,"5844":5,"5845":3,"5846":1,"5847":1,"5848":2,"5849":4,"5850":2,"5851":4,"5852":1,"5853":3,"5854":3,"5855":4,"5856":1,"5857":3,"5858":1,"5859":4,"5860":1,"5861":2,"5862":4,"5863":4,"5864":4,"5865":5,"5866":5,"5867":4,"5868":4,"5869":4,"5870":4,"5871":2,"5872":4,"5873":3,"5874":3,"5875":4,"5876":3,"5877":4,"5878":3,"5879":4,"5880":3,"5881":3,"5882":3,"5883":3,"5884":2,"5885":1,"5886":5,"5887":3,"5888":2,"5889":3,"5890":2,"5891":3,"5892":1,"5893":3,"5894":4,"5895":4,"5896":4,"5897":1,"5898":3,"5899":3,"5900":4,"5901":5,"5902":3,"5903":1,"5904":2,"5905":3,"5906":2,"5907":3,"5908":4,"5909":2,"5910":5,"5911":3,"5912":1,"5913":3,"5914":2,"5915":3,"5916":4,"5917":1,"5918":3,"5919":1,"5920":3,"5921":3,"5922":2,"5923":4,"5924":3,"5925":2,"5926":3,"5927":3,"5928":4,"5929":3,"5930":3,"5931":5,"5932":4,"5933":3,"5934":3,"5935":3,"5936":2,"5937":2,"5938":2,"5939":4,"5940":5,"5941":4,"5942":2,"5943":4,"5944":2,"5945":3,"5946":4,"5947":2,"5948":5,"5949":4,"5950":3,"5951":3,"5952":4,"5953":5,"5954":4,"5955":3,"5956":3,"5957":2,"5958":1,"5959":2,"5960":1,"5961":4,"5962":4,"5963":3,"5964":1,"5965":3,"5966":1,"5967":3,"5968":4,"5969":3,"5970":2,"5971":2,"5972":3,"5973":3,"5974":2,"5975":1,"5976":4,"5977":2,"5978":4,"5979":2,"5980":3,"5981":4,"5982":4,"5983":3,"5984":5,"5985":2,"5986":2,"5987":3,"5988":4,"5989":3,"5990":2,"5991":2,"5992":3,"5993":2,"5994":3,"5995":1,"5996":1,"5997":1,"5998":3,"5999":2,"6000":3,"6001":2,"6002":3,"6003":3,"6004":2,"6005":4,"6006":2,"6007":3,"6008":4,"6009":3,"6010":3,"6011":4,"6012":4,"6013":2,"6014":3,"6015":5,"6016":4,"6017":1,"6018":3,"6019":4,"6020":1,"6021":3,"6022":4,"6023":1,"6024":3,"6025":4,"6026":3,"6027":2,"6028":1,"6029":1,"6030":3,"6031":1,"6032":2,"6033":3,"6034":1,"6035":3,"6036":4,"6037":3,"6038":2,"6039":5,"6040":3,"6041":2,"6042":5,"6043":4,"6044":4,"6045":2,"6046":3,"6047":2,"6048":3,"6049":4,"6050":3,"6051":2,"6052":2,"6053":4,"6054":1,"6055":2,"6056":4,"6057":3,"6058":4,"6059":1,"6060":3,"6061":3,"6062":3,"6063":3,"6064":4,"6065":4,"6066":4,"6067":4,"6068":3,"6069":1,"6070":1,"6071":3,"6072":5,"6073":2,"6074":2,"6075":1,"6076":3,"6077":1,"6078":5,"6079":4,"6080":2,"6081":1,"6082":5,"6083":5,"6084":4,"6085":2,"6086":2,"6087":2,"6088":4,"6089":1,"6090":3,"6091":3,"6092":4,"6093":4,"6094":3,"6095":4,"6096":2,"6097":1,"6098":3,"6099":4,"6100":4,"6101":3,"6102":3,"6103":2,"6104":3,"6105":4,"6106":3,"6107":3,"6108":2,"6109":5,"6110":4,"6111":5,"6112":3,"6113":4,"6114":2,"6115":3,"6116":4,"6117":2,"6118":1,"6119":2,"6120":4,"6121":2,"6122":2,"6123":5,"6124":2,"6125":3,"6126":4,"6127":4,"6128":5,"6129":2,"6130":4,"6131":4,"6132":4,"6133":2,"6134":4,"6135":4,"6136":3,"6137":3,"6138":1,"6139":3,"6140":2,"6141":2,"6142":1,"6143":3,"6144":3,"6145":3,"6146":4,"6147":4,"6148":3,"6149":4,"6150":2,"6151":1,"6152":3,"6153":2,"6154":2,"6155":3,"6156":3,"6157":1,"6158":3,"6159":4,"6160":5,"6161":1,"6162":5,"6163":3,"6164":4,"6165":3,"6166":4,"6167":2,"6168":4,"6169":4,"6170":4,"6171":2,"6172":1,"6173":3,"6174":2,"6175":3,"6176":3,"6177":1,"6178":3,"6179":3,"6180":2,"6181":3,"6182":5,"6183":4,"6184":3,"6185":2,"6186":5,"6187":2,"6188":2,"6189":5,"6190":1,"6191":4,"6192":3,"6193":4,"6194":4,"6195":4,"6196":3,"6197":4,"6198":3,"6199":4,"6200":2,"6201":4,"6202":5,"6203":3,"6204":3,"6205":4,"6206":3,"6207":2,"6208":3,"6209":3,"6210":2,"6211":2,"6212":1,"6213":5,"6214":1,"6215":2,"6216":2,"6217":3,"6218":3,"6219":2,"6220":3,"6221":2,"6222":3,"6223":3,"6224":3,"6225":3,"6226":3,"6227":5,"6228":3,"6229":3,"6230":2,"6231":3,"6232":2,"6233":3,"6234":3,"6235":3,"6236":3,"6237":2,"6238":3,"6239":3,"6240":3,"6241":3,"6242":3,"6243":2,"6244":2,"6245":4,"6246":3,"6247":3,"6248":3,"6249":3,"6250":2,"6251":2,"6252":4,"6253":2,"6254":2,"6255":3,"6256":3,"6257":1,"6258":3,"6259":4,"6260":3,"6261":3,"6262":1,"6263":1,"6264":2,"6265":5,"6266":2,"6267":2,"6268":3,"6269":3,"6270":3,"6271":2,"6272":3,"6273":4,"6274":2,"6275":2,"6276":2,"6277":3,"6278":2,"6279":2,"6280":4,"6281":3,"6282":3,"6283":4,"6284":2,"6285":1,"6286":5,"6287":3,"6288":4,"6289":5,"6290":5,"6291":4,"6292":2,"6293":3,"6294":3,"6295":2,"6296":5,"6297":3,"6298":3,"6299":4,"6300":3,"6301":1,"6302":3,"6303":5,"6304":4,"6305":3,"6306":2,"6307":4,"6308":3,"6309":2,"6310":4,"6311":2,"6312":4,"6313":3,"6314":3,"6315":3,"6316":4,"6317":3,"6318":2,"6319":3,"6320":5,"6321":4,"6322":2,"6323":2,"6324":3,"6325":3,"6326":4,"6327":2,"6328":4,"6329":4,"6330":2,"6331":4,"6332":3,"6333":3,"6334":2,"6335":5,"6336":1,"6337":3,"6338":2,"6339":4,"6340":2,"6341":1,"6342":4,"6343":3,"6344":2,"6345":4,"6346":1,"6347":1,"6348":4,"6349":4,"6350":2,"6351":1,"6352":1,"6353":4,"6354":1,"6355":3,"6356":4,"6357":4,"6358":3,"6359":3,"6360":4,"6361":4,"6362":2,"6363":4,"6364":5,"6365":4,"6366":4,"6367":3,"6368":1,"6369":2,"6370":3,"6371":3,"6372":3,"6373":5,"6374":2,"6375":1,"6376":2,"6377":3,"6378":4,"6379":4,"6380":4,"6381":5,"6382":3,"6383":2,"6384":4,"6385":3,"6386":3,"6387":4,"6388":4,"6389":3,"6390":2,"6391":4,"6392":4,"6393":3,"6394":4,"6395":2,"6396":2,"6397":4,"6398":2,"6399":3,"6400":5,"6401":4,"6402":4,"6403":3,"6404":3,"6405":3,"6406":4,"6407":3,"6408":2,"6409":3,"6410":3,"6411":2,"6412":4,"6413":1,"6414":2,"6415":3,"6416":3,"6417":4,"6418":3,"6419":3,"6420":3,"6421":2,"6422":4,"6423":4,"6424":4,"6425":3,"6426":3,"6427":4,"6428":3,"6429":2,"6430":3,"6431":3,"6432":4,"6433":1,"6434":3,"6435":3,"6436":3,"6437":3,"6438":5,"6439":3,"6440":4,"6441":3,"6442":2,"6443":4,"6444":2,"6445":3,"6446":4,"6447":2,"6448":4,"6449":2,"6450":2,"6451":4,"6452":5,"6453":2,"6454":4,"6455":1,"6456":5,"6457":2,"6458":3,"6459":3,"6460":2,"6461":2,"6462":2,"6463":4,"6464":3,"6465":4,"6466":3,"6467":2,"6468":1,"6469":1,"6470":1,"6471":4,"6472":1,"6473":1,"6474":3,"6475":4,"6476":3,"6477":2,"6478":1,"6479":4,"6480":3,"6481":2,"6482":4,"6483":5,"6484":3,"6485":5,"6486":2,"6487":3,"6488":3,"6489":2,"6490":4,"6491":1,"6492":2,"6493":3,"6494":2,"6495":2,"6496":2,"6497":3,"6498":1,"6499":3,"6500":4,"6501":2,"6502":3,"6503":3,"6504":4,"6505":4,"6506":3,"6507":4,"6508":4,"6509":3,"6510":1,"6511":4,"6512":2,"6513":3,"6514":4,"6515":2,"6516":4,"6517":4,"6518":3,"6519":3,"6520":3,"6521":3,"6522":4,"6523":3,"6524":2,"6525":4,"6526":2,"6527":3,"6528":3,"6529":3,"6530":4,"6531":3,"6532":1,"6533":3,"6534":4,"6535":4,"6536":3,"6537":1,"6538":5,"6539":3,"6540":3,"6541":2,"6542":3,"6543":4,"6544":3,"6545":3,"6546":5,"6547":3,"6548":2,"6549":2,"6550":3,"6551":4,"6552":5,"6553":4,"6554":4,"6555":4,"6556":3,"6557":3,"6558":1,"6559":3,"6560":2,"6561":1,"6562":3,"6563":1,"6564":3,"6565":3,"6566":5,"6567":1,"6568":2,"6569":3,"6570":3,"6571":3,"6572":2,"6573":2,"6574":3,"6575":3,"6576":1,"6577":2,"6578":3,"6579":3,"6580":1,"6581":2,"6582":4,"6583":2,"6584":3,"6585":3,"6586":3,"6587":3,"6588":3,"6589":2,"6590":5,"6591":3,"6592":4,"6593":1,"6594":3,"6595":1,"6596":3,"6597":3,"6598":2,"6599":3,"6600":1,"6601":3,"6602":3,"6603":4,"6604":5,"6605":4,"6606":3,"6607":4,"6608":2,"6609":4,"6610":4,"6611":4,"6612":2,"6613":4,"6614":3,"6615":3,"6616":4,"6617":3,"6618":2,"6619":2,"6620":3,"6621":3,"6622":4,"6623":3,"6624":1,"6625":4,"6626":4,"6627":4,"6628":3,"6629":2,"6630":2,"6631":3,"6632":4,"6633":2,"6634":2,"6635":2,"6636":3,"6637":2,"6638":4,"6639":2,"6640":3,"6641":3,"6642":3,"6643":3,"6644":3,"6645":3,"6646":4,"6647":2,"6648":3,"6649":3,"6650":1,"6651":3,"6652":5,"6653":4,"6654":4,"6655":3,"6656":2,"6657":3,"6658":2,"6659":2,"6660":2,"6661":4,"6662":4,"6663":4,"6664":2,"6665":2,"6666":4,"6667":4,"6668":2,"6669":2,"6670":5,"6671":3,"6672":4,"6673":4,"6674":3,"6675":2,"6676":3,"6677":3,"6678":4,"6679":2,"6680":5,"6681":3,"6682":3,"6683":1,"6684":3,"6685":3,"6686":2,"6687":3,"6688":4,"6689":1,"6690":1,"6691":3,"6692":4,"6693":3,"6694":3,"6695":4,"6696":1,"6697":3,"6698":4,"6699":2,"6700":2,"6701":4,"6702":3,"6703":4,"6704":3,"6705":3,"6706":1,"6707":4,"6708":4,"6709":2,"6710":5,"6711":4,"6712":5,"6713":2,"6714":4,"6715":2,"6716":3,"6717":2,"6718":3,"6719":2,"6720":4,"6721":4,"6722":1,"6723":3,"6724":3,"6725":4,"6726":2,"6727":2,"6728":1,"6729":4,"6730":3,"6731":2,"6732":1,"6733":3,"6734":3,"6735":4,"6736":4,"6737":2,"6738":2,"6739":3,"6740":3,"6741":4,"6742":3,"6743":3,"6744":3,"6745":4,"6746":4,"6747":3,"6748":4,"6749":3,"6750":5,"6751":3,"6752":4,"6753":1,"6754":1,"6755":3,"6756":3,"6757":3,"6758":2,"6759":3,"6760":3,"6761":2,"6762":3,"6763":3,"6764":3,"6765":1,"6766":4,"6767":4,"6768":2,"6769":1,"6770":5,"6771":5,"6772":2,"6773":3,"6774":4,"6775":2,"6776":2,"6777":3,"6778":2,"6779":3,"6780":2,"6781":3,"6782":4,"6783":1,"6784":3,"6785":1,"6786":5,"6787":2,"6788":4,"6789":3,"6790":2,"6791":3,"6792":2,"6793":3,"6794":2,"6795":2,"6796":3,"6797":2,"6798":3,"6799":2,"6800":4,"6801":3,"6802":2,"6803":2,"6804":3,"6805":2,"6806":3,"6807":2,"6808":5,"6809":2,"6810":3,"6811":4,"6812":2,"6813":1,"6814":4,"6815":1,"6816":4,"6817":3,"6818":4,"6819":5,"6820":2,"6821":4,"6822":4,"6823":3,"6824":2,"6825":3,"6826":4,"6827":2,"6828":2,"6829":5,"6830":1,"6831":5,"6832":2,"6833":1,"6834":2,"6835":4,"6836":2,"6837":4,"6838":3,"6839":4,"6840":2,"6841":4,"6842":4,"6843":4,"6844":4,"6845":4,"6846":2,"6847":2,"6848":2,"6849":3,"6850":4,"6851":4,"6852":2,"6853":3,"6854":3,"6855":2,"6856":2,"6857":4,"6858":5,"6859":4,"6860":4,"6861":4,"6862":3,"6863":2,"6864":3,"6865":2,"6866":1,"6867":5,"6868":3,"6869":2,"6870":5,"6871":2,"6872":5,"6873":5,"6874":2,"6875":1,"6876":1,"6877":2,"6878":3,"6879":4,"6880":4,"6881":1,"6882":3,"6883":2,"6884":2,"6885":5,"6886":4,"6887":3,"6888":4,"6889":2,"6890":5,"6891":3,"6892":4,"6893":5,"6894":1,"6895":1,"6896":5,"6897":4,"6898":3,"6899":3,"6900":3,"6901":3,"6902":3,"6903":3,"6904":4,"6905":4,"6906":2,"6907":5,"6908":4,"6909":4,"6910":4,"6911":3,"6912":3,"6913":4,"6914":5,"6915":3,"6916":3,"6917":2,"6918":3,"6919":5,"6920":3,"6921":4,"6922":3,"6923":3,"6924":4,"6925":3,"6926":1,"6927":1,"6928":3,"6929":2,"6930":2,"6931":4,"6932":1,"6933":3,"6934":2,"6935":3,"6936":4,"6937":2,"6938":3,"6939":1,"6940":5,"6941":3,"6942":4,"6943":1,"6944":4,"6945":3,"6946":2,"6947":3,"6948":3,"6949":2,"6950":3,"6951":4,"6952":3,"6953":2,"6954":3,"6955":5,"6956":3,"6957":4,"6958":4,"6959":2,"6960":4,"6961":4,"6962":4,"6963":3,"6964":2,"6965":4,"6966":2,"6967":1,"6968":3,"6969":3,"6970":3,"6971":5,"6972":3,"6973":4,"6974":5,"6975":4,"6976":2,"6977":4,"6978":3,"6979":3,"6980":4,"6981":3,"6982":3,"6983":4,"6984":3,"6985":3,"6986":2,"6987":3,"6988":4,"6989":2,"6990":4,"6991":1,"6992":3,"6993":4,"6994":4,"6995":3,"6996":3,"6997":4,"6998":2,"6999":2,"7000":3,"7001":3,"7002":2,"7003":4,"7004":3,"7005":5,"7006":4,"7007":3,"7008":4,"7009":2,"7010":4,"7011":3,"7012":3,"7013":2,"7014":3,"7015":3,"7016":3,"7017":1,"7018":3,"7019":1,"7020":4,"7021":3,"7022":2,"7023":3,"7024":1,"7025":4,"7026":4,"7027":3,"7028":3,"7029":3,"7030":5,"7031":4,"7032":5,"7033":2,"7034":3,"7035":1,"7036":3,"7037":2,"7038":3,"7039":3,"7040":2,"7041":3,"7042":4,"7043":1,"7044":2,"7045":4,"7046":2,"7047":2,"7048":4,"7049":4,"7050":4,"7051":1,"7052":4,"7053":3,"7054":3,"7055":4,"7056":4,"7057":3,"7058":1,"7059":4,"7060":4,"7061":3,"7062":3,"7063":2,"7064":1,"7065":2,"7066":4,"7067":1,"7068":2,"7069":3,"7070":4,"7071":3,"7072":4,"7073":3,"7074":4,"7075":2,"7076":4,"7077":5,"7078":4,"7079":3,"7080":3,"7081":3,"7082":1,"7083":3,"7084":3,"7085":3,"7086":3,"7087":3,"7088":3,"7089":2,"7090":3,"7091":2,"7092":3,"7093":3,"7094":1,"7095":1,"7096":3,"7097":3,"7098":1,"7099":4,"7100":3,"7101":3,"7102":4,"7103":3,"7104":4,"7105":2,"7106":4,"7107":3,"7108":2,"7109":2,"7110":3,"7111":1,"7112":1,"7113":1,"7114":3,"7115":4,"7116":1,"7117":1,"7118":3,"7119":2,"7120":4,"7121":1,"7122":2,"7123":2,"7124":3,"7125":4,"7126":2,"7127":3,"7128":4,"7129":4,"7130":2,"7131":4,"7132":3,"7133":3,"7134":5,"7135":3,"7136":3,"7137":5,"7138":5,"7139":3,"7140":2,"7141":2,"7142":4,"7143":1,"7144":2,"7145":4,"7146":2,"7147":3,"7148":4,"7149":5,"7150":5,"7151":1,"7152":3,"7153":3,"7154":1,"7155":3,"7156":4,"7157":2,"7158":5,"7159":5,"7160":5,"7161":3,"7162":2,"7163":3,"7164":2,"7165":3,"7166":2,"7167":3,"7168":3,"7169":4,"7170":3,"7171":2,"7172":3,"7173":2,"7174":2,"7175":1,"7176":2,"7177":3,"7178":2,"7179":5,"7180":3,"7181":4,"7182":1,"7183":1,"7184":4,"7185":5,"7186":2,"7187":5,"7188":3,"7189":4,"7190":4,"7191":3,"7192":3,"7193":5,"7194":3,"7195":3,"7196":5,"7197":4,"7198":2,"7199":3,"7200":2,"7201":2,"7202":2,"7203":2,"7204":3,"7205":3,"7206":3,"7207":2,"7208":4,"7209":4,"7210":3,"7211":2,"7212":3,"7213":5,"7214":2,"7215":3,"7216":4,"7217":2,"7218":2,"7219":4,"7220":5,"7221":4,"7222":4,"7223":3,"7224":2,"7225":4,"7226":2,"7227":4,"7228":4,"7229":2,"7230":3,"7231":4,"7232":3,"7233":2,"7234":4,"7235":2,"7236":2,"7237":3,"7238":3,"7239":3,"7240":4,"7241":2,"7242":1,"7243":2,"7244":5,"7245":2,"7246":3,"7247":4,"7248":3,"7249":2,"7250":5,"7251":3,"7252":3,"7253":4,"7254":3,"7255":4,"7256":3,"7257":2,"7258":4,"7259":3,"7260":2,"7261":4,"7262":2,"7263":4,"7264":2,"7265":4,"7266":3,"7267":2,"7268":2,"7269":2,"7270":2,"7271":5,"7272":4,"7273":4,"7274":2,"7275":3,"7276":4,"7277":2,"7278":2,"7279":3,"7280":3,"7281":5,"7282":2,"7283":2,"7284":5,"7285":4,"7286":2,"7287":4,"7288":1,"7289":1,"7290":2,"7291":1,"7292":3,"7293":5,"7294":3,"7295":3,"7296":2,"7297":4,"7298":1,"7299":3,"7300":3,"7301":3,"7302":2,"7303":2,"7304":2,"7305":3,"7306":2,"7307":1,"7308":2,"7309":3,"7310":2,"7311":2,"7312":2,"7313":3,"7314":2,"7315":4,"7316":2,"7317":4,"7318":1,"7319":4,"7320":2,"7321":4,"7322":3,"7323":1,"7324":4,"7325":2,"7326":2,"7327":1,"7328":3,"7329":4,"7330":3,"7331":4,"7332":4,"7333":1,"7334":2,"7335":5,"7336":2,"7337":3,"7338":5,"7339":1,"7340":2,"7341":1,"7342":2,"7343":2,"7344":3,"7345":1,"7346":3,"7347":3,"7348":3,"7349":2,"7350":4,"7351":4,"7352":4,"7353":2,"7354":3,"7355":3,"7356":1,"7357":3,"7358":4,"7359":2,"7360":4,"7361":3,"7362":4,"7363":3,"7364":1,"7365":2,"7366":3,"7367":2,"7368":4,"7369":5,"7370":4,"7371":2,"7372":1,"7373":4,"7374":1,"7375":2,"7376":4,"7377":1,"7378":2,"7379":4,"7380":3,"7381":1,"7382":4,"7383":3,"7384":1,"7385":2,"7386":4,"7387":4,"7388":2,"7389":2,"7390":3,"7391":4,"7392":4,"7393":4,"7394":3,"7395":2,"7396":2,"7397":3,"7398":2,"7399":2,"7400":4,"7401":4,"7402":2,"7403":2,"7404":4,"7405":5,"7406":3,"7407":4,"7408":4,"7409":3,"7410":3,"7411":1,"7412":1,"7413":3,"7414":5,"7415":5,"7416":4,"7417":3,"7418":2,"7419":2,"7420":3,"7421":4,"7422":3,"7423":2,"7424":3,"7425":4,"7426":5,"7427":3,"7428":4,"7429":2,"7430":3,"7431":3,"7432":1,"7433":3,"7434":4,"7435":2,"7436":4,"7437":4,"7438":3,"7439":5,"7440":4,"7441":2,"7442":4,"7443":4,"7444":5,"7445":3,"7446":1,"7447":3,"7448":3,"7449":3,"7450":3,"7451":4,"7452":3,"7453":3,"7454":3,"7455":4,"7456":2,"7457":5,"7458":4,"7459":4,"7460":3,"7461":3,"7462":3,"7463":3,"7464":2,"7465":3,"7466":3,"7467":2,"7468":4,"7469":3,"7470":3,"7471":1,"7472":3,"7473":3,"7474":4,"7475":2,"7476":2,"7477":3,"7478":3,"7479":2,"7480":2,"7481":3,"7482":3,"7483":3,"7484":3,"7485":5,"7486":2,"7487":4,"7488":5,"7489":1,"7490":4,"7491":2,"7492":3,"7493":5,"7494":3,"7495":3,"7496":4,"7497":2,"7498":4,"7499":4,"7500":1,"7501":5,"7502":2,"7503":3,"7504":3,"7505":5,"7506":3,"7507":2,"7508":5,"7509":3,"7510":5,"7511":4,"7512":4,"7513":3,"7514":3,"7515":2,"7516":3,"7517":3,"7518":1,"7519":5,"7520":4,"7521":4,"7522":2,"7523":3,"7524":4,"7525":3,"7526":5,"7527":4,"7528":3,"7529":4,"7530":3,"7531":3,"7532":4,"7533":3,"7534":3,"7535":4,"7536":4,"7537":5,"7538":3,"7539":3,"7540":3,"7541":3,"7542":2,"7543":2,"7544":4,"7545":2,"7546":3,"7547":3,"7548":4,"7549":3,"7550":2,"7551":4,"7552":4,"7553":3,"7554":3,"7555":1,"7556":3,"7557":3,"7558":4,"7559":2,"7560":5,"7561":3,"7562":1,"7563":3,"7564":1,"7565":3,"7566":2,"7567":4,"7568":4,"7569":1,"7570":4,"7571":3,"7572":2,"7573":2,"7574":4,"7575":4,"7576":3,"7577":1,"7578":5,"7579":5,"7580":3,"7581":4,"7582":2,"7583":3,"7584":2,"7585":2,"7586":1,"7587":1,"7588":4,"7589":5,"7590":2,"7591":2,"7592":4,"7593":1,"7594":4,"7595":5,"7596":1,"7597":3,"7598":3,"7599":3,"7600":3,"7601":1,"7602":3,"7603":2,"7604":3,"7605":3,"7606":1,"7607":5,"7608":3,"7609":4,"7610":2,"7611":3,"7612":3,"7613":3,"7614":3,"7615":1,"7616":1,"7617":4,"7618":5,"7619":4,"7620":1,"7621":1,"7622":3,"7623":1,"7624":2,"7625":1,"7626":1,"7627":3,"7628":1,"7629":2,"7630":3,"7631":2,"7632":3,"7633":1,"7634":3,"7635":4,"7636":3,"7637":3,"7638":1,"7639":3,"7640":2,"7641":3,"7642":2,"7643":2,"7644":3,"7645":2,"7646":2,"7647":4,"7648":4,"7649":3,"7650":3,"7651":2,"7652":5,"7653":1,"7654":4,"7655":3,"7656":4,"7657":3,"7658":4,"7659":3,"7660":5,"7661":4,"7662":3,"7663":4,"7664":2,"7665":4,"7666":4,"7667":3,"7668":4,"7669":5,"7670":2,"7671":4,"7672":3,"7673":2,"7674":3,"7675":2,"7676":1,"7677":4,"7678":4,"7679":2,"7680":3,"7681":4,"7682":4,"7683":2,"7684":1,"7685":3,"7686":3,"7687":3,"7688":3,"7689":3,"7690":1,"7691":4,"7692":3,"7693":5,"7694":5,"7695":4,"7696":2,"7697":1,"7698":3,"7699":4,"7700":3,"7701":3,"7702":2,"7703":4,"7704":1,"7705":5,"7706":3,"7707":4,"7708":3,"7709":2,"7710":4,"7711":2,"7712":3,"7713":3,"7714":4,"7715":4,"7716":3,"7717":1,"7718":4,"7719":3,"7720":1,"7721":3,"7722":3,"7723":2,"7724":4,"7725":5,"7726":3,"7727":3,"7728":2,"7729":3,"7730":2,"7731":3,"7732":4,"7733":4,"7734":4,"7735":2,"7736":4,"7737":3,"7738":3,"7739":3,"7740":2,"7741":4,"7742":3,"7743":2,"7744":3,"7745":3,"7746":3,"7747":3,"7748":2,"7749":4,"7750":4,"7751":3,"7752":2,"7753":4,"7754":2,"7755":1,"7756":1,"7757":2,"7758":3,"7759":1,"7760":1,"7761":4,"7762":4,"7763":4,"7764":1,"7765":3,"7766":3,"7767":4,"7768":1,"7769":4,"7770":2,"7771":3,"7772":1,"7773":3,"7774":4,"7775":2,"7776":2,"7777":2,"7778":4,"7779":3,"7780":5,"7781":3,"7782":4,"7783":4,"7784":3,"7785":3,"7786":2,"7787":5,"7788":4,"7789":4,"7790":3,"7791":4,"7792":3,"7793":3,"7794":3,"7795":4,"7796":5,"7797":3,"7798":3,"7799":3,"7800":4,"7801":3,"7802":4,"7803":2,"7804":4,"7805":4,"7806":1,"7807":3,"7808":1,"7809":3,"7810":2,"7811":4,"7812":5,"7813":1,"7814":3,"7815":2,"7816":4,"7817":4,"7818":3,"7819":1,"7820":3,"7821":2,"7822":4,"7823":2,"7824":5,"7825":5,"7826":2,"7827":3,"7828":4,"7829":2,"7830":4,"7831":3,"7832":2,"7833":3,"7834":2,"7835":2,"7836":2,"7837":3,"7838":1,"7839":4,"7840":4,"7841":5,"7842":3,"7843":4,"7844":2,"7845":2,"7846":3,"7847":4,"7848":1,"7849":3,"7850":2,"7851":3,"7852":5,"7853":3,"7854":4,"7855":4,"7856":3,"7857":2,"7858":2,"7859":1,"7860":5,"7861":2,"7862":4,"7863":3,"7864":3,"7865":3,"7866":2,"7867":4,"7868":5,"7869":4,"7870":2,"7871":3,"7872":4,"7873":3,"7874":5,"7875":1,"7876":2,"7877":2,"7878":4,"7879":3,"7880":4,"7881":3,"7882":2,"7883":3,"7884":4,"7885":5,"7886":2,"7887":3,"7888":1,"7889":3,"7890":1,"7891":2,"7892":2,"7893":5,"7894":4,"7895":2,"7896":2,"7897":2,"7898":4,"7899":3,"7900":2,"7901":4,"7902":1,"7903":3,"7904":4,"7905":4,"7906":3,"7907":3,"7908":2,"7909":1,"7910":3,"7911":2,"7912":3,"7913":5,"7914":1,"7915":4,"7916":3,"7917":4,"7918":4,"7919":3,"7920":4,"7921":4,"7922":3,"7923":2,"7924":4,"7925":5,"7926":2,"7927":1,"7928":2,"7929":5,"7930":3,"7931":5,"7932":2,"7933":3,"7934":3,"7935":2,"7936":3,"7937":4,"7938":2,"7939":5,"7940":3,"7941":2,"7942":1,"7943":4,"7944":2,"7945":1,"7946":2,"7947":3,"7948":4,"7949":4,"7950":3,"7951":4,"7952":3,"7953":5,"7954":4,"7955":5,"7956":3,"7957":3,"7958":2,"7959":2,"7960":3,"7961":3,"7962":1,"7963":2,"7964":4,"7965":5,"7966":3,"7967":3,"7968":2,"7969":1,"7970":4,"7971":4,"7972":3,"7973":4,"7974":2,"7975":4,"7976":5,"7977":4,"7978":5,"7979":5,"7980":3,"7981":5,"7982":3,"7983":3,"7984":2,"7985":3,"7986":3,"7987":3,"7988":4,"7989":5,"7990":4,"7991":4,"7992":4,"7993":4,"7994":3,"7995":3,"7996":2,"7997":2,"7998":1,"7999":2,"8000":2,"8001":2,"8002":2,"8003":2,"8004":4,"8005":4,"8006":3,"8007":4,"8008":5,"8009":2,"8010":4,"8011":3,"8012":1,"8013":2,"8014":1,"8015":1,"8016":3,"8017":2,"8018":3,"8019":2,"8020":3,"8021":3,"8022":3,"8023":3,"8024":2,"8025":3,"8026":4,"8027":1,"8028":1,"8029":2,"8030":3,"8031":3,"8032":2,"8033":4,"8034":4,"8035":4,"8036":3,"8037":2,"8038":2,"8039":5,"8040":4,"8041":3,"8042":4,"8043":3,"8044":2,"8045":2,"8046":2,"8047":4,"8048":4,"8049":3,"8050":1,"8051":3,"8052":5,"8053":3,"8054":2,"8055":2,"8056":4,"8057":1,"8058":3,"8059":4,"8060":3,"8061":3,"8062":2,"8063":4,"8064":5,"8065":4,"8066":1,"8067":3,"8068":5,"8069":4,"8070":4,"8071":3,"8072":1,"8073":2,"8074":5,"8075":4,"8076":3,"8077":2,"8078":2,"8079":3,"8080":3,"8081":3,"8082":3,"8083":3,"8084":2,"8085":3,"8086":4,"8087":4,"8088":1,"8089":2,"8090":3,"8091":5,"8092":2,"8093":2,"8094":3,"8095":4,"8096":3,"8097":5,"8098":2,"8099":4,"8100":2,"8101":4,"8102":2,"8103":3,"8104":5,"8105":3,"8106":3,"8107":4,"8108":3,"8109":4,"8110":3,"8111":1,"8112":2,"8113":3,"8114":3,"8115":4,"8116":1,"8117":3,"8118":3,"8119":2,"8120":1,"8121":1,"8122":3,"8123":1,"8124":3,"8125":3,"8126":3,"8127":4,"8128":2,"8129":2,"8130":5,"8131":1,"8132":3,"8133":3,"8134":2,"8135":4,"8136":5,"8137":3,"8138":4,"8139":2,"8140":4,"8141":2,"8142":2,"8143":3,"8144":2,"8145":3,"8146":3,"8147":3,"8148":5,"8149":4,"8150":4,"8151":3,"8152":2,"8153":2,"8154":3,"8155":2,"8156":1,"8157":3,"8158":3,"8159":1,"8160":3,"8161":2,"8162":3,"8163":5,"8164":4,"8165":4,"8166":2,"8167":4,"8168":3,"8169":2,"8170":1,"8171":4,"8172":4,"8173":2,"8174":4,"8175":1,"8176":1,"8177":5,"8178":5,"8179":3,"8180":4,"8181":5,"8182":2,"8183":2,"8184":2,"8185":4,"8186":4,"8187":2,"8188":4,"8189":4,"8190":4,"8191":3,"8192":3,"8193":5,"8194":4,"8195":4,"8196":3,"8197":5,"8198":2,"8199":4,"8200":3,"8201":1,"8202":2,"8203":2,"8204":5,"8205":5,"8206":3,"8207":3,"8208":1,"8209":2,"8210":3,"8211":3,"8212":3,"8213":4,"8214":4,"8215":5,"8216":2,"8217":3,"8218":1,"8219":4,"8220":1,"8221":3,"8222":4,"8223":3,"8224":2,"8225":2,"8226":2,"8227":3,"8228":3,"8229":4,"8230":3,"8231":2,"8232":2,"8233":3,"8234":3,"8235":3,"8236":4,"8237":3,"8238":3,"8239":3,"8240":3,"8241":4,"8242":1,"8243":4,"8244":3,"8245":3,"8246":3,"8247":3,"8248":3,"8249":4,"8250":3,"8251":5,"8252":4,"8253":4,"8254":2,"8255":3,"8256":3,"8257":2,"8258":2,"8259":2,"8260":4,"8261":3,"8262":2,"8263":2,"8264":4,"8265":5,"8266":4,"8267":4,"8268":5,"8269":2,"8270":5,"8271":4,"8272":3,"8273":2,"8274":2,"8275":2,"8276":4,"8277":1,"8278":2,"8279":2,"8280":4,"8281":2,"8282":1,"8283":3,"8284":1,"8285":3,"8286":5,"8287":2,"8288":3,"8289":3,"8290":1,"8291":2,"8292":2,"8293":3,"8294":4,"8295":1,"8296":3,"8297":2,"8298":5,"8299":4,"8300":4,"8301":4,"8302":3,"8303":3,"8304":4,"8305":4,"8306":4,"8307":3,"8308":3,"8309":3,"8310":3,"8311":2,"8312":4,"8313":3,"8314":5,"8315":2,"8316":5,"8317":3,"8318":3,"8319":3,"8320":2,"8321":2,"8322":3,"8323":5,"8324":3,"8325":3,"8326":1,"8327":2,"8328":3,"8329":1,"8330":2,"8331":3,"8332":2,"8333":1,"8334":2,"8335":5,"8336":3,"8337":4,"8338":3,"8339":3,"8340":3,"8341":3,"8342":4,"8343":3,"8344":4,"8345":4,"8346":3,"8347":3,"8348":5,"8349":3,"8350":5,"8351":4,"8352":3,"8353":4,"8354":3,"8355":1,"8356":1,"8357":3,"8358":2,"8359":3,"8360":1,"8361":3,"8362":2,"8363":2,"8364":3,"8365":3,"8366":4,"8367":5,"8368":4,"8369":4,"8370":2,"8371":2,"8372":2,"8373":1,"8374":2,"8375":4,"8376":4,"8377":1,"8378":4,"8379":3,"8380":3,"8381":3,"8382":4,"8383":4,"8384":2,"8385":4,"8386":3,"8387":4,"8388":4,"8389":4,"8390":2,"8391":2,"8392":3,"8393":4,"8394":5,"8395":3,"8396":3,"8397":2,"8398":4,"8399":4,"8400":3,"8401":4,"8402":3,"8403":4,"8404":1,"8405":4,"8406":3,"8407":3,"8408":3,"8409":2,"8410":2,"8411":2,"8412":4,"8413":4,"8414":3,"8415":2,"8416":2,"8417":4,"8418":3,"8419":4,"8420":4,"8421":4,"8422":5,"8423":2,"8424":4,"8425":2,"8426":5,"8427":4,"8428":3,"8429":2,"8430":2,"8431":1,"8432":4,"8433":4,"8434":3,"8435":2,"8436":4,"8437":3,"8438":2,"8439":2,"8440":1,"8441":4,"8442":3,"8443":4,"8444":3,"8445":4,"8446":2,"8447":3,"8448":4,"8449":4,"8450":4,"8451":3,"8452":4,"8453":3,"8454":4,"8455":4,"8456":2,"8457":3,"8458":5,"8459":4,"8460":1,"8461":4,"8462":3,"8463":3,"8464":3,"8465":3,"8466":2,"8467":3,"8468":3,"8469":2,"8470":2,"8471":4,"8472":4,"8473":4,"8474":2,"8475":4,"8476":4,"8477":2,"8478":4,"8479":4,"8480":5,"8481":5,"8482":3,"8483":4,"8484":3,"8485":3,"8486":3,"8487":3,"8488":2,"8489":3,"8490":3,"8491":3,"8492":2,"8493":3,"8494":5,"8495":1,"8496":1,"8497":2,"8498":2,"8499":4,"8500":4,"8501":4,"8502":2,"8503":3,"8504":2,"8505":3,"8506":3,"8507":4,"8508":2,"8509":2,"8510":1,"8511":3,"8512":3,"8513":2,"8514":4,"8515":5,"8516":2,"8517":3,"8518":4,"8519":3,"8520":2,"8521":2,"8522":3,"8523":4,"8524":1,"8525":4,"8526":2,"8527":4,"8528":4,"8529":5,"8530":4,"8531":4,"8532":1,"8533":3,"8534":2,"8535":4,"8536":3,"8537":3,"8538":4,"8539":5,"8540":3,"8541":4,"8542":4,"8543":2,"8544":1,"8545":3,"8546":4,"8547":3,"8548":5,"8549":3,"8550":1,"8551":4,"8552":1,"8553":4,"8554":4,"8555":4,"8556":2,"8557":4,"8558":2,"8559":5,"8560":2,"8561":1,"8562":2,"8563":4,"8564":2,"8565":4,"8566":3,"8567":3,"8568":2,"8569":2,"8570":2,"8571":2,"8572":2,"8573":4,"8574":4,"8575":4,"8576":3,"8577":2,"8578":2,"8579":3,"8580":3,"8581":1,"8582":4,"8583":3,"8584":2,"8585":3,"8586":3,"8587":3,"8588":4,"8589":3,"8590":4,"8591":4,"8592":2,"8593":3,"8594":2,"8595":3,"8596":2,"8597":2,"8598":4,"8599":2,"8600":5,"8601":4,"8602":2,"8603":3,"8604":5,"8605":2,"8606":3,"8607":1,"8608":3,"8609":1,"8610":3,"8611":3,"8612":4,"8613":3,"8614":2,"8615":2,"8616":3,"8617":4,"8618":2,"8619":3,"8620":4,"8621":5,"8622":2,"8623":2,"8624":2,"8625":2,"8626":1,"8627":4,"8628":1,"8629":3,"8630":3,"8631":2,"8632":3,"8633":2,"8634":1,"8635":3,"8636":2,"8637":3,"8638":5,"8639":5,"8640":2,"8641":2,"8642":2,"8643":5,"8644":3,"8645":4,"8646":4,"8647":2,"8648":4,"8649":3,"8650":3,"8651":3,"8652":3,"8653":4,"8654":1,"8655":2,"8656":3,"8657":4,"8658":4,"8659":3,"8660":4,"8661":3,"8662":1,"8663":3,"8664":2,"8665":1,"8666":1,"8667":3,"8668":2,"8669":3,"8670":3,"8671":4,"8672":4,"8673":2,"8674":3,"8675":4,"8676":2,"8677":3,"8678":3,"8679":4,"8680":2,"8681":2,"8682":3,"8683":3,"8684":1,"8685":4,"8686":3,"8687":4,"8688":3,"8689":3,"8690":3,"8691":2,"8692":4,"8693":3,"8694":3,"8695":2,"8696":2,"8697":2,"8698":2,"8699":3,"8700":1,"8701":1,"8702":3,"8703":4,"8704":1,"8705":3,"8706":4,"8707":3,"8708":2,"8709":5,"8710":4,"8711":3,"8712":3,"8713":2,"8714":4,"8715":3,"8716":5,"8717":3,"8718":5,"8719":2,"8720":2,"8721":4,"8722":2,"8723":2,"8724":3,"8725":4,"8726":2,"8727":3,"8728":3,"8729":3,"8730":3,"8731":3,"8732":3,"8733":4,"8734":4,"8735":2,"8736":3,"8737":2,"8738":4,"8739":2,"8740":2,"8741":2,"8742":4,"8743":2,"8744":4,"8745":3,"8746":4,"8747":4,"8748":2,"8749":3,"8750":1,"8751":2,"8752":5,"8753":3,"8754":2,"8755":4,"8756":3,"8757":3,"8758":3,"8759":5,"8760":5,"8761":2,"8762":2,"8763":2,"8764":3,"8765":2,"8766":3,"8767":2,"8768":2,"8769":3,"8770":2,"8771":2,"8772":2,"8773":2,"8774":3,"8775":3,"8776":3,"8777":2,"8778":4,"8779":3,"8780":5,"8781":4,"8782":5,"8783":5,"8784":3,"8785":5,"8786":5,"8787":1,"8788":4,"8789":4,"8790":3,"8791":4,"8792":4,"8793":3,"8794":2,"8795":3,"8796":3,"8797":3,"8798":3,"8799":3,"8800":4,"8801":3,"8802":1,"8803":3,"8804":3,"8805":2,"8806":2,"8807":3,"8808":1,"8809":5,"8810":4,"8811":2,"8812":4,"8813":1,"8814":3,"8815":2,"8816":3,"8817":2,"8818":4,"8819":2,"8820":4,"8821":3,"8822":3,"8823":3,"8824":3,"8825":3,"8826":2,"8827":3,"8828":2,"8829":3,"8830":4,"8831":3,"8832":1,"8833":4,"8834":2,"8835":1,"8836":3,"8837":4,"8838":1,"8839":5,"8840":2,"8841":5,"8842":2,"8843":3,"8844":3,"8845":4,"8846":2,"8847":2,"8848":3,"8849":3,"8850":2,"8851":2,"8852":2,"8853":4,"8854":3,"8855":3,"8856":4,"8857":3,"8858":4,"8859":4,"8860":3,"8861":4,"8862":3,"8863":3,"8864":2,"8865":3,"8866":3,"8867":4,"8868":1,"8869":5,"8870":1,"8871":3,"8872":2,"8873":1,"8874":1,"8875":4,"8876":2,"8877":3,"8878":3,"8879":4,"8880":4,"8881":5,"8882":2,"8883":3,"8884":4,"8885":3,"8886":5,"8887":4,"8888":4,"8889":2,"8890":3,"8891":4,"8892":2,"8893":2,"8894":4,"8895":2,"8896":3,"8897":2,"8898":4,"8899":2,"8900":3,"8901":5,"8902":3,"8903":2,"8904":2,"8905":1,"8906":2,"8907":4,"8908":3,"8909":3,"8910":5,"8911":2,"8912":4,"8913":3,"8914":4,"8915":3,"8916":1,"8917":3,"8918":3,"8919":3,"8920":3,"8921":5,"8922":1,"8923":3,"8924":1,"8925":2,"8926":5,"8927":1,"8928":2,"8929":3,"8930":3,"8931":3,"8932":2,"8933":4,"8934":2,"8935":2,"8936":4,"8937":4,"8938":5,"8939":3,"8940":4,"8941":3,"8942":2,"8943":2,"8944":2,"8945":3,"8946":3,"8947":4,"8948":3,"8949":3,"8950":3,"8951":4,"8952":3,"8953":3,"8954":3,"8955":5,"8956":2,"8957":2,"8958":4,"8959":1,"8960":3,"8961":4,"8962":2,"8963":5,"8964":4,"8965":2,"8966":2,"8967":2,"8968":3,"8969":2,"8970":2,"8971":4,"8972":3,"8973":4,"8974":2,"8975":2,"8976":3,"8977":3,"8978":4,"8979":1,"8980":3,"8981":3,"8982":3,"8983":3,"8984":1,"8985":3,"8986":4,"8987":4,"8988":1,"8989":3,"8990":4,"8991":3,"8992":2,"8993":5,"8994":3,"8995":4,"8996":5,"8997":4,"8998":3,"8999":3,"9000":4,"9001":1,"9002":5,"9003":3,"9004":4,"9005":4,"9006":3,"9007":3,"9008":4,"9009":5,"9010":5,"9011":3,"9012":3,"9013":3,"9014":4,"9015":3,"9016":4,"9017":3,"9018":2,"9019":4,"9020":5,"9021":4,"9022":5,"9023":4,"9024":2,"9025":2,"9026":2,"9027":3,"9028":2,"9029":3,"9030":3,"9031":2,"9032":4,"9033":2,"9034":3,"9035":4,"9036":4,"9037":3,"9038":4,"9039":3,"9040":3,"9041":4,"9042":4,"9043":3,"9044":2,"9045":2,"9046":2,"9047":4,"9048":4,"9049":3,"9050":2,"9051":3,"9052":3,"9053":5,"9054":3,"9055":3,"9056":3,"9057":2,"9058":3,"9059":5,"9060":4,"9061":3,"9062":5,"9063":3,"9064":3,"9065":4,"9066":3,"9067":3,"9068":4,"9069":3,"9070":3,"9071":1,"9072":3,"9073":4,"9074":3,"9075":2,"9076":3,"9077":4,"9078":3,"9079":3,"9080":2,"9081":3,"9082":4,"9083":4,"9084":5,"9085":4,"9086":4,"9087":3,"9088":4,"9089":3,"9090":3,"9091":4,"9092":2,"9093":4,"9094":3,"9095":3,"9096":4,"9097":1,"9098":4,"9099":5,"9100":4,"9101":1,"9102":1,"9103":3,"9104":2,"9105":4,"9106":1,"9107":3,"9108":3,"9109":3,"9110":2,"9111":3,"9112":2,"9113":3,"9114":1,"9115":3,"9116":5,"9117":3,"9118":2,"9119":5,"9120":3,"9121":1,"9122":2,"9123":3,"9124":1,"9125":3,"9126":5,"9127":3,"9128":3,"9129":4,"9130":3,"9131":4,"9132":3,"9133":1,"9134":3,"9135":3,"9136":2,"9137":5,"9138":4,"9139":2,"9140":3,"9141":1,"9142":3,"9143":3,"9144":4,"9145":1,"9146":2,"9147":2,"9148":4,"9149":2,"9150":5,"9151":2,"9152":3,"9153":2,"9154":1,"9155":4,"9156":1,"9157":4,"9158":1,"9159":3,"9160":4,"9161":3,"9162":4,"9163":3,"9164":2,"9165":1,"9166":1,"9167":2,"9168":2,"9169":4,"9170":2,"9171":4,"9172":3,"9173":1,"9174":2,"9175":3,"9176":3,"9177":1,"9178":2,"9179":5,"9180":4,"9181":5,"9182":2,"9183":3,"9184":1,"9185":4,"9186":2,"9187":3,"9188":4,"9189":3,"9190":3,"9191":3,"9192":3,"9193":3,"9194":4,"9195":4,"9196":1,"9197":3,"9198":1,"9199":4,"9200":3,"9201":3,"9202":4,"9203":2,"9204":3,"9205":4,"9206":1,"9207":3,"9208":4,"9209":1,"9210":3,"9211":4,"9212":1,"9213":3,"9214":3,"9215":5,"9216":3,"9217":4,"9218":5,"9219":3,"9220":4,"9221":2,"9222":2,"9223":4,"9224":4,"9225":2,"9226":3,"9227":3,"9228":4,"9229":3,"9230":3,"9231":4,"9232":1,"9233":4,"9234":5,"9235":3,"9236":3,"9237":3,"9238":3,"9239":2,"9240":2,"9241":2,"9242":3,"9243":5,"9244":4,"9245":1,"9246":3,"9247":3,"9248":2,"9249":3,"9250":3,"9251":2,"9252":3,"9253":4,"9254":2,"9255":4,"9256":4,"9257":4,"9258":1,"9259":4,"9260":3,"9261":3,"9262":1,"9263":3,"9264":2,"9265":4,"9266":1,"9267":5,"9268":2,"9269":3,"9270":1,"9271":2,"9272":4,"9273":3,"9274":3,"9275":3,"9276":3,"9277":2,"9278":3,"9279":3,"9280":3,"9281":3,"9282":3,"9283":2,"9284":2,"9285":3,"9286":1,"9287":3,"9288":2,"9289":4,"9290":4,"9291":4,"9292":4,"9293":2,"9294":1,"9295":4,"9296":1,"9297":3,"9298":3,"9299":2,"9300":2,"9301":3,"9302":4,"9303":3,"9304":3,"9305":3,"9306":3,"9307":4,"9308":3,"9309":5,"9310":4,"9311":3,"9312":3,"9313":3,"9314":3,"9315":3,"9316":3,"9317":2,"9318":2,"9319":3,"9320":3,"9321":4,"9322":1,"9323":2,"9324":3,"9325":3,"9326":2,"9327":3,"9328":4,"9329":3,"9330":5,"9331":2,"9332":2,"9333":4,"9334":3,"9335":2,"9336":3,"9337":2,"9338":4,"9339":4,"9340":1,"9341":4,"9342":4,"9343":3,"9344":4,"9345":5,"9346":3,"9347":3,"9348":3,"9349":3,"9350":3,"9351":4,"9352":4,"9353":4,"9354":3,"9355":3,"9356":4,"9357":4,"9358":3,"9359":3,"9360":3,"9361":3,"9362":5,"9363":4,"9364":1,"9365":3,"9366":1,"9367":3,"9368":2,"9369":3,"9370":5,"9371":5,"9372":4,"9373":4,"9374":3,"9375":3,"9376":2,"9377":3,"9378":3,"9379":3,"9380":4,"9381":1,"9382":4,"9383":2,"9384":3,"9385":2,"9386":4,"9387":4,"9388":1,"9389":1,"9390":3,"9391":2,"9392":3,"9393":5,"9394":5,"9395":1,"9396":3,"9397":3,"9398":4,"9399":3,"9400":3,"9401":2,"9402":2,"9403":1,"9404":3,"9405":1,"9406":3,"9407":4,"9408":2,"9409":1,"9410":3,"9411":3,"9412":2,"9413":3,"9414":3,"9415":2,"9416":1,"9417":2,"9418":1,"9419":3,"9420":3,"9421":1,"9422":3,"9423":3,"9424":3,"9425":2,"9426":3,"9427":4,"9428":3,"9429":5,"9430":3,"9431":1,"9432":4,"9433":3,"9434":3,"9435":4,"9436":1,"9437":2,"9438":3,"9439":2,"9440":3,"9441":2,"9442":3,"9443":4,"9444":3,"9445":4,"9446":1,"9447":5,"9448":3,"9449":2,"9450":3,"9451":2,"9452":2,"9453":4,"9454":4,"9455":4,"9456":4,"9457":4,"9458":5,"9459":3,"9460":4,"9461":4,"9462":2,"9463":5,"9464":4,"9465":4,"9466":2,"9467":3,"9468":3,"9469":4,"9470":3,"9471":4,"9472":4,"9473":5,"9474":3,"9475":1,"9476":4,"9477":5,"9478":3,"9479":1,"9480":1,"9481":2,"9482":2,"9483":3,"9484":3,"9485":2,"9486":2,"9487":4,"9488":4,"9489":2,"9490":5,"9491":3,"9492":3,"9493":3,"9494":4,"9495":2,"9496":2,"9497":3,"9498":1,"9499":4,"9500":3,"9501":2,"9502":3,"9503":4,"9504":3,"9505":3,"9506":1,"9507":4,"9508":3,"9509":3,"9510":2,"9511":1,"9512":2,"9513":3,"9514":4,"9515":4,"9516":1,"9517":2,"9518":4,"9519":4,"9520":3,"9521":1,"9522":3,"9523":4,"9524":2,"9525":3,"9526":2,"9527":4,"9528":3,"9529":3,"9530":5,"9531":3,"9532":2,"9533":1,"9534":4,"9535":3,"9536":4,"9537":3,"9538":3,"9539":1,"9540":5,"9541":1,"9542":4,"9543":2,"9544":3,"9545":2,"9546":3,"9547":4,"9548":2,"9549":4,"9550":4,"9551":1,"9552":3,"9553":4,"9554":3,"9555":3,"9556":2,"9557":1,"9558":1,"9559":3,"9560":1,"9561":3,"9562":2,"9563":4,"9564":2,"9565":3,"9566":4,"9567":3,"9568":4,"9569":4,"9570":2,"9571":2,"9572":3,"9573":2,"9574":3,"9575":3,"9576":2,"9577":3,"9578":1,"9579":4,"9580":1,"9581":1,"9582":2,"9583":3,"9584":1,"9585":4,"9586":2,"9587":5,"9588":3,"9589":4,"9590":3,"9591":2,"9592":5,"9593":3,"9594":2,"9595":3,"9596":4,"9597":2,"9598":2,"9599":3,"9600":3,"9601":1,"9602":3,"9603":4,"9604":2,"9605":4,"9606":3,"9607":3,"9608":3,"9609":2,"9610":5,"9611":4,"9612":3,"9613":4,"9614":3,"9615":1,"9616":2,"9617":3,"9618":3,"9619":5,"9620":4,"9621":4,"9622":3,"9623":1,"9624":5,"9625":1,"9626":1,"9627":1,"9628":2,"9629":4,"9630":3,"9631":4,"9632":2,"9633":2,"9634":3,"9635":3,"9636":1,"9637":2,"9638":2,"9639":2,"9640":4,"9641":1,"9642":5,"9643":2,"9644":1,"9645":2,"9646":1,"9647":4,"9648":3,"9649":2,"9650":4,"9651":3,"9652":3,"9653":1,"9654":1,"9655":4,"9656":2,"9657":4,"9658":4,"9659":3,"9660":2,"9661":2,"9662":1,"9663":4,"9664":1,"9665":2,"9666":4,"9667":4,"9668":2,"9669":4,"9670":3,"9671":2,"9672":3,"9673":2,"9674":2,"9675":1,"9676":1,"9677":2,"9678":4,"9679":4,"9680":3,"9681":4,"9682":4,"9683":3,"9684":4,"9685":3,"9686":2,"9687":2,"9688":4,"9689":5,"9690":3,"9691":3,"9692":3,"9693":2,"9694":3,"9695":4,"9696":2,"9697":2,"9698":3,"9699":5,"9700":3,"9701":2,"9702":5,"9703":3,"9704":3,"9705":4,"9706":5,"9707":4,"9708":4,"9709":2,"9710":3,"9711":2,"9712":3,"9713":2,"9714":1,"9715":1,"9716":5,"9717":3,"9718":3,"9719":4,"9720":2,"9721":3,"9722":3,"9723":3,"9724":4,"9725":1,"9726":2,"9727":5,"9728":3,"9729":3,"9730":2,"9731":4,"9732":4,"9733":4,"9734":5,"9735":1,"9736":2,"9737":3,"9738":3,"9739":3,"9740":4,"9741":4,"9742":3,"9743":1,"9744":5,"9745":3,"9746":3,"9747":3,"9748":3,"9749":3,"9750":3,"9751":3,"9752":4,"9753":1,"9754":2,"9755":2,"9756":1,"9757":4,"9758":4,"9759":2,"9760":3,"9761":3,"9762":3,"9763":3,"9764":4,"9765":2,"9766":3,"9767":2,"9768":3,"9769":1,"9770":2,"9771":4,"9772":3,"9773":4,"9774":4,"9775":3,"9776":2,"9777":2,"9778":2,"9779":3,"9780":5,"9781":2,"9782":4,"9783":2,"9784":5,"9785":1,"9786":4,"9787":4,"9788":3,"9789":3,"9790":4,"9791":3,"9792":4,"9793":4,"9794":1,"9795":3,"9796":4,"9797":2,"9798":4,"9799":4,"9800":3,"9801":4,"9802":3,"9803":2,"9804":5,"9805":4,"9806":4,"9807":4,"9808":5,"9809":3,"9810":2,"9811":3,"9812":3,"9813":2,"9814":3,"9815":4,"9816":5,"9817":2,"9818":5,"9819":3,"9820":4,"9821":2,"9822":2,"9823":3,"9824":3,"9825":3,"9826":4,"9827":2,"9828":2,"9829":5,"9830":2,"9831":5,"9832":3,"9833":4,"9834":2,"9835":3,"9836":1,"9837":4,"9838":3,"9839":3,"9840":3,"9841":4,"9842":2,"9843":2,"9844":2,"9845":2,"9846":2,"9847":4,"9848":3,"9849":2,"9850":2,"9851":3,"9852":3,"9853":4,"9854":2,"9855":3,"9856":3,"9857":3,"9858":3,"9859":3,"9860":2,"9861":4,"9862":3,"9863":3,"9864":4,"9865":2,"9866":2,"9867":3,"9868":1,"9869":4,"9870":5,"9871":4,"9872":4,"9873":2,"9874":3,"9875":3,"9876":3,"9877":1,"9878":4,"9879":5,"9880":3,"9881":1,"9882":3,"9883":1,"9884":2,"9885":2,"9886":3,"9887":4,"9888":1,"9889":3,"9890":2,"9891":4,"9892":3,"9893":3,"9894":4,"9895":3,"9896":3,"9897":5,"9898":4,"9899":4,"9900":2,"9901":4,"9902":3,"9903":5,"9904":4,"9905":3,"9906":4,"9907":3,"9908":3,"9909":1,"9910":3,"9911":1,"9912":4,"9913":1,"9914":1,"9915":3,"9916":3,"9917":2,"9918":2,"9919":4,"9920":3,"9921":3,"9922":3,"9923":3,"9924":3,"9925":4,"9926":3,"9927":4,"9928":4,"9929":4,"9930":5,"9931":3,"9932":4,"9933":2,"9934":1,"9935":3,"9936":3,"9937":4,"9938":3,"9939":3,"9940":3,"9941":2,"9942":4,"9943":2,"9944":3,"9945":2,"9946":4,"9947":4,"9948":2,"9949":2,"9950":1,"9951":3,"9952":2,"9953":2,"9954":2,"9955":3,"9956":2,"9957":3,"9958":5,"9959":4,"9960":4,"9961":4,"9962":3,"9963":3,"9964":1,"9965":4,"9966":4,"9967":2,"9968":4,"9969":3,"9970":2,"9971":5,"9972":1,"9973":4,"9974":2,"9975":4,"9976":5,"9977":2,"9978":4,"9979":1,"9980":5,"9981":3,"9982":4,"9983":2,"9984":1,"9985":4,"9986":4,"9987":5,"9988":2,"9989":4,"9990":5,"9991":3,"9992":4,"9993":1,"9994":4,"9995":3,"9996":4,"9997":1,"9998":5,"9999":3,"10000":2,"10001":3,"10002":2,"10003":1,"10004":3,"10005":2,"10006":4,"10007":3,"10008":3,"10009":3,"10010":3,"10011":3,"10012":3,"10013":3,"10014":3,"10015":3,"10016":3,"10017":3,"10018":1,"10019":1,"10020":3,"10021":1,"10022":3,"10023":4,"10024":3,"10025":3,"10026":3,"10027":3,"10028":2,"10029":5,"10030":2,"10031":4,"10032":3,"10033":2,"10034":2,"10035":4,"10036":2,"10037":1,"10038":3,"10039":4,"10040":3,"10041":3,"10042":3,"10043":2,"10044":2,"10045":3,"10046":2,"10047":3,"10048":3,"10049":1,"10050":3,"10051":4,"10052":4,"10053":2,"10054":3,"10055":2,"10056":3,"10057":2,"10058":4,"10059":4,"10060":5,"10061":2,"10062":3,"10063":4,"10064":3,"10065":3,"10066":3,"10067":3,"10068":5,"10069":3,"10070":4,"10071":4,"10072":3,"10073":2,"10074":2,"10075":2,"10076":3,"10077":3,"10078":2,"10079":3,"10080":5,"10081":1,"10082":4,"10083":1,"10084":2,"10085":5,"10086":3,"10087":4,"10088":3,"10089":4,"10090":3,"10091":3,"10092":3,"10093":2,"10094":3,"10095":1,"10096":2,"10097":2,"10098":2,"10099":1,"10100":4,"10101":1,"10102":3,"10103":3,"10104":2,"10105":4,"10106":5,"10107":4,"10108":3,"10109":4,"10110":4,"10111":3,"10112":2,"10113":3,"10114":2,"10115":2,"10116":3,"10117":2,"10118":3,"10119":4,"10120":3,"10121":2,"10122":4,"10123":4,"10124":1,"10125":5,"10126":2,"10127":2,"10128":4,"10129":2,"10130":4,"10131":3,"10132":1,"10133":3,"10134":2,"10135":3,"10136":3,"10137":3,"10138":3,"10139":5,"10140":2,"10141":5,"10142":3,"10143":4,"10144":3,"10145":3,"10146":3,"10147":3,"10148":4,"10149":4,"10150":1,"10151":2,"10152":3,"10153":3,"10154":3,"10155":5,"10156":1,"10157":5,"10158":2,"10159":3,"10160":3,"10161":2,"10162":3,"10163":2,"10164":1,"10165":3,"10166":4,"10167":3,"10168":1,"10169":3,"10170":4,"10171":3,"10172":2,"10173":2,"10174":2,"10175":1,"10176":2,"10177":2,"10178":1,"10179":1,"10180":3,"10181":1,"10182":3,"10183":2,"10184":3,"10185":1,"10186":1,"10187":2,"10188":5,"10189":1,"10190":3,"10191":2,"10192":3,"10193":3,"10194":4,"10195":3,"10196":4,"10197":4,"10198":1,"10199":2,"10200":4,"10201":1,"10202":4,"10203":3,"10204":2,"10205":3,"10206":2,"10207":3,"10208":3,"10209":4,"10210":1,"10211":2,"10212":3,"10213":3,"10214":2,"10215":4,"10216":4,"10217":3,"10218":2,"10219":2,"10220":3,"10221":4,"10222":3,"10223":2,"10224":3,"10225":3,"10226":2,"10227":4,"10228":2,"10229":5,"10230":3,"10231":3,"10232":1,"10233":2,"10234":4,"10235":2,"10236":3,"10237":1,"10238":2,"10239":5,"10240":3,"10241":2,"10242":4,"10243":3,"10244":4,"10245":4,"10246":3,"10247":3,"10248":2,"10249":3,"10250":3,"10251":2,"10252":3,"10253":3,"10254":5,"10255":2,"10256":3,"10257":4,"10258":2,"10259":3,"10260":4,"10261":4,"10262":5,"10263":4,"10264":3,"10265":4,"10266":3,"10267":3,"10268":5,"10269":4,"10270":4,"10271":2,"10272":1,"10273":1,"10274":1,"10275":4,"10276":4,"10277":2,"10278":2,"10279":3,"10280":2,"10281":2,"10282":3,"10283":5,"10284":5,"10285":4,"10286":3,"10287":3,"10288":3,"10289":4,"10290":4,"10291":2,"10292":4,"10293":1,"10294":3,"10295":3,"10296":4,"10297":2,"10298":5,"10299":4,"10300":3,"10301":2,"10302":1,"10303":3,"10304":4,"10305":4,"10306":2,"10307":1,"10308":3,"10309":2,"10310":4,"10311":5,"10312":3,"10313":1,"10314":4,"10315":4,"10316":2,"10317":4,"10318":4,"10319":3,"10320":2,"10321":5,"10322":5,"10323":4,"10324":5,"10325":3,"10326":3,"10327":1,"10328":5,"10329":4,"10330":4,"10331":3,"10332":2,"10333":2,"10334":5,"10335":2,"10336":1,"10337":3,"10338":3,"10339":2,"10340":4,"10341":1,"10342":4,"10343":1,"10344":2,"10345":1,"10346":3,"10347":1,"10348":3,"10349":2,"10350":3,"10351":3,"10352":4,"10353":1,"10354":3,"10355":4,"10356":2,"10357":1,"10358":2,"10359":4,"10360":3,"10361":4,"10362":3,"10363":4,"10364":4,"10365":4,"10366":2,"10367":3,"10368":3,"10369":2,"10370":3,"10371":2,"10372":3,"10373":3,"10374":4,"10375":4,"10376":2,"10377":4,"10378":2,"10379":2,"10380":3,"10381":4,"10382":3,"10383":1,"10384":5,"10385":4,"10386":4,"10387":3,"10388":3,"10389":2,"10390":2,"10391":1,"10392":2,"10393":2,"10394":1,"10395":3,"10396":3,"10397":3,"10398":4,"10399":2,"10400":2,"10401":4,"10402":2,"10403":2,"10404":3,"10405":1,"10406":4,"10407":3,"10408":3,"10409":1,"10410":3,"10411":2,"10412":2,"10413":4,"10414":4,"10415":2,"10416":3,"10417":3,"10418":3,"10419":3,"10420":5,"10421":3,"10422":2,"10423":2,"10424":3,"10425":2,"10426":1,"10427":4,"10428":4,"10429":5,"10430":3,"10431":2,"10432":4,"10433":4,"10434":2,"10435":1,"10436":2,"10437":1,"10438":4,"10439":4,"10440":2,"10441":3,"10442":3,"10443":3,"10444":2,"10445":3,"10446":3,"10447":3,"10448":2,"10449":5,"10450":2,"10451":2,"10452":2,"10453":4,"10454":5,"10455":2,"10456":4,"10457":2,"10458":3,"10459":4,"10460":4,"10461":4,"10462":2,"10463":1,"10464":2,"10465":1,"10466":3,"10467":2,"10468":4,"10469":5,"10470":3,"10471":4,"10472":2,"10473":4,"10474":2,"10475":3,"10476":4,"10477":4,"10478":5,"10479":5,"10480":4,"10481":1,"10482":4,"10483":4,"10484":4,"10485":4,"10486":3,"10487":4,"10488":2,"10489":1,"10490":4,"10491":2,"10492":4,"10493":3,"10494":3,"10495":3,"10496":2,"10497":2,"10498":3,"10499":3,"10500":2,"10501":3,"10502":2,"10503":2,"10504":5,"10505":5,"10506":4,"10507":2,"10508":3,"10509":1,"10510":4,"10511":3,"10512":3,"10513":5,"10514":3,"10515":3,"10516":4,"10517":3,"10518":3,"10519":2,"10520":3,"10521":2,"10522":4,"10523":3,"10524":4,"10525":4,"10526":5,"10527":4,"10528":3,"10529":2,"10530":3,"10531":3,"10532":3,"10533":2,"10534":3,"10535":4,"10536":3,"10537":1,"10538":4,"10539":4,"10540":2,"10541":1,"10542":4,"10543":3,"10544":3,"10545":3,"10546":2,"10547":3,"10548":3,"10549":1,"10550":4,"10551":5,"10552":3,"10553":3,"10554":1,"10555":4,"10556":5,"10557":2,"10558":4,"10559":2,"10560":3,"10561":5,"10562":4,"10563":3,"10564":1,"10565":3,"10566":3,"10567":4,"10568":1,"10569":4,"10570":3,"10571":4,"10572":4,"10573":1,"10574":3,"10575":5,"10576":4,"10577":3,"10578":1,"10579":2,"10580":3,"10581":4,"10582":1,"10583":4,"10584":3,"10585":3,"10586":3,"10587":3,"10588":4,"10589":4,"10590":1,"10591":3,"10592":3,"10593":3,"10594":3,"10595":5,"10596":4,"10597":5,"10598":4,"10599":3,"10600":4,"10601":5,"10602":3,"10603":4,"10604":3,"10605":2,"10606":4,"10607":5,"10608":3,"10609":4,"10610":1,"10611":1,"10612":3,"10613":1,"10614":4,"10615":1,"10616":4,"10617":1,"10618":4,"10619":3,"10620":3,"10621":3,"10622":3,"10623":2,"10624":5,"10625":3,"10626":2,"10627":4,"10628":4,"10629":3,"10630":3,"10631":2,"10632":4,"10633":2,"10634":2,"10635":3,"10636":2,"10637":2,"10638":2,"10639":3,"10640":1,"10641":4,"10642":5,"10643":4,"10644":1,"10645":4,"10646":2,"10647":2,"10648":2,"10649":2,"10650":4,"10651":3,"10652":5,"10653":2,"10654":2,"10655":4,"10656":2,"10657":1,"10658":3,"10659":4,"10660":3,"10661":4,"10662":3,"10663":4,"10664":2,"10665":5,"10666":3,"10667":2,"10668":1,"10669":3,"10670":4,"10671":3,"10672":5,"10673":3,"10674":4,"10675":3,"10676":3,"10677":3,"10678":3,"10679":1,"10680":4,"10681":3,"10682":4,"10683":2,"10684":5,"10685":3,"10686":5,"10687":3,"10688":5,"10689":2,"10690":4,"10691":1,"10692":4,"10693":3,"10694":3,"10695":3,"10696":4,"10697":3,"10698":3,"10699":3,"10700":2,"10701":3,"10702":2,"10703":4,"10704":3,"10705":3,"10706":3,"10707":3,"10708":2,"10709":4,"10710":1,"10711":3,"10712":2,"10713":3,"10714":4,"10715":2,"10716":2,"10717":4,"10718":3,"10719":1,"10720":4,"10721":2,"10722":2,"10723":3,"10724":4,"10725":2,"10726":3,"10727":3,"10728":2,"10729":1,"10730":3,"10731":3,"10732":1,"10733":3,"10734":5,"10735":4,"10736":3,"10737":3,"10738":3,"10739":3,"10740":2,"10741":5,"10742":3,"10743":2,"10744":3,"10745":2,"10746":2,"10747":4,"10748":3,"10749":3,"10750":4,"10751":3,"10752":5,"10753":3,"10754":3,"10755":3,"10756":3,"10757":1,"10758":4,"10759":2,"10760":5,"10761":3,"10762":5,"10763":3,"10764":2,"10765":3,"10766":5,"10767":4,"10768":2,"10769":2,"10770":4,"10771":4,"10772":4,"10773":1,"10774":3,"10775":1,"10776":3,"10777":5,"10778":4,"10779":3,"10780":4,"10781":2,"10782":2,"10783":1,"10784":4,"10785":2,"10786":4,"10787":4,"10788":3,"10789":1,"10790":2,"10791":3,"10792":5,"10793":2,"10794":4,"10795":3,"10796":4,"10797":4,"10798":4,"10799":1,"10800":5,"10801":3,"10802":1,"10803":4,"10804":3,"10805":3,"10806":4,"10807":2,"10808":4,"10809":1,"10810":3,"10811":3,"10812":3,"10813":5,"10814":4,"10815":3,"10816":3,"10817":3,"10818":2,"10819":3,"10820":5,"10821":4,"10822":2,"10823":4,"10824":1,"10825":3,"10826":4,"10827":3,"10828":5,"10829":3,"10830":4,"10831":3,"10832":3,"10833":3,"10834":4,"10835":3,"10836":4,"10837":3,"10838":3,"10839":4,"10840":3,"10841":4,"10842":4,"10843":3,"10844":5,"10845":3,"10846":4,"10847":3,"10848":4,"10849":1,"10850":3,"10851":5,"10852":4,"10853":4,"10854":3,"10855":4,"10856":3,"10857":5,"10858":2,"10859":3,"10860":4,"10861":3,"10862":3,"10863":3,"10864":1,"10865":4,"10866":1,"10867":2,"10868":3,"10869":3,"10870":3,"10871":4,"10872":5,"10873":2,"10874":3,"10875":3,"10876":2,"10877":5,"10878":3,"10879":3,"10880":5,"10881":4,"10882":3,"10883":4,"10884":5,"10885":3,"10886":2,"10887":2,"10888":1,"10889":3,"10890":3,"10891":4,"10892":1,"10893":4,"10894":1,"10895":2,"10896":3,"10897":2,"10898":3,"10899":5,"10900":4,"10901":3,"10902":2,"10903":3,"10904":5,"10905":3,"10906":3,"10907":1,"10908":5,"10909":5,"10910":4,"10911":4,"10912":3,"10913":2,"10914":4,"10915":3,"10916":3,"10917":2,"10918":3,"10919":2,"10920":3,"10921":3,"10922":5,"10923":2,"10924":2,"10925":2,"10926":4,"10927":5,"10928":3,"10929":3,"10930":4,"10931":3,"10932":4,"10933":2,"10934":1,"10935":3,"10936":1,"10937":5,"10938":1,"10939":3,"10940":4,"10941":3,"10942":2,"10943":4,"10944":3,"10945":2,"10946":3,"10947":3,"10948":3,"10949":3,"10950":4,"10951":3,"10952":2,"10953":4,"10954":4,"10955":3,"10956":3,"10957":5,"10958":4,"10959":3,"10960":2,"10961":2,"10962":4,"10963":1,"10964":3,"10965":5,"10966":2,"10967":4,"10968":3,"10969":3,"10970":2,"10971":2,"10972":3,"10973":4,"10974":3,"10975":4,"10976":2,"10977":3,"10978":3,"10979":1,"10980":4,"10981":5,"10982":3,"10983":3,"10984":4,"10985":3,"10986":2,"10987":3,"10988":2,"10989":3,"10990":5,"10991":3,"10992":4,"10993":4,"10994":2,"10995":3,"10996":3,"10997":4,"10998":4,"10999":2,"11000":3,"11001":3,"11002":4,"11003":4,"11004":3,"11005":2,"11006":2,"11007":2,"11008":5,"11009":4,"11010":2,"11011":2,"11012":3,"11013":1,"11014":2,"11015":2,"11016":5,"11017":4,"11018":3,"11019":1,"11020":2,"11021":3,"11022":3,"11023":5,"11024":4,"11025":5,"11026":2,"11027":2,"11028":4,"11029":4,"11030":2,"11031":2,"11032":3,"11033":2,"11034":3,"11035":3,"11036":3,"11037":3,"11038":3,"11039":4,"11040":4,"11041":2,"11042":1,"11043":3,"11044":2,"11045":4,"11046":1,"11047":2,"11048":4,"11049":4,"11050":2,"11051":4,"11052":4,"11053":2,"11054":3,"11055":2,"11056":2,"11057":3,"11058":2,"11059":4,"11060":1,"11061":4,"11062":4,"11063":3,"11064":3,"11065":3,"11066":3,"11067":3,"11068":3,"11069":3,"11070":4,"11071":3,"11072":3,"11073":1,"11074":1,"11075":4,"11076":1,"11077":3,"11078":5,"11079":3,"11080":1,"11081":3,"11082":3,"11083":3,"11084":3,"11085":4,"11086":2,"11087":3,"11088":1,"11089":4,"11090":2,"11091":3,"11092":3,"11093":4,"11094":5,"11095":2,"11096":4,"11097":2,"11098":4,"11099":2,"11100":4,"11101":3,"11102":4,"11103":2,"11104":1,"11105":1,"11106":5,"11107":3,"11108":5,"11109":4,"11110":1,"11111":4,"11112":4,"11113":2,"11114":4,"11115":5,"11116":3,"11117":4,"11118":1,"11119":3,"11120":4,"11121":2,"11122":5,"11123":3,"11124":4,"11125":4,"11126":4,"11127":5,"11128":2,"11129":3,"11130":3,"11131":3,"11132":3,"11133":2,"11134":3,"11135":3,"11136":4,"11137":4,"11138":1,"11139":3,"11140":2,"11141":3,"11142":3,"11143":3,"11144":3,"11145":3,"11146":3,"11147":3,"11148":1,"11149":2,"11150":3,"11151":5,"11152":2,"11153":2,"11154":4,"11155":1,"11156":3,"11157":3,"11158":3,"11159":2,"11160":2,"11161":3,"11162":1,"11163":4,"11164":1,"11165":3,"11166":3,"11167":4,"11168":4,"11169":2,"11170":4,"11171":3,"11172":3,"11173":2,"11174":4,"11175":5,"11176":3,"11177":4,"11178":4,"11179":2,"11180":2,"11181":2,"11182":1,"11183":4,"11184":2,"11185":4,"11186":3,"11187":3,"11188":3,"11189":3,"11190":3,"11191":2,"11192":5,"11193":1,"11194":3,"11195":1,"11196":3,"11197":2,"11198":5,"11199":1,"11200":2,"11201":4,"11202":4,"11203":3,"11204":2,"11205":3,"11206":5,"11207":1,"11208":3,"11209":3,"11210":3,"11211":3,"11212":3,"11213":3,"11214":2,"11215":3,"11216":2,"11217":3,"11218":3,"11219":2,"11220":3,"11221":4,"11222":2,"11223":2,"11224":3,"11225":4,"11226":3,"11227":3,"11228":3,"11229":4,"11230":5,"11231":2,"11232":4,"11233":2,"11234":2,"11235":4,"11236":2,"11237":3,"11238":3,"11239":4,"11240":3,"11241":4,"11242":4,"11243":4,"11244":2,"11245":1,"11246":4,"11247":2,"11248":2,"11249":3,"11250":1,"11251":3,"11252":4,"11253":3,"11254":2,"11255":4,"11256":3,"11257":3,"11258":1,"11259":2,"11260":2,"11261":3,"11262":3,"11263":2,"11264":3,"11265":4,"11266":2,"11267":1,"11268":3,"11269":1,"11270":5,"11271":2,"11272":5,"11273":1,"11274":2,"11275":4,"11276":2,"11277":3,"11278":5,"11279":5,"11280":3,"11281":4,"11282":3,"11283":4,"11284":2,"11285":4,"11286":3,"11287":2,"11288":3,"11289":1,"11290":2,"11291":2,"11292":1,"11293":4,"11294":2,"11295":4,"11296":4,"11297":3,"11298":2,"11299":2,"11300":3,"11301":4,"11302":3,"11303":3,"11304":3,"11305":4,"11306":3,"11307":3,"11308":1,"11309":3,"11310":1,"11311":3,"11312":3,"11313":3,"11314":3,"11315":3,"11316":3,"11317":3,"11318":4,"11319":3,"11320":3,"11321":3,"11322":3,"11323":5,"11324":2,"11325":4,"11326":3,"11327":2,"11328":4,"11329":4,"11330":3,"11331":4,"11332":2,"11333":4,"11334":3,"11335":3,"11336":4,"11337":3,"11338":5,"11339":2,"11340":2,"11341":3,"11342":4,"11343":5,"11344":3,"11345":3,"11346":1,"11347":2,"11348":4,"11349":5,"11350":2,"11351":3,"11352":3,"11353":1,"11354":4,"11355":1,"11356":2,"11357":5,"11358":2,"11359":2,"11360":2,"11361":4,"11362":3,"11363":3,"11364":3,"11365":2,"11366":4,"11367":1,"11368":2,"11369":4,"11370":3,"11371":3,"11372":3,"11373":3,"11374":1,"11375":4,"11376":2,"11377":2,"11378":4,"11379":2,"11380":4,"11381":3,"11382":1,"11383":3,"11384":3,"11385":1,"11386":4,"11387":4,"11388":1,"11389":3,"11390":3,"11391":5,"11392":2,"11393":3,"11394":3,"11395":3,"11396":1,"11397":1,"11398":1,"11399":4,"11400":3,"11401":2,"11402":3,"11403":5,"11404":3,"11405":1,"11406":4,"11407":3,"11408":3,"11409":3,"11410":4,"11411":2,"11412":3,"11413":3,"11414":3,"11415":3,"11416":1,"11417":3,"11418":3,"11419":3,"11420":4,"11421":4,"11422":3,"11423":4,"11424":5,"11425":2,"11426":3,"11427":4,"11428":4,"11429":3,"11430":3,"11431":3,"11432":1,"11433":3,"11434":2,"11435":3,"11436":2,"11437":4,"11438":3,"11439":1,"11440":1,"11441":3,"11442":4,"11443":4,"11444":4,"11445":3,"11446":4,"11447":1,"11448":3,"11449":5,"11450":4,"11451":5,"11452":1,"11453":3,"11454":3,"11455":4,"11456":3,"11457":4,"11458":3,"11459":3,"11460":2,"11461":4,"11462":4,"11463":1,"11464":3,"11465":3,"11466":4,"11467":4,"11468":4,"11469":3,"11470":3,"11471":4,"11472":4,"11473":4,"11474":4,"11475":3,"11476":3,"11477":4,"11478":1,"11479":3,"11480":4,"11481":2,"11482":1,"11483":3,"11484":3,"11485":1,"11486":2,"11487":3,"11488":5,"11489":3,"11490":4,"11491":2,"11492":2,"11493":3,"11494":2,"11495":4,"11496":2,"11497":3,"11498":5,"11499":2,"11500":3,"11501":2,"11502":2,"11503":4,"11504":4,"11505":4,"11506":3,"11507":4,"11508":1,"11509":4,"11510":2,"11511":3,"11512":1,"11513":3,"11514":3,"11515":4,"11516":3,"11517":3,"11518":3,"11519":2,"11520":3,"11521":2,"11522":3,"11523":2,"11524":3,"11525":2,"11526":3,"11527":4,"11528":3,"11529":5,"11530":1,"11531":2,"11532":2,"11533":1,"11534":2,"11535":4,"11536":3,"11537":3,"11538":3,"11539":4,"11540":4,"11541":2,"11542":3,"11543":2,"11544":3,"11545":5,"11546":3,"11547":3,"11548":3,"11549":2,"11550":2,"11551":4,"11552":3,"11553":2,"11554":4,"11555":2,"11556":2,"11557":4,"11558":5,"11559":2,"11560":2,"11561":2,"11562":1,"11563":1,"11564":3,"11565":2,"11566":4,"11567":3,"11568":1,"11569":3,"11570":3,"11571":3,"11572":2,"11573":5,"11574":2,"11575":3,"11576":2,"11577":1,"11578":4,"11579":4,"11580":3,"11581":1,"11582":3,"11583":3,"11584":4,"11585":2,"11586":3,"11587":2,"11588":3,"11589":2,"11590":1,"11591":2,"11592":4,"11593":2,"11594":3,"11595":4,"11596":2,"11597":2,"11598":2,"11599":3,"11600":2,"11601":2,"11602":4,"11603":5,"11604":3,"11605":3,"11606":2,"11607":3,"11608":1,"11609":4,"11610":3,"11611":1,"11612":3,"11613":1,"11614":3,"11615":4,"11616":3,"11617":4,"11618":3,"11619":4,"11620":5,"11621":3,"11622":2,"11623":4,"11624":4,"11625":2,"11626":5,"11627":3,"11628":3,"11629":2,"11630":3,"11631":3,"11632":3,"11633":1,"11634":4,"11635":2,"11636":3,"11637":3,"11638":5,"11639":4,"11640":4,"11641":3,"11642":4,"11643":2,"11644":2,"11645":2,"11646":3,"11647":1,"11648":3,"11649":2,"11650":2,"11651":4,"11652":2,"11653":2,"11654":3,"11655":4,"11656":3,"11657":3,"11658":5,"11659":3,"11660":4,"11661":4,"11662":1,"11663":2,"11664":4,"11665":4,"11666":4,"11667":1,"11668":5,"11669":4,"11670":3,"11671":5,"11672":5,"11673":3,"11674":1,"11675":3,"11676":2,"11677":1,"11678":2,"11679":3,"11680":1,"11681":2,"11682":4,"11683":4,"11684":3,"11685":3,"11686":4,"11687":3,"11688":1,"11689":4,"11690":2,"11691":4,"11692":4,"11693":2,"11694":4,"11695":3,"11696":4,"11697":5,"11698":2,"11699":2,"11700":4,"11701":4,"11702":3,"11703":3,"11704":3,"11705":4,"11706":1,"11707":4,"11708":4,"11709":2,"11710":4,"11711":2,"11712":2,"11713":3,"11714":5,"11715":1,"11716":2,"11717":1,"11718":4,"11719":2,"11720":3,"11721":2,"11722":4,"11723":4,"11724":2,"11725":4,"11726":1,"11727":4,"11728":1,"11729":4,"11730":3,"11731":3,"11732":3,"11733":3,"11734":4,"11735":4,"11736":3,"11737":4,"11738":3,"11739":2,"11740":5,"11741":3,"11742":2,"11743":5,"11744":3,"11745":5,"11746":3,"11747":4,"11748":4,"11749":4,"11750":2,"11751":4,"11752":2,"11753":5,"11754":3,"11755":1,"11756":2,"11757":4,"11758":2,"11759":3,"11760":4,"11761":2,"11762":2,"11763":2,"11764":1,"11765":2,"11766":3,"11767":3,"11768":3,"11769":1,"11770":3,"11771":2,"11772":4,"11773":4,"11774":5,"11775":2,"11776":3,"11777":3,"11778":4,"11779":5,"11780":1,"11781":4,"11782":3,"11783":4,"11784":3,"11785":1,"11786":4,"11787":4,"11788":3,"11789":2,"11790":4,"11791":1,"11792":1,"11793":5,"11794":3,"11795":3,"11796":4,"11797":3,"11798":3,"11799":3,"11800":3,"11801":4,"11802":2,"11803":3,"11804":2,"11805":3,"11806":1,"11807":3,"11808":4,"11809":5,"11810":3,"11811":4,"11812":3,"11813":3,"11814":1,"11815":3,"11816":2,"11817":4,"11818":3,"11819":5,"11820":4,"11821":4,"11822":1,"11823":1,"11824":3,"11825":1,"11826":3,"11827":3,"11828":4,"11829":3,"11830":3,"11831":2,"11832":3,"11833":3,"11834":4,"11835":1,"11836":2,"11837":3,"11838":4,"11839":3,"11840":1,"11841":3,"11842":3,"11843":4,"11844":2,"11845":2,"11846":4,"11847":2,"11848":5,"11849":3,"11850":2,"11851":2,"11852":2,"11853":4,"11854":4,"11855":4,"11856":4,"11857":3,"11858":2,"11859":2,"11860":3,"11861":2,"11862":2,"11863":4,"11864":4,"11865":2,"11866":3,"11867":2,"11868":5,"11869":3,"11870":3,"11871":3,"11872":2,"11873":3,"11874":3,"11875":3,"11876":5,"11877":3,"11878":4,"11879":3,"11880":4,"11881":3,"11882":3,"11883":3,"11884":2,"11885":4,"11886":3,"11887":5,"11888":2,"11889":4,"11890":4,"11891":3,"11892":3,"11893":2,"11894":5,"11895":2,"11896":5,"11897":1,"11898":3,"11899":1,"11900":2,"11901":4,"11902":3,"11903":1,"11904":4,"11905":1,"11906":3,"11907":2,"11908":2,"11909":2,"11910":2,"11911":3,"11912":2,"11913":2,"11914":3,"11915":3,"11916":3,"11917":1,"11918":2,"11919":4,"11920":1,"11921":3,"11922":2,"11923":3,"11924":4,"11925":3,"11926":3,"11927":4,"11928":2,"11929":4,"11930":4,"11931":5,"11932":2,"11933":4,"11934":3,"11935":3,"11936":3,"11937":2,"11938":2,"11939":4,"11940":3,"11941":1,"11942":2,"11943":1,"11944":2,"11945":1,"11946":3,"11947":3,"11948":3,"11949":4,"11950":2,"11951":2,"11952":5,"11953":3,"11954":4,"11955":1,"11956":2,"11957":5,"11958":2,"11959":3,"11960":3,"11961":4,"11962":4,"11963":3,"11964":2,"11965":3,"11966":5,"11967":1,"11968":2,"11969":4,"11970":2,"11971":3,"11972":2,"11973":4,"11974":3,"11975":3,"11976":1,"11977":3,"11978":3,"11979":5,"11980":4,"11981":3,"11982":4,"11983":4,"11984":2,"11985":3,"11986":4,"11987":4,"11988":4,"11989":3,"11990":2,"11991":4,"11992":3,"11993":4,"11994":2,"11995":4,"11996":4,"11997":3,"11998":4,"11999":4,"12000":1,"12001":4,"12002":3,"12003":1,"12004":3,"12005":3,"12006":3,"12007":4,"12008":2,"12009":1,"12010":3,"12011":4,"12012":4,"12013":3,"12014":4,"12015":1,"12016":2,"12017":3,"12018":4,"12019":4,"12020":3,"12021":3,"12022":2,"12023":2,"12024":4,"12025":1,"12026":3,"12027":4,"12028":1,"12029":4,"12030":2,"12031":2,"12032":3,"12033":2,"12034":4,"12035":3,"12036":2,"12037":1,"12038":3,"12039":2,"12040":3,"12041":2,"12042":2,"12043":2,"12044":2,"12045":2,"12046":1,"12047":3,"12048":3,"12049":3,"12050":2,"12051":1,"12052":4,"12053":2,"12054":4,"12055":4,"12056":3,"12057":3,"12058":3,"12059":5,"12060":1,"12061":2,"12062":4,"12063":2,"12064":4,"12065":5,"12066":4,"12067":3,"12068":5,"12069":1,"12070":1,"12071":4,"12072":4,"12073":3,"12074":2,"12075":2,"12076":4,"12077":1,"12078":3,"12079":2,"12080":4,"12081":2,"12082":2,"12083":4,"12084":3,"12085":3,"12086":3,"12087":2,"12088":3,"12089":3,"12090":3,"12091":3,"12092":2,"12093":1,"12094":3,"12095":2,"12096":4,"12097":3,"12098":4,"12099":3,"12100":2,"12101":3,"12102":2,"12103":4,"12104":2,"12105":1,"12106":1,"12107":2,"12108":3,"12109":3,"12110":3,"12111":5,"12112":2,"12113":4,"12114":4,"12115":1,"12116":3,"12117":4,"12118":4,"12119":3,"12120":2,"12121":2,"12122":1,"12123":3,"12124":2,"12125":5,"12126":3,"12127":2,"12128":3,"12129":3,"12130":2,"12131":2,"12132":3,"12133":5,"12134":3,"12135":4,"12136":4,"12137":2,"12138":3,"12139":3,"12140":2,"12141":2,"12142":1,"12143":4,"12144":3,"12145":2,"12146":2,"12147":5,"12148":3,"12149":3,"12150":3,"12151":3,"12152":3,"12153":5,"12154":4,"12155":3,"12156":4,"12157":2,"12158":3,"12159":5,"12160":2,"12161":1,"12162":2,"12163":4,"12164":3,"12165":5,"12166":2,"12167":2,"12168":2,"12169":3,"12170":1,"12171":4,"12172":4,"12173":3,"12174":4,"12175":4,"12176":3,"12177":3,"12178":1,"12179":3,"12180":5,"12181":5,"12182":2,"12183":3,"12184":3,"12185":3,"12186":4,"12187":4,"12188":5,"12189":3,"12190":1,"12191":2,"12192":5,"12193":4,"12194":5,"12195":3,"12196":2,"12197":3,"12198":3,"12199":3,"12200":3,"12201":3,"12202":3,"12203":5,"12204":4,"12205":4,"12206":4,"12207":4,"12208":3,"12209":2,"12210":1,"12211":5,"12212":2,"12213":3,"12214":2,"12215":4,"12216":3,"12217":1,"12218":1,"12219":5,"12220":3,"12221":1,"12222":4,"12223":1,"12224":2,"12225":3,"12226":3,"12227":3,"12228":2,"12229":2,"12230":4,"12231":4,"12232":4,"12233":3,"12234":2,"12235":4,"12236":3,"12237":4,"12238":2,"12239":3,"12240":3,"12241":1,"12242":3,"12243":5,"12244":5,"12245":3,"12246":2,"12247":2,"12248":4,"12249":2,"12250":5,"12251":3,"12252":4,"12253":5,"12254":4,"12255":3,"12256":3,"12257":5,"12258":4,"12259":3,"12260":3,"12261":1,"12262":2,"12263":3,"12264":2,"12265":2,"12266":2,"12267":3,"12268":3,"12269":2,"12270":1,"12271":3,"12272":5,"12273":2,"12274":2,"12275":1,"12276":3,"12277":3,"12278":4,"12279":4,"12280":4,"12281":3,"12282":2,"12283":3,"12284":4,"12285":3,"12286":4,"12287":4,"12288":2,"12289":3,"12290":2,"12291":3,"12292":3,"12293":3,"12294":2,"12295":2,"12296":2,"12297":3,"12298":3,"12299":3,"12300":3,"12301":3,"12302":2,"12303":3,"12304":2,"12305":3,"12306":1,"12307":4,"12308":4,"12309":4,"12310":4,"12311":3,"12312":4,"12313":1,"12314":3,"12315":4,"12316":5,"12317":2,"12318":3,"12319":2,"12320":3,"12321":3,"12322":5,"12323":5,"12324":3,"12325":4,"12326":1,"12327":5,"12328":4,"12329":4,"12330":3,"12331":4,"12332":3,"12333":2,"12334":3,"12335":3,"12336":1,"12337":2,"12338":2,"12339":4,"12340":3,"12341":3,"12342":3,"12343":3,"12344":4,"12345":3,"12346":5,"12347":1,"12348":4,"12349":4,"12350":2,"12351":3,"12352":2,"12353":5,"12354":2,"12355":3,"12356":2,"12357":4,"12358":3,"12359":3,"12360":2,"12361":2,"12362":3,"12363":2,"12364":3,"12365":3,"12366":3,"12367":5,"12368":3,"12369":2,"12370":3,"12371":4,"12372":3,"12373":3,"12374":1,"12375":3,"12376":4,"12377":4,"12378":5,"12379":3,"12380":3,"12381":1,"12382":2,"12383":2,"12384":3,"12385":2,"12386":3,"12387":2,"12388":5,"12389":5,"12390":4,"12391":4,"12392":1,"12393":4,"12394":1,"12395":3,"12396":3,"12397":3,"12398":1,"12399":2,"12400":3,"12401":2,"12402":5,"12403":3,"12404":2,"12405":3,"12406":3,"12407":4,"12408":5,"12409":1,"12410":3,"12411":2,"12412":3,"12413":2,"12414":3,"12415":1,"12416":3,"12417":5,"12418":1,"12419":3,"12420":4,"12421":2,"12422":1,"12423":3,"12424":4,"12425":4,"12426":4,"12427":3,"12428":5,"12429":2,"12430":4,"12431":2,"12432":5,"12433":3,"12434":3,"12435":4,"12436":4,"12437":3,"12438":3,"12439":5,"12440":4,"12441":5,"12442":5,"12443":3,"12444":1,"12445":3,"12446":2,"12447":2,"12448":4,"12449":4,"12450":4,"12451":1,"12452":4,"12453":3,"12454":4,"12455":4,"12456":3,"12457":5,"12458":4,"12459":3,"12460":4,"12461":2,"12462":4,"12463":5,"12464":4,"12465":4,"12466":4,"12467":2,"12468":3,"12469":4,"12470":3,"12471":2,"12472":3,"12473":1,"12474":3,"12475":2,"12476":2,"12477":5,"12478":2,"12479":3,"12480":3,"12481":3,"12482":2,"12483":4,"12484":2,"12485":3,"12486":4,"12487":3,"12488":1,"12489":2,"12490":3,"12491":3,"12492":2,"12493":3,"12494":3,"12495":4,"12496":1,"12497":3,"12498":3,"12499":3,"12500":3,"12501":3,"12502":2,"12503":1,"12504":3,"12505":3,"12506":4,"12507":3,"12508":2,"12509":3,"12510":4,"12511":4,"12512":1,"12513":5,"12514":4,"12515":2,"12516":4,"12517":3,"12518":4,"12519":2,"12520":4,"12521":3,"12522":3,"12523":4,"12524":3,"12525":4,"12526":1,"12527":2,"12528":2,"12529":3,"12530":1,"12531":3,"12532":3,"12533":5,"12534":4,"12535":5,"12536":3,"12537":3,"12538":3,"12539":3,"12540":2,"12541":2,"12542":3,"12543":3,"12544":4,"12545":2,"12546":4,"12547":4,"12548":2,"12549":2,"12550":2,"12551":2,"12552":5,"12553":4,"12554":3,"12555":3,"12556":3,"12557":2,"12558":3,"12559":3,"12560":2,"12561":3,"12562":3,"12563":1,"12564":4,"12565":2,"12566":2,"12567":4,"12568":4,"12569":5,"12570":3,"12571":2,"12572":2,"12573":3,"12574":3,"12575":4,"12576":2,"12577":4,"12578":4,"12579":3,"12580":4,"12581":3,"12582":4,"12583":4,"12584":4,"12585":3,"12586":4,"12587":3,"12588":4,"12589":3,"12590":4,"12591":1,"12592":1,"12593":2,"12594":2,"12595":4,"12596":2,"12597":3,"12598":5,"12599":3,"12600":1,"12601":2,"12602":3,"12603":2,"12604":5,"12605":4,"12606":2,"12607":2,"12608":4,"12609":5,"12610":5,"12611":2,"12612":3,"12613":2,"12614":3,"12615":5,"12616":1,"12617":5,"12618":4,"12619":3,"12620":1,"12621":4,"12622":2,"12623":3,"12624":3,"12625":4,"12626":5,"12627":2,"12628":2,"12629":4,"12630":2,"12631":3,"12632":5,"12633":2,"12634":2,"12635":4,"12636":2,"12637":5,"12638":4,"12639":4,"12640":3,"12641":2,"12642":2,"12643":3,"12644":2,"12645":1,"12646":2,"12647":4,"12648":3,"12649":4,"12650":2,"12651":3,"12652":5,"12653":1,"12654":4,"12655":4,"12656":2,"12657":2,"12658":3,"12659":1,"12660":4,"12661":4,"12662":4,"12663":1,"12664":3,"12665":4,"12666":2,"12667":3,"12668":4,"12669":1,"12670":2,"12671":2,"12672":4,"12673":3,"12674":1,"12675":4,"12676":3,"12677":3,"12678":4,"12679":1,"12680":4,"12681":4,"12682":3,"12683":1,"12684":3,"12685":3,"12686":4,"12687":3,"12688":2,"12689":4,"12690":3,"12691":3,"12692":1,"12693":3,"12694":5,"12695":3,"12696":4,"12697":5,"12698":4,"12699":4,"12700":4,"12701":2,"12702":5,"12703":3,"12704":3,"12705":4,"12706":1,"12707":3,"12708":3,"12709":2,"12710":2,"12711":4,"12712":3,"12713":4,"12714":3,"12715":2,"12716":4,"12717":5,"12718":3,"12719":3,"12720":2,"12721":4,"12722":5,"12723":2,"12724":2,"12725":5,"12726":1,"12727":4,"12728":5,"12729":1,"12730":3,"12731":4,"12732":1,"12733":3,"12734":3,"12735":2,"12736":4,"12737":1,"12738":4,"12739":3,"12740":1,"12741":5,"12742":4,"12743":1,"12744":2,"12745":3,"12746":3,"12747":3,"12748":1,"12749":3,"12750":4,"12751":4,"12752":2,"12753":2,"12754":3,"12755":4,"12756":3,"12757":4,"12758":4,"12759":4,"12760":2,"12761":3,"12762":3,"12763":3,"12764":5,"12765":3,"12766":3,"12767":4,"12768":3,"12769":3,"12770":3,"12771":3,"12772":3,"12773":5,"12774":1,"12775":4,"12776":4,"12777":3,"12778":3,"12779":3,"12780":2,"12781":4,"12782":5,"12783":4,"12784":5,"12785":4,"12786":3,"12787":2,"12788":1,"12789":2,"12790":2,"12791":4,"12792":3,"12793":3,"12794":3,"12795":3,"12796":3,"12797":4,"12798":4,"12799":2,"12800":3,"12801":3,"12802":2,"12803":2,"12804":5,"12805":2,"12806":3,"12807":4,"12808":2,"12809":2,"12810":1,"12811":2,"12812":1,"12813":2,"12814":4,"12815":3,"12816":4,"12817":2,"12818":1,"12819":1,"12820":4,"12821":2,"12822":4,"12823":3,"12824":2,"12825":2,"12826":3,"12827":2,"12828":4,"12829":3,"12830":2,"12831":4,"12832":3,"12833":2,"12834":1,"12835":3,"12836":3,"12837":2,"12838":3,"12839":2,"12840":4,"12841":2,"12842":2,"12843":4,"12844":3,"12845":2,"12846":3,"12847":3,"12848":3,"12849":4,"12850":3,"12851":4,"12852":3,"12853":3,"12854":3,"12855":3,"12856":5,"12857":1,"12858":4,"12859":4,"12860":4,"12861":3,"12862":4,"12863":3,"12864":2,"12865":2,"12866":1,"12867":2,"12868":4,"12869":3,"12870":3,"12871":2,"12872":3,"12873":4,"12874":2,"12875":1,"12876":3,"12877":2,"12878":4,"12879":3,"12880":3,"12881":3,"12882":2,"12883":3,"12884":4,"12885":1,"12886":4,"12887":4,"12888":2,"12889":4,"12890":2,"12891":4,"12892":2,"12893":3,"12894":2,"12895":2,"12896":3,"12897":3,"12898":4,"12899":3,"12900":4,"12901":5,"12902":4,"12903":3,"12904":2,"12905":3,"12906":3,"12907":4,"12908":1,"12909":3,"12910":2,"12911":5,"12912":4,"12913":4,"12914":4,"12915":3,"12916":3,"12917":2,"12918":2,"12919":2,"12920":2,"12921":3,"12922":4,"12923":3,"12924":3,"12925":3,"12926":3,"12927":3,"12928":2,"12929":4,"12930":4,"12931":3,"12932":2,"12933":3,"12934":4,"12935":4,"12936":5,"12937":2,"12938":3,"12939":3,"12940":4,"12941":3,"12942":4,"12943":4,"12944":2,"12945":3,"12946":5,"12947":2,"12948":2,"12949":3,"12950":5,"12951":4,"12952":1,"12953":2,"12954":4,"12955":2,"12956":3,"12957":2,"12958":3,"12959":5,"12960":4,"12961":3,"12962":1,"12963":4,"12964":2,"12965":2,"12966":3,"12967":2,"12968":2,"12969":2,"12970":1,"12971":2,"12972":4,"12973":2,"12974":3,"12975":2,"12976":3,"12977":2,"12978":3,"12979":4,"12980":3,"12981":3,"12982":4,"12983":3,"12984":4,"12985":4,"12986":3,"12987":3,"12988":2,"12989":3,"12990":2,"12991":3,"12992":5,"12993":1,"12994":2,"12995":4,"12996":2,"12997":4,"12998":2,"12999":3,"13000":1,"13001":2,"13002":1,"13003":4,"13004":2,"13005":1,"13006":5,"13007":3,"13008":3,"13009":1,"13010":3,"13011":3,"13012":3,"13013":3,"13014":3,"13015":4,"13016":1,"13017":2,"13018":4,"13019":3,"13020":4,"13021":4,"13022":5,"13023":5,"13024":2,"13025":2,"13026":3,"13027":3,"13028":3,"13029":3,"13030":2,"13031":3,"13032":3,"13033":3,"13034":3,"13035":3,"13036":2,"13037":4,"13038":4,"13039":4,"13040":5,"13041":1,"13042":2,"13043":3,"13044":4,"13045":5,"13046":2,"13047":3,"13048":4,"13049":4,"13050":4,"13051":2,"13052":5,"13053":2,"13054":4,"13055":5,"13056":4,"13057":5,"13058":4,"13059":2,"13060":4,"13061":3,"13062":4,"13063":5,"13064":4,"13065":5,"13066":3,"13067":3,"13068":3,"13069":3,"13070":4,"13071":1,"13072":2,"13073":2,"13074":3,"13075":4,"13076":3,"13077":3,"13078":2,"13079":3,"13080":4,"13081":3,"13082":3,"13083":2,"13084":4,"13085":3,"13086":3,"13087":2,"13088":4,"13089":5,"13090":3,"13091":2,"13092":5,"13093":2,"13094":2,"13095":3,"13096":3,"13097":3,"13098":3,"13099":3,"13100":3,"13101":2,"13102":3,"13103":4,"13104":3,"13105":4,"13106":3,"13107":3,"13108":3,"13109":4,"13110":4,"13111":1,"13112":3,"13113":4,"13114":2,"13115":1,"13116":4,"13117":4,"13118":1,"13119":1,"13120":4,"13121":4,"13122":4,"13123":3,"13124":4,"13125":4,"13126":2,"13127":3,"13128":4,"13129":1,"13130":4,"13131":2,"13132":5,"13133":3,"13134":2,"13135":3,"13136":2,"13137":4,"13138":3,"13139":1,"13140":1,"13141":4,"13142":1,"13143":4,"13144":3,"13145":3,"13146":2,"13147":3,"13148":4,"13149":3,"13150":4,"13151":4,"13152":3,"13153":2,"13154":3,"13155":2,"13156":4,"13157":4,"13158":4,"13159":4,"13160":3,"13161":2,"13162":4,"13163":4,"13164":1,"13165":3,"13166":2,"13167":3,"13168":2,"13169":3,"13170":3,"13171":4,"13172":3,"13173":2,"13174":4,"13175":3,"13176":3,"13177":3,"13178":5,"13179":2,"13180":4,"13181":5,"13182":4,"13183":4,"13184":3,"13185":3,"13186":2,"13187":3,"13188":2,"13189":3,"13190":3,"13191":3,"13192":2,"13193":4,"13194":3,"13195":2,"13196":4,"13197":2,"13198":5,"13199":4,"13200":3,"13201":4,"13202":3,"13203":4,"13204":2,"13205":1,"13206":2,"13207":5,"13208":5,"13209":2,"13210":3,"13211":1,"13212":4,"13213":3,"13214":4,"13215":2,"13216":5,"13217":2,"13218":2,"13219":2,"13220":4,"13221":4,"13222":3,"13223":4,"13224":3,"13225":4,"13226":3,"13227":4,"13228":4,"13229":2,"13230":3,"13231":4,"13232":3,"13233":3,"13234":1,"13235":3,"13236":5,"13237":4,"13238":1,"13239":2,"13240":4,"13241":3,"13242":3,"13243":3,"13244":3,"13245":4,"13246":5,"13247":3,"13248":3,"13249":3,"13250":4,"13251":2,"13252":4,"13253":1,"13254":4,"13255":2,"13256":4,"13257":2,"13258":2,"13259":3,"13260":1,"13261":1,"13262":2,"13263":4,"13264":4,"13265":4,"13266":3,"13267":3,"13268":5,"13269":5,"13270":5,"13271":1,"13272":4,"13273":5,"13274":3,"13275":5,"13276":4,"13277":3,"13278":4,"13279":4,"13280":3,"13281":3,"13282":2,"13283":3,"13284":3,"13285":1,"13286":3,"13287":2,"13288":4,"13289":4,"13290":3,"13291":5,"13292":2,"13293":3,"13294":1,"13295":3,"13296":2,"13297":3,"13298":3,"13299":3,"13300":4,"13301":2,"13302":4,"13303":1,"13304":4,"13305":2,"13306":4,"13307":2,"13308":3,"13309":2,"13310":1,"13311":1,"13312":3,"13313":3,"13314":2,"13315":3,"13316":3,"13317":2,"13318":3,"13319":4,"13320":4,"13321":2,"13322":3,"13323":4,"13324":3,"13325":3,"13326":3,"13327":3,"13328":3,"13329":2,"13330":4,"13331":4,"13332":4,"13333":3,"13334":2,"13335":3,"13336":1,"13337":3,"13338":4,"13339":3,"13340":4,"13341":3,"13342":3,"13343":5,"13344":2,"13345":4,"13346":4,"13347":3,"13348":2,"13349":4,"13350":3,"13351":3,"13352":3,"13353":3,"13354":1,"13355":4,"13356":4,"13357":4,"13358":1,"13359":4,"13360":3,"13361":3,"13362":3,"13363":2,"13364":1,"13365":1,"13366":4,"13367":2,"13368":4,"13369":4,"13370":4,"13371":1,"13372":4,"13373":3,"13374":3,"13375":3,"13376":4,"13377":2,"13378":4,"13379":3,"13380":2,"13381":3,"13382":2,"13383":3,"13384":3,"13385":5,"13386":2,"13387":4,"13388":2,"13389":2,"13390":1,"13391":3,"13392":5,"13393":2,"13394":2,"13395":5,"13396":2,"13397":3,"13398":1,"13399":2,"13400":3,"13401":2,"13402":3,"13403":5,"13404":3,"13405":1,"13406":3,"13407":3,"13408":3,"13409":5,"13410":3,"13411":4,"13412":1,"13413":1,"13414":3,"13415":3,"13416":2,"13417":4,"13418":4,"13419":3,"13420":4,"13421":2,"13422":2,"13423":3,"13424":3,"13425":4,"13426":4,"13427":4,"13428":1,"13429":4,"13430":4,"13431":4,"13432":4,"13433":4,"13434":2,"13435":3,"13436":3,"13437":2,"13438":2,"13439":3,"13440":3,"13441":3,"13442":2,"13443":3,"13444":2,"13445":3,"13446":2,"13447":5,"13448":4,"13449":4,"13450":1,"13451":3,"13452":2,"13453":4,"13454":3,"13455":2,"13456":4,"13457":4,"13458":3,"13459":3,"13460":1,"13461":2,"13462":4,"13463":2,"13464":4,"13465":3,"13466":3,"13467":3,"13468":5,"13469":2,"13470":1,"13471":3,"13472":1,"13473":2,"13474":4,"13475":3,"13476":4,"13477":4,"13478":2,"13479":2,"13480":3,"13481":5,"13482":4,"13483":2,"13484":4,"13485":3,"13486":3,"13487":1,"13488":4,"13489":2,"13490":4,"13491":4,"13492":5,"13493":4,"13494":3,"13495":3,"13496":3,"13497":2,"13498":3,"13499":3,"13500":1,"13501":4,"13502":3,"13503":3,"13504":4,"13505":3,"13506":3,"13507":2,"13508":3,"13509":3,"13510":5,"13511":5,"13512":5,"13513":2,"13514":4,"13515":3,"13516":4,"13517":3,"13518":4,"13519":2,"13520":4,"13521":3,"13522":4,"13523":3,"13524":4,"13525":4,"13526":3,"13527":2,"13528":4,"13529":3,"13530":5,"13531":2,"13532":3,"13533":2,"13534":2,"13535":4,"13536":3,"13537":3,"13538":3,"13539":4,"13540":3,"13541":2,"13542":4,"13543":1,"13544":4,"13545":3,"13546":2,"13547":2,"13548":3,"13549":4,"13550":1,"13551":2,"13552":4,"13553":4,"13554":3,"13555":2,"13556":2,"13557":1,"13558":2,"13559":4,"13560":4,"13561":4,"13562":3,"13563":2,"13564":3,"13565":4,"13566":3,"13567":4,"13568":3,"13569":3,"13570":3,"13571":3,"13572":5,"13573":3,"13574":3,"13575":5,"13576":2,"13577":4,"13578":4,"13579":5,"13580":4,"13581":4,"13582":3,"13583":3,"13584":3,"13585":3,"13586":2,"13587":2,"13588":4,"13589":3,"13590":5,"13591":2,"13592":3,"13593":3,"13594":4,"13595":3,"13596":2,"13597":2,"13598":3,"13599":4,"13600":3,"13601":3,"13602":2,"13603":5,"13604":4,"13605":3,"13606":4,"13607":4,"13608":3,"13609":3,"13610":2,"13611":4,"13612":1,"13613":4,"13614":3,"13615":1,"13616":4,"13617":3,"13618":3,"13619":3,"13620":3,"13621":4,"13622":3,"13623":5,"13624":2,"13625":3,"13626":4,"13627":2,"13628":5,"13629":3,"13630":1,"13631":5,"13632":5,"13633":4,"13634":3,"13635":5,"13636":2,"13637":2,"13638":2,"13639":4,"13640":1,"13641":3,"13642":3,"13643":3,"13644":3,"13645":2,"13646":3,"13647":2,"13648":4,"13649":3,"13650":4,"13651":2,"13652":1,"13653":4,"13654":1,"13655":4,"13656":3,"13657":3,"13658":4,"13659":2,"13660":1,"13661":1,"13662":2,"13663":2,"13664":4,"13665":4,"13666":3,"13667":1,"13668":2,"13669":5,"13670":2,"13671":3,"13672":4,"13673":3,"13674":4,"13675":2,"13676":4,"13677":3,"13678":4,"13679":3,"13680":2,"13681":1,"13682":4,"13683":2,"13684":1,"13685":4,"13686":3,"13687":3,"13688":3,"13689":5,"13690":1,"13691":4,"13692":3,"13693":4,"13694":4,"13695":3,"13696":2,"13697":3,"13698":4,"13699":3,"13700":4,"13701":5,"13702":5,"13703":1,"13704":3,"13705":3,"13706":1,"13707":3,"13708":2,"13709":1,"13710":3,"13711":5,"13712":2,"13713":3,"13714":3,"13715":5,"13716":1,"13717":4,"13718":3,"13719":2,"13720":4,"13721":3,"13722":4,"13723":3,"13724":2,"13725":2,"13726":3,"13727":2,"13728":3,"13729":3,"13730":4,"13731":1,"13732":4,"13733":3,"13734":2,"13735":3,"13736":3,"13737":4,"13738":3,"13739":3,"13740":4,"13741":4,"13742":1,"13743":4,"13744":2,"13745":2,"13746":3,"13747":3,"13748":4,"13749":3,"13750":3,"13751":3,"13752":3,"13753":3,"13754":3,"13755":2,"13756":2,"13757":2,"13758":3,"13759":4,"13760":4,"13761":5,"13762":2,"13763":2,"13764":2,"13765":4,"13766":4,"13767":3,"13768":5,"13769":3,"13770":1,"13771":3,"13772":3,"13773":2,"13774":2,"13775":1,"13776":3,"13777":4,"13778":2,"13779":2,"13780":4,"13781":3,"13782":3,"13783":2,"13784":3,"13785":1,"13786":2,"13787":2,"13788":3,"13789":1,"13790":5,"13791":3,"13792":2,"13793":4,"13794":3,"13795":2,"13796":2,"13797":4,"13798":4,"13799":4,"13800":2,"13801":2,"13802":1,"13803":4,"13804":3,"13805":2,"13806":4,"13807":3,"13808":2,"13809":3,"13810":4,"13811":1,"13812":2,"13813":3,"13814":2,"13815":3,"13816":3,"13817":2,"13818":3,"13819":2,"13820":1,"13821":4,"13822":3,"13823":3,"13824":4,"13825":3,"13826":2,"13827":2,"13828":4,"13829":1,"13830":3,"13831":5,"13832":3,"13833":3,"13834":2,"13835":3,"13836":2,"13837":2,"13838":2,"13839":3,"13840":3,"13841":3,"13842":3,"13843":3,"13844":1,"13845":2,"13846":5,"13847":4,"13848":3,"13849":3,"13850":4,"13851":1,"13852":3,"13853":3,"13854":4,"13855":2,"13856":4,"13857":4,"13858":3,"13859":3,"13860":3,"13861":3,"13862":3,"13863":3,"13864":4,"13865":1,"13866":2,"13867":4,"13868":2,"13869":2,"13870":4,"13871":3,"13872":1,"13873":3,"13874":2,"13875":3,"13876":4,"13877":3,"13878":4,"13879":4,"13880":2,"13881":4,"13882":4,"13883":4,"13884":3,"13885":3,"13886":4,"13887":4,"13888":2,"13889":1,"13890":4,"13891":4,"13892":1,"13893":4,"13894":2,"13895":4,"13896":3,"13897":4,"13898":2,"13899":3,"13900":3,"13901":1,"13902":4,"13903":4,"13904":3,"13905":4,"13906":1,"13907":3,"13908":3,"13909":3,"13910":4,"13911":1,"13912":4,"13913":1,"13914":3,"13915":1,"13916":4,"13917":3,"13918":5,"13919":4,"13920":2,"13921":1,"13922":2,"13923":2,"13924":3,"13925":2,"13926":4,"13927":4,"13928":3,"13929":2,"13930":4,"13931":1,"13932":3,"13933":3,"13934":3,"13935":4,"13936":2,"13937":3,"13938":4,"13939":4,"13940":2,"13941":4,"13942":5,"13943":3,"13944":2,"13945":5,"13946":3,"13947":2,"13948":5,"13949":2,"13950":2,"13951":2,"13952":3,"13953":3,"13954":1,"13955":4,"13956":2,"13957":5,"13958":1,"13959":1,"13960":3,"13961":2,"13962":2,"13963":3,"13964":3,"13965":4,"13966":2,"13967":4,"13968":2,"13969":3,"13970":2,"13971":5,"13972":3,"13973":4,"13974":4,"13975":2,"13976":4,"13977":1,"13978":4,"13979":1,"13980":3,"13981":3,"13982":2,"13983":2,"13984":2,"13985":3,"13986":2,"13987":4,"13988":3,"13989":5,"13990":3,"13991":3,"13992":2,"13993":4,"13994":3,"13995":2,"13996":3,"13997":3,"13998":2,"13999":3,"14000":2,"14001":5,"14002":3,"14003":4,"14004":4,"14005":4,"14006":4,"14007":4,"14008":3,"14009":4,"14010":2,"14011":3,"14012":4,"14013":2,"14014":3,"14015":2,"14016":2,"14017":4,"14018":3,"14019":3,"14020":1,"14021":3,"14022":2,"14023":3,"14024":5,"14025":2,"14026":2,"14027":2,"14028":3,"14029":3,"14030":2,"14031":2,"14032":5,"14033":3,"14034":4,"14035":5,"14036":2,"14037":1,"14038":4,"14039":4,"14040":2,"14041":3,"14042":3,"14043":4,"14044":2,"14045":3,"14046":3,"14047":2,"14048":2,"14049":2,"14050":2,"14051":2,"14052":2,"14053":3,"14054":3,"14055":3,"14056":3,"14057":2,"14058":4,"14059":2,"14060":4,"14061":2,"14062":3,"14063":2,"14064":3,"14065":3,"14066":3,"14067":2,"14068":1,"14069":1,"14070":4,"14071":2,"14072":4,"14073":4,"14074":2,"14075":4,"14076":2,"14077":2,"14078":2,"14079":3,"14080":2,"14081":5,"14082":2,"14083":3,"14084":4,"14085":4,"14086":4,"14087":3,"14088":3,"14089":2,"14090":4,"14091":4,"14092":3,"14093":2,"14094":1,"14095":4,"14096":2,"14097":3,"14098":4,"14099":2,"14100":1,"14101":3,"14102":2,"14103":3,"14104":2,"14105":2,"14106":3,"14107":3,"14108":2,"14109":4,"14110":3,"14111":4,"14112":3,"14113":4,"14114":4,"14115":2,"14116":3,"14117":2,"14118":4,"14119":1,"14120":4,"14121":4,"14122":3,"14123":3,"14124":4,"14125":1,"14126":4,"14127":3,"14128":3,"14129":2,"14130":4,"14131":3,"14132":4,"14133":3,"14134":2,"14135":1,"14136":1,"14137":3,"14138":4,"14139":2,"14140":2,"14141":4,"14142":5,"14143":4,"14144":4,"14145":3,"14146":2,"14147":5,"14148":3,"14149":4,"14150":2,"14151":2,"14152":4,"14153":4,"14154":3,"14155":4,"14156":2,"14157":3,"14158":4,"14159":4,"14160":3,"14161":4,"14162":2,"14163":1,"14164":1,"14165":3,"14166":4,"14167":1,"14168":2,"14169":3,"14170":4,"14171":5,"14172":2,"14173":3,"14174":2,"14175":1,"14176":5,"14177":4,"14178":4,"14179":1,"14180":3,"14181":2,"14182":4,"14183":4,"14184":3,"14185":2,"14186":3,"14187":5,"14188":3,"14189":3,"14190":3,"14191":4,"14192":2,"14193":4,"14194":3,"14195":4,"14196":2,"14197":4,"14198":2,"14199":1,"14200":5,"14201":2,"14202":1,"14203":4,"14204":3,"14205":4,"14206":3,"14207":4,"14208":4,"14209":3,"14210":3,"14211":3,"14212":2,"14213":4,"14214":4,"14215":4,"14216":1,"14217":3,"14218":3,"14219":4,"14220":5,"14221":2,"14222":3,"14223":4,"14224":2,"14225":3,"14226":1,"14227":2,"14228":3,"14229":1,"14230":2,"14231":3,"14232":2,"14233":5,"14234":3,"14235":4,"14236":2,"14237":5,"14238":3,"14239":1,"14240":5,"14241":2,"14242":2,"14243":4,"14244":2,"14245":4,"14246":2,"14247":3,"14248":4,"14249":1,"14250":5,"14251":4,"14252":3,"14253":4,"14254":3,"14255":3,"14256":5,"14257":3,"14258":5,"14259":2,"14260":3,"14261":4,"14262":3,"14263":3,"14264":4,"14265":3,"14266":2,"14267":1,"14268":5,"14269":3,"14270":3,"14271":2,"14272":3,"14273":4,"14274":2,"14275":2,"14276":3,"14277":2,"14278":2,"14279":3,"14280":3,"14281":2,"14282":1,"14283":3,"14284":1,"14285":3,"14286":3,"14287":4,"14288":4,"14289":3,"14290":3,"14291":3,"14292":2,"14293":1,"14294":3,"14295":3,"14296":1,"14297":5,"14298":3,"14299":3,"14300":2,"14301":1,"14302":4,"14303":1,"14304":4,"14305":3,"14306":3,"14307":3,"14308":2,"14309":4,"14310":4,"14311":3,"14312":4,"14313":3,"14314":3,"14315":1,"14316":3,"14317":3,"14318":4,"14319":1,"14320":3,"14321":3,"14322":3,"14323":3,"14324":2,"14325":4,"14326":3,"14327":2,"14328":3,"14329":4,"14330":3,"14331":3,"14332":2,"14333":4,"14334":1,"14335":3,"14336":3,"14337":3,"14338":2,"14339":3,"14340":2,"14341":2,"14342":4,"14343":2,"14344":5,"14345":4,"14346":2,"14347":3,"14348":1,"14349":3,"14350":3,"14351":4,"14352":1,"14353":5,"14354":5,"14355":5,"14356":1,"14357":1,"14358":1,"14359":5,"14360":3,"14361":2,"14362":4,"14363":3,"14364":4,"14365":3,"14366":3,"14367":2,"14368":5,"14369":2,"14370":4,"14371":5,"14372":2,"14373":3,"14374":4,"14375":3,"14376":4,"14377":2,"14378":3,"14379":1,"14380":2,"14381":4,"14382":3,"14383":1,"14384":3,"14385":4,"14386":4,"14387":3,"14388":3,"14389":3,"14390":1,"14391":3,"14392":4,"14393":3,"14394":4,"14395":3,"14396":3,"14397":2,"14398":3,"14399":1,"14400":5,"14401":3,"14402":3,"14403":5,"14404":3,"14405":4,"14406":5,"14407":4,"14408":3,"14409":3,"14410":3,"14411":3,"14412":1,"14413":2,"14414":4,"14415":3,"14416":1,"14417":3,"14418":3,"14419":3,"14420":2,"14421":3,"14422":2,"14423":3,"14424":2,"14425":2,"14426":4,"14427":3,"14428":2,"14429":5,"14430":2,"14431":2,"14432":4,"14433":4,"14434":3,"14435":3,"14436":3,"14437":4,"14438":4,"14439":4,"14440":2,"14441":3,"14442":4,"14443":4,"14444":4,"14445":2,"14446":3,"14447":2,"14448":3,"14449":3,"14450":4,"14451":3,"14452":1,"14453":3,"14454":2,"14455":2,"14456":3,"14457":4,"14458":1,"14459":5,"14460":1,"14461":3,"14462":5,"14463":4,"14464":4,"14465":4,"14466":4,"14467":2,"14468":4,"14469":2,"14470":4,"14471":5,"14472":3,"14473":4,"14474":3,"14475":2,"14476":3,"14477":4,"14478":1,"14479":3,"14480":2,"14481":2,"14482":3,"14483":4,"14484":3,"14485":4,"14486":4,"14487":4,"14488":1,"14489":1,"14490":3,"14491":2,"14492":1,"14493":5,"14494":1,"14495":4,"14496":2,"14497":3,"14498":3,"14499":5,"14500":4,"14501":3,"14502":1,"14503":3,"14504":5,"14505":3,"14506":3,"14507":4,"14508":3,"14509":3,"14510":3,"14511":3,"14512":4,"14513":3,"14514":5,"14515":3,"14516":2,"14517":1,"14518":2,"14519":3,"14520":4,"14521":3,"14522":2,"14523":4,"14524":1,"14525":4,"14526":2,"14527":2,"14528":4,"14529":1,"14530":1,"14531":3,"14532":5,"14533":4,"14534":4,"14535":4,"14536":5,"14537":3,"14538":4,"14539":3,"14540":3,"14541":3,"14542":2,"14543":3,"14544":2,"14545":2,"14546":3,"14547":4,"14548":3,"14549":4,"14550":1,"14551":3,"14552":4,"14553":3,"14554":4,"14555":4,"14556":3,"14557":2,"14558":3,"14559":3,"14560":2,"14561":1,"14562":1,"14563":4,"14564":1,"14565":4,"14566":2,"14567":3,"14568":2,"14569":2,"14570":1,"14571":2,"14572":4,"14573":3,"14574":2,"14575":4,"14576":4,"14577":2,"14578":4,"14579":4,"14580":2,"14581":4,"14582":3,"14583":3,"14584":4,"14585":2,"14586":4,"14587":1,"14588":3,"14589":4,"14590":2,"14591":3,"14592":3,"14593":5,"14594":5,"14595":3,"14596":3,"14597":2,"14598":3,"14599":2,"14600":3,"14601":2,"14602":2,"14603":1,"14604":3,"14605":1,"14606":3,"14607":3,"14608":2,"14609":4,"14610":2,"14611":2,"14612":3,"14613":3,"14614":2,"14615":3,"14616":4,"14617":1,"14618":4,"14619":4,"14620":1,"14621":3,"14622":1,"14623":4,"14624":2,"14625":4,"14626":4,"14627":1,"14628":3,"14629":4,"14630":2,"14631":3,"14632":3,"14633":2,"14634":3,"14635":3,"14636":5,"14637":4,"14638":2,"14639":3,"14640":3,"14641":4,"14642":1,"14643":4,"14644":3,"14645":4,"14646":3,"14647":2,"14648":3,"14649":3,"14650":3,"14651":5,"14652":1,"14653":3,"14654":3,"14655":4,"14656":4,"14657":2,"14658":2,"14659":3,"14660":4,"14661":3,"14662":3,"14663":4,"14664":3,"14665":4,"14666":3,"14667":3,"14668":3,"14669":3,"14670":3,"14671":4,"14672":2,"14673":3,"14674":2,"14675":2,"14676":1,"14677":4,"14678":2,"14679":1,"14680":4,"14681":4,"14682":3,"14683":1,"14684":1,"14685":4,"14686":3,"14687":2,"14688":5,"14689":1,"14690":3,"14691":4,"14692":3,"14693":4,"14694":4,"14695":1,"14696":3,"14697":3,"14698":4,"14699":5,"14700":5,"14701":4,"14702":1,"14703":2,"14704":3,"14705":3,"14706":2,"14707":3,"14708":5,"14709":3,"14710":3,"14711":4,"14712":3,"14713":5,"14714":1,"14715":3,"14716":5,"14717":1,"14718":3,"14719":1,"14720":4,"14721":2,"14722":2,"14723":3,"14724":2,"14725":3,"14726":4,"14727":1,"14728":1,"14729":4,"14730":3,"14731":3,"14732":3,"14733":3,"14734":3,"14735":3,"14736":1,"14737":3,"14738":3,"14739":4,"14740":5,"14741":3,"14742":1,"14743":3,"14744":3,"14745":1,"14746":3,"14747":3,"14748":3,"14749":2,"14750":4,"14751":4,"14752":4,"14753":4,"14754":4,"14755":4,"14756":3,"14757":3,"14758":3,"14759":3,"14760":3,"14761":1,"14762":4,"14763":3,"14764":2,"14765":4,"14766":2,"14767":2,"14768":3,"14769":3,"14770":2,"14771":5,"14772":4,"14773":4,"14774":4,"14775":2,"14776":4,"14777":1,"14778":3,"14779":1,"14780":2,"14781":3,"14782":3,"14783":4,"14784":3,"14785":4,"14786":2,"14787":2,"14788":3,"14789":4,"14790":2,"14791":4,"14792":5,"14793":3,"14794":3,"14795":1,"14796":3,"14797":1,"14798":4,"14799":5,"14800":4,"14801":4,"14802":3,"14803":5,"14804":2,"14805":3,"14806":5,"14807":3,"14808":1,"14809":4,"14810":4,"14811":3,"14812":4,"14813":1,"14814":3,"14815":3,"14816":3,"14817":5,"14818":1,"14819":2,"14820":3,"14821":4,"14822":5,"14823":3,"14824":4,"14825":3,"14826":2,"14827":3,"14828":2,"14829":3,"14830":3,"14831":3,"14832":4,"14833":2,"14834":2,"14835":1,"14836":3,"14837":1,"14838":4,"14839":2,"14840":5,"14841":3,"14842":4,"14843":3,"14844":4,"14845":3,"14846":2,"14847":4,"14848":5,"14849":3,"14850":5,"14851":3,"14852":3,"14853":2,"14854":5,"14855":3,"14856":2,"14857":3,"14858":2,"14859":3,"14860":4,"14861":2,"14862":2,"14863":5,"14864":3,"14865":2,"14866":5,"14867":3,"14868":3,"14869":5,"14870":3,"14871":4,"14872":5,"14873":2,"14874":1,"14875":4,"14876":3,"14877":1,"14878":2,"14879":3,"14880":1,"14881":1,"14882":3,"14883":3,"14884":2,"14885":4,"14886":3,"14887":2,"14888":4,"14889":2,"14890":2,"14891":4,"14892":4,"14893":5,"14894":4,"14895":3,"14896":4,"14897":2,"14898":1,"14899":5,"14900":1,"14901":3,"14902":3,"14903":5,"14904":2,"14905":4,"14906":1,"14907":3,"14908":4,"14909":2,"14910":2,"14911":2,"14912":3,"14913":5,"14914":3,"14915":5,"14916":4,"14917":4,"14918":2,"14919":3,"14920":4,"14921":2,"14922":1,"14923":3,"14924":3,"14925":2,"14926":1,"14927":3,"14928":3,"14929":1,"14930":4,"14931":4,"14932":3,"14933":1,"14934":3,"14935":3,"14936":3,"14937":1,"14938":3,"14939":4,"14940":4,"14941":1,"14942":2,"14943":4,"14944":1,"14945":5,"14946":4,"14947":2,"14948":3,"14949":4,"14950":4,"14951":4,"14952":3,"14953":4,"14954":3,"14955":3,"14956":5,"14957":4,"14958":3,"14959":3,"14960":4,"14961":3,"14962":3,"14963":1,"14964":3,"14965":3,"14966":2,"14967":2,"14968":4,"14969":2,"14970":5,"14971":3,"14972":3,"14973":2,"14974":5,"14975":3,"14976":5,"14977":3,"14978":2,"14979":4,"14980":5,"14981":1,"14982":3,"14983":5,"14984":1,"14985":1,"14986":1,"14987":3,"14988":3,"14989":4,"14990":4,"14991":4,"14992":4,"14993":2,"14994":3,"14995":2,"14996":4,"14997":4,"14998":4,"14999":4,"15000":3,"15001":1,"15002":5,"15003":3,"15004":4,"15005":2,"15006":4,"15007":5,"15008":2,"15009":5,"15010":3,"15011":3,"15012":3,"15013":2,"15014":2,"15015":2,"15016":5,"15017":2,"15018":5,"15019":2,"15020":3,"15021":4,"15022":4,"15023":1,"15024":4,"15025":3,"15026":3,"15027":1,"15028":2,"15029":5,"15030":3,"15031":2,"15032":3,"15033":3,"15034":3,"15035":1,"15036":4,"15037":2,"15038":3,"15039":3,"15040":5,"15041":5,"15042":3,"15043":2,"15044":2,"15045":5,"15046":3,"15047":4,"15048":5,"15049":4,"15050":3,"15051":5,"15052":4,"15053":4,"15054":3,"15055":3,"15056":2,"15057":3,"15058":4,"15059":4,"15060":5,"15061":3,"15062":2,"15063":3,"15064":3,"15065":5,"15066":3,"15067":4,"15068":3,"15069":4,"15070":4,"15071":4,"15072":3,"15073":4,"15074":4,"15075":2,"15076":3,"15077":3,"15078":4,"15079":3,"15080":2,"15081":3,"15082":3,"15083":2,"15084":3,"15085":4,"15086":4,"15087":1,"15088":4,"15089":4,"15090":4,"15091":4,"15092":2,"15093":4,"15094":4,"15095":3,"15096":3,"15097":4,"15098":2,"15099":2,"15100":3,"15101":1,"15102":4,"15103":2,"15104":4,"15105":2,"15106":5,"15107":2,"15108":2,"15109":3,"15110":3,"15111":4,"15112":5,"15113":1,"15114":2,"15115":3,"15116":3,"15117":3,"15118":2,"15119":3,"15120":3,"15121":3,"15122":3,"15123":3,"15124":4,"15125":3,"15126":1,"15127":2,"15128":3,"15129":3,"15130":1,"15131":4,"15132":4,"15133":5,"15134":2,"15135":3,"15136":3,"15137":1,"15138":4,"15139":3,"15140":3,"15141":3,"15142":2,"15143":3,"15144":2,"15145":3,"15146":3,"15147":4,"15148":2,"15149":5,"15150":3,"15151":4,"15152":3,"15153":3,"15154":5,"15155":2,"15156":3,"15157":3,"15158":3,"15159":4,"15160":4,"15161":3,"15162":4,"15163":2,"15164":4,"15165":2,"15166":1,"15167":3,"15168":2,"15169":4,"15170":1,"15171":2,"15172":3,"15173":4,"15174":4,"15175":3,"15176":4,"15177":2,"15178":2,"15179":4,"15180":3,"15181":2,"15182":3,"15183":4,"15184":2,"15185":4,"15186":2,"15187":3,"15188":5,"15189":2,"15190":3,"15191":3,"15192":2,"15193":3,"15194":4,"15195":1,"15196":3,"15197":4,"15198":4,"15199":1,"15200":2,"15201":2,"15202":2,"15203":3,"15204":2,"15205":4,"15206":2,"15207":3,"15208":5,"15209":3,"15210":2,"15211":1,"15212":3,"15213":3,"15214":4,"15215":3,"15216":1,"15217":1,"15218":3,"15219":4,"15220":5,"15221":2,"15222":5,"15223":1,"15224":4,"15225":4,"15226":4,"15227":3,"15228":3,"15229":2,"15230":3,"15231":3,"15232":4,"15233":2,"15234":4,"15235":2,"15236":4,"15237":3,"15238":5,"15239":2,"15240":4,"15241":3,"15242":4,"15243":3,"15244":3,"15245":3,"15246":4,"15247":2,"15248":5,"15249":4,"15250":5,"15251":2,"15252":4,"15253":4,"15254":3,"15255":4,"15256":1,"15257":3,"15258":2,"15259":2,"15260":4,"15261":2,"15262":4,"15263":4,"15264":4,"15265":2,"15266":4,"15267":4,"15268":3,"15269":4,"15270":3,"15271":4,"15272":2,"15273":3,"15274":3,"15275":3,"15276":3,"15277":2,"15278":2,"15279":4,"15280":3,"15281":3,"15282":3,"15283":3,"15284":2,"15285":3,"15286":2,"15287":4,"15288":3,"15289":2,"15290":3,"15291":5,"15292":5,"15293":2,"15294":3,"15295":2,"15296":2,"15297":3,"15298":2,"15299":1,"15300":5,"15301":5,"15302":2,"15303":3,"15304":2,"15305":4,"15306":5,"15307":2,"15308":1,"15309":2,"15310":5,"15311":3,"15312":2,"15313":1,"15314":5,"15315":4,"15316":2,"15317":3,"15318":3,"15319":3,"15320":4,"15321":4,"15322":2,"15323":4,"15324":2,"15325":3,"15326":3,"15327":1,"15328":2,"15329":3,"15330":1,"15331":3,"15332":4,"15333":1,"15334":4,"15335":3,"15336":2,"15337":4,"15338":1,"15339":3,"15340":3,"15341":5,"15342":3,"15343":4,"15344":2,"15345":4,"15346":3,"15347":3,"15348":4,"15349":4,"15350":3,"15351":3,"15352":4,"15353":4,"15354":4,"15355":4,"15356":3,"15357":3,"15358":4,"15359":4,"15360":2,"15361":2,"15362":4,"15363":2,"15364":5,"15365":3,"15366":4,"15367":3,"15368":1,"15369":3,"15370":4,"15371":1,"15372":2,"15373":5,"15374":2,"15375":3,"15376":3,"15377":4,"15378":3,"15379":2,"15380":4,"15381":4,"15382":3,"15383":4,"15384":4,"15385":4,"15386":3,"15387":4,"15388":3,"15389":1,"15390":3,"15391":3,"15392":3,"15393":3,"15394":3,"15395":4,"15396":4,"15397":2,"15398":3,"15399":3,"15400":3,"15401":3,"15402":2,"15403":1,"15404":3,"15405":3,"15406":2,"15407":3,"15408":4,"15409":2,"15410":3,"15411":4,"15412":4,"15413":2,"15414":2,"15415":2,"15416":4,"15417":1,"15418":3,"15419":2,"15420":3,"15421":3,"15422":2,"15423":4,"15424":2,"15425":4,"15426":4,"15427":2,"15428":3,"15429":4,"15430":2,"15431":4,"15432":4,"15433":3,"15434":3,"15435":5,"15436":4,"15437":3,"15438":3,"15439":5,"15440":4,"15441":5,"15442":4,"15443":2,"15444":2,"15445":5,"15446":3,"15447":3,"15448":5,"15449":2,"15450":3,"15451":3,"15452":4,"15453":5,"15454":2,"15455":2,"15456":4,"15457":3,"15458":3,"15459":1,"15460":2,"15461":4,"15462":2,"15463":3,"15464":4,"15465":3,"15466":3,"15467":4,"15468":3,"15469":3,"15470":4,"15471":1,"15472":4,"15473":2,"15474":2,"15475":2,"15476":1,"15477":4,"15478":3,"15479":3,"15480":3,"15481":3,"15482":3,"15483":4,"15484":4,"15485":2,"15486":3,"15487":2,"15488":2,"15489":2,"15490":3,"15491":2,"15492":4,"15493":4,"15494":3,"15495":5,"15496":4,"15497":2,"15498":3,"15499":3,"15500":3,"15501":3,"15502":3,"15503":5,"15504":2,"15505":3,"15506":5,"15507":4,"15508":3,"15509":4,"15510":2,"15511":2,"15512":4,"15513":5,"15514":1,"15515":3,"15516":3,"15517":4,"15518":2,"15519":3,"15520":4,"15521":2,"15522":3,"15523":3,"15524":3,"15525":2,"15526":3,"15527":4,"15528":5,"15529":2,"15530":1,"15531":3,"15532":2,"15533":3,"15534":4,"15535":1,"15536":4,"15537":3,"15538":4,"15539":2,"15540":4,"15541":1,"15542":3,"15543":1,"15544":3,"15545":2,"15546":2,"15547":5,"15548":2,"15549":2,"15550":3,"15551":3,"15552":3,"15553":3,"15554":2,"15555":3,"15556":4,"15557":3,"15558":2,"15559":3,"15560":2,"15561":3,"15562":3,"15563":4,"15564":4,"15565":5,"15566":5,"15567":2,"15568":2,"15569":2,"15570":4,"15571":3,"15572":4,"15573":2,"15574":3,"15575":3,"15576":4,"15577":2,"15578":3,"15579":3,"15580":4,"15581":4,"15582":1,"15583":2,"15584":2,"15585":1,"15586":3,"15587":1,"15588":5,"15589":1,"15590":4,"15591":2,"15592":3,"15593":2,"15594":4,"15595":3,"15596":4,"15597":4,"15598":2,"15599":3,"15600":4,"15601":3,"15602":3,"15603":3,"15604":2,"15605":2,"15606":5,"15607":5,"15608":3,"15609":2,"15610":3,"15611":3,"15612":4,"15613":2,"15614":2,"15615":1,"15616":4,"15617":5,"15618":4,"15619":4,"15620":2,"15621":4,"15622":2,"15623":2,"15624":2,"15625":2,"15626":3,"15627":4,"15628":4,"15629":3,"15630":4,"15631":4,"15632":5,"15633":3,"15634":3,"15635":3,"15636":3,"15637":3,"15638":2,"15639":3,"15640":2,"15641":1,"15642":4,"15643":4,"15644":2,"15645":3,"15646":4,"15647":3,"15648":1,"15649":2,"15650":3,"15651":2,"15652":4,"15653":1,"15654":1,"15655":4,"15656":5,"15657":3,"15658":2,"15659":3,"15660":3,"15661":4,"15662":4,"15663":3,"15664":2,"15665":2,"15666":2,"15667":3,"15668":2,"15669":3,"15670":2,"15671":2,"15672":3,"15673":3,"15674":3,"15675":2,"15676":5,"15677":3,"15678":4,"15679":3,"15680":4,"15681":5,"15682":2,"15683":1,"15684":2,"15685":1,"15686":4,"15687":1,"15688":2,"15689":2,"15690":3,"15691":4,"15692":2,"15693":2,"15694":4,"15695":4,"15696":3,"15697":1,"15698":3,"15699":3,"15700":2,"15701":3,"15702":4,"15703":4,"15704":3,"15705":1,"15706":4,"15707":4,"15708":4,"15709":4,"15710":4,"15711":4,"15712":3,"15713":4,"15714":4,"15715":3,"15716":3,"15717":2,"15718":4,"15719":2,"15720":2,"15721":3,"15722":4,"15723":4,"15724":4,"15725":3,"15726":3,"15727":4,"15728":2,"15729":4,"15730":4,"15731":5,"15732":1,"15733":1,"15734":4,"15735":3,"15736":5,"15737":3,"15738":5,"15739":3,"15740":4,"15741":4,"15742":5,"15743":4,"15744":3,"15745":3,"15746":3,"15747":3,"15748":3,"15749":5,"15750":2,"15751":2,"15752":3,"15753":5,"15754":3,"15755":5,"15756":4,"15757":2,"15758":5,"15759":3,"15760":4,"15761":3,"15762":2,"15763":2,"15764":2,"15765":4,"15766":2,"15767":3,"15768":4,"15769":4,"15770":1,"15771":1,"15772":3,"15773":1,"15774":3,"15775":5,"15776":2,"15777":2,"15778":2,"15779":3,"15780":2,"15781":4,"15782":4,"15783":5,"15784":4,"15785":3,"15786":1,"15787":1,"15788":4,"15789":2,"15790":3,"15791":4,"15792":2,"15793":4,"15794":5,"15795":4,"15796":3,"15797":3,"15798":4,"15799":2,"15800":1,"15801":2,"15802":3,"15803":1,"15804":5,"15805":3,"15806":3,"15807":2,"15808":3,"15809":3,"15810":5,"15811":4,"15812":2,"15813":3,"15814":2,"15815":4,"15816":5,"15817":3,"15818":4,"15819":4,"15820":3,"15821":2,"15822":1,"15823":1,"15824":3,"15825":3,"15826":1,"15827":4,"15828":1,"15829":3,"15830":2,"15831":2,"15832":3,"15833":2,"15834":3,"15835":2,"15836":3,"15837":3,"15838":4,"15839":3,"15840":2,"15841":2,"15842":3,"15843":1,"15844":4,"15845":2,"15846":3,"15847":4,"15848":4,"15849":4,"15850":3,"15851":2,"15852":3,"15853":3,"15854":2,"15855":4,"15856":3,"15857":2,"15858":3,"15859":4,"15860":3,"15861":4,"15862":2,"15863":3,"15864":3,"15865":4,"15866":4,"15867":3,"15868":1,"15869":2,"15870":3,"15871":2,"15872":4,"15873":3,"15874":4,"15875":3,"15876":3,"15877":4,"15878":2,"15879":2,"15880":2,"15881":2,"15882":2,"15883":4,"15884":1,"15885":2,"15886":5,"15887":1,"15888":5,"15889":2,"15890":3,"15891":5,"15892":3,"15893":4,"15894":3,"15895":4,"15896":3,"15897":2,"15898":3,"15899":4,"15900":2,"15901":4,"15902":2,"15903":4,"15904":2,"15905":3,"15906":3,"15907":4,"15908":2,"15909":4,"15910":3,"15911":2,"15912":4,"15913":2,"15914":2,"15915":3,"15916":4,"15917":1,"15918":2,"15919":3,"15920":2,"15921":2,"15922":2,"15923":3,"15924":4,"15925":5,"15926":5,"15927":1,"15928":3,"15929":5,"15930":2,"15931":2,"15932":4,"15933":5,"15934":2,"15935":2,"15936":2,"15937":1,"15938":3,"15939":3,"15940":3,"15941":3,"15942":2,"15943":3,"15944":4,"15945":5,"15946":2,"15947":5,"15948":3,"15949":3,"15950":3,"15951":3,"15952":3,"15953":3,"15954":1,"15955":1,"15956":1,"15957":1,"15958":3,"15959":2,"15960":2,"15961":4,"15962":1,"15963":2,"15964":3,"15965":3,"15966":3,"15967":3,"15968":2,"15969":4,"15970":2,"15971":4,"15972":3,"15973":1,"15974":3,"15975":5,"15976":1,"15977":1,"15978":2,"15979":2,"15980":2,"15981":4,"15982":2,"15983":2,"15984":3,"15985":5,"15986":3,"15987":3,"15988":2,"15989":4,"15990":3,"15991":3,"15992":3,"15993":1,"15994":5,"15995":4,"15996":2,"15997":2,"15998":3,"15999":4,"16000":2,"16001":4,"16002":3,"16003":1,"16004":2,"16005":3,"16006":5,"16007":3,"16008":1,"16009":3,"16010":3,"16011":3,"16012":3,"16013":1,"16014":2,"16015":2,"16016":4,"16017":3,"16018":3,"16019":4,"16020":1,"16021":3,"16022":3,"16023":1,"16024":3,"16025":2,"16026":3,"16027":3,"16028":3,"16029":3,"16030":4,"16031":3,"16032":3,"16033":3,"16034":5,"16035":4,"16036":3,"16037":2,"16038":4,"16039":2,"16040":4,"16041":4,"16042":3,"16043":3,"16044":2,"16045":1,"16046":2,"16047":3,"16048":3,"16049":4,"16050":3,"16051":4,"16052":3,"16053":3,"16054":3,"16055":2,"16056":2,"16057":4,"16058":3,"16059":3,"16060":2,"16061":1,"16062":5,"16063":3,"16064":4,"16065":2,"16066":3,"16067":4,"16068":3,"16069":3,"16070":3,"16071":4,"16072":1,"16073":2,"16074":3,"16075":3,"16076":5,"16077":4,"16078":4,"16079":2,"16080":5,"16081":4,"16082":4,"16083":4,"16084":3,"16085":5,"16086":2,"16087":3,"16088":3,"16089":2,"16090":4,"16091":2,"16092":5,"16093":2,"16094":4,"16095":2,"16096":4,"16097":3,"16098":1,"16099":5,"16100":5,"16101":3,"16102":3,"16103":3,"16104":1,"16105":3,"16106":2,"16107":2,"16108":3,"16109":3,"16110":3,"16111":3,"16112":4,"16113":4,"16114":3,"16115":2,"16116":3,"16117":2,"16118":3,"16119":3,"16120":4,"16121":3,"16122":4,"16123":2,"16124":3,"16125":4,"16126":4,"16127":2,"16128":5,"16129":3,"16130":2,"16131":5,"16132":4,"16133":4,"16134":3,"16135":3,"16136":3,"16137":2,"16138":2,"16139":3,"16140":4,"16141":3,"16142":4,"16143":3,"16144":3,"16145":4,"16146":3,"16147":3,"16148":2,"16149":3,"16150":1,"16151":3,"16152":4,"16153":2,"16154":4,"16155":2,"16156":3,"16157":3,"16158":1,"16159":3,"16160":4,"16161":4,"16162":3,"16163":2,"16164":2,"16165":3,"16166":2,"16167":2,"16168":3,"16169":4,"16170":1,"16171":2,"16172":2,"16173":4,"16174":1,"16175":3,"16176":2,"16177":4,"16178":1,"16179":4,"16180":3,"16181":2,"16182":3,"16183":2,"16184":2,"16185":2,"16186":3,"16187":2,"16188":3,"16189":5,"16190":3,"16191":5,"16192":3,"16193":2,"16194":3,"16195":3,"16196":4,"16197":3,"16198":2,"16199":4,"16200":3,"16201":4,"16202":3,"16203":2,"16204":3,"16205":3,"16206":1,"16207":3,"16208":3,"16209":1,"16210":3,"16211":4,"16212":3,"16213":4,"16214":2,"16215":5,"16216":4,"16217":3,"16218":2,"16219":3,"16220":3,"16221":4,"16222":4,"16223":4,"16224":4,"16225":3,"16226":2,"16227":2,"16228":4,"16229":4,"16230":2,"16231":2,"16232":3,"16233":4,"16234":3,"16235":3,"16236":4,"16237":1,"16238":3,"16239":4,"16240":3,"16241":3,"16242":2,"16243":2,"16244":3,"16245":2,"16246":4,"16247":3,"16248":1,"16249":1,"16250":2,"16251":3,"16252":4,"16253":5,"16254":3,"16255":4,"16256":2,"16257":4,"16258":2,"16259":2,"16260":3,"16261":2,"16262":3,"16263":1,"16264":3,"16265":1,"16266":4,"16267":5,"16268":2,"16269":1,"16270":4,"16271":1,"16272":4,"16273":5,"16274":5,"16275":4,"16276":5,"16277":3,"16278":3,"16279":3,"16280":3,"16281":2,"16282":3,"16283":1,"16284":4,"16285":2,"16286":1,"16287":4,"16288":4,"16289":2,"16290":2,"16291":2,"16292":2,"16293":3,"16294":3,"16295":4,"16296":2,"16297":1,"16298":5,"16299":3,"16300":2,"16301":4,"16302":1,"16303":3,"16304":1,"16305":4,"16306":3,"16307":3,"16308":2,"16309":2,"16310":3,"16311":3,"16312":2,"16313":2,"16314":3,"16315":4,"16316":1,"16317":2,"16318":2,"16319":1,"16320":4,"16321":5,"16322":4,"16323":2,"16324":3,"16325":3,"16326":2,"16327":3,"16328":3,"16329":3,"16330":1,"16331":4,"16332":3,"16333":4,"16334":4,"16335":4,"16336":1,"16337":4,"16338":5,"16339":5,"16340":4,"16341":3,"16342":3,"16343":2,"16344":4,"16345":3,"16346":3,"16347":3,"16348":4,"16349":1,"16350":3,"16351":2,"16352":2,"16353":4,"16354":4,"16355":1,"16356":4,"16357":5,"16358":5,"16359":4,"16360":2,"16361":5,"16362":3,"16363":2,"16364":3,"16365":4,"16366":3,"16367":3,"16368":3,"16369":4,"16370":5,"16371":4,"16372":1,"16373":3,"16374":2,"16375":3,"16376":3,"16377":2,"16378":3,"16379":3,"16380":1,"16381":1,"16382":5,"16383":4,"16384":1,"16385":2,"16386":4,"16387":4,"16388":4,"16389":2,"16390":1,"16391":5,"16392":3,"16393":4,"16394":4,"16395":4,"16396":3,"16397":5,"16398":5,"16399":2,"16400":4,"16401":3,"16402":2,"16403":3,"16404":5,"16405":2,"16406":3,"16407":3,"16408":4,"16409":1,"16410":4,"16411":3,"16412":2,"16413":3,"16414":5,"16415":4,"16416":2,"16417":4,"16418":4,"16419":4,"16420":5,"16421":3,"16422":3,"16423":2,"16424":3,"16425":3,"16426":4,"16427":2,"16428":5,"16429":4,"16430":3,"16431":1,"16432":3,"16433":2,"16434":1,"16435":2,"16436":3,"16437":4,"16438":2,"16439":2,"16440":4,"16441":2,"16442":4,"16443":2,"16444":4,"16445":4,"16446":2,"16447":4,"16448":2,"16449":1,"16450":4,"16451":2,"16452":2,"16453":4,"16454":4,"16455":3,"16456":3,"16457":3,"16458":3,"16459":3,"16460":3,"16461":3,"16462":1,"16463":3,"16464":3,"16465":4,"16466":3,"16467":3,"16468":3,"16469":4,"16470":2,"16471":2,"16472":2,"16473":3,"16474":1,"16475":3,"16476":4,"16477":1,"16478":3,"16479":1,"16480":4,"16481":4,"16482":3,"16483":1,"16484":2,"16485":5,"16486":3,"16487":3,"16488":1,"16489":3,"16490":3,"16491":4,"16492":2,"16493":2,"16494":4,"16495":3,"16496":3,"16497":3,"16498":3,"16499":3,"16500":3,"16501":4,"16502":4,"16503":4,"16504":5,"16505":3,"16506":3,"16507":1,"16508":2,"16509":2,"16510":5,"16511":3,"16512":4,"16513":1,"16514":5,"16515":3,"16516":4,"16517":3,"16518":4,"16519":4,"16520":4,"16521":4,"16522":4,"16523":3,"16524":1,"16525":2,"16526":4,"16527":5,"16528":4,"16529":4,"16530":1,"16531":4,"16532":3,"16533":2,"16534":4,"16535":2,"16536":2,"16537":2,"16538":2,"16539":4,"16540":4,"16541":4,"16542":1,"16543":5,"16544":2,"16545":2,"16546":3,"16547":4,"16548":4,"16549":2,"16550":1,"16551":4,"16552":4,"16553":3,"16554":3,"16555":3,"16556":4,"16557":3,"16558":3,"16559":2,"16560":3,"16561":3,"16562":2,"16563":3,"16564":5,"16565":4,"16566":3,"16567":3,"16568":3,"16569":2,"16570":2,"16571":2,"16572":2,"16573":2,"16574":3,"16575":3,"16576":3,"16577":3,"16578":1,"16579":5,"16580":3,"16581":2,"16582":1,"16583":4,"16584":4,"16585":1,"16586":2,"16587":1,"16588":4,"16589":4,"16590":2,"16591":2,"16592":4,"16593":3,"16594":2,"16595":3,"16596":3,"16597":3,"16598":4,"16599":4,"16600":2,"16601":2,"16602":2,"16603":4,"16604":5,"16605":3,"16606":4,"16607":2,"16608":4,"16609":1,"16610":2,"16611":3,"16612":4,"16613":3,"16614":3,"16615":3,"16616":4,"16617":3,"16618":3,"16619":2,"16620":4,"16621":3,"16622":4,"16623":3,"16624":3,"16625":1,"16626":1,"16627":2,"16628":2,"16629":2,"16630":5,"16631":2,"16632":3,"16633":5,"16634":2,"16635":4,"16636":2,"16637":3,"16638":4,"16639":4,"16640":2,"16641":4,"16642":2,"16643":3,"16644":4,"16645":4,"16646":3,"16647":4,"16648":3,"16649":2,"16650":2,"16651":4,"16652":2,"16653":3,"16654":4,"16655":4,"16656":4,"16657":3,"16658":2,"16659":1,"16660":2,"16661":2,"16662":4,"16663":1,"16664":5,"16665":5,"16666":2,"16667":2,"16668":1,"16669":2,"16670":3,"16671":4,"16672":5,"16673":2,"16674":5,"16675":5,"16676":3,"16677":3,"16678":5,"16679":3,"16680":4,"16681":1,"16682":3,"16683":3,"16684":1,"16685":2,"16686":3,"16687":5,"16688":1,"16689":2,"16690":3,"16691":2,"16692":2,"16693":3,"16694":4,"16695":4,"16696":3,"16697":2,"16698":1,"16699":3,"16700":2,"16701":2,"16702":3,"16703":1,"16704":3,"16705":3,"16706":3,"16707":4,"16708":2,"16709":3,"16710":5,"16711":5,"16712":2,"16713":3,"16714":3,"16715":2,"16716":4,"16717":1,"16718":5,"16719":3,"16720":3,"16721":5,"16722":3,"16723":3,"16724":2,"16725":3,"16726":3,"16727":3,"16728":2,"16729":2,"16730":3,"16731":1,"16732":3,"16733":1,"16734":4,"16735":3,"16736":3,"16737":3,"16738":3,"16739":2,"16740":3,"16741":1,"16742":2,"16743":4,"16744":3,"16745":4,"16746":3,"16747":5,"16748":2,"16749":4,"16750":2,"16751":4,"16752":1,"16753":3,"16754":4,"16755":2,"16756":3,"16757":3,"16758":4,"16759":3,"16760":2,"16761":4,"16762":4,"16763":3,"16764":2,"16765":3,"16766":4,"16767":2,"16768":4,"16769":3,"16770":5,"16771":3,"16772":3,"16773":3,"16774":4,"16775":4,"16776":4,"16777":2,"16778":3,"16779":4,"16780":4,"16781":3,"16782":3,"16783":4,"16784":3,"16785":3,"16786":2,"16787":3,"16788":3,"16789":3,"16790":2,"16791":3,"16792":5,"16793":3,"16794":4,"16795":3,"16796":4,"16797":3,"16798":5,"16799":4,"16800":2,"16801":4,"16802":1,"16803":4,"16804":3,"16805":1,"16806":3,"16807":1,"16808":4,"16809":4,"16810":2,"16811":5,"16812":3,"16813":2,"16814":4,"16815":2,"16816":2,"16817":3,"16818":1,"16819":3,"16820":3,"16821":2,"16822":4,"16823":4,"16824":3,"16825":3,"16826":2,"16827":5,"16828":4,"16829":2,"16830":1,"16831":3,"16832":3,"16833":3,"16834":2,"16835":4,"16836":4,"16837":2,"16838":4,"16839":4,"16840":3,"16841":3,"16842":4,"16843":4,"16844":4,"16845":4,"16846":4,"16847":4,"16848":2,"16849":3,"16850":2,"16851":1,"16852":5,"16853":4,"16854":4,"16855":4,"16856":3,"16857":4,"16858":3,"16859":1,"16860":5,"16861":3,"16862":5,"16863":4,"16864":3,"16865":4,"16866":4,"16867":1,"16868":5,"16869":4,"16870":2,"16871":3,"16872":5,"16873":1,"16874":3,"16875":3,"16876":3,"16877":2,"16878":2,"16879":3,"16880":3,"16881":3,"16882":3,"16883":1,"16884":2,"16885":2,"16886":1,"16887":2,"16888":4,"16889":3,"16890":3,"16891":4,"16892":4,"16893":1,"16894":2,"16895":3,"16896":4,"16897":3,"16898":2,"16899":4,"16900":3,"16901":4,"16902":4,"16903":3,"16904":4,"16905":4,"16906":3,"16907":2,"16908":2,"16909":3,"16910":4,"16911":3,"16912":4,"16913":2,"16914":4,"16915":5,"16916":3,"16917":3,"16918":3,"16919":4,"16920":3,"16921":2,"16922":3,"16923":3,"16924":2,"16925":3,"16926":2,"16927":3,"16928":4,"16929":4,"16930":2,"16931":5,"16932":3,"16933":4,"16934":5,"16935":2,"16936":3,"16937":4,"16938":4,"16939":3,"16940":3,"16941":2,"16942":4,"16943":3,"16944":3,"16945":4,"16946":2,"16947":3,"16948":3,"16949":5,"16950":2,"16951":2,"16952":3,"16953":3,"16954":3,"16955":4,"16956":3,"16957":4,"16958":3,"16959":1,"16960":1,"16961":3,"16962":5,"16963":1,"16964":4,"16965":4,"16966":3,"16967":4,"16968":3,"16969":1,"16970":4,"16971":3,"16972":4,"16973":3,"16974":3,"16975":4,"16976":2,"16977":2,"16978":2,"16979":2,"16980":2,"16981":1,"16982":3,"16983":4,"16984":3,"16985":4,"16986":4,"16987":4,"16988":5,"16989":2,"16990":4,"16991":4,"16992":1,"16993":5,"16994":3,"16995":2,"16996":2,"16997":2,"16998":2,"16999":3,"17000":2,"17001":4,"17002":5,"17003":2,"17004":5,"17005":3,"17006":5,"17007":2,"17008":2,"17009":1,"17010":2,"17011":2,"17012":1,"17013":1,"17014":2,"17015":3,"17016":4,"17017":2,"17018":3,"17019":3,"17020":4,"17021":1,"17022":2,"17023":3,"17024":2,"17025":3,"17026":4,"17027":2,"17028":2,"17029":3,"17030":4,"17031":4,"17032":3,"17033":3,"17034":3,"17035":2,"17036":1,"17037":3,"17038":2,"17039":2,"17040":3,"17041":4,"17042":2,"17043":3,"17044":3,"17045":2,"17046":3,"17047":3,"17048":4,"17049":1,"17050":2,"17051":4,"17052":4,"17053":4,"17054":1,"17055":3,"17056":2,"17057":4,"17058":3,"17059":3,"17060":3,"17061":2,"17062":3,"17063":4,"17064":2,"17065":3,"17066":3,"17067":4,"17068":3,"17069":4,"17070":3,"17071":4,"17072":3,"17073":5,"17074":4,"17075":3,"17076":2,"17077":3,"17078":4,"17079":1,"17080":3,"17081":3,"17082":3,"17083":2,"17084":3,"17085":3,"17086":5,"17087":5,"17088":1,"17089":5,"17090":1,"17091":4,"17092":4,"17093":3,"17094":3,"17095":4,"17096":4,"17097":4,"17098":3,"17099":2,"17100":2,"17101":3,"17102":3,"17103":2,"17104":2,"17105":1,"17106":2,"17107":1,"17108":2,"17109":2,"17110":2,"17111":3,"17112":4,"17113":3,"17114":3,"17115":4,"17116":1,"17117":3,"17118":4,"17119":1,"17120":2,"17121":4,"17122":4,"17123":5,"17124":3,"17125":3,"17126":4,"17127":4,"17128":2,"17129":2,"17130":5,"17131":3,"17132":3,"17133":2,"17134":3,"17135":1,"17136":2,"17137":3,"17138":3,"17139":2,"17140":3,"17141":1,"17142":2,"17143":4,"17144":2,"17145":4,"17146":3,"17147":2,"17148":4,"17149":1,"17150":2,"17151":5,"17152":1,"17153":3,"17154":3,"17155":4,"17156":5,"17157":4,"17158":4,"17159":1,"17160":3,"17161":4,"17162":4,"17163":4,"17164":2,"17165":3,"17166":5,"17167":4,"17168":3,"17169":5,"17170":3,"17171":4,"17172":4,"17173":2,"17174":3,"17175":2,"17176":3,"17177":2,"17178":3,"17179":2,"17180":1,"17181":2,"17182":4,"17183":3,"17184":1,"17185":2,"17186":2,"17187":2,"17188":3,"17189":3,"17190":5,"17191":2,"17192":3,"17193":3,"17194":4,"17195":4,"17196":4,"17197":1,"17198":1,"17199":3,"17200":4,"17201":4,"17202":4,"17203":3,"17204":4,"17205":3,"17206":2,"17207":4,"17208":1,"17209":3,"17210":3,"17211":4,"17212":3,"17213":2,"17214":3,"17215":2,"17216":2,"17217":4,"17218":4,"17219":1,"17220":3,"17221":3,"17222":1,"17223":4,"17224":2,"17225":3,"17226":5,"17227":1,"17228":4,"17229":5,"17230":3,"17231":2,"17232":3,"17233":4,"17234":3,"17235":4,"17236":3,"17237":4,"17238":2,"17239":2,"17240":5,"17241":3,"17242":3,"17243":4,"17244":4,"17245":5,"17246":4,"17247":1,"17248":3,"17249":4,"17250":2,"17251":2,"17252":3,"17253":3,"17254":2,"17255":4,"17256":3,"17257":4,"17258":4,"17259":5,"17260":3,"17261":4,"17262":2,"17263":5,"17264":4,"17265":5,"17266":1,"17267":5,"17268":4,"17269":4,"17270":4,"17271":2,"17272":2,"17273":2,"17274":2,"17275":3,"17276":4,"17277":3,"17278":5,"17279":1,"17280":1,"17281":2,"17282":4,"17283":3,"17284":3,"17285":3,"17286":1,"17287":5,"17288":2,"17289":1,"17290":2,"17291":1,"17292":2,"17293":5,"17294":3,"17295":3,"17296":5,"17297":5,"17298":3,"17299":5,"17300":1,"17301":4,"17302":1,"17303":5,"17304":4,"17305":4,"17306":1,"17307":3,"17308":3,"17309":3,"17310":4,"17311":3,"17312":3,"17313":2,"17314":1,"17315":3,"17316":1,"17317":1,"17318":4,"17319":4,"17320":1,"17321":2,"17322":1,"17323":3,"17324":1,"17325":5,"17326":1,"17327":3,"17328":4,"17329":2,"17330":4,"17331":4,"17332":2,"17333":4,"17334":2,"17335":5,"17336":3,"17337":5,"17338":3,"17339":4,"17340":3,"17341":3,"17342":2,"17343":3,"17344":2,"17345":3,"17346":4,"17347":1,"17348":2,"17349":4,"17350":3,"17351":1,"17352":5,"17353":1,"17354":4,"17355":3,"17356":3,"17357":2,"17358":2,"17359":2,"17360":1,"17361":2,"17362":4,"17363":4,"17364":2,"17365":1,"17366":3,"17367":1,"17368":4,"17369":4,"17370":5,"17371":5,"17372":2,"17373":5,"17374":2,"17375":5,"17376":3,"17377":1,"17378":2,"17379":2,"17380":3,"17381":3,"17382":5,"17383":3,"17384":2,"17385":4,"17386":2,"17387":5,"17388":1,"17389":3,"17390":3,"17391":2,"17392":4,"17393":2,"17394":3,"17395":2,"17396":2,"17397":3,"17398":4,"17399":4,"17400":4,"17401":3,"17402":4,"17403":3,"17404":4,"17405":2,"17406":3,"17407":3,"17408":2,"17409":2,"17410":4,"17411":2,"17412":3,"17413":4,"17414":3,"17415":1,"17416":4,"17417":2,"17418":5,"17419":3,"17420":3,"17421":3,"17422":2,"17423":4,"17424":4,"17425":2,"17426":4,"17427":4,"17428":3,"17429":4,"17430":3,"17431":3,"17432":4,"17433":4,"17434":4,"17435":4,"17436":3,"17437":3,"17438":3,"17439":3,"17440":1,"17441":2,"17442":2,"17443":3,"17444":1,"17445":2,"17446":1,"17447":1,"17448":2,"17449":4,"17450":3,"17451":4,"17452":3,"17453":4,"17454":3,"17455":4,"17456":3,"17457":5,"17458":1,"17459":3,"17460":1,"17461":3,"17462":3,"17463":3,"17464":3,"17465":5,"17466":4,"17467":4,"17468":2,"17469":4,"17470":2,"17471":2,"17472":3,"17473":5,"17474":1,"17475":3,"17476":3,"17477":4,"17478":3,"17479":2,"17480":3,"17481":5,"17482":1,"17483":2,"17484":2,"17485":3,"17486":2,"17487":3,"17488":4,"17489":4,"17490":4,"17491":3,"17492":1,"17493":4,"17494":4,"17495":2,"17496":2,"17497":4,"17498":2,"17499":4,"17500":3,"17501":3,"17502":2,"17503":3,"17504":2,"17505":4,"17506":3,"17507":4,"17508":4,"17509":5,"17510":3,"17511":1,"17512":1,"17513":3,"17514":3,"17515":2,"17516":1,"17517":4,"17518":2,"17519":3,"17520":3,"17521":3,"17522":3,"17523":2,"17524":4,"17525":3,"17526":4,"17527":3,"17528":3,"17529":4,"17530":2,"17531":3,"17532":3,"17533":2,"17534":3,"17535":3,"17536":4,"17537":3,"17538":3,"17539":1,"17540":2,"17541":4,"17542":4,"17543":2,"17544":3,"17545":3,"17546":3,"17547":3,"17548":4,"17549":3,"17550":2,"17551":3,"17552":3,"17553":2,"17554":2,"17555":4,"17556":3,"17557":2,"17558":2,"17559":2,"17560":2,"17561":4,"17562":3,"17563":2,"17564":2,"17565":2,"17566":3,"17567":1,"17568":4,"17569":1,"17570":4,"17571":5,"17572":3,"17573":4,"17574":3,"17575":5,"17576":3,"17577":2,"17578":3,"17579":1,"17580":3,"17581":1,"17582":1,"17583":3,"17584":4,"17585":4,"17586":3,"17587":3,"17588":1,"17589":2,"17590":3,"17591":5,"17592":2,"17593":4,"17594":1,"17595":2,"17596":4,"17597":1,"17598":2,"17599":1,"17600":4,"17601":2,"17602":3,"17603":3,"17604":3,"17605":2,"17606":4,"17607":2,"17608":5,"17609":3,"17610":4,"17611":3,"17612":3,"17613":2,"17614":2,"17615":5,"17616":4,"17617":3,"17618":1,"17619":3,"17620":3,"17621":3,"17622":4,"17623":4,"17624":4,"17625":1,"17626":3,"17627":3,"17628":2,"17629":4,"17630":5,"17631":5,"17632":4,"17633":3,"17634":1,"17635":1,"17636":4,"17637":1,"17638":2,"17639":3,"17640":3,"17641":4,"17642":3,"17643":3,"17644":3,"17645":1,"17646":3,"17647":4,"17648":1,"17649":3,"17650":2,"17651":4,"17652":3,"17653":2,"17654":3,"17655":1,"17656":2,"17657":2,"17658":4,"17659":4,"17660":2,"17661":2,"17662":1,"17663":1,"17664":4,"17665":3,"17666":3,"17667":4,"17668":3,"17669":3,"17670":5,"17671":3,"17672":2,"17673":3,"17674":4,"17675":2,"17676":3,"17677":5,"17678":5,"17679":5,"17680":3,"17681":4,"17682":3,"17683":3,"17684":3,"17685":4,"17686":2,"17687":4,"17688":4,"17689":5,"17690":3,"17691":2,"17692":4,"17693":1,"17694":2,"17695":2,"17696":3,"17697":1,"17698":2,"17699":2,"17700":2,"17701":4,"17702":1,"17703":3,"17704":3,"17705":2,"17706":2,"17707":4,"17708":4,"17709":4,"17710":3,"17711":1,"17712":2,"17713":3,"17714":1,"17715":3,"17716":2,"17717":4,"17718":5,"17719":3,"17720":2,"17721":1,"17722":3,"17723":3,"17724":4,"17725":2,"17726":4,"17727":3,"17728":2,"17729":2,"17730":3,"17731":1,"17732":5,"17733":3,"17734":3,"17735":2,"17736":3,"17737":4,"17738":2,"17739":4,"17740":3,"17741":3,"17742":1,"17743":5,"17744":1,"17745":2,"17746":3,"17747":3,"17748":2,"17749":3,"17750":4,"17751":3,"17752":3,"17753":3,"17754":3,"17755":5,"17756":1,"17757":3,"17758":4,"17759":4,"17760":4,"17761":4,"17762":1,"17763":3,"17764":3,"17765":4,"17766":4,"17767":5,"17768":3,"17769":3,"17770":4,"17771":4,"17772":2,"17773":2,"17774":4,"17775":3,"17776":2,"17777":3,"17778":2,"17779":2,"17780":4,"17781":4,"17782":4,"17783":1,"17784":3,"17785":3,"17786":3,"17787":3,"17788":2,"17789":2,"17790":2,"17791":3,"17792":3,"17793":3,"17794":3,"17795":3,"17796":2,"17797":3,"17798":3,"17799":4,"17800":2,"17801":5,"17802":4,"17803":3,"17804":3,"17805":4,"17806":2,"17807":3,"17808":1,"17809":5,"17810":3,"17811":3,"17812":5,"17813":5,"17814":4,"17815":2,"17816":5,"17817":4,"17818":1,"17819":4,"17820":2,"17821":3,"17822":1,"17823":4,"17824":3,"17825":4,"17826":3,"17827":2,"17828":3,"17829":2,"17830":2,"17831":2,"17832":4,"17833":2,"17834":1,"17835":4,"17836":3,"17837":3,"17838":1,"17839":5,"17840":4,"17841":1,"17842":3,"17843":4,"17844":2,"17845":1,"17846":2,"17847":1,"17848":2,"17849":1,"17850":2,"17851":3,"17852":4,"17853":4,"17854":2,"17855":2,"17856":3,"17857":2,"17858":2,"17859":3,"17860":2,"17861":5,"17862":4,"17863":5,"17864":3,"17865":2,"17866":1,"17867":4,"17868":2,"17869":2,"17870":3,"17871":4,"17872":1,"17873":3,"17874":4,"17875":3,"17876":4,"17877":4,"17878":4,"17879":3,"17880":2,"17881":3,"17882":2,"17883":5,"17884":3,"17885":4,"17886":1,"17887":4,"17888":3,"17889":2,"17890":3,"17891":3,"17892":2,"17893":4,"17894":4,"17895":3,"17896":4,"17897":2,"17898":2,"17899":5,"17900":3,"17901":2,"17902":4,"17903":5,"17904":5,"17905":5,"17906":2,"17907":4,"17908":1,"17909":3,"17910":4,"17911":4,"17912":1,"17913":2,"17914":4,"17915":4,"17916":2,"17917":2,"17918":3,"17919":3,"17920":1,"17921":2,"17922":2,"17923":3,"17924":4,"17925":1,"17926":3,"17927":4,"17928":3,"17929":1,"17930":3,"17931":3,"17932":2,"17933":2,"17934":4,"17935":4,"17936":2,"17937":3,"17938":4,"17939":4,"17940":4,"17941":2,"17942":4,"17943":4,"17944":3,"17945":3,"17946":2,"17947":4,"17948":4,"17949":2,"17950":1,"17951":4,"17952":5,"17953":3,"17954":5,"17955":5,"17956":2,"17957":3,"17958":2,"17959":2,"17960":3,"17961":2,"17962":4,"17963":4,"17964":2,"17965":2,"17966":4,"17967":2,"17968":2,"17969":4,"17970":3,"17971":3,"17972":4,"17973":2,"17974":2,"17975":4,"17976":1,"17977":4,"17978":3,"17979":3,"17980":2,"17981":4,"17982":3,"17983":3,"17984":3,"17985":4,"17986":3,"17987":2,"17988":3,"17989":5,"17990":2,"17991":2,"17992":4,"17993":2,"17994":3,"17995":3,"17996":2,"17997":4,"17998":2,"17999":2,"18000":3,"18001":2,"18002":4,"18003":1,"18004":4,"18005":3,"18006":2,"18007":3,"18008":4,"18009":2,"18010":5,"18011":5,"18012":2,"18013":3,"18014":5,"18015":2,"18016":4,"18017":4,"18018":4,"18019":4,"18020":3,"18021":3,"18022":1,"18023":5,"18024":4,"18025":3,"18026":3,"18027":5,"18028":4,"18029":4,"18030":4,"18031":3,"18032":4,"18033":3,"18034":2,"18035":2,"18036":5,"18037":3,"18038":2,"18039":5,"18040":3,"18041":5,"18042":3,"18043":4,"18044":2,"18045":3,"18046":1,"18047":3,"18048":4,"18049":4,"18050":4,"18051":1,"18052":1,"18053":3,"18054":4,"18055":3,"18056":3,"18057":3,"18058":1,"18059":1,"18060":2,"18061":3,"18062":1,"18063":3,"18064":4,"18065":4,"18066":3,"18067":4,"18068":3,"18069":2,"18070":5,"18071":3,"18072":4,"18073":3,"18074":3,"18075":1,"18076":4,"18077":4,"18078":2,"18079":4,"18080":3,"18081":2,"18082":2,"18083":2,"18084":4,"18085":5,"18086":3,"18087":2,"18088":1,"18089":4,"18090":2,"18091":3,"18092":4,"18093":2,"18094":3,"18095":3,"18096":3,"18097":3,"18098":2,"18099":4,"18100":2,"18101":4,"18102":4,"18103":3,"18104":3,"18105":1,"18106":3,"18107":5,"18108":3,"18109":3,"18110":1,"18111":2,"18112":3,"18113":2,"18114":4,"18115":4,"18116":3,"18117":4,"18118":2,"18119":2,"18120":3,"18121":3,"18122":3,"18123":3,"18124":5,"18125":2,"18126":3,"18127":3,"18128":2,"18129":4,"18130":3,"18131":1,"18132":5,"18133":3,"18134":3,"18135":3,"18136":2,"18137":4,"18138":3,"18139":4,"18140":4,"18141":4,"18142":4,"18143":4,"18144":3,"18145":2,"18146":1,"18147":5,"18148":2,"18149":3,"18150":4,"18151":3,"18152":3,"18153":4,"18154":4,"18155":4,"18156":2,"18157":4,"18158":3,"18159":3,"18160":2,"18161":4,"18162":4,"18163":3,"18164":3,"18165":2,"18166":1,"18167":2,"18168":3,"18169":5,"18170":3,"18171":3,"18172":5,"18173":2,"18174":3,"18175":1,"18176":2,"18177":3,"18178":3,"18179":5,"18180":2,"18181":3,"18182":1,"18183":1,"18184":3,"18185":5,"18186":2,"18187":3,"18188":3,"18189":4,"18190":5,"18191":4,"18192":5,"18193":4,"18194":1,"18195":3,"18196":1,"18197":1,"18198":4,"18199":4,"18200":3,"18201":1,"18202":2,"18203":1,"18204":2,"18205":3,"18206":3,"18207":2,"18208":4,"18209":2,"18210":3,"18211":4,"18212":3,"18213":3,"18214":5,"18215":1,"18216":4,"18217":4,"18218":3,"18219":4,"18220":3,"18221":4,"18222":5,"18223":4,"18224":2,"18225":3,"18226":2,"18227":3,"18228":4,"18229":3,"18230":2,"18231":5,"18232":3,"18233":3,"18234":3,"18235":2,"18236":3,"18237":3,"18238":3,"18239":1,"18240":3,"18241":4,"18242":3,"18243":3,"18244":3,"18245":3,"18246":5,"18247":4,"18248":2,"18249":4,"18250":3,"18251":2,"18252":5,"18253":1,"18254":3,"18255":4,"18256":4,"18257":4,"18258":2,"18259":2,"18260":4,"18261":4,"18262":3,"18263":1,"18264":3,"18265":2,"18266":1,"18267":2,"18268":3,"18269":2,"18270":3,"18271":3,"18272":3,"18273":5,"18274":1,"18275":5,"18276":5,"18277":4,"18278":4,"18279":3,"18280":2,"18281":4,"18282":4,"18283":2,"18284":5,"18285":3,"18286":2,"18287":1,"18288":1,"18289":5,"18290":3,"18291":4,"18292":3,"18293":3,"18294":5,"18295":3,"18296":1,"18297":2,"18298":3,"18299":4,"18300":1,"18301":2,"18302":2,"18303":2,"18304":2,"18305":4,"18306":3,"18307":4,"18308":3,"18309":4,"18310":2,"18311":3,"18312":4,"18313":5,"18314":1,"18315":1,"18316":3,"18317":2,"18318":2,"18319":4,"18320":4,"18321":3,"18322":3,"18323":3,"18324":4,"18325":2,"18326":3,"18327":4,"18328":3,"18329":1,"18330":2,"18331":1,"18332":4,"18333":5,"18334":5,"18335":3,"18336":4,"18337":4,"18338":2,"18339":4,"18340":2,"18341":4,"18342":3,"18343":4,"18344":2,"18345":5,"18346":1,"18347":3,"18348":3,"18349":3,"18350":4,"18351":5,"18352":4,"18353":4,"18354":4,"18355":4,"18356":3,"18357":4,"18358":2,"18359":3,"18360":3,"18361":4,"18362":2,"18363":3,"18364":5,"18365":1,"18366":2,"18367":3,"18368":3,"18369":5,"18370":3,"18371":3,"18372":3,"18373":3,"18374":2,"18375":3,"18376":3,"18377":5,"18378":2,"18379":4,"18380":5,"18381":3,"18382":2,"18383":4,"18384":3,"18385":4,"18386":3,"18387":2,"18388":4,"18389":4,"18390":3,"18391":3,"18392":3,"18393":3,"18394":2,"18395":2,"18396":3,"18397":2,"18398":2,"18399":2,"18400":3,"18401":1,"18402":3,"18403":5,"18404":2,"18405":3,"18406":3,"18407":2,"18408":4,"18409":3,"18410":2,"18411":1,"18412":2,"18413":2,"18414":1,"18415":3,"18416":1,"18417":4,"18418":4,"18419":1,"18420":2,"18421":3,"18422":3,"18423":4,"18424":1,"18425":2,"18426":4,"18427":1,"18428":3,"18429":3,"18430":1,"18431":2,"18432":4,"18433":1,"18434":4,"18435":5,"18436":3,"18437":2,"18438":1,"18439":1,"18440":4,"18441":2,"18442":2,"18443":4,"18444":5,"18445":4,"18446":5,"18447":5,"18448":3,"18449":1,"18450":4,"18451":2,"18452":2,"18453":3,"18454":2,"18455":2,"18456":3,"18457":4,"18458":2,"18459":3,"18460":2,"18461":1,"18462":5,"18463":2,"18464":2,"18465":2,"18466":3,"18467":3,"18468":3,"18469":3,"18470":3,"18471":2,"18472":2,"18473":3,"18474":3,"18475":3,"18476":4,"18477":4,"18478":3,"18479":2,"18480":5,"18481":4,"18482":2,"18483":3,"18484":1,"18485":3,"18486":1,"18487":2,"18488":4,"18489":4,"18490":4,"18491":4,"18492":3,"18493":2,"18494":3,"18495":1,"18496":3,"18497":4,"18498":2,"18499":4,"18500":3,"18501":4,"18502":4,"18503":4,"18504":2,"18505":3,"18506":4,"18507":3,"18508":5,"18509":4,"18510":2,"18511":3,"18512":3,"18513":1,"18514":4,"18515":4,"18516":2,"18517":2,"18518":3,"18519":3,"18520":4,"18521":5,"18522":5,"18523":3,"18524":3,"18525":5,"18526":4,"18527":4,"18528":3,"18529":3,"18530":3,"18531":3,"18532":1,"18533":3,"18534":2,"18535":2,"18536":4,"18537":5,"18538":5,"18539":2,"18540":4,"18541":4,"18542":3,"18543":2,"18544":2,"18545":3,"18546":3,"18547":4,"18548":4,"18549":5,"18550":1,"18551":2,"18552":4,"18553":3,"18554":4,"18555":4,"18556":4,"18557":3,"18558":3,"18559":2,"18560":3,"18561":2,"18562":3,"18563":3,"18564":2,"18565":1,"18566":1,"18567":3,"18568":4,"18569":1,"18570":4,"18571":2,"18572":4,"18573":5,"18574":2,"18575":4,"18576":1,"18577":2,"18578":3,"18579":2,"18580":3,"18581":2,"18582":2,"18583":2,"18584":1,"18585":1,"18586":1,"18587":4,"18588":3,"18589":5,"18590":2,"18591":2,"18592":3,"18593":3,"18594":3,"18595":2,"18596":4,"18597":3,"18598":3,"18599":2,"18600":3,"18601":3,"18602":3,"18603":4,"18604":3,"18605":2,"18606":3,"18607":2,"18608":1,"18609":2,"18610":1,"18611":3,"18612":4,"18613":4,"18614":4,"18615":4,"18616":2,"18617":3,"18618":2,"18619":5,"18620":2,"18621":5,"18622":2,"18623":4,"18624":3,"18625":3,"18626":3,"18627":2,"18628":2,"18629":3,"18630":3,"18631":4,"18632":3,"18633":1,"18634":3,"18635":2,"18636":3,"18637":3,"18638":4,"18639":1,"18640":4,"18641":3,"18642":2,"18643":4,"18644":2,"18645":4,"18646":2,"18647":2,"18648":3,"18649":2,"18650":1,"18651":3,"18652":3,"18653":4,"18654":4,"18655":3,"18656":1,"18657":5,"18658":3,"18659":3,"18660":4,"18661":2,"18662":4,"18663":2,"18664":5,"18665":1,"18666":1,"18667":3,"18668":1,"18669":1,"18670":5,"18671":2,"18672":4,"18673":3,"18674":4,"18675":3,"18676":3,"18677":2,"18678":3,"18679":3,"18680":3,"18681":3,"18682":2,"18683":2,"18684":3,"18685":5,"18686":3,"18687":4,"18688":5,"18689":1,"18690":2,"18691":2,"18692":1,"18693":1,"18694":4,"18695":2,"18696":3,"18697":5,"18698":3,"18699":3,"18700":4,"18701":3,"18702":4,"18703":1,"18704":1,"18705":3,"18706":1,"18707":4,"18708":5,"18709":1,"18710":3,"18711":1,"18712":3,"18713":3,"18714":2,"18715":4,"18716":2,"18717":5,"18718":3,"18719":2,"18720":2,"18721":1,"18722":3,"18723":3,"18724":4,"18725":2,"18726":2,"18727":3,"18728":4,"18729":2,"18730":2,"18731":5,"18732":3,"18733":5,"18734":1,"18735":4,"18736":2,"18737":3,"18738":3,"18739":1,"18740":4,"18741":4,"18742":2,"18743":3,"18744":2,"18745":5,"18746":1,"18747":3,"18748":2,"18749":3,"18750":4,"18751":3,"18752":4,"18753":3,"18754":2,"18755":3,"18756":1,"18757":4,"18758":5,"18759":1,"18760":2,"18761":3,"18762":4,"18763":2,"18764":3,"18765":4,"18766":2,"18767":3,"18768":4,"18769":2,"18770":1,"18771":5,"18772":2,"18773":4,"18774":2,"18775":4,"18776":2,"18777":1,"18778":3,"18779":2,"18780":3,"18781":3,"18782":4,"18783":4,"18784":5,"18785":1,"18786":3,"18787":3,"18788":2,"18789":3,"18790":1,"18791":4,"18792":3,"18793":5,"18794":5,"18795":3,"18796":4,"18797":3,"18798":4,"18799":3,"18800":3,"18801":3,"18802":3,"18803":1,"18804":3,"18805":2,"18806":3,"18807":4,"18808":3,"18809":5,"18810":2,"18811":2,"18812":4,"18813":2,"18814":4,"18815":2,"18816":3,"18817":2,"18818":3,"18819":3,"18820":4,"18821":4,"18822":3,"18823":2,"18824":2,"18825":5,"18826":3,"18827":1,"18828":3,"18829":4,"18830":3,"18831":3,"18832":3,"18833":3,"18834":1,"18835":4,"18836":1,"18837":1,"18838":4,"18839":4,"18840":4,"18841":2,"18842":4,"18843":3,"18844":2,"18845":1,"18846":5,"18847":3,"18848":3,"18849":5,"18850":3,"18851":3,"18852":2,"18853":1,"18854":3,"18855":3,"18856":2,"18857":4,"18858":5,"18859":2,"18860":4,"18861":3,"18862":2,"18863":3,"18864":3,"18865":1,"18866":4,"18867":4,"18868":2,"18869":3,"18870":1,"18871":4,"18872":4,"18873":3,"18874":2,"18875":5,"18876":5,"18877":5,"18878":4,"18879":4,"18880":2,"18881":3,"18882":4,"18883":1,"18884":4,"18885":3,"18886":4,"18887":2,"18888":3,"18889":3,"18890":4,"18891":2,"18892":3,"18893":3,"18894":4,"18895":1,"18896":5,"18897":3,"18898":3,"18899":4,"18900":3,"18901":3,"18902":2,"18903":4,"18904":3,"18905":3,"18906":2,"18907":2,"18908":2,"18909":4,"18910":4,"18911":1,"18912":2,"18913":4,"18914":3,"18915":2,"18916":2,"18917":3,"18918":3,"18919":3,"18920":4,"18921":3,"18922":4,"18923":4,"18924":2,"18925":4,"18926":3,"18927":4,"18928":3,"18929":3,"18930":1,"18931":2,"18932":3,"18933":4,"18934":1,"18935":1,"18936":3,"18937":3,"18938":4,"18939":4,"18940":3,"18941":3,"18942":3,"18943":2,"18944":2,"18945":2,"18946":3,"18947":4,"18948":5,"18949":3,"18950":3,"18951":5,"18952":3,"18953":3,"18954":3,"18955":4,"18956":3,"18957":2,"18958":2,"18959":4,"18960":5,"18961":5,"18962":4,"18963":2,"18964":3,"18965":3,"18966":2,"18967":2,"18968":3,"18969":4,"18970":4,"18971":1,"18972":1,"18973":1,"18974":4,"18975":3,"18976":3,"18977":5,"18978":5,"18979":1,"18980":3,"18981":2,"18982":2,"18983":4,"18984":2,"18985":4,"18986":4,"18987":4,"18988":4,"18989":4,"18990":2,"18991":3,"18992":3,"18993":4,"18994":4,"18995":3,"18996":4,"18997":2,"18998":5,"18999":2,"19000":4,"19001":5,"19002":3,"19003":2,"19004":4,"19005":4,"19006":4,"19007":1,"19008":3,"19009":1,"19010":3,"19011":3,"19012":3,"19013":2,"19014":3,"19015":4,"19016":1,"19017":3,"19018":3,"19019":5,"19020":2,"19021":3,"19022":3,"19023":2,"19024":1,"19025":3,"19026":2,"19027":5,"19028":3,"19029":3,"19030":4,"19031":2,"19032":2,"19033":2,"19034":5,"19035":3,"19036":3,"19037":3,"19038":3,"19039":3,"19040":4,"19041":4,"19042":3,"19043":2,"19044":3,"19045":1,"19046":3,"19047":5,"19048":4,"19049":1,"19050":4,"19051":4,"19052":1,"19053":3,"19054":3,"19055":2,"19056":4,"19057":4,"19058":1,"19059":4,"19060":2,"19061":2,"19062":2,"19063":1,"19064":2,"19065":3,"19066":1,"19067":2,"19068":3,"19069":4,"19070":3,"19071":4,"19072":4,"19073":5,"19074":2,"19075":2,"19076":3,"19077":4,"19078":2,"19079":3,"19080":1,"19081":3,"19082":3,"19083":2,"19084":3,"19085":2,"19086":4,"19087":4,"19088":3,"19089":1,"19090":2,"19091":4,"19092":3,"19093":2,"19094":3,"19095":2,"19096":3,"19097":3,"19098":2,"19099":3,"19100":2,"19101":4,"19102":2,"19103":3,"19104":3,"19105":2,"19106":3,"19107":2,"19108":2,"19109":3,"19110":1,"19111":4,"19112":1,"19113":4,"19114":2,"19115":3,"19116":3,"19117":3,"19118":5,"19119":2,"19120":2,"19121":2,"19122":2,"19123":4,"19124":5,"19125":3,"19126":4,"19127":1,"19128":3,"19129":4,"19130":4,"19131":3,"19132":4,"19133":3,"19134":3,"19135":3,"19136":3,"19137":2,"19138":3,"19139":2,"19140":3,"19141":3,"19142":3,"19143":5,"19144":4,"19145":3,"19146":2,"19147":2,"19148":2,"19149":2,"19150":3,"19151":5,"19152":5,"19153":3,"19154":2,"19155":4,"19156":5,"19157":3,"19158":5,"19159":3,"19160":2,"19161":3,"19162":3,"19163":5,"19164":4,"19165":4,"19166":3,"19167":3,"19168":3,"19169":3,"19170":4,"19171":4,"19172":3,"19173":2,"19174":3,"19175":5,"19176":3,"19177":1,"19178":2,"19179":3,"19180":2,"19181":2,"19182":2,"19183":4,"19184":3,"19185":4,"19186":3,"19187":4,"19188":2,"19189":4,"19190":4,"19191":2,"19192":3,"19193":4,"19194":2,"19195":2,"19196":3,"19197":3,"19198":5,"19199":2,"19200":5,"19201":5,"19202":3,"19203":4,"19204":5,"19205":4,"19206":4,"19207":4,"19208":2,"19209":4,"19210":2,"19211":2,"19212":2,"19213":3,"19214":3,"19215":3,"19216":1,"19217":1,"19218":2,"19219":5,"19220":4,"19221":4,"19222":4,"19223":4,"19224":2,"19225":4,"19226":3,"19227":4,"19228":2,"19229":1,"19230":4,"19231":3,"19232":3,"19233":3,"19234":3,"19235":2,"19236":4,"19237":3,"19238":3,"19239":3,"19240":3,"19241":4,"19242":2,"19243":3,"19244":3,"19245":3,"19246":2,"19247":4,"19248":4,"19249":3,"19250":2,"19251":2,"19252":4,"19253":2,"19254":3,"19255":5,"19256":3,"19257":4,"19258":3,"19259":2,"19260":3,"19261":1,"19262":3,"19263":5,"19264":2,"19265":3,"19266":3,"19267":4,"19268":1,"19269":3,"19270":3,"19271":1,"19272":3,"19273":4,"19274":4,"19275":2,"19276":2,"19277":2,"19278":2,"19279":5,"19280":2,"19281":5,"19282":2,"19283":3,"19284":4,"19285":4,"19286":3,"19287":3,"19288":2,"19289":3,"19290":2,"19291":4,"19292":2,"19293":5,"19294":3,"19295":3,"19296":4,"19297":1,"19298":1,"19299":2,"19300":3,"19301":1,"19302":5,"19303":3,"19304":1,"19305":2,"19306":3,"19307":3,"19308":3,"19309":3,"19310":4,"19311":4,"19312":1,"19313":3,"19314":1,"19315":1,"19316":4,"19317":5,"19318":1,"19319":2,"19320":4,"19321":2,"19322":4,"19323":1,"19324":4,"19325":4,"19326":3,"19327":2,"19328":5,"19329":3,"19330":3,"19331":2,"19332":4,"19333":4,"19334":4,"19335":2,"19336":1,"19337":3,"19338":2,"19339":3,"19340":3,"19341":3,"19342":4,"19343":2,"19344":3,"19345":2,"19346":1,"19347":3,"19348":4,"19349":3,"19350":3,"19351":4,"19352":5,"19353":3,"19354":3,"19355":1,"19356":2,"19357":2,"19358":3,"19359":1,"19360":3,"19361":3,"19362":4,"19363":1,"19364":1,"19365":5,"19366":3,"19367":5,"19368":1,"19369":3,"19370":4,"19371":2,"19372":2,"19373":3,"19374":5,"19375":3,"19376":5,"19377":3,"19378":5,"19379":3,"19380":4,"19381":3,"19382":3,"19383":2,"19384":2,"19385":1,"19386":2,"19387":3,"19388":4,"19389":5,"19390":3,"19391":3,"19392":3,"19393":3,"19394":4,"19395":4,"19396":4,"19397":3,"19398":1,"19399":4,"19400":4,"19401":2,"19402":3,"19403":4,"19404":2,"19405":3,"19406":4,"19407":4,"19408":4,"19409":3,"19410":3,"19411":1,"19412":3,"19413":2,"19414":4,"19415":2,"19416":3,"19417":2,"19418":4,"19419":4,"19420":3,"19421":3,"19422":2,"19423":3,"19424":4,"19425":5,"19426":5,"19427":3,"19428":4,"19429":2,"19430":3,"19431":2,"19432":3,"19433":3,"19434":4,"19435":4,"19436":1,"19437":5,"19438":4,"19439":3,"19440":3,"19441":4,"19442":4,"19443":3,"19444":4,"19445":5,"19446":3,"19447":2,"19448":3,"19449":3,"19450":3,"19451":2,"19452":3,"19453":3,"19454":2,"19455":3,"19456":4,"19457":4,"19458":1,"19459":2,"19460":4,"19461":3,"19462":4,"19463":3,"19464":5,"19465":3,"19466":2,"19467":2,"19468":4,"19469":2,"19470":3,"19471":3,"19472":4,"19473":2,"19474":1,"19475":3,"19476":5,"19477":3,"19478":3,"19479":2,"19480":3,"19481":3,"19482":3,"19483":4,"19484":4,"19485":4,"19486":2,"19487":4,"19488":4,"19489":3,"19490":3,"19491":4,"19492":1,"19493":4,"19494":2,"19495":2,"19496":2,"19497":3,"19498":2,"19499":3,"19500":1,"19501":2,"19502":2,"19503":3,"19504":1,"19505":3,"19506":3,"19507":2,"19508":5,"19509":2,"19510":1,"19511":3,"19512":1,"19513":1,"19514":3,"19515":2,"19516":3,"19517":3,"19518":3,"19519":5,"19520":1,"19521":4,"19522":2,"19523":3,"19524":4,"19525":1,"19526":4,"19527":4,"19528":3,"19529":5,"19530":3,"19531":5,"19532":2,"19533":4,"19534":1,"19535":4,"19536":1,"19537":2,"19538":3,"19539":4,"19540":3,"19541":4,"19542":4,"19543":4,"19544":3,"19545":3,"19546":2,"19547":4,"19548":4,"19549":3,"19550":2,"19551":2,"19552":5,"19553":3,"19554":4,"19555":3,"19556":4,"19557":3,"19558":3,"19559":2,"19560":3,"19561":2,"19562":5,"19563":2,"19564":4,"19565":2,"19566":4,"19567":3,"19568":4,"19569":5,"19570":3,"19571":4,"19572":5,"19573":3,"19574":4,"19575":3,"19576":3,"19577":4,"19578":3,"19579":5,"19580":3,"19581":3,"19582":1,"19583":3,"19584":4,"19585":4,"19586":3,"19587":1,"19588":3,"19589":2,"19590":3,"19591":3,"19592":1,"19593":1,"19594":3,"19595":1,"19596":4,"19597":4,"19598":3,"19599":2,"19600":3,"19601":4,"19602":3,"19603":4,"19604":3,"19605":3,"19606":1,"19607":3,"19608":4,"19609":4,"19610":3,"19611":4,"19612":2,"19613":3,"19614":3,"19615":3,"19616":2,"19617":2,"19618":3,"19619":4,"19620":3,"19621":3,"19622":3,"19623":3,"19624":2,"19625":3,"19626":3,"19627":4,"19628":3,"19629":5,"19630":3,"19631":1,"19632":2,"19633":3,"19634":3,"19635":3,"19636":3,"19637":3,"19638":4,"19639":3,"19640":2,"19641":3,"19642":3,"19643":3,"19644":3,"19645":3,"19646":4,"19647":4,"19648":3,"19649":4,"19650":4,"19651":3,"19652":3,"19653":3,"19654":5,"19655":3,"19656":3,"19657":2,"19658":2,"19659":2,"19660":1,"19661":4,"19662":4,"19663":2,"19664":4,"19665":3,"19666":4,"19667":1,"19668":4,"19669":2,"19670":4,"19671":4,"19672":2,"19673":4,"19674":3,"19675":2,"19676":2,"19677":1,"19678":2,"19679":3,"19680":3,"19681":4,"19682":3,"19683":5,"19684":2,"19685":2,"19686":4,"19687":2,"19688":4,"19689":5,"19690":5,"19691":3,"19692":4,"19693":4,"19694":4,"19695":3,"19696":3,"19697":2,"19698":3,"19699":4,"19700":3,"19701":2,"19702":3,"19703":3,"19704":3,"19705":3,"19706":3,"19707":4,"19708":1,"19709":3,"19710":4,"19711":1,"19712":3,"19713":2,"19714":3,"19715":3,"19716":4,"19717":2,"19718":3,"19719":1,"19720":3,"19721":5,"19722":5,"19723":4,"19724":3,"19725":4,"19726":4,"19727":4,"19728":4,"19729":4,"19730":5,"19731":3,"19732":3,"19733":5,"19734":2,"19735":4,"19736":5,"19737":4,"19738":2,"19739":3,"19740":4,"19741":3,"19742":3,"19743":3,"19744":4,"19745":4,"19746":1,"19747":3,"19748":4,"19749":3,"19750":3,"19751":1,"19752":3,"19753":4,"19754":3,"19755":3,"19756":2,"19757":4,"19758":1,"19759":3,"19760":5,"19761":1,"19762":2,"19763":5,"19764":4,"19765":2,"19766":3,"19767":3,"19768":5,"19769":2,"19770":3,"19771":3,"19772":2,"19773":3,"19774":5,"19775":2,"19776":3,"19777":3,"19778":3,"19779":3,"19780":3,"19781":3,"19782":5,"19783":4,"19784":2,"19785":2,"19786":2,"19787":2,"19788":4,"19789":4,"19790":5,"19791":1,"19792":4,"19793":5,"19794":4,"19795":3,"19796":2,"19797":2,"19798":3,"19799":2,"19800":3,"19801":2,"19802":5,"19803":5,"19804":4,"19805":5,"19806":3,"19807":2,"19808":3,"19809":4,"19810":3,"19811":3,"19812":2,"19813":3,"19814":4,"19815":3,"19816":3,"19817":1,"19818":3,"19819":3,"19820":2,"19821":2,"19822":3,"19823":3,"19824":3,"19825":2,"19826":3,"19827":4,"19828":5,"19829":3,"19830":3,"19831":4,"19832":5,"19833":4,"19834":3,"19835":4,"19836":4,"19837":1,"19838":2,"19839":3,"19840":2,"19841":3,"19842":3,"19843":4,"19844":3,"19845":2,"19846":3,"19847":2,"19848":4,"19849":1,"19850":3,"19851":4,"19852":2,"19853":4,"19854":4,"19855":4,"19856":3,"19857":2,"19858":1,"19859":5,"19860":3,"19861":5,"19862":4,"19863":4,"19864":1,"19865":2,"19866":1,"19867":1,"19868":1,"19869":2,"19870":3,"19871":4,"19872":2,"19873":4,"19874":3,"19875":5,"19876":3,"19877":3,"19878":3,"19879":4,"19880":2,"19881":2,"19882":2,"19883":2,"19884":1,"19885":2,"19886":2,"19887":3,"19888":1,"19889":4,"19890":4,"19891":3,"19892":1,"19893":3,"19894":3,"19895":4,"19896":5,"19897":1,"19898":2,"19899":4,"19900":1,"19901":3,"19902":3,"19903":5,"19904":2,"19905":5,"19906":3,"19907":4,"19908":2,"19909":5,"19910":3,"19911":2,"19912":5,"19913":5,"19914":4,"19915":3,"19916":3,"19917":2,"19918":4,"19919":2,"19920":4,"19921":3,"19922":4,"19923":2,"19924":2,"19925":3,"19926":3,"19927":1,"19928":5,"19929":3,"19930":1,"19931":3,"19932":3,"19933":1,"19934":1,"19935":1,"19936":4,"19937":3,"19938":3,"19939":1,"19940":1,"19941":4,"19942":3,"19943":2,"19944":2,"19945":4,"19946":4,"19947":1,"19948":3,"19949":1,"19950":2,"19951":4,"19952":1,"19953":2,"19954":1,"19955":3,"19956":2,"19957":3,"19958":4,"19959":2,"19960":2,"19961":3,"19962":3,"19963":3,"19964":4,"19965":2,"19966":4,"19967":3,"19968":4,"19969":4,"19970":2,"19971":3,"19972":2,"19973":3,"19974":2,"19975":2,"19976":3,"19977":4,"19978":2,"19979":2,"19980":4,"19981":2,"19982":2,"19983":2,"19984":3,"19985":2,"19986":4,"19987":4,"19988":3,"19989":4,"19990":2,"19991":4,"19992":4,"19993":3,"19994":5,"19995":2,"19996":3,"19997":4,"19998":1,"19999":4,"20000":2,"20001":3,"20002":3,"20003":4,"20004":2,"20005":4,"20006":3,"20007":4,"20008":5,"20009":3,"20010":3,"20011":4,"20012":2,"20013":3,"20014":3,"20015":3,"20016":5,"20017":4,"20018":4,"20019":4,"20020":1,"20021":3,"20022":4,"20023":2,"20024":2,"20025":2,"20026":4,"20027":4,"20028":3,"20029":4,"20030":3,"20031":2,"20032":3,"20033":3,"20034":4,"20035":1,"20036":1,"20037":5,"20038":4,"20039":4,"20040":1,"20041":3,"20042":2,"20043":3,"20044":4,"20045":3,"20046":4,"20047":3,"20048":4,"20049":3,"20050":3,"20051":2,"20052":2,"20053":4,"20054":3,"20055":5,"20056":1,"20057":2,"20058":2,"20059":2,"20060":4,"20061":4,"20062":1,"20063":2,"20064":4,"20065":2,"20066":4,"20067":2,"20068":1,"20069":2,"20070":3,"20071":4,"20072":3,"20073":3,"20074":4,"20075":4,"20076":3,"20077":3,"20078":3,"20079":3,"20080":3,"20081":1,"20082":3,"20083":1,"20084":4,"20085":3,"20086":1,"20087":4,"20088":3,"20089":2,"20090":2,"20091":3,"20092":1,"20093":3,"20094":3,"20095":2,"20096":3,"20097":3,"20098":3,"20099":3,"20100":3,"20101":3,"20102":4,"20103":1,"20104":2,"20105":3,"20106":1,"20107":1,"20108":3,"20109":4,"20110":3,"20111":3,"20112":3,"20113":1,"20114":3,"20115":4,"20116":2,"20117":4,"20118":2,"20119":2,"20120":3,"20121":3,"20122":4,"20123":2,"20124":2,"20125":1,"20126":4,"20127":3,"20128":3,"20129":3,"20130":4,"20131":4,"20132":2,"20133":1,"20134":4,"20135":1,"20136":4,"20137":1,"20138":3,"20139":2,"20140":4,"20141":1,"20142":4,"20143":3,"20144":4,"20145":3,"20146":3,"20147":3,"20148":3,"20149":2,"20150":3,"20151":4,"20152":1,"20153":2,"20154":3,"20155":3,"20156":1,"20157":3,"20158":2,"20159":2,"20160":5,"20161":3,"20162":3,"20163":2,"20164":3,"20165":2,"20166":4,"20167":3,"20168":1,"20169":3,"20170":3,"20171":3,"20172":4,"20173":3,"20174":2,"20175":3,"20176":4,"20177":4,"20178":4,"20179":2,"20180":5,"20181":4,"20182":3,"20183":4,"20184":2,"20185":3,"20186":3,"20187":3,"20188":4,"20189":3,"20190":1,"20191":2,"20192":2,"20193":1,"20194":5,"20195":3,"20196":4,"20197":3,"20198":4,"20199":2,"20200":3,"20201":4,"20202":2,"20203":3,"20204":3,"20205":4,"20206":5,"20207":5,"20208":1,"20209":2,"20210":3,"20211":4,"20212":4,"20213":2,"20214":3,"20215":2,"20216":2,"20217":3,"20218":3,"20219":3,"20220":3,"20221":4,"20222":4,"20223":4,"20224":3,"20225":3,"20226":3,"20227":2,"20228":3,"20229":3,"20230":5,"20231":3,"20232":2,"20233":3,"20234":2,"20235":1,"20236":4,"20237":4,"20238":2,"20239":3,"20240":1,"20241":2,"20242":4,"20243":4,"20244":4,"20245":3,"20246":4,"20247":1,"20248":4,"20249":1,"20250":2,"20251":4,"20252":4,"20253":3,"20254":3,"20255":1,"20256":4,"20257":3,"20258":3,"20259":2,"20260":3,"20261":3,"20262":4,"20263":3,"20264":3,"20265":3,"20266":4,"20267":3,"20268":3,"20269":3,"20270":3,"20271":4,"20272":3,"20273":1,"20274":3,"20275":3,"20276":4,"20277":2,"20278":3,"20279":4,"20280":3,"20281":2,"20282":5,"20283":5,"20284":2,"20285":3,"20286":2,"20287":5,"20288":3,"20289":4,"20290":3,"20291":3,"20292":2,"20293":4,"20294":4,"20295":5,"20296":4,"20297":5,"20298":3,"20299":4,"20300":3,"20301":3,"20302":4,"20303":3,"20304":2,"20305":3,"20306":3,"20307":4,"20308":3,"20309":4,"20310":4,"20311":3,"20312":3,"20313":1,"20314":5,"20315":4,"20316":3,"20317":4,"20318":2,"20319":4,"20320":1,"20321":5,"20322":1,"20323":2,"20324":3,"20325":4,"20326":4,"20327":4,"20328":4,"20329":2,"20330":3,"20331":4,"20332":4,"20333":3,"20334":3,"20335":4,"20336":3,"20337":5,"20338":4,"20339":3,"20340":2,"20341":3,"20342":2,"20343":3,"20344":2,"20345":3,"20346":3,"20347":5,"20348":3,"20349":2,"20350":4,"20351":3,"20352":3,"20353":2,"20354":2,"20355":1,"20356":3,"20357":2,"20358":2,"20359":4,"20360":3,"20361":4,"20362":1,"20363":5,"20364":1,"20365":3,"20366":3,"20367":3,"20368":3,"20369":3,"20370":4,"20371":2,"20372":4,"20373":5,"20374":5,"20375":4,"20376":4,"20377":3,"20378":3,"20379":3,"20380":4,"20381":3,"20382":3,"20383":3,"20384":3,"20385":2,"20386":4,"20387":3,"20388":3,"20389":3,"20390":4,"20391":3,"20392":3,"20393":3,"20394":1,"20395":2,"20396":1,"20397":4,"20398":1,"20399":3,"20400":4,"20401":3,"20402":2,"20403":3,"20404":3,"20405":3,"20406":3,"20407":3,"20408":1,"20409":3,"20410":2,"20411":2,"20412":2,"20413":4,"20414":5,"20415":5,"20416":3,"20417":3,"20418":3,"20419":4,"20420":1,"20421":3,"20422":3,"20423":1,"20424":3,"20425":2,"20426":2,"20427":2,"20428":2,"20429":1,"20430":2,"20431":5,"20432":3,"20433":3,"20434":4,"20435":2,"20436":1,"20437":4,"20438":2,"20439":4,"20440":4,"20441":4,"20442":2,"20443":4,"20444":4,"20445":5,"20446":3,"20447":4,"20448":5,"20449":4,"20450":4,"20451":4,"20452":3,"20453":3,"20454":2,"20455":3,"20456":2,"20457":2,"20458":3,"20459":2,"20460":3,"20461":3,"20462":5,"20463":3,"20464":4,"20465":4,"20466":2,"20467":1,"20468":1,"20469":2,"20470":4,"20471":3,"20472":3,"20473":2,"20474":2,"20475":3,"20476":2,"20477":3,"20478":1,"20479":3,"20480":3,"20481":3,"20482":5,"20483":3,"20484":4,"20485":4,"20486":3,"20487":3,"20488":4,"20489":2,"20490":4,"20491":3,"20492":5,"20493":5,"20494":5,"20495":5,"20496":3,"20497":3,"20498":4,"20499":4,"20500":3,"20501":3,"20502":2,"20503":4,"20504":3,"20505":3,"20506":3,"20507":4,"20508":4,"20509":4,"20510":3,"20511":4,"20512":1,"20513":4,"20514":2,"20515":2,"20516":2,"20517":4,"20518":2,"20519":3,"20520":2,"20521":1,"20522":3,"20523":5,"20524":1,"20525":3,"20526":3,"20527":2,"20528":3,"20529":3,"20530":3,"20531":5,"20532":2,"20533":1,"20534":3,"20535":2,"20536":2,"20537":1,"20538":5,"20539":3,"20540":5,"20541":2,"20542":2,"20543":4,"20544":2,"20545":3,"20546":4,"20547":4,"20548":5,"20549":5,"20550":2,"20551":4,"20552":3,"20553":3,"20554":3,"20555":2,"20556":2,"20557":1,"20558":4,"20559":4,"20560":1,"20561":3,"20562":4,"20563":2,"20564":5,"20565":3,"20566":2,"20567":4,"20568":2,"20569":4,"20570":2,"20571":3,"20572":5,"20573":1,"20574":4,"20575":1,"20576":4,"20577":1,"20578":4,"20579":2,"20580":4,"20581":4,"20582":3,"20583":4,"20584":2,"20585":2,"20586":3,"20587":4,"20588":2,"20589":3,"20590":4,"20591":1,"20592":2,"20593":4,"20594":1,"20595":4,"20596":4,"20597":3,"20598":4,"20599":4,"20600":4,"20601":2,"20602":3,"20603":1,"20604":3,"20605":2,"20606":4,"20607":1,"20608":3,"20609":2,"20610":3,"20611":1,"20612":3,"20613":2,"20614":3,"20615":1,"20616":3,"20617":3,"20618":1,"20619":3,"20620":1,"20621":3,"20622":5,"20623":3,"20624":1,"20625":3,"20626":5,"20627":4,"20628":4,"20629":2,"20630":2,"20631":4,"20632":2,"20633":1,"20634":5,"20635":4,"20636":3,"20637":4,"20638":4,"20639":3,"20640":3,"20641":2,"20642":3,"20643":2,"20644":1,"20645":1,"20646":3,"20647":3,"20648":3,"20649":4,"20650":3,"20651":1,"20652":2,"20653":3,"20654":1,"20655":3,"20656":3,"20657":3,"20658":2,"20659":3,"20660":3,"20661":2,"20662":3,"20663":3,"20664":5,"20665":4,"20666":2,"20667":3,"20668":4,"20669":1,"20670":3,"20671":2,"20672":4,"20673":3,"20674":3,"20675":4,"20676":3,"20677":4,"20678":3,"20679":5,"20680":3,"20681":3,"20682":2,"20683":3,"20684":4,"20685":4,"20686":2,"20687":2,"20688":4,"20689":4,"20690":3,"20691":4,"20692":4,"20693":2,"20694":4,"20695":4,"20696":4,"20697":4,"20698":3,"20699":1,"20700":4,"20701":3,"20702":3,"20703":3,"20704":3,"20705":4,"20706":3,"20707":5,"20708":3,"20709":1,"20710":3,"20711":2,"20712":3,"20713":3,"20714":3,"20715":2,"20716":3,"20717":1,"20718":2,"20719":4,"20720":3,"20721":5,"20722":2,"20723":3,"20724":4,"20725":1,"20726":2,"20727":3,"20728":1,"20729":3,"20730":4,"20731":4,"20732":1,"20733":4,"20734":1,"20735":4,"20736":4,"20737":2,"20738":4,"20739":2,"20740":2,"20741":4,"20742":2,"20743":2,"20744":4,"20745":1,"20746":4,"20747":5,"20748":4,"20749":1,"20750":3,"20751":3,"20752":3,"20753":4,"20754":1,"20755":2,"20756":4,"20757":4,"20758":3,"20759":3,"20760":3,"20761":1,"20762":2,"20763":2,"20764":3,"20765":2,"20766":2,"20767":1,"20768":3,"20769":4,"20770":3,"20771":4,"20772":4,"20773":5,"20774":4,"20775":2,"20776":4,"20777":2,"20778":1,"20779":4,"20780":2,"20781":3,"20782":3,"20783":2,"20784":3,"20785":4,"20786":2,"20787":2,"20788":2,"20789":3,"20790":4,"20791":4,"20792":3,"20793":2,"20794":4,"20795":4,"20796":2,"20797":3,"20798":3,"20799":4,"20800":2,"20801":1,"20802":1,"20803":3,"20804":4,"20805":1,"20806":3,"20807":4,"20808":3,"20809":4,"20810":3,"20811":5,"20812":3,"20813":4,"20814":3,"20815":3,"20816":4,"20817":2,"20818":3,"20819":3,"20820":3,"20821":2,"20822":3,"20823":2,"20824":4,"20825":2,"20826":4,"20827":3,"20828":3,"20829":3,"20830":3,"20831":2,"20832":3,"20833":2,"20834":5,"20835":1,"20836":2,"20837":1,"20838":4,"20839":1,"20840":4,"20841":3,"20842":3,"20843":2,"20844":4,"20845":5,"20846":3,"20847":3,"20848":4,"20849":3,"20850":1,"20851":2,"20852":4,"20853":3,"20854":1,"20855":3,"20856":3,"20857":4,"20858":3,"20859":2,"20860":2,"20861":3,"20862":3,"20863":2,"20864":3,"20865":4,"20866":3,"20867":4,"20868":4,"20869":3,"20870":4,"20871":4,"20872":4,"20873":2,"20874":4,"20875":4,"20876":2,"20877":4,"20878":3,"20879":2,"20880":3,"20881":5,"20882":2,"20883":2,"20884":3,"20885":3,"20886":2,"20887":2,"20888":3,"20889":4,"20890":4,"20891":4,"20892":4,"20893":2,"20894":1,"20895":4,"20896":4,"20897":3,"20898":4,"20899":2,"20900":4,"20901":3,"20902":2,"20903":1,"20904":4,"20905":1,"20906":2,"20907":4,"20908":4,"20909":1,"20910":3,"20911":5,"20912":2,"20913":1,"20914":4,"20915":3,"20916":3,"20917":3,"20918":2,"20919":2,"20920":2,"20921":3,"20922":4,"20923":1,"20924":3,"20925":4,"20926":3,"20927":3,"20928":2,"20929":3,"20930":3,"20931":3,"20932":2,"20933":1,"20934":1,"20935":4,"20936":3,"20937":4,"20938":2,"20939":1,"20940":4,"20941":2,"20942":2,"20943":4,"20944":5,"20945":3,"20946":3,"20947":4,"20948":5,"20949":3,"20950":3,"20951":4,"20952":3,"20953":1,"20954":3,"20955":3,"20956":1,"20957":4,"20958":3,"20959":5,"20960":4,"20961":2,"20962":3,"20963":2,"20964":2,"20965":1,"20966":5,"20967":2,"20968":5,"20969":4,"20970":2,"20971":3,"20972":4,"20973":2,"20974":3,"20975":3,"20976":3,"20977":2,"20978":2,"20979":5,"20980":4,"20981":5,"20982":3,"20983":3,"20984":5,"20985":1,"20986":3,"20987":2,"20988":2,"20989":4,"20990":3,"20991":1,"20992":1,"20993":2,"20994":3,"20995":3,"20996":1,"20997":3,"20998":2,"20999":3,"21000":1,"21001":2,"21002":2,"21003":3,"21004":3,"21005":3,"21006":2,"21007":5,"21008":1,"21009":2,"21010":3,"21011":4,"21012":5,"21013":3,"21014":3,"21015":3,"21016":5,"21017":3,"21018":4,"21019":3,"21020":4,"21021":3,"21022":4,"21023":3,"21024":3,"21025":4,"21026":3,"21027":4,"21028":1,"21029":2,"21030":5,"21031":1,"21032":2,"21033":1,"21034":2,"21035":4,"21036":5,"21037":2,"21038":2,"21039":3,"21040":4,"21041":2,"21042":4,"21043":3,"21044":3,"21045":3,"21046":3,"21047":4,"21048":3,"21049":2,"21050":4,"21051":3,"21052":2,"21053":5,"21054":2,"21055":4,"21056":3,"21057":1,"21058":3,"21059":3,"21060":4,"21061":4,"21062":2,"21063":4,"21064":3,"21065":4,"21066":5,"21067":1,"21068":5,"21069":2,"21070":2,"21071":4,"21072":3,"21073":3,"21074":3,"21075":3,"21076":2,"21077":3,"21078":3,"21079":1,"21080":1,"21081":3,"21082":4,"21083":3,"21084":3,"21085":3,"21086":4,"21087":2,"21088":3,"21089":4,"21090":2,"21091":1,"21092":3,"21093":3,"21094":2,"21095":3,"21096":4,"21097":1,"21098":2,"21099":5,"21100":3,"21101":4,"21102":3,"21103":3,"21104":4,"21105":2,"21106":3,"21107":4,"21108":4,"21109":4,"21110":3,"21111":1,"21112":4,"21113":3,"21114":2,"21115":2,"21116":2,"21117":4,"21118":3,"21119":2,"21120":5,"21121":4,"21122":1,"21123":3,"21124":4,"21125":2,"21126":3,"21127":2,"21128":5,"21129":2,"21130":4,"21131":2,"21132":3,"21133":3,"21134":2,"21135":2,"21136":4,"21137":2,"21138":3,"21139":2,"21140":3,"21141":3,"21142":3,"21143":3,"21144":2,"21145":3,"21146":3,"21147":5,"21148":2,"21149":4,"21150":4,"21151":2,"21152":3,"21153":4,"21154":3,"21155":1,"21156":3,"21157":3,"21158":3,"21159":2,"21160":2,"21161":3,"21162":1,"21163":2,"21164":2,"21165":4,"21166":4,"21167":3,"21168":2,"21169":2,"21170":1,"21171":2,"21172":4,"21173":3,"21174":3,"21175":4,"21176":3,"21177":4,"21178":3,"21179":3,"21180":1,"21181":2,"21182":3,"21183":4,"21184":4,"21185":4,"21186":3,"21187":2,"21188":4,"21189":3,"21190":4,"21191":2,"21192":3,"21193":3,"21194":2,"21195":4,"21196":3,"21197":1,"21198":2,"21199":4,"21200":3,"21201":3,"21202":4,"21203":3,"21204":4,"21205":2,"21206":3,"21207":4,"21208":3,"21209":4,"21210":4,"21211":3,"21212":3,"21213":3,"21214":3,"21215":1,"21216":3,"21217":5,"21218":1,"21219":2,"21220":1,"21221":4,"21222":2,"21223":2,"21224":4,"21225":1,"21226":2,"21227":3,"21228":3,"21229":1,"21230":3,"21231":2,"21232":5,"21233":3,"21234":2,"21235":1,"21236":1,"21237":1,"21238":2,"21239":3,"21240":2,"21241":3,"21242":5,"21243":5,"21244":1,"21245":3,"21246":3,"21247":3,"21248":3,"21249":3,"21250":3,"21251":3,"21252":2,"21253":3,"21254":2,"21255":4,"21256":5,"21257":1,"21258":3,"21259":4,"21260":1,"21261":2,"21262":3,"21263":1,"21264":2,"21265":3,"21266":3,"21267":3,"21268":5,"21269":1,"21270":3,"21271":2,"21272":4,"21273":3,"21274":4,"21275":3,"21276":2,"21277":4,"21278":3,"21279":2,"21280":4,"21281":4,"21282":3,"21283":3,"21284":3,"21285":3,"21286":2,"21287":2,"21288":3,"21289":3,"21290":2,"21291":4,"21292":2,"21293":4,"21294":5,"21295":5,"21296":4,"21297":3,"21298":3,"21299":3,"21300":3,"21301":3,"21302":3,"21303":3,"21304":2,"21305":3,"21306":3,"21307":5,"21308":3,"21309":3,"21310":3,"21311":4,"21312":1,"21313":3,"21314":5,"21315":2,"21316":2,"21317":4,"21318":3,"21319":3,"21320":5,"21321":3,"21322":4,"21323":3,"21324":4,"21325":3,"21326":3,"21327":4,"21328":5,"21329":4,"21330":3,"21331":3,"21332":4,"21333":4,"21334":1,"21335":3,"21336":1,"21337":2,"21338":4,"21339":3,"21340":3,"21341":3,"21342":1,"21343":5,"21344":2,"21345":5,"21346":4,"21347":3,"21348":4,"21349":4,"21350":4,"21351":4,"21352":4,"21353":2,"21354":4,"21355":3,"21356":3,"21357":2,"21358":4,"21359":3,"21360":1,"21361":2,"21362":4,"21363":4,"21364":3,"21365":2,"21366":2,"21367":3,"21368":5,"21369":4,"21370":3,"21371":3,"21372":3,"21373":1,"21374":3,"21375":2,"21376":4,"21377":4,"21378":2,"21379":3,"21380":4,"21381":2,"21382":4,"21383":3,"21384":3,"21385":3,"21386":2,"21387":3,"21388":5,"21389":3,"21390":2,"21391":2,"21392":3,"21393":2,"21394":1,"21395":3,"21396":1,"21397":2,"21398":3,"21399":3,"21400":4,"21401":2,"21402":2,"21403":2,"21404":1,"21405":4,"21406":3,"21407":1,"21408":3,"21409":2,"21410":4,"21411":3,"21412":4,"21413":3,"21414":1,"21415":4,"21416":4,"21417":3,"21418":2,"21419":2,"21420":4,"21421":3,"21422":3,"21423":3,"21424":2,"21425":4,"21426":4,"21427":2,"21428":2,"21429":3,"21430":3,"21431":4,"21432":2,"21433":2,"21434":5,"21435":4,"21436":3,"21437":3,"21438":4,"21439":3,"21440":4,"21441":2,"21442":1,"21443":3,"21444":4,"21445":1,"21446":2,"21447":4,"21448":4,"21449":4,"21450":3,"21451":3,"21452":3,"21453":2,"21454":4,"21455":4,"21456":5,"21457":3,"21458":2,"21459":2,"21460":2,"21461":3,"21462":4,"21463":3,"21464":2,"21465":3,"21466":3,"21467":3,"21468":3,"21469":4,"21470":1,"21471":1,"21472":5,"21473":2,"21474":4,"21475":3,"21476":3,"21477":5,"21478":3,"21479":3,"21480":2,"21481":2,"21482":3,"21483":4,"21484":2,"21485":2,"21486":3,"21487":4,"21488":2,"21489":3,"21490":3,"21491":4,"21492":1,"21493":2,"21494":3,"21495":4,"21496":1,"21497":2,"21498":3,"21499":3,"21500":4,"21501":4,"21502":2,"21503":2,"21504":1,"21505":1,"21506":3,"21507":4,"21508":3,"21509":3,"21510":2,"21511":2,"21512":4,"21513":4,"21514":3,"21515":5,"21516":1,"21517":4,"21518":4,"21519":4,"21520":3,"21521":1,"21522":5,"21523":3,"21524":3,"21525":5,"21526":4,"21527":2,"21528":4,"21529":4,"21530":4,"21531":3,"21532":1,"21533":4,"21534":3,"21535":3,"21536":4,"21537":2,"21538":1,"21539":2,"21540":4,"21541":3,"21542":4,"21543":3,"21544":4,"21545":3,"21546":5,"21547":3,"21548":3,"21549":3,"21550":4,"21551":1,"21552":3,"21553":2,"21554":3,"21555":3,"21556":2,"21557":4,"21558":3,"21559":3,"21560":3,"21561":4,"21562":3,"21563":4,"21564":2,"21565":3,"21566":3,"21567":2,"21568":4,"21569":2,"21570":3,"21571":3,"21572":2,"21573":2,"21574":1,"21575":3,"21576":4,"21577":3,"21578":3,"21579":3,"21580":3,"21581":3,"21582":4,"21583":1,"21584":2,"21585":3,"21586":4,"21587":4,"21588":4,"21589":4,"21590":5,"21591":4,"21592":3,"21593":1,"21594":2,"21595":4,"21596":4,"21597":3,"21598":3,"21599":4,"21600":3,"21601":4,"21602":4,"21603":4,"21604":2,"21605":1,"21606":3,"21607":2,"21608":3,"21609":3,"21610":5,"21611":3,"21612":2,"21613":4,"21614":5,"21615":3,"21616":4,"21617":4,"21618":3,"21619":4,"21620":3,"21621":5,"21622":2,"21623":3,"21624":1,"21625":4,"21626":5,"21627":4,"21628":1,"21629":4,"21630":3,"21631":1,"21632":2,"21633":2,"21634":3,"21635":1,"21636":5,"21637":5,"21638":3,"21639":4,"21640":4,"21641":4,"21642":4,"21643":4,"21644":3,"21645":2,"21646":3,"21647":4,"21648":2,"21649":3,"21650":4,"21651":4,"21652":2,"21653":2,"21654":2,"21655":2,"21656":3,"21657":3,"21658":3,"21659":2,"21660":4,"21661":4,"21662":3,"21663":2,"21664":1,"21665":3,"21666":2,"21667":3,"21668":3,"21669":3,"21670":1,"21671":2,"21672":2,"21673":5,"21674":4,"21675":3,"21676":3,"21677":3,"21678":4,"21679":3,"21680":3,"21681":3,"21682":2,"21683":3,"21684":3,"21685":3,"21686":4,"21687":1,"21688":3,"21689":3,"21690":3,"21691":3,"21692":3,"21693":4,"21694":3,"21695":4,"21696":5,"21697":3,"21698":3,"21699":3,"21700":4,"21701":2,"21702":3,"21703":3,"21704":3,"21705":5,"21706":1,"21707":4,"21708":5,"21709":4,"21710":2,"21711":3,"21712":1,"21713":2,"21714":3,"21715":2,"21716":1,"21717":3,"21718":4,"21719":2,"21720":4,"21721":4,"21722":3,"21723":3,"21724":2,"21725":3,"21726":2,"21727":4,"21728":2,"21729":1,"21730":2,"21731":3,"21732":1,"21733":3,"21734":2,"21735":1,"21736":2,"21737":4,"21738":4,"21739":3,"21740":1,"21741":4,"21742":3,"21743":4,"21744":3,"21745":2,"21746":5,"21747":4,"21748":4,"21749":3,"21750":2,"21751":1,"21752":4,"21753":3,"21754":1,"21755":3,"21756":4,"21757":4,"21758":4,"21759":3,"21760":1,"21761":4,"21762":3,"21763":3,"21764":2,"21765":4,"21766":3,"21767":2,"21768":3,"21769":2,"21770":3,"21771":3,"21772":1,"21773":4,"21774":2,"21775":1,"21776":2,"21777":3,"21778":3,"21779":1,"21780":3,"21781":2,"21782":3,"21783":2,"21784":2,"21785":1,"21786":2,"21787":4,"21788":1,"21789":2,"21790":3,"21791":4,"21792":3,"21793":2,"21794":3,"21795":5,"21796":3,"21797":4,"21798":5,"21799":3,"21800":3,"21801":4,"21802":1,"21803":1,"21804":5,"21805":2,"21806":3,"21807":2,"21808":3,"21809":2,"21810":3,"21811":4,"21812":3,"21813":3,"21814":2,"21815":3,"21816":3,"21817":2,"21818":4,"21819":3,"21820":2,"21821":3,"21822":3,"21823":3,"21824":3,"21825":3,"21826":3,"21827":2,"21828":2,"21829":3,"21830":1,"21831":3,"21832":4,"21833":4,"21834":2,"21835":1,"21836":3,"21837":2,"21838":5,"21839":3,"21840":4,"21841":3,"21842":4,"21843":2,"21844":1,"21845":5,"21846":2,"21847":2,"21848":4,"21849":3,"21850":2,"21851":4,"21852":4,"21853":4,"21854":1,"21855":3,"21856":4,"21857":1,"21858":3,"21859":3,"21860":4,"21861":4,"21862":1,"21863":5,"21864":2,"21865":2,"21866":3,"21867":3,"21868":3,"21869":5,"21870":3,"21871":3,"21872":1,"21873":5,"21874":2,"21875":2,"21876":5,"21877":3,"21878":4,"21879":4,"21880":3,"21881":2,"21882":2,"21883":3,"21884":3,"21885":3,"21886":3,"21887":2,"21888":3,"21889":2,"21890":4,"21891":3,"21892":4,"21893":3,"21894":2,"21895":4,"21896":3,"21897":2,"21898":5,"21899":3,"21900":3,"21901":4,"21902":5,"21903":2,"21904":1,"21905":3,"21906":5,"21907":3,"21908":3,"21909":4,"21910":3,"21911":4,"21912":1,"21913":3,"21914":3,"21915":2,"21916":4,"21917":2,"21918":4,"21919":3,"21920":4,"21921":3,"21922":4,"21923":4,"21924":5,"21925":4,"21926":3,"21927":2,"21928":3,"21929":3,"21930":4,"21931":2,"21932":3,"21933":4,"21934":4,"21935":3,"21936":3,"21937":2,"21938":2,"21939":3,"21940":2,"21941":2,"21942":4,"21943":3,"21944":2,"21945":5,"21946":2,"21947":2,"21948":4,"21949":3,"21950":1,"21951":2,"21952":3,"21953":3,"21954":5,"21955":5,"21956":2,"21957":3,"21958":2,"21959":1,"21960":3,"21961":2,"21962":1,"21963":3,"21964":3,"21965":2,"21966":5,"21967":2,"21968":3,"21969":5,"21970":4,"21971":2,"21972":2,"21973":5,"21974":3,"21975":1,"21976":3,"21977":3,"21978":2,"21979":1,"21980":4,"21981":3,"21982":2,"21983":1,"21984":5,"21985":4,"21986":3,"21987":5,"21988":4,"21989":1,"21990":2,"21991":3,"21992":2,"21993":3,"21994":3,"21995":4,"21996":4,"21997":3,"21998":3,"21999":2,"22000":3,"22001":3,"22002":1,"22003":2,"22004":3,"22005":3,"22006":3,"22007":3,"22008":5,"22009":1,"22010":3,"22011":4,"22012":4,"22013":3,"22014":1,"22015":2,"22016":4,"22017":3,"22018":3,"22019":4,"22020":2,"22021":3,"22022":3,"22023":4,"22024":3,"22025":5,"22026":2,"22027":4,"22028":1,"22029":2,"22030":1,"22031":4,"22032":4,"22033":4,"22034":4,"22035":2,"22036":2,"22037":1,"22038":2,"22039":3,"22040":3,"22041":3,"22042":4,"22043":1,"22044":2,"22045":3,"22046":3,"22047":3,"22048":3,"22049":3,"22050":3,"22051":4,"22052":3,"22053":4,"22054":2,"22055":2,"22056":2,"22057":3,"22058":2,"22059":3,"22060":3,"22061":3,"22062":5,"22063":4,"22064":4,"22065":4,"22066":3,"22067":2,"22068":4,"22069":3,"22070":2,"22071":3,"22072":3,"22073":4,"22074":2,"22075":3,"22076":4,"22077":1,"22078":3,"22079":5,"22080":5,"22081":1,"22082":5,"22083":4,"22084":2,"22085":2,"22086":3,"22087":4,"22088":2,"22089":1,"22090":3,"22091":2,"22092":4,"22093":3,"22094":3,"22095":3,"22096":2,"22097":3,"22098":3,"22099":3,"22100":5,"22101":4,"22102":3,"22103":3,"22104":1,"22105":3,"22106":3,"22107":3,"22108":3,"22109":2,"22110":3,"22111":4,"22112":1,"22113":1,"22114":3,"22115":2,"22116":3,"22117":4,"22118":4,"22119":3,"22120":3,"22121":2,"22122":3,"22123":4,"22124":4,"22125":4,"22126":1,"22127":3,"22128":3,"22129":2,"22130":1,"22131":4,"22132":4,"22133":3,"22134":4,"22135":3,"22136":3,"22137":2,"22138":3,"22139":3,"22140":4,"22141":4,"22142":2,"22143":3,"22144":3,"22145":3,"22146":4,"22147":5,"22148":2,"22149":3,"22150":2,"22151":3,"22152":4,"22153":2,"22154":3,"22155":3,"22156":3,"22157":3,"22158":3,"22159":5,"22160":3,"22161":3,"22162":4,"22163":5,"22164":5,"22165":4,"22166":5,"22167":3,"22168":4,"22169":4,"22170":1,"22171":2,"22172":1,"22173":3,"22174":2,"22175":4,"22176":5,"22177":4,"22178":3,"22179":2,"22180":3,"22181":4,"22182":2,"22183":4,"22184":3,"22185":2,"22186":1,"22187":4,"22188":1,"22189":3,"22190":3,"22191":1,"22192":2,"22193":3,"22194":4,"22195":3,"22196":3,"22197":2,"22198":3,"22199":1,"22200":4,"22201":1,"22202":3,"22203":5,"22204":3,"22205":3,"22206":3,"22207":3,"22208":1,"22209":1,"22210":2,"22211":5,"22212":2,"22213":3,"22214":2,"22215":2,"22216":2,"22217":3,"22218":3,"22219":5,"22220":3,"22221":3,"22222":2,"22223":2,"22224":3,"22225":4,"22226":1,"22227":2,"22228":4,"22229":3,"22230":2,"22231":3,"22232":4,"22233":4,"22234":2,"22235":3,"22236":2,"22237":2,"22238":3,"22239":3,"22240":3,"22241":2,"22242":5,"22243":1,"22244":3,"22245":4,"22246":4,"22247":4,"22248":4,"22249":3,"22250":4,"22251":2,"22252":5,"22253":2,"22254":4,"22255":3,"22256":1,"22257":2,"22258":2,"22259":1,"22260":4,"22261":3,"22262":3,"22263":1,"22264":4,"22265":4,"22266":3,"22267":2,"22268":2,"22269":3,"22270":4,"22271":2,"22272":4,"22273":3,"22274":3,"22275":3,"22276":4,"22277":3,"22278":4,"22279":3,"22280":3,"22281":4,"22282":4,"22283":3,"22284":3,"22285":1,"22286":4,"22287":3,"22288":4,"22289":5,"22290":5,"22291":3,"22292":3,"22293":3,"22294":2,"22295":3,"22296":1,"22297":4,"22298":3,"22299":3,"22300":1,"22301":1,"22302":5,"22303":3,"22304":2,"22305":3,"22306":2,"22307":3,"22308":3,"22309":2,"22310":4,"22311":1,"22312":2,"22313":2,"22314":5,"22315":3,"22316":3,"22317":3,"22318":1,"22319":5,"22320":2,"22321":5,"22322":3,"22323":1,"22324":2,"22325":3,"22326":3,"22327":2,"22328":2,"22329":2,"22330":5,"22331":4,"22332":2,"22333":3,"22334":4,"22335":3,"22336":4,"22337":2,"22338":2,"22339":2,"22340":4,"22341":3,"22342":4,"22343":3,"22344":1,"22345":2,"22346":3,"22347":3,"22348":5,"22349":4,"22350":3,"22351":3,"22352":4,"22353":3,"22354":2,"22355":3,"22356":4,"22357":2,"22358":3,"22359":4,"22360":5,"22361":3,"22362":3,"22363":3,"22364":2,"22365":4,"22366":4,"22367":3,"22368":3,"22369":2,"22370":4,"22371":3,"22372":3,"22373":1,"22374":1,"22375":2,"22376":4,"22377":2,"22378":1,"22379":1,"22380":2,"22381":4,"22382":3,"22383":1,"22384":1,"22385":3,"22386":3,"22387":3,"22388":1,"22389":2,"22390":4,"22391":3,"22392":4,"22393":2,"22394":2,"22395":4,"22396":2,"22397":4,"22398":3,"22399":3,"22400":3,"22401":1,"22402":4,"22403":3,"22404":3,"22405":2,"22406":4,"22407":5,"22408":3,"22409":5,"22410":5,"22411":3,"22412":4,"22413":1,"22414":3,"22415":2,"22416":4,"22417":3,"22418":4,"22419":3,"22420":2,"22421":2,"22422":3,"22423":3,"22424":4,"22425":3,"22426":3,"22427":3,"22428":5,"22429":3,"22430":3,"22431":3,"22432":2,"22433":2,"22434":3,"22435":4,"22436":3,"22437":2,"22438":2,"22439":4,"22440":3,"22441":3,"22442":4,"22443":3,"22444":2,"22445":3,"22446":3,"22447":3,"22448":3,"22449":3,"22450":4,"22451":3,"22452":3,"22453":2,"22454":4,"22455":2,"22456":1,"22457":1,"22458":3,"22459":4,"22460":4,"22461":3,"22462":3,"22463":4,"22464":2,"22465":3,"22466":2,"22467":3,"22468":3,"22469":2,"22470":4,"22471":2,"22472":3,"22473":3,"22474":3,"22475":5,"22476":4,"22477":4,"22478":4,"22479":3,"22480":3,"22481":3,"22482":4,"22483":3,"22484":2,"22485":3,"22486":3,"22487":4,"22488":3,"22489":3,"22490":1,"22491":5,"22492":3,"22493":2,"22494":4,"22495":4,"22496":3,"22497":5,"22498":4,"22499":1,"22500":3,"22501":5,"22502":4,"22503":2,"22504":4,"22505":2,"22506":1,"22507":4,"22508":3,"22509":2,"22510":2,"22511":2,"22512":5,"22513":2,"22514":1,"22515":3,"22516":3,"22517":5,"22518":3,"22519":4,"22520":2,"22521":3,"22522":3,"22523":2,"22524":5,"22525":1,"22526":3,"22527":3,"22528":2,"22529":3,"22530":1,"22531":4,"22532":1,"22533":3,"22534":1,"22535":5,"22536":3,"22537":4,"22538":4,"22539":4,"22540":2,"22541":5,"22542":1,"22543":3,"22544":4,"22545":3,"22546":2,"22547":2,"22548":3,"22549":2,"22550":5,"22551":4,"22552":3,"22553":1,"22554":4,"22555":2,"22556":2,"22557":4,"22558":2,"22559":3,"22560":3,"22561":4,"22562":4,"22563":3,"22564":3,"22565":4,"22566":3,"22567":3,"22568":3,"22569":2,"22570":3,"22571":2,"22572":2,"22573":3,"22574":2,"22575":3,"22576":3,"22577":5,"22578":2,"22579":4,"22580":2,"22581":3,"22582":4,"22583":3,"22584":1,"22585":2,"22586":3,"22587":3,"22588":5,"22589":1,"22590":2,"22591":2,"22592":3,"22593":3,"22594":3,"22595":3,"22596":3,"22597":3,"22598":4,"22599":2,"22600":4,"22601":1,"22602":4,"22603":3,"22604":3,"22605":3,"22606":3,"22607":1,"22608":3,"22609":2,"22610":2,"22611":2,"22612":3,"22613":3,"22614":4,"22615":4,"22616":2,"22617":4,"22618":4,"22619":4,"22620":5,"22621":3,"22622":4,"22623":4,"22624":2,"22625":4,"22626":4,"22627":4,"22628":1,"22629":2,"22630":2,"22631":1,"22632":2,"22633":2,"22634":4,"22635":3,"22636":3,"22637":3,"22638":2,"22639":2,"22640":2,"22641":1,"22642":4,"22643":4,"22644":3,"22645":3,"22646":3,"22647":4,"22648":2,"22649":3,"22650":2,"22651":5,"22652":3,"22653":1,"22654":1,"22655":3,"22656":2,"22657":4,"22658":3,"22659":2,"22660":2,"22661":3,"22662":3,"22663":4,"22664":4,"22665":2,"22666":3,"22667":2,"22668":2,"22669":3,"22670":4,"22671":4,"22672":3,"22673":2,"22674":5,"22675":5,"22676":3,"22677":4,"22678":3,"22679":4,"22680":1,"22681":2,"22682":1,"22683":3,"22684":3,"22685":2,"22686":3,"22687":3,"22688":5,"22689":3,"22690":2,"22691":4,"22692":3,"22693":3,"22694":1,"22695":3,"22696":3,"22697":3,"22698":4,"22699":4,"22700":3,"22701":3,"22702":2,"22703":3,"22704":2,"22705":2,"22706":1,"22707":3,"22708":1,"22709":3,"22710":3,"22711":2,"22712":3,"22713":4,"22714":3,"22715":4,"22716":2,"22717":2,"22718":2,"22719":1,"22720":2,"22721":3,"22722":2,"22723":5,"22724":3,"22725":3,"22726":3,"22727":3,"22728":4,"22729":4,"22730":1,"22731":4,"22732":3,"22733":2,"22734":4,"22735":4,"22736":5,"22737":3,"22738":4,"22739":2,"22740":2,"22741":3,"22742":4,"22743":2,"22744":3,"22745":4,"22746":4,"22747":4,"22748":3,"22749":1,"22750":3,"22751":2,"22752":3,"22753":2,"22754":4,"22755":4,"22756":3,"22757":4,"22758":4,"22759":2,"22760":3,"22761":4,"22762":4,"22763":3,"22764":3,"22765":4,"22766":4,"22767":3,"22768":3,"22769":2,"22770":3,"22771":2,"22772":4,"22773":4,"22774":3,"22775":2,"22776":2,"22777":3,"22778":2,"22779":3,"22780":3,"22781":4,"22782":4,"22783":4,"22784":3,"22785":5,"22786":3,"22787":1,"22788":4,"22789":1,"22790":2,"22791":4,"22792":1,"22793":2,"22794":3,"22795":3,"22796":4,"22797":3,"22798":4,"22799":5,"22800":2,"22801":4,"22802":2,"22803":2,"22804":3,"22805":4,"22806":3,"22807":5,"22808":2,"22809":4,"22810":1,"22811":3,"22812":1,"22813":3,"22814":1,"22815":4,"22816":4,"22817":1,"22818":1,"22819":3,"22820":2,"22821":2,"22822":2,"22823":1,"22824":3,"22825":2,"22826":3,"22827":2,"22828":2,"22829":2,"22830":2,"22831":3,"22832":4,"22833":3,"22834":5,"22835":3,"22836":2,"22837":2,"22838":2,"22839":3,"22840":4,"22841":2,"22842":3,"22843":1,"22844":1,"22845":3,"22846":5,"22847":2,"22848":2,"22849":4,"22850":4,"22851":4,"22852":4,"22853":3,"22854":3,"22855":1,"22856":3,"22857":3,"22858":3,"22859":4,"22860":3,"22861":1,"22862":4,"22863":2,"22864":3,"22865":3,"22866":4,"22867":3,"22868":3,"22869":3,"22870":5,"22871":2,"22872":1,"22873":3,"22874":3,"22875":2,"22876":4,"22877":4,"22878":4,"22879":4,"22880":2,"22881":3,"22882":4,"22883":4,"22884":4,"22885":3,"22886":4,"22887":3,"22888":3,"22889":4,"22890":2,"22891":2,"22892":3,"22893":3,"22894":4,"22895":4,"22896":1,"22897":4,"22898":3,"22899":3,"22900":4,"22901":3,"22902":3,"22903":3,"22904":5,"22905":3,"22906":3,"22907":3,"22908":2,"22909":3,"22910":4,"22911":2,"22912":3,"22913":1,"22914":1,"22915":4,"22916":2,"22917":4,"22918":4,"22919":3,"22920":3,"22921":2,"22922":4,"22923":3,"22924":3,"22925":3,"22926":1,"22927":3,"22928":5,"22929":1,"22930":4,"22931":3,"22932":4,"22933":3,"22934":3,"22935":2,"22936":1,"22937":2,"22938":5,"22939":3,"22940":3,"22941":4,"22942":2,"22943":3,"22944":4,"22945":2,"22946":2,"22947":2,"22948":4,"22949":2,"22950":3,"22951":5,"22952":1,"22953":3,"22954":4,"22955":2,"22956":1,"22957":1,"22958":5,"22959":4,"22960":4,"22961":3,"22962":2,"22963":3,"22964":2,"22965":5,"22966":4,"22967":2,"22968":2,"22969":3,"22970":3,"22971":3,"22972":4,"22973":2,"22974":3,"22975":3,"22976":2,"22977":2,"22978":1,"22979":3,"22980":3,"22981":3,"22982":5,"22983":3,"22984":2,"22985":4,"22986":2,"22987":1,"22988":4,"22989":3,"22990":2,"22991":4,"22992":3,"22993":3,"22994":4,"22995":3,"22996":3,"22997":4,"22998":2,"22999":4,"23000":3,"23001":3,"23002":5,"23003":4,"23004":2,"23005":5,"23006":3,"23007":4,"23008":3,"23009":4,"23010":2,"23011":2,"23012":5,"23013":1,"23014":3,"23015":2,"23016":4,"23017":1,"23018":1,"23019":3,"23020":2,"23021":4,"23022":3,"23023":1,"23024":1,"23025":5,"23026":5,"23027":1,"23028":5,"23029":3,"23030":4,"23031":2,"23032":4,"23033":2,"23034":2,"23035":2,"23036":4,"23037":1,"23038":4,"23039":3,"23040":2,"23041":3,"23042":3,"23043":2,"23044":4,"23045":3,"23046":2,"23047":2,"23048":2,"23049":2,"23050":1,"23051":3,"23052":4,"23053":4,"23054":3,"23055":1,"23056":4,"23057":1,"23058":3,"23059":2,"23060":4,"23061":4,"23062":5,"23063":3,"23064":1,"23065":2,"23066":4,"23067":1,"23068":4,"23069":1,"23070":2,"23071":3,"23072":3,"23073":3,"23074":2,"23075":3,"23076":3,"23077":4,"23078":1,"23079":2,"23080":2,"23081":3,"23082":5,"23083":1,"23084":3,"23085":2,"23086":3,"23087":1,"23088":3,"23089":3,"23090":4,"23091":2,"23092":3,"23093":4,"23094":4,"23095":2,"23096":4,"23097":3,"23098":3,"23099":2,"23100":4,"23101":2,"23102":3,"23103":4,"23104":3,"23105":3,"23106":3,"23107":3,"23108":3,"23109":4,"23110":3,"23111":3,"23112":3,"23113":3,"23114":3,"23115":2,"23116":4,"23117":1,"23118":3,"23119":4,"23120":3,"23121":4,"23122":1,"23123":4,"23124":3,"23125":2,"23126":5,"23127":4,"23128":2,"23129":5,"23130":3,"23131":1,"23132":4,"23133":2,"23134":3,"23135":5,"23136":2,"23137":3,"23138":5,"23139":4,"23140":3,"23141":2,"23142":2,"23143":2,"23144":2,"23145":1,"23146":2,"23147":2,"23148":2,"23149":5,"23150":5,"23151":3,"23152":2,"23153":5,"23154":4,"23155":1,"23156":4,"23157":3,"23158":5,"23159":5,"23160":5,"23161":3,"23162":2,"23163":2,"23164":4,"23165":4,"23166":3,"23167":3,"23168":3,"23169":1,"23170":2,"23171":3,"23172":2,"23173":3,"23174":4,"23175":1,"23176":3,"23177":4,"23178":3,"23179":4,"23180":2,"23181":4,"23182":2,"23183":3,"23184":3,"23185":3,"23186":3,"23187":4,"23188":3,"23189":3,"23190":2,"23191":4,"23192":3,"23193":3,"23194":1,"23195":4,"23196":2,"23197":3,"23198":2,"23199":1,"23200":5,"23201":4,"23202":2,"23203":4,"23204":3,"23205":3,"23206":3,"23207":1,"23208":4,"23209":1,"23210":3,"23211":5,"23212":3,"23213":4,"23214":1,"23215":2,"23216":2,"23217":4,"23218":4,"23219":3,"23220":4,"23221":4,"23222":3,"23223":2,"23224":3,"23225":3,"23226":2,"23227":4,"23228":3,"23229":3,"23230":4,"23231":1,"23232":3,"23233":2,"23234":4,"23235":5,"23236":3,"23237":2,"23238":2,"23239":4,"23240":3,"23241":3,"23242":4,"23243":3,"23244":3,"23245":4,"23246":5,"23247":3,"23248":3,"23249":3,"23250":4,"23251":1,"23252":3,"23253":3,"23254":3,"23255":3,"23256":1,"23257":3,"23258":3,"23259":2,"23260":3,"23261":4,"23262":5,"23263":4,"23264":2,"23265":3,"23266":4,"23267":3,"23268":3,"23269":3,"23270":4,"23271":4,"23272":5,"23273":2,"23274":2,"23275":4,"23276":5,"23277":1,"23278":2,"23279":2,"23280":3,"23281":2,"23282":4,"23283":2,"23284":5,"23285":4,"23286":2,"23287":4,"23288":5,"23289":5,"23290":2,"23291":4,"23292":4,"23293":3,"23294":4,"23295":4,"23296":2,"23297":4,"23298":3,"23299":1,"23300":3,"23301":4,"23302":3,"23303":5,"23304":2,"23305":3,"23306":1,"23307":5,"23308":5,"23309":3,"23310":4,"23311":2,"23312":4,"23313":3,"23314":1,"23315":4,"23316":4,"23317":4,"23318":3,"23319":3,"23320":1,"23321":4,"23322":3,"23323":2,"23324":2,"23325":4,"23326":2,"23327":4,"23328":3,"23329":4,"23330":1,"23331":2,"23332":2,"23333":4,"23334":3,"23335":4,"23336":2,"23337":1,"23338":3,"23339":4,"23340":3,"23341":3,"23342":2,"23343":2,"23344":4,"23345":5,"23346":4,"23347":3,"23348":1,"23349":4,"23350":3,"23351":5,"23352":3,"23353":3,"23354":3,"23355":3,"23356":2,"23357":4,"23358":3,"23359":3,"23360":4,"23361":2,"23362":1,"23363":2,"23364":3,"23365":3,"23366":2,"23367":3,"23368":2,"23369":2,"23370":3,"23371":4,"23372":3,"23373":5,"23374":4,"23375":4,"23376":2,"23377":4,"23378":2,"23379":4,"23380":2,"23381":2,"23382":4,"23383":4,"23384":3,"23385":1,"23386":3,"23387":2,"23388":3,"23389":3,"23390":2,"23391":4,"23392":3,"23393":5,"23394":1,"23395":4,"23396":3,"23397":4,"23398":4,"23399":1,"23400":4,"23401":1,"23402":2,"23403":3,"23404":3,"23405":5,"23406":1,"23407":3,"23408":2,"23409":2,"23410":3,"23411":2,"23412":3,"23413":3,"23414":3,"23415":4,"23416":5,"23417":1,"23418":5,"23419":4,"23420":3,"23421":3,"23422":1,"23423":2,"23424":4,"23425":3,"23426":2,"23427":4,"23428":2,"23429":3,"23430":3,"23431":3,"23432":4,"23433":3,"23434":3,"23435":2,"23436":3,"23437":4,"23438":2,"23439":3,"23440":1,"23441":2,"23442":2,"23443":2,"23444":3,"23445":4,"23446":3,"23447":1,"23448":4,"23449":4,"23450":5,"23451":4,"23452":2,"23453":4,"23454":4,"23455":5,"23456":3,"23457":1,"23458":3,"23459":3,"23460":2,"23461":4,"23462":3,"23463":4,"23464":2,"23465":4,"23466":3,"23467":3,"23468":2,"23469":1,"23470":3,"23471":3,"23472":3,"23473":4,"23474":3,"23475":4,"23476":2,"23477":3,"23478":1,"23479":2,"23480":3,"23481":4,"23482":4,"23483":3,"23484":1,"23485":4,"23486":2,"23487":3,"23488":2,"23489":1,"23490":1,"23491":1,"23492":3,"23493":3,"23494":2,"23495":2,"23496":1,"23497":3,"23498":1,"23499":4,"23500":3,"23501":3,"23502":3,"23503":4,"23504":3,"23505":1,"23506":2,"23507":3,"23508":3,"23509":3,"23510":4,"23511":2,"23512":1,"23513":2,"23514":1,"23515":3,"23516":1,"23517":3,"23518":4,"23519":3,"23520":3,"23521":3,"23522":2,"23523":5,"23524":2,"23525":3,"23526":3,"23527":3,"23528":4,"23529":4,"23530":2,"23531":4,"23532":2,"23533":3,"23534":4,"23535":5,"23536":3,"23537":2,"23538":4,"23539":3,"23540":4,"23541":1,"23542":3,"23543":3,"23544":3,"23545":2,"23546":3,"23547":3,"23548":5,"23549":3,"23550":3,"23551":3,"23552":3,"23553":4,"23554":2,"23555":4,"23556":4,"23557":2,"23558":3,"23559":4,"23560":4,"23561":4,"23562":3,"23563":3,"23564":2,"23565":4,"23566":3,"23567":5,"23568":4,"23569":3,"23570":3,"23571":1,"23572":4,"23573":5,"23574":3,"23575":2,"23576":3,"23577":2,"23578":2,"23579":2,"23580":4,"23581":2,"23582":4,"23583":4,"23584":4,"23585":2,"23586":2,"23587":2,"23588":1,"23589":2,"23590":3,"23591":3,"23592":3,"23593":4,"23594":5,"23595":5,"23596":1,"23597":4,"23598":3,"23599":2,"23600":1,"23601":3,"23602":5,"23603":3,"23604":3,"23605":1,"23606":4,"23607":3,"23608":1,"23609":2,"23610":4,"23611":1,"23612":4,"23613":3,"23614":3,"23615":3,"23616":4,"23617":5,"23618":2,"23619":3,"23620":4,"23621":5,"23622":4,"23623":1,"23624":4,"23625":3,"23626":5,"23627":3,"23628":4,"23629":3,"23630":5,"23631":4,"23632":2,"23633":2,"23634":3,"23635":2,"23636":3,"23637":2,"23638":4,"23639":3,"23640":2,"23641":4,"23642":3,"23643":5,"23644":4,"23645":2,"23646":3,"23647":3,"23648":2,"23649":2,"23650":3,"23651":4,"23652":2,"23653":4,"23654":3,"23655":3,"23656":3,"23657":3,"23658":2,"23659":2,"23660":1,"23661":3,"23662":3,"23663":3,"23664":4,"23665":5,"23666":3,"23667":1,"23668":4,"23669":5,"23670":2,"23671":2,"23672":2,"23673":2,"23674":4,"23675":3,"23676":1,"23677":3,"23678":3,"23679":5,"23680":3,"23681":4,"23682":3,"23683":4,"23684":2,"23685":2,"23686":2,"23687":2,"23688":3,"23689":4,"23690":2,"23691":2,"23692":4,"23693":3,"23694":5,"23695":2,"23696":3,"23697":3,"23698":3,"23699":3,"23700":2,"23701":2,"23702":4,"23703":3,"23704":2,"23705":4,"23706":2,"23707":3,"23708":5,"23709":4,"23710":1,"23711":2,"23712":4,"23713":3,"23714":2,"23715":3,"23716":2,"23717":4,"23718":3,"23719":1,"23720":3,"23721":1,"23722":3,"23723":4,"23724":3,"23725":2,"23726":4,"23727":1,"23728":5,"23729":3,"23730":1,"23731":3,"23732":3,"23733":3,"23734":3,"23735":3,"23736":3,"23737":3,"23738":3,"23739":2,"23740":3,"23741":3,"23742":1,"23743":3,"23744":4,"23745":2,"23746":3,"23747":2,"23748":3,"23749":4,"23750":2,"23751":4,"23752":2,"23753":1,"23754":4,"23755":3,"23756":3,"23757":3,"23758":2,"23759":3,"23760":4,"23761":5,"23762":3,"23763":2,"23764":4,"23765":2,"23766":4,"23767":4,"23768":2,"23769":4,"23770":2,"23771":4,"23772":3,"23773":3,"23774":2,"23775":3,"23776":3,"23777":3,"23778":2,"23779":4,"23780":3,"23781":2,"23782":5,"23783":4,"23784":3,"23785":1,"23786":4,"23787":3,"23788":3,"23789":2,"23790":2,"23791":3,"23792":2,"23793":4,"23794":4,"23795":2,"23796":2,"23797":2,"23798":3,"23799":3,"23800":3,"23801":5,"23802":1,"23803":2,"23804":3,"23805":3,"23806":1,"23807":4,"23808":2,"23809":3,"23810":4,"23811":4,"23812":3,"23813":4,"23814":2,"23815":1,"23816":3,"23817":3,"23818":4,"23819":3,"23820":4,"23821":3,"23822":1,"23823":2,"23824":3,"23825":3,"23826":2,"23827":3,"23828":5,"23829":3,"23830":3,"23831":2,"23832":5,"23833":3,"23834":1,"23835":2,"23836":3,"23837":4,"23838":5,"23839":2,"23840":2,"23841":2,"23842":1,"23843":4,"23844":3,"23845":1,"23846":2,"23847":3,"23848":4,"23849":4,"23850":2,"23851":4,"23852":1,"23853":4,"23854":4,"23855":4,"23856":2,"23857":1,"23858":3,"23859":3,"23860":2,"23861":5,"23862":4,"23863":5,"23864":3,"23865":2,"23866":4,"23867":3,"23868":2,"23869":3,"23870":2,"23871":5,"23872":3,"23873":4,"23874":3,"23875":3,"23876":5,"23877":5,"23878":4,"23879":3,"23880":3,"23881":4,"23882":4,"23883":4,"23884":3,"23885":5,"23886":4,"23887":4,"23888":5,"23889":4,"23890":3,"23891":2,"23892":3,"23893":3,"23894":2,"23895":1,"23896":2,"23897":4,"23898":2,"23899":1,"23900":3,"23901":4,"23902":3,"23903":3,"23904":2,"23905":3,"23906":3,"23907":4,"23908":3,"23909":4,"23910":1,"23911":3,"23912":3,"23913":4,"23914":4,"23915":4,"23916":5,"23917":2,"23918":4,"23919":3,"23920":4,"23921":2,"23922":2,"23923":1,"23924":2,"23925":4,"23926":3,"23927":1,"23928":3,"23929":3,"23930":4,"23931":5,"23932":3,"23933":4,"23934":3,"23935":4,"23936":2,"23937":3,"23938":4,"23939":3,"23940":4,"23941":2,"23942":4,"23943":5,"23944":4,"23945":4,"23946":3,"23947":3,"23948":2,"23949":3,"23950":4,"23951":2,"23952":3,"23953":3,"23954":1,"23955":2,"23956":2,"23957":5,"23958":3,"23959":4,"23960":2,"23961":3,"23962":3,"23963":3,"23964":3,"23965":4,"23966":2,"23967":3,"23968":2,"23969":2,"23970":3,"23971":5,"23972":4,"23973":4,"23974":3,"23975":4,"23976":3,"23977":2,"23978":4,"23979":2,"23980":3,"23981":2,"23982":1,"23983":4,"23984":3,"23985":4,"23986":1,"23987":3,"23988":3,"23989":4,"23990":2,"23991":5,"23992":2,"23993":2,"23994":2,"23995":4,"23996":2,"23997":3,"23998":5,"23999":3,"24000":2,"24001":5,"24002":2,"24003":4,"24004":2,"24005":2,"24006":5,"24007":1,"24008":3,"24009":2,"24010":4,"24011":5,"24012":2,"24013":2,"24014":4,"24015":3,"24016":4,"24017":3,"24018":2,"24019":4,"24020":3,"24021":3,"24022":2,"24023":5,"24024":2,"24025":2,"24026":1,"24027":3,"24028":3,"24029":5,"24030":3,"24031":3,"24032":2,"24033":5,"24034":2,"24035":4,"24036":3,"24037":5,"24038":4,"24039":2,"24040":4,"24041":3,"24042":3,"24043":2,"24044":3,"24045":4,"24046":4,"24047":2,"24048":4,"24049":3,"24050":4,"24051":4,"24052":2,"24053":3,"24054":4,"24055":4,"24056":4,"24057":4,"24058":2,"24059":4,"24060":2,"24061":4,"24062":3,"24063":4,"24064":2,"24065":2,"24066":2,"24067":3,"24068":2,"24069":4,"24070":4,"24071":4,"24072":2,"24073":4,"24074":2,"24075":4,"24076":4,"24077":2,"24078":2,"24079":4,"24080":3,"24081":3,"24082":3,"24083":4,"24084":4,"24085":2,"24086":2,"24087":3,"24088":3,"24089":3,"24090":4,"24091":3,"24092":3,"24093":4,"24094":3,"24095":2,"24096":4,"24097":3,"24098":5,"24099":4,"24100":3,"24101":4,"24102":2,"24103":2,"24104":2,"24105":4,"24106":4,"24107":4,"24108":2,"24109":4,"24110":4,"24111":4,"24112":5,"24113":3,"24114":1,"24115":4,"24116":4,"24117":1,"24118":3,"24119":3,"24120":2,"24121":3,"24122":3,"24123":2,"24124":3,"24125":3,"24126":1,"24127":1,"24128":1,"24129":3,"24130":3,"24131":2,"24132":3,"24133":2,"24134":2,"24135":4,"24136":2,"24137":1,"24138":4,"24139":2,"24140":3,"24141":3,"24142":2,"24143":3,"24144":2,"24145":3,"24146":2,"24147":3,"24148":3,"24149":4,"24150":4,"24151":2,"24152":1,"24153":3,"24154":4,"24155":2,"24156":4,"24157":4,"24158":3,"24159":3,"24160":4,"24161":2,"24162":3,"24163":3,"24164":3,"24165":5,"24166":2,"24167":3,"24168":4,"24169":3,"24170":4,"24171":2,"24172":3,"24173":3,"24174":2,"24175":3,"24176":3,"24177":3,"24178":2,"24179":4,"24180":1,"24181":3,"24182":4,"24183":3,"24184":3,"24185":3,"24186":3,"24187":3,"24188":3,"24189":2,"24190":3,"24191":2,"24192":1,"24193":1,"24194":3,"24195":2,"24196":3,"24197":4,"24198":4,"24199":1,"24200":3,"24201":4,"24202":3,"24203":3,"24204":3,"24205":2,"24206":3,"24207":1,"24208":4,"24209":3,"24210":3,"24211":3,"24212":3,"24213":3,"24214":3,"24215":2,"24216":3,"24217":4,"24218":4,"24219":5,"24220":3,"24221":3,"24222":2,"24223":3,"24224":5,"24225":1,"24226":4,"24227":1,"24228":2,"24229":4,"24230":4,"24231":2,"24232":4,"24233":2,"24234":4,"24235":3,"24236":3,"24237":4,"24238":2,"24239":3,"24240":3,"24241":1,"24242":4,"24243":3,"24244":2,"24245":2,"24246":3,"24247":2,"24248":1,"24249":3,"24250":3,"24251":1,"24252":3,"24253":3,"24254":5,"24255":1,"24256":1,"24257":4,"24258":4,"24259":5,"24260":2,"24261":3,"24262":4,"24263":3,"24264":4,"24265":3,"24266":3,"24267":2,"24268":3,"24269":1,"24270":3,"24271":1,"24272":3,"24273":1,"24274":3,"24275":4,"24276":3,"24277":3,"24278":4,"24279":4,"24280":1,"24281":2,"24282":1,"24283":2,"24284":3,"24285":2,"24286":3,"24287":2,"24288":2,"24289":3,"24290":3,"24291":3,"24292":2,"24293":3,"24294":3,"24295":4,"24296":2,"24297":4,"24298":2,"24299":3,"24300":4,"24301":5,"24302":3,"24303":2,"24304":4,"24305":3,"24306":2,"24307":3,"24308":4,"24309":2,"24310":3,"24311":5,"24312":1,"24313":3,"24314":4,"24315":4,"24316":4,"24317":3,"24318":3,"24319":3,"24320":4,"24321":1,"24322":3,"24323":4,"24324":5,"24325":5,"24326":3,"24327":4,"24328":1,"24329":3,"24330":5,"24331":1,"24332":1,"24333":3,"24334":2,"24335":4,"24336":4,"24337":2,"24338":3,"24339":4,"24340":4,"24341":3,"24342":5,"24343":5,"24344":3,"24345":1,"24346":4,"24347":2,"24348":2,"24349":2,"24350":2,"24351":5,"24352":4,"24353":1,"24354":1,"24355":2,"24356":4,"24357":2,"24358":2,"24359":4,"24360":4,"24361":3,"24362":1,"24363":5,"24364":3,"24365":2,"24366":4,"24367":2,"24368":2,"24369":3,"24370":2,"24371":2,"24372":3,"24373":2,"24374":1,"24375":4,"24376":4,"24377":4,"24378":2,"24379":5,"24380":5,"24381":4,"24382":2,"24383":3,"24384":5,"24385":4,"24386":3,"24387":2,"24388":2,"24389":2,"24390":4,"24391":2,"24392":5,"24393":2,"24394":4,"24395":2,"24396":2,"24397":5,"24398":2,"24399":2,"24400":3,"24401":3,"24402":2,"24403":4,"24404":4,"24405":1,"24406":3,"24407":3,"24408":3,"24409":2,"24410":2,"24411":2,"24412":5,"24413":4,"24414":4,"24415":3,"24416":4,"24417":3,"24418":2,"24419":2,"24420":3,"24421":4,"24422":2,"24423":4,"24424":2,"24425":3,"24426":3,"24427":4,"24428":2,"24429":5,"24430":4,"24431":2,"24432":3,"24433":3,"24434":3,"24435":1,"24436":2,"24437":5,"24438":2,"24439":3,"24440":3,"24441":3,"24442":3,"24443":3,"24444":3,"24445":4,"24446":4,"24447":4,"24448":3,"24449":1,"24450":3,"24451":4,"24452":3,"24453":4,"24454":4,"24455":2,"24456":1,"24457":4,"24458":2,"24459":1,"24460":2,"24461":3,"24462":4,"24463":2,"24464":4,"24465":4,"24466":1,"24467":2,"24468":1,"24469":4,"24470":4,"24471":4,"24472":3,"24473":4,"24474":3,"24475":3,"24476":2,"24477":2,"24478":2,"24479":2,"24480":4,"24481":4,"24482":4,"24483":4,"24484":2,"24485":3,"24486":2,"24487":2,"24488":4,"24489":4,"24490":4,"24491":4,"24492":2,"24493":3,"24494":1,"24495":2,"24496":3,"24497":4,"24498":3,"24499":3,"24500":4,"24501":2,"24502":4,"24503":2,"24504":3,"24505":1,"24506":3,"24507":1,"24508":5,"24509":5,"24510":2,"24511":2,"24512":2,"24513":3,"24514":2,"24515":5,"24516":3,"24517":3,"24518":4,"24519":2,"24520":4,"24521":5,"24522":2,"24523":3,"24524":2,"24525":2,"24526":3,"24527":4,"24528":2,"24529":3,"24530":2,"24531":3,"24532":3,"24533":4,"24534":3,"24535":4,"24536":5,"24537":2,"24538":3,"24539":2,"24540":3,"24541":3,"24542":1,"24543":2,"24544":4,"24545":2,"24546":2,"24547":2,"24548":2,"24549":5,"24550":4,"24551":3,"24552":2,"24553":3,"24554":2,"24555":3,"24556":3,"24557":1,"24558":3,"24559":5,"24560":4,"24561":3,"24562":4,"24563":4,"24564":2,"24565":2,"24566":5,"24567":2,"24568":2,"24569":4,"24570":3,"24571":1,"24572":3,"24573":4,"24574":2,"24575":5,"24576":4,"24577":2,"24578":2,"24579":3,"24580":5,"24581":3,"24582":4,"24583":3,"24584":3,"24585":5,"24586":5,"24587":2,"24588":3,"24589":3,"24590":2,"24591":1,"24592":4,"24593":3,"24594":4,"24595":3,"24596":4,"24597":3,"24598":4,"24599":4,"24600":3,"24601":1,"24602":3,"24603":4,"24604":3,"24605":4,"24606":3,"24607":3,"24608":3,"24609":2,"24610":5,"24611":2,"24612":1,"24613":3,"24614":3,"24615":3,"24616":5,"24617":2,"24618":3,"24619":4,"24620":2,"24621":3,"24622":3,"24623":3,"24624":3,"24625":4,"24626":3,"24627":1,"24628":1,"24629":4,"24630":3,"24631":2,"24632":4,"24633":3,"24634":3,"24635":3,"24636":2,"24637":4,"24638":2,"24639":4,"24640":4,"24641":3,"24642":4,"24643":4,"24644":2,"24645":3,"24646":3,"24647":3,"24648":4,"24649":3,"24650":4,"24651":3,"24652":4,"24653":2,"24654":4,"24655":2,"24656":4,"24657":4,"24658":3,"24659":2,"24660":2,"24661":1,"24662":2,"24663":4,"24664":1,"24665":2,"24666":2,"24667":2,"24668":2,"24669":1,"24670":4,"24671":3,"24672":4,"24673":2,"24674":4,"24675":2,"24676":3,"24677":3,"24678":1,"24679":2,"24680":4,"24681":2,"24682":2,"24683":4,"24684":3,"24685":3,"24686":1,"24687":2,"24688":4,"24689":2,"24690":2,"24691":1,"24692":4,"24693":1,"24694":3,"24695":3,"24696":2,"24697":4,"24698":1,"24699":2,"24700":4,"24701":5,"24702":3,"24703":2,"24704":4,"24705":2,"24706":3,"24707":2,"24708":3,"24709":3,"24710":3,"24711":2,"24712":4,"24713":3,"24714":3,"24715":3,"24716":4,"24717":3,"24718":2,"24719":3,"24720":3,"24721":5,"24722":3,"24723":3,"24724":5,"24725":2,"24726":3,"24727":2,"24728":3,"24729":3,"24730":2,"24731":5,"24732":2,"24733":3,"24734":1,"24735":1,"24736":3,"24737":2,"24738":4,"24739":2,"24740":4,"24741":4,"24742":5,"24743":2,"24744":2,"24745":1,"24746":3,"24747":4,"24748":3,"24749":2,"24750":4,"24751":3,"24752":4,"24753":3,"24754":3,"24755":3,"24756":3,"24757":3,"24758":2,"24759":2,"24760":4,"24761":2,"24762":3,"24763":3,"24764":5,"24765":4,"24766":4,"24767":3,"24768":3,"24769":4,"24770":5,"24771":1,"24772":3,"24773":3,"24774":2,"24775":4,"24776":2,"24777":4,"24778":4,"24779":3,"24780":4,"24781":3,"24782":3,"24783":3,"24784":3,"24785":3,"24786":3,"24787":4,"24788":3,"24789":3,"24790":2,"24791":1,"24792":2,"24793":4,"24794":2,"24795":3,"24796":3,"24797":4,"24798":3,"24799":2,"24800":2,"24801":3,"24802":4,"24803":2,"24804":4,"24805":3,"24806":4,"24807":3,"24808":1,"24809":4,"24810":3,"24811":3,"24812":4,"24813":2,"24814":3,"24815":3,"24816":5,"24817":2,"24818":3,"24819":3,"24820":3,"24821":1,"24822":4,"24823":5,"24824":4,"24825":3,"24826":5,"24827":3,"24828":3,"24829":3,"24830":4,"24831":1,"24832":3,"24833":3,"24834":2,"24835":3,"24836":3,"24837":3,"24838":4,"24839":2,"24840":2,"24841":4,"24842":2,"24843":3,"24844":1,"24845":2,"24846":1,"24847":1,"24848":3,"24849":3,"24850":4,"24851":5,"24852":2,"24853":1,"24854":4,"24855":2,"24856":2,"24857":2,"24858":1,"24859":4,"24860":3,"24861":4,"24862":3,"24863":3,"24864":2,"24865":3,"24866":3,"24867":1,"24868":4,"24869":4,"24870":4,"24871":3,"24872":1,"24873":4,"24874":4,"24875":2,"24876":1,"24877":4,"24878":2,"24879":2,"24880":4,"24881":2,"24882":4,"24883":4,"24884":4,"24885":4,"24886":3,"24887":1,"24888":4,"24889":4,"24890":5,"24891":2,"24892":4,"24893":3,"24894":4,"24895":4,"24896":2,"24897":5,"24898":2,"24899":4,"24900":2,"24901":4,"24902":3,"24903":3,"24904":3,"24905":3,"24906":1,"24907":2,"24908":4,"24909":3,"24910":3,"24911":4,"24912":3,"24913":1,"24914":4,"24915":3,"24916":4,"24917":2,"24918":3,"24919":4,"24920":3,"24921":5,"24922":5,"24923":3,"24924":2,"24925":3,"24926":4,"24927":2,"24928":5,"24929":3,"24930":1,"24931":2,"24932":3,"24933":5,"24934":3,"24935":3,"24936":4,"24937":2,"24938":3,"24939":1,"24940":3,"24941":4,"24942":4,"24943":2,"24944":1,"24945":5,"24946":3,"24947":1,"24948":1,"24949":3,"24950":2,"24951":3,"24952":3,"24953":3,"24954":4,"24955":2,"24956":2,"24957":2,"24958":2,"24959":4,"24960":4,"24961":2,"24962":1,"24963":4,"24964":3,"24965":2,"24966":3,"24967":4,"24968":3,"24969":2,"24970":5,"24971":5,"24972":3,"24973":4,"24974":5,"24975":4,"24976":2,"24977":4,"24978":3,"24979":4,"24980":3,"24981":5,"24982":3,"24983":3,"24984":4,"24985":2,"24986":1,"24987":4,"24988":4,"24989":3,"24990":2,"24991":3,"24992":4,"24993":4,"24994":4,"24995":1,"24996":2,"24997":3,"24998":1,"24999":5,"25000":3,"25001":3,"25002":5,"25003":4,"25004":2,"25005":3,"25006":3,"25007":3,"25008":3,"25009":4,"25010":2,"25011":4,"25012":4,"25013":2,"25014":1,"25015":3,"25016":2,"25017":3,"25018":4,"25019":3,"25020":3,"25021":3,"25022":2,"25023":2,"25024":5,"25025":2,"25026":3,"25027":4,"25028":2,"25029":3,"25030":3,"25031":4,"25032":2,"25033":4,"25034":2,"25035":4,"25036":5,"25037":1,"25038":3,"25039":2,"25040":3,"25041":2,"25042":3,"25043":3,"25044":4,"25045":4,"25046":1,"25047":2,"25048":4,"25049":3,"25050":1,"25051":4,"25052":2,"25053":2,"25054":2,"25055":2,"25056":1,"25057":5,"25058":3,"25059":3,"25060":3,"25061":3,"25062":4,"25063":4,"25064":5,"25065":3,"25066":5,"25067":2,"25068":4,"25069":2,"25070":2,"25071":3,"25072":4,"25073":3,"25074":2,"25075":1,"25076":5,"25077":5,"25078":1,"25079":3,"25080":3,"25081":5,"25082":5,"25083":1,"25084":3,"25085":3,"25086":4,"25087":1,"25088":4,"25089":3,"25090":3,"25091":3,"25092":4,"25093":2,"25094":3,"25095":3,"25096":5,"25097":3,"25098":3,"25099":3,"25100":3,"25101":4,"25102":2,"25103":4,"25104":3,"25105":4,"25106":1,"25107":2,"25108":4,"25109":4,"25110":4,"25111":4,"25112":3,"25113":2,"25114":3,"25115":4,"25116":4,"25117":2,"25118":2,"25119":4,"25120":4,"25121":3,"25122":4,"25123":4,"25124":5,"25125":2,"25126":2,"25127":3,"25128":2,"25129":3,"25130":3,"25131":4,"25132":3,"25133":3,"25134":3,"25135":3,"25136":2,"25137":1,"25138":3,"25139":3,"25140":1,"25141":5,"25142":4,"25143":2,"25144":5,"25145":3,"25146":3,"25147":3,"25148":3,"25149":2,"25150":5,"25151":2,"25152":4,"25153":3,"25154":3,"25155":4,"25156":2,"25157":4,"25158":4,"25159":3,"25160":2,"25161":2,"25162":2,"25163":4,"25164":2,"25165":3,"25166":2,"25167":3,"25168":2,"25169":4,"25170":3,"25171":3,"25172":3,"25173":2,"25174":3,"25175":3,"25176":4,"25177":3,"25178":3,"25179":2,"25180":1,"25181":4,"25182":2,"25183":2,"25184":3,"25185":3,"25186":3,"25187":3,"25188":4,"25189":4,"25190":4,"25191":2,"25192":3,"25193":2,"25194":2,"25195":2,"25196":1,"25197":1,"25198":4,"25199":4,"25200":3,"25201":3,"25202":2,"25203":5,"25204":4,"25205":2,"25206":2,"25207":3,"25208":4,"25209":2,"25210":2,"25211":4,"25212":4,"25213":5,"25214":3,"25215":2,"25216":3,"25217":4,"25218":5,"25219":2,"25220":3,"25221":1,"25222":3,"25223":4,"25224":4,"25225":3,"25226":3,"25227":2,"25228":4,"25229":3,"25230":3,"25231":4,"25232":3,"25233":2,"25234":3,"25235":3,"25236":2,"25237":4,"25238":4,"25239":3,"25240":1,"25241":2,"25242":4,"25243":1,"25244":3,"25245":2,"25246":3,"25247":1,"25248":2,"25249":3,"25250":3,"25251":4,"25252":3,"25253":1,"25254":1,"25255":1,"25256":3,"25257":4,"25258":3,"25259":1,"25260":2,"25261":1,"25262":2,"25263":3,"25264":2,"25265":1,"25266":3,"25267":4,"25268":4,"25269":3,"25270":3,"25271":3,"25272":2,"25273":2,"25274":4,"25275":3,"25276":4,"25277":4,"25278":1,"25279":3,"25280":4,"25281":5,"25282":5,"25283":3,"25284":4,"25285":2,"25286":4,"25287":3,"25288":4,"25289":4,"25290":5,"25291":4,"25292":3,"25293":3,"25294":3,"25295":5,"25296":2,"25297":3,"25298":2,"25299":1,"25300":3,"25301":1,"25302":1,"25303":4,"25304":3,"25305":4,"25306":2,"25307":3,"25308":4,"25309":3,"25310":4,"25311":3,"25312":2,"25313":2,"25314":3,"25315":3,"25316":2,"25317":5,"25318":3,"25319":2,"25320":3,"25321":4,"25322":4,"25323":3,"25324":3,"25325":5,"25326":2,"25327":5,"25328":2,"25329":3,"25330":4,"25331":2,"25332":2,"25333":4,"25334":2,"25335":4,"25336":3,"25337":3,"25338":3,"25339":2,"25340":3,"25341":5,"25342":5,"25343":4,"25344":2,"25345":5,"25346":4,"25347":3,"25348":2,"25349":4,"25350":4,"25351":2,"25352":3,"25353":3,"25354":3,"25355":3,"25356":4,"25357":3,"25358":3,"25359":2,"25360":3,"25361":3,"25362":2,"25363":4,"25364":3,"25365":1,"25366":5,"25367":4,"25368":2,"25369":2,"25370":3,"25371":2,"25372":3,"25373":4,"25374":3,"25375":2,"25376":4,"25377":2,"25378":3,"25379":4,"25380":3,"25381":2,"25382":2,"25383":4,"25384":4,"25385":1,"25386":2,"25387":5,"25388":2,"25389":2,"25390":5,"25391":4,"25392":4,"25393":3,"25394":2,"25395":1,"25396":1,"25397":4,"25398":5,"25399":1,"25400":3,"25401":3,"25402":4,"25403":2,"25404":4,"25405":2,"25406":2,"25407":1,"25408":2,"25409":1,"25410":2,"25411":4,"25412":2,"25413":1,"25414":3,"25415":4,"25416":3,"25417":2,"25418":3,"25419":4,"25420":3,"25421":2,"25422":3,"25423":4,"25424":4,"25425":2,"25426":4,"25427":2,"25428":3,"25429":4,"25430":5,"25431":4,"25432":4,"25433":2,"25434":3,"25435":4,"25436":4,"25437":3,"25438":3,"25439":2,"25440":2,"25441":1,"25442":2,"25443":5,"25444":3,"25445":3,"25446":1,"25447":4,"25448":4,"25449":4,"25450":3,"25451":4,"25452":5,"25453":3,"25454":3,"25455":2,"25456":3,"25457":3,"25458":3,"25459":1,"25460":3,"25461":2,"25462":1,"25463":4,"25464":3,"25465":4,"25466":4,"25467":1,"25468":1,"25469":2,"25470":4,"25471":3,"25472":5,"25473":2,"25474":3,"25475":3,"25476":3,"25477":3,"25478":3,"25479":3,"25480":4,"25481":4,"25482":2,"25483":1,"25484":1,"25485":4,"25486":3,"25487":3,"25488":1,"25489":1,"25490":3,"25491":3,"25492":5,"25493":3,"25494":4,"25495":2,"25496":3,"25497":2,"25498":3,"25499":3,"25500":2,"25501":3,"25502":4,"25503":5,"25504":3,"25505":3,"25506":2,"25507":2,"25508":2,"25509":3,"25510":5,"25511":4,"25512":4,"25513":3,"25514":4,"25515":3,"25516":3,"25517":2,"25518":2,"25519":3,"25520":3,"25521":3,"25522":1,"25523":4,"25524":3,"25525":5,"25526":4,"25527":2,"25528":2,"25529":1,"25530":4,"25531":4,"25532":4,"25533":2,"25534":3,"25535":4,"25536":4,"25537":3,"25538":3,"25539":3,"25540":4,"25541":3,"25542":4,"25543":3,"25544":3,"25545":3,"25546":5,"25547":1,"25548":1,"25549":3,"25550":4,"25551":5,"25552":2,"25553":3,"25554":2,"25555":3,"25556":1,"25557":2,"25558":4,"25559":4,"25560":3,"25561":2,"25562":2,"25563":3,"25564":4,"25565":4,"25566":3,"25567":5,"25568":4,"25569":3,"25570":1,"25571":5,"25572":4,"25573":1,"25574":2,"25575":3,"25576":3,"25577":2,"25578":3,"25579":3,"25580":1,"25581":4,"25582":3,"25583":3,"25584":2,"25585":3,"25586":5,"25587":2,"25588":2,"25589":3,"25590":1,"25591":2,"25592":2,"25593":2,"25594":2,"25595":3,"25596":4,"25597":3,"25598":3,"25599":3,"25600":3,"25601":2,"25602":4,"25603":3,"25604":3,"25605":4,"25606":4,"25607":3,"25608":1,"25609":2,"25610":3,"25611":1,"25612":3,"25613":2,"25614":5,"25615":2,"25616":4,"25617":3,"25618":3,"25619":2,"25620":3,"25621":4,"25622":1,"25623":4,"25624":2,"25625":2,"25626":5,"25627":2,"25628":4,"25629":3,"25630":5,"25631":3,"25632":1,"25633":2,"25634":3,"25635":4,"25636":3,"25637":1,"25638":1,"25639":5,"25640":1,"25641":4,"25642":3,"25643":1,"25644":1,"25645":3,"25646":4,"25647":3,"25648":2,"25649":4,"25650":1,"25651":3,"25652":3,"25653":4,"25654":2,"25655":2,"25656":3,"25657":5,"25658":3,"25659":4,"25660":3,"25661":2,"25662":1,"25663":2,"25664":4,"25665":4,"25666":2,"25667":3,"25668":4,"25669":4,"25670":4,"25671":2,"25672":5,"25673":4,"25674":4,"25675":4,"25676":2,"25677":2,"25678":5,"25679":2,"25680":3,"25681":2,"25682":5,"25683":1,"25684":4,"25685":5,"25686":3,"25687":5,"25688":3,"25689":3,"25690":3,"25691":3,"25692":3,"25693":3,"25694":3,"25695":3,"25696":4,"25697":4,"25698":4,"25699":1,"25700":1,"25701":4,"25702":3,"25703":2,"25704":3,"25705":2,"25706":4,"25707":1,"25708":3,"25709":3,"25710":5,"25711":4,"25712":1,"25713":3,"25714":4,"25715":3,"25716":5,"25717":3,"25718":3,"25719":3,"25720":1,"25721":4,"25722":4,"25723":2,"25724":3,"25725":4,"25726":3,"25727":2,"25728":3,"25729":5,"25730":3,"25731":4,"25732":2,"25733":1,"25734":5,"25735":4,"25736":2,"25737":4,"25738":1,"25739":4,"25740":2,"25741":1,"25742":4,"25743":2,"25744":4,"25745":3,"25746":4,"25747":4,"25748":3,"25749":3,"25750":2,"25751":4,"25752":3,"25753":3,"25754":3,"25755":3,"25756":3,"25757":1,"25758":4,"25759":2,"25760":3,"25761":3,"25762":3,"25763":1,"25764":3,"25765":2,"25766":2,"25767":3,"25768":2,"25769":1,"25770":4,"25771":3,"25772":5,"25773":4,"25774":3,"25775":2,"25776":4,"25777":5,"25778":2,"25779":4,"25780":1,"25781":3,"25782":1,"25783":4,"25784":3,"25785":1,"25786":4,"25787":1,"25788":4,"25789":3,"25790":2,"25791":2,"25792":4,"25793":4,"25794":3,"25795":5,"25796":3,"25797":4,"25798":3,"25799":3,"25800":4,"25801":3,"25802":3,"25803":5,"25804":4,"25805":2,"25806":5,"25807":3,"25808":3,"25809":3,"25810":2,"25811":4,"25812":3,"25813":4,"25814":3,"25815":2,"25816":3,"25817":3,"25818":3,"25819":2,"25820":3,"25821":4,"25822":3,"25823":3,"25824":5,"25825":4,"25826":2,"25827":1,"25828":4,"25829":3,"25830":2,"25831":2,"25832":3,"25833":3,"25834":4,"25835":3,"25836":3,"25837":5,"25838":4,"25839":2,"25840":5,"25841":1,"25842":3,"25843":1,"25844":3,"25845":3,"25846":2,"25847":4,"25848":3,"25849":2,"25850":3,"25851":4,"25852":3,"25853":3,"25854":3,"25855":4,"25856":4,"25857":2,"25858":3,"25859":4,"25860":1,"25861":2,"25862":2,"25863":4,"25864":5,"25865":2,"25866":2,"25867":3,"25868":1,"25869":2,"25870":3,"25871":2,"25872":4,"25873":4,"25874":1,"25875":5,"25876":3,"25877":2,"25878":2,"25879":5,"25880":3,"25881":4,"25882":1,"25883":3,"25884":3,"25885":4,"25886":5,"25887":2,"25888":4,"25889":2,"25890":1,"25891":1,"25892":2,"25893":2,"25894":3,"25895":3,"25896":5,"25897":2,"25898":2,"25899":4,"25900":3,"25901":4,"25902":3,"25903":1,"25904":5,"25905":5,"25906":2,"25907":4,"25908":4,"25909":1,"25910":3,"25911":4,"25912":4,"25913":4,"25914":2,"25915":3,"25916":4,"25917":4,"25918":4,"25919":3,"25920":3,"25921":4,"25922":2,"25923":4,"25924":3,"25925":4,"25926":4,"25927":4,"25928":4,"25929":4,"25930":2,"25931":4,"25932":1,"25933":2,"25934":4,"25935":4,"25936":3,"25937":4,"25938":3,"25939":4,"25940":2,"25941":2,"25942":2,"25943":2,"25944":4,"25945":1,"25946":3,"25947":2,"25948":4,"25949":3,"25950":2,"25951":2,"25952":4,"25953":4,"25954":1,"25955":3,"25956":3,"25957":1,"25958":4,"25959":5,"25960":1,"25961":2,"25962":3,"25963":2,"25964":1,"25965":3,"25966":1,"25967":3,"25968":3,"25969":3,"25970":2,"25971":2,"25972":5,"25973":1,"25974":5,"25975":3,"25976":4,"25977":4,"25978":2,"25979":5,"25980":3,"25981":3,"25982":3,"25983":3,"25984":1,"25985":3,"25986":3,"25987":4,"25988":5,"25989":4,"25990":3,"25991":1,"25992":3,"25993":4,"25994":3,"25995":3,"25996":2,"25997":3,"25998":4,"25999":3,"26000":4,"26001":1,"26002":3,"26003":5,"26004":3,"26005":4,"26006":3,"26007":3,"26008":1,"26009":1,"26010":3,"26011":3,"26012":2,"26013":3,"26014":2,"26015":3,"26016":3,"26017":5,"26018":4,"26019":1,"26020":4,"26021":4,"26022":2,"26023":3,"26024":4,"26025":3,"26026":4,"26027":2,"26028":4,"26029":4,"26030":3,"26031":1,"26032":2,"26033":1,"26034":4,"26035":4,"26036":4,"26037":3,"26038":5,"26039":4,"26040":3,"26041":3,"26042":2,"26043":2,"26044":2,"26045":3,"26046":5,"26047":3,"26048":3,"26049":3,"26050":2,"26051":2,"26052":4,"26053":3,"26054":1,"26055":3,"26056":1,"26057":3,"26058":2,"26059":3,"26060":3,"26061":4,"26062":1,"26063":3,"26064":4,"26065":4,"26066":3,"26067":3,"26068":2,"26069":1,"26070":3,"26071":2,"26072":3,"26073":2,"26074":1,"26075":4,"26076":4,"26077":2,"26078":3,"26079":3,"26080":2,"26081":4,"26082":4,"26083":3,"26084":1,"26085":2,"26086":3,"26087":1,"26088":3,"26089":1,"26090":3,"26091":1,"26092":4,"26093":3,"26094":3,"26095":3,"26096":4,"26097":3,"26098":5,"26099":3,"26100":3,"26101":4,"26102":2,"26103":4,"26104":4,"26105":2,"26106":5,"26107":4,"26108":4,"26109":4,"26110":3,"26111":3,"26112":4,"26113":3,"26114":4,"26115":1,"26116":2,"26117":4,"26118":4,"26119":3,"26120":4,"26121":4,"26122":4,"26123":4,"26124":4,"26125":4,"26126":3,"26127":1,"26128":2,"26129":4,"26130":1,"26131":2,"26132":3,"26133":4,"26134":4,"26135":4,"26136":2,"26137":3,"26138":4,"26139":2,"26140":4,"26141":3,"26142":3,"26143":2,"26144":4,"26145":2,"26146":5,"26147":4,"26148":3,"26149":4,"26150":2,"26151":3,"26152":2,"26153":4,"26154":3,"26155":3,"26156":4,"26157":3,"26158":4,"26159":2,"26160":1,"26161":3,"26162":4,"26163":1,"26164":4,"26165":3,"26166":3,"26167":2,"26168":2,"26169":1,"26170":4,"26171":3,"26172":4,"26173":3,"26174":4,"26175":3,"26176":4,"26177":1,"26178":3,"26179":2,"26180":3,"26181":2,"26182":3,"26183":1,"26184":2,"26185":2,"26186":5,"26187":5,"26188":2,"26189":4,"26190":1,"26191":2,"26192":3,"26193":3,"26194":2,"26195":4,"26196":3,"26197":2,"26198":1,"26199":5,"26200":2,"26201":4,"26202":2,"26203":3,"26204":2,"26205":1,"26206":5,"26207":3,"26208":4,"26209":2,"26210":2,"26211":1,"26212":2,"26213":1,"26214":4,"26215":3,"26216":2,"26217":1,"26218":1,"26219":2,"26220":3,"26221":2,"26222":3,"26223":3,"26224":4,"26225":2,"26226":5,"26227":4,"26228":4,"26229":3,"26230":3,"26231":4,"26232":4,"26233":3,"26234":1,"26235":3,"26236":3,"26237":3,"26238":3,"26239":2,"26240":4,"26241":4,"26242":4,"26243":3,"26244":2,"26245":1,"26246":2,"26247":2,"26248":2,"26249":3,"26250":2,"26251":4,"26252":4,"26253":4,"26254":2,"26255":4,"26256":2,"26257":1,"26258":2,"26259":5,"26260":3,"26261":2,"26262":2,"26263":5,"26264":4,"26265":3,"26266":1,"26267":2,"26268":4,"26269":4,"26270":3,"26271":3,"26272":3,"26273":4,"26274":4,"26275":4,"26276":2,"26277":4,"26278":5,"26279":4,"26280":3,"26281":1,"26282":4,"26283":2,"26284":3,"26285":2,"26286":3,"26287":3,"26288":2,"26289":2,"26290":4,"26291":3,"26292":4,"26293":3,"26294":2,"26295":2,"26296":4,"26297":4,"26298":3,"26299":4,"26300":3,"26301":2,"26302":2,"26303":2,"26304":2,"26305":1,"26306":4,"26307":5,"26308":5,"26309":3,"26310":4,"26311":4,"26312":2,"26313":1,"26314":2,"26315":3,"26316":4,"26317":4,"26318":4,"26319":4,"26320":2,"26321":3,"26322":4,"26323":2,"26324":3,"26325":3,"26326":3,"26327":2,"26328":3,"26329":2,"26330":4,"26331":3,"26332":1,"26333":4,"26334":1,"26335":4,"26336":3,"26337":4,"26338":2,"26339":3,"26340":5,"26341":5,"26342":4,"26343":1,"26344":5,"26345":3,"26346":2,"26347":2,"26348":3,"26349":4,"26350":4,"26351":3,"26352":4,"26353":3,"26354":2,"26355":1,"26356":3,"26357":1,"26358":5,"26359":3,"26360":3,"26361":3,"26362":2,"26363":3,"26364":2,"26365":2,"26366":1,"26367":1,"26368":2,"26369":2,"26370":3,"26371":1,"26372":3,"26373":4,"26374":3,"26375":3,"26376":2,"26377":3,"26378":2,"26379":3,"26380":4,"26381":2,"26382":5,"26383":4,"26384":3,"26385":2,"26386":4,"26387":5,"26388":2,"26389":4,"26390":4,"26391":3,"26392":2,"26393":1,"26394":3,"26395":5,"26396":2,"26397":5,"26398":2,"26399":4,"26400":3,"26401":4,"26402":4,"26403":3,"26404":4,"26405":3,"26406":2,"26407":4,"26408":3,"26409":2,"26410":1,"26411":3,"26412":3,"26413":4,"26414":3,"26415":4,"26416":3,"26417":4,"26418":4,"26419":3,"26420":2,"26421":4,"26422":2,"26423":1,"26424":3,"26425":2,"26426":2,"26427":2,"26428":2,"26429":3,"26430":4,"26431":3,"26432":1,"26433":4,"26434":3,"26435":2,"26436":4,"26437":3,"26438":3,"26439":3,"26440":3,"26441":4,"26442":5,"26443":5,"26444":2,"26445":4,"26446":3,"26447":2,"26448":3,"26449":2,"26450":4,"26451":3,"26452":3,"26453":1,"26454":3,"26455":2,"26456":3,"26457":5,"26458":2,"26459":4,"26460":2,"26461":4,"26462":5,"26463":3,"26464":5,"26465":3,"26466":3,"26467":3,"26468":3,"26469":3,"26470":3,"26471":4,"26472":5,"26473":3,"26474":2,"26475":2,"26476":2,"26477":3,"26478":3,"26479":4,"26480":3,"26481":2,"26482":3,"26483":4,"26484":4,"26485":3,"26486":2,"26487":2,"26488":2,"26489":3,"26490":3,"26491":3,"26492":4,"26493":3,"26494":4,"26495":2,"26496":3,"26497":3,"26498":3,"26499":2,"26500":4,"26501":1,"26502":3,"26503":3,"26504":2,"26505":2,"26506":2,"26507":3,"26508":2,"26509":2,"26510":2,"26511":3,"26512":5,"26513":2,"26514":3,"26515":5,"26516":1,"26517":2,"26518":4,"26519":3,"26520":2,"26521":2,"26522":5,"26523":2,"26524":4,"26525":3,"26526":2,"26527":4,"26528":1,"26529":3,"26530":3,"26531":3,"26532":4,"26533":3,"26534":1,"26535":2,"26536":3,"26537":5,"26538":3,"26539":3,"26540":3,"26541":4,"26542":3,"26543":3,"26544":2,"26545":3,"26546":4,"26547":4,"26548":4,"26549":1,"26550":2,"26551":5,"26552":3,"26553":4,"26554":3,"26555":3,"26556":3,"26557":4,"26558":4,"26559":3,"26560":2,"26561":4,"26562":4,"26563":3,"26564":4,"26565":2,"26566":4,"26567":4,"26568":3,"26569":3,"26570":1,"26571":4,"26572":2,"26573":3,"26574":3,"26575":3,"26576":4,"26577":3,"26578":2,"26579":1,"26580":2,"26581":4,"26582":2,"26583":2,"26584":2,"26585":4,"26586":2,"26587":2,"26588":3,"26589":3,"26590":2,"26591":3,"26592":3,"26593":3,"26594":3,"26595":1,"26596":4,"26597":2,"26598":2,"26599":4,"26600":2,"26601":2,"26602":2,"26603":4,"26604":2,"26605":2,"26606":4,"26607":2,"26608":4,"26609":2,"26610":5,"26611":4,"26612":4,"26613":4,"26614":4,"26615":2,"26616":2,"26617":3,"26618":4,"26619":2,"26620":2,"26621":3,"26622":3,"26623":3,"26624":3,"26625":2,"26626":4,"26627":4,"26628":3,"26629":4,"26630":2,"26631":4,"26632":4,"26633":4,"26634":3,"26635":2,"26636":3,"26637":3,"26638":2,"26639":2,"26640":4,"26641":3,"26642":2,"26643":4,"26644":3,"26645":4,"26646":2,"26647":4,"26648":3,"26649":3,"26650":3,"26651":3,"26652":4,"26653":3,"26654":3,"26655":1,"26656":3,"26657":2,"26658":2,"26659":4,"26660":3,"26661":2,"26662":3,"26663":4,"26664":2,"26665":2,"26666":2,"26667":4,"26668":5,"26669":1,"26670":3,"26671":2,"26672":5,"26673":3,"26674":4,"26675":1,"26676":3,"26677":3,"26678":2,"26679":3,"26680":3,"26681":2,"26682":2,"26683":3,"26684":2,"26685":2,"26686":2,"26687":3,"26688":1,"26689":2,"26690":4,"26691":1,"26692":1,"26693":2,"26694":3,"26695":1,"26696":1,"26697":4,"26698":4,"26699":5,"26700":2,"26701":2,"26702":2,"26703":3,"26704":4,"26705":4,"26706":4,"26707":4,"26708":2,"26709":3,"26710":4,"26711":2,"26712":2,"26713":1,"26714":3,"26715":1,"26716":1,"26717":1,"26718":2,"26719":4,"26720":4,"26721":2,"26722":2,"26723":2,"26724":4,"26725":2,"26726":3,"26727":2,"26728":4,"26729":2,"26730":3,"26731":4,"26732":2,"26733":2,"26734":1,"26735":3,"26736":2,"26737":3,"26738":4,"26739":3,"26740":2,"26741":3,"26742":3,"26743":2,"26744":3,"26745":3,"26746":4,"26747":2,"26748":4,"26749":5,"26750":4,"26751":5,"26752":4,"26753":4,"26754":4,"26755":5,"26756":1,"26757":5,"26758":1,"26759":2,"26760":3,"26761":3,"26762":4,"26763":3,"26764":3,"26765":3,"26766":1,"26767":3,"26768":3,"26769":4,"26770":2,"26771":3,"26772":3,"26773":4,"26774":1,"26775":3,"26776":3,"26777":2,"26778":3,"26779":3,"26780":2,"26781":1,"26782":2,"26783":2,"26784":2,"26785":1,"26786":3,"26787":4,"26788":5,"26789":4,"26790":4,"26791":3,"26792":2,"26793":3,"26794":4,"26795":4,"26796":3,"26797":2,"26798":2,"26799":2,"26800":4,"26801":3,"26802":1,"26803":5,"26804":3,"26805":4,"26806":3,"26807":4,"26808":4,"26809":2,"26810":3,"26811":3,"26812":2,"26813":4,"26814":2,"26815":5,"26816":3,"26817":2,"26818":2,"26819":3,"26820":3,"26821":4,"26822":5,"26823":3,"26824":3,"26825":3,"26826":1,"26827":3,"26828":4,"26829":3,"26830":3,"26831":1,"26832":3,"26833":2,"26834":2,"26835":2,"26836":2,"26837":3,"26838":2,"26839":2,"26840":3,"26841":4,"26842":4,"26843":2,"26844":1,"26845":3,"26846":4,"26847":4,"26848":2,"26849":5,"26850":3,"26851":4,"26852":2,"26853":2,"26854":2,"26855":4,"26856":3,"26857":3,"26858":4,"26859":4,"26860":3,"26861":4,"26862":2,"26863":1,"26864":4,"26865":4,"26866":3,"26867":3,"26868":3,"26869":4,"26870":5,"26871":2,"26872":2,"26873":3,"26874":1,"26875":4,"26876":3,"26877":2,"26878":4,"26879":2,"26880":1,"26881":2,"26882":2,"26883":1,"26884":2,"26885":1,"26886":2,"26887":5,"26888":2,"26889":4,"26890":2,"26891":2,"26892":2,"26893":1,"26894":3,"26895":3,"26896":3,"26897":3,"26898":3,"26899":2,"26900":5,"26901":1,"26902":2,"26903":3,"26904":4,"26905":3,"26906":3,"26907":5,"26908":4,"26909":4,"26910":3,"26911":2,"26912":4,"26913":3,"26914":3,"26915":4,"26916":4,"26917":5,"26918":4,"26919":3,"26920":2,"26921":3,"26922":1,"26923":1,"26924":3,"26925":4,"26926":4,"26927":4,"26928":2,"26929":3,"26930":3,"26931":3,"26932":4,"26933":4,"26934":3,"26935":1,"26936":3,"26937":3,"26938":4,"26939":3,"26940":2,"26941":3,"26942":2,"26943":3,"26944":3,"26945":2,"26946":1,"26947":5,"26948":3,"26949":3,"26950":1,"26951":2,"26952":3,"26953":3,"26954":4,"26955":4,"26956":3,"26957":2,"26958":3,"26959":2,"26960":2,"26961":1,"26962":3,"26963":2,"26964":2,"26965":3,"26966":3,"26967":3,"26968":2,"26969":1,"26970":3,"26971":3,"26972":3,"26973":3,"26974":2,"26975":3,"26976":2,"26977":5,"26978":5,"26979":3,"26980":3,"26981":4,"26982":1,"26983":3,"26984":3,"26985":4,"26986":2,"26987":4,"26988":1,"26989":3,"26990":1,"26991":4,"26992":4,"26993":2,"26994":2,"26995":4,"26996":4,"26997":4,"26998":5,"26999":4,"27000":2,"27001":2,"27002":3,"27003":3,"27004":4,"27005":4,"27006":1,"27007":1,"27008":1,"27009":5,"27010":3,"27011":1,"27012":3,"27013":4,"27014":1,"27015":1,"27016":4,"27017":3,"27018":3,"27019":3,"27020":3,"27021":2,"27022":4,"27023":4,"27024":2,"27025":2,"27026":2,"27027":3,"27028":3,"27029":3,"27030":2,"27031":3,"27032":2,"27033":2,"27034":1,"27035":3,"27036":3,"27037":2,"27038":3,"27039":4,"27040":3,"27041":5,"27042":4,"27043":4,"27044":3,"27045":5,"27046":3,"27047":5,"27048":2,"27049":3,"27050":3,"27051":1,"27052":3,"27053":4,"27054":4,"27055":4,"27056":4,"27057":3,"27058":2,"27059":2,"27060":2,"27061":4,"27062":4,"27063":3,"27064":2,"27065":1,"27066":3,"27067":4,"27068":1,"27069":1,"27070":2,"27071":2,"27072":3,"27073":4,"27074":3,"27075":1,"27076":3,"27077":1,"27078":2,"27079":4,"27080":4,"27081":2,"27082":3,"27083":2,"27084":2,"27085":3,"27086":3,"27087":3,"27088":3,"27089":3,"27090":3,"27091":2,"27092":3,"27093":2,"27094":2,"27095":4,"27096":3,"27097":3,"27098":4,"27099":2,"27100":4,"27101":3,"27102":3,"27103":2,"27104":4,"27105":2,"27106":2,"27107":2,"27108":4,"27109":4,"27110":3,"27111":2,"27112":1,"27113":4,"27114":5,"27115":4,"27116":3,"27117":1,"27118":1,"27119":4,"27120":2,"27121":1,"27122":4,"27123":3,"27124":5,"27125":1,"27126":3,"27127":3,"27128":4,"27129":4,"27130":1,"27131":4,"27132":2,"27133":2,"27134":4,"27135":4,"27136":4,"27137":3,"27138":3,"27139":4,"27140":2,"27141":5,"27142":3,"27143":4,"27144":2,"27145":4,"27146":5,"27147":3,"27148":4,"27149":3,"27150":3,"27151":3,"27152":5,"27153":2,"27154":3,"27155":4,"27156":5,"27157":4,"27158":4,"27159":3,"27160":3,"27161":2,"27162":4,"27163":2,"27164":4,"27165":3,"27166":3,"27167":1,"27168":3,"27169":2,"27170":3,"27171":2,"27172":3,"27173":5,"27174":3,"27175":3,"27176":3,"27177":4,"27178":4,"27179":4,"27180":3,"27181":4,"27182":2,"27183":4,"27184":5,"27185":1,"27186":2,"27187":4,"27188":3,"27189":2,"27190":2,"27191":2,"27192":3,"27193":4,"27194":4,"27195":3,"27196":5,"27197":2,"27198":3,"27199":4,"27200":2,"27201":3,"27202":2,"27203":4,"27204":3,"27205":2,"27206":5,"27207":3,"27208":4,"27209":4,"27210":4,"27211":2,"27212":3,"27213":3,"27214":3,"27215":5,"27216":2,"27217":2,"27218":1,"27219":4,"27220":2,"27221":4,"27222":2,"27223":4,"27224":4,"27225":4,"27226":3,"27227":4,"27228":1,"27229":4,"27230":4,"27231":3,"27232":3,"27233":4,"27234":3,"27235":2,"27236":4,"27237":4,"27238":3,"27239":1,"27240":1,"27241":3,"27242":2,"27243":1,"27244":3,"27245":1,"27246":2,"27247":2,"27248":2,"27249":4,"27250":4,"27251":1,"27252":4,"27253":5,"27254":3,"27255":3,"27256":4,"27257":1,"27258":3,"27259":2,"27260":4,"27261":2,"27262":2,"27263":3,"27264":2,"27265":4,"27266":2,"27267":2,"27268":3,"27269":3,"27270":2,"27271":3,"27272":4,"27273":2,"27274":2,"27275":2,"27276":3,"27277":4,"27278":3,"27279":4,"27280":3,"27281":3,"27282":3,"27283":2,"27284":4,"27285":2,"27286":3,"27287":3,"27288":3,"27289":4,"27290":1,"27291":3,"27292":1,"27293":3,"27294":3,"27295":2,"27296":2,"27297":2,"27298":2,"27299":4,"27300":5,"27301":1,"27302":3,"27303":3,"27304":3,"27305":2,"27306":3,"27307":3,"27308":3,"27309":3,"27310":3,"27311":4,"27312":3,"27313":3,"27314":3,"27315":2,"27316":3,"27317":4,"27318":3,"27319":2,"27320":2,"27321":1,"27322":3,"27323":3,"27324":3,"27325":3,"27326":2,"27327":4,"27328":2,"27329":4,"27330":2,"27331":3,"27332":1,"27333":2,"27334":2,"27335":3,"27336":3,"27337":3,"27338":2,"27339":3,"27340":2,"27341":3,"27342":2,"27343":3,"27344":3,"27345":4,"27346":3,"27347":3,"27348":3,"27349":2,"27350":4,"27351":3,"27352":3,"27353":3,"27354":3,"27355":2,"27356":4,"27357":2,"27358":5,"27359":3,"27360":3,"27361":4,"27362":3,"27363":1,"27364":3,"27365":2,"27366":1,"27367":2,"27368":3,"27369":3,"27370":1,"27371":4,"27372":4,"27373":3,"27374":3,"27375":4,"27376":2,"27377":2,"27378":3,"27379":1,"27380":3,"27381":3,"27382":4,"27383":4,"27384":2,"27385":2,"27386":2,"27387":1,"27388":2,"27389":3,"27390":2,"27391":4,"27392":3,"27393":3,"27394":4,"27395":3,"27396":3,"27397":2,"27398":2,"27399":1,"27400":3,"27401":5,"27402":3,"27403":2,"27404":3,"27405":2,"27406":1,"27407":2,"27408":3,"27409":2,"27410":3,"27411":3,"27412":5,"27413":3,"27414":5,"27415":4,"27416":2,"27417":4,"27418":4,"27419":2,"27420":1,"27421":4,"27422":3,"27423":3,"27424":3,"27425":2,"27426":1,"27427":3,"27428":5,"27429":3,"27430":3,"27431":2,"27432":3,"27433":4,"27434":1,"27435":4,"27436":3,"27437":3,"27438":2,"27439":3,"27440":4,"27441":4,"27442":4,"27443":1,"27444":4,"27445":2,"27446":1,"27447":3,"27448":3,"27449":4,"27450":4,"27451":2,"27452":3,"27453":3,"27454":1,"27455":2,"27456":3,"27457":4,"27458":4,"27459":2,"27460":4,"27461":2,"27462":3,"27463":1,"27464":4,"27465":3,"27466":3,"27467":2,"27468":4,"27469":5,"27470":2,"27471":3,"27472":4,"27473":2,"27474":4,"27475":3,"27476":2,"27477":3,"27478":3,"27479":3,"27480":4,"27481":3,"27482":5,"27483":3,"27484":5,"27485":2,"27486":1,"27487":4,"27488":1,"27489":5,"27490":2,"27491":4,"27492":2,"27493":1,"27494":2,"27495":3,"27496":2,"27497":3,"27498":3,"27499":3,"27500":4,"27501":4,"27502":1,"27503":2,"27504":3,"27505":2,"27506":3,"27507":1,"27508":4,"27509":4,"27510":2,"27511":1,"27512":4,"27513":3,"27514":1,"27515":2,"27516":3,"27517":4,"27518":3,"27519":2,"27520":2,"27521":2,"27522":3,"27523":2,"27524":5,"27525":2,"27526":4,"27527":4,"27528":4,"27529":3,"27530":2,"27531":3,"27532":3,"27533":5,"27534":4,"27535":2,"27536":3,"27537":4,"27538":3,"27539":3,"27540":4,"27541":2,"27542":4,"27543":4,"27544":3,"27545":4,"27546":1,"27547":3,"27548":2,"27549":3,"27550":3,"27551":3,"27552":2,"27553":2,"27554":3,"27555":4,"27556":1,"27557":3,"27558":4,"27559":3,"27560":3,"27561":5,"27562":3,"27563":4,"27564":5,"27565":3,"27566":3,"27567":5,"27568":4,"27569":3,"27570":1,"27571":3,"27572":4,"27573":4,"27574":4,"27575":3,"27576":4,"27577":2,"27578":4,"27579":2,"27580":4,"27581":1,"27582":4,"27583":3,"27584":3,"27585":2,"27586":2,"27587":1,"27588":5,"27589":2,"27590":1,"27591":3,"27592":1,"27593":4,"27594":2,"27595":3,"27596":5,"27597":3,"27598":2,"27599":3,"27600":3,"27601":3,"27602":3,"27603":1,"27604":2,"27605":2,"27606":4,"27607":3,"27608":4,"27609":3,"27610":2,"27611":2,"27612":4,"27613":3,"27614":2,"27615":2,"27616":2,"27617":3,"27618":3,"27619":4,"27620":3,"27621":4,"27622":3,"27623":3,"27624":4,"27625":3,"27626":2,"27627":4,"27628":4,"27629":3,"27630":4,"27631":5,"27632":3,"27633":4,"27634":3,"27635":2,"27636":4,"27637":1,"27638":3,"27639":5,"27640":3,"27641":1,"27642":5,"27643":2,"27644":5,"27645":4,"27646":3,"27647":3,"27648":3,"27649":2,"27650":2,"27651":5,"27652":3,"27653":3,"27654":3,"27655":3,"27656":4,"27657":1,"27658":5,"27659":4,"27660":4,"27661":1,"27662":4,"27663":3,"27664":3,"27665":3,"27666":3,"27667":5,"27668":4,"27669":3,"27670":2,"27671":2,"27672":3,"27673":3,"27674":3,"27675":3,"27676":2,"27677":3,"27678":2,"27679":1,"27680":2,"27681":3,"27682":3,"27683":4,"27684":2,"27685":4,"27686":4,"27687":2,"27688":4,"27689":2,"27690":4,"27691":3,"27692":5,"27693":2,"27694":4,"27695":3,"27696":3,"27697":4,"27698":4,"27699":4,"27700":3,"27701":2,"27702":2,"27703":3,"27704":3,"27705":1,"27706":5,"27707":2,"27708":2,"27709":4,"27710":3,"27711":3,"27712":3,"27713":4,"27714":2,"27715":4,"27716":2,"27717":4,"27718":4,"27719":3,"27720":2,"27721":2,"27722":4,"27723":2,"27724":4,"27725":4,"27726":4,"27727":3,"27728":3,"27729":3,"27730":5,"27731":2,"27732":5,"27733":2,"27734":3,"27735":4,"27736":3,"27737":3,"27738":2,"27739":2,"27740":3,"27741":4,"27742":2,"27743":2,"27744":1,"27745":1,"27746":1,"27747":1,"27748":3,"27749":5,"27750":2,"27751":5,"27752":4,"27753":3,"27754":5,"27755":4,"27756":2,"27757":2,"27758":1,"27759":5,"27760":2,"27761":4,"27762":1,"27763":2,"27764":3,"27765":2,"27766":3,"27767":3,"27768":3,"27769":3,"27770":3,"27771":3,"27772":5,"27773":4,"27774":2,"27775":3,"27776":3,"27777":3,"27778":5,"27779":4,"27780":3,"27781":2,"27782":4,"27783":3,"27784":4,"27785":3,"27786":3,"27787":4,"27788":5,"27789":3,"27790":3,"27791":3,"27792":5,"27793":3,"27794":2,"27795":2,"27796":5,"27797":3,"27798":4,"27799":1,"27800":2,"27801":4,"27802":4,"27803":2,"27804":3,"27805":2,"27806":4,"27807":3,"27808":2,"27809":3,"27810":3,"27811":3,"27812":3,"27813":4,"27814":3,"27815":2,"27816":4,"27817":1,"27818":1,"27819":3,"27820":3,"27821":2,"27822":3,"27823":3,"27824":3,"27825":4,"27826":2,"27827":3,"27828":3,"27829":3,"27830":1,"27831":3,"27832":3,"27833":5,"27834":4,"27835":3,"27836":1,"27837":4,"27838":3,"27839":2,"27840":4,"27841":3,"27842":3,"27843":4,"27844":3,"27845":4,"27846":3,"27847":2,"27848":4,"27849":3,"27850":4,"27851":4,"27852":4,"27853":1,"27854":2,"27855":2,"27856":2,"27857":3,"27858":4,"27859":2,"27860":4,"27861":2,"27862":4,"27863":3,"27864":2,"27865":4,"27866":3,"27867":4,"27868":1,"27869":4,"27870":3,"27871":4,"27872":3,"27873":3,"27874":2,"27875":2,"27876":4,"27877":1,"27878":2,"27879":1,"27880":3,"27881":3,"27882":4,"27883":2,"27884":3,"27885":5,"27886":3,"27887":4,"27888":2,"27889":3,"27890":4,"27891":1,"27892":5,"27893":4,"27894":2,"27895":3,"27896":4,"27897":5,"27898":5,"27899":1,"27900":3,"27901":1,"27902":4,"27903":5,"27904":5,"27905":5,"27906":2,"27907":1,"27908":4,"27909":1,"27910":3,"27911":4,"27912":2,"27913":4,"27914":4,"27915":2,"27916":4,"27917":1,"27918":4,"27919":2,"27920":4,"27921":4,"27922":3,"27923":3,"27924":2,"27925":2,"27926":3,"27927":1,"27928":2,"27929":2,"27930":4,"27931":1,"27932":3,"27933":2,"27934":3,"27935":2,"27936":4,"27937":4,"27938":3,"27939":4,"27940":3,"27941":4,"27942":1,"27943":3,"27944":4,"27945":2,"27946":2,"27947":3,"27948":2,"27949":2,"27950":3,"27951":4,"27952":2,"27953":3,"27954":4,"27955":3,"27956":1,"27957":3,"27958":4,"27959":4,"27960":2,"27961":3,"27962":3,"27963":3,"27964":1,"27965":3,"27966":2,"27967":2,"27968":1,"27969":2,"27970":3,"27971":2,"27972":2,"27973":5,"27974":4,"27975":2,"27976":2,"27977":4,"27978":1,"27979":5,"27980":3,"27981":4,"27982":3,"27983":3,"27984":3,"27985":2,"27986":4,"27987":4,"27988":3,"27989":3,"27990":4,"27991":3,"27992":2,"27993":2,"27994":3,"27995":3,"27996":4,"27997":1,"27998":4,"27999":3,"28000":2,"28001":1,"28002":4,"28003":3,"28004":4,"28005":4,"28006":4,"28007":3,"28008":3,"28009":3,"28010":2,"28011":2,"28012":5,"28013":1,"28014":3,"28015":2,"28016":4,"28017":2,"28018":5,"28019":2,"28020":2,"28021":3,"28022":2,"28023":3,"28024":4,"28025":2,"28026":5,"28027":3,"28028":5,"28029":3,"28030":3,"28031":3,"28032":3,"28033":2,"28034":4,"28035":2,"28036":3,"28037":3,"28038":1,"28039":3,"28040":2,"28041":3,"28042":2,"28043":4,"28044":3,"28045":5,"28046":3,"28047":4,"28048":3,"28049":2,"28050":2,"28051":1,"28052":1,"28053":3,"28054":3,"28055":1,"28056":3,"28057":3,"28058":5,"28059":3,"28060":4,"28061":2,"28062":2,"28063":4,"28064":4,"28065":3,"28066":3,"28067":3,"28068":2,"28069":3,"28070":4,"28071":3,"28072":2,"28073":3,"28074":2,"28075":2,"28076":3,"28077":2,"28078":3,"28079":3,"28080":1,"28081":2,"28082":4,"28083":4,"28084":4,"28085":1,"28086":4,"28087":1,"28088":3,"28089":3,"28090":4,"28091":4,"28092":5,"28093":5,"28094":4,"28095":1,"28096":4,"28097":3,"28098":3,"28099":3,"28100":2,"28101":4,"28102":2,"28103":2,"28104":3,"28105":2,"28106":3,"28107":4,"28108":2,"28109":3,"28110":2,"28111":3,"28112":4,"28113":5,"28114":4,"28115":3,"28116":3,"28117":2,"28118":1,"28119":3,"28120":5,"28121":3,"28122":3,"28123":1,"28124":3,"28125":1,"28126":4,"28127":4,"28128":2,"28129":3,"28130":2,"28131":4,"28132":3,"28133":2,"28134":3,"28135":3,"28136":1,"28137":3,"28138":1,"28139":3,"28140":3,"28141":2,"28142":4,"28143":2,"28144":4,"28145":3,"28146":4,"28147":2,"28148":3,"28149":4,"28150":4,"28151":4,"28152":5,"28153":3,"28154":4,"28155":4,"28156":3,"28157":4,"28158":3,"28159":1,"28160":2,"28161":4,"28162":5,"28163":4,"28164":5,"28165":3,"28166":5,"28167":2,"28168":2,"28169":3,"28170":4,"28171":3,"28172":1,"28173":3,"28174":2,"28175":3,"28176":4,"28177":3,"28178":5,"28179":4,"28180":3,"28181":3,"28182":3,"28183":2,"28184":3,"28185":3,"28186":3,"28187":4,"28188":2,"28189":1,"28190":4,"28191":2,"28192":4,"28193":3,"28194":2,"28195":3,"28196":3,"28197":5,"28198":2,"28199":5,"28200":4,"28201":4,"28202":5,"28203":3,"28204":3,"28205":3,"28206":2,"28207":5,"28208":5,"28209":5,"28210":4,"28211":2,"28212":2,"28213":1,"28214":4,"28215":3,"28216":3,"28217":5,"28218":1,"28219":3,"28220":3,"28221":4,"28222":3,"28223":4,"28224":2,"28225":3,"28226":4,"28227":2,"28228":5,"28229":3,"28230":4,"28231":3,"28232":2,"28233":4,"28234":4,"28235":4,"28236":3,"28237":3,"28238":3,"28239":4,"28240":5,"28241":1,"28242":3,"28243":2,"28244":2,"28245":5,"28246":2,"28247":4,"28248":4,"28249":3,"28250":3,"28251":4,"28252":4,"28253":3,"28254":5,"28255":2,"28256":4,"28257":4,"28258":1,"28259":2,"28260":2,"28261":4,"28262":3,"28263":2,"28264":1,"28265":4,"28266":3,"28267":2,"28268":3,"28269":4,"28270":4,"28271":3,"28272":5,"28273":2,"28274":1,"28275":3,"28276":5,"28277":4,"28278":3,"28279":4,"28280":1,"28281":4,"28282":2,"28283":2,"28284":4,"28285":3,"28286":2,"28287":1,"28288":4,"28289":2,"28290":1,"28291":4,"28292":2,"28293":3,"28294":2,"28295":3,"28296":3,"28297":4,"28298":2,"28299":4,"28300":2,"28301":3,"28302":5,"28303":4,"28304":3,"28305":3,"28306":4,"28307":3,"28308":4,"28309":4,"28310":2,"28311":3,"28312":4,"28313":3,"28314":1,"28315":1,"28316":5,"28317":2,"28318":2,"28319":4,"28320":4,"28321":3,"28322":4,"28323":3,"28324":3,"28325":3,"28326":3,"28327":3,"28328":1,"28329":2,"28330":2,"28331":4,"28332":2,"28333":2,"28334":3,"28335":4,"28336":3,"28337":4,"28338":3,"28339":2,"28340":4,"28341":1,"28342":3,"28343":4,"28344":2,"28345":4,"28346":3,"28347":3,"28348":4,"28349":4,"28350":3,"28351":3,"28352":3,"28353":3,"28354":3,"28355":3,"28356":4,"28357":2,"28358":4,"28359":3,"28360":3,"28361":2,"28362":3,"28363":4,"28364":4,"28365":4,"28366":3,"28367":4,"28368":5,"28369":2,"28370":5,"28371":3,"28372":4,"28373":3,"28374":4,"28375":2,"28376":2,"28377":4,"28378":3,"28379":4,"28380":3,"28381":5,"28382":1,"28383":3,"28384":4,"28385":2,"28386":3,"28387":3,"28388":2,"28389":4,"28390":4,"28391":5,"28392":4,"28393":3,"28394":1,"28395":3,"28396":1,"28397":4,"28398":2,"28399":2,"28400":1,"28401":1,"28402":4,"28403":3,"28404":4,"28405":2,"28406":3,"28407":3,"28408":4,"28409":4,"28410":4,"28411":1,"28412":3,"28413":3,"28414":5,"28415":3,"28416":4,"28417":3,"28418":4,"28419":3,"28420":4,"28421":3,"28422":5,"28423":3,"28424":3,"28425":1,"28426":3,"28427":2,"28428":5,"28429":3,"28430":3,"28431":1,"28432":4,"28433":2,"28434":4,"28435":3,"28436":3,"28437":2,"28438":5,"28439":2,"28440":1,"28441":3,"28442":2,"28443":3,"28444":2,"28445":3,"28446":5,"28447":4,"28448":2,"28449":3,"28450":3,"28451":2,"28452":4,"28453":4,"28454":2,"28455":5,"28456":3,"28457":4,"28458":2,"28459":4,"28460":4,"28461":3,"28462":3,"28463":5,"28464":2,"28465":2,"28466":3,"28467":2,"28468":3,"28469":3,"28470":1,"28471":3,"28472":2,"28473":3,"28474":3,"28475":3,"28476":1,"28477":3,"28478":5,"28479":3,"28480":3,"28481":2,"28482":2,"28483":2,"28484":3,"28485":4,"28486":5,"28487":2,"28488":4,"28489":4,"28490":5,"28491":2,"28492":3,"28493":3,"28494":4,"28495":2,"28496":4,"28497":1,"28498":1,"28499":4,"28500":3,"28501":3,"28502":2,"28503":1,"28504":2,"28505":2,"28506":2,"28507":1,"28508":3,"28509":1,"28510":2,"28511":2,"28512":4,"28513":3,"28514":3,"28515":1,"28516":3,"28517":4,"28518":2,"28519":3,"28520":4,"28521":3,"28522":2,"28523":1,"28524":4,"28525":4,"28526":3,"28527":4,"28528":3,"28529":4,"28530":1,"28531":2,"28532":4,"28533":5,"28534":4,"28535":4,"28536":4,"28537":1,"28538":1,"28539":4,"28540":3,"28541":3,"28542":3,"28543":2,"28544":3,"28545":3,"28546":2,"28547":3,"28548":3,"28549":3,"28550":2,"28551":1,"28552":1,"28553":3,"28554":2,"28555":4,"28556":4,"28557":3,"28558":1,"28559":3,"28560":2,"28561":2,"28562":5,"28563":3,"28564":3,"28565":2,"28566":4,"28567":3,"28568":3,"28569":5,"28570":4,"28571":2,"28572":3,"28573":1,"28574":4,"28575":5,"28576":2,"28577":2,"28578":3,"28579":5,"28580":2,"28581":4,"28582":1,"28583":3,"28584":2,"28585":3,"28586":2,"28587":2,"28588":2,"28589":4,"28590":2,"28591":5,"28592":4,"28593":3,"28594":3,"28595":2,"28596":4,"28597":4,"28598":4,"28599":2,"28600":4,"28601":3,"28602":2,"28603":4,"28604":3,"28605":2,"28606":2,"28607":4,"28608":3,"28609":3,"28610":4,"28611":2,"28612":3,"28613":2,"28614":2,"28615":4,"28616":3,"28617":3,"28618":3,"28619":4,"28620":3,"28621":4,"28622":2,"28623":4,"28624":4,"28625":1,"28626":3,"28627":2,"28628":5,"28629":1,"28630":2,"28631":4,"28632":2,"28633":2,"28634":4,"28635":2,"28636":3,"28637":5,"28638":4,"28639":3,"28640":3,"28641":4,"28642":5,"28643":1,"28644":4,"28645":4,"28646":4,"28647":4,"28648":5,"28649":2,"28650":3,"28651":3,"28652":2,"28653":3,"28654":4,"28655":4,"28656":4,"28657":3,"28658":4,"28659":3,"28660":4,"28661":5,"28662":3,"28663":3,"28664":4,"28665":3,"28666":3,"28667":3,"28668":1,"28669":3,"28670":4,"28671":3,"28672":3,"28673":3,"28674":2,"28675":4,"28676":1,"28677":3,"28678":2,"28679":3,"28680":4,"28681":3,"28682":3,"28683":2,"28684":1,"28685":2,"28686":5,"28687":2,"28688":2,"28689":2,"28690":3,"28691":3,"28692":3,"28693":2,"28694":3,"28695":2,"28696":2,"28697":2,"28698":3,"28699":3,"28700":5,"28701":1,"28702":3,"28703":3,"28704":5,"28705":3,"28706":4,"28707":3,"28708":2,"28709":3,"28710":1,"28711":2,"28712":3,"28713":3,"28714":5,"28715":4,"28716":4,"28717":4,"28718":1,"28719":2,"28720":4,"28721":2,"28722":2,"28723":2,"28724":4,"28725":2,"28726":2,"28727":4,"28728":4,"28729":3,"28730":2,"28731":4,"28732":3,"28733":3,"28734":4,"28735":1,"28736":4,"28737":1,"28738":3,"28739":4,"28740":2,"28741":4,"28742":3,"28743":4,"28744":2,"28745":4,"28746":2,"28747":3,"28748":2,"28749":5,"28750":3,"28751":3,"28752":3,"28753":3,"28754":4,"28755":1,"28756":2,"28757":4,"28758":1,"28759":2,"28760":2,"28761":2,"28762":3,"28763":4,"28764":4,"28765":3,"28766":3,"28767":2,"28768":4,"28769":4,"28770":2,"28771":3,"28772":2,"28773":2,"28774":1,"28775":3,"28776":1,"28777":4,"28778":4,"28779":3,"28780":4,"28781":1,"28782":3,"28783":4,"28784":2,"28785":4,"28786":3,"28787":3,"28788":3,"28789":4,"28790":4,"28791":3,"28792":2,"28793":2,"28794":3,"28795":4,"28796":2,"28797":3,"28798":3,"28799":4,"28800":1,"28801":5,"28802":3,"28803":2,"28804":4,"28805":3,"28806":1,"28807":2,"28808":3,"28809":4,"28810":3,"28811":1,"28812":3,"28813":3,"28814":3,"28815":4,"28816":3,"28817":3,"28818":3,"28819":2,"28820":4,"28821":5,"28822":2,"28823":3,"28824":4,"28825":1,"28826":1,"28827":1,"28828":3,"28829":2,"28830":3,"28831":5,"28832":3,"28833":3,"28834":3,"28835":4,"28836":1,"28837":4,"28838":3,"28839":3,"28840":2,"28841":3,"28842":5,"28843":2,"28844":2,"28845":3,"28846":4,"28847":4,"28848":3,"28849":4,"28850":2,"28851":5,"28852":4,"28853":3,"28854":3,"28855":3,"28856":4,"28857":4,"28858":1,"28859":3,"28860":4,"28861":3,"28862":4,"28863":3,"28864":1,"28865":2,"28866":5,"28867":3,"28868":1,"28869":2,"28870":3,"28871":3,"28872":2,"28873":3,"28874":1,"28875":2,"28876":2,"28877":3,"28878":4,"28879":3,"28880":3,"28881":2,"28882":2,"28883":1,"28884":5,"28885":3,"28886":3,"28887":4,"28888":1,"28889":2,"28890":2,"28891":2,"28892":4,"28893":2,"28894":4,"28895":2,"28896":4,"28897":3,"28898":3,"28899":1,"28900":2,"28901":3,"28902":4,"28903":4,"28904":1,"28905":3,"28906":2,"28907":5,"28908":2,"28909":2,"28910":2,"28911":3,"28912":4,"28913":4,"28914":1,"28915":4,"28916":5,"28917":4,"28918":4,"28919":5,"28920":2,"28921":2,"28922":2,"28923":4,"28924":3,"28925":2,"28926":5,"28927":3,"28928":2,"28929":3,"28930":3,"28931":4,"28932":3,"28933":3,"28934":4,"28935":4,"28936":4,"28937":2,"28938":3,"28939":4,"28940":3,"28941":4,"28942":5,"28943":2,"28944":3,"28945":3,"28946":5,"28947":5,"28948":4,"28949":3,"28950":3,"28951":3,"28952":3,"28953":3,"28954":2,"28955":3,"28956":3,"28957":3,"28958":4,"28959":4,"28960":2,"28961":2,"28962":3,"28963":3,"28964":4,"28965":4,"28966":2,"28967":2,"28968":3,"28969":2,"28970":3,"28971":3,"28972":3,"28973":2,"28974":4,"28975":3,"28976":3,"28977":3,"28978":2,"28979":2,"28980":1,"28981":3,"28982":3,"28983":3,"28984":5,"28985":4,"28986":3,"28987":3,"28988":4,"28989":4,"28990":3,"28991":2,"28992":2,"28993":3,"28994":4,"28995":3,"28996":3,"28997":3,"28998":3,"28999":3,"29000":1,"29001":2,"29002":3,"29003":2,"29004":5,"29005":3,"29006":1,"29007":2,"29008":3,"29009":3,"29010":5,"29011":3,"29012":3,"29013":4,"29014":1,"29015":3,"29016":2,"29017":2,"29018":5,"29019":4,"29020":5,"29021":4,"29022":2,"29023":3,"29024":3,"29025":4,"29026":2,"29027":2,"29028":1,"29029":3,"29030":2,"29031":3,"29032":1,"29033":1,"29034":2,"29035":3,"29036":4,"29037":3,"29038":4,"29039":3,"29040":3,"29041":3,"29042":1,"29043":3,"29044":4,"29045":4,"29046":4,"29047":5,"29048":4,"29049":5,"29050":2,"29051":3,"29052":3,"29053":1,"29054":3,"29055":2,"29056":3,"29057":5,"29058":2,"29059":2,"29060":2,"29061":3,"29062":4,"29063":4,"29064":3,"29065":2,"29066":4,"29067":4,"29068":4,"29069":3,"29070":3,"29071":3,"29072":4,"29073":4,"29074":3,"29075":5,"29076":4,"29077":3,"29078":4,"29079":2,"29080":1,"29081":1,"29082":4,"29083":3,"29084":3,"29085":3,"29086":4,"29087":2,"29088":3,"29089":4,"29090":3,"29091":2,"29092":3,"29093":4,"29094":5,"29095":3,"29096":3,"29097":4,"29098":2,"29099":3,"29100":5,"29101":3,"29102":4,"29103":2,"29104":3,"29105":3,"29106":4,"29107":2,"29108":2,"29109":4,"29110":3,"29111":2,"29112":4,"29113":3,"29114":2,"29115":2,"29116":4,"29117":3,"29118":3,"29119":4,"29120":2,"29121":1,"29122":2,"29123":3,"29124":3,"29125":4,"29126":4,"29127":4,"29128":4,"29129":2,"29130":2,"29131":3,"29132":4,"29133":2,"29134":4,"29135":2,"29136":4,"29137":5,"29138":3,"29139":1,"29140":5,"29141":3,"29142":4,"29143":4,"29144":3,"29145":4,"29146":1,"29147":2,"29148":3,"29149":1,"29150":4,"29151":3,"29152":4,"29153":2,"29154":3,"29155":3,"29156":3,"29157":3,"29158":1,"29159":3,"29160":4,"29161":3,"29162":3,"29163":2,"29164":4,"29165":2,"29166":2,"29167":2,"29168":3,"29169":2,"29170":1,"29171":3,"29172":4,"29173":2,"29174":4,"29175":4,"29176":4,"29177":3,"29178":4,"29179":4,"29180":3,"29181":2,"29182":4,"29183":4,"29184":3,"29185":3,"29186":4,"29187":4,"29188":1,"29189":4,"29190":4,"29191":4,"29192":3,"29193":1,"29194":3,"29195":3,"29196":3,"29197":4,"29198":2,"29199":4,"29200":3,"29201":3,"29202":1,"29203":3,"29204":2,"29205":2,"29206":2,"29207":2,"29208":4,"29209":3,"29210":3,"29211":1,"29212":3,"29213":4,"29214":3,"29215":4,"29216":3,"29217":3,"29218":1,"29219":2,"29220":2,"29221":1,"29222":2,"29223":3,"29224":5,"29225":4,"29226":4,"29227":3,"29228":2,"29229":3,"29230":2,"29231":3,"29232":4,"29233":4,"29234":4,"29235":4,"29236":4,"29237":1,"29238":2,"29239":4,"29240":2,"29241":3,"29242":3,"29243":3,"29244":5,"29245":3,"29246":3,"29247":4,"29248":2,"29249":3,"29250":1,"29251":3,"29252":2,"29253":5,"29254":4,"29255":4,"29256":1,"29257":3,"29258":4,"29259":2,"29260":2,"29261":2,"29262":4,"29263":4,"29264":3,"29265":4,"29266":3,"29267":2,"29268":1,"29269":3,"29270":5,"29271":3,"29272":2,"29273":4,"29274":4,"29275":4,"29276":2,"29277":2,"29278":1,"29279":5,"29280":4,"29281":4,"29282":3,"29283":4,"29284":2,"29285":4,"29286":2,"29287":4,"29288":2,"29289":4,"29290":4,"29291":4,"29292":4,"29293":3,"29294":2,"29295":3,"29296":3,"29297":3,"29298":3,"29299":2,"29300":3,"29301":4,"29302":4,"29303":4,"29304":4,"29305":3,"29306":3,"29307":3,"29308":3,"29309":4,"29310":2,"29311":5,"29312":5,"29313":3,"29314":3,"29315":3,"29316":5,"29317":3,"29318":4,"29319":4,"29320":4,"29321":2,"29322":4,"29323":4,"29324":3,"29325":3,"29326":1,"29327":3,"29328":2,"29329":3,"29330":4,"29331":4,"29332":4,"29333":3,"29334":4,"29335":2,"29336":4,"29337":2,"29338":3,"29339":3,"29340":4,"29341":4,"29342":1,"29343":4,"29344":3,"29345":3,"29346":4,"29347":3,"29348":3,"29349":2,"29350":3,"29351":1,"29352":2,"29353":2,"29354":2,"29355":2,"29356":3,"29357":3,"29358":4,"29359":3,"29360":3,"29361":2,"29362":3,"29363":3,"29364":3,"29365":5,"29366":2,"29367":2,"29368":1,"29369":3,"29370":3,"29371":4,"29372":3,"29373":4,"29374":4,"29375":2,"29376":3,"29377":1,"29378":4,"29379":1,"29380":2,"29381":3,"29382":2,"29383":3,"29384":3,"29385":2,"29386":2,"29387":3,"29388":3,"29389":4,"29390":4,"29391":3,"29392":3,"29393":4,"29394":4,"29395":3,"29396":3,"29397":2,"29398":4,"29399":3,"29400":4,"29401":2,"29402":3,"29403":2,"29404":2,"29405":3,"29406":4,"29407":3,"29408":3,"29409":5,"29410":3,"29411":1,"29412":4,"29413":3,"29414":3,"29415":4,"29416":1,"29417":2,"29418":4,"29419":5,"29420":3,"29421":3,"29422":4,"29423":1,"29424":2,"29425":2,"29426":2,"29427":4,"29428":3,"29429":4,"29430":2,"29431":3,"29432":4,"29433":1,"29434":2,"29435":2,"29436":1,"29437":2,"29438":3,"29439":1,"29440":3,"29441":3,"29442":2,"29443":3,"29444":3,"29445":4,"29446":4,"29447":4,"29448":3,"29449":4,"29450":4,"29451":4,"29452":4,"29453":2,"29454":3,"29455":4,"29456":3,"29457":4,"29458":4,"29459":3,"29460":2,"29461":5,"29462":2,"29463":4,"29464":3,"29465":3,"29466":3,"29467":1,"29468":1,"29469":2,"29470":2,"29471":1,"29472":2,"29473":2,"29474":4,"29475":4,"29476":4,"29477":3,"29478":3,"29479":3,"29480":4,"29481":3,"29482":4,"29483":3,"29484":4,"29485":5,"29486":3,"29487":1,"29488":4,"29489":2,"29490":4,"29491":2,"29492":4,"29493":5,"29494":3,"29495":1,"29496":3,"29497":2,"29498":3,"29499":4,"29500":3,"29501":2,"29502":5,"29503":5,"29504":3,"29505":3,"29506":4,"29507":2,"29508":1,"29509":2,"29510":5,"29511":1,"29512":2,"29513":2,"29514":2,"29515":4,"29516":4,"29517":3,"29518":3,"29519":3,"29520":3,"29521":3,"29522":2,"29523":4,"29524":1,"29525":3,"29526":3,"29527":4,"29528":5,"29529":3,"29530":4,"29531":3,"29532":4,"29533":3,"29534":4,"29535":2,"29536":3,"29537":2,"29538":4,"29539":4,"29540":2,"29541":4,"29542":3,"29543":5,"29544":3,"29545":3,"29546":2,"29547":3,"29548":2,"29549":3,"29550":4,"29551":3,"29552":3,"29553":2,"29554":1,"29555":1,"29556":4,"29557":3,"29558":4,"29559":3,"29560":3,"29561":4,"29562":1,"29563":3,"29564":2,"29565":1,"29566":2,"29567":3,"29568":3,"29569":3,"29570":3,"29571":5,"29572":2,"29573":4,"29574":1,"29575":5,"29576":4,"29577":3,"29578":3,"29579":4,"29580":3,"29581":2,"29582":3,"29583":2,"29584":4,"29585":3,"29586":1,"29587":1,"29588":5,"29589":3,"29590":3,"29591":4,"29592":3,"29593":1,"29594":3,"29595":5,"29596":4,"29597":3,"29598":3,"29599":3,"29600":4,"29601":5,"29602":1,"29603":2,"29604":3,"29605":4,"29606":4,"29607":1,"29608":2,"29609":4,"29610":1,"29611":3,"29612":4,"29613":5,"29614":4,"29615":3,"29616":4,"29617":4,"29618":2,"29619":1,"29620":2,"29621":1,"29622":3,"29623":2,"29624":5,"29625":3,"29626":3,"29627":4,"29628":5,"29629":1,"29630":1,"29631":3,"29632":1,"29633":2,"29634":1,"29635":1,"29636":3,"29637":4,"29638":3,"29639":2,"29640":3,"29641":5,"29642":3,"29643":3,"29644":3,"29645":2,"29646":3,"29647":3,"29648":1,"29649":4,"29650":2,"29651":1,"29652":3,"29653":5,"29654":4,"29655":3,"29656":3,"29657":1,"29658":3,"29659":3,"29660":3,"29661":2,"29662":3,"29663":2,"29664":2,"29665":3,"29666":1,"29667":5,"29668":3,"29669":5,"29670":2,"29671":4,"29672":2,"29673":3,"29674":3,"29675":4,"29676":4,"29677":3,"29678":4,"29679":3,"29680":2,"29681":3,"29682":5,"29683":3,"29684":3,"29685":4,"29686":4,"29687":1,"29688":3,"29689":1,"29690":1,"29691":1,"29692":3,"29693":3,"29694":4,"29695":3,"29696":1,"29697":2,"29698":4,"29699":2,"29700":4,"29701":2,"29702":4,"29703":3,"29704":3,"29705":3,"29706":4,"29707":4,"29708":4,"29709":3,"29710":4,"29711":4,"29712":3,"29713":4,"29714":2,"29715":4,"29716":3,"29717":3,"29718":3,"29719":3,"29720":3,"29721":4,"29722":2,"29723":4,"29724":4,"29725":5,"29726":3,"29727":2,"29728":3,"29729":1,"29730":3,"29731":4,"29732":2,"29733":3,"29734":5,"29735":3,"29736":3,"29737":2,"29738":5,"29739":2,"29740":3,"29741":3,"29742":3,"29743":4,"29744":2,"29745":3,"29746":4,"29747":5,"29748":1,"29749":3,"29750":2,"29751":1,"29752":4,"29753":2,"29754":2,"29755":3,"29756":4,"29757":2,"29758":3,"29759":2,"29760":4,"29761":2,"29762":3,"29763":2,"29764":3,"29765":3,"29766":4,"29767":3,"29768":4,"29769":1,"29770":5,"29771":5,"29772":3,"29773":1,"29774":4,"29775":4,"29776":2,"29777":4,"29778":1,"29779":3,"29780":3,"29781":3,"29782":2,"29783":2,"29784":3,"29785":4,"29786":3,"29787":3,"29788":4,"29789":2,"29790":3,"29791":3,"29792":1,"29793":2,"29794":3,"29795":4,"29796":5,"29797":5,"29798":3,"29799":2,"29800":2,"29801":5,"29802":2,"29803":1,"29804":3,"29805":3,"29806":1,"29807":4,"29808":2,"29809":3,"29810":3,"29811":3,"29812":5,"29813":5,"29814":3,"29815":4,"29816":1,"29817":2,"29818":4,"29819":3,"29820":3,"29821":1,"29822":3,"29823":1,"29824":5,"29825":5,"29826":4,"29827":3,"29828":4,"29829":4,"29830":3,"29831":3,"29832":3,"29833":5,"29834":2,"29835":4,"29836":1,"29837":4,"29838":4,"29839":3,"29840":3,"29841":4,"29842":2,"29843":2,"29844":3,"29845":2,"29846":2,"29847":3,"29848":2,"29849":3,"29850":3,"29851":4,"29852":4,"29853":2,"29854":3,"29855":4,"29856":2,"29857":3,"29858":3,"29859":2,"29860":3,"29861":2,"29862":2,"29863":3,"29864":4,"29865":3,"29866":4,"29867":3,"29868":3,"29869":2,"29870":2,"29871":5,"29872":5,"29873":3,"29874":2,"29875":3,"29876":1,"29877":1,"29878":3,"29879":2,"29880":4,"29881":2,"29882":4,"29883":1,"29884":3,"29885":2,"29886":4,"29887":1,"29888":2,"29889":3,"29890":1,"29891":3,"29892":3,"29893":4,"29894":2,"29895":2,"29896":3,"29897":1,"29898":2,"29899":3,"29900":4,"29901":4,"29902":3,"29903":3,"29904":4,"29905":3,"29906":5,"29907":3,"29908":3,"29909":4,"29910":3,"29911":4,"29912":2,"29913":3,"29914":4,"29915":2,"29916":2,"29917":3,"29918":2,"29919":4,"29920":4,"29921":3,"29922":3,"29923":4,"29924":3,"29925":4,"29926":4,"29927":3,"29928":5,"29929":4,"29930":4,"29931":4,"29932":3,"29933":2,"29934":3,"29935":2,"29936":5,"29937":1,"29938":3,"29939":2,"29940":3,"29941":3,"29942":4,"29943":4,"29944":2,"29945":3,"29946":4,"29947":3,"29948":2,"29949":2,"29950":4,"29951":1,"29952":3,"29953":4,"29954":2,"29955":3,"29956":2,"29957":2,"29958":3,"29959":2,"29960":2,"29961":3,"29962":4,"29963":2,"29964":5,"29965":2,"29966":5,"29967":1,"29968":2,"29969":2,"29970":4,"29971":2,"29972":4,"29973":3,"29974":1,"29975":2,"29976":2,"29977":3,"29978":5,"29979":2,"29980":3,"29981":2,"29982":4,"29983":4,"29984":3,"29985":4,"29986":2,"29987":4,"29988":3,"29989":3,"29990":2,"29991":2,"29992":4,"29993":3,"29994":3,"29995":3,"29996":1,"29997":2,"29998":1,"29999":3,"30000":5,"30001":3,"30002":3,"30003":4,"30004":1,"30005":5,"30006":4,"30007":5,"30008":4,"30009":5,"30010":3,"30011":4,"30012":4,"30013":3,"30014":2,"30015":5,"30016":3,"30017":3,"30018":4,"30019":4,"30020":4,"30021":4,"30022":3,"30023":2,"30024":4,"30025":3,"30026":5,"30027":3,"30028":3,"30029":1,"30030":4,"30031":5,"30032":3,"30033":4,"30034":1,"30035":5,"30036":4,"30037":2,"30038":2,"30039":2,"30040":3,"30041":4,"30042":3,"30043":3,"30044":4,"30045":4,"30046":3,"30047":5,"30048":4,"30049":4,"30050":3,"30051":3,"30052":3,"30053":3,"30054":2,"30055":1,"30056":1,"30057":1,"30058":3,"30059":3,"30060":1,"30061":1,"30062":3,"30063":3,"30064":2,"30065":2,"30066":4,"30067":4,"30068":2,"30069":4,"30070":4,"30071":4,"30072":3,"30073":4,"30074":4,"30075":1,"30076":3,"30077":4,"30078":3,"30079":2,"30080":3,"30081":4,"30082":3,"30083":4,"30084":3,"30085":5,"30086":5,"30087":3,"30088":3,"30089":5,"30090":5,"30091":3,"30092":3,"30093":1,"30094":4,"30095":2,"30096":2,"30097":3,"30098":3,"30099":4,"30100":3,"30101":2,"30102":5,"30103":4,"30104":4,"30105":3,"30106":4,"30107":1,"30108":3,"30109":3,"30110":1,"30111":5,"30112":2,"30113":5,"30114":3,"30115":2,"30116":3,"30117":4,"30118":3,"30119":2,"30120":3,"30121":2,"30122":3,"30123":3,"30124":2,"30125":4,"30126":4,"30127":3,"30128":4,"30129":5,"30130":2,"30131":4,"30132":3,"30133":3,"30134":2,"30135":2,"30136":1,"30137":4,"30138":4,"30139":3,"30140":4,"30141":3,"30142":3,"30143":5,"30144":3,"30145":3,"30146":2,"30147":4,"30148":3,"30149":3,"30150":3,"30151":4,"30152":5,"30153":2,"30154":4,"30155":4,"30156":2,"30157":3,"30158":4,"30159":4,"30160":3,"30161":2,"30162":5,"30163":3,"30164":3,"30165":2,"30166":4,"30167":4,"30168":2,"30169":2,"30170":3,"30171":4,"30172":3,"30173":3,"30174":3,"30175":4,"30176":1,"30177":1,"30178":4,"30179":1,"30180":1,"30181":3,"30182":5,"30183":5,"30184":2,"30185":3,"30186":4,"30187":2,"30188":5,"30189":3,"30190":1,"30191":3,"30192":1,"30193":3,"30194":3,"30195":4,"30196":3,"30197":3,"30198":2,"30199":2,"30200":4,"30201":4,"30202":2,"30203":3,"30204":3,"30205":3,"30206":2,"30207":3,"30208":4,"30209":3,"30210":4,"30211":2,"30212":2,"30213":4,"30214":5,"30215":3,"30216":3,"30217":4,"30218":2,"30219":1,"30220":4,"30221":3,"30222":3,"30223":3,"30224":5,"30225":4,"30226":3,"30227":2,"30228":3,"30229":2,"30230":5,"30231":2,"30232":2,"30233":4,"30234":4,"30235":1,"30236":3,"30237":2,"30238":4,"30239":3,"30240":3,"30241":3,"30242":4,"30243":4,"30244":3,"30245":2,"30246":3,"30247":5,"30248":2,"30249":1,"30250":4,"30251":4,"30252":3,"30253":3,"30254":4,"30255":2,"30256":4,"30257":1,"30258":2,"30259":2,"30260":4,"30261":2,"30262":5,"30263":3,"30264":4,"30265":3,"30266":3,"30267":2,"30268":2,"30269":3,"30270":3,"30271":5,"30272":4,"30273":5,"30274":4,"30275":2,"30276":2,"30277":3,"30278":3,"30279":2,"30280":3,"30281":3,"30282":3,"30283":2,"30284":3,"30285":3,"30286":4,"30287":3,"30288":4,"30289":4,"30290":4,"30291":5,"30292":1,"30293":3,"30294":3,"30295":4,"30296":2,"30297":4,"30298":4,"30299":3,"30300":1,"30301":2,"30302":1,"30303":3,"30304":3,"30305":3,"30306":2,"30307":3,"30308":3,"30309":4,"30310":3,"30311":4,"30312":4,"30313":4,"30314":4,"30315":2,"30316":3,"30317":2,"30318":5,"30319":3,"30320":3,"30321":2,"30322":1,"30323":5,"30324":1,"30325":3,"30326":2,"30327":4,"30328":3,"30329":2,"30330":3,"30331":4,"30332":3,"30333":3,"30334":4,"30335":2,"30336":3,"30337":4,"30338":3,"30339":4,"30340":2,"30341":2,"30342":5,"30343":1,"30344":2,"30345":3,"30346":5,"30347":1,"30348":3,"30349":3,"30350":1,"30351":5,"30352":2,"30353":3,"30354":4,"30355":3,"30356":4,"30357":4,"30358":4,"30359":3,"30360":3,"30361":4,"30362":4,"30363":3,"30364":3,"30365":3,"30366":3,"30367":1,"30368":2,"30369":4,"30370":2,"30371":3,"30372":3,"30373":3,"30374":1,"30375":4,"30376":4,"30377":5,"30378":3,"30379":3,"30380":2,"30381":3,"30382":1,"30383":3,"30384":2,"30385":3,"30386":2,"30387":4,"30388":4,"30389":3,"30390":1,"30391":2,"30392":3,"30393":5,"30394":1,"30395":4,"30396":3,"30397":4,"30398":1,"30399":3,"30400":4,"30401":4,"30402":2,"30403":3,"30404":2,"30405":4,"30406":3,"30407":4,"30408":3,"30409":3,"30410":4,"30411":3,"30412":3,"30413":2,"30414":4,"30415":4,"30416":5,"30417":2,"30418":4,"30419":3,"30420":3,"30421":2,"30422":4,"30423":3,"30424":1,"30425":3,"30426":4,"30427":3,"30428":4,"30429":3,"30430":2,"30431":3,"30432":4,"30433":4,"30434":3,"30435":2,"30436":1,"30437":4,"30438":1,"30439":2,"30440":3,"30441":5,"30442":4,"30443":3,"30444":2,"30445":2,"30446":3,"30447":3,"30448":2,"30449":2,"30450":3,"30451":3,"30452":3,"30453":4,"30454":3,"30455":4,"30456":1,"30457":2,"30458":1,"30459":3,"30460":2,"30461":3,"30462":4,"30463":2,"30464":1,"30465":4,"30466":3,"30467":3,"30468":2,"30469":3,"30470":3,"30471":3,"30472":2,"30473":4,"30474":4,"30475":3,"30476":4,"30477":4,"30478":2,"30479":2,"30480":4,"30481":4,"30482":3,"30483":4,"30484":4,"30485":3,"30486":4,"30487":4,"30488":2,"30489":2,"30490":4,"30491":3,"30492":2,"30493":2,"30494":3,"30495":4,"30496":1,"30497":1,"30498":3,"30499":4,"30500":2,"30501":4,"30502":2,"30503":3,"30504":4,"30505":3,"30506":4,"30507":1,"30508":3,"30509":4,"30510":3,"30511":4,"30512":3,"30513":5,"30514":2,"30515":5,"30516":3,"30517":5,"30518":3,"30519":4,"30520":1,"30521":1,"30522":3,"30523":5,"30524":3,"30525":3,"30526":2,"30527":2,"30528":1,"30529":4,"30530":2,"30531":2,"30532":2,"30533":1,"30534":3,"30535":3,"30536":3,"30537":3,"30538":2,"30539":3,"30540":2,"30541":4,"30542":4,"30543":5,"30544":3,"30545":4,"30546":2,"30547":4,"30548":2,"30549":3,"30550":4,"30551":3,"30552":3,"30553":4,"30554":4,"30555":4,"30556":2,"30557":4,"30558":3,"30559":3,"30560":4,"30561":4,"30562":4,"30563":2,"30564":2,"30565":2,"30566":5,"30567":4,"30568":4,"30569":4,"30570":2,"30571":3,"30572":3,"30573":5,"30574":3,"30575":3,"30576":5,"30577":1,"30578":4,"30579":4,"30580":4,"30581":5,"30582":3,"30583":3,"30584":5,"30585":2,"30586":4,"30587":5,"30588":4,"30589":2,"30590":3,"30591":4,"30592":2,"30593":4,"30594":4,"30595":2,"30596":3,"30597":3,"30598":5,"30599":3,"30600":1,"30601":5,"30602":4,"30603":2,"30604":4,"30605":3,"30606":1,"30607":4,"30608":2,"30609":3,"30610":3,"30611":4,"30612":3,"30613":4,"30614":4,"30615":2,"30616":2,"30617":2,"30618":4,"30619":3,"30620":4,"30621":2,"30622":3,"30623":3,"30624":2,"30625":2,"30626":3,"30627":4,"30628":3,"30629":2,"30630":1,"30631":2,"30632":3,"30633":1,"30634":3,"30635":2,"30636":4,"30637":4,"30638":3,"30639":5,"30640":4,"30641":2,"30642":2,"30643":2,"30644":4,"30645":1,"30646":3,"30647":2,"30648":3,"30649":2,"30650":2,"30651":2,"30652":4,"30653":2,"30654":2,"30655":3,"30656":3,"30657":3,"30658":1,"30659":4,"30660":4,"30661":3,"30662":3,"30663":2,"30664":3,"30665":2,"30666":3,"30667":3,"30668":3,"30669":3,"30670":2,"30671":3,"30672":4,"30673":3,"30674":4,"30675":3,"30676":3,"30677":4,"30678":5,"30679":4,"30680":2,"30681":4,"30682":1,"30683":4,"30684":1,"30685":3,"30686":4,"30687":4,"30688":4,"30689":3,"30690":4,"30691":5,"30692":4,"30693":1,"30694":3,"30695":2,"30696":1,"30697":2,"30698":3,"30699":4,"30700":3,"30701":3,"30702":2,"30703":3,"30704":1,"30705":3,"30706":4,"30707":3,"30708":3,"30709":3,"30710":3,"30711":2,"30712":4,"30713":3,"30714":2,"30715":5,"30716":4,"30717":2,"30718":3,"30719":1,"30720":1,"30721":4,"30722":1,"30723":3,"30724":3,"30725":1,"30726":2,"30727":3,"30728":4,"30729":3,"30730":3,"30731":3,"30732":2,"30733":2,"30734":2,"30735":3,"30736":1,"30737":3,"30738":3,"30739":5,"30740":3,"30741":3,"30742":5,"30743":4,"30744":3,"30745":3,"30746":3,"30747":3,"30748":2,"30749":1,"30750":4,"30751":3,"30752":1,"30753":1,"30754":5,"30755":2,"30756":2,"30757":3,"30758":5,"30759":1,"30760":2,"30761":2,"30762":4,"30763":3,"30764":1,"30765":5,"30766":4,"30767":2,"30768":5,"30769":3,"30770":2,"30771":3,"30772":4,"30773":5,"30774":3,"30775":3,"30776":5,"30777":2,"30778":3,"30779":1,"30780":3,"30781":2,"30782":3,"30783":2,"30784":1,"30785":3,"30786":5,"30787":3,"30788":2,"30789":3,"30790":3,"30791":2,"30792":3,"30793":3,"30794":4,"30795":2,"30796":4,"30797":2,"30798":3,"30799":2,"30800":3,"30801":3,"30802":1,"30803":3,"30804":3,"30805":3,"30806":4,"30807":3,"30808":2,"30809":5,"30810":5,"30811":4,"30812":2,"30813":2,"30814":1,"30815":3,"30816":2,"30817":1,"30818":2,"30819":1,"30820":4,"30821":5,"30822":4,"30823":2,"30824":4,"30825":2,"30826":5,"30827":3,"30828":2,"30829":5,"30830":3,"30831":3,"30832":1,"30833":3,"30834":5,"30835":2,"30836":4,"30837":4,"30838":4,"30839":3,"30840":1,"30841":3,"30842":3,"30843":2,"30844":3,"30845":3,"30846":3,"30847":2,"30848":2,"30849":4,"30850":4,"30851":3,"30852":3,"30853":2,"30854":2,"30855":5,"30856":2,"30857":4,"30858":4,"30859":5,"30860":3,"30861":2,"30862":3,"30863":3,"30864":5,"30865":4,"30866":2,"30867":2,"30868":3,"30869":3,"30870":2,"30871":2,"30872":3,"30873":2,"30874":3,"30875":1,"30876":2,"30877":3,"30878":1,"30879":3,"30880":3,"30881":3,"30882":2,"30883":3,"30884":1,"30885":2,"30886":5,"30887":4,"30888":1,"30889":5,"30890":1,"30891":3,"30892":4,"30893":2,"30894":3,"30895":4,"30896":5,"30897":4,"30898":3,"30899":4,"30900":3,"30901":4,"30902":2,"30903":3,"30904":1,"30905":3,"30906":2,"30907":2,"30908":2,"30909":4,"30910":3,"30911":2,"30912":4,"30913":2,"30914":3,"30915":4,"30916":3,"30917":4,"30918":2,"30919":3,"30920":2,"30921":3,"30922":4,"30923":3,"30924":2,"30925":2,"30926":3,"30927":5,"30928":3,"30929":3,"30930":3,"30931":2,"30932":5,"30933":4,"30934":5,"30935":3,"30936":3,"30937":3,"30938":3,"30939":1,"30940":3,"30941":2,"30942":2,"30943":3,"30944":1,"30945":3,"30946":4,"30947":3,"30948":3,"30949":3,"30950":4,"30951":5,"30952":1,"30953":4,"30954":5,"30955":4,"30956":5,"30957":5,"30958":5,"30959":2,"30960":4,"30961":3,"30962":3,"30963":3,"30964":5,"30965":3,"30966":3,"30967":3,"30968":4,"30969":3,"30970":5,"30971":4,"30972":3,"30973":4,"30974":3,"30975":5,"30976":4,"30977":2,"30978":2,"30979":3,"30980":3,"30981":4,"30982":5,"30983":4,"30984":5,"30985":2,"30986":5,"30987":4,"30988":5,"30989":4,"30990":2,"30991":3,"30992":5,"30993":1,"30994":2,"30995":3,"30996":3,"30997":3,"30998":5,"30999":1,"31000":3,"31001":2,"31002":3,"31003":4,"31004":4,"31005":4,"31006":3,"31007":4,"31008":4,"31009":2,"31010":2,"31011":4,"31012":5,"31013":5,"31014":1,"31015":1,"31016":4,"31017":1,"31018":4,"31019":2,"31020":1,"31021":1,"31022":2,"31023":5,"31024":1,"31025":2,"31026":3,"31027":2,"31028":3,"31029":1,"31030":1,"31031":3,"31032":4,"31033":3,"31034":3,"31035":1,"31036":3,"31037":1,"31038":1,"31039":1,"31040":2,"31041":2,"31042":5,"31043":4,"31044":3,"31045":3,"31046":3,"31047":3,"31048":3,"31049":2,"31050":4,"31051":3,"31052":3,"31053":3,"31054":3,"31055":4,"31056":3,"31057":2,"31058":3,"31059":3,"31060":3,"31061":4,"31062":2,"31063":3,"31064":2,"31065":1,"31066":1,"31067":3,"31068":4,"31069":4,"31070":4,"31071":3,"31072":3,"31073":4,"31074":5,"31075":2,"31076":4,"31077":3,"31078":1,"31079":5,"31080":2,"31081":1,"31082":4,"31083":2,"31084":4,"31085":4,"31086":5,"31087":4,"31088":1,"31089":4,"31090":1,"31091":4,"31092":1,"31093":4,"31094":2,"31095":3,"31096":1,"31097":3,"31098":5,"31099":3,"31100":2,"31101":2,"31102":4,"31103":2,"31104":1,"31105":4,"31106":3,"31107":1,"31108":4,"31109":5,"31110":4,"31111":3,"31112":1,"31113":3,"31114":1,"31115":3,"31116":4,"31117":3,"31118":3,"31119":1,"31120":3,"31121":3,"31122":4,"31123":4,"31124":5,"31125":3,"31126":3,"31127":1,"31128":4,"31129":4,"31130":5,"31131":3,"31132":4,"31133":3,"31134":3,"31135":2,"31136":4,"31137":4,"31138":3,"31139":3,"31140":4,"31141":4,"31142":4,"31143":3,"31144":2,"31145":3,"31146":1,"31147":3,"31148":4,"31149":5,"31150":4,"31151":4,"31152":3,"31153":4,"31154":2,"31155":5,"31156":4,"31157":4,"31158":5,"31159":2,"31160":4,"31161":2,"31162":1,"31163":2,"31164":2,"31165":3,"31166":5,"31167":3,"31168":3,"31169":3,"31170":4,"31171":5,"31172":3,"31173":3,"31174":4,"31175":2,"31176":3,"31177":4,"31178":3,"31179":2,"31180":4,"31181":3,"31182":2,"31183":2,"31184":1,"31185":2,"31186":1,"31187":5,"31188":4,"31189":3,"31190":3,"31191":2,"31192":3,"31193":2,"31194":5,"31195":3,"31196":3,"31197":3,"31198":3,"31199":2,"31200":2,"31201":2,"31202":2,"31203":3,"31204":5,"31205":1,"31206":2,"31207":5,"31208":3,"31209":5,"31210":3,"31211":1,"31212":1,"31213":4,"31214":3,"31215":4,"31216":3,"31217":4,"31218":3,"31219":3,"31220":1,"31221":3,"31222":3,"31223":2,"31224":3,"31225":4,"31226":4,"31227":3,"31228":3,"31229":4,"31230":2,"31231":3,"31232":2,"31233":3,"31234":2,"31235":2,"31236":4,"31237":2,"31238":1,"31239":1,"31240":4,"31241":3,"31242":5,"31243":3,"31244":3,"31245":1,"31246":5,"31247":5,"31248":3,"31249":4,"31250":3,"31251":4,"31252":1,"31253":4,"31254":5,"31255":4,"31256":3,"31257":3,"31258":3,"31259":3,"31260":3,"31261":2,"31262":2,"31263":3,"31264":3,"31265":3,"31266":4,"31267":2,"31268":3,"31269":4,"31270":2,"31271":3,"31272":3,"31273":2,"31274":4,"31275":1,"31276":3,"31277":3,"31278":1,"31279":2,"31280":2,"31281":3,"31282":3,"31283":3,"31284":3,"31285":4,"31286":5,"31287":4,"31288":4,"31289":2,"31290":2,"31291":2,"31292":2,"31293":5,"31294":2,"31295":4,"31296":4,"31297":5,"31298":4,"31299":5,"31300":2,"31301":4,"31302":3,"31303":4,"31304":3,"31305":3,"31306":5,"31307":4,"31308":2,"31309":2,"31310":4,"31311":4,"31312":2,"31313":2,"31314":3,"31315":3,"31316":1,"31317":4,"31318":3,"31319":4,"31320":4,"31321":4,"31322":2,"31323":5,"31324":2,"31325":3,"31326":3,"31327":2,"31328":1,"31329":3,"31330":2,"31331":4,"31332":3,"31333":3,"31334":2,"31335":3,"31336":3,"31337":2,"31338":5,"31339":2,"31340":2,"31341":4,"31342":3,"31343":2,"31344":3,"31345":3,"31346":4,"31347":2,"31348":3,"31349":4,"31350":2,"31351":2,"31352":1,"31353":3,"31354":3,"31355":2,"31356":4,"31357":3,"31358":3,"31359":4,"31360":4,"31361":2,"31362":2,"31363":4,"31364":2,"31365":2,"31366":5,"31367":2,"31368":5,"31369":2,"31370":3,"31371":3,"31372":1,"31373":3,"31374":3,"31375":3,"31376":1,"31377":3,"31378":1,"31379":3,"31380":3,"31381":4,"31382":2,"31383":4,"31384":2,"31385":4,"31386":4,"31387":3,"31388":4,"31389":3,"31390":4,"31391":3,"31392":3,"31393":1,"31394":1,"31395":3,"31396":5,"31397":4,"31398":2,"31399":4,"31400":2,"31401":3,"31402":4,"31403":3,"31404":4,"31405":4,"31406":5,"31407":2,"31408":3,"31409":1,"31410":5,"31411":3,"31412":2,"31413":4,"31414":4,"31415":3,"31416":3,"31417":4,"31418":1,"31419":3,"31420":3,"31421":5,"31422":2,"31423":5,"31424":3,"31425":3,"31426":3,"31427":3,"31428":4,"31429":4,"31430":2,"31431":2,"31432":2,"31433":1,"31434":3,"31435":3,"31436":4,"31437":4,"31438":3,"31439":4,"31440":3,"31441":4,"31442":2,"31443":3,"31444":1,"31445":3,"31446":4,"31447":4,"31448":2,"31449":3,"31450":2,"31451":3,"31452":3,"31453":4,"31454":4,"31455":5,"31456":3,"31457":3,"31458":2,"31459":3,"31460":2,"31461":4,"31462":2,"31463":2,"31464":3,"31465":3,"31466":2,"31467":3,"31468":5,"31469":4,"31470":5,"31471":1,"31472":3,"31473":4,"31474":2,"31475":2,"31476":5,"31477":4,"31478":4,"31479":3,"31480":2,"31481":4,"31482":3,"31483":2,"31484":5,"31485":1,"31486":4,"31487":2,"31488":5,"31489":4,"31490":3,"31491":3,"31492":2,"31493":5,"31494":2,"31495":3,"31496":3,"31497":4,"31498":4,"31499":2,"31500":4,"31501":5,"31502":4,"31503":4,"31504":3,"31505":4,"31506":2,"31507":2,"31508":3,"31509":3,"31510":3,"31511":4,"31512":3,"31513":2,"31514":3,"31515":3,"31516":2,"31517":3,"31518":3,"31519":3,"31520":4,"31521":3,"31522":2,"31523":2,"31524":2,"31525":3,"31526":2,"31527":3,"31528":3,"31529":2,"31530":3,"31531":3,"31532":4,"31533":3,"31534":4,"31535":3,"31536":4,"31537":3,"31538":3,"31539":1,"31540":3,"31541":1,"31542":3,"31543":5,"31544":2,"31545":2,"31546":4,"31547":2,"31548":3,"31549":3,"31550":1,"31551":4,"31552":4,"31553":2,"31554":2,"31555":3,"31556":1,"31557":2,"31558":3,"31559":2,"31560":3,"31561":2,"31562":3,"31563":3,"31564":4,"31565":3,"31566":3,"31567":3,"31568":4,"31569":2,"31570":2,"31571":4,"31572":5,"31573":4,"31574":3,"31575":4,"31576":3,"31577":5,"31578":2,"31579":3,"31580":2,"31581":3,"31582":3,"31583":1,"31584":1,"31585":3,"31586":1,"31587":3,"31588":3,"31589":2,"31590":5,"31591":4,"31592":4,"31593":3,"31594":2,"31595":5,"31596":4,"31597":4,"31598":4,"31599":2,"31600":2,"31601":3,"31602":3,"31603":3,"31604":3,"31605":3,"31606":4,"31607":1,"31608":4,"31609":2,"31610":2,"31611":3,"31612":2,"31613":5,"31614":3,"31615":1,"31616":4,"31617":4,"31618":2,"31619":2,"31620":3,"31621":3,"31622":3,"31623":3,"31624":5,"31625":1,"31626":3,"31627":2,"31628":3,"31629":5,"31630":2,"31631":3,"31632":2,"31633":4,"31634":2,"31635":3,"31636":3,"31637":3,"31638":3,"31639":4,"31640":3,"31641":4,"31642":1,"31643":1,"31644":2,"31645":4,"31646":2,"31647":1,"31648":3,"31649":3,"31650":2,"31651":3,"31652":2,"31653":3,"31654":1,"31655":4,"31656":2,"31657":3,"31658":3,"31659":5,"31660":2,"31661":4,"31662":1,"31663":1,"31664":2,"31665":2,"31666":4,"31667":5,"31668":4,"31669":2,"31670":2,"31671":1,"31672":3,"31673":3,"31674":1,"31675":2,"31676":4,"31677":4,"31678":2,"31679":2,"31680":1,"31681":2,"31682":5,"31683":2,"31684":1,"31685":2,"31686":2,"31687":3,"31688":3,"31689":3,"31690":1,"31691":3,"31692":3,"31693":1,"31694":3,"31695":4,"31696":3,"31697":3,"31698":3,"31699":2,"31700":1,"31701":3,"31702":4,"31703":3,"31704":2,"31705":3,"31706":3,"31707":3,"31708":3,"31709":3,"31710":4,"31711":4,"31712":4,"31713":5,"31714":3,"31715":4,"31716":1,"31717":5,"31718":3,"31719":3,"31720":1,"31721":3,"31722":3,"31723":4,"31724":2,"31725":4,"31726":2,"31727":2,"31728":3,"31729":3,"31730":5,"31731":3,"31732":1,"31733":5,"31734":3,"31735":4,"31736":4,"31737":2,"31738":3,"31739":4,"31740":3,"31741":2,"31742":2,"31743":2,"31744":1,"31745":3,"31746":1,"31747":3,"31748":3,"31749":1,"31750":3,"31751":3,"31752":4,"31753":2,"31754":2,"31755":4,"31756":3,"31757":4,"31758":3,"31759":2,"31760":5,"31761":4,"31762":2,"31763":4,"31764":2,"31765":4,"31766":5,"31767":5,"31768":4,"31769":1,"31770":3,"31771":2,"31772":2,"31773":1,"31774":2,"31775":2,"31776":3,"31777":4,"31778":4,"31779":3,"31780":4,"31781":3,"31782":3,"31783":3,"31784":3,"31785":3,"31786":4,"31787":1,"31788":2,"31789":3,"31790":4,"31791":3,"31792":4,"31793":4,"31794":3,"31795":5,"31796":3,"31797":3,"31798":3,"31799":4,"31800":5,"31801":1,"31802":2,"31803":4,"31804":2,"31805":3,"31806":4,"31807":1,"31808":2,"31809":1,"31810":4,"31811":3,"31812":3,"31813":3,"31814":3,"31815":2,"31816":1,"31817":1,"31818":4,"31819":3,"31820":2,"31821":2,"31822":3,"31823":2,"31824":3,"31825":1,"31826":1,"31827":5,"31828":2,"31829":3,"31830":4,"31831":3,"31832":5,"31833":4,"31834":4,"31835":3,"31836":4,"31837":3,"31838":4,"31839":3,"31840":3,"31841":2,"31842":2,"31843":4,"31844":3,"31845":3,"31846":3,"31847":2,"31848":3,"31849":2,"31850":4,"31851":3,"31852":4,"31853":2,"31854":4,"31855":3,"31856":3,"31857":3,"31858":4,"31859":3,"31860":4,"31861":4,"31862":2,"31863":2,"31864":2,"31865":4,"31866":2,"31867":5,"31868":4,"31869":2,"31870":4,"31871":4,"31872":2,"31873":5,"31874":1,"31875":3,"31876":2,"31877":3,"31878":1,"31879":2,"31880":3,"31881":1,"31882":5,"31883":3,"31884":2,"31885":2,"31886":3,"31887":4,"31888":3,"31889":3,"31890":2,"31891":5,"31892":3,"31893":1,"31894":4,"31895":5,"31896":5,"31897":2,"31898":2,"31899":3,"31900":3,"31901":4,"31902":1,"31903":4,"31904":4,"31905":2,"31906":3,"31907":3,"31908":4,"31909":1,"31910":1,"31911":3,"31912":2,"31913":3,"31914":4,"31915":1,"31916":1,"31917":2,"31918":4,"31919":4,"31920":4,"31921":3,"31922":3,"31923":2,"31924":3,"31925":4,"31926":3,"31927":4,"31928":3,"31929":4,"31930":4,"31931":3,"31932":2,"31933":4,"31934":2,"31935":3,"31936":2,"31937":1,"31938":1,"31939":2,"31940":4,"31941":4,"31942":4,"31943":4,"31944":3,"31945":4,"31946":3,"31947":4,"31948":3,"31949":4,"31950":5,"31951":4,"31952":3,"31953":3,"31954":3,"31955":1,"31956":5,"31957":4,"31958":1,"31959":4,"31960":2,"31961":3,"31962":2,"31963":4,"31964":4,"31965":5,"31966":3,"31967":2,"31968":5,"31969":2,"31970":3,"31971":2,"31972":1,"31973":2,"31974":2,"31975":2,"31976":2,"31977":2,"31978":1,"31979":3,"31980":3,"31981":3,"31982":2,"31983":3,"31984":3,"31985":3,"31986":5,"31987":3,"31988":3,"31989":1,"31990":3,"31991":4,"31992":1,"31993":4,"31994":1,"31995":2,"31996":1,"31997":1,"31998":4,"31999":4,"32000":3,"32001":3,"32002":3,"32003":3,"32004":4,"32005":3,"32006":2,"32007":4,"32008":4,"32009":2,"32010":4,"32011":3,"32012":3,"32013":3,"32014":3,"32015":3,"32016":3,"32017":3,"32018":4,"32019":3,"32020":1,"32021":2,"32022":5,"32023":3,"32024":5,"32025":4,"32026":4,"32027":4,"32028":4,"32029":3,"32030":2,"32031":3,"32032":5,"32033":4,"32034":2,"32035":3,"32036":4,"32037":3,"32038":3,"32039":2,"32040":3,"32041":4,"32042":2,"32043":2,"32044":4,"32045":3,"32046":3,"32047":5,"32048":3,"32049":3,"32050":3,"32051":2,"32052":3,"32053":4,"32054":2,"32055":4,"32056":3,"32057":4,"32058":2,"32059":3,"32060":4,"32061":3,"32062":3,"32063":3,"32064":2,"32065":2,"32066":4,"32067":4,"32068":2,"32069":5,"32070":2,"32071":4,"32072":3,"32073":2,"32074":3,"32075":3,"32076":3,"32077":3,"32078":4,"32079":4,"32080":2,"32081":2,"32082":3,"32083":3,"32084":3,"32085":2,"32086":5,"32087":3,"32088":2,"32089":2,"32090":4,"32091":1,"32092":4,"32093":3,"32094":4,"32095":1,"32096":3,"32097":3,"32098":4,"32099":5,"32100":2,"32101":3,"32102":3,"32103":1,"32104":1,"32105":1,"32106":5,"32107":3,"32108":3,"32109":3,"32110":4,"32111":2,"32112":2,"32113":2,"32114":4,"32115":4,"32116":1,"32117":4,"32118":4,"32119":2,"32120":2,"32121":3,"32122":3,"32123":4,"32124":4,"32125":3,"32126":4,"32127":3,"32128":4,"32129":4,"32130":4,"32131":3,"32132":4,"32133":5,"32134":2,"32135":4,"32136":4,"32137":2,"32138":4,"32139":4,"32140":5,"32141":3,"32142":2,"32143":3,"32144":5,"32145":3,"32146":3,"32147":4,"32148":3,"32149":3,"32150":3,"32151":1,"32152":1,"32153":3,"32154":4,"32155":4,"32156":4,"32157":3,"32158":4,"32159":2,"32160":4,"32161":3,"32162":2,"32163":3,"32164":3,"32165":3,"32166":3,"32167":3,"32168":3,"32169":5,"32170":4,"32171":3,"32172":4,"32173":3,"32174":3,"32175":3,"32176":4,"32177":1,"32178":4,"32179":2,"32180":4,"32181":4,"32182":2,"32183":1,"32184":3,"32185":3,"32186":4,"32187":2,"32188":4,"32189":3,"32190":3,"32191":4,"32192":3,"32193":4,"32194":3,"32195":2,"32196":1,"32197":4,"32198":3,"32199":3,"32200":2,"32201":3,"32202":5,"32203":4,"32204":4,"32205":3,"32206":4,"32207":2,"32208":1,"32209":1,"32210":3,"32211":4,"32212":3,"32213":1,"32214":2,"32215":2,"32216":1,"32217":4,"32218":4,"32219":3,"32220":3,"32221":2,"32222":2,"32223":3,"32224":3,"32225":3,"32226":3,"32227":4,"32228":4,"32229":3,"32230":4,"32231":4,"32232":4,"32233":4,"32234":4,"32235":3,"32236":3,"32237":1,"32238":3,"32239":2,"32240":4,"32241":1,"32242":3,"32243":2,"32244":3,"32245":3,"32246":3,"32247":3,"32248":4,"32249":4,"32250":3,"32251":3,"32252":4,"32253":3,"32254":4,"32255":2,"32256":4,"32257":4,"32258":3,"32259":4,"32260":3,"32261":3,"32262":1,"32263":4,"32264":4,"32265":4,"32266":3,"32267":3,"32268":4,"32269":2,"32270":3,"32271":3,"32272":3,"32273":3,"32274":3,"32275":3,"32276":2,"32277":3,"32278":2,"32279":3,"32280":3,"32281":4,"32282":3,"32283":3,"32284":5,"32285":4,"32286":3,"32287":3,"32288":2,"32289":3,"32290":3,"32291":3,"32292":2,"32293":4,"32294":4,"32295":3,"32296":3,"32297":3,"32298":3,"32299":3,"32300":5,"32301":4,"32302":2,"32303":1,"32304":3,"32305":4,"32306":4,"32307":2,"32308":4,"32309":3,"32310":3,"32311":3,"32312":4,"32313":2,"32314":3,"32315":3,"32316":3,"32317":5,"32318":1,"32319":5,"32320":4,"32321":3,"32322":3,"32323":1,"32324":3,"32325":1,"32326":3,"32327":3,"32328":3,"32329":2,"32330":2,"32331":1,"32332":4,"32333":3,"32334":4,"32335":1,"32336":2,"32337":2,"32338":4,"32339":3,"32340":2,"32341":3,"32342":4,"32343":3,"32344":4,"32345":3,"32346":4,"32347":1,"32348":5,"32349":2,"32350":1,"32351":5,"32352":4,"32353":3,"32354":4,"32355":4,"32356":1,"32357":3,"32358":2,"32359":3,"32360":5,"32361":2,"32362":2,"32363":5,"32364":3,"32365":2,"32366":3,"32367":3,"32368":3,"32369":5,"32370":5,"32371":2,"32372":2,"32373":4,"32374":2,"32375":2,"32376":2,"32377":4,"32378":3,"32379":3,"32380":4,"32381":3,"32382":3,"32383":2,"32384":4,"32385":2,"32386":5,"32387":1,"32388":3,"32389":2,"32390":2,"32391":4,"32392":4,"32393":3,"32394":1,"32395":1,"32396":3,"32397":5,"32398":5,"32399":2,"32400":1,"32401":4,"32402":3,"32403":1,"32404":3,"32405":3,"32406":3,"32407":1,"32408":2,"32409":2,"32410":4,"32411":2,"32412":3,"32413":3,"32414":3,"32415":2,"32416":5,"32417":2,"32418":3,"32419":1,"32420":3,"32421":2,"32422":3,"32423":3,"32424":4,"32425":2,"32426":2,"32427":1,"32428":3,"32429":3,"32430":3,"32431":2,"32432":5,"32433":3,"32434":2,"32435":2,"32436":4,"32437":1,"32438":3,"32439":4,"32440":4,"32441":2,"32442":1,"32443":2,"32444":4,"32445":5,"32446":2,"32447":2,"32448":3,"32449":5,"32450":4,"32451":1,"32452":4,"32453":4,"32454":4,"32455":3,"32456":4,"32457":2,"32458":1,"32459":1,"32460":4,"32461":5,"32462":5,"32463":3,"32464":3,"32465":4,"32466":2,"32467":3,"32468":3,"32469":5,"32470":3,"32471":3,"32472":5,"32473":4,"32474":5,"32475":4,"32476":3,"32477":4,"32478":3,"32479":3,"32480":4,"32481":2,"32482":4,"32483":4,"32484":4,"32485":3,"32486":1,"32487":3,"32488":1,"32489":2,"32490":3,"32491":2,"32492":1,"32493":4,"32494":3,"32495":3,"32496":2,"32497":4,"32498":4,"32499":4,"32500":2,"32501":3,"32502":5,"32503":5,"32504":5,"32505":1,"32506":4,"32507":3,"32508":1,"32509":4,"32510":2,"32511":3,"32512":2,"32513":3,"32514":3,"32515":3,"32516":1,"32517":4,"32518":5,"32519":2,"32520":4,"32521":4,"32522":2,"32523":3,"32524":5,"32525":4,"32526":4,"32527":3,"32528":1,"32529":5,"32530":2,"32531":3,"32532":4,"32533":3,"32534":3,"32535":4,"32536":1,"32537":1,"32538":3,"32539":4,"32540":4,"32541":3,"32542":4,"32543":2,"32544":2,"32545":4,"32546":5,"32547":4,"32548":2,"32549":4,"32550":2,"32551":2,"32552":3,"32553":4,"32554":3,"32555":1,"32556":5,"32557":4,"32558":3,"32559":3,"32560":3,"32561":3,"32562":2,"32563":3,"32564":3,"32565":4,"32566":5,"32567":4,"32568":4,"32569":3,"32570":2,"32571":4,"32572":4,"32573":2,"32574":5,"32575":3,"32576":2,"32577":4,"32578":4,"32579":2,"32580":4,"32581":1,"32582":2,"32583":2,"32584":4,"32585":1,"32586":4,"32587":4,"32588":2,"32589":2,"32590":4,"32591":2,"32592":2,"32593":3,"32594":3,"32595":4,"32596":3,"32597":3,"32598":1,"32599":4,"32600":3,"32601":1,"32602":3,"32603":3,"32604":3,"32605":2,"32606":4,"32607":3,"32608":2,"32609":3,"32610":2,"32611":3,"32612":2,"32613":3,"32614":5,"32615":3,"32616":4,"32617":3,"32618":3,"32619":3,"32620":5,"32621":2,"32622":4,"32623":1,"32624":2,"32625":2,"32626":4,"32627":3,"32628":5,"32629":4,"32630":4,"32631":3,"32632":3,"32633":3,"32634":2,"32635":3,"32636":1,"32637":3,"32638":4,"32639":1,"32640":4,"32641":4,"32642":3,"32643":4,"32644":2,"32645":4,"32646":3,"32647":4,"32648":4,"32649":3,"32650":4,"32651":3,"32652":2,"32653":4,"32654":3,"32655":3,"32656":3,"32657":1,"32658":4,"32659":4,"32660":2,"32661":2,"32662":3,"32663":3,"32664":3,"32665":3,"32666":2,"32667":4,"32668":3,"32669":2,"32670":5,"32671":4,"32672":3,"32673":3,"32674":2,"32675":3,"32676":4,"32677":4,"32678":3,"32679":3,"32680":4,"32681":3,"32682":3,"32683":2,"32684":2,"32685":5,"32686":1,"32687":4,"32688":4,"32689":4,"32690":4,"32691":2,"32692":4,"32693":4,"32694":3,"32695":3,"32696":1,"32697":4,"32698":4,"32699":3,"32700":3,"32701":2,"32702":4,"32703":3,"32704":1,"32705":2,"32706":3,"32707":3,"32708":3,"32709":3,"32710":3,"32711":2,"32712":2,"32713":4,"32714":3,"32715":3,"32716":2,"32717":4,"32718":2,"32719":2,"32720":1,"32721":3,"32722":2,"32723":4,"32724":3,"32725":2,"32726":2,"32727":4,"32728":2,"32729":3,"32730":3,"32731":1,"32732":3,"32733":1,"32734":3,"32735":3,"32736":2,"32737":2,"32738":4,"32739":4,"32740":4,"32741":2,"32742":3,"32743":3,"32744":1,"32745":4,"32746":4,"32747":3,"32748":2,"32749":3,"32750":4,"32751":2,"32752":3,"32753":3,"32754":1,"32755":3,"32756":3,"32757":4,"32758":4,"32759":3,"32760":5,"32761":4,"32762":2,"32763":5,"32764":5,"32765":2,"32766":3,"32767":3,"32768":3,"32769":3,"32770":4,"32771":3,"32772":4,"32773":1,"32774":2,"32775":4,"32776":2,"32777":4,"32778":1,"32779":4,"32780":1,"32781":3,"32782":2,"32783":4,"32784":3,"32785":2,"32786":2,"32787":2,"32788":5,"32789":2,"32790":3,"32791":3,"32792":4,"32793":3,"32794":3,"32795":2,"32796":1,"32797":2,"32798":4,"32799":1,"32800":2,"32801":2,"32802":5,"32803":4,"32804":2,"32805":4,"32806":4,"32807":2,"32808":1,"32809":4,"32810":4,"32811":4,"32812":3,"32813":4,"32814":2,"32815":2,"32816":4,"32817":3,"32818":4,"32819":4,"32820":4,"32821":3,"32822":4,"32823":3,"32824":1,"32825":3,"32826":4,"32827":1,"32828":3,"32829":4,"32830":5,"32831":3,"32832":4,"32833":2,"32834":4,"32835":4,"32836":2,"32837":2,"32838":4,"32839":4,"32840":3,"32841":2,"32842":2,"32843":4,"32844":1,"32845":4,"32846":2,"32847":3,"32848":4,"32849":4,"32850":2,"32851":3,"32852":5,"32853":5,"32854":3,"32855":2,"32856":4,"32857":3,"32858":2,"32859":3,"32860":3,"32861":3,"32862":4,"32863":2,"32864":2,"32865":3,"32866":4,"32867":3,"32868":2,"32869":5,"32870":3,"32871":3,"32872":3,"32873":2,"32874":3,"32875":2,"32876":3,"32877":3,"32878":4,"32879":3,"32880":1,"32881":3,"32882":2,"32883":2,"32884":4,"32885":2,"32886":3,"32887":5,"32888":3,"32889":3,"32890":4,"32891":4,"32892":4,"32893":5,"32894":4,"32895":5,"32896":1,"32897":2,"32898":2,"32899":2,"32900":2,"32901":1,"32902":2,"32903":4,"32904":3,"32905":2,"32906":1,"32907":3,"32908":3,"32909":4,"32910":3,"32911":3,"32912":5,"32913":4,"32914":4,"32915":1,"32916":2,"32917":2,"32918":2,"32919":4,"32920":3,"32921":1,"32922":2,"32923":4,"32924":3,"32925":3,"32926":4,"32927":1,"32928":5,"32929":3,"32930":2,"32931":3,"32932":2,"32933":1,"32934":2,"32935":1,"32936":3,"32937":4,"32938":3,"32939":4,"32940":4,"32941":2,"32942":4,"32943":2,"32944":4,"32945":3,"32946":4,"32947":2,"32948":2,"32949":4,"32950":5,"32951":3,"32952":3,"32953":1,"32954":3,"32955":5,"32956":3,"32957":5,"32958":4,"32959":3,"32960":2,"32961":3,"32962":2,"32963":3,"32964":3,"32965":4,"32966":4,"32967":3,"32968":2,"32969":4,"32970":2,"32971":3,"32972":2,"32973":5,"32974":4,"32975":3,"32976":4,"32977":3,"32978":5,"32979":4,"32980":3,"32981":4,"32982":3,"32983":2,"32984":4,"32985":3,"32986":3,"32987":3,"32988":2,"32989":2,"32990":4,"32991":5,"32992":1,"32993":3,"32994":2,"32995":2,"32996":2,"32997":4,"32998":1,"32999":4,"33000":3,"33001":4,"33002":3,"33003":4,"33004":4,"33005":1,"33006":3,"33007":3,"33008":4,"33009":3,"33010":3,"33011":2,"33012":2,"33013":2,"33014":2,"33015":4,"33016":3,"33017":4,"33018":1,"33019":4,"33020":4,"33021":4,"33022":2,"33023":5,"33024":3,"33025":2,"33026":3,"33027":3,"33028":3,"33029":3,"33030":4,"33031":2,"33032":3,"33033":2,"33034":4,"33035":2,"33036":3,"33037":4,"33038":2,"33039":4,"33040":4,"33041":5,"33042":3,"33043":3,"33044":2,"33045":3,"33046":3,"33047":3,"33048":2,"33049":2,"33050":3,"33051":3,"33052":3,"33053":3,"33054":3,"33055":3,"33056":2,"33057":2,"33058":3,"33059":3,"33060":3,"33061":4,"33062":3,"33063":3,"33064":3,"33065":3,"33066":4,"33067":5,"33068":2,"33069":4,"33070":4,"33071":4,"33072":4,"33073":2,"33074":4,"33075":3,"33076":3,"33077":3,"33078":2,"33079":4,"33080":2,"33081":1,"33082":3,"33083":4,"33084":3,"33085":4,"33086":3,"33087":3,"33088":1,"33089":2,"33090":2,"33091":4,"33092":5,"33093":4,"33094":4,"33095":2,"33096":4,"33097":4,"33098":3,"33099":5,"33100":4,"33101":4,"33102":2,"33103":2,"33104":2,"33105":3,"33106":2,"33107":4,"33108":3,"33109":3,"33110":5,"33111":3,"33112":5,"33113":2,"33114":3,"33115":4,"33116":4,"33117":2,"33118":4,"33119":2,"33120":2,"33121":3,"33122":2,"33123":3,"33124":4,"33125":4,"33126":3,"33127":1,"33128":2,"33129":4,"33130":4,"33131":3,"33132":4,"33133":2,"33134":2,"33135":1,"33136":3,"33137":4,"33138":1,"33139":2,"33140":1,"33141":2,"33142":4,"33143":3,"33144":3,"33145":4,"33146":3,"33147":4,"33148":3,"33149":2,"33150":4,"33151":4,"33152":3,"33153":3,"33154":3,"33155":2,"33156":5,"33157":5,"33158":2,"33159":5,"33160":5,"33161":2,"33162":2,"33163":3,"33164":4,"33165":2,"33166":4,"33167":5,"33168":2,"33169":3,"33170":4,"33171":5,"33172":3,"33173":2,"33174":3,"33175":3,"33176":3,"33177":2,"33178":2,"33179":2,"33180":1,"33181":4,"33182":3,"33183":3,"33184":2,"33185":4,"33186":4,"33187":3,"33188":3,"33189":3,"33190":4,"33191":3,"33192":1,"33193":5,"33194":4,"33195":5,"33196":3,"33197":2,"33198":3,"33199":1,"33200":2,"33201":4,"33202":1,"33203":4,"33204":3,"33205":5,"33206":5,"33207":3,"33208":1,"33209":2,"33210":1,"33211":3,"33212":4,"33213":3,"33214":2,"33215":2,"33216":3,"33217":4,"33218":3,"33219":3,"33220":2,"33221":4,"33222":2,"33223":3,"33224":3,"33225":4,"33226":4,"33227":1,"33228":2,"33229":2,"33230":3,"33231":3,"33232":2,"33233":4,"33234":4,"33235":4,"33236":3,"33237":3,"33238":3,"33239":5,"33240":4,"33241":3,"33242":3,"33243":4,"33244":2,"33245":5,"33246":2,"33247":3,"33248":4,"33249":2,"33250":2,"33251":3,"33252":2,"33253":3,"33254":4,"33255":4,"33256":1,"33257":5,"33258":3,"33259":4,"33260":3,"33261":4,"33262":4,"33263":3,"33264":2,"33265":5,"33266":4,"33267":3,"33268":3,"33269":4,"33270":1,"33271":3,"33272":3,"33273":2,"33274":3,"33275":2,"33276":4,"33277":2,"33278":3,"33279":3,"33280":4,"33281":2,"33282":1,"33283":3,"33284":3,"33285":3,"33286":1,"33287":1,"33288":3,"33289":4,"33290":2,"33291":3,"33292":5,"33293":4,"33294":4,"33295":2,"33296":3,"33297":4,"33298":2,"33299":3,"33300":3,"33301":3,"33302":4,"33303":3,"33304":4,"33305":4,"33306":5,"33307":1,"33308":2,"33309":4,"33310":4,"33311":1,"33312":1,"33313":4,"33314":1,"33315":2,"33316":2,"33317":1,"33318":4,"33319":2,"33320":3,"33321":4,"33322":2,"33323":1,"33324":2,"33325":2,"33326":3,"33327":3,"33328":3,"33329":3,"33330":2,"33331":5,"33332":5,"33333":3,"33334":2,"33335":2,"33336":1,"33337":3,"33338":4,"33339":2,"33340":2,"33341":3,"33342":4,"33343":4,"33344":2,"33345":2,"33346":1,"33347":1,"33348":2,"33349":3,"33350":3,"33351":2,"33352":3,"33353":4,"33354":2,"33355":2,"33356":3,"33357":4,"33358":4,"33359":3,"33360":3,"33361":2,"33362":3,"33363":3,"33364":5,"33365":3,"33366":1,"33367":3,"33368":3,"33369":1,"33370":4,"33371":4,"33372":4,"33373":3,"33374":2,"33375":2,"33376":5,"33377":2,"33378":3,"33379":3,"33380":3,"33381":2,"33382":1,"33383":4,"33384":3,"33385":1,"33386":4,"33387":3,"33388":4,"33389":2,"33390":4,"33391":1,"33392":5,"33393":3,"33394":2,"33395":4,"33396":3,"33397":3,"33398":3,"33399":3,"33400":1,"33401":4,"33402":3,"33403":5,"33404":1,"33405":2,"33406":5,"33407":3,"33408":2,"33409":3,"33410":4,"33411":1,"33412":2,"33413":3,"33414":2,"33415":2,"33416":5,"33417":1,"33418":4,"33419":2,"33420":3,"33421":3,"33422":4,"33423":2,"33424":3,"33425":4,"33426":2,"33427":4,"33428":3,"33429":3,"33430":3,"33431":1,"33432":2,"33433":4,"33434":2,"33435":5,"33436":3,"33437":3,"33438":3,"33439":2,"33440":4,"33441":1,"33442":4,"33443":2,"33444":3,"33445":2,"33446":2,"33447":3,"33448":3,"33449":1,"33450":3,"33451":2,"33452":3,"33453":4,"33454":3,"33455":3,"33456":3,"33457":1,"33458":5,"33459":1,"33460":2,"33461":4,"33462":5,"33463":3,"33464":4,"33465":4,"33466":1,"33467":1,"33468":3,"33469":4,"33470":3,"33471":1,"33472":4,"33473":2,"33474":3,"33475":1,"33476":2,"33477":3,"33478":2,"33479":1,"33480":2,"33481":3,"33482":3,"33483":1,"33484":2,"33485":3,"33486":4,"33487":2,"33488":5,"33489":2,"33490":4,"33491":2,"33492":3,"33493":3,"33494":3,"33495":4,"33496":3,"33497":4,"33498":3,"33499":2,"33500":3,"33501":2,"33502":3,"33503":3,"33504":1,"33505":2,"33506":4,"33507":5,"33508":3,"33509":4,"33510":3,"33511":3,"33512":3,"33513":5,"33514":3,"33515":1,"33516":4,"33517":4,"33518":1,"33519":4,"33520":2,"33521":3,"33522":2,"33523":2,"33524":3,"33525":5,"33526":2,"33527":4,"33528":3,"33529":3,"33530":5,"33531":3,"33532":3,"33533":3,"33534":5,"33535":1,"33536":3,"33537":3,"33538":2,"33539":4,"33540":5,"33541":5,"33542":2,"33543":3,"33544":3,"33545":5,"33546":3,"33547":3,"33548":2,"33549":5,"33550":3,"33551":3,"33552":1,"33553":2,"33554":3,"33555":2,"33556":3,"33557":5,"33558":3,"33559":3,"33560":4,"33561":1,"33562":2,"33563":3,"33564":4,"33565":1,"33566":3,"33567":3,"33568":5,"33569":3,"33570":3,"33571":1,"33572":2,"33573":3,"33574":2,"33575":2,"33576":4,"33577":4,"33578":1,"33579":3,"33580":4,"33581":1,"33582":1,"33583":3,"33584":1,"33585":5,"33586":5,"33587":2,"33588":4,"33589":5,"33590":3,"33591":4,"33592":3,"33593":2,"33594":3,"33595":3,"33596":1,"33597":5,"33598":3,"33599":4,"33600":4,"33601":5,"33602":5,"33603":4,"33604":2,"33605":4,"33606":2,"33607":2,"33608":4,"33609":4,"33610":4,"33611":1,"33612":3,"33613":2,"33614":5,"33615":1,"33616":3,"33617":4,"33618":5,"33619":3,"33620":3,"33621":3,"33622":5,"33623":5,"33624":1,"33625":2,"33626":4,"33627":2,"33628":2,"33629":1,"33630":4,"33631":2,"33632":3,"33633":4,"33634":3,"33635":5,"33636":1,"33637":2,"33638":1,"33639":2,"33640":4,"33641":5,"33642":2,"33643":2,"33644":4,"33645":3,"33646":3,"33647":1,"33648":3,"33649":3,"33650":3,"33651":2,"33652":4,"33653":3,"33654":4,"33655":5,"33656":4,"33657":4,"33658":2,"33659":4,"33660":2,"33661":3,"33662":4,"33663":3,"33664":3,"33665":4,"33666":2,"33667":3,"33668":3,"33669":5,"33670":2,"33671":3,"33672":4,"33673":4,"33674":4,"33675":2,"33676":3,"33677":4,"33678":3,"33679":4,"33680":2,"33681":2,"33682":4,"33683":2,"33684":4,"33685":1,"33686":3,"33687":4,"33688":4,"33689":4,"33690":3,"33691":3,"33692":1,"33693":4,"33694":3,"33695":3,"33696":3,"33697":3,"33698":1,"33699":3,"33700":3,"33701":4,"33702":3,"33703":2,"33704":1,"33705":4,"33706":1,"33707":4,"33708":4,"33709":1,"33710":1,"33711":2,"33712":2,"33713":3,"33714":2,"33715":2,"33716":2,"33717":3,"33718":3,"33719":3,"33720":5,"33721":3,"33722":4,"33723":4,"33724":1,"33725":4,"33726":1,"33727":3,"33728":3,"33729":3,"33730":2,"33731":3,"33732":4,"33733":4,"33734":4,"33735":3,"33736":3,"33737":3,"33738":2,"33739":4,"33740":3,"33741":2,"33742":3,"33743":3,"33744":2,"33745":4,"33746":1,"33747":4,"33748":4,"33749":3,"33750":3,"33751":1,"33752":4,"33753":3,"33754":2,"33755":4,"33756":2,"33757":3,"33758":5,"33759":3,"33760":2,"33761":3,"33762":3,"33763":3,"33764":3,"33765":2,"33766":4,"33767":1,"33768":1,"33769":3,"33770":3,"33771":3,"33772":4,"33773":5,"33774":4,"33775":3,"33776":2,"33777":3,"33778":3,"33779":3,"33780":2,"33781":4,"33782":3,"33783":3,"33784":3,"33785":1,"33786":4,"33787":3,"33788":4,"33789":3,"33790":3,"33791":3,"33792":3,"33793":3,"33794":2,"33795":2,"33796":4,"33797":3,"33798":3,"33799":4,"33800":4,"33801":4,"33802":2,"33803":2,"33804":2,"33805":2,"33806":2,"33807":1,"33808":5,"33809":5,"33810":1,"33811":3,"33812":1,"33813":2,"33814":1,"33815":4,"33816":3,"33817":4,"33818":4,"33819":3,"33820":3,"33821":3,"33822":3,"33823":2,"33824":5,"33825":3,"33826":3,"33827":2,"33828":3,"33829":1,"33830":2,"33831":2,"33832":3,"33833":2,"33834":2,"33835":1,"33836":3,"33837":3,"33838":3,"33839":3,"33840":2,"33841":3,"33842":3,"33843":2,"33844":4,"33845":1,"33846":4,"33847":4,"33848":4,"33849":2,"33850":2,"33851":3,"33852":5,"33853":3,"33854":3,"33855":4,"33856":3,"33857":4,"33858":2,"33859":3,"33860":3,"33861":1,"33862":3,"33863":4,"33864":3,"33865":2,"33866":2,"33867":3,"33868":2,"33869":3,"33870":3,"33871":4,"33872":3,"33873":2,"33874":4,"33875":3,"33876":4,"33877":3,"33878":4,"33879":5,"33880":3,"33881":4,"33882":1,"33883":2,"33884":5,"33885":2,"33886":3,"33887":3,"33888":4,"33889":3,"33890":3,"33891":2,"33892":4,"33893":4,"33894":3,"33895":3,"33896":3,"33897":4,"33898":2,"33899":2,"33900":3,"33901":3,"33902":3,"33903":3,"33904":4,"33905":3,"33906":4,"33907":4,"33908":4,"33909":4,"33910":4,"33911":4,"33912":4,"33913":3,"33914":3,"33915":3,"33916":4,"33917":3,"33918":3,"33919":3,"33920":5,"33921":4,"33922":4,"33923":3,"33924":1,"33925":1,"33926":3,"33927":1,"33928":3,"33929":2,"33930":3,"33931":3,"33932":4,"33933":2,"33934":3,"33935":4,"33936":3,"33937":3,"33938":4,"33939":3,"33940":3,"33941":2,"33942":3,"33943":4,"33944":2,"33945":4,"33946":3,"33947":2,"33948":4,"33949":2,"33950":4,"33951":1,"33952":3,"33953":5,"33954":4,"33955":1,"33956":3,"33957":3,"33958":2,"33959":3,"33960":4,"33961":1,"33962":2,"33963":3,"33964":4,"33965":2,"33966":1,"33967":2,"33968":2,"33969":2,"33970":1,"33971":3,"33972":4,"33973":3,"33974":4,"33975":4,"33976":3,"33977":3,"33978":3,"33979":3,"33980":4,"33981":2,"33982":1,"33983":4,"33984":3,"33985":3,"33986":3,"33987":4,"33988":4,"33989":4,"33990":1,"33991":1,"33992":2,"33993":5,"33994":1,"33995":3,"33996":3,"33997":4,"33998":4,"33999":2,"34000":3,"34001":1,"34002":2,"34003":2,"34004":1,"34005":5,"34006":3,"34007":3,"34008":4,"34009":4,"34010":5,"34011":4,"34012":2,"34013":4,"34014":2,"34015":3,"34016":4,"34017":3,"34018":1,"34019":3,"34020":4,"34021":3,"34022":3,"34023":4,"34024":4,"34025":3,"34026":1,"34027":1,"34028":5,"34029":3,"34030":2,"34031":4,"34032":3,"34033":5,"34034":5,"34035":5,"34036":3,"34037":1,"34038":2,"34039":3,"34040":1,"34041":2,"34042":3,"34043":4,"34044":4,"34045":4,"34046":2,"34047":3,"34048":4,"34049":2,"34050":3,"34051":2,"34052":3,"34053":3,"34054":4,"34055":2,"34056":3,"34057":4,"34058":3,"34059":4,"34060":3,"34061":2,"34062":3,"34063":4,"34064":2,"34065":2,"34066":4,"34067":1,"34068":3,"34069":3,"34070":2,"34071":4,"34072":1,"34073":5,"34074":2,"34075":4,"34076":4,"34077":3,"34078":3,"34079":2,"34080":5,"34081":5,"34082":4,"34083":1,"34084":5,"34085":3,"34086":2,"34087":2,"34088":3,"34089":4,"34090":3,"34091":2,"34092":3,"34093":2,"34094":3,"34095":3,"34096":1,"34097":4,"34098":3,"34099":2,"34100":2,"34101":2,"34102":3,"34103":4,"34104":3,"34105":1,"34106":1,"34107":3,"34108":5,"34109":3,"34110":3,"34111":4,"34112":3,"34113":2,"34114":2,"34115":3,"34116":1,"34117":4,"34118":3,"34119":3,"34120":3,"34121":2,"34122":3,"34123":4,"34124":1,"34125":4,"34126":1,"34127":2,"34128":4,"34129":4,"34130":5,"34131":2,"34132":4,"34133":2,"34134":4,"34135":3,"34136":5,"34137":4,"34138":2,"34139":2,"34140":5,"34141":3,"34142":3,"34143":4,"34144":4,"34145":2,"34146":2,"34147":3,"34148":4,"34149":2,"34150":1,"34151":1,"34152":4,"34153":4,"34154":1,"34155":3,"34156":4,"34157":4,"34158":3,"34159":4,"34160":3,"34161":2,"34162":3,"34163":4,"34164":1,"34165":2,"34166":3,"34167":4,"34168":2,"34169":3,"34170":3,"34171":3,"34172":3,"34173":3,"34174":5,"34175":3,"34176":4,"34177":2,"34178":3,"34179":4,"34180":3,"34181":4,"34182":3,"34183":3,"34184":2,"34185":3,"34186":4,"34187":2,"34188":5,"34189":5,"34190":5,"34191":2,"34192":3,"34193":1,"34194":2,"34195":2,"34196":2,"34197":3,"34198":4,"34199":3,"34200":1,"34201":2,"34202":1,"34203":1,"34204":4,"34205":3,"34206":4,"34207":4,"34208":3,"34209":5,"34210":4,"34211":1,"34212":3,"34213":3,"34214":3,"34215":3,"34216":3,"34217":2,"34218":4,"34219":3,"34220":4,"34221":4,"34222":1,"34223":2,"34224":5,"34225":2,"34226":3,"34227":2,"34228":2,"34229":3,"34230":3,"34231":5,"34232":4,"34233":2,"34234":3,"34235":4,"34236":1,"34237":5,"34238":2,"34239":3,"34240":3,"34241":3,"34242":4,"34243":2,"34244":2,"34245":5,"34246":2,"34247":4,"34248":4,"34249":3,"34250":3,"34251":2,"34252":2,"34253":5,"34254":2,"34255":4,"34256":2,"34257":3,"34258":5,"34259":3,"34260":4,"34261":1,"34262":3,"34263":4,"34264":3,"34265":2,"34266":3,"34267":2,"34268":1,"34269":2,"34270":5,"34271":4,"34272":2,"34273":2,"34274":3,"34275":4,"34276":3,"34277":4,"34278":4,"34279":2,"34280":3,"34281":3,"34282":4,"34283":5,"34284":5,"34285":4,"34286":2,"34287":4,"34288":3,"34289":3,"34290":1,"34291":3,"34292":3,"34293":3,"34294":4,"34295":4,"34296":4,"34297":1,"34298":3,"34299":3,"34300":1,"34301":3,"34302":3,"34303":3,"34304":3,"34305":5,"34306":4,"34307":4,"34308":3,"34309":3,"34310":3,"34311":5,"34312":1,"34313":2,"34314":3,"34315":4,"34316":3,"34317":4,"34318":5,"34319":3,"34320":2,"34321":4,"34322":4,"34323":2,"34324":3,"34325":5,"34326":3,"34327":4,"34328":3,"34329":5,"34330":3,"34331":2,"34332":3,"34333":1,"34334":4,"34335":2,"34336":3,"34337":3,"34338":1,"34339":4,"34340":3,"34341":2,"34342":4,"34343":4,"34344":5,"34345":3,"34346":2,"34347":4,"34348":3,"34349":1,"34350":2,"34351":2,"34352":3,"34353":3,"34354":4,"34355":3,"34356":2,"34357":3,"34358":2,"34359":4,"34360":4,"34361":1,"34362":4,"34363":2,"34364":3,"34365":3,"34366":1,"34367":4,"34368":3,"34369":5,"34370":5,"34371":2,"34372":2,"34373":2,"34374":5,"34375":2,"34376":2,"34377":3,"34378":3,"34379":1,"34380":2,"34381":3,"34382":3,"34383":1,"34384":4,"34385":4,"34386":4,"34387":3,"34388":2,"34389":4,"34390":1,"34391":1,"34392":3,"34393":3,"34394":4,"34395":3,"34396":3,"34397":1,"34398":2,"34399":4,"34400":3,"34401":3,"34402":3,"34403":3,"34404":3,"34405":2,"34406":4,"34407":4,"34408":2,"34409":5,"34410":4,"34411":4,"34412":4,"34413":4,"34414":5,"34415":2,"34416":2,"34417":2,"34418":2,"34419":3,"34420":2,"34421":3,"34422":1,"34423":3,"34424":2,"34425":2,"34426":4,"34427":4,"34428":4,"34429":3,"34430":3,"34431":4,"34432":3,"34433":3,"34434":3,"34435":3,"34436":3,"34437":3,"34438":1,"34439":2,"34440":4,"34441":3,"34442":4,"34443":2,"34444":4,"34445":3,"34446":2,"34447":2,"34448":2,"34449":5,"34450":4,"34451":1,"34452":4,"34453":5,"34454":4,"34455":3,"34456":3,"34457":1,"34458":4,"34459":3,"34460":4,"34461":3,"34462":1,"34463":4,"34464":3,"34465":2,"34466":3,"34467":2,"34468":2,"34469":3,"34470":2,"34471":4,"34472":3,"34473":2,"34474":3,"34475":5,"34476":2,"34477":4,"34478":4,"34479":3,"34480":4,"34481":4,"34482":4,"34483":2,"34484":2,"34485":4,"34486":3,"34487":1,"34488":4,"34489":1,"34490":2,"34491":3,"34492":4,"34493":2,"34494":1,"34495":1,"34496":4,"34497":3,"34498":2,"34499":3,"34500":2,"34501":2,"34502":3,"34503":3,"34504":4,"34505":4,"34506":2,"34507":3,"34508":4,"34509":3,"34510":4,"34511":3,"34512":2,"34513":2,"34514":1,"34515":3,"34516":4,"34517":3,"34518":3,"34519":4,"34520":4,"34521":2,"34522":1,"34523":4,"34524":4,"34525":2,"34526":3,"34527":4,"34528":2,"34529":3,"34530":1,"34531":5,"34532":3,"34533":2,"34534":2,"34535":4,"34536":3,"34537":3,"34538":4,"34539":3,"34540":3,"34541":2,"34542":4,"34543":3,"34544":3,"34545":3,"34546":2,"34547":4,"34548":4,"34549":4,"34550":3,"34551":2,"34552":4,"34553":3,"34554":4,"34555":2,"34556":2,"34557":3,"34558":2,"34559":4,"34560":2,"34561":4,"34562":4,"34563":4,"34564":2,"34565":4,"34566":2,"34567":4,"34568":4,"34569":3,"34570":4,"34571":3,"34572":2,"34573":4,"34574":5,"34575":3,"34576":3,"34577":2,"34578":4,"34579":3,"34580":4,"34581":4,"34582":2,"34583":4,"34584":3,"34585":4,"34586":4,"34587":2,"34588":5,"34589":4,"34590":3,"34591":3,"34592":4,"34593":3,"34594":5,"34595":3,"34596":3,"34597":1,"34598":4,"34599":3,"34600":3,"34601":2,"34602":4,"34603":3,"34604":2,"34605":3,"34606":3,"34607":5,"34608":4,"34609":3,"34610":2,"34611":2,"34612":1,"34613":4,"34614":3,"34615":2,"34616":3,"34617":3,"34618":1,"34619":1,"34620":4,"34621":4,"34622":3,"34623":2,"34624":4,"34625":3,"34626":4,"34627":3,"34628":2,"34629":2,"34630":5,"34631":4,"34632":2,"34633":1,"34634":4,"34635":5,"34636":4,"34637":2,"34638":3,"34639":3,"34640":2,"34641":2,"34642":3,"34643":3,"34644":3,"34645":3,"34646":5,"34647":5,"34648":3,"34649":4,"34650":3,"34651":3,"34652":5,"34653":3,"34654":3,"34655":1,"34656":2,"34657":2,"34658":2,"34659":1,"34660":2,"34661":3,"34662":5,"34663":4,"34664":4,"34665":3,"34666":3,"34667":3,"34668":5,"34669":4,"34670":3,"34671":4,"34672":3,"34673":3,"34674":4,"34675":2,"34676":5,"34677":3,"34678":3,"34679":1,"34680":4,"34681":3,"34682":2,"34683":5,"34684":2,"34685":3,"34686":3,"34687":3,"34688":1,"34689":4,"34690":3,"34691":4,"34692":3,"34693":2,"34694":1,"34695":3,"34696":1,"34697":2,"34698":3,"34699":3,"34700":3,"34701":3,"34702":3,"34703":5,"34704":3,"34705":3,"34706":4,"34707":1,"34708":2,"34709":3,"34710":2,"34711":3,"34712":3,"34713":3,"34714":2,"34715":4,"34716":4,"34717":4,"34718":2,"34719":3,"34720":3,"34721":3,"34722":3,"34723":4,"34724":4,"34725":4,"34726":3,"34727":4,"34728":2,"34729":3,"34730":4,"34731":1,"34732":5,"34733":1,"34734":2,"34735":3,"34736":2,"34737":3,"34738":2,"34739":4,"34740":2,"34741":2,"34742":3,"34743":2,"34744":1,"34745":2,"34746":4,"34747":5,"34748":4,"34749":3,"34750":4,"34751":4,"34752":2,"34753":2,"34754":4,"34755":3,"34756":2,"34757":3,"34758":3,"34759":2,"34760":3,"34761":3,"34762":2,"34763":1,"34764":3,"34765":3,"34766":2,"34767":4,"34768":1,"34769":4,"34770":4,"34771":4,"34772":3,"34773":4,"34774":4,"34775":5,"34776":4,"34777":4,"34778":3,"34779":4,"34780":3,"34781":2,"34782":4,"34783":4,"34784":2,"34785":3,"34786":4,"34787":2,"34788":2,"34789":1,"34790":3,"34791":1,"34792":4,"34793":2,"34794":2,"34795":2,"34796":2,"34797":2,"34798":3,"34799":4,"34800":3,"34801":4,"34802":4,"34803":1,"34804":1,"34805":4,"34806":2,"34807":3,"34808":3,"34809":3,"34810":2,"34811":3,"34812":4,"34813":3,"34814":1,"34815":3,"34816":4,"34817":3,"34818":4,"34819":2,"34820":2,"34821":3,"34822":4,"34823":4,"34824":4,"34825":3,"34826":2,"34827":2,"34828":3,"34829":4,"34830":5,"34831":3,"34832":3,"34833":5,"34834":3,"34835":3,"34836":3,"34837":4,"34838":3,"34839":2,"34840":4,"34841":3,"34842":4,"34843":4,"34844":1,"34845":1,"34846":3,"34847":3,"34848":4,"34849":5,"34850":4,"34851":3,"34852":4,"34853":3,"34854":3,"34855":3,"34856":1,"34857":4,"34858":4,"34859":4,"34860":2,"34861":3,"34862":3,"34863":3,"34864":2,"34865":3,"34866":3,"34867":3,"34868":3,"34869":2,"34870":4,"34871":2,"34872":4,"34873":4,"34874":4,"34875":2,"34876":4,"34877":2,"34878":4,"34879":3,"34880":3,"34881":3,"34882":1,"34883":2,"34884":2,"34885":4,"34886":2,"34887":3,"34888":3,"34889":3,"34890":2,"34891":1,"34892":3,"34893":2,"34894":3,"34895":4,"34896":3,"34897":4,"34898":2,"34899":5,"34900":3,"34901":5,"34902":1,"34903":3,"34904":3,"34905":2,"34906":2,"34907":4,"34908":1,"34909":3,"34910":4,"34911":3,"34912":2,"34913":3,"34914":2,"34915":3,"34916":4,"34917":4,"34918":5,"34919":3,"34920":3,"34921":4,"34922":3,"34923":4,"34924":2,"34925":2,"34926":2,"34927":2,"34928":3,"34929":3,"34930":1,"34931":3,"34932":2,"34933":3,"34934":3,"34935":3,"34936":3,"34937":1,"34938":4,"34939":2,"34940":3,"34941":2,"34942":4,"34943":3,"34944":4,"34945":3,"34946":4,"34947":4,"34948":2,"34949":2,"34950":3,"34951":4,"34952":4,"34953":2,"34954":2,"34955":2,"34956":3,"34957":2,"34958":3,"34959":2,"34960":2,"34961":3,"34962":5,"34963":2,"34964":2,"34965":1,"34966":1,"34967":5,"34968":2,"34969":1,"34970":4,"34971":4,"34972":3,"34973":5,"34974":5,"34975":2,"34976":1,"34977":3,"34978":4,"34979":3,"34980":4,"34981":4,"34982":2,"34983":3,"34984":4,"34985":3,"34986":4,"34987":4,"34988":2,"34989":2,"34990":5,"34991":5,"34992":3,"34993":3,"34994":1,"34995":4,"34996":1,"34997":2,"34998":4,"34999":4,"35000":2,"35001":3,"35002":2,"35003":1,"35004":4,"35005":1,"35006":5,"35007":4,"35008":4,"35009":3,"35010":2,"35011":2,"35012":5,"35013":5,"35014":2,"35015":2,"35016":2,"35017":4,"35018":2,"35019":1,"35020":2,"35021":4,"35022":4,"35023":4,"35024":4,"35025":4,"35026":4,"35027":3,"35028":3,"35029":1,"35030":5,"35031":2,"35032":1,"35033":2,"35034":3,"35035":3,"35036":4,"35037":2,"35038":3,"35039":4,"35040":3,"35041":5,"35042":3,"35043":4,"35044":1,"35045":3,"35046":4,"35047":3,"35048":2,"35049":2,"35050":2,"35051":3,"35052":2,"35053":4,"35054":4,"35055":4,"35056":4,"35057":3,"35058":4,"35059":3,"35060":3,"35061":1,"35062":2,"35063":3,"35064":3,"35065":4,"35066":2,"35067":2,"35068":5,"35069":2,"35070":4,"35071":3,"35072":2,"35073":3,"35074":2,"35075":3,"35076":3,"35077":3,"35078":1,"35079":2,"35080":2,"35081":2,"35082":2,"35083":3,"35084":3,"35085":4,"35086":4,"35087":2,"35088":2,"35089":2,"35090":4,"35091":2,"35092":5,"35093":3,"35094":3,"35095":4,"35096":3,"35097":2,"35098":5,"35099":3,"35100":3,"35101":5,"35102":4,"35103":2,"35104":5,"35105":3,"35106":2,"35107":2,"35108":2,"35109":3,"35110":4,"35111":5,"35112":4,"35113":1,"35114":2,"35115":3,"35116":2,"35117":3,"35118":4,"35119":5,"35120":2,"35121":1,"35122":2,"35123":4,"35124":3,"35125":3,"35126":4,"35127":4,"35128":4,"35129":5,"35130":1,"35131":3,"35132":1,"35133":3,"35134":3,"35135":1,"35136":4,"35137":4,"35138":2,"35139":4,"35140":3,"35141":3,"35142":2,"35143":2,"35144":2,"35145":2,"35146":4,"35147":3,"35148":1,"35149":2,"35150":1,"35151":2,"35152":2,"35153":2,"35154":4,"35155":2,"35156":2,"35157":3,"35158":4,"35159":5,"35160":2,"35161":3,"35162":3,"35163":3,"35164":5,"35165":3,"35166":3,"35167":3,"35168":4,"35169":4,"35170":4,"35171":3,"35172":4,"35173":1,"35174":4,"35175":4,"35176":5,"35177":1,"35178":4,"35179":3,"35180":1,"35181":1,"35182":1,"35183":2,"35184":2,"35185":1,"35186":4,"35187":4,"35188":2,"35189":1,"35190":4,"35191":5,"35192":3,"35193":3,"35194":3,"35195":1,"35196":2,"35197":4,"35198":4,"35199":3,"35200":2,"35201":4,"35202":2,"35203":2,"35204":3,"35205":2,"35206":3,"35207":4,"35208":3,"35209":3,"35210":2,"35211":5,"35212":2,"35213":3,"35214":4,"35215":3,"35216":4,"35217":3,"35218":2,"35219":2,"35220":1,"35221":2,"35222":4,"35223":4,"35224":4,"35225":3,"35226":5,"35227":3,"35228":5,"35229":3,"35230":3,"35231":3,"35232":2,"35233":2,"35234":4,"35235":1,"35236":3,"35237":5,"35238":2,"35239":3,"35240":2,"35241":3,"35242":2,"35243":3,"35244":1,"35245":1,"35246":3,"35247":4,"35248":4,"35249":3,"35250":2,"35251":2,"35252":3,"35253":3,"35254":3,"35255":3,"35256":3,"35257":3,"35258":2,"35259":2,"35260":1,"35261":2,"35262":2,"35263":3,"35264":5,"35265":3,"35266":2,"35267":3,"35268":1,"35269":4,"35270":3,"35271":4,"35272":3,"35273":4,"35274":4,"35275":3,"35276":1,"35277":3,"35278":4,"35279":4,"35280":3,"35281":3,"35282":4,"35283":4,"35284":2,"35285":4,"35286":3,"35287":3,"35288":1,"35289":3,"35290":3,"35291":2,"35292":4,"35293":3,"35294":4,"35295":3,"35296":4,"35297":5,"35298":4,"35299":3,"35300":5,"35301":3,"35302":3,"35303":3,"35304":2,"35305":4,"35306":3,"35307":2,"35308":2,"35309":4,"35310":2,"35311":2,"35312":4,"35313":5,"35314":5,"35315":3,"35316":3,"35317":3,"35318":4,"35319":4,"35320":4,"35321":2,"35322":2,"35323":4,"35324":4,"35325":4,"35326":2,"35327":3,"35328":2,"35329":4,"35330":1,"35331":2,"35332":3,"35333":2,"35334":2,"35335":4,"35336":2,"35337":2,"35338":2,"35339":4,"35340":1,"35341":4,"35342":3,"35343":3,"35344":3,"35345":4,"35346":1,"35347":2,"35348":2,"35349":2,"35350":3,"35351":5,"35352":1,"35353":4,"35354":3,"35355":4,"35356":4,"35357":4,"35358":3,"35359":2,"35360":3,"35361":3,"35362":4,"35363":1,"35364":4,"35365":2,"35366":4,"35367":3,"35368":3,"35369":4,"35370":3,"35371":4,"35372":3,"35373":2,"35374":2,"35375":4,"35376":3,"35377":4,"35378":2,"35379":2,"35380":5,"35381":4,"35382":3,"35383":2,"35384":3,"35385":3,"35386":4,"35387":2,"35388":4,"35389":3,"35390":2,"35391":5,"35392":4,"35393":1,"35394":2,"35395":3,"35396":4,"35397":3,"35398":4,"35399":5,"35400":3,"35401":4,"35402":4,"35403":2,"35404":4,"35405":4,"35406":3,"35407":4,"35408":3,"35409":2,"35410":4,"35411":1,"35412":4,"35413":4,"35414":5,"35415":4,"35416":2,"35417":3,"35418":4,"35419":2,"35420":3,"35421":2,"35422":4,"35423":4,"35424":3,"35425":3,"35426":2,"35427":1,"35428":5,"35429":2,"35430":1,"35431":4,"35432":3,"35433":1,"35434":5,"35435":2,"35436":4,"35437":4,"35438":2,"35439":3,"35440":3,"35441":2,"35442":3,"35443":3,"35444":4,"35445":1,"35446":4,"35447":2,"35448":2,"35449":1,"35450":4,"35451":3,"35452":3,"35453":2,"35454":4,"35455":4,"35456":3,"35457":4,"35458":3,"35459":3,"35460":3,"35461":4,"35462":4,"35463":3,"35464":3,"35465":2,"35466":3,"35467":4,"35468":3,"35469":2,"35470":5,"35471":2,"35472":3,"35473":3,"35474":4,"35475":4,"35476":3,"35477":3,"35478":4,"35479":4,"35480":3,"35481":5,"35482":4,"35483":2,"35484":5,"35485":1,"35486":2,"35487":5,"35488":1,"35489":2,"35490":3,"35491":4,"35492":3,"35493":3,"35494":3,"35495":3,"35496":4,"35497":3,"35498":4,"35499":2,"35500":3,"35501":4,"35502":5,"35503":2,"35504":2,"35505":4,"35506":3,"35507":2,"35508":2,"35509":2,"35510":3,"35511":4,"35512":3,"35513":2,"35514":4,"35515":3,"35516":2,"35517":4,"35518":2,"35519":2,"35520":2,"35521":1,"35522":2,"35523":4,"35524":5,"35525":4,"35526":3,"35527":5,"35528":4,"35529":1,"35530":3,"35531":3,"35532":3,"35533":2,"35534":3,"35535":4,"35536":2,"35537":3,"35538":3,"35539":4,"35540":2,"35541":2,"35542":4,"35543":1,"35544":2,"35545":4,"35546":3,"35547":4,"35548":5,"35549":3,"35550":3,"35551":2,"35552":4,"35553":4,"35554":3,"35555":2,"35556":4,"35557":2,"35558":5,"35559":4,"35560":1,"35561":3,"35562":4,"35563":2,"35564":3,"35565":3,"35566":1,"35567":5,"35568":2,"35569":3,"35570":2,"35571":4,"35572":4,"35573":2,"35574":4,"35575":3,"35576":4,"35577":5,"35578":3,"35579":3,"35580":2,"35581":4,"35582":3,"35583":4,"35584":4,"35585":3,"35586":1,"35587":2,"35588":3,"35589":4,"35590":5,"35591":4,"35592":3,"35593":3,"35594":1,"35595":2,"35596":4,"35597":2,"35598":3,"35599":2,"35600":2,"35601":2,"35602":3,"35603":3,"35604":4,"35605":3,"35606":2,"35607":4,"35608":3,"35609":3,"35610":3,"35611":4,"35612":4,"35613":4,"35614":3,"35615":3,"35616":3,"35617":1,"35618":3,"35619":2,"35620":2,"35621":1,"35622":3,"35623":2,"35624":2,"35625":3,"35626":3,"35627":1,"35628":3,"35629":4,"35630":3,"35631":3,"35632":3,"35633":5,"35634":3,"35635":2,"35636":2,"35637":4,"35638":1,"35639":4,"35640":2,"35641":1,"35642":2,"35643":4,"35644":1,"35645":4,"35646":5,"35647":2,"35648":2,"35649":1,"35650":3,"35651":3,"35652":3,"35653":3,"35654":3,"35655":3,"35656":4,"35657":2,"35658":3,"35659":1,"35660":3,"35661":4,"35662":3,"35663":2,"35664":3,"35665":4,"35666":2,"35667":2,"35668":3,"35669":3,"35670":4,"35671":3,"35672":3,"35673":2,"35674":4,"35675":3,"35676":1,"35677":4,"35678":4,"35679":3,"35680":3,"35681":2,"35682":4,"35683":3,"35684":1,"35685":4,"35686":3,"35687":5,"35688":3,"35689":5,"35690":1,"35691":3,"35692":1,"35693":4,"35694":3,"35695":4,"35696":5,"35697":4,"35698":4,"35699":2,"35700":3,"35701":4,"35702":2,"35703":2,"35704":1,"35705":2,"35706":4,"35707":4,"35708":4,"35709":4,"35710":3,"35711":3,"35712":3,"35713":1,"35714":2,"35715":5,"35716":3,"35717":3,"35718":2,"35719":2,"35720":3,"35721":2,"35722":3,"35723":4,"35724":5,"35725":3,"35726":3,"35727":3,"35728":4,"35729":4,"35730":3,"35731":3,"35732":4,"35733":5,"35734":3,"35735":3,"35736":2,"35737":4,"35738":4,"35739":3,"35740":5,"35741":4,"35742":5,"35743":2,"35744":2,"35745":3,"35746":4,"35747":3,"35748":5,"35749":1,"35750":3,"35751":3,"35752":3,"35753":3,"35754":4,"35755":3,"35756":2,"35757":5,"35758":4,"35759":3,"35760":1,"35761":2,"35762":2,"35763":2,"35764":3,"35765":2,"35766":4,"35767":3,"35768":2,"35769":1,"35770":2,"35771":3,"35772":3,"35773":4,"35774":3,"35775":5,"35776":3,"35777":4,"35778":3,"35779":3,"35780":3,"35781":3,"35782":5,"35783":4,"35784":3,"35785":4,"35786":4,"35787":3,"35788":2,"35789":1,"35790":1,"35791":2,"35792":4,"35793":3,"35794":2,"35795":3,"35796":1,"35797":3,"35798":3,"35799":2,"35800":1,"35801":5,"35802":4,"35803":1,"35804":3,"35805":4,"35806":3,"35807":3,"35808":4,"35809":4,"35810":4,"35811":4,"35812":3,"35813":3,"35814":3,"35815":4,"35816":3,"35817":1,"35818":3,"35819":4,"35820":3,"35821":3,"35822":5,"35823":3,"35824":4,"35825":3,"35826":3,"35827":2,"35828":2,"35829":3,"35830":4,"35831":4,"35832":2,"35833":2,"35834":3,"35835":4,"35836":4,"35837":2,"35838":4,"35839":1,"35840":1,"35841":3,"35842":4,"35843":3,"35844":4,"35845":2,"35846":4,"35847":4,"35848":3,"35849":5,"35850":3,"35851":3,"35852":1,"35853":3,"35854":2,"35855":1,"35856":3,"35857":3,"35858":2,"35859":2,"35860":5,"35861":5,"35862":1,"35863":3,"35864":4,"35865":3,"35866":5,"35867":4,"35868":2,"35869":2,"35870":2,"35871":1,"35872":2,"35873":2,"35874":3,"35875":3,"35876":3,"35877":3,"35878":2,"35879":3,"35880":4,"35881":2,"35882":5,"35883":5,"35884":3,"35885":3,"35886":4,"35887":4,"35888":2,"35889":3,"35890":1,"35891":4,"35892":3,"35893":3,"35894":2,"35895":4,"35896":3,"35897":1,"35898":3,"35899":5,"35900":3,"35901":2,"35902":3,"35903":5,"35904":4,"35905":4,"35906":3,"35907":2,"35908":2,"35909":1,"35910":4,"35911":2,"35912":5,"35913":5,"35914":3,"35915":2,"35916":2,"35917":2,"35918":4,"35919":3,"35920":5,"35921":3,"35922":2,"35923":4,"35924":3,"35925":3,"35926":3,"35927":3,"35928":4,"35929":3,"35930":3,"35931":3,"35932":3,"35933":2,"35934":5,"35935":2,"35936":4,"35937":2,"35938":3,"35939":5,"35940":3,"35941":3,"35942":1,"35943":4,"35944":3,"35945":2,"35946":2,"35947":3,"35948":4,"35949":1,"35950":4,"35951":3,"35952":1,"35953":4,"35954":2,"35955":4,"35956":4,"35957":2,"35958":3,"35959":3,"35960":3,"35961":1,"35962":2,"35963":2,"35964":3,"35965":3,"35966":3,"35967":3,"35968":4,"35969":4,"35970":2,"35971":2,"35972":3,"35973":3,"35974":2,"35975":5,"35976":4,"35977":3,"35978":2,"35979":4,"35980":3,"35981":3,"35982":3,"35983":3,"35984":3,"35985":4,"35986":3,"35987":2,"35988":3,"35989":3,"35990":3,"35991":4,"35992":1,"35993":4,"35994":2,"35995":2,"35996":4,"35997":3,"35998":3,"35999":2,"36000":3,"36001":4,"36002":3,"36003":5,"36004":3,"36005":2,"36006":2,"36007":3,"36008":1,"36009":2,"36010":3,"36011":3,"36012":5,"36013":1,"36014":2,"36015":1,"36016":1,"36017":2,"36018":3,"36019":3,"36020":4,"36021":4,"36022":3,"36023":5,"36024":3,"36025":4,"36026":2,"36027":2,"36028":3,"36029":1,"36030":4,"36031":1,"36032":4,"36033":3,"36034":4,"36035":4,"36036":3,"36037":3,"36038":3,"36039":4,"36040":4,"36041":3,"36042":3,"36043":2,"36044":1,"36045":2,"36046":4,"36047":4,"36048":2,"36049":3,"36050":4,"36051":3,"36052":2,"36053":1,"36054":4,"36055":1,"36056":2,"36057":4,"36058":3,"36059":3,"36060":4,"36061":4,"36062":4,"36063":2,"36064":4,"36065":3,"36066":3,"36067":5,"36068":4,"36069":2,"36070":3,"36071":1,"36072":1,"36073":3,"36074":3,"36075":3,"36076":2,"36077":3,"36078":3,"36079":3,"36080":4,"36081":2,"36082":2,"36083":1,"36084":4,"36085":2,"36086":3,"36087":4,"36088":3,"36089":2,"36090":3,"36091":3,"36092":3,"36093":4,"36094":4,"36095":1,"36096":4,"36097":4,"36098":2,"36099":5,"36100":3,"36101":4,"36102":3,"36103":4,"36104":3,"36105":1,"36106":2,"36107":2,"36108":2,"36109":1,"36110":2,"36111":3,"36112":4,"36113":4,"36114":4,"36115":2,"36116":4,"36117":2,"36118":4,"36119":4,"36120":2,"36121":4,"36122":4,"36123":5,"36124":4,"36125":3,"36126":3,"36127":4,"36128":3,"36129":4,"36130":3,"36131":3,"36132":4,"36133":4,"36134":3,"36135":2,"36136":4,"36137":3,"36138":4,"36139":4,"36140":5,"36141":4,"36142":1,"36143":1,"36144":2,"36145":2,"36146":4,"36147":4,"36148":1,"36149":3,"36150":3,"36151":1,"36152":2,"36153":5,"36154":1,"36155":4,"36156":2,"36157":4,"36158":5,"36159":2,"36160":2,"36161":1,"36162":3,"36163":4,"36164":5,"36165":3,"36166":4,"36167":2,"36168":3,"36169":2,"36170":1,"36171":4,"36172":3,"36173":4,"36174":4,"36175":4,"36176":3,"36177":2,"36178":4,"36179":4,"36180":3,"36181":1,"36182":2,"36183":3,"36184":3,"36185":3,"36186":2,"36187":2,"36188":4,"36189":1,"36190":3,"36191":2,"36192":2,"36193":4,"36194":4,"36195":3,"36196":3,"36197":1,"36198":3,"36199":2,"36200":4,"36201":1,"36202":4,"36203":5,"36204":4,"36205":1,"36206":1,"36207":1,"36208":2,"36209":5,"36210":3,"36211":4,"36212":3,"36213":3,"36214":1,"36215":2,"36216":3,"36217":4,"36218":1,"36219":4,"36220":3,"36221":4,"36222":5,"36223":3,"36224":4,"36225":2,"36226":2,"36227":3,"36228":4,"36229":3,"36230":4,"36231":4,"36232":3,"36233":1,"36234":3,"36235":4,"36236":1,"36237":3,"36238":3,"36239":3,"36240":3,"36241":5,"36242":3,"36243":5,"36244":5,"36245":4,"36246":4,"36247":3,"36248":1,"36249":3,"36250":2,"36251":1,"36252":4,"36253":4,"36254":4,"36255":3,"36256":3,"36257":3,"36258":2,"36259":3,"36260":3,"36261":3,"36262":2,"36263":2,"36264":4,"36265":2,"36266":3,"36267":1,"36268":2,"36269":4,"36270":5,"36271":4,"36272":3,"36273":2,"36274":4,"36275":5,"36276":4,"36277":3,"36278":2,"36279":1,"36280":3,"36281":2,"36282":2,"36283":3,"36284":4,"36285":3,"36286":3,"36287":4,"36288":2,"36289":4,"36290":1,"36291":3,"36292":3,"36293":3,"36294":5,"36295":3,"36296":4,"36297":3,"36298":2,"36299":4,"36300":5,"36301":2,"36302":4,"36303":4,"36304":5,"36305":3,"36306":3,"36307":5,"36308":5,"36309":2,"36310":2,"36311":3,"36312":3,"36313":4,"36314":4,"36315":4,"36316":5,"36317":3,"36318":5,"36319":3,"36320":3,"36321":2,"36322":4,"36323":4,"36324":4,"36325":3,"36326":2,"36327":4,"36328":2,"36329":3,"36330":5,"36331":3,"36332":2,"36333":1,"36334":4,"36335":4,"36336":3,"36337":1,"36338":2,"36339":3,"36340":2,"36341":1,"36342":4,"36343":3,"36344":2,"36345":3,"36346":3,"36347":2,"36348":3,"36349":2,"36350":2,"36351":2,"36352":1,"36353":4,"36354":3,"36355":3,"36356":4,"36357":3,"36358":3,"36359":3,"36360":3,"36361":1,"36362":3,"36363":1,"36364":2,"36365":3,"36366":2,"36367":3,"36368":3,"36369":3,"36370":2,"36371":1,"36372":3,"36373":4,"36374":4,"36375":3,"36376":2,"36377":4,"36378":3,"36379":3,"36380":1,"36381":4,"36382":4,"36383":3,"36384":3,"36385":3,"36386":4,"36387":3,"36388":5,"36389":1,"36390":3,"36391":2,"36392":4,"36393":3,"36394":1,"36395":1,"36396":2,"36397":3,"36398":4,"36399":4,"36400":2,"36401":2,"36402":1,"36403":3,"36404":1,"36405":3,"36406":4,"36407":4,"36408":3,"36409":1,"36410":3,"36411":5,"36412":4,"36413":4,"36414":3,"36415":3,"36416":2,"36417":3,"36418":1,"36419":4,"36420":3,"36421":4,"36422":3,"36423":2,"36424":4,"36425":3,"36426":3,"36427":3,"36428":3,"36429":2,"36430":3,"36431":4,"36432":3,"36433":1,"36434":4,"36435":3,"36436":3,"36437":3,"36438":4,"36439":1,"36440":3,"36441":4,"36442":3,"36443":2,"36444":3,"36445":4,"36446":4,"36447":2,"36448":2,"36449":4,"36450":2,"36451":4,"36452":2,"36453":3,"36454":4,"36455":3,"36456":3,"36457":4,"36458":5,"36459":3,"36460":4,"36461":4,"36462":3,"36463":3,"36464":2,"36465":3,"36466":2,"36467":2,"36468":2,"36469":3,"36470":2,"36471":4,"36472":2,"36473":3,"36474":2,"36475":2,"36476":4,"36477":4,"36478":2,"36479":4,"36480":2,"36481":4,"36482":4,"36483":2,"36484":2,"36485":4,"36486":1,"36487":4,"36488":2,"36489":4,"36490":2,"36491":2,"36492":4,"36493":2,"36494":2,"36495":2,"36496":5,"36497":3,"36498":2,"36499":3,"36500":3,"36501":5,"36502":5,"36503":1,"36504":4,"36505":2,"36506":3,"36507":3,"36508":4,"36509":1,"36510":3,"36511":3,"36512":4,"36513":4,"36514":1,"36515":1,"36516":4,"36517":5,"36518":1,"36519":5,"36520":1,"36521":4,"36522":3,"36523":3,"36524":4,"36525":1,"36526":4,"36527":2,"36528":3,"36529":5,"36530":3,"36531":5,"36532":5,"36533":2,"36534":1,"36535":2,"36536":2,"36537":1,"36538":5,"36539":4,"36540":3,"36541":3,"36542":4,"36543":4,"36544":2,"36545":1,"36546":5,"36547":4,"36548":1,"36549":2,"36550":4,"36551":3,"36552":4,"36553":2,"36554":5,"36555":4,"36556":2,"36557":3,"36558":2,"36559":4,"36560":4,"36561":4,"36562":1,"36563":4,"36564":4,"36565":3,"36566":4,"36567":3,"36568":4,"36569":3,"36570":4,"36571":4,"36572":2,"36573":2,"36574":3,"36575":5,"36576":4,"36577":3,"36578":3,"36579":3,"36580":3,"36581":3,"36582":3,"36583":4,"36584":1,"36585":4,"36586":4,"36587":2,"36588":4,"36589":4,"36590":1,"36591":2,"36592":5,"36593":4,"36594":4,"36595":3,"36596":4,"36597":3,"36598":2,"36599":4,"36600":1,"36601":3,"36602":5,"36603":2,"36604":3,"36605":3,"36606":5,"36607":4,"36608":3,"36609":5,"36610":3,"36611":2,"36612":4,"36613":3,"36614":3,"36615":4,"36616":1,"36617":3,"36618":2,"36619":5,"36620":3,"36621":2,"36622":3,"36623":3,"36624":3,"36625":1,"36626":1,"36627":3,"36628":2,"36629":4,"36630":1,"36631":5,"36632":3,"36633":3,"36634":3,"36635":4,"36636":4,"36637":2,"36638":4,"36639":2,"36640":3,"36641":4,"36642":2,"36643":3,"36644":2,"36645":2,"36646":1,"36647":4,"36648":3,"36649":5,"36650":1,"36651":3,"36652":4,"36653":5,"36654":3,"36655":3,"36656":3,"36657":2,"36658":1,"36659":2,"36660":3,"36661":1,"36662":2,"36663":4,"36664":4,"36665":1,"36666":2,"36667":4,"36668":1,"36669":1,"36670":3,"36671":4,"36672":4,"36673":4,"36674":2,"36675":3,"36676":5,"36677":3,"36678":2,"36679":2,"36680":2,"36681":3,"36682":2,"36683":3,"36684":3,"36685":2,"36686":4,"36687":2,"36688":3,"36689":3,"36690":4,"36691":4,"36692":2,"36693":1,"36694":3,"36695":4,"36696":1,"36697":2,"36698":1,"36699":3,"36700":4,"36701":2,"36702":3,"36703":3,"36704":1,"36705":3,"36706":2,"36707":3,"36708":3,"36709":4,"36710":2,"36711":3,"36712":3,"36713":2,"36714":2,"36715":4,"36716":4,"36717":4,"36718":3,"36719":3,"36720":2,"36721":3,"36722":4,"36723":3,"36724":3,"36725":1,"36726":1,"36727":2,"36728":3,"36729":3,"36730":2,"36731":2,"36732":3,"36733":2,"36734":3,"36735":4,"36736":1,"36737":3,"36738":1,"36739":1,"36740":3,"36741":2,"36742":5,"36743":4,"36744":3,"36745":2,"36746":3,"36747":3,"36748":2,"36749":3,"36750":4,"36751":2,"36752":3,"36753":2,"36754":5,"36755":3,"36756":4,"36757":3,"36758":4,"36759":3,"36760":1,"36761":4,"36762":4,"36763":3,"36764":5,"36765":3,"36766":5,"36767":2,"36768":5,"36769":4,"36770":3,"36771":3,"36772":3,"36773":4,"36774":1,"36775":3,"36776":3,"36777":2,"36778":5,"36779":4,"36780":4,"36781":3,"36782":2,"36783":2,"36784":3,"36785":1,"36786":2,"36787":1,"36788":4,"36789":1,"36790":2,"36791":3,"36792":3,"36793":2,"36794":2,"36795":2,"36796":2,"36797":4,"36798":2,"36799":4,"36800":4,"36801":3,"36802":1,"36803":3,"36804":3,"36805":4,"36806":2,"36807":2,"36808":3,"36809":1,"36810":4,"36811":2,"36812":5,"36813":1,"36814":5,"36815":4,"36816":2,"36817":2,"36818":2,"36819":4,"36820":3,"36821":1,"36822":3,"36823":3,"36824":1,"36825":2,"36826":3,"36827":3,"36828":4,"36829":3,"36830":1,"36831":3,"36832":2,"36833":4,"36834":5,"36835":3,"36836":3,"36837":3,"36838":3,"36839":4,"36840":2,"36841":3,"36842":3,"36843":4,"36844":3,"36845":3,"36846":4,"36847":3,"36848":4,"36849":5,"36850":3,"36851":4,"36852":5,"36853":4,"36854":5,"36855":4,"36856":4,"36857":4,"36858":1,"36859":3,"36860":3,"36861":4,"36862":2,"36863":4,"36864":3,"36865":2,"36866":4,"36867":2,"36868":4,"36869":1,"36870":3,"36871":4,"36872":3,"36873":2,"36874":5,"36875":4,"36876":3,"36877":4,"36878":3,"36879":2,"36880":4,"36881":3,"36882":2,"36883":3,"36884":3,"36885":3,"36886":4,"36887":5,"36888":3,"36889":3,"36890":3,"36891":2,"36892":2,"36893":1,"36894":3,"36895":4,"36896":4,"36897":2,"36898":4,"36899":1,"36900":2,"36901":5,"36902":4,"36903":2,"36904":3,"36905":3,"36906":4,"36907":1,"36908":5,"36909":4,"36910":1,"36911":4,"36912":5,"36913":3,"36914":2,"36915":3,"36916":4,"36917":1,"36918":2,"36919":2,"36920":4,"36921":4,"36922":3,"36923":4,"36924":4,"36925":2,"36926":4,"36927":3,"36928":3,"36929":1,"36930":2,"36931":3,"36932":2,"36933":2,"36934":4,"36935":2,"36936":1,"36937":2,"36938":3,"36939":3,"36940":3,"36941":2,"36942":2,"36943":2,"36944":3,"36945":3,"36946":2,"36947":2,"36948":1,"36949":4,"36950":3,"36951":3,"36952":2,"36953":4,"36954":3,"36955":4,"36956":4,"36957":2,"36958":3,"36959":3,"36960":3,"36961":4,"36962":2,"36963":4,"36964":4,"36965":2,"36966":3,"36967":5,"36968":3,"36969":1,"36970":4,"36971":3,"36972":4,"36973":2,"36974":3,"36975":4,"36976":2,"36977":4,"36978":3,"36979":1,"36980":2,"36981":1,"36982":3,"36983":1,"36984":4,"36985":4,"36986":3,"36987":2,"36988":3,"36989":2,"36990":4,"36991":5,"36992":3,"36993":4,"36994":3,"36995":2,"36996":2,"36997":2,"36998":4,"36999":4,"37000":3,"37001":3,"37002":3,"37003":4,"37004":3,"37005":3,"37006":2,"37007":4,"37008":2,"37009":5,"37010":3,"37011":1,"37012":3,"37013":3,"37014":1,"37015":2,"37016":4,"37017":4,"37018":2,"37019":2,"37020":1,"37021":4,"37022":3,"37023":1,"37024":2,"37025":3,"37026":4,"37027":2,"37028":3,"37029":2,"37030":4,"37031":4,"37032":2,"37033":5,"37034":1,"37035":2,"37036":4,"37037":1,"37038":3,"37039":3,"37040":2,"37041":3,"37042":2,"37043":3,"37044":5,"37045":3,"37046":1,"37047":3,"37048":2,"37049":5,"37050":4,"37051":3,"37052":3,"37053":2,"37054":4,"37055":2,"37056":4,"37057":2,"37058":5,"37059":4,"37060":2,"37061":4,"37062":2,"37063":3,"37064":4,"37065":3,"37066":3,"37067":3,"37068":3,"37069":2,"37070":3,"37071":4,"37072":3,"37073":1,"37074":4,"37075":4,"37076":4,"37077":3,"37078":3,"37079":3,"37080":3,"37081":2,"37082":2,"37083":4,"37084":5,"37085":2,"37086":3,"37087":4,"37088":2,"37089":5,"37090":2,"37091":4,"37092":2,"37093":2,"37094":1,"37095":4,"37096":2,"37097":4,"37098":4,"37099":3,"37100":4,"37101":2,"37102":4,"37103":2,"37104":1,"37105":4,"37106":3,"37107":2,"37108":1,"37109":3,"37110":4,"37111":2,"37112":3,"37113":2,"37114":4,"37115":2,"37116":2,"37117":3,"37118":2,"37119":2,"37120":4,"37121":4,"37122":5,"37123":1,"37124":4,"37125":3,"37126":5,"37127":2,"37128":4,"37129":3,"37130":2,"37131":3,"37132":3,"37133":2,"37134":4,"37135":4,"37136":2,"37137":2,"37138":3,"37139":2,"37140":3,"37141":3,"37142":1,"37143":4,"37144":3,"37145":3,"37146":1,"37147":3,"37148":1,"37149":3,"37150":1,"37151":2,"37152":3,"37153":4,"37154":3,"37155":5,"37156":4,"37157":2,"37158":4,"37159":4,"37160":4,"37161":3,"37162":1,"37163":3,"37164":3,"37165":5,"37166":4,"37167":3,"37168":2,"37169":4,"37170":4,"37171":3,"37172":2,"37173":3,"37174":4,"37175":4,"37176":3,"37177":5,"37178":3,"37179":2,"37180":3,"37181":4,"37182":3,"37183":4,"37184":1,"37185":1,"37186":4,"37187":3,"37188":3,"37189":5,"37190":3,"37191":3,"37192":4,"37193":4,"37194":2,"37195":2,"37196":5,"37197":2,"37198":1,"37199":4,"37200":2,"37201":4,"37202":3,"37203":4,"37204":2,"37205":3,"37206":3,"37207":3,"37208":5,"37209":2,"37210":3,"37211":3,"37212":3,"37213":4,"37214":4,"37215":2,"37216":3,"37217":3,"37218":5,"37219":3,"37220":4,"37221":4,"37222":4,"37223":4,"37224":3,"37225":3,"37226":2,"37227":3,"37228":3,"37229":4,"37230":4,"37231":5,"37232":4,"37233":2,"37234":4,"37235":3,"37236":4,"37237":4,"37238":3,"37239":2,"37240":4,"37241":3,"37242":4,"37243":2,"37244":2,"37245":2,"37246":2,"37247":3,"37248":4,"37249":1,"37250":4,"37251":3,"37252":3,"37253":4,"37254":5,"37255":4,"37256":4,"37257":3,"37258":3,"37259":4,"37260":1,"37261":3,"37262":3,"37263":2,"37264":1,"37265":5,"37266":4,"37267":2,"37268":4,"37269":4,"37270":4,"37271":1,"37272":4,"37273":3,"37274":4,"37275":2,"37276":4,"37277":2,"37278":2,"37279":3,"37280":1,"37281":5,"37282":4,"37283":2,"37284":3,"37285":5,"37286":3,"37287":3,"37288":1,"37289":3,"37290":3,"37291":1,"37292":2,"37293":3,"37294":2,"37295":3,"37296":4,"37297":3,"37298":4,"37299":3,"37300":4,"37301":3,"37302":4,"37303":3,"37304":2,"37305":5,"37306":2,"37307":2,"37308":2,"37309":4,"37310":3,"37311":5,"37312":2,"37313":4,"37314":4,"37315":1,"37316":5,"37317":1,"37318":3,"37319":2,"37320":4,"37321":3,"37322":3,"37323":3,"37324":1,"37325":1,"37326":3,"37327":3,"37328":4,"37329":2,"37330":3,"37331":3,"37332":2,"37333":5,"37334":5,"37335":4,"37336":4,"37337":3,"37338":4,"37339":4,"37340":1,"37341":1,"37342":2,"37343":3,"37344":4,"37345":2,"37346":4,"37347":4,"37348":3,"37349":4,"37350":2,"37351":5,"37352":2,"37353":1,"37354":2,"37355":4,"37356":3,"37357":2,"37358":3,"37359":4,"37360":2,"37361":3,"37362":3,"37363":2,"37364":3,"37365":4,"37366":2,"37367":3,"37368":2,"37369":4,"37370":4,"37371":4,"37372":5,"37373":4,"37374":2,"37375":2,"37376":4,"37377":4,"37378":1,"37379":4,"37380":4,"37381":3,"37382":1,"37383":4,"37384":2,"37385":3,"37386":4,"37387":3,"37388":3,"37389":2,"37390":5,"37391":2,"37392":4,"37393":1,"37394":1,"37395":2,"37396":4,"37397":3,"37398":4,"37399":1,"37400":5,"37401":5,"37402":2,"37403":4,"37404":4,"37405":1,"37406":4,"37407":4,"37408":2,"37409":3,"37410":3,"37411":1,"37412":4,"37413":3,"37414":5,"37415":5,"37416":1,"37417":2,"37418":5,"37419":2,"37420":1,"37421":4,"37422":5,"37423":2,"37424":5,"37425":4,"37426":1,"37427":3,"37428":3,"37429":4,"37430":2,"37431":3,"37432":3,"37433":3,"37434":2,"37435":3,"37436":3,"37437":3,"37438":4,"37439":3,"37440":4,"37441":2,"37442":3,"37443":5,"37444":3,"37445":4,"37446":1,"37447":2,"37448":1,"37449":1,"37450":4,"37451":5,"37452":5,"37453":2,"37454":2,"37455":2,"37456":3,"37457":4,"37458":1,"37459":3,"37460":3,"37461":3,"37462":4,"37463":2,"37464":2,"37465":1,"37466":4,"37467":4,"37468":4,"37469":4,"37470":2,"37471":3,"37472":1,"37473":4,"37474":2,"37475":3,"37476":4,"37477":5,"37478":2,"37479":3,"37480":3,"37481":3,"37482":1,"37483":4,"37484":2,"37485":2,"37486":2,"37487":4,"37488":3,"37489":3,"37490":4,"37491":4,"37492":5,"37493":2,"37494":2,"37495":1,"37496":3,"37497":2,"37498":3,"37499":2,"37500":1,"37501":1,"37502":2,"37503":5,"37504":1,"37505":3,"37506":4,"37507":4,"37508":1,"37509":5,"37510":5,"37511":4,"37512":3,"37513":3,"37514":2,"37515":2,"37516":3,"37517":4,"37518":3,"37519":5,"37520":5,"37521":4,"37522":3,"37523":4,"37524":5,"37525":5,"37526":3,"37527":2,"37528":4,"37529":3,"37530":2,"37531":2,"37532":1,"37533":3,"37534":2,"37535":3,"37536":2,"37537":2,"37538":2,"37539":1,"37540":5,"37541":4,"37542":2,"37543":4,"37544":1,"37545":3,"37546":5,"37547":1,"37548":5,"37549":3,"37550":2,"37551":3,"37552":3,"37553":3,"37554":1,"37555":3,"37556":3,"37557":4,"37558":2,"37559":2,"37560":2,"37561":3,"37562":3,"37563":1,"37564":3,"37565":3,"37566":4,"37567":5,"37568":4,"37569":2,"37570":1,"37571":1,"37572":3,"37573":3,"37574":4,"37575":3,"37576":4,"37577":1,"37578":4,"37579":3,"37580":2,"37581":2,"37582":2,"37583":1,"37584":3,"37585":2,"37586":2,"37587":4,"37588":3,"37589":3,"37590":2,"37591":1,"37592":1,"37593":3,"37594":3,"37595":4,"37596":2,"37597":5,"37598":2,"37599":4,"37600":3,"37601":2,"37602":4,"37603":3,"37604":5,"37605":2,"37606":3,"37607":2,"37608":3,"37609":5,"37610":3,"37611":5,"37612":2,"37613":2,"37614":3,"37615":3,"37616":2,"37617":4,"37618":2,"37619":3,"37620":2,"37621":3,"37622":4,"37623":3,"37624":5,"37625":4,"37626":2,"37627":3,"37628":4,"37629":4,"37630":3,"37631":3,"37632":1,"37633":2,"37634":3,"37635":4,"37636":2,"37637":4,"37638":4,"37639":2,"37640":3,"37641":2,"37642":3,"37643":2,"37644":4,"37645":1,"37646":4,"37647":2,"37648":2,"37649":3,"37650":3,"37651":3,"37652":4,"37653":3,"37654":3,"37655":3,"37656":3,"37657":3,"37658":3,"37659":2,"37660":3,"37661":4,"37662":3,"37663":4,"37664":4,"37665":3,"37666":3,"37667":2,"37668":2,"37669":4,"37670":3,"37671":5,"37672":5,"37673":1,"37674":3,"37675":2,"37676":3,"37677":3,"37678":2,"37679":5,"37680":3,"37681":2,"37682":4,"37683":3,"37684":3,"37685":2,"37686":4,"37687":3,"37688":2,"37689":4,"37690":3,"37691":2,"37692":1,"37693":5,"37694":2,"37695":4,"37696":4,"37697":4,"37698":4,"37699":3,"37700":2,"37701":4,"37702":3,"37703":3,"37704":2,"37705":2,"37706":1,"37707":3,"37708":4,"37709":2,"37710":5,"37711":1,"37712":1,"37713":2,"37714":1,"37715":3,"37716":5,"37717":2,"37718":4,"37719":2,"37720":5,"37721":3,"37722":2,"37723":2,"37724":5,"37725":4,"37726":2,"37727":3,"37728":3,"37729":2,"37730":1,"37731":3,"37732":3,"37733":2,"37734":5,"37735":3,"37736":3,"37737":2,"37738":1,"37739":3,"37740":5,"37741":4,"37742":2,"37743":2,"37744":2,"37745":4,"37746":5,"37747":3,"37748":4,"37749":3,"37750":2,"37751":4,"37752":4,"37753":5,"37754":4,"37755":5,"37756":2,"37757":2,"37758":3,"37759":5,"37760":2,"37761":4,"37762":5,"37763":3,"37764":3,"37765":2,"37766":3,"37767":4,"37768":4,"37769":3,"37770":3,"37771":4,"37772":3,"37773":2,"37774":4,"37775":3,"37776":3,"37777":2,"37778":3,"37779":2,"37780":4,"37781":3,"37782":1,"37783":4,"37784":4,"37785":2,"37786":1,"37787":2,"37788":3,"37789":4,"37790":3,"37791":2,"37792":4,"37793":4,"37794":3,"37795":1,"37796":1,"37797":1,"37798":3,"37799":5,"37800":3,"37801":2,"37802":3,"37803":3,"37804":2,"37805":4,"37806":5,"37807":4,"37808":4,"37809":1,"37810":3,"37811":2,"37812":3,"37813":2,"37814":3,"37815":3,"37816":3,"37817":5,"37818":4,"37819":3,"37820":3,"37821":1,"37822":5,"37823":5,"37824":3,"37825":3,"37826":2,"37827":5,"37828":3,"37829":3,"37830":2,"37831":2,"37832":3,"37833":3,"37834":3,"37835":2,"37836":2,"37837":2,"37838":2,"37839":4,"37840":4,"37841":4,"37842":3,"37843":4,"37844":3,"37845":5,"37846":3,"37847":3,"37848":5,"37849":4,"37850":3,"37851":4,"37852":3,"37853":4,"37854":4,"37855":3,"37856":5,"37857":3,"37858":3,"37859":3,"37860":2,"37861":2,"37862":3,"37863":3,"37864":2,"37865":3,"37866":3,"37867":3,"37868":5,"37869":3,"37870":5,"37871":4,"37872":3,"37873":2,"37874":2,"37875":3,"37876":3,"37877":4,"37878":4,"37879":3,"37880":3,"37881":3,"37882":3,"37883":3,"37884":2,"37885":3,"37886":4,"37887":2,"37888":3,"37889":4,"37890":2,"37891":2,"37892":3,"37893":3,"37894":3,"37895":4,"37896":3,"37897":3,"37898":1,"37899":5,"37900":2,"37901":3,"37902":3,"37903":5,"37904":3,"37905":5,"37906":1,"37907":4,"37908":3,"37909":4,"37910":3,"37911":1,"37912":4,"37913":3,"37914":3,"37915":2,"37916":5,"37917":2,"37918":1,"37919":4,"37920":4,"37921":3,"37922":1,"37923":3,"37924":2,"37925":5,"37926":3,"37927":1,"37928":2,"37929":2,"37930":2,"37931":5,"37932":3,"37933":3,"37934":3,"37935":1,"37936":5,"37937":2,"37938":3,"37939":2,"37940":1,"37941":4,"37942":2,"37943":3,"37944":4,"37945":2,"37946":4,"37947":3,"37948":3,"37949":4,"37950":3,"37951":2,"37952":3,"37953":5,"37954":4,"37955":3,"37956":3,"37957":4,"37958":3,"37959":2,"37960":3,"37961":4,"37962":3,"37963":4,"37964":2,"37965":3,"37966":4,"37967":4,"37968":2,"37969":1,"37970":2,"37971":4,"37972":5,"37973":2,"37974":4,"37975":4,"37976":1,"37977":4,"37978":3,"37979":4,"37980":3,"37981":2,"37982":1,"37983":3,"37984":2,"37985":5,"37986":3,"37987":3,"37988":3,"37989":2,"37990":4,"37991":2,"37992":2,"37993":2,"37994":3,"37995":2,"37996":2,"37997":3,"37998":2,"37999":2,"38000":3,"38001":5,"38002":4,"38003":2,"38004":5,"38005":4,"38006":2,"38007":4,"38008":2,"38009":3,"38010":4,"38011":4,"38012":4,"38013":3,"38014":4,"38015":4,"38016":2,"38017":4,"38018":4,"38019":2,"38020":4,"38021":2,"38022":5,"38023":4,"38024":3,"38025":4,"38026":4,"38027":3,"38028":3,"38029":4,"38030":2,"38031":1,"38032":1,"38033":3,"38034":4,"38035":3,"38036":3,"38037":4,"38038":2,"38039":2,"38040":1,"38041":3,"38042":2,"38043":2,"38044":2,"38045":4,"38046":2,"38047":3,"38048":3,"38049":4,"38050":4,"38051":3,"38052":3,"38053":4,"38054":4,"38055":3,"38056":2,"38057":4,"38058":4,"38059":1,"38060":2,"38061":5,"38062":3,"38063":3,"38064":1,"38065":5,"38066":4,"38067":3,"38068":4,"38069":3,"38070":2,"38071":3,"38072":1,"38073":4,"38074":4,"38075":1,"38076":3,"38077":4,"38078":4,"38079":3,"38080":5,"38081":2,"38082":1,"38083":2,"38084":3,"38085":3,"38086":3,"38087":2,"38088":3,"38089":4,"38090":3,"38091":3,"38092":3,"38093":3,"38094":3,"38095":3,"38096":4,"38097":5,"38098":3,"38099":4,"38100":3,"38101":4,"38102":4,"38103":3,"38104":4,"38105":4,"38106":4,"38107":5,"38108":4,"38109":2,"38110":3,"38111":1,"38112":5,"38113":2,"38114":2,"38115":2,"38116":3,"38117":3,"38118":2,"38119":5,"38120":2,"38121":1,"38122":4,"38123":4,"38124":4,"38125":5,"38126":4,"38127":4,"38128":2,"38129":3,"38130":3,"38131":3,"38132":2,"38133":4,"38134":4,"38135":1,"38136":3,"38137":5,"38138":3,"38139":2,"38140":2,"38141":3,"38142":3,"38143":4,"38144":4,"38145":4,"38146":3,"38147":3,"38148":3,"38149":1,"38150":4,"38151":2,"38152":2,"38153":3,"38154":2,"38155":2,"38156":3,"38157":3,"38158":3,"38159":2,"38160":3,"38161":1,"38162":2,"38163":4,"38164":3,"38165":3,"38166":3,"38167":2,"38168":2,"38169":4,"38170":4,"38171":1,"38172":2,"38173":1,"38174":2,"38175":3,"38176":4,"38177":5,"38178":2,"38179":2,"38180":4,"38181":4,"38182":3,"38183":3,"38184":1,"38185":4,"38186":2,"38187":1,"38188":4,"38189":4,"38190":3,"38191":1,"38192":2,"38193":4,"38194":2,"38195":3,"38196":2,"38197":2,"38198":3,"38199":2,"38200":5,"38201":3,"38202":3,"38203":2,"38204":3,"38205":4,"38206":2,"38207":3,"38208":4,"38209":4,"38210":4,"38211":2,"38212":4,"38213":3,"38214":4,"38215":2,"38216":2,"38217":3,"38218":4,"38219":3,"38220":4,"38221":1,"38222":5,"38223":3,"38224":4,"38225":2,"38226":1,"38227":4,"38228":4,"38229":4,"38230":3,"38231":3,"38232":5,"38233":3,"38234":3,"38235":3,"38236":5,"38237":2,"38238":4,"38239":3,"38240":3,"38241":1,"38242":3,"38243":3,"38244":3,"38245":3,"38246":4,"38247":5,"38248":3,"38249":4,"38250":4,"38251":3,"38252":3,"38253":4,"38254":2,"38255":4,"38256":3,"38257":2,"38258":5,"38259":3,"38260":2,"38261":4,"38262":3,"38263":2,"38264":3,"38265":3,"38266":1,"38267":3,"38268":4,"38269":3,"38270":4,"38271":3,"38272":3,"38273":2,"38274":3,"38275":3,"38276":3,"38277":4,"38278":3,"38279":3,"38280":3,"38281":2,"38282":2,"38283":4,"38284":5,"38285":2,"38286":3,"38287":4,"38288":5,"38289":2,"38290":4,"38291":3,"38292":4,"38293":2,"38294":1,"38295":3,"38296":3,"38297":3,"38298":4,"38299":4,"38300":3,"38301":3,"38302":4,"38303":3,"38304":4,"38305":1,"38306":3,"38307":2,"38308":3,"38309":4,"38310":2,"38311":1,"38312":2,"38313":2,"38314":2,"38315":3,"38316":3,"38317":3,"38318":3,"38319":4,"38320":4,"38321":4,"38322":2,"38323":3,"38324":3,"38325":2,"38326":4,"38327":4,"38328":5,"38329":1,"38330":4,"38331":2,"38332":2,"38333":3,"38334":5,"38335":2,"38336":2,"38337":3,"38338":3,"38339":3,"38340":1,"38341":3,"38342":4,"38343":5,"38344":2,"38345":2,"38346":4,"38347":3,"38348":3,"38349":2,"38350":5,"38351":4,"38352":2,"38353":4,"38354":1,"38355":1,"38356":4,"38357":3,"38358":4,"38359":5,"38360":4,"38361":1,"38362":5,"38363":4,"38364":3,"38365":3,"38366":4,"38367":5,"38368":3,"38369":4,"38370":3,"38371":3,"38372":4,"38373":4,"38374":3,"38375":3,"38376":4,"38377":4,"38378":4,"38379":3,"38380":1,"38381":3,"38382":1,"38383":3,"38384":4,"38385":3,"38386":1,"38387":3,"38388":2,"38389":2,"38390":2,"38391":3,"38392":3,"38393":2,"38394":3,"38395":3,"38396":1,"38397":3,"38398":5,"38399":3,"38400":3,"38401":1,"38402":4,"38403":4,"38404":5,"38405":3,"38406":1,"38407":2,"38408":3,"38409":2,"38410":2,"38411":2,"38412":5,"38413":4,"38414":3,"38415":3,"38416":4,"38417":2,"38418":1,"38419":1,"38420":4,"38421":4,"38422":2,"38423":3,"38424":2,"38425":3,"38426":3,"38427":3,"38428":3,"38429":2,"38430":3,"38431":3,"38432":3,"38433":1,"38434":1,"38435":2,"38436":2,"38437":5,"38438":2,"38439":4,"38440":4,"38441":5,"38442":2,"38443":4,"38444":3,"38445":3,"38446":3,"38447":2,"38448":4,"38449":4,"38450":2,"38451":5,"38452":4,"38453":3,"38454":1,"38455":3,"38456":4,"38457":4,"38458":1,"38459":1,"38460":3,"38461":3,"38462":4,"38463":2,"38464":2,"38465":4,"38466":3,"38467":2,"38468":2,"38469":4,"38470":1,"38471":4,"38472":3,"38473":4,"38474":2,"38475":4,"38476":3,"38477":3,"38478":4,"38479":2,"38480":3,"38481":1,"38482":3,"38483":1,"38484":1,"38485":3,"38486":4,"38487":3,"38488":5,"38489":3,"38490":3,"38491":3,"38492":2,"38493":4,"38494":5,"38495":3,"38496":1,"38497":4,"38498":1,"38499":3,"38500":4,"38501":4,"38502":3,"38503":2,"38504":3,"38505":5,"38506":3,"38507":3,"38508":3,"38509":2,"38510":4,"38511":2,"38512":1,"38513":4,"38514":3,"38515":3,"38516":2,"38517":3,"38518":5,"38519":3,"38520":3,"38521":3,"38522":2,"38523":3,"38524":4,"38525":3,"38526":4,"38527":1,"38528":3,"38529":4,"38530":5,"38531":5,"38532":3,"38533":1,"38534":4,"38535":5,"38536":1,"38537":2,"38538":1,"38539":3,"38540":1,"38541":4,"38542":2,"38543":2,"38544":4,"38545":3,"38546":4,"38547":2,"38548":3,"38549":4,"38550":4,"38551":4,"38552":4,"38553":2,"38554":3,"38555":1,"38556":4,"38557":3,"38558":2,"38559":4,"38560":3,"38561":3,"38562":3,"38563":5,"38564":1,"38565":2,"38566":3,"38567":5,"38568":4,"38569":2,"38570":1,"38571":1,"38572":3,"38573":2,"38574":4,"38575":3,"38576":3,"38577":3,"38578":4,"38579":3,"38580":3,"38581":5,"38582":2,"38583":5,"38584":4,"38585":4,"38586":4,"38587":3,"38588":1,"38589":4,"38590":3,"38591":5,"38592":3,"38593":2,"38594":4,"38595":3,"38596":4,"38597":4,"38598":3,"38599":2,"38600":2,"38601":2,"38602":3,"38603":3,"38604":1,"38605":5,"38606":4,"38607":5,"38608":1,"38609":4,"38610":2,"38611":4,"38612":2,"38613":3,"38614":3,"38615":3,"38616":4,"38617":1,"38618":4,"38619":3,"38620":4,"38621":2,"38622":3,"38623":4,"38624":3,"38625":4,"38626":3,"38627":3,"38628":1,"38629":2,"38630":4,"38631":5,"38632":4,"38633":4,"38634":3,"38635":3,"38636":4,"38637":1,"38638":3,"38639":4,"38640":3,"38641":4,"38642":3,"38643":2,"38644":3,"38645":4,"38646":2,"38647":3,"38648":3,"38649":3,"38650":3,"38651":3,"38652":4,"38653":2,"38654":4,"38655":3,"38656":4,"38657":4,"38658":3,"38659":2,"38660":2,"38661":2,"38662":4,"38663":3,"38664":3,"38665":4,"38666":4,"38667":2,"38668":4,"38669":4,"38670":2,"38671":1,"38672":2,"38673":2,"38674":2,"38675":4,"38676":4,"38677":3,"38678":3,"38679":3,"38680":3,"38681":3,"38682":3,"38683":1,"38684":4,"38685":3,"38686":2,"38687":3,"38688":3,"38689":3,"38690":4,"38691":2,"38692":1,"38693":3,"38694":2,"38695":2,"38696":4,"38697":4,"38698":3,"38699":2,"38700":3,"38701":3,"38702":2,"38703":3,"38704":4,"38705":4,"38706":3,"38707":3,"38708":2,"38709":2,"38710":3,"38711":5,"38712":2,"38713":4,"38714":4,"38715":5,"38716":2,"38717":4,"38718":2,"38719":4,"38720":2,"38721":3,"38722":1,"38723":1,"38724":1,"38725":2,"38726":4,"38727":5,"38728":5,"38729":4,"38730":4,"38731":2,"38732":2,"38733":3,"38734":3,"38735":2,"38736":3,"38737":2,"38738":2,"38739":3,"38740":3,"38741":3,"38742":2,"38743":3,"38744":2,"38745":4,"38746":1,"38747":1,"38748":5,"38749":3,"38750":3,"38751":4,"38752":3,"38753":2,"38754":4,"38755":4,"38756":1,"38757":4,"38758":3,"38759":5,"38760":2,"38761":3,"38762":3,"38763":3,"38764":3,"38765":3,"38766":2,"38767":2,"38768":2,"38769":2,"38770":2,"38771":2,"38772":1,"38773":3,"38774":2,"38775":3,"38776":3,"38777":4,"38778":3,"38779":4,"38780":4,"38781":3,"38782":4,"38783":4,"38784":4,"38785":2,"38786":2,"38787":2,"38788":1,"38789":3,"38790":4,"38791":4,"38792":4,"38793":3,"38794":2,"38795":3,"38796":3,"38797":3,"38798":3,"38799":2,"38800":1,"38801":3,"38802":2,"38803":3,"38804":5,"38805":3,"38806":3,"38807":5,"38808":2,"38809":3,"38810":3,"38811":1,"38812":3,"38813":2,"38814":3,"38815":1,"38816":2,"38817":2,"38818":4,"38819":2,"38820":1,"38821":2,"38822":3,"38823":3,"38824":2,"38825":2,"38826":2,"38827":4,"38828":4,"38829":1,"38830":2,"38831":4,"38832":5,"38833":2,"38834":3,"38835":4,"38836":4,"38837":4,"38838":3,"38839":2,"38840":1,"38841":4,"38842":3,"38843":4,"38844":5,"38845":2,"38846":4,"38847":3,"38848":1,"38849":3,"38850":4,"38851":4,"38852":3,"38853":5,"38854":3,"38855":4,"38856":3,"38857":3,"38858":1,"38859":2,"38860":2,"38861":1,"38862":2,"38863":3,"38864":3,"38865":2,"38866":3,"38867":1,"38868":5,"38869":3,"38870":2,"38871":4,"38872":3,"38873":4,"38874":4,"38875":1,"38876":4,"38877":3,"38878":3,"38879":3,"38880":4,"38881":2,"38882":4,"38883":4,"38884":4,"38885":4,"38886":4,"38887":3,"38888":4,"38889":4,"38890":2,"38891":5,"38892":3,"38893":4,"38894":3,"38895":5,"38896":3,"38897":1,"38898":5,"38899":5,"38900":4,"38901":1,"38902":5,"38903":1,"38904":5,"38905":3,"38906":3,"38907":1,"38908":2,"38909":3,"38910":4,"38911":2,"38912":1,"38913":3,"38914":3,"38915":3,"38916":3,"38917":4,"38918":3,"38919":4,"38920":1,"38921":3,"38922":3,"38923":4,"38924":3,"38925":2,"38926":5,"38927":5,"38928":3,"38929":4,"38930":5,"38931":5,"38932":4,"38933":2,"38934":2,"38935":3,"38936":2,"38937":4,"38938":3,"38939":4,"38940":3,"38941":2,"38942":4,"38943":3,"38944":4,"38945":1,"38946":2,"38947":3,"38948":4,"38949":3,"38950":1,"38951":2,"38952":4,"38953":2,"38954":4,"38955":2,"38956":3,"38957":4,"38958":2,"38959":1,"38960":4,"38961":2,"38962":1,"38963":2,"38964":2,"38965":5,"38966":1,"38967":2,"38968":3,"38969":5,"38970":2,"38971":2,"38972":3,"38973":2,"38974":1,"38975":3,"38976":3,"38977":3,"38978":3,"38979":3,"38980":2,"38981":2,"38982":1,"38983":4,"38984":5,"38985":3,"38986":4,"38987":4,"38988":2,"38989":2,"38990":3,"38991":2,"38992":4,"38993":3,"38994":3,"38995":3,"38996":1,"38997":1,"38998":2,"38999":3,"39000":2,"39001":3,"39002":4,"39003":4,"39004":5,"39005":5,"39006":2,"39007":2,"39008":3,"39009":3,"39010":2,"39011":2,"39012":2,"39013":4,"39014":3,"39015":4,"39016":4,"39017":2,"39018":2,"39019":3,"39020":3,"39021":2,"39022":3,"39023":3,"39024":2,"39025":4,"39026":3,"39027":4,"39028":3,"39029":4,"39030":2,"39031":3,"39032":3,"39033":2,"39034":4,"39035":3,"39036":2,"39037":4,"39038":3,"39039":2,"39040":3,"39041":3,"39042":1,"39043":4,"39044":3,"39045":3,"39046":4,"39047":3,"39048":5,"39049":4,"39050":3,"39051":2,"39052":4,"39053":3,"39054":2,"39055":4,"39056":2,"39057":4,"39058":4,"39059":3,"39060":3,"39061":4,"39062":2,"39063":4,"39064":2,"39065":3,"39066":4,"39067":2,"39068":3,"39069":3,"39070":3,"39071":3,"39072":3,"39073":3,"39074":4,"39075":3,"39076":3,"39077":2,"39078":4,"39079":1,"39080":3,"39081":2,"39082":4,"39083":2,"39084":1,"39085":1,"39086":4,"39087":3,"39088":4,"39089":4,"39090":2,"39091":2,"39092":2,"39093":1,"39094":3,"39095":1,"39096":4,"39097":1,"39098":2,"39099":4,"39100":1,"39101":1,"39102":4,"39103":4,"39104":4,"39105":2,"39106":3,"39107":1,"39108":4,"39109":4,"39110":4,"39111":4,"39112":1,"39113":4,"39114":4,"39115":3,"39116":3,"39117":3,"39118":2,"39119":2,"39120":4,"39121":4,"39122":3,"39123":2,"39124":4,"39125":2,"39126":3,"39127":3,"39128":3,"39129":3,"39130":3,"39131":3,"39132":3,"39133":3,"39134":3,"39135":3,"39136":3,"39137":4,"39138":2,"39139":4,"39140":3,"39141":3,"39142":2,"39143":2,"39144":5,"39145":1,"39146":3,"39147":2,"39148":5,"39149":2,"39150":4,"39151":2,"39152":3,"39153":2,"39154":3,"39155":2,"39156":3,"39157":3,"39158":2,"39159":2,"39160":5,"39161":2,"39162":3,"39163":4,"39164":3,"39165":3,"39166":3,"39167":2,"39168":3,"39169":3,"39170":2,"39171":2,"39172":3,"39173":2,"39174":1,"39175":3,"39176":2,"39177":3,"39178":4,"39179":4,"39180":1,"39181":4,"39182":4,"39183":3,"39184":3,"39185":4,"39186":3,"39187":4,"39188":3,"39189":4,"39190":2,"39191":2,"39192":2,"39193":3,"39194":3,"39195":1,"39196":2,"39197":5,"39198":5,"39199":1,"39200":4,"39201":4,"39202":4,"39203":2,"39204":2,"39205":3,"39206":4,"39207":4,"39208":3,"39209":3,"39210":3,"39211":4,"39212":3,"39213":3,"39214":3,"39215":2,"39216":4,"39217":2,"39218":4,"39219":2,"39220":4,"39221":4,"39222":4,"39223":5,"39224":3,"39225":3,"39226":3,"39227":3,"39228":2,"39229":4,"39230":2,"39231":2,"39232":3,"39233":2,"39234":3,"39235":4,"39236":3,"39237":5,"39238":3,"39239":3,"39240":2,"39241":4,"39242":3,"39243":2,"39244":4,"39245":5,"39246":3,"39247":4,"39248":4,"39249":4,"39250":2,"39251":2,"39252":5,"39253":1,"39254":5,"39255":4,"39256":5,"39257":2,"39258":3,"39259":3,"39260":4,"39261":2,"39262":3,"39263":1,"39264":3,"39265":2,"39266":3,"39267":4,"39268":3,"39269":3,"39270":4,"39271":5,"39272":4,"39273":3,"39274":3,"39275":2,"39276":4,"39277":3,"39278":3,"39279":2,"39280":2,"39281":4,"39282":4,"39283":2,"39284":1,"39285":4,"39286":2,"39287":4,"39288":1,"39289":5,"39290":3,"39291":4,"39292":4,"39293":1,"39294":3,"39295":4,"39296":4,"39297":4,"39298":4,"39299":5,"39300":1,"39301":5,"39302":2,"39303":1,"39304":2,"39305":3,"39306":2,"39307":4,"39308":3,"39309":1,"39310":4,"39311":2,"39312":5,"39313":2,"39314":2,"39315":4,"39316":2,"39317":2,"39318":4,"39319":4,"39320":4,"39321":5,"39322":3,"39323":2,"39324":4,"39325":3,"39326":4,"39327":3,"39328":3,"39329":4,"39330":4,"39331":1,"39332":1,"39333":2,"39334":4,"39335":4,"39336":2,"39337":5,"39338":4,"39339":2,"39340":4,"39341":4,"39342":2,"39343":3,"39344":3,"39345":2,"39346":5,"39347":4,"39348":2,"39349":2,"39350":4,"39351":5,"39352":5,"39353":4,"39354":4,"39355":3,"39356":3,"39357":1,"39358":4,"39359":3,"39360":2,"39361":1,"39362":2,"39363":5,"39364":3,"39365":3,"39366":4,"39367":5,"39368":1,"39369":3,"39370":2,"39371":3,"39372":5,"39373":3,"39374":2,"39375":4,"39376":3,"39377":5,"39378":3,"39379":2,"39380":5,"39381":3,"39382":3,"39383":3,"39384":3,"39385":2,"39386":2,"39387":3,"39388":3,"39389":3,"39390":5,"39391":4,"39392":2,"39393":2,"39394":4,"39395":4,"39396":3,"39397":3,"39398":4,"39399":3,"39400":3,"39401":1,"39402":2,"39403":2,"39404":3,"39405":3,"39406":5,"39407":2,"39408":3,"39409":3,"39410":4,"39411":1,"39412":4,"39413":3,"39414":4,"39415":2,"39416":3,"39417":3,"39418":3,"39419":3,"39420":4,"39421":3,"39422":2,"39423":3,"39424":2,"39425":4,"39426":4,"39427":3,"39428":2,"39429":5,"39430":2,"39431":2,"39432":1,"39433":4,"39434":3,"39435":4,"39436":1,"39437":3,"39438":4,"39439":1,"39440":2,"39441":4,"39442":3,"39443":3,"39444":2,"39445":4,"39446":3,"39447":3,"39448":2,"39449":1,"39450":2,"39451":3,"39452":3,"39453":2,"39454":5,"39455":5,"39456":3,"39457":3,"39458":4,"39459":3,"39460":4,"39461":3,"39462":2,"39463":3,"39464":4,"39465":3,"39466":3,"39467":3,"39468":5,"39469":4,"39470":3,"39471":2,"39472":4,"39473":4,"39474":4,"39475":2,"39476":2,"39477":1,"39478":2,"39479":3,"39480":4,"39481":3,"39482":3,"39483":3,"39484":2,"39485":4,"39486":3,"39487":5,"39488":4,"39489":3,"39490":1,"39491":4,"39492":3,"39493":3,"39494":1,"39495":1,"39496":3,"39497":2,"39498":3,"39499":3,"39500":1,"39501":3,"39502":1,"39503":3,"39504":2,"39505":1,"39506":3,"39507":3,"39508":1,"39509":4,"39510":1,"39511":4,"39512":3,"39513":3,"39514":4,"39515":4,"39516":5,"39517":3,"39518":2,"39519":2,"39520":4,"39521":3,"39522":3,"39523":4,"39524":3,"39525":2,"39526":3,"39527":1,"39528":4,"39529":2,"39530":3,"39531":2,"39532":4,"39533":3,"39534":3,"39535":3,"39536":2,"39537":1,"39538":3,"39539":3,"39540":3,"39541":1,"39542":4,"39543":3,"39544":2,"39545":2,"39546":2,"39547":3,"39548":2,"39549":4,"39550":4,"39551":2,"39552":3,"39553":3,"39554":4,"39555":5,"39556":2,"39557":1,"39558":3,"39559":3,"39560":1,"39561":4,"39562":3,"39563":4,"39564":2,"39565":3,"39566":3,"39567":3,"39568":4,"39569":1,"39570":1,"39571":3,"39572":2,"39573":2,"39574":4,"39575":3,"39576":4,"39577":3,"39578":5,"39579":2,"39580":3,"39581":2,"39582":3,"39583":2,"39584":4,"39585":2,"39586":1,"39587":3,"39588":4,"39589":2,"39590":1,"39591":4,"39592":2,"39593":4,"39594":2,"39595":2,"39596":1,"39597":3,"39598":2,"39599":3,"39600":5,"39601":4,"39602":4,"39603":3,"39604":4,"39605":2,"39606":1,"39607":5,"39608":3,"39609":5,"39610":3,"39611":2,"39612":3,"39613":3,"39614":3,"39615":3,"39616":4,"39617":5,"39618":2,"39619":5,"39620":2,"39621":3,"39622":4,"39623":4,"39624":3,"39625":2,"39626":5,"39627":3,"39628":2,"39629":1,"39630":4,"39631":3,"39632":3,"39633":2,"39634":4,"39635":4,"39636":1,"39637":2,"39638":4,"39639":2,"39640":3,"39641":2,"39642":2,"39643":2,"39644":3,"39645":1,"39646":4,"39647":3,"39648":3,"39649":3,"39650":3,"39651":3,"39652":3,"39653":3,"39654":1,"39655":3,"39656":3,"39657":2,"39658":4,"39659":4,"39660":3,"39661":2,"39662":3,"39663":5,"39664":4,"39665":5,"39666":4,"39667":2,"39668":4,"39669":2,"39670":3,"39671":3,"39672":2,"39673":2,"39674":3,"39675":3,"39676":4,"39677":3,"39678":3,"39679":4,"39680":1,"39681":4,"39682":4,"39683":3,"39684":2,"39685":4,"39686":3,"39687":1,"39688":1,"39689":4,"39690":3,"39691":2,"39692":4,"39693":3,"39694":4,"39695":4,"39696":2,"39697":5,"39698":3,"39699":3,"39700":3,"39701":3,"39702":3,"39703":4,"39704":4,"39705":3,"39706":5,"39707":3,"39708":4,"39709":4,"39710":4,"39711":1,"39712":2,"39713":4,"39714":2,"39715":3,"39716":4,"39717":3,"39718":2,"39719":3,"39720":3,"39721":2,"39722":4,"39723":3,"39724":2,"39725":4,"39726":5,"39727":5,"39728":4,"39729":2,"39730":4,"39731":3,"39732":1,"39733":2,"39734":3,"39735":4,"39736":2,"39737":4,"39738":4,"39739":4,"39740":3,"39741":3,"39742":3,"39743":2,"39744":1,"39745":3,"39746":1,"39747":2,"39748":2,"39749":4,"39750":4,"39751":4,"39752":1,"39753":2,"39754":2,"39755":3,"39756":3,"39757":3,"39758":4,"39759":3,"39760":4,"39761":4,"39762":4,"39763":3,"39764":4,"39765":1,"39766":3,"39767":1,"39768":4,"39769":3,"39770":3,"39771":3,"39772":2,"39773":5,"39774":3,"39775":2,"39776":2,"39777":5,"39778":3,"39779":3,"39780":2,"39781":4,"39782":4,"39783":3,"39784":3,"39785":4,"39786":4,"39787":3,"39788":3,"39789":2,"39790":2,"39791":3,"39792":2,"39793":4,"39794":5,"39795":3,"39796":5,"39797":4,"39798":4,"39799":3,"39800":1,"39801":2,"39802":5,"39803":1,"39804":2,"39805":5,"39806":1,"39807":4,"39808":3,"39809":3,"39810":3,"39811":4,"39812":4,"39813":5,"39814":3,"39815":4,"39816":2,"39817":2,"39818":4,"39819":2,"39820":2,"39821":3,"39822":3,"39823":3,"39824":2,"39825":3,"39826":3,"39827":2,"39828":4,"39829":2,"39830":2,"39831":2,"39832":4,"39833":3,"39834":3,"39835":5,"39836":4,"39837":2,"39838":1,"39839":3,"39840":2,"39841":3,"39842":1,"39843":3,"39844":4,"39845":2,"39846":4,"39847":3,"39848":2,"39849":3,"39850":4,"39851":3,"39852":2,"39853":1,"39854":2,"39855":2,"39856":2,"39857":4,"39858":3,"39859":4,"39860":2,"39861":3,"39862":5,"39863":3,"39864":4,"39865":1,"39866":4,"39867":4,"39868":2,"39869":4,"39870":3,"39871":4,"39872":3,"39873":3,"39874":1,"39875":5,"39876":5,"39877":3,"39878":4,"39879":2,"39880":1,"39881":2,"39882":3,"39883":2,"39884":3,"39885":4,"39886":4,"39887":4,"39888":1,"39889":3,"39890":1,"39891":2,"39892":4,"39893":3,"39894":3,"39895":3,"39896":3,"39897":2,"39898":3,"39899":5,"39900":2,"39901":3,"39902":3,"39903":1,"39904":4,"39905":3,"39906":2,"39907":2,"39908":5,"39909":3,"39910":2,"39911":3,"39912":5,"39913":3,"39914":3,"39915":4,"39916":2,"39917":2,"39918":2,"39919":3,"39920":3,"39921":3,"39922":1,"39923":1,"39924":1,"39925":4,"39926":1,"39927":5,"39928":2,"39929":5,"39930":2,"39931":4,"39932":2,"39933":1,"39934":4,"39935":1,"39936":5,"39937":2,"39938":2,"39939":3,"39940":2,"39941":3,"39942":3,"39943":4,"39944":2,"39945":2,"39946":4,"39947":4,"39948":5,"39949":4,"39950":3,"39951":3,"39952":3,"39953":2,"39954":3,"39955":4,"39956":3,"39957":3,"39958":1,"39959":1,"39960":5,"39961":4,"39962":2,"39963":2,"39964":3,"39965":3,"39966":2,"39967":4,"39968":4,"39969":5,"39970":2,"39971":3,"39972":3,"39973":4,"39974":3,"39975":3,"39976":2,"39977":3,"39978":4,"39979":5,"39980":3,"39981":4,"39982":2,"39983":3,"39984":4,"39985":2,"39986":1,"39987":2,"39988":2,"39989":2,"39990":1,"39991":3,"39992":3,"39993":3,"39994":3,"39995":2,"39996":3,"39997":5,"39998":3,"39999":3,"40000":4,"40001":3,"40002":3,"40003":2,"40004":3,"40005":1,"40006":3,"40007":3,"40008":3,"40009":5,"40010":3,"40011":3,"40012":4,"40013":2,"40014":5,"40015":2,"40016":3,"40017":4,"40018":3,"40019":3,"40020":5,"40021":5,"40022":5,"40023":4,"40024":3,"40025":3,"40026":3,"40027":3,"40028":2,"40029":4,"40030":3,"40031":5,"40032":3,"40033":2,"40034":3,"40035":3,"40036":3,"40037":1,"40038":4,"40039":3,"40040":3,"40041":2,"40042":2,"40043":4,"40044":5,"40045":3,"40046":5,"40047":3,"40048":4,"40049":3,"40050":4,"40051":3,"40052":4,"40053":3,"40054":4,"40055":3,"40056":3,"40057":5,"40058":3,"40059":4,"40060":1,"40061":2,"40062":3,"40063":3,"40064":5,"40065":3,"40066":1,"40067":4,"40068":5,"40069":5,"40070":4,"40071":2,"40072":4,"40073":3,"40074":3,"40075":4,"40076":4,"40077":1,"40078":4,"40079":2,"40080":3,"40081":4,"40082":4,"40083":3,"40084":3,"40085":2,"40086":3,"40087":4,"40088":5,"40089":3,"40090":4,"40091":3,"40092":5,"40093":4,"40094":4,"40095":4,"40096":4,"40097":5,"40098":4,"40099":5,"40100":3,"40101":4,"40102":3,"40103":2,"40104":3,"40105":3,"40106":3,"40107":3,"40108":4,"40109":2,"40110":3,"40111":4,"40112":4,"40113":5,"40114":2,"40115":3,"40116":4,"40117":3,"40118":4,"40119":4,"40120":3,"40121":4,"40122":3,"40123":1,"40124":2,"40125":2,"40126":2,"40127":2,"40128":4,"40129":3,"40130":4,"40131":3,"40132":3,"40133":3,"40134":5,"40135":3,"40136":2,"40137":3,"40138":3,"40139":3,"40140":2,"40141":1,"40142":4,"40143":2,"40144":3,"40145":3,"40146":4,"40147":2,"40148":4,"40149":3,"40150":2,"40151":2,"40152":4,"40153":4,"40154":4,"40155":4,"40156":4,"40157":4,"40158":1,"40159":3,"40160":1,"40161":4,"40162":2,"40163":4,"40164":3,"40165":4,"40166":2,"40167":3,"40168":4,"40169":4,"40170":3,"40171":4,"40172":1,"40173":2,"40174":1,"40175":1,"40176":5,"40177":1,"40178":3,"40179":4,"40180":2,"40181":2,"40182":3,"40183":2,"40184":1,"40185":2,"40186":3,"40187":3,"40188":4,"40189":2,"40190":2,"40191":3,"40192":3,"40193":4,"40194":3,"40195":3,"40196":5,"40197":1,"40198":5,"40199":5,"40200":4,"40201":4,"40202":4,"40203":3,"40204":3,"40205":2,"40206":3,"40207":2,"40208":4,"40209":2,"40210":3,"40211":2,"40212":3,"40213":2,"40214":4,"40215":4,"40216":3,"40217":2,"40218":1,"40219":2,"40220":4,"40221":2,"40222":2,"40223":2,"40224":2,"40225":5,"40226":4,"40227":3,"40228":4,"40229":3,"40230":3,"40231":5,"40232":1,"40233":2,"40234":2,"40235":3,"40236":2,"40237":3,"40238":4,"40239":4,"40240":3,"40241":3,"40242":2,"40243":3,"40244":5,"40245":1,"40246":1,"40247":2,"40248":2,"40249":4,"40250":4,"40251":3,"40252":1,"40253":4,"40254":4,"40255":4,"40256":4,"40257":2,"40258":3,"40259":3,"40260":5,"40261":5,"40262":3,"40263":4,"40264":2,"40265":1,"40266":2,"40267":2,"40268":4,"40269":2,"40270":4,"40271":3,"40272":3,"40273":1,"40274":2,"40275":2,"40276":2,"40277":4,"40278":2,"40279":3,"40280":4,"40281":4,"40282":3,"40283":3,"40284":2,"40285":1,"40286":3,"40287":2,"40288":4,"40289":3,"40290":2,"40291":3,"40292":4,"40293":3,"40294":2,"40295":1,"40296":5,"40297":3,"40298":4,"40299":3,"40300":1,"40301":3,"40302":4,"40303":1,"40304":3,"40305":3,"40306":4,"40307":2,"40308":3,"40309":4,"40310":4,"40311":3,"40312":1,"40313":2,"40314":2,"40315":3,"40316":3,"40317":4,"40318":3,"40319":4,"40320":2,"40321":1,"40322":3,"40323":3,"40324":3,"40325":3,"40326":4,"40327":2,"40328":3,"40329":2,"40330":2,"40331":3,"40332":4,"40333":4,"40334":2,"40335":3,"40336":5,"40337":2,"40338":2,"40339":4,"40340":3,"40341":1,"40342":5,"40343":1,"40344":4,"40345":2,"40346":3,"40347":4,"40348":1,"40349":2,"40350":3,"40351":2,"40352":5,"40353":4,"40354":2,"40355":4,"40356":2,"40357":4,"40358":1,"40359":3,"40360":3,"40361":3,"40362":5,"40363":4,"40364":3,"40365":2,"40366":3,"40367":4,"40368":3,"40369":2,"40370":4,"40371":3,"40372":3,"40373":2,"40374":2,"40375":3,"40376":4,"40377":4,"40378":4,"40379":4,"40380":1,"40381":3,"40382":5,"40383":4,"40384":2,"40385":3,"40386":1,"40387":1,"40388":3,"40389":4,"40390":2,"40391":4,"40392":3,"40393":3,"40394":3,"40395":2,"40396":2,"40397":1,"40398":4,"40399":3,"40400":2,"40401":3,"40402":3,"40403":1,"40404":3,"40405":3,"40406":2,"40407":3,"40408":3,"40409":4,"40410":4,"40411":2,"40412":2,"40413":2,"40414":3,"40415":2,"40416":4,"40417":2,"40418":2,"40419":4,"40420":3,"40421":4,"40422":3,"40423":2,"40424":2,"40425":3,"40426":4,"40427":3,"40428":2,"40429":4,"40430":3,"40431":1,"40432":3,"40433":2,"40434":3,"40435":2,"40436":5,"40437":2,"40438":3,"40439":4,"40440":4,"40441":1,"40442":3,"40443":2,"40444":2,"40445":3,"40446":4,"40447":3,"40448":5,"40449":4,"40450":4,"40451":4,"40452":4,"40453":4,"40454":4,"40455":3,"40456":3,"40457":3,"40458":5,"40459":2,"40460":3,"40461":4,"40462":3,"40463":2,"40464":3,"40465":3,"40466":3,"40467":3,"40468":4,"40469":4,"40470":2,"40471":3,"40472":3,"40473":1,"40474":4,"40475":4,"40476":2,"40477":2,"40478":3,"40479":3,"40480":2,"40481":3,"40482":3,"40483":2,"40484":4,"40485":4,"40486":3,"40487":2,"40488":2,"40489":2,"40490":1,"40491":1,"40492":3,"40493":3,"40494":3,"40495":1,"40496":3,"40497":2,"40498":3,"40499":1,"40500":4,"40501":2,"40502":3,"40503":3,"40504":3,"40505":4,"40506":2,"40507":3,"40508":4,"40509":4,"40510":3,"40511":2,"40512":2,"40513":1,"40514":1,"40515":2,"40516":1,"40517":3,"40518":2,"40519":1,"40520":2,"40521":2,"40522":2,"40523":2,"40524":3,"40525":3,"40526":2,"40527":3,"40528":3,"40529":3,"40530":4,"40531":3,"40532":2,"40533":3,"40534":5,"40535":3,"40536":3,"40537":1,"40538":4,"40539":4,"40540":2,"40541":4,"40542":3,"40543":5,"40544":2,"40545":4,"40546":5,"40547":4,"40548":4,"40549":3,"40550":1,"40551":3,"40552":2,"40553":3,"40554":5,"40555":4,"40556":2,"40557":3,"40558":2,"40559":2,"40560":3,"40561":3,"40562":2,"40563":1,"40564":3,"40565":3,"40566":1,"40567":2,"40568":5,"40569":1,"40570":3,"40571":1,"40572":3,"40573":2,"40574":4,"40575":2,"40576":5,"40577":3,"40578":4,"40579":3,"40580":3,"40581":3,"40582":3,"40583":3,"40584":2,"40585":4,"40586":3,"40587":5,"40588":1,"40589":2,"40590":2,"40591":4,"40592":2,"40593":4,"40594":4,"40595":3,"40596":3,"40597":1,"40598":5,"40599":3,"40600":3,"40601":2,"40602":3,"40603":1,"40604":2,"40605":1,"40606":2,"40607":4,"40608":2,"40609":5,"40610":5,"40611":2,"40612":2,"40613":2,"40614":1,"40615":2,"40616":2,"40617":3,"40618":1,"40619":3,"40620":3,"40621":2,"40622":4,"40623":3,"40624":3,"40625":1,"40626":5,"40627":3,"40628":2,"40629":3,"40630":3,"40631":5,"40632":5,"40633":2,"40634":4,"40635":3,"40636":3,"40637":3,"40638":3,"40639":2,"40640":3,"40641":1,"40642":2,"40643":4,"40644":4,"40645":4,"40646":3,"40647":3,"40648":2,"40649":1,"40650":3,"40651":2,"40652":5,"40653":2,"40654":2,"40655":3,"40656":3,"40657":4,"40658":3,"40659":4,"40660":3,"40661":3,"40662":3,"40663":3,"40664":3,"40665":3,"40666":3,"40667":4,"40668":4,"40669":4,"40670":3,"40671":2,"40672":4,"40673":2,"40674":3,"40675":3,"40676":5,"40677":3,"40678":3,"40679":5,"40680":2,"40681":4,"40682":5,"40683":3,"40684":4,"40685":4,"40686":1,"40687":3,"40688":5,"40689":3,"40690":3,"40691":2,"40692":4,"40693":5,"40694":3,"40695":3,"40696":1,"40697":4,"40698":4,"40699":3,"40700":3,"40701":2,"40702":3,"40703":3,"40704":3,"40705":4,"40706":2,"40707":2,"40708":3,"40709":4,"40710":3,"40711":4,"40712":3,"40713":5,"40714":3,"40715":2,"40716":1,"40717":4,"40718":2,"40719":3,"40720":2,"40721":3,"40722":3,"40723":5,"40724":4,"40725":3,"40726":4,"40727":2,"40728":4,"40729":4,"40730":1,"40731":4,"40732":2,"40733":2,"40734":4,"40735":2,"40736":3,"40737":4,"40738":3,"40739":4,"40740":4,"40741":3,"40742":3,"40743":3,"40744":1,"40745":4,"40746":3,"40747":4,"40748":3,"40749":1,"40750":2,"40751":4,"40752":4,"40753":4,"40754":3,"40755":1,"40756":3,"40757":4,"40758":3,"40759":3,"40760":4,"40761":2,"40762":3,"40763":3,"40764":2,"40765":4,"40766":2,"40767":4,"40768":4,"40769":2,"40770":4,"40771":3,"40772":3,"40773":4,"40774":2,"40775":5,"40776":3,"40777":5,"40778":2,"40779":4,"40780":2,"40781":1,"40782":3,"40783":4,"40784":5,"40785":4,"40786":2,"40787":2,"40788":5,"40789":3,"40790":1,"40791":3,"40792":3,"40793":4,"40794":2,"40795":5,"40796":3,"40797":2,"40798":2,"40799":4,"40800":3,"40801":4,"40802":3,"40803":3,"40804":2,"40805":3,"40806":3,"40807":4,"40808":1,"40809":5,"40810":3,"40811":3,"40812":3,"40813":5,"40814":2,"40815":4,"40816":3,"40817":3,"40818":2,"40819":3,"40820":1,"40821":1,"40822":4,"40823":1,"40824":4,"40825":3,"40826":3,"40827":4,"40828":3,"40829":2,"40830":1,"40831":2,"40832":2,"40833":2,"40834":4,"40835":3,"40836":4,"40837":2,"40838":1,"40839":2,"40840":3,"40841":2,"40842":1,"40843":1,"40844":2,"40845":2,"40846":4,"40847":4,"40848":3,"40849":1,"40850":5,"40851":3,"40852":3,"40853":2,"40854":4,"40855":1,"40856":3,"40857":2,"40858":3,"40859":3,"40860":2,"40861":4,"40862":3,"40863":3,"40864":3,"40865":4,"40866":5,"40867":4,"40868":3,"40869":4,"40870":4,"40871":3,"40872":4,"40873":3,"40874":3,"40875":4,"40876":2,"40877":1,"40878":2,"40879":5,"40880":1,"40881":1,"40882":1,"40883":3,"40884":3,"40885":2,"40886":3,"40887":2,"40888":3,"40889":2,"40890":3,"40891":4,"40892":1,"40893":4,"40894":2,"40895":3,"40896":2,"40897":2,"40898":1,"40899":2,"40900":3,"40901":3,"40902":4,"40903":3,"40904":5,"40905":3,"40906":3,"40907":3,"40908":5,"40909":1,"40910":2,"40911":3,"40912":2,"40913":5,"40914":3,"40915":4,"40916":3,"40917":4,"40918":2,"40919":3,"40920":3,"40921":2,"40922":1,"40923":3,"40924":1,"40925":3,"40926":2,"40927":3,"40928":3,"40929":3,"40930":2,"40931":5,"40932":1,"40933":3,"40934":3,"40935":3,"40936":2,"40937":2,"40938":2,"40939":1,"40940":4,"40941":3,"40942":5,"40943":3,"40944":3,"40945":3,"40946":5,"40947":3,"40948":3,"40949":2,"40950":4,"40951":5,"40952":2,"40953":1,"40954":4,"40955":3,"40956":3,"40957":2,"40958":3,"40959":3,"40960":4,"40961":3,"40962":3,"40963":4,"40964":5,"40965":2,"40966":4,"40967":3,"40968":3,"40969":2,"40970":4,"40971":3,"40972":4,"40973":3,"40974":4,"40975":4,"40976":4,"40977":1,"40978":2,"40979":3,"40980":3,"40981":4,"40982":4,"40983":3,"40984":5,"40985":3,"40986":5,"40987":3,"40988":3,"40989":2,"40990":2,"40991":4,"40992":5,"40993":3,"40994":3,"40995":2,"40996":3,"40997":3,"40998":3,"40999":3,"41000":2,"41001":4,"41002":5,"41003":1,"41004":3,"41005":2,"41006":4,"41007":3,"41008":1,"41009":3,"41010":1,"41011":3,"41012":3,"41013":4,"41014":3,"41015":3,"41016":4,"41017":2,"41018":2,"41019":3,"41020":3,"41021":3,"41022":3,"41023":1,"41024":3,"41025":4,"41026":3,"41027":5,"41028":2,"41029":4,"41030":3,"41031":2,"41032":3,"41033":1,"41034":5,"41035":2,"41036":2,"41037":5,"41038":3,"41039":1,"41040":1,"41041":4,"41042":2,"41043":4,"41044":4,"41045":4,"41046":1,"41047":2,"41048":3,"41049":3,"41050":3,"41051":4,"41052":1,"41053":2,"41054":5,"41055":3,"41056":4,"41057":4,"41058":1,"41059":3,"41060":4,"41061":4,"41062":3,"41063":1,"41064":3,"41065":3,"41066":4,"41067":1,"41068":3,"41069":3,"41070":3,"41071":2,"41072":2,"41073":5,"41074":3,"41075":3,"41076":4,"41077":3,"41078":4,"41079":3,"41080":4,"41081":2,"41082":4,"41083":4,"41084":2,"41085":4,"41086":3,"41087":4,"41088":2,"41089":3,"41090":5,"41091":4,"41092":3,"41093":4,"41094":3,"41095":2,"41096":4,"41097":3,"41098":3,"41099":3,"41100":4,"41101":3,"41102":2,"41103":3,"41104":1,"41105":3,"41106":2,"41107":5,"41108":3,"41109":4,"41110":3,"41111":3,"41112":1,"41113":2,"41114":4,"41115":3,"41116":3,"41117":2,"41118":3,"41119":2,"41120":2,"41121":3,"41122":4,"41123":3,"41124":2,"41125":2,"41126":4,"41127":4,"41128":2,"41129":4,"41130":4,"41131":1,"41132":2,"41133":5,"41134":2,"41135":2,"41136":4,"41137":4,"41138":1,"41139":4,"41140":3,"41141":2,"41142":4,"41143":5,"41144":4,"41145":1,"41146":3,"41147":5,"41148":5,"41149":3,"41150":4,"41151":2,"41152":3,"41153":1,"41154":3,"41155":5,"41156":4,"41157":3,"41158":2,"41159":2,"41160":2,"41161":3,"41162":2,"41163":4,"41164":4,"41165":4,"41166":1,"41167":3,"41168":2,"41169":2,"41170":4,"41171":3,"41172":1,"41173":4,"41174":5,"41175":2,"41176":1,"41177":2,"41178":3,"41179":2,"41180":4,"41181":4,"41182":3,"41183":5,"41184":2,"41185":2,"41186":5,"41187":2,"41188":3,"41189":5,"41190":4,"41191":4,"41192":3,"41193":5,"41194":2,"41195":2,"41196":5,"41197":4,"41198":3,"41199":3,"41200":4,"41201":1,"41202":4,"41203":4,"41204":3,"41205":2,"41206":3,"41207":3,"41208":3,"41209":1,"41210":3,"41211":4,"41212":2,"41213":4,"41214":3,"41215":1,"41216":2,"41217":5,"41218":5,"41219":4,"41220":1,"41221":3,"41222":2,"41223":2,"41224":3,"41225":3,"41226":4,"41227":3,"41228":4,"41229":4,"41230":3,"41231":4,"41232":3,"41233":4,"41234":2,"41235":4,"41236":4,"41237":3,"41238":2,"41239":3,"41240":2,"41241":1,"41242":2,"41243":3,"41244":3,"41245":5,"41246":2,"41247":4,"41248":4,"41249":4,"41250":4,"41251":4,"41252":3,"41253":3,"41254":4,"41255":4,"41256":5,"41257":3,"41258":3,"41259":2,"41260":2,"41261":3,"41262":5,"41263":3,"41264":3,"41265":4,"41266":2,"41267":1,"41268":5,"41269":2,"41270":4,"41271":4,"41272":2,"41273":1,"41274":2,"41275":1,"41276":1,"41277":3,"41278":3,"41279":4,"41280":3,"41281":2,"41282":4,"41283":3,"41284":3,"41285":3,"41286":4,"41287":4,"41288":5,"41289":3,"41290":3,"41291":3,"41292":3,"41293":4,"41294":4,"41295":3,"41296":2,"41297":4,"41298":3,"41299":3,"41300":2,"41301":3,"41302":1,"41303":3,"41304":3,"41305":3,"41306":2,"41307":2,"41308":4,"41309":4,"41310":4,"41311":2,"41312":4,"41313":2,"41314":3,"41315":2,"41316":3,"41317":3,"41318":3,"41319":3,"41320":4,"41321":3,"41322":3,"41323":3,"41324":1,"41325":4,"41326":1,"41327":1,"41328":2,"41329":2,"41330":3,"41331":3,"41332":2,"41333":3,"41334":3,"41335":2,"41336":3,"41337":2,"41338":2,"41339":1,"41340":2,"41341":4,"41342":1,"41343":2,"41344":4,"41345":4,"41346":2,"41347":2,"41348":4,"41349":1,"41350":5,"41351":2,"41352":3,"41353":3,"41354":3,"41355":2,"41356":4,"41357":5,"41358":3,"41359":3,"41360":2,"41361":3,"41362":2,"41363":4,"41364":3,"41365":3,"41366":3,"41367":4,"41368":4,"41369":1,"41370":2,"41371":4,"41372":2,"41373":2,"41374":4,"41375":1,"41376":1,"41377":2,"41378":4,"41379":2,"41380":3,"41381":2,"41382":4,"41383":5,"41384":2,"41385":4,"41386":4,"41387":3,"41388":3,"41389":4,"41390":3,"41391":3,"41392":3,"41393":4,"41394":3,"41395":4,"41396":2,"41397":2,"41398":4,"41399":2,"41400":5,"41401":3,"41402":3,"41403":3,"41404":4,"41405":2,"41406":2,"41407":3,"41408":5,"41409":3,"41410":5,"41411":3,"41412":5,"41413":2,"41414":2,"41415":5,"41416":4,"41417":3,"41418":3,"41419":3,"41420":3,"41421":3,"41422":1,"41423":5,"41424":2,"41425":5,"41426":4,"41427":4,"41428":3,"41429":3,"41430":3,"41431":1,"41432":3,"41433":3,"41434":5,"41435":1,"41436":3,"41437":2,"41438":4,"41439":3,"41440":4,"41441":4,"41442":4,"41443":4,"41444":4,"41445":4,"41446":4,"41447":3,"41448":1,"41449":2,"41450":4,"41451":4,"41452":2,"41453":4,"41454":4,"41455":4,"41456":1,"41457":2,"41458":3,"41459":5,"41460":2,"41461":2,"41462":2,"41463":3,"41464":3,"41465":2,"41466":5,"41467":3,"41468":1,"41469":3,"41470":3,"41471":3,"41472":3,"41473":3,"41474":5,"41475":3,"41476":4,"41477":4,"41478":2,"41479":1,"41480":4,"41481":2,"41482":4,"41483":3,"41484":4,"41485":3,"41486":4,"41487":2,"41488":4,"41489":3,"41490":2,"41491":2,"41492":4,"41493":3,"41494":2,"41495":5,"41496":5,"41497":4,"41498":2,"41499":2,"41500":3,"41501":3,"41502":3,"41503":4,"41504":2,"41505":4,"41506":1,"41507":2,"41508":2,"41509":2,"41510":5,"41511":4,"41512":3,"41513":4,"41514":1,"41515":4,"41516":3,"41517":3,"41518":2,"41519":3,"41520":3,"41521":2,"41522":4,"41523":2,"41524":2,"41525":3,"41526":4,"41527":4,"41528":2,"41529":4,"41530":2,"41531":2,"41532":5,"41533":3,"41534":1,"41535":1,"41536":3,"41537":4,"41538":2,"41539":3,"41540":3,"41541":2,"41542":2,"41543":5,"41544":4,"41545":3,"41546":3,"41547":3,"41548":2,"41549":3,"41550":3,"41551":2,"41552":5,"41553":2,"41554":4,"41555":5,"41556":2,"41557":2,"41558":4,"41559":2,"41560":4,"41561":2,"41562":3,"41563":3,"41564":3,"41565":2,"41566":2,"41567":3,"41568":3,"41569":2,"41570":3,"41571":1,"41572":3,"41573":3,"41574":3,"41575":4,"41576":3,"41577":5,"41578":5,"41579":4,"41580":2,"41581":3,"41582":2,"41583":3,"41584":4,"41585":2,"41586":4,"41587":3,"41588":3,"41589":3,"41590":3,"41591":3,"41592":1,"41593":3,"41594":2,"41595":3,"41596":2,"41597":2,"41598":4,"41599":3,"41600":3,"41601":3,"41602":3,"41603":2,"41604":3,"41605":4,"41606":3,"41607":2,"41608":3,"41609":1,"41610":3,"41611":2,"41612":2,"41613":1,"41614":2,"41615":2,"41616":1,"41617":3,"41618":4,"41619":4,"41620":5,"41621":2,"41622":1,"41623":3,"41624":2,"41625":1,"41626":3,"41627":3,"41628":2,"41629":1,"41630":2,"41631":3,"41632":3,"41633":1,"41634":4,"41635":3,"41636":4,"41637":2,"41638":4,"41639":4,"41640":3,"41641":3,"41642":5,"41643":2,"41644":5,"41645":2,"41646":4,"41647":3,"41648":3,"41649":3,"41650":3,"41651":2,"41652":2,"41653":3,"41654":3,"41655":5,"41656":1,"41657":4,"41658":4,"41659":3,"41660":1,"41661":1,"41662":2,"41663":2,"41664":4,"41665":4,"41666":4,"41667":3,"41668":3,"41669":1,"41670":3,"41671":5,"41672":1,"41673":2,"41674":4,"41675":2,"41676":3,"41677":4,"41678":5,"41679":3,"41680":3,"41681":3,"41682":4,"41683":2,"41684":3,"41685":3,"41686":4,"41687":3,"41688":1,"41689":3,"41690":3,"41691":2,"41692":3,"41693":1,"41694":2,"41695":1,"41696":3,"41697":2,"41698":2,"41699":3,"41700":4,"41701":4,"41702":2,"41703":2,"41704":5,"41705":1,"41706":3,"41707":4,"41708":1,"41709":5,"41710":5,"41711":1,"41712":2,"41713":2,"41714":4,"41715":4,"41716":4,"41717":2,"41718":3,"41719":3,"41720":2,"41721":3,"41722":4,"41723":5,"41724":3,"41725":3,"41726":1,"41727":4,"41728":3,"41729":3,"41730":3,"41731":4,"41732":3,"41733":3,"41734":4,"41735":4,"41736":4,"41737":4,"41738":3,"41739":4,"41740":3,"41741":4,"41742":4,"41743":1,"41744":5,"41745":2,"41746":3,"41747":5,"41748":4,"41749":4,"41750":4,"41751":1,"41752":3,"41753":3,"41754":5,"41755":4,"41756":2,"41757":1,"41758":3,"41759":3,"41760":2,"41761":4,"41762":5,"41763":3,"41764":4,"41765":4,"41766":2,"41767":4,"41768":3,"41769":1,"41770":4,"41771":2,"41772":3,"41773":3,"41774":5,"41775":4,"41776":2,"41777":3,"41778":2,"41779":3,"41780":3,"41781":4,"41782":2,"41783":1,"41784":3,"41785":3,"41786":4,"41787":3,"41788":4,"41789":5,"41790":2,"41791":3,"41792":3,"41793":2,"41794":2,"41795":3,"41796":5,"41797":4,"41798":4,"41799":3,"41800":1,"41801":3,"41802":4,"41803":4,"41804":3,"41805":3,"41806":3,"41807":1,"41808":4,"41809":3,"41810":5,"41811":3,"41812":2,"41813":4,"41814":3,"41815":5,"41816":4,"41817":4,"41818":3,"41819":2,"41820":4,"41821":3,"41822":4,"41823":4,"41824":3,"41825":4,"41826":4,"41827":3,"41828":3,"41829":1,"41830":2,"41831":4,"41832":2,"41833":2,"41834":3,"41835":2,"41836":1,"41837":1,"41838":3,"41839":1,"41840":2,"41841":2,"41842":5,"41843":2,"41844":1,"41845":3,"41846":3,"41847":3,"41848":3,"41849":3,"41850":3,"41851":2,"41852":3,"41853":2,"41854":3,"41855":1,"41856":4,"41857":1,"41858":4,"41859":5,"41860":3,"41861":3,"41862":2,"41863":3,"41864":3,"41865":4,"41866":4,"41867":4,"41868":4,"41869":2,"41870":3,"41871":3,"41872":4,"41873":5,"41874":5,"41875":2,"41876":3,"41877":4,"41878":2,"41879":3,"41880":1,"41881":3,"41882":4,"41883":3,"41884":4,"41885":5,"41886":4,"41887":3,"41888":2,"41889":4,"41890":1,"41891":4,"41892":2,"41893":3,"41894":4,"41895":4,"41896":2,"41897":1,"41898":2,"41899":4,"41900":2,"41901":2,"41902":2,"41903":4,"41904":5,"41905":1,"41906":2,"41907":3,"41908":4,"41909":3,"41910":1,"41911":4,"41912":3,"41913":1,"41914":2,"41915":5,"41916":1,"41917":2,"41918":4,"41919":3,"41920":5,"41921":1,"41922":3,"41923":5,"41924":3,"41925":2,"41926":4,"41927":4,"41928":3,"41929":1,"41930":1,"41931":5,"41932":4,"41933":4,"41934":1,"41935":4,"41936":5,"41937":4,"41938":5,"41939":3,"41940":3,"41941":3,"41942":3,"41943":5,"41944":3,"41945":2,"41946":2,"41947":3,"41948":2,"41949":3,"41950":4,"41951":2,"41952":3,"41953":5,"41954":2,"41955":5,"41956":4,"41957":3,"41958":4,"41959":3,"41960":3,"41961":3,"41962":4,"41963":1,"41964":4,"41965":2,"41966":3,"41967":3,"41968":3,"41969":2,"41970":2,"41971":3,"41972":3,"41973":3,"41974":3,"41975":3,"41976":3,"41977":3,"41978":1,"41979":4,"41980":5,"41981":3,"41982":3,"41983":5,"41984":2,"41985":3,"41986":3,"41987":3,"41988":3,"41989":2,"41990":4,"41991":4,"41992":3,"41993":2,"41994":3,"41995":2,"41996":1,"41997":2,"41998":3,"41999":4,"42000":2,"42001":4,"42002":4,"42003":4,"42004":4,"42005":5,"42006":3,"42007":2,"42008":4,"42009":4,"42010":4,"42011":3,"42012":5,"42013":4,"42014":4,"42015":2,"42016":3,"42017":2,"42018":3,"42019":3,"42020":3,"42021":3,"42022":3,"42023":2,"42024":2,"42025":3,"42026":2,"42027":4,"42028":3,"42029":3,"42030":3,"42031":3,"42032":3,"42033":3,"42034":4,"42035":3,"42036":4,"42037":4,"42038":3,"42039":5,"42040":2,"42041":4,"42042":3,"42043":4,"42044":3,"42045":1,"42046":5,"42047":3,"42048":3,"42049":3,"42050":1,"42051":3,"42052":3,"42053":3,"42054":2,"42055":5,"42056":5,"42057":1,"42058":2,"42059":3,"42060":3,"42061":2,"42062":3,"42063":3,"42064":1,"42065":3,"42066":3,"42067":5,"42068":5,"42069":4,"42070":2,"42071":4,"42072":3,"42073":3,"42074":3,"42075":1,"42076":3,"42077":3,"42078":4,"42079":4,"42080":4,"42081":4,"42082":5,"42083":3,"42084":2,"42085":3,"42086":4,"42087":3,"42088":5,"42089":4,"42090":4,"42091":3,"42092":4,"42093":3,"42094":3,"42095":2,"42096":3,"42097":4,"42098":4,"42099":4,"42100":1,"42101":5,"42102":2,"42103":3,"42104":1,"42105":3,"42106":1,"42107":4,"42108":4,"42109":3,"42110":3,"42111":4,"42112":4,"42113":3,"42114":2,"42115":2,"42116":1,"42117":3,"42118":2,"42119":3,"42120":3,"42121":5,"42122":2,"42123":2,"42124":2,"42125":3,"42126":2,"42127":4,"42128":2,"42129":2,"42130":4,"42131":2,"42132":4,"42133":3,"42134":2,"42135":3,"42136":2,"42137":2,"42138":4,"42139":3,"42140":2,"42141":3,"42142":3,"42143":4,"42144":2,"42145":5,"42146":3,"42147":1,"42148":2,"42149":2,"42150":2,"42151":5,"42152":1,"42153":4,"42154":3,"42155":1,"42156":3,"42157":5,"42158":3,"42159":4,"42160":3,"42161":3,"42162":3,"42163":5,"42164":2,"42165":4,"42166":3,"42167":4,"42168":3,"42169":3,"42170":5,"42171":4,"42172":4,"42173":3,"42174":2,"42175":1,"42176":3,"42177":3,"42178":2,"42179":3,"42180":1,"42181":3,"42182":4,"42183":4,"42184":1,"42185":3,"42186":3,"42187":3,"42188":3,"42189":3,"42190":2,"42191":3,"42192":1,"42193":2,"42194":2,"42195":3,"42196":5,"42197":2,"42198":3,"42199":4,"42200":1,"42201":1,"42202":4,"42203":3,"42204":3,"42205":2,"42206":3,"42207":2,"42208":4,"42209":4,"42210":2,"42211":3,"42212":2,"42213":1,"42214":2,"42215":3,"42216":3,"42217":3,"42218":2,"42219":2,"42220":2,"42221":2,"42222":5,"42223":4,"42224":1,"42225":3,"42226":2,"42227":3,"42228":1,"42229":4,"42230":4,"42231":1,"42232":1,"42233":3,"42234":1,"42235":5,"42236":3,"42237":3,"42238":3,"42239":2,"42240":3,"42241":3,"42242":3,"42243":4,"42244":4,"42245":4,"42246":2,"42247":3,"42248":4,"42249":2,"42250":4,"42251":4,"42252":1,"42253":2,"42254":2,"42255":4,"42256":2,"42257":1,"42258":2,"42259":3,"42260":1,"42261":4,"42262":5,"42263":3,"42264":3,"42265":4,"42266":3,"42267":1,"42268":4,"42269":3,"42270":4,"42271":4,"42272":4,"42273":5,"42274":4,"42275":2,"42276":3,"42277":4,"42278":4,"42279":3,"42280":3,"42281":4,"42282":3,"42283":4,"42284":1,"42285":3,"42286":1,"42287":3,"42288":1,"42289":3,"42290":3,"42291":4,"42292":3,"42293":1,"42294":4,"42295":4,"42296":2,"42297":3,"42298":3,"42299":4,"42300":2,"42301":4,"42302":4,"42303":4,"42304":3,"42305":1,"42306":5,"42307":2,"42308":3,"42309":2,"42310":3,"42311":3,"42312":1,"42313":5,"42314":1,"42315":3,"42316":3,"42317":3,"42318":3,"42319":4,"42320":2,"42321":5,"42322":4,"42323":3,"42324":1,"42325":3,"42326":5,"42327":4,"42328":3,"42329":2,"42330":3,"42331":2,"42332":2,"42333":2,"42334":1,"42335":2,"42336":3,"42337":4,"42338":3,"42339":4,"42340":4,"42341":4,"42342":3,"42343":2,"42344":3,"42345":4,"42346":4,"42347":5,"42348":3,"42349":3,"42350":4,"42351":2,"42352":5,"42353":3,"42354":4,"42355":3,"42356":4,"42357":2,"42358":5,"42359":1,"42360":4,"42361":2,"42362":2,"42363":3,"42364":4,"42365":4,"42366":3,"42367":1,"42368":3,"42369":3,"42370":3,"42371":3,"42372":3,"42373":3,"42374":3,"42375":1,"42376":3,"42377":5,"42378":2,"42379":1,"42380":1,"42381":3,"42382":1,"42383":2,"42384":5,"42385":4,"42386":3,"42387":3,"42388":4,"42389":2,"42390":2,"42391":5,"42392":4,"42393":3,"42394":2,"42395":2,"42396":4,"42397":2,"42398":2,"42399":5,"42400":2,"42401":2,"42402":2,"42403":2,"42404":3,"42405":1,"42406":4,"42407":1,"42408":2,"42409":2,"42410":2,"42411":1,"42412":2,"42413":3,"42414":1,"42415":5,"42416":4,"42417":3,"42418":3,"42419":3,"42420":2,"42421":2,"42422":5,"42423":5,"42424":3,"42425":4,"42426":2,"42427":4,"42428":4,"42429":2,"42430":3,"42431":4,"42432":1,"42433":4,"42434":3,"42435":1,"42436":4,"42437":3,"42438":3,"42439":4,"42440":1,"42441":4,"42442":1,"42443":3,"42444":1,"42445":4,"42446":1,"42447":1,"42448":1,"42449":3,"42450":1,"42451":3,"42452":2,"42453":1,"42454":3,"42455":3,"42456":3,"42457":3,"42458":2,"42459":4,"42460":2,"42461":3,"42462":3,"42463":3,"42464":1,"42465":3,"42466":2,"42467":4,"42468":1,"42469":3,"42470":1,"42471":2,"42472":1,"42473":2,"42474":2,"42475":3,"42476":3,"42477":3,"42478":3,"42479":4,"42480":4,"42481":4,"42482":3,"42483":3,"42484":4,"42485":3,"42486":2,"42487":2,"42488":2,"42489":3,"42490":3,"42491":2,"42492":1,"42493":2,"42494":4,"42495":5,"42496":4,"42497":3,"42498":3,"42499":2,"42500":4,"42501":2,"42502":3,"42503":4,"42504":4,"42505":1,"42506":3,"42507":4,"42508":3,"42509":2,"42510":3,"42511":2,"42512":3,"42513":3,"42514":4,"42515":3,"42516":3,"42517":3,"42518":3,"42519":2,"42520":1,"42521":3,"42522":3,"42523":3,"42524":4,"42525":3,"42526":4,"42527":4,"42528":2,"42529":4,"42530":2,"42531":2,"42532":3,"42533":2,"42534":3,"42535":3,"42536":5,"42537":3,"42538":4,"42539":5,"42540":2,"42541":3,"42542":2,"42543":3,"42544":3,"42545":2,"42546":1,"42547":3,"42548":5,"42549":2,"42550":3,"42551":5,"42552":2,"42553":3,"42554":3,"42555":4,"42556":3,"42557":5,"42558":3,"42559":4,"42560":5,"42561":3,"42562":3,"42563":2,"42564":2,"42565":3,"42566":1,"42567":2,"42568":3,"42569":3,"42570":1,"42571":3,"42572":4,"42573":2,"42574":4,"42575":4,"42576":2,"42577":3,"42578":4,"42579":3,"42580":3,"42581":3,"42582":2,"42583":3,"42584":4,"42585":5,"42586":3,"42587":4,"42588":4,"42589":4,"42590":4,"42591":5,"42592":2,"42593":2,"42594":4,"42595":3,"42596":5,"42597":4,"42598":1,"42599":1,"42600":5,"42601":4,"42602":3,"42603":3,"42604":3,"42605":3,"42606":4,"42607":3,"42608":3,"42609":4,"42610":2,"42611":3,"42612":4,"42613":5,"42614":3,"42615":3,"42616":5,"42617":1,"42618":4,"42619":1,"42620":5,"42621":3,"42622":2,"42623":2,"42624":1,"42625":4,"42626":2,"42627":4,"42628":2,"42629":2,"42630":3,"42631":2,"42632":4,"42633":2,"42634":3,"42635":4,"42636":1,"42637":4,"42638":5,"42639":4,"42640":3,"42641":3,"42642":3,"42643":5,"42644":4,"42645":2,"42646":2,"42647":2,"42648":3,"42649":2,"42650":3,"42651":4,"42652":3,"42653":4,"42654":4,"42655":2,"42656":3,"42657":4,"42658":2,"42659":3,"42660":3,"42661":2,"42662":4,"42663":3,"42664":2,"42665":5,"42666":3,"42667":2,"42668":3,"42669":2,"42670":2,"42671":4,"42672":5,"42673":1,"42674":3,"42675":4,"42676":2,"42677":4,"42678":5,"42679":3,"42680":2,"42681":3,"42682":5,"42683":3,"42684":2,"42685":3,"42686":5,"42687":2,"42688":4,"42689":2,"42690":1,"42691":4,"42692":3,"42693":3,"42694":2,"42695":4,"42696":3,"42697":1,"42698":2,"42699":4,"42700":3,"42701":3,"42702":3,"42703":3,"42704":5,"42705":3,"42706":3,"42707":2,"42708":2,"42709":1,"42710":3,"42711":3,"42712":3,"42713":1,"42714":2,"42715":4,"42716":2,"42717":5,"42718":4,"42719":4,"42720":4,"42721":3,"42722":5,"42723":3,"42724":1,"42725":2,"42726":4,"42727":4,"42728":3,"42729":5,"42730":1,"42731":1,"42732":2,"42733":4,"42734":1,"42735":3,"42736":3,"42737":3,"42738":2,"42739":5,"42740":3,"42741":1,"42742":5,"42743":2,"42744":3,"42745":2,"42746":3,"42747":4,"42748":4,"42749":4,"42750":2,"42751":4,"42752":3,"42753":4,"42754":4,"42755":3,"42756":3,"42757":4,"42758":3,"42759":1,"42760":2,"42761":4,"42762":4,"42763":3,"42764":4,"42765":4,"42766":4,"42767":3,"42768":3,"42769":3,"42770":1,"42771":4,"42772":3,"42773":1,"42774":3,"42775":4,"42776":3,"42777":3,"42778":2,"42779":3,"42780":2,"42781":2,"42782":3,"42783":4,"42784":2,"42785":1,"42786":4,"42787":3,"42788":4,"42789":2,"42790":3,"42791":5,"42792":3,"42793":2,"42794":2,"42795":3,"42796":5,"42797":4,"42798":2,"42799":3,"42800":1,"42801":1,"42802":4,"42803":2,"42804":3,"42805":4,"42806":2,"42807":3,"42808":1,"42809":2,"42810":4,"42811":2,"42812":4,"42813":4,"42814":4,"42815":2,"42816":3,"42817":3,"42818":3,"42819":3,"42820":2,"42821":4,"42822":1,"42823":1,"42824":5,"42825":5,"42826":3,"42827":4,"42828":3,"42829":3,"42830":2,"42831":4,"42832":4,"42833":2,"42834":3,"42835":1,"42836":3,"42837":4,"42838":5,"42839":4,"42840":4,"42841":4,"42842":2,"42843":1,"42844":2,"42845":1,"42846":3,"42847":4,"42848":2,"42849":2,"42850":4,"42851":2,"42852":5,"42853":4,"42854":3,"42855":2,"42856":2,"42857":4,"42858":4,"42859":3,"42860":3,"42861":4,"42862":3,"42863":4,"42864":3,"42865":2,"42866":4,"42867":2,"42868":3,"42869":3,"42870":3,"42871":3,"42872":2,"42873":3,"42874":2,"42875":4,"42876":2,"42877":1,"42878":4,"42879":3,"42880":2,"42881":3,"42882":4,"42883":3,"42884":3,"42885":5,"42886":2,"42887":4,"42888":4,"42889":4,"42890":2,"42891":2,"42892":3,"42893":2,"42894":4,"42895":2,"42896":2,"42897":3,"42898":3,"42899":3,"42900":2,"42901":4,"42902":4,"42903":3,"42904":3,"42905":2,"42906":2,"42907":4,"42908":2,"42909":3,"42910":2,"42911":3,"42912":4,"42913":2,"42914":3,"42915":5,"42916":4,"42917":3,"42918":3,"42919":3,"42920":3,"42921":4,"42922":3,"42923":5,"42924":3,"42925":3,"42926":4,"42927":4,"42928":3,"42929":4,"42930":2,"42931":2,"42932":4,"42933":2,"42934":2,"42935":4,"42936":4,"42937":2,"42938":3,"42939":2,"42940":3,"42941":1,"42942":3,"42943":3,"42944":4,"42945":4,"42946":4,"42947":3,"42948":4,"42949":5,"42950":1,"42951":5,"42952":4,"42953":2,"42954":3,"42955":3,"42956":2,"42957":1,"42958":4,"42959":2,"42960":3,"42961":3,"42962":2,"42963":4,"42964":3,"42965":4,"42966":5,"42967":4,"42968":4,"42969":4,"42970":2,"42971":2,"42972":5,"42973":3,"42974":3,"42975":5,"42976":3,"42977":2,"42978":2,"42979":2,"42980":1,"42981":3,"42982":4,"42983":1,"42984":4,"42985":3,"42986":3,"42987":3,"42988":2,"42989":2,"42990":3,"42991":2,"42992":2,"42993":3,"42994":3,"42995":4,"42996":3,"42997":3,"42998":3,"42999":3,"43000":5,"43001":3,"43002":3,"43003":5,"43004":4,"43005":2,"43006":3,"43007":5,"43008":5,"43009":3,"43010":2,"43011":4,"43012":4,"43013":3,"43014":2,"43015":2,"43016":3,"43017":2,"43018":1,"43019":3,"43020":4,"43021":2,"43022":2,"43023":3,"43024":1,"43025":4,"43026":3,"43027":3,"43028":4,"43029":2,"43030":3,"43031":2,"43032":3,"43033":2,"43034":2,"43035":3,"43036":3,"43037":3,"43038":4,"43039":4,"43040":1,"43041":2,"43042":4,"43043":3,"43044":3,"43045":1,"43046":2,"43047":2,"43048":4,"43049":3,"43050":3,"43051":2,"43052":2,"43053":4,"43054":3,"43055":4,"43056":3,"43057":4,"43058":5,"43059":2,"43060":2,"43061":4,"43062":3,"43063":4,"43064":3,"43065":4,"43066":3,"43067":3,"43068":4,"43069":2,"43070":1,"43071":5,"43072":4,"43073":2,"43074":1,"43075":1,"43076":3,"43077":3,"43078":2,"43079":4,"43080":3,"43081":4,"43082":1,"43083":4,"43084":1,"43085":3,"43086":2,"43087":4,"43088":4,"43089":1,"43090":2,"43091":2,"43092":1,"43093":3,"43094":2,"43095":5,"43096":4,"43097":2,"43098":3,"43099":1,"43100":5,"43101":2,"43102":2,"43103":5,"43104":2,"43105":4,"43106":3,"43107":3,"43108":3,"43109":5,"43110":2,"43111":4,"43112":2,"43113":3,"43114":2,"43115":3,"43116":4,"43117":1,"43118":3,"43119":3,"43120":2,"43121":5,"43122":4,"43123":5,"43124":3,"43125":3,"43126":2,"43127":3,"43128":3,"43129":2,"43130":3,"43131":4,"43132":5,"43133":2,"43134":3,"43135":3,"43136":3,"43137":3,"43138":4,"43139":2,"43140":3,"43141":2,"43142":3,"43143":4,"43144":3,"43145":4,"43146":2,"43147":3,"43148":1,"43149":3,"43150":4,"43151":3,"43152":3,"43153":2,"43154":3,"43155":3,"43156":4,"43157":4,"43158":3,"43159":3,"43160":4,"43161":3,"43162":2,"43163":4,"43164":3,"43165":3,"43166":3,"43167":4,"43168":2,"43169":1,"43170":2,"43171":2,"43172":4,"43173":2,"43174":4,"43175":2,"43176":4,"43177":3,"43178":4,"43179":5,"43180":4,"43181":2,"43182":3,"43183":4,"43184":3,"43185":2,"43186":2,"43187":4,"43188":3,"43189":4,"43190":2,"43191":2,"43192":3,"43193":3,"43194":3,"43195":3,"43196":2,"43197":5,"43198":4,"43199":3,"43200":2,"43201":1,"43202":2,"43203":4,"43204":4,"43205":2,"43206":4,"43207":4,"43208":2,"43209":3,"43210":3,"43211":4,"43212":3,"43213":4,"43214":2,"43215":5,"43216":1,"43217":3,"43218":3,"43219":4,"43220":2,"43221":2,"43222":1,"43223":4,"43224":3,"43225":2,"43226":4,"43227":3,"43228":2,"43229":1,"43230":3,"43231":3,"43232":3,"43233":3,"43234":4,"43235":3,"43236":3,"43237":4,"43238":3,"43239":3,"43240":4,"43241":4,"43242":3,"43243":2,"43244":3,"43245":4,"43246":3,"43247":2,"43248":1,"43249":3,"43250":2,"43251":4,"43252":4,"43253":3,"43254":3,"43255":3,"43256":3,"43257":3,"43258":3,"43259":4,"43260":4,"43261":1,"43262":2,"43263":3,"43264":3,"43265":3,"43266":3,"43267":2,"43268":2,"43269":4,"43270":4,"43271":2,"43272":4,"43273":3,"43274":5,"43275":3,"43276":4,"43277":1,"43278":2,"43279":3,"43280":4,"43281":1,"43282":3,"43283":5,"43284":2,"43285":1,"43286":4,"43287":4,"43288":2,"43289":4,"43290":3,"43291":4,"43292":3,"43293":3,"43294":4,"43295":4,"43296":3,"43297":3,"43298":3,"43299":4,"43300":3,"43301":3,"43302":3,"43303":4,"43304":3,"43305":4,"43306":2,"43307":3,"43308":1,"43309":2,"43310":3,"43311":2,"43312":1,"43313":4,"43314":3,"43315":3,"43316":1,"43317":4,"43318":4,"43319":4,"43320":2,"43321":3,"43322":2,"43323":4,"43324":2,"43325":3,"43326":1,"43327":1,"43328":3,"43329":2,"43330":2,"43331":1,"43332":3,"43333":4,"43334":3,"43335":1,"43336":5,"43337":5,"43338":1,"43339":3,"43340":2,"43341":3,"43342":4,"43343":3,"43344":2,"43345":2,"43346":2,"43347":3,"43348":4,"43349":4,"43350":3,"43351":5,"43352":3,"43353":5,"43354":2,"43355":3,"43356":3,"43357":4,"43358":3,"43359":3,"43360":1,"43361":1,"43362":2,"43363":4,"43364":3,"43365":2,"43366":2,"43367":2,"43368":2,"43369":2,"43370":5,"43371":4,"43372":3,"43373":2,"43374":1,"43375":4,"43376":2,"43377":4,"43378":4,"43379":2,"43380":2,"43381":1,"43382":4,"43383":3,"43384":2,"43385":1,"43386":2,"43387":3,"43388":4,"43389":3,"43390":4,"43391":1,"43392":3,"43393":3,"43394":2,"43395":3,"43396":2,"43397":2,"43398":4,"43399":4,"43400":3,"43401":4,"43402":1,"43403":1,"43404":4,"43405":2,"43406":3,"43407":1,"43408":3,"43409":3,"43410":2,"43411":3,"43412":5,"43413":3,"43414":1,"43415":2,"43416":4,"43417":3,"43418":2,"43419":5,"43420":4,"43421":3,"43422":3,"43423":4,"43424":5,"43425":5,"43426":4,"43427":2,"43428":4,"43429":3,"43430":4,"43431":3,"43432":5,"43433":3,"43434":2,"43435":4,"43436":3,"43437":4,"43438":5,"43439":4,"43440":2,"43441":4,"43442":3,"43443":2,"43444":3,"43445":2,"43446":4,"43447":4,"43448":2,"43449":4,"43450":3,"43451":4,"43452":3,"43453":1,"43454":3,"43455":3,"43456":2,"43457":3,"43458":5,"43459":2,"43460":4,"43461":3,"43462":5,"43463":3,"43464":2,"43465":3,"43466":1,"43467":3,"43468":3,"43469":4,"43470":3,"43471":3,"43472":3,"43473":3,"43474":3,"43475":1,"43476":3,"43477":2,"43478":4,"43479":3,"43480":3,"43481":3,"43482":4,"43483":4,"43484":2,"43485":2,"43486":4,"43487":4,"43488":3,"43489":1,"43490":2,"43491":4,"43492":2,"43493":4,"43494":4,"43495":5,"43496":3,"43497":5,"43498":3,"43499":2,"43500":2,"43501":2,"43502":3,"43503":2,"43504":3,"43505":3,"43506":4,"43507":5,"43508":4,"43509":3,"43510":3,"43511":3,"43512":3,"43513":2,"43514":3,"43515":3,"43516":1,"43517":4,"43518":5,"43519":3,"43520":2,"43521":5,"43522":3,"43523":5,"43524":2,"43525":4,"43526":2,"43527":5,"43528":2,"43529":3,"43530":3,"43531":2,"43532":4,"43533":2,"43534":2,"43535":2,"43536":5,"43537":5,"43538":5,"43539":1,"43540":3,"43541":1,"43542":4,"43543":4,"43544":4,"43545":3,"43546":2,"43547":4,"43548":4,"43549":3,"43550":1,"43551":2,"43552":5,"43553":2,"43554":3,"43555":2,"43556":3,"43557":2,"43558":4,"43559":4,"43560":1,"43561":2,"43562":2,"43563":4,"43564":3,"43565":4,"43566":1,"43567":5,"43568":2,"43569":3,"43570":2,"43571":4,"43572":4,"43573":3,"43574":2,"43575":4,"43576":2,"43577":1,"43578":3,"43579":4,"43580":1,"43581":4,"43582":3,"43583":5,"43584":4,"43585":2,"43586":3,"43587":3,"43588":1,"43589":3,"43590":2,"43591":2,"43592":3,"43593":2,"43594":1,"43595":1,"43596":3,"43597":3,"43598":3,"43599":3,"43600":3,"43601":4,"43602":5,"43603":2,"43604":3,"43605":3,"43606":1,"43607":2,"43608":4,"43609":3,"43610":2,"43611":2,"43612":1,"43613":3,"43614":2,"43615":4,"43616":2,"43617":2,"43618":2,"43619":2,"43620":3,"43621":2,"43622":4,"43623":3,"43624":2,"43625":4,"43626":1,"43627":4,"43628":4,"43629":2,"43630":4,"43631":2,"43632":2,"43633":4,"43634":3,"43635":4,"43636":4,"43637":4,"43638":3,"43639":4,"43640":3,"43641":5,"43642":1,"43643":4,"43644":4,"43645":2,"43646":3,"43647":3,"43648":3,"43649":1,"43650":3,"43651":3,"43652":3,"43653":3,"43654":3,"43655":1,"43656":4,"43657":2,"43658":3,"43659":2,"43660":3,"43661":3,"43662":3,"43663":3,"43664":3,"43665":2,"43666":1,"43667":5,"43668":3,"43669":5,"43670":5,"43671":2,"43672":2,"43673":3,"43674":2,"43675":2,"43676":4,"43677":2,"43678":4,"43679":3,"43680":1,"43681":4,"43682":2,"43683":4,"43684":4,"43685":2,"43686":3,"43687":4,"43688":3,"43689":1,"43690":3,"43691":2,"43692":2,"43693":2,"43694":1,"43695":2,"43696":4,"43697":5,"43698":3,"43699":3,"43700":3,"43701":3,"43702":3,"43703":4,"43704":5,"43705":4,"43706":3,"43707":4,"43708":3,"43709":4,"43710":4,"43711":5,"43712":3,"43713":3,"43714":2,"43715":3,"43716":2,"43717":2,"43718":2,"43719":4,"43720":2,"43721":1,"43722":4,"43723":3,"43724":1,"43725":3,"43726":3,"43727":4,"43728":4,"43729":3,"43730":4,"43731":3,"43732":4,"43733":4,"43734":3,"43735":1,"43736":3,"43737":3,"43738":4,"43739":3,"43740":2,"43741":1,"43742":2,"43743":3,"43744":3,"43745":4,"43746":1,"43747":2,"43748":5,"43749":2,"43750":2,"43751":2,"43752":3,"43753":3,"43754":4,"43755":4,"43756":3,"43757":5,"43758":4,"43759":2,"43760":2,"43761":2,"43762":4,"43763":2,"43764":2,"43765":4,"43766":2,"43767":3,"43768":4,"43769":4,"43770":4,"43771":2,"43772":3,"43773":4,"43774":2,"43775":3,"43776":2,"43777":1,"43778":2,"43779":3,"43780":3,"43781":4,"43782":3,"43783":1,"43784":3,"43785":3,"43786":3,"43787":3,"43788":1,"43789":4,"43790":1,"43791":4,"43792":3,"43793":3,"43794":3,"43795":4,"43796":1,"43797":3,"43798":2,"43799":1,"43800":3,"43801":3,"43802":2,"43803":4,"43804":3,"43805":4,"43806":4,"43807":2,"43808":4,"43809":3,"43810":4,"43811":3,"43812":3,"43813":1,"43814":4,"43815":3,"43816":5,"43817":4,"43818":1,"43819":3,"43820":2,"43821":2,"43822":4,"43823":3,"43824":3,"43825":2,"43826":4,"43827":3,"43828":5,"43829":4,"43830":3,"43831":2,"43832":2,"43833":4,"43834":3,"43835":4,"43836":5,"43837":5,"43838":3,"43839":3,"43840":5,"43841":1,"43842":3,"43843":4,"43844":1,"43845":2,"43846":4,"43847":3,"43848":2,"43849":3,"43850":3,"43851":4,"43852":4,"43853":3,"43854":3,"43855":3,"43856":3,"43857":4,"43858":2,"43859":2,"43860":3,"43861":3,"43862":2,"43863":5,"43864":2,"43865":4,"43866":3,"43867":3,"43868":1,"43869":3,"43870":3,"43871":5,"43872":3,"43873":4,"43874":4,"43875":2,"43876":1,"43877":3,"43878":4,"43879":3,"43880":4,"43881":3,"43882":3,"43883":4,"43884":3,"43885":2,"43886":3,"43887":4,"43888":3,"43889":2,"43890":1,"43891":4,"43892":3,"43893":3,"43894":4,"43895":2,"43896":4,"43897":4,"43898":4,"43899":3,"43900":2,"43901":3,"43902":5,"43903":3,"43904":3,"43905":3,"43906":3,"43907":2,"43908":4,"43909":5,"43910":3,"43911":1,"43912":3,"43913":2,"43914":1,"43915":3,"43916":4,"43917":2,"43918":1,"43919":3,"43920":4,"43921":2,"43922":3,"43923":4,"43924":4,"43925":4,"43926":3,"43927":2,"43928":2,"43929":1,"43930":3,"43931":2,"43932":1,"43933":4,"43934":2,"43935":3,"43936":3,"43937":4,"43938":3,"43939":2,"43940":4,"43941":3,"43942":2,"43943":3,"43944":1,"43945":3,"43946":3,"43947":2,"43948":2,"43949":3,"43950":2,"43951":3,"43952":4,"43953":4,"43954":2,"43955":4,"43956":4,"43957":1,"43958":4,"43959":4,"43960":2,"43961":4,"43962":2,"43963":4,"43964":5,"43965":2,"43966":3,"43967":1,"43968":3,"43969":4,"43970":3,"43971":1,"43972":4,"43973":3,"43974":3,"43975":2,"43976":3,"43977":3,"43978":2,"43979":3,"43980":2,"43981":4,"43982":3,"43983":3,"43984":2,"43985":2,"43986":2,"43987":1,"43988":1,"43989":2,"43990":2,"43991":3,"43992":5,"43993":5,"43994":3,"43995":2,"43996":3,"43997":4,"43998":1,"43999":1,"44000":4,"44001":4,"44002":3,"44003":1,"44004":3,"44005":3,"44006":3,"44007":3,"44008":3,"44009":1,"44010":4,"44011":4,"44012":3,"44013":3,"44014":3,"44015":3,"44016":3,"44017":3,"44018":2,"44019":3,"44020":2,"44021":1,"44022":5,"44023":4,"44024":5,"44025":3,"44026":2,"44027":3,"44028":3,"44029":5,"44030":3,"44031":1,"44032":3,"44033":4,"44034":2,"44035":3,"44036":3,"44037":5,"44038":4,"44039":4,"44040":4,"44041":2,"44042":3,"44043":4,"44044":2,"44045":4,"44046":4,"44047":4,"44048":2,"44049":2,"44050":3,"44051":3,"44052":4,"44053":4,"44054":4,"44055":3,"44056":1,"44057":1,"44058":3,"44059":3,"44060":2,"44061":3,"44062":4,"44063":2,"44064":4,"44065":3,"44066":3,"44067":2,"44068":2,"44069":3,"44070":2,"44071":1,"44072":5,"44073":3,"44074":3,"44075":4,"44076":5,"44077":3,"44078":3,"44079":3,"44080":3,"44081":4,"44082":4,"44083":2,"44084":2,"44085":3,"44086":3,"44087":4,"44088":5,"44089":4,"44090":4,"44091":2,"44092":3,"44093":1,"44094":5,"44095":4,"44096":4,"44097":4,"44098":3,"44099":4,"44100":1,"44101":2,"44102":3,"44103":4,"44104":4,"44105":1,"44106":2,"44107":3,"44108":2,"44109":2,"44110":1,"44111":5,"44112":3,"44113":2,"44114":3,"44115":3,"44116":2,"44117":4,"44118":2,"44119":2,"44120":4,"44121":3,"44122":4,"44123":3,"44124":3,"44125":4,"44126":3,"44127":4,"44128":3,"44129":3,"44130":2,"44131":4,"44132":4,"44133":3,"44134":4,"44135":3,"44136":2,"44137":2,"44138":4,"44139":2,"44140":4,"44141":3,"44142":2,"44143":2,"44144":3,"44145":4,"44146":2,"44147":1,"44148":3,"44149":3,"44150":4,"44151":4,"44152":3,"44153":4,"44154":3,"44155":4,"44156":3,"44157":3,"44158":2,"44159":4,"44160":2,"44161":3,"44162":4,"44163":2,"44164":2,"44165":3,"44166":2,"44167":4,"44168":5,"44169":1,"44170":4,"44171":2,"44172":4,"44173":2,"44174":3,"44175":3,"44176":4,"44177":5,"44178":5,"44179":3,"44180":4,"44181":2,"44182":1,"44183":3,"44184":4,"44185":2,"44186":5,"44187":3,"44188":5,"44189":2,"44190":2,"44191":3,"44192":3,"44193":4,"44194":3,"44195":3,"44196":4,"44197":1,"44198":3,"44199":2,"44200":4,"44201":3,"44202":2,"44203":4,"44204":5,"44205":2,"44206":3,"44207":4,"44208":5,"44209":4,"44210":4,"44211":4,"44212":1,"44213":1,"44214":3,"44215":4,"44216":1,"44217":5,"44218":4,"44219":3,"44220":5,"44221":3,"44222":4,"44223":2,"44224":3,"44225":2,"44226":3,"44227":2,"44228":4,"44229":3,"44230":4,"44231":4,"44232":3,"44233":3,"44234":1,"44235":1,"44236":4,"44237":1,"44238":3,"44239":4,"44240":2,"44241":2,"44242":4,"44243":3,"44244":1,"44245":4,"44246":1,"44247":5,"44248":1,"44249":4,"44250":3,"44251":2,"44252":4,"44253":2,"44254":5,"44255":3,"44256":2,"44257":4,"44258":4,"44259":2,"44260":4,"44261":2,"44262":4,"44263":3,"44264":4,"44265":3,"44266":3,"44267":2,"44268":4,"44269":3,"44270":4,"44271":4,"44272":4,"44273":1,"44274":4,"44275":2,"44276":4,"44277":3,"44278":4,"44279":3,"44280":3,"44281":3,"44282":1,"44283":1,"44284":4,"44285":3,"44286":3,"44287":4,"44288":3,"44289":1,"44290":4,"44291":2,"44292":5,"44293":3,"44294":2,"44295":3,"44296":3,"44297":2,"44298":3,"44299":5,"44300":3,"44301":3,"44302":3,"44303":2,"44304":2,"44305":3,"44306":2,"44307":2,"44308":3,"44309":4,"44310":2,"44311":2,"44312":2,"44313":4,"44314":2,"44315":2,"44316":3,"44317":2,"44318":2,"44319":2,"44320":2,"44321":3,"44322":2,"44323":3,"44324":3,"44325":3,"44326":4,"44327":4,"44328":3,"44329":1,"44330":3,"44331":5,"44332":4,"44333":4,"44334":3,"44335":4,"44336":2,"44337":4,"44338":4,"44339":4,"44340":3,"44341":5,"44342":2,"44343":4,"44344":1,"44345":1,"44346":3,"44347":4,"44348":2,"44349":1,"44350":3,"44351":1,"44352":4,"44353":1,"44354":3,"44355":4,"44356":4,"44357":3,"44358":2,"44359":1,"44360":3,"44361":4,"44362":3,"44363":3,"44364":5,"44365":4,"44366":3,"44367":2,"44368":3,"44369":4,"44370":4,"44371":3,"44372":2,"44373":2,"44374":2,"44375":4,"44376":2,"44377":3,"44378":4,"44379":3,"44380":5,"44381":4,"44382":3,"44383":2,"44384":3,"44385":2,"44386":3,"44387":2,"44388":2,"44389":1,"44390":3,"44391":4,"44392":2,"44393":4,"44394":1,"44395":2,"44396":3,"44397":1,"44398":4,"44399":3,"44400":3,"44401":3,"44402":2,"44403":2,"44404":4,"44405":3,"44406":3,"44407":4,"44408":3,"44409":4,"44410":3,"44411":2,"44412":3,"44413":4,"44414":2,"44415":3,"44416":1,"44417":3,"44418":4,"44419":3,"44420":2,"44421":4,"44422":4,"44423":2,"44424":4,"44425":2,"44426":5,"44427":4,"44428":4,"44429":4,"44430":3,"44431":3,"44432":3,"44433":3,"44434":2,"44435":3,"44436":3,"44437":2,"44438":1,"44439":2,"44440":2,"44441":2,"44442":2,"44443":3,"44444":5,"44445":3,"44446":3,"44447":3,"44448":5,"44449":3,"44450":3,"44451":2,"44452":3,"44453":4,"44454":3,"44455":4,"44456":2,"44457":3,"44458":3,"44459":2,"44460":4,"44461":2,"44462":4,"44463":3,"44464":4,"44465":5,"44466":2,"44467":3,"44468":4,"44469":4,"44470":1,"44471":2,"44472":4,"44473":2,"44474":2,"44475":4,"44476":5,"44477":3,"44478":1,"44479":4,"44480":2,"44481":4,"44482":2,"44483":4,"44484":5,"44485":5,"44486":3,"44487":3,"44488":5,"44489":4,"44490":4,"44491":2,"44492":3,"44493":2,"44494":4,"44495":1,"44496":4,"44497":2,"44498":3,"44499":2,"44500":4,"44501":2,"44502":4,"44503":5,"44504":4,"44505":3,"44506":2,"44507":4,"44508":5,"44509":3,"44510":4,"44511":2,"44512":2,"44513":3,"44514":1,"44515":3,"44516":2,"44517":1,"44518":4,"44519":3,"44520":5,"44521":3,"44522":4,"44523":4,"44524":5,"44525":3,"44526":3,"44527":3,"44528":1,"44529":2,"44530":3,"44531":5,"44532":2,"44533":3,"44534":2,"44535":2,"44536":3,"44537":4,"44538":2,"44539":5,"44540":4,"44541":4,"44542":4,"44543":3,"44544":4,"44545":3,"44546":4,"44547":3,"44548":4,"44549":2,"44550":4,"44551":4,"44552":1,"44553":3,"44554":5,"44555":5,"44556":4,"44557":5,"44558":1,"44559":3,"44560":3,"44561":5,"44562":4,"44563":2,"44564":3,"44565":5,"44566":4,"44567":3,"44568":1,"44569":3,"44570":1,"44571":5,"44572":4,"44573":4,"44574":3,"44575":1,"44576":3,"44577":4,"44578":3,"44579":2,"44580":3,"44581":3,"44582":3,"44583":3,"44584":4,"44585":3,"44586":2,"44587":4,"44588":4,"44589":4,"44590":1,"44591":2,"44592":3,"44593":4,"44594":4,"44595":2,"44596":3,"44597":4,"44598":3,"44599":3,"44600":4,"44601":1,"44602":1,"44603":3,"44604":3,"44605":3,"44606":5,"44607":5,"44608":4,"44609":3,"44610":3,"44611":3,"44612":3,"44613":5,"44614":4,"44615":3,"44616":1,"44617":4,"44618":2,"44619":2,"44620":2,"44621":2,"44622":3,"44623":2,"44624":2,"44625":3,"44626":5,"44627":3,"44628":2,"44629":3,"44630":3,"44631":5,"44632":1,"44633":3,"44634":5,"44635":5,"44636":3,"44637":2,"44638":1,"44639":3,"44640":4,"44641":4,"44642":3,"44643":3,"44644":4,"44645":3,"44646":3,"44647":3,"44648":4,"44649":4,"44650":4,"44651":3,"44652":2,"44653":3,"44654":4,"44655":4,"44656":2,"44657":2,"44658":4,"44659":3,"44660":3,"44661":3,"44662":2,"44663":2,"44664":4,"44665":3,"44666":2,"44667":5,"44668":3,"44669":4,"44670":1,"44671":2,"44672":3,"44673":3,"44674":4,"44675":4,"44676":4,"44677":5,"44678":3,"44679":3,"44680":3,"44681":3,"44682":2,"44683":4,"44684":3,"44685":3,"44686":1,"44687":3,"44688":3,"44689":3,"44690":4,"44691":4,"44692":1,"44693":3,"44694":1,"44695":3,"44696":4,"44697":3,"44698":2,"44699":4,"44700":4,"44701":4,"44702":3,"44703":4,"44704":3,"44705":4,"44706":5,"44707":1,"44708":3,"44709":2,"44710":2,"44711":5,"44712":5,"44713":4,"44714":5,"44715":4,"44716":2,"44717":4,"44718":3,"44719":3,"44720":1,"44721":2,"44722":2,"44723":3,"44724":2,"44725":3,"44726":2,"44727":3,"44728":2,"44729":3,"44730":5,"44731":2,"44732":3,"44733":3,"44734":3,"44735":2,"44736":4,"44737":4,"44738":3,"44739":1,"44740":2,"44741":2,"44742":4,"44743":5,"44744":3,"44745":3,"44746":1,"44747":3,"44748":1,"44749":3,"44750":3,"44751":2,"44752":4,"44753":1,"44754":5,"44755":1,"44756":3,"44757":3,"44758":2,"44759":1,"44760":1,"44761":2,"44762":2,"44763":3,"44764":3,"44765":4,"44766":4,"44767":3,"44768":3,"44769":4,"44770":2,"44771":2,"44772":2,"44773":3,"44774":2,"44775":2,"44776":3,"44777":2,"44778":4,"44779":2,"44780":5,"44781":1,"44782":2,"44783":1,"44784":2,"44785":5,"44786":3,"44787":4,"44788":2,"44789":3,"44790":3,"44791":4,"44792":1,"44793":2,"44794":1,"44795":2,"44796":4,"44797":3,"44798":3,"44799":2,"44800":2,"44801":3,"44802":1,"44803":4,"44804":4,"44805":3,"44806":2,"44807":2,"44808":1,"44809":5,"44810":3,"44811":2,"44812":4,"44813":4,"44814":3,"44815":1,"44816":2,"44817":1,"44818":1,"44819":4,"44820":4,"44821":3,"44822":1,"44823":3,"44824":4,"44825":3,"44826":5,"44827":4,"44828":3,"44829":2,"44830":4,"44831":4,"44832":2,"44833":3,"44834":5,"44835":2,"44836":4,"44837":3,"44838":4,"44839":3,"44840":1,"44841":5,"44842":3,"44843":2,"44844":3,"44845":2,"44846":2,"44847":1,"44848":2,"44849":3,"44850":4,"44851":1,"44852":3,"44853":3,"44854":4,"44855":1,"44856":3,"44857":4,"44858":3,"44859":5,"44860":2,"44861":3,"44862":3,"44863":2,"44864":2,"44865":4,"44866":1,"44867":4,"44868":3,"44869":4,"44870":2,"44871":1,"44872":5,"44873":2,"44874":2,"44875":3,"44876":1,"44877":2,"44878":4,"44879":4,"44880":2,"44881":3,"44882":3,"44883":2,"44884":3,"44885":4,"44886":2,"44887":3,"44888":4,"44889":2,"44890":3,"44891":3,"44892":4,"44893":2,"44894":3,"44895":1,"44896":3,"44897":4,"44898":3,"44899":3,"44900":3,"44901":3,"44902":2,"44903":5,"44904":4,"44905":5,"44906":4,"44907":3,"44908":2,"44909":3,"44910":3,"44911":2,"44912":3,"44913":2,"44914":1,"44915":4,"44916":2,"44917":3,"44918":3,"44919":3,"44920":3,"44921":4,"44922":2,"44923":3,"44924":4,"44925":4,"44926":3,"44927":3,"44928":4,"44929":3,"44930":3,"44931":2,"44932":3,"44933":2,"44934":4,"44935":3,"44936":4,"44937":5,"44938":5,"44939":2,"44940":3,"44941":2,"44942":2,"44943":4,"44944":2,"44945":3,"44946":5,"44947":3,"44948":4,"44949":3,"44950":4,"44951":3,"44952":3,"44953":5,"44954":3,"44955":2,"44956":4,"44957":4,"44958":3,"44959":5,"44960":2,"44961":2,"44962":4,"44963":2,"44964":4,"44965":4,"44966":4,"44967":4,"44968":3,"44969":4,"44970":3,"44971":5,"44972":3,"44973":3,"44974":3,"44975":3,"44976":3,"44977":2,"44978":1,"44979":3,"44980":4,"44981":4,"44982":3,"44983":2,"44984":2,"44985":3,"44986":3,"44987":4,"44988":4,"44989":3,"44990":4,"44991":3,"44992":3,"44993":4,"44994":3,"44995":3,"44996":4,"44997":3,"44998":4,"44999":1,"45000":3,"45001":4,"45002":2,"45003":3,"45004":3,"45005":2,"45006":3,"45007":4,"45008":4,"45009":3,"45010":3,"45011":4,"45012":1,"45013":3,"45014":2,"45015":2,"45016":3,"45017":4,"45018":3,"45019":5,"45020":3,"45021":2,"45022":4,"45023":5,"45024":5,"45025":1,"45026":5,"45027":4,"45028":3,"45029":3,"45030":3,"45031":2,"45032":4,"45033":2,"45034":2,"45035":2,"45036":3,"45037":2,"45038":5,"45039":3,"45040":2,"45041":3,"45042":3,"45043":3,"45044":2,"45045":2,"45046":3,"45047":4,"45048":3,"45049":3,"45050":3,"45051":2,"45052":2,"45053":4,"45054":4,"45055":2,"45056":4,"45057":3,"45058":4,"45059":4,"45060":4,"45061":3,"45062":4,"45063":3,"45064":2,"45065":4,"45066":3,"45067":1,"45068":3,"45069":3,"45070":3,"45071":3,"45072":4,"45073":4,"45074":4,"45075":3,"45076":2,"45077":4,"45078":3,"45079":2,"45080":2,"45081":1,"45082":2,"45083":2,"45084":4,"45085":4,"45086":3,"45087":4,"45088":2,"45089":4,"45090":3,"45091":4,"45092":4,"45093":4,"45094":4,"45095":3,"45096":4,"45097":4,"45098":2,"45099":3,"45100":4,"45101":3,"45102":5,"45103":3,"45104":2,"45105":1,"45106":4,"45107":2,"45108":4,"45109":1,"45110":4,"45111":4,"45112":4,"45113":1,"45114":3,"45115":4,"45116":1,"45117":4,"45118":2,"45119":4,"45120":3,"45121":3,"45122":3,"45123":4,"45124":3,"45125":4,"45126":3,"45127":3,"45128":2,"45129":2,"45130":2,"45131":3,"45132":3,"45133":3,"45134":2,"45135":1,"45136":2,"45137":3,"45138":1,"45139":3,"45140":1,"45141":2,"45142":2,"45143":2,"45144":2,"45145":5,"45146":3,"45147":3,"45148":4,"45149":3,"45150":1,"45151":2,"45152":4,"45153":2,"45154":1,"45155":2,"45156":3,"45157":1,"45158":2,"45159":4,"45160":3,"45161":5,"45162":3,"45163":2,"45164":3,"45165":2,"45166":2,"45167":4,"45168":3,"45169":3,"45170":4,"45171":2,"45172":5,"45173":3,"45174":5,"45175":1,"45176":4,"45177":2,"45178":3,"45179":2,"45180":2,"45181":4,"45182":4,"45183":1,"45184":1,"45185":4,"45186":3,"45187":4,"45188":4,"45189":3,"45190":3,"45191":3,"45192":4,"45193":1,"45194":3,"45195":4,"45196":3,"45197":2,"45198":3,"45199":1,"45200":3,"45201":5,"45202":5,"45203":2,"45204":3,"45205":3,"45206":4,"45207":1,"45208":3,"45209":3,"45210":4,"45211":4,"45212":3,"45213":3,"45214":5,"45215":5,"45216":2,"45217":3,"45218":4,"45219":4,"45220":3,"45221":3,"45222":3,"45223":3,"45224":3,"45225":2,"45226":1,"45227":4,"45228":3,"45229":3,"45230":4,"45231":1,"45232":4,"45233":4,"45234":4,"45235":4,"45236":4,"45237":2,"45238":1,"45239":5,"45240":2,"45241":3,"45242":1,"45243":4,"45244":3,"45245":4,"45246":3,"45247":2,"45248":3,"45249":4,"45250":4,"45251":3,"45252":3,"45253":4,"45254":1,"45255":1,"45256":2,"45257":3,"45258":3,"45259":4,"45260":4,"45261":1,"45262":5,"45263":3,"45264":3,"45265":5,"45266":4,"45267":4,"45268":5,"45269":3,"45270":3,"45271":3,"45272":2,"45273":3,"45274":3,"45275":3,"45276":2,"45277":3,"45278":3,"45279":3,"45280":3,"45281":1,"45282":3,"45283":2,"45284":4,"45285":4,"45286":4,"45287":2,"45288":3,"45289":3,"45290":3,"45291":3,"45292":3,"45293":3,"45294":3,"45295":4,"45296":5,"45297":4,"45298":1,"45299":2,"45300":3,"45301":3,"45302":4,"45303":3,"45304":5,"45305":2,"45306":3,"45307":2,"45308":3,"45309":3,"45310":4,"45311":4,"45312":3,"45313":5,"45314":3,"45315":1,"45316":3,"45317":4,"45318":3,"45319":3,"45320":4,"45321":3,"45322":2,"45323":4,"45324":3,"45325":4,"45326":3,"45327":2,"45328":1,"45329":4,"45330":1,"45331":3,"45332":4,"45333":2,"45334":1,"45335":5,"45336":2,"45337":2,"45338":4,"45339":3,"45340":2,"45341":3,"45342":2,"45343":4,"45344":4,"45345":4,"45346":3,"45347":4,"45348":4,"45349":5,"45350":5,"45351":2,"45352":1,"45353":2,"45354":5,"45355":3,"45356":4,"45357":2,"45358":4,"45359":3,"45360":4,"45361":4,"45362":4,"45363":2,"45364":3,"45365":4,"45366":4,"45367":3,"45368":1,"45369":1,"45370":1,"45371":3,"45372":3,"45373":1,"45374":5,"45375":1,"45376":2,"45377":4,"45378":3,"45379":3,"45380":3,"45381":1,"45382":4,"45383":1,"45384":3,"45385":1,"45386":4,"45387":4,"45388":3,"45389":2,"45390":2,"45391":2,"45392":3,"45393":4,"45394":2,"45395":3,"45396":4,"45397":2,"45398":5,"45399":1,"45400":3,"45401":3,"45402":4,"45403":3,"45404":2,"45405":2,"45406":4,"45407":3,"45408":4,"45409":3,"45410":3,"45411":3,"45412":3,"45413":3,"45414":5,"45415":3,"45416":2,"45417":1,"45418":1,"45419":1,"45420":3,"45421":1,"45422":3,"45423":2,"45424":3,"45425":4,"45426":4,"45427":2,"45428":2,"45429":4,"45430":5,"45431":1,"45432":4,"45433":3,"45434":3,"45435":1,"45436":5,"45437":5,"45438":2,"45439":2,"45440":5,"45441":1,"45442":3,"45443":5,"45444":1,"45445":1,"45446":2,"45447":4,"45448":4,"45449":2,"45450":2,"45451":3,"45452":2,"45453":4,"45454":2,"45455":4,"45456":3,"45457":3,"45458":2,"45459":3,"45460":3,"45461":4,"45462":1,"45463":3,"45464":2,"45465":2,"45466":2,"45467":1,"45468":3,"45469":2,"45470":3,"45471":1,"45472":2,"45473":3,"45474":4,"45475":5,"45476":1,"45477":3,"45478":4,"45479":3,"45480":4,"45481":2,"45482":4,"45483":3,"45484":2,"45485":2,"45486":3,"45487":1,"45488":2,"45489":3,"45490":3,"45491":3,"45492":4,"45493":5,"45494":5,"45495":1,"45496":4,"45497":2,"45498":2,"45499":3,"45500":2,"45501":3,"45502":4,"45503":3,"45504":4,"45505":2,"45506":3,"45507":2,"45508":2,"45509":4,"45510":2,"45511":4,"45512":3,"45513":1,"45514":4,"45515":4,"45516":4,"45517":3,"45518":2,"45519":3,"45520":2,"45521":1,"45522":3,"45523":3,"45524":3,"45525":2,"45526":5,"45527":5,"45528":3,"45529":1,"45530":3,"45531":2,"45532":5,"45533":3,"45534":4,"45535":5,"45536":5,"45537":2,"45538":5,"45539":4,"45540":2,"45541":2,"45542":2,"45543":3,"45544":2,"45545":3,"45546":2,"45547":5,"45548":2,"45549":4,"45550":2,"45551":5,"45552":4,"45553":5,"45554":1,"45555":3,"45556":5,"45557":4,"45558":4,"45559":2,"45560":4,"45561":1,"45562":5,"45563":1,"45564":3,"45565":3,"45566":3,"45567":1,"45568":3,"45569":2,"45570":3,"45571":3,"45572":3,"45573":3,"45574":3,"45575":4,"45576":3,"45577":2,"45578":2,"45579":4,"45580":4,"45581":5,"45582":2,"45583":1,"45584":4,"45585":3,"45586":1,"45587":3,"45588":2,"45589":2,"45590":4,"45591":4,"45592":3,"45593":5,"45594":2,"45595":4,"45596":4,"45597":4,"45598":5,"45599":3,"45600":2,"45601":4,"45602":3,"45603":3,"45604":2,"45605":5,"45606":3,"45607":5,"45608":3,"45609":3,"45610":3,"45611":3,"45612":4,"45613":1,"45614":2,"45615":5,"45616":2,"45617":2,"45618":3,"45619":5,"45620":3,"45621":2,"45622":2,"45623":3,"45624":3,"45625":3,"45626":5,"45627":4,"45628":3,"45629":2,"45630":3,"45631":3,"45632":4,"45633":3,"45634":3,"45635":1,"45636":3,"45637":1,"45638":1,"45639":4,"45640":2,"45641":2,"45642":4,"45643":4,"45644":5,"45645":4,"45646":2,"45647":2,"45648":2,"45649":4,"45650":2,"45651":4,"45652":2,"45653":1,"45654":2,"45655":1,"45656":4,"45657":3,"45658":3,"45659":4,"45660":3,"45661":3,"45662":3,"45663":2,"45664":2,"45665":2,"45666":3,"45667":3,"45668":1,"45669":2,"45670":3,"45671":3,"45672":3,"45673":3,"45674":2,"45675":4,"45676":2,"45677":1,"45678":3,"45679":3,"45680":4,"45681":3,"45682":1,"45683":3,"45684":3,"45685":2,"45686":2,"45687":2,"45688":4,"45689":3,"45690":3,"45691":2,"45692":4,"45693":4,"45694":3,"45695":3,"45696":3,"45697":3,"45698":3,"45699":4,"45700":3,"45701":3,"45702":4,"45703":4,"45704":2,"45705":3,"45706":2,"45707":2,"45708":5,"45709":3,"45710":4,"45711":2,"45712":5,"45713":1,"45714":2,"45715":1,"45716":3,"45717":4,"45718":3,"45719":3,"45720":4,"45721":4,"45722":3,"45723":1,"45724":4,"45725":2,"45726":2,"45727":3,"45728":3,"45729":2,"45730":3,"45731":3,"45732":5,"45733":2,"45734":2,"45735":2,"45736":1,"45737":2,"45738":4,"45739":5,"45740":3,"45741":5,"45742":4,"45743":3,"45744":3,"45745":3,"45746":3,"45747":1,"45748":4,"45749":3,"45750":3,"45751":5,"45752":1,"45753":5,"45754":2,"45755":4,"45756":3,"45757":4,"45758":3,"45759":3,"45760":3,"45761":4,"45762":3,"45763":2,"45764":4,"45765":4,"45766":4,"45767":2,"45768":4,"45769":3,"45770":3,"45771":2,"45772":4,"45773":2,"45774":2,"45775":4,"45776":3,"45777":3,"45778":2,"45779":3,"45780":3,"45781":3,"45782":5,"45783":4,"45784":3,"45785":2,"45786":4,"45787":3,"45788":1,"45789":3,"45790":2,"45791":3,"45792":4,"45793":4,"45794":3,"45795":4,"45796":3,"45797":4,"45798":3,"45799":3,"45800":3,"45801":3,"45802":4,"45803":1,"45804":4,"45805":1,"45806":3,"45807":4,"45808":3,"45809":2,"45810":4,"45811":3,"45812":2,"45813":3,"45814":2,"45815":3,"45816":3,"45817":1,"45818":1,"45819":4,"45820":1,"45821":2,"45822":2,"45823":4,"45824":4,"45825":3,"45826":3,"45827":1,"45828":4,"45829":3,"45830":4,"45831":3,"45832":3,"45833":4,"45834":4,"45835":5,"45836":5,"45837":5,"45838":4,"45839":4,"45840":1,"45841":4,"45842":4,"45843":4,"45844":3,"45845":3,"45846":5,"45847":3,"45848":2,"45849":4,"45850":4,"45851":4,"45852":3,"45853":4,"45854":2,"45855":3,"45856":3,"45857":1,"45858":3,"45859":3,"45860":3,"45861":3,"45862":3,"45863":2,"45864":2,"45865":2,"45866":4,"45867":2,"45868":2,"45869":3,"45870":5,"45871":2,"45872":2,"45873":2,"45874":4,"45875":2,"45876":3,"45877":4,"45878":4,"45879":2,"45880":4,"45881":4,"45882":2,"45883":3,"45884":2,"45885":2,"45886":4,"45887":3,"45888":4,"45889":1,"45890":2,"45891":1,"45892":3,"45893":5,"45894":4,"45895":2,"45896":3,"45897":2,"45898":1,"45899":3,"45900":2,"45901":3,"45902":4,"45903":3,"45904":3,"45905":3,"45906":3,"45907":3,"45908":4,"45909":2,"45910":2,"45911":1,"45912":2,"45913":4,"45914":5,"45915":1,"45916":2,"45917":4,"45918":4,"45919":4,"45920":3,"45921":4,"45922":4,"45923":4,"45924":1,"45925":4,"45926":2,"45927":2,"45928":1,"45929":5,"45930":3,"45931":2,"45932":3,"45933":2,"45934":3,"45935":3,"45936":2,"45937":4,"45938":2,"45939":2,"45940":3,"45941":2,"45942":3,"45943":2,"45944":3,"45945":3,"45946":3,"45947":4,"45948":1,"45949":2,"45950":3,"45951":3,"45952":4,"45953":4,"45954":4,"45955":2,"45956":4,"45957":4,"45958":1,"45959":2,"45960":2,"45961":2,"45962":4,"45963":4,"45964":2,"45965":2,"45966":2,"45967":1,"45968":3,"45969":3,"45970":2,"45971":3,"45972":5,"45973":1,"45974":3,"45975":4,"45976":5,"45977":3,"45978":4,"45979":3,"45980":4,"45981":5,"45982":3,"45983":2,"45984":2,"45985":3,"45986":2,"45987":3,"45988":3,"45989":4,"45990":1,"45991":3,"45992":3,"45993":3,"45994":1,"45995":3,"45996":2,"45997":3,"45998":4,"45999":4,"46000":2,"46001":4,"46002":3,"46003":1,"46004":4,"46005":3,"46006":2,"46007":1,"46008":4,"46009":4,"46010":1,"46011":3,"46012":4,"46013":2,"46014":3,"46015":4,"46016":2,"46017":4,"46018":3,"46019":3,"46020":2,"46021":4,"46022":3,"46023":2,"46024":4,"46025":4,"46026":3,"46027":3,"46028":2,"46029":3,"46030":2,"46031":3,"46032":3,"46033":4,"46034":4,"46035":2,"46036":3,"46037":3,"46038":2,"46039":5,"46040":4,"46041":3,"46042":4,"46043":3,"46044":1,"46045":4,"46046":3,"46047":3,"46048":3,"46049":4,"46050":4,"46051":3,"46052":2,"46053":3,"46054":2,"46055":2,"46056":2,"46057":2,"46058":3,"46059":3,"46060":3,"46061":3,"46062":4,"46063":2,"46064":4,"46065":3,"46066":3,"46067":2,"46068":1,"46069":2,"46070":4,"46071":2,"46072":3,"46073":4,"46074":2,"46075":5,"46076":5,"46077":3,"46078":4,"46079":2,"46080":3,"46081":3,"46082":2,"46083":5,"46084":3,"46085":4,"46086":5,"46087":3,"46088":2,"46089":4,"46090":4,"46091":3,"46092":3,"46093":5,"46094":3,"46095":4,"46096":3,"46097":1,"46098":2,"46099":4,"46100":2,"46101":3,"46102":5,"46103":3,"46104":2,"46105":4,"46106":4,"46107":3,"46108":3,"46109":4,"46110":3,"46111":4,"46112":2,"46113":3,"46114":2,"46115":2,"46116":1,"46117":4,"46118":3,"46119":1,"46120":3,"46121":2,"46122":2,"46123":4,"46124":3,"46125":5,"46126":2,"46127":4,"46128":4,"46129":3,"46130":3,"46131":4,"46132":3,"46133":3,"46134":4,"46135":4,"46136":2,"46137":2,"46138":3,"46139":3,"46140":5,"46141":4,"46142":2,"46143":4,"46144":2,"46145":3,"46146":3,"46147":1,"46148":2,"46149":3,"46150":3,"46151":3,"46152":2,"46153":3,"46154":1,"46155":2,"46156":2,"46157":4,"46158":5,"46159":1,"46160":3,"46161":2,"46162":1,"46163":2,"46164":2,"46165":4,"46166":3,"46167":3,"46168":3,"46169":3,"46170":2,"46171":5,"46172":1,"46173":4,"46174":4,"46175":3,"46176":3,"46177":4,"46178":3,"46179":3,"46180":3,"46181":2,"46182":5,"46183":3,"46184":4,"46185":3,"46186":1,"46187":3,"46188":3,"46189":4,"46190":2,"46191":3,"46192":2,"46193":5,"46194":4,"46195":2,"46196":4,"46197":4,"46198":3,"46199":2,"46200":3,"46201":3,"46202":4,"46203":4,"46204":3,"46205":1,"46206":3,"46207":1,"46208":3,"46209":3,"46210":3,"46211":2,"46212":5,"46213":4,"46214":5,"46215":4,"46216":3,"46217":3,"46218":1,"46219":5,"46220":3,"46221":3,"46222":2,"46223":2,"46224":4,"46225":3,"46226":4,"46227":2,"46228":2,"46229":4,"46230":2,"46231":4,"46232":3,"46233":3,"46234":5,"46235":3,"46236":3,"46237":4,"46238":3,"46239":2,"46240":1,"46241":3,"46242":3,"46243":3,"46244":2,"46245":2,"46246":3,"46247":4,"46248":3,"46249":2,"46250":4,"46251":5,"46252":4,"46253":4,"46254":2,"46255":2,"46256":4,"46257":1,"46258":1,"46259":4,"46260":5,"46261":2,"46262":4,"46263":3,"46264":2,"46265":4,"46266":2,"46267":2,"46268":4,"46269":5,"46270":3,"46271":4,"46272":2,"46273":2,"46274":4,"46275":2,"46276":3,"46277":1,"46278":3,"46279":3,"46280":2,"46281":3,"46282":2,"46283":2,"46284":4,"46285":3,"46286":4,"46287":4,"46288":3,"46289":2,"46290":3,"46291":3,"46292":4,"46293":2,"46294":5,"46295":3,"46296":1,"46297":2,"46298":5,"46299":2,"46300":3,"46301":1,"46302":3,"46303":3,"46304":4,"46305":3,"46306":3,"46307":5,"46308":2,"46309":3,"46310":4,"46311":3,"46312":4,"46313":3,"46314":3,"46315":3,"46316":4,"46317":3,"46318":2,"46319":1,"46320":1,"46321":3,"46322":3,"46323":3,"46324":2,"46325":3,"46326":3,"46327":2,"46328":2,"46329":5,"46330":4,"46331":2,"46332":1,"46333":1,"46334":2,"46335":1,"46336":4,"46337":3,"46338":2,"46339":3,"46340":3,"46341":5,"46342":5,"46343":3,"46344":3,"46345":3,"46346":3,"46347":2,"46348":2,"46349":5,"46350":2,"46351":3,"46352":4,"46353":3,"46354":4,"46355":3,"46356":4,"46357":4,"46358":3,"46359":2,"46360":4,"46361":2,"46362":3,"46363":4,"46364":4,"46365":2,"46366":3,"46367":4,"46368":1,"46369":3,"46370":3,"46371":3,"46372":5,"46373":3,"46374":5,"46375":4,"46376":3,"46377":3,"46378":3,"46379":2,"46380":1,"46381":3,"46382":4,"46383":1,"46384":3,"46385":3,"46386":2,"46387":4,"46388":3,"46389":3,"46390":3,"46391":2,"46392":1,"46393":3,"46394":4,"46395":4,"46396":3,"46397":3,"46398":3,"46399":2,"46400":4,"46401":2,"46402":2,"46403":2,"46404":4,"46405":1,"46406":1,"46407":1,"46408":4,"46409":3,"46410":4,"46411":5,"46412":2,"46413":4,"46414":5,"46415":3,"46416":2,"46417":3,"46418":4,"46419":2,"46420":3,"46421":2,"46422":5,"46423":5,"46424":3,"46425":2,"46426":2,"46427":3,"46428":3,"46429":1,"46430":3,"46431":4,"46432":2,"46433":3,"46434":4,"46435":2,"46436":5,"46437":2,"46438":3,"46439":3,"46440":4,"46441":2,"46442":4,"46443":3,"46444":3,"46445":3,"46446":3,"46447":2,"46448":1,"46449":4,"46450":4,"46451":3,"46452":3,"46453":1,"46454":4,"46455":3,"46456":3,"46457":4,"46458":2,"46459":4,"46460":3,"46461":3,"46462":4,"46463":4,"46464":3,"46465":3,"46466":3,"46467":2,"46468":1,"46469":3,"46470":1,"46471":2,"46472":3,"46473":3,"46474":2,"46475":5,"46476":3,"46477":2,"46478":2,"46479":3,"46480":3,"46481":3,"46482":4,"46483":2,"46484":3,"46485":4,"46486":3,"46487":5,"46488":2,"46489":3,"46490":1,"46491":4,"46492":2,"46493":3,"46494":2,"46495":2,"46496":3,"46497":3,"46498":4,"46499":3,"46500":4,"46501":4,"46502":3,"46503":4,"46504":2,"46505":2,"46506":2,"46507":3,"46508":3,"46509":5,"46510":4,"46511":4,"46512":1,"46513":4,"46514":4,"46515":4,"46516":4,"46517":3,"46518":3,"46519":3,"46520":3,"46521":2,"46522":5,"46523":4,"46524":1,"46525":1,"46526":4,"46527":3,"46528":4,"46529":2,"46530":2,"46531":3,"46532":5,"46533":3,"46534":3,"46535":1,"46536":4,"46537":1,"46538":2,"46539":2,"46540":3,"46541":4,"46542":3,"46543":4,"46544":4,"46545":3,"46546":4,"46547":2,"46548":4,"46549":3,"46550":3,"46551":2,"46552":3,"46553":4,"46554":3,"46555":2,"46556":4,"46557":4,"46558":5,"46559":2,"46560":2,"46561":5,"46562":5,"46563":2,"46564":3,"46565":5,"46566":3,"46567":4,"46568":2,"46569":5,"46570":2,"46571":3,"46572":2,"46573":3,"46574":4,"46575":1,"46576":2,"46577":3,"46578":4,"46579":4,"46580":2,"46581":3,"46582":1,"46583":3,"46584":4,"46585":3,"46586":3,"46587":3,"46588":3,"46589":1,"46590":2,"46591":3,"46592":4,"46593":4,"46594":4,"46595":2,"46596":3,"46597":1,"46598":2,"46599":4,"46600":1,"46601":3,"46602":3,"46603":2,"46604":3,"46605":5,"46606":3,"46607":4,"46608":1,"46609":3,"46610":2,"46611":3,"46612":3,"46613":3,"46614":3,"46615":4,"46616":3,"46617":2,"46618":2,"46619":3,"46620":4,"46621":4,"46622":2,"46623":3,"46624":1,"46625":2,"46626":3,"46627":4,"46628":2,"46629":3,"46630":1,"46631":2,"46632":2,"46633":5,"46634":1,"46635":5,"46636":4,"46637":3,"46638":4,"46639":2,"46640":1,"46641":5,"46642":4,"46643":2,"46644":2,"46645":3,"46646":2,"46647":1,"46648":1,"46649":3,"46650":2,"46651":3,"46652":5,"46653":3,"46654":3,"46655":4,"46656":2,"46657":3,"46658":1,"46659":4,"46660":4,"46661":4,"46662":1,"46663":3,"46664":4,"46665":3,"46666":4,"46667":4,"46668":2,"46669":2,"46670":4,"46671":5,"46672":1,"46673":3,"46674":3,"46675":2,"46676":2,"46677":3,"46678":1,"46679":3,"46680":3,"46681":3,"46682":3,"46683":3,"46684":4,"46685":3,"46686":1,"46687":3,"46688":3,"46689":4,"46690":4,"46691":3,"46692":1,"46693":2,"46694":3,"46695":4,"46696":4,"46697":4,"46698":2,"46699":3,"46700":3,"46701":1,"46702":4,"46703":4,"46704":2,"46705":4,"46706":2,"46707":2,"46708":3,"46709":4,"46710":3,"46711":3,"46712":4,"46713":1,"46714":2,"46715":3,"46716":3,"46717":3,"46718":2,"46719":4,"46720":2,"46721":1,"46722":3,"46723":5,"46724":3,"46725":4,"46726":3,"46727":3,"46728":4,"46729":2,"46730":2,"46731":2,"46732":3,"46733":3,"46734":3,"46735":4,"46736":4,"46737":3,"46738":3,"46739":2,"46740":2,"46741":3,"46742":2,"46743":3,"46744":3,"46745":1,"46746":4,"46747":3,"46748":5,"46749":3,"46750":5,"46751":4,"46752":3,"46753":5,"46754":2,"46755":3,"46756":4,"46757":1,"46758":3,"46759":3,"46760":3,"46761":4,"46762":2,"46763":5,"46764":4,"46765":3,"46766":2,"46767":1,"46768":4,"46769":4,"46770":3,"46771":3,"46772":3,"46773":3,"46774":1,"46775":3,"46776":4,"46777":3,"46778":3,"46779":3,"46780":2,"46781":2,"46782":1,"46783":3,"46784":2,"46785":3,"46786":4,"46787":3,"46788":2,"46789":4,"46790":1,"46791":2,"46792":4,"46793":3,"46794":2,"46795":4,"46796":1,"46797":3,"46798":3,"46799":3,"46800":3,"46801":3,"46802":3,"46803":3,"46804":3,"46805":5,"46806":2,"46807":3,"46808":2,"46809":1,"46810":3,"46811":2,"46812":4,"46813":1,"46814":4,"46815":5,"46816":1,"46817":3,"46818":3,"46819":3,"46820":4,"46821":4,"46822":2,"46823":3,"46824":5,"46825":4,"46826":2,"46827":3,"46828":3,"46829":2,"46830":2,"46831":2,"46832":1,"46833":4,"46834":2,"46835":2,"46836":5,"46837":3,"46838":3,"46839":2,"46840":2,"46841":2,"46842":4,"46843":3,"46844":1,"46845":1,"46846":1,"46847":4,"46848":4,"46849":2,"46850":2,"46851":4,"46852":1,"46853":2,"46854":5,"46855":3,"46856":2,"46857":1,"46858":5,"46859":4,"46860":3,"46861":2,"46862":2,"46863":3,"46864":3,"46865":3,"46866":2,"46867":3,"46868":1,"46869":2,"46870":1,"46871":3,"46872":3,"46873":4,"46874":1,"46875":1,"46876":2,"46877":4,"46878":3,"46879":5,"46880":2,"46881":1,"46882":3,"46883":3,"46884":4,"46885":4,"46886":3,"46887":1,"46888":3,"46889":3,"46890":4,"46891":3,"46892":1,"46893":3,"46894":3,"46895":2,"46896":3,"46897":4,"46898":5,"46899":4,"46900":4,"46901":3,"46902":4,"46903":3,"46904":3,"46905":2,"46906":3,"46907":5,"46908":4,"46909":3,"46910":3,"46911":4,"46912":3,"46913":3,"46914":2,"46915":4,"46916":2,"46917":2,"46918":2,"46919":3,"46920":4,"46921":3,"46922":4,"46923":3,"46924":3,"46925":5,"46926":3,"46927":1,"46928":4,"46929":3,"46930":3,"46931":4,"46932":3,"46933":3,"46934":2,"46935":4,"46936":3,"46937":1,"46938":2,"46939":3,"46940":3,"46941":2,"46942":4,"46943":2,"46944":3,"46945":1,"46946":4,"46947":2,"46948":4,"46949":3,"46950":3,"46951":4,"46952":2,"46953":3,"46954":4,"46955":4,"46956":3,"46957":3,"46958":4,"46959":2,"46960":3,"46961":2,"46962":4,"46963":4,"46964":3,"46965":1,"46966":3,"46967":4,"46968":3,"46969":5,"46970":2,"46971":4,"46972":4,"46973":4,"46974":3,"46975":4,"46976":2,"46977":3,"46978":4,"46979":3,"46980":4,"46981":1,"46982":3,"46983":3,"46984":2,"46985":3,"46986":4,"46987":5,"46988":1,"46989":3,"46990":1,"46991":2,"46992":5,"46993":3,"46994":4,"46995":3,"46996":4,"46997":5,"46998":3,"46999":2,"47000":2,"47001":3,"47002":3,"47003":4,"47004":4,"47005":4,"47006":2,"47007":3,"47008":5,"47009":4,"47010":2,"47011":2,"47012":3,"47013":4,"47014":3,"47015":2,"47016":4,"47017":4,"47018":3,"47019":1,"47020":4,"47021":3,"47022":2,"47023":4,"47024":1,"47025":4,"47026":4,"47027":3,"47028":2,"47029":3,"47030":3,"47031":2,"47032":3,"47033":5,"47034":3,"47035":3,"47036":2,"47037":3,"47038":4,"47039":4,"47040":1,"47041":2,"47042":4,"47043":1,"47044":1,"47045":3,"47046":1,"47047":2,"47048":1,"47049":1,"47050":3,"47051":3,"47052":2,"47053":4,"47054":4,"47055":4,"47056":1,"47057":4,"47058":2,"47059":5,"47060":1,"47061":2,"47062":4,"47063":2,"47064":4,"47065":3,"47066":1,"47067":1,"47068":1,"47069":5,"47070":5,"47071":1,"47072":4,"47073":3,"47074":3,"47075":4,"47076":3,"47077":5,"47078":4,"47079":3,"47080":5,"47081":5,"47082":4,"47083":4,"47084":1,"47085":4,"47086":3,"47087":1,"47088":3,"47089":2,"47090":3,"47091":3,"47092":3,"47093":2,"47094":5,"47095":3,"47096":1,"47097":3,"47098":3,"47099":3,"47100":5,"47101":4,"47102":4,"47103":5,"47104":3,"47105":2,"47106":3,"47107":3,"47108":4,"47109":2,"47110":3,"47111":3,"47112":3,"47113":3,"47114":5,"47115":4,"47116":2,"47117":1,"47118":5,"47119":1,"47120":2,"47121":3,"47122":3,"47123":3,"47124":2,"47125":1,"47126":4,"47127":4,"47128":1,"47129":3,"47130":4,"47131":5,"47132":3,"47133":2,"47134":4,"47135":5,"47136":4,"47137":3,"47138":4,"47139":4,"47140":4,"47141":4,"47142":4,"47143":3,"47144":3,"47145":3,"47146":2,"47147":3,"47148":3,"47149":3,"47150":3,"47151":3,"47152":2,"47153":4,"47154":2,"47155":2,"47156":3,"47157":2,"47158":5,"47159":3,"47160":4,"47161":2,"47162":3,"47163":3,"47164":2,"47165":1,"47166":3,"47167":2,"47168":3,"47169":2,"47170":3,"47171":3,"47172":4,"47173":1,"47174":1,"47175":2,"47176":3,"47177":1,"47178":3,"47179":3,"47180":4,"47181":2,"47182":3,"47183":3,"47184":5,"47185":3,"47186":3,"47187":2,"47188":3,"47189":5,"47190":3,"47191":4,"47192":5,"47193":3,"47194":3,"47195":3,"47196":1,"47197":4,"47198":5,"47199":4,"47200":2,"47201":2,"47202":2,"47203":4,"47204":2,"47205":3,"47206":4,"47207":4,"47208":1,"47209":2,"47210":2,"47211":3,"47212":2,"47213":3,"47214":2,"47215":3,"47216":4,"47217":3,"47218":4,"47219":3,"47220":5,"47221":2,"47222":2,"47223":3,"47224":4,"47225":3,"47226":3,"47227":3,"47228":2,"47229":3,"47230":4,"47231":5,"47232":3,"47233":3,"47234":3,"47235":4,"47236":4,"47237":2,"47238":1,"47239":3,"47240":3,"47241":4,"47242":3,"47243":4,"47244":3,"47245":4,"47246":3,"47247":4,"47248":2,"47249":2,"47250":3,"47251":3,"47252":4,"47253":3,"47254":4,"47255":5,"47256":2,"47257":2,"47258":5,"47259":2,"47260":2,"47261":3,"47262":3,"47263":3,"47264":2,"47265":4,"47266":3,"47267":4,"47268":3,"47269":2,"47270":4,"47271":3,"47272":3,"47273":2,"47274":4,"47275":2,"47276":4,"47277":3,"47278":4,"47279":3,"47280":2,"47281":3,"47282":4,"47283":3,"47284":3,"47285":2,"47286":3,"47287":2,"47288":3,"47289":3,"47290":3,"47291":1,"47292":3,"47293":3,"47294":4,"47295":1,"47296":2,"47297":3,"47298":1,"47299":2,"47300":2,"47301":3,"47302":5,"47303":2,"47304":2,"47305":2,"47306":2,"47307":4,"47308":4,"47309":2,"47310":3,"47311":4,"47312":3,"47313":5,"47314":2,"47315":2,"47316":3,"47317":2,"47318":3,"47319":3,"47320":1,"47321":3,"47322":3,"47323":2,"47324":4,"47325":3,"47326":4,"47327":3,"47328":4,"47329":3,"47330":4,"47331":2,"47332":3,"47333":5,"47334":2,"47335":3,"47336":2,"47337":4,"47338":4,"47339":4,"47340":5,"47341":3,"47342":2,"47343":4,"47344":3,"47345":4,"47346":4,"47347":3,"47348":3,"47349":2,"47350":3,"47351":3,"47352":3,"47353":3,"47354":5,"47355":3,"47356":4,"47357":4,"47358":4,"47359":4,"47360":2,"47361":4,"47362":3,"47363":4,"47364":4,"47365":3,"47366":4,"47367":1,"47368":4,"47369":5,"47370":5,"47371":3,"47372":3,"47373":4,"47374":4,"47375":3,"47376":3,"47377":5,"47378":3,"47379":4,"47380":3,"47381":3,"47382":3,"47383":4,"47384":2,"47385":1,"47386":4,"47387":4,"47388":3,"47389":4,"47390":3,"47391":3,"47392":4,"47393":3,"47394":3,"47395":3,"47396":4,"47397":4,"47398":1,"47399":3,"47400":2,"47401":3,"47402":1,"47403":4,"47404":5,"47405":2,"47406":4,"47407":3,"47408":3,"47409":3,"47410":5,"47411":3,"47412":2,"47413":2,"47414":5,"47415":2,"47416":3,"47417":2,"47418":2,"47419":3,"47420":5,"47421":4,"47422":2,"47423":2,"47424":2,"47425":3,"47426":2,"47427":2,"47428":4,"47429":2,"47430":4,"47431":3,"47432":2,"47433":2,"47434":2,"47435":4,"47436":1,"47437":4,"47438":2,"47439":4,"47440":4,"47441":3,"47442":2,"47443":2,"47444":4,"47445":2,"47446":3,"47447":3,"47448":4,"47449":1,"47450":2,"47451":2,"47452":2,"47453":1,"47454":3,"47455":2,"47456":3,"47457":2,"47458":2,"47459":3,"47460":2,"47461":1,"47462":5,"47463":3,"47464":3,"47465":4,"47466":1,"47467":3,"47468":3,"47469":2,"47470":4,"47471":3,"47472":4,"47473":2,"47474":1,"47475":2,"47476":3,"47477":3,"47478":3,"47479":4,"47480":4,"47481":4,"47482":2,"47483":2,"47484":2,"47485":3,"47486":5,"47487":2,"47488":3,"47489":3,"47490":4,"47491":1,"47492":4,"47493":2,"47494":2,"47495":5,"47496":1,"47497":4,"47498":4,"47499":4,"47500":2,"47501":3,"47502":3,"47503":1,"47504":4,"47505":5,"47506":4,"47507":2,"47508":4,"47509":4,"47510":3,"47511":2,"47512":4,"47513":1,"47514":2,"47515":2,"47516":4,"47517":3,"47518":1,"47519":3,"47520":4,"47521":3,"47522":4,"47523":3,"47524":4,"47525":2,"47526":4,"47527":4,"47528":3,"47529":2,"47530":2,"47531":1,"47532":2,"47533":3,"47534":3,"47535":3,"47536":2,"47537":2,"47538":3,"47539":3,"47540":3,"47541":3,"47542":3,"47543":3,"47544":3,"47545":3,"47546":2,"47547":3,"47548":4,"47549":2,"47550":1,"47551":4,"47552":1,"47553":4,"47554":2,"47555":1,"47556":1,"47557":3,"47558":4,"47559":2,"47560":4,"47561":3,"47562":5,"47563":4,"47564":3,"47565":4,"47566":2,"47567":3,"47568":2,"47569":5,"47570":3,"47571":2,"47572":4,"47573":2,"47574":2,"47575":3,"47576":2,"47577":4,"47578":2,"47579":1,"47580":4,"47581":1,"47582":4,"47583":4,"47584":3,"47585":3,"47586":2,"47587":2,"47588":5,"47589":4,"47590":4,"47591":4,"47592":4,"47593":4,"47594":5,"47595":1,"47596":4,"47597":4,"47598":4,"47599":2,"47600":1,"47601":1,"47602":2,"47603":3,"47604":5,"47605":2,"47606":3,"47607":2,"47608":2,"47609":3,"47610":4,"47611":3,"47612":3,"47613":4,"47614":3,"47615":3,"47616":3,"47617":4,"47618":5,"47619":3,"47620":2,"47621":4,"47622":3,"47623":3,"47624":3,"47625":4,"47626":3,"47627":4,"47628":2,"47629":2,"47630":3,"47631":4,"47632":5,"47633":4,"47634":2,"47635":4,"47636":4,"47637":1,"47638":3,"47639":3,"47640":1,"47641":1,"47642":1,"47643":2,"47644":4,"47645":2,"47646":2,"47647":5,"47648":3,"47649":1,"47650":2,"47651":5,"47652":4,"47653":4,"47654":3,"47655":3,"47656":3,"47657":3,"47658":2,"47659":2,"47660":2,"47661":3,"47662":3,"47663":2,"47664":3,"47665":3,"47666":4,"47667":4,"47668":5,"47669":4,"47670":3,"47671":4,"47672":3,"47673":4,"47674":3,"47675":2,"47676":3,"47677":3,"47678":3,"47679":5,"47680":5,"47681":3,"47682":5,"47683":4,"47684":2,"47685":2,"47686":3,"47687":4,"47688":2,"47689":2,"47690":5,"47691":4,"47692":4,"47693":4,"47694":2,"47695":1,"47696":3,"47697":5,"47698":3,"47699":3,"47700":2,"47701":3,"47702":2,"47703":4,"47704":3,"47705":5,"47706":2,"47707":4,"47708":3,"47709":2,"47710":1,"47711":2,"47712":2,"47713":3,"47714":5,"47715":2,"47716":3,"47717":3,"47718":3,"47719":3,"47720":4,"47721":1,"47722":3,"47723":3,"47724":2,"47725":3,"47726":4,"47727":3,"47728":4,"47729":3,"47730":3,"47731":2,"47732":2,"47733":2,"47734":3,"47735":4,"47736":3,"47737":3,"47738":2,"47739":2,"47740":3,"47741":4,"47742":3,"47743":3,"47744":2,"47745":3,"47746":3,"47747":4,"47748":3,"47749":3,"47750":3,"47751":1,"47752":4,"47753":3,"47754":3,"47755":3,"47756":3,"47757":2,"47758":5,"47759":3,"47760":2,"47761":5,"47762":3,"47763":3,"47764":2,"47765":4,"47766":2,"47767":4,"47768":2,"47769":2,"47770":4,"47771":5,"47772":2,"47773":2,"47774":2,"47775":4,"47776":4,"47777":3,"47778":4,"47779":4,"47780":3,"47781":4,"47782":5,"47783":3,"47784":4,"47785":4,"47786":1,"47787":4,"47788":4,"47789":4,"47790":4,"47791":1,"47792":4,"47793":2,"47794":3,"47795":3,"47796":2,"47797":3,"47798":2,"47799":3,"47800":4,"47801":4,"47802":2,"47803":3,"47804":4,"47805":3,"47806":1,"47807":2,"47808":3,"47809":2,"47810":3,"47811":2,"47812":5,"47813":1,"47814":2,"47815":3,"47816":3,"47817":2,"47818":3,"47819":5,"47820":4,"47821":1,"47822":4,"47823":5,"47824":3,"47825":2,"47826":2,"47827":2,"47828":2,"47829":3,"47830":2,"47831":2,"47832":3,"47833":2,"47834":2,"47835":2,"47836":2,"47837":3,"47838":4,"47839":4,"47840":2,"47841":3,"47842":3,"47843":4,"47844":2,"47845":1,"47846":3,"47847":3,"47848":3,"47849":3,"47850":2,"47851":2,"47852":4,"47853":2,"47854":4,"47855":2,"47856":3,"47857":3,"47858":2,"47859":2,"47860":4,"47861":4,"47862":3,"47863":2,"47864":3,"47865":2,"47866":3,"47867":4,"47868":1,"47869":1,"47870":4,"47871":2,"47872":4,"47873":4,"47874":4,"47875":2,"47876":2,"47877":3,"47878":1,"47879":2,"47880":2,"47881":2,"47882":3,"47883":3,"47884":2,"47885":4,"47886":2,"47887":2,"47888":4,"47889":5,"47890":4,"47891":2,"47892":3,"47893":4,"47894":3,"47895":1,"47896":2,"47897":3,"47898":3,"47899":3,"47900":3,"47901":4,"47902":3,"47903":5,"47904":4,"47905":3,"47906":2,"47907":4,"47908":2,"47909":5,"47910":3,"47911":1,"47912":2,"47913":3,"47914":3,"47915":4,"47916":3,"47917":3,"47918":4,"47919":4,"47920":3,"47921":3,"47922":3,"47923":3,"47924":1,"47925":5,"47926":4,"47927":4,"47928":4,"47929":4,"47930":3,"47931":5,"47932":5,"47933":4,"47934":4,"47935":4,"47936":5,"47937":3,"47938":2,"47939":2,"47940":5,"47941":5,"47942":3,"47943":2,"47944":3,"47945":3,"47946":1,"47947":2,"47948":3,"47949":1,"47950":4,"47951":1,"47952":2,"47953":3,"47954":2,"47955":1,"47956":3,"47957":3,"47958":3,"47959":5,"47960":1,"47961":2,"47962":2,"47963":3,"47964":1,"47965":2,"47966":4,"47967":4,"47968":1,"47969":4,"47970":3,"47971":1,"47972":3,"47973":3,"47974":3,"47975":2,"47976":3,"47977":4,"47978":3,"47979":3,"47980":4,"47981":3,"47982":5,"47983":1,"47984":5,"47985":1,"47986":2,"47987":2,"47988":4,"47989":3,"47990":3,"47991":2,"47992":5,"47993":2,"47994":3,"47995":3,"47996":5,"47997":4,"47998":4,"47999":3,"48000":1,"48001":3,"48002":4,"48003":1,"48004":3,"48005":3,"48006":4,"48007":2,"48008":4,"48009":4,"48010":5,"48011":4,"48012":4,"48013":5,"48014":1,"48015":3,"48016":3,"48017":3,"48018":1,"48019":3,"48020":2,"48021":1,"48022":4,"48023":4,"48024":2,"48025":2,"48026":1,"48027":3,"48028":1,"48029":3,"48030":2,"48031":3,"48032":4,"48033":3,"48034":3,"48035":3,"48036":5,"48037":3,"48038":3,"48039":4,"48040":3,"48041":3,"48042":2,"48043":5,"48044":3,"48045":3,"48046":3,"48047":3,"48048":3,"48049":3,"48050":2,"48051":3,"48052":2,"48053":1,"48054":3,"48055":4,"48056":5,"48057":4,"48058":3,"48059":3,"48060":4,"48061":4,"48062":4,"48063":3,"48064":3,"48065":5,"48066":3,"48067":5,"48068":3,"48069":2,"48070":3,"48071":4,"48072":5,"48073":3,"48074":5,"48075":1,"48076":4,"48077":2,"48078":4,"48079":3,"48080":3,"48081":1,"48082":2,"48083":4,"48084":2,"48085":1,"48086":3,"48087":4,"48088":4,"48089":2,"48090":4,"48091":1,"48092":3,"48093":3,"48094":5,"48095":3,"48096":2,"48097":1,"48098":3,"48099":4,"48100":2,"48101":3,"48102":4,"48103":1,"48104":1,"48105":1,"48106":3,"48107":2,"48108":3,"48109":2,"48110":1,"48111":2,"48112":4,"48113":4,"48114":3,"48115":2,"48116":3,"48117":3,"48118":3,"48119":2,"48120":1,"48121":4,"48122":3,"48123":3,"48124":4,"48125":1,"48126":1,"48127":3,"48128":1,"48129":2,"48130":3,"48131":3,"48132":1,"48133":3,"48134":3,"48135":1,"48136":3,"48137":4,"48138":5,"48139":4,"48140":1,"48141":2,"48142":4,"48143":4,"48144":5,"48145":5,"48146":4,"48147":3,"48148":4,"48149":5,"48150":1,"48151":2,"48152":4,"48153":1,"48154":2,"48155":4,"48156":3,"48157":4,"48158":3,"48159":5,"48160":2,"48161":4,"48162":3,"48163":3,"48164":4,"48165":4,"48166":3,"48167":2,"48168":1,"48169":4,"48170":3,"48171":4,"48172":3,"48173":3,"48174":3,"48175":3,"48176":1,"48177":4,"48178":3,"48179":4,"48180":3,"48181":3,"48182":5,"48183":2,"48184":2,"48185":3,"48186":3,"48187":3,"48188":3,"48189":5,"48190":2,"48191":2,"48192":3,"48193":1,"48194":4,"48195":4,"48196":3,"48197":2,"48198":1,"48199":3,"48200":2,"48201":3,"48202":2,"48203":4,"48204":2,"48205":1,"48206":1,"48207":4,"48208":3,"48209":3,"48210":2,"48211":3,"48212":4,"48213":3,"48214":3,"48215":2,"48216":4,"48217":3,"48218":3,"48219":3,"48220":5,"48221":3,"48222":3,"48223":3,"48224":4,"48225":4,"48226":3,"48227":4,"48228":1,"48229":2,"48230":3,"48231":4,"48232":3,"48233":4,"48234":3,"48235":1,"48236":2,"48237":5,"48238":2,"48239":2,"48240":3,"48241":3,"48242":2,"48243":3,"48244":4,"48245":3,"48246":3,"48247":4,"48248":4,"48249":4,"48250":3,"48251":4,"48252":5,"48253":3,"48254":5,"48255":2,"48256":3,"48257":2,"48258":4,"48259":2,"48260":4,"48261":1,"48262":2,"48263":4,"48264":4,"48265":3,"48266":3,"48267":3,"48268":4,"48269":2,"48270":4,"48271":3,"48272":3,"48273":4,"48274":4,"48275":4,"48276":4,"48277":2,"48278":4,"48279":3,"48280":3,"48281":1,"48282":2,"48283":3,"48284":3,"48285":4,"48286":4,"48287":3,"48288":3,"48289":2,"48290":3,"48291":3,"48292":3,"48293":5,"48294":3,"48295":2,"48296":3,"48297":4,"48298":1,"48299":2,"48300":1,"48301":1,"48302":3,"48303":3,"48304":3,"48305":2,"48306":4,"48307":3,"48308":3,"48309":3,"48310":4,"48311":4,"48312":2,"48313":1,"48314":3,"48315":2,"48316":4,"48317":2,"48318":1,"48319":4,"48320":5,"48321":3,"48322":3,"48323":3,"48324":3,"48325":2,"48326":2,"48327":4,"48328":4,"48329":1,"48330":4,"48331":2,"48332":4,"48333":5,"48334":5,"48335":4,"48336":2,"48337":1,"48338":3,"48339":3,"48340":2,"48341":5,"48342":1,"48343":4,"48344":3,"48345":1,"48346":3,"48347":4,"48348":2,"48349":3,"48350":3,"48351":5,"48352":3,"48353":1,"48354":3,"48355":3,"48356":3,"48357":4,"48358":3,"48359":3,"48360":2,"48361":2,"48362":1,"48363":4,"48364":2,"48365":4,"48366":2,"48367":4,"48368":4,"48369":3,"48370":2,"48371":4,"48372":3,"48373":3,"48374":2,"48375":3,"48376":4,"48377":4,"48378":3,"48379":3,"48380":3,"48381":3,"48382":2,"48383":3,"48384":1,"48385":3,"48386":3,"48387":1,"48388":3,"48389":3,"48390":4,"48391":3,"48392":1,"48393":4,"48394":3,"48395":2,"48396":3,"48397":4,"48398":4,"48399":3,"48400":4,"48401":4,"48402":4,"48403":1,"48404":3,"48405":3,"48406":1,"48407":4,"48408":3,"48409":2,"48410":2,"48411":2,"48412":4,"48413":2,"48414":3,"48415":3,"48416":4,"48417":3,"48418":2,"48419":5,"48420":4,"48421":4,"48422":3,"48423":3,"48424":1,"48425":5,"48426":3,"48427":3,"48428":2,"48429":3,"48430":5,"48431":3,"48432":1,"48433":2,"48434":3,"48435":2,"48436":3,"48437":1,"48438":2,"48439":3,"48440":4,"48441":4,"48442":2,"48443":2,"48444":4,"48445":2,"48446":1,"48447":3,"48448":2,"48449":1,"48450":2,"48451":2,"48452":3,"48453":1,"48454":5,"48455":3,"48456":4,"48457":3,"48458":1,"48459":3,"48460":3,"48461":4,"48462":4,"48463":1,"48464":3,"48465":3,"48466":2,"48467":3,"48468":2,"48469":1,"48470":3,"48471":2,"48472":2,"48473":4,"48474":3,"48475":3,"48476":5,"48477":4,"48478":3,"48479":2,"48480":4,"48481":5,"48482":2,"48483":4,"48484":4,"48485":2,"48486":4,"48487":5,"48488":1,"48489":2,"48490":2,"48491":3,"48492":2,"48493":3,"48494":3,"48495":3,"48496":3,"48497":1,"48498":2,"48499":4,"48500":3,"48501":2,"48502":3,"48503":4,"48504":2,"48505":4,"48506":4,"48507":2,"48508":3,"48509":3,"48510":3,"48511":2,"48512":3,"48513":5,"48514":3,"48515":2,"48516":1,"48517":3,"48518":3,"48519":4,"48520":5,"48521":3,"48522":4,"48523":3,"48524":3,"48525":4,"48526":1,"48527":2,"48528":3,"48529":3,"48530":3,"48531":2,"48532":3,"48533":4,"48534":3,"48535":3,"48536":4,"48537":2,"48538":2,"48539":3,"48540":2,"48541":5,"48542":3,"48543":3,"48544":4,"48545":2,"48546":3,"48547":5,"48548":3,"48549":4,"48550":3,"48551":2,"48552":4,"48553":3,"48554":2,"48555":3,"48556":2,"48557":3,"48558":4,"48559":2,"48560":4,"48561":3,"48562":3,"48563":4,"48564":2,"48565":3,"48566":2,"48567":3,"48568":3,"48569":5,"48570":2,"48571":1,"48572":1,"48573":2,"48574":4,"48575":4,"48576":4,"48577":3,"48578":4,"48579":2,"48580":3,"48581":4,"48582":3,"48583":1,"48584":2,"48585":2,"48586":4,"48587":3,"48588":3,"48589":3,"48590":1,"48591":3,"48592":3,"48593":3,"48594":3,"48595":2,"48596":4,"48597":5,"48598":2,"48599":3,"48600":3,"48601":2,"48602":3,"48603":4,"48604":5,"48605":2,"48606":3,"48607":3,"48608":3,"48609":1,"48610":2,"48611":2,"48612":1,"48613":2,"48614":3,"48615":3,"48616":2,"48617":2,"48618":3,"48619":2,"48620":3,"48621":2,"48622":3,"48623":4,"48624":2,"48625":2,"48626":2,"48627":4,"48628":3,"48629":4,"48630":3,"48631":2,"48632":2,"48633":3,"48634":3,"48635":3,"48636":2,"48637":1,"48638":2,"48639":3,"48640":2,"48641":3,"48642":4,"48643":3,"48644":4,"48645":3,"48646":4,"48647":3,"48648":4,"48649":4,"48650":3,"48651":1,"48652":2,"48653":1,"48654":3,"48655":1,"48656":3,"48657":4,"48658":2,"48659":4,"48660":5,"48661":3,"48662":3,"48663":3,"48664":4,"48665":3,"48666":4,"48667":4,"48668":2,"48669":4,"48670":4,"48671":3,"48672":3,"48673":3,"48674":1,"48675":4,"48676":4,"48677":4,"48678":3,"48679":3,"48680":4,"48681":3,"48682":3,"48683":4,"48684":3,"48685":4,"48686":4,"48687":3,"48688":3,"48689":1,"48690":2,"48691":2,"48692":5,"48693":3,"48694":3,"48695":2,"48696":3,"48697":4,"48698":5,"48699":4,"48700":2,"48701":3,"48702":3,"48703":3,"48704":2,"48705":4,"48706":2,"48707":2,"48708":2,"48709":2,"48710":5,"48711":3,"48712":4,"48713":3,"48714":5,"48715":3,"48716":5,"48717":2,"48718":2,"48719":3,"48720":3,"48721":3,"48722":2,"48723":4,"48724":1,"48725":2,"48726":3,"48727":1,"48728":3,"48729":2,"48730":3,"48731":4,"48732":4,"48733":2,"48734":4,"48735":4,"48736":3,"48737":3,"48738":2,"48739":5,"48740":1,"48741":2,"48742":1,"48743":5,"48744":5,"48745":3,"48746":2,"48747":4,"48748":2,"48749":1,"48750":5,"48751":1,"48752":3,"48753":4,"48754":3,"48755":3,"48756":4,"48757":3,"48758":2,"48759":4,"48760":3,"48761":3,"48762":3,"48763":3,"48764":1,"48765":4,"48766":4,"48767":4,"48768":2,"48769":5,"48770":3,"48771":2,"48772":3,"48773":2,"48774":4,"48775":3,"48776":2,"48777":2,"48778":4,"48779":2,"48780":5,"48781":4,"48782":4,"48783":3,"48784":4,"48785":2,"48786":4,"48787":4,"48788":2,"48789":2,"48790":4,"48791":2,"48792":2,"48793":4,"48794":5,"48795":1,"48796":4,"48797":2,"48798":3,"48799":2,"48800":2,"48801":2,"48802":3,"48803":3,"48804":5,"48805":1,"48806":3,"48807":1,"48808":2,"48809":3,"48810":4,"48811":1,"48812":2,"48813":1,"48814":3,"48815":2,"48816":3,"48817":3,"48818":2,"48819":2,"48820":3,"48821":3,"48822":3,"48823":2,"48824":1,"48825":4,"48826":3,"48827":3,"48828":4,"48829":3,"48830":4,"48831":4,"48832":4,"48833":5,"48834":3,"48835":2,"48836":4,"48837":3,"48838":4,"48839":3,"48840":1,"48841":3,"48842":1,"48843":3,"48844":3,"48845":2,"48846":3,"48847":3,"48848":3,"48849":1,"48850":2,"48851":2,"48852":2,"48853":2,"48854":1,"48855":5,"48856":3,"48857":3,"48858":1,"48859":3,"48860":4,"48861":4,"48862":4,"48863":4,"48864":3,"48865":4,"48866":4,"48867":3,"48868":2,"48869":2,"48870":4,"48871":4,"48872":1,"48873":2,"48874":4,"48875":5,"48876":2,"48877":1,"48878":3,"48879":5,"48880":3,"48881":3,"48882":3,"48883":3,"48884":4,"48885":3,"48886":2,"48887":3,"48888":3,"48889":3,"48890":3,"48891":2,"48892":3,"48893":1,"48894":2,"48895":1,"48896":4,"48897":4,"48898":4,"48899":4,"48900":4,"48901":2,"48902":3,"48903":3,"48904":1,"48905":4,"48906":4,"48907":4,"48908":3,"48909":3,"48910":3,"48911":3,"48912":2,"48913":1,"48914":4,"48915":3,"48916":3,"48917":5,"48918":2,"48919":4,"48920":4,"48921":3,"48922":2,"48923":4,"48924":4,"48925":4,"48926":4,"48927":3,"48928":3,"48929":4,"48930":4,"48931":4,"48932":4,"48933":3,"48934":3,"48935":5,"48936":5,"48937":3,"48938":5,"48939":4,"48940":1,"48941":4,"48942":1,"48943":4,"48944":2,"48945":2,"48946":3,"48947":4,"48948":2,"48949":3,"48950":3,"48951":3,"48952":4,"48953":2,"48954":5,"48955":4,"48956":3,"48957":4,"48958":3,"48959":1,"48960":3,"48961":2,"48962":4,"48963":1,"48964":2,"48965":4,"48966":3,"48967":5,"48968":4,"48969":3,"48970":3,"48971":2,"48972":5,"48973":3,"48974":3,"48975":4,"48976":4,"48977":2,"48978":3,"48979":1,"48980":3,"48981":1,"48982":4,"48983":3,"48984":2,"48985":4,"48986":2,"48987":5,"48988":2,"48989":2,"48990":4,"48991":1,"48992":2,"48993":2,"48994":2,"48995":2,"48996":2,"48997":2,"48998":3,"48999":4,"49000":2,"49001":2,"49002":3,"49003":4,"49004":2,"49005":2,"49006":2,"49007":3,"49008":1,"49009":2,"49010":4,"49011":2,"49012":3,"49013":1,"49014":3,"49015":3,"49016":3,"49017":2,"49018":2,"49019":3,"49020":3,"49021":3,"49022":2,"49023":3,"49024":3,"49025":3,"49026":4,"49027":4,"49028":1,"49029":3,"49030":1,"49031":3,"49032":2,"49033":3,"49034":2,"49035":3,"49036":4,"49037":2,"49038":3,"49039":3,"49040":3,"49041":4,"49042":1,"49043":3,"49044":4,"49045":2,"49046":3,"49047":1,"49048":2,"49049":2,"49050":3,"49051":3,"49052":3,"49053":2,"49054":3,"49055":3,"49056":3,"49057":1,"49058":2,"49059":2,"49060":3,"49061":4,"49062":2,"49063":3,"49064":2,"49065":5,"49066":3,"49067":4,"49068":3,"49069":5,"49070":2,"49071":2,"49072":2,"49073":3,"49074":2,"49075":3,"49076":3,"49077":3,"49078":2,"49079":3,"49080":3,"49081":5,"49082":2,"49083":2,"49084":3,"49085":4,"49086":3,"49087":4,"49088":3,"49089":2,"49090":4,"49091":2,"49092":2,"49093":1,"49094":2,"49095":3,"49096":3,"49097":4,"49098":5,"49099":4,"49100":5,"49101":2,"49102":4,"49103":2,"49104":4,"49105":2,"49106":3,"49107":2,"49108":2,"49109":4,"49110":2,"49111":3,"49112":3,"49113":3,"49114":2,"49115":4,"49116":4,"49117":1,"49118":2,"49119":3,"49120":3,"49121":3,"49122":5,"49123":4,"49124":2,"49125":3,"49126":4,"49127":1,"49128":2,"49129":3,"49130":3,"49131":3,"49132":4,"49133":3,"49134":3,"49135":3,"49136":4,"49137":3,"49138":3,"49139":4,"49140":3,"49141":3,"49142":2,"49143":2,"49144":2,"49145":2,"49146":5,"49147":3,"49148":4,"49149":2,"49150":2,"49151":2,"49152":3,"49153":5,"49154":2,"49155":2,"49156":5,"49157":2,"49158":5,"49159":3,"49160":3,"49161":5,"49162":2,"49163":3,"49164":4,"49165":2,"49166":3,"49167":4,"49168":4,"49169":4,"49170":2,"49171":4,"49172":1,"49173":4,"49174":2,"49175":4,"49176":4,"49177":2,"49178":4,"49179":5,"49180":4,"49181":1,"49182":3,"49183":3,"49184":2,"49185":3,"49186":3,"49187":2,"49188":3,"49189":3,"49190":3,"49191":1,"49192":3,"49193":5,"49194":2,"49195":3,"49196":3,"49197":2,"49198":2,"49199":2,"49200":4,"49201":4,"49202":1,"49203":4,"49204":2,"49205":1,"49206":4,"49207":3,"49208":5,"49209":4,"49210":1,"49211":3,"49212":4,"49213":3,"49214":5,"49215":3,"49216":2,"49217":4,"49218":3,"49219":3,"49220":1,"49221":2,"49222":4,"49223":3,"49224":3,"49225":2,"49226":5,"49227":3,"49228":1,"49229":2,"49230":4,"49231":3,"49232":3,"49233":2,"49234":3,"49235":4,"49236":1,"49237":3,"49238":3,"49239":4,"49240":1,"49241":4,"49242":3,"49243":3,"49244":2,"49245":3,"49246":2,"49247":2,"49248":3,"49249":2,"49250":3,"49251":3,"49252":2,"49253":3,"49254":3,"49255":1,"49256":2,"49257":3,"49258":2,"49259":4,"49260":3,"49261":1,"49262":2,"49263":3,"49264":3,"49265":3,"49266":4,"49267":2,"49268":3,"49269":2,"49270":3,"49271":3,"49272":1,"49273":3,"49274":2,"49275":1,"49276":1,"49277":3,"49278":3,"49279":2,"49280":4,"49281":5,"49282":4,"49283":2,"49284":3,"49285":3,"49286":4,"49287":3,"49288":2,"49289":4,"49290":4,"49291":4,"49292":4,"49293":4,"49294":4,"49295":4,"49296":1,"49297":3,"49298":1,"49299":4,"49300":4,"49301":4,"49302":3,"49303":2,"49304":4,"49305":2,"49306":2,"49307":2,"49308":2,"49309":3,"49310":2,"49311":3,"49312":3,"49313":2,"49314":4,"49315":3,"49316":2,"49317":2,"49318":4,"49319":1,"49320":4,"49321":3,"49322":3,"49323":5,"49324":3,"49325":3,"49326":4,"49327":3,"49328":2,"49329":3,"49330":2,"49331":2,"49332":3,"49333":5,"49334":5,"49335":2,"49336":5,"49337":3,"49338":2,"49339":4,"49340":3,"49341":4,"49342":3,"49343":4,"49344":4,"49345":3,"49346":3,"49347":1,"49348":2,"49349":2,"49350":3,"49351":3,"49352":4,"49353":3,"49354":5,"49355":4,"49356":1,"49357":4,"49358":3,"49359":3,"49360":4,"49361":3,"49362":2,"49363":4,"49364":4,"49365":3,"49366":1,"49367":4,"49368":1,"49369":3,"49370":4,"49371":3,"49372":1,"49373":3,"49374":3,"49375":2,"49376":3,"49377":1,"49378":4,"49379":2,"49380":2,"49381":4,"49382":5,"49383":2,"49384":3,"49385":2,"49386":2,"49387":2,"49388":2,"49389":4,"49390":4,"49391":4,"49392":4,"49393":2,"49394":3,"49395":4,"49396":1,"49397":3,"49398":5,"49399":5,"49400":1,"49401":1,"49402":5,"49403":3,"49404":3,"49405":4,"49406":3,"49407":2,"49408":2,"49409":4,"49410":3,"49411":2,"49412":3,"49413":4,"49414":4,"49415":4,"49416":2,"49417":3,"49418":4,"49419":1,"49420":2,"49421":4,"49422":2,"49423":5,"49424":3,"49425":3,"49426":3,"49427":3,"49428":4,"49429":2,"49430":4,"49431":3,"49432":2,"49433":4,"49434":3,"49435":3,"49436":4,"49437":4,"49438":3,"49439":2,"49440":4,"49441":5,"49442":2,"49443":3,"49444":2,"49445":2,"49446":4,"49447":3,"49448":3,"49449":3,"49450":3,"49451":4,"49452":4,"49453":2,"49454":4,"49455":2,"49456":4,"49457":2,"49458":3,"49459":2,"49460":3,"49461":4,"49462":1,"49463":4,"49464":5,"49465":4,"49466":2,"49467":2,"49468":2,"49469":4,"49470":3,"49471":4,"49472":2,"49473":3,"49474":2,"49475":3,"49476":3,"49477":1,"49478":4,"49479":1,"49480":5,"49481":3,"49482":2,"49483":2,"49484":5,"49485":5,"49486":4,"49487":5,"49488":3,"49489":4,"49490":4,"49491":4,"49492":2,"49493":4,"49494":1,"49495":2,"49496":4,"49497":3,"49498":2,"49499":2,"49500":4,"49501":4,"49502":5,"49503":1,"49504":3,"49505":2,"49506":4,"49507":4,"49508":4,"49509":3,"49510":2,"49511":1,"49512":5,"49513":2,"49514":4,"49515":2,"49516":4,"49517":2,"49518":2,"49519":4,"49520":3,"49521":1,"49522":1,"49523":4,"49524":3,"49525":2,"49526":1,"49527":5,"49528":4,"49529":3,"49530":3,"49531":3,"49532":2,"49533":3,"49534":2,"49535":3,"49536":3,"49537":2,"49538":2,"49539":4,"49540":4,"49541":2,"49542":4,"49543":1,"49544":3,"49545":3,"49546":1,"49547":3,"49548":3,"49549":3,"49550":2,"49551":3,"49552":2,"49553":2,"49554":4,"49555":5,"49556":4,"49557":1,"49558":2,"49559":2,"49560":1,"49561":1,"49562":4,"49563":3,"49564":5,"49565":3,"49566":4,"49567":4,"49568":3,"49569":2,"49570":3,"49571":1,"49572":3,"49573":3,"49574":4,"49575":4,"49576":3,"49577":4,"49578":3,"49579":3,"49580":1,"49581":5,"49582":4,"49583":3,"49584":5,"49585":5,"49586":4,"49587":3,"49588":1,"49589":5,"49590":3,"49591":3,"49592":4,"49593":3,"49594":3,"49595":3,"49596":1,"49597":3,"49598":3,"49599":2,"49600":4,"49601":4,"49602":3,"49603":3,"49604":2,"49605":1,"49606":3,"49607":4,"49608":4,"49609":5,"49610":2,"49611":3,"49612":3,"49613":3,"49614":1,"49615":5,"49616":3,"49617":4,"49618":2,"49619":5,"49620":2,"49621":2,"49622":2,"49623":3,"49624":5,"49625":2,"49626":3,"49627":3,"49628":1,"49629":3,"49630":1,"49631":3,"49632":3,"49633":3,"49634":1,"49635":5,"49636":1,"49637":5,"49638":3,"49639":2,"49640":2,"49641":3,"49642":4,"49643":3,"49644":4,"49645":3,"49646":2,"49647":4,"49648":3,"49649":5,"49650":3,"49651":4,"49652":3,"49653":3,"49654":4,"49655":2,"49656":2,"49657":4,"49658":1,"49659":1,"49660":4,"49661":4,"49662":5,"49663":4,"49664":4,"49665":4,"49666":2,"49667":1,"49668":3,"49669":2,"49670":4,"49671":3,"49672":5,"49673":5,"49674":3,"49675":3,"49676":2,"49677":4,"49678":5,"49679":3,"49680":2,"49681":1,"49682":5,"49683":3,"49684":3,"49685":3,"49686":5,"49687":1,"49688":2,"49689":4,"49690":1,"49691":3,"49692":3,"49693":3,"49694":3,"49695":3,"49696":3,"49697":4,"49698":2,"49699":4,"49700":2,"49701":1,"49702":1,"49703":2,"49704":4,"49705":4,"49706":5,"49707":2,"49708":3,"49709":3,"49710":3,"49711":3,"49712":1,"49713":4,"49714":5,"49715":4,"49716":2,"49717":3,"49718":4,"49719":4,"49720":3,"49721":3,"49722":4,"49723":3,"49724":5,"49725":4,"49726":4,"49727":3,"49728":4,"49729":5,"49730":2,"49731":3,"49732":3,"49733":3,"49734":5,"49735":2,"49736":3,"49737":3,"49738":2,"49739":3,"49740":4,"49741":4,"49742":5,"49743":5,"49744":2,"49745":4,"49746":1,"49747":4,"49748":1,"49749":3,"49750":4,"49751":1,"49752":2,"49753":1,"49754":2,"49755":2,"49756":2,"49757":5,"49758":2,"49759":1,"49760":1,"49761":2,"49762":2,"49763":3,"49764":3,"49765":4,"49766":4,"49767":5,"49768":2,"49769":2,"49770":3,"49771":2,"49772":3,"49773":2,"49774":2,"49775":3,"49776":2,"49777":3,"49778":4,"49779":3,"49780":4,"49781":4,"49782":3,"49783":2,"49784":3,"49785":3,"49786":2,"49787":4,"49788":5,"49789":5,"49790":5,"49791":3,"49792":5,"49793":4,"49794":5,"49795":1,"49796":4,"49797":5,"49798":3,"49799":2,"49800":4,"49801":5,"49802":3,"49803":3,"49804":3,"49805":3,"49806":1,"49807":4,"49808":3,"49809":3,"49810":3,"49811":1,"49812":5,"49813":3,"49814":2,"49815":5,"49816":2,"49817":1,"49818":3,"49819":4,"49820":2,"49821":5,"49822":2,"49823":4,"49824":4,"49825":4,"49826":2,"49827":5,"49828":2,"49829":4,"49830":1,"49831":4,"49832":2,"49833":2,"49834":3,"49835":2,"49836":3,"49837":5,"49838":2,"49839":3,"49840":3,"49841":2,"49842":3,"49843":2,"49844":1,"49845":3,"49846":1,"49847":4,"49848":4,"49849":3,"49850":4,"49851":5,"49852":5,"49853":2,"49854":3,"49855":5,"49856":4,"49857":4,"49858":5,"49859":2,"49860":1,"49861":3,"49862":1,"49863":3,"49864":3,"49865":2,"49866":4,"49867":2,"49868":5,"49869":3,"49870":3,"49871":2,"49872":3,"49873":2,"49874":4,"49875":4,"49876":4,"49877":2,"49878":2,"49879":1,"49880":4,"49881":4,"49882":5,"49883":3,"49884":3,"49885":1,"49886":4,"49887":4,"49888":2,"49889":4,"49890":4,"49891":4,"49892":3,"49893":2,"49894":4,"49895":4,"49896":4,"49897":1,"49898":3,"49899":2,"49900":3,"49901":4,"49902":1,"49903":4,"49904":2,"49905":4,"49906":3,"49907":3,"49908":4,"49909":3,"49910":2,"49911":3,"49912":5,"49913":3,"49914":3,"49915":1,"49916":4,"49917":4,"49918":2,"49919":5,"49920":1,"49921":2,"49922":5,"49923":4,"49924":4,"49925":3,"49926":2,"49927":3,"49928":3,"49929":2,"49930":4,"49931":4,"49932":3,"49933":5,"49934":4,"49935":3,"49936":5,"49937":4,"49938":4,"49939":4,"49940":3,"49941":3,"49942":3,"49943":3,"49944":3,"49945":4,"49946":2,"49947":2,"49948":3,"49949":2,"49950":3,"49951":3,"49952":3,"49953":3,"49954":4,"49955":4,"49956":1,"49957":1,"49958":3,"49959":3,"49960":3,"49961":3,"49962":1,"49963":4,"49964":3,"49965":3,"49966":5,"49967":3,"49968":2,"49969":4,"49970":1,"49971":1,"49972":1,"49973":2,"49974":4,"49975":4,"49976":2,"49977":2,"49978":4,"49979":2,"49980":3,"49981":4,"49982":2,"49983":3,"49984":4,"49985":3,"49986":3,"49987":3,"49988":3,"49989":2,"49990":2,"49991":2,"49992":2,"49993":4,"49994":5,"49995":4,"49996":2,"49997":2,"49998":3,"49999":2,"50000":1,"50001":2,"50002":4,"50003":1,"50004":3,"50005":1,"50006":4,"50007":2,"50008":2,"50009":3,"50010":1,"50011":2,"50012":2,"50013":2,"50014":2,"50015":2,"50016":4,"50017":2,"50018":3,"50019":3,"50020":1,"50021":5,"50022":2,"50023":4,"50024":2,"50025":1,"50026":2,"50027":2,"50028":3,"50029":4,"50030":2,"50031":2,"50032":3,"50033":4,"50034":2,"50035":3,"50036":3,"50037":3,"50038":4,"50039":4,"50040":3,"50041":3,"50042":4,"50043":2,"50044":2,"50045":3,"50046":4,"50047":4,"50048":3,"50049":1,"50050":4,"50051":4,"50052":4,"50053":1,"50054":3,"50055":1,"50056":3,"50057":3,"50058":3,"50059":2,"50060":2,"50061":3,"50062":4,"50063":3,"50064":2,"50065":3,"50066":3,"50067":2,"50068":4,"50069":5,"50070":3,"50071":1,"50072":4,"50073":3,"50074":5,"50075":4,"50076":3,"50077":2,"50078":4,"50079":4,"50080":4,"50081":1,"50082":3,"50083":4,"50084":2,"50085":4,"50086":2,"50087":3,"50088":3,"50089":2,"50090":3,"50091":3,"50092":3,"50093":3,"50094":4,"50095":3,"50096":4,"50097":3,"50098":1,"50099":3,"50100":3,"50101":2,"50102":4,"50103":3,"50104":4,"50105":3,"50106":3,"50107":3,"50108":1,"50109":1,"50110":2,"50111":2,"50112":2,"50113":4,"50114":4,"50115":3,"50116":3,"50117":4,"50118":4,"50119":4,"50120":4,"50121":2,"50122":4,"50123":3,"50124":3,"50125":5,"50126":2,"50127":1,"50128":2,"50129":3,"50130":3,"50131":3,"50132":3,"50133":4,"50134":2,"50135":2,"50136":2,"50137":4,"50138":3,"50139":2,"50140":3,"50141":3,"50142":3,"50143":4,"50144":4,"50145":3,"50146":1,"50147":2,"50148":4,"50149":2,"50150":3,"50151":3,"50152":4,"50153":2,"50154":1,"50155":2,"50156":5,"50157":4,"50158":1,"50159":3,"50160":3,"50161":4,"50162":3,"50163":4,"50164":3,"50165":3,"50166":2,"50167":1,"50168":2,"50169":4,"50170":3,"50171":1,"50172":3,"50173":2,"50174":2,"50175":4,"50176":2,"50177":1,"50178":3,"50179":3,"50180":3,"50181":4,"50182":2,"50183":2,"50184":3,"50185":2,"50186":3,"50187":5,"50188":3,"50189":3,"50190":3,"50191":5,"50192":3,"50193":3,"50194":5,"50195":3,"50196":3,"50197":4,"50198":3,"50199":4,"50200":4,"50201":3,"50202":2,"50203":5,"50204":2,"50205":2,"50206":5,"50207":3,"50208":3,"50209":3,"50210":3,"50211":1,"50212":5,"50213":3,"50214":1,"50215":4,"50216":5,"50217":3,"50218":2,"50219":4,"50220":3,"50221":3,"50222":1,"50223":3,"50224":1,"50225":1,"50226":3,"50227":4,"50228":2,"50229":4,"50230":5,"50231":2,"50232":2,"50233":5,"50234":4,"50235":3,"50236":2,"50237":5,"50238":2,"50239":1,"50240":2,"50241":1,"50242":4,"50243":3,"50244":2,"50245":2,"50246":2,"50247":2,"50248":3,"50249":5,"50250":3,"50251":4,"50252":4,"50253":2,"50254":4,"50255":5,"50256":3,"50257":4,"50258":2,"50259":4,"50260":3,"50261":3,"50262":5,"50263":3,"50264":2,"50265":1,"50266":2,"50267":3,"50268":4,"50269":3,"50270":3,"50271":2,"50272":5,"50273":4,"50274":1,"50275":3,"50276":4,"50277":5,"50278":4,"50279":2,"50280":3,"50281":3,"50282":4,"50283":4,"50284":1,"50285":3,"50286":2,"50287":3,"50288":3,"50289":1,"50290":2,"50291":3,"50292":4,"50293":2,"50294":2,"50295":4,"50296":4,"50297":3,"50298":2,"50299":2,"50300":4,"50301":3,"50302":2,"50303":5,"50304":4,"50305":3,"50306":3,"50307":3,"50308":4,"50309":4,"50310":2,"50311":4,"50312":5,"50313":3,"50314":4,"50315":4,"50316":2,"50317":2,"50318":4,"50319":3,"50320":3,"50321":4,"50322":4,"50323":3,"50324":3,"50325":3,"50326":4,"50327":1,"50328":2,"50329":3,"50330":2,"50331":3,"50332":2,"50333":2,"50334":5,"50335":4,"50336":3,"50337":4,"50338":3,"50339":1,"50340":1,"50341":3,"50342":4,"50343":3,"50344":2,"50345":3,"50346":1,"50347":1,"50348":4,"50349":3,"50350":2,"50351":3,"50352":1,"50353":3,"50354":3,"50355":3,"50356":4,"50357":3,"50358":4,"50359":2,"50360":2,"50361":4,"50362":3,"50363":2,"50364":3,"50365":3,"50366":2,"50367":2,"50368":3,"50369":2,"50370":4,"50371":3,"50372":3,"50373":4,"50374":2,"50375":2,"50376":4,"50377":1,"50378":2,"50379":3,"50380":3,"50381":2,"50382":2,"50383":4,"50384":3,"50385":3,"50386":2,"50387":3,"50388":4,"50389":3,"50390":4,"50391":3,"50392":4,"50393":3,"50394":4,"50395":2,"50396":5,"50397":4,"50398":2,"50399":3,"50400":1,"50401":4,"50402":3,"50403":3,"50404":1,"50405":2,"50406":3,"50407":3,"50408":3,"50409":3,"50410":1,"50411":2,"50412":5,"50413":4,"50414":1,"50415":1,"50416":3,"50417":3,"50418":2,"50419":1,"50420":3,"50421":4,"50422":2,"50423":5,"50424":2,"50425":4,"50426":3,"50427":2,"50428":3,"50429":3,"50430":2,"50431":3,"50432":4,"50433":3,"50434":4,"50435":3,"50436":5,"50437":3,"50438":4,"50439":4,"50440":2,"50441":4,"50442":3,"50443":1,"50444":3,"50445":3,"50446":2,"50447":5,"50448":4,"50449":1,"50450":2,"50451":3,"50452":3,"50453":3,"50454":3,"50455":4,"50456":4,"50457":1,"50458":2,"50459":3,"50460":2,"50461":2,"50462":4,"50463":3,"50464":2,"50465":4,"50466":3,"50467":4,"50468":2,"50469":3,"50470":1,"50471":4,"50472":3,"50473":3,"50474":2,"50475":3,"50476":3,"50477":3,"50478":2,"50479":3,"50480":3,"50481":3,"50482":2,"50483":3,"50484":4,"50485":3,"50486":2,"50487":2,"50488":1,"50489":4,"50490":2,"50491":2,"50492":2,"50493":2,"50494":2,"50495":4,"50496":3,"50497":3,"50498":3,"50499":4,"50500":3,"50501":5,"50502":5,"50503":3,"50504":3,"50505":4,"50506":2,"50507":4,"50508":2,"50509":4,"50510":2,"50511":3,"50512":4,"50513":4,"50514":2,"50515":2,"50516":4,"50517":4,"50518":1,"50519":3,"50520":3,"50521":3,"50522":4,"50523":4,"50524":3,"50525":4,"50526":4,"50527":4,"50528":3,"50529":3,"50530":4,"50531":1,"50532":4,"50533":4,"50534":5,"50535":2,"50536":3,"50537":3,"50538":3,"50539":5,"50540":4,"50541":4,"50542":3,"50543":2,"50544":3,"50545":3,"50546":1,"50547":3,"50548":2,"50549":2,"50550":1,"50551":5,"50552":4,"50553":3,"50554":4,"50555":3,"50556":3,"50557":3,"50558":3,"50559":3,"50560":5,"50561":3,"50562":4,"50563":4,"50564":2,"50565":3,"50566":2,"50567":2,"50568":3,"50569":1,"50570":3,"50571":4,"50572":4,"50573":2,"50574":4,"50575":3,"50576":4,"50577":1,"50578":4,"50579":4,"50580":4,"50581":4,"50582":4,"50583":3,"50584":4,"50585":4,"50586":3,"50587":3,"50588":4,"50589":5,"50590":4,"50591":4,"50592":3,"50593":1,"50594":1,"50595":2,"50596":3,"50597":3,"50598":4,"50599":2,"50600":4,"50601":3,"50602":4,"50603":2,"50604":3,"50605":3,"50606":2,"50607":3,"50608":1,"50609":4,"50610":2,"50611":3,"50612":5,"50613":2,"50614":4,"50615":3,"50616":4,"50617":2,"50618":3,"50619":3,"50620":2,"50621":3,"50622":4,"50623":2,"50624":1,"50625":3,"50626":3,"50627":1,"50628":2,"50629":4,"50630":1,"50631":3,"50632":3,"50633":3,"50634":2,"50635":3,"50636":2,"50637":3,"50638":4,"50639":2,"50640":3,"50641":1,"50642":3,"50643":3,"50644":2,"50645":3,"50646":3,"50647":4,"50648":3,"50649":4,"50650":4,"50651":3,"50652":4,"50653":3,"50654":2,"50655":4,"50656":2,"50657":2,"50658":4,"50659":3,"50660":4,"50661":1,"50662":3,"50663":2,"50664":1,"50665":5,"50666":4,"50667":3,"50668":2,"50669":4,"50670":2,"50671":3,"50672":5,"50673":3,"50674":3,"50675":1,"50676":2,"50677":4,"50678":4,"50679":2,"50680":3,"50681":2,"50682":4,"50683":1,"50684":5,"50685":1,"50686":3,"50687":3,"50688":1,"50689":1,"50690":4,"50691":4,"50692":4,"50693":1,"50694":5,"50695":4,"50696":3,"50697":2,"50698":3,"50699":2,"50700":4,"50701":2,"50702":3,"50703":1,"50704":1,"50705":3,"50706":3,"50707":2,"50708":5,"50709":1,"50710":2,"50711":1,"50712":1,"50713":4,"50714":2,"50715":3,"50716":4,"50717":2,"50718":2,"50719":2,"50720":5,"50721":4,"50722":4,"50723":3,"50724":5,"50725":5,"50726":1,"50727":5,"50728":3,"50729":4,"50730":4,"50731":5,"50732":2,"50733":5,"50734":1,"50735":5,"50736":3,"50737":4,"50738":3,"50739":3,"50740":2,"50741":4,"50742":2,"50743":3,"50744":1,"50745":2,"50746":3,"50747":3,"50748":3,"50749":3,"50750":3,"50751":3,"50752":4,"50753":3,"50754":4,"50755":2,"50756":3,"50757":5,"50758":4,"50759":3,"50760":3,"50761":3,"50762":1,"50763":4,"50764":2,"50765":4,"50766":2,"50767":4,"50768":3,"50769":2,"50770":3,"50771":2,"50772":5,"50773":2,"50774":3,"50775":2,"50776":2,"50777":4,"50778":4,"50779":3,"50780":4,"50781":3,"50782":3,"50783":3,"50784":2,"50785":3,"50786":4,"50787":3,"50788":1,"50789":1,"50790":1,"50791":1,"50792":4,"50793":4,"50794":2,"50795":4,"50796":5,"50797":2,"50798":3,"50799":3,"50800":2,"50801":5,"50802":4,"50803":4,"50804":2,"50805":2,"50806":2,"50807":4,"50808":3,"50809":2,"50810":3,"50811":3,"50812":3,"50813":3,"50814":3,"50815":4,"50816":4,"50817":4,"50818":4,"50819":3,"50820":2,"50821":2,"50822":4,"50823":3,"50824":2,"50825":4,"50826":4,"50827":4,"50828":3,"50829":3,"50830":3,"50831":3,"50832":2,"50833":3,"50834":2,"50835":2,"50836":2,"50837":4,"50838":4,"50839":4,"50840":4,"50841":3,"50842":3,"50843":3,"50844":3,"50845":4,"50846":3,"50847":3,"50848":4,"50849":2,"50850":3,"50851":4,"50852":2,"50853":3,"50854":4,"50855":4,"50856":4,"50857":4,"50858":3,"50859":2,"50860":5,"50861":2,"50862":5,"50863":5,"50864":1,"50865":3,"50866":1,"50867":3,"50868":3,"50869":2,"50870":3,"50871":1,"50872":2,"50873":2,"50874":3,"50875":3,"50876":4,"50877":3,"50878":3,"50879":4,"50880":2,"50881":2,"50882":3,"50883":3,"50884":2,"50885":3,"50886":2,"50887":3,"50888":2,"50889":4,"50890":3,"50891":4,"50892":4,"50893":2,"50894":4,"50895":2,"50896":4,"50897":3,"50898":3,"50899":4,"50900":2,"50901":3,"50902":4,"50903":2,"50904":2,"50905":2,"50906":3,"50907":4,"50908":2,"50909":2,"50910":3,"50911":4,"50912":2,"50913":5,"50914":3,"50915":2,"50916":3,"50917":3,"50918":2,"50919":3,"50920":3,"50921":3,"50922":3,"50923":4,"50924":3,"50925":4,"50926":4,"50927":2,"50928":2,"50929":4,"50930":3,"50931":2,"50932":3,"50933":3,"50934":2,"50935":3,"50936":2,"50937":3,"50938":4,"50939":1,"50940":3,"50941":2,"50942":3,"50943":1,"50944":3,"50945":1,"50946":4,"50947":4,"50948":3,"50949":3,"50950":2,"50951":2,"50952":3,"50953":4,"50954":3,"50955":3,"50956":4,"50957":1,"50958":4,"50959":3,"50960":1,"50961":3,"50962":3,"50963":4,"50964":2,"50965":2,"50966":3,"50967":2,"50968":3,"50969":4,"50970":3,"50971":2,"50972":3,"50973":1,"50974":4,"50975":4,"50976":4,"50977":4,"50978":2,"50979":2,"50980":3,"50981":4,"50982":4,"50983":4,"50984":3,"50985":4,"50986":3,"50987":2,"50988":3,"50989":5,"50990":2,"50991":2,"50992":1,"50993":2,"50994":3,"50995":3,"50996":4,"50997":4,"50998":2,"50999":3,"51000":4,"51001":4,"51002":1,"51003":5,"51004":1,"51005":3,"51006":5,"51007":4,"51008":4,"51009":4,"51010":2,"51011":4,"51012":3,"51013":4,"51014":3,"51015":3,"51016":1,"51017":2,"51018":4,"51019":2,"51020":2,"51021":4,"51022":3,"51023":1,"51024":3,"51025":3,"51026":4,"51027":2,"51028":4,"51029":3,"51030":2,"51031":2,"51032":3,"51033":3,"51034":3,"51035":2,"51036":1,"51037":3,"51038":3,"51039":3,"51040":4,"51041":4,"51042":1,"51043":3,"51044":3,"51045":3,"51046":4,"51047":3,"51048":3,"51049":4,"51050":3,"51051":3,"51052":3,"51053":3,"51054":3,"51055":3,"51056":3,"51057":5,"51058":1,"51059":2,"51060":2,"51061":4,"51062":3,"51063":1,"51064":4,"51065":3,"51066":3,"51067":3,"51068":3,"51069":2,"51070":2,"51071":4,"51072":5,"51073":5,"51074":4,"51075":2,"51076":2,"51077":3,"51078":2,"51079":4,"51080":3,"51081":3,"51082":3,"51083":4,"51084":4,"51085":4,"51086":3,"51087":2,"51088":2,"51089":4,"51090":4,"51091":4,"51092":2,"51093":2,"51094":3,"51095":2,"51096":4,"51097":4,"51098":2,"51099":3,"51100":1,"51101":3,"51102":3,"51103":3,"51104":2,"51105":4,"51106":4,"51107":2,"51108":3,"51109":1,"51110":4,"51111":5,"51112":1,"51113":2,"51114":4,"51115":3,"51116":2,"51117":4,"51118":3,"51119":4,"51120":1,"51121":3,"51122":3,"51123":3,"51124":3,"51125":1,"51126":3,"51127":4,"51128":4,"51129":3,"51130":1,"51131":2,"51132":3,"51133":2,"51134":2,"51135":3,"51136":5,"51137":3,"51138":4,"51139":2,"51140":3,"51141":3,"51142":3,"51143":4,"51144":3,"51145":3,"51146":2,"51147":2,"51148":2,"51149":4,"51150":4,"51151":5,"51152":3,"51153":4,"51154":4,"51155":5,"51156":3,"51157":3,"51158":3,"51159":2,"51160":2,"51161":1,"51162":2,"51163":1,"51164":4,"51165":3,"51166":3,"51167":1,"51168":3,"51169":3,"51170":2,"51171":4,"51172":3,"51173":3,"51174":4,"51175":2,"51176":2,"51177":5,"51178":1,"51179":4,"51180":4,"51181":4,"51182":3,"51183":3,"51184":4,"51185":4,"51186":4,"51187":2,"51188":3,"51189":2,"51190":3,"51191":3,"51192":4,"51193":1,"51194":3,"51195":3,"51196":1,"51197":4,"51198":4,"51199":2,"51200":4,"51201":3,"51202":3,"51203":2,"51204":5,"51205":4,"51206":4,"51207":4,"51208":3,"51209":3,"51210":3,"51211":3,"51212":3,"51213":4,"51214":4,"51215":1,"51216":3,"51217":5,"51218":3,"51219":3,"51220":3,"51221":3,"51222":3,"51223":3,"51224":4,"51225":4,"51226":4,"51227":3,"51228":5,"51229":3,"51230":2,"51231":3,"51232":1,"51233":4,"51234":4,"51235":3,"51236":4,"51237":4,"51238":3,"51239":3,"51240":2,"51241":2,"51242":4,"51243":3,"51244":4,"51245":1,"51246":3,"51247":3,"51248":4,"51249":4,"51250":2,"51251":3,"51252":4,"51253":3,"51254":2,"51255":4,"51256":3,"51257":3,"51258":3,"51259":2,"51260":4,"51261":3,"51262":1,"51263":3,"51264":2,"51265":4,"51266":2,"51267":4,"51268":3,"51269":2,"51270":1,"51271":4,"51272":1,"51273":3,"51274":2,"51275":3,"51276":2,"51277":3,"51278":4,"51279":2,"51280":2,"51281":1,"51282":3,"51283":2,"51284":4,"51285":5,"51286":5,"51287":3,"51288":3,"51289":3,"51290":3,"51291":3,"51292":2,"51293":3,"51294":1,"51295":2,"51296":4,"51297":5,"51298":4,"51299":4,"51300":4,"51301":4,"51302":1,"51303":4,"51304":2,"51305":3,"51306":5,"51307":5,"51308":1,"51309":3,"51310":4,"51311":1,"51312":4,"51313":3,"51314":1,"51315":3,"51316":5,"51317":1,"51318":5,"51319":5,"51320":3,"51321":4,"51322":5,"51323":2,"51324":4,"51325":1,"51326":4,"51327":2,"51328":4,"51329":4,"51330":5,"51331":2,"51332":3,"51333":2,"51334":3,"51335":4,"51336":3,"51337":2,"51338":3,"51339":4,"51340":3,"51341":4,"51342":2,"51343":3,"51344":5,"51345":1,"51346":4,"51347":2,"51348":4,"51349":4,"51350":2,"51351":2,"51352":4,"51353":4,"51354":3,"51355":5,"51356":2,"51357":4,"51358":3,"51359":2,"51360":3,"51361":3,"51362":2,"51363":2,"51364":3,"51365":4,"51366":2,"51367":3,"51368":3,"51369":1,"51370":2,"51371":4,"51372":4,"51373":4,"51374":2,"51375":1,"51376":3,"51377":2,"51378":3,"51379":1,"51380":3,"51381":4,"51382":5,"51383":3,"51384":4,"51385":2,"51386":4,"51387":1,"51388":3,"51389":3,"51390":4,"51391":1,"51392":5,"51393":1,"51394":4,"51395":4,"51396":3,"51397":3,"51398":1,"51399":2,"51400":5,"51401":5,"51402":3,"51403":1,"51404":2,"51405":2,"51406":1,"51407":5,"51408":1,"51409":3,"51410":2,"51411":5,"51412":2,"51413":3,"51414":2,"51415":3,"51416":5,"51417":3,"51418":3,"51419":2,"51420":2,"51421":4,"51422":2,"51423":4,"51424":3,"51425":1,"51426":5,"51427":4,"51428":3,"51429":1,"51430":4,"51431":3,"51432":1,"51433":3,"51434":3,"51435":4,"51436":4,"51437":4,"51438":3,"51439":2,"51440":3,"51441":3,"51442":3,"51443":2,"51444":3,"51445":4,"51446":3,"51447":2,"51448":3,"51449":2,"51450":4,"51451":2,"51452":3,"51453":3,"51454":4,"51455":5,"51456":1,"51457":5,"51458":1,"51459":3,"51460":3,"51461":3,"51462":5,"51463":1,"51464":4,"51465":5,"51466":3,"51467":5,"51468":1,"51469":4,"51470":1,"51471":3,"51472":2,"51473":4,"51474":3,"51475":1,"51476":5,"51477":4,"51478":4,"51479":3,"51480":2,"51481":1,"51482":3,"51483":3,"51484":3,"51485":3,"51486":4,"51487":3,"51488":3,"51489":3,"51490":3,"51491":4,"51492":4,"51493":2,"51494":3,"51495":3,"51496":1,"51497":4,"51498":4,"51499":2,"51500":4,"51501":4,"51502":4,"51503":1,"51504":3,"51505":4,"51506":3,"51507":3,"51508":2,"51509":3,"51510":3,"51511":2,"51512":4,"51513":2,"51514":4,"51515":4,"51516":2,"51517":3,"51518":4,"51519":3,"51520":4,"51521":4,"51522":4,"51523":1,"51524":2,"51525":4,"51526":5,"51527":2,"51528":3,"51529":4,"51530":1,"51531":4,"51532":4,"51533":2,"51534":4,"51535":3,"51536":3,"51537":4,"51538":2,"51539":3,"51540":1,"51541":1,"51542":3,"51543":3,"51544":2,"51545":3,"51546":5,"51547":2,"51548":2,"51549":5,"51550":3,"51551":1,"51552":3,"51553":3,"51554":4,"51555":4,"51556":5,"51557":2,"51558":3,"51559":4,"51560":4,"51561":4,"51562":3,"51563":3,"51564":4,"51565":3,"51566":2,"51567":2,"51568":5,"51569":3,"51570":2,"51571":5,"51572":4,"51573":4,"51574":5,"51575":4,"51576":4,"51577":1,"51578":1,"51579":4,"51580":3,"51581":1,"51582":3,"51583":3,"51584":4,"51585":3,"51586":3,"51587":4,"51588":4,"51589":4,"51590":4,"51591":2,"51592":3,"51593":3,"51594":2,"51595":1,"51596":1,"51597":2,"51598":1,"51599":1,"51600":2,"51601":2,"51602":3,"51603":4,"51604":3,"51605":3,"51606":3,"51607":1,"51608":3,"51609":3,"51610":2,"51611":4,"51612":3,"51613":3,"51614":2,"51615":1,"51616":3,"51617":3,"51618":4,"51619":3,"51620":3,"51621":3,"51622":2,"51623":1,"51624":4,"51625":3,"51626":2,"51627":4,"51628":3,"51629":5,"51630":2,"51631":4,"51632":2,"51633":1,"51634":4,"51635":3,"51636":3,"51637":1,"51638":3,"51639":3,"51640":4,"51641":3,"51642":2,"51643":4,"51644":1,"51645":1,"51646":4,"51647":2,"51648":4,"51649":5,"51650":4,"51651":2,"51652":4,"51653":3,"51654":3,"51655":4,"51656":4,"51657":2,"51658":1,"51659":1,"51660":3,"51661":5,"51662":4,"51663":3,"51664":4,"51665":5,"51666":5,"51667":2,"51668":5,"51669":3,"51670":2,"51671":3,"51672":1,"51673":1,"51674":5,"51675":4,"51676":3,"51677":3,"51678":3,"51679":5,"51680":4,"51681":1,"51682":5,"51683":2,"51684":4,"51685":2,"51686":2,"51687":3,"51688":4,"51689":3,"51690":2,"51691":5,"51692":1,"51693":3,"51694":3,"51695":4,"51696":3,"51697":4,"51698":5,"51699":4,"51700":3,"51701":3,"51702":3,"51703":1,"51704":3,"51705":4,"51706":3,"51707":2,"51708":1,"51709":3,"51710":4,"51711":4,"51712":4,"51713":3,"51714":2,"51715":1,"51716":1,"51717":3,"51718":4,"51719":2,"51720":3,"51721":4,"51722":4,"51723":2,"51724":2,"51725":4,"51726":2,"51727":4,"51728":2,"51729":2,"51730":3,"51731":4,"51732":2,"51733":5,"51734":1,"51735":5,"51736":1,"51737":2,"51738":4,"51739":2,"51740":2,"51741":4,"51742":4,"51743":3,"51744":2,"51745":3,"51746":3,"51747":3,"51748":3,"51749":1,"51750":2,"51751":3,"51752":1,"51753":3,"51754":2,"51755":1,"51756":3,"51757":4,"51758":4,"51759":1,"51760":3,"51761":2,"51762":3,"51763":3,"51764":4,"51765":3,"51766":3,"51767":5,"51768":4,"51769":3,"51770":3,"51771":4,"51772":4,"51773":4,"51774":2,"51775":2,"51776":2,"51777":4,"51778":4,"51779":3,"51780":3,"51781":3,"51782":3,"51783":3,"51784":4,"51785":3,"51786":3,"51787":4,"51788":4,"51789":1,"51790":4,"51791":3,"51792":3,"51793":4,"51794":3,"51795":3,"51796":2,"51797":3,"51798":4,"51799":4,"51800":3,"51801":2,"51802":2,"51803":1,"51804":2,"51805":4,"51806":1,"51807":4,"51808":3,"51809":4,"51810":3,"51811":4,"51812":2,"51813":4,"51814":5,"51815":2,"51816":2,"51817":3,"51818":3,"51819":3,"51820":3,"51821":2,"51822":5,"51823":2,"51824":2,"51825":5,"51826":3,"51827":4,"51828":4,"51829":2,"51830":3,"51831":3,"51832":3,"51833":2,"51834":4,"51835":3,"51836":3,"51837":2,"51838":4,"51839":2,"51840":4,"51841":3,"51842":3,"51843":4,"51844":4,"51845":2,"51846":1,"51847":3,"51848":3,"51849":2,"51850":3,"51851":3,"51852":3,"51853":1,"51854":3,"51855":5,"51856":2,"51857":5,"51858":3,"51859":3,"51860":3,"51861":3,"51862":3,"51863":1,"51864":2,"51865":3,"51866":5,"51867":4,"51868":3,"51869":3,"51870":2,"51871":5,"51872":3,"51873":5,"51874":4,"51875":4,"51876":4,"51877":4,"51878":2,"51879":3,"51880":4,"51881":5,"51882":3,"51883":3,"51884":4,"51885":3,"51886":4,"51887":5,"51888":4,"51889":2,"51890":3,"51891":3,"51892":2,"51893":2,"51894":1,"51895":4,"51896":1,"51897":3,"51898":1,"51899":3,"51900":1,"51901":4,"51902":2,"51903":2,"51904":2,"51905":2,"51906":2,"51907":4,"51908":3,"51909":4,"51910":4,"51911":2,"51912":3,"51913":5,"51914":4,"51915":3,"51916":5,"51917":1,"51918":2,"51919":4,"51920":2,"51921":2,"51922":1,"51923":3,"51924":4,"51925":3,"51926":4,"51927":3,"51928":1,"51929":3,"51930":2,"51931":4,"51932":3,"51933":5,"51934":3,"51935":2,"51936":2,"51937":2,"51938":4,"51939":1,"51940":4,"51941":1,"51942":5,"51943":3,"51944":4,"51945":1,"51946":5,"51947":3,"51948":3,"51949":3,"51950":3,"51951":1,"51952":1,"51953":3,"51954":4,"51955":2,"51956":3,"51957":3,"51958":4,"51959":3,"51960":3,"51961":4,"51962":2,"51963":3,"51964":4,"51965":2,"51966":2,"51967":2,"51968":1,"51969":3,"51970":1,"51971":4,"51972":4,"51973":4,"51974":4,"51975":3,"51976":4,"51977":5,"51978":3,"51979":2,"51980":2,"51981":4,"51982":3,"51983":2,"51984":2,"51985":4,"51986":4,"51987":1,"51988":3,"51989":2,"51990":4,"51991":1,"51992":2,"51993":2,"51994":3,"51995":3,"51996":3,"51997":1,"51998":3,"51999":3,"52000":4,"52001":4,"52002":5,"52003":4,"52004":1,"52005":4,"52006":2,"52007":2,"52008":5,"52009":4,"52010":4,"52011":2,"52012":3,"52013":3,"52014":3,"52015":2,"52016":4,"52017":2,"52018":4,"52019":4,"52020":3,"52021":4,"52022":2,"52023":4,"52024":5,"52025":3,"52026":4,"52027":4,"52028":4,"52029":4,"52030":2,"52031":1,"52032":3,"52033":3,"52034":4,"52035":3,"52036":4,"52037":4,"52038":3,"52039":4,"52040":4,"52041":3,"52042":3,"52043":3,"52044":4,"52045":3,"52046":2,"52047":3,"52048":3,"52049":3,"52050":4,"52051":3,"52052":2,"52053":3,"52054":4,"52055":1,"52056":2,"52057":2,"52058":5,"52059":4,"52060":2,"52061":4,"52062":5,"52063":3,"52064":2,"52065":2,"52066":1,"52067":3,"52068":4,"52069":1,"52070":4,"52071":1,"52072":2,"52073":4,"52074":2,"52075":1,"52076":2,"52077":4,"52078":3,"52079":3,"52080":3,"52081":3,"52082":2,"52083":2,"52084":4,"52085":3,"52086":3,"52087":3,"52088":4,"52089":3,"52090":3,"52091":1,"52092":3,"52093":3,"52094":2,"52095":4,"52096":4,"52097":1,"52098":2,"52099":5,"52100":2,"52101":3,"52102":3,"52103":3,"52104":2,"52105":3,"52106":4,"52107":2,"52108":2,"52109":5,"52110":4,"52111":5,"52112":3,"52113":2,"52114":4,"52115":4,"52116":4,"52117":3,"52118":3,"52119":3,"52120":5,"52121":2,"52122":1,"52123":2,"52124":4,"52125":4,"52126":4,"52127":3,"52128":4,"52129":3,"52130":5,"52131":4,"52132":2,"52133":4,"52134":3,"52135":3,"52136":3,"52137":3,"52138":1,"52139":4,"52140":2,"52141":3,"52142":3,"52143":1,"52144":2,"52145":1,"52146":4,"52147":4,"52148":3,"52149":3,"52150":3,"52151":5,"52152":4,"52153":4,"52154":4,"52155":3,"52156":5,"52157":3,"52158":3,"52159":2,"52160":4,"52161":2,"52162":2,"52163":4,"52164":2,"52165":3,"52166":4,"52167":2,"52168":3,"52169":4,"52170":4,"52171":1,"52172":2,"52173":5,"52174":4,"52175":5,"52176":3,"52177":2,"52178":2,"52179":3,"52180":5,"52181":3,"52182":4,"52183":2,"52184":2,"52185":2,"52186":4,"52187":4,"52188":3,"52189":3,"52190":2,"52191":3,"52192":1,"52193":4,"52194":1,"52195":3,"52196":2,"52197":1,"52198":2,"52199":4,"52200":1,"52201":2,"52202":4,"52203":3,"52204":3,"52205":3,"52206":4,"52207":2,"52208":3,"52209":1,"52210":3,"52211":4,"52212":4,"52213":4,"52214":3,"52215":4,"52216":4,"52217":3,"52218":4,"52219":2,"52220":3,"52221":2,"52222":3,"52223":1,"52224":4,"52225":2,"52226":3,"52227":2,"52228":3,"52229":2,"52230":4,"52231":4,"52232":4,"52233":2,"52234":3,"52235":3,"52236":3,"52237":5,"52238":2,"52239":4,"52240":2,"52241":3,"52242":3,"52243":2,"52244":2,"52245":3,"52246":3,"52247":4,"52248":3,"52249":5,"52250":4,"52251":4,"52252":4,"52253":3,"52254":3,"52255":4,"52256":3,"52257":2,"52258":4,"52259":2,"52260":3,"52261":3,"52262":2,"52263":2,"52264":2,"52265":4,"52266":5,"52267":2,"52268":4,"52269":4,"52270":2,"52271":3,"52272":4,"52273":4,"52274":2,"52275":2,"52276":4,"52277":1,"52278":4,"52279":2,"52280":3,"52281":2,"52282":4,"52283":5,"52284":1,"52285":3,"52286":4,"52287":4,"52288":5,"52289":4,"52290":3,"52291":3,"52292":3,"52293":4,"52294":3,"52295":5,"52296":5,"52297":4,"52298":4,"52299":3,"52300":5,"52301":3,"52302":4,"52303":3,"52304":3,"52305":3,"52306":2,"52307":4,"52308":4,"52309":1,"52310":2,"52311":2,"52312":5,"52313":3,"52314":5,"52315":2,"52316":1,"52317":4,"52318":4,"52319":2,"52320":2,"52321":2,"52322":5,"52323":2,"52324":4,"52325":1,"52326":3,"52327":2,"52328":2,"52329":2,"52330":2,"52331":4,"52332":3,"52333":2,"52334":5,"52335":4,"52336":4,"52337":3,"52338":2,"52339":3,"52340":4,"52341":2,"52342":4,"52343":3,"52344":4,"52345":3,"52346":5,"52347":4,"52348":3,"52349":3,"52350":2,"52351":3,"52352":3,"52353":3,"52354":5,"52355":4,"52356":2,"52357":3,"52358":1,"52359":2,"52360":2,"52361":3,"52362":3,"52363":3,"52364":4,"52365":3,"52366":3,"52367":4,"52368":2,"52369":3,"52370":3,"52371":3,"52372":2,"52373":3,"52374":3,"52375":4,"52376":3,"52377":3,"52378":5,"52379":4,"52380":3,"52381":3,"52382":3,"52383":2,"52384":4,"52385":3,"52386":3,"52387":2,"52388":4,"52389":2,"52390":4,"52391":4,"52392":3,"52393":1,"52394":3,"52395":1,"52396":2,"52397":3,"52398":4,"52399":3,"52400":4,"52401":5,"52402":3,"52403":2,"52404":3,"52405":5,"52406":1,"52407":3,"52408":4,"52409":3,"52410":1,"52411":3,"52412":3,"52413":3,"52414":1,"52415":3,"52416":4,"52417":3,"52418":4,"52419":3,"52420":5,"52421":2,"52422":3,"52423":4,"52424":4,"52425":1,"52426":4,"52427":4,"52428":1,"52429":3,"52430":3,"52431":1,"52432":3,"52433":3,"52434":3,"52435":3,"52436":4,"52437":5,"52438":3,"52439":3,"52440":4,"52441":3,"52442":3,"52443":3,"52444":3,"52445":4,"52446":4,"52447":4,"52448":4,"52449":1,"52450":2,"52451":1,"52452":4,"52453":5,"52454":3,"52455":1,"52456":4,"52457":2,"52458":3,"52459":4,"52460":3,"52461":2,"52462":1,"52463":3,"52464":4,"52465":2,"52466":4,"52467":3,"52468":1,"52469":2,"52470":4,"52471":2,"52472":3,"52473":3,"52474":2,"52475":1,"52476":3,"52477":2,"52478":1,"52479":3,"52480":3,"52481":4,"52482":3,"52483":4,"52484":2,"52485":3,"52486":3,"52487":3,"52488":4,"52489":3,"52490":3,"52491":1,"52492":2,"52493":1,"52494":5,"52495":4,"52496":5,"52497":2,"52498":4,"52499":3,"52500":3,"52501":4,"52502":3,"52503":4,"52504":2,"52505":5,"52506":2,"52507":2,"52508":2,"52509":2,"52510":2,"52511":5,"52512":3,"52513":1,"52514":4,"52515":4,"52516":5,"52517":2,"52518":3,"52519":3,"52520":3,"52521":2,"52522":5,"52523":4,"52524":2,"52525":2,"52526":3,"52527":3,"52528":4,"52529":3,"52530":5,"52531":3,"52532":3,"52533":3,"52534":2,"52535":5,"52536":2,"52537":2,"52538":4,"52539":3,"52540":3,"52541":2,"52542":1,"52543":4,"52544":4,"52545":3,"52546":2,"52547":4,"52548":5,"52549":4,"52550":4,"52551":1,"52552":3,"52553":3,"52554":2,"52555":4,"52556":2,"52557":3,"52558":3,"52559":1,"52560":3,"52561":2,"52562":1,"52563":4,"52564":4,"52565":4,"52566":2,"52567":3,"52568":3,"52569":3,"52570":2,"52571":5,"52572":2,"52573":4,"52574":4,"52575":2,"52576":3,"52577":4,"52578":1,"52579":3,"52580":3,"52581":4,"52582":2,"52583":4,"52584":3,"52585":3,"52586":4,"52587":4,"52588":3,"52589":2,"52590":3,"52591":4,"52592":2,"52593":4,"52594":5,"52595":5,"52596":4,"52597":2,"52598":4,"52599":2,"52600":2,"52601":3,"52602":3,"52603":4,"52604":3,"52605":3,"52606":4,"52607":1,"52608":3,"52609":5,"52610":5,"52611":3,"52612":4,"52613":4,"52614":5,"52615":3,"52616":3,"52617":3,"52618":1,"52619":3,"52620":2,"52621":4,"52622":3,"52623":4,"52624":4,"52625":3,"52626":4,"52627":2,"52628":2,"52629":2,"52630":3,"52631":2,"52632":2,"52633":1,"52634":3,"52635":3,"52636":3,"52637":2,"52638":3,"52639":5,"52640":4,"52641":4,"52642":3,"52643":3,"52644":4,"52645":3,"52646":1,"52647":2,"52648":4,"52649":3,"52650":2,"52651":4,"52652":2,"52653":4,"52654":4,"52655":4,"52656":3,"52657":1,"52658":3,"52659":5,"52660":2,"52661":3,"52662":3,"52663":2,"52664":1,"52665":2,"52666":2,"52667":2,"52668":3,"52669":4,"52670":3,"52671":3,"52672":3,"52673":3,"52674":4,"52675":4,"52676":4,"52677":1,"52678":3,"52679":3,"52680":2,"52681":4,"52682":3,"52683":4,"52684":4,"52685":5,"52686":2,"52687":3,"52688":4,"52689":3,"52690":3,"52691":3,"52692":1,"52693":1,"52694":3,"52695":3,"52696":3,"52697":4,"52698":4,"52699":4,"52700":3,"52701":4,"52702":4,"52703":3,"52704":3,"52705":2,"52706":3,"52707":4,"52708":4,"52709":3,"52710":1,"52711":2,"52712":3,"52713":3,"52714":4,"52715":5,"52716":5,"52717":1,"52718":3,"52719":2,"52720":3,"52721":4,"52722":2,"52723":3,"52724":3,"52725":4,"52726":3,"52727":3,"52728":2,"52729":3,"52730":3,"52731":3,"52732":2,"52733":3,"52734":3,"52735":3,"52736":2,"52737":2,"52738":3,"52739":3,"52740":1,"52741":3,"52742":3,"52743":4,"52744":1,"52745":3,"52746":4,"52747":3,"52748":4,"52749":1,"52750":3,"52751":4,"52752":4,"52753":3,"52754":2,"52755":3,"52756":3,"52757":3,"52758":2,"52759":1,"52760":3,"52761":3,"52762":1,"52763":4,"52764":3,"52765":2,"52766":3,"52767":2,"52768":2,"52769":4,"52770":4,"52771":1,"52772":5,"52773":4,"52774":2,"52775":4,"52776":2,"52777":4,"52778":1,"52779":1,"52780":3,"52781":3,"52782":1,"52783":1,"52784":3,"52785":3,"52786":3,"52787":3,"52788":2,"52789":3,"52790":5,"52791":3,"52792":4,"52793":5,"52794":3,"52795":3,"52796":3,"52797":3,"52798":3,"52799":4,"52800":2,"52801":4,"52802":4,"52803":5,"52804":1,"52805":3,"52806":2,"52807":3,"52808":4,"52809":4,"52810":2,"52811":2,"52812":4,"52813":4,"52814":1,"52815":4,"52816":4,"52817":3,"52818":5,"52819":3,"52820":1,"52821":3,"52822":1,"52823":4,"52824":1,"52825":3,"52826":3,"52827":3,"52828":2,"52829":3,"52830":1,"52831":2,"52832":2,"52833":4,"52834":3,"52835":5,"52836":3,"52837":4,"52838":2,"52839":5,"52840":5,"52841":2,"52842":4,"52843":4,"52844":3,"52845":1,"52846":5,"52847":1,"52848":4,"52849":1,"52850":4,"52851":3,"52852":3,"52853":3,"52854":2,"52855":3,"52856":3,"52857":1,"52858":1,"52859":2,"52860":2,"52861":3,"52862":3,"52863":3,"52864":4,"52865":4,"52866":3,"52867":1,"52868":4,"52869":4,"52870":1,"52871":1,"52872":2,"52873":5,"52874":3,"52875":2,"52876":5,"52877":2,"52878":4,"52879":2,"52880":5,"52881":2,"52882":3,"52883":1,"52884":1,"52885":4,"52886":3,"52887":5,"52888":3,"52889":4,"52890":1,"52891":2,"52892":5,"52893":4,"52894":4,"52895":4,"52896":3,"52897":3,"52898":4,"52899":4,"52900":3,"52901":3,"52902":1,"52903":3,"52904":4,"52905":2,"52906":4,"52907":4,"52908":4,"52909":3,"52910":2,"52911":4,"52912":4,"52913":4,"52914":4,"52915":3,"52916":3,"52917":3,"52918":4,"52919":3,"52920":3,"52921":2,"52922":4,"52923":2,"52924":4,"52925":3,"52926":4,"52927":3,"52928":4,"52929":2,"52930":1,"52931":3,"52932":2,"52933":2,"52934":4,"52935":2,"52936":1,"52937":2,"52938":3,"52939":3,"52940":2,"52941":2,"52942":2,"52943":4,"52944":5,"52945":3,"52946":1,"52947":4,"52948":3,"52949":3,"52950":4,"52951":5,"52952":2,"52953":1,"52954":3,"52955":3,"52956":3,"52957":4,"52958":5,"52959":3,"52960":4,"52961":2,"52962":3,"52963":4,"52964":4,"52965":3,"52966":3,"52967":3,"52968":2,"52969":4,"52970":1,"52971":1,"52972":3,"52973":4,"52974":5,"52975":1,"52976":2,"52977":3,"52978":4,"52979":5,"52980":4,"52981":4,"52982":2,"52983":2,"52984":3,"52985":2,"52986":1,"52987":3,"52988":3,"52989":5,"52990":2,"52991":3,"52992":3,"52993":3,"52994":3,"52995":1,"52996":3,"52997":5,"52998":5,"52999":2,"53000":4,"53001":1,"53002":5,"53003":5,"53004":4,"53005":4,"53006":3,"53007":3,"53008":3,"53009":3,"53010":3,"53011":3,"53012":3,"53013":4,"53014":4,"53015":2,"53016":4,"53017":2,"53018":2,"53019":2,"53020":3,"53021":4,"53022":3,"53023":4,"53024":4,"53025":3,"53026":5,"53027":5,"53028":3,"53029":5,"53030":5,"53031":3,"53032":2,"53033":1,"53034":2,"53035":1,"53036":4,"53037":4,"53038":3,"53039":3,"53040":2,"53041":3,"53042":2,"53043":2,"53044":3,"53045":4,"53046":3,"53047":4,"53048":4,"53049":2,"53050":4,"53051":3,"53052":2,"53053":4,"53054":1,"53055":2,"53056":3,"53057":4,"53058":2,"53059":3,"53060":2,"53061":5,"53062":4,"53063":2,"53064":2,"53065":1,"53066":2,"53067":4,"53068":4,"53069":5,"53070":3,"53071":4,"53072":3,"53073":5,"53074":4,"53075":3,"53076":3,"53077":3,"53078":2,"53079":4,"53080":2,"53081":4,"53082":3,"53083":3,"53084":3,"53085":4,"53086":3,"53087":2,"53088":2,"53089":4,"53090":2,"53091":4,"53092":3,"53093":3,"53094":2,"53095":2,"53096":3,"53097":4,"53098":3,"53099":3,"53100":1,"53101":3,"53102":4,"53103":1,"53104":3,"53105":2,"53106":3,"53107":4,"53108":2,"53109":4,"53110":3,"53111":3,"53112":1,"53113":4,"53114":4,"53115":5,"53116":4,"53117":4,"53118":2,"53119":3,"53120":1,"53121":1,"53122":3,"53123":5,"53124":4,"53125":2,"53126":3,"53127":3,"53128":4,"53129":2,"53130":5,"53131":3,"53132":2,"53133":4,"53134":3,"53135":3,"53136":1,"53137":3,"53138":2,"53139":5,"53140":5,"53141":4,"53142":3,"53143":1,"53144":5,"53145":3,"53146":3,"53147":1,"53148":2,"53149":3,"53150":5,"53151":5,"53152":3,"53153":1,"53154":5,"53155":2,"53156":4,"53157":1,"53158":1,"53159":1,"53160":4,"53161":4,"53162":4,"53163":4,"53164":4,"53165":2,"53166":4,"53167":4,"53168":3,"53169":3,"53170":2,"53171":1,"53172":5,"53173":2,"53174":4,"53175":3,"53176":4,"53177":3,"53178":2,"53179":4,"53180":1,"53181":4,"53182":4,"53183":4,"53184":2,"53185":2,"53186":2,"53187":3,"53188":3,"53189":3,"53190":2,"53191":2,"53192":3,"53193":1,"53194":2,"53195":4,"53196":4,"53197":4,"53198":3,"53199":3,"53200":2,"53201":4,"53202":3,"53203":2,"53204":4,"53205":4,"53206":4,"53207":2,"53208":4,"53209":4,"53210":2,"53211":3,"53212":3,"53213":2,"53214":1,"53215":3,"53216":1,"53217":3,"53218":4,"53219":5,"53220":2,"53221":4,"53222":3,"53223":4,"53224":3,"53225":3,"53226":1,"53227":5,"53228":3,"53229":4,"53230":2,"53231":3,"53232":4,"53233":2,"53234":4,"53235":3,"53236":4,"53237":3,"53238":4,"53239":5,"53240":2,"53241":4,"53242":3,"53243":2,"53244":3,"53245":4,"53246":1,"53247":3,"53248":3,"53249":4,"53250":5,"53251":3,"53252":4,"53253":3,"53254":5,"53255":3,"53256":4,"53257":4,"53258":4,"53259":3,"53260":3,"53261":2,"53262":4,"53263":5,"53264":3,"53265":5,"53266":2,"53267":3,"53268":4,"53269":5,"53270":4,"53271":4,"53272":1,"53273":5,"53274":2,"53275":2,"53276":4,"53277":3,"53278":3,"53279":5,"53280":3,"53281":4,"53282":3,"53283":4,"53284":3,"53285":4,"53286":3,"53287":3,"53288":1,"53289":3,"53290":3,"53291":4,"53292":3,"53293":2,"53294":3,"53295":5,"53296":2,"53297":2,"53298":4,"53299":5,"53300":1,"53301":4,"53302":2,"53303":2,"53304":2,"53305":3,"53306":5,"53307":2,"53308":2,"53309":5,"53310":5,"53311":2,"53312":3,"53313":4,"53314":2,"53315":1,"53316":3,"53317":3,"53318":3,"53319":3,"53320":2,"53321":3,"53322":3,"53323":3,"53324":2,"53325":3,"53326":3,"53327":2,"53328":1,"53329":2,"53330":3,"53331":2,"53332":3,"53333":3,"53334":4,"53335":2,"53336":3,"53337":4,"53338":2,"53339":2,"53340":3,"53341":1,"53342":4,"53343":2,"53344":3,"53345":4,"53346":4,"53347":4,"53348":4,"53349":3,"53350":3,"53351":3,"53352":3,"53353":5,"53354":3,"53355":2,"53356":3,"53357":3,"53358":3,"53359":1,"53360":2,"53361":5,"53362":2,"53363":5,"53364":3,"53365":4,"53366":3,"53367":4,"53368":2,"53369":4,"53370":1,"53371":1,"53372":1,"53373":3,"53374":4,"53375":3,"53376":4,"53377":3,"53378":4,"53379":3,"53380":1,"53381":2,"53382":2,"53383":2,"53384":3,"53385":3,"53386":2,"53387":2,"53388":3,"53389":2,"53390":2,"53391":3,"53392":3,"53393":4,"53394":3,"53395":4,"53396":3,"53397":4,"53398":4,"53399":3,"53400":2,"53401":3,"53402":2,"53403":3,"53404":2,"53405":2,"53406":4,"53407":3,"53408":3,"53409":5,"53410":4,"53411":2,"53412":2,"53413":2,"53414":2,"53415":3,"53416":2,"53417":3,"53418":2,"53419":5,"53420":1,"53421":2,"53422":1,"53423":3,"53424":4,"53425":2,"53426":4,"53427":4,"53428":1,"53429":2,"53430":3,"53431":3,"53432":3,"53433":4,"53434":3,"53435":3,"53436":4,"53437":2,"53438":2,"53439":3,"53440":3,"53441":2,"53442":3,"53443":3,"53444":4,"53445":4,"53446":2,"53447":3,"53448":3,"53449":5,"53450":3,"53451":3,"53452":3,"53453":2,"53454":5,"53455":4,"53456":2,"53457":3,"53458":5,"53459":3,"53460":3,"53461":3,"53462":4,"53463":3,"53464":2,"53465":1,"53466":4,"53467":3,"53468":3,"53469":2,"53470":3,"53471":4,"53472":1,"53473":3,"53474":4,"53475":4,"53476":4,"53477":2,"53478":3,"53479":3,"53480":1,"53481":3,"53482":4,"53483":2,"53484":2,"53485":1,"53486":4,"53487":4,"53488":2,"53489":5,"53490":4,"53491":5,"53492":3,"53493":2,"53494":3,"53495":3,"53496":3,"53497":4,"53498":2,"53499":3,"53500":2,"53501":2,"53502":2,"53503":2,"53504":2,"53505":3,"53506":3,"53507":2,"53508":4,"53509":1,"53510":2,"53511":3,"53512":1,"53513":4,"53514":3,"53515":1,"53516":2,"53517":2,"53518":3,"53519":1,"53520":1,"53521":3,"53522":3,"53523":5,"53524":2,"53525":3,"53526":3,"53527":2,"53528":2,"53529":3,"53530":4,"53531":4,"53532":5,"53533":4,"53534":3,"53535":3,"53536":2,"53537":2,"53538":2,"53539":4,"53540":3,"53541":3,"53542":1,"53543":3,"53544":5,"53545":3,"53546":3,"53547":3,"53548":4,"53549":3,"53550":3,"53551":1,"53552":2,"53553":4,"53554":3,"53555":2,"53556":4,"53557":2,"53558":3,"53559":4,"53560":3,"53561":3,"53562":2,"53563":3,"53564":2,"53565":3,"53566":3,"53567":4,"53568":1,"53569":5,"53570":1,"53571":2,"53572":2,"53573":2,"53574":3,"53575":2,"53576":2,"53577":5,"53578":1,"53579":3,"53580":5,"53581":5,"53582":3,"53583":2,"53584":3,"53585":1,"53586":1,"53587":3,"53588":2,"53589":4,"53590":3,"53591":3,"53592":4,"53593":3,"53594":4,"53595":2,"53596":4,"53597":3,"53598":4,"53599":3,"53600":3,"53601":4,"53602":3,"53603":5,"53604":2,"53605":3,"53606":4,"53607":4,"53608":3,"53609":2,"53610":4,"53611":4,"53612":4,"53613":3,"53614":2,"53615":3,"53616":4,"53617":3,"53618":1,"53619":3,"53620":2,"53621":3,"53622":3,"53623":4,"53624":1,"53625":2,"53626":3,"53627":2,"53628":5,"53629":4,"53630":2,"53631":3,"53632":5,"53633":4,"53634":2,"53635":1,"53636":4,"53637":3,"53638":3,"53639":4,"53640":5,"53641":3,"53642":3,"53643":5,"53644":4,"53645":3,"53646":2,"53647":2,"53648":1,"53649":2,"53650":5,"53651":2,"53652":4,"53653":2,"53654":4,"53655":3,"53656":1,"53657":5,"53658":2,"53659":5,"53660":3,"53661":4,"53662":3,"53663":3,"53664":3,"53665":1,"53666":4,"53667":4,"53668":4,"53669":3,"53670":4,"53671":3,"53672":4,"53673":4,"53674":3,"53675":4,"53676":2,"53677":4,"53678":1,"53679":4,"53680":2,"53681":3,"53682":2,"53683":2,"53684":2,"53685":3,"53686":3,"53687":5,"53688":3,"53689":4,"53690":5,"53691":3,"53692":2,"53693":5,"53694":2,"53695":2,"53696":4,"53697":3,"53698":2,"53699":1,"53700":4,"53701":3,"53702":4,"53703":5,"53704":3,"53705":3,"53706":2,"53707":4,"53708":5,"53709":4,"53710":2,"53711":2,"53712":2,"53713":4,"53714":3,"53715":3,"53716":2,"53717":4,"53718":3,"53719":2,"53720":4,"53721":2,"53722":4,"53723":1,"53724":4,"53725":1,"53726":4,"53727":3,"53728":3,"53729":3,"53730":4,"53731":5,"53732":3,"53733":2,"53734":1,"53735":1,"53736":1,"53737":1,"53738":4,"53739":2,"53740":3,"53741":3,"53742":3,"53743":2,"53744":3,"53745":3,"53746":3,"53747":4,"53748":3,"53749":1,"53750":4,"53751":4,"53752":3,"53753":3,"53754":4,"53755":2,"53756":4,"53757":5,"53758":5,"53759":4,"53760":2,"53761":4,"53762":4,"53763":4,"53764":4,"53765":2,"53766":1,"53767":4,"53768":2,"53769":1,"53770":3,"53771":4,"53772":3,"53773":4,"53774":4,"53775":3,"53776":4,"53777":3,"53778":3,"53779":3,"53780":3,"53781":4,"53782":2,"53783":4,"53784":3,"53785":4,"53786":1,"53787":4,"53788":1,"53789":3,"53790":2,"53791":2,"53792":2,"53793":4,"53794":2,"53795":1,"53796":5,"53797":4,"53798":4,"53799":3,"53800":2,"53801":3,"53802":2,"53803":3,"53804":3,"53805":4,"53806":1,"53807":4,"53808":2,"53809":1,"53810":3,"53811":3,"53812":3,"53813":3,"53814":3,"53815":3,"53816":3,"53817":2,"53818":4,"53819":2,"53820":3,"53821":2,"53822":2,"53823":5,"53824":1,"53825":2,"53826":3,"53827":3,"53828":2,"53829":3,"53830":1,"53831":2,"53832":2,"53833":1,"53834":3,"53835":2,"53836":3,"53837":2,"53838":4,"53839":4,"53840":1,"53841":4,"53842":3,"53843":2,"53844":3,"53845":3,"53846":4,"53847":4,"53848":4,"53849":4,"53850":2,"53851":3,"53852":3,"53853":1,"53854":3,"53855":4,"53856":4,"53857":1,"53858":2,"53859":2,"53860":1,"53861":3,"53862":1,"53863":3,"53864":3,"53865":2,"53866":2,"53867":3,"53868":3,"53869":2,"53870":3,"53871":4,"53872":3,"53873":3,"53874":3,"53875":3,"53876":5,"53877":2,"53878":4,"53879":1,"53880":5,"53881":3,"53882":5,"53883":1,"53884":3,"53885":4,"53886":1,"53887":4,"53888":3,"53889":3,"53890":4,"53891":4,"53892":2,"53893":4,"53894":1,"53895":2,"53896":3,"53897":2,"53898":4,"53899":3,"53900":2,"53901":5,"53902":3,"53903":1,"53904":2,"53905":3,"53906":3,"53907":5,"53908":4,"53909":2,"53910":5,"53911":3,"53912":3,"53913":4,"53914":4,"53915":3,"53916":4,"53917":5,"53918":2,"53919":4,"53920":2,"53921":2,"53922":4,"53923":4,"53924":3,"53925":1,"53926":4,"53927":2,"53928":2,"53929":4,"53930":2,"53931":3,"53932":3,"53933":1,"53934":2,"53935":3,"53936":3,"53937":2,"53938":1,"53939":4,"53940":1,"53941":3,"53942":4,"53943":1,"53944":3,"53945":2,"53946":3,"53947":4,"53948":2,"53949":3,"53950":2,"53951":4,"53952":2,"53953":4,"53954":2,"53955":4,"53956":3,"53957":3,"53958":4,"53959":3,"53960":3,"53961":4,"53962":5,"53963":1,"53964":2,"53965":4,"53966":2,"53967":2,"53968":3,"53969":1,"53970":4,"53971":5,"53972":3,"53973":2,"53974":3,"53975":3,"53976":4,"53977":3,"53978":2,"53979":3,"53980":3,"53981":4,"53982":3,"53983":3,"53984":3,"53985":3,"53986":2,"53987":5,"53988":1,"53989":4,"53990":5,"53991":3,"53992":2,"53993":3,"53994":3,"53995":3,"53996":1,"53997":5,"53998":1,"53999":4,"54000":4,"54001":5,"54002":2,"54003":3,"54004":3,"54005":2,"54006":3,"54007":3,"54008":4,"54009":5,"54010":5,"54011":4,"54012":3,"54013":4,"54014":1,"54015":3,"54016":3,"54017":2,"54018":3,"54019":1,"54020":3,"54021":3,"54022":3,"54023":3,"54024":4,"54025":5,"54026":4,"54027":3,"54028":3,"54029":4,"54030":3,"54031":4,"54032":2,"54033":1,"54034":2,"54035":3,"54036":3,"54037":3,"54038":3,"54039":2,"54040":2,"54041":3,"54042":3,"54043":4,"54044":2,"54045":2,"54046":2,"54047":2,"54048":4,"54049":1,"54050":3,"54051":1,"54052":3,"54053":5,"54054":2,"54055":1,"54056":5,"54057":3,"54058":3,"54059":4,"54060":3,"54061":4,"54062":3,"54063":2,"54064":2,"54065":3,"54066":1,"54067":3,"54068":4,"54069":3,"54070":5,"54071":1,"54072":1,"54073":2,"54074":3,"54075":5,"54076":2,"54077":3,"54078":4,"54079":4,"54080":4,"54081":3,"54082":5,"54083":5,"54084":1,"54085":1,"54086":4,"54087":4,"54088":2,"54089":4,"54090":2,"54091":3,"54092":3,"54093":4,"54094":3,"54095":3,"54096":3,"54097":3,"54098":3,"54099":3,"54100":3,"54101":2,"54102":2,"54103":3,"54104":3,"54105":3,"54106":5,"54107":5,"54108":1,"54109":4,"54110":3,"54111":1,"54112":4,"54113":2,"54114":2,"54115":2,"54116":2,"54117":2,"54118":3,"54119":2,"54120":2,"54121":2,"54122":3,"54123":4,"54124":3,"54125":4,"54126":2,"54127":4,"54128":5,"54129":3,"54130":5,"54131":3,"54132":4,"54133":1,"54134":2,"54135":4,"54136":2,"54137":4,"54138":4,"54139":3,"54140":2,"54141":5,"54142":3,"54143":1,"54144":3,"54145":4,"54146":4,"54147":2,"54148":2,"54149":4,"54150":3,"54151":4,"54152":5,"54153":3,"54154":2,"54155":2,"54156":5,"54157":3,"54158":3,"54159":4,"54160":2,"54161":2,"54162":3,"54163":3,"54164":3,"54165":2,"54166":2,"54167":4,"54168":3,"54169":2,"54170":3,"54171":4,"54172":4,"54173":3,"54174":3,"54175":4,"54176":3,"54177":4,"54178":2,"54179":2,"54180":4,"54181":4,"54182":2,"54183":4,"54184":4,"54185":4,"54186":4,"54187":1,"54188":3,"54189":3,"54190":3,"54191":4,"54192":3,"54193":3,"54194":3,"54195":5,"54196":1,"54197":4,"54198":3,"54199":3,"54200":2,"54201":3,"54202":5,"54203":5,"54204":1,"54205":3,"54206":3,"54207":2,"54208":3,"54209":4,"54210":3,"54211":3,"54212":4,"54213":3,"54214":2,"54215":3,"54216":3,"54217":4,"54218":3,"54219":1,"54220":4,"54221":3,"54222":2,"54223":4,"54224":1,"54225":3,"54226":4,"54227":1,"54228":2,"54229":4,"54230":4,"54231":2,"54232":3,"54233":2,"54234":3,"54235":3,"54236":2,"54237":3,"54238":2,"54239":4,"54240":3,"54241":1,"54242":2,"54243":5,"54244":3,"54245":4,"54246":3,"54247":2,"54248":2,"54249":3,"54250":4,"54251":3,"54252":3,"54253":4,"54254":2,"54255":3,"54256":3,"54257":4,"54258":4,"54259":2,"54260":3,"54261":4,"54262":4,"54263":4,"54264":4,"54265":2,"54266":3,"54267":1,"54268":4,"54269":3,"54270":4,"54271":2,"54272":2,"54273":4,"54274":3,"54275":2,"54276":3,"54277":3,"54278":3,"54279":3,"54280":2,"54281":4,"54282":5,"54283":2,"54284":4,"54285":3,"54286":2,"54287":2,"54288":3,"54289":5,"54290":2,"54291":2,"54292":2,"54293":3,"54294":2,"54295":2,"54296":3,"54297":3,"54298":5,"54299":4,"54300":1,"54301":2,"54302":2,"54303":2,"54304":3,"54305":4,"54306":4,"54307":4,"54308":3,"54309":4,"54310":3,"54311":4,"54312":2,"54313":4,"54314":3,"54315":3,"54316":4,"54317":4,"54318":1,"54319":1,"54320":3,"54321":3,"54322":2,"54323":4,"54324":3,"54325":4,"54326":4,"54327":5,"54328":2,"54329":3,"54330":2,"54331":2,"54332":1,"54333":4,"54334":2,"54335":3,"54336":3,"54337":3,"54338":3,"54339":3,"54340":4,"54341":4,"54342":2,"54343":4,"54344":4,"54345":2,"54346":4,"54347":3,"54348":2,"54349":3,"54350":2,"54351":2,"54352":3,"54353":4,"54354":2,"54355":3,"54356":1,"54357":3,"54358":5,"54359":2,"54360":1,"54361":4,"54362":3,"54363":3,"54364":4,"54365":2,"54366":4,"54367":3,"54368":3,"54369":2,"54370":3,"54371":3,"54372":4,"54373":3,"54374":1,"54375":3,"54376":4,"54377":2,"54378":3,"54379":4,"54380":3,"54381":2,"54382":3,"54383":1,"54384":4,"54385":4,"54386":4,"54387":4,"54388":3,"54389":2,"54390":2,"54391":5,"54392":2,"54393":3,"54394":4,"54395":3,"54396":3,"54397":1,"54398":4,"54399":3,"54400":1,"54401":3,"54402":3,"54403":5,"54404":3,"54405":4,"54406":2,"54407":3,"54408":5,"54409":2,"54410":4,"54411":4,"54412":2,"54413":1,"54414":2,"54415":2,"54416":3,"54417":2,"54418":5,"54419":3,"54420":3,"54421":1,"54422":2,"54423":2,"54424":3,"54425":4,"54426":4,"54427":2,"54428":3,"54429":3,"54430":3,"54431":3,"54432":4,"54433":1,"54434":3,"54435":2,"54436":3,"54437":1,"54438":3,"54439":3,"54440":1,"54441":3,"54442":3,"54443":2,"54444":5,"54445":4,"54446":3,"54447":4,"54448":3,"54449":4,"54450":4,"54451":4,"54452":2,"54453":2,"54454":3,"54455":2,"54456":2,"54457":3,"54458":1,"54459":5,"54460":3,"54461":4,"54462":4,"54463":1,"54464":4,"54465":3,"54466":3,"54467":4,"54468":3,"54469":3,"54470":3,"54471":2,"54472":4,"54473":2,"54474":2,"54475":4,"54476":3,"54477":4,"54478":3,"54479":3,"54480":2,"54481":4,"54482":3,"54483":3,"54484":2,"54485":4,"54486":5,"54487":4,"54488":4,"54489":5,"54490":4,"54491":1,"54492":5,"54493":5,"54494":3,"54495":2,"54496":2,"54497":4,"54498":3,"54499":1,"54500":4,"54501":1,"54502":3,"54503":3,"54504":1,"54505":4,"54506":3,"54507":4,"54508":3,"54509":3,"54510":2,"54511":5,"54512":1,"54513":3,"54514":5,"54515":3,"54516":4,"54517":3,"54518":2,"54519":2,"54520":3,"54521":2,"54522":2,"54523":5,"54524":5,"54525":3,"54526":2,"54527":4,"54528":5,"54529":1,"54530":4,"54531":3,"54532":4,"54533":3,"54534":1,"54535":4,"54536":5,"54537":1,"54538":4,"54539":4,"54540":5,"54541":4,"54542":4,"54543":2,"54544":3,"54545":4,"54546":4,"54547":1,"54548":4,"54549":3,"54550":4,"54551":5,"54552":2,"54553":4,"54554":2,"54555":4,"54556":3,"54557":3,"54558":2,"54559":4,"54560":4,"54561":3,"54562":1,"54563":1,"54564":1,"54565":4,"54566":2,"54567":3,"54568":2,"54569":4,"54570":2,"54571":3,"54572":4,"54573":3,"54574":3,"54575":3,"54576":4,"54577":4,"54578":3,"54579":1,"54580":3,"54581":3,"54582":3,"54583":3,"54584":2,"54585":2,"54586":4,"54587":4,"54588":2,"54589":4,"54590":3,"54591":4,"54592":4,"54593":5,"54594":3,"54595":3,"54596":3,"54597":2,"54598":2,"54599":4,"54600":2,"54601":2,"54602":2,"54603":3,"54604":5,"54605":2,"54606":3,"54607":4,"54608":3,"54609":3,"54610":3,"54611":3,"54612":2,"54613":3,"54614":2,"54615":3,"54616":2,"54617":5,"54618":3,"54619":2,"54620":3,"54621":4,"54622":1,"54623":5,"54624":2,"54625":4,"54626":5,"54627":1,"54628":5,"54629":1,"54630":2,"54631":2,"54632":4,"54633":4,"54634":1,"54635":3,"54636":1,"54637":3,"54638":3,"54639":2,"54640":4,"54641":4,"54642":2,"54643":2,"54644":3,"54645":1,"54646":3,"54647":3,"54648":1,"54649":4,"54650":2,"54651":3,"54652":2,"54653":2,"54654":4,"54655":2,"54656":3,"54657":4,"54658":5,"54659":3,"54660":5,"54661":2,"54662":2,"54663":2,"54664":4,"54665":4,"54666":1,"54667":3,"54668":3,"54669":3,"54670":4,"54671":4,"54672":3,"54673":3,"54674":3,"54675":1,"54676":4,"54677":4,"54678":3,"54679":4,"54680":1,"54681":2,"54682":3,"54683":3,"54684":4,"54685":3,"54686":3,"54687":3,"54688":2,"54689":4,"54690":5,"54691":3,"54692":1,"54693":4,"54694":3,"54695":1,"54696":4,"54697":1,"54698":4,"54699":5,"54700":2,"54701":2,"54702":3,"54703":2,"54704":5,"54705":4,"54706":4,"54707":2,"54708":5,"54709":4,"54710":4,"54711":2,"54712":2,"54713":3,"54714":4,"54715":4,"54716":2,"54717":4,"54718":2,"54719":4,"54720":3,"54721":5,"54722":1,"54723":5,"54724":2,"54725":4,"54726":3,"54727":3,"54728":3,"54729":1,"54730":2,"54731":3,"54732":4,"54733":3,"54734":4,"54735":5,"54736":3,"54737":4,"54738":1,"54739":4,"54740":4,"54741":4,"54742":2,"54743":3,"54744":4,"54745":3,"54746":2,"54747":3,"54748":1,"54749":3,"54750":1,"54751":3,"54752":1,"54753":5,"54754":4,"54755":3,"54756":2,"54757":2,"54758":1,"54759":1,"54760":5,"54761":3,"54762":3,"54763":4,"54764":3,"54765":3,"54766":3,"54767":3,"54768":4,"54769":2,"54770":5,"54771":5,"54772":5,"54773":2,"54774":4,"54775":4,"54776":2,"54777":1,"54778":4,"54779":4,"54780":2,"54781":4,"54782":4,"54783":3,"54784":1,"54785":4,"54786":4,"54787":3,"54788":4,"54789":4,"54790":4,"54791":3,"54792":3,"54793":2,"54794":5,"54795":2,"54796":2,"54797":3,"54798":3,"54799":3,"54800":3,"54801":2,"54802":2,"54803":2,"54804":3,"54805":4,"54806":2,"54807":1,"54808":4,"54809":2,"54810":3,"54811":4,"54812":1,"54813":5,"54814":2,"54815":3,"54816":1,"54817":4,"54818":2,"54819":4,"54820":4,"54821":4,"54822":4,"54823":2,"54824":2,"54825":3,"54826":4,"54827":4,"54828":3,"54829":1,"54830":3,"54831":3,"54832":4,"54833":2,"54834":4,"54835":3,"54836":5,"54837":4,"54838":3,"54839":3,"54840":2,"54841":3,"54842":1,"54843":3,"54844":4,"54845":4,"54846":3,"54847":3,"54848":5,"54849":2,"54850":2,"54851":4,"54852":4,"54853":2,"54854":4,"54855":3,"54856":4,"54857":2,"54858":1,"54859":5,"54860":2,"54861":4,"54862":3,"54863":4,"54864":2,"54865":3,"54866":2,"54867":2,"54868":3,"54869":5,"54870":3,"54871":2,"54872":5,"54873":3,"54874":4,"54875":1,"54876":2,"54877":2,"54878":1,"54879":3,"54880":4,"54881":4,"54882":3,"54883":2,"54884":1,"54885":4,"54886":3,"54887":4,"54888":2,"54889":2,"54890":1,"54891":3,"54892":4,"54893":2,"54894":3,"54895":3,"54896":2,"54897":3,"54898":2,"54899":5,"54900":2,"54901":4,"54902":4,"54903":2,"54904":4,"54905":4,"54906":1,"54907":5,"54908":5,"54909":5,"54910":2,"54911":3,"54912":1,"54913":2,"54914":3,"54915":2,"54916":4,"54917":4,"54918":1,"54919":4,"54920":1,"54921":4,"54922":2,"54923":4,"54924":4,"54925":3,"54926":2,"54927":1,"54928":3,"54929":1,"54930":4,"54931":1,"54932":5,"54933":3,"54934":3,"54935":2,"54936":3,"54937":2,"54938":2,"54939":5,"54940":3,"54941":3,"54942":1,"54943":3,"54944":2,"54945":3,"54946":2,"54947":2,"54948":3,"54949":3,"54950":3,"54951":3,"54952":4,"54953":3,"54954":3,"54955":1,"54956":3,"54957":4,"54958":2,"54959":4,"54960":4,"54961":3,"54962":2,"54963":2,"54964":4,"54965":2,"54966":3,"54967":2,"54968":3,"54969":2,"54970":3,"54971":4,"54972":2,"54973":4,"54974":3,"54975":4,"54976":1,"54977":2,"54978":2,"54979":4,"54980":4,"54981":3,"54982":3,"54983":1,"54984":2,"54985":5,"54986":3,"54987":2,"54988":3,"54989":1,"54990":3,"54991":4,"54992":3,"54993":5,"54994":3,"54995":4,"54996":1,"54997":3,"54998":2,"54999":1,"55000":3,"55001":3,"55002":3,"55003":4,"55004":4,"55005":3,"55006":2,"55007":3,"55008":3,"55009":1,"55010":3,"55011":3,"55012":4,"55013":1,"55014":2,"55015":3,"55016":3,"55017":2,"55018":3,"55019":3,"55020":3,"55021":4,"55022":3,"55023":2,"55024":2,"55025":5,"55026":4,"55027":3,"55028":3,"55029":1,"55030":4,"55031":3,"55032":1,"55033":4,"55034":4,"55035":2,"55036":4,"55037":1,"55038":2,"55039":3,"55040":4,"55041":3,"55042":3,"55043":5,"55044":1,"55045":4,"55046":3,"55047":1,"55048":2,"55049":3,"55050":2,"55051":3,"55052":4,"55053":2,"55054":3,"55055":2,"55056":3,"55057":3,"55058":5,"55059":3,"55060":2,"55061":3,"55062":2,"55063":5,"55064":1,"55065":3,"55066":4,"55067":3,"55068":3,"55069":3,"55070":3,"55071":1,"55072":1,"55073":5,"55074":3,"55075":3,"55076":3,"55077":4,"55078":3,"55079":4,"55080":5,"55081":4,"55082":2,"55083":4,"55084":3,"55085":2,"55086":3,"55087":4,"55088":3,"55089":2,"55090":3,"55091":5,"55092":2,"55093":2,"55094":4,"55095":5,"55096":3,"55097":3,"55098":4,"55099":2,"55100":4,"55101":4,"55102":4,"55103":4,"55104":1,"55105":2,"55106":4,"55107":3,"55108":3,"55109":3,"55110":3,"55111":1,"55112":4,"55113":2,"55114":3,"55115":2,"55116":2,"55117":2,"55118":3,"55119":5,"55120":2,"55121":3,"55122":4,"55123":2,"55124":5,"55125":2,"55126":2,"55127":3,"55128":3,"55129":3,"55130":3,"55131":2,"55132":2,"55133":4,"55134":4,"55135":3,"55136":3,"55137":4,"55138":4,"55139":3,"55140":1,"55141":3,"55142":3,"55143":4,"55144":3,"55145":2,"55146":5,"55147":2,"55148":3,"55149":4,"55150":2,"55151":2,"55152":4,"55153":2,"55154":4,"55155":5,"55156":2,"55157":5,"55158":3,"55159":2,"55160":4,"55161":3,"55162":3,"55163":3,"55164":3,"55165":4,"55166":5,"55167":5,"55168":2,"55169":4,"55170":2,"55171":5,"55172":5,"55173":2,"55174":4,"55175":3,"55176":3,"55177":3,"55178":4,"55179":2,"55180":1,"55181":5,"55182":3,"55183":3,"55184":5,"55185":3,"55186":3,"55187":3,"55188":4,"55189":5,"55190":3,"55191":4,"55192":3,"55193":5,"55194":3,"55195":4,"55196":4,"55197":3,"55198":2,"55199":2,"55200":4,"55201":4,"55202":2,"55203":4,"55204":4,"55205":2,"55206":4,"55207":3,"55208":5,"55209":2,"55210":2,"55211":4,"55212":3,"55213":2,"55214":4,"55215":5,"55216":2,"55217":3,"55218":4,"55219":4,"55220":4,"55221":4,"55222":1,"55223":2,"55224":3,"55225":4,"55226":1,"55227":1,"55228":1,"55229":4,"55230":2,"55231":4,"55232":5,"55233":4,"55234":1,"55235":4,"55236":3,"55237":3,"55238":3,"55239":2,"55240":2,"55241":5,"55242":3,"55243":4,"55244":1,"55245":2,"55246":3,"55247":3,"55248":2,"55249":2,"55250":3,"55251":3,"55252":4,"55253":3,"55254":3,"55255":1,"55256":2,"55257":3,"55258":4,"55259":2,"55260":5,"55261":2,"55262":4,"55263":1,"55264":4,"55265":2,"55266":4,"55267":3,"55268":3,"55269":3,"55270":3,"55271":4,"55272":3,"55273":3,"55274":2,"55275":4,"55276":4,"55277":3,"55278":4,"55279":5,"55280":3,"55281":2,"55282":2,"55283":2,"55284":2,"55285":1,"55286":1,"55287":3,"55288":3,"55289":3,"55290":3,"55291":4,"55292":3,"55293":2,"55294":3,"55295":3,"55296":3,"55297":4,"55298":3,"55299":3,"55300":4,"55301":3,"55302":4,"55303":3,"55304":3,"55305":1,"55306":1,"55307":4,"55308":4,"55309":4,"55310":2,"55311":2,"55312":3,"55313":5,"55314":1,"55315":4,"55316":1,"55317":2,"55318":5,"55319":2,"55320":2,"55321":2,"55322":1,"55323":5,"55324":3,"55325":4,"55326":2,"55327":4,"55328":5,"55329":3,"55330":2,"55331":3,"55332":2,"55333":2,"55334":4,"55335":4,"55336":4,"55337":1,"55338":4,"55339":4,"55340":3,"55341":3,"55342":2,"55343":4,"55344":3,"55345":2,"55346":3,"55347":1,"55348":3,"55349":3,"55350":3,"55351":4,"55352":4,"55353":3,"55354":4,"55355":2,"55356":1,"55357":4,"55358":2,"55359":2,"55360":4,"55361":2,"55362":4,"55363":4,"55364":2,"55365":3,"55366":4,"55367":2,"55368":3,"55369":2,"55370":2,"55371":2,"55372":2,"55373":1,"55374":4,"55375":1,"55376":4,"55377":2,"55378":4,"55379":4,"55380":1,"55381":3,"55382":4,"55383":1,"55384":5,"55385":4,"55386":3,"55387":3,"55388":3,"55389":4,"55390":3,"55391":3,"55392":3,"55393":2,"55394":2,"55395":3,"55396":2,"55397":3,"55398":4,"55399":3,"55400":2,"55401":1,"55402":4,"55403":3,"55404":1,"55405":1,"55406":5,"55407":5,"55408":5,"55409":5,"55410":3,"55411":4,"55412":4,"55413":3,"55414":3,"55415":4,"55416":3,"55417":4,"55418":4,"55419":2,"55420":3,"55421":3,"55422":4,"55423":3,"55424":1,"55425":3,"55426":3,"55427":5,"55428":5,"55429":4,"55430":2,"55431":4,"55432":2,"55433":3,"55434":1,"55435":3,"55436":4,"55437":5,"55438":4,"55439":4,"55440":3,"55441":3,"55442":2,"55443":2,"55444":3,"55445":5,"55446":2,"55447":5,"55448":1,"55449":2,"55450":3,"55451":1,"55452":2,"55453":2,"55454":3,"55455":4,"55456":2,"55457":2,"55458":2,"55459":3,"55460":4,"55461":4,"55462":3,"55463":4,"55464":5,"55465":3,"55466":3,"55467":5,"55468":3,"55469":3,"55470":1,"55471":1,"55472":3,"55473":2,"55474":3,"55475":4,"55476":3,"55477":3,"55478":4,"55479":4,"55480":2,"55481":3,"55482":3,"55483":2,"55484":3,"55485":3,"55486":3,"55487":2,"55488":2,"55489":3,"55490":2,"55491":4,"55492":2,"55493":3,"55494":3,"55495":3,"55496":4,"55497":3,"55498":2,"55499":3,"55500":3,"55501":2,"55502":2,"55503":2,"55504":2,"55505":3,"55506":2,"55507":3,"55508":4,"55509":3,"55510":1,"55511":4,"55512":3,"55513":3,"55514":3,"55515":4,"55516":1,"55517":3,"55518":4,"55519":4,"55520":3,"55521":2,"55522":3,"55523":2,"55524":2,"55525":3,"55526":2,"55527":3,"55528":2,"55529":3,"55530":3,"55531":2,"55532":3,"55533":3,"55534":4,"55535":4,"55536":4,"55537":3,"55538":3,"55539":2,"55540":2,"55541":3,"55542":5,"55543":4,"55544":2,"55545":4,"55546":4,"55547":3,"55548":3,"55549":3,"55550":3,"55551":4,"55552":4,"55553":2,"55554":4,"55555":3,"55556":3,"55557":1,"55558":4,"55559":1,"55560":3,"55561":4,"55562":5,"55563":1,"55564":3,"55565":2,"55566":4,"55567":4,"55568":2,"55569":3,"55570":2,"55571":5,"55572":4,"55573":3,"55574":4,"55575":2,"55576":3,"55577":2,"55578":5,"55579":4,"55580":1,"55581":1,"55582":2,"55583":3,"55584":2,"55585":2,"55586":4,"55587":4,"55588":4,"55589":2,"55590":4,"55591":1,"55592":5,"55593":1,"55594":5,"55595":3,"55596":2,"55597":3,"55598":3,"55599":2,"55600":5,"55601":3,"55602":3,"55603":5,"55604":3,"55605":2,"55606":3,"55607":2,"55608":3,"55609":2,"55610":4,"55611":2,"55612":3,"55613":5,"55614":1,"55615":3,"55616":3,"55617":2,"55618":2,"55619":3,"55620":4,"55621":4,"55622":1,"55623":2,"55624":4,"55625":3,"55626":4,"55627":4,"55628":1,"55629":2,"55630":4,"55631":3,"55632":1,"55633":4,"55634":4,"55635":1,"55636":3,"55637":2,"55638":2,"55639":5,"55640":3,"55641":3,"55642":2,"55643":3,"55644":3,"55645":4,"55646":1,"55647":3,"55648":2,"55649":3,"55650":5,"55651":2,"55652":3,"55653":4,"55654":4,"55655":4,"55656":3,"55657":1,"55658":2,"55659":2,"55660":3,"55661":2,"55662":3,"55663":3,"55664":2,"55665":3,"55666":2,"55667":2,"55668":4,"55669":3,"55670":2,"55671":2,"55672":3,"55673":2,"55674":4,"55675":2,"55676":4,"55677":3,"55678":2,"55679":1,"55680":5,"55681":4,"55682":4,"55683":2,"55684":3,"55685":4,"55686":4,"55687":1,"55688":2,"55689":3,"55690":3,"55691":3,"55692":2,"55693":3,"55694":4,"55695":3,"55696":2,"55697":4,"55698":4,"55699":4,"55700":3,"55701":4,"55702":1,"55703":2,"55704":2,"55705":1,"55706":4,"55707":2,"55708":3,"55709":3,"55710":3,"55711":1,"55712":4,"55713":3,"55714":4,"55715":2,"55716":1,"55717":2,"55718":4,"55719":2,"55720":5,"55721":2,"55722":3,"55723":4,"55724":5,"55725":3,"55726":1,"55727":1,"55728":3,"55729":2,"55730":2,"55731":1,"55732":2,"55733":3,"55734":3,"55735":3,"55736":3,"55737":3,"55738":4,"55739":4,"55740":3,"55741":2,"55742":3,"55743":4,"55744":3,"55745":2,"55746":5,"55747":4,"55748":3,"55749":2,"55750":2,"55751":3,"55752":1,"55753":3,"55754":4,"55755":3,"55756":3,"55757":3,"55758":4,"55759":3,"55760":3,"55761":1,"55762":5,"55763":5,"55764":2,"55765":3,"55766":4,"55767":2,"55768":2,"55769":2,"55770":4,"55771":4,"55772":2,"55773":2,"55774":4,"55775":3,"55776":4,"55777":2,"55778":5,"55779":1,"55780":4,"55781":3,"55782":3,"55783":3,"55784":1,"55785":3,"55786":3,"55787":2,"55788":3,"55789":3,"55790":1,"55791":4,"55792":3,"55793":2,"55794":1,"55795":3,"55796":4,"55797":3,"55798":3,"55799":2,"55800":3,"55801":3,"55802":3,"55803":5,"55804":2,"55805":4,"55806":1,"55807":4,"55808":4,"55809":3,"55810":4,"55811":4,"55812":3,"55813":4,"55814":4,"55815":3,"55816":3,"55817":4,"55818":2,"55819":3,"55820":1,"55821":3,"55822":4,"55823":3,"55824":4,"55825":1,"55826":4,"55827":2,"55828":2,"55829":1,"55830":3,"55831":1,"55832":2,"55833":3,"55834":2,"55835":2,"55836":4,"55837":1,"55838":4,"55839":3,"55840":3,"55841":5,"55842":2,"55843":3,"55844":2,"55845":2,"55846":4,"55847":3,"55848":4,"55849":3,"55850":3,"55851":2,"55852":2,"55853":4,"55854":4,"55855":3,"55856":1,"55857":4,"55858":3,"55859":2,"55860":2,"55861":2,"55862":4,"55863":1,"55864":1,"55865":1,"55866":4,"55867":3,"55868":2,"55869":3,"55870":3,"55871":3,"55872":3,"55873":5,"55874":2,"55875":1,"55876":3,"55877":3,"55878":3,"55879":3,"55880":4,"55881":4,"55882":4,"55883":2,"55884":4,"55885":1,"55886":2,"55887":2,"55888":4,"55889":4,"55890":3,"55891":1,"55892":3,"55893":2,"55894":4,"55895":2,"55896":3,"55897":4,"55898":2,"55899":3,"55900":5,"55901":3,"55902":3,"55903":4,"55904":2,"55905":2,"55906":5,"55907":3,"55908":2,"55909":4,"55910":3,"55911":1,"55912":2,"55913":3,"55914":3,"55915":2,"55916":4,"55917":4,"55918":1,"55919":1,"55920":3,"55921":3,"55922":4,"55923":3,"55924":4,"55925":2,"55926":4,"55927":3,"55928":3,"55929":3,"55930":2,"55931":5,"55932":3,"55933":5,"55934":3,"55935":3,"55936":1,"55937":3,"55938":3,"55939":2,"55940":2,"55941":2,"55942":3,"55943":4,"55944":2,"55945":2,"55946":2,"55947":3,"55948":3,"55949":3,"55950":4,"55951":1,"55952":5,"55953":3,"55954":4,"55955":4,"55956":2,"55957":4,"55958":3,"55959":2,"55960":4,"55961":3,"55962":3,"55963":3,"55964":3,"55965":3,"55966":3,"55967":4,"55968":3,"55969":4,"55970":2,"55971":2,"55972":2,"55973":2,"55974":2,"55975":3,"55976":3,"55977":3,"55978":2,"55979":2,"55980":4,"55981":4,"55982":5,"55983":5,"55984":3,"55985":4,"55986":4,"55987":4,"55988":4,"55989":2,"55990":2,"55991":3,"55992":3,"55993":4,"55994":4,"55995":3,"55996":3,"55997":4,"55998":4,"55999":3,"56000":3,"56001":3,"56002":5,"56003":2,"56004":3,"56005":2,"56006":4,"56007":3,"56008":5,"56009":1,"56010":5,"56011":2,"56012":5,"56013":3,"56014":2,"56015":3,"56016":4,"56017":1,"56018":2,"56019":1,"56020":2,"56021":2,"56022":2,"56023":4,"56024":3,"56025":4,"56026":2,"56027":3,"56028":2,"56029":4,"56030":2,"56031":3,"56032":3,"56033":3,"56034":2,"56035":3,"56036":3,"56037":3,"56038":3,"56039":5,"56040":3,"56041":2,"56042":4,"56043":2,"56044":4,"56045":4,"56046":4,"56047":4,"56048":3,"56049":3,"56050":2,"56051":4,"56052":4,"56053":3,"56054":4,"56055":2,"56056":3,"56057":4,"56058":3,"56059":4,"56060":5,"56061":2,"56062":4,"56063":4,"56064":4,"56065":3,"56066":3,"56067":1,"56068":2,"56069":3,"56070":5,"56071":2,"56072":3,"56073":5,"56074":2,"56075":3,"56076":3,"56077":4,"56078":2,"56079":2,"56080":2,"56081":2,"56082":3,"56083":3,"56084":2,"56085":2,"56086":3,"56087":5,"56088":3,"56089":3,"56090":3,"56091":2,"56092":3,"56093":3,"56094":4,"56095":4,"56096":3,"56097":2,"56098":2,"56099":3,"56100":5,"56101":1,"56102":3,"56103":4,"56104":4,"56105":2,"56106":3,"56107":2,"56108":4,"56109":4,"56110":4,"56111":2,"56112":3,"56113":3,"56114":4,"56115":5,"56116":2,"56117":4,"56118":2,"56119":5,"56120":3,"56121":4,"56122":1,"56123":3,"56124":2,"56125":2,"56126":3,"56127":3,"56128":3,"56129":2,"56130":5,"56131":2,"56132":4,"56133":4,"56134":4,"56135":1,"56136":2,"56137":3,"56138":2,"56139":3,"56140":1,"56141":3,"56142":2,"56143":5,"56144":2,"56145":5,"56146":2,"56147":1,"56148":3,"56149":2,"56150":4,"56151":3,"56152":3,"56153":2,"56154":3,"56155":4,"56156":5,"56157":3,"56158":4,"56159":5,"56160":5,"56161":2,"56162":3,"56163":3,"56164":3,"56165":3,"56166":3,"56167":2,"56168":1,"56169":3,"56170":3,"56171":2,"56172":3,"56173":4,"56174":2,"56175":2,"56176":3,"56177":4,"56178":2,"56179":4,"56180":2,"56181":3,"56182":1,"56183":1,"56184":5,"56185":3,"56186":2,"56187":3,"56188":3,"56189":4,"56190":3,"56191":1,"56192":3,"56193":2,"56194":4,"56195":4,"56196":3,"56197":5,"56198":3,"56199":3,"56200":2,"56201":3,"56202":3,"56203":4,"56204":1,"56205":4,"56206":2,"56207":4,"56208":2,"56209":4,"56210":1,"56211":2,"56212":4,"56213":4,"56214":2,"56215":1,"56216":1,"56217":3,"56218":3,"56219":3,"56220":3,"56221":4,"56222":3,"56223":3,"56224":4,"56225":2,"56226":1,"56227":3,"56228":4,"56229":4,"56230":2,"56231":5,"56232":4,"56233":2,"56234":3,"56235":3,"56236":2,"56237":2,"56238":2,"56239":4,"56240":1,"56241":3,"56242":5,"56243":4,"56244":3,"56245":2,"56246":3,"56247":2,"56248":4,"56249":3,"56250":2,"56251":2,"56252":4,"56253":3,"56254":4,"56255":2,"56256":1,"56257":3,"56258":2,"56259":2,"56260":5,"56261":1,"56262":5,"56263":2,"56264":4,"56265":3,"56266":3,"56267":2,"56268":4,"56269":2,"56270":3,"56271":3,"56272":3,"56273":2,"56274":3,"56275":5,"56276":5,"56277":1,"56278":3,"56279":2,"56280":3,"56281":3,"56282":4,"56283":4,"56284":3,"56285":3,"56286":3,"56287":3,"56288":2,"56289":3,"56290":4,"56291":3,"56292":2,"56293":3,"56294":2,"56295":4,"56296":3,"56297":3,"56298":3,"56299":3,"56300":3,"56301":1,"56302":4,"56303":4,"56304":2,"56305":5,"56306":4,"56307":2,"56308":3,"56309":5,"56310":2,"56311":2,"56312":1,"56313":4,"56314":3,"56315":3,"56316":3,"56317":3,"56318":3,"56319":3,"56320":4,"56321":3,"56322":4,"56323":4,"56324":2,"56325":4,"56326":2,"56327":3,"56328":5,"56329":1,"56330":4,"56331":3,"56332":4,"56333":2,"56334":1,"56335":3,"56336":5,"56337":4,"56338":1,"56339":3,"56340":4,"56341":1,"56342":2,"56343":3,"56344":3,"56345":4,"56346":3,"56347":3,"56348":3,"56349":4,"56350":3,"56351":2,"56352":3,"56353":3,"56354":5,"56355":2,"56356":2,"56357":3,"56358":4,"56359":4,"56360":2,"56361":3,"56362":3,"56363":3,"56364":3,"56365":1,"56366":3,"56367":3,"56368":5,"56369":3,"56370":3,"56371":4,"56372":1,"56373":3,"56374":3,"56375":3,"56376":4,"56377":4,"56378":1,"56379":4,"56380":3,"56381":4,"56382":1,"56383":3,"56384":3,"56385":3,"56386":3,"56387":2,"56388":1,"56389":1,"56390":2,"56391":4,"56392":2,"56393":5,"56394":5,"56395":3,"56396":4,"56397":4,"56398":2,"56399":5,"56400":2,"56401":4,"56402":1,"56403":3,"56404":4,"56405":2,"56406":3,"56407":2,"56408":4,"56409":3,"56410":5,"56411":4,"56412":3,"56413":2,"56414":1,"56415":5,"56416":2,"56417":3,"56418":4,"56419":1,"56420":2,"56421":4,"56422":2,"56423":3,"56424":2,"56425":2,"56426":4,"56427":5,"56428":3,"56429":3,"56430":1,"56431":2,"56432":1,"56433":4,"56434":2,"56435":4,"56436":4,"56437":1,"56438":1,"56439":2,"56440":2,"56441":2,"56442":2,"56443":2,"56444":4,"56445":2,"56446":4,"56447":5,"56448":2,"56449":2,"56450":4,"56451":1,"56452":4,"56453":3,"56454":4,"56455":4,"56456":5,"56457":4,"56458":4,"56459":3,"56460":4,"56461":3,"56462":2,"56463":3,"56464":2,"56465":4,"56466":3,"56467":5,"56468":3,"56469":3,"56470":3,"56471":1,"56472":5,"56473":4,"56474":5,"56475":3,"56476":4,"56477":3,"56478":4,"56479":4,"56480":5,"56481":2,"56482":3,"56483":1,"56484":4,"56485":3,"56486":4,"56487":4,"56488":2,"56489":3,"56490":2,"56491":2,"56492":2,"56493":4,"56494":3,"56495":1,"56496":3,"56497":1,"56498":3,"56499":4,"56500":3,"56501":2,"56502":4,"56503":1,"56504":2,"56505":2,"56506":1,"56507":4,"56508":4,"56509":2,"56510":2,"56511":3,"56512":4,"56513":5,"56514":3,"56515":5,"56516":1,"56517":3,"56518":2,"56519":3,"56520":3,"56521":5,"56522":1,"56523":1,"56524":3,"56525":2,"56526":2,"56527":2,"56528":2,"56529":3,"56530":3,"56531":4,"56532":2,"56533":3,"56534":1,"56535":5,"56536":4,"56537":3,"56538":2,"56539":4,"56540":3,"56541":4,"56542":4,"56543":4,"56544":1,"56545":3,"56546":3,"56547":1,"56548":3,"56549":3,"56550":4,"56551":3,"56552":5,"56553":3,"56554":4,"56555":3,"56556":4,"56557":2,"56558":4,"56559":4,"56560":1,"56561":5,"56562":2,"56563":4,"56564":4,"56565":1,"56566":2,"56567":3,"56568":4,"56569":4,"56570":4,"56571":4,"56572":5,"56573":3,"56574":4,"56575":3,"56576":2,"56577":3,"56578":3,"56579":2,"56580":4,"56581":2,"56582":2,"56583":3,"56584":2,"56585":1,"56586":2,"56587":2,"56588":2,"56589":3,"56590":3,"56591":3,"56592":3,"56593":5,"56594":3,"56595":4,"56596":3,"56597":2,"56598":4,"56599":4,"56600":3,"56601":4,"56602":3,"56603":1,"56604":1,"56605":3,"56606":1,"56607":3,"56608":5,"56609":3,"56610":4,"56611":3,"56612":3,"56613":3,"56614":3,"56615":3,"56616":3,"56617":2,"56618":3,"56619":1,"56620":2,"56621":1,"56622":3,"56623":4,"56624":3,"56625":3,"56626":4,"56627":3,"56628":2,"56629":3,"56630":4,"56631":3,"56632":2,"56633":4,"56634":2,"56635":4,"56636":5,"56637":3,"56638":3,"56639":5,"56640":3,"56641":3,"56642":2,"56643":4,"56644":1,"56645":4,"56646":3,"56647":3,"56648":1,"56649":2,"56650":2,"56651":3,"56652":3,"56653":1,"56654":3,"56655":4,"56656":1,"56657":1,"56658":4,"56659":4,"56660":3,"56661":1,"56662":1,"56663":2,"56664":2,"56665":3,"56666":2,"56667":3,"56668":3,"56669":3,"56670":4,"56671":3,"56672":3,"56673":4,"56674":2,"56675":1,"56676":2,"56677":2,"56678":3,"56679":1,"56680":3,"56681":3,"56682":3,"56683":3,"56684":1,"56685":4,"56686":2,"56687":4,"56688":3,"56689":4,"56690":3,"56691":3,"56692":4,"56693":4,"56694":3,"56695":2,"56696":4,"56697":2,"56698":1,"56699":3,"56700":2,"56701":3,"56702":4,"56703":3,"56704":1,"56705":2,"56706":3,"56707":3,"56708":4,"56709":3,"56710":3,"56711":5,"56712":5,"56713":2,"56714":3,"56715":1,"56716":3,"56717":3,"56718":3,"56719":2,"56720":2,"56721":3,"56722":4,"56723":4,"56724":2,"56725":2,"56726":5,"56727":4,"56728":2,"56729":2,"56730":1,"56731":3,"56732":4,"56733":4,"56734":3,"56735":4,"56736":3,"56737":5,"56738":3,"56739":3,"56740":3,"56741":3,"56742":3,"56743":2,"56744":3,"56745":4,"56746":1,"56747":3,"56748":2,"56749":4,"56750":3,"56751":4,"56752":1,"56753":3,"56754":4,"56755":3,"56756":4,"56757":3,"56758":2,"56759":3,"56760":2,"56761":2,"56762":3,"56763":4,"56764":1,"56765":3,"56766":4,"56767":3,"56768":3,"56769":3,"56770":4,"56771":2,"56772":2,"56773":2,"56774":1,"56775":2,"56776":2,"56777":4,"56778":3,"56779":3,"56780":4,"56781":4,"56782":4,"56783":4,"56784":4,"56785":2,"56786":2,"56787":3,"56788":3,"56789":3,"56790":2,"56791":5,"56792":3,"56793":4,"56794":2,"56795":4,"56796":3,"56797":1,"56798":3,"56799":3,"56800":4,"56801":4,"56802":1,"56803":1,"56804":5,"56805":3,"56806":4,"56807":4,"56808":4,"56809":4,"56810":3,"56811":1,"56812":3,"56813":3,"56814":4,"56815":4,"56816":5,"56817":3,"56818":2,"56819":3,"56820":3,"56821":4,"56822":5,"56823":3,"56824":4,"56825":3,"56826":3,"56827":3,"56828":2,"56829":3,"56830":2,"56831":3,"56832":4,"56833":3,"56834":3,"56835":2,"56836":3,"56837":3,"56838":4,"56839":3,"56840":3,"56841":4,"56842":2,"56843":4,"56844":2,"56845":3,"56846":1,"56847":2,"56848":4,"56849":4,"56850":3,"56851":3,"56852":5,"56853":2,"56854":3,"56855":2,"56856":3,"56857":3,"56858":3,"56859":2,"56860":4,"56861":4,"56862":3,"56863":4,"56864":3,"56865":2,"56866":2,"56867":4,"56868":3,"56869":3,"56870":4,"56871":4,"56872":2,"56873":5,"56874":3,"56875":3,"56876":3,"56877":4,"56878":4,"56879":3,"56880":2,"56881":4,"56882":4,"56883":4,"56884":3,"56885":3,"56886":3,"56887":4,"56888":4,"56889":3,"56890":4,"56891":4,"56892":5,"56893":3,"56894":4,"56895":4,"56896":3,"56897":4,"56898":2,"56899":2,"56900":3,"56901":5,"56902":3,"56903":3,"56904":2,"56905":1,"56906":4,"56907":3,"56908":1,"56909":4,"56910":1,"56911":3,"56912":4,"56913":3,"56914":2,"56915":3,"56916":3,"56917":2,"56918":2,"56919":3,"56920":5,"56921":3,"56922":1,"56923":3,"56924":1,"56925":3,"56926":2,"56927":5,"56928":3,"56929":2,"56930":1,"56931":2,"56932":3,"56933":3,"56934":2,"56935":3,"56936":4,"56937":3,"56938":3,"56939":5,"56940":3,"56941":4,"56942":4,"56943":3,"56944":4,"56945":3,"56946":1,"56947":4,"56948":4,"56949":4,"56950":3,"56951":4,"56952":3,"56953":3,"56954":3,"56955":4,"56956":4,"56957":3,"56958":1,"56959":2,"56960":1,"56961":4,"56962":2,"56963":1,"56964":4,"56965":3,"56966":3,"56967":4,"56968":3,"56969":3,"56970":3,"56971":3,"56972":1,"56973":2,"56974":4,"56975":4,"56976":3,"56977":4,"56978":1,"56979":5,"56980":3,"56981":4,"56982":3,"56983":3,"56984":4,"56985":1,"56986":2,"56987":3,"56988":4,"56989":5,"56990":4,"56991":1,"56992":4,"56993":3,"56994":3,"56995":5,"56996":1,"56997":4,"56998":3,"56999":3,"57000":5,"57001":3,"57002":3,"57003":2,"57004":4,"57005":1,"57006":3,"57007":1,"57008":2,"57009":5,"57010":5,"57011":1,"57012":5,"57013":4,"57014":1,"57015":4,"57016":2,"57017":3,"57018":3,"57019":1,"57020":3,"57021":2,"57022":4,"57023":2,"57024":3,"57025":4,"57026":3,"57027":3,"57028":2,"57029":3,"57030":3,"57031":3,"57032":4,"57033":4,"57034":4,"57035":3,"57036":3,"57037":4,"57038":3,"57039":4,"57040":1,"57041":4,"57042":4,"57043":2,"57044":2,"57045":2,"57046":3,"57047":4,"57048":5,"57049":4,"57050":2,"57051":2,"57052":3,"57053":3,"57054":3,"57055":3,"57056":2,"57057":3,"57058":3,"57059":1,"57060":2,"57061":2,"57062":4,"57063":2,"57064":2,"57065":5,"57066":3,"57067":2,"57068":4,"57069":3,"57070":4,"57071":4,"57072":3,"57073":3,"57074":2,"57075":3,"57076":3,"57077":4,"57078":4,"57079":3,"57080":4,"57081":2,"57082":4,"57083":3,"57084":4,"57085":3,"57086":4,"57087":2,"57088":4,"57089":3,"57090":2,"57091":5,"57092":5,"57093":1,"57094":4,"57095":5,"57096":4,"57097":2,"57098":3,"57099":3,"57100":2,"57101":3,"57102":3,"57103":3,"57104":5,"57105":4,"57106":3,"57107":2,"57108":4,"57109":4,"57110":4,"57111":3,"57112":3,"57113":4,"57114":2,"57115":2,"57116":4,"57117":5,"57118":4,"57119":4,"57120":2,"57121":4,"57122":3,"57123":2,"57124":2,"57125":4,"57126":4,"57127":5,"57128":4,"57129":4,"57130":5,"57131":3,"57132":3,"57133":2,"57134":3,"57135":2,"57136":4,"57137":3,"57138":3,"57139":2,"57140":5,"57141":3,"57142":1,"57143":3,"57144":2,"57145":4,"57146":3,"57147":3,"57148":3,"57149":3,"57150":3,"57151":4,"57152":2,"57153":2,"57154":1,"57155":2,"57156":4,"57157":4,"57158":1,"57159":3,"57160":3,"57161":3,"57162":4,"57163":2,"57164":2,"57165":3,"57166":3,"57167":4,"57168":2,"57169":3,"57170":3,"57171":4,"57172":2,"57173":2,"57174":1,"57175":3,"57176":3,"57177":3,"57178":4,"57179":3,"57180":5,"57181":4,"57182":3,"57183":3,"57184":4,"57185":3,"57186":3,"57187":2,"57188":4,"57189":2,"57190":3,"57191":3,"57192":2,"57193":3,"57194":3,"57195":4,"57196":3,"57197":4,"57198":3,"57199":1,"57200":2,"57201":3,"57202":3,"57203":2,"57204":2,"57205":4,"57206":4,"57207":4,"57208":3,"57209":3,"57210":2,"57211":4,"57212":2,"57213":3,"57214":2,"57215":3,"57216":3,"57217":3,"57218":3,"57219":4,"57220":3,"57221":3,"57222":4,"57223":3,"57224":3,"57225":3,"57226":3,"57227":4,"57228":3,"57229":3,"57230":4,"57231":5,"57232":2,"57233":3,"57234":3,"57235":4,"57236":2,"57237":2,"57238":1,"57239":2,"57240":3,"57241":4,"57242":3,"57243":2,"57244":3,"57245":4,"57246":3,"57247":4,"57248":4,"57249":1,"57250":3,"57251":4,"57252":3,"57253":1,"57254":4,"57255":1,"57256":4,"57257":4,"57258":2,"57259":3,"57260":3,"57261":3,"57262":4,"57263":1,"57264":2,"57265":4,"57266":4,"57267":2,"57268":2,"57269":2,"57270":1,"57271":3,"57272":3,"57273":3,"57274":3,"57275":2,"57276":3,"57277":1,"57278":1,"57279":2,"57280":1,"57281":5,"57282":3,"57283":3,"57284":4,"57285":2,"57286":2,"57287":3,"57288":3,"57289":2,"57290":3,"57291":2,"57292":5,"57293":1,"57294":5,"57295":2,"57296":2,"57297":4,"57298":4,"57299":2,"57300":2,"57301":4,"57302":5,"57303":5,"57304":3,"57305":3,"57306":2,"57307":5,"57308":3,"57309":3,"57310":4,"57311":2,"57312":3,"57313":3,"57314":3,"57315":2,"57316":4,"57317":4,"57318":3,"57319":2,"57320":3,"57321":3,"57322":2,"57323":2,"57324":4,"57325":3,"57326":2,"57327":3,"57328":4,"57329":2,"57330":4,"57331":4,"57332":4,"57333":4,"57334":2,"57335":2,"57336":3,"57337":1,"57338":1,"57339":2,"57340":5,"57341":1,"57342":1,"57343":1,"57344":3,"57345":4,"57346":2,"57347":3,"57348":2,"57349":4,"57350":4,"57351":4,"57352":1,"57353":4,"57354":4,"57355":5,"57356":4,"57357":2,"57358":2,"57359":2,"57360":2,"57361":2,"57362":4,"57363":2,"57364":3,"57365":2,"57366":3,"57367":3,"57368":1,"57369":4,"57370":4,"57371":4,"57372":3,"57373":3,"57374":3,"57375":5,"57376":4,"57377":2,"57378":3,"57379":4,"57380":3,"57381":3,"57382":4,"57383":3,"57384":4,"57385":2,"57386":3,"57387":4,"57388":3,"57389":2,"57390":5,"57391":5,"57392":2,"57393":4,"57394":1,"57395":2,"57396":2,"57397":5,"57398":3,"57399":3,"57400":4,"57401":4,"57402":2,"57403":3,"57404":3,"57405":4,"57406":1,"57407":5,"57408":2,"57409":3,"57410":5,"57411":3,"57412":2,"57413":2,"57414":1,"57415":4,"57416":1,"57417":3,"57418":4,"57419":1,"57420":3,"57421":5,"57422":1,"57423":4,"57424":4,"57425":2,"57426":1,"57427":2,"57428":3,"57429":2,"57430":3,"57431":3,"57432":2,"57433":5,"57434":5,"57435":4,"57436":2,"57437":3,"57438":4,"57439":1,"57440":2,"57441":2,"57442":4,"57443":2,"57444":3,"57445":1,"57446":2,"57447":5,"57448":3,"57449":4,"57450":4,"57451":3,"57452":3,"57453":3,"57454":4,"57455":4,"57456":3,"57457":2,"57458":4,"57459":2,"57460":3,"57461":1,"57462":2,"57463":4,"57464":5,"57465":3,"57466":3,"57467":3,"57468":3,"57469":2,"57470":1,"57471":2,"57472":3,"57473":3,"57474":3,"57475":2,"57476":3,"57477":3,"57478":2,"57479":1,"57480":3,"57481":3,"57482":2,"57483":2,"57484":3,"57485":3,"57486":3,"57487":3,"57488":4,"57489":4,"57490":2,"57491":1,"57492":4,"57493":3,"57494":3,"57495":2,"57496":4,"57497":5,"57498":1,"57499":4,"57500":2,"57501":4,"57502":3,"57503":3,"57504":5,"57505":5,"57506":3,"57507":3,"57508":2,"57509":4,"57510":4,"57511":4,"57512":4,"57513":3,"57514":4,"57515":3,"57516":1,"57517":3,"57518":4,"57519":2,"57520":4,"57521":2,"57522":4,"57523":4,"57524":3,"57525":4,"57526":2,"57527":2,"57528":1,"57529":4,"57530":4,"57531":4,"57532":2,"57533":3,"57534":2,"57535":3,"57536":3,"57537":3,"57538":2,"57539":3,"57540":2,"57541":4,"57542":4,"57543":2,"57544":4,"57545":1,"57546":4,"57547":3,"57548":3,"57549":1,"57550":3,"57551":2,"57552":1,"57553":4,"57554":2,"57555":2,"57556":3,"57557":4,"57558":1,"57559":2,"57560":3,"57561":3,"57562":3,"57563":3,"57564":3,"57565":3,"57566":2,"57567":2,"57568":5,"57569":2,"57570":5,"57571":4,"57572":3,"57573":3,"57574":1,"57575":2,"57576":3,"57577":4,"57578":4,"57579":4,"57580":4,"57581":3,"57582":3,"57583":3,"57584":4,"57585":3,"57586":3,"57587":3,"57588":3,"57589":5,"57590":4,"57591":3,"57592":4,"57593":3,"57594":3,"57595":4,"57596":2,"57597":3,"57598":2,"57599":4,"57600":2,"57601":3,"57602":1,"57603":3,"57604":4,"57605":4,"57606":1,"57607":1,"57608":2,"57609":1,"57610":3,"57611":2,"57612":1,"57613":3,"57614":4,"57615":4,"57616":3,"57617":2,"57618":3,"57619":3,"57620":3,"57621":3,"57622":2,"57623":1,"57624":4,"57625":4,"57626":1,"57627":2,"57628":2,"57629":2,"57630":3,"57631":4,"57632":4,"57633":2,"57634":3,"57635":4,"57636":3,"57637":3,"57638":1,"57639":3,"57640":1,"57641":3,"57642":3,"57643":3,"57644":3,"57645":4,"57646":3,"57647":3,"57648":1,"57649":4,"57650":4,"57651":3,"57652":2,"57653":2,"57654":1,"57655":3,"57656":4,"57657":3,"57658":5,"57659":3,"57660":3,"57661":3,"57662":3,"57663":2,"57664":3,"57665":4,"57666":3,"57667":3,"57668":4,"57669":2,"57670":3,"57671":2,"57672":4,"57673":3,"57674":1,"57675":4,"57676":3,"57677":3,"57678":4,"57679":3,"57680":3,"57681":3,"57682":2,"57683":3,"57684":2,"57685":4,"57686":3,"57687":4,"57688":2,"57689":2,"57690":5,"57691":1,"57692":4,"57693":2,"57694":3,"57695":4,"57696":2,"57697":1,"57698":2,"57699":3,"57700":3,"57701":3,"57702":1,"57703":5,"57704":3,"57705":2,"57706":3,"57707":4,"57708":3,"57709":2,"57710":3,"57711":1,"57712":3,"57713":3,"57714":2,"57715":4,"57716":3,"57717":2,"57718":3,"57719":4,"57720":3,"57721":2,"57722":3,"57723":4,"57724":4,"57725":1,"57726":3,"57727":3,"57728":4,"57729":5,"57730":2,"57731":2,"57732":3,"57733":5,"57734":2,"57735":4,"57736":3,"57737":4,"57738":2,"57739":3,"57740":2,"57741":1,"57742":2,"57743":4,"57744":3,"57745":3,"57746":1,"57747":3,"57748":2,"57749":2,"57750":2,"57751":4,"57752":1,"57753":3,"57754":2,"57755":3,"57756":3,"57757":4,"57758":4,"57759":1,"57760":5,"57761":4,"57762":3,"57763":4,"57764":5,"57765":1,"57766":2,"57767":4,"57768":3,"57769":2,"57770":4,"57771":4,"57772":4,"57773":3,"57774":3,"57775":3,"57776":3,"57777":3,"57778":4,"57779":5,"57780":4,"57781":2,"57782":3,"57783":3,"57784":3,"57785":4,"57786":4,"57787":4,"57788":1,"57789":3,"57790":3,"57791":3,"57792":3,"57793":1,"57794":3,"57795":2,"57796":3,"57797":4,"57798":3,"57799":4,"57800":4,"57801":1,"57802":2,"57803":4,"57804":2,"57805":3,"57806":1,"57807":3,"57808":4,"57809":3,"57810":2,"57811":1,"57812":4,"57813":2,"57814":2,"57815":5,"57816":3,"57817":2,"57818":1,"57819":1,"57820":3,"57821":4,"57822":1,"57823":2,"57824":4,"57825":5,"57826":3,"57827":2,"57828":3,"57829":3,"57830":3,"57831":4,"57832":4,"57833":3,"57834":3,"57835":3,"57836":2,"57837":3,"57838":4,"57839":4,"57840":2,"57841":3,"57842":4,"57843":1,"57844":3,"57845":3,"57846":1,"57847":4,"57848":4,"57849":4,"57850":3,"57851":3,"57852":4,"57853":4,"57854":4,"57855":4,"57856":2,"57857":2,"57858":2,"57859":3,"57860":5,"57861":3,"57862":3,"57863":4,"57864":2,"57865":2,"57866":4,"57867":3,"57868":1,"57869":2,"57870":3,"57871":2,"57872":3,"57873":3,"57874":3,"57875":3,"57876":3,"57877":3,"57878":2,"57879":3,"57880":1,"57881":2,"57882":1,"57883":3,"57884":2,"57885":4,"57886":4,"57887":3,"57888":3,"57889":1,"57890":3,"57891":3,"57892":1,"57893":4,"57894":3,"57895":1,"57896":3,"57897":4,"57898":1,"57899":1,"57900":3,"57901":2,"57902":2,"57903":1,"57904":3,"57905":1,"57906":4,"57907":4,"57908":2,"57909":3,"57910":5,"57911":3,"57912":1,"57913":3,"57914":4,"57915":2,"57916":2,"57917":1,"57918":2,"57919":2,"57920":4,"57921":4,"57922":2,"57923":4,"57924":5,"57925":4,"57926":4,"57927":2,"57928":3,"57929":2,"57930":4,"57931":2,"57932":2,"57933":3,"57934":2,"57935":1,"57936":3,"57937":4,"57938":1,"57939":2,"57940":2,"57941":5,"57942":3,"57943":3,"57944":2,"57945":3,"57946":4,"57947":1,"57948":1,"57949":3,"57950":4,"57951":2,"57952":4,"57953":2,"57954":3,"57955":3,"57956":3,"57957":2,"57958":3,"57959":3,"57960":3,"57961":2,"57962":2,"57963":4,"57964":1,"57965":5,"57966":2,"57967":1,"57968":4,"57969":3,"57970":3,"57971":5,"57972":4,"57973":4,"57974":4,"57975":2,"57976":4,"57977":2,"57978":4,"57979":3,"57980":1,"57981":4,"57982":3,"57983":3,"57984":3,"57985":3,"57986":3,"57987":3,"57988":4,"57989":2,"57990":1,"57991":2,"57992":3,"57993":4,"57994":1,"57995":3,"57996":4,"57997":4,"57998":3,"57999":1,"58000":5,"58001":4,"58002":5,"58003":2,"58004":2,"58005":2,"58006":4,"58007":3,"58008":4,"58009":4,"58010":2,"58011":1,"58012":4,"58013":3,"58014":2,"58015":3,"58016":3,"58017":5,"58018":2,"58019":3,"58020":5,"58021":2,"58022":3,"58023":4,"58024":1,"58025":3,"58026":3,"58027":5,"58028":4,"58029":3,"58030":3,"58031":2,"58032":4,"58033":2,"58034":2,"58035":4,"58036":4,"58037":4,"58038":3,"58039":5,"58040":3,"58041":3,"58042":1,"58043":2,"58044":3,"58045":1,"58046":3,"58047":4,"58048":1,"58049":3,"58050":3,"58051":3,"58052":3,"58053":3,"58054":2,"58055":4,"58056":1,"58057":5,"58058":4,"58059":2,"58060":3,"58061":4,"58062":2,"58063":4,"58064":3,"58065":3,"58066":4,"58067":2,"58068":4,"58069":1,"58070":4,"58071":3,"58072":4,"58073":4,"58074":4,"58075":3,"58076":4,"58077":1,"58078":4,"58079":3,"58080":3,"58081":3,"58082":3,"58083":3,"58084":3,"58085":2,"58086":5,"58087":3,"58088":3,"58089":5,"58090":3,"58091":1,"58092":3,"58093":3,"58094":5,"58095":1,"58096":3,"58097":1,"58098":1,"58099":3,"58100":4,"58101":4,"58102":4,"58103":1,"58104":4,"58105":2,"58106":4,"58107":2,"58108":3,"58109":2,"58110":4,"58111":5,"58112":4,"58113":1,"58114":3,"58115":2,"58116":3,"58117":3,"58118":5,"58119":4,"58120":3,"58121":4,"58122":3,"58123":4,"58124":2,"58125":4,"58126":2,"58127":4,"58128":3,"58129":4,"58130":5,"58131":1,"58132":3,"58133":4,"58134":3,"58135":1,"58136":1,"58137":3,"58138":5,"58139":2,"58140":3,"58141":2,"58142":4,"58143":3,"58144":3,"58145":1,"58146":4,"58147":5,"58148":2,"58149":1,"58150":4,"58151":3,"58152":4,"58153":2,"58154":4,"58155":1,"58156":3,"58157":2,"58158":2,"58159":4,"58160":3,"58161":4,"58162":3,"58163":3,"58164":1,"58165":2,"58166":4,"58167":3,"58168":1,"58169":2,"58170":2,"58171":2,"58172":3,"58173":3,"58174":5,"58175":1,"58176":3,"58177":2,"58178":2,"58179":3,"58180":4,"58181":4,"58182":5,"58183":3,"58184":4,"58185":3,"58186":3,"58187":3,"58188":3,"58189":1,"58190":3,"58191":4,"58192":1,"58193":2,"58194":4,"58195":1,"58196":2,"58197":3,"58198":4,"58199":3,"58200":2,"58201":4,"58202":2,"58203":5,"58204":3,"58205":4,"58206":2,"58207":2,"58208":4,"58209":4,"58210":2,"58211":2,"58212":4,"58213":3,"58214":4,"58215":3,"58216":2,"58217":4,"58218":2,"58219":1,"58220":4,"58221":2,"58222":3,"58223":4,"58224":3,"58225":3,"58226":3,"58227":2,"58228":2,"58229":2,"58230":3,"58231":1,"58232":3,"58233":5,"58234":4,"58235":3,"58236":4,"58237":3,"58238":3,"58239":4,"58240":3,"58241":3,"58242":4,"58243":1,"58244":5,"58245":3,"58246":2,"58247":3,"58248":3,"58249":4,"58250":4,"58251":1,"58252":3,"58253":2,"58254":3,"58255":2,"58256":3,"58257":4,"58258":4,"58259":2,"58260":3,"58261":2,"58262":2,"58263":4,"58264":3,"58265":4,"58266":2,"58267":3,"58268":3,"58269":2,"58270":3,"58271":2,"58272":4,"58273":4,"58274":2,"58275":2,"58276":2,"58277":4,"58278":2,"58279":1,"58280":1,"58281":3,"58282":2,"58283":3,"58284":3,"58285":2,"58286":4,"58287":2,"58288":2,"58289":4,"58290":4,"58291":3,"58292":3,"58293":3,"58294":4,"58295":2,"58296":3,"58297":2,"58298":4,"58299":3,"58300":4,"58301":3,"58302":2,"58303":2,"58304":2,"58305":4,"58306":3,"58307":2,"58308":4,"58309":3,"58310":4,"58311":3,"58312":3,"58313":1,"58314":3,"58315":2,"58316":2,"58317":4,"58318":2,"58319":3,"58320":2,"58321":5,"58322":1,"58323":3,"58324":1,"58325":3,"58326":4,"58327":5,"58328":2,"58329":5,"58330":2,"58331":3,"58332":3,"58333":3,"58334":2,"58335":4,"58336":5,"58337":5,"58338":4,"58339":4,"58340":3,"58341":4,"58342":2,"58343":2,"58344":3,"58345":5,"58346":3,"58347":2,"58348":2,"58349":2,"58350":3,"58351":3,"58352":4,"58353":3,"58354":3,"58355":4,"58356":3,"58357":3,"58358":2,"58359":3,"58360":4,"58361":3,"58362":4,"58363":3,"58364":2,"58365":4,"58366":4,"58367":2,"58368":3,"58369":3,"58370":4,"58371":3,"58372":3,"58373":4,"58374":4,"58375":4,"58376":4,"58377":4,"58378":3,"58379":4,"58380":2,"58381":3,"58382":2,"58383":2,"58384":2,"58385":3,"58386":2,"58387":1,"58388":4,"58389":3,"58390":2,"58391":4,"58392":2,"58393":2,"58394":3,"58395":4,"58396":3,"58397":3,"58398":2,"58399":2,"58400":3,"58401":3,"58402":2,"58403":4,"58404":1,"58405":4,"58406":4,"58407":4,"58408":2,"58409":3,"58410":3,"58411":2,"58412":3,"58413":3,"58414":4,"58415":5,"58416":4,"58417":3,"58418":3,"58419":2,"58420":3,"58421":3,"58422":3,"58423":4,"58424":5,"58425":2,"58426":4,"58427":3,"58428":4,"58429":3,"58430":2,"58431":4,"58432":4,"58433":4,"58434":4,"58435":3,"58436":2,"58437":2,"58438":5,"58439":3,"58440":5,"58441":2,"58442":2,"58443":4,"58444":3,"58445":4,"58446":3,"58447":2,"58448":4,"58449":4,"58450":5,"58451":3,"58452":2,"58453":4,"58454":4,"58455":4,"58456":3,"58457":2,"58458":4,"58459":5,"58460":2,"58461":3,"58462":5,"58463":2,"58464":3,"58465":4,"58466":1,"58467":3,"58468":1,"58469":2,"58470":3,"58471":2,"58472":2,"58473":3,"58474":5,"58475":4,"58476":4,"58477":4,"58478":4,"58479":3,"58480":2,"58481":2,"58482":5,"58483":4,"58484":4,"58485":2,"58486":4,"58487":4,"58488":3,"58489":3,"58490":4,"58491":1,"58492":4,"58493":3,"58494":2,"58495":5,"58496":2,"58497":3,"58498":2,"58499":3,"58500":3,"58501":3,"58502":3,"58503":3,"58504":4,"58505":2,"58506":1,"58507":5,"58508":1,"58509":1,"58510":3,"58511":3,"58512":4,"58513":4,"58514":2,"58515":3,"58516":2,"58517":5,"58518":3,"58519":2,"58520":3,"58521":3,"58522":4,"58523":3,"58524":2,"58525":2,"58526":4,"58527":1,"58528":4,"58529":3,"58530":5,"58531":3,"58532":3,"58533":3,"58534":4,"58535":2,"58536":4,"58537":3,"58538":3,"58539":4,"58540":4,"58541":3,"58542":4,"58543":1,"58544":4,"58545":2,"58546":3,"58547":4,"58548":2,"58549":4,"58550":2,"58551":4,"58552":3,"58553":3,"58554":3,"58555":2,"58556":1,"58557":4,"58558":5,"58559":4,"58560":4,"58561":5,"58562":3,"58563":3,"58564":3,"58565":3,"58566":5,"58567":2,"58568":3,"58569":3,"58570":3,"58571":3,"58572":2,"58573":3,"58574":4,"58575":3,"58576":4,"58577":4,"58578":5,"58579":3,"58580":3,"58581":4,"58582":3,"58583":3,"58584":3,"58585":2,"58586":4,"58587":4,"58588":3,"58589":5,"58590":2,"58591":2,"58592":2,"58593":3,"58594":3,"58595":4,"58596":3,"58597":4,"58598":3,"58599":3,"58600":2,"58601":3,"58602":4,"58603":4,"58604":2,"58605":3,"58606":3,"58607":3,"58608":4,"58609":2,"58610":3,"58611":2,"58612":3,"58613":3,"58614":5,"58615":4,"58616":5,"58617":1,"58618":5,"58619":4,"58620":3,"58621":4,"58622":3,"58623":4,"58624":3,"58625":3,"58626":3,"58627":3,"58628":2,"58629":4,"58630":4,"58631":2,"58632":1,"58633":1,"58634":4,"58635":1,"58636":3,"58637":4,"58638":3,"58639":4,"58640":4,"58641":3,"58642":3,"58643":4,"58644":2,"58645":4,"58646":2,"58647":1,"58648":5,"58649":4,"58650":4,"58651":4,"58652":2,"58653":3,"58654":4,"58655":5,"58656":4,"58657":1,"58658":5,"58659":4,"58660":4,"58661":1,"58662":3,"58663":2,"58664":2,"58665":2,"58666":3,"58667":1,"58668":3,"58669":3,"58670":4,"58671":3,"58672":3,"58673":4,"58674":4,"58675":3,"58676":2,"58677":2,"58678":3,"58679":3,"58680":2,"58681":3,"58682":3,"58683":3,"58684":1,"58685":3,"58686":2,"58687":2,"58688":3,"58689":4,"58690":3,"58691":1,"58692":2,"58693":1,"58694":1,"58695":3,"58696":3,"58697":3,"58698":2,"58699":4,"58700":5,"58701":4,"58702":2,"58703":3,"58704":4,"58705":4,"58706":4,"58707":3,"58708":3,"58709":3,"58710":3,"58711":1,"58712":3,"58713":2,"58714":3,"58715":2,"58716":2,"58717":4,"58718":3,"58719":2,"58720":4,"58721":2,"58722":3,"58723":2,"58724":2,"58725":4,"58726":2,"58727":4,"58728":3,"58729":5,"58730":1,"58731":2,"58732":3,"58733":3,"58734":2,"58735":1,"58736":4,"58737":4,"58738":4,"58739":2,"58740":1,"58741":3,"58742":4,"58743":3,"58744":1,"58745":3,"58746":5,"58747":2,"58748":4,"58749":2,"58750":4,"58751":1,"58752":4,"58753":2,"58754":3,"58755":4,"58756":1,"58757":5,"58758":4,"58759":4,"58760":4,"58761":4,"58762":4,"58763":1,"58764":3,"58765":3,"58766":1,"58767":3,"58768":4,"58769":4,"58770":3,"58771":3,"58772":2,"58773":2,"58774":2,"58775":2,"58776":3,"58777":3,"58778":4,"58779":5,"58780":1,"58781":2,"58782":3,"58783":1,"58784":2,"58785":4,"58786":3,"58787":3,"58788":1,"58789":2,"58790":1,"58791":3,"58792":3,"58793":3,"58794":3,"58795":4,"58796":2,"58797":3,"58798":2,"58799":3,"58800":4,"58801":3,"58802":2,"58803":4,"58804":2,"58805":4,"58806":4,"58807":3,"58808":4,"58809":3,"58810":1,"58811":4,"58812":2,"58813":3,"58814":4,"58815":2,"58816":3,"58817":5,"58818":1,"58819":2,"58820":3,"58821":4,"58822":3,"58823":2,"58824":2,"58825":1,"58826":1,"58827":3,"58828":2,"58829":4,"58830":3,"58831":4,"58832":2,"58833":3,"58834":5,"58835":2,"58836":4,"58837":4,"58838":3,"58839":3,"58840":1,"58841":3,"58842":3,"58843":3,"58844":2,"58845":2,"58846":2,"58847":4,"58848":3,"58849":4,"58850":3,"58851":3,"58852":5,"58853":3,"58854":3,"58855":1,"58856":3,"58857":4,"58858":3,"58859":3,"58860":4,"58861":4,"58862":2,"58863":4,"58864":4,"58865":4,"58866":4,"58867":1,"58868":4,"58869":5,"58870":2,"58871":1,"58872":5,"58873":4,"58874":5,"58875":2,"58876":4,"58877":2,"58878":2,"58879":4,"58880":4,"58881":3,"58882":5,"58883":3,"58884":2,"58885":2,"58886":2,"58887":1,"58888":3,"58889":5,"58890":3,"58891":3,"58892":2,"58893":3,"58894":1,"58895":3,"58896":4,"58897":3,"58898":4,"58899":3,"58900":2,"58901":4,"58902":1,"58903":3,"58904":2,"58905":3,"58906":4,"58907":2,"58908":4,"58909":3,"58910":4,"58911":2,"58912":2,"58913":1,"58914":2,"58915":3,"58916":3,"58917":3,"58918":4,"58919":4,"58920":2,"58921":2,"58922":4,"58923":1,"58924":2,"58925":4,"58926":1,"58927":4,"58928":4,"58929":2,"58930":1,"58931":4,"58932":3,"58933":5,"58934":3,"58935":4,"58936":2,"58937":3,"58938":3,"58939":3,"58940":5,"58941":5,"58942":2,"58943":2,"58944":4,"58945":3,"58946":3,"58947":3,"58948":3,"58949":4,"58950":3,"58951":2,"58952":2,"58953":3,"58954":2,"58955":2,"58956":2,"58957":4,"58958":2,"58959":3,"58960":2,"58961":2,"58962":3,"58963":2,"58964":3,"58965":2,"58966":2,"58967":3,"58968":3,"58969":1,"58970":5,"58971":4,"58972":5,"58973":2,"58974":2,"58975":4,"58976":3,"58977":4,"58978":1,"58979":3,"58980":3,"58981":3,"58982":2,"58983":3,"58984":3,"58985":4,"58986":3,"58987":2,"58988":3,"58989":5,"58990":3,"58991":3,"58992":1,"58993":3,"58994":3,"58995":3,"58996":2,"58997":4,"58998":3,"58999":4,"59000":3,"59001":4,"59002":5,"59003":3,"59004":5,"59005":3,"59006":2,"59007":2,"59008":3,"59009":4,"59010":4,"59011":4,"59012":4,"59013":3,"59014":1,"59015":1,"59016":2,"59017":2,"59018":2,"59019":3,"59020":3,"59021":2,"59022":4,"59023":3,"59024":3,"59025":3,"59026":4,"59027":4,"59028":4,"59029":4,"59030":2,"59031":4,"59032":2,"59033":2,"59034":3,"59035":2,"59036":2,"59037":3,"59038":4,"59039":4,"59040":3,"59041":4,"59042":1,"59043":3,"59044":3,"59045":3,"59046":3,"59047":2,"59048":4,"59049":3,"59050":2,"59051":4,"59052":4,"59053":3,"59054":4,"59055":2,"59056":4,"59057":2,"59058":3,"59059":3,"59060":2,"59061":4,"59062":3,"59063":3,"59064":2,"59065":3,"59066":1,"59067":3,"59068":2,"59069":2,"59070":4,"59071":3,"59072":3,"59073":2,"59074":3,"59075":5,"59076":4,"59077":1,"59078":3,"59079":3,"59080":4,"59081":1,"59082":3,"59083":3,"59084":2,"59085":3,"59086":4,"59087":3,"59088":1,"59089":4,"59090":4,"59091":4,"59092":2,"59093":3,"59094":1,"59095":3,"59096":4,"59097":5,"59098":1,"59099":1,"59100":3,"59101":4,"59102":3,"59103":4,"59104":3,"59105":5,"59106":3,"59107":2,"59108":2,"59109":4,"59110":4,"59111":4,"59112":3,"59113":2,"59114":5,"59115":2,"59116":2,"59117":3,"59118":4,"59119":3,"59120":3,"59121":2,"59122":4,"59123":2,"59124":2,"59125":3,"59126":3,"59127":4,"59128":3,"59129":1,"59130":3,"59131":4,"59132":1,"59133":3,"59134":2,"59135":2,"59136":4,"59137":5,"59138":2,"59139":4,"59140":4,"59141":5,"59142":2,"59143":4,"59144":2,"59145":3,"59146":3,"59147":4,"59148":2,"59149":2,"59150":2,"59151":3,"59152":3,"59153":3,"59154":2,"59155":2,"59156":3,"59157":1,"59158":1,"59159":3,"59160":3,"59161":3,"59162":4,"59163":5,"59164":3,"59165":4,"59166":3,"59167":5,"59168":4,"59169":1,"59170":4,"59171":2,"59172":4,"59173":2,"59174":3,"59175":3,"59176":4,"59177":3,"59178":3,"59179":3,"59180":3,"59181":4,"59182":3,"59183":3,"59184":5,"59185":3,"59186":2,"59187":2,"59188":4,"59189":3,"59190":4,"59191":4,"59192":5,"59193":1,"59194":2,"59195":3,"59196":1,"59197":3,"59198":3,"59199":3,"59200":4,"59201":1,"59202":3,"59203":3,"59204":4,"59205":4,"59206":3,"59207":1,"59208":5,"59209":4,"59210":5,"59211":2,"59212":2,"59213":4,"59214":3,"59215":2,"59216":4,"59217":3,"59218":3,"59219":3,"59220":3,"59221":5,"59222":2,"59223":3,"59224":2,"59225":4,"59226":3,"59227":2,"59228":3,"59229":5,"59230":2,"59231":1,"59232":2,"59233":2,"59234":4,"59235":4,"59236":3,"59237":2,"59238":3,"59239":4,"59240":3,"59241":2,"59242":3,"59243":3,"59244":3,"59245":2,"59246":3,"59247":4,"59248":2,"59249":4,"59250":2,"59251":2,"59252":2,"59253":1,"59254":3,"59255":3,"59256":4,"59257":1,"59258":4,"59259":2,"59260":4,"59261":2,"59262":4,"59263":3,"59264":2,"59265":3,"59266":3,"59267":4,"59268":4,"59269":3,"59270":3,"59271":5,"59272":3,"59273":2,"59274":4,"59275":4,"59276":4,"59277":3,"59278":3,"59279":2,"59280":4,"59281":4,"59282":2,"59283":3,"59284":2,"59285":4,"59286":1,"59287":3,"59288":5,"59289":2,"59290":3,"59291":5,"59292":5,"59293":4,"59294":1,"59295":5,"59296":3,"59297":3,"59298":4,"59299":3,"59300":4,"59301":3,"59302":1,"59303":4,"59304":5,"59305":3,"59306":2,"59307":2,"59308":2,"59309":3,"59310":2,"59311":3,"59312":3,"59313":3,"59314":4,"59315":2,"59316":2,"59317":4,"59318":3,"59319":2,"59320":4,"59321":4,"59322":2,"59323":4,"59324":2,"59325":4,"59326":1,"59327":3,"59328":3,"59329":5,"59330":4,"59331":4,"59332":2,"59333":3,"59334":3,"59335":4,"59336":3,"59337":1,"59338":4,"59339":2,"59340":4,"59341":3,"59342":3,"59343":3,"59344":3,"59345":1,"59346":5,"59347":5,"59348":2,"59349":2,"59350":4,"59351":3,"59352":4,"59353":3,"59354":3,"59355":4,"59356":3,"59357":4,"59358":3,"59359":2,"59360":4,"59361":5,"59362":2,"59363":3,"59364":4,"59365":3,"59366":4,"59367":3,"59368":3,"59369":3,"59370":4,"59371":2,"59372":1,"59373":2,"59374":4,"59375":5,"59376":4,"59377":3,"59378":2,"59379":4,"59380":2,"59381":2,"59382":3,"59383":2,"59384":3,"59385":3,"59386":1,"59387":3,"59388":3,"59389":4,"59390":1,"59391":5,"59392":2,"59393":1,"59394":4,"59395":4,"59396":2,"59397":2,"59398":3,"59399":3,"59400":2,"59401":4,"59402":2,"59403":2,"59404":4,"59405":3,"59406":4,"59407":3,"59408":5,"59409":3,"59410":2,"59411":3,"59412":5,"59413":3,"59414":1,"59415":3,"59416":4,"59417":4,"59418":3,"59419":5,"59420":2,"59421":2,"59422":4,"59423":3,"59424":3,"59425":3,"59426":4,"59427":4,"59428":4,"59429":1,"59430":5,"59431":4,"59432":4,"59433":4,"59434":2,"59435":3,"59436":2,"59437":5,"59438":4,"59439":2,"59440":4,"59441":3,"59442":3,"59443":2,"59444":2,"59445":4,"59446":3,"59447":4,"59448":4,"59449":1,"59450":2,"59451":3,"59452":4,"59453":3,"59454":4,"59455":2,"59456":1,"59457":3,"59458":2,"59459":3,"59460":3,"59461":4,"59462":2,"59463":3,"59464":3,"59465":4,"59466":3,"59467":2,"59468":5,"59469":1,"59470":1,"59471":1,"59472":5,"59473":5,"59474":3,"59475":4,"59476":1,"59477":2,"59478":4,"59479":1,"59480":1,"59481":1,"59482":4,"59483":2,"59484":4,"59485":1,"59486":4,"59487":4,"59488":3,"59489":2,"59490":2,"59491":3,"59492":1,"59493":3,"59494":3,"59495":2,"59496":3,"59497":3,"59498":3,"59499":3,"59500":4,"59501":3,"59502":1,"59503":2,"59504":4,"59505":5,"59506":4,"59507":5,"59508":4,"59509":5,"59510":3,"59511":5,"59512":4,"59513":3,"59514":3,"59515":2,"59516":4,"59517":2,"59518":1,"59519":2,"59520":2,"59521":2,"59522":2,"59523":4,"59524":5,"59525":3,"59526":3,"59527":1,"59528":5,"59529":2,"59530":4,"59531":3,"59532":3,"59533":3,"59534":4,"59535":2,"59536":4,"59537":3,"59538":3,"59539":1,"59540":3,"59541":3,"59542":3,"59543":2,"59544":3,"59545":3,"59546":2,"59547":3,"59548":2,"59549":3,"59550":3,"59551":4,"59552":4,"59553":3,"59554":3,"59555":2,"59556":1,"59557":1,"59558":1,"59559":3,"59560":4,"59561":5,"59562":3,"59563":3,"59564":1,"59565":2,"59566":1,"59567":2,"59568":5,"59569":3,"59570":1,"59571":4,"59572":4,"59573":2,"59574":2,"59575":3,"59576":2,"59577":2,"59578":3,"59579":2,"59580":3,"59581":2,"59582":3,"59583":2,"59584":4,"59585":3,"59586":4,"59587":3,"59588":4,"59589":1,"59590":2,"59591":3,"59592":2,"59593":2,"59594":2,"59595":3,"59596":2,"59597":3,"59598":3,"59599":3,"59600":4,"59601":3,"59602":2,"59603":3,"59604":4,"59605":2,"59606":5,"59607":3,"59608":4,"59609":3,"59610":2,"59611":4,"59612":4,"59613":1,"59614":5,"59615":3,"59616":1,"59617":3,"59618":1,"59619":3,"59620":2,"59621":2,"59622":4,"59623":2,"59624":4,"59625":4,"59626":4,"59627":2,"59628":4,"59629":4,"59630":2,"59631":3,"59632":4,"59633":2,"59634":3,"59635":4,"59636":5,"59637":3,"59638":3,"59639":3,"59640":2,"59641":3,"59642":3,"59643":1,"59644":5,"59645":3,"59646":2,"59647":4,"59648":2,"59649":3,"59650":1,"59651":4,"59652":3,"59653":4,"59654":4,"59655":2,"59656":3,"59657":3,"59658":4,"59659":3,"59660":2,"59661":3,"59662":5,"59663":3,"59664":1,"59665":3,"59666":3,"59667":2,"59668":2,"59669":2,"59670":2,"59671":4,"59672":2,"59673":3,"59674":2,"59675":3,"59676":4,"59677":1,"59678":4,"59679":2,"59680":3,"59681":3,"59682":3,"59683":3,"59684":2,"59685":3,"59686":4,"59687":3,"59688":4,"59689":3,"59690":3,"59691":1,"59692":3,"59693":5,"59694":4,"59695":3,"59696":1,"59697":3,"59698":3,"59699":2,"59700":3,"59701":3,"59702":1,"59703":1,"59704":2,"59705":3,"59706":3,"59707":4,"59708":4,"59709":1,"59710":4,"59711":3,"59712":3,"59713":4,"59714":4,"59715":3,"59716":1,"59717":4,"59718":3,"59719":4,"59720":3,"59721":2,"59722":3,"59723":4,"59724":4,"59725":1,"59726":2,"59727":2,"59728":4,"59729":3,"59730":3,"59731":3,"59732":3,"59733":3,"59734":4,"59735":1,"59736":3,"59737":4,"59738":2,"59739":2,"59740":3,"59741":4,"59742":1,"59743":3,"59744":5,"59745":3,"59746":2,"59747":3,"59748":2,"59749":4,"59750":2,"59751":5,"59752":3,"59753":1,"59754":3,"59755":1,"59756":1,"59757":1,"59758":2,"59759":5,"59760":2,"59761":2,"59762":3,"59763":2,"59764":3,"59765":3,"59766":2,"59767":1,"59768":4,"59769":4,"59770":2,"59771":3,"59772":5,"59773":3,"59774":3,"59775":4,"59776":2,"59777":1,"59778":3,"59779":2,"59780":2,"59781":3,"59782":1,"59783":3,"59784":1,"59785":3,"59786":3,"59787":1,"59788":1,"59789":3,"59790":1,"59791":3,"59792":4,"59793":5,"59794":3,"59795":3,"59796":2,"59797":1,"59798":1,"59799":2,"59800":3,"59801":4,"59802":2,"59803":4,"59804":2,"59805":3,"59806":3,"59807":5,"59808":2,"59809":1,"59810":4,"59811":2,"59812":3,"59813":4,"59814":3,"59815":2,"59816":1,"59817":3,"59818":3,"59819":3,"59820":4,"59821":3,"59822":3,"59823":3,"59824":3,"59825":4,"59826":5,"59827":4,"59828":3,"59829":3,"59830":2,"59831":4,"59832":4,"59833":3,"59834":3,"59835":3,"59836":2,"59837":3,"59838":3,"59839":3,"59840":4,"59841":5,"59842":3,"59843":4,"59844":4,"59845":1,"59846":1,"59847":4,"59848":5,"59849":3,"59850":2,"59851":1,"59852":2,"59853":3,"59854":5,"59855":4,"59856":4,"59857":4,"59858":5,"59859":1,"59860":4,"59861":3,"59862":3,"59863":4,"59864":3,"59865":2,"59866":3,"59867":1,"59868":4,"59869":3,"59870":1,"59871":1,"59872":3,"59873":2,"59874":3,"59875":3,"59876":3,"59877":1,"59878":2,"59879":4,"59880":3,"59881":4,"59882":3,"59883":4,"59884":3,"59885":3,"59886":2,"59887":2,"59888":3,"59889":3,"59890":4,"59891":3,"59892":3,"59893":3,"59894":2,"59895":3,"59896":2,"59897":4,"59898":3,"59899":2,"59900":3,"59901":3,"59902":5,"59903":3,"59904":5,"59905":3,"59906":4,"59907":3,"59908":4,"59909":3,"59910":3,"59911":4,"59912":4,"59913":1,"59914":5,"59915":4,"59916":4,"59917":5,"59918":2,"59919":3,"59920":3,"59921":1,"59922":3,"59923":2,"59924":5,"59925":3,"59926":2,"59927":3,"59928":3,"59929":3,"59930":2,"59931":3,"59932":1,"59933":4,"59934":3,"59935":3,"59936":2,"59937":4,"59938":3,"59939":3,"59940":2,"59941":1,"59942":3,"59943":4,"59944":3,"59945":3,"59946":4,"59947":2,"59948":2,"59949":5,"59950":4,"59951":4,"59952":1,"59953":3,"59954":3,"59955":2,"59956":2,"59957":3,"59958":2,"59959":3,"59960":4,"59961":5,"59962":2,"59963":3,"59964":3,"59965":1,"59966":3,"59967":4,"59968":4,"59969":2,"59970":3,"59971":3,"59972":2,"59973":1,"59974":4,"59975":2,"59976":5,"59977":2,"59978":2,"59979":4,"59980":4,"59981":3,"59982":4,"59983":2,"59984":3,"59985":3,"59986":3,"59987":3,"59988":4,"59989":2,"59990":4,"59991":4,"59992":3,"59993":2,"59994":1,"59995":2,"59996":3,"59997":2,"59998":4,"59999":5,"60000":3,"60001":2,"60002":4,"60003":2,"60004":3,"60005":4,"60006":2,"60007":5,"60008":1,"60009":4,"60010":2,"60011":3,"60012":4,"60013":2,"60014":3,"60015":2,"60016":4,"60017":3,"60018":4,"60019":4,"60020":3,"60021":5,"60022":2,"60023":4,"60024":4,"60025":3,"60026":5,"60027":2,"60028":3,"60029":3,"60030":4,"60031":3,"60032":4,"60033":2,"60034":3,"60035":3,"60036":3,"60037":4,"60038":3,"60039":4,"60040":2,"60041":4,"60042":3,"60043":5,"60044":2,"60045":3,"60046":1,"60047":3,"60048":3,"60049":3,"60050":3,"60051":4,"60052":1,"60053":2,"60054":3,"60055":3,"60056":4,"60057":3,"60058":3,"60059":4,"60060":4,"60061":3,"60062":4,"60063":2,"60064":4,"60065":3,"60066":4,"60067":1,"60068":4,"60069":3,"60070":2,"60071":4,"60072":4,"60073":1,"60074":4,"60075":2,"60076":2,"60077":3,"60078":2,"60079":2,"60080":2,"60081":4,"60082":3,"60083":3,"60084":4,"60085":1,"60086":5,"60087":3,"60088":3,"60089":2,"60090":3,"60091":4,"60092":4,"60093":4,"60094":1,"60095":3,"60096":2,"60097":4,"60098":5,"60099":4,"60100":5,"60101":2,"60102":2,"60103":5,"60104":1,"60105":3,"60106":3,"60107":2,"60108":2,"60109":3,"60110":3,"60111":3,"60112":5,"60113":1,"60114":4,"60115":2,"60116":2,"60117":3,"60118":3,"60119":1,"60120":2,"60121":2,"60122":3,"60123":4,"60124":3,"60125":5,"60126":3,"60127":4,"60128":4,"60129":3,"60130":3,"60131":2,"60132":2,"60133":4,"60134":2,"60135":4,"60136":1,"60137":3,"60138":2,"60139":4,"60140":3,"60141":3,"60142":4,"60143":2,"60144":4,"60145":4,"60146":4,"60147":3,"60148":5,"60149":4,"60150":3,"60151":5,"60152":4,"60153":2,"60154":3,"60155":3,"60156":4,"60157":3,"60158":4,"60159":4,"60160":1,"60161":4,"60162":1,"60163":4,"60164":4,"60165":4,"60166":3,"60167":5,"60168":4,"60169":3,"60170":4,"60171":2,"60172":1,"60173":3,"60174":4,"60175":2,"60176":2,"60177":4,"60178":2,"60179":2,"60180":4,"60181":5,"60182":2,"60183":2,"60184":3,"60185":3,"60186":3,"60187":2,"60188":1,"60189":2,"60190":3,"60191":4,"60192":3,"60193":2,"60194":2,"60195":3,"60196":3,"60197":4,"60198":4,"60199":3,"60200":3,"60201":3,"60202":3,"60203":3,"60204":3,"60205":3,"60206":4,"60207":2,"60208":4,"60209":3,"60210":3,"60211":3,"60212":1,"60213":3,"60214":4,"60215":1,"60216":3,"60217":1,"60218":2,"60219":3,"60220":1,"60221":2,"60222":3,"60223":1,"60224":5,"60225":4,"60226":1,"60227":2,"60228":4,"60229":5,"60230":5,"60231":3,"60232":4,"60233":1,"60234":3,"60235":5,"60236":1,"60237":2,"60238":3,"60239":3,"60240":5,"60241":1,"60242":1,"60243":1,"60244":3,"60245":3,"60246":3,"60247":5,"60248":4,"60249":3,"60250":3,"60251":3,"60252":1,"60253":3,"60254":4,"60255":3,"60256":3,"60257":2,"60258":4,"60259":3,"60260":4,"60261":3,"60262":2,"60263":4,"60264":2,"60265":2,"60266":3,"60267":5,"60268":2,"60269":3,"60270":3,"60271":4,"60272":3,"60273":3,"60274":3,"60275":1,"60276":3,"60277":4,"60278":2,"60279":4,"60280":4,"60281":2,"60282":2,"60283":2,"60284":4,"60285":3,"60286":2,"60287":3,"60288":3,"60289":1,"60290":4,"60291":2,"60292":2,"60293":4,"60294":4,"60295":4,"60296":5,"60297":1,"60298":2,"60299":2,"60300":3,"60301":3,"60302":3,"60303":4,"60304":3,"60305":4,"60306":3,"60307":4,"60308":1,"60309":4,"60310":2,"60311":3,"60312":3,"60313":3,"60314":2,"60315":4,"60316":4,"60317":2,"60318":4,"60319":3,"60320":3,"60321":2,"60322":2,"60323":5,"60324":1,"60325":4,"60326":2,"60327":1,"60328":4,"60329":3,"60330":3,"60331":4,"60332":2,"60333":5,"60334":2,"60335":3,"60336":3,"60337":5,"60338":3,"60339":3,"60340":4,"60341":4,"60342":3,"60343":3,"60344":2,"60345":3,"60346":3,"60347":4,"60348":2,"60349":3,"60350":4,"60351":4,"60352":1,"60353":4,"60354":5,"60355":2,"60356":4,"60357":1,"60358":3,"60359":3,"60360":4,"60361":1,"60362":3,"60363":2,"60364":3,"60365":3,"60366":1,"60367":1,"60368":4,"60369":1,"60370":3,"60371":3,"60372":3,"60373":3,"60374":4,"60375":2,"60376":1,"60377":3,"60378":3,"60379":1,"60380":1,"60381":2,"60382":3,"60383":4,"60384":3,"60385":2,"60386":3,"60387":4,"60388":4,"60389":2,"60390":3,"60391":4,"60392":4,"60393":3,"60394":4,"60395":4,"60396":2,"60397":3,"60398":3,"60399":4,"60400":2,"60401":4,"60402":3,"60403":4,"60404":5,"60405":3,"60406":5,"60407":4,"60408":3,"60409":4,"60410":4,"60411":3,"60412":3,"60413":3,"60414":3,"60415":2,"60416":4,"60417":4,"60418":3,"60419":4,"60420":1,"60421":1,"60422":3,"60423":4,"60424":2,"60425":3,"60426":2,"60427":4,"60428":3,"60429":3,"60430":5,"60431":4,"60432":5,"60433":1,"60434":5,"60435":3,"60436":3,"60437":3,"60438":2,"60439":4,"60440":4,"60441":3,"60442":4,"60443":3,"60444":2,"60445":3,"60446":2,"60447":5,"60448":3,"60449":3,"60450":4,"60451":3,"60452":2,"60453":2,"60454":3,"60455":3,"60456":4,"60457":3,"60458":4,"60459":2,"60460":5,"60461":2,"60462":1,"60463":4,"60464":1,"60465":3,"60466":3,"60467":3,"60468":1,"60469":3,"60470":3,"60471":2,"60472":4,"60473":3,"60474":4,"60475":4,"60476":2,"60477":3,"60478":3,"60479":4,"60480":4,"60481":5,"60482":2,"60483":4,"60484":4,"60485":3,"60486":1,"60487":3,"60488":3,"60489":3,"60490":1,"60491":2,"60492":3,"60493":2,"60494":5,"60495":2,"60496":4,"60497":2,"60498":3,"60499":3,"60500":3,"60501":4,"60502":3,"60503":1,"60504":3,"60505":4,"60506":3,"60507":3,"60508":2,"60509":1,"60510":3,"60511":2,"60512":4,"60513":2,"60514":2,"60515":4,"60516":1,"60517":4,"60518":1,"60519":4,"60520":4,"60521":2,"60522":3,"60523":3,"60524":4,"60525":3,"60526":3,"60527":3,"60528":2,"60529":5,"60530":2,"60531":4,"60532":3,"60533":5,"60534":1,"60535":3,"60536":2,"60537":4,"60538":4,"60539":5,"60540":1,"60541":4,"60542":2,"60543":2,"60544":3,"60545":3,"60546":2,"60547":1,"60548":3,"60549":3,"60550":2,"60551":3,"60552":3,"60553":3,"60554":2,"60555":3,"60556":3,"60557":4,"60558":4,"60559":3,"60560":5,"60561":4,"60562":4,"60563":4,"60564":3,"60565":1,"60566":4,"60567":1,"60568":4,"60569":3,"60570":2,"60571":3,"60572":2,"60573":2,"60574":1,"60575":5,"60576":4,"60577":4,"60578":3,"60579":4,"60580":3,"60581":3,"60582":3,"60583":3,"60584":3,"60585":3,"60586":1,"60587":2,"60588":2,"60589":3,"60590":3,"60591":3,"60592":4,"60593":3,"60594":3,"60595":3,"60596":3,"60597":5,"60598":4,"60599":2,"60600":4,"60601":4,"60602":2,"60603":4,"60604":2,"60605":2,"60606":2,"60607":4,"60608":4,"60609":3,"60610":1,"60611":4,"60612":3,"60613":4,"60614":3,"60615":2,"60616":4,"60617":3,"60618":3,"60619":3,"60620":3,"60621":5,"60622":3,"60623":3,"60624":3,"60625":2,"60626":4,"60627":3,"60628":5,"60629":3,"60630":3,"60631":4,"60632":3,"60633":2,"60634":4,"60635":4,"60636":2,"60637":2,"60638":2,"60639":4,"60640":4,"60641":5,"60642":1,"60643":4,"60644":3,"60645":1,"60646":3,"60647":4,"60648":3,"60649":2,"60650":3,"60651":5,"60652":4,"60653":5,"60654":3,"60655":3,"60656":4,"60657":4,"60658":3,"60659":2,"60660":3,"60661":2,"60662":4,"60663":3,"60664":5,"60665":3,"60666":4,"60667":5,"60668":4,"60669":4,"60670":5,"60671":2,"60672":3,"60673":4,"60674":3,"60675":2,"60676":4,"60677":3,"60678":3,"60679":4,"60680":3,"60681":3,"60682":3,"60683":3,"60684":3,"60685":3,"60686":2,"60687":3,"60688":1,"60689":2,"60690":3,"60691":2,"60692":3,"60693":4,"60694":3,"60695":3,"60696":3,"60697":4,"60698":4,"60699":5,"60700":3,"60701":3,"60702":2,"60703":3,"60704":4,"60705":4,"60706":4,"60707":2,"60708":1,"60709":4,"60710":2,"60711":5,"60712":2,"60713":2,"60714":3,"60715":1,"60716":4,"60717":3,"60718":2,"60719":3,"60720":3,"60721":3,"60722":4,"60723":4,"60724":2,"60725":3,"60726":2,"60727":1,"60728":3,"60729":1,"60730":4,"60731":1,"60732":3,"60733":2,"60734":2,"60735":2,"60736":4,"60737":3,"60738":3,"60739":3,"60740":5,"60741":2,"60742":3,"60743":4,"60744":4,"60745":3,"60746":2,"60747":5,"60748":2,"60749":5,"60750":2,"60751":3,"60752":1,"60753":3,"60754":5,"60755":3,"60756":1,"60757":4,"60758":3,"60759":1,"60760":4,"60761":4,"60762":2,"60763":4,"60764":3,"60765":3,"60766":4,"60767":3,"60768":1,"60769":2,"60770":3,"60771":4,"60772":4,"60773":3,"60774":3,"60775":1,"60776":3,"60777":4,"60778":3,"60779":1,"60780":4,"60781":3,"60782":3,"60783":2,"60784":1,"60785":2,"60786":2,"60787":3,"60788":4,"60789":1,"60790":2,"60791":3,"60792":2,"60793":3,"60794":2,"60795":1,"60796":3,"60797":5,"60798":4,"60799":3,"60800":4,"60801":1,"60802":3,"60803":2,"60804":2,"60805":3,"60806":4,"60807":4,"60808":1,"60809":5,"60810":3,"60811":3,"60812":4,"60813":3,"60814":2,"60815":3,"60816":3,"60817":4,"60818":2,"60819":4,"60820":5,"60821":2,"60822":3,"60823":3,"60824":5,"60825":1,"60826":2,"60827":3,"60828":2,"60829":3,"60830":2,"60831":2,"60832":3,"60833":4,"60834":3,"60835":3,"60836":2,"60837":2,"60838":2,"60839":4,"60840":3,"60841":4,"60842":1,"60843":2,"60844":3,"60845":3,"60846":4,"60847":3,"60848":3,"60849":2,"60850":1,"60851":5,"60852":4,"60853":1,"60854":4,"60855":3,"60856":4,"60857":3,"60858":3,"60859":4,"60860":5,"60861":2,"60862":3,"60863":4,"60864":5,"60865":3,"60866":4,"60867":5,"60868":3,"60869":2,"60870":2,"60871":1,"60872":2,"60873":3,"60874":5,"60875":2,"60876":4,"60877":2,"60878":3,"60879":1,"60880":2,"60881":2,"60882":3,"60883":3,"60884":3,"60885":3,"60886":3,"60887":1,"60888":5,"60889":2,"60890":2,"60891":2,"60892":2,"60893":2,"60894":4,"60895":1,"60896":4,"60897":3,"60898":1,"60899":3,"60900":4,"60901":2,"60902":2,"60903":4,"60904":3,"60905":3,"60906":3,"60907":2,"60908":3,"60909":4,"60910":2,"60911":1,"60912":4,"60913":3,"60914":1,"60915":3,"60916":5,"60917":3,"60918":2,"60919":2,"60920":3,"60921":1,"60922":1,"60923":3,"60924":4,"60925":4,"60926":4,"60927":2,"60928":3,"60929":2,"60930":2,"60931":2,"60932":3,"60933":4,"60934":2,"60935":4,"60936":3,"60937":4,"60938":4,"60939":4,"60940":4,"60941":1,"60942":2,"60943":3,"60944":4,"60945":2,"60946":3,"60947":2,"60948":1,"60949":2,"60950":3,"60951":3,"60952":3,"60953":3,"60954":3,"60955":4,"60956":4,"60957":2,"60958":3,"60959":3,"60960":2,"60961":4,"60962":4,"60963":3,"60964":3,"60965":5,"60966":3,"60967":3,"60968":2,"60969":1,"60970":3,"60971":4,"60972":4,"60973":3,"60974":3,"60975":4,"60976":4,"60977":4,"60978":4,"60979":3,"60980":4,"60981":3,"60982":2,"60983":2,"60984":2,"60985":5,"60986":1,"60987":3,"60988":3,"60989":2,"60990":2,"60991":3,"60992":4,"60993":3,"60994":2,"60995":1,"60996":4,"60997":4,"60998":4,"60999":3,"61000":1,"61001":4,"61002":2,"61003":2,"61004":3,"61005":4,"61006":4,"61007":3,"61008":2,"61009":2,"61010":2,"61011":2,"61012":4,"61013":1,"61014":3,"61015":3,"61016":4,"61017":3,"61018":3,"61019":4,"61020":3,"61021":4,"61022":4,"61023":2,"61024":1,"61025":3,"61026":1,"61027":2,"61028":3,"61029":2,"61030":3,"61031":3,"61032":2,"61033":4,"61034":5,"61035":2,"61036":5,"61037":2,"61038":5,"61039":2,"61040":3,"61041":4,"61042":2,"61043":4,"61044":1,"61045":4,"61046":2,"61047":1,"61048":2,"61049":5,"61050":5,"61051":2,"61052":4,"61053":4,"61054":3,"61055":4,"61056":4,"61057":5,"61058":4,"61059":3,"61060":1,"61061":3,"61062":1,"61063":2,"61064":5,"61065":3,"61066":3,"61067":3,"61068":3,"61069":3,"61070":4,"61071":3,"61072":3,"61073":4,"61074":2,"61075":3,"61076":4,"61077":3,"61078":4,"61079":1,"61080":1,"61081":4,"61082":3,"61083":4,"61084":3,"61085":5,"61086":3,"61087":4,"61088":2,"61089":2,"61090":4,"61091":1,"61092":3,"61093":3,"61094":3,"61095":4,"61096":2,"61097":4,"61098":3,"61099":4,"61100":3,"61101":2,"61102":4,"61103":1,"61104":2,"61105":1,"61106":2,"61107":4,"61108":3,"61109":2,"61110":2,"61111":4,"61112":2,"61113":3,"61114":4,"61115":3,"61116":5,"61117":3,"61118":3,"61119":1,"61120":2,"61121":4,"61122":3,"61123":1,"61124":2,"61125":2,"61126":1,"61127":2,"61128":1,"61129":2,"61130":4,"61131":2,"61132":3,"61133":2,"61134":4,"61135":3,"61136":4,"61137":3,"61138":3,"61139":4,"61140":4,"61141":4,"61142":4,"61143":2,"61144":2,"61145":3,"61146":3,"61147":5,"61148":2,"61149":2,"61150":3,"61151":2,"61152":3,"61153":3,"61154":5,"61155":4,"61156":3,"61157":3,"61158":2,"61159":5,"61160":4,"61161":5,"61162":4,"61163":3,"61164":3,"61165":2,"61166":4,"61167":4,"61168":4,"61169":2,"61170":2,"61171":2,"61172":4,"61173":3,"61174":2,"61175":2,"61176":2,"61177":3,"61178":2,"61179":1,"61180":4,"61181":5,"61182":4,"61183":3,"61184":2,"61185":2,"61186":3,"61187":4,"61188":4,"61189":2,"61190":3,"61191":3,"61192":2,"61193":4,"61194":3,"61195":1,"61196":3,"61197":5,"61198":3,"61199":4,"61200":3,"61201":4,"61202":5,"61203":4,"61204":5,"61205":2,"61206":3,"61207":1,"61208":4,"61209":1,"61210":1,"61211":4,"61212":5,"61213":1,"61214":2,"61215":1,"61216":5,"61217":3,"61218":1,"61219":3,"61220":3,"61221":4,"61222":1,"61223":4,"61224":5,"61225":2,"61226":3,"61227":3,"61228":2,"61229":4,"61230":4,"61231":3,"61232":3,"61233":3,"61234":2,"61235":1,"61236":2,"61237":2,"61238":3,"61239":5,"61240":2,"61241":5,"61242":3,"61243":2,"61244":5,"61245":2,"61246":5,"61247":2,"61248":2,"61249":1,"61250":3,"61251":3,"61252":4,"61253":2,"61254":2,"61255":2,"61256":3,"61257":3,"61258":2,"61259":3,"61260":1,"61261":3,"61262":4,"61263":2,"61264":2,"61265":4,"61266":3,"61267":2,"61268":4,"61269":3,"61270":4,"61271":4,"61272":2,"61273":3,"61274":3,"61275":4,"61276":3,"61277":2,"61278":3,"61279":2,"61280":5,"61281":3,"61282":2,"61283":2,"61284":3,"61285":4,"61286":3,"61287":3,"61288":1,"61289":3,"61290":3,"61291":4,"61292":2,"61293":1,"61294":4,"61295":2,"61296":2,"61297":3,"61298":5,"61299":3,"61300":3,"61301":2,"61302":3,"61303":2,"61304":4,"61305":2,"61306":4,"61307":4,"61308":4,"61309":3,"61310":3,"61311":4,"61312":4,"61313":4,"61314":4,"61315":4,"61316":3,"61317":4,"61318":1,"61319":3,"61320":4,"61321":3,"61322":4,"61323":2,"61324":5,"61325":4,"61326":3,"61327":2,"61328":3,"61329":4,"61330":4,"61331":3,"61332":3,"61333":3,"61334":2,"61335":3,"61336":3,"61337":5,"61338":2,"61339":4,"61340":3,"61341":3,"61342":1,"61343":3,"61344":3,"61345":3,"61346":3,"61347":3,"61348":3,"61349":2,"61350":1,"61351":2,"61352":3,"61353":4,"61354":5,"61355":2,"61356":4,"61357":1,"61358":4,"61359":4,"61360":3,"61361":4,"61362":2,"61363":3,"61364":4,"61365":1,"61366":4,"61367":5,"61368":2,"61369":3,"61370":1,"61371":4,"61372":3,"61373":4,"61374":3,"61375":2,"61376":2,"61377":1,"61378":5,"61379":4,"61380":3,"61381":3,"61382":3,"61383":3,"61384":3,"61385":4,"61386":4,"61387":2,"61388":3,"61389":4,"61390":3,"61391":1,"61392":1,"61393":4,"61394":1,"61395":3,"61396":4,"61397":4,"61398":2,"61399":1,"61400":2,"61401":4,"61402":3,"61403":3,"61404":4,"61405":2,"61406":4,"61407":4,"61408":3,"61409":4,"61410":1,"61411":3,"61412":1,"61413":4,"61414":1,"61415":2,"61416":3,"61417":3,"61418":2,"61419":5,"61420":3,"61421":3,"61422":2,"61423":2,"61424":3,"61425":4,"61426":2,"61427":1,"61428":1,"61429":4,"61430":1,"61431":3,"61432":3,"61433":5,"61434":4,"61435":3,"61436":5,"61437":5,"61438":3,"61439":2,"61440":3,"61441":4,"61442":2,"61443":2,"61444":1,"61445":3,"61446":2,"61447":4,"61448":3,"61449":3,"61450":3,"61451":4,"61452":2,"61453":3,"61454":3,"61455":4,"61456":2,"61457":3,"61458":4,"61459":3,"61460":2,"61461":3,"61462":2,"61463":2,"61464":3,"61465":2,"61466":4,"61467":3,"61468":2,"61469":4,"61470":2,"61471":1,"61472":3,"61473":2,"61474":3,"61475":3,"61476":2,"61477":4,"61478":4,"61479":3,"61480":4,"61481":2,"61482":5,"61483":4,"61484":4,"61485":3,"61486":3,"61487":3,"61488":5,"61489":2,"61490":4,"61491":3,"61492":4,"61493":4,"61494":4,"61495":4,"61496":1,"61497":3,"61498":3,"61499":2,"61500":2,"61501":1,"61502":3,"61503":2,"61504":1,"61505":4,"61506":3,"61507":3,"61508":1,"61509":3,"61510":1,"61511":4,"61512":3,"61513":3,"61514":2,"61515":3,"61516":3,"61517":4,"61518":2,"61519":4,"61520":3,"61521":2,"61522":4,"61523":3,"61524":3,"61525":1,"61526":4,"61527":3,"61528":2,"61529":2,"61530":2,"61531":1,"61532":3,"61533":1,"61534":3,"61535":3,"61536":4,"61537":3,"61538":2,"61539":4,"61540":2,"61541":1,"61542":1,"61543":2,"61544":4,"61545":4,"61546":4,"61547":4,"61548":2,"61549":4,"61550":3,"61551":3,"61552":4,"61553":4,"61554":2,"61555":3,"61556":5,"61557":4,"61558":1,"61559":3,"61560":4,"61561":1,"61562":2,"61563":4,"61564":2,"61565":2,"61566":4,"61567":5,"61568":4,"61569":3,"61570":4,"61571":5,"61572":1,"61573":3,"61574":1,"61575":3,"61576":1,"61577":1,"61578":4,"61579":3,"61580":4,"61581":4,"61582":2,"61583":4,"61584":3,"61585":5,"61586":2,"61587":2,"61588":3,"61589":1,"61590":4,"61591":3,"61592":3,"61593":3,"61594":2,"61595":3,"61596":5,"61597":3,"61598":4,"61599":3,"61600":4,"61601":5,"61602":4,"61603":4,"61604":3,"61605":2,"61606":4,"61607":3,"61608":5,"61609":3,"61610":2,"61611":2,"61612":5,"61613":2,"61614":5,"61615":2,"61616":4,"61617":1,"61618":2,"61619":3,"61620":2,"61621":3,"61622":2,"61623":5,"61624":2,"61625":4,"61626":3,"61627":1,"61628":3,"61629":4,"61630":4,"61631":4,"61632":2,"61633":4,"61634":3,"61635":3,"61636":3,"61637":3,"61638":3,"61639":2,"61640":1,"61641":5,"61642":2,"61643":2,"61644":1,"61645":2,"61646":3,"61647":3,"61648":1,"61649":2,"61650":1,"61651":5,"61652":4,"61653":1,"61654":3,"61655":3,"61656":4,"61657":4,"61658":4,"61659":1,"61660":3,"61661":2,"61662":3,"61663":2,"61664":3,"61665":1,"61666":5,"61667":2,"61668":4,"61669":1,"61670":3,"61671":4,"61672":2,"61673":4,"61674":4,"61675":5,"61676":3,"61677":3,"61678":2,"61679":3,"61680":4,"61681":1,"61682":3,"61683":5,"61684":2,"61685":5,"61686":4,"61687":2,"61688":3,"61689":3,"61690":4,"61691":4,"61692":4,"61693":5,"61694":1,"61695":3,"61696":5,"61697":3,"61698":5,"61699":3,"61700":1,"61701":4,"61702":2,"61703":4,"61704":3,"61705":4,"61706":3,"61707":4,"61708":3,"61709":4,"61710":2,"61711":3,"61712":1,"61713":3,"61714":4,"61715":3,"61716":3,"61717":2,"61718":5,"61719":2,"61720":4,"61721":3,"61722":3,"61723":1,"61724":4,"61725":2,"61726":3,"61727":4,"61728":4,"61729":1,"61730":2,"61731":5,"61732":2,"61733":5,"61734":3,"61735":4,"61736":4,"61737":3,"61738":3,"61739":3,"61740":4,"61741":3,"61742":5,"61743":3,"61744":2,"61745":4,"61746":4,"61747":5,"61748":4,"61749":2,"61750":2,"61751":4,"61752":4,"61753":3,"61754":5,"61755":4,"61756":2,"61757":2,"61758":3,"61759":3,"61760":5,"61761":2,"61762":2,"61763":2,"61764":4,"61765":2,"61766":4,"61767":4,"61768":2,"61769":3,"61770":4,"61771":4,"61772":4,"61773":4,"61774":4,"61775":3,"61776":3,"61777":4,"61778":4,"61779":5,"61780":4,"61781":3,"61782":4,"61783":2,"61784":4,"61785":3,"61786":2,"61787":3,"61788":3,"61789":2,"61790":3,"61791":4,"61792":2,"61793":5,"61794":3,"61795":2,"61796":4,"61797":2,"61798":5,"61799":3,"61800":3,"61801":4,"61802":5,"61803":3,"61804":4,"61805":4,"61806":2,"61807":4,"61808":3,"61809":4,"61810":1,"61811":3,"61812":4,"61813":2,"61814":2,"61815":1,"61816":4,"61817":3,"61818":4,"61819":2,"61820":3,"61821":2,"61822":1,"61823":2,"61824":2,"61825":5,"61826":2,"61827":2,"61828":2,"61829":4,"61830":3,"61831":1,"61832":3,"61833":3,"61834":4,"61835":4,"61836":4,"61837":4,"61838":3,"61839":3,"61840":3,"61841":2,"61842":1,"61843":2,"61844":2,"61845":3,"61846":1,"61847":4,"61848":3,"61849":2,"61850":5,"61851":3,"61852":3,"61853":1,"61854":4,"61855":3,"61856":4,"61857":3,"61858":1,"61859":4,"61860":3,"61861":3,"61862":2,"61863":2,"61864":3,"61865":2,"61866":3,"61867":4,"61868":4,"61869":2,"61870":1,"61871":4,"61872":2,"61873":4,"61874":4,"61875":3,"61876":3,"61877":5,"61878":4,"61879":5,"61880":2,"61881":3,"61882":4,"61883":3,"61884":5,"61885":4,"61886":4,"61887":3,"61888":2,"61889":3,"61890":2,"61891":4,"61892":5,"61893":4,"61894":4,"61895":4,"61896":4,"61897":4,"61898":4,"61899":2,"61900":1,"61901":3,"61902":4,"61903":5,"61904":2,"61905":1,"61906":1,"61907":4,"61908":4,"61909":3,"61910":3,"61911":4,"61912":3,"61913":1,"61914":3,"61915":3,"61916":1,"61917":3,"61918":1,"61919":2,"61920":4,"61921":2,"61922":2,"61923":4,"61924":3,"61925":3,"61926":1,"61927":2,"61928":2,"61929":4,"61930":4,"61931":2,"61932":1,"61933":3,"61934":3,"61935":5,"61936":1,"61937":4,"61938":2,"61939":4,"61940":4,"61941":3,"61942":3,"61943":3,"61944":3,"61945":3,"61946":3,"61947":2,"61948":3,"61949":2,"61950":1,"61951":3,"61952":4,"61953":1,"61954":4,"61955":4,"61956":2,"61957":4,"61958":1,"61959":2,"61960":3,"61961":4,"61962":5,"61963":3,"61964":2,"61965":2,"61966":3,"61967":1,"61968":3,"61969":3,"61970":4,"61971":4,"61972":5,"61973":3,"61974":2,"61975":4,"61976":3,"61977":2,"61978":3,"61979":5,"61980":4,"61981":2,"61982":4,"61983":2,"61984":2,"61985":4,"61986":3,"61987":3,"61988":5,"61989":3,"61990":3,"61991":5,"61992":2,"61993":4,"61994":3,"61995":3,"61996":4,"61997":4,"61998":3,"61999":3,"62000":2,"62001":2,"62002":1,"62003":1,"62004":1,"62005":4,"62006":2,"62007":4,"62008":3,"62009":1,"62010":2,"62011":3,"62012":2,"62013":5,"62014":2,"62015":3,"62016":3,"62017":3,"62018":1,"62019":3,"62020":4,"62021":2,"62022":3,"62023":3,"62024":3,"62025":4,"62026":1,"62027":3,"62028":4,"62029":3,"62030":2,"62031":2,"62032":3,"62033":1,"62034":5,"62035":2,"62036":2,"62037":3,"62038":1,"62039":4,"62040":3,"62041":3,"62042":4,"62043":3,"62044":4,"62045":2,"62046":3,"62047":4,"62048":3,"62049":1,"62050":3,"62051":2,"62052":3,"62053":4,"62054":3,"62055":3,"62056":5,"62057":4,"62058":4,"62059":3,"62060":4,"62061":3,"62062":3,"62063":5,"62064":4,"62065":3,"62066":3,"62067":4,"62068":2,"62069":3,"62070":2,"62071":2,"62072":4,"62073":2,"62074":4,"62075":2,"62076":4,"62077":4,"62078":3,"62079":3,"62080":4,"62081":2,"62082":3,"62083":4,"62084":3,"62085":4,"62086":5,"62087":3,"62088":2,"62089":1,"62090":3,"62091":5,"62092":2,"62093":2,"62094":2,"62095":2,"62096":3,"62097":2,"62098":3,"62099":5,"62100":4,"62101":5,"62102":3,"62103":3,"62104":3,"62105":1,"62106":1,"62107":3,"62108":5,"62109":4,"62110":3,"62111":4,"62112":1,"62113":3,"62114":2,"62115":4,"62116":3,"62117":2,"62118":3,"62119":4,"62120":2,"62121":4,"62122":1,"62123":2,"62124":2,"62125":4,"62126":4,"62127":4,"62128":4,"62129":2,"62130":5,"62131":3,"62132":5,"62133":4,"62134":3,"62135":2,"62136":2,"62137":3,"62138":4,"62139":3,"62140":3,"62141":2,"62142":1,"62143":5,"62144":1,"62145":4,"62146":3,"62147":4,"62148":3,"62149":2,"62150":1,"62151":2,"62152":1,"62153":3,"62154":1,"62155":5,"62156":2,"62157":3,"62158":1,"62159":2,"62160":3,"62161":2,"62162":3,"62163":3,"62164":3,"62165":3,"62166":3,"62167":3,"62168":3,"62169":3,"62170":2,"62171":1,"62172":4,"62173":2,"62174":3,"62175":5,"62176":4,"62177":3,"62178":1,"62179":4,"62180":2,"62181":2,"62182":3,"62183":2,"62184":4,"62185":3,"62186":3,"62187":3,"62188":4,"62189":3,"62190":3,"62191":3,"62192":2,"62193":5,"62194":1,"62195":3,"62196":3,"62197":3,"62198":1,"62199":4,"62200":3,"62201":4,"62202":5,"62203":2,"62204":3,"62205":2,"62206":4,"62207":5,"62208":1,"62209":4,"62210":4,"62211":2,"62212":5,"62213":4,"62214":3,"62215":1,"62216":5,"62217":3,"62218":4,"62219":1,"62220":1,"62221":3,"62222":4,"62223":1,"62224":4,"62225":3,"62226":1,"62227":3,"62228":2,"62229":3,"62230":3,"62231":2,"62232":4,"62233":1,"62234":3,"62235":1,"62236":1,"62237":4,"62238":3,"62239":3,"62240":1,"62241":1,"62242":4,"62243":4,"62244":3,"62245":2,"62246":3,"62247":5,"62248":4,"62249":2,"62250":3,"62251":3,"62252":2,"62253":4,"62254":2,"62255":5,"62256":4,"62257":3,"62258":3,"62259":3,"62260":2,"62261":3,"62262":4,"62263":3,"62264":3,"62265":2,"62266":4,"62267":2,"62268":2,"62269":2,"62270":3,"62271":3,"62272":1,"62273":4,"62274":4,"62275":4,"62276":3,"62277":3,"62278":3,"62279":2,"62280":3,"62281":5,"62282":2,"62283":3,"62284":3,"62285":2,"62286":2,"62287":2,"62288":1,"62289":5,"62290":2,"62291":3,"62292":3,"62293":3,"62294":4,"62295":4,"62296":2,"62297":4,"62298":2,"62299":4,"62300":3,"62301":1,"62302":2,"62303":5,"62304":2,"62305":4,"62306":2,"62307":1,"62308":3,"62309":2,"62310":4,"62311":3,"62312":3,"62313":3,"62314":3,"62315":3,"62316":3,"62317":2,"62318":3,"62319":4,"62320":3,"62321":2,"62322":5,"62323":3,"62324":3,"62325":3,"62326":1,"62327":2,"62328":3,"62329":1,"62330":1,"62331":5,"62332":3,"62333":3,"62334":3,"62335":1,"62336":1,"62337":4,"62338":4,"62339":4,"62340":4,"62341":4,"62342":4,"62343":3,"62344":3,"62345":3,"62346":5,"62347":5,"62348":2,"62349":4,"62350":3,"62351":4,"62352":3,"62353":3,"62354":3,"62355":2,"62356":4,"62357":4,"62358":4,"62359":2,"62360":2,"62361":4,"62362":2,"62363":3,"62364":5,"62365":2,"62366":2,"62367":5,"62368":2,"62369":1,"62370":3,"62371":3,"62372":1,"62373":4,"62374":3,"62375":3,"62376":4,"62377":3,"62378":4,"62379":2,"62380":4,"62381":5,"62382":3,"62383":4,"62384":1,"62385":1,"62386":2,"62387":4,"62388":4,"62389":4,"62390":3,"62391":1,"62392":4,"62393":1,"62394":3,"62395":4,"62396":2,"62397":4,"62398":5,"62399":4,"62400":4,"62401":2,"62402":3,"62403":3,"62404":2,"62405":1,"62406":4,"62407":4,"62408":2,"62409":4,"62410":4,"62411":1,"62412":3,"62413":3,"62414":3,"62415":4,"62416":2,"62417":2,"62418":3,"62419":3,"62420":4,"62421":3,"62422":5,"62423":3,"62424":3,"62425":5,"62426":3,"62427":3,"62428":3,"62429":3,"62430":4,"62431":3,"62432":5,"62433":4,"62434":1,"62435":4,"62436":2,"62437":3,"62438":4,"62439":1,"62440":2,"62441":3,"62442":4,"62443":4,"62444":4,"62445":3,"62446":3,"62447":2,"62448":4,"62449":1,"62450":3,"62451":4,"62452":4,"62453":4,"62454":1,"62455":3,"62456":1,"62457":3,"62458":4,"62459":3,"62460":4,"62461":3,"62462":1,"62463":4,"62464":4,"62465":3,"62466":4,"62467":2,"62468":4,"62469":2,"62470":3,"62471":2,"62472":2,"62473":3,"62474":1,"62475":2,"62476":2,"62477":2,"62478":3,"62479":3,"62480":3,"62481":3,"62482":3,"62483":3,"62484":2,"62485":4,"62486":3,"62487":2,"62488":2,"62489":4,"62490":1,"62491":3,"62492":1,"62493":5,"62494":2,"62495":1,"62496":3,"62497":2,"62498":3,"62499":3,"62500":3,"62501":3,"62502":3,"62503":5,"62504":1,"62505":2,"62506":5,"62507":1,"62508":3,"62509":3,"62510":3,"62511":4,"62512":3,"62513":5,"62514":2,"62515":2,"62516":3,"62517":5,"62518":2,"62519":3,"62520":1,"62521":4,"62522":3,"62523":4,"62524":4,"62525":2,"62526":4,"62527":2,"62528":4,"62529":3,"62530":2,"62531":5,"62532":3,"62533":3,"62534":5,"62535":3,"62536":3,"62537":2,"62538":4,"62539":5,"62540":4,"62541":3,"62542":3,"62543":2,"62544":2,"62545":3,"62546":3,"62547":3,"62548":2,"62549":4,"62550":3,"62551":2,"62552":2,"62553":3,"62554":3,"62555":4,"62556":3,"62557":3,"62558":4,"62559":2,"62560":3,"62561":5,"62562":4,"62563":4,"62564":4,"62565":4,"62566":5,"62567":2,"62568":2,"62569":5,"62570":2,"62571":2,"62572":3,"62573":2,"62574":3,"62575":2,"62576":4,"62577":3,"62578":4,"62579":2,"62580":3,"62581":3,"62582":3,"62583":4,"62584":4,"62585":4,"62586":3,"62587":2,"62588":1,"62589":1,"62590":3,"62591":2,"62592":3,"62593":3,"62594":2,"62595":3,"62596":3,"62597":1,"62598":3,"62599":3,"62600":3,"62601":3,"62602":5,"62603":2,"62604":5,"62605":1,"62606":3,"62607":4,"62608":5,"62609":4,"62610":3,"62611":2,"62612":1,"62613":3,"62614":3,"62615":1,"62616":3,"62617":2,"62618":3,"62619":4,"62620":4,"62621":2,"62622":2,"62623":3,"62624":1,"62625":4,"62626":3,"62627":3,"62628":1,"62629":4,"62630":4,"62631":1,"62632":2,"62633":4,"62634":1,"62635":1,"62636":2,"62637":3,"62638":3,"62639":4,"62640":2,"62641":2,"62642":4,"62643":4,"62644":4,"62645":3,"62646":2,"62647":3,"62648":5,"62649":3,"62650":2,"62651":3,"62652":3,"62653":3,"62654":1,"62655":2,"62656":2,"62657":2,"62658":1,"62659":4,"62660":4,"62661":2,"62662":3,"62663":4,"62664":3,"62665":3,"62666":5,"62667":1,"62668":3,"62669":3,"62670":3,"62671":2,"62672":2,"62673":4,"62674":3,"62675":4,"62676":3,"62677":3,"62678":2,"62679":4,"62680":4,"62681":2,"62682":2,"62683":3,"62684":4,"62685":2,"62686":2,"62687":5,"62688":4,"62689":3,"62690":3,"62691":1,"62692":3,"62693":4,"62694":2,"62695":1,"62696":3,"62697":1,"62698":3,"62699":4,"62700":2,"62701":3,"62702":4,"62703":3,"62704":3,"62705":2,"62706":4,"62707":2,"62708":2,"62709":3,"62710":4,"62711":2,"62712":3,"62713":2,"62714":3,"62715":3,"62716":5,"62717":3,"62718":2,"62719":1,"62720":2,"62721":3,"62722":5,"62723":2,"62724":2,"62725":2,"62726":4,"62727":3,"62728":1,"62729":2,"62730":3,"62731":2,"62732":1,"62733":3,"62734":2,"62735":5,"62736":3,"62737":3,"62738":5,"62739":3,"62740":3,"62741":2,"62742":2,"62743":3,"62744":3,"62745":4,"62746":2,"62747":3,"62748":3,"62749":3,"62750":1,"62751":4,"62752":3,"62753":3,"62754":1,"62755":3,"62756":4,"62757":4,"62758":4,"62759":5,"62760":4,"62761":2,"62762":3,"62763":3,"62764":3,"62765":4,"62766":3,"62767":2,"62768":3,"62769":5,"62770":4,"62771":5,"62772":2,"62773":2,"62774":4,"62775":4,"62776":3,"62777":4,"62778":2,"62779":4,"62780":4,"62781":2,"62782":3,"62783":2,"62784":4,"62785":5,"62786":2,"62787":1,"62788":4,"62789":3,"62790":4,"62791":2,"62792":3,"62793":4,"62794":3,"62795":5,"62796":2,"62797":3,"62798":1,"62799":1,"62800":2,"62801":3,"62802":3,"62803":2,"62804":1,"62805":4,"62806":4,"62807":2,"62808":4,"62809":2,"62810":3,"62811":4,"62812":1,"62813":3,"62814":4,"62815":4,"62816":4,"62817":2,"62818":3,"62819":2,"62820":3,"62821":2,"62822":2,"62823":3,"62824":2,"62825":5,"62826":1,"62827":3,"62828":5,"62829":1,"62830":4,"62831":3,"62832":2,"62833":3,"62834":2,"62835":3,"62836":3,"62837":3,"62838":4,"62839":5,"62840":3,"62841":3,"62842":5,"62843":3,"62844":2,"62845":4,"62846":2,"62847":3,"62848":2,"62849":5,"62850":4,"62851":3,"62852":3,"62853":3,"62854":1,"62855":2,"62856":2,"62857":3,"62858":1,"62859":2,"62860":3,"62861":2,"62862":4,"62863":5,"62864":4,"62865":4,"62866":3,"62867":4,"62868":4,"62869":3,"62870":2,"62871":3,"62872":2,"62873":5,"62874":2,"62875":3,"62876":3,"62877":1,"62878":4,"62879":4,"62880":2,"62881":5,"62882":4,"62883":2,"62884":1,"62885":3,"62886":4,"62887":3,"62888":1,"62889":5,"62890":2,"62891":2,"62892":3,"62893":4,"62894":4,"62895":5,"62896":2,"62897":3,"62898":2,"62899":4,"62900":2,"62901":4,"62902":2,"62903":4,"62904":3,"62905":1,"62906":3,"62907":4,"62908":1,"62909":3,"62910":2,"62911":2,"62912":5,"62913":3,"62914":3,"62915":3,"62916":2,"62917":3,"62918":4,"62919":4,"62920":2,"62921":3,"62922":3,"62923":3,"62924":1,"62925":3,"62926":1,"62927":2,"62928":3,"62929":3,"62930":2,"62931":3,"62932":3,"62933":2,"62934":3,"62935":4,"62936":3,"62937":3,"62938":5,"62939":4,"62940":2,"62941":1,"62942":4,"62943":4,"62944":3,"62945":4,"62946":3,"62947":4,"62948":4,"62949":1,"62950":2,"62951":2,"62952":4,"62953":1,"62954":2,"62955":3,"62956":5,"62957":3,"62958":4,"62959":3,"62960":4,"62961":4,"62962":3,"62963":5,"62964":3,"62965":5,"62966":4,"62967":3,"62968":5,"62969":2,"62970":4,"62971":1,"62972":2,"62973":2,"62974":2,"62975":5,"62976":4,"62977":2,"62978":2,"62979":2,"62980":1,"62981":4,"62982":4,"62983":3,"62984":2,"62985":2,"62986":5,"62987":2,"62988":3,"62989":4,"62990":4,"62991":4,"62992":2,"62993":3,"62994":4,"62995":1,"62996":5,"62997":3,"62998":3,"62999":4,"63000":4,"63001":3,"63002":5,"63003":3,"63004":2,"63005":1,"63006":4,"63007":5,"63008":5,"63009":3,"63010":1,"63011":3,"63012":4,"63013":4,"63014":2,"63015":2,"63016":2,"63017":4,"63018":3,"63019":3,"63020":2,"63021":2,"63022":4,"63023":2,"63024":2,"63025":4,"63026":1,"63027":4,"63028":4,"63029":3,"63030":4,"63031":3,"63032":4,"63033":1,"63034":5,"63035":2,"63036":3,"63037":4,"63038":3,"63039":2,"63040":3,"63041":3,"63042":2,"63043":4,"63044":4,"63045":4,"63046":4,"63047":3,"63048":4,"63049":3,"63050":1,"63051":2,"63052":5,"63053":5,"63054":5,"63055":1,"63056":5,"63057":3,"63058":3,"63059":2,"63060":2,"63061":2,"63062":3,"63063":4,"63064":3,"63065":3,"63066":3,"63067":3,"63068":5,"63069":2,"63070":3,"63071":3,"63072":4,"63073":3,"63074":2,"63075":1,"63076":4,"63077":3,"63078":3,"63079":3,"63080":4,"63081":2,"63082":3,"63083":3,"63084":2,"63085":2,"63086":4,"63087":2,"63088":1,"63089":3,"63090":5,"63091":4,"63092":4,"63093":2,"63094":4,"63095":4,"63096":3,"63097":4,"63098":2,"63099":3,"63100":3,"63101":1,"63102":2,"63103":2,"63104":2,"63105":2,"63106":2,"63107":2,"63108":4,"63109":2,"63110":2,"63111":2,"63112":4,"63113":4,"63114":3,"63115":3,"63116":3,"63117":4,"63118":2,"63119":3,"63120":1,"63121":2,"63122":3,"63123":1,"63124":3,"63125":3,"63126":3,"63127":2,"63128":3,"63129":3,"63130":3,"63131":2,"63132":2,"63133":4,"63134":2,"63135":4,"63136":2,"63137":3,"63138":3,"63139":1,"63140":3,"63141":4,"63142":2,"63143":3,"63144":2,"63145":3,"63146":2,"63147":5,"63148":3,"63149":3,"63150":2,"63151":1,"63152":3,"63153":4,"63154":4,"63155":1,"63156":4,"63157":1,"63158":2,"63159":3,"63160":3,"63161":3,"63162":3,"63163":2,"63164":4,"63165":1,"63166":1,"63167":3,"63168":4,"63169":3,"63170":5,"63171":2,"63172":3,"63173":3,"63174":1,"63175":4,"63176":4,"63177":4,"63178":4,"63179":4,"63180":3,"63181":3,"63182":3,"63183":2,"63184":1,"63185":5,"63186":3,"63187":1,"63188":1,"63189":1,"63190":1,"63191":3,"63192":4,"63193":4,"63194":3,"63195":3,"63196":3,"63197":3,"63198":4,"63199":4,"63200":3,"63201":5,"63202":3,"63203":4,"63204":4,"63205":1,"63206":1,"63207":4,"63208":1,"63209":4,"63210":3,"63211":4,"63212":3,"63213":3,"63214":4,"63215":2,"63216":3,"63217":3,"63218":4,"63219":4,"63220":3,"63221":2,"63222":4,"63223":2,"63224":4,"63225":1,"63226":2,"63227":4,"63228":3,"63229":3,"63230":4,"63231":3,"63232":4,"63233":3,"63234":4,"63235":2,"63236":4,"63237":4,"63238":3,"63239":2,"63240":3,"63241":3,"63242":3,"63243":2,"63244":2,"63245":4,"63246":4,"63247":4,"63248":3,"63249":3,"63250":3,"63251":4,"63252":4,"63253":5,"63254":4,"63255":4,"63256":1,"63257":2,"63258":3,"63259":2,"63260":4,"63261":4,"63262":5,"63263":3,"63264":3,"63265":3,"63266":2,"63267":4,"63268":3,"63269":1,"63270":3,"63271":3,"63272":3,"63273":2,"63274":1,"63275":3,"63276":4,"63277":3,"63278":4,"63279":3,"63280":2,"63281":2,"63282":3,"63283":3,"63284":4,"63285":5,"63286":1,"63287":3,"63288":4,"63289":4,"63290":3,"63291":4,"63292":2,"63293":2,"63294":3,"63295":2,"63296":3,"63297":4,"63298":4,"63299":2,"63300":2,"63301":3,"63302":1,"63303":1,"63304":1,"63305":3,"63306":3,"63307":2,"63308":2,"63309":3,"63310":3,"63311":4,"63312":3,"63313":2,"63314":4,"63315":2,"63316":3,"63317":3,"63318":3,"63319":4,"63320":4,"63321":3,"63322":3,"63323":1,"63324":4,"63325":3,"63326":3,"63327":4,"63328":4,"63329":3,"63330":4,"63331":3,"63332":4,"63333":1,"63334":3,"63335":4,"63336":5,"63337":4,"63338":2,"63339":5,"63340":4,"63341":3,"63342":2,"63343":4,"63344":4,"63345":4,"63346":3,"63347":2,"63348":2,"63349":3,"63350":4,"63351":3,"63352":3,"63353":2,"63354":5,"63355":3,"63356":4,"63357":2,"63358":2,"63359":3,"63360":1,"63361":4,"63362":4,"63363":3,"63364":4,"63365":1,"63366":3,"63367":4,"63368":3,"63369":3,"63370":4,"63371":3,"63372":1,"63373":3,"63374":3,"63375":3,"63376":3,"63377":3,"63378":1,"63379":3,"63380":2,"63381":4,"63382":3,"63383":3,"63384":1,"63385":4,"63386":3,"63387":3,"63388":5,"63389":2,"63390":1,"63391":2,"63392":1,"63393":2,"63394":2,"63395":4,"63396":5,"63397":4,"63398":4,"63399":2,"63400":2,"63401":2,"63402":3,"63403":2,"63404":5,"63405":4,"63406":4,"63407":3,"63408":4,"63409":4,"63410":2,"63411":1,"63412":3,"63413":1,"63414":4,"63415":2,"63416":5,"63417":1,"63418":2,"63419":3,"63420":4,"63421":3,"63422":3,"63423":5,"63424":3,"63425":2,"63426":4,"63427":3,"63428":2,"63429":2,"63430":4,"63431":1,"63432":3,"63433":3,"63434":2,"63435":5,"63436":1,"63437":3,"63438":2,"63439":1,"63440":5,"63441":3,"63442":1,"63443":1,"63444":3,"63445":4,"63446":3,"63447":3,"63448":3,"63449":3,"63450":3,"63451":3,"63452":1,"63453":3,"63454":3,"63455":4,"63456":3,"63457":5,"63458":2,"63459":2,"63460":5,"63461":3,"63462":4,"63463":4,"63464":1,"63465":4,"63466":4,"63467":2,"63468":4,"63469":3,"63470":3,"63471":2,"63472":4,"63473":3,"63474":1,"63475":3,"63476":4,"63477":2,"63478":3,"63479":1,"63480":1,"63481":4,"63482":3,"63483":4,"63484":2,"63485":3,"63486":3,"63487":3,"63488":3,"63489":5,"63490":4,"63491":3,"63492":2,"63493":4,"63494":3,"63495":3,"63496":4,"63497":3,"63498":4,"63499":3,"63500":3,"63501":4,"63502":4,"63503":5,"63504":1,"63505":2,"63506":3,"63507":3,"63508":3,"63509":3,"63510":1,"63511":3,"63512":5,"63513":3,"63514":2,"63515":2,"63516":3,"63517":4,"63518":1,"63519":3,"63520":3,"63521":3,"63522":3,"63523":1,"63524":3,"63525":2,"63526":3,"63527":2,"63528":3,"63529":3,"63530":5,"63531":4,"63532":1,"63533":4,"63534":2,"63535":3,"63536":4,"63537":3,"63538":4,"63539":4,"63540":1,"63541":3,"63542":2,"63543":3,"63544":2,"63545":2,"63546":3,"63547":3,"63548":3,"63549":5,"63550":4,"63551":3,"63552":2,"63553":3,"63554":3,"63555":1,"63556":3,"63557":4,"63558":5,"63559":2,"63560":4,"63561":5,"63562":2,"63563":4,"63564":3,"63565":5,"63566":3,"63567":5,"63568":2,"63569":3,"63570":4,"63571":3,"63572":2,"63573":4,"63574":4,"63575":2,"63576":4,"63577":5,"63578":2,"63579":3,"63580":4,"63581":3,"63582":4,"63583":3,"63584":4,"63585":2,"63586":4,"63587":3,"63588":3,"63589":3,"63590":4,"63591":5,"63592":2,"63593":2,"63594":1,"63595":4,"63596":4,"63597":3,"63598":3,"63599":5,"63600":2,"63601":3,"63602":2,"63603":2,"63604":5,"63605":3,"63606":3,"63607":4,"63608":4,"63609":2,"63610":2,"63611":4,"63612":3,"63613":2,"63614":1,"63615":1,"63616":4,"63617":3,"63618":5,"63619":3,"63620":3,"63621":4,"63622":3,"63623":2,"63624":3,"63625":3,"63626":4,"63627":1,"63628":2,"63629":2,"63630":4,"63631":3,"63632":2,"63633":4,"63634":3,"63635":3,"63636":3,"63637":4,"63638":4,"63639":5,"63640":5,"63641":3,"63642":3,"63643":4,"63644":2,"63645":3,"63646":2,"63647":3,"63648":3,"63649":5,"63650":1,"63651":2,"63652":2,"63653":2,"63654":5,"63655":4,"63656":5,"63657":3,"63658":1,"63659":5,"63660":2,"63661":3,"63662":1,"63663":3,"63664":1,"63665":4,"63666":4,"63667":3,"63668":1,"63669":2,"63670":1,"63671":4,"63672":4,"63673":1,"63674":3,"63675":1,"63676":4,"63677":3,"63678":3,"63679":2,"63680":3,"63681":1,"63682":5,"63683":2,"63684":3,"63685":3,"63686":4,"63687":2,"63688":4,"63689":2,"63690":2,"63691":4,"63692":3,"63693":2,"63694":3,"63695":3,"63696":2,"63697":3,"63698":3,"63699":4,"63700":2,"63701":1,"63702":5,"63703":3,"63704":5,"63705":3,"63706":1,"63707":3,"63708":4,"63709":3,"63710":3,"63711":3,"63712":2,"63713":4,"63714":3,"63715":4,"63716":2,"63717":2,"63718":4,"63719":4,"63720":3,"63721":4,"63722":2,"63723":3,"63724":4,"63725":1,"63726":5,"63727":3,"63728":4,"63729":3,"63730":3,"63731":2,"63732":3,"63733":3,"63734":4,"63735":1,"63736":1,"63737":4,"63738":3,"63739":3,"63740":1,"63741":3,"63742":1,"63743":4,"63744":3,"63745":3,"63746":4,"63747":3,"63748":2,"63749":1,"63750":4,"63751":2,"63752":2,"63753":2,"63754":3,"63755":4,"63756":1,"63757":4,"63758":3,"63759":3,"63760":3,"63761":3,"63762":3,"63763":3,"63764":3,"63765":3,"63766":3,"63767":2,"63768":3,"63769":4,"63770":3,"63771":4,"63772":3,"63773":3,"63774":3,"63775":2,"63776":2,"63777":3,"63778":1,"63779":3,"63780":5,"63781":1,"63782":1,"63783":1,"63784":2,"63785":2,"63786":3,"63787":3,"63788":4,"63789":3,"63790":3,"63791":1,"63792":5,"63793":2,"63794":4,"63795":5,"63796":4,"63797":2,"63798":3,"63799":3,"63800":4,"63801":3,"63802":2,"63803":2,"63804":3,"63805":2,"63806":4,"63807":3,"63808":3,"63809":2,"63810":5,"63811":4,"63812":4,"63813":3,"63814":2,"63815":4,"63816":3,"63817":2,"63818":3,"63819":4,"63820":2,"63821":2,"63822":4,"63823":2,"63824":5,"63825":3,"63826":2,"63827":3,"63828":4,"63829":3,"63830":2,"63831":2,"63832":2,"63833":1,"63834":3,"63835":4,"63836":4,"63837":3,"63838":3,"63839":3,"63840":5,"63841":4,"63842":1,"63843":4,"63844":3,"63845":3,"63846":3,"63847":3,"63848":2,"63849":4,"63850":3,"63851":4,"63852":3,"63853":2,"63854":3,"63855":1,"63856":3,"63857":3,"63858":3,"63859":2,"63860":1,"63861":1,"63862":2,"63863":3,"63864":1,"63865":4,"63866":2,"63867":2,"63868":4,"63869":5,"63870":3,"63871":1,"63872":1,"63873":2,"63874":3,"63875":4,"63876":3,"63877":3,"63878":2,"63879":4,"63880":2,"63881":3,"63882":3,"63883":4,"63884":2,"63885":3,"63886":5,"63887":2,"63888":3,"63889":4,"63890":1,"63891":4,"63892":4,"63893":2,"63894":4,"63895":3,"63896":2,"63897":3,"63898":1,"63899":2,"63900":4,"63901":2,"63902":4,"63903":3,"63904":4,"63905":3,"63906":2,"63907":2,"63908":4,"63909":3,"63910":1,"63911":3,"63912":3,"63913":3,"63914":4,"63915":3,"63916":3,"63917":1,"63918":3,"63919":4,"63920":3,"63921":4,"63922":3,"63923":5,"63924":1,"63925":4,"63926":1,"63927":2,"63928":3,"63929":5,"63930":3,"63931":3,"63932":3,"63933":2,"63934":3,"63935":1,"63936":1,"63937":5,"63938":4,"63939":3,"63940":3,"63941":2,"63942":3,"63943":3,"63944":4,"63945":4,"63946":3,"63947":3,"63948":1,"63949":4,"63950":3,"63951":1,"63952":5,"63953":4,"63954":2,"63955":1,"63956":3,"63957":3,"63958":2,"63959":5,"63960":5,"63961":3,"63962":3,"63963":4,"63964":3,"63965":2,"63966":4,"63967":5,"63968":1,"63969":4,"63970":4,"63971":4,"63972":2,"63973":3,"63974":1,"63975":4,"63976":2,"63977":3,"63978":2,"63979":3,"63980":2,"63981":1,"63982":2,"63983":1,"63984":4,"63985":3,"63986":5,"63987":2,"63988":2,"63989":4,"63990":2,"63991":4,"63992":4,"63993":3,"63994":3,"63995":2,"63996":2,"63997":3,"63998":5,"63999":5,"64000":3,"64001":2,"64002":3,"64003":2,"64004":3,"64005":2,"64006":4,"64007":4,"64008":3,"64009":1,"64010":2,"64011":3,"64012":3,"64013":4,"64014":3,"64015":4,"64016":3,"64017":1,"64018":2,"64019":3,"64020":2,"64021":3,"64022":3,"64023":5,"64024":3,"64025":1,"64026":2,"64027":3,"64028":1,"64029":3,"64030":5,"64031":4,"64032":3,"64033":2,"64034":3,"64035":2,"64036":4,"64037":4,"64038":4,"64039":4,"64040":4,"64041":4,"64042":3,"64043":3,"64044":2,"64045":2,"64046":2,"64047":5,"64048":3,"64049":3,"64050":2,"64051":4,"64052":3,"64053":4,"64054":4,"64055":4,"64056":3,"64057":5,"64058":3,"64059":3,"64060":3,"64061":1,"64062":1,"64063":3,"64064":2,"64065":2,"64066":3,"64067":4,"64068":2,"64069":1,"64070":3,"64071":4,"64072":2,"64073":4,"64074":3,"64075":3,"64076":2,"64077":3,"64078":3,"64079":3,"64080":4,"64081":4,"64082":3,"64083":5,"64084":4,"64085":2,"64086":2,"64087":4,"64088":1,"64089":2,"64090":5,"64091":4,"64092":5,"64093":3,"64094":4,"64095":1,"64096":4,"64097":2,"64098":4,"64099":5,"64100":4,"64101":2,"64102":5,"64103":4,"64104":2,"64105":3,"64106":4,"64107":3,"64108":2,"64109":2,"64110":1,"64111":4,"64112":1,"64113":3,"64114":1,"64115":3,"64116":3,"64117":4,"64118":5,"64119":2,"64120":3,"64121":4,"64122":2,"64123":5,"64124":3,"64125":2,"64126":5,"64127":3,"64128":3,"64129":4,"64130":4,"64131":2,"64132":5,"64133":3,"64134":1,"64135":3,"64136":1,"64137":2,"64138":1,"64139":2,"64140":4,"64141":1,"64142":4,"64143":3,"64144":4,"64145":5,"64146":3,"64147":1,"64148":3,"64149":3,"64150":3,"64151":4,"64152":2,"64153":4,"64154":3,"64155":3,"64156":3,"64157":4,"64158":3,"64159":4,"64160":3,"64161":3,"64162":1,"64163":2,"64164":2,"64165":3,"64166":3,"64167":3,"64168":4,"64169":4,"64170":3,"64171":3,"64172":2,"64173":5,"64174":3,"64175":2,"64176":4,"64177":1,"64178":2,"64179":1,"64180":4,"64181":5,"64182":3,"64183":4,"64184":2,"64185":3,"64186":3,"64187":5,"64188":3,"64189":5,"64190":3,"64191":2,"64192":3,"64193":3,"64194":3,"64195":3,"64196":2,"64197":4,"64198":3,"64199":2,"64200":3,"64201":5,"64202":3,"64203":5,"64204":4,"64205":5,"64206":2,"64207":4,"64208":5,"64209":3,"64210":4,"64211":5,"64212":3,"64213":1,"64214":2,"64215":5,"64216":3,"64217":2,"64218":1,"64219":4,"64220":2,"64221":3,"64222":4,"64223":4,"64224":4,"64225":3,"64226":4,"64227":3,"64228":4,"64229":4,"64230":4,"64231":3,"64232":4,"64233":4,"64234":3,"64235":2,"64236":4,"64237":4,"64238":3,"64239":3,"64240":4,"64241":5,"64242":3,"64243":2,"64244":5,"64245":3,"64246":2,"64247":5,"64248":1,"64249":3,"64250":4,"64251":2,"64252":3,"64253":1,"64254":2,"64255":2,"64256":4,"64257":1,"64258":4,"64259":2,"64260":3,"64261":5,"64262":5,"64263":1,"64264":1,"64265":3,"64266":3,"64267":2,"64268":4,"64269":1,"64270":4,"64271":3,"64272":2,"64273":4,"64274":2,"64275":4,"64276":3,"64277":5,"64278":2,"64279":2,"64280":3,"64281":2,"64282":4,"64283":3,"64284":3,"64285":5,"64286":4,"64287":3,"64288":2,"64289":4,"64290":3,"64291":3,"64292":3,"64293":3,"64294":2,"64295":1,"64296":4,"64297":2,"64298":1,"64299":3,"64300":3,"64301":4,"64302":3,"64303":4,"64304":4,"64305":4,"64306":3,"64307":4,"64308":2,"64309":4,"64310":4,"64311":4,"64312":3,"64313":3,"64314":1,"64315":3,"64316":3,"64317":2,"64318":3,"64319":2,"64320":3,"64321":3,"64322":3,"64323":4,"64324":3,"64325":3,"64326":3,"64327":3,"64328":2,"64329":4,"64330":3,"64331":2,"64332":3,"64333":2,"64334":2,"64335":5,"64336":4,"64337":2,"64338":4,"64339":2,"64340":3,"64341":4,"64342":2,"64343":2,"64344":1,"64345":3,"64346":3,"64347":2,"64348":3,"64349":2,"64350":2,"64351":3,"64352":4,"64353":3,"64354":2,"64355":2,"64356":1,"64357":2,"64358":3,"64359":4,"64360":3,"64361":3,"64362":4,"64363":2,"64364":2,"64365":1,"64366":4,"64367":3,"64368":3,"64369":4,"64370":5,"64371":1,"64372":3,"64373":5,"64374":3,"64375":5,"64376":5,"64377":3,"64378":1,"64379":1,"64380":4,"64381":4,"64382":2,"64383":3,"64384":2,"64385":2,"64386":1,"64387":4,"64388":3,"64389":2,"64390":4,"64391":4,"64392":4,"64393":4,"64394":3,"64395":4,"64396":1,"64397":4,"64398":2,"64399":4,"64400":4,"64401":1,"64402":2,"64403":3,"64404":2,"64405":2,"64406":5,"64407":2,"64408":4,"64409":4,"64410":2,"64411":4,"64412":5,"64413":2,"64414":3,"64415":3,"64416":2,"64417":3,"64418":3,"64419":1,"64420":4,"64421":3,"64422":4,"64423":3,"64424":3,"64425":4,"64426":2,"64427":3,"64428":2,"64429":2,"64430":3,"64431":2,"64432":3,"64433":3,"64434":3,"64435":1,"64436":2,"64437":2,"64438":3,"64439":3,"64440":3,"64441":4,"64442":5,"64443":4,"64444":3,"64445":2,"64446":2,"64447":1,"64448":4,"64449":3,"64450":3,"64451":4,"64452":4,"64453":3,"64454":2,"64455":4,"64456":1,"64457":4,"64458":5,"64459":2,"64460":4,"64461":1,"64462":4,"64463":4,"64464":1,"64465":2,"64466":3,"64467":2,"64468":4,"64469":1,"64470":5,"64471":4,"64472":2,"64473":4,"64474":2,"64475":4,"64476":2,"64477":3,"64478":5,"64479":3,"64480":4,"64481":3,"64482":2,"64483":3,"64484":3,"64485":4,"64486":2,"64487":3,"64488":4,"64489":2,"64490":3,"64491":5,"64492":3,"64493":4,"64494":3,"64495":4,"64496":2,"64497":4,"64498":4,"64499":4,"64500":1,"64501":3,"64502":1,"64503":1,"64504":2,"64505":1,"64506":3,"64507":1,"64508":2,"64509":3,"64510":4,"64511":2,"64512":4,"64513":1,"64514":3,"64515":4,"64516":2,"64517":4,"64518":3,"64519":3,"64520":2,"64521":3,"64522":1,"64523":4,"64524":3,"64525":2,"64526":4,"64527":1,"64528":3,"64529":3,"64530":3,"64531":4,"64532":2,"64533":2,"64534":3,"64535":1,"64536":3,"64537":3,"64538":1,"64539":2,"64540":3,"64541":2,"64542":3,"64543":4,"64544":4,"64545":4,"64546":1,"64547":4,"64548":4,"64549":5,"64550":4,"64551":2,"64552":3,"64553":5,"64554":2,"64555":2,"64556":3,"64557":1,"64558":2,"64559":4,"64560":3,"64561":2,"64562":5,"64563":3,"64564":2,"64565":3,"64566":3,"64567":5,"64568":3,"64569":2,"64570":3,"64571":1,"64572":5,"64573":3,"64574":2,"64575":4,"64576":2,"64577":4,"64578":3,"64579":4,"64580":3,"64581":3,"64582":3,"64583":4,"64584":3,"64585":3,"64586":3,"64587":1,"64588":4,"64589":4,"64590":2,"64591":2,"64592":2,"64593":3,"64594":3,"64595":3,"64596":4,"64597":4,"64598":3,"64599":1,"64600":4,"64601":3,"64602":3,"64603":4,"64604":1,"64605":2,"64606":2,"64607":3,"64608":4,"64609":4,"64610":1,"64611":2,"64612":2,"64613":5,"64614":3,"64615":1,"64616":1,"64617":3,"64618":3,"64619":5,"64620":3,"64621":3,"64622":3,"64623":5,"64624":1,"64625":3,"64626":2,"64627":2,"64628":3,"64629":3,"64630":5,"64631":1,"64632":3,"64633":3,"64634":4,"64635":2,"64636":5,"64637":4,"64638":4,"64639":5,"64640":2,"64641":4,"64642":2,"64643":2,"64644":3,"64645":2,"64646":3,"64647":3,"64648":3,"64649":4,"64650":3,"64651":1,"64652":3,"64653":5,"64654":4,"64655":3,"64656":4,"64657":4,"64658":4,"64659":3,"64660":3,"64661":3,"64662":3,"64663":2,"64664":3,"64665":4,"64666":3,"64667":2,"64668":3,"64669":2,"64670":4,"64671":3,"64672":3,"64673":3,"64674":1,"64675":1,"64676":2,"64677":2,"64678":3,"64679":2,"64680":4,"64681":3,"64682":3,"64683":3,"64684":5,"64685":4,"64686":3,"64687":4,"64688":4,"64689":3,"64690":4,"64691":2,"64692":5,"64693":3,"64694":5,"64695":4,"64696":5,"64697":4,"64698":3,"64699":2,"64700":4,"64701":5,"64702":4,"64703":2,"64704":1,"64705":3,"64706":2,"64707":3,"64708":2,"64709":3,"64710":4,"64711":3,"64712":4,"64713":2,"64714":3,"64715":2,"64716":3,"64717":2,"64718":1,"64719":3,"64720":2,"64721":3,"64722":5,"64723":3,"64724":3,"64725":2,"64726":4,"64727":4,"64728":4,"64729":4,"64730":5,"64731":3,"64732":3,"64733":5,"64734":3,"64735":3,"64736":4,"64737":3,"64738":3,"64739":3,"64740":3,"64741":3,"64742":2,"64743":3,"64744":4,"64745":3,"64746":5,"64747":1,"64748":3,"64749":3,"64750":3,"64751":3,"64752":2,"64753":3,"64754":4,"64755":3,"64756":1,"64757":2,"64758":3,"64759":3,"64760":4,"64761":3,"64762":2,"64763":4,"64764":2,"64765":5,"64766":5,"64767":1,"64768":2,"64769":5,"64770":4,"64771":4,"64772":3,"64773":2,"64774":2,"64775":2,"64776":3,"64777":1,"64778":4,"64779":3,"64780":4,"64781":3,"64782":3,"64783":4,"64784":3,"64785":4,"64786":5,"64787":2,"64788":3,"64789":1,"64790":4,"64791":4,"64792":4,"64793":3,"64794":1,"64795":3,"64796":5,"64797":2,"64798":4,"64799":4,"64800":1,"64801":4,"64802":2,"64803":2,"64804":3,"64805":4,"64806":4,"64807":2,"64808":2,"64809":3,"64810":2,"64811":3,"64812":4,"64813":2,"64814":5,"64815":4,"64816":4,"64817":2,"64818":4,"64819":4,"64820":3,"64821":4,"64822":2,"64823":4,"64824":3,"64825":2,"64826":4,"64827":5,"64828":3,"64829":3,"64830":2,"64831":3,"64832":3,"64833":5,"64834":3,"64835":2,"64836":4,"64837":4,"64838":5,"64839":3,"64840":2,"64841":2,"64842":2,"64843":4,"64844":3,"64845":3,"64846":2,"64847":4,"64848":4,"64849":4,"64850":4,"64851":3,"64852":3,"64853":4,"64854":2,"64855":4,"64856":1,"64857":1,"64858":3,"64859":5,"64860":2,"64861":3,"64862":3,"64863":2,"64864":3,"64865":2,"64866":5,"64867":1,"64868":3,"64869":3,"64870":1,"64871":2,"64872":1,"64873":4,"64874":2,"64875":3,"64876":4,"64877":3,"64878":5,"64879":4,"64880":2,"64881":4,"64882":4,"64883":1,"64884":4,"64885":2,"64886":4,"64887":1,"64888":5,"64889":3,"64890":2,"64891":4,"64892":1,"64893":1,"64894":3,"64895":2,"64896":2,"64897":1,"64898":2,"64899":3,"64900":1,"64901":1,"64902":1,"64903":3,"64904":2,"64905":4,"64906":2,"64907":4,"64908":3,"64909":4,"64910":4,"64911":3,"64912":2,"64913":2,"64914":4,"64915":1,"64916":3,"64917":2,"64918":3,"64919":2,"64920":4,"64921":5,"64922":3,"64923":2,"64924":4,"64925":5,"64926":4,"64927":3,"64928":3,"64929":3,"64930":4,"64931":5,"64932":4,"64933":2,"64934":4,"64935":2,"64936":4,"64937":5,"64938":3,"64939":2,"64940":3,"64941":1,"64942":1,"64943":3,"64944":2,"64945":4,"64946":3,"64947":4,"64948":2,"64949":1,"64950":4,"64951":1,"64952":3,"64953":3,"64954":4,"64955":5,"64956":5,"64957":4,"64958":3,"64959":2,"64960":5,"64961":2,"64962":3,"64963":3,"64964":4,"64965":3,"64966":2,"64967":4,"64968":2,"64969":3,"64970":3,"64971":5,"64972":1,"64973":3,"64974":1,"64975":4,"64976":2,"64977":4,"64978":2,"64979":3,"64980":4,"64981":3,"64982":2,"64983":4,"64984":2,"64985":3,"64986":3,"64987":4,"64988":1,"64989":5,"64990":3,"64991":3,"64992":3,"64993":4,"64994":4,"64995":3,"64996":4,"64997":5,"64998":1,"64999":4,"65000":4,"65001":4,"65002":1,"65003":3,"65004":4,"65005":2,"65006":2,"65007":4,"65008":1,"65009":5,"65010":3,"65011":4,"65012":2,"65013":3,"65014":5,"65015":2,"65016":2,"65017":3,"65018":2,"65019":3,"65020":2,"65021":3,"65022":3,"65023":1,"65024":4,"65025":1,"65026":2,"65027":3,"65028":3,"65029":4,"65030":4,"65031":4,"65032":2,"65033":4,"65034":4,"65035":5,"65036":2,"65037":3,"65038":2,"65039":2,"65040":4,"65041":3,"65042":2,"65043":5,"65044":3,"65045":4,"65046":3,"65047":2,"65048":3,"65049":2,"65050":4,"65051":4,"65052":4,"65053":3,"65054":4,"65055":2,"65056":2,"65057":2,"65058":3,"65059":4,"65060":3,"65061":5,"65062":3,"65063":3,"65064":3,"65065":2,"65066":1,"65067":2,"65068":4,"65069":3,"65070":2,"65071":2,"65072":4,"65073":4,"65074":3,"65075":4,"65076":3,"65077":4,"65078":2,"65079":1,"65080":4,"65081":3,"65082":2,"65083":2,"65084":4,"65085":2,"65086":5,"65087":3,"65088":2,"65089":3,"65090":2,"65091":2,"65092":1,"65093":3,"65094":3,"65095":3,"65096":3,"65097":3,"65098":3,"65099":3,"65100":1,"65101":3,"65102":3,"65103":2,"65104":1,"65105":3,"65106":4,"65107":1,"65108":5,"65109":3,"65110":3,"65111":3,"65112":3,"65113":3,"65114":4,"65115":2,"65116":3,"65117":3,"65118":2,"65119":2,"65120":4,"65121":1,"65122":4,"65123":4,"65124":3,"65125":3,"65126":3,"65127":2,"65128":3,"65129":4,"65130":4,"65131":2,"65132":5,"65133":1,"65134":2,"65135":2,"65136":1,"65137":3,"65138":5,"65139":2,"65140":4,"65141":1,"65142":2,"65143":2,"65144":2,"65145":5,"65146":5,"65147":4,"65148":2,"65149":3,"65150":2,"65151":2,"65152":4,"65153":1,"65154":2,"65155":4,"65156":1,"65157":5,"65158":1,"65159":4,"65160":4,"65161":3,"65162":2,"65163":4,"65164":3,"65165":1,"65166":4,"65167":3,"65168":2,"65169":2,"65170":3,"65171":5,"65172":1,"65173":2,"65174":2,"65175":3,"65176":5,"65177":2,"65178":4,"65179":4,"65180":2,"65181":2,"65182":1,"65183":3,"65184":3,"65185":3,"65186":3,"65187":5,"65188":2,"65189":3,"65190":4,"65191":2,"65192":3,"65193":1,"65194":4,"65195":2,"65196":2,"65197":2,"65198":3,"65199":4,"65200":3,"65201":4,"65202":3,"65203":3,"65204":3,"65205":3,"65206":3,"65207":3,"65208":3,"65209":3,"65210":3,"65211":3,"65212":3,"65213":3,"65214":2,"65215":4,"65216":4,"65217":3,"65218":4,"65219":3,"65220":2,"65221":1,"65222":3,"65223":4,"65224":3,"65225":3,"65226":4,"65227":3,"65228":1,"65229":3,"65230":2,"65231":4,"65232":1,"65233":3,"65234":4,"65235":5,"65236":3,"65237":4,"65238":3,"65239":2,"65240":3,"65241":2,"65242":4,"65243":4,"65244":1,"65245":2,"65246":5,"65247":1,"65248":4,"65249":3,"65250":3,"65251":4,"65252":3,"65253":4,"65254":2,"65255":4,"65256":3,"65257":3,"65258":3,"65259":3,"65260":2,"65261":1,"65262":4,"65263":5,"65264":4,"65265":3,"65266":3,"65267":1,"65268":4,"65269":4,"65270":5,"65271":2,"65272":2,"65273":2,"65274":2,"65275":3,"65276":2,"65277":1,"65278":5,"65279":4,"65280":2,"65281":4,"65282":3,"65283":4,"65284":4,"65285":3,"65286":2,"65287":4,"65288":3,"65289":3,"65290":1,"65291":4,"65292":4,"65293":3,"65294":3,"65295":4,"65296":4,"65297":4,"65298":4,"65299":2,"65300":2,"65301":4,"65302":3,"65303":1,"65304":3,"65305":3,"65306":5,"65307":4,"65308":4,"65309":4,"65310":2,"65311":3,"65312":4,"65313":2,"65314":3,"65315":4,"65316":1,"65317":5,"65318":1,"65319":4,"65320":3,"65321":4,"65322":4,"65323":4,"65324":4,"65325":1,"65326":3,"65327":4,"65328":4,"65329":1,"65330":3,"65331":5,"65332":1,"65333":3,"65334":3,"65335":4,"65336":3,"65337":1,"65338":1,"65339":2,"65340":3,"65341":4,"65342":4,"65343":4,"65344":3,"65345":4,"65346":3,"65347":2,"65348":4,"65349":4,"65350":2,"65351":4,"65352":4,"65353":2,"65354":2,"65355":3,"65356":3,"65357":5,"65358":4,"65359":4,"65360":3,"65361":3,"65362":4,"65363":3,"65364":4,"65365":4,"65366":2,"65367":5,"65368":2,"65369":3,"65370":2,"65371":2,"65372":3,"65373":3,"65374":5,"65375":2,"65376":2,"65377":3,"65378":5,"65379":4,"65380":3,"65381":5,"65382":5,"65383":2,"65384":3,"65385":4,"65386":1,"65387":2,"65388":2,"65389":2,"65390":2,"65391":5,"65392":4,"65393":5,"65394":3,"65395":1,"65396":2,"65397":3,"65398":2,"65399":2,"65400":2,"65401":4,"65402":3,"65403":4,"65404":3,"65405":2,"65406":1,"65407":4,"65408":3,"65409":3,"65410":2,"65411":4,"65412":5,"65413":1,"65414":3,"65415":4,"65416":3,"65417":3,"65418":3,"65419":2,"65420":3,"65421":5,"65422":2,"65423":2,"65424":2,"65425":5,"65426":2,"65427":4,"65428":2,"65429":1,"65430":1,"65431":1,"65432":1,"65433":4,"65434":4,"65435":4,"65436":4,"65437":4,"65438":2,"65439":4,"65440":4,"65441":3,"65442":3,"65443":2,"65444":3,"65445":4,"65446":3,"65447":3,"65448":1,"65449":4,"65450":3,"65451":2,"65452":4,"65453":3,"65454":2,"65455":3,"65456":5,"65457":2,"65458":4,"65459":4,"65460":2,"65461":4,"65462":4,"65463":4,"65464":2,"65465":1,"65466":2,"65467":3,"65468":3,"65469":4,"65470":2,"65471":4,"65472":4,"65473":4,"65474":3,"65475":1,"65476":2,"65477":2,"65478":4,"65479":4,"65480":1,"65481":3,"65482":4,"65483":4,"65484":4,"65485":3,"65486":2,"65487":2,"65488":2,"65489":2,"65490":4,"65491":3,"65492":2,"65493":3,"65494":3,"65495":2,"65496":2,"65497":4,"65498":3,"65499":4,"65500":4,"65501":2,"65502":3,"65503":3,"65504":3,"65505":2,"65506":3,"65507":4,"65508":2,"65509":4,"65510":4,"65511":2,"65512":4,"65513":3,"65514":1,"65515":4,"65516":2,"65517":4,"65518":3,"65519":1,"65520":3,"65521":4,"65522":3,"65523":3,"65524":2,"65525":3,"65526":4,"65527":3,"65528":2,"65529":4,"65530":3,"65531":1,"65532":3,"65533":4,"65534":2,"65535":3,"65536":3,"65537":1,"65538":1,"65539":3,"65540":2,"65541":5,"65542":3,"65543":3,"65544":4,"65545":2,"65546":3,"65547":3,"65548":1,"65549":3,"65550":1,"65551":3,"65552":2,"65553":3,"65554":4,"65555":4,"65556":2,"65557":4,"65558":1,"65559":2,"65560":1,"65561":4,"65562":2,"65563":4,"65564":2,"65565":3,"65566":3,"65567":3,"65568":4,"65569":2,"65570":3,"65571":5,"65572":2,"65573":3,"65574":3,"65575":4,"65576":1,"65577":2,"65578":3,"65579":1,"65580":4,"65581":4,"65582":4,"65583":2,"65584":3,"65585":2,"65586":3,"65587":4,"65588":2,"65589":3,"65590":4,"65591":3,"65592":2,"65593":5,"65594":3,"65595":3,"65596":4,"65597":5,"65598":3,"65599":2,"65600":3,"65601":1,"65602":3,"65603":4,"65604":1,"65605":4,"65606":4,"65607":4,"65608":2,"65609":4,"65610":4,"65611":4,"65612":3,"65613":1,"65614":3,"65615":4,"65616":5,"65617":1,"65618":4,"65619":1,"65620":2,"65621":2,"65622":5,"65623":4,"65624":4,"65625":2,"65626":5,"65627":2,"65628":4,"65629":4,"65630":2,"65631":4,"65632":2,"65633":2,"65634":3,"65635":3,"65636":3,"65637":1,"65638":3,"65639":2,"65640":4,"65641":4,"65642":5,"65643":3,"65644":1,"65645":1,"65646":1,"65647":4,"65648":2,"65649":2,"65650":5,"65651":2,"65652":3,"65653":3,"65654":3,"65655":4,"65656":2,"65657":3,"65658":2,"65659":3,"65660":2,"65661":3,"65662":4,"65663":2,"65664":4,"65665":4,"65666":3,"65667":3,"65668":2,"65669":2,"65670":4,"65671":3,"65672":3,"65673":2,"65674":4,"65675":2,"65676":3,"65677":4,"65678":1,"65679":1,"65680":3,"65681":3,"65682":2,"65683":2,"65684":1,"65685":3,"65686":3,"65687":2,"65688":4,"65689":2,"65690":2,"65691":4,"65692":3,"65693":3,"65694":1,"65695":4,"65696":4,"65697":3,"65698":2,"65699":5,"65700":2,"65701":4,"65702":2,"65703":3,"65704":2,"65705":4,"65706":1,"65707":4,"65708":3,"65709":2,"65710":3,"65711":4,"65712":4,"65713":3,"65714":4,"65715":2,"65716":3,"65717":4,"65718":4,"65719":2,"65720":1,"65721":1,"65722":1,"65723":3,"65724":3,"65725":3,"65726":1,"65727":3,"65728":3,"65729":2,"65730":2,"65731":3,"65732":3,"65733":3,"65734":3,"65735":2,"65736":1,"65737":3,"65738":4,"65739":4,"65740":3,"65741":5,"65742":2,"65743":4,"65744":1,"65745":2,"65746":3,"65747":5,"65748":5,"65749":3,"65750":2,"65751":3,"65752":2,"65753":4,"65754":3,"65755":4,"65756":4,"65757":3,"65758":4,"65759":3,"65760":2,"65761":2,"65762":2,"65763":3,"65764":4,"65765":1,"65766":1,"65767":3,"65768":3,"65769":5,"65770":3,"65771":4,"65772":4,"65773":3,"65774":2,"65775":4,"65776":4,"65777":3,"65778":1,"65779":3,"65780":3,"65781":3,"65782":3,"65783":2,"65784":4,"65785":3,"65786":4,"65787":2,"65788":3,"65789":4,"65790":3,"65791":1,"65792":2,"65793":3,"65794":3,"65795":4,"65796":3,"65797":2,"65798":2,"65799":3,"65800":2,"65801":2,"65802":3,"65803":2,"65804":4,"65805":3,"65806":3,"65807":3,"65808":2,"65809":3,"65810":3,"65811":5,"65812":2,"65813":3,"65814":4,"65815":3,"65816":4,"65817":4,"65818":4,"65819":3,"65820":2,"65821":1,"65822":2,"65823":2,"65824":3,"65825":3,"65826":3,"65827":3,"65828":1,"65829":3,"65830":3,"65831":5,"65832":3,"65833":4,"65834":4,"65835":3,"65836":5,"65837":1,"65838":5,"65839":4,"65840":3,"65841":4,"65842":2,"65843":4,"65844":4,"65845":3,"65846":1,"65847":1,"65848":3,"65849":1,"65850":5,"65851":2,"65852":3,"65853":2,"65854":3,"65855":2,"65856":2,"65857":4,"65858":2,"65859":2,"65860":1,"65861":3,"65862":2,"65863":3,"65864":4,"65865":4,"65866":3,"65867":2,"65868":2,"65869":1,"65870":2,"65871":4,"65872":1,"65873":4,"65874":1,"65875":2,"65876":3,"65877":3,"65878":2,"65879":2,"65880":2,"65881":3,"65882":3,"65883":2,"65884":2,"65885":4,"65886":1,"65887":3,"65888":2,"65889":3,"65890":3,"65891":3,"65892":1,"65893":3,"65894":2,"65895":4,"65896":3,"65897":3,"65898":2,"65899":3,"65900":4,"65901":3,"65902":4,"65903":2,"65904":2,"65905":3,"65906":2,"65907":2,"65908":2,"65909":4,"65910":5,"65911":3,"65912":5,"65913":3,"65914":4,"65915":3,"65916":4,"65917":5,"65918":1,"65919":1,"65920":3,"65921":3,"65922":4,"65923":3,"65924":1,"65925":2,"65926":4,"65927":3,"65928":5,"65929":2,"65930":1,"65931":2,"65932":3,"65933":4,"65934":4,"65935":1,"65936":3,"65937":3,"65938":2,"65939":4,"65940":3,"65941":4,"65942":3,"65943":4,"65944":2,"65945":3,"65946":2,"65947":4,"65948":3,"65949":4,"65950":4,"65951":3,"65952":3,"65953":2,"65954":2,"65955":2,"65956":2,"65957":3,"65958":4,"65959":2,"65960":3,"65961":5,"65962":4,"65963":3,"65964":1,"65965":3,"65966":2,"65967":4,"65968":3,"65969":2,"65970":3,"65971":4,"65972":4,"65973":3,"65974":5,"65975":2,"65976":4,"65977":4,"65978":4,"65979":1,"65980":3,"65981":2,"65982":4,"65983":2,"65984":4,"65985":2,"65986":3,"65987":3,"65988":3,"65989":3,"65990":2,"65991":4,"65992":1,"65993":3,"65994":2,"65995":4,"65996":2,"65997":3,"65998":3,"65999":3,"66000":4,"66001":3,"66002":4,"66003":2,"66004":4,"66005":4,"66006":2,"66007":3,"66008":1,"66009":3,"66010":3,"66011":4,"66012":1,"66013":3,"66014":2,"66015":3,"66016":2,"66017":1,"66018":3,"66019":3,"66020":2,"66021":4,"66022":5,"66023":3,"66024":4,"66025":4,"66026":4,"66027":4,"66028":2,"66029":3,"66030":4,"66031":3,"66032":2,"66033":2,"66034":4,"66035":4,"66036":4,"66037":3,"66038":4,"66039":5,"66040":3,"66041":1,"66042":2,"66043":4,"66044":4,"66045":1,"66046":3,"66047":4,"66048":3,"66049":4,"66050":3,"66051":3,"66052":3,"66053":4,"66054":2,"66055":4,"66056":3,"66057":3,"66058":2,"66059":3,"66060":4,"66061":4,"66062":4,"66063":4,"66064":1,"66065":4,"66066":2,"66067":3,"66068":2,"66069":5,"66070":3,"66071":2,"66072":2,"66073":2,"66074":3,"66075":4,"66076":2,"66077":3,"66078":3,"66079":4,"66080":3,"66081":3,"66082":3,"66083":3,"66084":3,"66085":1,"66086":3,"66087":1,"66088":1,"66089":4,"66090":3,"66091":3,"66092":4,"66093":4,"66094":3,"66095":4,"66096":3,"66097":2,"66098":4,"66099":4,"66100":3,"66101":2,"66102":4,"66103":1,"66104":1,"66105":5,"66106":5,"66107":1,"66108":4,"66109":3,"66110":3,"66111":4,"66112":4,"66113":2,"66114":1,"66115":4,"66116":3,"66117":4,"66118":2,"66119":1,"66120":2,"66121":4,"66122":2,"66123":4,"66124":4,"66125":2,"66126":3,"66127":2,"66128":2,"66129":3,"66130":2,"66131":2,"66132":3,"66133":5,"66134":3,"66135":4,"66136":2,"66137":2,"66138":3,"66139":4,"66140":2,"66141":4,"66142":3,"66143":1,"66144":4,"66145":1,"66146":1,"66147":3,"66148":2,"66149":4,"66150":3,"66151":4,"66152":3,"66153":3,"66154":4,"66155":2,"66156":5,"66157":2,"66158":2,"66159":3,"66160":4,"66161":4,"66162":3,"66163":3,"66164":2,"66165":3,"66166":4,"66167":3,"66168":1,"66169":3,"66170":3,"66171":4,"66172":5,"66173":1,"66174":3,"66175":3,"66176":2,"66177":3,"66178":3,"66179":2,"66180":4,"66181":3,"66182":5,"66183":2,"66184":2,"66185":3,"66186":3,"66187":2,"66188":3,"66189":4,"66190":1,"66191":3,"66192":4,"66193":4,"66194":3,"66195":2,"66196":3,"66197":4,"66198":2,"66199":2,"66200":5,"66201":3,"66202":5,"66203":2,"66204":4,"66205":3,"66206":2,"66207":3,"66208":4,"66209":2,"66210":4,"66211":4,"66212":2,"66213":2,"66214":2,"66215":5,"66216":2,"66217":2,"66218":2,"66219":3,"66220":5,"66221":4,"66222":4,"66223":3,"66224":4,"66225":4,"66226":4,"66227":3,"66228":1,"66229":5,"66230":3,"66231":3,"66232":3,"66233":3,"66234":3,"66235":4,"66236":3,"66237":4,"66238":3,"66239":2,"66240":4,"66241":3,"66242":2,"66243":3,"66244":5,"66245":3,"66246":2,"66247":2,"66248":4,"66249":4,"66250":3,"66251":4,"66252":4,"66253":3,"66254":2,"66255":3,"66256":2,"66257":2,"66258":2,"66259":5,"66260":3,"66261":1,"66262":4,"66263":2,"66264":3,"66265":2,"66266":3,"66267":3,"66268":2,"66269":3,"66270":3,"66271":2,"66272":1,"66273":5,"66274":2,"66275":2,"66276":3,"66277":5,"66278":4,"66279":2,"66280":5,"66281":2,"66282":5,"66283":3,"66284":5,"66285":2,"66286":4,"66287":2,"66288":5,"66289":2,"66290":4,"66291":3,"66292":3,"66293":4,"66294":3,"66295":5,"66296":3,"66297":2,"66298":1,"66299":3,"66300":3,"66301":4,"66302":2,"66303":1,"66304":3,"66305":3,"66306":1,"66307":3,"66308":3,"66309":3,"66310":3,"66311":1,"66312":3,"66313":4,"66314":5,"66315":3,"66316":5,"66317":2,"66318":1,"66319":3,"66320":2,"66321":5,"66322":4,"66323":4,"66324":4,"66325":4,"66326":3,"66327":4,"66328":1,"66329":3,"66330":1,"66331":2,"66332":5,"66333":5,"66334":3,"66335":3,"66336":3,"66337":2,"66338":2,"66339":3,"66340":3,"66341":4,"66342":4,"66343":4,"66344":4,"66345":3,"66346":1,"66347":3,"66348":3,"66349":4,"66350":2,"66351":4,"66352":3,"66353":4,"66354":3,"66355":2,"66356":4,"66357":2,"66358":3,"66359":3,"66360":3,"66361":3,"66362":3,"66363":3,"66364":4,"66365":1,"66366":3,"66367":2,"66368":4,"66369":4,"66370":4,"66371":4,"66372":2,"66373":4,"66374":2,"66375":4,"66376":2,"66377":3,"66378":3,"66379":2,"66380":2,"66381":3,"66382":3,"66383":4,"66384":3,"66385":3,"66386":2,"66387":2,"66388":1,"66389":3,"66390":4,"66391":5,"66392":4,"66393":4,"66394":3,"66395":2,"66396":5,"66397":5,"66398":2,"66399":2,"66400":3,"66401":2,"66402":3,"66403":3,"66404":4,"66405":3,"66406":4,"66407":4,"66408":5,"66409":4,"66410":4,"66411":1,"66412":4,"66413":4,"66414":4,"66415":2,"66416":2,"66417":2,"66418":4,"66419":2,"66420":2,"66421":2,"66422":5,"66423":1,"66424":3,"66425":5,"66426":2,"66427":3,"66428":1,"66429":1,"66430":4,"66431":3,"66432":4,"66433":2,"66434":1,"66435":4,"66436":4,"66437":2,"66438":3,"66439":2,"66440":2,"66441":2,"66442":3,"66443":4,"66444":4,"66445":3,"66446":3,"66447":3,"66448":2,"66449":2,"66450":2,"66451":1,"66452":5,"66453":4,"66454":4,"66455":2,"66456":4,"66457":3,"66458":4,"66459":5,"66460":1,"66461":3,"66462":4,"66463":2,"66464":1,"66465":2,"66466":3,"66467":5,"66468":1,"66469":5,"66470":2,"66471":3,"66472":1,"66473":4,"66474":4,"66475":3,"66476":2,"66477":4,"66478":5,"66479":3,"66480":4,"66481":5,"66482":3,"66483":3,"66484":1,"66485":4,"66486":4,"66487":4,"66488":3,"66489":2,"66490":3,"66491":2,"66492":3,"66493":1,"66494":1,"66495":4,"66496":2,"66497":3,"66498":4,"66499":3,"66500":4,"66501":4,"66502":4,"66503":3,"66504":5,"66505":2,"66506":3,"66507":4,"66508":1,"66509":5,"66510":4,"66511":3,"66512":5,"66513":2,"66514":4,"66515":3,"66516":1,"66517":4,"66518":4,"66519":2,"66520":2,"66521":3,"66522":3,"66523":3,"66524":3,"66525":4,"66526":5,"66527":3,"66528":5,"66529":1,"66530":3,"66531":3,"66532":2,"66533":2,"66534":2,"66535":3,"66536":3,"66537":1,"66538":3,"66539":5,"66540":4,"66541":3,"66542":1,"66543":2,"66544":3,"66545":3,"66546":3,"66547":2,"66548":2,"66549":3,"66550":3,"66551":2,"66552":3,"66553":2,"66554":4,"66555":4,"66556":4,"66557":5,"66558":4,"66559":3,"66560":3,"66561":3,"66562":4,"66563":2,"66564":3,"66565":2,"66566":4,"66567":3,"66568":1,"66569":2,"66570":4,"66571":2,"66572":2,"66573":3,"66574":3,"66575":1,"66576":3,"66577":4,"66578":2,"66579":4,"66580":3,"66581":2,"66582":5,"66583":3,"66584":3,"66585":1,"66586":3,"66587":2,"66588":3,"66589":2,"66590":3,"66591":3,"66592":3,"66593":4,"66594":3,"66595":3,"66596":5,"66597":3,"66598":3,"66599":3,"66600":3,"66601":3,"66602":2,"66603":4,"66604":3,"66605":4,"66606":3,"66607":3,"66608":4,"66609":4,"66610":4,"66611":2,"66612":2,"66613":4,"66614":3,"66615":4,"66616":3,"66617":3,"66618":2,"66619":3,"66620":2,"66621":3,"66622":4,"66623":2,"66624":1,"66625":3,"66626":1,"66627":4,"66628":3,"66629":3,"66630":2,"66631":4,"66632":2,"66633":4,"66634":2,"66635":3,"66636":3,"66637":5,"66638":4,"66639":1,"66640":3,"66641":3,"66642":2,"66643":1,"66644":4,"66645":4,"66646":3,"66647":2,"66648":2,"66649":5,"66650":4,"66651":4,"66652":4,"66653":3,"66654":4,"66655":3,"66656":4,"66657":1,"66658":1,"66659":5,"66660":2,"66661":3,"66662":4,"66663":4,"66664":3,"66665":3,"66666":3,"66667":4,"66668":1,"66669":4,"66670":5,"66671":5,"66672":4,"66673":3,"66674":3,"66675":4,"66676":2,"66677":2,"66678":2,"66679":5,"66680":3,"66681":2,"66682":4,"66683":3,"66684":3,"66685":2,"66686":3,"66687":1,"66688":4,"66689":3,"66690":4,"66691":2,"66692":4,"66693":5,"66694":2,"66695":4,"66696":3,"66697":4,"66698":4,"66699":3,"66700":4,"66701":3,"66702":3,"66703":4,"66704":2,"66705":1,"66706":3,"66707":3,"66708":3,"66709":2,"66710":2,"66711":4,"66712":3,"66713":3,"66714":4,"66715":5,"66716":2,"66717":3,"66718":3,"66719":2,"66720":1,"66721":4,"66722":2,"66723":3,"66724":4,"66725":1,"66726":2,"66727":2,"66728":2,"66729":2,"66730":1,"66731":3,"66732":4,"66733":1,"66734":4,"66735":3,"66736":3,"66737":2,"66738":3,"66739":2,"66740":1,"66741":4,"66742":5,"66743":3,"66744":1,"66745":4,"66746":5,"66747":3,"66748":2,"66749":3,"66750":2,"66751":3,"66752":4,"66753":3,"66754":2,"66755":3,"66756":5,"66757":4,"66758":4,"66759":5,"66760":3,"66761":1,"66762":1,"66763":2,"66764":4,"66765":4,"66766":5,"66767":2,"66768":3,"66769":2,"66770":4,"66771":3,"66772":3,"66773":4,"66774":3,"66775":3,"66776":1,"66777":4,"66778":3,"66779":4,"66780":3,"66781":1,"66782":4,"66783":3,"66784":4,"66785":2,"66786":4,"66787":2,"66788":2,"66789":3,"66790":2,"66791":4,"66792":3,"66793":4,"66794":1,"66795":2,"66796":5,"66797":3,"66798":4,"66799":1,"66800":1,"66801":4,"66802":1,"66803":4,"66804":4,"66805":2,"66806":4,"66807":2,"66808":5,"66809":5,"66810":3,"66811":1,"66812":2,"66813":1,"66814":4,"66815":3,"66816":3,"66817":5,"66818":2,"66819":3,"66820":2,"66821":4,"66822":5,"66823":2,"66824":4,"66825":3,"66826":4,"66827":4,"66828":3,"66829":5,"66830":4,"66831":2,"66832":2,"66833":3,"66834":3,"66835":3,"66836":4,"66837":2,"66838":4,"66839":4,"66840":2,"66841":5,"66842":5,"66843":3,"66844":3,"66845":4,"66846":4,"66847":1,"66848":1,"66849":5,"66850":4,"66851":4,"66852":4,"66853":3,"66854":2,"66855":4,"66856":2,"66857":3,"66858":1,"66859":2,"66860":3,"66861":2,"66862":4,"66863":4,"66864":1,"66865":1,"66866":2,"66867":4,"66868":4,"66869":4,"66870":3,"66871":1,"66872":2,"66873":5,"66874":2,"66875":4,"66876":2,"66877":2,"66878":3,"66879":2,"66880":3,"66881":2,"66882":4,"66883":3,"66884":3,"66885":4,"66886":4,"66887":3,"66888":5,"66889":3,"66890":1,"66891":4,"66892":4,"66893":2,"66894":3,"66895":4,"66896":4,"66897":5,"66898":1,"66899":4,"66900":2,"66901":2,"66902":4,"66903":4,"66904":2,"66905":3,"66906":3,"66907":1,"66908":2,"66909":5,"66910":3,"66911":2,"66912":1,"66913":2,"66914":3,"66915":4,"66916":2,"66917":4,"66918":1,"66919":5,"66920":3,"66921":2,"66922":2,"66923":3,"66924":1,"66925":4,"66926":4,"66927":4,"66928":1,"66929":1,"66930":3,"66931":3,"66932":1,"66933":3,"66934":1,"66935":3,"66936":5,"66937":3,"66938":1,"66939":3,"66940":5,"66941":2,"66942":3,"66943":2,"66944":3,"66945":3,"66946":3,"66947":3,"66948":4,"66949":3,"66950":4,"66951":2,"66952":1,"66953":5,"66954":2,"66955":5,"66956":3,"66957":3,"66958":4,"66959":1,"66960":5,"66961":2,"66962":2,"66963":2,"66964":2,"66965":3,"66966":1,"66967":5,"66968":4,"66969":4,"66970":1,"66971":4,"66972":4,"66973":4,"66974":4,"66975":2,"66976":1,"66977":3,"66978":1,"66979":4,"66980":4,"66981":3,"66982":4,"66983":3,"66984":4,"66985":2,"66986":4,"66987":4,"66988":5,"66989":2,"66990":1,"66991":4,"66992":3,"66993":3,"66994":3,"66995":3,"66996":1,"66997":2,"66998":2,"66999":3,"67000":3,"67001":3,"67002":4,"67003":3,"67004":4,"67005":3,"67006":3,"67007":4,"67008":2,"67009":4,"67010":3,"67011":4,"67012":2,"67013":3,"67014":1,"67015":4,"67016":3,"67017":2,"67018":4,"67019":4,"67020":3,"67021":2,"67022":1,"67023":3,"67024":3,"67025":3,"67026":3,"67027":3,"67028":3,"67029":4,"67030":2,"67031":2,"67032":1,"67033":2,"67034":3,"67035":3,"67036":3,"67037":2,"67038":3,"67039":1,"67040":4,"67041":4,"67042":1,"67043":4,"67044":3,"67045":4,"67046":3,"67047":3,"67048":4,"67049":3,"67050":3,"67051":5,"67052":4,"67053":3,"67054":2,"67055":5,"67056":3,"67057":5,"67058":2,"67059":5,"67060":3,"67061":1,"67062":2,"67063":1,"67064":3,"67065":1,"67066":2,"67067":3,"67068":4,"67069":3,"67070":4,"67071":1,"67072":3,"67073":4,"67074":2,"67075":3,"67076":3,"67077":4,"67078":2,"67079":3,"67080":1,"67081":3,"67082":4,"67083":4,"67084":3,"67085":3,"67086":5,"67087":4,"67088":3,"67089":3,"67090":4,"67091":2,"67092":2,"67093":2,"67094":1,"67095":3,"67096":2,"67097":3,"67098":2,"67099":3,"67100":2,"67101":1,"67102":3,"67103":2,"67104":3,"67105":2,"67106":3,"67107":3,"67108":4,"67109":2,"67110":1,"67111":3,"67112":2,"67113":1,"67114":1,"67115":2,"67116":2,"67117":3,"67118":3,"67119":3,"67120":3,"67121":3,"67122":3,"67123":5,"67124":2,"67125":2,"67126":2,"67127":3,"67128":2,"67129":1,"67130":4,"67131":3,"67132":4,"67133":3,"67134":4,"67135":4,"67136":3,"67137":4,"67138":2,"67139":3,"67140":2,"67141":3,"67142":4,"67143":4,"67144":4,"67145":2,"67146":4,"67147":3,"67148":3,"67149":4,"67150":3,"67151":1,"67152":3,"67153":3,"67154":1,"67155":1,"67156":4,"67157":2,"67158":4,"67159":4,"67160":2,"67161":3,"67162":4,"67163":4,"67164":2,"67165":2,"67166":3,"67167":4,"67168":3,"67169":4,"67170":1,"67171":3,"67172":3,"67173":5,"67174":4,"67175":4,"67176":2,"67177":5,"67178":4,"67179":3,"67180":3,"67181":2,"67182":4,"67183":3,"67184":3,"67185":4,"67186":2,"67187":3,"67188":3,"67189":4,"67190":4,"67191":1,"67192":2,"67193":5,"67194":4,"67195":4,"67196":2,"67197":5,"67198":3,"67199":5,"67200":1,"67201":5,"67202":2,"67203":3,"67204":2,"67205":3,"67206":3,"67207":2,"67208":4,"67209":4,"67210":3,"67211":3,"67212":2,"67213":4,"67214":2,"67215":4,"67216":1,"67217":3,"67218":1,"67219":3,"67220":4,"67221":3,"67222":3,"67223":2,"67224":2,"67225":4,"67226":4,"67227":2,"67228":3,"67229":5,"67230":3,"67231":3,"67232":3,"67233":3,"67234":3,"67235":1,"67236":4,"67237":2,"67238":4,"67239":3,"67240":1,"67241":3,"67242":2,"67243":4,"67244":3,"67245":4,"67246":4,"67247":2,"67248":4,"67249":3,"67250":1,"67251":3,"67252":3,"67253":4,"67254":3,"67255":1,"67256":4,"67257":1,"67258":1,"67259":4,"67260":3,"67261":3,"67262":2,"67263":2,"67264":3,"67265":5,"67266":3,"67267":5,"67268":2,"67269":3,"67270":1,"67271":5,"67272":3,"67273":4,"67274":1,"67275":2,"67276":5,"67277":3,"67278":3,"67279":3,"67280":3,"67281":2,"67282":3,"67283":2,"67284":2,"67285":3,"67286":3,"67287":1,"67288":3,"67289":2,"67290":3,"67291":4,"67292":2,"67293":4,"67294":4,"67295":2,"67296":1,"67297":3,"67298":3,"67299":3,"67300":3,"67301":4,"67302":1,"67303":2,"67304":3,"67305":2,"67306":3,"67307":2,"67308":3,"67309":3,"67310":1,"67311":4,"67312":3,"67313":2,"67314":2,"67315":1,"67316":3,"67317":4,"67318":4,"67319":1,"67320":4,"67321":4,"67322":2,"67323":1,"67324":4,"67325":3,"67326":4,"67327":3,"67328":2,"67329":3,"67330":3,"67331":3,"67332":4,"67333":4,"67334":3,"67335":4,"67336":2,"67337":4,"67338":1,"67339":1,"67340":3,"67341":3,"67342":5,"67343":4,"67344":3,"67345":3,"67346":3,"67347":2,"67348":2,"67349":5,"67350":2,"67351":4,"67352":1,"67353":4,"67354":4,"67355":5,"67356":1,"67357":4,"67358":2,"67359":3,"67360":3,"67361":2,"67362":4,"67363":5,"67364":3,"67365":4,"67366":3,"67367":2,"67368":2,"67369":3,"67370":3,"67371":3,"67372":4,"67373":4,"67374":2,"67375":1,"67376":3,"67377":1,"67378":2,"67379":2,"67380":3,"67381":4,"67382":3,"67383":3,"67384":3,"67385":3,"67386":4,"67387":2,"67388":3,"67389":2,"67390":3,"67391":3,"67392":4,"67393":2,"67394":3,"67395":3,"67396":3,"67397":5,"67398":3,"67399":3,"67400":2,"67401":1,"67402":3,"67403":3,"67404":3,"67405":3,"67406":4,"67407":4,"67408":3,"67409":2,"67410":3,"67411":3,"67412":4,"67413":1,"67414":2,"67415":4,"67416":2,"67417":3,"67418":4,"67419":5,"67420":5,"67421":2,"67422":5,"67423":5,"67424":3,"67425":3,"67426":4,"67427":4,"67428":5,"67429":2,"67430":4,"67431":2,"67432":4,"67433":1,"67434":1,"67435":3,"67436":4,"67437":3,"67438":4,"67439":4,"67440":4,"67441":2,"67442":4,"67443":1,"67444":4,"67445":4,"67446":1,"67447":2,"67448":1,"67449":2,"67450":3,"67451":2,"67452":3,"67453":2,"67454":3,"67455":2,"67456":3,"67457":2,"67458":3,"67459":3,"67460":2,"67461":5,"67462":3,"67463":4,"67464":4,"67465":2,"67466":3,"67467":3,"67468":4,"67469":1,"67470":1,"67471":3,"67472":3,"67473":1,"67474":3,"67475":3,"67476":2,"67477":3,"67478":1,"67479":4,"67480":4,"67481":3,"67482":2,"67483":1,"67484":2,"67485":2,"67486":3,"67487":4,"67488":3,"67489":4,"67490":1,"67491":1,"67492":1,"67493":4,"67494":5,"67495":1,"67496":3,"67497":3,"67498":3,"67499":2,"67500":3,"67501":4,"67502":2,"67503":4,"67504":2,"67505":5,"67506":4,"67507":2,"67508":4,"67509":2,"67510":3,"67511":4,"67512":3,"67513":4,"67514":1,"67515":2,"67516":2,"67517":3,"67518":4,"67519":3,"67520":2,"67521":2,"67522":1,"67523":4,"67524":2,"67525":5,"67526":3,"67527":3,"67528":3,"67529":4,"67530":4,"67531":3,"67532":3,"67533":3,"67534":3,"67535":4,"67536":3,"67537":3,"67538":3,"67539":3,"67540":3,"67541":1,"67542":4,"67543":3,"67544":3,"67545":2,"67546":5,"67547":3,"67548":3,"67549":3,"67550":5,"67551":3,"67552":4,"67553":2,"67554":1,"67555":5,"67556":2,"67557":4,"67558":2,"67559":2,"67560":2,"67561":4,"67562":2,"67563":1,"67564":4,"67565":3,"67566":3,"67567":3,"67568":4,"67569":4,"67570":2,"67571":5,"67572":4,"67573":1,"67574":4,"67575":1,"67576":3,"67577":4,"67578":3,"67579":4,"67580":4,"67581":3,"67582":2,"67583":2,"67584":3,"67585":4,"67586":3,"67587":5,"67588":3,"67589":2,"67590":3,"67591":1,"67592":2,"67593":3,"67594":4,"67595":3,"67596":3,"67597":4,"67598":2,"67599":5,"67600":3,"67601":4,"67602":3,"67603":3,"67604":3,"67605":4,"67606":2,"67607":3,"67608":4,"67609":4,"67610":3,"67611":5,"67612":1,"67613":4,"67614":4,"67615":1,"67616":3,"67617":4,"67618":3,"67619":1,"67620":3,"67621":4,"67622":3,"67623":1,"67624":2,"67625":3,"67626":2,"67627":4,"67628":4,"67629":3,"67630":3,"67631":2,"67632":5,"67633":2,"67634":4,"67635":3,"67636":4,"67637":4,"67638":3,"67639":2,"67640":3,"67641":4,"67642":2,"67643":4,"67644":2,"67645":2,"67646":3,"67647":3,"67648":4,"67649":4,"67650":4,"67651":4,"67652":3,"67653":2,"67654":3,"67655":3,"67656":1,"67657":3,"67658":2,"67659":3,"67660":3,"67661":2,"67662":2,"67663":4,"67664":3,"67665":2,"67666":3,"67667":1,"67668":4,"67669":3,"67670":3,"67671":5,"67672":2,"67673":4,"67674":4,"67675":3,"67676":3,"67677":5,"67678":3,"67679":4,"67680":3,"67681":5,"67682":3,"67683":2,"67684":3,"67685":3,"67686":2,"67687":2,"67688":5,"67689":3,"67690":3,"67691":4,"67692":4,"67693":3,"67694":4,"67695":3,"67696":2,"67697":4,"67698":3,"67699":2,"67700":2,"67701":4,"67702":2,"67703":4,"67704":3,"67705":4,"67706":3,"67707":2,"67708":3,"67709":4,"67710":4,"67711":4,"67712":3,"67713":1,"67714":1,"67715":3,"67716":3,"67717":2,"67718":2,"67719":4,"67720":2,"67721":4,"67722":4,"67723":4,"67724":3,"67725":5,"67726":2,"67727":3,"67728":3,"67729":3,"67730":3,"67731":4,"67732":3,"67733":5,"67734":3,"67735":3,"67736":4,"67737":3,"67738":2,"67739":4,"67740":3,"67741":1,"67742":4,"67743":3,"67744":3,"67745":4,"67746":3,"67747":3,"67748":4,"67749":3,"67750":2,"67751":2,"67752":4,"67753":5,"67754":1,"67755":4,"67756":3,"67757":3,"67758":4,"67759":2,"67760":2,"67761":5,"67762":3,"67763":4,"67764":2,"67765":3,"67766":2,"67767":4,"67768":3,"67769":4,"67770":3,"67771":3,"67772":3,"67773":3,"67774":3,"67775":3,"67776":2,"67777":3,"67778":2,"67779":3,"67780":2,"67781":2,"67782":3,"67783":2,"67784":5,"67785":4,"67786":4,"67787":5,"67788":2,"67789":2,"67790":3,"67791":2,"67792":3,"67793":3,"67794":3,"67795":1,"67796":3,"67797":3,"67798":2,"67799":2,"67800":4,"67801":3,"67802":3,"67803":2,"67804":4,"67805":5,"67806":4,"67807":4,"67808":2,"67809":2,"67810":3,"67811":5,"67812":3,"67813":1,"67814":4,"67815":1,"67816":4,"67817":1,"67818":4,"67819":4,"67820":3,"67821":5,"67822":2,"67823":1,"67824":3,"67825":3,"67826":4,"67827":2,"67828":1,"67829":3,"67830":3,"67831":2,"67832":2,"67833":4,"67834":4,"67835":4,"67836":2,"67837":3,"67838":3,"67839":3,"67840":2,"67841":3,"67842":3,"67843":5,"67844":2,"67845":2,"67846":3,"67847":3,"67848":3,"67849":3,"67850":2,"67851":2,"67852":5,"67853":2,"67854":4,"67855":2,"67856":4,"67857":3,"67858":2,"67859":3,"67860":3,"67861":3,"67862":2,"67863":4,"67864":2,"67865":3,"67866":4,"67867":2,"67868":3,"67869":5,"67870":2,"67871":2,"67872":1,"67873":3,"67874":4,"67875":4,"67876":4,"67877":3,"67878":4,"67879":2,"67880":3,"67881":2,"67882":3,"67883":3,"67884":1,"67885":3,"67886":1,"67887":3,"67888":4,"67889":1,"67890":2,"67891":3,"67892":2,"67893":3,"67894":4,"67895":1,"67896":3,"67897":4,"67898":2,"67899":4,"67900":5,"67901":2,"67902":4,"67903":3,"67904":2,"67905":4,"67906":5,"67907":3,"67908":2,"67909":2,"67910":3,"67911":3,"67912":3,"67913":4,"67914":3,"67915":4,"67916":3,"67917":3,"67918":3,"67919":3,"67920":2,"67921":1,"67922":3,"67923":2,"67924":3,"67925":4,"67926":4,"67927":4,"67928":3,"67929":2,"67930":2,"67931":3,"67932":1,"67933":2,"67934":2,"67935":4,"67936":3,"67937":4,"67938":1,"67939":3,"67940":3,"67941":5,"67942":2,"67943":4,"67944":1,"67945":3,"67946":3,"67947":2,"67948":2,"67949":2,"67950":3,"67951":3,"67952":3,"67953":2,"67954":5,"67955":3,"67956":1,"67957":4,"67958":4,"67959":3,"67960":2,"67961":2,"67962":3,"67963":3,"67964":3,"67965":2,"67966":3,"67967":3,"67968":3,"67969":4,"67970":3,"67971":2,"67972":5,"67973":4,"67974":3,"67975":3,"67976":2,"67977":3,"67978":2,"67979":3,"67980":5,"67981":2,"67982":4,"67983":3,"67984":3,"67985":4,"67986":5,"67987":2,"67988":4,"67989":5,"67990":4,"67991":2,"67992":1,"67993":3,"67994":3,"67995":4,"67996":1,"67997":3,"67998":4,"67999":3,"68000":4,"68001":3,"68002":1,"68003":3,"68004":3,"68005":3,"68006":2,"68007":3,"68008":2,"68009":2,"68010":2,"68011":4,"68012":3,"68013":3,"68014":2,"68015":2,"68016":4,"68017":5,"68018":5,"68019":2,"68020":3,"68021":3,"68022":2,"68023":3,"68024":3,"68025":2,"68026":1,"68027":1,"68028":3,"68029":2,"68030":1,"68031":2,"68032":2,"68033":5,"68034":3,"68035":3,"68036":2,"68037":2,"68038":4,"68039":3,"68040":2,"68041":3,"68042":2,"68043":1,"68044":1,"68045":3,"68046":2,"68047":4,"68048":3,"68049":3,"68050":2,"68051":4,"68052":3,"68053":3,"68054":3,"68055":4,"68056":4,"68057":4,"68058":3,"68059":2,"68060":2,"68061":3,"68062":3,"68063":3,"68064":3,"68065":2,"68066":5,"68067":2,"68068":4,"68069":3,"68070":3,"68071":3,"68072":2,"68073":4,"68074":5,"68075":5,"68076":3,"68077":2,"68078":1,"68079":5,"68080":2,"68081":2,"68082":4,"68083":1,"68084":4,"68085":4,"68086":3,"68087":3,"68088":4,"68089":5,"68090":4,"68091":3,"68092":3,"68093":4,"68094":4,"68095":2,"68096":5,"68097":2,"68098":3,"68099":3,"68100":1,"68101":4,"68102":5,"68103":3,"68104":3,"68105":1,"68106":3,"68107":4,"68108":3,"68109":4,"68110":2,"68111":1,"68112":3,"68113":3,"68114":3,"68115":4,"68116":3,"68117":2,"68118":3,"68119":3,"68120":3,"68121":3,"68122":3,"68123":3,"68124":5,"68125":2,"68126":4,"68127":2,"68128":1,"68129":4,"68130":5,"68131":3,"68132":5,"68133":3,"68134":4,"68135":3,"68136":3,"68137":4,"68138":4,"68139":1,"68140":3,"68141":2,"68142":2,"68143":3,"68144":3,"68145":3,"68146":2,"68147":3,"68148":3,"68149":4,"68150":2,"68151":4,"68152":4,"68153":4,"68154":2,"68155":1,"68156":2,"68157":4,"68158":5,"68159":1,"68160":3,"68161":1,"68162":3,"68163":2,"68164":3,"68165":3,"68166":3,"68167":4,"68168":2,"68169":2,"68170":1,"68171":2,"68172":3,"68173":2,"68174":4,"68175":3,"68176":1,"68177":3,"68178":3,"68179":4,"68180":2,"68181":3,"68182":5,"68183":4,"68184":2,"68185":3,"68186":1,"68187":3,"68188":3,"68189":4,"68190":4,"68191":4,"68192":4,"68193":3,"68194":4,"68195":4,"68196":1,"68197":3,"68198":4,"68199":3,"68200":3,"68201":4,"68202":3,"68203":3,"68204":3,"68205":3,"68206":1,"68207":4,"68208":5,"68209":5,"68210":3,"68211":4,"68212":3,"68213":1,"68214":2,"68215":3,"68216":4,"68217":4,"68218":1,"68219":4,"68220":3,"68221":2,"68222":3,"68223":1,"68224":1,"68225":2,"68226":4,"68227":3,"68228":2,"68229":5,"68230":5,"68231":4,"68232":3,"68233":4,"68234":3,"68235":3,"68236":3,"68237":3,"68238":4,"68239":1,"68240":3,"68241":4,"68242":3,"68243":3,"68244":3,"68245":3,"68246":3,"68247":1,"68248":4,"68249":4,"68250":4,"68251":1,"68252":4,"68253":3,"68254":2,"68255":5,"68256":3,"68257":4,"68258":3,"68259":1,"68260":2,"68261":3,"68262":3,"68263":5,"68264":3,"68265":2,"68266":2,"68267":1,"68268":3,"68269":3,"68270":4,"68271":3,"68272":4,"68273":2,"68274":2,"68275":3,"68276":3,"68277":2,"68278":1,"68279":4,"68280":1,"68281":2,"68282":4,"68283":4,"68284":3,"68285":4,"68286":3,"68287":4,"68288":3,"68289":3,"68290":3,"68291":5,"68292":4,"68293":4,"68294":2,"68295":1,"68296":3,"68297":3,"68298":2,"68299":5,"68300":3,"68301":4,"68302":2,"68303":3,"68304":3,"68305":3,"68306":1,"68307":4,"68308":4,"68309":3,"68310":3,"68311":4,"68312":3,"68313":4,"68314":4,"68315":3,"68316":2,"68317":3,"68318":2,"68319":4,"68320":3,"68321":5,"68322":2,"68323":4,"68324":2,"68325":4,"68326":1,"68327":5,"68328":2,"68329":3,"68330":3,"68331":2,"68332":3,"68333":3,"68334":5,"68335":3,"68336":4,"68337":4,"68338":4,"68339":4,"68340":1,"68341":2,"68342":2,"68343":3,"68344":3,"68345":5,"68346":4,"68347":2,"68348":2,"68349":2,"68350":3,"68351":3,"68352":4,"68353":3,"68354":3,"68355":5,"68356":3,"68357":4,"68358":2,"68359":1,"68360":3,"68361":3,"68362":4,"68363":3,"68364":3,"68365":4,"68366":3,"68367":3,"68368":2,"68369":3,"68370":4,"68371":2,"68372":4,"68373":2,"68374":2,"68375":5,"68376":3,"68377":3,"68378":2,"68379":5,"68380":2,"68381":3,"68382":3,"68383":5,"68384":4,"68385":3,"68386":4,"68387":4,"68388":5,"68389":4,"68390":3,"68391":4,"68392":1,"68393":3,"68394":3,"68395":4,"68396":1,"68397":4,"68398":2,"68399":3,"68400":4,"68401":2,"68402":3,"68403":3,"68404":2,"68405":3,"68406":5,"68407":3,"68408":2,"68409":3,"68410":4,"68411":5,"68412":5,"68413":4,"68414":2,"68415":4,"68416":4,"68417":3,"68418":2,"68419":3,"68420":5,"68421":4,"68422":4,"68423":4,"68424":3,"68425":3,"68426":3,"68427":1,"68428":1,"68429":5,"68430":2,"68431":3,"68432":2,"68433":4,"68434":4,"68435":2,"68436":4,"68437":1,"68438":3,"68439":5,"68440":3,"68441":5,"68442":3,"68443":3,"68444":3,"68445":4,"68446":2,"68447":4,"68448":1,"68449":3,"68450":5,"68451":4,"68452":1,"68453":4,"68454":4,"68455":2,"68456":3,"68457":2,"68458":4,"68459":4,"68460":1,"68461":3,"68462":3,"68463":4,"68464":3,"68465":3,"68466":2,"68467":2,"68468":3,"68469":2,"68470":4,"68471":3,"68472":3,"68473":2,"68474":3,"68475":2,"68476":4,"68477":1,"68478":5,"68479":4,"68480":2,"68481":4,"68482":3,"68483":2,"68484":3,"68485":2,"68486":2,"68487":5,"68488":2,"68489":3,"68490":2,"68491":2,"68492":2,"68493":2,"68494":3,"68495":1,"68496":4,"68497":3,"68498":2,"68499":4,"68500":5,"68501":3,"68502":4,"68503":4,"68504":1,"68505":2,"68506":3,"68507":3,"68508":5,"68509":3,"68510":4,"68511":2,"68512":3,"68513":1,"68514":4,"68515":3,"68516":4,"68517":4,"68518":4,"68519":4,"68520":3,"68521":2,"68522":1,"68523":1,"68524":3,"68525":4,"68526":4,"68527":2,"68528":1,"68529":3,"68530":1,"68531":4,"68532":2,"68533":5,"68534":3,"68535":4,"68536":1,"68537":4,"68538":1,"68539":3,"68540":3,"68541":3,"68542":2,"68543":1,"68544":3,"68545":4,"68546":3,"68547":4,"68548":3,"68549":3,"68550":3,"68551":2,"68552":4,"68553":3,"68554":3,"68555":3,"68556":3,"68557":2,"68558":4,"68559":1,"68560":5,"68561":5,"68562":3,"68563":4,"68564":4,"68565":2,"68566":1,"68567":3,"68568":2,"68569":1,"68570":2,"68571":4,"68572":1,"68573":2,"68574":5,"68575":1,"68576":4,"68577":3,"68578":5,"68579":2,"68580":2,"68581":3,"68582":3,"68583":5,"68584":3,"68585":4,"68586":4,"68587":2,"68588":2,"68589":4,"68590":5,"68591":2,"68592":1,"68593":3,"68594":1,"68595":2,"68596":4,"68597":1,"68598":1,"68599":4,"68600":5,"68601":4,"68602":3,"68603":3,"68604":3,"68605":2,"68606":2,"68607":4,"68608":3,"68609":4,"68610":2,"68611":5,"68612":3,"68613":3,"68614":3,"68615":3,"68616":1,"68617":4,"68618":2,"68619":1,"68620":4,"68621":3,"68622":2,"68623":2,"68624":4,"68625":1,"68626":1,"68627":4,"68628":4,"68629":3,"68630":2,"68631":4,"68632":3,"68633":4,"68634":2,"68635":3,"68636":1,"68637":3,"68638":2,"68639":4,"68640":4,"68641":2,"68642":4,"68643":2,"68644":2,"68645":4,"68646":3,"68647":2,"68648":4,"68649":2,"68650":4,"68651":2,"68652":1,"68653":3,"68654":2,"68655":2,"68656":4,"68657":1,"68658":1,"68659":3,"68660":3,"68661":4,"68662":4,"68663":4,"68664":2,"68665":5,"68666":3,"68667":1,"68668":4,"68669":2,"68670":2,"68671":5,"68672":3,"68673":4,"68674":3,"68675":5,"68676":3,"68677":4,"68678":3,"68679":3,"68680":1,"68681":1,"68682":3,"68683":3,"68684":4,"68685":1,"68686":1,"68687":2,"68688":3,"68689":3,"68690":3,"68691":2,"68692":3,"68693":3,"68694":2,"68695":3,"68696":4,"68697":3,"68698":4,"68699":3,"68700":2,"68701":4,"68702":3,"68703":2,"68704":4,"68705":4,"68706":3,"68707":3,"68708":2,"68709":1,"68710":4,"68711":4,"68712":3,"68713":3,"68714":2,"68715":2,"68716":1,"68717":4,"68718":2,"68719":4,"68720":4,"68721":2,"68722":5,"68723":4,"68724":2,"68725":3,"68726":5,"68727":4,"68728":4,"68729":2,"68730":1,"68731":1,"68732":5,"68733":3,"68734":1,"68735":1,"68736":3,"68737":3,"68738":3,"68739":4,"68740":2,"68741":3,"68742":3,"68743":3,"68744":2,"68745":5,"68746":2,"68747":3,"68748":4,"68749":3,"68750":2,"68751":1,"68752":2,"68753":3,"68754":4,"68755":3,"68756":2,"68757":2,"68758":3,"68759":5,"68760":3,"68761":2,"68762":3,"68763":4,"68764":3,"68765":4,"68766":1,"68767":4,"68768":4,"68769":3,"68770":2,"68771":4,"68772":2,"68773":4,"68774":1,"68775":3,"68776":3,"68777":2,"68778":4,"68779":4,"68780":3,"68781":2,"68782":4,"68783":3,"68784":3,"68785":5,"68786":3,"68787":4,"68788":2,"68789":5,"68790":3,"68791":3,"68792":4,"68793":1,"68794":1,"68795":1,"68796":2,"68797":2,"68798":3,"68799":3,"68800":4,"68801":3,"68802":3,"68803":3,"68804":3,"68805":3,"68806":3,"68807":4,"68808":3,"68809":4,"68810":4,"68811":1,"68812":3,"68813":2,"68814":3,"68815":2,"68816":1,"68817":4,"68818":1,"68819":2,"68820":3,"68821":3,"68822":4,"68823":5,"68824":4,"68825":3,"68826":3,"68827":3,"68828":3,"68829":4,"68830":4,"68831":4,"68832":5,"68833":4,"68834":2,"68835":2,"68836":2,"68837":2,"68838":5,"68839":2,"68840":3,"68841":5,"68842":3,"68843":5,"68844":4,"68845":4,"68846":1,"68847":3,"68848":3,"68849":3,"68850":3,"68851":4,"68852":3,"68853":1,"68854":5,"68855":4,"68856":2,"68857":4,"68858":2,"68859":4,"68860":3,"68861":4,"68862":3,"68863":3,"68864":3,"68865":3,"68866":3,"68867":4,"68868":2,"68869":1,"68870":3,"68871":1,"68872":5,"68873":3,"68874":4,"68875":4,"68876":3,"68877":2,"68878":3,"68879":2,"68880":4,"68881":4,"68882":4,"68883":2,"68884":3,"68885":1,"68886":1,"68887":4,"68888":5,"68889":4,"68890":4,"68891":4,"68892":3,"68893":1,"68894":3,"68895":1,"68896":4,"68897":3,"68898":5,"68899":4,"68900":4,"68901":4,"68902":2,"68903":3,"68904":2,"68905":1,"68906":2,"68907":4,"68908":3,"68909":3,"68910":4,"68911":4,"68912":4,"68913":1,"68914":4,"68915":3,"68916":3,"68917":2,"68918":3,"68919":4,"68920":1,"68921":2,"68922":4,"68923":3,"68924":5,"68925":4,"68926":4,"68927":1,"68928":2,"68929":2,"68930":3,"68931":4,"68932":2,"68933":1,"68934":2,"68935":3,"68936":4,"68937":3,"68938":2,"68939":3,"68940":1,"68941":2,"68942":4,"68943":1,"68944":2,"68945":2,"68946":1,"68947":3,"68948":3,"68949":4,"68950":3,"68951":3,"68952":3,"68953":3,"68954":1,"68955":2,"68956":3,"68957":4,"68958":1,"68959":2,"68960":4,"68961":3,"68962":2,"68963":3,"68964":4,"68965":2,"68966":2,"68967":2,"68968":3,"68969":3,"68970":3,"68971":1,"68972":2,"68973":5,"68974":2,"68975":1,"68976":2,"68977":3,"68978":2,"68979":3,"68980":3,"68981":1,"68982":2,"68983":4,"68984":1,"68985":1,"68986":4,"68987":4,"68988":4,"68989":2,"68990":3,"68991":1,"68992":4,"68993":5,"68994":2,"68995":3,"68996":2,"68997":1,"68998":3,"68999":4,"69000":2,"69001":4,"69002":3,"69003":2,"69004":1,"69005":3,"69006":2,"69007":2,"69008":2,"69009":3,"69010":4,"69011":5,"69012":3,"69013":5,"69014":3,"69015":3,"69016":4,"69017":1,"69018":1,"69019":3,"69020":4,"69021":3,"69022":2,"69023":3,"69024":3,"69025":4,"69026":4,"69027":3,"69028":3,"69029":4,"69030":4,"69031":5,"69032":4,"69033":1,"69034":5,"69035":5,"69036":4,"69037":2,"69038":3,"69039":2,"69040":4,"69041":1,"69042":4,"69043":3,"69044":3,"69045":2,"69046":3,"69047":3,"69048":4,"69049":4,"69050":3,"69051":3,"69052":3,"69053":5,"69054":2,"69055":4,"69056":3,"69057":3,"69058":3,"69059":1,"69060":4,"69061":1,"69062":3,"69063":3,"69064":4,"69065":4,"69066":3,"69067":4,"69068":2,"69069":1,"69070":4,"69071":3,"69072":3,"69073":3,"69074":3,"69075":2,"69076":2,"69077":2,"69078":4,"69079":3,"69080":3,"69081":3,"69082":1,"69083":3,"69084":2,"69085":1,"69086":3,"69087":2,"69088":1,"69089":4,"69090":2,"69091":3,"69092":4,"69093":4,"69094":2,"69095":2,"69096":2,"69097":3,"69098":2,"69099":5,"69100":3,"69101":4,"69102":5,"69103":2,"69104":5,"69105":5,"69106":4,"69107":5,"69108":4,"69109":2,"69110":1,"69111":2,"69112":5,"69113":3,"69114":3,"69115":4,"69116":1,"69117":1,"69118":5,"69119":4,"69120":1,"69121":2,"69122":3,"69123":3,"69124":4,"69125":4,"69126":1,"69127":2,"69128":4,"69129":2,"69130":3,"69131":3,"69132":2,"69133":2,"69134":4,"69135":4,"69136":4,"69137":4,"69138":5,"69139":3,"69140":4,"69141":4,"69142":4,"69143":3,"69144":4,"69145":2,"69146":2,"69147":3,"69148":3,"69149":4,"69150":4,"69151":2,"69152":3,"69153":1,"69154":3,"69155":4,"69156":4,"69157":3,"69158":2,"69159":4,"69160":3,"69161":4,"69162":3,"69163":3,"69164":2,"69165":3,"69166":2,"69167":3,"69168":1,"69169":2,"69170":3,"69171":3,"69172":2,"69173":3,"69174":3,"69175":2,"69176":4,"69177":2,"69178":4,"69179":3,"69180":3,"69181":2,"69182":3,"69183":3,"69184":3,"69185":2,"69186":2,"69187":4,"69188":1,"69189":2,"69190":4,"69191":4,"69192":3,"69193":4,"69194":3,"69195":4,"69196":3,"69197":2,"69198":3,"69199":5,"69200":3,"69201":4,"69202":2,"69203":4,"69204":1,"69205":5,"69206":2,"69207":1,"69208":4,"69209":4,"69210":1,"69211":3,"69212":3,"69213":4,"69214":4,"69215":4,"69216":2,"69217":3,"69218":4,"69219":4,"69220":3,"69221":4,"69222":3,"69223":1,"69224":3,"69225":4,"69226":3,"69227":2,"69228":3,"69229":3,"69230":4,"69231":1,"69232":3,"69233":2,"69234":2,"69235":2,"69236":3,"69237":2,"69238":4,"69239":5,"69240":3,"69241":2,"69242":2,"69243":4,"69244":2,"69245":4,"69246":1,"69247":3,"69248":3,"69249":1,"69250":2,"69251":3,"69252":3,"69253":1,"69254":4,"69255":3,"69256":1,"69257":2,"69258":5,"69259":4,"69260":4,"69261":5,"69262":1,"69263":3,"69264":5,"69265":3,"69266":2,"69267":2,"69268":3,"69269":4,"69270":3,"69271":2,"69272":4,"69273":4,"69274":3,"69275":5,"69276":4,"69277":4,"69278":5,"69279":2,"69280":3,"69281":4,"69282":3,"69283":2,"69284":5,"69285":5,"69286":4,"69287":2,"69288":4,"69289":3,"69290":3,"69291":2,"69292":4,"69293":3,"69294":3,"69295":3,"69296":5,"69297":3,"69298":4,"69299":3,"69300":2,"69301":5,"69302":2,"69303":4,"69304":4,"69305":3,"69306":3,"69307":4,"69308":2,"69309":4,"69310":2,"69311":1,"69312":2,"69313":4,"69314":2,"69315":4,"69316":4,"69317":1,"69318":2,"69319":1,"69320":5,"69321":3,"69322":1,"69323":2,"69324":4,"69325":1,"69326":3,"69327":4,"69328":4,"69329":3,"69330":3,"69331":1,"69332":3,"69333":1,"69334":4,"69335":3,"69336":3,"69337":4,"69338":2,"69339":2,"69340":3,"69341":3,"69342":3,"69343":1,"69344":4,"69345":3,"69346":3,"69347":3,"69348":2,"69349":5,"69350":5,"69351":5,"69352":3,"69353":2,"69354":5,"69355":3,"69356":4,"69357":5,"69358":2,"69359":3,"69360":1,"69361":3,"69362":2,"69363":3,"69364":1,"69365":2,"69366":3,"69367":3,"69368":4,"69369":4,"69370":1,"69371":3,"69372":3,"69373":3,"69374":3,"69375":1,"69376":3,"69377":4,"69378":4,"69379":4,"69380":3,"69381":5,"69382":2,"69383":3,"69384":1,"69385":4,"69386":3,"69387":4,"69388":2,"69389":1,"69390":4,"69391":4,"69392":2,"69393":3,"69394":4,"69395":3,"69396":5,"69397":4,"69398":2,"69399":3,"69400":1,"69401":5,"69402":4,"69403":5,"69404":2,"69405":3,"69406":1,"69407":3,"69408":4,"69409":2,"69410":3,"69411":4,"69412":1,"69413":4,"69414":3,"69415":2,"69416":2,"69417":4,"69418":2,"69419":3,"69420":4,"69421":3,"69422":4,"69423":5,"69424":4,"69425":3,"69426":4,"69427":2,"69428":4,"69429":2,"69430":2,"69431":2,"69432":2,"69433":2,"69434":1,"69435":4,"69436":3,"69437":3,"69438":2,"69439":3,"69440":4,"69441":3,"69442":3,"69443":5,"69444":5,"69445":2,"69446":2,"69447":1,"69448":3,"69449":3,"69450":4,"69451":3,"69452":4,"69453":2,"69454":3,"69455":3,"69456":3,"69457":2,"69458":1,"69459":3,"69460":4,"69461":4,"69462":1,"69463":4,"69464":3,"69465":3,"69466":3,"69467":1,"69468":2,"69469":4,"69470":3,"69471":5,"69472":4,"69473":3,"69474":4,"69475":2,"69476":3,"69477":2,"69478":1,"69479":2,"69480":5,"69481":4,"69482":5,"69483":2,"69484":1,"69485":3,"69486":4,"69487":4,"69488":3,"69489":1,"69490":5,"69491":3,"69492":2,"69493":1,"69494":3,"69495":4,"69496":4,"69497":5,"69498":3,"69499":3,"69500":3,"69501":3,"69502":3,"69503":4,"69504":3,"69505":4,"69506":4,"69507":2,"69508":2,"69509":1,"69510":4,"69511":4,"69512":5,"69513":4,"69514":3,"69515":3,"69516":3,"69517":4,"69518":2,"69519":2,"69520":4,"69521":2,"69522":1,"69523":5,"69524":1,"69525":2,"69526":1,"69527":5,"69528":3,"69529":3,"69530":4,"69531":4,"69532":2,"69533":1,"69534":2,"69535":4,"69536":4,"69537":2,"69538":3,"69539":4,"69540":3,"69541":3,"69542":3,"69543":3,"69544":2,"69545":2,"69546":2,"69547":2,"69548":2,"69549":3,"69550":3,"69551":3,"69552":2,"69553":4,"69554":2,"69555":2,"69556":4,"69557":1,"69558":4,"69559":4,"69560":2,"69561":3,"69562":2,"69563":3,"69564":4,"69565":4,"69566":3,"69567":3,"69568":4,"69569":3,"69570":2,"69571":3,"69572":5,"69573":3,"69574":2,"69575":2,"69576":2,"69577":3,"69578":2,"69579":3,"69580":4,"69581":4,"69582":4,"69583":2,"69584":4,"69585":3,"69586":5,"69587":3,"69588":1,"69589":3,"69590":4,"69591":3,"69592":3,"69593":5,"69594":2,"69595":2,"69596":2,"69597":3,"69598":2,"69599":3,"69600":4,"69601":3,"69602":5,"69603":3,"69604":2,"69605":3,"69606":2,"69607":3,"69608":3,"69609":2,"69610":3,"69611":4,"69612":2,"69613":4,"69614":4,"69615":3,"69616":1,"69617":2,"69618":5,"69619":3,"69620":5,"69621":3,"69622":1,"69623":1,"69624":4,"69625":2,"69626":3,"69627":3,"69628":3,"69629":3,"69630":3,"69631":2,"69632":2,"69633":3,"69634":4,"69635":1,"69636":3,"69637":3,"69638":3,"69639":4,"69640":3,"69641":3,"69642":3,"69643":3,"69644":2,"69645":3,"69646":5,"69647":2,"69648":2,"69649":2,"69650":4,"69651":5,"69652":3,"69653":4,"69654":3,"69655":1,"69656":3,"69657":4,"69658":3,"69659":2,"69660":3,"69661":3,"69662":5,"69663":3,"69664":1,"69665":4,"69666":3,"69667":2,"69668":2,"69669":4,"69670":2,"69671":3,"69672":3,"69673":4,"69674":2,"69675":2,"69676":2,"69677":2,"69678":3,"69679":4,"69680":4,"69681":3,"69682":2,"69683":4,"69684":3,"69685":4,"69686":5,"69687":2,"69688":3,"69689":2,"69690":4,"69691":3,"69692":4,"69693":3,"69694":1,"69695":3,"69696":3,"69697":3,"69698":3,"69699":4,"69700":3,"69701":2,"69702":3,"69703":1,"69704":3,"69705":3,"69706":4,"69707":4,"69708":2,"69709":2,"69710":4,"69711":3,"69712":2,"69713":2,"69714":3,"69715":3,"69716":2,"69717":4,"69718":2,"69719":1,"69720":3,"69721":3,"69722":2,"69723":1,"69724":3,"69725":4,"69726":3,"69727":1,"69728":2,"69729":2,"69730":3,"69731":4,"69732":5,"69733":2,"69734":4,"69735":3,"69736":1,"69737":5,"69738":1,"69739":4,"69740":3,"69741":3,"69742":5,"69743":5,"69744":4,"69745":4,"69746":3,"69747":3,"69748":3,"69749":3,"69750":2,"69751":2,"69752":1,"69753":3,"69754":3,"69755":2,"69756":1,"69757":2,"69758":2,"69759":3,"69760":4,"69761":3,"69762":5,"69763":3,"69764":4,"69765":3,"69766":4,"69767":2,"69768":4,"69769":3,"69770":4,"69771":5,"69772":5,"69773":3,"69774":3,"69775":3,"69776":1,"69777":1,"69778":1,"69779":3,"69780":4,"69781":3,"69782":3,"69783":4,"69784":1,"69785":2,"69786":4,"69787":3,"69788":5,"69789":4,"69790":4,"69791":2,"69792":3,"69793":5,"69794":3,"69795":2,"69796":2,"69797":4,"69798":3,"69799":4,"69800":2,"69801":3,"69802":4,"69803":4,"69804":1,"69805":1,"69806":3,"69807":4,"69808":4,"69809":2,"69810":3,"69811":1,"69812":3,"69813":1,"69814":4,"69815":3,"69816":3,"69817":5,"69818":4,"69819":2,"69820":4,"69821":2,"69822":5,"69823":3,"69824":2,"69825":4,"69826":2,"69827":1,"69828":3,"69829":3,"69830":4,"69831":4,"69832":3,"69833":3,"69834":1,"69835":4,"69836":2,"69837":5,"69838":3,"69839":4,"69840":2,"69841":2,"69842":2,"69843":2,"69844":4,"69845":2,"69846":3,"69847":3,"69848":4,"69849":4,"69850":3,"69851":4,"69852":4,"69853":2,"69854":5,"69855":3,"69856":4,"69857":4,"69858":3,"69859":5,"69860":3,"69861":2,"69862":3,"69863":3,"69864":2,"69865":4,"69866":3,"69867":4,"69868":3,"69869":3,"69870":3,"69871":3,"69872":3,"69873":1,"69874":1,"69875":2,"69876":1,"69877":2,"69878":3,"69879":3,"69880":3,"69881":3,"69882":4,"69883":3,"69884":3,"69885":4,"69886":4,"69887":2,"69888":4,"69889":3,"69890":3,"69891":4,"69892":1,"69893":5,"69894":3,"69895":2,"69896":1,"69897":3,"69898":4,"69899":3,"69900":4,"69901":3,"69902":1,"69903":5,"69904":5,"69905":4,"69906":3,"69907":4,"69908":2,"69909":1,"69910":4,"69911":3,"69912":1,"69913":1,"69914":2,"69915":3,"69916":2,"69917":1,"69918":2,"69919":3,"69920":2,"69921":3,"69922":3,"69923":4,"69924":3,"69925":4,"69926":4,"69927":4,"69928":3,"69929":1,"69930":3,"69931":4,"69932":3,"69933":4,"69934":2,"69935":4,"69936":2,"69937":2,"69938":3,"69939":2,"69940":1,"69941":2,"69942":3,"69943":1,"69944":4,"69945":3,"69946":4,"69947":2,"69948":4,"69949":2,"69950":5,"69951":3,"69952":4,"69953":2,"69954":3,"69955":5,"69956":3,"69957":2,"69958":1,"69959":3,"69960":1,"69961":4,"69962":2,"69963":1,"69964":4,"69965":3,"69966":5,"69967":4,"69968":4,"69969":5,"69970":2,"69971":4,"69972":3,"69973":3,"69974":5,"69975":3,"69976":2,"69977":5,"69978":4,"69979":4,"69980":4,"69981":3,"69982":2,"69983":3,"69984":4,"69985":4,"69986":1,"69987":3,"69988":2,"69989":4,"69990":1,"69991":2,"69992":4,"69993":1,"69994":4,"69995":4,"69996":4,"69997":3,"69998":3,"69999":3,"70000":3,"70001":4,"70002":3,"70003":4,"70004":3,"70005":5,"70006":3,"70007":3,"70008":4,"70009":4,"70010":2,"70011":1,"70012":3,"70013":3,"70014":3,"70015":4,"70016":2,"70017":2,"70018":1,"70019":3,"70020":1,"70021":3,"70022":5,"70023":4,"70024":5,"70025":3,"70026":3,"70027":2,"70028":2,"70029":1,"70030":1,"70031":1,"70032":3,"70033":4,"70034":4,"70035":1,"70036":2,"70037":2,"70038":2,"70039":3,"70040":4,"70041":3,"70042":3,"70043":3,"70044":4,"70045":2,"70046":4,"70047":2,"70048":3,"70049":3,"70050":1,"70051":2,"70052":3,"70053":2,"70054":3,"70055":2,"70056":3,"70057":3,"70058":3,"70059":4,"70060":2,"70061":3,"70062":3,"70063":4,"70064":5,"70065":3,"70066":2,"70067":3,"70068":2,"70069":3,"70070":3,"70071":3,"70072":2,"70073":2,"70074":1,"70075":2,"70076":4,"70077":4,"70078":4,"70079":2,"70080":1,"70081":3,"70082":3,"70083":2,"70084":2,"70085":3,"70086":3,"70087":2,"70088":5,"70089":3,"70090":2,"70091":3,"70092":3,"70093":3,"70094":5,"70095":4,"70096":3,"70097":2,"70098":1,"70099":3,"70100":4,"70101":3,"70102":4,"70103":5,"70104":3,"70105":5,"70106":5,"70107":4,"70108":2,"70109":3,"70110":5,"70111":1,"70112":1,"70113":1,"70114":1,"70115":1,"70116":3,"70117":3,"70118":3,"70119":4,"70120":2,"70121":2,"70122":3,"70123":1,"70124":3,"70125":4,"70126":5,"70127":2,"70128":2,"70129":4,"70130":3,"70131":4,"70132":1,"70133":3,"70134":3,"70135":1,"70136":3,"70137":4,"70138":4,"70139":1,"70140":3,"70141":1,"70142":3,"70143":3,"70144":3,"70145":2,"70146":3,"70147":5,"70148":3,"70149":4,"70150":4,"70151":4,"70152":4,"70153":3,"70154":4,"70155":2,"70156":3,"70157":3,"70158":4,"70159":3,"70160":5,"70161":5,"70162":2,"70163":4,"70164":3,"70165":4,"70166":2,"70167":3,"70168":3,"70169":3,"70170":2,"70171":2,"70172":1,"70173":3,"70174":5,"70175":2,"70176":3,"70177":2,"70178":4,"70179":3,"70180":1,"70181":2,"70182":3,"70183":3,"70184":2,"70185":3,"70186":3,"70187":4,"70188":2,"70189":5,"70190":3,"70191":1,"70192":3,"70193":2,"70194":3,"70195":4,"70196":3,"70197":1,"70198":4,"70199":4,"70200":3,"70201":4,"70202":3,"70203":3,"70204":3,"70205":1,"70206":3,"70207":4,"70208":2,"70209":4,"70210":3,"70211":4,"70212":1,"70213":3,"70214":4,"70215":3,"70216":5,"70217":1,"70218":2,"70219":3,"70220":5,"70221":5,"70222":4,"70223":3,"70224":3,"70225":2,"70226":2,"70227":3,"70228":4,"70229":3,"70230":4,"70231":4,"70232":3,"70233":2,"70234":3,"70235":1,"70236":3,"70237":4,"70238":4,"70239":4,"70240":4,"70241":3,"70242":1,"70243":4,"70244":1,"70245":1,"70246":3,"70247":3,"70248":3,"70249":3,"70250":4,"70251":5,"70252":2,"70253":2,"70254":1,"70255":4,"70256":5,"70257":4,"70258":3,"70259":2,"70260":4,"70261":4,"70262":2,"70263":4,"70264":3,"70265":2,"70266":4,"70267":2,"70268":4,"70269":4,"70270":4,"70271":3,"70272":1,"70273":4,"70274":3,"70275":2,"70276":3,"70277":3,"70278":3,"70279":1,"70280":2,"70281":3,"70282":4,"70283":3,"70284":2,"70285":3,"70286":4,"70287":1,"70288":5,"70289":3,"70290":3,"70291":3,"70292":3,"70293":2,"70294":3,"70295":2,"70296":3,"70297":4,"70298":3,"70299":4,"70300":4,"70301":4,"70302":4,"70303":4,"70304":5,"70305":4,"70306":3,"70307":1,"70308":5,"70309":1,"70310":3,"70311":3,"70312":3,"70313":4,"70314":3,"70315":3,"70316":2,"70317":4,"70318":4,"70319":2,"70320":2,"70321":5,"70322":1,"70323":2,"70324":2,"70325":3,"70326":3,"70327":4,"70328":1,"70329":3,"70330":2,"70331":4,"70332":4,"70333":3,"70334":2,"70335":3,"70336":4,"70337":4,"70338":2,"70339":2,"70340":3,"70341":4,"70342":4,"70343":2,"70344":4,"70345":2,"70346":4,"70347":3,"70348":3,"70349":4,"70350":3,"70351":2,"70352":4,"70353":2,"70354":3,"70355":2,"70356":5,"70357":3,"70358":3,"70359":3,"70360":3,"70361":2,"70362":4,"70363":2,"70364":3,"70365":2,"70366":4,"70367":4,"70368":3,"70369":4,"70370":1,"70371":3,"70372":2,"70373":1,"70374":5,"70375":3,"70376":2,"70377":4,"70378":3,"70379":2,"70380":2,"70381":3,"70382":2,"70383":3,"70384":4,"70385":1,"70386":3,"70387":3,"70388":2,"70389":1,"70390":3,"70391":4,"70392":4,"70393":2,"70394":3,"70395":1,"70396":1,"70397":2,"70398":1,"70399":3,"70400":5,"70401":2,"70402":3,"70403":5,"70404":2,"70405":3,"70406":3,"70407":3,"70408":3,"70409":4,"70410":3,"70411":3,"70412":2,"70413":3,"70414":3,"70415":3,"70416":3,"70417":3,"70418":1,"70419":3,"70420":3,"70421":3,"70422":2,"70423":4,"70424":4,"70425":2,"70426":5,"70427":4,"70428":4,"70429":2,"70430":2,"70431":3,"70432":2,"70433":3,"70434":2,"70435":4,"70436":1,"70437":3,"70438":3,"70439":2,"70440":4,"70441":4,"70442":4,"70443":3,"70444":4,"70445":4,"70446":2,"70447":4,"70448":4,"70449":4,"70450":3,"70451":4,"70452":4,"70453":3,"70454":3,"70455":3,"70456":3,"70457":5,"70458":5,"70459":3,"70460":1,"70461":4,"70462":1,"70463":3,"70464":2,"70465":5,"70466":4,"70467":4,"70468":5,"70469":3,"70470":3,"70471":3,"70472":2,"70473":3,"70474":2,"70475":3,"70476":2,"70477":2,"70478":2,"70479":2,"70480":3,"70481":4,"70482":3,"70483":1,"70484":3,"70485":2,"70486":4,"70487":4,"70488":2,"70489":3,"70490":3,"70491":3,"70492":1,"70493":3,"70494":2,"70495":3,"70496":3,"70497":3,"70498":3,"70499":2,"70500":4,"70501":4,"70502":4,"70503":2,"70504":1,"70505":4,"70506":2,"70507":2,"70508":3,"70509":4,"70510":2,"70511":2,"70512":4,"70513":5,"70514":3,"70515":4,"70516":1,"70517":3,"70518":1,"70519":3,"70520":4,"70521":2,"70522":1,"70523":3,"70524":4,"70525":3,"70526":2,"70527":2,"70528":4,"70529":5,"70530":3,"70531":2,"70532":4,"70533":2,"70534":2,"70535":1,"70536":2,"70537":4,"70538":1,"70539":3,"70540":3,"70541":5,"70542":4,"70543":3,"70544":5,"70545":1,"70546":4,"70547":4,"70548":2,"70549":3,"70550":4,"70551":3,"70552":4,"70553":3,"70554":2,"70555":4,"70556":5,"70557":4,"70558":2,"70559":5,"70560":5,"70561":4,"70562":3,"70563":2,"70564":1,"70565":4,"70566":3,"70567":3,"70568":2,"70569":1,"70570":3,"70571":4,"70572":2,"70573":3,"70574":3,"70575":4,"70576":2,"70577":4,"70578":2,"70579":2,"70580":1,"70581":4,"70582":4,"70583":3,"70584":5,"70585":4,"70586":2,"70587":1,"70588":5,"70589":4,"70590":4,"70591":3,"70592":1,"70593":5,"70594":1,"70595":3,"70596":2,"70597":3,"70598":4,"70599":1,"70600":3,"70601":3,"70602":3,"70603":3,"70604":4,"70605":1,"70606":5,"70607":2,"70608":5,"70609":3,"70610":3,"70611":2,"70612":4,"70613":4,"70614":4,"70615":3,"70616":1,"70617":2,"70618":4,"70619":4,"70620":3,"70621":2,"70622":4,"70623":3,"70624":4,"70625":2,"70626":2,"70627":4,"70628":3,"70629":3,"70630":3,"70631":2,"70632":3,"70633":3,"70634":4,"70635":3,"70636":3,"70637":2,"70638":3,"70639":5,"70640":2,"70641":2,"70642":1,"70643":3,"70644":4,"70645":4,"70646":4,"70647":4,"70648":2,"70649":3,"70650":5,"70651":3,"70652":4,"70653":3,"70654":2,"70655":4,"70656":3,"70657":2,"70658":2,"70659":4,"70660":4,"70661":2,"70662":3,"70663":5,"70664":3,"70665":2,"70666":4,"70667":3,"70668":2,"70669":5,"70670":2,"70671":3,"70672":1,"70673":3,"70674":3,"70675":5,"70676":2,"70677":3,"70678":1,"70679":4,"70680":4,"70681":4,"70682":3,"70683":2,"70684":3,"70685":3,"70686":5,"70687":2,"70688":2,"70689":3,"70690":4,"70691":2,"70692":3,"70693":4,"70694":4,"70695":3,"70696":3,"70697":4,"70698":4,"70699":2,"70700":3,"70701":3,"70702":5,"70703":2,"70704":3,"70705":3,"70706":2,"70707":2,"70708":3,"70709":4,"70710":4,"70711":4,"70712":5,"70713":2,"70714":1,"70715":5,"70716":2,"70717":1,"70718":2,"70719":2,"70720":2,"70721":4,"70722":4,"70723":2,"70724":2,"70725":3,"70726":5,"70727":4,"70728":3,"70729":1,"70730":3,"70731":3,"70732":3,"70733":2,"70734":1,"70735":3,"70736":3,"70737":3,"70738":3,"70739":4,"70740":3,"70741":4,"70742":3,"70743":3,"70744":2,"70745":4,"70746":2,"70747":3,"70748":4,"70749":2,"70750":4,"70751":2,"70752":2,"70753":3,"70754":1,"70755":3,"70756":3,"70757":2,"70758":3,"70759":4,"70760":3,"70761":3,"70762":2,"70763":4,"70764":1,"70765":2,"70766":4,"70767":4,"70768":3,"70769":1,"70770":3,"70771":2,"70772":3,"70773":2,"70774":3,"70775":3,"70776":1,"70777":5,"70778":1,"70779":4,"70780":3,"70781":4,"70782":3,"70783":4,"70784":4,"70785":1,"70786":4,"70787":5,"70788":3,"70789":1,"70790":3,"70791":2,"70792":2,"70793":3,"70794":3,"70795":5,"70796":4,"70797":3,"70798":4,"70799":4,"70800":4,"70801":1,"70802":3,"70803":4,"70804":3,"70805":3,"70806":2,"70807":2,"70808":1,"70809":4,"70810":5,"70811":2,"70812":3,"70813":3,"70814":3,"70815":2,"70816":2,"70817":4,"70818":3,"70819":3,"70820":2,"70821":3,"70822":3,"70823":4,"70824":3,"70825":4,"70826":1,"70827":1,"70828":4,"70829":3,"70830":4,"70831":3,"70832":3,"70833":3,"70834":4,"70835":3,"70836":4,"70837":2,"70838":3,"70839":4,"70840":1,"70841":1,"70842":5,"70843":4,"70844":3,"70845":4,"70846":2,"70847":4,"70848":4,"70849":3,"70850":4,"70851":2,"70852":2,"70853":4,"70854":3,"70855":4,"70856":4,"70857":3,"70858":1,"70859":3,"70860":2,"70861":4,"70862":3,"70863":4,"70864":2,"70865":3,"70866":5,"70867":5,"70868":4,"70869":4,"70870":3,"70871":3,"70872":3,"70873":4,"70874":4,"70875":4,"70876":4,"70877":2,"70878":4,"70879":3,"70880":4,"70881":4,"70882":1,"70883":3,"70884":3,"70885":2,"70886":3,"70887":4,"70888":4,"70889":3,"70890":3,"70891":2,"70892":4,"70893":1,"70894":3,"70895":4,"70896":2,"70897":3,"70898":3,"70899":2,"70900":1,"70901":1,"70902":5,"70903":3,"70904":5,"70905":4,"70906":2,"70907":4,"70908":3,"70909":1,"70910":3,"70911":5,"70912":3,"70913":2,"70914":2,"70915":4,"70916":4,"70917":3,"70918":4,"70919":1,"70920":1,"70921":5,"70922":3,"70923":4,"70924":3,"70925":3,"70926":2,"70927":2,"70928":3,"70929":3,"70930":3,"70931":2,"70932":3,"70933":3,"70934":4,"70935":3,"70936":4,"70937":4,"70938":1,"70939":4,"70940":4,"70941":3,"70942":4,"70943":3,"70944":4,"70945":3,"70946":4,"70947":2,"70948":5,"70949":1,"70950":2,"70951":2,"70952":4,"70953":3,"70954":1,"70955":5,"70956":4,"70957":3,"70958":2,"70959":3,"70960":4,"70961":2,"70962":3,"70963":2,"70964":1,"70965":3,"70966":1,"70967":2,"70968":4,"70969":2,"70970":1,"70971":2,"70972":3,"70973":3,"70974":4,"70975":4,"70976":5,"70977":5,"70978":2,"70979":5,"70980":2,"70981":3,"70982":3,"70983":2,"70984":5,"70985":3,"70986":1,"70987":4,"70988":1,"70989":4,"70990":4,"70991":3,"70992":2,"70993":3,"70994":3,"70995":5,"70996":3,"70997":3,"70998":4,"70999":1,"71000":3,"71001":3,"71002":4,"71003":3,"71004":3,"71005":3,"71006":3,"71007":4,"71008":3,"71009":2,"71010":1,"71011":4,"71012":3,"71013":2,"71014":2,"71015":3,"71016":2,"71017":2,"71018":3,"71019":3,"71020":5,"71021":4,"71022":4,"71023":3,"71024":4,"71025":2,"71026":5,"71027":3,"71028":3,"71029":2,"71030":3,"71031":4,"71032":3,"71033":2,"71034":3,"71035":4,"71036":3,"71037":3,"71038":4,"71039":4,"71040":3,"71041":1,"71042":2,"71043":4,"71044":4,"71045":4,"71046":2,"71047":2,"71048":4,"71049":4,"71050":3,"71051":2,"71052":2,"71053":2,"71054":2,"71055":2,"71056":2,"71057":2,"71058":5,"71059":4,"71060":2,"71061":2,"71062":3,"71063":2,"71064":5,"71065":3,"71066":2,"71067":3,"71068":4,"71069":3,"71070":5,"71071":2,"71072":3,"71073":3,"71074":4,"71075":2,"71076":2,"71077":1,"71078":4,"71079":3,"71080":3,"71081":3,"71082":4,"71083":2,"71084":3,"71085":2,"71086":2,"71087":4,"71088":1,"71089":3,"71090":4,"71091":2,"71092":2,"71093":4,"71094":3,"71095":1,"71096":1,"71097":2,"71098":3,"71099":1,"71100":3,"71101":2,"71102":2,"71103":3,"71104":3,"71105":3,"71106":2,"71107":4,"71108":4,"71109":5,"71110":4,"71111":3,"71112":3,"71113":3,"71114":3,"71115":3,"71116":4,"71117":3,"71118":4,"71119":3,"71120":3,"71121":1,"71122":4,"71123":2,"71124":3,"71125":2,"71126":2,"71127":4,"71128":2,"71129":4,"71130":3,"71131":4,"71132":4,"71133":4,"71134":3,"71135":4,"71136":5,"71137":3,"71138":4,"71139":5,"71140":1,"71141":1,"71142":2,"71143":4,"71144":3,"71145":4,"71146":5,"71147":4,"71148":4,"71149":4,"71150":4,"71151":2,"71152":3,"71153":4,"71154":5,"71155":1,"71156":2,"71157":2,"71158":4,"71159":1,"71160":4,"71161":3,"71162":1,"71163":4,"71164":2,"71165":4,"71166":3,"71167":3,"71168":3,"71169":3,"71170":2,"71171":1,"71172":4,"71173":3,"71174":5,"71175":5,"71176":2,"71177":4,"71178":1,"71179":3,"71180":5,"71181":4,"71182":3,"71183":3,"71184":1,"71185":2,"71186":3,"71187":4,"71188":3,"71189":3,"71190":2,"71191":4,"71192":2,"71193":3,"71194":3,"71195":2,"71196":4,"71197":3,"71198":1,"71199":5,"71200":4,"71201":3,"71202":4,"71203":1,"71204":4,"71205":5,"71206":4,"71207":4,"71208":5,"71209":5,"71210":4,"71211":3,"71212":1,"71213":4,"71214":2,"71215":3,"71216":4,"71217":4,"71218":5,"71219":3,"71220":3,"71221":2,"71222":2,"71223":1,"71224":2,"71225":2,"71226":3,"71227":3,"71228":4,"71229":4,"71230":5,"71231":3,"71232":3,"71233":3,"71234":2,"71235":3,"71236":4,"71237":2,"71238":4,"71239":2,"71240":1,"71241":3,"71242":2,"71243":4,"71244":4,"71245":5,"71246":3,"71247":2,"71248":3,"71249":1,"71250":4,"71251":4,"71252":3,"71253":4,"71254":3,"71255":3,"71256":1,"71257":2,"71258":3,"71259":1,"71260":3,"71261":3,"71262":4,"71263":2,"71264":4,"71265":1,"71266":3,"71267":1,"71268":3,"71269":5,"71270":4,"71271":2,"71272":3,"71273":1,"71274":3,"71275":5,"71276":3,"71277":2,"71278":4,"71279":1,"71280":2,"71281":3,"71282":4,"71283":4,"71284":3,"71285":3,"71286":3,"71287":4,"71288":1,"71289":3,"71290":5,"71291":2,"71292":3,"71293":3,"71294":4,"71295":4,"71296":2,"71297":1,"71298":1,"71299":1,"71300":3,"71301":4,"71302":3,"71303":4,"71304":2,"71305":5,"71306":1,"71307":4,"71308":2,"71309":4,"71310":5,"71311":3,"71312":1,"71313":3,"71314":1,"71315":5,"71316":3,"71317":4,"71318":5,"71319":5,"71320":2,"71321":2,"71322":3,"71323":3,"71324":5,"71325":3,"71326":3,"71327":2,"71328":4,"71329":2,"71330":4,"71331":2,"71332":4,"71333":4,"71334":2,"71335":3,"71336":3,"71337":3,"71338":4,"71339":2,"71340":3,"71341":4,"71342":3,"71343":4,"71344":2,"71345":3,"71346":4,"71347":5,"71348":3,"71349":3,"71350":1,"71351":5,"71352":3,"71353":4,"71354":4,"71355":4,"71356":3,"71357":3,"71358":3,"71359":1,"71360":5,"71361":1,"71362":3,"71363":4,"71364":4,"71365":2,"71366":4,"71367":2,"71368":3,"71369":2,"71370":4,"71371":4,"71372":4,"71373":4,"71374":1,"71375":4,"71376":3,"71377":2,"71378":4,"71379":3,"71380":3,"71381":5,"71382":2,"71383":4,"71384":2,"71385":3,"71386":5,"71387":3,"71388":2,"71389":4,"71390":1,"71391":3,"71392":2,"71393":3,"71394":3,"71395":3,"71396":4,"71397":3,"71398":4,"71399":3,"71400":5,"71401":3,"71402":2,"71403":3,"71404":2,"71405":1,"71406":5,"71407":3,"71408":1,"71409":1,"71410":3,"71411":3,"71412":4,"71413":3,"71414":2,"71415":2,"71416":3,"71417":5,"71418":2,"71419":4,"71420":2,"71421":3,"71422":4,"71423":3,"71424":2,"71425":4,"71426":2,"71427":2,"71428":4,"71429":3,"71430":4,"71431":4,"71432":5,"71433":4,"71434":2,"71435":4,"71436":3,"71437":2,"71438":2,"71439":4,"71440":2,"71441":3,"71442":5,"71443":4,"71444":3,"71445":4,"71446":3,"71447":5,"71448":2,"71449":3,"71450":3,"71451":5,"71452":4,"71453":5,"71454":5,"71455":4,"71456":1,"71457":3,"71458":4,"71459":3,"71460":3,"71461":2,"71462":4,"71463":4,"71464":5,"71465":4,"71466":3,"71467":3,"71468":2,"71469":3,"71470":4,"71471":3,"71472":2,"71473":1,"71474":3,"71475":4,"71476":2,"71477":3,"71478":3,"71479":3,"71480":3,"71481":1,"71482":5,"71483":4,"71484":3,"71485":4,"71486":4,"71487":2,"71488":4,"71489":3,"71490":3,"71491":3,"71492":1,"71493":4,"71494":3,"71495":3,"71496":3,"71497":2,"71498":1,"71499":4,"71500":2,"71501":3,"71502":4,"71503":2,"71504":4,"71505":2,"71506":3,"71507":2,"71508":4,"71509":3,"71510":2,"71511":5,"71512":3,"71513":2,"71514":3,"71515":3,"71516":3,"71517":4,"71518":2,"71519":3,"71520":4,"71521":5,"71522":1,"71523":4,"71524":2,"71525":3,"71526":4,"71527":2,"71528":2,"71529":3,"71530":3,"71531":4,"71532":2,"71533":2,"71534":4,"71535":4,"71536":2,"71537":3,"71538":3,"71539":3,"71540":2,"71541":3,"71542":2,"71543":1,"71544":2,"71545":3,"71546":4,"71547":5,"71548":3,"71549":3,"71550":2,"71551":3,"71552":1,"71553":3,"71554":3,"71555":3,"71556":1,"71557":4,"71558":2,"71559":5,"71560":4,"71561":3,"71562":4,"71563":4,"71564":5,"71565":3,"71566":2,"71567":2,"71568":1,"71569":2,"71570":3,"71571":2,"71572":3,"71573":3,"71574":3,"71575":3,"71576":4,"71577":4,"71578":4,"71579":3,"71580":2,"71581":3,"71582":5,"71583":3,"71584":4,"71585":4,"71586":2,"71587":3,"71588":3,"71589":2,"71590":3,"71591":2,"71592":2,"71593":3,"71594":3,"71595":2,"71596":3,"71597":2,"71598":3,"71599":4,"71600":3,"71601":4,"71602":3,"71603":3,"71604":3,"71605":3,"71606":2,"71607":4,"71608":3,"71609":3,"71610":1,"71611":5,"71612":3,"71613":4,"71614":2,"71615":4,"71616":4,"71617":3,"71618":3,"71619":3,"71620":2,"71621":2,"71622":3,"71623":5,"71624":3,"71625":4,"71626":3,"71627":3,"71628":4,"71629":4,"71630":3,"71631":4,"71632":4,"71633":3,"71634":5,"71635":2,"71636":1,"71637":3,"71638":3,"71639":2,"71640":4,"71641":1,"71642":4,"71643":3,"71644":2,"71645":3,"71646":5,"71647":3,"71648":4,"71649":3,"71650":3,"71651":5,"71652":3,"71653":1,"71654":1,"71655":4,"71656":3,"71657":4,"71658":2,"71659":1,"71660":3,"71661":4,"71662":3,"71663":3,"71664":1,"71665":4,"71666":2,"71667":2,"71668":4,"71669":2,"71670":4,"71671":2,"71672":4,"71673":4,"71674":3,"71675":3,"71676":3,"71677":2,"71678":4,"71679":4,"71680":1,"71681":3,"71682":2,"71683":3,"71684":4,"71685":4,"71686":3,"71687":4,"71688":2,"71689":3,"71690":3,"71691":3,"71692":5,"71693":3,"71694":4,"71695":3,"71696":2,"71697":3,"71698":3,"71699":2,"71700":2,"71701":4,"71702":2,"71703":2,"71704":3,"71705":1,"71706":2,"71707":4,"71708":3,"71709":4,"71710":3,"71711":4,"71712":3,"71713":4,"71714":1,"71715":3,"71716":4,"71717":2,"71718":3,"71719":3,"71720":3,"71721":4,"71722":2,"71723":1,"71724":3,"71725":3,"71726":2,"71727":3,"71728":3,"71729":2,"71730":2,"71731":4,"71732":2,"71733":2,"71734":3,"71735":2,"71736":4,"71737":2,"71738":3,"71739":3,"71740":1,"71741":5,"71742":4,"71743":2,"71744":3,"71745":3,"71746":1,"71747":4,"71748":3,"71749":2,"71750":2,"71751":1,"71752":4,"71753":3,"71754":3,"71755":2,"71756":4,"71757":2,"71758":4,"71759":4,"71760":4,"71761":4,"71762":5,"71763":4,"71764":4,"71765":2,"71766":3,"71767":2,"71768":2,"71769":2,"71770":3,"71771":2,"71772":3,"71773":2,"71774":2,"71775":4,"71776":4,"71777":3,"71778":3,"71779":4,"71780":2,"71781":4,"71782":3,"71783":4,"71784":3,"71785":2,"71786":2,"71787":3,"71788":2,"71789":2,"71790":4,"71791":2,"71792":4,"71793":3,"71794":3,"71795":4,"71796":3,"71797":3,"71798":2,"71799":3,"71800":2,"71801":3,"71802":1,"71803":3,"71804":3,"71805":3,"71806":2,"71807":4,"71808":1,"71809":4,"71810":2,"71811":4,"71812":4,"71813":5,"71814":2,"71815":3,"71816":5,"71817":4,"71818":5,"71819":3,"71820":2,"71821":1,"71822":3,"71823":2,"71824":3,"71825":2,"71826":3,"71827":3,"71828":4,"71829":2,"71830":3,"71831":2,"71832":2,"71833":4,"71834":1,"71835":4,"71836":2,"71837":4,"71838":3,"71839":3,"71840":2,"71841":2,"71842":5,"71843":5,"71844":2,"71845":2,"71846":4,"71847":3,"71848":3,"71849":3,"71850":3,"71851":4,"71852":4,"71853":2,"71854":4,"71855":3,"71856":3,"71857":4,"71858":3,"71859":2,"71860":1,"71861":5,"71862":2,"71863":2,"71864":3,"71865":4,"71866":4,"71867":4,"71868":4,"71869":5,"71870":3,"71871":4,"71872":3,"71873":4,"71874":3,"71875":3,"71876":2,"71877":3,"71878":4,"71879":2,"71880":2,"71881":2,"71882":4,"71883":1,"71884":4,"71885":2,"71886":4,"71887":5,"71888":3,"71889":5,"71890":4,"71891":3,"71892":2,"71893":4,"71894":2,"71895":5,"71896":4,"71897":2,"71898":3,"71899":4,"71900":4,"71901":2,"71902":1,"71903":3,"71904":2,"71905":4,"71906":3,"71907":2,"71908":3,"71909":3,"71910":3,"71911":4,"71912":3,"71913":1,"71914":4,"71915":2,"71916":4,"71917":4,"71918":4,"71919":3,"71920":4,"71921":3,"71922":3,"71923":2,"71924":3,"71925":2,"71926":1,"71927":3,"71928":1,"71929":2,"71930":2,"71931":3,"71932":4,"71933":5,"71934":3,"71935":5,"71936":1,"71937":3,"71938":2,"71939":2,"71940":1,"71941":4,"71942":5,"71943":3,"71944":4,"71945":4,"71946":2,"71947":4,"71948":3,"71949":4,"71950":3,"71951":1,"71952":3,"71953":3,"71954":2,"71955":3,"71956":1,"71957":3,"71958":3,"71959":3,"71960":2,"71961":3,"71962":4,"71963":3,"71964":2,"71965":3,"71966":1,"71967":4,"71968":2,"71969":4,"71970":4,"71971":3,"71972":2,"71973":1,"71974":2,"71975":4,"71976":4,"71977":4,"71978":3,"71979":1,"71980":2,"71981":2,"71982":4,"71983":3,"71984":2,"71985":4,"71986":4,"71987":1,"71988":4,"71989":4,"71990":3,"71991":3,"71992":3,"71993":5,"71994":4,"71995":2,"71996":2,"71997":2,"71998":3,"71999":4,"72000":2,"72001":2,"72002":3,"72003":2,"72004":4,"72005":3,"72006":4,"72007":3,"72008":3,"72009":3,"72010":3,"72011":2,"72012":2,"72013":3,"72014":4,"72015":3,"72016":5,"72017":3,"72018":4,"72019":3,"72020":3,"72021":2,"72022":3,"72023":4,"72024":2,"72025":2,"72026":4,"72027":3,"72028":3,"72029":4,"72030":1,"72031":3,"72032":3,"72033":1,"72034":3,"72035":5,"72036":3,"72037":1,"72038":1,"72039":4,"72040":3,"72041":4,"72042":4,"72043":3,"72044":5,"72045":2,"72046":4,"72047":4,"72048":4,"72049":4,"72050":3,"72051":2,"72052":5,"72053":4,"72054":3,"72055":3,"72056":3,"72057":4,"72058":2,"72059":3,"72060":2,"72061":2,"72062":5,"72063":3,"72064":3,"72065":3,"72066":2,"72067":2,"72068":4,"72069":2,"72070":2,"72071":4,"72072":3,"72073":2,"72074":2,"72075":5,"72076":4,"72077":2,"72078":4,"72079":4,"72080":2,"72081":2,"72082":2,"72083":2,"72084":4,"72085":3,"72086":4,"72087":4,"72088":5,"72089":2,"72090":4,"72091":1,"72092":3,"72093":2,"72094":2,"72095":3,"72096":2,"72097":2,"72098":2,"72099":2,"72100":5,"72101":3,"72102":3,"72103":5,"72104":3,"72105":2,"72106":1,"72107":4,"72108":2,"72109":4,"72110":5,"72111":3,"72112":3,"72113":3,"72114":2,"72115":4,"72116":3,"72117":3,"72118":3,"72119":1,"72120":3,"72121":4,"72122":3,"72123":4,"72124":2,"72125":3,"72126":2,"72127":4,"72128":4,"72129":4,"72130":3,"72131":4,"72132":3,"72133":3,"72134":4,"72135":4,"72136":2,"72137":2,"72138":2,"72139":3,"72140":1,"72141":4,"72142":3,"72143":3,"72144":4,"72145":2,"72146":2,"72147":1,"72148":3,"72149":3,"72150":2,"72151":4,"72152":2,"72153":3,"72154":4,"72155":4,"72156":3,"72157":1,"72158":2,"72159":5,"72160":4,"72161":3,"72162":3,"72163":5,"72164":4,"72165":4,"72166":4,"72167":2,"72168":3,"72169":2,"72170":2,"72171":3,"72172":1,"72173":4,"72174":3,"72175":4,"72176":1,"72177":5,"72178":3,"72179":4,"72180":3,"72181":2,"72182":3,"72183":3,"72184":5,"72185":4,"72186":5,"72187":1,"72188":3,"72189":3,"72190":4,"72191":4,"72192":3,"72193":4,"72194":1,"72195":5,"72196":5,"72197":3,"72198":3,"72199":2,"72200":4,"72201":4,"72202":3,"72203":2,"72204":4,"72205":4,"72206":3,"72207":5,"72208":3,"72209":4,"72210":3,"72211":4,"72212":3,"72213":3,"72214":4,"72215":1,"72216":3,"72217":4,"72218":2,"72219":2,"72220":2,"72221":4,"72222":3,"72223":2,"72224":3,"72225":4,"72226":4,"72227":2,"72228":4,"72229":2,"72230":5,"72231":3,"72232":2,"72233":3,"72234":4,"72235":3,"72236":1,"72237":4,"72238":4,"72239":1,"72240":2,"72241":4,"72242":4,"72243":3,"72244":4,"72245":5,"72246":3,"72247":3,"72248":4,"72249":4,"72250":3,"72251":3,"72252":5,"72253":3,"72254":1,"72255":2,"72256":2,"72257":5,"72258":4,"72259":3,"72260":2,"72261":2,"72262":4,"72263":3,"72264":3,"72265":3,"72266":2,"72267":1,"72268":4,"72269":5,"72270":3,"72271":2,"72272":3,"72273":3,"72274":4,"72275":1,"72276":2,"72277":2,"72278":1,"72279":3,"72280":4,"72281":2,"72282":2,"72283":2,"72284":3,"72285":3,"72286":4,"72287":2,"72288":3,"72289":3,"72290":5,"72291":4,"72292":3,"72293":4,"72294":3,"72295":3,"72296":3,"72297":4,"72298":3,"72299":4,"72300":1,"72301":4,"72302":2,"72303":5,"72304":3,"72305":2,"72306":4,"72307":2,"72308":5,"72309":3,"72310":2,"72311":3,"72312":5,"72313":2,"72314":3,"72315":3,"72316":5,"72317":2,"72318":4,"72319":4,"72320":4,"72321":2,"72322":4,"72323":2,"72324":1,"72325":2,"72326":2,"72327":4,"72328":4,"72329":2,"72330":2,"72331":4,"72332":2,"72333":3,"72334":2,"72335":5,"72336":4,"72337":3,"72338":3,"72339":3,"72340":2,"72341":3,"72342":4,"72343":3,"72344":3,"72345":3,"72346":4,"72347":5,"72348":3,"72349":1,"72350":3,"72351":5,"72352":3,"72353":4,"72354":2,"72355":2,"72356":2,"72357":3,"72358":3,"72359":5,"72360":1,"72361":3,"72362":1,"72363":4,"72364":1,"72365":3,"72366":3,"72367":2,"72368":3,"72369":1,"72370":1,"72371":1,"72372":1,"72373":3,"72374":3,"72375":3,"72376":2,"72377":3,"72378":2,"72379":3,"72380":2,"72381":5,"72382":4,"72383":4,"72384":2,"72385":3,"72386":4,"72387":3,"72388":4,"72389":3,"72390":1,"72391":4,"72392":3,"72393":3,"72394":2,"72395":2,"72396":1,"72397":3,"72398":1,"72399":2,"72400":4,"72401":2,"72402":2,"72403":4,"72404":4,"72405":4,"72406":3,"72407":3,"72408":3,"72409":4,"72410":3,"72411":2,"72412":4,"72413":4,"72414":1,"72415":5,"72416":5,"72417":3,"72418":4,"72419":4,"72420":3,"72421":2,"72422":2,"72423":3,"72424":3,"72425":4,"72426":3,"72427":1,"72428":4,"72429":4,"72430":2,"72431":4,"72432":2,"72433":3,"72434":3,"72435":3,"72436":4,"72437":3,"72438":3,"72439":2,"72440":4,"72441":2,"72442":2,"72443":4,"72444":2,"72445":1,"72446":3,"72447":3,"72448":2,"72449":1,"72450":3,"72451":3,"72452":2,"72453":4,"72454":4,"72455":1,"72456":4,"72457":4,"72458":5,"72459":4,"72460":2,"72461":3,"72462":4,"72463":3,"72464":3,"72465":2,"72466":1,"72467":4,"72468":1,"72469":1,"72470":4,"72471":4,"72472":1,"72473":2,"72474":2,"72475":3,"72476":1,"72477":2,"72478":4,"72479":4,"72480":3,"72481":5,"72482":3,"72483":2,"72484":3,"72485":3,"72486":3,"72487":2,"72488":1,"72489":4,"72490":4,"72491":4,"72492":2,"72493":2,"72494":3,"72495":4,"72496":3,"72497":2,"72498":2,"72499":4,"72500":2,"72501":3,"72502":4,"72503":3,"72504":3,"72505":2,"72506":2,"72507":5,"72508":3,"72509":3,"72510":3,"72511":3,"72512":2,"72513":2,"72514":4,"72515":2,"72516":2,"72517":4,"72518":3,"72519":3,"72520":2,"72521":3,"72522":4,"72523":3,"72524":3,"72525":2,"72526":2,"72527":1,"72528":4,"72529":4,"72530":2,"72531":1,"72532":5,"72533":2,"72534":3,"72535":3,"72536":4,"72537":4,"72538":2,"72539":4,"72540":3,"72541":1,"72542":4,"72543":3,"72544":1,"72545":3,"72546":3,"72547":3,"72548":1,"72549":1,"72550":5,"72551":4,"72552":5,"72553":4,"72554":2,"72555":1,"72556":2,"72557":4,"72558":2,"72559":5,"72560":3,"72561":4,"72562":3,"72563":1,"72564":3,"72565":1,"72566":2,"72567":4,"72568":3,"72569":3,"72570":3,"72571":3,"72572":1,"72573":2,"72574":4,"72575":4,"72576":2,"72577":2,"72578":4,"72579":1,"72580":3,"72581":2,"72582":4,"72583":5,"72584":3,"72585":3,"72586":4,"72587":1,"72588":2,"72589":5,"72590":4,"72591":3,"72592":3,"72593":5,"72594":2,"72595":3,"72596":2,"72597":3,"72598":4,"72599":3,"72600":4,"72601":1,"72602":3,"72603":5,"72604":3,"72605":3,"72606":2,"72607":3,"72608":3,"72609":1,"72610":3,"72611":3,"72612":2,"72613":1,"72614":4,"72615":3,"72616":4,"72617":2,"72618":3,"72619":3,"72620":3,"72621":3,"72622":2,"72623":3,"72624":3,"72625":3,"72626":3,"72627":3,"72628":4,"72629":4,"72630":3,"72631":3,"72632":4,"72633":2,"72634":3,"72635":4,"72636":3,"72637":4,"72638":2,"72639":5,"72640":1,"72641":3,"72642":3,"72643":2,"72644":4,"72645":2,"72646":4,"72647":2,"72648":3,"72649":4,"72650":5,"72651":1,"72652":1,"72653":5,"72654":3,"72655":4,"72656":3,"72657":3,"72658":2,"72659":3,"72660":3,"72661":2,"72662":4,"72663":3,"72664":3,"72665":4,"72666":2,"72667":2,"72668":3,"72669":5,"72670":3,"72671":2,"72672":5,"72673":3,"72674":1,"72675":4,"72676":3,"72677":3,"72678":5,"72679":3,"72680":2,"72681":4,"72682":4,"72683":4,"72684":4,"72685":2,"72686":4,"72687":3,"72688":4,"72689":5,"72690":3,"72691":5,"72692":4,"72693":3,"72694":3,"72695":2,"72696":2,"72697":3,"72698":3,"72699":3,"72700":2,"72701":4,"72702":2,"72703":2,"72704":1,"72705":5,"72706":4,"72707":3,"72708":3,"72709":4,"72710":2,"72711":4,"72712":4,"72713":2,"72714":4,"72715":3,"72716":1,"72717":2,"72718":5,"72719":3,"72720":3,"72721":4,"72722":4,"72723":4,"72724":2,"72725":3,"72726":1,"72727":3,"72728":4,"72729":2,"72730":3,"72731":3,"72732":4,"72733":3,"72734":3,"72735":4,"72736":1,"72737":4,"72738":4,"72739":3,"72740":3,"72741":3,"72742":3,"72743":3,"72744":2,"72745":3,"72746":4,"72747":3,"72748":3,"72749":3,"72750":3,"72751":4,"72752":3,"72753":1,"72754":3,"72755":3,"72756":3,"72757":5,"72758":4,"72759":4,"72760":3,"72761":3,"72762":2,"72763":1,"72764":1,"72765":4,"72766":3,"72767":3,"72768":1,"72769":5,"72770":2,"72771":1,"72772":5,"72773":5,"72774":5,"72775":4,"72776":3,"72777":3,"72778":3,"72779":3,"72780":1,"72781":3,"72782":4,"72783":3,"72784":5,"72785":4,"72786":4,"72787":3,"72788":2,"72789":4,"72790":3,"72791":2,"72792":5,"72793":4,"72794":1,"72795":3,"72796":2,"72797":4,"72798":4,"72799":5,"72800":2,"72801":3,"72802":1,"72803":4,"72804":2,"72805":5,"72806":2,"72807":5,"72808":3,"72809":3,"72810":2,"72811":1,"72812":4,"72813":3,"72814":3,"72815":4,"72816":4,"72817":3,"72818":3,"72819":3,"72820":3,"72821":3,"72822":1,"72823":2,"72824":2,"72825":2,"72826":3,"72827":3,"72828":3,"72829":3,"72830":1,"72831":3,"72832":2,"72833":4,"72834":4,"72835":4,"72836":5,"72837":3,"72838":3,"72839":2,"72840":2,"72841":4,"72842":4,"72843":3,"72844":4,"72845":3,"72846":5,"72847":3,"72848":3,"72849":3,"72850":4,"72851":4,"72852":2,"72853":2,"72854":3,"72855":4,"72856":2,"72857":3,"72858":4,"72859":3,"72860":1,"72861":3,"72862":1,"72863":4,"72864":4,"72865":2,"72866":2,"72867":2,"72868":2,"72869":3,"72870":4,"72871":3,"72872":5,"72873":2,"72874":2,"72875":4,"72876":3,"72877":4,"72878":2,"72879":1,"72880":2,"72881":3,"72882":3,"72883":3,"72884":4,"72885":3,"72886":4,"72887":4,"72888":4,"72889":2,"72890":4,"72891":3,"72892":2,"72893":2,"72894":3,"72895":4,"72896":4,"72897":2,"72898":3,"72899":4,"72900":3,"72901":4,"72902":4,"72903":3,"72904":3,"72905":3,"72906":2,"72907":4,"72908":5,"72909":4,"72910":1,"72911":2,"72912":2,"72913":2,"72914":4,"72915":3,"72916":2,"72917":3,"72918":5,"72919":4,"72920":4,"72921":4,"72922":4,"72923":3,"72924":3,"72925":4,"72926":3,"72927":3,"72928":1,"72929":3,"72930":3,"72931":3,"72932":3,"72933":3,"72934":3,"72935":3,"72936":2,"72937":4,"72938":1,"72939":1,"72940":1,"72941":4,"72942":4,"72943":3,"72944":3,"72945":3,"72946":3,"72947":4,"72948":4,"72949":1,"72950":3,"72951":3,"72952":4,"72953":2,"72954":3,"72955":5,"72956":2,"72957":2,"72958":3,"72959":1,"72960":4,"72961":3,"72962":4,"72963":3,"72964":4,"72965":4,"72966":2,"72967":4,"72968":4,"72969":4,"72970":2,"72971":2,"72972":3,"72973":3,"72974":2,"72975":3,"72976":3,"72977":1,"72978":5,"72979":4,"72980":2,"72981":4,"72982":3,"72983":4,"72984":4,"72985":4,"72986":3,"72987":3,"72988":2,"72989":3,"72990":4,"72991":2,"72992":2,"72993":3,"72994":2,"72995":2,"72996":1,"72997":3,"72998":4,"72999":4,"73000":3,"73001":3,"73002":3,"73003":3,"73004":3,"73005":4,"73006":2,"73007":3,"73008":5,"73009":2,"73010":5,"73011":2,"73012":3,"73013":4,"73014":2,"73015":2,"73016":3,"73017":3,"73018":4,"73019":3,"73020":2,"73021":3,"73022":4,"73023":2,"73024":5,"73025":4,"73026":3,"73027":1,"73028":3,"73029":4,"73030":2,"73031":3,"73032":3,"73033":1,"73034":3,"73035":3,"73036":5,"73037":2,"73038":4,"73039":3,"73040":3,"73041":4,"73042":3,"73043":2,"73044":4,"73045":2,"73046":3,"73047":2,"73048":2,"73049":2,"73050":1,"73051":2,"73052":2,"73053":2,"73054":2,"73055":3,"73056":2,"73057":2,"73058":4,"73059":3,"73060":2,"73061":2,"73062":4,"73063":4,"73064":5,"73065":2,"73066":3,"73067":3,"73068":5,"73069":3,"73070":3,"73071":2,"73072":3,"73073":3,"73074":4,"73075":3,"73076":5,"73077":2,"73078":4,"73079":3,"73080":3,"73081":2,"73082":3,"73083":5,"73084":1,"73085":4,"73086":3,"73087":2,"73088":2,"73089":3,"73090":2,"73091":5,"73092":2,"73093":3,"73094":2,"73095":3,"73096":4,"73097":3,"73098":1,"73099":3,"73100":2,"73101":4,"73102":2,"73103":2,"73104":2,"73105":5,"73106":3,"73107":3,"73108":1,"73109":4,"73110":4,"73111":4,"73112":2,"73113":4,"73114":3,"73115":1,"73116":3,"73117":2,"73118":5,"73119":3,"73120":3,"73121":4,"73122":3,"73123":2,"73124":3,"73125":5,"73126":4,"73127":3,"73128":4,"73129":5,"73130":4,"73131":3,"73132":3,"73133":3,"73134":2,"73135":5,"73136":4,"73137":2,"73138":2,"73139":2,"73140":2,"73141":3,"73142":1,"73143":2,"73144":5,"73145":3,"73146":3,"73147":4,"73148":4,"73149":1,"73150":2,"73151":2,"73152":3,"73153":5,"73154":3,"73155":3,"73156":3,"73157":2,"73158":3,"73159":4,"73160":1,"73161":1,"73162":3,"73163":4,"73164":5,"73165":2,"73166":3,"73167":4,"73168":3,"73169":3,"73170":3,"73171":2,"73172":4,"73173":2,"73174":3,"73175":4,"73176":3,"73177":3,"73178":5,"73179":2,"73180":3,"73181":4,"73182":4,"73183":3,"73184":3,"73185":4,"73186":5,"73187":4,"73188":4,"73189":3,"73190":2,"73191":3,"73192":3,"73193":2,"73194":4,"73195":2,"73196":3,"73197":3,"73198":3,"73199":3,"73200":4,"73201":3,"73202":4,"73203":3,"73204":1,"73205":3,"73206":3,"73207":2,"73208":5,"73209":2,"73210":3,"73211":3,"73212":4,"73213":3,"73214":3,"73215":4,"73216":2,"73217":4,"73218":2,"73219":3,"73220":2,"73221":2,"73222":3,"73223":4,"73224":3,"73225":3,"73226":4,"73227":5,"73228":1,"73229":3,"73230":1,"73231":1,"73232":1,"73233":3,"73234":4,"73235":3,"73236":3,"73237":1,"73238":4,"73239":3,"73240":3,"73241":2,"73242":2,"73243":3,"73244":2,"73245":3,"73246":2,"73247":5,"73248":4,"73249":3,"73250":5,"73251":4,"73252":2,"73253":1,"73254":4,"73255":2,"73256":4,"73257":1,"73258":4,"73259":4,"73260":1,"73261":4,"73262":2,"73263":4,"73264":3,"73265":3,"73266":5,"73267":2,"73268":3,"73269":2,"73270":3,"73271":2,"73272":4,"73273":2,"73274":4,"73275":2,"73276":3,"73277":4,"73278":3,"73279":1,"73280":3,"73281":4,"73282":4,"73283":3,"73284":3,"73285":1,"73286":4,"73287":2,"73288":4,"73289":3,"73290":3,"73291":4,"73292":2,"73293":4,"73294":4,"73295":1,"73296":3,"73297":2,"73298":2,"73299":4,"73300":4,"73301":2,"73302":1,"73303":3,"73304":3,"73305":3,"73306":4,"73307":4,"73308":4,"73309":2,"73310":2,"73311":2,"73312":3,"73313":4,"73314":2,"73315":5,"73316":3,"73317":3,"73318":3,"73319":3,"73320":4,"73321":2,"73322":1,"73323":3,"73324":2,"73325":1,"73326":1,"73327":3,"73328":2,"73329":4,"73330":3,"73331":4,"73332":4,"73333":2,"73334":3,"73335":3,"73336":3,"73337":5,"73338":3,"73339":5,"73340":4,"73341":4,"73342":1,"73343":2,"73344":3,"73345":5,"73346":2,"73347":4,"73348":3,"73349":2,"73350":2,"73351":2,"73352":3,"73353":3,"73354":4,"73355":2,"73356":2,"73357":4,"73358":3,"73359":2,"73360":4,"73361":2,"73362":2,"73363":3,"73364":4,"73365":3,"73366":3,"73367":3,"73368":3,"73369":2,"73370":2,"73371":3,"73372":3,"73373":3,"73374":3,"73375":4,"73376":4,"73377":3,"73378":4,"73379":2,"73380":4,"73381":2,"73382":4,"73383":2,"73384":4,"73385":2,"73386":2,"73387":2,"73388":4,"73389":5,"73390":3,"73391":4,"73392":4,"73393":4,"73394":2,"73395":4,"73396":3,"73397":4,"73398":3,"73399":2,"73400":2,"73401":3,"73402":1,"73403":3,"73404":4,"73405":3,"73406":3,"73407":3,"73408":4,"73409":1,"73410":3,"73411":5,"73412":5,"73413":3,"73414":2,"73415":3,"73416":4,"73417":2,"73418":3,"73419":4,"73420":4,"73421":4,"73422":4,"73423":3,"73424":4,"73425":5,"73426":2,"73427":2,"73428":3,"73429":3,"73430":1,"73431":3,"73432":4,"73433":3,"73434":3,"73435":3,"73436":3,"73437":3,"73438":4,"73439":4,"73440":3,"73441":3,"73442":3,"73443":4,"73444":3,"73445":4,"73446":3,"73447":3,"73448":3,"73449":4,"73450":4,"73451":2,"73452":2,"73453":4,"73454":2,"73455":3,"73456":2,"73457":2,"73458":5,"73459":2,"73460":4,"73461":3,"73462":4,"73463":4,"73464":4,"73465":3,"73466":3,"73467":3,"73468":2,"73469":4,"73470":1,"73471":2,"73472":2,"73473":3,"73474":3,"73475":4,"73476":4,"73477":4,"73478":5,"73479":2,"73480":2,"73481":4,"73482":1,"73483":2,"73484":2,"73485":2,"73486":4,"73487":3,"73488":5,"73489":2,"73490":3,"73491":3,"73492":4,"73493":3,"73494":4,"73495":2,"73496":4,"73497":5,"73498":5,"73499":4,"73500":5,"73501":4,"73502":3,"73503":3,"73504":3,"73505":3,"73506":4,"73507":5,"73508":1,"73509":4,"73510":3,"73511":2,"73512":3,"73513":1,"73514":1,"73515":5,"73516":4,"73517":4,"73518":4,"73519":3,"73520":2,"73521":3,"73522":2,"73523":3,"73524":4,"73525":3,"73526":2,"73527":3,"73528":4,"73529":3,"73530":3,"73531":5,"73532":4,"73533":5,"73534":4,"73535":4,"73536":2,"73537":2,"73538":4,"73539":3,"73540":1,"73541":3,"73542":3,"73543":5,"73544":4,"73545":3,"73546":5,"73547":4,"73548":1,"73549":1,"73550":3,"73551":3,"73552":2,"73553":3,"73554":5,"73555":3,"73556":3,"73557":2,"73558":3,"73559":3,"73560":3,"73561":4,"73562":2,"73563":5,"73564":3,"73565":3,"73566":2,"73567":5,"73568":3,"73569":4,"73570":4,"73571":3,"73572":2,"73573":4,"73574":2,"73575":4,"73576":3,"73577":4,"73578":4,"73579":4,"73580":4,"73581":4,"73582":3,"73583":2,"73584":3,"73585":1,"73586":4,"73587":5,"73588":5,"73589":4,"73590":1,"73591":3,"73592":2,"73593":3,"73594":3,"73595":1,"73596":4,"73597":4,"73598":2,"73599":4,"73600":2,"73601":3,"73602":3,"73603":4,"73604":1,"73605":3,"73606":3,"73607":3,"73608":5,"73609":4,"73610":2,"73611":2,"73612":4,"73613":4,"73614":3,"73615":5,"73616":5,"73617":2,"73618":5,"73619":3,"73620":1,"73621":4,"73622":1,"73623":1,"73624":2,"73625":2,"73626":4,"73627":4,"73628":1,"73629":1,"73630":1,"73631":1,"73632":1,"73633":4,"73634":3,"73635":5,"73636":3,"73637":2,"73638":3,"73639":2,"73640":2,"73641":4,"73642":4,"73643":2,"73644":1,"73645":5,"73646":3,"73647":4,"73648":4,"73649":2,"73650":3,"73651":2,"73652":2,"73653":3,"73654":3,"73655":1,"73656":3,"73657":5,"73658":3,"73659":4,"73660":4,"73661":4,"73662":4,"73663":3,"73664":3,"73665":4,"73666":5,"73667":4,"73668":4,"73669":5,"73670":3,"73671":3,"73672":4,"73673":2,"73674":3,"73675":3,"73676":4,"73677":3,"73678":4,"73679":2,"73680":5,"73681":4,"73682":2,"73683":2,"73684":1,"73685":2,"73686":1,"73687":2,"73688":3,"73689":5,"73690":1,"73691":5,"73692":2,"73693":1,"73694":2,"73695":4,"73696":3,"73697":2,"73698":3,"73699":4,"73700":5,"73701":3,"73702":3,"73703":1,"73704":3,"73705":3,"73706":2,"73707":3,"73708":4,"73709":1,"73710":4,"73711":1,"73712":3,"73713":4,"73714":3,"73715":2,"73716":3,"73717":4,"73718":2,"73719":5,"73720":2,"73721":4,"73722":3,"73723":3,"73724":1,"73725":5,"73726":2,"73727":5,"73728":4,"73729":5,"73730":4,"73731":5,"73732":1,"73733":3,"73734":5,"73735":4,"73736":3,"73737":4,"73738":2,"73739":4,"73740":4,"73741":3,"73742":3,"73743":2,"73744":4,"73745":5,"73746":3,"73747":2,"73748":4,"73749":2,"73750":4,"73751":1,"73752":4,"73753":1,"73754":5,"73755":2,"73756":4,"73757":3,"73758":4,"73759":2,"73760":5,"73761":3,"73762":3,"73763":4,"73764":4,"73765":3,"73766":3,"73767":3,"73768":2,"73769":3,"73770":2,"73771":4,"73772":2,"73773":2,"73774":4,"73775":3,"73776":4,"73777":1,"73778":5,"73779":2,"73780":2,"73781":1,"73782":3,"73783":4,"73784":3,"73785":2,"73786":4,"73787":3,"73788":5,"73789":3,"73790":1,"73791":4,"73792":4,"73793":4,"73794":3,"73795":4,"73796":3,"73797":2,"73798":3,"73799":1,"73800":3,"73801":2,"73802":4,"73803":3,"73804":4,"73805":1,"73806":2},"head":{"0":0,"1":1,"2":0,"3":0,"4":0,"5":0,"6":1,"7":0,"8":0,"9":1,"10":1,"11":0,"12":1,"13":0,"14":1,"15":0,"16":1,"17":0,"18":0,"19":1,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":1,"33":1,"34":0,"35":0,"36":0,"37":0,"38":1,"39":0,"40":0,"41":1,"42":0,"43":0,"44":1,"45":0,"46":0,"47":1,"48":0,"49":0,"50":0,"51":1,"52":1,"53":1,"54":1,"55":1,"56":1,"57":0,"58":0,"59":0,"60":0,"61":1,"62":1,"63":0,"64":1,"65":0,"66":0,"67":0,"68":1,"69":1,"70":0,"71":0,"72":0,"73":1,"74":0,"75":1,"76":0,"77":0,"78":0,"79":0,"80":1,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":1,"94":0,"95":1,"96":0,"97":1,"98":0,"99":1,"100":0,"101":0,"102":0,"103":0,"104":0,"105":1,"106":1,"107":0,"108":1,"109":0,"110":0,"111":0,"112":0,"113":0,"114":0,"115":0,"116":1,"117":0,"118":0,"119":0,"120":1,"121":0,"122":0,"123":0,"124":0,"125":0,"126":0,"127":0,"128":1,"129":0,"130":1,"131":0,"132":0,"133":0,"134":1,"135":0,"136":0,"137":0,"138":1,"139":0,"140":0,"141":0,"142":0,"143":0,"144":1,"145":0,"146":1,"147":0,"148":1,"149":1,"150":1,"151":0,"152":0,"153":0,"154":0,"155":1,"156":0,"157":0,"158":0,"159":0,"160":0,"161":0,"162":0,"163":0,"164":0,"165":0,"166":0,"167":0,"168":0,"169":0,"170":0,"171":0,"172":0,"173":1,"174":0,"175":0,"176":1,"177":0,"178":1,"179":1,"180":0,"181":0,"182":0,"183":0,"184":1,"185":0,"186":0,"187":0,"188":0,"189":0,"190":0,"191":0,"192":0,"193":1,"194":0,"195":0,"196":0,"197":0,"198":1,"199":0,"200":0,"201":0,"202":0,"203":0,"204":1,"205":0,"206":0,"207":0,"208":0,"209":0,"210":0,"211":1,"212":1,"213":0,"214":0,"215":0,"216":0,"217":0,"218":0,"219":0,"220":0,"221":0,"222":0,"223":0,"224":0,"225":0,"226":0,"227":0,"228":0,"229":0,"230":1,"231":0,"232":0,"233":1,"234":0,"235":1,"236":0,"237":0,"238":0,"239":0,"240":1,"241":0,"242":0,"243":0,"244":0,"245":0,"246":0,"247":0,"248":0,"249":0,"250":0,"251":0,"252":0,"253":0,"254":0,"255":0,"256":1,"257":1,"258":0,"259":0,"260":0,"261":0,"262":1,"263":1,"264":0,"265":0,"266":1,"267":1,"268":0,"269":1,"270":0,"271":0,"272":0,"273":0,"274":0,"275":0,"276":0,"277":0,"278":0,"279":1,"280":0,"281":0,"282":1,"283":0,"284":0,"285":0,"286":1,"287":0,"288":0,"289":0,"290":0,"291":1,"292":1,"293":0,"294":1,"295":0,"296":0,"297":0,"298":0,"299":1,"300":0,"301":1,"302":1,"303":0,"304":0,"305":0,"306":0,"307":0,"308":0,"309":1,"310":0,"311":1,"312":0,"313":1,"314":1,"315":0,"316":1,"317":0,"318":0,"319":1,"320":0,"321":0,"322":0,"323":0,"324":0,"325":1,"326":0,"327":0,"328":0,"329":0,"330":0,"331":0,"332":0,"333":1,"334":0,"335":0,"336":0,"337":0,"338":0,"339":0,"340":0,"341":0,"342":0,"343":0,"344":0,"345":0,"346":1,"347":0,"348":0,"349":0,"350":0,"351":0,"352":0,"353":0,"354":1,"355":0,"356":0,"357":0,"358":0,"359":0,"360":0,"361":0,"362":1,"363":1,"364":0,"365":0,"366":0,"367":0,"368":1,"369":1,"370":0,"371":0,"372":0,"373":0,"374":1,"375":0,"376":1,"377":0,"378":0,"379":0,"380":0,"381":1,"382":1,"383":1,"384":0,"385":0,"386":0,"387":0,"388":1,"389":0,"390":0,"391":0,"392":0,"393":0,"394":0,"395":1,"396":0,"397":1,"398":1,"399":1,"400":0,"401":0,"402":0,"403":0,"404":0,"405":0,"406":0,"407":1,"408":1,"409":1,"410":0,"411":0,"412":0,"413":0,"414":1,"415":0,"416":0,"417":1,"418":0,"419":0,"420":0,"421":1,"422":0,"423":1,"424":0,"425":0,"426":0,"427":0,"428":1,"429":0,"430":0,"431":1,"432":1,"433":0,"434":1,"435":0,"436":0,"437":0,"438":0,"439":0,"440":0,"441":0,"442":0,"443":0,"444":1,"445":0,"446":0,"447":1,"448":0,"449":0,"450":1,"451":0,"452":0,"453":0,"454":0,"455":0,"456":1,"457":0,"458":0,"459":0,"460":0,"461":1,"462":1,"463":0,"464":0,"465":0,"466":0,"467":0,"468":0,"469":1,"470":1,"471":0,"472":1,"473":1,"474":0,"475":0,"476":1,"477":0,"478":0,"479":0,"480":1,"481":0,"482":1,"483":0,"484":0,"485":1,"486":0,"487":0,"488":0,"489":0,"490":0,"491":0,"492":1,"493":0,"494":0,"495":0,"496":0,"497":0,"498":0,"499":1,"500":1,"501":0,"502":0,"503":0,"504":0,"505":0,"506":0,"507":0,"508":0,"509":0,"510":0,"511":0,"512":0,"513":1,"514":0,"515":1,"516":0,"517":0,"518":0,"519":0,"520":0,"521":0,"522":0,"523":1,"524":0,"525":1,"526":0,"527":0,"528":0,"529":0,"530":0,"531":0,"532":0,"533":1,"534":0,"535":1,"536":1,"537":0,"538":0,"539":1,"540":1,"541":1,"542":1,"543":1,"544":0,"545":1,"546":0,"547":0,"548":1,"549":0,"550":0,"551":0,"552":0,"553":1,"554":0,"555":0,"556":1,"557":1,"558":0,"559":1,"560":1,"561":0,"562":0,"563":0,"564":0,"565":0,"566":0,"567":0,"568":0,"569":0,"570":1,"571":0,"572":0,"573":1,"574":0,"575":0,"576":0,"577":0,"578":1,"579":0,"580":0,"581":0,"582":1,"583":0,"584":0,"585":0,"586":1,"587":0,"588":0,"589":0,"590":0,"591":1,"592":0,"593":0,"594":0,"595":0,"596":0,"597":0,"598":0,"599":0,"600":0,"601":0,"602":1,"603":0,"604":0,"605":0,"606":0,"607":1,"608":0,"609":0,"610":1,"611":0,"612":0,"613":0,"614":1,"615":0,"616":1,"617":1,"618":1,"619":0,"620":0,"621":0,"622":0,"623":1,"624":0,"625":0,"626":0,"627":0,"628":0,"629":0,"630":0,"631":1,"632":1,"633":0,"634":0,"635":0,"636":0,"637":0,"638":0,"639":0,"640":0,"641":1,"642":1,"643":1,"644":0,"645":0,"646":0,"647":0,"648":0,"649":0,"650":1,"651":1,"652":0,"653":0,"654":0,"655":0,"656":1,"657":0,"658":0,"659":0,"660":1,"661":0,"662":1,"663":0,"664":1,"665":0,"666":0,"667":0,"668":0,"669":0,"670":1,"671":0,"672":0,"673":1,"674":1,"675":0,"676":1,"677":1,"678":0,"679":0,"680":0,"681":1,"682":0,"683":0,"684":1,"685":1,"686":0,"687":0,"688":1,"689":0,"690":0,"691":0,"692":1,"693":0,"694":0,"695":0,"696":0,"697":0,"698":0,"699":0,"700":0,"701":0,"702":1,"703":0,"704":1,"705":1,"706":0,"707":0,"708":1,"709":0,"710":0,"711":1,"712":0,"713":0,"714":0,"715":0,"716":0,"717":0,"718":0,"719":0,"720":0,"721":1,"722":0,"723":0,"724":0,"725":0,"726":0,"727":0,"728":0,"729":0,"730":1,"731":0,"732":0,"733":0,"734":0,"735":0,"736":0,"737":0,"738":0,"739":1,"740":0,"741":0,"742":0,"743":0,"744":0,"745":0,"746":0,"747":0,"748":0,"749":0,"750":0,"751":0,"752":1,"753":0,"754":1,"755":1,"756":0,"757":0,"758":1,"759":0,"760":1,"761":1,"762":0,"763":1,"764":1,"765":0,"766":0,"767":1,"768":0,"769":0,"770":0,"771":1,"772":0,"773":0,"774":1,"775":1,"776":0,"777":1,"778":0,"779":0,"780":0,"781":0,"782":0,"783":1,"784":0,"785":1,"786":0,"787":0,"788":0,"789":0,"790":0,"791":0,"792":0,"793":0,"794":0,"795":0,"796":1,"797":1,"798":0,"799":0,"800":1,"801":0,"802":0,"803":0,"804":0,"805":0,"806":0,"807":0,"808":0,"809":0,"810":0,"811":0,"812":0,"813":0,"814":0,"815":1,"816":0,"817":0,"818":0,"819":1,"820":0,"821":0,"822":0,"823":0,"824":0,"825":0,"826":1,"827":0,"828":0,"829":0,"830":1,"831":0,"832":0,"833":0,"834":0,"835":0,"836":1,"837":1,"838":1,"839":0,"840":1,"841":0,"842":0,"843":1,"844":0,"845":0,"846":0,"847":0,"848":0,"849":0,"850":0,"851":1,"852":1,"853":0,"854":0,"855":0,"856":0,"857":1,"858":0,"859":0,"860":0,"861":0,"862":0,"863":1,"864":0,"865":0,"866":0,"867":0,"868":0,"869":1,"870":0,"871":0,"872":0,"873":0,"874":0,"875":0,"876":1,"877":1,"878":1,"879":1,"880":0,"881":1,"882":1,"883":1,"884":0,"885":0,"886":0,"887":0,"888":1,"889":1,"890":0,"891":1,"892":0,"893":1,"894":0,"895":0,"896":0,"897":1,"898":0,"899":0,"900":1,"901":0,"902":0,"903":0,"904":1,"905":0,"906":1,"907":1,"908":0,"909":1,"910":1,"911":0,"912":1,"913":1,"914":0,"915":0,"916":0,"917":0,"918":1,"919":0,"920":0,"921":0,"922":1,"923":0,"924":1,"925":0,"926":1,"927":0,"928":0,"929":0,"930":0,"931":0,"932":1,"933":0,"934":1,"935":0,"936":0,"937":1,"938":1,"939":0,"940":1,"941":0,"942":0,"943":0,"944":1,"945":1,"946":0,"947":1,"948":0,"949":0,"950":0,"951":0,"952":1,"953":0,"954":0,"955":0,"956":0,"957":1,"958":1,"959":0,"960":0,"961":0,"962":0,"963":0,"964":1,"965":0,"966":0,"967":1,"968":0,"969":0,"970":0,"971":1,"972":0,"973":0,"974":0,"975":0,"976":0,"977":0,"978":0,"979":1,"980":1,"981":0,"982":0,"983":0,"984":0,"985":0,"986":0,"987":0,"988":0,"989":0,"990":0,"991":0,"992":0,"993":0,"994":0,"995":0,"996":0,"997":0,"998":0,"999":0,"1000":0,"1001":0,"1002":0,"1003":1,"1004":0,"1005":0,"1006":1,"1007":0,"1008":0,"1009":0,"1010":0,"1011":0,"1012":0,"1013":0,"1014":0,"1015":0,"1016":1,"1017":1,"1018":0,"1019":0,"1020":0,"1021":1,"1022":0,"1023":0,"1024":0,"1025":1,"1026":0,"1027":0,"1028":0,"1029":0,"1030":0,"1031":1,"1032":0,"1033":1,"1034":0,"1035":0,"1036":0,"1037":0,"1038":0,"1039":0,"1040":0,"1041":0,"1042":0,"1043":1,"1044":0,"1045":0,"1046":0,"1047":0,"1048":0,"1049":0,"1050":0,"1051":0,"1052":0,"1053":0,"1054":0,"1055":0,"1056":1,"1057":0,"1058":1,"1059":0,"1060":0,"1061":1,"1062":0,"1063":0,"1064":1,"1065":0,"1066":0,"1067":0,"1068":0,"1069":0,"1070":0,"1071":1,"1072":0,"1073":0,"1074":0,"1075":0,"1076":1,"1077":1,"1078":0,"1079":1,"1080":1,"1081":0,"1082":0,"1083":0,"1084":1,"1085":1,"1086":0,"1087":0,"1088":0,"1089":0,"1090":1,"1091":0,"1092":0,"1093":0,"1094":0,"1095":0,"1096":1,"1097":0,"1098":1,"1099":0,"1100":0,"1101":0,"1102":0,"1103":0,"1104":1,"1105":0,"1106":0,"1107":1,"1108":1,"1109":0,"1110":0,"1111":1,"1112":0,"1113":0,"1114":0,"1115":0,"1116":0,"1117":0,"1118":0,"1119":1,"1120":0,"1121":0,"1122":1,"1123":0,"1124":0,"1125":1,"1126":0,"1127":0,"1128":0,"1129":1,"1130":1,"1131":0,"1132":0,"1133":0,"1134":1,"1135":1,"1136":0,"1137":0,"1138":0,"1139":0,"1140":0,"1141":0,"1142":0,"1143":0,"1144":0,"1145":0,"1146":0,"1147":0,"1148":0,"1149":1,"1150":0,"1151":0,"1152":0,"1153":1,"1154":0,"1155":0,"1156":0,"1157":0,"1158":0,"1159":0,"1160":1,"1161":0,"1162":1,"1163":1,"1164":0,"1165":1,"1166":0,"1167":0,"1168":0,"1169":0,"1170":0,"1171":1,"1172":0,"1173":0,"1174":1,"1175":0,"1176":1,"1177":1,"1178":1,"1179":0,"1180":0,"1181":1,"1182":0,"1183":0,"1184":0,"1185":0,"1186":0,"1187":0,"1188":0,"1189":1,"1190":0,"1191":0,"1192":1,"1193":0,"1194":0,"1195":0,"1196":0,"1197":0,"1198":0,"1199":0,"1200":0,"1201":0,"1202":1,"1203":1,"1204":0,"1205":1,"1206":0,"1207":0,"1208":0,"1209":1,"1210":0,"1211":0,"1212":0,"1213":0,"1214":0,"1215":0,"1216":0,"1217":0,"1218":0,"1219":0,"1220":1,"1221":0,"1222":0,"1223":0,"1224":0,"1225":0,"1226":1,"1227":0,"1228":0,"1229":0,"1230":0,"1231":0,"1232":0,"1233":0,"1234":1,"1235":0,"1236":0,"1237":0,"1238":0,"1239":0,"1240":0,"1241":1,"1242":0,"1243":0,"1244":0,"1245":0,"1246":0,"1247":1,"1248":0,"1249":0,"1250":0,"1251":0,"1252":1,"1253":0,"1254":1,"1255":0,"1256":0,"1257":0,"1258":0,"1259":1,"1260":0,"1261":1,"1262":1,"1263":0,"1264":1,"1265":1,"1266":0,"1267":0,"1268":0,"1269":1,"1270":1,"1271":0,"1272":1,"1273":0,"1274":0,"1275":1,"1276":1,"1277":0,"1278":1,"1279":0,"1280":0,"1281":1,"1282":0,"1283":1,"1284":0,"1285":0,"1286":0,"1287":0,"1288":0,"1289":1,"1290":1,"1291":0,"1292":0,"1293":0,"1294":0,"1295":0,"1296":1,"1297":0,"1298":0,"1299":0,"1300":0,"1301":0,"1302":1,"1303":0,"1304":0,"1305":1,"1306":0,"1307":0,"1308":1,"1309":0,"1310":0,"1311":1,"1312":0,"1313":0,"1314":0,"1315":0,"1316":0,"1317":0,"1318":1,"1319":0,"1320":0,"1321":0,"1322":0,"1323":0,"1324":0,"1325":1,"1326":0,"1327":1,"1328":1,"1329":1,"1330":1,"1331":1,"1332":0,"1333":0,"1334":0,"1335":0,"1336":0,"1337":0,"1338":0,"1339":0,"1340":0,"1341":0,"1342":0,"1343":0,"1344":0,"1345":0,"1346":0,"1347":1,"1348":0,"1349":1,"1350":0,"1351":0,"1352":0,"1353":0,"1354":0,"1355":0,"1356":0,"1357":0,"1358":0,"1359":0,"1360":1,"1361":0,"1362":1,"1363":1,"1364":0,"1365":1,"1366":1,"1367":1,"1368":0,"1369":1,"1370":0,"1371":0,"1372":0,"1373":0,"1374":0,"1375":0,"1376":0,"1377":0,"1378":1,"1379":0,"1380":0,"1381":0,"1382":1,"1383":1,"1384":0,"1385":1,"1386":0,"1387":1,"1388":1,"1389":0,"1390":0,"1391":0,"1392":0,"1393":0,"1394":0,"1395":0,"1396":0,"1397":0,"1398":0,"1399":0,"1400":0,"1401":1,"1402":0,"1403":0,"1404":0,"1405":0,"1406":1,"1407":0,"1408":0,"1409":0,"1410":0,"1411":0,"1412":0,"1413":1,"1414":0,"1415":1,"1416":0,"1417":0,"1418":1,"1419":0,"1420":0,"1421":1,"1422":1,"1423":1,"1424":0,"1425":1,"1426":0,"1427":0,"1428":0,"1429":0,"1430":0,"1431":1,"1432":1,"1433":0,"1434":0,"1435":1,"1436":1,"1437":0,"1438":1,"1439":0,"1440":0,"1441":1,"1442":0,"1443":0,"1444":1,"1445":0,"1446":1,"1447":0,"1448":1,"1449":1,"1450":0,"1451":0,"1452":0,"1453":0,"1454":0,"1455":0,"1456":0,"1457":0,"1458":0,"1459":0,"1460":0,"1461":0,"1462":1,"1463":0,"1464":0,"1465":0,"1466":0,"1467":0,"1468":0,"1469":0,"1470":0,"1471":0,"1472":0,"1473":0,"1474":0,"1475":0,"1476":0,"1477":0,"1478":1,"1479":0,"1480":0,"1481":0,"1482":0,"1483":0,"1484":0,"1485":0,"1486":0,"1487":0,"1488":1,"1489":1,"1490":1,"1491":0,"1492":0,"1493":0,"1494":0,"1495":1,"1496":0,"1497":0,"1498":0,"1499":0,"1500":0,"1501":0,"1502":0,"1503":0,"1504":0,"1505":0,"1506":0,"1507":0,"1508":0,"1509":1,"1510":0,"1511":0,"1512":1,"1513":0,"1514":0,"1515":1,"1516":1,"1517":0,"1518":1,"1519":1,"1520":1,"1521":1,"1522":0,"1523":0,"1524":0,"1525":0,"1526":0,"1527":0,"1528":0,"1529":0,"1530":0,"1531":0,"1532":0,"1533":0,"1534":0,"1535":1,"1536":0,"1537":0,"1538":0,"1539":0,"1540":0,"1541":0,"1542":0,"1543":0,"1544":0,"1545":0,"1546":0,"1547":1,"1548":0,"1549":1,"1550":0,"1551":1,"1552":0,"1553":0,"1554":0,"1555":0,"1556":1,"1557":0,"1558":1,"1559":0,"1560":0,"1561":0,"1562":0,"1563":1,"1564":0,"1565":1,"1566":0,"1567":0,"1568":1,"1569":0,"1570":0,"1571":1,"1572":0,"1573":0,"1574":0,"1575":0,"1576":0,"1577":0,"1578":0,"1579":0,"1580":0,"1581":0,"1582":0,"1583":0,"1584":0,"1585":0,"1586":0,"1587":0,"1588":0,"1589":0,"1590":0,"1591":0,"1592":0,"1593":0,"1594":0,"1595":0,"1596":0,"1597":1,"1598":0,"1599":0,"1600":1,"1601":0,"1602":0,"1603":1,"1604":0,"1605":0,"1606":0,"1607":0,"1608":1,"1609":0,"1610":0,"1611":0,"1612":1,"1613":0,"1614":0,"1615":0,"1616":0,"1617":0,"1618":1,"1619":0,"1620":0,"1621":0,"1622":0,"1623":0,"1624":0,"1625":0,"1626":1,"1627":0,"1628":1,"1629":0,"1630":0,"1631":0,"1632":0,"1633":1,"1634":0,"1635":1,"1636":0,"1637":0,"1638":0,"1639":0,"1640":0,"1641":1,"1642":0,"1643":0,"1644":0,"1645":0,"1646":1,"1647":1,"1648":0,"1649":1,"1650":0,"1651":0,"1652":0,"1653":0,"1654":0,"1655":0,"1656":0,"1657":0,"1658":1,"1659":0,"1660":0,"1661":0,"1662":0,"1663":0,"1664":0,"1665":1,"1666":0,"1667":0,"1668":1,"1669":0,"1670":0,"1671":0,"1672":0,"1673":0,"1674":0,"1675":0,"1676":0,"1677":0,"1678":0,"1679":1,"1680":0,"1681":1,"1682":0,"1683":0,"1684":1,"1685":0,"1686":1,"1687":0,"1688":0,"1689":0,"1690":0,"1691":0,"1692":0,"1693":0,"1694":0,"1695":0,"1696":0,"1697":0,"1698":0,"1699":0,"1700":0,"1701":0,"1702":0,"1703":1,"1704":0,"1705":0,"1706":0,"1707":1,"1708":0,"1709":0,"1710":0,"1711":0,"1712":0,"1713":1,"1714":1,"1715":0,"1716":0,"1717":0,"1718":0,"1719":0,"1720":0,"1721":0,"1722":1,"1723":0,"1724":0,"1725":0,"1726":0,"1727":0,"1728":0,"1729":0,"1730":1,"1731":0,"1732":0,"1733":0,"1734":0,"1735":1,"1736":0,"1737":0,"1738":0,"1739":0,"1740":0,"1741":0,"1742":1,"1743":0,"1744":0,"1745":0,"1746":1,"1747":0,"1748":1,"1749":0,"1750":0,"1751":0,"1752":1,"1753":0,"1754":0,"1755":0,"1756":0,"1757":1,"1758":0,"1759":1,"1760":0,"1761":0,"1762":0,"1763":0,"1764":0,"1765":0,"1766":0,"1767":0,"1768":0,"1769":0,"1770":1,"1771":0,"1772":0,"1773":1,"1774":0,"1775":1,"1776":1,"1777":0,"1778":0,"1779":1,"1780":1,"1781":0,"1782":0,"1783":0,"1784":1,"1785":0,"1786":0,"1787":0,"1788":0,"1789":0,"1790":0,"1791":0,"1792":0,"1793":0,"1794":0,"1795":0,"1796":0,"1797":1,"1798":1,"1799":0,"1800":0,"1801":0,"1802":0,"1803":1,"1804":0,"1805":1,"1806":0,"1807":1,"1808":0,"1809":0,"1810":0,"1811":0,"1812":0,"1813":0,"1814":1,"1815":0,"1816":0,"1817":0,"1818":0,"1819":1,"1820":0,"1821":0,"1822":1,"1823":1,"1824":0,"1825":1,"1826":0,"1827":0,"1828":0,"1829":0,"1830":0,"1831":1,"1832":1,"1833":0,"1834":0,"1835":0,"1836":1,"1837":0,"1838":0,"1839":0,"1840":0,"1841":0,"1842":0,"1843":0,"1844":1,"1845":0,"1846":0,"1847":0,"1848":0,"1849":0,"1850":1,"1851":0,"1852":0,"1853":0,"1854":0,"1855":0,"1856":0,"1857":0,"1858":1,"1859":0,"1860":1,"1861":0,"1862":1,"1863":1,"1864":0,"1865":0,"1866":1,"1867":0,"1868":0,"1869":0,"1870":0,"1871":0,"1872":0,"1873":0,"1874":0,"1875":1,"1876":0,"1877":0,"1878":1,"1879":1,"1880":1,"1881":1,"1882":1,"1883":0,"1884":0,"1885":1,"1886":0,"1887":0,"1888":1,"1889":1,"1890":0,"1891":1,"1892":1,"1893":0,"1894":0,"1895":1,"1896":1,"1897":0,"1898":1,"1899":1,"1900":1,"1901":0,"1902":0,"1903":0,"1904":1,"1905":0,"1906":0,"1907":0,"1908":1,"1909":0,"1910":0,"1911":1,"1912":1,"1913":0,"1914":1,"1915":1,"1916":0,"1917":0,"1918":1,"1919":0,"1920":0,"1921":0,"1922":0,"1923":0,"1924":0,"1925":1,"1926":1,"1927":0,"1928":0,"1929":0,"1930":1,"1931":0,"1932":0,"1933":1,"1934":0,"1935":0,"1936":0,"1937":1,"1938":0,"1939":0,"1940":0,"1941":0,"1942":1,"1943":0,"1944":0,"1945":1,"1946":0,"1947":1,"1948":0,"1949":0,"1950":0,"1951":0,"1952":0,"1953":1,"1954":0,"1955":0,"1956":1,"1957":0,"1958":1,"1959":0,"1960":1,"1961":0,"1962":1,"1963":0,"1964":0,"1965":0,"1966":0,"1967":0,"1968":1,"1969":0,"1970":1,"1971":0,"1972":0,"1973":0,"1974":0,"1975":0,"1976":1,"1977":0,"1978":1,"1979":0,"1980":0,"1981":1,"1982":1,"1983":0,"1984":0,"1985":0,"1986":0,"1987":1,"1988":1,"1989":0,"1990":0,"1991":0,"1992":0,"1993":1,"1994":0,"1995":0,"1996":1,"1997":0,"1998":0,"1999":0,"2000":1,"2001":0,"2002":1,"2003":0,"2004":0,"2005":0,"2006":0,"2007":0,"2008":1,"2009":0,"2010":1,"2011":1,"2012":1,"2013":0,"2014":1,"2015":0,"2016":0,"2017":0,"2018":0,"2019":0,"2020":0,"2021":1,"2022":0,"2023":0,"2024":0,"2025":0,"2026":0,"2027":0,"2028":0,"2029":0,"2030":0,"2031":1,"2032":1,"2033":1,"2034":0,"2035":0,"2036":1,"2037":0,"2038":0,"2039":0,"2040":0,"2041":0,"2042":1,"2043":0,"2044":0,"2045":0,"2046":0,"2047":1,"2048":0,"2049":0,"2050":0,"2051":0,"2052":0,"2053":0,"2054":0,"2055":0,"2056":1,"2057":0,"2058":0,"2059":1,"2060":0,"2061":1,"2062":0,"2063":0,"2064":0,"2065":0,"2066":1,"2067":1,"2068":1,"2069":0,"2070":1,"2071":0,"2072":1,"2073":0,"2074":0,"2075":0,"2076":1,"2077":0,"2078":0,"2079":0,"2080":0,"2081":0,"2082":1,"2083":1,"2084":1,"2085":1,"2086":0,"2087":0,"2088":1,"2089":0,"2090":0,"2091":0,"2092":0,"2093":0,"2094":1,"2095":0,"2096":0,"2097":1,"2098":0,"2099":1,"2100":0,"2101":0,"2102":0,"2103":0,"2104":0,"2105":0,"2106":0,"2107":1,"2108":0,"2109":0,"2110":0,"2111":1,"2112":0,"2113":0,"2114":0,"2115":0,"2116":1,"2117":0,"2118":0,"2119":0,"2120":0,"2121":0,"2122":1,"2123":1,"2124":1,"2125":1,"2126":0,"2127":0,"2128":0,"2129":0,"2130":0,"2131":1,"2132":0,"2133":0,"2134":1,"2135":1,"2136":0,"2137":0,"2138":0,"2139":1,"2140":0,"2141":0,"2142":0,"2143":0,"2144":0,"2145":0,"2146":0,"2147":0,"2148":0,"2149":0,"2150":0,"2151":1,"2152":0,"2153":0,"2154":0,"2155":0,"2156":0,"2157":0,"2158":0,"2159":0,"2160":0,"2161":0,"2162":1,"2163":0,"2164":1,"2165":1,"2166":0,"2167":0,"2168":0,"2169":0,"2170":0,"2171":0,"2172":1,"2173":0,"2174":0,"2175":0,"2176":1,"2177":0,"2178":0,"2179":0,"2180":0,"2181":0,"2182":0,"2183":0,"2184":0,"2185":0,"2186":1,"2187":1,"2188":0,"2189":0,"2190":0,"2191":0,"2192":0,"2193":0,"2194":0,"2195":1,"2196":0,"2197":0,"2198":0,"2199":0,"2200":0,"2201":1,"2202":0,"2203":0,"2204":0,"2205":0,"2206":1,"2207":1,"2208":1,"2209":0,"2210":0,"2211":0,"2212":0,"2213":1,"2214":1,"2215":0,"2216":0,"2217":0,"2218":0,"2219":0,"2220":0,"2221":0,"2222":1,"2223":0,"2224":1,"2225":0,"2226":0,"2227":0,"2228":0,"2229":0,"2230":0,"2231":0,"2232":0,"2233":0,"2234":0,"2235":1,"2236":0,"2237":0,"2238":0,"2239":0,"2240":0,"2241":0,"2242":1,"2243":1,"2244":0,"2245":0,"2246":0,"2247":0,"2248":0,"2249":1,"2250":0,"2251":0,"2252":0,"2253":0,"2254":0,"2255":0,"2256":0,"2257":0,"2258":0,"2259":0,"2260":1,"2261":1,"2262":0,"2263":1,"2264":0,"2265":0,"2266":0,"2267":1,"2268":0,"2269":0,"2270":0,"2271":0,"2272":0,"2273":0,"2274":0,"2275":1,"2276":0,"2277":0,"2278":0,"2279":1,"2280":0,"2281":1,"2282":0,"2283":1,"2284":0,"2285":1,"2286":1,"2287":1,"2288":0,"2289":1,"2290":1,"2291":0,"2292":0,"2293":0,"2294":0,"2295":0,"2296":0,"2297":0,"2298":1,"2299":0,"2300":0,"2301":0,"2302":0,"2303":0,"2304":1,"2305":0,"2306":0,"2307":0,"2308":0,"2309":0,"2310":0,"2311":0,"2312":0,"2313":0,"2314":0,"2315":0,"2316":0,"2317":0,"2318":0,"2319":0,"2320":1,"2321":0,"2322":0,"2323":0,"2324":0,"2325":0,"2326":0,"2327":1,"2328":1,"2329":0,"2330":1,"2331":0,"2332":1,"2333":0,"2334":0,"2335":0,"2336":0,"2337":0,"2338":1,"2339":0,"2340":0,"2341":0,"2342":0,"2343":0,"2344":0,"2345":1,"2346":0,"2347":0,"2348":1,"2349":0,"2350":0,"2351":0,"2352":0,"2353":1,"2354":0,"2355":0,"2356":0,"2357":0,"2358":0,"2359":0,"2360":0,"2361":1,"2362":0,"2363":1,"2364":1,"2365":0,"2366":0,"2367":0,"2368":0,"2369":0,"2370":0,"2371":1,"2372":0,"2373":0,"2374":1,"2375":0,"2376":0,"2377":0,"2378":0,"2379":0,"2380":0,"2381":0,"2382":1,"2383":0,"2384":0,"2385":0,"2386":0,"2387":0,"2388":1,"2389":1,"2390":1,"2391":1,"2392":1,"2393":0,"2394":0,"2395":0,"2396":0,"2397":1,"2398":0,"2399":0,"2400":1,"2401":0,"2402":0,"2403":0,"2404":0,"2405":0,"2406":0,"2407":0,"2408":0,"2409":0,"2410":0,"2411":0,"2412":0,"2413":1,"2414":0,"2415":1,"2416":0,"2417":0,"2418":0,"2419":0,"2420":1,"2421":0,"2422":0,"2423":1,"2424":0,"2425":0,"2426":1,"2427":0,"2428":0,"2429":0,"2430":0,"2431":0,"2432":0,"2433":0,"2434":0,"2435":0,"2436":0,"2437":0,"2438":1,"2439":0,"2440":0,"2441":1,"2442":0,"2443":0,"2444":1,"2445":0,"2446":0,"2447":1,"2448":0,"2449":0,"2450":1,"2451":0,"2452":0,"2453":0,"2454":0,"2455":0,"2456":0,"2457":0,"2458":0,"2459":0,"2460":0,"2461":0,"2462":0,"2463":0,"2464":0,"2465":0,"2466":0,"2467":0,"2468":0,"2469":1,"2470":0,"2471":0,"2472":0,"2473":1,"2474":1,"2475":0,"2476":1,"2477":1,"2478":0,"2479":0,"2480":0,"2481":1,"2482":0,"2483":0,"2484":0,"2485":0,"2486":0,"2487":0,"2488":0,"2489":0,"2490":0,"2491":0,"2492":0,"2493":0,"2494":0,"2495":0,"2496":0,"2497":1,"2498":0,"2499":1,"2500":0,"2501":0,"2502":0,"2503":0,"2504":0,"2505":1,"2506":0,"2507":1,"2508":0,"2509":0,"2510":1,"2511":0,"2512":0,"2513":0,"2514":0,"2515":0,"2516":0,"2517":0,"2518":0,"2519":1,"2520":0,"2521":1,"2522":0,"2523":1,"2524":0,"2525":0,"2526":1,"2527":0,"2528":0,"2529":1,"2530":0,"2531":1,"2532":0,"2533":0,"2534":0,"2535":0,"2536":1,"2537":0,"2538":1,"2539":0,"2540":0,"2541":1,"2542":1,"2543":0,"2544":0,"2545":0,"2546":0,"2547":0,"2548":0,"2549":0,"2550":0,"2551":1,"2552":0,"2553":0,"2554":0,"2555":0,"2556":0,"2557":0,"2558":0,"2559":0,"2560":0,"2561":0,"2562":0,"2563":0,"2564":0,"2565":0,"2566":1,"2567":0,"2568":1,"2569":0,"2570":0,"2571":0,"2572":1,"2573":0,"2574":1,"2575":0,"2576":1,"2577":0,"2578":0,"2579":1,"2580":1,"2581":1,"2582":0,"2583":0,"2584":1,"2585":1,"2586":0,"2587":0,"2588":0,"2589":0,"2590":0,"2591":0,"2592":0,"2593":0,"2594":0,"2595":0,"2596":1,"2597":0,"2598":0,"2599":1,"2600":0,"2601":0,"2602":0,"2603":0,"2604":1,"2605":0,"2606":0,"2607":1,"2608":0,"2609":0,"2610":0,"2611":0,"2612":1,"2613":0,"2614":0,"2615":0,"2616":1,"2617":0,"2618":0,"2619":1,"2620":0,"2621":0,"2622":1,"2623":0,"2624":0,"2625":1,"2626":0,"2627":0,"2628":0,"2629":0,"2630":1,"2631":0,"2632":0,"2633":0,"2634":1,"2635":0,"2636":0,"2637":0,"2638":0,"2639":0,"2640":0,"2641":0,"2642":1,"2643":0,"2644":0,"2645":0,"2646":0,"2647":0,"2648":0,"2649":1,"2650":0,"2651":1,"2652":0,"2653":0,"2654":0,"2655":0,"2656":0,"2657":0,"2658":0,"2659":0,"2660":0,"2661":0,"2662":0,"2663":0,"2664":0,"2665":0,"2666":0,"2667":0,"2668":0,"2669":0,"2670":0,"2671":0,"2672":0,"2673":1,"2674":0,"2675":0,"2676":0,"2677":0,"2678":1,"2679":1,"2680":0,"2681":1,"2682":0,"2683":0,"2684":0,"2685":0,"2686":1,"2687":0,"2688":1,"2689":1,"2690":0,"2691":0,"2692":1,"2693":0,"2694":0,"2695":0,"2696":0,"2697":0,"2698":0,"2699":1,"2700":0,"2701":1,"2702":0,"2703":1,"2704":0,"2705":0,"2706":0,"2707":0,"2708":0,"2709":0,"2710":0,"2711":0,"2712":0,"2713":0,"2714":1,"2715":1,"2716":1,"2717":0,"2718":1,"2719":0,"2720":0,"2721":0,"2722":0,"2723":0,"2724":0,"2725":1,"2726":0,"2727":0,"2728":1,"2729":0,"2730":1,"2731":1,"2732":0,"2733":0,"2734":0,"2735":0,"2736":1,"2737":0,"2738":1,"2739":1,"2740":0,"2741":1,"2742":0,"2743":0,"2744":0,"2745":0,"2746":1,"2747":0,"2748":1,"2749":0,"2750":0,"2751":1,"2752":0,"2753":1,"2754":0,"2755":0,"2756":1,"2757":0,"2758":0,"2759":0,"2760":0,"2761":0,"2762":0,"2763":0,"2764":0,"2765":0,"2766":0,"2767":0,"2768":0,"2769":1,"2770":0,"2771":0,"2772":0,"2773":0,"2774":1,"2775":0,"2776":1,"2777":0,"2778":0,"2779":1,"2780":0,"2781":1,"2782":0,"2783":1,"2784":0,"2785":0,"2786":0,"2787":0,"2788":1,"2789":0,"2790":0,"2791":0,"2792":0,"2793":1,"2794":0,"2795":0,"2796":1,"2797":0,"2798":0,"2799":0,"2800":1,"2801":0,"2802":0,"2803":1,"2804":0,"2805":0,"2806":1,"2807":1,"2808":1,"2809":0,"2810":0,"2811":0,"2812":0,"2813":0,"2814":0,"2815":1,"2816":0,"2817":1,"2818":1,"2819":0,"2820":1,"2821":1,"2822":0,"2823":0,"2824":0,"2825":0,"2826":1,"2827":0,"2828":0,"2829":1,"2830":0,"2831":0,"2832":1,"2833":0,"2834":1,"2835":0,"2836":1,"2837":0,"2838":0,"2839":1,"2840":0,"2841":1,"2842":1,"2843":1,"2844":0,"2845":0,"2846":0,"2847":0,"2848":0,"2849":1,"2850":1,"2851":0,"2852":1,"2853":1,"2854":0,"2855":0,"2856":1,"2857":1,"2858":0,"2859":0,"2860":0,"2861":0,"2862":0,"2863":0,"2864":0,"2865":1,"2866":0,"2867":0,"2868":0,"2869":0,"2870":0,"2871":1,"2872":0,"2873":1,"2874":0,"2875":0,"2876":1,"2877":1,"2878":0,"2879":0,"2880":0,"2881":0,"2882":0,"2883":0,"2884":1,"2885":0,"2886":1,"2887":0,"2888":0,"2889":0,"2890":0,"2891":0,"2892":0,"2893":0,"2894":0,"2895":0,"2896":0,"2897":0,"2898":0,"2899":0,"2900":0,"2901":0,"2902":0,"2903":0,"2904":0,"2905":0,"2906":0,"2907":0,"2908":0,"2909":0,"2910":0,"2911":0,"2912":0,"2913":0,"2914":1,"2915":0,"2916":1,"2917":0,"2918":0,"2919":1,"2920":0,"2921":1,"2922":0,"2923":0,"2924":0,"2925":1,"2926":1,"2927":0,"2928":0,"2929":1,"2930":0,"2931":1,"2932":0,"2933":0,"2934":0,"2935":0,"2936":1,"2937":1,"2938":0,"2939":0,"2940":0,"2941":1,"2942":0,"2943":0,"2944":1,"2945":0,"2946":0,"2947":0,"2948":1,"2949":0,"2950":0,"2951":0,"2952":0,"2953":0,"2954":0,"2955":0,"2956":0,"2957":0,"2958":0,"2959":1,"2960":1,"2961":0,"2962":0,"2963":0,"2964":0,"2965":0,"2966":0,"2967":1,"2968":0,"2969":0,"2970":0,"2971":1,"2972":0,"2973":0,"2974":1,"2975":0,"2976":0,"2977":0,"2978":0,"2979":0,"2980":0,"2981":0,"2982":1,"2983":0,"2984":1,"2985":1,"2986":1,"2987":0,"2988":0,"2989":1,"2990":0,"2991":0,"2992":1,"2993":0,"2994":1,"2995":0,"2996":1,"2997":0,"2998":0,"2999":0,"3000":0,"3001":0,"3002":0,"3003":0,"3004":0,"3005":0,"3006":1,"3007":0,"3008":0,"3009":0,"3010":0,"3011":0,"3012":1,"3013":1,"3014":0,"3015":0,"3016":0,"3017":1,"3018":0,"3019":1,"3020":1,"3021":1,"3022":0,"3023":0,"3024":0,"3025":0,"3026":0,"3027":0,"3028":1,"3029":1,"3030":0,"3031":1,"3032":0,"3033":0,"3034":0,"3035":0,"3036":0,"3037":1,"3038":0,"3039":0,"3040":0,"3041":1,"3042":0,"3043":0,"3044":0,"3045":0,"3046":0,"3047":0,"3048":0,"3049":1,"3050":0,"3051":0,"3052":0,"3053":0,"3054":0,"3055":0,"3056":1,"3057":1,"3058":1,"3059":0,"3060":1,"3061":1,"3062":0,"3063":0,"3064":1,"3065":0,"3066":0,"3067":0,"3068":1,"3069":0,"3070":0,"3071":1,"3072":0,"3073":0,"3074":0,"3075":0,"3076":0,"3077":1,"3078":1,"3079":0,"3080":1,"3081":1,"3082":0,"3083":0,"3084":1,"3085":0,"3086":0,"3087":0,"3088":0,"3089":0,"3090":1,"3091":0,"3092":0,"3093":0,"3094":0,"3095":1,"3096":0,"3097":0,"3098":0,"3099":0,"3100":0,"3101":1,"3102":0,"3103":0,"3104":0,"3105":0,"3106":1,"3107":0,"3108":0,"3109":0,"3110":0,"3111":0,"3112":0,"3113":0,"3114":0,"3115":0,"3116":0,"3117":0,"3118":1,"3119":0,"3120":0,"3121":1,"3122":0,"3123":0,"3124":0,"3125":0,"3126":0,"3127":0,"3128":0,"3129":0,"3130":0,"3131":0,"3132":1,"3133":0,"3134":0,"3135":0,"3136":0,"3137":0,"3138":1,"3139":0,"3140":0,"3141":0,"3142":1,"3143":0,"3144":0,"3145":0,"3146":0,"3147":1,"3148":1,"3149":0,"3150":1,"3151":1,"3152":0,"3153":0,"3154":1,"3155":0,"3156":0,"3157":0,"3158":1,"3159":0,"3160":0,"3161":0,"3162":0,"3163":0,"3164":0,"3165":0,"3166":1,"3167":0,"3168":0,"3169":0,"3170":1,"3171":0,"3172":0,"3173":0,"3174":0,"3175":0,"3176":0,"3177":0,"3178":0,"3179":0,"3180":0,"3181":0,"3182":0,"3183":0,"3184":0,"3185":1,"3186":0,"3187":0,"3188":0,"3189":0,"3190":0,"3191":0,"3192":0,"3193":0,"3194":0,"3195":0,"3196":1,"3197":0,"3198":0,"3199":0,"3200":0,"3201":0,"3202":0,"3203":0,"3204":0,"3205":0,"3206":0,"3207":0,"3208":1,"3209":0,"3210":0,"3211":0,"3212":0,"3213":0,"3214":0,"3215":0,"3216":0,"3217":0,"3218":0,"3219":0,"3220":0,"3221":0,"3222":0,"3223":0,"3224":1,"3225":1,"3226":0,"3227":0,"3228":0,"3229":1,"3230":0,"3231":0,"3232":0,"3233":0,"3234":1,"3235":0,"3236":0,"3237":0,"3238":0,"3239":0,"3240":0,"3241":0,"3242":1,"3243":0,"3244":0,"3245":1,"3246":0,"3247":1,"3248":0,"3249":1,"3250":1,"3251":0,"3252":1,"3253":0,"3254":0,"3255":0,"3256":1,"3257":0,"3258":0,"3259":1,"3260":1,"3261":0,"3262":0,"3263":0,"3264":0,"3265":1,"3266":0,"3267":1,"3268":0,"3269":0,"3270":1,"3271":0,"3272":0,"3273":0,"3274":0,"3275":0,"3276":1,"3277":0,"3278":1,"3279":0,"3280":0,"3281":0,"3282":0,"3283":1,"3284":0,"3285":0,"3286":0,"3287":1,"3288":0,"3289":0,"3290":0,"3291":0,"3292":0,"3293":0,"3294":0,"3295":1,"3296":1,"3297":0,"3298":0,"3299":0,"3300":0,"3301":0,"3302":0,"3303":1,"3304":0,"3305":0,"3306":0,"3307":1,"3308":0,"3309":0,"3310":0,"3311":0,"3312":1,"3313":0,"3314":0,"3315":0,"3316":1,"3317":0,"3318":1,"3319":0,"3320":0,"3321":1,"3322":0,"3323":0,"3324":1,"3325":0,"3326":0,"3327":0,"3328":0,"3329":1,"3330":0,"3331":0,"3332":0,"3333":0,"3334":1,"3335":0,"3336":1,"3337":0,"3338":0,"3339":0,"3340":1,"3341":0,"3342":0,"3343":0,"3344":0,"3345":0,"3346":0,"3347":1,"3348":1,"3349":0,"3350":0,"3351":0,"3352":0,"3353":1,"3354":0,"3355":0,"3356":0,"3357":0,"3358":1,"3359":1,"3360":0,"3361":0,"3362":0,"3363":1,"3364":1,"3365":0,"3366":0,"3367":0,"3368":0,"3369":0,"3370":0,"3371":1,"3372":0,"3373":1,"3374":0,"3375":0,"3376":0,"3377":0,"3378":1,"3379":1,"3380":0,"3381":0,"3382":0,"3383":0,"3384":0,"3385":0,"3386":0,"3387":0,"3388":0,"3389":0,"3390":1,"3391":0,"3392":0,"3393":0,"3394":0,"3395":0,"3396":0,"3397":1,"3398":0,"3399":0,"3400":0,"3401":0,"3402":0,"3403":0,"3404":0,"3405":0,"3406":1,"3407":0,"3408":0,"3409":0,"3410":0,"3411":0,"3412":0,"3413":0,"3414":0,"3415":1,"3416":0,"3417":0,"3418":1,"3419":0,"3420":0,"3421":0,"3422":0,"3423":1,"3424":1,"3425":0,"3426":0,"3427":0,"3428":0,"3429":0,"3430":0,"3431":0,"3432":0,"3433":1,"3434":1,"3435":0,"3436":0,"3437":0,"3438":0,"3439":0,"3440":0,"3441":1,"3442":0,"3443":0,"3444":1,"3445":0,"3446":0,"3447":1,"3448":0,"3449":0,"3450":0,"3451":0,"3452":1,"3453":0,"3454":0,"3455":0,"3456":0,"3457":0,"3458":0,"3459":0,"3460":0,"3461":0,"3462":1,"3463":0,"3464":0,"3465":0,"3466":0,"3467":0,"3468":0,"3469":0,"3470":0,"3471":0,"3472":1,"3473":0,"3474":0,"3475":1,"3476":0,"3477":0,"3478":0,"3479":0,"3480":0,"3481":0,"3482":0,"3483":0,"3484":0,"3485":1,"3486":0,"3487":1,"3488":1,"3489":0,"3490":0,"3491":0,"3492":0,"3493":0,"3494":0,"3495":0,"3496":1,"3497":1,"3498":1,"3499":0,"3500":0,"3501":0,"3502":0,"3503":1,"3504":0,"3505":1,"3506":0,"3507":0,"3508":0,"3509":1,"3510":0,"3511":0,"3512":0,"3513":0,"3514":0,"3515":1,"3516":0,"3517":1,"3518":0,"3519":1,"3520":0,"3521":1,"3522":1,"3523":1,"3524":0,"3525":1,"3526":0,"3527":1,"3528":0,"3529":0,"3530":1,"3531":0,"3532":0,"3533":0,"3534":0,"3535":0,"3536":0,"3537":0,"3538":0,"3539":1,"3540":1,"3541":1,"3542":0,"3543":1,"3544":0,"3545":0,"3546":0,"3547":0,"3548":0,"3549":1,"3550":0,"3551":1,"3552":0,"3553":0,"3554":0,"3555":1,"3556":0,"3557":1,"3558":0,"3559":1,"3560":0,"3561":1,"3562":0,"3563":1,"3564":0,"3565":0,"3566":0,"3567":0,"3568":0,"3569":1,"3570":0,"3571":1,"3572":0,"3573":0,"3574":0,"3575":1,"3576":0,"3577":0,"3578":1,"3579":0,"3580":0,"3581":1,"3582":0,"3583":0,"3584":0,"3585":1,"3586":0,"3587":0,"3588":1,"3589":0,"3590":0,"3591":0,"3592":0,"3593":0,"3594":0,"3595":1,"3596":0,"3597":0,"3598":0,"3599":0,"3600":1,"3601":0,"3602":0,"3603":1,"3604":0,"3605":0,"3606":1,"3607":0,"3608":0,"3609":0,"3610":0,"3611":0,"3612":0,"3613":0,"3614":1,"3615":0,"3616":0,"3617":0,"3618":0,"3619":0,"3620":0,"3621":0,"3622":0,"3623":0,"3624":1,"3625":0,"3626":0,"3627":1,"3628":1,"3629":0,"3630":1,"3631":0,"3632":1,"3633":0,"3634":0,"3635":0,"3636":1,"3637":0,"3638":0,"3639":0,"3640":0,"3641":0,"3642":0,"3643":0,"3644":0,"3645":1,"3646":0,"3647":1,"3648":0,"3649":0,"3650":0,"3651":0,"3652":0,"3653":0,"3654":0,"3655":0,"3656":0,"3657":0,"3658":0,"3659":0,"3660":0,"3661":0,"3662":0,"3663":0,"3664":1,"3665":1,"3666":0,"3667":1,"3668":0,"3669":1,"3670":0,"3671":0,"3672":0,"3673":0,"3674":0,"3675":0,"3676":1,"3677":1,"3678":0,"3679":1,"3680":0,"3681":1,"3682":0,"3683":1,"3684":1,"3685":0,"3686":0,"3687":0,"3688":0,"3689":1,"3690":0,"3691":0,"3692":0,"3693":0,"3694":1,"3695":0,"3696":0,"3697":0,"3698":1,"3699":0,"3700":0,"3701":0,"3702":0,"3703":0,"3704":0,"3705":0,"3706":0,"3707":0,"3708":0,"3709":1,"3710":0,"3711":1,"3712":0,"3713":0,"3714":0,"3715":0,"3716":1,"3717":0,"3718":1,"3719":1,"3720":0,"3721":0,"3722":0,"3723":0,"3724":0,"3725":1,"3726":1,"3727":1,"3728":0,"3729":0,"3730":0,"3731":0,"3732":0,"3733":0,"3734":0,"3735":0,"3736":0,"3737":0,"3738":0,"3739":0,"3740":0,"3741":1,"3742":0,"3743":0,"3744":0,"3745":1,"3746":0,"3747":0,"3748":0,"3749":1,"3750":1,"3751":0,"3752":1,"3753":1,"3754":0,"3755":1,"3756":0,"3757":0,"3758":0,"3759":0,"3760":1,"3761":1,"3762":0,"3763":0,"3764":0,"3765":0,"3766":0,"3767":0,"3768":1,"3769":0,"3770":0,"3771":1,"3772":0,"3773":1,"3774":0,"3775":0,"3776":0,"3777":0,"3778":0,"3779":0,"3780":1,"3781":1,"3782":0,"3783":1,"3784":0,"3785":0,"3786":0,"3787":0,"3788":1,"3789":0,"3790":0,"3791":0,"3792":0,"3793":0,"3794":1,"3795":0,"3796":1,"3797":0,"3798":0,"3799":0,"3800":1,"3801":0,"3802":1,"3803":0,"3804":0,"3805":0,"3806":0,"3807":1,"3808":0,"3809":1,"3810":0,"3811":0,"3812":0,"3813":0,"3814":0,"3815":0,"3816":1,"3817":0,"3818":0,"3819":1,"3820":1,"3821":0,"3822":0,"3823":0,"3824":0,"3825":0,"3826":0,"3827":0,"3828":0,"3829":1,"3830":1,"3831":0,"3832":0,"3833":0,"3834":0,"3835":0,"3836":0,"3837":0,"3838":0,"3839":0,"3840":0,"3841":0,"3842":0,"3843":0,"3844":0,"3845":0,"3846":1,"3847":0,"3848":0,"3849":0,"3850":1,"3851":0,"3852":0,"3853":0,"3854":0,"3855":0,"3856":0,"3857":0,"3858":0,"3859":1,"3860":0,"3861":1,"3862":1,"3863":0,"3864":0,"3865":0,"3866":0,"3867":1,"3868":0,"3869":1,"3870":0,"3871":0,"3872":1,"3873":0,"3874":0,"3875":1,"3876":1,"3877":1,"3878":0,"3879":1,"3880":0,"3881":0,"3882":1,"3883":1,"3884":1,"3885":0,"3886":0,"3887":0,"3888":0,"3889":0,"3890":0,"3891":0,"3892":1,"3893":0,"3894":0,"3895":1,"3896":0,"3897":1,"3898":0,"3899":0,"3900":0,"3901":0,"3902":1,"3903":0,"3904":1,"3905":0,"3906":0,"3907":0,"3908":0,"3909":0,"3910":0,"3911":0,"3912":0,"3913":0,"3914":0,"3915":0,"3916":0,"3917":0,"3918":0,"3919":0,"3920":0,"3921":1,"3922":0,"3923":0,"3924":0,"3925":1,"3926":0,"3927":0,"3928":0,"3929":0,"3930":0,"3931":1,"3932":0,"3933":0,"3934":0,"3935":0,"3936":1,"3937":0,"3938":0,"3939":0,"3940":1,"3941":0,"3942":0,"3943":0,"3944":0,"3945":0,"3946":1,"3947":0,"3948":0,"3949":0,"3950":1,"3951":0,"3952":1,"3953":0,"3954":1,"3955":0,"3956":1,"3957":0,"3958":0,"3959":0,"3960":1,"3961":0,"3962":0,"3963":0,"3964":1,"3965":1,"3966":0,"3967":0,"3968":1,"3969":0,"3970":1,"3971":0,"3972":0,"3973":0,"3974":0,"3975":0,"3976":0,"3977":1,"3978":0,"3979":0,"3980":0,"3981":0,"3982":0,"3983":0,"3984":0,"3985":0,"3986":0,"3987":0,"3988":0,"3989":0,"3990":0,"3991":0,"3992":0,"3993":0,"3994":0,"3995":0,"3996":1,"3997":0,"3998":1,"3999":0,"4000":0,"4001":0,"4002":0,"4003":0,"4004":0,"4005":1,"4006":0,"4007":1,"4008":0,"4009":0,"4010":0,"4011":1,"4012":0,"4013":0,"4014":0,"4015":0,"4016":0,"4017":0,"4018":0,"4019":0,"4020":1,"4021":1,"4022":0,"4023":0,"4024":0,"4025":0,"4026":1,"4027":0,"4028":0,"4029":0,"4030":0,"4031":0,"4032":0,"4033":1,"4034":0,"4035":0,"4036":1,"4037":1,"4038":0,"4039":0,"4040":0,"4041":0,"4042":0,"4043":0,"4044":0,"4045":0,"4046":1,"4047":1,"4048":0,"4049":0,"4050":1,"4051":0,"4052":0,"4053":0,"4054":0,"4055":0,"4056":0,"4057":0,"4058":0,"4059":1,"4060":0,"4061":0,"4062":0,"4063":0,"4064":0,"4065":1,"4066":1,"4067":1,"4068":1,"4069":0,"4070":0,"4071":0,"4072":1,"4073":0,"4074":0,"4075":0,"4076":0,"4077":0,"4078":0,"4079":1,"4080":1,"4081":0,"4082":0,"4083":1,"4084":1,"4085":0,"4086":0,"4087":0,"4088":0,"4089":0,"4090":1,"4091":1,"4092":0,"4093":1,"4094":0,"4095":0,"4096":0,"4097":0,"4098":1,"4099":1,"4100":0,"4101":1,"4102":0,"4103":0,"4104":0,"4105":0,"4106":0,"4107":1,"4108":0,"4109":0,"4110":1,"4111":0,"4112":0,"4113":0,"4114":0,"4115":1,"4116":1,"4117":1,"4118":0,"4119":0,"4120":0,"4121":0,"4122":0,"4123":0,"4124":1,"4125":0,"4126":0,"4127":0,"4128":0,"4129":0,"4130":0,"4131":0,"4132":0,"4133":1,"4134":0,"4135":1,"4136":1,"4137":0,"4138":0,"4139":0,"4140":0,"4141":0,"4142":1,"4143":0,"4144":0,"4145":0,"4146":1,"4147":1,"4148":0,"4149":0,"4150":1,"4151":1,"4152":0,"4153":0,"4154":0,"4155":0,"4156":0,"4157":1,"4158":1,"4159":1,"4160":0,"4161":0,"4162":1,"4163":1,"4164":0,"4165":0,"4166":0,"4167":0,"4168":1,"4169":0,"4170":0,"4171":0,"4172":0,"4173":0,"4174":0,"4175":0,"4176":0,"4177":0,"4178":0,"4179":0,"4180":1,"4181":0,"4182":0,"4183":0,"4184":0,"4185":0,"4186":1,"4187":1,"4188":0,"4189":0,"4190":0,"4191":1,"4192":0,"4193":0,"4194":1,"4195":1,"4196":0,"4197":0,"4198":0,"4199":0,"4200":1,"4201":0,"4202":0,"4203":0,"4204":0,"4205":0,"4206":0,"4207":0,"4208":0,"4209":0,"4210":1,"4211":0,"4212":0,"4213":0,"4214":0,"4215":0,"4216":0,"4217":0,"4218":0,"4219":1,"4220":0,"4221":0,"4222":0,"4223":0,"4224":0,"4225":0,"4226":1,"4227":0,"4228":0,"4229":1,"4230":1,"4231":0,"4232":1,"4233":0,"4234":0,"4235":0,"4236":0,"4237":1,"4238":0,"4239":0,"4240":0,"4241":0,"4242":1,"4243":0,"4244":1,"4245":0,"4246":0,"4247":0,"4248":0,"4249":1,"4250":0,"4251":0,"4252":0,"4253":0,"4254":0,"4255":0,"4256":1,"4257":0,"4258":0,"4259":0,"4260":0,"4261":1,"4262":0,"4263":0,"4264":0,"4265":0,"4266":1,"4267":1,"4268":1,"4269":0,"4270":0,"4271":1,"4272":0,"4273":0,"4274":0,"4275":1,"4276":0,"4277":0,"4278":1,"4279":0,"4280":1,"4281":0,"4282":1,"4283":1,"4284":0,"4285":0,"4286":0,"4287":1,"4288":0,"4289":0,"4290":0,"4291":1,"4292":0,"4293":0,"4294":0,"4295":0,"4296":1,"4297":0,"4298":0,"4299":0,"4300":0,"4301":0,"4302":0,"4303":0,"4304":1,"4305":0,"4306":0,"4307":1,"4308":0,"4309":0,"4310":0,"4311":0,"4312":0,"4313":0,"4314":0,"4315":0,"4316":0,"4317":0,"4318":1,"4319":0,"4320":0,"4321":1,"4322":0,"4323":0,"4324":1,"4325":0,"4326":0,"4327":0,"4328":0,"4329":1,"4330":0,"4331":0,"4332":0,"4333":0,"4334":1,"4335":0,"4336":0,"4337":1,"4338":0,"4339":0,"4340":0,"4341":0,"4342":0,"4343":0,"4344":0,"4345":0,"4346":0,"4347":0,"4348":0,"4349":0,"4350":1,"4351":0,"4352":0,"4353":0,"4354":0,"4355":1,"4356":0,"4357":1,"4358":0,"4359":0,"4360":0,"4361":0,"4362":0,"4363":0,"4364":1,"4365":0,"4366":0,"4367":1,"4368":0,"4369":0,"4370":0,"4371":1,"4372":0,"4373":0,"4374":0,"4375":0,"4376":0,"4377":0,"4378":0,"4379":1,"4380":0,"4381":0,"4382":0,"4383":0,"4384":1,"4385":1,"4386":0,"4387":0,"4388":0,"4389":0,"4390":1,"4391":1,"4392":0,"4393":0,"4394":1,"4395":1,"4396":0,"4397":1,"4398":0,"4399":0,"4400":0,"4401":0,"4402":1,"4403":0,"4404":0,"4405":0,"4406":1,"4407":0,"4408":0,"4409":0,"4410":1,"4411":0,"4412":0,"4413":1,"4414":0,"4415":0,"4416":1,"4417":1,"4418":0,"4419":0,"4420":0,"4421":1,"4422":0,"4423":0,"4424":0,"4425":0,"4426":0,"4427":0,"4428":0,"4429":0,"4430":0,"4431":1,"4432":0,"4433":0,"4434":1,"4435":0,"4436":0,"4437":1,"4438":1,"4439":1,"4440":0,"4441":0,"4442":0,"4443":0,"4444":0,"4445":0,"4446":0,"4447":1,"4448":0,"4449":0,"4450":1,"4451":0,"4452":0,"4453":0,"4454":0,"4455":0,"4456":0,"4457":0,"4458":0,"4459":0,"4460":0,"4461":0,"4462":0,"4463":0,"4464":1,"4465":0,"4466":0,"4467":0,"4468":0,"4469":0,"4470":0,"4471":0,"4472":0,"4473":0,"4474":0,"4475":1,"4476":0,"4477":0,"4478":1,"4479":0,"4480":1,"4481":0,"4482":0,"4483":0,"4484":1,"4485":0,"4486":1,"4487":0,"4488":0,"4489":1,"4490":0,"4491":0,"4492":0,"4493":0,"4494":0,"4495":0,"4496":0,"4497":0,"4498":0,"4499":0,"4500":0,"4501":0,"4502":0,"4503":0,"4504":1,"4505":0,"4506":0,"4507":0,"4508":0,"4509":0,"4510":0,"4511":0,"4512":0,"4513":0,"4514":0,"4515":0,"4516":0,"4517":0,"4518":0,"4519":0,"4520":0,"4521":0,"4522":0,"4523":1,"4524":1,"4525":0,"4526":0,"4527":0,"4528":0,"4529":0,"4530":0,"4531":0,"4532":1,"4533":0,"4534":0,"4535":0,"4536":0,"4537":0,"4538":0,"4539":0,"4540":0,"4541":0,"4542":0,"4543":1,"4544":1,"4545":0,"4546":0,"4547":0,"4548":0,"4549":0,"4550":1,"4551":0,"4552":0,"4553":0,"4554":0,"4555":0,"4556":0,"4557":0,"4558":1,"4559":0,"4560":0,"4561":0,"4562":0,"4563":0,"4564":1,"4565":0,"4566":0,"4567":0,"4568":1,"4569":0,"4570":1,"4571":0,"4572":0,"4573":0,"4574":0,"4575":0,"4576":1,"4577":0,"4578":1,"4579":1,"4580":1,"4581":0,"4582":0,"4583":0,"4584":0,"4585":1,"4586":0,"4587":0,"4588":1,"4589":0,"4590":0,"4591":1,"4592":0,"4593":1,"4594":0,"4595":0,"4596":0,"4597":0,"4598":0,"4599":0,"4600":0,"4601":0,"4602":0,"4603":0,"4604":0,"4605":0,"4606":0,"4607":0,"4608":0,"4609":0,"4610":0,"4611":0,"4612":1,"4613":0,"4614":1,"4615":0,"4616":0,"4617":0,"4618":0,"4619":0,"4620":1,"4621":0,"4622":0,"4623":0,"4624":1,"4625":0,"4626":1,"4627":0,"4628":0,"4629":0,"4630":1,"4631":0,"4632":0,"4633":0,"4634":1,"4635":1,"4636":0,"4637":0,"4638":1,"4639":0,"4640":0,"4641":1,"4642":1,"4643":0,"4644":0,"4645":0,"4646":0,"4647":0,"4648":0,"4649":0,"4650":0,"4651":1,"4652":1,"4653":1,"4654":0,"4655":0,"4656":0,"4657":0,"4658":0,"4659":1,"4660":0,"4661":0,"4662":0,"4663":1,"4664":1,"4665":0,"4666":0,"4667":1,"4668":1,"4669":1,"4670":0,"4671":0,"4672":0,"4673":0,"4674":0,"4675":0,"4676":0,"4677":0,"4678":1,"4679":0,"4680":0,"4681":0,"4682":0,"4683":0,"4684":0,"4685":0,"4686":0,"4687":0,"4688":0,"4689":0,"4690":0,"4691":1,"4692":1,"4693":0,"4694":0,"4695":1,"4696":0,"4697":0,"4698":0,"4699":0,"4700":0,"4701":1,"4702":0,"4703":0,"4704":0,"4705":1,"4706":0,"4707":0,"4708":0,"4709":1,"4710":0,"4711":0,"4712":0,"4713":0,"4714":0,"4715":0,"4716":0,"4717":0,"4718":1,"4719":1,"4720":0,"4721":0,"4722":0,"4723":0,"4724":1,"4725":1,"4726":0,"4727":1,"4728":1,"4729":0,"4730":1,"4731":1,"4732":0,"4733":0,"4734":0,"4735":1,"4736":0,"4737":0,"4738":1,"4739":0,"4740":0,"4741":0,"4742":0,"4743":0,"4744":0,"4745":0,"4746":1,"4747":1,"4748":0,"4749":0,"4750":0,"4751":0,"4752":0,"4753":0,"4754":0,"4755":0,"4756":0,"4757":0,"4758":0,"4759":0,"4760":1,"4761":0,"4762":0,"4763":0,"4764":0,"4765":0,"4766":1,"4767":0,"4768":1,"4769":0,"4770":0,"4771":0,"4772":0,"4773":0,"4774":0,"4775":0,"4776":0,"4777":0,"4778":0,"4779":0,"4780":1,"4781":1,"4782":0,"4783":0,"4784":0,"4785":1,"4786":0,"4787":0,"4788":0,"4789":0,"4790":0,"4791":0,"4792":0,"4793":0,"4794":1,"4795":0,"4796":0,"4797":0,"4798":0,"4799":1,"4800":1,"4801":0,"4802":1,"4803":1,"4804":0,"4805":0,"4806":0,"4807":0,"4808":1,"4809":0,"4810":1,"4811":0,"4812":0,"4813":0,"4814":0,"4815":0,"4816":1,"4817":0,"4818":0,"4819":1,"4820":0,"4821":1,"4822":0,"4823":0,"4824":0,"4825":0,"4826":0,"4827":1,"4828":0,"4829":0,"4830":0,"4831":0,"4832":0,"4833":0,"4834":0,"4835":0,"4836":1,"4837":0,"4838":0,"4839":0,"4840":0,"4841":1,"4842":1,"4843":0,"4844":0,"4845":0,"4846":1,"4847":0,"4848":0,"4849":0,"4850":0,"4851":0,"4852":0,"4853":1,"4854":0,"4855":0,"4856":0,"4857":1,"4858":0,"4859":0,"4860":0,"4861":0,"4862":0,"4863":0,"4864":0,"4865":0,"4866":0,"4867":0,"4868":0,"4869":0,"4870":1,"4871":0,"4872":0,"4873":0,"4874":0,"4875":1,"4876":0,"4877":1,"4878":0,"4879":0,"4880":1,"4881":0,"4882":0,"4883":0,"4884":0,"4885":0,"4886":1,"4887":0,"4888":0,"4889":1,"4890":0,"4891":0,"4892":0,"4893":0,"4894":0,"4895":0,"4896":0,"4897":0,"4898":0,"4899":1,"4900":0,"4901":0,"4902":1,"4903":0,"4904":0,"4905":0,"4906":1,"4907":0,"4908":0,"4909":0,"4910":0,"4911":0,"4912":0,"4913":0,"4914":0,"4915":0,"4916":0,"4917":0,"4918":0,"4919":1,"4920":0,"4921":0,"4922":0,"4923":0,"4924":0,"4925":1,"4926":1,"4927":0,"4928":0,"4929":0,"4930":1,"4931":0,"4932":0,"4933":0,"4934":1,"4935":0,"4936":1,"4937":0,"4938":0,"4939":1,"4940":0,"4941":0,"4942":0,"4943":0,"4944":0,"4945":1,"4946":0,"4947":0,"4948":1,"4949":1,"4950":1,"4951":0,"4952":0,"4953":0,"4954":1,"4955":1,"4956":0,"4957":0,"4958":0,"4959":0,"4960":1,"4961":0,"4962":0,"4963":0,"4964":0,"4965":1,"4966":0,"4967":0,"4968":0,"4969":0,"4970":0,"4971":0,"4972":1,"4973":0,"4974":0,"4975":1,"4976":0,"4977":0,"4978":0,"4979":0,"4980":0,"4981":0,"4982":0,"4983":1,"4984":0,"4985":0,"4986":1,"4987":0,"4988":0,"4989":0,"4990":0,"4991":1,"4992":0,"4993":1,"4994":0,"4995":0,"4996":0,"4997":0,"4998":0,"4999":0,"5000":0,"5001":0,"5002":0,"5003":0,"5004":0,"5005":0,"5006":0,"5007":0,"5008":0,"5009":0,"5010":0,"5011":0,"5012":0,"5013":0,"5014":1,"5015":0,"5016":0,"5017":0,"5018":0,"5019":1,"5020":0,"5021":0,"5022":1,"5023":0,"5024":0,"5025":0,"5026":1,"5027":0,"5028":0,"5029":0,"5030":0,"5031":0,"5032":0,"5033":1,"5034":0,"5035":0,"5036":0,"5037":0,"5038":1,"5039":0,"5040":0,"5041":0,"5042":1,"5043":0,"5044":0,"5045":0,"5046":1,"5047":0,"5048":0,"5049":0,"5050":0,"5051":0,"5052":0,"5053":0,"5054":1,"5055":0,"5056":0,"5057":1,"5058":1,"5059":0,"5060":0,"5061":0,"5062":0,"5063":0,"5064":1,"5065":0,"5066":0,"5067":0,"5068":0,"5069":0,"5070":0,"5071":1,"5072":1,"5073":0,"5074":0,"5075":1,"5076":0,"5077":0,"5078":0,"5079":1,"5080":0,"5081":0,"5082":0,"5083":0,"5084":0,"5085":0,"5086":0,"5087":0,"5088":0,"5089":0,"5090":0,"5091":1,"5092":1,"5093":0,"5094":0,"5095":0,"5096":0,"5097":0,"5098":0,"5099":1,"5100":1,"5101":0,"5102":1,"5103":0,"5104":1,"5105":0,"5106":0,"5107":0,"5108":0,"5109":0,"5110":0,"5111":0,"5112":0,"5113":0,"5114":1,"5115":0,"5116":1,"5117":1,"5118":1,"5119":1,"5120":0,"5121":0,"5122":0,"5123":1,"5124":0,"5125":0,"5126":0,"5127":0,"5128":0,"5129":1,"5130":0,"5131":1,"5132":0,"5133":1,"5134":1,"5135":0,"5136":1,"5137":0,"5138":1,"5139":0,"5140":0,"5141":0,"5142":1,"5143":0,"5144":0,"5145":1,"5146":0,"5147":1,"5148":1,"5149":0,"5150":0,"5151":0,"5152":0,"5153":1,"5154":1,"5155":0,"5156":0,"5157":0,"5158":0,"5159":0,"5160":0,"5161":0,"5162":0,"5163":1,"5164":1,"5165":1,"5166":1,"5167":1,"5168":1,"5169":0,"5170":0,"5171":0,"5172":0,"5173":1,"5174":0,"5175":0,"5176":0,"5177":0,"5178":1,"5179":0,"5180":1,"5181":0,"5182":0,"5183":0,"5184":1,"5185":0,"5186":0,"5187":1,"5188":0,"5189":1,"5190":0,"5191":0,"5192":0,"5193":1,"5194":0,"5195":1,"5196":0,"5197":1,"5198":0,"5199":0,"5200":0,"5201":0,"5202":0,"5203":0,"5204":0,"5205":0,"5206":0,"5207":1,"5208":0,"5209":0,"5210":0,"5211":0,"5212":0,"5213":0,"5214":0,"5215":0,"5216":0,"5217":0,"5218":0,"5219":0,"5220":0,"5221":0,"5222":0,"5223":0,"5224":0,"5225":0,"5226":0,"5227":1,"5228":0,"5229":0,"5230":0,"5231":0,"5232":1,"5233":0,"5234":1,"5235":0,"5236":0,"5237":0,"5238":1,"5239":0,"5240":0,"5241":0,"5242":1,"5243":0,"5244":0,"5245":0,"5246":0,"5247":0,"5248":1,"5249":1,"5250":1,"5251":0,"5252":0,"5253":0,"5254":0,"5255":0,"5256":0,"5257":0,"5258":0,"5259":0,"5260":1,"5261":0,"5262":0,"5263":0,"5264":0,"5265":1,"5266":0,"5267":0,"5268":1,"5269":1,"5270":0,"5271":0,"5272":0,"5273":1,"5274":0,"5275":0,"5276":0,"5277":1,"5278":0,"5279":1,"5280":0,"5281":0,"5282":1,"5283":1,"5284":0,"5285":0,"5286":0,"5287":0,"5288":1,"5289":0,"5290":0,"5291":1,"5292":0,"5293":0,"5294":0,"5295":0,"5296":0,"5297":0,"5298":0,"5299":0,"5300":0,"5301":0,"5302":0,"5303":0,"5304":0,"5305":1,"5306":0,"5307":0,"5308":0,"5309":0,"5310":0,"5311":1,"5312":0,"5313":0,"5314":1,"5315":1,"5316":0,"5317":0,"5318":1,"5319":0,"5320":0,"5321":0,"5322":0,"5323":0,"5324":0,"5325":1,"5326":0,"5327":0,"5328":0,"5329":0,"5330":1,"5331":0,"5332":0,"5333":0,"5334":0,"5335":0,"5336":0,"5337":0,"5338":1,"5339":1,"5340":0,"5341":0,"5342":1,"5343":0,"5344":0,"5345":1,"5346":1,"5347":0,"5348":0,"5349":0,"5350":0,"5351":0,"5352":1,"5353":0,"5354":0,"5355":0,"5356":1,"5357":0,"5358":0,"5359":0,"5360":1,"5361":1,"5362":0,"5363":1,"5364":1,"5365":1,"5366":0,"5367":0,"5368":0,"5369":0,"5370":0,"5371":0,"5372":0,"5373":0,"5374":0,"5375":1,"5376":0,"5377":0,"5378":0,"5379":0,"5380":1,"5381":0,"5382":1,"5383":1,"5384":0,"5385":0,"5386":1,"5387":0,"5388":1,"5389":0,"5390":1,"5391":0,"5392":1,"5393":0,"5394":0,"5395":1,"5396":0,"5397":1,"5398":0,"5399":1,"5400":1,"5401":0,"5402":1,"5403":1,"5404":0,"5405":0,"5406":0,"5407":0,"5408":0,"5409":0,"5410":0,"5411":0,"5412":0,"5413":0,"5414":0,"5415":1,"5416":0,"5417":1,"5418":1,"5419":0,"5420":1,"5421":0,"5422":0,"5423":0,"5424":0,"5425":0,"5426":0,"5427":0,"5428":0,"5429":0,"5430":0,"5431":1,"5432":1,"5433":0,"5434":1,"5435":0,"5436":0,"5437":1,"5438":0,"5439":1,"5440":0,"5441":0,"5442":0,"5443":0,"5444":0,"5445":0,"5446":0,"5447":0,"5448":0,"5449":0,"5450":0,"5451":0,"5452":0,"5453":0,"5454":0,"5455":0,"5456":0,"5457":0,"5458":0,"5459":0,"5460":0,"5461":0,"5462":0,"5463":0,"5464":0,"5465":0,"5466":0,"5467":0,"5468":0,"5469":0,"5470":0,"5471":0,"5472":0,"5473":0,"5474":0,"5475":0,"5476":0,"5477":0,"5478":1,"5479":0,"5480":0,"5481":0,"5482":0,"5483":0,"5484":0,"5485":1,"5486":0,"5487":0,"5488":0,"5489":1,"5490":1,"5491":0,"5492":1,"5493":0,"5494":0,"5495":0,"5496":1,"5497":0,"5498":0,"5499":0,"5500":1,"5501":0,"5502":1,"5503":0,"5504":1,"5505":0,"5506":1,"5507":0,"5508":0,"5509":1,"5510":1,"5511":0,"5512":0,"5513":1,"5514":0,"5515":0,"5516":0,"5517":0,"5518":0,"5519":0,"5520":0,"5521":0,"5522":0,"5523":1,"5524":0,"5525":0,"5526":1,"5527":0,"5528":0,"5529":1,"5530":0,"5531":1,"5532":0,"5533":0,"5534":0,"5535":0,"5536":1,"5537":1,"5538":0,"5539":0,"5540":0,"5541":0,"5542":0,"5543":0,"5544":0,"5545":1,"5546":1,"5547":1,"5548":0,"5549":0,"5550":1,"5551":0,"5552":0,"5553":1,"5554":0,"5555":0,"5556":0,"5557":0,"5558":0,"5559":1,"5560":1,"5561":0,"5562":1,"5563":1,"5564":0,"5565":0,"5566":1,"5567":1,"5568":0,"5569":1,"5570":0,"5571":1,"5572":0,"5573":1,"5574":0,"5575":0,"5576":0,"5577":1,"5578":0,"5579":0,"5580":0,"5581":0,"5582":0,"5583":1,"5584":0,"5585":0,"5586":0,"5587":0,"5588":0,"5589":0,"5590":0,"5591":0,"5592":0,"5593":1,"5594":0,"5595":0,"5596":0,"5597":0,"5598":1,"5599":0,"5600":0,"5601":0,"5602":0,"5603":0,"5604":0,"5605":0,"5606":0,"5607":0,"5608":0,"5609":1,"5610":0,"5611":0,"5612":1,"5613":0,"5614":0,"5615":0,"5616":1,"5617":1,"5618":0,"5619":0,"5620":1,"5621":0,"5622":0,"5623":0,"5624":0,"5625":0,"5626":0,"5627":1,"5628":1,"5629":0,"5630":0,"5631":0,"5632":1,"5633":0,"5634":0,"5635":0,"5636":0,"5637":1,"5638":0,"5639":0,"5640":0,"5641":0,"5642":0,"5643":0,"5644":0,"5645":1,"5646":1,"5647":0,"5648":0,"5649":1,"5650":1,"5651":0,"5652":0,"5653":0,"5654":0,"5655":0,"5656":0,"5657":0,"5658":1,"5659":0,"5660":0,"5661":0,"5662":0,"5663":0,"5664":1,"5665":0,"5666":0,"5667":0,"5668":0,"5669":0,"5670":1,"5671":1,"5672":0,"5673":1,"5674":1,"5675":0,"5676":0,"5677":0,"5678":0,"5679":0,"5680":1,"5681":0,"5682":0,"5683":1,"5684":0,"5685":0,"5686":0,"5687":1,"5688":0,"5689":1,"5690":0,"5691":0,"5692":0,"5693":0,"5694":0,"5695":1,"5696":1,"5697":0,"5698":0,"5699":0,"5700":0,"5701":1,"5702":1,"5703":0,"5704":0,"5705":0,"5706":1,"5707":0,"5708":1,"5709":0,"5710":0,"5711":1,"5712":0,"5713":1,"5714":1,"5715":0,"5716":0,"5717":0,"5718":1,"5719":0,"5720":0,"5721":1,"5722":1,"5723":0,"5724":0,"5725":0,"5726":0,"5727":0,"5728":0,"5729":0,"5730":0,"5731":0,"5732":0,"5733":1,"5734":0,"5735":1,"5736":1,"5737":1,"5738":0,"5739":1,"5740":0,"5741":0,"5742":0,"5743":0,"5744":0,"5745":0,"5746":0,"5747":0,"5748":1,"5749":0,"5750":0,"5751":0,"5752":1,"5753":1,"5754":0,"5755":0,"5756":0,"5757":0,"5758":0,"5759":1,"5760":0,"5761":0,"5762":0,"5763":0,"5764":1,"5765":0,"5766":0,"5767":0,"5768":0,"5769":0,"5770":0,"5771":1,"5772":0,"5773":0,"5774":0,"5775":0,"5776":0,"5777":0,"5778":0,"5779":1,"5780":0,"5781":0,"5782":0,"5783":0,"5784":0,"5785":0,"5786":0,"5787":0,"5788":1,"5789":0,"5790":0,"5791":1,"5792":1,"5793":1,"5794":0,"5795":1,"5796":1,"5797":0,"5798":0,"5799":0,"5800":0,"5801":0,"5802":0,"5803":1,"5804":0,"5805":1,"5806":0,"5807":0,"5808":1,"5809":0,"5810":0,"5811":0,"5812":0,"5813":1,"5814":1,"5815":1,"5816":0,"5817":1,"5818":0,"5819":0,"5820":0,"5821":0,"5822":0,"5823":0,"5824":0,"5825":0,"5826":0,"5827":0,"5828":1,"5829":1,"5830":0,"5831":0,"5832":0,"5833":0,"5834":1,"5835":1,"5836":1,"5837":0,"5838":0,"5839":0,"5840":0,"5841":0,"5842":0,"5843":1,"5844":0,"5845":0,"5846":0,"5847":1,"5848":0,"5849":1,"5850":0,"5851":0,"5852":0,"5853":0,"5854":1,"5855":0,"5856":0,"5857":0,"5858":0,"5859":0,"5860":0,"5861":0,"5862":0,"5863":0,"5864":0,"5865":0,"5866":0,"5867":0,"5868":1,"5869":0,"5870":1,"5871":1,"5872":0,"5873":0,"5874":0,"5875":1,"5876":1,"5877":0,"5878":0,"5879":0,"5880":1,"5881":0,"5882":0,"5883":1,"5884":0,"5885":0,"5886":0,"5887":0,"5888":0,"5889":0,"5890":1,"5891":0,"5892":0,"5893":1,"5894":0,"5895":1,"5896":0,"5897":0,"5898":0,"5899":0,"5900":1,"5901":0,"5902":0,"5903":0,"5904":1,"5905":0,"5906":0,"5907":1,"5908":0,"5909":0,"5910":0,"5911":0,"5912":0,"5913":0,"5914":0,"5915":0,"5916":0,"5917":0,"5918":1,"5919":0,"5920":0,"5921":1,"5922":1,"5923":0,"5924":0,"5925":0,"5926":0,"5927":0,"5928":0,"5929":0,"5930":0,"5931":0,"5932":1,"5933":0,"5934":0,"5935":0,"5936":0,"5937":0,"5938":1,"5939":0,"5940":0,"5941":1,"5942":0,"5943":0,"5944":0,"5945":0,"5946":0,"5947":0,"5948":0,"5949":0,"5950":1,"5951":0,"5952":0,"5953":0,"5954":0,"5955":0,"5956":0,"5957":1,"5958":1,"5959":0,"5960":0,"5961":0,"5962":1,"5963":1,"5964":0,"5965":1,"5966":0,"5967":1,"5968":1,"5969":1,"5970":1,"5971":0,"5972":1,"5973":0,"5974":0,"5975":1,"5976":0,"5977":0,"5978":0,"5979":0,"5980":0,"5981":0,"5982":0,"5983":1,"5984":1,"5985":0,"5986":0,"5987":0,"5988":0,"5989":1,"5990":0,"5991":0,"5992":0,"5993":1,"5994":0,"5995":0,"5996":0,"5997":0,"5998":1,"5999":0,"6000":1,"6001":1,"6002":0,"6003":0,"6004":1,"6005":0,"6006":0,"6007":0,"6008":1,"6009":0,"6010":0,"6011":0,"6012":0,"6013":0,"6014":0,"6015":0,"6016":1,"6017":1,"6018":0,"6019":0,"6020":0,"6021":0,"6022":0,"6023":1,"6024":0,"6025":1,"6026":0,"6027":0,"6028":0,"6029":0,"6030":0,"6031":0,"6032":0,"6033":0,"6034":0,"6035":1,"6036":1,"6037":0,"6038":1,"6039":0,"6040":0,"6041":0,"6042":0,"6043":0,"6044":0,"6045":0,"6046":1,"6047":0,"6048":0,"6049":0,"6050":1,"6051":0,"6052":0,"6053":0,"6054":1,"6055":0,"6056":0,"6057":0,"6058":0,"6059":1,"6060":1,"6061":0,"6062":0,"6063":0,"6064":0,"6065":0,"6066":0,"6067":0,"6068":0,"6069":0,"6070":0,"6071":0,"6072":0,"6073":1,"6074":0,"6075":0,"6076":0,"6077":0,"6078":1,"6079":0,"6080":1,"6081":0,"6082":0,"6083":0,"6084":0,"6085":0,"6086":1,"6087":0,"6088":0,"6089":0,"6090":0,"6091":0,"6092":0,"6093":1,"6094":0,"6095":0,"6096":0,"6097":0,"6098":0,"6099":1,"6100":1,"6101":0,"6102":0,"6103":0,"6104":1,"6105":0,"6106":0,"6107":1,"6108":0,"6109":0,"6110":0,"6111":0,"6112":0,"6113":1,"6114":0,"6115":1,"6116":0,"6117":0,"6118":0,"6119":0,"6120":0,"6121":0,"6122":0,"6123":0,"6124":0,"6125":0,"6126":0,"6127":0,"6128":0,"6129":0,"6130":0,"6131":0,"6132":1,"6133":1,"6134":0,"6135":0,"6136":0,"6137":0,"6138":0,"6139":1,"6140":0,"6141":0,"6142":1,"6143":0,"6144":0,"6145":1,"6146":0,"6147":0,"6148":0,"6149":0,"6150":1,"6151":1,"6152":1,"6153":0,"6154":0,"6155":0,"6156":0,"6157":0,"6158":0,"6159":1,"6160":0,"6161":0,"6162":0,"6163":0,"6164":1,"6165":0,"6166":0,"6167":0,"6168":0,"6169":0,"6170":0,"6171":1,"6172":1,"6173":0,"6174":0,"6175":0,"6176":0,"6177":1,"6178":0,"6179":0,"6180":0,"6181":0,"6182":1,"6183":1,"6184":0,"6185":0,"6186":0,"6187":0,"6188":0,"6189":0,"6190":1,"6191":0,"6192":0,"6193":1,"6194":0,"6195":0,"6196":0,"6197":0,"6198":0,"6199":0,"6200":0,"6201":1,"6202":1,"6203":1,"6204":0,"6205":0,"6206":0,"6207":1,"6208":0,"6209":0,"6210":0,"6211":0,"6212":0,"6213":0,"6214":1,"6215":0,"6216":0,"6217":0,"6218":1,"6219":0,"6220":0,"6221":0,"6222":0,"6223":0,"6224":0,"6225":1,"6226":0,"6227":1,"6228":0,"6229":0,"6230":0,"6231":1,"6232":0,"6233":0,"6234":0,"6235":0,"6236":0,"6237":1,"6238":0,"6239":0,"6240":1,"6241":0,"6242":0,"6243":0,"6244":0,"6245":0,"6246":0,"6247":1,"6248":0,"6249":0,"6250":0,"6251":0,"6252":1,"6253":0,"6254":0,"6255":0,"6256":0,"6257":0,"6258":1,"6259":0,"6260":0,"6261":0,"6262":0,"6263":0,"6264":0,"6265":1,"6266":0,"6267":0,"6268":0,"6269":1,"6270":0,"6271":0,"6272":0,"6273":0,"6274":1,"6275":0,"6276":0,"6277":0,"6278":0,"6279":0,"6280":0,"6281":0,"6282":0,"6283":0,"6284":0,"6285":0,"6286":1,"6287":1,"6288":0,"6289":0,"6290":1,"6291":0,"6292":1,"6293":0,"6294":0,"6295":0,"6296":1,"6297":0,"6298":0,"6299":0,"6300":0,"6301":0,"6302":0,"6303":0,"6304":1,"6305":0,"6306":0,"6307":0,"6308":0,"6309":0,"6310":0,"6311":0,"6312":0,"6313":0,"6314":0,"6315":1,"6316":1,"6317":0,"6318":0,"6319":0,"6320":0,"6321":0,"6322":1,"6323":0,"6324":0,"6325":0,"6326":0,"6327":0,"6328":0,"6329":0,"6330":1,"6331":0,"6332":0,"6333":0,"6334":0,"6335":0,"6336":0,"6337":1,"6338":1,"6339":1,"6340":0,"6341":0,"6342":0,"6343":0,"6344":0,"6345":0,"6346":0,"6347":0,"6348":0,"6349":0,"6350":0,"6351":1,"6352":0,"6353":0,"6354":0,"6355":1,"6356":0,"6357":1,"6358":0,"6359":0,"6360":0,"6361":0,"6362":1,"6363":1,"6364":0,"6365":0,"6366":0,"6367":1,"6368":0,"6369":1,"6370":0,"6371":1,"6372":0,"6373":1,"6374":0,"6375":1,"6376":0,"6377":1,"6378":0,"6379":0,"6380":0,"6381":0,"6382":0,"6383":1,"6384":1,"6385":0,"6386":0,"6387":0,"6388":0,"6389":0,"6390":0,"6391":1,"6392":0,"6393":0,"6394":0,"6395":1,"6396":0,"6397":0,"6398":1,"6399":0,"6400":0,"6401":1,"6402":0,"6403":1,"6404":0,"6405":0,"6406":0,"6407":0,"6408":0,"6409":1,"6410":0,"6411":0,"6412":0,"6413":0,"6414":0,"6415":0,"6416":0,"6417":0,"6418":0,"6419":0,"6420":0,"6421":0,"6422":0,"6423":0,"6424":0,"6425":0,"6426":0,"6427":0,"6428":1,"6429":0,"6430":0,"6431":0,"6432":1,"6433":0,"6434":0,"6435":1,"6436":0,"6437":0,"6438":1,"6439":0,"6440":0,"6441":0,"6442":0,"6443":0,"6444":0,"6445":0,"6446":0,"6447":0,"6448":0,"6449":1,"6450":0,"6451":0,"6452":0,"6453":0,"6454":1,"6455":1,"6456":0,"6457":0,"6458":0,"6459":0,"6460":0,"6461":0,"6462":0,"6463":1,"6464":1,"6465":1,"6466":1,"6467":0,"6468":0,"6469":1,"6470":0,"6471":0,"6472":0,"6473":1,"6474":0,"6475":0,"6476":1,"6477":1,"6478":1,"6479":0,"6480":1,"6481":0,"6482":0,"6483":0,"6484":1,"6485":0,"6486":0,"6487":1,"6488":0,"6489":1,"6490":0,"6491":0,"6492":0,"6493":0,"6494":0,"6495":0,"6496":0,"6497":1,"6498":0,"6499":0,"6500":0,"6501":0,"6502":1,"6503":0,"6504":1,"6505":0,"6506":0,"6507":0,"6508":0,"6509":0,"6510":1,"6511":0,"6512":0,"6513":0,"6514":0,"6515":0,"6516":0,"6517":1,"6518":0,"6519":0,"6520":0,"6521":0,"6522":0,"6523":0,"6524":0,"6525":0,"6526":1,"6527":0,"6528":0,"6529":0,"6530":0,"6531":0,"6532":0,"6533":0,"6534":0,"6535":0,"6536":0,"6537":0,"6538":0,"6539":0,"6540":0,"6541":0,"6542":0,"6543":0,"6544":1,"6545":1,"6546":0,"6547":0,"6548":0,"6549":0,"6550":1,"6551":0,"6552":0,"6553":0,"6554":0,"6555":1,"6556":0,"6557":1,"6558":0,"6559":0,"6560":0,"6561":0,"6562":0,"6563":0,"6564":0,"6565":0,"6566":0,"6567":0,"6568":1,"6569":0,"6570":0,"6571":0,"6572":1,"6573":0,"6574":0,"6575":1,"6576":1,"6577":1,"6578":0,"6579":0,"6580":0,"6581":0,"6582":1,"6583":0,"6584":1,"6585":0,"6586":1,"6587":0,"6588":1,"6589":0,"6590":0,"6591":0,"6592":0,"6593":0,"6594":0,"6595":0,"6596":0,"6597":0,"6598":0,"6599":1,"6600":0,"6601":0,"6602":0,"6603":0,"6604":0,"6605":0,"6606":1,"6607":0,"6608":0,"6609":0,"6610":0,"6611":0,"6612":1,"6613":1,"6614":0,"6615":0,"6616":1,"6617":1,"6618":0,"6619":0,"6620":0,"6621":1,"6622":0,"6623":1,"6624":0,"6625":0,"6626":1,"6627":0,"6628":0,"6629":0,"6630":1,"6631":1,"6632":0,"6633":0,"6634":1,"6635":0,"6636":1,"6637":0,"6638":0,"6639":0,"6640":1,"6641":0,"6642":0,"6643":1,"6644":1,"6645":0,"6646":0,"6647":0,"6648":0,"6649":1,"6650":0,"6651":0,"6652":0,"6653":0,"6654":1,"6655":1,"6656":0,"6657":0,"6658":0,"6659":0,"6660":0,"6661":0,"6662":0,"6663":1,"6664":0,"6665":0,"6666":0,"6667":1,"6668":0,"6669":1,"6670":0,"6671":0,"6672":0,"6673":0,"6674":0,"6675":0,"6676":0,"6677":0,"6678":0,"6679":1,"6680":1,"6681":1,"6682":0,"6683":0,"6684":0,"6685":1,"6686":1,"6687":1,"6688":0,"6689":0,"6690":1,"6691":0,"6692":0,"6693":0,"6694":0,"6695":0,"6696":0,"6697":1,"6698":1,"6699":0,"6700":0,"6701":1,"6702":0,"6703":1,"6704":1,"6705":0,"6706":1,"6707":0,"6708":0,"6709":0,"6710":1,"6711":1,"6712":0,"6713":0,"6714":1,"6715":0,"6716":0,"6717":0,"6718":1,"6719":0,"6720":1,"6721":0,"6722":0,"6723":0,"6724":1,"6725":1,"6726":1,"6727":0,"6728":0,"6729":0,"6730":0,"6731":0,"6732":1,"6733":0,"6734":0,"6735":1,"6736":0,"6737":0,"6738":0,"6739":1,"6740":0,"6741":0,"6742":0,"6743":1,"6744":0,"6745":1,"6746":0,"6747":0,"6748":0,"6749":0,"6750":0,"6751":1,"6752":0,"6753":1,"6754":1,"6755":0,"6756":0,"6757":0,"6758":0,"6759":0,"6760":0,"6761":0,"6762":0,"6763":0,"6764":0,"6765":1,"6766":0,"6767":0,"6768":0,"6769":1,"6770":1,"6771":1,"6772":0,"6773":0,"6774":0,"6775":0,"6776":0,"6777":1,"6778":0,"6779":0,"6780":0,"6781":0,"6782":1,"6783":1,"6784":0,"6785":0,"6786":0,"6787":0,"6788":0,"6789":0,"6790":0,"6791":0,"6792":0,"6793":1,"6794":1,"6795":0,"6796":0,"6797":0,"6798":0,"6799":0,"6800":1,"6801":0,"6802":0,"6803":0,"6804":1,"6805":0,"6806":0,"6807":0,"6808":1,"6809":0,"6810":1,"6811":0,"6812":0,"6813":0,"6814":0,"6815":1,"6816":0,"6817":0,"6818":1,"6819":0,"6820":0,"6821":0,"6822":0,"6823":0,"6824":1,"6825":0,"6826":0,"6827":1,"6828":0,"6829":0,"6830":0,"6831":1,"6832":0,"6833":0,"6834":0,"6835":0,"6836":0,"6837":1,"6838":0,"6839":1,"6840":0,"6841":0,"6842":0,"6843":0,"6844":0,"6845":1,"6846":1,"6847":0,"6848":1,"6849":0,"6850":1,"6851":0,"6852":0,"6853":0,"6854":0,"6855":0,"6856":0,"6857":1,"6858":0,"6859":0,"6860":0,"6861":0,"6862":0,"6863":1,"6864":1,"6865":1,"6866":0,"6867":0,"6868":0,"6869":0,"6870":0,"6871":0,"6872":0,"6873":0,"6874":1,"6875":1,"6876":1,"6877":0,"6878":0,"6879":0,"6880":0,"6881":0,"6882":0,"6883":0,"6884":0,"6885":1,"6886":1,"6887":0,"6888":0,"6889":1,"6890":0,"6891":1,"6892":0,"6893":1,"6894":0,"6895":0,"6896":0,"6897":1,"6898":0,"6899":0,"6900":0,"6901":0,"6902":0,"6903":0,"6904":0,"6905":1,"6906":0,"6907":1,"6908":0,"6909":1,"6910":0,"6911":1,"6912":1,"6913":1,"6914":1,"6915":0,"6916":0,"6917":0,"6918":0,"6919":0,"6920":1,"6921":0,"6922":0,"6923":0,"6924":0,"6925":1,"6926":0,"6927":1,"6928":0,"6929":1,"6930":0,"6931":1,"6932":0,"6933":1,"6934":1,"6935":1,"6936":0,"6937":0,"6938":1,"6939":1,"6940":0,"6941":1,"6942":0,"6943":1,"6944":0,"6945":0,"6946":1,"6947":0,"6948":0,"6949":0,"6950":0,"6951":0,"6952":0,"6953":0,"6954":0,"6955":0,"6956":0,"6957":0,"6958":1,"6959":1,"6960":0,"6961":0,"6962":0,"6963":0,"6964":0,"6965":0,"6966":1,"6967":0,"6968":0,"6969":0,"6970":0,"6971":1,"6972":0,"6973":0,"6974":0,"6975":0,"6976":0,"6977":0,"6978":0,"6979":0,"6980":1,"6981":0,"6982":0,"6983":0,"6984":0,"6985":0,"6986":1,"6987":0,"6988":0,"6989":0,"6990":0,"6991":1,"6992":0,"6993":0,"6994":0,"6995":0,"6996":0,"6997":0,"6998":0,"6999":0,"7000":0,"7001":1,"7002":0,"7003":0,"7004":0,"7005":1,"7006":0,"7007":0,"7008":0,"7009":0,"7010":0,"7011":0,"7012":1,"7013":0,"7014":0,"7015":0,"7016":0,"7017":0,"7018":0,"7019":0,"7020":0,"7021":1,"7022":1,"7023":0,"7024":0,"7025":0,"7026":1,"7027":1,"7028":0,"7029":0,"7030":0,"7031":0,"7032":0,"7033":0,"7034":0,"7035":0,"7036":0,"7037":0,"7038":0,"7039":0,"7040":0,"7041":0,"7042":0,"7043":0,"7044":1,"7045":0,"7046":1,"7047":1,"7048":0,"7049":1,"7050":0,"7051":0,"7052":0,"7053":1,"7054":0,"7055":0,"7056":0,"7057":0,"7058":0,"7059":1,"7060":0,"7061":0,"7062":1,"7063":0,"7064":0,"7065":0,"7066":0,"7067":0,"7068":0,"7069":0,"7070":0,"7071":1,"7072":0,"7073":1,"7074":0,"7075":0,"7076":0,"7077":1,"7078":0,"7079":0,"7080":0,"7081":0,"7082":0,"7083":0,"7084":0,"7085":0,"7086":0,"7087":0,"7088":0,"7089":0,"7090":1,"7091":0,"7092":0,"7093":0,"7094":0,"7095":0,"7096":0,"7097":0,"7098":0,"7099":0,"7100":0,"7101":0,"7102":0,"7103":0,"7104":0,"7105":0,"7106":0,"7107":0,"7108":1,"7109":0,"7110":1,"7111":0,"7112":1,"7113":1,"7114":1,"7115":0,"7116":0,"7117":0,"7118":1,"7119":1,"7120":0,"7121":1,"7122":0,"7123":1,"7124":0,"7125":0,"7126":1,"7127":1,"7128":0,"7129":0,"7130":1,"7131":0,"7132":0,"7133":0,"7134":0,"7135":0,"7136":0,"7137":0,"7138":1,"7139":0,"7140":0,"7141":1,"7142":0,"7143":1,"7144":0,"7145":0,"7146":0,"7147":1,"7148":0,"7149":0,"7150":1,"7151":0,"7152":0,"7153":1,"7154":0,"7155":1,"7156":0,"7157":0,"7158":0,"7159":0,"7160":1,"7161":1,"7162":0,"7163":1,"7164":0,"7165":0,"7166":0,"7167":1,"7168":0,"7169":0,"7170":0,"7171":1,"7172":1,"7173":0,"7174":0,"7175":0,"7176":0,"7177":0,"7178":1,"7179":0,"7180":1,"7181":1,"7182":0,"7183":0,"7184":0,"7185":0,"7186":0,"7187":0,"7188":0,"7189":1,"7190":0,"7191":1,"7192":0,"7193":1,"7194":0,"7195":1,"7196":1,"7197":0,"7198":0,"7199":1,"7200":0,"7201":0,"7202":0,"7203":0,"7204":0,"7205":0,"7206":1,"7207":1,"7208":0,"7209":1,"7210":0,"7211":0,"7212":1,"7213":1,"7214":0,"7215":0,"7216":0,"7217":0,"7218":0,"7219":0,"7220":0,"7221":0,"7222":0,"7223":0,"7224":0,"7225":0,"7226":0,"7227":0,"7228":0,"7229":0,"7230":0,"7231":0,"7232":0,"7233":1,"7234":0,"7235":0,"7236":1,"7237":0,"7238":0,"7239":0,"7240":0,"7241":1,"7242":1,"7243":1,"7244":0,"7245":1,"7246":0,"7247":0,"7248":1,"7249":0,"7250":1,"7251":0,"7252":1,"7253":1,"7254":0,"7255":0,"7256":1,"7257":0,"7258":0,"7259":0,"7260":0,"7261":1,"7262":0,"7263":1,"7264":1,"7265":0,"7266":1,"7267":1,"7268":0,"7269":0,"7270":0,"7271":0,"7272":0,"7273":0,"7274":0,"7275":0,"7276":1,"7277":0,"7278":0,"7279":0,"7280":0,"7281":0,"7282":1,"7283":0,"7284":1,"7285":0,"7286":1,"7287":1,"7288":0,"7289":1,"7290":0,"7291":0,"7292":1,"7293":0,"7294":0,"7295":0,"7296":0,"7297":0,"7298":0,"7299":0,"7300":1,"7301":0,"7302":0,"7303":0,"7304":0,"7305":1,"7306":1,"7307":0,"7308":0,"7309":0,"7310":0,"7311":0,"7312":0,"7313":0,"7314":0,"7315":1,"7316":0,"7317":0,"7318":0,"7319":1,"7320":1,"7321":1,"7322":0,"7323":0,"7324":0,"7325":0,"7326":1,"7327":0,"7328":0,"7329":0,"7330":0,"7331":0,"7332":0,"7333":1,"7334":0,"7335":0,"7336":0,"7337":0,"7338":0,"7339":1,"7340":1,"7341":1,"7342":1,"7343":0,"7344":1,"7345":0,"7346":0,"7347":0,"7348":0,"7349":0,"7350":0,"7351":0,"7352":0,"7353":1,"7354":0,"7355":0,"7356":0,"7357":1,"7358":0,"7359":0,"7360":0,"7361":0,"7362":0,"7363":1,"7364":0,"7365":1,"7366":0,"7367":1,"7368":1,"7369":0,"7370":0,"7371":0,"7372":1,"7373":0,"7374":1,"7375":0,"7376":0,"7377":0,"7378":0,"7379":1,"7380":1,"7381":0,"7382":1,"7383":0,"7384":0,"7385":0,"7386":0,"7387":1,"7388":1,"7389":1,"7390":1,"7391":1,"7392":0,"7393":0,"7394":0,"7395":1,"7396":0,"7397":0,"7398":0,"7399":0,"7400":0,"7401":0,"7402":0,"7403":1,"7404":0,"7405":0,"7406":0,"7407":1,"7408":0,"7409":0,"7410":0,"7411":0,"7412":1,"7413":1,"7414":0,"7415":0,"7416":0,"7417":1,"7418":0,"7419":0,"7420":0,"7421":0,"7422":0,"7423":0,"7424":0,"7425":0,"7426":0,"7427":0,"7428":0,"7429":0,"7430":0,"7431":0,"7432":0,"7433":1,"7434":0,"7435":0,"7436":0,"7437":0,"7438":0,"7439":0,"7440":1,"7441":0,"7442":0,"7443":0,"7444":0,"7445":0,"7446":1,"7447":0,"7448":0,"7449":0,"7450":0,"7451":0,"7452":1,"7453":0,"7454":0,"7455":1,"7456":0,"7457":1,"7458":0,"7459":1,"7460":0,"7461":0,"7462":1,"7463":0,"7464":0,"7465":1,"7466":0,"7467":0,"7468":0,"7469":0,"7470":1,"7471":0,"7472":0,"7473":0,"7474":1,"7475":0,"7476":0,"7477":0,"7478":0,"7479":0,"7480":0,"7481":1,"7482":0,"7483":0,"7484":0,"7485":1,"7486":0,"7487":1,"7488":0,"7489":0,"7490":0,"7491":0,"7492":0,"7493":0,"7494":0,"7495":0,"7496":0,"7497":0,"7498":0,"7499":0,"7500":0,"7501":0,"7502":1,"7503":0,"7504":1,"7505":0,"7506":0,"7507":0,"7508":0,"7509":1,"7510":0,"7511":0,"7512":0,"7513":0,"7514":0,"7515":0,"7516":0,"7517":0,"7518":1,"7519":0,"7520":1,"7521":0,"7522":1,"7523":0,"7524":0,"7525":0,"7526":0,"7527":1,"7528":1,"7529":0,"7530":1,"7531":0,"7532":0,"7533":1,"7534":0,"7535":0,"7536":0,"7537":0,"7538":0,"7539":1,"7540":0,"7541":1,"7542":0,"7543":0,"7544":1,"7545":0,"7546":1,"7547":0,"7548":0,"7549":0,"7550":1,"7551":0,"7552":0,"7553":0,"7554":0,"7555":0,"7556":0,"7557":0,"7558":1,"7559":1,"7560":0,"7561":0,"7562":1,"7563":0,"7564":0,"7565":1,"7566":1,"7567":1,"7568":0,"7569":0,"7570":0,"7571":0,"7572":1,"7573":1,"7574":1,"7575":0,"7576":1,"7577":0,"7578":1,"7579":0,"7580":0,"7581":0,"7582":0,"7583":0,"7584":1,"7585":0,"7586":0,"7587":0,"7588":1,"7589":0,"7590":1,"7591":0,"7592":0,"7593":0,"7594":1,"7595":1,"7596":0,"7597":0,"7598":1,"7599":0,"7600":1,"7601":0,"7602":0,"7603":0,"7604":0,"7605":1,"7606":0,"7607":0,"7608":1,"7609":1,"7610":0,"7611":1,"7612":0,"7613":0,"7614":0,"7615":0,"7616":0,"7617":0,"7618":0,"7619":0,"7620":0,"7621":0,"7622":0,"7623":0,"7624":1,"7625":1,"7626":0,"7627":0,"7628":0,"7629":1,"7630":0,"7631":1,"7632":0,"7633":1,"7634":0,"7635":0,"7636":0,"7637":0,"7638":0,"7639":0,"7640":0,"7641":0,"7642":0,"7643":1,"7644":0,"7645":1,"7646":0,"7647":0,"7648":0,"7649":0,"7650":1,"7651":1,"7652":0,"7653":1,"7654":0,"7655":0,"7656":0,"7657":1,"7658":0,"7659":0,"7660":0,"7661":1,"7662":0,"7663":1,"7664":1,"7665":0,"7666":0,"7667":1,"7668":0,"7669":0,"7670":0,"7671":0,"7672":0,"7673":0,"7674":0,"7675":0,"7676":1,"7677":1,"7678":1,"7679":1,"7680":0,"7681":0,"7682":1,"7683":1,"7684":0,"7685":0,"7686":0,"7687":0,"7688":0,"7689":0,"7690":0,"7691":0,"7692":0,"7693":0,"7694":0,"7695":0,"7696":1,"7697":0,"7698":0,"7699":0,"7700":1,"7701":0,"7702":0,"7703":0,"7704":0,"7705":0,"7706":0,"7707":0,"7708":1,"7709":0,"7710":0,"7711":0,"7712":0,"7713":0,"7714":0,"7715":1,"7716":1,"7717":1,"7718":1,"7719":0,"7720":1,"7721":0,"7722":1,"7723":0,"7724":1,"7725":0,"7726":1,"7727":1,"7728":0,"7729":0,"7730":0,"7731":0,"7732":1,"7733":0,"7734":1,"7735":0,"7736":1,"7737":1,"7738":0,"7739":0,"7740":0,"7741":0,"7742":1,"7743":0,"7744":0,"7745":0,"7746":0,"7747":0,"7748":1,"7749":1,"7750":0,"7751":0,"7752":0,"7753":0,"7754":0,"7755":0,"7756":0,"7757":0,"7758":0,"7759":0,"7760":1,"7761":0,"7762":1,"7763":0,"7764":0,"7765":0,"7766":0,"7767":0,"7768":0,"7769":0,"7770":1,"7771":0,"7772":0,"7773":0,"7774":1,"7775":1,"7776":0,"7777":1,"7778":0,"7779":1,"7780":0,"7781":0,"7782":0,"7783":1,"7784":0,"7785":0,"7786":0,"7787":0,"7788":1,"7789":0,"7790":0,"7791":0,"7792":0,"7793":0,"7794":0,"7795":0,"7796":0,"7797":0,"7798":1,"7799":1,"7800":1,"7801":0,"7802":0,"7803":0,"7804":1,"7805":0,"7806":0,"7807":0,"7808":0,"7809":0,"7810":0,"7811":0,"7812":0,"7813":0,"7814":1,"7815":0,"7816":0,"7817":0,"7818":1,"7819":0,"7820":0,"7821":1,"7822":0,"7823":0,"7824":1,"7825":1,"7826":1,"7827":0,"7828":0,"7829":0,"7830":1,"7831":0,"7832":1,"7833":0,"7834":0,"7835":0,"7836":1,"7837":1,"7838":0,"7839":0,"7840":0,"7841":0,"7842":1,"7843":1,"7844":0,"7845":0,"7846":0,"7847":1,"7848":1,"7849":0,"7850":0,"7851":1,"7852":0,"7853":1,"7854":0,"7855":0,"7856":0,"7857":0,"7858":0,"7859":0,"7860":0,"7861":0,"7862":0,"7863":0,"7864":0,"7865":1,"7866":0,"7867":0,"7868":0,"7869":0,"7870":1,"7871":0,"7872":0,"7873":1,"7874":1,"7875":0,"7876":0,"7877":0,"7878":0,"7879":0,"7880":0,"7881":0,"7882":0,"7883":0,"7884":0,"7885":0,"7886":1,"7887":0,"7888":0,"7889":0,"7890":0,"7891":0,"7892":1,"7893":0,"7894":1,"7895":0,"7896":1,"7897":0,"7898":0,"7899":0,"7900":0,"7901":1,"7902":0,"7903":0,"7904":0,"7905":1,"7906":1,"7907":0,"7908":1,"7909":0,"7910":0,"7911":0,"7912":0,"7913":1,"7914":0,"7915":0,"7916":0,"7917":0,"7918":1,"7919":1,"7920":0,"7921":0,"7922":0,"7923":0,"7924":0,"7925":1,"7926":0,"7927":0,"7928":1,"7929":1,"7930":0,"7931":0,"7932":1,"7933":0,"7934":0,"7935":0,"7936":0,"7937":0,"7938":1,"7939":0,"7940":0,"7941":0,"7942":1,"7943":1,"7944":0,"7945":1,"7946":0,"7947":0,"7948":0,"7949":0,"7950":1,"7951":0,"7952":1,"7953":0,"7954":0,"7955":0,"7956":0,"7957":0,"7958":0,"7959":0,"7960":0,"7961":1,"7962":1,"7963":0,"7964":0,"7965":0,"7966":0,"7967":1,"7968":0,"7969":0,"7970":0,"7971":0,"7972":0,"7973":0,"7974":0,"7975":0,"7976":0,"7977":1,"7978":0,"7979":0,"7980":0,"7981":0,"7982":0,"7983":0,"7984":1,"7985":1,"7986":0,"7987":0,"7988":0,"7989":1,"7990":0,"7991":0,"7992":1,"7993":0,"7994":0,"7995":0,"7996":1,"7997":0,"7998":0,"7999":0,"8000":0,"8001":0,"8002":0,"8003":1,"8004":1,"8005":1,"8006":0,"8007":1,"8008":0,"8009":0,"8010":0,"8011":0,"8012":0,"8013":0,"8014":0,"8015":1,"8016":0,"8017":0,"8018":0,"8019":0,"8020":1,"8021":0,"8022":0,"8023":0,"8024":0,"8025":1,"8026":0,"8027":0,"8028":0,"8029":0,"8030":0,"8031":0,"8032":0,"8033":0,"8034":0,"8035":1,"8036":0,"8037":0,"8038":1,"8039":0,"8040":0,"8041":0,"8042":0,"8043":0,"8044":0,"8045":1,"8046":0,"8047":0,"8048":0,"8049":0,"8050":1,"8051":0,"8052":1,"8053":0,"8054":0,"8055":0,"8056":0,"8057":1,"8058":0,"8059":0,"8060":0,"8061":1,"8062":0,"8063":1,"8064":0,"8065":1,"8066":1,"8067":0,"8068":0,"8069":0,"8070":0,"8071":0,"8072":0,"8073":1,"8074":0,"8075":0,"8076":0,"8077":0,"8078":0,"8079":1,"8080":0,"8081":1,"8082":0,"8083":1,"8084":0,"8085":1,"8086":0,"8087":0,"8088":0,"8089":1,"8090":0,"8091":0,"8092":0,"8093":0,"8094":0,"8095":1,"8096":0,"8097":1,"8098":0,"8099":0,"8100":0,"8101":0,"8102":0,"8103":0,"8104":1,"8105":1,"8106":0,"8107":0,"8108":0,"8109":0,"8110":0,"8111":0,"8112":0,"8113":0,"8114":1,"8115":0,"8116":1,"8117":0,"8118":0,"8119":0,"8120":1,"8121":0,"8122":0,"8123":1,"8124":0,"8125":0,"8126":0,"8127":0,"8128":0,"8129":0,"8130":0,"8131":0,"8132":0,"8133":0,"8134":1,"8135":1,"8136":0,"8137":0,"8138":0,"8139":0,"8140":1,"8141":0,"8142":1,"8143":0,"8144":1,"8145":0,"8146":0,"8147":1,"8148":0,"8149":1,"8150":1,"8151":0,"8152":1,"8153":0,"8154":0,"8155":0,"8156":0,"8157":0,"8158":0,"8159":0,"8160":0,"8161":0,"8162":0,"8163":0,"8164":0,"8165":0,"8166":0,"8167":0,"8168":1,"8169":0,"8170":1,"8171":0,"8172":1,"8173":0,"8174":0,"8175":0,"8176":1,"8177":0,"8178":0,"8179":1,"8180":0,"8181":0,"8182":0,"8183":0,"8184":0,"8185":0,"8186":0,"8187":0,"8188":0,"8189":0,"8190":0,"8191":0,"8192":0,"8193":0,"8194":0,"8195":1,"8196":0,"8197":0,"8198":0,"8199":1,"8200":0,"8201":0,"8202":0,"8203":0,"8204":0,"8205":0,"8206":0,"8207":0,"8208":0,"8209":0,"8210":0,"8211":0,"8212":0,"8213":1,"8214":1,"8215":1,"8216":0,"8217":0,"8218":0,"8219":0,"8220":0,"8221":0,"8222":1,"8223":1,"8224":0,"8225":0,"8226":1,"8227":0,"8228":0,"8229":0,"8230":0,"8231":0,"8232":0,"8233":0,"8234":0,"8235":0,"8236":0,"8237":1,"8238":1,"8239":0,"8240":0,"8241":1,"8242":0,"8243":0,"8244":0,"8245":0,"8246":0,"8247":1,"8248":0,"8249":0,"8250":1,"8251":1,"8252":0,"8253":0,"8254":1,"8255":0,"8256":0,"8257":1,"8258":0,"8259":1,"8260":0,"8261":1,"8262":0,"8263":0,"8264":0,"8265":0,"8266":1,"8267":1,"8268":1,"8269":0,"8270":0,"8271":0,"8272":0,"8273":0,"8274":1,"8275":1,"8276":0,"8277":1,"8278":1,"8279":1,"8280":1,"8281":0,"8282":0,"8283":0,"8284":0,"8285":0,"8286":1,"8287":0,"8288":0,"8289":1,"8290":0,"8291":0,"8292":1,"8293":0,"8294":0,"8295":0,"8296":0,"8297":1,"8298":0,"8299":1,"8300":0,"8301":0,"8302":0,"8303":0,"8304":0,"8305":0,"8306":0,"8307":0,"8308":0,"8309":0,"8310":0,"8311":0,"8312":0,"8313":1,"8314":1,"8315":1,"8316":0,"8317":0,"8318":0,"8319":0,"8320":0,"8321":0,"8322":0,"8323":0,"8324":0,"8325":1,"8326":0,"8327":0,"8328":0,"8329":0,"8330":0,"8331":0,"8332":0,"8333":0,"8334":0,"8335":0,"8336":0,"8337":1,"8338":0,"8339":1,"8340":0,"8341":0,"8342":1,"8343":1,"8344":0,"8345":0,"8346":1,"8347":1,"8348":0,"8349":0,"8350":0,"8351":0,"8352":0,"8353":0,"8354":1,"8355":0,"8356":1,"8357":0,"8358":0,"8359":0,"8360":0,"8361":0,"8362":0,"8363":1,"8364":1,"8365":0,"8366":0,"8367":1,"8368":0,"8369":0,"8370":0,"8371":0,"8372":0,"8373":0,"8374":0,"8375":1,"8376":0,"8377":1,"8378":1,"8379":0,"8380":0,"8381":0,"8382":0,"8383":1,"8384":0,"8385":0,"8386":1,"8387":0,"8388":0,"8389":0,"8390":1,"8391":0,"8392":0,"8393":0,"8394":0,"8395":1,"8396":0,"8397":0,"8398":1,"8399":0,"8400":0,"8401":0,"8402":0,"8403":1,"8404":0,"8405":1,"8406":0,"8407":0,"8408":1,"8409":0,"8410":0,"8411":1,"8412":0,"8413":1,"8414":0,"8415":0,"8416":0,"8417":0,"8418":0,"8419":0,"8420":1,"8421":1,"8422":0,"8423":0,"8424":1,"8425":0,"8426":1,"8427":0,"8428":1,"8429":1,"8430":0,"8431":1,"8432":1,"8433":0,"8434":0,"8435":0,"8436":0,"8437":0,"8438":0,"8439":1,"8440":0,"8441":0,"8442":0,"8443":0,"8444":0,"8445":1,"8446":1,"8447":0,"8448":0,"8449":1,"8450":1,"8451":0,"8452":0,"8453":0,"8454":1,"8455":0,"8456":0,"8457":0,"8458":0,"8459":1,"8460":1,"8461":1,"8462":0,"8463":0,"8464":0,"8465":1,"8466":1,"8467":0,"8468":0,"8469":0,"8470":0,"8471":1,"8472":0,"8473":1,"8474":0,"8475":0,"8476":0,"8477":1,"8478":0,"8479":0,"8480":1,"8481":1,"8482":1,"8483":1,"8484":0,"8485":0,"8486":1,"8487":1,"8488":0,"8489":1,"8490":0,"8491":0,"8492":0,"8493":0,"8494":0,"8495":0,"8496":0,"8497":0,"8498":1,"8499":0,"8500":0,"8501":0,"8502":0,"8503":0,"8504":1,"8505":0,"8506":0,"8507":0,"8508":0,"8509":1,"8510":0,"8511":0,"8512":0,"8513":0,"8514":1,"8515":0,"8516":0,"8517":0,"8518":0,"8519":1,"8520":1,"8521":0,"8522":1,"8523":1,"8524":0,"8525":1,"8526":1,"8527":0,"8528":0,"8529":1,"8530":0,"8531":1,"8532":0,"8533":1,"8534":0,"8535":0,"8536":0,"8537":0,"8538":0,"8539":0,"8540":0,"8541":0,"8542":0,"8543":0,"8544":0,"8545":1,"8546":0,"8547":0,"8548":0,"8549":0,"8550":0,"8551":1,"8552":0,"8553":0,"8554":0,"8555":1,"8556":0,"8557":1,"8558":0,"8559":0,"8560":0,"8561":1,"8562":0,"8563":0,"8564":0,"8565":0,"8566":0,"8567":1,"8568":0,"8569":0,"8570":1,"8571":0,"8572":0,"8573":0,"8574":0,"8575":1,"8576":1,"8577":0,"8578":0,"8579":0,"8580":0,"8581":0,"8582":0,"8583":0,"8584":0,"8585":0,"8586":0,"8587":0,"8588":1,"8589":1,"8590":0,"8591":1,"8592":0,"8593":0,"8594":1,"8595":0,"8596":1,"8597":0,"8598":1,"8599":0,"8600":0,"8601":0,"8602":0,"8603":0,"8604":0,"8605":0,"8606":0,"8607":0,"8608":0,"8609":0,"8610":0,"8611":0,"8612":0,"8613":0,"8614":0,"8615":0,"8616":0,"8617":0,"8618":1,"8619":1,"8620":1,"8621":0,"8622":1,"8623":1,"8624":0,"8625":0,"8626":0,"8627":1,"8628":1,"8629":0,"8630":0,"8631":1,"8632":0,"8633":0,"8634":0,"8635":0,"8636":0,"8637":0,"8638":1,"8639":0,"8640":1,"8641":0,"8642":0,"8643":0,"8644":0,"8645":0,"8646":0,"8647":1,"8648":0,"8649":0,"8650":1,"8651":0,"8652":1,"8653":0,"8654":0,"8655":1,"8656":0,"8657":0,"8658":0,"8659":0,"8660":1,"8661":0,"8662":1,"8663":0,"8664":1,"8665":0,"8666":0,"8667":0,"8668":0,"8669":0,"8670":1,"8671":0,"8672":0,"8673":0,"8674":1,"8675":1,"8676":1,"8677":0,"8678":0,"8679":0,"8680":0,"8681":1,"8682":0,"8683":0,"8684":0,"8685":1,"8686":0,"8687":1,"8688":0,"8689":0,"8690":0,"8691":0,"8692":1,"8693":0,"8694":1,"8695":0,"8696":1,"8697":0,"8698":0,"8699":0,"8700":0,"8701":0,"8702":0,"8703":0,"8704":0,"8705":0,"8706":0,"8707":0,"8708":0,"8709":0,"8710":0,"8711":0,"8712":0,"8713":0,"8714":0,"8715":0,"8716":0,"8717":0,"8718":0,"8719":0,"8720":0,"8721":1,"8722":0,"8723":1,"8724":1,"8725":0,"8726":0,"8727":1,"8728":0,"8729":0,"8730":0,"8731":0,"8732":0,"8733":1,"8734":1,"8735":1,"8736":0,"8737":0,"8738":0,"8739":0,"8740":1,"8741":0,"8742":0,"8743":0,"8744":0,"8745":0,"8746":1,"8747":0,"8748":1,"8749":0,"8750":1,"8751":0,"8752":0,"8753":1,"8754":0,"8755":0,"8756":0,"8757":0,"8758":1,"8759":1,"8760":1,"8761":1,"8762":0,"8763":0,"8764":0,"8765":0,"8766":0,"8767":0,"8768":0,"8769":0,"8770":0,"8771":0,"8772":0,"8773":0,"8774":0,"8775":0,"8776":0,"8777":1,"8778":0,"8779":0,"8780":0,"8781":0,"8782":0,"8783":0,"8784":0,"8785":1,"8786":0,"8787":0,"8788":0,"8789":1,"8790":0,"8791":0,"8792":0,"8793":0,"8794":0,"8795":0,"8796":0,"8797":0,"8798":0,"8799":0,"8800":1,"8801":1,"8802":1,"8803":0,"8804":0,"8805":1,"8806":0,"8807":0,"8808":0,"8809":1,"8810":0,"8811":0,"8812":0,"8813":0,"8814":0,"8815":0,"8816":0,"8817":0,"8818":1,"8819":1,"8820":0,"8821":0,"8822":0,"8823":1,"8824":0,"8825":0,"8826":1,"8827":0,"8828":1,"8829":0,"8830":1,"8831":0,"8832":1,"8833":0,"8834":0,"8835":0,"8836":0,"8837":0,"8838":0,"8839":1,"8840":0,"8841":0,"8842":1,"8843":0,"8844":1,"8845":1,"8846":0,"8847":0,"8848":0,"8849":0,"8850":0,"8851":0,"8852":0,"8853":0,"8854":0,"8855":0,"8856":0,"8857":0,"8858":0,"8859":0,"8860":0,"8861":0,"8862":1,"8863":0,"8864":0,"8865":0,"8866":0,"8867":0,"8868":0,"8869":0,"8870":1,"8871":0,"8872":0,"8873":0,"8874":1,"8875":1,"8876":0,"8877":0,"8878":0,"8879":0,"8880":0,"8881":0,"8882":0,"8883":1,"8884":0,"8885":0,"8886":0,"8887":1,"8888":0,"8889":0,"8890":1,"8891":1,"8892":0,"8893":0,"8894":0,"8895":0,"8896":1,"8897":0,"8898":1,"8899":0,"8900":0,"8901":0,"8902":1,"8903":0,"8904":1,"8905":0,"8906":0,"8907":0,"8908":0,"8909":0,"8910":0,"8911":1,"8912":1,"8913":1,"8914":0,"8915":0,"8916":0,"8917":0,"8918":1,"8919":1,"8920":0,"8921":1,"8922":0,"8923":0,"8924":1,"8925":0,"8926":0,"8927":0,"8928":0,"8929":0,"8930":1,"8931":0,"8932":0,"8933":1,"8934":0,"8935":1,"8936":0,"8937":0,"8938":0,"8939":0,"8940":1,"8941":1,"8942":0,"8943":0,"8944":0,"8945":1,"8946":0,"8947":1,"8948":0,"8949":0,"8950":0,"8951":0,"8952":1,"8953":0,"8954":0,"8955":0,"8956":0,"8957":0,"8958":1,"8959":0,"8960":0,"8961":0,"8962":0,"8963":0,"8964":0,"8965":0,"8966":0,"8967":0,"8968":1,"8969":0,"8970":1,"8971":0,"8972":0,"8973":0,"8974":0,"8975":0,"8976":0,"8977":0,"8978":0,"8979":0,"8980":0,"8981":1,"8982":0,"8983":0,"8984":0,"8985":0,"8986":0,"8987":0,"8988":1,"8989":0,"8990":1,"8991":0,"8992":0,"8993":0,"8994":0,"8995":0,"8996":0,"8997":1,"8998":1,"8999":1,"9000":0,"9001":1,"9002":0,"9003":0,"9004":1,"9005":0,"9006":0,"9007":0,"9008":0,"9009":0,"9010":0,"9011":0,"9012":0,"9013":0,"9014":1,"9015":0,"9016":0,"9017":0,"9018":0,"9019":1,"9020":0,"9021":1,"9022":1,"9023":0,"9024":0,"9025":0,"9026":0,"9027":1,"9028":0,"9029":1,"9030":0,"9031":0,"9032":0,"9033":0,"9034":1,"9035":1,"9036":0,"9037":0,"9038":0,"9039":0,"9040":0,"9041":1,"9042":1,"9043":0,"9044":0,"9045":0,"9046":0,"9047":0,"9048":0,"9049":0,"9050":1,"9051":0,"9052":0,"9053":1,"9054":0,"9055":1,"9056":1,"9057":0,"9058":1,"9059":0,"9060":0,"9061":0,"9062":0,"9063":0,"9064":1,"9065":1,"9066":0,"9067":0,"9068":0,"9069":1,"9070":0,"9071":0,"9072":0,"9073":0,"9074":0,"9075":0,"9076":0,"9077":0,"9078":1,"9079":0,"9080":0,"9081":0,"9082":0,"9083":0,"9084":0,"9085":0,"9086":0,"9087":0,"9088":0,"9089":0,"9090":0,"9091":0,"9092":0,"9093":0,"9094":0,"9095":0,"9096":0,"9097":1,"9098":0,"9099":1,"9100":0,"9101":0,"9102":1,"9103":0,"9104":1,"9105":1,"9106":1,"9107":1,"9108":1,"9109":0,"9110":0,"9111":0,"9112":1,"9113":0,"9114":0,"9115":0,"9116":0,"9117":0,"9118":0,"9119":0,"9120":0,"9121":0,"9122":0,"9123":0,"9124":1,"9125":0,"9126":0,"9127":1,"9128":1,"9129":0,"9130":0,"9131":0,"9132":0,"9133":0,"9134":1,"9135":0,"9136":0,"9137":0,"9138":0,"9139":0,"9140":0,"9141":0,"9142":0,"9143":0,"9144":1,"9145":0,"9146":0,"9147":1,"9148":0,"9149":0,"9150":0,"9151":0,"9152":1,"9153":0,"9154":0,"9155":0,"9156":0,"9157":0,"9158":0,"9159":1,"9160":0,"9161":0,"9162":0,"9163":0,"9164":0,"9165":0,"9166":1,"9167":0,"9168":0,"9169":0,"9170":1,"9171":0,"9172":0,"9173":0,"9174":0,"9175":0,"9176":0,"9177":0,"9178":0,"9179":1,"9180":1,"9181":0,"9182":0,"9183":0,"9184":1,"9185":1,"9186":1,"9187":0,"9188":0,"9189":0,"9190":0,"9191":0,"9192":0,"9193":0,"9194":1,"9195":0,"9196":1,"9197":1,"9198":0,"9199":1,"9200":0,"9201":0,"9202":0,"9203":1,"9204":1,"9205":0,"9206":0,"9207":1,"9208":1,"9209":0,"9210":0,"9211":1,"9212":0,"9213":0,"9214":0,"9215":0,"9216":1,"9217":0,"9218":0,"9219":0,"9220":1,"9221":1,"9222":0,"9223":1,"9224":0,"9225":1,"9226":1,"9227":0,"9228":0,"9229":1,"9230":1,"9231":0,"9232":0,"9233":0,"9234":0,"9235":1,"9236":0,"9237":0,"9238":0,"9239":1,"9240":0,"9241":0,"9242":0,"9243":0,"9244":1,"9245":0,"9246":0,"9247":0,"9248":1,"9249":0,"9250":0,"9251":1,"9252":0,"9253":1,"9254":1,"9255":0,"9256":0,"9257":0,"9258":0,"9259":0,"9260":0,"9261":0,"9262":1,"9263":0,"9264":0,"9265":0,"9266":0,"9267":1,"9268":0,"9269":0,"9270":0,"9271":1,"9272":0,"9273":0,"9274":1,"9275":0,"9276":0,"9277":0,"9278":1,"9279":0,"9280":0,"9281":0,"9282":1,"9283":0,"9284":0,"9285":0,"9286":0,"9287":1,"9288":0,"9289":1,"9290":0,"9291":1,"9292":0,"9293":0,"9294":1,"9295":0,"9296":0,"9297":0,"9298":0,"9299":0,"9300":0,"9301":0,"9302":0,"9303":1,"9304":0,"9305":0,"9306":0,"9307":0,"9308":0,"9309":0,"9310":0,"9311":0,"9312":0,"9313":0,"9314":0,"9315":0,"9316":0,"9317":0,"9318":0,"9319":1,"9320":0,"9321":1,"9322":0,"9323":0,"9324":0,"9325":0,"9326":0,"9327":0,"9328":0,"9329":0,"9330":0,"9331":0,"9332":0,"9333":0,"9334":0,"9335":0,"9336":0,"9337":1,"9338":0,"9339":0,"9340":0,"9341":0,"9342":0,"9343":0,"9344":1,"9345":0,"9346":0,"9347":0,"9348":0,"9349":0,"9350":0,"9351":0,"9352":0,"9353":1,"9354":0,"9355":0,"9356":0,"9357":1,"9358":1,"9359":0,"9360":0,"9361":0,"9362":1,"9363":1,"9364":0,"9365":0,"9366":0,"9367":0,"9368":0,"9369":0,"9370":0,"9371":1,"9372":0,"9373":0,"9374":0,"9375":0,"9376":0,"9377":0,"9378":1,"9379":1,"9380":1,"9381":0,"9382":0,"9383":0,"9384":0,"9385":0,"9386":1,"9387":1,"9388":1,"9389":0,"9390":0,"9391":1,"9392":1,"9393":0,"9394":0,"9395":1,"9396":0,"9397":0,"9398":1,"9399":1,"9400":0,"9401":0,"9402":1,"9403":0,"9404":0,"9405":0,"9406":0,"9407":0,"9408":0,"9409":1,"9410":1,"9411":0,"9412":1,"9413":1,"9414":1,"9415":0,"9416":0,"9417":1,"9418":0,"9419":0,"9420":0,"9421":1,"9422":0,"9423":1,"9424":0,"9425":0,"9426":1,"9427":0,"9428":0,"9429":1,"9430":0,"9431":0,"9432":0,"9433":0,"9434":0,"9435":0,"9436":0,"9437":0,"9438":1,"9439":1,"9440":1,"9441":0,"9442":0,"9443":0,"9444":0,"9445":0,"9446":0,"9447":0,"9448":0,"9449":0,"9450":0,"9451":0,"9452":0,"9453":0,"9454":1,"9455":0,"9456":0,"9457":0,"9458":0,"9459":0,"9460":0,"9461":0,"9462":1,"9463":1,"9464":0,"9465":0,"9466":1,"9467":0,"9468":0,"9469":0,"9470":0,"9471":0,"9472":0,"9473":1,"9474":0,"9475":0,"9476":0,"9477":1,"9478":0,"9479":0,"9480":0,"9481":1,"9482":0,"9483":1,"9484":1,"9485":0,"9486":0,"9487":0,"9488":0,"9489":0,"9490":1,"9491":0,"9492":0,"9493":0,"9494":0,"9495":0,"9496":0,"9497":1,"9498":0,"9499":0,"9500":0,"9501":0,"9502":0,"9503":0,"9504":0,"9505":0,"9506":1,"9507":1,"9508":0,"9509":0,"9510":1,"9511":1,"9512":0,"9513":0,"9514":0,"9515":0,"9516":0,"9517":0,"9518":1,"9519":0,"9520":1,"9521":0,"9522":0,"9523":0,"9524":0,"9525":0,"9526":0,"9527":0,"9528":0,"9529":0,"9530":1,"9531":0,"9532":0,"9533":0,"9534":0,"9535":0,"9536":1,"9537":0,"9538":0,"9539":0,"9540":1,"9541":0,"9542":0,"9543":0,"9544":0,"9545":0,"9546":0,"9547":0,"9548":0,"9549":1,"9550":0,"9551":0,"9552":0,"9553":0,"9554":0,"9555":0,"9556":0,"9557":1,"9558":1,"9559":0,"9560":1,"9561":0,"9562":0,"9563":1,"9564":0,"9565":0,"9566":0,"9567":0,"9568":0,"9569":0,"9570":0,"9571":0,"9572":0,"9573":0,"9574":0,"9575":0,"9576":0,"9577":0,"9578":1,"9579":0,"9580":0,"9581":0,"9582":0,"9583":0,"9584":1,"9585":0,"9586":0,"9587":0,"9588":0,"9589":0,"9590":0,"9591":0,"9592":0,"9593":1,"9594":0,"9595":0,"9596":0,"9597":0,"9598":0,"9599":0,"9600":0,"9601":0,"9602":0,"9603":0,"9604":0,"9605":1,"9606":1,"9607":0,"9608":1,"9609":0,"9610":0,"9611":0,"9612":1,"9613":0,"9614":0,"9615":1,"9616":1,"9617":0,"9618":0,"9619":0,"9620":0,"9621":0,"9622":0,"9623":0,"9624":0,"9625":0,"9626":0,"9627":0,"9628":0,"9629":0,"9630":0,"9631":0,"9632":0,"9633":0,"9634":1,"9635":0,"9636":0,"9637":0,"9638":1,"9639":1,"9640":0,"9641":1,"9642":0,"9643":0,"9644":1,"9645":1,"9646":0,"9647":0,"9648":0,"9649":0,"9650":1,"9651":0,"9652":0,"9653":0,"9654":0,"9655":0,"9656":0,"9657":0,"9658":0,"9659":0,"9660":0,"9661":0,"9662":0,"9663":1,"9664":0,"9665":0,"9666":0,"9667":0,"9668":0,"9669":0,"9670":0,"9671":0,"9672":1,"9673":0,"9674":1,"9675":1,"9676":0,"9677":0,"9678":0,"9679":0,"9680":0,"9681":0,"9682":0,"9683":0,"9684":0,"9685":1,"9686":0,"9687":0,"9688":0,"9689":0,"9690":1,"9691":0,"9692":0,"9693":1,"9694":0,"9695":0,"9696":1,"9697":0,"9698":0,"9699":0,"9700":1,"9701":1,"9702":0,"9703":0,"9704":0,"9705":0,"9706":0,"9707":0,"9708":0,"9709":0,"9710":0,"9711":0,"9712":0,"9713":0,"9714":0,"9715":0,"9716":0,"9717":0,"9718":1,"9719":1,"9720":0,"9721":0,"9722":0,"9723":0,"9724":0,"9725":0,"9726":0,"9727":1,"9728":0,"9729":0,"9730":1,"9731":0,"9732":0,"9733":0,"9734":1,"9735":0,"9736":0,"9737":0,"9738":1,"9739":0,"9740":0,"9741":0,"9742":0,"9743":0,"9744":0,"9745":0,"9746":0,"9747":0,"9748":0,"9749":1,"9750":1,"9751":0,"9752":1,"9753":1,"9754":1,"9755":1,"9756":0,"9757":0,"9758":0,"9759":0,"9760":0,"9761":0,"9762":0,"9763":0,"9764":1,"9765":0,"9766":0,"9767":0,"9768":1,"9769":0,"9770":0,"9771":0,"9772":0,"9773":1,"9774":0,"9775":0,"9776":0,"9777":0,"9778":0,"9779":1,"9780":1,"9781":0,"9782":0,"9783":1,"9784":1,"9785":0,"9786":0,"9787":0,"9788":0,"9789":0,"9790":1,"9791":0,"9792":0,"9793":1,"9794":1,"9795":0,"9796":0,"9797":0,"9798":1,"9799":0,"9800":1,"9801":0,"9802":1,"9803":0,"9804":0,"9805":0,"9806":0,"9807":0,"9808":0,"9809":1,"9810":0,"9811":0,"9812":0,"9813":0,"9814":0,"9815":1,"9816":1,"9817":0,"9818":0,"9819":1,"9820":0,"9821":0,"9822":0,"9823":0,"9824":0,"9825":0,"9826":0,"9827":0,"9828":0,"9829":0,"9830":0,"9831":1,"9832":1,"9833":0,"9834":1,"9835":0,"9836":0,"9837":0,"9838":1,"9839":0,"9840":0,"9841":0,"9842":1,"9843":1,"9844":0,"9845":0,"9846":0,"9847":0,"9848":0,"9849":0,"9850":0,"9851":0,"9852":0,"9853":0,"9854":0,"9855":0,"9856":0,"9857":0,"9858":0,"9859":1,"9860":0,"9861":0,"9862":0,"9863":1,"9864":0,"9865":0,"9866":0,"9867":0,"9868":0,"9869":0,"9870":0,"9871":0,"9872":1,"9873":1,"9874":0,"9875":0,"9876":0,"9877":0,"9878":0,"9879":0,"9880":0,"9881":1,"9882":1,"9883":0,"9884":0,"9885":0,"9886":0,"9887":1,"9888":0,"9889":0,"9890":0,"9891":1,"9892":0,"9893":0,"9894":0,"9895":0,"9896":1,"9897":0,"9898":1,"9899":0,"9900":0,"9901":0,"9902":0,"9903":0,"9904":0,"9905":0,"9906":0,"9907":0,"9908":0,"9909":0,"9910":0,"9911":0,"9912":1,"9913":0,"9914":0,"9915":1,"9916":0,"9917":0,"9918":0,"9919":0,"9920":1,"9921":0,"9922":0,"9923":1,"9924":0,"9925":0,"9926":0,"9927":0,"9928":0,"9929":0,"9930":0,"9931":0,"9932":1,"9933":1,"9934":0,"9935":0,"9936":0,"9937":0,"9938":0,"9939":0,"9940":1,"9941":0,"9942":1,"9943":0,"9944":0,"9945":1,"9946":1,"9947":0,"9948":0,"9949":1,"9950":0,"9951":0,"9952":1,"9953":1,"9954":0,"9955":0,"9956":0,"9957":0,"9958":0,"9959":0,"9960":0,"9961":1,"9962":0,"9963":0,"9964":0,"9965":0,"9966":0,"9967":0,"9968":0,"9969":0,"9970":0,"9971":1,"9972":0,"9973":1,"9974":0,"9975":0,"9976":0,"9977":1,"9978":0,"9979":0,"9980":1,"9981":0,"9982":0,"9983":0,"9984":0,"9985":1,"9986":0,"9987":0,"9988":0,"9989":0,"9990":0,"9991":1,"9992":0,"9993":0,"9994":0,"9995":0,"9996":0,"9997":1,"9998":0,"9999":0,"10000":0,"10001":0,"10002":0,"10003":1,"10004":1,"10005":0,"10006":1,"10007":0,"10008":0,"10009":0,"10010":0,"10011":0,"10012":0,"10013":0,"10014":0,"10015":0,"10016":1,"10017":0,"10018":0,"10019":0,"10020":0,"10021":1,"10022":1,"10023":0,"10024":0,"10025":0,"10026":0,"10027":1,"10028":0,"10029":0,"10030":1,"10031":0,"10032":1,"10033":0,"10034":0,"10035":0,"10036":0,"10037":1,"10038":0,"10039":1,"10040":0,"10041":0,"10042":0,"10043":0,"10044":1,"10045":1,"10046":0,"10047":0,"10048":0,"10049":0,"10050":0,"10051":0,"10052":1,"10053":0,"10054":0,"10055":0,"10056":0,"10057":0,"10058":0,"10059":0,"10060":0,"10061":1,"10062":0,"10063":0,"10064":1,"10065":0,"10066":1,"10067":1,"10068":0,"10069":1,"10070":0,"10071":1,"10072":0,"10073":0,"10074":0,"10075":0,"10076":1,"10077":0,"10078":1,"10079":0,"10080":0,"10081":0,"10082":0,"10083":1,"10084":0,"10085":1,"10086":1,"10087":1,"10088":1,"10089":0,"10090":0,"10091":1,"10092":0,"10093":0,"10094":0,"10095":0,"10096":0,"10097":0,"10098":0,"10099":0,"10100":1,"10101":0,"10102":1,"10103":1,"10104":1,"10105":1,"10106":1,"10107":1,"10108":0,"10109":0,"10110":0,"10111":0,"10112":0,"10113":0,"10114":0,"10115":1,"10116":0,"10117":0,"10118":0,"10119":0,"10120":0,"10121":0,"10122":0,"10123":1,"10124":0,"10125":1,"10126":0,"10127":0,"10128":0,"10129":0,"10130":1,"10131":0,"10132":0,"10133":0,"10134":1,"10135":1,"10136":0,"10137":0,"10138":1,"10139":1,"10140":1,"10141":1,"10142":0,"10143":1,"10144":1,"10145":0,"10146":1,"10147":0,"10148":0,"10149":1,"10150":1,"10151":0,"10152":1,"10153":0,"10154":0,"10155":0,"10156":0,"10157":0,"10158":0,"10159":0,"10160":0,"10161":0,"10162":0,"10163":1,"10164":0,"10165":1,"10166":0,"10167":0,"10168":1,"10169":0,"10170":0,"10171":0,"10172":0,"10173":0,"10174":0,"10175":0,"10176":0,"10177":0,"10178":0,"10179":0,"10180":0,"10181":0,"10182":0,"10183":0,"10184":0,"10185":0,"10186":0,"10187":0,"10188":0,"10189":0,"10190":1,"10191":0,"10192":0,"10193":0,"10194":0,"10195":0,"10196":1,"10197":0,"10198":0,"10199":0,"10200":0,"10201":0,"10202":0,"10203":0,"10204":0,"10205":0,"10206":0,"10207":0,"10208":0,"10209":1,"10210":0,"10211":0,"10212":1,"10213":0,"10214":0,"10215":0,"10216":1,"10217":0,"10218":0,"10219":0,"10220":0,"10221":0,"10222":1,"10223":0,"10224":1,"10225":0,"10226":0,"10227":0,"10228":0,"10229":0,"10230":0,"10231":0,"10232":0,"10233":0,"10234":0,"10235":0,"10236":0,"10237":0,"10238":1,"10239":0,"10240":0,"10241":1,"10242":0,"10243":1,"10244":0,"10245":1,"10246":0,"10247":0,"10248":0,"10249":0,"10250":0,"10251":0,"10252":0,"10253":0,"10254":0,"10255":1,"10256":0,"10257":0,"10258":0,"10259":0,"10260":0,"10261":0,"10262":0,"10263":0,"10264":0,"10265":0,"10266":1,"10267":1,"10268":0,"10269":0,"10270":0,"10271":0,"10272":0,"10273":0,"10274":1,"10275":1,"10276":0,"10277":0,"10278":0,"10279":0,"10280":0,"10281":1,"10282":0,"10283":0,"10284":0,"10285":1,"10286":0,"10287":0,"10288":0,"10289":1,"10290":1,"10291":0,"10292":0,"10293":0,"10294":0,"10295":1,"10296":0,"10297":1,"10298":0,"10299":1,"10300":0,"10301":1,"10302":0,"10303":0,"10304":1,"10305":0,"10306":0,"10307":1,"10308":0,"10309":1,"10310":0,"10311":0,"10312":0,"10313":0,"10314":1,"10315":0,"10316":1,"10317":0,"10318":0,"10319":0,"10320":0,"10321":0,"10322":0,"10323":0,"10324":1,"10325":1,"10326":0,"10327":0,"10328":1,"10329":0,"10330":1,"10331":0,"10332":0,"10333":0,"10334":0,"10335":0,"10336":0,"10337":0,"10338":0,"10339":0,"10340":0,"10341":1,"10342":0,"10343":0,"10344":0,"10345":0,"10346":0,"10347":0,"10348":0,"10349":0,"10350":0,"10351":0,"10352":1,"10353":0,"10354":0,"10355":1,"10356":0,"10357":0,"10358":0,"10359":0,"10360":0,"10361":0,"10362":0,"10363":0,"10364":0,"10365":0,"10366":1,"10367":0,"10368":0,"10369":1,"10370":1,"10371":0,"10372":0,"10373":0,"10374":0,"10375":0,"10376":0,"10377":0,"10378":0,"10379":0,"10380":0,"10381":0,"10382":0,"10383":1,"10384":0,"10385":0,"10386":0,"10387":0,"10388":0,"10389":0,"10390":0,"10391":0,"10392":0,"10393":0,"10394":0,"10395":0,"10396":0,"10397":0,"10398":0,"10399":0,"10400":0,"10401":1,"10402":0,"10403":0,"10404":0,"10405":1,"10406":0,"10407":0,"10408":0,"10409":0,"10410":1,"10411":0,"10412":0,"10413":0,"10414":0,"10415":0,"10416":0,"10417":0,"10418":0,"10419":1,"10420":0,"10421":1,"10422":0,"10423":0,"10424":0,"10425":1,"10426":0,"10427":0,"10428":1,"10429":0,"10430":0,"10431":0,"10432":0,"10433":0,"10434":0,"10435":1,"10436":0,"10437":1,"10438":0,"10439":0,"10440":1,"10441":0,"10442":1,"10443":0,"10444":0,"10445":1,"10446":0,"10447":0,"10448":0,"10449":0,"10450":1,"10451":0,"10452":0,"10453":0,"10454":1,"10455":0,"10456":0,"10457":0,"10458":0,"10459":0,"10460":0,"10461":0,"10462":0,"10463":0,"10464":0,"10465":0,"10466":0,"10467":1,"10468":1,"10469":0,"10470":0,"10471":0,"10472":0,"10473":1,"10474":1,"10475":0,"10476":0,"10477":0,"10478":1,"10479":0,"10480":1,"10481":0,"10482":0,"10483":0,"10484":0,"10485":0,"10486":1,"10487":0,"10488":1,"10489":0,"10490":1,"10491":0,"10492":0,"10493":0,"10494":1,"10495":0,"10496":0,"10497":0,"10498":1,"10499":0,"10500":0,"10501":1,"10502":1,"10503":0,"10504":1,"10505":0,"10506":1,"10507":1,"10508":0,"10509":0,"10510":1,"10511":0,"10512":1,"10513":0,"10514":0,"10515":0,"10516":0,"10517":0,"10518":0,"10519":1,"10520":1,"10521":0,"10522":0,"10523":0,"10524":0,"10525":1,"10526":0,"10527":1,"10528":1,"10529":1,"10530":0,"10531":0,"10532":1,"10533":0,"10534":0,"10535":1,"10536":0,"10537":0,"10538":0,"10539":1,"10540":0,"10541":0,"10542":1,"10543":0,"10544":1,"10545":0,"10546":0,"10547":0,"10548":1,"10549":0,"10550":0,"10551":0,"10552":0,"10553":0,"10554":0,"10555":0,"10556":0,"10557":0,"10558":0,"10559":0,"10560":0,"10561":1,"10562":1,"10563":0,"10564":1,"10565":0,"10566":0,"10567":0,"10568":0,"10569":1,"10570":0,"10571":1,"10572":0,"10573":0,"10574":0,"10575":0,"10576":1,"10577":0,"10578":0,"10579":1,"10580":1,"10581":0,"10582":0,"10583":1,"10584":1,"10585":1,"10586":0,"10587":0,"10588":0,"10589":1,"10590":1,"10591":1,"10592":0,"10593":0,"10594":0,"10595":1,"10596":0,"10597":1,"10598":0,"10599":0,"10600":1,"10601":0,"10602":0,"10603":1,"10604":0,"10605":0,"10606":1,"10607":0,"10608":1,"10609":0,"10610":0,"10611":0,"10612":0,"10613":0,"10614":0,"10615":0,"10616":0,"10617":1,"10618":0,"10619":0,"10620":0,"10621":0,"10622":0,"10623":0,"10624":0,"10625":0,"10626":1,"10627":0,"10628":1,"10629":0,"10630":0,"10631":0,"10632":0,"10633":0,"10634":0,"10635":0,"10636":0,"10637":0,"10638":0,"10639":0,"10640":0,"10641":0,"10642":1,"10643":1,"10644":0,"10645":1,"10646":0,"10647":0,"10648":0,"10649":1,"10650":0,"10651":0,"10652":0,"10653":0,"10654":0,"10655":0,"10656":0,"10657":1,"10658":0,"10659":1,"10660":0,"10661":0,"10662":1,"10663":1,"10664":1,"10665":1,"10666":0,"10667":0,"10668":0,"10669":0,"10670":0,"10671":0,"10672":1,"10673":0,"10674":0,"10675":0,"10676":0,"10677":0,"10678":0,"10679":0,"10680":1,"10681":0,"10682":1,"10683":0,"10684":1,"10685":0,"10686":0,"10687":0,"10688":0,"10689":0,"10690":0,"10691":0,"10692":0,"10693":0,"10694":0,"10695":0,"10696":0,"10697":1,"10698":0,"10699":0,"10700":1,"10701":0,"10702":0,"10703":1,"10704":0,"10705":0,"10706":0,"10707":0,"10708":1,"10709":0,"10710":0,"10711":1,"10712":1,"10713":0,"10714":0,"10715":0,"10716":0,"10717":1,"10718":1,"10719":1,"10720":0,"10721":0,"10722":0,"10723":0,"10724":0,"10725":0,"10726":1,"10727":0,"10728":0,"10729":0,"10730":0,"10731":0,"10732":0,"10733":0,"10734":0,"10735":0,"10736":0,"10737":0,"10738":1,"10739":0,"10740":0,"10741":0,"10742":1,"10743":0,"10744":0,"10745":0,"10746":0,"10747":0,"10748":0,"10749":0,"10750":1,"10751":1,"10752":1,"10753":0,"10754":1,"10755":0,"10756":0,"10757":0,"10758":0,"10759":1,"10760":0,"10761":1,"10762":0,"10763":0,"10764":0,"10765":1,"10766":1,"10767":0,"10768":0,"10769":0,"10770":0,"10771":0,"10772":0,"10773":1,"10774":0,"10775":0,"10776":0,"10777":1,"10778":0,"10779":0,"10780":0,"10781":0,"10782":1,"10783":0,"10784":0,"10785":0,"10786":0,"10787":1,"10788":1,"10789":0,"10790":0,"10791":0,"10792":0,"10793":0,"10794":0,"10795":0,"10796":1,"10797":1,"10798":1,"10799":1,"10800":0,"10801":0,"10802":0,"10803":0,"10804":0,"10805":1,"10806":0,"10807":0,"10808":1,"10809":1,"10810":0,"10811":1,"10812":1,"10813":0,"10814":0,"10815":0,"10816":0,"10817":0,"10818":0,"10819":0,"10820":0,"10821":0,"10822":0,"10823":0,"10824":0,"10825":0,"10826":0,"10827":0,"10828":0,"10829":0,"10830":0,"10831":0,"10832":0,"10833":0,"10834":1,"10835":0,"10836":0,"10837":0,"10838":0,"10839":1,"10840":0,"10841":1,"10842":1,"10843":0,"10844":0,"10845":0,"10846":1,"10847":0,"10848":1,"10849":1,"10850":0,"10851":0,"10852":0,"10853":0,"10854":0,"10855":0,"10856":0,"10857":0,"10858":1,"10859":0,"10860":1,"10861":0,"10862":0,"10863":1,"10864":1,"10865":0,"10866":1,"10867":1,"10868":1,"10869":0,"10870":1,"10871":0,"10872":0,"10873":1,"10874":0,"10875":0,"10876":0,"10877":0,"10878":0,"10879":1,"10880":1,"10881":0,"10882":0,"10883":0,"10884":0,"10885":0,"10886":0,"10887":0,"10888":0,"10889":0,"10890":0,"10891":0,"10892":1,"10893":0,"10894":0,"10895":0,"10896":1,"10897":0,"10898":0,"10899":1,"10900":1,"10901":0,"10902":0,"10903":1,"10904":0,"10905":0,"10906":0,"10907":0,"10908":0,"10909":0,"10910":1,"10911":1,"10912":0,"10913":0,"10914":0,"10915":1,"10916":0,"10917":0,"10918":0,"10919":0,"10920":0,"10921":0,"10922":0,"10923":0,"10924":0,"10925":1,"10926":0,"10927":0,"10928":0,"10929":0,"10930":1,"10931":0,"10932":1,"10933":0,"10934":0,"10935":1,"10936":0,"10937":1,"10938":0,"10939":0,"10940":0,"10941":1,"10942":0,"10943":1,"10944":0,"10945":0,"10946":0,"10947":0,"10948":0,"10949":1,"10950":0,"10951":0,"10952":0,"10953":0,"10954":0,"10955":1,"10956":0,"10957":0,"10958":0,"10959":1,"10960":0,"10961":0,"10962":0,"10963":1,"10964":0,"10965":1,"10966":0,"10967":0,"10968":0,"10969":0,"10970":0,"10971":0,"10972":0,"10973":0,"10974":0,"10975":0,"10976":0,"10977":0,"10978":1,"10979":0,"10980":0,"10981":0,"10982":0,"10983":0,"10984":0,"10985":0,"10986":1,"10987":1,"10988":1,"10989":0,"10990":0,"10991":0,"10992":0,"10993":0,"10994":0,"10995":0,"10996":0,"10997":1,"10998":0,"10999":0,"11000":1,"11001":1,"11002":0,"11003":1,"11004":0,"11005":0,"11006":0,"11007":1,"11008":0,"11009":0,"11010":0,"11011":0,"11012":0,"11013":1,"11014":0,"11015":0,"11016":1,"11017":0,"11018":0,"11019":1,"11020":0,"11021":0,"11022":0,"11023":0,"11024":1,"11025":0,"11026":0,"11027":0,"11028":0,"11029":0,"11030":0,"11031":1,"11032":1,"11033":0,"11034":0,"11035":0,"11036":0,"11037":1,"11038":0,"11039":0,"11040":0,"11041":0,"11042":0,"11043":0,"11044":1,"11045":0,"11046":0,"11047":0,"11048":0,"11049":1,"11050":1,"11051":0,"11052":0,"11053":0,"11054":1,"11055":0,"11056":1,"11057":0,"11058":0,"11059":0,"11060":0,"11061":0,"11062":0,"11063":0,"11064":0,"11065":0,"11066":0,"11067":0,"11068":0,"11069":1,"11070":0,"11071":0,"11072":1,"11073":0,"11074":1,"11075":0,"11076":0,"11077":1,"11078":0,"11079":1,"11080":0,"11081":1,"11082":0,"11083":0,"11084":0,"11085":0,"11086":1,"11087":1,"11088":0,"11089":0,"11090":0,"11091":0,"11092":0,"11093":0,"11094":0,"11095":0,"11096":0,"11097":0,"11098":1,"11099":0,"11100":0,"11101":0,"11102":1,"11103":0,"11104":0,"11105":1,"11106":0,"11107":0,"11108":0,"11109":0,"11110":1,"11111":0,"11112":1,"11113":0,"11114":0,"11115":1,"11116":0,"11117":1,"11118":0,"11119":0,"11120":1,"11121":0,"11122":0,"11123":1,"11124":0,"11125":1,"11126":1,"11127":0,"11128":1,"11129":0,"11130":0,"11131":0,"11132":0,"11133":0,"11134":0,"11135":0,"11136":1,"11137":1,"11138":0,"11139":0,"11140":0,"11141":0,"11142":0,"11143":0,"11144":1,"11145":0,"11146":1,"11147":0,"11148":0,"11149":0,"11150":0,"11151":1,"11152":1,"11153":0,"11154":0,"11155":0,"11156":0,"11157":0,"11158":0,"11159":1,"11160":0,"11161":1,"11162":0,"11163":0,"11164":0,"11165":1,"11166":1,"11167":0,"11168":0,"11169":0,"11170":0,"11171":0,"11172":0,"11173":1,"11174":1,"11175":0,"11176":1,"11177":0,"11178":0,"11179":0,"11180":0,"11181":0,"11182":0,"11183":0,"11184":0,"11185":1,"11186":0,"11187":0,"11188":0,"11189":0,"11190":0,"11191":0,"11192":0,"11193":0,"11194":1,"11195":0,"11196":1,"11197":0,"11198":1,"11199":0,"11200":0,"11201":0,"11202":0,"11203":0,"11204":0,"11205":0,"11206":1,"11207":0,"11208":0,"11209":0,"11210":0,"11211":0,"11212":1,"11213":1,"11214":0,"11215":0,"11216":0,"11217":0,"11218":0,"11219":0,"11220":0,"11221":1,"11222":0,"11223":0,"11224":0,"11225":1,"11226":1,"11227":0,"11228":1,"11229":0,"11230":0,"11231":0,"11232":0,"11233":0,"11234":0,"11235":0,"11236":0,"11237":0,"11238":0,"11239":1,"11240":1,"11241":0,"11242":0,"11243":0,"11244":1,"11245":0,"11246":1,"11247":1,"11248":0,"11249":0,"11250":0,"11251":0,"11252":0,"11253":0,"11254":0,"11255":0,"11256":0,"11257":0,"11258":0,"11259":0,"11260":1,"11261":0,"11262":0,"11263":0,"11264":0,"11265":0,"11266":0,"11267":0,"11268":0,"11269":0,"11270":0,"11271":1,"11272":1,"11273":0,"11274":0,"11275":0,"11276":0,"11277":0,"11278":1,"11279":1,"11280":0,"11281":0,"11282":0,"11283":0,"11284":0,"11285":0,"11286":0,"11287":0,"11288":0,"11289":1,"11290":0,"11291":0,"11292":0,"11293":0,"11294":0,"11295":0,"11296":0,"11297":0,"11298":0,"11299":0,"11300":0,"11301":0,"11302":1,"11303":0,"11304":0,"11305":0,"11306":0,"11307":0,"11308":0,"11309":0,"11310":1,"11311":0,"11312":0,"11313":0,"11314":0,"11315":0,"11316":0,"11317":0,"11318":0,"11319":0,"11320":0,"11321":0,"11322":0,"11323":0,"11324":1,"11325":1,"11326":0,"11327":0,"11328":0,"11329":0,"11330":1,"11331":0,"11332":0,"11333":1,"11334":1,"11335":0,"11336":1,"11337":0,"11338":0,"11339":1,"11340":0,"11341":0,"11342":0,"11343":1,"11344":0,"11345":0,"11346":1,"11347":1,"11348":1,"11349":0,"11350":1,"11351":0,"11352":1,"11353":0,"11354":1,"11355":0,"11356":0,"11357":0,"11358":1,"11359":1,"11360":0,"11361":0,"11362":1,"11363":0,"11364":0,"11365":0,"11366":0,"11367":1,"11368":0,"11369":0,"11370":0,"11371":0,"11372":0,"11373":1,"11374":0,"11375":0,"11376":0,"11377":0,"11378":0,"11379":0,"11380":0,"11381":0,"11382":0,"11383":1,"11384":0,"11385":0,"11386":1,"11387":0,"11388":0,"11389":0,"11390":0,"11391":1,"11392":1,"11393":0,"11394":0,"11395":0,"11396":0,"11397":1,"11398":1,"11399":0,"11400":0,"11401":0,"11402":0,"11403":0,"11404":0,"11405":1,"11406":1,"11407":0,"11408":0,"11409":0,"11410":0,"11411":0,"11412":0,"11413":0,"11414":1,"11415":1,"11416":0,"11417":1,"11418":0,"11419":1,"11420":0,"11421":1,"11422":0,"11423":0,"11424":0,"11425":0,"11426":1,"11427":1,"11428":0,"11429":0,"11430":0,"11431":0,"11432":1,"11433":1,"11434":0,"11435":0,"11436":0,"11437":0,"11438":0,"11439":1,"11440":0,"11441":1,"11442":1,"11443":0,"11444":0,"11445":0,"11446":1,"11447":0,"11448":1,"11449":0,"11450":0,"11451":0,"11452":0,"11453":1,"11454":0,"11455":1,"11456":0,"11457":0,"11458":0,"11459":0,"11460":0,"11461":0,"11462":0,"11463":0,"11464":0,"11465":0,"11466":1,"11467":0,"11468":1,"11469":0,"11470":0,"11471":0,"11472":0,"11473":0,"11474":0,"11475":0,"11476":0,"11477":0,"11478":1,"11479":0,"11480":0,"11481":0,"11482":0,"11483":0,"11484":1,"11485":0,"11486":0,"11487":0,"11488":0,"11489":0,"11490":0,"11491":0,"11492":0,"11493":0,"11494":0,"11495":0,"11496":0,"11497":0,"11498":0,"11499":0,"11500":0,"11501":1,"11502":0,"11503":0,"11504":1,"11505":0,"11506":0,"11507":1,"11508":1,"11509":0,"11510":0,"11511":1,"11512":0,"11513":0,"11514":0,"11515":0,"11516":0,"11517":0,"11518":0,"11519":0,"11520":1,"11521":0,"11522":0,"11523":0,"11524":0,"11525":0,"11526":0,"11527":0,"11528":1,"11529":0,"11530":0,"11531":1,"11532":1,"11533":0,"11534":1,"11535":0,"11536":0,"11537":0,"11538":0,"11539":0,"11540":0,"11541":1,"11542":0,"11543":1,"11544":1,"11545":0,"11546":0,"11547":0,"11548":0,"11549":0,"11550":0,"11551":0,"11552":0,"11553":0,"11554":0,"11555":0,"11556":0,"11557":0,"11558":0,"11559":0,"11560":0,"11561":1,"11562":0,"11563":0,"11564":1,"11565":1,"11566":0,"11567":0,"11568":0,"11569":1,"11570":0,"11571":0,"11572":0,"11573":0,"11574":0,"11575":0,"11576":0,"11577":1,"11578":0,"11579":0,"11580":0,"11581":0,"11582":0,"11583":0,"11584":1,"11585":0,"11586":0,"11587":1,"11588":0,"11589":0,"11590":0,"11591":0,"11592":0,"11593":0,"11594":1,"11595":0,"11596":1,"11597":0,"11598":0,"11599":1,"11600":0,"11601":0,"11602":1,"11603":0,"11604":0,"11605":1,"11606":0,"11607":0,"11608":0,"11609":0,"11610":0,"11611":0,"11612":1,"11613":1,"11614":0,"11615":0,"11616":1,"11617":0,"11618":0,"11619":0,"11620":0,"11621":0,"11622":0,"11623":0,"11624":0,"11625":0,"11626":1,"11627":0,"11628":1,"11629":0,"11630":1,"11631":0,"11632":0,"11633":0,"11634":0,"11635":0,"11636":0,"11637":0,"11638":0,"11639":0,"11640":1,"11641":0,"11642":0,"11643":0,"11644":0,"11645":0,"11646":0,"11647":0,"11648":0,"11649":1,"11650":1,"11651":0,"11652":0,"11653":0,"11654":1,"11655":0,"11656":1,"11657":0,"11658":0,"11659":0,"11660":0,"11661":0,"11662":0,"11663":1,"11664":0,"11665":0,"11666":0,"11667":1,"11668":1,"11669":1,"11670":0,"11671":0,"11672":0,"11673":0,"11674":0,"11675":0,"11676":0,"11677":0,"11678":0,"11679":0,"11680":0,"11681":0,"11682":1,"11683":1,"11684":0,"11685":0,"11686":0,"11687":0,"11688":0,"11689":0,"11690":0,"11691":0,"11692":0,"11693":1,"11694":0,"11695":1,"11696":1,"11697":1,"11698":0,"11699":1,"11700":0,"11701":0,"11702":0,"11703":0,"11704":1,"11705":0,"11706":0,"11707":0,"11708":0,"11709":0,"11710":0,"11711":0,"11712":0,"11713":1,"11714":0,"11715":1,"11716":0,"11717":0,"11718":0,"11719":1,"11720":0,"11721":1,"11722":0,"11723":1,"11724":0,"11725":0,"11726":0,"11727":0,"11728":1,"11729":1,"11730":1,"11731":0,"11732":1,"11733":0,"11734":1,"11735":1,"11736":1,"11737":1,"11738":0,"11739":1,"11740":0,"11741":0,"11742":0,"11743":1,"11744":1,"11745":1,"11746":0,"11747":0,"11748":0,"11749":0,"11750":1,"11751":1,"11752":0,"11753":0,"11754":0,"11755":0,"11756":0,"11757":0,"11758":0,"11759":0,"11760":1,"11761":0,"11762":0,"11763":0,"11764":1,"11765":0,"11766":0,"11767":1,"11768":0,"11769":0,"11770":0,"11771":1,"11772":0,"11773":0,"11774":0,"11775":0,"11776":0,"11777":1,"11778":0,"11779":0,"11780":0,"11781":1,"11782":0,"11783":0,"11784":1,"11785":0,"11786":0,"11787":1,"11788":0,"11789":1,"11790":0,"11791":0,"11792":1,"11793":0,"11794":0,"11795":0,"11796":0,"11797":0,"11798":0,"11799":0,"11800":0,"11801":0,"11802":0,"11803":0,"11804":1,"11805":0,"11806":0,"11807":1,"11808":0,"11809":0,"11810":0,"11811":1,"11812":1,"11813":0,"11814":0,"11815":0,"11816":1,"11817":0,"11818":0,"11819":0,"11820":1,"11821":1,"11822":0,"11823":0,"11824":0,"11825":0,"11826":0,"11827":1,"11828":1,"11829":1,"11830":0,"11831":0,"11832":0,"11833":0,"11834":1,"11835":0,"11836":0,"11837":0,"11838":0,"11839":1,"11840":0,"11841":0,"11842":1,"11843":1,"11844":1,"11845":0,"11846":0,"11847":0,"11848":0,"11849":0,"11850":0,"11851":0,"11852":0,"11853":1,"11854":0,"11855":1,"11856":1,"11857":0,"11858":1,"11859":0,"11860":0,"11861":1,"11862":0,"11863":0,"11864":1,"11865":0,"11866":0,"11867":1,"11868":1,"11869":1,"11870":0,"11871":0,"11872":0,"11873":0,"11874":1,"11875":0,"11876":0,"11877":0,"11878":1,"11879":1,"11880":0,"11881":1,"11882":1,"11883":0,"11884":0,"11885":0,"11886":1,"11887":0,"11888":0,"11889":1,"11890":0,"11891":0,"11892":0,"11893":0,"11894":0,"11895":0,"11896":0,"11897":0,"11898":0,"11899":0,"11900":1,"11901":1,"11902":0,"11903":0,"11904":0,"11905":1,"11906":0,"11907":0,"11908":0,"11909":0,"11910":0,"11911":0,"11912":0,"11913":0,"11914":1,"11915":1,"11916":1,"11917":1,"11918":0,"11919":0,"11920":1,"11921":0,"11922":0,"11923":1,"11924":1,"11925":0,"11926":0,"11927":0,"11928":1,"11929":0,"11930":1,"11931":0,"11932":1,"11933":0,"11934":0,"11935":0,"11936":1,"11937":0,"11938":0,"11939":1,"11940":0,"11941":0,"11942":0,"11943":0,"11944":0,"11945":0,"11946":1,"11947":0,"11948":0,"11949":1,"11950":0,"11951":0,"11952":1,"11953":1,"11954":1,"11955":0,"11956":0,"11957":1,"11958":0,"11959":0,"11960":0,"11961":0,"11962":0,"11963":0,"11964":0,"11965":0,"11966":0,"11967":1,"11968":0,"11969":1,"11970":1,"11971":1,"11972":0,"11973":0,"11974":0,"11975":1,"11976":1,"11977":0,"11978":0,"11979":1,"11980":0,"11981":0,"11982":0,"11983":0,"11984":0,"11985":0,"11986":1,"11987":0,"11988":0,"11989":1,"11990":0,"11991":0,"11992":0,"11993":0,"11994":1,"11995":0,"11996":0,"11997":0,"11998":0,"11999":1,"12000":0,"12001":0,"12002":0,"12003":0,"12004":0,"12005":0,"12006":0,"12007":0,"12008":0,"12009":0,"12010":0,"12011":0,"12012":0,"12013":0,"12014":0,"12015":0,"12016":0,"12017":1,"12018":0,"12019":1,"12020":1,"12021":0,"12022":0,"12023":1,"12024":0,"12025":0,"12026":0,"12027":0,"12028":0,"12029":1,"12030":1,"12031":0,"12032":0,"12033":0,"12034":0,"12035":1,"12036":0,"12037":0,"12038":0,"12039":0,"12040":0,"12041":0,"12042":0,"12043":1,"12044":1,"12045":0,"12046":1,"12047":0,"12048":1,"12049":1,"12050":1,"12051":0,"12052":1,"12053":0,"12054":1,"12055":1,"12056":0,"12057":0,"12058":1,"12059":0,"12060":0,"12061":0,"12062":0,"12063":1,"12064":1,"12065":1,"12066":0,"12067":0,"12068":0,"12069":0,"12070":1,"12071":0,"12072":0,"12073":0,"12074":0,"12075":1,"12076":1,"12077":0,"12078":0,"12079":0,"12080":0,"12081":1,"12082":0,"12083":1,"12084":1,"12085":0,"12086":0,"12087":1,"12088":0,"12089":0,"12090":0,"12091":0,"12092":0,"12093":0,"12094":1,"12095":0,"12096":0,"12097":1,"12098":0,"12099":0,"12100":0,"12101":1,"12102":0,"12103":0,"12104":0,"12105":0,"12106":0,"12107":0,"12108":0,"12109":0,"12110":0,"12111":0,"12112":1,"12113":0,"12114":0,"12115":0,"12116":0,"12117":0,"12118":0,"12119":1,"12120":0,"12121":0,"12122":0,"12123":0,"12124":0,"12125":0,"12126":0,"12127":0,"12128":1,"12129":0,"12130":0,"12131":0,"12132":1,"12133":0,"12134":0,"12135":1,"12136":1,"12137":0,"12138":0,"12139":0,"12140":1,"12141":0,"12142":0,"12143":1,"12144":0,"12145":0,"12146":0,"12147":0,"12148":0,"12149":0,"12150":1,"12151":0,"12152":0,"12153":0,"12154":1,"12155":0,"12156":0,"12157":0,"12158":0,"12159":1,"12160":1,"12161":0,"12162":0,"12163":0,"12164":0,"12165":0,"12166":1,"12167":1,"12168":1,"12169":0,"12170":1,"12171":0,"12172":0,"12173":1,"12174":1,"12175":0,"12176":0,"12177":0,"12178":1,"12179":0,"12180":0,"12181":0,"12182":0,"12183":0,"12184":0,"12185":0,"12186":1,"12187":1,"12188":1,"12189":1,"12190":1,"12191":1,"12192":0,"12193":1,"12194":0,"12195":0,"12196":0,"12197":0,"12198":0,"12199":0,"12200":0,"12201":0,"12202":0,"12203":0,"12204":1,"12205":1,"12206":0,"12207":0,"12208":0,"12209":1,"12210":0,"12211":0,"12212":0,"12213":0,"12214":0,"12215":0,"12216":1,"12217":1,"12218":0,"12219":0,"12220":0,"12221":0,"12222":0,"12223":0,"12224":0,"12225":1,"12226":0,"12227":0,"12228":1,"12229":0,"12230":0,"12231":0,"12232":0,"12233":1,"12234":0,"12235":0,"12236":0,"12237":1,"12238":0,"12239":1,"12240":0,"12241":0,"12242":0,"12243":1,"12244":1,"12245":0,"12246":0,"12247":0,"12248":0,"12249":0,"12250":0,"12251":0,"12252":0,"12253":0,"12254":0,"12255":0,"12256":0,"12257":1,"12258":0,"12259":0,"12260":1,"12261":0,"12262":1,"12263":0,"12264":0,"12265":0,"12266":0,"12267":1,"12268":0,"12269":0,"12270":1,"12271":0,"12272":0,"12273":1,"12274":0,"12275":1,"12276":0,"12277":0,"12278":0,"12279":0,"12280":0,"12281":1,"12282":0,"12283":0,"12284":1,"12285":0,"12286":0,"12287":1,"12288":0,"12289":1,"12290":0,"12291":1,"12292":0,"12293":0,"12294":0,"12295":0,"12296":0,"12297":0,"12298":0,"12299":0,"12300":0,"12301":1,"12302":0,"12303":0,"12304":0,"12305":0,"12306":0,"12307":0,"12308":1,"12309":0,"12310":1,"12311":0,"12312":1,"12313":0,"12314":0,"12315":0,"12316":0,"12317":1,"12318":0,"12319":0,"12320":0,"12321":0,"12322":1,"12323":1,"12324":0,"12325":0,"12326":0,"12327":0,"12328":1,"12329":1,"12330":0,"12331":0,"12332":0,"12333":0,"12334":0,"12335":0,"12336":0,"12337":0,"12338":0,"12339":1,"12340":1,"12341":0,"12342":0,"12343":1,"12344":0,"12345":0,"12346":0,"12347":0,"12348":0,"12349":0,"12350":0,"12351":1,"12352":0,"12353":0,"12354":0,"12355":1,"12356":0,"12357":0,"12358":1,"12359":1,"12360":0,"12361":0,"12362":1,"12363":0,"12364":0,"12365":1,"12366":0,"12367":0,"12368":1,"12369":1,"12370":1,"12371":1,"12372":0,"12373":0,"12374":0,"12375":0,"12376":0,"12377":0,"12378":0,"12379":1,"12380":0,"12381":0,"12382":0,"12383":0,"12384":0,"12385":1,"12386":0,"12387":0,"12388":0,"12389":0,"12390":0,"12391":1,"12392":1,"12393":0,"12394":0,"12395":1,"12396":0,"12397":1,"12398":0,"12399":0,"12400":0,"12401":0,"12402":1,"12403":0,"12404":0,"12405":0,"12406":0,"12407":0,"12408":0,"12409":0,"12410":0,"12411":0,"12412":0,"12413":0,"12414":0,"12415":0,"12416":0,"12417":0,"12418":0,"12419":0,"12420":1,"12421":1,"12422":0,"12423":0,"12424":0,"12425":0,"12426":0,"12427":1,"12428":0,"12429":1,"12430":0,"12431":0,"12432":0,"12433":0,"12434":0,"12435":0,"12436":1,"12437":0,"12438":0,"12439":0,"12440":0,"12441":0,"12442":1,"12443":1,"12444":0,"12445":1,"12446":0,"12447":0,"12448":0,"12449":0,"12450":0,"12451":0,"12452":1,"12453":1,"12454":1,"12455":1,"12456":0,"12457":0,"12458":0,"12459":0,"12460":0,"12461":0,"12462":0,"12463":0,"12464":1,"12465":0,"12466":0,"12467":1,"12468":1,"12469":0,"12470":1,"12471":1,"12472":1,"12473":0,"12474":0,"12475":0,"12476":0,"12477":0,"12478":1,"12479":0,"12480":0,"12481":0,"12482":0,"12483":1,"12484":0,"12485":0,"12486":0,"12487":0,"12488":0,"12489":0,"12490":0,"12491":0,"12492":0,"12493":1,"12494":0,"12495":0,"12496":0,"12497":1,"12498":1,"12499":0,"12500":0,"12501":0,"12502":1,"12503":0,"12504":0,"12505":0,"12506":1,"12507":0,"12508":1,"12509":1,"12510":0,"12511":1,"12512":0,"12513":0,"12514":0,"12515":0,"12516":1,"12517":0,"12518":0,"12519":0,"12520":1,"12521":0,"12522":0,"12523":0,"12524":1,"12525":0,"12526":0,"12527":0,"12528":0,"12529":0,"12530":0,"12531":0,"12532":1,"12533":0,"12534":0,"12535":0,"12536":1,"12537":0,"12538":0,"12539":0,"12540":1,"12541":0,"12542":1,"12543":0,"12544":0,"12545":0,"12546":0,"12547":0,"12548":1,"12549":0,"12550":1,"12551":0,"12552":1,"12553":1,"12554":0,"12555":0,"12556":0,"12557":0,"12558":0,"12559":1,"12560":0,"12561":1,"12562":0,"12563":0,"12564":1,"12565":0,"12566":1,"12567":0,"12568":0,"12569":1,"12570":0,"12571":0,"12572":1,"12573":1,"12574":1,"12575":1,"12576":0,"12577":0,"12578":0,"12579":0,"12580":0,"12581":0,"12582":0,"12583":1,"12584":0,"12585":0,"12586":1,"12587":0,"12588":1,"12589":0,"12590":0,"12591":0,"12592":0,"12593":0,"12594":0,"12595":0,"12596":0,"12597":0,"12598":0,"12599":1,"12600":0,"12601":0,"12602":0,"12603":0,"12604":1,"12605":0,"12606":1,"12607":0,"12608":0,"12609":0,"12610":1,"12611":0,"12612":0,"12613":1,"12614":1,"12615":0,"12616":0,"12617":1,"12618":1,"12619":0,"12620":0,"12621":0,"12622":0,"12623":1,"12624":0,"12625":1,"12626":1,"12627":0,"12628":0,"12629":1,"12630":0,"12631":0,"12632":1,"12633":1,"12634":0,"12635":0,"12636":0,"12637":1,"12638":1,"12639":0,"12640":0,"12641":1,"12642":0,"12643":1,"12644":1,"12645":0,"12646":0,"12647":0,"12648":0,"12649":1,"12650":0,"12651":0,"12652":0,"12653":0,"12654":1,"12655":0,"12656":0,"12657":1,"12658":0,"12659":0,"12660":1,"12661":0,"12662":1,"12663":0,"12664":0,"12665":0,"12666":0,"12667":1,"12668":1,"12669":0,"12670":1,"12671":0,"12672":1,"12673":0,"12674":0,"12675":1,"12676":0,"12677":1,"12678":1,"12679":1,"12680":0,"12681":0,"12682":0,"12683":0,"12684":0,"12685":0,"12686":0,"12687":1,"12688":0,"12689":0,"12690":0,"12691":0,"12692":0,"12693":0,"12694":0,"12695":0,"12696":0,"12697":0,"12698":0,"12699":1,"12700":1,"12701":1,"12702":0,"12703":0,"12704":0,"12705":0,"12706":1,"12707":0,"12708":0,"12709":0,"12710":0,"12711":0,"12712":0,"12713":1,"12714":0,"12715":0,"12716":0,"12717":0,"12718":0,"12719":0,"12720":0,"12721":1,"12722":1,"12723":0,"12724":0,"12725":0,"12726":1,"12727":0,"12728":1,"12729":0,"12730":0,"12731":0,"12732":0,"12733":1,"12734":1,"12735":0,"12736":0,"12737":0,"12738":0,"12739":1,"12740":0,"12741":0,"12742":0,"12743":0,"12744":1,"12745":0,"12746":0,"12747":0,"12748":0,"12749":0,"12750":0,"12751":0,"12752":1,"12753":1,"12754":0,"12755":0,"12756":1,"12757":0,"12758":1,"12759":0,"12760":0,"12761":1,"12762":0,"12763":0,"12764":0,"12765":0,"12766":0,"12767":0,"12768":1,"12769":1,"12770":0,"12771":1,"12772":0,"12773":0,"12774":0,"12775":0,"12776":0,"12777":0,"12778":0,"12779":1,"12780":0,"12781":0,"12782":0,"12783":1,"12784":1,"12785":0,"12786":0,"12787":0,"12788":0,"12789":0,"12790":1,"12791":0,"12792":0,"12793":0,"12794":0,"12795":0,"12796":0,"12797":0,"12798":0,"12799":0,"12800":0,"12801":0,"12802":0,"12803":0,"12804":0,"12805":0,"12806":0,"12807":1,"12808":0,"12809":0,"12810":0,"12811":0,"12812":0,"12813":0,"12814":0,"12815":0,"12816":1,"12817":1,"12818":0,"12819":0,"12820":1,"12821":1,"12822":0,"12823":0,"12824":0,"12825":0,"12826":0,"12827":0,"12828":0,"12829":1,"12830":0,"12831":0,"12832":1,"12833":0,"12834":0,"12835":0,"12836":0,"12837":0,"12838":0,"12839":0,"12840":1,"12841":0,"12842":0,"12843":0,"12844":1,"12845":0,"12846":1,"12847":0,"12848":1,"12849":0,"12850":1,"12851":0,"12852":0,"12853":1,"12854":1,"12855":0,"12856":0,"12857":0,"12858":1,"12859":1,"12860":0,"12861":0,"12862":0,"12863":0,"12864":0,"12865":1,"12866":0,"12867":1,"12868":0,"12869":0,"12870":0,"12871":0,"12872":1,"12873":0,"12874":0,"12875":0,"12876":0,"12877":0,"12878":0,"12879":0,"12880":1,"12881":0,"12882":0,"12883":0,"12884":0,"12885":0,"12886":0,"12887":0,"12888":0,"12889":0,"12890":0,"12891":0,"12892":0,"12893":0,"12894":1,"12895":0,"12896":0,"12897":1,"12898":0,"12899":1,"12900":1,"12901":0,"12902":0,"12903":1,"12904":0,"12905":0,"12906":0,"12907":1,"12908":0,"12909":0,"12910":1,"12911":0,"12912":0,"12913":0,"12914":0,"12915":0,"12916":1,"12917":0,"12918":0,"12919":0,"12920":0,"12921":1,"12922":0,"12923":0,"12924":0,"12925":1,"12926":0,"12927":0,"12928":0,"12929":0,"12930":0,"12931":1,"12932":0,"12933":0,"12934":1,"12935":0,"12936":1,"12937":1,"12938":1,"12939":0,"12940":0,"12941":0,"12942":1,"12943":0,"12944":0,"12945":1,"12946":1,"12947":0,"12948":1,"12949":0,"12950":0,"12951":1,"12952":0,"12953":0,"12954":0,"12955":0,"12956":0,"12957":1,"12958":1,"12959":1,"12960":1,"12961":0,"12962":0,"12963":0,"12964":0,"12965":0,"12966":0,"12967":0,"12968":0,"12969":0,"12970":0,"12971":0,"12972":0,"12973":0,"12974":0,"12975":0,"12976":0,"12977":0,"12978":0,"12979":0,"12980":0,"12981":1,"12982":1,"12983":0,"12984":0,"12985":0,"12986":1,"12987":0,"12988":0,"12989":0,"12990":1,"12991":0,"12992":0,"12993":1,"12994":0,"12995":0,"12996":0,"12997":0,"12998":0,"12999":0,"13000":0,"13001":0,"13002":1,"13003":0,"13004":0,"13005":0,"13006":0,"13007":0,"13008":0,"13009":1,"13010":0,"13011":1,"13012":0,"13013":1,"13014":0,"13015":0,"13016":0,"13017":0,"13018":1,"13019":0,"13020":0,"13021":0,"13022":0,"13023":0,"13024":0,"13025":0,"13026":0,"13027":1,"13028":0,"13029":0,"13030":1,"13031":0,"13032":0,"13033":0,"13034":0,"13035":0,"13036":0,"13037":0,"13038":0,"13039":0,"13040":1,"13041":0,"13042":0,"13043":1,"13044":0,"13045":1,"13046":0,"13047":0,"13048":0,"13049":0,"13050":0,"13051":0,"13052":0,"13053":0,"13054":1,"13055":1,"13056":0,"13057":0,"13058":0,"13059":1,"13060":0,"13061":1,"13062":0,"13063":0,"13064":0,"13065":1,"13066":0,"13067":0,"13068":0,"13069":1,"13070":0,"13071":0,"13072":1,"13073":1,"13074":0,"13075":1,"13076":0,"13077":1,"13078":1,"13079":1,"13080":0,"13081":0,"13082":0,"13083":0,"13084":1,"13085":0,"13086":0,"13087":1,"13088":0,"13089":0,"13090":0,"13091":0,"13092":0,"13093":0,"13094":0,"13095":1,"13096":1,"13097":0,"13098":0,"13099":0,"13100":1,"13101":0,"13102":0,"13103":0,"13104":1,"13105":0,"13106":0,"13107":1,"13108":0,"13109":0,"13110":0,"13111":0,"13112":0,"13113":0,"13114":0,"13115":0,"13116":0,"13117":0,"13118":0,"13119":1,"13120":0,"13121":0,"13122":0,"13123":0,"13124":0,"13125":0,"13126":0,"13127":0,"13128":0,"13129":0,"13130":0,"13131":0,"13132":0,"13133":0,"13134":1,"13135":0,"13136":0,"13137":0,"13138":0,"13139":1,"13140":1,"13141":1,"13142":0,"13143":0,"13144":0,"13145":0,"13146":0,"13147":0,"13148":1,"13149":0,"13150":1,"13151":1,"13152":0,"13153":0,"13154":0,"13155":0,"13156":1,"13157":0,"13158":1,"13159":0,"13160":0,"13161":0,"13162":0,"13163":0,"13164":0,"13165":0,"13166":1,"13167":0,"13168":0,"13169":1,"13170":1,"13171":0,"13172":0,"13173":0,"13174":1,"13175":0,"13176":1,"13177":0,"13178":1,"13179":0,"13180":0,"13181":0,"13182":1,"13183":0,"13184":1,"13185":1,"13186":1,"13187":0,"13188":1,"13189":0,"13190":1,"13191":0,"13192":0,"13193":1,"13194":0,"13195":1,"13196":1,"13197":0,"13198":0,"13199":0,"13200":0,"13201":0,"13202":0,"13203":1,"13204":0,"13205":0,"13206":0,"13207":0,"13208":0,"13209":1,"13210":0,"13211":0,"13212":0,"13213":1,"13214":0,"13215":0,"13216":0,"13217":0,"13218":0,"13219":0,"13220":1,"13221":0,"13222":0,"13223":1,"13224":1,"13225":1,"13226":0,"13227":0,"13228":0,"13229":0,"13230":1,"13231":0,"13232":0,"13233":0,"13234":0,"13235":1,"13236":0,"13237":0,"13238":0,"13239":1,"13240":1,"13241":0,"13242":0,"13243":0,"13244":0,"13245":1,"13246":0,"13247":0,"13248":0,"13249":0,"13250":0,"13251":0,"13252":0,"13253":0,"13254":0,"13255":0,"13256":0,"13257":0,"13258":0,"13259":1,"13260":0,"13261":1,"13262":0,"13263":1,"13264":0,"13265":0,"13266":0,"13267":0,"13268":0,"13269":0,"13270":0,"13271":0,"13272":0,"13273":0,"13274":0,"13275":0,"13276":0,"13277":1,"13278":0,"13279":1,"13280":0,"13281":0,"13282":0,"13283":0,"13284":0,"13285":0,"13286":0,"13287":0,"13288":0,"13289":0,"13290":1,"13291":0,"13292":1,"13293":0,"13294":0,"13295":0,"13296":1,"13297":0,"13298":0,"13299":0,"13300":0,"13301":0,"13302":0,"13303":0,"13304":0,"13305":0,"13306":0,"13307":0,"13308":0,"13309":0,"13310":0,"13311":0,"13312":0,"13313":0,"13314":0,"13315":0,"13316":1,"13317":0,"13318":0,"13319":1,"13320":0,"13321":0,"13322":1,"13323":0,"13324":0,"13325":0,"13326":0,"13327":1,"13328":0,"13329":0,"13330":0,"13331":0,"13332":0,"13333":0,"13334":0,"13335":0,"13336":0,"13337":0,"13338":1,"13339":0,"13340":0,"13341":1,"13342":0,"13343":0,"13344":0,"13345":0,"13346":1,"13347":1,"13348":0,"13349":0,"13350":0,"13351":0,"13352":0,"13353":0,"13354":0,"13355":0,"13356":0,"13357":1,"13358":1,"13359":0,"13360":1,"13361":0,"13362":0,"13363":0,"13364":0,"13365":0,"13366":0,"13367":0,"13368":1,"13369":0,"13370":0,"13371":1,"13372":1,"13373":0,"13374":0,"13375":1,"13376":1,"13377":0,"13378":0,"13379":1,"13380":0,"13381":0,"13382":1,"13383":0,"13384":1,"13385":0,"13386":0,"13387":0,"13388":0,"13389":0,"13390":0,"13391":0,"13392":0,"13393":0,"13394":0,"13395":0,"13396":1,"13397":1,"13398":1,"13399":1,"13400":0,"13401":0,"13402":0,"13403":0,"13404":0,"13405":1,"13406":0,"13407":0,"13408":0,"13409":1,"13410":0,"13411":0,"13412":0,"13413":0,"13414":0,"13415":0,"13416":0,"13417":0,"13418":0,"13419":1,"13420":0,"13421":0,"13422":0,"13423":0,"13424":0,"13425":0,"13426":0,"13427":1,"13428":0,"13429":0,"13430":0,"13431":0,"13432":1,"13433":0,"13434":1,"13435":1,"13436":1,"13437":0,"13438":0,"13439":0,"13440":0,"13441":0,"13442":0,"13443":0,"13444":1,"13445":1,"13446":0,"13447":0,"13448":0,"13449":0,"13450":0,"13451":1,"13452":0,"13453":1,"13454":1,"13455":1,"13456":0,"13457":0,"13458":0,"13459":0,"13460":0,"13461":0,"13462":1,"13463":0,"13464":0,"13465":0,"13466":0,"13467":0,"13468":0,"13469":1,"13470":0,"13471":0,"13472":0,"13473":1,"13474":0,"13475":1,"13476":0,"13477":0,"13478":0,"13479":0,"13480":1,"13481":0,"13482":0,"13483":0,"13484":0,"13485":0,"13486":0,"13487":0,"13488":0,"13489":1,"13490":0,"13491":1,"13492":1,"13493":0,"13494":0,"13495":1,"13496":0,"13497":0,"13498":0,"13499":1,"13500":1,"13501":0,"13502":0,"13503":1,"13504":0,"13505":0,"13506":0,"13507":1,"13508":0,"13509":0,"13510":1,"13511":1,"13512":0,"13513":0,"13514":0,"13515":0,"13516":0,"13517":0,"13518":0,"13519":0,"13520":1,"13521":0,"13522":0,"13523":0,"13524":0,"13525":0,"13526":0,"13527":0,"13528":0,"13529":1,"13530":0,"13531":0,"13532":0,"13533":1,"13534":0,"13535":0,"13536":0,"13537":0,"13538":0,"13539":0,"13540":1,"13541":0,"13542":0,"13543":0,"13544":0,"13545":1,"13546":0,"13547":0,"13548":0,"13549":0,"13550":0,"13551":1,"13552":0,"13553":1,"13554":1,"13555":0,"13556":0,"13557":0,"13558":0,"13559":0,"13560":0,"13561":1,"13562":0,"13563":0,"13564":0,"13565":0,"13566":1,"13567":0,"13568":1,"13569":1,"13570":1,"13571":1,"13572":0,"13573":0,"13574":1,"13575":1,"13576":1,"13577":0,"13578":0,"13579":1,"13580":0,"13581":0,"13582":1,"13583":1,"13584":1,"13585":0,"13586":0,"13587":0,"13588":0,"13589":0,"13590":0,"13591":0,"13592":1,"13593":0,"13594":0,"13595":1,"13596":0,"13597":0,"13598":0,"13599":0,"13600":1,"13601":1,"13602":0,"13603":1,"13604":1,"13605":0,"13606":0,"13607":1,"13608":0,"13609":0,"13610":0,"13611":1,"13612":0,"13613":0,"13614":0,"13615":0,"13616":0,"13617":0,"13618":0,"13619":0,"13620":0,"13621":1,"13622":0,"13623":0,"13624":0,"13625":1,"13626":0,"13627":1,"13628":0,"13629":0,"13630":0,"13631":1,"13632":0,"13633":0,"13634":0,"13635":1,"13636":0,"13637":0,"13638":0,"13639":1,"13640":0,"13641":0,"13642":0,"13643":0,"13644":0,"13645":1,"13646":0,"13647":0,"13648":1,"13649":0,"13650":0,"13651":0,"13652":1,"13653":1,"13654":0,"13655":1,"13656":0,"13657":0,"13658":0,"13659":0,"13660":0,"13661":0,"13662":0,"13663":0,"13664":0,"13665":0,"13666":0,"13667":0,"13668":1,"13669":0,"13670":0,"13671":0,"13672":0,"13673":0,"13674":0,"13675":0,"13676":0,"13677":0,"13678":1,"13679":0,"13680":0,"13681":0,"13682":1,"13683":0,"13684":0,"13685":0,"13686":1,"13687":1,"13688":0,"13689":0,"13690":0,"13691":1,"13692":1,"13693":0,"13694":0,"13695":1,"13696":0,"13697":1,"13698":0,"13699":0,"13700":1,"13701":0,"13702":0,"13703":0,"13704":0,"13705":0,"13706":0,"13707":0,"13708":1,"13709":0,"13710":0,"13711":0,"13712":1,"13713":0,"13714":1,"13715":1,"13716":0,"13717":1,"13718":0,"13719":0,"13720":0,"13721":0,"13722":1,"13723":0,"13724":0,"13725":1,"13726":0,"13727":1,"13728":0,"13729":0,"13730":0,"13731":0,"13732":1,"13733":0,"13734":0,"13735":1,"13736":0,"13737":0,"13738":0,"13739":0,"13740":0,"13741":0,"13742":0,"13743":0,"13744":0,"13745":0,"13746":1,"13747":0,"13748":0,"13749":0,"13750":0,"13751":0,"13752":1,"13753":0,"13754":0,"13755":1,"13756":0,"13757":0,"13758":0,"13759":0,"13760":0,"13761":0,"13762":0,"13763":0,"13764":0,"13765":1,"13766":1,"13767":1,"13768":0,"13769":0,"13770":0,"13771":0,"13772":1,"13773":0,"13774":1,"13775":0,"13776":0,"13777":1,"13778":1,"13779":0,"13780":1,"13781":0,"13782":0,"13783":1,"13784":0,"13785":0,"13786":0,"13787":0,"13788":0,"13789":0,"13790":0,"13791":0,"13792":0,"13793":0,"13794":0,"13795":1,"13796":0,"13797":0,"13798":0,"13799":0,"13800":0,"13801":0,"13802":0,"13803":0,"13804":0,"13805":1,"13806":0,"13807":0,"13808":0,"13809":0,"13810":0,"13811":1,"13812":0,"13813":0,"13814":0,"13815":1,"13816":0,"13817":0,"13818":1,"13819":0,"13820":1,"13821":0,"13822":0,"13823":1,"13824":1,"13825":1,"13826":0,"13827":0,"13828":0,"13829":0,"13830":1,"13831":0,"13832":0,"13833":0,"13834":0,"13835":0,"13836":0,"13837":0,"13838":0,"13839":1,"13840":1,"13841":1,"13842":0,"13843":1,"13844":0,"13845":0,"13846":0,"13847":0,"13848":0,"13849":1,"13850":1,"13851":0,"13852":0,"13853":0,"13854":0,"13855":0,"13856":1,"13857":0,"13858":0,"13859":1,"13860":0,"13861":0,"13862":0,"13863":1,"13864":0,"13865":0,"13866":0,"13867":0,"13868":0,"13869":1,"13870":0,"13871":0,"13872":1,"13873":0,"13874":0,"13875":1,"13876":0,"13877":0,"13878":1,"13879":0,"13880":0,"13881":0,"13882":0,"13883":0,"13884":1,"13885":0,"13886":0,"13887":0,"13888":0,"13889":1,"13890":1,"13891":0,"13892":0,"13893":1,"13894":1,"13895":1,"13896":0,"13897":0,"13898":1,"13899":0,"13900":0,"13901":1,"13902":0,"13903":1,"13904":0,"13905":0,"13906":0,"13907":0,"13908":0,"13909":1,"13910":0,"13911":0,"13912":1,"13913":1,"13914":1,"13915":0,"13916":0,"13917":0,"13918":0,"13919":0,"13920":0,"13921":1,"13922":0,"13923":0,"13924":1,"13925":0,"13926":1,"13927":0,"13928":0,"13929":1,"13930":1,"13931":0,"13932":0,"13933":0,"13934":0,"13935":0,"13936":1,"13937":0,"13938":1,"13939":0,"13940":0,"13941":1,"13942":0,"13943":0,"13944":1,"13945":1,"13946":0,"13947":1,"13948":0,"13949":0,"13950":0,"13951":1,"13952":0,"13953":0,"13954":0,"13955":0,"13956":0,"13957":0,"13958":1,"13959":0,"13960":0,"13961":0,"13962":0,"13963":1,"13964":0,"13965":0,"13966":0,"13967":0,"13968":0,"13969":0,"13970":0,"13971":1,"13972":0,"13973":0,"13974":0,"13975":0,"13976":1,"13977":0,"13978":0,"13979":1,"13980":0,"13981":0,"13982":0,"13983":0,"13984":0,"13985":0,"13986":0,"13987":0,"13988":0,"13989":0,"13990":0,"13991":0,"13992":0,"13993":0,"13994":0,"13995":0,"13996":0,"13997":0,"13998":1,"13999":0,"14000":0,"14001":0,"14002":1,"14003":1,"14004":0,"14005":0,"14006":0,"14007":0,"14008":0,"14009":0,"14010":1,"14011":1,"14012":1,"14013":1,"14014":1,"14015":0,"14016":0,"14017":0,"14018":0,"14019":0,"14020":0,"14021":0,"14022":0,"14023":0,"14024":0,"14025":0,"14026":1,"14027":0,"14028":0,"14029":1,"14030":0,"14031":0,"14032":0,"14033":0,"14034":0,"14035":1,"14036":1,"14037":0,"14038":1,"14039":1,"14040":0,"14041":0,"14042":0,"14043":1,"14044":0,"14045":0,"14046":0,"14047":0,"14048":1,"14049":1,"14050":0,"14051":0,"14052":1,"14053":0,"14054":0,"14055":1,"14056":0,"14057":0,"14058":1,"14059":0,"14060":0,"14061":1,"14062":1,"14063":1,"14064":0,"14065":0,"14066":0,"14067":0,"14068":1,"14069":0,"14070":1,"14071":0,"14072":1,"14073":0,"14074":1,"14075":0,"14076":0,"14077":1,"14078":0,"14079":1,"14080":1,"14081":0,"14082":0,"14083":0,"14084":0,"14085":0,"14086":0,"14087":0,"14088":0,"14089":0,"14090":0,"14091":1,"14092":1,"14093":0,"14094":0,"14095":0,"14096":0,"14097":0,"14098":0,"14099":1,"14100":0,"14101":0,"14102":0,"14103":0,"14104":0,"14105":0,"14106":1,"14107":1,"14108":0,"14109":0,"14110":0,"14111":0,"14112":0,"14113":0,"14114":1,"14115":1,"14116":1,"14117":0,"14118":1,"14119":0,"14120":1,"14121":0,"14122":1,"14123":0,"14124":1,"14125":0,"14126":1,"14127":0,"14128":1,"14129":0,"14130":0,"14131":0,"14132":0,"14133":0,"14134":0,"14135":1,"14136":0,"14137":0,"14138":1,"14139":0,"14140":0,"14141":1,"14142":0,"14143":1,"14144":0,"14145":1,"14146":0,"14147":0,"14148":0,"14149":0,"14150":1,"14151":0,"14152":0,"14153":0,"14154":0,"14155":0,"14156":0,"14157":0,"14158":0,"14159":0,"14160":0,"14161":1,"14162":1,"14163":0,"14164":0,"14165":0,"14166":0,"14167":0,"14168":0,"14169":0,"14170":0,"14171":1,"14172":0,"14173":0,"14174":0,"14175":0,"14176":0,"14177":0,"14178":0,"14179":0,"14180":0,"14181":1,"14182":0,"14183":1,"14184":0,"14185":0,"14186":0,"14187":0,"14188":0,"14189":0,"14190":0,"14191":0,"14192":0,"14193":1,"14194":0,"14195":1,"14196":0,"14197":0,"14198":0,"14199":0,"14200":0,"14201":0,"14202":0,"14203":0,"14204":1,"14205":1,"14206":0,"14207":0,"14208":0,"14209":0,"14210":0,"14211":0,"14212":0,"14213":0,"14214":0,"14215":0,"14216":0,"14217":1,"14218":1,"14219":0,"14220":0,"14221":0,"14222":0,"14223":0,"14224":0,"14225":0,"14226":0,"14227":0,"14228":0,"14229":0,"14230":0,"14231":0,"14232":0,"14233":0,"14234":0,"14235":0,"14236":0,"14237":0,"14238":0,"14239":0,"14240":1,"14241":0,"14242":0,"14243":0,"14244":1,"14245":0,"14246":0,"14247":0,"14248":1,"14249":1,"14250":1,"14251":0,"14252":0,"14253":0,"14254":1,"14255":1,"14256":0,"14257":1,"14258":0,"14259":0,"14260":1,"14261":0,"14262":0,"14263":0,"14264":0,"14265":1,"14266":0,"14267":0,"14268":0,"14269":1,"14270":1,"14271":0,"14272":0,"14273":1,"14274":0,"14275":0,"14276":0,"14277":1,"14278":0,"14279":0,"14280":0,"14281":1,"14282":0,"14283":1,"14284":0,"14285":1,"14286":0,"14287":1,"14288":0,"14289":0,"14290":0,"14291":0,"14292":1,"14293":0,"14294":0,"14295":1,"14296":0,"14297":0,"14298":1,"14299":1,"14300":0,"14301":1,"14302":1,"14303":0,"14304":1,"14305":0,"14306":0,"14307":0,"14308":0,"14309":1,"14310":0,"14311":0,"14312":0,"14313":0,"14314":1,"14315":0,"14316":0,"14317":1,"14318":0,"14319":0,"14320":1,"14321":0,"14322":0,"14323":0,"14324":0,"14325":0,"14326":1,"14327":0,"14328":0,"14329":0,"14330":0,"14331":0,"14332":1,"14333":1,"14334":0,"14335":0,"14336":1,"14337":0,"14338":0,"14339":0,"14340":0,"14341":0,"14342":0,"14343":0,"14344":0,"14345":1,"14346":0,"14347":1,"14348":1,"14349":0,"14350":1,"14351":1,"14352":0,"14353":0,"14354":0,"14355":0,"14356":0,"14357":0,"14358":0,"14359":0,"14360":1,"14361":0,"14362":0,"14363":0,"14364":0,"14365":1,"14366":0,"14367":0,"14368":0,"14369":1,"14370":0,"14371":0,"14372":0,"14373":0,"14374":0,"14375":0,"14376":1,"14377":0,"14378":1,"14379":0,"14380":0,"14381":0,"14382":1,"14383":0,"14384":0,"14385":0,"14386":0,"14387":1,"14388":0,"14389":0,"14390":0,"14391":1,"14392":1,"14393":0,"14394":0,"14395":0,"14396":0,"14397":0,"14398":0,"14399":0,"14400":0,"14401":0,"14402":0,"14403":1,"14404":0,"14405":1,"14406":0,"14407":0,"14408":0,"14409":0,"14410":0,"14411":0,"14412":0,"14413":0,"14414":1,"14415":0,"14416":0,"14417":1,"14418":1,"14419":0,"14420":0,"14421":1,"14422":0,"14423":1,"14424":0,"14425":0,"14426":0,"14427":1,"14428":0,"14429":1,"14430":1,"14431":0,"14432":0,"14433":0,"14434":0,"14435":0,"14436":0,"14437":0,"14438":0,"14439":0,"14440":0,"14441":0,"14442":1,"14443":0,"14444":0,"14445":0,"14446":0,"14447":1,"14448":0,"14449":0,"14450":1,"14451":0,"14452":0,"14453":0,"14454":0,"14455":1,"14456":0,"14457":0,"14458":1,"14459":0,"14460":1,"14461":0,"14462":0,"14463":0,"14464":0,"14465":0,"14466":1,"14467":0,"14468":0,"14469":0,"14470":0,"14471":1,"14472":0,"14473":1,"14474":0,"14475":0,"14476":0,"14477":0,"14478":0,"14479":0,"14480":0,"14481":1,"14482":0,"14483":0,"14484":1,"14485":1,"14486":1,"14487":1,"14488":0,"14489":0,"14490":0,"14491":0,"14492":1,"14493":0,"14494":0,"14495":0,"14496":1,"14497":0,"14498":1,"14499":0,"14500":0,"14501":1,"14502":0,"14503":1,"14504":1,"14505":0,"14506":0,"14507":0,"14508":0,"14509":0,"14510":1,"14511":0,"14512":0,"14513":0,"14514":1,"14515":0,"14516":0,"14517":1,"14518":0,"14519":0,"14520":1,"14521":0,"14522":0,"14523":1,"14524":1,"14525":0,"14526":1,"14527":1,"14528":1,"14529":0,"14530":0,"14531":1,"14532":1,"14533":0,"14534":0,"14535":0,"14536":0,"14537":0,"14538":0,"14539":0,"14540":0,"14541":1,"14542":1,"14543":1,"14544":0,"14545":0,"14546":0,"14547":0,"14548":1,"14549":0,"14550":0,"14551":0,"14552":0,"14553":0,"14554":0,"14555":0,"14556":0,"14557":0,"14558":0,"14559":0,"14560":1,"14561":0,"14562":0,"14563":0,"14564":0,"14565":0,"14566":1,"14567":1,"14568":0,"14569":0,"14570":1,"14571":0,"14572":0,"14573":0,"14574":0,"14575":1,"14576":0,"14577":0,"14578":0,"14579":1,"14580":0,"14581":0,"14582":0,"14583":0,"14584":1,"14585":0,"14586":0,"14587":0,"14588":0,"14589":0,"14590":0,"14591":0,"14592":1,"14593":1,"14594":1,"14595":0,"14596":0,"14597":0,"14598":0,"14599":0,"14600":0,"14601":0,"14602":1,"14603":0,"14604":0,"14605":0,"14606":0,"14607":0,"14608":0,"14609":0,"14610":0,"14611":1,"14612":0,"14613":1,"14614":0,"14615":1,"14616":0,"14617":0,"14618":0,"14619":0,"14620":1,"14621":0,"14622":0,"14623":0,"14624":1,"14625":1,"14626":0,"14627":0,"14628":0,"14629":0,"14630":1,"14631":0,"14632":0,"14633":0,"14634":0,"14635":0,"14636":0,"14637":1,"14638":1,"14639":0,"14640":0,"14641":0,"14642":0,"14643":0,"14644":0,"14645":0,"14646":0,"14647":0,"14648":1,"14649":0,"14650":1,"14651":1,"14652":0,"14653":0,"14654":1,"14655":0,"14656":0,"14657":1,"14658":1,"14659":0,"14660":1,"14661":0,"14662":0,"14663":1,"14664":0,"14665":1,"14666":1,"14667":0,"14668":0,"14669":0,"14670":0,"14671":1,"14672":0,"14673":0,"14674":0,"14675":1,"14676":0,"14677":0,"14678":0,"14679":0,"14680":0,"14681":0,"14682":0,"14683":0,"14684":0,"14685":1,"14686":0,"14687":0,"14688":1,"14689":0,"14690":0,"14691":1,"14692":0,"14693":0,"14694":0,"14695":1,"14696":0,"14697":0,"14698":1,"14699":1,"14700":0,"14701":0,"14702":0,"14703":0,"14704":0,"14705":1,"14706":1,"14707":0,"14708":0,"14709":0,"14710":0,"14711":0,"14712":0,"14713":0,"14714":1,"14715":0,"14716":0,"14717":0,"14718":0,"14719":0,"14720":0,"14721":1,"14722":0,"14723":0,"14724":0,"14725":1,"14726":0,"14727":1,"14728":0,"14729":0,"14730":0,"14731":1,"14732":0,"14733":0,"14734":0,"14735":0,"14736":1,"14737":0,"14738":0,"14739":0,"14740":1,"14741":0,"14742":0,"14743":0,"14744":0,"14745":1,"14746":0,"14747":0,"14748":0,"14749":0,"14750":0,"14751":0,"14752":1,"14753":0,"14754":1,"14755":1,"14756":1,"14757":0,"14758":0,"14759":0,"14760":0,"14761":0,"14762":0,"14763":0,"14764":0,"14765":0,"14766":0,"14767":0,"14768":1,"14769":0,"14770":0,"14771":0,"14772":1,"14773":0,"14774":1,"14775":1,"14776":0,"14777":0,"14778":0,"14779":0,"14780":0,"14781":0,"14782":0,"14783":0,"14784":1,"14785":0,"14786":1,"14787":0,"14788":1,"14789":1,"14790":0,"14791":0,"14792":0,"14793":0,"14794":1,"14795":0,"14796":1,"14797":0,"14798":1,"14799":1,"14800":0,"14801":1,"14802":0,"14803":0,"14804":0,"14805":0,"14806":1,"14807":0,"14808":0,"14809":0,"14810":1,"14811":0,"14812":0,"14813":0,"14814":1,"14815":0,"14816":0,"14817":0,"14818":0,"14819":0,"14820":1,"14821":0,"14822":0,"14823":0,"14824":0,"14825":0,"14826":0,"14827":0,"14828":0,"14829":0,"14830":0,"14831":0,"14832":0,"14833":1,"14834":0,"14835":0,"14836":0,"14837":0,"14838":0,"14839":0,"14840":0,"14841":1,"14842":0,"14843":1,"14844":1,"14845":0,"14846":0,"14847":0,"14848":0,"14849":0,"14850":0,"14851":0,"14852":0,"14853":0,"14854":1,"14855":0,"14856":1,"14857":1,"14858":0,"14859":0,"14860":0,"14861":1,"14862":0,"14863":0,"14864":0,"14865":1,"14866":1,"14867":1,"14868":0,"14869":0,"14870":0,"14871":1,"14872":0,"14873":0,"14874":0,"14875":0,"14876":0,"14877":0,"14878":0,"14879":0,"14880":0,"14881":1,"14882":0,"14883":0,"14884":1,"14885":1,"14886":0,"14887":0,"14888":1,"14889":0,"14890":0,"14891":0,"14892":0,"14893":0,"14894":0,"14895":0,"14896":0,"14897":0,"14898":0,"14899":0,"14900":1,"14901":0,"14902":0,"14903":0,"14904":0,"14905":0,"14906":0,"14907":0,"14908":0,"14909":0,"14910":0,"14911":1,"14912":0,"14913":0,"14914":0,"14915":0,"14916":0,"14917":1,"14918":0,"14919":0,"14920":0,"14921":0,"14922":1,"14923":0,"14924":0,"14925":0,"14926":0,"14927":0,"14928":0,"14929":0,"14930":0,"14931":0,"14932":0,"14933":0,"14934":0,"14935":1,"14936":0,"14937":1,"14938":0,"14939":1,"14940":0,"14941":0,"14942":0,"14943":0,"14944":1,"14945":0,"14946":0,"14947":0,"14948":1,"14949":0,"14950":0,"14951":0,"14952":0,"14953":0,"14954":0,"14955":0,"14956":0,"14957":0,"14958":1,"14959":0,"14960":0,"14961":0,"14962":0,"14963":0,"14964":0,"14965":0,"14966":0,"14967":0,"14968":0,"14969":0,"14970":0,"14971":0,"14972":0,"14973":0,"14974":0,"14975":0,"14976":0,"14977":0,"14978":0,"14979":0,"14980":1,"14981":0,"14982":0,"14983":1,"14984":0,"14985":0,"14986":0,"14987":0,"14988":0,"14989":0,"14990":1,"14991":1,"14992":1,"14993":0,"14994":0,"14995":1,"14996":0,"14997":0,"14998":0,"14999":0,"15000":0,"15001":1,"15002":1,"15003":0,"15004":1,"15005":1,"15006":0,"15007":0,"15008":0,"15009":0,"15010":0,"15011":0,"15012":0,"15013":0,"15014":1,"15015":1,"15016":0,"15017":0,"15018":0,"15019":0,"15020":1,"15021":0,"15022":0,"15023":0,"15024":0,"15025":0,"15026":0,"15027":0,"15028":0,"15029":0,"15030":1,"15031":0,"15032":0,"15033":0,"15034":0,"15035":0,"15036":0,"15037":1,"15038":0,"15039":1,"15040":1,"15041":0,"15042":0,"15043":1,"15044":0,"15045":1,"15046":0,"15047":1,"15048":0,"15049":1,"15050":0,"15051":0,"15052":0,"15053":0,"15054":0,"15055":0,"15056":0,"15057":1,"15058":0,"15059":0,"15060":1,"15061":1,"15062":0,"15063":1,"15064":0,"15065":1,"15066":0,"15067":1,"15068":0,"15069":1,"15070":1,"15071":0,"15072":0,"15073":0,"15074":0,"15075":0,"15076":0,"15077":1,"15078":0,"15079":0,"15080":0,"15081":0,"15082":0,"15083":0,"15084":0,"15085":0,"15086":0,"15087":1,"15088":0,"15089":0,"15090":0,"15091":1,"15092":0,"15093":0,"15094":0,"15095":1,"15096":0,"15097":0,"15098":0,"15099":1,"15100":0,"15101":0,"15102":0,"15103":0,"15104":0,"15105":1,"15106":0,"15107":0,"15108":0,"15109":0,"15110":0,"15111":0,"15112":0,"15113":0,"15114":0,"15115":0,"15116":1,"15117":1,"15118":0,"15119":0,"15120":0,"15121":0,"15122":0,"15123":0,"15124":0,"15125":0,"15126":0,"15127":0,"15128":1,"15129":1,"15130":0,"15131":0,"15132":0,"15133":1,"15134":1,"15135":0,"15136":0,"15137":0,"15138":0,"15139":1,"15140":1,"15141":1,"15142":0,"15143":0,"15144":0,"15145":1,"15146":0,"15147":0,"15148":0,"15149":1,"15150":1,"15151":0,"15152":1,"15153":1,"15154":0,"15155":0,"15156":0,"15157":0,"15158":1,"15159":1,"15160":0,"15161":0,"15162":0,"15163":0,"15164":0,"15165":1,"15166":0,"15167":0,"15168":1,"15169":0,"15170":0,"15171":0,"15172":0,"15173":1,"15174":0,"15175":0,"15176":1,"15177":0,"15178":0,"15179":0,"15180":0,"15181":0,"15182":1,"15183":0,"15184":0,"15185":1,"15186":0,"15187":1,"15188":0,"15189":1,"15190":0,"15191":0,"15192":0,"15193":0,"15194":0,"15195":0,"15196":0,"15197":0,"15198":1,"15199":0,"15200":0,"15201":0,"15202":0,"15203":1,"15204":0,"15205":0,"15206":0,"15207":0,"15208":0,"15209":1,"15210":0,"15211":1,"15212":0,"15213":0,"15214":1,"15215":1,"15216":0,"15217":0,"15218":1,"15219":0,"15220":0,"15221":0,"15222":0,"15223":0,"15224":0,"15225":1,"15226":0,"15227":0,"15228":0,"15229":1,"15230":0,"15231":1,"15232":1,"15233":0,"15234":0,"15235":0,"15236":0,"15237":0,"15238":0,"15239":0,"15240":0,"15241":0,"15242":0,"15243":0,"15244":0,"15245":0,"15246":0,"15247":0,"15248":1,"15249":0,"15250":0,"15251":0,"15252":1,"15253":1,"15254":0,"15255":0,"15256":1,"15257":0,"15258":1,"15259":1,"15260":0,"15261":1,"15262":0,"15263":1,"15264":1,"15265":0,"15266":0,"15267":0,"15268":0,"15269":1,"15270":1,"15271":0,"15272":0,"15273":0,"15274":0,"15275":0,"15276":0,"15277":0,"15278":1,"15279":0,"15280":0,"15281":0,"15282":0,"15283":1,"15284":0,"15285":0,"15286":1,"15287":1,"15288":0,"15289":0,"15290":1,"15291":1,"15292":0,"15293":0,"15294":0,"15295":1,"15296":0,"15297":0,"15298":0,"15299":1,"15300":0,"15301":0,"15302":0,"15303":1,"15304":0,"15305":1,"15306":1,"15307":1,"15308":0,"15309":0,"15310":1,"15311":0,"15312":0,"15313":1,"15314":0,"15315":0,"15316":0,"15317":1,"15318":1,"15319":0,"15320":1,"15321":1,"15322":1,"15323":0,"15324":0,"15325":0,"15326":0,"15327":0,"15328":1,"15329":1,"15330":0,"15331":1,"15332":0,"15333":0,"15334":1,"15335":0,"15336":0,"15337":0,"15338":0,"15339":0,"15340":0,"15341":0,"15342":0,"15343":0,"15344":0,"15345":1,"15346":0,"15347":0,"15348":0,"15349":0,"15350":0,"15351":1,"15352":0,"15353":1,"15354":0,"15355":0,"15356":0,"15357":0,"15358":1,"15359":0,"15360":0,"15361":0,"15362":0,"15363":1,"15364":0,"15365":0,"15366":0,"15367":0,"15368":0,"15369":0,"15370":0,"15371":0,"15372":0,"15373":0,"15374":0,"15375":0,"15376":0,"15377":1,"15378":1,"15379":0,"15380":0,"15381":0,"15382":0,"15383":0,"15384":0,"15385":1,"15386":1,"15387":0,"15388":0,"15389":0,"15390":0,"15391":1,"15392":0,"15393":1,"15394":0,"15395":0,"15396":1,"15397":0,"15398":1,"15399":0,"15400":0,"15401":0,"15402":0,"15403":0,"15404":0,"15405":0,"15406":0,"15407":0,"15408":1,"15409":0,"15410":0,"15411":1,"15412":1,"15413":0,"15414":1,"15415":0,"15416":1,"15417":0,"15418":0,"15419":0,"15420":0,"15421":0,"15422":0,"15423":0,"15424":0,"15425":0,"15426":0,"15427":0,"15428":0,"15429":0,"15430":0,"15431":0,"15432":1,"15433":1,"15434":0,"15435":1,"15436":0,"15437":1,"15438":0,"15439":0,"15440":0,"15441":0,"15442":0,"15443":0,"15444":0,"15445":0,"15446":0,"15447":1,"15448":0,"15449":0,"15450":1,"15451":0,"15452":0,"15453":0,"15454":0,"15455":0,"15456":0,"15457":0,"15458":0,"15459":0,"15460":0,"15461":1,"15462":0,"15463":1,"15464":1,"15465":0,"15466":0,"15467":1,"15468":0,"15469":0,"15470":1,"15471":0,"15472":0,"15473":0,"15474":0,"15475":0,"15476":0,"15477":1,"15478":0,"15479":0,"15480":0,"15481":0,"15482":0,"15483":0,"15484":0,"15485":0,"15486":0,"15487":0,"15488":1,"15489":0,"15490":0,"15491":0,"15492":0,"15493":0,"15494":1,"15495":0,"15496":0,"15497":0,"15498":0,"15499":0,"15500":0,"15501":1,"15502":0,"15503":0,"15504":0,"15505":0,"15506":0,"15507":0,"15508":0,"15509":0,"15510":0,"15511":0,"15512":1,"15513":1,"15514":0,"15515":1,"15516":1,"15517":1,"15518":0,"15519":0,"15520":0,"15521":0,"15522":0,"15523":0,"15524":0,"15525":1,"15526":1,"15527":0,"15528":0,"15529":0,"15530":0,"15531":1,"15532":1,"15533":0,"15534":0,"15535":0,"15536":1,"15537":1,"15538":0,"15539":1,"15540":0,"15541":0,"15542":1,"15543":0,"15544":0,"15545":0,"15546":0,"15547":0,"15548":1,"15549":0,"15550":0,"15551":0,"15552":0,"15553":0,"15554":1,"15555":1,"15556":0,"15557":0,"15558":0,"15559":0,"15560":0,"15561":0,"15562":0,"15563":0,"15564":1,"15565":0,"15566":0,"15567":0,"15568":0,"15569":0,"15570":0,"15571":0,"15572":0,"15573":0,"15574":0,"15575":1,"15576":1,"15577":1,"15578":1,"15579":0,"15580":1,"15581":1,"15582":0,"15583":1,"15584":1,"15585":0,"15586":1,"15587":0,"15588":0,"15589":0,"15590":0,"15591":0,"15592":0,"15593":1,"15594":0,"15595":1,"15596":0,"15597":0,"15598":0,"15599":0,"15600":0,"15601":0,"15602":1,"15603":0,"15604":1,"15605":0,"15606":0,"15607":0,"15608":1,"15609":0,"15610":0,"15611":0,"15612":0,"15613":0,"15614":0,"15615":1,"15616":0,"15617":1,"15618":0,"15619":0,"15620":1,"15621":0,"15622":0,"15623":0,"15624":0,"15625":0,"15626":1,"15627":0,"15628":1,"15629":0,"15630":0,"15631":0,"15632":1,"15633":1,"15634":1,"15635":0,"15636":0,"15637":0,"15638":0,"15639":0,"15640":0,"15641":0,"15642":0,"15643":0,"15644":1,"15645":0,"15646":0,"15647":1,"15648":0,"15649":1,"15650":0,"15651":0,"15652":1,"15653":0,"15654":0,"15655":0,"15656":1,"15657":0,"15658":0,"15659":0,"15660":0,"15661":0,"15662":0,"15663":1,"15664":0,"15665":1,"15666":0,"15667":1,"15668":0,"15669":0,"15670":0,"15671":1,"15672":0,"15673":0,"15674":0,"15675":0,"15676":0,"15677":0,"15678":1,"15679":0,"15680":0,"15681":1,"15682":0,"15683":0,"15684":1,"15685":0,"15686":0,"15687":0,"15688":0,"15689":1,"15690":0,"15691":0,"15692":0,"15693":1,"15694":0,"15695":0,"15696":0,"15697":1,"15698":0,"15699":0,"15700":0,"15701":1,"15702":0,"15703":1,"15704":1,"15705":0,"15706":0,"15707":0,"15708":1,"15709":1,"15710":0,"15711":0,"15712":0,"15713":0,"15714":0,"15715":0,"15716":0,"15717":1,"15718":0,"15719":0,"15720":0,"15721":0,"15722":0,"15723":0,"15724":0,"15725":0,"15726":0,"15727":0,"15728":0,"15729":1,"15730":1,"15731":0,"15732":0,"15733":0,"15734":0,"15735":0,"15736":1,"15737":0,"15738":0,"15739":0,"15740":0,"15741":0,"15742":1,"15743":0,"15744":0,"15745":1,"15746":0,"15747":0,"15748":0,"15749":0,"15750":0,"15751":0,"15752":0,"15753":0,"15754":0,"15755":0,"15756":0,"15757":0,"15758":1,"15759":0,"15760":0,"15761":0,"15762":0,"15763":0,"15764":1,"15765":1,"15766":0,"15767":1,"15768":0,"15769":0,"15770":0,"15771":0,"15772":1,"15773":0,"15774":0,"15775":1,"15776":0,"15777":0,"15778":0,"15779":0,"15780":0,"15781":0,"15782":0,"15783":1,"15784":0,"15785":0,"15786":0,"15787":0,"15788":0,"15789":0,"15790":0,"15791":0,"15792":0,"15793":0,"15794":1,"15795":0,"15796":1,"15797":1,"15798":0,"15799":0,"15800":1,"15801":1,"15802":0,"15803":0,"15804":0,"15805":1,"15806":0,"15807":0,"15808":0,"15809":0,"15810":1,"15811":1,"15812":1,"15813":0,"15814":0,"15815":0,"15816":0,"15817":0,"15818":0,"15819":0,"15820":0,"15821":0,"15822":0,"15823":0,"15824":0,"15825":0,"15826":1,"15827":0,"15828":0,"15829":1,"15830":0,"15831":0,"15832":0,"15833":0,"15834":0,"15835":0,"15836":0,"15837":0,"15838":0,"15839":0,"15840":0,"15841":0,"15842":1,"15843":1,"15844":0,"15845":0,"15846":0,"15847":0,"15848":1,"15849":1,"15850":0,"15851":0,"15852":0,"15853":0,"15854":1,"15855":0,"15856":0,"15857":0,"15858":0,"15859":0,"15860":0,"15861":0,"15862":0,"15863":0,"15864":0,"15865":0,"15866":0,"15867":0,"15868":0,"15869":0,"15870":0,"15871":1,"15872":0,"15873":0,"15874":0,"15875":0,"15876":0,"15877":1,"15878":0,"15879":0,"15880":0,"15881":0,"15882":0,"15883":0,"15884":0,"15885":1,"15886":0,"15887":0,"15888":0,"15889":0,"15890":0,"15891":1,"15892":0,"15893":0,"15894":1,"15895":1,"15896":0,"15897":1,"15898":0,"15899":0,"15900":0,"15901":0,"15902":0,"15903":1,"15904":1,"15905":1,"15906":0,"15907":0,"15908":0,"15909":0,"15910":0,"15911":1,"15912":0,"15913":0,"15914":0,"15915":0,"15916":0,"15917":0,"15918":1,"15919":0,"15920":0,"15921":1,"15922":0,"15923":1,"15924":0,"15925":1,"15926":1,"15927":0,"15928":0,"15929":0,"15930":1,"15931":1,"15932":0,"15933":1,"15934":1,"15935":0,"15936":0,"15937":1,"15938":0,"15939":0,"15940":1,"15941":0,"15942":1,"15943":0,"15944":0,"15945":1,"15946":0,"15947":1,"15948":1,"15949":0,"15950":1,"15951":0,"15952":1,"15953":0,"15954":0,"15955":0,"15956":0,"15957":0,"15958":1,"15959":1,"15960":0,"15961":1,"15962":0,"15963":0,"15964":0,"15965":1,"15966":1,"15967":1,"15968":1,"15969":0,"15970":1,"15971":1,"15972":0,"15973":1,"15974":0,"15975":1,"15976":1,"15977":0,"15978":0,"15979":1,"15980":0,"15981":0,"15982":0,"15983":0,"15984":0,"15985":1,"15986":0,"15987":0,"15988":0,"15989":0,"15990":0,"15991":1,"15992":0,"15993":0,"15994":0,"15995":0,"15996":0,"15997":0,"15998":0,"15999":0,"16000":0,"16001":0,"16002":0,"16003":1,"16004":0,"16005":0,"16006":0,"16007":0,"16008":1,"16009":0,"16010":1,"16011":0,"16012":0,"16013":1,"16014":1,"16015":0,"16016":0,"16017":0,"16018":1,"16019":0,"16020":0,"16021":0,"16022":0,"16023":1,"16024":0,"16025":0,"16026":0,"16027":0,"16028":1,"16029":0,"16030":0,"16031":0,"16032":0,"16033":0,"16034":0,"16035":0,"16036":1,"16037":0,"16038":0,"16039":0,"16040":1,"16041":0,"16042":0,"16043":0,"16044":0,"16045":1,"16046":0,"16047":0,"16048":0,"16049":1,"16050":0,"16051":0,"16052":0,"16053":0,"16054":0,"16055":0,"16056":1,"16057":0,"16058":0,"16059":0,"16060":1,"16061":1,"16062":0,"16063":1,"16064":1,"16065":0,"16066":0,"16067":1,"16068":0,"16069":0,"16070":0,"16071":1,"16072":1,"16073":0,"16074":1,"16075":0,"16076":1,"16077":0,"16078":0,"16079":1,"16080":1,"16081":0,"16082":0,"16083":0,"16084":0,"16085":0,"16086":0,"16087":0,"16088":0,"16089":0,"16090":0,"16091":0,"16092":0,"16093":1,"16094":0,"16095":1,"16096":0,"16097":0,"16098":0,"16099":0,"16100":1,"16101":0,"16102":0,"16103":1,"16104":1,"16105":1,"16106":0,"16107":0,"16108":0,"16109":0,"16110":0,"16111":1,"16112":1,"16113":0,"16114":0,"16115":1,"16116":0,"16117":0,"16118":0,"16119":0,"16120":1,"16121":0,"16122":0,"16123":0,"16124":1,"16125":0,"16126":0,"16127":0,"16128":1,"16129":0,"16130":1,"16131":1,"16132":0,"16133":0,"16134":0,"16135":0,"16136":1,"16137":0,"16138":0,"16139":0,"16140":0,"16141":0,"16142":0,"16143":0,"16144":0,"16145":1,"16146":0,"16147":0,"16148":1,"16149":0,"16150":0,"16151":1,"16152":0,"16153":0,"16154":0,"16155":0,"16156":0,"16157":0,"16158":0,"16159":0,"16160":0,"16161":0,"16162":0,"16163":1,"16164":0,"16165":0,"16166":0,"16167":1,"16168":1,"16169":0,"16170":1,"16171":0,"16172":1,"16173":0,"16174":0,"16175":0,"16176":1,"16177":0,"16178":0,"16179":1,"16180":0,"16181":0,"16182":1,"16183":0,"16184":1,"16185":0,"16186":0,"16187":0,"16188":0,"16189":0,"16190":1,"16191":1,"16192":1,"16193":0,"16194":0,"16195":0,"16196":0,"16197":0,"16198":0,"16199":0,"16200":1,"16201":0,"16202":1,"16203":0,"16204":0,"16205":0,"16206":1,"16207":0,"16208":1,"16209":0,"16210":1,"16211":1,"16212":1,"16213":1,"16214":0,"16215":0,"16216":0,"16217":0,"16218":0,"16219":0,"16220":0,"16221":0,"16222":0,"16223":0,"16224":1,"16225":0,"16226":1,"16227":0,"16228":0,"16229":0,"16230":0,"16231":0,"16232":0,"16233":1,"16234":0,"16235":0,"16236":0,"16237":1,"16238":0,"16239":1,"16240":1,"16241":1,"16242":0,"16243":0,"16244":0,"16245":0,"16246":0,"16247":0,"16248":0,"16249":1,"16250":0,"16251":0,"16252":0,"16253":1,"16254":0,"16255":0,"16256":0,"16257":1,"16258":1,"16259":0,"16260":0,"16261":0,"16262":1,"16263":0,"16264":0,"16265":0,"16266":0,"16267":0,"16268":1,"16269":0,"16270":0,"16271":0,"16272":1,"16273":0,"16274":0,"16275":0,"16276":1,"16277":0,"16278":0,"16279":1,"16280":0,"16281":0,"16282":0,"16283":0,"16284":0,"16285":1,"16286":0,"16287":0,"16288":0,"16289":0,"16290":0,"16291":0,"16292":1,"16293":0,"16294":0,"16295":1,"16296":0,"16297":0,"16298":0,"16299":0,"16300":1,"16301":1,"16302":0,"16303":1,"16304":1,"16305":0,"16306":0,"16307":0,"16308":0,"16309":1,"16310":0,"16311":0,"16312":1,"16313":1,"16314":0,"16315":0,"16316":0,"16317":0,"16318":1,"16319":0,"16320":0,"16321":0,"16322":0,"16323":0,"16324":1,"16325":1,"16326":1,"16327":0,"16328":1,"16329":0,"16330":1,"16331":1,"16332":0,"16333":0,"16334":0,"16335":1,"16336":1,"16337":1,"16338":1,"16339":0,"16340":0,"16341":1,"16342":0,"16343":0,"16344":0,"16345":0,"16346":0,"16347":0,"16348":0,"16349":0,"16350":0,"16351":0,"16352":1,"16353":1,"16354":1,"16355":1,"16356":0,"16357":0,"16358":1,"16359":1,"16360":0,"16361":0,"16362":0,"16363":1,"16364":1,"16365":0,"16366":1,"16367":0,"16368":0,"16369":1,"16370":0,"16371":0,"16372":1,"16373":1,"16374":0,"16375":1,"16376":0,"16377":0,"16378":0,"16379":0,"16380":0,"16381":0,"16382":0,"16383":0,"16384":0,"16385":0,"16386":0,"16387":0,"16388":0,"16389":0,"16390":0,"16391":0,"16392":0,"16393":0,"16394":0,"16395":0,"16396":0,"16397":1,"16398":1,"16399":1,"16400":0,"16401":0,"16402":0,"16403":1,"16404":1,"16405":0,"16406":0,"16407":0,"16408":1,"16409":0,"16410":0,"16411":0,"16412":0,"16413":0,"16414":0,"16415":0,"16416":0,"16417":0,"16418":0,"16419":0,"16420":0,"16421":0,"16422":0,"16423":0,"16424":0,"16425":0,"16426":0,"16427":0,"16428":0,"16429":0,"16430":0,"16431":0,"16432":0,"16433":1,"16434":0,"16435":0,"16436":0,"16437":0,"16438":0,"16439":0,"16440":0,"16441":0,"16442":0,"16443":0,"16444":0,"16445":0,"16446":0,"16447":0,"16448":0,"16449":0,"16450":0,"16451":0,"16452":1,"16453":1,"16454":0,"16455":0,"16456":1,"16457":0,"16458":0,"16459":1,"16460":0,"16461":0,"16462":0,"16463":0,"16464":0,"16465":0,"16466":1,"16467":0,"16468":0,"16469":0,"16470":0,"16471":0,"16472":0,"16473":0,"16474":0,"16475":0,"16476":0,"16477":0,"16478":0,"16479":0,"16480":1,"16481":0,"16482":0,"16483":0,"16484":0,"16485":1,"16486":0,"16487":0,"16488":0,"16489":1,"16490":0,"16491":0,"16492":0,"16493":0,"16494":0,"16495":0,"16496":0,"16497":0,"16498":1,"16499":0,"16500":1,"16501":0,"16502":0,"16503":0,"16504":1,"16505":0,"16506":0,"16507":0,"16508":1,"16509":0,"16510":0,"16511":1,"16512":0,"16513":0,"16514":0,"16515":1,"16516":0,"16517":1,"16518":0,"16519":0,"16520":0,"16521":0,"16522":1,"16523":0,"16524":0,"16525":0,"16526":0,"16527":0,"16528":0,"16529":0,"16530":0,"16531":0,"16532":0,"16533":1,"16534":0,"16535":0,"16536":0,"16537":0,"16538":0,"16539":0,"16540":1,"16541":0,"16542":1,"16543":0,"16544":0,"16545":0,"16546":0,"16547":0,"16548":0,"16549":0,"16550":0,"16551":0,"16552":1,"16553":0,"16554":0,"16555":1,"16556":0,"16557":1,"16558":0,"16559":0,"16560":1,"16561":0,"16562":0,"16563":0,"16564":0,"16565":0,"16566":1,"16567":0,"16568":0,"16569":0,"16570":1,"16571":0,"16572":0,"16573":0,"16574":0,"16575":0,"16576":0,"16577":1,"16578":0,"16579":1,"16580":0,"16581":0,"16582":0,"16583":1,"16584":0,"16585":1,"16586":1,"16587":0,"16588":0,"16589":1,"16590":0,"16591":0,"16592":1,"16593":0,"16594":0,"16595":1,"16596":1,"16597":0,"16598":1,"16599":0,"16600":0,"16601":1,"16602":0,"16603":0,"16604":0,"16605":0,"16606":0,"16607":1,"16608":0,"16609":0,"16610":0,"16611":1,"16612":1,"16613":1,"16614":1,"16615":0,"16616":1,"16617":0,"16618":0,"16619":0,"16620":0,"16621":0,"16622":0,"16623":0,"16624":0,"16625":0,"16626":0,"16627":0,"16628":0,"16629":1,"16630":1,"16631":0,"16632":0,"16633":0,"16634":1,"16635":0,"16636":1,"16637":0,"16638":1,"16639":0,"16640":0,"16641":0,"16642":0,"16643":0,"16644":0,"16645":0,"16646":0,"16647":1,"16648":0,"16649":0,"16650":0,"16651":1,"16652":0,"16653":0,"16654":0,"16655":0,"16656":0,"16657":0,"16658":0,"16659":1,"16660":1,"16661":0,"16662":0,"16663":1,"16664":0,"16665":0,"16666":0,"16667":0,"16668":0,"16669":1,"16670":0,"16671":0,"16672":0,"16673":0,"16674":1,"16675":1,"16676":1,"16677":1,"16678":0,"16679":0,"16680":0,"16681":0,"16682":0,"16683":0,"16684":0,"16685":0,"16686":0,"16687":1,"16688":0,"16689":1,"16690":0,"16691":1,"16692":0,"16693":0,"16694":0,"16695":0,"16696":0,"16697":0,"16698":1,"16699":0,"16700":0,"16701":1,"16702":0,"16703":0,"16704":0,"16705":1,"16706":0,"16707":0,"16708":0,"16709":0,"16710":1,"16711":1,"16712":0,"16713":0,"16714":0,"16715":1,"16716":1,"16717":0,"16718":1,"16719":1,"16720":0,"16721":1,"16722":0,"16723":0,"16724":0,"16725":1,"16726":1,"16727":0,"16728":1,"16729":0,"16730":0,"16731":0,"16732":0,"16733":0,"16734":0,"16735":0,"16736":0,"16737":1,"16738":0,"16739":1,"16740":0,"16741":0,"16742":1,"16743":0,"16744":0,"16745":0,"16746":0,"16747":1,"16748":1,"16749":0,"16750":0,"16751":1,"16752":0,"16753":0,"16754":1,"16755":0,"16756":0,"16757":0,"16758":0,"16759":0,"16760":0,"16761":0,"16762":0,"16763":0,"16764":0,"16765":0,"16766":0,"16767":0,"16768":0,"16769":1,"16770":1,"16771":1,"16772":1,"16773":0,"16774":1,"16775":0,"16776":0,"16777":0,"16778":0,"16779":1,"16780":0,"16781":1,"16782":1,"16783":0,"16784":0,"16785":0,"16786":1,"16787":0,"16788":1,"16789":0,"16790":0,"16791":1,"16792":0,"16793":1,"16794":0,"16795":0,"16796":0,"16797":0,"16798":0,"16799":1,"16800":0,"16801":0,"16802":0,"16803":1,"16804":0,"16805":0,"16806":0,"16807":0,"16808":0,"16809":1,"16810":1,"16811":0,"16812":0,"16813":0,"16814":0,"16815":0,"16816":0,"16817":0,"16818":0,"16819":0,"16820":0,"16821":0,"16822":1,"16823":0,"16824":0,"16825":0,"16826":1,"16827":0,"16828":1,"16829":1,"16830":0,"16831":1,"16832":0,"16833":0,"16834":0,"16835":0,"16836":1,"16837":0,"16838":0,"16839":1,"16840":0,"16841":0,"16842":0,"16843":0,"16844":0,"16845":0,"16846":0,"16847":0,"16848":0,"16849":0,"16850":1,"16851":0,"16852":1,"16853":0,"16854":1,"16855":0,"16856":0,"16857":0,"16858":0,"16859":0,"16860":0,"16861":0,"16862":0,"16863":1,"16864":0,"16865":0,"16866":0,"16867":0,"16868":0,"16869":0,"16870":0,"16871":0,"16872":0,"16873":1,"16874":1,"16875":0,"16876":0,"16877":1,"16878":0,"16879":1,"16880":0,"16881":0,"16882":0,"16883":0,"16884":0,"16885":1,"16886":1,"16887":0,"16888":0,"16889":1,"16890":0,"16891":1,"16892":0,"16893":0,"16894":1,"16895":0,"16896":0,"16897":1,"16898":0,"16899":0,"16900":0,"16901":0,"16902":0,"16903":0,"16904":0,"16905":0,"16906":0,"16907":0,"16908":0,"16909":0,"16910":0,"16911":1,"16912":0,"16913":0,"16914":0,"16915":0,"16916":1,"16917":0,"16918":0,"16919":1,"16920":0,"16921":1,"16922":1,"16923":1,"16924":0,"16925":0,"16926":0,"16927":0,"16928":1,"16929":0,"16930":0,"16931":0,"16932":0,"16933":0,"16934":0,"16935":0,"16936":1,"16937":0,"16938":0,"16939":0,"16940":1,"16941":0,"16942":0,"16943":0,"16944":1,"16945":1,"16946":0,"16947":0,"16948":0,"16949":1,"16950":0,"16951":0,"16952":0,"16953":0,"16954":0,"16955":0,"16956":0,"16957":0,"16958":0,"16959":1,"16960":1,"16961":0,"16962":1,"16963":0,"16964":0,"16965":0,"16966":0,"16967":0,"16968":0,"16969":0,"16970":1,"16971":0,"16972":0,"16973":0,"16974":0,"16975":0,"16976":0,"16977":0,"16978":0,"16979":0,"16980":0,"16981":0,"16982":1,"16983":0,"16984":0,"16985":0,"16986":0,"16987":0,"16988":0,"16989":0,"16990":1,"16991":0,"16992":0,"16993":0,"16994":0,"16995":0,"16996":0,"16997":0,"16998":0,"16999":0,"17000":1,"17001":0,"17002":0,"17003":0,"17004":0,"17005":0,"17006":1,"17007":1,"17008":0,"17009":0,"17010":0,"17011":0,"17012":0,"17013":0,"17014":0,"17015":0,"17016":0,"17017":0,"17018":0,"17019":0,"17020":0,"17021":1,"17022":0,"17023":0,"17024":0,"17025":0,"17026":1,"17027":0,"17028":0,"17029":0,"17030":0,"17031":0,"17032":0,"17033":0,"17034":0,"17035":0,"17036":0,"17037":0,"17038":0,"17039":0,"17040":0,"17041":0,"17042":0,"17043":0,"17044":0,"17045":0,"17046":0,"17047":1,"17048":1,"17049":0,"17050":0,"17051":0,"17052":0,"17053":1,"17054":0,"17055":1,"17056":1,"17057":0,"17058":0,"17059":0,"17060":0,"17061":0,"17062":0,"17063":0,"17064":1,"17065":1,"17066":1,"17067":0,"17068":0,"17069":0,"17070":0,"17071":0,"17072":0,"17073":0,"17074":1,"17075":1,"17076":1,"17077":0,"17078":0,"17079":0,"17080":0,"17081":0,"17082":1,"17083":1,"17084":0,"17085":1,"17086":0,"17087":0,"17088":0,"17089":1,"17090":0,"17091":0,"17092":0,"17093":0,"17094":0,"17095":1,"17096":0,"17097":0,"17098":1,"17099":0,"17100":0,"17101":1,"17102":0,"17103":0,"17104":0,"17105":0,"17106":1,"17107":0,"17108":0,"17109":0,"17110":0,"17111":0,"17112":0,"17113":1,"17114":0,"17115":0,"17116":1,"17117":0,"17118":0,"17119":1,"17120":0,"17121":1,"17122":0,"17123":0,"17124":1,"17125":1,"17126":0,"17127":0,"17128":0,"17129":0,"17130":0,"17131":0,"17132":0,"17133":0,"17134":0,"17135":0,"17136":0,"17137":1,"17138":0,"17139":0,"17140":1,"17141":0,"17142":0,"17143":0,"17144":0,"17145":1,"17146":1,"17147":0,"17148":0,"17149":1,"17150":0,"17151":0,"17152":0,"17153":0,"17154":0,"17155":1,"17156":0,"17157":0,"17158":0,"17159":0,"17160":1,"17161":0,"17162":0,"17163":0,"17164":0,"17165":0,"17166":0,"17167":0,"17168":0,"17169":1,"17170":0,"17171":0,"17172":1,"17173":1,"17174":0,"17175":0,"17176":0,"17177":0,"17178":0,"17179":0,"17180":0,"17181":0,"17182":0,"17183":1,"17184":0,"17185":0,"17186":0,"17187":1,"17188":0,"17189":0,"17190":0,"17191":0,"17192":1,"17193":1,"17194":1,"17195":1,"17196":1,"17197":1,"17198":1,"17199":0,"17200":0,"17201":0,"17202":0,"17203":0,"17204":0,"17205":0,"17206":0,"17207":0,"17208":1,"17209":1,"17210":0,"17211":0,"17212":0,"17213":1,"17214":0,"17215":0,"17216":1,"17217":0,"17218":0,"17219":1,"17220":0,"17221":0,"17222":0,"17223":0,"17224":0,"17225":0,"17226":0,"17227":0,"17228":0,"17229":0,"17230":0,"17231":0,"17232":0,"17233":1,"17234":0,"17235":1,"17236":0,"17237":0,"17238":0,"17239":0,"17240":0,"17241":0,"17242":0,"17243":0,"17244":1,"17245":1,"17246":0,"17247":0,"17248":0,"17249":0,"17250":0,"17251":0,"17252":0,"17253":1,"17254":0,"17255":0,"17256":1,"17257":0,"17258":0,"17259":0,"17260":0,"17261":0,"17262":0,"17263":1,"17264":0,"17265":0,"17266":1,"17267":0,"17268":0,"17269":1,"17270":0,"17271":0,"17272":0,"17273":0,"17274":0,"17275":0,"17276":0,"17277":0,"17278":0,"17279":1,"17280":0,"17281":0,"17282":1,"17283":1,"17284":0,"17285":0,"17286":1,"17287":1,"17288":0,"17289":0,"17290":0,"17291":0,"17292":0,"17293":0,"17294":0,"17295":0,"17296":1,"17297":0,"17298":0,"17299":0,"17300":0,"17301":0,"17302":0,"17303":0,"17304":0,"17305":0,"17306":1,"17307":0,"17308":1,"17309":0,"17310":0,"17311":0,"17312":0,"17313":0,"17314":0,"17315":1,"17316":0,"17317":0,"17318":1,"17319":0,"17320":0,"17321":1,"17322":0,"17323":1,"17324":0,"17325":0,"17326":0,"17327":0,"17328":0,"17329":0,"17330":0,"17331":0,"17332":1,"17333":1,"17334":0,"17335":0,"17336":0,"17337":1,"17338":0,"17339":0,"17340":0,"17341":1,"17342":1,"17343":0,"17344":0,"17345":0,"17346":0,"17347":0,"17348":1,"17349":0,"17350":0,"17351":0,"17352":0,"17353":0,"17354":0,"17355":0,"17356":0,"17357":0,"17358":0,"17359":0,"17360":0,"17361":0,"17362":0,"17363":0,"17364":1,"17365":1,"17366":0,"17367":0,"17368":0,"17369":0,"17370":0,"17371":0,"17372":0,"17373":1,"17374":1,"17375":0,"17376":0,"17377":0,"17378":1,"17379":0,"17380":0,"17381":0,"17382":0,"17383":0,"17384":0,"17385":0,"17386":0,"17387":0,"17388":0,"17389":0,"17390":0,"17391":0,"17392":1,"17393":0,"17394":0,"17395":0,"17396":0,"17397":0,"17398":0,"17399":0,"17400":0,"17401":0,"17402":1,"17403":0,"17404":0,"17405":0,"17406":1,"17407":1,"17408":1,"17409":0,"17410":1,"17411":1,"17412":0,"17413":0,"17414":0,"17415":0,"17416":0,"17417":0,"17418":0,"17419":0,"17420":0,"17421":0,"17422":0,"17423":0,"17424":0,"17425":0,"17426":0,"17427":1,"17428":0,"17429":1,"17430":0,"17431":0,"17432":0,"17433":1,"17434":0,"17435":0,"17436":0,"17437":0,"17438":0,"17439":0,"17440":0,"17441":1,"17442":0,"17443":0,"17444":1,"17445":0,"17446":1,"17447":0,"17448":0,"17449":0,"17450":0,"17451":0,"17452":0,"17453":0,"17454":0,"17455":1,"17456":0,"17457":0,"17458":0,"17459":0,"17460":0,"17461":0,"17462":1,"17463":0,"17464":0,"17465":0,"17466":0,"17467":0,"17468":1,"17469":0,"17470":0,"17471":0,"17472":1,"17473":0,"17474":0,"17475":1,"17476":0,"17477":0,"17478":0,"17479":0,"17480":0,"17481":0,"17482":0,"17483":0,"17484":0,"17485":0,"17486":1,"17487":0,"17488":1,"17489":0,"17490":1,"17491":1,"17492":0,"17493":0,"17494":1,"17495":1,"17496":0,"17497":0,"17498":0,"17499":0,"17500":0,"17501":0,"17502":0,"17503":1,"17504":0,"17505":0,"17506":0,"17507":0,"17508":0,"17509":1,"17510":0,"17511":0,"17512":0,"17513":0,"17514":0,"17515":0,"17516":1,"17517":0,"17518":0,"17519":0,"17520":0,"17521":0,"17522":0,"17523":0,"17524":0,"17525":0,"17526":0,"17527":0,"17528":1,"17529":0,"17530":1,"17531":0,"17532":1,"17533":0,"17534":0,"17535":1,"17536":0,"17537":0,"17538":0,"17539":0,"17540":0,"17541":1,"17542":1,"17543":0,"17544":0,"17545":0,"17546":0,"17547":1,"17548":0,"17549":0,"17550":0,"17551":0,"17552":0,"17553":1,"17554":0,"17555":1,"17556":1,"17557":1,"17558":1,"17559":0,"17560":0,"17561":0,"17562":0,"17563":0,"17564":1,"17565":0,"17566":1,"17567":0,"17568":0,"17569":0,"17570":0,"17571":0,"17572":0,"17573":0,"17574":0,"17575":0,"17576":0,"17577":0,"17578":0,"17579":0,"17580":0,"17581":1,"17582":0,"17583":1,"17584":1,"17585":0,"17586":0,"17587":0,"17588":0,"17589":0,"17590":1,"17591":1,"17592":1,"17593":0,"17594":0,"17595":0,"17596":0,"17597":0,"17598":1,"17599":0,"17600":0,"17601":1,"17602":0,"17603":0,"17604":0,"17605":0,"17606":0,"17607":0,"17608":0,"17609":0,"17610":0,"17611":0,"17612":1,"17613":0,"17614":0,"17615":1,"17616":1,"17617":0,"17618":0,"17619":0,"17620":0,"17621":1,"17622":1,"17623":0,"17624":0,"17625":0,"17626":0,"17627":0,"17628":0,"17629":1,"17630":1,"17631":0,"17632":0,"17633":0,"17634":0,"17635":0,"17636":0,"17637":0,"17638":0,"17639":0,"17640":0,"17641":0,"17642":0,"17643":0,"17644":0,"17645":1,"17646":1,"17647":0,"17648":1,"17649":0,"17650":0,"17651":1,"17652":0,"17653":0,"17654":0,"17655":0,"17656":0,"17657":0,"17658":0,"17659":0,"17660":0,"17661":0,"17662":0,"17663":1,"17664":1,"17665":0,"17666":0,"17667":0,"17668":1,"17669":0,"17670":0,"17671":0,"17672":0,"17673":0,"17674":0,"17675":1,"17676":1,"17677":1,"17678":0,"17679":0,"17680":0,"17681":0,"17682":0,"17683":1,"17684":0,"17685":1,"17686":1,"17687":1,"17688":0,"17689":1,"17690":0,"17691":0,"17692":1,"17693":1,"17694":0,"17695":0,"17696":0,"17697":0,"17698":1,"17699":1,"17700":1,"17701":0,"17702":0,"17703":0,"17704":0,"17705":0,"17706":1,"17707":0,"17708":0,"17709":0,"17710":0,"17711":0,"17712":0,"17713":0,"17714":1,"17715":0,"17716":0,"17717":0,"17718":0,"17719":0,"17720":0,"17721":0,"17722":0,"17723":0,"17724":0,"17725":0,"17726":0,"17727":0,"17728":0,"17729":0,"17730":0,"17731":0,"17732":0,"17733":0,"17734":1,"17735":0,"17736":0,"17737":1,"17738":0,"17739":0,"17740":1,"17741":0,"17742":1,"17743":1,"17744":1,"17745":0,"17746":1,"17747":0,"17748":0,"17749":0,"17750":0,"17751":0,"17752":0,"17753":0,"17754":0,"17755":0,"17756":0,"17757":0,"17758":0,"17759":0,"17760":0,"17761":0,"17762":0,"17763":1,"17764":0,"17765":0,"17766":0,"17767":0,"17768":0,"17769":0,"17770":0,"17771":1,"17772":0,"17773":0,"17774":0,"17775":1,"17776":1,"17777":0,"17778":0,"17779":0,"17780":0,"17781":1,"17782":0,"17783":0,"17784":1,"17785":1,"17786":0,"17787":0,"17788":0,"17789":0,"17790":0,"17791":0,"17792":0,"17793":0,"17794":0,"17795":0,"17796":0,"17797":0,"17798":0,"17799":0,"17800":0,"17801":0,"17802":0,"17803":1,"17804":0,"17805":0,"17806":0,"17807":0,"17808":0,"17809":0,"17810":1,"17811":0,"17812":0,"17813":1,"17814":0,"17815":0,"17816":0,"17817":1,"17818":0,"17819":0,"17820":0,"17821":0,"17822":0,"17823":0,"17824":1,"17825":1,"17826":0,"17827":0,"17828":1,"17829":1,"17830":0,"17831":0,"17832":1,"17833":0,"17834":0,"17835":0,"17836":0,"17837":0,"17838":0,"17839":0,"17840":0,"17841":0,"17842":0,"17843":0,"17844":0,"17845":0,"17846":0,"17847":0,"17848":0,"17849":0,"17850":0,"17851":0,"17852":0,"17853":1,"17854":1,"17855":0,"17856":0,"17857":0,"17858":1,"17859":0,"17860":0,"17861":0,"17862":1,"17863":1,"17864":0,"17865":1,"17866":0,"17867":0,"17868":1,"17869":0,"17870":0,"17871":0,"17872":0,"17873":1,"17874":0,"17875":0,"17876":0,"17877":1,"17878":0,"17879":0,"17880":0,"17881":0,"17882":0,"17883":0,"17884":1,"17885":0,"17886":1,"17887":0,"17888":0,"17889":0,"17890":0,"17891":0,"17892":0,"17893":0,"17894":0,"17895":0,"17896":0,"17897":1,"17898":0,"17899":0,"17900":0,"17901":0,"17902":0,"17903":0,"17904":0,"17905":1,"17906":0,"17907":1,"17908":0,"17909":0,"17910":0,"17911":0,"17912":0,"17913":0,"17914":0,"17915":0,"17916":0,"17917":0,"17918":0,"17919":0,"17920":0,"17921":0,"17922":1,"17923":1,"17924":0,"17925":0,"17926":0,"17927":0,"17928":0,"17929":0,"17930":0,"17931":0,"17932":0,"17933":0,"17934":1,"17935":1,"17936":1,"17937":0,"17938":1,"17939":0,"17940":1,"17941":0,"17942":0,"17943":0,"17944":0,"17945":0,"17946":0,"17947":0,"17948":0,"17949":0,"17950":0,"17951":0,"17952":0,"17953":0,"17954":0,"17955":0,"17956":0,"17957":0,"17958":0,"17959":0,"17960":0,"17961":0,"17962":0,"17963":1,"17964":0,"17965":0,"17966":0,"17967":1,"17968":0,"17969":0,"17970":0,"17971":1,"17972":0,"17973":0,"17974":0,"17975":0,"17976":0,"17977":0,"17978":0,"17979":0,"17980":0,"17981":0,"17982":0,"17983":0,"17984":0,"17985":1,"17986":1,"17987":0,"17988":1,"17989":0,"17990":0,"17991":0,"17992":0,"17993":0,"17994":0,"17995":0,"17996":0,"17997":0,"17998":0,"17999":0,"18000":0,"18001":0,"18002":0,"18003":1,"18004":1,"18005":0,"18006":0,"18007":0,"18008":1,"18009":0,"18010":0,"18011":1,"18012":0,"18013":0,"18014":0,"18015":0,"18016":0,"18017":0,"18018":0,"18019":1,"18020":1,"18021":0,"18022":0,"18023":1,"18024":0,"18025":1,"18026":0,"18027":0,"18028":0,"18029":0,"18030":0,"18031":1,"18032":0,"18033":0,"18034":0,"18035":0,"18036":0,"18037":0,"18038":0,"18039":0,"18040":1,"18041":0,"18042":0,"18043":0,"18044":0,"18045":0,"18046":0,"18047":0,"18048":0,"18049":0,"18050":0,"18051":0,"18052":1,"18053":0,"18054":0,"18055":1,"18056":0,"18057":1,"18058":0,"18059":1,"18060":0,"18061":0,"18062":1,"18063":1,"18064":0,"18065":1,"18066":1,"18067":1,"18068":0,"18069":0,"18070":0,"18071":0,"18072":0,"18073":0,"18074":0,"18075":0,"18076":1,"18077":1,"18078":0,"18079":0,"18080":0,"18081":0,"18082":0,"18083":0,"18084":1,"18085":0,"18086":0,"18087":0,"18088":0,"18089":0,"18090":0,"18091":1,"18092":0,"18093":0,"18094":1,"18095":0,"18096":1,"18097":0,"18098":0,"18099":0,"18100":0,"18101":0,"18102":1,"18103":0,"18104":0,"18105":1,"18106":0,"18107":0,"18108":1,"18109":0,"18110":1,"18111":0,"18112":0,"18113":0,"18114":1,"18115":0,"18116":0,"18117":0,"18118":1,"18119":0,"18120":0,"18121":1,"18122":0,"18123":0,"18124":1,"18125":0,"18126":0,"18127":0,"18128":0,"18129":1,"18130":0,"18131":1,"18132":0,"18133":0,"18134":0,"18135":0,"18136":0,"18137":1,"18138":0,"18139":0,"18140":0,"18141":0,"18142":0,"18143":0,"18144":1,"18145":0,"18146":0,"18147":0,"18148":1,"18149":0,"18150":1,"18151":1,"18152":0,"18153":1,"18154":0,"18155":0,"18156":0,"18157":1,"18158":1,"18159":0,"18160":0,"18161":1,"18162":1,"18163":0,"18164":1,"18165":1,"18166":1,"18167":0,"18168":0,"18169":0,"18170":1,"18171":0,"18172":0,"18173":0,"18174":1,"18175":0,"18176":0,"18177":0,"18178":0,"18179":1,"18180":0,"18181":1,"18182":0,"18183":0,"18184":0,"18185":1,"18186":1,"18187":0,"18188":1,"18189":0,"18190":0,"18191":1,"18192":0,"18193":1,"18194":1,"18195":1,"18196":1,"18197":0,"18198":1,"18199":1,"18200":0,"18201":0,"18202":0,"18203":0,"18204":1,"18205":0,"18206":0,"18207":0,"18208":0,"18209":0,"18210":0,"18211":0,"18212":1,"18213":0,"18214":1,"18215":0,"18216":0,"18217":1,"18218":0,"18219":1,"18220":0,"18221":0,"18222":0,"18223":0,"18224":0,"18225":0,"18226":0,"18227":0,"18228":1,"18229":1,"18230":0,"18231":0,"18232":0,"18233":0,"18234":0,"18235":0,"18236":0,"18237":1,"18238":0,"18239":0,"18240":0,"18241":0,"18242":0,"18243":0,"18244":0,"18245":0,"18246":0,"18247":0,"18248":0,"18249":1,"18250":0,"18251":0,"18252":0,"18253":0,"18254":0,"18255":1,"18256":0,"18257":1,"18258":0,"18259":0,"18260":0,"18261":0,"18262":0,"18263":0,"18264":0,"18265":0,"18266":0,"18267":0,"18268":0,"18269":0,"18270":0,"18271":0,"18272":1,"18273":0,"18274":0,"18275":0,"18276":0,"18277":0,"18278":1,"18279":0,"18280":1,"18281":1,"18282":0,"18283":1,"18284":0,"18285":0,"18286":1,"18287":0,"18288":0,"18289":0,"18290":0,"18291":0,"18292":0,"18293":0,"18294":0,"18295":0,"18296":0,"18297":1,"18298":0,"18299":1,"18300":0,"18301":0,"18302":0,"18303":0,"18304":0,"18305":0,"18306":0,"18307":0,"18308":0,"18309":1,"18310":0,"18311":1,"18312":0,"18313":1,"18314":0,"18315":0,"18316":1,"18317":1,"18318":1,"18319":0,"18320":0,"18321":0,"18322":0,"18323":0,"18324":1,"18325":0,"18326":0,"18327":0,"18328":0,"18329":0,"18330":0,"18331":0,"18332":0,"18333":0,"18334":1,"18335":0,"18336":0,"18337":0,"18338":0,"18339":0,"18340":0,"18341":0,"18342":1,"18343":0,"18344":0,"18345":0,"18346":0,"18347":1,"18348":0,"18349":0,"18350":0,"18351":0,"18352":0,"18353":0,"18354":1,"18355":0,"18356":0,"18357":0,"18358":0,"18359":0,"18360":0,"18361":0,"18362":0,"18363":0,"18364":1,"18365":0,"18366":0,"18367":0,"18368":0,"18369":0,"18370":0,"18371":0,"18372":1,"18373":1,"18374":1,"18375":1,"18376":0,"18377":0,"18378":0,"18379":0,"18380":1,"18381":0,"18382":1,"18383":0,"18384":0,"18385":1,"18386":1,"18387":0,"18388":0,"18389":0,"18390":0,"18391":1,"18392":0,"18393":0,"18394":0,"18395":0,"18396":0,"18397":0,"18398":0,"18399":0,"18400":1,"18401":0,"18402":1,"18403":0,"18404":0,"18405":0,"18406":0,"18407":0,"18408":0,"18409":1,"18410":0,"18411":0,"18412":0,"18413":0,"18414":0,"18415":0,"18416":0,"18417":1,"18418":1,"18419":0,"18420":0,"18421":0,"18422":0,"18423":0,"18424":0,"18425":0,"18426":0,"18427":0,"18428":0,"18429":0,"18430":0,"18431":0,"18432":0,"18433":1,"18434":0,"18435":1,"18436":0,"18437":0,"18438":0,"18439":1,"18440":1,"18441":1,"18442":0,"18443":1,"18444":0,"18445":0,"18446":1,"18447":0,"18448":0,"18449":0,"18450":0,"18451":0,"18452":0,"18453":0,"18454":0,"18455":0,"18456":0,"18457":0,"18458":1,"18459":0,"18460":0,"18461":0,"18462":1,"18463":0,"18464":0,"18465":0,"18466":0,"18467":1,"18468":0,"18469":0,"18470":0,"18471":0,"18472":0,"18473":0,"18474":1,"18475":0,"18476":0,"18477":0,"18478":1,"18479":0,"18480":0,"18481":1,"18482":1,"18483":0,"18484":0,"18485":0,"18486":0,"18487":0,"18488":0,"18489":1,"18490":0,"18491":1,"18492":0,"18493":0,"18494":0,"18495":1,"18496":1,"18497":1,"18498":0,"18499":1,"18500":0,"18501":0,"18502":1,"18503":1,"18504":0,"18505":0,"18506":1,"18507":0,"18508":1,"18509":0,"18510":0,"18511":0,"18512":0,"18513":0,"18514":0,"18515":0,"18516":0,"18517":1,"18518":0,"18519":0,"18520":0,"18521":0,"18522":0,"18523":0,"18524":0,"18525":1,"18526":0,"18527":0,"18528":0,"18529":1,"18530":0,"18531":1,"18532":0,"18533":0,"18534":0,"18535":1,"18536":0,"18537":1,"18538":1,"18539":1,"18540":0,"18541":0,"18542":0,"18543":1,"18544":1,"18545":0,"18546":0,"18547":0,"18548":0,"18549":0,"18550":0,"18551":1,"18552":0,"18553":0,"18554":0,"18555":0,"18556":1,"18557":1,"18558":0,"18559":0,"18560":0,"18561":0,"18562":1,"18563":0,"18564":0,"18565":1,"18566":1,"18567":0,"18568":1,"18569":1,"18570":0,"18571":0,"18572":0,"18573":1,"18574":0,"18575":1,"18576":1,"18577":0,"18578":0,"18579":0,"18580":1,"18581":0,"18582":0,"18583":0,"18584":0,"18585":0,"18586":0,"18587":1,"18588":1,"18589":0,"18590":1,"18591":0,"18592":0,"18593":1,"18594":0,"18595":1,"18596":1,"18597":0,"18598":0,"18599":0,"18600":0,"18601":0,"18602":0,"18603":1,"18604":0,"18605":0,"18606":0,"18607":0,"18608":0,"18609":1,"18610":1,"18611":0,"18612":0,"18613":0,"18614":0,"18615":1,"18616":0,"18617":0,"18618":0,"18619":0,"18620":0,"18621":0,"18622":0,"18623":0,"18624":0,"18625":0,"18626":0,"18627":0,"18628":1,"18629":0,"18630":0,"18631":0,"18632":1,"18633":1,"18634":0,"18635":0,"18636":0,"18637":0,"18638":1,"18639":0,"18640":0,"18641":0,"18642":0,"18643":0,"18644":0,"18645":0,"18646":1,"18647":0,"18648":0,"18649":0,"18650":0,"18651":0,"18652":1,"18653":0,"18654":0,"18655":1,"18656":1,"18657":1,"18658":0,"18659":0,"18660":0,"18661":0,"18662":0,"18663":0,"18664":0,"18665":0,"18666":1,"18667":1,"18668":0,"18669":1,"18670":0,"18671":0,"18672":0,"18673":0,"18674":1,"18675":0,"18676":1,"18677":0,"18678":1,"18679":0,"18680":1,"18681":1,"18682":0,"18683":1,"18684":0,"18685":0,"18686":0,"18687":0,"18688":1,"18689":0,"18690":0,"18691":0,"18692":0,"18693":1,"18694":0,"18695":0,"18696":0,"18697":1,"18698":0,"18699":0,"18700":0,"18701":0,"18702":0,"18703":0,"18704":0,"18705":0,"18706":1,"18707":1,"18708":0,"18709":0,"18710":1,"18711":1,"18712":0,"18713":1,"18714":0,"18715":1,"18716":0,"18717":0,"18718":0,"18719":0,"18720":1,"18721":0,"18722":1,"18723":1,"18724":0,"18725":0,"18726":0,"18727":1,"18728":0,"18729":1,"18730":0,"18731":0,"18732":0,"18733":0,"18734":0,"18735":0,"18736":0,"18737":0,"18738":0,"18739":1,"18740":0,"18741":1,"18742":0,"18743":1,"18744":0,"18745":1,"18746":0,"18747":0,"18748":0,"18749":0,"18750":0,"18751":0,"18752":0,"18753":0,"18754":0,"18755":0,"18756":0,"18757":0,"18758":0,"18759":0,"18760":0,"18761":1,"18762":0,"18763":0,"18764":0,"18765":0,"18766":0,"18767":0,"18768":0,"18769":0,"18770":1,"18771":1,"18772":1,"18773":1,"18774":1,"18775":0,"18776":0,"18777":0,"18778":1,"18779":0,"18780":0,"18781":0,"18782":0,"18783":1,"18784":0,"18785":0,"18786":0,"18787":1,"18788":0,"18789":1,"18790":0,"18791":0,"18792":1,"18793":0,"18794":0,"18795":1,"18796":0,"18797":0,"18798":0,"18799":0,"18800":1,"18801":0,"18802":0,"18803":0,"18804":1,"18805":0,"18806":0,"18807":1,"18808":1,"18809":1,"18810":0,"18811":0,"18812":0,"18813":0,"18814":0,"18815":0,"18816":0,"18817":0,"18818":0,"18819":1,"18820":0,"18821":0,"18822":0,"18823":1,"18824":0,"18825":1,"18826":0,"18827":0,"18828":0,"18829":1,"18830":0,"18831":0,"18832":0,"18833":0,"18834":0,"18835":0,"18836":1,"18837":0,"18838":0,"18839":0,"18840":0,"18841":0,"18842":0,"18843":0,"18844":1,"18845":0,"18846":0,"18847":0,"18848":1,"18849":0,"18850":1,"18851":0,"18852":1,"18853":1,"18854":0,"18855":0,"18856":0,"18857":0,"18858":1,"18859":0,"18860":1,"18861":0,"18862":1,"18863":0,"18864":0,"18865":0,"18866":0,"18867":0,"18868":0,"18869":0,"18870":1,"18871":0,"18872":0,"18873":1,"18874":0,"18875":0,"18876":0,"18877":0,"18878":0,"18879":0,"18880":0,"18881":0,"18882":0,"18883":1,"18884":0,"18885":0,"18886":0,"18887":0,"18888":0,"18889":1,"18890":0,"18891":0,"18892":0,"18893":1,"18894":0,"18895":0,"18896":0,"18897":0,"18898":0,"18899":1,"18900":0,"18901":0,"18902":0,"18903":0,"18904":0,"18905":0,"18906":1,"18907":0,"18908":0,"18909":1,"18910":0,"18911":0,"18912":0,"18913":0,"18914":1,"18915":0,"18916":1,"18917":0,"18918":0,"18919":0,"18920":1,"18921":1,"18922":0,"18923":0,"18924":0,"18925":1,"18926":0,"18927":0,"18928":0,"18929":0,"18930":0,"18931":0,"18932":0,"18933":0,"18934":0,"18935":0,"18936":0,"18937":0,"18938":0,"18939":0,"18940":0,"18941":0,"18942":0,"18943":0,"18944":0,"18945":0,"18946":1,"18947":0,"18948":0,"18949":0,"18950":0,"18951":0,"18952":0,"18953":0,"18954":0,"18955":0,"18956":0,"18957":0,"18958":0,"18959":0,"18960":0,"18961":0,"18962":1,"18963":0,"18964":0,"18965":0,"18966":1,"18967":0,"18968":0,"18969":0,"18970":1,"18971":0,"18972":0,"18973":1,"18974":0,"18975":1,"18976":0,"18977":0,"18978":0,"18979":0,"18980":0,"18981":0,"18982":0,"18983":0,"18984":0,"18985":0,"18986":0,"18987":0,"18988":1,"18989":1,"18990":0,"18991":0,"18992":0,"18993":0,"18994":1,"18995":0,"18996":0,"18997":0,"18998":0,"18999":0,"19000":0,"19001":0,"19002":0,"19003":1,"19004":0,"19005":0,"19006":0,"19007":1,"19008":1,"19009":0,"19010":0,"19011":0,"19012":0,"19013":0,"19014":0,"19015":0,"19016":1,"19017":0,"19018":0,"19019":0,"19020":0,"19021":0,"19022":0,"19023":0,"19024":0,"19025":0,"19026":0,"19027":0,"19028":0,"19029":0,"19030":0,"19031":0,"19032":0,"19033":0,"19034":0,"19035":0,"19036":0,"19037":0,"19038":1,"19039":0,"19040":0,"19041":1,"19042":0,"19043":0,"19044":1,"19045":0,"19046":0,"19047":1,"19048":0,"19049":0,"19050":0,"19051":0,"19052":1,"19053":0,"19054":0,"19055":0,"19056":1,"19057":0,"19058":0,"19059":0,"19060":1,"19061":0,"19062":0,"19063":0,"19064":0,"19065":0,"19066":0,"19067":1,"19068":0,"19069":0,"19070":0,"19071":1,"19072":0,"19073":0,"19074":0,"19075":1,"19076":0,"19077":0,"19078":1,"19079":0,"19080":0,"19081":0,"19082":0,"19083":0,"19084":1,"19085":0,"19086":0,"19087":0,"19088":0,"19089":0,"19090":0,"19091":0,"19092":0,"19093":0,"19094":0,"19095":0,"19096":0,"19097":0,"19098":0,"19099":0,"19100":1,"19101":0,"19102":0,"19103":1,"19104":0,"19105":0,"19106":0,"19107":0,"19108":0,"19109":0,"19110":1,"19111":0,"19112":1,"19113":0,"19114":0,"19115":0,"19116":0,"19117":0,"19118":1,"19119":0,"19120":0,"19121":0,"19122":0,"19123":0,"19124":1,"19125":1,"19126":1,"19127":0,"19128":0,"19129":0,"19130":0,"19131":1,"19132":1,"19133":0,"19134":0,"19135":0,"19136":0,"19137":1,"19138":0,"19139":0,"19140":0,"19141":1,"19142":0,"19143":1,"19144":0,"19145":1,"19146":1,"19147":1,"19148":0,"19149":0,"19150":0,"19151":0,"19152":0,"19153":0,"19154":0,"19155":0,"19156":0,"19157":1,"19158":1,"19159":0,"19160":0,"19161":0,"19162":1,"19163":0,"19164":0,"19165":0,"19166":0,"19167":1,"19168":0,"19169":0,"19170":0,"19171":1,"19172":0,"19173":0,"19174":0,"19175":1,"19176":0,"19177":0,"19178":0,"19179":0,"19180":1,"19181":0,"19182":0,"19183":0,"19184":0,"19185":1,"19186":0,"19187":1,"19188":0,"19189":0,"19190":1,"19191":0,"19192":0,"19193":0,"19194":0,"19195":0,"19196":0,"19197":0,"19198":1,"19199":1,"19200":0,"19201":0,"19202":0,"19203":0,"19204":0,"19205":0,"19206":1,"19207":0,"19208":0,"19209":1,"19210":0,"19211":1,"19212":1,"19213":1,"19214":0,"19215":0,"19216":0,"19217":1,"19218":1,"19219":0,"19220":0,"19221":1,"19222":1,"19223":0,"19224":0,"19225":0,"19226":0,"19227":1,"19228":0,"19229":1,"19230":1,"19231":0,"19232":0,"19233":0,"19234":1,"19235":1,"19236":0,"19237":0,"19238":0,"19239":0,"19240":0,"19241":0,"19242":0,"19243":0,"19244":0,"19245":0,"19246":0,"19247":0,"19248":1,"19249":0,"19250":1,"19251":1,"19252":0,"19253":0,"19254":0,"19255":0,"19256":0,"19257":0,"19258":1,"19259":1,"19260":0,"19261":0,"19262":0,"19263":0,"19264":0,"19265":0,"19266":0,"19267":0,"19268":1,"19269":0,"19270":1,"19271":0,"19272":0,"19273":1,"19274":0,"19275":0,"19276":1,"19277":0,"19278":1,"19279":0,"19280":0,"19281":1,"19282":0,"19283":0,"19284":0,"19285":0,"19286":0,"19287":0,"19288":0,"19289":0,"19290":0,"19291":0,"19292":0,"19293":0,"19294":0,"19295":0,"19296":0,"19297":0,"19298":0,"19299":0,"19300":0,"19301":1,"19302":1,"19303":1,"19304":1,"19305":0,"19306":1,"19307":0,"19308":1,"19309":0,"19310":0,"19311":0,"19312":0,"19313":1,"19314":0,"19315":0,"19316":0,"19317":0,"19318":0,"19319":0,"19320":0,"19321":0,"19322":0,"19323":0,"19324":0,"19325":0,"19326":0,"19327":0,"19328":1,"19329":0,"19330":1,"19331":1,"19332":0,"19333":0,"19334":1,"19335":0,"19336":0,"19337":0,"19338":0,"19339":0,"19340":0,"19341":0,"19342":0,"19343":0,"19344":0,"19345":0,"19346":0,"19347":0,"19348":0,"19349":1,"19350":0,"19351":0,"19352":0,"19353":1,"19354":0,"19355":0,"19356":0,"19357":0,"19358":0,"19359":0,"19360":0,"19361":0,"19362":0,"19363":0,"19364":0,"19365":0,"19366":0,"19367":0,"19368":0,"19369":0,"19370":0,"19371":0,"19372":0,"19373":0,"19374":0,"19375":0,"19376":0,"19377":0,"19378":0,"19379":1,"19380":0,"19381":0,"19382":0,"19383":0,"19384":0,"19385":0,"19386":0,"19387":0,"19388":1,"19389":0,"19390":0,"19391":1,"19392":0,"19393":0,"19394":1,"19395":1,"19396":0,"19397":1,"19398":0,"19399":0,"19400":0,"19401":1,"19402":1,"19403":0,"19404":1,"19405":1,"19406":0,"19407":0,"19408":0,"19409":0,"19410":0,"19411":0,"19412":0,"19413":0,"19414":0,"19415":0,"19416":0,"19417":0,"19418":0,"19419":1,"19420":0,"19421":0,"19422":0,"19423":0,"19424":0,"19425":0,"19426":1,"19427":1,"19428":0,"19429":0,"19430":0,"19431":1,"19432":0,"19433":0,"19434":0,"19435":0,"19436":0,"19437":1,"19438":0,"19439":0,"19440":1,"19441":0,"19442":0,"19443":0,"19444":0,"19445":0,"19446":0,"19447":0,"19448":0,"19449":0,"19450":0,"19451":0,"19452":0,"19453":0,"19454":0,"19455":0,"19456":0,"19457":1,"19458":0,"19459":0,"19460":0,"19461":0,"19462":0,"19463":0,"19464":1,"19465":0,"19466":0,"19467":0,"19468":1,"19469":1,"19470":0,"19471":0,"19472":0,"19473":1,"19474":1,"19475":0,"19476":1,"19477":0,"19478":0,"19479":0,"19480":0,"19481":0,"19482":0,"19483":1,"19484":0,"19485":0,"19486":0,"19487":1,"19488":0,"19489":0,"19490":0,"19491":1,"19492":0,"19493":0,"19494":0,"19495":0,"19496":0,"19497":0,"19498":0,"19499":0,"19500":1,"19501":1,"19502":0,"19503":1,"19504":0,"19505":0,"19506":1,"19507":0,"19508":1,"19509":0,"19510":1,"19511":1,"19512":0,"19513":0,"19514":0,"19515":0,"19516":1,"19517":0,"19518":0,"19519":0,"19520":0,"19521":0,"19522":1,"19523":0,"19524":0,"19525":0,"19526":1,"19527":1,"19528":0,"19529":0,"19530":0,"19531":1,"19532":1,"19533":1,"19534":1,"19535":1,"19536":0,"19537":0,"19538":0,"19539":0,"19540":0,"19541":0,"19542":1,"19543":0,"19544":0,"19545":1,"19546":0,"19547":0,"19548":0,"19549":0,"19550":0,"19551":0,"19552":0,"19553":0,"19554":1,"19555":0,"19556":0,"19557":0,"19558":0,"19559":0,"19560":0,"19561":0,"19562":0,"19563":1,"19564":0,"19565":0,"19566":1,"19567":0,"19568":0,"19569":0,"19570":0,"19571":1,"19572":1,"19573":0,"19574":0,"19575":0,"19576":0,"19577":0,"19578":0,"19579":0,"19580":0,"19581":0,"19582":0,"19583":0,"19584":0,"19585":0,"19586":0,"19587":0,"19588":0,"19589":0,"19590":0,"19591":0,"19592":0,"19593":0,"19594":0,"19595":0,"19596":0,"19597":0,"19598":0,"19599":0,"19600":0,"19601":0,"19602":0,"19603":1,"19604":0,"19605":0,"19606":0,"19607":0,"19608":0,"19609":0,"19610":1,"19611":0,"19612":0,"19613":0,"19614":0,"19615":1,"19616":0,"19617":0,"19618":0,"19619":0,"19620":0,"19621":1,"19622":0,"19623":0,"19624":0,"19625":0,"19626":0,"19627":1,"19628":1,"19629":0,"19630":0,"19631":0,"19632":0,"19633":0,"19634":0,"19635":0,"19636":1,"19637":0,"19638":1,"19639":0,"19640":0,"19641":0,"19642":1,"19643":0,"19644":0,"19645":0,"19646":0,"19647":0,"19648":1,"19649":0,"19650":1,"19651":0,"19652":1,"19653":0,"19654":0,"19655":1,"19656":0,"19657":0,"19658":0,"19659":1,"19660":0,"19661":0,"19662":0,"19663":0,"19664":0,"19665":0,"19666":1,"19667":1,"19668":0,"19669":0,"19670":0,"19671":0,"19672":0,"19673":0,"19674":1,"19675":1,"19676":0,"19677":0,"19678":1,"19679":0,"19680":0,"19681":0,"19682":0,"19683":0,"19684":0,"19685":0,"19686":0,"19687":0,"19688":0,"19689":0,"19690":0,"19691":1,"19692":0,"19693":0,"19694":1,"19695":0,"19696":0,"19697":0,"19698":1,"19699":1,"19700":0,"19701":0,"19702":0,"19703":0,"19704":0,"19705":0,"19706":0,"19707":0,"19708":1,"19709":0,"19710":0,"19711":0,"19712":1,"19713":1,"19714":1,"19715":0,"19716":0,"19717":0,"19718":1,"19719":0,"19720":0,"19721":0,"19722":1,"19723":1,"19724":0,"19725":1,"19726":1,"19727":1,"19728":1,"19729":0,"19730":0,"19731":0,"19732":0,"19733":0,"19734":0,"19735":0,"19736":0,"19737":0,"19738":1,"19739":0,"19740":1,"19741":0,"19742":1,"19743":0,"19744":0,"19745":0,"19746":0,"19747":0,"19748":0,"19749":0,"19750":0,"19751":0,"19752":0,"19753":0,"19754":1,"19755":0,"19756":0,"19757":0,"19758":0,"19759":0,"19760":0,"19761":1,"19762":0,"19763":1,"19764":0,"19765":0,"19766":0,"19767":0,"19768":0,"19769":0,"19770":1,"19771":0,"19772":0,"19773":0,"19774":1,"19775":1,"19776":1,"19777":0,"19778":1,"19779":0,"19780":1,"19781":0,"19782":0,"19783":0,"19784":0,"19785":0,"19786":0,"19787":0,"19788":0,"19789":0,"19790":0,"19791":0,"19792":1,"19793":0,"19794":1,"19795":1,"19796":0,"19797":0,"19798":0,"19799":0,"19800":0,"19801":0,"19802":1,"19803":0,"19804":0,"19805":0,"19806":0,"19807":0,"19808":0,"19809":0,"19810":0,"19811":0,"19812":0,"19813":0,"19814":0,"19815":0,"19816":1,"19817":0,"19818":0,"19819":0,"19820":1,"19821":0,"19822":1,"19823":0,"19824":0,"19825":0,"19826":0,"19827":0,"19828":1,"19829":0,"19830":1,"19831":0,"19832":0,"19833":0,"19834":0,"19835":1,"19836":0,"19837":1,"19838":0,"19839":1,"19840":1,"19841":0,"19842":0,"19843":0,"19844":0,"19845":1,"19846":0,"19847":0,"19848":0,"19849":1,"19850":0,"19851":0,"19852":1,"19853":1,"19854":1,"19855":1,"19856":0,"19857":0,"19858":0,"19859":1,"19860":0,"19861":0,"19862":0,"19863":0,"19864":0,"19865":0,"19866":1,"19867":0,"19868":0,"19869":0,"19870":0,"19871":0,"19872":0,"19873":0,"19874":0,"19875":0,"19876":0,"19877":0,"19878":1,"19879":0,"19880":0,"19881":1,"19882":0,"19883":0,"19884":0,"19885":1,"19886":0,"19887":0,"19888":0,"19889":0,"19890":0,"19891":0,"19892":0,"19893":0,"19894":0,"19895":0,"19896":0,"19897":0,"19898":0,"19899":1,"19900":0,"19901":0,"19902":0,"19903":1,"19904":1,"19905":1,"19906":1,"19907":0,"19908":0,"19909":0,"19910":0,"19911":0,"19912":0,"19913":1,"19914":1,"19915":0,"19916":0,"19917":0,"19918":0,"19919":0,"19920":0,"19921":0,"19922":0,"19923":0,"19924":1,"19925":0,"19926":1,"19927":0,"19928":1,"19929":1,"19930":1,"19931":0,"19932":0,"19933":0,"19934":0,"19935":1,"19936":0,"19937":1,"19938":1,"19939":0,"19940":0,"19941":0,"19942":0,"19943":0,"19944":1,"19945":0,"19946":0,"19947":0,"19948":1,"19949":0,"19950":0,"19951":0,"19952":1,"19953":0,"19954":0,"19955":0,"19956":0,"19957":0,"19958":0,"19959":0,"19960":0,"19961":1,"19962":0,"19963":0,"19964":0,"19965":1,"19966":0,"19967":0,"19968":0,"19969":0,"19970":0,"19971":0,"19972":0,"19973":1,"19974":1,"19975":0,"19976":0,"19977":0,"19978":1,"19979":0,"19980":0,"19981":0,"19982":0,"19983":0,"19984":0,"19985":1,"19986":0,"19987":1,"19988":0,"19989":0,"19990":0,"19991":1,"19992":1,"19993":1,"19994":1,"19995":0,"19996":0,"19997":0,"19998":0,"19999":0,"20000":0,"20001":0,"20002":0,"20003":0,"20004":0,"20005":0,"20006":0,"20007":0,"20008":0,"20009":0,"20010":0,"20011":0,"20012":0,"20013":0,"20014":0,"20015":0,"20016":1,"20017":0,"20018":0,"20019":1,"20020":0,"20021":1,"20022":1,"20023":0,"20024":0,"20025":0,"20026":0,"20027":1,"20028":0,"20029":1,"20030":0,"20031":0,"20032":0,"20033":0,"20034":0,"20035":0,"20036":0,"20037":0,"20038":0,"20039":0,"20040":0,"20041":0,"20042":0,"20043":0,"20044":0,"20045":0,"20046":0,"20047":0,"20048":0,"20049":0,"20050":0,"20051":0,"20052":0,"20053":1,"20054":0,"20055":0,"20056":0,"20057":0,"20058":0,"20059":0,"20060":0,"20061":0,"20062":0,"20063":0,"20064":0,"20065":1,"20066":1,"20067":0,"20068":0,"20069":1,"20070":0,"20071":0,"20072":0,"20073":0,"20074":1,"20075":1,"20076":1,"20077":0,"20078":1,"20079":1,"20080":0,"20081":0,"20082":0,"20083":0,"20084":0,"20085":1,"20086":0,"20087":0,"20088":1,"20089":0,"20090":0,"20091":1,"20092":0,"20093":1,"20094":0,"20095":0,"20096":0,"20097":0,"20098":0,"20099":0,"20100":0,"20101":1,"20102":1,"20103":1,"20104":0,"20105":1,"20106":1,"20107":0,"20108":0,"20109":0,"20110":0,"20111":0,"20112":0,"20113":0,"20114":0,"20115":0,"20116":0,"20117":0,"20118":0,"20119":1,"20120":0,"20121":0,"20122":0,"20123":1,"20124":0,"20125":1,"20126":0,"20127":0,"20128":0,"20129":0,"20130":1,"20131":1,"20132":1,"20133":0,"20134":0,"20135":0,"20136":0,"20137":0,"20138":1,"20139":0,"20140":0,"20141":0,"20142":0,"20143":0,"20144":1,"20145":0,"20146":0,"20147":1,"20148":0,"20149":0,"20150":0,"20151":0,"20152":0,"20153":0,"20154":0,"20155":0,"20156":0,"20157":1,"20158":0,"20159":1,"20160":0,"20161":0,"20162":0,"20163":0,"20164":0,"20165":0,"20166":1,"20167":0,"20168":1,"20169":0,"20170":1,"20171":0,"20172":0,"20173":0,"20174":0,"20175":0,"20176":0,"20177":1,"20178":1,"20179":0,"20180":1,"20181":0,"20182":0,"20183":1,"20184":0,"20185":0,"20186":1,"20187":0,"20188":1,"20189":0,"20190":0,"20191":0,"20192":0,"20193":1,"20194":0,"20195":0,"20196":0,"20197":0,"20198":1,"20199":0,"20200":0,"20201":1,"20202":1,"20203":0,"20204":0,"20205":0,"20206":0,"20207":1,"20208":0,"20209":0,"20210":1,"20211":1,"20212":0,"20213":1,"20214":1,"20215":0,"20216":0,"20217":0,"20218":0,"20219":0,"20220":0,"20221":0,"20222":0,"20223":0,"20224":0,"20225":0,"20226":0,"20227":0,"20228":0,"20229":0,"20230":0,"20231":0,"20232":1,"20233":1,"20234":0,"20235":1,"20236":0,"20237":1,"20238":0,"20239":0,"20240":0,"20241":1,"20242":0,"20243":0,"20244":0,"20245":0,"20246":0,"20247":0,"20248":0,"20249":0,"20250":0,"20251":1,"20252":1,"20253":0,"20254":0,"20255":1,"20256":0,"20257":0,"20258":0,"20259":0,"20260":0,"20261":1,"20262":0,"20263":0,"20264":0,"20265":0,"20266":0,"20267":1,"20268":0,"20269":0,"20270":1,"20271":0,"20272":0,"20273":0,"20274":0,"20275":0,"20276":0,"20277":1,"20278":0,"20279":1,"20280":1,"20281":1,"20282":0,"20283":0,"20284":0,"20285":1,"20286":1,"20287":0,"20288":0,"20289":1,"20290":0,"20291":0,"20292":0,"20293":0,"20294":0,"20295":0,"20296":0,"20297":0,"20298":0,"20299":0,"20300":1,"20301":0,"20302":0,"20303":0,"20304":1,"20305":0,"20306":1,"20307":0,"20308":0,"20309":1,"20310":0,"20311":0,"20312":0,"20313":0,"20314":1,"20315":1,"20316":0,"20317":0,"20318":0,"20319":0,"20320":1,"20321":1,"20322":0,"20323":0,"20324":1,"20325":1,"20326":0,"20327":1,"20328":0,"20329":0,"20330":0,"20331":0,"20332":1,"20333":0,"20334":1,"20335":0,"20336":0,"20337":0,"20338":0,"20339":0,"20340":0,"20341":0,"20342":0,"20343":0,"20344":0,"20345":0,"20346":0,"20347":0,"20348":0,"20349":0,"20350":0,"20351":0,"20352":1,"20353":0,"20354":0,"20355":1,"20356":0,"20357":1,"20358":0,"20359":1,"20360":0,"20361":0,"20362":0,"20363":0,"20364":0,"20365":0,"20366":0,"20367":1,"20368":0,"20369":0,"20370":1,"20371":0,"20372":0,"20373":1,"20374":1,"20375":0,"20376":0,"20377":0,"20378":1,"20379":0,"20380":0,"20381":1,"20382":0,"20383":0,"20384":0,"20385":1,"20386":0,"20387":0,"20388":0,"20389":0,"20390":1,"20391":0,"20392":0,"20393":0,"20394":1,"20395":0,"20396":0,"20397":0,"20398":0,"20399":0,"20400":0,"20401":0,"20402":0,"20403":1,"20404":0,"20405":0,"20406":0,"20407":0,"20408":1,"20409":0,"20410":1,"20411":0,"20412":0,"20413":0,"20414":0,"20415":0,"20416":1,"20417":0,"20418":0,"20419":0,"20420":0,"20421":0,"20422":0,"20423":0,"20424":0,"20425":0,"20426":0,"20427":0,"20428":0,"20429":0,"20430":0,"20431":1,"20432":0,"20433":0,"20434":0,"20435":0,"20436":0,"20437":0,"20438":1,"20439":0,"20440":0,"20441":0,"20442":1,"20443":1,"20444":1,"20445":0,"20446":0,"20447":0,"20448":0,"20449":1,"20450":1,"20451":0,"20452":0,"20453":1,"20454":0,"20455":0,"20456":1,"20457":0,"20458":0,"20459":0,"20460":0,"20461":0,"20462":0,"20463":0,"20464":0,"20465":0,"20466":0,"20467":0,"20468":0,"20469":0,"20470":0,"20471":1,"20472":0,"20473":0,"20474":0,"20475":0,"20476":0,"20477":1,"20478":0,"20479":0,"20480":1,"20481":0,"20482":1,"20483":0,"20484":0,"20485":0,"20486":0,"20487":0,"20488":0,"20489":0,"20490":0,"20491":0,"20492":0,"20493":0,"20494":1,"20495":0,"20496":1,"20497":1,"20498":0,"20499":0,"20500":0,"20501":0,"20502":0,"20503":0,"20504":1,"20505":0,"20506":0,"20507":0,"20508":0,"20509":0,"20510":0,"20511":1,"20512":0,"20513":0,"20514":0,"20515":1,"20516":0,"20517":0,"20518":1,"20519":1,"20520":0,"20521":1,"20522":0,"20523":0,"20524":1,"20525":0,"20526":1,"20527":0,"20528":0,"20529":1,"20530":1,"20531":1,"20532":0,"20533":0,"20534":0,"20535":1,"20536":0,"20537":0,"20538":0,"20539":0,"20540":0,"20541":0,"20542":0,"20543":0,"20544":0,"20545":1,"20546":0,"20547":1,"20548":0,"20549":1,"20550":0,"20551":0,"20552":0,"20553":1,"20554":0,"20555":0,"20556":0,"20557":0,"20558":1,"20559":1,"20560":0,"20561":0,"20562":0,"20563":0,"20564":1,"20565":0,"20566":0,"20567":1,"20568":1,"20569":0,"20570":0,"20571":0,"20572":0,"20573":1,"20574":0,"20575":0,"20576":0,"20577":1,"20578":1,"20579":1,"20580":0,"20581":0,"20582":1,"20583":0,"20584":0,"20585":0,"20586":0,"20587":0,"20588":0,"20589":0,"20590":0,"20591":1,"20592":0,"20593":0,"20594":1,"20595":1,"20596":0,"20597":0,"20598":0,"20599":1,"20600":0,"20601":0,"20602":0,"20603":0,"20604":0,"20605":0,"20606":1,"20607":0,"20608":0,"20609":1,"20610":0,"20611":0,"20612":0,"20613":1,"20614":1,"20615":0,"20616":0,"20617":0,"20618":0,"20619":0,"20620":0,"20621":1,"20622":0,"20623":0,"20624":1,"20625":0,"20626":0,"20627":0,"20628":0,"20629":0,"20630":0,"20631":0,"20632":0,"20633":0,"20634":0,"20635":0,"20636":0,"20637":1,"20638":1,"20639":1,"20640":0,"20641":1,"20642":0,"20643":0,"20644":0,"20645":1,"20646":0,"20647":0,"20648":0,"20649":0,"20650":0,"20651":1,"20652":0,"20653":0,"20654":0,"20655":0,"20656":0,"20657":0,"20658":0,"20659":0,"20660":0,"20661":1,"20662":0,"20663":0,"20664":0,"20665":0,"20666":1,"20667":0,"20668":0,"20669":0,"20670":0,"20671":0,"20672":0,"20673":0,"20674":0,"20675":1,"20676":0,"20677":0,"20678":0,"20679":0,"20680":0,"20681":0,"20682":0,"20683":0,"20684":0,"20685":1,"20686":0,"20687":1,"20688":0,"20689":0,"20690":0,"20691":0,"20692":0,"20693":0,"20694":0,"20695":0,"20696":0,"20697":0,"20698":0,"20699":0,"20700":0,"20701":0,"20702":0,"20703":0,"20704":0,"20705":1,"20706":0,"20707":0,"20708":0,"20709":1,"20710":1,"20711":1,"20712":1,"20713":0,"20714":0,"20715":0,"20716":1,"20717":0,"20718":0,"20719":0,"20720":0,"20721":0,"20722":0,"20723":1,"20724":0,"20725":0,"20726":0,"20727":0,"20728":0,"20729":0,"20730":0,"20731":0,"20732":0,"20733":0,"20734":1,"20735":0,"20736":1,"20737":0,"20738":1,"20739":1,"20740":0,"20741":0,"20742":0,"20743":0,"20744":1,"20745":0,"20746":0,"20747":0,"20748":0,"20749":0,"20750":0,"20751":1,"20752":0,"20753":1,"20754":0,"20755":0,"20756":0,"20757":0,"20758":1,"20759":0,"20760":0,"20761":1,"20762":1,"20763":0,"20764":0,"20765":0,"20766":1,"20767":0,"20768":1,"20769":0,"20770":0,"20771":1,"20772":0,"20773":0,"20774":0,"20775":0,"20776":1,"20777":1,"20778":0,"20779":1,"20780":0,"20781":0,"20782":0,"20783":1,"20784":0,"20785":0,"20786":1,"20787":0,"20788":1,"20789":0,"20790":1,"20791":1,"20792":1,"20793":0,"20794":0,"20795":0,"20796":0,"20797":0,"20798":0,"20799":0,"20800":0,"20801":0,"20802":1,"20803":1,"20804":1,"20805":0,"20806":1,"20807":1,"20808":0,"20809":1,"20810":0,"20811":0,"20812":0,"20813":0,"20814":0,"20815":0,"20816":1,"20817":0,"20818":0,"20819":0,"20820":0,"20821":1,"20822":1,"20823":1,"20824":1,"20825":0,"20826":0,"20827":0,"20828":0,"20829":0,"20830":1,"20831":0,"20832":1,"20833":0,"20834":0,"20835":0,"20836":0,"20837":0,"20838":0,"20839":0,"20840":0,"20841":0,"20842":0,"20843":0,"20844":0,"20845":0,"20846":0,"20847":0,"20848":0,"20849":0,"20850":0,"20851":0,"20852":0,"20853":0,"20854":0,"20855":0,"20856":0,"20857":0,"20858":1,"20859":1,"20860":0,"20861":0,"20862":0,"20863":0,"20864":0,"20865":0,"20866":0,"20867":0,"20868":1,"20869":1,"20870":0,"20871":0,"20872":0,"20873":0,"20874":0,"20875":1,"20876":0,"20877":0,"20878":0,"20879":1,"20880":0,"20881":1,"20882":0,"20883":1,"20884":0,"20885":1,"20886":0,"20887":0,"20888":0,"20889":0,"20890":0,"20891":0,"20892":0,"20893":1,"20894":0,"20895":0,"20896":0,"20897":1,"20898":1,"20899":0,"20900":0,"20901":1,"20902":0,"20903":0,"20904":0,"20905":1,"20906":0,"20907":0,"20908":0,"20909":1,"20910":1,"20911":1,"20912":1,"20913":0,"20914":0,"20915":0,"20916":0,"20917":0,"20918":0,"20919":0,"20920":0,"20921":0,"20922":0,"20923":1,"20924":0,"20925":1,"20926":0,"20927":0,"20928":0,"20929":0,"20930":1,"20931":0,"20932":1,"20933":0,"20934":1,"20935":0,"20936":0,"20937":0,"20938":0,"20939":0,"20940":1,"20941":0,"20942":0,"20943":0,"20944":0,"20945":0,"20946":1,"20947":0,"20948":0,"20949":0,"20950":1,"20951":0,"20952":1,"20953":1,"20954":0,"20955":0,"20956":0,"20957":0,"20958":0,"20959":0,"20960":0,"20961":1,"20962":1,"20963":0,"20964":0,"20965":1,"20966":0,"20967":1,"20968":0,"20969":1,"20970":0,"20971":0,"20972":0,"20973":0,"20974":0,"20975":0,"20976":0,"20977":1,"20978":1,"20979":0,"20980":0,"20981":1,"20982":0,"20983":0,"20984":0,"20985":1,"20986":1,"20987":0,"20988":0,"20989":0,"20990":0,"20991":1,"20992":1,"20993":0,"20994":0,"20995":0,"20996":0,"20997":1,"20998":0,"20999":0,"21000":0,"21001":1,"21002":0,"21003":0,"21004":0,"21005":0,"21006":0,"21007":1,"21008":0,"21009":1,"21010":0,"21011":1,"21012":0,"21013":0,"21014":0,"21015":0,"21016":0,"21017":0,"21018":0,"21019":0,"21020":0,"21021":0,"21022":0,"21023":0,"21024":0,"21025":0,"21026":0,"21027":1,"21028":0,"21029":0,"21030":0,"21031":0,"21032":0,"21033":0,"21034":0,"21035":0,"21036":0,"21037":0,"21038":0,"21039":0,"21040":1,"21041":0,"21042":1,"21043":0,"21044":0,"21045":0,"21046":0,"21047":1,"21048":0,"21049":0,"21050":0,"21051":0,"21052":1,"21053":0,"21054":1,"21055":0,"21056":0,"21057":0,"21058":0,"21059":1,"21060":0,"21061":0,"21062":0,"21063":0,"21064":0,"21065":0,"21066":1,"21067":0,"21068":0,"21069":0,"21070":0,"21071":1,"21072":0,"21073":1,"21074":1,"21075":0,"21076":0,"21077":0,"21078":0,"21079":0,"21080":0,"21081":1,"21082":0,"21083":1,"21084":0,"21085":0,"21086":0,"21087":0,"21088":1,"21089":0,"21090":0,"21091":1,"21092":0,"21093":0,"21094":0,"21095":1,"21096":0,"21097":0,"21098":0,"21099":0,"21100":0,"21101":0,"21102":0,"21103":1,"21104":0,"21105":0,"21106":1,"21107":0,"21108":1,"21109":0,"21110":0,"21111":0,"21112":0,"21113":0,"21114":1,"21115":1,"21116":1,"21117":1,"21118":1,"21119":1,"21120":0,"21121":1,"21122":1,"21123":0,"21124":0,"21125":1,"21126":0,"21127":0,"21128":0,"21129":0,"21130":1,"21131":0,"21132":1,"21133":0,"21134":1,"21135":0,"21136":0,"21137":0,"21138":1,"21139":0,"21140":0,"21141":1,"21142":0,"21143":0,"21144":0,"21145":0,"21146":0,"21147":0,"21148":0,"21149":1,"21150":0,"21151":0,"21152":0,"21153":0,"21154":0,"21155":0,"21156":0,"21157":1,"21158":0,"21159":1,"21160":0,"21161":1,"21162":0,"21163":0,"21164":0,"21165":1,"21166":0,"21167":1,"21168":1,"21169":1,"21170":1,"21171":0,"21172":0,"21173":1,"21174":1,"21175":1,"21176":1,"21177":0,"21178":0,"21179":0,"21180":0,"21181":0,"21182":0,"21183":0,"21184":0,"21185":1,"21186":0,"21187":1,"21188":0,"21189":0,"21190":0,"21191":0,"21192":0,"21193":0,"21194":1,"21195":0,"21196":0,"21197":1,"21198":0,"21199":0,"21200":1,"21201":0,"21202":0,"21203":1,"21204":1,"21205":0,"21206":0,"21207":0,"21208":0,"21209":0,"21210":0,"21211":0,"21212":0,"21213":0,"21214":0,"21215":1,"21216":0,"21217":0,"21218":1,"21219":0,"21220":0,"21221":1,"21222":0,"21223":1,"21224":1,"21225":0,"21226":0,"21227":0,"21228":0,"21229":0,"21230":1,"21231":0,"21232":0,"21233":0,"21234":1,"21235":0,"21236":0,"21237":0,"21238":0,"21239":0,"21240":0,"21241":1,"21242":0,"21243":0,"21244":1,"21245":0,"21246":0,"21247":0,"21248":1,"21249":0,"21250":1,"21251":0,"21252":0,"21253":0,"21254":0,"21255":1,"21256":0,"21257":0,"21258":0,"21259":0,"21260":0,"21261":1,"21262":0,"21263":0,"21264":0,"21265":0,"21266":0,"21267":0,"21268":0,"21269":1,"21270":0,"21271":0,"21272":0,"21273":0,"21274":0,"21275":0,"21276":0,"21277":1,"21278":0,"21279":1,"21280":0,"21281":0,"21282":1,"21283":0,"21284":0,"21285":0,"21286":0,"21287":0,"21288":1,"21289":0,"21290":1,"21291":1,"21292":0,"21293":0,"21294":1,"21295":0,"21296":0,"21297":0,"21298":1,"21299":0,"21300":0,"21301":0,"21302":1,"21303":0,"21304":0,"21305":1,"21306":0,"21307":0,"21308":1,"21309":0,"21310":0,"21311":0,"21312":0,"21313":0,"21314":0,"21315":0,"21316":0,"21317":0,"21318":0,"21319":0,"21320":0,"21321":0,"21322":0,"21323":0,"21324":0,"21325":1,"21326":0,"21327":0,"21328":1,"21329":0,"21330":0,"21331":0,"21332":0,"21333":0,"21334":0,"21335":0,"21336":0,"21337":0,"21338":0,"21339":0,"21340":0,"21341":0,"21342":1,"21343":0,"21344":0,"21345":0,"21346":0,"21347":0,"21348":1,"21349":0,"21350":1,"21351":1,"21352":0,"21353":0,"21354":0,"21355":0,"21356":0,"21357":0,"21358":0,"21359":0,"21360":0,"21361":1,"21362":0,"21363":1,"21364":0,"21365":1,"21366":0,"21367":0,"21368":1,"21369":1,"21370":0,"21371":0,"21372":0,"21373":0,"21374":1,"21375":1,"21376":0,"21377":0,"21378":0,"21379":0,"21380":0,"21381":0,"21382":0,"21383":1,"21384":0,"21385":0,"21386":0,"21387":0,"21388":1,"21389":0,"21390":0,"21391":0,"21392":0,"21393":1,"21394":0,"21395":1,"21396":0,"21397":1,"21398":1,"21399":0,"21400":0,"21401":0,"21402":1,"21403":0,"21404":1,"21405":1,"21406":0,"21407":0,"21408":0,"21409":1,"21410":0,"21411":1,"21412":0,"21413":0,"21414":0,"21415":1,"21416":0,"21417":0,"21418":0,"21419":0,"21420":0,"21421":0,"21422":0,"21423":0,"21424":0,"21425":0,"21426":1,"21427":0,"21428":1,"21429":0,"21430":0,"21431":0,"21432":0,"21433":1,"21434":0,"21435":1,"21436":0,"21437":0,"21438":0,"21439":0,"21440":0,"21441":0,"21442":0,"21443":0,"21444":1,"21445":0,"21446":0,"21447":0,"21448":0,"21449":0,"21450":1,"21451":0,"21452":0,"21453":0,"21454":0,"21455":1,"21456":1,"21457":0,"21458":0,"21459":0,"21460":1,"21461":0,"21462":0,"21463":0,"21464":0,"21465":0,"21466":0,"21467":0,"21468":0,"21469":1,"21470":0,"21471":0,"21472":1,"21473":1,"21474":0,"21475":0,"21476":1,"21477":1,"21478":0,"21479":0,"21480":1,"21481":0,"21482":0,"21483":0,"21484":0,"21485":0,"21486":0,"21487":0,"21488":0,"21489":1,"21490":0,"21491":0,"21492":0,"21493":0,"21494":0,"21495":1,"21496":0,"21497":1,"21498":0,"21499":1,"21500":0,"21501":0,"21502":0,"21503":0,"21504":0,"21505":0,"21506":0,"21507":0,"21508":1,"21509":0,"21510":0,"21511":0,"21512":0,"21513":0,"21514":0,"21515":0,"21516":0,"21517":1,"21518":0,"21519":0,"21520":1,"21521":0,"21522":1,"21523":0,"21524":0,"21525":1,"21526":1,"21527":0,"21528":1,"21529":0,"21530":1,"21531":0,"21532":0,"21533":0,"21534":0,"21535":0,"21536":0,"21537":0,"21538":0,"21539":1,"21540":1,"21541":0,"21542":0,"21543":0,"21544":1,"21545":0,"21546":1,"21547":0,"21548":0,"21549":1,"21550":1,"21551":1,"21552":0,"21553":0,"21554":0,"21555":0,"21556":0,"21557":0,"21558":0,"21559":0,"21560":0,"21561":0,"21562":0,"21563":0,"21564":1,"21565":1,"21566":0,"21567":0,"21568":0,"21569":0,"21570":0,"21571":0,"21572":0,"21573":0,"21574":0,"21575":0,"21576":1,"21577":0,"21578":0,"21579":0,"21580":0,"21581":1,"21582":1,"21583":0,"21584":0,"21585":0,"21586":0,"21587":0,"21588":0,"21589":0,"21590":0,"21591":0,"21592":0,"21593":0,"21594":0,"21595":0,"21596":0,"21597":1,"21598":1,"21599":0,"21600":0,"21601":0,"21602":0,"21603":0,"21604":0,"21605":1,"21606":1,"21607":0,"21608":1,"21609":0,"21610":0,"21611":1,"21612":1,"21613":0,"21614":0,"21615":0,"21616":1,"21617":0,"21618":0,"21619":0,"21620":1,"21621":0,"21622":1,"21623":0,"21624":0,"21625":0,"21626":0,"21627":1,"21628":0,"21629":0,"21630":1,"21631":0,"21632":0,"21633":0,"21634":0,"21635":0,"21636":0,"21637":0,"21638":0,"21639":0,"21640":1,"21641":1,"21642":1,"21643":0,"21644":0,"21645":1,"21646":1,"21647":1,"21648":0,"21649":1,"21650":1,"21651":0,"21652":0,"21653":0,"21654":0,"21655":1,"21656":0,"21657":0,"21658":1,"21659":0,"21660":0,"21661":1,"21662":0,"21663":0,"21664":0,"21665":0,"21666":1,"21667":0,"21668":0,"21669":0,"21670":0,"21671":0,"21672":0,"21673":1,"21674":0,"21675":0,"21676":0,"21677":0,"21678":0,"21679":0,"21680":1,"21681":0,"21682":1,"21683":0,"21684":0,"21685":0,"21686":0,"21687":0,"21688":0,"21689":0,"21690":0,"21691":0,"21692":0,"21693":0,"21694":0,"21695":0,"21696":0,"21697":0,"21698":1,"21699":1,"21700":1,"21701":1,"21702":0,"21703":1,"21704":1,"21705":1,"21706":0,"21707":0,"21708":1,"21709":1,"21710":0,"21711":0,"21712":0,"21713":0,"21714":1,"21715":0,"21716":0,"21717":0,"21718":0,"21719":0,"21720":0,"21721":0,"21722":0,"21723":0,"21724":1,"21725":0,"21726":0,"21727":1,"21728":0,"21729":0,"21730":0,"21731":0,"21732":0,"21733":0,"21734":0,"21735":1,"21736":0,"21737":0,"21738":0,"21739":0,"21740":1,"21741":0,"21742":0,"21743":0,"21744":1,"21745":0,"21746":1,"21747":0,"21748":1,"21749":0,"21750":0,"21751":0,"21752":0,"21753":0,"21754":0,"21755":0,"21756":0,"21757":0,"21758":1,"21759":0,"21760":0,"21761":0,"21762":0,"21763":0,"21764":0,"21765":1,"21766":1,"21767":1,"21768":0,"21769":0,"21770":0,"21771":1,"21772":0,"21773":0,"21774":1,"21775":0,"21776":0,"21777":1,"21778":1,"21779":0,"21780":0,"21781":0,"21782":0,"21783":0,"21784":0,"21785":1,"21786":1,"21787":0,"21788":0,"21789":0,"21790":0,"21791":1,"21792":0,"21793":0,"21794":0,"21795":0,"21796":0,"21797":0,"21798":0,"21799":0,"21800":0,"21801":1,"21802":0,"21803":1,"21804":0,"21805":0,"21806":0,"21807":0,"21808":0,"21809":0,"21810":0,"21811":0,"21812":1,"21813":0,"21814":1,"21815":0,"21816":0,"21817":1,"21818":1,"21819":0,"21820":0,"21821":0,"21822":1,"21823":1,"21824":0,"21825":0,"21826":0,"21827":0,"21828":0,"21829":0,"21830":0,"21831":1,"21832":0,"21833":0,"21834":0,"21835":0,"21836":0,"21837":1,"21838":1,"21839":1,"21840":0,"21841":1,"21842":0,"21843":0,"21844":0,"21845":1,"21846":0,"21847":0,"21848":0,"21849":0,"21850":0,"21851":0,"21852":0,"21853":0,"21854":0,"21855":0,"21856":0,"21857":0,"21858":0,"21859":0,"21860":0,"21861":0,"21862":0,"21863":0,"21864":0,"21865":0,"21866":1,"21867":0,"21868":0,"21869":0,"21870":0,"21871":0,"21872":0,"21873":0,"21874":0,"21875":0,"21876":0,"21877":1,"21878":1,"21879":0,"21880":0,"21881":0,"21882":0,"21883":0,"21884":0,"21885":0,"21886":0,"21887":0,"21888":0,"21889":0,"21890":1,"21891":1,"21892":0,"21893":0,"21894":1,"21895":0,"21896":1,"21897":0,"21898":1,"21899":1,"21900":0,"21901":1,"21902":0,"21903":0,"21904":0,"21905":0,"21906":1,"21907":0,"21908":0,"21909":1,"21910":0,"21911":1,"21912":0,"21913":0,"21914":0,"21915":0,"21916":0,"21917":0,"21918":0,"21919":0,"21920":0,"21921":0,"21922":0,"21923":0,"21924":1,"21925":0,"21926":0,"21927":0,"21928":1,"21929":0,"21930":0,"21931":1,"21932":1,"21933":0,"21934":0,"21935":0,"21936":0,"21937":0,"21938":1,"21939":1,"21940":1,"21941":0,"21942":0,"21943":0,"21944":0,"21945":0,"21946":0,"21947":0,"21948":0,"21949":1,"21950":0,"21951":0,"21952":0,"21953":0,"21954":0,"21955":0,"21956":0,"21957":0,"21958":0,"21959":0,"21960":1,"21961":0,"21962":1,"21963":0,"21964":0,"21965":0,"21966":1,"21967":0,"21968":1,"21969":0,"21970":1,"21971":1,"21972":0,"21973":0,"21974":0,"21975":0,"21976":0,"21977":0,"21978":0,"21979":0,"21980":1,"21981":1,"21982":0,"21983":0,"21984":1,"21985":0,"21986":1,"21987":0,"21988":0,"21989":0,"21990":0,"21991":0,"21992":0,"21993":1,"21994":0,"21995":0,"21996":0,"21997":0,"21998":0,"21999":0,"22000":0,"22001":1,"22002":0,"22003":0,"22004":0,"22005":0,"22006":0,"22007":0,"22008":1,"22009":0,"22010":0,"22011":0,"22012":1,"22013":1,"22014":0,"22015":0,"22016":0,"22017":0,"22018":0,"22019":0,"22020":0,"22021":0,"22022":0,"22023":1,"22024":0,"22025":0,"22026":1,"22027":0,"22028":1,"22029":0,"22030":0,"22031":0,"22032":1,"22033":0,"22034":0,"22035":0,"22036":0,"22037":0,"22038":0,"22039":0,"22040":0,"22041":0,"22042":0,"22043":0,"22044":1,"22045":0,"22046":0,"22047":0,"22048":0,"22049":0,"22050":1,"22051":0,"22052":0,"22053":0,"22054":0,"22055":1,"22056":1,"22057":0,"22058":1,"22059":0,"22060":0,"22061":0,"22062":0,"22063":1,"22064":0,"22065":0,"22066":0,"22067":0,"22068":0,"22069":0,"22070":1,"22071":0,"22072":0,"22073":0,"22074":1,"22075":1,"22076":0,"22077":0,"22078":0,"22079":1,"22080":0,"22081":1,"22082":1,"22083":1,"22084":0,"22085":0,"22086":0,"22087":0,"22088":0,"22089":0,"22090":0,"22091":1,"22092":0,"22093":0,"22094":0,"22095":1,"22096":1,"22097":0,"22098":1,"22099":0,"22100":0,"22101":1,"22102":0,"22103":0,"22104":0,"22105":1,"22106":0,"22107":0,"22108":0,"22109":1,"22110":0,"22111":0,"22112":0,"22113":0,"22114":0,"22115":0,"22116":1,"22117":1,"22118":0,"22119":1,"22120":0,"22121":0,"22122":1,"22123":1,"22124":1,"22125":1,"22126":0,"22127":0,"22128":0,"22129":1,"22130":1,"22131":0,"22132":0,"22133":0,"22134":0,"22135":0,"22136":0,"22137":0,"22138":0,"22139":1,"22140":0,"22141":0,"22142":0,"22143":0,"22144":0,"22145":0,"22146":0,"22147":0,"22148":0,"22149":0,"22150":0,"22151":0,"22152":0,"22153":0,"22154":0,"22155":0,"22156":0,"22157":0,"22158":0,"22159":0,"22160":1,"22161":0,"22162":0,"22163":1,"22164":1,"22165":0,"22166":0,"22167":0,"22168":0,"22169":0,"22170":1,"22171":1,"22172":0,"22173":0,"22174":1,"22175":0,"22176":1,"22177":1,"22178":0,"22179":1,"22180":1,"22181":0,"22182":0,"22183":0,"22184":0,"22185":0,"22186":1,"22187":0,"22188":0,"22189":0,"22190":0,"22191":0,"22192":0,"22193":0,"22194":0,"22195":0,"22196":0,"22197":0,"22198":0,"22199":1,"22200":0,"22201":1,"22202":0,"22203":1,"22204":1,"22205":1,"22206":1,"22207":0,"22208":1,"22209":0,"22210":0,"22211":0,"22212":0,"22213":0,"22214":0,"22215":0,"22216":0,"22217":1,"22218":0,"22219":0,"22220":0,"22221":0,"22222":1,"22223":0,"22224":0,"22225":0,"22226":0,"22227":1,"22228":1,"22229":1,"22230":0,"22231":0,"22232":0,"22233":0,"22234":1,"22235":0,"22236":0,"22237":1,"22238":0,"22239":0,"22240":0,"22241":1,"22242":0,"22243":0,"22244":0,"22245":1,"22246":1,"22247":0,"22248":0,"22249":0,"22250":0,"22251":0,"22252":0,"22253":0,"22254":1,"22255":0,"22256":0,"22257":0,"22258":0,"22259":1,"22260":0,"22261":0,"22262":0,"22263":0,"22264":1,"22265":0,"22266":1,"22267":1,"22268":0,"22269":0,"22270":0,"22271":1,"22272":0,"22273":0,"22274":0,"22275":1,"22276":0,"22277":0,"22278":0,"22279":1,"22280":1,"22281":0,"22282":0,"22283":1,"22284":0,"22285":1,"22286":1,"22287":0,"22288":0,"22289":1,"22290":0,"22291":0,"22292":1,"22293":0,"22294":0,"22295":0,"22296":0,"22297":0,"22298":0,"22299":0,"22300":0,"22301":0,"22302":0,"22303":0,"22304":0,"22305":0,"22306":0,"22307":0,"22308":0,"22309":0,"22310":0,"22311":0,"22312":0,"22313":1,"22314":0,"22315":1,"22316":0,"22317":1,"22318":0,"22319":0,"22320":0,"22321":1,"22322":0,"22323":1,"22324":0,"22325":0,"22326":0,"22327":1,"22328":0,"22329":0,"22330":0,"22331":0,"22332":0,"22333":0,"22334":0,"22335":1,"22336":0,"22337":0,"22338":0,"22339":1,"22340":0,"22341":1,"22342":1,"22343":0,"22344":0,"22345":1,"22346":1,"22347":0,"22348":0,"22349":0,"22350":0,"22351":1,"22352":0,"22353":0,"22354":0,"22355":0,"22356":0,"22357":1,"22358":1,"22359":0,"22360":0,"22361":0,"22362":0,"22363":0,"22364":1,"22365":0,"22366":0,"22367":0,"22368":0,"22369":0,"22370":0,"22371":0,"22372":0,"22373":1,"22374":1,"22375":0,"22376":1,"22377":0,"22378":0,"22379":1,"22380":1,"22381":0,"22382":0,"22383":0,"22384":0,"22385":0,"22386":0,"22387":0,"22388":0,"22389":0,"22390":0,"22391":1,"22392":0,"22393":0,"22394":1,"22395":0,"22396":0,"22397":1,"22398":0,"22399":0,"22400":0,"22401":0,"22402":0,"22403":1,"22404":0,"22405":0,"22406":1,"22407":0,"22408":1,"22409":0,"22410":0,"22411":0,"22412":0,"22413":1,"22414":0,"22415":1,"22416":1,"22417":0,"22418":0,"22419":0,"22420":0,"22421":0,"22422":1,"22423":1,"22424":0,"22425":0,"22426":0,"22427":0,"22428":0,"22429":0,"22430":0,"22431":0,"22432":0,"22433":1,"22434":0,"22435":1,"22436":1,"22437":0,"22438":0,"22439":0,"22440":1,"22441":0,"22442":1,"22443":1,"22444":0,"22445":0,"22446":1,"22447":0,"22448":0,"22449":1,"22450":0,"22451":1,"22452":0,"22453":0,"22454":0,"22455":0,"22456":0,"22457":0,"22458":1,"22459":1,"22460":0,"22461":0,"22462":1,"22463":0,"22464":0,"22465":0,"22466":0,"22467":1,"22468":1,"22469":0,"22470":0,"22471":0,"22472":0,"22473":0,"22474":0,"22475":0,"22476":0,"22477":0,"22478":0,"22479":1,"22480":0,"22481":0,"22482":1,"22483":0,"22484":0,"22485":0,"22486":0,"22487":1,"22488":0,"22489":1,"22490":0,"22491":0,"22492":0,"22493":0,"22494":0,"22495":1,"22496":0,"22497":0,"22498":1,"22499":1,"22500":0,"22501":1,"22502":0,"22503":0,"22504":1,"22505":0,"22506":0,"22507":0,"22508":0,"22509":0,"22510":0,"22511":0,"22512":1,"22513":0,"22514":0,"22515":0,"22516":0,"22517":1,"22518":0,"22519":1,"22520":0,"22521":1,"22522":1,"22523":0,"22524":1,"22525":1,"22526":0,"22527":0,"22528":0,"22529":0,"22530":0,"22531":1,"22532":0,"22533":0,"22534":0,"22535":0,"22536":1,"22537":1,"22538":0,"22539":0,"22540":1,"22541":0,"22542":0,"22543":0,"22544":0,"22545":0,"22546":0,"22547":0,"22548":1,"22549":0,"22550":0,"22551":0,"22552":1,"22553":1,"22554":0,"22555":0,"22556":0,"22557":0,"22558":0,"22559":1,"22560":0,"22561":0,"22562":0,"22563":0,"22564":0,"22565":0,"22566":0,"22567":1,"22568":1,"22569":1,"22570":0,"22571":0,"22572":0,"22573":0,"22574":0,"22575":0,"22576":0,"22577":0,"22578":0,"22579":0,"22580":1,"22581":0,"22582":0,"22583":0,"22584":0,"22585":0,"22586":1,"22587":0,"22588":0,"22589":0,"22590":1,"22591":0,"22592":1,"22593":0,"22594":0,"22595":1,"22596":0,"22597":0,"22598":0,"22599":1,"22600":0,"22601":0,"22602":1,"22603":0,"22604":0,"22605":0,"22606":0,"22607":0,"22608":0,"22609":0,"22610":1,"22611":0,"22612":0,"22613":0,"22614":0,"22615":1,"22616":0,"22617":0,"22618":0,"22619":0,"22620":0,"22621":0,"22622":0,"22623":0,"22624":0,"22625":0,"22626":0,"22627":1,"22628":0,"22629":1,"22630":0,"22631":0,"22632":0,"22633":1,"22634":0,"22635":0,"22636":0,"22637":0,"22638":0,"22639":0,"22640":0,"22641":0,"22642":0,"22643":0,"22644":0,"22645":0,"22646":0,"22647":1,"22648":0,"22649":0,"22650":0,"22651":0,"22652":0,"22653":1,"22654":0,"22655":0,"22656":0,"22657":1,"22658":0,"22659":0,"22660":0,"22661":0,"22662":0,"22663":0,"22664":0,"22665":0,"22666":1,"22667":0,"22668":0,"22669":0,"22670":0,"22671":0,"22672":0,"22673":0,"22674":1,"22675":1,"22676":0,"22677":1,"22678":0,"22679":0,"22680":1,"22681":0,"22682":0,"22683":0,"22684":0,"22685":0,"22686":0,"22687":1,"22688":1,"22689":0,"22690":0,"22691":0,"22692":1,"22693":0,"22694":0,"22695":0,"22696":0,"22697":0,"22698":1,"22699":1,"22700":0,"22701":1,"22702":0,"22703":1,"22704":1,"22705":0,"22706":0,"22707":0,"22708":0,"22709":0,"22710":0,"22711":0,"22712":0,"22713":0,"22714":0,"22715":0,"22716":0,"22717":0,"22718":1,"22719":0,"22720":0,"22721":1,"22722":0,"22723":0,"22724":1,"22725":0,"22726":1,"22727":0,"22728":0,"22729":0,"22730":0,"22731":0,"22732":1,"22733":0,"22734":1,"22735":0,"22736":1,"22737":0,"22738":0,"22739":0,"22740":0,"22741":1,"22742":1,"22743":0,"22744":1,"22745":0,"22746":1,"22747":0,"22748":0,"22749":1,"22750":0,"22751":0,"22752":0,"22753":1,"22754":0,"22755":0,"22756":0,"22757":1,"22758":1,"22759":0,"22760":1,"22761":0,"22762":0,"22763":0,"22764":0,"22765":0,"22766":0,"22767":0,"22768":0,"22769":0,"22770":0,"22771":0,"22772":0,"22773":1,"22774":0,"22775":0,"22776":0,"22777":1,"22778":0,"22779":1,"22780":0,"22781":0,"22782":0,"22783":1,"22784":1,"22785":0,"22786":0,"22787":0,"22788":0,"22789":1,"22790":1,"22791":0,"22792":1,"22793":0,"22794":0,"22795":0,"22796":0,"22797":0,"22798":1,"22799":0,"22800":1,"22801":0,"22802":1,"22803":1,"22804":0,"22805":0,"22806":0,"22807":1,"22808":0,"22809":0,"22810":1,"22811":0,"22812":1,"22813":0,"22814":0,"22815":1,"22816":1,"22817":0,"22818":0,"22819":0,"22820":0,"22821":0,"22822":0,"22823":1,"22824":0,"22825":1,"22826":0,"22827":1,"22828":0,"22829":1,"22830":0,"22831":0,"22832":0,"22833":0,"22834":0,"22835":0,"22836":0,"22837":0,"22838":0,"22839":0,"22840":0,"22841":1,"22842":0,"22843":0,"22844":0,"22845":0,"22846":0,"22847":0,"22848":0,"22849":0,"22850":0,"22851":0,"22852":0,"22853":1,"22854":0,"22855":0,"22856":0,"22857":0,"22858":0,"22859":0,"22860":1,"22861":1,"22862":1,"22863":0,"22864":0,"22865":0,"22866":0,"22867":0,"22868":0,"22869":0,"22870":0,"22871":0,"22872":1,"22873":1,"22874":1,"22875":0,"22876":0,"22877":0,"22878":1,"22879":1,"22880":0,"22881":1,"22882":0,"22883":0,"22884":0,"22885":0,"22886":0,"22887":0,"22888":0,"22889":0,"22890":0,"22891":0,"22892":1,"22893":1,"22894":1,"22895":0,"22896":0,"22897":0,"22898":0,"22899":0,"22900":0,"22901":0,"22902":0,"22903":0,"22904":0,"22905":0,"22906":0,"22907":0,"22908":0,"22909":0,"22910":1,"22911":1,"22912":0,"22913":0,"22914":1,"22915":1,"22916":1,"22917":0,"22918":0,"22919":1,"22920":0,"22921":0,"22922":1,"22923":0,"22924":0,"22925":0,"22926":1,"22927":0,"22928":0,"22929":0,"22930":0,"22931":1,"22932":0,"22933":0,"22934":0,"22935":1,"22936":0,"22937":0,"22938":1,"22939":0,"22940":0,"22941":0,"22942":0,"22943":1,"22944":0,"22945":1,"22946":0,"22947":1,"22948":0,"22949":1,"22950":0,"22951":1,"22952":0,"22953":1,"22954":0,"22955":0,"22956":0,"22957":0,"22958":0,"22959":1,"22960":0,"22961":0,"22962":1,"22963":0,"22964":1,"22965":0,"22966":0,"22967":0,"22968":0,"22969":0,"22970":0,"22971":0,"22972":0,"22973":1,"22974":0,"22975":1,"22976":0,"22977":0,"22978":0,"22979":0,"22980":1,"22981":0,"22982":0,"22983":1,"22984":0,"22985":1,"22986":0,"22987":0,"22988":0,"22989":0,"22990":1,"22991":0,"22992":1,"22993":0,"22994":0,"22995":0,"22996":0,"22997":0,"22998":0,"22999":0,"23000":0,"23001":0,"23002":0,"23003":0,"23004":0,"23005":1,"23006":0,"23007":0,"23008":0,"23009":0,"23010":0,"23011":0,"23012":0,"23013":1,"23014":0,"23015":0,"23016":0,"23017":0,"23018":0,"23019":0,"23020":0,"23021":0,"23022":0,"23023":1,"23024":0,"23025":1,"23026":0,"23027":0,"23028":0,"23029":0,"23030":0,"23031":0,"23032":0,"23033":0,"23034":0,"23035":0,"23036":0,"23037":0,"23038":0,"23039":0,"23040":0,"23041":1,"23042":0,"23043":0,"23044":0,"23045":0,"23046":0,"23047":0,"23048":1,"23049":1,"23050":0,"23051":1,"23052":1,"23053":0,"23054":0,"23055":1,"23056":1,"23057":0,"23058":0,"23059":0,"23060":0,"23061":1,"23062":1,"23063":0,"23064":0,"23065":1,"23066":0,"23067":1,"23068":1,"23069":0,"23070":1,"23071":0,"23072":0,"23073":0,"23074":0,"23075":0,"23076":0,"23077":0,"23078":0,"23079":0,"23080":0,"23081":0,"23082":1,"23083":0,"23084":1,"23085":0,"23086":1,"23087":0,"23088":0,"23089":0,"23090":0,"23091":0,"23092":0,"23093":0,"23094":0,"23095":0,"23096":0,"23097":0,"23098":1,"23099":0,"23100":1,"23101":0,"23102":0,"23103":0,"23104":0,"23105":1,"23106":0,"23107":0,"23108":0,"23109":0,"23110":0,"23111":0,"23112":0,"23113":1,"23114":1,"23115":0,"23116":1,"23117":0,"23118":0,"23119":0,"23120":1,"23121":0,"23122":1,"23123":0,"23124":0,"23125":1,"23126":1,"23127":0,"23128":1,"23129":0,"23130":0,"23131":0,"23132":1,"23133":0,"23134":0,"23135":0,"23136":0,"23137":1,"23138":0,"23139":1,"23140":1,"23141":0,"23142":1,"23143":0,"23144":0,"23145":0,"23146":0,"23147":1,"23148":0,"23149":0,"23150":0,"23151":0,"23152":0,"23153":0,"23154":0,"23155":1,"23156":0,"23157":0,"23158":0,"23159":0,"23160":1,"23161":0,"23162":0,"23163":0,"23164":0,"23165":0,"23166":1,"23167":0,"23168":0,"23169":0,"23170":1,"23171":0,"23172":0,"23173":0,"23174":0,"23175":0,"23176":0,"23177":0,"23178":0,"23179":0,"23180":0,"23181":0,"23182":0,"23183":1,"23184":0,"23185":0,"23186":1,"23187":0,"23188":1,"23189":0,"23190":1,"23191":1,"23192":0,"23193":0,"23194":0,"23195":0,"23196":0,"23197":0,"23198":0,"23199":1,"23200":0,"23201":0,"23202":0,"23203":0,"23204":1,"23205":0,"23206":1,"23207":1,"23208":0,"23209":1,"23210":0,"23211":0,"23212":0,"23213":0,"23214":0,"23215":1,"23216":0,"23217":1,"23218":1,"23219":0,"23220":0,"23221":1,"23222":0,"23223":0,"23224":1,"23225":0,"23226":0,"23227":1,"23228":0,"23229":1,"23230":0,"23231":0,"23232":0,"23233":0,"23234":1,"23235":0,"23236":0,"23237":0,"23238":0,"23239":1,"23240":0,"23241":0,"23242":0,"23243":0,"23244":0,"23245":0,"23246":0,"23247":1,"23248":0,"23249":0,"23250":1,"23251":0,"23252":0,"23253":0,"23254":0,"23255":0,"23256":0,"23257":0,"23258":0,"23259":0,"23260":1,"23261":1,"23262":0,"23263":0,"23264":1,"23265":0,"23266":0,"23267":0,"23268":0,"23269":0,"23270":1,"23271":0,"23272":0,"23273":1,"23274":0,"23275":0,"23276":1,"23277":0,"23278":1,"23279":0,"23280":0,"23281":0,"23282":0,"23283":0,"23284":0,"23285":0,"23286":0,"23287":1,"23288":0,"23289":1,"23290":1,"23291":0,"23292":0,"23293":0,"23294":0,"23295":0,"23296":0,"23297":0,"23298":0,"23299":0,"23300":0,"23301":1,"23302":1,"23303":1,"23304":0,"23305":1,"23306":0,"23307":0,"23308":0,"23309":1,"23310":1,"23311":0,"23312":0,"23313":0,"23314":0,"23315":0,"23316":0,"23317":1,"23318":0,"23319":0,"23320":1,"23321":1,"23322":0,"23323":0,"23324":1,"23325":0,"23326":0,"23327":1,"23328":1,"23329":1,"23330":0,"23331":0,"23332":0,"23333":0,"23334":0,"23335":0,"23336":0,"23337":0,"23338":0,"23339":0,"23340":0,"23341":0,"23342":0,"23343":1,"23344":1,"23345":0,"23346":0,"23347":0,"23348":0,"23349":0,"23350":0,"23351":0,"23352":1,"23353":0,"23354":0,"23355":1,"23356":0,"23357":1,"23358":0,"23359":0,"23360":1,"23361":0,"23362":0,"23363":1,"23364":0,"23365":0,"23366":1,"23367":0,"23368":0,"23369":0,"23370":0,"23371":1,"23372":0,"23373":0,"23374":0,"23375":0,"23376":0,"23377":0,"23378":0,"23379":0,"23380":1,"23381":0,"23382":0,"23383":0,"23384":0,"23385":0,"23386":0,"23387":0,"23388":0,"23389":0,"23390":1,"23391":0,"23392":1,"23393":0,"23394":0,"23395":1,"23396":0,"23397":1,"23398":1,"23399":0,"23400":0,"23401":0,"23402":0,"23403":0,"23404":1,"23405":0,"23406":0,"23407":0,"23408":0,"23409":1,"23410":0,"23411":0,"23412":0,"23413":0,"23414":0,"23415":1,"23416":0,"23417":0,"23418":1,"23419":0,"23420":0,"23421":1,"23422":0,"23423":1,"23424":0,"23425":0,"23426":0,"23427":1,"23428":0,"23429":0,"23430":0,"23431":0,"23432":0,"23433":1,"23434":0,"23435":0,"23436":0,"23437":0,"23438":0,"23439":0,"23440":0,"23441":0,"23442":0,"23443":0,"23444":0,"23445":1,"23446":1,"23447":1,"23448":0,"23449":0,"23450":1,"23451":0,"23452":0,"23453":0,"23454":0,"23455":0,"23456":0,"23457":0,"23458":1,"23459":1,"23460":0,"23461":0,"23462":0,"23463":0,"23464":0,"23465":0,"23466":1,"23467":1,"23468":0,"23469":0,"23470":1,"23471":0,"23472":0,"23473":0,"23474":0,"23475":1,"23476":0,"23477":0,"23478":1,"23479":0,"23480":0,"23481":1,"23482":1,"23483":0,"23484":0,"23485":0,"23486":0,"23487":0,"23488":0,"23489":0,"23490":0,"23491":0,"23492":0,"23493":0,"23494":1,"23495":0,"23496":0,"23497":0,"23498":0,"23499":1,"23500":1,"23501":0,"23502":1,"23503":0,"23504":0,"23505":1,"23506":0,"23507":0,"23508":1,"23509":1,"23510":0,"23511":0,"23512":0,"23513":0,"23514":1,"23515":0,"23516":0,"23517":0,"23518":1,"23519":0,"23520":1,"23521":0,"23522":0,"23523":0,"23524":0,"23525":0,"23526":1,"23527":0,"23528":1,"23529":1,"23530":0,"23531":0,"23532":0,"23533":0,"23534":0,"23535":0,"23536":0,"23537":0,"23538":0,"23539":0,"23540":0,"23541":0,"23542":1,"23543":0,"23544":1,"23545":0,"23546":1,"23547":1,"23548":0,"23549":1,"23550":0,"23551":1,"23552":1,"23553":0,"23554":0,"23555":1,"23556":0,"23557":0,"23558":1,"23559":0,"23560":0,"23561":1,"23562":1,"23563":0,"23564":0,"23565":1,"23566":0,"23567":0,"23568":0,"23569":0,"23570":0,"23571":0,"23572":0,"23573":1,"23574":0,"23575":1,"23576":1,"23577":0,"23578":0,"23579":1,"23580":0,"23581":1,"23582":0,"23583":0,"23584":0,"23585":0,"23586":0,"23587":0,"23588":0,"23589":0,"23590":1,"23591":1,"23592":0,"23593":0,"23594":1,"23595":0,"23596":0,"23597":0,"23598":0,"23599":0,"23600":1,"23601":0,"23602":1,"23603":0,"23604":0,"23605":0,"23606":0,"23607":0,"23608":1,"23609":0,"23610":0,"23611":0,"23612":0,"23613":0,"23614":1,"23615":0,"23616":1,"23617":0,"23618":1,"23619":0,"23620":1,"23621":1,"23622":0,"23623":0,"23624":0,"23625":0,"23626":0,"23627":0,"23628":0,"23629":1,"23630":0,"23631":0,"23632":0,"23633":1,"23634":1,"23635":1,"23636":0,"23637":0,"23638":0,"23639":0,"23640":0,"23641":0,"23642":0,"23643":1,"23644":1,"23645":0,"23646":0,"23647":0,"23648":1,"23649":1,"23650":0,"23651":1,"23652":0,"23653":0,"23654":0,"23655":1,"23656":0,"23657":1,"23658":0,"23659":0,"23660":0,"23661":0,"23662":1,"23663":1,"23664":0,"23665":1,"23666":0,"23667":0,"23668":1,"23669":0,"23670":1,"23671":0,"23672":0,"23673":0,"23674":0,"23675":1,"23676":1,"23677":0,"23678":1,"23679":1,"23680":1,"23681":0,"23682":0,"23683":0,"23684":0,"23685":0,"23686":0,"23687":0,"23688":0,"23689":0,"23690":0,"23691":0,"23692":1,"23693":1,"23694":1,"23695":0,"23696":0,"23697":0,"23698":0,"23699":0,"23700":0,"23701":0,"23702":1,"23703":0,"23704":0,"23705":0,"23706":0,"23707":0,"23708":0,"23709":0,"23710":0,"23711":0,"23712":1,"23713":0,"23714":0,"23715":0,"23716":0,"23717":1,"23718":0,"23719":1,"23720":0,"23721":0,"23722":0,"23723":1,"23724":0,"23725":1,"23726":0,"23727":1,"23728":0,"23729":0,"23730":0,"23731":0,"23732":1,"23733":0,"23734":0,"23735":0,"23736":1,"23737":0,"23738":0,"23739":1,"23740":0,"23741":0,"23742":0,"23743":0,"23744":0,"23745":1,"23746":1,"23747":1,"23748":0,"23749":0,"23750":0,"23751":0,"23752":0,"23753":0,"23754":0,"23755":0,"23756":1,"23757":0,"23758":0,"23759":0,"23760":1,"23761":0,"23762":0,"23763":1,"23764":0,"23765":0,"23766":0,"23767":1,"23768":0,"23769":1,"23770":0,"23771":1,"23772":0,"23773":0,"23774":1,"23775":0,"23776":0,"23777":1,"23778":0,"23779":0,"23780":0,"23781":0,"23782":0,"23783":0,"23784":0,"23785":0,"23786":1,"23787":0,"23788":0,"23789":1,"23790":0,"23791":1,"23792":0,"23793":0,"23794":1,"23795":0,"23796":0,"23797":1,"23798":1,"23799":0,"23800":1,"23801":1,"23802":1,"23803":1,"23804":0,"23805":0,"23806":0,"23807":0,"23808":0,"23809":0,"23810":0,"23811":0,"23812":0,"23813":0,"23814":0,"23815":0,"23816":0,"23817":0,"23818":0,"23819":0,"23820":1,"23821":0,"23822":0,"23823":0,"23824":0,"23825":0,"23826":1,"23827":0,"23828":0,"23829":0,"23830":0,"23831":0,"23832":0,"23833":1,"23834":1,"23835":0,"23836":0,"23837":0,"23838":0,"23839":0,"23840":0,"23841":0,"23842":0,"23843":1,"23844":1,"23845":0,"23846":0,"23847":1,"23848":0,"23849":0,"23850":0,"23851":1,"23852":0,"23853":0,"23854":1,"23855":0,"23856":0,"23857":0,"23858":0,"23859":0,"23860":0,"23861":1,"23862":0,"23863":1,"23864":0,"23865":0,"23866":0,"23867":1,"23868":0,"23869":0,"23870":1,"23871":0,"23872":0,"23873":0,"23874":0,"23875":0,"23876":0,"23877":0,"23878":0,"23879":0,"23880":0,"23881":0,"23882":0,"23883":0,"23884":1,"23885":0,"23886":0,"23887":0,"23888":0,"23889":1,"23890":0,"23891":0,"23892":0,"23893":1,"23894":0,"23895":0,"23896":0,"23897":0,"23898":1,"23899":1,"23900":0,"23901":0,"23902":0,"23903":1,"23904":0,"23905":0,"23906":0,"23907":0,"23908":0,"23909":0,"23910":0,"23911":0,"23912":0,"23913":1,"23914":0,"23915":0,"23916":0,"23917":0,"23918":0,"23919":0,"23920":1,"23921":0,"23922":0,"23923":0,"23924":0,"23925":0,"23926":0,"23927":0,"23928":0,"23929":0,"23930":0,"23931":0,"23932":0,"23933":1,"23934":1,"23935":0,"23936":1,"23937":0,"23938":0,"23939":1,"23940":0,"23941":1,"23942":0,"23943":0,"23944":0,"23945":0,"23946":0,"23947":0,"23948":0,"23949":0,"23950":0,"23951":1,"23952":0,"23953":0,"23954":0,"23955":0,"23956":0,"23957":1,"23958":1,"23959":1,"23960":1,"23961":1,"23962":1,"23963":0,"23964":0,"23965":1,"23966":0,"23967":0,"23968":0,"23969":1,"23970":1,"23971":1,"23972":0,"23973":1,"23974":0,"23975":0,"23976":0,"23977":0,"23978":0,"23979":1,"23980":0,"23981":0,"23982":0,"23983":1,"23984":0,"23985":0,"23986":0,"23987":1,"23988":1,"23989":0,"23990":0,"23991":0,"23992":0,"23993":0,"23994":0,"23995":0,"23996":0,"23997":0,"23998":0,"23999":0,"24000":0,"24001":0,"24002":0,"24003":0,"24004":0,"24005":0,"24006":1,"24007":0,"24008":0,"24009":1,"24010":0,"24011":0,"24012":0,"24013":0,"24014":0,"24015":0,"24016":1,"24017":0,"24018":0,"24019":0,"24020":0,"24021":1,"24022":0,"24023":0,"24024":0,"24025":0,"24026":1,"24027":0,"24028":0,"24029":0,"24030":0,"24031":0,"24032":0,"24033":1,"24034":0,"24035":0,"24036":0,"24037":0,"24038":0,"24039":1,"24040":0,"24041":0,"24042":0,"24043":0,"24044":0,"24045":0,"24046":1,"24047":0,"24048":1,"24049":1,"24050":0,"24051":0,"24052":0,"24053":1,"24054":1,"24055":1,"24056":0,"24057":1,"24058":0,"24059":1,"24060":0,"24061":1,"24062":0,"24063":0,"24064":0,"24065":0,"24066":0,"24067":1,"24068":0,"24069":0,"24070":0,"24071":0,"24072":0,"24073":0,"24074":1,"24075":0,"24076":0,"24077":0,"24078":1,"24079":1,"24080":1,"24081":1,"24082":0,"24083":0,"24084":1,"24085":0,"24086":0,"24087":0,"24088":0,"24089":0,"24090":1,"24091":0,"24092":1,"24093":0,"24094":0,"24095":1,"24096":0,"24097":0,"24098":0,"24099":1,"24100":0,"24101":0,"24102":0,"24103":0,"24104":0,"24105":0,"24106":0,"24107":1,"24108":0,"24109":0,"24110":0,"24111":0,"24112":1,"24113":1,"24114":0,"24115":0,"24116":0,"24117":0,"24118":1,"24119":0,"24120":0,"24121":0,"24122":0,"24123":0,"24124":0,"24125":1,"24126":0,"24127":0,"24128":0,"24129":0,"24130":1,"24131":1,"24132":0,"24133":1,"24134":0,"24135":0,"24136":0,"24137":0,"24138":0,"24139":0,"24140":0,"24141":0,"24142":0,"24143":0,"24144":0,"24145":0,"24146":0,"24147":1,"24148":0,"24149":0,"24150":1,"24151":0,"24152":0,"24153":0,"24154":0,"24155":0,"24156":0,"24157":0,"24158":0,"24159":0,"24160":1,"24161":0,"24162":0,"24163":1,"24164":0,"24165":0,"24166":0,"24167":0,"24168":1,"24169":0,"24170":0,"24171":0,"24172":1,"24173":0,"24174":0,"24175":0,"24176":1,"24177":0,"24178":1,"24179":0,"24180":0,"24181":0,"24182":0,"24183":0,"24184":0,"24185":0,"24186":0,"24187":1,"24188":1,"24189":0,"24190":0,"24191":1,"24192":1,"24193":0,"24194":1,"24195":0,"24196":0,"24197":0,"24198":0,"24199":1,"24200":0,"24201":0,"24202":0,"24203":1,"24204":0,"24205":0,"24206":0,"24207":1,"24208":0,"24209":0,"24210":0,"24211":0,"24212":0,"24213":0,"24214":0,"24215":0,"24216":1,"24217":0,"24218":0,"24219":1,"24220":0,"24221":0,"24222":0,"24223":0,"24224":0,"24225":0,"24226":0,"24227":1,"24228":0,"24229":1,"24230":0,"24231":0,"24232":0,"24233":1,"24234":0,"24235":0,"24236":1,"24237":0,"24238":0,"24239":0,"24240":0,"24241":0,"24242":0,"24243":0,"24244":0,"24245":0,"24246":1,"24247":0,"24248":1,"24249":0,"24250":0,"24251":1,"24252":0,"24253":1,"24254":1,"24255":1,"24256":0,"24257":0,"24258":0,"24259":0,"24260":1,"24261":0,"24262":1,"24263":0,"24264":0,"24265":0,"24266":0,"24267":0,"24268":0,"24269":0,"24270":1,"24271":0,"24272":1,"24273":1,"24274":1,"24275":0,"24276":0,"24277":1,"24278":1,"24279":1,"24280":1,"24281":1,"24282":1,"24283":0,"24284":1,"24285":0,"24286":0,"24287":1,"24288":1,"24289":0,"24290":1,"24291":1,"24292":0,"24293":0,"24294":0,"24295":0,"24296":0,"24297":0,"24298":1,"24299":0,"24300":1,"24301":1,"24302":1,"24303":0,"24304":1,"24305":0,"24306":0,"24307":0,"24308":1,"24309":0,"24310":1,"24311":0,"24312":0,"24313":0,"24314":1,"24315":0,"24316":0,"24317":0,"24318":0,"24319":0,"24320":0,"24321":1,"24322":1,"24323":1,"24324":0,"24325":1,"24326":0,"24327":1,"24328":0,"24329":0,"24330":1,"24331":0,"24332":0,"24333":0,"24334":0,"24335":1,"24336":0,"24337":0,"24338":0,"24339":0,"24340":0,"24341":0,"24342":0,"24343":1,"24344":0,"24345":0,"24346":0,"24347":0,"24348":1,"24349":0,"24350":0,"24351":0,"24352":1,"24353":0,"24354":0,"24355":0,"24356":1,"24357":0,"24358":0,"24359":1,"24360":1,"24361":0,"24362":1,"24363":0,"24364":0,"24365":0,"24366":0,"24367":1,"24368":0,"24369":0,"24370":0,"24371":1,"24372":0,"24373":0,"24374":1,"24375":0,"24376":1,"24377":0,"24378":0,"24379":0,"24380":0,"24381":0,"24382":0,"24383":0,"24384":1,"24385":0,"24386":0,"24387":1,"24388":0,"24389":0,"24390":0,"24391":0,"24392":0,"24393":0,"24394":0,"24395":0,"24396":0,"24397":0,"24398":0,"24399":0,"24400":1,"24401":0,"24402":0,"24403":0,"24404":0,"24405":1,"24406":0,"24407":0,"24408":0,"24409":0,"24410":0,"24411":0,"24412":0,"24413":0,"24414":0,"24415":1,"24416":0,"24417":0,"24418":0,"24419":1,"24420":1,"24421":1,"24422":0,"24423":1,"24424":0,"24425":1,"24426":0,"24427":1,"24428":0,"24429":0,"24430":0,"24431":0,"24432":0,"24433":0,"24434":1,"24435":0,"24436":0,"24437":1,"24438":0,"24439":0,"24440":0,"24441":1,"24442":0,"24443":0,"24444":0,"24445":0,"24446":1,"24447":0,"24448":0,"24449":0,"24450":1,"24451":1,"24452":0,"24453":0,"24454":1,"24455":1,"24456":0,"24457":1,"24458":0,"24459":0,"24460":0,"24461":1,"24462":0,"24463":1,"24464":1,"24465":0,"24466":0,"24467":0,"24468":0,"24469":0,"24470":0,"24471":0,"24472":0,"24473":1,"24474":0,"24475":0,"24476":0,"24477":0,"24478":0,"24479":0,"24480":0,"24481":1,"24482":0,"24483":0,"24484":1,"24485":0,"24486":0,"24487":1,"24488":1,"24489":0,"24490":1,"24491":0,"24492":0,"24493":0,"24494":1,"24495":1,"24496":1,"24497":0,"24498":1,"24499":0,"24500":0,"24501":1,"24502":0,"24503":0,"24504":0,"24505":1,"24506":1,"24507":0,"24508":0,"24509":0,"24510":0,"24511":0,"24512":0,"24513":0,"24514":0,"24515":1,"24516":0,"24517":0,"24518":1,"24519":0,"24520":0,"24521":0,"24522":0,"24523":0,"24524":0,"24525":0,"24526":0,"24527":0,"24528":0,"24529":0,"24530":1,"24531":0,"24532":0,"24533":1,"24534":0,"24535":1,"24536":0,"24537":0,"24538":0,"24539":0,"24540":1,"24541":0,"24542":0,"24543":0,"24544":0,"24545":0,"24546":0,"24547":0,"24548":0,"24549":0,"24550":0,"24551":1,"24552":0,"24553":0,"24554":1,"24555":0,"24556":1,"24557":0,"24558":0,"24559":0,"24560":0,"24561":0,"24562":1,"24563":1,"24564":1,"24565":1,"24566":0,"24567":0,"24568":1,"24569":1,"24570":0,"24571":0,"24572":1,"24573":1,"24574":0,"24575":0,"24576":0,"24577":0,"24578":1,"24579":0,"24580":0,"24581":0,"24582":1,"24583":0,"24584":1,"24585":1,"24586":1,"24587":0,"24588":1,"24589":1,"24590":1,"24591":0,"24592":0,"24593":0,"24594":0,"24595":0,"24596":0,"24597":0,"24598":0,"24599":0,"24600":0,"24601":0,"24602":0,"24603":0,"24604":0,"24605":1,"24606":0,"24607":0,"24608":0,"24609":0,"24610":0,"24611":1,"24612":0,"24613":0,"24614":0,"24615":0,"24616":1,"24617":0,"24618":0,"24619":0,"24620":0,"24621":1,"24622":0,"24623":0,"24624":0,"24625":0,"24626":1,"24627":0,"24628":0,"24629":0,"24630":0,"24631":0,"24632":0,"24633":0,"24634":1,"24635":0,"24636":0,"24637":0,"24638":0,"24639":0,"24640":0,"24641":0,"24642":0,"24643":0,"24644":0,"24645":1,"24646":1,"24647":0,"24648":0,"24649":0,"24650":0,"24651":0,"24652":0,"24653":1,"24654":0,"24655":0,"24656":1,"24657":0,"24658":1,"24659":0,"24660":0,"24661":0,"24662":1,"24663":0,"24664":0,"24665":0,"24666":0,"24667":0,"24668":0,"24669":0,"24670":0,"24671":0,"24672":1,"24673":0,"24674":1,"24675":0,"24676":0,"24677":0,"24678":0,"24679":0,"24680":1,"24681":0,"24682":1,"24683":0,"24684":0,"24685":0,"24686":0,"24687":0,"24688":0,"24689":0,"24690":0,"24691":0,"24692":1,"24693":0,"24694":0,"24695":0,"24696":0,"24697":0,"24698":0,"24699":0,"24700":0,"24701":0,"24702":0,"24703":1,"24704":0,"24705":0,"24706":0,"24707":0,"24708":1,"24709":0,"24710":1,"24711":1,"24712":0,"24713":1,"24714":0,"24715":0,"24716":0,"24717":0,"24718":0,"24719":0,"24720":0,"24721":1,"24722":1,"24723":1,"24724":0,"24725":1,"24726":0,"24727":0,"24728":0,"24729":0,"24730":0,"24731":0,"24732":0,"24733":0,"24734":0,"24735":1,"24736":1,"24737":0,"24738":0,"24739":1,"24740":0,"24741":1,"24742":0,"24743":0,"24744":1,"24745":0,"24746":0,"24747":0,"24748":1,"24749":0,"24750":0,"24751":0,"24752":0,"24753":0,"24754":0,"24755":0,"24756":1,"24757":0,"24758":1,"24759":1,"24760":0,"24761":0,"24762":0,"24763":0,"24764":0,"24765":0,"24766":0,"24767":0,"24768":0,"24769":0,"24770":1,"24771":0,"24772":0,"24773":1,"24774":0,"24775":0,"24776":0,"24777":1,"24778":0,"24779":0,"24780":1,"24781":0,"24782":0,"24783":1,"24784":0,"24785":0,"24786":1,"24787":0,"24788":0,"24789":1,"24790":0,"24791":0,"24792":1,"24793":0,"24794":0,"24795":0,"24796":0,"24797":0,"24798":0,"24799":1,"24800":0,"24801":0,"24802":1,"24803":0,"24804":0,"24805":1,"24806":0,"24807":1,"24808":0,"24809":0,"24810":0,"24811":1,"24812":0,"24813":0,"24814":0,"24815":1,"24816":0,"24817":0,"24818":0,"24819":0,"24820":1,"24821":0,"24822":0,"24823":0,"24824":1,"24825":0,"24826":0,"24827":0,"24828":0,"24829":1,"24830":1,"24831":1,"24832":0,"24833":0,"24834":0,"24835":0,"24836":1,"24837":0,"24838":0,"24839":1,"24840":0,"24841":0,"24842":1,"24843":1,"24844":1,"24845":0,"24846":0,"24847":0,"24848":0,"24849":0,"24850":0,"24851":0,"24852":0,"24853":0,"24854":0,"24855":0,"24856":0,"24857":0,"24858":1,"24859":0,"24860":0,"24861":0,"24862":0,"24863":0,"24864":0,"24865":0,"24866":0,"24867":0,"24868":0,"24869":0,"24870":1,"24871":0,"24872":1,"24873":0,"24874":1,"24875":0,"24876":0,"24877":0,"24878":0,"24879":0,"24880":0,"24881":0,"24882":0,"24883":0,"24884":0,"24885":0,"24886":0,"24887":1,"24888":0,"24889":0,"24890":0,"24891":1,"24892":0,"24893":0,"24894":0,"24895":1,"24896":0,"24897":0,"24898":1,"24899":0,"24900":1,"24901":0,"24902":0,"24903":0,"24904":0,"24905":0,"24906":0,"24907":0,"24908":0,"24909":0,"24910":0,"24911":0,"24912":1,"24913":1,"24914":0,"24915":0,"24916":1,"24917":1,"24918":0,"24919":0,"24920":0,"24921":0,"24922":0,"24923":1,"24924":1,"24925":0,"24926":0,"24927":1,"24928":0,"24929":0,"24930":1,"24931":0,"24932":1,"24933":1,"24934":1,"24935":0,"24936":0,"24937":0,"24938":0,"24939":0,"24940":0,"24941":1,"24942":0,"24943":0,"24944":0,"24945":0,"24946":0,"24947":0,"24948":0,"24949":1,"24950":0,"24951":0,"24952":0,"24953":0,"24954":0,"24955":1,"24956":0,"24957":0,"24958":1,"24959":0,"24960":0,"24961":0,"24962":1,"24963":0,"24964":0,"24965":0,"24966":0,"24967":0,"24968":0,"24969":0,"24970":0,"24971":0,"24972":0,"24973":1,"24974":0,"24975":0,"24976":0,"24977":1,"24978":1,"24979":1,"24980":0,"24981":1,"24982":0,"24983":0,"24984":0,"24985":0,"24986":1,"24987":0,"24988":0,"24989":0,"24990":1,"24991":0,"24992":1,"24993":1,"24994":0,"24995":0,"24996":0,"24997":0,"24998":0,"24999":0,"25000":0,"25001":0,"25002":0,"25003":0,"25004":1,"25005":0,"25006":0,"25007":0,"25008":1,"25009":1,"25010":0,"25011":1,"25012":0,"25013":0,"25014":1,"25015":0,"25016":0,"25017":0,"25018":1,"25019":0,"25020":0,"25021":0,"25022":1,"25023":0,"25024":1,"25025":0,"25026":1,"25027":1,"25028":1,"25029":0,"25030":0,"25031":0,"25032":1,"25033":0,"25034":0,"25035":0,"25036":0,"25037":1,"25038":0,"25039":0,"25040":0,"25041":0,"25042":0,"25043":0,"25044":1,"25045":0,"25046":0,"25047":1,"25048":0,"25049":0,"25050":0,"25051":0,"25052":0,"25053":0,"25054":0,"25055":1,"25056":0,"25057":1,"25058":0,"25059":0,"25060":0,"25061":0,"25062":0,"25063":0,"25064":1,"25065":1,"25066":1,"25067":0,"25068":0,"25069":1,"25070":0,"25071":0,"25072":1,"25073":0,"25074":0,"25075":0,"25076":0,"25077":1,"25078":0,"25079":0,"25080":0,"25081":0,"25082":0,"25083":0,"25084":0,"25085":0,"25086":0,"25087":0,"25088":1,"25089":0,"25090":0,"25091":1,"25092":1,"25093":0,"25094":0,"25095":1,"25096":0,"25097":0,"25098":1,"25099":0,"25100":0,"25101":0,"25102":0,"25103":0,"25104":0,"25105":1,"25106":0,"25107":1,"25108":0,"25109":0,"25110":1,"25111":0,"25112":1,"25113":0,"25114":0,"25115":0,"25116":0,"25117":0,"25118":0,"25119":1,"25120":1,"25121":0,"25122":0,"25123":1,"25124":0,"25125":0,"25126":0,"25127":0,"25128":0,"25129":0,"25130":0,"25131":0,"25132":0,"25133":0,"25134":1,"25135":0,"25136":0,"25137":0,"25138":0,"25139":0,"25140":0,"25141":0,"25142":0,"25143":0,"25144":0,"25145":0,"25146":0,"25147":1,"25148":1,"25149":1,"25150":0,"25151":0,"25152":0,"25153":0,"25154":0,"25155":1,"25156":0,"25157":1,"25158":0,"25159":0,"25160":1,"25161":0,"25162":0,"25163":0,"25164":1,"25165":0,"25166":0,"25167":0,"25168":0,"25169":0,"25170":0,"25171":1,"25172":0,"25173":1,"25174":0,"25175":0,"25176":1,"25177":0,"25178":0,"25179":0,"25180":0,"25181":0,"25182":0,"25183":0,"25184":0,"25185":0,"25186":0,"25187":0,"25188":0,"25189":1,"25190":0,"25191":0,"25192":0,"25193":0,"25194":0,"25195":0,"25196":1,"25197":0,"25198":1,"25199":0,"25200":0,"25201":1,"25202":0,"25203":0,"25204":0,"25205":0,"25206":1,"25207":0,"25208":0,"25209":0,"25210":0,"25211":0,"25212":1,"25213":1,"25214":1,"25215":0,"25216":0,"25217":0,"25218":0,"25219":0,"25220":0,"25221":1,"25222":0,"25223":1,"25224":0,"25225":0,"25226":0,"25227":0,"25228":0,"25229":0,"25230":0,"25231":0,"25232":0,"25233":0,"25234":0,"25235":0,"25236":0,"25237":0,"25238":0,"25239":0,"25240":0,"25241":1,"25242":0,"25243":0,"25244":0,"25245":1,"25246":0,"25247":0,"25248":0,"25249":0,"25250":0,"25251":0,"25252":0,"25253":0,"25254":0,"25255":0,"25256":0,"25257":1,"25258":0,"25259":0,"25260":0,"25261":0,"25262":0,"25263":0,"25264":0,"25265":1,"25266":0,"25267":0,"25268":1,"25269":0,"25270":0,"25271":0,"25272":0,"25273":0,"25274":0,"25275":0,"25276":1,"25277":1,"25278":0,"25279":0,"25280":0,"25281":0,"25282":0,"25283":1,"25284":0,"25285":0,"25286":0,"25287":0,"25288":0,"25289":0,"25290":1,"25291":0,"25292":1,"25293":0,"25294":0,"25295":1,"25296":0,"25297":0,"25298":0,"25299":0,"25300":0,"25301":0,"25302":1,"25303":0,"25304":0,"25305":0,"25306":0,"25307":1,"25308":0,"25309":0,"25310":0,"25311":0,"25312":0,"25313":1,"25314":1,"25315":0,"25316":0,"25317":0,"25318":1,"25319":0,"25320":0,"25321":1,"25322":0,"25323":0,"25324":0,"25325":1,"25326":0,"25327":0,"25328":0,"25329":0,"25330":0,"25331":0,"25332":0,"25333":0,"25334":0,"25335":1,"25336":0,"25337":0,"25338":1,"25339":0,"25340":1,"25341":1,"25342":0,"25343":0,"25344":0,"25345":0,"25346":0,"25347":0,"25348":0,"25349":1,"25350":1,"25351":0,"25352":0,"25353":1,"25354":0,"25355":0,"25356":0,"25357":0,"25358":0,"25359":0,"25360":0,"25361":0,"25362":1,"25363":0,"25364":0,"25365":0,"25366":0,"25367":0,"25368":1,"25369":0,"25370":0,"25371":0,"25372":0,"25373":0,"25374":0,"25375":0,"25376":1,"25377":0,"25378":0,"25379":0,"25380":1,"25381":0,"25382":0,"25383":0,"25384":0,"25385":0,"25386":0,"25387":0,"25388":0,"25389":0,"25390":1,"25391":0,"25392":0,"25393":0,"25394":0,"25395":0,"25396":0,"25397":0,"25398":0,"25399":1,"25400":0,"25401":0,"25402":1,"25403":0,"25404":0,"25405":0,"25406":0,"25407":0,"25408":0,"25409":1,"25410":0,"25411":0,"25412":1,"25413":0,"25414":1,"25415":0,"25416":0,"25417":1,"25418":0,"25419":1,"25420":0,"25421":0,"25422":0,"25423":0,"25424":0,"25425":1,"25426":0,"25427":0,"25428":0,"25429":0,"25430":1,"25431":1,"25432":1,"25433":0,"25434":1,"25435":1,"25436":0,"25437":0,"25438":0,"25439":0,"25440":0,"25441":0,"25442":0,"25443":0,"25444":0,"25445":1,"25446":0,"25447":0,"25448":1,"25449":1,"25450":1,"25451":0,"25452":0,"25453":0,"25454":0,"25455":0,"25456":0,"25457":0,"25458":0,"25459":0,"25460":0,"25461":0,"25462":0,"25463":0,"25464":0,"25465":1,"25466":0,"25467":0,"25468":0,"25469":0,"25470":1,"25471":0,"25472":0,"25473":0,"25474":0,"25475":1,"25476":0,"25477":0,"25478":0,"25479":0,"25480":0,"25481":0,"25482":0,"25483":0,"25484":0,"25485":0,"25486":0,"25487":0,"25488":0,"25489":0,"25490":0,"25491":0,"25492":0,"25493":0,"25494":0,"25495":0,"25496":0,"25497":0,"25498":1,"25499":0,"25500":0,"25501":0,"25502":0,"25503":1,"25504":0,"25505":1,"25506":0,"25507":1,"25508":0,"25509":0,"25510":1,"25511":0,"25512":0,"25513":0,"25514":1,"25515":0,"25516":0,"25517":0,"25518":1,"25519":1,"25520":1,"25521":0,"25522":0,"25523":0,"25524":0,"25525":0,"25526":0,"25527":0,"25528":0,"25529":0,"25530":1,"25531":1,"25532":0,"25533":0,"25534":0,"25535":0,"25536":0,"25537":0,"25538":0,"25539":1,"25540":0,"25541":1,"25542":1,"25543":0,"25544":1,"25545":0,"25546":0,"25547":0,"25548":0,"25549":0,"25550":0,"25551":1,"25552":0,"25553":0,"25554":1,"25555":0,"25556":0,"25557":1,"25558":0,"25559":0,"25560":0,"25561":0,"25562":0,"25563":0,"25564":0,"25565":0,"25566":1,"25567":1,"25568":1,"25569":0,"25570":0,"25571":1,"25572":0,"25573":0,"25574":0,"25575":0,"25576":0,"25577":0,"25578":1,"25579":1,"25580":0,"25581":1,"25582":0,"25583":1,"25584":0,"25585":0,"25586":1,"25587":0,"25588":0,"25589":0,"25590":0,"25591":1,"25592":0,"25593":0,"25594":1,"25595":0,"25596":0,"25597":1,"25598":1,"25599":0,"25600":0,"25601":0,"25602":0,"25603":0,"25604":0,"25605":0,"25606":0,"25607":1,"25608":0,"25609":0,"25610":0,"25611":0,"25612":0,"25613":0,"25614":1,"25615":0,"25616":0,"25617":0,"25618":0,"25619":1,"25620":0,"25621":1,"25622":0,"25623":1,"25624":0,"25625":0,"25626":1,"25627":1,"25628":1,"25629":0,"25630":0,"25631":0,"25632":1,"25633":0,"25634":0,"25635":0,"25636":0,"25637":0,"25638":0,"25639":0,"25640":0,"25641":0,"25642":0,"25643":1,"25644":0,"25645":0,"25646":1,"25647":0,"25648":0,"25649":0,"25650":0,"25651":1,"25652":0,"25653":0,"25654":0,"25655":0,"25656":0,"25657":1,"25658":0,"25659":0,"25660":0,"25661":1,"25662":1,"25663":0,"25664":0,"25665":1,"25666":0,"25667":1,"25668":1,"25669":1,"25670":0,"25671":1,"25672":1,"25673":0,"25674":1,"25675":0,"25676":0,"25677":0,"25678":0,"25679":1,"25680":0,"25681":0,"25682":0,"25683":0,"25684":0,"25685":1,"25686":0,"25687":1,"25688":0,"25689":0,"25690":1,"25691":0,"25692":0,"25693":0,"25694":1,"25695":0,"25696":0,"25697":0,"25698":0,"25699":0,"25700":0,"25701":1,"25702":0,"25703":1,"25704":0,"25705":0,"25706":0,"25707":0,"25708":0,"25709":0,"25710":1,"25711":1,"25712":0,"25713":0,"25714":1,"25715":0,"25716":0,"25717":0,"25718":0,"25719":0,"25720":1,"25721":0,"25722":0,"25723":0,"25724":0,"25725":0,"25726":1,"25727":1,"25728":0,"25729":1,"25730":1,"25731":1,"25732":0,"25733":0,"25734":0,"25735":0,"25736":0,"25737":0,"25738":0,"25739":1,"25740":0,"25741":1,"25742":0,"25743":0,"25744":1,"25745":1,"25746":1,"25747":0,"25748":1,"25749":0,"25750":0,"25751":0,"25752":1,"25753":0,"25754":0,"25755":0,"25756":0,"25757":0,"25758":0,"25759":0,"25760":0,"25761":0,"25762":0,"25763":1,"25764":0,"25765":0,"25766":0,"25767":1,"25768":0,"25769":0,"25770":1,"25771":0,"25772":0,"25773":0,"25774":0,"25775":0,"25776":0,"25777":0,"25778":0,"25779":0,"25780":0,"25781":0,"25782":1,"25783":1,"25784":0,"25785":0,"25786":1,"25787":0,"25788":1,"25789":0,"25790":1,"25791":0,"25792":0,"25793":0,"25794":0,"25795":1,"25796":0,"25797":1,"25798":0,"25799":0,"25800":1,"25801":0,"25802":0,"25803":0,"25804":0,"25805":1,"25806":1,"25807":0,"25808":1,"25809":0,"25810":0,"25811":0,"25812":0,"25813":0,"25814":0,"25815":0,"25816":0,"25817":0,"25818":0,"25819":0,"25820":0,"25821":1,"25822":1,"25823":0,"25824":0,"25825":0,"25826":0,"25827":0,"25828":0,"25829":0,"25830":0,"25831":1,"25832":1,"25833":1,"25834":1,"25835":0,"25836":0,"25837":1,"25838":0,"25839":0,"25840":0,"25841":1,"25842":0,"25843":1,"25844":1,"25845":1,"25846":0,"25847":0,"25848":0,"25849":0,"25850":0,"25851":1,"25852":0,"25853":0,"25854":0,"25855":0,"25856":1,"25857":0,"25858":0,"25859":0,"25860":0,"25861":0,"25862":1,"25863":1,"25864":0,"25865":0,"25866":1,"25867":0,"25868":0,"25869":0,"25870":0,"25871":0,"25872":0,"25873":1,"25874":0,"25875":0,"25876":0,"25877":1,"25878":0,"25879":1,"25880":0,"25881":1,"25882":1,"25883":0,"25884":1,"25885":1,"25886":0,"25887":0,"25888":0,"25889":0,"25890":0,"25891":0,"25892":0,"25893":0,"25894":0,"25895":0,"25896":1,"25897":1,"25898":0,"25899":1,"25900":0,"25901":0,"25902":0,"25903":1,"25904":1,"25905":0,"25906":0,"25907":1,"25908":0,"25909":0,"25910":0,"25911":1,"25912":0,"25913":1,"25914":0,"25915":1,"25916":0,"25917":1,"25918":0,"25919":0,"25920":1,"25921":0,"25922":0,"25923":0,"25924":0,"25925":0,"25926":0,"25927":0,"25928":0,"25929":1,"25930":1,"25931":0,"25932":0,"25933":0,"25934":0,"25935":0,"25936":0,"25937":1,"25938":1,"25939":1,"25940":1,"25941":0,"25942":1,"25943":0,"25944":1,"25945":0,"25946":0,"25947":0,"25948":1,"25949":0,"25950":0,"25951":1,"25952":0,"25953":0,"25954":0,"25955":1,"25956":1,"25957":0,"25958":0,"25959":1,"25960":0,"25961":0,"25962":0,"25963":0,"25964":0,"25965":0,"25966":0,"25967":1,"25968":0,"25969":0,"25970":0,"25971":0,"25972":0,"25973":0,"25974":1,"25975":1,"25976":0,"25977":0,"25978":0,"25979":1,"25980":0,"25981":1,"25982":0,"25983":0,"25984":0,"25985":1,"25986":1,"25987":0,"25988":0,"25989":0,"25990":0,"25991":0,"25992":1,"25993":0,"25994":1,"25995":0,"25996":0,"25997":0,"25998":0,"25999":0,"26000":1,"26001":0,"26002":0,"26003":0,"26004":0,"26005":1,"26006":0,"26007":0,"26008":1,"26009":0,"26010":0,"26011":1,"26012":1,"26013":0,"26014":1,"26015":1,"26016":0,"26017":1,"26018":0,"26019":1,"26020":0,"26021":1,"26022":0,"26023":1,"26024":0,"26025":0,"26026":1,"26027":1,"26028":0,"26029":0,"26030":0,"26031":1,"26032":1,"26033":0,"26034":1,"26035":0,"26036":0,"26037":0,"26038":0,"26039":0,"26040":0,"26041":0,"26042":0,"26043":0,"26044":0,"26045":0,"26046":0,"26047":0,"26048":0,"26049":1,"26050":0,"26051":0,"26052":1,"26053":0,"26054":0,"26055":0,"26056":1,"26057":0,"26058":0,"26059":0,"26060":1,"26061":0,"26062":0,"26063":0,"26064":0,"26065":0,"26066":1,"26067":0,"26068":0,"26069":0,"26070":1,"26071":1,"26072":0,"26073":0,"26074":0,"26075":0,"26076":0,"26077":0,"26078":0,"26079":0,"26080":0,"26081":0,"26082":0,"26083":0,"26084":1,"26085":0,"26086":1,"26087":1,"26088":1,"26089":0,"26090":0,"26091":0,"26092":0,"26093":0,"26094":1,"26095":0,"26096":0,"26097":0,"26098":0,"26099":1,"26100":0,"26101":0,"26102":0,"26103":1,"26104":0,"26105":0,"26106":1,"26107":0,"26108":0,"26109":1,"26110":1,"26111":1,"26112":0,"26113":0,"26114":0,"26115":0,"26116":1,"26117":0,"26118":1,"26119":0,"26120":0,"26121":0,"26122":0,"26123":1,"26124":1,"26125":0,"26126":0,"26127":0,"26128":1,"26129":0,"26130":0,"26131":0,"26132":0,"26133":1,"26134":1,"26135":0,"26136":0,"26137":0,"26138":1,"26139":0,"26140":1,"26141":0,"26142":0,"26143":0,"26144":0,"26145":0,"26146":0,"26147":0,"26148":0,"26149":0,"26150":0,"26151":0,"26152":0,"26153":1,"26154":1,"26155":0,"26156":0,"26157":1,"26158":0,"26159":0,"26160":1,"26161":0,"26162":0,"26163":1,"26164":0,"26165":0,"26166":0,"26167":0,"26168":1,"26169":0,"26170":0,"26171":0,"26172":0,"26173":0,"26174":0,"26175":0,"26176":1,"26177":0,"26178":0,"26179":0,"26180":0,"26181":0,"26182":0,"26183":0,"26184":0,"26185":0,"26186":0,"26187":0,"26188":0,"26189":1,"26190":1,"26191":0,"26192":0,"26193":0,"26194":0,"26195":0,"26196":0,"26197":0,"26198":0,"26199":1,"26200":1,"26201":0,"26202":0,"26203":0,"26204":0,"26205":0,"26206":0,"26207":0,"26208":0,"26209":0,"26210":0,"26211":0,"26212":0,"26213":0,"26214":0,"26215":0,"26216":1,"26217":0,"26218":0,"26219":0,"26220":0,"26221":0,"26222":0,"26223":1,"26224":0,"26225":0,"26226":0,"26227":0,"26228":0,"26229":0,"26230":1,"26231":0,"26232":0,"26233":0,"26234":0,"26235":1,"26236":0,"26237":0,"26238":0,"26239":1,"26240":1,"26241":0,"26242":0,"26243":1,"26244":0,"26245":0,"26246":0,"26247":0,"26248":0,"26249":0,"26250":1,"26251":0,"26252":0,"26253":0,"26254":0,"26255":0,"26256":0,"26257":0,"26258":1,"26259":0,"26260":0,"26261":0,"26262":0,"26263":0,"26264":0,"26265":0,"26266":0,"26267":0,"26268":0,"26269":0,"26270":0,"26271":0,"26272":0,"26273":0,"26274":0,"26275":0,"26276":0,"26277":0,"26278":1,"26279":1,"26280":0,"26281":0,"26282":0,"26283":0,"26284":0,"26285":0,"26286":0,"26287":0,"26288":0,"26289":0,"26290":1,"26291":1,"26292":0,"26293":0,"26294":0,"26295":1,"26296":0,"26297":0,"26298":0,"26299":0,"26300":0,"26301":1,"26302":1,"26303":1,"26304":1,"26305":0,"26306":0,"26307":0,"26308":0,"26309":0,"26310":0,"26311":0,"26312":0,"26313":0,"26314":0,"26315":0,"26316":1,"26317":1,"26318":1,"26319":0,"26320":0,"26321":0,"26322":0,"26323":0,"26324":1,"26325":0,"26326":0,"26327":0,"26328":0,"26329":1,"26330":1,"26331":0,"26332":0,"26333":0,"26334":0,"26335":0,"26336":0,"26337":1,"26338":0,"26339":0,"26340":0,"26341":0,"26342":0,"26343":1,"26344":0,"26345":0,"26346":0,"26347":1,"26348":0,"26349":1,"26350":0,"26351":1,"26352":0,"26353":1,"26354":0,"26355":0,"26356":0,"26357":0,"26358":0,"26359":0,"26360":0,"26361":0,"26362":0,"26363":0,"26364":0,"26365":0,"26366":0,"26367":1,"26368":0,"26369":1,"26370":0,"26371":0,"26372":0,"26373":0,"26374":0,"26375":0,"26376":0,"26377":0,"26378":0,"26379":0,"26380":1,"26381":1,"26382":0,"26383":1,"26384":0,"26385":0,"26386":0,"26387":0,"26388":0,"26389":0,"26390":0,"26391":0,"26392":0,"26393":0,"26394":0,"26395":1,"26396":1,"26397":1,"26398":0,"26399":1,"26400":1,"26401":1,"26402":0,"26403":0,"26404":0,"26405":0,"26406":0,"26407":0,"26408":0,"26409":0,"26410":1,"26411":0,"26412":0,"26413":0,"26414":0,"26415":1,"26416":0,"26417":0,"26418":0,"26419":0,"26420":0,"26421":0,"26422":1,"26423":0,"26424":0,"26425":0,"26426":0,"26427":0,"26428":0,"26429":1,"26430":0,"26431":0,"26432":1,"26433":0,"26434":0,"26435":0,"26436":0,"26437":1,"26438":0,"26439":0,"26440":0,"26441":0,"26442":0,"26443":0,"26444":0,"26445":0,"26446":0,"26447":0,"26448":1,"26449":0,"26450":0,"26451":0,"26452":0,"26453":0,"26454":0,"26455":0,"26456":0,"26457":0,"26458":1,"26459":0,"26460":1,"26461":1,"26462":0,"26463":0,"26464":0,"26465":0,"26466":0,"26467":0,"26468":0,"26469":0,"26470":0,"26471":0,"26472":0,"26473":0,"26474":0,"26475":1,"26476":1,"26477":1,"26478":1,"26479":0,"26480":1,"26481":0,"26482":1,"26483":1,"26484":0,"26485":1,"26486":0,"26487":0,"26488":1,"26489":0,"26490":0,"26491":0,"26492":0,"26493":0,"26494":0,"26495":1,"26496":1,"26497":0,"26498":0,"26499":1,"26500":1,"26501":0,"26502":0,"26503":1,"26504":0,"26505":1,"26506":0,"26507":0,"26508":0,"26509":1,"26510":0,"26511":0,"26512":0,"26513":0,"26514":0,"26515":0,"26516":0,"26517":1,"26518":0,"26519":1,"26520":0,"26521":0,"26522":0,"26523":0,"26524":1,"26525":0,"26526":0,"26527":1,"26528":1,"26529":1,"26530":0,"26531":0,"26532":0,"26533":0,"26534":0,"26535":1,"26536":1,"26537":0,"26538":1,"26539":0,"26540":0,"26541":0,"26542":0,"26543":1,"26544":0,"26545":1,"26546":0,"26547":0,"26548":0,"26549":0,"26550":0,"26551":0,"26552":0,"26553":1,"26554":0,"26555":0,"26556":0,"26557":0,"26558":0,"26559":1,"26560":0,"26561":0,"26562":0,"26563":0,"26564":1,"26565":0,"26566":1,"26567":1,"26568":0,"26569":0,"26570":0,"26571":0,"26572":0,"26573":1,"26574":0,"26575":0,"26576":0,"26577":0,"26578":0,"26579":0,"26580":0,"26581":0,"26582":0,"26583":1,"26584":0,"26585":0,"26586":0,"26587":0,"26588":0,"26589":1,"26590":1,"26591":0,"26592":0,"26593":0,"26594":0,"26595":1,"26596":0,"26597":0,"26598":0,"26599":0,"26600":0,"26601":0,"26602":0,"26603":0,"26604":1,"26605":0,"26606":0,"26607":1,"26608":1,"26609":0,"26610":0,"26611":0,"26612":0,"26613":0,"26614":1,"26615":0,"26616":0,"26617":0,"26618":0,"26619":1,"26620":0,"26621":0,"26622":0,"26623":0,"26624":0,"26625":0,"26626":0,"26627":1,"26628":1,"26629":1,"26630":0,"26631":0,"26632":0,"26633":0,"26634":0,"26635":1,"26636":0,"26637":0,"26638":0,"26639":0,"26640":0,"26641":0,"26642":0,"26643":0,"26644":0,"26645":0,"26646":0,"26647":0,"26648":0,"26649":1,"26650":1,"26651":0,"26652":0,"26653":0,"26654":1,"26655":1,"26656":1,"26657":0,"26658":0,"26659":0,"26660":0,"26661":0,"26662":0,"26663":0,"26664":0,"26665":0,"26666":1,"26667":0,"26668":0,"26669":0,"26670":1,"26671":0,"26672":0,"26673":0,"26674":0,"26675":0,"26676":0,"26677":0,"26678":0,"26679":0,"26680":0,"26681":0,"26682":0,"26683":0,"26684":0,"26685":0,"26686":0,"26687":1,"26688":0,"26689":0,"26690":0,"26691":0,"26692":0,"26693":0,"26694":0,"26695":0,"26696":0,"26697":0,"26698":1,"26699":0,"26700":1,"26701":0,"26702":0,"26703":0,"26704":0,"26705":0,"26706":0,"26707":1,"26708":0,"26709":0,"26710":1,"26711":0,"26712":0,"26713":0,"26714":0,"26715":0,"26716":1,"26717":0,"26718":0,"26719":0,"26720":0,"26721":1,"26722":0,"26723":0,"26724":0,"26725":0,"26726":0,"26727":1,"26728":0,"26729":1,"26730":0,"26731":0,"26732":0,"26733":0,"26734":0,"26735":0,"26736":0,"26737":0,"26738":0,"26739":1,"26740":1,"26741":0,"26742":0,"26743":0,"26744":0,"26745":0,"26746":0,"26747":0,"26748":0,"26749":0,"26750":1,"26751":0,"26752":0,"26753":0,"26754":0,"26755":1,"26756":0,"26757":0,"26758":0,"26759":1,"26760":0,"26761":0,"26762":0,"26763":0,"26764":0,"26765":0,"26766":0,"26767":0,"26768":0,"26769":0,"26770":0,"26771":0,"26772":0,"26773":0,"26774":1,"26775":1,"26776":0,"26777":0,"26778":0,"26779":1,"26780":0,"26781":0,"26782":0,"26783":0,"26784":0,"26785":1,"26786":0,"26787":1,"26788":1,"26789":0,"26790":1,"26791":0,"26792":0,"26793":1,"26794":0,"26795":0,"26796":0,"26797":0,"26798":0,"26799":0,"26800":0,"26801":0,"26802":0,"26803":0,"26804":0,"26805":0,"26806":0,"26807":0,"26808":1,"26809":0,"26810":0,"26811":0,"26812":1,"26813":0,"26814":0,"26815":1,"26816":1,"26817":0,"26818":0,"26819":1,"26820":0,"26821":0,"26822":1,"26823":0,"26824":0,"26825":0,"26826":1,"26827":0,"26828":0,"26829":0,"26830":0,"26831":0,"26832":1,"26833":0,"26834":0,"26835":1,"26836":1,"26837":1,"26838":0,"26839":1,"26840":0,"26841":0,"26842":1,"26843":0,"26844":0,"26845":0,"26846":0,"26847":0,"26848":0,"26849":0,"26850":0,"26851":1,"26852":0,"26853":1,"26854":0,"26855":0,"26856":0,"26857":0,"26858":0,"26859":0,"26860":1,"26861":0,"26862":0,"26863":0,"26864":1,"26865":0,"26866":0,"26867":1,"26868":1,"26869":0,"26870":0,"26871":0,"26872":0,"26873":0,"26874":0,"26875":0,"26876":0,"26877":0,"26878":1,"26879":1,"26880":0,"26881":1,"26882":0,"26883":0,"26884":0,"26885":0,"26886":0,"26887":0,"26888":0,"26889":0,"26890":1,"26891":0,"26892":0,"26893":0,"26894":0,"26895":0,"26896":0,"26897":0,"26898":0,"26899":0,"26900":0,"26901":0,"26902":0,"26903":1,"26904":0,"26905":1,"26906":1,"26907":1,"26908":0,"26909":0,"26910":0,"26911":0,"26912":0,"26913":0,"26914":1,"26915":0,"26916":0,"26917":0,"26918":0,"26919":0,"26920":0,"26921":0,"26922":0,"26923":1,"26924":0,"26925":0,"26926":1,"26927":1,"26928":0,"26929":0,"26930":0,"26931":0,"26932":1,"26933":1,"26934":1,"26935":1,"26936":0,"26937":0,"26938":1,"26939":0,"26940":1,"26941":1,"26942":0,"26943":1,"26944":0,"26945":0,"26946":0,"26947":0,"26948":0,"26949":0,"26950":1,"26951":0,"26952":1,"26953":0,"26954":0,"26955":1,"26956":1,"26957":0,"26958":0,"26959":0,"26960":1,"26961":1,"26962":1,"26963":0,"26964":0,"26965":0,"26966":1,"26967":0,"26968":0,"26969":1,"26970":1,"26971":0,"26972":0,"26973":1,"26974":0,"26975":1,"26976":0,"26977":1,"26978":1,"26979":0,"26980":1,"26981":0,"26982":1,"26983":0,"26984":0,"26985":0,"26986":0,"26987":0,"26988":0,"26989":1,"26990":0,"26991":1,"26992":0,"26993":1,"26994":0,"26995":1,"26996":0,"26997":0,"26998":0,"26999":0,"27000":0,"27001":0,"27002":0,"27003":0,"27004":0,"27005":1,"27006":1,"27007":0,"27008":1,"27009":0,"27010":1,"27011":0,"27012":0,"27013":1,"27014":0,"27015":1,"27016":0,"27017":1,"27018":0,"27019":0,"27020":0,"27021":1,"27022":0,"27023":0,"27024":0,"27025":0,"27026":1,"27027":0,"27028":1,"27029":1,"27030":0,"27031":0,"27032":1,"27033":0,"27034":0,"27035":0,"27036":1,"27037":0,"27038":0,"27039":0,"27040":0,"27041":1,"27042":0,"27043":1,"27044":0,"27045":0,"27046":0,"27047":0,"27048":0,"27049":0,"27050":0,"27051":1,"27052":0,"27053":0,"27054":0,"27055":0,"27056":0,"27057":0,"27058":0,"27059":0,"27060":0,"27061":0,"27062":0,"27063":0,"27064":0,"27065":0,"27066":0,"27067":1,"27068":1,"27069":0,"27070":0,"27071":1,"27072":0,"27073":0,"27074":0,"27075":1,"27076":1,"27077":0,"27078":0,"27079":0,"27080":0,"27081":0,"27082":0,"27083":0,"27084":1,"27085":0,"27086":0,"27087":0,"27088":0,"27089":0,"27090":0,"27091":0,"27092":0,"27093":0,"27094":0,"27095":0,"27096":0,"27097":0,"27098":0,"27099":0,"27100":1,"27101":1,"27102":0,"27103":0,"27104":0,"27105":0,"27106":0,"27107":0,"27108":1,"27109":0,"27110":1,"27111":0,"27112":0,"27113":1,"27114":0,"27115":0,"27116":0,"27117":0,"27118":0,"27119":1,"27120":0,"27121":1,"27122":0,"27123":0,"27124":1,"27125":0,"27126":0,"27127":0,"27128":0,"27129":0,"27130":0,"27131":1,"27132":0,"27133":1,"27134":1,"27135":0,"27136":0,"27137":0,"27138":0,"27139":0,"27140":1,"27141":0,"27142":0,"27143":0,"27144":0,"27145":0,"27146":0,"27147":0,"27148":0,"27149":1,"27150":0,"27151":0,"27152":0,"27153":0,"27154":1,"27155":0,"27156":0,"27157":0,"27158":0,"27159":0,"27160":0,"27161":0,"27162":1,"27163":0,"27164":0,"27165":0,"27166":1,"27167":0,"27168":0,"27169":0,"27170":0,"27171":0,"27172":1,"27173":0,"27174":0,"27175":0,"27176":0,"27177":0,"27178":0,"27179":0,"27180":0,"27181":0,"27182":1,"27183":0,"27184":1,"27185":0,"27186":0,"27187":0,"27188":1,"27189":0,"27190":0,"27191":1,"27192":0,"27193":1,"27194":1,"27195":0,"27196":0,"27197":0,"27198":1,"27199":0,"27200":0,"27201":0,"27202":0,"27203":0,"27204":0,"27205":1,"27206":0,"27207":1,"27208":0,"27209":0,"27210":1,"27211":0,"27212":0,"27213":1,"27214":0,"27215":1,"27216":0,"27217":1,"27218":0,"27219":0,"27220":1,"27221":0,"27222":1,"27223":1,"27224":0,"27225":0,"27226":0,"27227":0,"27228":0,"27229":1,"27230":1,"27231":0,"27232":0,"27233":0,"27234":0,"27235":0,"27236":0,"27237":0,"27238":1,"27239":0,"27240":0,"27241":0,"27242":1,"27243":1,"27244":0,"27245":0,"27246":0,"27247":0,"27248":1,"27249":0,"27250":1,"27251":0,"27252":0,"27253":1,"27254":0,"27255":0,"27256":1,"27257":0,"27258":0,"27259":0,"27260":1,"27261":0,"27262":0,"27263":1,"27264":1,"27265":0,"27266":1,"27267":1,"27268":1,"27269":1,"27270":0,"27271":0,"27272":1,"27273":1,"27274":0,"27275":0,"27276":0,"27277":0,"27278":0,"27279":0,"27280":0,"27281":0,"27282":1,"27283":0,"27284":0,"27285":0,"27286":0,"27287":0,"27288":0,"27289":0,"27290":0,"27291":0,"27292":0,"27293":0,"27294":0,"27295":0,"27296":0,"27297":0,"27298":0,"27299":1,"27300":1,"27301":1,"27302":0,"27303":0,"27304":0,"27305":1,"27306":1,"27307":1,"27308":0,"27309":0,"27310":1,"27311":1,"27312":0,"27313":0,"27314":0,"27315":0,"27316":0,"27317":0,"27318":0,"27319":0,"27320":0,"27321":1,"27322":0,"27323":0,"27324":0,"27325":0,"27326":1,"27327":0,"27328":0,"27329":0,"27330":1,"27331":0,"27332":0,"27333":1,"27334":0,"27335":0,"27336":0,"27337":0,"27338":0,"27339":0,"27340":0,"27341":1,"27342":0,"27343":1,"27344":1,"27345":1,"27346":1,"27347":0,"27348":0,"27349":0,"27350":0,"27351":0,"27352":0,"27353":0,"27354":0,"27355":0,"27356":0,"27357":0,"27358":0,"27359":0,"27360":1,"27361":0,"27362":0,"27363":0,"27364":1,"27365":0,"27366":0,"27367":0,"27368":1,"27369":0,"27370":1,"27371":1,"27372":0,"27373":1,"27374":0,"27375":0,"27376":0,"27377":0,"27378":0,"27379":0,"27380":0,"27381":0,"27382":0,"27383":0,"27384":0,"27385":0,"27386":1,"27387":0,"27388":0,"27389":0,"27390":1,"27391":0,"27392":0,"27393":0,"27394":0,"27395":1,"27396":0,"27397":0,"27398":0,"27399":0,"27400":0,"27401":0,"27402":0,"27403":0,"27404":0,"27405":0,"27406":0,"27407":1,"27408":0,"27409":1,"27410":0,"27411":0,"27412":0,"27413":0,"27414":0,"27415":0,"27416":1,"27417":0,"27418":1,"27419":0,"27420":0,"27421":0,"27422":0,"27423":0,"27424":0,"27425":0,"27426":0,"27427":0,"27428":0,"27429":0,"27430":0,"27431":1,"27432":0,"27433":0,"27434":0,"27435":1,"27436":0,"27437":0,"27438":0,"27439":0,"27440":0,"27441":0,"27442":0,"27443":0,"27444":1,"27445":0,"27446":0,"27447":0,"27448":0,"27449":0,"27450":1,"27451":1,"27452":0,"27453":0,"27454":0,"27455":0,"27456":0,"27457":0,"27458":0,"27459":0,"27460":1,"27461":1,"27462":0,"27463":0,"27464":0,"27465":0,"27466":1,"27467":1,"27468":0,"27469":1,"27470":1,"27471":0,"27472":0,"27473":0,"27474":0,"27475":0,"27476":0,"27477":0,"27478":0,"27479":1,"27480":0,"27481":1,"27482":0,"27483":1,"27484":0,"27485":0,"27486":1,"27487":0,"27488":0,"27489":0,"27490":0,"27491":0,"27492":1,"27493":0,"27494":0,"27495":0,"27496":0,"27497":0,"27498":0,"27499":0,"27500":0,"27501":0,"27502":0,"27503":1,"27504":0,"27505":0,"27506":0,"27507":0,"27508":0,"27509":0,"27510":0,"27511":0,"27512":1,"27513":0,"27514":0,"27515":0,"27516":0,"27517":1,"27518":1,"27519":0,"27520":1,"27521":1,"27522":0,"27523":0,"27524":0,"27525":0,"27526":1,"27527":0,"27528":0,"27529":0,"27530":1,"27531":0,"27532":0,"27533":0,"27534":1,"27535":0,"27536":0,"27537":0,"27538":0,"27539":0,"27540":1,"27541":0,"27542":0,"27543":1,"27544":0,"27545":0,"27546":0,"27547":0,"27548":1,"27549":0,"27550":0,"27551":0,"27552":1,"27553":0,"27554":0,"27555":0,"27556":1,"27557":1,"27558":0,"27559":0,"27560":1,"27561":0,"27562":1,"27563":1,"27564":0,"27565":0,"27566":1,"27567":0,"27568":0,"27569":0,"27570":1,"27571":0,"27572":0,"27573":0,"27574":0,"27575":0,"27576":0,"27577":1,"27578":1,"27579":0,"27580":1,"27581":1,"27582":0,"27583":1,"27584":0,"27585":0,"27586":0,"27587":0,"27588":0,"27589":0,"27590":0,"27591":0,"27592":1,"27593":0,"27594":0,"27595":0,"27596":1,"27597":0,"27598":0,"27599":0,"27600":1,"27601":0,"27602":1,"27603":0,"27604":1,"27605":0,"27606":1,"27607":0,"27608":0,"27609":0,"27610":1,"27611":0,"27612":0,"27613":0,"27614":0,"27615":1,"27616":0,"27617":0,"27618":0,"27619":0,"27620":0,"27621":0,"27622":1,"27623":1,"27624":1,"27625":1,"27626":1,"27627":0,"27628":0,"27629":1,"27630":0,"27631":0,"27632":0,"27633":0,"27634":0,"27635":0,"27636":0,"27637":0,"27638":0,"27639":0,"27640":1,"27641":0,"27642":0,"27643":0,"27644":1,"27645":0,"27646":0,"27647":0,"27648":1,"27649":1,"27650":0,"27651":0,"27652":1,"27653":0,"27654":0,"27655":0,"27656":0,"27657":0,"27658":0,"27659":0,"27660":1,"27661":0,"27662":0,"27663":0,"27664":0,"27665":0,"27666":0,"27667":1,"27668":1,"27669":0,"27670":0,"27671":0,"27672":0,"27673":0,"27674":0,"27675":0,"27676":1,"27677":0,"27678":1,"27679":0,"27680":0,"27681":0,"27682":0,"27683":0,"27684":1,"27685":1,"27686":0,"27687":0,"27688":0,"27689":0,"27690":0,"27691":0,"27692":0,"27693":0,"27694":0,"27695":0,"27696":0,"27697":0,"27698":0,"27699":1,"27700":0,"27701":0,"27702":1,"27703":0,"27704":0,"27705":0,"27706":1,"27707":0,"27708":0,"27709":0,"27710":0,"27711":1,"27712":0,"27713":0,"27714":1,"27715":0,"27716":1,"27717":0,"27718":0,"27719":0,"27720":0,"27721":0,"27722":0,"27723":0,"27724":0,"27725":1,"27726":0,"27727":1,"27728":0,"27729":0,"27730":1,"27731":1,"27732":0,"27733":0,"27734":1,"27735":1,"27736":1,"27737":0,"27738":0,"27739":1,"27740":1,"27741":1,"27742":0,"27743":1,"27744":0,"27745":0,"27746":0,"27747":0,"27748":0,"27749":1,"27750":1,"27751":0,"27752":0,"27753":1,"27754":0,"27755":0,"27756":0,"27757":0,"27758":0,"27759":0,"27760":0,"27761":1,"27762":0,"27763":0,"27764":0,"27765":0,"27766":0,"27767":0,"27768":0,"27769":1,"27770":0,"27771":0,"27772":0,"27773":0,"27774":0,"27775":0,"27776":1,"27777":1,"27778":0,"27779":1,"27780":0,"27781":0,"27782":0,"27783":0,"27784":1,"27785":1,"27786":0,"27787":1,"27788":0,"27789":0,"27790":0,"27791":0,"27792":0,"27793":0,"27794":1,"27795":0,"27796":1,"27797":0,"27798":1,"27799":0,"27800":0,"27801":0,"27802":0,"27803":0,"27804":0,"27805":0,"27806":0,"27807":0,"27808":0,"27809":0,"27810":0,"27811":0,"27812":0,"27813":1,"27814":0,"27815":1,"27816":1,"27817":0,"27818":0,"27819":0,"27820":0,"27821":1,"27822":0,"27823":1,"27824":0,"27825":0,"27826":0,"27827":0,"27828":0,"27829":0,"27830":0,"27831":0,"27832":0,"27833":0,"27834":0,"27835":0,"27836":0,"27837":0,"27838":0,"27839":0,"27840":0,"27841":1,"27842":0,"27843":0,"27844":0,"27845":0,"27846":1,"27847":0,"27848":0,"27849":0,"27850":1,"27851":0,"27852":0,"27853":1,"27854":0,"27855":0,"27856":0,"27857":0,"27858":0,"27859":0,"27860":0,"27861":0,"27862":0,"27863":0,"27864":1,"27865":0,"27866":1,"27867":1,"27868":0,"27869":0,"27870":0,"27871":0,"27872":0,"27873":0,"27874":0,"27875":0,"27876":0,"27877":1,"27878":0,"27879":0,"27880":0,"27881":0,"27882":1,"27883":0,"27884":1,"27885":0,"27886":0,"27887":0,"27888":0,"27889":0,"27890":0,"27891":1,"27892":1,"27893":0,"27894":0,"27895":0,"27896":1,"27897":0,"27898":0,"27899":0,"27900":0,"27901":0,"27902":0,"27903":0,"27904":1,"27905":1,"27906":0,"27907":0,"27908":1,"27909":1,"27910":1,"27911":0,"27912":0,"27913":1,"27914":1,"27915":1,"27916":1,"27917":0,"27918":0,"27919":0,"27920":0,"27921":0,"27922":0,"27923":1,"27924":0,"27925":0,"27926":0,"27927":0,"27928":0,"27929":0,"27930":0,"27931":1,"27932":1,"27933":0,"27934":0,"27935":1,"27936":0,"27937":0,"27938":0,"27939":0,"27940":0,"27941":1,"27942":1,"27943":0,"27944":0,"27945":0,"27946":0,"27947":1,"27948":1,"27949":1,"27950":0,"27951":0,"27952":1,"27953":0,"27954":0,"27955":1,"27956":0,"27957":0,"27958":1,"27959":0,"27960":0,"27961":0,"27962":0,"27963":0,"27964":0,"27965":1,"27966":0,"27967":0,"27968":0,"27969":0,"27970":0,"27971":0,"27972":0,"27973":1,"27974":0,"27975":0,"27976":0,"27977":0,"27978":1,"27979":0,"27980":1,"27981":0,"27982":0,"27983":1,"27984":0,"27985":1,"27986":0,"27987":1,"27988":0,"27989":1,"27990":0,"27991":0,"27992":0,"27993":0,"27994":0,"27995":0,"27996":0,"27997":1,"27998":0,"27999":0,"28000":1,"28001":0,"28002":0,"28003":1,"28004":0,"28005":0,"28006":1,"28007":0,"28008":0,"28009":0,"28010":0,"28011":0,"28012":0,"28013":0,"28014":0,"28015":1,"28016":0,"28017":0,"28018":0,"28019":0,"28020":0,"28021":0,"28022":1,"28023":0,"28024":0,"28025":0,"28026":1,"28027":0,"28028":1,"28029":0,"28030":0,"28031":0,"28032":0,"28033":0,"28034":0,"28035":0,"28036":0,"28037":1,"28038":0,"28039":0,"28040":0,"28041":1,"28042":0,"28043":1,"28044":0,"28045":0,"28046":1,"28047":0,"28048":0,"28049":0,"28050":0,"28051":0,"28052":0,"28053":0,"28054":1,"28055":0,"28056":0,"28057":0,"28058":0,"28059":0,"28060":1,"28061":0,"28062":1,"28063":1,"28064":0,"28065":0,"28066":0,"28067":0,"28068":0,"28069":0,"28070":0,"28071":0,"28072":0,"28073":0,"28074":0,"28075":0,"28076":0,"28077":0,"28078":0,"28079":1,"28080":0,"28081":0,"28082":0,"28083":0,"28084":0,"28085":1,"28086":0,"28087":0,"28088":0,"28089":0,"28090":1,"28091":0,"28092":0,"28093":0,"28094":0,"28095":0,"28096":1,"28097":0,"28098":0,"28099":0,"28100":0,"28101":0,"28102":0,"28103":0,"28104":0,"28105":0,"28106":0,"28107":0,"28108":0,"28109":0,"28110":0,"28111":1,"28112":1,"28113":0,"28114":0,"28115":0,"28116":0,"28117":1,"28118":0,"28119":0,"28120":0,"28121":1,"28122":1,"28123":1,"28124":0,"28125":0,"28126":0,"28127":0,"28128":0,"28129":0,"28130":0,"28131":0,"28132":0,"28133":1,"28134":1,"28135":1,"28136":1,"28137":0,"28138":1,"28139":0,"28140":0,"28141":0,"28142":1,"28143":1,"28144":0,"28145":0,"28146":1,"28147":1,"28148":0,"28149":1,"28150":1,"28151":0,"28152":0,"28153":1,"28154":0,"28155":0,"28156":0,"28157":0,"28158":0,"28159":0,"28160":1,"28161":0,"28162":1,"28163":1,"28164":0,"28165":0,"28166":1,"28167":1,"28168":0,"28169":0,"28170":0,"28171":1,"28172":0,"28173":0,"28174":0,"28175":1,"28176":0,"28177":0,"28178":1,"28179":1,"28180":0,"28181":0,"28182":0,"28183":0,"28184":0,"28185":0,"28186":1,"28187":1,"28188":0,"28189":0,"28190":1,"28191":1,"28192":0,"28193":0,"28194":0,"28195":0,"28196":1,"28197":1,"28198":0,"28199":0,"28200":1,"28201":0,"28202":1,"28203":0,"28204":1,"28205":0,"28206":0,"28207":1,"28208":0,"28209":1,"28210":0,"28211":1,"28212":0,"28213":1,"28214":0,"28215":0,"28216":0,"28217":0,"28218":0,"28219":0,"28220":0,"28221":1,"28222":0,"28223":0,"28224":0,"28225":0,"28226":0,"28227":0,"28228":0,"28229":0,"28230":1,"28231":0,"28232":0,"28233":1,"28234":1,"28235":0,"28236":0,"28237":0,"28238":1,"28239":1,"28240":0,"28241":0,"28242":1,"28243":1,"28244":0,"28245":1,"28246":0,"28247":0,"28248":1,"28249":0,"28250":0,"28251":0,"28252":1,"28253":0,"28254":0,"28255":0,"28256":0,"28257":0,"28258":0,"28259":0,"28260":0,"28261":1,"28262":0,"28263":0,"28264":0,"28265":0,"28266":0,"28267":0,"28268":0,"28269":1,"28270":1,"28271":0,"28272":0,"28273":0,"28274":1,"28275":0,"28276":0,"28277":0,"28278":0,"28279":0,"28280":0,"28281":1,"28282":1,"28283":0,"28284":0,"28285":1,"28286":0,"28287":0,"28288":1,"28289":0,"28290":0,"28291":1,"28292":0,"28293":1,"28294":0,"28295":0,"28296":1,"28297":0,"28298":1,"28299":0,"28300":0,"28301":1,"28302":0,"28303":1,"28304":0,"28305":1,"28306":0,"28307":0,"28308":0,"28309":0,"28310":0,"28311":0,"28312":1,"28313":0,"28314":0,"28315":0,"28316":1,"28317":1,"28318":0,"28319":0,"28320":0,"28321":1,"28322":1,"28323":1,"28324":0,"28325":0,"28326":0,"28327":0,"28328":1,"28329":0,"28330":0,"28331":0,"28332":0,"28333":1,"28334":0,"28335":0,"28336":0,"28337":1,"28338":0,"28339":1,"28340":1,"28341":0,"28342":1,"28343":0,"28344":1,"28345":1,"28346":0,"28347":0,"28348":0,"28349":0,"28350":0,"28351":1,"28352":0,"28353":0,"28354":0,"28355":1,"28356":0,"28357":0,"28358":0,"28359":0,"28360":0,"28361":0,"28362":1,"28363":0,"28364":0,"28365":0,"28366":1,"28367":0,"28368":1,"28369":0,"28370":0,"28371":0,"28372":1,"28373":0,"28374":0,"28375":0,"28376":0,"28377":1,"28378":1,"28379":0,"28380":0,"28381":0,"28382":0,"28383":1,"28384":0,"28385":0,"28386":0,"28387":0,"28388":0,"28389":0,"28390":0,"28391":0,"28392":0,"28393":0,"28394":0,"28395":0,"28396":0,"28397":1,"28398":0,"28399":0,"28400":0,"28401":1,"28402":0,"28403":0,"28404":0,"28405":1,"28406":0,"28407":0,"28408":0,"28409":0,"28410":0,"28411":0,"28412":0,"28413":0,"28414":0,"28415":0,"28416":0,"28417":0,"28418":1,"28419":0,"28420":0,"28421":1,"28422":0,"28423":0,"28424":0,"28425":0,"28426":0,"28427":1,"28428":1,"28429":1,"28430":0,"28431":0,"28432":1,"28433":0,"28434":0,"28435":0,"28436":0,"28437":1,"28438":0,"28439":1,"28440":0,"28441":0,"28442":0,"28443":0,"28444":0,"28445":0,"28446":0,"28447":0,"28448":0,"28449":0,"28450":0,"28451":0,"28452":0,"28453":0,"28454":0,"28455":0,"28456":0,"28457":1,"28458":0,"28459":0,"28460":0,"28461":0,"28462":0,"28463":0,"28464":0,"28465":0,"28466":0,"28467":0,"28468":0,"28469":0,"28470":0,"28471":1,"28472":0,"28473":0,"28474":0,"28475":0,"28476":0,"28477":0,"28478":1,"28479":0,"28480":1,"28481":0,"28482":0,"28483":1,"28484":0,"28485":1,"28486":0,"28487":0,"28488":0,"28489":0,"28490":1,"28491":0,"28492":1,"28493":1,"28494":0,"28495":0,"28496":1,"28497":1,"28498":0,"28499":1,"28500":1,"28501":0,"28502":0,"28503":0,"28504":1,"28505":0,"28506":0,"28507":1,"28508":0,"28509":0,"28510":0,"28511":0,"28512":1,"28513":0,"28514":1,"28515":1,"28516":0,"28517":0,"28518":0,"28519":0,"28520":1,"28521":0,"28522":0,"28523":0,"28524":0,"28525":1,"28526":0,"28527":1,"28528":0,"28529":0,"28530":0,"28531":0,"28532":0,"28533":1,"28534":0,"28535":0,"28536":0,"28537":0,"28538":0,"28539":0,"28540":0,"28541":0,"28542":0,"28543":0,"28544":0,"28545":0,"28546":0,"28547":0,"28548":0,"28549":1,"28550":0,"28551":0,"28552":0,"28553":0,"28554":0,"28555":1,"28556":0,"28557":0,"28558":1,"28559":1,"28560":0,"28561":0,"28562":0,"28563":0,"28564":0,"28565":0,"28566":1,"28567":0,"28568":0,"28569":1,"28570":0,"28571":0,"28572":0,"28573":0,"28574":1,"28575":1,"28576":0,"28577":0,"28578":0,"28579":0,"28580":0,"28581":1,"28582":0,"28583":1,"28584":1,"28585":0,"28586":0,"28587":1,"28588":0,"28589":0,"28590":1,"28591":0,"28592":0,"28593":0,"28594":0,"28595":0,"28596":0,"28597":0,"28598":1,"28599":0,"28600":0,"28601":0,"28602":1,"28603":1,"28604":0,"28605":0,"28606":0,"28607":0,"28608":0,"28609":0,"28610":1,"28611":1,"28612":0,"28613":1,"28614":0,"28615":0,"28616":0,"28617":0,"28618":0,"28619":1,"28620":0,"28621":1,"28622":1,"28623":0,"28624":0,"28625":0,"28626":0,"28627":0,"28628":1,"28629":1,"28630":1,"28631":1,"28632":0,"28633":0,"28634":1,"28635":0,"28636":0,"28637":0,"28638":0,"28639":0,"28640":0,"28641":1,"28642":0,"28643":0,"28644":0,"28645":0,"28646":0,"28647":1,"28648":0,"28649":1,"28650":0,"28651":0,"28652":1,"28653":0,"28654":0,"28655":1,"28656":0,"28657":0,"28658":0,"28659":0,"28660":0,"28661":0,"28662":0,"28663":1,"28664":0,"28665":1,"28666":0,"28667":0,"28668":1,"28669":0,"28670":0,"28671":0,"28672":0,"28673":0,"28674":0,"28675":1,"28676":1,"28677":1,"28678":0,"28679":0,"28680":0,"28681":1,"28682":0,"28683":0,"28684":0,"28685":0,"28686":0,"28687":0,"28688":0,"28689":0,"28690":0,"28691":0,"28692":0,"28693":0,"28694":0,"28695":0,"28696":0,"28697":0,"28698":0,"28699":1,"28700":0,"28701":0,"28702":0,"28703":0,"28704":0,"28705":0,"28706":0,"28707":0,"28708":0,"28709":0,"28710":0,"28711":0,"28712":1,"28713":1,"28714":0,"28715":0,"28716":0,"28717":0,"28718":0,"28719":0,"28720":0,"28721":0,"28722":0,"28723":0,"28724":0,"28725":0,"28726":0,"28727":1,"28728":1,"28729":1,"28730":0,"28731":0,"28732":0,"28733":0,"28734":0,"28735":0,"28736":0,"28737":0,"28738":0,"28739":1,"28740":0,"28741":0,"28742":0,"28743":0,"28744":1,"28745":0,"28746":1,"28747":0,"28748":0,"28749":1,"28750":0,"28751":0,"28752":0,"28753":0,"28754":0,"28755":0,"28756":0,"28757":0,"28758":0,"28759":0,"28760":0,"28761":0,"28762":0,"28763":0,"28764":0,"28765":0,"28766":0,"28767":0,"28768":1,"28769":1,"28770":1,"28771":1,"28772":1,"28773":1,"28774":0,"28775":1,"28776":0,"28777":0,"28778":1,"28779":0,"28780":0,"28781":0,"28782":0,"28783":1,"28784":0,"28785":0,"28786":0,"28787":1,"28788":0,"28789":1,"28790":0,"28791":0,"28792":0,"28793":1,"28794":1,"28795":0,"28796":1,"28797":0,"28798":1,"28799":1,"28800":1,"28801":0,"28802":0,"28803":0,"28804":0,"28805":0,"28806":1,"28807":0,"28808":0,"28809":0,"28810":0,"28811":0,"28812":1,"28813":1,"28814":0,"28815":0,"28816":1,"28817":0,"28818":1,"28819":0,"28820":0,"28821":0,"28822":0,"28823":0,"28824":0,"28825":0,"28826":0,"28827":0,"28828":0,"28829":0,"28830":0,"28831":1,"28832":0,"28833":0,"28834":0,"28835":0,"28836":0,"28837":0,"28838":1,"28839":0,"28840":0,"28841":0,"28842":0,"28843":1,"28844":1,"28845":1,"28846":0,"28847":1,"28848":0,"28849":0,"28850":0,"28851":0,"28852":0,"28853":0,"28854":0,"28855":0,"28856":0,"28857":0,"28858":0,"28859":0,"28860":0,"28861":1,"28862":0,"28863":0,"28864":0,"28865":0,"28866":0,"28867":0,"28868":0,"28869":0,"28870":0,"28871":0,"28872":0,"28873":0,"28874":0,"28875":0,"28876":0,"28877":0,"28878":0,"28879":0,"28880":1,"28881":0,"28882":0,"28883":0,"28884":0,"28885":0,"28886":0,"28887":0,"28888":0,"28889":0,"28890":0,"28891":0,"28892":0,"28893":0,"28894":1,"28895":0,"28896":0,"28897":0,"28898":1,"28899":1,"28900":0,"28901":1,"28902":1,"28903":1,"28904":1,"28905":0,"28906":0,"28907":1,"28908":1,"28909":1,"28910":0,"28911":1,"28912":1,"28913":0,"28914":1,"28915":1,"28916":0,"28917":1,"28918":0,"28919":0,"28920":1,"28921":1,"28922":0,"28923":0,"28924":0,"28925":0,"28926":1,"28927":0,"28928":1,"28929":0,"28930":0,"28931":0,"28932":0,"28933":0,"28934":0,"28935":1,"28936":1,"28937":0,"28938":0,"28939":1,"28940":1,"28941":0,"28942":1,"28943":1,"28944":0,"28945":0,"28946":0,"28947":0,"28948":0,"28949":0,"28950":0,"28951":0,"28952":0,"28953":0,"28954":0,"28955":1,"28956":1,"28957":1,"28958":1,"28959":1,"28960":1,"28961":0,"28962":0,"28963":0,"28964":1,"28965":0,"28966":0,"28967":0,"28968":0,"28969":0,"28970":0,"28971":0,"28972":1,"28973":0,"28974":0,"28975":0,"28976":1,"28977":0,"28978":0,"28979":0,"28980":0,"28981":1,"28982":0,"28983":0,"28984":0,"28985":0,"28986":0,"28987":0,"28988":0,"28989":0,"28990":1,"28991":0,"28992":1,"28993":0,"28994":0,"28995":0,"28996":0,"28997":0,"28998":0,"28999":0,"29000":0,"29001":0,"29002":0,"29003":0,"29004":0,"29005":0,"29006":0,"29007":0,"29008":1,"29009":1,"29010":1,"29011":0,"29012":0,"29013":0,"29014":0,"29015":0,"29016":0,"29017":0,"29018":0,"29019":0,"29020":0,"29021":0,"29022":1,"29023":1,"29024":1,"29025":0,"29026":0,"29027":0,"29028":0,"29029":1,"29030":0,"29031":1,"29032":1,"29033":1,"29034":1,"29035":0,"29036":0,"29037":0,"29038":0,"29039":0,"29040":0,"29041":1,"29042":0,"29043":1,"29044":0,"29045":0,"29046":0,"29047":0,"29048":0,"29049":1,"29050":0,"29051":0,"29052":0,"29053":1,"29054":0,"29055":1,"29056":1,"29057":0,"29058":0,"29059":0,"29060":0,"29061":0,"29062":1,"29063":0,"29064":0,"29065":1,"29066":1,"29067":0,"29068":0,"29069":0,"29070":0,"29071":0,"29072":0,"29073":0,"29074":0,"29075":0,"29076":0,"29077":0,"29078":0,"29079":1,"29080":0,"29081":0,"29082":1,"29083":0,"29084":0,"29085":0,"29086":1,"29087":1,"29088":0,"29089":0,"29090":0,"29091":1,"29092":0,"29093":0,"29094":1,"29095":0,"29096":1,"29097":0,"29098":0,"29099":0,"29100":1,"29101":0,"29102":0,"29103":0,"29104":0,"29105":0,"29106":1,"29107":0,"29108":0,"29109":0,"29110":0,"29111":0,"29112":0,"29113":0,"29114":0,"29115":0,"29116":0,"29117":0,"29118":0,"29119":0,"29120":0,"29121":0,"29122":1,"29123":0,"29124":0,"29125":0,"29126":1,"29127":1,"29128":1,"29129":0,"29130":0,"29131":0,"29132":1,"29133":0,"29134":1,"29135":1,"29136":1,"29137":1,"29138":0,"29139":0,"29140":0,"29141":0,"29142":0,"29143":0,"29144":0,"29145":0,"29146":1,"29147":0,"29148":0,"29149":0,"29150":0,"29151":1,"29152":0,"29153":0,"29154":0,"29155":0,"29156":0,"29157":0,"29158":0,"29159":1,"29160":1,"29161":0,"29162":1,"29163":0,"29164":0,"29165":0,"29166":0,"29167":0,"29168":0,"29169":0,"29170":1,"29171":0,"29172":1,"29173":0,"29174":0,"29175":0,"29176":0,"29177":0,"29178":0,"29179":0,"29180":1,"29181":0,"29182":0,"29183":1,"29184":0,"29185":0,"29186":0,"29187":0,"29188":0,"29189":0,"29190":0,"29191":0,"29192":1,"29193":0,"29194":0,"29195":0,"29196":1,"29197":0,"29198":0,"29199":1,"29200":0,"29201":0,"29202":0,"29203":0,"29204":0,"29205":1,"29206":0,"29207":1,"29208":0,"29209":0,"29210":0,"29211":0,"29212":0,"29213":0,"29214":1,"29215":0,"29216":0,"29217":0,"29218":1,"29219":1,"29220":0,"29221":0,"29222":0,"29223":1,"29224":1,"29225":0,"29226":0,"29227":1,"29228":0,"29229":0,"29230":0,"29231":0,"29232":0,"29233":1,"29234":0,"29235":0,"29236":0,"29237":0,"29238":0,"29239":1,"29240":0,"29241":1,"29242":0,"29243":1,"29244":1,"29245":0,"29246":0,"29247":0,"29248":0,"29249":0,"29250":1,"29251":0,"29252":1,"29253":0,"29254":0,"29255":1,"29256":0,"29257":0,"29258":0,"29259":1,"29260":0,"29261":0,"29262":0,"29263":0,"29264":0,"29265":1,"29266":0,"29267":0,"29268":0,"29269":1,"29270":1,"29271":0,"29272":1,"29273":0,"29274":0,"29275":0,"29276":1,"29277":0,"29278":0,"29279":0,"29280":0,"29281":1,"29282":0,"29283":0,"29284":0,"29285":0,"29286":1,"29287":1,"29288":1,"29289":0,"29290":0,"29291":0,"29292":0,"29293":0,"29294":0,"29295":0,"29296":0,"29297":0,"29298":0,"29299":0,"29300":0,"29301":1,"29302":1,"29303":1,"29304":0,"29305":1,"29306":1,"29307":0,"29308":1,"29309":0,"29310":0,"29311":0,"29312":0,"29313":1,"29314":0,"29315":0,"29316":0,"29317":0,"29318":0,"29319":0,"29320":1,"29321":0,"29322":0,"29323":0,"29324":0,"29325":0,"29326":0,"29327":1,"29328":1,"29329":0,"29330":0,"29331":0,"29332":1,"29333":0,"29334":0,"29335":0,"29336":0,"29337":0,"29338":0,"29339":1,"29340":0,"29341":0,"29342":0,"29343":0,"29344":0,"29345":1,"29346":1,"29347":0,"29348":0,"29349":0,"29350":0,"29351":0,"29352":1,"29353":0,"29354":1,"29355":0,"29356":0,"29357":1,"29358":0,"29359":0,"29360":1,"29361":1,"29362":0,"29363":0,"29364":1,"29365":1,"29366":0,"29367":0,"29368":0,"29369":0,"29370":0,"29371":0,"29372":0,"29373":0,"29374":0,"29375":0,"29376":0,"29377":0,"29378":0,"29379":1,"29380":0,"29381":0,"29382":0,"29383":0,"29384":0,"29385":0,"29386":1,"29387":0,"29388":0,"29389":0,"29390":0,"29391":0,"29392":0,"29393":0,"29394":0,"29395":0,"29396":0,"29397":1,"29398":0,"29399":0,"29400":0,"29401":0,"29402":0,"29403":0,"29404":0,"29405":0,"29406":0,"29407":1,"29408":0,"29409":1,"29410":1,"29411":1,"29412":0,"29413":1,"29414":0,"29415":1,"29416":0,"29417":0,"29418":0,"29419":1,"29420":0,"29421":0,"29422":0,"29423":0,"29424":0,"29425":1,"29426":0,"29427":1,"29428":1,"29429":0,"29430":1,"29431":1,"29432":1,"29433":0,"29434":0,"29435":1,"29436":1,"29437":0,"29438":1,"29439":0,"29440":1,"29441":0,"29442":1,"29443":0,"29444":0,"29445":0,"29446":0,"29447":1,"29448":0,"29449":1,"29450":0,"29451":1,"29452":0,"29453":1,"29454":0,"29455":0,"29456":0,"29457":1,"29458":1,"29459":0,"29460":0,"29461":0,"29462":0,"29463":0,"29464":0,"29465":0,"29466":0,"29467":0,"29468":0,"29469":1,"29470":0,"29471":0,"29472":0,"29473":0,"29474":1,"29475":1,"29476":1,"29477":0,"29478":0,"29479":1,"29480":1,"29481":1,"29482":0,"29483":0,"29484":0,"29485":0,"29486":0,"29487":0,"29488":0,"29489":0,"29490":0,"29491":0,"29492":0,"29493":0,"29494":0,"29495":1,"29496":0,"29497":0,"29498":0,"29499":0,"29500":0,"29501":0,"29502":0,"29503":0,"29504":0,"29505":0,"29506":0,"29507":0,"29508":0,"29509":1,"29510":0,"29511":0,"29512":0,"29513":0,"29514":0,"29515":0,"29516":1,"29517":0,"29518":0,"29519":1,"29520":0,"29521":0,"29522":0,"29523":1,"29524":0,"29525":0,"29526":0,"29527":1,"29528":0,"29529":0,"29530":1,"29531":1,"29532":0,"29533":1,"29534":0,"29535":0,"29536":0,"29537":0,"29538":0,"29539":1,"29540":0,"29541":0,"29542":1,"29543":0,"29544":0,"29545":1,"29546":0,"29547":1,"29548":0,"29549":0,"29550":0,"29551":1,"29552":0,"29553":0,"29554":0,"29555":0,"29556":0,"29557":0,"29558":0,"29559":0,"29560":0,"29561":0,"29562":1,"29563":1,"29564":1,"29565":0,"29566":0,"29567":0,"29568":0,"29569":1,"29570":0,"29571":1,"29572":1,"29573":0,"29574":1,"29575":0,"29576":0,"29577":1,"29578":0,"29579":0,"29580":0,"29581":0,"29582":0,"29583":0,"29584":0,"29585":1,"29586":0,"29587":0,"29588":0,"29589":1,"29590":0,"29591":0,"29592":0,"29593":0,"29594":0,"29595":1,"29596":1,"29597":0,"29598":0,"29599":0,"29600":0,"29601":0,"29602":0,"29603":0,"29604":0,"29605":0,"29606":0,"29607":0,"29608":0,"29609":0,"29610":0,"29611":0,"29612":0,"29613":0,"29614":0,"29615":0,"29616":0,"29617":1,"29618":0,"29619":0,"29620":0,"29621":0,"29622":0,"29623":0,"29624":0,"29625":1,"29626":0,"29627":0,"29628":1,"29629":0,"29630":0,"29631":0,"29632":0,"29633":0,"29634":1,"29635":0,"29636":0,"29637":0,"29638":0,"29639":0,"29640":0,"29641":0,"29642":0,"29643":1,"29644":0,"29645":0,"29646":0,"29647":0,"29648":1,"29649":0,"29650":0,"29651":0,"29652":1,"29653":1,"29654":0,"29655":0,"29656":0,"29657":0,"29658":0,"29659":1,"29660":0,"29661":1,"29662":0,"29663":0,"29664":0,"29665":0,"29666":1,"29667":0,"29668":1,"29669":0,"29670":0,"29671":0,"29672":0,"29673":0,"29674":0,"29675":1,"29676":0,"29677":0,"29678":1,"29679":0,"29680":0,"29681":1,"29682":0,"29683":0,"29684":0,"29685":1,"29686":0,"29687":0,"29688":1,"29689":1,"29690":0,"29691":0,"29692":1,"29693":0,"29694":0,"29695":0,"29696":0,"29697":1,"29698":0,"29699":0,"29700":0,"29701":1,"29702":0,"29703":0,"29704":1,"29705":0,"29706":0,"29707":0,"29708":1,"29709":1,"29710":1,"29711":0,"29712":0,"29713":1,"29714":1,"29715":0,"29716":0,"29717":0,"29718":0,"29719":0,"29720":0,"29721":0,"29722":0,"29723":0,"29724":0,"29725":1,"29726":0,"29727":0,"29728":0,"29729":1,"29730":1,"29731":0,"29732":0,"29733":0,"29734":0,"29735":1,"29736":0,"29737":0,"29738":0,"29739":0,"29740":0,"29741":0,"29742":0,"29743":1,"29744":0,"29745":0,"29746":0,"29747":0,"29748":1,"29749":0,"29750":0,"29751":0,"29752":0,"29753":1,"29754":0,"29755":0,"29756":0,"29757":0,"29758":0,"29759":0,"29760":0,"29761":0,"29762":0,"29763":1,"29764":0,"29765":0,"29766":0,"29767":0,"29768":0,"29769":1,"29770":0,"29771":0,"29772":0,"29773":1,"29774":0,"29775":1,"29776":0,"29777":1,"29778":0,"29779":0,"29780":1,"29781":0,"29782":1,"29783":0,"29784":0,"29785":0,"29786":0,"29787":1,"29788":0,"29789":0,"29790":0,"29791":0,"29792":0,"29793":0,"29794":0,"29795":0,"29796":0,"29797":1,"29798":0,"29799":1,"29800":0,"29801":1,"29802":1,"29803":1,"29804":0,"29805":0,"29806":0,"29807":0,"29808":0,"29809":1,"29810":0,"29811":1,"29812":0,"29813":0,"29814":0,"29815":0,"29816":0,"29817":0,"29818":0,"29819":0,"29820":0,"29821":1,"29822":0,"29823":0,"29824":0,"29825":1,"29826":0,"29827":0,"29828":1,"29829":0,"29830":1,"29831":0,"29832":0,"29833":1,"29834":0,"29835":0,"29836":1,"29837":0,"29838":0,"29839":0,"29840":0,"29841":0,"29842":0,"29843":0,"29844":0,"29845":0,"29846":0,"29847":1,"29848":0,"29849":0,"29850":0,"29851":0,"29852":1,"29853":0,"29854":0,"29855":0,"29856":0,"29857":0,"29858":0,"29859":1,"29860":0,"29861":0,"29862":1,"29863":0,"29864":0,"29865":1,"29866":1,"29867":0,"29868":0,"29869":0,"29870":0,"29871":0,"29872":0,"29873":0,"29874":0,"29875":0,"29876":0,"29877":1,"29878":0,"29879":0,"29880":0,"29881":1,"29882":0,"29883":1,"29884":0,"29885":1,"29886":1,"29887":0,"29888":0,"29889":0,"29890":0,"29891":1,"29892":0,"29893":1,"29894":0,"29895":0,"29896":0,"29897":0,"29898":0,"29899":1,"29900":1,"29901":0,"29902":1,"29903":0,"29904":1,"29905":1,"29906":1,"29907":0,"29908":0,"29909":1,"29910":0,"29911":0,"29912":0,"29913":0,"29914":0,"29915":0,"29916":0,"29917":0,"29918":0,"29919":0,"29920":0,"29921":0,"29922":0,"29923":0,"29924":0,"29925":0,"29926":0,"29927":0,"29928":1,"29929":1,"29930":0,"29931":0,"29932":0,"29933":0,"29934":0,"29935":0,"29936":0,"29937":0,"29938":0,"29939":1,"29940":0,"29941":1,"29942":0,"29943":0,"29944":0,"29945":0,"29946":0,"29947":1,"29948":0,"29949":0,"29950":0,"29951":0,"29952":1,"29953":0,"29954":0,"29955":0,"29956":0,"29957":0,"29958":0,"29959":1,"29960":0,"29961":1,"29962":0,"29963":1,"29964":1,"29965":1,"29966":0,"29967":0,"29968":0,"29969":0,"29970":0,"29971":0,"29972":0,"29973":0,"29974":1,"29975":0,"29976":0,"29977":0,"29978":1,"29979":0,"29980":1,"29981":0,"29982":0,"29983":1,"29984":0,"29985":0,"29986":0,"29987":0,"29988":0,"29989":1,"29990":1,"29991":0,"29992":0,"29993":0,"29994":0,"29995":0,"29996":0,"29997":0,"29998":1,"29999":1,"30000":0,"30001":0,"30002":1,"30003":0,"30004":0,"30005":1,"30006":0,"30007":0,"30008":1,"30009":1,"30010":0,"30011":0,"30012":0,"30013":0,"30014":0,"30015":0,"30016":0,"30017":0,"30018":0,"30019":0,"30020":0,"30021":1,"30022":1,"30023":0,"30024":0,"30025":0,"30026":1,"30027":0,"30028":1,"30029":1,"30030":1,"30031":0,"30032":0,"30033":0,"30034":0,"30035":0,"30036":0,"30037":0,"30038":0,"30039":0,"30040":0,"30041":0,"30042":0,"30043":0,"30044":1,"30045":0,"30046":0,"30047":0,"30048":0,"30049":1,"30050":0,"30051":1,"30052":0,"30053":0,"30054":0,"30055":0,"30056":1,"30057":0,"30058":0,"30059":0,"30060":1,"30061":0,"30062":0,"30063":0,"30064":1,"30065":0,"30066":0,"30067":1,"30068":0,"30069":0,"30070":0,"30071":0,"30072":0,"30073":1,"30074":0,"30075":1,"30076":0,"30077":0,"30078":0,"30079":0,"30080":0,"30081":0,"30082":0,"30083":0,"30084":0,"30085":0,"30086":0,"30087":0,"30088":0,"30089":1,"30090":0,"30091":0,"30092":1,"30093":0,"30094":0,"30095":0,"30096":0,"30097":0,"30098":0,"30099":0,"30100":0,"30101":1,"30102":1,"30103":1,"30104":0,"30105":0,"30106":0,"30107":1,"30108":0,"30109":1,"30110":0,"30111":0,"30112":0,"30113":1,"30114":0,"30115":0,"30116":1,"30117":0,"30118":1,"30119":0,"30120":0,"30121":0,"30122":1,"30123":0,"30124":0,"30125":1,"30126":0,"30127":0,"30128":0,"30129":0,"30130":1,"30131":1,"30132":0,"30133":1,"30134":0,"30135":0,"30136":0,"30137":0,"30138":0,"30139":0,"30140":0,"30141":1,"30142":0,"30143":1,"30144":0,"30145":0,"30146":0,"30147":0,"30148":1,"30149":0,"30150":0,"30151":0,"30152":1,"30153":0,"30154":0,"30155":0,"30156":0,"30157":0,"30158":0,"30159":0,"30160":0,"30161":0,"30162":1,"30163":0,"30164":0,"30165":0,"30166":0,"30167":0,"30168":0,"30169":0,"30170":0,"30171":1,"30172":0,"30173":1,"30174":0,"30175":0,"30176":0,"30177":0,"30178":0,"30179":1,"30180":0,"30181":0,"30182":0,"30183":0,"30184":1,"30185":0,"30186":0,"30187":0,"30188":0,"30189":0,"30190":0,"30191":0,"30192":0,"30193":0,"30194":0,"30195":0,"30196":0,"30197":0,"30198":0,"30199":0,"30200":1,"30201":0,"30202":0,"30203":0,"30204":0,"30205":1,"30206":1,"30207":0,"30208":0,"30209":0,"30210":0,"30211":0,"30212":0,"30213":0,"30214":0,"30215":0,"30216":0,"30217":1,"30218":0,"30219":0,"30220":0,"30221":1,"30222":0,"30223":1,"30224":0,"30225":0,"30226":1,"30227":0,"30228":0,"30229":0,"30230":0,"30231":0,"30232":0,"30233":0,"30234":1,"30235":1,"30236":1,"30237":0,"30238":0,"30239":0,"30240":0,"30241":1,"30242":1,"30243":0,"30244":0,"30245":0,"30246":0,"30247":0,"30248":1,"30249":0,"30250":0,"30251":0,"30252":0,"30253":0,"30254":0,"30255":0,"30256":0,"30257":0,"30258":1,"30259":0,"30260":0,"30261":0,"30262":0,"30263":0,"30264":0,"30265":0,"30266":0,"30267":0,"30268":0,"30269":0,"30270":1,"30271":0,"30272":1,"30273":0,"30274":1,"30275":0,"30276":0,"30277":0,"30278":0,"30279":0,"30280":0,"30281":0,"30282":0,"30283":0,"30284":0,"30285":0,"30286":0,"30287":0,"30288":1,"30289":0,"30290":0,"30291":1,"30292":0,"30293":0,"30294":0,"30295":1,"30296":0,"30297":1,"30298":0,"30299":0,"30300":0,"30301":1,"30302":0,"30303":0,"30304":0,"30305":0,"30306":1,"30307":0,"30308":0,"30309":0,"30310":0,"30311":0,"30312":0,"30313":1,"30314":1,"30315":0,"30316":1,"30317":0,"30318":0,"30319":0,"30320":0,"30321":0,"30322":1,"30323":1,"30324":1,"30325":0,"30326":1,"30327":1,"30328":0,"30329":0,"30330":0,"30331":0,"30332":0,"30333":0,"30334":1,"30335":0,"30336":0,"30337":0,"30338":0,"30339":0,"30340":0,"30341":1,"30342":1,"30343":0,"30344":0,"30345":0,"30346":0,"30347":0,"30348":0,"30349":0,"30350":1,"30351":0,"30352":0,"30353":0,"30354":0,"30355":1,"30356":0,"30357":0,"30358":0,"30359":0,"30360":0,"30361":0,"30362":0,"30363":0,"30364":0,"30365":0,"30366":0,"30367":1,"30368":0,"30369":0,"30370":0,"30371":0,"30372":0,"30373":1,"30374":0,"30375":1,"30376":0,"30377":0,"30378":0,"30379":0,"30380":0,"30381":1,"30382":0,"30383":1,"30384":1,"30385":0,"30386":0,"30387":1,"30388":0,"30389":0,"30390":1,"30391":0,"30392":0,"30393":0,"30394":0,"30395":0,"30396":0,"30397":0,"30398":0,"30399":1,"30400":1,"30401":0,"30402":0,"30403":0,"30404":0,"30405":0,"30406":1,"30407":0,"30408":0,"30409":1,"30410":0,"30411":0,"30412":0,"30413":0,"30414":1,"30415":0,"30416":0,"30417":1,"30418":0,"30419":0,"30420":0,"30421":0,"30422":0,"30423":0,"30424":0,"30425":0,"30426":1,"30427":0,"30428":0,"30429":0,"30430":0,"30431":0,"30432":0,"30433":1,"30434":1,"30435":0,"30436":1,"30437":0,"30438":1,"30439":0,"30440":0,"30441":0,"30442":0,"30443":0,"30444":1,"30445":1,"30446":1,"30447":0,"30448":0,"30449":0,"30450":0,"30451":0,"30452":1,"30453":0,"30454":0,"30455":0,"30456":1,"30457":0,"30458":0,"30459":1,"30460":0,"30461":0,"30462":0,"30463":1,"30464":0,"30465":0,"30466":0,"30467":0,"30468":1,"30469":0,"30470":0,"30471":0,"30472":0,"30473":0,"30474":0,"30475":0,"30476":0,"30477":0,"30478":0,"30479":0,"30480":0,"30481":0,"30482":1,"30483":0,"30484":0,"30485":0,"30486":0,"30487":0,"30488":0,"30489":0,"30490":0,"30491":0,"30492":0,"30493":0,"30494":0,"30495":0,"30496":0,"30497":1,"30498":0,"30499":0,"30500":0,"30501":1,"30502":0,"30503":0,"30504":0,"30505":0,"30506":0,"30507":1,"30508":1,"30509":0,"30510":0,"30511":1,"30512":0,"30513":0,"30514":0,"30515":0,"30516":0,"30517":0,"30518":0,"30519":0,"30520":0,"30521":1,"30522":0,"30523":0,"30524":0,"30525":0,"30526":0,"30527":0,"30528":0,"30529":0,"30530":0,"30531":0,"30532":0,"30533":0,"30534":0,"30535":1,"30536":0,"30537":1,"30538":0,"30539":1,"30540":0,"30541":0,"30542":1,"30543":0,"30544":0,"30545":0,"30546":0,"30547":0,"30548":0,"30549":0,"30550":1,"30551":0,"30552":0,"30553":0,"30554":0,"30555":0,"30556":0,"30557":0,"30558":1,"30559":0,"30560":0,"30561":1,"30562":0,"30563":0,"30564":0,"30565":1,"30566":0,"30567":0,"30568":1,"30569":0,"30570":0,"30571":0,"30572":0,"30573":0,"30574":0,"30575":0,"30576":0,"30577":0,"30578":0,"30579":1,"30580":0,"30581":0,"30582":1,"30583":0,"30584":1,"30585":1,"30586":0,"30587":0,"30588":1,"30589":0,"30590":0,"30591":0,"30592":0,"30593":0,"30594":0,"30595":0,"30596":0,"30597":0,"30598":0,"30599":1,"30600":0,"30601":1,"30602":0,"30603":0,"30604":1,"30605":0,"30606":1,"30607":1,"30608":0,"30609":1,"30610":0,"30611":0,"30612":1,"30613":0,"30614":1,"30615":0,"30616":0,"30617":1,"30618":0,"30619":1,"30620":0,"30621":0,"30622":0,"30623":0,"30624":1,"30625":0,"30626":0,"30627":0,"30628":0,"30629":0,"30630":0,"30631":0,"30632":1,"30633":0,"30634":1,"30635":0,"30636":0,"30637":0,"30638":0,"30639":0,"30640":1,"30641":0,"30642":1,"30643":0,"30644":0,"30645":0,"30646":0,"30647":0,"30648":0,"30649":0,"30650":0,"30651":0,"30652":0,"30653":0,"30654":0,"30655":0,"30656":0,"30657":0,"30658":0,"30659":1,"30660":0,"30661":0,"30662":0,"30663":0,"30664":0,"30665":0,"30666":1,"30667":0,"30668":0,"30669":0,"30670":0,"30671":0,"30672":0,"30673":0,"30674":1,"30675":0,"30676":0,"30677":0,"30678":0,"30679":0,"30680":1,"30681":0,"30682":0,"30683":0,"30684":0,"30685":1,"30686":0,"30687":0,"30688":0,"30689":0,"30690":0,"30691":1,"30692":0,"30693":0,"30694":0,"30695":1,"30696":0,"30697":0,"30698":0,"30699":0,"30700":0,"30701":0,"30702":0,"30703":0,"30704":0,"30705":0,"30706":0,"30707":0,"30708":0,"30709":0,"30710":0,"30711":1,"30712":1,"30713":1,"30714":0,"30715":0,"30716":1,"30717":0,"30718":0,"30719":0,"30720":0,"30721":0,"30722":0,"30723":1,"30724":1,"30725":1,"30726":0,"30727":0,"30728":0,"30729":0,"30730":0,"30731":1,"30732":1,"30733":0,"30734":0,"30735":0,"30736":0,"30737":0,"30738":0,"30739":0,"30740":0,"30741":0,"30742":0,"30743":0,"30744":1,"30745":0,"30746":0,"30747":0,"30748":0,"30749":0,"30750":0,"30751":0,"30752":0,"30753":1,"30754":1,"30755":0,"30756":0,"30757":0,"30758":0,"30759":1,"30760":1,"30761":0,"30762":1,"30763":1,"30764":1,"30765":1,"30766":1,"30767":0,"30768":1,"30769":0,"30770":0,"30771":0,"30772":0,"30773":0,"30774":1,"30775":0,"30776":0,"30777":1,"30778":1,"30779":1,"30780":0,"30781":0,"30782":1,"30783":0,"30784":0,"30785":1,"30786":1,"30787":0,"30788":0,"30789":1,"30790":0,"30791":0,"30792":0,"30793":1,"30794":0,"30795":0,"30796":0,"30797":1,"30798":0,"30799":0,"30800":1,"30801":0,"30802":0,"30803":0,"30804":1,"30805":0,"30806":0,"30807":0,"30808":1,"30809":1,"30810":0,"30811":0,"30812":0,"30813":1,"30814":0,"30815":0,"30816":1,"30817":0,"30818":0,"30819":0,"30820":0,"30821":0,"30822":0,"30823":1,"30824":0,"30825":1,"30826":0,"30827":0,"30828":0,"30829":0,"30830":0,"30831":0,"30832":0,"30833":1,"30834":0,"30835":1,"30836":0,"30837":1,"30838":0,"30839":1,"30840":1,"30841":0,"30842":0,"30843":1,"30844":0,"30845":1,"30846":0,"30847":1,"30848":0,"30849":0,"30850":1,"30851":0,"30852":0,"30853":0,"30854":0,"30855":0,"30856":1,"30857":0,"30858":0,"30859":0,"30860":0,"30861":0,"30862":0,"30863":0,"30864":0,"30865":0,"30866":0,"30867":0,"30868":1,"30869":0,"30870":0,"30871":1,"30872":0,"30873":0,"30874":0,"30875":0,"30876":1,"30877":0,"30878":0,"30879":1,"30880":1,"30881":0,"30882":0,"30883":0,"30884":0,"30885":0,"30886":0,"30887":1,"30888":0,"30889":1,"30890":1,"30891":0,"30892":0,"30893":0,"30894":0,"30895":0,"30896":0,"30897":0,"30898":0,"30899":0,"30900":1,"30901":0,"30902":0,"30903":0,"30904":0,"30905":1,"30906":0,"30907":0,"30908":0,"30909":1,"30910":0,"30911":0,"30912":0,"30913":0,"30914":1,"30915":0,"30916":0,"30917":0,"30918":0,"30919":0,"30920":0,"30921":0,"30922":0,"30923":0,"30924":0,"30925":0,"30926":0,"30927":1,"30928":0,"30929":0,"30930":0,"30931":0,"30932":0,"30933":0,"30934":0,"30935":0,"30936":1,"30937":1,"30938":0,"30939":1,"30940":0,"30941":0,"30942":0,"30943":0,"30944":1,"30945":0,"30946":0,"30947":0,"30948":1,"30949":0,"30950":0,"30951":0,"30952":0,"30953":0,"30954":0,"30955":1,"30956":0,"30957":0,"30958":0,"30959":0,"30960":0,"30961":0,"30962":0,"30963":0,"30964":0,"30965":0,"30966":0,"30967":0,"30968":0,"30969":0,"30970":0,"30971":0,"30972":0,"30973":0,"30974":0,"30975":0,"30976":0,"30977":0,"30978":0,"30979":0,"30980":0,"30981":0,"30982":1,"30983":1,"30984":0,"30985":1,"30986":0,"30987":1,"30988":0,"30989":1,"30990":0,"30991":0,"30992":0,"30993":0,"30994":0,"30995":0,"30996":0,"30997":0,"30998":1,"30999":1,"31000":0,"31001":1,"31002":0,"31003":1,"31004":0,"31005":0,"31006":1,"31007":0,"31008":1,"31009":0,"31010":0,"31011":0,"31012":0,"31013":0,"31014":0,"31015":0,"31016":0,"31017":1,"31018":0,"31019":0,"31020":0,"31021":0,"31022":0,"31023":0,"31024":0,"31025":0,"31026":0,"31027":1,"31028":1,"31029":1,"31030":0,"31031":0,"31032":0,"31033":0,"31034":0,"31035":0,"31036":0,"31037":0,"31038":0,"31039":0,"31040":0,"31041":1,"31042":1,"31043":0,"31044":0,"31045":1,"31046":0,"31047":0,"31048":0,"31049":1,"31050":1,"31051":1,"31052":0,"31053":0,"31054":1,"31055":1,"31056":0,"31057":1,"31058":0,"31059":0,"31060":0,"31061":1,"31062":0,"31063":1,"31064":1,"31065":0,"31066":0,"31067":0,"31068":1,"31069":0,"31070":0,"31071":0,"31072":0,"31073":0,"31074":0,"31075":0,"31076":0,"31077":0,"31078":0,"31079":0,"31080":0,"31081":1,"31082":0,"31083":0,"31084":0,"31085":0,"31086":0,"31087":0,"31088":0,"31089":0,"31090":1,"31091":0,"31092":0,"31093":0,"31094":0,"31095":0,"31096":1,"31097":0,"31098":0,"31099":1,"31100":0,"31101":0,"31102":0,"31103":0,"31104":0,"31105":0,"31106":0,"31107":1,"31108":0,"31109":0,"31110":1,"31111":0,"31112":0,"31113":0,"31114":0,"31115":0,"31116":0,"31117":0,"31118":0,"31119":1,"31120":0,"31121":0,"31122":0,"31123":0,"31124":0,"31125":1,"31126":0,"31127":0,"31128":1,"31129":0,"31130":0,"31131":0,"31132":1,"31133":0,"31134":0,"31135":0,"31136":0,"31137":0,"31138":0,"31139":1,"31140":1,"31141":0,"31142":0,"31143":1,"31144":0,"31145":0,"31146":1,"31147":0,"31148":1,"31149":0,"31150":0,"31151":0,"31152":0,"31153":0,"31154":0,"31155":0,"31156":0,"31157":0,"31158":1,"31159":1,"31160":0,"31161":1,"31162":0,"31163":0,"31164":0,"31165":0,"31166":0,"31167":0,"31168":1,"31169":1,"31170":0,"31171":0,"31172":0,"31173":0,"31174":0,"31175":0,"31176":1,"31177":0,"31178":0,"31179":1,"31180":1,"31181":0,"31182":0,"31183":0,"31184":0,"31185":0,"31186":0,"31187":0,"31188":1,"31189":0,"31190":0,"31191":0,"31192":0,"31193":1,"31194":1,"31195":0,"31196":1,"31197":0,"31198":1,"31199":0,"31200":0,"31201":0,"31202":0,"31203":1,"31204":0,"31205":0,"31206":0,"31207":0,"31208":0,"31209":0,"31210":0,"31211":0,"31212":0,"31213":0,"31214":1,"31215":0,"31216":0,"31217":0,"31218":1,"31219":0,"31220":0,"31221":0,"31222":1,"31223":0,"31224":0,"31225":1,"31226":0,"31227":0,"31228":0,"31229":1,"31230":0,"31231":1,"31232":0,"31233":0,"31234":0,"31235":0,"31236":0,"31237":0,"31238":0,"31239":0,"31240":0,"31241":0,"31242":0,"31243":0,"31244":0,"31245":0,"31246":0,"31247":0,"31248":0,"31249":0,"31250":0,"31251":1,"31252":0,"31253":0,"31254":0,"31255":0,"31256":0,"31257":0,"31258":0,"31259":0,"31260":0,"31261":0,"31262":0,"31263":1,"31264":0,"31265":0,"31266":0,"31267":0,"31268":0,"31269":0,"31270":0,"31271":0,"31272":1,"31273":0,"31274":0,"31275":0,"31276":0,"31277":0,"31278":0,"31279":0,"31280":1,"31281":1,"31282":1,"31283":0,"31284":0,"31285":0,"31286":0,"31287":0,"31288":0,"31289":0,"31290":0,"31291":0,"31292":0,"31293":0,"31294":1,"31295":1,"31296":0,"31297":1,"31298":0,"31299":1,"31300":1,"31301":1,"31302":0,"31303":0,"31304":0,"31305":0,"31306":0,"31307":0,"31308":0,"31309":1,"31310":1,"31311":1,"31312":0,"31313":0,"31314":0,"31315":0,"31316":0,"31317":0,"31318":0,"31319":1,"31320":0,"31321":0,"31322":1,"31323":0,"31324":0,"31325":0,"31326":0,"31327":0,"31328":1,"31329":1,"31330":0,"31331":0,"31332":1,"31333":1,"31334":1,"31335":1,"31336":0,"31337":0,"31338":0,"31339":0,"31340":1,"31341":0,"31342":0,"31343":0,"31344":0,"31345":0,"31346":0,"31347":0,"31348":0,"31349":0,"31350":0,"31351":0,"31352":0,"31353":0,"31354":1,"31355":1,"31356":1,"31357":0,"31358":0,"31359":0,"31360":1,"31361":1,"31362":1,"31363":1,"31364":1,"31365":0,"31366":0,"31367":0,"31368":0,"31369":0,"31370":0,"31371":0,"31372":0,"31373":0,"31374":1,"31375":0,"31376":1,"31377":1,"31378":1,"31379":0,"31380":0,"31381":0,"31382":0,"31383":0,"31384":1,"31385":1,"31386":0,"31387":0,"31388":1,"31389":0,"31390":0,"31391":0,"31392":0,"31393":0,"31394":0,"31395":0,"31396":0,"31397":0,"31398":0,"31399":1,"31400":1,"31401":0,"31402":0,"31403":0,"31404":1,"31405":0,"31406":0,"31407":1,"31408":0,"31409":1,"31410":0,"31411":1,"31412":0,"31413":1,"31414":0,"31415":1,"31416":0,"31417":0,"31418":0,"31419":0,"31420":0,"31421":0,"31422":0,"31423":0,"31424":0,"31425":0,"31426":0,"31427":0,"31428":0,"31429":0,"31430":0,"31431":0,"31432":0,"31433":1,"31434":1,"31435":0,"31436":0,"31437":0,"31438":0,"31439":0,"31440":0,"31441":0,"31442":0,"31443":0,"31444":1,"31445":0,"31446":1,"31447":0,"31448":0,"31449":0,"31450":0,"31451":1,"31452":1,"31453":0,"31454":0,"31455":0,"31456":0,"31457":0,"31458":0,"31459":0,"31460":0,"31461":0,"31462":1,"31463":0,"31464":1,"31465":0,"31466":1,"31467":0,"31468":0,"31469":0,"31470":0,"31471":0,"31472":0,"31473":0,"31474":0,"31475":0,"31476":0,"31477":0,"31478":0,"31479":1,"31480":0,"31481":0,"31482":0,"31483":0,"31484":0,"31485":1,"31486":0,"31487":0,"31488":0,"31489":0,"31490":0,"31491":0,"31492":1,"31493":0,"31494":0,"31495":0,"31496":0,"31497":0,"31498":0,"31499":0,"31500":0,"31501":0,"31502":1,"31503":1,"31504":0,"31505":1,"31506":0,"31507":0,"31508":1,"31509":0,"31510":1,"31511":0,"31512":0,"31513":1,"31514":1,"31515":0,"31516":1,"31517":0,"31518":1,"31519":0,"31520":0,"31521":1,"31522":0,"31523":0,"31524":0,"31525":0,"31526":0,"31527":0,"31528":1,"31529":1,"31530":1,"31531":0,"31532":0,"31533":0,"31534":0,"31535":0,"31536":0,"31537":0,"31538":0,"31539":1,"31540":0,"31541":0,"31542":0,"31543":0,"31544":0,"31545":1,"31546":0,"31547":0,"31548":0,"31549":1,"31550":0,"31551":1,"31552":0,"31553":0,"31554":0,"31555":1,"31556":1,"31557":0,"31558":1,"31559":0,"31560":0,"31561":1,"31562":0,"31563":0,"31564":0,"31565":0,"31566":0,"31567":1,"31568":1,"31569":0,"31570":0,"31571":0,"31572":0,"31573":1,"31574":0,"31575":0,"31576":0,"31577":0,"31578":0,"31579":1,"31580":0,"31581":0,"31582":0,"31583":0,"31584":0,"31585":1,"31586":0,"31587":0,"31588":0,"31589":1,"31590":0,"31591":0,"31592":0,"31593":0,"31594":0,"31595":0,"31596":1,"31597":0,"31598":0,"31599":1,"31600":0,"31601":1,"31602":0,"31603":0,"31604":1,"31605":0,"31606":0,"31607":0,"31608":0,"31609":0,"31610":0,"31611":0,"31612":0,"31613":0,"31614":1,"31615":0,"31616":1,"31617":0,"31618":0,"31619":0,"31620":0,"31621":0,"31622":1,"31623":1,"31624":0,"31625":0,"31626":0,"31627":1,"31628":0,"31629":0,"31630":0,"31631":0,"31632":0,"31633":0,"31634":0,"31635":0,"31636":0,"31637":0,"31638":0,"31639":0,"31640":1,"31641":0,"31642":0,"31643":1,"31644":1,"31645":0,"31646":0,"31647":0,"31648":0,"31649":1,"31650":0,"31651":0,"31652":0,"31653":0,"31654":0,"31655":0,"31656":0,"31657":0,"31658":0,"31659":1,"31660":0,"31661":0,"31662":0,"31663":0,"31664":0,"31665":0,"31666":0,"31667":0,"31668":0,"31669":0,"31670":0,"31671":0,"31672":0,"31673":0,"31674":0,"31675":0,"31676":0,"31677":1,"31678":0,"31679":0,"31680":0,"31681":0,"31682":0,"31683":0,"31684":0,"31685":0,"31686":0,"31687":0,"31688":0,"31689":1,"31690":0,"31691":0,"31692":0,"31693":0,"31694":0,"31695":0,"31696":0,"31697":0,"31698":1,"31699":0,"31700":0,"31701":1,"31702":0,"31703":0,"31704":0,"31705":0,"31706":0,"31707":1,"31708":1,"31709":1,"31710":0,"31711":1,"31712":0,"31713":0,"31714":0,"31715":1,"31716":0,"31717":0,"31718":0,"31719":0,"31720":0,"31721":0,"31722":1,"31723":0,"31724":0,"31725":1,"31726":0,"31727":0,"31728":0,"31729":0,"31730":1,"31731":0,"31732":0,"31733":1,"31734":0,"31735":1,"31736":0,"31737":0,"31738":0,"31739":0,"31740":0,"31741":1,"31742":0,"31743":0,"31744":1,"31745":0,"31746":0,"31747":0,"31748":0,"31749":1,"31750":0,"31751":0,"31752":0,"31753":0,"31754":1,"31755":0,"31756":0,"31757":1,"31758":1,"31759":0,"31760":1,"31761":0,"31762":0,"31763":0,"31764":1,"31765":0,"31766":0,"31767":0,"31768":0,"31769":0,"31770":1,"31771":1,"31772":0,"31773":0,"31774":0,"31775":0,"31776":0,"31777":0,"31778":1,"31779":0,"31780":0,"31781":1,"31782":0,"31783":0,"31784":0,"31785":0,"31786":1,"31787":1,"31788":0,"31789":0,"31790":0,"31791":0,"31792":0,"31793":1,"31794":0,"31795":0,"31796":1,"31797":0,"31798":0,"31799":0,"31800":1,"31801":0,"31802":0,"31803":0,"31804":0,"31805":0,"31806":1,"31807":0,"31808":0,"31809":0,"31810":0,"31811":0,"31812":0,"31813":0,"31814":0,"31815":1,"31816":1,"31817":0,"31818":0,"31819":0,"31820":0,"31821":0,"31822":0,"31823":0,"31824":1,"31825":0,"31826":0,"31827":0,"31828":0,"31829":1,"31830":0,"31831":0,"31832":0,"31833":0,"31834":0,"31835":0,"31836":0,"31837":0,"31838":0,"31839":0,"31840":0,"31841":1,"31842":1,"31843":1,"31844":0,"31845":0,"31846":1,"31847":0,"31848":0,"31849":0,"31850":1,"31851":0,"31852":0,"31853":0,"31854":1,"31855":0,"31856":0,"31857":0,"31858":1,"31859":0,"31860":1,"31861":0,"31862":0,"31863":0,"31864":0,"31865":1,"31866":0,"31867":0,"31868":0,"31869":0,"31870":0,"31871":0,"31872":1,"31873":0,"31874":0,"31875":0,"31876":0,"31877":1,"31878":0,"31879":0,"31880":1,"31881":0,"31882":0,"31883":0,"31884":0,"31885":0,"31886":0,"31887":0,"31888":0,"31889":1,"31890":0,"31891":0,"31892":0,"31893":0,"31894":0,"31895":0,"31896":0,"31897":0,"31898":1,"31899":0,"31900":0,"31901":0,"31902":1,"31903":0,"31904":1,"31905":0,"31906":0,"31907":0,"31908":0,"31909":0,"31910":1,"31911":1,"31912":1,"31913":1,"31914":1,"31915":0,"31916":0,"31917":0,"31918":0,"31919":0,"31920":0,"31921":0,"31922":0,"31923":0,"31924":0,"31925":0,"31926":0,"31927":0,"31928":0,"31929":1,"31930":0,"31931":0,"31932":0,"31933":0,"31934":0,"31935":1,"31936":0,"31937":0,"31938":0,"31939":0,"31940":0,"31941":0,"31942":0,"31943":1,"31944":0,"31945":0,"31946":0,"31947":0,"31948":0,"31949":1,"31950":0,"31951":0,"31952":0,"31953":0,"31954":0,"31955":0,"31956":1,"31957":0,"31958":0,"31959":0,"31960":0,"31961":1,"31962":1,"31963":1,"31964":0,"31965":0,"31966":0,"31967":0,"31968":0,"31969":0,"31970":1,"31971":0,"31972":0,"31973":1,"31974":0,"31975":1,"31976":1,"31977":0,"31978":0,"31979":0,"31980":1,"31981":0,"31982":0,"31983":0,"31984":0,"31985":0,"31986":1,"31987":0,"31988":0,"31989":0,"31990":0,"31991":1,"31992":1,"31993":1,"31994":0,"31995":0,"31996":0,"31997":0,"31998":0,"31999":0,"32000":1,"32001":0,"32002":0,"32003":0,"32004":0,"32005":0,"32006":0,"32007":0,"32008":0,"32009":1,"32010":0,"32011":1,"32012":0,"32013":0,"32014":0,"32015":0,"32016":0,"32017":0,"32018":1,"32019":1,"32020":1,"32021":0,"32022":0,"32023":0,"32024":0,"32025":0,"32026":0,"32027":0,"32028":0,"32029":0,"32030":0,"32031":1,"32032":1,"32033":0,"32034":0,"32035":0,"32036":1,"32037":0,"32038":0,"32039":1,"32040":1,"32041":1,"32042":0,"32043":1,"32044":1,"32045":0,"32046":1,"32047":0,"32048":0,"32049":0,"32050":1,"32051":1,"32052":1,"32053":1,"32054":0,"32055":0,"32056":0,"32057":0,"32058":0,"32059":0,"32060":1,"32061":0,"32062":0,"32063":0,"32064":0,"32065":0,"32066":1,"32067":0,"32068":0,"32069":0,"32070":0,"32071":1,"32072":0,"32073":0,"32074":0,"32075":0,"32076":0,"32077":0,"32078":0,"32079":0,"32080":1,"32081":1,"32082":0,"32083":0,"32084":0,"32085":1,"32086":0,"32087":0,"32088":0,"32089":0,"32090":0,"32091":0,"32092":0,"32093":0,"32094":0,"32095":0,"32096":0,"32097":1,"32098":0,"32099":0,"32100":0,"32101":0,"32102":0,"32103":0,"32104":0,"32105":1,"32106":0,"32107":0,"32108":0,"32109":0,"32110":0,"32111":0,"32112":1,"32113":0,"32114":0,"32115":1,"32116":1,"32117":0,"32118":0,"32119":0,"32120":0,"32121":1,"32122":0,"32123":0,"32124":0,"32125":0,"32126":1,"32127":0,"32128":1,"32129":0,"32130":1,"32131":0,"32132":0,"32133":0,"32134":0,"32135":0,"32136":0,"32137":0,"32138":0,"32139":0,"32140":0,"32141":0,"32142":0,"32143":0,"32144":0,"32145":0,"32146":1,"32147":0,"32148":0,"32149":0,"32150":1,"32151":0,"32152":0,"32153":0,"32154":0,"32155":0,"32156":1,"32157":0,"32158":0,"32159":1,"32160":1,"32161":0,"32162":0,"32163":0,"32164":0,"32165":0,"32166":1,"32167":0,"32168":0,"32169":1,"32170":0,"32171":1,"32172":1,"32173":0,"32174":0,"32175":0,"32176":1,"32177":0,"32178":0,"32179":0,"32180":1,"32181":0,"32182":0,"32183":0,"32184":0,"32185":0,"32186":0,"32187":0,"32188":0,"32189":0,"32190":0,"32191":1,"32192":0,"32193":0,"32194":0,"32195":0,"32196":1,"32197":0,"32198":0,"32199":1,"32200":0,"32201":0,"32202":1,"32203":1,"32204":0,"32205":0,"32206":0,"32207":0,"32208":0,"32209":0,"32210":1,"32211":0,"32212":0,"32213":0,"32214":0,"32215":1,"32216":0,"32217":0,"32218":1,"32219":0,"32220":0,"32221":0,"32222":0,"32223":1,"32224":1,"32225":0,"32226":1,"32227":0,"32228":0,"32229":1,"32230":0,"32231":1,"32232":0,"32233":0,"32234":0,"32235":1,"32236":1,"32237":0,"32238":0,"32239":0,"32240":0,"32241":0,"32242":1,"32243":1,"32244":0,"32245":0,"32246":0,"32247":0,"32248":1,"32249":0,"32250":1,"32251":1,"32252":0,"32253":0,"32254":0,"32255":0,"32256":0,"32257":1,"32258":0,"32259":0,"32260":1,"32261":0,"32262":0,"32263":0,"32264":1,"32265":0,"32266":1,"32267":1,"32268":0,"32269":0,"32270":0,"32271":0,"32272":0,"32273":0,"32274":0,"32275":1,"32276":0,"32277":0,"32278":0,"32279":1,"32280":0,"32281":0,"32282":0,"32283":1,"32284":0,"32285":0,"32286":0,"32287":0,"32288":1,"32289":0,"32290":0,"32291":0,"32292":0,"32293":0,"32294":0,"32295":0,"32296":0,"32297":0,"32298":0,"32299":0,"32300":0,"32301":0,"32302":0,"32303":0,"32304":0,"32305":1,"32306":0,"32307":0,"32308":0,"32309":0,"32310":1,"32311":0,"32312":0,"32313":1,"32314":0,"32315":0,"32316":0,"32317":0,"32318":0,"32319":0,"32320":0,"32321":0,"32322":0,"32323":0,"32324":0,"32325":0,"32326":0,"32327":1,"32328":0,"32329":0,"32330":0,"32331":0,"32332":0,"32333":0,"32334":0,"32335":0,"32336":1,"32337":1,"32338":0,"32339":1,"32340":0,"32341":1,"32342":0,"32343":0,"32344":1,"32345":0,"32346":0,"32347":0,"32348":0,"32349":0,"32350":1,"32351":0,"32352":0,"32353":1,"32354":1,"32355":0,"32356":0,"32357":1,"32358":0,"32359":0,"32360":0,"32361":0,"32362":0,"32363":0,"32364":0,"32365":0,"32366":1,"32367":0,"32368":0,"32369":0,"32370":0,"32371":0,"32372":0,"32373":0,"32374":0,"32375":0,"32376":0,"32377":0,"32378":1,"32379":0,"32380":1,"32381":0,"32382":1,"32383":0,"32384":0,"32385":0,"32386":0,"32387":0,"32388":0,"32389":1,"32390":0,"32391":1,"32392":0,"32393":0,"32394":0,"32395":1,"32396":0,"32397":1,"32398":0,"32399":1,"32400":0,"32401":1,"32402":0,"32403":0,"32404":1,"32405":0,"32406":1,"32407":0,"32408":0,"32409":1,"32410":0,"32411":0,"32412":0,"32413":0,"32414":0,"32415":0,"32416":0,"32417":0,"32418":0,"32419":1,"32420":0,"32421":1,"32422":0,"32423":1,"32424":0,"32425":0,"32426":0,"32427":1,"32428":0,"32429":0,"32430":0,"32431":1,"32432":1,"32433":0,"32434":0,"32435":1,"32436":0,"32437":0,"32438":0,"32439":0,"32440":1,"32441":1,"32442":0,"32443":0,"32444":1,"32445":0,"32446":0,"32447":1,"32448":0,"32449":1,"32450":1,"32451":1,"32452":0,"32453":0,"32454":0,"32455":0,"32456":1,"32457":0,"32458":1,"32459":0,"32460":0,"32461":1,"32462":0,"32463":0,"32464":0,"32465":0,"32466":0,"32467":0,"32468":0,"32469":0,"32470":0,"32471":0,"32472":0,"32473":1,"32474":0,"32475":0,"32476":0,"32477":0,"32478":0,"32479":0,"32480":0,"32481":0,"32482":0,"32483":0,"32484":0,"32485":0,"32486":1,"32487":1,"32488":0,"32489":0,"32490":0,"32491":0,"32492":0,"32493":1,"32494":0,"32495":1,"32496":1,"32497":0,"32498":1,"32499":1,"32500":0,"32501":1,"32502":0,"32503":0,"32504":0,"32505":0,"32506":1,"32507":0,"32508":1,"32509":1,"32510":0,"32511":0,"32512":0,"32513":1,"32514":1,"32515":0,"32516":1,"32517":0,"32518":0,"32519":0,"32520":1,"32521":0,"32522":0,"32523":0,"32524":0,"32525":1,"32526":0,"32527":1,"32528":0,"32529":1,"32530":0,"32531":0,"32532":1,"32533":0,"32534":0,"32535":0,"32536":0,"32537":0,"32538":0,"32539":1,"32540":0,"32541":0,"32542":0,"32543":0,"32544":0,"32545":0,"32546":0,"32547":1,"32548":0,"32549":0,"32550":0,"32551":1,"32552":1,"32553":0,"32554":0,"32555":0,"32556":0,"32557":0,"32558":0,"32559":0,"32560":1,"32561":0,"32562":0,"32563":0,"32564":0,"32565":0,"32566":0,"32567":0,"32568":0,"32569":1,"32570":1,"32571":0,"32572":1,"32573":0,"32574":0,"32575":0,"32576":0,"32577":0,"32578":0,"32579":1,"32580":1,"32581":0,"32582":1,"32583":0,"32584":1,"32585":0,"32586":0,"32587":0,"32588":1,"32589":0,"32590":0,"32591":1,"32592":0,"32593":0,"32594":0,"32595":1,"32596":0,"32597":0,"32598":1,"32599":0,"32600":0,"32601":0,"32602":0,"32603":0,"32604":0,"32605":0,"32606":0,"32607":0,"32608":0,"32609":0,"32610":1,"32611":0,"32612":0,"32613":0,"32614":0,"32615":0,"32616":0,"32617":0,"32618":0,"32619":1,"32620":0,"32621":1,"32622":1,"32623":0,"32624":0,"32625":0,"32626":1,"32627":0,"32628":0,"32629":0,"32630":1,"32631":0,"32632":0,"32633":0,"32634":0,"32635":0,"32636":0,"32637":0,"32638":0,"32639":0,"32640":1,"32641":0,"32642":0,"32643":0,"32644":0,"32645":0,"32646":1,"32647":0,"32648":0,"32649":0,"32650":0,"32651":0,"32652":1,"32653":1,"32654":0,"32655":0,"32656":0,"32657":0,"32658":0,"32659":0,"32660":0,"32661":0,"32662":1,"32663":0,"32664":0,"32665":0,"32666":0,"32667":0,"32668":0,"32669":0,"32670":0,"32671":0,"32672":0,"32673":1,"32674":0,"32675":0,"32676":0,"32677":1,"32678":1,"32679":0,"32680":1,"32681":0,"32682":0,"32683":0,"32684":0,"32685":0,"32686":0,"32687":1,"32688":0,"32689":1,"32690":0,"32691":0,"32692":0,"32693":1,"32694":0,"32695":0,"32696":0,"32697":0,"32698":1,"32699":0,"32700":1,"32701":0,"32702":0,"32703":0,"32704":1,"32705":0,"32706":1,"32707":0,"32708":0,"32709":0,"32710":0,"32711":0,"32712":1,"32713":1,"32714":0,"32715":0,"32716":0,"32717":1,"32718":1,"32719":1,"32720":0,"32721":1,"32722":0,"32723":1,"32724":0,"32725":0,"32726":1,"32727":0,"32728":0,"32729":0,"32730":1,"32731":0,"32732":1,"32733":0,"32734":0,"32735":0,"32736":1,"32737":0,"32738":0,"32739":0,"32740":1,"32741":0,"32742":0,"32743":0,"32744":0,"32745":0,"32746":1,"32747":0,"32748":0,"32749":0,"32750":0,"32751":0,"32752":0,"32753":0,"32754":0,"32755":1,"32756":0,"32757":0,"32758":0,"32759":0,"32760":1,"32761":1,"32762":0,"32763":0,"32764":0,"32765":0,"32766":0,"32767":0,"32768":0,"32769":1,"32770":0,"32771":0,"32772":1,"32773":0,"32774":0,"32775":0,"32776":0,"32777":0,"32778":0,"32779":0,"32780":0,"32781":1,"32782":0,"32783":0,"32784":0,"32785":1,"32786":0,"32787":0,"32788":0,"32789":0,"32790":0,"32791":1,"32792":0,"32793":0,"32794":0,"32795":0,"32796":0,"32797":1,"32798":0,"32799":0,"32800":0,"32801":0,"32802":1,"32803":0,"32804":0,"32805":1,"32806":0,"32807":0,"32808":1,"32809":0,"32810":1,"32811":0,"32812":1,"32813":0,"32814":0,"32815":0,"32816":0,"32817":1,"32818":1,"32819":0,"32820":0,"32821":1,"32822":1,"32823":0,"32824":0,"32825":0,"32826":0,"32827":1,"32828":0,"32829":0,"32830":0,"32831":0,"32832":1,"32833":1,"32834":1,"32835":0,"32836":0,"32837":0,"32838":0,"32839":0,"32840":1,"32841":0,"32842":1,"32843":1,"32844":0,"32845":0,"32846":0,"32847":0,"32848":0,"32849":0,"32850":1,"32851":1,"32852":0,"32853":0,"32854":0,"32855":0,"32856":1,"32857":0,"32858":0,"32859":0,"32860":0,"32861":0,"32862":0,"32863":0,"32864":1,"32865":0,"32866":0,"32867":0,"32868":0,"32869":0,"32870":0,"32871":1,"32872":0,"32873":0,"32874":0,"32875":1,"32876":1,"32877":1,"32878":0,"32879":0,"32880":1,"32881":0,"32882":0,"32883":0,"32884":0,"32885":1,"32886":0,"32887":0,"32888":1,"32889":1,"32890":0,"32891":0,"32892":0,"32893":0,"32894":0,"32895":1,"32896":0,"32897":0,"32898":0,"32899":0,"32900":0,"32901":1,"32902":0,"32903":0,"32904":0,"32905":0,"32906":0,"32907":0,"32908":0,"32909":0,"32910":1,"32911":0,"32912":1,"32913":0,"32914":0,"32915":0,"32916":0,"32917":0,"32918":0,"32919":1,"32920":0,"32921":1,"32922":0,"32923":1,"32924":0,"32925":0,"32926":0,"32927":0,"32928":0,"32929":0,"32930":0,"32931":0,"32932":0,"32933":0,"32934":1,"32935":0,"32936":0,"32937":0,"32938":0,"32939":1,"32940":0,"32941":0,"32942":0,"32943":0,"32944":0,"32945":1,"32946":0,"32947":1,"32948":0,"32949":0,"32950":0,"32951":0,"32952":0,"32953":0,"32954":0,"32955":1,"32956":0,"32957":0,"32958":1,"32959":0,"32960":1,"32961":0,"32962":0,"32963":0,"32964":1,"32965":0,"32966":0,"32967":0,"32968":0,"32969":0,"32970":0,"32971":1,"32972":0,"32973":0,"32974":1,"32975":1,"32976":0,"32977":1,"32978":1,"32979":1,"32980":1,"32981":1,"32982":0,"32983":0,"32984":1,"32985":1,"32986":0,"32987":1,"32988":0,"32989":0,"32990":1,"32991":0,"32992":1,"32993":0,"32994":1,"32995":0,"32996":0,"32997":0,"32998":0,"32999":0,"33000":0,"33001":0,"33002":0,"33003":0,"33004":0,"33005":0,"33006":0,"33007":0,"33008":1,"33009":0,"33010":0,"33011":0,"33012":0,"33013":0,"33014":0,"33015":0,"33016":0,"33017":0,"33018":0,"33019":0,"33020":1,"33021":0,"33022":0,"33023":1,"33024":0,"33025":0,"33026":1,"33027":0,"33028":0,"33029":1,"33030":0,"33031":0,"33032":0,"33033":0,"33034":0,"33035":1,"33036":0,"33037":1,"33038":1,"33039":0,"33040":0,"33041":0,"33042":0,"33043":0,"33044":0,"33045":1,"33046":0,"33047":0,"33048":0,"33049":1,"33050":0,"33051":0,"33052":0,"33053":1,"33054":0,"33055":0,"33056":0,"33057":0,"33058":0,"33059":0,"33060":0,"33061":0,"33062":0,"33063":0,"33064":1,"33065":0,"33066":1,"33067":0,"33068":0,"33069":0,"33070":0,"33071":0,"33072":0,"33073":0,"33074":0,"33075":0,"33076":1,"33077":0,"33078":0,"33079":0,"33080":0,"33081":0,"33082":1,"33083":1,"33084":0,"33085":0,"33086":0,"33087":0,"33088":1,"33089":0,"33090":0,"33091":0,"33092":0,"33093":0,"33094":0,"33095":0,"33096":0,"33097":0,"33098":0,"33099":0,"33100":0,"33101":1,"33102":1,"33103":0,"33104":0,"33105":0,"33106":0,"33107":0,"33108":0,"33109":0,"33110":0,"33111":0,"33112":0,"33113":1,"33114":0,"33115":1,"33116":1,"33117":0,"33118":0,"33119":0,"33120":1,"33121":0,"33122":0,"33123":0,"33124":0,"33125":0,"33126":0,"33127":0,"33128":0,"33129":1,"33130":0,"33131":0,"33132":0,"33133":0,"33134":1,"33135":0,"33136":0,"33137":1,"33138":0,"33139":0,"33140":1,"33141":0,"33142":0,"33143":1,"33144":1,"33145":1,"33146":0,"33147":0,"33148":0,"33149":0,"33150":1,"33151":0,"33152":0,"33153":0,"33154":0,"33155":0,"33156":0,"33157":1,"33158":0,"33159":1,"33160":1,"33161":1,"33162":0,"33163":0,"33164":0,"33165":0,"33166":0,"33167":0,"33168":1,"33169":0,"33170":0,"33171":0,"33172":0,"33173":0,"33174":0,"33175":1,"33176":0,"33177":0,"33178":1,"33179":0,"33180":0,"33181":0,"33182":0,"33183":0,"33184":0,"33185":0,"33186":1,"33187":0,"33188":0,"33189":0,"33190":0,"33191":0,"33192":1,"33193":0,"33194":0,"33195":0,"33196":0,"33197":0,"33198":0,"33199":0,"33200":1,"33201":0,"33202":0,"33203":0,"33204":1,"33205":0,"33206":0,"33207":0,"33208":1,"33209":1,"33210":0,"33211":0,"33212":0,"33213":0,"33214":0,"33215":1,"33216":0,"33217":0,"33218":0,"33219":0,"33220":0,"33221":1,"33222":0,"33223":0,"33224":0,"33225":0,"33226":0,"33227":1,"33228":0,"33229":0,"33230":0,"33231":0,"33232":1,"33233":1,"33234":0,"33235":0,"33236":1,"33237":0,"33238":0,"33239":0,"33240":0,"33241":1,"33242":1,"33243":0,"33244":0,"33245":0,"33246":0,"33247":0,"33248":0,"33249":1,"33250":1,"33251":0,"33252":0,"33253":0,"33254":0,"33255":0,"33256":0,"33257":1,"33258":0,"33259":0,"33260":0,"33261":0,"33262":0,"33263":0,"33264":0,"33265":0,"33266":1,"33267":0,"33268":0,"33269":0,"33270":0,"33271":0,"33272":0,"33273":0,"33274":0,"33275":0,"33276":0,"33277":1,"33278":0,"33279":0,"33280":0,"33281":0,"33282":0,"33283":0,"33284":0,"33285":0,"33286":0,"33287":0,"33288":1,"33289":1,"33290":0,"33291":0,"33292":0,"33293":1,"33294":0,"33295":0,"33296":0,"33297":1,"33298":0,"33299":0,"33300":0,"33301":0,"33302":0,"33303":1,"33304":0,"33305":0,"33306":0,"33307":0,"33308":0,"33309":0,"33310":1,"33311":0,"33312":0,"33313":0,"33314":1,"33315":1,"33316":0,"33317":0,"33318":1,"33319":0,"33320":0,"33321":0,"33322":1,"33323":0,"33324":1,"33325":1,"33326":1,"33327":0,"33328":0,"33329":0,"33330":0,"33331":1,"33332":0,"33333":0,"33334":1,"33335":0,"33336":0,"33337":0,"33338":0,"33339":1,"33340":1,"33341":0,"33342":0,"33343":0,"33344":1,"33345":0,"33346":1,"33347":1,"33348":0,"33349":0,"33350":0,"33351":0,"33352":1,"33353":0,"33354":0,"33355":0,"33356":0,"33357":0,"33358":1,"33359":0,"33360":0,"33361":0,"33362":0,"33363":0,"33364":1,"33365":1,"33366":0,"33367":0,"33368":0,"33369":0,"33370":1,"33371":1,"33372":0,"33373":0,"33374":0,"33375":1,"33376":0,"33377":1,"33378":0,"33379":0,"33380":1,"33381":1,"33382":0,"33383":0,"33384":1,"33385":0,"33386":0,"33387":1,"33388":1,"33389":0,"33390":0,"33391":0,"33392":0,"33393":0,"33394":0,"33395":0,"33396":0,"33397":0,"33398":1,"33399":0,"33400":0,"33401":0,"33402":0,"33403":0,"33404":0,"33405":0,"33406":0,"33407":0,"33408":0,"33409":0,"33410":0,"33411":1,"33412":0,"33413":0,"33414":0,"33415":1,"33416":1,"33417":0,"33418":0,"33419":0,"33420":1,"33421":0,"33422":0,"33423":0,"33424":0,"33425":0,"33426":0,"33427":0,"33428":0,"33429":0,"33430":0,"33431":0,"33432":0,"33433":0,"33434":0,"33435":1,"33436":0,"33437":1,"33438":0,"33439":0,"33440":1,"33441":0,"33442":0,"33443":0,"33444":0,"33445":0,"33446":1,"33447":1,"33448":0,"33449":0,"33450":0,"33451":1,"33452":0,"33453":0,"33454":1,"33455":0,"33456":0,"33457":0,"33458":1,"33459":0,"33460":1,"33461":0,"33462":0,"33463":0,"33464":0,"33465":0,"33466":0,"33467":0,"33468":1,"33469":0,"33470":0,"33471":0,"33472":0,"33473":1,"33474":1,"33475":1,"33476":0,"33477":0,"33478":0,"33479":0,"33480":1,"33481":0,"33482":0,"33483":0,"33484":1,"33485":1,"33486":1,"33487":0,"33488":0,"33489":0,"33490":0,"33491":1,"33492":0,"33493":0,"33494":0,"33495":0,"33496":0,"33497":0,"33498":0,"33499":0,"33500":0,"33501":0,"33502":0,"33503":0,"33504":0,"33505":0,"33506":0,"33507":1,"33508":0,"33509":0,"33510":0,"33511":0,"33512":0,"33513":1,"33514":0,"33515":1,"33516":1,"33517":0,"33518":0,"33519":1,"33520":1,"33521":0,"33522":0,"33523":0,"33524":0,"33525":0,"33526":0,"33527":0,"33528":0,"33529":0,"33530":0,"33531":0,"33532":0,"33533":1,"33534":0,"33535":0,"33536":0,"33537":1,"33538":0,"33539":0,"33540":0,"33541":0,"33542":0,"33543":0,"33544":0,"33545":0,"33546":1,"33547":0,"33548":0,"33549":1,"33550":0,"33551":1,"33552":0,"33553":1,"33554":0,"33555":0,"33556":0,"33557":0,"33558":0,"33559":1,"33560":1,"33561":1,"33562":0,"33563":0,"33564":1,"33565":0,"33566":0,"33567":0,"33568":1,"33569":1,"33570":0,"33571":0,"33572":0,"33573":1,"33574":0,"33575":0,"33576":1,"33577":0,"33578":0,"33579":0,"33580":1,"33581":0,"33582":0,"33583":0,"33584":0,"33585":1,"33586":1,"33587":0,"33588":0,"33589":0,"33590":1,"33591":0,"33592":0,"33593":0,"33594":0,"33595":0,"33596":0,"33597":0,"33598":0,"33599":1,"33600":0,"33601":0,"33602":0,"33603":0,"33604":1,"33605":1,"33606":1,"33607":0,"33608":1,"33609":0,"33610":0,"33611":0,"33612":0,"33613":0,"33614":0,"33615":0,"33616":0,"33617":0,"33618":0,"33619":0,"33620":0,"33621":0,"33622":1,"33623":0,"33624":0,"33625":0,"33626":0,"33627":0,"33628":1,"33629":0,"33630":0,"33631":0,"33632":1,"33633":0,"33634":0,"33635":1,"33636":0,"33637":1,"33638":0,"33639":0,"33640":1,"33641":0,"33642":0,"33643":1,"33644":1,"33645":0,"33646":0,"33647":0,"33648":0,"33649":0,"33650":0,"33651":0,"33652":0,"33653":0,"33654":1,"33655":1,"33656":0,"33657":0,"33658":0,"33659":0,"33660":1,"33661":0,"33662":0,"33663":0,"33664":0,"33665":0,"33666":0,"33667":0,"33668":0,"33669":1,"33670":0,"33671":0,"33672":1,"33673":1,"33674":0,"33675":0,"33676":0,"33677":0,"33678":0,"33679":1,"33680":0,"33681":0,"33682":0,"33683":0,"33684":1,"33685":0,"33686":0,"33687":0,"33688":1,"33689":1,"33690":0,"33691":0,"33692":0,"33693":0,"33694":0,"33695":0,"33696":0,"33697":0,"33698":0,"33699":0,"33700":1,"33701":1,"33702":0,"33703":0,"33704":0,"33705":1,"33706":1,"33707":0,"33708":0,"33709":0,"33710":1,"33711":0,"33712":0,"33713":0,"33714":0,"33715":0,"33716":0,"33717":0,"33718":1,"33719":0,"33720":1,"33721":0,"33722":1,"33723":0,"33724":1,"33725":1,"33726":1,"33727":0,"33728":0,"33729":0,"33730":0,"33731":0,"33732":0,"33733":0,"33734":1,"33735":0,"33736":0,"33737":0,"33738":0,"33739":0,"33740":0,"33741":1,"33742":0,"33743":1,"33744":0,"33745":1,"33746":1,"33747":0,"33748":0,"33749":0,"33750":0,"33751":0,"33752":0,"33753":0,"33754":0,"33755":0,"33756":0,"33757":0,"33758":0,"33759":1,"33760":0,"33761":0,"33762":1,"33763":1,"33764":0,"33765":0,"33766":0,"33767":0,"33768":0,"33769":0,"33770":0,"33771":1,"33772":0,"33773":0,"33774":1,"33775":0,"33776":0,"33777":1,"33778":0,"33779":1,"33780":1,"33781":0,"33782":0,"33783":1,"33784":0,"33785":1,"33786":1,"33787":0,"33788":1,"33789":1,"33790":0,"33791":0,"33792":0,"33793":0,"33794":0,"33795":0,"33796":0,"33797":0,"33798":0,"33799":1,"33800":0,"33801":0,"33802":0,"33803":1,"33804":0,"33805":0,"33806":0,"33807":0,"33808":0,"33809":1,"33810":0,"33811":0,"33812":0,"33813":1,"33814":0,"33815":0,"33816":0,"33817":0,"33818":0,"33819":0,"33820":0,"33821":1,"33822":0,"33823":1,"33824":0,"33825":0,"33826":1,"33827":0,"33828":0,"33829":0,"33830":0,"33831":0,"33832":1,"33833":0,"33834":1,"33835":0,"33836":0,"33837":0,"33838":0,"33839":0,"33840":0,"33841":0,"33842":0,"33843":0,"33844":0,"33845":1,"33846":0,"33847":0,"33848":0,"33849":0,"33850":0,"33851":0,"33852":0,"33853":1,"33854":1,"33855":0,"33856":0,"33857":0,"33858":0,"33859":0,"33860":1,"33861":0,"33862":0,"33863":0,"33864":0,"33865":0,"33866":0,"33867":0,"33868":0,"33869":0,"33870":0,"33871":0,"33872":1,"33873":1,"33874":1,"33875":0,"33876":0,"33877":0,"33878":0,"33879":0,"33880":0,"33881":0,"33882":0,"33883":0,"33884":0,"33885":0,"33886":0,"33887":0,"33888":0,"33889":1,"33890":0,"33891":0,"33892":1,"33893":0,"33894":0,"33895":1,"33896":1,"33897":1,"33898":1,"33899":0,"33900":0,"33901":0,"33902":1,"33903":0,"33904":0,"33905":0,"33906":0,"33907":0,"33908":0,"33909":0,"33910":1,"33911":0,"33912":0,"33913":0,"33914":0,"33915":0,"33916":0,"33917":0,"33918":1,"33919":0,"33920":0,"33921":1,"33922":1,"33923":0,"33924":0,"33925":0,"33926":0,"33927":1,"33928":1,"33929":0,"33930":0,"33931":1,"33932":0,"33933":1,"33934":0,"33935":1,"33936":0,"33937":0,"33938":0,"33939":0,"33940":1,"33941":0,"33942":0,"33943":1,"33944":0,"33945":1,"33946":0,"33947":1,"33948":0,"33949":1,"33950":0,"33951":0,"33952":0,"33953":0,"33954":0,"33955":0,"33956":0,"33957":1,"33958":0,"33959":0,"33960":0,"33961":0,"33962":0,"33963":0,"33964":0,"33965":0,"33966":0,"33967":1,"33968":0,"33969":0,"33970":1,"33971":0,"33972":1,"33973":0,"33974":1,"33975":0,"33976":0,"33977":1,"33978":0,"33979":0,"33980":0,"33981":0,"33982":0,"33983":0,"33984":0,"33985":0,"33986":0,"33987":0,"33988":0,"33989":1,"33990":0,"33991":0,"33992":0,"33993":0,"33994":1,"33995":0,"33996":1,"33997":0,"33998":1,"33999":1,"34000":0,"34001":0,"34002":0,"34003":0,"34004":0,"34005":0,"34006":1,"34007":0,"34008":0,"34009":1,"34010":1,"34011":0,"34012":0,"34013":0,"34014":0,"34015":0,"34016":0,"34017":0,"34018":1,"34019":0,"34020":0,"34021":1,"34022":0,"34023":0,"34024":0,"34025":1,"34026":1,"34027":1,"34028":0,"34029":1,"34030":0,"34031":0,"34032":1,"34033":0,"34034":0,"34035":0,"34036":1,"34037":1,"34038":0,"34039":0,"34040":0,"34041":1,"34042":0,"34043":0,"34044":0,"34045":0,"34046":1,"34047":0,"34048":0,"34049":1,"34050":0,"34051":0,"34052":1,"34053":0,"34054":0,"34055":0,"34056":1,"34057":0,"34058":0,"34059":1,"34060":0,"34061":1,"34062":0,"34063":0,"34064":0,"34065":1,"34066":1,"34067":0,"34068":0,"34069":0,"34070":0,"34071":1,"34072":1,"34073":0,"34074":0,"34075":0,"34076":0,"34077":1,"34078":0,"34079":0,"34080":1,"34081":0,"34082":1,"34083":1,"34084":1,"34085":0,"34086":0,"34087":0,"34088":0,"34089":1,"34090":0,"34091":0,"34092":1,"34093":0,"34094":0,"34095":0,"34096":0,"34097":1,"34098":0,"34099":0,"34100":0,"34101":1,"34102":0,"34103":1,"34104":1,"34105":0,"34106":0,"34107":1,"34108":0,"34109":0,"34110":0,"34111":0,"34112":1,"34113":1,"34114":0,"34115":1,"34116":1,"34117":0,"34118":0,"34119":1,"34120":0,"34121":1,"34122":0,"34123":1,"34124":0,"34125":1,"34126":0,"34127":1,"34128":0,"34129":0,"34130":0,"34131":0,"34132":0,"34133":0,"34134":0,"34135":0,"34136":0,"34137":0,"34138":1,"34139":0,"34140":1,"34141":1,"34142":0,"34143":0,"34144":0,"34145":0,"34146":1,"34147":0,"34148":1,"34149":1,"34150":0,"34151":0,"34152":0,"34153":0,"34154":0,"34155":0,"34156":0,"34157":0,"34158":1,"34159":0,"34160":0,"34161":1,"34162":0,"34163":1,"34164":1,"34165":0,"34166":0,"34167":1,"34168":1,"34169":0,"34170":0,"34171":1,"34172":1,"34173":1,"34174":0,"34175":0,"34176":0,"34177":0,"34178":0,"34179":0,"34180":0,"34181":1,"34182":0,"34183":0,"34184":0,"34185":0,"34186":0,"34187":0,"34188":0,"34189":0,"34190":0,"34191":0,"34192":0,"34193":0,"34194":0,"34195":0,"34196":0,"34197":0,"34198":1,"34199":0,"34200":0,"34201":0,"34202":0,"34203":0,"34204":0,"34205":1,"34206":1,"34207":0,"34208":0,"34209":0,"34210":0,"34211":0,"34212":0,"34213":0,"34214":0,"34215":1,"34216":0,"34217":0,"34218":0,"34219":1,"34220":0,"34221":0,"34222":0,"34223":0,"34224":0,"34225":1,"34226":0,"34227":0,"34228":0,"34229":0,"34230":0,"34231":0,"34232":0,"34233":1,"34234":0,"34235":1,"34236":0,"34237":0,"34238":0,"34239":0,"34240":0,"34241":0,"34242":1,"34243":1,"34244":1,"34245":0,"34246":0,"34247":0,"34248":1,"34249":0,"34250":0,"34251":0,"34252":1,"34253":0,"34254":0,"34255":1,"34256":0,"34257":1,"34258":1,"34259":0,"34260":0,"34261":0,"34262":1,"34263":0,"34264":0,"34265":0,"34266":0,"34267":0,"34268":0,"34269":0,"34270":0,"34271":0,"34272":0,"34273":0,"34274":0,"34275":0,"34276":0,"34277":0,"34278":0,"34279":0,"34280":0,"34281":0,"34282":0,"34283":0,"34284":0,"34285":0,"34286":0,"34287":1,"34288":0,"34289":0,"34290":0,"34291":1,"34292":1,"34293":0,"34294":0,"34295":0,"34296":0,"34297":0,"34298":0,"34299":0,"34300":1,"34301":0,"34302":1,"34303":0,"34304":0,"34305":1,"34306":0,"34307":0,"34308":0,"34309":0,"34310":0,"34311":0,"34312":0,"34313":1,"34314":0,"34315":0,"34316":0,"34317":1,"34318":0,"34319":0,"34320":0,"34321":0,"34322":0,"34323":1,"34324":0,"34325":1,"34326":0,"34327":0,"34328":1,"34329":1,"34330":0,"34331":0,"34332":0,"34333":0,"34334":0,"34335":0,"34336":0,"34337":0,"34338":0,"34339":0,"34340":1,"34341":0,"34342":0,"34343":1,"34344":0,"34345":0,"34346":1,"34347":0,"34348":0,"34349":1,"34350":1,"34351":0,"34352":1,"34353":0,"34354":0,"34355":0,"34356":1,"34357":0,"34358":1,"34359":0,"34360":0,"34361":0,"34362":0,"34363":1,"34364":1,"34365":0,"34366":0,"34367":0,"34368":1,"34369":0,"34370":1,"34371":1,"34372":0,"34373":0,"34374":0,"34375":1,"34376":1,"34377":1,"34378":1,"34379":0,"34380":0,"34381":0,"34382":0,"34383":0,"34384":0,"34385":0,"34386":0,"34387":0,"34388":0,"34389":0,"34390":0,"34391":1,"34392":0,"34393":0,"34394":0,"34395":0,"34396":0,"34397":0,"34398":1,"34399":0,"34400":0,"34401":0,"34402":1,"34403":0,"34404":1,"34405":0,"34406":1,"34407":0,"34408":0,"34409":1,"34410":0,"34411":0,"34412":1,"34413":0,"34414":0,"34415":0,"34416":0,"34417":0,"34418":0,"34419":0,"34420":0,"34421":0,"34422":0,"34423":0,"34424":1,"34425":1,"34426":1,"34427":0,"34428":0,"34429":0,"34430":1,"34431":0,"34432":0,"34433":0,"34434":1,"34435":1,"34436":0,"34437":0,"34438":0,"34439":1,"34440":0,"34441":0,"34442":0,"34443":0,"34444":0,"34445":0,"34446":0,"34447":1,"34448":0,"34449":1,"34450":0,"34451":0,"34452":0,"34453":0,"34454":0,"34455":0,"34456":1,"34457":0,"34458":0,"34459":0,"34460":0,"34461":0,"34462":0,"34463":0,"34464":1,"34465":1,"34466":0,"34467":0,"34468":0,"34469":0,"34470":1,"34471":1,"34472":1,"34473":0,"34474":0,"34475":0,"34476":0,"34477":1,"34478":0,"34479":0,"34480":1,"34481":0,"34482":0,"34483":0,"34484":0,"34485":0,"34486":0,"34487":0,"34488":0,"34489":0,"34490":0,"34491":0,"34492":0,"34493":1,"34494":0,"34495":0,"34496":0,"34497":0,"34498":0,"34499":0,"34500":0,"34501":0,"34502":0,"34503":1,"34504":0,"34505":0,"34506":0,"34507":0,"34508":0,"34509":0,"34510":1,"34511":0,"34512":0,"34513":1,"34514":0,"34515":0,"34516":0,"34517":1,"34518":1,"34519":0,"34520":0,"34521":0,"34522":0,"34523":0,"34524":0,"34525":0,"34526":0,"34527":1,"34528":0,"34529":0,"34530":1,"34531":0,"34532":0,"34533":0,"34534":0,"34535":0,"34536":0,"34537":1,"34538":0,"34539":0,"34540":0,"34541":1,"34542":0,"34543":0,"34544":0,"34545":1,"34546":1,"34547":1,"34548":0,"34549":0,"34550":0,"34551":0,"34552":1,"34553":0,"34554":1,"34555":0,"34556":0,"34557":0,"34558":0,"34559":1,"34560":0,"34561":0,"34562":0,"34563":0,"34564":0,"34565":0,"34566":1,"34567":1,"34568":1,"34569":0,"34570":0,"34571":0,"34572":0,"34573":0,"34574":0,"34575":1,"34576":0,"34577":1,"34578":0,"34579":0,"34580":0,"34581":1,"34582":1,"34583":0,"34584":0,"34585":0,"34586":0,"34587":0,"34588":0,"34589":0,"34590":0,"34591":0,"34592":1,"34593":0,"34594":0,"34595":1,"34596":0,"34597":0,"34598":0,"34599":0,"34600":1,"34601":0,"34602":0,"34603":0,"34604":0,"34605":0,"34606":0,"34607":0,"34608":0,"34609":1,"34610":0,"34611":0,"34612":0,"34613":1,"34614":1,"34615":0,"34616":0,"34617":0,"34618":1,"34619":0,"34620":0,"34621":0,"34622":0,"34623":0,"34624":0,"34625":0,"34626":0,"34627":0,"34628":0,"34629":0,"34630":0,"34631":0,"34632":0,"34633":1,"34634":0,"34635":0,"34636":0,"34637":0,"34638":0,"34639":0,"34640":0,"34641":0,"34642":1,"34643":0,"34644":0,"34645":0,"34646":0,"34647":0,"34648":0,"34649":0,"34650":0,"34651":0,"34652":0,"34653":1,"34654":0,"34655":0,"34656":1,"34657":0,"34658":0,"34659":0,"34660":0,"34661":0,"34662":1,"34663":0,"34664":0,"34665":0,"34666":0,"34667":0,"34668":1,"34669":0,"34670":1,"34671":1,"34672":0,"34673":0,"34674":0,"34675":0,"34676":0,"34677":0,"34678":1,"34679":0,"34680":0,"34681":0,"34682":0,"34683":0,"34684":0,"34685":0,"34686":1,"34687":1,"34688":0,"34689":0,"34690":1,"34691":0,"34692":0,"34693":0,"34694":0,"34695":0,"34696":0,"34697":0,"34698":1,"34699":0,"34700":0,"34701":0,"34702":0,"34703":0,"34704":0,"34705":0,"34706":0,"34707":0,"34708":1,"34709":0,"34710":0,"34711":1,"34712":0,"34713":0,"34714":0,"34715":1,"34716":0,"34717":0,"34718":0,"34719":1,"34720":1,"34721":0,"34722":0,"34723":0,"34724":0,"34725":0,"34726":0,"34727":0,"34728":0,"34729":0,"34730":1,"34731":0,"34732":0,"34733":0,"34734":0,"34735":0,"34736":1,"34737":1,"34738":0,"34739":0,"34740":0,"34741":0,"34742":0,"34743":0,"34744":0,"34745":0,"34746":1,"34747":0,"34748":1,"34749":0,"34750":0,"34751":1,"34752":0,"34753":0,"34754":0,"34755":0,"34756":1,"34757":0,"34758":0,"34759":0,"34760":0,"34761":0,"34762":0,"34763":1,"34764":0,"34765":0,"34766":0,"34767":0,"34768":0,"34769":0,"34770":0,"34771":0,"34772":1,"34773":0,"34774":0,"34775":0,"34776":1,"34777":0,"34778":0,"34779":1,"34780":0,"34781":1,"34782":0,"34783":0,"34784":0,"34785":1,"34786":0,"34787":0,"34788":0,"34789":1,"34790":0,"34791":0,"34792":0,"34793":0,"34794":0,"34795":0,"34796":1,"34797":1,"34798":0,"34799":0,"34800":0,"34801":0,"34802":1,"34803":0,"34804":0,"34805":0,"34806":0,"34807":0,"34808":0,"34809":1,"34810":0,"34811":0,"34812":1,"34813":0,"34814":0,"34815":0,"34816":1,"34817":0,"34818":1,"34819":0,"34820":0,"34821":0,"34822":0,"34823":0,"34824":0,"34825":0,"34826":0,"34827":0,"34828":0,"34829":0,"34830":0,"34831":0,"34832":0,"34833":1,"34834":0,"34835":0,"34836":1,"34837":1,"34838":0,"34839":0,"34840":0,"34841":0,"34842":0,"34843":0,"34844":0,"34845":0,"34846":1,"34847":0,"34848":1,"34849":0,"34850":1,"34851":0,"34852":1,"34853":0,"34854":1,"34855":0,"34856":0,"34857":1,"34858":0,"34859":0,"34860":0,"34861":0,"34862":0,"34863":0,"34864":0,"34865":0,"34866":0,"34867":0,"34868":0,"34869":0,"34870":0,"34871":0,"34872":0,"34873":0,"34874":1,"34875":0,"34876":0,"34877":0,"34878":0,"34879":0,"34880":1,"34881":0,"34882":0,"34883":1,"34884":0,"34885":0,"34886":0,"34887":1,"34888":0,"34889":0,"34890":0,"34891":0,"34892":0,"34893":0,"34894":0,"34895":0,"34896":0,"34897":1,"34898":0,"34899":0,"34900":0,"34901":0,"34902":0,"34903":0,"34904":0,"34905":0,"34906":0,"34907":0,"34908":0,"34909":1,"34910":1,"34911":0,"34912":0,"34913":1,"34914":0,"34915":1,"34916":0,"34917":0,"34918":0,"34919":0,"34920":0,"34921":1,"34922":1,"34923":0,"34924":1,"34925":0,"34926":0,"34927":0,"34928":0,"34929":1,"34930":0,"34931":0,"34932":1,"34933":0,"34934":0,"34935":0,"34936":0,"34937":0,"34938":0,"34939":1,"34940":0,"34941":0,"34942":1,"34943":1,"34944":0,"34945":0,"34946":1,"34947":0,"34948":0,"34949":0,"34950":0,"34951":0,"34952":0,"34953":0,"34954":0,"34955":1,"34956":0,"34957":0,"34958":0,"34959":0,"34960":1,"34961":0,"34962":1,"34963":0,"34964":0,"34965":1,"34966":0,"34967":0,"34968":0,"34969":0,"34970":0,"34971":0,"34972":0,"34973":1,"34974":1,"34975":0,"34976":1,"34977":0,"34978":0,"34979":0,"34980":0,"34981":1,"34982":0,"34983":0,"34984":0,"34985":0,"34986":1,"34987":0,"34988":0,"34989":0,"34990":0,"34991":1,"34992":0,"34993":0,"34994":0,"34995":0,"34996":1,"34997":0,"34998":0,"34999":0,"35000":0,"35001":1,"35002":0,"35003":0,"35004":0,"35005":0,"35006":0,"35007":1,"35008":0,"35009":1,"35010":1,"35011":0,"35012":1,"35013":0,"35014":0,"35015":0,"35016":1,"35017":0,"35018":0,"35019":0,"35020":0,"35021":0,"35022":0,"35023":0,"35024":0,"35025":0,"35026":0,"35027":1,"35028":0,"35029":0,"35030":0,"35031":1,"35032":0,"35033":1,"35034":0,"35035":0,"35036":0,"35037":0,"35038":0,"35039":0,"35040":0,"35041":1,"35042":1,"35043":0,"35044":0,"35045":0,"35046":1,"35047":0,"35048":1,"35049":0,"35050":0,"35051":1,"35052":1,"35053":0,"35054":0,"35055":0,"35056":0,"35057":1,"35058":0,"35059":0,"35060":0,"35061":0,"35062":0,"35063":1,"35064":0,"35065":0,"35066":0,"35067":0,"35068":0,"35069":0,"35070":0,"35071":1,"35072":1,"35073":0,"35074":0,"35075":1,"35076":0,"35077":0,"35078":0,"35079":0,"35080":0,"35081":0,"35082":1,"35083":0,"35084":1,"35085":1,"35086":1,"35087":0,"35088":0,"35089":0,"35090":0,"35091":0,"35092":0,"35093":0,"35094":1,"35095":0,"35096":0,"35097":0,"35098":0,"35099":0,"35100":0,"35101":0,"35102":0,"35103":0,"35104":0,"35105":0,"35106":0,"35107":0,"35108":0,"35109":0,"35110":0,"35111":1,"35112":0,"35113":0,"35114":0,"35115":1,"35116":0,"35117":0,"35118":1,"35119":0,"35120":0,"35121":0,"35122":0,"35123":0,"35124":0,"35125":0,"35126":0,"35127":1,"35128":0,"35129":0,"35130":0,"35131":1,"35132":0,"35133":0,"35134":1,"35135":0,"35136":1,"35137":0,"35138":0,"35139":1,"35140":1,"35141":0,"35142":1,"35143":0,"35144":0,"35145":0,"35146":1,"35147":0,"35148":0,"35149":0,"35150":0,"35151":0,"35152":0,"35153":0,"35154":0,"35155":0,"35156":0,"35157":0,"35158":0,"35159":0,"35160":0,"35161":0,"35162":1,"35163":0,"35164":0,"35165":1,"35166":1,"35167":0,"35168":1,"35169":0,"35170":0,"35171":1,"35172":1,"35173":0,"35174":1,"35175":0,"35176":1,"35177":0,"35178":0,"35179":1,"35180":0,"35181":0,"35182":1,"35183":0,"35184":0,"35185":0,"35186":0,"35187":0,"35188":0,"35189":0,"35190":0,"35191":0,"35192":0,"35193":0,"35194":1,"35195":0,"35196":0,"35197":0,"35198":0,"35199":0,"35200":0,"35201":0,"35202":0,"35203":0,"35204":0,"35205":0,"35206":1,"35207":0,"35208":1,"35209":0,"35210":0,"35211":1,"35212":1,"35213":1,"35214":0,"35215":0,"35216":0,"35217":0,"35218":0,"35219":0,"35220":0,"35221":1,"35222":0,"35223":0,"35224":0,"35225":0,"35226":0,"35227":0,"35228":0,"35229":1,"35230":1,"35231":0,"35232":0,"35233":0,"35234":0,"35235":0,"35236":0,"35237":0,"35238":0,"35239":1,"35240":1,"35241":0,"35242":0,"35243":0,"35244":0,"35245":0,"35246":0,"35247":1,"35248":0,"35249":1,"35250":0,"35251":0,"35252":0,"35253":0,"35254":0,"35255":0,"35256":1,"35257":0,"35258":0,"35259":0,"35260":0,"35261":0,"35262":0,"35263":0,"35264":0,"35265":0,"35266":1,"35267":1,"35268":0,"35269":1,"35270":0,"35271":1,"35272":0,"35273":0,"35274":0,"35275":0,"35276":0,"35277":0,"35278":0,"35279":0,"35280":0,"35281":0,"35282":0,"35283":0,"35284":0,"35285":1,"35286":0,"35287":0,"35288":0,"35289":0,"35290":0,"35291":0,"35292":0,"35293":0,"35294":0,"35295":1,"35296":1,"35297":0,"35298":1,"35299":0,"35300":0,"35301":1,"35302":0,"35303":0,"35304":0,"35305":0,"35306":1,"35307":0,"35308":0,"35309":1,"35310":0,"35311":0,"35312":0,"35313":0,"35314":0,"35315":0,"35316":0,"35317":0,"35318":0,"35319":1,"35320":1,"35321":0,"35322":1,"35323":0,"35324":0,"35325":0,"35326":1,"35327":0,"35328":0,"35329":1,"35330":0,"35331":0,"35332":0,"35333":0,"35334":0,"35335":0,"35336":0,"35337":0,"35338":1,"35339":0,"35340":0,"35341":0,"35342":0,"35343":0,"35344":0,"35345":0,"35346":0,"35347":1,"35348":1,"35349":0,"35350":0,"35351":0,"35352":0,"35353":1,"35354":1,"35355":0,"35356":1,"35357":1,"35358":0,"35359":1,"35360":0,"35361":0,"35362":0,"35363":0,"35364":0,"35365":1,"35366":0,"35367":0,"35368":1,"35369":0,"35370":0,"35371":0,"35372":1,"35373":1,"35374":1,"35375":0,"35376":0,"35377":0,"35378":0,"35379":0,"35380":0,"35381":0,"35382":0,"35383":0,"35384":0,"35385":0,"35386":0,"35387":0,"35388":1,"35389":0,"35390":0,"35391":0,"35392":0,"35393":0,"35394":0,"35395":0,"35396":1,"35397":0,"35398":1,"35399":0,"35400":0,"35401":1,"35402":0,"35403":0,"35404":0,"35405":0,"35406":0,"35407":1,"35408":0,"35409":0,"35410":0,"35411":1,"35412":0,"35413":0,"35414":0,"35415":0,"35416":0,"35417":1,"35418":1,"35419":1,"35420":0,"35421":0,"35422":0,"35423":0,"35424":0,"35425":0,"35426":0,"35427":1,"35428":1,"35429":0,"35430":1,"35431":0,"35432":1,"35433":0,"35434":0,"35435":1,"35436":0,"35437":1,"35438":0,"35439":0,"35440":0,"35441":0,"35442":0,"35443":0,"35444":0,"35445":1,"35446":0,"35447":1,"35448":1,"35449":1,"35450":0,"35451":0,"35452":1,"35453":0,"35454":0,"35455":1,"35456":0,"35457":0,"35458":0,"35459":1,"35460":0,"35461":1,"35462":0,"35463":0,"35464":0,"35465":0,"35466":1,"35467":1,"35468":0,"35469":0,"35470":0,"35471":0,"35472":1,"35473":0,"35474":0,"35475":0,"35476":0,"35477":0,"35478":0,"35479":0,"35480":0,"35481":1,"35482":0,"35483":0,"35484":1,"35485":0,"35486":0,"35487":0,"35488":1,"35489":0,"35490":0,"35491":0,"35492":0,"35493":0,"35494":0,"35495":0,"35496":1,"35497":0,"35498":0,"35499":1,"35500":0,"35501":1,"35502":1,"35503":0,"35504":0,"35505":1,"35506":0,"35507":0,"35508":0,"35509":0,"35510":0,"35511":1,"35512":0,"35513":1,"35514":0,"35515":0,"35516":0,"35517":1,"35518":0,"35519":1,"35520":0,"35521":0,"35522":0,"35523":0,"35524":0,"35525":1,"35526":0,"35527":0,"35528":0,"35529":1,"35530":0,"35531":1,"35532":0,"35533":0,"35534":0,"35535":0,"35536":0,"35537":0,"35538":0,"35539":0,"35540":0,"35541":0,"35542":0,"35543":0,"35544":0,"35545":1,"35546":0,"35547":0,"35548":0,"35549":0,"35550":1,"35551":0,"35552":0,"35553":0,"35554":0,"35555":0,"35556":1,"35557":0,"35558":0,"35559":0,"35560":0,"35561":0,"35562":0,"35563":0,"35564":0,"35565":0,"35566":0,"35567":0,"35568":1,"35569":0,"35570":0,"35571":0,"35572":0,"35573":0,"35574":0,"35575":0,"35576":0,"35577":0,"35578":1,"35579":1,"35580":0,"35581":0,"35582":0,"35583":0,"35584":0,"35585":1,"35586":1,"35587":0,"35588":0,"35589":0,"35590":0,"35591":1,"35592":0,"35593":0,"35594":0,"35595":0,"35596":0,"35597":0,"35598":0,"35599":0,"35600":0,"35601":1,"35602":0,"35603":0,"35604":0,"35605":1,"35606":0,"35607":0,"35608":0,"35609":0,"35610":1,"35611":0,"35612":0,"35613":0,"35614":1,"35615":0,"35616":0,"35617":0,"35618":0,"35619":0,"35620":0,"35621":1,"35622":0,"35623":0,"35624":0,"35625":1,"35626":0,"35627":1,"35628":1,"35629":0,"35630":0,"35631":1,"35632":0,"35633":0,"35634":0,"35635":1,"35636":0,"35637":1,"35638":0,"35639":0,"35640":0,"35641":0,"35642":0,"35643":1,"35644":1,"35645":0,"35646":1,"35647":0,"35648":0,"35649":0,"35650":0,"35651":0,"35652":0,"35653":0,"35654":0,"35655":1,"35656":0,"35657":0,"35658":0,"35659":0,"35660":1,"35661":0,"35662":0,"35663":1,"35664":0,"35665":0,"35666":0,"35667":0,"35668":1,"35669":0,"35670":0,"35671":1,"35672":0,"35673":1,"35674":0,"35675":0,"35676":0,"35677":1,"35678":1,"35679":0,"35680":0,"35681":0,"35682":1,"35683":0,"35684":0,"35685":0,"35686":1,"35687":1,"35688":0,"35689":1,"35690":0,"35691":0,"35692":1,"35693":0,"35694":0,"35695":0,"35696":0,"35697":1,"35698":0,"35699":0,"35700":0,"35701":0,"35702":0,"35703":0,"35704":0,"35705":0,"35706":0,"35707":0,"35708":1,"35709":0,"35710":0,"35711":0,"35712":0,"35713":1,"35714":0,"35715":0,"35716":0,"35717":1,"35718":0,"35719":1,"35720":0,"35721":0,"35722":0,"35723":0,"35724":1,"35725":0,"35726":0,"35727":1,"35728":0,"35729":0,"35730":0,"35731":0,"35732":1,"35733":0,"35734":0,"35735":1,"35736":0,"35737":1,"35738":1,"35739":0,"35740":0,"35741":0,"35742":0,"35743":0,"35744":0,"35745":0,"35746":0,"35747":1,"35748":0,"35749":0,"35750":0,"35751":0,"35752":0,"35753":0,"35754":0,"35755":0,"35756":0,"35757":1,"35758":0,"35759":0,"35760":0,"35761":0,"35762":1,"35763":1,"35764":1,"35765":1,"35766":0,"35767":0,"35768":1,"35769":1,"35770":1,"35771":0,"35772":0,"35773":1,"35774":1,"35775":1,"35776":0,"35777":0,"35778":0,"35779":0,"35780":0,"35781":0,"35782":0,"35783":0,"35784":1,"35785":0,"35786":0,"35787":0,"35788":0,"35789":0,"35790":0,"35791":0,"35792":0,"35793":1,"35794":0,"35795":0,"35796":0,"35797":0,"35798":0,"35799":0,"35800":0,"35801":1,"35802":0,"35803":0,"35804":0,"35805":0,"35806":0,"35807":0,"35808":1,"35809":1,"35810":1,"35811":0,"35812":1,"35813":0,"35814":0,"35815":1,"35816":0,"35817":0,"35818":0,"35819":0,"35820":0,"35821":0,"35822":0,"35823":1,"35824":0,"35825":0,"35826":0,"35827":0,"35828":0,"35829":0,"35830":1,"35831":0,"35832":0,"35833":1,"35834":0,"35835":1,"35836":0,"35837":0,"35838":0,"35839":0,"35840":0,"35841":0,"35842":1,"35843":1,"35844":1,"35845":1,"35846":0,"35847":0,"35848":0,"35849":0,"35850":1,"35851":0,"35852":0,"35853":0,"35854":1,"35855":0,"35856":1,"35857":0,"35858":0,"35859":1,"35860":1,"35861":0,"35862":0,"35863":0,"35864":0,"35865":0,"35866":0,"35867":0,"35868":0,"35869":0,"35870":0,"35871":0,"35872":0,"35873":1,"35874":0,"35875":0,"35876":1,"35877":0,"35878":1,"35879":0,"35880":0,"35881":0,"35882":0,"35883":0,"35884":0,"35885":0,"35886":0,"35887":0,"35888":0,"35889":0,"35890":0,"35891":0,"35892":0,"35893":0,"35894":0,"35895":0,"35896":0,"35897":0,"35898":1,"35899":0,"35900":0,"35901":1,"35902":0,"35903":1,"35904":0,"35905":0,"35906":0,"35907":1,"35908":0,"35909":1,"35910":0,"35911":0,"35912":0,"35913":0,"35914":0,"35915":1,"35916":0,"35917":0,"35918":0,"35919":0,"35920":0,"35921":0,"35922":0,"35923":1,"35924":0,"35925":0,"35926":0,"35927":0,"35928":1,"35929":0,"35930":1,"35931":0,"35932":1,"35933":0,"35934":0,"35935":1,"35936":0,"35937":0,"35938":0,"35939":1,"35940":0,"35941":0,"35942":1,"35943":0,"35944":0,"35945":0,"35946":0,"35947":1,"35948":0,"35949":0,"35950":1,"35951":0,"35952":0,"35953":0,"35954":0,"35955":1,"35956":0,"35957":1,"35958":0,"35959":0,"35960":0,"35961":0,"35962":1,"35963":0,"35964":0,"35965":0,"35966":0,"35967":0,"35968":0,"35969":0,"35970":0,"35971":0,"35972":0,"35973":0,"35974":0,"35975":0,"35976":0,"35977":1,"35978":0,"35979":0,"35980":0,"35981":0,"35982":0,"35983":0,"35984":0,"35985":0,"35986":0,"35987":0,"35988":1,"35989":0,"35990":0,"35991":0,"35992":0,"35993":0,"35994":0,"35995":0,"35996":0,"35997":0,"35998":1,"35999":0,"36000":0,"36001":0,"36002":0,"36003":0,"36004":0,"36005":0,"36006":1,"36007":0,"36008":0,"36009":0,"36010":0,"36011":0,"36012":1,"36013":0,"36014":1,"36015":0,"36016":1,"36017":1,"36018":1,"36019":1,"36020":0,"36021":1,"36022":0,"36023":1,"36024":0,"36025":0,"36026":0,"36027":0,"36028":0,"36029":1,"36030":0,"36031":1,"36032":0,"36033":1,"36034":0,"36035":0,"36036":0,"36037":1,"36038":1,"36039":0,"36040":0,"36041":1,"36042":0,"36043":0,"36044":0,"36045":1,"36046":0,"36047":1,"36048":0,"36049":0,"36050":0,"36051":0,"36052":0,"36053":0,"36054":0,"36055":0,"36056":0,"36057":0,"36058":0,"36059":1,"36060":0,"36061":0,"36062":1,"36063":0,"36064":1,"36065":0,"36066":0,"36067":1,"36068":1,"36069":0,"36070":0,"36071":0,"36072":0,"36073":0,"36074":0,"36075":0,"36076":0,"36077":1,"36078":0,"36079":0,"36080":0,"36081":0,"36082":0,"36083":0,"36084":0,"36085":0,"36086":0,"36087":0,"36088":1,"36089":0,"36090":0,"36091":1,"36092":0,"36093":0,"36094":0,"36095":0,"36096":1,"36097":0,"36098":0,"36099":0,"36100":1,"36101":0,"36102":1,"36103":1,"36104":0,"36105":0,"36106":0,"36107":1,"36108":0,"36109":1,"36110":1,"36111":1,"36112":0,"36113":0,"36114":1,"36115":0,"36116":0,"36117":0,"36118":0,"36119":0,"36120":0,"36121":0,"36122":0,"36123":0,"36124":0,"36125":1,"36126":0,"36127":0,"36128":1,"36129":1,"36130":0,"36131":0,"36132":0,"36133":1,"36134":0,"36135":0,"36136":0,"36137":1,"36138":0,"36139":1,"36140":1,"36141":0,"36142":0,"36143":1,"36144":1,"36145":0,"36146":1,"36147":0,"36148":1,"36149":1,"36150":1,"36151":0,"36152":0,"36153":0,"36154":1,"36155":0,"36156":0,"36157":0,"36158":0,"36159":1,"36160":1,"36161":0,"36162":0,"36163":0,"36164":0,"36165":0,"36166":0,"36167":0,"36168":0,"36169":0,"36170":0,"36171":1,"36172":1,"36173":0,"36174":0,"36175":0,"36176":0,"36177":0,"36178":1,"36179":1,"36180":0,"36181":0,"36182":0,"36183":1,"36184":0,"36185":1,"36186":0,"36187":0,"36188":0,"36189":0,"36190":0,"36191":0,"36192":0,"36193":0,"36194":0,"36195":0,"36196":0,"36197":1,"36198":0,"36199":0,"36200":1,"36201":0,"36202":0,"36203":1,"36204":1,"36205":0,"36206":0,"36207":0,"36208":0,"36209":0,"36210":1,"36211":1,"36212":0,"36213":0,"36214":0,"36215":0,"36216":0,"36217":0,"36218":0,"36219":0,"36220":1,"36221":0,"36222":1,"36223":0,"36224":0,"36225":1,"36226":0,"36227":1,"36228":0,"36229":1,"36230":0,"36231":1,"36232":0,"36233":1,"36234":0,"36235":0,"36236":0,"36237":0,"36238":0,"36239":0,"36240":1,"36241":0,"36242":0,"36243":1,"36244":0,"36245":0,"36246":0,"36247":0,"36248":0,"36249":0,"36250":1,"36251":0,"36252":0,"36253":0,"36254":0,"36255":0,"36256":0,"36257":0,"36258":1,"36259":0,"36260":0,"36261":1,"36262":0,"36263":0,"36264":0,"36265":0,"36266":0,"36267":0,"36268":0,"36269":1,"36270":1,"36271":0,"36272":1,"36273":0,"36274":1,"36275":0,"36276":1,"36277":0,"36278":0,"36279":0,"36280":0,"36281":0,"36282":1,"36283":0,"36284":1,"36285":0,"36286":0,"36287":0,"36288":0,"36289":0,"36290":1,"36291":1,"36292":0,"36293":0,"36294":0,"36295":0,"36296":0,"36297":0,"36298":0,"36299":0,"36300":0,"36301":0,"36302":0,"36303":1,"36304":1,"36305":1,"36306":0,"36307":0,"36308":0,"36309":1,"36310":0,"36311":0,"36312":0,"36313":0,"36314":1,"36315":0,"36316":0,"36317":0,"36318":0,"36319":1,"36320":0,"36321":0,"36322":0,"36323":0,"36324":0,"36325":0,"36326":1,"36327":0,"36328":0,"36329":0,"36330":0,"36331":1,"36332":1,"36333":0,"36334":0,"36335":0,"36336":0,"36337":0,"36338":1,"36339":0,"36340":1,"36341":1,"36342":0,"36343":0,"36344":0,"36345":1,"36346":0,"36347":0,"36348":1,"36349":0,"36350":0,"36351":0,"36352":0,"36353":0,"36354":0,"36355":1,"36356":1,"36357":1,"36358":0,"36359":1,"36360":0,"36361":0,"36362":0,"36363":0,"36364":0,"36365":0,"36366":0,"36367":1,"36368":0,"36369":0,"36370":0,"36371":0,"36372":0,"36373":0,"36374":0,"36375":0,"36376":1,"36377":0,"36378":0,"36379":0,"36380":1,"36381":1,"36382":0,"36383":0,"36384":0,"36385":0,"36386":1,"36387":0,"36388":0,"36389":0,"36390":0,"36391":1,"36392":1,"36393":0,"36394":0,"36395":0,"36396":1,"36397":0,"36398":0,"36399":0,"36400":0,"36401":0,"36402":1,"36403":0,"36404":0,"36405":0,"36406":0,"36407":0,"36408":0,"36409":0,"36410":0,"36411":1,"36412":1,"36413":1,"36414":0,"36415":0,"36416":0,"36417":0,"36418":0,"36419":1,"36420":1,"36421":1,"36422":0,"36423":1,"36424":0,"36425":0,"36426":1,"36427":0,"36428":0,"36429":1,"36430":0,"36431":0,"36432":0,"36433":0,"36434":0,"36435":0,"36436":0,"36437":0,"36438":0,"36439":0,"36440":1,"36441":0,"36442":0,"36443":1,"36444":0,"36445":0,"36446":1,"36447":0,"36448":0,"36449":0,"36450":0,"36451":0,"36452":0,"36453":1,"36454":0,"36455":0,"36456":0,"36457":0,"36458":1,"36459":0,"36460":1,"36461":0,"36462":0,"36463":0,"36464":0,"36465":1,"36466":0,"36467":1,"36468":0,"36469":0,"36470":1,"36471":0,"36472":0,"36473":0,"36474":0,"36475":0,"36476":1,"36477":0,"36478":0,"36479":1,"36480":0,"36481":0,"36482":0,"36483":0,"36484":1,"36485":0,"36486":0,"36487":0,"36488":0,"36489":0,"36490":0,"36491":0,"36492":1,"36493":0,"36494":1,"36495":0,"36496":0,"36497":0,"36498":0,"36499":1,"36500":0,"36501":1,"36502":0,"36503":0,"36504":1,"36505":0,"36506":0,"36507":0,"36508":1,"36509":0,"36510":1,"36511":1,"36512":0,"36513":0,"36514":0,"36515":0,"36516":0,"36517":1,"36518":1,"36519":0,"36520":0,"36521":0,"36522":0,"36523":1,"36524":1,"36525":0,"36526":0,"36527":0,"36528":0,"36529":0,"36530":0,"36531":1,"36532":0,"36533":0,"36534":0,"36535":0,"36536":0,"36537":0,"36538":0,"36539":0,"36540":0,"36541":1,"36542":0,"36543":1,"36544":0,"36545":0,"36546":0,"36547":0,"36548":1,"36549":0,"36550":1,"36551":0,"36552":0,"36553":0,"36554":0,"36555":0,"36556":0,"36557":0,"36558":0,"36559":0,"36560":0,"36561":0,"36562":1,"36563":0,"36564":0,"36565":0,"36566":0,"36567":0,"36568":0,"36569":0,"36570":1,"36571":0,"36572":0,"36573":0,"36574":1,"36575":1,"36576":1,"36577":0,"36578":0,"36579":0,"36580":1,"36581":0,"36582":1,"36583":0,"36584":0,"36585":0,"36586":0,"36587":0,"36588":0,"36589":0,"36590":0,"36591":1,"36592":0,"36593":0,"36594":0,"36595":0,"36596":0,"36597":0,"36598":0,"36599":0,"36600":0,"36601":0,"36602":1,"36603":0,"36604":0,"36605":0,"36606":0,"36607":1,"36608":0,"36609":1,"36610":1,"36611":0,"36612":0,"36613":0,"36614":1,"36615":0,"36616":0,"36617":0,"36618":0,"36619":1,"36620":0,"36621":0,"36622":1,"36623":1,"36624":0,"36625":1,"36626":0,"36627":0,"36628":1,"36629":0,"36630":0,"36631":1,"36632":1,"36633":0,"36634":1,"36635":0,"36636":0,"36637":1,"36638":0,"36639":0,"36640":1,"36641":0,"36642":1,"36643":0,"36644":0,"36645":1,"36646":1,"36647":0,"36648":0,"36649":0,"36650":0,"36651":0,"36652":0,"36653":0,"36654":0,"36655":1,"36656":1,"36657":0,"36658":0,"36659":0,"36660":0,"36661":0,"36662":0,"36663":0,"36664":0,"36665":0,"36666":0,"36667":0,"36668":0,"36669":0,"36670":0,"36671":0,"36672":0,"36673":1,"36674":1,"36675":0,"36676":1,"36677":0,"36678":0,"36679":0,"36680":0,"36681":1,"36682":0,"36683":0,"36684":0,"36685":0,"36686":1,"36687":0,"36688":1,"36689":0,"36690":0,"36691":0,"36692":0,"36693":0,"36694":0,"36695":0,"36696":1,"36697":0,"36698":1,"36699":0,"36700":0,"36701":0,"36702":0,"36703":0,"36704":1,"36705":1,"36706":0,"36707":0,"36708":1,"36709":0,"36710":0,"36711":0,"36712":1,"36713":0,"36714":0,"36715":0,"36716":1,"36717":1,"36718":0,"36719":0,"36720":0,"36721":0,"36722":0,"36723":1,"36724":1,"36725":0,"36726":0,"36727":0,"36728":0,"36729":0,"36730":0,"36731":1,"36732":0,"36733":0,"36734":0,"36735":1,"36736":0,"36737":0,"36738":0,"36739":0,"36740":0,"36741":0,"36742":1,"36743":0,"36744":0,"36745":0,"36746":0,"36747":0,"36748":0,"36749":0,"36750":1,"36751":0,"36752":0,"36753":1,"36754":0,"36755":1,"36756":1,"36757":0,"36758":1,"36759":0,"36760":0,"36761":0,"36762":1,"36763":0,"36764":0,"36765":0,"36766":0,"36767":0,"36768":1,"36769":0,"36770":0,"36771":0,"36772":0,"36773":0,"36774":1,"36775":0,"36776":0,"36777":0,"36778":0,"36779":1,"36780":0,"36781":0,"36782":0,"36783":1,"36784":0,"36785":0,"36786":1,"36787":0,"36788":1,"36789":0,"36790":0,"36791":0,"36792":1,"36793":0,"36794":0,"36795":0,"36796":0,"36797":0,"36798":0,"36799":0,"36800":1,"36801":0,"36802":0,"36803":0,"36804":1,"36805":0,"36806":0,"36807":1,"36808":0,"36809":0,"36810":0,"36811":0,"36812":0,"36813":0,"36814":0,"36815":0,"36816":0,"36817":0,"36818":0,"36819":1,"36820":1,"36821":0,"36822":0,"36823":0,"36824":0,"36825":0,"36826":0,"36827":0,"36828":0,"36829":0,"36830":0,"36831":0,"36832":0,"36833":0,"36834":0,"36835":0,"36836":0,"36837":0,"36838":0,"36839":0,"36840":0,"36841":0,"36842":0,"36843":0,"36844":0,"36845":1,"36846":0,"36847":0,"36848":0,"36849":1,"36850":0,"36851":0,"36852":0,"36853":0,"36854":1,"36855":1,"36856":0,"36857":1,"36858":0,"36859":1,"36860":0,"36861":0,"36862":0,"36863":0,"36864":0,"36865":0,"36866":1,"36867":0,"36868":0,"36869":0,"36870":0,"36871":0,"36872":0,"36873":1,"36874":1,"36875":0,"36876":1,"36877":0,"36878":0,"36879":1,"36880":1,"36881":0,"36882":0,"36883":0,"36884":0,"36885":1,"36886":0,"36887":0,"36888":0,"36889":0,"36890":0,"36891":0,"36892":0,"36893":0,"36894":0,"36895":0,"36896":0,"36897":0,"36898":1,"36899":0,"36900":0,"36901":1,"36902":1,"36903":1,"36904":1,"36905":0,"36906":0,"36907":1,"36908":1,"36909":0,"36910":0,"36911":0,"36912":0,"36913":0,"36914":0,"36915":1,"36916":0,"36917":0,"36918":1,"36919":0,"36920":1,"36921":0,"36922":0,"36923":0,"36924":0,"36925":0,"36926":1,"36927":1,"36928":1,"36929":0,"36930":0,"36931":0,"36932":1,"36933":1,"36934":1,"36935":0,"36936":1,"36937":0,"36938":1,"36939":0,"36940":0,"36941":0,"36942":0,"36943":0,"36944":0,"36945":0,"36946":0,"36947":1,"36948":1,"36949":0,"36950":0,"36951":0,"36952":0,"36953":1,"36954":0,"36955":0,"36956":1,"36957":0,"36958":0,"36959":0,"36960":0,"36961":0,"36962":0,"36963":1,"36964":0,"36965":0,"36966":0,"36967":0,"36968":0,"36969":1,"36970":0,"36971":1,"36972":0,"36973":0,"36974":0,"36975":0,"36976":0,"36977":1,"36978":1,"36979":1,"36980":0,"36981":0,"36982":1,"36983":0,"36984":1,"36985":0,"36986":0,"36987":1,"36988":1,"36989":0,"36990":0,"36991":0,"36992":0,"36993":0,"36994":0,"36995":0,"36996":1,"36997":0,"36998":0,"36999":0,"37000":0,"37001":0,"37002":0,"37003":0,"37004":0,"37005":0,"37006":0,"37007":0,"37008":0,"37009":0,"37010":0,"37011":1,"37012":0,"37013":0,"37014":0,"37015":0,"37016":0,"37017":0,"37018":0,"37019":1,"37020":1,"37021":0,"37022":0,"37023":0,"37024":1,"37025":1,"37026":0,"37027":0,"37028":0,"37029":0,"37030":1,"37031":0,"37032":0,"37033":1,"37034":1,"37035":0,"37036":0,"37037":0,"37038":0,"37039":0,"37040":1,"37041":1,"37042":0,"37043":1,"37044":1,"37045":1,"37046":1,"37047":0,"37048":0,"37049":0,"37050":1,"37051":0,"37052":0,"37053":0,"37054":1,"37055":0,"37056":0,"37057":0,"37058":0,"37059":0,"37060":0,"37061":0,"37062":0,"37063":0,"37064":0,"37065":1,"37066":0,"37067":0,"37068":0,"37069":0,"37070":0,"37071":0,"37072":0,"37073":0,"37074":0,"37075":0,"37076":1,"37077":0,"37078":1,"37079":0,"37080":0,"37081":1,"37082":0,"37083":0,"37084":0,"37085":1,"37086":1,"37087":1,"37088":0,"37089":0,"37090":1,"37091":0,"37092":0,"37093":1,"37094":0,"37095":0,"37096":0,"37097":0,"37098":0,"37099":0,"37100":0,"37101":0,"37102":0,"37103":0,"37104":0,"37105":0,"37106":0,"37107":0,"37108":0,"37109":0,"37110":0,"37111":0,"37112":1,"37113":0,"37114":1,"37115":0,"37116":0,"37117":0,"37118":0,"37119":0,"37120":0,"37121":0,"37122":1,"37123":0,"37124":1,"37125":0,"37126":0,"37127":1,"37128":0,"37129":0,"37130":1,"37131":0,"37132":0,"37133":1,"37134":1,"37135":0,"37136":0,"37137":0,"37138":0,"37139":0,"37140":1,"37141":0,"37142":0,"37143":0,"37144":0,"37145":0,"37146":0,"37147":1,"37148":0,"37149":0,"37150":1,"37151":0,"37152":0,"37153":0,"37154":0,"37155":1,"37156":0,"37157":0,"37158":0,"37159":0,"37160":0,"37161":0,"37162":0,"37163":1,"37164":0,"37165":0,"37166":1,"37167":0,"37168":1,"37169":0,"37170":0,"37171":1,"37172":0,"37173":0,"37174":0,"37175":0,"37176":1,"37177":1,"37178":0,"37179":0,"37180":1,"37181":0,"37182":0,"37183":1,"37184":0,"37185":0,"37186":0,"37187":0,"37188":0,"37189":0,"37190":0,"37191":0,"37192":0,"37193":1,"37194":0,"37195":0,"37196":0,"37197":1,"37198":0,"37199":0,"37200":0,"37201":0,"37202":1,"37203":0,"37204":0,"37205":0,"37206":0,"37207":0,"37208":0,"37209":0,"37210":1,"37211":0,"37212":0,"37213":1,"37214":0,"37215":0,"37216":0,"37217":0,"37218":1,"37219":0,"37220":1,"37221":0,"37222":0,"37223":0,"37224":0,"37225":0,"37226":0,"37227":0,"37228":0,"37229":0,"37230":0,"37231":0,"37232":0,"37233":0,"37234":0,"37235":1,"37236":0,"37237":0,"37238":0,"37239":0,"37240":0,"37241":0,"37242":0,"37243":0,"37244":0,"37245":0,"37246":0,"37247":1,"37248":0,"37249":0,"37250":0,"37251":1,"37252":0,"37253":0,"37254":1,"37255":0,"37256":0,"37257":1,"37258":0,"37259":1,"37260":0,"37261":0,"37262":0,"37263":1,"37264":0,"37265":1,"37266":0,"37267":0,"37268":1,"37269":0,"37270":0,"37271":0,"37272":0,"37273":0,"37274":1,"37275":0,"37276":0,"37277":0,"37278":1,"37279":0,"37280":0,"37281":0,"37282":1,"37283":0,"37284":0,"37285":1,"37286":1,"37287":0,"37288":1,"37289":1,"37290":0,"37291":0,"37292":1,"37293":0,"37294":0,"37295":0,"37296":0,"37297":0,"37298":0,"37299":0,"37300":0,"37301":0,"37302":0,"37303":0,"37304":0,"37305":0,"37306":0,"37307":0,"37308":0,"37309":0,"37310":0,"37311":0,"37312":0,"37313":1,"37314":1,"37315":0,"37316":0,"37317":0,"37318":0,"37319":1,"37320":0,"37321":0,"37322":0,"37323":0,"37324":1,"37325":1,"37326":0,"37327":1,"37328":0,"37329":0,"37330":0,"37331":0,"37332":1,"37333":0,"37334":1,"37335":0,"37336":0,"37337":0,"37338":0,"37339":0,"37340":0,"37341":0,"37342":0,"37343":0,"37344":0,"37345":0,"37346":0,"37347":1,"37348":0,"37349":0,"37350":0,"37351":0,"37352":0,"37353":0,"37354":1,"37355":0,"37356":1,"37357":0,"37358":0,"37359":1,"37360":0,"37361":0,"37362":1,"37363":0,"37364":1,"37365":1,"37366":0,"37367":0,"37368":0,"37369":0,"37370":0,"37371":1,"37372":0,"37373":0,"37374":0,"37375":0,"37376":0,"37377":1,"37378":0,"37379":0,"37380":1,"37381":1,"37382":0,"37383":0,"37384":1,"37385":0,"37386":0,"37387":0,"37388":0,"37389":0,"37390":0,"37391":0,"37392":1,"37393":0,"37394":0,"37395":0,"37396":0,"37397":0,"37398":0,"37399":1,"37400":0,"37401":0,"37402":0,"37403":0,"37404":1,"37405":0,"37406":0,"37407":1,"37408":0,"37409":0,"37410":1,"37411":0,"37412":0,"37413":1,"37414":0,"37415":1,"37416":0,"37417":0,"37418":0,"37419":1,"37420":0,"37421":0,"37422":1,"37423":0,"37424":0,"37425":0,"37426":1,"37427":0,"37428":0,"37429":0,"37430":0,"37431":1,"37432":0,"37433":0,"37434":0,"37435":0,"37436":0,"37437":0,"37438":0,"37439":0,"37440":0,"37441":1,"37442":1,"37443":0,"37444":0,"37445":0,"37446":0,"37447":0,"37448":0,"37449":0,"37450":0,"37451":0,"37452":0,"37453":0,"37454":0,"37455":1,"37456":1,"37457":1,"37458":0,"37459":0,"37460":0,"37461":1,"37462":0,"37463":1,"37464":1,"37465":0,"37466":1,"37467":0,"37468":0,"37469":0,"37470":0,"37471":0,"37472":1,"37473":0,"37474":0,"37475":1,"37476":0,"37477":0,"37478":0,"37479":0,"37480":1,"37481":0,"37482":0,"37483":1,"37484":0,"37485":0,"37486":0,"37487":0,"37488":0,"37489":1,"37490":1,"37491":1,"37492":0,"37493":1,"37494":1,"37495":1,"37496":0,"37497":0,"37498":0,"37499":0,"37500":1,"37501":0,"37502":0,"37503":0,"37504":1,"37505":1,"37506":0,"37507":1,"37508":0,"37509":0,"37510":0,"37511":0,"37512":0,"37513":1,"37514":0,"37515":0,"37516":0,"37517":0,"37518":0,"37519":0,"37520":0,"37521":0,"37522":1,"37523":0,"37524":1,"37525":0,"37526":0,"37527":0,"37528":1,"37529":1,"37530":0,"37531":1,"37532":0,"37533":0,"37534":0,"37535":0,"37536":1,"37537":0,"37538":0,"37539":1,"37540":1,"37541":0,"37542":0,"37543":0,"37544":0,"37545":0,"37546":1,"37547":1,"37548":0,"37549":0,"37550":1,"37551":0,"37552":0,"37553":1,"37554":0,"37555":0,"37556":1,"37557":0,"37558":0,"37559":0,"37560":0,"37561":0,"37562":0,"37563":0,"37564":1,"37565":1,"37566":1,"37567":0,"37568":0,"37569":0,"37570":1,"37571":1,"37572":0,"37573":0,"37574":0,"37575":1,"37576":0,"37577":0,"37578":1,"37579":1,"37580":0,"37581":0,"37582":0,"37583":0,"37584":0,"37585":1,"37586":0,"37587":1,"37588":0,"37589":0,"37590":0,"37591":1,"37592":0,"37593":1,"37594":0,"37595":1,"37596":0,"37597":1,"37598":0,"37599":0,"37600":1,"37601":0,"37602":0,"37603":0,"37604":0,"37605":1,"37606":0,"37607":0,"37608":1,"37609":1,"37610":1,"37611":1,"37612":1,"37613":0,"37614":0,"37615":0,"37616":0,"37617":0,"37618":0,"37619":1,"37620":0,"37621":0,"37622":1,"37623":0,"37624":0,"37625":0,"37626":1,"37627":1,"37628":0,"37629":0,"37630":0,"37631":0,"37632":0,"37633":0,"37634":1,"37635":0,"37636":0,"37637":0,"37638":1,"37639":1,"37640":1,"37641":0,"37642":0,"37643":0,"37644":1,"37645":1,"37646":0,"37647":0,"37648":0,"37649":0,"37650":0,"37651":1,"37652":0,"37653":0,"37654":1,"37655":0,"37656":0,"37657":0,"37658":0,"37659":0,"37660":0,"37661":0,"37662":0,"37663":0,"37664":0,"37665":0,"37666":1,"37667":0,"37668":0,"37669":0,"37670":0,"37671":0,"37672":0,"37673":1,"37674":0,"37675":0,"37676":0,"37677":0,"37678":0,"37679":0,"37680":0,"37681":1,"37682":0,"37683":0,"37684":0,"37685":0,"37686":0,"37687":0,"37688":0,"37689":1,"37690":0,"37691":0,"37692":0,"37693":0,"37694":0,"37695":1,"37696":0,"37697":1,"37698":0,"37699":1,"37700":0,"37701":0,"37702":0,"37703":0,"37704":1,"37705":1,"37706":0,"37707":0,"37708":0,"37709":1,"37710":0,"37711":0,"37712":0,"37713":0,"37714":0,"37715":0,"37716":0,"37717":0,"37718":0,"37719":0,"37720":0,"37721":0,"37722":1,"37723":0,"37724":0,"37725":0,"37726":0,"37727":0,"37728":0,"37729":0,"37730":0,"37731":1,"37732":0,"37733":0,"37734":1,"37735":0,"37736":1,"37737":0,"37738":1,"37739":0,"37740":1,"37741":0,"37742":1,"37743":0,"37744":0,"37745":1,"37746":0,"37747":0,"37748":0,"37749":0,"37750":0,"37751":0,"37752":0,"37753":1,"37754":0,"37755":0,"37756":0,"37757":1,"37758":0,"37759":0,"37760":1,"37761":1,"37762":0,"37763":0,"37764":0,"37765":0,"37766":0,"37767":0,"37768":1,"37769":0,"37770":0,"37771":1,"37772":0,"37773":0,"37774":1,"37775":0,"37776":0,"37777":0,"37778":0,"37779":1,"37780":0,"37781":0,"37782":0,"37783":1,"37784":0,"37785":0,"37786":0,"37787":0,"37788":0,"37789":1,"37790":0,"37791":1,"37792":0,"37793":0,"37794":0,"37795":0,"37796":0,"37797":1,"37798":0,"37799":0,"37800":1,"37801":0,"37802":0,"37803":1,"37804":1,"37805":0,"37806":0,"37807":0,"37808":0,"37809":0,"37810":0,"37811":0,"37812":1,"37813":0,"37814":0,"37815":0,"37816":0,"37817":0,"37818":0,"37819":0,"37820":0,"37821":1,"37822":0,"37823":0,"37824":1,"37825":0,"37826":0,"37827":1,"37828":0,"37829":1,"37830":0,"37831":0,"37832":0,"37833":0,"37834":0,"37835":0,"37836":1,"37837":0,"37838":0,"37839":0,"37840":0,"37841":0,"37842":0,"37843":0,"37844":1,"37845":1,"37846":0,"37847":0,"37848":0,"37849":1,"37850":0,"37851":1,"37852":0,"37853":0,"37854":0,"37855":0,"37856":0,"37857":1,"37858":0,"37859":1,"37860":0,"37861":0,"37862":0,"37863":0,"37864":0,"37865":0,"37866":0,"37867":0,"37868":0,"37869":0,"37870":0,"37871":0,"37872":0,"37873":1,"37874":0,"37875":1,"37876":0,"37877":0,"37878":0,"37879":0,"37880":0,"37881":1,"37882":1,"37883":0,"37884":0,"37885":0,"37886":0,"37887":1,"37888":0,"37889":0,"37890":1,"37891":0,"37892":0,"37893":1,"37894":0,"37895":0,"37896":0,"37897":1,"37898":1,"37899":0,"37900":0,"37901":0,"37902":1,"37903":0,"37904":0,"37905":1,"37906":1,"37907":1,"37908":1,"37909":1,"37910":1,"37911":1,"37912":1,"37913":0,"37914":0,"37915":0,"37916":0,"37917":0,"37918":0,"37919":0,"37920":1,"37921":0,"37922":1,"37923":0,"37924":0,"37925":0,"37926":1,"37927":1,"37928":0,"37929":0,"37930":0,"37931":0,"37932":0,"37933":0,"37934":1,"37935":0,"37936":0,"37937":0,"37938":0,"37939":0,"37940":1,"37941":1,"37942":0,"37943":0,"37944":1,"37945":1,"37946":0,"37947":0,"37948":0,"37949":0,"37950":1,"37951":0,"37952":1,"37953":1,"37954":0,"37955":1,"37956":0,"37957":0,"37958":0,"37959":0,"37960":1,"37961":0,"37962":0,"37963":0,"37964":1,"37965":0,"37966":0,"37967":0,"37968":1,"37969":1,"37970":0,"37971":0,"37972":0,"37973":0,"37974":1,"37975":0,"37976":1,"37977":1,"37978":0,"37979":0,"37980":0,"37981":0,"37982":1,"37983":0,"37984":0,"37985":0,"37986":1,"37987":1,"37988":0,"37989":1,"37990":1,"37991":0,"37992":0,"37993":0,"37994":1,"37995":0,"37996":0,"37997":0,"37998":0,"37999":0,"38000":0,"38001":0,"38002":1,"38003":0,"38004":0,"38005":1,"38006":0,"38007":0,"38008":0,"38009":0,"38010":0,"38011":0,"38012":1,"38013":1,"38014":1,"38015":0,"38016":0,"38017":1,"38018":0,"38019":0,"38020":1,"38021":0,"38022":0,"38023":0,"38024":0,"38025":0,"38026":0,"38027":0,"38028":0,"38029":0,"38030":0,"38031":0,"38032":0,"38033":0,"38034":1,"38035":0,"38036":0,"38037":0,"38038":0,"38039":1,"38040":0,"38041":1,"38042":0,"38043":1,"38044":0,"38045":1,"38046":1,"38047":0,"38048":1,"38049":0,"38050":0,"38051":0,"38052":0,"38053":0,"38054":0,"38055":0,"38056":0,"38057":0,"38058":0,"38059":1,"38060":0,"38061":0,"38062":0,"38063":0,"38064":1,"38065":0,"38066":0,"38067":0,"38068":1,"38069":0,"38070":0,"38071":0,"38072":0,"38073":1,"38074":0,"38075":0,"38076":1,"38077":0,"38078":0,"38079":1,"38080":0,"38081":0,"38082":1,"38083":0,"38084":0,"38085":0,"38086":0,"38087":0,"38088":0,"38089":1,"38090":0,"38091":0,"38092":0,"38093":1,"38094":0,"38095":0,"38096":0,"38097":0,"38098":0,"38099":0,"38100":0,"38101":0,"38102":0,"38103":0,"38104":0,"38105":0,"38106":1,"38107":0,"38108":0,"38109":1,"38110":0,"38111":1,"38112":0,"38113":0,"38114":1,"38115":0,"38116":0,"38117":0,"38118":0,"38119":0,"38120":0,"38121":0,"38122":1,"38123":0,"38124":0,"38125":0,"38126":0,"38127":0,"38128":0,"38129":0,"38130":0,"38131":0,"38132":0,"38133":0,"38134":0,"38135":0,"38136":1,"38137":1,"38138":0,"38139":1,"38140":1,"38141":0,"38142":1,"38143":0,"38144":0,"38145":0,"38146":0,"38147":0,"38148":0,"38149":0,"38150":0,"38151":0,"38152":1,"38153":0,"38154":0,"38155":1,"38156":1,"38157":0,"38158":0,"38159":0,"38160":0,"38161":1,"38162":0,"38163":1,"38164":0,"38165":0,"38166":0,"38167":0,"38168":1,"38169":1,"38170":0,"38171":0,"38172":0,"38173":1,"38174":0,"38175":0,"38176":0,"38177":0,"38178":0,"38179":0,"38180":0,"38181":1,"38182":0,"38183":0,"38184":0,"38185":0,"38186":0,"38187":0,"38188":0,"38189":0,"38190":1,"38191":0,"38192":1,"38193":0,"38194":0,"38195":0,"38196":0,"38197":1,"38198":0,"38199":0,"38200":0,"38201":0,"38202":1,"38203":0,"38204":0,"38205":0,"38206":0,"38207":0,"38208":0,"38209":0,"38210":0,"38211":0,"38212":0,"38213":1,"38214":0,"38215":0,"38216":0,"38217":0,"38218":0,"38219":0,"38220":0,"38221":0,"38222":0,"38223":0,"38224":0,"38225":0,"38226":1,"38227":0,"38228":1,"38229":0,"38230":1,"38231":0,"38232":0,"38233":0,"38234":0,"38235":1,"38236":0,"38237":0,"38238":0,"38239":0,"38240":1,"38241":0,"38242":0,"38243":0,"38244":1,"38245":1,"38246":1,"38247":1,"38248":0,"38249":0,"38250":0,"38251":0,"38252":1,"38253":0,"38254":0,"38255":1,"38256":1,"38257":0,"38258":0,"38259":0,"38260":0,"38261":1,"38262":0,"38263":0,"38264":0,"38265":0,"38266":0,"38267":0,"38268":0,"38269":1,"38270":1,"38271":0,"38272":0,"38273":0,"38274":0,"38275":0,"38276":0,"38277":1,"38278":0,"38279":0,"38280":0,"38281":0,"38282":0,"38283":0,"38284":0,"38285":0,"38286":0,"38287":0,"38288":0,"38289":0,"38290":0,"38291":0,"38292":1,"38293":0,"38294":0,"38295":0,"38296":0,"38297":0,"38298":1,"38299":1,"38300":0,"38301":0,"38302":0,"38303":0,"38304":0,"38305":0,"38306":0,"38307":0,"38308":0,"38309":1,"38310":0,"38311":1,"38312":0,"38313":0,"38314":0,"38315":0,"38316":0,"38317":1,"38318":0,"38319":0,"38320":0,"38321":0,"38322":1,"38323":0,"38324":0,"38325":1,"38326":0,"38327":0,"38328":1,"38329":1,"38330":0,"38331":1,"38332":0,"38333":0,"38334":1,"38335":0,"38336":0,"38337":0,"38338":0,"38339":0,"38340":1,"38341":0,"38342":0,"38343":1,"38344":0,"38345":0,"38346":0,"38347":0,"38348":1,"38349":0,"38350":0,"38351":0,"38352":0,"38353":0,"38354":0,"38355":0,"38356":0,"38357":0,"38358":0,"38359":0,"38360":1,"38361":0,"38362":1,"38363":1,"38364":0,"38365":1,"38366":1,"38367":0,"38368":1,"38369":1,"38370":0,"38371":0,"38372":0,"38373":0,"38374":0,"38375":0,"38376":1,"38377":0,"38378":1,"38379":0,"38380":0,"38381":0,"38382":1,"38383":1,"38384":0,"38385":1,"38386":0,"38387":1,"38388":0,"38389":0,"38390":0,"38391":1,"38392":0,"38393":0,"38394":0,"38395":0,"38396":0,"38397":1,"38398":1,"38399":0,"38400":0,"38401":1,"38402":0,"38403":1,"38404":0,"38405":1,"38406":0,"38407":0,"38408":0,"38409":0,"38410":0,"38411":0,"38412":1,"38413":0,"38414":0,"38415":0,"38416":1,"38417":0,"38418":0,"38419":1,"38420":0,"38421":0,"38422":1,"38423":0,"38424":1,"38425":0,"38426":0,"38427":0,"38428":0,"38429":0,"38430":0,"38431":0,"38432":0,"38433":0,"38434":0,"38435":0,"38436":0,"38437":0,"38438":0,"38439":0,"38440":0,"38441":0,"38442":0,"38443":1,"38444":0,"38445":0,"38446":0,"38447":0,"38448":0,"38449":1,"38450":0,"38451":1,"38452":0,"38453":0,"38454":0,"38455":1,"38456":1,"38457":0,"38458":0,"38459":0,"38460":0,"38461":0,"38462":0,"38463":0,"38464":1,"38465":0,"38466":0,"38467":0,"38468":0,"38469":1,"38470":1,"38471":0,"38472":0,"38473":0,"38474":1,"38475":0,"38476":0,"38477":0,"38478":1,"38479":0,"38480":0,"38481":0,"38482":0,"38483":1,"38484":1,"38485":0,"38486":0,"38487":0,"38488":0,"38489":0,"38490":0,"38491":0,"38492":0,"38493":0,"38494":1,"38495":1,"38496":0,"38497":0,"38498":0,"38499":0,"38500":0,"38501":0,"38502":0,"38503":1,"38504":1,"38505":0,"38506":1,"38507":0,"38508":0,"38509":0,"38510":0,"38511":0,"38512":0,"38513":0,"38514":0,"38515":0,"38516":0,"38517":1,"38518":0,"38519":0,"38520":0,"38521":0,"38522":0,"38523":0,"38524":0,"38525":0,"38526":1,"38527":0,"38528":0,"38529":1,"38530":1,"38531":0,"38532":1,"38533":1,"38534":0,"38535":1,"38536":1,"38537":0,"38538":0,"38539":0,"38540":1,"38541":0,"38542":1,"38543":0,"38544":0,"38545":0,"38546":0,"38547":0,"38548":0,"38549":1,"38550":0,"38551":1,"38552":0,"38553":0,"38554":0,"38555":0,"38556":1,"38557":1,"38558":0,"38559":1,"38560":0,"38561":0,"38562":0,"38563":1,"38564":0,"38565":0,"38566":0,"38567":0,"38568":0,"38569":0,"38570":1,"38571":0,"38572":0,"38573":0,"38574":0,"38575":0,"38576":1,"38577":1,"38578":0,"38579":0,"38580":1,"38581":0,"38582":1,"38583":0,"38584":1,"38585":0,"38586":1,"38587":0,"38588":0,"38589":0,"38590":0,"38591":0,"38592":0,"38593":0,"38594":0,"38595":1,"38596":0,"38597":0,"38598":1,"38599":0,"38600":0,"38601":0,"38602":1,"38603":0,"38604":0,"38605":0,"38606":0,"38607":0,"38608":0,"38609":0,"38610":1,"38611":0,"38612":0,"38613":0,"38614":0,"38615":1,"38616":0,"38617":0,"38618":0,"38619":0,"38620":0,"38621":0,"38622":0,"38623":1,"38624":0,"38625":1,"38626":0,"38627":1,"38628":1,"38629":0,"38630":1,"38631":0,"38632":1,"38633":1,"38634":0,"38635":0,"38636":0,"38637":0,"38638":0,"38639":1,"38640":0,"38641":0,"38642":1,"38643":1,"38644":1,"38645":0,"38646":1,"38647":1,"38648":0,"38649":0,"38650":0,"38651":1,"38652":0,"38653":0,"38654":0,"38655":0,"38656":0,"38657":0,"38658":0,"38659":0,"38660":0,"38661":1,"38662":0,"38663":0,"38664":1,"38665":0,"38666":0,"38667":0,"38668":1,"38669":0,"38670":0,"38671":0,"38672":0,"38673":1,"38674":0,"38675":0,"38676":0,"38677":0,"38678":0,"38679":0,"38680":0,"38681":0,"38682":0,"38683":1,"38684":0,"38685":0,"38686":0,"38687":0,"38688":0,"38689":0,"38690":0,"38691":0,"38692":0,"38693":0,"38694":0,"38695":0,"38696":0,"38697":0,"38698":0,"38699":0,"38700":0,"38701":0,"38702":0,"38703":0,"38704":0,"38705":1,"38706":0,"38707":0,"38708":0,"38709":1,"38710":1,"38711":1,"38712":0,"38713":1,"38714":0,"38715":1,"38716":0,"38717":0,"38718":1,"38719":0,"38720":0,"38721":1,"38722":0,"38723":0,"38724":0,"38725":0,"38726":1,"38727":0,"38728":0,"38729":0,"38730":0,"38731":1,"38732":0,"38733":0,"38734":0,"38735":1,"38736":0,"38737":0,"38738":0,"38739":0,"38740":0,"38741":0,"38742":0,"38743":0,"38744":0,"38745":0,"38746":0,"38747":0,"38748":1,"38749":1,"38750":0,"38751":0,"38752":0,"38753":0,"38754":0,"38755":0,"38756":0,"38757":1,"38758":0,"38759":0,"38760":0,"38761":0,"38762":0,"38763":0,"38764":1,"38765":0,"38766":0,"38767":0,"38768":0,"38769":0,"38770":0,"38771":1,"38772":0,"38773":0,"38774":0,"38775":0,"38776":0,"38777":0,"38778":1,"38779":0,"38780":1,"38781":0,"38782":1,"38783":0,"38784":1,"38785":0,"38786":0,"38787":0,"38788":1,"38789":0,"38790":0,"38791":0,"38792":0,"38793":0,"38794":0,"38795":0,"38796":0,"38797":1,"38798":0,"38799":1,"38800":0,"38801":0,"38802":1,"38803":0,"38804":1,"38805":0,"38806":0,"38807":1,"38808":0,"38809":1,"38810":1,"38811":0,"38812":0,"38813":0,"38814":1,"38815":0,"38816":1,"38817":0,"38818":0,"38819":0,"38820":1,"38821":1,"38822":1,"38823":1,"38824":1,"38825":0,"38826":1,"38827":0,"38828":0,"38829":1,"38830":1,"38831":0,"38832":0,"38833":1,"38834":0,"38835":0,"38836":0,"38837":1,"38838":0,"38839":0,"38840":0,"38841":0,"38842":0,"38843":1,"38844":1,"38845":0,"38846":0,"38847":0,"38848":0,"38849":0,"38850":0,"38851":0,"38852":1,"38853":0,"38854":0,"38855":0,"38856":1,"38857":0,"38858":0,"38859":0,"38860":0,"38861":0,"38862":0,"38863":0,"38864":1,"38865":0,"38866":0,"38867":0,"38868":0,"38869":0,"38870":0,"38871":0,"38872":1,"38873":0,"38874":0,"38875":1,"38876":1,"38877":0,"38878":0,"38879":0,"38880":0,"38881":0,"38882":1,"38883":0,"38884":0,"38885":1,"38886":0,"38887":1,"38888":0,"38889":0,"38890":0,"38891":0,"38892":0,"38893":0,"38894":1,"38895":0,"38896":0,"38897":1,"38898":1,"38899":1,"38900":1,"38901":0,"38902":1,"38903":1,"38904":0,"38905":1,"38906":0,"38907":1,"38908":0,"38909":0,"38910":0,"38911":0,"38912":1,"38913":0,"38914":0,"38915":0,"38916":0,"38917":0,"38918":0,"38919":0,"38920":1,"38921":0,"38922":1,"38923":1,"38924":1,"38925":0,"38926":0,"38927":0,"38928":0,"38929":1,"38930":1,"38931":0,"38932":0,"38933":1,"38934":0,"38935":0,"38936":0,"38937":0,"38938":0,"38939":1,"38940":0,"38941":0,"38942":0,"38943":0,"38944":1,"38945":1,"38946":0,"38947":0,"38948":1,"38949":0,"38950":1,"38951":0,"38952":1,"38953":0,"38954":1,"38955":0,"38956":0,"38957":0,"38958":1,"38959":0,"38960":0,"38961":0,"38962":0,"38963":0,"38964":0,"38965":0,"38966":1,"38967":0,"38968":0,"38969":0,"38970":0,"38971":0,"38972":0,"38973":0,"38974":0,"38975":1,"38976":0,"38977":0,"38978":0,"38979":0,"38980":0,"38981":1,"38982":0,"38983":1,"38984":1,"38985":0,"38986":0,"38987":0,"38988":0,"38989":0,"38990":0,"38991":1,"38992":0,"38993":0,"38994":0,"38995":1,"38996":0,"38997":1,"38998":0,"38999":1,"39000":0,"39001":0,"39002":0,"39003":0,"39004":0,"39005":0,"39006":0,"39007":0,"39008":0,"39009":0,"39010":0,"39011":0,"39012":0,"39013":1,"39014":0,"39015":0,"39016":0,"39017":0,"39018":0,"39019":0,"39020":1,"39021":0,"39022":0,"39023":1,"39024":0,"39025":0,"39026":0,"39027":0,"39028":0,"39029":1,"39030":0,"39031":0,"39032":1,"39033":1,"39034":0,"39035":0,"39036":1,"39037":0,"39038":1,"39039":0,"39040":0,"39041":0,"39042":1,"39043":0,"39044":1,"39045":0,"39046":0,"39047":0,"39048":0,"39049":1,"39050":1,"39051":0,"39052":1,"39053":0,"39054":0,"39055":0,"39056":0,"39057":0,"39058":1,"39059":0,"39060":0,"39061":1,"39062":0,"39063":0,"39064":1,"39065":1,"39066":1,"39067":1,"39068":0,"39069":0,"39070":0,"39071":1,"39072":0,"39073":0,"39074":0,"39075":0,"39076":0,"39077":0,"39078":1,"39079":0,"39080":0,"39081":1,"39082":1,"39083":1,"39084":0,"39085":1,"39086":1,"39087":0,"39088":0,"39089":0,"39090":1,"39091":0,"39092":1,"39093":1,"39094":0,"39095":0,"39096":0,"39097":0,"39098":0,"39099":0,"39100":0,"39101":1,"39102":0,"39103":0,"39104":0,"39105":1,"39106":1,"39107":0,"39108":1,"39109":0,"39110":1,"39111":1,"39112":0,"39113":0,"39114":0,"39115":0,"39116":1,"39117":0,"39118":0,"39119":0,"39120":1,"39121":0,"39122":0,"39123":0,"39124":0,"39125":0,"39126":0,"39127":0,"39128":0,"39129":0,"39130":0,"39131":0,"39132":0,"39133":0,"39134":0,"39135":1,"39136":1,"39137":1,"39138":0,"39139":0,"39140":0,"39141":0,"39142":0,"39143":0,"39144":0,"39145":1,"39146":0,"39147":0,"39148":0,"39149":0,"39150":1,"39151":0,"39152":0,"39153":1,"39154":0,"39155":0,"39156":0,"39157":0,"39158":0,"39159":1,"39160":1,"39161":0,"39162":1,"39163":1,"39164":0,"39165":0,"39166":1,"39167":0,"39168":1,"39169":0,"39170":1,"39171":1,"39172":0,"39173":0,"39174":1,"39175":0,"39176":0,"39177":0,"39178":1,"39179":0,"39180":0,"39181":1,"39182":0,"39183":0,"39184":1,"39185":0,"39186":0,"39187":0,"39188":0,"39189":1,"39190":1,"39191":0,"39192":0,"39193":1,"39194":0,"39195":1,"39196":0,"39197":1,"39198":1,"39199":0,"39200":0,"39201":0,"39202":0,"39203":1,"39204":0,"39205":0,"39206":1,"39207":0,"39208":0,"39209":0,"39210":0,"39211":1,"39212":1,"39213":0,"39214":0,"39215":1,"39216":0,"39217":1,"39218":1,"39219":0,"39220":0,"39221":1,"39222":0,"39223":0,"39224":0,"39225":0,"39226":0,"39227":0,"39228":1,"39229":0,"39230":0,"39231":1,"39232":0,"39233":0,"39234":0,"39235":1,"39236":1,"39237":1,"39238":0,"39239":1,"39240":0,"39241":0,"39242":0,"39243":1,"39244":0,"39245":1,"39246":0,"39247":1,"39248":0,"39249":0,"39250":0,"39251":1,"39252":1,"39253":1,"39254":0,"39255":1,"39256":1,"39257":0,"39258":0,"39259":0,"39260":0,"39261":0,"39262":0,"39263":1,"39264":0,"39265":0,"39266":1,"39267":0,"39268":0,"39269":0,"39270":1,"39271":0,"39272":0,"39273":0,"39274":0,"39275":0,"39276":0,"39277":0,"39278":0,"39279":1,"39280":0,"39281":0,"39282":0,"39283":0,"39284":1,"39285":0,"39286":0,"39287":0,"39288":0,"39289":0,"39290":0,"39291":1,"39292":0,"39293":1,"39294":0,"39295":0,"39296":0,"39297":0,"39298":0,"39299":1,"39300":0,"39301":0,"39302":1,"39303":0,"39304":1,"39305":0,"39306":0,"39307":0,"39308":0,"39309":0,"39310":0,"39311":1,"39312":0,"39313":0,"39314":0,"39315":0,"39316":0,"39317":0,"39318":0,"39319":0,"39320":0,"39321":0,"39322":0,"39323":0,"39324":0,"39325":0,"39326":0,"39327":0,"39328":1,"39329":0,"39330":0,"39331":0,"39332":1,"39333":0,"39334":0,"39335":1,"39336":1,"39337":1,"39338":1,"39339":1,"39340":0,"39341":0,"39342":0,"39343":0,"39344":0,"39345":0,"39346":1,"39347":0,"39348":0,"39349":0,"39350":0,"39351":0,"39352":1,"39353":1,"39354":0,"39355":1,"39356":0,"39357":0,"39358":0,"39359":1,"39360":1,"39361":0,"39362":0,"39363":0,"39364":0,"39365":1,"39366":0,"39367":0,"39368":1,"39369":0,"39370":0,"39371":0,"39372":0,"39373":1,"39374":0,"39375":0,"39376":1,"39377":0,"39378":1,"39379":0,"39380":0,"39381":0,"39382":0,"39383":0,"39384":0,"39385":0,"39386":0,"39387":0,"39388":1,"39389":0,"39390":1,"39391":0,"39392":0,"39393":0,"39394":0,"39395":0,"39396":0,"39397":1,"39398":0,"39399":1,"39400":1,"39401":0,"39402":1,"39403":0,"39404":0,"39405":0,"39406":0,"39407":0,"39408":0,"39409":0,"39410":1,"39411":1,"39412":1,"39413":0,"39414":0,"39415":0,"39416":0,"39417":0,"39418":0,"39419":0,"39420":0,"39421":0,"39422":1,"39423":0,"39424":0,"39425":0,"39426":1,"39427":1,"39428":0,"39429":0,"39430":0,"39431":0,"39432":0,"39433":0,"39434":0,"39435":0,"39436":0,"39437":0,"39438":0,"39439":0,"39440":0,"39441":1,"39442":0,"39443":0,"39444":1,"39445":0,"39446":0,"39447":1,"39448":0,"39449":0,"39450":0,"39451":0,"39452":0,"39453":0,"39454":0,"39455":0,"39456":1,"39457":0,"39458":1,"39459":0,"39460":0,"39461":0,"39462":1,"39463":1,"39464":0,"39465":1,"39466":0,"39467":0,"39468":1,"39469":1,"39470":0,"39471":1,"39472":0,"39473":0,"39474":0,"39475":0,"39476":1,"39477":0,"39478":1,"39479":0,"39480":1,"39481":0,"39482":0,"39483":0,"39484":1,"39485":0,"39486":0,"39487":0,"39488":0,"39489":0,"39490":0,"39491":1,"39492":0,"39493":0,"39494":0,"39495":1,"39496":0,"39497":0,"39498":0,"39499":0,"39500":1,"39501":0,"39502":1,"39503":1,"39504":0,"39505":0,"39506":0,"39507":0,"39508":0,"39509":0,"39510":0,"39511":0,"39512":0,"39513":1,"39514":0,"39515":0,"39516":1,"39517":1,"39518":0,"39519":0,"39520":0,"39521":1,"39522":0,"39523":0,"39524":0,"39525":0,"39526":0,"39527":0,"39528":0,"39529":1,"39530":0,"39531":0,"39532":0,"39533":0,"39534":0,"39535":0,"39536":0,"39537":0,"39538":0,"39539":0,"39540":0,"39541":0,"39542":0,"39543":0,"39544":0,"39545":1,"39546":0,"39547":0,"39548":0,"39549":0,"39550":0,"39551":0,"39552":1,"39553":0,"39554":0,"39555":0,"39556":1,"39557":1,"39558":0,"39559":0,"39560":1,"39561":1,"39562":0,"39563":0,"39564":0,"39565":0,"39566":0,"39567":0,"39568":0,"39569":0,"39570":1,"39571":0,"39572":0,"39573":0,"39574":0,"39575":1,"39576":0,"39577":0,"39578":0,"39579":0,"39580":0,"39581":0,"39582":1,"39583":1,"39584":0,"39585":0,"39586":1,"39587":0,"39588":1,"39589":0,"39590":0,"39591":0,"39592":0,"39593":0,"39594":1,"39595":0,"39596":0,"39597":0,"39598":0,"39599":1,"39600":0,"39601":1,"39602":0,"39603":0,"39604":0,"39605":0,"39606":1,"39607":0,"39608":0,"39609":0,"39610":1,"39611":1,"39612":1,"39613":0,"39614":0,"39615":0,"39616":1,"39617":0,"39618":0,"39619":1,"39620":0,"39621":0,"39622":1,"39623":0,"39624":0,"39625":0,"39626":0,"39627":0,"39628":0,"39629":0,"39630":0,"39631":0,"39632":0,"39633":1,"39634":0,"39635":0,"39636":0,"39637":1,"39638":0,"39639":1,"39640":0,"39641":0,"39642":0,"39643":0,"39644":0,"39645":1,"39646":0,"39647":0,"39648":0,"39649":0,"39650":1,"39651":1,"39652":1,"39653":0,"39654":1,"39655":1,"39656":0,"39657":0,"39658":0,"39659":0,"39660":1,"39661":0,"39662":0,"39663":0,"39664":0,"39665":0,"39666":0,"39667":1,"39668":0,"39669":0,"39670":0,"39671":0,"39672":0,"39673":1,"39674":0,"39675":0,"39676":1,"39677":0,"39678":0,"39679":1,"39680":0,"39681":0,"39682":0,"39683":0,"39684":0,"39685":1,"39686":1,"39687":0,"39688":0,"39689":0,"39690":0,"39691":0,"39692":0,"39693":1,"39694":0,"39695":0,"39696":0,"39697":0,"39698":0,"39699":0,"39700":0,"39701":0,"39702":1,"39703":0,"39704":0,"39705":0,"39706":1,"39707":0,"39708":0,"39709":1,"39710":0,"39711":1,"39712":0,"39713":0,"39714":0,"39715":0,"39716":0,"39717":1,"39718":0,"39719":0,"39720":0,"39721":0,"39722":1,"39723":1,"39724":0,"39725":0,"39726":1,"39727":0,"39728":0,"39729":0,"39730":1,"39731":1,"39732":0,"39733":0,"39734":0,"39735":1,"39736":0,"39737":1,"39738":0,"39739":0,"39740":0,"39741":0,"39742":0,"39743":0,"39744":0,"39745":1,"39746":0,"39747":1,"39748":1,"39749":1,"39750":0,"39751":0,"39752":0,"39753":1,"39754":0,"39755":0,"39756":0,"39757":0,"39758":0,"39759":0,"39760":1,"39761":0,"39762":1,"39763":1,"39764":0,"39765":0,"39766":0,"39767":0,"39768":1,"39769":1,"39770":1,"39771":0,"39772":1,"39773":0,"39774":0,"39775":0,"39776":0,"39777":0,"39778":0,"39779":0,"39780":0,"39781":0,"39782":1,"39783":0,"39784":1,"39785":0,"39786":0,"39787":0,"39788":1,"39789":0,"39790":0,"39791":1,"39792":0,"39793":0,"39794":0,"39795":0,"39796":0,"39797":0,"39798":0,"39799":0,"39800":0,"39801":1,"39802":0,"39803":0,"39804":0,"39805":0,"39806":0,"39807":0,"39808":0,"39809":0,"39810":1,"39811":0,"39812":0,"39813":0,"39814":0,"39815":0,"39816":1,"39817":0,"39818":0,"39819":0,"39820":1,"39821":0,"39822":0,"39823":1,"39824":0,"39825":1,"39826":0,"39827":0,"39828":1,"39829":0,"39830":1,"39831":0,"39832":0,"39833":0,"39834":0,"39835":0,"39836":0,"39837":1,"39838":1,"39839":0,"39840":0,"39841":0,"39842":0,"39843":0,"39844":0,"39845":1,"39846":0,"39847":1,"39848":0,"39849":0,"39850":0,"39851":1,"39852":1,"39853":0,"39854":0,"39855":0,"39856":0,"39857":0,"39858":1,"39859":0,"39860":0,"39861":1,"39862":0,"39863":0,"39864":0,"39865":0,"39866":1,"39867":0,"39868":0,"39869":0,"39870":1,"39871":0,"39872":0,"39873":0,"39874":0,"39875":0,"39876":0,"39877":0,"39878":0,"39879":0,"39880":0,"39881":0,"39882":0,"39883":0,"39884":1,"39885":0,"39886":1,"39887":1,"39888":0,"39889":0,"39890":0,"39891":0,"39892":1,"39893":0,"39894":0,"39895":0,"39896":0,"39897":0,"39898":1,"39899":0,"39900":0,"39901":0,"39902":0,"39903":0,"39904":0,"39905":0,"39906":0,"39907":0,"39908":0,"39909":1,"39910":0,"39911":0,"39912":0,"39913":1,"39914":0,"39915":1,"39916":0,"39917":0,"39918":1,"39919":0,"39920":0,"39921":0,"39922":0,"39923":0,"39924":1,"39925":0,"39926":0,"39927":1,"39928":0,"39929":0,"39930":0,"39931":0,"39932":0,"39933":0,"39934":1,"39935":0,"39936":1,"39937":0,"39938":0,"39939":0,"39940":0,"39941":0,"39942":0,"39943":1,"39944":0,"39945":0,"39946":0,"39947":0,"39948":1,"39949":0,"39950":0,"39951":0,"39952":0,"39953":0,"39954":1,"39955":1,"39956":1,"39957":0,"39958":0,"39959":0,"39960":0,"39961":0,"39962":0,"39963":0,"39964":0,"39965":0,"39966":0,"39967":0,"39968":0,"39969":1,"39970":1,"39971":1,"39972":0,"39973":0,"39974":0,"39975":0,"39976":0,"39977":0,"39978":1,"39979":1,"39980":1,"39981":0,"39982":0,"39983":0,"39984":0,"39985":0,"39986":0,"39987":0,"39988":1,"39989":1,"39990":0,"39991":0,"39992":1,"39993":0,"39994":0,"39995":0,"39996":0,"39997":1,"39998":0,"39999":0,"40000":0,"40001":1,"40002":0,"40003":0,"40004":0,"40005":0,"40006":1,"40007":0,"40008":0,"40009":0,"40010":0,"40011":0,"40012":0,"40013":0,"40014":0,"40015":0,"40016":0,"40017":0,"40018":0,"40019":1,"40020":0,"40021":1,"40022":1,"40023":0,"40024":0,"40025":0,"40026":1,"40027":1,"40028":0,"40029":0,"40030":0,"40031":0,"40032":0,"40033":1,"40034":0,"40035":0,"40036":0,"40037":0,"40038":0,"40039":0,"40040":0,"40041":1,"40042":0,"40043":1,"40044":1,"40045":0,"40046":0,"40047":0,"40048":0,"40049":0,"40050":1,"40051":0,"40052":0,"40053":0,"40054":1,"40055":0,"40056":0,"40057":0,"40058":0,"40059":0,"40060":1,"40061":0,"40062":0,"40063":0,"40064":1,"40065":0,"40066":0,"40067":0,"40068":1,"40069":0,"40070":0,"40071":0,"40072":0,"40073":0,"40074":0,"40075":0,"40076":0,"40077":0,"40078":0,"40079":1,"40080":0,"40081":0,"40082":0,"40083":0,"40084":0,"40085":0,"40086":0,"40087":0,"40088":1,"40089":0,"40090":0,"40091":0,"40092":1,"40093":1,"40094":0,"40095":0,"40096":0,"40097":0,"40098":1,"40099":0,"40100":0,"40101":1,"40102":1,"40103":0,"40104":1,"40105":0,"40106":0,"40107":0,"40108":0,"40109":0,"40110":0,"40111":0,"40112":0,"40113":0,"40114":1,"40115":0,"40116":1,"40117":0,"40118":0,"40119":0,"40120":0,"40121":0,"40122":0,"40123":1,"40124":0,"40125":1,"40126":1,"40127":0,"40128":0,"40129":0,"40130":0,"40131":1,"40132":0,"40133":1,"40134":0,"40135":1,"40136":1,"40137":1,"40138":0,"40139":0,"40140":0,"40141":0,"40142":0,"40143":0,"40144":0,"40145":0,"40146":1,"40147":1,"40148":0,"40149":0,"40150":0,"40151":1,"40152":0,"40153":0,"40154":0,"40155":0,"40156":0,"40157":0,"40158":0,"40159":0,"40160":0,"40161":1,"40162":1,"40163":0,"40164":0,"40165":0,"40166":0,"40167":0,"40168":0,"40169":1,"40170":0,"40171":0,"40172":0,"40173":1,"40174":0,"40175":0,"40176":0,"40177":1,"40178":0,"40179":0,"40180":0,"40181":0,"40182":0,"40183":0,"40184":0,"40185":0,"40186":0,"40187":1,"40188":0,"40189":0,"40190":0,"40191":1,"40192":0,"40193":0,"40194":0,"40195":1,"40196":0,"40197":0,"40198":0,"40199":0,"40200":0,"40201":1,"40202":0,"40203":1,"40204":0,"40205":1,"40206":0,"40207":0,"40208":0,"40209":1,"40210":0,"40211":0,"40212":0,"40213":0,"40214":0,"40215":0,"40216":1,"40217":1,"40218":1,"40219":0,"40220":0,"40221":0,"40222":0,"40223":0,"40224":0,"40225":0,"40226":0,"40227":0,"40228":0,"40229":0,"40230":0,"40231":0,"40232":0,"40233":0,"40234":0,"40235":0,"40236":0,"40237":0,"40238":0,"40239":0,"40240":0,"40241":0,"40242":0,"40243":0,"40244":1,"40245":0,"40246":0,"40247":0,"40248":1,"40249":0,"40250":0,"40251":0,"40252":0,"40253":0,"40254":0,"40255":0,"40256":1,"40257":0,"40258":1,"40259":0,"40260":0,"40261":1,"40262":0,"40263":0,"40264":1,"40265":0,"40266":0,"40267":0,"40268":0,"40269":1,"40270":1,"40271":0,"40272":0,"40273":0,"40274":0,"40275":0,"40276":0,"40277":0,"40278":0,"40279":0,"40280":0,"40281":0,"40282":0,"40283":0,"40284":0,"40285":0,"40286":0,"40287":0,"40288":0,"40289":1,"40290":0,"40291":0,"40292":0,"40293":0,"40294":0,"40295":0,"40296":0,"40297":0,"40298":1,"40299":1,"40300":0,"40301":0,"40302":1,"40303":1,"40304":1,"40305":0,"40306":0,"40307":1,"40308":0,"40309":0,"40310":0,"40311":1,"40312":0,"40313":0,"40314":0,"40315":0,"40316":0,"40317":1,"40318":0,"40319":0,"40320":0,"40321":0,"40322":0,"40323":1,"40324":0,"40325":0,"40326":0,"40327":1,"40328":0,"40329":0,"40330":0,"40331":0,"40332":0,"40333":0,"40334":0,"40335":0,"40336":0,"40337":0,"40338":0,"40339":0,"40340":1,"40341":0,"40342":1,"40343":0,"40344":0,"40345":0,"40346":0,"40347":0,"40348":0,"40349":1,"40350":1,"40351":0,"40352":0,"40353":0,"40354":0,"40355":1,"40356":0,"40357":0,"40358":1,"40359":0,"40360":0,"40361":0,"40362":0,"40363":0,"40364":0,"40365":0,"40366":0,"40367":0,"40368":0,"40369":0,"40370":0,"40371":0,"40372":0,"40373":0,"40374":0,"40375":1,"40376":0,"40377":1,"40378":1,"40379":0,"40380":0,"40381":1,"40382":0,"40383":1,"40384":1,"40385":0,"40386":1,"40387":1,"40388":0,"40389":0,"40390":0,"40391":0,"40392":0,"40393":0,"40394":0,"40395":0,"40396":1,"40397":1,"40398":1,"40399":0,"40400":0,"40401":0,"40402":0,"40403":0,"40404":0,"40405":0,"40406":0,"40407":1,"40408":0,"40409":1,"40410":0,"40411":0,"40412":0,"40413":0,"40414":0,"40415":0,"40416":1,"40417":0,"40418":0,"40419":0,"40420":0,"40421":0,"40422":0,"40423":1,"40424":0,"40425":0,"40426":1,"40427":0,"40428":0,"40429":1,"40430":0,"40431":0,"40432":0,"40433":0,"40434":0,"40435":0,"40436":0,"40437":0,"40438":1,"40439":0,"40440":0,"40441":1,"40442":0,"40443":1,"40444":0,"40445":1,"40446":1,"40447":0,"40448":0,"40449":0,"40450":1,"40451":0,"40452":1,"40453":0,"40454":1,"40455":0,"40456":0,"40457":0,"40458":1,"40459":0,"40460":0,"40461":0,"40462":0,"40463":0,"40464":0,"40465":0,"40466":0,"40467":0,"40468":0,"40469":0,"40470":0,"40471":0,"40472":0,"40473":1,"40474":0,"40475":0,"40476":0,"40477":0,"40478":0,"40479":0,"40480":0,"40481":0,"40482":0,"40483":0,"40484":0,"40485":0,"40486":1,"40487":1,"40488":0,"40489":0,"40490":0,"40491":0,"40492":0,"40493":0,"40494":0,"40495":0,"40496":0,"40497":1,"40498":0,"40499":0,"40500":1,"40501":0,"40502":0,"40503":0,"40504":0,"40505":0,"40506":1,"40507":0,"40508":0,"40509":0,"40510":0,"40511":0,"40512":0,"40513":0,"40514":1,"40515":0,"40516":0,"40517":1,"40518":0,"40519":0,"40520":0,"40521":1,"40522":0,"40523":1,"40524":0,"40525":0,"40526":1,"40527":0,"40528":0,"40529":0,"40530":1,"40531":0,"40532":1,"40533":1,"40534":1,"40535":0,"40536":0,"40537":0,"40538":0,"40539":1,"40540":0,"40541":1,"40542":0,"40543":1,"40544":0,"40545":1,"40546":1,"40547":1,"40548":0,"40549":0,"40550":0,"40551":0,"40552":0,"40553":0,"40554":0,"40555":0,"40556":0,"40557":0,"40558":0,"40559":0,"40560":1,"40561":0,"40562":0,"40563":0,"40564":0,"40565":0,"40566":0,"40567":0,"40568":0,"40569":0,"40570":1,"40571":0,"40572":1,"40573":0,"40574":0,"40575":0,"40576":1,"40577":1,"40578":1,"40579":0,"40580":0,"40581":1,"40582":0,"40583":0,"40584":0,"40585":0,"40586":0,"40587":1,"40588":0,"40589":0,"40590":0,"40591":0,"40592":0,"40593":1,"40594":0,"40595":0,"40596":0,"40597":0,"40598":0,"40599":0,"40600":0,"40601":0,"40602":1,"40603":1,"40604":1,"40605":0,"40606":0,"40607":0,"40608":0,"40609":0,"40610":1,"40611":1,"40612":0,"40613":0,"40614":0,"40615":1,"40616":1,"40617":0,"40618":0,"40619":0,"40620":0,"40621":0,"40622":1,"40623":0,"40624":0,"40625":0,"40626":1,"40627":0,"40628":0,"40629":0,"40630":0,"40631":1,"40632":0,"40633":0,"40634":1,"40635":1,"40636":0,"40637":0,"40638":1,"40639":1,"40640":0,"40641":0,"40642":0,"40643":0,"40644":0,"40645":0,"40646":0,"40647":0,"40648":0,"40649":0,"40650":0,"40651":0,"40652":0,"40653":0,"40654":1,"40655":0,"40656":1,"40657":0,"40658":1,"40659":0,"40660":1,"40661":0,"40662":0,"40663":0,"40664":0,"40665":0,"40666":0,"40667":1,"40668":1,"40669":0,"40670":0,"40671":1,"40672":0,"40673":0,"40674":0,"40675":1,"40676":0,"40677":0,"40678":0,"40679":0,"40680":0,"40681":0,"40682":0,"40683":1,"40684":0,"40685":0,"40686":0,"40687":0,"40688":0,"40689":0,"40690":1,"40691":0,"40692":1,"40693":0,"40694":0,"40695":0,"40696":0,"40697":0,"40698":0,"40699":0,"40700":0,"40701":0,"40702":0,"40703":0,"40704":0,"40705":1,"40706":0,"40707":1,"40708":1,"40709":1,"40710":0,"40711":0,"40712":0,"40713":0,"40714":0,"40715":0,"40716":0,"40717":0,"40718":0,"40719":0,"40720":0,"40721":0,"40722":0,"40723":0,"40724":0,"40725":0,"40726":1,"40727":1,"40728":0,"40729":1,"40730":1,"40731":0,"40732":0,"40733":0,"40734":0,"40735":0,"40736":1,"40737":0,"40738":0,"40739":1,"40740":0,"40741":1,"40742":0,"40743":0,"40744":1,"40745":1,"40746":1,"40747":0,"40748":0,"40749":0,"40750":0,"40751":0,"40752":0,"40753":0,"40754":0,"40755":0,"40756":0,"40757":0,"40758":1,"40759":1,"40760":0,"40761":0,"40762":0,"40763":0,"40764":1,"40765":0,"40766":0,"40767":0,"40768":0,"40769":1,"40770":0,"40771":0,"40772":0,"40773":0,"40774":0,"40775":0,"40776":0,"40777":0,"40778":0,"40779":0,"40780":0,"40781":0,"40782":0,"40783":0,"40784":0,"40785":0,"40786":0,"40787":1,"40788":0,"40789":1,"40790":0,"40791":0,"40792":0,"40793":0,"40794":1,"40795":0,"40796":0,"40797":1,"40798":0,"40799":1,"40800":0,"40801":0,"40802":0,"40803":0,"40804":1,"40805":0,"40806":0,"40807":0,"40808":0,"40809":0,"40810":1,"40811":1,"40812":0,"40813":0,"40814":0,"40815":0,"40816":1,"40817":1,"40818":1,"40819":0,"40820":1,"40821":0,"40822":0,"40823":0,"40824":1,"40825":0,"40826":1,"40827":1,"40828":0,"40829":0,"40830":0,"40831":1,"40832":0,"40833":0,"40834":0,"40835":1,"40836":0,"40837":0,"40838":0,"40839":0,"40840":0,"40841":0,"40842":0,"40843":0,"40844":0,"40845":0,"40846":0,"40847":0,"40848":1,"40849":0,"40850":1,"40851":0,"40852":1,"40853":1,"40854":1,"40855":0,"40856":0,"40857":0,"40858":0,"40859":1,"40860":0,"40861":0,"40862":0,"40863":1,"40864":1,"40865":1,"40866":0,"40867":0,"40868":0,"40869":0,"40870":1,"40871":0,"40872":0,"40873":0,"40874":0,"40875":0,"40876":1,"40877":0,"40878":0,"40879":1,"40880":0,"40881":0,"40882":0,"40883":0,"40884":0,"40885":1,"40886":1,"40887":1,"40888":0,"40889":0,"40890":0,"40891":1,"40892":1,"40893":0,"40894":0,"40895":0,"40896":0,"40897":1,"40898":0,"40899":0,"40900":0,"40901":0,"40902":0,"40903":1,"40904":0,"40905":0,"40906":0,"40907":0,"40908":1,"40909":0,"40910":1,"40911":0,"40912":0,"40913":0,"40914":1,"40915":0,"40916":1,"40917":1,"40918":0,"40919":1,"40920":0,"40921":0,"40922":0,"40923":1,"40924":0,"40925":0,"40926":1,"40927":0,"40928":0,"40929":0,"40930":0,"40931":1,"40932":0,"40933":0,"40934":0,"40935":0,"40936":0,"40937":0,"40938":0,"40939":0,"40940":0,"40941":1,"40942":0,"40943":0,"40944":0,"40945":0,"40946":0,"40947":0,"40948":0,"40949":0,"40950":0,"40951":1,"40952":0,"40953":0,"40954":1,"40955":0,"40956":0,"40957":0,"40958":0,"40959":0,"40960":1,"40961":0,"40962":0,"40963":1,"40964":0,"40965":0,"40966":0,"40967":1,"40968":1,"40969":0,"40970":0,"40971":0,"40972":0,"40973":0,"40974":1,"40975":0,"40976":0,"40977":0,"40978":0,"40979":0,"40980":0,"40981":0,"40982":1,"40983":1,"40984":0,"40985":0,"40986":0,"40987":0,"40988":0,"40989":0,"40990":0,"40991":0,"40992":1,"40993":0,"40994":0,"40995":0,"40996":0,"40997":0,"40998":1,"40999":0,"41000":0,"41001":1,"41002":0,"41003":1,"41004":1,"41005":1,"41006":1,"41007":0,"41008":0,"41009":0,"41010":1,"41011":0,"41012":0,"41013":0,"41014":0,"41015":0,"41016":0,"41017":0,"41018":1,"41019":0,"41020":1,"41021":0,"41022":0,"41023":1,"41024":0,"41025":1,"41026":1,"41027":1,"41028":0,"41029":1,"41030":0,"41031":0,"41032":1,"41033":0,"41034":0,"41035":0,"41036":0,"41037":0,"41038":0,"41039":0,"41040":0,"41041":0,"41042":1,"41043":1,"41044":0,"41045":0,"41046":1,"41047":0,"41048":0,"41049":1,"41050":1,"41051":0,"41052":0,"41053":1,"41054":0,"41055":1,"41056":0,"41057":0,"41058":0,"41059":0,"41060":0,"41061":0,"41062":0,"41063":0,"41064":0,"41065":0,"41066":0,"41067":0,"41068":0,"41069":0,"41070":0,"41071":0,"41072":0,"41073":0,"41074":0,"41075":0,"41076":0,"41077":0,"41078":0,"41079":0,"41080":1,"41081":0,"41082":1,"41083":0,"41084":0,"41085":0,"41086":1,"41087":0,"41088":1,"41089":0,"41090":0,"41091":0,"41092":0,"41093":0,"41094":0,"41095":1,"41096":0,"41097":0,"41098":0,"41099":0,"41100":1,"41101":0,"41102":0,"41103":1,"41104":1,"41105":1,"41106":0,"41107":0,"41108":0,"41109":1,"41110":0,"41111":0,"41112":0,"41113":0,"41114":0,"41115":0,"41116":0,"41117":0,"41118":0,"41119":0,"41120":0,"41121":0,"41122":0,"41123":0,"41124":0,"41125":0,"41126":0,"41127":0,"41128":0,"41129":0,"41130":0,"41131":0,"41132":0,"41133":1,"41134":0,"41135":0,"41136":0,"41137":0,"41138":0,"41139":0,"41140":0,"41141":1,"41142":0,"41143":0,"41144":0,"41145":0,"41146":0,"41147":1,"41148":0,"41149":0,"41150":0,"41151":0,"41152":1,"41153":0,"41154":0,"41155":1,"41156":0,"41157":0,"41158":0,"41159":0,"41160":0,"41161":0,"41162":1,"41163":0,"41164":0,"41165":1,"41166":0,"41167":0,"41168":0,"41169":0,"41170":0,"41171":0,"41172":0,"41173":0,"41174":0,"41175":1,"41176":0,"41177":0,"41178":0,"41179":1,"41180":1,"41181":0,"41182":1,"41183":0,"41184":0,"41185":1,"41186":0,"41187":0,"41188":0,"41189":1,"41190":0,"41191":0,"41192":0,"41193":0,"41194":0,"41195":1,"41196":1,"41197":0,"41198":1,"41199":0,"41200":0,"41201":0,"41202":0,"41203":1,"41204":0,"41205":0,"41206":0,"41207":0,"41208":0,"41209":0,"41210":0,"41211":1,"41212":0,"41213":0,"41214":0,"41215":0,"41216":1,"41217":0,"41218":1,"41219":0,"41220":0,"41221":0,"41222":0,"41223":0,"41224":0,"41225":0,"41226":1,"41227":0,"41228":1,"41229":0,"41230":1,"41231":0,"41232":0,"41233":0,"41234":0,"41235":0,"41236":0,"41237":0,"41238":1,"41239":0,"41240":1,"41241":0,"41242":0,"41243":0,"41244":1,"41245":0,"41246":1,"41247":0,"41248":0,"41249":0,"41250":1,"41251":0,"41252":0,"41253":0,"41254":0,"41255":0,"41256":0,"41257":0,"41258":0,"41259":0,"41260":0,"41261":1,"41262":1,"41263":0,"41264":0,"41265":0,"41266":0,"41267":0,"41268":1,"41269":0,"41270":0,"41271":0,"41272":0,"41273":1,"41274":0,"41275":1,"41276":1,"41277":0,"41278":0,"41279":0,"41280":1,"41281":0,"41282":0,"41283":0,"41284":0,"41285":0,"41286":0,"41287":1,"41288":0,"41289":0,"41290":0,"41291":0,"41292":0,"41293":0,"41294":1,"41295":0,"41296":0,"41297":0,"41298":0,"41299":1,"41300":0,"41301":0,"41302":0,"41303":1,"41304":0,"41305":0,"41306":0,"41307":0,"41308":0,"41309":0,"41310":0,"41311":0,"41312":1,"41313":0,"41314":1,"41315":0,"41316":0,"41317":0,"41318":0,"41319":0,"41320":0,"41321":0,"41322":0,"41323":0,"41324":1,"41325":1,"41326":0,"41327":0,"41328":0,"41329":0,"41330":1,"41331":0,"41332":1,"41333":0,"41334":0,"41335":1,"41336":0,"41337":0,"41338":0,"41339":0,"41340":0,"41341":0,"41342":0,"41343":0,"41344":0,"41345":0,"41346":1,"41347":0,"41348":0,"41349":0,"41350":1,"41351":0,"41352":0,"41353":1,"41354":1,"41355":0,"41356":0,"41357":0,"41358":1,"41359":0,"41360":0,"41361":1,"41362":0,"41363":1,"41364":1,"41365":1,"41366":1,"41367":0,"41368":0,"41369":0,"41370":0,"41371":1,"41372":0,"41373":0,"41374":1,"41375":0,"41376":0,"41377":0,"41378":0,"41379":0,"41380":0,"41381":1,"41382":0,"41383":0,"41384":0,"41385":0,"41386":0,"41387":1,"41388":0,"41389":0,"41390":1,"41391":1,"41392":0,"41393":1,"41394":0,"41395":0,"41396":0,"41397":0,"41398":0,"41399":0,"41400":0,"41401":0,"41402":1,"41403":1,"41404":0,"41405":0,"41406":1,"41407":0,"41408":1,"41409":0,"41410":1,"41411":0,"41412":1,"41413":0,"41414":1,"41415":0,"41416":0,"41417":0,"41418":0,"41419":0,"41420":1,"41421":0,"41422":0,"41423":0,"41424":0,"41425":1,"41426":1,"41427":0,"41428":1,"41429":0,"41430":0,"41431":0,"41432":1,"41433":0,"41434":0,"41435":0,"41436":1,"41437":0,"41438":0,"41439":1,"41440":0,"41441":1,"41442":0,"41443":0,"41444":0,"41445":1,"41446":0,"41447":0,"41448":0,"41449":0,"41450":1,"41451":0,"41452":0,"41453":0,"41454":1,"41455":0,"41456":0,"41457":0,"41458":0,"41459":1,"41460":0,"41461":0,"41462":0,"41463":0,"41464":0,"41465":0,"41466":1,"41467":0,"41468":0,"41469":0,"41470":0,"41471":0,"41472":0,"41473":0,"41474":0,"41475":0,"41476":0,"41477":0,"41478":0,"41479":1,"41480":0,"41481":0,"41482":0,"41483":0,"41484":0,"41485":0,"41486":0,"41487":0,"41488":0,"41489":0,"41490":0,"41491":1,"41492":0,"41493":0,"41494":1,"41495":0,"41496":0,"41497":1,"41498":0,"41499":0,"41500":0,"41501":0,"41502":0,"41503":0,"41504":1,"41505":1,"41506":0,"41507":0,"41508":0,"41509":1,"41510":0,"41511":0,"41512":0,"41513":0,"41514":0,"41515":0,"41516":0,"41517":1,"41518":1,"41519":0,"41520":0,"41521":0,"41522":0,"41523":1,"41524":1,"41525":0,"41526":0,"41527":0,"41528":0,"41529":0,"41530":0,"41531":1,"41532":0,"41533":0,"41534":0,"41535":0,"41536":0,"41537":1,"41538":0,"41539":0,"41540":0,"41541":0,"41542":0,"41543":1,"41544":1,"41545":1,"41546":0,"41547":0,"41548":0,"41549":0,"41550":0,"41551":1,"41552":1,"41553":0,"41554":0,"41555":0,"41556":0,"41557":0,"41558":1,"41559":0,"41560":0,"41561":0,"41562":0,"41563":0,"41564":0,"41565":0,"41566":1,"41567":1,"41568":0,"41569":1,"41570":0,"41571":1,"41572":0,"41573":0,"41574":1,"41575":0,"41576":0,"41577":0,"41578":0,"41579":0,"41580":1,"41581":0,"41582":1,"41583":0,"41584":0,"41585":0,"41586":0,"41587":0,"41588":0,"41589":1,"41590":0,"41591":0,"41592":0,"41593":0,"41594":0,"41595":1,"41596":0,"41597":0,"41598":1,"41599":0,"41600":0,"41601":0,"41602":0,"41603":1,"41604":0,"41605":0,"41606":0,"41607":1,"41608":0,"41609":0,"41610":0,"41611":0,"41612":0,"41613":1,"41614":0,"41615":0,"41616":0,"41617":0,"41618":0,"41619":0,"41620":1,"41621":0,"41622":0,"41623":0,"41624":0,"41625":1,"41626":1,"41627":0,"41628":1,"41629":0,"41630":0,"41631":0,"41632":0,"41633":0,"41634":1,"41635":0,"41636":1,"41637":1,"41638":0,"41639":0,"41640":1,"41641":0,"41642":0,"41643":0,"41644":0,"41645":0,"41646":1,"41647":0,"41648":1,"41649":1,"41650":0,"41651":0,"41652":1,"41653":0,"41654":1,"41655":0,"41656":0,"41657":1,"41658":1,"41659":0,"41660":0,"41661":0,"41662":1,"41663":0,"41664":1,"41665":0,"41666":0,"41667":0,"41668":0,"41669":0,"41670":0,"41671":0,"41672":0,"41673":0,"41674":0,"41675":0,"41676":0,"41677":0,"41678":0,"41679":0,"41680":0,"41681":1,"41682":0,"41683":0,"41684":0,"41685":0,"41686":0,"41687":0,"41688":1,"41689":0,"41690":0,"41691":0,"41692":0,"41693":1,"41694":1,"41695":0,"41696":0,"41697":0,"41698":0,"41699":0,"41700":0,"41701":1,"41702":0,"41703":0,"41704":0,"41705":0,"41706":0,"41707":0,"41708":0,"41709":0,"41710":0,"41711":0,"41712":0,"41713":0,"41714":0,"41715":1,"41716":0,"41717":0,"41718":0,"41719":0,"41720":1,"41721":1,"41722":0,"41723":0,"41724":1,"41725":0,"41726":0,"41727":0,"41728":1,"41729":0,"41730":0,"41731":0,"41732":0,"41733":1,"41734":1,"41735":1,"41736":0,"41737":0,"41738":1,"41739":0,"41740":0,"41741":0,"41742":0,"41743":0,"41744":0,"41745":1,"41746":0,"41747":0,"41748":1,"41749":0,"41750":0,"41751":0,"41752":0,"41753":1,"41754":0,"41755":0,"41756":0,"41757":0,"41758":0,"41759":1,"41760":0,"41761":1,"41762":1,"41763":1,"41764":0,"41765":0,"41766":0,"41767":1,"41768":0,"41769":0,"41770":0,"41771":0,"41772":0,"41773":1,"41774":0,"41775":0,"41776":0,"41777":1,"41778":0,"41779":0,"41780":0,"41781":1,"41782":1,"41783":0,"41784":0,"41785":0,"41786":0,"41787":0,"41788":0,"41789":0,"41790":0,"41791":0,"41792":0,"41793":1,"41794":0,"41795":1,"41796":0,"41797":0,"41798":0,"41799":1,"41800":0,"41801":0,"41802":1,"41803":0,"41804":0,"41805":0,"41806":0,"41807":1,"41808":0,"41809":0,"41810":0,"41811":0,"41812":0,"41813":0,"41814":0,"41815":0,"41816":0,"41817":0,"41818":0,"41819":0,"41820":0,"41821":1,"41822":1,"41823":1,"41824":0,"41825":0,"41826":0,"41827":0,"41828":0,"41829":0,"41830":1,"41831":0,"41832":0,"41833":1,"41834":1,"41835":0,"41836":0,"41837":1,"41838":0,"41839":0,"41840":0,"41841":1,"41842":0,"41843":1,"41844":0,"41845":1,"41846":0,"41847":0,"41848":1,"41849":0,"41850":0,"41851":0,"41852":0,"41853":0,"41854":0,"41855":0,"41856":0,"41857":0,"41858":0,"41859":0,"41860":0,"41861":0,"41862":0,"41863":0,"41864":1,"41865":1,"41866":0,"41867":0,"41868":0,"41869":0,"41870":0,"41871":0,"41872":1,"41873":1,"41874":0,"41875":0,"41876":0,"41877":0,"41878":1,"41879":0,"41880":0,"41881":1,"41882":0,"41883":0,"41884":0,"41885":0,"41886":0,"41887":1,"41888":0,"41889":1,"41890":1,"41891":0,"41892":0,"41893":1,"41894":0,"41895":0,"41896":1,"41897":0,"41898":1,"41899":1,"41900":0,"41901":0,"41902":0,"41903":0,"41904":1,"41905":0,"41906":1,"41907":1,"41908":1,"41909":1,"41910":0,"41911":0,"41912":0,"41913":0,"41914":0,"41915":0,"41916":0,"41917":1,"41918":1,"41919":0,"41920":0,"41921":0,"41922":0,"41923":1,"41924":0,"41925":0,"41926":0,"41927":0,"41928":0,"41929":0,"41930":0,"41931":0,"41932":0,"41933":0,"41934":0,"41935":0,"41936":0,"41937":1,"41938":0,"41939":0,"41940":0,"41941":0,"41942":0,"41943":0,"41944":0,"41945":0,"41946":0,"41947":1,"41948":0,"41949":0,"41950":1,"41951":0,"41952":0,"41953":1,"41954":1,"41955":1,"41956":0,"41957":0,"41958":0,"41959":0,"41960":0,"41961":0,"41962":0,"41963":1,"41964":1,"41965":0,"41966":0,"41967":0,"41968":0,"41969":0,"41970":0,"41971":1,"41972":0,"41973":1,"41974":0,"41975":1,"41976":0,"41977":0,"41978":1,"41979":0,"41980":1,"41981":0,"41982":0,"41983":0,"41984":0,"41985":0,"41986":1,"41987":0,"41988":0,"41989":1,"41990":0,"41991":0,"41992":1,"41993":0,"41994":0,"41995":0,"41996":0,"41997":0,"41998":0,"41999":0,"42000":0,"42001":1,"42002":1,"42003":0,"42004":0,"42005":0,"42006":0,"42007":0,"42008":0,"42009":1,"42010":0,"42011":0,"42012":0,"42013":0,"42014":1,"42015":0,"42016":1,"42017":1,"42018":0,"42019":0,"42020":0,"42021":0,"42022":0,"42023":0,"42024":0,"42025":0,"42026":1,"42027":0,"42028":1,"42029":0,"42030":0,"42031":0,"42032":0,"42033":0,"42034":1,"42035":0,"42036":0,"42037":0,"42038":0,"42039":0,"42040":0,"42041":0,"42042":0,"42043":0,"42044":0,"42045":0,"42046":1,"42047":0,"42048":1,"42049":0,"42050":0,"42051":0,"42052":0,"42053":0,"42054":1,"42055":1,"42056":1,"42057":0,"42058":0,"42059":1,"42060":1,"42061":0,"42062":0,"42063":0,"42064":0,"42065":0,"42066":0,"42067":0,"42068":1,"42069":0,"42070":0,"42071":0,"42072":1,"42073":1,"42074":0,"42075":0,"42076":1,"42077":0,"42078":0,"42079":0,"42080":1,"42081":0,"42082":1,"42083":0,"42084":1,"42085":1,"42086":0,"42087":0,"42088":1,"42089":0,"42090":0,"42091":0,"42092":1,"42093":1,"42094":1,"42095":0,"42096":1,"42097":0,"42098":0,"42099":0,"42100":1,"42101":1,"42102":1,"42103":0,"42104":1,"42105":0,"42106":1,"42107":0,"42108":0,"42109":0,"42110":1,"42111":1,"42112":0,"42113":0,"42114":0,"42115":1,"42116":0,"42117":0,"42118":0,"42119":0,"42120":0,"42121":0,"42122":1,"42123":1,"42124":0,"42125":0,"42126":1,"42127":0,"42128":0,"42129":0,"42130":0,"42131":0,"42132":0,"42133":1,"42134":0,"42135":1,"42136":0,"42137":1,"42138":0,"42139":1,"42140":0,"42141":0,"42142":0,"42143":0,"42144":0,"42145":1,"42146":0,"42147":0,"42148":1,"42149":0,"42150":0,"42151":0,"42152":0,"42153":0,"42154":1,"42155":0,"42156":0,"42157":0,"42158":1,"42159":0,"42160":1,"42161":1,"42162":1,"42163":1,"42164":0,"42165":0,"42166":1,"42167":0,"42168":0,"42169":0,"42170":1,"42171":0,"42172":0,"42173":0,"42174":0,"42175":0,"42176":0,"42177":0,"42178":0,"42179":0,"42180":0,"42181":0,"42182":1,"42183":0,"42184":1,"42185":0,"42186":1,"42187":0,"42188":1,"42189":0,"42190":0,"42191":0,"42192":0,"42193":0,"42194":0,"42195":0,"42196":1,"42197":0,"42198":0,"42199":1,"42200":0,"42201":0,"42202":0,"42203":0,"42204":0,"42205":0,"42206":0,"42207":0,"42208":1,"42209":1,"42210":0,"42211":1,"42212":0,"42213":1,"42214":1,"42215":0,"42216":0,"42217":0,"42218":0,"42219":1,"42220":0,"42221":0,"42222":0,"42223":1,"42224":0,"42225":0,"42226":1,"42227":0,"42228":1,"42229":0,"42230":1,"42231":0,"42232":0,"42233":0,"42234":0,"42235":0,"42236":0,"42237":0,"42238":0,"42239":1,"42240":0,"42241":0,"42242":0,"42243":1,"42244":1,"42245":0,"42246":0,"42247":1,"42248":0,"42249":0,"42250":1,"42251":0,"42252":1,"42253":1,"42254":1,"42255":0,"42256":0,"42257":1,"42258":0,"42259":0,"42260":0,"42261":0,"42262":1,"42263":0,"42264":0,"42265":0,"42266":0,"42267":1,"42268":0,"42269":0,"42270":0,"42271":0,"42272":0,"42273":0,"42274":1,"42275":0,"42276":1,"42277":0,"42278":0,"42279":0,"42280":0,"42281":0,"42282":0,"42283":0,"42284":0,"42285":0,"42286":0,"42287":0,"42288":0,"42289":1,"42290":0,"42291":0,"42292":0,"42293":0,"42294":0,"42295":1,"42296":1,"42297":1,"42298":1,"42299":0,"42300":0,"42301":0,"42302":1,"42303":1,"42304":1,"42305":0,"42306":0,"42307":0,"42308":0,"42309":0,"42310":0,"42311":0,"42312":0,"42313":0,"42314":0,"42315":0,"42316":0,"42317":0,"42318":0,"42319":1,"42320":0,"42321":1,"42322":0,"42323":0,"42324":0,"42325":0,"42326":0,"42327":0,"42328":0,"42329":0,"42330":1,"42331":0,"42332":0,"42333":0,"42334":1,"42335":0,"42336":1,"42337":0,"42338":1,"42339":1,"42340":0,"42341":1,"42342":0,"42343":0,"42344":0,"42345":1,"42346":0,"42347":1,"42348":1,"42349":0,"42350":1,"42351":1,"42352":0,"42353":1,"42354":0,"42355":0,"42356":0,"42357":0,"42358":0,"42359":0,"42360":0,"42361":0,"42362":1,"42363":1,"42364":0,"42365":0,"42366":0,"42367":0,"42368":0,"42369":0,"42370":0,"42371":0,"42372":1,"42373":0,"42374":0,"42375":0,"42376":0,"42377":0,"42378":0,"42379":0,"42380":1,"42381":0,"42382":0,"42383":0,"42384":0,"42385":0,"42386":0,"42387":0,"42388":0,"42389":0,"42390":0,"42391":0,"42392":0,"42393":1,"42394":0,"42395":0,"42396":1,"42397":0,"42398":0,"42399":0,"42400":0,"42401":0,"42402":1,"42403":1,"42404":1,"42405":0,"42406":1,"42407":0,"42408":0,"42409":1,"42410":0,"42411":0,"42412":0,"42413":0,"42414":0,"42415":0,"42416":1,"42417":0,"42418":0,"42419":0,"42420":1,"42421":0,"42422":0,"42423":0,"42424":0,"42425":0,"42426":0,"42427":0,"42428":0,"42429":0,"42430":0,"42431":0,"42432":0,"42433":0,"42434":0,"42435":0,"42436":0,"42437":0,"42438":0,"42439":0,"42440":0,"42441":0,"42442":0,"42443":1,"42444":0,"42445":0,"42446":1,"42447":0,"42448":0,"42449":1,"42450":0,"42451":0,"42452":1,"42453":1,"42454":0,"42455":0,"42456":0,"42457":0,"42458":0,"42459":0,"42460":0,"42461":0,"42462":0,"42463":0,"42464":0,"42465":0,"42466":1,"42467":1,"42468":0,"42469":0,"42470":0,"42471":0,"42472":0,"42473":0,"42474":0,"42475":0,"42476":0,"42477":1,"42478":0,"42479":0,"42480":0,"42481":0,"42482":0,"42483":1,"42484":0,"42485":0,"42486":0,"42487":0,"42488":1,"42489":0,"42490":0,"42491":0,"42492":0,"42493":1,"42494":1,"42495":1,"42496":0,"42497":0,"42498":0,"42499":0,"42500":0,"42501":1,"42502":0,"42503":1,"42504":0,"42505":1,"42506":1,"42507":0,"42508":0,"42509":0,"42510":1,"42511":0,"42512":0,"42513":0,"42514":0,"42515":0,"42516":1,"42517":1,"42518":0,"42519":1,"42520":0,"42521":0,"42522":0,"42523":0,"42524":0,"42525":0,"42526":0,"42527":0,"42528":1,"42529":0,"42530":0,"42531":0,"42532":0,"42533":0,"42534":0,"42535":1,"42536":0,"42537":0,"42538":0,"42539":0,"42540":0,"42541":0,"42542":0,"42543":0,"42544":0,"42545":0,"42546":0,"42547":0,"42548":0,"42549":0,"42550":0,"42551":1,"42552":1,"42553":0,"42554":1,"42555":0,"42556":0,"42557":1,"42558":0,"42559":1,"42560":0,"42561":0,"42562":0,"42563":1,"42564":0,"42565":0,"42566":0,"42567":1,"42568":0,"42569":0,"42570":0,"42571":0,"42572":0,"42573":0,"42574":0,"42575":1,"42576":0,"42577":0,"42578":1,"42579":0,"42580":1,"42581":1,"42582":0,"42583":0,"42584":0,"42585":0,"42586":0,"42587":1,"42588":0,"42589":1,"42590":0,"42591":0,"42592":0,"42593":0,"42594":1,"42595":0,"42596":0,"42597":0,"42598":0,"42599":0,"42600":0,"42601":0,"42602":0,"42603":0,"42604":1,"42605":0,"42606":1,"42607":1,"42608":0,"42609":0,"42610":0,"42611":0,"42612":0,"42613":0,"42614":1,"42615":0,"42616":0,"42617":0,"42618":1,"42619":1,"42620":0,"42621":0,"42622":0,"42623":0,"42624":1,"42625":0,"42626":0,"42627":0,"42628":0,"42629":1,"42630":0,"42631":0,"42632":0,"42633":0,"42634":0,"42635":0,"42636":0,"42637":0,"42638":0,"42639":0,"42640":1,"42641":0,"42642":0,"42643":0,"42644":1,"42645":0,"42646":0,"42647":0,"42648":0,"42649":0,"42650":0,"42651":0,"42652":1,"42653":0,"42654":1,"42655":1,"42656":1,"42657":1,"42658":0,"42659":0,"42660":0,"42661":1,"42662":0,"42663":0,"42664":1,"42665":0,"42666":0,"42667":1,"42668":1,"42669":0,"42670":1,"42671":1,"42672":0,"42673":0,"42674":0,"42675":1,"42676":0,"42677":1,"42678":0,"42679":0,"42680":0,"42681":0,"42682":0,"42683":0,"42684":0,"42685":0,"42686":0,"42687":0,"42688":0,"42689":0,"42690":0,"42691":1,"42692":1,"42693":0,"42694":0,"42695":0,"42696":0,"42697":0,"42698":1,"42699":0,"42700":0,"42701":0,"42702":1,"42703":0,"42704":0,"42705":0,"42706":0,"42707":0,"42708":0,"42709":0,"42710":0,"42711":0,"42712":0,"42713":1,"42714":0,"42715":1,"42716":0,"42717":0,"42718":0,"42719":1,"42720":0,"42721":0,"42722":0,"42723":0,"42724":0,"42725":0,"42726":0,"42727":0,"42728":1,"42729":0,"42730":0,"42731":0,"42732":0,"42733":0,"42734":0,"42735":0,"42736":1,"42737":0,"42738":0,"42739":0,"42740":0,"42741":0,"42742":0,"42743":0,"42744":0,"42745":0,"42746":0,"42747":0,"42748":0,"42749":0,"42750":0,"42751":0,"42752":0,"42753":1,"42754":0,"42755":0,"42756":1,"42757":0,"42758":0,"42759":1,"42760":0,"42761":1,"42762":0,"42763":0,"42764":0,"42765":0,"42766":0,"42767":0,"42768":0,"42769":1,"42770":0,"42771":0,"42772":0,"42773":1,"42774":0,"42775":1,"42776":0,"42777":0,"42778":1,"42779":0,"42780":0,"42781":0,"42782":1,"42783":0,"42784":1,"42785":0,"42786":0,"42787":0,"42788":0,"42789":0,"42790":0,"42791":0,"42792":1,"42793":1,"42794":0,"42795":0,"42796":0,"42797":0,"42798":0,"42799":0,"42800":0,"42801":0,"42802":0,"42803":0,"42804":0,"42805":0,"42806":0,"42807":0,"42808":1,"42809":0,"42810":0,"42811":1,"42812":0,"42813":1,"42814":0,"42815":0,"42816":1,"42817":0,"42818":0,"42819":0,"42820":1,"42821":0,"42822":0,"42823":1,"42824":0,"42825":1,"42826":1,"42827":0,"42828":0,"42829":0,"42830":0,"42831":0,"42832":0,"42833":0,"42834":0,"42835":0,"42836":0,"42837":0,"42838":0,"42839":0,"42840":0,"42841":0,"42842":0,"42843":0,"42844":0,"42845":0,"42846":1,"42847":1,"42848":0,"42849":1,"42850":1,"42851":1,"42852":0,"42853":0,"42854":1,"42855":0,"42856":0,"42857":0,"42858":0,"42859":0,"42860":0,"42861":0,"42862":1,"42863":0,"42864":0,"42865":0,"42866":0,"42867":0,"42868":0,"42869":0,"42870":1,"42871":0,"42872":0,"42873":0,"42874":0,"42875":0,"42876":0,"42877":0,"42878":0,"42879":0,"42880":1,"42881":0,"42882":0,"42883":0,"42884":1,"42885":0,"42886":0,"42887":0,"42888":1,"42889":0,"42890":0,"42891":1,"42892":0,"42893":0,"42894":0,"42895":1,"42896":0,"42897":0,"42898":0,"42899":0,"42900":1,"42901":0,"42902":1,"42903":0,"42904":0,"42905":0,"42906":0,"42907":1,"42908":0,"42909":0,"42910":1,"42911":0,"42912":1,"42913":0,"42914":0,"42915":0,"42916":1,"42917":0,"42918":0,"42919":0,"42920":0,"42921":0,"42922":0,"42923":1,"42924":0,"42925":0,"42926":0,"42927":0,"42928":0,"42929":1,"42930":0,"42931":1,"42932":0,"42933":0,"42934":0,"42935":0,"42936":0,"42937":0,"42938":0,"42939":1,"42940":0,"42941":1,"42942":0,"42943":0,"42944":1,"42945":0,"42946":0,"42947":0,"42948":0,"42949":0,"42950":0,"42951":0,"42952":0,"42953":0,"42954":0,"42955":1,"42956":0,"42957":0,"42958":1,"42959":0,"42960":0,"42961":1,"42962":1,"42963":0,"42964":0,"42965":0,"42966":0,"42967":1,"42968":0,"42969":0,"42970":0,"42971":0,"42972":1,"42973":0,"42974":0,"42975":1,"42976":0,"42977":0,"42978":1,"42979":0,"42980":0,"42981":0,"42982":0,"42983":1,"42984":0,"42985":0,"42986":0,"42987":0,"42988":0,"42989":0,"42990":1,"42991":0,"42992":1,"42993":0,"42994":1,"42995":0,"42996":0,"42997":0,"42998":0,"42999":0,"43000":0,"43001":0,"43002":0,"43003":0,"43004":0,"43005":0,"43006":0,"43007":1,"43008":0,"43009":0,"43010":1,"43011":0,"43012":0,"43013":0,"43014":0,"43015":0,"43016":1,"43017":1,"43018":0,"43019":0,"43020":1,"43021":0,"43022":0,"43023":0,"43024":1,"43025":1,"43026":0,"43027":1,"43028":0,"43029":0,"43030":0,"43031":1,"43032":0,"43033":1,"43034":0,"43035":0,"43036":0,"43037":0,"43038":0,"43039":0,"43040":0,"43041":0,"43042":0,"43043":0,"43044":0,"43045":0,"43046":0,"43047":1,"43048":0,"43049":1,"43050":0,"43051":0,"43052":0,"43053":0,"43054":0,"43055":0,"43056":0,"43057":1,"43058":0,"43059":0,"43060":0,"43061":0,"43062":1,"43063":0,"43064":0,"43065":1,"43066":1,"43067":0,"43068":1,"43069":1,"43070":1,"43071":0,"43072":0,"43073":0,"43074":0,"43075":0,"43076":0,"43077":0,"43078":1,"43079":0,"43080":0,"43081":0,"43082":0,"43083":0,"43084":0,"43085":1,"43086":0,"43087":1,"43088":1,"43089":0,"43090":0,"43091":1,"43092":1,"43093":0,"43094":0,"43095":0,"43096":0,"43097":0,"43098":0,"43099":0,"43100":0,"43101":0,"43102":0,"43103":0,"43104":0,"43105":0,"43106":0,"43107":0,"43108":1,"43109":0,"43110":0,"43111":1,"43112":0,"43113":0,"43114":1,"43115":1,"43116":0,"43117":0,"43118":0,"43119":1,"43120":0,"43121":0,"43122":1,"43123":0,"43124":0,"43125":1,"43126":0,"43127":1,"43128":0,"43129":0,"43130":0,"43131":0,"43132":0,"43133":0,"43134":0,"43135":0,"43136":0,"43137":0,"43138":0,"43139":1,"43140":1,"43141":0,"43142":0,"43143":1,"43144":0,"43145":1,"43146":0,"43147":1,"43148":0,"43149":0,"43150":0,"43151":0,"43152":0,"43153":0,"43154":1,"43155":0,"43156":0,"43157":0,"43158":1,"43159":0,"43160":0,"43161":0,"43162":0,"43163":0,"43164":0,"43165":0,"43166":1,"43167":0,"43168":1,"43169":0,"43170":0,"43171":1,"43172":0,"43173":1,"43174":1,"43175":0,"43176":0,"43177":0,"43178":0,"43179":0,"43180":0,"43181":0,"43182":0,"43183":0,"43184":0,"43185":0,"43186":0,"43187":0,"43188":0,"43189":1,"43190":0,"43191":0,"43192":0,"43193":0,"43194":1,"43195":0,"43196":0,"43197":0,"43198":0,"43199":0,"43200":0,"43201":1,"43202":0,"43203":0,"43204":1,"43205":0,"43206":1,"43207":1,"43208":1,"43209":0,"43210":0,"43211":0,"43212":0,"43213":0,"43214":0,"43215":0,"43216":1,"43217":0,"43218":0,"43219":0,"43220":0,"43221":0,"43222":0,"43223":1,"43224":1,"43225":0,"43226":1,"43227":0,"43228":0,"43229":0,"43230":1,"43231":0,"43232":1,"43233":0,"43234":0,"43235":1,"43236":0,"43237":1,"43238":0,"43239":0,"43240":0,"43241":0,"43242":0,"43243":0,"43244":0,"43245":0,"43246":0,"43247":1,"43248":0,"43249":0,"43250":0,"43251":0,"43252":0,"43253":0,"43254":0,"43255":0,"43256":0,"43257":1,"43258":1,"43259":0,"43260":0,"43261":0,"43262":0,"43263":0,"43264":0,"43265":0,"43266":0,"43267":0,"43268":0,"43269":0,"43270":0,"43271":1,"43272":0,"43273":1,"43274":0,"43275":1,"43276":0,"43277":0,"43278":0,"43279":0,"43280":0,"43281":1,"43282":0,"43283":0,"43284":0,"43285":1,"43286":1,"43287":0,"43288":1,"43289":0,"43290":0,"43291":0,"43292":0,"43293":0,"43294":1,"43295":0,"43296":0,"43297":1,"43298":0,"43299":0,"43300":1,"43301":0,"43302":0,"43303":1,"43304":0,"43305":1,"43306":0,"43307":1,"43308":0,"43309":0,"43310":0,"43311":0,"43312":0,"43313":0,"43314":0,"43315":0,"43316":0,"43317":0,"43318":1,"43319":0,"43320":0,"43321":0,"43322":0,"43323":1,"43324":0,"43325":0,"43326":0,"43327":0,"43328":0,"43329":1,"43330":0,"43331":0,"43332":0,"43333":1,"43334":0,"43335":0,"43336":0,"43337":0,"43338":0,"43339":0,"43340":0,"43341":0,"43342":0,"43343":1,"43344":1,"43345":0,"43346":0,"43347":1,"43348":0,"43349":0,"43350":0,"43351":0,"43352":0,"43353":0,"43354":1,"43355":0,"43356":1,"43357":1,"43358":1,"43359":0,"43360":0,"43361":0,"43362":0,"43363":0,"43364":0,"43365":0,"43366":0,"43367":0,"43368":0,"43369":0,"43370":0,"43371":0,"43372":0,"43373":0,"43374":0,"43375":0,"43376":1,"43377":0,"43378":1,"43379":1,"43380":0,"43381":1,"43382":1,"43383":1,"43384":0,"43385":0,"43386":1,"43387":0,"43388":0,"43389":0,"43390":1,"43391":0,"43392":0,"43393":1,"43394":0,"43395":0,"43396":0,"43397":0,"43398":1,"43399":1,"43400":0,"43401":0,"43402":0,"43403":0,"43404":1,"43405":0,"43406":0,"43407":1,"43408":1,"43409":0,"43410":0,"43411":0,"43412":0,"43413":1,"43414":0,"43415":0,"43416":0,"43417":0,"43418":1,"43419":0,"43420":1,"43421":0,"43422":0,"43423":0,"43424":0,"43425":0,"43426":0,"43427":0,"43428":0,"43429":0,"43430":0,"43431":0,"43432":0,"43433":0,"43434":0,"43435":0,"43436":0,"43437":0,"43438":1,"43439":1,"43440":0,"43441":1,"43442":0,"43443":0,"43444":0,"43445":0,"43446":0,"43447":0,"43448":0,"43449":0,"43450":0,"43451":0,"43452":1,"43453":0,"43454":0,"43455":0,"43456":0,"43457":0,"43458":0,"43459":0,"43460":0,"43461":0,"43462":0,"43463":0,"43464":0,"43465":1,"43466":0,"43467":0,"43468":0,"43469":0,"43470":0,"43471":0,"43472":0,"43473":0,"43474":1,"43475":0,"43476":1,"43477":0,"43478":0,"43479":0,"43480":1,"43481":0,"43482":0,"43483":0,"43484":1,"43485":0,"43486":0,"43487":0,"43488":0,"43489":0,"43490":0,"43491":0,"43492":0,"43493":0,"43494":0,"43495":1,"43496":1,"43497":1,"43498":0,"43499":0,"43500":0,"43501":0,"43502":1,"43503":0,"43504":0,"43505":0,"43506":0,"43507":1,"43508":0,"43509":0,"43510":0,"43511":1,"43512":1,"43513":0,"43514":1,"43515":1,"43516":0,"43517":0,"43518":0,"43519":1,"43520":0,"43521":0,"43522":0,"43523":1,"43524":0,"43525":0,"43526":0,"43527":1,"43528":0,"43529":0,"43530":0,"43531":0,"43532":0,"43533":0,"43534":0,"43535":0,"43536":0,"43537":0,"43538":0,"43539":0,"43540":0,"43541":0,"43542":1,"43543":0,"43544":0,"43545":0,"43546":0,"43547":1,"43548":0,"43549":1,"43550":0,"43551":0,"43552":0,"43553":0,"43554":0,"43555":1,"43556":0,"43557":0,"43558":0,"43559":0,"43560":0,"43561":0,"43562":0,"43563":0,"43564":0,"43565":0,"43566":0,"43567":1,"43568":0,"43569":0,"43570":0,"43571":1,"43572":0,"43573":0,"43574":0,"43575":0,"43576":1,"43577":1,"43578":0,"43579":1,"43580":0,"43581":1,"43582":0,"43583":1,"43584":0,"43585":0,"43586":0,"43587":0,"43588":0,"43589":0,"43590":1,"43591":0,"43592":0,"43593":0,"43594":0,"43595":0,"43596":1,"43597":1,"43598":0,"43599":0,"43600":0,"43601":0,"43602":1,"43603":0,"43604":0,"43605":0,"43606":1,"43607":0,"43608":1,"43609":0,"43610":1,"43611":0,"43612":0,"43613":0,"43614":0,"43615":0,"43616":0,"43617":1,"43618":0,"43619":1,"43620":0,"43621":0,"43622":1,"43623":1,"43624":0,"43625":0,"43626":0,"43627":0,"43628":1,"43629":0,"43630":0,"43631":0,"43632":0,"43633":0,"43634":0,"43635":0,"43636":0,"43637":1,"43638":0,"43639":1,"43640":0,"43641":0,"43642":0,"43643":0,"43644":0,"43645":0,"43646":0,"43647":0,"43648":0,"43649":0,"43650":1,"43651":0,"43652":0,"43653":0,"43654":0,"43655":0,"43656":0,"43657":0,"43658":0,"43659":0,"43660":0,"43661":1,"43662":0,"43663":0,"43664":0,"43665":0,"43666":0,"43667":0,"43668":0,"43669":0,"43670":0,"43671":0,"43672":0,"43673":0,"43674":0,"43675":0,"43676":0,"43677":1,"43678":1,"43679":1,"43680":0,"43681":1,"43682":0,"43683":1,"43684":0,"43685":0,"43686":0,"43687":0,"43688":1,"43689":0,"43690":0,"43691":0,"43692":0,"43693":0,"43694":1,"43695":0,"43696":0,"43697":0,"43698":0,"43699":0,"43700":1,"43701":0,"43702":1,"43703":1,"43704":0,"43705":0,"43706":0,"43707":1,"43708":0,"43709":0,"43710":0,"43711":1,"43712":0,"43713":1,"43714":0,"43715":0,"43716":0,"43717":0,"43718":0,"43719":0,"43720":0,"43721":0,"43722":0,"43723":0,"43724":1,"43725":0,"43726":0,"43727":0,"43728":1,"43729":0,"43730":1,"43731":1,"43732":1,"43733":1,"43734":0,"43735":0,"43736":0,"43737":0,"43738":0,"43739":0,"43740":0,"43741":0,"43742":0,"43743":1,"43744":0,"43745":1,"43746":0,"43747":0,"43748":0,"43749":0,"43750":0,"43751":1,"43752":0,"43753":0,"43754":1,"43755":0,"43756":0,"43757":0,"43758":0,"43759":0,"43760":0,"43761":0,"43762":0,"43763":0,"43764":0,"43765":0,"43766":0,"43767":1,"43768":0,"43769":0,"43770":1,"43771":0,"43772":0,"43773":1,"43774":0,"43775":0,"43776":0,"43777":0,"43778":0,"43779":0,"43780":0,"43781":0,"43782":0,"43783":0,"43784":1,"43785":1,"43786":0,"43787":0,"43788":0,"43789":1,"43790":0,"43791":1,"43792":0,"43793":0,"43794":0,"43795":1,"43796":0,"43797":0,"43798":0,"43799":0,"43800":0,"43801":1,"43802":0,"43803":0,"43804":0,"43805":0,"43806":0,"43807":0,"43808":0,"43809":0,"43810":1,"43811":0,"43812":0,"43813":0,"43814":0,"43815":0,"43816":0,"43817":0,"43818":0,"43819":1,"43820":0,"43821":0,"43822":1,"43823":1,"43824":1,"43825":0,"43826":1,"43827":0,"43828":1,"43829":0,"43830":0,"43831":1,"43832":0,"43833":1,"43834":0,"43835":0,"43836":0,"43837":0,"43838":0,"43839":0,"43840":0,"43841":0,"43842":0,"43843":1,"43844":0,"43845":0,"43846":0,"43847":0,"43848":0,"43849":0,"43850":0,"43851":0,"43852":1,"43853":0,"43854":0,"43855":1,"43856":1,"43857":1,"43858":1,"43859":0,"43860":0,"43861":0,"43862":0,"43863":0,"43864":0,"43865":0,"43866":1,"43867":0,"43868":0,"43869":1,"43870":0,"43871":0,"43872":0,"43873":1,"43874":0,"43875":0,"43876":1,"43877":0,"43878":0,"43879":0,"43880":1,"43881":0,"43882":1,"43883":0,"43884":1,"43885":0,"43886":1,"43887":0,"43888":0,"43889":0,"43890":0,"43891":0,"43892":0,"43893":0,"43894":0,"43895":0,"43896":1,"43897":0,"43898":0,"43899":0,"43900":0,"43901":1,"43902":1,"43903":0,"43904":1,"43905":1,"43906":0,"43907":0,"43908":1,"43909":1,"43910":1,"43911":1,"43912":0,"43913":0,"43914":0,"43915":0,"43916":1,"43917":0,"43918":0,"43919":0,"43920":0,"43921":0,"43922":0,"43923":0,"43924":0,"43925":1,"43926":0,"43927":0,"43928":1,"43929":0,"43930":0,"43931":0,"43932":0,"43933":0,"43934":0,"43935":0,"43936":0,"43937":0,"43938":0,"43939":0,"43940":0,"43941":0,"43942":1,"43943":1,"43944":0,"43945":0,"43946":0,"43947":0,"43948":0,"43949":0,"43950":0,"43951":0,"43952":0,"43953":1,"43954":0,"43955":1,"43956":0,"43957":0,"43958":0,"43959":0,"43960":0,"43961":0,"43962":0,"43963":0,"43964":0,"43965":0,"43966":0,"43967":1,"43968":0,"43969":1,"43970":0,"43971":0,"43972":1,"43973":0,"43974":0,"43975":0,"43976":1,"43977":0,"43978":0,"43979":0,"43980":0,"43981":0,"43982":0,"43983":1,"43984":0,"43985":0,"43986":0,"43987":0,"43988":0,"43989":1,"43990":0,"43991":0,"43992":1,"43993":0,"43994":1,"43995":0,"43996":0,"43997":1,"43998":0,"43999":0,"44000":0,"44001":1,"44002":0,"44003":1,"44004":0,"44005":0,"44006":0,"44007":0,"44008":0,"44009":0,"44010":0,"44011":1,"44012":0,"44013":0,"44014":0,"44015":1,"44016":0,"44017":0,"44018":0,"44019":0,"44020":0,"44021":0,"44022":0,"44023":1,"44024":1,"44025":0,"44026":0,"44027":0,"44028":0,"44029":0,"44030":0,"44031":0,"44032":0,"44033":0,"44034":0,"44035":0,"44036":0,"44037":0,"44038":0,"44039":0,"44040":0,"44041":0,"44042":0,"44043":0,"44044":0,"44045":0,"44046":1,"44047":0,"44048":0,"44049":0,"44050":0,"44051":0,"44052":0,"44053":0,"44054":1,"44055":0,"44056":1,"44057":0,"44058":1,"44059":1,"44060":0,"44061":0,"44062":1,"44063":0,"44064":1,"44065":0,"44066":0,"44067":0,"44068":0,"44069":0,"44070":1,"44071":0,"44072":0,"44073":0,"44074":0,"44075":0,"44076":0,"44077":1,"44078":0,"44079":0,"44080":1,"44081":0,"44082":0,"44083":0,"44084":1,"44085":0,"44086":0,"44087":1,"44088":0,"44089":0,"44090":0,"44091":1,"44092":1,"44093":0,"44094":0,"44095":0,"44096":1,"44097":0,"44098":1,"44099":0,"44100":1,"44101":0,"44102":0,"44103":0,"44104":0,"44105":0,"44106":0,"44107":0,"44108":0,"44109":0,"44110":0,"44111":0,"44112":0,"44113":0,"44114":0,"44115":0,"44116":0,"44117":1,"44118":0,"44119":0,"44120":1,"44121":0,"44122":0,"44123":0,"44124":0,"44125":0,"44126":0,"44127":1,"44128":1,"44129":0,"44130":1,"44131":1,"44132":0,"44133":0,"44134":1,"44135":0,"44136":0,"44137":0,"44138":1,"44139":0,"44140":0,"44141":0,"44142":0,"44143":0,"44144":0,"44145":0,"44146":0,"44147":0,"44148":0,"44149":0,"44150":0,"44151":0,"44152":0,"44153":0,"44154":1,"44155":0,"44156":0,"44157":0,"44158":0,"44159":0,"44160":1,"44161":0,"44162":0,"44163":1,"44164":0,"44165":0,"44166":0,"44167":0,"44168":1,"44169":1,"44170":0,"44171":1,"44172":1,"44173":0,"44174":0,"44175":0,"44176":0,"44177":0,"44178":1,"44179":0,"44180":1,"44181":0,"44182":1,"44183":0,"44184":1,"44185":0,"44186":0,"44187":1,"44188":1,"44189":0,"44190":0,"44191":0,"44192":0,"44193":1,"44194":1,"44195":1,"44196":0,"44197":0,"44198":0,"44199":0,"44200":0,"44201":0,"44202":0,"44203":1,"44204":0,"44205":0,"44206":0,"44207":1,"44208":1,"44209":0,"44210":1,"44211":0,"44212":1,"44213":1,"44214":0,"44215":1,"44216":0,"44217":1,"44218":0,"44219":0,"44220":0,"44221":0,"44222":0,"44223":1,"44224":0,"44225":0,"44226":1,"44227":1,"44228":1,"44229":0,"44230":0,"44231":0,"44232":0,"44233":1,"44234":0,"44235":0,"44236":0,"44237":1,"44238":0,"44239":0,"44240":0,"44241":0,"44242":0,"44243":0,"44244":0,"44245":0,"44246":0,"44247":1,"44248":0,"44249":1,"44250":0,"44251":1,"44252":0,"44253":0,"44254":0,"44255":0,"44256":0,"44257":0,"44258":0,"44259":0,"44260":1,"44261":0,"44262":1,"44263":0,"44264":1,"44265":0,"44266":1,"44267":0,"44268":0,"44269":0,"44270":1,"44271":0,"44272":0,"44273":1,"44274":1,"44275":0,"44276":0,"44277":0,"44278":1,"44279":0,"44280":0,"44281":0,"44282":0,"44283":0,"44284":1,"44285":0,"44286":0,"44287":1,"44288":0,"44289":1,"44290":0,"44291":0,"44292":0,"44293":0,"44294":0,"44295":0,"44296":0,"44297":0,"44298":0,"44299":0,"44300":1,"44301":0,"44302":0,"44303":0,"44304":0,"44305":1,"44306":0,"44307":1,"44308":0,"44309":1,"44310":0,"44311":0,"44312":1,"44313":0,"44314":0,"44315":1,"44316":1,"44317":0,"44318":1,"44319":0,"44320":0,"44321":0,"44322":1,"44323":0,"44324":1,"44325":0,"44326":0,"44327":1,"44328":0,"44329":0,"44330":1,"44331":0,"44332":0,"44333":0,"44334":0,"44335":0,"44336":1,"44337":0,"44338":0,"44339":0,"44340":0,"44341":0,"44342":0,"44343":0,"44344":0,"44345":0,"44346":1,"44347":0,"44348":0,"44349":0,"44350":0,"44351":0,"44352":1,"44353":0,"44354":0,"44355":1,"44356":0,"44357":0,"44358":0,"44359":0,"44360":0,"44361":0,"44362":0,"44363":0,"44364":0,"44365":0,"44366":1,"44367":0,"44368":1,"44369":0,"44370":0,"44371":1,"44372":0,"44373":0,"44374":0,"44375":0,"44376":0,"44377":0,"44378":0,"44379":0,"44380":0,"44381":0,"44382":1,"44383":0,"44384":0,"44385":1,"44386":0,"44387":0,"44388":0,"44389":0,"44390":0,"44391":0,"44392":0,"44393":0,"44394":0,"44395":0,"44396":0,"44397":1,"44398":1,"44399":0,"44400":0,"44401":0,"44402":0,"44403":0,"44404":0,"44405":0,"44406":1,"44407":0,"44408":1,"44409":0,"44410":0,"44411":0,"44412":1,"44413":1,"44414":1,"44415":1,"44416":1,"44417":0,"44418":1,"44419":0,"44420":1,"44421":1,"44422":1,"44423":1,"44424":0,"44425":0,"44426":0,"44427":0,"44428":1,"44429":0,"44430":1,"44431":0,"44432":0,"44433":0,"44434":0,"44435":0,"44436":0,"44437":0,"44438":0,"44439":0,"44440":0,"44441":0,"44442":0,"44443":0,"44444":1,"44445":1,"44446":0,"44447":0,"44448":1,"44449":0,"44450":0,"44451":0,"44452":1,"44453":1,"44454":0,"44455":0,"44456":1,"44457":0,"44458":1,"44459":0,"44460":0,"44461":0,"44462":0,"44463":1,"44464":0,"44465":0,"44466":1,"44467":0,"44468":0,"44469":0,"44470":0,"44471":0,"44472":0,"44473":0,"44474":0,"44475":0,"44476":0,"44477":1,"44478":0,"44479":0,"44480":0,"44481":1,"44482":0,"44483":0,"44484":0,"44485":0,"44486":0,"44487":1,"44488":0,"44489":1,"44490":1,"44491":1,"44492":0,"44493":0,"44494":0,"44495":0,"44496":0,"44497":0,"44498":0,"44499":0,"44500":0,"44501":0,"44502":1,"44503":1,"44504":0,"44505":0,"44506":0,"44507":0,"44508":0,"44509":0,"44510":0,"44511":1,"44512":0,"44513":0,"44514":0,"44515":1,"44516":0,"44517":1,"44518":0,"44519":0,"44520":0,"44521":1,"44522":1,"44523":0,"44524":0,"44525":0,"44526":0,"44527":0,"44528":0,"44529":0,"44530":0,"44531":0,"44532":0,"44533":0,"44534":0,"44535":0,"44536":0,"44537":0,"44538":0,"44539":1,"44540":1,"44541":0,"44542":0,"44543":0,"44544":0,"44545":0,"44546":0,"44547":0,"44548":0,"44549":0,"44550":0,"44551":1,"44552":0,"44553":0,"44554":0,"44555":0,"44556":0,"44557":1,"44558":1,"44559":0,"44560":0,"44561":1,"44562":1,"44563":0,"44564":0,"44565":1,"44566":1,"44567":0,"44568":0,"44569":0,"44570":0,"44571":0,"44572":0,"44573":0,"44574":0,"44575":0,"44576":0,"44577":0,"44578":0,"44579":1,"44580":0,"44581":0,"44582":0,"44583":0,"44584":1,"44585":0,"44586":0,"44587":0,"44588":1,"44589":1,"44590":1,"44591":0,"44592":1,"44593":0,"44594":0,"44595":0,"44596":0,"44597":0,"44598":0,"44599":0,"44600":1,"44601":0,"44602":1,"44603":1,"44604":0,"44605":0,"44606":1,"44607":0,"44608":1,"44609":0,"44610":0,"44611":1,"44612":0,"44613":0,"44614":0,"44615":0,"44616":0,"44617":0,"44618":1,"44619":1,"44620":0,"44621":0,"44622":0,"44623":0,"44624":0,"44625":0,"44626":0,"44627":1,"44628":0,"44629":0,"44630":1,"44631":0,"44632":1,"44633":1,"44634":0,"44635":0,"44636":1,"44637":0,"44638":0,"44639":0,"44640":0,"44641":0,"44642":0,"44643":0,"44644":0,"44645":0,"44646":0,"44647":0,"44648":0,"44649":1,"44650":1,"44651":0,"44652":0,"44653":0,"44654":0,"44655":0,"44656":0,"44657":0,"44658":0,"44659":0,"44660":0,"44661":0,"44662":0,"44663":0,"44664":0,"44665":0,"44666":0,"44667":0,"44668":0,"44669":0,"44670":0,"44671":0,"44672":0,"44673":0,"44674":0,"44675":1,"44676":0,"44677":1,"44678":0,"44679":0,"44680":0,"44681":0,"44682":0,"44683":0,"44684":0,"44685":0,"44686":0,"44687":0,"44688":0,"44689":1,"44690":0,"44691":0,"44692":0,"44693":1,"44694":0,"44695":1,"44696":0,"44697":0,"44698":1,"44699":0,"44700":0,"44701":1,"44702":0,"44703":0,"44704":0,"44705":1,"44706":1,"44707":0,"44708":0,"44709":0,"44710":1,"44711":0,"44712":1,"44713":0,"44714":0,"44715":0,"44716":0,"44717":0,"44718":0,"44719":0,"44720":0,"44721":0,"44722":0,"44723":0,"44724":0,"44725":1,"44726":0,"44727":1,"44728":1,"44729":0,"44730":0,"44731":0,"44732":0,"44733":0,"44734":0,"44735":1,"44736":0,"44737":0,"44738":0,"44739":0,"44740":0,"44741":0,"44742":0,"44743":1,"44744":0,"44745":0,"44746":0,"44747":0,"44748":0,"44749":1,"44750":0,"44751":0,"44752":0,"44753":1,"44754":1,"44755":0,"44756":0,"44757":0,"44758":0,"44759":0,"44760":0,"44761":0,"44762":1,"44763":0,"44764":0,"44765":1,"44766":0,"44767":1,"44768":0,"44769":1,"44770":0,"44771":0,"44772":0,"44773":0,"44774":0,"44775":0,"44776":1,"44777":0,"44778":0,"44779":0,"44780":0,"44781":0,"44782":1,"44783":0,"44784":1,"44785":0,"44786":0,"44787":0,"44788":0,"44789":1,"44790":1,"44791":0,"44792":0,"44793":0,"44794":0,"44795":1,"44796":0,"44797":0,"44798":1,"44799":0,"44800":0,"44801":0,"44802":0,"44803":0,"44804":0,"44805":0,"44806":1,"44807":0,"44808":0,"44809":0,"44810":0,"44811":1,"44812":0,"44813":0,"44814":1,"44815":0,"44816":0,"44817":0,"44818":1,"44819":1,"44820":1,"44821":1,"44822":0,"44823":0,"44824":0,"44825":0,"44826":1,"44827":0,"44828":0,"44829":0,"44830":0,"44831":0,"44832":0,"44833":0,"44834":0,"44835":0,"44836":0,"44837":0,"44838":0,"44839":0,"44840":0,"44841":0,"44842":1,"44843":1,"44844":1,"44845":0,"44846":0,"44847":1,"44848":0,"44849":0,"44850":1,"44851":0,"44852":0,"44853":0,"44854":0,"44855":0,"44856":0,"44857":0,"44858":0,"44859":1,"44860":0,"44861":0,"44862":0,"44863":1,"44864":0,"44865":0,"44866":0,"44867":0,"44868":0,"44869":1,"44870":0,"44871":0,"44872":0,"44873":0,"44874":0,"44875":0,"44876":0,"44877":0,"44878":0,"44879":0,"44880":0,"44881":0,"44882":1,"44883":0,"44884":0,"44885":0,"44886":1,"44887":0,"44888":0,"44889":1,"44890":0,"44891":0,"44892":0,"44893":1,"44894":0,"44895":0,"44896":0,"44897":0,"44898":1,"44899":0,"44900":1,"44901":0,"44902":0,"44903":0,"44904":0,"44905":1,"44906":0,"44907":0,"44908":0,"44909":0,"44910":0,"44911":0,"44912":0,"44913":0,"44914":0,"44915":1,"44916":0,"44917":0,"44918":0,"44919":0,"44920":0,"44921":0,"44922":1,"44923":1,"44924":0,"44925":0,"44926":0,"44927":0,"44928":1,"44929":0,"44930":0,"44931":1,"44932":1,"44933":0,"44934":0,"44935":0,"44936":0,"44937":0,"44938":0,"44939":0,"44940":1,"44941":1,"44942":0,"44943":1,"44944":0,"44945":0,"44946":1,"44947":0,"44948":0,"44949":0,"44950":1,"44951":0,"44952":1,"44953":0,"44954":1,"44955":0,"44956":0,"44957":0,"44958":0,"44959":0,"44960":1,"44961":1,"44962":1,"44963":1,"44964":0,"44965":1,"44966":0,"44967":0,"44968":0,"44969":0,"44970":0,"44971":1,"44972":0,"44973":0,"44974":0,"44975":0,"44976":0,"44977":0,"44978":0,"44979":0,"44980":0,"44981":0,"44982":0,"44983":0,"44984":1,"44985":0,"44986":0,"44987":1,"44988":1,"44989":0,"44990":1,"44991":0,"44992":1,"44993":0,"44994":0,"44995":1,"44996":0,"44997":0,"44998":0,"44999":0,"45000":1,"45001":1,"45002":0,"45003":0,"45004":0,"45005":0,"45006":0,"45007":1,"45008":1,"45009":1,"45010":0,"45011":0,"45012":0,"45013":0,"45014":1,"45015":0,"45016":0,"45017":0,"45018":1,"45019":0,"45020":1,"45021":0,"45022":0,"45023":0,"45024":0,"45025":1,"45026":1,"45027":0,"45028":1,"45029":0,"45030":1,"45031":1,"45032":0,"45033":0,"45034":1,"45035":0,"45036":1,"45037":0,"45038":0,"45039":0,"45040":0,"45041":1,"45042":0,"45043":0,"45044":1,"45045":0,"45046":0,"45047":0,"45048":0,"45049":0,"45050":0,"45051":0,"45052":0,"45053":0,"45054":1,"45055":1,"45056":1,"45057":0,"45058":1,"45059":0,"45060":0,"45061":0,"45062":0,"45063":1,"45064":0,"45065":0,"45066":0,"45067":0,"45068":0,"45069":0,"45070":0,"45071":0,"45072":1,"45073":0,"45074":1,"45075":0,"45076":0,"45077":0,"45078":0,"45079":1,"45080":0,"45081":0,"45082":0,"45083":1,"45084":1,"45085":0,"45086":0,"45087":0,"45088":1,"45089":0,"45090":1,"45091":1,"45092":1,"45093":1,"45094":0,"45095":1,"45096":1,"45097":0,"45098":1,"45099":0,"45100":1,"45101":1,"45102":1,"45103":0,"45104":0,"45105":1,"45106":0,"45107":0,"45108":0,"45109":0,"45110":0,"45111":1,"45112":0,"45113":1,"45114":1,"45115":0,"45116":0,"45117":1,"45118":0,"45119":0,"45120":0,"45121":0,"45122":0,"45123":0,"45124":0,"45125":0,"45126":1,"45127":0,"45128":0,"45129":0,"45130":0,"45131":0,"45132":0,"45133":0,"45134":0,"45135":0,"45136":0,"45137":0,"45138":0,"45139":0,"45140":0,"45141":0,"45142":0,"45143":1,"45144":0,"45145":0,"45146":0,"45147":0,"45148":0,"45149":0,"45150":0,"45151":0,"45152":1,"45153":0,"45154":0,"45155":0,"45156":0,"45157":0,"45158":0,"45159":0,"45160":0,"45161":1,"45162":0,"45163":0,"45164":0,"45165":0,"45166":1,"45167":0,"45168":0,"45169":0,"45170":1,"45171":0,"45172":0,"45173":0,"45174":1,"45175":1,"45176":0,"45177":1,"45178":0,"45179":0,"45180":1,"45181":0,"45182":0,"45183":0,"45184":0,"45185":1,"45186":0,"45187":0,"45188":0,"45189":0,"45190":0,"45191":0,"45192":0,"45193":0,"45194":0,"45195":0,"45196":1,"45197":0,"45198":0,"45199":1,"45200":1,"45201":0,"45202":1,"45203":0,"45204":0,"45205":0,"45206":0,"45207":0,"45208":0,"45209":0,"45210":1,"45211":0,"45212":0,"45213":1,"45214":1,"45215":0,"45216":0,"45217":1,"45218":1,"45219":0,"45220":0,"45221":0,"45222":0,"45223":1,"45224":0,"45225":0,"45226":0,"45227":1,"45228":0,"45229":0,"45230":1,"45231":0,"45232":0,"45233":1,"45234":1,"45235":0,"45236":0,"45237":0,"45238":0,"45239":0,"45240":0,"45241":0,"45242":0,"45243":0,"45244":0,"45245":0,"45246":0,"45247":1,"45248":1,"45249":0,"45250":0,"45251":1,"45252":0,"45253":0,"45254":0,"45255":0,"45256":0,"45257":0,"45258":0,"45259":1,"45260":0,"45261":0,"45262":0,"45263":1,"45264":0,"45265":0,"45266":0,"45267":1,"45268":0,"45269":1,"45270":1,"45271":0,"45272":1,"45273":0,"45274":0,"45275":0,"45276":0,"45277":0,"45278":1,"45279":1,"45280":1,"45281":0,"45282":0,"45283":0,"45284":1,"45285":1,"45286":1,"45287":0,"45288":0,"45289":0,"45290":0,"45291":0,"45292":0,"45293":0,"45294":0,"45295":1,"45296":0,"45297":0,"45298":0,"45299":0,"45300":0,"45301":1,"45302":0,"45303":0,"45304":0,"45305":0,"45306":0,"45307":0,"45308":0,"45309":0,"45310":1,"45311":0,"45312":1,"45313":0,"45314":1,"45315":1,"45316":0,"45317":0,"45318":1,"45319":0,"45320":1,"45321":0,"45322":0,"45323":0,"45324":0,"45325":0,"45326":0,"45327":0,"45328":0,"45329":0,"45330":0,"45331":0,"45332":0,"45333":0,"45334":1,"45335":0,"45336":0,"45337":0,"45338":0,"45339":0,"45340":0,"45341":0,"45342":0,"45343":1,"45344":0,"45345":1,"45346":0,"45347":0,"45348":1,"45349":0,"45350":1,"45351":0,"45352":0,"45353":0,"45354":0,"45355":0,"45356":1,"45357":0,"45358":0,"45359":0,"45360":0,"45361":0,"45362":0,"45363":0,"45364":0,"45365":0,"45366":0,"45367":0,"45368":0,"45369":0,"45370":1,"45371":0,"45372":0,"45373":1,"45374":0,"45375":0,"45376":0,"45377":0,"45378":0,"45379":0,"45380":0,"45381":0,"45382":0,"45383":0,"45384":0,"45385":0,"45386":1,"45387":0,"45388":0,"45389":0,"45390":0,"45391":0,"45392":1,"45393":0,"45394":0,"45395":0,"45396":1,"45397":1,"45398":1,"45399":0,"45400":0,"45401":0,"45402":0,"45403":0,"45404":1,"45405":1,"45406":0,"45407":0,"45408":0,"45409":0,"45410":0,"45411":0,"45412":0,"45413":1,"45414":0,"45415":0,"45416":0,"45417":0,"45418":0,"45419":0,"45420":0,"45421":0,"45422":1,"45423":1,"45424":0,"45425":0,"45426":0,"45427":0,"45428":0,"45429":1,"45430":0,"45431":1,"45432":0,"45433":0,"45434":0,"45435":0,"45436":0,"45437":0,"45438":0,"45439":1,"45440":0,"45441":0,"45442":0,"45443":0,"45444":0,"45445":0,"45446":1,"45447":0,"45448":0,"45449":0,"45450":0,"45451":0,"45452":0,"45453":0,"45454":0,"45455":0,"45456":0,"45457":0,"45458":0,"45459":0,"45460":0,"45461":0,"45462":0,"45463":0,"45464":0,"45465":1,"45466":0,"45467":0,"45468":0,"45469":1,"45470":0,"45471":1,"45472":0,"45473":0,"45474":1,"45475":1,"45476":0,"45477":1,"45478":0,"45479":0,"45480":0,"45481":1,"45482":0,"45483":1,"45484":0,"45485":0,"45486":0,"45487":0,"45488":1,"45489":0,"45490":0,"45491":0,"45492":0,"45493":0,"45494":0,"45495":0,"45496":0,"45497":0,"45498":1,"45499":0,"45500":1,"45501":0,"45502":0,"45503":0,"45504":0,"45505":1,"45506":1,"45507":1,"45508":0,"45509":0,"45510":0,"45511":0,"45512":0,"45513":0,"45514":0,"45515":0,"45516":0,"45517":0,"45518":0,"45519":1,"45520":1,"45521":0,"45522":0,"45523":0,"45524":0,"45525":0,"45526":1,"45527":0,"45528":0,"45529":0,"45530":1,"45531":0,"45532":0,"45533":0,"45534":0,"45535":1,"45536":1,"45537":0,"45538":1,"45539":0,"45540":0,"45541":0,"45542":0,"45543":0,"45544":0,"45545":1,"45546":0,"45547":0,"45548":0,"45549":1,"45550":1,"45551":0,"45552":0,"45553":0,"45554":0,"45555":0,"45556":0,"45557":1,"45558":0,"45559":0,"45560":0,"45561":0,"45562":1,"45563":0,"45564":0,"45565":0,"45566":0,"45567":0,"45568":1,"45569":0,"45570":0,"45571":0,"45572":1,"45573":0,"45574":1,"45575":1,"45576":0,"45577":0,"45578":0,"45579":0,"45580":0,"45581":1,"45582":0,"45583":0,"45584":0,"45585":0,"45586":0,"45587":0,"45588":1,"45589":0,"45590":0,"45591":0,"45592":0,"45593":0,"45594":0,"45595":0,"45596":0,"45597":0,"45598":0,"45599":0,"45600":0,"45601":0,"45602":0,"45603":1,"45604":0,"45605":1,"45606":0,"45607":0,"45608":0,"45609":0,"45610":1,"45611":1,"45612":0,"45613":0,"45614":0,"45615":1,"45616":0,"45617":1,"45618":0,"45619":1,"45620":0,"45621":0,"45622":0,"45623":0,"45624":0,"45625":0,"45626":0,"45627":0,"45628":0,"45629":0,"45630":1,"45631":1,"45632":0,"45633":0,"45634":1,"45635":0,"45636":1,"45637":0,"45638":0,"45639":0,"45640":0,"45641":0,"45642":0,"45643":1,"45644":1,"45645":0,"45646":0,"45647":0,"45648":1,"45649":0,"45650":0,"45651":0,"45652":0,"45653":0,"45654":0,"45655":1,"45656":1,"45657":0,"45658":0,"45659":0,"45660":0,"45661":0,"45662":0,"45663":0,"45664":0,"45665":0,"45666":0,"45667":0,"45668":1,"45669":1,"45670":0,"45671":0,"45672":0,"45673":0,"45674":0,"45675":0,"45676":0,"45677":0,"45678":0,"45679":0,"45680":0,"45681":0,"45682":0,"45683":0,"45684":0,"45685":0,"45686":0,"45687":0,"45688":0,"45689":0,"45690":0,"45691":0,"45692":0,"45693":0,"45694":0,"45695":0,"45696":1,"45697":1,"45698":1,"45699":0,"45700":0,"45701":0,"45702":1,"45703":1,"45704":0,"45705":0,"45706":0,"45707":0,"45708":0,"45709":1,"45710":1,"45711":0,"45712":1,"45713":0,"45714":0,"45715":0,"45716":0,"45717":0,"45718":0,"45719":0,"45720":1,"45721":0,"45722":1,"45723":0,"45724":1,"45725":0,"45726":0,"45727":0,"45728":0,"45729":0,"45730":1,"45731":0,"45732":1,"45733":1,"45734":0,"45735":0,"45736":0,"45737":0,"45738":0,"45739":0,"45740":1,"45741":0,"45742":0,"45743":0,"45744":0,"45745":0,"45746":1,"45747":0,"45748":0,"45749":1,"45750":0,"45751":1,"45752":0,"45753":0,"45754":1,"45755":0,"45756":1,"45757":1,"45758":1,"45759":0,"45760":1,"45761":0,"45762":0,"45763":0,"45764":1,"45765":1,"45766":0,"45767":0,"45768":1,"45769":0,"45770":0,"45771":0,"45772":1,"45773":0,"45774":0,"45775":0,"45776":1,"45777":1,"45778":1,"45779":0,"45780":0,"45781":0,"45782":0,"45783":0,"45784":0,"45785":1,"45786":0,"45787":0,"45788":0,"45789":0,"45790":0,"45791":0,"45792":0,"45793":0,"45794":0,"45795":0,"45796":1,"45797":1,"45798":0,"45799":0,"45800":1,"45801":1,"45802":0,"45803":0,"45804":0,"45805":0,"45806":0,"45807":0,"45808":0,"45809":1,"45810":0,"45811":0,"45812":0,"45813":0,"45814":0,"45815":0,"45816":0,"45817":0,"45818":1,"45819":0,"45820":0,"45821":0,"45822":0,"45823":0,"45824":1,"45825":1,"45826":1,"45827":0,"45828":1,"45829":0,"45830":0,"45831":1,"45832":0,"45833":0,"45834":0,"45835":1,"45836":1,"45837":1,"45838":0,"45839":0,"45840":0,"45841":1,"45842":1,"45843":0,"45844":0,"45845":0,"45846":0,"45847":0,"45848":1,"45849":1,"45850":0,"45851":0,"45852":0,"45853":0,"45854":0,"45855":0,"45856":0,"45857":0,"45858":0,"45859":0,"45860":0,"45861":0,"45862":0,"45863":0,"45864":0,"45865":1,"45866":0,"45867":0,"45868":0,"45869":0,"45870":0,"45871":0,"45872":0,"45873":1,"45874":0,"45875":1,"45876":0,"45877":1,"45878":1,"45879":0,"45880":0,"45881":1,"45882":0,"45883":1,"45884":0,"45885":0,"45886":1,"45887":0,"45888":1,"45889":0,"45890":1,"45891":0,"45892":1,"45893":0,"45894":0,"45895":0,"45896":0,"45897":1,"45898":0,"45899":0,"45900":1,"45901":0,"45902":0,"45903":0,"45904":1,"45905":0,"45906":0,"45907":0,"45908":0,"45909":0,"45910":0,"45911":0,"45912":0,"45913":1,"45914":1,"45915":1,"45916":0,"45917":1,"45918":1,"45919":0,"45920":0,"45921":0,"45922":1,"45923":0,"45924":0,"45925":0,"45926":0,"45927":0,"45928":0,"45929":1,"45930":0,"45931":0,"45932":1,"45933":0,"45934":1,"45935":1,"45936":0,"45937":1,"45938":0,"45939":0,"45940":0,"45941":0,"45942":0,"45943":0,"45944":0,"45945":0,"45946":0,"45947":1,"45948":0,"45949":1,"45950":0,"45951":0,"45952":1,"45953":0,"45954":1,"45955":0,"45956":0,"45957":1,"45958":0,"45959":0,"45960":0,"45961":0,"45962":1,"45963":1,"45964":0,"45965":1,"45966":1,"45967":1,"45968":0,"45969":1,"45970":0,"45971":0,"45972":0,"45973":0,"45974":0,"45975":0,"45976":0,"45977":0,"45978":0,"45979":0,"45980":0,"45981":0,"45982":0,"45983":0,"45984":0,"45985":0,"45986":0,"45987":1,"45988":0,"45989":1,"45990":0,"45991":0,"45992":1,"45993":0,"45994":0,"45995":0,"45996":0,"45997":1,"45998":1,"45999":1,"46000":0,"46001":0,"46002":0,"46003":0,"46004":0,"46005":0,"46006":0,"46007":0,"46008":0,"46009":0,"46010":0,"46011":1,"46012":0,"46013":0,"46014":0,"46015":0,"46016":0,"46017":1,"46018":0,"46019":0,"46020":0,"46021":1,"46022":0,"46023":0,"46024":0,"46025":1,"46026":0,"46027":0,"46028":0,"46029":1,"46030":0,"46031":1,"46032":1,"46033":0,"46034":0,"46035":0,"46036":1,"46037":0,"46038":0,"46039":1,"46040":1,"46041":0,"46042":0,"46043":1,"46044":0,"46045":1,"46046":0,"46047":0,"46048":0,"46049":0,"46050":0,"46051":0,"46052":0,"46053":1,"46054":1,"46055":0,"46056":0,"46057":0,"46058":0,"46059":0,"46060":0,"46061":0,"46062":0,"46063":0,"46064":0,"46065":1,"46066":0,"46067":0,"46068":0,"46069":1,"46070":0,"46071":0,"46072":0,"46073":0,"46074":0,"46075":0,"46076":0,"46077":0,"46078":0,"46079":0,"46080":1,"46081":0,"46082":0,"46083":1,"46084":0,"46085":0,"46086":0,"46087":0,"46088":0,"46089":0,"46090":0,"46091":0,"46092":0,"46093":0,"46094":1,"46095":1,"46096":1,"46097":0,"46098":0,"46099":0,"46100":1,"46101":0,"46102":1,"46103":0,"46104":0,"46105":0,"46106":0,"46107":1,"46108":0,"46109":1,"46110":0,"46111":0,"46112":1,"46113":1,"46114":0,"46115":1,"46116":1,"46117":0,"46118":0,"46119":0,"46120":0,"46121":0,"46122":1,"46123":1,"46124":0,"46125":0,"46126":1,"46127":0,"46128":0,"46129":0,"46130":1,"46131":0,"46132":0,"46133":0,"46134":0,"46135":1,"46136":0,"46137":0,"46138":0,"46139":1,"46140":0,"46141":0,"46142":0,"46143":0,"46144":0,"46145":0,"46146":0,"46147":0,"46148":0,"46149":0,"46150":0,"46151":1,"46152":0,"46153":0,"46154":0,"46155":1,"46156":0,"46157":1,"46158":0,"46159":0,"46160":0,"46161":0,"46162":1,"46163":0,"46164":0,"46165":1,"46166":0,"46167":0,"46168":0,"46169":0,"46170":0,"46171":0,"46172":1,"46173":0,"46174":0,"46175":0,"46176":0,"46177":0,"46178":0,"46179":0,"46180":0,"46181":0,"46182":1,"46183":0,"46184":0,"46185":1,"46186":0,"46187":0,"46188":0,"46189":0,"46190":1,"46191":0,"46192":0,"46193":0,"46194":1,"46195":0,"46196":0,"46197":0,"46198":0,"46199":1,"46200":0,"46201":0,"46202":1,"46203":0,"46204":1,"46205":0,"46206":0,"46207":1,"46208":0,"46209":0,"46210":0,"46211":0,"46212":1,"46213":1,"46214":0,"46215":0,"46216":0,"46217":0,"46218":0,"46219":0,"46220":0,"46221":0,"46222":1,"46223":0,"46224":0,"46225":1,"46226":0,"46227":0,"46228":0,"46229":0,"46230":0,"46231":0,"46232":0,"46233":0,"46234":0,"46235":0,"46236":0,"46237":0,"46238":1,"46239":0,"46240":0,"46241":0,"46242":0,"46243":0,"46244":0,"46245":1,"46246":1,"46247":0,"46248":1,"46249":0,"46250":0,"46251":1,"46252":1,"46253":0,"46254":0,"46255":0,"46256":0,"46257":0,"46258":1,"46259":0,"46260":0,"46261":0,"46262":0,"46263":1,"46264":0,"46265":0,"46266":0,"46267":0,"46268":0,"46269":1,"46270":0,"46271":0,"46272":1,"46273":0,"46274":0,"46275":0,"46276":1,"46277":1,"46278":0,"46279":0,"46280":0,"46281":0,"46282":0,"46283":0,"46284":0,"46285":0,"46286":0,"46287":1,"46288":0,"46289":0,"46290":0,"46291":1,"46292":0,"46293":1,"46294":0,"46295":0,"46296":1,"46297":0,"46298":0,"46299":1,"46300":0,"46301":0,"46302":0,"46303":1,"46304":1,"46305":0,"46306":0,"46307":1,"46308":0,"46309":0,"46310":0,"46311":0,"46312":0,"46313":0,"46314":1,"46315":0,"46316":0,"46317":0,"46318":0,"46319":0,"46320":0,"46321":0,"46322":1,"46323":0,"46324":1,"46325":0,"46326":0,"46327":0,"46328":1,"46329":1,"46330":0,"46331":0,"46332":0,"46333":0,"46334":1,"46335":1,"46336":0,"46337":0,"46338":1,"46339":0,"46340":0,"46341":1,"46342":0,"46343":0,"46344":0,"46345":0,"46346":1,"46347":0,"46348":0,"46349":0,"46350":0,"46351":1,"46352":1,"46353":0,"46354":0,"46355":1,"46356":1,"46357":0,"46358":0,"46359":0,"46360":1,"46361":0,"46362":0,"46363":1,"46364":1,"46365":0,"46366":1,"46367":0,"46368":1,"46369":0,"46370":0,"46371":0,"46372":0,"46373":1,"46374":0,"46375":0,"46376":0,"46377":0,"46378":1,"46379":1,"46380":0,"46381":0,"46382":0,"46383":1,"46384":0,"46385":0,"46386":0,"46387":1,"46388":1,"46389":0,"46390":0,"46391":0,"46392":0,"46393":0,"46394":1,"46395":0,"46396":0,"46397":0,"46398":0,"46399":0,"46400":0,"46401":0,"46402":0,"46403":0,"46404":0,"46405":0,"46406":0,"46407":0,"46408":0,"46409":0,"46410":0,"46411":0,"46412":0,"46413":0,"46414":0,"46415":1,"46416":1,"46417":1,"46418":0,"46419":0,"46420":0,"46421":1,"46422":0,"46423":1,"46424":0,"46425":0,"46426":0,"46427":0,"46428":0,"46429":1,"46430":0,"46431":1,"46432":0,"46433":0,"46434":1,"46435":0,"46436":1,"46437":0,"46438":0,"46439":0,"46440":0,"46441":0,"46442":0,"46443":0,"46444":1,"46445":0,"46446":0,"46447":0,"46448":0,"46449":0,"46450":0,"46451":0,"46452":0,"46453":1,"46454":0,"46455":0,"46456":0,"46457":0,"46458":0,"46459":1,"46460":0,"46461":0,"46462":1,"46463":0,"46464":0,"46465":0,"46466":0,"46467":0,"46468":1,"46469":0,"46470":1,"46471":0,"46472":1,"46473":0,"46474":0,"46475":1,"46476":0,"46477":1,"46478":0,"46479":0,"46480":0,"46481":0,"46482":0,"46483":0,"46484":0,"46485":0,"46486":1,"46487":0,"46488":0,"46489":0,"46490":0,"46491":0,"46492":0,"46493":1,"46494":0,"46495":0,"46496":0,"46497":0,"46498":0,"46499":0,"46500":0,"46501":0,"46502":0,"46503":0,"46504":0,"46505":0,"46506":0,"46507":0,"46508":1,"46509":0,"46510":1,"46511":0,"46512":0,"46513":0,"46514":1,"46515":0,"46516":0,"46517":0,"46518":0,"46519":0,"46520":1,"46521":1,"46522":0,"46523":0,"46524":0,"46525":0,"46526":0,"46527":1,"46528":0,"46529":1,"46530":0,"46531":0,"46532":0,"46533":0,"46534":1,"46535":0,"46536":0,"46537":0,"46538":0,"46539":0,"46540":1,"46541":0,"46542":0,"46543":1,"46544":0,"46545":0,"46546":0,"46547":0,"46548":0,"46549":1,"46550":0,"46551":0,"46552":0,"46553":1,"46554":1,"46555":0,"46556":0,"46557":0,"46558":0,"46559":0,"46560":0,"46561":0,"46562":0,"46563":0,"46564":1,"46565":1,"46566":0,"46567":0,"46568":0,"46569":0,"46570":0,"46571":0,"46572":0,"46573":0,"46574":0,"46575":1,"46576":0,"46577":0,"46578":0,"46579":1,"46580":1,"46581":1,"46582":0,"46583":0,"46584":0,"46585":1,"46586":0,"46587":1,"46588":0,"46589":0,"46590":1,"46591":0,"46592":1,"46593":1,"46594":0,"46595":0,"46596":1,"46597":0,"46598":0,"46599":0,"46600":0,"46601":0,"46602":0,"46603":0,"46604":0,"46605":1,"46606":0,"46607":0,"46608":0,"46609":1,"46610":0,"46611":0,"46612":0,"46613":0,"46614":0,"46615":0,"46616":1,"46617":0,"46618":0,"46619":1,"46620":0,"46621":0,"46622":1,"46623":0,"46624":0,"46625":0,"46626":0,"46627":0,"46628":1,"46629":0,"46630":0,"46631":0,"46632":1,"46633":1,"46634":1,"46635":1,"46636":0,"46637":1,"46638":0,"46639":0,"46640":0,"46641":1,"46642":0,"46643":0,"46644":0,"46645":1,"46646":0,"46647":0,"46648":0,"46649":0,"46650":0,"46651":0,"46652":0,"46653":0,"46654":1,"46655":0,"46656":0,"46657":1,"46658":0,"46659":0,"46660":0,"46661":1,"46662":1,"46663":0,"46664":1,"46665":0,"46666":0,"46667":0,"46668":0,"46669":0,"46670":1,"46671":0,"46672":0,"46673":0,"46674":0,"46675":0,"46676":0,"46677":0,"46678":0,"46679":0,"46680":0,"46681":1,"46682":1,"46683":0,"46684":0,"46685":0,"46686":0,"46687":1,"46688":0,"46689":1,"46690":0,"46691":0,"46692":0,"46693":1,"46694":1,"46695":0,"46696":0,"46697":1,"46698":0,"46699":0,"46700":1,"46701":1,"46702":0,"46703":1,"46704":0,"46705":0,"46706":1,"46707":0,"46708":0,"46709":0,"46710":0,"46711":0,"46712":1,"46713":0,"46714":0,"46715":0,"46716":0,"46717":0,"46718":0,"46719":0,"46720":0,"46721":0,"46722":0,"46723":0,"46724":0,"46725":1,"46726":0,"46727":0,"46728":0,"46729":0,"46730":0,"46731":0,"46732":0,"46733":0,"46734":0,"46735":1,"46736":1,"46737":0,"46738":0,"46739":1,"46740":0,"46741":0,"46742":0,"46743":0,"46744":0,"46745":0,"46746":0,"46747":0,"46748":0,"46749":0,"46750":1,"46751":0,"46752":0,"46753":0,"46754":0,"46755":0,"46756":1,"46757":0,"46758":0,"46759":0,"46760":0,"46761":1,"46762":0,"46763":0,"46764":1,"46765":0,"46766":0,"46767":0,"46768":1,"46769":0,"46770":0,"46771":0,"46772":0,"46773":0,"46774":0,"46775":0,"46776":1,"46777":0,"46778":1,"46779":0,"46780":0,"46781":1,"46782":0,"46783":0,"46784":0,"46785":0,"46786":0,"46787":0,"46788":0,"46789":1,"46790":0,"46791":1,"46792":0,"46793":0,"46794":1,"46795":1,"46796":0,"46797":0,"46798":0,"46799":0,"46800":0,"46801":0,"46802":0,"46803":0,"46804":0,"46805":1,"46806":0,"46807":0,"46808":0,"46809":0,"46810":0,"46811":0,"46812":1,"46813":1,"46814":0,"46815":0,"46816":0,"46817":0,"46818":0,"46819":0,"46820":0,"46821":1,"46822":0,"46823":0,"46824":1,"46825":0,"46826":1,"46827":0,"46828":1,"46829":0,"46830":0,"46831":0,"46832":0,"46833":0,"46834":0,"46835":0,"46836":0,"46837":0,"46838":0,"46839":1,"46840":0,"46841":0,"46842":0,"46843":0,"46844":1,"46845":0,"46846":1,"46847":1,"46848":0,"46849":0,"46850":0,"46851":0,"46852":0,"46853":0,"46854":0,"46855":0,"46856":1,"46857":0,"46858":0,"46859":0,"46860":0,"46861":0,"46862":0,"46863":0,"46864":0,"46865":1,"46866":0,"46867":0,"46868":1,"46869":0,"46870":0,"46871":0,"46872":0,"46873":0,"46874":0,"46875":0,"46876":1,"46877":1,"46878":0,"46879":0,"46880":0,"46881":0,"46882":0,"46883":0,"46884":0,"46885":0,"46886":1,"46887":0,"46888":0,"46889":0,"46890":0,"46891":0,"46892":0,"46893":0,"46894":0,"46895":1,"46896":0,"46897":0,"46898":0,"46899":0,"46900":0,"46901":0,"46902":0,"46903":0,"46904":1,"46905":0,"46906":1,"46907":0,"46908":0,"46909":0,"46910":0,"46911":1,"46912":0,"46913":0,"46914":0,"46915":0,"46916":0,"46917":1,"46918":0,"46919":1,"46920":0,"46921":0,"46922":0,"46923":0,"46924":0,"46925":0,"46926":1,"46927":1,"46928":0,"46929":0,"46930":0,"46931":0,"46932":0,"46933":0,"46934":0,"46935":0,"46936":0,"46937":0,"46938":1,"46939":0,"46940":0,"46941":0,"46942":0,"46943":0,"46944":0,"46945":1,"46946":1,"46947":0,"46948":0,"46949":0,"46950":0,"46951":0,"46952":0,"46953":0,"46954":1,"46955":1,"46956":1,"46957":1,"46958":0,"46959":0,"46960":0,"46961":1,"46962":1,"46963":0,"46964":1,"46965":1,"46966":1,"46967":0,"46968":0,"46969":1,"46970":0,"46971":1,"46972":0,"46973":0,"46974":1,"46975":1,"46976":0,"46977":0,"46978":0,"46979":0,"46980":1,"46981":1,"46982":0,"46983":1,"46984":0,"46985":0,"46986":1,"46987":0,"46988":0,"46989":0,"46990":0,"46991":1,"46992":1,"46993":0,"46994":0,"46995":1,"46996":0,"46997":1,"46998":0,"46999":0,"47000":0,"47001":1,"47002":0,"47003":0,"47004":0,"47005":0,"47006":0,"47007":0,"47008":0,"47009":1,"47010":0,"47011":1,"47012":0,"47013":0,"47014":1,"47015":0,"47016":1,"47017":1,"47018":1,"47019":1,"47020":0,"47021":0,"47022":0,"47023":0,"47024":0,"47025":0,"47026":0,"47027":0,"47028":0,"47029":0,"47030":0,"47031":0,"47032":0,"47033":0,"47034":0,"47035":0,"47036":1,"47037":0,"47038":1,"47039":0,"47040":0,"47041":1,"47042":0,"47043":0,"47044":0,"47045":0,"47046":0,"47047":1,"47048":1,"47049":0,"47050":0,"47051":1,"47052":0,"47053":1,"47054":0,"47055":0,"47056":1,"47057":1,"47058":1,"47059":0,"47060":0,"47061":0,"47062":1,"47063":0,"47064":0,"47065":0,"47066":0,"47067":0,"47068":0,"47069":0,"47070":1,"47071":0,"47072":0,"47073":0,"47074":0,"47075":1,"47076":0,"47077":0,"47078":0,"47079":0,"47080":0,"47081":0,"47082":0,"47083":0,"47084":0,"47085":0,"47086":0,"47087":0,"47088":0,"47089":1,"47090":1,"47091":0,"47092":0,"47093":0,"47094":0,"47095":1,"47096":0,"47097":0,"47098":0,"47099":0,"47100":0,"47101":0,"47102":0,"47103":0,"47104":0,"47105":1,"47106":0,"47107":0,"47108":0,"47109":0,"47110":0,"47111":0,"47112":0,"47113":0,"47114":0,"47115":1,"47116":0,"47117":0,"47118":0,"47119":1,"47120":0,"47121":0,"47122":0,"47123":0,"47124":0,"47125":0,"47126":0,"47127":0,"47128":0,"47129":1,"47130":0,"47131":0,"47132":0,"47133":1,"47134":0,"47135":1,"47136":1,"47137":0,"47138":0,"47139":1,"47140":0,"47141":0,"47142":0,"47143":1,"47144":0,"47145":0,"47146":0,"47147":1,"47148":1,"47149":0,"47150":1,"47151":0,"47152":0,"47153":0,"47154":1,"47155":0,"47156":0,"47157":0,"47158":0,"47159":0,"47160":0,"47161":1,"47162":0,"47163":1,"47164":0,"47165":0,"47166":0,"47167":0,"47168":0,"47169":1,"47170":0,"47171":1,"47172":0,"47173":0,"47174":0,"47175":0,"47176":1,"47177":1,"47178":0,"47179":1,"47180":0,"47181":1,"47182":0,"47183":1,"47184":1,"47185":0,"47186":0,"47187":0,"47188":1,"47189":0,"47190":1,"47191":1,"47192":1,"47193":0,"47194":0,"47195":0,"47196":1,"47197":0,"47198":0,"47199":0,"47200":1,"47201":0,"47202":0,"47203":0,"47204":0,"47205":0,"47206":0,"47207":1,"47208":1,"47209":0,"47210":0,"47211":0,"47212":0,"47213":1,"47214":0,"47215":0,"47216":0,"47217":1,"47218":0,"47219":0,"47220":1,"47221":0,"47222":1,"47223":0,"47224":0,"47225":0,"47226":0,"47227":0,"47228":0,"47229":0,"47230":0,"47231":0,"47232":1,"47233":1,"47234":1,"47235":0,"47236":0,"47237":0,"47238":1,"47239":1,"47240":0,"47241":1,"47242":0,"47243":0,"47244":0,"47245":0,"47246":0,"47247":0,"47248":0,"47249":0,"47250":0,"47251":0,"47252":0,"47253":0,"47254":0,"47255":1,"47256":0,"47257":1,"47258":0,"47259":0,"47260":0,"47261":0,"47262":1,"47263":0,"47264":0,"47265":0,"47266":0,"47267":0,"47268":1,"47269":1,"47270":0,"47271":0,"47272":0,"47273":0,"47274":0,"47275":0,"47276":0,"47277":0,"47278":0,"47279":1,"47280":0,"47281":0,"47282":0,"47283":1,"47284":0,"47285":0,"47286":0,"47287":0,"47288":0,"47289":1,"47290":0,"47291":0,"47292":0,"47293":0,"47294":0,"47295":0,"47296":0,"47297":0,"47298":0,"47299":0,"47300":1,"47301":0,"47302":0,"47303":0,"47304":0,"47305":0,"47306":0,"47307":1,"47308":1,"47309":0,"47310":0,"47311":0,"47312":0,"47313":1,"47314":0,"47315":0,"47316":0,"47317":1,"47318":0,"47319":0,"47320":1,"47321":0,"47322":0,"47323":0,"47324":0,"47325":0,"47326":0,"47327":0,"47328":1,"47329":0,"47330":1,"47331":0,"47332":0,"47333":0,"47334":1,"47335":0,"47336":0,"47337":0,"47338":0,"47339":0,"47340":0,"47341":1,"47342":0,"47343":0,"47344":0,"47345":0,"47346":1,"47347":0,"47348":0,"47349":0,"47350":0,"47351":0,"47352":1,"47353":0,"47354":1,"47355":0,"47356":1,"47357":0,"47358":1,"47359":0,"47360":0,"47361":0,"47362":1,"47363":1,"47364":0,"47365":0,"47366":0,"47367":0,"47368":0,"47369":0,"47370":0,"47371":1,"47372":0,"47373":0,"47374":0,"47375":0,"47376":1,"47377":1,"47378":0,"47379":0,"47380":0,"47381":0,"47382":0,"47383":1,"47384":0,"47385":0,"47386":0,"47387":0,"47388":0,"47389":1,"47390":1,"47391":0,"47392":0,"47393":0,"47394":0,"47395":0,"47396":1,"47397":0,"47398":0,"47399":0,"47400":0,"47401":0,"47402":0,"47403":0,"47404":0,"47405":0,"47406":0,"47407":0,"47408":0,"47409":0,"47410":0,"47411":0,"47412":1,"47413":0,"47414":1,"47415":0,"47416":1,"47417":0,"47418":0,"47419":0,"47420":0,"47421":0,"47422":0,"47423":0,"47424":0,"47425":1,"47426":1,"47427":1,"47428":0,"47429":1,"47430":0,"47431":0,"47432":0,"47433":0,"47434":1,"47435":1,"47436":0,"47437":0,"47438":0,"47439":0,"47440":0,"47441":0,"47442":1,"47443":0,"47444":0,"47445":0,"47446":1,"47447":0,"47448":0,"47449":0,"47450":1,"47451":1,"47452":0,"47453":0,"47454":0,"47455":0,"47456":0,"47457":0,"47458":0,"47459":0,"47460":1,"47461":0,"47462":0,"47463":0,"47464":0,"47465":0,"47466":0,"47467":0,"47468":0,"47469":0,"47470":0,"47471":0,"47472":1,"47473":1,"47474":0,"47475":0,"47476":0,"47477":1,"47478":0,"47479":0,"47480":1,"47481":0,"47482":0,"47483":1,"47484":1,"47485":0,"47486":1,"47487":0,"47488":0,"47489":0,"47490":0,"47491":0,"47492":0,"47493":1,"47494":0,"47495":1,"47496":0,"47497":0,"47498":0,"47499":0,"47500":0,"47501":1,"47502":0,"47503":0,"47504":0,"47505":0,"47506":0,"47507":0,"47508":0,"47509":0,"47510":0,"47511":1,"47512":0,"47513":0,"47514":1,"47515":0,"47516":0,"47517":0,"47518":0,"47519":0,"47520":0,"47521":1,"47522":0,"47523":0,"47524":0,"47525":0,"47526":1,"47527":0,"47528":0,"47529":0,"47530":0,"47531":1,"47532":0,"47533":0,"47534":0,"47535":1,"47536":1,"47537":0,"47538":0,"47539":0,"47540":0,"47541":0,"47542":0,"47543":0,"47544":0,"47545":0,"47546":0,"47547":0,"47548":0,"47549":0,"47550":0,"47551":0,"47552":1,"47553":0,"47554":1,"47555":0,"47556":0,"47557":0,"47558":0,"47559":0,"47560":1,"47561":0,"47562":0,"47563":1,"47564":0,"47565":1,"47566":0,"47567":0,"47568":1,"47569":0,"47570":1,"47571":1,"47572":1,"47573":0,"47574":0,"47575":1,"47576":0,"47577":0,"47578":0,"47579":0,"47580":0,"47581":0,"47582":0,"47583":0,"47584":0,"47585":0,"47586":1,"47587":0,"47588":1,"47589":0,"47590":0,"47591":0,"47592":0,"47593":1,"47594":1,"47595":0,"47596":0,"47597":1,"47598":1,"47599":0,"47600":1,"47601":0,"47602":0,"47603":0,"47604":0,"47605":0,"47606":0,"47607":0,"47608":1,"47609":0,"47610":0,"47611":1,"47612":0,"47613":0,"47614":0,"47615":0,"47616":0,"47617":0,"47618":0,"47619":0,"47620":0,"47621":0,"47622":0,"47623":0,"47624":0,"47625":1,"47626":0,"47627":1,"47628":0,"47629":0,"47630":0,"47631":1,"47632":0,"47633":0,"47634":0,"47635":1,"47636":1,"47637":0,"47638":0,"47639":1,"47640":0,"47641":1,"47642":1,"47643":0,"47644":0,"47645":0,"47646":0,"47647":0,"47648":0,"47649":0,"47650":1,"47651":0,"47652":1,"47653":0,"47654":1,"47655":0,"47656":0,"47657":0,"47658":1,"47659":0,"47660":0,"47661":0,"47662":0,"47663":0,"47664":0,"47665":1,"47666":0,"47667":0,"47668":1,"47669":0,"47670":1,"47671":1,"47672":0,"47673":0,"47674":0,"47675":0,"47676":0,"47677":0,"47678":0,"47679":0,"47680":0,"47681":0,"47682":1,"47683":1,"47684":0,"47685":0,"47686":0,"47687":0,"47688":1,"47689":0,"47690":0,"47691":1,"47692":0,"47693":0,"47694":0,"47695":0,"47696":1,"47697":0,"47698":0,"47699":0,"47700":0,"47701":0,"47702":0,"47703":0,"47704":0,"47705":0,"47706":0,"47707":0,"47708":0,"47709":0,"47710":0,"47711":1,"47712":0,"47713":0,"47714":1,"47715":0,"47716":0,"47717":0,"47718":1,"47719":0,"47720":0,"47721":0,"47722":1,"47723":0,"47724":1,"47725":0,"47726":0,"47727":0,"47728":1,"47729":0,"47730":0,"47731":0,"47732":0,"47733":0,"47734":0,"47735":0,"47736":0,"47737":0,"47738":1,"47739":0,"47740":0,"47741":0,"47742":0,"47743":0,"47744":0,"47745":0,"47746":1,"47747":0,"47748":0,"47749":0,"47750":0,"47751":0,"47752":1,"47753":0,"47754":0,"47755":0,"47756":0,"47757":0,"47758":0,"47759":0,"47760":0,"47761":1,"47762":0,"47763":0,"47764":1,"47765":0,"47766":0,"47767":0,"47768":1,"47769":0,"47770":0,"47771":0,"47772":0,"47773":0,"47774":0,"47775":0,"47776":1,"47777":0,"47778":1,"47779":0,"47780":0,"47781":1,"47782":0,"47783":0,"47784":0,"47785":1,"47786":1,"47787":1,"47788":1,"47789":1,"47790":0,"47791":0,"47792":0,"47793":0,"47794":0,"47795":0,"47796":0,"47797":0,"47798":1,"47799":1,"47800":0,"47801":1,"47802":1,"47803":0,"47804":0,"47805":0,"47806":0,"47807":1,"47808":0,"47809":1,"47810":0,"47811":1,"47812":0,"47813":1,"47814":0,"47815":0,"47816":0,"47817":0,"47818":1,"47819":0,"47820":0,"47821":0,"47822":0,"47823":0,"47824":0,"47825":0,"47826":0,"47827":0,"47828":0,"47829":0,"47830":0,"47831":0,"47832":0,"47833":0,"47834":0,"47835":0,"47836":0,"47837":0,"47838":1,"47839":0,"47840":1,"47841":0,"47842":1,"47843":1,"47844":0,"47845":0,"47846":0,"47847":0,"47848":0,"47849":0,"47850":0,"47851":0,"47852":0,"47853":1,"47854":1,"47855":0,"47856":0,"47857":0,"47858":0,"47859":1,"47860":0,"47861":1,"47862":0,"47863":1,"47864":0,"47865":1,"47866":0,"47867":1,"47868":0,"47869":1,"47870":0,"47871":0,"47872":1,"47873":0,"47874":0,"47875":0,"47876":0,"47877":0,"47878":0,"47879":0,"47880":1,"47881":1,"47882":1,"47883":0,"47884":0,"47885":0,"47886":0,"47887":0,"47888":0,"47889":0,"47890":0,"47891":0,"47892":0,"47893":0,"47894":0,"47895":0,"47896":1,"47897":0,"47898":1,"47899":0,"47900":1,"47901":1,"47902":0,"47903":1,"47904":0,"47905":0,"47906":0,"47907":0,"47908":0,"47909":0,"47910":1,"47911":0,"47912":0,"47913":1,"47914":0,"47915":1,"47916":0,"47917":0,"47918":0,"47919":1,"47920":0,"47921":0,"47922":1,"47923":0,"47924":0,"47925":1,"47926":0,"47927":0,"47928":0,"47929":1,"47930":0,"47931":0,"47932":0,"47933":0,"47934":0,"47935":0,"47936":0,"47937":0,"47938":0,"47939":0,"47940":0,"47941":0,"47942":0,"47943":0,"47944":0,"47945":0,"47946":0,"47947":0,"47948":1,"47949":0,"47950":1,"47951":0,"47952":0,"47953":0,"47954":1,"47955":0,"47956":0,"47957":0,"47958":0,"47959":0,"47960":0,"47961":0,"47962":0,"47963":0,"47964":0,"47965":0,"47966":0,"47967":1,"47968":0,"47969":0,"47970":0,"47971":0,"47972":0,"47973":0,"47974":0,"47975":1,"47976":1,"47977":0,"47978":0,"47979":0,"47980":0,"47981":0,"47982":1,"47983":0,"47984":1,"47985":1,"47986":0,"47987":0,"47988":0,"47989":0,"47990":0,"47991":0,"47992":0,"47993":0,"47994":0,"47995":0,"47996":0,"47997":0,"47998":0,"47999":0,"48000":0,"48001":0,"48002":0,"48003":0,"48004":0,"48005":0,"48006":1,"48007":0,"48008":0,"48009":0,"48010":0,"48011":0,"48012":1,"48013":0,"48014":0,"48015":1,"48016":0,"48017":0,"48018":1,"48019":0,"48020":1,"48021":1,"48022":0,"48023":0,"48024":0,"48025":0,"48026":1,"48027":1,"48028":0,"48029":0,"48030":1,"48031":1,"48032":0,"48033":0,"48034":1,"48035":0,"48036":0,"48037":0,"48038":1,"48039":0,"48040":1,"48041":1,"48042":0,"48043":0,"48044":1,"48045":0,"48046":0,"48047":0,"48048":1,"48049":0,"48050":0,"48051":0,"48052":0,"48053":1,"48054":0,"48055":0,"48056":1,"48057":0,"48058":1,"48059":1,"48060":0,"48061":0,"48062":0,"48063":0,"48064":0,"48065":1,"48066":0,"48067":0,"48068":0,"48069":1,"48070":1,"48071":1,"48072":0,"48073":0,"48074":0,"48075":0,"48076":0,"48077":0,"48078":0,"48079":1,"48080":0,"48081":0,"48082":0,"48083":0,"48084":0,"48085":0,"48086":0,"48087":0,"48088":0,"48089":0,"48090":0,"48091":0,"48092":0,"48093":0,"48094":1,"48095":0,"48096":0,"48097":0,"48098":0,"48099":0,"48100":0,"48101":0,"48102":0,"48103":0,"48104":1,"48105":0,"48106":1,"48107":0,"48108":0,"48109":1,"48110":1,"48111":0,"48112":0,"48113":1,"48114":1,"48115":0,"48116":0,"48117":0,"48118":0,"48119":0,"48120":0,"48121":1,"48122":0,"48123":1,"48124":0,"48125":0,"48126":1,"48127":0,"48128":0,"48129":0,"48130":0,"48131":1,"48132":0,"48133":1,"48134":0,"48135":0,"48136":0,"48137":1,"48138":0,"48139":0,"48140":1,"48141":0,"48142":1,"48143":0,"48144":0,"48145":0,"48146":0,"48147":0,"48148":1,"48149":0,"48150":0,"48151":0,"48152":1,"48153":0,"48154":0,"48155":0,"48156":0,"48157":0,"48158":0,"48159":1,"48160":0,"48161":0,"48162":1,"48163":1,"48164":1,"48165":0,"48166":0,"48167":0,"48168":0,"48169":0,"48170":1,"48171":0,"48172":1,"48173":0,"48174":0,"48175":0,"48176":0,"48177":1,"48178":0,"48179":1,"48180":0,"48181":0,"48182":0,"48183":1,"48184":1,"48185":0,"48186":0,"48187":0,"48188":0,"48189":0,"48190":0,"48191":0,"48192":1,"48193":1,"48194":0,"48195":0,"48196":0,"48197":0,"48198":1,"48199":0,"48200":0,"48201":0,"48202":0,"48203":1,"48204":0,"48205":1,"48206":0,"48207":0,"48208":0,"48209":0,"48210":1,"48211":0,"48212":0,"48213":1,"48214":0,"48215":1,"48216":1,"48217":0,"48218":0,"48219":0,"48220":0,"48221":0,"48222":0,"48223":0,"48224":0,"48225":0,"48226":1,"48227":0,"48228":0,"48229":0,"48230":1,"48231":0,"48232":0,"48233":0,"48234":0,"48235":0,"48236":0,"48237":1,"48238":0,"48239":0,"48240":0,"48241":0,"48242":1,"48243":0,"48244":0,"48245":0,"48246":0,"48247":0,"48248":0,"48249":1,"48250":0,"48251":0,"48252":0,"48253":0,"48254":0,"48255":0,"48256":0,"48257":0,"48258":0,"48259":1,"48260":0,"48261":0,"48262":0,"48263":0,"48264":0,"48265":0,"48266":1,"48267":0,"48268":0,"48269":0,"48270":0,"48271":0,"48272":1,"48273":0,"48274":0,"48275":0,"48276":0,"48277":0,"48278":0,"48279":0,"48280":1,"48281":1,"48282":0,"48283":0,"48284":0,"48285":0,"48286":0,"48287":0,"48288":1,"48289":0,"48290":0,"48291":1,"48292":1,"48293":0,"48294":0,"48295":0,"48296":1,"48297":0,"48298":0,"48299":0,"48300":0,"48301":0,"48302":0,"48303":0,"48304":0,"48305":0,"48306":1,"48307":1,"48308":1,"48309":0,"48310":0,"48311":0,"48312":0,"48313":0,"48314":0,"48315":0,"48316":0,"48317":0,"48318":1,"48319":1,"48320":1,"48321":0,"48322":0,"48323":0,"48324":0,"48325":0,"48326":0,"48327":0,"48328":0,"48329":0,"48330":0,"48331":0,"48332":0,"48333":0,"48334":1,"48335":0,"48336":1,"48337":0,"48338":0,"48339":1,"48340":1,"48341":0,"48342":1,"48343":0,"48344":1,"48345":0,"48346":0,"48347":0,"48348":0,"48349":0,"48350":0,"48351":0,"48352":0,"48353":0,"48354":0,"48355":1,"48356":0,"48357":0,"48358":1,"48359":0,"48360":0,"48361":0,"48362":1,"48363":0,"48364":0,"48365":0,"48366":0,"48367":0,"48368":1,"48369":0,"48370":0,"48371":0,"48372":0,"48373":0,"48374":0,"48375":0,"48376":1,"48377":1,"48378":1,"48379":0,"48380":0,"48381":0,"48382":0,"48383":0,"48384":0,"48385":0,"48386":0,"48387":1,"48388":0,"48389":1,"48390":1,"48391":1,"48392":0,"48393":0,"48394":1,"48395":0,"48396":0,"48397":0,"48398":0,"48399":1,"48400":1,"48401":1,"48402":0,"48403":0,"48404":0,"48405":0,"48406":0,"48407":0,"48408":0,"48409":1,"48410":0,"48411":1,"48412":0,"48413":0,"48414":1,"48415":0,"48416":0,"48417":0,"48418":0,"48419":0,"48420":0,"48421":0,"48422":0,"48423":0,"48424":0,"48425":0,"48426":0,"48427":0,"48428":0,"48429":0,"48430":1,"48431":0,"48432":0,"48433":0,"48434":0,"48435":0,"48436":0,"48437":0,"48438":0,"48439":0,"48440":0,"48441":0,"48442":0,"48443":0,"48444":0,"48445":0,"48446":0,"48447":0,"48448":0,"48449":0,"48450":1,"48451":0,"48452":0,"48453":1,"48454":1,"48455":0,"48456":0,"48457":0,"48458":0,"48459":0,"48460":1,"48461":0,"48462":1,"48463":0,"48464":0,"48465":0,"48466":0,"48467":0,"48468":0,"48469":1,"48470":1,"48471":0,"48472":0,"48473":1,"48474":0,"48475":0,"48476":1,"48477":0,"48478":0,"48479":0,"48480":0,"48481":0,"48482":1,"48483":0,"48484":1,"48485":0,"48486":0,"48487":1,"48488":0,"48489":0,"48490":0,"48491":0,"48492":0,"48493":0,"48494":1,"48495":1,"48496":0,"48497":1,"48498":1,"48499":0,"48500":0,"48501":0,"48502":1,"48503":0,"48504":1,"48505":0,"48506":0,"48507":1,"48508":0,"48509":1,"48510":0,"48511":1,"48512":0,"48513":0,"48514":0,"48515":1,"48516":0,"48517":0,"48518":0,"48519":0,"48520":1,"48521":0,"48522":1,"48523":1,"48524":1,"48525":0,"48526":0,"48527":0,"48528":0,"48529":0,"48530":0,"48531":1,"48532":1,"48533":0,"48534":0,"48535":0,"48536":1,"48537":0,"48538":0,"48539":0,"48540":0,"48541":1,"48542":0,"48543":0,"48544":0,"48545":0,"48546":0,"48547":0,"48548":0,"48549":0,"48550":0,"48551":0,"48552":0,"48553":1,"48554":0,"48555":0,"48556":0,"48557":0,"48558":1,"48559":0,"48560":0,"48561":0,"48562":0,"48563":0,"48564":0,"48565":0,"48566":0,"48567":0,"48568":0,"48569":0,"48570":0,"48571":0,"48572":1,"48573":0,"48574":0,"48575":1,"48576":0,"48577":1,"48578":0,"48579":0,"48580":0,"48581":0,"48582":0,"48583":1,"48584":0,"48585":0,"48586":0,"48587":0,"48588":1,"48589":0,"48590":0,"48591":0,"48592":0,"48593":1,"48594":1,"48595":0,"48596":0,"48597":0,"48598":0,"48599":0,"48600":1,"48601":0,"48602":1,"48603":0,"48604":0,"48605":0,"48606":0,"48607":0,"48608":0,"48609":0,"48610":1,"48611":0,"48612":0,"48613":0,"48614":1,"48615":1,"48616":1,"48617":1,"48618":0,"48619":1,"48620":1,"48621":0,"48622":0,"48623":0,"48624":0,"48625":0,"48626":1,"48627":1,"48628":0,"48629":0,"48630":1,"48631":0,"48632":0,"48633":0,"48634":0,"48635":0,"48636":0,"48637":1,"48638":0,"48639":0,"48640":0,"48641":0,"48642":0,"48643":1,"48644":0,"48645":0,"48646":0,"48647":0,"48648":0,"48649":1,"48650":0,"48651":0,"48652":0,"48653":0,"48654":0,"48655":0,"48656":1,"48657":0,"48658":0,"48659":0,"48660":1,"48661":0,"48662":1,"48663":0,"48664":0,"48665":0,"48666":0,"48667":0,"48668":0,"48669":0,"48670":1,"48671":0,"48672":0,"48673":1,"48674":1,"48675":0,"48676":1,"48677":0,"48678":0,"48679":0,"48680":0,"48681":0,"48682":0,"48683":0,"48684":0,"48685":0,"48686":1,"48687":0,"48688":0,"48689":0,"48690":1,"48691":0,"48692":0,"48693":0,"48694":0,"48695":0,"48696":0,"48697":0,"48698":1,"48699":0,"48700":1,"48701":1,"48702":0,"48703":0,"48704":0,"48705":0,"48706":0,"48707":0,"48708":0,"48709":0,"48710":1,"48711":0,"48712":0,"48713":0,"48714":1,"48715":0,"48716":1,"48717":1,"48718":0,"48719":0,"48720":0,"48721":0,"48722":0,"48723":0,"48724":0,"48725":0,"48726":0,"48727":1,"48728":0,"48729":0,"48730":0,"48731":0,"48732":0,"48733":1,"48734":1,"48735":0,"48736":1,"48737":1,"48738":0,"48739":1,"48740":1,"48741":1,"48742":0,"48743":0,"48744":0,"48745":0,"48746":0,"48747":0,"48748":0,"48749":0,"48750":0,"48751":0,"48752":0,"48753":1,"48754":0,"48755":0,"48756":0,"48757":1,"48758":0,"48759":0,"48760":0,"48761":0,"48762":0,"48763":0,"48764":0,"48765":0,"48766":0,"48767":0,"48768":1,"48769":0,"48770":0,"48771":1,"48772":0,"48773":0,"48774":0,"48775":0,"48776":1,"48777":0,"48778":0,"48779":1,"48780":1,"48781":0,"48782":0,"48783":0,"48784":1,"48785":0,"48786":0,"48787":0,"48788":1,"48789":1,"48790":0,"48791":0,"48792":0,"48793":1,"48794":0,"48795":0,"48796":1,"48797":0,"48798":1,"48799":1,"48800":0,"48801":0,"48802":0,"48803":1,"48804":0,"48805":0,"48806":0,"48807":0,"48808":0,"48809":0,"48810":0,"48811":1,"48812":0,"48813":0,"48814":0,"48815":1,"48816":1,"48817":0,"48818":0,"48819":0,"48820":1,"48821":0,"48822":0,"48823":0,"48824":0,"48825":0,"48826":0,"48827":0,"48828":0,"48829":0,"48830":0,"48831":0,"48832":1,"48833":0,"48834":0,"48835":0,"48836":0,"48837":0,"48838":0,"48839":0,"48840":0,"48841":0,"48842":0,"48843":0,"48844":0,"48845":1,"48846":0,"48847":0,"48848":0,"48849":0,"48850":0,"48851":0,"48852":0,"48853":0,"48854":0,"48855":1,"48856":0,"48857":0,"48858":0,"48859":0,"48860":0,"48861":0,"48862":0,"48863":0,"48864":0,"48865":0,"48866":0,"48867":0,"48868":0,"48869":1,"48870":0,"48871":1,"48872":1,"48873":0,"48874":1,"48875":1,"48876":0,"48877":0,"48878":0,"48879":0,"48880":0,"48881":0,"48882":0,"48883":1,"48884":0,"48885":0,"48886":0,"48887":0,"48888":1,"48889":0,"48890":1,"48891":0,"48892":0,"48893":0,"48894":0,"48895":1,"48896":0,"48897":0,"48898":1,"48899":1,"48900":1,"48901":0,"48902":0,"48903":0,"48904":1,"48905":0,"48906":0,"48907":0,"48908":0,"48909":0,"48910":1,"48911":0,"48912":0,"48913":0,"48914":0,"48915":0,"48916":0,"48917":0,"48918":0,"48919":0,"48920":0,"48921":0,"48922":0,"48923":0,"48924":1,"48925":0,"48926":0,"48927":0,"48928":1,"48929":1,"48930":1,"48931":0,"48932":0,"48933":0,"48934":0,"48935":0,"48936":0,"48937":0,"48938":0,"48939":0,"48940":0,"48941":1,"48942":1,"48943":1,"48944":0,"48945":0,"48946":1,"48947":0,"48948":0,"48949":0,"48950":0,"48951":0,"48952":0,"48953":0,"48954":1,"48955":0,"48956":0,"48957":0,"48958":0,"48959":0,"48960":0,"48961":1,"48962":0,"48963":1,"48964":1,"48965":0,"48966":1,"48967":0,"48968":0,"48969":0,"48970":1,"48971":0,"48972":0,"48973":1,"48974":0,"48975":0,"48976":0,"48977":0,"48978":1,"48979":0,"48980":1,"48981":1,"48982":1,"48983":0,"48984":0,"48985":0,"48986":0,"48987":0,"48988":0,"48989":0,"48990":1,"48991":0,"48992":0,"48993":0,"48994":0,"48995":1,"48996":0,"48997":0,"48998":0,"48999":1,"49000":1,"49001":0,"49002":0,"49003":0,"49004":0,"49005":1,"49006":0,"49007":0,"49008":0,"49009":0,"49010":0,"49011":0,"49012":1,"49013":0,"49014":1,"49015":1,"49016":1,"49017":0,"49018":0,"49019":0,"49020":0,"49021":1,"49022":0,"49023":0,"49024":1,"49025":1,"49026":1,"49027":0,"49028":0,"49029":0,"49030":0,"49031":0,"49032":0,"49033":1,"49034":0,"49035":0,"49036":0,"49037":0,"49038":1,"49039":0,"49040":0,"49041":0,"49042":0,"49043":0,"49044":0,"49045":0,"49046":0,"49047":0,"49048":0,"49049":0,"49050":0,"49051":0,"49052":0,"49053":0,"49054":0,"49055":0,"49056":0,"49057":0,"49058":0,"49059":0,"49060":0,"49061":0,"49062":1,"49063":1,"49064":0,"49065":0,"49066":0,"49067":0,"49068":1,"49069":0,"49070":0,"49071":0,"49072":0,"49073":0,"49074":0,"49075":0,"49076":1,"49077":1,"49078":0,"49079":1,"49080":0,"49081":0,"49082":1,"49083":0,"49084":1,"49085":0,"49086":0,"49087":0,"49088":1,"49089":0,"49090":0,"49091":0,"49092":0,"49093":1,"49094":0,"49095":0,"49096":0,"49097":0,"49098":0,"49099":0,"49100":1,"49101":0,"49102":0,"49103":0,"49104":0,"49105":1,"49106":0,"49107":0,"49108":0,"49109":0,"49110":1,"49111":1,"49112":0,"49113":0,"49114":1,"49115":1,"49116":0,"49117":0,"49118":0,"49119":0,"49120":0,"49121":0,"49122":1,"49123":0,"49124":1,"49125":0,"49126":1,"49127":1,"49128":0,"49129":0,"49130":0,"49131":0,"49132":0,"49133":0,"49134":0,"49135":0,"49136":0,"49137":1,"49138":1,"49139":1,"49140":1,"49141":0,"49142":0,"49143":0,"49144":0,"49145":1,"49146":0,"49147":0,"49148":0,"49149":1,"49150":0,"49151":0,"49152":0,"49153":0,"49154":0,"49155":0,"49156":0,"49157":1,"49158":0,"49159":0,"49160":0,"49161":0,"49162":0,"49163":1,"49164":1,"49165":0,"49166":1,"49167":0,"49168":0,"49169":0,"49170":0,"49171":0,"49172":0,"49173":1,"49174":1,"49175":0,"49176":0,"49177":0,"49178":1,"49179":0,"49180":0,"49181":0,"49182":0,"49183":0,"49184":0,"49185":1,"49186":0,"49187":1,"49188":0,"49189":1,"49190":0,"49191":0,"49192":0,"49193":1,"49194":0,"49195":1,"49196":0,"49197":1,"49198":0,"49199":0,"49200":0,"49201":0,"49202":1,"49203":0,"49204":0,"49205":0,"49206":0,"49207":1,"49208":1,"49209":1,"49210":0,"49211":0,"49212":0,"49213":0,"49214":1,"49215":1,"49216":0,"49217":0,"49218":1,"49219":0,"49220":0,"49221":1,"49222":0,"49223":0,"49224":1,"49225":0,"49226":0,"49227":1,"49228":1,"49229":0,"49230":0,"49231":0,"49232":1,"49233":0,"49234":0,"49235":0,"49236":0,"49237":1,"49238":1,"49239":0,"49240":0,"49241":0,"49242":1,"49243":0,"49244":0,"49245":0,"49246":0,"49247":0,"49248":1,"49249":0,"49250":0,"49251":0,"49252":1,"49253":0,"49254":0,"49255":0,"49256":0,"49257":1,"49258":1,"49259":1,"49260":0,"49261":0,"49262":0,"49263":0,"49264":0,"49265":1,"49266":1,"49267":0,"49268":0,"49269":1,"49270":0,"49271":0,"49272":1,"49273":1,"49274":0,"49275":0,"49276":0,"49277":0,"49278":0,"49279":0,"49280":1,"49281":0,"49282":0,"49283":0,"49284":0,"49285":0,"49286":1,"49287":1,"49288":0,"49289":1,"49290":1,"49291":0,"49292":0,"49293":0,"49294":0,"49295":1,"49296":0,"49297":0,"49298":0,"49299":1,"49300":0,"49301":0,"49302":0,"49303":0,"49304":0,"49305":0,"49306":0,"49307":0,"49308":1,"49309":0,"49310":0,"49311":0,"49312":0,"49313":0,"49314":1,"49315":0,"49316":0,"49317":0,"49318":0,"49319":1,"49320":0,"49321":0,"49322":0,"49323":1,"49324":0,"49325":1,"49326":0,"49327":0,"49328":1,"49329":0,"49330":0,"49331":0,"49332":0,"49333":0,"49334":0,"49335":0,"49336":1,"49337":0,"49338":0,"49339":0,"49340":0,"49341":0,"49342":0,"49343":1,"49344":0,"49345":1,"49346":0,"49347":0,"49348":0,"49349":1,"49350":1,"49351":0,"49352":1,"49353":0,"49354":0,"49355":1,"49356":0,"49357":0,"49358":0,"49359":0,"49360":0,"49361":0,"49362":1,"49363":0,"49364":1,"49365":0,"49366":0,"49367":0,"49368":0,"49369":0,"49370":1,"49371":0,"49372":0,"49373":0,"49374":0,"49375":0,"49376":0,"49377":1,"49378":0,"49379":0,"49380":0,"49381":0,"49382":1,"49383":0,"49384":1,"49385":0,"49386":0,"49387":0,"49388":0,"49389":1,"49390":0,"49391":0,"49392":0,"49393":0,"49394":0,"49395":0,"49396":0,"49397":1,"49398":0,"49399":1,"49400":1,"49401":0,"49402":0,"49403":0,"49404":0,"49405":1,"49406":0,"49407":0,"49408":0,"49409":1,"49410":0,"49411":0,"49412":0,"49413":0,"49414":1,"49415":0,"49416":0,"49417":0,"49418":0,"49419":1,"49420":0,"49421":0,"49422":0,"49423":0,"49424":0,"49425":0,"49426":1,"49427":1,"49428":0,"49429":0,"49430":0,"49431":0,"49432":0,"49433":0,"49434":0,"49435":1,"49436":1,"49437":1,"49438":0,"49439":0,"49440":0,"49441":0,"49442":0,"49443":0,"49444":0,"49445":0,"49446":0,"49447":0,"49448":0,"49449":0,"49450":0,"49451":0,"49452":0,"49453":0,"49454":0,"49455":0,"49456":0,"49457":0,"49458":1,"49459":0,"49460":0,"49461":0,"49462":1,"49463":1,"49464":0,"49465":0,"49466":1,"49467":0,"49468":0,"49469":0,"49470":0,"49471":0,"49472":0,"49473":1,"49474":0,"49475":1,"49476":0,"49477":0,"49478":0,"49479":0,"49480":0,"49481":0,"49482":0,"49483":1,"49484":0,"49485":1,"49486":1,"49487":0,"49488":0,"49489":0,"49490":0,"49491":1,"49492":0,"49493":0,"49494":1,"49495":1,"49496":0,"49497":0,"49498":1,"49499":1,"49500":0,"49501":0,"49502":0,"49503":0,"49504":0,"49505":1,"49506":0,"49507":0,"49508":1,"49509":1,"49510":0,"49511":0,"49512":0,"49513":0,"49514":1,"49515":0,"49516":0,"49517":0,"49518":0,"49519":0,"49520":0,"49521":1,"49522":0,"49523":0,"49524":0,"49525":0,"49526":0,"49527":0,"49528":0,"49529":0,"49530":0,"49531":1,"49532":0,"49533":0,"49534":1,"49535":0,"49536":0,"49537":0,"49538":0,"49539":1,"49540":0,"49541":0,"49542":0,"49543":0,"49544":1,"49545":0,"49546":1,"49547":0,"49548":0,"49549":0,"49550":0,"49551":0,"49552":0,"49553":0,"49554":0,"49555":0,"49556":0,"49557":1,"49558":0,"49559":0,"49560":1,"49561":0,"49562":0,"49563":0,"49564":1,"49565":0,"49566":0,"49567":1,"49568":0,"49569":1,"49570":0,"49571":0,"49572":0,"49573":0,"49574":0,"49575":1,"49576":0,"49577":0,"49578":0,"49579":0,"49580":0,"49581":0,"49582":0,"49583":0,"49584":1,"49585":0,"49586":0,"49587":0,"49588":0,"49589":0,"49590":0,"49591":0,"49592":0,"49593":0,"49594":0,"49595":0,"49596":0,"49597":0,"49598":0,"49599":0,"49600":0,"49601":0,"49602":0,"49603":1,"49604":0,"49605":0,"49606":0,"49607":0,"49608":0,"49609":0,"49610":1,"49611":0,"49612":0,"49613":1,"49614":0,"49615":0,"49616":0,"49617":0,"49618":0,"49619":0,"49620":0,"49621":1,"49622":0,"49623":0,"49624":1,"49625":0,"49626":0,"49627":0,"49628":1,"49629":0,"49630":0,"49631":0,"49632":0,"49633":0,"49634":0,"49635":1,"49636":0,"49637":1,"49638":0,"49639":0,"49640":1,"49641":0,"49642":0,"49643":0,"49644":0,"49645":0,"49646":0,"49647":0,"49648":0,"49649":0,"49650":1,"49651":0,"49652":1,"49653":0,"49654":1,"49655":0,"49656":0,"49657":1,"49658":0,"49659":0,"49660":0,"49661":0,"49662":1,"49663":0,"49664":1,"49665":0,"49666":1,"49667":0,"49668":0,"49669":0,"49670":1,"49671":0,"49672":0,"49673":0,"49674":0,"49675":0,"49676":0,"49677":0,"49678":0,"49679":0,"49680":0,"49681":1,"49682":0,"49683":1,"49684":1,"49685":0,"49686":0,"49687":0,"49688":1,"49689":1,"49690":0,"49691":0,"49692":0,"49693":0,"49694":0,"49695":0,"49696":0,"49697":1,"49698":1,"49699":0,"49700":0,"49701":0,"49702":0,"49703":0,"49704":0,"49705":0,"49706":0,"49707":0,"49708":0,"49709":0,"49710":1,"49711":0,"49712":1,"49713":1,"49714":0,"49715":1,"49716":0,"49717":1,"49718":0,"49719":0,"49720":0,"49721":0,"49722":1,"49723":0,"49724":0,"49725":0,"49726":1,"49727":0,"49728":1,"49729":0,"49730":0,"49731":1,"49732":0,"49733":0,"49734":0,"49735":0,"49736":1,"49737":1,"49738":0,"49739":0,"49740":0,"49741":0,"49742":0,"49743":0,"49744":0,"49745":0,"49746":1,"49747":1,"49748":0,"49749":0,"49750":1,"49751":0,"49752":1,"49753":1,"49754":0,"49755":0,"49756":1,"49757":1,"49758":0,"49759":1,"49760":1,"49761":0,"49762":0,"49763":1,"49764":0,"49765":0,"49766":0,"49767":1,"49768":0,"49769":0,"49770":0,"49771":0,"49772":1,"49773":0,"49774":0,"49775":0,"49776":0,"49777":0,"49778":0,"49779":0,"49780":0,"49781":0,"49782":0,"49783":0,"49784":1,"49785":0,"49786":0,"49787":0,"49788":1,"49789":0,"49790":0,"49791":0,"49792":0,"49793":1,"49794":1,"49795":0,"49796":0,"49797":0,"49798":0,"49799":0,"49800":0,"49801":1,"49802":1,"49803":0,"49804":0,"49805":0,"49806":1,"49807":0,"49808":0,"49809":0,"49810":0,"49811":1,"49812":0,"49813":0,"49814":0,"49815":0,"49816":1,"49817":0,"49818":0,"49819":1,"49820":0,"49821":0,"49822":0,"49823":1,"49824":0,"49825":0,"49826":0,"49827":0,"49828":0,"49829":0,"49830":1,"49831":1,"49832":0,"49833":0,"49834":0,"49835":1,"49836":1,"49837":0,"49838":0,"49839":0,"49840":0,"49841":0,"49842":0,"49843":1,"49844":1,"49845":0,"49846":1,"49847":0,"49848":0,"49849":1,"49850":0,"49851":1,"49852":1,"49853":1,"49854":0,"49855":0,"49856":0,"49857":1,"49858":0,"49859":0,"49860":0,"49861":0,"49862":0,"49863":0,"49864":1,"49865":0,"49866":0,"49867":0,"49868":1,"49869":0,"49870":1,"49871":1,"49872":0,"49873":0,"49874":0,"49875":1,"49876":0,"49877":0,"49878":0,"49879":1,"49880":1,"49881":1,"49882":0,"49883":0,"49884":0,"49885":0,"49886":0,"49887":1,"49888":0,"49889":0,"49890":0,"49891":0,"49892":0,"49893":1,"49894":1,"49895":0,"49896":0,"49897":0,"49898":0,"49899":0,"49900":1,"49901":0,"49902":1,"49903":0,"49904":1,"49905":0,"49906":1,"49907":0,"49908":0,"49909":0,"49910":0,"49911":0,"49912":0,"49913":1,"49914":0,"49915":0,"49916":0,"49917":0,"49918":0,"49919":0,"49920":0,"49921":0,"49922":0,"49923":0,"49924":1,"49925":0,"49926":1,"49927":0,"49928":0,"49929":0,"49930":0,"49931":1,"49932":0,"49933":0,"49934":0,"49935":0,"49936":0,"49937":0,"49938":0,"49939":0,"49940":1,"49941":0,"49942":1,"49943":0,"49944":0,"49945":0,"49946":1,"49947":0,"49948":0,"49949":0,"49950":0,"49951":0,"49952":0,"49953":0,"49954":0,"49955":0,"49956":0,"49957":0,"49958":0,"49959":0,"49960":0,"49961":0,"49962":1,"49963":0,"49964":0,"49965":0,"49966":0,"49967":0,"49968":0,"49969":0,"49970":0,"49971":1,"49972":1,"49973":0,"49974":0,"49975":0,"49976":0,"49977":0,"49978":0,"49979":0,"49980":0,"49981":0,"49982":1,"49983":1,"49984":1,"49985":1,"49986":0,"49987":0,"49988":0,"49989":0,"49990":1,"49991":1,"49992":0,"49993":0,"49994":0,"49995":0,"49996":0,"49997":1,"49998":1,"49999":0,"50000":0,"50001":1,"50002":0,"50003":1,"50004":1,"50005":0,"50006":0,"50007":0,"50008":1,"50009":1,"50010":1,"50011":0,"50012":1,"50013":0,"50014":1,"50015":0,"50016":1,"50017":0,"50018":1,"50019":1,"50020":1,"50021":0,"50022":0,"50023":0,"50024":0,"50025":0,"50026":0,"50027":0,"50028":0,"50029":0,"50030":0,"50031":0,"50032":1,"50033":1,"50034":1,"50035":0,"50036":1,"50037":0,"50038":0,"50039":1,"50040":0,"50041":0,"50042":0,"50043":0,"50044":0,"50045":1,"50046":0,"50047":0,"50048":1,"50049":1,"50050":1,"50051":0,"50052":0,"50053":0,"50054":0,"50055":0,"50056":0,"50057":0,"50058":0,"50059":0,"50060":0,"50061":0,"50062":0,"50063":0,"50064":0,"50065":1,"50066":0,"50067":0,"50068":0,"50069":0,"50070":0,"50071":0,"50072":0,"50073":1,"50074":0,"50075":1,"50076":0,"50077":1,"50078":0,"50079":1,"50080":0,"50081":0,"50082":0,"50083":0,"50084":0,"50085":0,"50086":0,"50087":0,"50088":0,"50089":0,"50090":0,"50091":0,"50092":0,"50093":0,"50094":0,"50095":0,"50096":0,"50097":0,"50098":0,"50099":0,"50100":0,"50101":0,"50102":0,"50103":1,"50104":0,"50105":0,"50106":0,"50107":1,"50108":0,"50109":0,"50110":1,"50111":0,"50112":0,"50113":0,"50114":1,"50115":0,"50116":0,"50117":0,"50118":0,"50119":0,"50120":1,"50121":0,"50122":0,"50123":0,"50124":0,"50125":0,"50126":0,"50127":0,"50128":1,"50129":0,"50130":0,"50131":0,"50132":1,"50133":0,"50134":0,"50135":0,"50136":0,"50137":0,"50138":0,"50139":0,"50140":0,"50141":0,"50142":0,"50143":1,"50144":0,"50145":0,"50146":0,"50147":0,"50148":1,"50149":0,"50150":0,"50151":0,"50152":1,"50153":1,"50154":0,"50155":0,"50156":0,"50157":0,"50158":1,"50159":0,"50160":0,"50161":0,"50162":0,"50163":0,"50164":0,"50165":0,"50166":0,"50167":0,"50168":0,"50169":0,"50170":0,"50171":0,"50172":0,"50173":0,"50174":0,"50175":1,"50176":0,"50177":1,"50178":0,"50179":0,"50180":0,"50181":0,"50182":0,"50183":1,"50184":0,"50185":1,"50186":0,"50187":0,"50188":0,"50189":0,"50190":1,"50191":0,"50192":1,"50193":0,"50194":1,"50195":0,"50196":1,"50197":0,"50198":0,"50199":0,"50200":0,"50201":0,"50202":0,"50203":0,"50204":0,"50205":0,"50206":0,"50207":0,"50208":0,"50209":0,"50210":0,"50211":1,"50212":0,"50213":1,"50214":1,"50215":0,"50216":0,"50217":0,"50218":1,"50219":0,"50220":0,"50221":0,"50222":0,"50223":0,"50224":0,"50225":0,"50226":0,"50227":0,"50228":1,"50229":1,"50230":0,"50231":0,"50232":1,"50233":0,"50234":1,"50235":0,"50236":0,"50237":1,"50238":0,"50239":0,"50240":0,"50241":1,"50242":1,"50243":0,"50244":0,"50245":1,"50246":1,"50247":0,"50248":0,"50249":0,"50250":1,"50251":0,"50252":0,"50253":1,"50254":0,"50255":0,"50256":1,"50257":1,"50258":1,"50259":0,"50260":1,"50261":1,"50262":0,"50263":0,"50264":0,"50265":1,"50266":0,"50267":1,"50268":1,"50269":0,"50270":0,"50271":1,"50272":0,"50273":0,"50274":0,"50275":0,"50276":0,"50277":1,"50278":0,"50279":1,"50280":0,"50281":0,"50282":1,"50283":0,"50284":1,"50285":0,"50286":0,"50287":0,"50288":0,"50289":0,"50290":0,"50291":0,"50292":0,"50293":0,"50294":1,"50295":0,"50296":0,"50297":0,"50298":1,"50299":1,"50300":0,"50301":0,"50302":0,"50303":1,"50304":0,"50305":1,"50306":1,"50307":0,"50308":1,"50309":0,"50310":1,"50311":1,"50312":0,"50313":0,"50314":0,"50315":0,"50316":0,"50317":0,"50318":1,"50319":0,"50320":0,"50321":0,"50322":0,"50323":0,"50324":1,"50325":0,"50326":1,"50327":0,"50328":1,"50329":1,"50330":0,"50331":0,"50332":0,"50333":0,"50334":0,"50335":0,"50336":1,"50337":0,"50338":0,"50339":0,"50340":0,"50341":0,"50342":0,"50343":0,"50344":1,"50345":0,"50346":0,"50347":0,"50348":1,"50349":0,"50350":0,"50351":0,"50352":0,"50353":1,"50354":0,"50355":0,"50356":1,"50357":0,"50358":0,"50359":0,"50360":0,"50361":0,"50362":0,"50363":0,"50364":0,"50365":0,"50366":0,"50367":0,"50368":1,"50369":0,"50370":0,"50371":1,"50372":0,"50373":0,"50374":0,"50375":0,"50376":0,"50377":1,"50378":0,"50379":0,"50380":0,"50381":0,"50382":0,"50383":0,"50384":0,"50385":0,"50386":1,"50387":0,"50388":0,"50389":1,"50390":1,"50391":0,"50392":0,"50393":0,"50394":1,"50395":1,"50396":1,"50397":0,"50398":0,"50399":0,"50400":0,"50401":0,"50402":0,"50403":0,"50404":1,"50405":0,"50406":0,"50407":1,"50408":0,"50409":0,"50410":1,"50411":0,"50412":0,"50413":0,"50414":1,"50415":1,"50416":0,"50417":0,"50418":0,"50419":1,"50420":0,"50421":0,"50422":0,"50423":1,"50424":0,"50425":0,"50426":0,"50427":0,"50428":0,"50429":0,"50430":0,"50431":0,"50432":0,"50433":0,"50434":0,"50435":0,"50436":0,"50437":0,"50438":1,"50439":0,"50440":0,"50441":1,"50442":0,"50443":0,"50444":0,"50445":0,"50446":0,"50447":1,"50448":0,"50449":1,"50450":1,"50451":0,"50452":1,"50453":0,"50454":0,"50455":0,"50456":0,"50457":0,"50458":0,"50459":0,"50460":1,"50461":0,"50462":0,"50463":0,"50464":0,"50465":0,"50466":0,"50467":0,"50468":0,"50469":1,"50470":0,"50471":0,"50472":0,"50473":0,"50474":1,"50475":1,"50476":0,"50477":0,"50478":0,"50479":0,"50480":1,"50481":0,"50482":0,"50483":1,"50484":0,"50485":0,"50486":0,"50487":0,"50488":0,"50489":0,"50490":0,"50491":0,"50492":0,"50493":0,"50494":0,"50495":0,"50496":0,"50497":0,"50498":0,"50499":0,"50500":1,"50501":1,"50502":0,"50503":0,"50504":0,"50505":0,"50506":1,"50507":1,"50508":0,"50509":1,"50510":0,"50511":0,"50512":0,"50513":1,"50514":0,"50515":0,"50516":1,"50517":0,"50518":0,"50519":0,"50520":0,"50521":0,"50522":1,"50523":0,"50524":0,"50525":0,"50526":0,"50527":0,"50528":0,"50529":0,"50530":0,"50531":1,"50532":0,"50533":0,"50534":1,"50535":0,"50536":0,"50537":0,"50538":0,"50539":1,"50540":1,"50541":0,"50542":1,"50543":0,"50544":0,"50545":0,"50546":0,"50547":0,"50548":0,"50549":1,"50550":1,"50551":0,"50552":0,"50553":1,"50554":0,"50555":0,"50556":0,"50557":0,"50558":0,"50559":0,"50560":0,"50561":0,"50562":1,"50563":1,"50564":0,"50565":0,"50566":1,"50567":0,"50568":0,"50569":0,"50570":0,"50571":1,"50572":0,"50573":1,"50574":0,"50575":0,"50576":0,"50577":0,"50578":0,"50579":0,"50580":0,"50581":1,"50582":1,"50583":1,"50584":0,"50585":0,"50586":0,"50587":0,"50588":0,"50589":0,"50590":0,"50591":0,"50592":1,"50593":0,"50594":0,"50595":0,"50596":0,"50597":0,"50598":0,"50599":1,"50600":0,"50601":0,"50602":1,"50603":0,"50604":0,"50605":0,"50606":0,"50607":1,"50608":0,"50609":0,"50610":0,"50611":0,"50612":0,"50613":1,"50614":0,"50615":0,"50616":0,"50617":0,"50618":0,"50619":0,"50620":0,"50621":0,"50622":0,"50623":0,"50624":0,"50625":0,"50626":1,"50627":1,"50628":1,"50629":1,"50630":0,"50631":1,"50632":0,"50633":0,"50634":0,"50635":1,"50636":0,"50637":0,"50638":0,"50639":0,"50640":0,"50641":0,"50642":0,"50643":0,"50644":0,"50645":0,"50646":0,"50647":0,"50648":0,"50649":1,"50650":0,"50651":0,"50652":1,"50653":0,"50654":0,"50655":1,"50656":0,"50657":0,"50658":0,"50659":0,"50660":0,"50661":1,"50662":1,"50663":0,"50664":0,"50665":0,"50666":0,"50667":0,"50668":0,"50669":1,"50670":1,"50671":0,"50672":0,"50673":0,"50674":0,"50675":0,"50676":0,"50677":1,"50678":0,"50679":0,"50680":0,"50681":0,"50682":1,"50683":0,"50684":0,"50685":1,"50686":1,"50687":0,"50688":0,"50689":0,"50690":0,"50691":0,"50692":1,"50693":0,"50694":0,"50695":0,"50696":0,"50697":0,"50698":0,"50699":0,"50700":0,"50701":0,"50702":1,"50703":0,"50704":0,"50705":0,"50706":1,"50707":0,"50708":0,"50709":0,"50710":0,"50711":0,"50712":0,"50713":0,"50714":0,"50715":1,"50716":0,"50717":0,"50718":0,"50719":0,"50720":0,"50721":1,"50722":0,"50723":0,"50724":0,"50725":0,"50726":0,"50727":0,"50728":0,"50729":0,"50730":0,"50731":0,"50732":0,"50733":1,"50734":1,"50735":0,"50736":1,"50737":1,"50738":0,"50739":0,"50740":0,"50741":0,"50742":1,"50743":0,"50744":1,"50745":0,"50746":0,"50747":1,"50748":0,"50749":0,"50750":1,"50751":0,"50752":0,"50753":1,"50754":0,"50755":0,"50756":1,"50757":0,"50758":1,"50759":1,"50760":1,"50761":0,"50762":0,"50763":1,"50764":0,"50765":1,"50766":1,"50767":0,"50768":0,"50769":1,"50770":0,"50771":0,"50772":0,"50773":1,"50774":0,"50775":1,"50776":0,"50777":1,"50778":1,"50779":1,"50780":0,"50781":0,"50782":0,"50783":0,"50784":0,"50785":1,"50786":1,"50787":0,"50788":0,"50789":0,"50790":0,"50791":0,"50792":1,"50793":0,"50794":0,"50795":0,"50796":0,"50797":0,"50798":0,"50799":0,"50800":0,"50801":0,"50802":1,"50803":0,"50804":0,"50805":0,"50806":0,"50807":1,"50808":0,"50809":1,"50810":0,"50811":0,"50812":0,"50813":0,"50814":1,"50815":0,"50816":0,"50817":0,"50818":0,"50819":0,"50820":0,"50821":1,"50822":0,"50823":0,"50824":0,"50825":1,"50826":0,"50827":0,"50828":0,"50829":1,"50830":0,"50831":0,"50832":0,"50833":0,"50834":0,"50835":0,"50836":0,"50837":0,"50838":0,"50839":1,"50840":1,"50841":0,"50842":0,"50843":0,"50844":1,"50845":0,"50846":0,"50847":0,"50848":0,"50849":1,"50850":0,"50851":0,"50852":1,"50853":0,"50854":0,"50855":0,"50856":0,"50857":0,"50858":0,"50859":0,"50860":0,"50861":0,"50862":0,"50863":1,"50864":0,"50865":0,"50866":0,"50867":0,"50868":0,"50869":0,"50870":0,"50871":1,"50872":0,"50873":0,"50874":0,"50875":1,"50876":0,"50877":0,"50878":1,"50879":0,"50880":1,"50881":0,"50882":0,"50883":0,"50884":0,"50885":0,"50886":0,"50887":0,"50888":0,"50889":1,"50890":0,"50891":0,"50892":1,"50893":1,"50894":0,"50895":0,"50896":0,"50897":1,"50898":0,"50899":0,"50900":1,"50901":0,"50902":1,"50903":0,"50904":0,"50905":0,"50906":0,"50907":0,"50908":0,"50909":0,"50910":1,"50911":0,"50912":0,"50913":0,"50914":0,"50915":0,"50916":0,"50917":0,"50918":1,"50919":0,"50920":0,"50921":0,"50922":0,"50923":0,"50924":0,"50925":0,"50926":1,"50927":1,"50928":0,"50929":0,"50930":0,"50931":0,"50932":0,"50933":0,"50934":1,"50935":0,"50936":0,"50937":0,"50938":1,"50939":0,"50940":1,"50941":1,"50942":1,"50943":0,"50944":0,"50945":0,"50946":0,"50947":0,"50948":0,"50949":0,"50950":0,"50951":0,"50952":0,"50953":0,"50954":0,"50955":0,"50956":0,"50957":1,"50958":1,"50959":0,"50960":0,"50961":0,"50962":0,"50963":1,"50964":0,"50965":1,"50966":0,"50967":0,"50968":1,"50969":0,"50970":0,"50971":0,"50972":0,"50973":1,"50974":0,"50975":0,"50976":0,"50977":1,"50978":0,"50979":0,"50980":0,"50981":0,"50982":0,"50983":0,"50984":0,"50985":1,"50986":0,"50987":0,"50988":0,"50989":0,"50990":0,"50991":1,"50992":0,"50993":0,"50994":0,"50995":0,"50996":0,"50997":0,"50998":0,"50999":0,"51000":0,"51001":0,"51002":0,"51003":0,"51004":0,"51005":1,"51006":1,"51007":0,"51008":0,"51009":1,"51010":0,"51011":0,"51012":1,"51013":1,"51014":0,"51015":0,"51016":0,"51017":0,"51018":1,"51019":0,"51020":0,"51021":0,"51022":1,"51023":0,"51024":1,"51025":0,"51026":1,"51027":0,"51028":0,"51029":0,"51030":0,"51031":0,"51032":0,"51033":1,"51034":0,"51035":0,"51036":0,"51037":0,"51038":0,"51039":0,"51040":0,"51041":1,"51042":0,"51043":1,"51044":0,"51045":0,"51046":1,"51047":1,"51048":1,"51049":0,"51050":1,"51051":0,"51052":0,"51053":1,"51054":0,"51055":0,"51056":0,"51057":1,"51058":0,"51059":0,"51060":0,"51061":1,"51062":1,"51063":0,"51064":0,"51065":0,"51066":0,"51067":0,"51068":0,"51069":1,"51070":1,"51071":0,"51072":0,"51073":0,"51074":0,"51075":0,"51076":1,"51077":0,"51078":0,"51079":0,"51080":0,"51081":0,"51082":0,"51083":1,"51084":0,"51085":0,"51086":0,"51087":1,"51088":0,"51089":1,"51090":0,"51091":0,"51092":0,"51093":0,"51094":0,"51095":0,"51096":0,"51097":0,"51098":0,"51099":0,"51100":0,"51101":0,"51102":0,"51103":0,"51104":0,"51105":0,"51106":0,"51107":0,"51108":0,"51109":0,"51110":1,"51111":0,"51112":0,"51113":0,"51114":1,"51115":0,"51116":0,"51117":0,"51118":0,"51119":1,"51120":0,"51121":0,"51122":0,"51123":0,"51124":0,"51125":1,"51126":1,"51127":0,"51128":1,"51129":0,"51130":0,"51131":0,"51132":1,"51133":0,"51134":1,"51135":1,"51136":0,"51137":0,"51138":0,"51139":0,"51140":0,"51141":0,"51142":0,"51143":0,"51144":0,"51145":0,"51146":0,"51147":0,"51148":0,"51149":0,"51150":0,"51151":0,"51152":0,"51153":0,"51154":1,"51155":0,"51156":0,"51157":0,"51158":0,"51159":0,"51160":1,"51161":0,"51162":0,"51163":0,"51164":0,"51165":0,"51166":0,"51167":0,"51168":0,"51169":0,"51170":0,"51171":1,"51172":0,"51173":0,"51174":0,"51175":1,"51176":0,"51177":0,"51178":0,"51179":0,"51180":0,"51181":0,"51182":0,"51183":0,"51184":0,"51185":0,"51186":1,"51187":0,"51188":0,"51189":1,"51190":0,"51191":0,"51192":0,"51193":0,"51194":0,"51195":0,"51196":1,"51197":1,"51198":0,"51199":0,"51200":0,"51201":1,"51202":0,"51203":0,"51204":0,"51205":1,"51206":0,"51207":0,"51208":0,"51209":0,"51210":0,"51211":0,"51212":1,"51213":0,"51214":1,"51215":1,"51216":1,"51217":1,"51218":1,"51219":0,"51220":0,"51221":0,"51222":0,"51223":1,"51224":0,"51225":1,"51226":0,"51227":0,"51228":0,"51229":1,"51230":1,"51231":0,"51232":0,"51233":0,"51234":0,"51235":0,"51236":0,"51237":0,"51238":1,"51239":0,"51240":1,"51241":0,"51242":0,"51243":1,"51244":1,"51245":0,"51246":0,"51247":0,"51248":0,"51249":0,"51250":0,"51251":1,"51252":0,"51253":0,"51254":0,"51255":0,"51256":0,"51257":1,"51258":0,"51259":0,"51260":0,"51261":0,"51262":1,"51263":1,"51264":0,"51265":0,"51266":0,"51267":0,"51268":0,"51269":1,"51270":0,"51271":0,"51272":1,"51273":0,"51274":0,"51275":0,"51276":0,"51277":0,"51278":0,"51279":0,"51280":1,"51281":0,"51282":0,"51283":0,"51284":1,"51285":0,"51286":0,"51287":0,"51288":1,"51289":0,"51290":0,"51291":0,"51292":0,"51293":1,"51294":0,"51295":1,"51296":0,"51297":0,"51298":1,"51299":0,"51300":0,"51301":1,"51302":0,"51303":1,"51304":1,"51305":1,"51306":0,"51307":1,"51308":0,"51309":0,"51310":1,"51311":1,"51312":1,"51313":0,"51314":0,"51315":0,"51316":1,"51317":0,"51318":1,"51319":1,"51320":0,"51321":0,"51322":0,"51323":0,"51324":0,"51325":1,"51326":0,"51327":0,"51328":0,"51329":0,"51330":1,"51331":0,"51332":0,"51333":1,"51334":0,"51335":1,"51336":0,"51337":1,"51338":1,"51339":0,"51340":1,"51341":0,"51342":1,"51343":0,"51344":0,"51345":0,"51346":0,"51347":0,"51348":0,"51349":0,"51350":0,"51351":0,"51352":0,"51353":0,"51354":1,"51355":0,"51356":0,"51357":0,"51358":0,"51359":0,"51360":0,"51361":0,"51362":0,"51363":0,"51364":1,"51365":0,"51366":0,"51367":0,"51368":0,"51369":0,"51370":0,"51371":1,"51372":0,"51373":0,"51374":1,"51375":0,"51376":0,"51377":0,"51378":0,"51379":0,"51380":0,"51381":0,"51382":0,"51383":0,"51384":0,"51385":0,"51386":0,"51387":0,"51388":0,"51389":0,"51390":0,"51391":0,"51392":0,"51393":0,"51394":0,"51395":0,"51396":0,"51397":1,"51398":0,"51399":0,"51400":1,"51401":1,"51402":0,"51403":0,"51404":0,"51405":0,"51406":0,"51407":1,"51408":0,"51409":0,"51410":0,"51411":0,"51412":1,"51413":0,"51414":0,"51415":1,"51416":1,"51417":1,"51418":1,"51419":0,"51420":1,"51421":0,"51422":0,"51423":0,"51424":1,"51425":0,"51426":0,"51427":0,"51428":0,"51429":0,"51430":1,"51431":0,"51432":0,"51433":0,"51434":0,"51435":0,"51436":0,"51437":1,"51438":0,"51439":1,"51440":0,"51441":0,"51442":0,"51443":0,"51444":0,"51445":0,"51446":0,"51447":1,"51448":0,"51449":0,"51450":0,"51451":0,"51452":1,"51453":0,"51454":0,"51455":0,"51456":0,"51457":0,"51458":1,"51459":0,"51460":0,"51461":0,"51462":1,"51463":0,"51464":0,"51465":0,"51466":1,"51467":0,"51468":0,"51469":0,"51470":0,"51471":0,"51472":0,"51473":0,"51474":0,"51475":1,"51476":0,"51477":0,"51478":0,"51479":0,"51480":1,"51481":0,"51482":0,"51483":0,"51484":0,"51485":0,"51486":0,"51487":1,"51488":1,"51489":0,"51490":1,"51491":0,"51492":0,"51493":0,"51494":0,"51495":1,"51496":0,"51497":1,"51498":1,"51499":0,"51500":0,"51501":0,"51502":0,"51503":0,"51504":0,"51505":0,"51506":1,"51507":0,"51508":0,"51509":0,"51510":1,"51511":0,"51512":1,"51513":0,"51514":0,"51515":0,"51516":1,"51517":0,"51518":0,"51519":0,"51520":0,"51521":0,"51522":0,"51523":0,"51524":0,"51525":0,"51526":0,"51527":0,"51528":0,"51529":0,"51530":1,"51531":0,"51532":0,"51533":0,"51534":1,"51535":0,"51536":0,"51537":1,"51538":0,"51539":1,"51540":1,"51541":0,"51542":0,"51543":0,"51544":0,"51545":0,"51546":0,"51547":0,"51548":0,"51549":1,"51550":0,"51551":1,"51552":0,"51553":1,"51554":1,"51555":0,"51556":1,"51557":0,"51558":0,"51559":0,"51560":0,"51561":0,"51562":0,"51563":0,"51564":0,"51565":1,"51566":1,"51567":0,"51568":1,"51569":0,"51570":0,"51571":0,"51572":1,"51573":0,"51574":0,"51575":0,"51576":0,"51577":1,"51578":0,"51579":1,"51580":0,"51581":0,"51582":0,"51583":1,"51584":0,"51585":0,"51586":0,"51587":0,"51588":0,"51589":0,"51590":0,"51591":0,"51592":0,"51593":0,"51594":0,"51595":0,"51596":0,"51597":1,"51598":0,"51599":0,"51600":0,"51601":1,"51602":0,"51603":1,"51604":0,"51605":1,"51606":0,"51607":1,"51608":0,"51609":0,"51610":1,"51611":0,"51612":1,"51613":0,"51614":0,"51615":1,"51616":0,"51617":0,"51618":1,"51619":0,"51620":0,"51621":0,"51622":0,"51623":0,"51624":0,"51625":1,"51626":0,"51627":1,"51628":1,"51629":0,"51630":1,"51631":0,"51632":0,"51633":0,"51634":0,"51635":0,"51636":0,"51637":0,"51638":1,"51639":0,"51640":1,"51641":1,"51642":0,"51643":0,"51644":0,"51645":0,"51646":0,"51647":0,"51648":0,"51649":0,"51650":1,"51651":1,"51652":1,"51653":0,"51654":0,"51655":1,"51656":0,"51657":0,"51658":0,"51659":0,"51660":0,"51661":0,"51662":0,"51663":0,"51664":1,"51665":0,"51666":1,"51667":0,"51668":0,"51669":0,"51670":0,"51671":0,"51672":0,"51673":0,"51674":1,"51675":0,"51676":1,"51677":0,"51678":0,"51679":0,"51680":0,"51681":0,"51682":1,"51683":0,"51684":0,"51685":1,"51686":0,"51687":1,"51688":0,"51689":0,"51690":0,"51691":1,"51692":0,"51693":0,"51694":0,"51695":0,"51696":0,"51697":1,"51698":1,"51699":1,"51700":0,"51701":0,"51702":1,"51703":1,"51704":0,"51705":0,"51706":0,"51707":0,"51708":0,"51709":0,"51710":0,"51711":0,"51712":0,"51713":0,"51714":0,"51715":0,"51716":1,"51717":0,"51718":0,"51719":1,"51720":0,"51721":0,"51722":0,"51723":0,"51724":0,"51725":1,"51726":1,"51727":0,"51728":1,"51729":0,"51730":0,"51731":0,"51732":0,"51733":0,"51734":1,"51735":1,"51736":0,"51737":0,"51738":1,"51739":0,"51740":1,"51741":0,"51742":0,"51743":1,"51744":0,"51745":1,"51746":0,"51747":1,"51748":0,"51749":0,"51750":0,"51751":0,"51752":0,"51753":0,"51754":0,"51755":1,"51756":0,"51757":1,"51758":0,"51759":0,"51760":0,"51761":0,"51762":1,"51763":1,"51764":1,"51765":0,"51766":0,"51767":0,"51768":1,"51769":0,"51770":0,"51771":0,"51772":0,"51773":0,"51774":0,"51775":1,"51776":1,"51777":0,"51778":1,"51779":0,"51780":1,"51781":0,"51782":1,"51783":0,"51784":1,"51785":1,"51786":0,"51787":0,"51788":1,"51789":0,"51790":1,"51791":0,"51792":0,"51793":0,"51794":0,"51795":0,"51796":0,"51797":0,"51798":0,"51799":1,"51800":0,"51801":0,"51802":1,"51803":1,"51804":0,"51805":0,"51806":0,"51807":0,"51808":1,"51809":1,"51810":0,"51811":1,"51812":0,"51813":1,"51814":0,"51815":0,"51816":0,"51817":0,"51818":0,"51819":0,"51820":1,"51821":0,"51822":1,"51823":0,"51824":0,"51825":1,"51826":0,"51827":1,"51828":0,"51829":0,"51830":1,"51831":0,"51832":0,"51833":0,"51834":1,"51835":0,"51836":0,"51837":0,"51838":1,"51839":0,"51840":0,"51841":0,"51842":0,"51843":0,"51844":0,"51845":0,"51846":0,"51847":1,"51848":1,"51849":0,"51850":1,"51851":0,"51852":0,"51853":0,"51854":0,"51855":0,"51856":0,"51857":0,"51858":0,"51859":1,"51860":0,"51861":0,"51862":0,"51863":0,"51864":0,"51865":1,"51866":0,"51867":0,"51868":1,"51869":0,"51870":1,"51871":0,"51872":0,"51873":0,"51874":1,"51875":0,"51876":0,"51877":0,"51878":0,"51879":1,"51880":1,"51881":0,"51882":1,"51883":0,"51884":1,"51885":1,"51886":0,"51887":0,"51888":1,"51889":0,"51890":0,"51891":0,"51892":0,"51893":0,"51894":0,"51895":0,"51896":0,"51897":1,"51898":0,"51899":0,"51900":0,"51901":0,"51902":1,"51903":0,"51904":0,"51905":0,"51906":0,"51907":1,"51908":0,"51909":0,"51910":0,"51911":0,"51912":0,"51913":0,"51914":1,"51915":0,"51916":1,"51917":1,"51918":0,"51919":0,"51920":0,"51921":0,"51922":1,"51923":0,"51924":0,"51925":0,"51926":1,"51927":0,"51928":0,"51929":0,"51930":0,"51931":0,"51932":0,"51933":0,"51934":0,"51935":1,"51936":0,"51937":0,"51938":0,"51939":0,"51940":1,"51941":0,"51942":1,"51943":0,"51944":1,"51945":0,"51946":0,"51947":0,"51948":1,"51949":0,"51950":1,"51951":1,"51952":0,"51953":0,"51954":0,"51955":0,"51956":0,"51957":0,"51958":0,"51959":0,"51960":0,"51961":0,"51962":0,"51963":0,"51964":0,"51965":0,"51966":0,"51967":0,"51968":1,"51969":0,"51970":0,"51971":0,"51972":0,"51973":1,"51974":1,"51975":1,"51976":0,"51977":0,"51978":0,"51979":0,"51980":0,"51981":0,"51982":1,"51983":0,"51984":0,"51985":0,"51986":0,"51987":0,"51988":0,"51989":0,"51990":0,"51991":0,"51992":0,"51993":0,"51994":0,"51995":0,"51996":0,"51997":0,"51998":0,"51999":1,"52000":0,"52001":1,"52002":1,"52003":0,"52004":0,"52005":1,"52006":0,"52007":1,"52008":0,"52009":1,"52010":0,"52011":0,"52012":0,"52013":0,"52014":0,"52015":0,"52016":0,"52017":0,"52018":0,"52019":1,"52020":0,"52021":0,"52022":0,"52023":0,"52024":1,"52025":1,"52026":0,"52027":1,"52028":0,"52029":0,"52030":0,"52031":0,"52032":0,"52033":1,"52034":1,"52035":0,"52036":0,"52037":0,"52038":1,"52039":1,"52040":1,"52041":0,"52042":0,"52043":0,"52044":0,"52045":0,"52046":0,"52047":0,"52048":0,"52049":0,"52050":1,"52051":0,"52052":1,"52053":1,"52054":0,"52055":0,"52056":0,"52057":0,"52058":0,"52059":0,"52060":1,"52061":0,"52062":1,"52063":0,"52064":0,"52065":0,"52066":0,"52067":0,"52068":0,"52069":0,"52070":0,"52071":1,"52072":1,"52073":0,"52074":0,"52075":1,"52076":0,"52077":1,"52078":0,"52079":0,"52080":0,"52081":1,"52082":0,"52083":0,"52084":1,"52085":1,"52086":0,"52087":0,"52088":0,"52089":1,"52090":0,"52091":0,"52092":1,"52093":0,"52094":0,"52095":0,"52096":0,"52097":0,"52098":0,"52099":1,"52100":0,"52101":1,"52102":0,"52103":1,"52104":0,"52105":0,"52106":0,"52107":0,"52108":0,"52109":0,"52110":1,"52111":1,"52112":0,"52113":0,"52114":0,"52115":0,"52116":0,"52117":0,"52118":0,"52119":1,"52120":0,"52121":0,"52122":0,"52123":1,"52124":0,"52125":0,"52126":0,"52127":0,"52128":0,"52129":0,"52130":0,"52131":0,"52132":1,"52133":0,"52134":0,"52135":0,"52136":0,"52137":0,"52138":1,"52139":0,"52140":0,"52141":1,"52142":1,"52143":0,"52144":1,"52145":0,"52146":0,"52147":0,"52148":0,"52149":1,"52150":0,"52151":0,"52152":1,"52153":0,"52154":0,"52155":0,"52156":0,"52157":0,"52158":0,"52159":0,"52160":0,"52161":1,"52162":0,"52163":0,"52164":0,"52165":0,"52166":0,"52167":0,"52168":0,"52169":0,"52170":0,"52171":0,"52172":0,"52173":0,"52174":0,"52175":0,"52176":0,"52177":0,"52178":0,"52179":1,"52180":1,"52181":0,"52182":1,"52183":1,"52184":0,"52185":0,"52186":0,"52187":1,"52188":1,"52189":0,"52190":0,"52191":0,"52192":1,"52193":0,"52194":0,"52195":1,"52196":0,"52197":0,"52198":0,"52199":0,"52200":1,"52201":0,"52202":0,"52203":1,"52204":0,"52205":0,"52206":0,"52207":1,"52208":0,"52209":0,"52210":0,"52211":0,"52212":0,"52213":1,"52214":0,"52215":0,"52216":1,"52217":1,"52218":0,"52219":0,"52220":0,"52221":0,"52222":0,"52223":0,"52224":0,"52225":0,"52226":0,"52227":0,"52228":0,"52229":0,"52230":0,"52231":0,"52232":1,"52233":0,"52234":0,"52235":0,"52236":1,"52237":0,"52238":0,"52239":0,"52240":0,"52241":0,"52242":0,"52243":0,"52244":0,"52245":0,"52246":0,"52247":1,"52248":0,"52249":1,"52250":0,"52251":1,"52252":0,"52253":0,"52254":0,"52255":1,"52256":0,"52257":0,"52258":0,"52259":0,"52260":0,"52261":1,"52262":0,"52263":0,"52264":0,"52265":0,"52266":1,"52267":0,"52268":0,"52269":0,"52270":0,"52271":0,"52272":0,"52273":0,"52274":0,"52275":0,"52276":0,"52277":0,"52278":0,"52279":0,"52280":0,"52281":0,"52282":1,"52283":0,"52284":1,"52285":1,"52286":0,"52287":0,"52288":1,"52289":1,"52290":0,"52291":0,"52292":0,"52293":1,"52294":1,"52295":1,"52296":1,"52297":1,"52298":1,"52299":1,"52300":0,"52301":0,"52302":0,"52303":1,"52304":0,"52305":0,"52306":0,"52307":1,"52308":0,"52309":0,"52310":0,"52311":1,"52312":1,"52313":0,"52314":1,"52315":0,"52316":1,"52317":1,"52318":0,"52319":0,"52320":0,"52321":0,"52322":0,"52323":0,"52324":0,"52325":0,"52326":0,"52327":0,"52328":1,"52329":0,"52330":0,"52331":0,"52332":0,"52333":0,"52334":0,"52335":0,"52336":0,"52337":1,"52338":1,"52339":0,"52340":1,"52341":1,"52342":0,"52343":0,"52344":1,"52345":1,"52346":0,"52347":0,"52348":0,"52349":0,"52350":0,"52351":1,"52352":0,"52353":0,"52354":0,"52355":1,"52356":1,"52357":0,"52358":0,"52359":0,"52360":0,"52361":1,"52362":0,"52363":0,"52364":0,"52365":0,"52366":0,"52367":1,"52368":0,"52369":0,"52370":0,"52371":1,"52372":0,"52373":0,"52374":0,"52375":1,"52376":0,"52377":1,"52378":1,"52379":0,"52380":0,"52381":0,"52382":0,"52383":1,"52384":0,"52385":0,"52386":0,"52387":0,"52388":0,"52389":0,"52390":0,"52391":0,"52392":1,"52393":0,"52394":0,"52395":1,"52396":1,"52397":0,"52398":1,"52399":0,"52400":0,"52401":0,"52402":1,"52403":0,"52404":0,"52405":0,"52406":0,"52407":0,"52408":1,"52409":0,"52410":0,"52411":0,"52412":0,"52413":0,"52414":0,"52415":1,"52416":0,"52417":0,"52418":1,"52419":1,"52420":0,"52421":0,"52422":0,"52423":1,"52424":0,"52425":1,"52426":1,"52427":0,"52428":1,"52429":0,"52430":0,"52431":0,"52432":0,"52433":0,"52434":0,"52435":0,"52436":0,"52437":0,"52438":1,"52439":0,"52440":0,"52441":0,"52442":0,"52443":0,"52444":0,"52445":0,"52446":0,"52447":0,"52448":1,"52449":0,"52450":0,"52451":1,"52452":0,"52453":0,"52454":0,"52455":1,"52456":0,"52457":1,"52458":0,"52459":1,"52460":0,"52461":0,"52462":0,"52463":0,"52464":0,"52465":0,"52466":0,"52467":0,"52468":0,"52469":0,"52470":0,"52471":0,"52472":0,"52473":1,"52474":0,"52475":0,"52476":0,"52477":1,"52478":0,"52479":0,"52480":0,"52481":0,"52482":1,"52483":1,"52484":0,"52485":1,"52486":1,"52487":0,"52488":0,"52489":0,"52490":0,"52491":1,"52492":0,"52493":1,"52494":1,"52495":1,"52496":0,"52497":0,"52498":1,"52499":0,"52500":0,"52501":0,"52502":0,"52503":0,"52504":0,"52505":0,"52506":0,"52507":0,"52508":1,"52509":0,"52510":0,"52511":0,"52512":0,"52513":1,"52514":1,"52515":0,"52516":1,"52517":1,"52518":0,"52519":0,"52520":1,"52521":0,"52522":0,"52523":0,"52524":0,"52525":1,"52526":0,"52527":1,"52528":0,"52529":0,"52530":0,"52531":0,"52532":0,"52533":0,"52534":0,"52535":0,"52536":0,"52537":1,"52538":0,"52539":0,"52540":1,"52541":0,"52542":1,"52543":1,"52544":0,"52545":0,"52546":0,"52547":0,"52548":0,"52549":0,"52550":0,"52551":1,"52552":1,"52553":0,"52554":0,"52555":0,"52556":0,"52557":0,"52558":0,"52559":0,"52560":1,"52561":0,"52562":0,"52563":0,"52564":0,"52565":0,"52566":0,"52567":0,"52568":1,"52569":1,"52570":0,"52571":0,"52572":0,"52573":0,"52574":0,"52575":0,"52576":0,"52577":0,"52578":0,"52579":0,"52580":1,"52581":0,"52582":0,"52583":0,"52584":0,"52585":0,"52586":0,"52587":0,"52588":1,"52589":0,"52590":0,"52591":0,"52592":0,"52593":0,"52594":0,"52595":0,"52596":0,"52597":0,"52598":0,"52599":1,"52600":0,"52601":1,"52602":0,"52603":0,"52604":0,"52605":0,"52606":0,"52607":0,"52608":0,"52609":1,"52610":1,"52611":1,"52612":0,"52613":1,"52614":0,"52615":0,"52616":0,"52617":0,"52618":0,"52619":0,"52620":1,"52621":0,"52622":0,"52623":0,"52624":0,"52625":0,"52626":1,"52627":1,"52628":0,"52629":1,"52630":0,"52631":1,"52632":0,"52633":0,"52634":0,"52635":1,"52636":0,"52637":0,"52638":0,"52639":0,"52640":0,"52641":0,"52642":0,"52643":0,"52644":0,"52645":1,"52646":1,"52647":1,"52648":0,"52649":0,"52650":1,"52651":1,"52652":1,"52653":0,"52654":0,"52655":0,"52656":1,"52657":1,"52658":0,"52659":1,"52660":0,"52661":0,"52662":1,"52663":0,"52664":0,"52665":0,"52666":1,"52667":0,"52668":0,"52669":0,"52670":0,"52671":0,"52672":0,"52673":0,"52674":0,"52675":0,"52676":1,"52677":1,"52678":0,"52679":0,"52680":0,"52681":0,"52682":0,"52683":0,"52684":0,"52685":0,"52686":0,"52687":1,"52688":0,"52689":1,"52690":0,"52691":0,"52692":0,"52693":0,"52694":1,"52695":0,"52696":0,"52697":1,"52698":0,"52699":0,"52700":0,"52701":1,"52702":0,"52703":1,"52704":0,"52705":0,"52706":0,"52707":1,"52708":1,"52709":1,"52710":0,"52711":0,"52712":0,"52713":1,"52714":0,"52715":0,"52716":1,"52717":0,"52718":0,"52719":0,"52720":0,"52721":0,"52722":0,"52723":0,"52724":0,"52725":0,"52726":0,"52727":0,"52728":0,"52729":1,"52730":0,"52731":0,"52732":1,"52733":0,"52734":1,"52735":0,"52736":0,"52737":0,"52738":1,"52739":0,"52740":0,"52741":0,"52742":0,"52743":0,"52744":0,"52745":0,"52746":0,"52747":0,"52748":0,"52749":0,"52750":1,"52751":0,"52752":0,"52753":0,"52754":1,"52755":0,"52756":0,"52757":0,"52758":0,"52759":0,"52760":1,"52761":0,"52762":0,"52763":0,"52764":1,"52765":0,"52766":0,"52767":0,"52768":0,"52769":1,"52770":0,"52771":0,"52772":0,"52773":0,"52774":0,"52775":1,"52776":0,"52777":0,"52778":0,"52779":0,"52780":1,"52781":0,"52782":0,"52783":0,"52784":0,"52785":0,"52786":1,"52787":0,"52788":0,"52789":0,"52790":0,"52791":0,"52792":0,"52793":0,"52794":0,"52795":0,"52796":0,"52797":0,"52798":0,"52799":0,"52800":1,"52801":0,"52802":0,"52803":0,"52804":0,"52805":0,"52806":0,"52807":1,"52808":1,"52809":1,"52810":0,"52811":0,"52812":0,"52813":0,"52814":0,"52815":0,"52816":1,"52817":1,"52818":1,"52819":0,"52820":1,"52821":0,"52822":1,"52823":0,"52824":0,"52825":0,"52826":0,"52827":0,"52828":0,"52829":1,"52830":1,"52831":0,"52832":0,"52833":0,"52834":0,"52835":1,"52836":0,"52837":0,"52838":1,"52839":0,"52840":0,"52841":1,"52842":0,"52843":0,"52844":1,"52845":0,"52846":0,"52847":0,"52848":0,"52849":0,"52850":0,"52851":0,"52852":0,"52853":0,"52854":1,"52855":0,"52856":0,"52857":0,"52858":1,"52859":0,"52860":1,"52861":0,"52862":1,"52863":0,"52864":1,"52865":0,"52866":1,"52867":0,"52868":0,"52869":0,"52870":1,"52871":1,"52872":0,"52873":0,"52874":0,"52875":0,"52876":0,"52877":0,"52878":0,"52879":1,"52880":0,"52881":0,"52882":0,"52883":0,"52884":0,"52885":0,"52886":0,"52887":0,"52888":0,"52889":0,"52890":0,"52891":0,"52892":0,"52893":1,"52894":0,"52895":0,"52896":0,"52897":0,"52898":1,"52899":0,"52900":0,"52901":0,"52902":0,"52903":1,"52904":0,"52905":0,"52906":0,"52907":0,"52908":1,"52909":0,"52910":0,"52911":0,"52912":0,"52913":1,"52914":0,"52915":0,"52916":0,"52917":0,"52918":0,"52919":1,"52920":0,"52921":0,"52922":1,"52923":0,"52924":0,"52925":0,"52926":0,"52927":0,"52928":0,"52929":1,"52930":0,"52931":0,"52932":0,"52933":0,"52934":0,"52935":0,"52936":0,"52937":0,"52938":1,"52939":0,"52940":0,"52941":0,"52942":0,"52943":0,"52944":0,"52945":0,"52946":0,"52947":1,"52948":0,"52949":0,"52950":1,"52951":0,"52952":1,"52953":1,"52954":0,"52955":0,"52956":0,"52957":0,"52958":0,"52959":0,"52960":0,"52961":0,"52962":0,"52963":1,"52964":0,"52965":1,"52966":0,"52967":0,"52968":0,"52969":0,"52970":0,"52971":1,"52972":0,"52973":0,"52974":1,"52975":0,"52976":0,"52977":1,"52978":0,"52979":0,"52980":0,"52981":0,"52982":0,"52983":0,"52984":0,"52985":0,"52986":0,"52987":1,"52988":0,"52989":1,"52990":0,"52991":0,"52992":0,"52993":0,"52994":0,"52995":1,"52996":0,"52997":0,"52998":0,"52999":1,"53000":1,"53001":0,"53002":0,"53003":0,"53004":1,"53005":0,"53006":1,"53007":0,"53008":0,"53009":0,"53010":0,"53011":1,"53012":1,"53013":0,"53014":1,"53015":0,"53016":0,"53017":0,"53018":0,"53019":0,"53020":0,"53021":1,"53022":0,"53023":1,"53024":1,"53025":0,"53026":0,"53027":1,"53028":0,"53029":0,"53030":1,"53031":0,"53032":0,"53033":0,"53034":1,"53035":0,"53036":0,"53037":0,"53038":0,"53039":0,"53040":0,"53041":0,"53042":1,"53043":0,"53044":1,"53045":0,"53046":0,"53047":0,"53048":0,"53049":0,"53050":0,"53051":0,"53052":0,"53053":0,"53054":0,"53055":1,"53056":0,"53057":0,"53058":1,"53059":0,"53060":1,"53061":1,"53062":0,"53063":1,"53064":0,"53065":0,"53066":0,"53067":1,"53068":0,"53069":0,"53070":0,"53071":1,"53072":0,"53073":0,"53074":0,"53075":0,"53076":0,"53077":1,"53078":0,"53079":0,"53080":0,"53081":0,"53082":1,"53083":1,"53084":1,"53085":0,"53086":0,"53087":0,"53088":0,"53089":0,"53090":0,"53091":0,"53092":0,"53093":0,"53094":0,"53095":0,"53096":0,"53097":0,"53098":1,"53099":1,"53100":0,"53101":0,"53102":0,"53103":0,"53104":0,"53105":0,"53106":0,"53107":0,"53108":1,"53109":1,"53110":0,"53111":1,"53112":0,"53113":0,"53114":0,"53115":0,"53116":0,"53117":1,"53118":0,"53119":0,"53120":1,"53121":1,"53122":0,"53123":0,"53124":1,"53125":0,"53126":0,"53127":0,"53128":1,"53129":0,"53130":0,"53131":0,"53132":0,"53133":0,"53134":0,"53135":1,"53136":1,"53137":1,"53138":1,"53139":0,"53140":0,"53141":1,"53142":0,"53143":0,"53144":1,"53145":0,"53146":0,"53147":0,"53148":0,"53149":0,"53150":1,"53151":0,"53152":0,"53153":0,"53154":0,"53155":0,"53156":0,"53157":1,"53158":0,"53159":0,"53160":0,"53161":1,"53162":0,"53163":0,"53164":0,"53165":1,"53166":0,"53167":1,"53168":0,"53169":0,"53170":1,"53171":0,"53172":0,"53173":1,"53174":1,"53175":0,"53176":0,"53177":1,"53178":0,"53179":0,"53180":0,"53181":0,"53182":0,"53183":0,"53184":1,"53185":1,"53186":1,"53187":1,"53188":0,"53189":0,"53190":0,"53191":0,"53192":0,"53193":0,"53194":0,"53195":1,"53196":0,"53197":0,"53198":0,"53199":0,"53200":1,"53201":0,"53202":1,"53203":0,"53204":1,"53205":0,"53206":0,"53207":0,"53208":0,"53209":0,"53210":0,"53211":0,"53212":0,"53213":0,"53214":0,"53215":1,"53216":0,"53217":0,"53218":1,"53219":1,"53220":1,"53221":1,"53222":1,"53223":0,"53224":0,"53225":1,"53226":0,"53227":1,"53228":0,"53229":0,"53230":0,"53231":0,"53232":0,"53233":0,"53234":0,"53235":0,"53236":0,"53237":0,"53238":0,"53239":0,"53240":1,"53241":0,"53242":0,"53243":1,"53244":1,"53245":0,"53246":0,"53247":0,"53248":0,"53249":1,"53250":0,"53251":0,"53252":1,"53253":0,"53254":0,"53255":0,"53256":0,"53257":0,"53258":0,"53259":0,"53260":1,"53261":1,"53262":1,"53263":0,"53264":0,"53265":0,"53266":1,"53267":0,"53268":0,"53269":0,"53270":0,"53271":0,"53272":1,"53273":1,"53274":0,"53275":0,"53276":1,"53277":1,"53278":0,"53279":1,"53280":0,"53281":0,"53282":0,"53283":0,"53284":0,"53285":0,"53286":0,"53287":0,"53288":1,"53289":0,"53290":1,"53291":0,"53292":0,"53293":0,"53294":0,"53295":0,"53296":0,"53297":0,"53298":1,"53299":1,"53300":0,"53301":1,"53302":1,"53303":0,"53304":0,"53305":0,"53306":0,"53307":0,"53308":0,"53309":0,"53310":0,"53311":0,"53312":0,"53313":0,"53314":0,"53315":0,"53316":0,"53317":0,"53318":0,"53319":1,"53320":0,"53321":0,"53322":0,"53323":0,"53324":0,"53325":0,"53326":0,"53327":1,"53328":0,"53329":1,"53330":0,"53331":0,"53332":1,"53333":1,"53334":1,"53335":1,"53336":0,"53337":1,"53338":0,"53339":0,"53340":0,"53341":0,"53342":1,"53343":1,"53344":0,"53345":0,"53346":1,"53347":0,"53348":0,"53349":0,"53350":1,"53351":0,"53352":0,"53353":0,"53354":0,"53355":1,"53356":0,"53357":0,"53358":0,"53359":0,"53360":1,"53361":0,"53362":0,"53363":1,"53364":0,"53365":0,"53366":0,"53367":1,"53368":1,"53369":0,"53370":1,"53371":0,"53372":1,"53373":1,"53374":1,"53375":0,"53376":1,"53377":0,"53378":0,"53379":0,"53380":0,"53381":0,"53382":0,"53383":1,"53384":0,"53385":0,"53386":0,"53387":0,"53388":0,"53389":1,"53390":0,"53391":1,"53392":0,"53393":0,"53394":0,"53395":0,"53396":0,"53397":0,"53398":0,"53399":0,"53400":1,"53401":1,"53402":0,"53403":1,"53404":0,"53405":0,"53406":0,"53407":0,"53408":0,"53409":1,"53410":0,"53411":1,"53412":0,"53413":0,"53414":1,"53415":0,"53416":1,"53417":1,"53418":0,"53419":0,"53420":0,"53421":0,"53422":1,"53423":1,"53424":0,"53425":1,"53426":1,"53427":0,"53428":1,"53429":0,"53430":0,"53431":0,"53432":1,"53433":0,"53434":0,"53435":0,"53436":1,"53437":0,"53438":1,"53439":0,"53440":0,"53441":0,"53442":0,"53443":0,"53444":0,"53445":0,"53446":0,"53447":0,"53448":1,"53449":1,"53450":0,"53451":0,"53452":0,"53453":0,"53454":1,"53455":0,"53456":0,"53457":0,"53458":0,"53459":0,"53460":0,"53461":1,"53462":0,"53463":0,"53464":0,"53465":1,"53466":0,"53467":0,"53468":0,"53469":1,"53470":0,"53471":1,"53472":0,"53473":1,"53474":1,"53475":1,"53476":0,"53477":0,"53478":0,"53479":0,"53480":0,"53481":0,"53482":0,"53483":0,"53484":0,"53485":0,"53486":1,"53487":0,"53488":0,"53489":0,"53490":1,"53491":0,"53492":1,"53493":0,"53494":0,"53495":0,"53496":1,"53497":1,"53498":1,"53499":0,"53500":0,"53501":0,"53502":1,"53503":0,"53504":0,"53505":0,"53506":0,"53507":0,"53508":0,"53509":0,"53510":0,"53511":0,"53512":0,"53513":1,"53514":0,"53515":0,"53516":0,"53517":0,"53518":0,"53519":1,"53520":1,"53521":0,"53522":0,"53523":1,"53524":0,"53525":0,"53526":0,"53527":0,"53528":0,"53529":0,"53530":0,"53531":1,"53532":1,"53533":0,"53534":0,"53535":0,"53536":0,"53537":0,"53538":0,"53539":0,"53540":0,"53541":0,"53542":0,"53543":0,"53544":1,"53545":0,"53546":0,"53547":0,"53548":1,"53549":0,"53550":0,"53551":0,"53552":0,"53553":0,"53554":0,"53555":0,"53556":0,"53557":0,"53558":0,"53559":0,"53560":1,"53561":1,"53562":0,"53563":0,"53564":0,"53565":0,"53566":1,"53567":0,"53568":0,"53569":0,"53570":0,"53571":1,"53572":1,"53573":0,"53574":0,"53575":0,"53576":0,"53577":1,"53578":0,"53579":1,"53580":0,"53581":1,"53582":0,"53583":0,"53584":1,"53585":0,"53586":0,"53587":0,"53588":0,"53589":0,"53590":1,"53591":0,"53592":0,"53593":0,"53594":0,"53595":1,"53596":0,"53597":0,"53598":1,"53599":0,"53600":1,"53601":1,"53602":0,"53603":1,"53604":0,"53605":0,"53606":0,"53607":0,"53608":0,"53609":1,"53610":0,"53611":1,"53612":0,"53613":0,"53614":1,"53615":0,"53616":0,"53617":0,"53618":1,"53619":0,"53620":0,"53621":0,"53622":0,"53623":0,"53624":1,"53625":1,"53626":0,"53627":1,"53628":1,"53629":0,"53630":0,"53631":1,"53632":1,"53633":0,"53634":0,"53635":0,"53636":0,"53637":0,"53638":0,"53639":0,"53640":0,"53641":0,"53642":0,"53643":0,"53644":0,"53645":0,"53646":1,"53647":1,"53648":0,"53649":0,"53650":0,"53651":0,"53652":0,"53653":1,"53654":1,"53655":0,"53656":0,"53657":1,"53658":0,"53659":0,"53660":0,"53661":1,"53662":1,"53663":0,"53664":0,"53665":0,"53666":1,"53667":0,"53668":1,"53669":1,"53670":0,"53671":1,"53672":0,"53673":1,"53674":0,"53675":0,"53676":1,"53677":0,"53678":1,"53679":0,"53680":0,"53681":1,"53682":0,"53683":1,"53684":0,"53685":0,"53686":0,"53687":0,"53688":0,"53689":0,"53690":0,"53691":0,"53692":0,"53693":0,"53694":0,"53695":0,"53696":1,"53697":0,"53698":1,"53699":0,"53700":1,"53701":1,"53702":0,"53703":0,"53704":0,"53705":0,"53706":1,"53707":0,"53708":0,"53709":1,"53710":1,"53711":1,"53712":0,"53713":1,"53714":1,"53715":1,"53716":0,"53717":0,"53718":0,"53719":0,"53720":1,"53721":0,"53722":0,"53723":0,"53724":0,"53725":1,"53726":0,"53727":0,"53728":1,"53729":0,"53730":1,"53731":0,"53732":0,"53733":0,"53734":0,"53735":0,"53736":0,"53737":0,"53738":0,"53739":0,"53740":0,"53741":0,"53742":0,"53743":0,"53744":1,"53745":1,"53746":0,"53747":0,"53748":0,"53749":0,"53750":0,"53751":0,"53752":0,"53753":1,"53754":0,"53755":0,"53756":1,"53757":0,"53758":0,"53759":0,"53760":0,"53761":1,"53762":0,"53763":0,"53764":1,"53765":0,"53766":1,"53767":0,"53768":0,"53769":1,"53770":0,"53771":0,"53772":0,"53773":1,"53774":1,"53775":0,"53776":0,"53777":0,"53778":1,"53779":0,"53780":0,"53781":0,"53782":0,"53783":0,"53784":0,"53785":0,"53786":0,"53787":0,"53788":0,"53789":1,"53790":1,"53791":0,"53792":1,"53793":1,"53794":0,"53795":0,"53796":0,"53797":0,"53798":0,"53799":1,"53800":1,"53801":0,"53802":0,"53803":0,"53804":1,"53805":1,"53806":1,"53807":0,"53808":0,"53809":1,"53810":1,"53811":0,"53812":0,"53813":1,"53814":0,"53815":0,"53816":0,"53817":0,"53818":1,"53819":0,"53820":0,"53821":1,"53822":0,"53823":1,"53824":0,"53825":1,"53826":1,"53827":0,"53828":0,"53829":0,"53830":1,"53831":0,"53832":0,"53833":0,"53834":1,"53835":0,"53836":0,"53837":1,"53838":1,"53839":0,"53840":0,"53841":1,"53842":0,"53843":0,"53844":0,"53845":0,"53846":1,"53847":1,"53848":0,"53849":0,"53850":1,"53851":1,"53852":0,"53853":0,"53854":0,"53855":1,"53856":0,"53857":0,"53858":1,"53859":0,"53860":0,"53861":0,"53862":0,"53863":0,"53864":0,"53865":1,"53866":0,"53867":0,"53868":0,"53869":0,"53870":0,"53871":0,"53872":0,"53873":0,"53874":0,"53875":0,"53876":1,"53877":0,"53878":0,"53879":0,"53880":1,"53881":0,"53882":1,"53883":0,"53884":1,"53885":0,"53886":0,"53887":0,"53888":1,"53889":0,"53890":1,"53891":0,"53892":0,"53893":0,"53894":1,"53895":0,"53896":0,"53897":0,"53898":0,"53899":0,"53900":0,"53901":1,"53902":0,"53903":0,"53904":0,"53905":0,"53906":0,"53907":1,"53908":0,"53909":1,"53910":0,"53911":0,"53912":0,"53913":1,"53914":0,"53915":0,"53916":0,"53917":0,"53918":0,"53919":0,"53920":0,"53921":0,"53922":0,"53923":0,"53924":0,"53925":0,"53926":0,"53927":1,"53928":0,"53929":1,"53930":0,"53931":0,"53932":0,"53933":0,"53934":0,"53935":0,"53936":0,"53937":0,"53938":0,"53939":0,"53940":0,"53941":1,"53942":0,"53943":1,"53944":0,"53945":0,"53946":1,"53947":1,"53948":0,"53949":1,"53950":0,"53951":0,"53952":0,"53953":0,"53954":0,"53955":0,"53956":1,"53957":0,"53958":0,"53959":0,"53960":0,"53961":1,"53962":1,"53963":1,"53964":0,"53965":0,"53966":1,"53967":0,"53968":0,"53969":0,"53970":0,"53971":0,"53972":1,"53973":0,"53974":0,"53975":0,"53976":0,"53977":0,"53978":0,"53979":0,"53980":1,"53981":1,"53982":0,"53983":0,"53984":0,"53985":0,"53986":0,"53987":0,"53988":1,"53989":1,"53990":0,"53991":0,"53992":0,"53993":0,"53994":0,"53995":0,"53996":0,"53997":0,"53998":1,"53999":0,"54000":0,"54001":1,"54002":1,"54003":1,"54004":1,"54005":0,"54006":0,"54007":0,"54008":1,"54009":0,"54010":1,"54011":0,"54012":0,"54013":0,"54014":1,"54015":1,"54016":0,"54017":0,"54018":0,"54019":0,"54020":1,"54021":1,"54022":0,"54023":0,"54024":1,"54025":0,"54026":0,"54027":0,"54028":1,"54029":0,"54030":1,"54031":0,"54032":0,"54033":0,"54034":0,"54035":0,"54036":0,"54037":0,"54038":0,"54039":0,"54040":0,"54041":1,"54042":1,"54043":0,"54044":0,"54045":0,"54046":0,"54047":0,"54048":0,"54049":1,"54050":0,"54051":0,"54052":0,"54053":1,"54054":0,"54055":1,"54056":0,"54057":0,"54058":1,"54059":1,"54060":0,"54061":1,"54062":0,"54063":0,"54064":0,"54065":0,"54066":0,"54067":0,"54068":0,"54069":1,"54070":0,"54071":0,"54072":1,"54073":0,"54074":1,"54075":1,"54076":1,"54077":1,"54078":0,"54079":0,"54080":0,"54081":0,"54082":0,"54083":1,"54084":0,"54085":0,"54086":0,"54087":1,"54088":0,"54089":0,"54090":0,"54091":0,"54092":0,"54093":0,"54094":0,"54095":1,"54096":0,"54097":1,"54098":0,"54099":0,"54100":0,"54101":1,"54102":0,"54103":0,"54104":0,"54105":0,"54106":0,"54107":0,"54108":0,"54109":1,"54110":0,"54111":0,"54112":0,"54113":1,"54114":0,"54115":0,"54116":1,"54117":0,"54118":1,"54119":0,"54120":0,"54121":0,"54122":1,"54123":0,"54124":0,"54125":0,"54126":0,"54127":0,"54128":0,"54129":0,"54130":0,"54131":0,"54132":0,"54133":1,"54134":1,"54135":1,"54136":0,"54137":1,"54138":0,"54139":0,"54140":0,"54141":0,"54142":0,"54143":0,"54144":0,"54145":0,"54146":0,"54147":0,"54148":0,"54149":0,"54150":1,"54151":1,"54152":0,"54153":0,"54154":1,"54155":0,"54156":0,"54157":0,"54158":0,"54159":1,"54160":0,"54161":0,"54162":0,"54163":1,"54164":0,"54165":0,"54166":0,"54167":1,"54168":0,"54169":0,"54170":0,"54171":0,"54172":1,"54173":0,"54174":1,"54175":1,"54176":0,"54177":1,"54178":1,"54179":0,"54180":0,"54181":0,"54182":0,"54183":1,"54184":1,"54185":0,"54186":0,"54187":0,"54188":0,"54189":0,"54190":1,"54191":0,"54192":0,"54193":1,"54194":0,"54195":0,"54196":1,"54197":0,"54198":0,"54199":1,"54200":0,"54201":0,"54202":1,"54203":0,"54204":0,"54205":0,"54206":0,"54207":1,"54208":0,"54209":0,"54210":0,"54211":0,"54212":0,"54213":0,"54214":0,"54215":0,"54216":1,"54217":0,"54218":0,"54219":0,"54220":0,"54221":0,"54222":0,"54223":0,"54224":0,"54225":0,"54226":0,"54227":0,"54228":0,"54229":0,"54230":0,"54231":0,"54232":0,"54233":1,"54234":0,"54235":1,"54236":0,"54237":0,"54238":0,"54239":0,"54240":1,"54241":0,"54242":1,"54243":0,"54244":0,"54245":0,"54246":0,"54247":0,"54248":0,"54249":0,"54250":1,"54251":0,"54252":0,"54253":0,"54254":0,"54255":0,"54256":0,"54257":0,"54258":0,"54259":1,"54260":0,"54261":1,"54262":0,"54263":0,"54264":1,"54265":0,"54266":0,"54267":0,"54268":0,"54269":0,"54270":0,"54271":0,"54272":0,"54273":1,"54274":0,"54275":0,"54276":1,"54277":0,"54278":1,"54279":0,"54280":0,"54281":1,"54282":0,"54283":1,"54284":0,"54285":0,"54286":1,"54287":0,"54288":0,"54289":0,"54290":1,"54291":1,"54292":0,"54293":0,"54294":1,"54295":0,"54296":0,"54297":0,"54298":0,"54299":0,"54300":0,"54301":0,"54302":1,"54303":1,"54304":0,"54305":0,"54306":1,"54307":0,"54308":0,"54309":0,"54310":1,"54311":1,"54312":0,"54313":0,"54314":0,"54315":0,"54316":0,"54317":1,"54318":0,"54319":1,"54320":0,"54321":0,"54322":0,"54323":0,"54324":0,"54325":0,"54326":0,"54327":0,"54328":1,"54329":0,"54330":0,"54331":1,"54332":0,"54333":0,"54334":0,"54335":1,"54336":0,"54337":0,"54338":0,"54339":0,"54340":0,"54341":0,"54342":0,"54343":1,"54344":0,"54345":1,"54346":0,"54347":0,"54348":0,"54349":0,"54350":0,"54351":0,"54352":0,"54353":0,"54354":0,"54355":1,"54356":0,"54357":0,"54358":0,"54359":0,"54360":0,"54361":0,"54362":1,"54363":0,"54364":0,"54365":0,"54366":0,"54367":1,"54368":0,"54369":1,"54370":0,"54371":0,"54372":0,"54373":0,"54374":0,"54375":0,"54376":0,"54377":0,"54378":0,"54379":0,"54380":0,"54381":1,"54382":1,"54383":0,"54384":0,"54385":0,"54386":0,"54387":0,"54388":0,"54389":0,"54390":0,"54391":0,"54392":0,"54393":1,"54394":0,"54395":0,"54396":0,"54397":0,"54398":0,"54399":0,"54400":0,"54401":0,"54402":0,"54403":0,"54404":0,"54405":0,"54406":0,"54407":1,"54408":0,"54409":0,"54410":1,"54411":0,"54412":0,"54413":0,"54414":1,"54415":0,"54416":0,"54417":0,"54418":0,"54419":1,"54420":1,"54421":1,"54422":0,"54423":0,"54424":0,"54425":0,"54426":0,"54427":0,"54428":1,"54429":0,"54430":0,"54431":0,"54432":1,"54433":0,"54434":0,"54435":1,"54436":0,"54437":0,"54438":0,"54439":0,"54440":0,"54441":0,"54442":0,"54443":1,"54444":0,"54445":0,"54446":0,"54447":0,"54448":0,"54449":1,"54450":0,"54451":0,"54452":0,"54453":0,"54454":1,"54455":0,"54456":0,"54457":0,"54458":0,"54459":0,"54460":0,"54461":0,"54462":1,"54463":0,"54464":0,"54465":0,"54466":1,"54467":0,"54468":0,"54469":0,"54470":0,"54471":0,"54472":0,"54473":0,"54474":0,"54475":0,"54476":0,"54477":0,"54478":0,"54479":0,"54480":1,"54481":1,"54482":0,"54483":1,"54484":0,"54485":0,"54486":1,"54487":1,"54488":0,"54489":0,"54490":0,"54491":1,"54492":0,"54493":1,"54494":0,"54495":0,"54496":0,"54497":1,"54498":0,"54499":0,"54500":0,"54501":0,"54502":1,"54503":0,"54504":0,"54505":0,"54506":0,"54507":0,"54508":0,"54509":0,"54510":0,"54511":1,"54512":0,"54513":0,"54514":0,"54515":0,"54516":0,"54517":1,"54518":0,"54519":1,"54520":0,"54521":0,"54522":0,"54523":1,"54524":0,"54525":0,"54526":0,"54527":1,"54528":0,"54529":1,"54530":1,"54531":0,"54532":0,"54533":0,"54534":0,"54535":0,"54536":0,"54537":0,"54538":0,"54539":0,"54540":1,"54541":0,"54542":1,"54543":0,"54544":0,"54545":1,"54546":0,"54547":1,"54548":1,"54549":0,"54550":0,"54551":1,"54552":0,"54553":0,"54554":0,"54555":1,"54556":1,"54557":1,"54558":0,"54559":0,"54560":0,"54561":0,"54562":0,"54563":0,"54564":0,"54565":0,"54566":1,"54567":0,"54568":1,"54569":0,"54570":1,"54571":0,"54572":1,"54573":0,"54574":0,"54575":0,"54576":0,"54577":0,"54578":0,"54579":1,"54580":0,"54581":1,"54582":0,"54583":0,"54584":0,"54585":0,"54586":1,"54587":1,"54588":0,"54589":0,"54590":1,"54591":0,"54592":0,"54593":0,"54594":0,"54595":0,"54596":0,"54597":0,"54598":0,"54599":0,"54600":0,"54601":0,"54602":0,"54603":1,"54604":0,"54605":0,"54606":1,"54607":0,"54608":1,"54609":0,"54610":1,"54611":0,"54612":0,"54613":0,"54614":0,"54615":0,"54616":0,"54617":0,"54618":0,"54619":1,"54620":0,"54621":0,"54622":1,"54623":1,"54624":0,"54625":1,"54626":1,"54627":0,"54628":0,"54629":0,"54630":0,"54631":0,"54632":0,"54633":0,"54634":0,"54635":1,"54636":0,"54637":1,"54638":0,"54639":0,"54640":0,"54641":0,"54642":0,"54643":0,"54644":0,"54645":1,"54646":1,"54647":0,"54648":0,"54649":1,"54650":0,"54651":0,"54652":0,"54653":0,"54654":1,"54655":0,"54656":0,"54657":0,"54658":0,"54659":0,"54660":0,"54661":0,"54662":0,"54663":0,"54664":0,"54665":0,"54666":0,"54667":0,"54668":0,"54669":0,"54670":0,"54671":0,"54672":0,"54673":0,"54674":0,"54675":0,"54676":0,"54677":0,"54678":0,"54679":0,"54680":0,"54681":0,"54682":1,"54683":0,"54684":0,"54685":1,"54686":0,"54687":1,"54688":0,"54689":0,"54690":0,"54691":0,"54692":0,"54693":0,"54694":0,"54695":0,"54696":0,"54697":0,"54698":1,"54699":0,"54700":0,"54701":0,"54702":0,"54703":0,"54704":0,"54705":1,"54706":0,"54707":1,"54708":0,"54709":1,"54710":0,"54711":1,"54712":0,"54713":0,"54714":0,"54715":1,"54716":0,"54717":0,"54718":0,"54719":0,"54720":0,"54721":1,"54722":0,"54723":0,"54724":0,"54725":0,"54726":1,"54727":0,"54728":0,"54729":0,"54730":0,"54731":0,"54732":0,"54733":0,"54734":0,"54735":0,"54736":0,"54737":1,"54738":1,"54739":0,"54740":1,"54741":0,"54742":1,"54743":1,"54744":0,"54745":0,"54746":0,"54747":0,"54748":0,"54749":0,"54750":0,"54751":0,"54752":0,"54753":0,"54754":0,"54755":1,"54756":0,"54757":0,"54758":0,"54759":0,"54760":1,"54761":0,"54762":1,"54763":0,"54764":1,"54765":0,"54766":0,"54767":0,"54768":1,"54769":0,"54770":0,"54771":0,"54772":0,"54773":0,"54774":1,"54775":0,"54776":0,"54777":0,"54778":0,"54779":1,"54780":0,"54781":0,"54782":0,"54783":0,"54784":0,"54785":0,"54786":1,"54787":0,"54788":0,"54789":1,"54790":0,"54791":0,"54792":1,"54793":0,"54794":1,"54795":0,"54796":0,"54797":0,"54798":0,"54799":0,"54800":1,"54801":0,"54802":0,"54803":0,"54804":1,"54805":0,"54806":0,"54807":0,"54808":0,"54809":0,"54810":1,"54811":1,"54812":0,"54813":1,"54814":0,"54815":0,"54816":0,"54817":0,"54818":1,"54819":0,"54820":1,"54821":1,"54822":1,"54823":0,"54824":0,"54825":0,"54826":0,"54827":1,"54828":0,"54829":0,"54830":1,"54831":0,"54832":1,"54833":0,"54834":0,"54835":0,"54836":0,"54837":0,"54838":0,"54839":1,"54840":1,"54841":0,"54842":0,"54843":1,"54844":0,"54845":0,"54846":0,"54847":0,"54848":0,"54849":0,"54850":0,"54851":0,"54852":1,"54853":0,"54854":1,"54855":0,"54856":0,"54857":0,"54858":0,"54859":0,"54860":0,"54861":1,"54862":1,"54863":1,"54864":1,"54865":0,"54866":0,"54867":0,"54868":1,"54869":1,"54870":0,"54871":0,"54872":1,"54873":0,"54874":0,"54875":0,"54876":0,"54877":1,"54878":0,"54879":0,"54880":0,"54881":0,"54882":0,"54883":0,"54884":1,"54885":0,"54886":0,"54887":0,"54888":1,"54889":0,"54890":0,"54891":1,"54892":0,"54893":0,"54894":0,"54895":0,"54896":0,"54897":0,"54898":0,"54899":0,"54900":0,"54901":0,"54902":1,"54903":0,"54904":0,"54905":1,"54906":0,"54907":0,"54908":0,"54909":0,"54910":0,"54911":1,"54912":1,"54913":1,"54914":0,"54915":1,"54916":0,"54917":0,"54918":1,"54919":0,"54920":0,"54921":0,"54922":0,"54923":0,"54924":0,"54925":1,"54926":0,"54927":1,"54928":0,"54929":0,"54930":0,"54931":0,"54932":1,"54933":0,"54934":0,"54935":1,"54936":0,"54937":0,"54938":1,"54939":0,"54940":0,"54941":1,"54942":1,"54943":0,"54944":0,"54945":0,"54946":1,"54947":0,"54948":0,"54949":0,"54950":0,"54951":0,"54952":1,"54953":0,"54954":0,"54955":0,"54956":0,"54957":1,"54958":0,"54959":1,"54960":0,"54961":0,"54962":0,"54963":1,"54964":0,"54965":0,"54966":0,"54967":1,"54968":0,"54969":0,"54970":0,"54971":0,"54972":0,"54973":0,"54974":1,"54975":0,"54976":1,"54977":0,"54978":0,"54979":1,"54980":1,"54981":1,"54982":1,"54983":1,"54984":0,"54985":0,"54986":0,"54987":1,"54988":1,"54989":0,"54990":0,"54991":0,"54992":0,"54993":0,"54994":0,"54995":0,"54996":0,"54997":0,"54998":0,"54999":0,"55000":1,"55001":0,"55002":0,"55003":1,"55004":0,"55005":0,"55006":0,"55007":0,"55008":0,"55009":1,"55010":0,"55011":1,"55012":0,"55013":0,"55014":0,"55015":0,"55016":0,"55017":0,"55018":0,"55019":0,"55020":0,"55021":0,"55022":0,"55023":1,"55024":0,"55025":1,"55026":0,"55027":0,"55028":1,"55029":0,"55030":0,"55031":1,"55032":0,"55033":0,"55034":1,"55035":0,"55036":0,"55037":0,"55038":0,"55039":0,"55040":0,"55041":0,"55042":1,"55043":0,"55044":0,"55045":0,"55046":0,"55047":0,"55048":0,"55049":1,"55050":1,"55051":0,"55052":1,"55053":0,"55054":0,"55055":1,"55056":0,"55057":0,"55058":0,"55059":0,"55060":1,"55061":0,"55062":0,"55063":1,"55064":0,"55065":1,"55066":0,"55067":0,"55068":0,"55069":0,"55070":0,"55071":0,"55072":0,"55073":0,"55074":0,"55075":0,"55076":0,"55077":0,"55078":0,"55079":0,"55080":0,"55081":1,"55082":0,"55083":1,"55084":0,"55085":0,"55086":0,"55087":0,"55088":0,"55089":1,"55090":0,"55091":0,"55092":0,"55093":1,"55094":0,"55095":0,"55096":0,"55097":0,"55098":0,"55099":0,"55100":0,"55101":0,"55102":0,"55103":1,"55104":0,"55105":1,"55106":0,"55107":0,"55108":0,"55109":0,"55110":0,"55111":0,"55112":0,"55113":0,"55114":1,"55115":1,"55116":0,"55117":1,"55118":0,"55119":0,"55120":0,"55121":0,"55122":0,"55123":0,"55124":0,"55125":1,"55126":0,"55127":0,"55128":1,"55129":0,"55130":0,"55131":0,"55132":0,"55133":0,"55134":1,"55135":1,"55136":0,"55137":0,"55138":0,"55139":0,"55140":0,"55141":0,"55142":0,"55143":0,"55144":0,"55145":0,"55146":1,"55147":0,"55148":0,"55149":1,"55150":0,"55151":0,"55152":0,"55153":0,"55154":1,"55155":0,"55156":0,"55157":0,"55158":0,"55159":1,"55160":1,"55161":0,"55162":1,"55163":1,"55164":1,"55165":0,"55166":1,"55167":0,"55168":0,"55169":0,"55170":1,"55171":0,"55172":1,"55173":1,"55174":0,"55175":0,"55176":0,"55177":0,"55178":0,"55179":0,"55180":0,"55181":1,"55182":0,"55183":1,"55184":0,"55185":0,"55186":0,"55187":0,"55188":0,"55189":1,"55190":0,"55191":1,"55192":0,"55193":0,"55194":0,"55195":0,"55196":0,"55197":0,"55198":0,"55199":0,"55200":0,"55201":1,"55202":0,"55203":0,"55204":0,"55205":0,"55206":1,"55207":0,"55208":1,"55209":0,"55210":0,"55211":0,"55212":0,"55213":0,"55214":0,"55215":0,"55216":1,"55217":0,"55218":1,"55219":0,"55220":1,"55221":0,"55222":0,"55223":0,"55224":0,"55225":0,"55226":0,"55227":0,"55228":0,"55229":0,"55230":0,"55231":0,"55232":0,"55233":0,"55234":0,"55235":1,"55236":0,"55237":0,"55238":1,"55239":0,"55240":1,"55241":1,"55242":0,"55243":0,"55244":0,"55245":0,"55246":0,"55247":0,"55248":0,"55249":1,"55250":0,"55251":1,"55252":0,"55253":0,"55254":0,"55255":0,"55256":0,"55257":0,"55258":0,"55259":1,"55260":1,"55261":0,"55262":0,"55263":0,"55264":0,"55265":0,"55266":0,"55267":1,"55268":0,"55269":0,"55270":0,"55271":0,"55272":0,"55273":0,"55274":0,"55275":1,"55276":0,"55277":0,"55278":1,"55279":0,"55280":0,"55281":0,"55282":1,"55283":0,"55284":0,"55285":0,"55286":0,"55287":0,"55288":0,"55289":0,"55290":0,"55291":0,"55292":0,"55293":0,"55294":0,"55295":0,"55296":0,"55297":0,"55298":0,"55299":0,"55300":0,"55301":1,"55302":0,"55303":1,"55304":1,"55305":0,"55306":1,"55307":1,"55308":0,"55309":0,"55310":0,"55311":0,"55312":0,"55313":0,"55314":1,"55315":0,"55316":0,"55317":0,"55318":1,"55319":0,"55320":1,"55321":0,"55322":0,"55323":1,"55324":0,"55325":0,"55326":0,"55327":0,"55328":1,"55329":1,"55330":0,"55331":0,"55332":0,"55333":1,"55334":0,"55335":0,"55336":1,"55337":1,"55338":0,"55339":1,"55340":0,"55341":1,"55342":0,"55343":1,"55344":0,"55345":0,"55346":0,"55347":0,"55348":0,"55349":0,"55350":0,"55351":1,"55352":0,"55353":0,"55354":1,"55355":0,"55356":0,"55357":1,"55358":0,"55359":0,"55360":0,"55361":0,"55362":0,"55363":0,"55364":0,"55365":0,"55366":0,"55367":0,"55368":0,"55369":0,"55370":0,"55371":0,"55372":0,"55373":0,"55374":1,"55375":1,"55376":0,"55377":1,"55378":1,"55379":0,"55380":0,"55381":1,"55382":1,"55383":0,"55384":1,"55385":0,"55386":0,"55387":0,"55388":0,"55389":1,"55390":0,"55391":0,"55392":0,"55393":1,"55394":0,"55395":0,"55396":0,"55397":0,"55398":0,"55399":1,"55400":0,"55401":0,"55402":0,"55403":0,"55404":0,"55405":1,"55406":1,"55407":0,"55408":0,"55409":0,"55410":0,"55411":0,"55412":1,"55413":1,"55414":0,"55415":0,"55416":0,"55417":0,"55418":1,"55419":0,"55420":0,"55421":0,"55422":0,"55423":0,"55424":0,"55425":0,"55426":0,"55427":0,"55428":0,"55429":0,"55430":0,"55431":0,"55432":0,"55433":0,"55434":0,"55435":0,"55436":0,"55437":0,"55438":0,"55439":0,"55440":1,"55441":0,"55442":1,"55443":0,"55444":0,"55445":1,"55446":0,"55447":0,"55448":0,"55449":0,"55450":0,"55451":1,"55452":0,"55453":0,"55454":0,"55455":0,"55456":1,"55457":1,"55458":0,"55459":0,"55460":0,"55461":0,"55462":0,"55463":0,"55464":0,"55465":0,"55466":0,"55467":0,"55468":0,"55469":0,"55470":0,"55471":0,"55472":0,"55473":0,"55474":0,"55475":0,"55476":1,"55477":1,"55478":0,"55479":0,"55480":1,"55481":0,"55482":0,"55483":0,"55484":0,"55485":1,"55486":0,"55487":1,"55488":1,"55489":1,"55490":0,"55491":1,"55492":1,"55493":0,"55494":0,"55495":1,"55496":0,"55497":0,"55498":0,"55499":0,"55500":1,"55501":0,"55502":0,"55503":0,"55504":0,"55505":0,"55506":0,"55507":0,"55508":0,"55509":1,"55510":0,"55511":0,"55512":0,"55513":1,"55514":0,"55515":1,"55516":0,"55517":0,"55518":0,"55519":0,"55520":0,"55521":0,"55522":0,"55523":1,"55524":0,"55525":0,"55526":0,"55527":0,"55528":0,"55529":0,"55530":0,"55531":0,"55532":0,"55533":0,"55534":0,"55535":0,"55536":0,"55537":0,"55538":0,"55539":0,"55540":1,"55541":1,"55542":1,"55543":1,"55544":0,"55545":1,"55546":0,"55547":0,"55548":1,"55549":0,"55550":0,"55551":1,"55552":1,"55553":0,"55554":1,"55555":0,"55556":0,"55557":0,"55558":0,"55559":0,"55560":0,"55561":0,"55562":0,"55563":0,"55564":1,"55565":0,"55566":0,"55567":0,"55568":0,"55569":0,"55570":0,"55571":0,"55572":0,"55573":0,"55574":0,"55575":0,"55576":1,"55577":0,"55578":0,"55579":0,"55580":0,"55581":0,"55582":0,"55583":0,"55584":0,"55585":1,"55586":1,"55587":1,"55588":0,"55589":1,"55590":1,"55591":1,"55592":1,"55593":1,"55594":0,"55595":0,"55596":0,"55597":1,"55598":0,"55599":0,"55600":0,"55601":1,"55602":0,"55603":1,"55604":1,"55605":0,"55606":0,"55607":1,"55608":0,"55609":0,"55610":0,"55611":0,"55612":1,"55613":0,"55614":0,"55615":0,"55616":0,"55617":1,"55618":0,"55619":0,"55620":0,"55621":0,"55622":0,"55623":1,"55624":0,"55625":0,"55626":0,"55627":1,"55628":0,"55629":0,"55630":0,"55631":1,"55632":0,"55633":0,"55634":0,"55635":0,"55636":0,"55637":0,"55638":0,"55639":1,"55640":1,"55641":0,"55642":0,"55643":0,"55644":0,"55645":0,"55646":0,"55647":0,"55648":0,"55649":0,"55650":0,"55651":0,"55652":0,"55653":0,"55654":1,"55655":0,"55656":0,"55657":0,"55658":0,"55659":0,"55660":0,"55661":0,"55662":0,"55663":0,"55664":0,"55665":0,"55666":0,"55667":1,"55668":0,"55669":1,"55670":0,"55671":1,"55672":0,"55673":0,"55674":1,"55675":1,"55676":0,"55677":0,"55678":1,"55679":1,"55680":0,"55681":1,"55682":1,"55683":0,"55684":0,"55685":0,"55686":1,"55687":0,"55688":0,"55689":0,"55690":0,"55691":0,"55692":0,"55693":0,"55694":0,"55695":0,"55696":0,"55697":1,"55698":0,"55699":0,"55700":0,"55701":0,"55702":0,"55703":0,"55704":0,"55705":0,"55706":0,"55707":1,"55708":0,"55709":0,"55710":1,"55711":0,"55712":0,"55713":0,"55714":0,"55715":0,"55716":0,"55717":0,"55718":1,"55719":1,"55720":0,"55721":0,"55722":0,"55723":0,"55724":0,"55725":0,"55726":1,"55727":0,"55728":0,"55729":0,"55730":0,"55731":0,"55732":0,"55733":0,"55734":0,"55735":0,"55736":0,"55737":0,"55738":1,"55739":0,"55740":0,"55741":1,"55742":1,"55743":0,"55744":1,"55745":0,"55746":0,"55747":0,"55748":0,"55749":0,"55750":1,"55751":1,"55752":1,"55753":0,"55754":0,"55755":0,"55756":0,"55757":0,"55758":0,"55759":1,"55760":0,"55761":0,"55762":0,"55763":0,"55764":0,"55765":0,"55766":0,"55767":0,"55768":1,"55769":0,"55770":0,"55771":1,"55772":0,"55773":0,"55774":0,"55775":0,"55776":0,"55777":1,"55778":0,"55779":0,"55780":0,"55781":0,"55782":1,"55783":1,"55784":0,"55785":0,"55786":1,"55787":0,"55788":0,"55789":0,"55790":1,"55791":1,"55792":0,"55793":0,"55794":1,"55795":0,"55796":0,"55797":0,"55798":0,"55799":1,"55800":1,"55801":0,"55802":0,"55803":0,"55804":0,"55805":0,"55806":0,"55807":0,"55808":0,"55809":0,"55810":1,"55811":0,"55812":0,"55813":0,"55814":0,"55815":0,"55816":0,"55817":0,"55818":0,"55819":0,"55820":0,"55821":0,"55822":0,"55823":1,"55824":0,"55825":0,"55826":0,"55827":0,"55828":0,"55829":1,"55830":0,"55831":1,"55832":0,"55833":0,"55834":0,"55835":0,"55836":0,"55837":0,"55838":0,"55839":1,"55840":1,"55841":0,"55842":1,"55843":0,"55844":0,"55845":0,"55846":0,"55847":1,"55848":0,"55849":0,"55850":0,"55851":0,"55852":0,"55853":0,"55854":1,"55855":0,"55856":0,"55857":1,"55858":0,"55859":0,"55860":0,"55861":0,"55862":1,"55863":0,"55864":0,"55865":1,"55866":0,"55867":0,"55868":0,"55869":0,"55870":0,"55871":0,"55872":1,"55873":1,"55874":1,"55875":1,"55876":0,"55877":0,"55878":0,"55879":0,"55880":0,"55881":1,"55882":0,"55883":0,"55884":0,"55885":1,"55886":0,"55887":0,"55888":1,"55889":0,"55890":1,"55891":0,"55892":0,"55893":0,"55894":1,"55895":1,"55896":0,"55897":0,"55898":0,"55899":1,"55900":0,"55901":1,"55902":1,"55903":1,"55904":0,"55905":0,"55906":0,"55907":0,"55908":0,"55909":0,"55910":0,"55911":0,"55912":1,"55913":0,"55914":0,"55915":0,"55916":0,"55917":0,"55918":1,"55919":1,"55920":0,"55921":0,"55922":0,"55923":0,"55924":0,"55925":0,"55926":0,"55927":1,"55928":0,"55929":0,"55930":0,"55931":0,"55932":1,"55933":0,"55934":0,"55935":0,"55936":0,"55937":1,"55938":0,"55939":0,"55940":0,"55941":0,"55942":0,"55943":1,"55944":0,"55945":0,"55946":0,"55947":0,"55948":1,"55949":0,"55950":0,"55951":1,"55952":1,"55953":0,"55954":0,"55955":0,"55956":1,"55957":0,"55958":1,"55959":0,"55960":1,"55961":1,"55962":0,"55963":0,"55964":0,"55965":1,"55966":1,"55967":1,"55968":1,"55969":0,"55970":0,"55971":0,"55972":1,"55973":0,"55974":0,"55975":1,"55976":0,"55977":1,"55978":0,"55979":0,"55980":0,"55981":0,"55982":0,"55983":0,"55984":0,"55985":1,"55986":0,"55987":1,"55988":0,"55989":0,"55990":0,"55991":0,"55992":0,"55993":0,"55994":0,"55995":0,"55996":0,"55997":0,"55998":0,"55999":0,"56000":0,"56001":1,"56002":0,"56003":0,"56004":0,"56005":0,"56006":1,"56007":1,"56008":1,"56009":0,"56010":0,"56011":1,"56012":0,"56013":1,"56014":0,"56015":1,"56016":0,"56017":0,"56018":0,"56019":0,"56020":1,"56021":0,"56022":1,"56023":0,"56024":0,"56025":0,"56026":0,"56027":0,"56028":0,"56029":1,"56030":0,"56031":0,"56032":0,"56033":1,"56034":0,"56035":0,"56036":1,"56037":0,"56038":1,"56039":0,"56040":1,"56041":1,"56042":0,"56043":0,"56044":1,"56045":1,"56046":1,"56047":0,"56048":0,"56049":0,"56050":1,"56051":0,"56052":0,"56053":0,"56054":0,"56055":0,"56056":0,"56057":0,"56058":0,"56059":0,"56060":0,"56061":0,"56062":0,"56063":0,"56064":0,"56065":1,"56066":0,"56067":1,"56068":0,"56069":1,"56070":0,"56071":1,"56072":0,"56073":0,"56074":0,"56075":0,"56076":0,"56077":0,"56078":0,"56079":0,"56080":0,"56081":0,"56082":1,"56083":0,"56084":0,"56085":0,"56086":0,"56087":1,"56088":1,"56089":0,"56090":0,"56091":0,"56092":1,"56093":1,"56094":0,"56095":0,"56096":0,"56097":0,"56098":1,"56099":0,"56100":1,"56101":0,"56102":0,"56103":0,"56104":0,"56105":0,"56106":0,"56107":0,"56108":0,"56109":1,"56110":1,"56111":0,"56112":0,"56113":0,"56114":0,"56115":1,"56116":0,"56117":1,"56118":1,"56119":0,"56120":0,"56121":0,"56122":0,"56123":0,"56124":0,"56125":1,"56126":1,"56127":0,"56128":1,"56129":0,"56130":1,"56131":0,"56132":1,"56133":0,"56134":0,"56135":0,"56136":0,"56137":0,"56138":0,"56139":0,"56140":1,"56141":0,"56142":0,"56143":1,"56144":0,"56145":0,"56146":0,"56147":1,"56148":0,"56149":0,"56150":1,"56151":0,"56152":0,"56153":0,"56154":0,"56155":1,"56156":1,"56157":0,"56158":0,"56159":1,"56160":0,"56161":0,"56162":1,"56163":0,"56164":1,"56165":0,"56166":0,"56167":0,"56168":1,"56169":1,"56170":0,"56171":0,"56172":1,"56173":0,"56174":0,"56175":0,"56176":0,"56177":1,"56178":0,"56179":1,"56180":0,"56181":0,"56182":0,"56183":1,"56184":0,"56185":0,"56186":1,"56187":1,"56188":0,"56189":0,"56190":0,"56191":0,"56192":0,"56193":0,"56194":0,"56195":0,"56196":1,"56197":0,"56198":0,"56199":0,"56200":0,"56201":0,"56202":0,"56203":0,"56204":0,"56205":0,"56206":0,"56207":0,"56208":0,"56209":0,"56210":0,"56211":0,"56212":0,"56213":1,"56214":0,"56215":0,"56216":1,"56217":0,"56218":1,"56219":0,"56220":0,"56221":1,"56222":0,"56223":0,"56224":0,"56225":0,"56226":0,"56227":0,"56228":0,"56229":1,"56230":0,"56231":0,"56232":0,"56233":0,"56234":0,"56235":0,"56236":0,"56237":0,"56238":1,"56239":0,"56240":1,"56241":0,"56242":0,"56243":0,"56244":0,"56245":1,"56246":0,"56247":0,"56248":0,"56249":0,"56250":1,"56251":0,"56252":1,"56253":0,"56254":0,"56255":0,"56256":0,"56257":0,"56258":0,"56259":0,"56260":0,"56261":0,"56262":0,"56263":0,"56264":0,"56265":0,"56266":0,"56267":0,"56268":0,"56269":0,"56270":1,"56271":0,"56272":0,"56273":1,"56274":0,"56275":0,"56276":1,"56277":1,"56278":0,"56279":0,"56280":1,"56281":0,"56282":0,"56283":0,"56284":0,"56285":0,"56286":0,"56287":0,"56288":0,"56289":0,"56290":0,"56291":1,"56292":0,"56293":0,"56294":0,"56295":0,"56296":1,"56297":1,"56298":0,"56299":0,"56300":0,"56301":1,"56302":0,"56303":0,"56304":0,"56305":0,"56306":0,"56307":0,"56308":0,"56309":0,"56310":1,"56311":0,"56312":0,"56313":0,"56314":0,"56315":0,"56316":1,"56317":0,"56318":0,"56319":0,"56320":0,"56321":0,"56322":1,"56323":0,"56324":0,"56325":0,"56326":0,"56327":0,"56328":0,"56329":0,"56330":1,"56331":0,"56332":0,"56333":0,"56334":0,"56335":0,"56336":0,"56337":1,"56338":0,"56339":1,"56340":0,"56341":0,"56342":0,"56343":0,"56344":1,"56345":0,"56346":1,"56347":1,"56348":0,"56349":0,"56350":0,"56351":1,"56352":0,"56353":0,"56354":1,"56355":0,"56356":0,"56357":0,"56358":1,"56359":0,"56360":1,"56361":0,"56362":0,"56363":1,"56364":0,"56365":0,"56366":0,"56367":0,"56368":0,"56369":0,"56370":0,"56371":1,"56372":0,"56373":0,"56374":0,"56375":0,"56376":1,"56377":0,"56378":0,"56379":1,"56380":1,"56381":0,"56382":0,"56383":0,"56384":0,"56385":0,"56386":1,"56387":1,"56388":0,"56389":1,"56390":0,"56391":0,"56392":1,"56393":1,"56394":1,"56395":0,"56396":0,"56397":1,"56398":0,"56399":0,"56400":1,"56401":0,"56402":0,"56403":1,"56404":0,"56405":0,"56406":0,"56407":0,"56408":1,"56409":0,"56410":0,"56411":1,"56412":0,"56413":0,"56414":0,"56415":1,"56416":0,"56417":0,"56418":0,"56419":0,"56420":1,"56421":0,"56422":1,"56423":0,"56424":0,"56425":0,"56426":0,"56427":0,"56428":0,"56429":0,"56430":0,"56431":0,"56432":0,"56433":0,"56434":0,"56435":0,"56436":1,"56437":0,"56438":0,"56439":0,"56440":0,"56441":0,"56442":0,"56443":0,"56444":0,"56445":1,"56446":0,"56447":1,"56448":1,"56449":0,"56450":0,"56451":0,"56452":1,"56453":0,"56454":1,"56455":0,"56456":1,"56457":0,"56458":0,"56459":1,"56460":1,"56461":0,"56462":0,"56463":0,"56464":0,"56465":0,"56466":0,"56467":0,"56468":0,"56469":0,"56470":0,"56471":0,"56472":1,"56473":0,"56474":0,"56475":0,"56476":0,"56477":0,"56478":0,"56479":0,"56480":0,"56481":0,"56482":1,"56483":0,"56484":0,"56485":0,"56486":0,"56487":0,"56488":0,"56489":0,"56490":0,"56491":0,"56492":0,"56493":0,"56494":1,"56495":0,"56496":0,"56497":0,"56498":0,"56499":0,"56500":0,"56501":0,"56502":1,"56503":0,"56504":0,"56505":1,"56506":0,"56507":1,"56508":1,"56509":0,"56510":0,"56511":0,"56512":1,"56513":0,"56514":1,"56515":0,"56516":0,"56517":0,"56518":0,"56519":1,"56520":0,"56521":0,"56522":1,"56523":0,"56524":0,"56525":1,"56526":0,"56527":0,"56528":1,"56529":0,"56530":1,"56531":1,"56532":0,"56533":0,"56534":0,"56535":1,"56536":1,"56537":0,"56538":0,"56539":0,"56540":0,"56541":0,"56542":1,"56543":0,"56544":0,"56545":0,"56546":0,"56547":1,"56548":1,"56549":0,"56550":1,"56551":1,"56552":0,"56553":0,"56554":0,"56555":0,"56556":0,"56557":0,"56558":0,"56559":0,"56560":0,"56561":0,"56562":1,"56563":0,"56564":0,"56565":0,"56566":0,"56567":1,"56568":0,"56569":0,"56570":0,"56571":0,"56572":0,"56573":0,"56574":0,"56575":0,"56576":0,"56577":0,"56578":0,"56579":1,"56580":0,"56581":1,"56582":0,"56583":0,"56584":1,"56585":0,"56586":0,"56587":1,"56588":0,"56589":0,"56590":0,"56591":0,"56592":0,"56593":0,"56594":0,"56595":0,"56596":1,"56597":1,"56598":0,"56599":0,"56600":1,"56601":1,"56602":0,"56603":0,"56604":0,"56605":1,"56606":1,"56607":0,"56608":1,"56609":0,"56610":1,"56611":0,"56612":1,"56613":0,"56614":0,"56615":0,"56616":0,"56617":1,"56618":1,"56619":0,"56620":0,"56621":1,"56622":1,"56623":0,"56624":0,"56625":0,"56626":1,"56627":1,"56628":1,"56629":0,"56630":1,"56631":0,"56632":0,"56633":0,"56634":1,"56635":0,"56636":0,"56637":0,"56638":0,"56639":0,"56640":0,"56641":0,"56642":0,"56643":0,"56644":0,"56645":0,"56646":1,"56647":0,"56648":0,"56649":0,"56650":1,"56651":0,"56652":0,"56653":0,"56654":0,"56655":0,"56656":1,"56657":0,"56658":0,"56659":1,"56660":0,"56661":0,"56662":0,"56663":0,"56664":0,"56665":1,"56666":0,"56667":0,"56668":0,"56669":0,"56670":0,"56671":0,"56672":0,"56673":1,"56674":0,"56675":0,"56676":0,"56677":0,"56678":0,"56679":0,"56680":0,"56681":0,"56682":0,"56683":0,"56684":1,"56685":0,"56686":0,"56687":1,"56688":0,"56689":0,"56690":0,"56691":1,"56692":1,"56693":1,"56694":1,"56695":1,"56696":0,"56697":0,"56698":0,"56699":0,"56700":0,"56701":1,"56702":0,"56703":0,"56704":1,"56705":0,"56706":0,"56707":1,"56708":0,"56709":0,"56710":0,"56711":1,"56712":0,"56713":0,"56714":0,"56715":1,"56716":1,"56717":1,"56718":0,"56719":0,"56720":0,"56721":0,"56722":0,"56723":0,"56724":0,"56725":0,"56726":1,"56727":0,"56728":0,"56729":0,"56730":0,"56731":0,"56732":0,"56733":0,"56734":1,"56735":0,"56736":1,"56737":0,"56738":0,"56739":0,"56740":1,"56741":0,"56742":0,"56743":0,"56744":1,"56745":0,"56746":0,"56747":0,"56748":0,"56749":1,"56750":0,"56751":0,"56752":0,"56753":1,"56754":1,"56755":0,"56756":0,"56757":0,"56758":0,"56759":1,"56760":1,"56761":0,"56762":1,"56763":1,"56764":0,"56765":0,"56766":0,"56767":0,"56768":0,"56769":0,"56770":1,"56771":0,"56772":1,"56773":0,"56774":1,"56775":0,"56776":0,"56777":0,"56778":0,"56779":0,"56780":0,"56781":0,"56782":1,"56783":0,"56784":0,"56785":0,"56786":0,"56787":0,"56788":0,"56789":0,"56790":1,"56791":1,"56792":0,"56793":0,"56794":0,"56795":0,"56796":0,"56797":0,"56798":0,"56799":0,"56800":0,"56801":0,"56802":1,"56803":0,"56804":1,"56805":0,"56806":1,"56807":0,"56808":0,"56809":0,"56810":1,"56811":0,"56812":0,"56813":0,"56814":0,"56815":0,"56816":1,"56817":0,"56818":0,"56819":0,"56820":1,"56821":0,"56822":0,"56823":1,"56824":0,"56825":0,"56826":0,"56827":0,"56828":1,"56829":0,"56830":0,"56831":0,"56832":0,"56833":1,"56834":1,"56835":1,"56836":1,"56837":1,"56838":1,"56839":0,"56840":0,"56841":0,"56842":0,"56843":0,"56844":1,"56845":0,"56846":0,"56847":0,"56848":0,"56849":0,"56850":1,"56851":0,"56852":1,"56853":0,"56854":0,"56855":1,"56856":1,"56857":0,"56858":0,"56859":0,"56860":0,"56861":0,"56862":1,"56863":0,"56864":0,"56865":1,"56866":1,"56867":1,"56868":0,"56869":0,"56870":1,"56871":1,"56872":0,"56873":0,"56874":0,"56875":0,"56876":0,"56877":0,"56878":0,"56879":0,"56880":0,"56881":0,"56882":0,"56883":1,"56884":0,"56885":0,"56886":0,"56887":0,"56888":1,"56889":1,"56890":0,"56891":1,"56892":0,"56893":0,"56894":0,"56895":0,"56896":0,"56897":1,"56898":0,"56899":0,"56900":0,"56901":1,"56902":1,"56903":0,"56904":0,"56905":0,"56906":0,"56907":0,"56908":0,"56909":0,"56910":0,"56911":1,"56912":1,"56913":0,"56914":1,"56915":0,"56916":0,"56917":0,"56918":0,"56919":0,"56920":1,"56921":0,"56922":0,"56923":0,"56924":1,"56925":1,"56926":0,"56927":0,"56928":0,"56929":0,"56930":0,"56931":0,"56932":0,"56933":0,"56934":0,"56935":1,"56936":1,"56937":0,"56938":0,"56939":0,"56940":1,"56941":0,"56942":1,"56943":0,"56944":1,"56945":0,"56946":1,"56947":1,"56948":0,"56949":0,"56950":1,"56951":0,"56952":0,"56953":0,"56954":1,"56955":1,"56956":0,"56957":0,"56958":1,"56959":0,"56960":1,"56961":0,"56962":0,"56963":0,"56964":1,"56965":0,"56966":1,"56967":1,"56968":1,"56969":0,"56970":0,"56971":1,"56972":0,"56973":1,"56974":0,"56975":0,"56976":0,"56977":0,"56978":1,"56979":1,"56980":0,"56981":0,"56982":0,"56983":1,"56984":0,"56985":0,"56986":0,"56987":0,"56988":0,"56989":0,"56990":1,"56991":0,"56992":0,"56993":0,"56994":0,"56995":0,"56996":0,"56997":0,"56998":0,"56999":1,"57000":1,"57001":0,"57002":0,"57003":0,"57004":1,"57005":0,"57006":0,"57007":1,"57008":1,"57009":1,"57010":0,"57011":0,"57012":0,"57013":1,"57014":0,"57015":0,"57016":0,"57017":0,"57018":0,"57019":1,"57020":1,"57021":0,"57022":0,"57023":0,"57024":1,"57025":0,"57026":0,"57027":0,"57028":1,"57029":1,"57030":1,"57031":0,"57032":0,"57033":0,"57034":0,"57035":0,"57036":0,"57037":0,"57038":0,"57039":1,"57040":0,"57041":0,"57042":1,"57043":0,"57044":0,"57045":0,"57046":0,"57047":0,"57048":0,"57049":1,"57050":0,"57051":0,"57052":0,"57053":0,"57054":0,"57055":1,"57056":1,"57057":0,"57058":0,"57059":0,"57060":1,"57061":0,"57062":0,"57063":0,"57064":1,"57065":0,"57066":0,"57067":0,"57068":1,"57069":0,"57070":0,"57071":0,"57072":0,"57073":0,"57074":0,"57075":1,"57076":0,"57077":1,"57078":0,"57079":0,"57080":0,"57081":1,"57082":0,"57083":0,"57084":0,"57085":0,"57086":0,"57087":0,"57088":0,"57089":0,"57090":1,"57091":1,"57092":0,"57093":0,"57094":0,"57095":0,"57096":0,"57097":0,"57098":0,"57099":0,"57100":0,"57101":0,"57102":1,"57103":0,"57104":0,"57105":1,"57106":0,"57107":0,"57108":0,"57109":0,"57110":0,"57111":0,"57112":1,"57113":0,"57114":0,"57115":0,"57116":0,"57117":0,"57118":0,"57119":1,"57120":1,"57121":0,"57122":1,"57123":0,"57124":0,"57125":0,"57126":0,"57127":0,"57128":0,"57129":0,"57130":0,"57131":1,"57132":0,"57133":0,"57134":0,"57135":0,"57136":0,"57137":0,"57138":0,"57139":0,"57140":1,"57141":0,"57142":0,"57143":1,"57144":1,"57145":1,"57146":0,"57147":1,"57148":0,"57149":1,"57150":0,"57151":0,"57152":0,"57153":0,"57154":0,"57155":1,"57156":0,"57157":1,"57158":0,"57159":1,"57160":1,"57161":0,"57162":1,"57163":0,"57164":0,"57165":0,"57166":0,"57167":0,"57168":0,"57169":0,"57170":0,"57171":0,"57172":1,"57173":1,"57174":0,"57175":0,"57176":1,"57177":0,"57178":0,"57179":0,"57180":1,"57181":0,"57182":0,"57183":1,"57184":0,"57185":0,"57186":0,"57187":0,"57188":1,"57189":1,"57190":0,"57191":0,"57192":0,"57193":1,"57194":0,"57195":1,"57196":0,"57197":1,"57198":1,"57199":0,"57200":0,"57201":0,"57202":0,"57203":1,"57204":0,"57205":0,"57206":1,"57207":0,"57208":0,"57209":0,"57210":0,"57211":0,"57212":0,"57213":0,"57214":0,"57215":0,"57216":0,"57217":0,"57218":1,"57219":1,"57220":0,"57221":0,"57222":0,"57223":0,"57224":0,"57225":1,"57226":0,"57227":0,"57228":0,"57229":0,"57230":1,"57231":0,"57232":0,"57233":0,"57234":0,"57235":1,"57236":1,"57237":0,"57238":0,"57239":0,"57240":0,"57241":1,"57242":0,"57243":0,"57244":0,"57245":0,"57246":0,"57247":1,"57248":0,"57249":0,"57250":0,"57251":0,"57252":0,"57253":1,"57254":1,"57255":1,"57256":0,"57257":0,"57258":1,"57259":0,"57260":1,"57261":0,"57262":0,"57263":0,"57264":1,"57265":1,"57266":0,"57267":0,"57268":0,"57269":0,"57270":0,"57271":0,"57272":1,"57273":1,"57274":1,"57275":0,"57276":0,"57277":1,"57278":0,"57279":0,"57280":0,"57281":0,"57282":0,"57283":0,"57284":0,"57285":0,"57286":0,"57287":0,"57288":0,"57289":0,"57290":0,"57291":0,"57292":1,"57293":0,"57294":0,"57295":0,"57296":0,"57297":0,"57298":0,"57299":0,"57300":0,"57301":0,"57302":0,"57303":0,"57304":1,"57305":1,"57306":0,"57307":0,"57308":1,"57309":0,"57310":1,"57311":0,"57312":0,"57313":0,"57314":0,"57315":0,"57316":1,"57317":1,"57318":1,"57319":0,"57320":0,"57321":0,"57322":0,"57323":0,"57324":0,"57325":1,"57326":0,"57327":0,"57328":0,"57329":0,"57330":0,"57331":0,"57332":1,"57333":0,"57334":0,"57335":0,"57336":0,"57337":0,"57338":0,"57339":0,"57340":0,"57341":0,"57342":0,"57343":0,"57344":1,"57345":0,"57346":1,"57347":0,"57348":1,"57349":1,"57350":0,"57351":0,"57352":0,"57353":0,"57354":0,"57355":0,"57356":1,"57357":1,"57358":0,"57359":0,"57360":0,"57361":0,"57362":0,"57363":0,"57364":0,"57365":0,"57366":0,"57367":0,"57368":1,"57369":0,"57370":0,"57371":0,"57372":1,"57373":0,"57374":0,"57375":0,"57376":0,"57377":1,"57378":0,"57379":1,"57380":0,"57381":0,"57382":1,"57383":0,"57384":1,"57385":0,"57386":0,"57387":1,"57388":1,"57389":1,"57390":0,"57391":1,"57392":0,"57393":1,"57394":1,"57395":0,"57396":1,"57397":0,"57398":1,"57399":0,"57400":0,"57401":0,"57402":1,"57403":0,"57404":0,"57405":0,"57406":0,"57407":1,"57408":0,"57409":0,"57410":0,"57411":0,"57412":0,"57413":0,"57414":0,"57415":0,"57416":0,"57417":1,"57418":0,"57419":0,"57420":0,"57421":0,"57422":0,"57423":0,"57424":0,"57425":0,"57426":0,"57427":0,"57428":1,"57429":0,"57430":0,"57431":1,"57432":1,"57433":0,"57434":0,"57435":0,"57436":0,"57437":0,"57438":0,"57439":0,"57440":0,"57441":1,"57442":1,"57443":0,"57444":0,"57445":0,"57446":0,"57447":1,"57448":1,"57449":0,"57450":0,"57451":0,"57452":0,"57453":0,"57454":0,"57455":0,"57456":0,"57457":1,"57458":0,"57459":0,"57460":0,"57461":0,"57462":0,"57463":0,"57464":0,"57465":0,"57466":1,"57467":1,"57468":0,"57469":0,"57470":0,"57471":0,"57472":0,"57473":1,"57474":0,"57475":0,"57476":1,"57477":0,"57478":0,"57479":0,"57480":1,"57481":0,"57482":1,"57483":1,"57484":1,"57485":1,"57486":0,"57487":0,"57488":0,"57489":1,"57490":0,"57491":0,"57492":0,"57493":0,"57494":0,"57495":0,"57496":0,"57497":1,"57498":0,"57499":1,"57500":1,"57501":0,"57502":1,"57503":0,"57504":0,"57505":1,"57506":0,"57507":0,"57508":0,"57509":1,"57510":0,"57511":0,"57512":1,"57513":0,"57514":0,"57515":0,"57516":0,"57517":1,"57518":1,"57519":1,"57520":0,"57521":0,"57522":0,"57523":1,"57524":0,"57525":0,"57526":0,"57527":0,"57528":0,"57529":0,"57530":0,"57531":1,"57532":0,"57533":0,"57534":0,"57535":0,"57536":0,"57537":0,"57538":0,"57539":0,"57540":1,"57541":1,"57542":0,"57543":0,"57544":0,"57545":0,"57546":1,"57547":0,"57548":1,"57549":0,"57550":1,"57551":0,"57552":0,"57553":0,"57554":1,"57555":0,"57556":0,"57557":0,"57558":0,"57559":1,"57560":0,"57561":0,"57562":0,"57563":0,"57564":0,"57565":0,"57566":0,"57567":0,"57568":0,"57569":0,"57570":1,"57571":0,"57572":0,"57573":0,"57574":1,"57575":0,"57576":0,"57577":1,"57578":0,"57579":0,"57580":1,"57581":1,"57582":0,"57583":0,"57584":0,"57585":1,"57586":0,"57587":0,"57588":0,"57589":0,"57590":0,"57591":0,"57592":0,"57593":0,"57594":0,"57595":0,"57596":1,"57597":1,"57598":0,"57599":0,"57600":0,"57601":0,"57602":0,"57603":0,"57604":1,"57605":1,"57606":0,"57607":1,"57608":1,"57609":0,"57610":1,"57611":0,"57612":0,"57613":0,"57614":1,"57615":0,"57616":0,"57617":0,"57618":0,"57619":0,"57620":0,"57621":0,"57622":0,"57623":0,"57624":0,"57625":1,"57626":0,"57627":0,"57628":1,"57629":1,"57630":0,"57631":0,"57632":1,"57633":0,"57634":0,"57635":0,"57636":0,"57637":1,"57638":1,"57639":0,"57640":1,"57641":0,"57642":0,"57643":0,"57644":1,"57645":0,"57646":1,"57647":0,"57648":0,"57649":0,"57650":0,"57651":0,"57652":0,"57653":1,"57654":0,"57655":0,"57656":1,"57657":0,"57658":0,"57659":0,"57660":0,"57661":0,"57662":1,"57663":0,"57664":0,"57665":0,"57666":1,"57667":1,"57668":0,"57669":0,"57670":0,"57671":0,"57672":0,"57673":1,"57674":1,"57675":1,"57676":0,"57677":0,"57678":1,"57679":0,"57680":0,"57681":1,"57682":1,"57683":0,"57684":0,"57685":1,"57686":0,"57687":0,"57688":1,"57689":0,"57690":0,"57691":1,"57692":0,"57693":0,"57694":0,"57695":0,"57696":1,"57697":1,"57698":0,"57699":0,"57700":0,"57701":0,"57702":1,"57703":0,"57704":1,"57705":0,"57706":0,"57707":0,"57708":0,"57709":0,"57710":0,"57711":0,"57712":0,"57713":0,"57714":0,"57715":0,"57716":1,"57717":0,"57718":0,"57719":0,"57720":0,"57721":0,"57722":0,"57723":0,"57724":0,"57725":0,"57726":0,"57727":0,"57728":0,"57729":1,"57730":0,"57731":1,"57732":0,"57733":1,"57734":1,"57735":0,"57736":0,"57737":0,"57738":0,"57739":0,"57740":0,"57741":0,"57742":0,"57743":0,"57744":0,"57745":1,"57746":1,"57747":0,"57748":0,"57749":0,"57750":1,"57751":0,"57752":0,"57753":0,"57754":1,"57755":0,"57756":1,"57757":0,"57758":0,"57759":0,"57760":0,"57761":0,"57762":0,"57763":1,"57764":0,"57765":0,"57766":0,"57767":0,"57768":0,"57769":0,"57770":0,"57771":1,"57772":1,"57773":0,"57774":0,"57775":0,"57776":1,"57777":0,"57778":1,"57779":1,"57780":1,"57781":0,"57782":0,"57783":0,"57784":0,"57785":0,"57786":1,"57787":1,"57788":0,"57789":0,"57790":1,"57791":1,"57792":0,"57793":0,"57794":0,"57795":0,"57796":0,"57797":0,"57798":0,"57799":1,"57800":1,"57801":1,"57802":1,"57803":0,"57804":0,"57805":1,"57806":1,"57807":0,"57808":0,"57809":0,"57810":0,"57811":0,"57812":0,"57813":0,"57814":0,"57815":1,"57816":0,"57817":1,"57818":1,"57819":0,"57820":0,"57821":0,"57822":1,"57823":0,"57824":1,"57825":0,"57826":1,"57827":1,"57828":0,"57829":0,"57830":1,"57831":0,"57832":0,"57833":0,"57834":0,"57835":0,"57836":0,"57837":0,"57838":1,"57839":0,"57840":1,"57841":0,"57842":0,"57843":0,"57844":0,"57845":0,"57846":1,"57847":0,"57848":0,"57849":0,"57850":1,"57851":0,"57852":1,"57853":0,"57854":0,"57855":0,"57856":0,"57857":0,"57858":0,"57859":0,"57860":1,"57861":0,"57862":0,"57863":1,"57864":1,"57865":0,"57866":1,"57867":1,"57868":0,"57869":0,"57870":0,"57871":0,"57872":0,"57873":0,"57874":1,"57875":1,"57876":0,"57877":0,"57878":0,"57879":0,"57880":0,"57881":1,"57882":0,"57883":0,"57884":0,"57885":0,"57886":0,"57887":0,"57888":1,"57889":0,"57890":0,"57891":0,"57892":0,"57893":1,"57894":1,"57895":0,"57896":1,"57897":0,"57898":0,"57899":0,"57900":0,"57901":1,"57902":0,"57903":1,"57904":1,"57905":0,"57906":0,"57907":0,"57908":0,"57909":0,"57910":0,"57911":0,"57912":0,"57913":1,"57914":1,"57915":0,"57916":0,"57917":0,"57918":0,"57919":0,"57920":1,"57921":1,"57922":1,"57923":0,"57924":0,"57925":0,"57926":0,"57927":0,"57928":0,"57929":0,"57930":0,"57931":0,"57932":0,"57933":0,"57934":0,"57935":1,"57936":0,"57937":0,"57938":0,"57939":0,"57940":0,"57941":0,"57942":1,"57943":0,"57944":1,"57945":0,"57946":0,"57947":0,"57948":0,"57949":0,"57950":1,"57951":1,"57952":1,"57953":0,"57954":1,"57955":0,"57956":0,"57957":0,"57958":0,"57959":0,"57960":0,"57961":0,"57962":0,"57963":0,"57964":0,"57965":1,"57966":0,"57967":1,"57968":0,"57969":0,"57970":0,"57971":0,"57972":1,"57973":1,"57974":0,"57975":0,"57976":0,"57977":0,"57978":0,"57979":0,"57980":0,"57981":0,"57982":0,"57983":0,"57984":0,"57985":0,"57986":1,"57987":0,"57988":1,"57989":0,"57990":1,"57991":0,"57992":0,"57993":0,"57994":1,"57995":0,"57996":1,"57997":1,"57998":0,"57999":0,"58000":0,"58001":0,"58002":0,"58003":0,"58004":1,"58005":0,"58006":0,"58007":1,"58008":1,"58009":1,"58010":0,"58011":1,"58012":0,"58013":0,"58014":0,"58015":0,"58016":0,"58017":0,"58018":0,"58019":0,"58020":0,"58021":0,"58022":1,"58023":0,"58024":0,"58025":0,"58026":0,"58027":0,"58028":0,"58029":0,"58030":0,"58031":1,"58032":1,"58033":0,"58034":1,"58035":0,"58036":0,"58037":1,"58038":0,"58039":0,"58040":0,"58041":0,"58042":1,"58043":0,"58044":0,"58045":0,"58046":0,"58047":1,"58048":0,"58049":1,"58050":1,"58051":1,"58052":0,"58053":0,"58054":0,"58055":0,"58056":0,"58057":0,"58058":0,"58059":0,"58060":1,"58061":0,"58062":0,"58063":0,"58064":0,"58065":0,"58066":0,"58067":1,"58068":0,"58069":1,"58070":0,"58071":0,"58072":0,"58073":0,"58074":0,"58075":0,"58076":0,"58077":0,"58078":1,"58079":0,"58080":0,"58081":1,"58082":0,"58083":1,"58084":0,"58085":0,"58086":1,"58087":0,"58088":0,"58089":1,"58090":1,"58091":1,"58092":0,"58093":0,"58094":0,"58095":0,"58096":1,"58097":0,"58098":0,"58099":0,"58100":1,"58101":0,"58102":0,"58103":0,"58104":1,"58105":0,"58106":1,"58107":0,"58108":0,"58109":0,"58110":0,"58111":0,"58112":0,"58113":0,"58114":0,"58115":0,"58116":0,"58117":0,"58118":0,"58119":0,"58120":0,"58121":0,"58122":0,"58123":1,"58124":1,"58125":0,"58126":1,"58127":0,"58128":1,"58129":0,"58130":1,"58131":0,"58132":1,"58133":1,"58134":0,"58135":0,"58136":0,"58137":0,"58138":0,"58139":0,"58140":0,"58141":0,"58142":0,"58143":1,"58144":0,"58145":0,"58146":1,"58147":1,"58148":1,"58149":0,"58150":0,"58151":0,"58152":1,"58153":0,"58154":0,"58155":0,"58156":1,"58157":0,"58158":0,"58159":0,"58160":1,"58161":0,"58162":0,"58163":0,"58164":0,"58165":1,"58166":0,"58167":0,"58168":0,"58169":0,"58170":0,"58171":0,"58172":1,"58173":0,"58174":0,"58175":0,"58176":0,"58177":0,"58178":0,"58179":0,"58180":0,"58181":0,"58182":0,"58183":1,"58184":0,"58185":0,"58186":0,"58187":0,"58188":0,"58189":0,"58190":0,"58191":0,"58192":0,"58193":0,"58194":0,"58195":0,"58196":0,"58197":0,"58198":0,"58199":0,"58200":0,"58201":0,"58202":0,"58203":0,"58204":1,"58205":0,"58206":0,"58207":0,"58208":0,"58209":0,"58210":0,"58211":0,"58212":0,"58213":1,"58214":1,"58215":0,"58216":0,"58217":0,"58218":0,"58219":1,"58220":0,"58221":0,"58222":0,"58223":0,"58224":0,"58225":0,"58226":0,"58227":0,"58228":1,"58229":0,"58230":0,"58231":0,"58232":0,"58233":1,"58234":0,"58235":0,"58236":1,"58237":0,"58238":0,"58239":0,"58240":0,"58241":0,"58242":0,"58243":1,"58244":0,"58245":0,"58246":0,"58247":0,"58248":0,"58249":0,"58250":0,"58251":0,"58252":0,"58253":0,"58254":0,"58255":1,"58256":1,"58257":0,"58258":0,"58259":0,"58260":1,"58261":0,"58262":1,"58263":1,"58264":0,"58265":0,"58266":0,"58267":1,"58268":1,"58269":0,"58270":0,"58271":0,"58272":0,"58273":0,"58274":1,"58275":0,"58276":0,"58277":0,"58278":0,"58279":0,"58280":0,"58281":1,"58282":0,"58283":0,"58284":0,"58285":0,"58286":0,"58287":0,"58288":0,"58289":0,"58290":1,"58291":0,"58292":0,"58293":0,"58294":0,"58295":0,"58296":0,"58297":0,"58298":0,"58299":0,"58300":0,"58301":0,"58302":1,"58303":1,"58304":1,"58305":0,"58306":0,"58307":0,"58308":0,"58309":0,"58310":1,"58311":0,"58312":0,"58313":0,"58314":0,"58315":0,"58316":0,"58317":1,"58318":0,"58319":0,"58320":1,"58321":1,"58322":0,"58323":0,"58324":0,"58325":1,"58326":0,"58327":1,"58328":0,"58329":0,"58330":1,"58331":0,"58332":0,"58333":0,"58334":1,"58335":0,"58336":0,"58337":1,"58338":0,"58339":0,"58340":0,"58341":1,"58342":0,"58343":0,"58344":0,"58345":0,"58346":0,"58347":0,"58348":0,"58349":0,"58350":0,"58351":0,"58352":0,"58353":0,"58354":0,"58355":0,"58356":0,"58357":1,"58358":0,"58359":0,"58360":0,"58361":1,"58362":0,"58363":0,"58364":0,"58365":0,"58366":0,"58367":0,"58368":1,"58369":0,"58370":0,"58371":0,"58372":0,"58373":1,"58374":0,"58375":1,"58376":0,"58377":0,"58378":1,"58379":0,"58380":1,"58381":0,"58382":0,"58383":0,"58384":1,"58385":0,"58386":0,"58387":0,"58388":0,"58389":0,"58390":0,"58391":1,"58392":0,"58393":0,"58394":0,"58395":1,"58396":0,"58397":0,"58398":0,"58399":0,"58400":0,"58401":1,"58402":0,"58403":1,"58404":1,"58405":0,"58406":0,"58407":0,"58408":0,"58409":0,"58410":0,"58411":0,"58412":0,"58413":0,"58414":0,"58415":0,"58416":0,"58417":0,"58418":1,"58419":0,"58420":1,"58421":1,"58422":0,"58423":1,"58424":1,"58425":0,"58426":0,"58427":0,"58428":0,"58429":0,"58430":0,"58431":0,"58432":0,"58433":0,"58434":1,"58435":0,"58436":1,"58437":0,"58438":1,"58439":0,"58440":0,"58441":0,"58442":0,"58443":1,"58444":0,"58445":1,"58446":1,"58447":0,"58448":0,"58449":0,"58450":0,"58451":0,"58452":0,"58453":0,"58454":0,"58455":0,"58456":0,"58457":0,"58458":1,"58459":1,"58460":0,"58461":0,"58462":0,"58463":0,"58464":0,"58465":0,"58466":0,"58467":1,"58468":0,"58469":1,"58470":0,"58471":0,"58472":1,"58473":0,"58474":0,"58475":0,"58476":0,"58477":1,"58478":0,"58479":0,"58480":1,"58481":0,"58482":1,"58483":0,"58484":0,"58485":0,"58486":0,"58487":1,"58488":1,"58489":0,"58490":0,"58491":1,"58492":1,"58493":0,"58494":0,"58495":0,"58496":0,"58497":0,"58498":0,"58499":0,"58500":1,"58501":0,"58502":1,"58503":1,"58504":0,"58505":0,"58506":0,"58507":1,"58508":1,"58509":1,"58510":0,"58511":0,"58512":0,"58513":1,"58514":0,"58515":1,"58516":0,"58517":0,"58518":0,"58519":0,"58520":0,"58521":0,"58522":0,"58523":1,"58524":0,"58525":0,"58526":0,"58527":0,"58528":1,"58529":0,"58530":0,"58531":1,"58532":1,"58533":0,"58534":0,"58535":0,"58536":1,"58537":0,"58538":1,"58539":1,"58540":0,"58541":0,"58542":0,"58543":0,"58544":0,"58545":0,"58546":0,"58547":0,"58548":0,"58549":0,"58550":0,"58551":0,"58552":0,"58553":0,"58554":1,"58555":0,"58556":0,"58557":1,"58558":0,"58559":0,"58560":0,"58561":1,"58562":0,"58563":0,"58564":0,"58565":0,"58566":1,"58567":0,"58568":0,"58569":0,"58570":0,"58571":0,"58572":0,"58573":1,"58574":1,"58575":1,"58576":0,"58577":1,"58578":0,"58579":0,"58580":1,"58581":1,"58582":0,"58583":0,"58584":1,"58585":1,"58586":0,"58587":1,"58588":0,"58589":0,"58590":0,"58591":1,"58592":0,"58593":0,"58594":0,"58595":0,"58596":1,"58597":0,"58598":0,"58599":0,"58600":0,"58601":0,"58602":1,"58603":0,"58604":0,"58605":0,"58606":0,"58607":0,"58608":0,"58609":0,"58610":0,"58611":1,"58612":0,"58613":0,"58614":0,"58615":0,"58616":1,"58617":0,"58618":0,"58619":0,"58620":0,"58621":0,"58622":0,"58623":0,"58624":0,"58625":0,"58626":0,"58627":0,"58628":1,"58629":0,"58630":0,"58631":0,"58632":1,"58633":0,"58634":0,"58635":0,"58636":0,"58637":1,"58638":0,"58639":1,"58640":0,"58641":0,"58642":0,"58643":0,"58644":1,"58645":0,"58646":1,"58647":0,"58648":1,"58649":1,"58650":0,"58651":1,"58652":0,"58653":1,"58654":1,"58655":0,"58656":1,"58657":0,"58658":1,"58659":0,"58660":1,"58661":0,"58662":0,"58663":0,"58664":0,"58665":0,"58666":0,"58667":0,"58668":1,"58669":0,"58670":0,"58671":0,"58672":0,"58673":0,"58674":0,"58675":0,"58676":0,"58677":0,"58678":0,"58679":1,"58680":0,"58681":0,"58682":0,"58683":0,"58684":0,"58685":0,"58686":0,"58687":0,"58688":0,"58689":0,"58690":0,"58691":1,"58692":0,"58693":0,"58694":0,"58695":0,"58696":0,"58697":0,"58698":0,"58699":0,"58700":0,"58701":0,"58702":0,"58703":0,"58704":0,"58705":1,"58706":1,"58707":0,"58708":0,"58709":0,"58710":1,"58711":1,"58712":0,"58713":1,"58714":0,"58715":0,"58716":1,"58717":0,"58718":0,"58719":1,"58720":1,"58721":1,"58722":0,"58723":0,"58724":0,"58725":1,"58726":0,"58727":1,"58728":0,"58729":0,"58730":0,"58731":0,"58732":0,"58733":0,"58734":1,"58735":0,"58736":1,"58737":0,"58738":0,"58739":0,"58740":0,"58741":0,"58742":1,"58743":0,"58744":1,"58745":0,"58746":0,"58747":1,"58748":0,"58749":0,"58750":0,"58751":0,"58752":0,"58753":0,"58754":0,"58755":0,"58756":0,"58757":0,"58758":0,"58759":0,"58760":0,"58761":1,"58762":0,"58763":0,"58764":1,"58765":0,"58766":0,"58767":1,"58768":0,"58769":0,"58770":1,"58771":0,"58772":1,"58773":0,"58774":0,"58775":1,"58776":0,"58777":1,"58778":0,"58779":0,"58780":1,"58781":0,"58782":0,"58783":0,"58784":1,"58785":0,"58786":1,"58787":0,"58788":0,"58789":0,"58790":0,"58791":0,"58792":0,"58793":1,"58794":1,"58795":0,"58796":0,"58797":0,"58798":0,"58799":1,"58800":1,"58801":1,"58802":0,"58803":0,"58804":0,"58805":1,"58806":0,"58807":0,"58808":1,"58809":1,"58810":0,"58811":0,"58812":1,"58813":0,"58814":0,"58815":0,"58816":0,"58817":0,"58818":1,"58819":1,"58820":0,"58821":0,"58822":0,"58823":0,"58824":0,"58825":0,"58826":0,"58827":0,"58828":0,"58829":0,"58830":1,"58831":0,"58832":0,"58833":0,"58834":1,"58835":1,"58836":1,"58837":0,"58838":0,"58839":0,"58840":0,"58841":0,"58842":1,"58843":0,"58844":0,"58845":0,"58846":0,"58847":0,"58848":0,"58849":0,"58850":0,"58851":0,"58852":1,"58853":0,"58854":1,"58855":0,"58856":0,"58857":1,"58858":0,"58859":0,"58860":0,"58861":0,"58862":0,"58863":0,"58864":0,"58865":1,"58866":0,"58867":0,"58868":0,"58869":0,"58870":0,"58871":0,"58872":1,"58873":1,"58874":1,"58875":0,"58876":0,"58877":0,"58878":0,"58879":1,"58880":1,"58881":0,"58882":0,"58883":0,"58884":0,"58885":0,"58886":1,"58887":0,"58888":0,"58889":1,"58890":0,"58891":0,"58892":0,"58893":0,"58894":1,"58895":0,"58896":1,"58897":0,"58898":0,"58899":0,"58900":0,"58901":0,"58902":0,"58903":0,"58904":0,"58905":1,"58906":0,"58907":0,"58908":0,"58909":0,"58910":1,"58911":0,"58912":0,"58913":0,"58914":1,"58915":0,"58916":1,"58917":1,"58918":0,"58919":0,"58920":0,"58921":0,"58922":0,"58923":0,"58924":0,"58925":0,"58926":1,"58927":0,"58928":0,"58929":1,"58930":0,"58931":0,"58932":0,"58933":0,"58934":0,"58935":0,"58936":0,"58937":1,"58938":0,"58939":0,"58940":0,"58941":0,"58942":0,"58943":0,"58944":0,"58945":1,"58946":1,"58947":1,"58948":0,"58949":1,"58950":0,"58951":0,"58952":0,"58953":1,"58954":0,"58955":1,"58956":1,"58957":0,"58958":0,"58959":1,"58960":0,"58961":1,"58962":0,"58963":0,"58964":1,"58965":0,"58966":0,"58967":1,"58968":0,"58969":0,"58970":0,"58971":1,"58972":0,"58973":1,"58974":0,"58975":1,"58976":0,"58977":1,"58978":0,"58979":0,"58980":0,"58981":0,"58982":0,"58983":0,"58984":0,"58985":0,"58986":0,"58987":0,"58988":0,"58989":0,"58990":0,"58991":0,"58992":1,"58993":0,"58994":0,"58995":0,"58996":0,"58997":0,"58998":1,"58999":0,"59000":0,"59001":0,"59002":0,"59003":0,"59004":0,"59005":0,"59006":0,"59007":0,"59008":1,"59009":0,"59010":0,"59011":1,"59012":0,"59013":0,"59014":0,"59015":1,"59016":0,"59017":0,"59018":0,"59019":0,"59020":0,"59021":0,"59022":0,"59023":1,"59024":0,"59025":0,"59026":0,"59027":1,"59028":0,"59029":1,"59030":0,"59031":0,"59032":0,"59033":0,"59034":0,"59035":1,"59036":0,"59037":0,"59038":0,"59039":0,"59040":1,"59041":0,"59042":0,"59043":0,"59044":1,"59045":0,"59046":0,"59047":0,"59048":0,"59049":0,"59050":0,"59051":0,"59052":0,"59053":0,"59054":0,"59055":0,"59056":0,"59057":0,"59058":0,"59059":1,"59060":0,"59061":0,"59062":0,"59063":0,"59064":0,"59065":0,"59066":0,"59067":0,"59068":0,"59069":0,"59070":1,"59071":0,"59072":1,"59073":0,"59074":0,"59075":1,"59076":0,"59077":0,"59078":0,"59079":1,"59080":1,"59081":0,"59082":1,"59083":0,"59084":1,"59085":0,"59086":1,"59087":0,"59088":0,"59089":0,"59090":0,"59091":0,"59092":0,"59093":0,"59094":0,"59095":0,"59096":0,"59097":1,"59098":1,"59099":0,"59100":0,"59101":0,"59102":0,"59103":0,"59104":0,"59105":0,"59106":1,"59107":0,"59108":0,"59109":0,"59110":0,"59111":0,"59112":0,"59113":0,"59114":0,"59115":1,"59116":0,"59117":0,"59118":0,"59119":0,"59120":0,"59121":0,"59122":0,"59123":0,"59124":0,"59125":1,"59126":0,"59127":0,"59128":0,"59129":0,"59130":0,"59131":0,"59132":1,"59133":1,"59134":1,"59135":0,"59136":0,"59137":0,"59138":1,"59139":1,"59140":0,"59141":1,"59142":0,"59143":1,"59144":0,"59145":0,"59146":0,"59147":1,"59148":0,"59149":0,"59150":0,"59151":0,"59152":1,"59153":0,"59154":0,"59155":0,"59156":0,"59157":0,"59158":1,"59159":0,"59160":0,"59161":0,"59162":1,"59163":0,"59164":0,"59165":0,"59166":0,"59167":1,"59168":0,"59169":0,"59170":0,"59171":0,"59172":1,"59173":1,"59174":0,"59175":1,"59176":0,"59177":0,"59178":0,"59179":0,"59180":0,"59181":0,"59182":0,"59183":0,"59184":1,"59185":0,"59186":0,"59187":0,"59188":0,"59189":0,"59190":1,"59191":0,"59192":0,"59193":0,"59194":0,"59195":1,"59196":0,"59197":0,"59198":1,"59199":0,"59200":1,"59201":0,"59202":0,"59203":0,"59204":0,"59205":0,"59206":0,"59207":0,"59208":0,"59209":0,"59210":1,"59211":0,"59212":0,"59213":1,"59214":0,"59215":0,"59216":0,"59217":0,"59218":1,"59219":0,"59220":0,"59221":1,"59222":0,"59223":0,"59224":0,"59225":0,"59226":0,"59227":0,"59228":0,"59229":1,"59230":0,"59231":0,"59232":0,"59233":0,"59234":0,"59235":0,"59236":0,"59237":1,"59238":0,"59239":1,"59240":1,"59241":0,"59242":0,"59243":0,"59244":0,"59245":0,"59246":1,"59247":0,"59248":0,"59249":0,"59250":0,"59251":1,"59252":0,"59253":1,"59254":0,"59255":0,"59256":0,"59257":0,"59258":1,"59259":0,"59260":1,"59261":0,"59262":1,"59263":0,"59264":1,"59265":0,"59266":0,"59267":0,"59268":1,"59269":1,"59270":1,"59271":1,"59272":0,"59273":0,"59274":1,"59275":0,"59276":1,"59277":1,"59278":0,"59279":0,"59280":0,"59281":1,"59282":0,"59283":0,"59284":0,"59285":0,"59286":0,"59287":0,"59288":0,"59289":0,"59290":1,"59291":0,"59292":0,"59293":1,"59294":0,"59295":1,"59296":0,"59297":0,"59298":0,"59299":1,"59300":0,"59301":0,"59302":0,"59303":0,"59304":1,"59305":0,"59306":0,"59307":1,"59308":0,"59309":0,"59310":0,"59311":1,"59312":0,"59313":1,"59314":0,"59315":0,"59316":0,"59317":0,"59318":0,"59319":1,"59320":0,"59321":1,"59322":1,"59323":0,"59324":0,"59325":0,"59326":0,"59327":0,"59328":1,"59329":0,"59330":0,"59331":1,"59332":1,"59333":0,"59334":0,"59335":1,"59336":1,"59337":0,"59338":1,"59339":1,"59340":1,"59341":0,"59342":0,"59343":0,"59344":0,"59345":1,"59346":0,"59347":0,"59348":0,"59349":0,"59350":0,"59351":1,"59352":0,"59353":1,"59354":1,"59355":0,"59356":0,"59357":0,"59358":1,"59359":0,"59360":0,"59361":0,"59362":0,"59363":0,"59364":0,"59365":0,"59366":0,"59367":0,"59368":1,"59369":1,"59370":1,"59371":0,"59372":1,"59373":0,"59374":1,"59375":0,"59376":0,"59377":0,"59378":0,"59379":0,"59380":0,"59381":1,"59382":0,"59383":0,"59384":0,"59385":0,"59386":0,"59387":0,"59388":0,"59389":1,"59390":1,"59391":0,"59392":0,"59393":0,"59394":0,"59395":0,"59396":1,"59397":0,"59398":0,"59399":1,"59400":0,"59401":1,"59402":0,"59403":0,"59404":1,"59405":1,"59406":0,"59407":0,"59408":0,"59409":0,"59410":0,"59411":0,"59412":0,"59413":0,"59414":0,"59415":0,"59416":0,"59417":0,"59418":0,"59419":0,"59420":1,"59421":1,"59422":0,"59423":0,"59424":0,"59425":0,"59426":0,"59427":1,"59428":0,"59429":0,"59430":0,"59431":1,"59432":1,"59433":0,"59434":0,"59435":0,"59436":0,"59437":0,"59438":0,"59439":0,"59440":1,"59441":0,"59442":0,"59443":1,"59444":1,"59445":1,"59446":0,"59447":0,"59448":0,"59449":0,"59450":0,"59451":0,"59452":1,"59453":0,"59454":0,"59455":0,"59456":0,"59457":0,"59458":0,"59459":0,"59460":1,"59461":0,"59462":0,"59463":0,"59464":1,"59465":1,"59466":0,"59467":0,"59468":0,"59469":0,"59470":0,"59471":1,"59472":0,"59473":1,"59474":0,"59475":0,"59476":1,"59477":0,"59478":0,"59479":0,"59480":0,"59481":0,"59482":0,"59483":0,"59484":0,"59485":0,"59486":1,"59487":0,"59488":0,"59489":1,"59490":0,"59491":0,"59492":0,"59493":0,"59494":0,"59495":0,"59496":0,"59497":0,"59498":0,"59499":0,"59500":0,"59501":0,"59502":0,"59503":0,"59504":1,"59505":0,"59506":0,"59507":0,"59508":1,"59509":1,"59510":0,"59511":0,"59512":0,"59513":0,"59514":0,"59515":0,"59516":1,"59517":0,"59518":0,"59519":0,"59520":0,"59521":1,"59522":0,"59523":0,"59524":0,"59525":0,"59526":1,"59527":0,"59528":1,"59529":0,"59530":1,"59531":0,"59532":1,"59533":0,"59534":0,"59535":0,"59536":0,"59537":0,"59538":0,"59539":0,"59540":1,"59541":0,"59542":0,"59543":1,"59544":0,"59545":0,"59546":0,"59547":0,"59548":0,"59549":0,"59550":1,"59551":0,"59552":1,"59553":0,"59554":1,"59555":0,"59556":0,"59557":1,"59558":0,"59559":0,"59560":0,"59561":0,"59562":1,"59563":0,"59564":0,"59565":1,"59566":0,"59567":0,"59568":0,"59569":0,"59570":0,"59571":0,"59572":1,"59573":0,"59574":0,"59575":1,"59576":0,"59577":0,"59578":1,"59579":0,"59580":1,"59581":1,"59582":0,"59583":0,"59584":1,"59585":1,"59586":0,"59587":0,"59588":0,"59589":0,"59590":0,"59591":0,"59592":0,"59593":0,"59594":0,"59595":0,"59596":0,"59597":0,"59598":0,"59599":0,"59600":0,"59601":0,"59602":0,"59603":1,"59604":0,"59605":1,"59606":0,"59607":0,"59608":1,"59609":0,"59610":0,"59611":0,"59612":1,"59613":0,"59614":0,"59615":0,"59616":0,"59617":0,"59618":1,"59619":0,"59620":0,"59621":0,"59622":0,"59623":0,"59624":0,"59625":0,"59626":0,"59627":0,"59628":1,"59629":1,"59630":0,"59631":0,"59632":0,"59633":0,"59634":0,"59635":1,"59636":0,"59637":0,"59638":0,"59639":1,"59640":0,"59641":0,"59642":0,"59643":0,"59644":1,"59645":0,"59646":1,"59647":1,"59648":0,"59649":1,"59650":0,"59651":0,"59652":0,"59653":0,"59654":0,"59655":0,"59656":1,"59657":0,"59658":0,"59659":0,"59660":0,"59661":0,"59662":1,"59663":0,"59664":0,"59665":0,"59666":0,"59667":0,"59668":0,"59669":0,"59670":0,"59671":1,"59672":0,"59673":0,"59674":0,"59675":0,"59676":0,"59677":0,"59678":0,"59679":1,"59680":0,"59681":0,"59682":1,"59683":1,"59684":0,"59685":0,"59686":0,"59687":1,"59688":0,"59689":0,"59690":0,"59691":0,"59692":0,"59693":0,"59694":0,"59695":0,"59696":0,"59697":0,"59698":0,"59699":1,"59700":0,"59701":1,"59702":0,"59703":0,"59704":0,"59705":0,"59706":0,"59707":1,"59708":0,"59709":0,"59710":0,"59711":0,"59712":0,"59713":0,"59714":0,"59715":0,"59716":0,"59717":0,"59718":0,"59719":1,"59720":0,"59721":0,"59722":1,"59723":0,"59724":0,"59725":0,"59726":0,"59727":0,"59728":0,"59729":0,"59730":0,"59731":0,"59732":0,"59733":0,"59734":0,"59735":0,"59736":1,"59737":1,"59738":1,"59739":0,"59740":0,"59741":0,"59742":1,"59743":1,"59744":0,"59745":0,"59746":0,"59747":0,"59748":1,"59749":1,"59750":1,"59751":1,"59752":0,"59753":1,"59754":0,"59755":0,"59756":1,"59757":0,"59758":1,"59759":1,"59760":0,"59761":0,"59762":0,"59763":0,"59764":0,"59765":0,"59766":1,"59767":0,"59768":0,"59769":0,"59770":0,"59771":0,"59772":0,"59773":0,"59774":0,"59775":0,"59776":1,"59777":0,"59778":1,"59779":0,"59780":0,"59781":0,"59782":0,"59783":0,"59784":1,"59785":0,"59786":0,"59787":1,"59788":0,"59789":0,"59790":0,"59791":0,"59792":0,"59793":0,"59794":0,"59795":0,"59796":0,"59797":0,"59798":1,"59799":0,"59800":0,"59801":0,"59802":0,"59803":0,"59804":0,"59805":0,"59806":0,"59807":0,"59808":0,"59809":0,"59810":1,"59811":0,"59812":1,"59813":0,"59814":0,"59815":0,"59816":0,"59817":0,"59818":0,"59819":0,"59820":1,"59821":0,"59822":1,"59823":0,"59824":0,"59825":1,"59826":0,"59827":0,"59828":0,"59829":0,"59830":0,"59831":0,"59832":1,"59833":0,"59834":1,"59835":0,"59836":0,"59837":0,"59838":0,"59839":0,"59840":0,"59841":1,"59842":0,"59843":0,"59844":1,"59845":0,"59846":0,"59847":0,"59848":0,"59849":0,"59850":0,"59851":1,"59852":0,"59853":0,"59854":0,"59855":0,"59856":0,"59857":0,"59858":0,"59859":0,"59860":0,"59861":0,"59862":0,"59863":0,"59864":1,"59865":1,"59866":0,"59867":0,"59868":0,"59869":0,"59870":0,"59871":0,"59872":1,"59873":0,"59874":0,"59875":0,"59876":0,"59877":1,"59878":0,"59879":0,"59880":0,"59881":1,"59882":0,"59883":0,"59884":0,"59885":0,"59886":1,"59887":0,"59888":0,"59889":1,"59890":0,"59891":1,"59892":0,"59893":0,"59894":1,"59895":0,"59896":0,"59897":0,"59898":1,"59899":1,"59900":0,"59901":0,"59902":0,"59903":0,"59904":0,"59905":0,"59906":0,"59907":1,"59908":0,"59909":0,"59910":0,"59911":0,"59912":0,"59913":0,"59914":0,"59915":0,"59916":0,"59917":1,"59918":0,"59919":0,"59920":0,"59921":0,"59922":1,"59923":1,"59924":1,"59925":0,"59926":0,"59927":0,"59928":0,"59929":0,"59930":0,"59931":0,"59932":1,"59933":0,"59934":1,"59935":0,"59936":0,"59937":0,"59938":0,"59939":1,"59940":0,"59941":0,"59942":0,"59943":0,"59944":1,"59945":1,"59946":0,"59947":0,"59948":0,"59949":1,"59950":0,"59951":0,"59952":0,"59953":0,"59954":0,"59955":0,"59956":0,"59957":0,"59958":0,"59959":0,"59960":0,"59961":0,"59962":1,"59963":0,"59964":0,"59965":1,"59966":0,"59967":1,"59968":1,"59969":0,"59970":0,"59971":1,"59972":0,"59973":0,"59974":0,"59975":0,"59976":1,"59977":1,"59978":1,"59979":0,"59980":0,"59981":0,"59982":1,"59983":0,"59984":0,"59985":0,"59986":0,"59987":1,"59988":0,"59989":0,"59990":1,"59991":1,"59992":0,"59993":0,"59994":0,"59995":1,"59996":0,"59997":0,"59998":0,"59999":0,"60000":1,"60001":0,"60002":0,"60003":1,"60004":0,"60005":0,"60006":0,"60007":0,"60008":0,"60009":1,"60010":0,"60011":0,"60012":0,"60013":0,"60014":0,"60015":1,"60016":0,"60017":0,"60018":0,"60019":0,"60020":0,"60021":0,"60022":1,"60023":0,"60024":0,"60025":1,"60026":0,"60027":0,"60028":0,"60029":0,"60030":0,"60031":1,"60032":1,"60033":0,"60034":0,"60035":1,"60036":0,"60037":0,"60038":0,"60039":0,"60040":0,"60041":0,"60042":1,"60043":0,"60044":0,"60045":0,"60046":0,"60047":0,"60048":0,"60049":0,"60050":0,"60051":0,"60052":0,"60053":0,"60054":0,"60055":0,"60056":1,"60057":0,"60058":0,"60059":0,"60060":1,"60061":0,"60062":0,"60063":1,"60064":1,"60065":0,"60066":0,"60067":1,"60068":0,"60069":0,"60070":0,"60071":0,"60072":0,"60073":0,"60074":0,"60075":0,"60076":1,"60077":0,"60078":0,"60079":1,"60080":0,"60081":0,"60082":0,"60083":0,"60084":0,"60085":1,"60086":0,"60087":0,"60088":0,"60089":0,"60090":0,"60091":0,"60092":0,"60093":0,"60094":0,"60095":0,"60096":0,"60097":1,"60098":1,"60099":0,"60100":1,"60101":1,"60102":0,"60103":1,"60104":0,"60105":0,"60106":0,"60107":0,"60108":0,"60109":0,"60110":0,"60111":1,"60112":0,"60113":0,"60114":0,"60115":0,"60116":0,"60117":1,"60118":0,"60119":0,"60120":1,"60121":0,"60122":0,"60123":0,"60124":1,"60125":1,"60126":1,"60127":0,"60128":1,"60129":0,"60130":0,"60131":0,"60132":0,"60133":1,"60134":0,"60135":0,"60136":0,"60137":0,"60138":0,"60139":1,"60140":0,"60141":0,"60142":0,"60143":0,"60144":1,"60145":0,"60146":0,"60147":0,"60148":1,"60149":1,"60150":1,"60151":0,"60152":1,"60153":0,"60154":0,"60155":0,"60156":1,"60157":1,"60158":1,"60159":1,"60160":1,"60161":0,"60162":0,"60163":1,"60164":0,"60165":1,"60166":0,"60167":0,"60168":0,"60169":0,"60170":0,"60171":0,"60172":0,"60173":1,"60174":0,"60175":0,"60176":1,"60177":0,"60178":0,"60179":0,"60180":1,"60181":0,"60182":0,"60183":0,"60184":1,"60185":0,"60186":1,"60187":1,"60188":0,"60189":0,"60190":1,"60191":1,"60192":0,"60193":1,"60194":0,"60195":0,"60196":1,"60197":1,"60198":0,"60199":0,"60200":0,"60201":0,"60202":0,"60203":0,"60204":1,"60205":1,"60206":0,"60207":1,"60208":0,"60209":1,"60210":0,"60211":0,"60212":0,"60213":0,"60214":0,"60215":1,"60216":0,"60217":1,"60218":1,"60219":0,"60220":0,"60221":1,"60222":0,"60223":0,"60224":0,"60225":0,"60226":0,"60227":0,"60228":0,"60229":1,"60230":0,"60231":0,"60232":0,"60233":0,"60234":0,"60235":0,"60236":0,"60237":1,"60238":0,"60239":0,"60240":1,"60241":0,"60242":0,"60243":1,"60244":1,"60245":0,"60246":0,"60247":1,"60248":1,"60249":0,"60250":0,"60251":1,"60252":1,"60253":0,"60254":0,"60255":0,"60256":0,"60257":0,"60258":0,"60259":0,"60260":0,"60261":1,"60262":1,"60263":0,"60264":1,"60265":0,"60266":0,"60267":0,"60268":1,"60269":0,"60270":0,"60271":0,"60272":0,"60273":1,"60274":1,"60275":0,"60276":1,"60277":1,"60278":1,"60279":1,"60280":1,"60281":1,"60282":0,"60283":0,"60284":0,"60285":0,"60286":0,"60287":1,"60288":0,"60289":0,"60290":0,"60291":0,"60292":1,"60293":0,"60294":1,"60295":1,"60296":0,"60297":0,"60298":0,"60299":0,"60300":0,"60301":0,"60302":1,"60303":0,"60304":1,"60305":1,"60306":0,"60307":0,"60308":1,"60309":0,"60310":0,"60311":0,"60312":0,"60313":0,"60314":0,"60315":1,"60316":0,"60317":1,"60318":1,"60319":1,"60320":0,"60321":0,"60322":0,"60323":1,"60324":0,"60325":0,"60326":1,"60327":0,"60328":0,"60329":0,"60330":0,"60331":1,"60332":0,"60333":0,"60334":0,"60335":1,"60336":1,"60337":0,"60338":0,"60339":0,"60340":0,"60341":0,"60342":0,"60343":0,"60344":0,"60345":1,"60346":0,"60347":0,"60348":0,"60349":0,"60350":1,"60351":0,"60352":1,"60353":1,"60354":0,"60355":0,"60356":1,"60357":0,"60358":0,"60359":1,"60360":0,"60361":0,"60362":1,"60363":1,"60364":0,"60365":0,"60366":1,"60367":1,"60368":1,"60369":0,"60370":0,"60371":0,"60372":0,"60373":0,"60374":0,"60375":0,"60376":1,"60377":0,"60378":0,"60379":0,"60380":0,"60381":1,"60382":0,"60383":0,"60384":0,"60385":1,"60386":0,"60387":0,"60388":1,"60389":1,"60390":0,"60391":0,"60392":1,"60393":1,"60394":1,"60395":1,"60396":0,"60397":1,"60398":0,"60399":0,"60400":1,"60401":1,"60402":0,"60403":0,"60404":0,"60405":0,"60406":1,"60407":0,"60408":1,"60409":1,"60410":0,"60411":0,"60412":0,"60413":0,"60414":1,"60415":0,"60416":0,"60417":0,"60418":0,"60419":0,"60420":0,"60421":0,"60422":0,"60423":1,"60424":0,"60425":0,"60426":0,"60427":0,"60428":0,"60429":1,"60430":0,"60431":0,"60432":0,"60433":0,"60434":0,"60435":0,"60436":0,"60437":0,"60438":0,"60439":0,"60440":0,"60441":0,"60442":1,"60443":1,"60444":0,"60445":0,"60446":0,"60447":1,"60448":1,"60449":1,"60450":0,"60451":1,"60452":1,"60453":1,"60454":0,"60455":0,"60456":0,"60457":0,"60458":0,"60459":1,"60460":0,"60461":1,"60462":0,"60463":0,"60464":0,"60465":1,"60466":0,"60467":0,"60468":0,"60469":0,"60470":1,"60471":0,"60472":0,"60473":0,"60474":0,"60475":0,"60476":1,"60477":1,"60478":0,"60479":0,"60480":0,"60481":0,"60482":0,"60483":1,"60484":1,"60485":1,"60486":0,"60487":0,"60488":0,"60489":1,"60490":1,"60491":0,"60492":1,"60493":1,"60494":0,"60495":0,"60496":0,"60497":1,"60498":0,"60499":0,"60500":0,"60501":0,"60502":0,"60503":0,"60504":0,"60505":0,"60506":0,"60507":0,"60508":1,"60509":0,"60510":1,"60511":0,"60512":0,"60513":0,"60514":0,"60515":0,"60516":0,"60517":0,"60518":1,"60519":0,"60520":0,"60521":1,"60522":0,"60523":1,"60524":0,"60525":0,"60526":1,"60527":0,"60528":0,"60529":0,"60530":0,"60531":1,"60532":0,"60533":0,"60534":1,"60535":0,"60536":0,"60537":0,"60538":0,"60539":0,"60540":0,"60541":1,"60542":0,"60543":0,"60544":0,"60545":1,"60546":0,"60547":0,"60548":0,"60549":0,"60550":1,"60551":1,"60552":1,"60553":0,"60554":0,"60555":1,"60556":0,"60557":0,"60558":0,"60559":0,"60560":0,"60561":0,"60562":0,"60563":1,"60564":1,"60565":0,"60566":1,"60567":1,"60568":0,"60569":0,"60570":1,"60571":0,"60572":1,"60573":0,"60574":0,"60575":0,"60576":0,"60577":0,"60578":0,"60579":0,"60580":0,"60581":0,"60582":0,"60583":1,"60584":1,"60585":1,"60586":0,"60587":0,"60588":0,"60589":0,"60590":0,"60591":0,"60592":0,"60593":1,"60594":1,"60595":0,"60596":0,"60597":0,"60598":1,"60599":1,"60600":0,"60601":1,"60602":1,"60603":0,"60604":0,"60605":0,"60606":0,"60607":0,"60608":0,"60609":0,"60610":0,"60611":0,"60612":1,"60613":0,"60614":0,"60615":0,"60616":0,"60617":0,"60618":1,"60619":0,"60620":0,"60621":0,"60622":0,"60623":1,"60624":0,"60625":0,"60626":0,"60627":1,"60628":0,"60629":1,"60630":0,"60631":0,"60632":0,"60633":1,"60634":1,"60635":0,"60636":1,"60637":0,"60638":0,"60639":0,"60640":0,"60641":0,"60642":1,"60643":0,"60644":0,"60645":1,"60646":1,"60647":0,"60648":0,"60649":0,"60650":0,"60651":0,"60652":0,"60653":0,"60654":0,"60655":1,"60656":0,"60657":0,"60658":0,"60659":0,"60660":0,"60661":0,"60662":0,"60663":0,"60664":1,"60665":0,"60666":1,"60667":0,"60668":0,"60669":0,"60670":0,"60671":0,"60672":0,"60673":1,"60674":0,"60675":0,"60676":0,"60677":0,"60678":0,"60679":0,"60680":0,"60681":0,"60682":1,"60683":0,"60684":0,"60685":0,"60686":0,"60687":0,"60688":0,"60689":0,"60690":0,"60691":1,"60692":0,"60693":1,"60694":1,"60695":0,"60696":1,"60697":0,"60698":0,"60699":0,"60700":0,"60701":0,"60702":1,"60703":0,"60704":0,"60705":0,"60706":0,"60707":0,"60708":0,"60709":0,"60710":0,"60711":0,"60712":0,"60713":0,"60714":1,"60715":0,"60716":1,"60717":0,"60718":0,"60719":1,"60720":0,"60721":0,"60722":1,"60723":0,"60724":0,"60725":0,"60726":0,"60727":0,"60728":0,"60729":1,"60730":0,"60731":0,"60732":0,"60733":0,"60734":0,"60735":0,"60736":0,"60737":1,"60738":0,"60739":0,"60740":1,"60741":0,"60742":0,"60743":0,"60744":0,"60745":0,"60746":1,"60747":0,"60748":0,"60749":1,"60750":0,"60751":0,"60752":0,"60753":0,"60754":0,"60755":0,"60756":0,"60757":0,"60758":0,"60759":1,"60760":0,"60761":0,"60762":0,"60763":0,"60764":0,"60765":1,"60766":1,"60767":0,"60768":0,"60769":0,"60770":1,"60771":0,"60772":0,"60773":1,"60774":0,"60775":1,"60776":0,"60777":0,"60778":0,"60779":0,"60780":1,"60781":0,"60782":1,"60783":0,"60784":1,"60785":0,"60786":0,"60787":0,"60788":0,"60789":1,"60790":0,"60791":1,"60792":0,"60793":0,"60794":0,"60795":0,"60796":0,"60797":0,"60798":0,"60799":0,"60800":0,"60801":0,"60802":0,"60803":0,"60804":1,"60805":0,"60806":1,"60807":1,"60808":0,"60809":0,"60810":1,"60811":1,"60812":0,"60813":0,"60814":1,"60815":0,"60816":0,"60817":0,"60818":1,"60819":1,"60820":1,"60821":1,"60822":0,"60823":0,"60824":1,"60825":0,"60826":0,"60827":0,"60828":1,"60829":0,"60830":0,"60831":0,"60832":1,"60833":0,"60834":1,"60835":0,"60836":0,"60837":0,"60838":1,"60839":0,"60840":0,"60841":0,"60842":1,"60843":1,"60844":1,"60845":0,"60846":0,"60847":0,"60848":0,"60849":0,"60850":1,"60851":1,"60852":0,"60853":0,"60854":0,"60855":0,"60856":0,"60857":0,"60858":0,"60859":0,"60860":0,"60861":0,"60862":0,"60863":0,"60864":0,"60865":0,"60866":1,"60867":0,"60868":1,"60869":0,"60870":0,"60871":0,"60872":0,"60873":1,"60874":0,"60875":0,"60876":1,"60877":0,"60878":0,"60879":0,"60880":1,"60881":0,"60882":0,"60883":0,"60884":0,"60885":0,"60886":1,"60887":0,"60888":0,"60889":0,"60890":0,"60891":0,"60892":0,"60893":1,"60894":1,"60895":0,"60896":0,"60897":0,"60898":0,"60899":0,"60900":0,"60901":0,"60902":0,"60903":0,"60904":0,"60905":0,"60906":0,"60907":0,"60908":1,"60909":1,"60910":1,"60911":1,"60912":1,"60913":0,"60914":1,"60915":0,"60916":1,"60917":0,"60918":1,"60919":0,"60920":0,"60921":0,"60922":0,"60923":0,"60924":0,"60925":1,"60926":0,"60927":0,"60928":1,"60929":1,"60930":0,"60931":0,"60932":1,"60933":0,"60934":0,"60935":0,"60936":0,"60937":0,"60938":0,"60939":1,"60940":0,"60941":1,"60942":1,"60943":0,"60944":1,"60945":0,"60946":0,"60947":1,"60948":0,"60949":0,"60950":0,"60951":0,"60952":0,"60953":0,"60954":0,"60955":0,"60956":0,"60957":1,"60958":0,"60959":0,"60960":0,"60961":0,"60962":1,"60963":0,"60964":0,"60965":0,"60966":0,"60967":0,"60968":0,"60969":0,"60970":0,"60971":1,"60972":1,"60973":0,"60974":1,"60975":1,"60976":1,"60977":0,"60978":0,"60979":0,"60980":0,"60981":0,"60982":0,"60983":0,"60984":0,"60985":0,"60986":0,"60987":0,"60988":0,"60989":1,"60990":0,"60991":1,"60992":0,"60993":1,"60994":0,"60995":0,"60996":0,"60997":0,"60998":0,"60999":1,"61000":1,"61001":0,"61002":0,"61003":0,"61004":0,"61005":0,"61006":0,"61007":0,"61008":0,"61009":0,"61010":0,"61011":0,"61012":1,"61013":0,"61014":0,"61015":0,"61016":0,"61017":0,"61018":0,"61019":0,"61020":0,"61021":0,"61022":1,"61023":1,"61024":0,"61025":0,"61026":1,"61027":0,"61028":1,"61029":0,"61030":0,"61031":0,"61032":0,"61033":0,"61034":0,"61035":0,"61036":0,"61037":0,"61038":0,"61039":1,"61040":0,"61041":0,"61042":1,"61043":0,"61044":0,"61045":0,"61046":1,"61047":0,"61048":0,"61049":0,"61050":1,"61051":0,"61052":0,"61053":0,"61054":0,"61055":1,"61056":0,"61057":0,"61058":0,"61059":0,"61060":0,"61061":0,"61062":0,"61063":0,"61064":1,"61065":0,"61066":0,"61067":0,"61068":1,"61069":0,"61070":0,"61071":0,"61072":0,"61073":0,"61074":0,"61075":0,"61076":1,"61077":0,"61078":0,"61079":1,"61080":0,"61081":0,"61082":1,"61083":0,"61084":1,"61085":0,"61086":0,"61087":0,"61088":0,"61089":0,"61090":1,"61091":1,"61092":0,"61093":0,"61094":0,"61095":1,"61096":0,"61097":0,"61098":1,"61099":1,"61100":1,"61101":0,"61102":0,"61103":0,"61104":0,"61105":0,"61106":1,"61107":0,"61108":0,"61109":0,"61110":1,"61111":1,"61112":1,"61113":0,"61114":1,"61115":0,"61116":0,"61117":0,"61118":0,"61119":0,"61120":1,"61121":1,"61122":0,"61123":0,"61124":0,"61125":0,"61126":0,"61127":0,"61128":1,"61129":1,"61130":1,"61131":0,"61132":0,"61133":0,"61134":1,"61135":0,"61136":1,"61137":0,"61138":0,"61139":0,"61140":1,"61141":1,"61142":1,"61143":0,"61144":0,"61145":0,"61146":0,"61147":1,"61148":0,"61149":0,"61150":1,"61151":0,"61152":1,"61153":1,"61154":0,"61155":0,"61156":1,"61157":0,"61158":0,"61159":1,"61160":1,"61161":1,"61162":1,"61163":0,"61164":1,"61165":0,"61166":0,"61167":0,"61168":1,"61169":0,"61170":0,"61171":0,"61172":0,"61173":0,"61174":0,"61175":1,"61176":0,"61177":0,"61178":0,"61179":0,"61180":0,"61181":0,"61182":1,"61183":0,"61184":0,"61185":0,"61186":0,"61187":0,"61188":0,"61189":0,"61190":0,"61191":1,"61192":0,"61193":0,"61194":0,"61195":0,"61196":0,"61197":0,"61198":1,"61199":1,"61200":0,"61201":0,"61202":0,"61203":0,"61204":0,"61205":0,"61206":0,"61207":0,"61208":0,"61209":0,"61210":0,"61211":0,"61212":0,"61213":1,"61214":1,"61215":1,"61216":0,"61217":0,"61218":0,"61219":0,"61220":0,"61221":0,"61222":0,"61223":0,"61224":1,"61225":0,"61226":0,"61227":1,"61228":1,"61229":0,"61230":0,"61231":0,"61232":1,"61233":0,"61234":0,"61235":0,"61236":1,"61237":1,"61238":0,"61239":0,"61240":0,"61241":0,"61242":1,"61243":1,"61244":1,"61245":1,"61246":1,"61247":0,"61248":0,"61249":0,"61250":1,"61251":0,"61252":1,"61253":1,"61254":1,"61255":0,"61256":0,"61257":0,"61258":0,"61259":1,"61260":0,"61261":0,"61262":0,"61263":0,"61264":0,"61265":1,"61266":0,"61267":0,"61268":1,"61269":1,"61270":0,"61271":1,"61272":0,"61273":1,"61274":0,"61275":0,"61276":0,"61277":0,"61278":0,"61279":1,"61280":0,"61281":1,"61282":0,"61283":0,"61284":0,"61285":1,"61286":1,"61287":0,"61288":0,"61289":0,"61290":0,"61291":0,"61292":0,"61293":0,"61294":0,"61295":0,"61296":1,"61297":0,"61298":0,"61299":0,"61300":0,"61301":0,"61302":0,"61303":0,"61304":0,"61305":1,"61306":0,"61307":0,"61308":0,"61309":1,"61310":0,"61311":0,"61312":1,"61313":0,"61314":1,"61315":0,"61316":0,"61317":1,"61318":0,"61319":0,"61320":0,"61321":0,"61322":0,"61323":0,"61324":0,"61325":1,"61326":0,"61327":0,"61328":0,"61329":0,"61330":0,"61331":0,"61332":1,"61333":0,"61334":1,"61335":0,"61336":1,"61337":0,"61338":1,"61339":0,"61340":0,"61341":0,"61342":1,"61343":0,"61344":0,"61345":0,"61346":0,"61347":1,"61348":1,"61349":0,"61350":0,"61351":1,"61352":1,"61353":1,"61354":0,"61355":0,"61356":1,"61357":0,"61358":0,"61359":0,"61360":0,"61361":1,"61362":0,"61363":0,"61364":0,"61365":0,"61366":0,"61367":0,"61368":0,"61369":0,"61370":1,"61371":0,"61372":1,"61373":0,"61374":0,"61375":0,"61376":0,"61377":0,"61378":0,"61379":0,"61380":1,"61381":0,"61382":1,"61383":1,"61384":0,"61385":0,"61386":1,"61387":0,"61388":0,"61389":1,"61390":0,"61391":0,"61392":1,"61393":0,"61394":0,"61395":1,"61396":1,"61397":1,"61398":0,"61399":0,"61400":0,"61401":0,"61402":0,"61403":0,"61404":1,"61405":0,"61406":1,"61407":0,"61408":0,"61409":1,"61410":0,"61411":0,"61412":0,"61413":1,"61414":0,"61415":0,"61416":0,"61417":0,"61418":1,"61419":0,"61420":0,"61421":1,"61422":1,"61423":0,"61424":0,"61425":0,"61426":0,"61427":0,"61428":1,"61429":1,"61430":0,"61431":0,"61432":1,"61433":0,"61434":1,"61435":0,"61436":0,"61437":0,"61438":0,"61439":1,"61440":0,"61441":0,"61442":0,"61443":0,"61444":0,"61445":0,"61446":0,"61447":0,"61448":0,"61449":0,"61450":1,"61451":0,"61452":0,"61453":1,"61454":0,"61455":1,"61456":1,"61457":1,"61458":0,"61459":0,"61460":0,"61461":0,"61462":0,"61463":0,"61464":1,"61465":0,"61466":0,"61467":0,"61468":0,"61469":0,"61470":0,"61471":0,"61472":1,"61473":0,"61474":0,"61475":1,"61476":0,"61477":0,"61478":1,"61479":0,"61480":0,"61481":1,"61482":0,"61483":0,"61484":0,"61485":1,"61486":0,"61487":1,"61488":0,"61489":0,"61490":1,"61491":0,"61492":0,"61493":0,"61494":0,"61495":1,"61496":0,"61497":0,"61498":0,"61499":0,"61500":0,"61501":0,"61502":1,"61503":0,"61504":1,"61505":1,"61506":0,"61507":0,"61508":0,"61509":0,"61510":1,"61511":0,"61512":0,"61513":1,"61514":0,"61515":1,"61516":0,"61517":1,"61518":0,"61519":0,"61520":0,"61521":1,"61522":0,"61523":0,"61524":1,"61525":0,"61526":1,"61527":0,"61528":1,"61529":0,"61530":1,"61531":0,"61532":1,"61533":0,"61534":0,"61535":0,"61536":0,"61537":0,"61538":0,"61539":1,"61540":0,"61541":0,"61542":1,"61543":0,"61544":0,"61545":0,"61546":1,"61547":0,"61548":0,"61549":0,"61550":0,"61551":0,"61552":0,"61553":0,"61554":0,"61555":0,"61556":1,"61557":0,"61558":0,"61559":0,"61560":1,"61561":0,"61562":0,"61563":0,"61564":0,"61565":1,"61566":0,"61567":0,"61568":0,"61569":0,"61570":0,"61571":0,"61572":0,"61573":0,"61574":0,"61575":0,"61576":0,"61577":0,"61578":0,"61579":0,"61580":0,"61581":0,"61582":0,"61583":0,"61584":0,"61585":0,"61586":0,"61587":0,"61588":0,"61589":1,"61590":0,"61591":0,"61592":0,"61593":0,"61594":1,"61595":1,"61596":0,"61597":0,"61598":1,"61599":0,"61600":1,"61601":0,"61602":0,"61603":0,"61604":0,"61605":1,"61606":0,"61607":0,"61608":0,"61609":1,"61610":1,"61611":0,"61612":0,"61613":0,"61614":1,"61615":0,"61616":0,"61617":0,"61618":0,"61619":1,"61620":0,"61621":0,"61622":0,"61623":0,"61624":0,"61625":1,"61626":1,"61627":0,"61628":0,"61629":1,"61630":0,"61631":0,"61632":0,"61633":0,"61634":0,"61635":0,"61636":1,"61637":0,"61638":0,"61639":1,"61640":0,"61641":1,"61642":0,"61643":0,"61644":0,"61645":0,"61646":0,"61647":0,"61648":1,"61649":1,"61650":0,"61651":0,"61652":1,"61653":0,"61654":0,"61655":0,"61656":0,"61657":0,"61658":0,"61659":0,"61660":1,"61661":1,"61662":0,"61663":0,"61664":0,"61665":0,"61666":0,"61667":0,"61668":1,"61669":0,"61670":0,"61671":1,"61672":0,"61673":0,"61674":0,"61675":0,"61676":0,"61677":0,"61678":0,"61679":0,"61680":0,"61681":0,"61682":0,"61683":0,"61684":0,"61685":0,"61686":0,"61687":1,"61688":0,"61689":1,"61690":0,"61691":0,"61692":0,"61693":1,"61694":0,"61695":0,"61696":0,"61697":0,"61698":0,"61699":1,"61700":0,"61701":0,"61702":0,"61703":0,"61704":1,"61705":1,"61706":0,"61707":0,"61708":0,"61709":0,"61710":0,"61711":1,"61712":1,"61713":1,"61714":0,"61715":1,"61716":0,"61717":0,"61718":0,"61719":0,"61720":0,"61721":0,"61722":0,"61723":1,"61724":0,"61725":1,"61726":1,"61727":0,"61728":1,"61729":0,"61730":0,"61731":1,"61732":0,"61733":0,"61734":0,"61735":0,"61736":0,"61737":1,"61738":0,"61739":0,"61740":1,"61741":0,"61742":1,"61743":0,"61744":1,"61745":0,"61746":0,"61747":0,"61748":0,"61749":0,"61750":0,"61751":1,"61752":1,"61753":1,"61754":0,"61755":1,"61756":0,"61757":0,"61758":0,"61759":0,"61760":0,"61761":1,"61762":0,"61763":0,"61764":0,"61765":0,"61766":1,"61767":0,"61768":0,"61769":0,"61770":0,"61771":0,"61772":0,"61773":0,"61774":1,"61775":0,"61776":0,"61777":0,"61778":0,"61779":1,"61780":1,"61781":0,"61782":0,"61783":1,"61784":0,"61785":1,"61786":1,"61787":0,"61788":0,"61789":1,"61790":1,"61791":0,"61792":0,"61793":1,"61794":0,"61795":0,"61796":0,"61797":0,"61798":1,"61799":1,"61800":0,"61801":0,"61802":1,"61803":0,"61804":1,"61805":0,"61806":0,"61807":1,"61808":1,"61809":0,"61810":1,"61811":0,"61812":0,"61813":0,"61814":0,"61815":0,"61816":0,"61817":1,"61818":0,"61819":1,"61820":1,"61821":1,"61822":0,"61823":0,"61824":0,"61825":0,"61826":0,"61827":0,"61828":0,"61829":0,"61830":0,"61831":1,"61832":0,"61833":0,"61834":0,"61835":0,"61836":1,"61837":0,"61838":0,"61839":1,"61840":0,"61841":0,"61842":0,"61843":0,"61844":0,"61845":0,"61846":0,"61847":0,"61848":0,"61849":1,"61850":0,"61851":0,"61852":0,"61853":1,"61854":0,"61855":1,"61856":1,"61857":1,"61858":1,"61859":1,"61860":1,"61861":0,"61862":0,"61863":0,"61864":0,"61865":0,"61866":0,"61867":0,"61868":0,"61869":0,"61870":0,"61871":1,"61872":1,"61873":1,"61874":0,"61875":1,"61876":0,"61877":0,"61878":1,"61879":0,"61880":0,"61881":0,"61882":0,"61883":1,"61884":1,"61885":0,"61886":0,"61887":0,"61888":0,"61889":0,"61890":1,"61891":0,"61892":0,"61893":0,"61894":0,"61895":0,"61896":0,"61897":1,"61898":0,"61899":0,"61900":0,"61901":0,"61902":0,"61903":0,"61904":0,"61905":0,"61906":0,"61907":0,"61908":0,"61909":0,"61910":0,"61911":1,"61912":1,"61913":0,"61914":0,"61915":0,"61916":0,"61917":0,"61918":1,"61919":0,"61920":0,"61921":0,"61922":0,"61923":1,"61924":0,"61925":0,"61926":0,"61927":0,"61928":0,"61929":1,"61930":1,"61931":0,"61932":1,"61933":1,"61934":1,"61935":0,"61936":0,"61937":0,"61938":1,"61939":0,"61940":0,"61941":1,"61942":0,"61943":0,"61944":0,"61945":0,"61946":1,"61947":0,"61948":1,"61949":0,"61950":1,"61951":0,"61952":1,"61953":0,"61954":0,"61955":0,"61956":1,"61957":0,"61958":0,"61959":0,"61960":0,"61961":0,"61962":0,"61963":0,"61964":0,"61965":1,"61966":0,"61967":0,"61968":0,"61969":1,"61970":0,"61971":0,"61972":0,"61973":0,"61974":1,"61975":1,"61976":0,"61977":0,"61978":0,"61979":0,"61980":0,"61981":0,"61982":0,"61983":1,"61984":0,"61985":0,"61986":0,"61987":1,"61988":0,"61989":0,"61990":0,"61991":1,"61992":0,"61993":0,"61994":0,"61995":0,"61996":0,"61997":0,"61998":1,"61999":0,"62000":0,"62001":1,"62002":1,"62003":0,"62004":0,"62005":0,"62006":1,"62007":0,"62008":0,"62009":0,"62010":0,"62011":0,"62012":0,"62013":0,"62014":0,"62015":0,"62016":0,"62017":1,"62018":0,"62019":0,"62020":0,"62021":0,"62022":0,"62023":0,"62024":1,"62025":0,"62026":0,"62027":0,"62028":1,"62029":0,"62030":0,"62031":0,"62032":0,"62033":0,"62034":0,"62035":0,"62036":0,"62037":0,"62038":0,"62039":1,"62040":0,"62041":0,"62042":0,"62043":0,"62044":0,"62045":0,"62046":0,"62047":0,"62048":0,"62049":0,"62050":1,"62051":1,"62052":0,"62053":0,"62054":1,"62055":0,"62056":0,"62057":0,"62058":1,"62059":0,"62060":0,"62061":0,"62062":0,"62063":0,"62064":1,"62065":0,"62066":0,"62067":0,"62068":0,"62069":0,"62070":0,"62071":0,"62072":1,"62073":0,"62074":0,"62075":1,"62076":0,"62077":1,"62078":0,"62079":0,"62080":0,"62081":0,"62082":0,"62083":1,"62084":0,"62085":0,"62086":0,"62087":1,"62088":0,"62089":0,"62090":0,"62091":1,"62092":0,"62093":1,"62094":0,"62095":0,"62096":0,"62097":1,"62098":0,"62099":0,"62100":0,"62101":1,"62102":0,"62103":1,"62104":1,"62105":0,"62106":1,"62107":0,"62108":0,"62109":1,"62110":0,"62111":1,"62112":1,"62113":1,"62114":0,"62115":0,"62116":0,"62117":0,"62118":0,"62119":0,"62120":0,"62121":0,"62122":0,"62123":0,"62124":0,"62125":0,"62126":0,"62127":0,"62128":0,"62129":0,"62130":0,"62131":1,"62132":0,"62133":0,"62134":0,"62135":0,"62136":1,"62137":0,"62138":1,"62139":1,"62140":0,"62141":0,"62142":1,"62143":0,"62144":0,"62145":1,"62146":0,"62147":1,"62148":0,"62149":0,"62150":0,"62151":0,"62152":0,"62153":0,"62154":1,"62155":0,"62156":0,"62157":0,"62158":0,"62159":0,"62160":0,"62161":0,"62162":0,"62163":0,"62164":0,"62165":0,"62166":0,"62167":0,"62168":0,"62169":0,"62170":0,"62171":1,"62172":0,"62173":1,"62174":0,"62175":0,"62176":0,"62177":1,"62178":1,"62179":0,"62180":0,"62181":0,"62182":0,"62183":0,"62184":1,"62185":1,"62186":0,"62187":1,"62188":0,"62189":0,"62190":1,"62191":1,"62192":1,"62193":1,"62194":0,"62195":1,"62196":0,"62197":0,"62198":0,"62199":0,"62200":0,"62201":0,"62202":0,"62203":0,"62204":0,"62205":0,"62206":0,"62207":1,"62208":0,"62209":1,"62210":0,"62211":0,"62212":0,"62213":0,"62214":1,"62215":0,"62216":0,"62217":0,"62218":1,"62219":0,"62220":0,"62221":1,"62222":1,"62223":0,"62224":0,"62225":0,"62226":0,"62227":0,"62228":1,"62229":0,"62230":0,"62231":0,"62232":1,"62233":1,"62234":1,"62235":0,"62236":0,"62237":0,"62238":1,"62239":1,"62240":0,"62241":0,"62242":0,"62243":0,"62244":0,"62245":1,"62246":0,"62247":1,"62248":0,"62249":0,"62250":0,"62251":1,"62252":0,"62253":0,"62254":0,"62255":0,"62256":1,"62257":0,"62258":0,"62259":0,"62260":1,"62261":0,"62262":0,"62263":0,"62264":0,"62265":0,"62266":0,"62267":1,"62268":0,"62269":1,"62270":0,"62271":0,"62272":0,"62273":0,"62274":1,"62275":1,"62276":0,"62277":0,"62278":1,"62279":0,"62280":0,"62281":1,"62282":0,"62283":0,"62284":0,"62285":0,"62286":0,"62287":0,"62288":1,"62289":0,"62290":0,"62291":0,"62292":0,"62293":0,"62294":1,"62295":1,"62296":0,"62297":0,"62298":0,"62299":0,"62300":0,"62301":0,"62302":0,"62303":0,"62304":1,"62305":0,"62306":0,"62307":0,"62308":0,"62309":0,"62310":1,"62311":1,"62312":0,"62313":0,"62314":0,"62315":0,"62316":1,"62317":1,"62318":1,"62319":1,"62320":0,"62321":0,"62322":0,"62323":0,"62324":0,"62325":0,"62326":1,"62327":0,"62328":0,"62329":1,"62330":0,"62331":0,"62332":0,"62333":1,"62334":0,"62335":0,"62336":0,"62337":1,"62338":0,"62339":0,"62340":1,"62341":1,"62342":1,"62343":0,"62344":0,"62345":0,"62346":1,"62347":0,"62348":0,"62349":1,"62350":0,"62351":0,"62352":0,"62353":0,"62354":0,"62355":0,"62356":0,"62357":0,"62358":0,"62359":0,"62360":1,"62361":0,"62362":1,"62363":0,"62364":1,"62365":0,"62366":1,"62367":1,"62368":0,"62369":0,"62370":0,"62371":0,"62372":0,"62373":0,"62374":0,"62375":1,"62376":0,"62377":1,"62378":0,"62379":1,"62380":0,"62381":0,"62382":0,"62383":1,"62384":0,"62385":0,"62386":1,"62387":0,"62388":0,"62389":0,"62390":0,"62391":1,"62392":0,"62393":0,"62394":0,"62395":0,"62396":1,"62397":0,"62398":0,"62399":1,"62400":0,"62401":0,"62402":0,"62403":1,"62404":0,"62405":0,"62406":0,"62407":1,"62408":0,"62409":0,"62410":1,"62411":0,"62412":0,"62413":1,"62414":0,"62415":0,"62416":1,"62417":0,"62418":0,"62419":0,"62420":1,"62421":0,"62422":0,"62423":1,"62424":0,"62425":0,"62426":0,"62427":1,"62428":0,"62429":0,"62430":1,"62431":0,"62432":0,"62433":0,"62434":0,"62435":0,"62436":1,"62437":0,"62438":1,"62439":1,"62440":0,"62441":0,"62442":1,"62443":0,"62444":0,"62445":0,"62446":1,"62447":0,"62448":1,"62449":0,"62450":0,"62451":0,"62452":1,"62453":0,"62454":0,"62455":1,"62456":0,"62457":0,"62458":1,"62459":0,"62460":1,"62461":0,"62462":0,"62463":0,"62464":0,"62465":0,"62466":1,"62467":0,"62468":0,"62469":1,"62470":0,"62471":0,"62472":1,"62473":0,"62474":0,"62475":1,"62476":0,"62477":0,"62478":0,"62479":1,"62480":0,"62481":0,"62482":1,"62483":0,"62484":0,"62485":0,"62486":0,"62487":0,"62488":0,"62489":0,"62490":0,"62491":0,"62492":0,"62493":1,"62494":0,"62495":0,"62496":0,"62497":0,"62498":0,"62499":1,"62500":0,"62501":0,"62502":0,"62503":1,"62504":0,"62505":0,"62506":1,"62507":0,"62508":0,"62509":0,"62510":0,"62511":0,"62512":0,"62513":0,"62514":1,"62515":0,"62516":0,"62517":0,"62518":0,"62519":0,"62520":0,"62521":1,"62522":0,"62523":0,"62524":0,"62525":1,"62526":0,"62527":0,"62528":0,"62529":0,"62530":1,"62531":1,"62532":0,"62533":0,"62534":1,"62535":1,"62536":0,"62537":0,"62538":0,"62539":0,"62540":1,"62541":0,"62542":0,"62543":0,"62544":0,"62545":0,"62546":0,"62547":1,"62548":0,"62549":0,"62550":0,"62551":1,"62552":0,"62553":1,"62554":1,"62555":0,"62556":0,"62557":0,"62558":0,"62559":0,"62560":0,"62561":0,"62562":0,"62563":0,"62564":0,"62565":0,"62566":0,"62567":0,"62568":1,"62569":0,"62570":0,"62571":0,"62572":0,"62573":0,"62574":0,"62575":1,"62576":0,"62577":0,"62578":0,"62579":0,"62580":0,"62581":1,"62582":0,"62583":0,"62584":0,"62585":0,"62586":0,"62587":0,"62588":0,"62589":0,"62590":0,"62591":1,"62592":0,"62593":0,"62594":0,"62595":0,"62596":0,"62597":0,"62598":0,"62599":0,"62600":1,"62601":1,"62602":0,"62603":0,"62604":1,"62605":1,"62606":0,"62607":1,"62608":0,"62609":0,"62610":0,"62611":0,"62612":0,"62613":0,"62614":0,"62615":0,"62616":0,"62617":0,"62618":1,"62619":0,"62620":0,"62621":0,"62622":1,"62623":0,"62624":0,"62625":0,"62626":0,"62627":1,"62628":0,"62629":0,"62630":1,"62631":0,"62632":1,"62633":0,"62634":0,"62635":0,"62636":0,"62637":0,"62638":0,"62639":0,"62640":0,"62641":0,"62642":1,"62643":0,"62644":1,"62645":0,"62646":1,"62647":0,"62648":1,"62649":0,"62650":1,"62651":0,"62652":0,"62653":0,"62654":0,"62655":0,"62656":0,"62657":0,"62658":0,"62659":0,"62660":1,"62661":0,"62662":0,"62663":0,"62664":0,"62665":0,"62666":0,"62667":0,"62668":0,"62669":0,"62670":1,"62671":0,"62672":0,"62673":1,"62674":1,"62675":0,"62676":0,"62677":0,"62678":0,"62679":0,"62680":0,"62681":0,"62682":1,"62683":0,"62684":0,"62685":0,"62686":0,"62687":1,"62688":0,"62689":0,"62690":0,"62691":0,"62692":0,"62693":0,"62694":0,"62695":0,"62696":0,"62697":1,"62698":0,"62699":0,"62700":0,"62701":0,"62702":0,"62703":0,"62704":0,"62705":0,"62706":1,"62707":0,"62708":0,"62709":1,"62710":0,"62711":0,"62712":0,"62713":0,"62714":0,"62715":0,"62716":0,"62717":0,"62718":0,"62719":0,"62720":0,"62721":0,"62722":1,"62723":1,"62724":0,"62725":0,"62726":0,"62727":0,"62728":0,"62729":1,"62730":0,"62731":0,"62732":0,"62733":0,"62734":0,"62735":1,"62736":0,"62737":0,"62738":0,"62739":0,"62740":0,"62741":0,"62742":0,"62743":1,"62744":1,"62745":0,"62746":0,"62747":1,"62748":0,"62749":0,"62750":0,"62751":0,"62752":0,"62753":0,"62754":0,"62755":0,"62756":1,"62757":0,"62758":0,"62759":0,"62760":0,"62761":0,"62762":0,"62763":0,"62764":0,"62765":0,"62766":0,"62767":0,"62768":0,"62769":0,"62770":0,"62771":0,"62772":0,"62773":0,"62774":0,"62775":0,"62776":1,"62777":0,"62778":1,"62779":1,"62780":0,"62781":0,"62782":0,"62783":1,"62784":1,"62785":0,"62786":1,"62787":1,"62788":0,"62789":0,"62790":1,"62791":1,"62792":0,"62793":0,"62794":0,"62795":0,"62796":1,"62797":0,"62798":1,"62799":0,"62800":0,"62801":1,"62802":0,"62803":0,"62804":1,"62805":0,"62806":1,"62807":1,"62808":0,"62809":0,"62810":0,"62811":1,"62812":1,"62813":1,"62814":0,"62815":0,"62816":0,"62817":0,"62818":0,"62819":1,"62820":0,"62821":0,"62822":0,"62823":0,"62824":0,"62825":0,"62826":1,"62827":0,"62828":0,"62829":0,"62830":0,"62831":0,"62832":0,"62833":1,"62834":1,"62835":1,"62836":0,"62837":0,"62838":0,"62839":0,"62840":0,"62841":0,"62842":0,"62843":0,"62844":0,"62845":0,"62846":0,"62847":0,"62848":0,"62849":0,"62850":1,"62851":0,"62852":0,"62853":0,"62854":1,"62855":0,"62856":0,"62857":0,"62858":0,"62859":0,"62860":0,"62861":0,"62862":1,"62863":0,"62864":0,"62865":0,"62866":1,"62867":0,"62868":0,"62869":0,"62870":0,"62871":1,"62872":0,"62873":0,"62874":0,"62875":0,"62876":0,"62877":1,"62878":0,"62879":1,"62880":0,"62881":0,"62882":0,"62883":0,"62884":1,"62885":0,"62886":0,"62887":0,"62888":0,"62889":1,"62890":0,"62891":0,"62892":0,"62893":0,"62894":0,"62895":0,"62896":1,"62897":0,"62898":0,"62899":1,"62900":0,"62901":1,"62902":0,"62903":0,"62904":1,"62905":0,"62906":0,"62907":1,"62908":0,"62909":0,"62910":0,"62911":0,"62912":0,"62913":0,"62914":0,"62915":0,"62916":0,"62917":0,"62918":1,"62919":0,"62920":1,"62921":1,"62922":0,"62923":1,"62924":1,"62925":0,"62926":1,"62927":0,"62928":1,"62929":0,"62930":0,"62931":0,"62932":0,"62933":1,"62934":0,"62935":1,"62936":0,"62937":0,"62938":0,"62939":0,"62940":0,"62941":1,"62942":0,"62943":1,"62944":1,"62945":0,"62946":1,"62947":0,"62948":0,"62949":0,"62950":0,"62951":0,"62952":1,"62953":0,"62954":0,"62955":1,"62956":1,"62957":0,"62958":0,"62959":0,"62960":0,"62961":0,"62962":0,"62963":0,"62964":0,"62965":1,"62966":1,"62967":1,"62968":0,"62969":0,"62970":1,"62971":0,"62972":0,"62973":0,"62974":0,"62975":0,"62976":0,"62977":1,"62978":1,"62979":1,"62980":0,"62981":1,"62982":0,"62983":0,"62984":1,"62985":1,"62986":1,"62987":0,"62988":0,"62989":1,"62990":0,"62991":0,"62992":0,"62993":0,"62994":0,"62995":1,"62996":1,"62997":0,"62998":0,"62999":0,"63000":0,"63001":0,"63002":0,"63003":0,"63004":0,"63005":1,"63006":0,"63007":1,"63008":1,"63009":0,"63010":0,"63011":0,"63012":0,"63013":0,"63014":0,"63015":1,"63016":1,"63017":1,"63018":0,"63019":0,"63020":0,"63021":0,"63022":0,"63023":0,"63024":0,"63025":0,"63026":1,"63027":1,"63028":0,"63029":0,"63030":0,"63031":0,"63032":0,"63033":0,"63034":0,"63035":0,"63036":0,"63037":0,"63038":0,"63039":0,"63040":0,"63041":1,"63042":1,"63043":0,"63044":0,"63045":1,"63046":0,"63047":0,"63048":0,"63049":0,"63050":1,"63051":1,"63052":0,"63053":0,"63054":0,"63055":0,"63056":1,"63057":0,"63058":0,"63059":0,"63060":0,"63061":0,"63062":1,"63063":0,"63064":0,"63065":1,"63066":0,"63067":0,"63068":0,"63069":0,"63070":0,"63071":0,"63072":0,"63073":0,"63074":1,"63075":0,"63076":0,"63077":0,"63078":0,"63079":0,"63080":1,"63081":0,"63082":0,"63083":1,"63084":1,"63085":1,"63086":0,"63087":0,"63088":0,"63089":0,"63090":1,"63091":0,"63092":0,"63093":0,"63094":0,"63095":0,"63096":0,"63097":0,"63098":0,"63099":0,"63100":0,"63101":0,"63102":0,"63103":0,"63104":1,"63105":0,"63106":0,"63107":1,"63108":1,"63109":0,"63110":0,"63111":1,"63112":0,"63113":1,"63114":0,"63115":1,"63116":1,"63117":0,"63118":0,"63119":0,"63120":1,"63121":0,"63122":0,"63123":0,"63124":0,"63125":0,"63126":1,"63127":0,"63128":0,"63129":0,"63130":0,"63131":0,"63132":0,"63133":0,"63134":1,"63135":0,"63136":0,"63137":0,"63138":0,"63139":0,"63140":0,"63141":0,"63142":0,"63143":1,"63144":1,"63145":0,"63146":0,"63147":1,"63148":0,"63149":0,"63150":0,"63151":1,"63152":0,"63153":0,"63154":0,"63155":0,"63156":1,"63157":1,"63158":0,"63159":0,"63160":0,"63161":0,"63162":1,"63163":0,"63164":0,"63165":0,"63166":1,"63167":0,"63168":0,"63169":0,"63170":0,"63171":0,"63172":0,"63173":0,"63174":1,"63175":1,"63176":0,"63177":0,"63178":0,"63179":0,"63180":0,"63181":1,"63182":0,"63183":0,"63184":0,"63185":1,"63186":1,"63187":0,"63188":0,"63189":1,"63190":0,"63191":1,"63192":0,"63193":0,"63194":0,"63195":0,"63196":1,"63197":0,"63198":1,"63199":1,"63200":0,"63201":1,"63202":0,"63203":0,"63204":0,"63205":0,"63206":0,"63207":0,"63208":0,"63209":0,"63210":0,"63211":0,"63212":1,"63213":0,"63214":1,"63215":0,"63216":1,"63217":0,"63218":0,"63219":1,"63220":0,"63221":0,"63222":1,"63223":0,"63224":1,"63225":1,"63226":0,"63227":0,"63228":0,"63229":0,"63230":1,"63231":0,"63232":0,"63233":1,"63234":0,"63235":0,"63236":1,"63237":1,"63238":0,"63239":0,"63240":0,"63241":1,"63242":0,"63243":0,"63244":0,"63245":0,"63246":0,"63247":1,"63248":0,"63249":1,"63250":0,"63251":0,"63252":1,"63253":1,"63254":1,"63255":0,"63256":0,"63257":0,"63258":0,"63259":1,"63260":1,"63261":1,"63262":0,"63263":0,"63264":0,"63265":0,"63266":1,"63267":0,"63268":1,"63269":0,"63270":0,"63271":1,"63272":0,"63273":0,"63274":0,"63275":0,"63276":0,"63277":0,"63278":0,"63279":0,"63280":0,"63281":1,"63282":0,"63283":0,"63284":0,"63285":1,"63286":0,"63287":0,"63288":0,"63289":1,"63290":0,"63291":0,"63292":0,"63293":0,"63294":0,"63295":0,"63296":0,"63297":1,"63298":0,"63299":0,"63300":0,"63301":0,"63302":1,"63303":1,"63304":1,"63305":0,"63306":0,"63307":0,"63308":0,"63309":0,"63310":0,"63311":1,"63312":0,"63313":1,"63314":0,"63315":0,"63316":0,"63317":0,"63318":0,"63319":0,"63320":1,"63321":0,"63322":0,"63323":0,"63324":0,"63325":1,"63326":0,"63327":0,"63328":0,"63329":0,"63330":0,"63331":1,"63332":0,"63333":0,"63334":0,"63335":0,"63336":1,"63337":0,"63338":0,"63339":0,"63340":1,"63341":0,"63342":0,"63343":1,"63344":1,"63345":1,"63346":0,"63347":1,"63348":0,"63349":1,"63350":0,"63351":0,"63352":0,"63353":0,"63354":0,"63355":1,"63356":1,"63357":1,"63358":0,"63359":1,"63360":1,"63361":0,"63362":0,"63363":0,"63364":0,"63365":0,"63366":1,"63367":1,"63368":0,"63369":0,"63370":0,"63371":1,"63372":0,"63373":0,"63374":0,"63375":0,"63376":0,"63377":0,"63378":1,"63379":0,"63380":0,"63381":0,"63382":1,"63383":0,"63384":0,"63385":1,"63386":0,"63387":1,"63388":0,"63389":0,"63390":0,"63391":0,"63392":0,"63393":0,"63394":0,"63395":0,"63396":0,"63397":0,"63398":0,"63399":0,"63400":1,"63401":0,"63402":0,"63403":0,"63404":0,"63405":1,"63406":0,"63407":0,"63408":0,"63409":0,"63410":0,"63411":0,"63412":0,"63413":1,"63414":0,"63415":1,"63416":1,"63417":0,"63418":0,"63419":0,"63420":1,"63421":1,"63422":0,"63423":0,"63424":0,"63425":0,"63426":0,"63427":0,"63428":0,"63429":0,"63430":1,"63431":0,"63432":0,"63433":0,"63434":1,"63435":0,"63436":0,"63437":0,"63438":0,"63439":1,"63440":0,"63441":1,"63442":0,"63443":0,"63444":0,"63445":0,"63446":0,"63447":0,"63448":0,"63449":1,"63450":0,"63451":0,"63452":1,"63453":0,"63454":0,"63455":0,"63456":0,"63457":0,"63458":0,"63459":1,"63460":0,"63461":0,"63462":1,"63463":0,"63464":1,"63465":0,"63466":1,"63467":0,"63468":0,"63469":1,"63470":0,"63471":0,"63472":0,"63473":0,"63474":1,"63475":0,"63476":0,"63477":0,"63478":0,"63479":0,"63480":0,"63481":0,"63482":0,"63483":1,"63484":1,"63485":0,"63486":0,"63487":0,"63488":1,"63489":1,"63490":0,"63491":0,"63492":1,"63493":0,"63494":1,"63495":0,"63496":0,"63497":0,"63498":0,"63499":0,"63500":1,"63501":0,"63502":0,"63503":1,"63504":1,"63505":1,"63506":0,"63507":0,"63508":0,"63509":0,"63510":0,"63511":1,"63512":1,"63513":0,"63514":0,"63515":0,"63516":1,"63517":0,"63518":0,"63519":0,"63520":1,"63521":0,"63522":0,"63523":1,"63524":0,"63525":1,"63526":1,"63527":0,"63528":0,"63529":0,"63530":0,"63531":0,"63532":0,"63533":1,"63534":1,"63535":0,"63536":0,"63537":0,"63538":0,"63539":1,"63540":0,"63541":1,"63542":0,"63543":0,"63544":1,"63545":1,"63546":0,"63547":1,"63548":0,"63549":0,"63550":0,"63551":0,"63552":0,"63553":1,"63554":0,"63555":1,"63556":0,"63557":0,"63558":0,"63559":1,"63560":0,"63561":0,"63562":0,"63563":1,"63564":1,"63565":1,"63566":0,"63567":0,"63568":1,"63569":0,"63570":1,"63571":0,"63572":1,"63573":0,"63574":0,"63575":0,"63576":0,"63577":0,"63578":0,"63579":0,"63580":0,"63581":0,"63582":1,"63583":0,"63584":0,"63585":0,"63586":0,"63587":1,"63588":1,"63589":0,"63590":0,"63591":0,"63592":1,"63593":1,"63594":0,"63595":0,"63596":0,"63597":0,"63598":0,"63599":0,"63600":0,"63601":0,"63602":0,"63603":1,"63604":0,"63605":0,"63606":1,"63607":0,"63608":1,"63609":0,"63610":0,"63611":1,"63612":0,"63613":0,"63614":0,"63615":1,"63616":1,"63617":0,"63618":0,"63619":0,"63620":0,"63621":0,"63622":0,"63623":0,"63624":1,"63625":0,"63626":0,"63627":0,"63628":1,"63629":0,"63630":0,"63631":0,"63632":0,"63633":0,"63634":0,"63635":0,"63636":0,"63637":0,"63638":0,"63639":0,"63640":0,"63641":0,"63642":0,"63643":1,"63644":0,"63645":0,"63646":0,"63647":1,"63648":0,"63649":0,"63650":1,"63651":0,"63652":0,"63653":0,"63654":0,"63655":0,"63656":1,"63657":1,"63658":0,"63659":1,"63660":0,"63661":0,"63662":0,"63663":0,"63664":0,"63665":0,"63666":1,"63667":0,"63668":0,"63669":0,"63670":0,"63671":1,"63672":1,"63673":0,"63674":0,"63675":0,"63676":1,"63677":0,"63678":0,"63679":0,"63680":0,"63681":0,"63682":1,"63683":0,"63684":1,"63685":1,"63686":0,"63687":0,"63688":1,"63689":0,"63690":0,"63691":0,"63692":0,"63693":0,"63694":0,"63695":0,"63696":0,"63697":0,"63698":0,"63699":0,"63700":0,"63701":0,"63702":0,"63703":0,"63704":0,"63705":0,"63706":0,"63707":0,"63708":0,"63709":0,"63710":0,"63711":0,"63712":0,"63713":0,"63714":0,"63715":0,"63716":1,"63717":0,"63718":1,"63719":0,"63720":0,"63721":1,"63722":0,"63723":0,"63724":0,"63725":0,"63726":1,"63727":1,"63728":0,"63729":1,"63730":0,"63731":1,"63732":0,"63733":0,"63734":0,"63735":0,"63736":0,"63737":1,"63738":0,"63739":0,"63740":0,"63741":1,"63742":0,"63743":1,"63744":0,"63745":0,"63746":1,"63747":0,"63748":1,"63749":0,"63750":1,"63751":1,"63752":0,"63753":0,"63754":1,"63755":0,"63756":0,"63757":0,"63758":1,"63759":0,"63760":1,"63761":0,"63762":0,"63763":0,"63764":1,"63765":0,"63766":0,"63767":0,"63768":0,"63769":1,"63770":1,"63771":1,"63772":0,"63773":1,"63774":0,"63775":0,"63776":0,"63777":1,"63778":0,"63779":0,"63780":0,"63781":0,"63782":0,"63783":0,"63784":0,"63785":0,"63786":0,"63787":0,"63788":0,"63789":0,"63790":0,"63791":0,"63792":0,"63793":0,"63794":0,"63795":1,"63796":0,"63797":0,"63798":0,"63799":1,"63800":0,"63801":1,"63802":0,"63803":0,"63804":0,"63805":0,"63806":0,"63807":0,"63808":0,"63809":0,"63810":0,"63811":1,"63812":0,"63813":1,"63814":1,"63815":0,"63816":1,"63817":0,"63818":0,"63819":0,"63820":0,"63821":0,"63822":0,"63823":1,"63824":0,"63825":0,"63826":1,"63827":0,"63828":0,"63829":0,"63830":1,"63831":0,"63832":1,"63833":0,"63834":0,"63835":0,"63836":0,"63837":0,"63838":0,"63839":0,"63840":0,"63841":0,"63842":0,"63843":0,"63844":0,"63845":0,"63846":0,"63847":1,"63848":0,"63849":1,"63850":1,"63851":0,"63852":1,"63853":1,"63854":0,"63855":1,"63856":0,"63857":1,"63858":0,"63859":0,"63860":0,"63861":1,"63862":1,"63863":0,"63864":0,"63865":1,"63866":0,"63867":0,"63868":0,"63869":0,"63870":1,"63871":1,"63872":0,"63873":1,"63874":0,"63875":1,"63876":0,"63877":0,"63878":0,"63879":1,"63880":0,"63881":0,"63882":0,"63883":0,"63884":1,"63885":0,"63886":0,"63887":0,"63888":0,"63889":1,"63890":0,"63891":1,"63892":1,"63893":0,"63894":0,"63895":1,"63896":0,"63897":0,"63898":0,"63899":0,"63900":0,"63901":0,"63902":1,"63903":1,"63904":0,"63905":1,"63906":0,"63907":0,"63908":0,"63909":0,"63910":0,"63911":0,"63912":1,"63913":0,"63914":1,"63915":0,"63916":1,"63917":1,"63918":0,"63919":0,"63920":1,"63921":1,"63922":1,"63923":0,"63924":0,"63925":1,"63926":0,"63927":1,"63928":0,"63929":0,"63930":0,"63931":0,"63932":1,"63933":0,"63934":0,"63935":0,"63936":0,"63937":1,"63938":1,"63939":0,"63940":0,"63941":0,"63942":0,"63943":1,"63944":1,"63945":0,"63946":0,"63947":0,"63948":0,"63949":0,"63950":0,"63951":0,"63952":0,"63953":0,"63954":0,"63955":1,"63956":0,"63957":0,"63958":0,"63959":1,"63960":0,"63961":0,"63962":1,"63963":0,"63964":0,"63965":1,"63966":0,"63967":1,"63968":0,"63969":0,"63970":0,"63971":1,"63972":0,"63973":0,"63974":0,"63975":0,"63976":0,"63977":0,"63978":1,"63979":0,"63980":1,"63981":0,"63982":0,"63983":0,"63984":1,"63985":0,"63986":0,"63987":0,"63988":0,"63989":0,"63990":1,"63991":0,"63992":0,"63993":1,"63994":0,"63995":0,"63996":0,"63997":1,"63998":0,"63999":0,"64000":0,"64001":0,"64002":0,"64003":0,"64004":0,"64005":0,"64006":0,"64007":0,"64008":1,"64009":0,"64010":0,"64011":0,"64012":0,"64013":1,"64014":0,"64015":0,"64016":0,"64017":0,"64018":1,"64019":0,"64020":0,"64021":1,"64022":0,"64023":0,"64024":0,"64025":0,"64026":1,"64027":0,"64028":0,"64029":0,"64030":1,"64031":1,"64032":0,"64033":0,"64034":0,"64035":0,"64036":0,"64037":0,"64038":1,"64039":0,"64040":0,"64041":0,"64042":0,"64043":0,"64044":1,"64045":0,"64046":0,"64047":0,"64048":0,"64049":0,"64050":0,"64051":0,"64052":0,"64053":0,"64054":0,"64055":1,"64056":0,"64057":0,"64058":0,"64059":0,"64060":0,"64061":0,"64062":0,"64063":1,"64064":1,"64065":0,"64066":0,"64067":0,"64068":0,"64069":0,"64070":0,"64071":0,"64072":1,"64073":0,"64074":0,"64075":0,"64076":0,"64077":1,"64078":0,"64079":0,"64080":0,"64081":1,"64082":0,"64083":0,"64084":0,"64085":0,"64086":0,"64087":1,"64088":0,"64089":0,"64090":0,"64091":0,"64092":0,"64093":1,"64094":0,"64095":1,"64096":1,"64097":0,"64098":1,"64099":0,"64100":0,"64101":0,"64102":0,"64103":1,"64104":0,"64105":0,"64106":0,"64107":0,"64108":0,"64109":0,"64110":0,"64111":0,"64112":1,"64113":0,"64114":0,"64115":0,"64116":0,"64117":1,"64118":0,"64119":0,"64120":0,"64121":1,"64122":0,"64123":0,"64124":0,"64125":1,"64126":1,"64127":0,"64128":0,"64129":0,"64130":0,"64131":0,"64132":0,"64133":0,"64134":0,"64135":0,"64136":0,"64137":0,"64138":0,"64139":0,"64140":1,"64141":0,"64142":1,"64143":0,"64144":1,"64145":0,"64146":1,"64147":0,"64148":0,"64149":0,"64150":1,"64151":0,"64152":0,"64153":0,"64154":0,"64155":0,"64156":0,"64157":0,"64158":0,"64159":0,"64160":1,"64161":0,"64162":0,"64163":0,"64164":0,"64165":0,"64166":0,"64167":0,"64168":1,"64169":0,"64170":0,"64171":0,"64172":0,"64173":1,"64174":0,"64175":0,"64176":1,"64177":1,"64178":0,"64179":0,"64180":0,"64181":0,"64182":0,"64183":0,"64184":0,"64185":0,"64186":0,"64187":0,"64188":1,"64189":0,"64190":0,"64191":1,"64192":0,"64193":0,"64194":0,"64195":0,"64196":0,"64197":0,"64198":0,"64199":1,"64200":0,"64201":0,"64202":0,"64203":0,"64204":0,"64205":1,"64206":0,"64207":0,"64208":0,"64209":0,"64210":0,"64211":0,"64212":0,"64213":0,"64214":0,"64215":0,"64216":0,"64217":0,"64218":0,"64219":0,"64220":0,"64221":0,"64222":1,"64223":1,"64224":0,"64225":0,"64226":0,"64227":0,"64228":1,"64229":0,"64230":0,"64231":1,"64232":1,"64233":0,"64234":0,"64235":0,"64236":0,"64237":0,"64238":1,"64239":0,"64240":0,"64241":0,"64242":0,"64243":0,"64244":0,"64245":0,"64246":1,"64247":0,"64248":1,"64249":1,"64250":0,"64251":0,"64252":0,"64253":0,"64254":0,"64255":0,"64256":0,"64257":1,"64258":1,"64259":0,"64260":0,"64261":0,"64262":0,"64263":0,"64264":0,"64265":1,"64266":0,"64267":0,"64268":0,"64269":1,"64270":0,"64271":0,"64272":0,"64273":0,"64274":0,"64275":0,"64276":0,"64277":1,"64278":0,"64279":0,"64280":1,"64281":0,"64282":0,"64283":0,"64284":0,"64285":1,"64286":0,"64287":0,"64288":1,"64289":0,"64290":0,"64291":0,"64292":1,"64293":1,"64294":0,"64295":0,"64296":1,"64297":0,"64298":0,"64299":0,"64300":0,"64301":0,"64302":1,"64303":1,"64304":0,"64305":0,"64306":0,"64307":0,"64308":0,"64309":0,"64310":1,"64311":1,"64312":1,"64313":0,"64314":0,"64315":1,"64316":0,"64317":0,"64318":0,"64319":0,"64320":0,"64321":1,"64322":0,"64323":1,"64324":1,"64325":0,"64326":0,"64327":0,"64328":0,"64329":0,"64330":0,"64331":0,"64332":1,"64333":0,"64334":0,"64335":0,"64336":0,"64337":0,"64338":0,"64339":1,"64340":0,"64341":1,"64342":0,"64343":1,"64344":0,"64345":0,"64346":1,"64347":0,"64348":0,"64349":0,"64350":1,"64351":1,"64352":0,"64353":0,"64354":1,"64355":1,"64356":1,"64357":0,"64358":1,"64359":1,"64360":0,"64361":0,"64362":0,"64363":1,"64364":0,"64365":0,"64366":0,"64367":1,"64368":0,"64369":0,"64370":0,"64371":0,"64372":0,"64373":0,"64374":1,"64375":1,"64376":0,"64377":1,"64378":0,"64379":0,"64380":1,"64381":0,"64382":1,"64383":0,"64384":0,"64385":1,"64386":0,"64387":0,"64388":0,"64389":0,"64390":0,"64391":0,"64392":0,"64393":1,"64394":0,"64395":0,"64396":0,"64397":0,"64398":0,"64399":0,"64400":1,"64401":1,"64402":0,"64403":0,"64404":0,"64405":0,"64406":1,"64407":0,"64408":0,"64409":0,"64410":0,"64411":1,"64412":0,"64413":0,"64414":0,"64415":1,"64416":0,"64417":0,"64418":0,"64419":0,"64420":1,"64421":0,"64422":0,"64423":0,"64424":0,"64425":1,"64426":0,"64427":0,"64428":0,"64429":0,"64430":1,"64431":0,"64432":0,"64433":0,"64434":0,"64435":0,"64436":0,"64437":1,"64438":0,"64439":0,"64440":0,"64441":1,"64442":0,"64443":0,"64444":0,"64445":0,"64446":1,"64447":0,"64448":1,"64449":0,"64450":0,"64451":0,"64452":0,"64453":0,"64454":0,"64455":0,"64456":0,"64457":0,"64458":0,"64459":0,"64460":0,"64461":0,"64462":0,"64463":0,"64464":0,"64465":0,"64466":0,"64467":0,"64468":0,"64469":1,"64470":0,"64471":0,"64472":0,"64473":0,"64474":0,"64475":1,"64476":0,"64477":0,"64478":0,"64479":0,"64480":0,"64481":0,"64482":1,"64483":1,"64484":0,"64485":0,"64486":0,"64487":0,"64488":1,"64489":0,"64490":0,"64491":1,"64492":0,"64493":0,"64494":0,"64495":1,"64496":0,"64497":1,"64498":0,"64499":0,"64500":0,"64501":0,"64502":1,"64503":1,"64504":0,"64505":1,"64506":0,"64507":0,"64508":0,"64509":0,"64510":0,"64511":0,"64512":0,"64513":0,"64514":1,"64515":0,"64516":0,"64517":0,"64518":0,"64519":0,"64520":0,"64521":1,"64522":1,"64523":0,"64524":0,"64525":0,"64526":1,"64527":1,"64528":0,"64529":0,"64530":0,"64531":0,"64532":1,"64533":1,"64534":1,"64535":1,"64536":0,"64537":0,"64538":0,"64539":0,"64540":0,"64541":0,"64542":0,"64543":0,"64544":0,"64545":0,"64546":0,"64547":0,"64548":0,"64549":0,"64550":0,"64551":0,"64552":0,"64553":0,"64554":1,"64555":0,"64556":0,"64557":0,"64558":0,"64559":0,"64560":0,"64561":1,"64562":0,"64563":0,"64564":0,"64565":0,"64566":0,"64567":0,"64568":0,"64569":1,"64570":0,"64571":0,"64572":1,"64573":0,"64574":0,"64575":0,"64576":0,"64577":0,"64578":0,"64579":1,"64580":1,"64581":0,"64582":0,"64583":0,"64584":1,"64585":1,"64586":0,"64587":0,"64588":0,"64589":0,"64590":0,"64591":0,"64592":0,"64593":0,"64594":0,"64595":1,"64596":0,"64597":0,"64598":1,"64599":1,"64600":0,"64601":0,"64602":1,"64603":0,"64604":0,"64605":0,"64606":0,"64607":0,"64608":1,"64609":0,"64610":0,"64611":0,"64612":0,"64613":1,"64614":0,"64615":0,"64616":0,"64617":0,"64618":0,"64619":1,"64620":1,"64621":0,"64622":0,"64623":0,"64624":0,"64625":0,"64626":0,"64627":0,"64628":0,"64629":0,"64630":0,"64631":1,"64632":0,"64633":0,"64634":0,"64635":1,"64636":0,"64637":1,"64638":0,"64639":1,"64640":0,"64641":0,"64642":0,"64643":0,"64644":0,"64645":1,"64646":0,"64647":0,"64648":0,"64649":0,"64650":1,"64651":0,"64652":0,"64653":1,"64654":0,"64655":1,"64656":0,"64657":0,"64658":0,"64659":0,"64660":1,"64661":1,"64662":0,"64663":0,"64664":0,"64665":0,"64666":0,"64667":0,"64668":0,"64669":0,"64670":0,"64671":0,"64672":0,"64673":0,"64674":1,"64675":0,"64676":1,"64677":0,"64678":1,"64679":0,"64680":1,"64681":0,"64682":0,"64683":0,"64684":1,"64685":1,"64686":0,"64687":0,"64688":0,"64689":0,"64690":0,"64691":0,"64692":1,"64693":0,"64694":0,"64695":1,"64696":0,"64697":0,"64698":0,"64699":0,"64700":0,"64701":1,"64702":0,"64703":0,"64704":1,"64705":1,"64706":0,"64707":0,"64708":0,"64709":0,"64710":1,"64711":0,"64712":0,"64713":0,"64714":1,"64715":0,"64716":0,"64717":0,"64718":0,"64719":0,"64720":0,"64721":0,"64722":0,"64723":1,"64724":0,"64725":0,"64726":0,"64727":0,"64728":0,"64729":0,"64730":0,"64731":0,"64732":0,"64733":0,"64734":0,"64735":1,"64736":0,"64737":1,"64738":0,"64739":1,"64740":0,"64741":0,"64742":0,"64743":0,"64744":0,"64745":1,"64746":0,"64747":0,"64748":0,"64749":0,"64750":0,"64751":0,"64752":0,"64753":0,"64754":0,"64755":0,"64756":0,"64757":1,"64758":0,"64759":0,"64760":0,"64761":1,"64762":0,"64763":0,"64764":1,"64765":0,"64766":1,"64767":1,"64768":0,"64769":0,"64770":0,"64771":1,"64772":0,"64773":0,"64774":0,"64775":0,"64776":0,"64777":0,"64778":1,"64779":0,"64780":0,"64781":0,"64782":0,"64783":1,"64784":0,"64785":0,"64786":0,"64787":1,"64788":0,"64789":0,"64790":0,"64791":1,"64792":0,"64793":0,"64794":0,"64795":0,"64796":0,"64797":0,"64798":0,"64799":0,"64800":0,"64801":1,"64802":0,"64803":0,"64804":1,"64805":1,"64806":0,"64807":1,"64808":0,"64809":0,"64810":0,"64811":0,"64812":0,"64813":0,"64814":0,"64815":0,"64816":1,"64817":0,"64818":0,"64819":0,"64820":0,"64821":0,"64822":0,"64823":1,"64824":0,"64825":0,"64826":0,"64827":0,"64828":1,"64829":0,"64830":0,"64831":0,"64832":1,"64833":0,"64834":0,"64835":0,"64836":0,"64837":0,"64838":0,"64839":0,"64840":0,"64841":0,"64842":0,"64843":1,"64844":0,"64845":0,"64846":0,"64847":0,"64848":1,"64849":0,"64850":0,"64851":1,"64852":1,"64853":0,"64854":1,"64855":0,"64856":1,"64857":0,"64858":0,"64859":0,"64860":1,"64861":1,"64862":0,"64863":1,"64864":0,"64865":0,"64866":1,"64867":0,"64868":0,"64869":0,"64870":1,"64871":0,"64872":0,"64873":0,"64874":1,"64875":1,"64876":0,"64877":0,"64878":0,"64879":0,"64880":0,"64881":0,"64882":1,"64883":1,"64884":0,"64885":0,"64886":0,"64887":1,"64888":0,"64889":0,"64890":0,"64891":1,"64892":0,"64893":1,"64894":0,"64895":0,"64896":1,"64897":0,"64898":0,"64899":0,"64900":0,"64901":1,"64902":0,"64903":0,"64904":0,"64905":0,"64906":0,"64907":0,"64908":1,"64909":0,"64910":1,"64911":0,"64912":1,"64913":1,"64914":1,"64915":0,"64916":0,"64917":0,"64918":0,"64919":1,"64920":0,"64921":1,"64922":0,"64923":0,"64924":0,"64925":0,"64926":0,"64927":0,"64928":0,"64929":0,"64930":1,"64931":0,"64932":1,"64933":0,"64934":0,"64935":1,"64936":0,"64937":1,"64938":0,"64939":0,"64940":0,"64941":0,"64942":0,"64943":1,"64944":1,"64945":0,"64946":0,"64947":1,"64948":0,"64949":0,"64950":0,"64951":0,"64952":0,"64953":1,"64954":1,"64955":1,"64956":1,"64957":0,"64958":0,"64959":0,"64960":0,"64961":0,"64962":0,"64963":0,"64964":0,"64965":0,"64966":1,"64967":0,"64968":0,"64969":1,"64970":1,"64971":1,"64972":1,"64973":0,"64974":1,"64975":0,"64976":0,"64977":0,"64978":1,"64979":0,"64980":0,"64981":0,"64982":1,"64983":1,"64984":0,"64985":0,"64986":0,"64987":0,"64988":0,"64989":0,"64990":0,"64991":0,"64992":0,"64993":0,"64994":0,"64995":1,"64996":0,"64997":0,"64998":0,"64999":0,"65000":0,"65001":0,"65002":0,"65003":0,"65004":0,"65005":0,"65006":0,"65007":1,"65008":0,"65009":0,"65010":0,"65011":1,"65012":0,"65013":0,"65014":0,"65015":0,"65016":0,"65017":0,"65018":0,"65019":1,"65020":1,"65021":0,"65022":0,"65023":0,"65024":0,"65025":1,"65026":0,"65027":1,"65028":0,"65029":0,"65030":0,"65031":1,"65032":1,"65033":0,"65034":0,"65035":0,"65036":1,"65037":0,"65038":0,"65039":0,"65040":0,"65041":0,"65042":0,"65043":1,"65044":1,"65045":0,"65046":1,"65047":0,"65048":0,"65049":0,"65050":0,"65051":1,"65052":1,"65053":0,"65054":0,"65055":0,"65056":0,"65057":0,"65058":0,"65059":0,"65060":0,"65061":0,"65062":0,"65063":0,"65064":1,"65065":1,"65066":0,"65067":0,"65068":0,"65069":0,"65070":0,"65071":0,"65072":0,"65073":0,"65074":0,"65075":0,"65076":0,"65077":0,"65078":0,"65079":0,"65080":0,"65081":0,"65082":1,"65083":0,"65084":1,"65085":0,"65086":0,"65087":1,"65088":1,"65089":0,"65090":1,"65091":0,"65092":0,"65093":0,"65094":0,"65095":1,"65096":0,"65097":0,"65098":0,"65099":0,"65100":0,"65101":0,"65102":0,"65103":0,"65104":1,"65105":0,"65106":1,"65107":0,"65108":0,"65109":0,"65110":0,"65111":0,"65112":0,"65113":0,"65114":1,"65115":0,"65116":0,"65117":1,"65118":0,"65119":1,"65120":0,"65121":1,"65122":0,"65123":0,"65124":0,"65125":0,"65126":1,"65127":0,"65128":0,"65129":0,"65130":1,"65131":0,"65132":0,"65133":0,"65134":1,"65135":0,"65136":0,"65137":0,"65138":1,"65139":0,"65140":0,"65141":0,"65142":0,"65143":0,"65144":1,"65145":0,"65146":0,"65147":0,"65148":1,"65149":0,"65150":0,"65151":0,"65152":0,"65153":0,"65154":1,"65155":0,"65156":0,"65157":0,"65158":0,"65159":1,"65160":0,"65161":0,"65162":0,"65163":0,"65164":0,"65165":0,"65166":0,"65167":0,"65168":0,"65169":0,"65170":0,"65171":0,"65172":0,"65173":0,"65174":0,"65175":0,"65176":0,"65177":1,"65178":1,"65179":0,"65180":1,"65181":0,"65182":0,"65183":0,"65184":0,"65185":1,"65186":0,"65187":0,"65188":1,"65189":0,"65190":0,"65191":0,"65192":0,"65193":0,"65194":0,"65195":0,"65196":0,"65197":0,"65198":0,"65199":0,"65200":0,"65201":1,"65202":1,"65203":0,"65204":0,"65205":1,"65206":0,"65207":1,"65208":0,"65209":0,"65210":0,"65211":0,"65212":0,"65213":0,"65214":0,"65215":0,"65216":1,"65217":0,"65218":0,"65219":0,"65220":0,"65221":1,"65222":1,"65223":0,"65224":0,"65225":0,"65226":0,"65227":0,"65228":0,"65229":0,"65230":0,"65231":1,"65232":0,"65233":1,"65234":0,"65235":0,"65236":0,"65237":0,"65238":0,"65239":0,"65240":0,"65241":0,"65242":0,"65243":0,"65244":0,"65245":0,"65246":0,"65247":0,"65248":0,"65249":0,"65250":0,"65251":1,"65252":0,"65253":0,"65254":1,"65255":1,"65256":0,"65257":0,"65258":0,"65259":0,"65260":1,"65261":0,"65262":0,"65263":1,"65264":0,"65265":0,"65266":1,"65267":0,"65268":1,"65269":0,"65270":0,"65271":0,"65272":0,"65273":1,"65274":1,"65275":0,"65276":1,"65277":1,"65278":0,"65279":0,"65280":1,"65281":0,"65282":0,"65283":0,"65284":0,"65285":0,"65286":0,"65287":0,"65288":1,"65289":0,"65290":0,"65291":1,"65292":0,"65293":0,"65294":0,"65295":0,"65296":1,"65297":0,"65298":0,"65299":0,"65300":0,"65301":0,"65302":0,"65303":1,"65304":0,"65305":1,"65306":0,"65307":1,"65308":1,"65309":0,"65310":0,"65311":0,"65312":0,"65313":1,"65314":0,"65315":0,"65316":0,"65317":0,"65318":0,"65319":0,"65320":0,"65321":0,"65322":1,"65323":0,"65324":0,"65325":0,"65326":0,"65327":0,"65328":0,"65329":1,"65330":0,"65331":1,"65332":1,"65333":0,"65334":1,"65335":1,"65336":1,"65337":1,"65338":0,"65339":0,"65340":0,"65341":0,"65342":1,"65343":0,"65344":0,"65345":0,"65346":1,"65347":0,"65348":0,"65349":1,"65350":0,"65351":0,"65352":0,"65353":0,"65354":0,"65355":0,"65356":1,"65357":0,"65358":1,"65359":0,"65360":0,"65361":1,"65362":0,"65363":0,"65364":0,"65365":1,"65366":0,"65367":1,"65368":0,"65369":0,"65370":0,"65371":0,"65372":0,"65373":0,"65374":0,"65375":0,"65376":0,"65377":0,"65378":0,"65379":0,"65380":1,"65381":0,"65382":0,"65383":1,"65384":0,"65385":0,"65386":0,"65387":0,"65388":0,"65389":0,"65390":1,"65391":1,"65392":1,"65393":0,"65394":1,"65395":0,"65396":1,"65397":0,"65398":0,"65399":0,"65400":0,"65401":0,"65402":0,"65403":0,"65404":1,"65405":1,"65406":1,"65407":1,"65408":0,"65409":0,"65410":1,"65411":1,"65412":0,"65413":0,"65414":0,"65415":0,"65416":0,"65417":0,"65418":0,"65419":0,"65420":0,"65421":0,"65422":0,"65423":0,"65424":0,"65425":1,"65426":0,"65427":1,"65428":0,"65429":0,"65430":0,"65431":0,"65432":0,"65433":0,"65434":0,"65435":0,"65436":0,"65437":0,"65438":1,"65439":1,"65440":1,"65441":0,"65442":0,"65443":0,"65444":0,"65445":0,"65446":1,"65447":0,"65448":0,"65449":0,"65450":0,"65451":0,"65452":0,"65453":0,"65454":0,"65455":0,"65456":0,"65457":1,"65458":0,"65459":1,"65460":0,"65461":0,"65462":0,"65463":1,"65464":0,"65465":0,"65466":0,"65467":0,"65468":1,"65469":0,"65470":0,"65471":0,"65472":1,"65473":0,"65474":1,"65475":1,"65476":0,"65477":0,"65478":0,"65479":0,"65480":1,"65481":0,"65482":0,"65483":1,"65484":1,"65485":0,"65486":0,"65487":0,"65488":1,"65489":0,"65490":0,"65491":0,"65492":1,"65493":0,"65494":1,"65495":0,"65496":0,"65497":0,"65498":0,"65499":0,"65500":0,"65501":0,"65502":0,"65503":0,"65504":1,"65505":1,"65506":0,"65507":0,"65508":1,"65509":0,"65510":0,"65511":0,"65512":0,"65513":0,"65514":1,"65515":0,"65516":0,"65517":1,"65518":0,"65519":0,"65520":0,"65521":0,"65522":1,"65523":0,"65524":1,"65525":0,"65526":1,"65527":0,"65528":0,"65529":0,"65530":0,"65531":1,"65532":0,"65533":0,"65534":1,"65535":0,"65536":0,"65537":1,"65538":0,"65539":0,"65540":0,"65541":0,"65542":1,"65543":0,"65544":0,"65545":1,"65546":1,"65547":0,"65548":0,"65549":1,"65550":0,"65551":1,"65552":0,"65553":0,"65554":1,"65555":1,"65556":0,"65557":1,"65558":0,"65559":0,"65560":0,"65561":0,"65562":0,"65563":1,"65564":0,"65565":0,"65566":0,"65567":0,"65568":0,"65569":0,"65570":0,"65571":1,"65572":0,"65573":1,"65574":0,"65575":0,"65576":0,"65577":0,"65578":0,"65579":0,"65580":0,"65581":1,"65582":0,"65583":0,"65584":0,"65585":1,"65586":0,"65587":1,"65588":1,"65589":0,"65590":0,"65591":0,"65592":1,"65593":1,"65594":0,"65595":1,"65596":0,"65597":0,"65598":0,"65599":0,"65600":0,"65601":0,"65602":1,"65603":0,"65604":1,"65605":0,"65606":0,"65607":0,"65608":0,"65609":1,"65610":0,"65611":0,"65612":0,"65613":0,"65614":0,"65615":0,"65616":0,"65617":0,"65618":0,"65619":1,"65620":0,"65621":0,"65622":0,"65623":0,"65624":0,"65625":1,"65626":0,"65627":0,"65628":0,"65629":1,"65630":0,"65631":0,"65632":0,"65633":0,"65634":0,"65635":0,"65636":0,"65637":0,"65638":0,"65639":0,"65640":1,"65641":0,"65642":0,"65643":0,"65644":0,"65645":0,"65646":0,"65647":0,"65648":0,"65649":1,"65650":0,"65651":0,"65652":0,"65653":0,"65654":0,"65655":0,"65656":0,"65657":0,"65658":0,"65659":1,"65660":0,"65661":0,"65662":0,"65663":0,"65664":0,"65665":0,"65666":0,"65667":0,"65668":0,"65669":1,"65670":1,"65671":1,"65672":0,"65673":0,"65674":0,"65675":1,"65676":0,"65677":0,"65678":0,"65679":0,"65680":1,"65681":0,"65682":0,"65683":0,"65684":1,"65685":0,"65686":0,"65687":0,"65688":0,"65689":0,"65690":0,"65691":1,"65692":0,"65693":0,"65694":0,"65695":1,"65696":0,"65697":1,"65698":1,"65699":1,"65700":0,"65701":0,"65702":0,"65703":0,"65704":0,"65705":0,"65706":0,"65707":1,"65708":0,"65709":0,"65710":1,"65711":1,"65712":1,"65713":0,"65714":0,"65715":0,"65716":0,"65717":1,"65718":0,"65719":0,"65720":0,"65721":0,"65722":1,"65723":0,"65724":0,"65725":0,"65726":0,"65727":0,"65728":0,"65729":0,"65730":0,"65731":1,"65732":0,"65733":0,"65734":0,"65735":0,"65736":0,"65737":1,"65738":1,"65739":0,"65740":0,"65741":0,"65742":1,"65743":0,"65744":0,"65745":1,"65746":1,"65747":0,"65748":0,"65749":0,"65750":0,"65751":0,"65752":0,"65753":0,"65754":0,"65755":0,"65756":1,"65757":0,"65758":0,"65759":0,"65760":0,"65761":1,"65762":1,"65763":0,"65764":0,"65765":0,"65766":0,"65767":1,"65768":0,"65769":0,"65770":1,"65771":0,"65772":0,"65773":0,"65774":0,"65775":0,"65776":0,"65777":0,"65778":1,"65779":1,"65780":0,"65781":0,"65782":1,"65783":0,"65784":0,"65785":0,"65786":0,"65787":0,"65788":1,"65789":0,"65790":0,"65791":0,"65792":0,"65793":0,"65794":0,"65795":0,"65796":0,"65797":0,"65798":0,"65799":1,"65800":1,"65801":1,"65802":1,"65803":0,"65804":0,"65805":0,"65806":0,"65807":1,"65808":0,"65809":0,"65810":0,"65811":1,"65812":1,"65813":1,"65814":1,"65815":0,"65816":0,"65817":0,"65818":1,"65819":0,"65820":0,"65821":0,"65822":1,"65823":0,"65824":0,"65825":0,"65826":1,"65827":0,"65828":1,"65829":1,"65830":0,"65831":0,"65832":0,"65833":0,"65834":1,"65835":0,"65836":1,"65837":0,"65838":0,"65839":1,"65840":0,"65841":0,"65842":0,"65843":0,"65844":0,"65845":0,"65846":0,"65847":0,"65848":0,"65849":0,"65850":0,"65851":0,"65852":0,"65853":1,"65854":1,"65855":1,"65856":1,"65857":1,"65858":0,"65859":0,"65860":1,"65861":1,"65862":0,"65863":1,"65864":1,"65865":0,"65866":0,"65867":1,"65868":0,"65869":0,"65870":0,"65871":0,"65872":0,"65873":0,"65874":1,"65875":0,"65876":0,"65877":0,"65878":0,"65879":0,"65880":0,"65881":0,"65882":0,"65883":0,"65884":0,"65885":0,"65886":1,"65887":1,"65888":0,"65889":0,"65890":0,"65891":0,"65892":0,"65893":1,"65894":0,"65895":0,"65896":0,"65897":0,"65898":0,"65899":0,"65900":0,"65901":0,"65902":0,"65903":1,"65904":0,"65905":0,"65906":0,"65907":0,"65908":0,"65909":0,"65910":0,"65911":0,"65912":1,"65913":0,"65914":0,"65915":0,"65916":0,"65917":1,"65918":1,"65919":0,"65920":0,"65921":0,"65922":1,"65923":0,"65924":0,"65925":0,"65926":0,"65927":0,"65928":0,"65929":0,"65930":1,"65931":1,"65932":0,"65933":0,"65934":0,"65935":0,"65936":0,"65937":1,"65938":0,"65939":0,"65940":1,"65941":0,"65942":0,"65943":1,"65944":0,"65945":0,"65946":0,"65947":0,"65948":0,"65949":0,"65950":1,"65951":0,"65952":0,"65953":0,"65954":0,"65955":0,"65956":0,"65957":0,"65958":0,"65959":0,"65960":0,"65961":0,"65962":0,"65963":0,"65964":1,"65965":0,"65966":0,"65967":1,"65968":0,"65969":0,"65970":1,"65971":1,"65972":0,"65973":0,"65974":0,"65975":1,"65976":1,"65977":0,"65978":1,"65979":0,"65980":0,"65981":1,"65982":1,"65983":1,"65984":0,"65985":0,"65986":0,"65987":0,"65988":0,"65989":1,"65990":0,"65991":0,"65992":0,"65993":0,"65994":0,"65995":0,"65996":0,"65997":0,"65998":0,"65999":0,"66000":1,"66001":0,"66002":0,"66003":1,"66004":1,"66005":0,"66006":0,"66007":0,"66008":0,"66009":0,"66010":1,"66011":0,"66012":1,"66013":0,"66014":0,"66015":0,"66016":1,"66017":1,"66018":0,"66019":1,"66020":0,"66021":0,"66022":0,"66023":0,"66024":0,"66025":1,"66026":0,"66027":0,"66028":1,"66029":0,"66030":0,"66031":0,"66032":0,"66033":0,"66034":0,"66035":1,"66036":1,"66037":0,"66038":1,"66039":1,"66040":0,"66041":0,"66042":0,"66043":0,"66044":0,"66045":1,"66046":0,"66047":1,"66048":0,"66049":0,"66050":0,"66051":0,"66052":0,"66053":0,"66054":0,"66055":0,"66056":0,"66057":0,"66058":0,"66059":0,"66060":0,"66061":1,"66062":0,"66063":0,"66064":1,"66065":0,"66066":0,"66067":0,"66068":0,"66069":0,"66070":0,"66071":0,"66072":0,"66073":0,"66074":0,"66075":0,"66076":1,"66077":1,"66078":0,"66079":1,"66080":0,"66081":1,"66082":0,"66083":0,"66084":0,"66085":1,"66086":0,"66087":0,"66088":0,"66089":0,"66090":0,"66091":1,"66092":0,"66093":1,"66094":0,"66095":1,"66096":0,"66097":0,"66098":0,"66099":1,"66100":0,"66101":0,"66102":0,"66103":0,"66104":1,"66105":0,"66106":0,"66107":0,"66108":1,"66109":1,"66110":0,"66111":0,"66112":0,"66113":0,"66114":0,"66115":0,"66116":1,"66117":0,"66118":0,"66119":0,"66120":1,"66121":0,"66122":0,"66123":0,"66124":1,"66125":1,"66126":1,"66127":1,"66128":0,"66129":0,"66130":0,"66131":0,"66132":0,"66133":1,"66134":1,"66135":0,"66136":0,"66137":1,"66138":0,"66139":1,"66140":1,"66141":0,"66142":1,"66143":1,"66144":0,"66145":1,"66146":0,"66147":0,"66148":0,"66149":0,"66150":0,"66151":1,"66152":0,"66153":0,"66154":0,"66155":0,"66156":1,"66157":1,"66158":0,"66159":1,"66160":1,"66161":0,"66162":0,"66163":1,"66164":0,"66165":0,"66166":1,"66167":1,"66168":0,"66169":1,"66170":1,"66171":1,"66172":0,"66173":1,"66174":1,"66175":0,"66176":1,"66177":0,"66178":0,"66179":1,"66180":0,"66181":0,"66182":1,"66183":1,"66184":0,"66185":0,"66186":0,"66187":0,"66188":1,"66189":0,"66190":0,"66191":0,"66192":0,"66193":1,"66194":0,"66195":0,"66196":0,"66197":1,"66198":0,"66199":1,"66200":1,"66201":0,"66202":0,"66203":0,"66204":0,"66205":1,"66206":0,"66207":1,"66208":0,"66209":0,"66210":0,"66211":0,"66212":0,"66213":0,"66214":1,"66215":0,"66216":0,"66217":1,"66218":0,"66219":0,"66220":1,"66221":0,"66222":1,"66223":0,"66224":0,"66225":0,"66226":0,"66227":0,"66228":0,"66229":0,"66230":0,"66231":0,"66232":0,"66233":0,"66234":0,"66235":0,"66236":0,"66237":1,"66238":1,"66239":1,"66240":1,"66241":0,"66242":0,"66243":1,"66244":0,"66245":1,"66246":0,"66247":1,"66248":0,"66249":1,"66250":0,"66251":0,"66252":0,"66253":0,"66254":0,"66255":0,"66256":0,"66257":0,"66258":1,"66259":0,"66260":1,"66261":0,"66262":0,"66263":0,"66264":0,"66265":1,"66266":0,"66267":0,"66268":0,"66269":0,"66270":0,"66271":0,"66272":0,"66273":0,"66274":0,"66275":0,"66276":0,"66277":0,"66278":1,"66279":1,"66280":0,"66281":0,"66282":0,"66283":0,"66284":0,"66285":0,"66286":0,"66287":0,"66288":0,"66289":0,"66290":0,"66291":1,"66292":0,"66293":1,"66294":1,"66295":1,"66296":1,"66297":0,"66298":0,"66299":0,"66300":0,"66301":0,"66302":0,"66303":1,"66304":0,"66305":1,"66306":0,"66307":0,"66308":1,"66309":0,"66310":1,"66311":0,"66312":0,"66313":0,"66314":1,"66315":1,"66316":0,"66317":0,"66318":0,"66319":1,"66320":1,"66321":0,"66322":0,"66323":0,"66324":0,"66325":0,"66326":0,"66327":0,"66328":0,"66329":0,"66330":0,"66331":0,"66332":1,"66333":0,"66334":0,"66335":0,"66336":0,"66337":0,"66338":0,"66339":1,"66340":0,"66341":0,"66342":0,"66343":0,"66344":1,"66345":0,"66346":0,"66347":1,"66348":0,"66349":1,"66350":0,"66351":0,"66352":1,"66353":1,"66354":0,"66355":0,"66356":0,"66357":0,"66358":0,"66359":0,"66360":0,"66361":0,"66362":0,"66363":0,"66364":0,"66365":0,"66366":0,"66367":0,"66368":0,"66369":0,"66370":0,"66371":0,"66372":0,"66373":1,"66374":1,"66375":0,"66376":0,"66377":1,"66378":0,"66379":1,"66380":0,"66381":0,"66382":0,"66383":1,"66384":1,"66385":0,"66386":0,"66387":0,"66388":0,"66389":0,"66390":1,"66391":0,"66392":0,"66393":1,"66394":0,"66395":1,"66396":0,"66397":0,"66398":0,"66399":0,"66400":0,"66401":0,"66402":0,"66403":0,"66404":0,"66405":0,"66406":0,"66407":1,"66408":0,"66409":0,"66410":1,"66411":1,"66412":1,"66413":1,"66414":0,"66415":0,"66416":1,"66417":0,"66418":1,"66419":0,"66420":0,"66421":0,"66422":1,"66423":0,"66424":0,"66425":0,"66426":1,"66427":0,"66428":1,"66429":0,"66430":0,"66431":0,"66432":0,"66433":1,"66434":0,"66435":0,"66436":0,"66437":1,"66438":0,"66439":0,"66440":0,"66441":1,"66442":0,"66443":0,"66444":0,"66445":0,"66446":0,"66447":0,"66448":1,"66449":0,"66450":0,"66451":0,"66452":0,"66453":1,"66454":0,"66455":1,"66456":0,"66457":1,"66458":0,"66459":0,"66460":1,"66461":0,"66462":0,"66463":0,"66464":0,"66465":1,"66466":1,"66467":1,"66468":0,"66469":0,"66470":1,"66471":0,"66472":1,"66473":0,"66474":0,"66475":0,"66476":0,"66477":0,"66478":0,"66479":0,"66480":0,"66481":0,"66482":0,"66483":1,"66484":1,"66485":0,"66486":0,"66487":0,"66488":0,"66489":0,"66490":0,"66491":0,"66492":0,"66493":1,"66494":0,"66495":0,"66496":0,"66497":0,"66498":0,"66499":0,"66500":1,"66501":0,"66502":1,"66503":1,"66504":0,"66505":0,"66506":1,"66507":0,"66508":1,"66509":0,"66510":1,"66511":0,"66512":1,"66513":0,"66514":1,"66515":1,"66516":1,"66517":0,"66518":0,"66519":0,"66520":0,"66521":0,"66522":0,"66523":0,"66524":0,"66525":0,"66526":0,"66527":0,"66528":1,"66529":0,"66530":1,"66531":0,"66532":0,"66533":1,"66534":0,"66535":0,"66536":1,"66537":1,"66538":1,"66539":0,"66540":0,"66541":0,"66542":0,"66543":0,"66544":0,"66545":1,"66546":0,"66547":0,"66548":0,"66549":0,"66550":0,"66551":0,"66552":0,"66553":1,"66554":0,"66555":1,"66556":0,"66557":0,"66558":0,"66559":0,"66560":0,"66561":0,"66562":1,"66563":0,"66564":0,"66565":0,"66566":0,"66567":0,"66568":0,"66569":0,"66570":0,"66571":0,"66572":1,"66573":1,"66574":0,"66575":1,"66576":0,"66577":0,"66578":1,"66579":0,"66580":0,"66581":0,"66582":1,"66583":0,"66584":0,"66585":1,"66586":0,"66587":1,"66588":0,"66589":0,"66590":1,"66591":1,"66592":0,"66593":0,"66594":0,"66595":1,"66596":0,"66597":0,"66598":0,"66599":0,"66600":0,"66601":0,"66602":0,"66603":1,"66604":0,"66605":0,"66606":0,"66607":0,"66608":0,"66609":1,"66610":0,"66611":0,"66612":0,"66613":0,"66614":0,"66615":0,"66616":1,"66617":1,"66618":0,"66619":1,"66620":0,"66621":1,"66622":0,"66623":0,"66624":0,"66625":0,"66626":0,"66627":0,"66628":1,"66629":0,"66630":0,"66631":1,"66632":0,"66633":1,"66634":0,"66635":0,"66636":0,"66637":0,"66638":0,"66639":0,"66640":0,"66641":0,"66642":0,"66643":1,"66644":1,"66645":1,"66646":1,"66647":0,"66648":1,"66649":1,"66650":1,"66651":0,"66652":0,"66653":0,"66654":1,"66655":0,"66656":1,"66657":0,"66658":0,"66659":0,"66660":1,"66661":1,"66662":0,"66663":0,"66664":0,"66665":1,"66666":0,"66667":0,"66668":0,"66669":1,"66670":0,"66671":0,"66672":1,"66673":0,"66674":0,"66675":0,"66676":0,"66677":0,"66678":1,"66679":0,"66680":0,"66681":1,"66682":0,"66683":0,"66684":0,"66685":0,"66686":0,"66687":1,"66688":1,"66689":1,"66690":0,"66691":0,"66692":0,"66693":0,"66694":1,"66695":1,"66696":0,"66697":0,"66698":0,"66699":0,"66700":0,"66701":1,"66702":0,"66703":0,"66704":0,"66705":0,"66706":1,"66707":1,"66708":0,"66709":0,"66710":0,"66711":0,"66712":0,"66713":0,"66714":0,"66715":0,"66716":0,"66717":0,"66718":0,"66719":0,"66720":0,"66721":0,"66722":0,"66723":0,"66724":0,"66725":0,"66726":0,"66727":1,"66728":0,"66729":1,"66730":0,"66731":0,"66732":0,"66733":0,"66734":0,"66735":0,"66736":0,"66737":0,"66738":0,"66739":1,"66740":1,"66741":0,"66742":0,"66743":0,"66744":0,"66745":0,"66746":1,"66747":0,"66748":0,"66749":1,"66750":0,"66751":0,"66752":0,"66753":0,"66754":0,"66755":0,"66756":0,"66757":0,"66758":0,"66759":0,"66760":0,"66761":0,"66762":1,"66763":0,"66764":0,"66765":0,"66766":0,"66767":0,"66768":0,"66769":0,"66770":0,"66771":0,"66772":1,"66773":1,"66774":0,"66775":0,"66776":0,"66777":0,"66778":0,"66779":0,"66780":1,"66781":0,"66782":0,"66783":0,"66784":0,"66785":0,"66786":0,"66787":0,"66788":0,"66789":0,"66790":0,"66791":0,"66792":0,"66793":1,"66794":0,"66795":0,"66796":1,"66797":1,"66798":0,"66799":0,"66800":0,"66801":1,"66802":1,"66803":0,"66804":0,"66805":0,"66806":1,"66807":0,"66808":0,"66809":0,"66810":0,"66811":0,"66812":0,"66813":0,"66814":0,"66815":0,"66816":0,"66817":0,"66818":1,"66819":0,"66820":0,"66821":1,"66822":1,"66823":0,"66824":0,"66825":0,"66826":0,"66827":0,"66828":0,"66829":0,"66830":0,"66831":0,"66832":0,"66833":1,"66834":0,"66835":0,"66836":1,"66837":0,"66838":0,"66839":0,"66840":0,"66841":0,"66842":0,"66843":0,"66844":0,"66845":0,"66846":0,"66847":0,"66848":0,"66849":1,"66850":0,"66851":1,"66852":1,"66853":0,"66854":0,"66855":0,"66856":0,"66857":0,"66858":0,"66859":0,"66860":1,"66861":1,"66862":1,"66863":1,"66864":0,"66865":1,"66866":1,"66867":0,"66868":0,"66869":0,"66870":0,"66871":0,"66872":0,"66873":0,"66874":1,"66875":0,"66876":0,"66877":0,"66878":0,"66879":0,"66880":0,"66881":0,"66882":1,"66883":0,"66884":0,"66885":1,"66886":1,"66887":0,"66888":0,"66889":0,"66890":1,"66891":0,"66892":0,"66893":1,"66894":0,"66895":0,"66896":1,"66897":1,"66898":0,"66899":0,"66900":0,"66901":1,"66902":0,"66903":1,"66904":0,"66905":0,"66906":0,"66907":1,"66908":0,"66909":1,"66910":0,"66911":0,"66912":0,"66913":0,"66914":0,"66915":1,"66916":0,"66917":0,"66918":1,"66919":0,"66920":0,"66921":0,"66922":0,"66923":0,"66924":1,"66925":1,"66926":0,"66927":1,"66928":0,"66929":0,"66930":0,"66931":0,"66932":1,"66933":0,"66934":0,"66935":0,"66936":0,"66937":1,"66938":0,"66939":0,"66940":1,"66941":1,"66942":0,"66943":0,"66944":0,"66945":0,"66946":0,"66947":1,"66948":0,"66949":0,"66950":0,"66951":0,"66952":0,"66953":0,"66954":0,"66955":1,"66956":0,"66957":0,"66958":0,"66959":0,"66960":0,"66961":0,"66962":0,"66963":0,"66964":0,"66965":0,"66966":0,"66967":0,"66968":0,"66969":0,"66970":0,"66971":0,"66972":1,"66973":1,"66974":0,"66975":0,"66976":0,"66977":0,"66978":0,"66979":1,"66980":0,"66981":0,"66982":1,"66983":0,"66984":1,"66985":0,"66986":0,"66987":0,"66988":1,"66989":1,"66990":0,"66991":0,"66992":0,"66993":0,"66994":0,"66995":1,"66996":0,"66997":0,"66998":0,"66999":0,"67000":1,"67001":0,"67002":0,"67003":0,"67004":1,"67005":0,"67006":0,"67007":1,"67008":0,"67009":0,"67010":0,"67011":0,"67012":0,"67013":0,"67014":0,"67015":1,"67016":0,"67017":0,"67018":0,"67019":0,"67020":0,"67021":0,"67022":1,"67023":0,"67024":1,"67025":0,"67026":1,"67027":1,"67028":0,"67029":1,"67030":1,"67031":0,"67032":0,"67033":0,"67034":0,"67035":1,"67036":0,"67037":0,"67038":0,"67039":0,"67040":1,"67041":0,"67042":1,"67043":0,"67044":0,"67045":0,"67046":1,"67047":1,"67048":0,"67049":0,"67050":1,"67051":0,"67052":0,"67053":0,"67054":0,"67055":0,"67056":0,"67057":1,"67058":0,"67059":0,"67060":0,"67061":1,"67062":0,"67063":0,"67064":0,"67065":0,"67066":0,"67067":0,"67068":0,"67069":0,"67070":0,"67071":0,"67072":1,"67073":0,"67074":0,"67075":0,"67076":0,"67077":0,"67078":0,"67079":0,"67080":1,"67081":1,"67082":0,"67083":0,"67084":0,"67085":0,"67086":0,"67087":1,"67088":0,"67089":1,"67090":1,"67091":0,"67092":0,"67093":1,"67094":0,"67095":1,"67096":1,"67097":0,"67098":0,"67099":0,"67100":0,"67101":0,"67102":0,"67103":0,"67104":0,"67105":1,"67106":0,"67107":0,"67108":1,"67109":0,"67110":0,"67111":1,"67112":0,"67113":0,"67114":0,"67115":0,"67116":0,"67117":0,"67118":0,"67119":0,"67120":0,"67121":1,"67122":1,"67123":0,"67124":1,"67125":0,"67126":0,"67127":1,"67128":0,"67129":1,"67130":1,"67131":0,"67132":0,"67133":0,"67134":1,"67135":1,"67136":0,"67137":0,"67138":1,"67139":1,"67140":1,"67141":0,"67142":0,"67143":1,"67144":0,"67145":0,"67146":0,"67147":0,"67148":0,"67149":0,"67150":1,"67151":0,"67152":0,"67153":1,"67154":1,"67155":0,"67156":0,"67157":0,"67158":0,"67159":1,"67160":1,"67161":0,"67162":0,"67163":0,"67164":0,"67165":1,"67166":1,"67167":1,"67168":0,"67169":1,"67170":1,"67171":0,"67172":1,"67173":0,"67174":0,"67175":0,"67176":1,"67177":0,"67178":1,"67179":0,"67180":0,"67181":0,"67182":1,"67183":0,"67184":0,"67185":0,"67186":0,"67187":0,"67188":1,"67189":0,"67190":0,"67191":1,"67192":1,"67193":0,"67194":0,"67195":0,"67196":0,"67197":1,"67198":0,"67199":0,"67200":1,"67201":1,"67202":0,"67203":0,"67204":1,"67205":0,"67206":0,"67207":0,"67208":0,"67209":0,"67210":0,"67211":0,"67212":0,"67213":0,"67214":1,"67215":0,"67216":1,"67217":0,"67218":0,"67219":0,"67220":0,"67221":0,"67222":0,"67223":0,"67224":0,"67225":0,"67226":0,"67227":0,"67228":0,"67229":0,"67230":0,"67231":0,"67232":0,"67233":0,"67234":1,"67235":0,"67236":1,"67237":0,"67238":1,"67239":0,"67240":0,"67241":0,"67242":0,"67243":0,"67244":0,"67245":0,"67246":0,"67247":0,"67248":1,"67249":0,"67250":0,"67251":0,"67252":0,"67253":1,"67254":0,"67255":0,"67256":1,"67257":1,"67258":0,"67259":0,"67260":0,"67261":0,"67262":0,"67263":0,"67264":1,"67265":0,"67266":0,"67267":0,"67268":0,"67269":1,"67270":0,"67271":1,"67272":0,"67273":0,"67274":0,"67275":0,"67276":1,"67277":0,"67278":0,"67279":0,"67280":0,"67281":0,"67282":0,"67283":1,"67284":0,"67285":0,"67286":0,"67287":0,"67288":1,"67289":0,"67290":0,"67291":0,"67292":0,"67293":0,"67294":0,"67295":0,"67296":0,"67297":0,"67298":0,"67299":0,"67300":0,"67301":0,"67302":0,"67303":0,"67304":0,"67305":0,"67306":0,"67307":0,"67308":0,"67309":0,"67310":1,"67311":0,"67312":0,"67313":0,"67314":0,"67315":1,"67316":0,"67317":1,"67318":0,"67319":0,"67320":0,"67321":0,"67322":0,"67323":1,"67324":0,"67325":0,"67326":0,"67327":0,"67328":0,"67329":0,"67330":1,"67331":0,"67332":0,"67333":1,"67334":0,"67335":0,"67336":0,"67337":1,"67338":0,"67339":0,"67340":0,"67341":1,"67342":0,"67343":0,"67344":1,"67345":1,"67346":0,"67347":0,"67348":1,"67349":0,"67350":0,"67351":0,"67352":0,"67353":1,"67354":0,"67355":0,"67356":1,"67357":0,"67358":0,"67359":0,"67360":0,"67361":0,"67362":1,"67363":0,"67364":1,"67365":1,"67366":0,"67367":1,"67368":0,"67369":1,"67370":1,"67371":0,"67372":0,"67373":0,"67374":0,"67375":0,"67376":0,"67377":0,"67378":0,"67379":0,"67380":0,"67381":1,"67382":1,"67383":0,"67384":0,"67385":0,"67386":0,"67387":0,"67388":0,"67389":0,"67390":0,"67391":0,"67392":1,"67393":0,"67394":0,"67395":0,"67396":1,"67397":0,"67398":0,"67399":1,"67400":0,"67401":0,"67402":0,"67403":1,"67404":1,"67405":0,"67406":1,"67407":0,"67408":0,"67409":1,"67410":1,"67411":0,"67412":0,"67413":0,"67414":0,"67415":0,"67416":0,"67417":0,"67418":0,"67419":0,"67420":0,"67421":0,"67422":1,"67423":0,"67424":0,"67425":0,"67426":0,"67427":0,"67428":0,"67429":0,"67430":1,"67431":0,"67432":1,"67433":1,"67434":0,"67435":0,"67436":1,"67437":1,"67438":1,"67439":0,"67440":0,"67441":0,"67442":1,"67443":1,"67444":1,"67445":0,"67446":1,"67447":0,"67448":0,"67449":0,"67450":0,"67451":0,"67452":0,"67453":0,"67454":0,"67455":1,"67456":1,"67457":1,"67458":0,"67459":0,"67460":0,"67461":0,"67462":0,"67463":0,"67464":1,"67465":1,"67466":0,"67467":0,"67468":1,"67469":0,"67470":0,"67471":0,"67472":0,"67473":0,"67474":1,"67475":1,"67476":0,"67477":1,"67478":1,"67479":1,"67480":1,"67481":0,"67482":0,"67483":0,"67484":0,"67485":1,"67486":0,"67487":0,"67488":1,"67489":1,"67490":0,"67491":0,"67492":0,"67493":0,"67494":1,"67495":0,"67496":0,"67497":0,"67498":0,"67499":0,"67500":0,"67501":0,"67502":0,"67503":0,"67504":0,"67505":1,"67506":0,"67507":0,"67508":0,"67509":0,"67510":0,"67511":0,"67512":0,"67513":0,"67514":0,"67515":0,"67516":0,"67517":0,"67518":0,"67519":0,"67520":0,"67521":0,"67522":1,"67523":0,"67524":1,"67525":0,"67526":0,"67527":1,"67528":0,"67529":1,"67530":0,"67531":0,"67532":0,"67533":1,"67534":1,"67535":0,"67536":0,"67537":1,"67538":0,"67539":0,"67540":1,"67541":1,"67542":0,"67543":0,"67544":0,"67545":0,"67546":1,"67547":1,"67548":0,"67549":0,"67550":0,"67551":0,"67552":0,"67553":0,"67554":0,"67555":0,"67556":0,"67557":1,"67558":0,"67559":0,"67560":0,"67561":0,"67562":0,"67563":1,"67564":0,"67565":0,"67566":0,"67567":0,"67568":1,"67569":0,"67570":0,"67571":0,"67572":0,"67573":0,"67574":0,"67575":0,"67576":0,"67577":0,"67578":0,"67579":1,"67580":1,"67581":0,"67582":1,"67583":1,"67584":0,"67585":1,"67586":0,"67587":1,"67588":0,"67589":1,"67590":0,"67591":0,"67592":1,"67593":1,"67594":0,"67595":0,"67596":0,"67597":0,"67598":0,"67599":0,"67600":0,"67601":0,"67602":0,"67603":0,"67604":0,"67605":0,"67606":0,"67607":0,"67608":0,"67609":0,"67610":0,"67611":0,"67612":0,"67613":1,"67614":0,"67615":0,"67616":0,"67617":0,"67618":0,"67619":0,"67620":0,"67621":0,"67622":1,"67623":1,"67624":0,"67625":1,"67626":0,"67627":0,"67628":0,"67629":0,"67630":0,"67631":1,"67632":0,"67633":0,"67634":1,"67635":0,"67636":0,"67637":0,"67638":0,"67639":0,"67640":0,"67641":0,"67642":0,"67643":0,"67644":0,"67645":0,"67646":1,"67647":0,"67648":0,"67649":0,"67650":0,"67651":1,"67652":0,"67653":0,"67654":0,"67655":1,"67656":0,"67657":1,"67658":0,"67659":0,"67660":0,"67661":0,"67662":1,"67663":0,"67664":0,"67665":1,"67666":0,"67667":0,"67668":0,"67669":1,"67670":0,"67671":0,"67672":0,"67673":0,"67674":1,"67675":0,"67676":0,"67677":0,"67678":0,"67679":0,"67680":0,"67681":1,"67682":0,"67683":0,"67684":0,"67685":0,"67686":0,"67687":0,"67688":0,"67689":0,"67690":0,"67691":0,"67692":1,"67693":0,"67694":1,"67695":1,"67696":1,"67697":0,"67698":0,"67699":1,"67700":0,"67701":0,"67702":1,"67703":1,"67704":0,"67705":0,"67706":1,"67707":0,"67708":0,"67709":1,"67710":1,"67711":0,"67712":0,"67713":0,"67714":0,"67715":0,"67716":0,"67717":0,"67718":0,"67719":1,"67720":1,"67721":1,"67722":0,"67723":0,"67724":0,"67725":1,"67726":0,"67727":1,"67728":0,"67729":1,"67730":1,"67731":0,"67732":0,"67733":1,"67734":0,"67735":0,"67736":0,"67737":1,"67738":0,"67739":0,"67740":0,"67741":0,"67742":0,"67743":0,"67744":1,"67745":0,"67746":0,"67747":0,"67748":0,"67749":0,"67750":0,"67751":0,"67752":0,"67753":0,"67754":1,"67755":0,"67756":1,"67757":0,"67758":0,"67759":1,"67760":0,"67761":0,"67762":0,"67763":0,"67764":1,"67765":0,"67766":0,"67767":0,"67768":0,"67769":0,"67770":0,"67771":1,"67772":0,"67773":0,"67774":0,"67775":1,"67776":0,"67777":0,"67778":0,"67779":0,"67780":0,"67781":0,"67782":0,"67783":1,"67784":1,"67785":0,"67786":0,"67787":1,"67788":1,"67789":0,"67790":0,"67791":0,"67792":0,"67793":0,"67794":0,"67795":0,"67796":0,"67797":0,"67798":0,"67799":0,"67800":1,"67801":1,"67802":0,"67803":0,"67804":1,"67805":0,"67806":1,"67807":0,"67808":1,"67809":0,"67810":0,"67811":0,"67812":0,"67813":0,"67814":0,"67815":0,"67816":0,"67817":0,"67818":1,"67819":0,"67820":1,"67821":1,"67822":0,"67823":0,"67824":0,"67825":1,"67826":1,"67827":0,"67828":1,"67829":0,"67830":1,"67831":1,"67832":0,"67833":0,"67834":0,"67835":1,"67836":0,"67837":0,"67838":0,"67839":0,"67840":0,"67841":0,"67842":0,"67843":1,"67844":0,"67845":0,"67846":1,"67847":0,"67848":0,"67849":0,"67850":0,"67851":0,"67852":0,"67853":0,"67854":1,"67855":1,"67856":0,"67857":0,"67858":1,"67859":0,"67860":0,"67861":0,"67862":0,"67863":1,"67864":1,"67865":0,"67866":1,"67867":0,"67868":0,"67869":1,"67870":0,"67871":1,"67872":0,"67873":0,"67874":0,"67875":1,"67876":0,"67877":0,"67878":1,"67879":1,"67880":0,"67881":1,"67882":0,"67883":0,"67884":0,"67885":1,"67886":0,"67887":1,"67888":1,"67889":1,"67890":0,"67891":0,"67892":0,"67893":0,"67894":0,"67895":1,"67896":1,"67897":0,"67898":0,"67899":1,"67900":0,"67901":0,"67902":0,"67903":0,"67904":0,"67905":0,"67906":0,"67907":0,"67908":0,"67909":0,"67910":0,"67911":0,"67912":0,"67913":0,"67914":1,"67915":1,"67916":1,"67917":0,"67918":1,"67919":0,"67920":1,"67921":0,"67922":0,"67923":0,"67924":0,"67925":0,"67926":1,"67927":0,"67928":0,"67929":0,"67930":0,"67931":0,"67932":0,"67933":0,"67934":1,"67935":0,"67936":0,"67937":1,"67938":0,"67939":0,"67940":1,"67941":0,"67942":0,"67943":0,"67944":0,"67945":0,"67946":0,"67947":0,"67948":0,"67949":0,"67950":0,"67951":1,"67952":1,"67953":0,"67954":0,"67955":0,"67956":0,"67957":0,"67958":0,"67959":0,"67960":0,"67961":0,"67962":0,"67963":0,"67964":0,"67965":0,"67966":1,"67967":0,"67968":0,"67969":1,"67970":0,"67971":0,"67972":0,"67973":0,"67974":0,"67975":0,"67976":0,"67977":0,"67978":1,"67979":0,"67980":0,"67981":1,"67982":0,"67983":1,"67984":0,"67985":1,"67986":1,"67987":0,"67988":0,"67989":0,"67990":0,"67991":0,"67992":0,"67993":0,"67994":0,"67995":1,"67996":1,"67997":0,"67998":0,"67999":0,"68000":1,"68001":0,"68002":0,"68003":0,"68004":0,"68005":0,"68006":0,"68007":1,"68008":0,"68009":1,"68010":0,"68011":0,"68012":0,"68013":0,"68014":1,"68015":0,"68016":0,"68017":0,"68018":1,"68019":0,"68020":0,"68021":1,"68022":0,"68023":0,"68024":0,"68025":1,"68026":0,"68027":0,"68028":0,"68029":0,"68030":0,"68031":0,"68032":1,"68033":1,"68034":1,"68035":0,"68036":1,"68037":0,"68038":0,"68039":0,"68040":0,"68041":0,"68042":1,"68043":0,"68044":0,"68045":0,"68046":0,"68047":0,"68048":0,"68049":0,"68050":0,"68051":0,"68052":0,"68053":0,"68054":1,"68055":0,"68056":1,"68057":0,"68058":0,"68059":0,"68060":1,"68061":0,"68062":0,"68063":0,"68064":0,"68065":0,"68066":0,"68067":0,"68068":0,"68069":0,"68070":0,"68071":0,"68072":0,"68073":0,"68074":1,"68075":0,"68076":0,"68077":0,"68078":0,"68079":0,"68080":0,"68081":1,"68082":0,"68083":0,"68084":0,"68085":0,"68086":0,"68087":0,"68088":0,"68089":0,"68090":0,"68091":1,"68092":0,"68093":0,"68094":0,"68095":1,"68096":0,"68097":0,"68098":1,"68099":0,"68100":0,"68101":1,"68102":0,"68103":0,"68104":0,"68105":0,"68106":0,"68107":1,"68108":0,"68109":0,"68110":1,"68111":1,"68112":1,"68113":0,"68114":0,"68115":0,"68116":0,"68117":0,"68118":0,"68119":0,"68120":1,"68121":1,"68122":0,"68123":0,"68124":0,"68125":0,"68126":0,"68127":0,"68128":0,"68129":0,"68130":0,"68131":1,"68132":0,"68133":0,"68134":0,"68135":0,"68136":0,"68137":0,"68138":0,"68139":0,"68140":1,"68141":0,"68142":0,"68143":1,"68144":0,"68145":0,"68146":0,"68147":0,"68148":0,"68149":0,"68150":0,"68151":0,"68152":0,"68153":0,"68154":1,"68155":0,"68156":0,"68157":1,"68158":0,"68159":1,"68160":1,"68161":0,"68162":0,"68163":0,"68164":1,"68165":0,"68166":1,"68167":0,"68168":0,"68169":0,"68170":1,"68171":0,"68172":0,"68173":0,"68174":0,"68175":0,"68176":0,"68177":0,"68178":0,"68179":0,"68180":0,"68181":0,"68182":0,"68183":1,"68184":0,"68185":1,"68186":0,"68187":0,"68188":0,"68189":1,"68190":0,"68191":0,"68192":0,"68193":1,"68194":0,"68195":0,"68196":0,"68197":1,"68198":0,"68199":0,"68200":0,"68201":0,"68202":0,"68203":1,"68204":1,"68205":1,"68206":0,"68207":1,"68208":0,"68209":0,"68210":0,"68211":1,"68212":0,"68213":0,"68214":0,"68215":0,"68216":0,"68217":1,"68218":0,"68219":0,"68220":1,"68221":0,"68222":0,"68223":0,"68224":0,"68225":0,"68226":0,"68227":0,"68228":0,"68229":0,"68230":0,"68231":1,"68232":0,"68233":0,"68234":0,"68235":0,"68236":0,"68237":0,"68238":0,"68239":0,"68240":1,"68241":0,"68242":0,"68243":0,"68244":0,"68245":0,"68246":0,"68247":0,"68248":0,"68249":0,"68250":0,"68251":0,"68252":0,"68253":1,"68254":0,"68255":0,"68256":0,"68257":1,"68258":1,"68259":0,"68260":1,"68261":0,"68262":1,"68263":0,"68264":0,"68265":0,"68266":0,"68267":0,"68268":0,"68269":1,"68270":0,"68271":0,"68272":0,"68273":0,"68274":0,"68275":0,"68276":1,"68277":0,"68278":0,"68279":0,"68280":0,"68281":1,"68282":0,"68283":0,"68284":1,"68285":0,"68286":0,"68287":0,"68288":0,"68289":0,"68290":0,"68291":0,"68292":0,"68293":1,"68294":0,"68295":0,"68296":0,"68297":1,"68298":0,"68299":1,"68300":0,"68301":0,"68302":1,"68303":1,"68304":1,"68305":0,"68306":0,"68307":0,"68308":0,"68309":0,"68310":0,"68311":0,"68312":0,"68313":0,"68314":0,"68315":0,"68316":0,"68317":0,"68318":0,"68319":0,"68320":0,"68321":0,"68322":0,"68323":0,"68324":1,"68325":0,"68326":0,"68327":0,"68328":0,"68329":0,"68330":0,"68331":1,"68332":1,"68333":1,"68334":0,"68335":0,"68336":0,"68337":0,"68338":0,"68339":0,"68340":0,"68341":1,"68342":0,"68343":0,"68344":0,"68345":0,"68346":0,"68347":0,"68348":1,"68349":0,"68350":0,"68351":1,"68352":1,"68353":0,"68354":1,"68355":0,"68356":0,"68357":0,"68358":1,"68359":0,"68360":1,"68361":0,"68362":0,"68363":0,"68364":0,"68365":0,"68366":0,"68367":1,"68368":0,"68369":0,"68370":0,"68371":1,"68372":1,"68373":0,"68374":0,"68375":0,"68376":0,"68377":0,"68378":0,"68379":1,"68380":0,"68381":1,"68382":0,"68383":0,"68384":1,"68385":0,"68386":1,"68387":1,"68388":1,"68389":1,"68390":1,"68391":1,"68392":0,"68393":1,"68394":0,"68395":0,"68396":0,"68397":0,"68398":0,"68399":0,"68400":1,"68401":0,"68402":1,"68403":0,"68404":0,"68405":0,"68406":0,"68407":0,"68408":0,"68409":0,"68410":1,"68411":0,"68412":0,"68413":0,"68414":1,"68415":0,"68416":0,"68417":1,"68418":0,"68419":0,"68420":0,"68421":1,"68422":1,"68423":0,"68424":0,"68425":0,"68426":1,"68427":0,"68428":1,"68429":0,"68430":0,"68431":0,"68432":1,"68433":1,"68434":0,"68435":1,"68436":0,"68437":0,"68438":0,"68439":0,"68440":1,"68441":0,"68442":0,"68443":1,"68444":1,"68445":0,"68446":0,"68447":0,"68448":0,"68449":0,"68450":0,"68451":1,"68452":0,"68453":0,"68454":0,"68455":0,"68456":1,"68457":0,"68458":0,"68459":0,"68460":0,"68461":0,"68462":0,"68463":0,"68464":0,"68465":0,"68466":1,"68467":1,"68468":0,"68469":1,"68470":1,"68471":0,"68472":1,"68473":1,"68474":0,"68475":1,"68476":0,"68477":0,"68478":0,"68479":0,"68480":0,"68481":0,"68482":1,"68483":0,"68484":0,"68485":1,"68486":0,"68487":0,"68488":0,"68489":0,"68490":0,"68491":1,"68492":0,"68493":0,"68494":0,"68495":1,"68496":0,"68497":1,"68498":0,"68499":0,"68500":0,"68501":0,"68502":0,"68503":0,"68504":1,"68505":0,"68506":0,"68507":0,"68508":1,"68509":0,"68510":0,"68511":0,"68512":0,"68513":0,"68514":0,"68515":0,"68516":1,"68517":0,"68518":1,"68519":0,"68520":0,"68521":0,"68522":0,"68523":1,"68524":0,"68525":0,"68526":0,"68527":1,"68528":1,"68529":0,"68530":0,"68531":0,"68532":0,"68533":0,"68534":0,"68535":1,"68536":0,"68537":0,"68538":0,"68539":0,"68540":0,"68541":1,"68542":1,"68543":0,"68544":0,"68545":0,"68546":0,"68547":0,"68548":0,"68549":0,"68550":0,"68551":0,"68552":1,"68553":1,"68554":1,"68555":0,"68556":1,"68557":0,"68558":0,"68559":0,"68560":0,"68561":1,"68562":0,"68563":0,"68564":0,"68565":0,"68566":1,"68567":0,"68568":0,"68569":1,"68570":0,"68571":0,"68572":0,"68573":0,"68574":0,"68575":0,"68576":0,"68577":0,"68578":0,"68579":1,"68580":1,"68581":0,"68582":1,"68583":0,"68584":1,"68585":0,"68586":0,"68587":0,"68588":0,"68589":0,"68590":0,"68591":0,"68592":1,"68593":0,"68594":0,"68595":1,"68596":0,"68597":0,"68598":0,"68599":0,"68600":0,"68601":1,"68602":0,"68603":0,"68604":1,"68605":0,"68606":0,"68607":0,"68608":0,"68609":0,"68610":0,"68611":1,"68612":0,"68613":0,"68614":0,"68615":0,"68616":1,"68617":0,"68618":0,"68619":0,"68620":1,"68621":1,"68622":0,"68623":0,"68624":1,"68625":0,"68626":0,"68627":1,"68628":0,"68629":0,"68630":1,"68631":1,"68632":0,"68633":0,"68634":0,"68635":1,"68636":0,"68637":1,"68638":0,"68639":0,"68640":1,"68641":0,"68642":1,"68643":0,"68644":0,"68645":0,"68646":0,"68647":0,"68648":0,"68649":0,"68650":0,"68651":0,"68652":0,"68653":0,"68654":0,"68655":0,"68656":0,"68657":0,"68658":0,"68659":1,"68660":1,"68661":0,"68662":1,"68663":0,"68664":0,"68665":0,"68666":0,"68667":0,"68668":0,"68669":0,"68670":0,"68671":0,"68672":0,"68673":0,"68674":1,"68675":0,"68676":0,"68677":1,"68678":0,"68679":0,"68680":0,"68681":0,"68682":0,"68683":1,"68684":0,"68685":1,"68686":1,"68687":1,"68688":0,"68689":0,"68690":1,"68691":1,"68692":0,"68693":0,"68694":1,"68695":0,"68696":0,"68697":1,"68698":1,"68699":0,"68700":0,"68701":0,"68702":0,"68703":0,"68704":1,"68705":1,"68706":1,"68707":0,"68708":0,"68709":0,"68710":0,"68711":0,"68712":0,"68713":1,"68714":0,"68715":0,"68716":1,"68717":0,"68718":0,"68719":0,"68720":0,"68721":0,"68722":1,"68723":1,"68724":0,"68725":0,"68726":0,"68727":0,"68728":0,"68729":0,"68730":1,"68731":0,"68732":1,"68733":0,"68734":0,"68735":0,"68736":0,"68737":1,"68738":0,"68739":0,"68740":0,"68741":0,"68742":0,"68743":0,"68744":0,"68745":0,"68746":1,"68747":0,"68748":0,"68749":0,"68750":0,"68751":1,"68752":0,"68753":0,"68754":0,"68755":1,"68756":0,"68757":0,"68758":1,"68759":0,"68760":0,"68761":0,"68762":0,"68763":0,"68764":1,"68765":0,"68766":1,"68767":0,"68768":0,"68769":0,"68770":1,"68771":0,"68772":0,"68773":0,"68774":0,"68775":1,"68776":1,"68777":0,"68778":0,"68779":1,"68780":1,"68781":0,"68782":0,"68783":0,"68784":0,"68785":0,"68786":0,"68787":1,"68788":0,"68789":0,"68790":0,"68791":1,"68792":0,"68793":1,"68794":0,"68795":1,"68796":0,"68797":0,"68798":0,"68799":0,"68800":0,"68801":0,"68802":0,"68803":0,"68804":0,"68805":1,"68806":1,"68807":0,"68808":0,"68809":1,"68810":0,"68811":0,"68812":0,"68813":0,"68814":0,"68815":0,"68816":0,"68817":1,"68818":1,"68819":0,"68820":1,"68821":1,"68822":1,"68823":1,"68824":0,"68825":1,"68826":1,"68827":0,"68828":0,"68829":0,"68830":0,"68831":0,"68832":0,"68833":0,"68834":0,"68835":0,"68836":0,"68837":0,"68838":0,"68839":0,"68840":0,"68841":1,"68842":0,"68843":0,"68844":0,"68845":1,"68846":0,"68847":0,"68848":0,"68849":0,"68850":1,"68851":0,"68852":1,"68853":1,"68854":1,"68855":0,"68856":0,"68857":1,"68858":0,"68859":1,"68860":0,"68861":1,"68862":1,"68863":0,"68864":0,"68865":0,"68866":0,"68867":0,"68868":1,"68869":0,"68870":0,"68871":0,"68872":0,"68873":0,"68874":0,"68875":0,"68876":0,"68877":1,"68878":0,"68879":0,"68880":1,"68881":1,"68882":1,"68883":0,"68884":1,"68885":1,"68886":0,"68887":0,"68888":0,"68889":0,"68890":0,"68891":1,"68892":0,"68893":0,"68894":0,"68895":1,"68896":0,"68897":0,"68898":0,"68899":0,"68900":1,"68901":0,"68902":0,"68903":0,"68904":1,"68905":0,"68906":0,"68907":0,"68908":0,"68909":0,"68910":1,"68911":1,"68912":0,"68913":1,"68914":0,"68915":1,"68916":0,"68917":0,"68918":0,"68919":0,"68920":1,"68921":0,"68922":0,"68923":0,"68924":0,"68925":0,"68926":1,"68927":0,"68928":0,"68929":1,"68930":0,"68931":0,"68932":0,"68933":0,"68934":0,"68935":1,"68936":0,"68937":0,"68938":0,"68939":0,"68940":0,"68941":1,"68942":1,"68943":1,"68944":0,"68945":0,"68946":1,"68947":0,"68948":0,"68949":0,"68950":0,"68951":1,"68952":0,"68953":1,"68954":0,"68955":1,"68956":0,"68957":0,"68958":1,"68959":1,"68960":0,"68961":0,"68962":1,"68963":1,"68964":0,"68965":0,"68966":0,"68967":0,"68968":0,"68969":1,"68970":0,"68971":0,"68972":0,"68973":1,"68974":0,"68975":0,"68976":0,"68977":1,"68978":1,"68979":0,"68980":0,"68981":0,"68982":1,"68983":1,"68984":1,"68985":0,"68986":0,"68987":0,"68988":0,"68989":0,"68990":0,"68991":0,"68992":0,"68993":0,"68994":1,"68995":0,"68996":0,"68997":1,"68998":0,"68999":0,"69000":1,"69001":0,"69002":0,"69003":0,"69004":0,"69005":1,"69006":0,"69007":1,"69008":1,"69009":1,"69010":0,"69011":0,"69012":0,"69013":0,"69014":0,"69015":0,"69016":1,"69017":0,"69018":0,"69019":0,"69020":1,"69021":0,"69022":1,"69023":0,"69024":0,"69025":0,"69026":0,"69027":1,"69028":0,"69029":1,"69030":1,"69031":0,"69032":0,"69033":1,"69034":1,"69035":0,"69036":1,"69037":1,"69038":0,"69039":0,"69040":1,"69041":0,"69042":1,"69043":0,"69044":1,"69045":0,"69046":0,"69047":0,"69048":0,"69049":0,"69050":0,"69051":1,"69052":0,"69053":0,"69054":0,"69055":0,"69056":0,"69057":0,"69058":0,"69059":0,"69060":0,"69061":0,"69062":1,"69063":1,"69064":0,"69065":0,"69066":1,"69067":0,"69068":0,"69069":0,"69070":0,"69071":0,"69072":0,"69073":1,"69074":0,"69075":1,"69076":1,"69077":0,"69078":0,"69079":0,"69080":0,"69081":0,"69082":0,"69083":0,"69084":0,"69085":0,"69086":0,"69087":0,"69088":1,"69089":0,"69090":1,"69091":1,"69092":1,"69093":0,"69094":0,"69095":0,"69096":1,"69097":1,"69098":0,"69099":0,"69100":0,"69101":0,"69102":0,"69103":1,"69104":0,"69105":0,"69106":1,"69107":0,"69108":1,"69109":0,"69110":0,"69111":0,"69112":0,"69113":0,"69114":0,"69115":1,"69116":0,"69117":0,"69118":0,"69119":0,"69120":0,"69121":0,"69122":0,"69123":0,"69124":0,"69125":1,"69126":0,"69127":1,"69128":0,"69129":0,"69130":0,"69131":0,"69132":0,"69133":0,"69134":1,"69135":1,"69136":0,"69137":0,"69138":0,"69139":0,"69140":0,"69141":0,"69142":1,"69143":0,"69144":1,"69145":0,"69146":0,"69147":0,"69148":0,"69149":0,"69150":1,"69151":0,"69152":0,"69153":0,"69154":1,"69155":0,"69156":1,"69157":0,"69158":1,"69159":1,"69160":0,"69161":1,"69162":1,"69163":0,"69164":0,"69165":1,"69166":0,"69167":0,"69168":0,"69169":0,"69170":0,"69171":0,"69172":1,"69173":1,"69174":0,"69175":1,"69176":0,"69177":0,"69178":0,"69179":0,"69180":0,"69181":0,"69182":0,"69183":0,"69184":0,"69185":1,"69186":0,"69187":0,"69188":0,"69189":1,"69190":0,"69191":0,"69192":0,"69193":0,"69194":0,"69195":1,"69196":1,"69197":0,"69198":1,"69199":0,"69200":0,"69201":0,"69202":0,"69203":1,"69204":0,"69205":0,"69206":1,"69207":0,"69208":0,"69209":0,"69210":0,"69211":0,"69212":0,"69213":1,"69214":0,"69215":0,"69216":0,"69217":0,"69218":1,"69219":0,"69220":0,"69221":0,"69222":0,"69223":1,"69224":0,"69225":0,"69226":0,"69227":0,"69228":0,"69229":0,"69230":0,"69231":1,"69232":0,"69233":0,"69234":1,"69235":0,"69236":0,"69237":1,"69238":1,"69239":1,"69240":0,"69241":0,"69242":0,"69243":0,"69244":0,"69245":1,"69246":0,"69247":0,"69248":1,"69249":1,"69250":1,"69251":0,"69252":1,"69253":0,"69254":0,"69255":1,"69256":0,"69257":1,"69258":1,"69259":1,"69260":0,"69261":1,"69262":0,"69263":0,"69264":0,"69265":0,"69266":0,"69267":1,"69268":1,"69269":0,"69270":0,"69271":0,"69272":0,"69273":1,"69274":0,"69275":0,"69276":0,"69277":0,"69278":1,"69279":0,"69280":1,"69281":0,"69282":0,"69283":0,"69284":0,"69285":0,"69286":0,"69287":0,"69288":0,"69289":0,"69290":0,"69291":0,"69292":0,"69293":0,"69294":0,"69295":0,"69296":1,"69297":0,"69298":0,"69299":1,"69300":0,"69301":0,"69302":0,"69303":0,"69304":1,"69305":0,"69306":1,"69307":0,"69308":0,"69309":1,"69310":0,"69311":0,"69312":1,"69313":0,"69314":0,"69315":0,"69316":1,"69317":0,"69318":0,"69319":1,"69320":1,"69321":0,"69322":0,"69323":0,"69324":0,"69325":0,"69326":0,"69327":1,"69328":1,"69329":0,"69330":0,"69331":0,"69332":0,"69333":0,"69334":0,"69335":0,"69336":0,"69337":0,"69338":0,"69339":1,"69340":0,"69341":0,"69342":1,"69343":0,"69344":1,"69345":0,"69346":0,"69347":0,"69348":0,"69349":1,"69350":0,"69351":1,"69352":0,"69353":0,"69354":0,"69355":0,"69356":0,"69357":0,"69358":0,"69359":1,"69360":0,"69361":0,"69362":0,"69363":0,"69364":0,"69365":0,"69366":0,"69367":0,"69368":1,"69369":1,"69370":0,"69371":0,"69372":0,"69373":0,"69374":0,"69375":0,"69376":0,"69377":0,"69378":0,"69379":0,"69380":0,"69381":0,"69382":0,"69383":0,"69384":1,"69385":0,"69386":0,"69387":0,"69388":0,"69389":0,"69390":0,"69391":0,"69392":0,"69393":0,"69394":0,"69395":0,"69396":0,"69397":1,"69398":0,"69399":1,"69400":0,"69401":1,"69402":0,"69403":0,"69404":0,"69405":0,"69406":0,"69407":1,"69408":0,"69409":0,"69410":0,"69411":1,"69412":0,"69413":1,"69414":0,"69415":0,"69416":0,"69417":1,"69418":1,"69419":0,"69420":0,"69421":0,"69422":1,"69423":0,"69424":0,"69425":0,"69426":1,"69427":0,"69428":1,"69429":0,"69430":0,"69431":0,"69432":0,"69433":1,"69434":0,"69435":0,"69436":0,"69437":1,"69438":0,"69439":0,"69440":0,"69441":0,"69442":0,"69443":0,"69444":0,"69445":1,"69446":1,"69447":0,"69448":0,"69449":0,"69450":0,"69451":0,"69452":1,"69453":0,"69454":0,"69455":0,"69456":1,"69457":1,"69458":0,"69459":0,"69460":0,"69461":1,"69462":0,"69463":1,"69464":1,"69465":0,"69466":0,"69467":0,"69468":1,"69469":1,"69470":0,"69471":0,"69472":0,"69473":0,"69474":0,"69475":0,"69476":0,"69477":0,"69478":0,"69479":1,"69480":0,"69481":1,"69482":0,"69483":0,"69484":0,"69485":0,"69486":1,"69487":0,"69488":0,"69489":0,"69490":1,"69491":0,"69492":1,"69493":0,"69494":0,"69495":0,"69496":0,"69497":1,"69498":1,"69499":0,"69500":0,"69501":0,"69502":1,"69503":0,"69504":0,"69505":0,"69506":1,"69507":0,"69508":0,"69509":0,"69510":0,"69511":0,"69512":0,"69513":0,"69514":1,"69515":1,"69516":0,"69517":0,"69518":0,"69519":0,"69520":0,"69521":1,"69522":1,"69523":0,"69524":1,"69525":0,"69526":0,"69527":1,"69528":1,"69529":0,"69530":1,"69531":0,"69532":0,"69533":1,"69534":0,"69535":0,"69536":0,"69537":1,"69538":0,"69539":0,"69540":0,"69541":0,"69542":0,"69543":0,"69544":0,"69545":0,"69546":0,"69547":0,"69548":0,"69549":0,"69550":0,"69551":0,"69552":0,"69553":0,"69554":0,"69555":1,"69556":0,"69557":1,"69558":1,"69559":0,"69560":0,"69561":0,"69562":0,"69563":1,"69564":0,"69565":0,"69566":0,"69567":1,"69568":0,"69569":1,"69570":0,"69571":0,"69572":0,"69573":0,"69574":0,"69575":0,"69576":0,"69577":0,"69578":0,"69579":0,"69580":0,"69581":1,"69582":1,"69583":1,"69584":0,"69585":0,"69586":0,"69587":0,"69588":0,"69589":0,"69590":0,"69591":0,"69592":0,"69593":0,"69594":0,"69595":1,"69596":0,"69597":0,"69598":0,"69599":1,"69600":1,"69601":0,"69602":0,"69603":0,"69604":0,"69605":0,"69606":0,"69607":0,"69608":0,"69609":0,"69610":0,"69611":0,"69612":0,"69613":0,"69614":0,"69615":0,"69616":0,"69617":0,"69618":1,"69619":0,"69620":0,"69621":0,"69622":1,"69623":1,"69624":1,"69625":0,"69626":0,"69627":0,"69628":0,"69629":0,"69630":0,"69631":1,"69632":0,"69633":0,"69634":0,"69635":0,"69636":0,"69637":0,"69638":1,"69639":0,"69640":1,"69641":0,"69642":0,"69643":0,"69644":0,"69645":0,"69646":0,"69647":0,"69648":0,"69649":0,"69650":0,"69651":1,"69652":0,"69653":0,"69654":1,"69655":1,"69656":0,"69657":0,"69658":0,"69659":0,"69660":1,"69661":0,"69662":0,"69663":1,"69664":0,"69665":0,"69666":1,"69667":0,"69668":0,"69669":1,"69670":0,"69671":1,"69672":1,"69673":0,"69674":0,"69675":0,"69676":0,"69677":0,"69678":0,"69679":0,"69680":0,"69681":0,"69682":0,"69683":0,"69684":0,"69685":0,"69686":0,"69687":1,"69688":1,"69689":0,"69690":0,"69691":0,"69692":0,"69693":0,"69694":0,"69695":0,"69696":0,"69697":0,"69698":1,"69699":0,"69700":1,"69701":1,"69702":0,"69703":0,"69704":0,"69705":1,"69706":0,"69707":0,"69708":1,"69709":0,"69710":0,"69711":0,"69712":0,"69713":1,"69714":0,"69715":0,"69716":1,"69717":0,"69718":0,"69719":0,"69720":0,"69721":0,"69722":0,"69723":0,"69724":0,"69725":0,"69726":0,"69727":0,"69728":0,"69729":0,"69730":0,"69731":0,"69732":0,"69733":0,"69734":0,"69735":0,"69736":1,"69737":0,"69738":0,"69739":0,"69740":1,"69741":0,"69742":0,"69743":0,"69744":0,"69745":0,"69746":0,"69747":0,"69748":0,"69749":0,"69750":0,"69751":0,"69752":1,"69753":0,"69754":0,"69755":0,"69756":0,"69757":0,"69758":0,"69759":1,"69760":1,"69761":0,"69762":0,"69763":0,"69764":1,"69765":0,"69766":0,"69767":0,"69768":0,"69769":0,"69770":0,"69771":0,"69772":1,"69773":0,"69774":0,"69775":0,"69776":0,"69777":1,"69778":0,"69779":1,"69780":1,"69781":0,"69782":1,"69783":0,"69784":1,"69785":0,"69786":0,"69787":1,"69788":1,"69789":0,"69790":0,"69791":0,"69792":1,"69793":0,"69794":0,"69795":0,"69796":0,"69797":0,"69798":1,"69799":0,"69800":0,"69801":0,"69802":0,"69803":0,"69804":0,"69805":0,"69806":0,"69807":1,"69808":0,"69809":1,"69810":0,"69811":1,"69812":0,"69813":1,"69814":0,"69815":0,"69816":0,"69817":0,"69818":0,"69819":0,"69820":1,"69821":0,"69822":1,"69823":0,"69824":0,"69825":0,"69826":0,"69827":0,"69828":0,"69829":0,"69830":1,"69831":0,"69832":0,"69833":0,"69834":0,"69835":0,"69836":0,"69837":0,"69838":1,"69839":0,"69840":1,"69841":0,"69842":1,"69843":0,"69844":0,"69845":0,"69846":0,"69847":0,"69848":0,"69849":1,"69850":0,"69851":1,"69852":0,"69853":1,"69854":0,"69855":0,"69856":0,"69857":1,"69858":0,"69859":1,"69860":1,"69861":1,"69862":1,"69863":0,"69864":0,"69865":1,"69866":0,"69867":0,"69868":0,"69869":1,"69870":1,"69871":0,"69872":0,"69873":0,"69874":0,"69875":1,"69876":0,"69877":0,"69878":0,"69879":0,"69880":0,"69881":0,"69882":1,"69883":1,"69884":0,"69885":1,"69886":1,"69887":0,"69888":0,"69889":0,"69890":1,"69891":1,"69892":1,"69893":0,"69894":0,"69895":0,"69896":0,"69897":0,"69898":0,"69899":1,"69900":0,"69901":0,"69902":0,"69903":0,"69904":0,"69905":0,"69906":1,"69907":0,"69908":0,"69909":1,"69910":1,"69911":0,"69912":0,"69913":0,"69914":0,"69915":0,"69916":1,"69917":0,"69918":0,"69919":0,"69920":0,"69921":0,"69922":0,"69923":0,"69924":0,"69925":0,"69926":0,"69927":0,"69928":0,"69929":0,"69930":0,"69931":0,"69932":0,"69933":0,"69934":0,"69935":0,"69936":1,"69937":0,"69938":0,"69939":0,"69940":0,"69941":0,"69942":0,"69943":0,"69944":0,"69945":0,"69946":1,"69947":0,"69948":0,"69949":0,"69950":1,"69951":0,"69952":1,"69953":0,"69954":0,"69955":0,"69956":0,"69957":0,"69958":0,"69959":0,"69960":1,"69961":1,"69962":1,"69963":0,"69964":0,"69965":1,"69966":1,"69967":0,"69968":0,"69969":0,"69970":0,"69971":0,"69972":0,"69973":1,"69974":0,"69975":0,"69976":0,"69977":1,"69978":0,"69979":1,"69980":1,"69981":0,"69982":1,"69983":0,"69984":0,"69985":1,"69986":0,"69987":0,"69988":0,"69989":0,"69990":1,"69991":1,"69992":0,"69993":0,"69994":0,"69995":1,"69996":0,"69997":0,"69998":1,"69999":1,"70000":0,"70001":0,"70002":0,"70003":0,"70004":0,"70005":0,"70006":0,"70007":0,"70008":0,"70009":1,"70010":0,"70011":0,"70012":0,"70013":0,"70014":0,"70015":0,"70016":0,"70017":1,"70018":0,"70019":0,"70020":1,"70021":0,"70022":1,"70023":0,"70024":0,"70025":0,"70026":0,"70027":1,"70028":0,"70029":0,"70030":1,"70031":0,"70032":1,"70033":0,"70034":0,"70035":0,"70036":0,"70037":0,"70038":0,"70039":0,"70040":1,"70041":0,"70042":0,"70043":1,"70044":1,"70045":0,"70046":0,"70047":0,"70048":0,"70049":0,"70050":0,"70051":0,"70052":1,"70053":1,"70054":0,"70055":1,"70056":1,"70057":0,"70058":1,"70059":1,"70060":0,"70061":0,"70062":0,"70063":1,"70064":1,"70065":0,"70066":1,"70067":0,"70068":0,"70069":0,"70070":0,"70071":0,"70072":1,"70073":0,"70074":0,"70075":1,"70076":1,"70077":1,"70078":0,"70079":0,"70080":0,"70081":1,"70082":1,"70083":0,"70084":0,"70085":0,"70086":0,"70087":1,"70088":1,"70089":0,"70090":0,"70091":0,"70092":0,"70093":0,"70094":1,"70095":1,"70096":0,"70097":0,"70098":0,"70099":0,"70100":0,"70101":0,"70102":0,"70103":1,"70104":0,"70105":0,"70106":0,"70107":0,"70108":0,"70109":0,"70110":0,"70111":0,"70112":0,"70113":0,"70114":0,"70115":0,"70116":0,"70117":1,"70118":1,"70119":0,"70120":1,"70121":0,"70122":0,"70123":0,"70124":1,"70125":0,"70126":1,"70127":0,"70128":1,"70129":0,"70130":1,"70131":1,"70132":1,"70133":1,"70134":1,"70135":0,"70136":0,"70137":1,"70138":1,"70139":1,"70140":0,"70141":1,"70142":0,"70143":0,"70144":1,"70145":0,"70146":1,"70147":0,"70148":1,"70149":0,"70150":0,"70151":0,"70152":0,"70153":0,"70154":1,"70155":0,"70156":0,"70157":0,"70158":1,"70159":0,"70160":0,"70161":1,"70162":0,"70163":0,"70164":0,"70165":0,"70166":0,"70167":0,"70168":1,"70169":0,"70170":0,"70171":0,"70172":0,"70173":0,"70174":0,"70175":0,"70176":0,"70177":0,"70178":0,"70179":0,"70180":1,"70181":0,"70182":0,"70183":0,"70184":0,"70185":0,"70186":0,"70187":0,"70188":0,"70189":0,"70190":0,"70191":0,"70192":0,"70193":0,"70194":0,"70195":1,"70196":0,"70197":0,"70198":1,"70199":1,"70200":0,"70201":1,"70202":0,"70203":0,"70204":0,"70205":1,"70206":0,"70207":0,"70208":0,"70209":1,"70210":0,"70211":1,"70212":0,"70213":0,"70214":1,"70215":0,"70216":1,"70217":0,"70218":0,"70219":0,"70220":1,"70221":0,"70222":0,"70223":0,"70224":1,"70225":1,"70226":0,"70227":1,"70228":0,"70229":1,"70230":1,"70231":0,"70232":0,"70233":0,"70234":0,"70235":0,"70236":0,"70237":0,"70238":0,"70239":0,"70240":0,"70241":0,"70242":1,"70243":0,"70244":0,"70245":0,"70246":0,"70247":0,"70248":0,"70249":0,"70250":0,"70251":0,"70252":0,"70253":0,"70254":0,"70255":0,"70256":0,"70257":1,"70258":1,"70259":0,"70260":0,"70261":0,"70262":0,"70263":0,"70264":0,"70265":0,"70266":1,"70267":0,"70268":0,"70269":0,"70270":0,"70271":0,"70272":0,"70273":0,"70274":0,"70275":0,"70276":0,"70277":1,"70278":1,"70279":0,"70280":1,"70281":0,"70282":0,"70283":0,"70284":0,"70285":0,"70286":0,"70287":0,"70288":1,"70289":0,"70290":0,"70291":1,"70292":0,"70293":1,"70294":0,"70295":0,"70296":0,"70297":0,"70298":0,"70299":0,"70300":0,"70301":1,"70302":0,"70303":0,"70304":0,"70305":0,"70306":0,"70307":0,"70308":0,"70309":0,"70310":0,"70311":0,"70312":0,"70313":1,"70314":1,"70315":0,"70316":0,"70317":1,"70318":0,"70319":0,"70320":0,"70321":0,"70322":0,"70323":0,"70324":1,"70325":0,"70326":1,"70327":0,"70328":0,"70329":0,"70330":1,"70331":0,"70332":0,"70333":0,"70334":0,"70335":0,"70336":0,"70337":0,"70338":0,"70339":0,"70340":1,"70341":0,"70342":0,"70343":1,"70344":0,"70345":0,"70346":1,"70347":0,"70348":1,"70349":0,"70350":0,"70351":0,"70352":0,"70353":1,"70354":0,"70355":0,"70356":0,"70357":0,"70358":0,"70359":1,"70360":0,"70361":0,"70362":0,"70363":1,"70364":0,"70365":0,"70366":0,"70367":0,"70368":0,"70369":0,"70370":0,"70371":1,"70372":0,"70373":0,"70374":0,"70375":0,"70376":0,"70377":0,"70378":0,"70379":0,"70380":0,"70381":0,"70382":0,"70383":1,"70384":0,"70385":0,"70386":0,"70387":1,"70388":0,"70389":1,"70390":0,"70391":0,"70392":1,"70393":1,"70394":0,"70395":0,"70396":0,"70397":1,"70398":1,"70399":0,"70400":0,"70401":1,"70402":0,"70403":0,"70404":1,"70405":0,"70406":1,"70407":0,"70408":0,"70409":0,"70410":0,"70411":0,"70412":0,"70413":0,"70414":0,"70415":0,"70416":0,"70417":0,"70418":0,"70419":0,"70420":0,"70421":0,"70422":0,"70423":0,"70424":1,"70425":0,"70426":0,"70427":0,"70428":1,"70429":0,"70430":0,"70431":0,"70432":0,"70433":0,"70434":0,"70435":1,"70436":0,"70437":0,"70438":0,"70439":0,"70440":0,"70441":0,"70442":1,"70443":0,"70444":0,"70445":0,"70446":0,"70447":0,"70448":0,"70449":0,"70450":1,"70451":0,"70452":0,"70453":0,"70454":1,"70455":0,"70456":0,"70457":0,"70458":1,"70459":0,"70460":0,"70461":1,"70462":0,"70463":0,"70464":0,"70465":1,"70466":0,"70467":1,"70468":1,"70469":0,"70470":0,"70471":0,"70472":1,"70473":0,"70474":0,"70475":0,"70476":0,"70477":1,"70478":1,"70479":1,"70480":1,"70481":0,"70482":0,"70483":0,"70484":0,"70485":0,"70486":1,"70487":0,"70488":1,"70489":0,"70490":0,"70491":0,"70492":0,"70493":0,"70494":0,"70495":0,"70496":0,"70497":0,"70498":0,"70499":0,"70500":1,"70501":0,"70502":1,"70503":0,"70504":0,"70505":0,"70506":1,"70507":0,"70508":1,"70509":1,"70510":0,"70511":0,"70512":0,"70513":0,"70514":1,"70515":1,"70516":1,"70517":0,"70518":1,"70519":1,"70520":0,"70521":0,"70522":0,"70523":0,"70524":0,"70525":1,"70526":0,"70527":0,"70528":0,"70529":0,"70530":0,"70531":0,"70532":0,"70533":1,"70534":1,"70535":0,"70536":1,"70537":0,"70538":0,"70539":0,"70540":0,"70541":1,"70542":1,"70543":0,"70544":0,"70545":0,"70546":1,"70547":0,"70548":0,"70549":1,"70550":0,"70551":0,"70552":0,"70553":0,"70554":0,"70555":0,"70556":0,"70557":1,"70558":0,"70559":0,"70560":0,"70561":1,"70562":0,"70563":0,"70564":0,"70565":0,"70566":0,"70567":0,"70568":0,"70569":0,"70570":0,"70571":0,"70572":0,"70573":0,"70574":0,"70575":0,"70576":1,"70577":0,"70578":0,"70579":1,"70580":1,"70581":0,"70582":0,"70583":0,"70584":0,"70585":0,"70586":0,"70587":1,"70588":0,"70589":0,"70590":0,"70591":1,"70592":1,"70593":0,"70594":0,"70595":0,"70596":0,"70597":0,"70598":0,"70599":0,"70600":0,"70601":0,"70602":0,"70603":0,"70604":1,"70605":0,"70606":0,"70607":0,"70608":1,"70609":0,"70610":1,"70611":0,"70612":0,"70613":0,"70614":0,"70615":0,"70616":0,"70617":0,"70618":0,"70619":1,"70620":0,"70621":0,"70622":0,"70623":0,"70624":1,"70625":1,"70626":0,"70627":0,"70628":1,"70629":0,"70630":1,"70631":0,"70632":0,"70633":0,"70634":0,"70635":0,"70636":0,"70637":1,"70638":0,"70639":0,"70640":0,"70641":0,"70642":0,"70643":0,"70644":0,"70645":1,"70646":0,"70647":0,"70648":0,"70649":0,"70650":0,"70651":0,"70652":0,"70653":1,"70654":0,"70655":0,"70656":1,"70657":0,"70658":0,"70659":0,"70660":0,"70661":0,"70662":0,"70663":0,"70664":0,"70665":1,"70666":1,"70667":0,"70668":0,"70669":1,"70670":0,"70671":0,"70672":0,"70673":0,"70674":0,"70675":1,"70676":0,"70677":0,"70678":0,"70679":0,"70680":0,"70681":0,"70682":0,"70683":1,"70684":1,"70685":0,"70686":0,"70687":0,"70688":1,"70689":0,"70690":0,"70691":1,"70692":0,"70693":0,"70694":0,"70695":1,"70696":0,"70697":0,"70698":0,"70699":0,"70700":0,"70701":0,"70702":0,"70703":1,"70704":0,"70705":1,"70706":0,"70707":0,"70708":0,"70709":0,"70710":1,"70711":0,"70712":0,"70713":0,"70714":0,"70715":1,"70716":1,"70717":0,"70718":0,"70719":0,"70720":1,"70721":0,"70722":0,"70723":0,"70724":0,"70725":0,"70726":0,"70727":0,"70728":0,"70729":1,"70730":0,"70731":0,"70732":1,"70733":0,"70734":0,"70735":0,"70736":0,"70737":0,"70738":0,"70739":1,"70740":1,"70741":0,"70742":0,"70743":1,"70744":0,"70745":0,"70746":0,"70747":1,"70748":0,"70749":0,"70750":1,"70751":0,"70752":0,"70753":0,"70754":0,"70755":0,"70756":0,"70757":0,"70758":0,"70759":1,"70760":0,"70761":1,"70762":0,"70763":1,"70764":0,"70765":0,"70766":0,"70767":0,"70768":0,"70769":0,"70770":0,"70771":1,"70772":0,"70773":0,"70774":0,"70775":1,"70776":0,"70777":0,"70778":1,"70779":0,"70780":0,"70781":0,"70782":0,"70783":1,"70784":0,"70785":0,"70786":0,"70787":0,"70788":1,"70789":0,"70790":0,"70791":0,"70792":0,"70793":0,"70794":0,"70795":0,"70796":0,"70797":1,"70798":0,"70799":1,"70800":1,"70801":0,"70802":0,"70803":0,"70804":0,"70805":1,"70806":0,"70807":0,"70808":1,"70809":1,"70810":0,"70811":0,"70812":0,"70813":0,"70814":1,"70815":0,"70816":1,"70817":0,"70818":0,"70819":0,"70820":1,"70821":0,"70822":0,"70823":0,"70824":0,"70825":0,"70826":0,"70827":0,"70828":0,"70829":1,"70830":0,"70831":0,"70832":0,"70833":0,"70834":0,"70835":0,"70836":0,"70837":1,"70838":1,"70839":0,"70840":0,"70841":0,"70842":0,"70843":0,"70844":1,"70845":0,"70846":0,"70847":1,"70848":0,"70849":0,"70850":0,"70851":0,"70852":0,"70853":0,"70854":0,"70855":0,"70856":1,"70857":1,"70858":0,"70859":0,"70860":0,"70861":1,"70862":0,"70863":0,"70864":0,"70865":0,"70866":0,"70867":0,"70868":0,"70869":0,"70870":0,"70871":1,"70872":0,"70873":1,"70874":0,"70875":0,"70876":1,"70877":0,"70878":0,"70879":0,"70880":0,"70881":0,"70882":1,"70883":1,"70884":0,"70885":0,"70886":0,"70887":0,"70888":0,"70889":0,"70890":0,"70891":0,"70892":1,"70893":0,"70894":0,"70895":0,"70896":0,"70897":0,"70898":0,"70899":0,"70900":1,"70901":0,"70902":1,"70903":0,"70904":1,"70905":1,"70906":0,"70907":0,"70908":1,"70909":1,"70910":0,"70911":0,"70912":0,"70913":0,"70914":0,"70915":0,"70916":0,"70917":0,"70918":0,"70919":0,"70920":0,"70921":0,"70922":1,"70923":1,"70924":0,"70925":0,"70926":1,"70927":1,"70928":0,"70929":1,"70930":0,"70931":0,"70932":0,"70933":0,"70934":0,"70935":0,"70936":0,"70937":1,"70938":0,"70939":0,"70940":1,"70941":1,"70942":0,"70943":0,"70944":1,"70945":0,"70946":0,"70947":0,"70948":0,"70949":1,"70950":0,"70951":1,"70952":0,"70953":1,"70954":0,"70955":0,"70956":0,"70957":0,"70958":0,"70959":0,"70960":1,"70961":0,"70962":0,"70963":0,"70964":0,"70965":1,"70966":0,"70967":0,"70968":0,"70969":1,"70970":1,"70971":0,"70972":0,"70973":0,"70974":0,"70975":0,"70976":1,"70977":0,"70978":0,"70979":1,"70980":1,"70981":0,"70982":0,"70983":1,"70984":0,"70985":1,"70986":0,"70987":0,"70988":0,"70989":0,"70990":0,"70991":0,"70992":0,"70993":0,"70994":0,"70995":1,"70996":0,"70997":0,"70998":0,"70999":1,"71000":1,"71001":0,"71002":1,"71003":0,"71004":0,"71005":0,"71006":0,"71007":1,"71008":0,"71009":0,"71010":0,"71011":0,"71012":0,"71013":0,"71014":0,"71015":1,"71016":0,"71017":0,"71018":0,"71019":0,"71020":1,"71021":1,"71022":0,"71023":1,"71024":1,"71025":0,"71026":1,"71027":0,"71028":0,"71029":0,"71030":0,"71031":0,"71032":0,"71033":1,"71034":0,"71035":0,"71036":0,"71037":0,"71038":0,"71039":0,"71040":0,"71041":0,"71042":0,"71043":0,"71044":0,"71045":0,"71046":0,"71047":0,"71048":1,"71049":0,"71050":0,"71051":0,"71052":0,"71053":1,"71054":1,"71055":0,"71056":0,"71057":0,"71058":1,"71059":0,"71060":0,"71061":0,"71062":0,"71063":0,"71064":0,"71065":0,"71066":1,"71067":0,"71068":0,"71069":0,"71070":0,"71071":1,"71072":0,"71073":0,"71074":0,"71075":0,"71076":1,"71077":1,"71078":0,"71079":0,"71080":1,"71081":0,"71082":0,"71083":0,"71084":0,"71085":0,"71086":0,"71087":0,"71088":1,"71089":0,"71090":0,"71091":1,"71092":0,"71093":0,"71094":0,"71095":0,"71096":1,"71097":0,"71098":1,"71099":1,"71100":0,"71101":0,"71102":0,"71103":0,"71104":0,"71105":0,"71106":0,"71107":0,"71108":0,"71109":0,"71110":1,"71111":0,"71112":1,"71113":1,"71114":1,"71115":0,"71116":0,"71117":0,"71118":0,"71119":0,"71120":0,"71121":0,"71122":0,"71123":1,"71124":0,"71125":1,"71126":0,"71127":0,"71128":0,"71129":0,"71130":0,"71131":1,"71132":0,"71133":1,"71134":0,"71135":0,"71136":0,"71137":0,"71138":1,"71139":0,"71140":1,"71141":0,"71142":0,"71143":0,"71144":0,"71145":0,"71146":1,"71147":0,"71148":1,"71149":0,"71150":0,"71151":1,"71152":0,"71153":0,"71154":1,"71155":0,"71156":0,"71157":0,"71158":0,"71159":0,"71160":0,"71161":0,"71162":0,"71163":0,"71164":0,"71165":0,"71166":0,"71167":1,"71168":0,"71169":0,"71170":0,"71171":1,"71172":0,"71173":1,"71174":1,"71175":0,"71176":0,"71177":1,"71178":0,"71179":1,"71180":1,"71181":0,"71182":1,"71183":1,"71184":0,"71185":1,"71186":0,"71187":1,"71188":0,"71189":0,"71190":1,"71191":1,"71192":1,"71193":1,"71194":0,"71195":0,"71196":0,"71197":0,"71198":0,"71199":0,"71200":0,"71201":0,"71202":1,"71203":1,"71204":0,"71205":0,"71206":1,"71207":0,"71208":0,"71209":1,"71210":0,"71211":1,"71212":1,"71213":1,"71214":1,"71215":1,"71216":0,"71217":1,"71218":1,"71219":0,"71220":0,"71221":0,"71222":0,"71223":1,"71224":0,"71225":0,"71226":0,"71227":1,"71228":0,"71229":0,"71230":1,"71231":0,"71232":0,"71233":0,"71234":0,"71235":0,"71236":0,"71237":0,"71238":0,"71239":0,"71240":0,"71241":0,"71242":0,"71243":0,"71244":0,"71245":0,"71246":1,"71247":0,"71248":0,"71249":0,"71250":1,"71251":0,"71252":1,"71253":0,"71254":0,"71255":0,"71256":0,"71257":0,"71258":0,"71259":0,"71260":0,"71261":0,"71262":1,"71263":1,"71264":0,"71265":0,"71266":1,"71267":0,"71268":0,"71269":1,"71270":0,"71271":0,"71272":0,"71273":0,"71274":0,"71275":0,"71276":0,"71277":0,"71278":0,"71279":0,"71280":0,"71281":0,"71282":0,"71283":0,"71284":0,"71285":0,"71286":1,"71287":0,"71288":0,"71289":0,"71290":0,"71291":0,"71292":0,"71293":0,"71294":1,"71295":1,"71296":0,"71297":1,"71298":0,"71299":1,"71300":0,"71301":1,"71302":1,"71303":0,"71304":1,"71305":0,"71306":0,"71307":0,"71308":0,"71309":0,"71310":0,"71311":0,"71312":1,"71313":0,"71314":0,"71315":1,"71316":0,"71317":0,"71318":0,"71319":0,"71320":0,"71321":1,"71322":0,"71323":0,"71324":0,"71325":0,"71326":0,"71327":1,"71328":0,"71329":1,"71330":1,"71331":1,"71332":1,"71333":0,"71334":0,"71335":0,"71336":0,"71337":0,"71338":0,"71339":0,"71340":0,"71341":0,"71342":1,"71343":0,"71344":1,"71345":0,"71346":0,"71347":1,"71348":1,"71349":0,"71350":0,"71351":0,"71352":0,"71353":0,"71354":1,"71355":0,"71356":1,"71357":0,"71358":0,"71359":1,"71360":0,"71361":0,"71362":0,"71363":0,"71364":0,"71365":0,"71366":0,"71367":0,"71368":0,"71369":0,"71370":1,"71371":0,"71372":1,"71373":0,"71374":0,"71375":0,"71376":0,"71377":1,"71378":1,"71379":0,"71380":1,"71381":0,"71382":0,"71383":0,"71384":0,"71385":1,"71386":0,"71387":0,"71388":0,"71389":1,"71390":0,"71391":0,"71392":0,"71393":0,"71394":0,"71395":0,"71396":0,"71397":1,"71398":0,"71399":0,"71400":0,"71401":0,"71402":0,"71403":0,"71404":0,"71405":0,"71406":0,"71407":0,"71408":0,"71409":1,"71410":0,"71411":0,"71412":0,"71413":1,"71414":1,"71415":0,"71416":0,"71417":1,"71418":0,"71419":0,"71420":1,"71421":0,"71422":0,"71423":0,"71424":0,"71425":0,"71426":0,"71427":1,"71428":0,"71429":0,"71430":1,"71431":0,"71432":0,"71433":0,"71434":0,"71435":1,"71436":1,"71437":0,"71438":0,"71439":1,"71440":0,"71441":0,"71442":0,"71443":0,"71444":0,"71445":0,"71446":0,"71447":0,"71448":0,"71449":0,"71450":0,"71451":0,"71452":0,"71453":0,"71454":0,"71455":0,"71456":1,"71457":0,"71458":1,"71459":1,"71460":1,"71461":0,"71462":0,"71463":0,"71464":0,"71465":0,"71466":0,"71467":0,"71468":0,"71469":0,"71470":0,"71471":1,"71472":0,"71473":1,"71474":0,"71475":0,"71476":0,"71477":1,"71478":0,"71479":0,"71480":1,"71481":0,"71482":1,"71483":1,"71484":1,"71485":0,"71486":1,"71487":0,"71488":0,"71489":1,"71490":0,"71491":0,"71492":0,"71493":0,"71494":0,"71495":0,"71496":0,"71497":0,"71498":1,"71499":0,"71500":1,"71501":0,"71502":1,"71503":0,"71504":0,"71505":0,"71506":0,"71507":0,"71508":1,"71509":0,"71510":0,"71511":0,"71512":0,"71513":0,"71514":0,"71515":0,"71516":0,"71517":0,"71518":0,"71519":0,"71520":1,"71521":0,"71522":0,"71523":1,"71524":0,"71525":0,"71526":0,"71527":0,"71528":1,"71529":0,"71530":0,"71531":0,"71532":0,"71533":0,"71534":0,"71535":0,"71536":1,"71537":0,"71538":0,"71539":0,"71540":0,"71541":1,"71542":1,"71543":0,"71544":0,"71545":0,"71546":0,"71547":1,"71548":1,"71549":1,"71550":0,"71551":1,"71552":0,"71553":0,"71554":0,"71555":0,"71556":1,"71557":1,"71558":1,"71559":0,"71560":0,"71561":0,"71562":0,"71563":0,"71564":1,"71565":1,"71566":1,"71567":0,"71568":0,"71569":0,"71570":0,"71571":0,"71572":0,"71573":0,"71574":0,"71575":0,"71576":0,"71577":1,"71578":0,"71579":0,"71580":0,"71581":0,"71582":1,"71583":0,"71584":0,"71585":0,"71586":1,"71587":1,"71588":0,"71589":0,"71590":0,"71591":0,"71592":0,"71593":1,"71594":1,"71595":0,"71596":0,"71597":0,"71598":0,"71599":0,"71600":0,"71601":1,"71602":0,"71603":1,"71604":0,"71605":1,"71606":0,"71607":0,"71608":0,"71609":0,"71610":0,"71611":0,"71612":1,"71613":0,"71614":0,"71615":1,"71616":0,"71617":1,"71618":0,"71619":1,"71620":0,"71621":0,"71622":0,"71623":0,"71624":0,"71625":1,"71626":0,"71627":0,"71628":0,"71629":1,"71630":0,"71631":0,"71632":1,"71633":0,"71634":0,"71635":0,"71636":0,"71637":1,"71638":1,"71639":0,"71640":0,"71641":1,"71642":0,"71643":0,"71644":1,"71645":0,"71646":1,"71647":1,"71648":1,"71649":1,"71650":0,"71651":0,"71652":1,"71653":1,"71654":0,"71655":0,"71656":1,"71657":0,"71658":0,"71659":1,"71660":0,"71661":1,"71662":0,"71663":1,"71664":0,"71665":0,"71666":0,"71667":0,"71668":0,"71669":1,"71670":0,"71671":0,"71672":1,"71673":1,"71674":1,"71675":0,"71676":1,"71677":0,"71678":0,"71679":0,"71680":0,"71681":0,"71682":1,"71683":1,"71684":1,"71685":1,"71686":0,"71687":0,"71688":1,"71689":0,"71690":0,"71691":0,"71692":0,"71693":0,"71694":0,"71695":1,"71696":1,"71697":0,"71698":1,"71699":1,"71700":1,"71701":0,"71702":0,"71703":1,"71704":0,"71705":0,"71706":0,"71707":0,"71708":0,"71709":1,"71710":0,"71711":0,"71712":0,"71713":0,"71714":1,"71715":1,"71716":0,"71717":0,"71718":0,"71719":1,"71720":1,"71721":0,"71722":0,"71723":1,"71724":0,"71725":0,"71726":0,"71727":0,"71728":0,"71729":0,"71730":0,"71731":0,"71732":0,"71733":1,"71734":1,"71735":0,"71736":0,"71737":0,"71738":0,"71739":0,"71740":0,"71741":1,"71742":0,"71743":0,"71744":1,"71745":0,"71746":0,"71747":0,"71748":0,"71749":0,"71750":0,"71751":0,"71752":0,"71753":0,"71754":0,"71755":0,"71756":0,"71757":0,"71758":0,"71759":0,"71760":0,"71761":1,"71762":1,"71763":0,"71764":0,"71765":0,"71766":0,"71767":0,"71768":0,"71769":0,"71770":1,"71771":0,"71772":0,"71773":1,"71774":0,"71775":0,"71776":1,"71777":0,"71778":0,"71779":0,"71780":1,"71781":0,"71782":0,"71783":1,"71784":0,"71785":0,"71786":0,"71787":0,"71788":0,"71789":0,"71790":1,"71791":0,"71792":0,"71793":0,"71794":0,"71795":0,"71796":0,"71797":0,"71798":1,"71799":0,"71800":0,"71801":0,"71802":1,"71803":0,"71804":0,"71805":1,"71806":0,"71807":0,"71808":0,"71809":0,"71810":0,"71811":0,"71812":0,"71813":0,"71814":0,"71815":0,"71816":1,"71817":0,"71818":1,"71819":0,"71820":0,"71821":0,"71822":0,"71823":0,"71824":0,"71825":0,"71826":0,"71827":0,"71828":0,"71829":1,"71830":0,"71831":0,"71832":1,"71833":0,"71834":0,"71835":1,"71836":0,"71837":0,"71838":0,"71839":0,"71840":0,"71841":0,"71842":0,"71843":0,"71844":0,"71845":1,"71846":0,"71847":0,"71848":0,"71849":0,"71850":0,"71851":0,"71852":0,"71853":1,"71854":0,"71855":0,"71856":0,"71857":0,"71858":0,"71859":0,"71860":1,"71861":0,"71862":0,"71863":0,"71864":0,"71865":0,"71866":0,"71867":0,"71868":0,"71869":0,"71870":0,"71871":1,"71872":0,"71873":0,"71874":0,"71875":1,"71876":0,"71877":0,"71878":1,"71879":0,"71880":0,"71881":0,"71882":0,"71883":1,"71884":0,"71885":0,"71886":0,"71887":0,"71888":0,"71889":0,"71890":1,"71891":0,"71892":0,"71893":0,"71894":0,"71895":0,"71896":0,"71897":0,"71898":0,"71899":0,"71900":0,"71901":0,"71902":0,"71903":1,"71904":0,"71905":0,"71906":0,"71907":1,"71908":0,"71909":0,"71910":0,"71911":0,"71912":0,"71913":0,"71914":1,"71915":0,"71916":0,"71917":0,"71918":0,"71919":1,"71920":0,"71921":1,"71922":1,"71923":0,"71924":0,"71925":0,"71926":1,"71927":0,"71928":0,"71929":0,"71930":0,"71931":0,"71932":0,"71933":0,"71934":1,"71935":0,"71936":1,"71937":0,"71938":0,"71939":0,"71940":0,"71941":0,"71942":0,"71943":0,"71944":0,"71945":0,"71946":0,"71947":1,"71948":0,"71949":0,"71950":0,"71951":0,"71952":1,"71953":1,"71954":0,"71955":1,"71956":0,"71957":0,"71958":0,"71959":0,"71960":0,"71961":0,"71962":0,"71963":0,"71964":0,"71965":0,"71966":1,"71967":0,"71968":0,"71969":1,"71970":1,"71971":0,"71972":1,"71973":0,"71974":0,"71975":0,"71976":0,"71977":0,"71978":0,"71979":0,"71980":0,"71981":0,"71982":0,"71983":0,"71984":0,"71985":0,"71986":1,"71987":0,"71988":0,"71989":0,"71990":1,"71991":1,"71992":0,"71993":0,"71994":0,"71995":0,"71996":1,"71997":0,"71998":0,"71999":0,"72000":1,"72001":0,"72002":0,"72003":0,"72004":0,"72005":1,"72006":1,"72007":1,"72008":0,"72009":1,"72010":0,"72011":0,"72012":1,"72013":1,"72014":0,"72015":0,"72016":0,"72017":0,"72018":1,"72019":1,"72020":0,"72021":0,"72022":0,"72023":0,"72024":1,"72025":0,"72026":0,"72027":0,"72028":1,"72029":1,"72030":0,"72031":0,"72032":0,"72033":0,"72034":1,"72035":0,"72036":1,"72037":0,"72038":0,"72039":0,"72040":0,"72041":0,"72042":0,"72043":0,"72044":0,"72045":0,"72046":0,"72047":1,"72048":0,"72049":0,"72050":1,"72051":1,"72052":1,"72053":0,"72054":0,"72055":0,"72056":0,"72057":1,"72058":0,"72059":0,"72060":0,"72061":0,"72062":0,"72063":1,"72064":0,"72065":0,"72066":0,"72067":1,"72068":0,"72069":0,"72070":0,"72071":0,"72072":0,"72073":0,"72074":0,"72075":0,"72076":1,"72077":1,"72078":0,"72079":0,"72080":0,"72081":0,"72082":0,"72083":0,"72084":0,"72085":0,"72086":1,"72087":1,"72088":0,"72089":0,"72090":0,"72091":0,"72092":0,"72093":1,"72094":0,"72095":0,"72096":0,"72097":0,"72098":1,"72099":0,"72100":0,"72101":0,"72102":1,"72103":1,"72104":0,"72105":0,"72106":0,"72107":0,"72108":0,"72109":0,"72110":0,"72111":0,"72112":0,"72113":0,"72114":0,"72115":0,"72116":1,"72117":0,"72118":0,"72119":1,"72120":1,"72121":0,"72122":1,"72123":0,"72124":0,"72125":0,"72126":0,"72127":0,"72128":1,"72129":0,"72130":0,"72131":1,"72132":0,"72133":0,"72134":0,"72135":0,"72136":1,"72137":0,"72138":0,"72139":0,"72140":0,"72141":0,"72142":0,"72143":0,"72144":0,"72145":1,"72146":0,"72147":0,"72148":0,"72149":1,"72150":1,"72151":0,"72152":1,"72153":0,"72154":0,"72155":1,"72156":0,"72157":0,"72158":0,"72159":0,"72160":0,"72161":1,"72162":1,"72163":0,"72164":1,"72165":1,"72166":1,"72167":1,"72168":0,"72169":0,"72170":1,"72171":1,"72172":0,"72173":0,"72174":0,"72175":0,"72176":0,"72177":1,"72178":1,"72179":0,"72180":0,"72181":1,"72182":0,"72183":0,"72184":0,"72185":0,"72186":0,"72187":1,"72188":1,"72189":1,"72190":0,"72191":0,"72192":0,"72193":0,"72194":0,"72195":0,"72196":0,"72197":0,"72198":0,"72199":0,"72200":1,"72201":0,"72202":0,"72203":1,"72204":0,"72205":1,"72206":0,"72207":0,"72208":0,"72209":0,"72210":1,"72211":0,"72212":0,"72213":0,"72214":0,"72215":0,"72216":1,"72217":0,"72218":1,"72219":0,"72220":0,"72221":0,"72222":0,"72223":0,"72224":0,"72225":1,"72226":0,"72227":0,"72228":1,"72229":0,"72230":0,"72231":0,"72232":0,"72233":0,"72234":0,"72235":0,"72236":0,"72237":1,"72238":0,"72239":1,"72240":0,"72241":1,"72242":0,"72243":0,"72244":1,"72245":0,"72246":0,"72247":0,"72248":0,"72249":1,"72250":0,"72251":0,"72252":1,"72253":0,"72254":1,"72255":0,"72256":0,"72257":0,"72258":1,"72259":0,"72260":0,"72261":1,"72262":0,"72263":0,"72264":1,"72265":1,"72266":0,"72267":0,"72268":1,"72269":0,"72270":0,"72271":0,"72272":0,"72273":1,"72274":0,"72275":0,"72276":0,"72277":0,"72278":0,"72279":1,"72280":0,"72281":0,"72282":0,"72283":0,"72284":1,"72285":1,"72286":0,"72287":0,"72288":1,"72289":0,"72290":1,"72291":1,"72292":0,"72293":0,"72294":0,"72295":0,"72296":0,"72297":0,"72298":0,"72299":0,"72300":0,"72301":0,"72302":1,"72303":0,"72304":0,"72305":0,"72306":0,"72307":0,"72308":0,"72309":0,"72310":0,"72311":0,"72312":0,"72313":0,"72314":0,"72315":0,"72316":1,"72317":0,"72318":0,"72319":0,"72320":1,"72321":0,"72322":1,"72323":0,"72324":0,"72325":0,"72326":0,"72327":0,"72328":1,"72329":0,"72330":1,"72331":0,"72332":0,"72333":0,"72334":0,"72335":1,"72336":0,"72337":0,"72338":0,"72339":1,"72340":1,"72341":0,"72342":0,"72343":0,"72344":0,"72345":0,"72346":1,"72347":0,"72348":0,"72349":0,"72350":0,"72351":0,"72352":0,"72353":0,"72354":0,"72355":1,"72356":0,"72357":0,"72358":0,"72359":1,"72360":1,"72361":1,"72362":0,"72363":1,"72364":1,"72365":0,"72366":1,"72367":0,"72368":1,"72369":0,"72370":1,"72371":0,"72372":0,"72373":0,"72374":1,"72375":0,"72376":0,"72377":0,"72378":0,"72379":0,"72380":0,"72381":0,"72382":0,"72383":0,"72384":0,"72385":0,"72386":1,"72387":0,"72388":0,"72389":0,"72390":0,"72391":1,"72392":0,"72393":0,"72394":1,"72395":0,"72396":0,"72397":0,"72398":0,"72399":0,"72400":0,"72401":0,"72402":0,"72403":0,"72404":1,"72405":1,"72406":1,"72407":0,"72408":0,"72409":0,"72410":1,"72411":0,"72412":0,"72413":0,"72414":0,"72415":0,"72416":1,"72417":0,"72418":0,"72419":1,"72420":0,"72421":0,"72422":0,"72423":0,"72424":0,"72425":0,"72426":1,"72427":1,"72428":0,"72429":0,"72430":1,"72431":0,"72432":0,"72433":0,"72434":0,"72435":0,"72436":0,"72437":0,"72438":1,"72439":0,"72440":0,"72441":0,"72442":1,"72443":0,"72444":1,"72445":0,"72446":0,"72447":0,"72448":1,"72449":0,"72450":0,"72451":0,"72452":0,"72453":0,"72454":0,"72455":0,"72456":0,"72457":0,"72458":0,"72459":0,"72460":0,"72461":1,"72462":1,"72463":0,"72464":1,"72465":1,"72466":0,"72467":0,"72468":1,"72469":0,"72470":0,"72471":0,"72472":0,"72473":0,"72474":0,"72475":0,"72476":0,"72477":0,"72478":0,"72479":0,"72480":0,"72481":0,"72482":0,"72483":0,"72484":0,"72485":0,"72486":0,"72487":1,"72488":1,"72489":1,"72490":0,"72491":0,"72492":0,"72493":1,"72494":0,"72495":1,"72496":1,"72497":1,"72498":0,"72499":0,"72500":0,"72501":0,"72502":0,"72503":0,"72504":0,"72505":0,"72506":0,"72507":1,"72508":0,"72509":0,"72510":0,"72511":0,"72512":0,"72513":0,"72514":0,"72515":0,"72516":0,"72517":1,"72518":1,"72519":0,"72520":0,"72521":0,"72522":1,"72523":0,"72524":1,"72525":0,"72526":0,"72527":0,"72528":0,"72529":1,"72530":0,"72531":1,"72532":0,"72533":0,"72534":1,"72535":0,"72536":0,"72537":0,"72538":0,"72539":1,"72540":0,"72541":0,"72542":0,"72543":1,"72544":0,"72545":0,"72546":0,"72547":1,"72548":0,"72549":0,"72550":0,"72551":1,"72552":0,"72553":0,"72554":0,"72555":0,"72556":0,"72557":0,"72558":0,"72559":0,"72560":0,"72561":1,"72562":0,"72563":0,"72564":1,"72565":0,"72566":0,"72567":1,"72568":0,"72569":0,"72570":0,"72571":0,"72572":0,"72573":1,"72574":0,"72575":0,"72576":0,"72577":0,"72578":0,"72579":0,"72580":0,"72581":0,"72582":1,"72583":1,"72584":0,"72585":0,"72586":0,"72587":0,"72588":0,"72589":1,"72590":0,"72591":0,"72592":1,"72593":1,"72594":1,"72595":1,"72596":0,"72597":0,"72598":1,"72599":0,"72600":0,"72601":0,"72602":1,"72603":1,"72604":1,"72605":0,"72606":0,"72607":1,"72608":0,"72609":0,"72610":0,"72611":1,"72612":0,"72613":0,"72614":0,"72615":0,"72616":0,"72617":1,"72618":0,"72619":1,"72620":0,"72621":0,"72622":0,"72623":0,"72624":0,"72625":0,"72626":1,"72627":1,"72628":1,"72629":0,"72630":0,"72631":0,"72632":0,"72633":0,"72634":0,"72635":0,"72636":0,"72637":0,"72638":0,"72639":0,"72640":0,"72641":1,"72642":0,"72643":1,"72644":0,"72645":0,"72646":0,"72647":0,"72648":0,"72649":0,"72650":0,"72651":0,"72652":0,"72653":0,"72654":1,"72655":0,"72656":0,"72657":1,"72658":0,"72659":0,"72660":0,"72661":0,"72662":0,"72663":0,"72664":1,"72665":1,"72666":1,"72667":1,"72668":0,"72669":0,"72670":0,"72671":0,"72672":0,"72673":0,"72674":1,"72675":0,"72676":0,"72677":0,"72678":0,"72679":0,"72680":0,"72681":0,"72682":0,"72683":1,"72684":0,"72685":0,"72686":1,"72687":1,"72688":0,"72689":0,"72690":1,"72691":0,"72692":1,"72693":0,"72694":0,"72695":0,"72696":0,"72697":0,"72698":0,"72699":0,"72700":0,"72701":0,"72702":0,"72703":0,"72704":0,"72705":0,"72706":0,"72707":0,"72708":0,"72709":0,"72710":0,"72711":1,"72712":0,"72713":1,"72714":0,"72715":0,"72716":1,"72717":0,"72718":0,"72719":0,"72720":0,"72721":0,"72722":0,"72723":0,"72724":0,"72725":0,"72726":0,"72727":0,"72728":0,"72729":0,"72730":1,"72731":0,"72732":1,"72733":0,"72734":0,"72735":0,"72736":0,"72737":0,"72738":0,"72739":1,"72740":1,"72741":0,"72742":0,"72743":0,"72744":0,"72745":0,"72746":0,"72747":0,"72748":0,"72749":0,"72750":0,"72751":1,"72752":1,"72753":1,"72754":0,"72755":1,"72756":1,"72757":0,"72758":0,"72759":0,"72760":0,"72761":0,"72762":0,"72763":0,"72764":0,"72765":0,"72766":0,"72767":0,"72768":0,"72769":1,"72770":1,"72771":0,"72772":0,"72773":1,"72774":0,"72775":1,"72776":0,"72777":0,"72778":0,"72779":0,"72780":0,"72781":0,"72782":0,"72783":0,"72784":0,"72785":1,"72786":0,"72787":0,"72788":0,"72789":0,"72790":1,"72791":1,"72792":0,"72793":0,"72794":0,"72795":0,"72796":1,"72797":0,"72798":1,"72799":0,"72800":0,"72801":0,"72802":0,"72803":1,"72804":0,"72805":0,"72806":1,"72807":0,"72808":0,"72809":0,"72810":0,"72811":0,"72812":0,"72813":0,"72814":0,"72815":1,"72816":0,"72817":0,"72818":1,"72819":0,"72820":0,"72821":1,"72822":0,"72823":0,"72824":1,"72825":0,"72826":0,"72827":0,"72828":0,"72829":1,"72830":0,"72831":0,"72832":0,"72833":0,"72834":0,"72835":0,"72836":0,"72837":1,"72838":1,"72839":0,"72840":1,"72841":0,"72842":0,"72843":0,"72844":0,"72845":0,"72846":0,"72847":1,"72848":0,"72849":0,"72850":0,"72851":0,"72852":1,"72853":0,"72854":0,"72855":0,"72856":0,"72857":0,"72858":0,"72859":0,"72860":0,"72861":0,"72862":0,"72863":0,"72864":0,"72865":1,"72866":0,"72867":1,"72868":0,"72869":1,"72870":1,"72871":1,"72872":1,"72873":0,"72874":0,"72875":0,"72876":1,"72877":0,"72878":0,"72879":0,"72880":0,"72881":0,"72882":0,"72883":0,"72884":1,"72885":0,"72886":0,"72887":0,"72888":0,"72889":0,"72890":1,"72891":0,"72892":0,"72893":0,"72894":0,"72895":1,"72896":0,"72897":0,"72898":0,"72899":0,"72900":1,"72901":0,"72902":0,"72903":1,"72904":0,"72905":0,"72906":1,"72907":0,"72908":0,"72909":0,"72910":0,"72911":1,"72912":0,"72913":0,"72914":0,"72915":0,"72916":1,"72917":0,"72918":1,"72919":1,"72920":0,"72921":0,"72922":1,"72923":0,"72924":0,"72925":0,"72926":0,"72927":1,"72928":1,"72929":0,"72930":0,"72931":1,"72932":0,"72933":0,"72934":0,"72935":1,"72936":0,"72937":0,"72938":0,"72939":0,"72940":0,"72941":0,"72942":0,"72943":0,"72944":0,"72945":1,"72946":1,"72947":0,"72948":0,"72949":1,"72950":1,"72951":0,"72952":1,"72953":0,"72954":1,"72955":1,"72956":0,"72957":0,"72958":1,"72959":0,"72960":0,"72961":1,"72962":0,"72963":0,"72964":1,"72965":0,"72966":1,"72967":0,"72968":1,"72969":0,"72970":0,"72971":1,"72972":0,"72973":0,"72974":1,"72975":0,"72976":1,"72977":0,"72978":0,"72979":0,"72980":0,"72981":0,"72982":0,"72983":1,"72984":0,"72985":0,"72986":0,"72987":0,"72988":0,"72989":0,"72990":0,"72991":0,"72992":0,"72993":0,"72994":0,"72995":1,"72996":0,"72997":0,"72998":0,"72999":0,"73000":0,"73001":0,"73002":0,"73003":0,"73004":0,"73005":1,"73006":0,"73007":0,"73008":0,"73009":0,"73010":0,"73011":0,"73012":0,"73013":1,"73014":0,"73015":0,"73016":0,"73017":0,"73018":0,"73019":0,"73020":0,"73021":0,"73022":0,"73023":0,"73024":1,"73025":1,"73026":0,"73027":0,"73028":0,"73029":0,"73030":1,"73031":1,"73032":1,"73033":0,"73034":0,"73035":0,"73036":0,"73037":0,"73038":0,"73039":0,"73040":0,"73041":1,"73042":1,"73043":0,"73044":0,"73045":0,"73046":0,"73047":0,"73048":0,"73049":0,"73050":0,"73051":0,"73052":0,"73053":0,"73054":0,"73055":0,"73056":0,"73057":1,"73058":0,"73059":1,"73060":1,"73061":1,"73062":0,"73063":0,"73064":0,"73065":1,"73066":0,"73067":0,"73068":1,"73069":0,"73070":0,"73071":0,"73072":0,"73073":0,"73074":0,"73075":0,"73076":0,"73077":0,"73078":0,"73079":0,"73080":0,"73081":1,"73082":0,"73083":0,"73084":1,"73085":0,"73086":1,"73087":0,"73088":0,"73089":0,"73090":0,"73091":1,"73092":0,"73093":0,"73094":0,"73095":0,"73096":0,"73097":0,"73098":0,"73099":0,"73100":1,"73101":0,"73102":0,"73103":0,"73104":0,"73105":0,"73106":0,"73107":0,"73108":0,"73109":0,"73110":0,"73111":0,"73112":1,"73113":0,"73114":0,"73115":0,"73116":0,"73117":0,"73118":0,"73119":1,"73120":0,"73121":0,"73122":0,"73123":0,"73124":1,"73125":1,"73126":0,"73127":0,"73128":0,"73129":0,"73130":1,"73131":0,"73132":0,"73133":1,"73134":0,"73135":0,"73136":1,"73137":0,"73138":1,"73139":0,"73140":0,"73141":0,"73142":1,"73143":0,"73144":0,"73145":0,"73146":0,"73147":1,"73148":0,"73149":0,"73150":0,"73151":1,"73152":0,"73153":0,"73154":0,"73155":0,"73156":1,"73157":0,"73158":0,"73159":0,"73160":0,"73161":0,"73162":0,"73163":0,"73164":0,"73165":0,"73166":1,"73167":1,"73168":0,"73169":1,"73170":0,"73171":0,"73172":0,"73173":0,"73174":0,"73175":0,"73176":0,"73177":0,"73178":0,"73179":0,"73180":0,"73181":1,"73182":0,"73183":1,"73184":0,"73185":1,"73186":1,"73187":0,"73188":0,"73189":0,"73190":1,"73191":0,"73192":0,"73193":1,"73194":1,"73195":0,"73196":0,"73197":0,"73198":0,"73199":0,"73200":1,"73201":0,"73202":0,"73203":1,"73204":1,"73205":0,"73206":0,"73207":0,"73208":0,"73209":0,"73210":0,"73211":1,"73212":0,"73213":0,"73214":0,"73215":0,"73216":0,"73217":1,"73218":1,"73219":0,"73220":0,"73221":0,"73222":1,"73223":1,"73224":0,"73225":1,"73226":0,"73227":0,"73228":0,"73229":0,"73230":0,"73231":0,"73232":0,"73233":0,"73234":0,"73235":0,"73236":0,"73237":0,"73238":0,"73239":1,"73240":1,"73241":0,"73242":0,"73243":0,"73244":0,"73245":0,"73246":0,"73247":1,"73248":0,"73249":0,"73250":0,"73251":1,"73252":0,"73253":0,"73254":0,"73255":0,"73256":1,"73257":0,"73258":0,"73259":0,"73260":1,"73261":0,"73262":0,"73263":0,"73264":1,"73265":0,"73266":0,"73267":0,"73268":0,"73269":0,"73270":0,"73271":0,"73272":0,"73273":0,"73274":1,"73275":0,"73276":0,"73277":0,"73278":0,"73279":0,"73280":0,"73281":0,"73282":0,"73283":0,"73284":0,"73285":0,"73286":0,"73287":1,"73288":0,"73289":0,"73290":0,"73291":0,"73292":0,"73293":0,"73294":1,"73295":0,"73296":0,"73297":0,"73298":0,"73299":0,"73300":0,"73301":1,"73302":1,"73303":0,"73304":0,"73305":0,"73306":0,"73307":0,"73308":0,"73309":0,"73310":0,"73311":0,"73312":0,"73313":1,"73314":0,"73315":0,"73316":0,"73317":1,"73318":0,"73319":1,"73320":0,"73321":0,"73322":0,"73323":0,"73324":0,"73325":0,"73326":0,"73327":0,"73328":0,"73329":0,"73330":0,"73331":0,"73332":0,"73333":0,"73334":0,"73335":0,"73336":0,"73337":0,"73338":0,"73339":0,"73340":1,"73341":0,"73342":0,"73343":0,"73344":0,"73345":0,"73346":1,"73347":1,"73348":0,"73349":0,"73350":0,"73351":0,"73352":0,"73353":0,"73354":0,"73355":0,"73356":0,"73357":1,"73358":0,"73359":0,"73360":0,"73361":0,"73362":0,"73363":0,"73364":0,"73365":0,"73366":1,"73367":0,"73368":0,"73369":1,"73370":1,"73371":0,"73372":0,"73373":0,"73374":0,"73375":0,"73376":0,"73377":0,"73378":1,"73379":0,"73380":0,"73381":0,"73382":0,"73383":0,"73384":0,"73385":0,"73386":0,"73387":1,"73388":0,"73389":0,"73390":1,"73391":0,"73392":0,"73393":0,"73394":1,"73395":1,"73396":0,"73397":0,"73398":0,"73399":0,"73400":1,"73401":0,"73402":0,"73403":0,"73404":0,"73405":0,"73406":1,"73407":0,"73408":1,"73409":1,"73410":0,"73411":1,"73412":0,"73413":1,"73414":0,"73415":0,"73416":0,"73417":0,"73418":0,"73419":0,"73420":0,"73421":0,"73422":0,"73423":0,"73424":0,"73425":0,"73426":0,"73427":0,"73428":1,"73429":0,"73430":0,"73431":0,"73432":0,"73433":0,"73434":0,"73435":1,"73436":0,"73437":1,"73438":1,"73439":0,"73440":1,"73441":0,"73442":0,"73443":0,"73444":0,"73445":1,"73446":0,"73447":0,"73448":1,"73449":1,"73450":0,"73451":0,"73452":0,"73453":0,"73454":1,"73455":1,"73456":0,"73457":0,"73458":1,"73459":0,"73460":0,"73461":0,"73462":1,"73463":0,"73464":0,"73465":0,"73466":0,"73467":0,"73468":0,"73469":0,"73470":0,"73471":0,"73472":1,"73473":0,"73474":0,"73475":0,"73476":1,"73477":1,"73478":1,"73479":1,"73480":0,"73481":0,"73482":1,"73483":0,"73484":0,"73485":0,"73486":0,"73487":0,"73488":0,"73489":0,"73490":1,"73491":0,"73492":1,"73493":0,"73494":1,"73495":0,"73496":0,"73497":0,"73498":0,"73499":0,"73500":1,"73501":1,"73502":0,"73503":0,"73504":0,"73505":0,"73506":1,"73507":1,"73508":0,"73509":0,"73510":0,"73511":1,"73512":0,"73513":1,"73514":0,"73515":0,"73516":1,"73517":0,"73518":0,"73519":0,"73520":0,"73521":0,"73522":0,"73523":0,"73524":1,"73525":1,"73526":0,"73527":1,"73528":0,"73529":1,"73530":0,"73531":1,"73532":0,"73533":0,"73534":1,"73535":0,"73536":0,"73537":0,"73538":0,"73539":1,"73540":1,"73541":0,"73542":0,"73543":0,"73544":1,"73545":0,"73546":0,"73547":1,"73548":0,"73549":1,"73550":0,"73551":0,"73552":0,"73553":0,"73554":0,"73555":1,"73556":0,"73557":0,"73558":0,"73559":0,"73560":0,"73561":1,"73562":0,"73563":0,"73564":0,"73565":0,"73566":1,"73567":1,"73568":0,"73569":1,"73570":0,"73571":1,"73572":0,"73573":0,"73574":0,"73575":0,"73576":0,"73577":0,"73578":0,"73579":0,"73580":1,"73581":0,"73582":0,"73583":0,"73584":0,"73585":0,"73586":0,"73587":1,"73588":1,"73589":0,"73590":0,"73591":0,"73592":0,"73593":0,"73594":0,"73595":1,"73596":0,"73597":0,"73598":0,"73599":0,"73600":0,"73601":1,"73602":0,"73603":1,"73604":1,"73605":0,"73606":0,"73607":1,"73608":0,"73609":0,"73610":0,"73611":0,"73612":0,"73613":0,"73614":0,"73615":1,"73616":0,"73617":0,"73618":0,"73619":0,"73620":0,"73621":1,"73622":0,"73623":0,"73624":0,"73625":0,"73626":0,"73627":0,"73628":0,"73629":0,"73630":0,"73631":0,"73632":0,"73633":1,"73634":0,"73635":0,"73636":1,"73637":0,"73638":0,"73639":0,"73640":0,"73641":0,"73642":0,"73643":0,"73644":1,"73645":0,"73646":0,"73647":1,"73648":0,"73649":0,"73650":0,"73651":0,"73652":0,"73653":0,"73654":0,"73655":0,"73656":0,"73657":0,"73658":1,"73659":0,"73660":1,"73661":1,"73662":0,"73663":0,"73664":0,"73665":1,"73666":0,"73667":0,"73668":0,"73669":1,"73670":0,"73671":0,"73672":0,"73673":0,"73674":0,"73675":0,"73676":0,"73677":0,"73678":0,"73679":0,"73680":0,"73681":1,"73682":0,"73683":0,"73684":0,"73685":1,"73686":0,"73687":0,"73688":0,"73689":0,"73690":1,"73691":0,"73692":0,"73693":1,"73694":0,"73695":0,"73696":1,"73697":0,"73698":0,"73699":0,"73700":1,"73701":0,"73702":0,"73703":0,"73704":1,"73705":0,"73706":0,"73707":0,"73708":0,"73709":1,"73710":0,"73711":1,"73712":0,"73713":0,"73714":0,"73715":0,"73716":0,"73717":1,"73718":0,"73719":1,"73720":1,"73721":0,"73722":0,"73723":0,"73724":1,"73725":1,"73726":0,"73727":0,"73728":0,"73729":1,"73730":0,"73731":1,"73732":1,"73733":1,"73734":0,"73735":0,"73736":1,"73737":0,"73738":0,"73739":0,"73740":1,"73741":0,"73742":0,"73743":0,"73744":1,"73745":0,"73746":0,"73747":0,"73748":0,"73749":0,"73750":0,"73751":0,"73752":0,"73753":0,"73754":0,"73755":0,"73756":0,"73757":0,"73758":0,"73759":0,"73760":1,"73761":0,"73762":1,"73763":0,"73764":0,"73765":0,"73766":0,"73767":0,"73768":0,"73769":1,"73770":0,"73771":0,"73772":0,"73773":0,"73774":0,"73775":0,"73776":0,"73777":0,"73778":0,"73779":1,"73780":0,"73781":0,"73782":0,"73783":1,"73784":0,"73785":1,"73786":0,"73787":0,"73788":1,"73789":0,"73790":1,"73791":0,"73792":0,"73793":1,"73794":0,"73795":0,"73796":0,"73797":0,"73798":0,"73799":0,"73800":0,"73801":1,"73802":1,"73803":1,"73804":0,"73805":1,"73806":0},"indivfacid_1":{"0":-1,"1":-1,"2":-1,"3":-1,"4":-1,"5":0,"6":-1,"7":-1,"8":-1,"9":-1,"10":-1,"11":-1,"12":-1,"13":-1,"14":-1,"15":2687,"16":-1,"17":-1,"18":-1,"19":-1,"20":2685,"21":-1,"22":-1,"23":-1,"24":-1,"25":2686,"26":-1,"27":-1,"28":2684,"29":-1,"30":-1,"31":-1,"32":-1,"33":-1,"34":-1,"35":0,"36":-1,"37":-1,"38":-1,"39":-1,"40":-1,"41":-1,"42":-1,"43":2686,"44":-1,"45":-1,"46":-1,"47":-1,"48":2682,"49":-1,"50":-1,"51":-1,"52":-1,"53":-1,"54":-1,"55":-1,"56":-1,"57":-1,"58":-1,"59":-1,"60":2681,"61":-1,"62":-1,"63":-1,"64":-1,"65":-1,"66":-1,"67":-1,"68":-1,"69":-1,"70":-1,"71":-1,"72":-1,"73":-1,"74":2682,"75":-1,"76":-1,"77":-1,"78":-1,"79":-1,"80":-1,"81":-1,"82":-1,"83":-1,"84":-1,"85":-1,"86":-1,"87":-1,"88":-1,"89":-1,"90":-1,"91":-1,"92":-1,"93":-1,"94":-1,"95":-1,"96":-1,"97":-1,"98":0,"99":-1,"100":-1,"101":-1,"102":-1,"103":-1,"104":-1,"105":-1,"106":-1,"107":0,"108":-1,"109":-1,"110":-1,"111":2681,"112":2685,"113":2687,"114":-1,"115":-1,"116":-1,"117":2684,"118":-1,"119":-1,"120":-1,"121":-1,"122":2685,"123":-1,"124":2686,"125":2685,"126":2686,"127":2682,"128":-1,"129":-1,"130":-1,"131":2685,"132":-1,"133":-1,"134":-1,"135":2686,"136":-1,"137":-1,"138":-1,"139":2682,"140":2685,"141":-1,"142":-1,"143":-1,"144":-1,"145":-1,"146":-1,"147":-1,"148":-1,"149":-1,"150":-1,"151":-1,"152":2681,"153":2686,"154":-1,"155":-1,"156":-1,"157":-1,"158":-1,"159":-1,"160":-1,"161":-1,"162":0,"163":-1,"164":-1,"165":-1,"166":-1,"167":2685,"168":-1,"169":-1,"170":-1,"171":-1,"172":2684,"173":-1,"174":2683,"175":-1,"176":-1,"177":-1,"178":-1,"179":-1,"180":0,"181":-1,"182":-1,"183":-1,"184":-1,"185":-1,"186":-1,"187":-1,"188":-1,"189":-1,"190":-1,"191":-1,"192":-1,"193":-1,"194":-1,"195":-1,"196":2682,"197":-1,"198":-1,"199":-1,"200":-1,"201":-1,"202":-1,"203":-1,"204":-1,"205":-1,"206":-1,"207":2683,"208":-1,"209":2685,"210":-1,"211":-1,"212":-1,"213":-1,"214":-1,"215":-1,"216":-1,"217":-1,"218":-1,"219":-1,"220":-1,"221":-1,"222":-1,"223":2683,"224":-1,"225":-1,"226":0,"227":-1,"228":-1,"229":-1,"230":-1,"231":-1,"232":2684,"233":-1,"234":2685,"235":-1,"236":0,"237":2682,"238":-1,"239":2683,"240":-1,"241":-1,"242":-1,"243":-1,"244":-1,"245":-1,"246":2685,"247":-1,"248":-1,"249":0,"250":-1,"251":2682,"252":-1,"253":-1,"254":-1,"255":-1,"256":-1,"257":-1,"258":-1,"259":-1,"260":-1,"261":-1,"262":-1,"263":-1,"264":-1,"265":-1,"266":-1,"267":-1,"268":-1,"269":-1,"270":-1,"271":-1,"272":2682,"273":-1,"274":-1,"275":2682,"276":-1,"277":-1,"278":2683,"279":-1,"280":2684,"281":-1,"282":-1,"283":-1,"284":-1,"285":-1,"286":-1,"287":-1,"288":-1,"289":-1,"290":0,"291":-1,"292":-1,"293":-1,"294":-1,"295":2685,"296":-1,"297":-1,"298":-1,"299":-1,"300":-1,"301":-1,"302":-1,"303":-1,"304":-1,"305":-1,"306":0,"307":-1,"308":-1,"309":-1,"310":-1,"311":-1,"312":-1,"313":-1,"314":-1,"315":-1,"316":-1,"317":-1,"318":2683,"319":-1,"320":-1,"321":-1,"322":-1,"323":-1,"324":-1,"325":-1,"326":-1,"327":-1,"328":-1,"329":-1,"330":-1,"331":-1,"332":-1,"333":-1,"334":0,"335":-1,"336":-1,"337":-1,"338":-1,"339":-1,"340":-1,"341":-1,"342":-1,"343":2685,"344":-1,"345":-1,"346":-1,"347":2683,"348":-1,"349":-1,"350":-1,"351":-1,"352":-1,"353":-1,"354":-1,"355":0,"356":-1,"357":-1,"358":-1,"359":-1,"360":-1,"361":-1,"362":-1,"363":-1,"364":2681,"365":-1,"366":-1,"367":-1,"368":-1,"369":-1,"370":-1,"371":-1,"372":-1,"373":-1,"374":-1,"375":-1,"376":-1,"377":-1,"378":2687,"379":-1,"380":2687,"381":-1,"382":-1,"383":-1,"384":-1,"385":2686,"386":-1,"387":-1,"388":-1,"389":2686,"390":-1,"391":2684,"392":-1,"393":-1,"394":-1,"395":-1,"396":-1,"397":-1,"398":-1,"399":-1,"400":-1,"401":-1,"402":2685,"403":-1,"404":-1,"405":-1,"406":-1,"407":-1,"408":-1,"409":-1,"410":-1,"411":-1,"412":-1,"413":-1,"414":-1,"415":-1,"416":2681,"417":-1,"418":-1,"419":-1,"420":-1,"421":-1,"422":-1,"423":-1,"424":-1,"425":0,"426":-1,"427":2687,"428":-1,"429":-1,"430":-1,"431":-1,"432":-1,"433":2686,"434":-1,"435":-1,"436":-1,"437":-1,"438":-1,"439":-1,"440":2685,"441":-1,"442":0,"443":-1,"444":-1,"445":-1,"446":2682,"447":-1,"448":2683,"449":0,"450":-1,"451":-1,"452":-1,"453":-1,"454":2684,"455":-1,"456":-1,"457":-1,"458":-1,"459":-1,"460":2686,"461":-1,"462":-1,"463":-1,"464":-1,"465":-1,"466":-1,"467":-1,"468":-1,"469":-1,"470":-1,"471":-1,"472":-1,"473":-1,"474":-1,"475":-1,"476":-1,"477":-1,"478":-1,"479":-1,"480":-1,"481":-1,"482":-1,"483":-1,"484":-1,"485":-1,"486":-1,"487":-1,"488":2685,"489":-1,"490":2687,"491":-1,"492":-1,"493":-1,"494":-1,"495":-1,"496":2683,"497":-1,"498":-1,"499":-1,"500":-1,"501":-1,"502":-1,"503":-1,"504":-1,"505":-1,"506":-1,"507":-1,"508":2685,"509":-1,"510":-1,"511":-1,"512":0,"513":-1,"514":-1,"515":-1,"516":-1,"517":-1,"518":-1,"519":-1,"520":-1,"521":-1,"522":-1,"523":-1,"524":-1,"525":-1,"526":-1,"527":-1,"528":-1,"529":-1,"530":2684,"531":-1,"532":-1,"533":-1,"534":-1,"535":-1,"536":-1,"537":2683,"538":-1,"539":-1,"540":-1,"541":-1,"542":-1,"543":-1,"544":2682,"545":-1,"546":-1,"547":-1,"548":-1,"549":-1,"550":-1,"551":-1,"552":-1,"553":-1,"554":-1,"555":-1,"556":-1,"557":-1,"558":-1,"559":-1,"560":-1,"561":-1,"562":-1,"563":-1,"564":-1,"565":-1,"566":2683,"567":2685,"568":-1,"569":-1,"570":-1,"571":0,"572":-1,"573":-1,"574":-1,"575":2682,"576":-1,"577":0,"578":-1,"579":-1,"580":-1,"581":-1,"582":-1,"583":-1,"584":-1,"585":2686,"586":-1,"587":2687,"588":-1,"589":-1,"590":-1,"591":-1,"592":-1,"593":-1,"594":-1,"595":-1,"596":2687,"597":-1,"598":-1,"599":-1,"600":2682,"601":-1,"602":-1,"603":-1,"604":-1,"605":-1,"606":-1,"607":-1,"608":-1,"609":-1,"610":-1,"611":-1,"612":-1,"613":-1,"614":-1,"615":-1,"616":-1,"617":-1,"618":-1,"619":-1,"620":-1,"621":2682,"622":-1,"623":-1,"624":2686,"625":2683,"626":2685,"627":-1,"628":-1,"629":-1,"630":0,"631":-1,"632":-1,"633":-1,"634":-1,"635":-1,"636":-1,"637":-1,"638":-1,"639":2687,"640":-1,"641":-1,"642":-1,"643":-1,"644":2681,"645":-1,"646":-1,"647":-1,"648":-1,"649":2685,"650":-1,"651":-1,"652":-1,"653":-1,"654":0,"655":-1,"656":-1,"657":2685,"658":-1,"659":-1,"660":-1,"661":-1,"662":-1,"663":-1,"664":-1,"665":-1,"666":-1,"667":2684,"668":-1,"669":-1,"670":-1,"671":-1,"672":2684,"673":-1,"674":-1,"675":-1,"676":-1,"677":-1,"678":-1,"679":-1,"680":2683,"681":-1,"682":2685,"683":0,"684":-1,"685":-1,"686":-1,"687":-1,"688":-1,"689":2686,"690":-1,"691":0,"692":-1,"693":2682,"694":-1,"695":-1,"696":-1,"697":0,"698":2685,"699":-1,"700":-1,"701":-1,"702":-1,"703":-1,"704":-1,"705":-1,"706":-1,"707":-1,"708":-1,"709":-1,"710":-1,"711":-1,"712":-1,"713":-1,"714":2685,"715":-1,"716":-1,"717":-1,"718":-1,"719":-1,"720":-1,"721":-1,"722":-1,"723":-1,"724":-1,"725":-1,"726":-1,"727":0,"728":-1,"729":-1,"730":-1,"731":-1,"732":2682,"733":-1,"734":-1,"735":2685,"736":-1,"737":-1,"738":-1,"739":-1,"740":-1,"741":-1,"742":-1,"743":2683,"744":-1,"745":2687,"746":-1,"747":-1,"748":-1,"749":2686,"750":2682,"751":0,"752":-1,"753":0,"754":-1,"755":-1,"756":-1,"757":2686,"758":-1,"759":-1,"760":-1,"761":-1,"762":-1,"763":-1,"764":-1,"765":-1,"766":-1,"767":-1,"768":-1,"769":-1,"770":-1,"771":-1,"772":2686,"773":-1,"774":-1,"775":-1,"776":-1,"777":-1,"778":2682,"779":-1,"780":-1,"781":0,"782":-1,"783":-1,"784":-1,"785":-1,"786":-1,"787":0,"788":-1,"789":-1,"790":-1,"791":-1,"792":-1,"793":-1,"794":-1,"795":0,"796":-1,"797":-1,"798":2687,"799":-1,"800":-1,"801":-1,"802":-1,"803":-1,"804":-1,"805":-1,"806":0,"807":-1,"808":-1,"809":-1,"810":2683,"811":-1,"812":-1,"813":-1,"814":-1,"815":-1,"816":2684,"817":2685,"818":-1,"819":-1,"820":-1,"821":-1,"822":2686,"823":-1,"824":2683,"825":-1,"826":-1,"827":-1,"828":-1,"829":2684,"830":-1,"831":-1,"832":-1,"833":-1,"834":2685,"835":-1,"836":-1,"837":-1,"838":-1,"839":-1,"840":-1,"841":-1,"842":-1,"843":-1,"844":-1,"845":2684,"846":-1,"847":2685,"848":-1,"849":-1,"850":2686,"851":-1,"852":-1,"853":-1,"854":-1,"855":-1,"856":-1,"857":-1,"858":-1,"859":-1,"860":-1,"861":-1,"862":-1,"863":-1,"864":-1,"865":-1,"866":-1,"867":-1,"868":-1,"869":-1,"870":2685,"871":-1,"872":-1,"873":-1,"874":-1,"875":-1,"876":-1,"877":-1,"878":-1,"879":-1,"880":-1,"881":-1,"882":-1,"883":-1,"884":2687,"885":-1,"886":-1,"887":-1,"888":-1,"889":-1,"890":-1,"891":-1,"892":-1,"893":-1,"894":-1,"895":0,"896":0,"897":-1,"898":-1,"899":-1,"900":-1,"901":-1,"902":-1,"903":-1,"904":-1,"905":2685,"906":-1,"907":-1,"908":-1,"909":-1,"910":-1,"911":-1,"912":-1,"913":-1,"914":-1,"915":-1,"916":-1,"917":-1,"918":-1,"919":-1,"920":2682,"921":0,"922":-1,"923":-1,"924":-1,"925":-1,"926":-1,"927":-1,"928":-1,"929":2684,"930":-1,"931":-1,"932":-1,"933":-1,"934":-1,"935":-1,"936":-1,"937":-1,"938":-1,"939":-1,"940":-1,"941":-1,"942":-1,"943":-1,"944":-1,"945":-1,"946":-1,"947":-1,"948":-1,"949":2686,"950":2682,"951":2684,"952":-1,"953":2684,"954":-1,"955":2684,"956":-1,"957":-1,"958":-1,"959":-1,"960":-1,"961":2687,"962":-1,"963":2686,"964":-1,"965":-1,"966":2686,"967":-1,"968":-1,"969":-1,"970":-1,"971":-1,"972":2684,"973":-1,"974":-1,"975":-1,"976":0,"977":2681,"978":-1,"979":-1,"980":-1,"981":-1,"982":2687,"983":-1,"984":-1,"985":2686,"986":-1,"987":-1,"988":-1,"989":-1,"990":-1,"991":-1,"992":2681,"993":-1,"994":-1,"995":2685,"996":-1,"997":-1,"998":-1,"999":-1,"1000":-1,"1001":2682,"1002":-1,"1003":-1,"1004":-1,"1005":-1,"1006":-1,"1007":0,"1008":-1,"1009":-1,"1010":-1,"1011":-1,"1012":-1,"1013":-1,"1014":-1,"1015":-1,"1016":-1,"1017":-1,"1018":2685,"1019":-1,"1020":-1,"1021":-1,"1022":0,"1023":-1,"1024":-1,"1025":-1,"1026":-1,"1027":-1,"1028":2684,"1029":-1,"1030":-1,"1031":-1,"1032":2681,"1033":-1,"1034":0,"1035":-1,"1036":-1,"1037":-1,"1038":-1,"1039":-1,"1040":-1,"1041":-1,"1042":-1,"1043":-1,"1044":0,"1045":-1,"1046":-1,"1047":2682,"1048":-1,"1049":-1,"1050":-1,"1051":-1,"1052":-1,"1053":2682,"1054":-1,"1055":-1,"1056":-1,"1057":-1,"1058":-1,"1059":-1,"1060":-1,"1061":-1,"1062":-1,"1063":2684,"1064":-1,"1065":-1,"1066":-1,"1067":-1,"1068":-1,"1069":2683,"1070":-1,"1071":-1,"1072":-1,"1073":-1,"1074":-1,"1075":2683,"1076":-1,"1077":-1,"1078":-1,"1079":-1,"1080":-1,"1081":-1,"1082":-1,"1083":2681,"1084":-1,"1085":-1,"1086":-1,"1087":2682,"1088":-1,"1089":-1,"1090":-1,"1091":-1,"1092":-1,"1093":-1,"1094":2683,"1095":-1,"1096":-1,"1097":-1,"1098":-1,"1099":-1,"1100":-1,"1101":-1,"1102":-1,"1103":-1,"1104":-1,"1105":-1,"1106":-1,"1107":-1,"1108":-1,"1109":-1,"1110":-1,"1111":-1,"1112":-1,"1113":-1,"1114":-1,"1115":-1,"1116":2682,"1117":-1,"1118":-1,"1119":-1,"1120":-1,"1121":-1,"1122":-1,"1123":-1,"1124":-1,"1125":-1,"1126":2687,"1127":-1,"1128":-1,"1129":-1,"1130":-1,"1131":-1,"1132":-1,"1133":-1,"1134":-1,"1135":-1,"1136":-1,"1137":-1,"1138":-1,"1139":2685,"1140":-1,"1141":-1,"1142":-1,"1143":2683,"1144":-1,"1145":-1,"1146":-1,"1147":2683,"1148":-1,"1149":-1,"1150":-1,"1151":-1,"1152":-1,"1153":-1,"1154":-1,"1155":-1,"1156":-1,"1157":-1,"1158":0,"1159":-1,"1160":-1,"1161":2686,"1162":-1,"1163":-1,"1164":-1,"1165":-1,"1166":2683,"1167":-1,"1168":-1,"1169":-1,"1170":2684,"1171":-1,"1172":-1,"1173":2682,"1174":-1,"1175":-1,"1176":-1,"1177":-1,"1178":-1,"1179":-1,"1180":-1,"1181":-1,"1182":-1,"1183":2683,"1184":0,"1185":-1,"1186":-1,"1187":-1,"1188":-1,"1189":-1,"1190":-1,"1191":-1,"1192":-1,"1193":-1,"1194":-1,"1195":-1,"1196":2684,"1197":-1,"1198":2685,"1199":2683,"1200":-1,"1201":-1,"1202":-1,"1203":-1,"1204":2686,"1205":-1,"1206":-1,"1207":-1,"1208":2683,"1209":-1,"1210":2685,"1211":-1,"1212":-1,"1213":-1,"1214":2685,"1215":-1,"1216":2683,"1217":2683,"1218":-1,"1219":-1,"1220":-1,"1221":-1,"1222":-1,"1223":-1,"1224":-1,"1225":-1,"1226":-1,"1227":-1,"1228":-1,"1229":-1,"1230":-1,"1231":-1,"1232":-1,"1233":-1,"1234":-1,"1235":2681,"1236":2683,"1237":-1,"1238":-1,"1239":-1,"1240":-1,"1241":-1,"1242":-1,"1243":-1,"1244":-1,"1245":-1,"1246":-1,"1247":-1,"1248":-1,"1249":-1,"1250":0,"1251":-1,"1252":-1,"1253":-1,"1254":-1,"1255":-1,"1256":-1,"1257":-1,"1258":-1,"1259":-1,"1260":-1,"1261":-1,"1262":-1,"1263":-1,"1264":-1,"1265":-1,"1266":-1,"1267":-1,"1268":-1,"1269":-1,"1270":-1,"1271":-1,"1272":-1,"1273":-1,"1274":-1,"1275":-1,"1276":-1,"1277":0,"1278":-1,"1279":-1,"1280":-1,"1281":-1,"1282":2684,"1283":-1,"1284":-1,"1285":-1,"1286":-1,"1287":-1,"1288":-1,"1289":-1,"1290":-1,"1291":-1,"1292":-1,"1293":-1,"1294":-1,"1295":-1,"1296":-1,"1297":-1,"1298":2687,"1299":-1,"1300":2684,"1301":-1,"1302":-1,"1303":-1,"1304":2687,"1305":-1,"1306":-1,"1307":-1,"1308":-1,"1309":-1,"1310":-1,"1311":-1,"1312":-1,"1313":0,"1314":-1,"1315":-1,"1316":-1,"1317":-1,"1318":-1,"1319":0,"1320":-1,"1321":0,"1322":-1,"1323":-1,"1324":-1,"1325":-1,"1326":-1,"1327":-1,"1328":-1,"1329":-1,"1330":-1,"1331":-1,"1332":0,"1333":-1,"1334":0,"1335":-1,"1336":-1,"1337":2686,"1338":-1,"1339":2685,"1340":-1,"1341":0,"1342":2686,"1343":-1,"1344":-1,"1345":-1,"1346":2682,"1347":-1,"1348":2686,"1349":-1,"1350":-1,"1351":-1,"1352":-1,"1353":-1,"1354":-1,"1355":-1,"1356":-1,"1357":-1,"1358":2686,"1359":-1,"1360":-1,"1361":-1,"1362":-1,"1363":-1,"1364":-1,"1365":-1,"1366":-1,"1367":-1,"1368":-1,"1369":-1,"1370":-1,"1371":-1,"1372":2681,"1373":-1,"1374":-1,"1375":-1,"1376":-1,"1377":-1,"1378":-1,"1379":-1,"1380":-1,"1381":-1,"1382":-1,"1383":-1,"1384":-1,"1385":-1,"1386":-1,"1387":-1,"1388":-1,"1389":-1,"1390":-1,"1391":-1,"1392":-1,"1393":-1,"1394":0,"1395":-1,"1396":-1,"1397":-1,"1398":-1,"1399":-1,"1400":-1,"1401":-1,"1402":2683,"1403":-1,"1404":2682,"1405":-1,"1406":-1,"1407":-1,"1408":-1,"1409":-1,"1410":-1,"1411":2683,"1412":2684,"1413":-1,"1414":-1,"1415":-1,"1416":-1,"1417":-1,"1418":-1,"1419":-1,"1420":-1,"1421":-1,"1422":-1,"1423":-1,"1424":-1,"1425":-1,"1426":2681,"1427":-1,"1428":-1,"1429":-1,"1430":2684,"1431":-1,"1432":-1,"1433":-1,"1434":-1,"1435":-1,"1436":-1,"1437":-1,"1438":-1,"1439":-1,"1440":-1,"1441":-1,"1442":-1,"1443":-1,"1444":-1,"1445":-1,"1446":-1,"1447":-1,"1448":-1,"1449":-1,"1450":-1,"1451":0,"1452":-1,"1453":0,"1454":-1,"1455":2684,"1456":2682,"1457":-1,"1458":-1,"1459":-1,"1460":-1,"1461":2681,"1462":-1,"1463":-1,"1464":-1,"1465":2686,"1466":-1,"1467":-1,"1468":-1,"1469":-1,"1470":-1,"1471":2684,"1472":-1,"1473":2685,"1474":-1,"1475":2683,"1476":-1,"1477":2682,"1478":-1,"1479":-1,"1480":2682,"1481":-1,"1482":-1,"1483":-1,"1484":-1,"1485":0,"1486":0,"1487":-1,"1488":-1,"1489":-1,"1490":-1,"1491":-1,"1492":-1,"1493":-1,"1494":-1,"1495":-1,"1496":-1,"1497":-1,"1498":-1,"1499":-1,"1500":-1,"1501":2686,"1502":-1,"1503":2682,"1504":-1,"1505":-1,"1506":0,"1507":-1,"1508":-1,"1509":-1,"1510":-1,"1511":-1,"1512":-1,"1513":-1,"1514":2687,"1515":-1,"1516":-1,"1517":-1,"1518":-1,"1519":-1,"1520":-1,"1521":-1,"1522":-1,"1523":-1,"1524":0,"1525":-1,"1526":-1,"1527":-1,"1528":-1,"1529":2681,"1530":-1,"1531":2683,"1532":-1,"1533":-1,"1534":-1,"1535":-1,"1536":-1,"1537":-1,"1538":-1,"1539":-1,"1540":2682,"1541":-1,"1542":-1,"1543":-1,"1544":2684,"1545":-1,"1546":0,"1547":-1,"1548":-1,"1549":-1,"1550":-1,"1551":-1,"1552":-1,"1553":-1,"1554":-1,"1555":-1,"1556":-1,"1557":-1,"1558":-1,"1559":2682,"1560":-1,"1561":-1,"1562":-1,"1563":-1,"1564":-1,"1565":-1,"1566":-1,"1567":-1,"1568":-1,"1569":-1,"1570":-1,"1571":-1,"1572":-1,"1573":-1,"1574":0,"1575":-1,"1576":-1,"1577":-1,"1578":-1,"1579":2682,"1580":-1,"1581":-1,"1582":2683,"1583":2685,"1584":-1,"1585":2683,"1586":-1,"1587":2687,"1588":-1,"1589":-1,"1590":-1,"1591":-1,"1592":-1,"1593":2686,"1594":-1,"1595":-1,"1596":2681,"1597":-1,"1598":-1,"1599":2683,"1600":-1,"1601":2681,"1602":-1,"1603":-1,"1604":0,"1605":-1,"1606":-1,"1607":-1,"1608":-1,"1609":-1,"1610":-1,"1611":2683,"1612":-1,"1613":-1,"1614":-1,"1615":-1,"1616":-1,"1617":-1,"1618":-1,"1619":-1,"1620":-1,"1621":-1,"1622":-1,"1623":-1,"1624":2686,"1625":-1,"1626":-1,"1627":-1,"1628":-1,"1629":-1,"1630":-1,"1631":-1,"1632":0,"1633":-1,"1634":-1,"1635":-1,"1636":-1,"1637":2686,"1638":-1,"1639":-1,"1640":2683,"1641":-1,"1642":2684,"1643":-1,"1644":-1,"1645":-1,"1646":-1,"1647":-1,"1648":-1,"1649":-1,"1650":-1,"1651":2685,"1652":-1,"1653":0,"1654":-1,"1655":-1,"1656":0,"1657":0,"1658":-1,"1659":-1,"1660":-1,"1661":2682,"1662":-1,"1663":2685,"1664":-1,"1665":-1,"1666":-1,"1667":-1,"1668":-1,"1669":-1,"1670":-1,"1671":-1,"1672":-1,"1673":-1,"1674":-1,"1675":-1,"1676":-1,"1677":-1,"1678":-1,"1679":-1,"1680":-1,"1681":-1,"1682":-1,"1683":0,"1684":-1,"1685":-1,"1686":-1,"1687":0,"1688":-1,"1689":2685,"1690":-1,"1691":-1,"1692":-1,"1693":-1,"1694":-1,"1695":-1,"1696":-1,"1697":-1,"1698":-1,"1699":-1,"1700":-1,"1701":2683,"1702":0,"1703":-1,"1704":-1,"1705":-1,"1706":-1,"1707":-1,"1708":2684,"1709":-1,"1710":-1,"1711":-1,"1712":0,"1713":-1,"1714":-1,"1715":-1,"1716":-1,"1717":0,"1718":-1,"1719":2682,"1720":-1,"1721":2686,"1722":-1,"1723":-1,"1724":-1,"1725":2686,"1726":-1,"1727":-1,"1728":-1,"1729":-1,"1730":-1,"1731":-1,"1732":-1,"1733":-1,"1734":-1,"1735":-1,"1736":-1,"1737":2684,"1738":-1,"1739":-1,"1740":-1,"1741":-1,"1742":-1,"1743":-1,"1744":-1,"1745":2682,"1746":-1,"1747":-1,"1748":-1,"1749":-1,"1750":-1,"1751":-1,"1752":-1,"1753":-1,"1754":-1,"1755":-1,"1756":-1,"1757":-1,"1758":-1,"1759":-1,"1760":-1,"1761":-1,"1762":-1,"1763":2684,"1764":2685,"1765":-1,"1766":-1,"1767":-1,"1768":-1,"1769":-1,"1770":-1,"1771":2683,"1772":-1,"1773":-1,"1774":-1,"1775":-1,"1776":-1,"1777":-1,"1778":2686,"1779":-1,"1780":-1,"1781":2683,"1782":-1,"1783":-1,"1784":-1,"1785":2685,"1786":2682,"1787":-1,"1788":-1,"1789":-1,"1790":-1,"1791":0,"1792":-1,"1793":-1,"1794":-1,"1795":-1,"1796":-1,"1797":-1,"1798":-1,"1799":-1,"1800":-1,"1801":2684,"1802":-1,"1803":-1,"1804":-1,"1805":-1,"1806":-1,"1807":-1,"1808":-1,"1809":-1,"1810":2682,"1811":-1,"1812":-1,"1813":-1,"1814":-1,"1815":-1,"1816":2684,"1817":-1,"1818":2685,"1819":-1,"1820":-1,"1821":-1,"1822":-1,"1823":-1,"1824":-1,"1825":-1,"1826":-1,"1827":-1,"1828":-1,"1829":-1,"1830":0,"1831":-1,"1832":-1,"1833":-1,"1834":-1,"1835":-1,"1836":-1,"1837":-1,"1838":2683,"1839":2685,"1840":0,"1841":-1,"1842":2682,"1843":2686,"1844":-1,"1845":0,"1846":-1,"1847":2683,"1848":-1,"1849":-1,"1850":-1,"1851":-1,"1852":-1,"1853":2683,"1854":-1,"1855":-1,"1856":-1,"1857":-1,"1858":-1,"1859":-1,"1860":-1,"1861":-1,"1862":-1,"1863":-1,"1864":0,"1865":-1,"1866":-1,"1867":-1,"1868":-1,"1869":-1,"1870":2686,"1871":2686,"1872":2685,"1873":-1,"1874":2685,"1875":-1,"1876":-1,"1877":-1,"1878":-1,"1879":-1,"1880":-1,"1881":-1,"1882":-1,"1883":-1,"1884":-1,"1885":-1,"1886":-1,"1887":-1,"1888":-1,"1889":-1,"1890":-1,"1891":-1,"1892":-1,"1893":0,"1894":-1,"1895":-1,"1896":-1,"1897":-1,"1898":-1,"1899":-1,"1900":-1,"1901":-1,"1902":-1,"1903":-1,"1904":-1,"1905":-1,"1906":-1,"1907":2683,"1908":-1,"1909":-1,"1910":-1,"1911":-1,"1912":-1,"1913":-1,"1914":-1,"1915":-1,"1916":2686,"1917":-1,"1918":-1,"1919":-1,"1920":2687,"1921":0,"1922":-1,"1923":2682,"1924":-1,"1925":-1,"1926":-1,"1927":-1,"1928":-1,"1929":-1,"1930":-1,"1931":-1,"1932":-1,"1933":-1,"1934":-1,"1935":-1,"1936":-1,"1937":-1,"1938":-1,"1939":0,"1940":-1,"1941":-1,"1942":-1,"1943":2686,"1944":-1,"1945":-1,"1946":2685,"1947":-1,"1948":-1,"1949":-1,"1950":2685,"1951":-1,"1952":-1,"1953":-1,"1954":2685,"1955":-1,"1956":-1,"1957":-1,"1958":-1,"1959":-1,"1960":-1,"1961":-1,"1962":-1,"1963":-1,"1964":-1,"1965":-1,"1966":0,"1967":-1,"1968":-1,"1969":-1,"1970":-1,"1971":-1,"1972":-1,"1973":-1,"1974":-1,"1975":0,"1976":-1,"1977":0,"1978":-1,"1979":-1,"1980":-1,"1981":-1,"1982":-1,"1983":-1,"1984":-1,"1985":-1,"1986":-1,"1987":-1,"1988":-1,"1989":-1,"1990":-1,"1991":-1,"1992":-1,"1993":-1,"1994":-1,"1995":-1,"1996":-1,"1997":-1,"1998":-1,"1999":-1,"2000":-1,"2001":2682,"2002":-1,"2003":-1,"2004":-1,"2005":-1,"2006":-1,"2007":-1,"2008":-1,"2009":-1,"2010":-1,"2011":-1,"2012":-1,"2013":-1,"2014":-1,"2015":-1,"2016":-1,"2017":-1,"2018":2683,"2019":0,"2020":-1,"2021":-1,"2022":2686,"2023":-1,"2024":-1,"2025":-1,"2026":-1,"2027":-1,"2028":-1,"2029":-1,"2030":-1,"2031":-1,"2032":-1,"2033":-1,"2034":-1,"2035":2686,"2036":-1,"2037":-1,"2038":-1,"2039":-1,"2040":-1,"2041":-1,"2042":-1,"2043":2682,"2044":2687,"2045":-1,"2046":2686,"2047":-1,"2048":-1,"2049":-1,"2050":-1,"2051":-1,"2052":2684,"2053":-1,"2054":-1,"2055":-1,"2056":-1,"2057":-1,"2058":-1,"2059":-1,"2060":-1,"2061":-1,"2062":-1,"2063":-1,"2064":-1,"2065":-1,"2066":-1,"2067":-1,"2068":-1,"2069":-1,"2070":-1,"2071":2686,"2072":-1,"2073":-1,"2074":-1,"2075":-1,"2076":-1,"2077":2685,"2078":-1,"2079":-1,"2080":-1,"2081":2686,"2082":-1,"2083":-1,"2084":-1,"2085":-1,"2086":-1,"2087":-1,"2088":-1,"2089":-1,"2090":-1,"2091":2681,"2092":-1,"2093":-1,"2094":-1,"2095":-1,"2096":-1,"2097":-1,"2098":-1,"2099":-1,"2100":-1,"2101":2683,"2102":-1,"2103":2682,"2104":-1,"2105":-1,"2106":-1,"2107":-1,"2108":-1,"2109":-1,"2110":2685,"2111":-1,"2112":-1,"2113":-1,"2114":-1,"2115":-1,"2116":-1,"2117":-1,"2118":-1,"2119":-1,"2120":-1,"2121":2686,"2122":-1,"2123":-1,"2124":-1,"2125":-1,"2126":2682,"2127":-1,"2128":-1,"2129":2683,"2130":-1,"2131":-1,"2132":2683,"2133":-1,"2134":-1,"2135":-1,"2136":-1,"2137":-1,"2138":-1,"2139":-1,"2140":-1,"2141":-1,"2142":-1,"2143":-1,"2144":-1,"2145":-1,"2146":-1,"2147":-1,"2148":0,"2149":-1,"2150":2681,"2151":-1,"2152":-1,"2153":-1,"2154":-1,"2155":-1,"2156":-1,"2157":-1,"2158":-1,"2159":-1,"2160":-1,"2161":-1,"2162":-1,"2163":-1,"2164":-1,"2165":-1,"2166":-1,"2167":-1,"2168":-1,"2169":-1,"2170":-1,"2171":-1,"2172":-1,"2173":-1,"2174":-1,"2175":0,"2176":-1,"2177":-1,"2178":-1,"2179":-1,"2180":2687,"2181":-1,"2182":0,"2183":-1,"2184":-1,"2185":-1,"2186":-1,"2187":-1,"2188":-1,"2189":-1,"2190":-1,"2191":2687,"2192":-1,"2193":2685,"2194":-1,"2195":-1,"2196":-1,"2197":2683,"2198":-1,"2199":-1,"2200":-1,"2201":-1,"2202":-1,"2203":-1,"2204":-1,"2205":0,"2206":-1,"2207":-1,"2208":-1,"2209":-1,"2210":-1,"2211":2682,"2212":2682,"2213":-1,"2214":-1,"2215":-1,"2216":-1,"2217":-1,"2218":-1,"2219":-1,"2220":-1,"2221":0,"2222":-1,"2223":-1,"2224":-1,"2225":-1,"2226":-1,"2227":0,"2228":-1,"2229":-1,"2230":-1,"2231":2683,"2232":-1,"2233":-1,"2234":-1,"2235":-1,"2236":-1,"2237":-1,"2238":-1,"2239":2682,"2240":-1,"2241":-1,"2242":-1,"2243":-1,"2244":2682,"2245":2685,"2246":2681,"2247":2686,"2248":2683,"2249":-1,"2250":-1,"2251":-1,"2252":0,"2253":-1,"2254":-1,"2255":-1,"2256":-1,"2257":-1,"2258":-1,"2259":-1,"2260":-1,"2261":-1,"2262":-1,"2263":-1,"2264":-1,"2265":-1,"2266":2683,"2267":-1,"2268":-1,"2269":-1,"2270":-1,"2271":-1,"2272":-1,"2273":-1,"2274":-1,"2275":-1,"2276":-1,"2277":-1,"2278":2682,"2279":-1,"2280":-1,"2281":-1,"2282":-1,"2283":-1,"2284":-1,"2285":-1,"2286":-1,"2287":-1,"2288":-1,"2289":-1,"2290":-1,"2291":-1,"2292":-1,"2293":-1,"2294":-1,"2295":-1,"2296":-1,"2297":-1,"2298":-1,"2299":0,"2300":-1,"2301":-1,"2302":-1,"2303":2681,"2304":-1,"2305":-1,"2306":-1,"2307":-1,"2308":-1,"2309":2682,"2310":-1,"2311":2682,"2312":-1,"2313":-1,"2314":-1,"2315":0,"2316":-1,"2317":-1,"2318":-1,"2319":-1,"2320":-1,"2321":-1,"2322":-1,"2323":-1,"2324":-1,"2325":-1,"2326":-1,"2327":-1,"2328":-1,"2329":-1,"2330":-1,"2331":-1,"2332":-1,"2333":-1,"2334":-1,"2335":2682,"2336":-1,"2337":-1,"2338":-1,"2339":-1,"2340":-1,"2341":-1,"2342":-1,"2343":-1,"2344":-1,"2345":-1,"2346":-1,"2347":-1,"2348":-1,"2349":-1,"2350":-1,"2351":2685,"2352":-1,"2353":-1,"2354":-1,"2355":-1,"2356":-1,"2357":2683,"2358":-1,"2359":0,"2360":-1,"2361":-1,"2362":-1,"2363":-1,"2364":-1,"2365":-1,"2366":-1,"2367":-1,"2368":-1,"2369":-1,"2370":2683,"2371":-1,"2372":0,"2373":2685,"2374":-1,"2375":-1,"2376":-1,"2377":-1,"2378":-1,"2379":2684,"2380":-1,"2381":-1,"2382":-1,"2383":-1,"2384":-1,"2385":-1,"2386":-1,"2387":-1,"2388":-1,"2389":-1,"2390":-1,"2391":-1,"2392":-1,"2393":-1,"2394":-1,"2395":2686,"2396":-1,"2397":-1,"2398":0,"2399":-1,"2400":-1,"2401":0,"2402":-1,"2403":-1,"2404":-1,"2405":-1,"2406":-1,"2407":-1,"2408":2684,"2409":-1,"2410":-1,"2411":-1,"2412":2687,"2413":-1,"2414":-1,"2415":-1,"2416":-1,"2417":-1,"2418":-1,"2419":2687,"2420":-1,"2421":2682,"2422":-1,"2423":-1,"2424":-1,"2425":-1,"2426":-1,"2427":-1,"2428":-1,"2429":2685,"2430":-1,"2431":-1,"2432":-1,"2433":2687,"2434":-1,"2435":-1,"2436":-1,"2437":-1,"2438":-1,"2439":-1,"2440":-1,"2441":-1,"2442":-1,"2443":2683,"2444":-1,"2445":-1,"2446":-1,"2447":-1,"2448":-1,"2449":-1,"2450":-1,"2451":-1,"2452":-1,"2453":-1,"2454":-1,"2455":-1,"2456":-1,"2457":-1,"2458":-1,"2459":-1,"2460":-1,"2461":-1,"2462":-1,"2463":-1,"2464":-1,"2465":2685,"2466":-1,"2467":-1,"2468":2684,"2469":-1,"2470":-1,"2471":-1,"2472":2682,"2473":-1,"2474":-1,"2475":-1,"2476":-1,"2477":-1,"2478":-1,"2479":-1,"2480":-1,"2481":-1,"2482":-1,"2483":2681,"2484":-1,"2485":-1,"2486":-1,"2487":-1,"2488":-1,"2489":-1,"2490":-1,"2491":-1,"2492":-1,"2493":-1,"2494":-1,"2495":-1,"2496":-1,"2497":-1,"2498":-1,"2499":-1,"2500":2683,"2501":-1,"2502":-1,"2503":-1,"2504":2686,"2505":-1,"2506":-1,"2507":-1,"2508":2685,"2509":-1,"2510":-1,"2511":-1,"2512":-1,"2513":-1,"2514":-1,"2515":-1,"2516":-1,"2517":-1,"2518":-1,"2519":-1,"2520":-1,"2521":-1,"2522":-1,"2523":-1,"2524":-1,"2525":-1,"2526":-1,"2527":-1,"2528":-1,"2529":-1,"2530":-1,"2531":-1,"2532":-1,"2533":-1,"2534":-1,"2535":-1,"2536":-1,"2537":-1,"2538":-1,"2539":-1,"2540":-1,"2541":-1,"2542":-1,"2543":-1,"2544":-1,"2545":-1,"2546":-1,"2547":-1,"2548":-1,"2549":-1,"2550":-1,"2551":-1,"2552":-1,"2553":-1,"2554":-1,"2555":-1,"2556":0,"2557":-1,"2558":-1,"2559":-1,"2560":-1,"2561":-1,"2562":-1,"2563":-1,"2564":-1,"2565":-1,"2566":-1,"2567":2681,"2568":-1,"2569":-1,"2570":-1,"2571":-1,"2572":-1,"2573":-1,"2574":-1,"2575":-1,"2576":-1,"2577":-1,"2578":2687,"2579":-1,"2580":-1,"2581":-1,"2582":-1,"2583":-1,"2584":-1,"2585":-1,"2586":-1,"2587":-1,"2588":-1,"2589":-1,"2590":-1,"2591":2684,"2592":-1,"2593":-1,"2594":-1,"2595":2685,"2596":-1,"2597":2684,"2598":-1,"2599":-1,"2600":-1,"2601":-1,"2602":0,"2603":-1,"2604":-1,"2605":-1,"2606":-1,"2607":-1,"2608":-1,"2609":-1,"2610":-1,"2611":-1,"2612":-1,"2613":-1,"2614":-1,"2615":-1,"2616":-1,"2617":-1,"2618":-1,"2619":-1,"2620":2685,"2621":2681,"2622":-1,"2623":-1,"2624":-1,"2625":-1,"2626":-1,"2627":-1,"2628":-1,"2629":-1,"2630":-1,"2631":-1,"2632":-1,"2633":-1,"2634":-1,"2635":-1,"2636":-1,"2637":-1,"2638":0,"2639":0,"2640":2683,"2641":-1,"2642":-1,"2643":-1,"2644":-1,"2645":-1,"2646":2686,"2647":-1,"2648":-1,"2649":-1,"2650":-1,"2651":-1,"2652":2686,"2653":-1,"2654":-1,"2655":-1,"2656":-1,"2657":-1,"2658":-1,"2659":-1,"2660":-1,"2661":-1,"2662":-1,"2663":2682,"2664":-1,"2665":-1,"2666":-1,"2667":-1,"2668":-1,"2669":-1,"2670":-1,"2671":-1,"2672":2685,"2673":-1,"2674":2684,"2675":-1,"2676":2686,"2677":-1,"2678":-1,"2679":-1,"2680":-1,"2681":-1,"2682":-1,"2683":2682,"2684":-1,"2685":-1,"2686":-1,"2687":2685,"2688":-1,"2689":-1,"2690":2686,"2691":2685,"2692":-1,"2693":-1,"2694":-1,"2695":-1,"2696":-1,"2697":-1,"2698":-1,"2699":-1,"2700":-1,"2701":-1,"2702":-1,"2703":-1,"2704":-1,"2705":2685,"2706":-1,"2707":-1,"2708":-1,"2709":-1,"2710":-1,"2711":-1,"2712":-1,"2713":-1,"2714":-1,"2715":-1,"2716":-1,"2717":0,"2718":-1,"2719":-1,"2720":-1,"2721":-1,"2722":2686,"2723":-1,"2724":-1,"2725":-1,"2726":-1,"2727":2685,"2728":-1,"2729":-1,"2730":-1,"2731":-1,"2732":-1,"2733":2686,"2734":-1,"2735":-1,"2736":-1,"2737":-1,"2738":-1,"2739":-1,"2740":0,"2741":-1,"2742":0,"2743":-1,"2744":-1,"2745":-1,"2746":-1,"2747":-1,"2748":-1,"2749":-1,"2750":-1,"2751":-1,"2752":-1,"2753":-1,"2754":2684,"2755":-1,"2756":-1,"2757":-1,"2758":-1,"2759":2684,"2760":-1,"2761":-1,"2762":-1,"2763":2683,"2764":-1,"2765":-1,"2766":-1,"2767":-1,"2768":-1,"2769":-1,"2770":-1,"2771":-1,"2772":-1,"2773":2681,"2774":-1,"2775":-1,"2776":-1,"2777":-1,"2778":-1,"2779":-1,"2780":-1,"2781":-1,"2782":-1,"2783":-1,"2784":-1,"2785":-1,"2786":-1,"2787":-1,"2788":-1,"2789":2682,"2790":2685,"2791":-1,"2792":-1,"2793":-1,"2794":2683,"2795":-1,"2796":-1,"2797":-1,"2798":-1,"2799":2685,"2800":-1,"2801":-1,"2802":-1,"2803":-1,"2804":2682,"2805":-1,"2806":-1,"2807":-1,"2808":-1,"2809":-1,"2810":-1,"2811":-1,"2812":-1,"2813":-1,"2814":-1,"2815":-1,"2816":-1,"2817":-1,"2818":-1,"2819":-1,"2820":-1,"2821":-1,"2822":-1,"2823":-1,"2824":-1,"2825":-1,"2826":-1,"2827":-1,"2828":-1,"2829":-1,"2830":-1,"2831":-1,"2832":-1,"2833":-1,"2834":-1,"2835":-1,"2836":-1,"2837":0,"2838":-1,"2839":-1,"2840":-1,"2841":-1,"2842":-1,"2843":-1,"2844":-1,"2845":-1,"2846":2682,"2847":-1,"2848":-1,"2849":-1,"2850":-1,"2851":-1,"2852":-1,"2853":-1,"2854":-1,"2855":-1,"2856":-1,"2857":-1,"2858":-1,"2859":-1,"2860":-1,"2861":-1,"2862":-1,"2863":-1,"2864":-1,"2865":-1,"2866":2684,"2867":2684,"2868":-1,"2869":-1,"2870":-1,"2871":-1,"2872":-1,"2873":-1,"2874":0,"2875":0,"2876":-1,"2877":-1,"2878":-1,"2879":-1,"2880":-1,"2881":-1,"2882":-1,"2883":2682,"2884":-1,"2885":2681,"2886":-1,"2887":-1,"2888":-1,"2889":-1,"2890":-1,"2891":-1,"2892":-1,"2893":-1,"2894":-1,"2895":-1,"2896":2686,"2897":-1,"2898":-1,"2899":-1,"2900":-1,"2901":-1,"2902":2685,"2903":-1,"2904":-1,"2905":-1,"2906":-1,"2907":-1,"2908":-1,"2909":-1,"2910":-1,"2911":-1,"2912":-1,"2913":-1,"2914":-1,"2915":-1,"2916":-1,"2917":-1,"2918":-1,"2919":-1,"2920":2685,"2921":-1,"2922":0,"2923":-1,"2924":2687,"2925":-1,"2926":-1,"2927":0,"2928":-1,"2929":-1,"2930":-1,"2931":-1,"2932":-1,"2933":-1,"2934":-1,"2935":-1,"2936":-1,"2937":-1,"2938":-1,"2939":-1,"2940":-1,"2941":-1,"2942":-1,"2943":2687,"2944":-1,"2945":-1,"2946":-1,"2947":-1,"2948":-1,"2949":2685,"2950":-1,"2951":-1,"2952":2683,"2953":-1,"2954":-1,"2955":-1,"2956":2683,"2957":-1,"2958":2687,"2959":-1,"2960":-1,"2961":-1,"2962":-1,"2963":-1,"2964":-1,"2965":-1,"2966":-1,"2967":-1,"2968":-1,"2969":-1,"2970":-1,"2971":-1,"2972":2681,"2973":-1,"2974":-1,"2975":-1,"2976":2686,"2977":-1,"2978":-1,"2979":-1,"2980":0,"2981":2681,"2982":-1,"2983":2685,"2984":-1,"2985":-1,"2986":-1,"2987":-1,"2988":-1,"2989":-1,"2990":-1,"2991":-1,"2992":-1,"2993":-1,"2994":-1,"2995":-1,"2996":-1,"2997":-1,"2998":-1,"2999":-1,"3000":2684,"3001":-1,"3002":-1,"3003":-1,"3004":-1,"3005":0,"3006":-1,"3007":2687,"3008":-1,"3009":-1,"3010":0,"3011":2687,"3012":-1,"3013":-1,"3014":-1,"3015":-1,"3016":-1,"3017":-1,"3018":-1,"3019":-1,"3020":-1,"3021":-1,"3022":2685,"3023":-1,"3024":-1,"3025":-1,"3026":0,"3027":-1,"3028":-1,"3029":-1,"3030":2684,"3031":-1,"3032":-1,"3033":-1,"3034":-1,"3035":-1,"3036":-1,"3037":-1,"3038":-1,"3039":2682,"3040":0,"3041":-1,"3042":-1,"3043":-1,"3044":-1,"3045":-1,"3046":-1,"3047":-1,"3048":-1,"3049":-1,"3050":-1,"3051":2684,"3052":-1,"3053":-1,"3054":-1,"3055":-1,"3056":-1,"3057":-1,"3058":-1,"3059":-1,"3060":-1,"3061":-1,"3062":-1,"3063":0,"3064":-1,"3065":-1,"3066":-1,"3067":-1,"3068":-1,"3069":0,"3070":-1,"3071":-1,"3072":-1,"3073":-1,"3074":-1,"3075":-1,"3076":-1,"3077":-1,"3078":-1,"3079":-1,"3080":-1,"3081":-1,"3082":0,"3083":-1,"3084":-1,"3085":-1,"3086":2685,"3087":-1,"3088":-1,"3089":-1,"3090":-1,"3091":-1,"3092":2682,"3093":-1,"3094":-1,"3095":-1,"3096":-1,"3097":-1,"3098":-1,"3099":-1,"3100":-1,"3101":-1,"3102":-1,"3103":-1,"3104":-1,"3105":0,"3106":-1,"3107":-1,"3108":-1,"3109":-1,"3110":-1,"3111":-1,"3112":-1,"3113":-1,"3114":0,"3115":-1,"3116":0,"3117":-1,"3118":-1,"3119":-1,"3120":-1,"3121":-1,"3122":2686,"3123":-1,"3124":2682,"3125":2681,"3126":-1,"3127":-1,"3128":-1,"3129":2684,"3130":2683,"3131":-1,"3132":-1,"3133":-1,"3134":-1,"3135":2684,"3136":0,"3137":-1,"3138":-1,"3139":-1,"3140":-1,"3141":-1,"3142":-1,"3143":2681,"3144":2684,"3145":2682,"3146":-1,"3147":-1,"3148":-1,"3149":-1,"3150":-1,"3151":-1,"3152":-1,"3153":-1,"3154":-1,"3155":-1,"3156":2685,"3157":-1,"3158":-1,"3159":-1,"3160":-1,"3161":0,"3162":-1,"3163":-1,"3164":2681,"3165":-1,"3166":-1,"3167":-1,"3168":2683,"3169":-1,"3170":-1,"3171":-1,"3172":-1,"3173":-1,"3174":-1,"3175":-1,"3176":-1,"3177":-1,"3178":-1,"3179":-1,"3180":-1,"3181":-1,"3182":0,"3183":-1,"3184":-1,"3185":-1,"3186":-1,"3187":2682,"3188":-1,"3189":-1,"3190":-1,"3191":-1,"3192":-1,"3193":-1,"3194":2684,"3195":-1,"3196":-1,"3197":-1,"3198":2682,"3199":0,"3200":-1,"3201":-1,"3202":-1,"3203":-1,"3204":-1,"3205":-1,"3206":-1,"3207":-1,"3208":-1,"3209":-1,"3210":-1,"3211":-1,"3212":-1,"3213":-1,"3214":0,"3215":-1,"3216":-1,"3217":-1,"3218":-1,"3219":-1,"3220":-1,"3221":-1,"3222":-1,"3223":-1,"3224":-1,"3225":-1,"3226":-1,"3227":-1,"3228":-1,"3229":-1,"3230":-1,"3231":2685,"3232":-1,"3233":2682,"3234":-1,"3235":-1,"3236":-1,"3237":-1,"3238":-1,"3239":2681,"3240":-1,"3241":-1,"3242":-1,"3243":-1,"3244":-1,"3245":-1,"3246":-1,"3247":-1,"3248":2687,"3249":-1,"3250":-1,"3251":0,"3252":-1,"3253":2685,"3254":-1,"3255":-1,"3256":-1,"3257":-1,"3258":-1,"3259":-1,"3260":-1,"3261":-1,"3262":-1,"3263":-1,"3264":-1,"3265":-1,"3266":2684,"3267":-1,"3268":-1,"3269":0,"3270":-1,"3271":-1,"3272":2684,"3273":-1,"3274":-1,"3275":-1,"3276":-1,"3277":-1,"3278":-1,"3279":-1,"3280":-1,"3281":-1,"3282":-1,"3283":-1,"3284":2685,"3285":-1,"3286":-1,"3287":-1,"3288":-1,"3289":-1,"3290":-1,"3291":-1,"3292":-1,"3293":-1,"3294":-1,"3295":-1,"3296":-1,"3297":-1,"3298":-1,"3299":-1,"3300":-1,"3301":2683,"3302":-1,"3303":-1,"3304":-1,"3305":-1,"3306":-1,"3307":-1,"3308":-1,"3309":-1,"3310":-1,"3311":-1,"3312":-1,"3313":2686,"3314":-1,"3315":-1,"3316":-1,"3317":-1,"3318":-1,"3319":-1,"3320":2686,"3321":-1,"3322":-1,"3323":-1,"3324":-1,"3325":-1,"3326":-1,"3327":0,"3328":-1,"3329":-1,"3330":-1,"3331":-1,"3332":-1,"3333":-1,"3334":-1,"3335":-1,"3336":-1,"3337":-1,"3338":-1,"3339":-1,"3340":-1,"3341":-1,"3342":2682,"3343":-1,"3344":-1,"3345":-1,"3346":-1,"3347":-1,"3348":-1,"3349":-1,"3350":-1,"3351":-1,"3352":-1,"3353":-1,"3354":2682,"3355":-1,"3356":-1,"3357":-1,"3358":-1,"3359":-1,"3360":-1,"3361":2685,"3362":-1,"3363":-1,"3364":-1,"3365":-1,"3366":-1,"3367":-1,"3368":-1,"3369":-1,"3370":-1,"3371":-1,"3372":-1,"3373":-1,"3374":-1,"3375":-1,"3376":-1,"3377":-1,"3378":-1,"3379":-1,"3380":-1,"3381":-1,"3382":-1,"3383":-1,"3384":-1,"3385":-1,"3386":-1,"3387":-1,"3388":-1,"3389":-1,"3390":-1,"3391":0,"3392":-1,"3393":-1,"3394":-1,"3395":-1,"3396":-1,"3397":-1,"3398":-1,"3399":-1,"3400":-1,"3401":-1,"3402":-1,"3403":-1,"3404":-1,"3405":-1,"3406":-1,"3407":-1,"3408":-1,"3409":2685,"3410":-1,"3411":-1,"3412":-1,"3413":2686,"3414":2686,"3415":-1,"3416":-1,"3417":-1,"3418":-1,"3419":-1,"3420":-1,"3421":-1,"3422":-1,"3423":-1,"3424":-1,"3425":-1,"3426":-1,"3427":2686,"3428":-1,"3429":2683,"3430":-1,"3431":-1,"3432":0,"3433":-1,"3434":-1,"3435":0,"3436":-1,"3437":-1,"3438":-1,"3439":-1,"3440":-1,"3441":-1,"3442":2684,"3443":2684,"3444":-1,"3445":-1,"3446":-1,"3447":-1,"3448":-1,"3449":-1,"3450":2683,"3451":2682,"3452":-1,"3453":-1,"3454":-1,"3455":-1,"3456":-1,"3457":-1,"3458":2683,"3459":-1,"3460":-1,"3461":-1,"3462":-1,"3463":-1,"3464":-1,"3465":-1,"3466":-1,"3467":-1,"3468":0,"3469":-1,"3470":2681,"3471":-1,"3472":-1,"3473":-1,"3474":-1,"3475":-1,"3476":-1,"3477":-1,"3478":-1,"3479":2682,"3480":-1,"3481":-1,"3482":-1,"3483":-1,"3484":-1,"3485":-1,"3486":-1,"3487":-1,"3488":-1,"3489":-1,"3490":-1,"3491":-1,"3492":-1,"3493":-1,"3494":-1,"3495":-1,"3496":-1,"3497":-1,"3498":-1,"3499":-1,"3500":-1,"3501":-1,"3502":-1,"3503":-1,"3504":2685,"3505":-1,"3506":-1,"3507":-1,"3508":0,"3509":-1,"3510":2684,"3511":-1,"3512":-1,"3513":-1,"3514":-1,"3515":-1,"3516":-1,"3517":-1,"3518":-1,"3519":-1,"3520":-1,"3521":-1,"3522":-1,"3523":-1,"3524":0,"3525":-1,"3526":2685,"3527":-1,"3528":-1,"3529":-1,"3530":-1,"3531":-1,"3532":2683,"3533":-1,"3534":2682,"3535":-1,"3536":-1,"3537":-1,"3538":-1,"3539":-1,"3540":-1,"3541":-1,"3542":-1,"3543":-1,"3544":-1,"3545":-1,"3546":-1,"3547":-1,"3548":-1,"3549":-1,"3550":-1,"3551":-1,"3552":0,"3553":-1,"3554":-1,"3555":-1,"3556":-1,"3557":-1,"3558":-1,"3559":-1,"3560":-1,"3561":-1,"3562":-1,"3563":-1,"3564":-1,"3565":-1,"3566":2684,"3567":-1,"3568":2683,"3569":-1,"3570":-1,"3571":-1,"3572":0,"3573":-1,"3574":-1,"3575":-1,"3576":-1,"3577":-1,"3578":-1,"3579":-1,"3580":-1,"3581":-1,"3582":-1,"3583":-1,"3584":-1,"3585":-1,"3586":-1,"3587":2686,"3588":-1,"3589":-1,"3590":-1,"3591":-1,"3592":-1,"3593":-1,"3594":-1,"3595":-1,"3596":-1,"3597":2683,"3598":-1,"3599":-1,"3600":-1,"3601":-1,"3602":2683,"3603":-1,"3604":-1,"3605":-1,"3606":-1,"3607":-1,"3608":-1,"3609":-1,"3610":-1,"3611":0,"3612":-1,"3613":-1,"3614":-1,"3615":-1,"3616":-1,"3617":-1,"3618":-1,"3619":-1,"3620":-1,"3621":-1,"3622":-1,"3623":-1,"3624":-1,"3625":-1,"3626":-1,"3627":-1,"3628":-1,"3629":-1,"3630":-1,"3631":0,"3632":-1,"3633":-1,"3634":-1,"3635":-1,"3636":-1,"3637":-1,"3638":-1,"3639":-1,"3640":-1,"3641":-1,"3642":-1,"3643":2683,"3644":2685,"3645":-1,"3646":2682,"3647":-1,"3648":-1,"3649":-1,"3650":-1,"3651":-1,"3652":2685,"3653":-1,"3654":-1,"3655":-1,"3656":-1,"3657":-1,"3658":2685,"3659":-1,"3660":-1,"3661":-1,"3662":2686,"3663":-1,"3664":-1,"3665":-1,"3666":2685,"3667":-1,"3668":2684,"3669":-1,"3670":-1,"3671":-1,"3672":-1,"3673":-1,"3674":-1,"3675":-1,"3676":-1,"3677":-1,"3678":-1,"3679":-1,"3680":-1,"3681":-1,"3682":-1,"3683":-1,"3684":-1,"3685":-1,"3686":-1,"3687":0,"3688":-1,"3689":-1,"3690":-1,"3691":-1,"3692":-1,"3693":-1,"3694":-1,"3695":-1,"3696":-1,"3697":-1,"3698":-1,"3699":-1,"3700":-1,"3701":-1,"3702":-1,"3703":-1,"3704":-1,"3705":-1,"3706":2682,"3707":-1,"3708":-1,"3709":-1,"3710":-1,"3711":-1,"3712":-1,"3713":-1,"3714":-1,"3715":-1,"3716":-1,"3717":-1,"3718":-1,"3719":-1,"3720":-1,"3721":-1,"3722":-1,"3723":-1,"3724":-1,"3725":-1,"3726":-1,"3727":-1,"3728":2681,"3729":-1,"3730":2686,"3731":-1,"3732":-1,"3733":-1,"3734":2682,"3735":-1,"3736":-1,"3737":-1,"3738":2684,"3739":-1,"3740":2685,"3741":-1,"3742":-1,"3743":-1,"3744":-1,"3745":-1,"3746":-1,"3747":-1,"3748":-1,"3749":-1,"3750":-1,"3751":-1,"3752":-1,"3753":-1,"3754":2685,"3755":-1,"3756":-1,"3757":-1,"3758":-1,"3759":-1,"3760":-1,"3761":-1,"3762":-1,"3763":2685,"3764":-1,"3765":-1,"3766":0,"3767":0,"3768":-1,"3769":-1,"3770":-1,"3771":-1,"3772":-1,"3773":-1,"3774":-1,"3775":-1,"3776":-1,"3777":0,"3778":-1,"3779":-1,"3780":-1,"3781":-1,"3782":2684,"3783":-1,"3784":-1,"3785":-1,"3786":2684,"3787":-1,"3788":-1,"3789":-1,"3790":-1,"3791":0,"3792":-1,"3793":-1,"3794":-1,"3795":0,"3796":-1,"3797":-1,"3798":2684,"3799":-1,"3800":-1,"3801":2685,"3802":-1,"3803":-1,"3804":-1,"3805":-1,"3806":-1,"3807":-1,"3808":-1,"3809":-1,"3810":-1,"3811":2685,"3812":-1,"3813":-1,"3814":-1,"3815":2683,"3816":-1,"3817":-1,"3818":-1,"3819":-1,"3820":-1,"3821":-1,"3822":-1,"3823":2684,"3824":-1,"3825":-1,"3826":-1,"3827":-1,"3828":-1,"3829":-1,"3830":-1,"3831":-1,"3832":2683,"3833":2686,"3834":-1,"3835":-1,"3836":0,"3837":-1,"3838":-1,"3839":-1,"3840":2683,"3841":-1,"3842":-1,"3843":-1,"3844":-1,"3845":2683,"3846":-1,"3847":2682,"3848":-1,"3849":2683,"3850":-1,"3851":-1,"3852":-1,"3853":-1,"3854":-1,"3855":2687,"3856":-1,"3857":-1,"3858":-1,"3859":-1,"3860":-1,"3861":-1,"3862":-1,"3863":-1,"3864":-1,"3865":-1,"3866":-1,"3867":-1,"3868":-1,"3869":-1,"3870":-1,"3871":2687,"3872":-1,"3873":-1,"3874":-1,"3875":-1,"3876":-1,"3877":-1,"3878":-1,"3879":-1,"3880":-1,"3881":2682,"3882":-1,"3883":-1,"3884":-1,"3885":-1,"3886":-1,"3887":-1,"3888":-1,"3889":-1,"3890":-1,"3891":-1,"3892":-1,"3893":2687,"3894":-1,"3895":-1,"3896":2682,"3897":-1,"3898":2685,"3899":-1,"3900":-1,"3901":-1,"3902":-1,"3903":-1,"3904":-1,"3905":-1,"3906":-1,"3907":-1,"3908":2683,"3909":-1,"3910":2681,"3911":-1,"3912":-1,"3913":-1,"3914":-1,"3915":-1,"3916":-1,"3917":-1,"3918":-1,"3919":-1,"3920":-1,"3921":-1,"3922":-1,"3923":-1,"3924":2685,"3925":-1,"3926":-1,"3927":-1,"3928":-1,"3929":-1,"3930":-1,"3931":-1,"3932":-1,"3933":-1,"3934":-1,"3935":-1,"3936":-1,"3937":-1,"3938":-1,"3939":-1,"3940":-1,"3941":-1,"3942":-1,"3943":2683,"3944":-1,"3945":-1,"3946":-1,"3947":-1,"3948":0,"3949":-1,"3950":-1,"3951":-1,"3952":-1,"3953":-1,"3954":-1,"3955":-1,"3956":-1,"3957":-1,"3958":-1,"3959":-1,"3960":-1,"3961":-1,"3962":-1,"3963":-1,"3964":-1,"3965":-1,"3966":-1,"3967":-1,"3968":-1,"3969":-1,"3970":-1,"3971":2682,"3972":-1,"3973":-1,"3974":-1,"3975":-1,"3976":-1,"3977":-1,"3978":2685,"3979":-1,"3980":0,"3981":-1,"3982":-1,"3983":-1,"3984":-1,"3985":-1,"3986":2682,"3987":-1,"3988":-1,"3989":2686,"3990":-1,"3991":-1,"3992":2684,"3993":-1,"3994":2682,"3995":2684,"3996":-1,"3997":-1,"3998":-1,"3999":-1,"4000":-1,"4001":-1,"4002":-1,"4003":2682,"4004":2683,"4005":-1,"4006":2685,"4007":-1,"4008":-1,"4009":-1,"4010":-1,"4011":-1,"4012":2681,"4013":-1,"4014":-1,"4015":-1,"4016":-1,"4017":-1,"4018":-1,"4019":2685,"4020":-1,"4021":-1,"4022":-1,"4023":-1,"4024":-1,"4025":-1,"4026":-1,"4027":-1,"4028":-1,"4029":-1,"4030":2686,"4031":-1,"4032":-1,"4033":-1,"4034":-1,"4035":-1,"4036":-1,"4037":-1,"4038":-1,"4039":-1,"4040":0,"4041":2683,"4042":-1,"4043":-1,"4044":-1,"4045":-1,"4046":-1,"4047":-1,"4048":-1,"4049":2682,"4050":-1,"4051":-1,"4052":0,"4053":2682,"4054":-1,"4055":-1,"4056":-1,"4057":-1,"4058":-1,"4059":-1,"4060":-1,"4061":-1,"4062":0,"4063":-1,"4064":2685,"4065":-1,"4066":-1,"4067":-1,"4068":-1,"4069":-1,"4070":-1,"4071":2681,"4072":-1,"4073":-1,"4074":-1,"4075":-1,"4076":-1,"4077":-1,"4078":-1,"4079":-1,"4080":-1,"4081":2686,"4082":2683,"4083":-1,"4084":-1,"4085":0,"4086":-1,"4087":-1,"4088":2682,"4089":-1,"4090":-1,"4091":-1,"4092":2686,"4093":-1,"4094":-1,"4095":-1,"4096":-1,"4097":-1,"4098":-1,"4099":-1,"4100":2684,"4101":-1,"4102":-1,"4103":-1,"4104":-1,"4105":-1,"4106":-1,"4107":-1,"4108":-1,"4109":-1,"4110":-1,"4111":2684,"4112":-1,"4113":-1,"4114":-1,"4115":-1,"4116":-1,"4117":-1,"4118":-1,"4119":2685,"4120":2685,"4121":-1,"4122":-1,"4123":2682,"4124":-1,"4125":-1,"4126":-1,"4127":-1,"4128":-1,"4129":-1,"4130":-1,"4131":0,"4132":-1,"4133":-1,"4134":-1,"4135":-1,"4136":-1,"4137":-1,"4138":-1,"4139":-1,"4140":-1,"4141":-1,"4142":-1,"4143":2684,"4144":-1,"4145":-1,"4146":-1,"4147":-1,"4148":-1,"4149":-1,"4150":-1,"4151":-1,"4152":-1,"4153":-1,"4154":-1,"4155":-1,"4156":-1,"4157":-1,"4158":-1,"4159":-1,"4160":-1,"4161":-1,"4162":-1,"4163":-1,"4164":2682,"4165":-1,"4166":-1,"4167":-1,"4168":-1,"4169":-1,"4170":-1,"4171":0,"4172":-1,"4173":2683,"4174":2684,"4175":2685,"4176":0,"4177":-1,"4178":-1,"4179":2683,"4180":-1,"4181":-1,"4182":-1,"4183":-1,"4184":-1,"4185":2685,"4186":-1,"4187":-1,"4188":-1,"4189":-1,"4190":-1,"4191":-1,"4192":-1,"4193":-1,"4194":-1,"4195":-1,"4196":-1,"4197":-1,"4198":2687,"4199":-1,"4200":-1,"4201":-1,"4202":-1,"4203":-1,"4204":-1,"4205":-1,"4206":-1,"4207":2684,"4208":2682,"4209":0,"4210":-1,"4211":-1,"4212":2681,"4213":-1,"4214":2682,"4215":-1,"4216":-1,"4217":-1,"4218":-1,"4219":-1,"4220":2682,"4221":-1,"4222":-1,"4223":-1,"4224":2685,"4225":2683,"4226":-1,"4227":-1,"4228":0,"4229":-1,"4230":-1,"4231":-1,"4232":-1,"4233":-1,"4234":-1,"4235":-1,"4236":-1,"4237":-1,"4238":-1,"4239":2687,"4240":-1,"4241":-1,"4242":-1,"4243":0,"4244":-1,"4245":2685,"4246":-1,"4247":-1,"4248":-1,"4249":-1,"4250":0,"4251":-1,"4252":-1,"4253":0,"4254":-1,"4255":-1,"4256":-1,"4257":-1,"4258":2681,"4259":2682,"4260":-1,"4261":-1,"4262":2682,"4263":-1,"4264":-1,"4265":-1,"4266":-1,"4267":-1,"4268":-1,"4269":2684,"4270":-1,"4271":-1,"4272":-1,"4273":-1,"4274":-1,"4275":-1,"4276":-1,"4277":-1,"4278":-1,"4279":2681,"4280":-1,"4281":-1,"4282":-1,"4283":-1,"4284":-1,"4285":-1,"4286":-1,"4287":-1,"4288":-1,"4289":-1,"4290":-1,"4291":-1,"4292":-1,"4293":-1,"4294":0,"4295":-1,"4296":-1,"4297":-1,"4298":-1,"4299":-1,"4300":-1,"4301":-1,"4302":-1,"4303":-1,"4304":-1,"4305":-1,"4306":-1,"4307":-1,"4308":-1,"4309":-1,"4310":-1,"4311":-1,"4312":-1,"4313":-1,"4314":-1,"4315":-1,"4316":-1,"4317":-1,"4318":-1,"4319":-1,"4320":-1,"4321":-1,"4322":0,"4323":-1,"4324":-1,"4325":-1,"4326":-1,"4327":-1,"4328":-1,"4329":-1,"4330":-1,"4331":-1,"4332":2681,"4333":-1,"4334":-1,"4335":-1,"4336":2686,"4337":-1,"4338":-1,"4339":2686,"4340":-1,"4341":-1,"4342":-1,"4343":-1,"4344":2686,"4345":0,"4346":-1,"4347":-1,"4348":-1,"4349":-1,"4350":-1,"4351":-1,"4352":-1,"4353":-1,"4354":-1,"4355":-1,"4356":2686,"4357":-1,"4358":-1,"4359":2687,"4360":-1,"4361":-1,"4362":2681,"4363":-1,"4364":-1,"4365":-1,"4366":-1,"4367":-1,"4368":-1,"4369":0,"4370":-1,"4371":-1,"4372":-1,"4373":2684,"4374":-1,"4375":-1,"4376":-1,"4377":-1,"4378":-1,"4379":-1,"4380":2682,"4381":0,"4382":2685,"4383":-1,"4384":-1,"4385":-1,"4386":-1,"4387":-1,"4388":-1,"4389":-1,"4390":-1,"4391":-1,"4392":-1,"4393":-1,"4394":-1,"4395":-1,"4396":-1,"4397":-1,"4398":-1,"4399":-1,"4400":0,"4401":2681,"4402":-1,"4403":2687,"4404":-1,"4405":-1,"4406":-1,"4407":2684,"4408":-1,"4409":-1,"4410":-1,"4411":-1,"4412":-1,"4413":-1,"4414":-1,"4415":-1,"4416":-1,"4417":-1,"4418":-1,"4419":-1,"4420":-1,"4421":-1,"4422":-1,"4423":-1,"4424":-1,"4425":-1,"4426":-1,"4427":-1,"4428":-1,"4429":-1,"4430":-1,"4431":-1,"4432":-1,"4433":-1,"4434":-1,"4435":-1,"4436":-1,"4437":-1,"4438":-1,"4439":-1,"4440":-1,"4441":-1,"4442":2684,"4443":-1,"4444":-1,"4445":-1,"4446":-1,"4447":-1,"4448":-1,"4449":-1,"4450":-1,"4451":-1,"4452":-1,"4453":-1,"4454":-1,"4455":-1,"4456":-1,"4457":0,"4458":-1,"4459":-1,"4460":-1,"4461":2685,"4462":-1,"4463":-1,"4464":-1,"4465":-1,"4466":-1,"4467":-1,"4468":-1,"4469":-1,"4470":-1,"4471":2686,"4472":-1,"4473":2687,"4474":-1,"4475":-1,"4476":2685,"4477":-1,"4478":-1,"4479":-1,"4480":-1,"4481":-1,"4482":2685,"4483":-1,"4484":-1,"4485":-1,"4486":-1,"4487":-1,"4488":2683,"4489":-1,"4490":-1,"4491":-1,"4492":-1,"4493":-1,"4494":-1,"4495":-1,"4496":-1,"4497":-1,"4498":-1,"4499":-1,"4500":-1,"4501":-1,"4502":2683,"4503":2682,"4504":-1,"4505":0,"4506":-1,"4507":-1,"4508":-1,"4509":-1,"4510":-1,"4511":-1,"4512":2682,"4513":-1,"4514":-1,"4515":2686,"4516":-1,"4517":-1,"4518":-1,"4519":-1,"4520":2685,"4521":-1,"4522":-1,"4523":-1,"4524":-1,"4525":-1,"4526":2683,"4527":-1,"4528":-1,"4529":-1,"4530":-1,"4531":-1,"4532":-1,"4533":2683,"4534":-1,"4535":2686,"4536":-1,"4537":-1,"4538":-1,"4539":-1,"4540":-1,"4541":-1,"4542":-1,"4543":-1,"4544":-1,"4545":-1,"4546":-1,"4547":-1,"4548":2687,"4549":-1,"4550":-1,"4551":-1,"4552":-1,"4553":-1,"4554":2683,"4555":-1,"4556":-1,"4557":-1,"4558":-1,"4559":-1,"4560":-1,"4561":-1,"4562":-1,"4563":0,"4564":-1,"4565":-1,"4566":2684,"4567":-1,"4568":-1,"4569":-1,"4570":-1,"4571":-1,"4572":-1,"4573":-1,"4574":-1,"4575":-1,"4576":-1,"4577":-1,"4578":-1,"4579":-1,"4580":-1,"4581":-1,"4582":-1,"4583":-1,"4584":-1,"4585":-1,"4586":-1,"4587":2687,"4588":-1,"4589":-1,"4590":-1,"4591":-1,"4592":2684,"4593":-1,"4594":2684,"4595":2683,"4596":-1,"4597":-1,"4598":-1,"4599":-1,"4600":-1,"4601":-1,"4602":-1,"4603":0,"4604":-1,"4605":-1,"4606":-1,"4607":-1,"4608":-1,"4609":-1,"4610":-1,"4611":-1,"4612":-1,"4613":2683,"4614":-1,"4615":-1,"4616":-1,"4617":-1,"4618":-1,"4619":2684,"4620":-1,"4621":-1,"4622":-1,"4623":-1,"4624":-1,"4625":2685,"4626":-1,"4627":-1,"4628":-1,"4629":-1,"4630":-1,"4631":-1,"4632":-1,"4633":-1,"4634":-1,"4635":-1,"4636":2683,"4637":-1,"4638":-1,"4639":-1,"4640":-1,"4641":-1,"4642":-1,"4643":-1,"4644":-1,"4645":-1,"4646":-1,"4647":-1,"4648":-1,"4649":-1,"4650":-1,"4651":-1,"4652":-1,"4653":-1,"4654":0,"4655":-1,"4656":-1,"4657":-1,"4658":-1,"4659":-1,"4660":-1,"4661":-1,"4662":-1,"4663":-1,"4664":-1,"4665":-1,"4666":-1,"4667":-1,"4668":-1,"4669":-1,"4670":-1,"4671":2685,"4672":2684,"4673":0,"4674":-1,"4675":2682,"4676":2682,"4677":-1,"4678":-1,"4679":-1,"4680":-1,"4681":-1,"4682":-1,"4683":-1,"4684":-1,"4685":-1,"4686":-1,"4687":-1,"4688":0,"4689":-1,"4690":-1,"4691":-1,"4692":-1,"4693":-1,"4694":-1,"4695":-1,"4696":-1,"4697":-1,"4698":-1,"4699":-1,"4700":-1,"4701":-1,"4702":2686,"4703":-1,"4704":-1,"4705":-1,"4706":-1,"4707":-1,"4708":0,"4709":-1,"4710":-1,"4711":-1,"4712":-1,"4713":-1,"4714":-1,"4715":-1,"4716":-1,"4717":-1,"4718":-1,"4719":-1,"4720":-1,"4721":-1,"4722":-1,"4723":-1,"4724":-1,"4725":-1,"4726":-1,"4727":-1,"4728":-1,"4729":-1,"4730":-1,"4731":-1,"4732":2686,"4733":-1,"4734":2684,"4735":-1,"4736":2684,"4737":2682,"4738":-1,"4739":-1,"4740":-1,"4741":2685,"4742":2686,"4743":2686,"4744":-1,"4745":-1,"4746":-1,"4747":-1,"4748":-1,"4749":-1,"4750":-1,"4751":-1,"4752":-1,"4753":-1,"4754":-1,"4755":-1,"4756":-1,"4757":-1,"4758":-1,"4759":-1,"4760":-1,"4761":-1,"4762":-1,"4763":-1,"4764":-1,"4765":2683,"4766":-1,"4767":2686,"4768":-1,"4769":2686,"4770":2686,"4771":2682,"4772":-1,"4773":-1,"4774":-1,"4775":2683,"4776":-1,"4777":2682,"4778":-1,"4779":-1,"4780":-1,"4781":-1,"4782":-1,"4783":-1,"4784":2682,"4785":-1,"4786":-1,"4787":-1,"4788":-1,"4789":-1,"4790":-1,"4791":2685,"4792":-1,"4793":-1,"4794":-1,"4795":-1,"4796":-1,"4797":-1,"4798":-1,"4799":-1,"4800":-1,"4801":-1,"4802":-1,"4803":-1,"4804":2684,"4805":-1,"4806":-1,"4807":0,"4808":-1,"4809":-1,"4810":-1,"4811":-1,"4812":-1,"4813":-1,"4814":-1,"4815":-1,"4816":-1,"4817":2683,"4818":-1,"4819":-1,"4820":-1,"4821":-1,"4822":-1,"4823":-1,"4824":-1,"4825":-1,"4826":-1,"4827":-1,"4828":-1,"4829":-1,"4830":-1,"4831":-1,"4832":-1,"4833":-1,"4834":-1,"4835":-1,"4836":-1,"4837":-1,"4838":-1,"4839":-1,"4840":2685,"4841":-1,"4842":-1,"4843":-1,"4844":0,"4845":-1,"4846":-1,"4847":-1,"4848":-1,"4849":-1,"4850":-1,"4851":-1,"4852":2683,"4853":-1,"4854":-1,"4855":-1,"4856":-1,"4857":-1,"4858":-1,"4859":2681,"4860":-1,"4861":-1,"4862":-1,"4863":-1,"4864":-1,"4865":2685,"4866":2682,"4867":2687,"4868":-1,"4869":-1,"4870":-1,"4871":-1,"4872":-1,"4873":-1,"4874":2685,"4875":-1,"4876":-1,"4877":-1,"4878":-1,"4879":-1,"4880":-1,"4881":-1,"4882":-1,"4883":-1,"4884":2683,"4885":-1,"4886":-1,"4887":-1,"4888":-1,"4889":-1,"4890":-1,"4891":-1,"4892":2682,"4893":-1,"4894":-1,"4895":2687,"4896":-1,"4897":2682,"4898":2685,"4899":-1,"4900":-1,"4901":-1,"4902":-1,"4903":2684,"4904":2681,"4905":2683,"4906":-1,"4907":-1,"4908":-1,"4909":-1,"4910":-1,"4911":-1,"4912":2682,"4913":-1,"4914":-1,"4915":0,"4916":-1,"4917":-1,"4918":-1,"4919":-1,"4920":-1,"4921":2685,"4922":-1,"4923":-1,"4924":-1,"4925":-1,"4926":-1,"4927":2686,"4928":-1,"4929":-1,"4930":-1,"4931":-1,"4932":-1,"4933":-1,"4934":-1,"4935":2684,"4936":-1,"4937":0,"4938":-1,"4939":-1,"4940":-1,"4941":-1,"4942":-1,"4943":2686,"4944":0,"4945":-1,"4946":2683,"4947":-1,"4948":-1,"4949":-1,"4950":-1,"4951":-1,"4952":-1,"4953":-1,"4954":-1,"4955":-1,"4956":-1,"4957":-1,"4958":-1,"4959":-1,"4960":-1,"4961":-1,"4962":-1,"4963":0,"4964":-1,"4965":-1,"4966":-1,"4967":-1,"4968":-1,"4969":-1,"4970":-1,"4971":-1,"4972":-1,"4973":0,"4974":-1,"4975":-1,"4976":0,"4977":-1,"4978":2685,"4979":-1,"4980":-1,"4981":-1,"4982":-1,"4983":-1,"4984":-1,"4985":-1,"4986":-1,"4987":-1,"4988":-1,"4989":-1,"4990":-1,"4991":-1,"4992":-1,"4993":-1,"4994":-1,"4995":-1,"4996":-1,"4997":-1,"4998":-1,"4999":-1,"5000":-1,"5001":-1,"5002":-1,"5003":-1,"5004":-1,"5005":-1,"5006":0,"5007":-1,"5008":-1,"5009":-1,"5010":-1,"5011":2681,"5012":-1,"5013":2685,"5014":-1,"5015":-1,"5016":-1,"5017":-1,"5018":-1,"5019":-1,"5020":-1,"5021":-1,"5022":-1,"5023":-1,"5024":-1,"5025":-1,"5026":-1,"5027":-1,"5028":-1,"5029":-1,"5030":-1,"5031":2687,"5032":-1,"5033":-1,"5034":-1,"5035":-1,"5036":-1,"5037":-1,"5038":-1,"5039":-1,"5040":2682,"5041":2682,"5042":-1,"5043":-1,"5044":0,"5045":-1,"5046":-1,"5047":-1,"5048":-1,"5049":-1,"5050":-1,"5051":-1,"5052":2686,"5053":2683,"5054":-1,"5055":-1,"5056":-1,"5057":-1,"5058":-1,"5059":-1,"5060":-1,"5061":-1,"5062":2686,"5063":2684,"5064":-1,"5065":-1,"5066":0,"5067":-1,"5068":2682,"5069":-1,"5070":-1,"5071":-1,"5072":-1,"5073":-1,"5074":-1,"5075":-1,"5076":-1,"5077":-1,"5078":-1,"5079":-1,"5080":-1,"5081":-1,"5082":-1,"5083":-1,"5084":0,"5085":-1,"5086":-1,"5087":-1,"5088":-1,"5089":-1,"5090":-1,"5091":-1,"5092":-1,"5093":-1,"5094":-1,"5095":0,"5096":-1,"5097":-1,"5098":-1,"5099":-1,"5100":-1,"5101":-1,"5102":-1,"5103":2685,"5104":-1,"5105":-1,"5106":-1,"5107":-1,"5108":-1,"5109":2682,"5110":-1,"5111":2686,"5112":-1,"5113":-1,"5114":-1,"5115":-1,"5116":-1,"5117":-1,"5118":-1,"5119":-1,"5120":-1,"5121":-1,"5122":-1,"5123":-1,"5124":-1,"5125":-1,"5126":-1,"5127":-1,"5128":2684,"5129":-1,"5130":2685,"5131":-1,"5132":-1,"5133":-1,"5134":-1,"5135":-1,"5136":-1,"5137":-1,"5138":-1,"5139":-1,"5140":-1,"5141":-1,"5142":-1,"5143":0,"5144":-1,"5145":-1,"5146":-1,"5147":-1,"5148":-1,"5149":-1,"5150":2682,"5151":-1,"5152":-1,"5153":-1,"5154":-1,"5155":-1,"5156":2682,"5157":-1,"5158":-1,"5159":-1,"5160":-1,"5161":-1,"5162":-1,"5163":-1,"5164":-1,"5165":-1,"5166":-1,"5167":-1,"5168":-1,"5169":0,"5170":-1,"5171":-1,"5172":-1,"5173":-1,"5174":2684,"5175":-1,"5176":-1,"5177":-1,"5178":-1,"5179":-1,"5180":-1,"5181":-1,"5182":-1,"5183":-1,"5184":-1,"5185":0,"5186":-1,"5187":-1,"5188":-1,"5189":-1,"5190":2685,"5191":-1,"5192":2686,"5193":-1,"5194":-1,"5195":-1,"5196":-1,"5197":-1,"5198":2684,"5199":-1,"5200":-1,"5201":-1,"5202":-1,"5203":2684,"5204":-1,"5205":-1,"5206":-1,"5207":-1,"5208":-1,"5209":-1,"5210":-1,"5211":-1,"5212":-1,"5213":2681,"5214":2683,"5215":-1,"5216":-1,"5217":-1,"5218":-1,"5219":2687,"5220":-1,"5221":2685,"5222":-1,"5223":2685,"5224":2687,"5225":-1,"5226":-1,"5227":-1,"5228":-1,"5229":-1,"5230":-1,"5231":-1,"5232":-1,"5233":2685,"5234":-1,"5235":-1,"5236":-1,"5237":-1,"5238":-1,"5239":-1,"5240":-1,"5241":-1,"5242":-1,"5243":-1,"5244":2683,"5245":2685,"5246":-1,"5247":-1,"5248":-1,"5249":-1,"5250":-1,"5251":-1,"5252":-1,"5253":-1,"5254":-1,"5255":2684,"5256":-1,"5257":-1,"5258":-1,"5259":-1,"5260":-1,"5261":-1,"5262":-1,"5263":-1,"5264":-1,"5265":-1,"5266":2687,"5267":-1,"5268":-1,"5269":-1,"5270":2685,"5271":2682,"5272":-1,"5273":-1,"5274":0,"5275":-1,"5276":-1,"5277":-1,"5278":-1,"5279":-1,"5280":-1,"5281":-1,"5282":-1,"5283":-1,"5284":-1,"5285":-1,"5286":-1,"5287":-1,"5288":-1,"5289":-1,"5290":-1,"5291":-1,"5292":-1,"5293":0,"5294":-1,"5295":-1,"5296":0,"5297":-1,"5298":2685,"5299":-1,"5300":-1,"5301":-1,"5302":2684,"5303":-1,"5304":-1,"5305":-1,"5306":-1,"5307":2682,"5308":0,"5309":-1,"5310":2686,"5311":-1,"5312":-1,"5313":-1,"5314":-1,"5315":-1,"5316":-1,"5317":-1,"5318":-1,"5319":0,"5320":2682,"5321":-1,"5322":-1,"5323":-1,"5324":-1,"5325":-1,"5326":2683,"5327":-1,"5328":2686,"5329":-1,"5330":-1,"5331":2687,"5332":2683,"5333":-1,"5334":-1,"5335":-1,"5336":0,"5337":-1,"5338":-1,"5339":-1,"5340":2682,"5341":-1,"5342":-1,"5343":-1,"5344":-1,"5345":-1,"5346":-1,"5347":0,"5348":2686,"5349":0,"5350":-1,"5351":-1,"5352":-1,"5353":-1,"5354":-1,"5355":-1,"5356":-1,"5357":-1,"5358":-1,"5359":-1,"5360":-1,"5361":-1,"5362":-1,"5363":-1,"5364":-1,"5365":-1,"5366":2685,"5367":2684,"5368":-1,"5369":-1,"5370":-1,"5371":-1,"5372":-1,"5373":-1,"5374":2682,"5375":-1,"5376":-1,"5377":-1,"5378":-1,"5379":-1,"5380":-1,"5381":-1,"5382":-1,"5383":-1,"5384":-1,"5385":2683,"5386":-1,"5387":2682,"5388":-1,"5389":2682,"5390":-1,"5391":-1,"5392":-1,"5393":-1,"5394":2685,"5395":-1,"5396":-1,"5397":-1,"5398":-1,"5399":-1,"5400":-1,"5401":-1,"5402":-1,"5403":-1,"5404":-1,"5405":-1,"5406":-1,"5407":-1,"5408":-1,"5409":-1,"5410":2683,"5411":-1,"5412":-1,"5413":-1,"5414":2686,"5415":-1,"5416":2685,"5417":-1,"5418":-1,"5419":2681,"5420":-1,"5421":-1,"5422":-1,"5423":-1,"5424":-1,"5425":2687,"5426":-1,"5427":-1,"5428":-1,"5429":2682,"5430":2684,"5431":-1,"5432":-1,"5433":-1,"5434":-1,"5435":-1,"5436":-1,"5437":-1,"5438":2687,"5439":-1,"5440":-1,"5441":-1,"5442":-1,"5443":-1,"5444":-1,"5445":-1,"5446":-1,"5447":-1,"5448":-1,"5449":-1,"5450":-1,"5451":-1,"5452":-1,"5453":-1,"5454":-1,"5455":-1,"5456":-1,"5457":-1,"5458":-1,"5459":-1,"5460":-1,"5461":-1,"5462":-1,"5463":-1,"5464":-1,"5465":-1,"5466":-1,"5467":-1,"5468":-1,"5469":2686,"5470":-1,"5471":-1,"5472":2687,"5473":-1,"5474":-1,"5475":-1,"5476":-1,"5477":-1,"5478":-1,"5479":-1,"5480":-1,"5481":-1,"5482":-1,"5483":-1,"5484":-1,"5485":-1,"5486":-1,"5487":-1,"5488":-1,"5489":-1,"5490":-1,"5491":-1,"5492":-1,"5493":-1,"5494":-1,"5495":-1,"5496":-1,"5497":-1,"5498":-1,"5499":-1,"5500":-1,"5501":-1,"5502":-1,"5503":-1,"5504":-1,"5505":-1,"5506":-1,"5507":-1,"5508":-1,"5509":-1,"5510":-1,"5511":-1,"5512":-1,"5513":-1,"5514":-1,"5515":-1,"5516":-1,"5517":2681,"5518":2684,"5519":-1,"5520":-1,"5521":0,"5522":-1,"5523":-1,"5524":-1,"5525":-1,"5526":-1,"5527":0,"5528":2687,"5529":-1,"5530":-1,"5531":-1,"5532":-1,"5533":-1,"5534":-1,"5535":-1,"5536":-1,"5537":-1,"5538":2687,"5539":-1,"5540":-1,"5541":-1,"5542":-1,"5543":-1,"5544":0,"5545":-1,"5546":-1,"5547":-1,"5548":-1,"5549":2682,"5550":-1,"5551":-1,"5552":-1,"5553":-1,"5554":2684,"5555":2684,"5556":2687,"5557":-1,"5558":-1,"5559":-1,"5560":-1,"5561":-1,"5562":-1,"5563":-1,"5564":-1,"5565":-1,"5566":-1,"5567":-1,"5568":-1,"5569":-1,"5570":-1,"5571":-1,"5572":-1,"5573":-1,"5574":-1,"5575":-1,"5576":-1,"5577":-1,"5578":-1,"5579":2682,"5580":2683,"5581":-1,"5582":-1,"5583":-1,"5584":-1,"5585":-1,"5586":-1,"5587":-1,"5588":2682,"5589":-1,"5590":0,"5591":2684,"5592":-1,"5593":-1,"5594":-1,"5595":2685,"5596":-1,"5597":-1,"5598":-1,"5599":2683,"5600":-1,"5601":-1,"5602":-1,"5603":-1,"5604":-1,"5605":2682,"5606":-1,"5607":0,"5608":-1,"5609":-1,"5610":-1,"5611":-1,"5612":-1,"5613":2686,"5614":-1,"5615":-1,"5616":-1,"5617":-1,"5618":2682,"5619":2683,"5620":-1,"5621":2684,"5622":0,"5623":-1,"5624":-1,"5625":-1,"5626":2683,"5627":-1,"5628":-1,"5629":-1,"5630":-1,"5631":-1,"5632":-1,"5633":-1,"5634":2685,"5635":-1,"5636":-1,"5637":-1,"5638":-1,"5639":-1,"5640":-1,"5641":-1,"5642":-1,"5643":2683,"5644":-1,"5645":-1,"5646":-1,"5647":-1,"5648":-1,"5649":-1,"5650":-1,"5651":2685,"5652":-1,"5653":-1,"5654":-1,"5655":-1,"5656":0,"5657":-1,"5658":-1,"5659":-1,"5660":-1,"5661":2682,"5662":-1,"5663":-1,"5664":-1,"5665":-1,"5666":-1,"5667":-1,"5668":2685,"5669":-1,"5670":-1,"5671":-1,"5672":2681,"5673":-1,"5674":-1,"5675":-1,"5676":-1,"5677":-1,"5678":-1,"5679":-1,"5680":-1,"5681":2687,"5682":-1,"5683":-1,"5684":-1,"5685":2683,"5686":-1,"5687":-1,"5688":2685,"5689":-1,"5690":-1,"5691":-1,"5692":-1,"5693":-1,"5694":-1,"5695":-1,"5696":-1,"5697":-1,"5698":-1,"5699":2686,"5700":-1,"5701":-1,"5702":-1,"5703":-1,"5704":-1,"5705":-1,"5706":-1,"5707":-1,"5708":-1,"5709":-1,"5710":-1,"5711":-1,"5712":2684,"5713":-1,"5714":-1,"5715":-1,"5716":-1,"5717":-1,"5718":-1,"5719":-1,"5720":2682,"5721":-1,"5722":-1,"5723":-1,"5724":2685,"5725":-1,"5726":-1,"5727":2687,"5728":-1,"5729":-1,"5730":-1,"5731":-1,"5732":-1,"5733":-1,"5734":2684,"5735":-1,"5736":-1,"5737":-1,"5738":-1,"5739":-1,"5740":-1,"5741":-1,"5742":-1,"5743":2682,"5744":0,"5745":-1,"5746":-1,"5747":-1,"5748":-1,"5749":-1,"5750":-1,"5751":-1,"5752":-1,"5753":-1,"5754":2685,"5755":-1,"5756":0,"5757":-1,"5758":-1,"5759":-1,"5760":-1,"5761":-1,"5762":-1,"5763":-1,"5764":-1,"5765":-1,"5766":-1,"5767":-1,"5768":2683,"5769":-1,"5770":2685,"5771":-1,"5772":-1,"5773":-1,"5774":2681,"5775":2683,"5776":-1,"5777":-1,"5778":2681,"5779":-1,"5780":-1,"5781":2684,"5782":2681,"5783":-1,"5784":-1,"5785":-1,"5786":-1,"5787":-1,"5788":-1,"5789":-1,"5790":2685,"5791":-1,"5792":-1,"5793":-1,"5794":-1,"5795":-1,"5796":-1,"5797":-1,"5798":-1,"5799":-1,"5800":2682,"5801":0,"5802":-1,"5803":-1,"5804":-1,"5805":-1,"5806":2683,"5807":-1,"5808":-1,"5809":-1,"5810":-1,"5811":-1,"5812":-1,"5813":-1,"5814":-1,"5815":-1,"5816":-1,"5817":-1,"5818":2684,"5819":-1,"5820":-1,"5821":2686,"5822":-1,"5823":-1,"5824":-1,"5825":-1,"5826":0,"5827":-1,"5828":-1,"5829":-1,"5830":-1,"5831":-1,"5832":-1,"5833":2685,"5834":-1,"5835":-1,"5836":-1,"5837":-1,"5838":-1,"5839":-1,"5840":-1,"5841":0,"5842":-1,"5843":-1,"5844":-1,"5845":-1,"5846":2682,"5847":-1,"5848":-1,"5849":-1,"5850":-1,"5851":-1,"5852":-1,"5853":-1,"5854":-1,"5855":-1,"5856":-1,"5857":-1,"5858":2683,"5859":-1,"5860":-1,"5861":-1,"5862":-1,"5863":-1,"5864":-1,"5865":-1,"5866":-1,"5867":-1,"5868":-1,"5869":2682,"5870":-1,"5871":-1,"5872":-1,"5873":-1,"5874":-1,"5875":-1,"5876":-1,"5877":-1,"5878":-1,"5879":-1,"5880":-1,"5881":2687,"5882":-1,"5883":-1,"5884":-1,"5885":-1,"5886":-1,"5887":-1,"5888":-1,"5889":-1,"5890":-1,"5891":2682,"5892":-1,"5893":-1,"5894":-1,"5895":-1,"5896":-1,"5897":0,"5898":-1,"5899":2684,"5900":-1,"5901":-1,"5902":-1,"5903":-1,"5904":-1,"5905":-1,"5906":-1,"5907":-1,"5908":-1,"5909":-1,"5910":-1,"5911":-1,"5912":-1,"5913":-1,"5914":-1,"5915":-1,"5916":-1,"5917":-1,"5918":-1,"5919":-1,"5920":2682,"5921":-1,"5922":-1,"5923":-1,"5924":-1,"5925":0,"5926":-1,"5927":2684,"5928":-1,"5929":2683,"5930":0,"5931":2682,"5932":-1,"5933":2684,"5934":0,"5935":2682,"5936":-1,"5937":-1,"5938":-1,"5939":-1,"5940":-1,"5941":-1,"5942":-1,"5943":-1,"5944":0,"5945":-1,"5946":-1,"5947":-1,"5948":0,"5949":2686,"5950":-1,"5951":-1,"5952":-1,"5953":-1,"5954":2682,"5955":-1,"5956":-1,"5957":-1,"5958":-1,"5959":2685,"5960":2682,"5961":-1,"5962":-1,"5963":-1,"5964":2681,"5965":-1,"5966":-1,"5967":-1,"5968":-1,"5969":-1,"5970":-1,"5971":2681,"5972":-1,"5973":-1,"5974":-1,"5975":-1,"5976":-1,"5977":-1,"5978":-1,"5979":-1,"5980":-1,"5981":-1,"5982":-1,"5983":-1,"5984":-1,"5985":-1,"5986":-1,"5987":-1,"5988":0,"5989":-1,"5990":-1,"5991":-1,"5992":-1,"5993":-1,"5994":2686,"5995":-1,"5996":-1,"5997":-1,"5998":-1,"5999":-1,"6000":-1,"6001":-1,"6002":2685,"6003":-1,"6004":-1,"6005":-1,"6006":-1,"6007":-1,"6008":-1,"6009":-1,"6010":-1,"6011":-1,"6012":-1,"6013":-1,"6014":-1,"6015":-1,"6016":-1,"6017":-1,"6018":-1,"6019":-1,"6020":-1,"6021":-1,"6022":-1,"6023":-1,"6024":2681,"6025":-1,"6026":0,"6027":-1,"6028":-1,"6029":-1,"6030":-1,"6031":-1,"6032":-1,"6033":-1,"6034":-1,"6035":-1,"6036":-1,"6037":-1,"6038":-1,"6039":-1,"6040":-1,"6041":0,"6042":-1,"6043":-1,"6044":-1,"6045":-1,"6046":-1,"6047":-1,"6048":-1,"6049":-1,"6050":-1,"6051":-1,"6052":-1,"6053":-1,"6054":-1,"6055":0,"6056":-1,"6057":-1,"6058":2687,"6059":-1,"6060":-1,"6061":-1,"6062":-1,"6063":-1,"6064":-1,"6065":-1,"6066":-1,"6067":2681,"6068":-1,"6069":2683,"6070":-1,"6071":-1,"6072":-1,"6073":-1,"6074":-1,"6075":-1,"6076":2681,"6077":-1,"6078":-1,"6079":-1,"6080":-1,"6081":-1,"6082":-1,"6083":-1,"6084":-1,"6085":2686,"6086":-1,"6087":-1,"6088":-1,"6089":-1,"6090":-1,"6091":-1,"6092":-1,"6093":-1,"6094":2683,"6095":2681,"6096":-1,"6097":0,"6098":-1,"6099":-1,"6100":-1,"6101":-1,"6102":-1,"6103":-1,"6104":-1,"6105":2681,"6106":-1,"6107":-1,"6108":-1,"6109":-1,"6110":-1,"6111":-1,"6112":-1,"6113":-1,"6114":-1,"6115":-1,"6116":-1,"6117":-1,"6118":0,"6119":2685,"6120":2687,"6121":-1,"6122":0,"6123":-1,"6124":-1,"6125":-1,"6126":-1,"6127":-1,"6128":-1,"6129":-1,"6130":-1,"6131":-1,"6132":-1,"6133":-1,"6134":-1,"6135":-1,"6136":-1,"6137":0,"6138":-1,"6139":-1,"6140":2685,"6141":-1,"6142":-1,"6143":-1,"6144":-1,"6145":-1,"6146":-1,"6147":-1,"6148":-1,"6149":-1,"6150":-1,"6151":-1,"6152":-1,"6153":-1,"6154":-1,"6155":-1,"6156":-1,"6157":-1,"6158":2686,"6159":-1,"6160":2684,"6161":2685,"6162":-1,"6163":-1,"6164":-1,"6165":2686,"6166":-1,"6167":2687,"6168":-1,"6169":-1,"6170":-1,"6171":-1,"6172":-1,"6173":-1,"6174":-1,"6175":-1,"6176":-1,"6177":-1,"6178":-1,"6179":-1,"6180":-1,"6181":-1,"6182":-1,"6183":-1,"6184":-1,"6185":-1,"6186":-1,"6187":-1,"6188":2682,"6189":2687,"6190":-1,"6191":-1,"6192":-1,"6193":-1,"6194":-1,"6195":-1,"6196":-1,"6197":2685,"6198":-1,"6199":-1,"6200":-1,"6201":-1,"6202":-1,"6203":-1,"6204":-1,"6205":2683,"6206":-1,"6207":-1,"6208":-1,"6209":-1,"6210":-1,"6211":2686,"6212":-1,"6213":-1,"6214":-1,"6215":-1,"6216":-1,"6217":-1,"6218":-1,"6219":-1,"6220":-1,"6221":-1,"6222":-1,"6223":2686,"6224":-1,"6225":-1,"6226":2681,"6227":-1,"6228":-1,"6229":-1,"6230":-1,"6231":-1,"6232":-1,"6233":-1,"6234":-1,"6235":-1,"6236":-1,"6237":-1,"6238":-1,"6239":-1,"6240":-1,"6241":-1,"6242":-1,"6243":2687,"6244":-1,"6245":-1,"6246":-1,"6247":-1,"6248":-1,"6249":-1,"6250":2683,"6251":-1,"6252":-1,"6253":-1,"6254":-1,"6255":-1,"6256":-1,"6257":-1,"6258":-1,"6259":-1,"6260":-1,"6261":-1,"6262":-1,"6263":-1,"6264":-1,"6265":-1,"6266":-1,"6267":-1,"6268":-1,"6269":-1,"6270":-1,"6271":-1,"6272":-1,"6273":-1,"6274":-1,"6275":-1,"6276":2685,"6277":-1,"6278":-1,"6279":2682,"6280":-1,"6281":-1,"6282":-1,"6283":-1,"6284":2681,"6285":-1,"6286":-1,"6287":-1,"6288":2686,"6289":-1,"6290":-1,"6291":-1,"6292":-1,"6293":-1,"6294":0,"6295":-1,"6296":-1,"6297":2684,"6298":-1,"6299":-1,"6300":-1,"6301":-1,"6302":-1,"6303":2687,"6304":-1,"6305":-1,"6306":-1,"6307":-1,"6308":2682,"6309":-1,"6310":-1,"6311":-1,"6312":-1,"6313":-1,"6314":2683,"6315":-1,"6316":-1,"6317":-1,"6318":-1,"6319":-1,"6320":-1,"6321":-1,"6322":-1,"6323":-1,"6324":-1,"6325":2683,"6326":-1,"6327":2682,"6328":-1,"6329":-1,"6330":-1,"6331":2687,"6332":-1,"6333":-1,"6334":-1,"6335":-1,"6336":2682,"6337":-1,"6338":-1,"6339":-1,"6340":-1,"6341":-1,"6342":2683,"6343":-1,"6344":-1,"6345":2686,"6346":-1,"6347":-1,"6348":-1,"6349":-1,"6350":-1,"6351":-1,"6352":-1,"6353":-1,"6354":-1,"6355":-1,"6356":-1,"6357":-1,"6358":-1,"6359":-1,"6360":2682,"6361":-1,"6362":-1,"6363":-1,"6364":2686,"6365":-1,"6366":-1,"6367":-1,"6368":-1,"6369":-1,"6370":2685,"6371":-1,"6372":-1,"6373":-1,"6374":-1,"6375":-1,"6376":-1,"6377":-1,"6378":-1,"6379":-1,"6380":-1,"6381":-1,"6382":-1,"6383":-1,"6384":-1,"6385":-1,"6386":-1,"6387":2683,"6388":-1,"6389":2686,"6390":-1,"6391":-1,"6392":2682,"6393":-1,"6394":-1,"6395":-1,"6396":0,"6397":-1,"6398":-1,"6399":-1,"6400":2684,"6401":-1,"6402":-1,"6403":-1,"6404":-1,"6405":-1,"6406":2686,"6407":2682,"6408":2685,"6409":-1,"6410":-1,"6411":-1,"6412":-1,"6413":-1,"6414":-1,"6415":-1,"6416":-1,"6417":-1,"6418":2684,"6419":2685,"6420":-1,"6421":-1,"6422":-1,"6423":2685,"6424":-1,"6425":2681,"6426":-1,"6427":2686,"6428":-1,"6429":2685,"6430":-1,"6431":-1,"6432":-1,"6433":2682,"6434":2686,"6435":-1,"6436":2686,"6437":-1,"6438":-1,"6439":-1,"6440":-1,"6441":-1,"6442":-1,"6443":-1,"6444":-1,"6445":-1,"6446":0,"6447":2686,"6448":-1,"6449":-1,"6450":-1,"6451":-1,"6452":-1,"6453":-1,"6454":-1,"6455":-1,"6456":0,"6457":-1,"6458":-1,"6459":-1,"6460":-1,"6461":-1,"6462":-1,"6463":-1,"6464":-1,"6465":-1,"6466":-1,"6467":-1,"6468":-1,"6469":-1,"6470":-1,"6471":-1,"6472":-1,"6473":-1,"6474":-1,"6475":-1,"6476":-1,"6477":-1,"6478":-1,"6479":-1,"6480":-1,"6481":-1,"6482":0,"6483":-1,"6484":-1,"6485":-1,"6486":-1,"6487":-1,"6488":-1,"6489":-1,"6490":-1,"6491":2683,"6492":-1,"6493":-1,"6494":-1,"6495":-1,"6496":-1,"6497":-1,"6498":-1,"6499":2681,"6500":-1,"6501":-1,"6502":-1,"6503":-1,"6504":-1,"6505":2684,"6506":-1,"6507":-1,"6508":-1,"6509":2682,"6510":-1,"6511":-1,"6512":-1,"6513":-1,"6514":-1,"6515":-1,"6516":-1,"6517":-1,"6518":-1,"6519":2685,"6520":-1,"6521":-1,"6522":-1,"6523":-1,"6524":-1,"6525":-1,"6526":-1,"6527":-1,"6528":-1,"6529":2686,"6530":-1,"6531":-1,"6532":-1,"6533":-1,"6534":-1,"6535":-1,"6536":-1,"6537":-1,"6538":-1,"6539":-1,"6540":0,"6541":-1,"6542":-1,"6543":2684,"6544":-1,"6545":-1,"6546":-1,"6547":-1,"6548":-1,"6549":-1,"6550":-1,"6551":0,"6552":-1,"6553":-1,"6554":2685,"6555":-1,"6556":-1,"6557":-1,"6558":-1,"6559":-1,"6560":-1,"6561":2687,"6562":-1,"6563":2683,"6564":-1,"6565":2684,"6566":-1,"6567":2685,"6568":-1,"6569":2682,"6570":-1,"6571":-1,"6572":-1,"6573":-1,"6574":-1,"6575":-1,"6576":-1,"6577":-1,"6578":-1,"6579":-1,"6580":0,"6581":-1,"6582":-1,"6583":-1,"6584":-1,"6585":-1,"6586":-1,"6587":-1,"6588":-1,"6589":2683,"6590":0,"6591":-1,"6592":-1,"6593":-1,"6594":-1,"6595":-1,"6596":-1,"6597":-1,"6598":2682,"6599":-1,"6600":-1,"6601":0,"6602":-1,"6603":-1,"6604":-1,"6605":-1,"6606":-1,"6607":-1,"6608":-1,"6609":-1,"6610":-1,"6611":2686,"6612":-1,"6613":-1,"6614":0,"6615":-1,"6616":-1,"6617":-1,"6618":-1,"6619":-1,"6620":-1,"6621":-1,"6622":2682,"6623":-1,"6624":-1,"6625":-1,"6626":-1,"6627":-1,"6628":-1,"6629":-1,"6630":-1,"6631":-1,"6632":-1,"6633":-1,"6634":-1,"6635":2686,"6636":-1,"6637":-1,"6638":0,"6639":-1,"6640":-1,"6641":-1,"6642":-1,"6643":-1,"6644":-1,"6645":-1,"6646":2685,"6647":-1,"6648":-1,"6649":-1,"6650":-1,"6651":2686,"6652":-1,"6653":-1,"6654":-1,"6655":-1,"6656":-1,"6657":0,"6658":-1,"6659":-1,"6660":-1,"6661":-1,"6662":-1,"6663":-1,"6664":-1,"6665":-1,"6666":-1,"6667":-1,"6668":-1,"6669":-1,"6670":-1,"6671":-1,"6672":-1,"6673":2687,"6674":2683,"6675":-1,"6676":2682,"6677":-1,"6678":2685,"6679":-1,"6680":-1,"6681":-1,"6682":-1,"6683":-1,"6684":-1,"6685":-1,"6686":-1,"6687":-1,"6688":-1,"6689":-1,"6690":-1,"6691":-1,"6692":-1,"6693":-1,"6694":-1,"6695":-1,"6696":-1,"6697":-1,"6698":-1,"6699":-1,"6700":-1,"6701":-1,"6702":-1,"6703":-1,"6704":-1,"6705":-1,"6706":-1,"6707":-1,"6708":-1,"6709":-1,"6710":-1,"6711":-1,"6712":-1,"6713":-1,"6714":-1,"6715":-1,"6716":2681,"6717":-1,"6718":-1,"6719":-1,"6720":-1,"6721":-1,"6722":-1,"6723":-1,"6724":-1,"6725":-1,"6726":-1,"6727":-1,"6728":-1,"6729":-1,"6730":2683,"6731":-1,"6732":-1,"6733":-1,"6734":-1,"6735":-1,"6736":-1,"6737":-1,"6738":-1,"6739":-1,"6740":-1,"6741":-1,"6742":-1,"6743":-1,"6744":-1,"6745":-1,"6746":-1,"6747":-1,"6748":-1,"6749":2683,"6750":-1,"6751":-1,"6752":-1,"6753":-1,"6754":-1,"6755":-1,"6756":-1,"6757":2684,"6758":-1,"6759":-1,"6760":-1,"6761":2685,"6762":-1,"6763":-1,"6764":-1,"6765":-1,"6766":-1,"6767":-1,"6768":-1,"6769":-1,"6770":-1,"6771":-1,"6772":-1,"6773":-1,"6774":2685,"6775":0,"6776":-1,"6777":-1,"6778":-1,"6779":-1,"6780":-1,"6781":-1,"6782":-1,"6783":-1,"6784":2682,"6785":-1,"6786":-1,"6787":-1,"6788":-1,"6789":2685,"6790":2685,"6791":-1,"6792":-1,"6793":-1,"6794":-1,"6795":2685,"6796":0,"6797":-1,"6798":-1,"6799":-1,"6800":-1,"6801":-1,"6802":2684,"6803":2682,"6804":-1,"6805":-1,"6806":-1,"6807":-1,"6808":-1,"6809":-1,"6810":-1,"6811":-1,"6812":-1,"6813":2686,"6814":-1,"6815":-1,"6816":-1,"6817":-1,"6818":-1,"6819":-1,"6820":-1,"6821":-1,"6822":-1,"6823":-1,"6824":-1,"6825":-1,"6826":-1,"6827":-1,"6828":0,"6829":-1,"6830":2683,"6831":-1,"6832":-1,"6833":-1,"6834":-1,"6835":-1,"6836":-1,"6837":-1,"6838":-1,"6839":-1,"6840":-1,"6841":-1,"6842":-1,"6843":-1,"6844":-1,"6845":-1,"6846":-1,"6847":-1,"6848":-1,"6849":-1,"6850":-1,"6851":-1,"6852":-1,"6853":-1,"6854":-1,"6855":-1,"6856":2683,"6857":-1,"6858":-1,"6859":0,"6860":-1,"6861":-1,"6862":-1,"6863":-1,"6864":-1,"6865":-1,"6866":-1,"6867":0,"6868":-1,"6869":-1,"6870":-1,"6871":-1,"6872":-1,"6873":-1,"6874":-1,"6875":-1,"6876":-1,"6877":-1,"6878":-1,"6879":2682,"6880":-1,"6881":-1,"6882":2687,"6883":-1,"6884":-1,"6885":-1,"6886":-1,"6887":0,"6888":-1,"6889":-1,"6890":-1,"6891":-1,"6892":2683,"6893":-1,"6894":-1,"6895":-1,"6896":-1,"6897":-1,"6898":-1,"6899":-1,"6900":-1,"6901":-1,"6902":-1,"6903":2681,"6904":-1,"6905":-1,"6906":2682,"6907":-1,"6908":2682,"6909":-1,"6910":-1,"6911":-1,"6912":-1,"6913":-1,"6914":-1,"6915":-1,"6916":-1,"6917":-1,"6918":-1,"6919":-1,"6920":-1,"6921":-1,"6922":-1,"6923":-1,"6924":-1,"6925":-1,"6926":-1,"6927":-1,"6928":-1,"6929":-1,"6930":-1,"6931":-1,"6932":-1,"6933":-1,"6934":-1,"6935":-1,"6936":-1,"6937":2687,"6938":-1,"6939":-1,"6940":-1,"6941":-1,"6942":2683,"6943":-1,"6944":-1,"6945":-1,"6946":-1,"6947":-1,"6948":-1,"6949":-1,"6950":-1,"6951":-1,"6952":-1,"6953":2684,"6954":-1,"6955":-1,"6956":-1,"6957":-1,"6958":-1,"6959":-1,"6960":-1,"6961":-1,"6962":-1,"6963":-1,"6964":0,"6965":-1,"6966":-1,"6967":-1,"6968":2683,"6969":2683,"6970":-1,"6971":-1,"6972":-1,"6973":-1,"6974":-1,"6975":-1,"6976":-1,"6977":-1,"6978":2685,"6979":-1,"6980":-1,"6981":-1,"6982":0,"6983":-1,"6984":-1,"6985":-1,"6986":-1,"6987":2684,"6988":-1,"6989":-1,"6990":-1,"6991":-1,"6992":-1,"6993":2687,"6994":2682,"6995":-1,"6996":-1,"6997":-1,"6998":-1,"6999":-1,"7000":2683,"7001":-1,"7002":-1,"7003":2683,"7004":-1,"7005":-1,"7006":-1,"7007":-1,"7008":-1,"7009":-1,"7010":-1,"7011":-1,"7012":-1,"7013":-1,"7014":-1,"7015":-1,"7016":-1,"7017":-1,"7018":-1,"7019":-1,"7020":-1,"7021":-1,"7022":-1,"7023":-1,"7024":-1,"7025":2685,"7026":-1,"7027":-1,"7028":-1,"7029":-1,"7030":-1,"7031":2685,"7032":2682,"7033":-1,"7034":-1,"7035":-1,"7036":-1,"7037":2684,"7038":-1,"7039":2684,"7040":-1,"7041":-1,"7042":-1,"7043":-1,"7044":-1,"7045":-1,"7046":-1,"7047":-1,"7048":-1,"7049":-1,"7050":2681,"7051":-1,"7052":-1,"7053":-1,"7054":-1,"7055":-1,"7056":-1,"7057":-1,"7058":2686,"7059":-1,"7060":-1,"7061":-1,"7062":-1,"7063":2684,"7064":2682,"7065":-1,"7066":-1,"7067":-1,"7068":-1,"7069":-1,"7070":-1,"7071":-1,"7072":-1,"7073":-1,"7074":-1,"7075":-1,"7076":-1,"7077":-1,"7078":2682,"7079":2687,"7080":-1,"7081":2683,"7082":-1,"7083":2683,"7084":-1,"7085":-1,"7086":-1,"7087":-1,"7088":0,"7089":-1,"7090":-1,"7091":0,"7092":-1,"7093":0,"7094":0,"7095":-1,"7096":2684,"7097":-1,"7098":0,"7099":-1,"7100":-1,"7101":-1,"7102":-1,"7103":-1,"7104":-1,"7105":2685,"7106":2686,"7107":-1,"7108":-1,"7109":2682,"7110":-1,"7111":-1,"7112":-1,"7113":-1,"7114":-1,"7115":0,"7116":-1,"7117":-1,"7118":-1,"7119":-1,"7120":-1,"7121":-1,"7122":-1,"7123":-1,"7124":2687,"7125":-1,"7126":-1,"7127":-1,"7128":-1,"7129":-1,"7130":-1,"7131":-1,"7132":-1,"7133":-1,"7134":-1,"7135":-1,"7136":-1,"7137":-1,"7138":-1,"7139":-1,"7140":-1,"7141":-1,"7142":2681,"7143":-1,"7144":-1,"7145":-1,"7146":-1,"7147":-1,"7148":-1,"7149":2685,"7150":-1,"7151":-1,"7152":-1,"7153":-1,"7154":-1,"7155":-1,"7156":-1,"7157":-1,"7158":-1,"7159":2685,"7160":-1,"7161":-1,"7162":-1,"7163":-1,"7164":-1,"7165":-1,"7166":-1,"7167":-1,"7168":-1,"7169":-1,"7170":-1,"7171":-1,"7172":-1,"7173":-1,"7174":2684,"7175":-1,"7176":-1,"7177":-1,"7178":-1,"7179":0,"7180":-1,"7181":-1,"7182":0,"7183":-1,"7184":-1,"7185":-1,"7186":-1,"7187":-1,"7188":-1,"7189":-1,"7190":-1,"7191":-1,"7192":-1,"7193":-1,"7194":-1,"7195":-1,"7196":-1,"7197":-1,"7198":-1,"7199":-1,"7200":-1,"7201":2686,"7202":-1,"7203":2682,"7204":-1,"7205":0,"7206":-1,"7207":-1,"7208":-1,"7209":-1,"7210":-1,"7211":0,"7212":-1,"7213":-1,"7214":-1,"7215":-1,"7216":-1,"7217":-1,"7218":-1,"7219":-1,"7220":-1,"7221":2682,"7222":-1,"7223":-1,"7224":-1,"7225":-1,"7226":-1,"7227":2683,"7228":-1,"7229":-1,"7230":-1,"7231":-1,"7232":-1,"7233":-1,"7234":-1,"7235":-1,"7236":-1,"7237":-1,"7238":-1,"7239":-1,"7240":-1,"7241":-1,"7242":-1,"7243":-1,"7244":0,"7245":-1,"7246":-1,"7247":-1,"7248":-1,"7249":-1,"7250":-1,"7251":-1,"7252":-1,"7253":-1,"7254":-1,"7255":-1,"7256":-1,"7257":2686,"7258":2684,"7259":-1,"7260":-1,"7261":-1,"7262":-1,"7263":-1,"7264":-1,"7265":-1,"7266":-1,"7267":-1,"7268":-1,"7269":2682,"7270":2682,"7271":-1,"7272":-1,"7273":-1,"7274":-1,"7275":-1,"7276":-1,"7277":-1,"7278":-1,"7279":-1,"7280":-1,"7281":2682,"7282":-1,"7283":-1,"7284":-1,"7285":-1,"7286":-1,"7287":-1,"7288":2685,"7289":-1,"7290":-1,"7291":-1,"7292":-1,"7293":-1,"7294":-1,"7295":-1,"7296":-1,"7297":-1,"7298":-1,"7299":2682,"7300":-1,"7301":0,"7302":0,"7303":-1,"7304":-1,"7305":-1,"7306":-1,"7307":2686,"7308":2685,"7309":-1,"7310":-1,"7311":-1,"7312":-1,"7313":-1,"7314":-1,"7315":-1,"7316":-1,"7317":-1,"7318":-1,"7319":-1,"7320":-1,"7321":-1,"7322":-1,"7323":-1,"7324":2683,"7325":0,"7326":-1,"7327":-1,"7328":-1,"7329":-1,"7330":-1,"7331":2682,"7332":-1,"7333":-1,"7334":0,"7335":0,"7336":2686,"7337":2683,"7338":-1,"7339":-1,"7340":-1,"7341":-1,"7342":-1,"7343":-1,"7344":-1,"7345":-1,"7346":-1,"7347":-1,"7348":-1,"7349":-1,"7350":-1,"7351":0,"7352":-1,"7353":-1,"7354":-1,"7355":-1,"7356":-1,"7357":-1,"7358":-1,"7359":2682,"7360":-1,"7361":-1,"7362":-1,"7363":-1,"7364":-1,"7365":-1,"7366":-1,"7367":-1,"7368":-1,"7369":-1,"7370":0,"7371":-1,"7372":-1,"7373":-1,"7374":-1,"7375":-1,"7376":-1,"7377":-1,"7378":-1,"7379":-1,"7380":-1,"7381":0,"7382":-1,"7383":-1,"7384":-1,"7385":2681,"7386":2686,"7387":-1,"7388":-1,"7389":-1,"7390":-1,"7391":-1,"7392":-1,"7393":2682,"7394":-1,"7395":-1,"7396":-1,"7397":-1,"7398":0,"7399":2687,"7400":-1,"7401":-1,"7402":2683,"7403":-1,"7404":-1,"7405":-1,"7406":-1,"7407":-1,"7408":-1,"7409":-1,"7410":-1,"7411":-1,"7412":-1,"7413":-1,"7414":2687,"7415":-1,"7416":0,"7417":-1,"7418":-1,"7419":-1,"7420":-1,"7421":0,"7422":2687,"7423":-1,"7424":-1,"7425":-1,"7426":-1,"7427":-1,"7428":-1,"7429":2684,"7430":-1,"7431":-1,"7432":-1,"7433":-1,"7434":2684,"7435":-1,"7436":-1,"7437":0,"7438":2683,"7439":-1,"7440":-1,"7441":-1,"7442":-1,"7443":-1,"7444":-1,"7445":-1,"7446":-1,"7447":-1,"7448":-1,"7449":-1,"7450":-1,"7451":2687,"7452":-1,"7453":-1,"7454":-1,"7455":-1,"7456":-1,"7457":-1,"7458":2687,"7459":-1,"7460":-1,"7461":-1,"7462":-1,"7463":-1,"7464":2687,"7465":-1,"7466":0,"7467":-1,"7468":0,"7469":-1,"7470":-1,"7471":0,"7472":-1,"7473":-1,"7474":-1,"7475":-1,"7476":-1,"7477":-1,"7478":-1,"7479":-1,"7480":-1,"7481":-1,"7482":-1,"7483":-1,"7484":-1,"7485":-1,"7486":-1,"7487":-1,"7488":2685,"7489":2682,"7490":-1,"7491":-1,"7492":-1,"7493":2682,"7494":-1,"7495":-1,"7496":0,"7497":-1,"7498":-1,"7499":2683,"7500":-1,"7501":-1,"7502":-1,"7503":-1,"7504":-1,"7505":-1,"7506":-1,"7507":-1,"7508":-1,"7509":-1,"7510":-1,"7511":-1,"7512":-1,"7513":-1,"7514":-1,"7515":-1,"7516":-1,"7517":-1,"7518":-1,"7519":-1,"7520":-1,"7521":-1,"7522":-1,"7523":-1,"7524":2683,"7525":-1,"7526":-1,"7527":-1,"7528":-1,"7529":-1,"7530":-1,"7531":-1,"7532":2682,"7533":-1,"7534":-1,"7535":0,"7536":-1,"7537":-1,"7538":-1,"7539":-1,"7540":-1,"7541":-1,"7542":-1,"7543":-1,"7544":-1,"7545":2683,"7546":-1,"7547":-1,"7548":-1,"7549":-1,"7550":-1,"7551":-1,"7552":0,"7553":-1,"7554":-1,"7555":-1,"7556":-1,"7557":-1,"7558":-1,"7559":-1,"7560":-1,"7561":-1,"7562":-1,"7563":-1,"7564":0,"7565":-1,"7566":-1,"7567":-1,"7568":-1,"7569":0,"7570":2684,"7571":-1,"7572":-1,"7573":-1,"7574":-1,"7575":2687,"7576":-1,"7577":-1,"7578":-1,"7579":-1,"7580":2687,"7581":-1,"7582":2683,"7583":-1,"7584":-1,"7585":-1,"7586":0,"7587":-1,"7588":-1,"7589":-1,"7590":-1,"7591":-1,"7592":-1,"7593":-1,"7594":-1,"7595":-1,"7596":-1,"7597":-1,"7598":-1,"7599":-1,"7600":-1,"7601":-1,"7602":-1,"7603":2686,"7604":-1,"7605":-1,"7606":-1,"7607":2685,"7608":-1,"7609":-1,"7610":-1,"7611":-1,"7612":2685,"7613":-1,"7614":-1,"7615":0,"7616":-1,"7617":-1,"7618":-1,"7619":-1,"7620":-1,"7621":2686,"7622":-1,"7623":-1,"7624":-1,"7625":-1,"7626":-1,"7627":-1,"7628":2686,"7629":-1,"7630":-1,"7631":-1,"7632":-1,"7633":-1,"7634":2686,"7635":-1,"7636":-1,"7637":-1,"7638":-1,"7639":-1,"7640":-1,"7641":2684,"7642":-1,"7643":-1,"7644":-1,"7645":-1,"7646":2682,"7647":-1,"7648":-1,"7649":-1,"7650":-1,"7651":-1,"7652":-1,"7653":-1,"7654":-1,"7655":-1,"7656":-1,"7657":-1,"7658":-1,"7659":2681,"7660":-1,"7661":-1,"7662":-1,"7663":-1,"7664":-1,"7665":-1,"7666":-1,"7667":-1,"7668":-1,"7669":-1,"7670":-1,"7671":2685,"7672":-1,"7673":-1,"7674":-1,"7675":-1,"7676":-1,"7677":-1,"7678":-1,"7679":-1,"7680":-1,"7681":-1,"7682":-1,"7683":-1,"7684":-1,"7685":2685,"7686":-1,"7687":-1,"7688":-1,"7689":-1,"7690":2686,"7691":0,"7692":-1,"7693":-1,"7694":-1,"7695":2681,"7696":-1,"7697":-1,"7698":-1,"7699":2683,"7700":-1,"7701":-1,"7702":-1,"7703":-1,"7704":-1,"7705":-1,"7706":-1,"7707":2684,"7708":-1,"7709":-1,"7710":-1,"7711":2687,"7712":-1,"7713":2684,"7714":-1,"7715":-1,"7716":-1,"7717":-1,"7718":-1,"7719":2683,"7720":-1,"7721":-1,"7722":-1,"7723":2683,"7724":-1,"7725":2685,"7726":-1,"7727":-1,"7728":-1,"7729":-1,"7730":-1,"7731":-1,"7732":-1,"7733":-1,"7734":-1,"7735":2684,"7736":-1,"7737":-1,"7738":-1,"7739":-1,"7740":-1,"7741":2682,"7742":-1,"7743":-1,"7744":-1,"7745":-1,"7746":-1,"7747":-1,"7748":-1,"7749":-1,"7750":-1,"7751":-1,"7752":-1,"7753":-1,"7754":-1,"7755":0,"7756":-1,"7757":2686,"7758":-1,"7759":2684,"7760":-1,"7761":-1,"7762":-1,"7763":-1,"7764":-1,"7765":-1,"7766":2683,"7767":-1,"7768":2683,"7769":-1,"7770":-1,"7771":-1,"7772":-1,"7773":2686,"7774":-1,"7775":-1,"7776":0,"7777":-1,"7778":-1,"7779":-1,"7780":-1,"7781":2687,"7782":-1,"7783":-1,"7784":-1,"7785":-1,"7786":-1,"7787":-1,"7788":-1,"7789":-1,"7790":-1,"7791":-1,"7792":-1,"7793":-1,"7794":-1,"7795":-1,"7796":-1,"7797":-1,"7798":-1,"7799":-1,"7800":-1,"7801":-1,"7802":-1,"7803":-1,"7804":-1,"7805":-1,"7806":2684,"7807":-1,"7808":-1,"7809":-1,"7810":2681,"7811":-1,"7812":-1,"7813":-1,"7814":-1,"7815":-1,"7816":-1,"7817":-1,"7818":-1,"7819":-1,"7820":-1,"7821":-1,"7822":-1,"7823":-1,"7824":-1,"7825":-1,"7826":-1,"7827":-1,"7828":2681,"7829":-1,"7830":-1,"7831":-1,"7832":-1,"7833":-1,"7834":-1,"7835":-1,"7836":-1,"7837":-1,"7838":-1,"7839":-1,"7840":-1,"7841":-1,"7842":-1,"7843":-1,"7844":-1,"7845":-1,"7846":-1,"7847":-1,"7848":-1,"7849":0,"7850":-1,"7851":-1,"7852":-1,"7853":-1,"7854":-1,"7855":-1,"7856":-1,"7857":2684,"7858":-1,"7859":-1,"7860":-1,"7861":-1,"7862":2683,"7863":2686,"7864":-1,"7865":-1,"7866":2682,"7867":-1,"7868":-1,"7869":-1,"7870":-1,"7871":-1,"7872":-1,"7873":-1,"7874":-1,"7875":-1,"7876":-1,"7877":-1,"7878":-1,"7879":-1,"7880":-1,"7881":-1,"7882":-1,"7883":-1,"7884":-1,"7885":-1,"7886":-1,"7887":-1,"7888":2686,"7889":-1,"7890":-1,"7891":-1,"7892":-1,"7893":-1,"7894":-1,"7895":-1,"7896":-1,"7897":-1,"7898":-1,"7899":-1,"7900":-1,"7901":-1,"7902":-1,"7903":2683,"7904":2683,"7905":-1,"7906":-1,"7907":-1,"7908":-1,"7909":-1,"7910":-1,"7911":2681,"7912":-1,"7913":-1,"7914":-1,"7915":2681,"7916":-1,"7917":-1,"7918":-1,"7919":-1,"7920":-1,"7921":2683,"7922":-1,"7923":-1,"7924":-1,"7925":-1,"7926":-1,"7927":-1,"7928":-1,"7929":-1,"7930":-1,"7931":-1,"7932":-1,"7933":-1,"7934":-1,"7935":0,"7936":-1,"7937":-1,"7938":-1,"7939":-1,"7940":-1,"7941":-1,"7942":-1,"7943":-1,"7944":-1,"7945":-1,"7946":-1,"7947":-1,"7948":-1,"7949":-1,"7950":-1,"7951":-1,"7952":-1,"7953":-1,"7954":0,"7955":-1,"7956":-1,"7957":2683,"7958":-1,"7959":2684,"7960":-1,"7961":-1,"7962":-1,"7963":-1,"7964":-1,"7965":-1,"7966":2682,"7967":-1,"7968":-1,"7969":-1,"7970":-1,"7971":2683,"7972":-1,"7973":2681,"7974":-1,"7975":-1,"7976":-1,"7977":-1,"7978":-1,"7979":-1,"7980":-1,"7981":-1,"7982":-1,"7983":-1,"7984":-1,"7985":-1,"7986":-1,"7987":2685,"7988":-1,"7989":-1,"7990":-1,"7991":-1,"7992":-1,"7993":2682,"7994":2685,"7995":-1,"7996":-1,"7997":-1,"7998":-1,"7999":-1,"8000":0,"8001":-1,"8002":-1,"8003":-1,"8004":-1,"8005":-1,"8006":-1,"8007":-1,"8008":-1,"8009":-1,"8010":-1,"8011":-1,"8012":-1,"8013":-1,"8014":-1,"8015":-1,"8016":2684,"8017":-1,"8018":-1,"8019":-1,"8020":-1,"8021":-1,"8022":-1,"8023":-1,"8024":0,"8025":-1,"8026":-1,"8027":-1,"8028":-1,"8029":-1,"8030":-1,"8031":-1,"8032":-1,"8033":-1,"8034":-1,"8035":-1,"8036":2687,"8037":-1,"8038":-1,"8039":-1,"8040":2683,"8041":2684,"8042":2686,"8043":-1,"8044":-1,"8045":-1,"8046":-1,"8047":-1,"8048":-1,"8049":-1,"8050":-1,"8051":-1,"8052":-1,"8053":-1,"8054":-1,"8055":-1,"8056":-1,"8057":-1,"8058":-1,"8059":-1,"8060":2685,"8061":-1,"8062":-1,"8063":-1,"8064":-1,"8065":-1,"8066":-1,"8067":-1,"8068":2683,"8069":-1,"8070":2683,"8071":-1,"8072":-1,"8073":-1,"8074":-1,"8075":-1,"8076":-1,"8077":-1,"8078":-1,"8079":-1,"8080":-1,"8081":-1,"8082":-1,"8083":-1,"8084":-1,"8085":-1,"8086":-1,"8087":-1,"8088":-1,"8089":-1,"8090":0,"8091":-1,"8092":-1,"8093":-1,"8094":-1,"8095":-1,"8096":-1,"8097":-1,"8098":0,"8099":-1,"8100":-1,"8101":-1,"8102":2686,"8103":-1,"8104":-1,"8105":-1,"8106":-1,"8107":2686,"8108":2681,"8109":-1,"8110":-1,"8111":2684,"8112":-1,"8113":2684,"8114":-1,"8115":-1,"8116":-1,"8117":-1,"8118":-1,"8119":-1,"8120":-1,"8121":-1,"8122":-1,"8123":-1,"8124":2684,"8125":2687,"8126":-1,"8127":-1,"8128":-1,"8129":-1,"8130":0,"8131":-1,"8132":-1,"8133":-1,"8134":-1,"8135":-1,"8136":-1,"8137":-1,"8138":-1,"8139":-1,"8140":-1,"8141":-1,"8142":-1,"8143":-1,"8144":-1,"8145":-1,"8146":-1,"8147":-1,"8148":-1,"8149":-1,"8150":-1,"8151":-1,"8152":-1,"8153":-1,"8154":-1,"8155":-1,"8156":-1,"8157":-1,"8158":-1,"8159":-1,"8160":-1,"8161":-1,"8162":-1,"8163":-1,"8164":-1,"8165":-1,"8166":-1,"8167":2681,"8168":-1,"8169":-1,"8170":-1,"8171":-1,"8172":-1,"8173":-1,"8174":-1,"8175":-1,"8176":-1,"8177":2683,"8178":2686,"8179":-1,"8180":-1,"8181":-1,"8182":-1,"8183":-1,"8184":-1,"8185":-1,"8186":-1,"8187":2681,"8188":-1,"8189":2685,"8190":-1,"8191":0,"8192":0,"8193":-1,"8194":-1,"8195":-1,"8196":-1,"8197":-1,"8198":-1,"8199":-1,"8200":2683,"8201":2682,"8202":-1,"8203":-1,"8204":-1,"8205":2685,"8206":-1,"8207":2685,"8208":-1,"8209":-1,"8210":-1,"8211":-1,"8212":0,"8213":-1,"8214":-1,"8215":-1,"8216":-1,"8217":-1,"8218":-1,"8219":-1,"8220":2687,"8221":-1,"8222":-1,"8223":-1,"8224":2685,"8225":-1,"8226":-1,"8227":-1,"8228":-1,"8229":-1,"8230":-1,"8231":2684,"8232":2686,"8233":-1,"8234":-1,"8235":-1,"8236":2686,"8237":-1,"8238":-1,"8239":-1,"8240":2686,"8241":-1,"8242":-1,"8243":-1,"8244":-1,"8245":-1,"8246":-1,"8247":-1,"8248":-1,"8249":-1,"8250":-1,"8251":-1,"8252":-1,"8253":-1,"8254":-1,"8255":-1,"8256":-1,"8257":-1,"8258":-1,"8259":-1,"8260":-1,"8261":-1,"8262":2686,"8263":-1,"8264":-1,"8265":-1,"8266":-1,"8267":-1,"8268":-1,"8269":-1,"8270":2682,"8271":-1,"8272":-1,"8273":-1,"8274":-1,"8275":-1,"8276":-1,"8277":-1,"8278":-1,"8279":-1,"8280":-1,"8281":-1,"8282":-1,"8283":2683,"8284":2683,"8285":0,"8286":-1,"8287":-1,"8288":-1,"8289":-1,"8290":-1,"8291":-1,"8292":-1,"8293":-1,"8294":-1,"8295":2683,"8296":-1,"8297":-1,"8298":-1,"8299":-1,"8300":0,"8301":0,"8302":2686,"8303":-1,"8304":-1,"8305":-1,"8306":2686,"8307":0,"8308":2686,"8309":-1,"8310":2685,"8311":-1,"8312":-1,"8313":-1,"8314":-1,"8315":-1,"8316":-1,"8317":-1,"8318":-1,"8319":-1,"8320":-1,"8321":-1,"8322":-1,"8323":-1,"8324":-1,"8325":-1,"8326":-1,"8327":-1,"8328":-1,"8329":0,"8330":-1,"8331":-1,"8332":-1,"8333":-1,"8334":-1,"8335":0,"8336":-1,"8337":-1,"8338":-1,"8339":-1,"8340":-1,"8341":-1,"8342":-1,"8343":-1,"8344":-1,"8345":2681,"8346":-1,"8347":-1,"8348":-1,"8349":-1,"8350":-1,"8351":2685,"8352":-1,"8353":-1,"8354":-1,"8355":-1,"8356":-1,"8357":-1,"8358":-1,"8359":-1,"8360":0,"8361":-1,"8362":-1,"8363":-1,"8364":-1,"8365":-1,"8366":-1,"8367":-1,"8368":-1,"8369":-1,"8370":2685,"8371":2684,"8372":2686,"8373":-1,"8374":-1,"8375":-1,"8376":-1,"8377":-1,"8378":-1,"8379":2684,"8380":-1,"8381":-1,"8382":2685,"8383":-1,"8384":-1,"8385":2682,"8386":-1,"8387":-1,"8388":-1,"8389":2682,"8390":-1,"8391":-1,"8392":-1,"8393":-1,"8394":-1,"8395":-1,"8396":-1,"8397":0,"8398":-1,"8399":2682,"8400":-1,"8401":-1,"8402":2681,"8403":-1,"8404":-1,"8405":-1,"8406":-1,"8407":-1,"8408":-1,"8409":-1,"8410":-1,"8411":-1,"8412":-1,"8413":-1,"8414":-1,"8415":2686,"8416":-1,"8417":-1,"8418":-1,"8419":2681,"8420":-1,"8421":-1,"8422":2686,"8423":-1,"8424":-1,"8425":-1,"8426":-1,"8427":-1,"8428":-1,"8429":-1,"8430":-1,"8431":-1,"8432":-1,"8433":-1,"8434":-1,"8435":-1,"8436":0,"8437":-1,"8438":-1,"8439":-1,"8440":-1,"8441":2683,"8442":2685,"8443":-1,"8444":2683,"8445":-1,"8446":-1,"8447":-1,"8448":-1,"8449":-1,"8450":-1,"8451":-1,"8452":-1,"8453":-1,"8454":-1,"8455":2685,"8456":-1,"8457":-1,"8458":-1,"8459":-1,"8460":-1,"8461":-1,"8462":-1,"8463":2686,"8464":-1,"8465":-1,"8466":-1,"8467":-1,"8468":-1,"8469":-1,"8470":-1,"8471":-1,"8472":-1,"8473":-1,"8474":2681,"8475":-1,"8476":-1,"8477":-1,"8478":-1,"8479":-1,"8480":-1,"8481":-1,"8482":-1,"8483":-1,"8484":-1,"8485":-1,"8486":-1,"8487":-1,"8488":-1,"8489":-1,"8490":2684,"8491":2684,"8492":-1,"8493":-1,"8494":2681,"8495":-1,"8496":-1,"8497":2681,"8498":-1,"8499":2683,"8500":-1,"8501":2684,"8502":-1,"8503":-1,"8504":-1,"8505":-1,"8506":-1,"8507":-1,"8508":-1,"8509":-1,"8510":-1,"8511":-1,"8512":-1,"8513":2686,"8514":-1,"8515":-1,"8516":-1,"8517":-1,"8518":-1,"8519":-1,"8520":-1,"8521":-1,"8522":-1,"8523":-1,"8524":-1,"8525":-1,"8526":-1,"8527":-1,"8528":-1,"8529":-1,"8530":2687,"8531":-1,"8532":-1,"8533":-1,"8534":-1,"8535":2682,"8536":-1,"8537":-1,"8538":-1,"8539":-1,"8540":-1,"8541":-1,"8542":-1,"8543":-1,"8544":-1,"8545":-1,"8546":-1,"8547":-1,"8548":-1,"8549":2684,"8550":-1,"8551":-1,"8552":-1,"8553":-1,"8554":0,"8555":-1,"8556":-1,"8557":-1,"8558":2682,"8559":-1,"8560":-1,"8561":-1,"8562":-1,"8563":-1,"8564":0,"8565":-1,"8566":-1,"8567":-1,"8568":-1,"8569":-1,"8570":-1,"8571":-1,"8572":-1,"8573":2686,"8574":-1,"8575":-1,"8576":-1,"8577":-1,"8578":-1,"8579":-1,"8580":-1,"8581":2686,"8582":-1,"8583":-1,"8584":-1,"8585":2683,"8586":-1,"8587":-1,"8588":-1,"8589":-1,"8590":2684,"8591":-1,"8592":-1,"8593":2684,"8594":-1,"8595":-1,"8596":-1,"8597":-1,"8598":-1,"8599":-1,"8600":-1,"8601":-1,"8602":0,"8603":-1,"8604":2686,"8605":-1,"8606":-1,"8607":-1,"8608":-1,"8609":-1,"8610":-1,"8611":-1,"8612":-1,"8613":2687,"8614":-1,"8615":-1,"8616":-1,"8617":2687,"8618":-1,"8619":-1,"8620":-1,"8621":-1,"8622":-1,"8623":-1,"8624":-1,"8625":-1,"8626":-1,"8627":-1,"8628":-1,"8629":-1,"8630":-1,"8631":-1,"8632":-1,"8633":-1,"8634":-1,"8635":-1,"8636":-1,"8637":-1,"8638":-1,"8639":-1,"8640":-1,"8641":-1,"8642":-1,"8643":-1,"8644":-1,"8645":-1,"8646":-1,"8647":-1,"8648":-1,"8649":-1,"8650":-1,"8651":2683,"8652":-1,"8653":-1,"8654":-1,"8655":-1,"8656":-1,"8657":-1,"8658":-1,"8659":-1,"8660":-1,"8661":-1,"8662":-1,"8663":-1,"8664":-1,"8665":2686,"8666":-1,"8667":2685,"8668":-1,"8669":2683,"8670":-1,"8671":-1,"8672":-1,"8673":2685,"8674":-1,"8675":-1,"8676":-1,"8677":-1,"8678":-1,"8679":-1,"8680":-1,"8681":-1,"8682":2686,"8683":-1,"8684":-1,"8685":-1,"8686":-1,"8687":-1,"8688":-1,"8689":2686,"8690":-1,"8691":-1,"8692":-1,"8693":-1,"8694":-1,"8695":-1,"8696":-1,"8697":-1,"8698":-1,"8699":-1,"8700":-1,"8701":-1,"8702":-1,"8703":-1,"8704":-1,"8705":0,"8706":-1,"8707":-1,"8708":-1,"8709":-1,"8710":-1,"8711":-1,"8712":-1,"8713":-1,"8714":-1,"8715":-1,"8716":-1,"8717":-1,"8718":-1,"8719":-1,"8720":2684,"8721":-1,"8722":-1,"8723":-1,"8724":-1,"8725":-1,"8726":2681,"8727":-1,"8728":-1,"8729":-1,"8730":-1,"8731":-1,"8732":-1,"8733":-1,"8734":-1,"8735":-1,"8736":2683,"8737":-1,"8738":-1,"8739":2686,"8740":-1,"8741":-1,"8742":-1,"8743":-1,"8744":-1,"8745":-1,"8746":-1,"8747":2684,"8748":-1,"8749":-1,"8750":-1,"8751":-1,"8752":-1,"8753":-1,"8754":-1,"8755":-1,"8756":-1,"8757":2685,"8758":-1,"8759":-1,"8760":-1,"8761":-1,"8762":-1,"8763":-1,"8764":-1,"8765":2686,"8766":2683,"8767":-1,"8768":-1,"8769":-1,"8770":-1,"8771":-1,"8772":2685,"8773":-1,"8774":-1,"8775":0,"8776":-1,"8777":-1,"8778":-1,"8779":-1,"8780":2685,"8781":2685,"8782":-1,"8783":-1,"8784":-1,"8785":-1,"8786":-1,"8787":-1,"8788":-1,"8789":-1,"8790":-1,"8791":0,"8792":-1,"8793":-1,"8794":-1,"8795":-1,"8796":-1,"8797":2681,"8798":2682,"8799":2681,"8800":-1,"8801":-1,"8802":-1,"8803":-1,"8804":-1,"8805":-1,"8806":-1,"8807":-1,"8808":-1,"8809":-1,"8810":2687,"8811":-1,"8812":-1,"8813":-1,"8814":2686,"8815":-1,"8816":-1,"8817":-1,"8818":-1,"8819":-1,"8820":-1,"8821":-1,"8822":-1,"8823":-1,"8824":-1,"8825":-1,"8826":-1,"8827":-1,"8828":-1,"8829":-1,"8830":-1,"8831":-1,"8832":-1,"8833":-1,"8834":-1,"8835":-1,"8836":2686,"8837":-1,"8838":-1,"8839":-1,"8840":-1,"8841":-1,"8842":-1,"8843":-1,"8844":-1,"8845":-1,"8846":0,"8847":-1,"8848":2687,"8849":2683,"8850":-1,"8851":-1,"8852":-1,"8853":2685,"8854":2685,"8855":-1,"8856":-1,"8857":2685,"8858":2682,"8859":2684,"8860":-1,"8861":-1,"8862":-1,"8863":2684,"8864":-1,"8865":2686,"8866":-1,"8867":2686,"8868":-1,"8869":2682,"8870":-1,"8871":-1,"8872":-1,"8873":-1,"8874":-1,"8875":-1,"8876":-1,"8877":2684,"8878":2681,"8879":-1,"8880":2685,"8881":-1,"8882":-1,"8883":-1,"8884":-1,"8885":-1,"8886":-1,"8887":-1,"8888":-1,"8889":2686,"8890":-1,"8891":-1,"8892":0,"8893":-1,"8894":2686,"8895":-1,"8896":-1,"8897":-1,"8898":-1,"8899":-1,"8900":-1,"8901":-1,"8902":-1,"8903":-1,"8904":-1,"8905":-1,"8906":-1,"8907":2681,"8908":-1,"8909":-1,"8910":0,"8911":-1,"8912":-1,"8913":-1,"8914":2684,"8915":2684,"8916":-1,"8917":2683,"8918":-1,"8919":-1,"8920":-1,"8921":-1,"8922":-1,"8923":0,"8924":-1,"8925":-1,"8926":2686,"8927":-1,"8928":-1,"8929":-1,"8930":-1,"8931":2682,"8932":2685,"8933":-1,"8934":-1,"8935":-1,"8936":0,"8937":-1,"8938":-1,"8939":-1,"8940":-1,"8941":-1,"8942":-1,"8943":-1,"8944":-1,"8945":-1,"8946":-1,"8947":-1,"8948":-1,"8949":-1,"8950":-1,"8951":-1,"8952":-1,"8953":-1,"8954":-1,"8955":-1,"8956":2683,"8957":2683,"8958":-1,"8959":-1,"8960":-1,"8961":-1,"8962":-1,"8963":2683,"8964":2684,"8965":-1,"8966":-1,"8967":-1,"8968":-1,"8969":-1,"8970":-1,"8971":-1,"8972":-1,"8973":-1,"8974":-1,"8975":-1,"8976":-1,"8977":-1,"8978":-1,"8979":-1,"8980":2687,"8981":-1,"8982":-1,"8983":-1,"8984":-1,"8985":-1,"8986":-1,"8987":-1,"8988":-1,"8989":-1,"8990":-1,"8991":-1,"8992":-1,"8993":2686,"8994":-1,"8995":-1,"8996":2681,"8997":-1,"8998":-1,"8999":-1,"9000":-1,"9001":-1,"9002":-1,"9003":-1,"9004":-1,"9005":-1,"9006":-1,"9007":-1,"9008":0,"9009":-1,"9010":-1,"9011":-1,"9012":-1,"9013":2685,"9014":-1,"9015":-1,"9016":-1,"9017":-1,"9018":-1,"9019":-1,"9020":-1,"9021":-1,"9022":-1,"9023":-1,"9024":-1,"9025":-1,"9026":2681,"9027":-1,"9028":-1,"9029":-1,"9030":-1,"9031":-1,"9032":-1,"9033":2685,"9034":-1,"9035":-1,"9036":-1,"9037":-1,"9038":-1,"9039":2681,"9040":-1,"9041":-1,"9042":-1,"9043":-1,"9044":2683,"9045":-1,"9046":-1,"9047":-1,"9048":-1,"9049":-1,"9050":-1,"9051":-1,"9052":-1,"9053":-1,"9054":-1,"9055":-1,"9056":-1,"9057":2683,"9058":-1,"9059":-1,"9060":-1,"9061":-1,"9062":-1,"9063":-1,"9064":-1,"9065":-1,"9066":-1,"9067":0,"9068":-1,"9069":-1,"9070":-1,"9071":2685,"9072":-1,"9073":-1,"9074":2686,"9075":2684,"9076":-1,"9077":-1,"9078":-1,"9079":-1,"9080":-1,"9081":-1,"9082":-1,"9083":-1,"9084":-1,"9085":2684,"9086":-1,"9087":0,"9088":-1,"9089":0,"9090":2682,"9091":-1,"9092":2684,"9093":-1,"9094":-1,"9095":-1,"9096":-1,"9097":-1,"9098":-1,"9099":-1,"9100":2683,"9101":-1,"9102":-1,"9103":-1,"9104":-1,"9105":-1,"9106":-1,"9107":-1,"9108":-1,"9109":-1,"9110":-1,"9111":2682,"9112":-1,"9113":2683,"9114":-1,"9115":-1,"9116":-1,"9117":-1,"9118":0,"9119":-1,"9120":-1,"9121":2684,"9122":2681,"9123":-1,"9124":-1,"9125":-1,"9126":-1,"9127":-1,"9128":-1,"9129":-1,"9130":-1,"9131":-1,"9132":-1,"9133":-1,"9134":-1,"9135":-1,"9136":-1,"9137":2685,"9138":-1,"9139":-1,"9140":-1,"9141":-1,"9142":-1,"9143":-1,"9144":-1,"9145":-1,"9146":-1,"9147":-1,"9148":-1,"9149":0,"9150":2685,"9151":-1,"9152":-1,"9153":-1,"9154":-1,"9155":-1,"9156":2685,"9157":-1,"9158":-1,"9159":-1,"9160":2686,"9161":-1,"9162":-1,"9163":-1,"9164":-1,"9165":-1,"9166":-1,"9167":-1,"9168":2687,"9169":-1,"9170":-1,"9171":-1,"9172":-1,"9173":-1,"9174":2683,"9175":2683,"9176":-1,"9177":-1,"9178":-1,"9179":-1,"9180":-1,"9181":-1,"9182":-1,"9183":-1,"9184":-1,"9185":-1,"9186":-1,"9187":-1,"9188":-1,"9189":-1,"9190":-1,"9191":-1,"9192":-1,"9193":-1,"9194":-1,"9195":-1,"9196":-1,"9197":-1,"9198":-1,"9199":-1,"9200":-1,"9201":-1,"9202":-1,"9203":-1,"9204":-1,"9205":-1,"9206":-1,"9207":-1,"9208":-1,"9209":-1,"9210":-1,"9211":-1,"9212":-1,"9213":-1,"9214":-1,"9215":-1,"9216":-1,"9217":2684,"9218":-1,"9219":-1,"9220":-1,"9221":-1,"9222":-1,"9223":-1,"9224":-1,"9225":-1,"9226":-1,"9227":-1,"9228":-1,"9229":-1,"9230":-1,"9231":-1,"9232":2684,"9233":2685,"9234":-1,"9235":-1,"9236":-1,"9237":2686,"9238":-1,"9239":-1,"9240":-1,"9241":-1,"9242":-1,"9243":-1,"9244":-1,"9245":-1,"9246":-1,"9247":-1,"9248":-1,"9249":-1,"9250":-1,"9251":-1,"9252":-1,"9253":-1,"9254":-1,"9255":2682,"9256":-1,"9257":-1,"9258":0,"9259":-1,"9260":-1,"9261":2682,"9262":-1,"9263":-1,"9264":-1,"9265":-1,"9266":-1,"9267":-1,"9268":-1,"9269":-1,"9270":-1,"9271":-1,"9272":-1,"9273":-1,"9274":-1,"9275":-1,"9276":-1,"9277":-1,"9278":-1,"9279":-1,"9280":-1,"9281":-1,"9282":-1,"9283":-1,"9284":-1,"9285":-1,"9286":-1,"9287":-1,"9288":-1,"9289":-1,"9290":-1,"9291":-1,"9292":-1,"9293":2683,"9294":-1,"9295":-1,"9296":-1,"9297":-1,"9298":-1,"9299":-1,"9300":-1,"9301":2681,"9302":-1,"9303":-1,"9304":-1,"9305":-1,"9306":2683,"9307":-1,"9308":-1,"9309":-1,"9310":-1,"9311":-1,"9312":-1,"9313":-1,"9314":0,"9315":-1,"9316":2684,"9317":-1,"9318":-1,"9319":-1,"9320":-1,"9321":-1,"9322":2686,"9323":-1,"9324":2683,"9325":-1,"9326":-1,"9327":2687,"9328":-1,"9329":-1,"9330":-1,"9331":-1,"9332":2684,"9333":-1,"9334":-1,"9335":-1,"9336":2683,"9337":-1,"9338":-1,"9339":-1,"9340":-1,"9341":-1,"9342":-1,"9343":-1,"9344":-1,"9345":-1,"9346":-1,"9347":-1,"9348":0,"9349":-1,"9350":-1,"9351":2686,"9352":2684,"9353":-1,"9354":-1,"9355":-1,"9356":-1,"9357":-1,"9358":-1,"9359":-1,"9360":-1,"9361":-1,"9362":-1,"9363":-1,"9364":-1,"9365":-1,"9366":-1,"9367":-1,"9368":-1,"9369":0,"9370":-1,"9371":-1,"9372":-1,"9373":-1,"9374":-1,"9375":-1,"9376":-1,"9377":-1,"9378":-1,"9379":-1,"9380":-1,"9381":-1,"9382":-1,"9383":-1,"9384":-1,"9385":2685,"9386":-1,"9387":-1,"9388":-1,"9389":-1,"9390":-1,"9391":-1,"9392":-1,"9393":-1,"9394":-1,"9395":-1,"9396":-1,"9397":-1,"9398":-1,"9399":-1,"9400":-1,"9401":2687,"9402":-1,"9403":-1,"9404":2685,"9405":-1,"9406":-1,"9407":2683,"9408":-1,"9409":-1,"9410":-1,"9411":-1,"9412":-1,"9413":-1,"9414":-1,"9415":-1,"9416":2685,"9417":-1,"9418":-1,"9419":-1,"9420":-1,"9421":-1,"9422":-1,"9423":-1,"9424":-1,"9425":-1,"9426":-1,"9427":0,"9428":2684,"9429":-1,"9430":-1,"9431":-1,"9432":0,"9433":-1,"9434":0,"9435":-1,"9436":-1,"9437":-1,"9438":-1,"9439":-1,"9440":-1,"9441":-1,"9442":-1,"9443":-1,"9444":-1,"9445":-1,"9446":-1,"9447":-1,"9448":-1,"9449":2687,"9450":-1,"9451":-1,"9452":-1,"9453":-1,"9454":-1,"9455":-1,"9456":-1,"9457":-1,"9458":-1,"9459":2683,"9460":-1,"9461":-1,"9462":-1,"9463":-1,"9464":-1,"9465":2683,"9466":-1,"9467":-1,"9468":-1,"9469":-1,"9470":-1,"9471":-1,"9472":-1,"9473":-1,"9474":2682,"9475":-1,"9476":-1,"9477":-1,"9478":-1,"9479":2685,"9480":-1,"9481":-1,"9482":-1,"9483":-1,"9484":-1,"9485":-1,"9486":-1,"9487":-1,"9488":0,"9489":-1,"9490":-1,"9491":-1,"9492":-1,"9493":0,"9494":-1,"9495":2684,"9496":2685,"9497":-1,"9498":-1,"9499":2681,"9500":0,"9501":-1,"9502":-1,"9503":-1,"9504":-1,"9505":-1,"9506":-1,"9507":-1,"9508":-1,"9509":-1,"9510":-1,"9511":-1,"9512":-1,"9513":2684,"9514":2681,"9515":-1,"9516":-1,"9517":-1,"9518":-1,"9519":-1,"9520":-1,"9521":-1,"9522":2683,"9523":-1,"9524":-1,"9525":-1,"9526":-1,"9527":2681,"9528":-1,"9529":-1,"9530":-1,"9531":-1,"9532":-1,"9533":2684,"9534":-1,"9535":-1,"9536":-1,"9537":-1,"9538":-1,"9539":-1,"9540":-1,"9541":-1,"9542":-1,"9543":-1,"9544":-1,"9545":2681,"9546":-1,"9547":-1,"9548":2681,"9549":-1,"9550":-1,"9551":-1,"9552":-1,"9553":2683,"9554":-1,"9555":2681,"9556":-1,"9557":-1,"9558":-1,"9559":-1,"9560":-1,"9561":-1,"9562":2686,"9563":-1,"9564":-1,"9565":-1,"9566":-1,"9567":2686,"9568":-1,"9569":-1,"9570":-1,"9571":-1,"9572":-1,"9573":-1,"9574":-1,"9575":-1,"9576":-1,"9577":-1,"9578":-1,"9579":-1,"9580":-1,"9581":-1,"9582":-1,"9583":-1,"9584":-1,"9585":2685,"9586":2682,"9587":2681,"9588":-1,"9589":2685,"9590":-1,"9591":-1,"9592":-1,"9593":-1,"9594":-1,"9595":2683,"9596":-1,"9597":2686,"9598":-1,"9599":-1,"9600":2685,"9601":-1,"9602":0,"9603":-1,"9604":-1,"9605":-1,"9606":-1,"9607":0,"9608":-1,"9609":-1,"9610":-1,"9611":-1,"9612":-1,"9613":-1,"9614":-1,"9615":-1,"9616":-1,"9617":-1,"9618":-1,"9619":-1,"9620":-1,"9621":-1,"9622":-1,"9623":2682,"9624":-1,"9625":2686,"9626":-1,"9627":2685,"9628":-1,"9629":-1,"9630":-1,"9631":0,"9632":-1,"9633":-1,"9634":-1,"9635":-1,"9636":-1,"9637":-1,"9638":-1,"9639":-1,"9640":-1,"9641":-1,"9642":-1,"9643":-1,"9644":-1,"9645":-1,"9646":-1,"9647":0,"9648":-1,"9649":-1,"9650":-1,"9651":-1,"9652":2686,"9653":-1,"9654":-1,"9655":0,"9656":2681,"9657":-1,"9658":2681,"9659":-1,"9660":-1,"9661":-1,"9662":2686,"9663":-1,"9664":-1,"9665":-1,"9666":-1,"9667":-1,"9668":-1,"9669":-1,"9670":-1,"9671":-1,"9672":-1,"9673":-1,"9674":-1,"9675":-1,"9676":-1,"9677":-1,"9678":-1,"9679":2684,"9680":-1,"9681":-1,"9682":-1,"9683":-1,"9684":-1,"9685":-1,"9686":-1,"9687":-1,"9688":2685,"9689":-1,"9690":-1,"9691":-1,"9692":-1,"9693":-1,"9694":-1,"9695":-1,"9696":-1,"9697":-1,"9698":-1,"9699":-1,"9700":-1,"9701":-1,"9702":-1,"9703":-1,"9704":-1,"9705":-1,"9706":-1,"9707":-1,"9708":2687,"9709":0,"9710":-1,"9711":-1,"9712":-1,"9713":-1,"9714":-1,"9715":-1,"9716":-1,"9717":-1,"9718":-1,"9719":-1,"9720":-1,"9721":-1,"9722":2684,"9723":-1,"9724":-1,"9725":2683,"9726":-1,"9727":-1,"9728":-1,"9729":2684,"9730":-1,"9731":2686,"9732":-1,"9733":-1,"9734":-1,"9735":-1,"9736":-1,"9737":-1,"9738":-1,"9739":-1,"9740":-1,"9741":-1,"9742":-1,"9743":-1,"9744":-1,"9745":-1,"9746":-1,"9747":-1,"9748":-1,"9749":-1,"9750":-1,"9751":-1,"9752":-1,"9753":-1,"9754":-1,"9755":-1,"9756":-1,"9757":2687,"9758":-1,"9759":-1,"9760":-1,"9761":2685,"9762":-1,"9763":-1,"9764":-1,"9765":2682,"9766":2684,"9767":-1,"9768":-1,"9769":-1,"9770":-1,"9771":-1,"9772":-1,"9773":-1,"9774":-1,"9775":-1,"9776":-1,"9777":-1,"9778":-1,"9779":-1,"9780":-1,"9781":-1,"9782":-1,"9783":-1,"9784":-1,"9785":-1,"9786":2682,"9787":-1,"9788":2685,"9789":2684,"9790":-1,"9791":-1,"9792":-1,"9793":-1,"9794":-1,"9795":-1,"9796":-1,"9797":-1,"9798":-1,"9799":-1,"9800":-1,"9801":2682,"9802":-1,"9803":-1,"9804":2682,"9805":-1,"9806":-1,"9807":-1,"9808":-1,"9809":-1,"9810":-1,"9811":-1,"9812":-1,"9813":-1,"9814":-1,"9815":-1,"9816":-1,"9817":-1,"9818":-1,"9819":-1,"9820":2687,"9821":-1,"9822":-1,"9823":-1,"9824":2686,"9825":2683,"9826":2686,"9827":2687,"9828":-1,"9829":-1,"9830":2684,"9831":-1,"9832":-1,"9833":-1,"9834":-1,"9835":-1,"9836":-1,"9837":-1,"9838":-1,"9839":-1,"9840":-1,"9841":-1,"9842":-1,"9843":-1,"9844":-1,"9845":-1,"9846":-1,"9847":-1,"9848":0,"9849":-1,"9850":2682,"9851":-1,"9852":-1,"9853":2687,"9854":-1,"9855":-1,"9856":-1,"9857":-1,"9858":-1,"9859":-1,"9860":-1,"9861":-1,"9862":2686,"9863":-1,"9864":-1,"9865":-1,"9866":-1,"9867":2686,"9868":-1,"9869":-1,"9870":-1,"9871":-1,"9872":-1,"9873":-1,"9874":-1,"9875":-1,"9876":-1,"9877":-1,"9878":-1,"9879":-1,"9880":-1,"9881":-1,"9882":-1,"9883":2681,"9884":-1,"9885":-1,"9886":2685,"9887":-1,"9888":-1,"9889":-1,"9890":0,"9891":-1,"9892":-1,"9893":-1,"9894":-1,"9895":-1,"9896":-1,"9897":-1,"9898":-1,"9899":2682,"9900":-1,"9901":-1,"9902":0,"9903":-1,"9904":-1,"9905":2683,"9906":-1,"9907":-1,"9908":-1,"9909":-1,"9910":-1,"9911":-1,"9912":-1,"9913":2683,"9914":-1,"9915":-1,"9916":-1,"9917":-1,"9918":-1,"9919":2681,"9920":-1,"9921":2686,"9922":-1,"9923":-1,"9924":-1,"9925":0,"9926":-1,"9927":-1,"9928":0,"9929":0,"9930":-1,"9931":-1,"9932":-1,"9933":-1,"9934":-1,"9935":-1,"9936":2682,"9937":-1,"9938":-1,"9939":-1,"9940":-1,"9941":-1,"9942":-1,"9943":-1,"9944":-1,"9945":-1,"9946":-1,"9947":2686,"9948":0,"9949":-1,"9950":-1,"9951":-1,"9952":-1,"9953":-1,"9954":-1,"9955":-1,"9956":-1,"9957":-1,"9958":-1,"9959":-1,"9960":-1,"9961":-1,"9962":0,"9963":2681,"9964":-1,"9965":-1,"9966":-1,"9967":-1,"9968":2681,"9969":-1,"9970":-1,"9971":-1,"9972":-1,"9973":-1,"9974":-1,"9975":-1,"9976":-1,"9977":-1,"9978":2685,"9979":-1,"9980":-1,"9981":2683,"9982":-1,"9983":-1,"9984":2681,"9985":-1,"9986":-1,"9987":-1,"9988":-1,"9989":-1,"9990":-1,"9991":-1,"9992":-1,"9993":-1,"9994":-1,"9995":-1,"9996":-1,"9997":-1,"9998":-1,"9999":-1,"10000":-1,"10001":-1,"10002":2682,"10003":-1,"10004":-1,"10005":2684,"10006":-1,"10007":-1,"10008":-1,"10009":-1,"10010":-1,"10011":-1,"10012":0,"10013":0,"10014":-1,"10015":2682,"10016":-1,"10017":2682,"10018":-1,"10019":-1,"10020":-1,"10021":-1,"10022":-1,"10023":-1,"10024":-1,"10025":-1,"10026":-1,"10027":-1,"10028":-1,"10029":2682,"10030":-1,"10031":-1,"10032":-1,"10033":-1,"10034":-1,"10035":2687,"10036":2686,"10037":-1,"10038":0,"10039":-1,"10040":-1,"10041":-1,"10042":2686,"10043":-1,"10044":-1,"10045":-1,"10046":-1,"10047":-1,"10048":0,"10049":-1,"10050":-1,"10051":2684,"10052":-1,"10053":-1,"10054":-1,"10055":-1,"10056":-1,"10057":-1,"10058":-1,"10059":-1,"10060":-1,"10061":-1,"10062":-1,"10063":-1,"10064":-1,"10065":-1,"10066":-1,"10067":-1,"10068":-1,"10069":-1,"10070":2682,"10071":-1,"10072":-1,"10073":2681,"10074":-1,"10075":-1,"10076":-1,"10077":-1,"10078":-1,"10079":-1,"10080":-1,"10081":-1,"10082":-1,"10083":-1,"10084":-1,"10085":-1,"10086":-1,"10087":-1,"10088":-1,"10089":-1,"10090":-1,"10091":-1,"10092":-1,"10093":-1,"10094":2686,"10095":-1,"10096":-1,"10097":-1,"10098":-1,"10099":0,"10100":-1,"10101":2685,"10102":-1,"10103":-1,"10104":-1,"10105":-1,"10106":-1,"10107":-1,"10108":-1,"10109":0,"10110":-1,"10111":-1,"10112":-1,"10113":-1,"10114":-1,"10115":-1,"10116":-1,"10117":-1,"10118":-1,"10119":2681,"10120":-1,"10121":-1,"10122":2686,"10123":-1,"10124":-1,"10125":-1,"10126":-1,"10127":2682,"10128":-1,"10129":-1,"10130":-1,"10131":-1,"10132":-1,"10133":-1,"10134":-1,"10135":-1,"10136":-1,"10137":-1,"10138":-1,"10139":-1,"10140":-1,"10141":-1,"10142":-1,"10143":-1,"10144":-1,"10145":-1,"10146":-1,"10147":2682,"10148":-1,"10149":-1,"10150":-1,"10151":-1,"10152":-1,"10153":-1,"10154":-1,"10155":-1,"10156":-1,"10157":-1,"10158":2682,"10159":-1,"10160":-1,"10161":-1,"10162":-1,"10163":-1,"10164":2682,"10165":-1,"10166":2683,"10167":-1,"10168":-1,"10169":-1,"10170":-1,"10171":2682,"10172":-1,"10173":2684,"10174":-1,"10175":-1,"10176":-1,"10177":-1,"10178":-1,"10179":-1,"10180":-1,"10181":-1,"10182":-1,"10183":-1,"10184":-1,"10185":-1,"10186":-1,"10187":-1,"10188":-1,"10189":-1,"10190":-1,"10191":-1,"10192":-1,"10193":-1,"10194":-1,"10195":-1,"10196":-1,"10197":-1,"10198":-1,"10199":-1,"10200":-1,"10201":-1,"10202":-1,"10203":-1,"10204":-1,"10205":-1,"10206":2682,"10207":-1,"10208":-1,"10209":-1,"10210":2681,"10211":2683,"10212":-1,"10213":-1,"10214":-1,"10215":2682,"10216":-1,"10217":-1,"10218":-1,"10219":-1,"10220":0,"10221":-1,"10222":-1,"10223":-1,"10224":-1,"10225":-1,"10226":-1,"10227":0,"10228":-1,"10229":-1,"10230":-1,"10231":-1,"10232":2685,"10233":-1,"10234":2685,"10235":-1,"10236":0,"10237":-1,"10238":-1,"10239":-1,"10240":2686,"10241":-1,"10242":-1,"10243":-1,"10244":-1,"10245":-1,"10246":-1,"10247":-1,"10248":-1,"10249":-1,"10250":-1,"10251":-1,"10252":-1,"10253":-1,"10254":-1,"10255":-1,"10256":-1,"10257":2685,"10258":-1,"10259":2685,"10260":2686,"10261":2684,"10262":0,"10263":-1,"10264":2683,"10265":2686,"10266":-1,"10267":-1,"10268":-1,"10269":-1,"10270":-1,"10271":-1,"10272":-1,"10273":-1,"10274":-1,"10275":-1,"10276":2683,"10277":-1,"10278":2687,"10279":-1,"10280":-1,"10281":-1,"10282":-1,"10283":-1,"10284":2687,"10285":-1,"10286":0,"10287":-1,"10288":-1,"10289":-1,"10290":-1,"10291":-1,"10292":-1,"10293":-1,"10294":-1,"10295":-1,"10296":-1,"10297":-1,"10298":-1,"10299":-1,"10300":-1,"10301":-1,"10302":-1,"10303":-1,"10304":-1,"10305":2685,"10306":-1,"10307":-1,"10308":-1,"10309":-1,"10310":-1,"10311":-1,"10312":-1,"10313":-1,"10314":-1,"10315":-1,"10316":-1,"10317":-1,"10318":-1,"10319":-1,"10320":-1,"10321":-1,"10322":-1,"10323":2685,"10324":-1,"10325":-1,"10326":0,"10327":-1,"10328":-1,"10329":-1,"10330":-1,"10331":-1,"10332":-1,"10333":2686,"10334":-1,"10335":-1,"10336":-1,"10337":-1,"10338":-1,"10339":-1,"10340":-1,"10341":-1,"10342":2682,"10343":-1,"10344":-1,"10345":-1,"10346":-1,"10347":2685,"10348":-1,"10349":-1,"10350":-1,"10351":0,"10352":-1,"10353":-1,"10354":-1,"10355":-1,"10356":-1,"10357":2685,"10358":-1,"10359":0,"10360":-1,"10361":-1,"10362":-1,"10363":-1,"10364":-1,"10365":-1,"10366":-1,"10367":-1,"10368":-1,"10369":-1,"10370":-1,"10371":-1,"10372":-1,"10373":-1,"10374":-1,"10375":-1,"10376":-1,"10377":-1,"10378":-1,"10379":2686,"10380":-1,"10381":0,"10382":-1,"10383":-1,"10384":-1,"10385":-1,"10386":-1,"10387":-1,"10388":-1,"10389":-1,"10390":0,"10391":-1,"10392":2687,"10393":2681,"10394":-1,"10395":2687,"10396":2681,"10397":-1,"10398":-1,"10399":-1,"10400":0,"10401":-1,"10402":2682,"10403":-1,"10404":-1,"10405":-1,"10406":-1,"10407":-1,"10408":-1,"10409":-1,"10410":-1,"10411":-1,"10412":-1,"10413":-1,"10414":-1,"10415":-1,"10416":-1,"10417":0,"10418":2686,"10419":-1,"10420":2683,"10421":-1,"10422":-1,"10423":-1,"10424":-1,"10425":-1,"10426":-1,"10427":-1,"10428":-1,"10429":2687,"10430":0,"10431":-1,"10432":-1,"10433":-1,"10434":0,"10435":-1,"10436":-1,"10437":-1,"10438":-1,"10439":-1,"10440":-1,"10441":-1,"10442":-1,"10443":2682,"10444":-1,"10445":-1,"10446":-1,"10447":-1,"10448":-1,"10449":0,"10450":-1,"10451":-1,"10452":-1,"10453":-1,"10454":-1,"10455":2685,"10456":2683,"10457":-1,"10458":-1,"10459":-1,"10460":-1,"10461":-1,"10462":-1,"10463":-1,"10464":-1,"10465":-1,"10466":-1,"10467":-1,"10468":-1,"10469":-1,"10470":-1,"10471":-1,"10472":-1,"10473":-1,"10474":-1,"10475":2686,"10476":-1,"10477":-1,"10478":-1,"10479":-1,"10480":-1,"10481":2683,"10482":-1,"10483":0,"10484":-1,"10485":2681,"10486":-1,"10487":-1,"10488":-1,"10489":-1,"10490":-1,"10491":2684,"10492":-1,"10493":-1,"10494":-1,"10495":-1,"10496":-1,"10497":-1,"10498":-1,"10499":-1,"10500":-1,"10501":-1,"10502":-1,"10503":-1,"10504":-1,"10505":-1,"10506":-1,"10507":-1,"10508":-1,"10509":2683,"10510":-1,"10511":-1,"10512":-1,"10513":2685,"10514":-1,"10515":-1,"10516":-1,"10517":-1,"10518":0,"10519":-1,"10520":-1,"10521":-1,"10522":-1,"10523":-1,"10524":-1,"10525":-1,"10526":-1,"10527":-1,"10528":-1,"10529":-1,"10530":2681,"10531":-1,"10532":-1,"10533":-1,"10534":-1,"10535":-1,"10536":-1,"10537":-1,"10538":-1,"10539":-1,"10540":0,"10541":-1,"10542":-1,"10543":2685,"10544":-1,"10545":-1,"10546":-1,"10547":-1,"10548":-1,"10549":-1,"10550":-1,"10551":0,"10552":-1,"10553":-1,"10554":-1,"10555":-1,"10556":-1,"10557":-1,"10558":-1,"10559":-1,"10560":-1,"10561":-1,"10562":-1,"10563":-1,"10564":-1,"10565":-1,"10566":0,"10567":-1,"10568":-1,"10569":-1,"10570":-1,"10571":-1,"10572":-1,"10573":-1,"10574":-1,"10575":2684,"10576":-1,"10577":-1,"10578":-1,"10579":-1,"10580":-1,"10581":-1,"10582":-1,"10583":-1,"10584":-1,"10585":-1,"10586":-1,"10587":-1,"10588":-1,"10589":-1,"10590":-1,"10591":-1,"10592":-1,"10593":-1,"10594":-1,"10595":-1,"10596":-1,"10597":-1,"10598":-1,"10599":-1,"10600":-1,"10601":-1,"10602":2681,"10603":-1,"10604":-1,"10605":-1,"10606":-1,"10607":-1,"10608":-1,"10609":0,"10610":-1,"10611":-1,"10612":0,"10613":-1,"10614":-1,"10615":-1,"10616":-1,"10617":-1,"10618":-1,"10619":-1,"10620":-1,"10621":-1,"10622":-1,"10623":-1,"10624":-1,"10625":-1,"10626":-1,"10627":-1,"10628":-1,"10629":-1,"10630":2682,"10631":-1,"10632":-1,"10633":2683,"10634":-1,"10635":-1,"10636":-1,"10637":-1,"10638":2681,"10639":-1,"10640":2682,"10641":-1,"10642":-1,"10643":-1,"10644":-1,"10645":-1,"10646":-1,"10647":-1,"10648":-1,"10649":-1,"10650":-1,"10651":-1,"10652":-1,"10653":-1,"10654":-1,"10655":-1,"10656":-1,"10657":-1,"10658":-1,"10659":-1,"10660":-1,"10661":-1,"10662":-1,"10663":-1,"10664":-1,"10665":-1,"10666":2681,"10667":-1,"10668":-1,"10669":2685,"10670":-1,"10671":-1,"10672":-1,"10673":-1,"10674":2686,"10675":-1,"10676":-1,"10677":-1,"10678":2683,"10679":-1,"10680":-1,"10681":-1,"10682":-1,"10683":-1,"10684":-1,"10685":-1,"10686":-1,"10687":-1,"10688":-1,"10689":0,"10690":-1,"10691":-1,"10692":-1,"10693":-1,"10694":2685,"10695":2683,"10696":-1,"10697":-1,"10698":-1,"10699":-1,"10700":-1,"10701":2687,"10702":-1,"10703":-1,"10704":-1,"10705":-1,"10706":-1,"10707":2685,"10708":-1,"10709":-1,"10710":2685,"10711":-1,"10712":-1,"10713":-1,"10714":2681,"10715":-1,"10716":-1,"10717":-1,"10718":-1,"10719":-1,"10720":-1,"10721":-1,"10722":0,"10723":2684,"10724":-1,"10725":-1,"10726":-1,"10727":-1,"10728":2684,"10729":2684,"10730":-1,"10731":-1,"10732":-1,"10733":-1,"10734":-1,"10735":-1,"10736":-1,"10737":-1,"10738":-1,"10739":0,"10740":-1,"10741":-1,"10742":-1,"10743":-1,"10744":2681,"10745":-1,"10746":2682,"10747":-1,"10748":-1,"10749":-1,"10750":-1,"10751":-1,"10752":-1,"10753":2685,"10754":-1,"10755":-1,"10756":-1,"10757":2681,"10758":2686,"10759":-1,"10760":-1,"10761":-1,"10762":-1,"10763":-1,"10764":-1,"10765":-1,"10766":-1,"10767":-1,"10768":0,"10769":-1,"10770":0,"10771":-1,"10772":-1,"10773":-1,"10774":-1,"10775":-1,"10776":2687,"10777":-1,"10778":-1,"10779":-1,"10780":-1,"10781":2684,"10782":-1,"10783":-1,"10784":0,"10785":-1,"10786":-1,"10787":-1,"10788":-1,"10789":-1,"10790":-1,"10791":-1,"10792":2685,"10793":-1,"10794":-1,"10795":-1,"10796":-1,"10797":-1,"10798":-1,"10799":-1,"10800":-1,"10801":-1,"10802":0,"10803":2684,"10804":-1,"10805":-1,"10806":-1,"10807":-1,"10808":-1,"10809":-1,"10810":-1,"10811":-1,"10812":-1,"10813":-1,"10814":2685,"10815":-1,"10816":-1,"10817":-1,"10818":2681,"10819":-1,"10820":-1,"10821":-1,"10822":-1,"10823":-1,"10824":0,"10825":-1,"10826":-1,"10827":-1,"10828":2682,"10829":-1,"10830":-1,"10831":-1,"10832":-1,"10833":2683,"10834":-1,"10835":2686,"10836":-1,"10837":2684,"10838":-1,"10839":-1,"10840":-1,"10841":-1,"10842":-1,"10843":-1,"10844":-1,"10845":-1,"10846":-1,"10847":2683,"10848":-1,"10849":-1,"10850":-1,"10851":2682,"10852":-1,"10853":2681,"10854":-1,"10855":-1,"10856":-1,"10857":-1,"10858":-1,"10859":-1,"10860":-1,"10861":-1,"10862":-1,"10863":-1,"10864":-1,"10865":-1,"10866":-1,"10867":-1,"10868":-1,"10869":-1,"10870":-1,"10871":-1,"10872":2683,"10873":-1,"10874":2681,"10875":2687,"10876":-1,"10877":-1,"10878":-1,"10879":-1,"10880":-1,"10881":-1,"10882":2684,"10883":-1,"10884":-1,"10885":2682,"10886":-1,"10887":-1,"10888":-1,"10889":-1,"10890":-1,"10891":-1,"10892":-1,"10893":-1,"10894":-1,"10895":-1,"10896":-1,"10897":2684,"10898":-1,"10899":-1,"10900":-1,"10901":-1,"10902":-1,"10903":-1,"10904":-1,"10905":-1,"10906":-1,"10907":-1,"10908":0,"10909":-1,"10910":-1,"10911":-1,"10912":-1,"10913":-1,"10914":-1,"10915":-1,"10916":-1,"10917":2684,"10918":2685,"10919":-1,"10920":2687,"10921":-1,"10922":-1,"10923":-1,"10924":-1,"10925":-1,"10926":-1,"10927":-1,"10928":-1,"10929":0,"10930":-1,"10931":-1,"10932":-1,"10933":-1,"10934":-1,"10935":-1,"10936":-1,"10937":-1,"10938":-1,"10939":-1,"10940":-1,"10941":-1,"10942":-1,"10943":-1,"10944":-1,"10945":-1,"10946":-1,"10947":-1,"10948":-1,"10949":-1,"10950":-1,"10951":-1,"10952":-1,"10953":0,"10954":-1,"10955":-1,"10956":-1,"10957":-1,"10958":-1,"10959":-1,"10960":-1,"10961":2686,"10962":-1,"10963":-1,"10964":-1,"10965":-1,"10966":-1,"10967":-1,"10968":-1,"10969":-1,"10970":-1,"10971":-1,"10972":-1,"10973":-1,"10974":-1,"10975":-1,"10976":-1,"10977":2682,"10978":-1,"10979":-1,"10980":-1,"10981":0,"10982":-1,"10983":-1,"10984":-1,"10985":-1,"10986":-1,"10987":-1,"10988":-1,"10989":-1,"10990":-1,"10991":-1,"10992":-1,"10993":2684,"10994":-1,"10995":-1,"10996":-1,"10997":-1,"10998":2685,"10999":-1,"11000":-1,"11001":-1,"11002":0,"11003":-1,"11004":-1,"11005":-1,"11006":-1,"11007":-1,"11008":2687,"11009":-1,"11010":2686,"11011":-1,"11012":-1,"11013":-1,"11014":-1,"11015":2683,"11016":-1,"11017":-1,"11018":-1,"11019":-1,"11020":2685,"11021":-1,"11022":-1,"11023":-1,"11024":-1,"11025":-1,"11026":2681,"11027":-1,"11028":-1,"11029":-1,"11030":-1,"11031":-1,"11032":-1,"11033":-1,"11034":-1,"11035":-1,"11036":2685,"11037":-1,"11038":-1,"11039":0,"11040":-1,"11041":-1,"11042":-1,"11043":2682,"11044":-1,"11045":2684,"11046":-1,"11047":-1,"11048":-1,"11049":-1,"11050":-1,"11051":-1,"11052":-1,"11053":-1,"11054":-1,"11055":-1,"11056":-1,"11057":-1,"11058":2682,"11059":-1,"11060":2684,"11061":-1,"11062":-1,"11063":-1,"11064":-1,"11065":-1,"11066":-1,"11067":-1,"11068":-1,"11069":-1,"11070":-1,"11071":-1,"11072":-1,"11073":2683,"11074":-1,"11075":-1,"11076":-1,"11077":-1,"11078":-1,"11079":-1,"11080":2682,"11081":-1,"11082":-1,"11083":-1,"11084":-1,"11085":-1,"11086":-1,"11087":-1,"11088":-1,"11089":-1,"11090":-1,"11091":-1,"11092":2682,"11093":2682,"11094":-1,"11095":-1,"11096":-1,"11097":2685,"11098":-1,"11099":0,"11100":-1,"11101":-1,"11102":-1,"11103":2684,"11104":2683,"11105":-1,"11106":-1,"11107":-1,"11108":-1,"11109":-1,"11110":-1,"11111":-1,"11112":-1,"11113":-1,"11114":0,"11115":-1,"11116":-1,"11117":-1,"11118":-1,"11119":0,"11120":-1,"11121":-1,"11122":2682,"11123":-1,"11124":-1,"11125":-1,"11126":-1,"11127":2683,"11128":-1,"11129":-1,"11130":0,"11131":-1,"11132":-1,"11133":-1,"11134":2682,"11135":2686,"11136":-1,"11137":-1,"11138":-1,"11139":-1,"11140":-1,"11141":-1,"11142":-1,"11143":-1,"11144":-1,"11145":-1,"11146":-1,"11147":-1,"11148":-1,"11149":-1,"11150":2683,"11151":-1,"11152":-1,"11153":-1,"11154":-1,"11155":-1,"11156":-1,"11157":0,"11158":-1,"11159":-1,"11160":0,"11161":-1,"11162":-1,"11163":-1,"11164":-1,"11165":-1,"11166":-1,"11167":-1,"11168":2685,"11169":2682,"11170":-1,"11171":-1,"11172":-1,"11173":-1,"11174":-1,"11175":-1,"11176":-1,"11177":2683,"11178":-1,"11179":2683,"11180":-1,"11181":-1,"11182":-1,"11183":-1,"11184":-1,"11185":-1,"11186":-1,"11187":-1,"11188":-1,"11189":-1,"11190":-1,"11191":-1,"11192":0,"11193":-1,"11194":-1,"11195":-1,"11196":-1,"11197":-1,"11198":-1,"11199":-1,"11200":-1,"11201":-1,"11202":-1,"11203":-1,"11204":-1,"11205":-1,"11206":-1,"11207":-1,"11208":2683,"11209":-1,"11210":-1,"11211":-1,"11212":-1,"11213":-1,"11214":-1,"11215":-1,"11216":-1,"11217":-1,"11218":2683,"11219":-1,"11220":-1,"11221":-1,"11222":-1,"11223":-1,"11224":-1,"11225":-1,"11226":-1,"11227":-1,"11228":-1,"11229":-1,"11230":-1,"11231":-1,"11232":-1,"11233":-1,"11234":-1,"11235":-1,"11236":-1,"11237":-1,"11238":-1,"11239":-1,"11240":-1,"11241":-1,"11242":2685,"11243":-1,"11244":-1,"11245":2684,"11246":-1,"11247":-1,"11248":-1,"11249":-1,"11250":-1,"11251":-1,"11252":-1,"11253":-1,"11254":-1,"11255":-1,"11256":-1,"11257":-1,"11258":-1,"11259":-1,"11260":-1,"11261":-1,"11262":2681,"11263":-1,"11264":-1,"11265":-1,"11266":-1,"11267":-1,"11268":-1,"11269":-1,"11270":-1,"11271":-1,"11272":-1,"11273":-1,"11274":-1,"11275":-1,"11276":-1,"11277":2685,"11278":-1,"11279":-1,"11280":-1,"11281":-1,"11282":2685,"11283":-1,"11284":-1,"11285":-1,"11286":-1,"11287":-1,"11288":-1,"11289":-1,"11290":2684,"11291":-1,"11292":-1,"11293":-1,"11294":-1,"11295":2684,"11296":-1,"11297":2683,"11298":-1,"11299":-1,"11300":-1,"11301":-1,"11302":-1,"11303":0,"11304":-1,"11305":-1,"11306":0,"11307":-1,"11308":-1,"11309":-1,"11310":-1,"11311":-1,"11312":2686,"11313":2686,"11314":-1,"11315":-1,"11316":-1,"11317":-1,"11318":-1,"11319":-1,"11320":-1,"11321":2685,"11322":-1,"11323":-1,"11324":-1,"11325":-1,"11326":-1,"11327":-1,"11328":-1,"11329":2683,"11330":-1,"11331":-1,"11332":2683,"11333":-1,"11334":-1,"11335":-1,"11336":-1,"11337":-1,"11338":-1,"11339":-1,"11340":-1,"11341":-1,"11342":-1,"11343":-1,"11344":-1,"11345":-1,"11346":-1,"11347":-1,"11348":-1,"11349":-1,"11350":-1,"11351":-1,"11352":-1,"11353":-1,"11354":-1,"11355":-1,"11356":-1,"11357":-1,"11358":-1,"11359":-1,"11360":0,"11361":-1,"11362":-1,"11363":-1,"11364":0,"11365":-1,"11366":-1,"11367":-1,"11368":-1,"11369":-1,"11370":-1,"11371":-1,"11372":-1,"11373":-1,"11374":-1,"11375":-1,"11376":-1,"11377":-1,"11378":-1,"11379":2685,"11380":2686,"11381":2681,"11382":-1,"11383":-1,"11384":-1,"11385":-1,"11386":-1,"11387":-1,"11388":-1,"11389":-1,"11390":-1,"11391":-1,"11392":-1,"11393":2681,"11394":-1,"11395":-1,"11396":-1,"11397":-1,"11398":-1,"11399":-1,"11400":-1,"11401":-1,"11402":-1,"11403":-1,"11404":-1,"11405":-1,"11406":-1,"11407":-1,"11408":-1,"11409":-1,"11410":-1,"11411":-1,"11412":2683,"11413":-1,"11414":-1,"11415":-1,"11416":-1,"11417":-1,"11418":-1,"11419":-1,"11420":-1,"11421":-1,"11422":0,"11423":-1,"11424":-1,"11425":2684,"11426":-1,"11427":-1,"11428":-1,"11429":-1,"11430":2682,"11431":-1,"11432":-1,"11433":-1,"11434":-1,"11435":-1,"11436":0,"11437":-1,"11438":0,"11439":-1,"11440":-1,"11441":-1,"11442":-1,"11443":-1,"11444":-1,"11445":-1,"11446":-1,"11447":2686,"11448":-1,"11449":2686,"11450":0,"11451":-1,"11452":-1,"11453":-1,"11454":-1,"11455":-1,"11456":-1,"11457":-1,"11458":-1,"11459":-1,"11460":2683,"11461":-1,"11462":-1,"11463":0,"11464":-1,"11465":-1,"11466":-1,"11467":-1,"11468":-1,"11469":-1,"11470":-1,"11471":-1,"11472":-1,"11473":-1,"11474":-1,"11475":-1,"11476":2681,"11477":-1,"11478":-1,"11479":-1,"11480":-1,"11481":0,"11482":0,"11483":-1,"11484":-1,"11485":-1,"11486":-1,"11487":2685,"11488":-1,"11489":-1,"11490":-1,"11491":-1,"11492":-1,"11493":-1,"11494":-1,"11495":-1,"11496":-1,"11497":-1,"11498":2685,"11499":-1,"11500":-1,"11501":-1,"11502":2686,"11503":-1,"11504":-1,"11505":-1,"11506":2684,"11507":-1,"11508":-1,"11509":2684,"11510":-1,"11511":-1,"11512":-1,"11513":-1,"11514":-1,"11515":-1,"11516":-1,"11517":-1,"11518":-1,"11519":-1,"11520":-1,"11521":-1,"11522":-1,"11523":-1,"11524":-1,"11525":0,"11526":-1,"11527":-1,"11528":-1,"11529":-1,"11530":-1,"11531":-1,"11532":-1,"11533":-1,"11534":-1,"11535":2683,"11536":-1,"11537":2684,"11538":2683,"11539":-1,"11540":-1,"11541":-1,"11542":2684,"11543":-1,"11544":-1,"11545":-1,"11546":-1,"11547":0,"11548":-1,"11549":-1,"11550":-1,"11551":-1,"11552":-1,"11553":-1,"11554":-1,"11555":-1,"11556":-1,"11557":-1,"11558":-1,"11559":-1,"11560":-1,"11561":-1,"11562":2683,"11563":-1,"11564":-1,"11565":-1,"11566":-1,"11567":-1,"11568":0,"11569":-1,"11570":-1,"11571":-1,"11572":-1,"11573":2686,"11574":-1,"11575":-1,"11576":-1,"11577":-1,"11578":-1,"11579":-1,"11580":2687,"11581":-1,"11582":2681,"11583":-1,"11584":-1,"11585":-1,"11586":-1,"11587":-1,"11588":-1,"11589":-1,"11590":-1,"11591":-1,"11592":-1,"11593":-1,"11594":-1,"11595":-1,"11596":-1,"11597":2683,"11598":-1,"11599":-1,"11600":-1,"11601":-1,"11602":-1,"11603":-1,"11604":2681,"11605":-1,"11606":2682,"11607":-1,"11608":-1,"11609":2682,"11610":-1,"11611":-1,"11612":-1,"11613":-1,"11614":-1,"11615":-1,"11616":-1,"11617":-1,"11618":-1,"11619":2683,"11620":-1,"11621":-1,"11622":2686,"11623":-1,"11624":-1,"11625":-1,"11626":-1,"11627":-1,"11628":-1,"11629":-1,"11630":-1,"11631":-1,"11632":-1,"11633":-1,"11634":-1,"11635":-1,"11636":-1,"11637":-1,"11638":-1,"11639":-1,"11640":-1,"11641":-1,"11642":-1,"11643":-1,"11644":-1,"11645":-1,"11646":-1,"11647":-1,"11648":-1,"11649":-1,"11650":-1,"11651":-1,"11652":-1,"11653":-1,"11654":-1,"11655":-1,"11656":-1,"11657":-1,"11658":-1,"11659":-1,"11660":-1,"11661":-1,"11662":-1,"11663":-1,"11664":-1,"11665":-1,"11666":-1,"11667":-1,"11668":-1,"11669":-1,"11670":-1,"11671":-1,"11672":-1,"11673":-1,"11674":2685,"11675":-1,"11676":-1,"11677":-1,"11678":-1,"11679":-1,"11680":2687,"11681":-1,"11682":-1,"11683":-1,"11684":-1,"11685":-1,"11686":-1,"11687":-1,"11688":-1,"11689":-1,"11690":-1,"11691":-1,"11692":-1,"11693":-1,"11694":-1,"11695":-1,"11696":-1,"11697":-1,"11698":-1,"11699":-1,"11700":-1,"11701":-1,"11702":-1,"11703":-1,"11704":-1,"11705":-1,"11706":-1,"11707":0,"11708":-1,"11709":-1,"11710":-1,"11711":0,"11712":-1,"11713":-1,"11714":-1,"11715":-1,"11716":2685,"11717":-1,"11718":-1,"11719":-1,"11720":2683,"11721":-1,"11722":2682,"11723":-1,"11724":-1,"11725":-1,"11726":-1,"11727":-1,"11728":-1,"11729":-1,"11730":-1,"11731":-1,"11732":-1,"11733":-1,"11734":-1,"11735":-1,"11736":-1,"11737":-1,"11738":-1,"11739":-1,"11740":-1,"11741":-1,"11742":-1,"11743":-1,"11744":-1,"11745":-1,"11746":-1,"11747":2681,"11748":-1,"11749":-1,"11750":-1,"11751":-1,"11752":-1,"11753":-1,"11754":-1,"11755":-1,"11756":2684,"11757":-1,"11758":2687,"11759":-1,"11760":-1,"11761":-1,"11762":-1,"11763":-1,"11764":-1,"11765":-1,"11766":-1,"11767":-1,"11768":-1,"11769":-1,"11770":-1,"11771":-1,"11772":-1,"11773":-1,"11774":-1,"11775":-1,"11776":-1,"11777":-1,"11778":-1,"11779":-1,"11780":-1,"11781":-1,"11782":-1,"11783":-1,"11784":-1,"11785":-1,"11786":2684,"11787":-1,"11788":2682,"11789":-1,"11790":-1,"11791":-1,"11792":-1,"11793":-1,"11794":-1,"11795":-1,"11796":-1,"11797":-1,"11798":-1,"11799":2684,"11800":2687,"11801":-1,"11802":0,"11803":-1,"11804":-1,"11805":-1,"11806":-1,"11807":-1,"11808":-1,"11809":-1,"11810":-1,"11811":-1,"11812":-1,"11813":-1,"11814":-1,"11815":-1,"11816":-1,"11817":-1,"11818":2681,"11819":2685,"11820":-1,"11821":-1,"11822":2687,"11823":-1,"11824":-1,"11825":2686,"11826":2683,"11827":-1,"11828":-1,"11829":-1,"11830":-1,"11831":-1,"11832":-1,"11833":-1,"11834":-1,"11835":2683,"11836":-1,"11837":-1,"11838":-1,"11839":-1,"11840":-1,"11841":-1,"11842":-1,"11843":-1,"11844":-1,"11845":-1,"11846":-1,"11847":-1,"11848":-1,"11849":-1,"11850":-1,"11851":-1,"11852":2685,"11853":-1,"11854":-1,"11855":-1,"11856":-1,"11857":-1,"11858":-1,"11859":-1,"11860":-1,"11861":-1,"11862":-1,"11863":-1,"11864":-1,"11865":0,"11866":-1,"11867":-1,"11868":-1,"11869":-1,"11870":-1,"11871":-1,"11872":-1,"11873":-1,"11874":-1,"11875":-1,"11876":-1,"11877":-1,"11878":-1,"11879":-1,"11880":-1,"11881":-1,"11882":-1,"11883":-1,"11884":2685,"11885":-1,"11886":-1,"11887":-1,"11888":2685,"11889":-1,"11890":0,"11891":2682,"11892":-1,"11893":-1,"11894":-1,"11895":-1,"11896":-1,"11897":-1,"11898":-1,"11899":-1,"11900":-1,"11901":-1,"11902":-1,"11903":0,"11904":2687,"11905":-1,"11906":-1,"11907":-1,"11908":-1,"11909":0,"11910":-1,"11911":-1,"11912":-1,"11913":-1,"11914":-1,"11915":-1,"11916":-1,"11917":-1,"11918":0,"11919":-1,"11920":-1,"11921":-1,"11922":-1,"11923":-1,"11924":-1,"11925":-1,"11926":2685,"11927":-1,"11928":-1,"11929":-1,"11930":-1,"11931":-1,"11932":-1,"11933":-1,"11934":-1,"11935":2684,"11936":-1,"11937":2686,"11938":-1,"11939":-1,"11940":2682,"11941":2685,"11942":-1,"11943":-1,"11944":-1,"11945":2686,"11946":-1,"11947":-1,"11948":-1,"11949":-1,"11950":-1,"11951":2684,"11952":-1,"11953":-1,"11954":-1,"11955":2685,"11956":-1,"11957":-1,"11958":-1,"11959":-1,"11960":-1,"11961":-1,"11962":-1,"11963":2686,"11964":-1,"11965":-1,"11966":0,"11967":-1,"11968":-1,"11969":-1,"11970":-1,"11971":-1,"11972":-1,"11973":2682,"11974":-1,"11975":-1,"11976":-1,"11977":-1,"11978":-1,"11979":-1,"11980":2683,"11981":-1,"11982":-1,"11983":2682,"11984":0,"11985":-1,"11986":-1,"11987":2686,"11988":2682,"11989":-1,"11990":-1,"11991":-1,"11992":-1,"11993":2684,"11994":-1,"11995":-1,"11996":-1,"11997":-1,"11998":-1,"11999":-1,"12000":-1,"12001":-1,"12002":-1,"12003":-1,"12004":-1,"12005":-1,"12006":-1,"12007":-1,"12008":-1,"12009":-1,"12010":-1,"12011":-1,"12012":-1,"12013":-1,"12014":-1,"12015":-1,"12016":-1,"12017":-1,"12018":-1,"12019":-1,"12020":-1,"12021":-1,"12022":-1,"12023":-1,"12024":-1,"12025":0,"12026":-1,"12027":-1,"12028":-1,"12029":-1,"12030":-1,"12031":-1,"12032":-1,"12033":-1,"12034":-1,"12035":-1,"12036":-1,"12037":0,"12038":-1,"12039":-1,"12040":-1,"12041":-1,"12042":0,"12043":-1,"12044":-1,"12045":2686,"12046":-1,"12047":-1,"12048":-1,"12049":-1,"12050":-1,"12051":-1,"12052":-1,"12053":-1,"12054":-1,"12055":-1,"12056":-1,"12057":2683,"12058":-1,"12059":2686,"12060":0,"12061":-1,"12062":-1,"12063":-1,"12064":-1,"12065":-1,"12066":2684,"12067":-1,"12068":-1,"12069":-1,"12070":-1,"12071":-1,"12072":-1,"12073":-1,"12074":2683,"12075":-1,"12076":-1,"12077":-1,"12078":-1,"12079":-1,"12080":-1,"12081":-1,"12082":-1,"12083":-1,"12084":-1,"12085":-1,"12086":0,"12087":-1,"12088":-1,"12089":-1,"12090":2684,"12091":-1,"12092":-1,"12093":-1,"12094":-1,"12095":-1,"12096":-1,"12097":-1,"12098":0,"12099":2684,"12100":-1,"12101":-1,"12102":-1,"12103":-1,"12104":2681,"12105":2683,"12106":-1,"12107":-1,"12108":-1,"12109":2684,"12110":-1,"12111":-1,"12112":-1,"12113":-1,"12114":-1,"12115":0,"12116":-1,"12117":-1,"12118":-1,"12119":-1,"12120":-1,"12121":-1,"12122":2683,"12123":2684,"12124":-1,"12125":2686,"12126":-1,"12127":-1,"12128":-1,"12129":-1,"12130":-1,"12131":-1,"12132":-1,"12133":-1,"12134":-1,"12135":-1,"12136":-1,"12137":-1,"12138":-1,"12139":-1,"12140":-1,"12141":-1,"12142":-1,"12143":-1,"12144":-1,"12145":-1,"12146":-1,"12147":-1,"12148":-1,"12149":-1,"12150":-1,"12151":-1,"12152":-1,"12153":-1,"12154":-1,"12155":-1,"12156":-1,"12157":-1,"12158":0,"12159":-1,"12160":-1,"12161":2686,"12162":-1,"12163":2682,"12164":-1,"12165":-1,"12166":-1,"12167":-1,"12168":-1,"12169":-1,"12170":-1,"12171":2683,"12172":-1,"12173":-1,"12174":-1,"12175":-1,"12176":-1,"12177":-1,"12178":-1,"12179":2682,"12180":-1,"12181":-1,"12182":-1,"12183":0,"12184":-1,"12185":-1,"12186":-1,"12187":-1,"12188":-1,"12189":-1,"12190":-1,"12191":-1,"12192":-1,"12193":-1,"12194":2681,"12195":-1,"12196":2684,"12197":-1,"12198":-1,"12199":-1,"12200":-1,"12201":-1,"12202":-1,"12203":-1,"12204":-1,"12205":-1,"12206":2684,"12207":-1,"12208":-1,"12209":-1,"12210":-1,"12211":-1,"12212":-1,"12213":-1,"12214":-1,"12215":-1,"12216":-1,"12217":-1,"12218":-1,"12219":2681,"12220":2686,"12221":-1,"12222":-1,"12223":2681,"12224":-1,"12225":-1,"12226":-1,"12227":-1,"12228":-1,"12229":-1,"12230":-1,"12231":0,"12232":2685,"12233":-1,"12234":-1,"12235":-1,"12236":2684,"12237":-1,"12238":-1,"12239":-1,"12240":2686,"12241":-1,"12242":-1,"12243":-1,"12244":-1,"12245":-1,"12246":-1,"12247":-1,"12248":-1,"12249":-1,"12250":-1,"12251":-1,"12252":-1,"12253":-1,"12254":-1,"12255":2683,"12256":2683,"12257":-1,"12258":-1,"12259":-1,"12260":-1,"12261":-1,"12262":-1,"12263":-1,"12264":-1,"12265":-1,"12266":-1,"12267":-1,"12268":-1,"12269":2682,"12270":-1,"12271":-1,"12272":-1,"12273":-1,"12274":-1,"12275":-1,"12276":-1,"12277":-1,"12278":-1,"12279":2684,"12280":-1,"12281":-1,"12282":-1,"12283":-1,"12284":-1,"12285":2683,"12286":-1,"12287":-1,"12288":-1,"12289":-1,"12290":-1,"12291":-1,"12292":-1,"12293":2681,"12294":-1,"12295":0,"12296":-1,"12297":-1,"12298":-1,"12299":0,"12300":-1,"12301":-1,"12302":2683,"12303":-1,"12304":-1,"12305":-1,"12306":-1,"12307":-1,"12308":-1,"12309":-1,"12310":-1,"12311":-1,"12312":-1,"12313":2686,"12314":-1,"12315":0,"12316":-1,"12317":-1,"12318":-1,"12319":-1,"12320":-1,"12321":-1,"12322":-1,"12323":-1,"12324":-1,"12325":-1,"12326":-1,"12327":2683,"12328":-1,"12329":-1,"12330":-1,"12331":-1,"12332":-1,"12333":-1,"12334":-1,"12335":2684,"12336":-1,"12337":-1,"12338":-1,"12339":-1,"12340":-1,"12341":-1,"12342":2684,"12343":-1,"12344":0,"12345":2683,"12346":-1,"12347":-1,"12348":-1,"12349":2686,"12350":-1,"12351":-1,"12352":-1,"12353":-1,"12354":2686,"12355":-1,"12356":-1,"12357":-1,"12358":-1,"12359":-1,"12360":-1,"12361":2685,"12362":-1,"12363":2686,"12364":-1,"12365":-1,"12366":-1,"12367":-1,"12368":-1,"12369":-1,"12370":-1,"12371":-1,"12372":-1,"12373":-1,"12374":-1,"12375":-1,"12376":-1,"12377":2685,"12378":-1,"12379":-1,"12380":-1,"12381":-1,"12382":-1,"12383":2687,"12384":-1,"12385":-1,"12386":-1,"12387":-1,"12388":-1,"12389":2685,"12390":-1,"12391":-1,"12392":-1,"12393":-1,"12394":-1,"12395":-1,"12396":-1,"12397":-1,"12398":-1,"12399":-1,"12400":-1,"12401":-1,"12402":-1,"12403":-1,"12404":-1,"12405":-1,"12406":-1,"12407":-1,"12408":-1,"12409":-1,"12410":-1,"12411":-1,"12412":-1,"12413":-1,"12414":-1,"12415":-1,"12416":-1,"12417":2683,"12418":-1,"12419":-1,"12420":-1,"12421":-1,"12422":-1,"12423":-1,"12424":-1,"12425":2686,"12426":2684,"12427":-1,"12428":-1,"12429":-1,"12430":-1,"12431":2685,"12432":-1,"12433":2682,"12434":2686,"12435":-1,"12436":-1,"12437":-1,"12438":-1,"12439":-1,"12440":-1,"12441":-1,"12442":-1,"12443":-1,"12444":-1,"12445":-1,"12446":-1,"12447":-1,"12448":-1,"12449":-1,"12450":2682,"12451":2684,"12452":-1,"12453":-1,"12454":-1,"12455":-1,"12456":-1,"12457":-1,"12458":-1,"12459":-1,"12460":-1,"12461":2682,"12462":-1,"12463":-1,"12464":-1,"12465":-1,"12466":-1,"12467":-1,"12468":-1,"12469":-1,"12470":-1,"12471":-1,"12472":-1,"12473":-1,"12474":-1,"12475":-1,"12476":-1,"12477":-1,"12478":-1,"12479":-1,"12480":-1,"12481":-1,"12482":2682,"12483":-1,"12484":-1,"12485":-1,"12486":-1,"12487":2685,"12488":-1,"12489":2683,"12490":2685,"12491":-1,"12492":-1,"12493":-1,"12494":-1,"12495":2682,"12496":-1,"12497":-1,"12498":-1,"12499":-1,"12500":-1,"12501":-1,"12502":-1,"12503":2683,"12504":-1,"12505":-1,"12506":-1,"12507":-1,"12508":-1,"12509":-1,"12510":-1,"12511":-1,"12512":-1,"12513":-1,"12514":-1,"12515":-1,"12516":-1,"12517":-1,"12518":-1,"12519":-1,"12520":-1,"12521":-1,"12522":-1,"12523":-1,"12524":-1,"12525":-1,"12526":-1,"12527":-1,"12528":0,"12529":-1,"12530":-1,"12531":-1,"12532":-1,"12533":-1,"12534":-1,"12535":-1,"12536":-1,"12537":-1,"12538":-1,"12539":-1,"12540":-1,"12541":0,"12542":-1,"12543":-1,"12544":2686,"12545":2682,"12546":-1,"12547":-1,"12548":-1,"12549":-1,"12550":-1,"12551":2685,"12552":-1,"12553":-1,"12554":-1,"12555":2687,"12556":2682,"12557":-1,"12558":2684,"12559":-1,"12560":-1,"12561":-1,"12562":-1,"12563":-1,"12564":-1,"12565":-1,"12566":-1,"12567":-1,"12568":2683,"12569":-1,"12570":-1,"12571":-1,"12572":-1,"12573":-1,"12574":-1,"12575":-1,"12576":-1,"12577":-1,"12578":-1,"12579":-1,"12580":-1,"12581":2681,"12582":2685,"12583":-1,"12584":-1,"12585":-1,"12586":-1,"12587":0,"12588":-1,"12589":2682,"12590":-1,"12591":-1,"12592":-1,"12593":-1,"12594":-1,"12595":-1,"12596":-1,"12597":-1,"12598":2686,"12599":-1,"12600":-1,"12601":2684,"12602":-1,"12603":-1,"12604":-1,"12605":-1,"12606":-1,"12607":-1,"12608":-1,"12609":2681,"12610":-1,"12611":-1,"12612":-1,"12613":-1,"12614":-1,"12615":-1,"12616":-1,"12617":-1,"12618":-1,"12619":-1,"12620":-1,"12621":-1,"12622":-1,"12623":-1,"12624":-1,"12625":-1,"12626":-1,"12627":-1,"12628":-1,"12629":-1,"12630":-1,"12631":-1,"12632":-1,"12633":-1,"12634":-1,"12635":0,"12636":2682,"12637":-1,"12638":-1,"12639":2685,"12640":-1,"12641":-1,"12642":-1,"12643":-1,"12644":-1,"12645":2685,"12646":2685,"12647":2687,"12648":-1,"12649":-1,"12650":-1,"12651":2687,"12652":-1,"12653":-1,"12654":-1,"12655":-1,"12656":-1,"12657":-1,"12658":-1,"12659":2686,"12660":-1,"12661":0,"12662":-1,"12663":-1,"12664":-1,"12665":-1,"12666":-1,"12667":-1,"12668":-1,"12669":2685,"12670":-1,"12671":-1,"12672":-1,"12673":-1,"12674":-1,"12675":-1,"12676":2683,"12677":-1,"12678":-1,"12679":-1,"12680":-1,"12681":0,"12682":-1,"12683":-1,"12684":-1,"12685":-1,"12686":-1,"12687":-1,"12688":2682,"12689":2685,"12690":0,"12691":-1,"12692":2683,"12693":2686,"12694":2684,"12695":-1,"12696":-1,"12697":-1,"12698":-1,"12699":-1,"12700":-1,"12701":-1,"12702":-1,"12703":0,"12704":-1,"12705":-1,"12706":-1,"12707":-1,"12708":-1,"12709":-1,"12710":-1,"12711":-1,"12712":2685,"12713":-1,"12714":2683,"12715":2686,"12716":-1,"12717":-1,"12718":-1,"12719":-1,"12720":-1,"12721":-1,"12722":-1,"12723":-1,"12724":-1,"12725":2681,"12726":-1,"12727":2683,"12728":-1,"12729":-1,"12730":-1,"12731":-1,"12732":-1,"12733":-1,"12734":-1,"12735":2685,"12736":-1,"12737":-1,"12738":-1,"12739":-1,"12740":-1,"12741":-1,"12742":-1,"12743":-1,"12744":-1,"12745":-1,"12746":-1,"12747":-1,"12748":-1,"12749":-1,"12750":-1,"12751":0,"12752":-1,"12753":-1,"12754":-1,"12755":-1,"12756":-1,"12757":-1,"12758":-1,"12759":-1,"12760":2687,"12761":-1,"12762":-1,"12763":-1,"12764":-1,"12765":0,"12766":-1,"12767":-1,"12768":-1,"12769":-1,"12770":-1,"12771":-1,"12772":-1,"12773":-1,"12774":2681,"12775":-1,"12776":-1,"12777":-1,"12778":-1,"12779":-1,"12780":-1,"12781":-1,"12782":-1,"12783":-1,"12784":-1,"12785":-1,"12786":-1,"12787":2686,"12788":-1,"12789":-1,"12790":-1,"12791":-1,"12792":-1,"12793":-1,"12794":-1,"12795":-1,"12796":-1,"12797":-1,"12798":-1,"12799":-1,"12800":-1,"12801":-1,"12802":-1,"12803":-1,"12804":-1,"12805":-1,"12806":-1,"12807":-1,"12808":-1,"12809":2682,"12810":-1,"12811":-1,"12812":-1,"12813":-1,"12814":-1,"12815":-1,"12816":-1,"12817":-1,"12818":-1,"12819":-1,"12820":-1,"12821":-1,"12822":2682,"12823":-1,"12824":-1,"12825":-1,"12826":-1,"12827":-1,"12828":-1,"12829":-1,"12830":-1,"12831":-1,"12832":-1,"12833":-1,"12834":-1,"12835":2687,"12836":-1,"12837":-1,"12838":-1,"12839":-1,"12840":-1,"12841":-1,"12842":-1,"12843":-1,"12844":-1,"12845":-1,"12846":-1,"12847":-1,"12848":-1,"12849":-1,"12850":-1,"12851":0,"12852":2683,"12853":-1,"12854":-1,"12855":-1,"12856":2685,"12857":-1,"12858":-1,"12859":-1,"12860":-1,"12861":-1,"12862":-1,"12863":-1,"12864":-1,"12865":-1,"12866":-1,"12867":-1,"12868":2682,"12869":-1,"12870":-1,"12871":-1,"12872":-1,"12873":-1,"12874":-1,"12875":2683,"12876":-1,"12877":2685,"12878":-1,"12879":0,"12880":-1,"12881":-1,"12882":-1,"12883":2684,"12884":-1,"12885":-1,"12886":-1,"12887":-1,"12888":-1,"12889":-1,"12890":-1,"12891":-1,"12892":-1,"12893":-1,"12894":-1,"12895":2685,"12896":-1,"12897":-1,"12898":-1,"12899":-1,"12900":-1,"12901":2681,"12902":-1,"12903":-1,"12904":-1,"12905":2684,"12906":-1,"12907":-1,"12908":-1,"12909":-1,"12910":-1,"12911":-1,"12912":0,"12913":2687,"12914":-1,"12915":-1,"12916":-1,"12917":-1,"12918":-1,"12919":-1,"12920":-1,"12921":-1,"12922":-1,"12923":-1,"12924":-1,"12925":-1,"12926":-1,"12927":-1,"12928":-1,"12929":-1,"12930":-1,"12931":-1,"12932":-1,"12933":-1,"12934":-1,"12935":-1,"12936":-1,"12937":-1,"12938":-1,"12939":-1,"12940":-1,"12941":-1,"12942":-1,"12943":2683,"12944":-1,"12945":-1,"12946":-1,"12947":2684,"12948":-1,"12949":-1,"12950":-1,"12951":-1,"12952":0,"12953":-1,"12954":-1,"12955":-1,"12956":-1,"12957":-1,"12958":-1,"12959":-1,"12960":-1,"12961":0,"12962":-1,"12963":0,"12964":-1,"12965":0,"12966":-1,"12967":2687,"12968":-1,"12969":-1,"12970":-1,"12971":2682,"12972":2685,"12973":-1,"12974":-1,"12975":-1,"12976":-1,"12977":2685,"12978":-1,"12979":2684,"12980":-1,"12981":-1,"12982":-1,"12983":-1,"12984":-1,"12985":-1,"12986":-1,"12987":-1,"12988":-1,"12989":-1,"12990":-1,"12991":-1,"12992":-1,"12993":-1,"12994":-1,"12995":2684,"12996":-1,"12997":-1,"12998":0,"12999":-1,"13000":2683,"13001":2685,"13002":-1,"13003":0,"13004":-1,"13005":-1,"13006":-1,"13007":-1,"13008":-1,"13009":-1,"13010":-1,"13011":-1,"13012":-1,"13013":-1,"13014":-1,"13015":-1,"13016":-1,"13017":-1,"13018":-1,"13019":-1,"13020":-1,"13021":-1,"13022":-1,"13023":-1,"13024":-1,"13025":-1,"13026":-1,"13027":-1,"13028":-1,"13029":-1,"13030":-1,"13031":-1,"13032":-1,"13033":-1,"13034":-1,"13035":-1,"13036":2687,"13037":-1,"13038":2684,"13039":-1,"13040":-1,"13041":2686,"13042":-1,"13043":-1,"13044":2684,"13045":-1,"13046":2685,"13047":-1,"13048":-1,"13049":-1,"13050":-1,"13051":2685,"13052":-1,"13053":-1,"13054":-1,"13055":-1,"13056":-1,"13057":0,"13058":-1,"13059":-1,"13060":-1,"13061":-1,"13062":-1,"13063":-1,"13064":-1,"13065":-1,"13066":-1,"13067":-1,"13068":-1,"13069":-1,"13070":-1,"13071":0,"13072":-1,"13073":-1,"13074":2685,"13075":-1,"13076":2684,"13077":-1,"13078":-1,"13079":-1,"13080":-1,"13081":-1,"13082":-1,"13083":-1,"13084":-1,"13085":-1,"13086":-1,"13087":-1,"13088":-1,"13089":-1,"13090":-1,"13091":2683,"13092":-1,"13093":-1,"13094":-1,"13095":-1,"13096":-1,"13097":-1,"13098":-1,"13099":-1,"13100":-1,"13101":-1,"13102":-1,"13103":-1,"13104":-1,"13105":-1,"13106":-1,"13107":-1,"13108":-1,"13109":2682,"13110":-1,"13111":-1,"13112":-1,"13113":2683,"13114":-1,"13115":-1,"13116":-1,"13117":-1,"13118":-1,"13119":-1,"13120":2686,"13121":0,"13122":-1,"13123":-1,"13124":-1,"13125":-1,"13126":2686,"13127":0,"13128":-1,"13129":-1,"13130":-1,"13131":-1,"13132":-1,"13133":-1,"13134":-1,"13135":-1,"13136":-1,"13137":-1,"13138":2682,"13139":-1,"13140":-1,"13141":-1,"13142":-1,"13143":2681,"13144":2685,"13145":-1,"13146":-1,"13147":-1,"13148":-1,"13149":2685,"13150":-1,"13151":-1,"13152":-1,"13153":-1,"13154":2682,"13155":-1,"13156":-1,"13157":-1,"13158":-1,"13159":-1,"13160":-1,"13161":-1,"13162":-1,"13163":-1,"13164":-1,"13165":-1,"13166":-1,"13167":2681,"13168":-1,"13169":-1,"13170":-1,"13171":-1,"13172":2684,"13173":2682,"13174":-1,"13175":-1,"13176":-1,"13177":2683,"13178":-1,"13179":0,"13180":-1,"13181":2684,"13182":-1,"13183":2686,"13184":-1,"13185":-1,"13186":-1,"13187":-1,"13188":-1,"13189":-1,"13190":-1,"13191":-1,"13192":-1,"13193":-1,"13194":-1,"13195":-1,"13196":-1,"13197":-1,"13198":-1,"13199":-1,"13200":-1,"13201":-1,"13202":-1,"13203":-1,"13204":-1,"13205":-1,"13206":-1,"13207":2684,"13208":0,"13209":-1,"13210":-1,"13211":0,"13212":-1,"13213":-1,"13214":-1,"13215":-1,"13216":-1,"13217":-1,"13218":-1,"13219":-1,"13220":-1,"13221":-1,"13222":-1,"13223":-1,"13224":-1,"13225":-1,"13226":-1,"13227":-1,"13228":-1,"13229":-1,"13230":-1,"13231":2682,"13232":-1,"13233":-1,"13234":-1,"13235":-1,"13236":-1,"13237":-1,"13238":2684,"13239":-1,"13240":-1,"13241":-1,"13242":-1,"13243":-1,"13244":-1,"13245":-1,"13246":-1,"13247":-1,"13248":-1,"13249":-1,"13250":-1,"13251":-1,"13252":-1,"13253":-1,"13254":2685,"13255":-1,"13256":2685,"13257":2686,"13258":-1,"13259":-1,"13260":-1,"13261":-1,"13262":-1,"13263":-1,"13264":-1,"13265":-1,"13266":-1,"13267":-1,"13268":-1,"13269":-1,"13270":-1,"13271":-1,"13272":-1,"13273":-1,"13274":-1,"13275":-1,"13276":-1,"13277":-1,"13278":-1,"13279":-1,"13280":-1,"13281":-1,"13282":0,"13283":-1,"13284":-1,"13285":2686,"13286":-1,"13287":-1,"13288":-1,"13289":2685,"13290":-1,"13291":-1,"13292":-1,"13293":-1,"13294":-1,"13295":-1,"13296":-1,"13297":-1,"13298":-1,"13299":2685,"13300":2686,"13301":-1,"13302":2686,"13303":-1,"13304":-1,"13305":-1,"13306":-1,"13307":-1,"13308":-1,"13309":-1,"13310":2687,"13311":-1,"13312":-1,"13313":-1,"13314":2685,"13315":0,"13316":-1,"13317":-1,"13318":-1,"13319":-1,"13320":2687,"13321":-1,"13322":-1,"13323":-1,"13324":-1,"13325":-1,"13326":-1,"13327":-1,"13328":-1,"13329":-1,"13330":2682,"13331":-1,"13332":2682,"13333":-1,"13334":-1,"13335":0,"13336":-1,"13337":-1,"13338":-1,"13339":2683,"13340":-1,"13341":-1,"13342":0,"13343":-1,"13344":2686,"13345":-1,"13346":-1,"13347":-1,"13348":-1,"13349":2686,"13350":-1,"13351":-1,"13352":0,"13353":-1,"13354":-1,"13355":-1,"13356":-1,"13357":-1,"13358":-1,"13359":2683,"13360":-1,"13361":-1,"13362":-1,"13363":-1,"13364":-1,"13365":-1,"13366":-1,"13367":2684,"13368":-1,"13369":-1,"13370":-1,"13371":-1,"13372":-1,"13373":0,"13374":-1,"13375":-1,"13376":-1,"13377":2686,"13378":2686,"13379":-1,"13380":-1,"13381":-1,"13382":-1,"13383":-1,"13384":-1,"13385":-1,"13386":-1,"13387":-1,"13388":-1,"13389":-1,"13390":-1,"13391":-1,"13392":-1,"13393":-1,"13394":-1,"13395":-1,"13396":-1,"13397":-1,"13398":-1,"13399":-1,"13400":-1,"13401":-1,"13402":-1,"13403":-1,"13404":-1,"13405":-1,"13406":-1,"13407":-1,"13408":-1,"13409":-1,"13410":-1,"13411":-1,"13412":-1,"13413":-1,"13414":-1,"13415":-1,"13416":-1,"13417":-1,"13418":2683,"13419":-1,"13420":2682,"13421":-1,"13422":2681,"13423":-1,"13424":-1,"13425":-1,"13426":2682,"13427":-1,"13428":-1,"13429":-1,"13430":-1,"13431":-1,"13432":-1,"13433":-1,"13434":-1,"13435":-1,"13436":-1,"13437":-1,"13438":-1,"13439":-1,"13440":-1,"13441":-1,"13442":2685,"13443":-1,"13444":-1,"13445":-1,"13446":-1,"13447":-1,"13448":2684,"13449":-1,"13450":-1,"13451":-1,"13452":-1,"13453":-1,"13454":-1,"13455":-1,"13456":-1,"13457":-1,"13458":-1,"13459":-1,"13460":-1,"13461":-1,"13462":-1,"13463":-1,"13464":2683,"13465":2683,"13466":-1,"13467":-1,"13468":0,"13469":-1,"13470":-1,"13471":-1,"13472":-1,"13473":-1,"13474":-1,"13475":-1,"13476":-1,"13477":-1,"13478":2682,"13479":-1,"13480":-1,"13481":-1,"13482":-1,"13483":-1,"13484":-1,"13485":-1,"13486":2685,"13487":-1,"13488":-1,"13489":-1,"13490":-1,"13491":-1,"13492":-1,"13493":-1,"13494":0,"13495":-1,"13496":2684,"13497":-1,"13498":-1,"13499":-1,"13500":-1,"13501":-1,"13502":2683,"13503":-1,"13504":-1,"13505":-1,"13506":-1,"13507":-1,"13508":-1,"13509":-1,"13510":-1,"13511":-1,"13512":-1,"13513":-1,"13514":-1,"13515":-1,"13516":-1,"13517":0,"13518":-1,"13519":-1,"13520":-1,"13521":-1,"13522":2682,"13523":2685,"13524":-1,"13525":-1,"13526":2686,"13527":-1,"13528":-1,"13529":-1,"13530":-1,"13531":2686,"13532":-1,"13533":-1,"13534":-1,"13535":-1,"13536":2687,"13537":-1,"13538":-1,"13539":-1,"13540":-1,"13541":-1,"13542":2686,"13543":2683,"13544":-1,"13545":-1,"13546":-1,"13547":-1,"13548":-1,"13549":-1,"13550":-1,"13551":-1,"13552":-1,"13553":-1,"13554":-1,"13555":-1,"13556":-1,"13557":-1,"13558":-1,"13559":-1,"13560":0,"13561":-1,"13562":2682,"13563":-1,"13564":-1,"13565":0,"13566":-1,"13567":-1,"13568":-1,"13569":-1,"13570":-1,"13571":-1,"13572":-1,"13573":-1,"13574":-1,"13575":-1,"13576":-1,"13577":-1,"13578":-1,"13579":-1,"13580":-1,"13581":-1,"13582":-1,"13583":-1,"13584":-1,"13585":-1,"13586":0,"13587":-1,"13588":-1,"13589":-1,"13590":2684,"13591":-1,"13592":-1,"13593":-1,"13594":2682,"13595":-1,"13596":-1,"13597":-1,"13598":-1,"13599":-1,"13600":-1,"13601":-1,"13602":-1,"13603":-1,"13604":-1,"13605":-1,"13606":-1,"13607":-1,"13608":-1,"13609":2686,"13610":-1,"13611":-1,"13612":-1,"13613":-1,"13614":-1,"13615":-1,"13616":-1,"13617":-1,"13618":-1,"13619":-1,"13620":-1,"13621":-1,"13622":-1,"13623":-1,"13624":-1,"13625":-1,"13626":-1,"13627":-1,"13628":-1,"13629":-1,"13630":2683,"13631":-1,"13632":-1,"13633":2686,"13634":2684,"13635":-1,"13636":-1,"13637":-1,"13638":2686,"13639":-1,"13640":2682,"13641":0,"13642":-1,"13643":-1,"13644":-1,"13645":-1,"13646":-1,"13647":-1,"13648":-1,"13649":-1,"13650":-1,"13651":-1,"13652":-1,"13653":-1,"13654":2683,"13655":-1,"13656":2687,"13657":-1,"13658":-1,"13659":-1,"13660":-1,"13661":0,"13662":-1,"13663":2685,"13664":-1,"13665":-1,"13666":-1,"13667":2684,"13668":-1,"13669":-1,"13670":-1,"13671":-1,"13672":-1,"13673":-1,"13674":0,"13675":2686,"13676":-1,"13677":-1,"13678":-1,"13679":-1,"13680":-1,"13681":-1,"13682":-1,"13683":2682,"13684":-1,"13685":2683,"13686":-1,"13687":-1,"13688":-1,"13689":0,"13690":2682,"13691":-1,"13692":-1,"13693":-1,"13694":2683,"13695":-1,"13696":2682,"13697":-1,"13698":2685,"13699":-1,"13700":-1,"13701":-1,"13702":-1,"13703":-1,"13704":-1,"13705":-1,"13706":2686,"13707":2681,"13708":-1,"13709":-1,"13710":-1,"13711":2684,"13712":-1,"13713":-1,"13714":-1,"13715":-1,"13716":-1,"13717":-1,"13718":-1,"13719":2683,"13720":-1,"13721":-1,"13722":-1,"13723":-1,"13724":0,"13725":-1,"13726":2682,"13727":-1,"13728":2683,"13729":-1,"13730":-1,"13731":-1,"13732":-1,"13733":0,"13734":2686,"13735":-1,"13736":-1,"13737":-1,"13738":-1,"13739":-1,"13740":-1,"13741":-1,"13742":-1,"13743":-1,"13744":2681,"13745":-1,"13746":-1,"13747":-1,"13748":-1,"13749":-1,"13750":-1,"13751":-1,"13752":-1,"13753":-1,"13754":2686,"13755":-1,"13756":-1,"13757":0,"13758":-1,"13759":-1,"13760":2682,"13761":-1,"13762":-1,"13763":-1,"13764":2681,"13765":-1,"13766":-1,"13767":-1,"13768":-1,"13769":-1,"13770":-1,"13771":-1,"13772":-1,"13773":-1,"13774":-1,"13775":-1,"13776":-1,"13777":-1,"13778":-1,"13779":-1,"13780":-1,"13781":-1,"13782":2685,"13783":-1,"13784":-1,"13785":-1,"13786":-1,"13787":2686,"13788":-1,"13789":-1,"13790":2681,"13791":-1,"13792":0,"13793":-1,"13794":-1,"13795":-1,"13796":-1,"13797":-1,"13798":-1,"13799":-1,"13800":2682,"13801":-1,"13802":-1,"13803":-1,"13804":-1,"13805":-1,"13806":-1,"13807":-1,"13808":-1,"13809":2684,"13810":2685,"13811":-1,"13812":2685,"13813":2683,"13814":2682,"13815":-1,"13816":0,"13817":-1,"13818":-1,"13819":0,"13820":-1,"13821":0,"13822":-1,"13823":-1,"13824":-1,"13825":-1,"13826":-1,"13827":-1,"13828":-1,"13829":2683,"13830":-1,"13831":-1,"13832":-1,"13833":-1,"13834":-1,"13835":-1,"13836":2681,"13837":-1,"13838":-1,"13839":-1,"13840":-1,"13841":-1,"13842":-1,"13843":-1,"13844":-1,"13845":-1,"13846":-1,"13847":-1,"13848":-1,"13849":-1,"13850":-1,"13851":-1,"13852":2685,"13853":-1,"13854":-1,"13855":-1,"13856":-1,"13857":-1,"13858":-1,"13859":-1,"13860":-1,"13861":-1,"13862":2687,"13863":-1,"13864":-1,"13865":-1,"13866":-1,"13867":-1,"13868":-1,"13869":-1,"13870":-1,"13871":2683,"13872":-1,"13873":0,"13874":-1,"13875":-1,"13876":0,"13877":2684,"13878":-1,"13879":-1,"13880":2682,"13881":-1,"13882":-1,"13883":-1,"13884":-1,"13885":-1,"13886":-1,"13887":-1,"13888":-1,"13889":-1,"13890":-1,"13891":2683,"13892":-1,"13893":-1,"13894":-1,"13895":-1,"13896":-1,"13897":-1,"13898":-1,"13899":-1,"13900":2683,"13901":-1,"13902":-1,"13903":-1,"13904":2682,"13905":-1,"13906":-1,"13907":-1,"13908":-1,"13909":-1,"13910":-1,"13911":-1,"13912":-1,"13913":-1,"13914":-1,"13915":-1,"13916":-1,"13917":-1,"13918":-1,"13919":-1,"13920":2684,"13921":-1,"13922":-1,"13923":2681,"13924":-1,"13925":-1,"13926":-1,"13927":-1,"13928":-1,"13929":-1,"13930":-1,"13931":-1,"13932":2687,"13933":-1,"13934":-1,"13935":-1,"13936":-1,"13937":2684,"13938":-1,"13939":2687,"13940":-1,"13941":-1,"13942":-1,"13943":-1,"13944":-1,"13945":-1,"13946":-1,"13947":-1,"13948":0,"13949":-1,"13950":2682,"13951":-1,"13952":2682,"13953":-1,"13954":-1,"13955":-1,"13956":2686,"13957":-1,"13958":-1,"13959":-1,"13960":-1,"13961":-1,"13962":-1,"13963":-1,"13964":2685,"13965":-1,"13966":0,"13967":-1,"13968":-1,"13969":-1,"13970":-1,"13971":-1,"13972":0,"13973":-1,"13974":-1,"13975":-1,"13976":-1,"13977":0,"13978":-1,"13979":-1,"13980":-1,"13981":-1,"13982":-1,"13983":-1,"13984":-1,"13985":-1,"13986":-1,"13987":-1,"13988":-1,"13989":-1,"13990":-1,"13991":-1,"13992":-1,"13993":2686,"13994":-1,"13995":-1,"13996":-1,"13997":-1,"13998":-1,"13999":-1,"14000":0,"14001":0,"14002":-1,"14003":-1,"14004":-1,"14005":-1,"14006":-1,"14007":-1,"14008":-1,"14009":-1,"14010":-1,"14011":-1,"14012":-1,"14013":-1,"14014":-1,"14015":-1,"14016":-1,"14017":-1,"14018":-1,"14019":-1,"14020":-1,"14021":-1,"14022":-1,"14023":-1,"14024":-1,"14025":-1,"14026":-1,"14027":-1,"14028":-1,"14029":-1,"14030":2682,"14031":-1,"14032":-1,"14033":-1,"14034":-1,"14035":-1,"14036":-1,"14037":-1,"14038":-1,"14039":-1,"14040":-1,"14041":2687,"14042":2686,"14043":-1,"14044":-1,"14045":-1,"14046":-1,"14047":2681,"14048":-1,"14049":-1,"14050":-1,"14051":2684,"14052":-1,"14053":-1,"14054":-1,"14055":-1,"14056":-1,"14057":2681,"14058":-1,"14059":-1,"14060":2687,"14061":-1,"14062":-1,"14063":-1,"14064":2684,"14065":-1,"14066":-1,"14067":-1,"14068":-1,"14069":-1,"14070":-1,"14071":0,"14072":-1,"14073":-1,"14074":-1,"14075":-1,"14076":-1,"14077":-1,"14078":-1,"14079":-1,"14080":-1,"14081":-1,"14082":-1,"14083":-1,"14084":-1,"14085":-1,"14086":2685,"14087":-1,"14088":2682,"14089":-1,"14090":-1,"14091":-1,"14092":-1,"14093":-1,"14094":-1,"14095":-1,"14096":-1,"14097":-1,"14098":-1,"14099":-1,"14100":-1,"14101":-1,"14102":-1,"14103":2683,"14104":-1,"14105":-1,"14106":-1,"14107":-1,"14108":-1,"14109":-1,"14110":-1,"14111":-1,"14112":-1,"14113":-1,"14114":-1,"14115":-1,"14116":-1,"14117":2681,"14118":-1,"14119":2684,"14120":-1,"14121":-1,"14122":-1,"14123":-1,"14124":-1,"14125":-1,"14126":-1,"14127":-1,"14128":-1,"14129":-1,"14130":-1,"14131":-1,"14132":-1,"14133":-1,"14134":-1,"14135":-1,"14136":-1,"14137":-1,"14138":-1,"14139":-1,"14140":-1,"14141":-1,"14142":-1,"14143":-1,"14144":-1,"14145":-1,"14146":-1,"14147":-1,"14148":-1,"14149":-1,"14150":-1,"14151":-1,"14152":2682,"14153":2684,"14154":-1,"14155":-1,"14156":-1,"14157":-1,"14158":2686,"14159":-1,"14160":-1,"14161":-1,"14162":-1,"14163":-1,"14164":2685,"14165":-1,"14166":2685,"14167":-1,"14168":2682,"14169":-1,"14170":-1,"14171":-1,"14172":-1,"14173":2685,"14174":-1,"14175":-1,"14176":-1,"14177":-1,"14178":-1,"14179":-1,"14180":-1,"14181":-1,"14182":-1,"14183":-1,"14184":-1,"14185":-1,"14186":-1,"14187":-1,"14188":-1,"14189":-1,"14190":-1,"14191":2682,"14192":-1,"14193":-1,"14194":-1,"14195":-1,"14196":-1,"14197":-1,"14198":-1,"14199":-1,"14200":-1,"14201":-1,"14202":-1,"14203":-1,"14204":-1,"14205":-1,"14206":-1,"14207":-1,"14208":2685,"14209":-1,"14210":-1,"14211":-1,"14212":-1,"14213":0,"14214":-1,"14215":2687,"14216":-1,"14217":-1,"14218":-1,"14219":-1,"14220":0,"14221":2686,"14222":-1,"14223":2683,"14224":-1,"14225":-1,"14226":-1,"14227":0,"14228":-1,"14229":-1,"14230":-1,"14231":-1,"14232":-1,"14233":-1,"14234":-1,"14235":-1,"14236":-1,"14237":-1,"14238":-1,"14239":-1,"14240":-1,"14241":2683,"14242":-1,"14243":-1,"14244":-1,"14245":-1,"14246":-1,"14247":-1,"14248":-1,"14249":-1,"14250":-1,"14251":-1,"14252":0,"14253":-1,"14254":-1,"14255":-1,"14256":-1,"14257":-1,"14258":2681,"14259":0,"14260":-1,"14261":-1,"14262":-1,"14263":-1,"14264":-1,"14265":-1,"14266":-1,"14267":-1,"14268":-1,"14269":-1,"14270":-1,"14271":-1,"14272":2684,"14273":-1,"14274":-1,"14275":-1,"14276":-1,"14277":-1,"14278":-1,"14279":-1,"14280":-1,"14281":-1,"14282":-1,"14283":-1,"14284":-1,"14285":-1,"14286":-1,"14287":-1,"14288":2681,"14289":-1,"14290":-1,"14291":-1,"14292":-1,"14293":-1,"14294":-1,"14295":-1,"14296":-1,"14297":-1,"14298":-1,"14299":-1,"14300":-1,"14301":-1,"14302":-1,"14303":2681,"14304":-1,"14305":-1,"14306":-1,"14307":2683,"14308":-1,"14309":-1,"14310":0,"14311":-1,"14312":0,"14313":-1,"14314":-1,"14315":0,"14316":-1,"14317":-1,"14318":-1,"14319":2686,"14320":-1,"14321":2685,"14322":-1,"14323":-1,"14324":2687,"14325":-1,"14326":-1,"14327":-1,"14328":-1,"14329":-1,"14330":-1,"14331":-1,"14332":-1,"14333":-1,"14334":-1,"14335":-1,"14336":-1,"14337":2684,"14338":-1,"14339":-1,"14340":-1,"14341":-1,"14342":-1,"14343":-1,"14344":2683,"14345":-1,"14346":-1,"14347":-1,"14348":-1,"14349":-1,"14350":-1,"14351":-1,"14352":-1,"14353":0,"14354":-1,"14355":-1,"14356":0,"14357":2686,"14358":2681,"14359":-1,"14360":-1,"14361":2686,"14362":-1,"14363":-1,"14364":-1,"14365":-1,"14366":-1,"14367":-1,"14368":2685,"14369":-1,"14370":-1,"14371":-1,"14372":-1,"14373":-1,"14374":-1,"14375":0,"14376":-1,"14377":-1,"14378":-1,"14379":-1,"14380":-1,"14381":-1,"14382":-1,"14383":-1,"14384":-1,"14385":-1,"14386":-1,"14387":-1,"14388":2682,"14389":2683,"14390":0,"14391":-1,"14392":-1,"14393":-1,"14394":-1,"14395":-1,"14396":-1,"14397":-1,"14398":2684,"14399":-1,"14400":-1,"14401":-1,"14402":2685,"14403":-1,"14404":-1,"14405":-1,"14406":0,"14407":-1,"14408":-1,"14409":-1,"14410":-1,"14411":-1,"14412":2682,"14413":-1,"14414":-1,"14415":-1,"14416":2686,"14417":-1,"14418":-1,"14419":-1,"14420":-1,"14421":-1,"14422":2684,"14423":-1,"14424":-1,"14425":-1,"14426":-1,"14427":-1,"14428":-1,"14429":-1,"14430":-1,"14431":-1,"14432":-1,"14433":-1,"14434":-1,"14435":-1,"14436":-1,"14437":2683,"14438":-1,"14439":-1,"14440":-1,"14441":2682,"14442":-1,"14443":2682,"14444":-1,"14445":-1,"14446":-1,"14447":-1,"14448":-1,"14449":-1,"14450":-1,"14451":-1,"14452":-1,"14453":-1,"14454":2685,"14455":-1,"14456":-1,"14457":-1,"14458":-1,"14459":-1,"14460":-1,"14461":0,"14462":0,"14463":-1,"14464":2684,"14465":-1,"14466":-1,"14467":-1,"14468":-1,"14469":-1,"14470":-1,"14471":-1,"14472":-1,"14473":-1,"14474":-1,"14475":-1,"14476":-1,"14477":-1,"14478":2684,"14479":2684,"14480":-1,"14481":-1,"14482":2683,"14483":2684,"14484":-1,"14485":-1,"14486":-1,"14487":-1,"14488":-1,"14489":-1,"14490":2682,"14491":2682,"14492":-1,"14493":-1,"14494":-1,"14495":-1,"14496":-1,"14497":2687,"14498":-1,"14499":-1,"14500":-1,"14501":-1,"14502":-1,"14503":-1,"14504":-1,"14505":2681,"14506":-1,"14507":2686,"14508":-1,"14509":-1,"14510":-1,"14511":-1,"14512":-1,"14513":-1,"14514":-1,"14515":2685,"14516":-1,"14517":-1,"14518":-1,"14519":-1,"14520":-1,"14521":-1,"14522":-1,"14523":-1,"14524":-1,"14525":2685,"14526":-1,"14527":-1,"14528":-1,"14529":-1,"14530":2683,"14531":-1,"14532":-1,"14533":-1,"14534":-1,"14535":-1,"14536":2682,"14537":2685,"14538":-1,"14539":-1,"14540":-1,"14541":-1,"14542":-1,"14543":-1,"14544":-1,"14545":2683,"14546":-1,"14547":-1,"14548":-1,"14549":-1,"14550":-1,"14551":-1,"14552":-1,"14553":-1,"14554":-1,"14555":-1,"14556":-1,"14557":-1,"14558":-1,"14559":-1,"14560":-1,"14561":-1,"14562":-1,"14563":-1,"14564":-1,"14565":-1,"14566":-1,"14567":-1,"14568":-1,"14569":-1,"14570":-1,"14571":-1,"14572":-1,"14573":-1,"14574":2682,"14575":-1,"14576":2683,"14577":-1,"14578":-1,"14579":-1,"14580":-1,"14581":-1,"14582":-1,"14583":-1,"14584":-1,"14585":-1,"14586":-1,"14587":-1,"14588":-1,"14589":-1,"14590":-1,"14591":-1,"14592":-1,"14593":-1,"14594":-1,"14595":-1,"14596":-1,"14597":-1,"14598":2687,"14599":-1,"14600":2682,"14601":-1,"14602":-1,"14603":-1,"14604":-1,"14605":-1,"14606":-1,"14607":-1,"14608":2686,"14609":-1,"14610":-1,"14611":-1,"14612":-1,"14613":-1,"14614":-1,"14615":-1,"14616":-1,"14617":-1,"14618":-1,"14619":0,"14620":-1,"14621":-1,"14622":2686,"14623":-1,"14624":-1,"14625":-1,"14626":-1,"14627":-1,"14628":-1,"14629":-1,"14630":-1,"14631":-1,"14632":-1,"14633":-1,"14634":-1,"14635":-1,"14636":-1,"14637":-1,"14638":-1,"14639":-1,"14640":-1,"14641":-1,"14642":-1,"14643":2686,"14644":-1,"14645":-1,"14646":-1,"14647":-1,"14648":-1,"14649":-1,"14650":-1,"14651":-1,"14652":0,"14653":-1,"14654":-1,"14655":-1,"14656":-1,"14657":-1,"14658":-1,"14659":-1,"14660":-1,"14661":2686,"14662":-1,"14663":-1,"14664":-1,"14665":-1,"14666":-1,"14667":-1,"14668":-1,"14669":-1,"14670":2685,"14671":-1,"14672":-1,"14673":-1,"14674":-1,"14675":-1,"14676":-1,"14677":2683,"14678":2683,"14679":-1,"14680":0,"14681":-1,"14682":2685,"14683":-1,"14684":2682,"14685":-1,"14686":-1,"14687":-1,"14688":-1,"14689":-1,"14690":-1,"14691":-1,"14692":-1,"14693":-1,"14694":-1,"14695":-1,"14696":-1,"14697":2683,"14698":-1,"14699":-1,"14700":-1,"14701":-1,"14702":-1,"14703":-1,"14704":-1,"14705":-1,"14706":-1,"14707":-1,"14708":-1,"14709":-1,"14710":-1,"14711":2686,"14712":-1,"14713":-1,"14714":-1,"14715":-1,"14716":-1,"14717":-1,"14718":2684,"14719":-1,"14720":-1,"14721":-1,"14722":-1,"14723":-1,"14724":-1,"14725":-1,"14726":-1,"14727":-1,"14728":-1,"14729":-1,"14730":-1,"14731":-1,"14732":-1,"14733":-1,"14734":2686,"14735":-1,"14736":-1,"14737":2683,"14738":-1,"14739":-1,"14740":-1,"14741":-1,"14742":-1,"14743":-1,"14744":2687,"14745":-1,"14746":2686,"14747":-1,"14748":2682,"14749":-1,"14750":-1,"14751":-1,"14752":-1,"14753":-1,"14754":-1,"14755":-1,"14756":-1,"14757":-1,"14758":-1,"14759":-1,"14760":-1,"14761":2682,"14762":-1,"14763":0,"14764":-1,"14765":2684,"14766":-1,"14767":-1,"14768":-1,"14769":2687,"14770":-1,"14771":-1,"14772":-1,"14773":-1,"14774":-1,"14775":-1,"14776":0,"14777":-1,"14778":2687,"14779":-1,"14780":-1,"14781":-1,"14782":-1,"14783":-1,"14784":-1,"14785":-1,"14786":-1,"14787":-1,"14788":-1,"14789":-1,"14790":-1,"14791":-1,"14792":2684,"14793":-1,"14794":-1,"14795":-1,"14796":-1,"14797":-1,"14798":-1,"14799":-1,"14800":-1,"14801":-1,"14802":-1,"14803":2681,"14804":2683,"14805":-1,"14806":-1,"14807":-1,"14808":-1,"14809":-1,"14810":-1,"14811":-1,"14812":-1,"14813":-1,"14814":-1,"14815":2682,"14816":-1,"14817":2683,"14818":-1,"14819":-1,"14820":-1,"14821":-1,"14822":-1,"14823":-1,"14824":-1,"14825":-1,"14826":-1,"14827":-1,"14828":-1,"14829":-1,"14830":-1,"14831":0,"14832":-1,"14833":-1,"14834":-1,"14835":-1,"14836":2683,"14837":-1,"14838":-1,"14839":-1,"14840":-1,"14841":-1,"14842":-1,"14843":-1,"14844":-1,"14845":-1,"14846":-1,"14847":-1,"14848":-1,"14849":-1,"14850":-1,"14851":-1,"14852":-1,"14853":-1,"14854":-1,"14855":-1,"14856":-1,"14857":-1,"14858":-1,"14859":-1,"14860":-1,"14861":-1,"14862":-1,"14863":2684,"14864":-1,"14865":-1,"14866":-1,"14867":-1,"14868":2686,"14869":-1,"14870":-1,"14871":-1,"14872":2686,"14873":-1,"14874":-1,"14875":-1,"14876":-1,"14877":2684,"14878":2681,"14879":-1,"14880":-1,"14881":-1,"14882":-1,"14883":-1,"14884":-1,"14885":-1,"14886":-1,"14887":-1,"14888":-1,"14889":2681,"14890":-1,"14891":-1,"14892":-1,"14893":-1,"14894":-1,"14895":2683,"14896":2682,"14897":2685,"14898":-1,"14899":-1,"14900":-1,"14901":-1,"14902":0,"14903":-1,"14904":-1,"14905":-1,"14906":0,"14907":2685,"14908":-1,"14909":-1,"14910":-1,"14911":-1,"14912":-1,"14913":-1,"14914":-1,"14915":-1,"14916":2683,"14917":-1,"14918":-1,"14919":-1,"14920":2684,"14921":-1,"14922":-1,"14923":-1,"14924":-1,"14925":-1,"14926":-1,"14927":-1,"14928":-1,"14929":-1,"14930":-1,"14931":-1,"14932":-1,"14933":-1,"14934":-1,"14935":-1,"14936":-1,"14937":-1,"14938":-1,"14939":-1,"14940":-1,"14941":-1,"14942":-1,"14943":-1,"14944":-1,"14945":-1,"14946":-1,"14947":-1,"14948":-1,"14949":-1,"14950":-1,"14951":-1,"14952":2684,"14953":-1,"14954":-1,"14955":-1,"14956":-1,"14957":-1,"14958":-1,"14959":-1,"14960":-1,"14961":-1,"14962":-1,"14963":-1,"14964":-1,"14965":2681,"14966":-1,"14967":2681,"14968":-1,"14969":-1,"14970":-1,"14971":2685,"14972":-1,"14973":2685,"14974":-1,"14975":-1,"14976":-1,"14977":0,"14978":-1,"14979":2686,"14980":-1,"14981":-1,"14982":-1,"14983":-1,"14984":2682,"14985":-1,"14986":-1,"14987":-1,"14988":-1,"14989":-1,"14990":-1,"14991":-1,"14992":-1,"14993":-1,"14994":-1,"14995":-1,"14996":-1,"14997":-1,"14998":-1,"14999":-1,"15000":2686,"15001":-1,"15002":-1,"15003":-1,"15004":-1,"15005":-1,"15006":-1,"15007":-1,"15008":-1,"15009":0,"15010":-1,"15011":-1,"15012":-1,"15013":-1,"15014":-1,"15015":-1,"15016":-1,"15017":-1,"15018":2686,"15019":2685,"15020":-1,"15021":2686,"15022":2684,"15023":-1,"15024":-1,"15025":-1,"15026":-1,"15027":2683,"15028":-1,"15029":2686,"15030":-1,"15031":-1,"15032":-1,"15033":-1,"15034":-1,"15035":-1,"15036":-1,"15037":-1,"15038":-1,"15039":-1,"15040":-1,"15041":-1,"15042":2682,"15043":-1,"15044":2684,"15045":-1,"15046":-1,"15047":-1,"15048":-1,"15049":-1,"15050":-1,"15051":2684,"15052":-1,"15053":-1,"15054":2686,"15055":-1,"15056":-1,"15057":-1,"15058":-1,"15059":-1,"15060":-1,"15061":-1,"15062":-1,"15063":-1,"15064":-1,"15065":-1,"15066":-1,"15067":-1,"15068":-1,"15069":-1,"15070":-1,"15071":-1,"15072":-1,"15073":-1,"15074":-1,"15075":-1,"15076":-1,"15077":-1,"15078":-1,"15079":-1,"15080":-1,"15081":-1,"15082":0,"15083":0,"15084":-1,"15085":-1,"15086":-1,"15087":-1,"15088":-1,"15089":0,"15090":2681,"15091":-1,"15092":-1,"15093":-1,"15094":-1,"15095":-1,"15096":-1,"15097":-1,"15098":2684,"15099":-1,"15100":-1,"15101":-1,"15102":-1,"15103":-1,"15104":-1,"15105":-1,"15106":-1,"15107":-1,"15108":-1,"15109":-1,"15110":-1,"15111":0,"15112":-1,"15113":-1,"15114":-1,"15115":-1,"15116":-1,"15117":-1,"15118":-1,"15119":-1,"15120":-1,"15121":-1,"15122":-1,"15123":-1,"15124":-1,"15125":-1,"15126":-1,"15127":2686,"15128":-1,"15129":-1,"15130":-1,"15131":-1,"15132":-1,"15133":-1,"15134":-1,"15135":-1,"15136":0,"15137":-1,"15138":-1,"15139":-1,"15140":-1,"15141":-1,"15142":-1,"15143":-1,"15144":-1,"15145":-1,"15146":-1,"15147":0,"15148":-1,"15149":-1,"15150":-1,"15151":-1,"15152":-1,"15153":-1,"15154":-1,"15155":-1,"15156":-1,"15157":-1,"15158":-1,"15159":-1,"15160":0,"15161":-1,"15162":-1,"15163":-1,"15164":-1,"15165":-1,"15166":-1,"15167":-1,"15168":-1,"15169":-1,"15170":-1,"15171":-1,"15172":-1,"15173":-1,"15174":-1,"15175":-1,"15176":-1,"15177":-1,"15178":-1,"15179":-1,"15180":-1,"15181":0,"15182":-1,"15183":-1,"15184":2685,"15185":-1,"15186":2687,"15187":-1,"15188":-1,"15189":-1,"15190":-1,"15191":-1,"15192":2685,"15193":-1,"15194":-1,"15195":-1,"15196":-1,"15197":-1,"15198":-1,"15199":-1,"15200":-1,"15201":-1,"15202":-1,"15203":-1,"15204":2686,"15205":2681,"15206":2685,"15207":-1,"15208":0,"15209":-1,"15210":-1,"15211":-1,"15212":-1,"15213":-1,"15214":-1,"15215":-1,"15216":-1,"15217":-1,"15218":-1,"15219":2686,"15220":-1,"15221":2685,"15222":-1,"15223":2681,"15224":-1,"15225":-1,"15226":-1,"15227":-1,"15228":0,"15229":-1,"15230":-1,"15231":-1,"15232":-1,"15233":-1,"15234":-1,"15235":-1,"15236":-1,"15237":0,"15238":-1,"15239":-1,"15240":-1,"15241":-1,"15242":-1,"15243":-1,"15244":-1,"15245":-1,"15246":2683,"15247":-1,"15248":-1,"15249":-1,"15250":-1,"15251":2684,"15252":-1,"15253":-1,"15254":-1,"15255":-1,"15256":-1,"15257":-1,"15258":-1,"15259":-1,"15260":-1,"15261":-1,"15262":-1,"15263":-1,"15264":-1,"15265":-1,"15266":-1,"15267":-1,"15268":-1,"15269":-1,"15270":-1,"15271":-1,"15272":-1,"15273":-1,"15274":-1,"15275":-1,"15276":-1,"15277":2684,"15278":-1,"15279":-1,"15280":-1,"15281":-1,"15282":-1,"15283":-1,"15284":-1,"15285":-1,"15286":-1,"15287":-1,"15288":-1,"15289":-1,"15290":-1,"15291":-1,"15292":-1,"15293":-1,"15294":-1,"15295":-1,"15296":-1,"15297":2685,"15298":-1,"15299":-1,"15300":-1,"15301":2686,"15302":-1,"15303":-1,"15304":-1,"15305":-1,"15306":-1,"15307":-1,"15308":-1,"15309":-1,"15310":-1,"15311":-1,"15312":-1,"15313":-1,"15314":-1,"15315":2683,"15316":-1,"15317":-1,"15318":-1,"15319":-1,"15320":-1,"15321":-1,"15322":-1,"15323":-1,"15324":-1,"15325":-1,"15326":-1,"15327":-1,"15328":-1,"15329":-1,"15330":-1,"15331":-1,"15332":-1,"15333":2681,"15334":-1,"15335":-1,"15336":-1,"15337":2686,"15338":-1,"15339":-1,"15340":2684,"15341":-1,"15342":-1,"15343":-1,"15344":0,"15345":-1,"15346":-1,"15347":-1,"15348":-1,"15349":-1,"15350":-1,"15351":-1,"15352":-1,"15353":-1,"15354":-1,"15355":-1,"15356":-1,"15357":-1,"15358":-1,"15359":-1,"15360":-1,"15361":-1,"15362":-1,"15363":-1,"15364":-1,"15365":-1,"15366":-1,"15367":-1,"15368":-1,"15369":-1,"15370":-1,"15371":2684,"15372":-1,"15373":-1,"15374":-1,"15375":-1,"15376":-1,"15377":-1,"15378":-1,"15379":-1,"15380":-1,"15381":2687,"15382":-1,"15383":-1,"15384":-1,"15385":-1,"15386":-1,"15387":-1,"15388":-1,"15389":-1,"15390":-1,"15391":-1,"15392":-1,"15393":-1,"15394":-1,"15395":-1,"15396":-1,"15397":-1,"15398":-1,"15399":-1,"15400":-1,"15401":-1,"15402":-1,"15403":-1,"15404":-1,"15405":-1,"15406":-1,"15407":-1,"15408":-1,"15409":-1,"15410":-1,"15411":-1,"15412":-1,"15413":-1,"15414":-1,"15415":-1,"15416":-1,"15417":-1,"15418":-1,"15419":2683,"15420":-1,"15421":-1,"15422":2681,"15423":-1,"15424":-1,"15425":-1,"15426":2685,"15427":-1,"15428":-1,"15429":2684,"15430":-1,"15431":-1,"15432":-1,"15433":-1,"15434":2682,"15435":-1,"15436":2683,"15437":-1,"15438":2681,"15439":-1,"15440":-1,"15441":-1,"15442":2686,"15443":-1,"15444":-1,"15445":-1,"15446":-1,"15447":-1,"15448":2685,"15449":2686,"15450":-1,"15451":-1,"15452":-1,"15453":2684,"15454":-1,"15455":-1,"15456":-1,"15457":-1,"15458":-1,"15459":-1,"15460":-1,"15461":-1,"15462":-1,"15463":-1,"15464":-1,"15465":-1,"15466":-1,"15467":-1,"15468":-1,"15469":-1,"15470":-1,"15471":-1,"15472":2684,"15473":-1,"15474":-1,"15475":-1,"15476":-1,"15477":-1,"15478":-1,"15479":2684,"15480":-1,"15481":-1,"15482":-1,"15483":-1,"15484":-1,"15485":-1,"15486":-1,"15487":-1,"15488":-1,"15489":-1,"15490":-1,"15491":-1,"15492":0,"15493":-1,"15494":-1,"15495":2682,"15496":2684,"15497":-1,"15498":-1,"15499":-1,"15500":2681,"15501":-1,"15502":2685,"15503":-1,"15504":-1,"15505":-1,"15506":-1,"15507":2683,"15508":0,"15509":2684,"15510":-1,"15511":-1,"15512":-1,"15513":-1,"15514":-1,"15515":-1,"15516":-1,"15517":-1,"15518":-1,"15519":-1,"15520":-1,"15521":2686,"15522":-1,"15523":-1,"15524":-1,"15525":-1,"15526":-1,"15527":2685,"15528":-1,"15529":-1,"15530":-1,"15531":-1,"15532":-1,"15533":2682,"15534":0,"15535":2682,"15536":-1,"15537":-1,"15538":-1,"15539":-1,"15540":-1,"15541":-1,"15542":-1,"15543":-1,"15544":-1,"15545":2686,"15546":-1,"15547":2685,"15548":-1,"15549":-1,"15550":-1,"15551":-1,"15552":-1,"15553":-1,"15554":-1,"15555":-1,"15556":-1,"15557":-1,"15558":-1,"15559":2685,"15560":-1,"15561":-1,"15562":-1,"15563":-1,"15564":-1,"15565":-1,"15566":-1,"15567":-1,"15568":2685,"15569":2682,"15570":-1,"15571":-1,"15572":-1,"15573":-1,"15574":-1,"15575":-1,"15576":-1,"15577":-1,"15578":-1,"15579":2682,"15580":-1,"15581":-1,"15582":-1,"15583":-1,"15584":-1,"15585":2685,"15586":-1,"15587":-1,"15588":2683,"15589":-1,"15590":-1,"15591":0,"15592":-1,"15593":-1,"15594":-1,"15595":-1,"15596":-1,"15597":-1,"15598":-1,"15599":-1,"15600":-1,"15601":-1,"15602":-1,"15603":-1,"15604":-1,"15605":-1,"15606":-1,"15607":-1,"15608":-1,"15609":-1,"15610":-1,"15611":-1,"15612":-1,"15613":-1,"15614":-1,"15615":-1,"15616":-1,"15617":-1,"15618":-1,"15619":-1,"15620":-1,"15621":2682,"15622":-1,"15623":-1,"15624":-1,"15625":-1,"15626":-1,"15627":-1,"15628":-1,"15629":-1,"15630":2683,"15631":-1,"15632":-1,"15633":-1,"15634":-1,"15635":2682,"15636":-1,"15637":-1,"15638":-1,"15639":-1,"15640":-1,"15641":2685,"15642":-1,"15643":-1,"15644":-1,"15645":-1,"15646":0,"15647":-1,"15648":-1,"15649":-1,"15650":2681,"15651":-1,"15652":-1,"15653":2684,"15654":-1,"15655":-1,"15656":-1,"15657":-1,"15658":-1,"15659":-1,"15660":-1,"15661":-1,"15662":-1,"15663":-1,"15664":-1,"15665":-1,"15666":-1,"15667":-1,"15668":-1,"15669":0,"15670":-1,"15671":-1,"15672":-1,"15673":-1,"15674":-1,"15675":-1,"15676":-1,"15677":-1,"15678":-1,"15679":2687,"15680":2685,"15681":-1,"15682":-1,"15683":-1,"15684":-1,"15685":-1,"15686":-1,"15687":-1,"15688":-1,"15689":-1,"15690":-1,"15691":-1,"15692":-1,"15693":-1,"15694":-1,"15695":-1,"15696":-1,"15697":-1,"15698":-1,"15699":-1,"15700":2681,"15701":-1,"15702":2681,"15703":-1,"15704":-1,"15705":-1,"15706":-1,"15707":-1,"15708":-1,"15709":-1,"15710":-1,"15711":-1,"15712":-1,"15713":-1,"15714":-1,"15715":-1,"15716":-1,"15717":-1,"15718":-1,"15719":-1,"15720":-1,"15721":-1,"15722":0,"15723":-1,"15724":-1,"15725":-1,"15726":-1,"15727":-1,"15728":-1,"15729":-1,"15730":-1,"15731":-1,"15732":0,"15733":-1,"15734":-1,"15735":-1,"15736":-1,"15737":0,"15738":-1,"15739":-1,"15740":-1,"15741":-1,"15742":-1,"15743":-1,"15744":-1,"15745":-1,"15746":-1,"15747":-1,"15748":-1,"15749":-1,"15750":-1,"15751":-1,"15752":-1,"15753":-1,"15754":-1,"15755":-1,"15756":-1,"15757":2682,"15758":-1,"15759":2682,"15760":-1,"15761":-1,"15762":-1,"15763":-1,"15764":-1,"15765":-1,"15766":-1,"15767":-1,"15768":-1,"15769":2681,"15770":-1,"15771":-1,"15772":-1,"15773":-1,"15774":-1,"15775":-1,"15776":-1,"15777":-1,"15778":-1,"15779":-1,"15780":-1,"15781":-1,"15782":-1,"15783":-1,"15784":-1,"15785":0,"15786":-1,"15787":0,"15788":0,"15789":-1,"15790":-1,"15791":-1,"15792":-1,"15793":-1,"15794":-1,"15795":-1,"15796":-1,"15797":-1,"15798":-1,"15799":-1,"15800":-1,"15801":-1,"15802":-1,"15803":-1,"15804":-1,"15805":-1,"15806":-1,"15807":-1,"15808":-1,"15809":-1,"15810":-1,"15811":-1,"15812":-1,"15813":2683,"15814":-1,"15815":-1,"15816":-1,"15817":-1,"15818":-1,"15819":-1,"15820":-1,"15821":-1,"15822":-1,"15823":2682,"15824":-1,"15825":-1,"15826":-1,"15827":-1,"15828":2682,"15829":-1,"15830":-1,"15831":-1,"15832":-1,"15833":2681,"15834":-1,"15835":-1,"15836":-1,"15837":-1,"15838":-1,"15839":2686,"15840":-1,"15841":-1,"15842":-1,"15843":-1,"15844":-1,"15845":2686,"15846":-1,"15847":-1,"15848":-1,"15849":-1,"15850":-1,"15851":-1,"15852":-1,"15853":-1,"15854":-1,"15855":-1,"15856":-1,"15857":2685,"15858":-1,"15859":-1,"15860":-1,"15861":-1,"15862":-1,"15863":-1,"15864":-1,"15865":-1,"15866":-1,"15867":-1,"15868":-1,"15869":-1,"15870":2685,"15871":-1,"15872":-1,"15873":-1,"15874":-1,"15875":-1,"15876":2687,"15877":-1,"15878":-1,"15879":0,"15880":-1,"15881":0,"15882":0,"15883":2683,"15884":-1,"15885":-1,"15886":2682,"15887":-1,"15888":-1,"15889":2685,"15890":-1,"15891":-1,"15892":-1,"15893":2681,"15894":-1,"15895":-1,"15896":-1,"15897":-1,"15898":-1,"15899":-1,"15900":2683,"15901":-1,"15902":-1,"15903":-1,"15904":-1,"15905":-1,"15906":0,"15907":2687,"15908":-1,"15909":-1,"15910":-1,"15911":-1,"15912":-1,"15913":-1,"15914":-1,"15915":-1,"15916":-1,"15917":2686,"15918":-1,"15919":-1,"15920":2687,"15921":-1,"15922":2683,"15923":-1,"15924":-1,"15925":-1,"15926":-1,"15927":0,"15928":-1,"15929":-1,"15930":-1,"15931":-1,"15932":-1,"15933":-1,"15934":-1,"15935":2685,"15936":-1,"15937":-1,"15938":-1,"15939":-1,"15940":-1,"15941":2685,"15942":-1,"15943":-1,"15944":-1,"15945":-1,"15946":-1,"15947":-1,"15948":-1,"15949":-1,"15950":-1,"15951":-1,"15952":-1,"15953":-1,"15954":-1,"15955":-1,"15956":-1,"15957":0,"15958":-1,"15959":-1,"15960":2686,"15961":-1,"15962":2684,"15963":-1,"15964":-1,"15965":-1,"15966":-1,"15967":-1,"15968":-1,"15969":-1,"15970":-1,"15971":-1,"15972":-1,"15973":-1,"15974":-1,"15975":-1,"15976":-1,"15977":-1,"15978":-1,"15979":-1,"15980":-1,"15981":-1,"15982":-1,"15983":-1,"15984":-1,"15985":-1,"15986":-1,"15987":2685,"15988":-1,"15989":2682,"15990":-1,"15991":-1,"15992":2685,"15993":-1,"15994":2684,"15995":-1,"15996":-1,"15997":2687,"15998":-1,"15999":0,"16000":-1,"16001":2682,"16002":-1,"16003":-1,"16004":-1,"16005":-1,"16006":2687,"16007":-1,"16008":-1,"16009":-1,"16010":-1,"16011":-1,"16012":-1,"16013":-1,"16014":-1,"16015":-1,"16016":-1,"16017":-1,"16018":-1,"16019":-1,"16020":-1,"16021":-1,"16022":-1,"16023":-1,"16024":-1,"16025":-1,"16026":-1,"16027":-1,"16028":-1,"16029":-1,"16030":-1,"16031":-1,"16032":-1,"16033":-1,"16034":0,"16035":-1,"16036":-1,"16037":-1,"16038":-1,"16039":-1,"16040":-1,"16041":2682,"16042":2683,"16043":-1,"16044":-1,"16045":-1,"16046":-1,"16047":-1,"16048":-1,"16049":-1,"16050":-1,"16051":-1,"16052":-1,"16053":-1,"16054":-1,"16055":-1,"16056":-1,"16057":-1,"16058":-1,"16059":-1,"16060":-1,"16061":-1,"16062":-1,"16063":-1,"16064":-1,"16065":-1,"16066":-1,"16067":-1,"16068":-1,"16069":-1,"16070":-1,"16071":-1,"16072":-1,"16073":-1,"16074":-1,"16075":-1,"16076":-1,"16077":-1,"16078":-1,"16079":-1,"16080":-1,"16081":0,"16082":-1,"16083":-1,"16084":-1,"16085":-1,"16086":-1,"16087":-1,"16088":2683,"16089":-1,"16090":-1,"16091":-1,"16092":-1,"16093":-1,"16094":-1,"16095":-1,"16096":-1,"16097":-1,"16098":-1,"16099":-1,"16100":-1,"16101":-1,"16102":-1,"16103":-1,"16104":-1,"16105":-1,"16106":-1,"16107":-1,"16108":-1,"16109":-1,"16110":-1,"16111":-1,"16112":-1,"16113":-1,"16114":-1,"16115":-1,"16116":-1,"16117":-1,"16118":2686,"16119":-1,"16120":-1,"16121":-1,"16122":-1,"16123":-1,"16124":-1,"16125":-1,"16126":-1,"16127":2685,"16128":-1,"16129":-1,"16130":-1,"16131":-1,"16132":-1,"16133":2682,"16134":-1,"16135":-1,"16136":-1,"16137":-1,"16138":-1,"16139":-1,"16140":2681,"16141":-1,"16142":-1,"16143":-1,"16144":-1,"16145":-1,"16146":-1,"16147":-1,"16148":-1,"16149":-1,"16150":-1,"16151":-1,"16152":-1,"16153":-1,"16154":0,"16155":2687,"16156":2683,"16157":-1,"16158":-1,"16159":-1,"16160":-1,"16161":-1,"16162":-1,"16163":-1,"16164":-1,"16165":2683,"16166":-1,"16167":-1,"16168":-1,"16169":-1,"16170":-1,"16171":-1,"16172":-1,"16173":-1,"16174":-1,"16175":-1,"16176":-1,"16177":2681,"16178":-1,"16179":-1,"16180":0,"16181":-1,"16182":-1,"16183":-1,"16184":-1,"16185":2683,"16186":-1,"16187":-1,"16188":-1,"16189":-1,"16190":-1,"16191":-1,"16192":-1,"16193":0,"16194":2683,"16195":-1,"16196":-1,"16197":-1,"16198":-1,"16199":-1,"16200":-1,"16201":-1,"16202":-1,"16203":-1,"16204":-1,"16205":-1,"16206":-1,"16207":-1,"16208":-1,"16209":2683,"16210":-1,"16211":-1,"16212":-1,"16213":-1,"16214":-1,"16215":-1,"16216":-1,"16217":-1,"16218":-1,"16219":-1,"16220":-1,"16221":-1,"16222":0,"16223":-1,"16224":-1,"16225":-1,"16226":-1,"16227":2684,"16228":-1,"16229":-1,"16230":-1,"16231":-1,"16232":2683,"16233":-1,"16234":-1,"16235":-1,"16236":2683,"16237":-1,"16238":-1,"16239":-1,"16240":-1,"16241":-1,"16242":2685,"16243":-1,"16244":-1,"16245":-1,"16246":-1,"16247":2684,"16248":2685,"16249":-1,"16250":2682,"16251":2681,"16252":-1,"16253":-1,"16254":0,"16255":2685,"16256":2686,"16257":-1,"16258":-1,"16259":-1,"16260":-1,"16261":-1,"16262":-1,"16263":-1,"16264":2687,"16265":-1,"16266":-1,"16267":2683,"16268":-1,"16269":-1,"16270":-1,"16271":-1,"16272":-1,"16273":-1,"16274":-1,"16275":-1,"16276":-1,"16277":-1,"16278":-1,"16279":-1,"16280":-1,"16281":-1,"16282":-1,"16283":-1,"16284":2683,"16285":-1,"16286":0,"16287":-1,"16288":2686,"16289":2683,"16290":2682,"16291":-1,"16292":-1,"16293":-1,"16294":-1,"16295":-1,"16296":-1,"16297":-1,"16298":-1,"16299":-1,"16300":-1,"16301":-1,"16302":-1,"16303":-1,"16304":-1,"16305":-1,"16306":-1,"16307":-1,"16308":-1,"16309":-1,"16310":-1,"16311":-1,"16312":-1,"16313":-1,"16314":-1,"16315":-1,"16316":-1,"16317":-1,"16318":-1,"16319":-1,"16320":-1,"16321":-1,"16322":-1,"16323":0,"16324":-1,"16325":-1,"16326":-1,"16327":0,"16328":-1,"16329":-1,"16330":-1,"16331":-1,"16332":-1,"16333":-1,"16334":-1,"16335":-1,"16336":-1,"16337":-1,"16338":-1,"16339":-1,"16340":-1,"16341":-1,"16342":-1,"16343":-1,"16344":2682,"16345":2681,"16346":2682,"16347":-1,"16348":-1,"16349":-1,"16350":-1,"16351":-1,"16352":-1,"16353":-1,"16354":-1,"16355":-1,"16356":-1,"16357":-1,"16358":-1,"16359":-1,"16360":-1,"16361":2682,"16362":-1,"16363":-1,"16364":-1,"16365":-1,"16366":-1,"16367":-1,"16368":2686,"16369":-1,"16370":-1,"16371":2684,"16372":-1,"16373":-1,"16374":-1,"16375":-1,"16376":-1,"16377":0,"16378":-1,"16379":-1,"16380":2681,"16381":2683,"16382":-1,"16383":-1,"16384":-1,"16385":-1,"16386":-1,"16387":-1,"16388":2683,"16389":-1,"16390":-1,"16391":0,"16392":-1,"16393":-1,"16394":-1,"16395":-1,"16396":2686,"16397":-1,"16398":-1,"16399":-1,"16400":-1,"16401":-1,"16402":-1,"16403":-1,"16404":-1,"16405":-1,"16406":2684,"16407":-1,"16408":-1,"16409":-1,"16410":-1,"16411":-1,"16412":-1,"16413":-1,"16414":-1,"16415":2685,"16416":2687,"16417":-1,"16418":2684,"16419":-1,"16420":2684,"16421":0,"16422":-1,"16423":-1,"16424":-1,"16425":-1,"16426":-1,"16427":-1,"16428":2683,"16429":-1,"16430":-1,"16431":-1,"16432":-1,"16433":-1,"16434":-1,"16435":0,"16436":2684,"16437":-1,"16438":-1,"16439":-1,"16440":0,"16441":-1,"16442":2681,"16443":-1,"16444":-1,"16445":-1,"16446":-1,"16447":-1,"16448":-1,"16449":-1,"16450":-1,"16451":-1,"16452":-1,"16453":-1,"16454":-1,"16455":-1,"16456":-1,"16457":-1,"16458":-1,"16459":-1,"16460":-1,"16461":-1,"16462":-1,"16463":-1,"16464":-1,"16465":-1,"16466":-1,"16467":-1,"16468":-1,"16469":-1,"16470":-1,"16471":-1,"16472":-1,"16473":-1,"16474":-1,"16475":2682,"16476":-1,"16477":-1,"16478":-1,"16479":-1,"16480":-1,"16481":-1,"16482":-1,"16483":-1,"16484":-1,"16485":-1,"16486":2687,"16487":2683,"16488":-1,"16489":-1,"16490":-1,"16491":-1,"16492":2685,"16493":-1,"16494":-1,"16495":2682,"16496":-1,"16497":2686,"16498":-1,"16499":-1,"16500":-1,"16501":-1,"16502":-1,"16503":-1,"16504":-1,"16505":-1,"16506":-1,"16507":-1,"16508":-1,"16509":-1,"16510":-1,"16511":-1,"16512":-1,"16513":-1,"16514":-1,"16515":-1,"16516":2684,"16517":-1,"16518":-1,"16519":-1,"16520":-1,"16521":-1,"16522":-1,"16523":-1,"16524":-1,"16525":-1,"16526":-1,"16527":0,"16528":-1,"16529":-1,"16530":-1,"16531":-1,"16532":-1,"16533":-1,"16534":2684,"16535":-1,"16536":-1,"16537":2683,"16538":-1,"16539":-1,"16540":-1,"16541":-1,"16542":-1,"16543":-1,"16544":-1,"16545":-1,"16546":2683,"16547":-1,"16548":-1,"16549":-1,"16550":-1,"16551":2682,"16552":-1,"16553":-1,"16554":-1,"16555":-1,"16556":-1,"16557":-1,"16558":-1,"16559":-1,"16560":-1,"16561":-1,"16562":-1,"16563":2687,"16564":-1,"16565":-1,"16566":-1,"16567":-1,"16568":-1,"16569":0,"16570":-1,"16571":-1,"16572":2682,"16573":0,"16574":-1,"16575":2685,"16576":-1,"16577":-1,"16578":-1,"16579":-1,"16580":-1,"16581":-1,"16582":-1,"16583":-1,"16584":-1,"16585":-1,"16586":-1,"16587":-1,"16588":-1,"16589":-1,"16590":-1,"16591":-1,"16592":-1,"16593":-1,"16594":-1,"16595":-1,"16596":-1,"16597":-1,"16598":-1,"16599":-1,"16600":2686,"16601":-1,"16602":-1,"16603":-1,"16604":-1,"16605":-1,"16606":-1,"16607":-1,"16608":-1,"16609":-1,"16610":-1,"16611":-1,"16612":-1,"16613":-1,"16614":-1,"16615":-1,"16616":-1,"16617":-1,"16618":-1,"16619":2684,"16620":-1,"16621":-1,"16622":2683,"16623":-1,"16624":-1,"16625":2683,"16626":2682,"16627":-1,"16628":-1,"16629":-1,"16630":-1,"16631":-1,"16632":2686,"16633":-1,"16634":-1,"16635":-1,"16636":-1,"16637":-1,"16638":-1,"16639":-1,"16640":-1,"16641":-1,"16642":-1,"16643":2685,"16644":2686,"16645":-1,"16646":-1,"16647":-1,"16648":2681,"16649":-1,"16650":-1,"16651":-1,"16652":-1,"16653":2686,"16654":-1,"16655":-1,"16656":-1,"16657":-1,"16658":2682,"16659":-1,"16660":-1,"16661":0,"16662":-1,"16663":-1,"16664":-1,"16665":-1,"16666":-1,"16667":-1,"16668":-1,"16669":-1,"16670":-1,"16671":-1,"16672":-1,"16673":2687,"16674":-1,"16675":-1,"16676":-1,"16677":-1,"16678":2687,"16679":0,"16680":-1,"16681":-1,"16682":-1,"16683":-1,"16684":-1,"16685":-1,"16686":-1,"16687":-1,"16688":-1,"16689":-1,"16690":2687,"16691":-1,"16692":2685,"16693":-1,"16694":-1,"16695":-1,"16696":0,"16697":-1,"16698":-1,"16699":-1,"16700":-1,"16701":-1,"16702":-1,"16703":0,"16704":-1,"16705":-1,"16706":-1,"16707":-1,"16708":-1,"16709":-1,"16710":-1,"16711":-1,"16712":-1,"16713":-1,"16714":-1,"16715":-1,"16716":-1,"16717":-1,"16718":-1,"16719":-1,"16720":2681,"16721":-1,"16722":-1,"16723":-1,"16724":-1,"16725":-1,"16726":-1,"16727":-1,"16728":-1,"16729":-1,"16730":-1,"16731":-1,"16732":-1,"16733":2686,"16734":-1,"16735":2682,"16736":2685,"16737":-1,"16738":-1,"16739":-1,"16740":-1,"16741":-1,"16742":-1,"16743":-1,"16744":-1,"16745":2681,"16746":-1,"16747":-1,"16748":-1,"16749":-1,"16750":-1,"16751":-1,"16752":-1,"16753":-1,"16754":-1,"16755":0,"16756":-1,"16757":-1,"16758":-1,"16759":-1,"16760":-1,"16761":-1,"16762":-1,"16763":2683,"16764":-1,"16765":-1,"16766":-1,"16767":-1,"16768":-1,"16769":-1,"16770":-1,"16771":-1,"16772":-1,"16773":-1,"16774":-1,"16775":-1,"16776":-1,"16777":-1,"16778":2685,"16779":-1,"16780":-1,"16781":-1,"16782":-1,"16783":-1,"16784":-1,"16785":-1,"16786":-1,"16787":-1,"16788":-1,"16789":-1,"16790":-1,"16791":-1,"16792":-1,"16793":-1,"16794":-1,"16795":-1,"16796":-1,"16797":0,"16798":2683,"16799":-1,"16800":-1,"16801":2683,"16802":-1,"16803":-1,"16804":-1,"16805":-1,"16806":-1,"16807":2681,"16808":-1,"16809":-1,"16810":-1,"16811":-1,"16812":2686,"16813":-1,"16814":-1,"16815":-1,"16816":2687,"16817":-1,"16818":2685,"16819":-1,"16820":0,"16821":-1,"16822":-1,"16823":-1,"16824":-1,"16825":2685,"16826":-1,"16827":-1,"16828":-1,"16829":-1,"16830":0,"16831":-1,"16832":-1,"16833":-1,"16834":-1,"16835":2684,"16836":-1,"16837":-1,"16838":2681,"16839":-1,"16840":-1,"16841":-1,"16842":-1,"16843":-1,"16844":-1,"16845":0,"16846":-1,"16847":-1,"16848":-1,"16849":-1,"16850":-1,"16851":-1,"16852":-1,"16853":-1,"16854":-1,"16855":-1,"16856":-1,"16857":-1,"16858":-1,"16859":0,"16860":2687,"16861":-1,"16862":-1,"16863":-1,"16864":-1,"16865":-1,"16866":-1,"16867":-1,"16868":2684,"16869":-1,"16870":-1,"16871":-1,"16872":0,"16873":-1,"16874":-1,"16875":-1,"16876":-1,"16877":-1,"16878":-1,"16879":-1,"16880":-1,"16881":-1,"16882":-1,"16883":-1,"16884":-1,"16885":-1,"16886":-1,"16887":-1,"16888":-1,"16889":-1,"16890":-1,"16891":-1,"16892":-1,"16893":-1,"16894":-1,"16895":2682,"16896":-1,"16897":-1,"16898":-1,"16899":-1,"16900":-1,"16901":2686,"16902":-1,"16903":-1,"16904":-1,"16905":2683,"16906":-1,"16907":-1,"16908":2684,"16909":-1,"16910":-1,"16911":-1,"16912":-1,"16913":-1,"16914":-1,"16915":-1,"16916":-1,"16917":-1,"16918":-1,"16919":-1,"16920":2686,"16921":-1,"16922":-1,"16923":-1,"16924":-1,"16925":-1,"16926":-1,"16927":-1,"16928":-1,"16929":-1,"16930":-1,"16931":-1,"16932":2684,"16933":-1,"16934":-1,"16935":-1,"16936":-1,"16937":-1,"16938":-1,"16939":-1,"16940":-1,"16941":-1,"16942":2684,"16943":-1,"16944":-1,"16945":-1,"16946":-1,"16947":-1,"16948":-1,"16949":-1,"16950":-1,"16951":-1,"16952":-1,"16953":-1,"16954":-1,"16955":-1,"16956":-1,"16957":-1,"16958":-1,"16959":-1,"16960":-1,"16961":-1,"16962":-1,"16963":-1,"16964":-1,"16965":-1,"16966":-1,"16967":-1,"16968":2681,"16969":2686,"16970":-1,"16971":-1,"16972":-1,"16973":-1,"16974":-1,"16975":-1,"16976":-1,"16977":0,"16978":-1,"16979":-1,"16980":-1,"16981":-1,"16982":-1,"16983":-1,"16984":-1,"16985":-1,"16986":-1,"16987":-1,"16988":-1,"16989":2684,"16990":-1,"16991":2685,"16992":-1,"16993":-1,"16994":-1,"16995":-1,"16996":-1,"16997":-1,"16998":0,"16999":-1,"17000":-1,"17001":-1,"17002":-1,"17003":-1,"17004":-1,"17005":-1,"17006":-1,"17007":-1,"17008":-1,"17009":-1,"17010":-1,"17011":-1,"17012":-1,"17013":-1,"17014":-1,"17015":-1,"17016":2684,"17017":-1,"17018":-1,"17019":-1,"17020":2681,"17021":-1,"17022":-1,"17023":-1,"17024":-1,"17025":-1,"17026":-1,"17027":2687,"17028":2681,"17029":-1,"17030":-1,"17031":-1,"17032":-1,"17033":-1,"17034":-1,"17035":-1,"17036":2682,"17037":2683,"17038":-1,"17039":-1,"17040":-1,"17041":-1,"17042":-1,"17043":-1,"17044":-1,"17045":-1,"17046":-1,"17047":-1,"17048":-1,"17049":-1,"17050":-1,"17051":-1,"17052":-1,"17053":-1,"17054":-1,"17055":-1,"17056":-1,"17057":-1,"17058":-1,"17059":-1,"17060":-1,"17061":-1,"17062":0,"17063":-1,"17064":-1,"17065":-1,"17066":-1,"17067":-1,"17068":-1,"17069":2683,"17070":-1,"17071":0,"17072":-1,"17073":0,"17074":-1,"17075":-1,"17076":-1,"17077":-1,"17078":-1,"17079":-1,"17080":2682,"17081":-1,"17082":-1,"17083":-1,"17084":-1,"17085":-1,"17086":-1,"17087":-1,"17088":-1,"17089":-1,"17090":-1,"17091":0,"17092":-1,"17093":-1,"17094":-1,"17095":-1,"17096":-1,"17097":-1,"17098":-1,"17099":2682,"17100":-1,"17101":-1,"17102":-1,"17103":2686,"17104":-1,"17105":-1,"17106":-1,"17107":-1,"17108":-1,"17109":-1,"17110":2683,"17111":-1,"17112":-1,"17113":-1,"17114":-1,"17115":-1,"17116":-1,"17117":-1,"17118":-1,"17119":-1,"17120":2685,"17121":-1,"17122":-1,"17123":-1,"17124":-1,"17125":-1,"17126":-1,"17127":-1,"17128":-1,"17129":-1,"17130":-1,"17131":-1,"17132":0,"17133":2683,"17134":-1,"17135":-1,"17136":-1,"17137":-1,"17138":-1,"17139":-1,"17140":-1,"17141":-1,"17142":-1,"17143":-1,"17144":2684,"17145":-1,"17146":-1,"17147":2687,"17148":-1,"17149":-1,"17150":-1,"17151":-1,"17152":-1,"17153":-1,"17154":-1,"17155":-1,"17156":-1,"17157":-1,"17158":2684,"17159":-1,"17160":-1,"17161":-1,"17162":-1,"17163":-1,"17164":-1,"17165":-1,"17166":-1,"17167":-1,"17168":-1,"17169":-1,"17170":-1,"17171":-1,"17172":-1,"17173":-1,"17174":-1,"17175":2684,"17176":2686,"17177":-1,"17178":-1,"17179":-1,"17180":-1,"17181":-1,"17182":-1,"17183":-1,"17184":-1,"17185":-1,"17186":2682,"17187":-1,"17188":-1,"17189":-1,"17190":-1,"17191":2686,"17192":-1,"17193":-1,"17194":-1,"17195":-1,"17196":-1,"17197":-1,"17198":-1,"17199":-1,"17200":-1,"17201":-1,"17202":-1,"17203":-1,"17204":0,"17205":-1,"17206":-1,"17207":-1,"17208":-1,"17209":-1,"17210":-1,"17211":-1,"17212":-1,"17213":-1,"17214":-1,"17215":-1,"17216":-1,"17217":-1,"17218":-1,"17219":-1,"17220":-1,"17221":-1,"17222":-1,"17223":-1,"17224":-1,"17225":-1,"17226":2683,"17227":-1,"17228":-1,"17229":2684,"17230":-1,"17231":-1,"17232":-1,"17233":-1,"17234":-1,"17235":-1,"17236":-1,"17237":-1,"17238":-1,"17239":-1,"17240":2684,"17241":-1,"17242":2683,"17243":2684,"17244":-1,"17245":-1,"17246":0,"17247":-1,"17248":2686,"17249":-1,"17250":-1,"17251":-1,"17252":-1,"17253":-1,"17254":-1,"17255":-1,"17256":-1,"17257":-1,"17258":-1,"17259":2687,"17260":2686,"17261":2684,"17262":-1,"17263":-1,"17264":-1,"17265":-1,"17266":-1,"17267":-1,"17268":2681,"17269":-1,"17270":-1,"17271":-1,"17272":-1,"17273":-1,"17274":-1,"17275":-1,"17276":-1,"17277":2683,"17278":-1,"17279":-1,"17280":-1,"17281":-1,"17282":-1,"17283":-1,"17284":-1,"17285":-1,"17286":-1,"17287":-1,"17288":-1,"17289":-1,"17290":-1,"17291":2686,"17292":-1,"17293":-1,"17294":-1,"17295":-1,"17296":-1,"17297":2687,"17298":-1,"17299":2686,"17300":-1,"17301":-1,"17302":-1,"17303":-1,"17304":-1,"17305":-1,"17306":-1,"17307":-1,"17308":-1,"17309":2685,"17310":-1,"17311":-1,"17312":2687,"17313":-1,"17314":-1,"17315":-1,"17316":-1,"17317":-1,"17318":-1,"17319":-1,"17320":-1,"17321":-1,"17322":-1,"17323":-1,"17324":-1,"17325":-1,"17326":-1,"17327":-1,"17328":-1,"17329":2683,"17330":-1,"17331":-1,"17332":-1,"17333":-1,"17334":-1,"17335":-1,"17336":-1,"17337":-1,"17338":-1,"17339":2683,"17340":-1,"17341":-1,"17342":-1,"17343":-1,"17344":-1,"17345":2685,"17346":-1,"17347":-1,"17348":-1,"17349":-1,"17350":2684,"17351":-1,"17352":2682,"17353":-1,"17354":-1,"17355":-1,"17356":2684,"17357":-1,"17358":-1,"17359":2682,"17360":-1,"17361":2683,"17362":-1,"17363":2684,"17364":-1,"17365":-1,"17366":-1,"17367":-1,"17368":2686,"17369":-1,"17370":-1,"17371":-1,"17372":-1,"17373":-1,"17374":-1,"17375":2684,"17376":-1,"17377":-1,"17378":-1,"17379":-1,"17380":2686,"17381":-1,"17382":2683,"17383":-1,"17384":-1,"17385":2682,"17386":-1,"17387":-1,"17388":0,"17389":-1,"17390":-1,"17391":2681,"17392":-1,"17393":-1,"17394":-1,"17395":-1,"17396":-1,"17397":-1,"17398":-1,"17399":2686,"17400":-1,"17401":-1,"17402":-1,"17403":-1,"17404":-1,"17405":-1,"17406":-1,"17407":-1,"17408":-1,"17409":0,"17410":-1,"17411":-1,"17412":-1,"17413":-1,"17414":-1,"17415":2682,"17416":-1,"17417":2687,"17418":-1,"17419":-1,"17420":-1,"17421":-1,"17422":-1,"17423":-1,"17424":-1,"17425":-1,"17426":-1,"17427":-1,"17428":-1,"17429":-1,"17430":2684,"17431":-1,"17432":2687,"17433":-1,"17434":-1,"17435":-1,"17436":-1,"17437":-1,"17438":-1,"17439":-1,"17440":-1,"17441":-1,"17442":0,"17443":-1,"17444":-1,"17445":-1,"17446":-1,"17447":-1,"17448":-1,"17449":-1,"17450":2683,"17451":-1,"17452":2687,"17453":2682,"17454":0,"17455":-1,"17456":-1,"17457":-1,"17458":0,"17459":2682,"17460":-1,"17461":-1,"17462":-1,"17463":-1,"17464":2684,"17465":2685,"17466":-1,"17467":-1,"17468":-1,"17469":2684,"17470":-1,"17471":-1,"17472":-1,"17473":-1,"17474":-1,"17475":-1,"17476":0,"17477":2682,"17478":2683,"17479":-1,"17480":0,"17481":2683,"17482":-1,"17483":-1,"17484":-1,"17485":-1,"17486":-1,"17487":-1,"17488":-1,"17489":2682,"17490":-1,"17491":-1,"17492":0,"17493":-1,"17494":-1,"17495":-1,"17496":-1,"17497":-1,"17498":2682,"17499":-1,"17500":-1,"17501":-1,"17502":-1,"17503":-1,"17504":-1,"17505":-1,"17506":2683,"17507":2683,"17508":-1,"17509":-1,"17510":-1,"17511":2683,"17512":2684,"17513":-1,"17514":-1,"17515":-1,"17516":-1,"17517":2687,"17518":-1,"17519":-1,"17520":-1,"17521":2684,"17522":-1,"17523":-1,"17524":-1,"17525":-1,"17526":-1,"17527":-1,"17528":-1,"17529":-1,"17530":-1,"17531":-1,"17532":-1,"17533":-1,"17534":-1,"17535":-1,"17536":-1,"17537":-1,"17538":-1,"17539":-1,"17540":2682,"17541":-1,"17542":-1,"17543":2687,"17544":-1,"17545":-1,"17546":-1,"17547":-1,"17548":2684,"17549":-1,"17550":-1,"17551":-1,"17552":-1,"17553":-1,"17554":-1,"17555":-1,"17556":-1,"17557":-1,"17558":-1,"17559":-1,"17560":-1,"17561":-1,"17562":-1,"17563":-1,"17564":-1,"17565":-1,"17566":-1,"17567":-1,"17568":-1,"17569":2682,"17570":-1,"17571":-1,"17572":-1,"17573":-1,"17574":-1,"17575":-1,"17576":-1,"17577":-1,"17578":-1,"17579":-1,"17580":-1,"17581":-1,"17582":2681,"17583":-1,"17584":-1,"17585":-1,"17586":-1,"17587":-1,"17588":-1,"17589":-1,"17590":-1,"17591":-1,"17592":-1,"17593":-1,"17594":-1,"17595":-1,"17596":2683,"17597":-1,"17598":-1,"17599":-1,"17600":2686,"17601":-1,"17602":-1,"17603":-1,"17604":-1,"17605":-1,"17606":-1,"17607":-1,"17608":-1,"17609":-1,"17610":2686,"17611":-1,"17612":-1,"17613":-1,"17614":-1,"17615":-1,"17616":-1,"17617":-1,"17618":-1,"17619":-1,"17620":2685,"17621":-1,"17622":-1,"17623":-1,"17624":2683,"17625":-1,"17626":-1,"17627":-1,"17628":-1,"17629":-1,"17630":-1,"17631":2686,"17632":2686,"17633":2684,"17634":-1,"17635":-1,"17636":2682,"17637":-1,"17638":2684,"17639":2684,"17640":2686,"17641":-1,"17642":-1,"17643":-1,"17644":2686,"17645":-1,"17646":-1,"17647":-1,"17648":-1,"17649":-1,"17650":-1,"17651":-1,"17652":-1,"17653":-1,"17654":-1,"17655":2685,"17656":-1,"17657":-1,"17658":-1,"17659":-1,"17660":2685,"17661":2681,"17662":-1,"17663":-1,"17664":-1,"17665":-1,"17666":-1,"17667":-1,"17668":-1,"17669":-1,"17670":2684,"17671":-1,"17672":2682,"17673":2682,"17674":2683,"17675":-1,"17676":-1,"17677":-1,"17678":-1,"17679":-1,"17680":-1,"17681":2685,"17682":-1,"17683":-1,"17684":-1,"17685":-1,"17686":-1,"17687":-1,"17688":-1,"17689":-1,"17690":-1,"17691":-1,"17692":-1,"17693":-1,"17694":-1,"17695":-1,"17696":-1,"17697":-1,"17698":-1,"17699":-1,"17700":-1,"17701":-1,"17702":-1,"17703":-1,"17704":-1,"17705":-1,"17706":-1,"17707":-1,"17708":-1,"17709":-1,"17710":2686,"17711":-1,"17712":-1,"17713":-1,"17714":-1,"17715":-1,"17716":-1,"17717":2686,"17718":-1,"17719":2685,"17720":-1,"17721":-1,"17722":2683,"17723":-1,"17724":-1,"17725":-1,"17726":-1,"17727":-1,"17728":-1,"17729":-1,"17730":-1,"17731":-1,"17732":2682,"17733":2684,"17734":-1,"17735":-1,"17736":2683,"17737":-1,"17738":-1,"17739":-1,"17740":-1,"17741":0,"17742":-1,"17743":-1,"17744":-1,"17745":-1,"17746":-1,"17747":2682,"17748":-1,"17749":-1,"17750":-1,"17751":2683,"17752":-1,"17753":-1,"17754":-1,"17755":-1,"17756":-1,"17757":0,"17758":2683,"17759":2684,"17760":-1,"17761":-1,"17762":-1,"17763":-1,"17764":0,"17765":-1,"17766":-1,"17767":-1,"17768":2682,"17769":-1,"17770":-1,"17771":-1,"17772":2682,"17773":-1,"17774":-1,"17775":-1,"17776":-1,"17777":-1,"17778":2682,"17779":-1,"17780":-1,"17781":-1,"17782":-1,"17783":-1,"17784":-1,"17785":-1,"17786":-1,"17787":-1,"17788":-1,"17789":-1,"17790":-1,"17791":2684,"17792":-1,"17793":2686,"17794":-1,"17795":-1,"17796":-1,"17797":-1,"17798":-1,"17799":-1,"17800":-1,"17801":-1,"17802":-1,"17803":-1,"17804":-1,"17805":0,"17806":-1,"17807":-1,"17808":-1,"17809":-1,"17810":-1,"17811":-1,"17812":-1,"17813":-1,"17814":-1,"17815":-1,"17816":0,"17817":-1,"17818":-1,"17819":-1,"17820":-1,"17821":-1,"17822":-1,"17823":0,"17824":-1,"17825":-1,"17826":-1,"17827":2682,"17828":-1,"17829":-1,"17830":-1,"17831":-1,"17832":-1,"17833":0,"17834":2685,"17835":-1,"17836":-1,"17837":2682,"17838":-1,"17839":-1,"17840":2681,"17841":-1,"17842":0,"17843":2684,"17844":-1,"17845":-1,"17846":-1,"17847":-1,"17848":-1,"17849":-1,"17850":2681,"17851":-1,"17852":-1,"17853":-1,"17854":-1,"17855":-1,"17856":-1,"17857":-1,"17858":-1,"17859":-1,"17860":2682,"17861":-1,"17862":-1,"17863":-1,"17864":-1,"17865":-1,"17866":-1,"17867":-1,"17868":-1,"17869":-1,"17870":-1,"17871":-1,"17872":-1,"17873":-1,"17874":-1,"17875":-1,"17876":-1,"17877":-1,"17878":-1,"17879":-1,"17880":-1,"17881":-1,"17882":-1,"17883":-1,"17884":-1,"17885":-1,"17886":-1,"17887":-1,"17888":-1,"17889":-1,"17890":-1,"17891":-1,"17892":-1,"17893":-1,"17894":2683,"17895":-1,"17896":2682,"17897":-1,"17898":0,"17899":-1,"17900":0,"17901":2687,"17902":-1,"17903":-1,"17904":-1,"17905":-1,"17906":-1,"17907":-1,"17908":-1,"17909":-1,"17910":-1,"17911":-1,"17912":-1,"17913":-1,"17914":2684,"17915":-1,"17916":2682,"17917":-1,"17918":-1,"17919":0,"17920":-1,"17921":-1,"17922":-1,"17923":-1,"17924":-1,"17925":2682,"17926":-1,"17927":-1,"17928":0,"17929":-1,"17930":2682,"17931":-1,"17932":-1,"17933":-1,"17934":-1,"17935":-1,"17936":-1,"17937":-1,"17938":-1,"17939":-1,"17940":-1,"17941":-1,"17942":2686,"17943":2683,"17944":-1,"17945":-1,"17946":-1,"17947":-1,"17948":-1,"17949":-1,"17950":-1,"17951":-1,"17952":-1,"17953":2684,"17954":-1,"17955":-1,"17956":-1,"17957":-1,"17958":-1,"17959":-1,"17960":2681,"17961":-1,"17962":-1,"17963":-1,"17964":-1,"17965":0,"17966":-1,"17967":-1,"17968":-1,"17969":-1,"17970":-1,"17971":-1,"17972":-1,"17973":-1,"17974":-1,"17975":-1,"17976":-1,"17977":-1,"17978":-1,"17979":-1,"17980":-1,"17981":-1,"17982":-1,"17983":2685,"17984":-1,"17985":-1,"17986":-1,"17987":-1,"17988":-1,"17989":-1,"17990":-1,"17991":-1,"17992":-1,"17993":-1,"17994":-1,"17995":-1,"17996":-1,"17997":-1,"17998":-1,"17999":-1,"18000":-1,"18001":0,"18002":-1,"18003":-1,"18004":-1,"18005":-1,"18006":-1,"18007":-1,"18008":-1,"18009":-1,"18010":-1,"18011":-1,"18012":-1,"18013":-1,"18014":0,"18015":-1,"18016":-1,"18017":-1,"18018":-1,"18019":-1,"18020":-1,"18021":2683,"18022":0,"18023":-1,"18024":-1,"18025":-1,"18026":-1,"18027":-1,"18028":-1,"18029":-1,"18030":2683,"18031":-1,"18032":-1,"18033":-1,"18034":-1,"18035":-1,"18036":-1,"18037":-1,"18038":-1,"18039":-1,"18040":-1,"18041":-1,"18042":-1,"18043":-1,"18044":-1,"18045":2683,"18046":-1,"18047":2683,"18048":-1,"18049":-1,"18050":-1,"18051":0,"18052":-1,"18053":-1,"18054":-1,"18055":-1,"18056":-1,"18057":-1,"18058":-1,"18059":-1,"18060":-1,"18061":-1,"18062":-1,"18063":-1,"18064":-1,"18065":-1,"18066":-1,"18067":-1,"18068":2686,"18069":-1,"18070":2684,"18071":-1,"18072":-1,"18073":-1,"18074":-1,"18075":-1,"18076":-1,"18077":-1,"18078":-1,"18079":2681,"18080":-1,"18081":-1,"18082":2683,"18083":-1,"18084":-1,"18085":-1,"18086":-1,"18087":-1,"18088":-1,"18089":-1,"18090":-1,"18091":-1,"18092":-1,"18093":-1,"18094":-1,"18095":-1,"18096":-1,"18097":2686,"18098":-1,"18099":-1,"18100":-1,"18101":0,"18102":-1,"18103":2686,"18104":-1,"18105":-1,"18106":-1,"18107":-1,"18108":-1,"18109":-1,"18110":-1,"18111":-1,"18112":-1,"18113":2684,"18114":-1,"18115":2683,"18116":-1,"18117":-1,"18118":-1,"18119":-1,"18120":-1,"18121":-1,"18122":-1,"18123":-1,"18124":-1,"18125":-1,"18126":-1,"18127":-1,"18128":-1,"18129":-1,"18130":-1,"18131":-1,"18132":-1,"18133":2682,"18134":-1,"18135":-1,"18136":-1,"18137":-1,"18138":-1,"18139":-1,"18140":-1,"18141":-1,"18142":-1,"18143":-1,"18144":-1,"18145":-1,"18146":-1,"18147":-1,"18148":-1,"18149":-1,"18150":-1,"18151":-1,"18152":0,"18153":-1,"18154":-1,"18155":-1,"18156":-1,"18157":-1,"18158":-1,"18159":2684,"18160":2683,"18161":-1,"18162":-1,"18163":-1,"18164":-1,"18165":-1,"18166":-1,"18167":-1,"18168":-1,"18169":-1,"18170":-1,"18171":-1,"18172":-1,"18173":-1,"18174":-1,"18175":2685,"18176":-1,"18177":-1,"18178":-1,"18179":-1,"18180":2684,"18181":-1,"18182":-1,"18183":-1,"18184":-1,"18185":-1,"18186":-1,"18187":2687,"18188":-1,"18189":0,"18190":-1,"18191":-1,"18192":-1,"18193":-1,"18194":-1,"18195":-1,"18196":-1,"18197":2682,"18198":-1,"18199":-1,"18200":-1,"18201":-1,"18202":2681,"18203":-1,"18204":-1,"18205":-1,"18206":-1,"18207":-1,"18208":2686,"18209":2683,"18210":2682,"18211":-1,"18212":-1,"18213":-1,"18214":-1,"18215":-1,"18216":-1,"18217":-1,"18218":-1,"18219":-1,"18220":-1,"18221":-1,"18222":-1,"18223":2684,"18224":2685,"18225":-1,"18226":-1,"18227":-1,"18228":-1,"18229":-1,"18230":0,"18231":-1,"18232":-1,"18233":-1,"18234":-1,"18235":-1,"18236":-1,"18237":-1,"18238":0,"18239":-1,"18240":-1,"18241":-1,"18242":2683,"18243":-1,"18244":-1,"18245":2685,"18246":-1,"18247":-1,"18248":-1,"18249":-1,"18250":-1,"18251":-1,"18252":-1,"18253":-1,"18254":2682,"18255":-1,"18256":-1,"18257":-1,"18258":-1,"18259":-1,"18260":2683,"18261":-1,"18262":-1,"18263":-1,"18264":-1,"18265":-1,"18266":-1,"18267":-1,"18268":-1,"18269":-1,"18270":-1,"18271":-1,"18272":-1,"18273":2686,"18274":-1,"18275":2682,"18276":-1,"18277":-1,"18278":-1,"18279":-1,"18280":-1,"18281":-1,"18282":-1,"18283":-1,"18284":-1,"18285":-1,"18286":-1,"18287":0,"18288":-1,"18289":-1,"18290":-1,"18291":-1,"18292":-1,"18293":-1,"18294":-1,"18295":-1,"18296":-1,"18297":-1,"18298":-1,"18299":-1,"18300":-1,"18301":-1,"18302":-1,"18303":2687,"18304":-1,"18305":2685,"18306":-1,"18307":0,"18308":-1,"18309":-1,"18310":-1,"18311":-1,"18312":-1,"18313":-1,"18314":-1,"18315":-1,"18316":-1,"18317":-1,"18318":-1,"18319":-1,"18320":-1,"18321":-1,"18322":0,"18323":-1,"18324":-1,"18325":-1,"18326":-1,"18327":-1,"18328":-1,"18329":2681,"18330":-1,"18331":-1,"18332":0,"18333":-1,"18334":-1,"18335":-1,"18336":-1,"18337":-1,"18338":2685,"18339":2682,"18340":-1,"18341":-1,"18342":-1,"18343":-1,"18344":-1,"18345":-1,"18346":-1,"18347":-1,"18348":-1,"18349":-1,"18350":-1,"18351":-1,"18352":-1,"18353":2681,"18354":-1,"18355":-1,"18356":2683,"18357":-1,"18358":2684,"18359":-1,"18360":-1,"18361":-1,"18362":-1,"18363":2685,"18364":-1,"18365":0,"18366":2682,"18367":2685,"18368":-1,"18369":-1,"18370":-1,"18371":-1,"18372":-1,"18373":-1,"18374":-1,"18375":-1,"18376":2682,"18377":-1,"18378":-1,"18379":-1,"18380":-1,"18381":-1,"18382":-1,"18383":-1,"18384":-1,"18385":-1,"18386":-1,"18387":-1,"18388":-1,"18389":-1,"18390":0,"18391":-1,"18392":-1,"18393":-1,"18394":-1,"18395":-1,"18396":-1,"18397":2684,"18398":-1,"18399":-1,"18400":-1,"18401":-1,"18402":-1,"18403":-1,"18404":-1,"18405":-1,"18406":-1,"18407":2686,"18408":-1,"18409":-1,"18410":2687,"18411":0,"18412":-1,"18413":2681,"18414":-1,"18415":-1,"18416":-1,"18417":-1,"18418":-1,"18419":-1,"18420":-1,"18421":2682,"18422":-1,"18423":2686,"18424":-1,"18425":-1,"18426":-1,"18427":-1,"18428":0,"18429":-1,"18430":-1,"18431":-1,"18432":-1,"18433":-1,"18434":-1,"18435":-1,"18436":-1,"18437":-1,"18438":-1,"18439":-1,"18440":-1,"18441":-1,"18442":2687,"18443":-1,"18444":-1,"18445":-1,"18446":-1,"18447":-1,"18448":2686,"18449":0,"18450":-1,"18451":-1,"18452":-1,"18453":-1,"18454":2684,"18455":-1,"18456":-1,"18457":-1,"18458":-1,"18459":2682,"18460":2681,"18461":-1,"18462":-1,"18463":-1,"18464":-1,"18465":-1,"18466":-1,"18467":-1,"18468":-1,"18469":-1,"18470":-1,"18471":-1,"18472":-1,"18473":-1,"18474":-1,"18475":-1,"18476":-1,"18477":0,"18478":-1,"18479":2686,"18480":2686,"18481":-1,"18482":-1,"18483":-1,"18484":-1,"18485":-1,"18486":-1,"18487":-1,"18488":-1,"18489":-1,"18490":-1,"18491":-1,"18492":0,"18493":-1,"18494":-1,"18495":-1,"18496":-1,"18497":-1,"18498":-1,"18499":-1,"18500":-1,"18501":-1,"18502":-1,"18503":-1,"18504":-1,"18505":2683,"18506":-1,"18507":2685,"18508":-1,"18509":-1,"18510":-1,"18511":-1,"18512":-1,"18513":-1,"18514":-1,"18515":-1,"18516":-1,"18517":-1,"18518":-1,"18519":-1,"18520":2681,"18521":-1,"18522":-1,"18523":-1,"18524":-1,"18525":-1,"18526":-1,"18527":-1,"18528":-1,"18529":-1,"18530":-1,"18531":-1,"18532":-1,"18533":-1,"18534":-1,"18535":-1,"18536":-1,"18537":-1,"18538":-1,"18539":-1,"18540":-1,"18541":-1,"18542":-1,"18543":-1,"18544":-1,"18545":-1,"18546":-1,"18547":-1,"18548":-1,"18549":0,"18550":2686,"18551":-1,"18552":-1,"18553":-1,"18554":-1,"18555":2684,"18556":-1,"18557":-1,"18558":-1,"18559":-1,"18560":-1,"18561":-1,"18562":-1,"18563":-1,"18564":-1,"18565":-1,"18566":-1,"18567":-1,"18568":-1,"18569":-1,"18570":-1,"18571":-1,"18572":-1,"18573":-1,"18574":-1,"18575":-1,"18576":-1,"18577":-1,"18578":-1,"18579":-1,"18580":-1,"18581":-1,"18582":2685,"18583":-1,"18584":-1,"18585":-1,"18586":2686,"18587":-1,"18588":-1,"18589":-1,"18590":-1,"18591":-1,"18592":-1,"18593":-1,"18594":-1,"18595":-1,"18596":-1,"18597":-1,"18598":-1,"18599":2684,"18600":-1,"18601":-1,"18602":-1,"18603":-1,"18604":-1,"18605":2683,"18606":-1,"18607":-1,"18608":-1,"18609":-1,"18610":-1,"18611":-1,"18612":-1,"18613":-1,"18614":-1,"18615":-1,"18616":2685,"18617":-1,"18618":2684,"18619":-1,"18620":-1,"18621":-1,"18622":-1,"18623":-1,"18624":-1,"18625":-1,"18626":-1,"18627":-1,"18628":-1,"18629":2682,"18630":-1,"18631":-1,"18632":-1,"18633":-1,"18634":-1,"18635":2684,"18636":-1,"18637":-1,"18638":-1,"18639":-1,"18640":-1,"18641":0,"18642":-1,"18643":-1,"18644":-1,"18645":-1,"18646":-1,"18647":2685,"18648":-1,"18649":-1,"18650":-1,"18651":-1,"18652":-1,"18653":-1,"18654":2684,"18655":-1,"18656":-1,"18657":-1,"18658":-1,"18659":-1,"18660":-1,"18661":-1,"18662":-1,"18663":-1,"18664":-1,"18665":-1,"18666":-1,"18667":-1,"18668":-1,"18669":-1,"18670":2686,"18671":-1,"18672":2687,"18673":-1,"18674":-1,"18675":-1,"18676":-1,"18677":0,"18678":-1,"18679":-1,"18680":-1,"18681":-1,"18682":-1,"18683":-1,"18684":-1,"18685":2686,"18686":-1,"18687":-1,"18688":-1,"18689":-1,"18690":2682,"18691":-1,"18692":-1,"18693":-1,"18694":-1,"18695":-1,"18696":-1,"18697":-1,"18698":-1,"18699":-1,"18700":-1,"18701":-1,"18702":-1,"18703":-1,"18704":-1,"18705":2683,"18706":-1,"18707":-1,"18708":2683,"18709":-1,"18710":-1,"18711":-1,"18712":-1,"18713":-1,"18714":2687,"18715":-1,"18716":-1,"18717":-1,"18718":-1,"18719":-1,"18720":-1,"18721":-1,"18722":-1,"18723":-1,"18724":-1,"18725":-1,"18726":-1,"18727":-1,"18728":-1,"18729":-1,"18730":2686,"18731":-1,"18732":-1,"18733":-1,"18734":-1,"18735":-1,"18736":-1,"18737":-1,"18738":-1,"18739":-1,"18740":-1,"18741":-1,"18742":-1,"18743":-1,"18744":-1,"18745":-1,"18746":0,"18747":-1,"18748":-1,"18749":0,"18750":2684,"18751":-1,"18752":-1,"18753":2685,"18754":-1,"18755":-1,"18756":-1,"18757":-1,"18758":2683,"18759":-1,"18760":-1,"18761":-1,"18762":-1,"18763":-1,"18764":2682,"18765":-1,"18766":-1,"18767":-1,"18768":2683,"18769":-1,"18770":-1,"18771":-1,"18772":-1,"18773":-1,"18774":-1,"18775":-1,"18776":-1,"18777":-1,"18778":-1,"18779":-1,"18780":-1,"18781":0,"18782":-1,"18783":-1,"18784":2682,"18785":-1,"18786":0,"18787":-1,"18788":-1,"18789":-1,"18790":-1,"18791":-1,"18792":-1,"18793":-1,"18794":-1,"18795":-1,"18796":-1,"18797":-1,"18798":-1,"18799":2686,"18800":-1,"18801":-1,"18802":-1,"18803":2686,"18804":-1,"18805":-1,"18806":-1,"18807":-1,"18808":-1,"18809":-1,"18810":-1,"18811":0,"18812":-1,"18813":-1,"18814":-1,"18815":-1,"18816":-1,"18817":-1,"18818":-1,"18819":-1,"18820":-1,"18821":-1,"18822":-1,"18823":-1,"18824":-1,"18825":-1,"18826":-1,"18827":-1,"18828":-1,"18829":-1,"18830":-1,"18831":-1,"18832":-1,"18833":-1,"18834":2681,"18835":-1,"18836":-1,"18837":-1,"18838":-1,"18839":-1,"18840":-1,"18841":0,"18842":-1,"18843":-1,"18844":-1,"18845":2685,"18846":2682,"18847":-1,"18848":-1,"18849":-1,"18850":-1,"18851":-1,"18852":-1,"18853":-1,"18854":0,"18855":2684,"18856":-1,"18857":-1,"18858":-1,"18859":-1,"18860":-1,"18861":-1,"18862":-1,"18863":-1,"18864":2683,"18865":-1,"18866":-1,"18867":-1,"18868":-1,"18869":-1,"18870":-1,"18871":2682,"18872":-1,"18873":-1,"18874":-1,"18875":-1,"18876":-1,"18877":-1,"18878":-1,"18879":-1,"18880":-1,"18881":-1,"18882":-1,"18883":-1,"18884":-1,"18885":-1,"18886":-1,"18887":-1,"18888":-1,"18889":-1,"18890":-1,"18891":-1,"18892":0,"18893":-1,"18894":-1,"18895":-1,"18896":-1,"18897":-1,"18898":-1,"18899":-1,"18900":2686,"18901":-1,"18902":-1,"18903":0,"18904":-1,"18905":-1,"18906":-1,"18907":-1,"18908":-1,"18909":-1,"18910":-1,"18911":-1,"18912":-1,"18913":-1,"18914":-1,"18915":-1,"18916":-1,"18917":-1,"18918":2681,"18919":-1,"18920":-1,"18921":-1,"18922":0,"18923":-1,"18924":-1,"18925":-1,"18926":-1,"18927":-1,"18928":2684,"18929":-1,"18930":-1,"18931":-1,"18932":-1,"18933":-1,"18934":-1,"18935":-1,"18936":-1,"18937":-1,"18938":-1,"18939":-1,"18940":-1,"18941":-1,"18942":0,"18943":-1,"18944":-1,"18945":-1,"18946":-1,"18947":-1,"18948":-1,"18949":-1,"18950":-1,"18951":-1,"18952":-1,"18953":-1,"18954":-1,"18955":-1,"18956":-1,"18957":0,"18958":2684,"18959":-1,"18960":-1,"18961":-1,"18962":-1,"18963":-1,"18964":-1,"18965":-1,"18966":-1,"18967":-1,"18968":2686,"18969":-1,"18970":-1,"18971":-1,"18972":-1,"18973":-1,"18974":-1,"18975":-1,"18976":-1,"18977":-1,"18978":2686,"18979":-1,"18980":0,"18981":-1,"18982":-1,"18983":-1,"18984":-1,"18985":-1,"18986":0,"18987":2684,"18988":-1,"18989":-1,"18990":-1,"18991":-1,"18992":2685,"18993":2682,"18994":-1,"18995":2681,"18996":-1,"18997":-1,"18998":-1,"18999":-1,"19000":2687,"19001":-1,"19002":-1,"19003":-1,"19004":-1,"19005":-1,"19006":0,"19007":-1,"19008":-1,"19009":2684,"19010":-1,"19011":-1,"19012":-1,"19013":-1,"19014":-1,"19015":0,"19016":-1,"19017":-1,"19018":-1,"19019":2686,"19020":-1,"19021":-1,"19022":-1,"19023":-1,"19024":-1,"19025":2684,"19026":-1,"19027":2682,"19028":-1,"19029":2686,"19030":-1,"19031":-1,"19032":-1,"19033":2685,"19034":-1,"19035":-1,"19036":0,"19037":-1,"19038":-1,"19039":-1,"19040":0,"19041":-1,"19042":-1,"19043":-1,"19044":-1,"19045":2683,"19046":-1,"19047":-1,"19048":-1,"19049":2682,"19050":0,"19051":-1,"19052":-1,"19053":-1,"19054":-1,"19055":-1,"19056":-1,"19057":2686,"19058":-1,"19059":-1,"19060":-1,"19061":-1,"19062":2685,"19063":2683,"19064":-1,"19065":-1,"19066":-1,"19067":-1,"19068":2686,"19069":-1,"19070":-1,"19071":-1,"19072":-1,"19073":-1,"19074":-1,"19075":-1,"19076":-1,"19077":-1,"19078":-1,"19079":-1,"19080":-1,"19081":-1,"19082":-1,"19083":-1,"19084":-1,"19085":-1,"19086":2681,"19087":-1,"19088":-1,"19089":-1,"19090":-1,"19091":-1,"19092":-1,"19093":-1,"19094":-1,"19095":-1,"19096":-1,"19097":-1,"19098":-1,"19099":-1,"19100":-1,"19101":-1,"19102":2687,"19103":-1,"19104":-1,"19105":-1,"19106":-1,"19107":-1,"19108":2687,"19109":-1,"19110":-1,"19111":-1,"19112":-1,"19113":-1,"19114":-1,"19115":-1,"19116":-1,"19117":-1,"19118":-1,"19119":-1,"19120":-1,"19121":0,"19122":-1,"19123":2682,"19124":-1,"19125":-1,"19126":-1,"19127":-1,"19128":-1,"19129":-1,"19130":-1,"19131":-1,"19132":-1,"19133":-1,"19134":-1,"19135":-1,"19136":-1,"19137":-1,"19138":-1,"19139":-1,"19140":-1,"19141":-1,"19142":-1,"19143":-1,"19144":-1,"19145":-1,"19146":-1,"19147":-1,"19148":2682,"19149":-1,"19150":-1,"19151":-1,"19152":-1,"19153":-1,"19154":-1,"19155":-1,"19156":-1,"19157":-1,"19158":-1,"19159":-1,"19160":2683,"19161":2682,"19162":-1,"19163":2682,"19164":-1,"19165":-1,"19166":2682,"19167":-1,"19168":-1,"19169":0,"19170":-1,"19171":-1,"19172":-1,"19173":-1,"19174":2683,"19175":-1,"19176":-1,"19177":-1,"19178":2685,"19179":-1,"19180":-1,"19181":-1,"19182":-1,"19183":2686,"19184":-1,"19185":-1,"19186":2683,"19187":-1,"19188":-1,"19189":-1,"19190":-1,"19191":-1,"19192":-1,"19193":-1,"19194":-1,"19195":-1,"19196":-1,"19197":2682,"19198":-1,"19199":-1,"19200":-1,"19201":-1,"19202":-1,"19203":-1,"19204":-1,"19205":-1,"19206":-1,"19207":-1,"19208":-1,"19209":-1,"19210":2685,"19211":-1,"19212":-1,"19213":-1,"19214":-1,"19215":-1,"19216":-1,"19217":-1,"19218":-1,"19219":0,"19220":-1,"19221":-1,"19222":-1,"19223":-1,"19224":2684,"19225":2682,"19226":-1,"19227":-1,"19228":-1,"19229":-1,"19230":-1,"19231":-1,"19232":-1,"19233":-1,"19234":-1,"19235":-1,"19236":2685,"19237":-1,"19238":-1,"19239":-1,"19240":-1,"19241":0,"19242":-1,"19243":2682,"19244":2684,"19245":-1,"19246":-1,"19247":-1,"19248":-1,"19249":0,"19250":-1,"19251":-1,"19252":-1,"19253":-1,"19254":-1,"19255":-1,"19256":-1,"19257":-1,"19258":-1,"19259":-1,"19260":-1,"19261":2685,"19262":-1,"19263":2686,"19264":2682,"19265":-1,"19266":2682,"19267":-1,"19268":-1,"19269":-1,"19270":-1,"19271":-1,"19272":-1,"19273":-1,"19274":2681,"19275":-1,"19276":-1,"19277":0,"19278":-1,"19279":-1,"19280":-1,"19281":-1,"19282":-1,"19283":-1,"19284":-1,"19285":0,"19286":-1,"19287":-1,"19288":-1,"19289":-1,"19290":2682,"19291":-1,"19292":-1,"19293":-1,"19294":-1,"19295":-1,"19296":2684,"19297":-1,"19298":-1,"19299":2684,"19300":-1,"19301":-1,"19302":-1,"19303":-1,"19304":-1,"19305":0,"19306":-1,"19307":2682,"19308":-1,"19309":-1,"19310":-1,"19311":-1,"19312":-1,"19313":-1,"19314":-1,"19315":-1,"19316":-1,"19317":2683,"19318":0,"19319":-1,"19320":-1,"19321":-1,"19322":-1,"19323":2683,"19324":-1,"19325":2683,"19326":-1,"19327":-1,"19328":-1,"19329":-1,"19330":-1,"19331":-1,"19332":-1,"19333":-1,"19334":-1,"19335":2684,"19336":-1,"19337":-1,"19338":-1,"19339":-1,"19340":-1,"19341":-1,"19342":-1,"19343":-1,"19344":-1,"19345":-1,"19346":2685,"19347":-1,"19348":2682,"19349":-1,"19350":-1,"19351":-1,"19352":0,"19353":-1,"19354":-1,"19355":-1,"19356":-1,"19357":-1,"19358":2685,"19359":-1,"19360":-1,"19361":0,"19362":-1,"19363":2683,"19364":-1,"19365":-1,"19366":2685,"19367":-1,"19368":-1,"19369":-1,"19370":-1,"19371":-1,"19372":-1,"19373":-1,"19374":-1,"19375":2681,"19376":-1,"19377":-1,"19378":-1,"19379":-1,"19380":-1,"19381":-1,"19382":-1,"19383":-1,"19384":-1,"19385":-1,"19386":-1,"19387":-1,"19388":-1,"19389":-1,"19390":-1,"19391":-1,"19392":-1,"19393":-1,"19394":-1,"19395":-1,"19396":-1,"19397":-1,"19398":2687,"19399":-1,"19400":-1,"19401":-1,"19402":-1,"19403":-1,"19404":-1,"19405":-1,"19406":2682,"19407":-1,"19408":2686,"19409":2682,"19410":-1,"19411":-1,"19412":-1,"19413":-1,"19414":-1,"19415":-1,"19416":-1,"19417":-1,"19418":-1,"19419":-1,"19420":2682,"19421":-1,"19422":-1,"19423":-1,"19424":2682,"19425":-1,"19426":-1,"19427":-1,"19428":-1,"19429":-1,"19430":-1,"19431":-1,"19432":-1,"19433":-1,"19434":-1,"19435":-1,"19436":2687,"19437":-1,"19438":-1,"19439":-1,"19440":-1,"19441":-1,"19442":-1,"19443":2683,"19444":0,"19445":-1,"19446":-1,"19447":-1,"19448":-1,"19449":-1,"19450":2683,"19451":-1,"19452":2685,"19453":-1,"19454":-1,"19455":-1,"19456":-1,"19457":-1,"19458":-1,"19459":2687,"19460":-1,"19461":-1,"19462":-1,"19463":-1,"19464":-1,"19465":-1,"19466":-1,"19467":-1,"19468":-1,"19469":-1,"19470":2684,"19471":0,"19472":-1,"19473":-1,"19474":-1,"19475":-1,"19476":-1,"19477":-1,"19478":-1,"19479":-1,"19480":-1,"19481":-1,"19482":-1,"19483":-1,"19484":-1,"19485":-1,"19486":-1,"19487":-1,"19488":-1,"19489":2682,"19490":2684,"19491":-1,"19492":-1,"19493":-1,"19494":-1,"19495":-1,"19496":-1,"19497":-1,"19498":-1,"19499":-1,"19500":-1,"19501":-1,"19502":-1,"19503":-1,"19504":-1,"19505":2683,"19506":-1,"19507":-1,"19508":-1,"19509":-1,"19510":-1,"19511":-1,"19512":-1,"19513":-1,"19514":-1,"19515":-1,"19516":-1,"19517":-1,"19518":-1,"19519":-1,"19520":-1,"19521":-1,"19522":-1,"19523":-1,"19524":-1,"19525":-1,"19526":-1,"19527":-1,"19528":-1,"19529":-1,"19530":-1,"19531":-1,"19532":-1,"19533":-1,"19534":-1,"19535":-1,"19536":2684,"19537":2684,"19538":-1,"19539":-1,"19540":-1,"19541":-1,"19542":-1,"19543":-1,"19544":-1,"19545":-1,"19546":-1,"19547":-1,"19548":-1,"19549":-1,"19550":-1,"19551":-1,"19552":-1,"19553":-1,"19554":-1,"19555":-1,"19556":-1,"19557":-1,"19558":-1,"19559":-1,"19560":-1,"19561":-1,"19562":-1,"19563":-1,"19564":2681,"19565":-1,"19566":-1,"19567":-1,"19568":-1,"19569":-1,"19570":-1,"19571":-1,"19572":-1,"19573":-1,"19574":-1,"19575":2686,"19576":2683,"19577":-1,"19578":-1,"19579":-1,"19580":-1,"19581":2686,"19582":-1,"19583":-1,"19584":-1,"19585":-1,"19586":-1,"19587":-1,"19588":-1,"19589":0,"19590":-1,"19591":-1,"19592":-1,"19593":-1,"19594":0,"19595":-1,"19596":-1,"19597":-1,"19598":-1,"19599":-1,"19600":-1,"19601":-1,"19602":-1,"19603":-1,"19604":-1,"19605":-1,"19606":-1,"19607":-1,"19608":-1,"19609":-1,"19610":-1,"19611":-1,"19612":2684,"19613":-1,"19614":-1,"19615":-1,"19616":-1,"19617":-1,"19618":-1,"19619":-1,"19620":2686,"19621":-1,"19622":-1,"19623":-1,"19624":-1,"19625":2682,"19626":-1,"19627":-1,"19628":-1,"19629":2681,"19630":-1,"19631":2685,"19632":-1,"19633":2684,"19634":-1,"19635":-1,"19636":-1,"19637":-1,"19638":-1,"19639":-1,"19640":2685,"19641":-1,"19642":-1,"19643":-1,"19644":-1,"19645":-1,"19646":-1,"19647":-1,"19648":-1,"19649":-1,"19650":-1,"19651":-1,"19652":-1,"19653":-1,"19654":-1,"19655":-1,"19656":0,"19657":-1,"19658":-1,"19659":-1,"19660":-1,"19661":-1,"19662":-1,"19663":-1,"19664":-1,"19665":2686,"19666":-1,"19667":-1,"19668":-1,"19669":-1,"19670":-1,"19671":-1,"19672":-1,"19673":-1,"19674":-1,"19675":-1,"19676":-1,"19677":-1,"19678":-1,"19679":-1,"19680":-1,"19681":-1,"19682":-1,"19683":0,"19684":2686,"19685":-1,"19686":-1,"19687":-1,"19688":-1,"19689":-1,"19690":2686,"19691":-1,"19692":-1,"19693":-1,"19694":-1,"19695":-1,"19696":-1,"19697":2684,"19698":-1,"19699":-1,"19700":-1,"19701":-1,"19702":-1,"19703":-1,"19704":-1,"19705":-1,"19706":-1,"19707":-1,"19708":-1,"19709":-1,"19710":-1,"19711":-1,"19712":-1,"19713":-1,"19714":-1,"19715":-1,"19716":-1,"19717":-1,"19718":-1,"19719":-1,"19720":-1,"19721":-1,"19722":-1,"19723":-1,"19724":-1,"19725":-1,"19726":-1,"19727":-1,"19728":-1,"19729":-1,"19730":-1,"19731":-1,"19732":-1,"19733":-1,"19734":2683,"19735":-1,"19736":2685,"19737":-1,"19738":-1,"19739":-1,"19740":-1,"19741":-1,"19742":-1,"19743":-1,"19744":-1,"19745":-1,"19746":-1,"19747":-1,"19748":-1,"19749":0,"19750":-1,"19751":-1,"19752":-1,"19753":-1,"19754":-1,"19755":-1,"19756":-1,"19757":-1,"19758":-1,"19759":2682,"19760":-1,"19761":-1,"19762":-1,"19763":-1,"19764":-1,"19765":-1,"19766":0,"19767":2683,"19768":2684,"19769":-1,"19770":-1,"19771":-1,"19772":-1,"19773":-1,"19774":-1,"19775":-1,"19776":-1,"19777":-1,"19778":-1,"19779":-1,"19780":-1,"19781":-1,"19782":-1,"19783":-1,"19784":2683,"19785":2682,"19786":-1,"19787":-1,"19788":-1,"19789":2686,"19790":2683,"19791":2683,"19792":-1,"19793":-1,"19794":-1,"19795":-1,"19796":-1,"19797":-1,"19798":0,"19799":-1,"19800":-1,"19801":-1,"19802":-1,"19803":-1,"19804":-1,"19805":0,"19806":-1,"19807":-1,"19808":-1,"19809":2687,"19810":-1,"19811":-1,"19812":2686,"19813":-1,"19814":-1,"19815":-1,"19816":-1,"19817":2685,"19818":-1,"19819":-1,"19820":-1,"19821":-1,"19822":-1,"19823":-1,"19824":2681,"19825":-1,"19826":-1,"19827":0,"19828":-1,"19829":2686,"19830":-1,"19831":0,"19832":-1,"19833":-1,"19834":-1,"19835":-1,"19836":-1,"19837":-1,"19838":-1,"19839":-1,"19840":-1,"19841":-1,"19842":-1,"19843":2682,"19844":0,"19845":-1,"19846":-1,"19847":2682,"19848":-1,"19849":-1,"19850":-1,"19851":2683,"19852":-1,"19853":-1,"19854":-1,"19855":-1,"19856":-1,"19857":-1,"19858":-1,"19859":-1,"19860":-1,"19861":-1,"19862":-1,"19863":-1,"19864":-1,"19865":-1,"19866":-1,"19867":2685,"19868":-1,"19869":-1,"19870":-1,"19871":2682,"19872":2686,"19873":-1,"19874":2682,"19875":2682,"19876":-1,"19877":-1,"19878":-1,"19879":-1,"19880":-1,"19881":-1,"19882":2684,"19883":-1,"19884":-1,"19885":-1,"19886":-1,"19887":-1,"19888":-1,"19889":-1,"19890":-1,"19891":2687,"19892":0,"19893":-1,"19894":-1,"19895":-1,"19896":-1,"19897":-1,"19898":-1,"19899":-1,"19900":-1,"19901":-1,"19902":-1,"19903":-1,"19904":-1,"19905":-1,"19906":-1,"19907":-1,"19908":-1,"19909":2684,"19910":-1,"19911":-1,"19912":-1,"19913":-1,"19914":-1,"19915":-1,"19916":-1,"19917":-1,"19918":2687,"19919":2685,"19920":-1,"19921":-1,"19922":-1,"19923":-1,"19924":-1,"19925":-1,"19926":-1,"19927":-1,"19928":-1,"19929":-1,"19930":-1,"19931":-1,"19932":0,"19933":-1,"19934":-1,"19935":-1,"19936":-1,"19937":-1,"19938":-1,"19939":-1,"19940":-1,"19941":-1,"19942":-1,"19943":0,"19944":-1,"19945":-1,"19946":-1,"19947":-1,"19948":-1,"19949":0,"19950":-1,"19951":-1,"19952":-1,"19953":-1,"19954":-1,"19955":-1,"19956":-1,"19957":-1,"19958":2686,"19959":-1,"19960":-1,"19961":-1,"19962":-1,"19963":2682,"19964":0,"19965":-1,"19966":-1,"19967":-1,"19968":2686,"19969":2685,"19970":-1,"19971":-1,"19972":-1,"19973":-1,"19974":-1,"19975":-1,"19976":2684,"19977":2686,"19978":-1,"19979":2685,"19980":-1,"19981":-1,"19982":-1,"19983":-1,"19984":-1,"19985":-1,"19986":2683,"19987":-1,"19988":2685,"19989":-1,"19990":-1,"19991":-1,"19992":-1,"19993":-1,"19994":-1,"19995":-1,"19996":-1,"19997":-1,"19998":-1,"19999":0,"20000":-1,"20001":-1,"20002":-1,"20003":2685,"20004":-1,"20005":-1,"20006":-1,"20007":-1,"20008":-1,"20009":-1,"20010":-1,"20011":-1,"20012":-1,"20013":2682,"20014":-1,"20015":-1,"20016":-1,"20017":-1,"20018":2682,"20019":-1,"20020":-1,"20021":-1,"20022":-1,"20023":0,"20024":-1,"20025":-1,"20026":-1,"20027":-1,"20028":-1,"20029":-1,"20030":-1,"20031":-1,"20032":-1,"20033":-1,"20034":-1,"20035":-1,"20036":-1,"20037":-1,"20038":2685,"20039":-1,"20040":-1,"20041":-1,"20042":-1,"20043":-1,"20044":-1,"20045":-1,"20046":-1,"20047":-1,"20048":-1,"20049":-1,"20050":-1,"20051":0,"20052":-1,"20053":-1,"20054":-1,"20055":2685,"20056":-1,"20057":-1,"20058":-1,"20059":2684,"20060":2681,"20061":0,"20062":2687,"20063":-1,"20064":2685,"20065":-1,"20066":-1,"20067":-1,"20068":-1,"20069":-1,"20070":-1,"20071":-1,"20072":-1,"20073":-1,"20074":-1,"20075":-1,"20076":-1,"20077":-1,"20078":-1,"20079":-1,"20080":-1,"20081":-1,"20082":-1,"20083":-1,"20084":-1,"20085":-1,"20086":-1,"20087":-1,"20088":-1,"20089":-1,"20090":-1,"20091":-1,"20092":-1,"20093":-1,"20094":-1,"20095":2683,"20096":-1,"20097":-1,"20098":-1,"20099":-1,"20100":-1,"20101":-1,"20102":-1,"20103":-1,"20104":0,"20105":-1,"20106":-1,"20107":-1,"20108":-1,"20109":-1,"20110":2684,"20111":2687,"20112":-1,"20113":-1,"20114":-1,"20115":-1,"20116":-1,"20117":2684,"20118":-1,"20119":-1,"20120":2686,"20121":-1,"20122":-1,"20123":-1,"20124":2684,"20125":-1,"20126":2682,"20127":-1,"20128":-1,"20129":-1,"20130":-1,"20131":-1,"20132":-1,"20133":-1,"20134":0,"20135":-1,"20136":-1,"20137":2685,"20138":-1,"20139":-1,"20140":-1,"20141":-1,"20142":-1,"20143":-1,"20144":-1,"20145":-1,"20146":2681,"20147":-1,"20148":-1,"20149":-1,"20150":-1,"20151":-1,"20152":2683,"20153":-1,"20154":-1,"20155":-1,"20156":-1,"20157":-1,"20158":-1,"20159":-1,"20160":-1,"20161":-1,"20162":-1,"20163":-1,"20164":-1,"20165":-1,"20166":-1,"20167":2682,"20168":-1,"20169":-1,"20170":-1,"20171":-1,"20172":-1,"20173":2687,"20174":-1,"20175":2682,"20176":0,"20177":-1,"20178":-1,"20179":-1,"20180":-1,"20181":2684,"20182":-1,"20183":-1,"20184":-1,"20185":-1,"20186":-1,"20187":-1,"20188":-1,"20189":-1,"20190":-1,"20191":2687,"20192":-1,"20193":-1,"20194":-1,"20195":2682,"20196":-1,"20197":-1,"20198":-1,"20199":-1,"20200":-1,"20201":-1,"20202":-1,"20203":-1,"20204":0,"20205":-1,"20206":-1,"20207":-1,"20208":-1,"20209":-1,"20210":-1,"20211":-1,"20212":-1,"20213":-1,"20214":-1,"20215":-1,"20216":-1,"20217":-1,"20218":2682,"20219":-1,"20220":0,"20221":2681,"20222":-1,"20223":-1,"20224":-1,"20225":0,"20226":-1,"20227":-1,"20228":-1,"20229":-1,"20230":-1,"20231":2682,"20232":-1,"20233":-1,"20234":-1,"20235":-1,"20236":-1,"20237":-1,"20238":-1,"20239":-1,"20240":-1,"20241":-1,"20242":-1,"20243":-1,"20244":-1,"20245":-1,"20246":-1,"20247":-1,"20248":-1,"20249":-1,"20250":2687,"20251":-1,"20252":-1,"20253":-1,"20254":0,"20255":-1,"20256":-1,"20257":-1,"20258":-1,"20259":-1,"20260":-1,"20261":-1,"20262":0,"20263":0,"20264":-1,"20265":-1,"20266":-1,"20267":-1,"20268":-1,"20269":2686,"20270":-1,"20271":-1,"20272":-1,"20273":-1,"20274":-1,"20275":-1,"20276":-1,"20277":-1,"20278":-1,"20279":-1,"20280":-1,"20281":-1,"20282":0,"20283":-1,"20284":2684,"20285":-1,"20286":-1,"20287":-1,"20288":-1,"20289":-1,"20290":2683,"20291":2682,"20292":-1,"20293":-1,"20294":-1,"20295":-1,"20296":-1,"20297":-1,"20298":-1,"20299":-1,"20300":-1,"20301":2683,"20302":-1,"20303":2681,"20304":-1,"20305":-1,"20306":-1,"20307":-1,"20308":-1,"20309":-1,"20310":-1,"20311":-1,"20312":-1,"20313":-1,"20314":-1,"20315":-1,"20316":-1,"20317":-1,"20318":-1,"20319":-1,"20320":-1,"20321":-1,"20322":2681,"20323":-1,"20324":-1,"20325":-1,"20326":-1,"20327":-1,"20328":-1,"20329":-1,"20330":-1,"20331":0,"20332":-1,"20333":-1,"20334":-1,"20335":-1,"20336":2683,"20337":2682,"20338":-1,"20339":-1,"20340":-1,"20341":-1,"20342":-1,"20343":-1,"20344":0,"20345":-1,"20346":-1,"20347":-1,"20348":2687,"20349":-1,"20350":-1,"20351":-1,"20352":-1,"20353":2682,"20354":-1,"20355":-1,"20356":2687,"20357":-1,"20358":-1,"20359":-1,"20360":2686,"20361":-1,"20362":0,"20363":-1,"20364":-1,"20365":2683,"20366":2685,"20367":-1,"20368":-1,"20369":-1,"20370":-1,"20371":2687,"20372":-1,"20373":-1,"20374":-1,"20375":-1,"20376":-1,"20377":-1,"20378":-1,"20379":-1,"20380":-1,"20381":-1,"20382":-1,"20383":-1,"20384":-1,"20385":-1,"20386":-1,"20387":-1,"20388":0,"20389":-1,"20390":-1,"20391":-1,"20392":-1,"20393":2685,"20394":-1,"20395":-1,"20396":-1,"20397":-1,"20398":-1,"20399":-1,"20400":-1,"20401":-1,"20402":-1,"20403":-1,"20404":-1,"20405":-1,"20406":-1,"20407":2684,"20408":-1,"20409":2683,"20410":-1,"20411":-1,"20412":-1,"20413":-1,"20414":-1,"20415":-1,"20416":-1,"20417":-1,"20418":-1,"20419":-1,"20420":-1,"20421":2686,"20422":-1,"20423":-1,"20424":-1,"20425":-1,"20426":-1,"20427":-1,"20428":-1,"20429":-1,"20430":-1,"20431":-1,"20432":-1,"20433":-1,"20434":2683,"20435":-1,"20436":-1,"20437":-1,"20438":-1,"20439":2685,"20440":-1,"20441":-1,"20442":-1,"20443":-1,"20444":-1,"20445":-1,"20446":-1,"20447":-1,"20448":-1,"20449":-1,"20450":-1,"20451":-1,"20452":-1,"20453":-1,"20454":-1,"20455":-1,"20456":-1,"20457":2685,"20458":-1,"20459":-1,"20460":-1,"20461":-1,"20462":-1,"20463":-1,"20464":-1,"20465":2682,"20466":-1,"20467":-1,"20468":-1,"20469":-1,"20470":2683,"20471":-1,"20472":-1,"20473":-1,"20474":-1,"20475":-1,"20476":-1,"20477":-1,"20478":-1,"20479":-1,"20480":-1,"20481":-1,"20482":-1,"20483":-1,"20484":-1,"20485":-1,"20486":-1,"20487":2682,"20488":-1,"20489":2686,"20490":-1,"20491":-1,"20492":-1,"20493":-1,"20494":-1,"20495":-1,"20496":-1,"20497":-1,"20498":-1,"20499":-1,"20500":-1,"20501":-1,"20502":2682,"20503":2686,"20504":-1,"20505":-1,"20506":-1,"20507":-1,"20508":-1,"20509":-1,"20510":0,"20511":-1,"20512":-1,"20513":-1,"20514":-1,"20515":-1,"20516":-1,"20517":-1,"20518":-1,"20519":-1,"20520":-1,"20521":-1,"20522":-1,"20523":-1,"20524":-1,"20525":2682,"20526":-1,"20527":-1,"20528":-1,"20529":-1,"20530":-1,"20531":-1,"20532":-1,"20533":-1,"20534":-1,"20535":-1,"20536":2684,"20537":-1,"20538":-1,"20539":-1,"20540":-1,"20541":2682,"20542":-1,"20543":-1,"20544":-1,"20545":-1,"20546":-1,"20547":-1,"20548":2686,"20549":-1,"20550":-1,"20551":2684,"20552":-1,"20553":-1,"20554":-1,"20555":-1,"20556":-1,"20557":-1,"20558":-1,"20559":-1,"20560":-1,"20561":-1,"20562":2686,"20563":-1,"20564":-1,"20565":-1,"20566":-1,"20567":-1,"20568":-1,"20569":2685,"20570":-1,"20571":-1,"20572":-1,"20573":-1,"20574":-1,"20575":-1,"20576":-1,"20577":-1,"20578":-1,"20579":-1,"20580":-1,"20581":-1,"20582":-1,"20583":-1,"20584":0,"20585":-1,"20586":-1,"20587":-1,"20588":-1,"20589":-1,"20590":-1,"20591":-1,"20592":-1,"20593":-1,"20594":-1,"20595":-1,"20596":2681,"20597":-1,"20598":-1,"20599":-1,"20600":-1,"20601":-1,"20602":-1,"20603":-1,"20604":2684,"20605":2685,"20606":-1,"20607":-1,"20608":0,"20609":-1,"20610":2686,"20611":-1,"20612":-1,"20613":-1,"20614":-1,"20615":-1,"20616":2684,"20617":-1,"20618":-1,"20619":-1,"20620":-1,"20621":-1,"20622":2681,"20623":-1,"20624":-1,"20625":-1,"20626":0,"20627":-1,"20628":2685,"20629":-1,"20630":-1,"20631":2681,"20632":-1,"20633":-1,"20634":-1,"20635":-1,"20636":-1,"20637":-1,"20638":-1,"20639":-1,"20640":-1,"20641":-1,"20642":-1,"20643":-1,"20644":2686,"20645":-1,"20646":-1,"20647":-1,"20648":-1,"20649":2684,"20650":-1,"20651":-1,"20652":-1,"20653":-1,"20654":-1,"20655":-1,"20656":0,"20657":-1,"20658":-1,"20659":-1,"20660":-1,"20661":-1,"20662":-1,"20663":2684,"20664":-1,"20665":-1,"20666":-1,"20667":-1,"20668":-1,"20669":-1,"20670":-1,"20671":0,"20672":0,"20673":-1,"20674":-1,"20675":-1,"20676":-1,"20677":-1,"20678":-1,"20679":-1,"20680":-1,"20681":-1,"20682":-1,"20683":-1,"20684":2684,"20685":-1,"20686":-1,"20687":-1,"20688":-1,"20689":-1,"20690":-1,"20691":-1,"20692":2686,"20693":-1,"20694":-1,"20695":-1,"20696":-1,"20697":-1,"20698":-1,"20699":-1,"20700":-1,"20701":2684,"20702":2685,"20703":-1,"20704":0,"20705":-1,"20706":-1,"20707":-1,"20708":-1,"20709":-1,"20710":-1,"20711":-1,"20712":-1,"20713":-1,"20714":2682,"20715":-1,"20716":-1,"20717":-1,"20718":0,"20719":-1,"20720":2681,"20721":-1,"20722":2685,"20723":-1,"20724":2684,"20725":-1,"20726":-1,"20727":-1,"20728":-1,"20729":-1,"20730":-1,"20731":-1,"20732":-1,"20733":2683,"20734":-1,"20735":-1,"20736":-1,"20737":-1,"20738":-1,"20739":-1,"20740":-1,"20741":-1,"20742":0,"20743":-1,"20744":-1,"20745":-1,"20746":2681,"20747":-1,"20748":-1,"20749":-1,"20750":-1,"20751":-1,"20752":-1,"20753":-1,"20754":-1,"20755":-1,"20756":-1,"20757":-1,"20758":-1,"20759":-1,"20760":-1,"20761":-1,"20762":-1,"20763":-1,"20764":-1,"20765":-1,"20766":-1,"20767":-1,"20768":-1,"20769":0,"20770":-1,"20771":-1,"20772":-1,"20773":-1,"20774":-1,"20775":-1,"20776":-1,"20777":-1,"20778":-1,"20779":-1,"20780":-1,"20781":-1,"20782":-1,"20783":-1,"20784":2686,"20785":0,"20786":-1,"20787":2684,"20788":-1,"20789":2683,"20790":-1,"20791":-1,"20792":-1,"20793":2685,"20794":-1,"20795":-1,"20796":-1,"20797":-1,"20798":-1,"20799":-1,"20800":-1,"20801":2685,"20802":-1,"20803":-1,"20804":-1,"20805":-1,"20806":-1,"20807":-1,"20808":-1,"20809":-1,"20810":-1,"20811":-1,"20812":0,"20813":-1,"20814":-1,"20815":-1,"20816":-1,"20817":-1,"20818":-1,"20819":-1,"20820":-1,"20821":-1,"20822":-1,"20823":-1,"20824":-1,"20825":-1,"20826":-1,"20827":-1,"20828":-1,"20829":-1,"20830":-1,"20831":-1,"20832":-1,"20833":-1,"20834":-1,"20835":-1,"20836":-1,"20837":-1,"20838":-1,"20839":2684,"20840":-1,"20841":0,"20842":0,"20843":-1,"20844":-1,"20845":-1,"20846":-1,"20847":-1,"20848":-1,"20849":-1,"20850":0,"20851":-1,"20852":2683,"20853":-1,"20854":-1,"20855":-1,"20856":2685,"20857":2685,"20858":-1,"20859":-1,"20860":-1,"20861":-1,"20862":-1,"20863":-1,"20864":-1,"20865":-1,"20866":-1,"20867":-1,"20868":-1,"20869":-1,"20870":-1,"20871":-1,"20872":-1,"20873":-1,"20874":-1,"20875":-1,"20876":-1,"20877":-1,"20878":0,"20879":-1,"20880":-1,"20881":-1,"20882":-1,"20883":-1,"20884":-1,"20885":-1,"20886":-1,"20887":-1,"20888":-1,"20889":-1,"20890":-1,"20891":-1,"20892":2682,"20893":-1,"20894":-1,"20895":-1,"20896":-1,"20897":-1,"20898":-1,"20899":-1,"20900":-1,"20901":-1,"20902":2684,"20903":0,"20904":-1,"20905":-1,"20906":-1,"20907":2683,"20908":2684,"20909":-1,"20910":-1,"20911":-1,"20912":-1,"20913":-1,"20914":-1,"20915":-1,"20916":2684,"20917":-1,"20918":-1,"20919":2687,"20920":-1,"20921":-1,"20922":-1,"20923":-1,"20924":-1,"20925":-1,"20926":-1,"20927":2683,"20928":2683,"20929":0,"20930":-1,"20931":-1,"20932":-1,"20933":-1,"20934":-1,"20935":-1,"20936":-1,"20937":-1,"20938":-1,"20939":-1,"20940":-1,"20941":-1,"20942":-1,"20943":-1,"20944":-1,"20945":-1,"20946":-1,"20947":-1,"20948":-1,"20949":-1,"20950":-1,"20951":2685,"20952":-1,"20953":-1,"20954":-1,"20955":-1,"20956":-1,"20957":-1,"20958":2682,"20959":-1,"20960":-1,"20961":-1,"20962":-1,"20963":-1,"20964":-1,"20965":-1,"20966":-1,"20967":-1,"20968":-1,"20969":-1,"20970":-1,"20971":-1,"20972":-1,"20973":-1,"20974":-1,"20975":-1,"20976":-1,"20977":-1,"20978":-1,"20979":-1,"20980":2683,"20981":-1,"20982":-1,"20983":-1,"20984":-1,"20985":-1,"20986":-1,"20987":-1,"20988":-1,"20989":-1,"20990":-1,"20991":-1,"20992":-1,"20993":-1,"20994":-1,"20995":-1,"20996":-1,"20997":-1,"20998":-1,"20999":-1,"21000":-1,"21001":-1,"21002":-1,"21003":2685,"21004":-1,"21005":-1,"21006":2684,"21007":-1,"21008":-1,"21009":-1,"21010":-1,"21011":-1,"21012":2682,"21013":-1,"21014":-1,"21015":-1,"21016":-1,"21017":-1,"21018":-1,"21019":2683,"21020":-1,"21021":-1,"21022":2686,"21023":-1,"21024":-1,"21025":-1,"21026":-1,"21027":-1,"21028":-1,"21029":-1,"21030":-1,"21031":-1,"21032":-1,"21033":2687,"21034":0,"21035":-1,"21036":-1,"21037":0,"21038":0,"21039":-1,"21040":-1,"21041":-1,"21042":-1,"21043":-1,"21044":-1,"21045":-1,"21046":-1,"21047":-1,"21048":2683,"21049":-1,"21050":2686,"21051":-1,"21052":-1,"21053":-1,"21054":-1,"21055":-1,"21056":-1,"21057":-1,"21058":-1,"21059":-1,"21060":-1,"21061":-1,"21062":-1,"21063":-1,"21064":-1,"21065":-1,"21066":-1,"21067":-1,"21068":-1,"21069":-1,"21070":-1,"21071":-1,"21072":-1,"21073":-1,"21074":-1,"21075":-1,"21076":-1,"21077":-1,"21078":-1,"21079":-1,"21080":-1,"21081":-1,"21082":2685,"21083":-1,"21084":0,"21085":2685,"21086":-1,"21087":-1,"21088":-1,"21089":-1,"21090":-1,"21091":-1,"21092":-1,"21093":-1,"21094":-1,"21095":-1,"21096":-1,"21097":2684,"21098":-1,"21099":-1,"21100":2683,"21101":-1,"21102":-1,"21103":-1,"21104":0,"21105":-1,"21106":-1,"21107":-1,"21108":-1,"21109":-1,"21110":-1,"21111":-1,"21112":-1,"21113":-1,"21114":-1,"21115":-1,"21116":-1,"21117":-1,"21118":-1,"21119":-1,"21120":2687,"21121":-1,"21122":-1,"21123":-1,"21124":-1,"21125":-1,"21126":-1,"21127":-1,"21128":-1,"21129":-1,"21130":-1,"21131":-1,"21132":-1,"21133":-1,"21134":-1,"21135":-1,"21136":-1,"21137":-1,"21138":-1,"21139":-1,"21140":0,"21141":-1,"21142":-1,"21143":2686,"21144":-1,"21145":2684,"21146":-1,"21147":2683,"21148":2687,"21149":-1,"21150":-1,"21151":-1,"21152":-1,"21153":-1,"21154":-1,"21155":0,"21156":2682,"21157":-1,"21158":-1,"21159":-1,"21160":-1,"21161":-1,"21162":-1,"21163":-1,"21164":-1,"21165":-1,"21166":-1,"21167":-1,"21168":-1,"21169":-1,"21170":-1,"21171":-1,"21172":-1,"21173":-1,"21174":-1,"21175":-1,"21176":-1,"21177":-1,"21178":0,"21179":2682,"21180":-1,"21181":-1,"21182":-1,"21183":-1,"21184":-1,"21185":-1,"21186":-1,"21187":-1,"21188":-1,"21189":-1,"21190":2685,"21191":-1,"21192":-1,"21193":-1,"21194":-1,"21195":-1,"21196":0,"21197":-1,"21198":-1,"21199":-1,"21200":-1,"21201":-1,"21202":-1,"21203":-1,"21204":-1,"21205":2686,"21206":0,"21207":-1,"21208":-1,"21209":-1,"21210":2683,"21211":2681,"21212":-1,"21213":-1,"21214":-1,"21215":-1,"21216":-1,"21217":2686,"21218":-1,"21219":-1,"21220":-1,"21221":-1,"21222":-1,"21223":-1,"21224":-1,"21225":2684,"21226":-1,"21227":-1,"21228":-1,"21229":0,"21230":-1,"21231":-1,"21232":-1,"21233":-1,"21234":-1,"21235":-1,"21236":2686,"21237":2683,"21238":2685,"21239":-1,"21240":-1,"21241":-1,"21242":-1,"21243":-1,"21244":-1,"21245":-1,"21246":-1,"21247":-1,"21248":-1,"21249":-1,"21250":-1,"21251":-1,"21252":-1,"21253":2682,"21254":2687,"21255":-1,"21256":-1,"21257":-1,"21258":2687,"21259":-1,"21260":-1,"21261":-1,"21262":-1,"21263":-1,"21264":-1,"21265":-1,"21266":-1,"21267":-1,"21268":-1,"21269":-1,"21270":0,"21271":-1,"21272":-1,"21273":-1,"21274":-1,"21275":2687,"21276":-1,"21277":-1,"21278":2683,"21279":-1,"21280":-1,"21281":2682,"21282":-1,"21283":-1,"21284":-1,"21285":-1,"21286":0,"21287":-1,"21288":-1,"21289":-1,"21290":-1,"21291":-1,"21292":2683,"21293":-1,"21294":-1,"21295":-1,"21296":-1,"21297":-1,"21298":-1,"21299":-1,"21300":-1,"21301":-1,"21302":-1,"21303":-1,"21304":-1,"21305":-1,"21306":-1,"21307":2683,"21308":-1,"21309":-1,"21310":-1,"21311":-1,"21312":-1,"21313":-1,"21314":-1,"21315":2686,"21316":-1,"21317":-1,"21318":-1,"21319":-1,"21320":-1,"21321":-1,"21322":-1,"21323":2684,"21324":-1,"21325":-1,"21326":-1,"21327":-1,"21328":-1,"21329":-1,"21330":-1,"21331":-1,"21332":-1,"21333":2683,"21334":-1,"21335":-1,"21336":-1,"21337":-1,"21338":-1,"21339":2684,"21340":-1,"21341":-1,"21342":-1,"21343":-1,"21344":-1,"21345":2685,"21346":-1,"21347":-1,"21348":-1,"21349":-1,"21350":-1,"21351":-1,"21352":-1,"21353":-1,"21354":0,"21355":-1,"21356":2681,"21357":-1,"21358":-1,"21359":-1,"21360":-1,"21361":-1,"21362":-1,"21363":-1,"21364":-1,"21365":-1,"21366":-1,"21367":-1,"21368":-1,"21369":-1,"21370":2686,"21371":-1,"21372":2682,"21373":-1,"21374":-1,"21375":-1,"21376":-1,"21377":2682,"21378":2682,"21379":-1,"21380":-1,"21381":-1,"21382":-1,"21383":-1,"21384":-1,"21385":-1,"21386":-1,"21387":-1,"21388":-1,"21389":-1,"21390":0,"21391":-1,"21392":-1,"21393":-1,"21394":-1,"21395":-1,"21396":-1,"21397":-1,"21398":-1,"21399":-1,"21400":-1,"21401":-1,"21402":-1,"21403":-1,"21404":-1,"21405":-1,"21406":-1,"21407":-1,"21408":-1,"21409":-1,"21410":2685,"21411":-1,"21412":-1,"21413":-1,"21414":-1,"21415":-1,"21416":-1,"21417":-1,"21418":-1,"21419":-1,"21420":-1,"21421":-1,"21422":2681,"21423":-1,"21424":-1,"21425":-1,"21426":-1,"21427":0,"21428":-1,"21429":0,"21430":-1,"21431":-1,"21432":-1,"21433":-1,"21434":-1,"21435":-1,"21436":2684,"21437":-1,"21438":-1,"21439":-1,"21440":2681,"21441":-1,"21442":-1,"21443":-1,"21444":-1,"21445":-1,"21446":2684,"21447":2681,"21448":-1,"21449":-1,"21450":-1,"21451":-1,"21452":-1,"21453":-1,"21454":-1,"21455":-1,"21456":-1,"21457":-1,"21458":-1,"21459":-1,"21460":-1,"21461":2683,"21462":-1,"21463":-1,"21464":0,"21465":-1,"21466":-1,"21467":-1,"21468":-1,"21469":-1,"21470":2686,"21471":-1,"21472":-1,"21473":-1,"21474":-1,"21475":-1,"21476":-1,"21477":-1,"21478":-1,"21479":-1,"21480":-1,"21481":-1,"21482":-1,"21483":2685,"21484":-1,"21485":-1,"21486":-1,"21487":-1,"21488":-1,"21489":-1,"21490":-1,"21491":-1,"21492":-1,"21493":-1,"21494":-1,"21495":-1,"21496":-1,"21497":-1,"21498":-1,"21499":-1,"21500":-1,"21501":2686,"21502":-1,"21503":-1,"21504":-1,"21505":-1,"21506":-1,"21507":-1,"21508":-1,"21509":-1,"21510":-1,"21511":-1,"21512":-1,"21513":-1,"21514":2684,"21515":-1,"21516":-1,"21517":-1,"21518":-1,"21519":-1,"21520":-1,"21521":-1,"21522":-1,"21523":-1,"21524":-1,"21525":-1,"21526":-1,"21527":-1,"21528":-1,"21529":2685,"21530":-1,"21531":-1,"21532":-1,"21533":0,"21534":-1,"21535":-1,"21536":-1,"21537":-1,"21538":-1,"21539":-1,"21540":-1,"21541":-1,"21542":2685,"21543":-1,"21544":-1,"21545":-1,"21546":-1,"21547":-1,"21548":-1,"21549":-1,"21550":-1,"21551":-1,"21552":-1,"21553":-1,"21554":-1,"21555":-1,"21556":-1,"21557":-1,"21558":-1,"21559":-1,"21560":-1,"21561":-1,"21562":0,"21563":-1,"21564":-1,"21565":-1,"21566":-1,"21567":-1,"21568":-1,"21569":-1,"21570":0,"21571":-1,"21572":-1,"21573":2683,"21574":-1,"21575":-1,"21576":-1,"21577":2685,"21578":-1,"21579":-1,"21580":2685,"21581":-1,"21582":-1,"21583":-1,"21584":2685,"21585":-1,"21586":-1,"21587":2681,"21588":-1,"21589":-1,"21590":2687,"21591":0,"21592":-1,"21593":-1,"21594":-1,"21595":-1,"21596":-1,"21597":-1,"21598":-1,"21599":-1,"21600":2687,"21601":-1,"21602":-1,"21603":2684,"21604":-1,"21605":-1,"21606":-1,"21607":-1,"21608":-1,"21609":-1,"21610":-1,"21611":-1,"21612":-1,"21613":-1,"21614":-1,"21615":2682,"21616":-1,"21617":-1,"21618":-1,"21619":-1,"21620":-1,"21621":0,"21622":-1,"21623":-1,"21624":2683,"21625":2682,"21626":-1,"21627":-1,"21628":-1,"21629":-1,"21630":-1,"21631":-1,"21632":-1,"21633":2683,"21634":-1,"21635":-1,"21636":-1,"21637":2685,"21638":-1,"21639":-1,"21640":-1,"21641":-1,"21642":-1,"21643":-1,"21644":-1,"21645":-1,"21646":-1,"21647":-1,"21648":-1,"21649":-1,"21650":-1,"21651":-1,"21652":2682,"21653":2685,"21654":-1,"21655":-1,"21656":2681,"21657":-1,"21658":-1,"21659":2683,"21660":-1,"21661":-1,"21662":-1,"21663":-1,"21664":-1,"21665":-1,"21666":-1,"21667":2684,"21668":2682,"21669":-1,"21670":-1,"21671":2687,"21672":2683,"21673":-1,"21674":-1,"21675":2681,"21676":-1,"21677":2684,"21678":-1,"21679":-1,"21680":-1,"21681":-1,"21682":-1,"21683":-1,"21684":-1,"21685":0,"21686":-1,"21687":-1,"21688":-1,"21689":2683,"21690":2685,"21691":-1,"21692":2683,"21693":-1,"21694":-1,"21695":2685,"21696":-1,"21697":-1,"21698":-1,"21699":-1,"21700":-1,"21701":-1,"21702":2686,"21703":-1,"21704":-1,"21705":-1,"21706":-1,"21707":-1,"21708":-1,"21709":-1,"21710":-1,"21711":-1,"21712":-1,"21713":-1,"21714":-1,"21715":-1,"21716":2686,"21717":0,"21718":-1,"21719":-1,"21720":2686,"21721":2682,"21722":-1,"21723":2683,"21724":-1,"21725":-1,"21726":-1,"21727":-1,"21728":-1,"21729":-1,"21730":2686,"21731":-1,"21732":0,"21733":-1,"21734":-1,"21735":-1,"21736":0,"21737":-1,"21738":-1,"21739":2684,"21740":-1,"21741":-1,"21742":2686,"21743":-1,"21744":-1,"21745":-1,"21746":-1,"21747":2685,"21748":-1,"21749":-1,"21750":0,"21751":-1,"21752":-1,"21753":-1,"21754":-1,"21755":-1,"21756":-1,"21757":-1,"21758":-1,"21759":-1,"21760":-1,"21761":-1,"21762":-1,"21763":-1,"21764":-1,"21765":-1,"21766":-1,"21767":-1,"21768":-1,"21769":-1,"21770":-1,"21771":-1,"21772":-1,"21773":-1,"21774":-1,"21775":-1,"21776":-1,"21777":-1,"21778":-1,"21779":-1,"21780":-1,"21781":-1,"21782":-1,"21783":-1,"21784":-1,"21785":-1,"21786":-1,"21787":-1,"21788":-1,"21789":-1,"21790":-1,"21791":-1,"21792":2683,"21793":-1,"21794":-1,"21795":-1,"21796":-1,"21797":-1,"21798":-1,"21799":-1,"21800":-1,"21801":-1,"21802":-1,"21803":-1,"21804":-1,"21805":-1,"21806":-1,"21807":0,"21808":-1,"21809":-1,"21810":-1,"21811":-1,"21812":-1,"21813":-1,"21814":-1,"21815":-1,"21816":-1,"21817":-1,"21818":-1,"21819":2684,"21820":-1,"21821":-1,"21822":-1,"21823":-1,"21824":-1,"21825":-1,"21826":-1,"21827":2683,"21828":-1,"21829":2684,"21830":-1,"21831":-1,"21832":-1,"21833":-1,"21834":-1,"21835":2684,"21836":-1,"21837":-1,"21838":-1,"21839":-1,"21840":2684,"21841":-1,"21842":-1,"21843":2686,"21844":-1,"21845":-1,"21846":-1,"21847":2685,"21848":-1,"21849":-1,"21850":-1,"21851":-1,"21852":-1,"21853":2684,"21854":-1,"21855":-1,"21856":-1,"21857":2687,"21858":-1,"21859":-1,"21860":-1,"21861":-1,"21862":-1,"21863":-1,"21864":2687,"21865":-1,"21866":-1,"21867":-1,"21868":-1,"21869":-1,"21870":-1,"21871":-1,"21872":-1,"21873":-1,"21874":-1,"21875":-1,"21876":-1,"21877":-1,"21878":-1,"21879":-1,"21880":-1,"21881":-1,"21882":-1,"21883":-1,"21884":-1,"21885":-1,"21886":-1,"21887":2686,"21888":-1,"21889":0,"21890":-1,"21891":-1,"21892":-1,"21893":-1,"21894":-1,"21895":2686,"21896":-1,"21897":-1,"21898":-1,"21899":-1,"21900":-1,"21901":-1,"21902":-1,"21903":-1,"21904":2686,"21905":-1,"21906":-1,"21907":-1,"21908":-1,"21909":-1,"21910":-1,"21911":-1,"21912":-1,"21913":-1,"21914":2683,"21915":-1,"21916":-1,"21917":-1,"21918":2683,"21919":-1,"21920":-1,"21921":-1,"21922":-1,"21923":-1,"21924":-1,"21925":2681,"21926":-1,"21927":-1,"21928":-1,"21929":-1,"21930":-1,"21931":-1,"21932":-1,"21933":-1,"21934":-1,"21935":2685,"21936":0,"21937":0,"21938":-1,"21939":-1,"21940":-1,"21941":-1,"21942":-1,"21943":-1,"21944":2682,"21945":-1,"21946":-1,"21947":-1,"21948":-1,"21949":-1,"21950":-1,"21951":-1,"21952":2683,"21953":-1,"21954":2685,"21955":-1,"21956":-1,"21957":-1,"21958":0,"21959":2686,"21960":-1,"21961":-1,"21962":-1,"21963":-1,"21964":-1,"21965":-1,"21966":-1,"21967":-1,"21968":-1,"21969":-1,"21970":-1,"21971":-1,"21972":2685,"21973":2683,"21974":-1,"21975":-1,"21976":-1,"21977":-1,"21978":-1,"21979":-1,"21980":-1,"21981":-1,"21982":-1,"21983":2682,"21984":-1,"21985":0,"21986":-1,"21987":-1,"21988":-1,"21989":-1,"21990":-1,"21991":-1,"21992":-1,"21993":-1,"21994":-1,"21995":-1,"21996":2683,"21997":2682,"21998":-1,"21999":-1,"22000":2684,"22001":-1,"22002":-1,"22003":-1,"22004":-1,"22005":-1,"22006":-1,"22007":-1,"22008":-1,"22009":-1,"22010":2682,"22011":2683,"22012":-1,"22013":-1,"22014":-1,"22015":2684,"22016":-1,"22017":-1,"22018":-1,"22019":2682,"22020":-1,"22021":-1,"22022":2686,"22023":-1,"22024":-1,"22025":-1,"22026":-1,"22027":-1,"22028":-1,"22029":0,"22030":-1,"22031":-1,"22032":-1,"22033":-1,"22034":-1,"22035":-1,"22036":-1,"22037":2685,"22038":-1,"22039":-1,"22040":-1,"22041":-1,"22042":-1,"22043":-1,"22044":-1,"22045":-1,"22046":-1,"22047":-1,"22048":2682,"22049":-1,"22050":-1,"22051":-1,"22052":-1,"22053":-1,"22054":-1,"22055":-1,"22056":-1,"22057":-1,"22058":-1,"22059":-1,"22060":-1,"22061":-1,"22062":-1,"22063":-1,"22064":-1,"22065":-1,"22066":-1,"22067":-1,"22068":2685,"22069":-1,"22070":-1,"22071":-1,"22072":-1,"22073":-1,"22074":-1,"22075":-1,"22076":-1,"22077":2686,"22078":-1,"22079":-1,"22080":-1,"22081":-1,"22082":-1,"22083":-1,"22084":-1,"22085":-1,"22086":-1,"22087":-1,"22088":2685,"22089":-1,"22090":-1,"22091":-1,"22092":2682,"22093":-1,"22094":-1,"22095":-1,"22096":-1,"22097":2681,"22098":-1,"22099":-1,"22100":-1,"22101":-1,"22102":0,"22103":-1,"22104":-1,"22105":-1,"22106":2687,"22107":2686,"22108":-1,"22109":-1,"22110":-1,"22111":-1,"22112":2682,"22113":-1,"22114":-1,"22115":-1,"22116":-1,"22117":-1,"22118":0,"22119":-1,"22120":-1,"22121":2686,"22122":-1,"22123":-1,"22124":-1,"22125":-1,"22126":-1,"22127":-1,"22128":-1,"22129":-1,"22130":-1,"22131":2684,"22132":-1,"22133":-1,"22134":-1,"22135":-1,"22136":-1,"22137":0,"22138":-1,"22139":-1,"22140":-1,"22141":-1,"22142":-1,"22143":-1,"22144":-1,"22145":0,"22146":-1,"22147":-1,"22148":2685,"22149":-1,"22150":2683,"22151":-1,"22152":-1,"22153":-1,"22154":-1,"22155":-1,"22156":2685,"22157":2686,"22158":-1,"22159":-1,"22160":-1,"22161":-1,"22162":2682,"22163":-1,"22164":-1,"22165":-1,"22166":-1,"22167":2682,"22168":-1,"22169":-1,"22170":-1,"22171":-1,"22172":-1,"22173":-1,"22174":-1,"22175":-1,"22176":-1,"22177":-1,"22178":2681,"22179":-1,"22180":-1,"22181":-1,"22182":-1,"22183":-1,"22184":-1,"22185":2685,"22186":-1,"22187":-1,"22188":-1,"22189":-1,"22190":-1,"22191":2686,"22192":-1,"22193":-1,"22194":-1,"22195":-1,"22196":2683,"22197":-1,"22198":-1,"22199":-1,"22200":2682,"22201":-1,"22202":-1,"22203":-1,"22204":-1,"22205":-1,"22206":-1,"22207":-1,"22208":-1,"22209":-1,"22210":-1,"22211":-1,"22212":-1,"22213":-1,"22214":-1,"22215":-1,"22216":-1,"22217":-1,"22218":-1,"22219":2684,"22220":-1,"22221":-1,"22222":-1,"22223":2684,"22224":-1,"22225":-1,"22226":-1,"22227":-1,"22228":-1,"22229":-1,"22230":-1,"22231":2685,"22232":-1,"22233":-1,"22234":-1,"22235":-1,"22236":2684,"22237":-1,"22238":-1,"22239":-1,"22240":-1,"22241":-1,"22242":-1,"22243":-1,"22244":2682,"22245":-1,"22246":-1,"22247":-1,"22248":-1,"22249":-1,"22250":-1,"22251":2684,"22252":-1,"22253":-1,"22254":-1,"22255":-1,"22256":-1,"22257":0,"22258":-1,"22259":-1,"22260":-1,"22261":-1,"22262":-1,"22263":-1,"22264":-1,"22265":-1,"22266":-1,"22267":-1,"22268":2684,"22269":-1,"22270":2685,"22271":-1,"22272":-1,"22273":-1,"22274":-1,"22275":-1,"22276":-1,"22277":-1,"22278":-1,"22279":-1,"22280":-1,"22281":-1,"22282":-1,"22283":-1,"22284":-1,"22285":-1,"22286":-1,"22287":-1,"22288":-1,"22289":-1,"22290":2685,"22291":-1,"22292":-1,"22293":-1,"22294":-1,"22295":-1,"22296":-1,"22297":-1,"22298":-1,"22299":-1,"22300":-1,"22301":2684,"22302":2685,"22303":-1,"22304":-1,"22305":-1,"22306":-1,"22307":-1,"22308":-1,"22309":2687,"22310":-1,"22311":-1,"22312":-1,"22313":-1,"22314":-1,"22315":-1,"22316":-1,"22317":-1,"22318":-1,"22319":-1,"22320":-1,"22321":-1,"22322":-1,"22323":-1,"22324":-1,"22325":0,"22326":-1,"22327":-1,"22328":-1,"22329":-1,"22330":-1,"22331":-1,"22332":-1,"22333":-1,"22334":-1,"22335":-1,"22336":-1,"22337":-1,"22338":-1,"22339":-1,"22340":-1,"22341":-1,"22342":-1,"22343":-1,"22344":-1,"22345":-1,"22346":-1,"22347":-1,"22348":-1,"22349":-1,"22350":-1,"22351":-1,"22352":2682,"22353":-1,"22354":-1,"22355":-1,"22356":-1,"22357":-1,"22358":-1,"22359":-1,"22360":2686,"22361":-1,"22362":-1,"22363":-1,"22364":-1,"22365":-1,"22366":-1,"22367":0,"22368":-1,"22369":-1,"22370":-1,"22371":2683,"22372":-1,"22373":-1,"22374":-1,"22375":2686,"22376":-1,"22377":-1,"22378":-1,"22379":-1,"22380":-1,"22381":-1,"22382":-1,"22383":-1,"22384":-1,"22385":0,"22386":-1,"22387":-1,"22388":-1,"22389":-1,"22390":2682,"22391":-1,"22392":-1,"22393":-1,"22394":-1,"22395":-1,"22396":2684,"22397":-1,"22398":2683,"22399":-1,"22400":2686,"22401":-1,"22402":-1,"22403":-1,"22404":-1,"22405":2683,"22406":-1,"22407":-1,"22408":-1,"22409":-1,"22410":-1,"22411":-1,"22412":-1,"22413":-1,"22414":-1,"22415":-1,"22416":-1,"22417":-1,"22418":-1,"22419":-1,"22420":-1,"22421":-1,"22422":-1,"22423":-1,"22424":-1,"22425":2685,"22426":2686,"22427":-1,"22428":-1,"22429":-1,"22430":-1,"22431":-1,"22432":-1,"22433":-1,"22434":-1,"22435":-1,"22436":-1,"22437":-1,"22438":2682,"22439":-1,"22440":-1,"22441":-1,"22442":-1,"22443":-1,"22444":-1,"22445":-1,"22446":-1,"22447":-1,"22448":-1,"22449":-1,"22450":-1,"22451":-1,"22452":-1,"22453":-1,"22454":-1,"22455":-1,"22456":2683,"22457":-1,"22458":-1,"22459":-1,"22460":-1,"22461":2683,"22462":-1,"22463":-1,"22464":-1,"22465":-1,"22466":-1,"22467":-1,"22468":-1,"22469":-1,"22470":-1,"22471":-1,"22472":2686,"22473":0,"22474":-1,"22475":-1,"22476":-1,"22477":-1,"22478":-1,"22479":-1,"22480":-1,"22481":-1,"22482":-1,"22483":-1,"22484":0,"22485":-1,"22486":-1,"22487":-1,"22488":-1,"22489":-1,"22490":-1,"22491":-1,"22492":-1,"22493":-1,"22494":2685,"22495":-1,"22496":-1,"22497":-1,"22498":-1,"22499":-1,"22500":-1,"22501":-1,"22502":-1,"22503":-1,"22504":-1,"22505":-1,"22506":0,"22507":-1,"22508":-1,"22509":-1,"22510":-1,"22511":-1,"22512":-1,"22513":0,"22514":-1,"22515":-1,"22516":-1,"22517":-1,"22518":-1,"22519":-1,"22520":2681,"22521":-1,"22522":-1,"22523":0,"22524":-1,"22525":-1,"22526":-1,"22527":-1,"22528":-1,"22529":-1,"22530":-1,"22531":-1,"22532":-1,"22533":-1,"22534":2685,"22535":0,"22536":-1,"22537":-1,"22538":-1,"22539":2685,"22540":-1,"22541":-1,"22542":-1,"22543":-1,"22544":-1,"22545":-1,"22546":-1,"22547":2685,"22548":-1,"22549":2682,"22550":2685,"22551":-1,"22552":-1,"22553":-1,"22554":-1,"22555":-1,"22556":-1,"22557":-1,"22558":-1,"22559":-1,"22560":-1,"22561":-1,"22562":-1,"22563":-1,"22564":-1,"22565":-1,"22566":2683,"22567":-1,"22568":-1,"22569":-1,"22570":-1,"22571":-1,"22572":-1,"22573":-1,"22574":-1,"22575":-1,"22576":-1,"22577":-1,"22578":-1,"22579":-1,"22580":-1,"22581":2686,"22582":-1,"22583":-1,"22584":-1,"22585":-1,"22586":-1,"22587":-1,"22588":-1,"22589":-1,"22590":-1,"22591":-1,"22592":-1,"22593":-1,"22594":-1,"22595":-1,"22596":-1,"22597":-1,"22598":-1,"22599":-1,"22600":-1,"22601":-1,"22602":-1,"22603":-1,"22604":2683,"22605":-1,"22606":-1,"22607":-1,"22608":-1,"22609":2686,"22610":-1,"22611":-1,"22612":-1,"22613":-1,"22614":-1,"22615":-1,"22616":-1,"22617":0,"22618":-1,"22619":-1,"22620":2685,"22621":-1,"22622":-1,"22623":-1,"22624":-1,"22625":-1,"22626":-1,"22627":-1,"22628":-1,"22629":-1,"22630":-1,"22631":-1,"22632":-1,"22633":-1,"22634":-1,"22635":-1,"22636":0,"22637":2685,"22638":-1,"22639":2682,"22640":-1,"22641":2687,"22642":0,"22643":-1,"22644":-1,"22645":-1,"22646":-1,"22647":-1,"22648":-1,"22649":-1,"22650":-1,"22651":-1,"22652":-1,"22653":-1,"22654":-1,"22655":-1,"22656":2681,"22657":-1,"22658":-1,"22659":-1,"22660":2684,"22661":-1,"22662":-1,"22663":-1,"22664":-1,"22665":-1,"22666":-1,"22667":2683,"22668":-1,"22669":-1,"22670":-1,"22671":-1,"22672":2682,"22673":-1,"22674":-1,"22675":-1,"22676":-1,"22677":-1,"22678":2686,"22679":-1,"22680":-1,"22681":-1,"22682":2686,"22683":-1,"22684":-1,"22685":-1,"22686":-1,"22687":-1,"22688":-1,"22689":-1,"22690":-1,"22691":-1,"22692":-1,"22693":-1,"22694":2684,"22695":-1,"22696":-1,"22697":-1,"22698":-1,"22699":-1,"22700":-1,"22701":-1,"22702":2686,"22703":-1,"22704":-1,"22705":-1,"22706":-1,"22707":2686,"22708":2686,"22709":-1,"22710":2684,"22711":-1,"22712":-1,"22713":-1,"22714":-1,"22715":-1,"22716":2687,"22717":-1,"22718":-1,"22719":2683,"22720":-1,"22721":-1,"22722":2687,"22723":-1,"22724":-1,"22725":-1,"22726":-1,"22727":-1,"22728":-1,"22729":-1,"22730":-1,"22731":2684,"22732":-1,"22733":-1,"22734":-1,"22735":-1,"22736":-1,"22737":-1,"22738":-1,"22739":-1,"22740":-1,"22741":-1,"22742":-1,"22743":-1,"22744":-1,"22745":-1,"22746":-1,"22747":-1,"22748":-1,"22749":-1,"22750":-1,"22751":-1,"22752":-1,"22753":-1,"22754":-1,"22755":-1,"22756":-1,"22757":-1,"22758":-1,"22759":-1,"22760":-1,"22761":-1,"22762":-1,"22763":2685,"22764":2686,"22765":-1,"22766":2683,"22767":-1,"22768":2687,"22769":-1,"22770":-1,"22771":-1,"22772":-1,"22773":-1,"22774":-1,"22775":-1,"22776":-1,"22777":-1,"22778":2681,"22779":-1,"22780":0,"22781":-1,"22782":-1,"22783":-1,"22784":-1,"22785":-1,"22786":2685,"22787":2685,"22788":-1,"22789":-1,"22790":-1,"22791":2682,"22792":-1,"22793":-1,"22794":-1,"22795":-1,"22796":-1,"22797":-1,"22798":-1,"22799":-1,"22800":-1,"22801":-1,"22802":-1,"22803":-1,"22804":-1,"22805":-1,"22806":-1,"22807":-1,"22808":-1,"22809":2684,"22810":-1,"22811":-1,"22812":-1,"22813":-1,"22814":-1,"22815":-1,"22816":-1,"22817":2681,"22818":0,"22819":2686,"22820":2687,"22821":2684,"22822":-1,"22823":-1,"22824":-1,"22825":-1,"22826":-1,"22827":-1,"22828":-1,"22829":-1,"22830":-1,"22831":2682,"22832":-1,"22833":-1,"22834":-1,"22835":-1,"22836":-1,"22837":-1,"22838":-1,"22839":-1,"22840":-1,"22841":-1,"22842":-1,"22843":-1,"22844":-1,"22845":-1,"22846":2685,"22847":-1,"22848":-1,"22849":2686,"22850":-1,"22851":2681,"22852":2687,"22853":-1,"22854":-1,"22855":-1,"22856":-1,"22857":-1,"22858":-1,"22859":-1,"22860":-1,"22861":-1,"22862":-1,"22863":-1,"22864":2687,"22865":-1,"22866":-1,"22867":-1,"22868":-1,"22869":-1,"22870":2686,"22871":-1,"22872":-1,"22873":-1,"22874":-1,"22875":-1,"22876":-1,"22877":2684,"22878":-1,"22879":-1,"22880":-1,"22881":-1,"22882":-1,"22883":-1,"22884":-1,"22885":-1,"22886":2683,"22887":-1,"22888":-1,"22889":-1,"22890":-1,"22891":-1,"22892":-1,"22893":-1,"22894":-1,"22895":-1,"22896":-1,"22897":-1,"22898":0,"22899":-1,"22900":-1,"22901":2683,"22902":-1,"22903":-1,"22904":2684,"22905":-1,"22906":-1,"22907":-1,"22908":-1,"22909":-1,"22910":-1,"22911":-1,"22912":-1,"22913":-1,"22914":-1,"22915":-1,"22916":-1,"22917":-1,"22918":2686,"22919":-1,"22920":-1,"22921":-1,"22922":-1,"22923":0,"22924":2684,"22925":2684,"22926":-1,"22927":-1,"22928":2687,"22929":-1,"22930":-1,"22931":-1,"22932":-1,"22933":-1,"22934":-1,"22935":-1,"22936":-1,"22937":0,"22938":-1,"22939":-1,"22940":-1,"22941":-1,"22942":-1,"22943":-1,"22944":-1,"22945":-1,"22946":-1,"22947":-1,"22948":-1,"22949":-1,"22950":0,"22951":-1,"22952":-1,"22953":-1,"22954":-1,"22955":-1,"22956":-1,"22957":-1,"22958":2687,"22959":-1,"22960":-1,"22961":-1,"22962":-1,"22963":-1,"22964":-1,"22965":0,"22966":-1,"22967":-1,"22968":-1,"22969":-1,"22970":-1,"22971":-1,"22972":-1,"22973":-1,"22974":-1,"22975":-1,"22976":-1,"22977":-1,"22978":-1,"22979":0,"22980":-1,"22981":-1,"22982":2687,"22983":-1,"22984":-1,"22985":-1,"22986":-1,"22987":2684,"22988":-1,"22989":-1,"22990":-1,"22991":-1,"22992":-1,"22993":-1,"22994":-1,"22995":-1,"22996":-1,"22997":-1,"22998":2685,"22999":-1,"23000":-1,"23001":-1,"23002":-1,"23003":-1,"23004":-1,"23005":-1,"23006":-1,"23007":0,"23008":0,"23009":-1,"23010":2684,"23011":-1,"23012":-1,"23013":-1,"23014":-1,"23015":-1,"23016":-1,"23017":-1,"23018":-1,"23019":-1,"23020":-1,"23021":-1,"23022":-1,"23023":-1,"23024":-1,"23025":-1,"23026":2685,"23027":-1,"23028":2685,"23029":-1,"23030":-1,"23031":-1,"23032":2685,"23033":2683,"23034":-1,"23035":2682,"23036":-1,"23037":-1,"23038":-1,"23039":2683,"23040":-1,"23041":-1,"23042":2681,"23043":-1,"23044":-1,"23045":2682,"23046":-1,"23047":-1,"23048":-1,"23049":-1,"23050":-1,"23051":-1,"23052":-1,"23053":-1,"23054":-1,"23055":-1,"23056":-1,"23057":-1,"23058":-1,"23059":2685,"23060":-1,"23061":-1,"23062":-1,"23063":-1,"23064":-1,"23065":-1,"23066":-1,"23067":-1,"23068":-1,"23069":-1,"23070":-1,"23071":-1,"23072":-1,"23073":-1,"23074":-1,"23075":0,"23076":-1,"23077":-1,"23078":-1,"23079":2687,"23080":-1,"23081":-1,"23082":-1,"23083":-1,"23084":-1,"23085":2685,"23086":-1,"23087":-1,"23088":-1,"23089":-1,"23090":-1,"23091":-1,"23092":-1,"23093":-1,"23094":-1,"23095":-1,"23096":-1,"23097":-1,"23098":-1,"23099":-1,"23100":-1,"23101":-1,"23102":-1,"23103":-1,"23104":2682,"23105":-1,"23106":-1,"23107":-1,"23108":-1,"23109":0,"23110":-1,"23111":0,"23112":-1,"23113":-1,"23114":-1,"23115":-1,"23116":-1,"23117":-1,"23118":0,"23119":-1,"23120":-1,"23121":0,"23122":-1,"23123":-1,"23124":2686,"23125":-1,"23126":-1,"23127":-1,"23128":-1,"23129":-1,"23130":2686,"23131":-1,"23132":-1,"23133":-1,"23134":-1,"23135":-1,"23136":-1,"23137":-1,"23138":-1,"23139":-1,"23140":-1,"23141":-1,"23142":-1,"23143":-1,"23144":-1,"23145":-1,"23146":-1,"23147":-1,"23148":-1,"23149":2686,"23150":-1,"23151":2682,"23152":0,"23153":-1,"23154":-1,"23155":-1,"23156":-1,"23157":2686,"23158":2683,"23159":-1,"23160":-1,"23161":-1,"23162":-1,"23163":-1,"23164":-1,"23165":-1,"23166":-1,"23167":-1,"23168":-1,"23169":-1,"23170":-1,"23171":-1,"23172":0,"23173":2686,"23174":-1,"23175":-1,"23176":-1,"23177":-1,"23178":-1,"23179":-1,"23180":-1,"23181":-1,"23182":-1,"23183":-1,"23184":-1,"23185":-1,"23186":-1,"23187":-1,"23188":-1,"23189":-1,"23190":-1,"23191":-1,"23192":-1,"23193":-1,"23194":-1,"23195":-1,"23196":-1,"23197":-1,"23198":-1,"23199":-1,"23200":-1,"23201":2684,"23202":2682,"23203":-1,"23204":-1,"23205":-1,"23206":-1,"23207":-1,"23208":-1,"23209":-1,"23210":-1,"23211":-1,"23212":2687,"23213":-1,"23214":2686,"23215":-1,"23216":-1,"23217":-1,"23218":-1,"23219":-1,"23220":2683,"23221":-1,"23222":-1,"23223":-1,"23224":-1,"23225":-1,"23226":-1,"23227":-1,"23228":-1,"23229":-1,"23230":-1,"23231":-1,"23232":-1,"23233":2683,"23234":-1,"23235":2686,"23236":-1,"23237":-1,"23238":-1,"23239":-1,"23240":0,"23241":0,"23242":-1,"23243":-1,"23244":0,"23245":-1,"23246":-1,"23247":-1,"23248":-1,"23249":-1,"23250":-1,"23251":-1,"23252":-1,"23253":-1,"23254":0,"23255":2684,"23256":-1,"23257":-1,"23258":-1,"23259":-1,"23260":-1,"23261":-1,"23262":-1,"23263":2686,"23264":-1,"23265":-1,"23266":-1,"23267":-1,"23268":-1,"23269":2687,"23270":-1,"23271":-1,"23272":-1,"23273":-1,"23274":-1,"23275":-1,"23276":-1,"23277":-1,"23278":-1,"23279":-1,"23280":-1,"23281":-1,"23282":2683,"23283":-1,"23284":0,"23285":2682,"23286":-1,"23287":-1,"23288":2687,"23289":-1,"23290":-1,"23291":2685,"23292":-1,"23293":-1,"23294":-1,"23295":-1,"23296":-1,"23297":-1,"23298":-1,"23299":-1,"23300":-1,"23301":-1,"23302":-1,"23303":-1,"23304":2686,"23305":-1,"23306":-1,"23307":2681,"23308":-1,"23309":-1,"23310":-1,"23311":-1,"23312":0,"23313":-1,"23314":2685,"23315":-1,"23316":-1,"23317":-1,"23318":-1,"23319":-1,"23320":-1,"23321":-1,"23322":2681,"23323":-1,"23324":-1,"23325":-1,"23326":-1,"23327":-1,"23328":-1,"23329":-1,"23330":-1,"23331":2683,"23332":-1,"23333":-1,"23334":2682,"23335":-1,"23336":-1,"23337":-1,"23338":-1,"23339":-1,"23340":-1,"23341":-1,"23342":-1,"23343":-1,"23344":-1,"23345":-1,"23346":-1,"23347":-1,"23348":-1,"23349":-1,"23350":-1,"23351":-1,"23352":-1,"23353":2682,"23354":-1,"23355":-1,"23356":2684,"23357":-1,"23358":-1,"23359":-1,"23360":-1,"23361":-1,"23362":2681,"23363":-1,"23364":-1,"23365":-1,"23366":-1,"23367":2683,"23368":-1,"23369":-1,"23370":2682,"23371":-1,"23372":-1,"23373":-1,"23374":-1,"23375":-1,"23376":-1,"23377":-1,"23378":-1,"23379":2685,"23380":-1,"23381":-1,"23382":2685,"23383":0,"23384":-1,"23385":-1,"23386":-1,"23387":-1,"23388":-1,"23389":-1,"23390":-1,"23391":-1,"23392":-1,"23393":-1,"23394":-1,"23395":-1,"23396":-1,"23397":-1,"23398":-1,"23399":-1,"23400":-1,"23401":-1,"23402":-1,"23403":-1,"23404":-1,"23405":-1,"23406":-1,"23407":-1,"23408":-1,"23409":-1,"23410":-1,"23411":-1,"23412":-1,"23413":-1,"23414":-1,"23415":-1,"23416":-1,"23417":-1,"23418":-1,"23419":-1,"23420":-1,"23421":-1,"23422":2684,"23423":-1,"23424":-1,"23425":-1,"23426":2685,"23427":-1,"23428":-1,"23429":-1,"23430":-1,"23431":2681,"23432":2686,"23433":-1,"23434":0,"23435":-1,"23436":-1,"23437":-1,"23438":-1,"23439":-1,"23440":-1,"23441":-1,"23442":-1,"23443":-1,"23444":-1,"23445":-1,"23446":-1,"23447":-1,"23448":-1,"23449":-1,"23450":-1,"23451":-1,"23452":-1,"23453":-1,"23454":2687,"23455":-1,"23456":2687,"23457":-1,"23458":-1,"23459":-1,"23460":2685,"23461":-1,"23462":2686,"23463":-1,"23464":-1,"23465":-1,"23466":-1,"23467":-1,"23468":-1,"23469":-1,"23470":-1,"23471":2683,"23472":-1,"23473":-1,"23474":-1,"23475":-1,"23476":2686,"23477":-1,"23478":-1,"23479":-1,"23480":2682,"23481":-1,"23482":-1,"23483":-1,"23484":0,"23485":-1,"23486":-1,"23487":-1,"23488":-1,"23489":-1,"23490":-1,"23491":-1,"23492":-1,"23493":-1,"23494":-1,"23495":-1,"23496":-1,"23497":2686,"23498":-1,"23499":-1,"23500":-1,"23501":-1,"23502":-1,"23503":2685,"23504":-1,"23505":-1,"23506":-1,"23507":-1,"23508":-1,"23509":-1,"23510":-1,"23511":2686,"23512":-1,"23513":-1,"23514":-1,"23515":-1,"23516":-1,"23517":-1,"23518":-1,"23519":-1,"23520":-1,"23521":2685,"23522":2685,"23523":-1,"23524":-1,"23525":-1,"23526":-1,"23527":-1,"23528":-1,"23529":-1,"23530":-1,"23531":2684,"23532":-1,"23533":-1,"23534":-1,"23535":-1,"23536":-1,"23537":-1,"23538":-1,"23539":-1,"23540":-1,"23541":-1,"23542":-1,"23543":-1,"23544":-1,"23545":2683,"23546":-1,"23547":-1,"23548":-1,"23549":-1,"23550":-1,"23551":-1,"23552":-1,"23553":2682,"23554":-1,"23555":-1,"23556":-1,"23557":2684,"23558":-1,"23559":-1,"23560":-1,"23561":-1,"23562":-1,"23563":-1,"23564":0,"23565":-1,"23566":-1,"23567":-1,"23568":-1,"23569":2681,"23570":-1,"23571":-1,"23572":-1,"23573":-1,"23574":-1,"23575":-1,"23576":-1,"23577":0,"23578":2681,"23579":-1,"23580":2682,"23581":-1,"23582":2685,"23583":-1,"23584":-1,"23585":-1,"23586":-1,"23587":-1,"23588":-1,"23589":-1,"23590":-1,"23591":-1,"23592":-1,"23593":-1,"23594":-1,"23595":-1,"23596":-1,"23597":2686,"23598":-1,"23599":-1,"23600":-1,"23601":-1,"23602":-1,"23603":2682,"23604":-1,"23605":-1,"23606":-1,"23607":0,"23608":-1,"23609":2687,"23610":2684,"23611":-1,"23612":2685,"23613":-1,"23614":-1,"23615":-1,"23616":-1,"23617":-1,"23618":-1,"23619":-1,"23620":-1,"23621":-1,"23622":2686,"23623":-1,"23624":-1,"23625":-1,"23626":2683,"23627":-1,"23628":-1,"23629":-1,"23630":-1,"23631":-1,"23632":-1,"23633":-1,"23634":-1,"23635":-1,"23636":-1,"23637":-1,"23638":-1,"23639":-1,"23640":-1,"23641":-1,"23642":-1,"23643":-1,"23644":-1,"23645":-1,"23646":2683,"23647":-1,"23648":-1,"23649":-1,"23650":2686,"23651":-1,"23652":2686,"23653":0,"23654":-1,"23655":-1,"23656":-1,"23657":-1,"23658":-1,"23659":-1,"23660":-1,"23661":-1,"23662":-1,"23663":-1,"23664":-1,"23665":-1,"23666":-1,"23667":-1,"23668":-1,"23669":-1,"23670":-1,"23671":-1,"23672":2687,"23673":-1,"23674":-1,"23675":-1,"23676":-1,"23677":-1,"23678":-1,"23679":-1,"23680":-1,"23681":-1,"23682":-1,"23683":-1,"23684":-1,"23685":-1,"23686":-1,"23687":-1,"23688":-1,"23689":-1,"23690":-1,"23691":-1,"23692":-1,"23693":-1,"23694":-1,"23695":-1,"23696":-1,"23697":-1,"23698":-1,"23699":-1,"23700":-1,"23701":-1,"23702":-1,"23703":-1,"23704":-1,"23705":2682,"23706":-1,"23707":-1,"23708":-1,"23709":2687,"23710":-1,"23711":-1,"23712":-1,"23713":-1,"23714":-1,"23715":0,"23716":-1,"23717":-1,"23718":-1,"23719":-1,"23720":-1,"23721":-1,"23722":-1,"23723":-1,"23724":-1,"23725":-1,"23726":-1,"23727":-1,"23728":-1,"23729":-1,"23730":-1,"23731":2682,"23732":-1,"23733":-1,"23734":-1,"23735":-1,"23736":-1,"23737":-1,"23738":-1,"23739":-1,"23740":-1,"23741":2681,"23742":-1,"23743":-1,"23744":-1,"23745":-1,"23746":-1,"23747":-1,"23748":-1,"23749":-1,"23750":0,"23751":-1,"23752":-1,"23753":2685,"23754":-1,"23755":-1,"23756":-1,"23757":-1,"23758":-1,"23759":-1,"23760":-1,"23761":2687,"23762":2686,"23763":-1,"23764":-1,"23765":-1,"23766":-1,"23767":-1,"23768":-1,"23769":-1,"23770":2686,"23771":-1,"23772":-1,"23773":-1,"23774":-1,"23775":-1,"23776":0,"23777":-1,"23778":-1,"23779":-1,"23780":-1,"23781":-1,"23782":-1,"23783":-1,"23784":-1,"23785":2684,"23786":-1,"23787":-1,"23788":2683,"23789":-1,"23790":2685,"23791":-1,"23792":-1,"23793":-1,"23794":-1,"23795":2687,"23796":-1,"23797":-1,"23798":-1,"23799":-1,"23800":-1,"23801":-1,"23802":-1,"23803":-1,"23804":-1,"23805":-1,"23806":-1,"23807":-1,"23808":0,"23809":2681,"23810":-1,"23811":-1,"23812":0,"23813":0,"23814":-1,"23815":-1,"23816":-1,"23817":-1,"23818":2687,"23819":-1,"23820":-1,"23821":2683,"23822":-1,"23823":-1,"23824":-1,"23825":-1,"23826":-1,"23827":-1,"23828":2686,"23829":-1,"23830":-1,"23831":-1,"23832":2684,"23833":-1,"23834":-1,"23835":-1,"23836":-1,"23837":-1,"23838":-1,"23839":-1,"23840":-1,"23841":-1,"23842":2686,"23843":-1,"23844":-1,"23845":2684,"23846":-1,"23847":-1,"23848":2682,"23849":-1,"23850":-1,"23851":-1,"23852":-1,"23853":-1,"23854":-1,"23855":-1,"23856":-1,"23857":-1,"23858":-1,"23859":-1,"23860":-1,"23861":-1,"23862":-1,"23863":-1,"23864":2681,"23865":-1,"23866":-1,"23867":-1,"23868":-1,"23869":-1,"23870":-1,"23871":-1,"23872":-1,"23873":-1,"23874":2683,"23875":-1,"23876":-1,"23877":-1,"23878":2686,"23879":-1,"23880":-1,"23881":-1,"23882":-1,"23883":-1,"23884":-1,"23885":-1,"23886":-1,"23887":-1,"23888":-1,"23889":-1,"23890":-1,"23891":-1,"23892":0,"23893":-1,"23894":-1,"23895":2684,"23896":-1,"23897":-1,"23898":-1,"23899":-1,"23900":2683,"23901":-1,"23902":-1,"23903":-1,"23904":-1,"23905":-1,"23906":-1,"23907":-1,"23908":-1,"23909":2685,"23910":-1,"23911":-1,"23912":-1,"23913":-1,"23914":-1,"23915":-1,"23916":-1,"23917":-1,"23918":2685,"23919":-1,"23920":-1,"23921":2684,"23922":-1,"23923":-1,"23924":-1,"23925":2683,"23926":-1,"23927":-1,"23928":-1,"23929":-1,"23930":2683,"23931":-1,"23932":-1,"23933":-1,"23934":-1,"23935":-1,"23936":-1,"23937":-1,"23938":-1,"23939":-1,"23940":-1,"23941":-1,"23942":-1,"23943":-1,"23944":-1,"23945":-1,"23946":-1,"23947":-1,"23948":-1,"23949":-1,"23950":0,"23951":-1,"23952":2686,"23953":-1,"23954":-1,"23955":-1,"23956":-1,"23957":-1,"23958":-1,"23959":-1,"23960":-1,"23961":-1,"23962":-1,"23963":-1,"23964":-1,"23965":-1,"23966":-1,"23967":-1,"23968":-1,"23969":-1,"23970":-1,"23971":-1,"23972":-1,"23973":-1,"23974":-1,"23975":-1,"23976":-1,"23977":2682,"23978":-1,"23979":-1,"23980":-1,"23981":-1,"23982":-1,"23983":-1,"23984":-1,"23985":2681,"23986":2684,"23987":-1,"23988":-1,"23989":-1,"23990":0,"23991":-1,"23992":-1,"23993":-1,"23994":-1,"23995":-1,"23996":-1,"23997":-1,"23998":-1,"23999":-1,"24000":-1,"24001":-1,"24002":-1,"24003":-1,"24004":-1,"24005":-1,"24006":-1,"24007":-1,"24008":2685,"24009":-1,"24010":-1,"24011":-1,"24012":-1,"24013":-1,"24014":-1,"24015":-1,"24016":-1,"24017":-1,"24018":2682,"24019":-1,"24020":-1,"24021":-1,"24022":-1,"24023":-1,"24024":-1,"24025":-1,"24026":-1,"24027":-1,"24028":-1,"24029":-1,"24030":-1,"24031":2682,"24032":-1,"24033":-1,"24034":-1,"24035":-1,"24036":-1,"24037":-1,"24038":-1,"24039":-1,"24040":-1,"24041":-1,"24042":2682,"24043":-1,"24044":-1,"24045":-1,"24046":-1,"24047":-1,"24048":-1,"24049":-1,"24050":-1,"24051":-1,"24052":-1,"24053":-1,"24054":-1,"24055":-1,"24056":-1,"24057":-1,"24058":-1,"24059":-1,"24060":-1,"24061":-1,"24062":2686,"24063":-1,"24064":-1,"24065":0,"24066":-1,"24067":-1,"24068":-1,"24069":-1,"24070":2684,"24071":-1,"24072":2683,"24073":-1,"24074":-1,"24075":-1,"24076":2687,"24077":-1,"24078":-1,"24079":-1,"24080":-1,"24081":-1,"24082":-1,"24083":-1,"24084":-1,"24085":-1,"24086":-1,"24087":-1,"24088":-1,"24089":2681,"24090":-1,"24091":-1,"24092":-1,"24093":2681,"24094":-1,"24095":-1,"24096":-1,"24097":2684,"24098":-1,"24099":-1,"24100":-1,"24101":-1,"24102":-1,"24103":-1,"24104":-1,"24105":-1,"24106":-1,"24107":-1,"24108":-1,"24109":-1,"24110":-1,"24111":-1,"24112":-1,"24113":-1,"24114":-1,"24115":-1,"24116":-1,"24117":-1,"24118":-1,"24119":-1,"24120":-1,"24121":-1,"24122":-1,"24123":-1,"24124":-1,"24125":-1,"24126":-1,"24127":-1,"24128":-1,"24129":-1,"24130":-1,"24131":-1,"24132":-1,"24133":-1,"24134":2682,"24135":0,"24136":-1,"24137":-1,"24138":-1,"24139":-1,"24140":-1,"24141":-1,"24142":-1,"24143":-1,"24144":-1,"24145":2685,"24146":-1,"24147":-1,"24148":-1,"24149":2683,"24150":-1,"24151":-1,"24152":-1,"24153":-1,"24154":-1,"24155":-1,"24156":-1,"24157":-1,"24158":-1,"24159":-1,"24160":-1,"24161":-1,"24162":-1,"24163":-1,"24164":2686,"24165":-1,"24166":-1,"24167":-1,"24168":-1,"24169":-1,"24170":-1,"24171":-1,"24172":-1,"24173":-1,"24174":-1,"24175":2684,"24176":-1,"24177":-1,"24178":-1,"24179":-1,"24180":-1,"24181":-1,"24182":-1,"24183":-1,"24184":2683,"24185":2681,"24186":2682,"24187":-1,"24188":-1,"24189":2682,"24190":-1,"24191":-1,"24192":-1,"24193":-1,"24194":-1,"24195":-1,"24196":-1,"24197":-1,"24198":-1,"24199":-1,"24200":-1,"24201":-1,"24202":-1,"24203":-1,"24204":-1,"24205":2682,"24206":-1,"24207":-1,"24208":-1,"24209":0,"24210":-1,"24211":-1,"24212":-1,"24213":2686,"24214":-1,"24215":-1,"24216":-1,"24217":2686,"24218":-1,"24219":-1,"24220":2681,"24221":2684,"24222":-1,"24223":0,"24224":-1,"24225":-1,"24226":0,"24227":-1,"24228":-1,"24229":-1,"24230":-1,"24231":-1,"24232":-1,"24233":-1,"24234":-1,"24235":-1,"24236":-1,"24237":-1,"24238":0,"24239":-1,"24240":-1,"24241":-1,"24242":-1,"24243":-1,"24244":-1,"24245":-1,"24246":-1,"24247":-1,"24248":-1,"24249":2683,"24250":-1,"24251":-1,"24252":-1,"24253":-1,"24254":-1,"24255":-1,"24256":-1,"24257":-1,"24258":-1,"24259":-1,"24260":-1,"24261":0,"24262":-1,"24263":-1,"24264":-1,"24265":-1,"24266":2687,"24267":-1,"24268":-1,"24269":-1,"24270":-1,"24271":2686,"24272":-1,"24273":-1,"24274":-1,"24275":-1,"24276":-1,"24277":-1,"24278":-1,"24279":-1,"24280":-1,"24281":-1,"24282":-1,"24283":-1,"24284":-1,"24285":2685,"24286":-1,"24287":-1,"24288":-1,"24289":-1,"24290":-1,"24291":-1,"24292":-1,"24293":0,"24294":-1,"24295":2684,"24296":-1,"24297":-1,"24298":-1,"24299":-1,"24300":-1,"24301":-1,"24302":-1,"24303":-1,"24304":-1,"24305":-1,"24306":-1,"24307":-1,"24308":-1,"24309":-1,"24310":-1,"24311":2681,"24312":2683,"24313":-1,"24314":-1,"24315":-1,"24316":-1,"24317":-1,"24318":-1,"24319":-1,"24320":-1,"24321":-1,"24322":-1,"24323":-1,"24324":-1,"24325":-1,"24326":-1,"24327":-1,"24328":-1,"24329":-1,"24330":-1,"24331":2686,"24332":0,"24333":-1,"24334":-1,"24335":-1,"24336":-1,"24337":-1,"24338":-1,"24339":-1,"24340":-1,"24341":-1,"24342":-1,"24343":-1,"24344":-1,"24345":2681,"24346":-1,"24347":-1,"24348":-1,"24349":-1,"24350":-1,"24351":-1,"24352":-1,"24353":-1,"24354":-1,"24355":0,"24356":-1,"24357":-1,"24358":-1,"24359":-1,"24360":-1,"24361":2685,"24362":-1,"24363":-1,"24364":-1,"24365":2686,"24366":-1,"24367":-1,"24368":-1,"24369":0,"24370":-1,"24371":-1,"24372":-1,"24373":-1,"24374":-1,"24375":2681,"24376":-1,"24377":2682,"24378":-1,"24379":-1,"24380":-1,"24381":-1,"24382":-1,"24383":-1,"24384":-1,"24385":-1,"24386":-1,"24387":-1,"24388":-1,"24389":-1,"24390":-1,"24391":2685,"24392":-1,"24393":-1,"24394":2681,"24395":-1,"24396":-1,"24397":-1,"24398":2685,"24399":-1,"24400":-1,"24401":-1,"24402":-1,"24403":-1,"24404":-1,"24405":-1,"24406":-1,"24407":-1,"24408":-1,"24409":-1,"24410":-1,"24411":-1,"24412":-1,"24413":-1,"24414":-1,"24415":-1,"24416":2684,"24417":-1,"24418":-1,"24419":-1,"24420":-1,"24421":-1,"24422":-1,"24423":-1,"24424":-1,"24425":-1,"24426":-1,"24427":-1,"24428":-1,"24429":0,"24430":2683,"24431":-1,"24432":-1,"24433":-1,"24434":-1,"24435":-1,"24436":-1,"24437":-1,"24438":-1,"24439":0,"24440":-1,"24441":-1,"24442":-1,"24443":-1,"24444":2685,"24445":-1,"24446":-1,"24447":-1,"24448":-1,"24449":2686,"24450":-1,"24451":-1,"24452":-1,"24453":-1,"24454":-1,"24455":-1,"24456":-1,"24457":-1,"24458":-1,"24459":-1,"24460":2684,"24461":-1,"24462":-1,"24463":-1,"24464":-1,"24465":2681,"24466":2686,"24467":-1,"24468":-1,"24469":-1,"24470":-1,"24471":-1,"24472":-1,"24473":-1,"24474":-1,"24475":-1,"24476":-1,"24477":2686,"24478":-1,"24479":2683,"24480":-1,"24481":-1,"24482":-1,"24483":-1,"24484":-1,"24485":-1,"24486":-1,"24487":-1,"24488":-1,"24489":-1,"24490":-1,"24491":2684,"24492":-1,"24493":-1,"24494":-1,"24495":-1,"24496":-1,"24497":2685,"24498":-1,"24499":-1,"24500":-1,"24501":-1,"24502":-1,"24503":-1,"24504":-1,"24505":-1,"24506":-1,"24507":-1,"24508":-1,"24509":-1,"24510":-1,"24511":2687,"24512":2685,"24513":-1,"24514":-1,"24515":-1,"24516":-1,"24517":-1,"24518":-1,"24519":-1,"24520":-1,"24521":-1,"24522":2682,"24523":-1,"24524":2682,"24525":-1,"24526":-1,"24527":-1,"24528":0,"24529":-1,"24530":-1,"24531":-1,"24532":-1,"24533":-1,"24534":-1,"24535":-1,"24536":-1,"24537":-1,"24538":2681,"24539":-1,"24540":-1,"24541":2685,"24542":-1,"24543":-1,"24544":-1,"24545":-1,"24546":2686,"24547":0,"24548":2687,"24549":-1,"24550":-1,"24551":-1,"24552":-1,"24553":-1,"24554":-1,"24555":-1,"24556":-1,"24557":-1,"24558":-1,"24559":2683,"24560":2684,"24561":-1,"24562":-1,"24563":-1,"24564":-1,"24565":-1,"24566":-1,"24567":2683,"24568":-1,"24569":-1,"24570":-1,"24571":-1,"24572":-1,"24573":-1,"24574":-1,"24575":-1,"24576":-1,"24577":-1,"24578":-1,"24579":-1,"24580":-1,"24581":-1,"24582":-1,"24583":-1,"24584":-1,"24585":-1,"24586":-1,"24587":-1,"24588":-1,"24589":-1,"24590":-1,"24591":0,"24592":-1,"24593":-1,"24594":0,"24595":2685,"24596":2681,"24597":-1,"24598":-1,"24599":-1,"24600":-1,"24601":-1,"24602":-1,"24603":2684,"24604":-1,"24605":-1,"24606":2683,"24607":-1,"24608":-1,"24609":2683,"24610":-1,"24611":-1,"24612":-1,"24613":-1,"24614":-1,"24615":-1,"24616":-1,"24617":-1,"24618":-1,"24619":-1,"24620":-1,"24621":-1,"24622":-1,"24623":-1,"24624":2681,"24625":2682,"24626":-1,"24627":-1,"24628":-1,"24629":-1,"24630":2686,"24631":-1,"24632":-1,"24633":-1,"24634":-1,"24635":-1,"24636":-1,"24637":-1,"24638":0,"24639":-1,"24640":-1,"24641":-1,"24642":0,"24643":0,"24644":-1,"24645":-1,"24646":-1,"24647":-1,"24648":-1,"24649":-1,"24650":-1,"24651":-1,"24652":2681,"24653":-1,"24654":-1,"24655":-1,"24656":-1,"24657":-1,"24658":-1,"24659":-1,"24660":-1,"24661":2684,"24662":-1,"24663":-1,"24664":2686,"24665":-1,"24666":-1,"24667":-1,"24668":-1,"24669":-1,"24670":-1,"24671":-1,"24672":-1,"24673":-1,"24674":-1,"24675":-1,"24676":-1,"24677":-1,"24678":2687,"24679":-1,"24680":-1,"24681":-1,"24682":-1,"24683":-1,"24684":-1,"24685":2683,"24686":2687,"24687":-1,"24688":-1,"24689":-1,"24690":2686,"24691":-1,"24692":-1,"24693":2683,"24694":-1,"24695":2683,"24696":-1,"24697":-1,"24698":0,"24699":-1,"24700":0,"24701":-1,"24702":-1,"24703":-1,"24704":-1,"24705":-1,"24706":-1,"24707":-1,"24708":-1,"24709":-1,"24710":-1,"24711":-1,"24712":-1,"24713":-1,"24714":-1,"24715":2684,"24716":-1,"24717":-1,"24718":2686,"24719":-1,"24720":-1,"24721":-1,"24722":-1,"24723":-1,"24724":-1,"24725":-1,"24726":-1,"24727":-1,"24728":-1,"24729":2685,"24730":2682,"24731":-1,"24732":-1,"24733":-1,"24734":-1,"24735":-1,"24736":-1,"24737":-1,"24738":-1,"24739":-1,"24740":-1,"24741":-1,"24742":-1,"24743":-1,"24744":-1,"24745":-1,"24746":-1,"24747":-1,"24748":-1,"24749":-1,"24750":-1,"24751":-1,"24752":2681,"24753":-1,"24754":-1,"24755":-1,"24756":-1,"24757":-1,"24758":-1,"24759":-1,"24760":-1,"24761":-1,"24762":2681,"24763":-1,"24764":2683,"24765":-1,"24766":2687,"24767":-1,"24768":-1,"24769":-1,"24770":-1,"24771":-1,"24772":-1,"24773":-1,"24774":-1,"24775":-1,"24776":-1,"24777":-1,"24778":0,"24779":-1,"24780":-1,"24781":-1,"24782":0,"24783":-1,"24784":2684,"24785":-1,"24786":-1,"24787":-1,"24788":-1,"24789":-1,"24790":2684,"24791":-1,"24792":-1,"24793":-1,"24794":-1,"24795":-1,"24796":2685,"24797":-1,"24798":-1,"24799":-1,"24800":-1,"24801":-1,"24802":-1,"24803":-1,"24804":-1,"24805":-1,"24806":-1,"24807":-1,"24808":-1,"24809":-1,"24810":-1,"24811":-1,"24812":-1,"24813":-1,"24814":-1,"24815":-1,"24816":-1,"24817":-1,"24818":-1,"24819":-1,"24820":-1,"24821":-1,"24822":2684,"24823":2685,"24824":-1,"24825":-1,"24826":-1,"24827":-1,"24828":-1,"24829":-1,"24830":-1,"24831":-1,"24832":2687,"24833":-1,"24834":-1,"24835":-1,"24836":-1,"24837":-1,"24838":-1,"24839":-1,"24840":-1,"24841":-1,"24842":-1,"24843":-1,"24844":-1,"24845":-1,"24846":-1,"24847":-1,"24848":2684,"24849":2685,"24850":2681,"24851":-1,"24852":-1,"24853":-1,"24854":-1,"24855":-1,"24856":-1,"24857":-1,"24858":-1,"24859":-1,"24860":2682,"24861":-1,"24862":-1,"24863":-1,"24864":-1,"24865":0,"24866":-1,"24867":-1,"24868":2683,"24869":-1,"24870":-1,"24871":-1,"24872":-1,"24873":-1,"24874":-1,"24875":-1,"24876":-1,"24877":-1,"24878":-1,"24879":-1,"24880":2685,"24881":-1,"24882":-1,"24883":-1,"24884":-1,"24885":-1,"24886":0,"24887":-1,"24888":-1,"24889":-1,"24890":-1,"24891":-1,"24892":-1,"24893":0,"24894":-1,"24895":-1,"24896":-1,"24897":-1,"24898":-1,"24899":-1,"24900":-1,"24901":-1,"24902":-1,"24903":-1,"24904":-1,"24905":2684,"24906":2686,"24907":-1,"24908":2684,"24909":2685,"24910":-1,"24911":2683,"24912":-1,"24913":-1,"24914":-1,"24915":-1,"24916":-1,"24917":-1,"24918":-1,"24919":-1,"24920":-1,"24921":-1,"24922":-1,"24923":-1,"24924":-1,"24925":-1,"24926":-1,"24927":-1,"24928":0,"24929":2686,"24930":-1,"24931":-1,"24932":-1,"24933":-1,"24934":-1,"24935":-1,"24936":2685,"24937":-1,"24938":2685,"24939":-1,"24940":-1,"24941":-1,"24942":-1,"24943":2685,"24944":2686,"24945":-1,"24946":2683,"24947":-1,"24948":-1,"24949":-1,"24950":-1,"24951":-1,"24952":-1,"24953":2684,"24954":0,"24955":-1,"24956":-1,"24957":-1,"24958":-1,"24959":-1,"24960":0,"24961":-1,"24962":-1,"24963":2686,"24964":-1,"24965":2683,"24966":-1,"24967":-1,"24968":2683,"24969":-1,"24970":-1,"24971":-1,"24972":-1,"24973":-1,"24974":-1,"24975":-1,"24976":-1,"24977":-1,"24978":-1,"24979":-1,"24980":-1,"24981":-1,"24982":-1,"24983":-1,"24984":2686,"24985":-1,"24986":-1,"24987":-1,"24988":2683,"24989":-1,"24990":-1,"24991":-1,"24992":-1,"24993":-1,"24994":-1,"24995":2684,"24996":0,"24997":-1,"24998":2684,"24999":-1,"25000":2686,"25001":-1,"25002":-1,"25003":0,"25004":-1,"25005":2685,"25006":-1,"25007":-1,"25008":-1,"25009":-1,"25010":-1,"25011":-1,"25012":-1,"25013":-1,"25014":-1,"25015":0,"25016":2682,"25017":-1,"25018":-1,"25019":-1,"25020":-1,"25021":-1,"25022":-1,"25023":-1,"25024":-1,"25025":0,"25026":-1,"25027":-1,"25028":-1,"25029":-1,"25030":-1,"25031":-1,"25032":-1,"25033":2684,"25034":-1,"25035":-1,"25036":-1,"25037":-1,"25038":-1,"25039":-1,"25040":-1,"25041":-1,"25042":-1,"25043":2684,"25044":-1,"25045":0,"25046":-1,"25047":-1,"25048":-1,"25049":-1,"25050":-1,"25051":-1,"25052":2684,"25053":2687,"25054":-1,"25055":-1,"25056":-1,"25057":-1,"25058":0,"25059":-1,"25060":0,"25061":0,"25062":-1,"25063":-1,"25064":-1,"25065":-1,"25066":-1,"25067":-1,"25068":-1,"25069":-1,"25070":-1,"25071":-1,"25072":-1,"25073":-1,"25074":-1,"25075":-1,"25076":-1,"25077":-1,"25078":-1,"25079":-1,"25080":2684,"25081":-1,"25082":-1,"25083":-1,"25084":-1,"25085":-1,"25086":2682,"25087":-1,"25088":-1,"25089":-1,"25090":2685,"25091":-1,"25092":-1,"25093":-1,"25094":-1,"25095":-1,"25096":2685,"25097":-1,"25098":-1,"25099":2681,"25100":-1,"25101":-1,"25102":-1,"25103":-1,"25104":-1,"25105":-1,"25106":2683,"25107":-1,"25108":-1,"25109":-1,"25110":-1,"25111":-1,"25112":-1,"25113":2682,"25114":2682,"25115":-1,"25116":-1,"25117":2686,"25118":-1,"25119":-1,"25120":-1,"25121":0,"25122":-1,"25123":-1,"25124":-1,"25125":-1,"25126":-1,"25127":-1,"25128":-1,"25129":-1,"25130":-1,"25131":-1,"25132":-1,"25133":-1,"25134":-1,"25135":-1,"25136":-1,"25137":2684,"25138":-1,"25139":-1,"25140":-1,"25141":-1,"25142":-1,"25143":-1,"25144":-1,"25145":-1,"25146":-1,"25147":-1,"25148":-1,"25149":-1,"25150":-1,"25151":-1,"25152":-1,"25153":0,"25154":-1,"25155":-1,"25156":-1,"25157":-1,"25158":-1,"25159":2684,"25160":-1,"25161":-1,"25162":-1,"25163":2682,"25164":-1,"25165":2684,"25166":-1,"25167":2686,"25168":-1,"25169":-1,"25170":0,"25171":-1,"25172":-1,"25173":-1,"25174":-1,"25175":-1,"25176":-1,"25177":-1,"25178":2685,"25179":2682,"25180":-1,"25181":-1,"25182":-1,"25183":-1,"25184":-1,"25185":-1,"25186":-1,"25187":-1,"25188":2683,"25189":-1,"25190":-1,"25191":-1,"25192":2681,"25193":-1,"25194":2684,"25195":-1,"25196":-1,"25197":-1,"25198":-1,"25199":0,"25200":-1,"25201":-1,"25202":-1,"25203":-1,"25204":-1,"25205":-1,"25206":-1,"25207":-1,"25208":-1,"25209":-1,"25210":-1,"25211":2683,"25212":-1,"25213":-1,"25214":-1,"25215":-1,"25216":-1,"25217":-1,"25218":-1,"25219":0,"25220":-1,"25221":-1,"25222":-1,"25223":-1,"25224":-1,"25225":0,"25226":-1,"25227":-1,"25228":0,"25229":-1,"25230":-1,"25231":-1,"25232":-1,"25233":-1,"25234":-1,"25235":-1,"25236":-1,"25237":-1,"25238":-1,"25239":-1,"25240":2682,"25241":-1,"25242":-1,"25243":-1,"25244":-1,"25245":-1,"25246":-1,"25247":-1,"25248":-1,"25249":-1,"25250":-1,"25251":-1,"25252":2682,"25253":-1,"25254":-1,"25255":-1,"25256":0,"25257":-1,"25258":0,"25259":0,"25260":-1,"25261":-1,"25262":2682,"25263":-1,"25264":-1,"25265":-1,"25266":-1,"25267":-1,"25268":-1,"25269":-1,"25270":-1,"25271":0,"25272":-1,"25273":-1,"25274":-1,"25275":-1,"25276":-1,"25277":-1,"25278":-1,"25279":-1,"25280":-1,"25281":-1,"25282":-1,"25283":-1,"25284":2686,"25285":-1,"25286":2685,"25287":-1,"25288":-1,"25289":-1,"25290":-1,"25291":-1,"25292":-1,"25293":-1,"25294":-1,"25295":-1,"25296":2686,"25297":2686,"25298":-1,"25299":2684,"25300":-1,"25301":2682,"25302":-1,"25303":-1,"25304":-1,"25305":2682,"25306":-1,"25307":-1,"25308":0,"25309":-1,"25310":-1,"25311":-1,"25312":-1,"25313":-1,"25314":-1,"25315":-1,"25316":-1,"25317":-1,"25318":-1,"25319":-1,"25320":2683,"25321":-1,"25322":-1,"25323":-1,"25324":-1,"25325":-1,"25326":-1,"25327":-1,"25328":-1,"25329":2686,"25330":-1,"25331":-1,"25332":-1,"25333":-1,"25334":-1,"25335":-1,"25336":-1,"25337":-1,"25338":-1,"25339":-1,"25340":-1,"25341":-1,"25342":2686,"25343":-1,"25344":2686,"25345":0,"25346":-1,"25347":-1,"25348":2681,"25349":-1,"25350":-1,"25351":-1,"25352":0,"25353":-1,"25354":-1,"25355":-1,"25356":-1,"25357":0,"25358":-1,"25359":0,"25360":-1,"25361":-1,"25362":-1,"25363":2687,"25364":-1,"25365":-1,"25366":-1,"25367":-1,"25368":-1,"25369":-1,"25370":-1,"25371":-1,"25372":0,"25373":0,"25374":-1,"25375":-1,"25376":-1,"25377":-1,"25378":-1,"25379":-1,"25380":-1,"25381":-1,"25382":-1,"25383":-1,"25384":2682,"25385":-1,"25386":-1,"25387":-1,"25388":2682,"25389":2687,"25390":-1,"25391":-1,"25392":-1,"25393":2682,"25394":2681,"25395":-1,"25396":-1,"25397":-1,"25398":-1,"25399":-1,"25400":-1,"25401":-1,"25402":-1,"25403":-1,"25404":-1,"25405":-1,"25406":-1,"25407":-1,"25408":-1,"25409":-1,"25410":-1,"25411":2685,"25412":-1,"25413":-1,"25414":-1,"25415":-1,"25416":-1,"25417":-1,"25418":2683,"25419":-1,"25420":-1,"25421":-1,"25422":-1,"25423":-1,"25424":-1,"25425":-1,"25426":-1,"25427":-1,"25428":-1,"25429":-1,"25430":-1,"25431":-1,"25432":-1,"25433":-1,"25434":-1,"25435":-1,"25436":-1,"25437":0,"25438":-1,"25439":2681,"25440":-1,"25441":-1,"25442":-1,"25443":2682,"25444":-1,"25445":-1,"25446":-1,"25447":-1,"25448":-1,"25449":-1,"25450":-1,"25451":-1,"25452":-1,"25453":0,"25454":2683,"25455":0,"25456":-1,"25457":2685,"25458":-1,"25459":0,"25460":-1,"25461":-1,"25462":-1,"25463":-1,"25464":-1,"25465":-1,"25466":2684,"25467":-1,"25468":-1,"25469":-1,"25470":-1,"25471":-1,"25472":-1,"25473":-1,"25474":-1,"25475":-1,"25476":-1,"25477":-1,"25478":-1,"25479":-1,"25480":-1,"25481":-1,"25482":-1,"25483":-1,"25484":-1,"25485":-1,"25486":2685,"25487":-1,"25488":-1,"25489":2687,"25490":-1,"25491":-1,"25492":2682,"25493":-1,"25494":-1,"25495":-1,"25496":-1,"25497":-1,"25498":-1,"25499":-1,"25500":-1,"25501":-1,"25502":-1,"25503":-1,"25504":2681,"25505":-1,"25506":-1,"25507":-1,"25508":-1,"25509":-1,"25510":-1,"25511":-1,"25512":2682,"25513":2683,"25514":-1,"25515":2686,"25516":2683,"25517":-1,"25518":-1,"25519":-1,"25520":-1,"25521":-1,"25522":0,"25523":-1,"25524":-1,"25525":2681,"25526":-1,"25527":-1,"25528":-1,"25529":-1,"25530":-1,"25531":-1,"25532":-1,"25533":-1,"25534":2686,"25535":-1,"25536":-1,"25537":-1,"25538":-1,"25539":-1,"25540":0,"25541":-1,"25542":-1,"25543":-1,"25544":-1,"25545":-1,"25546":2685,"25547":-1,"25548":-1,"25549":-1,"25550":-1,"25551":-1,"25552":-1,"25553":-1,"25554":-1,"25555":2683,"25556":-1,"25557":-1,"25558":-1,"25559":-1,"25560":-1,"25561":-1,"25562":-1,"25563":-1,"25564":-1,"25565":-1,"25566":-1,"25567":-1,"25568":-1,"25569":-1,"25570":-1,"25571":-1,"25572":-1,"25573":-1,"25574":-1,"25575":2686,"25576":-1,"25577":-1,"25578":-1,"25579":-1,"25580":-1,"25581":-1,"25582":-1,"25583":-1,"25584":-1,"25585":2686,"25586":-1,"25587":2682,"25588":-1,"25589":2686,"25590":-1,"25591":-1,"25592":-1,"25593":-1,"25594":-1,"25595":-1,"25596":-1,"25597":-1,"25598":-1,"25599":-1,"25600":-1,"25601":2686,"25602":-1,"25603":-1,"25604":2685,"25605":-1,"25606":2684,"25607":-1,"25608":-1,"25609":-1,"25610":2681,"25611":-1,"25612":-1,"25613":-1,"25614":-1,"25615":-1,"25616":-1,"25617":-1,"25618":-1,"25619":-1,"25620":-1,"25621":-1,"25622":-1,"25623":-1,"25624":-1,"25625":0,"25626":-1,"25627":-1,"25628":-1,"25629":2687,"25630":-1,"25631":-1,"25632":-1,"25633":-1,"25634":-1,"25635":-1,"25636":-1,"25637":0,"25638":-1,"25639":2683,"25640":-1,"25641":-1,"25642":-1,"25643":-1,"25644":0,"25645":-1,"25646":-1,"25647":2686,"25648":-1,"25649":-1,"25650":-1,"25651":-1,"25652":-1,"25653":-1,"25654":-1,"25655":-1,"25656":-1,"25657":-1,"25658":0,"25659":-1,"25660":-1,"25661":-1,"25662":-1,"25663":2683,"25664":-1,"25665":-1,"25666":2686,"25667":-1,"25668":-1,"25669":-1,"25670":-1,"25671":-1,"25672":-1,"25673":2684,"25674":-1,"25675":-1,"25676":2683,"25677":2683,"25678":0,"25679":-1,"25680":-1,"25681":2685,"25682":-1,"25683":-1,"25684":-1,"25685":-1,"25686":-1,"25687":-1,"25688":-1,"25689":-1,"25690":-1,"25691":-1,"25692":-1,"25693":-1,"25694":-1,"25695":-1,"25696":0,"25697":-1,"25698":-1,"25699":-1,"25700":-1,"25701":-1,"25702":-1,"25703":-1,"25704":-1,"25705":-1,"25706":2683,"25707":-1,"25708":-1,"25709":-1,"25710":-1,"25711":-1,"25712":-1,"25713":-1,"25714":-1,"25715":0,"25716":-1,"25717":-1,"25718":-1,"25719":-1,"25720":-1,"25721":-1,"25722":-1,"25723":-1,"25724":-1,"25725":-1,"25726":-1,"25727":-1,"25728":-1,"25729":-1,"25730":-1,"25731":-1,"25732":-1,"25733":2683,"25734":-1,"25735":-1,"25736":-1,"25737":-1,"25738":2687,"25739":-1,"25740":-1,"25741":-1,"25742":-1,"25743":2685,"25744":-1,"25745":-1,"25746":-1,"25747":-1,"25748":-1,"25749":-1,"25750":-1,"25751":-1,"25752":-1,"25753":-1,"25754":-1,"25755":-1,"25756":-1,"25757":-1,"25758":-1,"25759":2685,"25760":-1,"25761":-1,"25762":-1,"25763":-1,"25764":-1,"25765":-1,"25766":-1,"25767":-1,"25768":-1,"25769":-1,"25770":-1,"25771":2682,"25772":-1,"25773":2685,"25774":-1,"25775":-1,"25776":-1,"25777":2682,"25778":-1,"25779":2685,"25780":-1,"25781":-1,"25782":-1,"25783":-1,"25784":2684,"25785":-1,"25786":-1,"25787":-1,"25788":-1,"25789":-1,"25790":-1,"25791":-1,"25792":-1,"25793":-1,"25794":-1,"25795":-1,"25796":-1,"25797":-1,"25798":-1,"25799":-1,"25800":-1,"25801":-1,"25802":-1,"25803":2686,"25804":-1,"25805":-1,"25806":-1,"25807":2682,"25808":-1,"25809":-1,"25810":2683,"25811":-1,"25812":-1,"25813":2685,"25814":-1,"25815":-1,"25816":-1,"25817":-1,"25818":0,"25819":-1,"25820":-1,"25821":-1,"25822":-1,"25823":-1,"25824":-1,"25825":2685,"25826":-1,"25827":-1,"25828":-1,"25829":-1,"25830":-1,"25831":-1,"25832":-1,"25833":-1,"25834":-1,"25835":-1,"25836":2686,"25837":-1,"25838":-1,"25839":-1,"25840":-1,"25841":-1,"25842":-1,"25843":-1,"25844":-1,"25845":-1,"25846":-1,"25847":2687,"25848":0,"25849":-1,"25850":-1,"25851":-1,"25852":-1,"25853":2685,"25854":-1,"25855":-1,"25856":-1,"25857":-1,"25858":-1,"25859":-1,"25860":-1,"25861":-1,"25862":-1,"25863":-1,"25864":-1,"25865":2686,"25866":-1,"25867":-1,"25868":-1,"25869":0,"25870":-1,"25871":-1,"25872":-1,"25873":-1,"25874":-1,"25875":-1,"25876":2686,"25877":-1,"25878":0,"25879":-1,"25880":0,"25881":-1,"25882":-1,"25883":-1,"25884":-1,"25885":-1,"25886":-1,"25887":-1,"25888":-1,"25889":-1,"25890":-1,"25891":-1,"25892":-1,"25893":-1,"25894":2685,"25895":-1,"25896":-1,"25897":-1,"25898":-1,"25899":-1,"25900":2682,"25901":-1,"25902":2684,"25903":-1,"25904":-1,"25905":-1,"25906":-1,"25907":-1,"25908":-1,"25909":-1,"25910":-1,"25911":-1,"25912":-1,"25913":-1,"25914":-1,"25915":-1,"25916":-1,"25917":-1,"25918":-1,"25919":2685,"25920":-1,"25921":-1,"25922":-1,"25923":-1,"25924":2682,"25925":-1,"25926":-1,"25927":-1,"25928":-1,"25929":-1,"25930":-1,"25931":-1,"25932":-1,"25933":-1,"25934":-1,"25935":-1,"25936":-1,"25937":-1,"25938":-1,"25939":-1,"25940":-1,"25941":-1,"25942":-1,"25943":-1,"25944":-1,"25945":-1,"25946":-1,"25947":-1,"25948":-1,"25949":-1,"25950":-1,"25951":-1,"25952":-1,"25953":-1,"25954":-1,"25955":-1,"25956":-1,"25957":2683,"25958":0,"25959":-1,"25960":-1,"25961":-1,"25962":0,"25963":2681,"25964":-1,"25965":-1,"25966":-1,"25967":-1,"25968":-1,"25969":-1,"25970":-1,"25971":-1,"25972":-1,"25973":-1,"25974":-1,"25975":-1,"25976":-1,"25977":-1,"25978":-1,"25979":-1,"25980":-1,"25981":-1,"25982":-1,"25983":-1,"25984":-1,"25985":-1,"25986":-1,"25987":2685,"25988":-1,"25989":-1,"25990":2686,"25991":2687,"25992":-1,"25993":-1,"25994":-1,"25995":-1,"25996":-1,"25997":-1,"25998":2682,"25999":-1,"26000":-1,"26001":-1,"26002":-1,"26003":-1,"26004":-1,"26005":-1,"26006":-1,"26007":-1,"26008":-1,"26009":-1,"26010":-1,"26011":-1,"26012":-1,"26013":-1,"26014":-1,"26015":-1,"26016":-1,"26017":-1,"26018":-1,"26019":-1,"26020":0,"26021":-1,"26022":-1,"26023":-1,"26024":2683,"26025":-1,"26026":-1,"26027":-1,"26028":-1,"26029":-1,"26030":-1,"26031":-1,"26032":-1,"26033":-1,"26034":-1,"26035":-1,"26036":-1,"26037":-1,"26038":-1,"26039":-1,"26040":-1,"26041":-1,"26042":2683,"26043":2686,"26044":-1,"26045":2687,"26046":-1,"26047":-1,"26048":-1,"26049":-1,"26050":-1,"26051":-1,"26052":-1,"26053":2684,"26054":-1,"26055":-1,"26056":-1,"26057":-1,"26058":-1,"26059":-1,"26060":-1,"26061":2687,"26062":-1,"26063":-1,"26064":-1,"26065":-1,"26066":-1,"26067":-1,"26068":0,"26069":2686,"26070":-1,"26071":-1,"26072":-1,"26073":-1,"26074":2683,"26075":-1,"26076":-1,"26077":-1,"26078":-1,"26079":-1,"26080":-1,"26081":-1,"26082":-1,"26083":2684,"26084":-1,"26085":0,"26086":-1,"26087":-1,"26088":-1,"26089":-1,"26090":-1,"26091":-1,"26092":-1,"26093":-1,"26094":-1,"26095":0,"26096":-1,"26097":-1,"26098":-1,"26099":-1,"26100":-1,"26101":-1,"26102":-1,"26103":-1,"26104":-1,"26105":-1,"26106":-1,"26107":-1,"26108":-1,"26109":-1,"26110":-1,"26111":-1,"26112":-1,"26113":-1,"26114":-1,"26115":-1,"26116":-1,"26117":-1,"26118":-1,"26119":-1,"26120":-1,"26121":-1,"26122":-1,"26123":-1,"26124":-1,"26125":-1,"26126":-1,"26127":-1,"26128":-1,"26129":-1,"26130":-1,"26131":0,"26132":-1,"26133":-1,"26134":-1,"26135":-1,"26136":-1,"26137":-1,"26138":-1,"26139":-1,"26140":-1,"26141":2684,"26142":-1,"26143":2682,"26144":2683,"26145":-1,"26146":-1,"26147":-1,"26148":2681,"26149":-1,"26150":0,"26151":2685,"26152":-1,"26153":-1,"26154":-1,"26155":-1,"26156":-1,"26157":-1,"26158":2681,"26159":-1,"26160":-1,"26161":-1,"26162":-1,"26163":-1,"26164":-1,"26165":-1,"26166":-1,"26167":2686,"26168":-1,"26169":2686,"26170":-1,"26171":2683,"26172":-1,"26173":-1,"26174":-1,"26175":-1,"26176":-1,"26177":-1,"26178":2685,"26179":-1,"26180":-1,"26181":-1,"26182":2684,"26183":-1,"26184":-1,"26185":-1,"26186":-1,"26187":-1,"26188":-1,"26189":-1,"26190":-1,"26191":-1,"26192":-1,"26193":-1,"26194":2685,"26195":-1,"26196":-1,"26197":-1,"26198":-1,"26199":-1,"26200":-1,"26201":-1,"26202":-1,"26203":-1,"26204":-1,"26205":-1,"26206":-1,"26207":-1,"26208":2685,"26209":2684,"26210":2683,"26211":-1,"26212":-1,"26213":-1,"26214":2681,"26215":-1,"26216":-1,"26217":-1,"26218":-1,"26219":0,"26220":-1,"26221":-1,"26222":2687,"26223":-1,"26224":-1,"26225":2686,"26226":-1,"26227":-1,"26228":-1,"26229":-1,"26230":-1,"26231":-1,"26232":-1,"26233":-1,"26234":-1,"26235":-1,"26236":-1,"26237":-1,"26238":-1,"26239":-1,"26240":-1,"26241":-1,"26242":-1,"26243":-1,"26244":-1,"26245":-1,"26246":-1,"26247":-1,"26248":0,"26249":-1,"26250":-1,"26251":0,"26252":-1,"26253":-1,"26254":-1,"26255":2686,"26256":-1,"26257":-1,"26258":-1,"26259":2687,"26260":-1,"26261":-1,"26262":-1,"26263":2684,"26264":0,"26265":-1,"26266":-1,"26267":-1,"26268":-1,"26269":-1,"26270":-1,"26271":-1,"26272":2685,"26273":-1,"26274":-1,"26275":2681,"26276":-1,"26277":-1,"26278":-1,"26279":-1,"26280":-1,"26281":-1,"26282":-1,"26283":-1,"26284":-1,"26285":-1,"26286":-1,"26287":-1,"26288":-1,"26289":-1,"26290":-1,"26291":-1,"26292":-1,"26293":-1,"26294":-1,"26295":-1,"26296":-1,"26297":2682,"26298":-1,"26299":2682,"26300":-1,"26301":-1,"26302":-1,"26303":-1,"26304":-1,"26305":-1,"26306":-1,"26307":-1,"26308":2686,"26309":0,"26310":-1,"26311":-1,"26312":-1,"26313":-1,"26314":-1,"26315":2684,"26316":-1,"26317":-1,"26318":-1,"26319":-1,"26320":-1,"26321":-1,"26322":-1,"26323":2686,"26324":-1,"26325":-1,"26326":-1,"26327":-1,"26328":-1,"26329":-1,"26330":-1,"26331":-1,"26332":2682,"26333":-1,"26334":-1,"26335":-1,"26336":-1,"26337":-1,"26338":-1,"26339":0,"26340":-1,"26341":-1,"26342":-1,"26343":-1,"26344":0,"26345":-1,"26346":-1,"26347":-1,"26348":0,"26349":-1,"26350":-1,"26351":-1,"26352":-1,"26353":-1,"26354":-1,"26355":2685,"26356":2681,"26357":-1,"26358":-1,"26359":2684,"26360":-1,"26361":-1,"26362":-1,"26363":-1,"26364":0,"26365":-1,"26366":-1,"26367":-1,"26368":-1,"26369":-1,"26370":-1,"26371":-1,"26372":-1,"26373":-1,"26374":2685,"26375":-1,"26376":-1,"26377":-1,"26378":2683,"26379":-1,"26380":-1,"26381":-1,"26382":2687,"26383":-1,"26384":-1,"26385":-1,"26386":2682,"26387":-1,"26388":-1,"26389":-1,"26390":-1,"26391":2685,"26392":2686,"26393":2684,"26394":-1,"26395":-1,"26396":-1,"26397":-1,"26398":-1,"26399":-1,"26400":-1,"26401":-1,"26402":-1,"26403":-1,"26404":2682,"26405":2686,"26406":-1,"26407":-1,"26408":-1,"26409":-1,"26410":-1,"26411":-1,"26412":-1,"26413":2685,"26414":-1,"26415":-1,"26416":-1,"26417":-1,"26418":-1,"26419":-1,"26420":-1,"26421":-1,"26422":-1,"26423":-1,"26424":-1,"26425":-1,"26426":-1,"26427":-1,"26428":-1,"26429":-1,"26430":-1,"26431":2682,"26432":-1,"26433":2683,"26434":-1,"26435":-1,"26436":2685,"26437":-1,"26438":2686,"26439":-1,"26440":-1,"26441":-1,"26442":-1,"26443":0,"26444":-1,"26445":-1,"26446":0,"26447":-1,"26448":-1,"26449":2683,"26450":-1,"26451":-1,"26452":-1,"26453":-1,"26454":-1,"26455":-1,"26456":-1,"26457":0,"26458":-1,"26459":-1,"26460":-1,"26461":-1,"26462":-1,"26463":-1,"26464":-1,"26465":2684,"26466":2686,"26467":-1,"26468":-1,"26469":2685,"26470":-1,"26471":-1,"26472":-1,"26473":2684,"26474":-1,"26475":-1,"26476":-1,"26477":-1,"26478":-1,"26479":0,"26480":-1,"26481":-1,"26482":-1,"26483":-1,"26484":-1,"26485":-1,"26486":-1,"26487":2687,"26488":-1,"26489":-1,"26490":-1,"26491":-1,"26492":2686,"26493":-1,"26494":2682,"26495":-1,"26496":-1,"26497":-1,"26498":-1,"26499":-1,"26500":-1,"26501":-1,"26502":2682,"26503":-1,"26504":0,"26505":-1,"26506":-1,"26507":-1,"26508":-1,"26509":-1,"26510":2683,"26511":-1,"26512":2683,"26513":-1,"26514":-1,"26515":-1,"26516":-1,"26517":-1,"26518":-1,"26519":-1,"26520":-1,"26521":-1,"26522":-1,"26523":-1,"26524":-1,"26525":-1,"26526":2682,"26527":-1,"26528":-1,"26529":-1,"26530":-1,"26531":2685,"26532":-1,"26533":-1,"26534":-1,"26535":-1,"26536":-1,"26537":-1,"26538":-1,"26539":-1,"26540":-1,"26541":0,"26542":-1,"26543":-1,"26544":-1,"26545":-1,"26546":-1,"26547":-1,"26548":-1,"26549":-1,"26550":-1,"26551":-1,"26552":-1,"26553":-1,"26554":-1,"26555":-1,"26556":-1,"26557":-1,"26558":-1,"26559":-1,"26560":-1,"26561":2682,"26562":-1,"26563":-1,"26564":-1,"26565":-1,"26566":-1,"26567":-1,"26568":-1,"26569":-1,"26570":2685,"26571":-1,"26572":-1,"26573":-1,"26574":-1,"26575":-1,"26576":-1,"26577":2682,"26578":-1,"26579":-1,"26580":-1,"26581":-1,"26582":-1,"26583":-1,"26584":-1,"26585":2682,"26586":-1,"26587":-1,"26588":-1,"26589":-1,"26590":-1,"26591":2686,"26592":-1,"26593":-1,"26594":-1,"26595":-1,"26596":-1,"26597":-1,"26598":-1,"26599":-1,"26600":2685,"26601":-1,"26602":-1,"26603":-1,"26604":-1,"26605":0,"26606":2686,"26607":-1,"26608":-1,"26609":-1,"26610":-1,"26611":-1,"26612":-1,"26613":0,"26614":-1,"26615":-1,"26616":-1,"26617":-1,"26618":-1,"26619":-1,"26620":-1,"26621":-1,"26622":-1,"26623":-1,"26624":-1,"26625":-1,"26626":-1,"26627":-1,"26628":-1,"26629":-1,"26630":-1,"26631":-1,"26632":-1,"26633":-1,"26634":-1,"26635":-1,"26636":-1,"26637":-1,"26638":-1,"26639":-1,"26640":-1,"26641":-1,"26642":-1,"26643":-1,"26644":2684,"26645":-1,"26646":-1,"26647":-1,"26648":-1,"26649":-1,"26650":-1,"26651":0,"26652":-1,"26653":-1,"26654":-1,"26655":-1,"26656":-1,"26657":-1,"26658":-1,"26659":-1,"26660":-1,"26661":0,"26662":-1,"26663":-1,"26664":-1,"26665":2683,"26666":-1,"26667":-1,"26668":2683,"26669":-1,"26670":-1,"26671":-1,"26672":-1,"26673":-1,"26674":-1,"26675":2687,"26676":-1,"26677":2683,"26678":-1,"26679":-1,"26680":-1,"26681":-1,"26682":-1,"26683":0,"26684":-1,"26685":-1,"26686":-1,"26687":-1,"26688":2682,"26689":-1,"26690":-1,"26691":-1,"26692":-1,"26693":2685,"26694":-1,"26695":-1,"26696":-1,"26697":-1,"26698":-1,"26699":-1,"26700":-1,"26701":-1,"26702":-1,"26703":-1,"26704":-1,"26705":-1,"26706":2687,"26707":-1,"26708":-1,"26709":-1,"26710":-1,"26711":-1,"26712":-1,"26713":-1,"26714":-1,"26715":-1,"26716":-1,"26717":2682,"26718":-1,"26719":-1,"26720":0,"26721":-1,"26722":-1,"26723":-1,"26724":0,"26725":-1,"26726":-1,"26727":-1,"26728":-1,"26729":-1,"26730":-1,"26731":-1,"26732":-1,"26733":-1,"26734":-1,"26735":-1,"26736":-1,"26737":-1,"26738":-1,"26739":-1,"26740":-1,"26741":-1,"26742":-1,"26743":-1,"26744":-1,"26745":-1,"26746":2685,"26747":-1,"26748":-1,"26749":-1,"26750":-1,"26751":-1,"26752":-1,"26753":-1,"26754":-1,"26755":-1,"26756":-1,"26757":-1,"26758":-1,"26759":-1,"26760":-1,"26761":-1,"26762":-1,"26763":-1,"26764":-1,"26765":2686,"26766":-1,"26767":-1,"26768":-1,"26769":-1,"26770":-1,"26771":-1,"26772":-1,"26773":-1,"26774":-1,"26775":-1,"26776":0,"26777":-1,"26778":-1,"26779":-1,"26780":2682,"26781":0,"26782":-1,"26783":-1,"26784":-1,"26785":-1,"26786":-1,"26787":-1,"26788":-1,"26789":-1,"26790":-1,"26791":-1,"26792":2683,"26793":-1,"26794":-1,"26795":-1,"26796":-1,"26797":2685,"26798":-1,"26799":2682,"26800":-1,"26801":-1,"26802":2687,"26803":-1,"26804":-1,"26805":-1,"26806":-1,"26807":-1,"26808":-1,"26809":-1,"26810":-1,"26811":2683,"26812":-1,"26813":-1,"26814":-1,"26815":-1,"26816":-1,"26817":-1,"26818":0,"26819":-1,"26820":2684,"26821":-1,"26822":-1,"26823":2682,"26824":-1,"26825":-1,"26826":-1,"26827":-1,"26828":-1,"26829":-1,"26830":-1,"26831":-1,"26832":-1,"26833":-1,"26834":2682,"26835":-1,"26836":-1,"26837":-1,"26838":-1,"26839":-1,"26840":2687,"26841":-1,"26842":-1,"26843":-1,"26844":2685,"26845":-1,"26846":-1,"26847":2683,"26848":2685,"26849":2685,"26850":-1,"26851":-1,"26852":2685,"26853":-1,"26854":-1,"26855":-1,"26856":-1,"26857":2686,"26858":-1,"26859":-1,"26860":-1,"26861":2684,"26862":-1,"26863":-1,"26864":-1,"26865":2683,"26866":-1,"26867":-1,"26868":-1,"26869":-1,"26870":-1,"26871":2681,"26872":-1,"26873":-1,"26874":-1,"26875":-1,"26876":-1,"26877":-1,"26878":-1,"26879":-1,"26880":-1,"26881":-1,"26882":-1,"26883":-1,"26884":-1,"26885":0,"26886":-1,"26887":-1,"26888":0,"26889":-1,"26890":-1,"26891":-1,"26892":2683,"26893":-1,"26894":-1,"26895":-1,"26896":0,"26897":0,"26898":-1,"26899":-1,"26900":-1,"26901":-1,"26902":-1,"26903":-1,"26904":-1,"26905":-1,"26906":-1,"26907":-1,"26908":2683,"26909":2685,"26910":-1,"26911":-1,"26912":-1,"26913":-1,"26914":-1,"26915":-1,"26916":2684,"26917":-1,"26918":-1,"26919":2684,"26920":-1,"26921":-1,"26922":-1,"26923":-1,"26924":2683,"26925":-1,"26926":-1,"26927":-1,"26928":-1,"26929":-1,"26930":-1,"26931":-1,"26932":-1,"26933":-1,"26934":-1,"26935":-1,"26936":-1,"26937":2687,"26938":-1,"26939":0,"26940":-1,"26941":-1,"26942":-1,"26943":-1,"26944":-1,"26945":0,"26946":-1,"26947":-1,"26948":-1,"26949":-1,"26950":-1,"26951":-1,"26952":-1,"26953":-1,"26954":-1,"26955":-1,"26956":-1,"26957":-1,"26958":-1,"26959":2683,"26960":-1,"26961":-1,"26962":-1,"26963":-1,"26964":-1,"26965":-1,"26966":-1,"26967":-1,"26968":-1,"26969":-1,"26970":-1,"26971":-1,"26972":-1,"26973":-1,"26974":-1,"26975":-1,"26976":-1,"26977":-1,"26978":-1,"26979":-1,"26980":-1,"26981":-1,"26982":-1,"26983":-1,"26984":-1,"26985":-1,"26986":-1,"26987":2687,"26988":2683,"26989":-1,"26990":-1,"26991":-1,"26992":2682,"26993":-1,"26994":0,"26995":-1,"26996":-1,"26997":-1,"26998":-1,"26999":-1,"27000":-1,"27001":-1,"27002":-1,"27003":-1,"27004":-1,"27005":-1,"27006":-1,"27007":-1,"27008":-1,"27009":-1,"27010":-1,"27011":-1,"27012":2683,"27013":-1,"27014":2683,"27015":-1,"27016":2686,"27017":-1,"27018":-1,"27019":-1,"27020":-1,"27021":-1,"27022":-1,"27023":-1,"27024":-1,"27025":-1,"27026":-1,"27027":-1,"27028":-1,"27029":-1,"27030":-1,"27031":2685,"27032":-1,"27033":-1,"27034":-1,"27035":0,"27036":-1,"27037":-1,"27038":-1,"27039":-1,"27040":2682,"27041":-1,"27042":-1,"27043":-1,"27044":-1,"27045":-1,"27046":-1,"27047":2686,"27048":-1,"27049":2686,"27050":-1,"27051":-1,"27052":-1,"27053":-1,"27054":-1,"27055":-1,"27056":-1,"27057":-1,"27058":-1,"27059":-1,"27060":-1,"27061":-1,"27062":-1,"27063":-1,"27064":-1,"27065":-1,"27066":-1,"27067":-1,"27068":-1,"27069":-1,"27070":-1,"27071":-1,"27072":-1,"27073":-1,"27074":-1,"27075":-1,"27076":-1,"27077":2681,"27078":-1,"27079":-1,"27080":-1,"27081":2684,"27082":-1,"27083":-1,"27084":-1,"27085":-1,"27086":-1,"27087":-1,"27088":0,"27089":0,"27090":2687,"27091":-1,"27092":-1,"27093":-1,"27094":-1,"27095":-1,"27096":-1,"27097":-1,"27098":-1,"27099":2683,"27100":-1,"27101":-1,"27102":0,"27103":-1,"27104":-1,"27105":-1,"27106":-1,"27107":-1,"27108":-1,"27109":-1,"27110":-1,"27111":-1,"27112":-1,"27113":-1,"27114":-1,"27115":-1,"27116":2686,"27117":-1,"27118":-1,"27119":-1,"27120":2685,"27121":-1,"27122":2681,"27123":-1,"27124":-1,"27125":-1,"27126":-1,"27127":-1,"27128":-1,"27129":-1,"27130":-1,"27131":-1,"27132":-1,"27133":-1,"27134":-1,"27135":-1,"27136":-1,"27137":-1,"27138":-1,"27139":-1,"27140":-1,"27141":2685,"27142":-1,"27143":-1,"27144":-1,"27145":-1,"27146":-1,"27147":-1,"27148":-1,"27149":-1,"27150":-1,"27151":-1,"27152":-1,"27153":2685,"27154":-1,"27155":-1,"27156":-1,"27157":-1,"27158":-1,"27159":-1,"27160":-1,"27161":-1,"27162":-1,"27163":-1,"27164":-1,"27165":-1,"27166":-1,"27167":-1,"27168":-1,"27169":2686,"27170":-1,"27171":-1,"27172":-1,"27173":-1,"27174":2685,"27175":-1,"27176":2682,"27177":-1,"27178":-1,"27179":-1,"27180":2682,"27181":-1,"27182":-1,"27183":2683,"27184":-1,"27185":-1,"27186":-1,"27187":-1,"27188":-1,"27189":-1,"27190":-1,"27191":-1,"27192":-1,"27193":-1,"27194":-1,"27195":-1,"27196":-1,"27197":-1,"27198":-1,"27199":-1,"27200":-1,"27201":-1,"27202":-1,"27203":-1,"27204":-1,"27205":-1,"27206":2684,"27207":-1,"27208":-1,"27209":-1,"27210":-1,"27211":-1,"27212":2681,"27213":-1,"27214":-1,"27215":-1,"27216":-1,"27217":-1,"27218":-1,"27219":-1,"27220":-1,"27221":-1,"27222":-1,"27223":-1,"27224":-1,"27225":-1,"27226":-1,"27227":-1,"27228":-1,"27229":-1,"27230":-1,"27231":-1,"27232":2682,"27233":-1,"27234":2684,"27235":-1,"27236":2682,"27237":-1,"27238":-1,"27239":-1,"27240":-1,"27241":-1,"27242":-1,"27243":-1,"27244":-1,"27245":2684,"27246":-1,"27247":-1,"27248":-1,"27249":-1,"27250":-1,"27251":2681,"27252":-1,"27253":-1,"27254":-1,"27255":-1,"27256":-1,"27257":-1,"27258":-1,"27259":0,"27260":-1,"27261":-1,"27262":2683,"27263":-1,"27264":-1,"27265":-1,"27266":-1,"27267":-1,"27268":-1,"27269":-1,"27270":-1,"27271":2687,"27272":-1,"27273":-1,"27274":-1,"27275":-1,"27276":-1,"27277":2684,"27278":-1,"27279":-1,"27280":-1,"27281":2682,"27282":-1,"27283":-1,"27284":-1,"27285":2683,"27286":-1,"27287":-1,"27288":0,"27289":-1,"27290":-1,"27291":-1,"27292":-1,"27293":0,"27294":2684,"27295":2685,"27296":-1,"27297":-1,"27298":2685,"27299":-1,"27300":-1,"27301":-1,"27302":-1,"27303":-1,"27304":-1,"27305":-1,"27306":-1,"27307":-1,"27308":0,"27309":-1,"27310":-1,"27311":-1,"27312":2684,"27313":0,"27314":-1,"27315":-1,"27316":-1,"27317":-1,"27318":-1,"27319":-1,"27320":2681,"27321":-1,"27322":-1,"27323":-1,"27324":-1,"27325":-1,"27326":-1,"27327":0,"27328":-1,"27329":-1,"27330":-1,"27331":-1,"27332":-1,"27333":-1,"27334":-1,"27335":-1,"27336":-1,"27337":2686,"27338":-1,"27339":-1,"27340":-1,"27341":-1,"27342":-1,"27343":-1,"27344":-1,"27345":-1,"27346":-1,"27347":-1,"27348":-1,"27349":-1,"27350":-1,"27351":-1,"27352":-1,"27353":-1,"27354":-1,"27355":2686,"27356":-1,"27357":2687,"27358":-1,"27359":-1,"27360":-1,"27361":-1,"27362":0,"27363":0,"27364":-1,"27365":2684,"27366":2683,"27367":-1,"27368":-1,"27369":-1,"27370":-1,"27371":-1,"27372":-1,"27373":-1,"27374":-1,"27375":-1,"27376":-1,"27377":-1,"27378":-1,"27379":-1,"27380":-1,"27381":-1,"27382":-1,"27383":-1,"27384":2682,"27385":-1,"27386":-1,"27387":-1,"27388":2683,"27389":-1,"27390":-1,"27391":-1,"27392":2683,"27393":2685,"27394":-1,"27395":-1,"27396":-1,"27397":2687,"27398":2683,"27399":-1,"27400":-1,"27401":-1,"27402":-1,"27403":-1,"27404":-1,"27405":-1,"27406":-1,"27407":-1,"27408":0,"27409":-1,"27410":-1,"27411":-1,"27412":-1,"27413":-1,"27414":-1,"27415":-1,"27416":-1,"27417":-1,"27418":-1,"27419":-1,"27420":-1,"27421":-1,"27422":-1,"27423":-1,"27424":0,"27425":2686,"27426":-1,"27427":-1,"27428":-1,"27429":-1,"27430":-1,"27431":-1,"27432":-1,"27433":-1,"27434":-1,"27435":-1,"27436":2686,"27437":-1,"27438":2685,"27439":-1,"27440":-1,"27441":-1,"27442":2682,"27443":2685,"27444":-1,"27445":-1,"27446":-1,"27447":2686,"27448":-1,"27449":-1,"27450":-1,"27451":-1,"27452":-1,"27453":-1,"27454":-1,"27455":-1,"27456":0,"27457":-1,"27458":-1,"27459":-1,"27460":-1,"27461":-1,"27462":-1,"27463":-1,"27464":-1,"27465":-1,"27466":-1,"27467":-1,"27468":-1,"27469":-1,"27470":-1,"27471":-1,"27472":-1,"27473":-1,"27474":2685,"27475":-1,"27476":-1,"27477":-1,"27478":2683,"27479":-1,"27480":-1,"27481":-1,"27482":-1,"27483":-1,"27484":-1,"27485":-1,"27486":-1,"27487":-1,"27488":0,"27489":-1,"27490":-1,"27491":-1,"27492":-1,"27493":-1,"27494":-1,"27495":-1,"27496":-1,"27497":-1,"27498":-1,"27499":-1,"27500":-1,"27501":-1,"27502":-1,"27503":-1,"27504":-1,"27505":-1,"27506":-1,"27507":-1,"27508":-1,"27509":-1,"27510":-1,"27511":-1,"27512":-1,"27513":-1,"27514":2687,"27515":-1,"27516":-1,"27517":-1,"27518":-1,"27519":2683,"27520":-1,"27521":-1,"27522":-1,"27523":-1,"27524":-1,"27525":-1,"27526":-1,"27527":2686,"27528":-1,"27529":-1,"27530":-1,"27531":-1,"27532":-1,"27533":2682,"27534":-1,"27535":-1,"27536":-1,"27537":-1,"27538":2684,"27539":2685,"27540":-1,"27541":-1,"27542":-1,"27543":-1,"27544":-1,"27545":2682,"27546":-1,"27547":-1,"27548":-1,"27549":-1,"27550":-1,"27551":2683,"27552":-1,"27553":-1,"27554":-1,"27555":-1,"27556":-1,"27557":-1,"27558":-1,"27559":-1,"27560":-1,"27561":0,"27562":-1,"27563":-1,"27564":-1,"27565":-1,"27566":-1,"27567":-1,"27568":-1,"27569":-1,"27570":-1,"27571":-1,"27572":-1,"27573":-1,"27574":2682,"27575":-1,"27576":-1,"27577":-1,"27578":-1,"27579":-1,"27580":-1,"27581":-1,"27582":-1,"27583":-1,"27584":-1,"27585":-1,"27586":-1,"27587":2687,"27588":-1,"27589":-1,"27590":-1,"27591":2683,"27592":-1,"27593":-1,"27594":-1,"27595":-1,"27596":-1,"27597":-1,"27598":-1,"27599":-1,"27600":-1,"27601":-1,"27602":-1,"27603":-1,"27604":-1,"27605":0,"27606":-1,"27607":-1,"27608":-1,"27609":-1,"27610":-1,"27611":-1,"27612":-1,"27613":-1,"27614":-1,"27615":-1,"27616":0,"27617":-1,"27618":-1,"27619":-1,"27620":-1,"27621":-1,"27622":-1,"27623":-1,"27624":-1,"27625":-1,"27626":-1,"27627":-1,"27628":-1,"27629":-1,"27630":-1,"27631":0,"27632":-1,"27633":-1,"27634":-1,"27635":2683,"27636":-1,"27637":2682,"27638":-1,"27639":-1,"27640":-1,"27641":-1,"27642":-1,"27643":2687,"27644":-1,"27645":-1,"27646":-1,"27647":2684,"27648":-1,"27649":-1,"27650":-1,"27651":-1,"27652":-1,"27653":-1,"27654":-1,"27655":-1,"27656":-1,"27657":-1,"27658":-1,"27659":2683,"27660":-1,"27661":2686,"27662":-1,"27663":-1,"27664":2685,"27665":-1,"27666":-1,"27667":-1,"27668":-1,"27669":-1,"27670":-1,"27671":-1,"27672":-1,"27673":-1,"27674":-1,"27675":2685,"27676":-1,"27677":-1,"27678":-1,"27679":-1,"27680":-1,"27681":2685,"27682":-1,"27683":-1,"27684":-1,"27685":-1,"27686":-1,"27687":2682,"27688":-1,"27689":2682,"27690":-1,"27691":-1,"27692":-1,"27693":-1,"27694":2686,"27695":-1,"27696":-1,"27697":2683,"27698":-1,"27699":-1,"27700":-1,"27701":-1,"27702":-1,"27703":-1,"27704":0,"27705":2687,"27706":-1,"27707":-1,"27708":-1,"27709":0,"27710":-1,"27711":-1,"27712":-1,"27713":-1,"27714":-1,"27715":-1,"27716":-1,"27717":-1,"27718":-1,"27719":-1,"27720":-1,"27721":-1,"27722":-1,"27723":-1,"27724":-1,"27725":-1,"27726":-1,"27727":-1,"27728":-1,"27729":-1,"27730":-1,"27731":-1,"27732":2685,"27733":-1,"27734":-1,"27735":-1,"27736":-1,"27737":-1,"27738":-1,"27739":-1,"27740":-1,"27741":-1,"27742":-1,"27743":-1,"27744":-1,"27745":-1,"27746":2685,"27747":-1,"27748":-1,"27749":-1,"27750":-1,"27751":2684,"27752":-1,"27753":-1,"27754":-1,"27755":-1,"27756":-1,"27757":-1,"27758":-1,"27759":-1,"27760":-1,"27761":-1,"27762":-1,"27763":-1,"27764":2683,"27765":-1,"27766":-1,"27767":-1,"27768":-1,"27769":-1,"27770":-1,"27771":-1,"27772":-1,"27773":-1,"27774":-1,"27775":-1,"27776":-1,"27777":-1,"27778":-1,"27779":-1,"27780":-1,"27781":-1,"27782":-1,"27783":2686,"27784":-1,"27785":-1,"27786":-1,"27787":-1,"27788":-1,"27789":-1,"27790":-1,"27791":-1,"27792":-1,"27793":0,"27794":-1,"27795":-1,"27796":-1,"27797":-1,"27798":-1,"27799":-1,"27800":-1,"27801":-1,"27802":-1,"27803":-1,"27804":-1,"27805":2687,"27806":-1,"27807":-1,"27808":-1,"27809":-1,"27810":2686,"27811":-1,"27812":-1,"27813":-1,"27814":-1,"27815":-1,"27816":-1,"27817":-1,"27818":-1,"27819":-1,"27820":-1,"27821":-1,"27822":2687,"27823":-1,"27824":-1,"27825":-1,"27826":-1,"27827":-1,"27828":-1,"27829":-1,"27830":-1,"27831":-1,"27832":-1,"27833":-1,"27834":2687,"27835":2686,"27836":2687,"27837":-1,"27838":-1,"27839":2682,"27840":2686,"27841":-1,"27842":-1,"27843":-1,"27844":-1,"27845":-1,"27846":-1,"27847":-1,"27848":-1,"27849":-1,"27850":-1,"27851":-1,"27852":-1,"27853":-1,"27854":-1,"27855":-1,"27856":-1,"27857":-1,"27858":-1,"27859":-1,"27860":-1,"27861":-1,"27862":-1,"27863":-1,"27864":-1,"27865":-1,"27866":-1,"27867":-1,"27868":-1,"27869":0,"27870":-1,"27871":-1,"27872":-1,"27873":-1,"27874":-1,"27875":-1,"27876":-1,"27877":-1,"27878":-1,"27879":-1,"27880":-1,"27881":-1,"27882":-1,"27883":-1,"27884":-1,"27885":-1,"27886":-1,"27887":-1,"27888":-1,"27889":2685,"27890":-1,"27891":-1,"27892":-1,"27893":-1,"27894":2682,"27895":-1,"27896":-1,"27897":-1,"27898":-1,"27899":-1,"27900":-1,"27901":-1,"27902":-1,"27903":-1,"27904":-1,"27905":-1,"27906":-1,"27907":-1,"27908":-1,"27909":-1,"27910":-1,"27911":0,"27912":-1,"27913":-1,"27914":-1,"27915":-1,"27916":-1,"27917":-1,"27918":-1,"27919":-1,"27920":2685,"27921":2685,"27922":-1,"27923":-1,"27924":-1,"27925":-1,"27926":-1,"27927":-1,"27928":-1,"27929":-1,"27930":-1,"27931":-1,"27932":-1,"27933":-1,"27934":-1,"27935":-1,"27936":-1,"27937":0,"27938":-1,"27939":-1,"27940":-1,"27941":-1,"27942":-1,"27943":-1,"27944":-1,"27945":-1,"27946":-1,"27947":-1,"27948":-1,"27949":-1,"27950":-1,"27951":-1,"27952":-1,"27953":-1,"27954":-1,"27955":-1,"27956":-1,"27957":2681,"27958":-1,"27959":-1,"27960":-1,"27961":-1,"27962":2683,"27963":-1,"27964":2684,"27965":-1,"27966":-1,"27967":2685,"27968":-1,"27969":-1,"27970":-1,"27971":-1,"27972":-1,"27973":-1,"27974":-1,"27975":2684,"27976":2685,"27977":2683,"27978":-1,"27979":-1,"27980":-1,"27981":-1,"27982":-1,"27983":-1,"27984":-1,"27985":-1,"27986":-1,"27987":-1,"27988":-1,"27989":-1,"27990":-1,"27991":2687,"27992":-1,"27993":-1,"27994":2683,"27995":-1,"27996":-1,"27997":-1,"27998":-1,"27999":-1,"28000":-1,"28001":-1,"28002":-1,"28003":-1,"28004":-1,"28005":-1,"28006":-1,"28007":-1,"28008":-1,"28009":-1,"28010":-1,"28011":-1,"28012":-1,"28013":-1,"28014":2684,"28015":-1,"28016":0,"28017":2684,"28018":2686,"28019":0,"28020":-1,"28021":-1,"28022":-1,"28023":2683,"28024":-1,"28025":-1,"28026":-1,"28027":-1,"28028":-1,"28029":-1,"28030":-1,"28031":-1,"28032":2682,"28033":-1,"28034":2685,"28035":2684,"28036":2684,"28037":-1,"28038":-1,"28039":2685,"28040":-1,"28041":-1,"28042":2683,"28043":-1,"28044":-1,"28045":2681,"28046":-1,"28047":-1,"28048":-1,"28049":-1,"28050":-1,"28051":-1,"28052":-1,"28053":2686,"28054":-1,"28055":-1,"28056":-1,"28057":-1,"28058":-1,"28059":-1,"28060":-1,"28061":-1,"28062":-1,"28063":-1,"28064":-1,"28065":2685,"28066":-1,"28067":-1,"28068":-1,"28069":2683,"28070":-1,"28071":-1,"28072":0,"28073":-1,"28074":-1,"28075":-1,"28076":-1,"28077":-1,"28078":-1,"28079":-1,"28080":-1,"28081":-1,"28082":-1,"28083":-1,"28084":-1,"28085":-1,"28086":-1,"28087":2682,"28088":-1,"28089":-1,"28090":-1,"28091":-1,"28092":-1,"28093":-1,"28094":-1,"28095":-1,"28096":-1,"28097":-1,"28098":-1,"28099":-1,"28100":-1,"28101":-1,"28102":-1,"28103":2687,"28104":-1,"28105":-1,"28106":-1,"28107":-1,"28108":-1,"28109":-1,"28110":-1,"28111":-1,"28112":-1,"28113":2687,"28114":-1,"28115":-1,"28116":2684,"28117":-1,"28118":-1,"28119":-1,"28120":-1,"28121":-1,"28122":-1,"28123":-1,"28124":-1,"28125":-1,"28126":-1,"28127":-1,"28128":-1,"28129":-1,"28130":-1,"28131":0,"28132":-1,"28133":-1,"28134":-1,"28135":-1,"28136":-1,"28137":2686,"28138":-1,"28139":2684,"28140":-1,"28141":-1,"28142":-1,"28143":-1,"28144":2687,"28145":2686,"28146":-1,"28147":-1,"28148":-1,"28149":-1,"28150":-1,"28151":-1,"28152":-1,"28153":-1,"28154":-1,"28155":-1,"28156":2683,"28157":-1,"28158":2685,"28159":-1,"28160":-1,"28161":-1,"28162":-1,"28163":-1,"28164":-1,"28165":-1,"28166":-1,"28167":-1,"28168":-1,"28169":-1,"28170":-1,"28171":-1,"28172":-1,"28173":2686,"28174":2686,"28175":-1,"28176":-1,"28177":-1,"28178":-1,"28179":-1,"28180":2685,"28181":-1,"28182":2683,"28183":-1,"28184":-1,"28185":-1,"28186":-1,"28187":-1,"28188":-1,"28189":-1,"28190":-1,"28191":-1,"28192":-1,"28193":-1,"28194":-1,"28195":-1,"28196":-1,"28197":-1,"28198":-1,"28199":-1,"28200":-1,"28201":-1,"28202":-1,"28203":-1,"28204":-1,"28205":2684,"28206":-1,"28207":-1,"28208":2684,"28209":-1,"28210":-1,"28211":-1,"28212":-1,"28213":-1,"28214":-1,"28215":2687,"28216":-1,"28217":-1,"28218":2685,"28219":-1,"28220":-1,"28221":-1,"28222":-1,"28223":-1,"28224":2686,"28225":-1,"28226":-1,"28227":-1,"28228":-1,"28229":-1,"28230":-1,"28231":-1,"28232":-1,"28233":-1,"28234":-1,"28235":-1,"28236":2684,"28237":-1,"28238":-1,"28239":-1,"28240":2682,"28241":-1,"28242":-1,"28243":-1,"28244":-1,"28245":-1,"28246":-1,"28247":-1,"28248":-1,"28249":-1,"28250":-1,"28251":2682,"28252":-1,"28253":-1,"28254":-1,"28255":-1,"28256":-1,"28257":-1,"28258":-1,"28259":-1,"28260":-1,"28261":-1,"28262":-1,"28263":-1,"28264":-1,"28265":-1,"28266":-1,"28267":-1,"28268":-1,"28269":-1,"28270":-1,"28271":-1,"28272":2686,"28273":-1,"28274":-1,"28275":-1,"28276":-1,"28277":-1,"28278":-1,"28279":2684,"28280":-1,"28281":-1,"28282":-1,"28283":-1,"28284":-1,"28285":-1,"28286":-1,"28287":-1,"28288":-1,"28289":-1,"28290":-1,"28291":-1,"28292":-1,"28293":-1,"28294":-1,"28295":-1,"28296":-1,"28297":-1,"28298":-1,"28299":-1,"28300":-1,"28301":-1,"28302":2687,"28303":-1,"28304":-1,"28305":-1,"28306":-1,"28307":-1,"28308":-1,"28309":2685,"28310":2685,"28311":2683,"28312":-1,"28313":-1,"28314":2683,"28315":-1,"28316":-1,"28317":-1,"28318":-1,"28319":-1,"28320":-1,"28321":-1,"28322":-1,"28323":-1,"28324":-1,"28325":-1,"28326":2687,"28327":-1,"28328":-1,"28329":-1,"28330":0,"28331":2685,"28332":0,"28333":-1,"28334":2683,"28335":2684,"28336":-1,"28337":-1,"28338":-1,"28339":-1,"28340":-1,"28341":-1,"28342":-1,"28343":-1,"28344":-1,"28345":-1,"28346":-1,"28347":2686,"28348":-1,"28349":-1,"28350":0,"28351":-1,"28352":-1,"28353":-1,"28354":-1,"28355":-1,"28356":-1,"28357":0,"28358":-1,"28359":-1,"28360":-1,"28361":-1,"28362":-1,"28363":-1,"28364":-1,"28365":-1,"28366":-1,"28367":-1,"28368":-1,"28369":-1,"28370":-1,"28371":-1,"28372":-1,"28373":-1,"28374":-1,"28375":2686,"28376":-1,"28377":-1,"28378":-1,"28379":-1,"28380":2681,"28381":-1,"28382":-1,"28383":-1,"28384":-1,"28385":-1,"28386":-1,"28387":-1,"28388":-1,"28389":-1,"28390":-1,"28391":-1,"28392":-1,"28393":2686,"28394":-1,"28395":-1,"28396":-1,"28397":-1,"28398":-1,"28399":-1,"28400":-1,"28401":-1,"28402":-1,"28403":-1,"28404":-1,"28405":-1,"28406":-1,"28407":-1,"28408":-1,"28409":-1,"28410":-1,"28411":-1,"28412":-1,"28413":0,"28414":-1,"28415":2685,"28416":-1,"28417":-1,"28418":-1,"28419":-1,"28420":-1,"28421":-1,"28422":2685,"28423":-1,"28424":0,"28425":-1,"28426":-1,"28427":-1,"28428":-1,"28429":-1,"28430":-1,"28431":-1,"28432":-1,"28433":-1,"28434":2686,"28435":-1,"28436":-1,"28437":-1,"28438":-1,"28439":-1,"28440":-1,"28441":-1,"28442":-1,"28443":-1,"28444":-1,"28445":-1,"28446":-1,"28447":2687,"28448":-1,"28449":-1,"28450":-1,"28451":-1,"28452":-1,"28453":-1,"28454":-1,"28455":-1,"28456":-1,"28457":-1,"28458":-1,"28459":2684,"28460":-1,"28461":-1,"28462":-1,"28463":2685,"28464":-1,"28465":2683,"28466":-1,"28467":-1,"28468":-1,"28469":-1,"28470":-1,"28471":-1,"28472":-1,"28473":-1,"28474":-1,"28475":-1,"28476":-1,"28477":-1,"28478":-1,"28479":-1,"28480":-1,"28481":-1,"28482":-1,"28483":-1,"28484":-1,"28485":-1,"28486":-1,"28487":2685,"28488":2682,"28489":-1,"28490":-1,"28491":-1,"28492":-1,"28493":-1,"28494":-1,"28495":-1,"28496":-1,"28497":-1,"28498":2685,"28499":-1,"28500":-1,"28501":-1,"28502":-1,"28503":0,"28504":-1,"28505":-1,"28506":-1,"28507":-1,"28508":2681,"28509":-1,"28510":-1,"28511":-1,"28512":-1,"28513":-1,"28514":-1,"28515":-1,"28516":-1,"28517":-1,"28518":-1,"28519":-1,"28520":-1,"28521":-1,"28522":-1,"28523":-1,"28524":-1,"28525":-1,"28526":2685,"28527":-1,"28528":-1,"28529":2685,"28530":2685,"28531":-1,"28532":-1,"28533":-1,"28534":2684,"28535":-1,"28536":-1,"28537":-1,"28538":-1,"28539":-1,"28540":-1,"28541":2683,"28542":2687,"28543":-1,"28544":2686,"28545":2686,"28546":-1,"28547":-1,"28548":0,"28549":-1,"28550":-1,"28551":-1,"28552":2685,"28553":-1,"28554":-1,"28555":-1,"28556":-1,"28557":-1,"28558":-1,"28559":-1,"28560":2687,"28561":-1,"28562":-1,"28563":-1,"28564":-1,"28565":-1,"28566":-1,"28567":-1,"28568":-1,"28569":-1,"28570":-1,"28571":-1,"28572":2687,"28573":2681,"28574":-1,"28575":-1,"28576":-1,"28577":-1,"28578":-1,"28579":-1,"28580":-1,"28581":-1,"28582":-1,"28583":-1,"28584":-1,"28585":2682,"28586":-1,"28587":-1,"28588":-1,"28589":2685,"28590":-1,"28591":-1,"28592":-1,"28593":2681,"28594":-1,"28595":-1,"28596":-1,"28597":-1,"28598":-1,"28599":-1,"28600":-1,"28601":-1,"28602":-1,"28603":-1,"28604":-1,"28605":-1,"28606":0,"28607":-1,"28608":-1,"28609":-1,"28610":-1,"28611":-1,"28612":-1,"28613":-1,"28614":-1,"28615":-1,"28616":-1,"28617":-1,"28618":-1,"28619":-1,"28620":2683,"28621":-1,"28622":-1,"28623":-1,"28624":-1,"28625":-1,"28626":-1,"28627":-1,"28628":-1,"28629":-1,"28630":-1,"28631":-1,"28632":2682,"28633":-1,"28634":-1,"28635":-1,"28636":2686,"28637":-1,"28638":-1,"28639":2686,"28640":-1,"28641":-1,"28642":-1,"28643":2684,"28644":-1,"28645":-1,"28646":-1,"28647":-1,"28648":2684,"28649":-1,"28650":-1,"28651":-1,"28652":-1,"28653":-1,"28654":-1,"28655":-1,"28656":-1,"28657":-1,"28658":-1,"28659":-1,"28660":-1,"28661":-1,"28662":2682,"28663":-1,"28664":-1,"28665":-1,"28666":-1,"28667":-1,"28668":-1,"28669":0,"28670":-1,"28671":2684,"28672":2682,"28673":2684,"28674":-1,"28675":-1,"28676":-1,"28677":-1,"28678":2683,"28679":-1,"28680":-1,"28681":-1,"28682":-1,"28683":-1,"28684":-1,"28685":-1,"28686":-1,"28687":-1,"28688":-1,"28689":-1,"28690":2682,"28691":0,"28692":-1,"28693":-1,"28694":-1,"28695":2684,"28696":2681,"28697":-1,"28698":-1,"28699":-1,"28700":0,"28701":-1,"28702":2682,"28703":2681,"28704":-1,"28705":-1,"28706":-1,"28707":2683,"28708":2686,"28709":2685,"28710":-1,"28711":-1,"28712":-1,"28713":-1,"28714":-1,"28715":-1,"28716":-1,"28717":2685,"28718":2686,"28719":-1,"28720":-1,"28721":2682,"28722":-1,"28723":-1,"28724":-1,"28725":2682,"28726":-1,"28727":-1,"28728":-1,"28729":-1,"28730":-1,"28731":-1,"28732":2682,"28733":-1,"28734":2681,"28735":0,"28736":-1,"28737":-1,"28738":-1,"28739":-1,"28740":-1,"28741":-1,"28742":-1,"28743":-1,"28744":-1,"28745":-1,"28746":-1,"28747":-1,"28748":-1,"28749":-1,"28750":2685,"28751":-1,"28752":-1,"28753":-1,"28754":-1,"28755":-1,"28756":-1,"28757":-1,"28758":-1,"28759":-1,"28760":2685,"28761":0,"28762":-1,"28763":2686,"28764":-1,"28765":-1,"28766":2683,"28767":-1,"28768":-1,"28769":-1,"28770":-1,"28771":-1,"28772":-1,"28773":-1,"28774":-1,"28775":-1,"28776":0,"28777":-1,"28778":-1,"28779":-1,"28780":-1,"28781":-1,"28782":-1,"28783":-1,"28784":0,"28785":2682,"28786":2683,"28787":-1,"28788":-1,"28789":-1,"28790":-1,"28791":-1,"28792":-1,"28793":-1,"28794":-1,"28795":-1,"28796":-1,"28797":-1,"28798":-1,"28799":-1,"28800":-1,"28801":-1,"28802":-1,"28803":-1,"28804":-1,"28805":-1,"28806":-1,"28807":2683,"28808":-1,"28809":2686,"28810":-1,"28811":-1,"28812":-1,"28813":-1,"28814":0,"28815":-1,"28816":-1,"28817":-1,"28818":-1,"28819":-1,"28820":-1,"28821":2685,"28822":-1,"28823":-1,"28824":2685,"28825":2684,"28826":-1,"28827":-1,"28828":-1,"28829":-1,"28830":-1,"28831":-1,"28832":-1,"28833":-1,"28834":-1,"28835":0,"28836":2683,"28837":2683,"28838":-1,"28839":0,"28840":-1,"28841":-1,"28842":-1,"28843":-1,"28844":-1,"28845":-1,"28846":-1,"28847":-1,"28848":-1,"28849":-1,"28850":-1,"28851":-1,"28852":-1,"28853":-1,"28854":-1,"28855":0,"28856":-1,"28857":-1,"28858":-1,"28859":-1,"28860":-1,"28861":-1,"28862":-1,"28863":-1,"28864":-1,"28865":-1,"28866":-1,"28867":-1,"28868":0,"28869":0,"28870":2683,"28871":-1,"28872":-1,"28873":-1,"28874":-1,"28875":0,"28876":-1,"28877":-1,"28878":-1,"28879":-1,"28880":-1,"28881":-1,"28882":2684,"28883":-1,"28884":-1,"28885":-1,"28886":-1,"28887":-1,"28888":-1,"28889":-1,"28890":-1,"28891":0,"28892":-1,"28893":-1,"28894":-1,"28895":-1,"28896":-1,"28897":-1,"28898":-1,"28899":-1,"28900":-1,"28901":-1,"28902":-1,"28903":-1,"28904":-1,"28905":-1,"28906":-1,"28907":-1,"28908":-1,"28909":-1,"28910":-1,"28911":-1,"28912":-1,"28913":-1,"28914":-1,"28915":-1,"28916":2686,"28917":-1,"28918":-1,"28919":-1,"28920":-1,"28921":-1,"28922":-1,"28923":-1,"28924":-1,"28925":-1,"28926":-1,"28927":-1,"28928":-1,"28929":-1,"28930":-1,"28931":-1,"28932":-1,"28933":2682,"28934":2683,"28935":-1,"28936":-1,"28937":-1,"28938":-1,"28939":-1,"28940":-1,"28941":-1,"28942":-1,"28943":-1,"28944":-1,"28945":0,"28946":-1,"28947":-1,"28948":-1,"28949":-1,"28950":-1,"28951":-1,"28952":2684,"28953":-1,"28954":-1,"28955":-1,"28956":-1,"28957":-1,"28958":-1,"28959":-1,"28960":-1,"28961":-1,"28962":-1,"28963":-1,"28964":-1,"28965":-1,"28966":-1,"28967":-1,"28968":-1,"28969":-1,"28970":-1,"28971":-1,"28972":-1,"28973":-1,"28974":-1,"28975":-1,"28976":-1,"28977":-1,"28978":2685,"28979":-1,"28980":-1,"28981":-1,"28982":-1,"28983":-1,"28984":2683,"28985":-1,"28986":-1,"28987":-1,"28988":-1,"28989":-1,"28990":-1,"28991":-1,"28992":-1,"28993":-1,"28994":-1,"28995":0,"28996":-1,"28997":-1,"28998":-1,"28999":-1,"29000":-1,"29001":-1,"29002":2685,"29003":2686,"29004":-1,"29005":-1,"29006":-1,"29007":2684,"29008":-1,"29009":-1,"29010":-1,"29011":-1,"29012":-1,"29013":-1,"29014":-1,"29015":2681,"29016":2684,"29017":-1,"29018":-1,"29019":-1,"29020":-1,"29021":-1,"29022":-1,"29023":-1,"29024":-1,"29025":2682,"29026":-1,"29027":-1,"29028":-1,"29029":-1,"29030":-1,"29031":-1,"29032":-1,"29033":-1,"29034":-1,"29035":-1,"29036":2686,"29037":-1,"29038":-1,"29039":-1,"29040":-1,"29041":-1,"29042":-1,"29043":-1,"29044":2683,"29045":-1,"29046":-1,"29047":-1,"29048":-1,"29049":-1,"29050":2686,"29051":-1,"29052":-1,"29053":-1,"29054":-1,"29055":-1,"29056":-1,"29057":0,"29058":-1,"29059":-1,"29060":-1,"29061":-1,"29062":-1,"29063":-1,"29064":0,"29065":-1,"29066":-1,"29067":-1,"29068":-1,"29069":-1,"29070":-1,"29071":0,"29072":-1,"29073":-1,"29074":-1,"29075":-1,"29076":-1,"29077":-1,"29078":-1,"29079":-1,"29080":-1,"29081":-1,"29082":-1,"29083":-1,"29084":2682,"29085":2683,"29086":-1,"29087":-1,"29088":-1,"29089":-1,"29090":0,"29091":-1,"29092":-1,"29093":2683,"29094":-1,"29095":-1,"29096":-1,"29097":-1,"29098":-1,"29099":-1,"29100":-1,"29101":-1,"29102":-1,"29103":-1,"29104":-1,"29105":2686,"29106":-1,"29107":0,"29108":-1,"29109":-1,"29110":-1,"29111":-1,"29112":2686,"29113":2686,"29114":-1,"29115":-1,"29116":2682,"29117":-1,"29118":2686,"29119":-1,"29120":-1,"29121":-1,"29122":-1,"29123":-1,"29124":-1,"29125":-1,"29126":-1,"29127":-1,"29128":-1,"29129":-1,"29130":-1,"29131":-1,"29132":-1,"29133":-1,"29134":-1,"29135":-1,"29136":-1,"29137":-1,"29138":-1,"29139":-1,"29140":2684,"29141":-1,"29142":2684,"29143":2684,"29144":2687,"29145":-1,"29146":-1,"29147":-1,"29148":2681,"29149":2681,"29150":2685,"29151":-1,"29152":-1,"29153":-1,"29154":-1,"29155":-1,"29156":-1,"29157":-1,"29158":-1,"29159":-1,"29160":-1,"29161":2685,"29162":-1,"29163":-1,"29164":2684,"29165":-1,"29166":0,"29167":2683,"29168":-1,"29169":-1,"29170":-1,"29171":-1,"29172":-1,"29173":-1,"29174":-1,"29175":2687,"29176":2687,"29177":-1,"29178":-1,"29179":0,"29180":-1,"29181":-1,"29182":-1,"29183":-1,"29184":-1,"29185":-1,"29186":-1,"29187":-1,"29188":-1,"29189":-1,"29190":2686,"29191":-1,"29192":-1,"29193":-1,"29194":-1,"29195":-1,"29196":-1,"29197":-1,"29198":-1,"29199":-1,"29200":-1,"29201":-1,"29202":-1,"29203":-1,"29204":2684,"29205":-1,"29206":-1,"29207":-1,"29208":-1,"29209":-1,"29210":2686,"29211":-1,"29212":2682,"29213":-1,"29214":-1,"29215":-1,"29216":-1,"29217":-1,"29218":-1,"29219":-1,"29220":-1,"29221":-1,"29222":-1,"29223":-1,"29224":-1,"29225":0,"29226":2685,"29227":-1,"29228":-1,"29229":2683,"29230":2687,"29231":-1,"29232":-1,"29233":-1,"29234":-1,"29235":-1,"29236":-1,"29237":-1,"29238":-1,"29239":-1,"29240":-1,"29241":-1,"29242":2685,"29243":-1,"29244":-1,"29245":-1,"29246":-1,"29247":-1,"29248":-1,"29249":-1,"29250":-1,"29251":-1,"29252":-1,"29253":-1,"29254":-1,"29255":-1,"29256":-1,"29257":-1,"29258":-1,"29259":-1,"29260":-1,"29261":-1,"29262":-1,"29263":-1,"29264":-1,"29265":-1,"29266":-1,"29267":-1,"29268":0,"29269":-1,"29270":-1,"29271":-1,"29272":-1,"29273":-1,"29274":-1,"29275":-1,"29276":-1,"29277":2685,"29278":-1,"29279":-1,"29280":-1,"29281":-1,"29282":-1,"29283":2686,"29284":-1,"29285":-1,"29286":-1,"29287":-1,"29288":-1,"29289":-1,"29290":2683,"29291":2684,"29292":-1,"29293":-1,"29294":2687,"29295":-1,"29296":-1,"29297":-1,"29298":-1,"29299":-1,"29300":-1,"29301":-1,"29302":-1,"29303":-1,"29304":2683,"29305":-1,"29306":-1,"29307":-1,"29308":-1,"29309":2686,"29310":-1,"29311":2683,"29312":-1,"29313":-1,"29314":0,"29315":-1,"29316":-1,"29317":2684,"29318":-1,"29319":-1,"29320":-1,"29321":-1,"29322":2684,"29323":-1,"29324":-1,"29325":-1,"29326":-1,"29327":-1,"29328":-1,"29329":-1,"29330":-1,"29331":2682,"29332":-1,"29333":-1,"29334":-1,"29335":-1,"29336":2685,"29337":-1,"29338":2685,"29339":-1,"29340":-1,"29341":-1,"29342":-1,"29343":2684,"29344":-1,"29345":-1,"29346":-1,"29347":-1,"29348":-1,"29349":-1,"29350":-1,"29351":2687,"29352":-1,"29353":-1,"29354":-1,"29355":-1,"29356":-1,"29357":-1,"29358":2681,"29359":2684,"29360":-1,"29361":-1,"29362":-1,"29363":-1,"29364":-1,"29365":-1,"29366":-1,"29367":-1,"29368":-1,"29369":-1,"29370":-1,"29371":-1,"29372":-1,"29373":-1,"29374":-1,"29375":-1,"29376":-1,"29377":-1,"29378":-1,"29379":-1,"29380":-1,"29381":-1,"29382":-1,"29383":-1,"29384":-1,"29385":-1,"29386":-1,"29387":-1,"29388":-1,"29389":2681,"29390":0,"29391":-1,"29392":2685,"29393":-1,"29394":-1,"29395":0,"29396":-1,"29397":-1,"29398":-1,"29399":-1,"29400":-1,"29401":-1,"29402":-1,"29403":-1,"29404":-1,"29405":-1,"29406":0,"29407":-1,"29408":2682,"29409":-1,"29410":-1,"29411":-1,"29412":-1,"29413":-1,"29414":-1,"29415":-1,"29416":-1,"29417":-1,"29418":-1,"29419":-1,"29420":-1,"29421":-1,"29422":-1,"29423":2682,"29424":-1,"29425":-1,"29426":-1,"29427":-1,"29428":-1,"29429":2687,"29430":-1,"29431":-1,"29432":-1,"29433":-1,"29434":-1,"29435":-1,"29436":-1,"29437":-1,"29438":-1,"29439":-1,"29440":-1,"29441":-1,"29442":-1,"29443":-1,"29444":-1,"29445":0,"29446":-1,"29447":-1,"29448":2683,"29449":-1,"29450":-1,"29451":-1,"29452":-1,"29453":-1,"29454":-1,"29455":-1,"29456":-1,"29457":-1,"29458":-1,"29459":-1,"29460":-1,"29461":2684,"29462":-1,"29463":-1,"29464":2685,"29465":-1,"29466":-1,"29467":2685,"29468":-1,"29469":-1,"29470":-1,"29471":-1,"29472":-1,"29473":0,"29474":-1,"29475":-1,"29476":-1,"29477":-1,"29478":-1,"29479":-1,"29480":-1,"29481":-1,"29482":-1,"29483":-1,"29484":-1,"29485":-1,"29486":-1,"29487":-1,"29488":-1,"29489":2686,"29490":-1,"29491":-1,"29492":-1,"29493":-1,"29494":-1,"29495":-1,"29496":-1,"29497":-1,"29498":-1,"29499":-1,"29500":-1,"29501":-1,"29502":-1,"29503":-1,"29504":-1,"29505":-1,"29506":-1,"29507":-1,"29508":2687,"29509":-1,"29510":2682,"29511":2685,"29512":-1,"29513":-1,"29514":-1,"29515":-1,"29516":-1,"29517":-1,"29518":-1,"29519":-1,"29520":-1,"29521":-1,"29522":-1,"29523":-1,"29524":-1,"29525":-1,"29526":-1,"29527":-1,"29528":2683,"29529":0,"29530":-1,"29531":-1,"29532":-1,"29533":-1,"29534":-1,"29535":-1,"29536":-1,"29537":-1,"29538":-1,"29539":-1,"29540":2683,"29541":-1,"29542":-1,"29543":-1,"29544":-1,"29545":-1,"29546":-1,"29547":-1,"29548":-1,"29549":2682,"29550":-1,"29551":-1,"29552":-1,"29553":-1,"29554":-1,"29555":2684,"29556":-1,"29557":-1,"29558":-1,"29559":-1,"29560":-1,"29561":2687,"29562":-1,"29563":-1,"29564":-1,"29565":-1,"29566":2681,"29567":-1,"29568":-1,"29569":-1,"29570":-1,"29571":-1,"29572":-1,"29573":2687,"29574":-1,"29575":2681,"29576":-1,"29577":-1,"29578":0,"29579":-1,"29580":-1,"29581":-1,"29582":-1,"29583":-1,"29584":-1,"29585":-1,"29586":-1,"29587":-1,"29588":-1,"29589":-1,"29590":-1,"29591":-1,"29592":-1,"29593":-1,"29594":-1,"29595":-1,"29596":-1,"29597":-1,"29598":-1,"29599":-1,"29600":-1,"29601":2686,"29602":-1,"29603":2681,"29604":-1,"29605":-1,"29606":-1,"29607":2682,"29608":-1,"29609":-1,"29610":-1,"29611":-1,"29612":-1,"29613":-1,"29614":-1,"29615":2684,"29616":2684,"29617":-1,"29618":-1,"29619":-1,"29620":-1,"29621":-1,"29622":-1,"29623":2682,"29624":-1,"29625":-1,"29626":-1,"29627":-1,"29628":-1,"29629":-1,"29630":-1,"29631":-1,"29632":2687,"29633":-1,"29634":-1,"29635":-1,"29636":-1,"29637":-1,"29638":-1,"29639":-1,"29640":-1,"29641":-1,"29642":-1,"29643":-1,"29644":-1,"29645":-1,"29646":2684,"29647":-1,"29648":-1,"29649":-1,"29650":-1,"29651":-1,"29652":-1,"29653":-1,"29654":2683,"29655":2682,"29656":-1,"29657":2684,"29658":-1,"29659":-1,"29660":-1,"29661":-1,"29662":-1,"29663":-1,"29664":-1,"29665":-1,"29666":-1,"29667":-1,"29668":-1,"29669":-1,"29670":-1,"29671":-1,"29672":0,"29673":-1,"29674":-1,"29675":-1,"29676":-1,"29677":2684,"29678":-1,"29679":-1,"29680":2686,"29681":-1,"29682":-1,"29683":-1,"29684":-1,"29685":-1,"29686":-1,"29687":-1,"29688":-1,"29689":-1,"29690":0,"29691":-1,"29692":-1,"29693":-1,"29694":-1,"29695":-1,"29696":-1,"29697":-1,"29698":-1,"29699":-1,"29700":-1,"29701":-1,"29702":-1,"29703":-1,"29704":-1,"29705":-1,"29706":-1,"29707":-1,"29708":-1,"29709":-1,"29710":-1,"29711":-1,"29712":-1,"29713":-1,"29714":-1,"29715":-1,"29716":-1,"29717":-1,"29718":0,"29719":-1,"29720":2683,"29721":-1,"29722":-1,"29723":-1,"29724":-1,"29725":-1,"29726":-1,"29727":-1,"29728":-1,"29729":-1,"29730":-1,"29731":0,"29732":-1,"29733":-1,"29734":2684,"29735":-1,"29736":-1,"29737":-1,"29738":-1,"29739":2685,"29740":-1,"29741":-1,"29742":-1,"29743":-1,"29744":-1,"29745":-1,"29746":-1,"29747":-1,"29748":-1,"29749":2687,"29750":2682,"29751":-1,"29752":-1,"29753":-1,"29754":-1,"29755":0,"29756":-1,"29757":-1,"29758":2686,"29759":-1,"29760":-1,"29761":-1,"29762":-1,"29763":-1,"29764":-1,"29765":-1,"29766":-1,"29767":2686,"29768":2685,"29769":-1,"29770":-1,"29771":-1,"29772":2687,"29773":-1,"29774":-1,"29775":-1,"29776":-1,"29777":-1,"29778":-1,"29779":-1,"29780":-1,"29781":-1,"29782":-1,"29783":-1,"29784":-1,"29785":-1,"29786":-1,"29787":-1,"29788":-1,"29789":0,"29790":-1,"29791":2682,"29792":-1,"29793":-1,"29794":-1,"29795":0,"29796":-1,"29797":-1,"29798":-1,"29799":-1,"29800":-1,"29801":-1,"29802":-1,"29803":-1,"29804":-1,"29805":-1,"29806":-1,"29807":2685,"29808":2686,"29809":-1,"29810":-1,"29811":-1,"29812":2685,"29813":-1,"29814":2684,"29815":-1,"29816":-1,"29817":-1,"29818":-1,"29819":-1,"29820":-1,"29821":-1,"29822":-1,"29823":0,"29824":-1,"29825":-1,"29826":-1,"29827":-1,"29828":-1,"29829":-1,"29830":-1,"29831":-1,"29832":-1,"29833":-1,"29834":-1,"29835":2682,"29836":-1,"29837":0,"29838":-1,"29839":2682,"29840":-1,"29841":2681,"29842":-1,"29843":-1,"29844":-1,"29845":0,"29846":0,"29847":-1,"29848":-1,"29849":2682,"29850":-1,"29851":2682,"29852":-1,"29853":-1,"29854":-1,"29855":-1,"29856":-1,"29857":-1,"29858":-1,"29859":-1,"29860":-1,"29861":-1,"29862":-1,"29863":-1,"29864":-1,"29865":-1,"29866":-1,"29867":-1,"29868":-1,"29869":-1,"29870":-1,"29871":-1,"29872":-1,"29873":2684,"29874":-1,"29875":-1,"29876":-1,"29877":-1,"29878":-1,"29879":-1,"29880":-1,"29881":-1,"29882":-1,"29883":-1,"29884":0,"29885":-1,"29886":-1,"29887":-1,"29888":0,"29889":-1,"29890":2686,"29891":-1,"29892":-1,"29893":-1,"29894":-1,"29895":2683,"29896":2685,"29897":-1,"29898":-1,"29899":-1,"29900":-1,"29901":-1,"29902":-1,"29903":-1,"29904":-1,"29905":-1,"29906":-1,"29907":-1,"29908":-1,"29909":-1,"29910":-1,"29911":-1,"29912":2682,"29913":2685,"29914":-1,"29915":-1,"29916":-1,"29917":-1,"29918":-1,"29919":-1,"29920":-1,"29921":-1,"29922":2683,"29923":-1,"29924":-1,"29925":-1,"29926":-1,"29927":-1,"29928":-1,"29929":-1,"29930":-1,"29931":2684,"29932":-1,"29933":-1,"29934":-1,"29935":-1,"29936":-1,"29937":-1,"29938":-1,"29939":-1,"29940":-1,"29941":-1,"29942":-1,"29943":-1,"29944":-1,"29945":-1,"29946":-1,"29947":-1,"29948":-1,"29949":0,"29950":-1,"29951":-1,"29952":-1,"29953":-1,"29954":2686,"29955":-1,"29956":-1,"29957":-1,"29958":-1,"29959":-1,"29960":-1,"29961":-1,"29962":-1,"29963":-1,"29964":-1,"29965":-1,"29966":-1,"29967":2685,"29968":-1,"29969":-1,"29970":-1,"29971":2685,"29972":-1,"29973":2686,"29974":-1,"29975":-1,"29976":-1,"29977":-1,"29978":-1,"29979":-1,"29980":-1,"29981":-1,"29982":-1,"29983":-1,"29984":-1,"29985":-1,"29986":-1,"29987":-1,"29988":-1,"29989":-1,"29990":-1,"29991":-1,"29992":-1,"29993":-1,"29994":2682,"29995":-1,"29996":-1,"29997":-1,"29998":-1,"29999":-1,"30000":-1,"30001":-1,"30002":-1,"30003":2685,"30004":-1,"30005":-1,"30006":-1,"30007":-1,"30008":-1,"30009":-1,"30010":2687,"30011":-1,"30012":-1,"30013":-1,"30014":-1,"30015":-1,"30016":-1,"30017":-1,"30018":-1,"30019":-1,"30020":-1,"30021":-1,"30022":-1,"30023":2686,"30024":-1,"30025":2683,"30026":-1,"30027":-1,"30028":-1,"30029":-1,"30030":-1,"30031":2684,"30032":-1,"30033":-1,"30034":-1,"30035":-1,"30036":-1,"30037":-1,"30038":-1,"30039":-1,"30040":-1,"30041":-1,"30042":-1,"30043":-1,"30044":-1,"30045":-1,"30046":-1,"30047":0,"30048":-1,"30049":-1,"30050":-1,"30051":-1,"30052":-1,"30053":-1,"30054":-1,"30055":-1,"30056":-1,"30057":-1,"30058":-1,"30059":0,"30060":-1,"30061":-1,"30062":-1,"30063":0,"30064":-1,"30065":-1,"30066":2682,"30067":-1,"30068":-1,"30069":-1,"30070":-1,"30071":-1,"30072":-1,"30073":-1,"30074":-1,"30075":-1,"30076":-1,"30077":2687,"30078":-1,"30079":-1,"30080":-1,"30081":-1,"30082":-1,"30083":-1,"30084":-1,"30085":-1,"30086":-1,"30087":2682,"30088":-1,"30089":-1,"30090":-1,"30091":-1,"30092":-1,"30093":-1,"30094":-1,"30095":-1,"30096":-1,"30097":-1,"30098":-1,"30099":-1,"30100":-1,"30101":-1,"30102":-1,"30103":-1,"30104":-1,"30105":-1,"30106":-1,"30107":-1,"30108":-1,"30109":-1,"30110":-1,"30111":-1,"30112":-1,"30113":-1,"30114":2683,"30115":-1,"30116":-1,"30117":-1,"30118":-1,"30119":2683,"30120":-1,"30121":-1,"30122":-1,"30123":-1,"30124":-1,"30125":-1,"30126":-1,"30127":-1,"30128":-1,"30129":-1,"30130":-1,"30131":-1,"30132":2682,"30133":-1,"30134":2684,"30135":-1,"30136":-1,"30137":-1,"30138":-1,"30139":-1,"30140":-1,"30141":-1,"30142":2682,"30143":-1,"30144":-1,"30145":-1,"30146":2687,"30147":-1,"30148":-1,"30149":-1,"30150":-1,"30151":-1,"30152":-1,"30153":-1,"30154":-1,"30155":-1,"30156":-1,"30157":-1,"30158":-1,"30159":-1,"30160":-1,"30161":-1,"30162":-1,"30163":-1,"30164":-1,"30165":-1,"30166":-1,"30167":-1,"30168":2687,"30169":-1,"30170":-1,"30171":-1,"30172":-1,"30173":-1,"30174":-1,"30175":0,"30176":2684,"30177":-1,"30178":-1,"30179":-1,"30180":-1,"30181":-1,"30182":2687,"30183":-1,"30184":-1,"30185":0,"30186":2684,"30187":2682,"30188":-1,"30189":-1,"30190":-1,"30191":-1,"30192":-1,"30193":-1,"30194":-1,"30195":-1,"30196":-1,"30197":-1,"30198":2682,"30199":-1,"30200":-1,"30201":-1,"30202":-1,"30203":0,"30204":-1,"30205":-1,"30206":-1,"30207":2683,"30208":-1,"30209":-1,"30210":-1,"30211":-1,"30212":-1,"30213":2685,"30214":2684,"30215":2685,"30216":2682,"30217":-1,"30218":-1,"30219":-1,"30220":-1,"30221":-1,"30222":-1,"30223":-1,"30224":-1,"30225":-1,"30226":-1,"30227":2687,"30228":-1,"30229":-1,"30230":-1,"30231":-1,"30232":-1,"30233":-1,"30234":-1,"30235":-1,"30236":-1,"30237":-1,"30238":-1,"30239":-1,"30240":-1,"30241":-1,"30242":-1,"30243":-1,"30244":0,"30245":-1,"30246":-1,"30247":-1,"30248":-1,"30249":-1,"30250":-1,"30251":-1,"30252":-1,"30253":-1,"30254":0,"30255":2683,"30256":-1,"30257":-1,"30258":-1,"30259":2687,"30260":-1,"30261":-1,"30262":-1,"30263":-1,"30264":-1,"30265":-1,"30266":-1,"30267":-1,"30268":0,"30269":-1,"30270":-1,"30271":-1,"30272":-1,"30273":-1,"30274":-1,"30275":-1,"30276":-1,"30277":-1,"30278":-1,"30279":-1,"30280":-1,"30281":-1,"30282":-1,"30283":2681,"30284":-1,"30285":-1,"30286":-1,"30287":-1,"30288":-1,"30289":2686,"30290":-1,"30291":-1,"30292":-1,"30293":-1,"30294":-1,"30295":-1,"30296":-1,"30297":-1,"30298":-1,"30299":-1,"30300":-1,"30301":-1,"30302":-1,"30303":2686,"30304":-1,"30305":2682,"30306":-1,"30307":-1,"30308":-1,"30309":2685,"30310":-1,"30311":-1,"30312":2683,"30313":-1,"30314":-1,"30315":2683,"30316":-1,"30317":-1,"30318":-1,"30319":-1,"30320":-1,"30321":-1,"30322":-1,"30323":-1,"30324":-1,"30325":-1,"30326":-1,"30327":-1,"30328":2681,"30329":-1,"30330":-1,"30331":-1,"30332":-1,"30333":2683,"30334":-1,"30335":-1,"30336":-1,"30337":-1,"30338":-1,"30339":-1,"30340":-1,"30341":-1,"30342":-1,"30343":-1,"30344":-1,"30345":-1,"30346":-1,"30347":-1,"30348":-1,"30349":-1,"30350":-1,"30351":-1,"30352":-1,"30353":-1,"30354":-1,"30355":-1,"30356":-1,"30357":-1,"30358":2683,"30359":-1,"30360":2687,"30361":-1,"30362":-1,"30363":-1,"30364":-1,"30365":-1,"30366":-1,"30367":-1,"30368":-1,"30369":-1,"30370":-1,"30371":-1,"30372":-1,"30373":-1,"30374":-1,"30375":-1,"30376":-1,"30377":-1,"30378":-1,"30379":-1,"30380":-1,"30381":-1,"30382":-1,"30383":-1,"30384":-1,"30385":-1,"30386":-1,"30387":-1,"30388":0,"30389":-1,"30390":-1,"30391":-1,"30392":-1,"30393":0,"30394":-1,"30395":-1,"30396":2685,"30397":-1,"30398":-1,"30399":-1,"30400":-1,"30401":2683,"30402":-1,"30403":-1,"30404":2682,"30405":2687,"30406":-1,"30407":-1,"30408":-1,"30409":-1,"30410":-1,"30411":-1,"30412":-1,"30413":-1,"30414":-1,"30415":2682,"30416":-1,"30417":-1,"30418":-1,"30419":-1,"30420":-1,"30421":-1,"30422":-1,"30423":-1,"30424":-1,"30425":-1,"30426":-1,"30427":-1,"30428":0,"30429":-1,"30430":-1,"30431":-1,"30432":-1,"30433":-1,"30434":-1,"30435":-1,"30436":-1,"30437":-1,"30438":-1,"30439":-1,"30440":-1,"30441":-1,"30442":0,"30443":-1,"30444":-1,"30445":-1,"30446":-1,"30447":-1,"30448":-1,"30449":-1,"30450":2684,"30451":-1,"30452":-1,"30453":2687,"30454":-1,"30455":-1,"30456":-1,"30457":-1,"30458":-1,"30459":-1,"30460":-1,"30461":2684,"30462":-1,"30463":-1,"30464":-1,"30465":-1,"30466":-1,"30467":2684,"30468":-1,"30469":0,"30470":-1,"30471":-1,"30472":0,"30473":-1,"30474":-1,"30475":2682,"30476":-1,"30477":-1,"30478":0,"30479":-1,"30480":2682,"30481":-1,"30482":-1,"30483":-1,"30484":-1,"30485":-1,"30486":-1,"30487":2684,"30488":-1,"30489":-1,"30490":-1,"30491":0,"30492":-1,"30493":-1,"30494":-1,"30495":-1,"30496":-1,"30497":-1,"30498":-1,"30499":-1,"30500":2686,"30501":-1,"30502":-1,"30503":-1,"30504":-1,"30505":-1,"30506":-1,"30507":-1,"30508":-1,"30509":0,"30510":-1,"30511":-1,"30512":-1,"30513":-1,"30514":-1,"30515":-1,"30516":-1,"30517":-1,"30518":-1,"30519":-1,"30520":-1,"30521":-1,"30522":-1,"30523":2682,"30524":2686,"30525":-1,"30526":0,"30527":-1,"30528":-1,"30529":-1,"30530":-1,"30531":2685,"30532":0,"30533":-1,"30534":-1,"30535":-1,"30536":-1,"30537":-1,"30538":-1,"30539":-1,"30540":-1,"30541":-1,"30542":-1,"30543":-1,"30544":-1,"30545":-1,"30546":-1,"30547":-1,"30548":-1,"30549":-1,"30550":-1,"30551":-1,"30552":-1,"30553":0,"30554":-1,"30555":-1,"30556":0,"30557":-1,"30558":-1,"30559":-1,"30560":2682,"30561":-1,"30562":-1,"30563":-1,"30564":-1,"30565":-1,"30566":-1,"30567":2683,"30568":-1,"30569":2683,"30570":-1,"30571":-1,"30572":-1,"30573":-1,"30574":-1,"30575":-1,"30576":-1,"30577":-1,"30578":-1,"30579":-1,"30580":-1,"30581":-1,"30582":-1,"30583":-1,"30584":-1,"30585":-1,"30586":2683,"30587":-1,"30588":-1,"30589":2683,"30590":-1,"30591":-1,"30592":-1,"30593":-1,"30594":-1,"30595":-1,"30596":-1,"30597":-1,"30598":-1,"30599":-1,"30600":-1,"30601":-1,"30602":-1,"30603":2686,"30604":-1,"30605":2686,"30606":-1,"30607":-1,"30608":-1,"30609":-1,"30610":-1,"30611":-1,"30612":-1,"30613":-1,"30614":-1,"30615":-1,"30616":-1,"30617":-1,"30618":2681,"30619":-1,"30620":-1,"30621":-1,"30622":-1,"30623":-1,"30624":-1,"30625":-1,"30626":-1,"30627":-1,"30628":-1,"30629":-1,"30630":-1,"30631":-1,"30632":-1,"30633":-1,"30634":-1,"30635":-1,"30636":-1,"30637":2681,"30638":-1,"30639":-1,"30640":-1,"30641":2685,"30642":-1,"30643":-1,"30644":2685,"30645":-1,"30646":-1,"30647":-1,"30648":-1,"30649":2683,"30650":-1,"30651":-1,"30652":0,"30653":-1,"30654":-1,"30655":2684,"30656":-1,"30657":-1,"30658":-1,"30659":-1,"30660":-1,"30661":-1,"30662":-1,"30663":-1,"30664":-1,"30665":-1,"30666":-1,"30667":-1,"30668":-1,"30669":-1,"30670":-1,"30671":-1,"30672":-1,"30673":-1,"30674":-1,"30675":-1,"30676":-1,"30677":-1,"30678":-1,"30679":-1,"30680":-1,"30681":-1,"30682":0,"30683":-1,"30684":2686,"30685":-1,"30686":-1,"30687":-1,"30688":2684,"30689":-1,"30690":-1,"30691":-1,"30692":-1,"30693":-1,"30694":-1,"30695":-1,"30696":2683,"30697":-1,"30698":-1,"30699":-1,"30700":0,"30701":-1,"30702":-1,"30703":2684,"30704":-1,"30705":-1,"30706":2686,"30707":-1,"30708":-1,"30709":-1,"30710":2684,"30711":-1,"30712":-1,"30713":-1,"30714":-1,"30715":-1,"30716":-1,"30717":-1,"30718":-1,"30719":-1,"30720":-1,"30721":-1,"30722":-1,"30723":-1,"30724":-1,"30725":-1,"30726":0,"30727":-1,"30728":-1,"30729":-1,"30730":2686,"30731":-1,"30732":-1,"30733":-1,"30734":-1,"30735":2683,"30736":-1,"30737":-1,"30738":-1,"30739":-1,"30740":-1,"30741":-1,"30742":2681,"30743":-1,"30744":-1,"30745":-1,"30746":-1,"30747":-1,"30748":-1,"30749":2687,"30750":-1,"30751":2687,"30752":-1,"30753":-1,"30754":-1,"30755":-1,"30756":0,"30757":-1,"30758":-1,"30759":-1,"30760":-1,"30761":-1,"30762":-1,"30763":-1,"30764":-1,"30765":-1,"30766":-1,"30767":-1,"30768":-1,"30769":-1,"30770":-1,"30771":-1,"30772":-1,"30773":-1,"30774":-1,"30775":-1,"30776":-1,"30777":-1,"30778":-1,"30779":-1,"30780":2683,"30781":-1,"30782":-1,"30783":2686,"30784":0,"30785":-1,"30786":-1,"30787":-1,"30788":-1,"30789":-1,"30790":-1,"30791":-1,"30792":-1,"30793":-1,"30794":-1,"30795":-1,"30796":-1,"30797":-1,"30798":2687,"30799":-1,"30800":-1,"30801":-1,"30802":2683,"30803":-1,"30804":-1,"30805":-1,"30806":-1,"30807":-1,"30808":-1,"30809":-1,"30810":-1,"30811":-1,"30812":-1,"30813":-1,"30814":-1,"30815":-1,"30816":-1,"30817":-1,"30818":-1,"30819":-1,"30820":-1,"30821":-1,"30822":-1,"30823":-1,"30824":-1,"30825":-1,"30826":0,"30827":-1,"30828":-1,"30829":-1,"30830":-1,"30831":-1,"30832":-1,"30833":-1,"30834":-1,"30835":-1,"30836":-1,"30837":-1,"30838":-1,"30839":-1,"30840":-1,"30841":-1,"30842":-1,"30843":-1,"30844":2681,"30845":-1,"30846":2682,"30847":-1,"30848":-1,"30849":-1,"30850":-1,"30851":-1,"30852":-1,"30853":-1,"30854":2683,"30855":-1,"30856":-1,"30857":-1,"30858":-1,"30859":-1,"30860":-1,"30861":-1,"30862":-1,"30863":-1,"30864":-1,"30865":-1,"30866":-1,"30867":-1,"30868":-1,"30869":-1,"30870":2684,"30871":-1,"30872":-1,"30873":-1,"30874":-1,"30875":-1,"30876":-1,"30877":-1,"30878":-1,"30879":-1,"30880":-1,"30881":2686,"30882":-1,"30883":-1,"30884":-1,"30885":-1,"30886":2683,"30887":-1,"30888":-1,"30889":-1,"30890":-1,"30891":0,"30892":-1,"30893":-1,"30894":-1,"30895":-1,"30896":-1,"30897":-1,"30898":-1,"30899":-1,"30900":-1,"30901":-1,"30902":2686,"30903":-1,"30904":-1,"30905":-1,"30906":-1,"30907":-1,"30908":-1,"30909":-1,"30910":-1,"30911":2683,"30912":-1,"30913":-1,"30914":-1,"30915":-1,"30916":-1,"30917":-1,"30918":2683,"30919":-1,"30920":-1,"30921":2687,"30922":-1,"30923":0,"30924":-1,"30925":-1,"30926":-1,"30927":-1,"30928":-1,"30929":2681,"30930":-1,"30931":-1,"30932":-1,"30933":-1,"30934":-1,"30935":-1,"30936":-1,"30937":-1,"30938":2684,"30939":-1,"30940":-1,"30941":-1,"30942":-1,"30943":-1,"30944":-1,"30945":-1,"30946":-1,"30947":-1,"30948":-1,"30949":-1,"30950":-1,"30951":-1,"30952":-1,"30953":2685,"30954":0,"30955":-1,"30956":-1,"30957":-1,"30958":-1,"30959":2687,"30960":-1,"30961":2683,"30962":-1,"30963":-1,"30964":-1,"30965":-1,"30966":-1,"30967":-1,"30968":2683,"30969":-1,"30970":-1,"30971":-1,"30972":-1,"30973":-1,"30974":2686,"30975":-1,"30976":-1,"30977":-1,"30978":-1,"30979":-1,"30980":-1,"30981":2684,"30982":-1,"30983":-1,"30984":0,"30985":-1,"30986":0,"30987":-1,"30988":-1,"30989":-1,"30990":-1,"30991":-1,"30992":-1,"30993":-1,"30994":-1,"30995":-1,"30996":2683,"30997":-1,"30998":-1,"30999":-1,"31000":0,"31001":-1,"31002":-1,"31003":-1,"31004":-1,"31005":0,"31006":-1,"31007":-1,"31008":-1,"31009":-1,"31010":-1,"31011":-1,"31012":2686,"31013":-1,"31014":-1,"31015":-1,"31016":-1,"31017":-1,"31018":-1,"31019":-1,"31020":-1,"31021":-1,"31022":-1,"31023":0,"31024":-1,"31025":-1,"31026":-1,"31027":-1,"31028":-1,"31029":-1,"31030":-1,"31031":2684,"31032":2683,"31033":-1,"31034":2682,"31035":-1,"31036":-1,"31037":-1,"31038":-1,"31039":-1,"31040":-1,"31041":-1,"31042":-1,"31043":-1,"31044":0,"31045":-1,"31046":-1,"31047":-1,"31048":2684,"31049":-1,"31050":-1,"31051":-1,"31052":-1,"31053":-1,"31054":-1,"31055":-1,"31056":-1,"31057":-1,"31058":-1,"31059":-1,"31060":2686,"31061":-1,"31062":-1,"31063":-1,"31064":-1,"31065":-1,"31066":-1,"31067":-1,"31068":-1,"31069":-1,"31070":-1,"31071":-1,"31072":-1,"31073":-1,"31074":-1,"31075":-1,"31076":-1,"31077":-1,"31078":0,"31079":-1,"31080":-1,"31081":-1,"31082":-1,"31083":-1,"31084":-1,"31085":-1,"31086":-1,"31087":-1,"31088":-1,"31089":-1,"31090":-1,"31091":-1,"31092":-1,"31093":2684,"31094":-1,"31095":-1,"31096":-1,"31097":2684,"31098":-1,"31099":-1,"31100":-1,"31101":2685,"31102":-1,"31103":2681,"31104":-1,"31105":2682,"31106":2683,"31107":-1,"31108":-1,"31109":-1,"31110":-1,"31111":0,"31112":-1,"31113":2684,"31114":-1,"31115":-1,"31116":2686,"31117":2682,"31118":-1,"31119":-1,"31120":-1,"31121":-1,"31122":-1,"31123":-1,"31124":2682,"31125":-1,"31126":-1,"31127":-1,"31128":-1,"31129":-1,"31130":-1,"31131":0,"31132":-1,"31133":-1,"31134":-1,"31135":-1,"31136":-1,"31137":-1,"31138":-1,"31139":-1,"31140":-1,"31141":-1,"31142":2682,"31143":-1,"31144":2684,"31145":-1,"31146":-1,"31147":-1,"31148":-1,"31149":2683,"31150":-1,"31151":-1,"31152":-1,"31153":2685,"31154":-1,"31155":-1,"31156":-1,"31157":-1,"31158":-1,"31159":-1,"31160":-1,"31161":-1,"31162":-1,"31163":-1,"31164":-1,"31165":-1,"31166":2683,"31167":-1,"31168":-1,"31169":-1,"31170":-1,"31171":-1,"31172":-1,"31173":-1,"31174":-1,"31175":-1,"31176":-1,"31177":-1,"31178":-1,"31179":-1,"31180":-1,"31181":0,"31182":-1,"31183":-1,"31184":-1,"31185":-1,"31186":-1,"31187":-1,"31188":-1,"31189":-1,"31190":-1,"31191":-1,"31192":-1,"31193":-1,"31194":-1,"31195":-1,"31196":-1,"31197":2683,"31198":-1,"31199":-1,"31200":0,"31201":-1,"31202":-1,"31203":-1,"31204":2687,"31205":-1,"31206":-1,"31207":-1,"31208":-1,"31209":-1,"31210":-1,"31211":-1,"31212":-1,"31213":-1,"31214":-1,"31215":-1,"31216":0,"31217":-1,"31218":-1,"31219":-1,"31220":-1,"31221":-1,"31222":-1,"31223":-1,"31224":-1,"31225":-1,"31226":-1,"31227":-1,"31228":-1,"31229":-1,"31230":-1,"31231":-1,"31232":-1,"31233":-1,"31234":-1,"31235":-1,"31236":-1,"31237":-1,"31238":-1,"31239":-1,"31240":-1,"31241":-1,"31242":2684,"31243":2684,"31244":-1,"31245":-1,"31246":2682,"31247":-1,"31248":-1,"31249":-1,"31250":-1,"31251":-1,"31252":-1,"31253":-1,"31254":-1,"31255":-1,"31256":-1,"31257":-1,"31258":-1,"31259":-1,"31260":-1,"31261":2682,"31262":-1,"31263":-1,"31264":2682,"31265":-1,"31266":-1,"31267":-1,"31268":2682,"31269":-1,"31270":-1,"31271":-1,"31272":-1,"31273":-1,"31274":-1,"31275":2685,"31276":-1,"31277":-1,"31278":-1,"31279":-1,"31280":-1,"31281":-1,"31282":-1,"31283":-1,"31284":-1,"31285":2686,"31286":2687,"31287":-1,"31288":-1,"31289":2682,"31290":-1,"31291":2681,"31292":-1,"31293":-1,"31294":-1,"31295":-1,"31296":-1,"31297":-1,"31298":-1,"31299":-1,"31300":-1,"31301":-1,"31302":0,"31303":-1,"31304":-1,"31305":-1,"31306":-1,"31307":-1,"31308":-1,"31309":-1,"31310":-1,"31311":-1,"31312":0,"31313":-1,"31314":-1,"31315":-1,"31316":-1,"31317":2684,"31318":0,"31319":-1,"31320":-1,"31321":-1,"31322":-1,"31323":-1,"31324":-1,"31325":-1,"31326":-1,"31327":-1,"31328":-1,"31329":-1,"31330":-1,"31331":-1,"31332":-1,"31333":-1,"31334":-1,"31335":-1,"31336":-1,"31337":-1,"31338":-1,"31339":-1,"31340":-1,"31341":2687,"31342":0,"31343":-1,"31344":-1,"31345":-1,"31346":-1,"31347":2683,"31348":-1,"31349":-1,"31350":-1,"31351":2681,"31352":-1,"31353":2684,"31354":-1,"31355":-1,"31356":-1,"31357":-1,"31358":-1,"31359":-1,"31360":-1,"31361":-1,"31362":-1,"31363":-1,"31364":-1,"31365":-1,"31366":2685,"31367":-1,"31368":-1,"31369":-1,"31370":-1,"31371":-1,"31372":-1,"31373":-1,"31374":-1,"31375":-1,"31376":-1,"31377":-1,"31378":-1,"31379":2685,"31380":-1,"31381":-1,"31382":-1,"31383":-1,"31384":-1,"31385":-1,"31386":-1,"31387":-1,"31388":-1,"31389":-1,"31390":-1,"31391":-1,"31392":-1,"31393":-1,"31394":-1,"31395":-1,"31396":-1,"31397":-1,"31398":0,"31399":-1,"31400":-1,"31401":-1,"31402":-1,"31403":2682,"31404":-1,"31405":2685,"31406":-1,"31407":-1,"31408":-1,"31409":-1,"31410":0,"31411":-1,"31412":-1,"31413":-1,"31414":-1,"31415":-1,"31416":-1,"31417":-1,"31418":-1,"31419":2685,"31420":-1,"31421":-1,"31422":-1,"31423":2685,"31424":-1,"31425":-1,"31426":-1,"31427":-1,"31428":0,"31429":-1,"31430":-1,"31431":-1,"31432":-1,"31433":-1,"31434":-1,"31435":-1,"31436":-1,"31437":2684,"31438":-1,"31439":-1,"31440":2683,"31441":-1,"31442":-1,"31443":-1,"31444":-1,"31445":-1,"31446":-1,"31447":-1,"31448":-1,"31449":-1,"31450":-1,"31451":-1,"31452":-1,"31453":-1,"31454":-1,"31455":-1,"31456":-1,"31457":-1,"31458":-1,"31459":-1,"31460":-1,"31461":-1,"31462":-1,"31463":-1,"31464":-1,"31465":2684,"31466":-1,"31467":2686,"31468":2681,"31469":-1,"31470":-1,"31471":-1,"31472":-1,"31473":0,"31474":-1,"31475":-1,"31476":-1,"31477":2684,"31478":0,"31479":-1,"31480":-1,"31481":-1,"31482":2681,"31483":-1,"31484":-1,"31485":-1,"31486":-1,"31487":-1,"31488":-1,"31489":-1,"31490":-1,"31491":-1,"31492":-1,"31493":2687,"31494":-1,"31495":-1,"31496":-1,"31497":0,"31498":-1,"31499":-1,"31500":-1,"31501":-1,"31502":-1,"31503":-1,"31504":-1,"31505":-1,"31506":-1,"31507":-1,"31508":-1,"31509":-1,"31510":-1,"31511":-1,"31512":-1,"31513":-1,"31514":-1,"31515":-1,"31516":-1,"31517":-1,"31518":-1,"31519":0,"31520":-1,"31521":-1,"31522":-1,"31523":-1,"31524":2687,"31525":-1,"31526":-1,"31527":-1,"31528":-1,"31529":-1,"31530":-1,"31531":-1,"31532":-1,"31533":-1,"31534":2686,"31535":-1,"31536":-1,"31537":2686,"31538":2687,"31539":-1,"31540":-1,"31541":2682,"31542":-1,"31543":-1,"31544":2682,"31545":-1,"31546":-1,"31547":-1,"31548":-1,"31549":-1,"31550":-1,"31551":-1,"31552":2682,"31553":-1,"31554":-1,"31555":-1,"31556":-1,"31557":2686,"31558":-1,"31559":-1,"31560":-1,"31561":-1,"31562":-1,"31563":-1,"31564":-1,"31565":0,"31566":-1,"31567":-1,"31568":-1,"31569":-1,"31570":-1,"31571":-1,"31572":-1,"31573":-1,"31574":-1,"31575":2685,"31576":-1,"31577":2686,"31578":-1,"31579":-1,"31580":-1,"31581":-1,"31582":-1,"31583":-1,"31584":-1,"31585":-1,"31586":-1,"31587":2685,"31588":-1,"31589":-1,"31590":-1,"31591":-1,"31592":-1,"31593":-1,"31594":2682,"31595":2683,"31596":-1,"31597":2686,"31598":-1,"31599":-1,"31600":-1,"31601":-1,"31602":2681,"31603":-1,"31604":-1,"31605":-1,"31606":-1,"31607":-1,"31608":2682,"31609":-1,"31610":-1,"31611":-1,"31612":-1,"31613":-1,"31614":-1,"31615":-1,"31616":-1,"31617":-1,"31618":-1,"31619":-1,"31620":2686,"31621":2683,"31622":-1,"31623":-1,"31624":-1,"31625":-1,"31626":-1,"31627":-1,"31628":-1,"31629":-1,"31630":2684,"31631":2682,"31632":-1,"31633":-1,"31634":-1,"31635":0,"31636":-1,"31637":2687,"31638":-1,"31639":2686,"31640":-1,"31641":-1,"31642":-1,"31643":-1,"31644":-1,"31645":-1,"31646":-1,"31647":-1,"31648":-1,"31649":-1,"31650":0,"31651":-1,"31652":-1,"31653":-1,"31654":-1,"31655":2686,"31656":-1,"31657":-1,"31658":2683,"31659":-1,"31660":-1,"31661":-1,"31662":-1,"31663":-1,"31664":-1,"31665":-1,"31666":-1,"31667":0,"31668":-1,"31669":2686,"31670":2684,"31671":-1,"31672":-1,"31673":-1,"31674":2683,"31675":-1,"31676":2683,"31677":-1,"31678":-1,"31679":-1,"31680":2683,"31681":-1,"31682":-1,"31683":-1,"31684":-1,"31685":-1,"31686":2682,"31687":-1,"31688":-1,"31689":-1,"31690":2681,"31691":-1,"31692":-1,"31693":-1,"31694":0,"31695":-1,"31696":-1,"31697":2683,"31698":-1,"31699":2687,"31700":-1,"31701":-1,"31702":-1,"31703":-1,"31704":2683,"31705":-1,"31706":-1,"31707":-1,"31708":-1,"31709":-1,"31710":-1,"31711":-1,"31712":-1,"31713":-1,"31714":-1,"31715":-1,"31716":2682,"31717":-1,"31718":-1,"31719":-1,"31720":-1,"31721":-1,"31722":-1,"31723":-1,"31724":2684,"31725":-1,"31726":-1,"31727":-1,"31728":-1,"31729":-1,"31730":-1,"31731":0,"31732":-1,"31733":-1,"31734":-1,"31735":-1,"31736":-1,"31737":2686,"31738":-1,"31739":-1,"31740":-1,"31741":-1,"31742":-1,"31743":2685,"31744":-1,"31745":-1,"31746":-1,"31747":-1,"31748":-1,"31749":-1,"31750":-1,"31751":-1,"31752":-1,"31753":-1,"31754":-1,"31755":-1,"31756":2685,"31757":-1,"31758":-1,"31759":-1,"31760":-1,"31761":2681,"31762":-1,"31763":2686,"31764":-1,"31765":-1,"31766":-1,"31767":-1,"31768":-1,"31769":-1,"31770":-1,"31771":-1,"31772":-1,"31773":2684,"31774":-1,"31775":-1,"31776":-1,"31777":-1,"31778":-1,"31779":-1,"31780":-1,"31781":-1,"31782":-1,"31783":-1,"31784":-1,"31785":-1,"31786":-1,"31787":-1,"31788":0,"31789":-1,"31790":-1,"31791":2684,"31792":-1,"31793":-1,"31794":-1,"31795":-1,"31796":-1,"31797":-1,"31798":-1,"31799":-1,"31800":-1,"31801":-1,"31802":2682,"31803":-1,"31804":-1,"31805":-1,"31806":-1,"31807":-1,"31808":-1,"31809":2684,"31810":-1,"31811":-1,"31812":2684,"31813":-1,"31814":-1,"31815":-1,"31816":-1,"31817":-1,"31818":-1,"31819":-1,"31820":-1,"31821":-1,"31822":2687,"31823":-1,"31824":-1,"31825":0,"31826":2683,"31827":-1,"31828":-1,"31829":-1,"31830":2686,"31831":-1,"31832":-1,"31833":2684,"31834":-1,"31835":-1,"31836":-1,"31837":-1,"31838":-1,"31839":-1,"31840":-1,"31841":-1,"31842":-1,"31843":-1,"31844":2686,"31845":-1,"31846":-1,"31847":-1,"31848":-1,"31849":-1,"31850":-1,"31851":-1,"31852":-1,"31853":2682,"31854":-1,"31855":-1,"31856":-1,"31857":-1,"31858":-1,"31859":2684,"31860":-1,"31861":-1,"31862":-1,"31863":-1,"31864":-1,"31865":-1,"31866":-1,"31867":-1,"31868":2687,"31869":2684,"31870":2682,"31871":2686,"31872":-1,"31873":-1,"31874":-1,"31875":-1,"31876":-1,"31877":-1,"31878":-1,"31879":-1,"31880":-1,"31881":-1,"31882":2683,"31883":0,"31884":-1,"31885":-1,"31886":-1,"31887":-1,"31888":-1,"31889":-1,"31890":-1,"31891":-1,"31892":-1,"31893":2681,"31894":-1,"31895":-1,"31896":-1,"31897":2686,"31898":-1,"31899":-1,"31900":-1,"31901":2682,"31902":-1,"31903":2684,"31904":-1,"31905":-1,"31906":-1,"31907":-1,"31908":-1,"31909":-1,"31910":-1,"31911":-1,"31912":-1,"31913":-1,"31914":-1,"31915":-1,"31916":0,"31917":2682,"31918":-1,"31919":-1,"31920":-1,"31921":-1,"31922":-1,"31923":-1,"31924":-1,"31925":-1,"31926":-1,"31927":-1,"31928":0,"31929":-1,"31930":-1,"31931":-1,"31932":-1,"31933":-1,"31934":2684,"31935":-1,"31936":-1,"31937":-1,"31938":-1,"31939":-1,"31940":-1,"31941":-1,"31942":0,"31943":-1,"31944":-1,"31945":-1,"31946":-1,"31947":-1,"31948":-1,"31949":-1,"31950":-1,"31951":-1,"31952":-1,"31953":-1,"31954":-1,"31955":2682,"31956":-1,"31957":2683,"31958":-1,"31959":2681,"31960":-1,"31961":-1,"31962":-1,"31963":-1,"31964":-1,"31965":-1,"31966":-1,"31967":2686,"31968":2686,"31969":-1,"31970":-1,"31971":-1,"31972":-1,"31973":-1,"31974":2682,"31975":-1,"31976":-1,"31977":0,"31978":-1,"31979":-1,"31980":-1,"31981":2683,"31982":-1,"31983":-1,"31984":-1,"31985":0,"31986":-1,"31987":-1,"31988":-1,"31989":-1,"31990":-1,"31991":-1,"31992":-1,"31993":-1,"31994":-1,"31995":-1,"31996":-1,"31997":-1,"31998":-1,"31999":-1,"32000":-1,"32001":-1,"32002":-1,"32003":0,"32004":-1,"32005":2685,"32006":-1,"32007":-1,"32008":2684,"32009":-1,"32010":-1,"32011":-1,"32012":-1,"32013":-1,"32014":-1,"32015":2686,"32016":2683,"32017":-1,"32018":-1,"32019":-1,"32020":-1,"32021":-1,"32022":-1,"32023":2681,"32024":2684,"32025":-1,"32026":-1,"32027":-1,"32028":-1,"32029":-1,"32030":-1,"32031":-1,"32032":-1,"32033":-1,"32034":-1,"32035":-1,"32036":-1,"32037":2685,"32038":-1,"32039":-1,"32040":-1,"32041":-1,"32042":-1,"32043":-1,"32044":-1,"32045":-1,"32046":-1,"32047":-1,"32048":-1,"32049":-1,"32050":-1,"32051":-1,"32052":-1,"32053":-1,"32054":-1,"32055":0,"32056":-1,"32057":-1,"32058":-1,"32059":-1,"32060":-1,"32061":-1,"32062":-1,"32063":-1,"32064":-1,"32065":-1,"32066":-1,"32067":-1,"32068":-1,"32069":2685,"32070":-1,"32071":-1,"32072":-1,"32073":-1,"32074":-1,"32075":-1,"32076":-1,"32077":-1,"32078":-1,"32079":-1,"32080":-1,"32081":-1,"32082":-1,"32083":-1,"32084":-1,"32085":-1,"32086":-1,"32087":2683,"32088":-1,"32089":0,"32090":-1,"32091":-1,"32092":-1,"32093":-1,"32094":-1,"32095":-1,"32096":-1,"32097":-1,"32098":-1,"32099":-1,"32100":-1,"32101":0,"32102":-1,"32103":-1,"32104":-1,"32105":-1,"32106":-1,"32107":-1,"32108":-1,"32109":-1,"32110":-1,"32111":-1,"32112":-1,"32113":2682,"32114":-1,"32115":-1,"32116":-1,"32117":-1,"32118":-1,"32119":0,"32120":-1,"32121":-1,"32122":-1,"32123":-1,"32124":-1,"32125":-1,"32126":-1,"32127":-1,"32128":-1,"32129":-1,"32130":-1,"32131":2685,"32132":0,"32133":-1,"32134":-1,"32135":-1,"32136":-1,"32137":-1,"32138":-1,"32139":-1,"32140":-1,"32141":-1,"32142":-1,"32143":-1,"32144":-1,"32145":-1,"32146":-1,"32147":2684,"32148":0,"32149":-1,"32150":-1,"32151":-1,"32152":-1,"32153":-1,"32154":-1,"32155":0,"32156":-1,"32157":-1,"32158":0,"32159":-1,"32160":-1,"32161":-1,"32162":-1,"32163":-1,"32164":-1,"32165":-1,"32166":-1,"32167":-1,"32168":-1,"32169":-1,"32170":-1,"32171":-1,"32172":-1,"32173":-1,"32174":-1,"32175":-1,"32176":-1,"32177":-1,"32178":-1,"32179":2683,"32180":-1,"32181":-1,"32182":-1,"32183":-1,"32184":-1,"32185":-1,"32186":-1,"32187":-1,"32188":-1,"32189":-1,"32190":-1,"32191":-1,"32192":-1,"32193":-1,"32194":-1,"32195":2684,"32196":-1,"32197":2685,"32198":-1,"32199":-1,"32200":-1,"32201":-1,"32202":-1,"32203":-1,"32204":-1,"32205":-1,"32206":-1,"32207":2685,"32208":-1,"32209":-1,"32210":-1,"32211":-1,"32212":-1,"32213":-1,"32214":-1,"32215":-1,"32216":2684,"32217":-1,"32218":-1,"32219":-1,"32220":-1,"32221":-1,"32222":-1,"32223":-1,"32224":-1,"32225":2686,"32226":-1,"32227":-1,"32228":-1,"32229":-1,"32230":-1,"32231":-1,"32232":-1,"32233":-1,"32234":-1,"32235":-1,"32236":-1,"32237":-1,"32238":-1,"32239":-1,"32240":-1,"32241":-1,"32242":-1,"32243":-1,"32244":-1,"32245":-1,"32246":-1,"32247":-1,"32248":-1,"32249":-1,"32250":-1,"32251":-1,"32252":-1,"32253":-1,"32254":-1,"32255":-1,"32256":-1,"32257":-1,"32258":-1,"32259":-1,"32260":-1,"32261":-1,"32262":-1,"32263":-1,"32264":-1,"32265":-1,"32266":-1,"32267":-1,"32268":-1,"32269":-1,"32270":2682,"32271":-1,"32272":-1,"32273":-1,"32274":2681,"32275":-1,"32276":2686,"32277":2685,"32278":-1,"32279":-1,"32280":-1,"32281":2685,"32282":-1,"32283":-1,"32284":-1,"32285":-1,"32286":2685,"32287":-1,"32288":-1,"32289":2681,"32290":-1,"32291":-1,"32292":-1,"32293":0,"32294":-1,"32295":-1,"32296":-1,"32297":-1,"32298":2687,"32299":0,"32300":-1,"32301":2684,"32302":-1,"32303":-1,"32304":-1,"32305":-1,"32306":-1,"32307":-1,"32308":-1,"32309":-1,"32310":-1,"32311":-1,"32312":-1,"32313":-1,"32314":-1,"32315":-1,"32316":-1,"32317":-1,"32318":-1,"32319":-1,"32320":0,"32321":-1,"32322":2684,"32323":-1,"32324":-1,"32325":-1,"32326":0,"32327":-1,"32328":2684,"32329":2682,"32330":-1,"32331":-1,"32332":-1,"32333":-1,"32334":0,"32335":-1,"32336":-1,"32337":-1,"32338":-1,"32339":-1,"32340":-1,"32341":-1,"32342":-1,"32343":2685,"32344":-1,"32345":-1,"32346":-1,"32347":-1,"32348":-1,"32349":-1,"32350":-1,"32351":-1,"32352":-1,"32353":-1,"32354":-1,"32355":-1,"32356":-1,"32357":-1,"32358":-1,"32359":-1,"32360":-1,"32361":-1,"32362":-1,"32363":-1,"32364":-1,"32365":-1,"32366":-1,"32367":-1,"32368":2684,"32369":-1,"32370":-1,"32371":-1,"32372":-1,"32373":-1,"32374":-1,"32375":-1,"32376":0,"32377":-1,"32378":-1,"32379":-1,"32380":-1,"32381":-1,"32382":-1,"32383":-1,"32384":-1,"32385":-1,"32386":2681,"32387":-1,"32388":-1,"32389":-1,"32390":-1,"32391":-1,"32392":-1,"32393":-1,"32394":-1,"32395":-1,"32396":-1,"32397":-1,"32398":-1,"32399":-1,"32400":0,"32401":-1,"32402":2683,"32403":-1,"32404":-1,"32405":-1,"32406":-1,"32407":2683,"32408":0,"32409":-1,"32410":-1,"32411":-1,"32412":-1,"32413":-1,"32414":-1,"32415":-1,"32416":-1,"32417":-1,"32418":0,"32419":-1,"32420":-1,"32421":-1,"32422":-1,"32423":-1,"32424":-1,"32425":-1,"32426":2686,"32427":-1,"32428":-1,"32429":-1,"32430":0,"32431":-1,"32432":-1,"32433":-1,"32434":-1,"32435":-1,"32436":-1,"32437":-1,"32438":-1,"32439":-1,"32440":-1,"32441":-1,"32442":-1,"32443":-1,"32444":-1,"32445":0,"32446":-1,"32447":-1,"32448":-1,"32449":-1,"32450":-1,"32451":-1,"32452":2684,"32453":-1,"32454":-1,"32455":2683,"32456":-1,"32457":2686,"32458":-1,"32459":-1,"32460":-1,"32461":-1,"32462":-1,"32463":2682,"32464":-1,"32465":-1,"32466":-1,"32467":0,"32468":2685,"32469":-1,"32470":-1,"32471":-1,"32472":-1,"32473":-1,"32474":-1,"32475":-1,"32476":2682,"32477":-1,"32478":2686,"32479":-1,"32480":2682,"32481":-1,"32482":-1,"32483":-1,"32484":-1,"32485":-1,"32486":-1,"32487":-1,"32488":-1,"32489":-1,"32490":2683,"32491":-1,"32492":-1,"32493":-1,"32494":-1,"32495":-1,"32496":-1,"32497":-1,"32498":-1,"32499":-1,"32500":-1,"32501":-1,"32502":-1,"32503":-1,"32504":0,"32505":-1,"32506":-1,"32507":-1,"32508":-1,"32509":-1,"32510":-1,"32511":-1,"32512":-1,"32513":-1,"32514":-1,"32515":-1,"32516":-1,"32517":-1,"32518":-1,"32519":-1,"32520":-1,"32521":2682,"32522":-1,"32523":-1,"32524":-1,"32525":-1,"32526":2684,"32527":-1,"32528":-1,"32529":-1,"32530":-1,"32531":-1,"32532":-1,"32533":-1,"32534":-1,"32535":2684,"32536":-1,"32537":-1,"32538":-1,"32539":-1,"32540":-1,"32541":-1,"32542":-1,"32543":0,"32544":-1,"32545":-1,"32546":-1,"32547":-1,"32548":-1,"32549":-1,"32550":-1,"32551":-1,"32552":-1,"32553":-1,"32554":-1,"32555":-1,"32556":-1,"32557":-1,"32558":-1,"32559":-1,"32560":-1,"32561":-1,"32562":-1,"32563":-1,"32564":2681,"32565":-1,"32566":0,"32567":-1,"32568":-1,"32569":-1,"32570":-1,"32571":-1,"32572":-1,"32573":-1,"32574":-1,"32575":-1,"32576":-1,"32577":-1,"32578":-1,"32579":-1,"32580":-1,"32581":2684,"32582":-1,"32583":-1,"32584":-1,"32585":-1,"32586":-1,"32587":-1,"32588":-1,"32589":-1,"32590":-1,"32591":-1,"32592":-1,"32593":-1,"32594":-1,"32595":-1,"32596":-1,"32597":2684,"32598":-1,"32599":-1,"32600":-1,"32601":2686,"32602":-1,"32603":-1,"32604":-1,"32605":-1,"32606":-1,"32607":-1,"32608":0,"32609":-1,"32610":-1,"32611":-1,"32612":-1,"32613":-1,"32614":-1,"32615":2682,"32616":-1,"32617":2682,"32618":2682,"32619":-1,"32620":2685,"32621":-1,"32622":-1,"32623":-1,"32624":-1,"32625":-1,"32626":-1,"32627":0,"32628":-1,"32629":-1,"32630":-1,"32631":-1,"32632":-1,"32633":0,"32634":-1,"32635":-1,"32636":-1,"32637":2687,"32638":-1,"32639":-1,"32640":-1,"32641":-1,"32642":2686,"32643":-1,"32644":-1,"32645":-1,"32646":-1,"32647":-1,"32648":0,"32649":2687,"32650":-1,"32651":-1,"32652":-1,"32653":-1,"32654":-1,"32655":2686,"32656":-1,"32657":-1,"32658":-1,"32659":2687,"32660":-1,"32661":2684,"32662":-1,"32663":-1,"32664":0,"32665":2683,"32666":-1,"32667":-1,"32668":-1,"32669":-1,"32670":-1,"32671":-1,"32672":-1,"32673":-1,"32674":-1,"32675":-1,"32676":-1,"32677":-1,"32678":-1,"32679":-1,"32680":-1,"32681":-1,"32682":0,"32683":-1,"32684":2685,"32685":2682,"32686":-1,"32687":-1,"32688":2684,"32689":-1,"32690":-1,"32691":-1,"32692":-1,"32693":-1,"32694":-1,"32695":-1,"32696":-1,"32697":-1,"32698":-1,"32699":-1,"32700":-1,"32701":-1,"32702":2685,"32703":-1,"32704":-1,"32705":-1,"32706":-1,"32707":-1,"32708":-1,"32709":-1,"32710":-1,"32711":-1,"32712":-1,"32713":-1,"32714":-1,"32715":-1,"32716":-1,"32717":-1,"32718":-1,"32719":-1,"32720":2683,"32721":-1,"32722":-1,"32723":-1,"32724":-1,"32725":-1,"32726":-1,"32727":0,"32728":-1,"32729":-1,"32730":-1,"32731":2686,"32732":-1,"32733":-1,"32734":2687,"32735":-1,"32736":-1,"32737":-1,"32738":-1,"32739":-1,"32740":-1,"32741":-1,"32742":-1,"32743":-1,"32744":-1,"32745":-1,"32746":-1,"32747":-1,"32748":-1,"32749":2687,"32750":-1,"32751":-1,"32752":-1,"32753":-1,"32754":-1,"32755":-1,"32756":0,"32757":0,"32758":-1,"32759":-1,"32760":-1,"32761":-1,"32762":2685,"32763":-1,"32764":-1,"32765":2685,"32766":-1,"32767":2681,"32768":2682,"32769":-1,"32770":-1,"32771":-1,"32772":-1,"32773":2682,"32774":-1,"32775":-1,"32776":-1,"32777":-1,"32778":-1,"32779":-1,"32780":2685,"32781":-1,"32782":-1,"32783":0,"32784":2686,"32785":-1,"32786":2685,"32787":-1,"32788":-1,"32789":2682,"32790":-1,"32791":-1,"32792":-1,"32793":-1,"32794":-1,"32795":-1,"32796":-1,"32797":-1,"32798":-1,"32799":-1,"32800":-1,"32801":-1,"32802":-1,"32803":-1,"32804":2685,"32805":-1,"32806":2686,"32807":2685,"32808":-1,"32809":-1,"32810":-1,"32811":-1,"32812":-1,"32813":-1,"32814":2684,"32815":-1,"32816":-1,"32817":-1,"32818":-1,"32819":2683,"32820":-1,"32821":-1,"32822":-1,"32823":-1,"32824":-1,"32825":-1,"32826":-1,"32827":-1,"32828":-1,"32829":-1,"32830":-1,"32831":2687,"32832":-1,"32833":-1,"32834":-1,"32835":2685,"32836":-1,"32837":-1,"32838":-1,"32839":-1,"32840":-1,"32841":0,"32842":-1,"32843":-1,"32844":-1,"32845":-1,"32846":2682,"32847":-1,"32848":-1,"32849":-1,"32850":-1,"32851":-1,"32852":-1,"32853":-1,"32854":0,"32855":-1,"32856":-1,"32857":-1,"32858":-1,"32859":-1,"32860":-1,"32861":-1,"32862":2685,"32863":0,"32864":-1,"32865":-1,"32866":-1,"32867":-1,"32868":-1,"32869":-1,"32870":2683,"32871":-1,"32872":-1,"32873":-1,"32874":-1,"32875":-1,"32876":-1,"32877":-1,"32878":-1,"32879":2682,"32880":-1,"32881":-1,"32882":-1,"32883":-1,"32884":-1,"32885":-1,"32886":-1,"32887":-1,"32888":-1,"32889":-1,"32890":2682,"32891":-1,"32892":-1,"32893":-1,"32894":-1,"32895":-1,"32896":0,"32897":-1,"32898":-1,"32899":-1,"32900":-1,"32901":-1,"32902":-1,"32903":-1,"32904":-1,"32905":-1,"32906":2686,"32907":-1,"32908":2686,"32909":2687,"32910":-1,"32911":-1,"32912":-1,"32913":2685,"32914":-1,"32915":-1,"32916":-1,"32917":-1,"32918":-1,"32919":-1,"32920":-1,"32921":-1,"32922":-1,"32923":-1,"32924":-1,"32925":-1,"32926":2686,"32927":2682,"32928":-1,"32929":0,"32930":-1,"32931":-1,"32932":-1,"32933":-1,"32934":-1,"32935":-1,"32936":-1,"32937":-1,"32938":-1,"32939":-1,"32940":-1,"32941":0,"32942":2683,"32943":2685,"32944":-1,"32945":-1,"32946":-1,"32947":-1,"32948":0,"32949":-1,"32950":-1,"32951":-1,"32952":-1,"32953":-1,"32954":-1,"32955":-1,"32956":-1,"32957":-1,"32958":-1,"32959":-1,"32960":-1,"32961":-1,"32962":2686,"32963":-1,"32964":-1,"32965":-1,"32966":-1,"32967":-1,"32968":-1,"32969":-1,"32970":-1,"32971":-1,"32972":-1,"32973":-1,"32974":-1,"32975":-1,"32976":2686,"32977":-1,"32978":-1,"32979":-1,"32980":-1,"32981":-1,"32982":-1,"32983":2681,"32984":-1,"32985":-1,"32986":-1,"32987":-1,"32988":-1,"32989":2684,"32990":-1,"32991":-1,"32992":-1,"32993":-1,"32994":-1,"32995":-1,"32996":2684,"32997":-1,"32998":-1,"32999":2686,"33000":-1,"33001":-1,"33002":-1,"33003":-1,"33004":-1,"33005":-1,"33006":-1,"33007":-1,"33008":-1,"33009":-1,"33010":-1,"33011":-1,"33012":-1,"33013":-1,"33014":-1,"33015":-1,"33016":2685,"33017":-1,"33018":-1,"33019":-1,"33020":-1,"33021":-1,"33022":-1,"33023":-1,"33024":2682,"33025":-1,"33026":-1,"33027":0,"33028":-1,"33029":-1,"33030":2685,"33031":-1,"33032":-1,"33033":-1,"33034":2686,"33035":-1,"33036":2685,"33037":-1,"33038":-1,"33039":-1,"33040":-1,"33041":-1,"33042":-1,"33043":-1,"33044":-1,"33045":-1,"33046":-1,"33047":2685,"33048":-1,"33049":-1,"33050":-1,"33051":-1,"33052":-1,"33053":-1,"33054":-1,"33055":-1,"33056":-1,"33057":-1,"33058":-1,"33059":2685,"33060":-1,"33061":-1,"33062":-1,"33063":-1,"33064":-1,"33065":-1,"33066":-1,"33067":2682,"33068":0,"33069":-1,"33070":0,"33071":-1,"33072":-1,"33073":-1,"33074":-1,"33075":0,"33076":-1,"33077":-1,"33078":-1,"33079":-1,"33080":-1,"33081":0,"33082":-1,"33083":-1,"33084":2686,"33085":0,"33086":-1,"33087":-1,"33088":-1,"33089":-1,"33090":-1,"33091":-1,"33092":-1,"33093":-1,"33094":-1,"33095":-1,"33096":-1,"33097":2686,"33098":-1,"33099":-1,"33100":-1,"33101":-1,"33102":-1,"33103":2683,"33104":-1,"33105":-1,"33106":-1,"33107":-1,"33108":2684,"33109":-1,"33110":-1,"33111":-1,"33112":-1,"33113":-1,"33114":-1,"33115":-1,"33116":-1,"33117":-1,"33118":-1,"33119":0,"33120":-1,"33121":-1,"33122":2684,"33123":-1,"33124":-1,"33125":-1,"33126":-1,"33127":-1,"33128":-1,"33129":-1,"33130":-1,"33131":2685,"33132":2682,"33133":-1,"33134":-1,"33135":-1,"33136":-1,"33137":-1,"33138":-1,"33139":-1,"33140":-1,"33141":-1,"33142":-1,"33143":-1,"33144":-1,"33145":-1,"33146":-1,"33147":-1,"33148":-1,"33149":-1,"33150":-1,"33151":2687,"33152":-1,"33153":-1,"33154":2684,"33155":-1,"33156":-1,"33157":-1,"33158":-1,"33159":-1,"33160":-1,"33161":-1,"33162":-1,"33163":-1,"33164":-1,"33165":-1,"33166":-1,"33167":-1,"33168":-1,"33169":-1,"33170":-1,"33171":-1,"33172":-1,"33173":2683,"33174":-1,"33175":-1,"33176":2687,"33177":-1,"33178":-1,"33179":-1,"33180":-1,"33181":2686,"33182":-1,"33183":-1,"33184":-1,"33185":-1,"33186":-1,"33187":-1,"33188":-1,"33189":-1,"33190":2683,"33191":-1,"33192":-1,"33193":-1,"33194":-1,"33195":2683,"33196":-1,"33197":2686,"33198":-1,"33199":-1,"33200":-1,"33201":-1,"33202":-1,"33203":-1,"33204":-1,"33205":-1,"33206":-1,"33207":-1,"33208":-1,"33209":-1,"33210":-1,"33211":-1,"33212":-1,"33213":-1,"33214":-1,"33215":-1,"33216":-1,"33217":2681,"33218":-1,"33219":-1,"33220":2684,"33221":-1,"33222":-1,"33223":-1,"33224":2686,"33225":-1,"33226":2686,"33227":-1,"33228":-1,"33229":-1,"33230":-1,"33231":-1,"33232":-1,"33233":-1,"33234":-1,"33235":2686,"33236":-1,"33237":-1,"33238":0,"33239":-1,"33240":-1,"33241":-1,"33242":-1,"33243":2684,"33244":-1,"33245":-1,"33246":-1,"33247":-1,"33248":2685,"33249":-1,"33250":-1,"33251":2685,"33252":-1,"33253":-1,"33254":0,"33255":-1,"33256":-1,"33257":-1,"33258":2683,"33259":-1,"33260":-1,"33261":-1,"33262":-1,"33263":-1,"33264":2686,"33265":0,"33266":-1,"33267":-1,"33268":2682,"33269":-1,"33270":-1,"33271":-1,"33272":-1,"33273":-1,"33274":-1,"33275":-1,"33276":-1,"33277":-1,"33278":-1,"33279":-1,"33280":-1,"33281":-1,"33282":-1,"33283":-1,"33284":-1,"33285":-1,"33286":-1,"33287":-1,"33288":-1,"33289":-1,"33290":2682,"33291":-1,"33292":-1,"33293":-1,"33294":-1,"33295":-1,"33296":0,"33297":-1,"33298":-1,"33299":-1,"33300":-1,"33301":-1,"33302":2684,"33303":-1,"33304":-1,"33305":2683,"33306":-1,"33307":0,"33308":-1,"33309":-1,"33310":-1,"33311":-1,"33312":0,"33313":2681,"33314":-1,"33315":-1,"33316":0,"33317":-1,"33318":-1,"33319":-1,"33320":2681,"33321":2683,"33322":-1,"33323":-1,"33324":-1,"33325":-1,"33326":-1,"33327":-1,"33328":2687,"33329":-1,"33330":-1,"33331":-1,"33332":2682,"33333":-1,"33334":-1,"33335":0,"33336":2682,"33337":-1,"33338":2683,"33339":-1,"33340":-1,"33341":-1,"33342":-1,"33343":-1,"33344":-1,"33345":-1,"33346":-1,"33347":-1,"33348":-1,"33349":2685,"33350":-1,"33351":-1,"33352":-1,"33353":2686,"33354":-1,"33355":-1,"33356":-1,"33357":-1,"33358":-1,"33359":-1,"33360":-1,"33361":-1,"33362":-1,"33363":-1,"33364":-1,"33365":-1,"33366":-1,"33367":-1,"33368":-1,"33369":-1,"33370":-1,"33371":-1,"33372":-1,"33373":2686,"33374":-1,"33375":-1,"33376":-1,"33377":-1,"33378":-1,"33379":-1,"33380":-1,"33381":-1,"33382":-1,"33383":2683,"33384":-1,"33385":-1,"33386":-1,"33387":-1,"33388":-1,"33389":-1,"33390":-1,"33391":-1,"33392":0,"33393":-1,"33394":-1,"33395":-1,"33396":-1,"33397":2683,"33398":-1,"33399":-1,"33400":-1,"33401":-1,"33402":-1,"33403":-1,"33404":-1,"33405":-1,"33406":-1,"33407":-1,"33408":0,"33409":-1,"33410":-1,"33411":-1,"33412":-1,"33413":0,"33414":-1,"33415":-1,"33416":-1,"33417":0,"33418":-1,"33419":-1,"33420":-1,"33421":2687,"33422":0,"33423":-1,"33424":-1,"33425":2685,"33426":-1,"33427":-1,"33428":-1,"33429":-1,"33430":-1,"33431":-1,"33432":-1,"33433":-1,"33434":-1,"33435":-1,"33436":-1,"33437":-1,"33438":-1,"33439":-1,"33440":-1,"33441":-1,"33442":-1,"33443":2684,"33444":-1,"33445":-1,"33446":-1,"33447":-1,"33448":-1,"33449":-1,"33450":-1,"33451":-1,"33452":-1,"33453":-1,"33454":-1,"33455":2684,"33456":-1,"33457":-1,"33458":-1,"33459":-1,"33460":-1,"33461":2682,"33462":-1,"33463":-1,"33464":-1,"33465":-1,"33466":2682,"33467":-1,"33468":-1,"33469":-1,"33470":2686,"33471":-1,"33472":-1,"33473":-1,"33474":-1,"33475":-1,"33476":-1,"33477":-1,"33478":0,"33479":-1,"33480":-1,"33481":-1,"33482":-1,"33483":-1,"33484":-1,"33485":-1,"33486":-1,"33487":-1,"33488":-1,"33489":-1,"33490":2681,"33491":-1,"33492":-1,"33493":2683,"33494":-1,"33495":-1,"33496":-1,"33497":0,"33498":2686,"33499":-1,"33500":-1,"33501":-1,"33502":2685,"33503":-1,"33504":0,"33505":-1,"33506":2684,"33507":-1,"33508":-1,"33509":-1,"33510":2687,"33511":-1,"33512":-1,"33513":-1,"33514":-1,"33515":-1,"33516":-1,"33517":-1,"33518":-1,"33519":-1,"33520":-1,"33521":-1,"33522":-1,"33523":-1,"33524":-1,"33525":-1,"33526":-1,"33527":-1,"33528":-1,"33529":-1,"33530":-1,"33531":-1,"33532":-1,"33533":-1,"33534":2682,"33535":-1,"33536":-1,"33537":-1,"33538":2685,"33539":-1,"33540":-1,"33541":-1,"33542":-1,"33543":-1,"33544":-1,"33545":-1,"33546":-1,"33547":-1,"33548":-1,"33549":-1,"33550":-1,"33551":-1,"33552":-1,"33553":-1,"33554":-1,"33555":-1,"33556":0,"33557":0,"33558":-1,"33559":-1,"33560":-1,"33561":-1,"33562":-1,"33563":-1,"33564":-1,"33565":0,"33566":-1,"33567":2687,"33568":-1,"33569":-1,"33570":-1,"33571":2682,"33572":-1,"33573":-1,"33574":-1,"33575":-1,"33576":-1,"33577":-1,"33578":-1,"33579":2686,"33580":-1,"33581":-1,"33582":-1,"33583":-1,"33584":-1,"33585":-1,"33586":-1,"33587":-1,"33588":-1,"33589":-1,"33590":-1,"33591":-1,"33592":-1,"33593":-1,"33594":-1,"33595":-1,"33596":-1,"33597":-1,"33598":-1,"33599":-1,"33600":-1,"33601":2686,"33602":-1,"33603":-1,"33604":-1,"33605":-1,"33606":-1,"33607":-1,"33608":-1,"33609":-1,"33610":-1,"33611":-1,"33612":2686,"33613":0,"33614":2681,"33615":2683,"33616":-1,"33617":-1,"33618":-1,"33619":-1,"33620":-1,"33621":-1,"33622":-1,"33623":-1,"33624":2685,"33625":2685,"33626":-1,"33627":-1,"33628":-1,"33629":-1,"33630":-1,"33631":-1,"33632":-1,"33633":-1,"33634":-1,"33635":-1,"33636":-1,"33637":-1,"33638":-1,"33639":-1,"33640":-1,"33641":-1,"33642":-1,"33643":-1,"33644":-1,"33645":-1,"33646":-1,"33647":-1,"33648":-1,"33649":-1,"33650":-1,"33651":-1,"33652":-1,"33653":2681,"33654":-1,"33655":-1,"33656":-1,"33657":-1,"33658":-1,"33659":-1,"33660":-1,"33661":-1,"33662":2683,"33663":-1,"33664":0,"33665":-1,"33666":-1,"33667":-1,"33668":0,"33669":-1,"33670":-1,"33671":0,"33672":-1,"33673":-1,"33674":-1,"33675":-1,"33676":2685,"33677":-1,"33678":-1,"33679":-1,"33680":0,"33681":-1,"33682":-1,"33683":-1,"33684":-1,"33685":2686,"33686":-1,"33687":2684,"33688":-1,"33689":-1,"33690":-1,"33691":-1,"33692":-1,"33693":2682,"33694":-1,"33695":-1,"33696":-1,"33697":-1,"33698":0,"33699":-1,"33700":-1,"33701":-1,"33702":-1,"33703":-1,"33704":-1,"33705":-1,"33706":-1,"33707":0,"33708":-1,"33709":-1,"33710":-1,"33711":-1,"33712":-1,"33713":-1,"33714":-1,"33715":-1,"33716":-1,"33717":2684,"33718":-1,"33719":-1,"33720":-1,"33721":-1,"33722":-1,"33723":-1,"33724":-1,"33725":-1,"33726":-1,"33727":-1,"33728":-1,"33729":2687,"33730":2684,"33731":-1,"33732":-1,"33733":-1,"33734":-1,"33735":-1,"33736":-1,"33737":-1,"33738":-1,"33739":-1,"33740":-1,"33741":-1,"33742":-1,"33743":-1,"33744":0,"33745":-1,"33746":-1,"33747":2686,"33748":-1,"33749":-1,"33750":-1,"33751":0,"33752":-1,"33753":-1,"33754":-1,"33755":-1,"33756":-1,"33757":-1,"33758":2684,"33759":-1,"33760":-1,"33761":-1,"33762":-1,"33763":-1,"33764":-1,"33765":-1,"33766":2684,"33767":-1,"33768":-1,"33769":-1,"33770":-1,"33771":-1,"33772":-1,"33773":-1,"33774":-1,"33775":-1,"33776":-1,"33777":-1,"33778":2682,"33779":-1,"33780":-1,"33781":-1,"33782":0,"33783":-1,"33784":-1,"33785":-1,"33786":-1,"33787":2682,"33788":-1,"33789":-1,"33790":-1,"33791":-1,"33792":-1,"33793":-1,"33794":-1,"33795":2687,"33796":-1,"33797":-1,"33798":-1,"33799":-1,"33800":-1,"33801":-1,"33802":2682,"33803":-1,"33804":0,"33805":-1,"33806":-1,"33807":-1,"33808":-1,"33809":-1,"33810":2687,"33811":-1,"33812":-1,"33813":-1,"33814":-1,"33815":-1,"33816":-1,"33817":-1,"33818":-1,"33819":2683,"33820":-1,"33821":-1,"33822":-1,"33823":-1,"33824":-1,"33825":-1,"33826":-1,"33827":-1,"33828":-1,"33829":-1,"33830":-1,"33831":-1,"33832":-1,"33833":-1,"33834":-1,"33835":-1,"33836":-1,"33837":-1,"33838":-1,"33839":-1,"33840":-1,"33841":-1,"33842":-1,"33843":-1,"33844":-1,"33845":-1,"33846":2686,"33847":2686,"33848":-1,"33849":-1,"33850":0,"33851":-1,"33852":2686,"33853":-1,"33854":-1,"33855":-1,"33856":-1,"33857":-1,"33858":-1,"33859":-1,"33860":-1,"33861":2683,"33862":2683,"33863":2681,"33864":-1,"33865":-1,"33866":-1,"33867":-1,"33868":0,"33869":-1,"33870":2687,"33871":-1,"33872":-1,"33873":-1,"33874":-1,"33875":-1,"33876":-1,"33877":-1,"33878":-1,"33879":-1,"33880":-1,"33881":-1,"33882":-1,"33883":-1,"33884":-1,"33885":-1,"33886":-1,"33887":2686,"33888":2687,"33889":-1,"33890":2685,"33891":-1,"33892":-1,"33893":2681,"33894":-1,"33895":-1,"33896":-1,"33897":-1,"33898":-1,"33899":2686,"33900":-1,"33901":-1,"33902":-1,"33903":-1,"33904":-1,"33905":2682,"33906":-1,"33907":-1,"33908":2683,"33909":-1,"33910":-1,"33911":-1,"33912":-1,"33913":-1,"33914":-1,"33915":-1,"33916":-1,"33917":-1,"33918":-1,"33919":-1,"33920":-1,"33921":-1,"33922":-1,"33923":-1,"33924":-1,"33925":-1,"33926":-1,"33927":-1,"33928":-1,"33929":-1,"33930":-1,"33931":-1,"33932":2687,"33933":-1,"33934":-1,"33935":-1,"33936":-1,"33937":2684,"33938":0,"33939":-1,"33940":-1,"33941":-1,"33942":2686,"33943":-1,"33944":-1,"33945":-1,"33946":-1,"33947":-1,"33948":-1,"33949":-1,"33950":-1,"33951":2686,"33952":-1,"33953":-1,"33954":-1,"33955":-1,"33956":-1,"33957":-1,"33958":-1,"33959":-1,"33960":-1,"33961":-1,"33962":-1,"33963":2686,"33964":-1,"33965":-1,"33966":2686,"33967":-1,"33968":-1,"33969":-1,"33970":-1,"33971":-1,"33972":-1,"33973":-1,"33974":-1,"33975":-1,"33976":-1,"33977":-1,"33978":-1,"33979":-1,"33980":2682,"33981":-1,"33982":-1,"33983":0,"33984":2687,"33985":-1,"33986":-1,"33987":-1,"33988":-1,"33989":-1,"33990":-1,"33991":-1,"33992":2682,"33993":-1,"33994":-1,"33995":-1,"33996":-1,"33997":-1,"33998":-1,"33999":-1,"34000":-1,"34001":-1,"34002":-1,"34003":-1,"34004":-1,"34005":-1,"34006":-1,"34007":-1,"34008":-1,"34009":-1,"34010":-1,"34011":-1,"34012":-1,"34013":2686,"34014":-1,"34015":-1,"34016":-1,"34017":-1,"34018":-1,"34019":-1,"34020":-1,"34021":-1,"34022":-1,"34023":-1,"34024":-1,"34025":-1,"34026":-1,"34027":-1,"34028":2682,"34029":-1,"34030":-1,"34031":-1,"34032":-1,"34033":-1,"34034":-1,"34035":-1,"34036":-1,"34037":-1,"34038":-1,"34039":0,"34040":-1,"34041":-1,"34042":-1,"34043":-1,"34044":2683,"34045":-1,"34046":-1,"34047":-1,"34048":2683,"34049":-1,"34050":-1,"34051":-1,"34052":-1,"34053":-1,"34054":-1,"34055":-1,"34056":-1,"34057":-1,"34058":-1,"34059":-1,"34060":-1,"34061":-1,"34062":-1,"34063":2684,"34064":-1,"34065":-1,"34066":-1,"34067":-1,"34068":-1,"34069":-1,"34070":-1,"34071":-1,"34072":-1,"34073":-1,"34074":-1,"34075":2687,"34076":2686,"34077":-1,"34078":-1,"34079":-1,"34080":-1,"34081":-1,"34082":-1,"34083":-1,"34084":-1,"34085":-1,"34086":-1,"34087":-1,"34088":2685,"34089":-1,"34090":-1,"34091":0,"34092":-1,"34093":-1,"34094":2684,"34095":-1,"34096":-1,"34097":-1,"34098":-1,"34099":-1,"34100":-1,"34101":-1,"34102":-1,"34103":-1,"34104":-1,"34105":2686,"34106":2681,"34107":-1,"34108":-1,"34109":-1,"34110":-1,"34111":-1,"34112":-1,"34113":-1,"34114":-1,"34115":-1,"34116":-1,"34117":0,"34118":-1,"34119":-1,"34120":-1,"34121":-1,"34122":-1,"34123":-1,"34124":-1,"34125":-1,"34126":-1,"34127":-1,"34128":-1,"34129":-1,"34130":2682,"34131":-1,"34132":-1,"34133":-1,"34134":-1,"34135":2684,"34136":-1,"34137":-1,"34138":-1,"34139":-1,"34140":-1,"34141":-1,"34142":-1,"34143":-1,"34144":2683,"34145":-1,"34146":-1,"34147":-1,"34148":-1,"34149":-1,"34150":-1,"34151":-1,"34152":-1,"34153":-1,"34154":-1,"34155":-1,"34156":-1,"34157":-1,"34158":-1,"34159":-1,"34160":-1,"34161":-1,"34162":-1,"34163":-1,"34164":-1,"34165":-1,"34166":-1,"34167":-1,"34168":-1,"34169":-1,"34170":-1,"34171":-1,"34172":-1,"34173":-1,"34174":-1,"34175":-1,"34176":-1,"34177":2682,"34178":-1,"34179":-1,"34180":-1,"34181":-1,"34182":-1,"34183":-1,"34184":-1,"34185":-1,"34186":2683,"34187":-1,"34188":2685,"34189":-1,"34190":-1,"34191":-1,"34192":-1,"34193":-1,"34194":-1,"34195":-1,"34196":-1,"34197":0,"34198":-1,"34199":2681,"34200":-1,"34201":-1,"34202":2683,"34203":-1,"34204":-1,"34205":-1,"34206":-1,"34207":-1,"34208":2682,"34209":-1,"34210":-1,"34211":-1,"34212":-1,"34213":-1,"34214":-1,"34215":-1,"34216":2685,"34217":-1,"34218":2683,"34219":-1,"34220":-1,"34221":-1,"34222":-1,"34223":-1,"34224":-1,"34225":-1,"34226":-1,"34227":-1,"34228":-1,"34229":2687,"34230":-1,"34231":-1,"34232":-1,"34233":-1,"34234":-1,"34235":-1,"34236":-1,"34237":-1,"34238":-1,"34239":2682,"34240":-1,"34241":-1,"34242":-1,"34243":-1,"34244":-1,"34245":-1,"34246":-1,"34247":-1,"34248":-1,"34249":-1,"34250":-1,"34251":2681,"34252":-1,"34253":-1,"34254":-1,"34255":-1,"34256":0,"34257":-1,"34258":-1,"34259":-1,"34260":-1,"34261":-1,"34262":-1,"34263":0,"34264":2685,"34265":-1,"34266":-1,"34267":-1,"34268":2686,"34269":2682,"34270":2682,"34271":-1,"34272":-1,"34273":2685,"34274":-1,"34275":-1,"34276":-1,"34277":-1,"34278":-1,"34279":-1,"34280":-1,"34281":2683,"34282":-1,"34283":-1,"34284":2684,"34285":-1,"34286":-1,"34287":-1,"34288":-1,"34289":0,"34290":-1,"34291":-1,"34292":-1,"34293":-1,"34294":-1,"34295":2686,"34296":-1,"34297":0,"34298":-1,"34299":-1,"34300":-1,"34301":-1,"34302":-1,"34303":-1,"34304":-1,"34305":-1,"34306":-1,"34307":0,"34308":-1,"34309":-1,"34310":-1,"34311":-1,"34312":2686,"34313":-1,"34314":-1,"34315":-1,"34316":-1,"34317":-1,"34318":-1,"34319":-1,"34320":-1,"34321":-1,"34322":-1,"34323":-1,"34324":-1,"34325":-1,"34326":-1,"34327":-1,"34328":-1,"34329":-1,"34330":-1,"34331":-1,"34332":-1,"34333":0,"34334":-1,"34335":-1,"34336":-1,"34337":-1,"34338":-1,"34339":-1,"34340":-1,"34341":-1,"34342":2683,"34343":-1,"34344":-1,"34345":-1,"34346":-1,"34347":-1,"34348":-1,"34349":-1,"34350":-1,"34351":-1,"34352":-1,"34353":0,"34354":-1,"34355":0,"34356":-1,"34357":-1,"34358":-1,"34359":-1,"34360":-1,"34361":-1,"34362":2686,"34363":-1,"34364":-1,"34365":2687,"34366":2685,"34367":-1,"34368":-1,"34369":0,"34370":-1,"34371":-1,"34372":-1,"34373":-1,"34374":-1,"34375":-1,"34376":-1,"34377":-1,"34378":-1,"34379":-1,"34380":2682,"34381":2685,"34382":0,"34383":-1,"34384":-1,"34385":-1,"34386":-1,"34387":-1,"34388":0,"34389":-1,"34390":2685,"34391":-1,"34392":-1,"34393":2687,"34394":-1,"34395":-1,"34396":-1,"34397":2685,"34398":-1,"34399":-1,"34400":-1,"34401":0,"34402":-1,"34403":-1,"34404":-1,"34405":-1,"34406":-1,"34407":-1,"34408":-1,"34409":-1,"34410":-1,"34411":-1,"34412":-1,"34413":-1,"34414":-1,"34415":-1,"34416":2682,"34417":-1,"34418":-1,"34419":-1,"34420":-1,"34421":2685,"34422":-1,"34423":-1,"34424":-1,"34425":-1,"34426":-1,"34427":-1,"34428":-1,"34429":-1,"34430":-1,"34431":-1,"34432":2685,"34433":-1,"34434":-1,"34435":-1,"34436":-1,"34437":-1,"34438":2685,"34439":-1,"34440":2687,"34441":-1,"34442":-1,"34443":-1,"34444":-1,"34445":-1,"34446":-1,"34447":-1,"34448":-1,"34449":-1,"34450":-1,"34451":-1,"34452":-1,"34453":-1,"34454":-1,"34455":2682,"34456":-1,"34457":-1,"34458":-1,"34459":0,"34460":-1,"34461":2682,"34462":-1,"34463":2681,"34464":-1,"34465":-1,"34466":-1,"34467":-1,"34468":-1,"34469":-1,"34470":-1,"34471":-1,"34472":-1,"34473":0,"34474":-1,"34475":-1,"34476":2681,"34477":-1,"34478":-1,"34479":-1,"34480":-1,"34481":-1,"34482":0,"34483":-1,"34484":-1,"34485":-1,"34486":2682,"34487":2684,"34488":-1,"34489":-1,"34490":-1,"34491":-1,"34492":-1,"34493":-1,"34494":-1,"34495":-1,"34496":-1,"34497":-1,"34498":2684,"34499":2684,"34500":2684,"34501":-1,"34502":-1,"34503":-1,"34504":-1,"34505":-1,"34506":-1,"34507":-1,"34508":-1,"34509":-1,"34510":-1,"34511":-1,"34512":2682,"34513":-1,"34514":-1,"34515":-1,"34516":-1,"34517":-1,"34518":-1,"34519":-1,"34520":-1,"34521":-1,"34522":-1,"34523":-1,"34524":-1,"34525":-1,"34526":-1,"34527":-1,"34528":-1,"34529":-1,"34530":-1,"34531":2682,"34532":-1,"34533":-1,"34534":-1,"34535":-1,"34536":-1,"34537":-1,"34538":2686,"34539":2685,"34540":-1,"34541":-1,"34542":-1,"34543":-1,"34544":-1,"34545":-1,"34546":-1,"34547":-1,"34548":-1,"34549":-1,"34550":-1,"34551":-1,"34552":-1,"34553":-1,"34554":-1,"34555":-1,"34556":-1,"34557":-1,"34558":-1,"34559":-1,"34560":-1,"34561":0,"34562":-1,"34563":-1,"34564":-1,"34565":-1,"34566":-1,"34567":-1,"34568":-1,"34569":-1,"34570":-1,"34571":-1,"34572":-1,"34573":-1,"34574":2686,"34575":-1,"34576":2681,"34577":-1,"34578":-1,"34579":-1,"34580":0,"34581":-1,"34582":-1,"34583":-1,"34584":-1,"34585":-1,"34586":-1,"34587":2682,"34588":-1,"34589":2685,"34590":-1,"34591":2684,"34592":-1,"34593":-1,"34594":-1,"34595":-1,"34596":-1,"34597":-1,"34598":-1,"34599":-1,"34600":-1,"34601":-1,"34602":-1,"34603":-1,"34604":-1,"34605":-1,"34606":-1,"34607":-1,"34608":-1,"34609":-1,"34610":-1,"34611":-1,"34612":2686,"34613":-1,"34614":-1,"34615":-1,"34616":-1,"34617":0,"34618":-1,"34619":-1,"34620":2682,"34621":-1,"34622":-1,"34623":-1,"34624":-1,"34625":-1,"34626":-1,"34627":-1,"34628":-1,"34629":-1,"34630":0,"34631":-1,"34632":-1,"34633":-1,"34634":-1,"34635":2685,"34636":-1,"34637":-1,"34638":-1,"34639":-1,"34640":-1,"34641":-1,"34642":-1,"34643":-1,"34644":-1,"34645":-1,"34646":-1,"34647":-1,"34648":-1,"34649":-1,"34650":-1,"34651":-1,"34652":-1,"34653":-1,"34654":-1,"34655":-1,"34656":-1,"34657":-1,"34658":-1,"34659":2681,"34660":-1,"34661":-1,"34662":-1,"34663":-1,"34664":-1,"34665":-1,"34666":-1,"34667":-1,"34668":-1,"34669":-1,"34670":-1,"34671":-1,"34672":2682,"34673":-1,"34674":-1,"34675":2681,"34676":-1,"34677":2686,"34678":-1,"34679":2685,"34680":-1,"34681":-1,"34682":-1,"34683":2683,"34684":-1,"34685":-1,"34686":-1,"34687":-1,"34688":2685,"34689":-1,"34690":-1,"34691":-1,"34692":-1,"34693":-1,"34694":-1,"34695":-1,"34696":-1,"34697":-1,"34698":-1,"34699":-1,"34700":2687,"34701":-1,"34702":2683,"34703":-1,"34704":-1,"34705":2683,"34706":-1,"34707":-1,"34708":-1,"34709":-1,"34710":-1,"34711":-1,"34712":-1,"34713":-1,"34714":-1,"34715":-1,"34716":-1,"34717":-1,"34718":-1,"34719":-1,"34720":-1,"34721":-1,"34722":-1,"34723":-1,"34724":-1,"34725":-1,"34726":-1,"34727":-1,"34728":-1,"34729":-1,"34730":-1,"34731":-1,"34732":-1,"34733":-1,"34734":-1,"34735":-1,"34736":-1,"34737":-1,"34738":-1,"34739":2683,"34740":-1,"34741":-1,"34742":-1,"34743":-1,"34744":2685,"34745":-1,"34746":-1,"34747":-1,"34748":-1,"34749":-1,"34750":-1,"34751":-1,"34752":-1,"34753":-1,"34754":-1,"34755":-1,"34756":-1,"34757":-1,"34758":-1,"34759":-1,"34760":-1,"34761":-1,"34762":-1,"34763":-1,"34764":2683,"34765":-1,"34766":-1,"34767":2686,"34768":-1,"34769":2681,"34770":-1,"34771":-1,"34772":-1,"34773":-1,"34774":-1,"34775":-1,"34776":-1,"34777":-1,"34778":-1,"34779":-1,"34780":-1,"34781":-1,"34782":-1,"34783":2685,"34784":-1,"34785":-1,"34786":-1,"34787":-1,"34788":-1,"34789":-1,"34790":-1,"34791":2683,"34792":2681,"34793":-1,"34794":-1,"34795":-1,"34796":-1,"34797":-1,"34798":-1,"34799":-1,"34800":2683,"34801":-1,"34802":-1,"34803":-1,"34804":-1,"34805":-1,"34806":-1,"34807":-1,"34808":-1,"34809":-1,"34810":-1,"34811":-1,"34812":-1,"34813":2682,"34814":-1,"34815":0,"34816":-1,"34817":-1,"34818":-1,"34819":-1,"34820":-1,"34821":-1,"34822":-1,"34823":2687,"34824":2685,"34825":0,"34826":2686,"34827":-1,"34828":2684,"34829":-1,"34830":-1,"34831":-1,"34832":2685,"34833":-1,"34834":2687,"34835":-1,"34836":-1,"34837":-1,"34838":-1,"34839":-1,"34840":-1,"34841":2686,"34842":-1,"34843":-1,"34844":-1,"34845":-1,"34846":-1,"34847":2686,"34848":-1,"34849":-1,"34850":-1,"34851":-1,"34852":-1,"34853":-1,"34854":-1,"34855":-1,"34856":-1,"34857":-1,"34858":-1,"34859":-1,"34860":2682,"34861":-1,"34862":2683,"34863":-1,"34864":-1,"34865":-1,"34866":-1,"34867":-1,"34868":-1,"34869":2683,"34870":0,"34871":-1,"34872":-1,"34873":-1,"34874":-1,"34875":-1,"34876":-1,"34877":2685,"34878":-1,"34879":-1,"34880":-1,"34881":-1,"34882":-1,"34883":-1,"34884":0,"34885":0,"34886":-1,"34887":-1,"34888":-1,"34889":-1,"34890":-1,"34891":2684,"34892":2686,"34893":-1,"34894":-1,"34895":2684,"34896":-1,"34897":-1,"34898":-1,"34899":-1,"34900":-1,"34901":-1,"34902":-1,"34903":0,"34904":-1,"34905":-1,"34906":-1,"34907":-1,"34908":-1,"34909":-1,"34910":-1,"34911":2687,"34912":-1,"34913":-1,"34914":-1,"34915":-1,"34916":-1,"34917":-1,"34918":-1,"34919":-1,"34920":-1,"34921":-1,"34922":-1,"34923":2685,"34924":-1,"34925":-1,"34926":-1,"34927":-1,"34928":2686,"34929":-1,"34930":2682,"34931":-1,"34932":-1,"34933":-1,"34934":2684,"34935":-1,"34936":0,"34937":-1,"34938":-1,"34939":-1,"34940":-1,"34941":-1,"34942":-1,"34943":-1,"34944":-1,"34945":-1,"34946":-1,"34947":-1,"34948":-1,"34949":0,"34950":-1,"34951":2684,"34952":-1,"34953":-1,"34954":-1,"34955":-1,"34956":-1,"34957":-1,"34958":-1,"34959":-1,"34960":-1,"34961":0,"34962":-1,"34963":-1,"34964":-1,"34965":-1,"34966":-1,"34967":-1,"34968":2681,"34969":0,"34970":-1,"34971":2682,"34972":2684,"34973":-1,"34974":-1,"34975":-1,"34976":-1,"34977":-1,"34978":-1,"34979":-1,"34980":-1,"34981":-1,"34982":-1,"34983":2686,"34984":-1,"34985":-1,"34986":-1,"34987":-1,"34988":-1,"34989":-1,"34990":-1,"34991":-1,"34992":-1,"34993":-1,"34994":2684,"34995":2685,"34996":-1,"34997":-1,"34998":-1,"34999":-1,"35000":-1,"35001":-1,"35002":-1,"35003":-1,"35004":2684,"35005":-1,"35006":2685,"35007":-1,"35008":-1,"35009":-1,"35010":-1,"35011":-1,"35012":-1,"35013":-1,"35014":-1,"35015":-1,"35016":-1,"35017":2682,"35018":-1,"35019":0,"35020":-1,"35021":-1,"35022":-1,"35023":-1,"35024":-1,"35025":-1,"35026":-1,"35027":-1,"35028":-1,"35029":2687,"35030":-1,"35031":-1,"35032":2682,"35033":-1,"35034":-1,"35035":-1,"35036":-1,"35037":-1,"35038":-1,"35039":-1,"35040":-1,"35041":-1,"35042":-1,"35043":-1,"35044":-1,"35045":-1,"35046":-1,"35047":-1,"35048":-1,"35049":2684,"35050":-1,"35051":-1,"35052":-1,"35053":-1,"35054":-1,"35055":2683,"35056":-1,"35057":-1,"35058":-1,"35059":-1,"35060":-1,"35061":2681,"35062":0,"35063":-1,"35064":-1,"35065":-1,"35066":-1,"35067":-1,"35068":-1,"35069":2686,"35070":-1,"35071":-1,"35072":-1,"35073":0,"35074":-1,"35075":-1,"35076":-1,"35077":-1,"35078":-1,"35079":-1,"35080":-1,"35081":-1,"35082":-1,"35083":-1,"35084":-1,"35085":-1,"35086":-1,"35087":2686,"35088":-1,"35089":-1,"35090":0,"35091":-1,"35092":-1,"35093":0,"35094":-1,"35095":-1,"35096":-1,"35097":-1,"35098":-1,"35099":-1,"35100":-1,"35101":-1,"35102":-1,"35103":-1,"35104":-1,"35105":2685,"35106":2686,"35107":-1,"35108":-1,"35109":-1,"35110":2681,"35111":-1,"35112":-1,"35113":0,"35114":-1,"35115":-1,"35116":-1,"35117":2683,"35118":-1,"35119":-1,"35120":-1,"35121":-1,"35122":-1,"35123":-1,"35124":2682,"35125":-1,"35126":2682,"35127":-1,"35128":-1,"35129":-1,"35130":-1,"35131":-1,"35132":-1,"35133":-1,"35134":-1,"35135":-1,"35136":-1,"35137":-1,"35138":-1,"35139":-1,"35140":-1,"35141":-1,"35142":-1,"35143":-1,"35144":-1,"35145":-1,"35146":-1,"35147":-1,"35148":-1,"35149":-1,"35150":2686,"35151":-1,"35152":2686,"35153":-1,"35154":-1,"35155":-1,"35156":2683,"35157":-1,"35158":-1,"35159":-1,"35160":-1,"35161":-1,"35162":-1,"35163":-1,"35164":-1,"35165":-1,"35166":-1,"35167":-1,"35168":-1,"35169":2682,"35170":-1,"35171":-1,"35172":-1,"35173":-1,"35174":-1,"35175":-1,"35176":-1,"35177":2686,"35178":-1,"35179":-1,"35180":-1,"35181":2682,"35182":-1,"35183":2686,"35184":-1,"35185":-1,"35186":-1,"35187":2687,"35188":-1,"35189":-1,"35190":2686,"35191":-1,"35192":-1,"35193":2687,"35194":-1,"35195":-1,"35196":-1,"35197":-1,"35198":-1,"35199":-1,"35200":2682,"35201":-1,"35202":2685,"35203":-1,"35204":-1,"35205":2684,"35206":-1,"35207":-1,"35208":-1,"35209":2682,"35210":-1,"35211":-1,"35212":-1,"35213":-1,"35214":-1,"35215":-1,"35216":-1,"35217":-1,"35218":-1,"35219":-1,"35220":-1,"35221":-1,"35222":-1,"35223":-1,"35224":-1,"35225":-1,"35226":0,"35227":2683,"35228":-1,"35229":-1,"35230":-1,"35231":-1,"35232":-1,"35233":-1,"35234":0,"35235":-1,"35236":-1,"35237":-1,"35238":-1,"35239":-1,"35240":-1,"35241":-1,"35242":-1,"35243":-1,"35244":-1,"35245":-1,"35246":-1,"35247":-1,"35248":2685,"35249":-1,"35250":-1,"35251":-1,"35252":-1,"35253":-1,"35254":-1,"35255":-1,"35256":-1,"35257":2681,"35258":-1,"35259":2685,"35260":0,"35261":-1,"35262":-1,"35263":-1,"35264":-1,"35265":-1,"35266":-1,"35267":-1,"35268":-1,"35269":-1,"35270":-1,"35271":-1,"35272":-1,"35273":2686,"35274":0,"35275":-1,"35276":-1,"35277":-1,"35278":2684,"35279":-1,"35280":-1,"35281":-1,"35282":-1,"35283":-1,"35284":-1,"35285":-1,"35286":2683,"35287":-1,"35288":-1,"35289":-1,"35290":-1,"35291":-1,"35292":-1,"35293":-1,"35294":-1,"35295":-1,"35296":-1,"35297":-1,"35298":-1,"35299":-1,"35300":-1,"35301":-1,"35302":-1,"35303":-1,"35304":-1,"35305":2686,"35306":-1,"35307":-1,"35308":-1,"35309":-1,"35310":2681,"35311":-1,"35312":-1,"35313":-1,"35314":-1,"35315":-1,"35316":-1,"35317":-1,"35318":0,"35319":-1,"35320":-1,"35321":-1,"35322":-1,"35323":0,"35324":-1,"35325":-1,"35326":-1,"35327":2682,"35328":-1,"35329":-1,"35330":2684,"35331":-1,"35332":-1,"35333":-1,"35334":-1,"35335":-1,"35336":-1,"35337":-1,"35338":-1,"35339":2682,"35340":-1,"35341":2684,"35342":-1,"35343":-1,"35344":-1,"35345":0,"35346":-1,"35347":-1,"35348":-1,"35349":-1,"35350":2682,"35351":2681,"35352":-1,"35353":-1,"35354":-1,"35355":-1,"35356":-1,"35357":-1,"35358":-1,"35359":-1,"35360":-1,"35361":-1,"35362":-1,"35363":-1,"35364":-1,"35365":-1,"35366":-1,"35367":-1,"35368":-1,"35369":-1,"35370":-1,"35371":2687,"35372":-1,"35373":-1,"35374":-1,"35375":-1,"35376":-1,"35377":2684,"35378":-1,"35379":-1,"35380":2685,"35381":-1,"35382":-1,"35383":-1,"35384":-1,"35385":-1,"35386":-1,"35387":-1,"35388":-1,"35389":-1,"35390":-1,"35391":-1,"35392":-1,"35393":-1,"35394":-1,"35395":2684,"35396":-1,"35397":-1,"35398":-1,"35399":2683,"35400":-1,"35401":-1,"35402":-1,"35403":-1,"35404":-1,"35405":-1,"35406":-1,"35407":-1,"35408":-1,"35409":2686,"35410":-1,"35411":-1,"35412":-1,"35413":-1,"35414":-1,"35415":-1,"35416":2682,"35417":-1,"35418":-1,"35419":-1,"35420":-1,"35421":-1,"35422":-1,"35423":-1,"35424":-1,"35425":-1,"35426":-1,"35427":-1,"35428":-1,"35429":-1,"35430":-1,"35431":-1,"35432":-1,"35433":-1,"35434":2682,"35435":-1,"35436":-1,"35437":-1,"35438":-1,"35439":-1,"35440":-1,"35441":0,"35442":-1,"35443":2685,"35444":2684,"35445":-1,"35446":-1,"35447":-1,"35448":-1,"35449":-1,"35450":2686,"35451":0,"35452":-1,"35453":-1,"35454":-1,"35455":-1,"35456":-1,"35457":-1,"35458":-1,"35459":-1,"35460":-1,"35461":-1,"35462":-1,"35463":-1,"35464":-1,"35465":-1,"35466":-1,"35467":-1,"35468":-1,"35469":-1,"35470":-1,"35471":-1,"35472":-1,"35473":2686,"35474":-1,"35475":-1,"35476":-1,"35477":-1,"35478":-1,"35479":2682,"35480":-1,"35481":-1,"35482":-1,"35483":-1,"35484":-1,"35485":-1,"35486":-1,"35487":-1,"35488":-1,"35489":-1,"35490":-1,"35491":-1,"35492":-1,"35493":0,"35494":2686,"35495":-1,"35496":-1,"35497":-1,"35498":-1,"35499":-1,"35500":2684,"35501":-1,"35502":-1,"35503":-1,"35504":-1,"35505":-1,"35506":-1,"35507":-1,"35508":-1,"35509":-1,"35510":-1,"35511":-1,"35512":-1,"35513":-1,"35514":-1,"35515":-1,"35516":-1,"35517":-1,"35518":-1,"35519":-1,"35520":-1,"35521":-1,"35522":-1,"35523":-1,"35524":-1,"35525":-1,"35526":-1,"35527":-1,"35528":-1,"35529":-1,"35530":-1,"35531":-1,"35532":-1,"35533":-1,"35534":2686,"35535":-1,"35536":-1,"35537":-1,"35538":-1,"35539":-1,"35540":-1,"35541":-1,"35542":-1,"35543":-1,"35544":-1,"35545":-1,"35546":-1,"35547":-1,"35548":-1,"35549":-1,"35550":-1,"35551":-1,"35552":-1,"35553":-1,"35554":-1,"35555":-1,"35556":-1,"35557":-1,"35558":2681,"35559":-1,"35560":-1,"35561":-1,"35562":-1,"35563":-1,"35564":-1,"35565":-1,"35566":-1,"35567":-1,"35568":-1,"35569":-1,"35570":2681,"35571":-1,"35572":-1,"35573":-1,"35574":-1,"35575":2682,"35576":-1,"35577":2686,"35578":-1,"35579":-1,"35580":-1,"35581":-1,"35582":2683,"35583":-1,"35584":2683,"35585":-1,"35586":-1,"35587":-1,"35588":-1,"35589":-1,"35590":-1,"35591":-1,"35592":-1,"35593":-1,"35594":-1,"35595":-1,"35596":-1,"35597":-1,"35598":-1,"35599":-1,"35600":-1,"35601":-1,"35602":-1,"35603":-1,"35604":-1,"35605":-1,"35606":-1,"35607":-1,"35608":-1,"35609":-1,"35610":-1,"35611":-1,"35612":-1,"35613":-1,"35614":-1,"35615":-1,"35616":-1,"35617":-1,"35618":-1,"35619":-1,"35620":2687,"35621":-1,"35622":-1,"35623":-1,"35624":2685,"35625":-1,"35626":-1,"35627":-1,"35628":-1,"35629":-1,"35630":-1,"35631":-1,"35632":2682,"35633":-1,"35634":-1,"35635":-1,"35636":-1,"35637":-1,"35638":-1,"35639":-1,"35640":2685,"35641":-1,"35642":-1,"35643":-1,"35644":-1,"35645":-1,"35646":-1,"35647":2687,"35648":2684,"35649":-1,"35650":-1,"35651":-1,"35652":-1,"35653":-1,"35654":-1,"35655":-1,"35656":-1,"35657":-1,"35658":-1,"35659":-1,"35660":-1,"35661":-1,"35662":2682,"35663":-1,"35664":-1,"35665":-1,"35666":-1,"35667":-1,"35668":-1,"35669":-1,"35670":-1,"35671":-1,"35672":-1,"35673":-1,"35674":-1,"35675":-1,"35676":-1,"35677":-1,"35678":-1,"35679":-1,"35680":-1,"35681":-1,"35682":-1,"35683":-1,"35684":2682,"35685":0,"35686":-1,"35687":-1,"35688":-1,"35689":-1,"35690":-1,"35691":-1,"35692":-1,"35693":-1,"35694":-1,"35695":-1,"35696":-1,"35697":-1,"35698":-1,"35699":-1,"35700":-1,"35701":-1,"35702":-1,"35703":-1,"35704":-1,"35705":-1,"35706":-1,"35707":-1,"35708":-1,"35709":-1,"35710":-1,"35711":2686,"35712":2687,"35713":-1,"35714":-1,"35715":-1,"35716":-1,"35717":-1,"35718":-1,"35719":-1,"35720":-1,"35721":2683,"35722":-1,"35723":-1,"35724":-1,"35725":2683,"35726":-1,"35727":-1,"35728":-1,"35729":-1,"35730":-1,"35731":-1,"35732":-1,"35733":2686,"35734":2687,"35735":-1,"35736":-1,"35737":-1,"35738":-1,"35739":-1,"35740":-1,"35741":2685,"35742":-1,"35743":-1,"35744":-1,"35745":-1,"35746":-1,"35747":-1,"35748":-1,"35749":0,"35750":-1,"35751":-1,"35752":-1,"35753":-1,"35754":-1,"35755":-1,"35756":-1,"35757":-1,"35758":0,"35759":-1,"35760":-1,"35761":0,"35762":-1,"35763":-1,"35764":-1,"35765":-1,"35766":-1,"35767":-1,"35768":-1,"35769":-1,"35770":-1,"35771":-1,"35772":2685,"35773":-1,"35774":-1,"35775":-1,"35776":-1,"35777":0,"35778":2687,"35779":0,"35780":-1,"35781":-1,"35782":-1,"35783":-1,"35784":-1,"35785":2683,"35786":2687,"35787":-1,"35788":-1,"35789":-1,"35790":-1,"35791":-1,"35792":-1,"35793":-1,"35794":-1,"35795":2681,"35796":2682,"35797":2685,"35798":-1,"35799":-1,"35800":-1,"35801":-1,"35802":-1,"35803":-1,"35804":2685,"35805":-1,"35806":-1,"35807":0,"35808":-1,"35809":-1,"35810":-1,"35811":-1,"35812":-1,"35813":2685,"35814":-1,"35815":-1,"35816":2682,"35817":-1,"35818":-1,"35819":-1,"35820":-1,"35821":-1,"35822":-1,"35823":-1,"35824":-1,"35825":-1,"35826":-1,"35827":-1,"35828":-1,"35829":-1,"35830":-1,"35831":-1,"35832":2683,"35833":-1,"35834":-1,"35835":-1,"35836":-1,"35837":-1,"35838":-1,"35839":2684,"35840":-1,"35841":-1,"35842":-1,"35843":-1,"35844":-1,"35845":-1,"35846":0,"35847":-1,"35848":-1,"35849":-1,"35850":-1,"35851":0,"35852":-1,"35853":-1,"35854":-1,"35855":-1,"35856":-1,"35857":-1,"35858":-1,"35859":-1,"35860":-1,"35861":-1,"35862":-1,"35863":-1,"35864":0,"35865":2687,"35866":-1,"35867":-1,"35868":-1,"35869":-1,"35870":-1,"35871":-1,"35872":-1,"35873":-1,"35874":-1,"35875":-1,"35876":-1,"35877":-1,"35878":-1,"35879":2686,"35880":-1,"35881":-1,"35882":-1,"35883":-1,"35884":-1,"35885":-1,"35886":-1,"35887":0,"35888":-1,"35889":-1,"35890":-1,"35891":-1,"35892":-1,"35893":2681,"35894":-1,"35895":-1,"35896":2685,"35897":2683,"35898":-1,"35899":-1,"35900":-1,"35901":-1,"35902":-1,"35903":-1,"35904":-1,"35905":-1,"35906":2686,"35907":-1,"35908":2685,"35909":-1,"35910":-1,"35911":-1,"35912":-1,"35913":-1,"35914":-1,"35915":-1,"35916":-1,"35917":-1,"35918":-1,"35919":-1,"35920":-1,"35921":-1,"35922":-1,"35923":-1,"35924":-1,"35925":-1,"35926":-1,"35927":-1,"35928":-1,"35929":-1,"35930":-1,"35931":2685,"35932":-1,"35933":-1,"35934":-1,"35935":-1,"35936":-1,"35937":-1,"35938":2685,"35939":-1,"35940":-1,"35941":-1,"35942":-1,"35943":-1,"35944":0,"35945":-1,"35946":-1,"35947":-1,"35948":-1,"35949":0,"35950":-1,"35951":2686,"35952":-1,"35953":-1,"35954":2685,"35955":-1,"35956":-1,"35957":-1,"35958":-1,"35959":-1,"35960":-1,"35961":-1,"35962":-1,"35963":-1,"35964":-1,"35965":-1,"35966":-1,"35967":-1,"35968":-1,"35969":-1,"35970":-1,"35971":2683,"35972":-1,"35973":-1,"35974":-1,"35975":-1,"35976":0,"35977":-1,"35978":-1,"35979":-1,"35980":-1,"35981":-1,"35982":-1,"35983":-1,"35984":-1,"35985":-1,"35986":-1,"35987":2682,"35988":-1,"35989":2684,"35990":2683,"35991":-1,"35992":-1,"35993":-1,"35994":-1,"35995":-1,"35996":-1,"35997":2683,"35998":-1,"35999":-1,"36000":0,"36001":-1,"36002":-1,"36003":2685,"36004":0,"36005":-1,"36006":-1,"36007":2686,"36008":2682,"36009":2685,"36010":-1,"36011":-1,"36012":-1,"36013":-1,"36014":-1,"36015":-1,"36016":-1,"36017":-1,"36018":-1,"36019":-1,"36020":-1,"36021":-1,"36022":-1,"36023":-1,"36024":-1,"36025":-1,"36026":-1,"36027":-1,"36028":-1,"36029":-1,"36030":2686,"36031":-1,"36032":-1,"36033":-1,"36034":-1,"36035":2686,"36036":-1,"36037":-1,"36038":-1,"36039":2682,"36040":-1,"36041":-1,"36042":-1,"36043":-1,"36044":0,"36045":-1,"36046":-1,"36047":-1,"36048":2683,"36049":-1,"36050":-1,"36051":-1,"36052":-1,"36053":0,"36054":2685,"36055":0,"36056":-1,"36057":-1,"36058":-1,"36059":-1,"36060":-1,"36061":-1,"36062":-1,"36063":-1,"36064":-1,"36065":-1,"36066":-1,"36067":-1,"36068":-1,"36069":-1,"36070":-1,"36071":-1,"36072":2682,"36073":2682,"36074":-1,"36075":2682,"36076":-1,"36077":-1,"36078":-1,"36079":2685,"36080":-1,"36081":2682,"36082":-1,"36083":-1,"36084":-1,"36085":2681,"36086":2685,"36087":-1,"36088":-1,"36089":-1,"36090":-1,"36091":-1,"36092":-1,"36093":-1,"36094":-1,"36095":-1,"36096":-1,"36097":-1,"36098":-1,"36099":-1,"36100":-1,"36101":-1,"36102":-1,"36103":-1,"36104":-1,"36105":-1,"36106":2685,"36107":-1,"36108":-1,"36109":-1,"36110":-1,"36111":-1,"36112":0,"36113":2682,"36114":-1,"36115":-1,"36116":0,"36117":-1,"36118":-1,"36119":2685,"36120":2682,"36121":-1,"36122":-1,"36123":-1,"36124":-1,"36125":-1,"36126":2682,"36127":2684,"36128":-1,"36129":-1,"36130":2685,"36131":-1,"36132":-1,"36133":-1,"36134":2683,"36135":-1,"36136":-1,"36137":-1,"36138":-1,"36139":-1,"36140":-1,"36141":-1,"36142":2687,"36143":-1,"36144":-1,"36145":-1,"36146":-1,"36147":-1,"36148":-1,"36149":-1,"36150":-1,"36151":-1,"36152":-1,"36153":2686,"36154":-1,"36155":2685,"36156":-1,"36157":-1,"36158":-1,"36159":-1,"36160":-1,"36161":2684,"36162":-1,"36163":2683,"36164":-1,"36165":-1,"36166":-1,"36167":0,"36168":-1,"36169":-1,"36170":-1,"36171":-1,"36172":-1,"36173":0,"36174":-1,"36175":2687,"36176":-1,"36177":-1,"36178":-1,"36179":-1,"36180":-1,"36181":-1,"36182":-1,"36183":-1,"36184":-1,"36185":-1,"36186":2685,"36187":-1,"36188":-1,"36189":2685,"36190":-1,"36191":2686,"36192":-1,"36193":-1,"36194":0,"36195":-1,"36196":-1,"36197":-1,"36198":-1,"36199":-1,"36200":-1,"36201":-1,"36202":-1,"36203":-1,"36204":-1,"36205":-1,"36206":-1,"36207":2686,"36208":-1,"36209":-1,"36210":-1,"36211":-1,"36212":0,"36213":-1,"36214":-1,"36215":-1,"36216":-1,"36217":0,"36218":-1,"36219":0,"36220":-1,"36221":-1,"36222":-1,"36223":-1,"36224":-1,"36225":-1,"36226":-1,"36227":-1,"36228":2685,"36229":-1,"36230":-1,"36231":-1,"36232":2684,"36233":-1,"36234":-1,"36235":-1,"36236":-1,"36237":-1,"36238":2682,"36239":-1,"36240":-1,"36241":-1,"36242":2686,"36243":-1,"36244":-1,"36245":-1,"36246":0,"36247":-1,"36248":-1,"36249":-1,"36250":-1,"36251":-1,"36252":-1,"36253":2685,"36254":-1,"36255":-1,"36256":2682,"36257":2683,"36258":-1,"36259":2685,"36260":-1,"36261":-1,"36262":-1,"36263":-1,"36264":-1,"36265":-1,"36266":-1,"36267":-1,"36268":0,"36269":-1,"36270":-1,"36271":-1,"36272":-1,"36273":-1,"36274":-1,"36275":-1,"36276":-1,"36277":-1,"36278":-1,"36279":-1,"36280":-1,"36281":-1,"36282":-1,"36283":-1,"36284":-1,"36285":-1,"36286":-1,"36287":-1,"36288":-1,"36289":-1,"36290":-1,"36291":-1,"36292":-1,"36293":0,"36294":-1,"36295":-1,"36296":-1,"36297":-1,"36298":-1,"36299":2686,"36300":-1,"36301":-1,"36302":-1,"36303":-1,"36304":-1,"36305":-1,"36306":-1,"36307":-1,"36308":0,"36309":-1,"36310":2682,"36311":-1,"36312":2681,"36313":2683,"36314":-1,"36315":-1,"36316":-1,"36317":-1,"36318":-1,"36319":-1,"36320":-1,"36321":-1,"36322":2686,"36323":0,"36324":-1,"36325":-1,"36326":-1,"36327":2681,"36328":-1,"36329":-1,"36330":-1,"36331":-1,"36332":-1,"36333":-1,"36334":-1,"36335":-1,"36336":-1,"36337":2684,"36338":-1,"36339":2683,"36340":-1,"36341":-1,"36342":-1,"36343":-1,"36344":2683,"36345":-1,"36346":-1,"36347":-1,"36348":-1,"36349":2687,"36350":-1,"36351":-1,"36352":-1,"36353":-1,"36354":-1,"36355":-1,"36356":-1,"36357":-1,"36358":-1,"36359":-1,"36360":-1,"36361":-1,"36362":-1,"36363":-1,"36364":-1,"36365":-1,"36366":-1,"36367":-1,"36368":2686,"36369":-1,"36370":-1,"36371":-1,"36372":-1,"36373":-1,"36374":-1,"36375":-1,"36376":-1,"36377":-1,"36378":-1,"36379":-1,"36380":-1,"36381":-1,"36382":-1,"36383":-1,"36384":-1,"36385":-1,"36386":-1,"36387":-1,"36388":-1,"36389":0,"36390":-1,"36391":-1,"36392":-1,"36393":2687,"36394":-1,"36395":-1,"36396":-1,"36397":-1,"36398":2686,"36399":-1,"36400":-1,"36401":-1,"36402":-1,"36403":-1,"36404":-1,"36405":-1,"36406":0,"36407":-1,"36408":-1,"36409":-1,"36410":-1,"36411":-1,"36412":-1,"36413":-1,"36414":-1,"36415":-1,"36416":-1,"36417":-1,"36418":-1,"36419":-1,"36420":-1,"36421":-1,"36422":-1,"36423":-1,"36424":-1,"36425":-1,"36426":-1,"36427":0,"36428":-1,"36429":-1,"36430":-1,"36431":2681,"36432":2686,"36433":-1,"36434":-1,"36435":-1,"36436":-1,"36437":-1,"36438":-1,"36439":-1,"36440":-1,"36441":-1,"36442":2683,"36443":-1,"36444":-1,"36445":-1,"36446":-1,"36447":-1,"36448":2682,"36449":-1,"36450":-1,"36451":-1,"36452":-1,"36453":-1,"36454":-1,"36455":-1,"36456":-1,"36457":-1,"36458":-1,"36459":-1,"36460":-1,"36461":2685,"36462":-1,"36463":2683,"36464":-1,"36465":-1,"36466":-1,"36467":-1,"36468":-1,"36469":-1,"36470":-1,"36471":-1,"36472":-1,"36473":-1,"36474":-1,"36475":-1,"36476":-1,"36477":-1,"36478":-1,"36479":-1,"36480":-1,"36481":-1,"36482":-1,"36483":-1,"36484":-1,"36485":-1,"36486":-1,"36487":-1,"36488":-1,"36489":-1,"36490":-1,"36491":2686,"36492":-1,"36493":-1,"36494":-1,"36495":-1,"36496":-1,"36497":-1,"36498":-1,"36499":-1,"36500":-1,"36501":-1,"36502":-1,"36503":0,"36504":-1,"36505":-1,"36506":0,"36507":-1,"36508":-1,"36509":-1,"36510":-1,"36511":-1,"36512":-1,"36513":-1,"36514":0,"36515":-1,"36516":2686,"36517":-1,"36518":-1,"36519":-1,"36520":2682,"36521":0,"36522":-1,"36523":-1,"36524":-1,"36525":-1,"36526":-1,"36527":2683,"36528":2687,"36529":-1,"36530":2681,"36531":-1,"36532":-1,"36533":-1,"36534":-1,"36535":-1,"36536":0,"36537":2686,"36538":0,"36539":-1,"36540":-1,"36541":-1,"36542":-1,"36543":-1,"36544":-1,"36545":-1,"36546":-1,"36547":2686,"36548":-1,"36549":-1,"36550":-1,"36551":2682,"36552":-1,"36553":-1,"36554":-1,"36555":-1,"36556":2685,"36557":-1,"36558":-1,"36559":2685,"36560":-1,"36561":-1,"36562":-1,"36563":-1,"36564":-1,"36565":-1,"36566":2686,"36567":2686,"36568":-1,"36569":-1,"36570":-1,"36571":-1,"36572":2684,"36573":-1,"36574":-1,"36575":-1,"36576":-1,"36577":-1,"36578":-1,"36579":-1,"36580":-1,"36581":-1,"36582":-1,"36583":-1,"36584":-1,"36585":-1,"36586":-1,"36587":-1,"36588":2684,"36589":-1,"36590":2686,"36591":-1,"36592":-1,"36593":-1,"36594":0,"36595":-1,"36596":-1,"36597":-1,"36598":-1,"36599":-1,"36600":2685,"36601":2683,"36602":-1,"36603":-1,"36604":0,"36605":-1,"36606":-1,"36607":-1,"36608":-1,"36609":-1,"36610":-1,"36611":-1,"36612":-1,"36613":-1,"36614":-1,"36615":-1,"36616":-1,"36617":-1,"36618":-1,"36619":-1,"36620":-1,"36621":-1,"36622":-1,"36623":-1,"36624":-1,"36625":-1,"36626":-1,"36627":-1,"36628":-1,"36629":-1,"36630":-1,"36631":-1,"36632":-1,"36633":-1,"36634":-1,"36635":2687,"36636":-1,"36637":-1,"36638":2687,"36639":-1,"36640":-1,"36641":-1,"36642":-1,"36643":-1,"36644":-1,"36645":-1,"36646":-1,"36647":-1,"36648":-1,"36649":2686,"36650":-1,"36651":-1,"36652":-1,"36653":-1,"36654":-1,"36655":-1,"36656":-1,"36657":-1,"36658":-1,"36659":-1,"36660":-1,"36661":-1,"36662":-1,"36663":-1,"36664":0,"36665":-1,"36666":-1,"36667":-1,"36668":-1,"36669":-1,"36670":0,"36671":-1,"36672":-1,"36673":-1,"36674":-1,"36675":-1,"36676":-1,"36677":-1,"36678":-1,"36679":-1,"36680":-1,"36681":-1,"36682":-1,"36683":-1,"36684":-1,"36685":-1,"36686":-1,"36687":0,"36688":-1,"36689":-1,"36690":-1,"36691":-1,"36692":-1,"36693":-1,"36694":-1,"36695":2687,"36696":-1,"36697":-1,"36698":-1,"36699":2686,"36700":0,"36701":-1,"36702":0,"36703":-1,"36704":-1,"36705":-1,"36706":-1,"36707":-1,"36708":-1,"36709":-1,"36710":2684,"36711":-1,"36712":-1,"36713":2683,"36714":0,"36715":-1,"36716":-1,"36717":-1,"36718":-1,"36719":-1,"36720":-1,"36721":-1,"36722":-1,"36723":-1,"36724":-1,"36725":-1,"36726":-1,"36727":0,"36728":-1,"36729":-1,"36730":-1,"36731":-1,"36732":-1,"36733":-1,"36734":-1,"36735":-1,"36736":-1,"36737":-1,"36738":2686,"36739":-1,"36740":-1,"36741":-1,"36742":-1,"36743":-1,"36744":-1,"36745":-1,"36746":-1,"36747":-1,"36748":-1,"36749":-1,"36750":-1,"36751":-1,"36752":-1,"36753":-1,"36754":-1,"36755":-1,"36756":-1,"36757":2682,"36758":-1,"36759":-1,"36760":-1,"36761":-1,"36762":-1,"36763":2683,"36764":-1,"36765":-1,"36766":2684,"36767":-1,"36768":-1,"36769":-1,"36770":-1,"36771":-1,"36772":-1,"36773":2686,"36774":-1,"36775":-1,"36776":-1,"36777":-1,"36778":-1,"36779":-1,"36780":2681,"36781":-1,"36782":-1,"36783":-1,"36784":-1,"36785":-1,"36786":-1,"36787":-1,"36788":-1,"36789":-1,"36790":-1,"36791":-1,"36792":-1,"36793":-1,"36794":2683,"36795":2682,"36796":-1,"36797":-1,"36798":-1,"36799":-1,"36800":-1,"36801":-1,"36802":-1,"36803":2686,"36804":-1,"36805":-1,"36806":-1,"36807":-1,"36808":-1,"36809":-1,"36810":-1,"36811":-1,"36812":-1,"36813":-1,"36814":-1,"36815":-1,"36816":-1,"36817":0,"36818":-1,"36819":-1,"36820":-1,"36821":-1,"36822":-1,"36823":-1,"36824":-1,"36825":-1,"36826":-1,"36827":-1,"36828":-1,"36829":-1,"36830":2684,"36831":-1,"36832":-1,"36833":2686,"36834":-1,"36835":-1,"36836":-1,"36837":-1,"36838":-1,"36839":-1,"36840":2685,"36841":2686,"36842":-1,"36843":-1,"36844":-1,"36845":-1,"36846":-1,"36847":-1,"36848":2683,"36849":-1,"36850":-1,"36851":-1,"36852":-1,"36853":-1,"36854":-1,"36855":-1,"36856":2683,"36857":-1,"36858":0,"36859":-1,"36860":2683,"36861":-1,"36862":-1,"36863":-1,"36864":-1,"36865":2681,"36866":-1,"36867":-1,"36868":-1,"36869":-1,"36870":-1,"36871":-1,"36872":-1,"36873":-1,"36874":-1,"36875":-1,"36876":-1,"36877":-1,"36878":-1,"36879":-1,"36880":-1,"36881":-1,"36882":-1,"36883":-1,"36884":2683,"36885":-1,"36886":2687,"36887":-1,"36888":2685,"36889":-1,"36890":2686,"36891":-1,"36892":2683,"36893":-1,"36894":-1,"36895":-1,"36896":2685,"36897":-1,"36898":-1,"36899":-1,"36900":-1,"36901":-1,"36902":-1,"36903":-1,"36904":-1,"36905":-1,"36906":-1,"36907":-1,"36908":-1,"36909":2684,"36910":-1,"36911":-1,"36912":-1,"36913":-1,"36914":0,"36915":-1,"36916":-1,"36917":-1,"36918":-1,"36919":-1,"36920":-1,"36921":-1,"36922":-1,"36923":-1,"36924":-1,"36925":-1,"36926":-1,"36927":-1,"36928":-1,"36929":-1,"36930":-1,"36931":-1,"36932":-1,"36933":-1,"36934":-1,"36935":-1,"36936":-1,"36937":-1,"36938":-1,"36939":0,"36940":-1,"36941":-1,"36942":-1,"36943":-1,"36944":-1,"36945":-1,"36946":-1,"36947":-1,"36948":-1,"36949":-1,"36950":-1,"36951":-1,"36952":-1,"36953":-1,"36954":-1,"36955":-1,"36956":-1,"36957":2684,"36958":-1,"36959":2685,"36960":-1,"36961":-1,"36962":-1,"36963":-1,"36964":-1,"36965":-1,"36966":2687,"36967":-1,"36968":-1,"36969":-1,"36970":2685,"36971":-1,"36972":-1,"36973":-1,"36974":-1,"36975":-1,"36976":2682,"36977":-1,"36978":-1,"36979":-1,"36980":0,"36981":0,"36982":-1,"36983":-1,"36984":-1,"36985":-1,"36986":2685,"36987":-1,"36988":-1,"36989":-1,"36990":-1,"36991":2681,"36992":-1,"36993":2683,"36994":-1,"36995":2687,"36996":-1,"36997":0,"36998":-1,"36999":-1,"37000":2687,"37001":-1,"37002":0,"37003":-1,"37004":-1,"37005":-1,"37006":-1,"37007":-1,"37008":-1,"37009":-1,"37010":2685,"37011":-1,"37012":-1,"37013":-1,"37014":-1,"37015":-1,"37016":-1,"37017":-1,"37018":-1,"37019":-1,"37020":-1,"37021":-1,"37022":-1,"37023":-1,"37024":-1,"37025":-1,"37026":-1,"37027":2684,"37028":-1,"37029":-1,"37030":-1,"37031":-1,"37032":2685,"37033":-1,"37034":-1,"37035":-1,"37036":-1,"37037":-1,"37038":2683,"37039":-1,"37040":-1,"37041":-1,"37042":-1,"37043":-1,"37044":-1,"37045":-1,"37046":-1,"37047":2686,"37048":-1,"37049":2683,"37050":-1,"37051":-1,"37052":-1,"37053":2685,"37054":-1,"37055":-1,"37056":2687,"37057":-1,"37058":-1,"37059":-1,"37060":2683,"37061":-1,"37062":-1,"37063":0,"37064":-1,"37065":-1,"37066":-1,"37067":-1,"37068":-1,"37069":2684,"37070":-1,"37071":-1,"37072":-1,"37073":-1,"37074":-1,"37075":2681,"37076":-1,"37077":-1,"37078":-1,"37079":-1,"37080":-1,"37081":-1,"37082":2684,"37083":-1,"37084":-1,"37085":-1,"37086":-1,"37087":-1,"37088":-1,"37089":-1,"37090":-1,"37091":-1,"37092":-1,"37093":-1,"37094":-1,"37095":-1,"37096":2684,"37097":-1,"37098":-1,"37099":-1,"37100":0,"37101":-1,"37102":-1,"37103":-1,"37104":-1,"37105":-1,"37106":2686,"37107":-1,"37108":-1,"37109":-1,"37110":-1,"37111":-1,"37112":-1,"37113":-1,"37114":-1,"37115":-1,"37116":-1,"37117":-1,"37118":-1,"37119":-1,"37120":-1,"37121":-1,"37122":-1,"37123":-1,"37124":-1,"37125":-1,"37126":2683,"37127":-1,"37128":-1,"37129":-1,"37130":-1,"37131":-1,"37132":-1,"37133":-1,"37134":-1,"37135":-1,"37136":-1,"37137":-1,"37138":-1,"37139":-1,"37140":-1,"37141":-1,"37142":-1,"37143":-1,"37144":-1,"37145":-1,"37146":-1,"37147":-1,"37148":-1,"37149":-1,"37150":-1,"37151":-1,"37152":2684,"37153":-1,"37154":-1,"37155":-1,"37156":-1,"37157":2684,"37158":-1,"37159":-1,"37160":2685,"37161":-1,"37162":-1,"37163":-1,"37164":-1,"37165":-1,"37166":-1,"37167":-1,"37168":-1,"37169":-1,"37170":2686,"37171":-1,"37172":-1,"37173":-1,"37174":0,"37175":0,"37176":-1,"37177":-1,"37178":-1,"37179":-1,"37180":-1,"37181":-1,"37182":-1,"37183":-1,"37184":-1,"37185":-1,"37186":2685,"37187":-1,"37188":-1,"37189":-1,"37190":-1,"37191":-1,"37192":0,"37193":-1,"37194":-1,"37195":-1,"37196":-1,"37197":-1,"37198":-1,"37199":-1,"37200":-1,"37201":-1,"37202":-1,"37203":-1,"37204":-1,"37205":-1,"37206":-1,"37207":-1,"37208":-1,"37209":-1,"37210":-1,"37211":-1,"37212":-1,"37213":-1,"37214":-1,"37215":-1,"37216":-1,"37217":-1,"37218":-1,"37219":2687,"37220":-1,"37221":-1,"37222":-1,"37223":-1,"37224":2684,"37225":-1,"37226":-1,"37227":-1,"37228":-1,"37229":-1,"37230":-1,"37231":2681,"37232":0,"37233":-1,"37234":-1,"37235":-1,"37236":-1,"37237":-1,"37238":-1,"37239":2683,"37240":-1,"37241":-1,"37242":0,"37243":-1,"37244":-1,"37245":-1,"37246":2684,"37247":-1,"37248":0,"37249":-1,"37250":-1,"37251":-1,"37252":-1,"37253":-1,"37254":-1,"37255":2682,"37256":-1,"37257":-1,"37258":2681,"37259":-1,"37260":-1,"37261":-1,"37262":-1,"37263":-1,"37264":-1,"37265":-1,"37266":-1,"37267":-1,"37268":-1,"37269":-1,"37270":-1,"37271":2682,"37272":0,"37273":-1,"37274":-1,"37275":-1,"37276":-1,"37277":-1,"37278":-1,"37279":-1,"37280":2685,"37281":-1,"37282":-1,"37283":-1,"37284":-1,"37285":-1,"37286":-1,"37287":-1,"37288":-1,"37289":-1,"37290":-1,"37291":-1,"37292":-1,"37293":-1,"37294":-1,"37295":-1,"37296":-1,"37297":2682,"37298":-1,"37299":2686,"37300":-1,"37301":-1,"37302":-1,"37303":-1,"37304":-1,"37305":2685,"37306":-1,"37307":-1,"37308":-1,"37309":-1,"37310":-1,"37311":-1,"37312":-1,"37313":-1,"37314":-1,"37315":2684,"37316":-1,"37317":-1,"37318":-1,"37319":-1,"37320":2681,"37321":-1,"37322":-1,"37323":-1,"37324":-1,"37325":-1,"37326":-1,"37327":-1,"37328":-1,"37329":-1,"37330":-1,"37331":-1,"37332":-1,"37333":0,"37334":-1,"37335":0,"37336":-1,"37337":-1,"37338":-1,"37339":-1,"37340":-1,"37341":-1,"37342":2685,"37343":-1,"37344":2687,"37345":-1,"37346":-1,"37347":-1,"37348":-1,"37349":-1,"37350":-1,"37351":-1,"37352":-1,"37353":-1,"37354":-1,"37355":-1,"37356":-1,"37357":-1,"37358":2686,"37359":-1,"37360":-1,"37361":-1,"37362":-1,"37363":2681,"37364":-1,"37365":-1,"37366":-1,"37367":-1,"37368":2684,"37369":-1,"37370":-1,"37371":-1,"37372":-1,"37373":-1,"37374":-1,"37375":-1,"37376":-1,"37377":-1,"37378":-1,"37379":-1,"37380":-1,"37381":-1,"37382":-1,"37383":-1,"37384":-1,"37385":-1,"37386":2685,"37387":-1,"37388":-1,"37389":-1,"37390":-1,"37391":-1,"37392":-1,"37393":-1,"37394":2682,"37395":-1,"37396":-1,"37397":-1,"37398":-1,"37399":-1,"37400":-1,"37401":-1,"37402":-1,"37403":-1,"37404":-1,"37405":-1,"37406":2684,"37407":-1,"37408":2686,"37409":-1,"37410":-1,"37411":-1,"37412":-1,"37413":-1,"37414":-1,"37415":-1,"37416":-1,"37417":-1,"37418":-1,"37419":-1,"37420":0,"37421":-1,"37422":-1,"37423":2686,"37424":-1,"37425":-1,"37426":-1,"37427":-1,"37428":0,"37429":0,"37430":-1,"37431":-1,"37432":-1,"37433":-1,"37434":2684,"37435":-1,"37436":-1,"37437":-1,"37438":2684,"37439":-1,"37440":2683,"37441":-1,"37442":-1,"37443":2682,"37444":-1,"37445":-1,"37446":-1,"37447":-1,"37448":-1,"37449":2682,"37450":0,"37451":-1,"37452":-1,"37453":-1,"37454":-1,"37455":-1,"37456":-1,"37457":-1,"37458":-1,"37459":-1,"37460":-1,"37461":-1,"37462":2684,"37463":-1,"37464":-1,"37465":-1,"37466":-1,"37467":-1,"37468":-1,"37469":-1,"37470":-1,"37471":-1,"37472":-1,"37473":-1,"37474":-1,"37475":-1,"37476":-1,"37477":-1,"37478":-1,"37479":-1,"37480":-1,"37481":-1,"37482":-1,"37483":-1,"37484":2682,"37485":-1,"37486":-1,"37487":-1,"37488":2686,"37489":-1,"37490":-1,"37491":-1,"37492":-1,"37493":-1,"37494":-1,"37495":-1,"37496":-1,"37497":2682,"37498":-1,"37499":-1,"37500":-1,"37501":-1,"37502":-1,"37503":-1,"37504":-1,"37505":-1,"37506":-1,"37507":-1,"37508":-1,"37509":-1,"37510":-1,"37511":-1,"37512":-1,"37513":-1,"37514":-1,"37515":-1,"37516":-1,"37517":-1,"37518":-1,"37519":2685,"37520":-1,"37521":-1,"37522":-1,"37523":2686,"37524":-1,"37525":-1,"37526":-1,"37527":-1,"37528":-1,"37529":-1,"37530":-1,"37531":-1,"37532":2682,"37533":-1,"37534":-1,"37535":-1,"37536":-1,"37537":-1,"37538":-1,"37539":-1,"37540":-1,"37541":-1,"37542":-1,"37543":-1,"37544":-1,"37545":-1,"37546":-1,"37547":-1,"37548":-1,"37549":-1,"37550":-1,"37551":-1,"37552":-1,"37553":-1,"37554":-1,"37555":-1,"37556":-1,"37557":0,"37558":-1,"37559":-1,"37560":-1,"37561":-1,"37562":0,"37563":-1,"37564":-1,"37565":-1,"37566":-1,"37567":2686,"37568":-1,"37569":-1,"37570":-1,"37571":-1,"37572":-1,"37573":0,"37574":-1,"37575":-1,"37576":-1,"37577":0,"37578":-1,"37579":-1,"37580":-1,"37581":-1,"37582":-1,"37583":-1,"37584":-1,"37585":-1,"37586":-1,"37587":-1,"37588":-1,"37589":-1,"37590":-1,"37591":-1,"37592":-1,"37593":-1,"37594":0,"37595":-1,"37596":-1,"37597":-1,"37598":-1,"37599":-1,"37600":-1,"37601":-1,"37602":-1,"37603":-1,"37604":-1,"37605":-1,"37606":2681,"37607":-1,"37608":-1,"37609":-1,"37610":-1,"37611":-1,"37612":-1,"37613":-1,"37614":-1,"37615":-1,"37616":0,"37617":-1,"37618":-1,"37619":-1,"37620":2685,"37621":-1,"37622":-1,"37623":-1,"37624":-1,"37625":-1,"37626":-1,"37627":-1,"37628":0,"37629":-1,"37630":-1,"37631":2685,"37632":-1,"37633":2683,"37634":-1,"37635":-1,"37636":-1,"37637":-1,"37638":-1,"37639":-1,"37640":-1,"37641":-1,"37642":-1,"37643":-1,"37644":-1,"37645":-1,"37646":-1,"37647":-1,"37648":2682,"37649":-1,"37650":2686,"37651":-1,"37652":-1,"37653":-1,"37654":-1,"37655":-1,"37656":-1,"37657":-1,"37658":-1,"37659":-1,"37660":-1,"37661":2686,"37662":-1,"37663":-1,"37664":2683,"37665":-1,"37666":-1,"37667":-1,"37668":-1,"37669":-1,"37670":-1,"37671":-1,"37672":-1,"37673":-1,"37674":2684,"37675":-1,"37676":-1,"37677":-1,"37678":2681,"37679":-1,"37680":-1,"37681":-1,"37682":-1,"37683":-1,"37684":-1,"37685":-1,"37686":-1,"37687":-1,"37688":-1,"37689":-1,"37690":2683,"37691":-1,"37692":-1,"37693":2686,"37694":-1,"37695":-1,"37696":2686,"37697":-1,"37698":-1,"37699":-1,"37700":-1,"37701":0,"37702":-1,"37703":-1,"37704":-1,"37705":-1,"37706":-1,"37707":-1,"37708":-1,"37709":-1,"37710":2681,"37711":-1,"37712":0,"37713":-1,"37714":-1,"37715":2684,"37716":-1,"37717":-1,"37718":-1,"37719":-1,"37720":2685,"37721":-1,"37722":-1,"37723":-1,"37724":2682,"37725":-1,"37726":-1,"37727":-1,"37728":-1,"37729":-1,"37730":-1,"37731":-1,"37732":-1,"37733":-1,"37734":-1,"37735":-1,"37736":-1,"37737":-1,"37738":-1,"37739":-1,"37740":-1,"37741":0,"37742":-1,"37743":2682,"37744":-1,"37745":-1,"37746":2686,"37747":-1,"37748":2683,"37749":2682,"37750":2682,"37751":2687,"37752":0,"37753":-1,"37754":-1,"37755":-1,"37756":-1,"37757":-1,"37758":-1,"37759":-1,"37760":-1,"37761":-1,"37762":-1,"37763":-1,"37764":-1,"37765":-1,"37766":-1,"37767":-1,"37768":-1,"37769":-1,"37770":-1,"37771":-1,"37772":-1,"37773":-1,"37774":-1,"37775":-1,"37776":-1,"37777":-1,"37778":-1,"37779":-1,"37780":-1,"37781":-1,"37782":-1,"37783":-1,"37784":-1,"37785":-1,"37786":-1,"37787":-1,"37788":-1,"37789":-1,"37790":-1,"37791":-1,"37792":-1,"37793":-1,"37794":-1,"37795":-1,"37796":-1,"37797":-1,"37798":-1,"37799":2686,"37800":-1,"37801":-1,"37802":-1,"37803":-1,"37804":-1,"37805":-1,"37806":-1,"37807":-1,"37808":-1,"37809":-1,"37810":2686,"37811":-1,"37812":-1,"37813":2684,"37814":-1,"37815":-1,"37816":-1,"37817":2682,"37818":-1,"37819":-1,"37820":-1,"37821":-1,"37822":-1,"37823":-1,"37824":-1,"37825":-1,"37826":-1,"37827":-1,"37828":-1,"37829":-1,"37830":-1,"37831":-1,"37832":-1,"37833":-1,"37834":-1,"37835":-1,"37836":-1,"37837":2682,"37838":-1,"37839":-1,"37840":-1,"37841":2685,"37842":-1,"37843":-1,"37844":-1,"37845":-1,"37846":-1,"37847":-1,"37848":0,"37849":-1,"37850":0,"37851":-1,"37852":-1,"37853":-1,"37854":-1,"37855":-1,"37856":2682,"37857":-1,"37858":-1,"37859":-1,"37860":-1,"37861":2685,"37862":2682,"37863":-1,"37864":-1,"37865":-1,"37866":-1,"37867":-1,"37868":-1,"37869":-1,"37870":-1,"37871":0,"37872":-1,"37873":-1,"37874":-1,"37875":-1,"37876":-1,"37877":-1,"37878":2685,"37879":-1,"37880":-1,"37881":-1,"37882":-1,"37883":-1,"37884":-1,"37885":-1,"37886":-1,"37887":-1,"37888":-1,"37889":2683,"37890":-1,"37891":-1,"37892":-1,"37893":-1,"37894":-1,"37895":2684,"37896":-1,"37897":-1,"37898":-1,"37899":2686,"37900":-1,"37901":-1,"37902":-1,"37903":-1,"37904":-1,"37905":-1,"37906":-1,"37907":-1,"37908":-1,"37909":-1,"37910":-1,"37911":-1,"37912":-1,"37913":-1,"37914":2682,"37915":-1,"37916":0,"37917":-1,"37918":-1,"37919":-1,"37920":-1,"37921":-1,"37922":-1,"37923":-1,"37924":-1,"37925":-1,"37926":-1,"37927":-1,"37928":-1,"37929":-1,"37930":-1,"37931":0,"37932":-1,"37933":-1,"37934":-1,"37935":0,"37936":0,"37937":-1,"37938":-1,"37939":-1,"37940":-1,"37941":-1,"37942":-1,"37943":-1,"37944":-1,"37945":-1,"37946":2684,"37947":2685,"37948":-1,"37949":0,"37950":-1,"37951":-1,"37952":-1,"37953":-1,"37954":-1,"37955":-1,"37956":-1,"37957":2685,"37958":-1,"37959":-1,"37960":-1,"37961":-1,"37962":-1,"37963":0,"37964":-1,"37965":-1,"37966":-1,"37967":2682,"37968":-1,"37969":-1,"37970":-1,"37971":-1,"37972":2682,"37973":2685,"37974":-1,"37975":-1,"37976":-1,"37977":-1,"37978":-1,"37979":2685,"37980":-1,"37981":-1,"37982":-1,"37983":-1,"37984":-1,"37985":2686,"37986":-1,"37987":-1,"37988":2684,"37989":-1,"37990":-1,"37991":2686,"37992":-1,"37993":-1,"37994":-1,"37995":-1,"37996":2684,"37997":-1,"37998":-1,"37999":-1,"38000":-1,"38001":-1,"38002":-1,"38003":-1,"38004":2683,"38005":-1,"38006":2685,"38007":2682,"38008":-1,"38009":-1,"38010":-1,"38011":2685,"38012":-1,"38013":-1,"38014":-1,"38015":-1,"38016":-1,"38017":-1,"38018":-1,"38019":-1,"38020":-1,"38021":-1,"38022":-1,"38023":-1,"38024":-1,"38025":0,"38026":-1,"38027":0,"38028":0,"38029":-1,"38030":-1,"38031":0,"38032":-1,"38033":-1,"38034":-1,"38035":-1,"38036":2686,"38037":2684,"38038":-1,"38039":-1,"38040":-1,"38041":-1,"38042":-1,"38043":-1,"38044":-1,"38045":-1,"38046":-1,"38047":-1,"38048":-1,"38049":2686,"38050":2683,"38051":2685,"38052":-1,"38053":-1,"38054":-1,"38055":2685,"38056":-1,"38057":2684,"38058":-1,"38059":-1,"38060":-1,"38061":-1,"38062":-1,"38063":2685,"38064":-1,"38065":-1,"38066":2681,"38067":-1,"38068":-1,"38069":-1,"38070":-1,"38071":-1,"38072":2681,"38073":-1,"38074":-1,"38075":2683,"38076":-1,"38077":-1,"38078":-1,"38079":-1,"38080":-1,"38081":-1,"38082":-1,"38083":-1,"38084":-1,"38085":-1,"38086":-1,"38087":-1,"38088":-1,"38089":-1,"38090":-1,"38091":0,"38092":0,"38093":-1,"38094":-1,"38095":-1,"38096":-1,"38097":-1,"38098":2682,"38099":2683,"38100":-1,"38101":-1,"38102":-1,"38103":-1,"38104":-1,"38105":-1,"38106":-1,"38107":-1,"38108":-1,"38109":-1,"38110":-1,"38111":-1,"38112":2681,"38113":-1,"38114":-1,"38115":-1,"38116":-1,"38117":-1,"38118":0,"38119":-1,"38120":2686,"38121":-1,"38122":-1,"38123":-1,"38124":-1,"38125":-1,"38126":-1,"38127":-1,"38128":-1,"38129":-1,"38130":-1,"38131":-1,"38132":-1,"38133":0,"38134":2682,"38135":-1,"38136":-1,"38137":-1,"38138":-1,"38139":-1,"38140":-1,"38141":-1,"38142":-1,"38143":2686,"38144":-1,"38145":2683,"38146":2682,"38147":2685,"38148":-1,"38149":-1,"38150":-1,"38151":-1,"38152":-1,"38153":-1,"38154":2683,"38155":-1,"38156":-1,"38157":-1,"38158":-1,"38159":-1,"38160":-1,"38161":-1,"38162":-1,"38163":-1,"38164":-1,"38165":-1,"38166":-1,"38167":-1,"38168":-1,"38169":-1,"38170":-1,"38171":2683,"38172":-1,"38173":-1,"38174":-1,"38175":-1,"38176":-1,"38177":-1,"38178":2682,"38179":-1,"38180":-1,"38181":-1,"38182":-1,"38183":-1,"38184":-1,"38185":2681,"38186":-1,"38187":2681,"38188":-1,"38189":2683,"38190":-1,"38191":-1,"38192":-1,"38193":-1,"38194":-1,"38195":-1,"38196":-1,"38197":-1,"38198":-1,"38199":-1,"38200":2685,"38201":-1,"38202":-1,"38203":-1,"38204":-1,"38205":-1,"38206":-1,"38207":-1,"38208":-1,"38209":2686,"38210":-1,"38211":-1,"38212":-1,"38213":-1,"38214":-1,"38215":-1,"38216":-1,"38217":-1,"38218":2683,"38219":0,"38220":2687,"38221":0,"38222":2682,"38223":-1,"38224":0,"38225":-1,"38226":-1,"38227":-1,"38228":-1,"38229":-1,"38230":-1,"38231":-1,"38232":-1,"38233":-1,"38234":-1,"38235":-1,"38236":-1,"38237":-1,"38238":-1,"38239":-1,"38240":-1,"38241":-1,"38242":-1,"38243":0,"38244":-1,"38245":-1,"38246":-1,"38247":-1,"38248":-1,"38249":-1,"38250":-1,"38251":2685,"38252":-1,"38253":-1,"38254":-1,"38255":-1,"38256":-1,"38257":2687,"38258":-1,"38259":-1,"38260":-1,"38261":-1,"38262":-1,"38263":-1,"38264":-1,"38265":-1,"38266":-1,"38267":-1,"38268":-1,"38269":-1,"38270":-1,"38271":-1,"38272":-1,"38273":2684,"38274":-1,"38275":-1,"38276":2682,"38277":-1,"38278":-1,"38279":2684,"38280":-1,"38281":-1,"38282":-1,"38283":-1,"38284":-1,"38285":-1,"38286":-1,"38287":-1,"38288":2686,"38289":2685,"38290":-1,"38291":2687,"38292":-1,"38293":2685,"38294":-1,"38295":-1,"38296":-1,"38297":-1,"38298":-1,"38299":-1,"38300":-1,"38301":-1,"38302":2685,"38303":-1,"38304":0,"38305":2685,"38306":-1,"38307":-1,"38308":-1,"38309":-1,"38310":-1,"38311":-1,"38312":0,"38313":-1,"38314":2683,"38315":0,"38316":-1,"38317":-1,"38318":-1,"38319":-1,"38320":-1,"38321":-1,"38322":-1,"38323":-1,"38324":-1,"38325":-1,"38326":-1,"38327":2684,"38328":-1,"38329":-1,"38330":-1,"38331":-1,"38332":-1,"38333":-1,"38334":-1,"38335":-1,"38336":-1,"38337":-1,"38338":-1,"38339":-1,"38340":-1,"38341":-1,"38342":-1,"38343":-1,"38344":-1,"38345":-1,"38346":2685,"38347":2682,"38348":-1,"38349":-1,"38350":2686,"38351":-1,"38352":-1,"38353":-1,"38354":-1,"38355":-1,"38356":2686,"38357":-1,"38358":-1,"38359":-1,"38360":-1,"38361":-1,"38362":-1,"38363":-1,"38364":-1,"38365":-1,"38366":-1,"38367":-1,"38368":-1,"38369":-1,"38370":-1,"38371":-1,"38372":-1,"38373":0,"38374":-1,"38375":-1,"38376":-1,"38377":2685,"38378":-1,"38379":-1,"38380":-1,"38381":-1,"38382":-1,"38383":-1,"38384":-1,"38385":-1,"38386":-1,"38387":-1,"38388":-1,"38389":-1,"38390":-1,"38391":-1,"38392":-1,"38393":-1,"38394":-1,"38395":-1,"38396":-1,"38397":-1,"38398":-1,"38399":-1,"38400":-1,"38401":-1,"38402":-1,"38403":-1,"38404":-1,"38405":-1,"38406":-1,"38407":-1,"38408":-1,"38409":0,"38410":-1,"38411":-1,"38412":-1,"38413":-1,"38414":-1,"38415":-1,"38416":-1,"38417":-1,"38418":2683,"38419":-1,"38420":-1,"38421":-1,"38422":-1,"38423":2687,"38424":-1,"38425":-1,"38426":-1,"38427":0,"38428":-1,"38429":-1,"38430":-1,"38431":-1,"38432":-1,"38433":-1,"38434":-1,"38435":-1,"38436":-1,"38437":-1,"38438":-1,"38439":2686,"38440":-1,"38441":-1,"38442":2683,"38443":-1,"38444":-1,"38445":-1,"38446":2685,"38447":-1,"38448":-1,"38449":-1,"38450":-1,"38451":-1,"38452":-1,"38453":-1,"38454":-1,"38455":-1,"38456":-1,"38457":-1,"38458":-1,"38459":-1,"38460":-1,"38461":0,"38462":-1,"38463":-1,"38464":-1,"38465":-1,"38466":-1,"38467":-1,"38468":-1,"38469":-1,"38470":-1,"38471":-1,"38472":-1,"38473":-1,"38474":-1,"38475":-1,"38476":-1,"38477":-1,"38478":-1,"38479":-1,"38480":-1,"38481":-1,"38482":-1,"38483":-1,"38484":-1,"38485":2686,"38486":-1,"38487":-1,"38488":-1,"38489":-1,"38490":-1,"38491":-1,"38492":0,"38493":-1,"38494":-1,"38495":-1,"38496":2685,"38497":2685,"38498":-1,"38499":-1,"38500":0,"38501":-1,"38502":-1,"38503":-1,"38504":-1,"38505":-1,"38506":-1,"38507":-1,"38508":2684,"38509":-1,"38510":-1,"38511":-1,"38512":-1,"38513":-1,"38514":-1,"38515":-1,"38516":-1,"38517":-1,"38518":-1,"38519":-1,"38520":-1,"38521":-1,"38522":-1,"38523":-1,"38524":2686,"38525":-1,"38526":-1,"38527":2686,"38528":-1,"38529":-1,"38530":-1,"38531":0,"38532":-1,"38533":-1,"38534":2685,"38535":-1,"38536":-1,"38537":-1,"38538":2683,"38539":-1,"38540":-1,"38541":-1,"38542":-1,"38543":-1,"38544":0,"38545":-1,"38546":-1,"38547":-1,"38548":-1,"38549":-1,"38550":0,"38551":-1,"38552":-1,"38553":2687,"38554":-1,"38555":-1,"38556":-1,"38557":-1,"38558":-1,"38559":-1,"38560":-1,"38561":-1,"38562":0,"38563":-1,"38564":0,"38565":-1,"38566":-1,"38567":-1,"38568":2685,"38569":-1,"38570":-1,"38571":-1,"38572":-1,"38573":-1,"38574":-1,"38575":-1,"38576":-1,"38577":-1,"38578":0,"38579":-1,"38580":-1,"38581":-1,"38582":-1,"38583":-1,"38584":-1,"38585":2687,"38586":-1,"38587":-1,"38588":-1,"38589":-1,"38590":-1,"38591":-1,"38592":2685,"38593":-1,"38594":2682,"38595":-1,"38596":-1,"38597":2682,"38598":-1,"38599":-1,"38600":-1,"38601":-1,"38602":-1,"38603":-1,"38604":-1,"38605":-1,"38606":-1,"38607":2682,"38608":2681,"38609":-1,"38610":-1,"38611":-1,"38612":-1,"38613":-1,"38614":-1,"38615":-1,"38616":-1,"38617":-1,"38618":0,"38619":-1,"38620":-1,"38621":-1,"38622":-1,"38623":-1,"38624":-1,"38625":-1,"38626":-1,"38627":-1,"38628":-1,"38629":2685,"38630":-1,"38631":-1,"38632":-1,"38633":-1,"38634":-1,"38635":2684,"38636":-1,"38637":-1,"38638":-1,"38639":-1,"38640":-1,"38641":-1,"38642":-1,"38643":-1,"38644":-1,"38645":-1,"38646":-1,"38647":-1,"38648":-1,"38649":2686,"38650":2685,"38651":-1,"38652":-1,"38653":-1,"38654":-1,"38655":2685,"38656":-1,"38657":-1,"38658":-1,"38659":-1,"38660":0,"38661":-1,"38662":-1,"38663":2682,"38664":-1,"38665":0,"38666":2686,"38667":0,"38668":-1,"38669":-1,"38670":-1,"38671":-1,"38672":-1,"38673":-1,"38674":0,"38675":-1,"38676":-1,"38677":-1,"38678":-1,"38679":-1,"38680":-1,"38681":-1,"38682":-1,"38683":-1,"38684":-1,"38685":-1,"38686":-1,"38687":2682,"38688":-1,"38689":-1,"38690":-1,"38691":-1,"38692":-1,"38693":2685,"38694":-1,"38695":-1,"38696":-1,"38697":-1,"38698":-1,"38699":-1,"38700":-1,"38701":2684,"38702":-1,"38703":-1,"38704":2685,"38705":-1,"38706":-1,"38707":-1,"38708":-1,"38709":-1,"38710":-1,"38711":-1,"38712":-1,"38713":-1,"38714":-1,"38715":-1,"38716":2682,"38717":-1,"38718":-1,"38719":-1,"38720":-1,"38721":-1,"38722":-1,"38723":-1,"38724":-1,"38725":-1,"38726":-1,"38727":-1,"38728":-1,"38729":-1,"38730":0,"38731":-1,"38732":-1,"38733":-1,"38734":0,"38735":-1,"38736":-1,"38737":-1,"38738":-1,"38739":-1,"38740":2683,"38741":-1,"38742":2682,"38743":-1,"38744":2682,"38745":-1,"38746":-1,"38747":0,"38748":-1,"38749":-1,"38750":-1,"38751":-1,"38752":-1,"38753":-1,"38754":-1,"38755":-1,"38756":-1,"38757":-1,"38758":-1,"38759":-1,"38760":-1,"38761":-1,"38762":-1,"38763":-1,"38764":-1,"38765":-1,"38766":-1,"38767":-1,"38768":2683,"38769":-1,"38770":-1,"38771":-1,"38772":2686,"38773":-1,"38774":-1,"38775":-1,"38776":-1,"38777":-1,"38778":-1,"38779":2686,"38780":-1,"38781":2684,"38782":-1,"38783":-1,"38784":-1,"38785":-1,"38786":-1,"38787":-1,"38788":-1,"38789":-1,"38790":-1,"38791":-1,"38792":-1,"38793":2684,"38794":-1,"38795":-1,"38796":-1,"38797":-1,"38798":-1,"38799":-1,"38800":-1,"38801":-1,"38802":-1,"38803":2683,"38804":-1,"38805":-1,"38806":-1,"38807":-1,"38808":2682,"38809":-1,"38810":-1,"38811":-1,"38812":-1,"38813":-1,"38814":-1,"38815":-1,"38816":-1,"38817":-1,"38818":-1,"38819":-1,"38820":-1,"38821":-1,"38822":-1,"38823":-1,"38824":-1,"38825":-1,"38826":-1,"38827":-1,"38828":-1,"38829":-1,"38830":-1,"38831":-1,"38832":-1,"38833":-1,"38834":-1,"38835":-1,"38836":-1,"38837":-1,"38838":-1,"38839":-1,"38840":-1,"38841":-1,"38842":-1,"38843":-1,"38844":-1,"38845":-1,"38846":2683,"38847":-1,"38848":-1,"38849":-1,"38850":2682,"38851":-1,"38852":-1,"38853":-1,"38854":-1,"38855":-1,"38856":-1,"38857":-1,"38858":-1,"38859":-1,"38860":-1,"38861":-1,"38862":-1,"38863":0,"38864":-1,"38865":-1,"38866":-1,"38867":-1,"38868":2686,"38869":0,"38870":-1,"38871":-1,"38872":-1,"38873":-1,"38874":-1,"38875":-1,"38876":-1,"38877":-1,"38878":2684,"38879":2686,"38880":-1,"38881":-1,"38882":-1,"38883":-1,"38884":-1,"38885":-1,"38886":-1,"38887":-1,"38888":-1,"38889":-1,"38890":-1,"38891":-1,"38892":-1,"38893":-1,"38894":-1,"38895":-1,"38896":-1,"38897":-1,"38898":-1,"38899":-1,"38900":-1,"38901":-1,"38902":-1,"38903":-1,"38904":2687,"38905":-1,"38906":-1,"38907":-1,"38908":-1,"38909":2684,"38910":-1,"38911":2683,"38912":-1,"38913":-1,"38914":-1,"38915":0,"38916":-1,"38917":-1,"38918":-1,"38919":-1,"38920":-1,"38921":-1,"38922":-1,"38923":-1,"38924":-1,"38925":2682,"38926":2682,"38927":-1,"38928":-1,"38929":-1,"38930":-1,"38931":2685,"38932":0,"38933":-1,"38934":-1,"38935":2686,"38936":-1,"38937":-1,"38938":-1,"38939":-1,"38940":-1,"38941":-1,"38942":-1,"38943":-1,"38944":-1,"38945":-1,"38946":-1,"38947":-1,"38948":-1,"38949":2683,"38950":-1,"38951":-1,"38952":-1,"38953":-1,"38954":-1,"38955":-1,"38956":-1,"38957":-1,"38958":-1,"38959":-1,"38960":2681,"38961":2681,"38962":-1,"38963":-1,"38964":-1,"38965":-1,"38966":-1,"38967":-1,"38968":-1,"38969":-1,"38970":2687,"38971":-1,"38972":-1,"38973":-1,"38974":-1,"38975":-1,"38976":-1,"38977":2682,"38978":-1,"38979":-1,"38980":-1,"38981":-1,"38982":-1,"38983":-1,"38984":-1,"38985":-1,"38986":-1,"38987":-1,"38988":-1,"38989":-1,"38990":-1,"38991":-1,"38992":-1,"38993":-1,"38994":-1,"38995":-1,"38996":-1,"38997":-1,"38998":-1,"38999":-1,"39000":-1,"39001":-1,"39002":-1,"39003":-1,"39004":-1,"39005":-1,"39006":-1,"39007":-1,"39008":-1,"39009":-1,"39010":-1,"39011":-1,"39012":-1,"39013":-1,"39014":-1,"39015":-1,"39016":-1,"39017":-1,"39018":0,"39019":-1,"39020":-1,"39021":-1,"39022":-1,"39023":-1,"39024":-1,"39025":-1,"39026":-1,"39027":-1,"39028":-1,"39029":-1,"39030":0,"39031":-1,"39032":-1,"39033":-1,"39034":2683,"39035":0,"39036":-1,"39037":-1,"39038":-1,"39039":-1,"39040":-1,"39041":-1,"39042":-1,"39043":2686,"39044":-1,"39045":-1,"39046":-1,"39047":-1,"39048":-1,"39049":-1,"39050":-1,"39051":2682,"39052":-1,"39053":-1,"39054":-1,"39055":-1,"39056":-1,"39057":-1,"39058":-1,"39059":-1,"39060":2684,"39061":-1,"39062":-1,"39063":-1,"39064":-1,"39065":-1,"39066":-1,"39067":-1,"39068":-1,"39069":-1,"39070":-1,"39071":-1,"39072":-1,"39073":-1,"39074":-1,"39075":-1,"39076":-1,"39077":-1,"39078":-1,"39079":2686,"39080":-1,"39081":-1,"39082":-1,"39083":-1,"39084":-1,"39085":-1,"39086":-1,"39087":2687,"39088":-1,"39089":2685,"39090":-1,"39091":2683,"39092":-1,"39093":-1,"39094":-1,"39095":-1,"39096":-1,"39097":-1,"39098":-1,"39099":-1,"39100":-1,"39101":-1,"39102":-1,"39103":0,"39104":-1,"39105":-1,"39106":-1,"39107":-1,"39108":-1,"39109":-1,"39110":-1,"39111":-1,"39112":-1,"39113":-1,"39114":-1,"39115":-1,"39116":-1,"39117":-1,"39118":-1,"39119":-1,"39120":-1,"39121":2684,"39122":-1,"39123":0,"39124":-1,"39125":-1,"39126":-1,"39127":2687,"39128":-1,"39129":2683,"39130":-1,"39131":-1,"39132":0,"39133":-1,"39134":-1,"39135":-1,"39136":-1,"39137":-1,"39138":-1,"39139":-1,"39140":-1,"39141":2685,"39142":-1,"39143":-1,"39144":-1,"39145":-1,"39146":-1,"39147":-1,"39148":-1,"39149":-1,"39150":-1,"39151":-1,"39152":2681,"39153":-1,"39154":2684,"39155":-1,"39156":2682,"39157":-1,"39158":-1,"39159":-1,"39160":-1,"39161":-1,"39162":-1,"39163":-1,"39164":-1,"39165":-1,"39166":-1,"39167":2683,"39168":-1,"39169":-1,"39170":-1,"39171":-1,"39172":-1,"39173":-1,"39174":-1,"39175":2684,"39176":-1,"39177":2685,"39178":-1,"39179":-1,"39180":-1,"39181":-1,"39182":0,"39183":-1,"39184":-1,"39185":-1,"39186":-1,"39187":-1,"39188":-1,"39189":-1,"39190":-1,"39191":-1,"39192":2687,"39193":-1,"39194":-1,"39195":-1,"39196":-1,"39197":-1,"39198":-1,"39199":-1,"39200":-1,"39201":-1,"39202":-1,"39203":-1,"39204":0,"39205":-1,"39206":-1,"39207":-1,"39208":2685,"39209":-1,"39210":-1,"39211":-1,"39212":-1,"39213":-1,"39214":-1,"39215":-1,"39216":-1,"39217":-1,"39218":-1,"39219":2686,"39220":-1,"39221":-1,"39222":2686,"39223":2684,"39224":-1,"39225":-1,"39226":2681,"39227":-1,"39228":-1,"39229":-1,"39230":-1,"39231":-1,"39232":-1,"39233":-1,"39234":-1,"39235":-1,"39236":-1,"39237":-1,"39238":-1,"39239":-1,"39240":-1,"39241":-1,"39242":-1,"39243":-1,"39244":2682,"39245":-1,"39246":-1,"39247":-1,"39248":-1,"39249":-1,"39250":-1,"39251":-1,"39252":-1,"39253":-1,"39254":-1,"39255":-1,"39256":-1,"39257":-1,"39258":-1,"39259":0,"39260":-1,"39261":-1,"39262":-1,"39263":-1,"39264":2684,"39265":-1,"39266":-1,"39267":-1,"39268":0,"39269":-1,"39270":-1,"39271":-1,"39272":-1,"39273":-1,"39274":-1,"39275":-1,"39276":-1,"39277":-1,"39278":-1,"39279":-1,"39280":-1,"39281":-1,"39282":-1,"39283":2684,"39284":-1,"39285":-1,"39286":-1,"39287":-1,"39288":-1,"39289":-1,"39290":-1,"39291":-1,"39292":-1,"39293":-1,"39294":-1,"39295":2682,"39296":-1,"39297":-1,"39298":-1,"39299":-1,"39300":-1,"39301":2682,"39302":-1,"39303":-1,"39304":-1,"39305":-1,"39306":2686,"39307":0,"39308":-1,"39309":-1,"39310":-1,"39311":-1,"39312":2687,"39313":-1,"39314":2683,"39315":-1,"39316":-1,"39317":-1,"39318":-1,"39319":0,"39320":-1,"39321":-1,"39322":-1,"39323":-1,"39324":2683,"39325":0,"39326":-1,"39327":-1,"39328":-1,"39329":-1,"39330":-1,"39331":-1,"39332":-1,"39333":-1,"39334":2687,"39335":-1,"39336":-1,"39337":-1,"39338":-1,"39339":-1,"39340":-1,"39341":-1,"39342":-1,"39343":-1,"39344":-1,"39345":-1,"39346":-1,"39347":-1,"39348":-1,"39349":2686,"39350":-1,"39351":-1,"39352":-1,"39353":-1,"39354":-1,"39355":-1,"39356":2684,"39357":0,"39358":-1,"39359":-1,"39360":-1,"39361":-1,"39362":-1,"39363":-1,"39364":2684,"39365":-1,"39366":-1,"39367":-1,"39368":-1,"39369":-1,"39370":-1,"39371":-1,"39372":-1,"39373":-1,"39374":-1,"39375":0,"39376":-1,"39377":-1,"39378":-1,"39379":0,"39380":-1,"39381":2683,"39382":-1,"39383":-1,"39384":-1,"39385":-1,"39386":-1,"39387":-1,"39388":-1,"39389":-1,"39390":-1,"39391":-1,"39392":-1,"39393":-1,"39394":-1,"39395":-1,"39396":-1,"39397":-1,"39398":2682,"39399":-1,"39400":-1,"39401":-1,"39402":-1,"39403":-1,"39404":2683,"39405":-1,"39406":2684,"39407":-1,"39408":-1,"39409":2684,"39410":-1,"39411":-1,"39412":-1,"39413":-1,"39414":-1,"39415":-1,"39416":-1,"39417":-1,"39418":-1,"39419":-1,"39420":-1,"39421":-1,"39422":-1,"39423":-1,"39424":-1,"39425":2683,"39426":-1,"39427":-1,"39428":-1,"39429":-1,"39430":-1,"39431":2687,"39432":-1,"39433":-1,"39434":-1,"39435":-1,"39436":-1,"39437":-1,"39438":-1,"39439":-1,"39440":-1,"39441":-1,"39442":-1,"39443":-1,"39444":-1,"39445":-1,"39446":-1,"39447":-1,"39448":-1,"39449":-1,"39450":-1,"39451":-1,"39452":-1,"39453":-1,"39454":-1,"39455":-1,"39456":-1,"39457":-1,"39458":-1,"39459":-1,"39460":-1,"39461":-1,"39462":-1,"39463":-1,"39464":-1,"39465":-1,"39466":-1,"39467":-1,"39468":-1,"39469":-1,"39470":-1,"39471":-1,"39472":-1,"39473":-1,"39474":2683,"39475":-1,"39476":-1,"39477":-1,"39478":-1,"39479":-1,"39480":-1,"39481":-1,"39482":2686,"39483":-1,"39484":-1,"39485":-1,"39486":-1,"39487":-1,"39488":-1,"39489":-1,"39490":2687,"39491":-1,"39492":-1,"39493":-1,"39494":2682,"39495":-1,"39496":2685,"39497":-1,"39498":-1,"39499":-1,"39500":-1,"39501":-1,"39502":-1,"39503":-1,"39504":-1,"39505":-1,"39506":-1,"39507":-1,"39508":-1,"39509":2681,"39510":-1,"39511":-1,"39512":2685,"39513":-1,"39514":-1,"39515":-1,"39516":-1,"39517":-1,"39518":-1,"39519":-1,"39520":-1,"39521":-1,"39522":-1,"39523":-1,"39524":-1,"39525":-1,"39526":2684,"39527":2682,"39528":-1,"39529":-1,"39530":-1,"39531":-1,"39532":-1,"39533":-1,"39534":-1,"39535":-1,"39536":-1,"39537":-1,"39538":-1,"39539":-1,"39540":-1,"39541":2683,"39542":-1,"39543":-1,"39544":-1,"39545":-1,"39546":-1,"39547":-1,"39548":-1,"39549":-1,"39550":-1,"39551":-1,"39552":-1,"39553":2686,"39554":-1,"39555":2686,"39556":-1,"39557":-1,"39558":2682,"39559":-1,"39560":-1,"39561":-1,"39562":-1,"39563":-1,"39564":2681,"39565":-1,"39566":-1,"39567":-1,"39568":-1,"39569":2682,"39570":-1,"39571":-1,"39572":-1,"39573":-1,"39574":-1,"39575":-1,"39576":2682,"39577":-1,"39578":-1,"39579":2682,"39580":-1,"39581":-1,"39582":-1,"39583":-1,"39584":-1,"39585":-1,"39586":-1,"39587":-1,"39588":-1,"39589":-1,"39590":-1,"39591":-1,"39592":-1,"39593":2681,"39594":-1,"39595":-1,"39596":2686,"39597":-1,"39598":0,"39599":-1,"39600":2683,"39601":-1,"39602":-1,"39603":-1,"39604":-1,"39605":-1,"39606":-1,"39607":-1,"39608":-1,"39609":-1,"39610":-1,"39611":-1,"39612":-1,"39613":-1,"39614":-1,"39615":-1,"39616":-1,"39617":-1,"39618":-1,"39619":-1,"39620":-1,"39621":-1,"39622":-1,"39623":-1,"39624":-1,"39625":-1,"39626":-1,"39627":-1,"39628":-1,"39629":-1,"39630":-1,"39631":-1,"39632":-1,"39633":-1,"39634":-1,"39635":-1,"39636":-1,"39637":-1,"39638":2681,"39639":-1,"39640":2684,"39641":-1,"39642":2686,"39643":-1,"39644":-1,"39645":-1,"39646":-1,"39647":0,"39648":-1,"39649":-1,"39650":-1,"39651":-1,"39652":-1,"39653":-1,"39654":-1,"39655":-1,"39656":2682,"39657":-1,"39658":2681,"39659":-1,"39660":-1,"39661":-1,"39662":2683,"39663":2684,"39664":-1,"39665":-1,"39666":-1,"39667":-1,"39668":-1,"39669":-1,"39670":-1,"39671":-1,"39672":-1,"39673":-1,"39674":-1,"39675":-1,"39676":-1,"39677":-1,"39678":2681,"39679":-1,"39680":2683,"39681":-1,"39682":-1,"39683":-1,"39684":-1,"39685":-1,"39686":-1,"39687":-1,"39688":-1,"39689":-1,"39690":-1,"39691":-1,"39692":-1,"39693":-1,"39694":-1,"39695":2682,"39696":-1,"39697":-1,"39698":0,"39699":-1,"39700":-1,"39701":-1,"39702":-1,"39703":-1,"39704":-1,"39705":-1,"39706":-1,"39707":-1,"39708":2683,"39709":-1,"39710":-1,"39711":-1,"39712":-1,"39713":-1,"39714":-1,"39715":-1,"39716":-1,"39717":-1,"39718":-1,"39719":-1,"39720":-1,"39721":-1,"39722":-1,"39723":-1,"39724":-1,"39725":-1,"39726":-1,"39727":-1,"39728":-1,"39729":-1,"39730":-1,"39731":-1,"39732":2684,"39733":2681,"39734":-1,"39735":-1,"39736":-1,"39737":-1,"39738":-1,"39739":2682,"39740":-1,"39741":-1,"39742":-1,"39743":-1,"39744":-1,"39745":-1,"39746":0,"39747":-1,"39748":-1,"39749":-1,"39750":-1,"39751":-1,"39752":-1,"39753":-1,"39754":-1,"39755":2685,"39756":-1,"39757":-1,"39758":-1,"39759":-1,"39760":-1,"39761":-1,"39762":-1,"39763":-1,"39764":-1,"39765":-1,"39766":-1,"39767":-1,"39768":-1,"39769":-1,"39770":-1,"39771":-1,"39772":-1,"39773":-1,"39774":0,"39775":-1,"39776":-1,"39777":-1,"39778":2685,"39779":-1,"39780":-1,"39781":-1,"39782":-1,"39783":-1,"39784":-1,"39785":-1,"39786":-1,"39787":2681,"39788":-1,"39789":-1,"39790":-1,"39791":-1,"39792":-1,"39793":-1,"39794":-1,"39795":-1,"39796":2684,"39797":-1,"39798":0,"39799":-1,"39800":-1,"39801":-1,"39802":2682,"39803":-1,"39804":-1,"39805":0,"39806":-1,"39807":-1,"39808":-1,"39809":-1,"39810":-1,"39811":-1,"39812":-1,"39813":2685,"39814":-1,"39815":-1,"39816":-1,"39817":-1,"39818":2685,"39819":-1,"39820":-1,"39821":-1,"39822":-1,"39823":-1,"39824":2685,"39825":-1,"39826":2684,"39827":-1,"39828":-1,"39829":-1,"39830":-1,"39831":-1,"39832":2683,"39833":-1,"39834":-1,"39835":-1,"39836":-1,"39837":-1,"39838":-1,"39839":-1,"39840":-1,"39841":-1,"39842":-1,"39843":-1,"39844":-1,"39845":-1,"39846":-1,"39847":-1,"39848":-1,"39849":-1,"39850":-1,"39851":-1,"39852":-1,"39853":-1,"39854":0,"39855":-1,"39856":-1,"39857":-1,"39858":-1,"39859":-1,"39860":-1,"39861":-1,"39862":2681,"39863":-1,"39864":-1,"39865":-1,"39866":-1,"39867":-1,"39868":-1,"39869":-1,"39870":-1,"39871":-1,"39872":2681,"39873":-1,"39874":-1,"39875":-1,"39876":-1,"39877":-1,"39878":-1,"39879":-1,"39880":-1,"39881":-1,"39882":2683,"39883":-1,"39884":-1,"39885":-1,"39886":-1,"39887":-1,"39888":-1,"39889":-1,"39890":-1,"39891":-1,"39892":-1,"39893":-1,"39894":-1,"39895":2685,"39896":2684,"39897":-1,"39898":-1,"39899":-1,"39900":-1,"39901":-1,"39902":0,"39903":-1,"39904":-1,"39905":2686,"39906":-1,"39907":2685,"39908":-1,"39909":-1,"39910":2684,"39911":-1,"39912":-1,"39913":-1,"39914":-1,"39915":-1,"39916":-1,"39917":-1,"39918":-1,"39919":-1,"39920":2685,"39921":-1,"39922":-1,"39923":-1,"39924":-1,"39925":-1,"39926":-1,"39927":-1,"39928":2686,"39929":-1,"39930":-1,"39931":-1,"39932":2687,"39933":-1,"39934":-1,"39935":-1,"39936":-1,"39937":-1,"39938":2687,"39939":2683,"39940":0,"39941":2684,"39942":-1,"39943":-1,"39944":-1,"39945":-1,"39946":-1,"39947":-1,"39948":-1,"39949":-1,"39950":-1,"39951":-1,"39952":2684,"39953":2682,"39954":-1,"39955":-1,"39956":-1,"39957":-1,"39958":-1,"39959":0,"39960":0,"39961":-1,"39962":-1,"39963":-1,"39964":-1,"39965":-1,"39966":-1,"39967":-1,"39968":-1,"39969":-1,"39970":-1,"39971":-1,"39972":2683,"39973":2682,"39974":-1,"39975":-1,"39976":2686,"39977":-1,"39978":-1,"39979":-1,"39980":-1,"39981":-1,"39982":-1,"39983":-1,"39984":-1,"39985":-1,"39986":-1,"39987":-1,"39988":-1,"39989":-1,"39990":-1,"39991":-1,"39992":-1,"39993":-1,"39994":-1,"39995":2684,"39996":-1,"39997":-1,"39998":-1,"39999":2687,"40000":-1,"40001":-1,"40002":-1,"40003":-1,"40004":2686,"40005":-1,"40006":-1,"40007":2683,"40008":-1,"40009":-1,"40010":-1,"40011":2684,"40012":-1,"40013":-1,"40014":-1,"40015":-1,"40016":-1,"40017":-1,"40018":0,"40019":-1,"40020":-1,"40021":-1,"40022":-1,"40023":-1,"40024":-1,"40025":-1,"40026":-1,"40027":-1,"40028":-1,"40029":-1,"40030":-1,"40031":-1,"40032":-1,"40033":-1,"40034":-1,"40035":-1,"40036":2685,"40037":-1,"40038":2687,"40039":-1,"40040":0,"40041":-1,"40042":0,"40043":-1,"40044":-1,"40045":2685,"40046":-1,"40047":-1,"40048":-1,"40049":-1,"40050":-1,"40051":-1,"40052":-1,"40053":-1,"40054":-1,"40055":-1,"40056":-1,"40057":-1,"40058":-1,"40059":-1,"40060":-1,"40061":0,"40062":-1,"40063":-1,"40064":-1,"40065":-1,"40066":-1,"40067":-1,"40068":-1,"40069":-1,"40070":-1,"40071":-1,"40072":-1,"40073":-1,"40074":2684,"40075":-1,"40076":-1,"40077":-1,"40078":-1,"40079":-1,"40080":2685,"40081":2682,"40082":0,"40083":-1,"40084":-1,"40085":-1,"40086":-1,"40087":-1,"40088":-1,"40089":-1,"40090":-1,"40091":-1,"40092":-1,"40093":-1,"40094":-1,"40095":-1,"40096":-1,"40097":0,"40098":-1,"40099":-1,"40100":-1,"40101":-1,"40102":-1,"40103":-1,"40104":-1,"40105":-1,"40106":-1,"40107":-1,"40108":-1,"40109":2687,"40110":2684,"40111":-1,"40112":-1,"40113":2687,"40114":-1,"40115":-1,"40116":-1,"40117":2681,"40118":-1,"40119":-1,"40120":-1,"40121":-1,"40122":2686,"40123":-1,"40124":-1,"40125":-1,"40126":-1,"40127":-1,"40128":-1,"40129":-1,"40130":-1,"40131":-1,"40132":-1,"40133":-1,"40134":0,"40135":-1,"40136":-1,"40137":-1,"40138":-1,"40139":-1,"40140":-1,"40141":-1,"40142":-1,"40143":-1,"40144":-1,"40145":-1,"40146":-1,"40147":-1,"40148":-1,"40149":2683,"40150":-1,"40151":-1,"40152":0,"40153":-1,"40154":2684,"40155":-1,"40156":-1,"40157":-1,"40158":-1,"40159":-1,"40160":-1,"40161":-1,"40162":-1,"40163":0,"40164":0,"40165":2686,"40166":-1,"40167":-1,"40168":-1,"40169":-1,"40170":-1,"40171":-1,"40172":-1,"40173":-1,"40174":-1,"40175":-1,"40176":-1,"40177":-1,"40178":-1,"40179":-1,"40180":2683,"40181":-1,"40182":-1,"40183":-1,"40184":-1,"40185":-1,"40186":0,"40187":-1,"40188":-1,"40189":2684,"40190":-1,"40191":-1,"40192":-1,"40193":-1,"40194":-1,"40195":-1,"40196":-1,"40197":-1,"40198":-1,"40199":-1,"40200":-1,"40201":-1,"40202":-1,"40203":-1,"40204":-1,"40205":-1,"40206":-1,"40207":-1,"40208":-1,"40209":-1,"40210":2685,"40211":-1,"40212":-1,"40213":2685,"40214":-1,"40215":-1,"40216":-1,"40217":-1,"40218":-1,"40219":-1,"40220":-1,"40221":2682,"40222":-1,"40223":-1,"40224":-1,"40225":-1,"40226":2684,"40227":-1,"40228":-1,"40229":-1,"40230":-1,"40231":-1,"40232":-1,"40233":2685,"40234":-1,"40235":2684,"40236":0,"40237":-1,"40238":-1,"40239":-1,"40240":-1,"40241":0,"40242":-1,"40243":-1,"40244":-1,"40245":2687,"40246":-1,"40247":2685,"40248":-1,"40249":2685,"40250":-1,"40251":-1,"40252":-1,"40253":-1,"40254":-1,"40255":2684,"40256":-1,"40257":-1,"40258":-1,"40259":-1,"40260":2685,"40261":-1,"40262":-1,"40263":-1,"40264":-1,"40265":-1,"40266":-1,"40267":-1,"40268":-1,"40269":-1,"40270":-1,"40271":2682,"40272":2683,"40273":-1,"40274":-1,"40275":-1,"40276":-1,"40277":-1,"40278":-1,"40279":-1,"40280":-1,"40281":-1,"40282":-1,"40283":-1,"40284":-1,"40285":-1,"40286":2686,"40287":-1,"40288":-1,"40289":-1,"40290":-1,"40291":2682,"40292":-1,"40293":-1,"40294":2681,"40295":0,"40296":-1,"40297":2686,"40298":-1,"40299":-1,"40300":-1,"40301":-1,"40302":-1,"40303":-1,"40304":-1,"40305":-1,"40306":2686,"40307":-1,"40308":-1,"40309":-1,"40310":-1,"40311":-1,"40312":-1,"40313":-1,"40314":-1,"40315":-1,"40316":-1,"40317":-1,"40318":-1,"40319":-1,"40320":-1,"40321":2685,"40322":2684,"40323":-1,"40324":-1,"40325":-1,"40326":0,"40327":-1,"40328":-1,"40329":-1,"40330":0,"40331":-1,"40332":-1,"40333":-1,"40334":-1,"40335":2686,"40336":-1,"40337":-1,"40338":-1,"40339":-1,"40340":-1,"40341":-1,"40342":-1,"40343":-1,"40344":0,"40345":-1,"40346":-1,"40347":-1,"40348":-1,"40349":-1,"40350":-1,"40351":-1,"40352":-1,"40353":-1,"40354":-1,"40355":-1,"40356":2683,"40357":2685,"40358":-1,"40359":-1,"40360":-1,"40361":-1,"40362":-1,"40363":2686,"40364":-1,"40365":-1,"40366":-1,"40367":-1,"40368":-1,"40369":-1,"40370":-1,"40371":-1,"40372":-1,"40373":-1,"40374":-1,"40375":-1,"40376":-1,"40377":-1,"40378":-1,"40379":-1,"40380":-1,"40381":-1,"40382":2686,"40383":-1,"40384":-1,"40385":2684,"40386":-1,"40387":-1,"40388":2683,"40389":-1,"40390":2687,"40391":-1,"40392":-1,"40393":-1,"40394":2683,"40395":-1,"40396":-1,"40397":-1,"40398":-1,"40399":-1,"40400":-1,"40401":-1,"40402":-1,"40403":-1,"40404":-1,"40405":-1,"40406":2684,"40407":-1,"40408":-1,"40409":-1,"40410":0,"40411":-1,"40412":-1,"40413":-1,"40414":-1,"40415":-1,"40416":-1,"40417":-1,"40418":-1,"40419":-1,"40420":-1,"40421":-1,"40422":2686,"40423":-1,"40424":-1,"40425":-1,"40426":-1,"40427":-1,"40428":-1,"40429":-1,"40430":-1,"40431":0,"40432":2683,"40433":-1,"40434":2683,"40435":0,"40436":-1,"40437":-1,"40438":-1,"40439":-1,"40440":-1,"40441":-1,"40442":2684,"40443":-1,"40444":-1,"40445":-1,"40446":-1,"40447":-1,"40448":-1,"40449":2686,"40450":-1,"40451":0,"40452":-1,"40453":-1,"40454":-1,"40455":-1,"40456":-1,"40457":-1,"40458":-1,"40459":-1,"40460":-1,"40461":-1,"40462":-1,"40463":0,"40464":-1,"40465":-1,"40466":2683,"40467":-1,"40468":-1,"40469":2686,"40470":-1,"40471":-1,"40472":-1,"40473":-1,"40474":-1,"40475":0,"40476":-1,"40477":-1,"40478":2686,"40479":-1,"40480":2682,"40481":-1,"40482":-1,"40483":-1,"40484":-1,"40485":-1,"40486":-1,"40487":-1,"40488":-1,"40489":-1,"40490":-1,"40491":-1,"40492":-1,"40493":-1,"40494":-1,"40495":-1,"40496":-1,"40497":-1,"40498":2687,"40499":-1,"40500":-1,"40501":-1,"40502":2681,"40503":-1,"40504":-1,"40505":-1,"40506":-1,"40507":-1,"40508":-1,"40509":-1,"40510":-1,"40511":0,"40512":-1,"40513":-1,"40514":-1,"40515":-1,"40516":-1,"40517":-1,"40518":-1,"40519":-1,"40520":-1,"40521":-1,"40522":-1,"40523":-1,"40524":-1,"40525":-1,"40526":-1,"40527":-1,"40528":2682,"40529":-1,"40530":-1,"40531":-1,"40532":-1,"40533":-1,"40534":-1,"40535":-1,"40536":-1,"40537":-1,"40538":-1,"40539":-1,"40540":-1,"40541":-1,"40542":-1,"40543":-1,"40544":-1,"40545":-1,"40546":-1,"40547":-1,"40548":-1,"40549":-1,"40550":-1,"40551":-1,"40552":-1,"40553":-1,"40554":-1,"40555":-1,"40556":2684,"40557":-1,"40558":-1,"40559":-1,"40560":-1,"40561":-1,"40562":-1,"40563":-1,"40564":-1,"40565":2682,"40566":-1,"40567":-1,"40568":-1,"40569":0,"40570":-1,"40571":-1,"40572":-1,"40573":-1,"40574":-1,"40575":-1,"40576":-1,"40577":-1,"40578":-1,"40579":-1,"40580":2682,"40581":-1,"40582":-1,"40583":2685,"40584":-1,"40585":0,"40586":-1,"40587":-1,"40588":-1,"40589":-1,"40590":-1,"40591":2683,"40592":-1,"40593":-1,"40594":-1,"40595":2685,"40596":-1,"40597":-1,"40598":-1,"40599":-1,"40600":-1,"40601":-1,"40602":-1,"40603":-1,"40604":-1,"40605":0,"40606":-1,"40607":-1,"40608":-1,"40609":-1,"40610":-1,"40611":-1,"40612":-1,"40613":-1,"40614":-1,"40615":-1,"40616":-1,"40617":-1,"40618":0,"40619":-1,"40620":0,"40621":2682,"40622":-1,"40623":-1,"40624":-1,"40625":0,"40626":-1,"40627":-1,"40628":-1,"40629":-1,"40630":-1,"40631":-1,"40632":-1,"40633":2685,"40634":-1,"40635":-1,"40636":-1,"40637":-1,"40638":-1,"40639":-1,"40640":-1,"40641":2683,"40642":-1,"40643":-1,"40644":-1,"40645":-1,"40646":2686,"40647":-1,"40648":-1,"40649":-1,"40650":-1,"40651":0,"40652":-1,"40653":-1,"40654":-1,"40655":-1,"40656":-1,"40657":-1,"40658":-1,"40659":-1,"40660":-1,"40661":-1,"40662":-1,"40663":-1,"40664":2686,"40665":-1,"40666":-1,"40667":-1,"40668":-1,"40669":-1,"40670":-1,"40671":-1,"40672":0,"40673":-1,"40674":-1,"40675":-1,"40676":2687,"40677":-1,"40678":-1,"40679":2686,"40680":2681,"40681":-1,"40682":-1,"40683":-1,"40684":0,"40685":-1,"40686":2681,"40687":-1,"40688":-1,"40689":-1,"40690":-1,"40691":-1,"40692":-1,"40693":-1,"40694":-1,"40695":-1,"40696":0,"40697":-1,"40698":-1,"40699":-1,"40700":-1,"40701":2684,"40702":0,"40703":2684,"40704":-1,"40705":-1,"40706":-1,"40707":-1,"40708":-1,"40709":-1,"40710":-1,"40711":2683,"40712":-1,"40713":2686,"40714":-1,"40715":-1,"40716":0,"40717":-1,"40718":-1,"40719":-1,"40720":-1,"40721":-1,"40722":0,"40723":-1,"40724":-1,"40725":-1,"40726":-1,"40727":-1,"40728":2681,"40729":-1,"40730":-1,"40731":-1,"40732":-1,"40733":-1,"40734":-1,"40735":-1,"40736":-1,"40737":-1,"40738":-1,"40739":-1,"40740":-1,"40741":-1,"40742":-1,"40743":-1,"40744":-1,"40745":-1,"40746":-1,"40747":-1,"40748":-1,"40749":-1,"40750":-1,"40751":-1,"40752":2683,"40753":-1,"40754":-1,"40755":-1,"40756":-1,"40757":-1,"40758":-1,"40759":-1,"40760":0,"40761":-1,"40762":-1,"40763":-1,"40764":-1,"40765":-1,"40766":-1,"40767":-1,"40768":2682,"40769":-1,"40770":-1,"40771":-1,"40772":-1,"40773":-1,"40774":-1,"40775":2687,"40776":-1,"40777":-1,"40778":-1,"40779":-1,"40780":-1,"40781":-1,"40782":-1,"40783":-1,"40784":-1,"40785":-1,"40786":-1,"40787":-1,"40788":-1,"40789":-1,"40790":-1,"40791":-1,"40792":-1,"40793":-1,"40794":-1,"40795":-1,"40796":2687,"40797":-1,"40798":-1,"40799":-1,"40800":2683,"40801":-1,"40802":-1,"40803":2686,"40804":-1,"40805":-1,"40806":-1,"40807":-1,"40808":-1,"40809":2684,"40810":-1,"40811":-1,"40812":-1,"40813":-1,"40814":-1,"40815":-1,"40816":-1,"40817":-1,"40818":-1,"40819":-1,"40820":-1,"40821":2685,"40822":-1,"40823":-1,"40824":-1,"40825":-1,"40826":-1,"40827":-1,"40828":-1,"40829":-1,"40830":-1,"40831":-1,"40832":-1,"40833":-1,"40834":-1,"40835":-1,"40836":-1,"40837":-1,"40838":-1,"40839":-1,"40840":-1,"40841":2683,"40842":-1,"40843":2683,"40844":-1,"40845":-1,"40846":-1,"40847":-1,"40848":-1,"40849":2687,"40850":-1,"40851":2685,"40852":-1,"40853":-1,"40854":-1,"40855":2682,"40856":-1,"40857":-1,"40858":-1,"40859":-1,"40860":-1,"40861":-1,"40862":-1,"40863":-1,"40864":-1,"40865":-1,"40866":-1,"40867":-1,"40868":-1,"40869":-1,"40870":-1,"40871":-1,"40872":-1,"40873":-1,"40874":-1,"40875":-1,"40876":-1,"40877":-1,"40878":2685,"40879":-1,"40880":-1,"40881":-1,"40882":-1,"40883":-1,"40884":-1,"40885":-1,"40886":-1,"40887":-1,"40888":-1,"40889":2684,"40890":2684,"40891":-1,"40892":-1,"40893":-1,"40894":-1,"40895":2682,"40896":-1,"40897":-1,"40898":2683,"40899":-1,"40900":2686,"40901":-1,"40902":2687,"40903":-1,"40904":-1,"40905":-1,"40906":2684,"40907":0,"40908":-1,"40909":-1,"40910":-1,"40911":-1,"40912":-1,"40913":-1,"40914":-1,"40915":-1,"40916":-1,"40917":-1,"40918":-1,"40919":-1,"40920":-1,"40921":-1,"40922":-1,"40923":-1,"40924":-1,"40925":0,"40926":-1,"40927":-1,"40928":-1,"40929":-1,"40930":0,"40931":-1,"40932":-1,"40933":-1,"40934":-1,"40935":-1,"40936":2682,"40937":-1,"40938":-1,"40939":-1,"40940":-1,"40941":-1,"40942":2683,"40943":-1,"40944":-1,"40945":-1,"40946":-1,"40947":2683,"40948":2685,"40949":-1,"40950":-1,"40951":-1,"40952":-1,"40953":-1,"40954":-1,"40955":-1,"40956":-1,"40957":-1,"40958":-1,"40959":2684,"40960":-1,"40961":-1,"40962":-1,"40963":-1,"40964":-1,"40965":2683,"40966":-1,"40967":-1,"40968":-1,"40969":-1,"40970":-1,"40971":-1,"40972":2687,"40973":-1,"40974":-1,"40975":2684,"40976":-1,"40977":-1,"40978":-1,"40979":-1,"40980":-1,"40981":-1,"40982":-1,"40983":-1,"40984":-1,"40985":-1,"40986":-1,"40987":0,"40988":-1,"40989":0,"40990":-1,"40991":-1,"40992":-1,"40993":-1,"40994":-1,"40995":-1,"40996":-1,"40997":-1,"40998":-1,"40999":-1,"41000":-1,"41001":-1,"41002":-1,"41003":-1,"41004":-1,"41005":-1,"41006":-1,"41007":2686,"41008":0,"41009":-1,"41010":-1,"41011":-1,"41012":-1,"41013":-1,"41014":-1,"41015":-1,"41016":2687,"41017":-1,"41018":-1,"41019":-1,"41020":-1,"41021":-1,"41022":0,"41023":-1,"41024":2682,"41025":-1,"41026":-1,"41027":-1,"41028":-1,"41029":-1,"41030":-1,"41031":-1,"41032":-1,"41033":-1,"41034":-1,"41035":-1,"41036":-1,"41037":-1,"41038":-1,"41039":0,"41040":-1,"41041":-1,"41042":-1,"41043":-1,"41044":-1,"41045":-1,"41046":-1,"41047":-1,"41048":-1,"41049":-1,"41050":-1,"41051":-1,"41052":-1,"41053":-1,"41054":2684,"41055":-1,"41056":-1,"41057":-1,"41058":-1,"41059":-1,"41060":-1,"41061":-1,"41062":2682,"41063":0,"41064":-1,"41065":-1,"41066":-1,"41067":-1,"41068":2686,"41069":-1,"41070":-1,"41071":2682,"41072":2685,"41073":-1,"41074":-1,"41075":-1,"41076":2687,"41077":-1,"41078":-1,"41079":-1,"41080":-1,"41081":-1,"41082":-1,"41083":-1,"41084":-1,"41085":-1,"41086":-1,"41087":-1,"41088":-1,"41089":-1,"41090":-1,"41091":-1,"41092":2684,"41093":-1,"41094":-1,"41095":-1,"41096":-1,"41097":-1,"41098":-1,"41099":-1,"41100":-1,"41101":-1,"41102":-1,"41103":-1,"41104":-1,"41105":-1,"41106":2684,"41107":2684,"41108":-1,"41109":-1,"41110":-1,"41111":-1,"41112":-1,"41113":-1,"41114":-1,"41115":-1,"41116":-1,"41117":-1,"41118":-1,"41119":-1,"41120":-1,"41121":-1,"41122":-1,"41123":-1,"41124":2687,"41125":2684,"41126":-1,"41127":-1,"41128":2687,"41129":2684,"41130":2683,"41131":-1,"41132":-1,"41133":-1,"41134":-1,"41135":-1,"41136":-1,"41137":-1,"41138":-1,"41139":0,"41140":-1,"41141":-1,"41142":-1,"41143":-1,"41144":-1,"41145":2683,"41146":-1,"41147":-1,"41148":-1,"41149":-1,"41150":-1,"41151":-1,"41152":-1,"41153":-1,"41154":0,"41155":-1,"41156":-1,"41157":-1,"41158":-1,"41159":0,"41160":-1,"41161":-1,"41162":-1,"41163":2682,"41164":-1,"41165":-1,"41166":-1,"41167":-1,"41168":2685,"41169":-1,"41170":2686,"41171":2685,"41172":-1,"41173":-1,"41174":-1,"41175":-1,"41176":2684,"41177":2682,"41178":-1,"41179":-1,"41180":-1,"41181":-1,"41182":-1,"41183":-1,"41184":-1,"41185":-1,"41186":-1,"41187":-1,"41188":2682,"41189":-1,"41190":0,"41191":2684,"41192":0,"41193":-1,"41194":-1,"41195":-1,"41196":-1,"41197":-1,"41198":-1,"41199":-1,"41200":-1,"41201":-1,"41202":-1,"41203":-1,"41204":-1,"41205":-1,"41206":-1,"41207":-1,"41208":-1,"41209":0,"41210":-1,"41211":-1,"41212":-1,"41213":-1,"41214":-1,"41215":-1,"41216":-1,"41217":0,"41218":-1,"41219":0,"41220":-1,"41221":-1,"41222":-1,"41223":2682,"41224":-1,"41225":-1,"41226":-1,"41227":-1,"41228":-1,"41229":-1,"41230":-1,"41231":-1,"41232":-1,"41233":0,"41234":-1,"41235":-1,"41236":-1,"41237":-1,"41238":-1,"41239":-1,"41240":-1,"41241":-1,"41242":-1,"41243":2685,"41244":-1,"41245":2685,"41246":-1,"41247":-1,"41248":-1,"41249":0,"41250":-1,"41251":-1,"41252":2684,"41253":-1,"41254":-1,"41255":-1,"41256":-1,"41257":2681,"41258":-1,"41259":-1,"41260":-1,"41261":-1,"41262":-1,"41263":-1,"41264":2685,"41265":0,"41266":-1,"41267":-1,"41268":-1,"41269":-1,"41270":-1,"41271":-1,"41272":-1,"41273":-1,"41274":-1,"41275":-1,"41276":-1,"41277":-1,"41278":-1,"41279":-1,"41280":-1,"41281":2684,"41282":-1,"41283":2682,"41284":2684,"41285":-1,"41286":-1,"41287":-1,"41288":0,"41289":2687,"41290":-1,"41291":-1,"41292":-1,"41293":-1,"41294":-1,"41295":-1,"41296":-1,"41297":-1,"41298":-1,"41299":-1,"41300":-1,"41301":-1,"41302":-1,"41303":-1,"41304":2684,"41305":0,"41306":-1,"41307":2683,"41308":2687,"41309":-1,"41310":2685,"41311":-1,"41312":-1,"41313":-1,"41314":-1,"41315":-1,"41316":-1,"41317":-1,"41318":-1,"41319":2684,"41320":-1,"41321":-1,"41322":-1,"41323":-1,"41324":-1,"41325":-1,"41326":-1,"41327":0,"41328":-1,"41329":-1,"41330":-1,"41331":-1,"41332":-1,"41333":-1,"41334":0,"41335":-1,"41336":-1,"41337":-1,"41338":-1,"41339":0,"41340":-1,"41341":-1,"41342":-1,"41343":-1,"41344":2684,"41345":-1,"41346":-1,"41347":-1,"41348":-1,"41349":-1,"41350":-1,"41351":-1,"41352":-1,"41353":-1,"41354":-1,"41355":-1,"41356":-1,"41357":-1,"41358":-1,"41359":-1,"41360":-1,"41361":-1,"41362":-1,"41363":-1,"41364":-1,"41365":-1,"41366":-1,"41367":0,"41368":-1,"41369":-1,"41370":-1,"41371":-1,"41372":-1,"41373":-1,"41374":-1,"41375":2681,"41376":-1,"41377":-1,"41378":2684,"41379":-1,"41380":-1,"41381":-1,"41382":-1,"41383":-1,"41384":2684,"41385":-1,"41386":2681,"41387":-1,"41388":-1,"41389":-1,"41390":-1,"41391":-1,"41392":2686,"41393":-1,"41394":-1,"41395":-1,"41396":-1,"41397":0,"41398":-1,"41399":-1,"41400":2684,"41401":-1,"41402":-1,"41403":-1,"41404":0,"41405":-1,"41406":-1,"41407":-1,"41408":-1,"41409":-1,"41410":-1,"41411":-1,"41412":-1,"41413":2686,"41414":-1,"41415":-1,"41416":-1,"41417":2683,"41418":2684,"41419":-1,"41420":-1,"41421":-1,"41422":-1,"41423":-1,"41424":-1,"41425":-1,"41426":-1,"41427":-1,"41428":-1,"41429":-1,"41430":-1,"41431":-1,"41432":-1,"41433":2685,"41434":-1,"41435":-1,"41436":-1,"41437":-1,"41438":-1,"41439":-1,"41440":-1,"41441":-1,"41442":2685,"41443":-1,"41444":2685,"41445":-1,"41446":-1,"41447":-1,"41448":-1,"41449":2682,"41450":-1,"41451":-1,"41452":-1,"41453":-1,"41454":-1,"41455":-1,"41456":-1,"41457":-1,"41458":-1,"41459":-1,"41460":0,"41461":-1,"41462":-1,"41463":-1,"41464":-1,"41465":-1,"41466":-1,"41467":-1,"41468":-1,"41469":2685,"41470":-1,"41471":-1,"41472":-1,"41473":2683,"41474":-1,"41475":-1,"41476":-1,"41477":-1,"41478":-1,"41479":-1,"41480":-1,"41481":-1,"41482":-1,"41483":-1,"41484":-1,"41485":-1,"41486":-1,"41487":-1,"41488":0,"41489":-1,"41490":-1,"41491":-1,"41492":-1,"41493":-1,"41494":-1,"41495":-1,"41496":-1,"41497":-1,"41498":-1,"41499":-1,"41500":-1,"41501":2681,"41502":-1,"41503":-1,"41504":-1,"41505":-1,"41506":-1,"41507":-1,"41508":-1,"41509":-1,"41510":-1,"41511":-1,"41512":-1,"41513":2684,"41514":-1,"41515":-1,"41516":-1,"41517":-1,"41518":-1,"41519":-1,"41520":-1,"41521":-1,"41522":-1,"41523":-1,"41524":-1,"41525":2686,"41526":-1,"41527":2686,"41528":-1,"41529":-1,"41530":-1,"41531":-1,"41532":-1,"41533":2682,"41534":-1,"41535":-1,"41536":-1,"41537":-1,"41538":-1,"41539":-1,"41540":-1,"41541":-1,"41542":-1,"41543":-1,"41544":-1,"41545":-1,"41546":2686,"41547":2684,"41548":-1,"41549":-1,"41550":-1,"41551":-1,"41552":-1,"41553":2687,"41554":-1,"41555":-1,"41556":-1,"41557":-1,"41558":-1,"41559":-1,"41560":2682,"41561":-1,"41562":2682,"41563":-1,"41564":-1,"41565":2686,"41566":-1,"41567":-1,"41568":-1,"41569":-1,"41570":-1,"41571":-1,"41572":-1,"41573":-1,"41574":-1,"41575":-1,"41576":-1,"41577":0,"41578":-1,"41579":-1,"41580":-1,"41581":2683,"41582":-1,"41583":2686,"41584":-1,"41585":2685,"41586":-1,"41587":-1,"41588":-1,"41589":-1,"41590":2682,"41591":2681,"41592":2684,"41593":-1,"41594":-1,"41595":-1,"41596":-1,"41597":-1,"41598":-1,"41599":2684,"41600":-1,"41601":-1,"41602":-1,"41603":-1,"41604":2683,"41605":-1,"41606":-1,"41607":-1,"41608":2682,"41609":-1,"41610":2686,"41611":-1,"41612":-1,"41613":-1,"41614":-1,"41615":-1,"41616":-1,"41617":-1,"41618":-1,"41619":-1,"41620":-1,"41621":-1,"41622":-1,"41623":-1,"41624":-1,"41625":-1,"41626":-1,"41627":0,"41628":-1,"41629":2687,"41630":-1,"41631":2684,"41632":-1,"41633":-1,"41634":-1,"41635":2685,"41636":-1,"41637":-1,"41638":-1,"41639":-1,"41640":-1,"41641":-1,"41642":-1,"41643":-1,"41644":2685,"41645":-1,"41646":-1,"41647":-1,"41648":-1,"41649":-1,"41650":-1,"41651":2682,"41652":-1,"41653":-1,"41654":-1,"41655":2684,"41656":2682,"41657":-1,"41658":-1,"41659":-1,"41660":-1,"41661":-1,"41662":-1,"41663":-1,"41664":-1,"41665":0,"41666":-1,"41667":-1,"41668":-1,"41669":2687,"41670":-1,"41671":-1,"41672":2684,"41673":2682,"41674":-1,"41675":2682,"41676":-1,"41677":-1,"41678":-1,"41679":-1,"41680":2683,"41681":-1,"41682":-1,"41683":-1,"41684":-1,"41685":-1,"41686":-1,"41687":-1,"41688":-1,"41689":-1,"41690":-1,"41691":-1,"41692":2684,"41693":-1,"41694":-1,"41695":-1,"41696":-1,"41697":-1,"41698":-1,"41699":-1,"41700":-1,"41701":-1,"41702":-1,"41703":-1,"41704":2686,"41705":-1,"41706":-1,"41707":-1,"41708":-1,"41709":-1,"41710":-1,"41711":-1,"41712":-1,"41713":2686,"41714":-1,"41715":-1,"41716":-1,"41717":-1,"41718":-1,"41719":2687,"41720":-1,"41721":-1,"41722":-1,"41723":-1,"41724":-1,"41725":-1,"41726":-1,"41727":-1,"41728":-1,"41729":-1,"41730":-1,"41731":-1,"41732":2685,"41733":-1,"41734":-1,"41735":-1,"41736":-1,"41737":-1,"41738":-1,"41739":2682,"41740":-1,"41741":-1,"41742":-1,"41743":-1,"41744":0,"41745":-1,"41746":0,"41747":-1,"41748":-1,"41749":-1,"41750":0,"41751":-1,"41752":-1,"41753":-1,"41754":-1,"41755":0,"41756":-1,"41757":-1,"41758":-1,"41759":-1,"41760":-1,"41761":-1,"41762":-1,"41763":-1,"41764":-1,"41765":2681,"41766":-1,"41767":-1,"41768":-1,"41769":-1,"41770":-1,"41771":2683,"41772":-1,"41773":-1,"41774":-1,"41775":-1,"41776":-1,"41777":-1,"41778":-1,"41779":-1,"41780":2685,"41781":-1,"41782":-1,"41783":-1,"41784":-1,"41785":-1,"41786":-1,"41787":-1,"41788":-1,"41789":-1,"41790":-1,"41791":-1,"41792":-1,"41793":-1,"41794":-1,"41795":-1,"41796":-1,"41797":-1,"41798":-1,"41799":-1,"41800":-1,"41801":-1,"41802":-1,"41803":-1,"41804":-1,"41805":-1,"41806":-1,"41807":-1,"41808":2683,"41809":-1,"41810":2686,"41811":-1,"41812":-1,"41813":-1,"41814":-1,"41815":-1,"41816":-1,"41817":-1,"41818":-1,"41819":-1,"41820":-1,"41821":-1,"41822":-1,"41823":-1,"41824":-1,"41825":0,"41826":-1,"41827":-1,"41828":-1,"41829":-1,"41830":-1,"41831":0,"41832":-1,"41833":-1,"41834":-1,"41835":0,"41836":-1,"41837":-1,"41838":-1,"41839":-1,"41840":-1,"41841":-1,"41842":-1,"41843":-1,"41844":2681,"41845":-1,"41846":-1,"41847":-1,"41848":-1,"41849":-1,"41850":2685,"41851":2684,"41852":2686,"41853":2684,"41854":-1,"41855":2685,"41856":-1,"41857":-1,"41858":-1,"41859":-1,"41860":-1,"41861":-1,"41862":-1,"41863":-1,"41864":-1,"41865":-1,"41866":2686,"41867":-1,"41868":-1,"41869":-1,"41870":-1,"41871":-1,"41872":-1,"41873":-1,"41874":2684,"41875":-1,"41876":-1,"41877":-1,"41878":-1,"41879":-1,"41880":-1,"41881":-1,"41882":-1,"41883":-1,"41884":-1,"41885":-1,"41886":-1,"41887":-1,"41888":-1,"41889":-1,"41890":-1,"41891":-1,"41892":-1,"41893":-1,"41894":-1,"41895":-1,"41896":-1,"41897":-1,"41898":-1,"41899":-1,"41900":-1,"41901":-1,"41902":-1,"41903":2682,"41904":-1,"41905":-1,"41906":-1,"41907":-1,"41908":-1,"41909":-1,"41910":-1,"41911":0,"41912":-1,"41913":-1,"41914":-1,"41915":-1,"41916":2681,"41917":-1,"41918":-1,"41919":-1,"41920":-1,"41921":0,"41922":-1,"41923":-1,"41924":2684,"41925":2683,"41926":-1,"41927":0,"41928":-1,"41929":-1,"41930":-1,"41931":2686,"41932":-1,"41933":-1,"41934":0,"41935":-1,"41936":-1,"41937":-1,"41938":-1,"41939":-1,"41940":-1,"41941":-1,"41942":-1,"41943":-1,"41944":-1,"41945":2683,"41946":-1,"41947":-1,"41948":2687,"41949":-1,"41950":-1,"41951":2686,"41952":-1,"41953":-1,"41954":-1,"41955":-1,"41956":-1,"41957":-1,"41958":-1,"41959":-1,"41960":-1,"41961":-1,"41962":-1,"41963":-1,"41964":-1,"41965":-1,"41966":-1,"41967":0,"41968":-1,"41969":-1,"41970":-1,"41971":-1,"41972":-1,"41973":-1,"41974":-1,"41975":-1,"41976":-1,"41977":-1,"41978":-1,"41979":-1,"41980":-1,"41981":-1,"41982":-1,"41983":2685,"41984":-1,"41985":0,"41986":-1,"41987":-1,"41988":-1,"41989":-1,"41990":-1,"41991":-1,"41992":-1,"41993":-1,"41994":-1,"41995":-1,"41996":-1,"41997":2682,"41998":-1,"41999":2681,"42000":-1,"42001":-1,"42002":-1,"42003":-1,"42004":-1,"42005":-1,"42006":-1,"42007":-1,"42008":-1,"42009":-1,"42010":0,"42011":-1,"42012":-1,"42013":-1,"42014":-1,"42015":-1,"42016":-1,"42017":-1,"42018":-1,"42019":0,"42020":-1,"42021":-1,"42022":-1,"42023":-1,"42024":-1,"42025":2685,"42026":-1,"42027":2683,"42028":-1,"42029":-1,"42030":0,"42031":-1,"42032":-1,"42033":-1,"42034":-1,"42035":-1,"42036":-1,"42037":-1,"42038":-1,"42039":-1,"42040":-1,"42041":-1,"42042":-1,"42043":0,"42044":-1,"42045":-1,"42046":-1,"42047":2686,"42048":-1,"42049":-1,"42050":-1,"42051":-1,"42052":-1,"42053":-1,"42054":-1,"42055":-1,"42056":-1,"42057":0,"42058":2682,"42059":-1,"42060":-1,"42061":-1,"42062":-1,"42063":-1,"42064":-1,"42065":-1,"42066":2684,"42067":-1,"42068":-1,"42069":-1,"42070":2687,"42071":-1,"42072":-1,"42073":-1,"42074":-1,"42075":-1,"42076":-1,"42077":-1,"42078":2685,"42079":2685,"42080":-1,"42081":-1,"42082":-1,"42083":-1,"42084":-1,"42085":-1,"42086":-1,"42087":-1,"42088":-1,"42089":-1,"42090":-1,"42091":-1,"42092":-1,"42093":-1,"42094":-1,"42095":-1,"42096":-1,"42097":2686,"42098":-1,"42099":2682,"42100":-1,"42101":-1,"42102":-1,"42103":-1,"42104":-1,"42105":-1,"42106":-1,"42107":-1,"42108":-1,"42109":0,"42110":-1,"42111":-1,"42112":-1,"42113":0,"42114":-1,"42115":-1,"42116":-1,"42117":-1,"42118":-1,"42119":2682,"42120":-1,"42121":-1,"42122":-1,"42123":-1,"42124":2682,"42125":-1,"42126":-1,"42127":-1,"42128":2685,"42129":-1,"42130":0,"42131":-1,"42132":-1,"42133":-1,"42134":-1,"42135":-1,"42136":-1,"42137":-1,"42138":-1,"42139":-1,"42140":2684,"42141":2685,"42142":-1,"42143":0,"42144":-1,"42145":-1,"42146":-1,"42147":2682,"42148":-1,"42149":-1,"42150":2685,"42151":-1,"42152":2683,"42153":-1,"42154":-1,"42155":2681,"42156":-1,"42157":2685,"42158":-1,"42159":2682,"42160":-1,"42161":-1,"42162":-1,"42163":-1,"42164":-1,"42165":-1,"42166":-1,"42167":2684,"42168":-1,"42169":-1,"42170":-1,"42171":-1,"42172":-1,"42173":-1,"42174":-1,"42175":-1,"42176":2684,"42177":-1,"42178":-1,"42179":-1,"42180":-1,"42181":2684,"42182":-1,"42183":-1,"42184":-1,"42185":-1,"42186":-1,"42187":-1,"42188":-1,"42189":-1,"42190":-1,"42191":-1,"42192":-1,"42193":-1,"42194":-1,"42195":-1,"42196":-1,"42197":-1,"42198":-1,"42199":-1,"42200":-1,"42201":-1,"42202":-1,"42203":-1,"42204":-1,"42205":0,"42206":-1,"42207":-1,"42208":-1,"42209":-1,"42210":-1,"42211":-1,"42212":-1,"42213":-1,"42214":-1,"42215":-1,"42216":-1,"42217":-1,"42218":-1,"42219":-1,"42220":0,"42221":-1,"42222":-1,"42223":-1,"42224":-1,"42225":-1,"42226":-1,"42227":-1,"42228":-1,"42229":2681,"42230":-1,"42231":-1,"42232":-1,"42233":2681,"42234":-1,"42235":0,"42236":-1,"42237":-1,"42238":-1,"42239":-1,"42240":-1,"42241":-1,"42242":-1,"42243":-1,"42244":-1,"42245":2681,"42246":2682,"42247":-1,"42248":-1,"42249":-1,"42250":-1,"42251":-1,"42252":-1,"42253":-1,"42254":-1,"42255":-1,"42256":-1,"42257":-1,"42258":2684,"42259":-1,"42260":-1,"42261":-1,"42262":-1,"42263":-1,"42264":-1,"42265":0,"42266":-1,"42267":-1,"42268":-1,"42269":-1,"42270":-1,"42271":-1,"42272":-1,"42273":-1,"42274":-1,"42275":-1,"42276":-1,"42277":-1,"42278":-1,"42279":-1,"42280":-1,"42281":-1,"42282":-1,"42283":-1,"42284":-1,"42285":-1,"42286":-1,"42287":-1,"42288":-1,"42289":-1,"42290":-1,"42291":-1,"42292":-1,"42293":-1,"42294":-1,"42295":-1,"42296":-1,"42297":-1,"42298":-1,"42299":-1,"42300":-1,"42301":-1,"42302":-1,"42303":-1,"42304":-1,"42305":-1,"42306":2686,"42307":2684,"42308":-1,"42309":2684,"42310":-1,"42311":-1,"42312":-1,"42313":2682,"42314":-1,"42315":-1,"42316":-1,"42317":-1,"42318":-1,"42319":-1,"42320":2686,"42321":-1,"42322":-1,"42323":0,"42324":-1,"42325":-1,"42326":-1,"42327":-1,"42328":-1,"42329":-1,"42330":-1,"42331":2684,"42332":-1,"42333":-1,"42334":-1,"42335":-1,"42336":-1,"42337":-1,"42338":-1,"42339":-1,"42340":-1,"42341":-1,"42342":2682,"42343":0,"42344":-1,"42345":-1,"42346":0,"42347":-1,"42348":-1,"42349":-1,"42350":-1,"42351":-1,"42352":-1,"42353":-1,"42354":2682,"42355":-1,"42356":-1,"42357":2685,"42358":2683,"42359":-1,"42360":-1,"42361":-1,"42362":-1,"42363":-1,"42364":-1,"42365":-1,"42366":-1,"42367":-1,"42368":-1,"42369":-1,"42370":-1,"42371":-1,"42372":-1,"42373":0,"42374":-1,"42375":-1,"42376":-1,"42377":2684,"42378":-1,"42379":-1,"42380":-1,"42381":-1,"42382":-1,"42383":-1,"42384":-1,"42385":-1,"42386":-1,"42387":-1,"42388":-1,"42389":-1,"42390":2684,"42391":2687,"42392":-1,"42393":-1,"42394":-1,"42395":-1,"42396":-1,"42397":-1,"42398":-1,"42399":-1,"42400":-1,"42401":-1,"42402":-1,"42403":-1,"42404":-1,"42405":-1,"42406":-1,"42407":-1,"42408":-1,"42409":-1,"42410":-1,"42411":2686,"42412":-1,"42413":-1,"42414":-1,"42415":-1,"42416":-1,"42417":-1,"42418":-1,"42419":2687,"42420":-1,"42421":-1,"42422":-1,"42423":-1,"42424":-1,"42425":-1,"42426":-1,"42427":-1,"42428":2684,"42429":-1,"42430":-1,"42431":-1,"42432":-1,"42433":-1,"42434":-1,"42435":-1,"42436":-1,"42437":-1,"42438":2686,"42439":-1,"42440":-1,"42441":2682,"42442":-1,"42443":-1,"42444":2683,"42445":-1,"42446":-1,"42447":-1,"42448":2683,"42449":-1,"42450":-1,"42451":-1,"42452":-1,"42453":-1,"42454":-1,"42455":-1,"42456":-1,"42457":-1,"42458":2683,"42459":-1,"42460":-1,"42461":-1,"42462":-1,"42463":-1,"42464":-1,"42465":-1,"42466":-1,"42467":-1,"42468":-1,"42469":-1,"42470":2686,"42471":-1,"42472":-1,"42473":2686,"42474":-1,"42475":-1,"42476":-1,"42477":-1,"42478":-1,"42479":0,"42480":-1,"42481":-1,"42482":-1,"42483":-1,"42484":-1,"42485":-1,"42486":-1,"42487":2686,"42488":-1,"42489":-1,"42490":-1,"42491":-1,"42492":-1,"42493":-1,"42494":-1,"42495":-1,"42496":2686,"42497":-1,"42498":-1,"42499":-1,"42500":-1,"42501":-1,"42502":2682,"42503":-1,"42504":-1,"42505":-1,"42506":-1,"42507":-1,"42508":2684,"42509":-1,"42510":-1,"42511":-1,"42512":-1,"42513":2682,"42514":-1,"42515":-1,"42516":-1,"42517":-1,"42518":-1,"42519":-1,"42520":-1,"42521":-1,"42522":-1,"42523":2683,"42524":-1,"42525":-1,"42526":-1,"42527":-1,"42528":-1,"42529":0,"42530":2681,"42531":-1,"42532":-1,"42533":-1,"42534":-1,"42535":-1,"42536":-1,"42537":-1,"42538":-1,"42539":-1,"42540":2683,"42541":-1,"42542":2683,"42543":-1,"42544":-1,"42545":-1,"42546":-1,"42547":-1,"42548":-1,"42549":-1,"42550":-1,"42551":-1,"42552":-1,"42553":-1,"42554":-1,"42555":0,"42556":-1,"42557":-1,"42558":-1,"42559":-1,"42560":-1,"42561":-1,"42562":-1,"42563":-1,"42564":-1,"42565":-1,"42566":-1,"42567":-1,"42568":-1,"42569":-1,"42570":-1,"42571":-1,"42572":-1,"42573":0,"42574":-1,"42575":-1,"42576":2681,"42577":-1,"42578":-1,"42579":-1,"42580":-1,"42581":-1,"42582":-1,"42583":-1,"42584":-1,"42585":-1,"42586":-1,"42587":-1,"42588":-1,"42589":-1,"42590":-1,"42591":-1,"42592":-1,"42593":2684,"42594":-1,"42595":-1,"42596":2686,"42597":-1,"42598":-1,"42599":-1,"42600":-1,"42601":-1,"42602":-1,"42603":-1,"42604":-1,"42605":0,"42606":-1,"42607":-1,"42608":-1,"42609":-1,"42610":-1,"42611":-1,"42612":-1,"42613":-1,"42614":-1,"42615":-1,"42616":-1,"42617":-1,"42618":-1,"42619":-1,"42620":-1,"42621":-1,"42622":-1,"42623":-1,"42624":-1,"42625":-1,"42626":-1,"42627":-1,"42628":-1,"42629":-1,"42630":-1,"42631":-1,"42632":-1,"42633":0,"42634":-1,"42635":-1,"42636":2685,"42637":-1,"42638":-1,"42639":-1,"42640":-1,"42641":-1,"42642":-1,"42643":-1,"42644":-1,"42645":-1,"42646":2685,"42647":-1,"42648":-1,"42649":-1,"42650":2682,"42651":-1,"42652":-1,"42653":-1,"42654":-1,"42655":-1,"42656":-1,"42657":-1,"42658":-1,"42659":-1,"42660":-1,"42661":-1,"42662":-1,"42663":-1,"42664":-1,"42665":-1,"42666":2683,"42667":-1,"42668":-1,"42669":0,"42670":-1,"42671":-1,"42672":2687,"42673":2686,"42674":-1,"42675":-1,"42676":-1,"42677":-1,"42678":-1,"42679":-1,"42680":-1,"42681":-1,"42682":-1,"42683":-1,"42684":-1,"42685":-1,"42686":-1,"42687":-1,"42688":-1,"42689":-1,"42690":-1,"42691":-1,"42692":-1,"42693":-1,"42694":-1,"42695":-1,"42696":-1,"42697":-1,"42698":-1,"42699":-1,"42700":-1,"42701":-1,"42702":-1,"42703":-1,"42704":2681,"42705":2686,"42706":-1,"42707":-1,"42708":-1,"42709":-1,"42710":-1,"42711":-1,"42712":-1,"42713":-1,"42714":-1,"42715":-1,"42716":-1,"42717":-1,"42718":-1,"42719":-1,"42720":-1,"42721":-1,"42722":2687,"42723":-1,"42724":0,"42725":-1,"42726":-1,"42727":2684,"42728":-1,"42729":2681,"42730":-1,"42731":-1,"42732":2685,"42733":-1,"42734":-1,"42735":-1,"42736":-1,"42737":-1,"42738":-1,"42739":-1,"42740":-1,"42741":0,"42742":-1,"42743":-1,"42744":-1,"42745":-1,"42746":-1,"42747":2685,"42748":-1,"42749":-1,"42750":-1,"42751":2683,"42752":-1,"42753":-1,"42754":-1,"42755":-1,"42756":-1,"42757":-1,"42758":2686,"42759":-1,"42760":-1,"42761":-1,"42762":-1,"42763":2685,"42764":-1,"42765":-1,"42766":-1,"42767":-1,"42768":-1,"42769":-1,"42770":-1,"42771":-1,"42772":-1,"42773":-1,"42774":-1,"42775":-1,"42776":-1,"42777":-1,"42778":-1,"42779":-1,"42780":-1,"42781":2686,"42782":-1,"42783":-1,"42784":-1,"42785":2686,"42786":-1,"42787":-1,"42788":-1,"42789":-1,"42790":-1,"42791":2681,"42792":-1,"42793":-1,"42794":2682,"42795":-1,"42796":-1,"42797":-1,"42798":-1,"42799":-1,"42800":-1,"42801":-1,"42802":-1,"42803":-1,"42804":-1,"42805":-1,"42806":2687,"42807":2684,"42808":-1,"42809":-1,"42810":-1,"42811":-1,"42812":0,"42813":-1,"42814":-1,"42815":2687,"42816":-1,"42817":2686,"42818":-1,"42819":-1,"42820":-1,"42821":2685,"42822":-1,"42823":-1,"42824":-1,"42825":-1,"42826":-1,"42827":-1,"42828":2686,"42829":-1,"42830":-1,"42831":0,"42832":-1,"42833":-1,"42834":-1,"42835":-1,"42836":-1,"42837":-1,"42838":-1,"42839":-1,"42840":-1,"42841":2685,"42842":-1,"42843":-1,"42844":2683,"42845":2681,"42846":-1,"42847":-1,"42848":-1,"42849":-1,"42850":-1,"42851":-1,"42852":-1,"42853":0,"42854":-1,"42855":-1,"42856":-1,"42857":-1,"42858":-1,"42859":-1,"42860":-1,"42861":-1,"42862":-1,"42863":0,"42864":-1,"42865":-1,"42866":2686,"42867":-1,"42868":-1,"42869":-1,"42870":-1,"42871":-1,"42872":-1,"42873":-1,"42874":2683,"42875":-1,"42876":2686,"42877":2682,"42878":-1,"42879":0,"42880":-1,"42881":-1,"42882":-1,"42883":-1,"42884":-1,"42885":-1,"42886":-1,"42887":-1,"42888":-1,"42889":-1,"42890":-1,"42891":-1,"42892":2685,"42893":2685,"42894":-1,"42895":-1,"42896":-1,"42897":-1,"42898":-1,"42899":-1,"42900":-1,"42901":-1,"42902":-1,"42903":-1,"42904":-1,"42905":-1,"42906":-1,"42907":-1,"42908":-1,"42909":-1,"42910":-1,"42911":-1,"42912":-1,"42913":-1,"42914":2685,"42915":-1,"42916":-1,"42917":-1,"42918":-1,"42919":-1,"42920":-1,"42921":-1,"42922":-1,"42923":-1,"42924":-1,"42925":-1,"42926":-1,"42927":2685,"42928":0,"42929":-1,"42930":-1,"42931":-1,"42932":-1,"42933":-1,"42934":-1,"42935":-1,"42936":-1,"42937":2684,"42938":-1,"42939":-1,"42940":-1,"42941":-1,"42942":-1,"42943":-1,"42944":-1,"42945":-1,"42946":-1,"42947":-1,"42948":2684,"42949":-1,"42950":-1,"42951":-1,"42952":2686,"42953":-1,"42954":2682,"42955":-1,"42956":-1,"42957":-1,"42958":-1,"42959":-1,"42960":-1,"42961":-1,"42962":-1,"42963":0,"42964":-1,"42965":-1,"42966":-1,"42967":-1,"42968":-1,"42969":2683,"42970":-1,"42971":0,"42972":-1,"42973":-1,"42974":-1,"42975":-1,"42976":0,"42977":0,"42978":-1,"42979":-1,"42980":0,"42981":-1,"42982":-1,"42983":-1,"42984":-1,"42985":-1,"42986":2685,"42987":-1,"42988":-1,"42989":-1,"42990":-1,"42991":-1,"42992":-1,"42993":0,"42994":-1,"42995":2682,"42996":2686,"42997":-1,"42998":-1,"42999":2685,"43000":-1,"43001":-1,"43002":-1,"43003":-1,"43004":-1,"43005":2685,"43006":-1,"43007":-1,"43008":-1,"43009":-1,"43010":-1,"43011":2685,"43012":-1,"43013":-1,"43014":-1,"43015":2682,"43016":-1,"43017":-1,"43018":-1,"43019":-1,"43020":-1,"43021":-1,"43022":-1,"43023":0,"43024":-1,"43025":-1,"43026":-1,"43027":-1,"43028":-1,"43029":-1,"43030":-1,"43031":-1,"43032":-1,"43033":-1,"43034":-1,"43035":0,"43036":2682,"43037":2682,"43038":2686,"43039":-1,"43040":-1,"43041":-1,"43042":-1,"43043":2686,"43044":-1,"43045":-1,"43046":-1,"43047":-1,"43048":-1,"43049":-1,"43050":2682,"43051":-1,"43052":-1,"43053":-1,"43054":-1,"43055":2682,"43056":2683,"43057":-1,"43058":2683,"43059":-1,"43060":0,"43061":-1,"43062":-1,"43063":2686,"43064":-1,"43065":-1,"43066":-1,"43067":-1,"43068":-1,"43069":-1,"43070":-1,"43071":-1,"43072":2686,"43073":0,"43074":-1,"43075":0,"43076":-1,"43077":-1,"43078":-1,"43079":-1,"43080":-1,"43081":-1,"43082":2686,"43083":-1,"43084":-1,"43085":-1,"43086":-1,"43087":-1,"43088":-1,"43089":-1,"43090":2686,"43091":-1,"43092":-1,"43093":2682,"43094":-1,"43095":-1,"43096":-1,"43097":-1,"43098":-1,"43099":-1,"43100":-1,"43101":-1,"43102":-1,"43103":-1,"43104":-1,"43105":-1,"43106":-1,"43107":-1,"43108":-1,"43109":-1,"43110":-1,"43111":-1,"43112":2685,"43113":2684,"43114":-1,"43115":-1,"43116":2684,"43117":-1,"43118":-1,"43119":-1,"43120":-1,"43121":-1,"43122":-1,"43123":-1,"43124":-1,"43125":-1,"43126":2686,"43127":-1,"43128":-1,"43129":-1,"43130":-1,"43131":2684,"43132":-1,"43133":-1,"43134":-1,"43135":-1,"43136":-1,"43137":-1,"43138":-1,"43139":-1,"43140":-1,"43141":-1,"43142":-1,"43143":-1,"43144":-1,"43145":-1,"43146":0,"43147":-1,"43148":-1,"43149":-1,"43150":2685,"43151":-1,"43152":-1,"43153":2681,"43154":-1,"43155":-1,"43156":2687,"43157":-1,"43158":-1,"43159":-1,"43160":2682,"43161":-1,"43162":2684,"43163":-1,"43164":-1,"43165":-1,"43166":-1,"43167":-1,"43168":-1,"43169":-1,"43170":-1,"43171":-1,"43172":-1,"43173":-1,"43174":-1,"43175":2687,"43176":-1,"43177":-1,"43178":-1,"43179":-1,"43180":-1,"43181":2683,"43182":2685,"43183":2684,"43184":-1,"43185":0,"43186":-1,"43187":-1,"43188":-1,"43189":-1,"43190":-1,"43191":-1,"43192":-1,"43193":-1,"43194":-1,"43195":-1,"43196":-1,"43197":-1,"43198":-1,"43199":-1,"43200":-1,"43201":-1,"43202":-1,"43203":-1,"43204":-1,"43205":-1,"43206":-1,"43207":-1,"43208":-1,"43209":-1,"43210":-1,"43211":-1,"43212":-1,"43213":-1,"43214":-1,"43215":-1,"43216":-1,"43217":-1,"43218":-1,"43219":-1,"43220":-1,"43221":-1,"43222":-1,"43223":-1,"43224":-1,"43225":-1,"43226":-1,"43227":0,"43228":-1,"43229":-1,"43230":-1,"43231":-1,"43232":-1,"43233":-1,"43234":-1,"43235":-1,"43236":-1,"43237":-1,"43238":-1,"43239":-1,"43240":2684,"43241":-1,"43242":-1,"43243":-1,"43244":-1,"43245":-1,"43246":2681,"43247":-1,"43248":2685,"43249":-1,"43250":-1,"43251":-1,"43252":-1,"43253":-1,"43254":2686,"43255":-1,"43256":-1,"43257":-1,"43258":-1,"43259":-1,"43260":-1,"43261":-1,"43262":-1,"43263":-1,"43264":-1,"43265":2684,"43266":2681,"43267":-1,"43268":-1,"43269":-1,"43270":-1,"43271":-1,"43272":2684,"43273":-1,"43274":-1,"43275":-1,"43276":-1,"43277":2683,"43278":2681,"43279":-1,"43280":-1,"43281":-1,"43282":-1,"43283":2687,"43284":-1,"43285":-1,"43286":-1,"43287":-1,"43288":-1,"43289":2686,"43290":2686,"43291":-1,"43292":2682,"43293":2685,"43294":-1,"43295":-1,"43296":-1,"43297":-1,"43298":-1,"43299":2685,"43300":-1,"43301":2681,"43302":2685,"43303":-1,"43304":-1,"43305":-1,"43306":2687,"43307":-1,"43308":-1,"43309":-1,"43310":-1,"43311":-1,"43312":-1,"43313":-1,"43314":-1,"43315":-1,"43316":-1,"43317":-1,"43318":-1,"43319":-1,"43320":2683,"43321":-1,"43322":-1,"43323":-1,"43324":-1,"43325":-1,"43326":-1,"43327":-1,"43328":2687,"43329":-1,"43330":2681,"43331":-1,"43332":-1,"43333":-1,"43334":0,"43335":2682,"43336":-1,"43337":-1,"43338":-1,"43339":-1,"43340":-1,"43341":-1,"43342":0,"43343":-1,"43344":-1,"43345":-1,"43346":-1,"43347":-1,"43348":2686,"43349":-1,"43350":-1,"43351":-1,"43352":-1,"43353":0,"43354":-1,"43355":-1,"43356":-1,"43357":-1,"43358":-1,"43359":-1,"43360":-1,"43361":-1,"43362":-1,"43363":-1,"43364":-1,"43365":2682,"43366":-1,"43367":2682,"43368":-1,"43369":-1,"43370":-1,"43371":-1,"43372":2684,"43373":-1,"43374":-1,"43375":-1,"43376":-1,"43377":-1,"43378":-1,"43379":-1,"43380":-1,"43381":-1,"43382":-1,"43383":-1,"43384":2683,"43385":-1,"43386":-1,"43387":-1,"43388":-1,"43389":-1,"43390":-1,"43391":-1,"43392":-1,"43393":-1,"43394":-1,"43395":0,"43396":-1,"43397":-1,"43398":-1,"43399":-1,"43400":2684,"43401":-1,"43402":-1,"43403":-1,"43404":-1,"43405":-1,"43406":0,"43407":-1,"43408":-1,"43409":-1,"43410":0,"43411":2685,"43412":-1,"43413":-1,"43414":-1,"43415":-1,"43416":-1,"43417":-1,"43418":-1,"43419":-1,"43420":-1,"43421":-1,"43422":-1,"43423":2685,"43424":0,"43425":-1,"43426":-1,"43427":-1,"43428":-1,"43429":2684,"43430":-1,"43431":2681,"43432":-1,"43433":-1,"43434":-1,"43435":-1,"43436":2684,"43437":-1,"43438":-1,"43439":-1,"43440":2686,"43441":-1,"43442":-1,"43443":-1,"43444":-1,"43445":-1,"43446":-1,"43447":-1,"43448":2682,"43449":-1,"43450":-1,"43451":2682,"43452":-1,"43453":-1,"43454":-1,"43455":-1,"43456":-1,"43457":2685,"43458":-1,"43459":-1,"43460":-1,"43461":-1,"43462":-1,"43463":2684,"43464":-1,"43465":-1,"43466":-1,"43467":-1,"43468":-1,"43469":2686,"43470":2685,"43471":-1,"43472":-1,"43473":-1,"43474":-1,"43475":2683,"43476":-1,"43477":-1,"43478":-1,"43479":-1,"43480":-1,"43481":-1,"43482":-1,"43483":2684,"43484":-1,"43485":0,"43486":-1,"43487":-1,"43488":-1,"43489":-1,"43490":-1,"43491":-1,"43492":-1,"43493":-1,"43494":-1,"43495":-1,"43496":-1,"43497":-1,"43498":2685,"43499":2685,"43500":-1,"43501":-1,"43502":-1,"43503":2682,"43504":-1,"43505":-1,"43506":-1,"43507":-1,"43508":2686,"43509":0,"43510":2686,"43511":-1,"43512":-1,"43513":2686,"43514":-1,"43515":-1,"43516":-1,"43517":-1,"43518":-1,"43519":-1,"43520":-1,"43521":0,"43522":-1,"43523":-1,"43524":-1,"43525":-1,"43526":-1,"43527":-1,"43528":-1,"43529":-1,"43530":-1,"43531":-1,"43532":-1,"43533":-1,"43534":-1,"43535":-1,"43536":2683,"43537":-1,"43538":-1,"43539":-1,"43540":2686,"43541":2682,"43542":-1,"43543":-1,"43544":2682,"43545":-1,"43546":-1,"43547":-1,"43548":-1,"43549":-1,"43550":2682,"43551":2686,"43552":-1,"43553":-1,"43554":-1,"43555":-1,"43556":-1,"43557":-1,"43558":-1,"43559":-1,"43560":-1,"43561":-1,"43562":-1,"43563":0,"43564":-1,"43565":-1,"43566":-1,"43567":-1,"43568":-1,"43569":0,"43570":-1,"43571":-1,"43572":-1,"43573":-1,"43574":-1,"43575":-1,"43576":-1,"43577":-1,"43578":-1,"43579":-1,"43580":-1,"43581":-1,"43582":-1,"43583":-1,"43584":-1,"43585":-1,"43586":-1,"43587":-1,"43588":-1,"43589":-1,"43590":-1,"43591":-1,"43592":2684,"43593":-1,"43594":-1,"43595":-1,"43596":-1,"43597":-1,"43598":-1,"43599":-1,"43600":-1,"43601":-1,"43602":-1,"43603":-1,"43604":2682,"43605":-1,"43606":-1,"43607":-1,"43608":-1,"43609":-1,"43610":-1,"43611":-1,"43612":-1,"43613":-1,"43614":-1,"43615":-1,"43616":-1,"43617":-1,"43618":-1,"43619":-1,"43620":-1,"43621":-1,"43622":-1,"43623":-1,"43624":-1,"43625":-1,"43626":-1,"43627":-1,"43628":-1,"43629":-1,"43630":2682,"43631":0,"43632":-1,"43633":-1,"43634":-1,"43635":-1,"43636":-1,"43637":-1,"43638":-1,"43639":-1,"43640":-1,"43641":-1,"43642":-1,"43643":2687,"43644":-1,"43645":-1,"43646":-1,"43647":-1,"43648":-1,"43649":2682,"43650":-1,"43651":0,"43652":-1,"43653":-1,"43654":-1,"43655":-1,"43656":-1,"43657":-1,"43658":-1,"43659":2682,"43660":-1,"43661":-1,"43662":-1,"43663":-1,"43664":2686,"43665":-1,"43666":-1,"43667":-1,"43668":-1,"43669":-1,"43670":-1,"43671":-1,"43672":-1,"43673":-1,"43674":-1,"43675":-1,"43676":-1,"43677":-1,"43678":-1,"43679":-1,"43680":-1,"43681":-1,"43682":-1,"43683":-1,"43684":2681,"43685":-1,"43686":-1,"43687":0,"43688":-1,"43689":2682,"43690":2684,"43691":-1,"43692":2686,"43693":2682,"43694":-1,"43695":-1,"43696":2684,"43697":-1,"43698":-1,"43699":-1,"43700":-1,"43701":-1,"43702":-1,"43703":-1,"43704":-1,"43705":-1,"43706":-1,"43707":-1,"43708":-1,"43709":2685,"43710":-1,"43711":-1,"43712":-1,"43713":-1,"43714":-1,"43715":2682,"43716":-1,"43717":-1,"43718":2686,"43719":-1,"43720":-1,"43721":2682,"43722":-1,"43723":-1,"43724":-1,"43725":-1,"43726":-1,"43727":-1,"43728":-1,"43729":-1,"43730":-1,"43731":-1,"43732":-1,"43733":-1,"43734":-1,"43735":2683,"43736":2682,"43737":-1,"43738":-1,"43739":-1,"43740":2684,"43741":-1,"43742":2686,"43743":-1,"43744":-1,"43745":-1,"43746":-1,"43747":2682,"43748":-1,"43749":-1,"43750":-1,"43751":-1,"43752":-1,"43753":2686,"43754":-1,"43755":2682,"43756":-1,"43757":-1,"43758":-1,"43759":-1,"43760":-1,"43761":-1,"43762":-1,"43763":-1,"43764":-1,"43765":-1,"43766":-1,"43767":-1,"43768":-1,"43769":2681,"43770":-1,"43771":0,"43772":-1,"43773":-1,"43774":-1,"43775":2682,"43776":-1,"43777":-1,"43778":2682,"43779":-1,"43780":2687,"43781":-1,"43782":-1,"43783":-1,"43784":-1,"43785":-1,"43786":-1,"43787":2687,"43788":-1,"43789":-1,"43790":-1,"43791":-1,"43792":2687,"43793":2684,"43794":-1,"43795":-1,"43796":-1,"43797":2683,"43798":-1,"43799":-1,"43800":-1,"43801":-1,"43802":-1,"43803":-1,"43804":-1,"43805":2682,"43806":2684,"43807":0,"43808":0,"43809":-1,"43810":-1,"43811":-1,"43812":0,"43813":-1,"43814":2681,"43815":-1,"43816":-1,"43817":0,"43818":-1,"43819":-1,"43820":-1,"43821":-1,"43822":-1,"43823":-1,"43824":-1,"43825":2686,"43826":-1,"43827":-1,"43828":-1,"43829":-1,"43830":-1,"43831":-1,"43832":-1,"43833":-1,"43834":-1,"43835":2682,"43836":-1,"43837":-1,"43838":-1,"43839":-1,"43840":-1,"43841":-1,"43842":2683,"43843":-1,"43844":-1,"43845":0,"43846":-1,"43847":-1,"43848":-1,"43849":-1,"43850":-1,"43851":-1,"43852":-1,"43853":0,"43854":2686,"43855":-1,"43856":-1,"43857":-1,"43858":-1,"43859":-1,"43860":2686,"43861":2682,"43862":2686,"43863":-1,"43864":-1,"43865":-1,"43866":-1,"43867":0,"43868":-1,"43869":-1,"43870":-1,"43871":2683,"43872":-1,"43873":-1,"43874":-1,"43875":-1,"43876":-1,"43877":-1,"43878":-1,"43879":-1,"43880":-1,"43881":-1,"43882":-1,"43883":-1,"43884":-1,"43885":-1,"43886":-1,"43887":-1,"43888":-1,"43889":-1,"43890":-1,"43891":-1,"43892":-1,"43893":2682,"43894":2686,"43895":2684,"43896":-1,"43897":2683,"43898":-1,"43899":-1,"43900":-1,"43901":-1,"43902":-1,"43903":2687,"43904":-1,"43905":-1,"43906":-1,"43907":-1,"43908":-1,"43909":-1,"43910":-1,"43911":-1,"43912":-1,"43913":-1,"43914":-1,"43915":2685,"43916":-1,"43917":-1,"43918":0,"43919":2683,"43920":-1,"43921":-1,"43922":-1,"43923":-1,"43924":-1,"43925":-1,"43926":-1,"43927":-1,"43928":-1,"43929":-1,"43930":-1,"43931":-1,"43932":-1,"43933":-1,"43934":-1,"43935":0,"43936":-1,"43937":-1,"43938":-1,"43939":-1,"43940":-1,"43941":-1,"43942":-1,"43943":-1,"43944":-1,"43945":-1,"43946":-1,"43947":-1,"43948":-1,"43949":-1,"43950":-1,"43951":-1,"43952":-1,"43953":-1,"43954":-1,"43955":-1,"43956":-1,"43957":-1,"43958":-1,"43959":-1,"43960":-1,"43961":-1,"43962":-1,"43963":-1,"43964":2682,"43965":-1,"43966":-1,"43967":-1,"43968":2683,"43969":-1,"43970":-1,"43971":-1,"43972":-1,"43973":-1,"43974":-1,"43975":-1,"43976":-1,"43977":-1,"43978":-1,"43979":-1,"43980":0,"43981":-1,"43982":-1,"43983":-1,"43984":2683,"43985":-1,"43986":-1,"43987":-1,"43988":0,"43989":-1,"43990":-1,"43991":-1,"43992":-1,"43993":-1,"43994":-1,"43995":-1,"43996":-1,"43997":-1,"43998":-1,"43999":-1,"44000":2682,"44001":-1,"44002":-1,"44003":-1,"44004":-1,"44005":2686,"44006":-1,"44007":2681,"44008":-1,"44009":-1,"44010":2686,"44011":-1,"44012":-1,"44013":-1,"44014":-1,"44015":-1,"44016":-1,"44017":-1,"44018":-1,"44019":-1,"44020":-1,"44021":-1,"44022":-1,"44023":-1,"44024":-1,"44025":-1,"44026":2685,"44027":-1,"44028":-1,"44029":-1,"44030":-1,"44031":-1,"44032":2682,"44033":-1,"44034":-1,"44035":-1,"44036":0,"44037":-1,"44038":-1,"44039":-1,"44040":-1,"44041":-1,"44042":-1,"44043":-1,"44044":-1,"44045":-1,"44046":-1,"44047":2685,"44048":-1,"44049":0,"44050":-1,"44051":-1,"44052":-1,"44053":-1,"44054":-1,"44055":2686,"44056":-1,"44057":-1,"44058":-1,"44059":-1,"44060":-1,"44061":-1,"44062":-1,"44063":-1,"44064":-1,"44065":-1,"44066":-1,"44067":-1,"44068":-1,"44069":-1,"44070":-1,"44071":-1,"44072":-1,"44073":-1,"44074":-1,"44075":-1,"44076":-1,"44077":-1,"44078":-1,"44079":0,"44080":-1,"44081":-1,"44082":-1,"44083":-1,"44084":-1,"44085":-1,"44086":-1,"44087":-1,"44088":-1,"44089":-1,"44090":0,"44091":-1,"44092":-1,"44093":0,"44094":-1,"44095":-1,"44096":-1,"44097":0,"44098":-1,"44099":0,"44100":-1,"44101":-1,"44102":-1,"44103":2684,"44104":-1,"44105":-1,"44106":2683,"44107":-1,"44108":0,"44109":-1,"44110":-1,"44111":-1,"44112":-1,"44113":-1,"44114":0,"44115":-1,"44116":-1,"44117":-1,"44118":-1,"44119":2685,"44120":-1,"44121":-1,"44122":2682,"44123":-1,"44124":-1,"44125":-1,"44126":-1,"44127":-1,"44128":-1,"44129":-1,"44130":-1,"44131":-1,"44132":2684,"44133":-1,"44134":-1,"44135":-1,"44136":-1,"44137":-1,"44138":-1,"44139":2685,"44140":0,"44141":-1,"44142":-1,"44143":-1,"44144":-1,"44145":2686,"44146":-1,"44147":-1,"44148":-1,"44149":-1,"44150":-1,"44151":-1,"44152":-1,"44153":-1,"44154":-1,"44155":0,"44156":-1,"44157":-1,"44158":-1,"44159":-1,"44160":-1,"44161":-1,"44162":-1,"44163":-1,"44164":-1,"44165":-1,"44166":-1,"44167":2683,"44168":-1,"44169":-1,"44170":-1,"44171":-1,"44172":-1,"44173":-1,"44174":-1,"44175":-1,"44176":-1,"44177":2682,"44178":-1,"44179":-1,"44180":-1,"44181":2684,"44182":-1,"44183":-1,"44184":-1,"44185":-1,"44186":-1,"44187":-1,"44188":-1,"44189":-1,"44190":-1,"44191":-1,"44192":-1,"44193":-1,"44194":-1,"44195":-1,"44196":-1,"44197":0,"44198":-1,"44199":2684,"44200":-1,"44201":2682,"44202":-1,"44203":-1,"44204":0,"44205":-1,"44206":-1,"44207":-1,"44208":-1,"44209":2682,"44210":-1,"44211":-1,"44212":-1,"44213":-1,"44214":-1,"44215":-1,"44216":-1,"44217":-1,"44218":-1,"44219":-1,"44220":-1,"44221":-1,"44222":-1,"44223":-1,"44224":-1,"44225":-1,"44226":-1,"44227":-1,"44228":-1,"44229":2681,"44230":-1,"44231":-1,"44232":-1,"44233":-1,"44234":-1,"44235":-1,"44236":2687,"44237":-1,"44238":-1,"44239":-1,"44240":2684,"44241":-1,"44242":-1,"44243":-1,"44244":-1,"44245":-1,"44246":-1,"44247":-1,"44248":-1,"44249":-1,"44250":-1,"44251":-1,"44252":2685,"44253":-1,"44254":-1,"44255":2682,"44256":-1,"44257":-1,"44258":-1,"44259":-1,"44260":-1,"44261":-1,"44262":-1,"44263":2686,"44264":-1,"44265":-1,"44266":-1,"44267":-1,"44268":-1,"44269":-1,"44270":-1,"44271":0,"44272":-1,"44273":-1,"44274":-1,"44275":-1,"44276":-1,"44277":2683,"44278":-1,"44279":-1,"44280":-1,"44281":-1,"44282":-1,"44283":-1,"44284":-1,"44285":2686,"44286":-1,"44287":-1,"44288":-1,"44289":-1,"44290":-1,"44291":-1,"44292":0,"44293":2682,"44294":-1,"44295":-1,"44296":-1,"44297":0,"44298":2683,"44299":-1,"44300":-1,"44301":-1,"44302":-1,"44303":-1,"44304":-1,"44305":-1,"44306":-1,"44307":-1,"44308":0,"44309":-1,"44310":2686,"44311":-1,"44312":-1,"44313":-1,"44314":-1,"44315":-1,"44316":-1,"44317":-1,"44318":-1,"44319":-1,"44320":-1,"44321":-1,"44322":-1,"44323":-1,"44324":-1,"44325":-1,"44326":-1,"44327":-1,"44328":-1,"44329":-1,"44330":-1,"44331":-1,"44332":-1,"44333":-1,"44334":-1,"44335":-1,"44336":-1,"44337":-1,"44338":-1,"44339":-1,"44340":-1,"44341":-1,"44342":-1,"44343":-1,"44344":-1,"44345":-1,"44346":-1,"44347":-1,"44348":-1,"44349":-1,"44350":-1,"44351":-1,"44352":-1,"44353":-1,"44354":-1,"44355":-1,"44356":-1,"44357":-1,"44358":-1,"44359":-1,"44360":2684,"44361":-1,"44362":-1,"44363":-1,"44364":-1,"44365":2686,"44366":-1,"44367":-1,"44368":-1,"44369":-1,"44370":-1,"44371":-1,"44372":-1,"44373":-1,"44374":0,"44375":-1,"44376":0,"44377":-1,"44378":-1,"44379":-1,"44380":-1,"44381":-1,"44382":-1,"44383":2683,"44384":-1,"44385":-1,"44386":-1,"44387":-1,"44388":-1,"44389":-1,"44390":-1,"44391":-1,"44392":-1,"44393":-1,"44394":-1,"44395":-1,"44396":-1,"44397":-1,"44398":-1,"44399":-1,"44400":-1,"44401":-1,"44402":-1,"44403":-1,"44404":2686,"44405":-1,"44406":-1,"44407":-1,"44408":-1,"44409":-1,"44410":-1,"44411":-1,"44412":-1,"44413":-1,"44414":-1,"44415":-1,"44416":-1,"44417":-1,"44418":-1,"44419":-1,"44420":-1,"44421":-1,"44422":-1,"44423":-1,"44424":-1,"44425":-1,"44426":-1,"44427":-1,"44428":-1,"44429":-1,"44430":-1,"44431":-1,"44432":2685,"44433":-1,"44434":-1,"44435":2685,"44436":-1,"44437":-1,"44438":-1,"44439":-1,"44440":-1,"44441":0,"44442":-1,"44443":-1,"44444":-1,"44445":-1,"44446":0,"44447":-1,"44448":-1,"44449":2684,"44450":-1,"44451":-1,"44452":-1,"44453":-1,"44454":-1,"44455":-1,"44456":-1,"44457":-1,"44458":-1,"44459":-1,"44460":-1,"44461":-1,"44462":-1,"44463":-1,"44464":-1,"44465":-1,"44466":-1,"44467":-1,"44468":-1,"44469":-1,"44470":2685,"44471":-1,"44472":-1,"44473":-1,"44474":-1,"44475":-1,"44476":0,"44477":-1,"44478":2687,"44479":-1,"44480":-1,"44481":-1,"44482":-1,"44483":-1,"44484":-1,"44485":-1,"44486":-1,"44487":-1,"44488":-1,"44489":-1,"44490":-1,"44491":-1,"44492":-1,"44493":-1,"44494":-1,"44495":-1,"44496":-1,"44497":-1,"44498":-1,"44499":-1,"44500":-1,"44501":-1,"44502":-1,"44503":-1,"44504":-1,"44505":-1,"44506":-1,"44507":-1,"44508":2685,"44509":-1,"44510":-1,"44511":-1,"44512":-1,"44513":-1,"44514":-1,"44515":-1,"44516":-1,"44517":-1,"44518":2684,"44519":-1,"44520":-1,"44521":-1,"44522":-1,"44523":-1,"44524":-1,"44525":2686,"44526":-1,"44527":-1,"44528":-1,"44529":-1,"44530":2685,"44531":-1,"44532":-1,"44533":-1,"44534":2682,"44535":-1,"44536":-1,"44537":-1,"44538":-1,"44539":-1,"44540":-1,"44541":-1,"44542":-1,"44543":2682,"44544":-1,"44545":0,"44546":-1,"44547":2686,"44548":-1,"44549":-1,"44550":-1,"44551":-1,"44552":0,"44553":-1,"44554":-1,"44555":-1,"44556":-1,"44557":-1,"44558":-1,"44559":2686,"44560":2682,"44561":-1,"44562":-1,"44563":-1,"44564":2683,"44565":-1,"44566":-1,"44567":-1,"44568":-1,"44569":-1,"44570":-1,"44571":0,"44572":-1,"44573":-1,"44574":-1,"44575":-1,"44576":-1,"44577":-1,"44578":2684,"44579":-1,"44580":-1,"44581":-1,"44582":-1,"44583":-1,"44584":-1,"44585":-1,"44586":-1,"44587":-1,"44588":-1,"44589":-1,"44590":-1,"44591":-1,"44592":-1,"44593":0,"44594":-1,"44595":-1,"44596":2684,"44597":-1,"44598":-1,"44599":-1,"44600":-1,"44601":-1,"44602":-1,"44603":-1,"44604":-1,"44605":-1,"44606":-1,"44607":-1,"44608":-1,"44609":-1,"44610":-1,"44611":-1,"44612":-1,"44613":-1,"44614":-1,"44615":2684,"44616":-1,"44617":-1,"44618":-1,"44619":-1,"44620":-1,"44621":-1,"44622":-1,"44623":-1,"44624":-1,"44625":-1,"44626":-1,"44627":-1,"44628":2683,"44629":-1,"44630":-1,"44631":-1,"44632":-1,"44633":-1,"44634":-1,"44635":-1,"44636":-1,"44637":-1,"44638":-1,"44639":0,"44640":-1,"44641":-1,"44642":-1,"44643":-1,"44644":-1,"44645":2686,"44646":0,"44647":-1,"44648":-1,"44649":-1,"44650":-1,"44651":-1,"44652":-1,"44653":-1,"44654":2683,"44655":-1,"44656":-1,"44657":-1,"44658":-1,"44659":0,"44660":-1,"44661":-1,"44662":2685,"44663":-1,"44664":-1,"44665":-1,"44666":-1,"44667":-1,"44668":0,"44669":-1,"44670":-1,"44671":-1,"44672":-1,"44673":-1,"44674":2683,"44675":-1,"44676":-1,"44677":-1,"44678":-1,"44679":-1,"44680":2684,"44681":-1,"44682":-1,"44683":-1,"44684":2685,"44685":0,"44686":-1,"44687":2682,"44688":2682,"44689":-1,"44690":-1,"44691":-1,"44692":-1,"44693":-1,"44694":-1,"44695":-1,"44696":2686,"44697":-1,"44698":-1,"44699":-1,"44700":-1,"44701":-1,"44702":-1,"44703":-1,"44704":2683,"44705":-1,"44706":-1,"44707":-1,"44708":-1,"44709":-1,"44710":-1,"44711":0,"44712":-1,"44713":-1,"44714":-1,"44715":-1,"44716":-1,"44717":2686,"44718":-1,"44719":-1,"44720":-1,"44721":-1,"44722":-1,"44723":-1,"44724":-1,"44725":-1,"44726":-1,"44727":-1,"44728":-1,"44729":-1,"44730":-1,"44731":-1,"44732":2683,"44733":2684,"44734":-1,"44735":-1,"44736":-1,"44737":-1,"44738":-1,"44739":-1,"44740":-1,"44741":-1,"44742":-1,"44743":-1,"44744":-1,"44745":-1,"44746":-1,"44747":2685,"44748":-1,"44749":-1,"44750":-1,"44751":-1,"44752":-1,"44753":-1,"44754":-1,"44755":-1,"44756":-1,"44757":-1,"44758":-1,"44759":-1,"44760":-1,"44761":-1,"44762":-1,"44763":-1,"44764":-1,"44765":-1,"44766":-1,"44767":-1,"44768":-1,"44769":-1,"44770":-1,"44771":0,"44772":-1,"44773":-1,"44774":-1,"44775":-1,"44776":-1,"44777":-1,"44778":-1,"44779":2683,"44780":-1,"44781":0,"44782":-1,"44783":-1,"44784":-1,"44785":-1,"44786":-1,"44787":0,"44788":-1,"44789":-1,"44790":-1,"44791":-1,"44792":-1,"44793":-1,"44794":-1,"44795":-1,"44796":-1,"44797":-1,"44798":-1,"44799":-1,"44800":2687,"44801":0,"44802":-1,"44803":-1,"44804":-1,"44805":-1,"44806":-1,"44807":-1,"44808":-1,"44809":-1,"44810":2686,"44811":-1,"44812":-1,"44813":-1,"44814":-1,"44815":-1,"44816":-1,"44817":-1,"44818":-1,"44819":-1,"44820":-1,"44821":-1,"44822":-1,"44823":-1,"44824":-1,"44825":2681,"44826":-1,"44827":-1,"44828":-1,"44829":2682,"44830":-1,"44831":-1,"44832":-1,"44833":2685,"44834":-1,"44835":-1,"44836":2683,"44837":-1,"44838":-1,"44839":-1,"44840":-1,"44841":-1,"44842":-1,"44843":-1,"44844":-1,"44845":-1,"44846":-1,"44847":-1,"44848":-1,"44849":-1,"44850":-1,"44851":-1,"44852":0,"44853":-1,"44854":-1,"44855":-1,"44856":-1,"44857":-1,"44858":-1,"44859":-1,"44860":-1,"44861":-1,"44862":-1,"44863":-1,"44864":2683,"44865":2684,"44866":-1,"44867":-1,"44868":-1,"44869":-1,"44870":-1,"44871":-1,"44872":-1,"44873":-1,"44874":-1,"44875":-1,"44876":0,"44877":-1,"44878":-1,"44879":-1,"44880":-1,"44881":-1,"44882":-1,"44883":-1,"44884":-1,"44885":-1,"44886":-1,"44887":-1,"44888":-1,"44889":-1,"44890":-1,"44891":2686,"44892":-1,"44893":-1,"44894":-1,"44895":2685,"44896":-1,"44897":2684,"44898":-1,"44899":-1,"44900":-1,"44901":-1,"44902":-1,"44903":-1,"44904":2685,"44905":-1,"44906":2684,"44907":-1,"44908":-1,"44909":-1,"44910":-1,"44911":-1,"44912":-1,"44913":2686,"44914":-1,"44915":-1,"44916":-1,"44917":-1,"44918":2686,"44919":-1,"44920":-1,"44921":-1,"44922":-1,"44923":-1,"44924":-1,"44925":-1,"44926":-1,"44927":2686,"44928":-1,"44929":2687,"44930":-1,"44931":-1,"44932":-1,"44933":2683,"44934":-1,"44935":-1,"44936":-1,"44937":-1,"44938":0,"44939":-1,"44940":-1,"44941":-1,"44942":-1,"44943":-1,"44944":-1,"44945":-1,"44946":-1,"44947":-1,"44948":-1,"44949":-1,"44950":-1,"44951":0,"44952":-1,"44953":-1,"44954":-1,"44955":-1,"44956":-1,"44957":-1,"44958":-1,"44959":2683,"44960":-1,"44961":-1,"44962":-1,"44963":-1,"44964":-1,"44965":-1,"44966":2687,"44967":-1,"44968":-1,"44969":-1,"44970":2686,"44971":-1,"44972":-1,"44973":-1,"44974":-1,"44975":-1,"44976":-1,"44977":2686,"44978":-1,"44979":-1,"44980":-1,"44981":-1,"44982":-1,"44983":-1,"44984":-1,"44985":-1,"44986":-1,"44987":-1,"44988":-1,"44989":-1,"44990":-1,"44991":2685,"44992":-1,"44993":-1,"44994":-1,"44995":-1,"44996":-1,"44997":-1,"44998":-1,"44999":-1,"45000":-1,"45001":-1,"45002":-1,"45003":-1,"45004":-1,"45005":-1,"45006":-1,"45007":-1,"45008":-1,"45009":-1,"45010":-1,"45011":-1,"45012":-1,"45013":-1,"45014":-1,"45015":2687,"45016":-1,"45017":-1,"45018":-1,"45019":-1,"45020":-1,"45021":-1,"45022":-1,"45023":-1,"45024":-1,"45025":-1,"45026":-1,"45027":-1,"45028":-1,"45029":-1,"45030":-1,"45031":-1,"45032":-1,"45033":-1,"45034":-1,"45035":-1,"45036":-1,"45037":-1,"45038":-1,"45039":-1,"45040":-1,"45041":-1,"45042":-1,"45043":-1,"45044":-1,"45045":-1,"45046":2686,"45047":-1,"45048":-1,"45049":-1,"45050":-1,"45051":-1,"45052":-1,"45053":-1,"45054":-1,"45055":-1,"45056":-1,"45057":-1,"45058":-1,"45059":-1,"45060":2682,"45061":-1,"45062":2681,"45063":-1,"45064":-1,"45065":2684,"45066":-1,"45067":2686,"45068":2681,"45069":-1,"45070":2682,"45071":-1,"45072":-1,"45073":-1,"45074":-1,"45075":2683,"45076":2686,"45077":-1,"45078":0,"45079":-1,"45080":-1,"45081":-1,"45082":-1,"45083":-1,"45084":-1,"45085":2686,"45086":0,"45087":-1,"45088":-1,"45089":-1,"45090":-1,"45091":-1,"45092":-1,"45093":-1,"45094":-1,"45095":-1,"45096":-1,"45097":-1,"45098":-1,"45099":2685,"45100":-1,"45101":-1,"45102":-1,"45103":-1,"45104":2684,"45105":-1,"45106":-1,"45107":-1,"45108":2683,"45109":-1,"45110":-1,"45111":-1,"45112":-1,"45113":-1,"45114":-1,"45115":-1,"45116":-1,"45117":-1,"45118":-1,"45119":-1,"45120":-1,"45121":-1,"45122":-1,"45123":2685,"45124":-1,"45125":-1,"45126":-1,"45127":-1,"45128":-1,"45129":2686,"45130":-1,"45131":2686,"45132":2682,"45133":-1,"45134":0,"45135":-1,"45136":-1,"45137":2685,"45138":-1,"45139":-1,"45140":-1,"45141":-1,"45142":-1,"45143":-1,"45144":0,"45145":-1,"45146":-1,"45147":2683,"45148":-1,"45149":2683,"45150":-1,"45151":-1,"45152":-1,"45153":-1,"45154":-1,"45155":-1,"45156":0,"45157":-1,"45158":-1,"45159":-1,"45160":-1,"45161":-1,"45162":-1,"45163":-1,"45164":-1,"45165":-1,"45166":-1,"45167":-1,"45168":2687,"45169":-1,"45170":-1,"45171":-1,"45172":-1,"45173":-1,"45174":-1,"45175":-1,"45176":-1,"45177":-1,"45178":-1,"45179":-1,"45180":-1,"45181":-1,"45182":2684,"45183":-1,"45184":-1,"45185":-1,"45186":-1,"45187":-1,"45188":-1,"45189":-1,"45190":-1,"45191":-1,"45192":-1,"45193":-1,"45194":-1,"45195":-1,"45196":-1,"45197":-1,"45198":-1,"45199":-1,"45200":-1,"45201":-1,"45202":-1,"45203":0,"45204":-1,"45205":2686,"45206":2684,"45207":-1,"45208":-1,"45209":-1,"45210":-1,"45211":-1,"45212":2685,"45213":-1,"45214":-1,"45215":-1,"45216":-1,"45217":-1,"45218":-1,"45219":-1,"45220":-1,"45221":2681,"45222":-1,"45223":-1,"45224":-1,"45225":-1,"45226":0,"45227":-1,"45228":-1,"45229":-1,"45230":-1,"45231":-1,"45232":-1,"45233":-1,"45234":-1,"45235":-1,"45236":-1,"45237":-1,"45238":-1,"45239":-1,"45240":-1,"45241":-1,"45242":-1,"45243":-1,"45244":2685,"45245":-1,"45246":-1,"45247":-1,"45248":-1,"45249":-1,"45250":-1,"45251":-1,"45252":-1,"45253":-1,"45254":-1,"45255":2683,"45256":0,"45257":2685,"45258":-1,"45259":-1,"45260":2685,"45261":-1,"45262":-1,"45263":-1,"45264":-1,"45265":-1,"45266":2682,"45267":-1,"45268":-1,"45269":-1,"45270":-1,"45271":2682,"45272":-1,"45273":0,"45274":2683,"45275":2686,"45276":-1,"45277":2681,"45278":-1,"45279":-1,"45280":-1,"45281":0,"45282":-1,"45283":-1,"45284":-1,"45285":-1,"45286":-1,"45287":-1,"45288":2686,"45289":-1,"45290":-1,"45291":2683,"45292":-1,"45293":2686,"45294":-1,"45295":-1,"45296":-1,"45297":-1,"45298":-1,"45299":-1,"45300":-1,"45301":-1,"45302":2682,"45303":-1,"45304":-1,"45305":-1,"45306":-1,"45307":-1,"45308":-1,"45309":-1,"45310":-1,"45311":-1,"45312":-1,"45313":-1,"45314":-1,"45315":-1,"45316":-1,"45317":0,"45318":-1,"45319":-1,"45320":-1,"45321":-1,"45322":-1,"45323":2686,"45324":-1,"45325":-1,"45326":2686,"45327":-1,"45328":-1,"45329":-1,"45330":-1,"45331":-1,"45332":-1,"45333":-1,"45334":-1,"45335":-1,"45336":-1,"45337":-1,"45338":-1,"45339":2682,"45340":-1,"45341":-1,"45342":-1,"45343":-1,"45344":-1,"45345":-1,"45346":-1,"45347":-1,"45348":-1,"45349":-1,"45350":-1,"45351":-1,"45352":-1,"45353":-1,"45354":-1,"45355":2683,"45356":-1,"45357":-1,"45358":-1,"45359":-1,"45360":-1,"45361":-1,"45362":-1,"45363":-1,"45364":0,"45365":0,"45366":-1,"45367":-1,"45368":-1,"45369":-1,"45370":-1,"45371":-1,"45372":-1,"45373":-1,"45374":-1,"45375":0,"45376":0,"45377":-1,"45378":-1,"45379":-1,"45380":-1,"45381":-1,"45382":-1,"45383":-1,"45384":-1,"45385":-1,"45386":-1,"45387":-1,"45388":-1,"45389":-1,"45390":2687,"45391":-1,"45392":-1,"45393":-1,"45394":-1,"45395":-1,"45396":-1,"45397":-1,"45398":-1,"45399":-1,"45400":-1,"45401":-1,"45402":-1,"45403":-1,"45404":-1,"45405":-1,"45406":-1,"45407":2684,"45408":-1,"45409":2682,"45410":-1,"45411":-1,"45412":0,"45413":-1,"45414":-1,"45415":-1,"45416":-1,"45417":-1,"45418":-1,"45419":2684,"45420":0,"45421":-1,"45422":-1,"45423":-1,"45424":-1,"45425":-1,"45426":-1,"45427":-1,"45428":-1,"45429":-1,"45430":-1,"45431":-1,"45432":-1,"45433":-1,"45434":2683,"45435":-1,"45436":-1,"45437":2686,"45438":-1,"45439":-1,"45440":-1,"45441":-1,"45442":-1,"45443":-1,"45444":-1,"45445":-1,"45446":-1,"45447":2686,"45448":-1,"45449":-1,"45450":2685,"45451":-1,"45452":-1,"45453":2687,"45454":-1,"45455":2681,"45456":-1,"45457":-1,"45458":-1,"45459":-1,"45460":2681,"45461":-1,"45462":2686,"45463":-1,"45464":-1,"45465":-1,"45466":-1,"45467":-1,"45468":-1,"45469":-1,"45470":-1,"45471":-1,"45472":-1,"45473":-1,"45474":-1,"45475":-1,"45476":-1,"45477":-1,"45478":-1,"45479":-1,"45480":-1,"45481":-1,"45482":-1,"45483":-1,"45484":-1,"45485":-1,"45486":-1,"45487":-1,"45488":-1,"45489":-1,"45490":-1,"45491":2682,"45492":-1,"45493":-1,"45494":-1,"45495":-1,"45496":-1,"45497":-1,"45498":-1,"45499":-1,"45500":-1,"45501":-1,"45502":-1,"45503":-1,"45504":2681,"45505":-1,"45506":-1,"45507":-1,"45508":-1,"45509":-1,"45510":-1,"45511":-1,"45512":-1,"45513":0,"45514":-1,"45515":-1,"45516":-1,"45517":-1,"45518":-1,"45519":-1,"45520":-1,"45521":-1,"45522":-1,"45523":-1,"45524":-1,"45525":-1,"45526":-1,"45527":-1,"45528":-1,"45529":-1,"45530":-1,"45531":-1,"45532":2685,"45533":-1,"45534":-1,"45535":-1,"45536":-1,"45537":-1,"45538":-1,"45539":-1,"45540":-1,"45541":-1,"45542":-1,"45543":-1,"45544":-1,"45545":-1,"45546":-1,"45547":-1,"45548":-1,"45549":-1,"45550":-1,"45551":-1,"45552":-1,"45553":-1,"45554":-1,"45555":2682,"45556":-1,"45557":-1,"45558":-1,"45559":-1,"45560":-1,"45561":2687,"45562":-1,"45563":-1,"45564":-1,"45565":2684,"45566":0,"45567":-1,"45568":-1,"45569":-1,"45570":-1,"45571":2684,"45572":-1,"45573":-1,"45574":-1,"45575":-1,"45576":-1,"45577":-1,"45578":-1,"45579":-1,"45580":-1,"45581":-1,"45582":-1,"45583":-1,"45584":-1,"45585":-1,"45586":-1,"45587":-1,"45588":-1,"45589":-1,"45590":2685,"45591":-1,"45592":-1,"45593":0,"45594":-1,"45595":-1,"45596":-1,"45597":-1,"45598":2682,"45599":-1,"45600":-1,"45601":-1,"45602":-1,"45603":-1,"45604":-1,"45605":-1,"45606":0,"45607":2686,"45608":-1,"45609":-1,"45610":-1,"45611":-1,"45612":-1,"45613":-1,"45614":-1,"45615":-1,"45616":-1,"45617":-1,"45618":2687,"45619":-1,"45620":-1,"45621":-1,"45622":-1,"45623":-1,"45624":-1,"45625":2682,"45626":2682,"45627":-1,"45628":-1,"45629":-1,"45630":-1,"45631":-1,"45632":-1,"45633":-1,"45634":-1,"45635":-1,"45636":-1,"45637":-1,"45638":-1,"45639":-1,"45640":-1,"45641":-1,"45642":-1,"45643":-1,"45644":-1,"45645":-1,"45646":-1,"45647":-1,"45648":-1,"45649":-1,"45650":0,"45651":-1,"45652":-1,"45653":-1,"45654":-1,"45655":-1,"45656":-1,"45657":-1,"45658":-1,"45659":-1,"45660":-1,"45661":0,"45662":-1,"45663":-1,"45664":-1,"45665":-1,"45666":2686,"45667":-1,"45668":-1,"45669":-1,"45670":-1,"45671":2685,"45672":2681,"45673":2683,"45674":-1,"45675":-1,"45676":-1,"45677":-1,"45678":-1,"45679":-1,"45680":-1,"45681":0,"45682":0,"45683":-1,"45684":-1,"45685":-1,"45686":2683,"45687":-1,"45688":-1,"45689":-1,"45690":-1,"45691":-1,"45692":2683,"45693":-1,"45694":-1,"45695":-1,"45696":-1,"45697":-1,"45698":-1,"45699":-1,"45700":-1,"45701":-1,"45702":-1,"45703":-1,"45704":0,"45705":2682,"45706":-1,"45707":-1,"45708":-1,"45709":-1,"45710":-1,"45711":-1,"45712":-1,"45713":-1,"45714":-1,"45715":-1,"45716":2682,"45717":2681,"45718":-1,"45719":-1,"45720":-1,"45721":2686,"45722":-1,"45723":2681,"45724":-1,"45725":-1,"45726":-1,"45727":-1,"45728":-1,"45729":-1,"45730":-1,"45731":-1,"45732":-1,"45733":-1,"45734":-1,"45735":-1,"45736":0,"45737":0,"45738":-1,"45739":-1,"45740":-1,"45741":0,"45742":-1,"45743":-1,"45744":-1,"45745":-1,"45746":-1,"45747":-1,"45748":-1,"45749":-1,"45750":-1,"45751":-1,"45752":-1,"45753":-1,"45754":-1,"45755":-1,"45756":-1,"45757":-1,"45758":-1,"45759":0,"45760":-1,"45761":-1,"45762":-1,"45763":-1,"45764":-1,"45765":-1,"45766":-1,"45767":-1,"45768":-1,"45769":-1,"45770":-1,"45771":-1,"45772":-1,"45773":2685,"45774":-1,"45775":-1,"45776":-1,"45777":-1,"45778":-1,"45779":2682,"45780":-1,"45781":-1,"45782":-1,"45783":-1,"45784":0,"45785":-1,"45786":0,"45787":-1,"45788":-1,"45789":-1,"45790":-1,"45791":-1,"45792":-1,"45793":-1,"45794":2684,"45795":-1,"45796":-1,"45797":-1,"45798":-1,"45799":-1,"45800":-1,"45801":-1,"45802":-1,"45803":2682,"45804":-1,"45805":-1,"45806":-1,"45807":-1,"45808":-1,"45809":-1,"45810":-1,"45811":-1,"45812":2684,"45813":-1,"45814":-1,"45815":-1,"45816":2681,"45817":0,"45818":-1,"45819":-1,"45820":-1,"45821":-1,"45822":-1,"45823":2686,"45824":-1,"45825":-1,"45826":-1,"45827":-1,"45828":-1,"45829":-1,"45830":-1,"45831":-1,"45832":-1,"45833":-1,"45834":-1,"45835":-1,"45836":-1,"45837":-1,"45838":-1,"45839":0,"45840":2686,"45841":-1,"45842":-1,"45843":-1,"45844":-1,"45845":-1,"45846":-1,"45847":-1,"45848":-1,"45849":-1,"45850":-1,"45851":-1,"45852":-1,"45853":-1,"45854":-1,"45855":-1,"45856":-1,"45857":-1,"45858":-1,"45859":2683,"45860":-1,"45861":-1,"45862":-1,"45863":-1,"45864":-1,"45865":-1,"45866":-1,"45867":-1,"45868":2684,"45869":2681,"45870":-1,"45871":-1,"45872":2684,"45873":-1,"45874":-1,"45875":-1,"45876":-1,"45877":-1,"45878":-1,"45879":2687,"45880":0,"45881":-1,"45882":-1,"45883":-1,"45884":-1,"45885":-1,"45886":-1,"45887":-1,"45888":-1,"45889":-1,"45890":-1,"45891":2686,"45892":-1,"45893":2685,"45894":-1,"45895":-1,"45896":-1,"45897":-1,"45898":-1,"45899":-1,"45900":-1,"45901":-1,"45902":-1,"45903":-1,"45904":-1,"45905":-1,"45906":-1,"45907":-1,"45908":-1,"45909":-1,"45910":-1,"45911":2685,"45912":-1,"45913":-1,"45914":-1,"45915":-1,"45916":-1,"45917":-1,"45918":-1,"45919":-1,"45920":-1,"45921":-1,"45922":-1,"45923":-1,"45924":-1,"45925":0,"45926":-1,"45927":-1,"45928":-1,"45929":-1,"45930":-1,"45931":0,"45932":-1,"45933":-1,"45934":-1,"45935":-1,"45936":-1,"45937":-1,"45938":-1,"45939":-1,"45940":-1,"45941":-1,"45942":-1,"45943":-1,"45944":-1,"45945":-1,"45946":-1,"45947":-1,"45948":-1,"45949":-1,"45950":-1,"45951":-1,"45952":-1,"45953":2687,"45954":-1,"45955":-1,"45956":-1,"45957":-1,"45958":-1,"45959":-1,"45960":-1,"45961":-1,"45962":-1,"45963":-1,"45964":-1,"45965":-1,"45966":-1,"45967":-1,"45968":2682,"45969":-1,"45970":2683,"45971":2685,"45972":-1,"45973":-1,"45974":-1,"45975":2685,"45976":-1,"45977":-1,"45978":-1,"45979":-1,"45980":-1,"45981":-1,"45982":-1,"45983":2686,"45984":2684,"45985":-1,"45986":-1,"45987":-1,"45988":2683,"45989":-1,"45990":-1,"45991":-1,"45992":-1,"45993":-1,"45994":2684,"45995":2681,"45996":-1,"45997":-1,"45998":-1,"45999":-1,"46000":-1,"46001":-1,"46002":-1,"46003":-1,"46004":-1,"46005":0,"46006":2685,"46007":-1,"46008":-1,"46009":2681,"46010":-1,"46011":-1,"46012":-1,"46013":-1,"46014":-1,"46015":-1,"46016":-1,"46017":-1,"46018":2686,"46019":-1,"46020":-1,"46021":-1,"46022":-1,"46023":2685,"46024":-1,"46025":-1,"46026":-1,"46027":-1,"46028":-1,"46029":-1,"46030":2685,"46031":-1,"46032":-1,"46033":-1,"46034":-1,"46035":-1,"46036":-1,"46037":-1,"46038":2681,"46039":-1,"46040":-1,"46041":-1,"46042":-1,"46043":-1,"46044":-1,"46045":-1,"46046":-1,"46047":-1,"46048":-1,"46049":-1,"46050":-1,"46051":-1,"46052":-1,"46053":-1,"46054":-1,"46055":-1,"46056":-1,"46057":-1,"46058":-1,"46059":0,"46060":-1,"46061":-1,"46062":-1,"46063":-1,"46064":-1,"46065":-1,"46066":-1,"46067":-1,"46068":-1,"46069":-1,"46070":-1,"46071":-1,"46072":-1,"46073":-1,"46074":-1,"46075":-1,"46076":-1,"46077":0,"46078":-1,"46079":-1,"46080":-1,"46081":2684,"46082":2681,"46083":-1,"46084":0,"46085":2683,"46086":-1,"46087":-1,"46088":-1,"46089":-1,"46090":0,"46091":0,"46092":-1,"46093":-1,"46094":-1,"46095":-1,"46096":-1,"46097":-1,"46098":-1,"46099":-1,"46100":-1,"46101":-1,"46102":-1,"46103":-1,"46104":2682,"46105":-1,"46106":0,"46107":-1,"46108":0,"46109":-1,"46110":-1,"46111":-1,"46112":-1,"46113":-1,"46114":-1,"46115":-1,"46116":-1,"46117":2685,"46118":-1,"46119":-1,"46120":-1,"46121":-1,"46122":-1,"46123":-1,"46124":-1,"46125":-1,"46126":-1,"46127":-1,"46128":-1,"46129":-1,"46130":-1,"46131":-1,"46132":-1,"46133":2685,"46134":-1,"46135":-1,"46136":-1,"46137":-1,"46138":-1,"46139":-1,"46140":-1,"46141":-1,"46142":-1,"46143":-1,"46144":-1,"46145":-1,"46146":0,"46147":-1,"46148":-1,"46149":-1,"46150":-1,"46151":-1,"46152":-1,"46153":-1,"46154":-1,"46155":-1,"46156":-1,"46157":-1,"46158":-1,"46159":-1,"46160":-1,"46161":-1,"46162":-1,"46163":-1,"46164":-1,"46165":-1,"46166":0,"46167":2682,"46168":-1,"46169":2683,"46170":-1,"46171":-1,"46172":-1,"46173":-1,"46174":2682,"46175":2683,"46176":-1,"46177":-1,"46178":2681,"46179":-1,"46180":-1,"46181":-1,"46182":-1,"46183":-1,"46184":0,"46185":-1,"46186":-1,"46187":-1,"46188":-1,"46189":-1,"46190":-1,"46191":-1,"46192":-1,"46193":2687,"46194":-1,"46195":-1,"46196":-1,"46197":2687,"46198":-1,"46199":-1,"46200":2681,"46201":-1,"46202":-1,"46203":-1,"46204":-1,"46205":-1,"46206":-1,"46207":-1,"46208":-1,"46209":-1,"46210":-1,"46211":2683,"46212":-1,"46213":-1,"46214":-1,"46215":0,"46216":-1,"46217":-1,"46218":2682,"46219":-1,"46220":-1,"46221":-1,"46222":-1,"46223":-1,"46224":2685,"46225":-1,"46226":-1,"46227":-1,"46228":-1,"46229":-1,"46230":-1,"46231":-1,"46232":-1,"46233":-1,"46234":-1,"46235":0,"46236":2685,"46237":-1,"46238":-1,"46239":-1,"46240":-1,"46241":-1,"46242":-1,"46243":-1,"46244":2687,"46245":-1,"46246":-1,"46247":-1,"46248":-1,"46249":0,"46250":-1,"46251":-1,"46252":-1,"46253":-1,"46254":-1,"46255":-1,"46256":0,"46257":-1,"46258":-1,"46259":-1,"46260":-1,"46261":0,"46262":-1,"46263":-1,"46264":-1,"46265":-1,"46266":-1,"46267":-1,"46268":-1,"46269":-1,"46270":-1,"46271":2687,"46272":-1,"46273":-1,"46274":-1,"46275":-1,"46276":-1,"46277":-1,"46278":-1,"46279":-1,"46280":-1,"46281":-1,"46282":-1,"46283":-1,"46284":2686,"46285":2682,"46286":-1,"46287":-1,"46288":-1,"46289":-1,"46290":-1,"46291":-1,"46292":2686,"46293":-1,"46294":-1,"46295":-1,"46296":-1,"46297":2683,"46298":-1,"46299":-1,"46300":-1,"46301":2682,"46302":-1,"46303":-1,"46304":-1,"46305":-1,"46306":-1,"46307":-1,"46308":-1,"46309":-1,"46310":-1,"46311":-1,"46312":-1,"46313":-1,"46314":-1,"46315":-1,"46316":-1,"46317":-1,"46318":-1,"46319":-1,"46320":2686,"46321":2683,"46322":-1,"46323":-1,"46324":-1,"46325":-1,"46326":2685,"46327":-1,"46328":-1,"46329":-1,"46330":2683,"46331":-1,"46332":-1,"46333":-1,"46334":-1,"46335":-1,"46336":-1,"46337":-1,"46338":-1,"46339":-1,"46340":-1,"46341":-1,"46342":-1,"46343":-1,"46344":-1,"46345":-1,"46346":-1,"46347":-1,"46348":-1,"46349":-1,"46350":-1,"46351":-1,"46352":-1,"46353":-1,"46354":-1,"46355":-1,"46356":-1,"46357":2682,"46358":-1,"46359":2686,"46360":-1,"46361":-1,"46362":-1,"46363":-1,"46364":-1,"46365":-1,"46366":-1,"46367":-1,"46368":-1,"46369":-1,"46370":-1,"46371":-1,"46372":-1,"46373":-1,"46374":-1,"46375":2684,"46376":-1,"46377":-1,"46378":-1,"46379":-1,"46380":-1,"46381":2682,"46382":-1,"46383":-1,"46384":-1,"46385":2684,"46386":-1,"46387":-1,"46388":-1,"46389":-1,"46390":-1,"46391":-1,"46392":-1,"46393":-1,"46394":-1,"46395":0,"46396":-1,"46397":-1,"46398":-1,"46399":-1,"46400":-1,"46401":-1,"46402":0,"46403":-1,"46404":-1,"46405":-1,"46406":-1,"46407":-1,"46408":-1,"46409":-1,"46410":-1,"46411":-1,"46412":-1,"46413":-1,"46414":-1,"46415":-1,"46416":-1,"46417":-1,"46418":-1,"46419":2687,"46420":-1,"46421":-1,"46422":2683,"46423":-1,"46424":-1,"46425":-1,"46426":-1,"46427":0,"46428":-1,"46429":-1,"46430":-1,"46431":-1,"46432":2683,"46433":-1,"46434":-1,"46435":2686,"46436":-1,"46437":-1,"46438":-1,"46439":2684,"46440":-1,"46441":-1,"46442":-1,"46443":2686,"46444":-1,"46445":-1,"46446":-1,"46447":-1,"46448":-1,"46449":-1,"46450":0,"46451":-1,"46452":-1,"46453":-1,"46454":-1,"46455":-1,"46456":-1,"46457":-1,"46458":2685,"46459":-1,"46460":-1,"46461":-1,"46462":-1,"46463":-1,"46464":-1,"46465":2685,"46466":0,"46467":-1,"46468":-1,"46469":-1,"46470":-1,"46471":-1,"46472":-1,"46473":-1,"46474":-1,"46475":-1,"46476":-1,"46477":-1,"46478":-1,"46479":-1,"46480":-1,"46481":-1,"46482":-1,"46483":-1,"46484":-1,"46485":-1,"46486":-1,"46487":2684,"46488":-1,"46489":-1,"46490":-1,"46491":-1,"46492":-1,"46493":-1,"46494":-1,"46495":-1,"46496":2682,"46497":2686,"46498":0,"46499":2681,"46500":-1,"46501":-1,"46502":-1,"46503":0,"46504":-1,"46505":-1,"46506":0,"46507":-1,"46508":-1,"46509":-1,"46510":-1,"46511":-1,"46512":-1,"46513":-1,"46514":-1,"46515":-1,"46516":0,"46517":-1,"46518":-1,"46519":-1,"46520":-1,"46521":-1,"46522":-1,"46523":-1,"46524":-1,"46525":-1,"46526":-1,"46527":-1,"46528":-1,"46529":-1,"46530":-1,"46531":-1,"46532":2683,"46533":-1,"46534":-1,"46535":-1,"46536":-1,"46537":-1,"46538":-1,"46539":-1,"46540":-1,"46541":-1,"46542":-1,"46543":-1,"46544":-1,"46545":-1,"46546":0,"46547":-1,"46548":-1,"46549":-1,"46550":-1,"46551":-1,"46552":-1,"46553":-1,"46554":-1,"46555":-1,"46556":0,"46557":-1,"46558":2682,"46559":-1,"46560":-1,"46561":2687,"46562":0,"46563":-1,"46564":-1,"46565":-1,"46566":2684,"46567":2686,"46568":2687,"46569":-1,"46570":-1,"46571":2685,"46572":-1,"46573":-1,"46574":-1,"46575":-1,"46576":-1,"46577":-1,"46578":-1,"46579":-1,"46580":-1,"46581":-1,"46582":-1,"46583":-1,"46584":2681,"46585":-1,"46586":-1,"46587":-1,"46588":-1,"46589":-1,"46590":-1,"46591":-1,"46592":-1,"46593":-1,"46594":-1,"46595":-1,"46596":-1,"46597":-1,"46598":0,"46599":2683,"46600":-1,"46601":-1,"46602":-1,"46603":-1,"46604":0,"46605":-1,"46606":-1,"46607":-1,"46608":-1,"46609":-1,"46610":-1,"46611":-1,"46612":-1,"46613":-1,"46614":2682,"46615":-1,"46616":-1,"46617":-1,"46618":-1,"46619":-1,"46620":-1,"46621":-1,"46622":-1,"46623":-1,"46624":-1,"46625":0,"46626":-1,"46627":2682,"46628":-1,"46629":-1,"46630":2683,"46631":-1,"46632":-1,"46633":-1,"46634":-1,"46635":-1,"46636":-1,"46637":-1,"46638":-1,"46639":-1,"46640":-1,"46641":-1,"46642":2685,"46643":2686,"46644":-1,"46645":-1,"46646":-1,"46647":-1,"46648":-1,"46649":-1,"46650":2685,"46651":-1,"46652":2686,"46653":-1,"46654":-1,"46655":-1,"46656":0,"46657":-1,"46658":2683,"46659":-1,"46660":-1,"46661":-1,"46662":-1,"46663":2685,"46664":-1,"46665":-1,"46666":0,"46667":-1,"46668":-1,"46669":-1,"46670":-1,"46671":-1,"46672":-1,"46673":-1,"46674":-1,"46675":-1,"46676":-1,"46677":-1,"46678":-1,"46679":-1,"46680":-1,"46681":-1,"46682":-1,"46683":-1,"46684":-1,"46685":-1,"46686":-1,"46687":-1,"46688":-1,"46689":-1,"46690":-1,"46691":-1,"46692":-1,"46693":-1,"46694":-1,"46695":2686,"46696":2686,"46697":-1,"46698":-1,"46699":2682,"46700":-1,"46701":-1,"46702":-1,"46703":-1,"46704":-1,"46705":2681,"46706":-1,"46707":-1,"46708":-1,"46709":-1,"46710":-1,"46711":-1,"46712":-1,"46713":-1,"46714":-1,"46715":-1,"46716":-1,"46717":-1,"46718":2685,"46719":-1,"46720":-1,"46721":-1,"46722":2682,"46723":2684,"46724":2687,"46725":-1,"46726":-1,"46727":-1,"46728":2682,"46729":-1,"46730":-1,"46731":-1,"46732":2684,"46733":-1,"46734":-1,"46735":-1,"46736":-1,"46737":2683,"46738":2685,"46739":-1,"46740":-1,"46741":-1,"46742":2685,"46743":-1,"46744":-1,"46745":-1,"46746":-1,"46747":-1,"46748":-1,"46749":-1,"46750":-1,"46751":-1,"46752":-1,"46753":-1,"46754":-1,"46755":-1,"46756":-1,"46757":-1,"46758":-1,"46759":-1,"46760":-1,"46761":-1,"46762":-1,"46763":2684,"46764":-1,"46765":2685,"46766":-1,"46767":-1,"46768":-1,"46769":-1,"46770":-1,"46771":-1,"46772":-1,"46773":-1,"46774":2683,"46775":-1,"46776":-1,"46777":-1,"46778":-1,"46779":-1,"46780":-1,"46781":-1,"46782":-1,"46783":2681,"46784":-1,"46785":-1,"46786":2685,"46787":-1,"46788":-1,"46789":-1,"46790":-1,"46791":-1,"46792":-1,"46793":-1,"46794":-1,"46795":-1,"46796":-1,"46797":-1,"46798":-1,"46799":-1,"46800":-1,"46801":-1,"46802":0,"46803":-1,"46804":-1,"46805":-1,"46806":-1,"46807":-1,"46808":-1,"46809":-1,"46810":-1,"46811":2682,"46812":-1,"46813":-1,"46814":-1,"46815":-1,"46816":-1,"46817":-1,"46818":-1,"46819":-1,"46820":-1,"46821":-1,"46822":2683,"46823":-1,"46824":-1,"46825":-1,"46826":-1,"46827":-1,"46828":-1,"46829":2685,"46830":-1,"46831":-1,"46832":-1,"46833":2686,"46834":0,"46835":-1,"46836":-1,"46837":-1,"46838":-1,"46839":-1,"46840":-1,"46841":-1,"46842":-1,"46843":-1,"46844":-1,"46845":0,"46846":-1,"46847":-1,"46848":-1,"46849":-1,"46850":-1,"46851":2684,"46852":2684,"46853":-1,"46854":-1,"46855":2685,"46856":-1,"46857":-1,"46858":-1,"46859":-1,"46860":-1,"46861":-1,"46862":-1,"46863":-1,"46864":-1,"46865":-1,"46866":-1,"46867":-1,"46868":-1,"46869":-1,"46870":2684,"46871":2684,"46872":-1,"46873":-1,"46874":-1,"46875":-1,"46876":-1,"46877":-1,"46878":-1,"46879":-1,"46880":2687,"46881":-1,"46882":-1,"46883":-1,"46884":-1,"46885":-1,"46886":-1,"46887":-1,"46888":-1,"46889":-1,"46890":-1,"46891":-1,"46892":0,"46893":-1,"46894":-1,"46895":-1,"46896":2683,"46897":-1,"46898":-1,"46899":-1,"46900":-1,"46901":-1,"46902":-1,"46903":0,"46904":-1,"46905":-1,"46906":-1,"46907":-1,"46908":-1,"46909":-1,"46910":-1,"46911":-1,"46912":-1,"46913":-1,"46914":-1,"46915":-1,"46916":-1,"46917":-1,"46918":2685,"46919":-1,"46920":-1,"46921":-1,"46922":-1,"46923":-1,"46924":-1,"46925":-1,"46926":-1,"46927":-1,"46928":-1,"46929":-1,"46930":-1,"46931":-1,"46932":-1,"46933":-1,"46934":2683,"46935":2682,"46936":-1,"46937":-1,"46938":-1,"46939":-1,"46940":-1,"46941":-1,"46942":2681,"46943":-1,"46944":-1,"46945":-1,"46946":-1,"46947":-1,"46948":-1,"46949":0,"46950":-1,"46951":-1,"46952":-1,"46953":-1,"46954":-1,"46955":-1,"46956":-1,"46957":-1,"46958":-1,"46959":-1,"46960":-1,"46961":-1,"46962":-1,"46963":2684,"46964":-1,"46965":-1,"46966":-1,"46967":-1,"46968":-1,"46969":-1,"46970":-1,"46971":-1,"46972":-1,"46973":-1,"46974":-1,"46975":-1,"46976":-1,"46977":-1,"46978":2684,"46979":2681,"46980":-1,"46981":-1,"46982":-1,"46983":-1,"46984":2684,"46985":-1,"46986":-1,"46987":-1,"46988":-1,"46989":-1,"46990":-1,"46991":-1,"46992":-1,"46993":-1,"46994":-1,"46995":-1,"46996":-1,"46997":-1,"46998":2682,"46999":2687,"47000":-1,"47001":-1,"47002":2686,"47003":-1,"47004":-1,"47005":-1,"47006":-1,"47007":-1,"47008":-1,"47009":-1,"47010":-1,"47011":-1,"47012":-1,"47013":-1,"47014":-1,"47015":-1,"47016":-1,"47017":-1,"47018":-1,"47019":-1,"47020":-1,"47021":2686,"47022":-1,"47023":-1,"47024":-1,"47025":-1,"47026":-1,"47027":2684,"47028":-1,"47029":-1,"47030":-1,"47031":-1,"47032":0,"47033":2681,"47034":-1,"47035":2681,"47036":-1,"47037":0,"47038":-1,"47039":-1,"47040":-1,"47041":-1,"47042":-1,"47043":0,"47044":-1,"47045":-1,"47046":-1,"47047":-1,"47048":-1,"47049":-1,"47050":-1,"47051":-1,"47052":-1,"47053":-1,"47054":-1,"47055":-1,"47056":-1,"47057":-1,"47058":-1,"47059":0,"47060":-1,"47061":2686,"47062":-1,"47063":-1,"47064":-1,"47065":-1,"47066":-1,"47067":-1,"47068":-1,"47069":-1,"47070":-1,"47071":-1,"47072":-1,"47073":-1,"47074":-1,"47075":-1,"47076":2684,"47077":-1,"47078":-1,"47079":-1,"47080":-1,"47081":-1,"47082":2684,"47083":-1,"47084":-1,"47085":-1,"47086":-1,"47087":-1,"47088":-1,"47089":-1,"47090":-1,"47091":-1,"47092":-1,"47093":-1,"47094":-1,"47095":-1,"47096":0,"47097":-1,"47098":-1,"47099":-1,"47100":-1,"47101":-1,"47102":-1,"47103":-1,"47104":2685,"47105":-1,"47106":-1,"47107":-1,"47108":-1,"47109":-1,"47110":-1,"47111":2686,"47112":-1,"47113":-1,"47114":-1,"47115":-1,"47116":-1,"47117":-1,"47118":-1,"47119":-1,"47120":-1,"47121":-1,"47122":-1,"47123":-1,"47124":-1,"47125":-1,"47126":-1,"47127":-1,"47128":-1,"47129":-1,"47130":-1,"47131":-1,"47132":0,"47133":-1,"47134":-1,"47135":-1,"47136":-1,"47137":-1,"47138":-1,"47139":-1,"47140":-1,"47141":2683,"47142":-1,"47143":-1,"47144":-1,"47145":-1,"47146":-1,"47147":-1,"47148":-1,"47149":-1,"47150":-1,"47151":-1,"47152":2687,"47153":-1,"47154":-1,"47155":-1,"47156":-1,"47157":-1,"47158":-1,"47159":-1,"47160":-1,"47161":-1,"47162":2682,"47163":-1,"47164":-1,"47165":-1,"47166":2681,"47167":-1,"47168":-1,"47169":-1,"47170":2686,"47171":-1,"47172":2683,"47173":-1,"47174":-1,"47175":-1,"47176":-1,"47177":-1,"47178":-1,"47179":-1,"47180":-1,"47181":-1,"47182":0,"47183":-1,"47184":-1,"47185":-1,"47186":-1,"47187":2685,"47188":-1,"47189":-1,"47190":-1,"47191":-1,"47192":-1,"47193":0,"47194":-1,"47195":2686,"47196":-1,"47197":-1,"47198":-1,"47199":2684,"47200":-1,"47201":-1,"47202":-1,"47203":-1,"47204":-1,"47205":-1,"47206":-1,"47207":-1,"47208":-1,"47209":2685,"47210":-1,"47211":-1,"47212":2682,"47213":-1,"47214":-1,"47215":-1,"47216":-1,"47217":-1,"47218":-1,"47219":0,"47220":-1,"47221":-1,"47222":-1,"47223":-1,"47224":0,"47225":-1,"47226":-1,"47227":-1,"47228":0,"47229":-1,"47230":2684,"47231":-1,"47232":-1,"47233":-1,"47234":-1,"47235":-1,"47236":-1,"47237":2686,"47238":-1,"47239":-1,"47240":-1,"47241":-1,"47242":-1,"47243":2684,"47244":-1,"47245":-1,"47246":-1,"47247":-1,"47248":-1,"47249":-1,"47250":-1,"47251":-1,"47252":-1,"47253":-1,"47254":-1,"47255":-1,"47256":-1,"47257":-1,"47258":-1,"47259":-1,"47260":2686,"47261":-1,"47262":-1,"47263":-1,"47264":-1,"47265":0,"47266":-1,"47267":2684,"47268":-1,"47269":-1,"47270":-1,"47271":-1,"47272":-1,"47273":2685,"47274":-1,"47275":-1,"47276":2681,"47277":-1,"47278":-1,"47279":-1,"47280":-1,"47281":-1,"47282":2682,"47283":-1,"47284":-1,"47285":-1,"47286":-1,"47287":-1,"47288":-1,"47289":-1,"47290":2682,"47291":-1,"47292":-1,"47293":-1,"47294":0,"47295":-1,"47296":-1,"47297":-1,"47298":-1,"47299":-1,"47300":-1,"47301":-1,"47302":-1,"47303":-1,"47304":-1,"47305":-1,"47306":-1,"47307":-1,"47308":-1,"47309":2682,"47310":0,"47311":-1,"47312":-1,"47313":-1,"47314":-1,"47315":-1,"47316":-1,"47317":-1,"47318":-1,"47319":-1,"47320":-1,"47321":-1,"47322":-1,"47323":-1,"47324":-1,"47325":-1,"47326":-1,"47327":-1,"47328":-1,"47329":-1,"47330":-1,"47331":-1,"47332":-1,"47333":-1,"47334":-1,"47335":0,"47336":-1,"47337":-1,"47338":2684,"47339":-1,"47340":-1,"47341":-1,"47342":-1,"47343":-1,"47344":-1,"47345":-1,"47346":-1,"47347":-1,"47348":-1,"47349":-1,"47350":-1,"47351":-1,"47352":-1,"47353":-1,"47354":-1,"47355":-1,"47356":-1,"47357":-1,"47358":-1,"47359":-1,"47360":2686,"47361":2685,"47362":-1,"47363":-1,"47364":-1,"47365":-1,"47366":-1,"47367":2686,"47368":-1,"47369":0,"47370":-1,"47371":-1,"47372":-1,"47373":-1,"47374":-1,"47375":-1,"47376":-1,"47377":-1,"47378":-1,"47379":-1,"47380":-1,"47381":-1,"47382":-1,"47383":-1,"47384":-1,"47385":-1,"47386":-1,"47387":-1,"47388":-1,"47389":-1,"47390":-1,"47391":-1,"47392":-1,"47393":-1,"47394":0,"47395":-1,"47396":-1,"47397":-1,"47398":2684,"47399":-1,"47400":-1,"47401":-1,"47402":0,"47403":2682,"47404":2687,"47405":-1,"47406":2681,"47407":2687,"47408":-1,"47409":0,"47410":-1,"47411":2682,"47412":-1,"47413":-1,"47414":-1,"47415":-1,"47416":-1,"47417":-1,"47418":-1,"47419":-1,"47420":-1,"47421":0,"47422":-1,"47423":-1,"47424":0,"47425":-1,"47426":-1,"47427":-1,"47428":-1,"47429":-1,"47430":-1,"47431":-1,"47432":-1,"47433":-1,"47434":-1,"47435":-1,"47436":-1,"47437":-1,"47438":-1,"47439":2686,"47440":-1,"47441":-1,"47442":-1,"47443":-1,"47444":0,"47445":-1,"47446":-1,"47447":-1,"47448":-1,"47449":-1,"47450":-1,"47451":-1,"47452":0,"47453":-1,"47454":-1,"47455":-1,"47456":-1,"47457":-1,"47458":-1,"47459":-1,"47460":-1,"47461":2682,"47462":0,"47463":-1,"47464":-1,"47465":-1,"47466":-1,"47467":-1,"47468":-1,"47469":-1,"47470":-1,"47471":2686,"47472":-1,"47473":-1,"47474":-1,"47475":2687,"47476":-1,"47477":-1,"47478":-1,"47479":-1,"47480":-1,"47481":-1,"47482":-1,"47483":-1,"47484":-1,"47485":-1,"47486":-1,"47487":-1,"47488":-1,"47489":-1,"47490":-1,"47491":-1,"47492":-1,"47493":-1,"47494":2684,"47495":-1,"47496":-1,"47497":2684,"47498":-1,"47499":-1,"47500":-1,"47501":-1,"47502":-1,"47503":-1,"47504":-1,"47505":-1,"47506":-1,"47507":-1,"47508":-1,"47509":-1,"47510":-1,"47511":-1,"47512":2682,"47513":-1,"47514":-1,"47515":2682,"47516":-1,"47517":2683,"47518":-1,"47519":-1,"47520":-1,"47521":-1,"47522":-1,"47523":-1,"47524":2683,"47525":2686,"47526":-1,"47527":-1,"47528":2686,"47529":-1,"47530":2683,"47531":-1,"47532":2685,"47533":2686,"47534":2685,"47535":-1,"47536":-1,"47537":-1,"47538":-1,"47539":2682,"47540":-1,"47541":-1,"47542":-1,"47543":-1,"47544":-1,"47545":-1,"47546":2685,"47547":-1,"47548":2685,"47549":-1,"47550":2681,"47551":-1,"47552":-1,"47553":-1,"47554":-1,"47555":2685,"47556":2686,"47557":-1,"47558":2686,"47559":-1,"47560":-1,"47561":-1,"47562":-1,"47563":-1,"47564":2683,"47565":-1,"47566":-1,"47567":-1,"47568":-1,"47569":-1,"47570":-1,"47571":-1,"47572":-1,"47573":-1,"47574":2682,"47575":-1,"47576":-1,"47577":-1,"47578":-1,"47579":-1,"47580":2685,"47581":-1,"47582":-1,"47583":-1,"47584":-1,"47585":2682,"47586":-1,"47587":-1,"47588":-1,"47589":-1,"47590":-1,"47591":-1,"47592":-1,"47593":-1,"47594":-1,"47595":-1,"47596":-1,"47597":-1,"47598":-1,"47599":-1,"47600":-1,"47601":2686,"47602":-1,"47603":-1,"47604":-1,"47605":-1,"47606":-1,"47607":-1,"47608":-1,"47609":-1,"47610":-1,"47611":-1,"47612":-1,"47613":-1,"47614":-1,"47615":-1,"47616":2683,"47617":-1,"47618":-1,"47619":-1,"47620":-1,"47621":-1,"47622":-1,"47623":-1,"47624":2684,"47625":-1,"47626":-1,"47627":-1,"47628":-1,"47629":-1,"47630":-1,"47631":-1,"47632":-1,"47633":-1,"47634":2684,"47635":-1,"47636":-1,"47637":2685,"47638":2682,"47639":-1,"47640":-1,"47641":-1,"47642":-1,"47643":-1,"47644":2685,"47645":-1,"47646":-1,"47647":-1,"47648":-1,"47649":-1,"47650":-1,"47651":-1,"47652":-1,"47653":2682,"47654":-1,"47655":-1,"47656":-1,"47657":-1,"47658":-1,"47659":-1,"47660":-1,"47661":-1,"47662":-1,"47663":-1,"47664":-1,"47665":-1,"47666":-1,"47667":-1,"47668":-1,"47669":-1,"47670":-1,"47671":-1,"47672":-1,"47673":-1,"47674":-1,"47675":-1,"47676":-1,"47677":-1,"47678":-1,"47679":2687,"47680":-1,"47681":-1,"47682":-1,"47683":-1,"47684":-1,"47685":-1,"47686":2686,"47687":-1,"47688":-1,"47689":-1,"47690":2685,"47691":-1,"47692":2683,"47693":-1,"47694":-1,"47695":-1,"47696":-1,"47697":-1,"47698":2681,"47699":-1,"47700":-1,"47701":-1,"47702":-1,"47703":-1,"47704":-1,"47705":-1,"47706":-1,"47707":-1,"47708":-1,"47709":-1,"47710":-1,"47711":-1,"47712":-1,"47713":0,"47714":-1,"47715":0,"47716":-1,"47717":-1,"47718":-1,"47719":0,"47720":-1,"47721":-1,"47722":-1,"47723":-1,"47724":-1,"47725":-1,"47726":-1,"47727":-1,"47728":-1,"47729":-1,"47730":-1,"47731":-1,"47732":2686,"47733":-1,"47734":-1,"47735":2687,"47736":2683,"47737":-1,"47738":-1,"47739":-1,"47740":-1,"47741":-1,"47742":-1,"47743":-1,"47744":-1,"47745":-1,"47746":-1,"47747":-1,"47748":-1,"47749":-1,"47750":-1,"47751":-1,"47752":-1,"47753":-1,"47754":-1,"47755":-1,"47756":-1,"47757":-1,"47758":-1,"47759":-1,"47760":0,"47761":-1,"47762":-1,"47763":-1,"47764":-1,"47765":2685,"47766":-1,"47767":-1,"47768":-1,"47769":2684,"47770":-1,"47771":-1,"47772":-1,"47773":-1,"47774":-1,"47775":2687,"47776":-1,"47777":-1,"47778":-1,"47779":0,"47780":-1,"47781":-1,"47782":-1,"47783":-1,"47784":2686,"47785":-1,"47786":-1,"47787":-1,"47788":-1,"47789":-1,"47790":0,"47791":-1,"47792":-1,"47793":-1,"47794":2682,"47795":-1,"47796":-1,"47797":-1,"47798":-1,"47799":-1,"47800":2686,"47801":-1,"47802":-1,"47803":2682,"47804":-1,"47805":-1,"47806":-1,"47807":-1,"47808":-1,"47809":-1,"47810":-1,"47811":-1,"47812":-1,"47813":-1,"47814":-1,"47815":-1,"47816":-1,"47817":-1,"47818":-1,"47819":2682,"47820":-1,"47821":-1,"47822":-1,"47823":0,"47824":-1,"47825":-1,"47826":-1,"47827":-1,"47828":0,"47829":-1,"47830":2685,"47831":-1,"47832":-1,"47833":2685,"47834":-1,"47835":-1,"47836":-1,"47837":-1,"47838":-1,"47839":-1,"47840":-1,"47841":-1,"47842":-1,"47843":-1,"47844":-1,"47845":-1,"47846":-1,"47847":-1,"47848":-1,"47849":-1,"47850":-1,"47851":-1,"47852":0,"47853":-1,"47854":-1,"47855":-1,"47856":-1,"47857":2687,"47858":-1,"47859":-1,"47860":-1,"47861":-1,"47862":-1,"47863":-1,"47864":-1,"47865":-1,"47866":-1,"47867":-1,"47868":-1,"47869":-1,"47870":-1,"47871":-1,"47872":-1,"47873":-1,"47874":-1,"47875":2683,"47876":-1,"47877":2684,"47878":0,"47879":-1,"47880":-1,"47881":-1,"47882":-1,"47883":-1,"47884":2687,"47885":-1,"47886":2685,"47887":-1,"47888":-1,"47889":2684,"47890":-1,"47891":2682,"47892":-1,"47893":-1,"47894":-1,"47895":-1,"47896":-1,"47897":2685,"47898":-1,"47899":-1,"47900":-1,"47901":-1,"47902":-1,"47903":-1,"47904":-1,"47905":-1,"47906":-1,"47907":-1,"47908":-1,"47909":-1,"47910":-1,"47911":-1,"47912":-1,"47913":-1,"47914":-1,"47915":-1,"47916":-1,"47917":2682,"47918":-1,"47919":-1,"47920":-1,"47921":-1,"47922":-1,"47923":-1,"47924":2684,"47925":-1,"47926":-1,"47927":2683,"47928":-1,"47929":-1,"47930":-1,"47931":-1,"47932":-1,"47933":-1,"47934":-1,"47935":-1,"47936":-1,"47937":2683,"47938":-1,"47939":-1,"47940":2685,"47941":-1,"47942":-1,"47943":-1,"47944":-1,"47945":-1,"47946":-1,"47947":-1,"47948":-1,"47949":-1,"47950":-1,"47951":-1,"47952":-1,"47953":-1,"47954":-1,"47955":0,"47956":-1,"47957":-1,"47958":-1,"47959":-1,"47960":-1,"47961":-1,"47962":-1,"47963":-1,"47964":-1,"47965":2686,"47966":-1,"47967":-1,"47968":-1,"47969":-1,"47970":2686,"47971":-1,"47972":-1,"47973":2682,"47974":0,"47975":-1,"47976":-1,"47977":-1,"47978":-1,"47979":-1,"47980":2685,"47981":-1,"47982":-1,"47983":2687,"47984":-1,"47985":-1,"47986":2686,"47987":2686,"47988":2681,"47989":-1,"47990":-1,"47991":0,"47992":-1,"47993":-1,"47994":-1,"47995":2685,"47996":-1,"47997":-1,"47998":-1,"47999":-1,"48000":0,"48001":-1,"48002":-1,"48003":-1,"48004":-1,"48005":-1,"48006":-1,"48007":-1,"48008":-1,"48009":-1,"48010":-1,"48011":-1,"48012":-1,"48013":-1,"48014":-1,"48015":-1,"48016":-1,"48017":-1,"48018":-1,"48019":0,"48020":-1,"48021":-1,"48022":-1,"48023":-1,"48024":2686,"48025":-1,"48026":-1,"48027":-1,"48028":-1,"48029":-1,"48030":-1,"48031":-1,"48032":2682,"48033":-1,"48034":-1,"48035":-1,"48036":-1,"48037":-1,"48038":-1,"48039":-1,"48040":-1,"48041":-1,"48042":-1,"48043":-1,"48044":-1,"48045":-1,"48046":-1,"48047":-1,"48048":-1,"48049":-1,"48050":-1,"48051":-1,"48052":-1,"48053":-1,"48054":2686,"48055":-1,"48056":-1,"48057":-1,"48058":-1,"48059":-1,"48060":-1,"48061":2681,"48062":-1,"48063":-1,"48064":-1,"48065":-1,"48066":-1,"48067":-1,"48068":-1,"48069":-1,"48070":-1,"48071":-1,"48072":-1,"48073":0,"48074":-1,"48075":-1,"48076":-1,"48077":-1,"48078":-1,"48079":-1,"48080":2682,"48081":2682,"48082":2686,"48083":-1,"48084":-1,"48085":-1,"48086":-1,"48087":0,"48088":2681,"48089":2686,"48090":0,"48091":-1,"48092":2687,"48093":-1,"48094":-1,"48095":-1,"48096":-1,"48097":-1,"48098":0,"48099":-1,"48100":-1,"48101":-1,"48102":-1,"48103":-1,"48104":-1,"48105":-1,"48106":-1,"48107":-1,"48108":-1,"48109":-1,"48110":-1,"48111":-1,"48112":0,"48113":-1,"48114":-1,"48115":2682,"48116":-1,"48117":-1,"48118":-1,"48119":-1,"48120":-1,"48121":-1,"48122":-1,"48123":-1,"48124":2681,"48125":-1,"48126":-1,"48127":-1,"48128":-1,"48129":-1,"48130":-1,"48131":-1,"48132":0,"48133":-1,"48134":2682,"48135":2684,"48136":-1,"48137":-1,"48138":-1,"48139":-1,"48140":-1,"48141":-1,"48142":-1,"48143":-1,"48144":-1,"48145":-1,"48146":-1,"48147":-1,"48148":-1,"48149":-1,"48150":0,"48151":-1,"48152":-1,"48153":-1,"48154":-1,"48155":-1,"48156":-1,"48157":-1,"48158":-1,"48159":-1,"48160":-1,"48161":-1,"48162":-1,"48163":-1,"48164":-1,"48165":-1,"48166":-1,"48167":-1,"48168":-1,"48169":-1,"48170":-1,"48171":0,"48172":-1,"48173":-1,"48174":-1,"48175":-1,"48176":-1,"48177":-1,"48178":2684,"48179":-1,"48180":-1,"48181":2683,"48182":-1,"48183":-1,"48184":-1,"48185":-1,"48186":-1,"48187":-1,"48188":-1,"48189":2687,"48190":-1,"48191":-1,"48192":-1,"48193":-1,"48194":-1,"48195":-1,"48196":2682,"48197":-1,"48198":-1,"48199":-1,"48200":-1,"48201":-1,"48202":-1,"48203":-1,"48204":-1,"48205":-1,"48206":-1,"48207":-1,"48208":0,"48209":-1,"48210":-1,"48211":-1,"48212":2684,"48213":-1,"48214":-1,"48215":-1,"48216":-1,"48217":-1,"48218":2686,"48219":2682,"48220":-1,"48221":-1,"48222":-1,"48223":-1,"48224":-1,"48225":2681,"48226":-1,"48227":-1,"48228":0,"48229":-1,"48230":-1,"48231":-1,"48232":2685,"48233":-1,"48234":-1,"48235":-1,"48236":2684,"48237":-1,"48238":-1,"48239":-1,"48240":-1,"48241":-1,"48242":-1,"48243":-1,"48244":-1,"48245":-1,"48246":-1,"48247":-1,"48248":-1,"48249":-1,"48250":-1,"48251":2684,"48252":-1,"48253":-1,"48254":-1,"48255":-1,"48256":-1,"48257":2682,"48258":0,"48259":-1,"48260":0,"48261":0,"48262":-1,"48263":0,"48264":-1,"48265":-1,"48266":-1,"48267":-1,"48268":-1,"48269":-1,"48270":-1,"48271":-1,"48272":-1,"48273":-1,"48274":2682,"48275":-1,"48276":-1,"48277":-1,"48278":-1,"48279":-1,"48280":-1,"48281":-1,"48282":-1,"48283":-1,"48284":-1,"48285":-1,"48286":-1,"48287":2682,"48288":-1,"48289":-1,"48290":-1,"48291":-1,"48292":-1,"48293":-1,"48294":-1,"48295":-1,"48296":-1,"48297":2684,"48298":2684,"48299":2687,"48300":-1,"48301":-1,"48302":-1,"48303":-1,"48304":-1,"48305":-1,"48306":-1,"48307":-1,"48308":-1,"48309":2685,"48310":-1,"48311":-1,"48312":-1,"48313":2686,"48314":-1,"48315":-1,"48316":2687,"48317":-1,"48318":-1,"48319":-1,"48320":-1,"48321":-1,"48322":2684,"48323":-1,"48324":-1,"48325":-1,"48326":2681,"48327":2686,"48328":-1,"48329":2682,"48330":2682,"48331":-1,"48332":-1,"48333":-1,"48334":-1,"48335":-1,"48336":-1,"48337":2682,"48338":-1,"48339":-1,"48340":-1,"48341":2683,"48342":-1,"48343":-1,"48344":-1,"48345":-1,"48346":2686,"48347":-1,"48348":-1,"48349":-1,"48350":2687,"48351":-1,"48352":-1,"48353":-1,"48354":-1,"48355":-1,"48356":-1,"48357":2684,"48358":-1,"48359":-1,"48360":-1,"48361":-1,"48362":-1,"48363":-1,"48364":0,"48365":-1,"48366":-1,"48367":2682,"48368":-1,"48369":-1,"48370":-1,"48371":-1,"48372":-1,"48373":-1,"48374":-1,"48375":-1,"48376":-1,"48377":-1,"48378":-1,"48379":2685,"48380":-1,"48381":-1,"48382":-1,"48383":2685,"48384":-1,"48385":-1,"48386":-1,"48387":-1,"48388":2683,"48389":-1,"48390":-1,"48391":-1,"48392":-1,"48393":2686,"48394":-1,"48395":2681,"48396":-1,"48397":-1,"48398":-1,"48399":-1,"48400":-1,"48401":-1,"48402":-1,"48403":-1,"48404":0,"48405":-1,"48406":-1,"48407":-1,"48408":2684,"48409":-1,"48410":-1,"48411":-1,"48412":-1,"48413":-1,"48414":-1,"48415":-1,"48416":-1,"48417":-1,"48418":-1,"48419":-1,"48420":-1,"48421":-1,"48422":-1,"48423":2683,"48424":-1,"48425":0,"48426":0,"48427":-1,"48428":-1,"48429":2682,"48430":-1,"48431":-1,"48432":-1,"48433":-1,"48434":-1,"48435":-1,"48436":-1,"48437":-1,"48438":-1,"48439":-1,"48440":-1,"48441":-1,"48442":-1,"48443":-1,"48444":-1,"48445":-1,"48446":-1,"48447":-1,"48448":-1,"48449":-1,"48450":-1,"48451":-1,"48452":-1,"48453":-1,"48454":-1,"48455":-1,"48456":-1,"48457":-1,"48458":-1,"48459":2683,"48460":-1,"48461":0,"48462":-1,"48463":2685,"48464":-1,"48465":-1,"48466":-1,"48467":-1,"48468":-1,"48469":-1,"48470":-1,"48471":-1,"48472":-1,"48473":-1,"48474":-1,"48475":-1,"48476":-1,"48477":-1,"48478":-1,"48479":-1,"48480":-1,"48481":-1,"48482":-1,"48483":-1,"48484":-1,"48485":-1,"48486":-1,"48487":-1,"48488":-1,"48489":-1,"48490":0,"48491":-1,"48492":-1,"48493":-1,"48494":-1,"48495":-1,"48496":2684,"48497":-1,"48498":-1,"48499":2686,"48500":-1,"48501":2686,"48502":-1,"48503":-1,"48504":-1,"48505":-1,"48506":-1,"48507":-1,"48508":2684,"48509":-1,"48510":-1,"48511":-1,"48512":-1,"48513":-1,"48514":-1,"48515":-1,"48516":-1,"48517":-1,"48518":-1,"48519":-1,"48520":-1,"48521":-1,"48522":-1,"48523":-1,"48524":-1,"48525":2685,"48526":-1,"48527":-1,"48528":-1,"48529":-1,"48530":-1,"48531":-1,"48532":-1,"48533":-1,"48534":-1,"48535":-1,"48536":-1,"48537":0,"48538":-1,"48539":-1,"48540":2686,"48541":-1,"48542":-1,"48543":2681,"48544":-1,"48545":-1,"48546":-1,"48547":-1,"48548":-1,"48549":-1,"48550":-1,"48551":-1,"48552":2683,"48553":-1,"48554":-1,"48555":-1,"48556":-1,"48557":0,"48558":-1,"48559":-1,"48560":-1,"48561":-1,"48562":-1,"48563":-1,"48564":-1,"48565":-1,"48566":-1,"48567":-1,"48568":-1,"48569":-1,"48570":-1,"48571":-1,"48572":-1,"48573":-1,"48574":-1,"48575":-1,"48576":-1,"48577":-1,"48578":2684,"48579":-1,"48580":-1,"48581":2682,"48582":-1,"48583":-1,"48584":-1,"48585":-1,"48586":2685,"48587":-1,"48588":-1,"48589":-1,"48590":-1,"48591":-1,"48592":2685,"48593":-1,"48594":-1,"48595":-1,"48596":2683,"48597":-1,"48598":2685,"48599":-1,"48600":-1,"48601":-1,"48602":-1,"48603":-1,"48604":-1,"48605":2684,"48606":-1,"48607":-1,"48608":-1,"48609":-1,"48610":-1,"48611":-1,"48612":-1,"48613":-1,"48614":-1,"48615":-1,"48616":-1,"48617":-1,"48618":-1,"48619":-1,"48620":-1,"48621":2684,"48622":-1,"48623":-1,"48624":-1,"48625":-1,"48626":-1,"48627":-1,"48628":-1,"48629":-1,"48630":-1,"48631":-1,"48632":-1,"48633":-1,"48634":-1,"48635":-1,"48636":-1,"48637":-1,"48638":-1,"48639":2683,"48640":2681,"48641":-1,"48642":-1,"48643":-1,"48644":-1,"48645":-1,"48646":-1,"48647":-1,"48648":-1,"48649":-1,"48650":-1,"48651":-1,"48652":-1,"48653":-1,"48654":-1,"48655":-1,"48656":-1,"48657":-1,"48658":-1,"48659":-1,"48660":-1,"48661":-1,"48662":-1,"48663":-1,"48664":-1,"48665":-1,"48666":-1,"48667":-1,"48668":-1,"48669":2684,"48670":-1,"48671":2686,"48672":-1,"48673":-1,"48674":-1,"48675":2686,"48676":-1,"48677":-1,"48678":-1,"48679":-1,"48680":2685,"48681":-1,"48682":-1,"48683":-1,"48684":-1,"48685":-1,"48686":-1,"48687":-1,"48688":-1,"48689":-1,"48690":-1,"48691":-1,"48692":-1,"48693":-1,"48694":-1,"48695":-1,"48696":-1,"48697":-1,"48698":-1,"48699":2686,"48700":-1,"48701":-1,"48702":-1,"48703":-1,"48704":-1,"48705":-1,"48706":0,"48707":-1,"48708":-1,"48709":-1,"48710":-1,"48711":-1,"48712":-1,"48713":-1,"48714":-1,"48715":-1,"48716":-1,"48717":-1,"48718":2685,"48719":-1,"48720":2685,"48721":-1,"48722":-1,"48723":2684,"48724":-1,"48725":2682,"48726":-1,"48727":-1,"48728":-1,"48729":-1,"48730":-1,"48731":-1,"48732":-1,"48733":-1,"48734":-1,"48735":-1,"48736":-1,"48737":-1,"48738":-1,"48739":-1,"48740":-1,"48741":-1,"48742":-1,"48743":-1,"48744":-1,"48745":-1,"48746":-1,"48747":-1,"48748":2684,"48749":-1,"48750":2686,"48751":-1,"48752":-1,"48753":-1,"48754":-1,"48755":-1,"48756":-1,"48757":-1,"48758":2686,"48759":-1,"48760":-1,"48761":2685,"48762":-1,"48763":-1,"48764":-1,"48765":-1,"48766":2684,"48767":2684,"48768":-1,"48769":-1,"48770":2682,"48771":-1,"48772":-1,"48773":-1,"48774":-1,"48775":2685,"48776":-1,"48777":-1,"48778":-1,"48779":-1,"48780":-1,"48781":-1,"48782":-1,"48783":-1,"48784":-1,"48785":-1,"48786":2684,"48787":-1,"48788":-1,"48789":-1,"48790":0,"48791":-1,"48792":2684,"48793":-1,"48794":-1,"48795":2686,"48796":-1,"48797":-1,"48798":-1,"48799":-1,"48800":-1,"48801":-1,"48802":2685,"48803":-1,"48804":-1,"48805":-1,"48806":-1,"48807":-1,"48808":-1,"48809":2684,"48810":-1,"48811":-1,"48812":2681,"48813":-1,"48814":-1,"48815":-1,"48816":-1,"48817":-1,"48818":-1,"48819":-1,"48820":-1,"48821":-1,"48822":-1,"48823":-1,"48824":-1,"48825":-1,"48826":-1,"48827":-1,"48828":-1,"48829":-1,"48830":2683,"48831":2682,"48832":-1,"48833":-1,"48834":-1,"48835":-1,"48836":-1,"48837":-1,"48838":2684,"48839":-1,"48840":2681,"48841":-1,"48842":-1,"48843":-1,"48844":-1,"48845":-1,"48846":-1,"48847":-1,"48848":-1,"48849":-1,"48850":2682,"48851":-1,"48852":-1,"48853":2682,"48854":-1,"48855":-1,"48856":-1,"48857":-1,"48858":-1,"48859":-1,"48860":-1,"48861":-1,"48862":-1,"48863":2682,"48864":-1,"48865":-1,"48866":-1,"48867":-1,"48868":2681,"48869":-1,"48870":-1,"48871":-1,"48872":-1,"48873":2687,"48874":-1,"48875":-1,"48876":-1,"48877":-1,"48878":2684,"48879":-1,"48880":-1,"48881":0,"48882":-1,"48883":-1,"48884":-1,"48885":-1,"48886":-1,"48887":-1,"48888":-1,"48889":-1,"48890":-1,"48891":-1,"48892":-1,"48893":-1,"48894":2686,"48895":-1,"48896":-1,"48897":-1,"48898":-1,"48899":-1,"48900":-1,"48901":0,"48902":-1,"48903":2684,"48904":-1,"48905":2686,"48906":-1,"48907":2686,"48908":-1,"48909":-1,"48910":-1,"48911":-1,"48912":-1,"48913":-1,"48914":-1,"48915":-1,"48916":-1,"48917":-1,"48918":-1,"48919":-1,"48920":-1,"48921":-1,"48922":-1,"48923":-1,"48924":-1,"48925":-1,"48926":-1,"48927":-1,"48928":-1,"48929":-1,"48930":-1,"48931":-1,"48932":2683,"48933":-1,"48934":-1,"48935":0,"48936":-1,"48937":-1,"48938":-1,"48939":-1,"48940":2686,"48941":-1,"48942":-1,"48943":-1,"48944":-1,"48945":2684,"48946":-1,"48947":-1,"48948":-1,"48949":2683,"48950":-1,"48951":-1,"48952":-1,"48953":-1,"48954":-1,"48955":-1,"48956":-1,"48957":-1,"48958":-1,"48959":-1,"48960":-1,"48961":-1,"48962":-1,"48963":-1,"48964":-1,"48965":-1,"48966":-1,"48967":-1,"48968":-1,"48969":-1,"48970":-1,"48971":2684,"48972":-1,"48973":-1,"48974":-1,"48975":-1,"48976":-1,"48977":2683,"48978":-1,"48979":-1,"48980":-1,"48981":-1,"48982":-1,"48983":-1,"48984":-1,"48985":-1,"48986":-1,"48987":-1,"48988":2687,"48989":0,"48990":-1,"48991":2682,"48992":-1,"48993":-1,"48994":2686,"48995":-1,"48996":-1,"48997":-1,"48998":-1,"48999":-1,"49000":-1,"49001":-1,"49002":2684,"49003":-1,"49004":-1,"49005":-1,"49006":2685,"49007":-1,"49008":-1,"49009":2687,"49010":-1,"49011":-1,"49012":-1,"49013":2687,"49014":-1,"49015":-1,"49016":-1,"49017":-1,"49018":-1,"49019":-1,"49020":2686,"49021":-1,"49022":2682,"49023":-1,"49024":-1,"49025":-1,"49026":-1,"49027":-1,"49028":-1,"49029":-1,"49030":2683,"49031":2683,"49032":-1,"49033":-1,"49034":-1,"49035":2681,"49036":-1,"49037":-1,"49038":-1,"49039":-1,"49040":2685,"49041":-1,"49042":-1,"49043":-1,"49044":-1,"49045":-1,"49046":2684,"49047":-1,"49048":-1,"49049":-1,"49050":-1,"49051":-1,"49052":-1,"49053":-1,"49054":-1,"49055":-1,"49056":-1,"49057":-1,"49058":-1,"49059":-1,"49060":-1,"49061":-1,"49062":-1,"49063":-1,"49064":-1,"49065":-1,"49066":-1,"49067":-1,"49068":-1,"49069":-1,"49070":-1,"49071":-1,"49072":-1,"49073":-1,"49074":-1,"49075":-1,"49076":-1,"49077":-1,"49078":-1,"49079":-1,"49080":-1,"49081":-1,"49082":-1,"49083":0,"49084":-1,"49085":-1,"49086":-1,"49087":-1,"49088":-1,"49089":2682,"49090":-1,"49091":-1,"49092":-1,"49093":-1,"49094":-1,"49095":-1,"49096":-1,"49097":-1,"49098":-1,"49099":-1,"49100":-1,"49101":-1,"49102":-1,"49103":-1,"49104":-1,"49105":-1,"49106":-1,"49107":-1,"49108":-1,"49109":-1,"49110":-1,"49111":-1,"49112":2687,"49113":0,"49114":-1,"49115":-1,"49116":2685,"49117":-1,"49118":-1,"49119":-1,"49120":-1,"49121":-1,"49122":-1,"49123":-1,"49124":-1,"49125":-1,"49126":-1,"49127":-1,"49128":-1,"49129":-1,"49130":-1,"49131":-1,"49132":2683,"49133":-1,"49134":-1,"49135":-1,"49136":-1,"49137":-1,"49138":-1,"49139":-1,"49140":-1,"49141":2686,"49142":-1,"49143":2681,"49144":2685,"49145":-1,"49146":2684,"49147":-1,"49148":2684,"49149":-1,"49150":-1,"49151":-1,"49152":-1,"49153":-1,"49154":-1,"49155":2682,"49156":0,"49157":-1,"49158":-1,"49159":-1,"49160":-1,"49161":-1,"49162":-1,"49163":-1,"49164":-1,"49165":-1,"49166":-1,"49167":-1,"49168":-1,"49169":-1,"49170":-1,"49171":-1,"49172":-1,"49173":-1,"49174":-1,"49175":-1,"49176":-1,"49177":-1,"49178":-1,"49179":2684,"49180":2682,"49181":-1,"49182":-1,"49183":-1,"49184":-1,"49185":-1,"49186":-1,"49187":-1,"49188":2685,"49189":-1,"49190":-1,"49191":-1,"49192":-1,"49193":-1,"49194":-1,"49195":-1,"49196":-1,"49197":-1,"49198":-1,"49199":2685,"49200":-1,"49201":-1,"49202":-1,"49203":-1,"49204":-1,"49205":-1,"49206":-1,"49207":-1,"49208":-1,"49209":-1,"49210":-1,"49211":2686,"49212":-1,"49213":-1,"49214":-1,"49215":-1,"49216":-1,"49217":-1,"49218":-1,"49219":-1,"49220":-1,"49221":-1,"49222":-1,"49223":-1,"49224":-1,"49225":-1,"49226":-1,"49227":-1,"49228":-1,"49229":-1,"49230":-1,"49231":-1,"49232":-1,"49233":-1,"49234":2685,"49235":-1,"49236":-1,"49237":-1,"49238":-1,"49239":0,"49240":2686,"49241":-1,"49242":-1,"49243":-1,"49244":-1,"49245":-1,"49246":-1,"49247":-1,"49248":-1,"49249":2685,"49250":2685,"49251":-1,"49252":-1,"49253":-1,"49254":-1,"49255":2682,"49256":-1,"49257":-1,"49258":-1,"49259":-1,"49260":2685,"49261":-1,"49262":-1,"49263":-1,"49264":-1,"49265":-1,"49266":-1,"49267":-1,"49268":-1,"49269":-1,"49270":-1,"49271":-1,"49272":-1,"49273":-1,"49274":-1,"49275":0,"49276":-1,"49277":-1,"49278":2683,"49279":2687,"49280":-1,"49281":-1,"49282":-1,"49283":-1,"49284":2685,"49285":-1,"49286":-1,"49287":-1,"49288":2682,"49289":-1,"49290":-1,"49291":2685,"49292":0,"49293":-1,"49294":-1,"49295":-1,"49296":2682,"49297":2682,"49298":-1,"49299":-1,"49300":-1,"49301":0,"49302":-1,"49303":-1,"49304":2683,"49305":-1,"49306":-1,"49307":-1,"49308":-1,"49309":-1,"49310":0,"49311":-1,"49312":-1,"49313":-1,"49314":-1,"49315":2681,"49316":-1,"49317":-1,"49318":-1,"49319":-1,"49320":-1,"49321":-1,"49322":-1,"49323":-1,"49324":0,"49325":-1,"49326":-1,"49327":0,"49328":-1,"49329":0,"49330":-1,"49331":-1,"49332":-1,"49333":-1,"49334":-1,"49335":-1,"49336":-1,"49337":-1,"49338":-1,"49339":-1,"49340":-1,"49341":-1,"49342":-1,"49343":-1,"49344":-1,"49345":-1,"49346":-1,"49347":-1,"49348":-1,"49349":-1,"49350":-1,"49351":-1,"49352":-1,"49353":2684,"49354":-1,"49355":-1,"49356":-1,"49357":-1,"49358":2683,"49359":-1,"49360":2685,"49361":-1,"49362":-1,"49363":-1,"49364":-1,"49365":-1,"49366":-1,"49367":-1,"49368":-1,"49369":2683,"49370":-1,"49371":-1,"49372":-1,"49373":-1,"49374":-1,"49375":-1,"49376":-1,"49377":-1,"49378":-1,"49379":-1,"49380":2686,"49381":-1,"49382":-1,"49383":2683,"49384":-1,"49385":-1,"49386":-1,"49387":-1,"49388":-1,"49389":-1,"49390":2682,"49391":-1,"49392":-1,"49393":-1,"49394":-1,"49395":-1,"49396":0,"49397":-1,"49398":-1,"49399":-1,"49400":-1,"49401":-1,"49402":-1,"49403":-1,"49404":-1,"49405":-1,"49406":2683,"49407":-1,"49408":-1,"49409":-1,"49410":-1,"49411":-1,"49412":-1,"49413":-1,"49414":-1,"49415":2685,"49416":-1,"49417":-1,"49418":-1,"49419":-1,"49420":-1,"49421":-1,"49422":-1,"49423":-1,"49424":0,"49425":-1,"49426":-1,"49427":-1,"49428":-1,"49429":2681,"49430":0,"49431":2681,"49432":-1,"49433":-1,"49434":0,"49435":-1,"49436":-1,"49437":-1,"49438":-1,"49439":-1,"49440":-1,"49441":-1,"49442":2682,"49443":-1,"49444":-1,"49445":-1,"49446":-1,"49447":-1,"49448":-1,"49449":2684,"49450":2683,"49451":-1,"49452":-1,"49453":-1,"49454":2686,"49455":-1,"49456":-1,"49457":-1,"49458":-1,"49459":-1,"49460":2684,"49461":-1,"49462":-1,"49463":-1,"49464":-1,"49465":-1,"49466":-1,"49467":-1,"49468":-1,"49469":-1,"49470":-1,"49471":-1,"49472":2681,"49473":-1,"49474":-1,"49475":-1,"49476":2686,"49477":-1,"49478":2683,"49479":-1,"49480":-1,"49481":-1,"49482":-1,"49483":-1,"49484":-1,"49485":-1,"49486":-1,"49487":-1,"49488":-1,"49489":-1,"49490":-1,"49491":-1,"49492":2686,"49493":2683,"49494":-1,"49495":-1,"49496":-1,"49497":-1,"49498":-1,"49499":-1,"49500":-1,"49501":0,"49502":2684,"49503":-1,"49504":2685,"49505":-1,"49506":-1,"49507":-1,"49508":-1,"49509":-1,"49510":-1,"49511":-1,"49512":-1,"49513":-1,"49514":-1,"49515":-1,"49516":2687,"49517":-1,"49518":-1,"49519":-1,"49520":-1,"49521":-1,"49522":-1,"49523":-1,"49524":-1,"49525":-1,"49526":-1,"49527":-1,"49528":-1,"49529":-1,"49530":2686,"49531":-1,"49532":-1,"49533":2684,"49534":-1,"49535":2683,"49536":-1,"49537":-1,"49538":-1,"49539":-1,"49540":-1,"49541":2682,"49542":-1,"49543":-1,"49544":-1,"49545":-1,"49546":-1,"49547":-1,"49548":-1,"49549":2682,"49550":-1,"49551":-1,"49552":-1,"49553":-1,"49554":2681,"49555":-1,"49556":2687,"49557":-1,"49558":-1,"49559":-1,"49560":-1,"49561":2687,"49562":-1,"49563":-1,"49564":-1,"49565":-1,"49566":2683,"49567":-1,"49568":0,"49569":-1,"49570":2686,"49571":-1,"49572":-1,"49573":-1,"49574":-1,"49575":-1,"49576":-1,"49577":-1,"49578":-1,"49579":-1,"49580":2684,"49581":-1,"49582":-1,"49583":-1,"49584":-1,"49585":-1,"49586":-1,"49587":-1,"49588":-1,"49589":2686,"49590":0,"49591":0,"49592":-1,"49593":2685,"49594":-1,"49595":-1,"49596":-1,"49597":2683,"49598":-1,"49599":0,"49600":2685,"49601":-1,"49602":-1,"49603":-1,"49604":2684,"49605":-1,"49606":-1,"49607":-1,"49608":-1,"49609":-1,"49610":-1,"49611":-1,"49612":2687,"49613":-1,"49614":2684,"49615":-1,"49616":-1,"49617":-1,"49618":-1,"49619":2681,"49620":-1,"49621":-1,"49622":2681,"49623":-1,"49624":-1,"49625":-1,"49626":-1,"49627":-1,"49628":-1,"49629":2685,"49630":2683,"49631":-1,"49632":-1,"49633":-1,"49634":-1,"49635":-1,"49636":-1,"49637":-1,"49638":-1,"49639":-1,"49640":-1,"49641":-1,"49642":-1,"49643":-1,"49644":-1,"49645":-1,"49646":2685,"49647":2683,"49648":2683,"49649":-1,"49650":-1,"49651":-1,"49652":-1,"49653":-1,"49654":-1,"49655":-1,"49656":-1,"49657":-1,"49658":-1,"49659":-1,"49660":-1,"49661":-1,"49662":-1,"49663":-1,"49664":-1,"49665":-1,"49666":-1,"49667":-1,"49668":2685,"49669":-1,"49670":-1,"49671":-1,"49672":2687,"49673":-1,"49674":-1,"49675":-1,"49676":2683,"49677":-1,"49678":-1,"49679":2686,"49680":-1,"49681":-1,"49682":-1,"49683":-1,"49684":-1,"49685":-1,"49686":-1,"49687":-1,"49688":-1,"49689":-1,"49690":-1,"49691":-1,"49692":-1,"49693":-1,"49694":-1,"49695":-1,"49696":-1,"49697":-1,"49698":-1,"49699":2682,"49700":-1,"49701":-1,"49702":-1,"49703":-1,"49704":-1,"49705":2683,"49706":-1,"49707":-1,"49708":-1,"49709":-1,"49710":-1,"49711":2681,"49712":-1,"49713":-1,"49714":-1,"49715":-1,"49716":-1,"49717":-1,"49718":2686,"49719":-1,"49720":0,"49721":-1,"49722":-1,"49723":-1,"49724":-1,"49725":-1,"49726":-1,"49727":-1,"49728":-1,"49729":-1,"49730":-1,"49731":-1,"49732":-1,"49733":-1,"49734":-1,"49735":-1,"49736":-1,"49737":-1,"49738":-1,"49739":-1,"49740":-1,"49741":-1,"49742":-1,"49743":-1,"49744":-1,"49745":-1,"49746":-1,"49747":-1,"49748":-1,"49749":2687,"49750":-1,"49751":-1,"49752":-1,"49753":-1,"49754":-1,"49755":-1,"49756":-1,"49757":-1,"49758":-1,"49759":-1,"49760":-1,"49761":-1,"49762":-1,"49763":-1,"49764":-1,"49765":-1,"49766":-1,"49767":-1,"49768":-1,"49769":-1,"49770":-1,"49771":-1,"49772":-1,"49773":2686,"49774":-1,"49775":-1,"49776":-1,"49777":-1,"49778":0,"49779":-1,"49780":-1,"49781":-1,"49782":0,"49783":-1,"49784":-1,"49785":-1,"49786":-1,"49787":-1,"49788":-1,"49789":-1,"49790":-1,"49791":-1,"49792":-1,"49793":-1,"49794":-1,"49795":-1,"49796":-1,"49797":-1,"49798":-1,"49799":-1,"49800":-1,"49801":-1,"49802":-1,"49803":-1,"49804":-1,"49805":-1,"49806":-1,"49807":2683,"49808":-1,"49809":-1,"49810":-1,"49811":-1,"49812":-1,"49813":-1,"49814":0,"49815":-1,"49816":-1,"49817":-1,"49818":-1,"49819":-1,"49820":-1,"49821":-1,"49822":-1,"49823":-1,"49824":-1,"49825":2682,"49826":2686,"49827":-1,"49828":2686,"49829":-1,"49830":-1,"49831":-1,"49832":-1,"49833":-1,"49834":-1,"49835":-1,"49836":-1,"49837":-1,"49838":-1,"49839":-1,"49840":-1,"49841":-1,"49842":-1,"49843":-1,"49844":-1,"49845":-1,"49846":-1,"49847":2682,"49848":-1,"49849":-1,"49850":-1,"49851":-1,"49852":-1,"49853":-1,"49854":-1,"49855":-1,"49856":-1,"49857":-1,"49858":2681,"49859":-1,"49860":-1,"49861":-1,"49862":-1,"49863":-1,"49864":-1,"49865":-1,"49866":-1,"49867":-1,"49868":-1,"49869":-1,"49870":-1,"49871":-1,"49872":-1,"49873":-1,"49874":-1,"49875":-1,"49876":-1,"49877":-1,"49878":2681,"49879":-1,"49880":-1,"49881":-1,"49882":-1,"49883":-1,"49884":-1,"49885":-1,"49886":-1,"49887":-1,"49888":2681,"49889":-1,"49890":-1,"49891":-1,"49892":-1,"49893":-1,"49894":-1,"49895":-1,"49896":-1,"49897":2682,"49898":-1,"49899":-1,"49900":-1,"49901":-1,"49902":-1,"49903":2683,"49904":-1,"49905":-1,"49906":-1,"49907":-1,"49908":2685,"49909":2686,"49910":-1,"49911":-1,"49912":0,"49913":-1,"49914":-1,"49915":-1,"49916":-1,"49917":-1,"49918":-1,"49919":-1,"49920":-1,"49921":2686,"49922":-1,"49923":2683,"49924":-1,"49925":-1,"49926":-1,"49927":2687,"49928":-1,"49929":2684,"49930":-1,"49931":-1,"49932":-1,"49933":-1,"49934":-1,"49935":-1,"49936":-1,"49937":2682,"49938":2685,"49939":-1,"49940":-1,"49941":-1,"49942":-1,"49943":-1,"49944":2684,"49945":-1,"49946":-1,"49947":-1,"49948":-1,"49949":-1,"49950":0,"49951":-1,"49952":-1,"49953":-1,"49954":-1,"49955":-1,"49956":2681,"49957":-1,"49958":-1,"49959":-1,"49960":-1,"49961":-1,"49962":-1,"49963":-1,"49964":-1,"49965":2685,"49966":-1,"49967":-1,"49968":0,"49969":-1,"49970":-1,"49971":-1,"49972":-1,"49973":-1,"49974":-1,"49975":-1,"49976":-1,"49977":-1,"49978":-1,"49979":-1,"49980":-1,"49981":2682,"49982":-1,"49983":-1,"49984":-1,"49985":-1,"49986":-1,"49987":-1,"49988":-1,"49989":-1,"49990":-1,"49991":-1,"49992":-1,"49993":-1,"49994":-1,"49995":2686,"49996":-1,"49997":-1,"49998":-1,"49999":-1,"50000":-1,"50001":-1,"50002":-1,"50003":-1,"50004":-1,"50005":-1,"50006":-1,"50007":-1,"50008":-1,"50009":-1,"50010":-1,"50011":-1,"50012":-1,"50013":-1,"50014":-1,"50015":-1,"50016":-1,"50017":-1,"50018":-1,"50019":-1,"50020":-1,"50021":-1,"50022":2685,"50023":2685,"50024":-1,"50025":-1,"50026":-1,"50027":-1,"50028":-1,"50029":-1,"50030":-1,"50031":-1,"50032":-1,"50033":-1,"50034":-1,"50035":-1,"50036":-1,"50037":-1,"50038":-1,"50039":-1,"50040":-1,"50041":2681,"50042":-1,"50043":-1,"50044":-1,"50045":-1,"50046":-1,"50047":2686,"50048":-1,"50049":-1,"50050":-1,"50051":-1,"50052":-1,"50053":-1,"50054":2683,"50055":-1,"50056":-1,"50057":-1,"50058":-1,"50059":-1,"50060":-1,"50061":-1,"50062":2683,"50063":-1,"50064":2687,"50065":-1,"50066":2684,"50067":-1,"50068":-1,"50069":2682,"50070":2685,"50071":-1,"50072":-1,"50073":-1,"50074":-1,"50075":-1,"50076":2684,"50077":-1,"50078":-1,"50079":-1,"50080":-1,"50081":-1,"50082":-1,"50083":-1,"50084":-1,"50085":-1,"50086":-1,"50087":-1,"50088":-1,"50089":-1,"50090":-1,"50091":-1,"50092":-1,"50093":-1,"50094":-1,"50095":-1,"50096":-1,"50097":-1,"50098":2684,"50099":-1,"50100":2685,"50101":-1,"50102":-1,"50103":-1,"50104":-1,"50105":2685,"50106":-1,"50107":-1,"50108":0,"50109":-1,"50110":-1,"50111":-1,"50112":2681,"50113":-1,"50114":-1,"50115":-1,"50116":2682,"50117":-1,"50118":-1,"50119":0,"50120":-1,"50121":-1,"50122":-1,"50123":2684,"50124":2681,"50125":-1,"50126":-1,"50127":-1,"50128":-1,"50129":-1,"50130":-1,"50131":-1,"50132":-1,"50133":-1,"50134":-1,"50135":2683,"50136":-1,"50137":-1,"50138":-1,"50139":-1,"50140":-1,"50141":-1,"50142":2686,"50143":-1,"50144":2682,"50145":-1,"50146":-1,"50147":-1,"50148":-1,"50149":2686,"50150":-1,"50151":-1,"50152":-1,"50153":-1,"50154":-1,"50155":-1,"50156":-1,"50157":-1,"50158":-1,"50159":-1,"50160":-1,"50161":0,"50162":-1,"50163":-1,"50164":-1,"50165":2687,"50166":-1,"50167":-1,"50168":0,"50169":-1,"50170":-1,"50171":-1,"50172":2681,"50173":-1,"50174":-1,"50175":-1,"50176":-1,"50177":-1,"50178":-1,"50179":-1,"50180":-1,"50181":-1,"50182":-1,"50183":-1,"50184":-1,"50185":-1,"50186":0,"50187":-1,"50188":-1,"50189":-1,"50190":-1,"50191":-1,"50192":-1,"50193":-1,"50194":-1,"50195":-1,"50196":-1,"50197":2686,"50198":-1,"50199":-1,"50200":-1,"50201":-1,"50202":2683,"50203":-1,"50204":0,"50205":-1,"50206":0,"50207":-1,"50208":-1,"50209":-1,"50210":-1,"50211":-1,"50212":-1,"50213":-1,"50214":-1,"50215":-1,"50216":-1,"50217":-1,"50218":-1,"50219":-1,"50220":-1,"50221":-1,"50222":0,"50223":-1,"50224":-1,"50225":-1,"50226":-1,"50227":2681,"50228":-1,"50229":-1,"50230":-1,"50231":-1,"50232":-1,"50233":-1,"50234":-1,"50235":-1,"50236":-1,"50237":-1,"50238":-1,"50239":-1,"50240":-1,"50241":-1,"50242":-1,"50243":-1,"50244":-1,"50245":-1,"50246":-1,"50247":-1,"50248":-1,"50249":-1,"50250":-1,"50251":-1,"50252":2682,"50253":-1,"50254":-1,"50255":2682,"50256":-1,"50257":-1,"50258":-1,"50259":2683,"50260":-1,"50261":-1,"50262":-1,"50263":-1,"50264":-1,"50265":-1,"50266":2684,"50267":-1,"50268":-1,"50269":-1,"50270":-1,"50271":-1,"50272":2684,"50273":-1,"50274":-1,"50275":-1,"50276":-1,"50277":-1,"50278":-1,"50279":-1,"50280":-1,"50281":-1,"50282":-1,"50283":-1,"50284":-1,"50285":-1,"50286":2684,"50287":-1,"50288":-1,"50289":-1,"50290":-1,"50291":-1,"50292":-1,"50293":-1,"50294":-1,"50295":2686,"50296":-1,"50297":2685,"50298":-1,"50299":-1,"50300":-1,"50301":-1,"50302":-1,"50303":-1,"50304":-1,"50305":-1,"50306":-1,"50307":2684,"50308":-1,"50309":-1,"50310":-1,"50311":-1,"50312":-1,"50313":-1,"50314":2684,"50315":-1,"50316":-1,"50317":-1,"50318":-1,"50319":0,"50320":-1,"50321":-1,"50322":-1,"50323":-1,"50324":-1,"50325":-1,"50326":-1,"50327":-1,"50328":-1,"50329":-1,"50330":-1,"50331":2684,"50332":-1,"50333":0,"50334":-1,"50335":-1,"50336":-1,"50337":-1,"50338":-1,"50339":-1,"50340":-1,"50341":-1,"50342":-1,"50343":-1,"50344":-1,"50345":-1,"50346":-1,"50347":-1,"50348":-1,"50349":-1,"50350":-1,"50351":-1,"50352":2686,"50353":-1,"50354":2682,"50355":2684,"50356":-1,"50357":-1,"50358":-1,"50359":-1,"50360":-1,"50361":2682,"50362":2682,"50363":-1,"50364":-1,"50365":-1,"50366":-1,"50367":-1,"50368":-1,"50369":-1,"50370":-1,"50371":-1,"50372":-1,"50373":-1,"50374":-1,"50375":-1,"50376":-1,"50377":-1,"50378":-1,"50379":2686,"50380":2682,"50381":-1,"50382":0,"50383":-1,"50384":-1,"50385":-1,"50386":-1,"50387":2685,"50388":-1,"50389":-1,"50390":-1,"50391":-1,"50392":-1,"50393":-1,"50394":-1,"50395":-1,"50396":-1,"50397":-1,"50398":2687,"50399":-1,"50400":-1,"50401":2684,"50402":-1,"50403":-1,"50404":-1,"50405":2687,"50406":-1,"50407":-1,"50408":-1,"50409":-1,"50410":-1,"50411":2685,"50412":-1,"50413":-1,"50414":-1,"50415":-1,"50416":-1,"50417":-1,"50418":-1,"50419":-1,"50420":-1,"50421":-1,"50422":-1,"50423":-1,"50424":2685,"50425":-1,"50426":-1,"50427":-1,"50428":-1,"50429":-1,"50430":-1,"50431":-1,"50432":-1,"50433":-1,"50434":-1,"50435":-1,"50436":-1,"50437":-1,"50438":-1,"50439":-1,"50440":-1,"50441":-1,"50442":-1,"50443":-1,"50444":-1,"50445":2686,"50446":-1,"50447":-1,"50448":-1,"50449":-1,"50450":-1,"50451":-1,"50452":-1,"50453":-1,"50454":-1,"50455":-1,"50456":-1,"50457":-1,"50458":-1,"50459":-1,"50460":-1,"50461":-1,"50462":-1,"50463":0,"50464":-1,"50465":-1,"50466":-1,"50467":0,"50468":-1,"50469":-1,"50470":-1,"50471":0,"50472":-1,"50473":2686,"50474":-1,"50475":-1,"50476":-1,"50477":-1,"50478":-1,"50479":-1,"50480":-1,"50481":2683,"50482":-1,"50483":-1,"50484":-1,"50485":-1,"50486":-1,"50487":-1,"50488":-1,"50489":-1,"50490":-1,"50491":-1,"50492":-1,"50493":-1,"50494":-1,"50495":-1,"50496":-1,"50497":-1,"50498":0,"50499":-1,"50500":-1,"50501":-1,"50502":-1,"50503":2685,"50504":2682,"50505":-1,"50506":-1,"50507":-1,"50508":-1,"50509":-1,"50510":-1,"50511":-1,"50512":-1,"50513":-1,"50514":-1,"50515":-1,"50516":-1,"50517":-1,"50518":-1,"50519":-1,"50520":-1,"50521":-1,"50522":-1,"50523":-1,"50524":-1,"50525":-1,"50526":-1,"50527":-1,"50528":-1,"50529":-1,"50530":-1,"50531":-1,"50532":-1,"50533":-1,"50534":-1,"50535":-1,"50536":-1,"50537":-1,"50538":-1,"50539":-1,"50540":-1,"50541":-1,"50542":-1,"50543":-1,"50544":-1,"50545":-1,"50546":2682,"50547":-1,"50548":-1,"50549":-1,"50550":-1,"50551":-1,"50552":-1,"50553":-1,"50554":2685,"50555":-1,"50556":-1,"50557":-1,"50558":-1,"50559":-1,"50560":-1,"50561":-1,"50562":-1,"50563":-1,"50564":-1,"50565":-1,"50566":-1,"50567":-1,"50568":-1,"50569":-1,"50570":2685,"50571":-1,"50572":-1,"50573":-1,"50574":-1,"50575":2684,"50576":-1,"50577":-1,"50578":-1,"50579":-1,"50580":2684,"50581":-1,"50582":-1,"50583":-1,"50584":-1,"50585":-1,"50586":2685,"50587":-1,"50588":-1,"50589":-1,"50590":-1,"50591":-1,"50592":-1,"50593":-1,"50594":-1,"50595":-1,"50596":-1,"50597":-1,"50598":2684,"50599":-1,"50600":-1,"50601":0,"50602":-1,"50603":-1,"50604":-1,"50605":-1,"50606":-1,"50607":-1,"50608":2682,"50609":-1,"50610":-1,"50611":2682,"50612":-1,"50613":-1,"50614":-1,"50615":-1,"50616":-1,"50617":2684,"50618":-1,"50619":-1,"50620":-1,"50621":2681,"50622":-1,"50623":-1,"50624":2682,"50625":-1,"50626":-1,"50627":-1,"50628":-1,"50629":-1,"50630":-1,"50631":-1,"50632":-1,"50633":-1,"50634":2683,"50635":-1,"50636":-1,"50637":2683,"50638":-1,"50639":2683,"50640":-1,"50641":-1,"50642":-1,"50643":2681,"50644":-1,"50645":-1,"50646":-1,"50647":-1,"50648":-1,"50649":-1,"50650":-1,"50651":-1,"50652":-1,"50653":-1,"50654":-1,"50655":-1,"50656":-1,"50657":2682,"50658":-1,"50659":-1,"50660":-1,"50661":-1,"50662":-1,"50663":-1,"50664":-1,"50665":-1,"50666":-1,"50667":-1,"50668":-1,"50669":-1,"50670":-1,"50671":-1,"50672":-1,"50673":2684,"50674":-1,"50675":-1,"50676":-1,"50677":-1,"50678":-1,"50679":-1,"50680":2682,"50681":-1,"50682":-1,"50683":2684,"50684":-1,"50685":-1,"50686":-1,"50687":-1,"50688":-1,"50689":-1,"50690":2683,"50691":-1,"50692":-1,"50693":-1,"50694":-1,"50695":2687,"50696":-1,"50697":-1,"50698":-1,"50699":-1,"50700":-1,"50701":-1,"50702":-1,"50703":-1,"50704":-1,"50705":-1,"50706":-1,"50707":-1,"50708":-1,"50709":-1,"50710":-1,"50711":-1,"50712":-1,"50713":-1,"50714":-1,"50715":-1,"50716":2682,"50717":2684,"50718":2685,"50719":-1,"50720":-1,"50721":-1,"50722":2681,"50723":-1,"50724":-1,"50725":-1,"50726":-1,"50727":-1,"50728":-1,"50729":-1,"50730":2684,"50731":-1,"50732":-1,"50733":-1,"50734":-1,"50735":-1,"50736":-1,"50737":-1,"50738":-1,"50739":-1,"50740":-1,"50741":-1,"50742":-1,"50743":-1,"50744":-1,"50745":-1,"50746":-1,"50747":-1,"50748":2685,"50749":-1,"50750":-1,"50751":-1,"50752":-1,"50753":-1,"50754":-1,"50755":-1,"50756":-1,"50757":-1,"50758":-1,"50759":-1,"50760":-1,"50761":-1,"50762":-1,"50763":-1,"50764":-1,"50765":-1,"50766":-1,"50767":-1,"50768":-1,"50769":-1,"50770":-1,"50771":-1,"50772":-1,"50773":-1,"50774":-1,"50775":-1,"50776":-1,"50777":-1,"50778":-1,"50779":-1,"50780":-1,"50781":-1,"50782":2684,"50783":0,"50784":-1,"50785":-1,"50786":-1,"50787":-1,"50788":-1,"50789":2685,"50790":-1,"50791":-1,"50792":-1,"50793":-1,"50794":-1,"50795":2686,"50796":0,"50797":-1,"50798":-1,"50799":-1,"50800":-1,"50801":-1,"50802":-1,"50803":-1,"50804":2684,"50805":2684,"50806":2683,"50807":-1,"50808":2686,"50809":-1,"50810":-1,"50811":-1,"50812":-1,"50813":2682,"50814":-1,"50815":-1,"50816":-1,"50817":-1,"50818":-1,"50819":-1,"50820":-1,"50821":-1,"50822":-1,"50823":-1,"50824":-1,"50825":-1,"50826":-1,"50827":-1,"50828":-1,"50829":-1,"50830":-1,"50831":-1,"50832":-1,"50833":2685,"50834":-1,"50835":-1,"50836":-1,"50837":-1,"50838":-1,"50839":-1,"50840":-1,"50841":-1,"50842":-1,"50843":-1,"50844":-1,"50845":-1,"50846":-1,"50847":-1,"50848":-1,"50849":-1,"50850":-1,"50851":-1,"50852":-1,"50853":-1,"50854":-1,"50855":-1,"50856":-1,"50857":-1,"50858":0,"50859":-1,"50860":2686,"50861":-1,"50862":-1,"50863":-1,"50864":-1,"50865":-1,"50866":2681,"50867":-1,"50868":2682,"50869":-1,"50870":-1,"50871":-1,"50872":-1,"50873":-1,"50874":2685,"50875":-1,"50876":-1,"50877":-1,"50878":-1,"50879":2684,"50880":-1,"50881":-1,"50882":-1,"50883":-1,"50884":-1,"50885":-1,"50886":-1,"50887":-1,"50888":-1,"50889":-1,"50890":-1,"50891":-1,"50892":-1,"50893":-1,"50894":-1,"50895":-1,"50896":-1,"50897":-1,"50898":-1,"50899":-1,"50900":-1,"50901":-1,"50902":-1,"50903":2681,"50904":-1,"50905":-1,"50906":-1,"50907":-1,"50908":-1,"50909":-1,"50910":-1,"50911":-1,"50912":-1,"50913":-1,"50914":2683,"50915":-1,"50916":-1,"50917":-1,"50918":-1,"50919":-1,"50920":-1,"50921":-1,"50922":2681,"50923":-1,"50924":0,"50925":2686,"50926":-1,"50927":-1,"50928":-1,"50929":-1,"50930":-1,"50931":-1,"50932":-1,"50933":-1,"50934":-1,"50935":-1,"50936":-1,"50937":-1,"50938":-1,"50939":-1,"50940":-1,"50941":-1,"50942":-1,"50943":-1,"50944":-1,"50945":-1,"50946":-1,"50947":-1,"50948":-1,"50949":2684,"50950":2685,"50951":-1,"50952":-1,"50953":-1,"50954":-1,"50955":-1,"50956":2687,"50957":-1,"50958":-1,"50959":2686,"50960":-1,"50961":-1,"50962":-1,"50963":-1,"50964":2681,"50965":-1,"50966":0,"50967":-1,"50968":-1,"50969":0,"50970":-1,"50971":-1,"50972":2685,"50973":-1,"50974":-1,"50975":-1,"50976":-1,"50977":-1,"50978":-1,"50979":-1,"50980":2684,"50981":-1,"50982":-1,"50983":-1,"50984":0,"50985":-1,"50986":0,"50987":-1,"50988":-1,"50989":-1,"50990":-1,"50991":-1,"50992":2683,"50993":-1,"50994":-1,"50995":-1,"50996":-1,"50997":-1,"50998":2682,"50999":-1,"51000":-1,"51001":2686,"51002":-1,"51003":2684,"51004":-1,"51005":-1,"51006":-1,"51007":2687,"51008":-1,"51009":-1,"51010":0,"51011":2683,"51012":-1,"51013":-1,"51014":-1,"51015":0,"51016":-1,"51017":-1,"51018":-1,"51019":-1,"51020":-1,"51021":2685,"51022":-1,"51023":-1,"51024":-1,"51025":-1,"51026":-1,"51027":-1,"51028":-1,"51029":2683,"51030":-1,"51031":0,"51032":-1,"51033":-1,"51034":2686,"51035":-1,"51036":-1,"51037":-1,"51038":2684,"51039":2681,"51040":-1,"51041":-1,"51042":-1,"51043":-1,"51044":-1,"51045":2685,"51046":-1,"51047":-1,"51048":-1,"51049":2683,"51050":-1,"51051":-1,"51052":-1,"51053":-1,"51054":-1,"51055":-1,"51056":-1,"51057":-1,"51058":-1,"51059":2681,"51060":-1,"51061":-1,"51062":-1,"51063":-1,"51064":-1,"51065":-1,"51066":2684,"51067":-1,"51068":-1,"51069":-1,"51070":-1,"51071":2681,"51072":-1,"51073":2682,"51074":-1,"51075":-1,"51076":-1,"51077":-1,"51078":-1,"51079":-1,"51080":0,"51081":-1,"51082":0,"51083":-1,"51084":-1,"51085":-1,"51086":-1,"51087":-1,"51088":-1,"51089":-1,"51090":-1,"51091":-1,"51092":-1,"51093":2686,"51094":2683,"51095":2681,"51096":-1,"51097":-1,"51098":2684,"51099":-1,"51100":-1,"51101":-1,"51102":-1,"51103":-1,"51104":-1,"51105":-1,"51106":-1,"51107":-1,"51108":-1,"51109":-1,"51110":-1,"51111":-1,"51112":-1,"51113":-1,"51114":-1,"51115":-1,"51116":-1,"51117":-1,"51118":-1,"51119":-1,"51120":-1,"51121":-1,"51122":-1,"51123":-1,"51124":-1,"51125":-1,"51126":-1,"51127":0,"51128":-1,"51129":-1,"51130":-1,"51131":-1,"51132":-1,"51133":-1,"51134":-1,"51135":-1,"51136":-1,"51137":-1,"51138":-1,"51139":-1,"51140":-1,"51141":-1,"51142":-1,"51143":2681,"51144":-1,"51145":-1,"51146":-1,"51147":2683,"51148":-1,"51149":-1,"51150":2683,"51151":2685,"51152":2685,"51153":-1,"51154":-1,"51155":-1,"51156":-1,"51157":-1,"51158":-1,"51159":0,"51160":-1,"51161":-1,"51162":0,"51163":-1,"51164":-1,"51165":-1,"51166":-1,"51167":-1,"51168":-1,"51169":-1,"51170":-1,"51171":-1,"51172":-1,"51173":-1,"51174":-1,"51175":-1,"51176":-1,"51177":2685,"51178":2684,"51179":-1,"51180":-1,"51181":-1,"51182":-1,"51183":-1,"51184":2687,"51185":0,"51186":-1,"51187":-1,"51188":-1,"51189":-1,"51190":-1,"51191":-1,"51192":-1,"51193":-1,"51194":-1,"51195":2686,"51196":-1,"51197":-1,"51198":-1,"51199":-1,"51200":-1,"51201":-1,"51202":0,"51203":-1,"51204":-1,"51205":-1,"51206":-1,"51207":-1,"51208":-1,"51209":-1,"51210":-1,"51211":-1,"51212":-1,"51213":-1,"51214":-1,"51215":-1,"51216":-1,"51217":-1,"51218":-1,"51219":-1,"51220":-1,"51221":-1,"51222":-1,"51223":-1,"51224":2683,"51225":-1,"51226":-1,"51227":-1,"51228":2683,"51229":-1,"51230":-1,"51231":-1,"51232":2685,"51233":-1,"51234":0,"51235":-1,"51236":-1,"51237":-1,"51238":-1,"51239":2686,"51240":-1,"51241":-1,"51242":-1,"51243":-1,"51244":-1,"51245":-1,"51246":-1,"51247":-1,"51248":-1,"51249":2687,"51250":-1,"51251":-1,"51252":-1,"51253":-1,"51254":-1,"51255":-1,"51256":-1,"51257":-1,"51258":-1,"51259":-1,"51260":-1,"51261":-1,"51262":-1,"51263":-1,"51264":2683,"51265":-1,"51266":-1,"51267":-1,"51268":-1,"51269":-1,"51270":-1,"51271":-1,"51272":-1,"51273":-1,"51274":-1,"51275":-1,"51276":2684,"51277":2684,"51278":2685,"51279":-1,"51280":-1,"51281":2686,"51282":2685,"51283":-1,"51284":-1,"51285":-1,"51286":2687,"51287":-1,"51288":-1,"51289":-1,"51290":2683,"51291":2686,"51292":-1,"51293":-1,"51294":-1,"51295":-1,"51296":-1,"51297":-1,"51298":-1,"51299":-1,"51300":-1,"51301":-1,"51302":-1,"51303":-1,"51304":-1,"51305":-1,"51306":-1,"51307":-1,"51308":-1,"51309":-1,"51310":-1,"51311":-1,"51312":-1,"51313":-1,"51314":-1,"51315":-1,"51316":-1,"51317":-1,"51318":-1,"51319":-1,"51320":-1,"51321":-1,"51322":-1,"51323":-1,"51324":-1,"51325":-1,"51326":-1,"51327":-1,"51328":-1,"51329":-1,"51330":-1,"51331":-1,"51332":-1,"51333":-1,"51334":-1,"51335":-1,"51336":-1,"51337":-1,"51338":-1,"51339":-1,"51340":-1,"51341":-1,"51342":-1,"51343":-1,"51344":2686,"51345":-1,"51346":-1,"51347":0,"51348":-1,"51349":-1,"51350":-1,"51351":0,"51352":-1,"51353":2684,"51354":-1,"51355":-1,"51356":-1,"51357":-1,"51358":-1,"51359":-1,"51360":-1,"51361":-1,"51362":-1,"51363":0,"51364":-1,"51365":-1,"51366":-1,"51367":-1,"51368":-1,"51369":-1,"51370":-1,"51371":-1,"51372":-1,"51373":-1,"51374":-1,"51375":2682,"51376":-1,"51377":-1,"51378":-1,"51379":2684,"51380":-1,"51381":-1,"51382":-1,"51383":-1,"51384":-1,"51385":-1,"51386":-1,"51387":-1,"51388":-1,"51389":-1,"51390":-1,"51391":2684,"51392":-1,"51393":-1,"51394":-1,"51395":-1,"51396":-1,"51397":-1,"51398":-1,"51399":2682,"51400":-1,"51401":-1,"51402":-1,"51403":-1,"51404":-1,"51405":-1,"51406":-1,"51407":-1,"51408":-1,"51409":-1,"51410":-1,"51411":-1,"51412":-1,"51413":-1,"51414":2682,"51415":-1,"51416":-1,"51417":-1,"51418":-1,"51419":-1,"51420":-1,"51421":2685,"51422":-1,"51423":-1,"51424":-1,"51425":-1,"51426":-1,"51427":-1,"51428":-1,"51429":-1,"51430":-1,"51431":-1,"51432":-1,"51433":-1,"51434":2686,"51435":-1,"51436":2685,"51437":-1,"51438":-1,"51439":-1,"51440":-1,"51441":-1,"51442":-1,"51443":2684,"51444":-1,"51445":-1,"51446":-1,"51447":-1,"51448":-1,"51449":-1,"51450":-1,"51451":-1,"51452":-1,"51453":-1,"51454":-1,"51455":-1,"51456":-1,"51457":-1,"51458":-1,"51459":-1,"51460":-1,"51461":-1,"51462":-1,"51463":-1,"51464":0,"51465":-1,"51466":-1,"51467":-1,"51468":-1,"51469":-1,"51470":-1,"51471":-1,"51472":-1,"51473":2685,"51474":2685,"51475":-1,"51476":-1,"51477":-1,"51478":-1,"51479":-1,"51480":-1,"51481":2685,"51482":-1,"51483":-1,"51484":2684,"51485":2687,"51486":-1,"51487":-1,"51488":-1,"51489":-1,"51490":-1,"51491":-1,"51492":-1,"51493":-1,"51494":-1,"51495":-1,"51496":-1,"51497":-1,"51498":-1,"51499":-1,"51500":-1,"51501":-1,"51502":-1,"51503":-1,"51504":-1,"51505":-1,"51506":-1,"51507":-1,"51508":-1,"51509":-1,"51510":-1,"51511":-1,"51512":-1,"51513":2685,"51514":-1,"51515":-1,"51516":-1,"51517":-1,"51518":2683,"51519":-1,"51520":2682,"51521":-1,"51522":-1,"51523":-1,"51524":2681,"51525":2681,"51526":-1,"51527":0,"51528":-1,"51529":2681,"51530":-1,"51531":-1,"51532":2685,"51533":2681,"51534":-1,"51535":-1,"51536":-1,"51537":-1,"51538":-1,"51539":-1,"51540":-1,"51541":-1,"51542":-1,"51543":-1,"51544":-1,"51545":-1,"51546":-1,"51547":-1,"51548":-1,"51549":-1,"51550":-1,"51551":-1,"51552":-1,"51553":-1,"51554":-1,"51555":0,"51556":-1,"51557":2681,"51558":-1,"51559":0,"51560":-1,"51561":-1,"51562":-1,"51563":-1,"51564":-1,"51565":-1,"51566":-1,"51567":-1,"51568":-1,"51569":-1,"51570":-1,"51571":-1,"51572":-1,"51573":-1,"51574":-1,"51575":-1,"51576":-1,"51577":-1,"51578":-1,"51579":-1,"51580":-1,"51581":2686,"51582":-1,"51583":-1,"51584":-1,"51585":-1,"51586":-1,"51587":-1,"51588":-1,"51589":-1,"51590":-1,"51591":-1,"51592":-1,"51593":0,"51594":0,"51595":-1,"51596":-1,"51597":-1,"51598":-1,"51599":2682,"51600":-1,"51601":-1,"51602":-1,"51603":-1,"51604":2687,"51605":-1,"51606":-1,"51607":-1,"51608":-1,"51609":-1,"51610":-1,"51611":-1,"51612":-1,"51613":-1,"51614":-1,"51615":-1,"51616":0,"51617":-1,"51618":-1,"51619":-1,"51620":-1,"51621":-1,"51622":-1,"51623":-1,"51624":-1,"51625":-1,"51626":-1,"51627":-1,"51628":-1,"51629":-1,"51630":-1,"51631":-1,"51632":-1,"51633":-1,"51634":-1,"51635":-1,"51636":2685,"51637":-1,"51638":-1,"51639":2683,"51640":-1,"51641":-1,"51642":-1,"51643":2686,"51644":-1,"51645":-1,"51646":-1,"51647":-1,"51648":-1,"51649":-1,"51650":-1,"51651":-1,"51652":-1,"51653":-1,"51654":-1,"51655":-1,"51656":-1,"51657":-1,"51658":-1,"51659":-1,"51660":-1,"51661":-1,"51662":-1,"51663":-1,"51664":-1,"51665":-1,"51666":-1,"51667":-1,"51668":-1,"51669":-1,"51670":-1,"51671":-1,"51672":-1,"51673":0,"51674":-1,"51675":-1,"51676":-1,"51677":-1,"51678":-1,"51679":2684,"51680":-1,"51681":-1,"51682":-1,"51683":-1,"51684":-1,"51685":-1,"51686":-1,"51687":-1,"51688":2687,"51689":2685,"51690":-1,"51691":-1,"51692":-1,"51693":-1,"51694":-1,"51695":-1,"51696":0,"51697":-1,"51698":-1,"51699":-1,"51700":-1,"51701":-1,"51702":-1,"51703":-1,"51704":-1,"51705":-1,"51706":2687,"51707":-1,"51708":-1,"51709":-1,"51710":-1,"51711":-1,"51712":2686,"51713":2683,"51714":-1,"51715":2684,"51716":-1,"51717":2683,"51718":-1,"51719":-1,"51720":-1,"51721":-1,"51722":2685,"51723":-1,"51724":-1,"51725":-1,"51726":-1,"51727":-1,"51728":-1,"51729":-1,"51730":-1,"51731":-1,"51732":-1,"51733":-1,"51734":-1,"51735":-1,"51736":-1,"51737":-1,"51738":-1,"51739":-1,"51740":-1,"51741":-1,"51742":2683,"51743":-1,"51744":-1,"51745":-1,"51746":-1,"51747":-1,"51748":2682,"51749":-1,"51750":2686,"51751":-1,"51752":-1,"51753":-1,"51754":-1,"51755":-1,"51756":-1,"51757":-1,"51758":-1,"51759":2686,"51760":-1,"51761":-1,"51762":-1,"51763":-1,"51764":-1,"51765":2685,"51766":-1,"51767":-1,"51768":-1,"51769":-1,"51770":-1,"51771":-1,"51772":-1,"51773":-1,"51774":-1,"51775":-1,"51776":-1,"51777":-1,"51778":-1,"51779":-1,"51780":-1,"51781":-1,"51782":-1,"51783":-1,"51784":-1,"51785":-1,"51786":-1,"51787":-1,"51788":-1,"51789":2682,"51790":-1,"51791":0,"51792":-1,"51793":-1,"51794":-1,"51795":-1,"51796":-1,"51797":-1,"51798":-1,"51799":-1,"51800":-1,"51801":-1,"51802":-1,"51803":-1,"51804":-1,"51805":-1,"51806":2687,"51807":-1,"51808":-1,"51809":-1,"51810":2681,"51811":-1,"51812":2684,"51813":-1,"51814":-1,"51815":2685,"51816":-1,"51817":-1,"51818":-1,"51819":2683,"51820":-1,"51821":-1,"51822":-1,"51823":-1,"51824":-1,"51825":-1,"51826":2683,"51827":-1,"51828":-1,"51829":2683,"51830":-1,"51831":-1,"51832":-1,"51833":-1,"51834":-1,"51835":-1,"51836":-1,"51837":-1,"51838":-1,"51839":-1,"51840":-1,"51841":-1,"51842":-1,"51843":2686,"51844":-1,"51845":-1,"51846":-1,"51847":-1,"51848":-1,"51849":2685,"51850":-1,"51851":-1,"51852":-1,"51853":-1,"51854":-1,"51855":-1,"51856":2683,"51857":-1,"51858":-1,"51859":-1,"51860":-1,"51861":-1,"51862":-1,"51863":-1,"51864":-1,"51865":-1,"51866":0,"51867":-1,"51868":-1,"51869":0,"51870":-1,"51871":-1,"51872":-1,"51873":-1,"51874":-1,"51875":2684,"51876":-1,"51877":-1,"51878":-1,"51879":-1,"51880":-1,"51881":2682,"51882":-1,"51883":-1,"51884":-1,"51885":-1,"51886":-1,"51887":-1,"51888":-1,"51889":-1,"51890":2683,"51891":2685,"51892":0,"51893":-1,"51894":-1,"51895":-1,"51896":2686,"51897":-1,"51898":-1,"51899":-1,"51900":-1,"51901":-1,"51902":-1,"51903":-1,"51904":-1,"51905":-1,"51906":2685,"51907":-1,"51908":-1,"51909":-1,"51910":-1,"51911":-1,"51912":2686,"51913":0,"51914":-1,"51915":-1,"51916":-1,"51917":-1,"51918":-1,"51919":-1,"51920":-1,"51921":2685,"51922":-1,"51923":-1,"51924":-1,"51925":-1,"51926":-1,"51927":-1,"51928":2684,"51929":-1,"51930":-1,"51931":-1,"51932":2686,"51933":-1,"51934":-1,"51935":-1,"51936":-1,"51937":-1,"51938":-1,"51939":-1,"51940":-1,"51941":-1,"51942":-1,"51943":0,"51944":-1,"51945":2682,"51946":-1,"51947":-1,"51948":-1,"51949":-1,"51950":-1,"51951":-1,"51952":-1,"51953":-1,"51954":-1,"51955":-1,"51956":-1,"51957":2681,"51958":-1,"51959":-1,"51960":-1,"51961":2682,"51962":-1,"51963":-1,"51964":-1,"51965":2685,"51966":2686,"51967":-1,"51968":-1,"51969":-1,"51970":-1,"51971":-1,"51972":-1,"51973":-1,"51974":-1,"51975":-1,"51976":-1,"51977":-1,"51978":-1,"51979":-1,"51980":-1,"51981":-1,"51982":-1,"51983":-1,"51984":2684,"51985":-1,"51986":-1,"51987":2683,"51988":-1,"51989":-1,"51990":2685,"51991":-1,"51992":2683,"51993":-1,"51994":0,"51995":-1,"51996":-1,"51997":-1,"51998":-1,"51999":-1,"52000":-1,"52001":-1,"52002":-1,"52003":-1,"52004":-1,"52005":-1,"52006":-1,"52007":-1,"52008":-1,"52009":-1,"52010":-1,"52011":-1,"52012":-1,"52013":-1,"52014":-1,"52015":-1,"52016":-1,"52017":-1,"52018":2684,"52019":-1,"52020":-1,"52021":2682,"52022":-1,"52023":-1,"52024":-1,"52025":-1,"52026":-1,"52027":-1,"52028":-1,"52029":2683,"52030":-1,"52031":-1,"52032":2685,"52033":-1,"52034":-1,"52035":-1,"52036":-1,"52037":-1,"52038":-1,"52039":-1,"52040":-1,"52041":-1,"52042":-1,"52043":-1,"52044":-1,"52045":-1,"52046":-1,"52047":-1,"52048":-1,"52049":-1,"52050":-1,"52051":-1,"52052":-1,"52053":-1,"52054":2681,"52055":-1,"52056":-1,"52057":-1,"52058":-1,"52059":-1,"52060":-1,"52061":-1,"52062":-1,"52063":-1,"52064":-1,"52065":-1,"52066":-1,"52067":-1,"52068":2682,"52069":-1,"52070":-1,"52071":-1,"52072":-1,"52073":-1,"52074":-1,"52075":-1,"52076":-1,"52077":-1,"52078":-1,"52079":-1,"52080":-1,"52081":-1,"52082":-1,"52083":-1,"52084":-1,"52085":-1,"52086":2686,"52087":-1,"52088":-1,"52089":-1,"52090":-1,"52091":-1,"52092":-1,"52093":-1,"52094":-1,"52095":-1,"52096":-1,"52097":2682,"52098":-1,"52099":-1,"52100":-1,"52101":-1,"52102":2685,"52103":-1,"52104":-1,"52105":-1,"52106":2683,"52107":0,"52108":-1,"52109":2683,"52110":-1,"52111":-1,"52112":2683,"52113":-1,"52114":-1,"52115":-1,"52116":-1,"52117":-1,"52118":-1,"52119":-1,"52120":-1,"52121":0,"52122":-1,"52123":-1,"52124":-1,"52125":-1,"52126":-1,"52127":-1,"52128":-1,"52129":-1,"52130":-1,"52131":-1,"52132":-1,"52133":0,"52134":2686,"52135":2682,"52136":-1,"52137":-1,"52138":-1,"52139":2685,"52140":-1,"52141":-1,"52142":-1,"52143":-1,"52144":-1,"52145":0,"52146":-1,"52147":-1,"52148":2682,"52149":-1,"52150":-1,"52151":-1,"52152":-1,"52153":2682,"52154":-1,"52155":-1,"52156":-1,"52157":-1,"52158":-1,"52159":-1,"52160":-1,"52161":-1,"52162":-1,"52163":-1,"52164":-1,"52165":-1,"52166":-1,"52167":-1,"52168":-1,"52169":2684,"52170":-1,"52171":-1,"52172":-1,"52173":0,"52174":-1,"52175":-1,"52176":-1,"52177":-1,"52178":-1,"52179":-1,"52180":-1,"52181":2682,"52182":-1,"52183":-1,"52184":2686,"52185":-1,"52186":-1,"52187":-1,"52188":-1,"52189":-1,"52190":-1,"52191":2681,"52192":-1,"52193":-1,"52194":-1,"52195":-1,"52196":-1,"52197":-1,"52198":-1,"52199":-1,"52200":-1,"52201":-1,"52202":-1,"52203":-1,"52204":2682,"52205":0,"52206":-1,"52207":-1,"52208":-1,"52209":2682,"52210":2681,"52211":-1,"52212":-1,"52213":-1,"52214":-1,"52215":-1,"52216":-1,"52217":-1,"52218":-1,"52219":2686,"52220":-1,"52221":-1,"52222":-1,"52223":-1,"52224":-1,"52225":-1,"52226":-1,"52227":-1,"52228":-1,"52229":-1,"52230":-1,"52231":-1,"52232":-1,"52233":2681,"52234":-1,"52235":-1,"52236":-1,"52237":2685,"52238":-1,"52239":-1,"52240":-1,"52241":-1,"52242":-1,"52243":-1,"52244":-1,"52245":-1,"52246":-1,"52247":-1,"52248":-1,"52249":-1,"52250":0,"52251":-1,"52252":2686,"52253":-1,"52254":-1,"52255":-1,"52256":-1,"52257":-1,"52258":-1,"52259":-1,"52260":2683,"52261":-1,"52262":-1,"52263":2682,"52264":-1,"52265":0,"52266":-1,"52267":-1,"52268":0,"52269":-1,"52270":-1,"52271":-1,"52272":-1,"52273":-1,"52274":-1,"52275":0,"52276":-1,"52277":-1,"52278":-1,"52279":-1,"52280":-1,"52281":-1,"52282":-1,"52283":-1,"52284":-1,"52285":-1,"52286":-1,"52287":-1,"52288":-1,"52289":-1,"52290":-1,"52291":-1,"52292":-1,"52293":-1,"52294":-1,"52295":-1,"52296":-1,"52297":-1,"52298":-1,"52299":-1,"52300":-1,"52301":-1,"52302":-1,"52303":-1,"52304":-1,"52305":-1,"52306":-1,"52307":-1,"52308":-1,"52309":-1,"52310":-1,"52311":-1,"52312":-1,"52313":-1,"52314":-1,"52315":-1,"52316":-1,"52317":-1,"52318":-1,"52319":-1,"52320":-1,"52321":-1,"52322":2682,"52323":-1,"52324":-1,"52325":-1,"52326":-1,"52327":-1,"52328":-1,"52329":-1,"52330":-1,"52331":-1,"52332":-1,"52333":-1,"52334":-1,"52335":-1,"52336":-1,"52337":-1,"52338":-1,"52339":-1,"52340":-1,"52341":-1,"52342":0,"52343":-1,"52344":-1,"52345":-1,"52346":-1,"52347":-1,"52348":-1,"52349":-1,"52350":-1,"52351":-1,"52352":-1,"52353":2682,"52354":-1,"52355":-1,"52356":-1,"52357":-1,"52358":-1,"52359":-1,"52360":-1,"52361":-1,"52362":-1,"52363":-1,"52364":-1,"52365":2686,"52366":2682,"52367":-1,"52368":-1,"52369":-1,"52370":-1,"52371":-1,"52372":2685,"52373":-1,"52374":-1,"52375":-1,"52376":-1,"52377":-1,"52378":-1,"52379":-1,"52380":-1,"52381":-1,"52382":-1,"52383":-1,"52384":2684,"52385":-1,"52386":-1,"52387":-1,"52388":-1,"52389":-1,"52390":-1,"52391":0,"52392":-1,"52393":-1,"52394":2682,"52395":-1,"52396":-1,"52397":-1,"52398":-1,"52399":-1,"52400":-1,"52401":-1,"52402":-1,"52403":-1,"52404":2685,"52405":-1,"52406":-1,"52407":-1,"52408":-1,"52409":-1,"52410":-1,"52411":-1,"52412":2684,"52413":-1,"52414":-1,"52415":-1,"52416":2686,"52417":-1,"52418":-1,"52419":-1,"52420":-1,"52421":-1,"52422":-1,"52423":-1,"52424":-1,"52425":-1,"52426":-1,"52427":-1,"52428":-1,"52429":-1,"52430":2687,"52431":-1,"52432":0,"52433":0,"52434":2684,"52435":-1,"52436":-1,"52437":0,"52438":-1,"52439":-1,"52440":-1,"52441":-1,"52442":-1,"52443":0,"52444":2682,"52445":0,"52446":-1,"52447":-1,"52448":-1,"52449":-1,"52450":2681,"52451":-1,"52452":0,"52453":2682,"52454":-1,"52455":-1,"52456":-1,"52457":-1,"52458":-1,"52459":-1,"52460":2684,"52461":-1,"52462":-1,"52463":-1,"52464":-1,"52465":-1,"52466":-1,"52467":-1,"52468":2685,"52469":-1,"52470":-1,"52471":-1,"52472":2686,"52473":-1,"52474":-1,"52475":-1,"52476":0,"52477":-1,"52478":2682,"52479":0,"52480":-1,"52481":0,"52482":-1,"52483":-1,"52484":-1,"52485":-1,"52486":-1,"52487":-1,"52488":-1,"52489":-1,"52490":-1,"52491":-1,"52492":-1,"52493":-1,"52494":-1,"52495":-1,"52496":2687,"52497":-1,"52498":-1,"52499":2681,"52500":0,"52501":2686,"52502":-1,"52503":2685,"52504":-1,"52505":-1,"52506":-1,"52507":-1,"52508":-1,"52509":-1,"52510":-1,"52511":-1,"52512":-1,"52513":-1,"52514":-1,"52515":-1,"52516":-1,"52517":-1,"52518":-1,"52519":-1,"52520":-1,"52521":-1,"52522":2683,"52523":0,"52524":-1,"52525":-1,"52526":-1,"52527":-1,"52528":-1,"52529":-1,"52530":-1,"52531":-1,"52532":-1,"52533":-1,"52534":-1,"52535":-1,"52536":-1,"52537":-1,"52538":-1,"52539":-1,"52540":-1,"52541":-1,"52542":-1,"52543":-1,"52544":-1,"52545":-1,"52546":-1,"52547":-1,"52548":-1,"52549":-1,"52550":-1,"52551":-1,"52552":-1,"52553":-1,"52554":-1,"52555":-1,"52556":-1,"52557":-1,"52558":0,"52559":-1,"52560":-1,"52561":0,"52562":-1,"52563":-1,"52564":-1,"52565":-1,"52566":-1,"52567":-1,"52568":-1,"52569":-1,"52570":-1,"52571":-1,"52572":-1,"52573":0,"52574":-1,"52575":-1,"52576":2684,"52577":2685,"52578":-1,"52579":-1,"52580":-1,"52581":-1,"52582":-1,"52583":-1,"52584":-1,"52585":2684,"52586":-1,"52587":-1,"52588":-1,"52589":-1,"52590":-1,"52591":-1,"52592":2684,"52593":-1,"52594":-1,"52595":-1,"52596":-1,"52597":-1,"52598":2684,"52599":-1,"52600":-1,"52601":-1,"52602":-1,"52603":-1,"52604":-1,"52605":-1,"52606":-1,"52607":-1,"52608":-1,"52609":-1,"52610":-1,"52611":-1,"52612":-1,"52613":-1,"52614":-1,"52615":0,"52616":2684,"52617":-1,"52618":-1,"52619":-1,"52620":-1,"52621":-1,"52622":-1,"52623":-1,"52624":-1,"52625":-1,"52626":-1,"52627":-1,"52628":-1,"52629":-1,"52630":-1,"52631":-1,"52632":-1,"52633":-1,"52634":2686,"52635":-1,"52636":-1,"52637":-1,"52638":2683,"52639":2683,"52640":-1,"52641":0,"52642":-1,"52643":-1,"52644":-1,"52645":-1,"52646":-1,"52647":-1,"52648":-1,"52649":-1,"52650":-1,"52651":-1,"52652":-1,"52653":2686,"52654":-1,"52655":-1,"52656":-1,"52657":-1,"52658":-1,"52659":-1,"52660":0,"52661":2685,"52662":-1,"52663":-1,"52664":-1,"52665":2683,"52666":-1,"52667":-1,"52668":2685,"52669":-1,"52670":-1,"52671":-1,"52672":-1,"52673":-1,"52674":2685,"52675":-1,"52676":-1,"52677":-1,"52678":-1,"52679":-1,"52680":-1,"52681":-1,"52682":2687,"52683":-1,"52684":-1,"52685":2682,"52686":-1,"52687":-1,"52688":-1,"52689":-1,"52690":2687,"52691":-1,"52692":-1,"52693":-1,"52694":-1,"52695":-1,"52696":-1,"52697":-1,"52698":-1,"52699":2683,"52700":-1,"52701":-1,"52702":-1,"52703":-1,"52704":-1,"52705":2681,"52706":-1,"52707":-1,"52708":-1,"52709":-1,"52710":-1,"52711":2685,"52712":-1,"52713":-1,"52714":-1,"52715":-1,"52716":-1,"52717":-1,"52718":-1,"52719":-1,"52720":-1,"52721":-1,"52722":-1,"52723":-1,"52724":2684,"52725":-1,"52726":-1,"52727":-1,"52728":-1,"52729":-1,"52730":-1,"52731":2682,"52732":-1,"52733":-1,"52734":-1,"52735":-1,"52736":-1,"52737":-1,"52738":-1,"52739":-1,"52740":-1,"52741":2682,"52742":2681,"52743":2685,"52744":-1,"52745":-1,"52746":0,"52747":-1,"52748":2685,"52749":-1,"52750":-1,"52751":2685,"52752":-1,"52753":-1,"52754":-1,"52755":-1,"52756":2683,"52757":-1,"52758":-1,"52759":-1,"52760":-1,"52761":-1,"52762":-1,"52763":-1,"52764":-1,"52765":-1,"52766":0,"52767":2684,"52768":2685,"52769":-1,"52770":-1,"52771":-1,"52772":-1,"52773":-1,"52774":2684,"52775":-1,"52776":-1,"52777":2686,"52778":2682,"52779":2682,"52780":-1,"52781":-1,"52782":0,"52783":-1,"52784":-1,"52785":-1,"52786":-1,"52787":-1,"52788":-1,"52789":-1,"52790":-1,"52791":-1,"52792":2682,"52793":-1,"52794":-1,"52795":-1,"52796":-1,"52797":0,"52798":-1,"52799":-1,"52800":-1,"52801":-1,"52802":-1,"52803":-1,"52804":2682,"52805":-1,"52806":-1,"52807":-1,"52808":-1,"52809":-1,"52810":-1,"52811":-1,"52812":-1,"52813":-1,"52814":-1,"52815":0,"52816":-1,"52817":-1,"52818":-1,"52819":-1,"52820":-1,"52821":-1,"52822":-1,"52823":-1,"52824":-1,"52825":-1,"52826":2683,"52827":-1,"52828":-1,"52829":-1,"52830":-1,"52831":-1,"52832":-1,"52833":-1,"52834":-1,"52835":-1,"52836":-1,"52837":2685,"52838":-1,"52839":2687,"52840":-1,"52841":-1,"52842":-1,"52843":-1,"52844":-1,"52845":2682,"52846":-1,"52847":-1,"52848":-1,"52849":-1,"52850":-1,"52851":-1,"52852":-1,"52853":-1,"52854":-1,"52855":0,"52856":-1,"52857":-1,"52858":-1,"52859":2682,"52860":-1,"52861":-1,"52862":-1,"52863":-1,"52864":-1,"52865":2686,"52866":-1,"52867":-1,"52868":2683,"52869":0,"52870":-1,"52871":-1,"52872":-1,"52873":-1,"52874":-1,"52875":-1,"52876":-1,"52877":2686,"52878":-1,"52879":-1,"52880":-1,"52881":-1,"52882":-1,"52883":-1,"52884":2686,"52885":0,"52886":-1,"52887":-1,"52888":0,"52889":-1,"52890":-1,"52891":-1,"52892":-1,"52893":-1,"52894":-1,"52895":2684,"52896":-1,"52897":-1,"52898":-1,"52899":-1,"52900":2683,"52901":2686,"52902":-1,"52903":-1,"52904":-1,"52905":2687,"52906":-1,"52907":-1,"52908":-1,"52909":-1,"52910":-1,"52911":2682,"52912":-1,"52913":-1,"52914":-1,"52915":-1,"52916":-1,"52917":-1,"52918":-1,"52919":-1,"52920":-1,"52921":-1,"52922":-1,"52923":-1,"52924":-1,"52925":-1,"52926":-1,"52927":-1,"52928":-1,"52929":-1,"52930":-1,"52931":-1,"52932":-1,"52933":-1,"52934":0,"52935":2682,"52936":-1,"52937":-1,"52938":-1,"52939":-1,"52940":-1,"52941":-1,"52942":-1,"52943":-1,"52944":-1,"52945":2683,"52946":-1,"52947":-1,"52948":-1,"52949":-1,"52950":-1,"52951":2684,"52952":-1,"52953":-1,"52954":2686,"52955":2683,"52956":-1,"52957":-1,"52958":-1,"52959":-1,"52960":-1,"52961":2681,"52962":-1,"52963":-1,"52964":-1,"52965":-1,"52966":-1,"52967":2683,"52968":-1,"52969":-1,"52970":-1,"52971":-1,"52972":-1,"52973":2685,"52974":-1,"52975":-1,"52976":-1,"52977":-1,"52978":2684,"52979":-1,"52980":-1,"52981":-1,"52982":-1,"52983":-1,"52984":-1,"52985":-1,"52986":-1,"52987":-1,"52988":-1,"52989":-1,"52990":-1,"52991":-1,"52992":-1,"52993":-1,"52994":-1,"52995":-1,"52996":-1,"52997":2685,"52998":-1,"52999":-1,"53000":-1,"53001":2684,"53002":0,"53003":2685,"53004":-1,"53005":-1,"53006":-1,"53007":2686,"53008":-1,"53009":-1,"53010":-1,"53011":-1,"53012":-1,"53013":-1,"53014":-1,"53015":-1,"53016":0,"53017":-1,"53018":0,"53019":2685,"53020":-1,"53021":-1,"53022":-1,"53023":-1,"53024":-1,"53025":-1,"53026":2683,"53027":-1,"53028":-1,"53029":2684,"53030":-1,"53031":-1,"53032":0,"53033":-1,"53034":-1,"53035":-1,"53036":-1,"53037":-1,"53038":-1,"53039":-1,"53040":-1,"53041":-1,"53042":-1,"53043":-1,"53044":-1,"53045":-1,"53046":-1,"53047":-1,"53048":-1,"53049":-1,"53050":-1,"53051":-1,"53052":-1,"53053":-1,"53054":-1,"53055":-1,"53056":2687,"53057":-1,"53058":-1,"53059":-1,"53060":-1,"53061":-1,"53062":-1,"53063":-1,"53064":-1,"53065":-1,"53066":-1,"53067":-1,"53068":2682,"53069":-1,"53070":-1,"53071":-1,"53072":-1,"53073":2685,"53074":-1,"53075":-1,"53076":-1,"53077":-1,"53078":0,"53079":-1,"53080":2683,"53081":2682,"53082":-1,"53083":-1,"53084":-1,"53085":-1,"53086":-1,"53087":-1,"53088":-1,"53089":-1,"53090":2681,"53091":0,"53092":0,"53093":2683,"53094":-1,"53095":-1,"53096":-1,"53097":-1,"53098":-1,"53099":-1,"53100":2686,"53101":-1,"53102":-1,"53103":-1,"53104":-1,"53105":-1,"53106":-1,"53107":-1,"53108":-1,"53109":-1,"53110":-1,"53111":-1,"53112":-1,"53113":-1,"53114":-1,"53115":-1,"53116":2686,"53117":-1,"53118":2683,"53119":-1,"53120":-1,"53121":-1,"53122":-1,"53123":-1,"53124":-1,"53125":-1,"53126":-1,"53127":-1,"53128":-1,"53129":-1,"53130":-1,"53131":-1,"53132":-1,"53133":-1,"53134":-1,"53135":-1,"53136":-1,"53137":-1,"53138":-1,"53139":2682,"53140":-1,"53141":-1,"53142":-1,"53143":-1,"53144":-1,"53145":-1,"53146":-1,"53147":-1,"53148":-1,"53149":-1,"53150":-1,"53151":2684,"53152":-1,"53153":-1,"53154":-1,"53155":-1,"53156":-1,"53157":-1,"53158":-1,"53159":-1,"53160":-1,"53161":-1,"53162":2685,"53163":-1,"53164":-1,"53165":-1,"53166":-1,"53167":-1,"53168":2686,"53169":-1,"53170":-1,"53171":-1,"53172":2684,"53173":-1,"53174":-1,"53175":-1,"53176":-1,"53177":-1,"53178":-1,"53179":-1,"53180":2684,"53181":-1,"53182":-1,"53183":2684,"53184":-1,"53185":-1,"53186":-1,"53187":-1,"53188":-1,"53189":-1,"53190":2682,"53191":-1,"53192":-1,"53193":-1,"53194":2683,"53195":-1,"53196":0,"53197":-1,"53198":-1,"53199":-1,"53200":-1,"53201":-1,"53202":-1,"53203":0,"53204":-1,"53205":-1,"53206":-1,"53207":-1,"53208":-1,"53209":-1,"53210":-1,"53211":-1,"53212":-1,"53213":-1,"53214":2684,"53215":-1,"53216":-1,"53217":2682,"53218":-1,"53219":-1,"53220":-1,"53221":-1,"53222":-1,"53223":-1,"53224":-1,"53225":-1,"53226":2685,"53227":-1,"53228":-1,"53229":-1,"53230":-1,"53231":-1,"53232":-1,"53233":-1,"53234":-1,"53235":-1,"53236":-1,"53237":-1,"53238":-1,"53239":-1,"53240":-1,"53241":-1,"53242":-1,"53243":-1,"53244":-1,"53245":-1,"53246":2681,"53247":-1,"53248":-1,"53249":-1,"53250":-1,"53251":-1,"53252":-1,"53253":2683,"53254":-1,"53255":-1,"53256":-1,"53257":-1,"53258":-1,"53259":-1,"53260":-1,"53261":-1,"53262":-1,"53263":-1,"53264":-1,"53265":-1,"53266":-1,"53267":-1,"53268":-1,"53269":-1,"53270":2686,"53271":-1,"53272":-1,"53273":-1,"53274":-1,"53275":-1,"53276":-1,"53277":-1,"53278":2682,"53279":-1,"53280":-1,"53281":2683,"53282":-1,"53283":-1,"53284":-1,"53285":2683,"53286":-1,"53287":-1,"53288":-1,"53289":2686,"53290":-1,"53291":-1,"53292":2686,"53293":-1,"53294":-1,"53295":-1,"53296":-1,"53297":-1,"53298":-1,"53299":-1,"53300":2682,"53301":-1,"53302":-1,"53303":2683,"53304":-1,"53305":-1,"53306":-1,"53307":-1,"53308":-1,"53309":-1,"53310":0,"53311":-1,"53312":-1,"53313":-1,"53314":-1,"53315":-1,"53316":-1,"53317":-1,"53318":-1,"53319":-1,"53320":-1,"53321":-1,"53322":-1,"53323":-1,"53324":-1,"53325":-1,"53326":-1,"53327":-1,"53328":2682,"53329":-1,"53330":-1,"53331":-1,"53332":-1,"53333":-1,"53334":-1,"53335":-1,"53336":-1,"53337":-1,"53338":2682,"53339":-1,"53340":-1,"53341":-1,"53342":-1,"53343":-1,"53344":-1,"53345":-1,"53346":-1,"53347":2684,"53348":-1,"53349":-1,"53350":-1,"53351":-1,"53352":-1,"53353":-1,"53354":-1,"53355":-1,"53356":-1,"53357":-1,"53358":-1,"53359":-1,"53360":-1,"53361":2684,"53362":-1,"53363":-1,"53364":-1,"53365":2683,"53366":-1,"53367":-1,"53368":-1,"53369":-1,"53370":-1,"53371":2686,"53372":-1,"53373":-1,"53374":-1,"53375":-1,"53376":-1,"53377":-1,"53378":-1,"53379":2686,"53380":-1,"53381":-1,"53382":-1,"53383":-1,"53384":-1,"53385":-1,"53386":-1,"53387":-1,"53388":-1,"53389":-1,"53390":-1,"53391":-1,"53392":-1,"53393":-1,"53394":-1,"53395":-1,"53396":-1,"53397":-1,"53398":-1,"53399":-1,"53400":-1,"53401":-1,"53402":-1,"53403":-1,"53404":-1,"53405":2682,"53406":-1,"53407":-1,"53408":0,"53409":-1,"53410":-1,"53411":-1,"53412":2684,"53413":-1,"53414":-1,"53415":-1,"53416":-1,"53417":-1,"53418":-1,"53419":-1,"53420":-1,"53421":-1,"53422":-1,"53423":-1,"53424":-1,"53425":-1,"53426":-1,"53427":2682,"53428":-1,"53429":-1,"53430":-1,"53431":-1,"53432":-1,"53433":-1,"53434":-1,"53435":-1,"53436":-1,"53437":2683,"53438":-1,"53439":-1,"53440":-1,"53441":-1,"53442":-1,"53443":-1,"53444":-1,"53445":-1,"53446":-1,"53447":-1,"53448":-1,"53449":-1,"53450":-1,"53451":-1,"53452":-1,"53453":-1,"53454":-1,"53455":-1,"53456":-1,"53457":-1,"53458":-1,"53459":2683,"53460":-1,"53461":-1,"53462":-1,"53463":-1,"53464":-1,"53465":-1,"53466":-1,"53467":-1,"53468":-1,"53469":-1,"53470":-1,"53471":-1,"53472":-1,"53473":-1,"53474":-1,"53475":-1,"53476":-1,"53477":-1,"53478":-1,"53479":-1,"53480":-1,"53481":-1,"53482":-1,"53483":-1,"53484":-1,"53485":-1,"53486":-1,"53487":-1,"53488":-1,"53489":-1,"53490":-1,"53491":2683,"53492":-1,"53493":-1,"53494":2684,"53495":-1,"53496":-1,"53497":-1,"53498":-1,"53499":-1,"53500":-1,"53501":0,"53502":-1,"53503":-1,"53504":-1,"53505":-1,"53506":-1,"53507":-1,"53508":-1,"53509":-1,"53510":-1,"53511":-1,"53512":-1,"53513":-1,"53514":-1,"53515":-1,"53516":2684,"53517":-1,"53518":-1,"53519":-1,"53520":-1,"53521":2683,"53522":-1,"53523":-1,"53524":-1,"53525":-1,"53526":-1,"53527":-1,"53528":-1,"53529":-1,"53530":-1,"53531":-1,"53532":-1,"53533":-1,"53534":2685,"53535":-1,"53536":-1,"53537":-1,"53538":-1,"53539":-1,"53540":-1,"53541":-1,"53542":-1,"53543":2683,"53544":-1,"53545":-1,"53546":-1,"53547":2687,"53548":-1,"53549":-1,"53550":-1,"53551":-1,"53552":-1,"53553":-1,"53554":2684,"53555":-1,"53556":-1,"53557":-1,"53558":-1,"53559":-1,"53560":-1,"53561":-1,"53562":2685,"53563":-1,"53564":2685,"53565":-1,"53566":-1,"53567":-1,"53568":-1,"53569":-1,"53570":-1,"53571":-1,"53572":-1,"53573":-1,"53574":-1,"53575":2681,"53576":-1,"53577":-1,"53578":-1,"53579":-1,"53580":-1,"53581":-1,"53582":-1,"53583":-1,"53584":-1,"53585":-1,"53586":2682,"53587":2684,"53588":-1,"53589":-1,"53590":-1,"53591":-1,"53592":2685,"53593":-1,"53594":2682,"53595":-1,"53596":-1,"53597":-1,"53598":-1,"53599":-1,"53600":-1,"53601":-1,"53602":2686,"53603":-1,"53604":-1,"53605":-1,"53606":-1,"53607":-1,"53608":2683,"53609":-1,"53610":-1,"53611":-1,"53612":-1,"53613":-1,"53614":-1,"53615":-1,"53616":-1,"53617":2684,"53618":-1,"53619":0,"53620":-1,"53621":-1,"53622":2686,"53623":-1,"53624":-1,"53625":-1,"53626":-1,"53627":-1,"53628":-1,"53629":-1,"53630":-1,"53631":-1,"53632":-1,"53633":-1,"53634":2685,"53635":-1,"53636":2686,"53637":-1,"53638":-1,"53639":-1,"53640":2681,"53641":-1,"53642":-1,"53643":-1,"53644":-1,"53645":-1,"53646":-1,"53647":-1,"53648":-1,"53649":0,"53650":2682,"53651":-1,"53652":-1,"53653":-1,"53654":-1,"53655":-1,"53656":-1,"53657":-1,"53658":-1,"53659":2684,"53660":-1,"53661":-1,"53662":-1,"53663":-1,"53664":-1,"53665":-1,"53666":-1,"53667":-1,"53668":-1,"53669":-1,"53670":-1,"53671":-1,"53672":-1,"53673":-1,"53674":2685,"53675":-1,"53676":-1,"53677":-1,"53678":-1,"53679":-1,"53680":2684,"53681":-1,"53682":-1,"53683":-1,"53684":-1,"53685":-1,"53686":-1,"53687":-1,"53688":-1,"53689":2685,"53690":-1,"53691":-1,"53692":-1,"53693":2685,"53694":-1,"53695":-1,"53696":-1,"53697":2681,"53698":-1,"53699":-1,"53700":-1,"53701":-1,"53702":-1,"53703":-1,"53704":-1,"53705":-1,"53706":-1,"53707":-1,"53708":-1,"53709":-1,"53710":-1,"53711":-1,"53712":-1,"53713":-1,"53714":-1,"53715":-1,"53716":-1,"53717":-1,"53718":2682,"53719":0,"53720":-1,"53721":-1,"53722":-1,"53723":-1,"53724":-1,"53725":-1,"53726":-1,"53727":-1,"53728":-1,"53729":-1,"53730":-1,"53731":-1,"53732":-1,"53733":-1,"53734":0,"53735":2687,"53736":2682,"53737":-1,"53738":-1,"53739":-1,"53740":-1,"53741":-1,"53742":-1,"53743":-1,"53744":-1,"53745":-1,"53746":-1,"53747":2683,"53748":-1,"53749":-1,"53750":2682,"53751":-1,"53752":-1,"53753":-1,"53754":2685,"53755":-1,"53756":-1,"53757":-1,"53758":-1,"53759":-1,"53760":0,"53761":-1,"53762":2682,"53763":2684,"53764":-1,"53765":0,"53766":-1,"53767":-1,"53768":-1,"53769":-1,"53770":0,"53771":2682,"53772":-1,"53773":-1,"53774":-1,"53775":-1,"53776":-1,"53777":-1,"53778":-1,"53779":-1,"53780":-1,"53781":-1,"53782":-1,"53783":-1,"53784":-1,"53785":-1,"53786":2685,"53787":-1,"53788":-1,"53789":-1,"53790":-1,"53791":-1,"53792":-1,"53793":-1,"53794":-1,"53795":-1,"53796":-1,"53797":-1,"53798":-1,"53799":-1,"53800":-1,"53801":-1,"53802":-1,"53803":-1,"53804":-1,"53805":-1,"53806":-1,"53807":-1,"53808":-1,"53809":-1,"53810":-1,"53811":2684,"53812":-1,"53813":-1,"53814":-1,"53815":-1,"53816":-1,"53817":-1,"53818":-1,"53819":-1,"53820":-1,"53821":-1,"53822":-1,"53823":-1,"53824":-1,"53825":-1,"53826":-1,"53827":-1,"53828":0,"53829":-1,"53830":-1,"53831":-1,"53832":-1,"53833":-1,"53834":-1,"53835":-1,"53836":2685,"53837":-1,"53838":-1,"53839":-1,"53840":-1,"53841":-1,"53842":-1,"53843":-1,"53844":-1,"53845":-1,"53846":-1,"53847":-1,"53848":2684,"53849":-1,"53850":-1,"53851":-1,"53852":-1,"53853":-1,"53854":-1,"53855":-1,"53856":-1,"53857":2685,"53858":-1,"53859":2683,"53860":-1,"53861":-1,"53862":-1,"53863":-1,"53864":-1,"53865":-1,"53866":-1,"53867":-1,"53868":2685,"53869":2686,"53870":-1,"53871":-1,"53872":-1,"53873":-1,"53874":-1,"53875":-1,"53876":-1,"53877":2683,"53878":2685,"53879":-1,"53880":-1,"53881":-1,"53882":-1,"53883":-1,"53884":-1,"53885":-1,"53886":-1,"53887":2687,"53888":-1,"53889":-1,"53890":-1,"53891":-1,"53892":-1,"53893":-1,"53894":-1,"53895":-1,"53896":2685,"53897":2683,"53898":-1,"53899":-1,"53900":-1,"53901":-1,"53902":-1,"53903":2684,"53904":-1,"53905":-1,"53906":-1,"53907":-1,"53908":-1,"53909":-1,"53910":2686,"53911":-1,"53912":-1,"53913":-1,"53914":2685,"53915":-1,"53916":-1,"53917":-1,"53918":-1,"53919":-1,"53920":-1,"53921":-1,"53922":0,"53923":-1,"53924":-1,"53925":-1,"53926":-1,"53927":-1,"53928":-1,"53929":-1,"53930":2681,"53931":-1,"53932":-1,"53933":-1,"53934":-1,"53935":-1,"53936":2684,"53937":-1,"53938":-1,"53939":-1,"53940":-1,"53941":-1,"53942":0,"53943":-1,"53944":-1,"53945":-1,"53946":-1,"53947":-1,"53948":-1,"53949":-1,"53950":-1,"53951":-1,"53952":-1,"53953":-1,"53954":2683,"53955":-1,"53956":-1,"53957":-1,"53958":-1,"53959":-1,"53960":-1,"53961":-1,"53962":-1,"53963":-1,"53964":2682,"53965":-1,"53966":-1,"53967":-1,"53968":-1,"53969":-1,"53970":-1,"53971":-1,"53972":-1,"53973":-1,"53974":0,"53975":-1,"53976":-1,"53977":-1,"53978":-1,"53979":-1,"53980":-1,"53981":-1,"53982":-1,"53983":-1,"53984":-1,"53985":-1,"53986":-1,"53987":-1,"53988":-1,"53989":-1,"53990":-1,"53991":-1,"53992":2686,"53993":-1,"53994":2682,"53995":2684,"53996":-1,"53997":-1,"53998":-1,"53999":-1,"54000":-1,"54001":-1,"54002":-1,"54003":-1,"54004":-1,"54005":2682,"54006":2682,"54007":-1,"54008":-1,"54009":2685,"54010":-1,"54011":2685,"54012":-1,"54013":-1,"54014":-1,"54015":-1,"54016":-1,"54017":-1,"54018":0,"54019":-1,"54020":-1,"54021":-1,"54022":-1,"54023":2685,"54024":-1,"54025":-1,"54026":-1,"54027":-1,"54028":-1,"54029":-1,"54030":-1,"54031":2685,"54032":-1,"54033":2685,"54034":-1,"54035":-1,"54036":2682,"54037":-1,"54038":-1,"54039":2684,"54040":-1,"54041":-1,"54042":-1,"54043":-1,"54044":-1,"54045":-1,"54046":-1,"54047":-1,"54048":2687,"54049":-1,"54050":-1,"54051":-1,"54052":-1,"54053":-1,"54054":2684,"54055":-1,"54056":0,"54057":-1,"54058":-1,"54059":-1,"54060":-1,"54061":-1,"54062":0,"54063":-1,"54064":-1,"54065":-1,"54066":-1,"54067":-1,"54068":-1,"54069":-1,"54070":2686,"54071":2684,"54072":-1,"54073":-1,"54074":-1,"54075":-1,"54076":-1,"54077":-1,"54078":-1,"54079":-1,"54080":-1,"54081":-1,"54082":2686,"54083":-1,"54084":-1,"54085":-1,"54086":-1,"54087":-1,"54088":-1,"54089":-1,"54090":-1,"54091":2684,"54092":-1,"54093":-1,"54094":-1,"54095":-1,"54096":-1,"54097":-1,"54098":-1,"54099":-1,"54100":-1,"54101":-1,"54102":-1,"54103":2687,"54104":-1,"54105":-1,"54106":-1,"54107":-1,"54108":-1,"54109":-1,"54110":-1,"54111":-1,"54112":-1,"54113":-1,"54114":-1,"54115":-1,"54116":-1,"54117":-1,"54118":-1,"54119":2685,"54120":-1,"54121":-1,"54122":-1,"54123":-1,"54124":-1,"54125":-1,"54126":2683,"54127":-1,"54128":-1,"54129":-1,"54130":-1,"54131":-1,"54132":-1,"54133":-1,"54134":-1,"54135":-1,"54136":-1,"54137":-1,"54138":2681,"54139":2682,"54140":-1,"54141":-1,"54142":-1,"54143":-1,"54144":0,"54145":-1,"54146":-1,"54147":-1,"54148":-1,"54149":-1,"54150":-1,"54151":-1,"54152":-1,"54153":-1,"54154":-1,"54155":-1,"54156":-1,"54157":0,"54158":-1,"54159":-1,"54160":-1,"54161":-1,"54162":2683,"54163":-1,"54164":-1,"54165":-1,"54166":-1,"54167":-1,"54168":-1,"54169":-1,"54170":-1,"54171":-1,"54172":-1,"54173":-1,"54174":-1,"54175":-1,"54176":-1,"54177":-1,"54178":-1,"54179":2685,"54180":2685,"54181":2686,"54182":-1,"54183":-1,"54184":-1,"54185":-1,"54186":2684,"54187":0,"54188":2682,"54189":2681,"54190":-1,"54191":-1,"54192":2684,"54193":-1,"54194":-1,"54195":0,"54196":-1,"54197":-1,"54198":-1,"54199":-1,"54200":-1,"54201":-1,"54202":-1,"54203":2684,"54204":-1,"54205":-1,"54206":-1,"54207":-1,"54208":2686,"54209":-1,"54210":-1,"54211":-1,"54212":2686,"54213":-1,"54214":-1,"54215":-1,"54216":-1,"54217":-1,"54218":-1,"54219":2685,"54220":2683,"54221":-1,"54222":2684,"54223":-1,"54224":0,"54225":-1,"54226":-1,"54227":-1,"54228":-1,"54229":-1,"54230":2684,"54231":-1,"54232":-1,"54233":-1,"54234":-1,"54235":-1,"54236":2681,"54237":-1,"54238":-1,"54239":-1,"54240":-1,"54241":-1,"54242":-1,"54243":2686,"54244":-1,"54245":-1,"54246":2687,"54247":-1,"54248":-1,"54249":-1,"54250":-1,"54251":-1,"54252":-1,"54253":-1,"54254":-1,"54255":0,"54256":-1,"54257":-1,"54258":-1,"54259":-1,"54260":-1,"54261":-1,"54262":-1,"54263":-1,"54264":-1,"54265":-1,"54266":2685,"54267":-1,"54268":-1,"54269":-1,"54270":-1,"54271":2681,"54272":-1,"54273":-1,"54274":-1,"54275":-1,"54276":-1,"54277":2685,"54278":-1,"54279":2686,"54280":2683,"54281":-1,"54282":-1,"54283":-1,"54284":2682,"54285":-1,"54286":-1,"54287":-1,"54288":-1,"54289":2683,"54290":-1,"54291":-1,"54292":-1,"54293":2682,"54294":-1,"54295":-1,"54296":-1,"54297":-1,"54298":0,"54299":0,"54300":-1,"54301":-1,"54302":-1,"54303":-1,"54304":-1,"54305":2686,"54306":-1,"54307":0,"54308":2687,"54309":-1,"54310":-1,"54311":-1,"54312":-1,"54313":-1,"54314":-1,"54315":-1,"54316":0,"54317":-1,"54318":-1,"54319":-1,"54320":-1,"54321":2682,"54322":-1,"54323":-1,"54324":-1,"54325":-1,"54326":2687,"54327":-1,"54328":-1,"54329":2687,"54330":-1,"54331":-1,"54332":2682,"54333":-1,"54334":-1,"54335":-1,"54336":-1,"54337":-1,"54338":-1,"54339":-1,"54340":2685,"54341":-1,"54342":-1,"54343":-1,"54344":-1,"54345":-1,"54346":-1,"54347":-1,"54348":-1,"54349":0,"54350":-1,"54351":-1,"54352":-1,"54353":-1,"54354":-1,"54355":-1,"54356":-1,"54357":-1,"54358":-1,"54359":-1,"54360":-1,"54361":2682,"54362":-1,"54363":-1,"54364":-1,"54365":-1,"54366":2684,"54367":-1,"54368":-1,"54369":-1,"54370":2685,"54371":-1,"54372":-1,"54373":-1,"54374":-1,"54375":-1,"54376":-1,"54377":-1,"54378":-1,"54379":-1,"54380":-1,"54381":-1,"54382":-1,"54383":-1,"54384":-1,"54385":-1,"54386":-1,"54387":-1,"54388":-1,"54389":-1,"54390":-1,"54391":2683,"54392":-1,"54393":-1,"54394":2684,"54395":-1,"54396":-1,"54397":-1,"54398":-1,"54399":-1,"54400":-1,"54401":-1,"54402":-1,"54403":-1,"54404":-1,"54405":-1,"54406":-1,"54407":-1,"54408":-1,"54409":-1,"54410":-1,"54411":2683,"54412":-1,"54413":-1,"54414":-1,"54415":-1,"54416":-1,"54417":-1,"54418":-1,"54419":-1,"54420":-1,"54421":-1,"54422":2686,"54423":-1,"54424":-1,"54425":2682,"54426":-1,"54427":2681,"54428":-1,"54429":-1,"54430":-1,"54431":-1,"54432":-1,"54433":-1,"54434":-1,"54435":-1,"54436":-1,"54437":-1,"54438":2682,"54439":-1,"54440":-1,"54441":-1,"54442":-1,"54443":-1,"54444":2683,"54445":-1,"54446":-1,"54447":-1,"54448":-1,"54449":-1,"54450":-1,"54451":-1,"54452":-1,"54453":-1,"54454":-1,"54455":2686,"54456":-1,"54457":-1,"54458":-1,"54459":-1,"54460":-1,"54461":-1,"54462":-1,"54463":-1,"54464":-1,"54465":-1,"54466":-1,"54467":-1,"54468":-1,"54469":-1,"54470":2684,"54471":-1,"54472":-1,"54473":-1,"54474":-1,"54475":-1,"54476":-1,"54477":2685,"54478":-1,"54479":-1,"54480":-1,"54481":-1,"54482":-1,"54483":-1,"54484":0,"54485":-1,"54486":-1,"54487":-1,"54488":2686,"54489":-1,"54490":-1,"54491":-1,"54492":-1,"54493":-1,"54494":-1,"54495":-1,"54496":-1,"54497":-1,"54498":-1,"54499":-1,"54500":-1,"54501":0,"54502":-1,"54503":-1,"54504":-1,"54505":2682,"54506":-1,"54507":2683,"54508":-1,"54509":-1,"54510":2683,"54511":-1,"54512":0,"54513":-1,"54514":-1,"54515":-1,"54516":-1,"54517":-1,"54518":2685,"54519":-1,"54520":-1,"54521":2686,"54522":-1,"54523":-1,"54524":-1,"54525":-1,"54526":-1,"54527":-1,"54528":-1,"54529":-1,"54530":-1,"54531":-1,"54532":-1,"54533":2687,"54534":-1,"54535":-1,"54536":-1,"54537":-1,"54538":-1,"54539":-1,"54540":-1,"54541":-1,"54542":-1,"54543":-1,"54544":-1,"54545":-1,"54546":-1,"54547":-1,"54548":-1,"54549":-1,"54550":-1,"54551":-1,"54552":-1,"54553":0,"54554":2684,"54555":-1,"54556":-1,"54557":-1,"54558":-1,"54559":2682,"54560":2684,"54561":-1,"54562":-1,"54563":-1,"54564":-1,"54565":2682,"54566":-1,"54567":-1,"54568":-1,"54569":-1,"54570":-1,"54571":-1,"54572":-1,"54573":-1,"54574":-1,"54575":0,"54576":2682,"54577":0,"54578":-1,"54579":-1,"54580":2681,"54581":-1,"54582":0,"54583":2684,"54584":-1,"54585":-1,"54586":-1,"54587":-1,"54588":-1,"54589":-1,"54590":-1,"54591":-1,"54592":-1,"54593":-1,"54594":-1,"54595":2682,"54596":-1,"54597":-1,"54598":-1,"54599":-1,"54600":-1,"54601":-1,"54602":-1,"54603":-1,"54604":-1,"54605":-1,"54606":-1,"54607":-1,"54608":-1,"54609":-1,"54610":-1,"54611":-1,"54612":-1,"54613":-1,"54614":-1,"54615":2687,"54616":-1,"54617":-1,"54618":-1,"54619":-1,"54620":-1,"54621":-1,"54622":-1,"54623":-1,"54624":0,"54625":-1,"54626":-1,"54627":0,"54628":-1,"54629":2687,"54630":-1,"54631":-1,"54632":-1,"54633":-1,"54634":-1,"54635":-1,"54636":-1,"54637":-1,"54638":-1,"54639":2686,"54640":2686,"54641":-1,"54642":2687,"54643":2685,"54644":2686,"54645":-1,"54646":-1,"54647":-1,"54648":-1,"54649":-1,"54650":-1,"54651":-1,"54652":-1,"54653":0,"54654":-1,"54655":2685,"54656":-1,"54657":2685,"54658":2686,"54659":-1,"54660":-1,"54661":-1,"54662":-1,"54663":2685,"54664":2684,"54665":-1,"54666":-1,"54667":-1,"54668":-1,"54669":-1,"54670":0,"54671":-1,"54672":-1,"54673":-1,"54674":-1,"54675":2682,"54676":2687,"54677":2685,"54678":-1,"54679":0,"54680":-1,"54681":2683,"54682":-1,"54683":-1,"54684":-1,"54685":-1,"54686":-1,"54687":-1,"54688":0,"54689":-1,"54690":-1,"54691":-1,"54692":-1,"54693":-1,"54694":2682,"54695":-1,"54696":-1,"54697":2683,"54698":-1,"54699":-1,"54700":2686,"54701":-1,"54702":-1,"54703":-1,"54704":-1,"54705":-1,"54706":2683,"54707":-1,"54708":-1,"54709":-1,"54710":-1,"54711":-1,"54712":-1,"54713":2684,"54714":2687,"54715":-1,"54716":-1,"54717":-1,"54718":-1,"54719":-1,"54720":-1,"54721":-1,"54722":-1,"54723":-1,"54724":-1,"54725":2682,"54726":-1,"54727":-1,"54728":-1,"54729":2682,"54730":-1,"54731":-1,"54732":2682,"54733":2685,"54734":2683,"54735":-1,"54736":-1,"54737":-1,"54738":-1,"54739":-1,"54740":-1,"54741":-1,"54742":-1,"54743":-1,"54744":-1,"54745":-1,"54746":-1,"54747":-1,"54748":2682,"54749":-1,"54750":-1,"54751":2684,"54752":-1,"54753":-1,"54754":-1,"54755":-1,"54756":2681,"54757":-1,"54758":-1,"54759":-1,"54760":-1,"54761":2685,"54762":-1,"54763":-1,"54764":-1,"54765":-1,"54766":0,"54767":-1,"54768":-1,"54769":-1,"54770":2682,"54771":-1,"54772":-1,"54773":-1,"54774":-1,"54775":2684,"54776":-1,"54777":-1,"54778":0,"54779":-1,"54780":-1,"54781":-1,"54782":2687,"54783":-1,"54784":-1,"54785":0,"54786":-1,"54787":-1,"54788":-1,"54789":-1,"54790":-1,"54791":-1,"54792":-1,"54793":-1,"54794":-1,"54795":-1,"54796":-1,"54797":-1,"54798":0,"54799":-1,"54800":-1,"54801":-1,"54802":-1,"54803":-1,"54804":-1,"54805":-1,"54806":-1,"54807":-1,"54808":-1,"54809":-1,"54810":-1,"54811":-1,"54812":-1,"54813":-1,"54814":-1,"54815":-1,"54816":-1,"54817":-1,"54818":-1,"54819":-1,"54820":-1,"54821":-1,"54822":-1,"54823":-1,"54824":-1,"54825":2686,"54826":-1,"54827":-1,"54828":-1,"54829":-1,"54830":-1,"54831":-1,"54832":-1,"54833":-1,"54834":-1,"54835":-1,"54836":-1,"54837":-1,"54838":0,"54839":-1,"54840":-1,"54841":-1,"54842":2685,"54843":-1,"54844":-1,"54845":-1,"54846":2685,"54847":-1,"54848":-1,"54849":-1,"54850":-1,"54851":-1,"54852":-1,"54853":2683,"54854":-1,"54855":0,"54856":-1,"54857":-1,"54858":-1,"54859":-1,"54860":-1,"54861":-1,"54862":-1,"54863":-1,"54864":-1,"54865":2683,"54866":-1,"54867":-1,"54868":-1,"54869":-1,"54870":-1,"54871":-1,"54872":-1,"54873":-1,"54874":-1,"54875":-1,"54876":-1,"54877":-1,"54878":2687,"54879":-1,"54880":-1,"54881":-1,"54882":2685,"54883":-1,"54884":-1,"54885":-1,"54886":-1,"54887":-1,"54888":-1,"54889":-1,"54890":-1,"54891":-1,"54892":-1,"54893":-1,"54894":-1,"54895":-1,"54896":2681,"54897":-1,"54898":2685,"54899":-1,"54900":-1,"54901":-1,"54902":-1,"54903":-1,"54904":-1,"54905":-1,"54906":2682,"54907":0,"54908":-1,"54909":-1,"54910":-1,"54911":-1,"54912":-1,"54913":-1,"54914":-1,"54915":-1,"54916":-1,"54917":-1,"54918":-1,"54919":-1,"54920":-1,"54921":2686,"54922":-1,"54923":-1,"54924":-1,"54925":-1,"54926":-1,"54927":-1,"54928":-1,"54929":-1,"54930":2684,"54931":-1,"54932":-1,"54933":2686,"54934":-1,"54935":-1,"54936":-1,"54937":-1,"54938":-1,"54939":-1,"54940":-1,"54941":-1,"54942":-1,"54943":-1,"54944":-1,"54945":-1,"54946":-1,"54947":-1,"54948":-1,"54949":-1,"54950":-1,"54951":-1,"54952":-1,"54953":-1,"54954":-1,"54955":-1,"54956":-1,"54957":-1,"54958":-1,"54959":-1,"54960":-1,"54961":2687,"54962":2684,"54963":-1,"54964":-1,"54965":-1,"54966":-1,"54967":-1,"54968":-1,"54969":-1,"54970":0,"54971":-1,"54972":-1,"54973":-1,"54974":-1,"54975":-1,"54976":-1,"54977":-1,"54978":-1,"54979":-1,"54980":-1,"54981":-1,"54982":-1,"54983":-1,"54984":-1,"54985":0,"54986":2681,"54987":-1,"54988":-1,"54989":2682,"54990":-1,"54991":2684,"54992":-1,"54993":-1,"54994":-1,"54995":-1,"54996":-1,"54997":-1,"54998":-1,"54999":-1,"55000":-1,"55001":-1,"55002":0,"55003":-1,"55004":-1,"55005":-1,"55006":-1,"55007":-1,"55008":-1,"55009":-1,"55010":-1,"55011":-1,"55012":-1,"55013":-1,"55014":-1,"55015":-1,"55016":-1,"55017":-1,"55018":-1,"55019":-1,"55020":-1,"55021":-1,"55022":-1,"55023":-1,"55024":-1,"55025":-1,"55026":-1,"55027":-1,"55028":-1,"55029":-1,"55030":2687,"55031":-1,"55032":-1,"55033":2683,"55034":-1,"55035":-1,"55036":2687,"55037":-1,"55038":-1,"55039":-1,"55040":-1,"55041":2686,"55042":-1,"55043":-1,"55044":-1,"55045":-1,"55046":0,"55047":-1,"55048":-1,"55049":-1,"55050":-1,"55051":-1,"55052":-1,"55053":-1,"55054":-1,"55055":-1,"55056":-1,"55057":-1,"55058":-1,"55059":-1,"55060":-1,"55061":-1,"55062":-1,"55063":-1,"55064":-1,"55065":-1,"55066":-1,"55067":-1,"55068":-1,"55069":-1,"55070":-1,"55071":-1,"55072":0,"55073":-1,"55074":-1,"55075":-1,"55076":-1,"55077":0,"55078":0,"55079":2685,"55080":2682,"55081":-1,"55082":-1,"55083":-1,"55084":-1,"55085":-1,"55086":-1,"55087":-1,"55088":2685,"55089":-1,"55090":-1,"55091":2684,"55092":-1,"55093":-1,"55094":-1,"55095":-1,"55096":-1,"55097":2681,"55098":2686,"55099":2684,"55100":-1,"55101":-1,"55102":-1,"55103":-1,"55104":2684,"55105":-1,"55106":0,"55107":-1,"55108":-1,"55109":-1,"55110":-1,"55111":-1,"55112":-1,"55113":-1,"55114":-1,"55115":-1,"55116":2686,"55117":-1,"55118":-1,"55119":2682,"55120":-1,"55121":-1,"55122":-1,"55123":0,"55124":-1,"55125":-1,"55126":-1,"55127":-1,"55128":-1,"55129":-1,"55130":2684,"55131":-1,"55132":-1,"55133":-1,"55134":-1,"55135":-1,"55136":-1,"55137":-1,"55138":2685,"55139":2681,"55140":0,"55141":2685,"55142":-1,"55143":-1,"55144":-1,"55145":-1,"55146":-1,"55147":-1,"55148":-1,"55149":-1,"55150":0,"55151":-1,"55152":-1,"55153":0,"55154":-1,"55155":-1,"55156":-1,"55157":0,"55158":-1,"55159":-1,"55160":-1,"55161":-1,"55162":-1,"55163":-1,"55164":-1,"55165":-1,"55166":-1,"55167":0,"55168":-1,"55169":2683,"55170":-1,"55171":-1,"55172":-1,"55173":-1,"55174":-1,"55175":-1,"55176":-1,"55177":2684,"55178":2686,"55179":-1,"55180":2684,"55181":-1,"55182":-1,"55183":-1,"55184":-1,"55185":-1,"55186":-1,"55187":-1,"55188":-1,"55189":-1,"55190":-1,"55191":-1,"55192":-1,"55193":2684,"55194":-1,"55195":-1,"55196":-1,"55197":-1,"55198":-1,"55199":-1,"55200":-1,"55201":-1,"55202":0,"55203":2684,"55204":-1,"55205":0,"55206":-1,"55207":-1,"55208":-1,"55209":-1,"55210":-1,"55211":-1,"55212":-1,"55213":-1,"55214":-1,"55215":-1,"55216":-1,"55217":-1,"55218":-1,"55219":2682,"55220":-1,"55221":-1,"55222":-1,"55223":-1,"55224":-1,"55225":-1,"55226":-1,"55227":-1,"55228":0,"55229":-1,"55230":2683,"55231":0,"55232":-1,"55233":2686,"55234":-1,"55235":-1,"55236":-1,"55237":0,"55238":-1,"55239":-1,"55240":-1,"55241":-1,"55242":-1,"55243":-1,"55244":-1,"55245":-1,"55246":-1,"55247":-1,"55248":-1,"55249":-1,"55250":-1,"55251":-1,"55252":-1,"55253":-1,"55254":-1,"55255":2687,"55256":0,"55257":2684,"55258":-1,"55259":-1,"55260":-1,"55261":-1,"55262":-1,"55263":2683,"55264":-1,"55265":-1,"55266":-1,"55267":-1,"55268":-1,"55269":-1,"55270":2685,"55271":-1,"55272":-1,"55273":-1,"55274":-1,"55275":-1,"55276":-1,"55277":-1,"55278":-1,"55279":2682,"55280":-1,"55281":2687,"55282":-1,"55283":-1,"55284":-1,"55285":-1,"55286":-1,"55287":-1,"55288":-1,"55289":-1,"55290":-1,"55291":-1,"55292":0,"55293":-1,"55294":-1,"55295":2682,"55296":-1,"55297":0,"55298":-1,"55299":-1,"55300":2682,"55301":-1,"55302":-1,"55303":-1,"55304":-1,"55305":-1,"55306":-1,"55307":-1,"55308":0,"55309":2685,"55310":-1,"55311":-1,"55312":-1,"55313":-1,"55314":-1,"55315":-1,"55316":-1,"55317":-1,"55318":-1,"55319":-1,"55320":-1,"55321":-1,"55322":-1,"55323":-1,"55324":-1,"55325":-1,"55326":-1,"55327":-1,"55328":-1,"55329":-1,"55330":-1,"55331":-1,"55332":-1,"55333":-1,"55334":-1,"55335":-1,"55336":-1,"55337":-1,"55338":-1,"55339":-1,"55340":-1,"55341":-1,"55342":2683,"55343":-1,"55344":-1,"55345":-1,"55346":-1,"55347":0,"55348":-1,"55349":-1,"55350":2682,"55351":-1,"55352":-1,"55353":-1,"55354":-1,"55355":0,"55356":-1,"55357":-1,"55358":2683,"55359":-1,"55360":-1,"55361":-1,"55362":2686,"55363":-1,"55364":-1,"55365":0,"55366":-1,"55367":-1,"55368":-1,"55369":2682,"55370":-1,"55371":-1,"55372":-1,"55373":0,"55374":-1,"55375":-1,"55376":-1,"55377":-1,"55378":-1,"55379":2684,"55380":-1,"55381":-1,"55382":-1,"55383":-1,"55384":-1,"55385":-1,"55386":-1,"55387":-1,"55388":2687,"55389":-1,"55390":-1,"55391":-1,"55392":-1,"55393":-1,"55394":-1,"55395":2683,"55396":-1,"55397":-1,"55398":-1,"55399":-1,"55400":-1,"55401":-1,"55402":-1,"55403":2686,"55404":-1,"55405":-1,"55406":-1,"55407":-1,"55408":-1,"55409":-1,"55410":2685,"55411":2682,"55412":-1,"55413":-1,"55414":-1,"55415":-1,"55416":-1,"55417":0,"55418":-1,"55419":-1,"55420":-1,"55421":-1,"55422":-1,"55423":-1,"55424":-1,"55425":-1,"55426":-1,"55427":-1,"55428":-1,"55429":-1,"55430":-1,"55431":-1,"55432":0,"55433":-1,"55434":-1,"55435":-1,"55436":-1,"55437":-1,"55438":-1,"55439":-1,"55440":-1,"55441":-1,"55442":-1,"55443":-1,"55444":-1,"55445":-1,"55446":-1,"55447":-1,"55448":-1,"55449":2684,"55450":-1,"55451":-1,"55452":-1,"55453":-1,"55454":-1,"55455":-1,"55456":-1,"55457":-1,"55458":-1,"55459":-1,"55460":-1,"55461":-1,"55462":-1,"55463":-1,"55464":-1,"55465":-1,"55466":0,"55467":-1,"55468":0,"55469":2683,"55470":-1,"55471":2681,"55472":0,"55473":-1,"55474":-1,"55475":-1,"55476":-1,"55477":-1,"55478":-1,"55479":-1,"55480":-1,"55481":-1,"55482":-1,"55483":-1,"55484":-1,"55485":-1,"55486":-1,"55487":-1,"55488":-1,"55489":-1,"55490":-1,"55491":-1,"55492":-1,"55493":0,"55494":-1,"55495":-1,"55496":2686,"55497":-1,"55498":-1,"55499":2682,"55500":-1,"55501":-1,"55502":-1,"55503":-1,"55504":-1,"55505":-1,"55506":2685,"55507":-1,"55508":-1,"55509":-1,"55510":-1,"55511":-1,"55512":-1,"55513":-1,"55514":-1,"55515":-1,"55516":-1,"55517":-1,"55518":-1,"55519":2684,"55520":-1,"55521":-1,"55522":-1,"55523":-1,"55524":-1,"55525":-1,"55526":2682,"55527":-1,"55528":-1,"55529":2685,"55530":-1,"55531":-1,"55532":-1,"55533":-1,"55534":-1,"55535":0,"55536":2684,"55537":2684,"55538":-1,"55539":-1,"55540":-1,"55541":-1,"55542":-1,"55543":-1,"55544":2687,"55545":-1,"55546":-1,"55547":-1,"55548":-1,"55549":-1,"55550":-1,"55551":-1,"55552":-1,"55553":-1,"55554":-1,"55555":-1,"55556":-1,"55557":-1,"55558":-1,"55559":-1,"55560":0,"55561":2682,"55562":-1,"55563":-1,"55564":-1,"55565":-1,"55566":-1,"55567":-1,"55568":-1,"55569":-1,"55570":-1,"55571":-1,"55572":-1,"55573":-1,"55574":-1,"55575":-1,"55576":-1,"55577":-1,"55578":-1,"55579":-1,"55580":-1,"55581":-1,"55582":-1,"55583":-1,"55584":2684,"55585":-1,"55586":-1,"55587":-1,"55588":-1,"55589":-1,"55590":-1,"55591":-1,"55592":-1,"55593":-1,"55594":2685,"55595":-1,"55596":-1,"55597":-1,"55598":2686,"55599":-1,"55600":-1,"55601":-1,"55602":-1,"55603":-1,"55604":-1,"55605":-1,"55606":-1,"55607":-1,"55608":-1,"55609":-1,"55610":-1,"55611":-1,"55612":-1,"55613":2684,"55614":-1,"55615":-1,"55616":-1,"55617":-1,"55618":0,"55619":-1,"55620":-1,"55621":-1,"55622":2686,"55623":-1,"55624":-1,"55625":-1,"55626":-1,"55627":-1,"55628":-1,"55629":2683,"55630":-1,"55631":-1,"55632":-1,"55633":-1,"55634":-1,"55635":-1,"55636":-1,"55637":-1,"55638":2684,"55639":-1,"55640":-1,"55641":2684,"55642":-1,"55643":-1,"55644":-1,"55645":-1,"55646":-1,"55647":-1,"55648":-1,"55649":-1,"55650":0,"55651":2685,"55652":2687,"55653":-1,"55654":-1,"55655":-1,"55656":-1,"55657":-1,"55658":2682,"55659":-1,"55660":-1,"55661":-1,"55662":2684,"55663":-1,"55664":-1,"55665":0,"55666":-1,"55667":-1,"55668":-1,"55669":-1,"55670":-1,"55671":-1,"55672":-1,"55673":-1,"55674":-1,"55675":-1,"55676":-1,"55677":-1,"55678":-1,"55679":-1,"55680":-1,"55681":-1,"55682":-1,"55683":2681,"55684":-1,"55685":-1,"55686":-1,"55687":-1,"55688":2686,"55689":-1,"55690":-1,"55691":0,"55692":-1,"55693":-1,"55694":-1,"55695":-1,"55696":2684,"55697":-1,"55698":-1,"55699":2682,"55700":-1,"55701":-1,"55702":0,"55703":-1,"55704":-1,"55705":-1,"55706":-1,"55707":-1,"55708":-1,"55709":2686,"55710":-1,"55711":-1,"55712":-1,"55713":-1,"55714":-1,"55715":-1,"55716":2684,"55717":-1,"55718":-1,"55719":-1,"55720":-1,"55721":-1,"55722":2686,"55723":-1,"55724":-1,"55725":-1,"55726":-1,"55727":-1,"55728":-1,"55729":-1,"55730":-1,"55731":-1,"55732":-1,"55733":-1,"55734":-1,"55735":-1,"55736":-1,"55737":-1,"55738":-1,"55739":-1,"55740":-1,"55741":-1,"55742":-1,"55743":-1,"55744":-1,"55745":-1,"55746":2685,"55747":2685,"55748":-1,"55749":-1,"55750":-1,"55751":-1,"55752":-1,"55753":-1,"55754":2685,"55755":-1,"55756":-1,"55757":2683,"55758":-1,"55759":-1,"55760":-1,"55761":-1,"55762":-1,"55763":-1,"55764":-1,"55765":-1,"55766":-1,"55767":2685,"55768":-1,"55769":-1,"55770":-1,"55771":-1,"55772":-1,"55773":2684,"55774":-1,"55775":-1,"55776":-1,"55777":-1,"55778":-1,"55779":-1,"55780":-1,"55781":-1,"55782":-1,"55783":-1,"55784":-1,"55785":-1,"55786":-1,"55787":-1,"55788":0,"55789":-1,"55790":-1,"55791":-1,"55792":-1,"55793":-1,"55794":-1,"55795":-1,"55796":-1,"55797":-1,"55798":-1,"55799":-1,"55800":-1,"55801":2682,"55802":-1,"55803":2682,"55804":-1,"55805":-1,"55806":-1,"55807":-1,"55808":-1,"55809":-1,"55810":-1,"55811":-1,"55812":-1,"55813":-1,"55814":-1,"55815":-1,"55816":-1,"55817":-1,"55818":-1,"55819":2681,"55820":-1,"55821":-1,"55822":-1,"55823":-1,"55824":-1,"55825":-1,"55826":0,"55827":-1,"55828":2681,"55829":-1,"55830":-1,"55831":-1,"55832":-1,"55833":-1,"55834":-1,"55835":-1,"55836":-1,"55837":-1,"55838":-1,"55839":-1,"55840":-1,"55841":-1,"55842":-1,"55843":2686,"55844":-1,"55845":-1,"55846":-1,"55847":-1,"55848":-1,"55849":-1,"55850":-1,"55851":-1,"55852":2685,"55853":-1,"55854":-1,"55855":0,"55856":2685,"55857":-1,"55858":-1,"55859":-1,"55860":-1,"55861":-1,"55862":-1,"55863":-1,"55864":-1,"55865":-1,"55866":-1,"55867":-1,"55868":-1,"55869":-1,"55870":-1,"55871":-1,"55872":-1,"55873":-1,"55874":-1,"55875":-1,"55876":-1,"55877":-1,"55878":-1,"55879":-1,"55880":-1,"55881":-1,"55882":-1,"55883":-1,"55884":-1,"55885":-1,"55886":-1,"55887":-1,"55888":-1,"55889":2681,"55890":-1,"55891":0,"55892":-1,"55893":-1,"55894":-1,"55895":-1,"55896":-1,"55897":2687,"55898":-1,"55899":-1,"55900":2682,"55901":-1,"55902":-1,"55903":-1,"55904":-1,"55905":-1,"55906":-1,"55907":-1,"55908":-1,"55909":-1,"55910":2682,"55911":-1,"55912":-1,"55913":-1,"55914":2686,"55915":-1,"55916":-1,"55917":-1,"55918":-1,"55919":-1,"55920":-1,"55921":2687,"55922":-1,"55923":-1,"55924":-1,"55925":-1,"55926":-1,"55927":-1,"55928":-1,"55929":-1,"55930":-1,"55931":-1,"55932":-1,"55933":-1,"55934":-1,"55935":-1,"55936":-1,"55937":-1,"55938":-1,"55939":-1,"55940":-1,"55941":-1,"55942":-1,"55943":-1,"55944":-1,"55945":-1,"55946":-1,"55947":-1,"55948":-1,"55949":-1,"55950":-1,"55951":-1,"55952":-1,"55953":0,"55954":-1,"55955":2682,"55956":-1,"55957":-1,"55958":-1,"55959":-1,"55960":-1,"55961":-1,"55962":-1,"55963":-1,"55964":-1,"55965":-1,"55966":-1,"55967":-1,"55968":-1,"55969":-1,"55970":-1,"55971":-1,"55972":-1,"55973":-1,"55974":-1,"55975":-1,"55976":-1,"55977":-1,"55978":-1,"55979":-1,"55980":2687,"55981":-1,"55982":-1,"55983":-1,"55984":-1,"55985":-1,"55986":2686,"55987":-1,"55988":-1,"55989":2683,"55990":-1,"55991":-1,"55992":-1,"55993":-1,"55994":-1,"55995":-1,"55996":2683,"55997":-1,"55998":-1,"55999":-1,"56000":-1,"56001":-1,"56002":2684,"56003":-1,"56004":-1,"56005":2683,"56006":-1,"56007":-1,"56008":-1,"56009":-1,"56010":-1,"56011":-1,"56012":-1,"56013":-1,"56014":0,"56015":-1,"56016":-1,"56017":-1,"56018":-1,"56019":2685,"56020":-1,"56021":2687,"56022":-1,"56023":-1,"56024":-1,"56025":-1,"56026":-1,"56027":-1,"56028":2687,"56029":-1,"56030":-1,"56031":-1,"56032":-1,"56033":-1,"56034":-1,"56035":-1,"56036":-1,"56037":0,"56038":-1,"56039":-1,"56040":-1,"56041":-1,"56042":0,"56043":2685,"56044":-1,"56045":-1,"56046":-1,"56047":2686,"56048":-1,"56049":-1,"56050":-1,"56051":2686,"56052":2682,"56053":-1,"56054":2683,"56055":-1,"56056":-1,"56057":-1,"56058":-1,"56059":-1,"56060":2683,"56061":-1,"56062":-1,"56063":0,"56064":-1,"56065":-1,"56066":-1,"56067":-1,"56068":-1,"56069":-1,"56070":2686,"56071":-1,"56072":-1,"56073":-1,"56074":-1,"56075":-1,"56076":-1,"56077":2683,"56078":-1,"56079":-1,"56080":-1,"56081":-1,"56082":-1,"56083":-1,"56084":-1,"56085":-1,"56086":-1,"56087":-1,"56088":-1,"56089":-1,"56090":-1,"56091":-1,"56092":-1,"56093":-1,"56094":-1,"56095":-1,"56096":-1,"56097":-1,"56098":-1,"56099":0,"56100":-1,"56101":-1,"56102":-1,"56103":-1,"56104":-1,"56105":-1,"56106":-1,"56107":2683,"56108":0,"56109":-1,"56110":-1,"56111":2685,"56112":-1,"56113":-1,"56114":2682,"56115":-1,"56116":-1,"56117":-1,"56118":-1,"56119":-1,"56120":-1,"56121":-1,"56122":-1,"56123":-1,"56124":-1,"56125":-1,"56126":-1,"56127":-1,"56128":-1,"56129":-1,"56130":-1,"56131":-1,"56132":-1,"56133":-1,"56134":-1,"56135":2682,"56136":2683,"56137":-1,"56138":-1,"56139":-1,"56140":-1,"56141":-1,"56142":-1,"56143":-1,"56144":-1,"56145":-1,"56146":2686,"56147":-1,"56148":-1,"56149":-1,"56150":-1,"56151":2686,"56152":-1,"56153":-1,"56154":-1,"56155":-1,"56156":-1,"56157":2683,"56158":2683,"56159":-1,"56160":-1,"56161":-1,"56162":-1,"56163":2681,"56164":-1,"56165":-1,"56166":2687,"56167":-1,"56168":-1,"56169":-1,"56170":-1,"56171":-1,"56172":-1,"56173":-1,"56174":2683,"56175":-1,"56176":-1,"56177":-1,"56178":-1,"56179":-1,"56180":-1,"56181":-1,"56182":-1,"56183":-1,"56184":-1,"56185":-1,"56186":-1,"56187":-1,"56188":-1,"56189":-1,"56190":2681,"56191":-1,"56192":2682,"56193":-1,"56194":-1,"56195":-1,"56196":-1,"56197":-1,"56198":2686,"56199":-1,"56200":-1,"56201":-1,"56202":-1,"56203":-1,"56204":0,"56205":-1,"56206":2683,"56207":-1,"56208":-1,"56209":-1,"56210":-1,"56211":-1,"56212":-1,"56213":-1,"56214":2684,"56215":-1,"56216":-1,"56217":-1,"56218":-1,"56219":-1,"56220":-1,"56221":-1,"56222":2684,"56223":-1,"56224":-1,"56225":-1,"56226":-1,"56227":-1,"56228":-1,"56229":-1,"56230":-1,"56231":-1,"56232":2682,"56233":-1,"56234":-1,"56235":-1,"56236":-1,"56237":-1,"56238":-1,"56239":-1,"56240":-1,"56241":-1,"56242":-1,"56243":2681,"56244":-1,"56245":-1,"56246":-1,"56247":0,"56248":-1,"56249":-1,"56250":-1,"56251":-1,"56252":-1,"56253":-1,"56254":-1,"56255":-1,"56256":-1,"56257":-1,"56258":-1,"56259":-1,"56260":0,"56261":-1,"56262":2686,"56263":-1,"56264":-1,"56265":-1,"56266":2682,"56267":-1,"56268":-1,"56269":-1,"56270":-1,"56271":-1,"56272":-1,"56273":-1,"56274":-1,"56275":-1,"56276":-1,"56277":-1,"56278":-1,"56279":-1,"56280":-1,"56281":-1,"56282":-1,"56283":-1,"56284":-1,"56285":-1,"56286":0,"56287":-1,"56288":0,"56289":-1,"56290":-1,"56291":-1,"56292":-1,"56293":-1,"56294":-1,"56295":-1,"56296":-1,"56297":-1,"56298":-1,"56299":-1,"56300":2685,"56301":-1,"56302":-1,"56303":2687,"56304":-1,"56305":-1,"56306":-1,"56307":-1,"56308":-1,"56309":-1,"56310":-1,"56311":-1,"56312":-1,"56313":-1,"56314":-1,"56315":2687,"56316":-1,"56317":-1,"56318":-1,"56319":-1,"56320":0,"56321":-1,"56322":-1,"56323":-1,"56324":-1,"56325":2685,"56326":2683,"56327":-1,"56328":-1,"56329":-1,"56330":-1,"56331":-1,"56332":2685,"56333":2683,"56334":-1,"56335":-1,"56336":2684,"56337":-1,"56338":-1,"56339":-1,"56340":-1,"56341":-1,"56342":-1,"56343":-1,"56344":-1,"56345":-1,"56346":-1,"56347":-1,"56348":-1,"56349":2682,"56350":-1,"56351":-1,"56352":-1,"56353":-1,"56354":-1,"56355":-1,"56356":-1,"56357":-1,"56358":-1,"56359":-1,"56360":-1,"56361":-1,"56362":2685,"56363":-1,"56364":-1,"56365":-1,"56366":-1,"56367":-1,"56368":2683,"56369":2682,"56370":-1,"56371":-1,"56372":-1,"56373":-1,"56374":-1,"56375":-1,"56376":-1,"56377":-1,"56378":-1,"56379":-1,"56380":-1,"56381":-1,"56382":-1,"56383":-1,"56384":0,"56385":-1,"56386":-1,"56387":-1,"56388":-1,"56389":-1,"56390":-1,"56391":2685,"56392":-1,"56393":-1,"56394":-1,"56395":-1,"56396":-1,"56397":-1,"56398":-1,"56399":2685,"56400":-1,"56401":2685,"56402":-1,"56403":-1,"56404":-1,"56405":-1,"56406":-1,"56407":-1,"56408":-1,"56409":-1,"56410":-1,"56411":-1,"56412":-1,"56413":-1,"56414":0,"56415":-1,"56416":-1,"56417":-1,"56418":-1,"56419":2684,"56420":-1,"56421":-1,"56422":-1,"56423":2683,"56424":-1,"56425":-1,"56426":-1,"56427":-1,"56428":-1,"56429":2682,"56430":-1,"56431":-1,"56432":0,"56433":-1,"56434":-1,"56435":2685,"56436":-1,"56437":-1,"56438":-1,"56439":-1,"56440":-1,"56441":-1,"56442":-1,"56443":-1,"56444":-1,"56445":-1,"56446":-1,"56447":-1,"56448":-1,"56449":-1,"56450":-1,"56451":-1,"56452":-1,"56453":-1,"56454":-1,"56455":-1,"56456":-1,"56457":-1,"56458":-1,"56459":-1,"56460":-1,"56461":-1,"56462":-1,"56463":-1,"56464":-1,"56465":-1,"56466":-1,"56467":-1,"56468":-1,"56469":2684,"56470":-1,"56471":-1,"56472":-1,"56473":-1,"56474":-1,"56475":-1,"56476":-1,"56477":-1,"56478":2683,"56479":-1,"56480":-1,"56481":-1,"56482":-1,"56483":-1,"56484":-1,"56485":-1,"56486":-1,"56487":-1,"56488":-1,"56489":2686,"56490":-1,"56491":-1,"56492":-1,"56493":-1,"56494":-1,"56495":-1,"56496":-1,"56497":-1,"56498":-1,"56499":-1,"56500":-1,"56501":-1,"56502":-1,"56503":-1,"56504":-1,"56505":-1,"56506":-1,"56507":-1,"56508":-1,"56509":2685,"56510":-1,"56511":-1,"56512":-1,"56513":0,"56514":-1,"56515":-1,"56516":-1,"56517":-1,"56518":-1,"56519":-1,"56520":-1,"56521":-1,"56522":-1,"56523":-1,"56524":-1,"56525":-1,"56526":-1,"56527":-1,"56528":-1,"56529":-1,"56530":-1,"56531":-1,"56532":-1,"56533":-1,"56534":-1,"56535":-1,"56536":-1,"56537":-1,"56538":-1,"56539":-1,"56540":-1,"56541":2681,"56542":-1,"56543":-1,"56544":-1,"56545":2685,"56546":-1,"56547":-1,"56548":-1,"56549":-1,"56550":-1,"56551":-1,"56552":2682,"56553":-1,"56554":-1,"56555":-1,"56556":-1,"56557":2686,"56558":2685,"56559":-1,"56560":-1,"56561":2682,"56562":-1,"56563":2687,"56564":-1,"56565":-1,"56566":2683,"56567":-1,"56568":-1,"56569":-1,"56570":-1,"56571":-1,"56572":-1,"56573":-1,"56574":-1,"56575":-1,"56576":2687,"56577":2684,"56578":-1,"56579":-1,"56580":-1,"56581":-1,"56582":-1,"56583":-1,"56584":-1,"56585":-1,"56586":-1,"56587":-1,"56588":-1,"56589":-1,"56590":-1,"56591":2684,"56592":0,"56593":-1,"56594":-1,"56595":2686,"56596":-1,"56597":-1,"56598":-1,"56599":0,"56600":-1,"56601":-1,"56602":-1,"56603":-1,"56604":-1,"56605":-1,"56606":-1,"56607":-1,"56608":-1,"56609":-1,"56610":-1,"56611":-1,"56612":-1,"56613":-1,"56614":-1,"56615":-1,"56616":-1,"56617":-1,"56618":-1,"56619":-1,"56620":-1,"56621":-1,"56622":-1,"56623":-1,"56624":-1,"56625":-1,"56626":-1,"56627":-1,"56628":-1,"56629":-1,"56630":-1,"56631":-1,"56632":-1,"56633":-1,"56634":-1,"56635":-1,"56636":-1,"56637":-1,"56638":2683,"56639":-1,"56640":-1,"56641":-1,"56642":-1,"56643":-1,"56644":-1,"56645":-1,"56646":-1,"56647":-1,"56648":-1,"56649":-1,"56650":-1,"56651":2682,"56652":-1,"56653":-1,"56654":-1,"56655":2684,"56656":-1,"56657":-1,"56658":-1,"56659":-1,"56660":-1,"56661":-1,"56662":-1,"56663":-1,"56664":-1,"56665":-1,"56666":-1,"56667":-1,"56668":-1,"56669":-1,"56670":-1,"56671":-1,"56672":-1,"56673":-1,"56674":-1,"56675":-1,"56676":-1,"56677":-1,"56678":-1,"56679":-1,"56680":-1,"56681":-1,"56682":-1,"56683":2682,"56684":-1,"56685":2685,"56686":-1,"56687":-1,"56688":-1,"56689":2685,"56690":-1,"56691":-1,"56692":-1,"56693":-1,"56694":-1,"56695":-1,"56696":2683,"56697":-1,"56698":2681,"56699":2683,"56700":-1,"56701":-1,"56702":-1,"56703":-1,"56704":-1,"56705":-1,"56706":-1,"56707":-1,"56708":-1,"56709":-1,"56710":-1,"56711":-1,"56712":2684,"56713":2683,"56714":-1,"56715":-1,"56716":-1,"56717":-1,"56718":-1,"56719":-1,"56720":-1,"56721":-1,"56722":-1,"56723":-1,"56724":-1,"56725":-1,"56726":-1,"56727":-1,"56728":2683,"56729":-1,"56730":-1,"56731":-1,"56732":-1,"56733":-1,"56734":-1,"56735":2684,"56736":-1,"56737":-1,"56738":-1,"56739":2685,"56740":-1,"56741":-1,"56742":-1,"56743":-1,"56744":-1,"56745":-1,"56746":2686,"56747":-1,"56748":-1,"56749":-1,"56750":2682,"56751":-1,"56752":-1,"56753":-1,"56754":-1,"56755":-1,"56756":-1,"56757":2681,"56758":-1,"56759":-1,"56760":-1,"56761":2681,"56762":-1,"56763":-1,"56764":-1,"56765":2683,"56766":-1,"56767":-1,"56768":-1,"56769":-1,"56770":-1,"56771":2686,"56772":-1,"56773":-1,"56774":-1,"56775":-1,"56776":2684,"56777":2683,"56778":-1,"56779":-1,"56780":-1,"56781":-1,"56782":-1,"56783":-1,"56784":2683,"56785":-1,"56786":-1,"56787":-1,"56788":-1,"56789":-1,"56790":-1,"56791":-1,"56792":-1,"56793":-1,"56794":2686,"56795":-1,"56796":2683,"56797":-1,"56798":-1,"56799":2685,"56800":2686,"56801":-1,"56802":-1,"56803":-1,"56804":-1,"56805":2681,"56806":-1,"56807":-1,"56808":-1,"56809":-1,"56810":-1,"56811":-1,"56812":-1,"56813":-1,"56814":-1,"56815":-1,"56816":-1,"56817":2682,"56818":-1,"56819":2683,"56820":-1,"56821":-1,"56822":2687,"56823":-1,"56824":-1,"56825":0,"56826":-1,"56827":-1,"56828":-1,"56829":-1,"56830":-1,"56831":-1,"56832":-1,"56833":-1,"56834":-1,"56835":-1,"56836":-1,"56837":-1,"56838":-1,"56839":-1,"56840":-1,"56841":2687,"56842":-1,"56843":-1,"56844":-1,"56845":-1,"56846":-1,"56847":0,"56848":2687,"56849":-1,"56850":-1,"56851":-1,"56852":-1,"56853":-1,"56854":-1,"56855":-1,"56856":-1,"56857":-1,"56858":0,"56859":-1,"56860":-1,"56861":-1,"56862":-1,"56863":-1,"56864":2684,"56865":-1,"56866":-1,"56867":-1,"56868":-1,"56869":-1,"56870":-1,"56871":-1,"56872":0,"56873":-1,"56874":-1,"56875":-1,"56876":2687,"56877":-1,"56878":2681,"56879":-1,"56880":-1,"56881":-1,"56882":-1,"56883":-1,"56884":-1,"56885":-1,"56886":-1,"56887":0,"56888":-1,"56889":-1,"56890":2685,"56891":-1,"56892":-1,"56893":-1,"56894":-1,"56895":-1,"56896":-1,"56897":-1,"56898":2684,"56899":-1,"56900":-1,"56901":-1,"56902":-1,"56903":-1,"56904":0,"56905":-1,"56906":-1,"56907":-1,"56908":-1,"56909":-1,"56910":-1,"56911":-1,"56912":-1,"56913":-1,"56914":-1,"56915":-1,"56916":-1,"56917":2684,"56918":-1,"56919":-1,"56920":-1,"56921":-1,"56922":-1,"56923":-1,"56924":-1,"56925":-1,"56926":-1,"56927":-1,"56928":-1,"56929":0,"56930":-1,"56931":-1,"56932":-1,"56933":2684,"56934":2687,"56935":-1,"56936":-1,"56937":-1,"56938":-1,"56939":-1,"56940":-1,"56941":-1,"56942":-1,"56943":-1,"56944":-1,"56945":-1,"56946":-1,"56947":-1,"56948":-1,"56949":-1,"56950":-1,"56951":-1,"56952":-1,"56953":-1,"56954":-1,"56955":-1,"56956":-1,"56957":-1,"56958":-1,"56959":2681,"56960":-1,"56961":-1,"56962":2684,"56963":-1,"56964":-1,"56965":-1,"56966":-1,"56967":-1,"56968":-1,"56969":-1,"56970":-1,"56971":-1,"56972":2682,"56973":-1,"56974":-1,"56975":2684,"56976":-1,"56977":-1,"56978":-1,"56979":-1,"56980":-1,"56981":-1,"56982":-1,"56983":-1,"56984":2683,"56985":-1,"56986":-1,"56987":-1,"56988":-1,"56989":2683,"56990":-1,"56991":-1,"56992":-1,"56993":0,"56994":-1,"56995":0,"56996":-1,"56997":-1,"56998":-1,"56999":-1,"57000":-1,"57001":-1,"57002":-1,"57003":-1,"57004":-1,"57005":-1,"57006":-1,"57007":-1,"57008":-1,"57009":-1,"57010":-1,"57011":-1,"57012":-1,"57013":-1,"57014":-1,"57015":-1,"57016":-1,"57017":-1,"57018":-1,"57019":-1,"57020":-1,"57021":2685,"57022":2686,"57023":2681,"57024":-1,"57025":-1,"57026":-1,"57027":-1,"57028":-1,"57029":-1,"57030":-1,"57031":2686,"57032":-1,"57033":-1,"57034":-1,"57035":-1,"57036":-1,"57037":-1,"57038":-1,"57039":-1,"57040":-1,"57041":-1,"57042":-1,"57043":2682,"57044":-1,"57045":-1,"57046":2682,"57047":-1,"57048":-1,"57049":-1,"57050":-1,"57051":-1,"57052":-1,"57053":-1,"57054":0,"57055":-1,"57056":-1,"57057":2682,"57058":-1,"57059":-1,"57060":-1,"57061":-1,"57062":-1,"57063":2684,"57064":-1,"57065":2683,"57066":-1,"57067":-1,"57068":-1,"57069":-1,"57070":-1,"57071":-1,"57072":2686,"57073":-1,"57074":-1,"57075":-1,"57076":-1,"57077":-1,"57078":-1,"57079":-1,"57080":-1,"57081":-1,"57082":-1,"57083":-1,"57084":-1,"57085":0,"57086":-1,"57087":-1,"57088":-1,"57089":-1,"57090":-1,"57091":-1,"57092":-1,"57093":-1,"57094":-1,"57095":-1,"57096":-1,"57097":-1,"57098":2685,"57099":-1,"57100":-1,"57101":-1,"57102":-1,"57103":-1,"57104":-1,"57105":-1,"57106":-1,"57107":-1,"57108":-1,"57109":2683,"57110":2681,"57111":2684,"57112":-1,"57113":-1,"57114":-1,"57115":-1,"57116":-1,"57117":-1,"57118":-1,"57119":-1,"57120":-1,"57121":-1,"57122":-1,"57123":-1,"57124":-1,"57125":2683,"57126":2682,"57127":-1,"57128":2686,"57129":-1,"57130":-1,"57131":-1,"57132":-1,"57133":-1,"57134":-1,"57135":-1,"57136":2686,"57137":-1,"57138":2681,"57139":-1,"57140":-1,"57141":-1,"57142":-1,"57143":-1,"57144":-1,"57145":-1,"57146":-1,"57147":-1,"57148":2683,"57149":-1,"57150":-1,"57151":-1,"57152":-1,"57153":-1,"57154":2684,"57155":-1,"57156":-1,"57157":-1,"57158":-1,"57159":-1,"57160":-1,"57161":-1,"57162":-1,"57163":-1,"57164":-1,"57165":-1,"57166":-1,"57167":2686,"57168":-1,"57169":-1,"57170":-1,"57171":-1,"57172":-1,"57173":-1,"57174":-1,"57175":-1,"57176":-1,"57177":-1,"57178":-1,"57179":-1,"57180":-1,"57181":-1,"57182":-1,"57183":-1,"57184":-1,"57185":-1,"57186":-1,"57187":-1,"57188":-1,"57189":-1,"57190":2683,"57191":-1,"57192":-1,"57193":-1,"57194":0,"57195":-1,"57196":-1,"57197":-1,"57198":-1,"57199":2684,"57200":-1,"57201":-1,"57202":-1,"57203":-1,"57204":-1,"57205":2686,"57206":-1,"57207":-1,"57208":2682,"57209":-1,"57210":-1,"57211":-1,"57212":-1,"57213":-1,"57214":-1,"57215":-1,"57216":2682,"57217":-1,"57218":-1,"57219":-1,"57220":2685,"57221":-1,"57222":-1,"57223":-1,"57224":-1,"57225":-1,"57226":2685,"57227":-1,"57228":-1,"57229":-1,"57230":-1,"57231":-1,"57232":-1,"57233":-1,"57234":-1,"57235":-1,"57236":-1,"57237":2683,"57238":-1,"57239":-1,"57240":-1,"57241":-1,"57242":-1,"57243":-1,"57244":-1,"57245":-1,"57246":-1,"57247":-1,"57248":2683,"57249":-1,"57250":-1,"57251":-1,"57252":-1,"57253":-1,"57254":-1,"57255":-1,"57256":-1,"57257":-1,"57258":-1,"57259":0,"57260":-1,"57261":2682,"57262":-1,"57263":-1,"57264":-1,"57265":-1,"57266":-1,"57267":-1,"57268":-1,"57269":-1,"57270":2685,"57271":-1,"57272":-1,"57273":-1,"57274":-1,"57275":-1,"57276":-1,"57277":-1,"57278":2685,"57279":2684,"57280":-1,"57281":-1,"57282":-1,"57283":-1,"57284":-1,"57285":-1,"57286":2683,"57287":-1,"57288":-1,"57289":-1,"57290":-1,"57291":-1,"57292":-1,"57293":-1,"57294":-1,"57295":2684,"57296":-1,"57297":2683,"57298":-1,"57299":-1,"57300":-1,"57301":-1,"57302":-1,"57303":2683,"57304":-1,"57305":-1,"57306":-1,"57307":-1,"57308":-1,"57309":2681,"57310":-1,"57311":2686,"57312":-1,"57313":2684,"57314":-1,"57315":-1,"57316":-1,"57317":-1,"57318":-1,"57319":2683,"57320":2681,"57321":2686,"57322":-1,"57323":-1,"57324":-1,"57325":-1,"57326":2683,"57327":-1,"57328":0,"57329":-1,"57330":0,"57331":-1,"57332":-1,"57333":-1,"57334":2686,"57335":-1,"57336":-1,"57337":-1,"57338":0,"57339":-1,"57340":-1,"57341":-1,"57342":-1,"57343":2682,"57344":-1,"57345":-1,"57346":-1,"57347":-1,"57348":-1,"57349":-1,"57350":-1,"57351":0,"57352":0,"57353":-1,"57354":0,"57355":-1,"57356":-1,"57357":-1,"57358":-1,"57359":-1,"57360":-1,"57361":-1,"57362":-1,"57363":-1,"57364":-1,"57365":-1,"57366":-1,"57367":-1,"57368":-1,"57369":0,"57370":-1,"57371":-1,"57372":-1,"57373":-1,"57374":-1,"57375":-1,"57376":0,"57377":-1,"57378":0,"57379":-1,"57380":-1,"57381":-1,"57382":-1,"57383":-1,"57384":-1,"57385":-1,"57386":-1,"57387":-1,"57388":-1,"57389":-1,"57390":-1,"57391":-1,"57392":-1,"57393":-1,"57394":-1,"57395":2684,"57396":-1,"57397":-1,"57398":-1,"57399":-1,"57400":-1,"57401":0,"57402":-1,"57403":2684,"57404":-1,"57405":-1,"57406":-1,"57407":-1,"57408":-1,"57409":-1,"57410":-1,"57411":-1,"57412":2684,"57413":-1,"57414":2686,"57415":-1,"57416":2686,"57417":-1,"57418":-1,"57419":-1,"57420":-1,"57421":-1,"57422":-1,"57423":-1,"57424":-1,"57425":-1,"57426":-1,"57427":-1,"57428":-1,"57429":-1,"57430":2685,"57431":-1,"57432":-1,"57433":-1,"57434":-1,"57435":-1,"57436":-1,"57437":-1,"57438":-1,"57439":-1,"57440":-1,"57441":-1,"57442":-1,"57443":-1,"57444":-1,"57445":-1,"57446":-1,"57447":-1,"57448":-1,"57449":-1,"57450":-1,"57451":-1,"57452":-1,"57453":-1,"57454":-1,"57455":2686,"57456":-1,"57457":-1,"57458":-1,"57459":-1,"57460":-1,"57461":0,"57462":2687,"57463":-1,"57464":2686,"57465":-1,"57466":-1,"57467":-1,"57468":-1,"57469":2685,"57470":2683,"57471":-1,"57472":-1,"57473":-1,"57474":2684,"57475":-1,"57476":-1,"57477":-1,"57478":-1,"57479":2683,"57480":-1,"57481":2686,"57482":-1,"57483":-1,"57484":-1,"57485":-1,"57486":-1,"57487":-1,"57488":-1,"57489":-1,"57490":-1,"57491":2682,"57492":2684,"57493":-1,"57494":-1,"57495":2682,"57496":-1,"57497":-1,"57498":0,"57499":-1,"57500":-1,"57501":2685,"57502":-1,"57503":-1,"57504":-1,"57505":-1,"57506":-1,"57507":-1,"57508":-1,"57509":-1,"57510":-1,"57511":0,"57512":-1,"57513":-1,"57514":-1,"57515":-1,"57516":-1,"57517":-1,"57518":-1,"57519":-1,"57520":-1,"57521":-1,"57522":-1,"57523":-1,"57524":-1,"57525":-1,"57526":-1,"57527":2684,"57528":2686,"57529":-1,"57530":-1,"57531":-1,"57532":-1,"57533":-1,"57534":-1,"57535":-1,"57536":-1,"57537":-1,"57538":-1,"57539":-1,"57540":-1,"57541":-1,"57542":-1,"57543":-1,"57544":2683,"57545":-1,"57546":-1,"57547":-1,"57548":-1,"57549":-1,"57550":-1,"57551":-1,"57552":2684,"57553":-1,"57554":-1,"57555":2685,"57556":-1,"57557":-1,"57558":-1,"57559":-1,"57560":-1,"57561":-1,"57562":-1,"57563":0,"57564":-1,"57565":2685,"57566":-1,"57567":-1,"57568":-1,"57569":-1,"57570":-1,"57571":0,"57572":-1,"57573":-1,"57574":-1,"57575":0,"57576":-1,"57577":-1,"57578":-1,"57579":-1,"57580":-1,"57581":-1,"57582":-1,"57583":-1,"57584":2686,"57585":-1,"57586":-1,"57587":-1,"57588":-1,"57589":-1,"57590":2684,"57591":-1,"57592":0,"57593":-1,"57594":-1,"57595":-1,"57596":-1,"57597":-1,"57598":-1,"57599":-1,"57600":-1,"57601":2683,"57602":-1,"57603":-1,"57604":-1,"57605":-1,"57606":-1,"57607":-1,"57608":-1,"57609":-1,"57610":-1,"57611":-1,"57612":-1,"57613":-1,"57614":-1,"57615":-1,"57616":-1,"57617":-1,"57618":-1,"57619":-1,"57620":-1,"57621":-1,"57622":-1,"57623":-1,"57624":-1,"57625":-1,"57626":-1,"57627":-1,"57628":-1,"57629":-1,"57630":-1,"57631":2687,"57632":-1,"57633":-1,"57634":-1,"57635":-1,"57636":-1,"57637":-1,"57638":-1,"57639":-1,"57640":-1,"57641":-1,"57642":-1,"57643":-1,"57644":-1,"57645":2684,"57646":-1,"57647":-1,"57648":-1,"57649":2682,"57650":2684,"57651":-1,"57652":-1,"57653":-1,"57654":2685,"57655":-1,"57656":-1,"57657":-1,"57658":-1,"57659":-1,"57660":-1,"57661":-1,"57662":-1,"57663":-1,"57664":-1,"57665":2686,"57666":-1,"57667":-1,"57668":-1,"57669":-1,"57670":-1,"57671":2687,"57672":-1,"57673":-1,"57674":-1,"57675":-1,"57676":-1,"57677":0,"57678":-1,"57679":2687,"57680":-1,"57681":-1,"57682":-1,"57683":2687,"57684":-1,"57685":-1,"57686":-1,"57687":-1,"57688":-1,"57689":-1,"57690":-1,"57691":-1,"57692":-1,"57693":-1,"57694":2684,"57695":-1,"57696":-1,"57697":-1,"57698":-1,"57699":2683,"57700":-1,"57701":-1,"57702":-1,"57703":2684,"57704":-1,"57705":-1,"57706":-1,"57707":-1,"57708":-1,"57709":-1,"57710":-1,"57711":-1,"57712":-1,"57713":0,"57714":-1,"57715":2683,"57716":-1,"57717":-1,"57718":-1,"57719":2682,"57720":-1,"57721":-1,"57722":-1,"57723":-1,"57724":-1,"57725":-1,"57726":-1,"57727":-1,"57728":2681,"57729":-1,"57730":-1,"57731":-1,"57732":2682,"57733":-1,"57734":-1,"57735":2685,"57736":0,"57737":-1,"57738":-1,"57739":2682,"57740":0,"57741":-1,"57742":0,"57743":-1,"57744":0,"57745":-1,"57746":-1,"57747":-1,"57748":-1,"57749":2684,"57750":-1,"57751":-1,"57752":-1,"57753":2683,"57754":-1,"57755":-1,"57756":-1,"57757":-1,"57758":-1,"57759":-1,"57760":-1,"57761":-1,"57762":-1,"57763":-1,"57764":-1,"57765":2682,"57766":-1,"57767":-1,"57768":-1,"57769":-1,"57770":-1,"57771":-1,"57772":-1,"57773":-1,"57774":-1,"57775":-1,"57776":-1,"57777":2682,"57778":-1,"57779":-1,"57780":-1,"57781":-1,"57782":-1,"57783":0,"57784":-1,"57785":-1,"57786":-1,"57787":-1,"57788":-1,"57789":-1,"57790":-1,"57791":-1,"57792":-1,"57793":-1,"57794":-1,"57795":2684,"57796":-1,"57797":-1,"57798":-1,"57799":-1,"57800":-1,"57801":-1,"57802":-1,"57803":-1,"57804":2684,"57805":-1,"57806":-1,"57807":-1,"57808":-1,"57809":-1,"57810":-1,"57811":-1,"57812":-1,"57813":-1,"57814":-1,"57815":-1,"57816":0,"57817":-1,"57818":-1,"57819":-1,"57820":-1,"57821":-1,"57822":-1,"57823":-1,"57824":-1,"57825":-1,"57826":-1,"57827":-1,"57828":-1,"57829":-1,"57830":-1,"57831":0,"57832":-1,"57833":-1,"57834":2682,"57835":-1,"57836":-1,"57837":-1,"57838":-1,"57839":-1,"57840":-1,"57841":2686,"57842":-1,"57843":2684,"57844":-1,"57845":-1,"57846":-1,"57847":-1,"57848":-1,"57849":-1,"57850":-1,"57851":-1,"57852":-1,"57853":-1,"57854":2684,"57855":-1,"57856":-1,"57857":-1,"57858":2687,"57859":2681,"57860":-1,"57861":2687,"57862":-1,"57863":-1,"57864":-1,"57865":-1,"57866":-1,"57867":-1,"57868":-1,"57869":-1,"57870":-1,"57871":2682,"57872":0,"57873":-1,"57874":-1,"57875":-1,"57876":-1,"57877":-1,"57878":2683,"57879":-1,"57880":-1,"57881":-1,"57882":2684,"57883":2682,"57884":-1,"57885":-1,"57886":-1,"57887":-1,"57888":-1,"57889":-1,"57890":-1,"57891":-1,"57892":-1,"57893":-1,"57894":-1,"57895":-1,"57896":-1,"57897":2684,"57898":2683,"57899":0,"57900":2681,"57901":-1,"57902":-1,"57903":-1,"57904":-1,"57905":-1,"57906":-1,"57907":-1,"57908":-1,"57909":-1,"57910":-1,"57911":-1,"57912":-1,"57913":-1,"57914":-1,"57915":-1,"57916":-1,"57917":-1,"57918":-1,"57919":-1,"57920":-1,"57921":-1,"57922":-1,"57923":-1,"57924":-1,"57925":2686,"57926":-1,"57927":-1,"57928":-1,"57929":-1,"57930":-1,"57931":-1,"57932":-1,"57933":-1,"57934":-1,"57935":-1,"57936":-1,"57937":2683,"57938":-1,"57939":-1,"57940":-1,"57941":2685,"57942":-1,"57943":0,"57944":-1,"57945":-1,"57946":-1,"57947":-1,"57948":0,"57949":-1,"57950":-1,"57951":-1,"57952":-1,"57953":-1,"57954":-1,"57955":-1,"57956":-1,"57957":-1,"57958":-1,"57959":-1,"57960":-1,"57961":0,"57962":-1,"57963":-1,"57964":2686,"57965":-1,"57966":2683,"57967":-1,"57968":0,"57969":2682,"57970":-1,"57971":-1,"57972":-1,"57973":-1,"57974":-1,"57975":-1,"57976":-1,"57977":2685,"57978":-1,"57979":-1,"57980":-1,"57981":-1,"57982":-1,"57983":-1,"57984":-1,"57985":-1,"57986":-1,"57987":-1,"57988":-1,"57989":2687,"57990":-1,"57991":-1,"57992":-1,"57993":2686,"57994":-1,"57995":-1,"57996":-1,"57997":-1,"57998":-1,"57999":-1,"58000":-1,"58001":-1,"58002":-1,"58003":-1,"58004":-1,"58005":-1,"58006":-1,"58007":-1,"58008":-1,"58009":-1,"58010":2684,"58011":-1,"58012":2683,"58013":-1,"58014":-1,"58015":-1,"58016":-1,"58017":-1,"58018":-1,"58019":-1,"58020":-1,"58021":-1,"58022":-1,"58023":-1,"58024":-1,"58025":-1,"58026":-1,"58027":-1,"58028":-1,"58029":2684,"58030":-1,"58031":-1,"58032":-1,"58033":-1,"58034":-1,"58035":-1,"58036":2684,"58037":-1,"58038":-1,"58039":-1,"58040":2684,"58041":2687,"58042":-1,"58043":-1,"58044":-1,"58045":-1,"58046":-1,"58047":-1,"58048":-1,"58049":-1,"58050":-1,"58051":-1,"58052":-1,"58053":-1,"58054":-1,"58055":-1,"58056":-1,"58057":-1,"58058":2685,"58059":2686,"58060":-1,"58061":-1,"58062":-1,"58063":-1,"58064":-1,"58065":-1,"58066":-1,"58067":-1,"58068":2685,"58069":-1,"58070":-1,"58071":-1,"58072":-1,"58073":-1,"58074":-1,"58075":2682,"58076":-1,"58077":-1,"58078":-1,"58079":2685,"58080":-1,"58081":-1,"58082":-1,"58083":-1,"58084":-1,"58085":-1,"58086":-1,"58087":-1,"58088":-1,"58089":-1,"58090":-1,"58091":-1,"58092":2684,"58093":-1,"58094":-1,"58095":2685,"58096":-1,"58097":-1,"58098":-1,"58099":-1,"58100":-1,"58101":-1,"58102":2686,"58103":-1,"58104":-1,"58105":-1,"58106":-1,"58107":-1,"58108":-1,"58109":-1,"58110":-1,"58111":-1,"58112":-1,"58113":0,"58114":0,"58115":-1,"58116":-1,"58117":-1,"58118":-1,"58119":0,"58120":-1,"58121":0,"58122":-1,"58123":-1,"58124":-1,"58125":-1,"58126":-1,"58127":-1,"58128":-1,"58129":-1,"58130":-1,"58131":-1,"58132":-1,"58133":-1,"58134":-1,"58135":-1,"58136":-1,"58137":-1,"58138":2685,"58139":-1,"58140":2685,"58141":-1,"58142":-1,"58143":-1,"58144":-1,"58145":-1,"58146":-1,"58147":-1,"58148":-1,"58149":-1,"58150":2686,"58151":-1,"58152":-1,"58153":-1,"58154":2684,"58155":-1,"58156":-1,"58157":-1,"58158":-1,"58159":-1,"58160":-1,"58161":0,"58162":-1,"58163":-1,"58164":-1,"58165":-1,"58166":-1,"58167":-1,"58168":2687,"58169":-1,"58170":-1,"58171":-1,"58172":-1,"58173":2682,"58174":-1,"58175":-1,"58176":-1,"58177":-1,"58178":-1,"58179":-1,"58180":-1,"58181":-1,"58182":-1,"58183":-1,"58184":2682,"58185":2684,"58186":-1,"58187":-1,"58188":-1,"58189":-1,"58190":-1,"58191":-1,"58192":-1,"58193":2683,"58194":-1,"58195":-1,"58196":-1,"58197":-1,"58198":-1,"58199":-1,"58200":-1,"58201":-1,"58202":-1,"58203":-1,"58204":-1,"58205":2686,"58206":-1,"58207":2686,"58208":-1,"58209":-1,"58210":-1,"58211":-1,"58212":-1,"58213":-1,"58214":-1,"58215":-1,"58216":-1,"58217":-1,"58218":-1,"58219":-1,"58220":-1,"58221":-1,"58222":-1,"58223":-1,"58224":-1,"58225":-1,"58226":2683,"58227":-1,"58228":-1,"58229":-1,"58230":-1,"58231":-1,"58232":-1,"58233":-1,"58234":2685,"58235":-1,"58236":-1,"58237":-1,"58238":2685,"58239":-1,"58240":-1,"58241":-1,"58242":-1,"58243":-1,"58244":-1,"58245":-1,"58246":2684,"58247":-1,"58248":-1,"58249":-1,"58250":-1,"58251":2684,"58252":-1,"58253":-1,"58254":-1,"58255":-1,"58256":-1,"58257":-1,"58258":-1,"58259":-1,"58260":-1,"58261":-1,"58262":-1,"58263":-1,"58264":-1,"58265":-1,"58266":0,"58267":-1,"58268":-1,"58269":-1,"58270":-1,"58271":-1,"58272":-1,"58273":-1,"58274":-1,"58275":2682,"58276":-1,"58277":-1,"58278":-1,"58279":-1,"58280":-1,"58281":-1,"58282":-1,"58283":-1,"58284":-1,"58285":-1,"58286":-1,"58287":-1,"58288":-1,"58289":2685,"58290":-1,"58291":-1,"58292":-1,"58293":-1,"58294":2686,"58295":2682,"58296":-1,"58297":2683,"58298":-1,"58299":-1,"58300":-1,"58301":-1,"58302":-1,"58303":-1,"58304":-1,"58305":-1,"58306":-1,"58307":-1,"58308":0,"58309":-1,"58310":-1,"58311":0,"58312":-1,"58313":-1,"58314":-1,"58315":-1,"58316":-1,"58317":-1,"58318":-1,"58319":-1,"58320":-1,"58321":-1,"58322":-1,"58323":-1,"58324":2682,"58325":-1,"58326":-1,"58327":-1,"58328":-1,"58329":2684,"58330":-1,"58331":-1,"58332":-1,"58333":-1,"58334":-1,"58335":0,"58336":-1,"58337":-1,"58338":-1,"58339":-1,"58340":2685,"58341":-1,"58342":2685,"58343":-1,"58344":-1,"58345":2681,"58346":-1,"58347":2681,"58348":-1,"58349":-1,"58350":-1,"58351":2683,"58352":-1,"58353":-1,"58354":-1,"58355":2686,"58356":-1,"58357":-1,"58358":-1,"58359":-1,"58360":-1,"58361":-1,"58362":-1,"58363":-1,"58364":-1,"58365":0,"58366":-1,"58367":2682,"58368":-1,"58369":-1,"58370":-1,"58371":-1,"58372":2681,"58373":-1,"58374":-1,"58375":-1,"58376":-1,"58377":-1,"58378":-1,"58379":-1,"58380":-1,"58381":-1,"58382":-1,"58383":-1,"58384":-1,"58385":-1,"58386":-1,"58387":-1,"58388":-1,"58389":2682,"58390":-1,"58391":-1,"58392":-1,"58393":0,"58394":2682,"58395":-1,"58396":2683,"58397":-1,"58398":-1,"58399":-1,"58400":-1,"58401":-1,"58402":2685,"58403":-1,"58404":-1,"58405":-1,"58406":-1,"58407":2686,"58408":-1,"58409":-1,"58410":0,"58411":-1,"58412":-1,"58413":-1,"58414":-1,"58415":-1,"58416":-1,"58417":-1,"58418":-1,"58419":-1,"58420":-1,"58421":-1,"58422":-1,"58423":-1,"58424":-1,"58425":-1,"58426":-1,"58427":2687,"58428":-1,"58429":-1,"58430":-1,"58431":2683,"58432":-1,"58433":-1,"58434":-1,"58435":-1,"58436":-1,"58437":2681,"58438":-1,"58439":-1,"58440":2685,"58441":-1,"58442":-1,"58443":-1,"58444":-1,"58445":-1,"58446":-1,"58447":-1,"58448":2683,"58449":-1,"58450":2684,"58451":-1,"58452":2684,"58453":-1,"58454":-1,"58455":-1,"58456":-1,"58457":-1,"58458":-1,"58459":-1,"58460":2681,"58461":-1,"58462":-1,"58463":-1,"58464":-1,"58465":-1,"58466":-1,"58467":-1,"58468":-1,"58469":-1,"58470":-1,"58471":2685,"58472":-1,"58473":-1,"58474":-1,"58475":-1,"58476":0,"58477":-1,"58478":-1,"58479":-1,"58480":-1,"58481":-1,"58482":-1,"58483":-1,"58484":-1,"58485":-1,"58486":-1,"58487":-1,"58488":-1,"58489":-1,"58490":-1,"58491":-1,"58492":-1,"58493":2682,"58494":-1,"58495":2686,"58496":-1,"58497":0,"58498":-1,"58499":-1,"58500":-1,"58501":-1,"58502":-1,"58503":-1,"58504":-1,"58505":0,"58506":-1,"58507":-1,"58508":-1,"58509":-1,"58510":-1,"58511":-1,"58512":-1,"58513":-1,"58514":-1,"58515":-1,"58516":-1,"58517":-1,"58518":-1,"58519":-1,"58520":-1,"58521":-1,"58522":2686,"58523":-1,"58524":-1,"58525":-1,"58526":-1,"58527":-1,"58528":-1,"58529":-1,"58530":-1,"58531":-1,"58532":-1,"58533":-1,"58534":-1,"58535":-1,"58536":-1,"58537":-1,"58538":-1,"58539":-1,"58540":-1,"58541":-1,"58542":-1,"58543":-1,"58544":-1,"58545":2685,"58546":2682,"58547":2683,"58548":-1,"58549":-1,"58550":-1,"58551":-1,"58552":-1,"58553":0,"58554":-1,"58555":-1,"58556":-1,"58557":-1,"58558":0,"58559":-1,"58560":-1,"58561":-1,"58562":-1,"58563":-1,"58564":-1,"58565":2684,"58566":-1,"58567":-1,"58568":-1,"58569":-1,"58570":-1,"58571":-1,"58572":0,"58573":-1,"58574":-1,"58575":-1,"58576":-1,"58577":-1,"58578":-1,"58579":-1,"58580":-1,"58581":-1,"58582":-1,"58583":-1,"58584":-1,"58585":-1,"58586":-1,"58587":-1,"58588":-1,"58589":2682,"58590":-1,"58591":-1,"58592":-1,"58593":-1,"58594":2685,"58595":-1,"58596":-1,"58597":2685,"58598":-1,"58599":-1,"58600":-1,"58601":-1,"58602":-1,"58603":-1,"58604":-1,"58605":-1,"58606":-1,"58607":2686,"58608":-1,"58609":-1,"58610":-1,"58611":-1,"58612":-1,"58613":-1,"58614":-1,"58615":-1,"58616":-1,"58617":-1,"58618":-1,"58619":-1,"58620":-1,"58621":-1,"58622":-1,"58623":-1,"58624":-1,"58625":0,"58626":-1,"58627":0,"58628":-1,"58629":2686,"58630":-1,"58631":-1,"58632":-1,"58633":-1,"58634":-1,"58635":-1,"58636":2682,"58637":-1,"58638":-1,"58639":-1,"58640":-1,"58641":2681,"58642":2681,"58643":-1,"58644":-1,"58645":0,"58646":-1,"58647":-1,"58648":-1,"58649":-1,"58650":-1,"58651":-1,"58652":-1,"58653":-1,"58654":-1,"58655":-1,"58656":-1,"58657":0,"58658":-1,"58659":-1,"58660":-1,"58661":2685,"58662":-1,"58663":2682,"58664":-1,"58665":-1,"58666":-1,"58667":-1,"58668":-1,"58669":-1,"58670":-1,"58671":-1,"58672":2683,"58673":-1,"58674":-1,"58675":-1,"58676":-1,"58677":-1,"58678":-1,"58679":-1,"58680":-1,"58681":0,"58682":2681,"58683":-1,"58684":-1,"58685":-1,"58686":2687,"58687":2684,"58688":0,"58689":2683,"58690":2687,"58691":-1,"58692":-1,"58693":-1,"58694":-1,"58695":-1,"58696":-1,"58697":-1,"58698":-1,"58699":-1,"58700":-1,"58701":-1,"58702":-1,"58703":-1,"58704":0,"58705":-1,"58706":-1,"58707":-1,"58708":-1,"58709":-1,"58710":-1,"58711":-1,"58712":-1,"58713":-1,"58714":-1,"58715":2684,"58716":-1,"58717":-1,"58718":-1,"58719":-1,"58720":-1,"58721":-1,"58722":-1,"58723":0,"58724":2684,"58725":-1,"58726":-1,"58727":-1,"58728":-1,"58729":-1,"58730":-1,"58731":-1,"58732":-1,"58733":-1,"58734":-1,"58735":-1,"58736":-1,"58737":-1,"58738":-1,"58739":2684,"58740":-1,"58741":-1,"58742":-1,"58743":-1,"58744":-1,"58745":2685,"58746":2683,"58747":-1,"58748":-1,"58749":2685,"58750":0,"58751":-1,"58752":-1,"58753":-1,"58754":-1,"58755":-1,"58756":-1,"58757":-1,"58758":-1,"58759":-1,"58760":-1,"58761":-1,"58762":-1,"58763":2686,"58764":-1,"58765":0,"58766":-1,"58767":-1,"58768":-1,"58769":0,"58770":-1,"58771":-1,"58772":-1,"58773":2685,"58774":0,"58775":-1,"58776":-1,"58777":-1,"58778":2686,"58779":-1,"58780":-1,"58781":2687,"58782":-1,"58783":-1,"58784":-1,"58785":-1,"58786":-1,"58787":-1,"58788":2685,"58789":2685,"58790":-1,"58791":-1,"58792":-1,"58793":-1,"58794":-1,"58795":-1,"58796":-1,"58797":-1,"58798":-1,"58799":-1,"58800":-1,"58801":-1,"58802":-1,"58803":-1,"58804":2682,"58805":-1,"58806":2684,"58807":-1,"58808":-1,"58809":-1,"58810":-1,"58811":-1,"58812":-1,"58813":-1,"58814":-1,"58815":-1,"58816":-1,"58817":-1,"58818":-1,"58819":-1,"58820":-1,"58821":-1,"58822":2687,"58823":-1,"58824":-1,"58825":-1,"58826":-1,"58827":2685,"58828":-1,"58829":-1,"58830":-1,"58831":-1,"58832":0,"58833":-1,"58834":-1,"58835":-1,"58836":-1,"58837":-1,"58838":2681,"58839":-1,"58840":-1,"58841":-1,"58842":-1,"58843":-1,"58844":-1,"58845":-1,"58846":-1,"58847":-1,"58848":-1,"58849":-1,"58850":-1,"58851":-1,"58852":-1,"58853":-1,"58854":-1,"58855":2684,"58856":-1,"58857":-1,"58858":-1,"58859":2682,"58860":2684,"58861":-1,"58862":-1,"58863":-1,"58864":-1,"58865":-1,"58866":-1,"58867":-1,"58868":-1,"58869":-1,"58870":-1,"58871":-1,"58872":-1,"58873":-1,"58874":-1,"58875":-1,"58876":-1,"58877":-1,"58878":-1,"58879":-1,"58880":-1,"58881":-1,"58882":-1,"58883":-1,"58884":2686,"58885":-1,"58886":-1,"58887":-1,"58888":2687,"58889":-1,"58890":2686,"58891":-1,"58892":2683,"58893":-1,"58894":-1,"58895":-1,"58896":-1,"58897":-1,"58898":2686,"58899":-1,"58900":-1,"58901":2686,"58902":2686,"58903":-1,"58904":-1,"58905":-1,"58906":-1,"58907":-1,"58908":2685,"58909":-1,"58910":-1,"58911":-1,"58912":-1,"58913":-1,"58914":-1,"58915":-1,"58916":-1,"58917":-1,"58918":2686,"58919":-1,"58920":-1,"58921":-1,"58922":-1,"58923":-1,"58924":-1,"58925":-1,"58926":-1,"58927":-1,"58928":-1,"58929":-1,"58930":-1,"58931":-1,"58932":-1,"58933":2683,"58934":-1,"58935":-1,"58936":2682,"58937":-1,"58938":-1,"58939":-1,"58940":-1,"58941":2687,"58942":-1,"58943":-1,"58944":-1,"58945":-1,"58946":-1,"58947":-1,"58948":-1,"58949":-1,"58950":-1,"58951":2681,"58952":-1,"58953":-1,"58954":2682,"58955":-1,"58956":-1,"58957":-1,"58958":-1,"58959":-1,"58960":-1,"58961":-1,"58962":-1,"58963":-1,"58964":-1,"58965":-1,"58966":-1,"58967":-1,"58968":-1,"58969":-1,"58970":2684,"58971":-1,"58972":2682,"58973":-1,"58974":-1,"58975":-1,"58976":-1,"58977":-1,"58978":0,"58979":-1,"58980":-1,"58981":-1,"58982":0,"58983":-1,"58984":-1,"58985":-1,"58986":-1,"58987":-1,"58988":-1,"58989":2685,"58990":-1,"58991":2681,"58992":-1,"58993":2686,"58994":-1,"58995":-1,"58996":-1,"58997":-1,"58998":-1,"58999":-1,"59000":-1,"59001":-1,"59002":-1,"59003":-1,"59004":2686,"59005":-1,"59006":-1,"59007":-1,"59008":-1,"59009":-1,"59010":-1,"59011":-1,"59012":2686,"59013":-1,"59014":-1,"59015":-1,"59016":-1,"59017":2685,"59018":2685,"59019":-1,"59020":-1,"59021":-1,"59022":-1,"59023":-1,"59024":-1,"59025":2682,"59026":-1,"59027":-1,"59028":-1,"59029":-1,"59030":-1,"59031":-1,"59032":-1,"59033":-1,"59034":2687,"59035":-1,"59036":-1,"59037":2684,"59038":0,"59039":-1,"59040":-1,"59041":-1,"59042":-1,"59043":-1,"59044":-1,"59045":2682,"59046":-1,"59047":-1,"59048":-1,"59049":2685,"59050":-1,"59051":-1,"59052":-1,"59053":-1,"59054":-1,"59055":-1,"59056":-1,"59057":-1,"59058":-1,"59059":-1,"59060":-1,"59061":-1,"59062":-1,"59063":-1,"59064":-1,"59065":-1,"59066":-1,"59067":-1,"59068":-1,"59069":2682,"59070":-1,"59071":-1,"59072":-1,"59073":-1,"59074":-1,"59075":-1,"59076":-1,"59077":0,"59078":-1,"59079":-1,"59080":-1,"59081":-1,"59082":-1,"59083":2685,"59084":-1,"59085":-1,"59086":-1,"59087":-1,"59088":-1,"59089":2686,"59090":-1,"59091":-1,"59092":-1,"59093":-1,"59094":-1,"59095":-1,"59096":2685,"59097":-1,"59098":-1,"59099":-1,"59100":-1,"59101":2682,"59102":-1,"59103":-1,"59104":-1,"59105":2685,"59106":-1,"59107":-1,"59108":-1,"59109":0,"59110":-1,"59111":2686,"59112":-1,"59113":-1,"59114":-1,"59115":-1,"59116":-1,"59117":-1,"59118":2682,"59119":0,"59120":-1,"59121":-1,"59122":2686,"59123":-1,"59124":-1,"59125":-1,"59126":-1,"59127":-1,"59128":-1,"59129":2682,"59130":-1,"59131":-1,"59132":-1,"59133":-1,"59134":-1,"59135":-1,"59136":-1,"59137":-1,"59138":-1,"59139":-1,"59140":-1,"59141":-1,"59142":-1,"59143":-1,"59144":-1,"59145":2685,"59146":-1,"59147":-1,"59148":-1,"59149":-1,"59150":-1,"59151":-1,"59152":-1,"59153":2685,"59154":-1,"59155":-1,"59156":-1,"59157":-1,"59158":-1,"59159":-1,"59160":0,"59161":-1,"59162":-1,"59163":-1,"59164":-1,"59165":2682,"59166":-1,"59167":-1,"59168":-1,"59169":2685,"59170":-1,"59171":2685,"59172":-1,"59173":-1,"59174":-1,"59175":-1,"59176":2685,"59177":-1,"59178":-1,"59179":-1,"59180":-1,"59181":2686,"59182":-1,"59183":-1,"59184":-1,"59185":-1,"59186":-1,"59187":-1,"59188":-1,"59189":-1,"59190":-1,"59191":-1,"59192":-1,"59193":-1,"59194":2681,"59195":-1,"59196":-1,"59197":-1,"59198":-1,"59199":-1,"59200":-1,"59201":-1,"59202":-1,"59203":-1,"59204":2685,"59205":-1,"59206":2682,"59207":-1,"59208":-1,"59209":2686,"59210":-1,"59211":2682,"59212":-1,"59213":-1,"59214":-1,"59215":-1,"59216":-1,"59217":-1,"59218":-1,"59219":-1,"59220":-1,"59221":-1,"59222":-1,"59223":-1,"59224":-1,"59225":-1,"59226":2683,"59227":-1,"59228":-1,"59229":-1,"59230":-1,"59231":-1,"59232":-1,"59233":-1,"59234":-1,"59235":-1,"59236":-1,"59237":-1,"59238":2683,"59239":-1,"59240":-1,"59241":-1,"59242":-1,"59243":-1,"59244":-1,"59245":-1,"59246":-1,"59247":-1,"59248":-1,"59249":0,"59250":-1,"59251":-1,"59252":-1,"59253":-1,"59254":-1,"59255":-1,"59256":-1,"59257":-1,"59258":-1,"59259":-1,"59260":-1,"59261":-1,"59262":-1,"59263":-1,"59264":-1,"59265":-1,"59266":-1,"59267":2685,"59268":-1,"59269":-1,"59270":-1,"59271":-1,"59272":-1,"59273":-1,"59274":-1,"59275":-1,"59276":-1,"59277":-1,"59278":-1,"59279":-1,"59280":-1,"59281":-1,"59282":-1,"59283":-1,"59284":-1,"59285":-1,"59286":-1,"59287":-1,"59288":0,"59289":-1,"59290":-1,"59291":-1,"59292":-1,"59293":-1,"59294":-1,"59295":-1,"59296":-1,"59297":2683,"59298":-1,"59299":-1,"59300":-1,"59301":-1,"59302":-1,"59303":-1,"59304":-1,"59305":-1,"59306":2682,"59307":-1,"59308":2686,"59309":-1,"59310":-1,"59311":-1,"59312":-1,"59313":-1,"59314":2682,"59315":2684,"59316":-1,"59317":0,"59318":-1,"59319":-1,"59320":-1,"59321":-1,"59322":-1,"59323":-1,"59324":-1,"59325":-1,"59326":-1,"59327":-1,"59328":-1,"59329":-1,"59330":-1,"59331":-1,"59332":-1,"59333":-1,"59334":-1,"59335":-1,"59336":-1,"59337":-1,"59338":-1,"59339":-1,"59340":-1,"59341":2685,"59342":-1,"59343":-1,"59344":-1,"59345":-1,"59346":-1,"59347":-1,"59348":-1,"59349":-1,"59350":-1,"59351":-1,"59352":-1,"59353":-1,"59354":-1,"59355":-1,"59356":-1,"59357":-1,"59358":-1,"59359":-1,"59360":-1,"59361":2684,"59362":-1,"59363":-1,"59364":0,"59365":2685,"59366":-1,"59367":-1,"59368":-1,"59369":-1,"59370":-1,"59371":-1,"59372":-1,"59373":-1,"59374":-1,"59375":-1,"59376":2686,"59377":-1,"59378":2687,"59379":-1,"59380":-1,"59381":-1,"59382":-1,"59383":-1,"59384":-1,"59385":-1,"59386":-1,"59387":-1,"59388":-1,"59389":-1,"59390":-1,"59391":-1,"59392":-1,"59393":-1,"59394":-1,"59395":-1,"59396":-1,"59397":-1,"59398":-1,"59399":-1,"59400":0,"59401":-1,"59402":2686,"59403":-1,"59404":-1,"59405":-1,"59406":-1,"59407":-1,"59408":-1,"59409":2683,"59410":-1,"59411":-1,"59412":0,"59413":2686,"59414":2682,"59415":-1,"59416":-1,"59417":-1,"59418":-1,"59419":-1,"59420":-1,"59421":-1,"59422":0,"59423":-1,"59424":2687,"59425":2682,"59426":-1,"59427":-1,"59428":-1,"59429":-1,"59430":-1,"59431":-1,"59432":-1,"59433":-1,"59434":-1,"59435":2684,"59436":2683,"59437":2683,"59438":-1,"59439":-1,"59440":-1,"59441":-1,"59442":-1,"59443":-1,"59444":-1,"59445":-1,"59446":-1,"59447":-1,"59448":2682,"59449":-1,"59450":-1,"59451":-1,"59452":-1,"59453":-1,"59454":-1,"59455":2682,"59456":0,"59457":-1,"59458":-1,"59459":-1,"59460":-1,"59461":-1,"59462":-1,"59463":-1,"59464":-1,"59465":-1,"59466":-1,"59467":-1,"59468":-1,"59469":-1,"59470":2686,"59471":-1,"59472":-1,"59473":-1,"59474":-1,"59475":-1,"59476":-1,"59477":-1,"59478":-1,"59479":-1,"59480":-1,"59481":-1,"59482":-1,"59483":-1,"59484":-1,"59485":-1,"59486":-1,"59487":-1,"59488":-1,"59489":-1,"59490":-1,"59491":-1,"59492":-1,"59493":-1,"59494":2684,"59495":-1,"59496":0,"59497":-1,"59498":-1,"59499":-1,"59500":-1,"59501":-1,"59502":-1,"59503":-1,"59504":-1,"59505":-1,"59506":-1,"59507":-1,"59508":-1,"59509":-1,"59510":-1,"59511":-1,"59512":-1,"59513":-1,"59514":2685,"59515":-1,"59516":-1,"59517":2684,"59518":-1,"59519":-1,"59520":-1,"59521":-1,"59522":-1,"59523":-1,"59524":-1,"59525":-1,"59526":-1,"59527":2686,"59528":-1,"59529":2685,"59530":-1,"59531":-1,"59532":-1,"59533":-1,"59534":-1,"59535":-1,"59536":-1,"59537":-1,"59538":-1,"59539":2682,"59540":-1,"59541":-1,"59542":-1,"59543":-1,"59544":-1,"59545":-1,"59546":-1,"59547":-1,"59548":-1,"59549":-1,"59550":-1,"59551":-1,"59552":-1,"59553":0,"59554":-1,"59555":-1,"59556":-1,"59557":-1,"59558":-1,"59559":-1,"59560":2682,"59561":-1,"59562":-1,"59563":-1,"59564":-1,"59565":-1,"59566":2683,"59567":-1,"59568":-1,"59569":-1,"59570":-1,"59571":2685,"59572":-1,"59573":-1,"59574":-1,"59575":-1,"59576":-1,"59577":-1,"59578":-1,"59579":-1,"59580":-1,"59581":-1,"59582":-1,"59583":-1,"59584":-1,"59585":-1,"59586":-1,"59587":-1,"59588":-1,"59589":-1,"59590":-1,"59591":-1,"59592":2685,"59593":-1,"59594":-1,"59595":-1,"59596":-1,"59597":-1,"59598":-1,"59599":-1,"59600":-1,"59601":2685,"59602":2685,"59603":-1,"59604":-1,"59605":-1,"59606":-1,"59607":-1,"59608":-1,"59609":-1,"59610":-1,"59611":-1,"59612":-1,"59613":2685,"59614":0,"59615":2685,"59616":-1,"59617":-1,"59618":-1,"59619":-1,"59620":-1,"59621":2687,"59622":-1,"59623":2682,"59624":-1,"59625":-1,"59626":-1,"59627":-1,"59628":-1,"59629":-1,"59630":2682,"59631":-1,"59632":-1,"59633":2684,"59634":-1,"59635":-1,"59636":2684,"59637":-1,"59638":-1,"59639":-1,"59640":2683,"59641":2682,"59642":-1,"59643":-1,"59644":-1,"59645":-1,"59646":-1,"59647":-1,"59648":-1,"59649":-1,"59650":2685,"59651":0,"59652":-1,"59653":-1,"59654":-1,"59655":-1,"59656":-1,"59657":-1,"59658":0,"59659":-1,"59660":-1,"59661":-1,"59662":-1,"59663":-1,"59664":-1,"59665":2685,"59666":-1,"59667":-1,"59668":-1,"59669":2686,"59670":-1,"59671":-1,"59672":-1,"59673":-1,"59674":-1,"59675":-1,"59676":2682,"59677":-1,"59678":-1,"59679":-1,"59680":-1,"59681":-1,"59682":-1,"59683":-1,"59684":-1,"59685":-1,"59686":2687,"59687":-1,"59688":0,"59689":-1,"59690":2686,"59691":-1,"59692":-1,"59693":-1,"59694":-1,"59695":-1,"59696":-1,"59697":2685,"59698":-1,"59699":-1,"59700":-1,"59701":-1,"59702":-1,"59703":2686,"59704":-1,"59705":-1,"59706":-1,"59707":-1,"59708":-1,"59709":-1,"59710":-1,"59711":-1,"59712":-1,"59713":2684,"59714":-1,"59715":-1,"59716":-1,"59717":-1,"59718":-1,"59719":-1,"59720":-1,"59721":-1,"59722":-1,"59723":2684,"59724":-1,"59725":-1,"59726":-1,"59727":-1,"59728":-1,"59729":-1,"59730":-1,"59731":-1,"59732":-1,"59733":-1,"59734":2684,"59735":-1,"59736":-1,"59737":-1,"59738":-1,"59739":-1,"59740":-1,"59741":-1,"59742":-1,"59743":-1,"59744":-1,"59745":-1,"59746":-1,"59747":-1,"59748":-1,"59749":-1,"59750":-1,"59751":-1,"59752":-1,"59753":-1,"59754":-1,"59755":-1,"59756":-1,"59757":-1,"59758":-1,"59759":-1,"59760":-1,"59761":-1,"59762":-1,"59763":-1,"59764":-1,"59765":-1,"59766":-1,"59767":-1,"59768":-1,"59769":-1,"59770":-1,"59771":-1,"59772":0,"59773":-1,"59774":-1,"59775":2682,"59776":-1,"59777":-1,"59778":-1,"59779":-1,"59780":2681,"59781":-1,"59782":2682,"59783":-1,"59784":-1,"59785":-1,"59786":-1,"59787":-1,"59788":-1,"59789":-1,"59790":-1,"59791":-1,"59792":-1,"59793":-1,"59794":-1,"59795":0,"59796":-1,"59797":-1,"59798":-1,"59799":2681,"59800":-1,"59801":-1,"59802":0,"59803":-1,"59804":-1,"59805":-1,"59806":-1,"59807":-1,"59808":-1,"59809":-1,"59810":-1,"59811":-1,"59812":-1,"59813":-1,"59814":-1,"59815":0,"59816":2685,"59817":-1,"59818":-1,"59819":-1,"59820":-1,"59821":-1,"59822":-1,"59823":2681,"59824":-1,"59825":-1,"59826":-1,"59827":0,"59828":-1,"59829":-1,"59830":-1,"59831":-1,"59832":-1,"59833":-1,"59834":-1,"59835":-1,"59836":-1,"59837":2681,"59838":-1,"59839":-1,"59840":-1,"59841":-1,"59842":-1,"59843":-1,"59844":-1,"59845":-1,"59846":-1,"59847":-1,"59848":-1,"59849":-1,"59850":-1,"59851":-1,"59852":-1,"59853":2682,"59854":-1,"59855":-1,"59856":-1,"59857":-1,"59858":-1,"59859":-1,"59860":-1,"59861":-1,"59862":0,"59863":-1,"59864":-1,"59865":-1,"59866":-1,"59867":2682,"59868":2686,"59869":-1,"59870":-1,"59871":-1,"59872":-1,"59873":-1,"59874":-1,"59875":-1,"59876":-1,"59877":-1,"59878":2681,"59879":-1,"59880":-1,"59881":-1,"59882":0,"59883":-1,"59884":-1,"59885":-1,"59886":-1,"59887":0,"59888":-1,"59889":-1,"59890":-1,"59891":-1,"59892":-1,"59893":-1,"59894":-1,"59895":-1,"59896":2686,"59897":-1,"59898":-1,"59899":-1,"59900":-1,"59901":-1,"59902":2684,"59903":-1,"59904":-1,"59905":2684,"59906":-1,"59907":-1,"59908":-1,"59909":2683,"59910":0,"59911":-1,"59912":-1,"59913":-1,"59914":2683,"59915":-1,"59916":2686,"59917":-1,"59918":-1,"59919":-1,"59920":-1,"59921":2685,"59922":-1,"59923":-1,"59924":-1,"59925":2684,"59926":-1,"59927":-1,"59928":2685,"59929":-1,"59930":-1,"59931":2685,"59932":-1,"59933":-1,"59934":-1,"59935":-1,"59936":0,"59937":-1,"59938":-1,"59939":-1,"59940":-1,"59941":-1,"59942":-1,"59943":-1,"59944":-1,"59945":-1,"59946":-1,"59947":-1,"59948":-1,"59949":-1,"59950":2687,"59951":-1,"59952":-1,"59953":-1,"59954":2686,"59955":2682,"59956":-1,"59957":0,"59958":-1,"59959":0,"59960":-1,"59961":-1,"59962":-1,"59963":-1,"59964":-1,"59965":-1,"59966":-1,"59967":-1,"59968":-1,"59969":-1,"59970":-1,"59971":-1,"59972":-1,"59973":-1,"59974":-1,"59975":2683,"59976":-1,"59977":-1,"59978":-1,"59979":-1,"59980":-1,"59981":-1,"59982":-1,"59983":2685,"59984":-1,"59985":-1,"59986":-1,"59987":-1,"59988":-1,"59989":-1,"59990":-1,"59991":-1,"59992":2682,"59993":-1,"59994":-1,"59995":-1,"59996":-1,"59997":-1,"59998":-1,"59999":2686,"60000":-1,"60001":-1,"60002":2685,"60003":-1,"60004":-1,"60005":-1,"60006":-1,"60007":-1,"60008":-1,"60009":-1,"60010":-1,"60011":0,"60012":-1,"60013":-1,"60014":-1,"60015":-1,"60016":2684,"60017":2687,"60018":-1,"60019":-1,"60020":-1,"60021":2681,"60022":-1,"60023":-1,"60024":-1,"60025":-1,"60026":-1,"60027":-1,"60028":-1,"60029":-1,"60030":2684,"60031":-1,"60032":-1,"60033":-1,"60034":-1,"60035":-1,"60036":-1,"60037":-1,"60038":2684,"60039":-1,"60040":-1,"60041":-1,"60042":-1,"60043":-1,"60044":-1,"60045":2687,"60046":-1,"60047":-1,"60048":2687,"60049":-1,"60050":-1,"60051":-1,"60052":-1,"60053":2682,"60054":-1,"60055":-1,"60056":-1,"60057":-1,"60058":-1,"60059":-1,"60060":-1,"60061":-1,"60062":-1,"60063":-1,"60064":-1,"60065":-1,"60066":-1,"60067":-1,"60068":-1,"60069":-1,"60070":-1,"60071":2686,"60072":-1,"60073":-1,"60074":-1,"60075":2686,"60076":-1,"60077":-1,"60078":-1,"60079":-1,"60080":2682,"60081":-1,"60082":-1,"60083":-1,"60084":-1,"60085":-1,"60086":-1,"60087":-1,"60088":2684,"60089":-1,"60090":-1,"60091":-1,"60092":-1,"60093":-1,"60094":2682,"60095":-1,"60096":-1,"60097":-1,"60098":-1,"60099":-1,"60100":-1,"60101":-1,"60102":-1,"60103":-1,"60104":-1,"60105":-1,"60106":-1,"60107":-1,"60108":2682,"60109":-1,"60110":-1,"60111":-1,"60112":-1,"60113":-1,"60114":-1,"60115":-1,"60116":-1,"60117":-1,"60118":-1,"60119":-1,"60120":-1,"60121":0,"60122":2684,"60123":2681,"60124":-1,"60125":-1,"60126":-1,"60127":-1,"60128":-1,"60129":2684,"60130":-1,"60131":-1,"60132":-1,"60133":-1,"60134":-1,"60135":-1,"60136":-1,"60137":-1,"60138":-1,"60139":-1,"60140":-1,"60141":0,"60142":-1,"60143":-1,"60144":-1,"60145":-1,"60146":-1,"60147":0,"60148":-1,"60149":-1,"60150":-1,"60151":2682,"60152":-1,"60153":0,"60154":-1,"60155":-1,"60156":-1,"60157":-1,"60158":-1,"60159":-1,"60160":-1,"60161":-1,"60162":-1,"60163":-1,"60164":-1,"60165":-1,"60166":-1,"60167":2686,"60168":2682,"60169":-1,"60170":-1,"60171":-1,"60172":-1,"60173":-1,"60174":-1,"60175":2684,"60176":-1,"60177":2683,"60178":-1,"60179":2683,"60180":-1,"60181":-1,"60182":-1,"60183":-1,"60184":-1,"60185":-1,"60186":-1,"60187":-1,"60188":-1,"60189":-1,"60190":-1,"60191":-1,"60192":2684,"60193":-1,"60194":2686,"60195":-1,"60196":-1,"60197":-1,"60198":-1,"60199":-1,"60200":2683,"60201":-1,"60202":-1,"60203":-1,"60204":-1,"60205":-1,"60206":-1,"60207":-1,"60208":2682,"60209":-1,"60210":0,"60211":2684,"60212":-1,"60213":0,"60214":-1,"60215":-1,"60216":-1,"60217":-1,"60218":-1,"60219":-1,"60220":-1,"60221":-1,"60222":2681,"60223":-1,"60224":-1,"60225":-1,"60226":-1,"60227":0,"60228":-1,"60229":-1,"60230":-1,"60231":-1,"60232":-1,"60233":-1,"60234":-1,"60235":-1,"60236":-1,"60237":-1,"60238":2681,"60239":-1,"60240":-1,"60241":-1,"60242":-1,"60243":-1,"60244":-1,"60245":0,"60246":-1,"60247":-1,"60248":-1,"60249":-1,"60250":-1,"60251":-1,"60252":-1,"60253":2682,"60254":0,"60255":-1,"60256":-1,"60257":-1,"60258":-1,"60259":-1,"60260":-1,"60261":-1,"60262":-1,"60263":2686,"60264":-1,"60265":-1,"60266":-1,"60267":-1,"60268":-1,"60269":-1,"60270":-1,"60271":-1,"60272":2684,"60273":-1,"60274":-1,"60275":-1,"60276":-1,"60277":-1,"60278":-1,"60279":-1,"60280":-1,"60281":-1,"60282":-1,"60283":-1,"60284":-1,"60285":-1,"60286":0,"60287":-1,"60288":-1,"60289":-1,"60290":-1,"60291":-1,"60292":-1,"60293":-1,"60294":-1,"60295":-1,"60296":2684,"60297":-1,"60298":-1,"60299":-1,"60300":2686,"60301":-1,"60302":-1,"60303":-1,"60304":-1,"60305":-1,"60306":-1,"60307":-1,"60308":-1,"60309":2685,"60310":0,"60311":-1,"60312":-1,"60313":-1,"60314":-1,"60315":-1,"60316":-1,"60317":-1,"60318":-1,"60319":-1,"60320":-1,"60321":-1,"60322":-1,"60323":-1,"60324":2686,"60325":-1,"60326":-1,"60327":-1,"60328":-1,"60329":-1,"60330":-1,"60331":-1,"60332":-1,"60333":-1,"60334":-1,"60335":-1,"60336":-1,"60337":-1,"60338":-1,"60339":-1,"60340":-1,"60341":-1,"60342":-1,"60343":-1,"60344":2682,"60345":-1,"60346":-1,"60347":-1,"60348":-1,"60349":-1,"60350":-1,"60351":2685,"60352":-1,"60353":-1,"60354":2687,"60355":-1,"60356":-1,"60357":-1,"60358":2682,"60359":-1,"60360":-1,"60361":-1,"60362":-1,"60363":-1,"60364":2684,"60365":2685,"60366":-1,"60367":-1,"60368":-1,"60369":-1,"60370":-1,"60371":-1,"60372":-1,"60373":-1,"60374":-1,"60375":-1,"60376":-1,"60377":-1,"60378":-1,"60379":-1,"60380":2682,"60381":-1,"60382":-1,"60383":-1,"60384":-1,"60385":-1,"60386":-1,"60387":-1,"60388":-1,"60389":-1,"60390":-1,"60391":2687,"60392":-1,"60393":-1,"60394":-1,"60395":-1,"60396":-1,"60397":-1,"60398":-1,"60399":-1,"60400":-1,"60401":-1,"60402":-1,"60403":-1,"60404":2683,"60405":-1,"60406":-1,"60407":-1,"60408":-1,"60409":-1,"60410":-1,"60411":-1,"60412":-1,"60413":-1,"60414":-1,"60415":-1,"60416":-1,"60417":-1,"60418":-1,"60419":-1,"60420":-1,"60421":-1,"60422":-1,"60423":-1,"60424":0,"60425":0,"60426":-1,"60427":-1,"60428":-1,"60429":-1,"60430":-1,"60431":-1,"60432":-1,"60433":-1,"60434":-1,"60435":2685,"60436":-1,"60437":-1,"60438":2687,"60439":-1,"60440":-1,"60441":2681,"60442":-1,"60443":-1,"60444":-1,"60445":-1,"60446":2684,"60447":-1,"60448":-1,"60449":-1,"60450":-1,"60451":-1,"60452":-1,"60453":-1,"60454":-1,"60455":0,"60456":-1,"60457":-1,"60458":-1,"60459":-1,"60460":-1,"60461":-1,"60462":0,"60463":2682,"60464":-1,"60465":-1,"60466":-1,"60467":-1,"60468":2684,"60469":-1,"60470":-1,"60471":-1,"60472":-1,"60473":-1,"60474":2682,"60475":-1,"60476":-1,"60477":-1,"60478":-1,"60479":-1,"60480":-1,"60481":-1,"60482":-1,"60483":-1,"60484":-1,"60485":-1,"60486":-1,"60487":-1,"60488":-1,"60489":-1,"60490":-1,"60491":-1,"60492":-1,"60493":-1,"60494":-1,"60495":-1,"60496":2685,"60497":-1,"60498":-1,"60499":-1,"60500":2683,"60501":2684,"60502":-1,"60503":-1,"60504":-1,"60505":-1,"60506":-1,"60507":-1,"60508":-1,"60509":-1,"60510":-1,"60511":-1,"60512":-1,"60513":-1,"60514":-1,"60515":-1,"60516":-1,"60517":-1,"60518":-1,"60519":-1,"60520":-1,"60521":-1,"60522":-1,"60523":-1,"60524":-1,"60525":-1,"60526":-1,"60527":-1,"60528":-1,"60529":-1,"60530":-1,"60531":-1,"60532":-1,"60533":-1,"60534":-1,"60535":0,"60536":2682,"60537":-1,"60538":-1,"60539":-1,"60540":2682,"60541":-1,"60542":2681,"60543":-1,"60544":-1,"60545":-1,"60546":-1,"60547":-1,"60548":-1,"60549":-1,"60550":-1,"60551":-1,"60552":-1,"60553":2687,"60554":-1,"60555":-1,"60556":-1,"60557":-1,"60558":-1,"60559":-1,"60560":-1,"60561":-1,"60562":-1,"60563":-1,"60564":-1,"60565":2686,"60566":-1,"60567":-1,"60568":-1,"60569":-1,"60570":-1,"60571":-1,"60572":-1,"60573":-1,"60574":2685,"60575":-1,"60576":-1,"60577":2682,"60578":-1,"60579":-1,"60580":-1,"60581":-1,"60582":-1,"60583":-1,"60584":-1,"60585":-1,"60586":-1,"60587":2685,"60588":2684,"60589":-1,"60590":-1,"60591":-1,"60592":-1,"60593":-1,"60594":-1,"60595":-1,"60596":2681,"60597":-1,"60598":-1,"60599":-1,"60600":-1,"60601":-1,"60602":-1,"60603":-1,"60604":-1,"60605":2684,"60606":-1,"60607":-1,"60608":2685,"60609":-1,"60610":2683,"60611":-1,"60612":-1,"60613":-1,"60614":-1,"60615":2686,"60616":-1,"60617":-1,"60618":-1,"60619":2683,"60620":-1,"60621":-1,"60622":-1,"60623":-1,"60624":-1,"60625":-1,"60626":-1,"60627":-1,"60628":-1,"60629":-1,"60630":-1,"60631":2682,"60632":-1,"60633":-1,"60634":-1,"60635":-1,"60636":-1,"60637":-1,"60638":-1,"60639":2683,"60640":-1,"60641":2686,"60642":-1,"60643":-1,"60644":-1,"60645":-1,"60646":-1,"60647":-1,"60648":-1,"60649":-1,"60650":-1,"60651":-1,"60652":-1,"60653":-1,"60654":2683,"60655":-1,"60656":-1,"60657":-1,"60658":0,"60659":-1,"60660":-1,"60661":-1,"60662":-1,"60663":-1,"60664":-1,"60665":-1,"60666":-1,"60667":-1,"60668":2685,"60669":-1,"60670":-1,"60671":-1,"60672":-1,"60673":-1,"60674":-1,"60675":-1,"60676":-1,"60677":-1,"60678":-1,"60679":-1,"60680":-1,"60681":-1,"60682":-1,"60683":2682,"60684":-1,"60685":-1,"60686":-1,"60687":-1,"60688":-1,"60689":-1,"60690":-1,"60691":-1,"60692":2684,"60693":-1,"60694":-1,"60695":-1,"60696":-1,"60697":-1,"60698":-1,"60699":-1,"60700":-1,"60701":-1,"60702":-1,"60703":2685,"60704":-1,"60705":-1,"60706":-1,"60707":-1,"60708":-1,"60709":-1,"60710":-1,"60711":-1,"60712":-1,"60713":-1,"60714":-1,"60715":-1,"60716":-1,"60717":-1,"60718":-1,"60719":-1,"60720":-1,"60721":-1,"60722":-1,"60723":-1,"60724":-1,"60725":-1,"60726":-1,"60727":-1,"60728":-1,"60729":-1,"60730":-1,"60731":-1,"60732":-1,"60733":2684,"60734":-1,"60735":-1,"60736":2684,"60737":-1,"60738":-1,"60739":2683,"60740":-1,"60741":-1,"60742":-1,"60743":-1,"60744":-1,"60745":-1,"60746":-1,"60747":-1,"60748":-1,"60749":-1,"60750":-1,"60751":-1,"60752":2681,"60753":2681,"60754":-1,"60755":-1,"60756":-1,"60757":-1,"60758":-1,"60759":-1,"60760":-1,"60761":-1,"60762":-1,"60763":2683,"60764":-1,"60765":-1,"60766":-1,"60767":-1,"60768":-1,"60769":2683,"60770":-1,"60771":-1,"60772":2685,"60773":-1,"60774":-1,"60775":-1,"60776":-1,"60777":-1,"60778":-1,"60779":-1,"60780":-1,"60781":-1,"60782":-1,"60783":-1,"60784":-1,"60785":-1,"60786":-1,"60787":0,"60788":-1,"60789":-1,"60790":-1,"60791":-1,"60792":-1,"60793":-1,"60794":-1,"60795":-1,"60796":2684,"60797":-1,"60798":2682,"60799":-1,"60800":2684,"60801":-1,"60802":-1,"60803":2684,"60804":-1,"60805":-1,"60806":-1,"60807":-1,"60808":-1,"60809":-1,"60810":-1,"60811":-1,"60812":-1,"60813":-1,"60814":-1,"60815":-1,"60816":-1,"60817":-1,"60818":-1,"60819":-1,"60820":-1,"60821":-1,"60822":-1,"60823":-1,"60824":-1,"60825":-1,"60826":-1,"60827":2682,"60828":-1,"60829":-1,"60830":2686,"60831":-1,"60832":-1,"60833":-1,"60834":-1,"60835":-1,"60836":-1,"60837":-1,"60838":-1,"60839":-1,"60840":-1,"60841":-1,"60842":-1,"60843":-1,"60844":-1,"60845":-1,"60846":2684,"60847":-1,"60848":-1,"60849":-1,"60850":-1,"60851":-1,"60852":-1,"60853":-1,"60854":-1,"60855":0,"60856":-1,"60857":-1,"60858":-1,"60859":2682,"60860":-1,"60861":-1,"60862":-1,"60863":2685,"60864":-1,"60865":-1,"60866":-1,"60867":-1,"60868":-1,"60869":-1,"60870":-1,"60871":-1,"60872":0,"60873":-1,"60874":-1,"60875":-1,"60876":-1,"60877":-1,"60878":-1,"60879":-1,"60880":-1,"60881":2685,"60882":-1,"60883":-1,"60884":-1,"60885":2685,"60886":-1,"60887":-1,"60888":2681,"60889":-1,"60890":-1,"60891":-1,"60892":-1,"60893":-1,"60894":-1,"60895":-1,"60896":-1,"60897":-1,"60898":-1,"60899":0,"60900":-1,"60901":-1,"60902":-1,"60903":-1,"60904":0,"60905":-1,"60906":-1,"60907":-1,"60908":-1,"60909":-1,"60910":-1,"60911":-1,"60912":-1,"60913":-1,"60914":-1,"60915":-1,"60916":-1,"60917":-1,"60918":-1,"60919":-1,"60920":-1,"60921":-1,"60922":0,"60923":0,"60924":2687,"60925":-1,"60926":-1,"60927":-1,"60928":-1,"60929":-1,"60930":-1,"60931":-1,"60932":-1,"60933":-1,"60934":-1,"60935":-1,"60936":-1,"60937":-1,"60938":-1,"60939":-1,"60940":-1,"60941":-1,"60942":-1,"60943":2686,"60944":-1,"60945":-1,"60946":2686,"60947":-1,"60948":-1,"60949":-1,"60950":-1,"60951":-1,"60952":0,"60953":-1,"60954":-1,"60955":-1,"60956":-1,"60957":-1,"60958":2687,"60959":-1,"60960":-1,"60961":2686,"60962":-1,"60963":-1,"60964":-1,"60965":-1,"60966":2686,"60967":-1,"60968":-1,"60969":0,"60970":-1,"60971":-1,"60972":-1,"60973":-1,"60974":-1,"60975":-1,"60976":-1,"60977":-1,"60978":-1,"60979":-1,"60980":-1,"60981":-1,"60982":-1,"60983":2684,"60984":-1,"60985":0,"60986":2683,"60987":-1,"60988":-1,"60989":-1,"60990":-1,"60991":-1,"60992":2687,"60993":-1,"60994":-1,"60995":-1,"60996":-1,"60997":-1,"60998":-1,"60999":-1,"61000":-1,"61001":-1,"61002":-1,"61003":-1,"61004":2684,"61005":-1,"61006":2684,"61007":-1,"61008":-1,"61009":-1,"61010":-1,"61011":-1,"61012":-1,"61013":-1,"61014":-1,"61015":-1,"61016":-1,"61017":-1,"61018":0,"61019":-1,"61020":-1,"61021":-1,"61022":-1,"61023":-1,"61024":-1,"61025":-1,"61026":-1,"61027":0,"61028":-1,"61029":2685,"61030":2681,"61031":-1,"61032":-1,"61033":-1,"61034":-1,"61035":-1,"61036":0,"61037":0,"61038":2683,"61039":-1,"61040":-1,"61041":-1,"61042":-1,"61043":-1,"61044":-1,"61045":-1,"61046":-1,"61047":-1,"61048":2686,"61049":-1,"61050":-1,"61051":-1,"61052":-1,"61053":-1,"61054":-1,"61055":-1,"61056":-1,"61057":-1,"61058":-1,"61059":0,"61060":-1,"61061":-1,"61062":2685,"61063":0,"61064":-1,"61065":-1,"61066":-1,"61067":-1,"61068":-1,"61069":-1,"61070":2683,"61071":2686,"61072":-1,"61073":2686,"61074":-1,"61075":-1,"61076":-1,"61077":-1,"61078":0,"61079":-1,"61080":-1,"61081":-1,"61082":-1,"61083":-1,"61084":-1,"61085":-1,"61086":-1,"61087":-1,"61088":-1,"61089":0,"61090":-1,"61091":-1,"61092":-1,"61093":-1,"61094":-1,"61095":-1,"61096":-1,"61097":-1,"61098":-1,"61099":-1,"61100":-1,"61101":-1,"61102":-1,"61103":-1,"61104":-1,"61105":-1,"61106":-1,"61107":-1,"61108":-1,"61109":-1,"61110":-1,"61111":-1,"61112":-1,"61113":-1,"61114":-1,"61115":-1,"61116":2683,"61117":-1,"61118":2682,"61119":-1,"61120":-1,"61121":-1,"61122":-1,"61123":-1,"61124":2686,"61125":-1,"61126":-1,"61127":-1,"61128":-1,"61129":-1,"61130":-1,"61131":-1,"61132":-1,"61133":-1,"61134":-1,"61135":-1,"61136":-1,"61137":-1,"61138":-1,"61139":-1,"61140":-1,"61141":-1,"61142":-1,"61143":2685,"61144":-1,"61145":-1,"61146":-1,"61147":-1,"61148":-1,"61149":-1,"61150":-1,"61151":-1,"61152":-1,"61153":-1,"61154":-1,"61155":-1,"61156":-1,"61157":-1,"61158":2684,"61159":-1,"61160":-1,"61161":-1,"61162":-1,"61163":-1,"61164":-1,"61165":-1,"61166":2685,"61167":-1,"61168":-1,"61169":-1,"61170":-1,"61171":-1,"61172":-1,"61173":-1,"61174":-1,"61175":-1,"61176":-1,"61177":-1,"61178":-1,"61179":-1,"61180":-1,"61181":-1,"61182":-1,"61183":-1,"61184":-1,"61185":-1,"61186":-1,"61187":-1,"61188":-1,"61189":-1,"61190":-1,"61191":-1,"61192":2685,"61193":-1,"61194":-1,"61195":-1,"61196":2682,"61197":2685,"61198":-1,"61199":-1,"61200":-1,"61201":2684,"61202":-1,"61203":-1,"61204":-1,"61205":-1,"61206":-1,"61207":-1,"61208":-1,"61209":-1,"61210":-1,"61211":-1,"61212":-1,"61213":-1,"61214":-1,"61215":-1,"61216":-1,"61217":-1,"61218":-1,"61219":-1,"61220":-1,"61221":-1,"61222":-1,"61223":-1,"61224":-1,"61225":-1,"61226":-1,"61227":-1,"61228":-1,"61229":2685,"61230":-1,"61231":-1,"61232":-1,"61233":-1,"61234":-1,"61235":-1,"61236":-1,"61237":-1,"61238":2684,"61239":2683,"61240":-1,"61241":-1,"61242":-1,"61243":-1,"61244":-1,"61245":-1,"61246":-1,"61247":-1,"61248":-1,"61249":0,"61250":-1,"61251":2682,"61252":-1,"61253":-1,"61254":-1,"61255":-1,"61256":-1,"61257":2681,"61258":-1,"61259":-1,"61260":-1,"61261":-1,"61262":2686,"61263":-1,"61264":-1,"61265":-1,"61266":-1,"61267":-1,"61268":-1,"61269":-1,"61270":-1,"61271":-1,"61272":2686,"61273":-1,"61274":-1,"61275":-1,"61276":-1,"61277":-1,"61278":2682,"61279":-1,"61280":-1,"61281":-1,"61282":-1,"61283":-1,"61284":-1,"61285":-1,"61286":-1,"61287":-1,"61288":-1,"61289":-1,"61290":-1,"61291":-1,"61292":2681,"61293":2686,"61294":-1,"61295":-1,"61296":-1,"61297":-1,"61298":-1,"61299":-1,"61300":2683,"61301":2683,"61302":2683,"61303":-1,"61304":-1,"61305":-1,"61306":-1,"61307":-1,"61308":-1,"61309":-1,"61310":-1,"61311":-1,"61312":-1,"61313":-1,"61314":-1,"61315":-1,"61316":-1,"61317":-1,"61318":0,"61319":-1,"61320":-1,"61321":-1,"61322":-1,"61323":-1,"61324":-1,"61325":-1,"61326":2686,"61327":-1,"61328":-1,"61329":-1,"61330":-1,"61331":-1,"61332":-1,"61333":-1,"61334":-1,"61335":-1,"61336":-1,"61337":-1,"61338":-1,"61339":2682,"61340":2681,"61341":-1,"61342":-1,"61343":-1,"61344":-1,"61345":-1,"61346":-1,"61347":-1,"61348":-1,"61349":-1,"61350":-1,"61351":-1,"61352":-1,"61353":-1,"61354":-1,"61355":2686,"61356":-1,"61357":-1,"61358":2684,"61359":-1,"61360":2686,"61361":-1,"61362":-1,"61363":-1,"61364":-1,"61365":-1,"61366":-1,"61367":-1,"61368":-1,"61369":0,"61370":-1,"61371":-1,"61372":-1,"61373":-1,"61374":-1,"61375":-1,"61376":2684,"61377":-1,"61378":-1,"61379":-1,"61380":-1,"61381":-1,"61382":-1,"61383":-1,"61384":-1,"61385":-1,"61386":-1,"61387":-1,"61388":-1,"61389":-1,"61390":-1,"61391":-1,"61392":-1,"61393":-1,"61394":-1,"61395":-1,"61396":-1,"61397":-1,"61398":2686,"61399":-1,"61400":-1,"61401":-1,"61402":-1,"61403":-1,"61404":-1,"61405":-1,"61406":-1,"61407":0,"61408":2682,"61409":-1,"61410":-1,"61411":-1,"61412":-1,"61413":-1,"61414":-1,"61415":-1,"61416":-1,"61417":-1,"61418":-1,"61419":-1,"61420":-1,"61421":-1,"61422":-1,"61423":-1,"61424":-1,"61425":-1,"61426":-1,"61427":-1,"61428":-1,"61429":-1,"61430":-1,"61431":-1,"61432":-1,"61433":2687,"61434":-1,"61435":-1,"61436":-1,"61437":2684,"61438":-1,"61439":-1,"61440":-1,"61441":-1,"61442":-1,"61443":0,"61444":2682,"61445":-1,"61446":-1,"61447":2682,"61448":-1,"61449":-1,"61450":-1,"61451":2685,"61452":-1,"61453":-1,"61454":-1,"61455":-1,"61456":-1,"61457":-1,"61458":-1,"61459":2685,"61460":-1,"61461":-1,"61462":-1,"61463":-1,"61464":-1,"61465":-1,"61466":-1,"61467":-1,"61468":-1,"61469":-1,"61470":-1,"61471":-1,"61472":-1,"61473":-1,"61474":-1,"61475":-1,"61476":-1,"61477":-1,"61478":-1,"61479":-1,"61480":-1,"61481":-1,"61482":2684,"61483":-1,"61484":-1,"61485":-1,"61486":-1,"61487":-1,"61488":-1,"61489":-1,"61490":-1,"61491":-1,"61492":-1,"61493":-1,"61494":-1,"61495":-1,"61496":2682,"61497":-1,"61498":2682,"61499":-1,"61500":-1,"61501":0,"61502":-1,"61503":2684,"61504":-1,"61505":-1,"61506":-1,"61507":-1,"61508":-1,"61509":-1,"61510":-1,"61511":-1,"61512":-1,"61513":-1,"61514":-1,"61515":-1,"61516":2687,"61517":-1,"61518":-1,"61519":0,"61520":0,"61521":-1,"61522":-1,"61523":-1,"61524":-1,"61525":-1,"61526":-1,"61527":-1,"61528":-1,"61529":-1,"61530":-1,"61531":-1,"61532":-1,"61533":-1,"61534":-1,"61535":-1,"61536":-1,"61537":-1,"61538":2685,"61539":-1,"61540":-1,"61541":-1,"61542":-1,"61543":-1,"61544":-1,"61545":-1,"61546":-1,"61547":-1,"61548":2686,"61549":-1,"61550":-1,"61551":2682,"61552":-1,"61553":2685,"61554":2683,"61555":-1,"61556":-1,"61557":-1,"61558":-1,"61559":-1,"61560":-1,"61561":-1,"61562":2682,"61563":-1,"61564":-1,"61565":-1,"61566":-1,"61567":-1,"61568":-1,"61569":-1,"61570":-1,"61571":2685,"61572":-1,"61573":-1,"61574":-1,"61575":2684,"61576":-1,"61577":-1,"61578":-1,"61579":-1,"61580":-1,"61581":-1,"61582":-1,"61583":2684,"61584":-1,"61585":-1,"61586":-1,"61587":-1,"61588":-1,"61589":-1,"61590":2683,"61591":-1,"61592":-1,"61593":-1,"61594":-1,"61595":-1,"61596":2684,"61597":2685,"61598":-1,"61599":-1,"61600":-1,"61601":-1,"61602":-1,"61603":-1,"61604":-1,"61605":-1,"61606":2685,"61607":-1,"61608":-1,"61609":-1,"61610":-1,"61611":-1,"61612":-1,"61613":-1,"61614":-1,"61615":-1,"61616":-1,"61617":-1,"61618":-1,"61619":-1,"61620":-1,"61621":-1,"61622":-1,"61623":-1,"61624":-1,"61625":-1,"61626":-1,"61627":-1,"61628":-1,"61629":-1,"61630":-1,"61631":-1,"61632":2685,"61633":2685,"61634":-1,"61635":2686,"61636":-1,"61637":2685,"61638":-1,"61639":-1,"61640":2685,"61641":-1,"61642":-1,"61643":0,"61644":-1,"61645":-1,"61646":-1,"61647":-1,"61648":-1,"61649":-1,"61650":-1,"61651":-1,"61652":-1,"61653":-1,"61654":-1,"61655":-1,"61656":-1,"61657":-1,"61658":-1,"61659":2684,"61660":-1,"61661":-1,"61662":0,"61663":-1,"61664":-1,"61665":2687,"61666":2685,"61667":-1,"61668":-1,"61669":-1,"61670":-1,"61671":-1,"61672":-1,"61673":-1,"61674":2684,"61675":-1,"61676":-1,"61677":-1,"61678":-1,"61679":-1,"61680":-1,"61681":-1,"61682":-1,"61683":-1,"61684":-1,"61685":-1,"61686":-1,"61687":-1,"61688":2683,"61689":-1,"61690":-1,"61691":-1,"61692":-1,"61693":-1,"61694":-1,"61695":-1,"61696":2684,"61697":-1,"61698":-1,"61699":-1,"61700":2684,"61701":-1,"61702":-1,"61703":-1,"61704":-1,"61705":-1,"61706":-1,"61707":-1,"61708":-1,"61709":-1,"61710":2682,"61711":-1,"61712":-1,"61713":-1,"61714":-1,"61715":-1,"61716":-1,"61717":-1,"61718":2682,"61719":-1,"61720":-1,"61721":-1,"61722":-1,"61723":-1,"61724":-1,"61725":-1,"61726":-1,"61727":-1,"61728":-1,"61729":-1,"61730":-1,"61731":-1,"61732":2684,"61733":-1,"61734":2685,"61735":2684,"61736":-1,"61737":-1,"61738":-1,"61739":-1,"61740":-1,"61741":-1,"61742":-1,"61743":-1,"61744":-1,"61745":2684,"61746":-1,"61747":-1,"61748":-1,"61749":-1,"61750":2685,"61751":-1,"61752":-1,"61753":-1,"61754":-1,"61755":-1,"61756":2681,"61757":-1,"61758":-1,"61759":-1,"61760":-1,"61761":-1,"61762":-1,"61763":-1,"61764":-1,"61765":-1,"61766":-1,"61767":-1,"61768":2684,"61769":-1,"61770":-1,"61771":2681,"61772":-1,"61773":2687,"61774":-1,"61775":-1,"61776":0,"61777":2683,"61778":-1,"61779":-1,"61780":-1,"61781":2686,"61782":-1,"61783":-1,"61784":-1,"61785":-1,"61786":-1,"61787":-1,"61788":-1,"61789":-1,"61790":-1,"61791":-1,"61792":-1,"61793":-1,"61794":-1,"61795":2685,"61796":-1,"61797":-1,"61798":-1,"61799":-1,"61800":-1,"61801":-1,"61802":-1,"61803":-1,"61804":-1,"61805":-1,"61806":-1,"61807":-1,"61808":-1,"61809":-1,"61810":-1,"61811":-1,"61812":-1,"61813":-1,"61814":-1,"61815":-1,"61816":-1,"61817":-1,"61818":-1,"61819":-1,"61820":-1,"61821":-1,"61822":-1,"61823":-1,"61824":-1,"61825":-1,"61826":-1,"61827":-1,"61828":-1,"61829":-1,"61830":-1,"61831":-1,"61832":-1,"61833":-1,"61834":-1,"61835":0,"61836":-1,"61837":-1,"61838":-1,"61839":-1,"61840":-1,"61841":-1,"61842":-1,"61843":2684,"61844":-1,"61845":2685,"61846":-1,"61847":-1,"61848":-1,"61849":-1,"61850":-1,"61851":-1,"61852":0,"61853":-1,"61854":-1,"61855":-1,"61856":-1,"61857":-1,"61858":-1,"61859":-1,"61860":-1,"61861":-1,"61862":-1,"61863":-1,"61864":-1,"61865":-1,"61866":-1,"61867":-1,"61868":0,"61869":-1,"61870":-1,"61871":-1,"61872":-1,"61873":-1,"61874":-1,"61875":-1,"61876":-1,"61877":-1,"61878":-1,"61879":-1,"61880":2684,"61881":-1,"61882":-1,"61883":-1,"61884":-1,"61885":-1,"61886":2684,"61887":-1,"61888":-1,"61889":-1,"61890":-1,"61891":-1,"61892":-1,"61893":2685,"61894":-1,"61895":-1,"61896":-1,"61897":-1,"61898":-1,"61899":-1,"61900":2683,"61901":-1,"61902":-1,"61903":2685,"61904":-1,"61905":-1,"61906":-1,"61907":-1,"61908":-1,"61909":-1,"61910":-1,"61911":-1,"61912":-1,"61913":-1,"61914":-1,"61915":-1,"61916":-1,"61917":-1,"61918":-1,"61919":0,"61920":-1,"61921":-1,"61922":-1,"61923":-1,"61924":-1,"61925":-1,"61926":-1,"61927":-1,"61928":-1,"61929":-1,"61930":-1,"61931":-1,"61932":-1,"61933":-1,"61934":-1,"61935":-1,"61936":-1,"61937":2681,"61938":-1,"61939":-1,"61940":-1,"61941":-1,"61942":-1,"61943":2685,"61944":-1,"61945":2686,"61946":-1,"61947":-1,"61948":-1,"61949":-1,"61950":-1,"61951":0,"61952":-1,"61953":-1,"61954":-1,"61955":-1,"61956":-1,"61957":0,"61958":-1,"61959":-1,"61960":-1,"61961":-1,"61962":-1,"61963":2681,"61964":2686,"61965":-1,"61966":-1,"61967":-1,"61968":-1,"61969":-1,"61970":2686,"61971":-1,"61972":-1,"61973":-1,"61974":-1,"61975":-1,"61976":-1,"61977":-1,"61978":-1,"61979":0,"61980":2682,"61981":-1,"61982":-1,"61983":-1,"61984":-1,"61985":-1,"61986":0,"61987":-1,"61988":-1,"61989":2686,"61990":-1,"61991":-1,"61992":-1,"61993":2685,"61994":2683,"61995":-1,"61996":-1,"61997":-1,"61998":-1,"61999":-1,"62000":-1,"62001":-1,"62002":-1,"62003":-1,"62004":-1,"62005":-1,"62006":-1,"62007":2686,"62008":-1,"62009":-1,"62010":-1,"62011":-1,"62012":-1,"62013":-1,"62014":-1,"62015":2685,"62016":-1,"62017":-1,"62018":-1,"62019":-1,"62020":-1,"62021":-1,"62022":-1,"62023":0,"62024":-1,"62025":-1,"62026":2683,"62027":2682,"62028":-1,"62029":2685,"62030":-1,"62031":-1,"62032":-1,"62033":-1,"62034":-1,"62035":-1,"62036":-1,"62037":-1,"62038":0,"62039":-1,"62040":2687,"62041":2683,"62042":0,"62043":-1,"62044":2682,"62045":-1,"62046":-1,"62047":-1,"62048":-1,"62049":2684,"62050":-1,"62051":-1,"62052":-1,"62053":2685,"62054":-1,"62055":-1,"62056":-1,"62057":-1,"62058":-1,"62059":-1,"62060":-1,"62061":-1,"62062":-1,"62063":-1,"62064":-1,"62065":-1,"62066":-1,"62067":-1,"62068":2687,"62069":-1,"62070":2682,"62071":2685,"62072":-1,"62073":2682,"62074":-1,"62075":-1,"62076":2684,"62077":-1,"62078":-1,"62079":-1,"62080":-1,"62081":-1,"62082":-1,"62083":-1,"62084":2682,"62085":-1,"62086":-1,"62087":-1,"62088":-1,"62089":0,"62090":-1,"62091":-1,"62092":-1,"62093":-1,"62094":-1,"62095":-1,"62096":-1,"62097":-1,"62098":-1,"62099":-1,"62100":-1,"62101":-1,"62102":2687,"62103":-1,"62104":-1,"62105":-1,"62106":-1,"62107":2687,"62108":0,"62109":-1,"62110":-1,"62111":-1,"62112":-1,"62113":-1,"62114":-1,"62115":-1,"62116":-1,"62117":-1,"62118":2686,"62119":-1,"62120":-1,"62121":-1,"62122":-1,"62123":-1,"62124":-1,"62125":-1,"62126":-1,"62127":-1,"62128":2683,"62129":-1,"62130":-1,"62131":-1,"62132":-1,"62133":-1,"62134":-1,"62135":-1,"62136":-1,"62137":-1,"62138":-1,"62139":-1,"62140":-1,"62141":-1,"62142":-1,"62143":-1,"62144":-1,"62145":-1,"62146":-1,"62147":-1,"62148":0,"62149":-1,"62150":-1,"62151":-1,"62152":-1,"62153":2682,"62154":-1,"62155":2683,"62156":-1,"62157":-1,"62158":-1,"62159":2681,"62160":-1,"62161":-1,"62162":-1,"62163":-1,"62164":-1,"62165":-1,"62166":-1,"62167":-1,"62168":-1,"62169":-1,"62170":2682,"62171":-1,"62172":-1,"62173":-1,"62174":2682,"62175":-1,"62176":0,"62177":-1,"62178":-1,"62179":-1,"62180":-1,"62181":-1,"62182":-1,"62183":-1,"62184":-1,"62185":-1,"62186":-1,"62187":-1,"62188":-1,"62189":-1,"62190":-1,"62191":-1,"62192":-1,"62193":-1,"62194":-1,"62195":-1,"62196":-1,"62197":-1,"62198":-1,"62199":2684,"62200":-1,"62201":-1,"62202":2684,"62203":-1,"62204":-1,"62205":-1,"62206":-1,"62207":-1,"62208":2683,"62209":-1,"62210":-1,"62211":-1,"62212":2687,"62213":-1,"62214":-1,"62215":-1,"62216":-1,"62217":-1,"62218":-1,"62219":-1,"62220":-1,"62221":-1,"62222":-1,"62223":2684,"62224":-1,"62225":-1,"62226":-1,"62227":2681,"62228":-1,"62229":2687,"62230":-1,"62231":-1,"62232":-1,"62233":-1,"62234":-1,"62235":-1,"62236":-1,"62237":2681,"62238":-1,"62239":-1,"62240":-1,"62241":0,"62242":2685,"62243":-1,"62244":2684,"62245":-1,"62246":2683,"62247":-1,"62248":-1,"62249":-1,"62250":-1,"62251":-1,"62252":-1,"62253":-1,"62254":-1,"62255":-1,"62256":-1,"62257":-1,"62258":0,"62259":-1,"62260":-1,"62261":-1,"62262":-1,"62263":-1,"62264":-1,"62265":-1,"62266":-1,"62267":-1,"62268":2686,"62269":-1,"62270":-1,"62271":-1,"62272":-1,"62273":-1,"62274":-1,"62275":-1,"62276":2686,"62277":-1,"62278":-1,"62279":-1,"62280":-1,"62281":-1,"62282":2685,"62283":-1,"62284":-1,"62285":-1,"62286":-1,"62287":-1,"62288":-1,"62289":-1,"62290":-1,"62291":-1,"62292":-1,"62293":-1,"62294":-1,"62295":-1,"62296":0,"62297":-1,"62298":-1,"62299":-1,"62300":-1,"62301":-1,"62302":-1,"62303":2682,"62304":-1,"62305":-1,"62306":-1,"62307":2682,"62308":-1,"62309":2683,"62310":-1,"62311":-1,"62312":-1,"62313":-1,"62314":2684,"62315":-1,"62316":-1,"62317":-1,"62318":-1,"62319":-1,"62320":-1,"62321":2683,"62322":0,"62323":-1,"62324":-1,"62325":-1,"62326":-1,"62327":-1,"62328":-1,"62329":-1,"62330":2682,"62331":2684,"62332":-1,"62333":-1,"62334":-1,"62335":-1,"62336":0,"62337":-1,"62338":-1,"62339":-1,"62340":-1,"62341":-1,"62342":-1,"62343":-1,"62344":-1,"62345":-1,"62346":-1,"62347":-1,"62348":-1,"62349":-1,"62350":-1,"62351":-1,"62352":-1,"62353":-1,"62354":-1,"62355":-1,"62356":-1,"62357":-1,"62358":-1,"62359":-1,"62360":-1,"62361":-1,"62362":-1,"62363":-1,"62364":-1,"62365":-1,"62366":-1,"62367":-1,"62368":2685,"62369":-1,"62370":-1,"62371":2685,"62372":-1,"62373":-1,"62374":-1,"62375":-1,"62376":2687,"62377":-1,"62378":-1,"62379":-1,"62380":-1,"62381":-1,"62382":-1,"62383":-1,"62384":-1,"62385":-1,"62386":-1,"62387":-1,"62388":-1,"62389":-1,"62390":-1,"62391":-1,"62392":-1,"62393":-1,"62394":-1,"62395":-1,"62396":-1,"62397":-1,"62398":-1,"62399":-1,"62400":-1,"62401":-1,"62402":2685,"62403":-1,"62404":-1,"62405":-1,"62406":2681,"62407":-1,"62408":-1,"62409":-1,"62410":-1,"62411":-1,"62412":2684,"62413":-1,"62414":2684,"62415":-1,"62416":-1,"62417":-1,"62418":-1,"62419":-1,"62420":-1,"62421":-1,"62422":2686,"62423":-1,"62424":-1,"62425":2684,"62426":-1,"62427":-1,"62428":2685,"62429":0,"62430":-1,"62431":-1,"62432":-1,"62433":0,"62434":-1,"62435":-1,"62436":-1,"62437":-1,"62438":-1,"62439":-1,"62440":-1,"62441":-1,"62442":-1,"62443":-1,"62444":2683,"62445":-1,"62446":-1,"62447":-1,"62448":-1,"62449":0,"62450":-1,"62451":-1,"62452":-1,"62453":0,"62454":-1,"62455":-1,"62456":-1,"62457":-1,"62458":-1,"62459":-1,"62460":-1,"62461":-1,"62462":-1,"62463":0,"62464":-1,"62465":-1,"62466":-1,"62467":-1,"62468":0,"62469":-1,"62470":0,"62471":-1,"62472":-1,"62473":-1,"62474":-1,"62475":-1,"62476":-1,"62477":-1,"62478":-1,"62479":-1,"62480":-1,"62481":-1,"62482":-1,"62483":-1,"62484":-1,"62485":2686,"62486":-1,"62487":-1,"62488":-1,"62489":-1,"62490":-1,"62491":-1,"62492":-1,"62493":-1,"62494":0,"62495":-1,"62496":-1,"62497":-1,"62498":2684,"62499":-1,"62500":-1,"62501":-1,"62502":-1,"62503":-1,"62504":-1,"62505":-1,"62506":-1,"62507":-1,"62508":-1,"62509":-1,"62510":-1,"62511":-1,"62512":0,"62513":-1,"62514":-1,"62515":-1,"62516":-1,"62517":-1,"62518":-1,"62519":2685,"62520":-1,"62521":-1,"62522":-1,"62523":-1,"62524":-1,"62525":-1,"62526":-1,"62527":-1,"62528":-1,"62529":-1,"62530":-1,"62531":-1,"62532":-1,"62533":-1,"62534":-1,"62535":-1,"62536":-1,"62537":2687,"62538":-1,"62539":2686,"62540":-1,"62541":-1,"62542":-1,"62543":-1,"62544":-1,"62545":0,"62546":-1,"62547":-1,"62548":-1,"62549":-1,"62550":-1,"62551":-1,"62552":-1,"62553":-1,"62554":-1,"62555":2682,"62556":-1,"62557":-1,"62558":-1,"62559":-1,"62560":-1,"62561":-1,"62562":-1,"62563":-1,"62564":-1,"62565":0,"62566":-1,"62567":-1,"62568":-1,"62569":0,"62570":-1,"62571":-1,"62572":2683,"62573":-1,"62574":0,"62575":-1,"62576":-1,"62577":-1,"62578":-1,"62579":0,"62580":-1,"62581":-1,"62582":-1,"62583":-1,"62584":-1,"62585":-1,"62586":-1,"62587":-1,"62588":-1,"62589":-1,"62590":-1,"62591":-1,"62592":2686,"62593":-1,"62594":0,"62595":-1,"62596":-1,"62597":-1,"62598":-1,"62599":-1,"62600":-1,"62601":-1,"62602":-1,"62603":-1,"62604":-1,"62605":-1,"62606":-1,"62607":-1,"62608":-1,"62609":-1,"62610":-1,"62611":-1,"62612":-1,"62613":-1,"62614":-1,"62615":0,"62616":2686,"62617":-1,"62618":-1,"62619":-1,"62620":-1,"62621":2681,"62622":-1,"62623":-1,"62624":2684,"62625":-1,"62626":-1,"62627":-1,"62628":-1,"62629":-1,"62630":-1,"62631":-1,"62632":-1,"62633":-1,"62634":-1,"62635":-1,"62636":0,"62637":-1,"62638":-1,"62639":-1,"62640":2687,"62641":-1,"62642":-1,"62643":-1,"62644":-1,"62645":-1,"62646":-1,"62647":-1,"62648":-1,"62649":-1,"62650":-1,"62651":-1,"62652":-1,"62653":-1,"62654":-1,"62655":-1,"62656":-1,"62657":2685,"62658":0,"62659":2682,"62660":-1,"62661":-1,"62662":2686,"62663":-1,"62664":-1,"62665":-1,"62666":-1,"62667":-1,"62668":-1,"62669":2683,"62670":-1,"62671":-1,"62672":-1,"62673":-1,"62674":-1,"62675":-1,"62676":-1,"62677":-1,"62678":-1,"62679":-1,"62680":2682,"62681":-1,"62682":-1,"62683":-1,"62684":-1,"62685":2687,"62686":-1,"62687":-1,"62688":-1,"62689":-1,"62690":-1,"62691":0,"62692":-1,"62693":-1,"62694":-1,"62695":-1,"62696":-1,"62697":-1,"62698":-1,"62699":-1,"62700":-1,"62701":2684,"62702":-1,"62703":-1,"62704":-1,"62705":2681,"62706":-1,"62707":-1,"62708":2686,"62709":-1,"62710":-1,"62711":-1,"62712":2682,"62713":2683,"62714":2681,"62715":-1,"62716":2684,"62717":2685,"62718":-1,"62719":-1,"62720":-1,"62721":-1,"62722":-1,"62723":-1,"62724":-1,"62725":-1,"62726":0,"62727":-1,"62728":-1,"62729":-1,"62730":-1,"62731":-1,"62732":-1,"62733":-1,"62734":2686,"62735":-1,"62736":-1,"62737":-1,"62738":-1,"62739":-1,"62740":-1,"62741":-1,"62742":-1,"62743":-1,"62744":-1,"62745":0,"62746":-1,"62747":-1,"62748":-1,"62749":-1,"62750":-1,"62751":-1,"62752":2685,"62753":-1,"62754":-1,"62755":-1,"62756":-1,"62757":-1,"62758":-1,"62759":2685,"62760":-1,"62761":-1,"62762":-1,"62763":-1,"62764":-1,"62765":2684,"62766":2683,"62767":-1,"62768":-1,"62769":2681,"62770":2686,"62771":-1,"62772":-1,"62773":-1,"62774":-1,"62775":-1,"62776":-1,"62777":-1,"62778":-1,"62779":-1,"62780":2681,"62781":-1,"62782":-1,"62783":-1,"62784":-1,"62785":-1,"62786":-1,"62787":-1,"62788":-1,"62789":-1,"62790":-1,"62791":-1,"62792":-1,"62793":2686,"62794":-1,"62795":-1,"62796":-1,"62797":-1,"62798":-1,"62799":-1,"62800":-1,"62801":-1,"62802":-1,"62803":-1,"62804":-1,"62805":-1,"62806":-1,"62807":-1,"62808":-1,"62809":-1,"62810":-1,"62811":-1,"62812":-1,"62813":-1,"62814":2684,"62815":-1,"62816":2683,"62817":2683,"62818":-1,"62819":-1,"62820":-1,"62821":-1,"62822":-1,"62823":2682,"62824":-1,"62825":-1,"62826":-1,"62827":-1,"62828":-1,"62829":-1,"62830":-1,"62831":-1,"62832":2685,"62833":-1,"62834":-1,"62835":-1,"62836":0,"62837":-1,"62838":2686,"62839":-1,"62840":-1,"62841":-1,"62842":-1,"62843":2686,"62844":-1,"62845":2682,"62846":-1,"62847":-1,"62848":2681,"62849":-1,"62850":-1,"62851":-1,"62852":-1,"62853":-1,"62854":-1,"62855":-1,"62856":-1,"62857":-1,"62858":-1,"62859":-1,"62860":-1,"62861":-1,"62862":-1,"62863":-1,"62864":-1,"62865":-1,"62866":-1,"62867":-1,"62868":-1,"62869":-1,"62870":2682,"62871":-1,"62872":2685,"62873":-1,"62874":-1,"62875":-1,"62876":2683,"62877":-1,"62878":-1,"62879":-1,"62880":-1,"62881":-1,"62882":-1,"62883":-1,"62884":-1,"62885":-1,"62886":-1,"62887":2682,"62888":-1,"62889":-1,"62890":2682,"62891":-1,"62892":-1,"62893":2685,"62894":2683,"62895":-1,"62896":-1,"62897":-1,"62898":2685,"62899":-1,"62900":-1,"62901":-1,"62902":-1,"62903":-1,"62904":-1,"62905":-1,"62906":2686,"62907":-1,"62908":-1,"62909":-1,"62910":-1,"62911":-1,"62912":-1,"62913":-1,"62914":-1,"62915":-1,"62916":-1,"62917":-1,"62918":-1,"62919":0,"62920":-1,"62921":-1,"62922":-1,"62923":-1,"62924":-1,"62925":2687,"62926":-1,"62927":-1,"62928":-1,"62929":-1,"62930":2682,"62931":2683,"62932":-1,"62933":-1,"62934":-1,"62935":-1,"62936":2685,"62937":-1,"62938":-1,"62939":-1,"62940":0,"62941":-1,"62942":-1,"62943":-1,"62944":-1,"62945":-1,"62946":-1,"62947":-1,"62948":-1,"62949":-1,"62950":-1,"62951":-1,"62952":-1,"62953":-1,"62954":0,"62955":-1,"62956":-1,"62957":-1,"62958":-1,"62959":-1,"62960":-1,"62961":-1,"62962":-1,"62963":-1,"62964":-1,"62965":-1,"62966":-1,"62967":-1,"62968":-1,"62969":-1,"62970":-1,"62971":-1,"62972":-1,"62973":2684,"62974":0,"62975":-1,"62976":0,"62977":-1,"62978":-1,"62979":-1,"62980":2685,"62981":-1,"62982":0,"62983":-1,"62984":-1,"62985":-1,"62986":-1,"62987":-1,"62988":-1,"62989":-1,"62990":-1,"62991":-1,"62992":0,"62993":-1,"62994":-1,"62995":-1,"62996":-1,"62997":-1,"62998":-1,"62999":-1,"63000":-1,"63001":2687,"63002":-1,"63003":2685,"63004":-1,"63005":-1,"63006":-1,"63007":-1,"63008":-1,"63009":-1,"63010":-1,"63011":0,"63012":-1,"63013":2682,"63014":-1,"63015":-1,"63016":-1,"63017":-1,"63018":-1,"63019":-1,"63020":2683,"63021":2683,"63022":-1,"63023":-1,"63024":-1,"63025":-1,"63026":-1,"63027":-1,"63028":2681,"63029":2684,"63030":2683,"63031":-1,"63032":-1,"63033":-1,"63034":-1,"63035":-1,"63036":-1,"63037":0,"63038":0,"63039":-1,"63040":-1,"63041":-1,"63042":-1,"63043":2686,"63044":-1,"63045":-1,"63046":-1,"63047":2683,"63048":-1,"63049":-1,"63050":-1,"63051":-1,"63052":2683,"63053":2685,"63054":-1,"63055":0,"63056":-1,"63057":2682,"63058":-1,"63059":-1,"63060":-1,"63061":-1,"63062":-1,"63063":-1,"63064":-1,"63065":-1,"63066":-1,"63067":-1,"63068":-1,"63069":-1,"63070":-1,"63071":-1,"63072":-1,"63073":-1,"63074":-1,"63075":-1,"63076":2682,"63077":2683,"63078":-1,"63079":-1,"63080":-1,"63081":-1,"63082":-1,"63083":-1,"63084":-1,"63085":-1,"63086":-1,"63087":-1,"63088":-1,"63089":-1,"63090":-1,"63091":-1,"63092":-1,"63093":-1,"63094":-1,"63095":-1,"63096":-1,"63097":-1,"63098":-1,"63099":-1,"63100":-1,"63101":2683,"63102":-1,"63103":-1,"63104":-1,"63105":-1,"63106":2686,"63107":-1,"63108":-1,"63109":-1,"63110":-1,"63111":-1,"63112":2683,"63113":-1,"63114":-1,"63115":-1,"63116":-1,"63117":-1,"63118":-1,"63119":-1,"63120":-1,"63121":2683,"63122":-1,"63123":2687,"63124":0,"63125":-1,"63126":-1,"63127":0,"63128":0,"63129":2686,"63130":-1,"63131":-1,"63132":2683,"63133":-1,"63134":-1,"63135":-1,"63136":-1,"63137":-1,"63138":-1,"63139":-1,"63140":-1,"63141":-1,"63142":-1,"63143":-1,"63144":-1,"63145":-1,"63146":-1,"63147":-1,"63148":-1,"63149":-1,"63150":2686,"63151":-1,"63152":-1,"63153":-1,"63154":0,"63155":-1,"63156":-1,"63157":-1,"63158":-1,"63159":2682,"63160":-1,"63161":-1,"63162":-1,"63163":0,"63164":2686,"63165":2686,"63166":-1,"63167":-1,"63168":-1,"63169":-1,"63170":-1,"63171":2685,"63172":-1,"63173":-1,"63174":-1,"63175":-1,"63176":2686,"63177":-1,"63178":-1,"63179":-1,"63180":-1,"63181":-1,"63182":-1,"63183":-1,"63184":0,"63185":-1,"63186":-1,"63187":-1,"63188":-1,"63189":-1,"63190":-1,"63191":-1,"63192":0,"63193":-1,"63194":-1,"63195":2686,"63196":-1,"63197":-1,"63198":-1,"63199":-1,"63200":2685,"63201":-1,"63202":-1,"63203":2681,"63204":-1,"63205":-1,"63206":2684,"63207":-1,"63208":-1,"63209":-1,"63210":-1,"63211":2685,"63212":-1,"63213":-1,"63214":-1,"63215":-1,"63216":-1,"63217":0,"63218":-1,"63219":-1,"63220":-1,"63221":-1,"63222":-1,"63223":-1,"63224":-1,"63225":-1,"63226":-1,"63227":-1,"63228":-1,"63229":-1,"63230":-1,"63231":-1,"63232":-1,"63233":-1,"63234":0,"63235":-1,"63236":-1,"63237":-1,"63238":2683,"63239":-1,"63240":-1,"63241":-1,"63242":-1,"63243":-1,"63244":-1,"63245":-1,"63246":-1,"63247":-1,"63248":-1,"63249":-1,"63250":-1,"63251":2683,"63252":-1,"63253":-1,"63254":-1,"63255":-1,"63256":0,"63257":-1,"63258":-1,"63259":-1,"63260":-1,"63261":-1,"63262":-1,"63263":-1,"63264":0,"63265":-1,"63266":-1,"63267":-1,"63268":-1,"63269":-1,"63270":-1,"63271":-1,"63272":-1,"63273":-1,"63274":-1,"63275":-1,"63276":-1,"63277":2682,"63278":-1,"63279":-1,"63280":-1,"63281":-1,"63282":-1,"63283":-1,"63284":-1,"63285":-1,"63286":-1,"63287":-1,"63288":-1,"63289":-1,"63290":-1,"63291":-1,"63292":2685,"63293":-1,"63294":-1,"63295":-1,"63296":-1,"63297":-1,"63298":-1,"63299":-1,"63300":-1,"63301":-1,"63302":-1,"63303":-1,"63304":-1,"63305":-1,"63306":2681,"63307":-1,"63308":-1,"63309":-1,"63310":-1,"63311":-1,"63312":-1,"63313":-1,"63314":-1,"63315":-1,"63316":-1,"63317":-1,"63318":-1,"63319":-1,"63320":-1,"63321":2684,"63322":-1,"63323":2687,"63324":-1,"63325":-1,"63326":-1,"63327":-1,"63328":-1,"63329":0,"63330":-1,"63331":-1,"63332":-1,"63333":2681,"63334":-1,"63335":2682,"63336":-1,"63337":-1,"63338":-1,"63339":-1,"63340":-1,"63341":-1,"63342":2683,"63343":-1,"63344":-1,"63345":-1,"63346":-1,"63347":-1,"63348":-1,"63349":-1,"63350":-1,"63351":-1,"63352":2682,"63353":-1,"63354":-1,"63355":-1,"63356":-1,"63357":-1,"63358":-1,"63359":-1,"63360":-1,"63361":-1,"63362":-1,"63363":-1,"63364":-1,"63365":2686,"63366":-1,"63367":-1,"63368":2682,"63369":-1,"63370":-1,"63371":-1,"63372":-1,"63373":-1,"63374":-1,"63375":-1,"63376":2686,"63377":2683,"63378":-1,"63379":-1,"63380":0,"63381":2685,"63382":-1,"63383":-1,"63384":0,"63385":-1,"63386":2685,"63387":-1,"63388":-1,"63389":-1,"63390":-1,"63391":2681,"63392":-1,"63393":-1,"63394":0,"63395":2682,"63396":-1,"63397":-1,"63398":-1,"63399":-1,"63400":-1,"63401":2683,"63402":-1,"63403":-1,"63404":-1,"63405":-1,"63406":0,"63407":2681,"63408":-1,"63409":-1,"63410":-1,"63411":-1,"63412":-1,"63413":-1,"63414":-1,"63415":-1,"63416":-1,"63417":-1,"63418":-1,"63419":-1,"63420":-1,"63421":-1,"63422":2686,"63423":-1,"63424":-1,"63425":0,"63426":-1,"63427":-1,"63428":-1,"63429":-1,"63430":-1,"63431":0,"63432":2686,"63433":2681,"63434":-1,"63435":-1,"63436":2683,"63437":-1,"63438":-1,"63439":-1,"63440":-1,"63441":-1,"63442":-1,"63443":2685,"63444":-1,"63445":-1,"63446":-1,"63447":-1,"63448":-1,"63449":-1,"63450":-1,"63451":2684,"63452":-1,"63453":-1,"63454":2683,"63455":2683,"63456":-1,"63457":-1,"63458":-1,"63459":-1,"63460":-1,"63461":-1,"63462":-1,"63463":-1,"63464":-1,"63465":-1,"63466":-1,"63467":-1,"63468":-1,"63469":-1,"63470":-1,"63471":-1,"63472":2683,"63473":-1,"63474":-1,"63475":-1,"63476":-1,"63477":0,"63478":-1,"63479":-1,"63480":-1,"63481":-1,"63482":-1,"63483":-1,"63484":-1,"63485":-1,"63486":-1,"63487":-1,"63488":-1,"63489":-1,"63490":2683,"63491":-1,"63492":-1,"63493":-1,"63494":-1,"63495":-1,"63496":-1,"63497":-1,"63498":2682,"63499":-1,"63500":-1,"63501":2682,"63502":2682,"63503":-1,"63504":-1,"63505":-1,"63506":-1,"63507":-1,"63508":-1,"63509":-1,"63510":-1,"63511":-1,"63512":-1,"63513":-1,"63514":0,"63515":-1,"63516":-1,"63517":-1,"63518":-1,"63519":-1,"63520":-1,"63521":2683,"63522":-1,"63523":-1,"63524":-1,"63525":-1,"63526":-1,"63527":-1,"63528":-1,"63529":0,"63530":-1,"63531":-1,"63532":-1,"63533":-1,"63534":-1,"63535":-1,"63536":-1,"63537":-1,"63538":-1,"63539":-1,"63540":-1,"63541":-1,"63542":-1,"63543":-1,"63544":-1,"63545":-1,"63546":-1,"63547":-1,"63548":0,"63549":-1,"63550":-1,"63551":-1,"63552":-1,"63553":-1,"63554":2687,"63555":-1,"63556":-1,"63557":-1,"63558":-1,"63559":-1,"63560":2681,"63561":-1,"63562":-1,"63563":-1,"63564":-1,"63565":-1,"63566":-1,"63567":-1,"63568":-1,"63569":0,"63570":-1,"63571":-1,"63572":-1,"63573":0,"63574":-1,"63575":-1,"63576":-1,"63577":-1,"63578":-1,"63579":-1,"63580":-1,"63581":2681,"63582":-1,"63583":-1,"63584":-1,"63585":-1,"63586":-1,"63587":-1,"63588":-1,"63589":-1,"63590":0,"63591":-1,"63592":-1,"63593":-1,"63594":-1,"63595":-1,"63596":-1,"63597":-1,"63598":-1,"63599":-1,"63600":-1,"63601":2684,"63602":-1,"63603":-1,"63604":2684,"63605":-1,"63606":-1,"63607":2685,"63608":-1,"63609":-1,"63610":-1,"63611":-1,"63612":-1,"63613":-1,"63614":-1,"63615":-1,"63616":-1,"63617":-1,"63618":-1,"63619":-1,"63620":-1,"63621":2685,"63622":-1,"63623":-1,"63624":-1,"63625":-1,"63626":2683,"63627":-1,"63628":-1,"63629":-1,"63630":-1,"63631":-1,"63632":-1,"63633":-1,"63634":-1,"63635":-1,"63636":2681,"63637":-1,"63638":-1,"63639":-1,"63640":-1,"63641":-1,"63642":-1,"63643":-1,"63644":-1,"63645":2683,"63646":-1,"63647":-1,"63648":0,"63649":0,"63650":-1,"63651":-1,"63652":-1,"63653":2684,"63654":-1,"63655":-1,"63656":-1,"63657":-1,"63658":-1,"63659":-1,"63660":-1,"63661":-1,"63662":2681,"63663":-1,"63664":-1,"63665":-1,"63666":-1,"63667":-1,"63668":-1,"63669":-1,"63670":-1,"63671":-1,"63672":-1,"63673":-1,"63674":-1,"63675":-1,"63676":-1,"63677":2685,"63678":-1,"63679":2684,"63680":2686,"63681":-1,"63682":-1,"63683":-1,"63684":-1,"63685":-1,"63686":-1,"63687":2686,"63688":-1,"63689":-1,"63690":2685,"63691":-1,"63692":-1,"63693":-1,"63694":-1,"63695":-1,"63696":-1,"63697":-1,"63698":-1,"63699":2685,"63700":-1,"63701":-1,"63702":-1,"63703":-1,"63704":-1,"63705":-1,"63706":-1,"63707":-1,"63708":-1,"63709":-1,"63710":-1,"63711":-1,"63712":-1,"63713":-1,"63714":-1,"63715":-1,"63716":-1,"63717":2683,"63718":-1,"63719":2682,"63720":-1,"63721":-1,"63722":-1,"63723":-1,"63724":2683,"63725":-1,"63726":-1,"63727":-1,"63728":-1,"63729":-1,"63730":2683,"63731":-1,"63732":-1,"63733":-1,"63734":-1,"63735":-1,"63736":-1,"63737":-1,"63738":-1,"63739":-1,"63740":-1,"63741":-1,"63742":-1,"63743":-1,"63744":0,"63745":-1,"63746":-1,"63747":-1,"63748":-1,"63749":-1,"63750":-1,"63751":-1,"63752":-1,"63753":2686,"63754":-1,"63755":-1,"63756":-1,"63757":-1,"63758":-1,"63759":-1,"63760":-1,"63761":-1,"63762":-1,"63763":-1,"63764":-1,"63765":-1,"63766":-1,"63767":2686,"63768":-1,"63769":-1,"63770":-1,"63771":-1,"63772":-1,"63773":-1,"63774":-1,"63775":-1,"63776":-1,"63777":-1,"63778":-1,"63779":-1,"63780":-1,"63781":-1,"63782":-1,"63783":-1,"63784":2682,"63785":-1,"63786":-1,"63787":2683,"63788":-1,"63789":-1,"63790":-1,"63791":-1,"63792":-1,"63793":2682,"63794":0,"63795":-1,"63796":-1,"63797":-1,"63798":2682,"63799":-1,"63800":2681,"63801":-1,"63802":2683,"63803":-1,"63804":0,"63805":-1,"63806":-1,"63807":-1,"63808":0,"63809":-1,"63810":-1,"63811":-1,"63812":-1,"63813":-1,"63814":-1,"63815":-1,"63816":-1,"63817":-1,"63818":-1,"63819":-1,"63820":-1,"63821":-1,"63822":-1,"63823":-1,"63824":-1,"63825":0,"63826":-1,"63827":-1,"63828":-1,"63829":2686,"63830":-1,"63831":-1,"63832":-1,"63833":-1,"63834":-1,"63835":-1,"63836":2685,"63837":-1,"63838":-1,"63839":-1,"63840":-1,"63841":-1,"63842":-1,"63843":-1,"63844":-1,"63845":-1,"63846":-1,"63847":-1,"63848":-1,"63849":-1,"63850":-1,"63851":2684,"63852":-1,"63853":-1,"63854":-1,"63855":-1,"63856":-1,"63857":-1,"63858":-1,"63859":-1,"63860":2686,"63861":-1,"63862":-1,"63863":-1,"63864":-1,"63865":-1,"63866":-1,"63867":-1,"63868":-1,"63869":-1,"63870":-1,"63871":-1,"63872":-1,"63873":-1,"63874":-1,"63875":-1,"63876":-1,"63877":-1,"63878":2683,"63879":-1,"63880":-1,"63881":-1,"63882":-1,"63883":-1,"63884":-1,"63885":2682,"63886":-1,"63887":0,"63888":-1,"63889":-1,"63890":2687,"63891":-1,"63892":-1,"63893":-1,"63894":-1,"63895":-1,"63896":2681,"63897":-1,"63898":-1,"63899":-1,"63900":-1,"63901":2684,"63902":-1,"63903":-1,"63904":-1,"63905":-1,"63906":-1,"63907":-1,"63908":2687,"63909":-1,"63910":-1,"63911":-1,"63912":-1,"63913":-1,"63914":-1,"63915":-1,"63916":-1,"63917":-1,"63918":-1,"63919":-1,"63920":-1,"63921":-1,"63922":-1,"63923":-1,"63924":2682,"63925":-1,"63926":-1,"63927":-1,"63928":-1,"63929":-1,"63930":0,"63931":-1,"63932":-1,"63933":-1,"63934":-1,"63935":-1,"63936":2685,"63937":-1,"63938":-1,"63939":-1,"63940":2682,"63941":-1,"63942":2682,"63943":-1,"63944":-1,"63945":-1,"63946":-1,"63947":-1,"63948":-1,"63949":-1,"63950":2682,"63951":-1,"63952":-1,"63953":2683,"63954":-1,"63955":-1,"63956":-1,"63957":-1,"63958":-1,"63959":-1,"63960":-1,"63961":-1,"63962":-1,"63963":-1,"63964":-1,"63965":-1,"63966":-1,"63967":-1,"63968":-1,"63969":2682,"63970":-1,"63971":-1,"63972":-1,"63973":-1,"63974":0,"63975":-1,"63976":-1,"63977":2684,"63978":-1,"63979":-1,"63980":-1,"63981":-1,"63982":-1,"63983":-1,"63984":-1,"63985":-1,"63986":-1,"63987":-1,"63988":-1,"63989":2682,"63990":-1,"63991":-1,"63992":2684,"63993":-1,"63994":-1,"63995":2685,"63996":-1,"63997":-1,"63998":-1,"63999":0,"64000":-1,"64001":-1,"64002":-1,"64003":-1,"64004":-1,"64005":-1,"64006":2681,"64007":-1,"64008":-1,"64009":2685,"64010":-1,"64011":-1,"64012":-1,"64013":-1,"64014":-1,"64015":-1,"64016":-1,"64017":-1,"64018":-1,"64019":2683,"64020":-1,"64021":-1,"64022":-1,"64023":-1,"64024":2683,"64025":-1,"64026":-1,"64027":-1,"64028":-1,"64029":-1,"64030":-1,"64031":-1,"64032":-1,"64033":-1,"64034":-1,"64035":2684,"64036":-1,"64037":-1,"64038":-1,"64039":0,"64040":-1,"64041":-1,"64042":-1,"64043":-1,"64044":-1,"64045":-1,"64046":2686,"64047":-1,"64048":2682,"64049":2681,"64050":2685,"64051":-1,"64052":-1,"64053":2686,"64054":-1,"64055":-1,"64056":-1,"64057":-1,"64058":2683,"64059":2684,"64060":-1,"64061":-1,"64062":2686,"64063":-1,"64064":-1,"64065":-1,"64066":-1,"64067":-1,"64068":-1,"64069":-1,"64070":-1,"64071":-1,"64072":-1,"64073":-1,"64074":-1,"64075":-1,"64076":2683,"64077":-1,"64078":-1,"64079":-1,"64080":-1,"64081":-1,"64082":-1,"64083":-1,"64084":-1,"64085":-1,"64086":-1,"64087":-1,"64088":-1,"64089":-1,"64090":-1,"64091":-1,"64092":-1,"64093":-1,"64094":-1,"64095":-1,"64096":-1,"64097":-1,"64098":-1,"64099":-1,"64100":-1,"64101":-1,"64102":-1,"64103":-1,"64104":-1,"64105":-1,"64106":-1,"64107":-1,"64108":-1,"64109":-1,"64110":-1,"64111":-1,"64112":-1,"64113":0,"64114":2682,"64115":2685,"64116":-1,"64117":-1,"64118":-1,"64119":-1,"64120":-1,"64121":-1,"64122":-1,"64123":2682,"64124":-1,"64125":-1,"64126":-1,"64127":-1,"64128":-1,"64129":-1,"64130":-1,"64131":-1,"64132":-1,"64133":-1,"64134":-1,"64135":-1,"64136":-1,"64137":-1,"64138":-1,"64139":-1,"64140":-1,"64141":-1,"64142":-1,"64143":-1,"64144":-1,"64145":-1,"64146":-1,"64147":-1,"64148":2686,"64149":-1,"64150":-1,"64151":-1,"64152":-1,"64153":-1,"64154":2681,"64155":-1,"64156":-1,"64157":-1,"64158":-1,"64159":-1,"64160":-1,"64161":-1,"64162":-1,"64163":-1,"64164":-1,"64165":-1,"64166":-1,"64167":-1,"64168":-1,"64169":2684,"64170":-1,"64171":-1,"64172":-1,"64173":-1,"64174":0,"64175":-1,"64176":-1,"64177":-1,"64178":-1,"64179":-1,"64180":-1,"64181":-1,"64182":-1,"64183":-1,"64184":-1,"64185":-1,"64186":2684,"64187":-1,"64188":-1,"64189":-1,"64190":-1,"64191":-1,"64192":2685,"64193":-1,"64194":2683,"64195":-1,"64196":-1,"64197":-1,"64198":-1,"64199":-1,"64200":-1,"64201":2686,"64202":-1,"64203":-1,"64204":-1,"64205":-1,"64206":-1,"64207":-1,"64208":-1,"64209":-1,"64210":-1,"64211":-1,"64212":-1,"64213":-1,"64214":-1,"64215":-1,"64216":2685,"64217":-1,"64218":2681,"64219":-1,"64220":-1,"64221":-1,"64222":-1,"64223":-1,"64224":0,"64225":-1,"64226":-1,"64227":2685,"64228":-1,"64229":-1,"64230":2683,"64231":-1,"64232":-1,"64233":-1,"64234":-1,"64235":-1,"64236":-1,"64237":-1,"64238":-1,"64239":-1,"64240":-1,"64241":-1,"64242":-1,"64243":-1,"64244":-1,"64245":-1,"64246":-1,"64247":2687,"64248":-1,"64249":-1,"64250":0,"64251":-1,"64252":-1,"64253":-1,"64254":-1,"64255":-1,"64256":-1,"64257":-1,"64258":-1,"64259":-1,"64260":-1,"64261":-1,"64262":-1,"64263":-1,"64264":-1,"64265":-1,"64266":-1,"64267":0,"64268":2685,"64269":-1,"64270":2683,"64271":-1,"64272":-1,"64273":-1,"64274":-1,"64275":-1,"64276":0,"64277":-1,"64278":-1,"64279":-1,"64280":-1,"64281":-1,"64282":-1,"64283":-1,"64284":-1,"64285":-1,"64286":-1,"64287":2684,"64288":-1,"64289":-1,"64290":-1,"64291":-1,"64292":-1,"64293":-1,"64294":-1,"64295":2687,"64296":-1,"64297":-1,"64298":2686,"64299":-1,"64300":-1,"64301":2685,"64302":-1,"64303":-1,"64304":-1,"64305":-1,"64306":-1,"64307":-1,"64308":0,"64309":-1,"64310":-1,"64311":-1,"64312":-1,"64313":-1,"64314":0,"64315":-1,"64316":2681,"64317":-1,"64318":-1,"64319":2681,"64320":-1,"64321":-1,"64322":-1,"64323":-1,"64324":-1,"64325":-1,"64326":-1,"64327":-1,"64328":-1,"64329":-1,"64330":-1,"64331":-1,"64332":-1,"64333":-1,"64334":-1,"64335":2682,"64336":-1,"64337":-1,"64338":-1,"64339":-1,"64340":-1,"64341":-1,"64342":-1,"64343":-1,"64344":-1,"64345":-1,"64346":-1,"64347":-1,"64348":-1,"64349":2685,"64350":-1,"64351":-1,"64352":-1,"64353":-1,"64354":-1,"64355":-1,"64356":-1,"64357":-1,"64358":-1,"64359":-1,"64360":-1,"64361":-1,"64362":-1,"64363":-1,"64364":-1,"64365":-1,"64366":-1,"64367":-1,"64368":-1,"64369":-1,"64370":-1,"64371":-1,"64372":-1,"64373":-1,"64374":-1,"64375":-1,"64376":0,"64377":-1,"64378":-1,"64379":-1,"64380":-1,"64381":-1,"64382":-1,"64383":-1,"64384":-1,"64385":-1,"64386":2683,"64387":-1,"64388":-1,"64389":-1,"64390":-1,"64391":-1,"64392":2682,"64393":-1,"64394":-1,"64395":-1,"64396":-1,"64397":-1,"64398":-1,"64399":-1,"64400":-1,"64401":-1,"64402":-1,"64403":-1,"64404":-1,"64405":-1,"64406":-1,"64407":-1,"64408":2682,"64409":-1,"64410":-1,"64411":-1,"64412":-1,"64413":-1,"64414":2683,"64415":-1,"64416":-1,"64417":-1,"64418":-1,"64419":-1,"64420":-1,"64421":-1,"64422":-1,"64423":-1,"64424":-1,"64425":-1,"64426":-1,"64427":-1,"64428":-1,"64429":-1,"64430":-1,"64431":-1,"64432":-1,"64433":-1,"64434":-1,"64435":0,"64436":2683,"64437":-1,"64438":-1,"64439":-1,"64440":-1,"64441":-1,"64442":-1,"64443":-1,"64444":-1,"64445":-1,"64446":-1,"64447":-1,"64448":-1,"64449":-1,"64450":2686,"64451":-1,"64452":-1,"64453":-1,"64454":-1,"64455":-1,"64456":-1,"64457":2682,"64458":2687,"64459":2683,"64460":-1,"64461":2685,"64462":-1,"64463":-1,"64464":-1,"64465":-1,"64466":-1,"64467":-1,"64468":-1,"64469":-1,"64470":-1,"64471":-1,"64472":-1,"64473":-1,"64474":2682,"64475":-1,"64476":2687,"64477":-1,"64478":-1,"64479":-1,"64480":-1,"64481":2681,"64482":-1,"64483":-1,"64484":-1,"64485":-1,"64486":-1,"64487":2683,"64488":-1,"64489":-1,"64490":-1,"64491":-1,"64492":-1,"64493":-1,"64494":-1,"64495":-1,"64496":2682,"64497":-1,"64498":-1,"64499":-1,"64500":-1,"64501":0,"64502":-1,"64503":-1,"64504":-1,"64505":-1,"64506":-1,"64507":-1,"64508":2683,"64509":-1,"64510":-1,"64511":-1,"64512":2682,"64513":-1,"64514":-1,"64515":-1,"64516":-1,"64517":-1,"64518":-1,"64519":2684,"64520":-1,"64521":-1,"64522":-1,"64523":-1,"64524":-1,"64525":-1,"64526":-1,"64527":-1,"64528":-1,"64529":-1,"64530":0,"64531":-1,"64532":-1,"64533":-1,"64534":-1,"64535":-1,"64536":-1,"64537":-1,"64538":-1,"64539":-1,"64540":-1,"64541":-1,"64542":-1,"64543":-1,"64544":-1,"64545":-1,"64546":-1,"64547":2686,"64548":-1,"64549":-1,"64550":2685,"64551":-1,"64552":-1,"64553":-1,"64554":-1,"64555":-1,"64556":-1,"64557":-1,"64558":-1,"64559":-1,"64560":-1,"64561":-1,"64562":-1,"64563":-1,"64564":-1,"64565":-1,"64566":2681,"64567":-1,"64568":-1,"64569":-1,"64570":-1,"64571":-1,"64572":-1,"64573":-1,"64574":-1,"64575":-1,"64576":-1,"64577":2687,"64578":-1,"64579":-1,"64580":-1,"64581":-1,"64582":2683,"64583":-1,"64584":-1,"64585":-1,"64586":-1,"64587":-1,"64588":-1,"64589":-1,"64590":2686,"64591":-1,"64592":-1,"64593":2684,"64594":-1,"64595":-1,"64596":-1,"64597":-1,"64598":-1,"64599":-1,"64600":0,"64601":-1,"64602":-1,"64603":2682,"64604":0,"64605":-1,"64606":-1,"64607":0,"64608":-1,"64609":-1,"64610":-1,"64611":-1,"64612":-1,"64613":-1,"64614":-1,"64615":-1,"64616":0,"64617":-1,"64618":-1,"64619":-1,"64620":-1,"64621":-1,"64622":-1,"64623":-1,"64624":-1,"64625":-1,"64626":-1,"64627":-1,"64628":-1,"64629":2682,"64630":-1,"64631":-1,"64632":-1,"64633":2685,"64634":-1,"64635":-1,"64636":2683,"64637":-1,"64638":-1,"64639":-1,"64640":-1,"64641":2683,"64642":-1,"64643":0,"64644":-1,"64645":-1,"64646":0,"64647":-1,"64648":2685,"64649":2685,"64650":-1,"64651":2687,"64652":2684,"64653":-1,"64654":2684,"64655":-1,"64656":-1,"64657":-1,"64658":-1,"64659":-1,"64660":-1,"64661":-1,"64662":-1,"64663":2686,"64664":-1,"64665":-1,"64666":-1,"64667":-1,"64668":-1,"64669":-1,"64670":-1,"64671":-1,"64672":-1,"64673":-1,"64674":-1,"64675":-1,"64676":-1,"64677":-1,"64678":-1,"64679":-1,"64680":-1,"64681":-1,"64682":-1,"64683":0,"64684":-1,"64685":-1,"64686":-1,"64687":-1,"64688":-1,"64689":-1,"64690":-1,"64691":-1,"64692":-1,"64693":-1,"64694":-1,"64695":-1,"64696":-1,"64697":2682,"64698":-1,"64699":2683,"64700":-1,"64701":-1,"64702":-1,"64703":-1,"64704":-1,"64705":-1,"64706":-1,"64707":-1,"64708":2681,"64709":-1,"64710":-1,"64711":-1,"64712":-1,"64713":2682,"64714":-1,"64715":-1,"64716":-1,"64717":2687,"64718":-1,"64719":-1,"64720":-1,"64721":-1,"64722":-1,"64723":-1,"64724":-1,"64725":-1,"64726":-1,"64727":-1,"64728":-1,"64729":-1,"64730":-1,"64731":-1,"64732":2686,"64733":-1,"64734":-1,"64735":-1,"64736":-1,"64737":-1,"64738":-1,"64739":-1,"64740":-1,"64741":-1,"64742":-1,"64743":-1,"64744":2686,"64745":-1,"64746":-1,"64747":-1,"64748":2685,"64749":-1,"64750":-1,"64751":-1,"64752":-1,"64753":-1,"64754":-1,"64755":-1,"64756":-1,"64757":-1,"64758":-1,"64759":-1,"64760":0,"64761":-1,"64762":-1,"64763":-1,"64764":-1,"64765":-1,"64766":-1,"64767":-1,"64768":-1,"64769":-1,"64770":-1,"64771":-1,"64772":-1,"64773":-1,"64774":-1,"64775":-1,"64776":-1,"64777":-1,"64778":-1,"64779":-1,"64780":-1,"64781":2684,"64782":-1,"64783":-1,"64784":2683,"64785":2681,"64786":-1,"64787":-1,"64788":-1,"64789":2687,"64790":-1,"64791":-1,"64792":-1,"64793":-1,"64794":0,"64795":-1,"64796":-1,"64797":-1,"64798":-1,"64799":-1,"64800":-1,"64801":-1,"64802":2685,"64803":-1,"64804":-1,"64805":-1,"64806":-1,"64807":-1,"64808":2683,"64809":-1,"64810":-1,"64811":-1,"64812":-1,"64813":0,"64814":2684,"64815":-1,"64816":-1,"64817":-1,"64818":-1,"64819":-1,"64820":2686,"64821":-1,"64822":-1,"64823":-1,"64824":2681,"64825":-1,"64826":-1,"64827":-1,"64828":-1,"64829":-1,"64830":-1,"64831":-1,"64832":-1,"64833":-1,"64834":-1,"64835":-1,"64836":-1,"64837":-1,"64838":-1,"64839":2682,"64840":-1,"64841":-1,"64842":-1,"64843":-1,"64844":-1,"64845":-1,"64846":2683,"64847":-1,"64848":-1,"64849":-1,"64850":-1,"64851":-1,"64852":-1,"64853":-1,"64854":-1,"64855":2681,"64856":-1,"64857":2685,"64858":2683,"64859":2681,"64860":-1,"64861":-1,"64862":-1,"64863":-1,"64864":-1,"64865":-1,"64866":-1,"64867":-1,"64868":-1,"64869":-1,"64870":-1,"64871":2681,"64872":-1,"64873":-1,"64874":-1,"64875":-1,"64876":-1,"64877":-1,"64878":-1,"64879":-1,"64880":0,"64881":-1,"64882":-1,"64883":-1,"64884":2687,"64885":-1,"64886":2687,"64887":-1,"64888":2684,"64889":0,"64890":2684,"64891":-1,"64892":-1,"64893":-1,"64894":-1,"64895":-1,"64896":-1,"64897":-1,"64898":-1,"64899":-1,"64900":2683,"64901":-1,"64902":-1,"64903":-1,"64904":-1,"64905":2685,"64906":-1,"64907":-1,"64908":-1,"64909":-1,"64910":-1,"64911":-1,"64912":-1,"64913":-1,"64914":-1,"64915":2684,"64916":2684,"64917":-1,"64918":-1,"64919":-1,"64920":2686,"64921":-1,"64922":2685,"64923":2685,"64924":-1,"64925":-1,"64926":-1,"64927":-1,"64928":-1,"64929":-1,"64930":-1,"64931":-1,"64932":-1,"64933":0,"64934":-1,"64935":-1,"64936":-1,"64937":-1,"64938":2685,"64939":-1,"64940":-1,"64941":2685,"64942":2684,"64943":-1,"64944":-1,"64945":2685,"64946":-1,"64947":-1,"64948":-1,"64949":-1,"64950":-1,"64951":2686,"64952":-1,"64953":-1,"64954":-1,"64955":-1,"64956":-1,"64957":-1,"64958":-1,"64959":-1,"64960":-1,"64961":-1,"64962":2683,"64963":-1,"64964":-1,"64965":-1,"64966":-1,"64967":-1,"64968":-1,"64969":-1,"64970":-1,"64971":-1,"64972":-1,"64973":-1,"64974":-1,"64975":-1,"64976":-1,"64977":2683,"64978":-1,"64979":2685,"64980":-1,"64981":-1,"64982":-1,"64983":-1,"64984":-1,"64985":-1,"64986":-1,"64987":-1,"64988":-1,"64989":-1,"64990":-1,"64991":-1,"64992":-1,"64993":-1,"64994":-1,"64995":-1,"64996":-1,"64997":-1,"64998":0,"64999":2681,"65000":-1,"65001":-1,"65002":2681,"65003":-1,"65004":-1,"65005":2682,"65006":2687,"65007":-1,"65008":-1,"65009":-1,"65010":2682,"65011":-1,"65012":-1,"65013":-1,"65014":-1,"65015":-1,"65016":2686,"65017":0,"65018":-1,"65019":-1,"65020":-1,"65021":-1,"65022":-1,"65023":-1,"65024":-1,"65025":-1,"65026":-1,"65027":-1,"65028":2681,"65029":2686,"65030":-1,"65031":-1,"65032":-1,"65033":-1,"65034":-1,"65035":-1,"65036":-1,"65037":-1,"65038":2683,"65039":-1,"65040":-1,"65041":-1,"65042":-1,"65043":-1,"65044":-1,"65045":-1,"65046":-1,"65047":-1,"65048":-1,"65049":-1,"65050":-1,"65051":-1,"65052":-1,"65053":-1,"65054":2687,"65055":-1,"65056":2684,"65057":-1,"65058":2685,"65059":-1,"65060":2683,"65061":-1,"65062":-1,"65063":-1,"65064":-1,"65065":-1,"65066":-1,"65067":-1,"65068":-1,"65069":0,"65070":-1,"65071":-1,"65072":-1,"65073":-1,"65074":-1,"65075":-1,"65076":-1,"65077":-1,"65078":-1,"65079":2686,"65080":-1,"65081":-1,"65082":-1,"65083":-1,"65084":-1,"65085":-1,"65086":-1,"65087":-1,"65088":-1,"65089":-1,"65090":-1,"65091":-1,"65092":-1,"65093":-1,"65094":-1,"65095":-1,"65096":-1,"65097":-1,"65098":-1,"65099":-1,"65100":-1,"65101":-1,"65102":-1,"65103":2682,"65104":-1,"65105":-1,"65106":-1,"65107":-1,"65108":-1,"65109":-1,"65110":-1,"65111":-1,"65112":-1,"65113":2687,"65114":-1,"65115":-1,"65116":2686,"65117":-1,"65118":-1,"65119":-1,"65120":2682,"65121":-1,"65122":2682,"65123":-1,"65124":-1,"65125":-1,"65126":-1,"65127":2682,"65128":-1,"65129":-1,"65130":-1,"65131":-1,"65132":2683,"65133":-1,"65134":-1,"65135":2687,"65136":-1,"65137":-1,"65138":-1,"65139":-1,"65140":-1,"65141":-1,"65142":-1,"65143":-1,"65144":-1,"65145":-1,"65146":-1,"65147":-1,"65148":-1,"65149":2687,"65150":-1,"65151":2685,"65152":2686,"65153":-1,"65154":-1,"65155":-1,"65156":-1,"65157":-1,"65158":-1,"65159":-1,"65160":-1,"65161":-1,"65162":-1,"65163":-1,"65164":-1,"65165":-1,"65166":-1,"65167":-1,"65168":2683,"65169":-1,"65170":-1,"65171":-1,"65172":-1,"65173":2683,"65174":-1,"65175":-1,"65176":2683,"65177":-1,"65178":-1,"65179":-1,"65180":-1,"65181":-1,"65182":2683,"65183":2684,"65184":-1,"65185":-1,"65186":-1,"65187":-1,"65188":-1,"65189":-1,"65190":2682,"65191":-1,"65192":-1,"65193":-1,"65194":-1,"65195":-1,"65196":-1,"65197":-1,"65198":-1,"65199":-1,"65200":-1,"65201":-1,"65202":-1,"65203":-1,"65204":2684,"65205":-1,"65206":-1,"65207":-1,"65208":-1,"65209":-1,"65210":-1,"65211":-1,"65212":-1,"65213":-1,"65214":-1,"65215":2684,"65216":-1,"65217":-1,"65218":2687,"65219":-1,"65220":-1,"65221":-1,"65222":-1,"65223":2686,"65224":0,"65225":-1,"65226":-1,"65227":-1,"65228":-1,"65229":2686,"65230":-1,"65231":-1,"65232":-1,"65233":-1,"65234":-1,"65235":2683,"65236":-1,"65237":-1,"65238":-1,"65239":-1,"65240":-1,"65241":-1,"65242":-1,"65243":2682,"65244":2682,"65245":-1,"65246":-1,"65247":2686,"65248":-1,"65249":-1,"65250":-1,"65251":-1,"65252":-1,"65253":-1,"65254":-1,"65255":-1,"65256":-1,"65257":-1,"65258":-1,"65259":-1,"65260":-1,"65261":2686,"65262":-1,"65263":-1,"65264":-1,"65265":-1,"65266":-1,"65267":-1,"65268":-1,"65269":-1,"65270":2683,"65271":-1,"65272":-1,"65273":-1,"65274":-1,"65275":-1,"65276":-1,"65277":-1,"65278":-1,"65279":-1,"65280":-1,"65281":-1,"65282":0,"65283":-1,"65284":2683,"65285":-1,"65286":2687,"65287":-1,"65288":-1,"65289":-1,"65290":-1,"65291":-1,"65292":-1,"65293":-1,"65294":-1,"65295":-1,"65296":-1,"65297":-1,"65298":-1,"65299":-1,"65300":-1,"65301":0,"65302":2685,"65303":-1,"65304":-1,"65305":-1,"65306":-1,"65307":-1,"65308":-1,"65309":-1,"65310":-1,"65311":-1,"65312":-1,"65313":-1,"65314":-1,"65315":-1,"65316":-1,"65317":0,"65318":0,"65319":-1,"65320":-1,"65321":-1,"65322":-1,"65323":-1,"65324":-1,"65325":0,"65326":-1,"65327":-1,"65328":-1,"65329":-1,"65330":0,"65331":-1,"65332":-1,"65333":-1,"65334":-1,"65335":-1,"65336":-1,"65337":-1,"65338":-1,"65339":-1,"65340":2683,"65341":-1,"65342":-1,"65343":-1,"65344":2684,"65345":-1,"65346":-1,"65347":-1,"65348":2684,"65349":-1,"65350":-1,"65351":-1,"65352":-1,"65353":-1,"65354":-1,"65355":-1,"65356":-1,"65357":-1,"65358":-1,"65359":-1,"65360":-1,"65361":-1,"65362":2681,"65363":-1,"65364":-1,"65365":-1,"65366":-1,"65367":-1,"65368":-1,"65369":0,"65370":-1,"65371":-1,"65372":-1,"65373":2686,"65374":-1,"65375":0,"65376":-1,"65377":-1,"65378":2683,"65379":2686,"65380":-1,"65381":-1,"65382":-1,"65383":-1,"65384":-1,"65385":-1,"65386":2685,"65387":-1,"65388":-1,"65389":-1,"65390":-1,"65391":-1,"65392":-1,"65393":-1,"65394":-1,"65395":-1,"65396":-1,"65397":-1,"65398":-1,"65399":2682,"65400":-1,"65401":-1,"65402":-1,"65403":-1,"65404":-1,"65405":-1,"65406":-1,"65407":-1,"65408":-1,"65409":-1,"65410":-1,"65411":-1,"65412":-1,"65413":-1,"65414":-1,"65415":-1,"65416":-1,"65417":-1,"65418":2685,"65419":-1,"65420":-1,"65421":-1,"65422":-1,"65423":-1,"65424":-1,"65425":-1,"65426":2687,"65427":-1,"65428":-1,"65429":2685,"65430":-1,"65431":-1,"65432":-1,"65433":-1,"65434":-1,"65435":-1,"65436":-1,"65437":-1,"65438":-1,"65439":-1,"65440":-1,"65441":2682,"65442":-1,"65443":0,"65444":-1,"65445":-1,"65446":-1,"65447":-1,"65448":-1,"65449":-1,"65450":-1,"65451":0,"65452":-1,"65453":-1,"65454":2683,"65455":-1,"65456":-1,"65457":-1,"65458":-1,"65459":-1,"65460":2682,"65461":2684,"65462":-1,"65463":-1,"65464":-1,"65465":-1,"65466":-1,"65467":-1,"65468":-1,"65469":-1,"65470":-1,"65471":-1,"65472":-1,"65473":-1,"65474":-1,"65475":-1,"65476":-1,"65477":-1,"65478":-1,"65479":0,"65480":-1,"65481":-1,"65482":-1,"65483":-1,"65484":-1,"65485":-1,"65486":-1,"65487":-1,"65488":-1,"65489":2682,"65490":2682,"65491":-1,"65492":-1,"65493":2685,"65494":-1,"65495":-1,"65496":2683,"65497":-1,"65498":0,"65499":-1,"65500":-1,"65501":-1,"65502":-1,"65503":-1,"65504":-1,"65505":-1,"65506":2685,"65507":-1,"65508":-1,"65509":-1,"65510":-1,"65511":2687,"65512":-1,"65513":-1,"65514":-1,"65515":-1,"65516":2684,"65517":-1,"65518":-1,"65519":2684,"65520":-1,"65521":-1,"65522":-1,"65523":-1,"65524":-1,"65525":2687,"65526":-1,"65527":-1,"65528":-1,"65529":0,"65530":-1,"65531":-1,"65532":-1,"65533":-1,"65534":-1,"65535":-1,"65536":-1,"65537":-1,"65538":-1,"65539":-1,"65540":-1,"65541":-1,"65542":-1,"65543":-1,"65544":-1,"65545":-1,"65546":-1,"65547":-1,"65548":2683,"65549":-1,"65550":-1,"65551":-1,"65552":-1,"65553":-1,"65554":-1,"65555":-1,"65556":-1,"65557":-1,"65558":2687,"65559":-1,"65560":-1,"65561":-1,"65562":-1,"65563":-1,"65564":2684,"65565":2686,"65566":-1,"65567":-1,"65568":-1,"65569":-1,"65570":-1,"65571":-1,"65572":2686,"65573":-1,"65574":-1,"65575":2685,"65576":-1,"65577":-1,"65578":-1,"65579":2681,"65580":-1,"65581":-1,"65582":-1,"65583":-1,"65584":-1,"65585":-1,"65586":-1,"65587":-1,"65588":-1,"65589":-1,"65590":2683,"65591":2683,"65592":-1,"65593":-1,"65594":-1,"65595":-1,"65596":-1,"65597":-1,"65598":-1,"65599":-1,"65600":-1,"65601":-1,"65602":-1,"65603":-1,"65604":-1,"65605":-1,"65606":2684,"65607":-1,"65608":-1,"65609":-1,"65610":-1,"65611":2684,"65612":-1,"65613":-1,"65614":-1,"65615":-1,"65616":-1,"65617":-1,"65618":-1,"65619":-1,"65620":-1,"65621":-1,"65622":-1,"65623":-1,"65624":-1,"65625":-1,"65626":-1,"65627":2685,"65628":2687,"65629":-1,"65630":2682,"65631":-1,"65632":-1,"65633":-1,"65634":-1,"65635":-1,"65636":-1,"65637":-1,"65638":-1,"65639":2683,"65640":-1,"65641":-1,"65642":-1,"65643":-1,"65644":2684,"65645":2683,"65646":-1,"65647":-1,"65648":-1,"65649":-1,"65650":-1,"65651":-1,"65652":-1,"65653":-1,"65654":2686,"65655":-1,"65656":0,"65657":-1,"65658":-1,"65659":-1,"65660":0,"65661":2686,"65662":2687,"65663":2682,"65664":-1,"65665":-1,"65666":2685,"65667":0,"65668":2684,"65669":-1,"65670":-1,"65671":-1,"65672":-1,"65673":-1,"65674":2682,"65675":-1,"65676":-1,"65677":-1,"65678":-1,"65679":-1,"65680":-1,"65681":-1,"65682":-1,"65683":-1,"65684":-1,"65685":-1,"65686":-1,"65687":2683,"65688":-1,"65689":0,"65690":0,"65691":-1,"65692":-1,"65693":-1,"65694":-1,"65695":-1,"65696":-1,"65697":-1,"65698":-1,"65699":-1,"65700":-1,"65701":-1,"65702":-1,"65703":2685,"65704":-1,"65705":-1,"65706":-1,"65707":-1,"65708":-1,"65709":-1,"65710":-1,"65711":-1,"65712":-1,"65713":-1,"65714":-1,"65715":-1,"65716":2686,"65717":-1,"65718":-1,"65719":-1,"65720":-1,"65721":-1,"65722":-1,"65723":-1,"65724":2687,"65725":-1,"65726":-1,"65727":-1,"65728":2682,"65729":-1,"65730":2685,"65731":-1,"65732":-1,"65733":-1,"65734":2681,"65735":-1,"65736":2683,"65737":-1,"65738":-1,"65739":-1,"65740":-1,"65741":-1,"65742":-1,"65743":2684,"65744":-1,"65745":-1,"65746":-1,"65747":-1,"65748":-1,"65749":-1,"65750":-1,"65751":-1,"65752":2686,"65753":-1,"65754":-1,"65755":-1,"65756":-1,"65757":-1,"65758":2683,"65759":-1,"65760":-1,"65761":-1,"65762":-1,"65763":-1,"65764":2682,"65765":-1,"65766":-1,"65767":-1,"65768":-1,"65769":-1,"65770":-1,"65771":-1,"65772":-1,"65773":-1,"65774":-1,"65775":-1,"65776":-1,"65777":-1,"65778":-1,"65779":-1,"65780":-1,"65781":-1,"65782":-1,"65783":-1,"65784":-1,"65785":-1,"65786":-1,"65787":2683,"65788":-1,"65789":-1,"65790":-1,"65791":2684,"65792":-1,"65793":-1,"65794":0,"65795":2683,"65796":-1,"65797":-1,"65798":-1,"65799":-1,"65800":-1,"65801":-1,"65802":-1,"65803":-1,"65804":-1,"65805":-1,"65806":-1,"65807":-1,"65808":-1,"65809":-1,"65810":-1,"65811":-1,"65812":-1,"65813":-1,"65814":-1,"65815":-1,"65816":-1,"65817":-1,"65818":-1,"65819":-1,"65820":-1,"65821":-1,"65822":-1,"65823":-1,"65824":-1,"65825":-1,"65826":-1,"65827":-1,"65828":-1,"65829":-1,"65830":-1,"65831":-1,"65832":-1,"65833":2685,"65834":-1,"65835":-1,"65836":-1,"65837":-1,"65838":-1,"65839":-1,"65840":2684,"65841":2687,"65842":-1,"65843":-1,"65844":-1,"65845":0,"65846":2685,"65847":-1,"65848":-1,"65849":-1,"65850":-1,"65851":-1,"65852":-1,"65853":-1,"65854":-1,"65855":-1,"65856":-1,"65857":-1,"65858":-1,"65859":-1,"65860":-1,"65861":-1,"65862":-1,"65863":-1,"65864":-1,"65865":2681,"65866":-1,"65867":-1,"65868":-1,"65869":-1,"65870":-1,"65871":-1,"65872":-1,"65873":-1,"65874":-1,"65875":-1,"65876":-1,"65877":-1,"65878":-1,"65879":2686,"65880":2682,"65881":2686,"65882":-1,"65883":-1,"65884":-1,"65885":-1,"65886":-1,"65887":-1,"65888":-1,"65889":2684,"65890":0,"65891":-1,"65892":-1,"65893":-1,"65894":0,"65895":-1,"65896":-1,"65897":-1,"65898":-1,"65899":-1,"65900":-1,"65901":2682,"65902":-1,"65903":-1,"65904":2684,"65905":-1,"65906":-1,"65907":-1,"65908":-1,"65909":2686,"65910":-1,"65911":-1,"65912":-1,"65913":-1,"65914":-1,"65915":-1,"65916":-1,"65917":-1,"65918":-1,"65919":2685,"65920":2681,"65921":-1,"65922":-1,"65923":2684,"65924":2683,"65925":-1,"65926":-1,"65927":2682,"65928":-1,"65929":-1,"65930":-1,"65931":-1,"65932":2683,"65933":-1,"65934":2685,"65935":-1,"65936":-1,"65937":-1,"65938":-1,"65939":-1,"65940":-1,"65941":-1,"65942":-1,"65943":-1,"65944":-1,"65945":-1,"65946":-1,"65947":2687,"65948":-1,"65949":-1,"65950":-1,"65951":-1,"65952":-1,"65953":-1,"65954":-1,"65955":-1,"65956":2682,"65957":-1,"65958":-1,"65959":-1,"65960":-1,"65961":2686,"65962":-1,"65963":-1,"65964":-1,"65965":-1,"65966":-1,"65967":-1,"65968":2682,"65969":-1,"65970":-1,"65971":-1,"65972":-1,"65973":-1,"65974":-1,"65975":-1,"65976":-1,"65977":-1,"65978":-1,"65979":-1,"65980":-1,"65981":-1,"65982":-1,"65983":-1,"65984":-1,"65985":2684,"65986":-1,"65987":-1,"65988":-1,"65989":-1,"65990":-1,"65991":-1,"65992":2687,"65993":-1,"65994":2682,"65995":-1,"65996":-1,"65997":2682,"65998":-1,"65999":-1,"66000":-1,"66001":0,"66002":-1,"66003":-1,"66004":-1,"66005":-1,"66006":-1,"66007":0,"66008":-1,"66009":0,"66010":-1,"66011":-1,"66012":-1,"66013":0,"66014":-1,"66015":-1,"66016":-1,"66017":-1,"66018":2683,"66019":-1,"66020":-1,"66021":-1,"66022":-1,"66023":-1,"66024":2684,"66025":-1,"66026":-1,"66027":-1,"66028":-1,"66029":-1,"66030":2682,"66031":-1,"66032":-1,"66033":-1,"66034":-1,"66035":-1,"66036":-1,"66037":2686,"66038":-1,"66039":-1,"66040":2685,"66041":2683,"66042":-1,"66043":-1,"66044":-1,"66045":-1,"66046":2683,"66047":-1,"66048":2685,"66049":-1,"66050":-1,"66051":-1,"66052":-1,"66053":2685,"66054":-1,"66055":-1,"66056":-1,"66057":-1,"66058":-1,"66059":-1,"66060":-1,"66061":-1,"66062":2686,"66063":-1,"66064":-1,"66065":2684,"66066":-1,"66067":-1,"66068":2685,"66069":-1,"66070":-1,"66071":2686,"66072":-1,"66073":2686,"66074":-1,"66075":-1,"66076":-1,"66077":-1,"66078":-1,"66079":-1,"66080":-1,"66081":-1,"66082":2683,"66083":-1,"66084":-1,"66085":-1,"66086":-1,"66087":2684,"66088":-1,"66089":-1,"66090":0,"66091":-1,"66092":-1,"66093":-1,"66094":-1,"66095":-1,"66096":-1,"66097":-1,"66098":2682,"66099":-1,"66100":-1,"66101":0,"66102":-1,"66103":-1,"66104":-1,"66105":0,"66106":-1,"66107":-1,"66108":-1,"66109":-1,"66110":-1,"66111":-1,"66112":-1,"66113":-1,"66114":-1,"66115":-1,"66116":-1,"66117":-1,"66118":-1,"66119":-1,"66120":-1,"66121":-1,"66122":-1,"66123":-1,"66124":-1,"66125":-1,"66126":-1,"66127":-1,"66128":-1,"66129":-1,"66130":-1,"66131":-1,"66132":2687,"66133":-1,"66134":-1,"66135":2684,"66136":-1,"66137":-1,"66138":-1,"66139":-1,"66140":-1,"66141":-1,"66142":-1,"66143":-1,"66144":-1,"66145":-1,"66146":-1,"66147":-1,"66148":-1,"66149":-1,"66150":-1,"66151":-1,"66152":0,"66153":-1,"66154":0,"66155":-1,"66156":-1,"66157":-1,"66158":2682,"66159":-1,"66160":-1,"66161":-1,"66162":-1,"66163":-1,"66164":2686,"66165":-1,"66166":-1,"66167":-1,"66168":2682,"66169":-1,"66170":-1,"66171":-1,"66172":-1,"66173":-1,"66174":-1,"66175":-1,"66176":-1,"66177":-1,"66178":-1,"66179":-1,"66180":-1,"66181":-1,"66182":-1,"66183":-1,"66184":2686,"66185":-1,"66186":-1,"66187":-1,"66188":-1,"66189":-1,"66190":0,"66191":-1,"66192":-1,"66193":-1,"66194":2686,"66195":-1,"66196":-1,"66197":-1,"66198":-1,"66199":-1,"66200":-1,"66201":-1,"66202":-1,"66203":-1,"66204":2682,"66205":-1,"66206":-1,"66207":-1,"66208":-1,"66209":-1,"66210":-1,"66211":-1,"66212":-1,"66213":0,"66214":-1,"66215":-1,"66216":-1,"66217":-1,"66218":-1,"66219":-1,"66220":-1,"66221":-1,"66222":-1,"66223":-1,"66224":-1,"66225":2683,"66226":2686,"66227":-1,"66228":2687,"66229":-1,"66230":-1,"66231":-1,"66232":-1,"66233":2682,"66234":-1,"66235":2686,"66236":-1,"66237":-1,"66238":-1,"66239":-1,"66240":-1,"66241":-1,"66242":-1,"66243":-1,"66244":-1,"66245":-1,"66246":-1,"66247":-1,"66248":2686,"66249":-1,"66250":0,"66251":-1,"66252":2686,"66253":-1,"66254":-1,"66255":2684,"66256":-1,"66257":-1,"66258":-1,"66259":-1,"66260":-1,"66261":-1,"66262":-1,"66263":-1,"66264":-1,"66265":-1,"66266":-1,"66267":-1,"66268":-1,"66269":-1,"66270":2687,"66271":-1,"66272":2686,"66273":2687,"66274":-1,"66275":-1,"66276":-1,"66277":-1,"66278":-1,"66279":-1,"66280":-1,"66281":-1,"66282":-1,"66283":2685,"66284":-1,"66285":-1,"66286":-1,"66287":-1,"66288":-1,"66289":-1,"66290":-1,"66291":-1,"66292":0,"66293":-1,"66294":-1,"66295":-1,"66296":-1,"66297":-1,"66298":-1,"66299":-1,"66300":0,"66301":2684,"66302":-1,"66303":-1,"66304":2682,"66305":-1,"66306":2686,"66307":-1,"66308":-1,"66309":-1,"66310":-1,"66311":-1,"66312":-1,"66313":-1,"66314":-1,"66315":-1,"66316":-1,"66317":-1,"66318":-1,"66319":-1,"66320":-1,"66321":-1,"66322":2681,"66323":-1,"66324":2685,"66325":-1,"66326":-1,"66327":-1,"66328":-1,"66329":-1,"66330":-1,"66331":-1,"66332":-1,"66333":2686,"66334":-1,"66335":-1,"66336":2682,"66337":-1,"66338":-1,"66339":-1,"66340":2685,"66341":-1,"66342":-1,"66343":-1,"66344":-1,"66345":-1,"66346":-1,"66347":-1,"66348":-1,"66349":-1,"66350":-1,"66351":0,"66352":-1,"66353":-1,"66354":-1,"66355":-1,"66356":-1,"66357":-1,"66358":2684,"66359":-1,"66360":-1,"66361":-1,"66362":-1,"66363":-1,"66364":-1,"66365":-1,"66366":-1,"66367":2685,"66368":-1,"66369":-1,"66370":-1,"66371":-1,"66372":-1,"66373":-1,"66374":-1,"66375":-1,"66376":-1,"66377":-1,"66378":-1,"66379":-1,"66380":-1,"66381":2683,"66382":-1,"66383":-1,"66384":-1,"66385":-1,"66386":-1,"66387":-1,"66388":-1,"66389":-1,"66390":-1,"66391":-1,"66392":2686,"66393":-1,"66394":2685,"66395":-1,"66396":-1,"66397":-1,"66398":2684,"66399":-1,"66400":-1,"66401":-1,"66402":-1,"66403":-1,"66404":-1,"66405":-1,"66406":-1,"66407":-1,"66408":-1,"66409":-1,"66410":-1,"66411":-1,"66412":-1,"66413":-1,"66414":-1,"66415":-1,"66416":-1,"66417":-1,"66418":-1,"66419":-1,"66420":-1,"66421":-1,"66422":-1,"66423":-1,"66424":2686,"66425":-1,"66426":-1,"66427":2683,"66428":-1,"66429":-1,"66430":0,"66431":-1,"66432":-1,"66433":-1,"66434":-1,"66435":-1,"66436":-1,"66437":-1,"66438":-1,"66439":-1,"66440":-1,"66441":-1,"66442":-1,"66443":-1,"66444":-1,"66445":-1,"66446":-1,"66447":-1,"66448":-1,"66449":-1,"66450":-1,"66451":-1,"66452":2682,"66453":-1,"66454":2684,"66455":-1,"66456":-1,"66457":-1,"66458":0,"66459":-1,"66460":-1,"66461":-1,"66462":-1,"66463":-1,"66464":-1,"66465":-1,"66466":-1,"66467":-1,"66468":-1,"66469":-1,"66470":-1,"66471":-1,"66472":-1,"66473":-1,"66474":-1,"66475":-1,"66476":-1,"66477":-1,"66478":-1,"66479":-1,"66480":2681,"66481":0,"66482":-1,"66483":-1,"66484":-1,"66485":-1,"66486":-1,"66487":-1,"66488":-1,"66489":-1,"66490":-1,"66491":-1,"66492":-1,"66493":-1,"66494":-1,"66495":-1,"66496":-1,"66497":2685,"66498":2682,"66499":-1,"66500":-1,"66501":-1,"66502":-1,"66503":-1,"66504":-1,"66505":-1,"66506":-1,"66507":-1,"66508":-1,"66509":2682,"66510":-1,"66511":-1,"66512":-1,"66513":2683,"66514":-1,"66515":-1,"66516":-1,"66517":-1,"66518":-1,"66519":-1,"66520":-1,"66521":-1,"66522":-1,"66523":-1,"66524":-1,"66525":-1,"66526":2682,"66527":-1,"66528":-1,"66529":-1,"66530":-1,"66531":-1,"66532":-1,"66533":-1,"66534":-1,"66535":-1,"66536":-1,"66537":-1,"66538":-1,"66539":-1,"66540":2683,"66541":-1,"66542":-1,"66543":-1,"66544":-1,"66545":-1,"66546":-1,"66547":-1,"66548":-1,"66549":-1,"66550":-1,"66551":-1,"66552":-1,"66553":-1,"66554":0,"66555":-1,"66556":-1,"66557":-1,"66558":0,"66559":-1,"66560":-1,"66561":-1,"66562":-1,"66563":-1,"66564":-1,"66565":-1,"66566":-1,"66567":-1,"66568":-1,"66569":-1,"66570":-1,"66571":-1,"66572":-1,"66573":-1,"66574":-1,"66575":-1,"66576":-1,"66577":0,"66578":-1,"66579":0,"66580":-1,"66581":-1,"66582":-1,"66583":-1,"66584":-1,"66585":-1,"66586":-1,"66587":-1,"66588":-1,"66589":-1,"66590":-1,"66591":-1,"66592":-1,"66593":0,"66594":-1,"66595":-1,"66596":-1,"66597":-1,"66598":2682,"66599":-1,"66600":-1,"66601":-1,"66602":-1,"66603":-1,"66604":-1,"66605":-1,"66606":-1,"66607":2685,"66608":-1,"66609":-1,"66610":0,"66611":-1,"66612":2682,"66613":2682,"66614":-1,"66615":-1,"66616":-1,"66617":-1,"66618":-1,"66619":-1,"66620":-1,"66621":-1,"66622":-1,"66623":-1,"66624":-1,"66625":-1,"66626":-1,"66627":-1,"66628":-1,"66629":-1,"66630":2684,"66631":-1,"66632":-1,"66633":-1,"66634":-1,"66635":-1,"66636":-1,"66637":-1,"66638":2682,"66639":-1,"66640":-1,"66641":-1,"66642":2682,"66643":-1,"66644":-1,"66645":-1,"66646":-1,"66647":-1,"66648":-1,"66649":-1,"66650":-1,"66651":-1,"66652":-1,"66653":-1,"66654":-1,"66655":-1,"66656":-1,"66657":2682,"66658":-1,"66659":-1,"66660":-1,"66661":-1,"66662":-1,"66663":2686,"66664":-1,"66665":-1,"66666":-1,"66667":0,"66668":-1,"66669":-1,"66670":2683,"66671":2682,"66672":-1,"66673":-1,"66674":2686,"66675":-1,"66676":-1,"66677":-1,"66678":-1,"66679":-1,"66680":-1,"66681":-1,"66682":-1,"66683":0,"66684":-1,"66685":-1,"66686":-1,"66687":-1,"66688":-1,"66689":-1,"66690":-1,"66691":2683,"66692":-1,"66693":-1,"66694":-1,"66695":-1,"66696":2683,"66697":2684,"66698":0,"66699":-1,"66700":-1,"66701":-1,"66702":-1,"66703":-1,"66704":-1,"66705":-1,"66706":-1,"66707":-1,"66708":-1,"66709":2683,"66710":-1,"66711":-1,"66712":2684,"66713":-1,"66714":-1,"66715":-1,"66716":0,"66717":2684,"66718":-1,"66719":-1,"66720":-1,"66721":-1,"66722":-1,"66723":-1,"66724":-1,"66725":2687,"66726":-1,"66727":-1,"66728":-1,"66729":-1,"66730":-1,"66731":-1,"66732":-1,"66733":-1,"66734":2686,"66735":-1,"66736":-1,"66737":-1,"66738":0,"66739":-1,"66740":-1,"66741":-1,"66742":-1,"66743":0,"66744":-1,"66745":-1,"66746":-1,"66747":-1,"66748":-1,"66749":-1,"66750":-1,"66751":-1,"66752":-1,"66753":-1,"66754":0,"66755":-1,"66756":-1,"66757":-1,"66758":-1,"66759":2685,"66760":-1,"66761":-1,"66762":-1,"66763":-1,"66764":0,"66765":-1,"66766":-1,"66767":-1,"66768":-1,"66769":-1,"66770":-1,"66771":-1,"66772":-1,"66773":-1,"66774":-1,"66775":-1,"66776":2683,"66777":-1,"66778":-1,"66779":2682,"66780":-1,"66781":-1,"66782":0,"66783":-1,"66784":2683,"66785":-1,"66786":-1,"66787":-1,"66788":-1,"66789":-1,"66790":-1,"66791":2682,"66792":-1,"66793":-1,"66794":2683,"66795":2685,"66796":-1,"66797":-1,"66798":-1,"66799":-1,"66800":2681,"66801":-1,"66802":-1,"66803":-1,"66804":-1,"66805":2685,"66806":-1,"66807":2683,"66808":0,"66809":-1,"66810":2684,"66811":2682,"66812":2687,"66813":-1,"66814":-1,"66815":-1,"66816":-1,"66817":-1,"66818":-1,"66819":2686,"66820":-1,"66821":-1,"66822":-1,"66823":-1,"66824":-1,"66825":-1,"66826":-1,"66827":-1,"66828":0,"66829":0,"66830":2684,"66831":-1,"66832":-1,"66833":-1,"66834":-1,"66835":-1,"66836":-1,"66837":0,"66838":-1,"66839":-1,"66840":2686,"66841":2686,"66842":2685,"66843":-1,"66844":-1,"66845":-1,"66846":-1,"66847":-1,"66848":-1,"66849":-1,"66850":-1,"66851":-1,"66852":-1,"66853":-1,"66854":-1,"66855":0,"66856":-1,"66857":-1,"66858":-1,"66859":-1,"66860":-1,"66861":-1,"66862":-1,"66863":-1,"66864":-1,"66865":-1,"66866":-1,"66867":-1,"66868":-1,"66869":-1,"66870":-1,"66871":-1,"66872":-1,"66873":0,"66874":-1,"66875":-1,"66876":-1,"66877":-1,"66878":-1,"66879":2686,"66880":-1,"66881":-1,"66882":-1,"66883":-1,"66884":-1,"66885":-1,"66886":-1,"66887":2682,"66888":-1,"66889":0,"66890":-1,"66891":-1,"66892":-1,"66893":-1,"66894":-1,"66895":-1,"66896":-1,"66897":-1,"66898":-1,"66899":2682,"66900":-1,"66901":-1,"66902":-1,"66903":-1,"66904":-1,"66905":-1,"66906":-1,"66907":-1,"66908":0,"66909":-1,"66910":-1,"66911":-1,"66912":-1,"66913":2686,"66914":-1,"66915":-1,"66916":-1,"66917":-1,"66918":-1,"66919":-1,"66920":-1,"66921":-1,"66922":2685,"66923":-1,"66924":-1,"66925":-1,"66926":-1,"66927":-1,"66928":-1,"66929":-1,"66930":-1,"66931":-1,"66932":-1,"66933":-1,"66934":-1,"66935":-1,"66936":2685,"66937":-1,"66938":-1,"66939":-1,"66940":-1,"66941":-1,"66942":2683,"66943":-1,"66944":0,"66945":-1,"66946":-1,"66947":-1,"66948":-1,"66949":-1,"66950":2685,"66951":-1,"66952":-1,"66953":-1,"66954":2686,"66955":-1,"66956":2682,"66957":-1,"66958":-1,"66959":-1,"66960":-1,"66961":-1,"66962":-1,"66963":-1,"66964":-1,"66965":-1,"66966":-1,"66967":-1,"66968":-1,"66969":-1,"66970":-1,"66971":-1,"66972":-1,"66973":-1,"66974":-1,"66975":2684,"66976":-1,"66977":-1,"66978":-1,"66979":-1,"66980":-1,"66981":-1,"66982":-1,"66983":-1,"66984":-1,"66985":-1,"66986":2681,"66987":-1,"66988":-1,"66989":-1,"66990":-1,"66991":2687,"66992":-1,"66993":-1,"66994":-1,"66995":-1,"66996":-1,"66997":-1,"66998":-1,"66999":2682,"67000":-1,"67001":-1,"67002":-1,"67003":-1,"67004":-1,"67005":-1,"67006":-1,"67007":-1,"67008":-1,"67009":-1,"67010":-1,"67011":-1,"67012":-1,"67013":-1,"67014":-1,"67015":-1,"67016":2684,"67017":-1,"67018":2683,"67019":-1,"67020":-1,"67021":-1,"67022":-1,"67023":-1,"67024":-1,"67025":-1,"67026":-1,"67027":-1,"67028":-1,"67029":-1,"67030":-1,"67031":-1,"67032":2684,"67033":2684,"67034":-1,"67035":-1,"67036":-1,"67037":-1,"67038":-1,"67039":-1,"67040":-1,"67041":-1,"67042":-1,"67043":-1,"67044":2682,"67045":2682,"67046":-1,"67047":-1,"67048":-1,"67049":-1,"67050":-1,"67051":-1,"67052":2683,"67053":-1,"67054":2685,"67055":-1,"67056":-1,"67057":-1,"67058":-1,"67059":-1,"67060":-1,"67061":-1,"67062":-1,"67063":-1,"67064":-1,"67065":2685,"67066":-1,"67067":-1,"67068":-1,"67069":-1,"67070":-1,"67071":-1,"67072":-1,"67073":-1,"67074":2685,"67075":-1,"67076":-1,"67077":-1,"67078":-1,"67079":-1,"67080":-1,"67081":-1,"67082":-1,"67083":2683,"67084":-1,"67085":-1,"67086":-1,"67087":-1,"67088":-1,"67089":-1,"67090":-1,"67091":-1,"67092":2685,"67093":-1,"67094":-1,"67095":-1,"67096":-1,"67097":-1,"67098":-1,"67099":-1,"67100":2682,"67101":-1,"67102":-1,"67103":-1,"67104":-1,"67105":-1,"67106":0,"67107":-1,"67108":-1,"67109":-1,"67110":2682,"67111":-1,"67112":2685,"67113":-1,"67114":2682,"67115":2685,"67116":-1,"67117":-1,"67118":0,"67119":-1,"67120":-1,"67121":-1,"67122":-1,"67123":-1,"67124":-1,"67125":2682,"67126":2684,"67127":-1,"67128":2682,"67129":-1,"67130":-1,"67131":-1,"67132":0,"67133":2682,"67134":-1,"67135":-1,"67136":-1,"67137":-1,"67138":-1,"67139":-1,"67140":-1,"67141":-1,"67142":-1,"67143":-1,"67144":-1,"67145":-1,"67146":-1,"67147":-1,"67148":-1,"67149":2682,"67150":-1,"67151":-1,"67152":-1,"67153":-1,"67154":-1,"67155":-1,"67156":-1,"67157":-1,"67158":2682,"67159":-1,"67160":-1,"67161":-1,"67162":2684,"67163":-1,"67164":-1,"67165":-1,"67166":-1,"67167":-1,"67168":-1,"67169":-1,"67170":-1,"67171":-1,"67172":-1,"67173":-1,"67174":-1,"67175":0,"67176":-1,"67177":-1,"67178":-1,"67179":-1,"67180":-1,"67181":-1,"67182":-1,"67183":2687,"67184":-1,"67185":-1,"67186":2684,"67187":-1,"67188":-1,"67189":-1,"67190":-1,"67191":-1,"67192":-1,"67193":-1,"67194":-1,"67195":-1,"67196":-1,"67197":-1,"67198":-1,"67199":-1,"67200":-1,"67201":-1,"67202":-1,"67203":2687,"67204":-1,"67205":-1,"67206":-1,"67207":-1,"67208":-1,"67209":-1,"67210":-1,"67211":-1,"67212":-1,"67213":-1,"67214":-1,"67215":-1,"67216":-1,"67217":-1,"67218":-1,"67219":-1,"67220":2681,"67221":-1,"67222":-1,"67223":-1,"67224":-1,"67225":-1,"67226":-1,"67227":-1,"67228":-1,"67229":-1,"67230":-1,"67231":-1,"67232":2682,"67233":-1,"67234":-1,"67235":-1,"67236":-1,"67237":0,"67238":-1,"67239":-1,"67240":-1,"67241":-1,"67242":-1,"67243":-1,"67244":-1,"67245":-1,"67246":2684,"67247":-1,"67248":-1,"67249":-1,"67250":0,"67251":-1,"67252":-1,"67253":-1,"67254":-1,"67255":-1,"67256":-1,"67257":-1,"67258":2687,"67259":-1,"67260":-1,"67261":-1,"67262":-1,"67263":2687,"67264":-1,"67265":0,"67266":2683,"67267":-1,"67268":-1,"67269":-1,"67270":-1,"67271":-1,"67272":-1,"67273":2682,"67274":-1,"67275":-1,"67276":-1,"67277":-1,"67278":-1,"67279":-1,"67280":2687,"67281":-1,"67282":-1,"67283":-1,"67284":-1,"67285":0,"67286":-1,"67287":-1,"67288":-1,"67289":-1,"67290":-1,"67291":-1,"67292":-1,"67293":-1,"67294":2683,"67295":-1,"67296":0,"67297":-1,"67298":-1,"67299":-1,"67300":-1,"67301":-1,"67302":-1,"67303":-1,"67304":2685,"67305":-1,"67306":-1,"67307":-1,"67308":-1,"67309":2681,"67310":-1,"67311":-1,"67312":-1,"67313":-1,"67314":-1,"67315":-1,"67316":-1,"67317":-1,"67318":-1,"67319":-1,"67320":2682,"67321":-1,"67322":-1,"67323":-1,"67324":-1,"67325":2682,"67326":-1,"67327":-1,"67328":-1,"67329":-1,"67330":-1,"67331":-1,"67332":-1,"67333":-1,"67334":0,"67335":-1,"67336":-1,"67337":-1,"67338":-1,"67339":-1,"67340":-1,"67341":-1,"67342":2684,"67343":-1,"67344":-1,"67345":-1,"67346":-1,"67347":-1,"67348":-1,"67349":-1,"67350":-1,"67351":-1,"67352":-1,"67353":-1,"67354":-1,"67355":-1,"67356":-1,"67357":-1,"67358":2684,"67359":-1,"67360":0,"67361":-1,"67362":-1,"67363":-1,"67364":-1,"67365":-1,"67366":-1,"67367":-1,"67368":-1,"67369":-1,"67370":-1,"67371":-1,"67372":-1,"67373":-1,"67374":-1,"67375":2685,"67376":-1,"67377":-1,"67378":-1,"67379":-1,"67380":-1,"67381":-1,"67382":-1,"67383":-1,"67384":-1,"67385":-1,"67386":-1,"67387":-1,"67388":-1,"67389":-1,"67390":-1,"67391":-1,"67392":-1,"67393":-1,"67394":-1,"67395":-1,"67396":-1,"67397":-1,"67398":-1,"67399":-1,"67400":0,"67401":-1,"67402":-1,"67403":-1,"67404":-1,"67405":-1,"67406":-1,"67407":-1,"67408":-1,"67409":-1,"67410":-1,"67411":-1,"67412":2683,"67413":-1,"67414":-1,"67415":-1,"67416":-1,"67417":-1,"67418":-1,"67419":2686,"67420":-1,"67421":-1,"67422":-1,"67423":-1,"67424":-1,"67425":-1,"67426":-1,"67427":-1,"67428":-1,"67429":0,"67430":-1,"67431":-1,"67432":-1,"67433":-1,"67434":-1,"67435":-1,"67436":-1,"67437":-1,"67438":-1,"67439":0,"67440":-1,"67441":0,"67442":-1,"67443":-1,"67444":-1,"67445":-1,"67446":-1,"67447":2683,"67448":-1,"67449":-1,"67450":-1,"67451":2685,"67452":2683,"67453":-1,"67454":2683,"67455":-1,"67456":-1,"67457":-1,"67458":-1,"67459":-1,"67460":-1,"67461":-1,"67462":-1,"67463":-1,"67464":-1,"67465":-1,"67466":-1,"67467":-1,"67468":-1,"67469":2682,"67470":-1,"67471":-1,"67472":0,"67473":-1,"67474":-1,"67475":-1,"67476":-1,"67477":-1,"67478":-1,"67479":-1,"67480":-1,"67481":-1,"67482":-1,"67483":-1,"67484":-1,"67485":-1,"67486":0,"67487":-1,"67488":-1,"67489":-1,"67490":-1,"67491":-1,"67492":-1,"67493":-1,"67494":-1,"67495":-1,"67496":-1,"67497":-1,"67498":-1,"67499":-1,"67500":0,"67501":-1,"67502":-1,"67503":-1,"67504":-1,"67505":-1,"67506":-1,"67507":-1,"67508":2686,"67509":-1,"67510":-1,"67511":-1,"67512":-1,"67513":-1,"67514":-1,"67515":-1,"67516":-1,"67517":-1,"67518":-1,"67519":-1,"67520":2684,"67521":-1,"67522":-1,"67523":-1,"67524":-1,"67525":0,"67526":-1,"67527":-1,"67528":-1,"67529":-1,"67530":-1,"67531":-1,"67532":2682,"67533":-1,"67534":-1,"67535":0,"67536":-1,"67537":-1,"67538":-1,"67539":-1,"67540":-1,"67541":-1,"67542":2682,"67543":-1,"67544":-1,"67545":-1,"67546":-1,"67547":-1,"67548":-1,"67549":-1,"67550":-1,"67551":-1,"67552":-1,"67553":-1,"67554":-1,"67555":-1,"67556":-1,"67557":-1,"67558":2686,"67559":-1,"67560":-1,"67561":-1,"67562":2685,"67563":-1,"67564":-1,"67565":-1,"67566":-1,"67567":-1,"67568":-1,"67569":-1,"67570":-1,"67571":2684,"67572":-1,"67573":-1,"67574":-1,"67575":-1,"67576":-1,"67577":-1,"67578":2684,"67579":-1,"67580":-1,"67581":-1,"67582":-1,"67583":-1,"67584":-1,"67585":-1,"67586":-1,"67587":-1,"67588":-1,"67589":-1,"67590":2685,"67591":-1,"67592":-1,"67593":-1,"67594":-1,"67595":-1,"67596":-1,"67597":-1,"67598":2685,"67599":-1,"67600":-1,"67601":-1,"67602":-1,"67603":-1,"67604":-1,"67605":-1,"67606":-1,"67607":-1,"67608":-1,"67609":-1,"67610":-1,"67611":-1,"67612":-1,"67613":-1,"67614":-1,"67615":-1,"67616":-1,"67617":2683,"67618":2684,"67619":-1,"67620":-1,"67621":-1,"67622":-1,"67623":-1,"67624":-1,"67625":-1,"67626":-1,"67627":2682,"67628":-1,"67629":-1,"67630":-1,"67631":-1,"67632":-1,"67633":0,"67634":-1,"67635":-1,"67636":-1,"67637":-1,"67638":-1,"67639":-1,"67640":-1,"67641":-1,"67642":-1,"67643":-1,"67644":2682,"67645":-1,"67646":-1,"67647":2684,"67648":-1,"67649":-1,"67650":-1,"67651":-1,"67652":0,"67653":0,"67654":-1,"67655":-1,"67656":2682,"67657":-1,"67658":-1,"67659":-1,"67660":-1,"67661":-1,"67662":-1,"67663":-1,"67664":-1,"67665":-1,"67666":-1,"67667":-1,"67668":-1,"67669":-1,"67670":2684,"67671":2682,"67672":-1,"67673":-1,"67674":-1,"67675":-1,"67676":-1,"67677":-1,"67678":-1,"67679":-1,"67680":-1,"67681":-1,"67682":-1,"67683":-1,"67684":0,"67685":-1,"67686":2683,"67687":-1,"67688":-1,"67689":-1,"67690":-1,"67691":-1,"67692":-1,"67693":-1,"67694":-1,"67695":-1,"67696":-1,"67697":-1,"67698":-1,"67699":-1,"67700":-1,"67701":-1,"67702":-1,"67703":-1,"67704":-1,"67705":-1,"67706":-1,"67707":-1,"67708":-1,"67709":-1,"67710":-1,"67711":-1,"67712":-1,"67713":2681,"67714":-1,"67715":-1,"67716":2682,"67717":2681,"67718":2682,"67719":-1,"67720":-1,"67721":-1,"67722":-1,"67723":-1,"67724":2685,"67725":-1,"67726":-1,"67727":-1,"67728":-1,"67729":-1,"67730":-1,"67731":-1,"67732":-1,"67733":-1,"67734":-1,"67735":-1,"67736":-1,"67737":-1,"67738":-1,"67739":-1,"67740":-1,"67741":-1,"67742":-1,"67743":-1,"67744":-1,"67745":-1,"67746":2684,"67747":-1,"67748":-1,"67749":-1,"67750":-1,"67751":-1,"67752":-1,"67753":2681,"67754":-1,"67755":-1,"67756":-1,"67757":2686,"67758":-1,"67759":-1,"67760":-1,"67761":-1,"67762":-1,"67763":2686,"67764":-1,"67765":-1,"67766":0,"67767":-1,"67768":-1,"67769":-1,"67770":-1,"67771":-1,"67772":-1,"67773":-1,"67774":2683,"67775":-1,"67776":-1,"67777":-1,"67778":0,"67779":-1,"67780":-1,"67781":-1,"67782":-1,"67783":-1,"67784":-1,"67785":0,"67786":-1,"67787":-1,"67788":-1,"67789":-1,"67790":-1,"67791":-1,"67792":-1,"67793":2681,"67794":-1,"67795":-1,"67796":2686,"67797":2685,"67798":-1,"67799":-1,"67800":-1,"67801":-1,"67802":-1,"67803":-1,"67804":-1,"67805":-1,"67806":-1,"67807":2687,"67808":-1,"67809":-1,"67810":-1,"67811":-1,"67812":-1,"67813":-1,"67814":-1,"67815":-1,"67816":-1,"67817":-1,"67818":-1,"67819":-1,"67820":-1,"67821":-1,"67822":-1,"67823":-1,"67824":2683,"67825":-1,"67826":-1,"67827":-1,"67828":-1,"67829":-1,"67830":-1,"67831":-1,"67832":0,"67833":0,"67834":-1,"67835":-1,"67836":2685,"67837":-1,"67838":-1,"67839":-1,"67840":2686,"67841":-1,"67842":-1,"67843":-1,"67844":0,"67845":2683,"67846":-1,"67847":-1,"67848":-1,"67849":-1,"67850":-1,"67851":-1,"67852":-1,"67853":-1,"67854":-1,"67855":-1,"67856":2685,"67857":-1,"67858":-1,"67859":0,"67860":-1,"67861":-1,"67862":-1,"67863":-1,"67864":-1,"67865":-1,"67866":-1,"67867":-1,"67868":-1,"67869":-1,"67870":0,"67871":-1,"67872":-1,"67873":-1,"67874":-1,"67875":-1,"67876":-1,"67877":-1,"67878":-1,"67879":-1,"67880":-1,"67881":-1,"67882":2685,"67883":0,"67884":2686,"67885":-1,"67886":-1,"67887":-1,"67888":-1,"67889":-1,"67890":-1,"67891":-1,"67892":-1,"67893":-1,"67894":-1,"67895":-1,"67896":-1,"67897":-1,"67898":-1,"67899":-1,"67900":-1,"67901":-1,"67902":-1,"67903":-1,"67904":-1,"67905":-1,"67906":-1,"67907":2684,"67908":0,"67909":0,"67910":2685,"67911":-1,"67912":2684,"67913":-1,"67914":-1,"67915":-1,"67916":-1,"67917":-1,"67918":-1,"67919":-1,"67920":-1,"67921":2682,"67922":2682,"67923":2682,"67924":-1,"67925":-1,"67926":-1,"67927":-1,"67928":-1,"67929":-1,"67930":-1,"67931":2682,"67932":-1,"67933":-1,"67934":-1,"67935":2684,"67936":-1,"67937":-1,"67938":-1,"67939":-1,"67940":-1,"67941":-1,"67942":2686,"67943":-1,"67944":-1,"67945":2683,"67946":-1,"67947":-1,"67948":2685,"67949":-1,"67950":-1,"67951":-1,"67952":-1,"67953":2685,"67954":-1,"67955":-1,"67956":-1,"67957":0,"67958":-1,"67959":-1,"67960":-1,"67961":2686,"67962":2681,"67963":-1,"67964":-1,"67965":-1,"67966":-1,"67967":-1,"67968":-1,"67969":-1,"67970":-1,"67971":-1,"67972":-1,"67973":-1,"67974":0,"67975":-1,"67976":-1,"67977":-1,"67978":-1,"67979":-1,"67980":-1,"67981":-1,"67982":-1,"67983":-1,"67984":-1,"67985":-1,"67986":-1,"67987":-1,"67988":2686,"67989":-1,"67990":-1,"67991":-1,"67992":-1,"67993":-1,"67994":-1,"67995":-1,"67996":-1,"67997":-1,"67998":-1,"67999":-1,"68000":-1,"68001":-1,"68002":-1,"68003":2685,"68004":-1,"68005":-1,"68006":-1,"68007":-1,"68008":-1,"68009":-1,"68010":-1,"68011":-1,"68012":-1,"68013":2686,"68014":-1,"68015":2686,"68016":-1,"68017":-1,"68018":-1,"68019":-1,"68020":2682,"68021":-1,"68022":0,"68023":-1,"68024":-1,"68025":-1,"68026":-1,"68027":0,"68028":0,"68029":-1,"68030":-1,"68031":-1,"68032":-1,"68033":-1,"68034":-1,"68035":-1,"68036":-1,"68037":-1,"68038":-1,"68039":2686,"68040":-1,"68041":-1,"68042":-1,"68043":2685,"68044":-1,"68045":-1,"68046":2682,"68047":-1,"68048":0,"68049":2682,"68050":-1,"68051":-1,"68052":2683,"68053":0,"68054":-1,"68055":2686,"68056":-1,"68057":2684,"68058":-1,"68059":-1,"68060":-1,"68061":-1,"68062":-1,"68063":-1,"68064":-1,"68065":-1,"68066":-1,"68067":-1,"68068":-1,"68069":-1,"68070":-1,"68071":-1,"68072":-1,"68073":-1,"68074":-1,"68075":2686,"68076":-1,"68077":-1,"68078":-1,"68079":-1,"68080":-1,"68081":-1,"68082":-1,"68083":-1,"68084":-1,"68085":2682,"68086":-1,"68087":-1,"68088":-1,"68089":0,"68090":-1,"68091":-1,"68092":-1,"68093":-1,"68094":-1,"68095":-1,"68096":-1,"68097":-1,"68098":-1,"68099":-1,"68100":2684,"68101":-1,"68102":-1,"68103":0,"68104":-1,"68105":-1,"68106":2686,"68107":-1,"68108":-1,"68109":2682,"68110":-1,"68111":-1,"68112":-1,"68113":-1,"68114":-1,"68115":-1,"68116":2683,"68117":-1,"68118":-1,"68119":2682,"68120":-1,"68121":-1,"68122":-1,"68123":-1,"68124":0,"68125":-1,"68126":2687,"68127":2684,"68128":-1,"68129":-1,"68130":-1,"68131":-1,"68132":-1,"68133":-1,"68134":0,"68135":0,"68136":2681,"68137":-1,"68138":-1,"68139":-1,"68140":-1,"68141":2683,"68142":-1,"68143":-1,"68144":-1,"68145":-1,"68146":-1,"68147":-1,"68148":-1,"68149":-1,"68150":-1,"68151":2685,"68152":-1,"68153":-1,"68154":-1,"68155":-1,"68156":0,"68157":-1,"68158":-1,"68159":-1,"68160":-1,"68161":-1,"68162":0,"68163":-1,"68164":-1,"68165":-1,"68166":-1,"68167":-1,"68168":0,"68169":-1,"68170":-1,"68171":-1,"68172":-1,"68173":-1,"68174":-1,"68175":2682,"68176":-1,"68177":-1,"68178":-1,"68179":-1,"68180":-1,"68181":0,"68182":-1,"68183":-1,"68184":0,"68185":-1,"68186":-1,"68187":-1,"68188":-1,"68189":-1,"68190":-1,"68191":-1,"68192":-1,"68193":-1,"68194":-1,"68195":-1,"68196":2682,"68197":-1,"68198":-1,"68199":-1,"68200":-1,"68201":-1,"68202":-1,"68203":-1,"68204":-1,"68205":-1,"68206":-1,"68207":-1,"68208":-1,"68209":-1,"68210":2684,"68211":-1,"68212":-1,"68213":-1,"68214":-1,"68215":0,"68216":-1,"68217":-1,"68218":-1,"68219":-1,"68220":-1,"68221":-1,"68222":2681,"68223":-1,"68224":2682,"68225":-1,"68226":-1,"68227":-1,"68228":-1,"68229":-1,"68230":-1,"68231":-1,"68232":-1,"68233":2685,"68234":-1,"68235":2686,"68236":-1,"68237":-1,"68238":0,"68239":-1,"68240":-1,"68241":-1,"68242":-1,"68243":-1,"68244":-1,"68245":-1,"68246":2683,"68247":-1,"68248":-1,"68249":-1,"68250":-1,"68251":2685,"68252":-1,"68253":-1,"68254":-1,"68255":-1,"68256":-1,"68257":-1,"68258":-1,"68259":-1,"68260":-1,"68261":-1,"68262":-1,"68263":-1,"68264":-1,"68265":-1,"68266":-1,"68267":-1,"68268":-1,"68269":-1,"68270":-1,"68271":-1,"68272":-1,"68273":-1,"68274":-1,"68275":-1,"68276":-1,"68277":0,"68278":-1,"68279":-1,"68280":-1,"68281":-1,"68282":-1,"68283":2684,"68284":-1,"68285":-1,"68286":0,"68287":-1,"68288":-1,"68289":-1,"68290":-1,"68291":-1,"68292":-1,"68293":-1,"68294":-1,"68295":-1,"68296":-1,"68297":-1,"68298":-1,"68299":-1,"68300":-1,"68301":-1,"68302":-1,"68303":-1,"68304":-1,"68305":-1,"68306":-1,"68307":-1,"68308":-1,"68309":-1,"68310":-1,"68311":-1,"68312":2686,"68313":-1,"68314":2686,"68315":-1,"68316":-1,"68317":2682,"68318":-1,"68319":-1,"68320":-1,"68321":-1,"68322":-1,"68323":0,"68324":-1,"68325":0,"68326":-1,"68327":-1,"68328":-1,"68329":-1,"68330":2683,"68331":-1,"68332":-1,"68333":-1,"68334":-1,"68335":-1,"68336":-1,"68337":2687,"68338":2684,"68339":2686,"68340":-1,"68341":-1,"68342":-1,"68343":-1,"68344":-1,"68345":-1,"68346":-1,"68347":-1,"68348":-1,"68349":-1,"68350":-1,"68351":-1,"68352":-1,"68353":-1,"68354":-1,"68355":-1,"68356":-1,"68357":2682,"68358":-1,"68359":-1,"68360":-1,"68361":-1,"68362":-1,"68363":-1,"68364":-1,"68365":-1,"68366":0,"68367":-1,"68368":-1,"68369":-1,"68370":-1,"68371":-1,"68372":-1,"68373":-1,"68374":-1,"68375":2687,"68376":-1,"68377":-1,"68378":-1,"68379":-1,"68380":-1,"68381":-1,"68382":-1,"68383":-1,"68384":-1,"68385":0,"68386":-1,"68387":-1,"68388":-1,"68389":-1,"68390":-1,"68391":-1,"68392":-1,"68393":-1,"68394":-1,"68395":-1,"68396":-1,"68397":-1,"68398":0,"68399":-1,"68400":-1,"68401":2683,"68402":-1,"68403":-1,"68404":0,"68405":-1,"68406":-1,"68407":-1,"68408":-1,"68409":2682,"68410":-1,"68411":-1,"68412":2685,"68413":2682,"68414":-1,"68415":2687,"68416":-1,"68417":-1,"68418":-1,"68419":-1,"68420":-1,"68421":-1,"68422":-1,"68423":-1,"68424":-1,"68425":-1,"68426":-1,"68427":-1,"68428":-1,"68429":-1,"68430":-1,"68431":2684,"68432":-1,"68433":-1,"68434":-1,"68435":-1,"68436":-1,"68437":2682,"68438":-1,"68439":-1,"68440":-1,"68441":2683,"68442":-1,"68443":-1,"68444":-1,"68445":-1,"68446":-1,"68447":2684,"68448":-1,"68449":-1,"68450":-1,"68451":-1,"68452":-1,"68453":-1,"68454":-1,"68455":-1,"68456":-1,"68457":-1,"68458":-1,"68459":-1,"68460":-1,"68461":-1,"68462":-1,"68463":-1,"68464":-1,"68465":-1,"68466":-1,"68467":-1,"68468":-1,"68469":-1,"68470":-1,"68471":-1,"68472":-1,"68473":-1,"68474":0,"68475":-1,"68476":-1,"68477":-1,"68478":2687,"68479":-1,"68480":0,"68481":2683,"68482":-1,"68483":-1,"68484":-1,"68485":-1,"68486":-1,"68487":0,"68488":-1,"68489":-1,"68490":-1,"68491":-1,"68492":-1,"68493":2684,"68494":-1,"68495":-1,"68496":-1,"68497":-1,"68498":-1,"68499":-1,"68500":-1,"68501":-1,"68502":2682,"68503":-1,"68504":-1,"68505":-1,"68506":-1,"68507":-1,"68508":-1,"68509":2682,"68510":0,"68511":-1,"68512":-1,"68513":-1,"68514":2685,"68515":-1,"68516":-1,"68517":-1,"68518":-1,"68519":-1,"68520":-1,"68521":-1,"68522":-1,"68523":-1,"68524":-1,"68525":-1,"68526":-1,"68527":-1,"68528":-1,"68529":-1,"68530":2686,"68531":-1,"68532":-1,"68533":-1,"68534":-1,"68535":-1,"68536":-1,"68537":0,"68538":-1,"68539":-1,"68540":-1,"68541":-1,"68542":-1,"68543":-1,"68544":-1,"68545":-1,"68546":-1,"68547":-1,"68548":-1,"68549":2684,"68550":-1,"68551":-1,"68552":-1,"68553":-1,"68554":-1,"68555":-1,"68556":-1,"68557":-1,"68558":-1,"68559":-1,"68560":-1,"68561":-1,"68562":2686,"68563":-1,"68564":2682,"68565":-1,"68566":-1,"68567":-1,"68568":-1,"68569":-1,"68570":0,"68571":-1,"68572":-1,"68573":-1,"68574":-1,"68575":-1,"68576":2686,"68577":2685,"68578":-1,"68579":-1,"68580":-1,"68581":-1,"68582":-1,"68583":-1,"68584":-1,"68585":-1,"68586":-1,"68587":2683,"68588":-1,"68589":-1,"68590":2683,"68591":-1,"68592":-1,"68593":-1,"68594":2686,"68595":-1,"68596":-1,"68597":-1,"68598":-1,"68599":-1,"68600":-1,"68601":-1,"68602":-1,"68603":-1,"68604":-1,"68605":2683,"68606":-1,"68607":-1,"68608":-1,"68609":-1,"68610":-1,"68611":-1,"68612":-1,"68613":-1,"68614":-1,"68615":2681,"68616":-1,"68617":-1,"68618":-1,"68619":-1,"68620":-1,"68621":-1,"68622":-1,"68623":-1,"68624":-1,"68625":-1,"68626":-1,"68627":-1,"68628":-1,"68629":-1,"68630":-1,"68631":-1,"68632":-1,"68633":2682,"68634":-1,"68635":-1,"68636":-1,"68637":-1,"68638":-1,"68639":-1,"68640":-1,"68641":-1,"68642":-1,"68643":-1,"68644":2685,"68645":-1,"68646":-1,"68647":-1,"68648":-1,"68649":-1,"68650":-1,"68651":-1,"68652":-1,"68653":-1,"68654":-1,"68655":-1,"68656":-1,"68657":2684,"68658":-1,"68659":-1,"68660":-1,"68661":-1,"68662":-1,"68663":-1,"68664":2685,"68665":-1,"68666":-1,"68667":-1,"68668":-1,"68669":-1,"68670":-1,"68671":-1,"68672":-1,"68673":-1,"68674":-1,"68675":-1,"68676":-1,"68677":-1,"68678":-1,"68679":-1,"68680":-1,"68681":-1,"68682":2685,"68683":-1,"68684":-1,"68685":-1,"68686":-1,"68687":-1,"68688":-1,"68689":-1,"68690":-1,"68691":-1,"68692":0,"68693":-1,"68694":-1,"68695":-1,"68696":-1,"68697":-1,"68698":-1,"68699":2683,"68700":-1,"68701":-1,"68702":-1,"68703":2687,"68704":-1,"68705":-1,"68706":-1,"68707":-1,"68708":-1,"68709":-1,"68710":-1,"68711":-1,"68712":-1,"68713":-1,"68714":2682,"68715":-1,"68716":-1,"68717":2683,"68718":2684,"68719":-1,"68720":-1,"68721":2682,"68722":-1,"68723":-1,"68724":-1,"68725":-1,"68726":-1,"68727":-1,"68728":-1,"68729":2686,"68730":-1,"68731":-1,"68732":-1,"68733":2682,"68734":-1,"68735":0,"68736":2681,"68737":-1,"68738":-1,"68739":2685,"68740":-1,"68741":0,"68742":-1,"68743":2685,"68744":-1,"68745":2681,"68746":-1,"68747":-1,"68748":-1,"68749":-1,"68750":-1,"68751":-1,"68752":-1,"68753":-1,"68754":2686,"68755":-1,"68756":-1,"68757":-1,"68758":-1,"68759":-1,"68760":-1,"68761":-1,"68762":-1,"68763":-1,"68764":-1,"68765":-1,"68766":-1,"68767":-1,"68768":-1,"68769":-1,"68770":-1,"68771":-1,"68772":0,"68773":-1,"68774":-1,"68775":-1,"68776":-1,"68777":-1,"68778":-1,"68779":-1,"68780":-1,"68781":-1,"68782":-1,"68783":2682,"68784":-1,"68785":2685,"68786":-1,"68787":-1,"68788":-1,"68789":-1,"68790":-1,"68791":-1,"68792":-1,"68793":-1,"68794":-1,"68795":-1,"68796":-1,"68797":-1,"68798":-1,"68799":-1,"68800":2684,"68801":-1,"68802":-1,"68803":-1,"68804":-1,"68805":-1,"68806":-1,"68807":-1,"68808":-1,"68809":-1,"68810":-1,"68811":-1,"68812":-1,"68813":-1,"68814":-1,"68815":-1,"68816":-1,"68817":-1,"68818":-1,"68819":-1,"68820":-1,"68821":-1,"68822":-1,"68823":-1,"68824":-1,"68825":-1,"68826":-1,"68827":2686,"68828":2685,"68829":-1,"68830":-1,"68831":-1,"68832":-1,"68833":-1,"68834":-1,"68835":2681,"68836":-1,"68837":-1,"68838":-1,"68839":-1,"68840":-1,"68841":-1,"68842":-1,"68843":-1,"68844":2684,"68845":-1,"68846":-1,"68847":2682,"68848":-1,"68849":2686,"68850":-1,"68851":-1,"68852":-1,"68853":-1,"68854":-1,"68855":2682,"68856":-1,"68857":-1,"68858":-1,"68859":-1,"68860":2687,"68861":-1,"68862":-1,"68863":-1,"68864":-1,"68865":0,"68866":-1,"68867":-1,"68868":-1,"68869":2681,"68870":2685,"68871":-1,"68872":-1,"68873":-1,"68874":-1,"68875":-1,"68876":-1,"68877":-1,"68878":2686,"68879":-1,"68880":-1,"68881":-1,"68882":-1,"68883":-1,"68884":-1,"68885":-1,"68886":-1,"68887":-1,"68888":-1,"68889":-1,"68890":-1,"68891":-1,"68892":2682,"68893":2686,"68894":-1,"68895":-1,"68896":2682,"68897":-1,"68898":-1,"68899":-1,"68900":-1,"68901":-1,"68902":-1,"68903":-1,"68904":-1,"68905":-1,"68906":-1,"68907":-1,"68908":-1,"68909":2683,"68910":-1,"68911":-1,"68912":0,"68913":-1,"68914":-1,"68915":-1,"68916":0,"68917":-1,"68918":-1,"68919":-1,"68920":-1,"68921":-1,"68922":0,"68923":-1,"68924":-1,"68925":2684,"68926":-1,"68927":-1,"68928":-1,"68929":-1,"68930":-1,"68931":2684,"68932":-1,"68933":-1,"68934":-1,"68935":-1,"68936":-1,"68937":2686,"68938":2685,"68939":2687,"68940":-1,"68941":-1,"68942":-1,"68943":-1,"68944":2681,"68945":2686,"68946":-1,"68947":-1,"68948":2684,"68949":-1,"68950":-1,"68951":-1,"68952":-1,"68953":-1,"68954":-1,"68955":-1,"68956":-1,"68957":-1,"68958":-1,"68959":-1,"68960":-1,"68961":-1,"68962":-1,"68963":-1,"68964":-1,"68965":-1,"68966":-1,"68967":-1,"68968":-1,"68969":-1,"68970":-1,"68971":-1,"68972":2681,"68973":-1,"68974":-1,"68975":2681,"68976":-1,"68977":-1,"68978":-1,"68979":-1,"68980":-1,"68981":-1,"68982":-1,"68983":-1,"68984":-1,"68985":-1,"68986":-1,"68987":-1,"68988":-1,"68989":-1,"68990":-1,"68991":-1,"68992":-1,"68993":-1,"68994":-1,"68995":2681,"68996":-1,"68997":-1,"68998":-1,"68999":-1,"69000":-1,"69001":-1,"69002":-1,"69003":-1,"69004":-1,"69005":-1,"69006":-1,"69007":-1,"69008":-1,"69009":-1,"69010":-1,"69011":-1,"69012":-1,"69013":-1,"69014":-1,"69015":-1,"69016":-1,"69017":-1,"69018":-1,"69019":-1,"69020":-1,"69021":-1,"69022":-1,"69023":-1,"69024":-1,"69025":2685,"69026":-1,"69027":-1,"69028":-1,"69029":-1,"69030":-1,"69031":-1,"69032":-1,"69033":-1,"69034":-1,"69035":-1,"69036":-1,"69037":-1,"69038":-1,"69039":-1,"69040":-1,"69041":-1,"69042":-1,"69043":-1,"69044":-1,"69045":2685,"69046":2685,"69047":-1,"69048":-1,"69049":2685,"69050":-1,"69051":-1,"69052":-1,"69053":-1,"69054":2683,"69055":-1,"69056":-1,"69057":-1,"69058":0,"69059":-1,"69060":-1,"69061":-1,"69062":-1,"69063":-1,"69064":-1,"69065":-1,"69066":-1,"69067":-1,"69068":-1,"69069":-1,"69070":2683,"69071":-1,"69072":-1,"69073":-1,"69074":-1,"69075":-1,"69076":-1,"69077":-1,"69078":-1,"69079":-1,"69080":-1,"69081":-1,"69082":-1,"69083":-1,"69084":-1,"69085":-1,"69086":-1,"69087":2682,"69088":-1,"69089":-1,"69090":-1,"69091":-1,"69092":-1,"69093":-1,"69094":-1,"69095":-1,"69096":-1,"69097":-1,"69098":-1,"69099":-1,"69100":-1,"69101":-1,"69102":-1,"69103":-1,"69104":2684,"69105":-1,"69106":-1,"69107":-1,"69108":-1,"69109":-1,"69110":2685,"69111":-1,"69112":-1,"69113":-1,"69114":-1,"69115":-1,"69116":2684,"69117":-1,"69118":-1,"69119":-1,"69120":2686,"69121":-1,"69122":-1,"69123":-1,"69124":-1,"69125":-1,"69126":-1,"69127":-1,"69128":-1,"69129":-1,"69130":2682,"69131":-1,"69132":2685,"69133":-1,"69134":-1,"69135":-1,"69136":-1,"69137":-1,"69138":-1,"69139":-1,"69140":-1,"69141":-1,"69142":-1,"69143":-1,"69144":-1,"69145":-1,"69146":-1,"69147":-1,"69148":2682,"69149":-1,"69150":-1,"69151":-1,"69152":-1,"69153":-1,"69154":-1,"69155":-1,"69156":-1,"69157":2681,"69158":-1,"69159":-1,"69160":-1,"69161":-1,"69162":-1,"69163":-1,"69164":-1,"69165":-1,"69166":2686,"69167":-1,"69168":-1,"69169":-1,"69170":-1,"69171":-1,"69172":-1,"69173":-1,"69174":-1,"69175":-1,"69176":2684,"69177":2685,"69178":-1,"69179":2682,"69180":-1,"69181":-1,"69182":2684,"69183":-1,"69184":-1,"69185":-1,"69186":-1,"69187":-1,"69188":-1,"69189":-1,"69190":-1,"69191":2684,"69192":2685,"69193":-1,"69194":-1,"69195":-1,"69196":-1,"69197":-1,"69198":-1,"69199":-1,"69200":-1,"69201":-1,"69202":-1,"69203":-1,"69204":2686,"69205":0,"69206":-1,"69207":0,"69208":-1,"69209":-1,"69210":-1,"69211":2686,"69212":-1,"69213":-1,"69214":-1,"69215":-1,"69216":-1,"69217":-1,"69218":-1,"69219":-1,"69220":2685,"69221":-1,"69222":-1,"69223":-1,"69224":-1,"69225":-1,"69226":2686,"69227":0,"69228":-1,"69229":-1,"69230":-1,"69231":-1,"69232":-1,"69233":0,"69234":-1,"69235":-1,"69236":-1,"69237":-1,"69238":-1,"69239":-1,"69240":2686,"69241":-1,"69242":2684,"69243":2684,"69244":2685,"69245":-1,"69246":-1,"69247":-1,"69248":-1,"69249":-1,"69250":-1,"69251":2687,"69252":-1,"69253":0,"69254":-1,"69255":-1,"69256":-1,"69257":-1,"69258":-1,"69259":-1,"69260":-1,"69261":-1,"69262":2686,"69263":-1,"69264":-1,"69265":-1,"69266":-1,"69267":-1,"69268":-1,"69269":2687,"69270":-1,"69271":2685,"69272":-1,"69273":-1,"69274":-1,"69275":-1,"69276":-1,"69277":-1,"69278":-1,"69279":-1,"69280":-1,"69281":-1,"69282":0,"69283":-1,"69284":-1,"69285":0,"69286":-1,"69287":2681,"69288":-1,"69289":-1,"69290":-1,"69291":-1,"69292":-1,"69293":2685,"69294":-1,"69295":2684,"69296":-1,"69297":-1,"69298":-1,"69299":-1,"69300":2685,"69301":-1,"69302":-1,"69303":-1,"69304":-1,"69305":2686,"69306":-1,"69307":-1,"69308":-1,"69309":-1,"69310":2682,"69311":2683,"69312":-1,"69313":-1,"69314":-1,"69315":-1,"69316":-1,"69317":-1,"69318":-1,"69319":-1,"69320":-1,"69321":-1,"69322":-1,"69323":-1,"69324":-1,"69325":-1,"69326":-1,"69327":-1,"69328":-1,"69329":-1,"69330":-1,"69331":-1,"69332":-1,"69333":-1,"69334":2685,"69335":2682,"69336":-1,"69337":-1,"69338":-1,"69339":-1,"69340":-1,"69341":-1,"69342":-1,"69343":-1,"69344":-1,"69345":-1,"69346":-1,"69347":-1,"69348":-1,"69349":-1,"69350":-1,"69351":-1,"69352":2681,"69353":-1,"69354":-1,"69355":-1,"69356":-1,"69357":2686,"69358":-1,"69359":-1,"69360":-1,"69361":2687,"69362":-1,"69363":-1,"69364":-1,"69365":-1,"69366":2686,"69367":-1,"69368":-1,"69369":-1,"69370":2685,"69371":-1,"69372":2682,"69373":-1,"69374":2685,"69375":-1,"69376":-1,"69377":-1,"69378":-1,"69379":-1,"69380":-1,"69381":-1,"69382":-1,"69383":-1,"69384":-1,"69385":-1,"69386":-1,"69387":-1,"69388":-1,"69389":-1,"69390":-1,"69391":-1,"69392":-1,"69393":2683,"69394":2687,"69395":-1,"69396":0,"69397":-1,"69398":2683,"69399":-1,"69400":0,"69401":-1,"69402":-1,"69403":-1,"69404":-1,"69405":2684,"69406":-1,"69407":-1,"69408":-1,"69409":-1,"69410":2682,"69411":-1,"69412":-1,"69413":-1,"69414":2682,"69415":-1,"69416":-1,"69417":-1,"69418":-1,"69419":-1,"69420":-1,"69421":-1,"69422":-1,"69423":2684,"69424":-1,"69425":-1,"69426":-1,"69427":-1,"69428":-1,"69429":-1,"69430":-1,"69431":-1,"69432":-1,"69433":-1,"69434":-1,"69435":-1,"69436":-1,"69437":-1,"69438":-1,"69439":-1,"69440":-1,"69441":-1,"69442":-1,"69443":-1,"69444":-1,"69445":-1,"69446":-1,"69447":-1,"69448":-1,"69449":-1,"69450":-1,"69451":-1,"69452":-1,"69453":2682,"69454":-1,"69455":-1,"69456":-1,"69457":-1,"69458":-1,"69459":-1,"69460":-1,"69461":-1,"69462":-1,"69463":-1,"69464":-1,"69465":2687,"69466":-1,"69467":-1,"69468":-1,"69469":-1,"69470":-1,"69471":-1,"69472":-1,"69473":-1,"69474":-1,"69475":-1,"69476":-1,"69477":-1,"69478":-1,"69479":-1,"69480":-1,"69481":-1,"69482":-1,"69483":-1,"69484":2685,"69485":-1,"69486":-1,"69487":-1,"69488":-1,"69489":2681,"69490":-1,"69491":-1,"69492":-1,"69493":-1,"69494":-1,"69495":-1,"69496":-1,"69497":-1,"69498":-1,"69499":-1,"69500":-1,"69501":-1,"69502":-1,"69503":-1,"69504":2685,"69505":2681,"69506":-1,"69507":-1,"69508":-1,"69509":-1,"69510":-1,"69511":-1,"69512":-1,"69513":-1,"69514":-1,"69515":-1,"69516":-1,"69517":-1,"69518":-1,"69519":-1,"69520":-1,"69521":-1,"69522":-1,"69523":2681,"69524":-1,"69525":-1,"69526":-1,"69527":-1,"69528":-1,"69529":-1,"69530":-1,"69531":-1,"69532":-1,"69533":-1,"69534":-1,"69535":-1,"69536":0,"69537":-1,"69538":-1,"69539":-1,"69540":-1,"69541":-1,"69542":-1,"69543":-1,"69544":-1,"69545":-1,"69546":-1,"69547":-1,"69548":-1,"69549":-1,"69550":-1,"69551":-1,"69552":-1,"69553":-1,"69554":-1,"69555":-1,"69556":-1,"69557":-1,"69558":-1,"69559":-1,"69560":-1,"69561":-1,"69562":-1,"69563":-1,"69564":-1,"69565":0,"69566":2685,"69567":-1,"69568":2686,"69569":-1,"69570":-1,"69571":2685,"69572":-1,"69573":2685,"69574":-1,"69575":-1,"69576":-1,"69577":-1,"69578":-1,"69579":-1,"69580":-1,"69581":-1,"69582":-1,"69583":-1,"69584":-1,"69585":2682,"69586":-1,"69587":0,"69588":-1,"69589":-1,"69590":-1,"69591":-1,"69592":2687,"69593":-1,"69594":-1,"69595":-1,"69596":-1,"69597":-1,"69598":-1,"69599":-1,"69600":-1,"69601":-1,"69602":-1,"69603":-1,"69604":-1,"69605":-1,"69606":-1,"69607":-1,"69608":2683,"69609":2685,"69610":-1,"69611":2686,"69612":-1,"69613":-1,"69614":-1,"69615":2681,"69616":2686,"69617":-1,"69618":-1,"69619":-1,"69620":-1,"69621":0,"69622":-1,"69623":-1,"69624":-1,"69625":-1,"69626":-1,"69627":-1,"69628":2684,"69629":-1,"69630":-1,"69631":-1,"69632":-1,"69633":-1,"69634":2682,"69635":2683,"69636":-1,"69637":-1,"69638":-1,"69639":2682,"69640":-1,"69641":-1,"69642":2683,"69643":-1,"69644":-1,"69645":-1,"69646":-1,"69647":-1,"69648":-1,"69649":-1,"69650":-1,"69651":-1,"69652":-1,"69653":2682,"69654":-1,"69655":-1,"69656":-1,"69657":-1,"69658":-1,"69659":-1,"69660":-1,"69661":-1,"69662":-1,"69663":-1,"69664":2685,"69665":-1,"69666":-1,"69667":-1,"69668":-1,"69669":-1,"69670":-1,"69671":-1,"69672":-1,"69673":-1,"69674":-1,"69675":-1,"69676":-1,"69677":2686,"69678":2687,"69679":-1,"69680":-1,"69681":2683,"69682":-1,"69683":2682,"69684":-1,"69685":2683,"69686":-1,"69687":-1,"69688":-1,"69689":0,"69690":2686,"69691":2686,"69692":0,"69693":-1,"69694":-1,"69695":-1,"69696":-1,"69697":-1,"69698":-1,"69699":2685,"69700":-1,"69701":-1,"69702":-1,"69703":-1,"69704":0,"69705":-1,"69706":-1,"69707":-1,"69708":-1,"69709":-1,"69710":0,"69711":-1,"69712":-1,"69713":-1,"69714":-1,"69715":-1,"69716":-1,"69717":2685,"69718":2686,"69719":2683,"69720":-1,"69721":-1,"69722":-1,"69723":-1,"69724":-1,"69725":-1,"69726":2685,"69727":0,"69728":2683,"69729":2684,"69730":-1,"69731":-1,"69732":-1,"69733":-1,"69734":-1,"69735":2684,"69736":-1,"69737":-1,"69738":-1,"69739":-1,"69740":-1,"69741":-1,"69742":-1,"69743":-1,"69744":2685,"69745":-1,"69746":-1,"69747":-1,"69748":-1,"69749":-1,"69750":-1,"69751":-1,"69752":-1,"69753":-1,"69754":-1,"69755":-1,"69756":-1,"69757":-1,"69758":-1,"69759":-1,"69760":-1,"69761":2685,"69762":-1,"69763":2685,"69764":-1,"69765":-1,"69766":-1,"69767":-1,"69768":0,"69769":-1,"69770":-1,"69771":-1,"69772":-1,"69773":-1,"69774":2686,"69775":-1,"69776":2684,"69777":-1,"69778":-1,"69779":-1,"69780":-1,"69781":-1,"69782":-1,"69783":-1,"69784":-1,"69785":2685,"69786":-1,"69787":-1,"69788":-1,"69789":-1,"69790":-1,"69791":-1,"69792":-1,"69793":-1,"69794":2685,"69795":-1,"69796":2682,"69797":-1,"69798":-1,"69799":-1,"69800":0,"69801":2683,"69802":-1,"69803":2687,"69804":-1,"69805":-1,"69806":2687,"69807":-1,"69808":-1,"69809":-1,"69810":-1,"69811":-1,"69812":-1,"69813":-1,"69814":-1,"69815":2682,"69816":-1,"69817":-1,"69818":-1,"69819":-1,"69820":-1,"69821":0,"69822":-1,"69823":-1,"69824":2686,"69825":-1,"69826":-1,"69827":-1,"69828":-1,"69829":-1,"69830":-1,"69831":-1,"69832":-1,"69833":-1,"69834":-1,"69835":-1,"69836":-1,"69837":-1,"69838":-1,"69839":-1,"69840":-1,"69841":-1,"69842":-1,"69843":2685,"69844":-1,"69845":-1,"69846":-1,"69847":-1,"69848":-1,"69849":-1,"69850":-1,"69851":-1,"69852":0,"69853":-1,"69854":-1,"69855":-1,"69856":0,"69857":-1,"69858":-1,"69859":-1,"69860":-1,"69861":-1,"69862":-1,"69863":-1,"69864":-1,"69865":-1,"69866":-1,"69867":-1,"69868":-1,"69869":-1,"69870":-1,"69871":2687,"69872":-1,"69873":-1,"69874":-1,"69875":-1,"69876":2685,"69877":-1,"69878":-1,"69879":-1,"69880":-1,"69881":-1,"69882":-1,"69883":-1,"69884":-1,"69885":-1,"69886":-1,"69887":-1,"69888":2682,"69889":-1,"69890":-1,"69891":-1,"69892":-1,"69893":-1,"69894":-1,"69895":-1,"69896":-1,"69897":-1,"69898":-1,"69899":-1,"69900":-1,"69901":2684,"69902":-1,"69903":-1,"69904":-1,"69905":-1,"69906":-1,"69907":-1,"69908":-1,"69909":-1,"69910":-1,"69911":-1,"69912":-1,"69913":-1,"69914":0,"69915":2681,"69916":-1,"69917":2687,"69918":-1,"69919":-1,"69920":-1,"69921":-1,"69922":-1,"69923":-1,"69924":-1,"69925":-1,"69926":2682,"69927":-1,"69928":2685,"69929":-1,"69930":-1,"69931":-1,"69932":-1,"69933":-1,"69934":2685,"69935":-1,"69936":-1,"69937":-1,"69938":-1,"69939":-1,"69940":-1,"69941":-1,"69942":0,"69943":2683,"69944":2684,"69945":-1,"69946":-1,"69947":-1,"69948":-1,"69949":-1,"69950":-1,"69951":2681,"69952":-1,"69953":-1,"69954":-1,"69955":-1,"69956":-1,"69957":-1,"69958":-1,"69959":-1,"69960":-1,"69961":-1,"69962":-1,"69963":-1,"69964":-1,"69965":-1,"69966":-1,"69967":-1,"69968":-1,"69969":-1,"69970":-1,"69971":-1,"69972":2681,"69973":-1,"69974":-1,"69975":0,"69976":-1,"69977":-1,"69978":2685,"69979":-1,"69980":-1,"69981":-1,"69982":-1,"69983":-1,"69984":-1,"69985":-1,"69986":-1,"69987":2684,"69988":-1,"69989":-1,"69990":-1,"69991":-1,"69992":-1,"69993":-1,"69994":2686,"69995":-1,"69996":-1,"69997":-1,"69998":-1,"69999":-1,"70000":-1,"70001":-1,"70002":-1,"70003":-1,"70004":-1,"70005":-1,"70006":-1,"70007":-1,"70008":2682,"70009":-1,"70010":2684,"70011":-1,"70012":-1,"70013":-1,"70014":-1,"70015":-1,"70016":-1,"70017":-1,"70018":0,"70019":-1,"70020":-1,"70021":-1,"70022":-1,"70023":-1,"70024":-1,"70025":-1,"70026":-1,"70027":-1,"70028":-1,"70029":-1,"70030":-1,"70031":2684,"70032":-1,"70033":-1,"70034":-1,"70035":0,"70036":2683,"70037":2681,"70038":-1,"70039":-1,"70040":-1,"70041":-1,"70042":-1,"70043":-1,"70044":-1,"70045":-1,"70046":-1,"70047":2683,"70048":-1,"70049":-1,"70050":-1,"70051":2683,"70052":-1,"70053":-1,"70054":-1,"70055":-1,"70056":-1,"70057":-1,"70058":-1,"70059":-1,"70060":-1,"70061":2686,"70062":-1,"70063":-1,"70064":-1,"70065":-1,"70066":-1,"70067":-1,"70068":-1,"70069":-1,"70070":-1,"70071":-1,"70072":-1,"70073":-1,"70074":-1,"70075":-1,"70076":-1,"70077":-1,"70078":2685,"70079":-1,"70080":2686,"70081":-1,"70082":-1,"70083":-1,"70084":0,"70085":-1,"70086":-1,"70087":-1,"70088":-1,"70089":-1,"70090":2683,"70091":-1,"70092":-1,"70093":-1,"70094":-1,"70095":-1,"70096":-1,"70097":2684,"70098":-1,"70099":-1,"70100":-1,"70101":-1,"70102":-1,"70103":-1,"70104":2684,"70105":-1,"70106":-1,"70107":-1,"70108":-1,"70109":-1,"70110":-1,"70111":-1,"70112":-1,"70113":-1,"70114":-1,"70115":0,"70116":-1,"70117":-1,"70118":-1,"70119":0,"70120":-1,"70121":-1,"70122":2682,"70123":-1,"70124":-1,"70125":-1,"70126":-1,"70127":-1,"70128":-1,"70129":-1,"70130":-1,"70131":-1,"70132":-1,"70133":-1,"70134":-1,"70135":0,"70136":0,"70137":-1,"70138":-1,"70139":-1,"70140":-1,"70141":-1,"70142":-1,"70143":-1,"70144":-1,"70145":2685,"70146":-1,"70147":-1,"70148":-1,"70149":-1,"70150":-1,"70151":2686,"70152":-1,"70153":-1,"70154":-1,"70155":-1,"70156":0,"70157":2683,"70158":-1,"70159":-1,"70160":-1,"70161":-1,"70162":-1,"70163":-1,"70164":-1,"70165":-1,"70166":-1,"70167":-1,"70168":-1,"70169":-1,"70170":-1,"70171":-1,"70172":-1,"70173":-1,"70174":-1,"70175":-1,"70176":-1,"70177":-1,"70178":-1,"70179":-1,"70180":-1,"70181":2685,"70182":-1,"70183":0,"70184":-1,"70185":-1,"70186":-1,"70187":-1,"70188":-1,"70189":-1,"70190":-1,"70191":2682,"70192":-1,"70193":-1,"70194":-1,"70195":-1,"70196":-1,"70197":-1,"70198":-1,"70199":-1,"70200":-1,"70201":-1,"70202":2684,"70203":-1,"70204":-1,"70205":-1,"70206":-1,"70207":-1,"70208":-1,"70209":-1,"70210":-1,"70211":-1,"70212":-1,"70213":-1,"70214":-1,"70215":-1,"70216":-1,"70217":-1,"70218":-1,"70219":-1,"70220":-1,"70221":-1,"70222":-1,"70223":2687,"70224":-1,"70225":-1,"70226":-1,"70227":-1,"70228":-1,"70229":-1,"70230":-1,"70231":-1,"70232":-1,"70233":-1,"70234":-1,"70235":-1,"70236":-1,"70237":-1,"70238":-1,"70239":0,"70240":-1,"70241":-1,"70242":-1,"70243":-1,"70244":-1,"70245":-1,"70246":-1,"70247":-1,"70248":-1,"70249":-1,"70250":-1,"70251":-1,"70252":-1,"70253":-1,"70254":0,"70255":-1,"70256":-1,"70257":-1,"70258":-1,"70259":-1,"70260":-1,"70261":-1,"70262":-1,"70263":2683,"70264":2686,"70265":-1,"70266":-1,"70267":-1,"70268":-1,"70269":-1,"70270":-1,"70271":2686,"70272":2686,"70273":-1,"70274":-1,"70275":-1,"70276":-1,"70277":-1,"70278":-1,"70279":-1,"70280":-1,"70281":-1,"70282":2682,"70283":2684,"70284":-1,"70285":-1,"70286":0,"70287":-1,"70288":-1,"70289":-1,"70290":2683,"70291":-1,"70292":-1,"70293":-1,"70294":-1,"70295":-1,"70296":-1,"70297":2681,"70298":0,"70299":-1,"70300":-1,"70301":-1,"70302":-1,"70303":-1,"70304":-1,"70305":2681,"70306":-1,"70307":-1,"70308":-1,"70309":-1,"70310":-1,"70311":2681,"70312":0,"70313":-1,"70314":-1,"70315":-1,"70316":2682,"70317":-1,"70318":2686,"70319":-1,"70320":-1,"70321":2681,"70322":2684,"70323":-1,"70324":-1,"70325":2681,"70326":-1,"70327":-1,"70328":-1,"70329":-1,"70330":-1,"70331":-1,"70332":-1,"70333":-1,"70334":-1,"70335":-1,"70336":-1,"70337":-1,"70338":-1,"70339":0,"70340":-1,"70341":-1,"70342":-1,"70343":-1,"70344":-1,"70345":-1,"70346":-1,"70347":2681,"70348":-1,"70349":-1,"70350":-1,"70351":-1,"70352":-1,"70353":-1,"70354":-1,"70355":-1,"70356":-1,"70357":-1,"70358":-1,"70359":-1,"70360":-1,"70361":-1,"70362":-1,"70363":-1,"70364":-1,"70365":-1,"70366":-1,"70367":-1,"70368":-1,"70369":-1,"70370":-1,"70371":-1,"70372":-1,"70373":-1,"70374":-1,"70375":-1,"70376":0,"70377":-1,"70378":-1,"70379":-1,"70380":-1,"70381":-1,"70382":-1,"70383":-1,"70384":-1,"70385":-1,"70386":2685,"70387":-1,"70388":-1,"70389":-1,"70390":-1,"70391":0,"70392":-1,"70393":-1,"70394":-1,"70395":-1,"70396":-1,"70397":-1,"70398":-1,"70399":-1,"70400":-1,"70401":-1,"70402":-1,"70403":-1,"70404":-1,"70405":-1,"70406":-1,"70407":-1,"70408":-1,"70409":-1,"70410":-1,"70411":2682,"70412":-1,"70413":-1,"70414":-1,"70415":-1,"70416":-1,"70417":-1,"70418":-1,"70419":-1,"70420":-1,"70421":2682,"70422":-1,"70423":0,"70424":-1,"70425":2683,"70426":2686,"70427":-1,"70428":-1,"70429":-1,"70430":-1,"70431":-1,"70432":2683,"70433":-1,"70434":-1,"70435":-1,"70436":-1,"70437":-1,"70438":-1,"70439":-1,"70440":-1,"70441":2681,"70442":-1,"70443":-1,"70444":2682,"70445":-1,"70446":2684,"70447":-1,"70448":-1,"70449":-1,"70450":-1,"70451":-1,"70452":0,"70453":-1,"70454":-1,"70455":-1,"70456":-1,"70457":-1,"70458":-1,"70459":-1,"70460":-1,"70461":-1,"70462":-1,"70463":-1,"70464":2683,"70465":-1,"70466":-1,"70467":-1,"70468":-1,"70469":-1,"70470":-1,"70471":-1,"70472":-1,"70473":-1,"70474":-1,"70475":-1,"70476":2685,"70477":-1,"70478":-1,"70479":-1,"70480":-1,"70481":-1,"70482":-1,"70483":-1,"70484":0,"70485":-1,"70486":-1,"70487":-1,"70488":-1,"70489":-1,"70490":2681,"70491":-1,"70492":-1,"70493":-1,"70494":-1,"70495":-1,"70496":-1,"70497":-1,"70498":-1,"70499":-1,"70500":-1,"70501":2683,"70502":-1,"70503":-1,"70504":-1,"70505":-1,"70506":-1,"70507":-1,"70508":-1,"70509":-1,"70510":-1,"70511":-1,"70512":-1,"70513":2681,"70514":-1,"70515":-1,"70516":-1,"70517":-1,"70518":-1,"70519":-1,"70520":-1,"70521":-1,"70522":-1,"70523":0,"70524":-1,"70525":-1,"70526":-1,"70527":-1,"70528":-1,"70529":-1,"70530":-1,"70531":-1,"70532":-1,"70533":-1,"70534":-1,"70535":-1,"70536":-1,"70537":-1,"70538":-1,"70539":-1,"70540":-1,"70541":-1,"70542":-1,"70543":-1,"70544":-1,"70545":-1,"70546":-1,"70547":-1,"70548":-1,"70549":-1,"70550":-1,"70551":-1,"70552":2687,"70553":2682,"70554":-1,"70555":-1,"70556":-1,"70557":-1,"70558":-1,"70559":-1,"70560":-1,"70561":-1,"70562":-1,"70563":-1,"70564":2683,"70565":-1,"70566":-1,"70567":-1,"70568":-1,"70569":-1,"70570":-1,"70571":-1,"70572":-1,"70573":2683,"70574":-1,"70575":2685,"70576":-1,"70577":-1,"70578":-1,"70579":-1,"70580":-1,"70581":-1,"70582":-1,"70583":2684,"70584":-1,"70585":-1,"70586":-1,"70587":-1,"70588":-1,"70589":-1,"70590":-1,"70591":-1,"70592":-1,"70593":-1,"70594":-1,"70595":-1,"70596":-1,"70597":-1,"70598":-1,"70599":-1,"70600":2687,"70601":-1,"70602":0,"70603":-1,"70604":-1,"70605":2682,"70606":0,"70607":-1,"70608":-1,"70609":-1,"70610":-1,"70611":-1,"70612":-1,"70613":-1,"70614":-1,"70615":-1,"70616":-1,"70617":-1,"70618":-1,"70619":-1,"70620":-1,"70621":0,"70622":2681,"70623":-1,"70624":-1,"70625":-1,"70626":-1,"70627":-1,"70628":-1,"70629":2685,"70630":-1,"70631":-1,"70632":-1,"70633":-1,"70634":-1,"70635":-1,"70636":-1,"70637":-1,"70638":-1,"70639":-1,"70640":-1,"70641":2685,"70642":2682,"70643":2686,"70644":-1,"70645":-1,"70646":-1,"70647":-1,"70648":-1,"70649":-1,"70650":-1,"70651":-1,"70652":-1,"70653":-1,"70654":2683,"70655":-1,"70656":-1,"70657":-1,"70658":2681,"70659":-1,"70660":-1,"70661":2686,"70662":-1,"70663":-1,"70664":-1,"70665":-1,"70666":-1,"70667":-1,"70668":-1,"70669":-1,"70670":-1,"70671":-1,"70672":-1,"70673":-1,"70674":0,"70675":-1,"70676":0,"70677":-1,"70678":-1,"70679":-1,"70680":-1,"70681":-1,"70682":-1,"70683":-1,"70684":-1,"70685":-1,"70686":2681,"70687":-1,"70688":-1,"70689":-1,"70690":-1,"70691":-1,"70692":2683,"70693":-1,"70694":-1,"70695":-1,"70696":-1,"70697":-1,"70698":-1,"70699":-1,"70700":-1,"70701":-1,"70702":-1,"70703":-1,"70704":-1,"70705":-1,"70706":2686,"70707":-1,"70708":-1,"70709":-1,"70710":-1,"70711":-1,"70712":2686,"70713":-1,"70714":0,"70715":-1,"70716":-1,"70717":-1,"70718":-1,"70719":0,"70720":-1,"70721":-1,"70722":-1,"70723":-1,"70724":-1,"70725":2685,"70726":2687,"70727":-1,"70728":-1,"70729":-1,"70730":-1,"70731":-1,"70732":-1,"70733":-1,"70734":-1,"70735":-1,"70736":2681,"70737":-1,"70738":-1,"70739":-1,"70740":-1,"70741":-1,"70742":-1,"70743":-1,"70744":-1,"70745":-1,"70746":-1,"70747":-1,"70748":-1,"70749":-1,"70750":-1,"70751":-1,"70752":-1,"70753":-1,"70754":-1,"70755":-1,"70756":-1,"70757":-1,"70758":2685,"70759":-1,"70760":-1,"70761":-1,"70762":-1,"70763":-1,"70764":-1,"70765":-1,"70766":-1,"70767":2684,"70768":-1,"70769":2683,"70770":-1,"70771":-1,"70772":-1,"70773":-1,"70774":-1,"70775":-1,"70776":-1,"70777":-1,"70778":-1,"70779":2686,"70780":-1,"70781":-1,"70782":-1,"70783":-1,"70784":-1,"70785":-1,"70786":-1,"70787":-1,"70788":-1,"70789":-1,"70790":-1,"70791":-1,"70792":2685,"70793":-1,"70794":-1,"70795":-1,"70796":-1,"70797":-1,"70798":-1,"70799":-1,"70800":-1,"70801":2686,"70802":2682,"70803":2684,"70804":-1,"70805":-1,"70806":-1,"70807":-1,"70808":-1,"70809":-1,"70810":-1,"70811":-1,"70812":2685,"70813":-1,"70814":-1,"70815":-1,"70816":-1,"70817":-1,"70818":-1,"70819":-1,"70820":-1,"70821":-1,"70822":2686,"70823":-1,"70824":2682,"70825":-1,"70826":-1,"70827":-1,"70828":-1,"70829":-1,"70830":-1,"70831":-1,"70832":0,"70833":-1,"70834":-1,"70835":-1,"70836":-1,"70837":-1,"70838":-1,"70839":-1,"70840":-1,"70841":-1,"70842":2684,"70843":-1,"70844":-1,"70845":2685,"70846":-1,"70847":-1,"70848":-1,"70849":-1,"70850":-1,"70851":-1,"70852":-1,"70853":-1,"70854":-1,"70855":-1,"70856":-1,"70857":-1,"70858":-1,"70859":-1,"70860":-1,"70861":-1,"70862":-1,"70863":-1,"70864":2684,"70865":-1,"70866":-1,"70867":-1,"70868":2684,"70869":-1,"70870":0,"70871":-1,"70872":-1,"70873":-1,"70874":-1,"70875":-1,"70876":-1,"70877":-1,"70878":-1,"70879":-1,"70880":-1,"70881":-1,"70882":-1,"70883":-1,"70884":-1,"70885":-1,"70886":0,"70887":-1,"70888":2683,"70889":-1,"70890":-1,"70891":2683,"70892":-1,"70893":-1,"70894":0,"70895":2682,"70896":-1,"70897":-1,"70898":2685,"70899":-1,"70900":-1,"70901":-1,"70902":-1,"70903":-1,"70904":-1,"70905":-1,"70906":-1,"70907":-1,"70908":-1,"70909":-1,"70910":-1,"70911":-1,"70912":-1,"70913":-1,"70914":-1,"70915":-1,"70916":-1,"70917":2684,"70918":2683,"70919":-1,"70920":0,"70921":-1,"70922":-1,"70923":-1,"70924":-1,"70925":2684,"70926":-1,"70927":-1,"70928":2687,"70929":-1,"70930":-1,"70931":-1,"70932":-1,"70933":-1,"70934":2683,"70935":-1,"70936":-1,"70937":-1,"70938":2684,"70939":2686,"70940":-1,"70941":-1,"70942":-1,"70943":-1,"70944":-1,"70945":-1,"70946":-1,"70947":0,"70948":2685,"70949":-1,"70950":-1,"70951":-1,"70952":-1,"70953":-1,"70954":-1,"70955":-1,"70956":-1,"70957":2684,"70958":-1,"70959":-1,"70960":-1,"70961":-1,"70962":-1,"70963":-1,"70964":2687,"70965":-1,"70966":2681,"70967":-1,"70968":-1,"70969":-1,"70970":-1,"70971":-1,"70972":-1,"70973":-1,"70974":-1,"70975":-1,"70976":-1,"70977":-1,"70978":-1,"70979":-1,"70980":-1,"70981":2684,"70982":2685,"70983":-1,"70984":2682,"70985":-1,"70986":-1,"70987":-1,"70988":-1,"70989":-1,"70990":-1,"70991":-1,"70992":-1,"70993":-1,"70994":-1,"70995":-1,"70996":-1,"70997":-1,"70998":-1,"70999":-1,"71000":-1,"71001":-1,"71002":-1,"71003":-1,"71004":-1,"71005":-1,"71006":-1,"71007":-1,"71008":-1,"71009":2685,"71010":2686,"71011":-1,"71012":-1,"71013":-1,"71014":-1,"71015":-1,"71016":-1,"71017":-1,"71018":-1,"71019":-1,"71020":-1,"71021":-1,"71022":-1,"71023":-1,"71024":-1,"71025":-1,"71026":-1,"71027":-1,"71028":-1,"71029":-1,"71030":2683,"71031":-1,"71032":-1,"71033":-1,"71034":-1,"71035":-1,"71036":2684,"71037":-1,"71038":-1,"71039":-1,"71040":-1,"71041":-1,"71042":-1,"71043":-1,"71044":2684,"71045":-1,"71046":-1,"71047":0,"71048":-1,"71049":2687,"71050":-1,"71051":-1,"71052":-1,"71053":-1,"71054":-1,"71055":2687,"71056":-1,"71057":-1,"71058":-1,"71059":-1,"71060":-1,"71061":-1,"71062":-1,"71063":-1,"71064":-1,"71065":2682,"71066":-1,"71067":-1,"71068":-1,"71069":-1,"71070":-1,"71071":-1,"71072":-1,"71073":-1,"71074":2685,"71075":-1,"71076":-1,"71077":-1,"71078":2686,"71079":-1,"71080":-1,"71081":2682,"71082":-1,"71083":-1,"71084":-1,"71085":2682,"71086":-1,"71087":2686,"71088":-1,"71089":-1,"71090":-1,"71091":-1,"71092":-1,"71093":-1,"71094":-1,"71095":2682,"71096":-1,"71097":0,"71098":-1,"71099":-1,"71100":-1,"71101":-1,"71102":0,"71103":-1,"71104":-1,"71105":2684,"71106":-1,"71107":-1,"71108":-1,"71109":-1,"71110":-1,"71111":-1,"71112":-1,"71113":-1,"71114":-1,"71115":-1,"71116":-1,"71117":-1,"71118":-1,"71119":2684,"71120":-1,"71121":0,"71122":2684,"71123":-1,"71124":-1,"71125":-1,"71126":-1,"71127":-1,"71128":-1,"71129":-1,"71130":-1,"71131":-1,"71132":-1,"71133":-1,"71134":-1,"71135":-1,"71136":-1,"71137":-1,"71138":-1,"71139":-1,"71140":-1,"71141":-1,"71142":-1,"71143":-1,"71144":-1,"71145":-1,"71146":-1,"71147":-1,"71148":-1,"71149":-1,"71150":-1,"71151":-1,"71152":-1,"71153":-1,"71154":-1,"71155":2685,"71156":2685,"71157":-1,"71158":-1,"71159":2685,"71160":-1,"71161":-1,"71162":-1,"71163":-1,"71164":-1,"71165":-1,"71166":-1,"71167":-1,"71168":-1,"71169":-1,"71170":-1,"71171":-1,"71172":2684,"71173":-1,"71174":-1,"71175":0,"71176":-1,"71177":-1,"71178":-1,"71179":-1,"71180":-1,"71181":-1,"71182":-1,"71183":-1,"71184":-1,"71185":-1,"71186":-1,"71187":-1,"71188":0,"71189":-1,"71190":-1,"71191":-1,"71192":-1,"71193":-1,"71194":-1,"71195":-1,"71196":-1,"71197":-1,"71198":-1,"71199":-1,"71200":-1,"71201":2684,"71202":-1,"71203":-1,"71204":-1,"71205":-1,"71206":-1,"71207":-1,"71208":-1,"71209":-1,"71210":-1,"71211":-1,"71212":-1,"71213":-1,"71214":-1,"71215":-1,"71216":-1,"71217":-1,"71218":-1,"71219":-1,"71220":-1,"71221":-1,"71222":0,"71223":-1,"71224":-1,"71225":-1,"71226":-1,"71227":-1,"71228":0,"71229":-1,"71230":-1,"71231":-1,"71232":2682,"71233":-1,"71234":-1,"71235":-1,"71236":-1,"71237":-1,"71238":2682,"71239":-1,"71240":-1,"71241":-1,"71242":-1,"71243":-1,"71244":-1,"71245":-1,"71246":-1,"71247":2681,"71248":-1,"71249":-1,"71250":-1,"71251":-1,"71252":-1,"71253":2681,"71254":-1,"71255":2686,"71256":-1,"71257":-1,"71258":-1,"71259":-1,"71260":-1,"71261":0,"71262":-1,"71263":-1,"71264":-1,"71265":-1,"71266":-1,"71267":-1,"71268":0,"71269":-1,"71270":-1,"71271":2681,"71272":-1,"71273":-1,"71274":-1,"71275":-1,"71276":-1,"71277":-1,"71278":-1,"71279":-1,"71280":-1,"71281":-1,"71282":-1,"71283":-1,"71284":-1,"71285":-1,"71286":-1,"71287":2682,"71288":-1,"71289":-1,"71290":-1,"71291":-1,"71292":-1,"71293":2684,"71294":-1,"71295":-1,"71296":-1,"71297":-1,"71298":-1,"71299":-1,"71300":-1,"71301":-1,"71302":-1,"71303":-1,"71304":-1,"71305":-1,"71306":-1,"71307":-1,"71308":-1,"71309":0,"71310":-1,"71311":0,"71312":-1,"71313":-1,"71314":-1,"71315":-1,"71316":-1,"71317":0,"71318":-1,"71319":-1,"71320":-1,"71321":-1,"71322":-1,"71323":-1,"71324":2684,"71325":-1,"71326":2682,"71327":-1,"71328":-1,"71329":-1,"71330":-1,"71331":-1,"71332":-1,"71333":-1,"71334":-1,"71335":-1,"71336":-1,"71337":-1,"71338":-1,"71339":-1,"71340":-1,"71341":-1,"71342":-1,"71343":-1,"71344":-1,"71345":-1,"71346":-1,"71347":-1,"71348":-1,"71349":-1,"71350":-1,"71351":-1,"71352":-1,"71353":-1,"71354":-1,"71355":-1,"71356":-1,"71357":-1,"71358":-1,"71359":-1,"71360":-1,"71361":-1,"71362":-1,"71363":2681,"71364":-1,"71365":-1,"71366":2687,"71367":-1,"71368":-1,"71369":-1,"71370":-1,"71371":-1,"71372":-1,"71373":-1,"71374":-1,"71375":-1,"71376":2683,"71377":-1,"71378":-1,"71379":2687,"71380":-1,"71381":-1,"71382":-1,"71383":-1,"71384":-1,"71385":-1,"71386":-1,"71387":0,"71388":2686,"71389":-1,"71390":-1,"71391":-1,"71392":-1,"71393":2687,"71394":-1,"71395":-1,"71396":-1,"71397":-1,"71398":-1,"71399":-1,"71400":-1,"71401":-1,"71402":-1,"71403":2682,"71404":-1,"71405":2687,"71406":2683,"71407":-1,"71408":0,"71409":-1,"71410":-1,"71411":-1,"71412":-1,"71413":-1,"71414":-1,"71415":-1,"71416":-1,"71417":-1,"71418":-1,"71419":-1,"71420":-1,"71421":-1,"71422":-1,"71423":-1,"71424":-1,"71425":-1,"71426":2685,"71427":-1,"71428":-1,"71429":-1,"71430":-1,"71431":-1,"71432":2685,"71433":-1,"71434":0,"71435":-1,"71436":-1,"71437":-1,"71438":-1,"71439":-1,"71440":-1,"71441":-1,"71442":-1,"71443":-1,"71444":-1,"71445":-1,"71446":-1,"71447":-1,"71448":-1,"71449":-1,"71450":2687,"71451":-1,"71452":-1,"71453":-1,"71454":-1,"71455":-1,"71456":-1,"71457":-1,"71458":-1,"71459":-1,"71460":-1,"71461":-1,"71462":-1,"71463":2681,"71464":-1,"71465":-1,"71466":-1,"71467":-1,"71468":-1,"71469":-1,"71470":-1,"71471":-1,"71472":-1,"71473":-1,"71474":2684,"71475":-1,"71476":-1,"71477":-1,"71478":-1,"71479":0,"71480":-1,"71481":-1,"71482":-1,"71483":-1,"71484":-1,"71485":-1,"71486":-1,"71487":-1,"71488":-1,"71489":-1,"71490":-1,"71491":-1,"71492":-1,"71493":-1,"71494":-1,"71495":-1,"71496":-1,"71497":-1,"71498":-1,"71499":-1,"71500":-1,"71501":-1,"71502":-1,"71503":-1,"71504":2686,"71505":-1,"71506":-1,"71507":-1,"71508":-1,"71509":-1,"71510":-1,"71511":0,"71512":-1,"71513":-1,"71514":-1,"71515":2684,"71516":-1,"71517":-1,"71518":-1,"71519":-1,"71520":-1,"71521":-1,"71522":-1,"71523":-1,"71524":-1,"71525":2681,"71526":-1,"71527":-1,"71528":-1,"71529":-1,"71530":-1,"71531":-1,"71532":-1,"71533":-1,"71534":-1,"71535":-1,"71536":-1,"71537":-1,"71538":-1,"71539":0,"71540":0,"71541":-1,"71542":-1,"71543":-1,"71544":-1,"71545":-1,"71546":-1,"71547":-1,"71548":-1,"71549":-1,"71550":2681,"71551":-1,"71552":-1,"71553":-1,"71554":-1,"71555":-1,"71556":-1,"71557":-1,"71558":-1,"71559":-1,"71560":-1,"71561":-1,"71562":-1,"71563":-1,"71564":-1,"71565":-1,"71566":-1,"71567":-1,"71568":2684,"71569":0,"71570":-1,"71571":2681,"71572":-1,"71573":-1,"71574":2682,"71575":2682,"71576":-1,"71577":-1,"71578":-1,"71579":-1,"71580":-1,"71581":-1,"71582":-1,"71583":-1,"71584":-1,"71585":-1,"71586":-1,"71587":-1,"71588":-1,"71589":-1,"71590":-1,"71591":2682,"71592":-1,"71593":-1,"71594":-1,"71595":-1,"71596":2681,"71597":-1,"71598":-1,"71599":-1,"71600":-1,"71601":-1,"71602":-1,"71603":-1,"71604":-1,"71605":-1,"71606":-1,"71607":2681,"71608":-1,"71609":-1,"71610":-1,"71611":-1,"71612":-1,"71613":-1,"71614":2684,"71615":-1,"71616":-1,"71617":-1,"71618":-1,"71619":-1,"71620":-1,"71621":-1,"71622":-1,"71623":-1,"71624":-1,"71625":-1,"71626":-1,"71627":-1,"71628":-1,"71629":-1,"71630":2682,"71631":-1,"71632":-1,"71633":-1,"71634":-1,"71635":-1,"71636":-1,"71637":-1,"71638":-1,"71639":2683,"71640":-1,"71641":-1,"71642":-1,"71643":-1,"71644":-1,"71645":-1,"71646":-1,"71647":-1,"71648":-1,"71649":-1,"71650":-1,"71651":-1,"71652":-1,"71653":-1,"71654":-1,"71655":-1,"71656":-1,"71657":-1,"71658":-1,"71659":-1,"71660":-1,"71661":-1,"71662":0,"71663":-1,"71664":-1,"71665":-1,"71666":-1,"71667":-1,"71668":0,"71669":-1,"71670":-1,"71671":-1,"71672":-1,"71673":-1,"71674":-1,"71675":-1,"71676":-1,"71677":-1,"71678":-1,"71679":-1,"71680":-1,"71681":-1,"71682":-1,"71683":-1,"71684":-1,"71685":-1,"71686":-1,"71687":-1,"71688":-1,"71689":-1,"71690":2682,"71691":0,"71692":0,"71693":2681,"71694":2683,"71695":-1,"71696":-1,"71697":-1,"71698":-1,"71699":-1,"71700":-1,"71701":-1,"71702":-1,"71703":-1,"71704":-1,"71705":-1,"71706":-1,"71707":-1,"71708":-1,"71709":-1,"71710":-1,"71711":-1,"71712":2683,"71713":-1,"71714":-1,"71715":-1,"71716":-1,"71717":-1,"71718":-1,"71719":-1,"71720":-1,"71721":0,"71722":-1,"71723":-1,"71724":-1,"71725":-1,"71726":-1,"71727":-1,"71728":-1,"71729":2685,"71730":-1,"71731":-1,"71732":-1,"71733":-1,"71734":-1,"71735":0,"71736":2684,"71737":-1,"71738":2683,"71739":-1,"71740":-1,"71741":-1,"71742":-1,"71743":-1,"71744":-1,"71745":-1,"71746":-1,"71747":-1,"71748":-1,"71749":-1,"71750":-1,"71751":-1,"71752":-1,"71753":-1,"71754":-1,"71755":0,"71756":-1,"71757":-1,"71758":-1,"71759":-1,"71760":-1,"71761":-1,"71762":-1,"71763":-1,"71764":-1,"71765":2683,"71766":-1,"71767":-1,"71768":2685,"71769":2682,"71770":-1,"71771":2685,"71772":-1,"71773":-1,"71774":-1,"71775":-1,"71776":-1,"71777":-1,"71778":-1,"71779":-1,"71780":-1,"71781":-1,"71782":-1,"71783":-1,"71784":2686,"71785":-1,"71786":-1,"71787":-1,"71788":-1,"71789":2685,"71790":-1,"71791":-1,"71792":-1,"71793":2687,"71794":-1,"71795":-1,"71796":-1,"71797":-1,"71798":-1,"71799":-1,"71800":-1,"71801":-1,"71802":-1,"71803":-1,"71804":-1,"71805":-1,"71806":-1,"71807":0,"71808":-1,"71809":-1,"71810":-1,"71811":2687,"71812":-1,"71813":-1,"71814":-1,"71815":-1,"71816":-1,"71817":2686,"71818":-1,"71819":-1,"71820":2682,"71821":-1,"71822":2684,"71823":-1,"71824":-1,"71825":2682,"71826":-1,"71827":-1,"71828":-1,"71829":-1,"71830":-1,"71831":-1,"71832":-1,"71833":-1,"71834":-1,"71835":-1,"71836":-1,"71837":-1,"71838":-1,"71839":-1,"71840":-1,"71841":-1,"71842":-1,"71843":2685,"71844":-1,"71845":-1,"71846":-1,"71847":-1,"71848":-1,"71849":-1,"71850":2682,"71851":-1,"71852":-1,"71853":-1,"71854":-1,"71855":-1,"71856":-1,"71857":-1,"71858":-1,"71859":0,"71860":-1,"71861":-1,"71862":0,"71863":-1,"71864":-1,"71865":2685,"71866":-1,"71867":-1,"71868":-1,"71869":-1,"71870":-1,"71871":-1,"71872":2684,"71873":-1,"71874":2686,"71875":-1,"71876":-1,"71877":-1,"71878":-1,"71879":-1,"71880":-1,"71881":-1,"71882":-1,"71883":-1,"71884":-1,"71885":-1,"71886":-1,"71887":-1,"71888":-1,"71889":2687,"71890":-1,"71891":-1,"71892":2683,"71893":-1,"71894":-1,"71895":-1,"71896":-1,"71897":-1,"71898":-1,"71899":-1,"71900":-1,"71901":2684,"71902":-1,"71903":-1,"71904":-1,"71905":-1,"71906":2685,"71907":-1,"71908":-1,"71909":-1,"71910":-1,"71911":-1,"71912":-1,"71913":-1,"71914":-1,"71915":-1,"71916":-1,"71917":-1,"71918":-1,"71919":-1,"71920":0,"71921":-1,"71922":-1,"71923":2683,"71924":-1,"71925":-1,"71926":-1,"71927":2684,"71928":-1,"71929":-1,"71930":-1,"71931":-1,"71932":-1,"71933":-1,"71934":-1,"71935":-1,"71936":-1,"71937":-1,"71938":-1,"71939":0,"71940":2686,"71941":-1,"71942":2683,"71943":-1,"71944":2683,"71945":-1,"71946":-1,"71947":-1,"71948":0,"71949":2685,"71950":-1,"71951":0,"71952":-1,"71953":-1,"71954":-1,"71955":-1,"71956":-1,"71957":-1,"71958":-1,"71959":0,"71960":-1,"71961":2687,"71962":-1,"71963":2682,"71964":-1,"71965":-1,"71966":-1,"71967":-1,"71968":0,"71969":-1,"71970":-1,"71971":-1,"71972":-1,"71973":-1,"71974":-1,"71975":-1,"71976":2682,"71977":2683,"71978":-1,"71979":-1,"71980":-1,"71981":-1,"71982":-1,"71983":0,"71984":-1,"71985":-1,"71986":-1,"71987":-1,"71988":-1,"71989":-1,"71990":-1,"71991":-1,"71992":-1,"71993":-1,"71994":-1,"71995":-1,"71996":-1,"71997":2684,"71998":-1,"71999":-1,"72000":-1,"72001":-1,"72002":-1,"72003":-1,"72004":2685,"72005":-1,"72006":-1,"72007":-1,"72008":-1,"72009":-1,"72010":-1,"72011":-1,"72012":-1,"72013":-1,"72014":-1,"72015":-1,"72016":-1,"72017":-1,"72018":-1,"72019":-1,"72020":-1,"72021":-1,"72022":2686,"72023":-1,"72024":-1,"72025":-1,"72026":-1,"72027":2684,"72028":-1,"72029":-1,"72030":2686,"72031":-1,"72032":-1,"72033":2687,"72034":-1,"72035":-1,"72036":-1,"72037":2687,"72038":-1,"72039":2682,"72040":-1,"72041":-1,"72042":2685,"72043":-1,"72044":-1,"72045":-1,"72046":2682,"72047":-1,"72048":-1,"72049":-1,"72050":-1,"72051":-1,"72052":-1,"72053":2685,"72054":-1,"72055":-1,"72056":2685,"72057":-1,"72058":-1,"72059":-1,"72060":-1,"72061":-1,"72062":-1,"72063":-1,"72064":-1,"72065":-1,"72066":-1,"72067":-1,"72068":-1,"72069":-1,"72070":-1,"72071":0,"72072":-1,"72073":-1,"72074":-1,"72075":2686,"72076":-1,"72077":-1,"72078":-1,"72079":-1,"72080":2687,"72081":-1,"72082":-1,"72083":-1,"72084":-1,"72085":2682,"72086":-1,"72087":-1,"72088":2684,"72089":-1,"72090":0,"72091":-1,"72092":-1,"72093":-1,"72094":-1,"72095":-1,"72096":-1,"72097":-1,"72098":-1,"72099":-1,"72100":2682,"72101":-1,"72102":-1,"72103":-1,"72104":-1,"72105":-1,"72106":-1,"72107":-1,"72108":-1,"72109":-1,"72110":2682,"72111":-1,"72112":-1,"72113":-1,"72114":2686,"72115":0,"72116":-1,"72117":-1,"72118":-1,"72119":-1,"72120":-1,"72121":-1,"72122":-1,"72123":-1,"72124":-1,"72125":-1,"72126":0,"72127":2683,"72128":-1,"72129":2683,"72130":-1,"72131":-1,"72132":2686,"72133":-1,"72134":-1,"72135":-1,"72136":-1,"72137":2685,"72138":-1,"72139":0,"72140":-1,"72141":-1,"72142":-1,"72143":-1,"72144":-1,"72145":-1,"72146":-1,"72147":-1,"72148":-1,"72149":-1,"72150":-1,"72151":-1,"72152":-1,"72153":-1,"72154":2681,"72155":-1,"72156":-1,"72157":2683,"72158":2685,"72159":-1,"72160":-1,"72161":-1,"72162":-1,"72163":2683,"72164":-1,"72165":-1,"72166":-1,"72167":-1,"72168":-1,"72169":-1,"72170":-1,"72171":-1,"72172":-1,"72173":-1,"72174":-1,"72175":-1,"72176":-1,"72177":-1,"72178":-1,"72179":-1,"72180":-1,"72181":-1,"72182":-1,"72183":-1,"72184":-1,"72185":-1,"72186":2683,"72187":-1,"72188":-1,"72189":-1,"72190":-1,"72191":-1,"72192":-1,"72193":-1,"72194":2684,"72195":-1,"72196":-1,"72197":-1,"72198":-1,"72199":-1,"72200":-1,"72201":-1,"72202":-1,"72203":-1,"72204":-1,"72205":-1,"72206":-1,"72207":-1,"72208":-1,"72209":-1,"72210":-1,"72211":-1,"72212":-1,"72213":-1,"72214":-1,"72215":-1,"72216":-1,"72217":-1,"72218":-1,"72219":0,"72220":2687,"72221":0,"72222":-1,"72223":-1,"72224":-1,"72225":-1,"72226":-1,"72227":-1,"72228":-1,"72229":-1,"72230":0,"72231":-1,"72232":2685,"72233":0,"72234":-1,"72235":-1,"72236":-1,"72237":-1,"72238":-1,"72239":-1,"72240":-1,"72241":-1,"72242":-1,"72243":-1,"72244":-1,"72245":0,"72246":-1,"72247":2685,"72248":-1,"72249":-1,"72250":-1,"72251":-1,"72252":-1,"72253":2685,"72254":-1,"72255":-1,"72256":2684,"72257":-1,"72258":-1,"72259":-1,"72260":-1,"72261":-1,"72262":-1,"72263":-1,"72264":-1,"72265":-1,"72266":-1,"72267":-1,"72268":-1,"72269":-1,"72270":-1,"72271":-1,"72272":2682,"72273":-1,"72274":-1,"72275":-1,"72276":-1,"72277":-1,"72278":-1,"72279":-1,"72280":-1,"72281":-1,"72282":-1,"72283":-1,"72284":-1,"72285":-1,"72286":-1,"72287":0,"72288":-1,"72289":-1,"72290":-1,"72291":-1,"72292":-1,"72293":-1,"72294":-1,"72295":2681,"72296":0,"72297":-1,"72298":-1,"72299":-1,"72300":-1,"72301":2682,"72302":-1,"72303":0,"72304":-1,"72305":-1,"72306":-1,"72307":-1,"72308":-1,"72309":-1,"72310":-1,"72311":-1,"72312":0,"72313":-1,"72314":-1,"72315":-1,"72316":-1,"72317":-1,"72318":-1,"72319":-1,"72320":-1,"72321":-1,"72322":-1,"72323":-1,"72324":-1,"72325":-1,"72326":-1,"72327":-1,"72328":-1,"72329":-1,"72330":-1,"72331":-1,"72332":2686,"72333":-1,"72334":-1,"72335":-1,"72336":-1,"72337":-1,"72338":-1,"72339":-1,"72340":-1,"72341":-1,"72342":-1,"72343":-1,"72344":-1,"72345":-1,"72346":-1,"72347":-1,"72348":-1,"72349":-1,"72350":-1,"72351":-1,"72352":-1,"72353":2682,"72354":-1,"72355":-1,"72356":-1,"72357":-1,"72358":-1,"72359":-1,"72360":-1,"72361":-1,"72362":2684,"72363":-1,"72364":-1,"72365":2683,"72366":-1,"72367":2687,"72368":-1,"72369":-1,"72370":-1,"72371":-1,"72372":-1,"72373":2681,"72374":-1,"72375":-1,"72376":-1,"72377":-1,"72378":-1,"72379":-1,"72380":-1,"72381":-1,"72382":-1,"72383":2682,"72384":-1,"72385":-1,"72386":-1,"72387":-1,"72388":-1,"72389":-1,"72390":-1,"72391":-1,"72392":-1,"72393":-1,"72394":-1,"72395":-1,"72396":2681,"72397":2684,"72398":-1,"72399":-1,"72400":-1,"72401":-1,"72402":2685,"72403":-1,"72404":-1,"72405":-1,"72406":-1,"72407":0,"72408":-1,"72409":2685,"72410":-1,"72411":-1,"72412":-1,"72413":-1,"72414":-1,"72415":0,"72416":-1,"72417":2681,"72418":-1,"72419":-1,"72420":-1,"72421":0,"72422":-1,"72423":-1,"72424":2685,"72425":-1,"72426":-1,"72427":-1,"72428":-1,"72429":-1,"72430":-1,"72431":-1,"72432":-1,"72433":2685,"72434":-1,"72435":-1,"72436":-1,"72437":2686,"72438":-1,"72439":-1,"72440":2684,"72441":-1,"72442":-1,"72443":-1,"72444":-1,"72445":-1,"72446":-1,"72447":2684,"72448":-1,"72449":-1,"72450":-1,"72451":-1,"72452":2686,"72453":-1,"72454":-1,"72455":2685,"72456":2682,"72457":-1,"72458":-1,"72459":-1,"72460":2683,"72461":-1,"72462":-1,"72463":-1,"72464":-1,"72465":-1,"72466":-1,"72467":2687,"72468":-1,"72469":-1,"72470":-1,"72471":-1,"72472":2682,"72473":-1,"72474":-1,"72475":-1,"72476":0,"72477":-1,"72478":2682,"72479":-1,"72480":-1,"72481":-1,"72482":-1,"72483":-1,"72484":-1,"72485":-1,"72486":-1,"72487":-1,"72488":-1,"72489":-1,"72490":2684,"72491":-1,"72492":-1,"72493":-1,"72494":-1,"72495":-1,"72496":-1,"72497":-1,"72498":-1,"72499":2684,"72500":-1,"72501":-1,"72502":-1,"72503":0,"72504":-1,"72505":-1,"72506":-1,"72507":-1,"72508":0,"72509":-1,"72510":2684,"72511":-1,"72512":-1,"72513":-1,"72514":-1,"72515":-1,"72516":-1,"72517":-1,"72518":-1,"72519":2684,"72520":-1,"72521":-1,"72522":-1,"72523":-1,"72524":-1,"72525":-1,"72526":-1,"72527":-1,"72528":-1,"72529":-1,"72530":-1,"72531":-1,"72532":-1,"72533":-1,"72534":-1,"72535":-1,"72536":-1,"72537":-1,"72538":-1,"72539":-1,"72540":2685,"72541":-1,"72542":-1,"72543":-1,"72544":-1,"72545":-1,"72546":2683,"72547":-1,"72548":-1,"72549":-1,"72550":-1,"72551":-1,"72552":0,"72553":2682,"72554":-1,"72555":-1,"72556":0,"72557":-1,"72558":-1,"72559":-1,"72560":0,"72561":-1,"72562":-1,"72563":-1,"72564":-1,"72565":2684,"72566":-1,"72567":-1,"72568":-1,"72569":-1,"72570":-1,"72571":0,"72572":-1,"72573":-1,"72574":-1,"72575":-1,"72576":-1,"72577":-1,"72578":-1,"72579":-1,"72580":-1,"72581":-1,"72582":-1,"72583":-1,"72584":-1,"72585":-1,"72586":-1,"72587":-1,"72588":-1,"72589":-1,"72590":-1,"72591":-1,"72592":-1,"72593":-1,"72594":-1,"72595":-1,"72596":2685,"72597":2684,"72598":-1,"72599":-1,"72600":-1,"72601":-1,"72602":-1,"72603":-1,"72604":-1,"72605":-1,"72606":-1,"72607":-1,"72608":-1,"72609":-1,"72610":-1,"72611":-1,"72612":-1,"72613":0,"72614":2687,"72615":2684,"72616":-1,"72617":-1,"72618":-1,"72619":-1,"72620":-1,"72621":-1,"72622":-1,"72623":0,"72624":-1,"72625":-1,"72626":-1,"72627":-1,"72628":-1,"72629":-1,"72630":2681,"72631":-1,"72632":-1,"72633":2684,"72634":-1,"72635":-1,"72636":2684,"72637":-1,"72638":2683,"72639":-1,"72640":-1,"72641":-1,"72642":-1,"72643":-1,"72644":-1,"72645":-1,"72646":-1,"72647":-1,"72648":2681,"72649":2687,"72650":-1,"72651":-1,"72652":2684,"72653":-1,"72654":-1,"72655":-1,"72656":-1,"72657":-1,"72658":-1,"72659":-1,"72660":-1,"72661":-1,"72662":-1,"72663":-1,"72664":-1,"72665":-1,"72666":-1,"72667":-1,"72668":-1,"72669":-1,"72670":-1,"72671":0,"72672":-1,"72673":-1,"72674":-1,"72675":-1,"72676":-1,"72677":2682,"72678":2684,"72679":0,"72680":-1,"72681":-1,"72682":0,"72683":-1,"72684":0,"72685":0,"72686":-1,"72687":-1,"72688":-1,"72689":-1,"72690":-1,"72691":-1,"72692":-1,"72693":-1,"72694":2686,"72695":-1,"72696":2681,"72697":-1,"72698":-1,"72699":-1,"72700":-1,"72701":-1,"72702":-1,"72703":-1,"72704":2683,"72705":-1,"72706":-1,"72707":-1,"72708":-1,"72709":0,"72710":2686,"72711":-1,"72712":-1,"72713":-1,"72714":2686,"72715":-1,"72716":-1,"72717":-1,"72718":-1,"72719":-1,"72720":-1,"72721":-1,"72722":-1,"72723":2687,"72724":-1,"72725":-1,"72726":-1,"72727":-1,"72728":-1,"72729":-1,"72730":-1,"72731":-1,"72732":-1,"72733":2686,"72734":-1,"72735":-1,"72736":-1,"72737":-1,"72738":-1,"72739":-1,"72740":-1,"72741":-1,"72742":-1,"72743":-1,"72744":-1,"72745":-1,"72746":-1,"72747":2684,"72748":-1,"72749":-1,"72750":-1,"72751":-1,"72752":-1,"72753":-1,"72754":-1,"72755":-1,"72756":-1,"72757":0,"72758":-1,"72759":-1,"72760":-1,"72761":-1,"72762":-1,"72763":-1,"72764":-1,"72765":-1,"72766":2682,"72767":2681,"72768":-1,"72769":-1,"72770":-1,"72771":-1,"72772":0,"72773":-1,"72774":-1,"72775":-1,"72776":-1,"72777":-1,"72778":-1,"72779":-1,"72780":-1,"72781":2686,"72782":-1,"72783":2685,"72784":-1,"72785":-1,"72786":-1,"72787":-1,"72788":-1,"72789":-1,"72790":-1,"72791":-1,"72792":-1,"72793":-1,"72794":-1,"72795":-1,"72796":-1,"72797":-1,"72798":-1,"72799":-1,"72800":-1,"72801":2686,"72802":-1,"72803":-1,"72804":-1,"72805":0,"72806":-1,"72807":-1,"72808":-1,"72809":-1,"72810":-1,"72811":2685,"72812":-1,"72813":-1,"72814":-1,"72815":-1,"72816":-1,"72817":2684,"72818":-1,"72819":-1,"72820":-1,"72821":-1,"72822":-1,"72823":2682,"72824":-1,"72825":-1,"72826":2686,"72827":-1,"72828":-1,"72829":-1,"72830":-1,"72831":-1,"72832":0,"72833":2684,"72834":0,"72835":-1,"72836":-1,"72837":-1,"72838":-1,"72839":-1,"72840":-1,"72841":-1,"72842":2683,"72843":-1,"72844":-1,"72845":2686,"72846":-1,"72847":-1,"72848":-1,"72849":-1,"72850":-1,"72851":-1,"72852":-1,"72853":-1,"72854":-1,"72855":-1,"72856":-1,"72857":-1,"72858":-1,"72859":2683,"72860":-1,"72861":-1,"72862":-1,"72863":0,"72864":-1,"72865":-1,"72866":-1,"72867":-1,"72868":-1,"72869":-1,"72870":-1,"72871":-1,"72872":-1,"72873":-1,"72874":2681,"72875":-1,"72876":-1,"72877":-1,"72878":-1,"72879":-1,"72880":-1,"72881":-1,"72882":-1,"72883":-1,"72884":-1,"72885":-1,"72886":-1,"72887":-1,"72888":2686,"72889":0,"72890":-1,"72891":-1,"72892":-1,"72893":2682,"72894":-1,"72895":-1,"72896":-1,"72897":-1,"72898":-1,"72899":-1,"72900":-1,"72901":-1,"72902":2683,"72903":-1,"72904":-1,"72905":2686,"72906":-1,"72907":-1,"72908":-1,"72909":2684,"72910":-1,"72911":-1,"72912":-1,"72913":-1,"72914":-1,"72915":0,"72916":-1,"72917":-1,"72918":-1,"72919":-1,"72920":-1,"72921":-1,"72922":-1,"72923":-1,"72924":-1,"72925":-1,"72926":-1,"72927":-1,"72928":-1,"72929":-1,"72930":-1,"72931":-1,"72932":-1,"72933":-1,"72934":2686,"72935":-1,"72936":-1,"72937":-1,"72938":-1,"72939":-1,"72940":-1,"72941":-1,"72942":2681,"72943":-1,"72944":2682,"72945":-1,"72946":-1,"72947":-1,"72948":-1,"72949":-1,"72950":-1,"72951":-1,"72952":-1,"72953":-1,"72954":-1,"72955":-1,"72956":-1,"72957":2681,"72958":-1,"72959":-1,"72960":-1,"72961":-1,"72962":-1,"72963":-1,"72964":-1,"72965":-1,"72966":-1,"72967":-1,"72968":-1,"72969":-1,"72970":-1,"72971":-1,"72972":-1,"72973":-1,"72974":-1,"72975":-1,"72976":-1,"72977":-1,"72978":-1,"72979":-1,"72980":-1,"72981":-1,"72982":-1,"72983":-1,"72984":-1,"72985":-1,"72986":-1,"72987":-1,"72988":-1,"72989":-1,"72990":2684,"72991":2686,"72992":-1,"72993":-1,"72994":-1,"72995":-1,"72996":-1,"72997":-1,"72998":0,"72999":-1,"73000":-1,"73001":-1,"73002":-1,"73003":-1,"73004":0,"73005":-1,"73006":-1,"73007":-1,"73008":2686,"73009":-1,"73010":2683,"73011":-1,"73012":-1,"73013":-1,"73014":-1,"73015":2683,"73016":-1,"73017":-1,"73018":-1,"73019":2684,"73020":-1,"73021":2684,"73022":-1,"73023":2686,"73024":-1,"73025":-1,"73026":-1,"73027":2686,"73028":-1,"73029":-1,"73030":-1,"73031":-1,"73032":-1,"73033":0,"73034":2685,"73035":-1,"73036":-1,"73037":-1,"73038":-1,"73039":-1,"73040":-1,"73041":-1,"73042":-1,"73043":-1,"73044":-1,"73045":-1,"73046":-1,"73047":2683,"73048":0,"73049":-1,"73050":-1,"73051":2685,"73052":2686,"73053":-1,"73054":0,"73055":-1,"73056":-1,"73057":-1,"73058":-1,"73059":-1,"73060":-1,"73061":-1,"73062":-1,"73063":-1,"73064":2686,"73065":-1,"73066":-1,"73067":-1,"73068":-1,"73069":-1,"73070":2681,"73071":0,"73072":0,"73073":-1,"73074":-1,"73075":-1,"73076":-1,"73077":-1,"73078":-1,"73079":-1,"73080":-1,"73081":-1,"73082":2682,"73083":-1,"73084":-1,"73085":-1,"73086":-1,"73087":-1,"73088":-1,"73089":-1,"73090":-1,"73091":-1,"73092":2683,"73093":-1,"73094":2687,"73095":-1,"73096":0,"73097":2681,"73098":-1,"73099":-1,"73100":-1,"73101":-1,"73102":-1,"73103":-1,"73104":-1,"73105":-1,"73106":-1,"73107":-1,"73108":-1,"73109":-1,"73110":-1,"73111":0,"73112":-1,"73113":-1,"73114":-1,"73115":2683,"73116":-1,"73117":-1,"73118":-1,"73119":-1,"73120":-1,"73121":-1,"73122":0,"73123":-1,"73124":-1,"73125":-1,"73126":-1,"73127":-1,"73128":-1,"73129":-1,"73130":-1,"73131":-1,"73132":2686,"73133":-1,"73134":-1,"73135":-1,"73136":-1,"73137":-1,"73138":-1,"73139":-1,"73140":2681,"73141":-1,"73142":-1,"73143":-1,"73144":2685,"73145":-1,"73146":-1,"73147":-1,"73148":-1,"73149":2687,"73150":-1,"73151":-1,"73152":-1,"73153":-1,"73154":-1,"73155":-1,"73156":-1,"73157":-1,"73158":2685,"73159":-1,"73160":-1,"73161":-1,"73162":-1,"73163":-1,"73164":-1,"73165":-1,"73166":-1,"73167":-1,"73168":2683,"73169":-1,"73170":-1,"73171":-1,"73172":-1,"73173":-1,"73174":2684,"73175":-1,"73176":-1,"73177":-1,"73178":-1,"73179":-1,"73180":-1,"73181":-1,"73182":-1,"73183":-1,"73184":-1,"73185":-1,"73186":-1,"73187":0,"73188":-1,"73189":-1,"73190":-1,"73191":-1,"73192":2682,"73193":-1,"73194":-1,"73195":2683,"73196":-1,"73197":2685,"73198":2683,"73199":-1,"73200":-1,"73201":2685,"73202":-1,"73203":-1,"73204":-1,"73205":-1,"73206":-1,"73207":-1,"73208":-1,"73209":2687,"73210":-1,"73211":-1,"73212":-1,"73213":-1,"73214":2684,"73215":2685,"73216":-1,"73217":-1,"73218":-1,"73219":-1,"73220":-1,"73221":-1,"73222":-1,"73223":-1,"73224":-1,"73225":-1,"73226":-1,"73227":-1,"73228":-1,"73229":-1,"73230":2686,"73231":-1,"73232":-1,"73233":-1,"73234":-1,"73235":-1,"73236":-1,"73237":-1,"73238":-1,"73239":-1,"73240":-1,"73241":-1,"73242":-1,"73243":-1,"73244":2681,"73245":-1,"73246":-1,"73247":-1,"73248":-1,"73249":-1,"73250":2684,"73251":-1,"73252":-1,"73253":-1,"73254":-1,"73255":-1,"73256":-1,"73257":-1,"73258":-1,"73259":-1,"73260":-1,"73261":-1,"73262":-1,"73263":-1,"73264":-1,"73265":2684,"73266":-1,"73267":-1,"73268":-1,"73269":-1,"73270":-1,"73271":-1,"73272":-1,"73273":-1,"73274":-1,"73275":-1,"73276":-1,"73277":-1,"73278":0,"73279":-1,"73280":-1,"73281":-1,"73282":-1,"73283":0,"73284":-1,"73285":2685,"73286":-1,"73287":-1,"73288":-1,"73289":2681,"73290":-1,"73291":-1,"73292":-1,"73293":-1,"73294":-1,"73295":-1,"73296":2682,"73297":-1,"73298":-1,"73299":-1,"73300":-1,"73301":-1,"73302":-1,"73303":-1,"73304":-1,"73305":-1,"73306":0,"73307":-1,"73308":2684,"73309":-1,"73310":2683,"73311":-1,"73312":-1,"73313":-1,"73314":-1,"73315":-1,"73316":-1,"73317":-1,"73318":-1,"73319":-1,"73320":-1,"73321":2685,"73322":-1,"73323":2683,"73324":-1,"73325":-1,"73326":-1,"73327":-1,"73328":2683,"73329":2685,"73330":-1,"73331":-1,"73332":-1,"73333":2685,"73334":-1,"73335":2686,"73336":2684,"73337":-1,"73338":-1,"73339":2683,"73340":-1,"73341":-1,"73342":-1,"73343":-1,"73344":-1,"73345":-1,"73346":-1,"73347":-1,"73348":-1,"73349":0,"73350":-1,"73351":-1,"73352":2687,"73353":-1,"73354":-1,"73355":2686,"73356":-1,"73357":-1,"73358":-1,"73359":-1,"73360":-1,"73361":-1,"73362":2683,"73363":2682,"73364":-1,"73365":2684,"73366":-1,"73367":0,"73368":-1,"73369":-1,"73370":-1,"73371":-1,"73372":2686,"73373":-1,"73374":-1,"73375":-1,"73376":-1,"73377":-1,"73378":-1,"73379":-1,"73380":-1,"73381":-1,"73382":0,"73383":-1,"73384":2686,"73385":-1,"73386":-1,"73387":-1,"73388":2683,"73389":-1,"73390":-1,"73391":-1,"73392":-1,"73393":-1,"73394":-1,"73395":-1,"73396":-1,"73397":-1,"73398":0,"73399":-1,"73400":-1,"73401":-1,"73402":-1,"73403":2685,"73404":-1,"73405":2685,"73406":-1,"73407":2684,"73408":-1,"73409":-1,"73410":-1,"73411":-1,"73412":-1,"73413":-1,"73414":-1,"73415":2684,"73416":-1,"73417":-1,"73418":2682,"73419":-1,"73420":-1,"73421":2686,"73422":-1,"73423":0,"73424":-1,"73425":2683,"73426":-1,"73427":-1,"73428":-1,"73429":-1,"73430":-1,"73431":-1,"73432":-1,"73433":2685,"73434":-1,"73435":-1,"73436":-1,"73437":-1,"73438":-1,"73439":-1,"73440":-1,"73441":-1,"73442":-1,"73443":-1,"73444":-1,"73445":-1,"73446":-1,"73447":-1,"73448":-1,"73449":-1,"73450":-1,"73451":2685,"73452":-1,"73453":2684,"73454":-1,"73455":-1,"73456":2682,"73457":2686,"73458":-1,"73459":-1,"73460":-1,"73461":-1,"73462":-1,"73463":-1,"73464":-1,"73465":-1,"73466":-1,"73467":-1,"73468":-1,"73469":-1,"73470":-1,"73471":-1,"73472":-1,"73473":-1,"73474":-1,"73475":-1,"73476":-1,"73477":-1,"73478":-1,"73479":-1,"73480":-1,"73481":0,"73482":-1,"73483":-1,"73484":-1,"73485":-1,"73486":-1,"73487":-1,"73488":2685,"73489":-1,"73490":-1,"73491":-1,"73492":-1,"73493":-1,"73494":-1,"73495":-1,"73496":-1,"73497":-1,"73498":-1,"73499":-1,"73500":-1,"73501":-1,"73502":-1,"73503":-1,"73504":-1,"73505":-1,"73506":-1,"73507":-1,"73508":0,"73509":-1,"73510":-1,"73511":-1,"73512":-1,"73513":-1,"73514":-1,"73515":-1,"73516":-1,"73517":0,"73518":-1,"73519":2687,"73520":-1,"73521":-1,"73522":2685,"73523":-1,"73524":-1,"73525":-1,"73526":-1,"73527":-1,"73528":2687,"73529":-1,"73530":-1,"73531":-1,"73532":-1,"73533":-1,"73534":-1,"73535":-1,"73536":2685,"73537":2682,"73538":-1,"73539":-1,"73540":-1,"73541":-1,"73542":-1,"73543":-1,"73544":-1,"73545":-1,"73546":-1,"73547":-1,"73548":-1,"73549":-1,"73550":-1,"73551":-1,"73552":-1,"73553":2686,"73554":-1,"73555":-1,"73556":2684,"73557":2684,"73558":2685,"73559":-1,"73560":-1,"73561":-1,"73562":-1,"73563":-1,"73564":-1,"73565":-1,"73566":-1,"73567":-1,"73568":-1,"73569":-1,"73570":-1,"73571":-1,"73572":-1,"73573":2683,"73574":2681,"73575":-1,"73576":-1,"73577":-1,"73578":-1,"73579":2686,"73580":-1,"73581":-1,"73582":-1,"73583":-1,"73584":-1,"73585":-1,"73586":2684,"73587":-1,"73588":-1,"73589":0,"73590":-1,"73591":2682,"73592":-1,"73593":-1,"73594":-1,"73595":-1,"73596":2684,"73597":-1,"73598":-1,"73599":-1,"73600":-1,"73601":-1,"73602":-1,"73603":-1,"73604":-1,"73605":-1,"73606":-1,"73607":-1,"73608":-1,"73609":0,"73610":2685,"73611":-1,"73612":-1,"73613":-1,"73614":-1,"73615":-1,"73616":-1,"73617":-1,"73618":-1,"73619":0,"73620":-1,"73621":-1,"73622":-1,"73623":-1,"73624":-1,"73625":2683,"73626":0,"73627":-1,"73628":-1,"73629":-1,"73630":-1,"73631":-1,"73632":-1,"73633":-1,"73634":-1,"73635":-1,"73636":-1,"73637":-1,"73638":-1,"73639":2683,"73640":-1,"73641":-1,"73642":-1,"73643":-1,"73644":-1,"73645":-1,"73646":-1,"73647":-1,"73648":-1,"73649":-1,"73650":-1,"73651":2683,"73652":2685,"73653":-1,"73654":-1,"73655":-1,"73656":2684,"73657":-1,"73658":-1,"73659":-1,"73660":-1,"73661":-1,"73662":-1,"73663":-1,"73664":-1,"73665":-1,"73666":-1,"73667":-1,"73668":-1,"73669":-1,"73670":-1,"73671":-1,"73672":-1,"73673":-1,"73674":-1,"73675":-1,"73676":-1,"73677":2684,"73678":0,"73679":-1,"73680":-1,"73681":-1,"73682":-1,"73683":-1,"73684":2686,"73685":-1,"73686":-1,"73687":0,"73688":-1,"73689":-1,"73690":-1,"73691":-1,"73692":-1,"73693":-1,"73694":-1,"73695":0,"73696":-1,"73697":0,"73698":-1,"73699":-1,"73700":-1,"73701":2684,"73702":-1,"73703":-1,"73704":-1,"73705":-1,"73706":2682,"73707":-1,"73708":-1,"73709":-1,"73710":-1,"73711":-1,"73712":-1,"73713":-1,"73714":-1,"73715":-1,"73716":-1,"73717":-1,"73718":-1,"73719":-1,"73720":-1,"73721":-1,"73722":-1,"73723":-1,"73724":-1,"73725":-1,"73726":-1,"73727":-1,"73728":-1,"73729":-1,"73730":-1,"73731":-1,"73732":-1,"73733":-1,"73734":2685,"73735":2686,"73736":-1,"73737":2686,"73738":-1,"73739":-1,"73740":-1,"73741":-1,"73742":-1,"73743":-1,"73744":-1,"73745":2687,"73746":-1,"73747":-1,"73748":0,"73749":2686,"73750":-1,"73751":-1,"73752":-1,"73753":-1,"73754":2683,"73755":2683,"73756":-1,"73757":-1,"73758":-1,"73759":-1,"73760":-1,"73761":-1,"73762":-1,"73763":2683,"73764":-1,"73765":-1,"73766":-1,"73767":-1,"73768":-1,"73769":-1,"73770":-1,"73771":-1,"73772":-1,"73773":-1,"73774":-1,"73775":-1,"73776":-1,"73777":-1,"73778":2684,"73779":-1,"73780":-1,"73781":2681,"73782":-1,"73783":-1,"73784":-1,"73785":-1,"73786":-1,"73787":-1,"73788":-1,"73789":2682,"73790":-1,"73791":2686,"73792":-1,"73793":-1,"73794":2687,"73795":-1,"73796":0,"73797":-1,"73798":-1,"73799":2686,"73800":-1,"73801":-1,"73802":-1,"73803":-1,"73804":-1,"73805":-1,"73806":-1},"indivfacid_2":{"0":2119,"1":220,"2":0,"3":-1,"4":2078,"5":-1,"6":2427,"7":0,"8":-1,"9":2176,"10":0,"11":137,"12":2560,"13":0,"14":0,"15":-1,"16":2335,"17":30,"18":0,"19":0,"20":-1,"21":0,"22":2266,"23":448,"24":9,"25":-1,"26":0,"27":0,"28":-1,"29":0,"30":0,"31":-1,"32":2644,"33":-1,"34":-1,"35":-1,"36":0,"37":-1,"38":-1,"39":0,"40":-1,"41":-1,"42":35,"43":-1,"44":2661,"45":-1,"46":2390,"47":0,"48":-1,"49":0,"50":-1,"51":0,"52":2279,"53":2202,"54":2663,"55":2510,"56":2472,"57":0,"58":0,"59":-1,"60":-1,"61":2596,"62":2625,"63":0,"64":0,"65":0,"66":-1,"67":96,"68":0,"69":2470,"70":0,"71":0,"72":0,"73":460,"74":-1,"75":0,"76":0,"77":0,"78":2387,"79":0,"80":2369,"81":107,"82":-1,"83":2152,"84":0,"85":0,"86":2518,"87":0,"88":-1,"89":0,"90":0,"91":-1,"92":-1,"93":-1,"94":-1,"95":2613,"96":0,"97":2071,"98":-1,"99":0,"100":662,"101":0,"102":2351,"103":168,"104":-1,"105":0,"106":0,"107":-1,"108":0,"109":0,"110":25,"111":-1,"112":-1,"113":-1,"114":2145,"115":0,"116":0,"117":-1,"118":0,"119":0,"120":2022,"121":2021,"122":-1,"123":2036,"124":-1,"125":-1,"126":-1,"127":-1,"128":0,"129":0,"130":0,"131":-1,"132":2396,"133":0,"134":2397,"135":-1,"136":2117,"137":0,"138":2476,"139":-1,"140":-1,"141":0,"142":133,"143":0,"144":2357,"145":0,"146":42,"147":0,"148":2347,"149":-1,"150":0,"151":0,"152":-1,"153":-1,"154":299,"155":2359,"156":0,"157":187,"158":-1,"159":0,"160":0,"161":2665,"162":-1,"163":-1,"164":0,"165":0,"166":0,"167":-1,"168":0,"169":0,"170":0,"171":-1,"172":-1,"173":0,"174":-1,"175":0,"176":0,"177":262,"178":-1,"179":2283,"180":-1,"181":2153,"182":0,"183":0,"184":0,"185":-1,"186":0,"187":0,"188":45,"189":-1,"190":0,"191":2083,"192":0,"193":0,"194":2657,"195":2062,"196":-1,"197":2456,"198":237,"199":0,"200":-1,"201":0,"202":2521,"203":-1,"204":0,"205":-1,"206":0,"207":-1,"208":-1,"209":-1,"210":0,"211":578,"212":2121,"213":2094,"214":0,"215":-1,"216":2140,"217":2300,"218":-1,"219":0,"220":2192,"221":0,"222":0,"223":-1,"224":0,"225":0,"226":-1,"227":0,"228":-1,"229":0,"230":118,"231":293,"232":-1,"233":2627,"234":-1,"235":0,"236":-1,"237":-1,"238":0,"239":-1,"240":0,"241":0,"242":475,"243":-1,"244":0,"245":0,"246":-1,"247":246,"248":102,"249":-1,"250":894,"251":-1,"252":0,"253":0,"254":0,"255":0,"256":-1,"257":645,"258":-1,"259":0,"260":0,"261":0,"262":2027,"263":2640,"264":0,"265":-1,"266":341,"267":0,"268":-1,"269":217,"270":2615,"271":-1,"272":-1,"273":0,"274":-1,"275":-1,"276":0,"277":0,"278":-1,"279":64,"280":-1,"281":-1,"282":2430,"283":0,"284":0,"285":-1,"286":0,"287":0,"288":-1,"289":0,"290":-1,"291":2471,"292":0,"293":0,"294":0,"295":-1,"296":0,"297":2214,"298":0,"299":280,"300":0,"301":0,"302":0,"303":-1,"304":0,"305":-1,"306":-1,"307":0,"308":7,"309":2023,"310":-1,"311":2000,"312":327,"313":0,"314":0,"315":0,"316":0,"317":0,"318":-1,"319":0,"320":0,"321":0,"322":104,"323":0,"324":0,"325":2292,"326":-1,"327":2098,"328":0,"329":0,"330":0,"331":0,"332":0,"333":2157,"334":-1,"335":-1,"336":-1,"337":0,"338":0,"339":2446,"340":0,"341":0,"342":0,"343":-1,"344":0,"345":-1,"346":0,"347":-1,"348":0,"349":2175,"350":0,"351":-1,"352":-1,"353":0,"354":0,"355":-1,"356":0,"357":701,"358":0,"359":2105,"360":0,"361":735,"362":0,"363":0,"364":-1,"365":2318,"366":-1,"367":2379,"368":8,"369":0,"370":0,"371":0,"372":-1,"373":0,"374":-1,"375":-1,"376":2261,"377":0,"378":-1,"379":0,"380":-1,"381":2076,"382":663,"383":2429,"384":584,"385":-1,"386":0,"387":0,"388":2107,"389":-1,"390":0,"391":-1,"392":0,"393":0,"394":0,"395":2585,"396":2352,"397":2163,"398":0,"399":2376,"400":0,"401":0,"402":-1,"403":0,"404":0,"405":2007,"406":-1,"407":705,"408":547,"409":2248,"410":0,"411":-1,"412":0,"413":0,"414":0,"415":-1,"416":-1,"417":44,"418":0,"419":2071,"420":-1,"421":0,"422":0,"423":0,"424":-1,"425":-1,"426":2404,"427":-1,"428":-1,"429":0,"430":14,"431":0,"432":2183,"433":-1,"434":0,"435":-1,"436":-1,"437":2241,"438":0,"439":2254,"440":-1,"441":2585,"442":-1,"443":2463,"444":2149,"445":0,"446":-1,"447":-1,"448":-1,"449":-1,"450":0,"451":0,"452":-1,"453":0,"454":-1,"455":67,"456":2526,"457":0,"458":-1,"459":0,"460":-1,"461":0,"462":0,"463":0,"464":0,"465":0,"466":281,"467":-1,"468":0,"469":2156,"470":2260,"471":-1,"472":2455,"473":284,"474":0,"475":0,"476":0,"477":0,"478":0,"479":0,"480":0,"481":0,"482":0,"483":-1,"484":2219,"485":2265,"486":0,"487":-1,"488":-1,"489":-1,"490":-1,"491":-1,"492":-1,"493":0,"494":-1,"495":0,"496":-1,"497":-1,"498":-1,"499":0,"500":2192,"501":-1,"502":455,"503":0,"504":0,"505":0,"506":0,"507":0,"508":-1,"509":2629,"510":0,"511":0,"512":-1,"513":0,"514":0,"515":0,"516":0,"517":-1,"518":0,"519":0,"520":0,"521":-1,"522":38,"523":0,"524":0,"525":2577,"526":98,"527":0,"528":0,"529":0,"530":-1,"531":2196,"532":-1,"533":2144,"534":0,"535":0,"536":0,"537":-1,"538":0,"539":2615,"540":2541,"541":2541,"542":2,"543":2612,"544":-1,"545":-1,"546":-1,"547":-1,"548":0,"549":-1,"550":-1,"551":0,"552":-1,"553":0,"554":0,"555":-1,"556":0,"557":2341,"558":0,"559":2606,"560":663,"561":0,"562":0,"563":0,"564":0,"565":0,"566":-1,"567":-1,"568":0,"569":0,"570":0,"571":-1,"572":2562,"573":2354,"574":0,"575":-1,"576":0,"577":-1,"578":102,"579":2413,"580":2587,"581":0,"582":0,"583":0,"584":0,"585":-1,"586":0,"587":-1,"588":2463,"589":0,"590":2548,"591":0,"592":2048,"593":2112,"594":0,"595":0,"596":-1,"597":245,"598":0,"599":2213,"600":-1,"601":2636,"602":2387,"603":1996,"604":-1,"605":2544,"606":0,"607":353,"608":0,"609":496,"610":2300,"611":0,"612":0,"613":36,"614":2173,"615":0,"616":0,"617":524,"618":0,"619":-1,"620":2056,"621":-1,"622":0,"623":88,"624":-1,"625":-1,"626":-1,"627":2022,"628":0,"629":-1,"630":-1,"631":2639,"632":0,"633":-1,"634":0,"635":-1,"636":0,"637":0,"638":0,"639":-1,"640":0,"641":2324,"642":0,"643":0,"644":-1,"645":2417,"646":-1,"647":0,"648":-1,"649":-1,"650":2352,"651":0,"652":-1,"653":-1,"654":-1,"655":-1,"656":0,"657":-1,"658":0,"659":0,"660":-1,"661":0,"662":0,"663":0,"664":0,"665":0,"666":0,"667":-1,"668":-1,"669":0,"670":0,"671":-1,"672":-1,"673":0,"674":2118,"675":2033,"676":2351,"677":-1,"678":1998,"679":0,"680":-1,"681":310,"682":-1,"683":-1,"684":0,"685":2554,"686":0,"687":0,"688":2380,"689":-1,"690":0,"691":-1,"692":0,"693":-1,"694":0,"695":0,"696":0,"697":-1,"698":-1,"699":0,"700":0,"701":198,"702":402,"703":0,"704":2259,"705":2195,"706":448,"707":2270,"708":0,"709":0,"710":-1,"711":2607,"712":2133,"713":691,"714":-1,"715":2176,"716":2411,"717":0,"718":0,"719":-1,"720":0,"721":0,"722":0,"723":-1,"724":0,"725":0,"726":-1,"727":-1,"728":3,"729":2665,"730":2192,"731":-1,"732":-1,"733":-1,"734":2007,"735":-1,"736":2675,"737":-1,"738":0,"739":0,"740":0,"741":2274,"742":-1,"743":-1,"744":0,"745":-1,"746":0,"747":-1,"748":-1,"749":-1,"750":-1,"751":-1,"752":-1,"753":-1,"754":2233,"755":0,"756":0,"757":-1,"758":2235,"759":0,"760":0,"761":0,"762":2353,"763":0,"764":-1,"765":0,"766":0,"767":2025,"768":-1,"769":2169,"770":-1,"771":0,"772":-1,"773":-1,"774":0,"775":0,"776":0,"777":2034,"778":-1,"779":-1,"780":-1,"781":-1,"782":0,"783":2540,"784":0,"785":0,"786":0,"787":-1,"788":0,"789":0,"790":-1,"791":-1,"792":-1,"793":0,"794":-1,"795":-1,"796":0,"797":662,"798":-1,"799":864,"800":0,"801":0,"802":0,"803":0,"804":-1,"805":0,"806":-1,"807":-1,"808":0,"809":0,"810":-1,"811":-1,"812":0,"813":0,"814":-1,"815":2162,"816":-1,"817":-1,"818":0,"819":0,"820":2301,"821":0,"822":-1,"823":0,"824":-1,"825":0,"826":-1,"827":0,"828":0,"829":-1,"830":2233,"831":2390,"832":0,"833":-1,"834":-1,"835":0,"836":2429,"837":2219,"838":0,"839":284,"840":0,"841":-1,"842":0,"843":663,"844":0,"845":-1,"846":0,"847":-1,"848":2152,"849":-1,"850":-1,"851":0,"852":0,"853":-1,"854":-1,"855":-1,"856":0,"857":0,"858":0,"859":-1,"860":0,"861":0,"862":0,"863":2380,"864":0,"865":0,"866":13,"867":0,"868":-1,"869":-1,"870":-1,"871":0,"872":0,"873":0,"874":2206,"875":0,"876":436,"877":0,"878":0,"879":460,"880":2610,"881":0,"882":0,"883":2444,"884":-1,"885":0,"886":475,"887":0,"888":0,"889":0,"890":2230,"891":2442,"892":2277,"893":0,"894":2551,"895":-1,"896":-1,"897":0,"898":0,"899":0,"900":284,"901":0,"902":-1,"903":2068,"904":0,"905":-1,"906":0,"907":0,"908":2317,"909":0,"910":2619,"911":0,"912":2027,"913":0,"914":0,"915":0,"916":-1,"917":0,"918":0,"919":0,"920":-1,"921":-1,"922":2167,"923":-1,"924":104,"925":2365,"926":2499,"927":21,"928":0,"929":-1,"930":2284,"931":0,"932":2611,"933":-1,"934":0,"935":-1,"936":0,"937":-1,"938":2517,"939":0,"940":-1,"941":2135,"942":-1,"943":0,"944":0,"945":2594,"946":2151,"947":0,"948":2082,"949":-1,"950":-1,"951":-1,"952":1999,"953":-1,"954":705,"955":-1,"956":0,"957":2100,"958":2213,"959":0,"960":0,"961":-1,"962":0,"963":-1,"964":0,"965":-1,"966":-1,"967":298,"968":2649,"969":150,"970":0,"971":2246,"972":-1,"973":0,"974":0,"975":2125,"976":-1,"977":-1,"978":0,"979":2149,"980":2239,"981":2170,"982":-1,"983":2587,"984":-1,"985":-1,"986":312,"987":-1,"988":0,"989":-1,"990":0,"991":0,"992":-1,"993":0,"994":2443,"995":-1,"996":0,"997":826,"998":-1,"999":0,"1000":0,"1001":-1,"1002":-1,"1003":2645,"1004":199,"1005":0,"1006":0,"1007":-1,"1008":0,"1009":-1,"1010":-1,"1011":0,"1012":0,"1013":0,"1014":0,"1015":-1,"1016":2082,"1017":0,"1018":-1,"1019":2051,"1020":-1,"1021":2230,"1022":-1,"1023":2169,"1024":496,"1025":0,"1026":500,"1027":0,"1028":-1,"1029":353,"1030":-1,"1031":2153,"1032":-1,"1033":2124,"1034":-1,"1035":0,"1036":2060,"1037":-1,"1038":2549,"1039":0,"1040":0,"1041":0,"1042":0,"1043":0,"1044":-1,"1045":-1,"1046":0,"1047":-1,"1048":2119,"1049":-1,"1050":2047,"1051":2070,"1052":-1,"1053":-1,"1054":-1,"1055":0,"1056":2226,"1057":-1,"1058":13,"1059":2603,"1060":-1,"1061":2671,"1062":0,"1063":-1,"1064":2263,"1065":0,"1066":2005,"1067":0,"1068":2447,"1069":-1,"1070":-1,"1071":2570,"1072":0,"1073":2162,"1074":-1,"1075":-1,"1076":2214,"1077":2086,"1078":-1,"1079":2344,"1080":2176,"1081":0,"1082":-1,"1083":-1,"1084":2167,"1085":0,"1086":0,"1087":-1,"1088":-1,"1089":0,"1090":2519,"1091":-1,"1092":0,"1093":-1,"1094":-1,"1095":0,"1096":0,"1097":0,"1098":0,"1099":0,"1100":0,"1101":2450,"1102":0,"1103":0,"1104":2396,"1105":0,"1106":0,"1107":0,"1108":-1,"1109":-1,"1110":0,"1111":0,"1112":0,"1113":0,"1114":0,"1115":2532,"1116":-1,"1117":0,"1118":0,"1119":2370,"1120":0,"1121":0,"1122":2261,"1123":2492,"1124":0,"1125":0,"1126":-1,"1127":0,"1128":2467,"1129":0,"1130":0,"1131":0,"1132":2312,"1133":0,"1134":0,"1135":2649,"1136":0,"1137":0,"1138":-1,"1139":-1,"1140":0,"1141":-1,"1142":0,"1143":-1,"1144":65,"1145":-1,"1146":0,"1147":-1,"1148":0,"1149":567,"1150":0,"1151":-1,"1152":-1,"1153":0,"1154":0,"1155":2510,"1156":0,"1157":0,"1158":-1,"1159":0,"1160":-1,"1161":-1,"1162":2658,"1163":0,"1164":-1,"1165":0,"1166":-1,"1167":0,"1168":0,"1169":0,"1170":-1,"1171":0,"1172":0,"1173":-1,"1174":2381,"1175":-1,"1176":500,"1177":2476,"1178":88,"1179":0,"1180":0,"1181":906,"1182":0,"1183":-1,"1184":-1,"1185":0,"1186":0,"1187":0,"1188":-1,"1189":1997,"1190":2649,"1191":0,"1192":0,"1193":0,"1194":0,"1195":0,"1196":-1,"1197":0,"1198":-1,"1199":-1,"1200":-1,"1201":-1,"1202":-1,"1203":0,"1204":-1,"1205":-1,"1206":2002,"1207":0,"1208":-1,"1209":0,"1210":-1,"1211":2233,"1212":0,"1213":0,"1214":-1,"1215":0,"1216":-1,"1217":-1,"1218":2387,"1219":2501,"1220":2182,"1221":-1,"1222":0,"1223":496,"1224":777,"1225":-1,"1226":0,"1227":0,"1228":0,"1229":-1,"1230":0,"1231":2101,"1232":0,"1233":2439,"1234":0,"1235":-1,"1236":-1,"1237":-1,"1238":2565,"1239":-1,"1240":0,"1241":0,"1242":500,"1243":2429,"1244":483,"1245":30,"1246":0,"1247":-1,"1248":0,"1249":2239,"1250":-1,"1251":2319,"1252":0,"1253":0,"1254":602,"1255":0,"1256":-1,"1257":-1,"1258":0,"1259":2267,"1260":0,"1261":168,"1262":2184,"1263":2083,"1264":2645,"1265":0,"1266":9,"1267":-1,"1268":2664,"1269":894,"1270":-1,"1271":2454,"1272":-1,"1273":0,"1274":-1,"1275":0,"1276":2041,"1277":-1,"1278":0,"1279":2443,"1280":0,"1281":0,"1282":-1,"1283":0,"1284":0,"1285":-1,"1286":-1,"1287":-1,"1288":0,"1289":0,"1290":0,"1291":2176,"1292":0,"1293":0,"1294":-1,"1295":-1,"1296":0,"1297":0,"1298":-1,"1299":2432,"1300":-1,"1301":0,"1302":0,"1303":-1,"1304":-1,"1305":0,"1306":-1,"1307":2044,"1308":21,"1309":2117,"1310":2226,"1311":0,"1312":-1,"1313":-1,"1314":-1,"1315":0,"1316":292,"1317":0,"1318":0,"1319":-1,"1320":0,"1321":-1,"1322":-1,"1323":0,"1324":0,"1325":0,"1326":0,"1327":0,"1328":2198,"1329":2501,"1330":2325,"1331":2408,"1332":-1,"1333":-1,"1334":-1,"1335":0,"1336":0,"1337":-1,"1338":-1,"1339":-1,"1340":2290,"1341":-1,"1342":-1,"1343":0,"1344":0,"1345":-1,"1346":-1,"1347":0,"1348":-1,"1349":2428,"1350":-1,"1351":0,"1352":0,"1353":-1,"1354":0,"1355":0,"1356":2198,"1357":-1,"1358":-1,"1359":0,"1360":-1,"1361":0,"1362":0,"1363":2177,"1364":-1,"1365":2536,"1366":0,"1367":2438,"1368":2251,"1369":0,"1370":0,"1371":-1,"1372":-1,"1373":2524,"1374":-1,"1375":0,"1376":0,"1377":0,"1378":0,"1379":0,"1380":-1,"1381":0,"1382":0,"1383":0,"1384":-1,"1385":0,"1386":0,"1387":0,"1388":2522,"1389":0,"1390":-1,"1391":-1,"1392":120,"1393":2437,"1394":-1,"1395":-1,"1396":2358,"1397":-1,"1398":2046,"1399":-1,"1400":0,"1401":2078,"1402":-1,"1403":0,"1404":-1,"1405":0,"1406":0,"1407":-1,"1408":0,"1409":0,"1410":0,"1411":-1,"1412":-1,"1413":2266,"1414":0,"1415":0,"1416":2367,"1417":2148,"1418":0,"1419":2389,"1420":1994,"1421":0,"1422":0,"1423":2494,"1424":-1,"1425":0,"1426":-1,"1427":0,"1428":-1,"1429":-1,"1430":-1,"1431":0,"1432":0,"1433":0,"1434":0,"1435":0,"1436":0,"1437":0,"1438":2546,"1439":0,"1440":0,"1441":0,"1442":298,"1443":37,"1444":359,"1445":0,"1446":0,"1447":0,"1448":0,"1449":-1,"1450":-1,"1451":-1,"1452":0,"1453":-1,"1454":0,"1455":-1,"1456":-1,"1457":-1,"1458":0,"1459":0,"1460":0,"1461":-1,"1462":2082,"1463":2531,"1464":-1,"1465":-1,"1466":0,"1467":0,"1468":-1,"1469":0,"1470":0,"1471":-1,"1472":2162,"1473":-1,"1474":0,"1475":-1,"1476":0,"1477":-1,"1478":448,"1479":-1,"1480":-1,"1481":2466,"1482":2145,"1483":2527,"1484":0,"1485":-1,"1486":-1,"1487":0,"1488":0,"1489":1999,"1490":2355,"1491":0,"1492":-1,"1493":0,"1494":0,"1495":0,"1496":0,"1497":2207,"1498":-1,"1499":-1,"1500":0,"1501":-1,"1502":-1,"1503":-1,"1504":-1,"1505":0,"1506":-1,"1507":0,"1508":-1,"1509":0,"1510":1995,"1511":0,"1512":-1,"1513":0,"1514":-1,"1515":2095,"1516":0,"1517":2365,"1518":0,"1519":118,"1520":2047,"1521":118,"1522":0,"1523":0,"1524":-1,"1525":2353,"1526":0,"1527":-1,"1528":2114,"1529":-1,"1530":0,"1531":-1,"1532":-1,"1533":0,"1534":0,"1535":0,"1536":0,"1537":0,"1538":0,"1539":0,"1540":-1,"1541":-1,"1542":-1,"1543":-1,"1544":-1,"1545":0,"1546":-1,"1547":2496,"1548":0,"1549":0,"1550":-1,"1551":0,"1552":0,"1553":2212,"1554":-1,"1555":-1,"1556":2252,"1557":0,"1558":2082,"1559":-1,"1560":554,"1561":0,"1562":0,"1563":0,"1564":-1,"1565":0,"1566":-1,"1567":0,"1568":0,"1569":0,"1570":0,"1571":2299,"1572":17,"1573":2352,"1574":-1,"1575":0,"1576":0,"1577":2593,"1578":0,"1579":-1,"1580":-1,"1581":412,"1582":-1,"1583":-1,"1584":0,"1585":-1,"1586":-1,"1587":-1,"1588":0,"1589":0,"1590":0,"1591":0,"1592":58,"1593":-1,"1594":0,"1595":2276,"1596":-1,"1597":0,"1598":0,"1599":-1,"1600":0,"1601":-1,"1602":-1,"1603":0,"1604":-1,"1605":-1,"1606":0,"1607":0,"1608":0,"1609":0,"1610":2052,"1611":-1,"1612":2456,"1613":-1,"1614":2539,"1615":0,"1616":0,"1617":0,"1618":0,"1619":0,"1620":2375,"1621":0,"1622":-1,"1623":-1,"1624":-1,"1625":0,"1626":-1,"1627":-1,"1628":2127,"1629":2227,"1630":0,"1631":0,"1632":-1,"1633":0,"1634":0,"1635":0,"1636":-1,"1637":-1,"1638":0,"1639":2591,"1640":-1,"1641":2398,"1642":-1,"1643":0,"1644":2078,"1645":0,"1646":0,"1647":0,"1648":0,"1649":0,"1650":0,"1651":-1,"1652":-1,"1653":-1,"1654":0,"1655":313,"1656":-1,"1657":-1,"1658":0,"1659":0,"1660":0,"1661":-1,"1662":-1,"1663":-1,"1664":0,"1665":2219,"1666":0,"1667":-1,"1668":2599,"1669":0,"1670":0,"1671":0,"1672":0,"1673":0,"1674":0,"1675":1999,"1676":0,"1677":2046,"1678":0,"1679":0,"1680":-1,"1681":333,"1682":2563,"1683":-1,"1684":2180,"1685":2209,"1686":2239,"1687":-1,"1688":0,"1689":-1,"1690":2361,"1691":0,"1692":0,"1693":0,"1694":-1,"1695":0,"1696":0,"1697":0,"1698":2590,"1699":787,"1700":0,"1701":-1,"1702":-1,"1703":0,"1704":-1,"1705":0,"1706":-1,"1707":0,"1708":-1,"1709":80,"1710":0,"1711":-1,"1712":-1,"1713":0,"1714":0,"1715":0,"1716":0,"1717":-1,"1718":-1,"1719":-1,"1720":620,"1721":-1,"1722":2111,"1723":2647,"1724":0,"1725":-1,"1726":-1,"1727":2159,"1728":-1,"1729":2100,"1730":0,"1731":0,"1732":0,"1733":0,"1734":0,"1735":-1,"1736":0,"1737":-1,"1738":2429,"1739":-1,"1740":2306,"1741":701,"1742":245,"1743":2592,"1744":551,"1745":-1,"1746":0,"1747":0,"1748":2329,"1749":0,"1750":0,"1751":2488,"1752":2039,"1753":-1,"1754":10,"1755":2159,"1756":0,"1757":0,"1758":0,"1759":2297,"1760":0,"1761":0,"1762":2440,"1763":-1,"1764":-1,"1765":0,"1766":0,"1767":2224,"1768":-1,"1769":-1,"1770":2264,"1771":-1,"1772":-1,"1773":2055,"1774":0,"1775":0,"1776":0,"1777":-1,"1778":-1,"1779":0,"1780":0,"1781":-1,"1782":-1,"1783":-1,"1784":720,"1785":-1,"1786":-1,"1787":0,"1788":0,"1789":-1,"1790":0,"1791":-1,"1792":-1,"1793":-1,"1794":0,"1795":0,"1796":0,"1797":0,"1798":0,"1799":0,"1800":798,"1801":-1,"1802":422,"1803":-1,"1804":397,"1805":21,"1806":0,"1807":2064,"1808":0,"1809":0,"1810":-1,"1811":0,"1812":2279,"1813":-1,"1814":2412,"1815":-1,"1816":-1,"1817":-1,"1818":-1,"1819":2099,"1820":0,"1821":0,"1822":2343,"1823":-1,"1824":-1,"1825":842,"1826":0,"1827":-1,"1828":0,"1829":0,"1830":-1,"1831":130,"1832":2593,"1833":2035,"1834":0,"1835":0,"1836":168,"1837":0,"1838":-1,"1839":-1,"1840":-1,"1841":2613,"1842":-1,"1843":-1,"1844":0,"1845":-1,"1846":2625,"1847":-1,"1848":0,"1849":0,"1850":2511,"1851":0,"1852":0,"1853":-1,"1854":407,"1855":0,"1856":0,"1857":0,"1858":2333,"1859":-1,"1860":2404,"1861":0,"1862":0,"1863":2467,"1864":-1,"1865":0,"1866":0,"1867":0,"1868":-1,"1869":0,"1870":-1,"1871":-1,"1872":-1,"1873":0,"1874":-1,"1875":0,"1876":2671,"1877":0,"1878":412,"1879":0,"1880":0,"1881":0,"1882":2189,"1883":2407,"1884":0,"1885":0,"1886":-1,"1887":178,"1888":0,"1889":2104,"1890":2089,"1891":0,"1892":0,"1893":-1,"1894":0,"1895":2121,"1896":-1,"1897":0,"1898":0,"1899":2584,"1900":0,"1901":-1,"1902":0,"1903":-1,"1904":0,"1905":0,"1906":0,"1907":-1,"1908":0,"1909":0,"1910":-1,"1911":301,"1912":77,"1913":0,"1914":0,"1915":0,"1916":-1,"1917":2380,"1918":2159,"1919":0,"1920":-1,"1921":-1,"1922":0,"1923":-1,"1924":0,"1925":0,"1926":-1,"1927":-1,"1928":0,"1929":325,"1930":0,"1931":-1,"1932":906,"1933":2527,"1934":219,"1935":0,"1936":0,"1937":2389,"1938":0,"1939":-1,"1940":-1,"1941":0,"1942":219,"1943":-1,"1944":0,"1945":0,"1946":-1,"1947":0,"1948":2522,"1949":0,"1950":-1,"1951":2465,"1952":0,"1953":0,"1954":-1,"1955":0,"1956":198,"1957":2674,"1958":0,"1959":2646,"1960":0,"1961":0,"1962":2543,"1963":0,"1964":0,"1965":-1,"1966":-1,"1967":-1,"1968":0,"1969":2054,"1970":2060,"1971":0,"1972":2322,"1973":0,"1974":0,"1975":-1,"1976":102,"1977":-1,"1978":2174,"1979":0,"1980":-1,"1981":0,"1982":0,"1983":598,"1984":0,"1985":0,"1986":0,"1987":0,"1988":397,"1989":-1,"1990":0,"1991":308,"1992":0,"1993":2170,"1994":-1,"1995":0,"1996":0,"1997":0,"1998":219,"1999":0,"2000":2659,"2001":-1,"2002":2622,"2003":0,"2004":0,"2005":0,"2006":-1,"2007":0,"2008":2171,"2009":359,"2010":0,"2011":826,"2012":0,"2013":0,"2014":2657,"2015":0,"2016":-1,"2017":0,"2018":-1,"2019":-1,"2020":2076,"2021":2427,"2022":-1,"2023":1997,"2024":-1,"2025":-1,"2026":0,"2027":0,"2028":0,"2029":0,"2030":0,"2031":2422,"2032":2160,"2033":0,"2034":88,"2035":-1,"2036":0,"2037":0,"2038":2189,"2039":-1,"2040":0,"2041":-1,"2042":0,"2043":-1,"2044":-1,"2045":2116,"2046":-1,"2047":2084,"2048":0,"2049":2437,"2050":0,"2051":2232,"2052":-1,"2053":0,"2054":0,"2055":0,"2056":2628,"2057":2101,"2058":0,"2059":2459,"2060":-1,"2061":2313,"2062":-1,"2063":-1,"2064":0,"2065":0,"2066":0,"2067":0,"2068":0,"2069":0,"2070":0,"2071":-1,"2072":0,"2073":0,"2074":2379,"2075":2641,"2076":2352,"2077":-1,"2078":0,"2079":-1,"2080":0,"2081":-1,"2082":2267,"2083":199,"2084":2235,"2085":325,"2086":2256,"2087":0,"2088":0,"2089":0,"2090":-1,"2091":-1,"2092":2029,"2093":0,"2094":2139,"2095":-1,"2096":0,"2097":67,"2098":0,"2099":2423,"2100":2417,"2101":-1,"2102":-1,"2103":-1,"2104":0,"2105":-1,"2106":2128,"2107":2546,"2108":0,"2109":153,"2110":-1,"2111":0,"2112":2253,"2113":0,"2114":0,"2115":2200,"2116":0,"2117":0,"2118":0,"2119":0,"2120":0,"2121":-1,"2122":2450,"2123":2174,"2124":0,"2125":602,"2126":-1,"2127":-1,"2128":0,"2129":-1,"2130":-1,"2131":2188,"2132":-1,"2133":2512,"2134":0,"2135":0,"2136":-1,"2137":-1,"2138":0,"2139":0,"2140":2041,"2141":2259,"2142":-1,"2143":-1,"2144":0,"2145":0,"2146":2565,"2147":0,"2148":-1,"2149":0,"2150":-1,"2151":2034,"2152":0,"2153":0,"2154":0,"2155":0,"2156":0,"2157":-1,"2158":0,"2159":-1,"2160":0,"2161":-1,"2162":0,"2163":0,"2164":2550,"2165":0,"2166":0,"2167":2680,"2168":2327,"2169":2201,"2170":2364,"2171":-1,"2172":0,"2173":0,"2174":0,"2175":-1,"2176":325,"2177":-1,"2178":0,"2179":0,"2180":-1,"2181":0,"2182":-1,"2183":2663,"2184":0,"2185":-1,"2186":284,"2187":0,"2188":-1,"2189":0,"2190":0,"2191":-1,"2192":0,"2193":-1,"2194":313,"2195":0,"2196":0,"2197":-1,"2198":0,"2199":0,"2200":0,"2201":2426,"2202":2254,"2203":0,"2204":-1,"2205":-1,"2206":0,"2207":0,"2208":0,"2209":0,"2210":0,"2211":-1,"2212":-1,"2213":639,"2214":2492,"2215":514,"2216":0,"2217":0,"2218":2189,"2219":0,"2220":0,"2221":-1,"2222":0,"2223":0,"2224":0,"2225":-1,"2226":0,"2227":-1,"2228":35,"2229":0,"2230":-1,"2231":-1,"2232":0,"2233":-1,"2234":-1,"2235":-1,"2236":0,"2237":2611,"2238":772,"2239":-1,"2240":0,"2241":0,"2242":2085,"2243":2540,"2244":-1,"2245":-1,"2246":-1,"2247":-1,"2248":-1,"2249":0,"2250":0,"2251":17,"2252":-1,"2253":0,"2254":0,"2255":-1,"2256":-1,"2257":0,"2258":0,"2259":0,"2260":2,"2261":2602,"2262":0,"2263":0,"2264":0,"2265":0,"2266":-1,"2267":-1,"2268":0,"2269":104,"2270":0,"2271":2035,"2272":0,"2273":-1,"2274":0,"2275":2029,"2276":0,"2277":0,"2278":-1,"2279":0,"2280":2415,"2281":0,"2282":0,"2283":2496,"2284":669,"2285":0,"2286":39,"2287":-1,"2288":0,"2289":2522,"2290":0,"2291":2550,"2292":0,"2293":0,"2294":0,"2295":0,"2296":0,"2297":-1,"2298":0,"2299":-1,"2300":0,"2301":0,"2302":0,"2303":-1,"2304":0,"2305":0,"2306":0,"2307":-1,"2308":2559,"2309":-1,"2310":0,"2311":-1,"2312":0,"2313":0,"2314":0,"2315":-1,"2316":2620,"2317":-1,"2318":-1,"2319":0,"2320":0,"2321":0,"2322":2001,"2323":0,"2324":0,"2325":0,"2326":-1,"2327":0,"2328":0,"2329":2085,"2330":2451,"2331":0,"2332":0,"2333":0,"2334":-1,"2335":-1,"2336":21,"2337":0,"2338":0,"2339":-1,"2340":0,"2341":0,"2342":0,"2343":2039,"2344":906,"2345":551,"2346":0,"2347":0,"2348":2085,"2349":-1,"2350":0,"2351":-1,"2352":0,"2353":0,"2354":0,"2355":0,"2356":0,"2357":-1,"2358":0,"2359":-1,"2360":0,"2361":0,"2362":-1,"2363":0,"2364":0,"2365":0,"2366":0,"2367":0,"2368":-1,"2369":2193,"2370":-1,"2371":0,"2372":-1,"2373":-1,"2374":2614,"2375":136,"2376":2296,"2377":0,"2378":0,"2379":-1,"2380":0,"2381":-1,"2382":2572,"2383":0,"2384":0,"2385":500,"2386":0,"2387":0,"2388":2331,"2389":0,"2390":2574,"2391":2119,"2392":2056,"2393":-1,"2394":2597,"2395":-1,"2396":-1,"2397":0,"2398":-1,"2399":0,"2400":849,"2401":-1,"2402":-1,"2403":0,"2404":-1,"2405":0,"2406":422,"2407":-1,"2408":-1,"2409":0,"2410":-1,"2411":0,"2412":-1,"2413":0,"2414":-1,"2415":0,"2416":-1,"2417":-1,"2418":0,"2419":-1,"2420":0,"2421":-1,"2422":0,"2423":402,"2424":-1,"2425":0,"2426":0,"2427":0,"2428":496,"2429":-1,"2430":0,"2431":2155,"2432":-1,"2433":-1,"2434":0,"2435":0,"2436":0,"2437":0,"2438":136,"2439":483,"2440":0,"2441":0,"2442":-1,"2443":-1,"2444":217,"2445":0,"2446":-1,"2447":14,"2448":0,"2449":0,"2450":0,"2451":2158,"2452":0,"2453":0,"2454":-1,"2455":0,"2456":0,"2457":0,"2458":-1,"2459":0,"2460":0,"2461":2499,"2462":2598,"2463":0,"2464":2141,"2465":-1,"2466":0,"2467":0,"2468":-1,"2469":0,"2470":-1,"2471":0,"2472":-1,"2473":0,"2474":0,"2475":0,"2476":0,"2477":2490,"2478":-1,"2479":0,"2480":-1,"2481":0,"2482":0,"2483":-1,"2484":0,"2485":2159,"2486":2529,"2487":0,"2488":0,"2489":0,"2490":0,"2491":0,"2492":2055,"2493":-1,"2494":0,"2495":0,"2496":0,"2497":2670,"2498":0,"2499":2657,"2500":-1,"2501":2188,"2502":0,"2503":141,"2504":-1,"2505":2606,"2506":-1,"2507":420,"2508":-1,"2509":0,"2510":0,"2511":0,"2512":0,"2513":2035,"2514":0,"2515":0,"2516":2015,"2517":2151,"2518":0,"2519":1995,"2520":0,"2521":2527,"2522":639,"2523":0,"2524":2179,"2525":0,"2526":0,"2527":0,"2528":0,"2529":0,"2530":0,"2531":0,"2532":0,"2533":2076,"2534":-1,"2535":0,"2536":0,"2537":0,"2538":0,"2539":2043,"2540":0,"2541":2064,"2542":0,"2543":-1,"2544":-1,"2545":0,"2546":-1,"2547":0,"2548":-1,"2549":0,"2550":0,"2551":0,"2552":-1,"2553":0,"2554":2090,"2555":0,"2556":-1,"2557":2530,"2558":483,"2559":-1,"2560":0,"2561":2103,"2562":-1,"2563":0,"2564":0,"2565":2595,"2566":706,"2567":-1,"2568":0,"2569":0,"2570":0,"2571":0,"2572":2177,"2573":0,"2574":0,"2575":0,"2576":0,"2577":2289,"2578":-1,"2579":0,"2580":2036,"2581":199,"2582":0,"2583":-1,"2584":2167,"2585":2575,"2586":104,"2587":2327,"2588":-1,"2589":-1,"2590":0,"2591":-1,"2592":2103,"2593":2641,"2594":2005,"2595":-1,"2596":327,"2597":-1,"2598":-1,"2599":0,"2600":0,"2601":2179,"2602":-1,"2603":0,"2604":0,"2605":-1,"2606":2673,"2607":2665,"2608":0,"2609":-1,"2610":2029,"2611":-1,"2612":16,"2613":0,"2614":0,"2615":2489,"2616":2419,"2617":-1,"2618":-1,"2619":2325,"2620":-1,"2621":-1,"2622":2528,"2623":-1,"2624":0,"2625":0,"2626":0,"2627":0,"2628":8,"2629":0,"2630":2103,"2631":0,"2632":0,"2633":2012,"2634":460,"2635":-1,"2636":0,"2637":0,"2638":-1,"2639":-1,"2640":-1,"2641":0,"2642":0,"2643":0,"2644":0,"2645":-1,"2646":-1,"2647":2214,"2648":0,"2649":2649,"2650":0,"2651":2002,"2652":-1,"2653":0,"2654":2343,"2655":0,"2656":2441,"2657":-1,"2658":-1,"2659":2385,"2660":2071,"2661":0,"2662":2253,"2663":-1,"2664":0,"2665":0,"2666":0,"2667":2650,"2668":0,"2669":0,"2670":-1,"2671":-1,"2672":-1,"2673":2080,"2674":-1,"2675":264,"2676":-1,"2677":-1,"2678":0,"2679":2152,"2680":0,"2681":2013,"2682":0,"2683":-1,"2684":0,"2685":308,"2686":2236,"2687":-1,"2688":2459,"2689":2545,"2690":-1,"2691":-1,"2692":126,"2693":0,"2694":-1,"2695":2585,"2696":0,"2697":0,"2698":0,"2699":2016,"2700":0,"2701":0,"2702":0,"2703":2467,"2704":2023,"2705":-1,"2706":2182,"2707":2207,"2708":0,"2709":-1,"2710":0,"2711":0,"2712":-1,"2713":0,"2714":0,"2715":2052,"2716":0,"2717":-1,"2718":19,"2719":-1,"2720":0,"2721":0,"2722":-1,"2723":-1,"2724":0,"2725":0,"2726":2261,"2727":-1,"2728":2104,"2729":0,"2730":2047,"2731":0,"2732":-1,"2733":-1,"2734":2521,"2735":0,"2736":25,"2737":0,"2738":2195,"2739":2062,"2740":-1,"2741":0,"2742":-1,"2743":-1,"2744":0,"2745":0,"2746":96,"2747":0,"2748":2471,"2749":0,"2750":0,"2751":0,"2752":2147,"2753":2336,"2754":-1,"2755":0,"2756":0,"2757":-1,"2758":0,"2759":-1,"2760":0,"2761":0,"2762":-1,"2763":-1,"2764":-1,"2765":0,"2766":-1,"2767":0,"2768":-1,"2769":2276,"2770":0,"2771":0,"2772":0,"2773":-1,"2774":2673,"2775":0,"2776":0,"2777":2630,"2778":0,"2779":-1,"2780":-1,"2781":2237,"2782":-1,"2783":0,"2784":0,"2785":0,"2786":0,"2787":2411,"2788":-1,"2789":-1,"2790":-1,"2791":-1,"2792":0,"2793":602,"2794":-1,"2795":-1,"2796":0,"2797":-1,"2798":2474,"2799":-1,"2800":0,"2801":0,"2802":2398,"2803":2573,"2804":-1,"2805":0,"2806":0,"2807":0,"2808":0,"2809":-1,"2810":2569,"2811":0,"2812":2212,"2813":2593,"2814":-1,"2815":2414,"2816":0,"2817":0,"2818":2220,"2819":2256,"2820":0,"2821":0,"2822":-1,"2823":2427,"2824":0,"2825":0,"2826":2654,"2827":0,"2828":2514,"2829":0,"2830":2206,"2831":0,"2832":0,"2833":-1,"2834":0,"2835":0,"2836":2340,"2837":-1,"2838":-1,"2839":2173,"2840":0,"2841":2415,"2842":2362,"2843":0,"2844":2097,"2845":0,"2846":-1,"2847":2247,"2848":245,"2849":2639,"2850":2138,"2851":2430,"2852":0,"2853":2569,"2854":-1,"2855":0,"2856":0,"2857":2549,"2858":0,"2859":2440,"2860":0,"2861":0,"2862":-1,"2863":-1,"2864":-1,"2865":0,"2866":-1,"2867":-1,"2868":0,"2869":0,"2870":-1,"2871":-1,"2872":0,"2873":0,"2874":-1,"2875":-1,"2876":156,"2877":0,"2878":-1,"2879":2174,"2880":0,"2881":0,"2882":0,"2883":-1,"2884":2097,"2885":-1,"2886":0,"2887":0,"2888":0,"2889":0,"2890":0,"2891":-1,"2892":-1,"2893":0,"2894":-1,"2895":0,"2896":-1,"2897":2152,"2898":-1,"2899":2006,"2900":0,"2901":0,"2902":-1,"2903":448,"2904":0,"2905":2111,"2906":0,"2907":2078,"2908":2649,"2909":0,"2910":-1,"2911":-1,"2912":1998,"2913":0,"2914":0,"2915":0,"2916":0,"2917":2416,"2918":0,"2919":559,"2920":-1,"2921":0,"2922":-1,"2923":2519,"2924":-1,"2925":0,"2926":0,"2927":-1,"2928":2367,"2929":-1,"2930":0,"2931":0,"2932":2453,"2933":45,"2934":461,"2935":0,"2936":0,"2937":0,"2938":2210,"2939":-1,"2940":0,"2941":2252,"2942":0,"2943":-1,"2944":2548,"2945":0,"2946":-1,"2947":0,"2948":141,"2949":-1,"2950":0,"2951":0,"2952":-1,"2953":2111,"2954":-1,"2955":0,"2956":-1,"2957":-1,"2958":-1,"2959":264,"2960":2029,"2961":2566,"2962":2469,"2963":18,"2964":0,"2965":0,"2966":0,"2967":0,"2968":2243,"2969":0,"2970":2394,"2971":2368,"2972":-1,"2973":-1,"2974":-1,"2975":0,"2976":-1,"2977":2068,"2978":0,"2979":0,"2980":-1,"2981":-1,"2982":0,"2983":-1,"2984":2056,"2985":2328,"2986":0,"2987":22,"2988":2089,"2989":2207,"2990":0,"2991":-1,"2992":2163,"2993":0,"2994":-1,"2995":0,"2996":2655,"2997":2164,"2998":0,"2999":-1,"3000":-1,"3001":-1,"3002":2618,"3003":0,"3004":0,"3005":-1,"3006":0,"3007":-1,"3008":2280,"3009":-1,"3010":-1,"3011":-1,"3012":2319,"3013":0,"3014":67,"3015":0,"3016":0,"3017":0,"3018":461,"3019":0,"3020":2385,"3021":-1,"3022":-1,"3023":0,"3024":2658,"3025":2088,"3026":-1,"3027":0,"3028":2304,"3029":2018,"3030":-1,"3031":0,"3032":0,"3033":0,"3034":0,"3035":2276,"3036":0,"3037":0,"3038":0,"3039":-1,"3040":-1,"3041":0,"3042":2199,"3043":2258,"3044":0,"3045":0,"3046":-1,"3047":705,"3048":-1,"3049":2167,"3050":0,"3051":-1,"3052":-1,"3053":-1,"3054":-1,"3055":-1,"3056":0,"3057":0,"3058":2343,"3059":28,"3060":0,"3061":2330,"3062":-1,"3063":-1,"3064":0,"3065":0,"3066":0,"3067":325,"3068":0,"3069":-1,"3070":2296,"3071":0,"3072":0,"3073":0,"3074":-1,"3075":0,"3076":-1,"3077":2208,"3078":-1,"3079":-1,"3080":0,"3081":0,"3082":-1,"3083":0,"3084":837,"3085":0,"3086":-1,"3087":0,"3088":-1,"3089":0,"3090":0,"3091":0,"3092":-1,"3093":0,"3094":0,"3095":2310,"3096":2373,"3097":2458,"3098":-1,"3099":0,"3100":0,"3101":2170,"3102":0,"3103":0,"3104":18,"3105":-1,"3106":-1,"3107":0,"3108":-1,"3109":-1,"3110":0,"3111":0,"3112":2195,"3113":0,"3114":-1,"3115":0,"3116":-1,"3117":-1,"3118":0,"3119":0,"3120":0,"3121":0,"3122":-1,"3123":0,"3124":-1,"3125":-1,"3126":0,"3127":2110,"3128":0,"3129":-1,"3130":-1,"3131":0,"3132":2234,"3133":0,"3134":0,"3135":-1,"3136":-1,"3137":0,"3138":333,"3139":-1,"3140":-1,"3141":2463,"3142":-1,"3143":-1,"3144":-1,"3145":-1,"3146":-1,"3147":293,"3148":2012,"3149":-1,"3150":0,"3151":2197,"3152":-1,"3153":-1,"3154":2426,"3155":2153,"3156":-1,"3157":0,"3158":0,"3159":2512,"3160":0,"3161":-1,"3162":2302,"3163":0,"3164":-1,"3165":0,"3166":88,"3167":0,"3168":-1,"3169":-1,"3170":0,"3171":2463,"3172":-1,"3173":-1,"3174":2634,"3175":2553,"3176":0,"3177":669,"3178":-1,"3179":0,"3180":0,"3181":0,"3182":-1,"3183":2644,"3184":-1,"3185":0,"3186":0,"3187":-1,"3188":-1,"3189":0,"3190":-1,"3191":0,"3192":2138,"3193":0,"3194":-1,"3195":-1,"3196":0,"3197":-1,"3198":-1,"3199":-1,"3200":0,"3201":0,"3202":2401,"3203":-1,"3204":0,"3205":0,"3206":-1,"3207":2030,"3208":0,"3209":0,"3210":2353,"3211":884,"3212":-1,"3213":0,"3214":-1,"3215":0,"3216":0,"3217":0,"3218":2218,"3219":0,"3220":-1,"3221":-1,"3222":0,"3223":-1,"3224":2010,"3225":2061,"3226":0,"3227":2517,"3228":0,"3229":2510,"3230":0,"3231":-1,"3232":0,"3233":-1,"3234":0,"3235":2519,"3236":0,"3237":2106,"3238":0,"3239":-1,"3240":-1,"3241":0,"3242":-1,"3243":153,"3244":0,"3245":0,"3246":443,"3247":0,"3248":-1,"3249":0,"3250":0,"3251":-1,"3252":2436,"3253":-1,"3254":0,"3255":104,"3256":199,"3257":-1,"3258":2233,"3259":-1,"3260":0,"3261":0,"3262":0,"3263":2327,"3264":-1,"3265":2611,"3266":-1,"3267":2,"3268":0,"3269":-1,"3270":2076,"3271":0,"3272":-1,"3273":-1,"3274":0,"3275":0,"3276":2670,"3277":612,"3278":2265,"3279":0,"3280":0,"3281":-1,"3282":2263,"3283":2095,"3284":-1,"3285":0,"3286":1993,"3287":0,"3288":0,"3289":2399,"3290":0,"3291":0,"3292":0,"3293":0,"3294":2537,"3295":0,"3296":2605,"3297":0,"3298":418,"3299":2258,"3300":0,"3301":-1,"3302":0,"3303":2192,"3304":0,"3305":0,"3306":0,"3307":2633,"3308":0,"3309":0,"3310":0,"3311":0,"3312":2480,"3313":-1,"3314":0,"3315":0,"3316":2393,"3317":0,"3318":209,"3319":0,"3320":-1,"3321":0,"3322":0,"3323":2449,"3324":2213,"3325":-1,"3326":-1,"3327":-1,"3328":0,"3329":2160,"3330":614,"3331":2097,"3332":2484,"3333":-1,"3334":2007,"3335":0,"3336":0,"3337":2087,"3338":7,"3339":0,"3340":0,"3341":0,"3342":-1,"3343":-1,"3344":359,"3345":0,"3346":0,"3347":141,"3348":2176,"3349":-1,"3350":-1,"3351":0,"3352":2383,"3353":0,"3354":-1,"3355":-1,"3356":0,"3357":2577,"3358":-1,"3359":2023,"3360":0,"3361":-1,"3362":2602,"3363":0,"3364":-1,"3365":2668,"3366":2198,"3367":0,"3368":0,"3369":0,"3370":0,"3371":0,"3372":2472,"3373":-1,"3374":2214,"3375":2525,"3376":2604,"3377":-1,"3378":0,"3379":0,"3380":0,"3381":0,"3382":0,"3383":-1,"3384":0,"3385":2178,"3386":2573,"3387":0,"3388":0,"3389":2374,"3390":2209,"3391":-1,"3392":0,"3393":0,"3394":0,"3395":0,"3396":-1,"3397":924,"3398":0,"3399":-1,"3400":0,"3401":0,"3402":2172,"3403":0,"3404":0,"3405":2413,"3406":0,"3407":-1,"3408":2147,"3409":-1,"3410":2088,"3411":-1,"3412":0,"3413":-1,"3414":-1,"3415":2615,"3416":0,"3417":0,"3418":0,"3419":-1,"3420":0,"3421":2579,"3422":2092,"3423":0,"3424":2340,"3425":0,"3426":2141,"3427":-1,"3428":-1,"3429":-1,"3430":11,"3431":0,"3432":-1,"3433":0,"3434":0,"3435":-1,"3436":0,"3437":2062,"3438":-1,"3439":0,"3440":0,"3441":0,"3442":-1,"3443":-1,"3444":2043,"3445":508,"3446":0,"3447":11,"3448":-1,"3449":2418,"3450":-1,"3451":-1,"3452":2518,"3453":293,"3454":2125,"3455":0,"3456":0,"3457":0,"3458":-1,"3459":0,"3460":0,"3461":2654,"3462":0,"3463":0,"3464":2154,"3465":-1,"3466":2516,"3467":0,"3468":-1,"3469":2315,"3470":-1,"3471":120,"3472":0,"3473":0,"3474":0,"3475":0,"3476":0,"3477":329,"3478":0,"3479":-1,"3480":0,"3481":2499,"3482":0,"3483":-1,"3484":0,"3485":2173,"3486":-1,"3487":0,"3488":2457,"3489":0,"3490":-1,"3491":308,"3492":-1,"3493":-1,"3494":0,"3495":0,"3496":0,"3497":2584,"3498":0,"3499":0,"3500":0,"3501":0,"3502":0,"3503":0,"3504":-1,"3505":0,"3506":-1,"3507":0,"3508":-1,"3509":-1,"3510":-1,"3511":-1,"3512":0,"3513":645,"3514":0,"3515":0,"3516":0,"3517":0,"3518":0,"3519":2663,"3520":-1,"3521":0,"3522":0,"3523":0,"3524":-1,"3525":2221,"3526":-1,"3527":0,"3528":0,"3529":-1,"3530":2333,"3531":0,"3532":-1,"3533":0,"3534":-1,"3535":-1,"3536":-1,"3537":-1,"3538":0,"3539":2173,"3540":2522,"3541":0,"3542":-1,"3543":2451,"3544":-1,"3545":1995,"3546":-1,"3547":0,"3548":0,"3549":2370,"3550":0,"3551":2248,"3552":-1,"3553":0,"3554":-1,"3555":0,"3556":0,"3557":2376,"3558":0,"3559":2107,"3560":-1,"3561":0,"3562":0,"3563":2240,"3564":0,"3565":0,"3566":-1,"3567":0,"3568":-1,"3569":2344,"3570":2679,"3571":0,"3572":-1,"3573":0,"3574":-1,"3575":0,"3576":2026,"3577":2466,"3578":2415,"3579":0,"3580":584,"3581":2200,"3582":-1,"3583":0,"3584":-1,"3585":246,"3586":0,"3587":-1,"3588":0,"3589":0,"3590":0,"3591":2418,"3592":0,"3593":-1,"3594":-1,"3595":2113,"3596":2209,"3597":-1,"3598":0,"3599":0,"3600":0,"3601":0,"3602":-1,"3603":0,"3604":0,"3605":0,"3606":0,"3607":0,"3608":0,"3609":0,"3610":0,"3611":-1,"3612":0,"3613":-1,"3614":362,"3615":0,"3616":1991,"3617":0,"3618":0,"3619":0,"3620":2391,"3621":0,"3622":0,"3623":2427,"3624":0,"3625":0,"3626":0,"3627":0,"3628":0,"3629":2145,"3630":0,"3631":-1,"3632":2312,"3633":0,"3634":0,"3635":2308,"3636":2147,"3637":2413,"3638":2288,"3639":0,"3640":-1,"3641":0,"3642":-1,"3643":-1,"3644":-1,"3645":0,"3646":-1,"3647":2323,"3648":2408,"3649":0,"3650":2001,"3651":0,"3652":-1,"3653":-1,"3654":0,"3655":-1,"3656":-1,"3657":0,"3658":-1,"3659":2067,"3660":0,"3661":0,"3662":-1,"3663":0,"3664":15,"3665":0,"3666":-1,"3667":0,"3668":-1,"3669":-1,"3670":0,"3671":-1,"3672":0,"3673":0,"3674":0,"3675":0,"3676":-1,"3677":0,"3678":0,"3679":0,"3680":-1,"3681":2451,"3682":-1,"3683":0,"3684":0,"3685":-1,"3686":-1,"3687":-1,"3688":-1,"3689":2192,"3690":-1,"3691":-1,"3692":0,"3693":-1,"3694":-1,"3695":0,"3696":412,"3697":0,"3698":0,"3699":0,"3700":0,"3701":126,"3702":-1,"3703":0,"3704":0,"3705":-1,"3706":-1,"3707":0,"3708":0,"3709":0,"3710":2192,"3711":353,"3712":0,"3713":-1,"3714":0,"3715":448,"3716":0,"3717":130,"3718":2589,"3719":2031,"3720":-1,"3721":0,"3722":0,"3723":-1,"3724":0,"3725":33,"3726":0,"3727":0,"3728":-1,"3729":0,"3730":-1,"3731":0,"3732":2464,"3733":2638,"3734":-1,"3735":0,"3736":0,"3737":0,"3738":-1,"3739":4,"3740":-1,"3741":0,"3742":0,"3743":2066,"3744":0,"3745":2282,"3746":2439,"3747":-1,"3748":-1,"3749":2302,"3750":-1,"3751":0,"3752":0,"3753":2371,"3754":-1,"3755":0,"3756":2295,"3757":2168,"3758":0,"3759":0,"3760":2073,"3761":-1,"3762":2502,"3763":-1,"3764":0,"3765":2654,"3766":-1,"3767":-1,"3768":0,"3769":10,"3770":-1,"3771":-1,"3772":-1,"3773":2629,"3774":-1,"3775":0,"3776":-1,"3777":-1,"3778":2299,"3779":0,"3780":0,"3781":0,"3782":-1,"3783":0,"3784":0,"3785":2203,"3786":-1,"3787":2279,"3788":837,"3789":0,"3790":0,"3791":-1,"3792":0,"3793":-1,"3794":0,"3795":-1,"3796":0,"3797":0,"3798":-1,"3799":0,"3800":0,"3801":-1,"3802":0,"3803":-1,"3804":-1,"3805":0,"3806":-1,"3807":2040,"3808":0,"3809":662,"3810":0,"3811":-1,"3812":-1,"3813":0,"3814":0,"3815":-1,"3816":2234,"3817":0,"3818":2543,"3819":0,"3820":0,"3821":0,"3822":2342,"3823":-1,"3824":0,"3825":0,"3826":0,"3827":-1,"3828":0,"3829":2220,"3830":617,"3831":0,"3832":-1,"3833":-1,"3834":0,"3835":0,"3836":-1,"3837":-1,"3838":0,"3839":2221,"3840":-1,"3841":0,"3842":-1,"3843":2385,"3844":0,"3845":-1,"3846":2055,"3847":-1,"3848":2289,"3849":-1,"3850":572,"3851":-1,"3852":0,"3853":2318,"3854":0,"3855":-1,"3856":-1,"3857":0,"3858":178,"3859":0,"3860":2123,"3861":0,"3862":0,"3863":0,"3864":0,"3865":0,"3866":0,"3867":0,"3868":0,"3869":0,"3870":-1,"3871":-1,"3872":2405,"3873":0,"3874":2359,"3875":0,"3876":2146,"3877":0,"3878":1995,"3879":-1,"3880":-1,"3881":-1,"3882":2515,"3883":0,"3884":2329,"3885":-1,"3886":-1,"3887":2423,"3888":-1,"3889":0,"3890":0,"3891":49,"3892":0,"3893":-1,"3894":0,"3895":0,"3896":-1,"3897":0,"3898":-1,"3899":-1,"3900":-1,"3901":-1,"3902":0,"3903":0,"3904":0,"3905":2068,"3906":0,"3907":0,"3908":-1,"3909":9,"3910":-1,"3911":2447,"3912":2566,"3913":-1,"3914":0,"3915":-1,"3916":0,"3917":2403,"3918":0,"3919":2183,"3920":0,"3921":2013,"3922":2421,"3923":-1,"3924":-1,"3925":2571,"3926":0,"3927":-1,"3928":-1,"3929":0,"3930":0,"3931":-1,"3932":2525,"3933":-1,"3934":0,"3935":0,"3936":0,"3937":0,"3938":0,"3939":0,"3940":219,"3941":0,"3942":2357,"3943":-1,"3944":0,"3945":-1,"3946":0,"3947":0,"3948":-1,"3949":0,"3950":0,"3951":154,"3952":2400,"3953":0,"3954":0,"3955":0,"3956":2050,"3957":2263,"3958":0,"3959":0,"3960":0,"3961":0,"3962":2629,"3963":-1,"3964":2504,"3965":-1,"3966":-1,"3967":2059,"3968":0,"3969":0,"3970":5,"3971":-1,"3972":308,"3973":-1,"3974":2356,"3975":0,"3976":-1,"3977":2428,"3978":-1,"3979":0,"3980":-1,"3981":2116,"3982":0,"3983":-1,"3984":-1,"3985":-1,"3986":-1,"3987":0,"3988":-1,"3989":-1,"3990":2557,"3991":0,"3992":-1,"3993":0,"3994":-1,"3995":-1,"3996":0,"3997":0,"3998":2003,"3999":0,"4000":0,"4001":-1,"4002":2244,"4003":-1,"4004":-1,"4005":0,"4006":-1,"4007":0,"4008":0,"4009":0,"4010":0,"4011":2421,"4012":-1,"4013":-1,"4014":-1,"4015":0,"4016":0,"4017":0,"4018":0,"4019":-1,"4020":2146,"4021":0,"4022":0,"4023":-1,"4024":-1,"4025":0,"4026":2199,"4027":0,"4028":0,"4029":0,"4030":-1,"4031":2066,"4032":-1,"4033":0,"4034":0,"4035":2323,"4036":0,"4037":0,"4038":0,"4039":-1,"4040":-1,"4041":-1,"4042":-1,"4043":2624,"4044":418,"4045":0,"4046":0,"4047":0,"4048":2656,"4049":-1,"4050":0,"4051":0,"4052":-1,"4053":-1,"4054":-1,"4055":2047,"4056":0,"4057":2318,"4058":0,"4059":0,"4060":-1,"4061":2644,"4062":-1,"4063":-1,"4064":-1,"4065":0,"4066":2181,"4067":40,"4068":0,"4069":0,"4070":-1,"4071":-1,"4072":0,"4073":0,"4074":0,"4075":0,"4076":0,"4077":0,"4078":0,"4079":23,"4080":2412,"4081":-1,"4082":-1,"4083":0,"4084":0,"4085":-1,"4086":-1,"4087":0,"4088":-1,"4089":2188,"4090":0,"4091":-1,"4092":-1,"4093":2518,"4094":0,"4095":0,"4096":2291,"4097":0,"4098":40,"4099":0,"4100":-1,"4101":0,"4102":-1,"4103":0,"4104":0,"4105":-1,"4106":9,"4107":0,"4108":0,"4109":0,"4110":0,"4111":-1,"4112":0,"4113":0,"4114":-1,"4115":2063,"4116":0,"4117":0,"4118":0,"4119":-1,"4120":-1,"4121":0,"4122":2414,"4123":-1,"4124":-1,"4125":-1,"4126":0,"4127":-1,"4128":0,"4129":2619,"4130":0,"4131":-1,"4132":0,"4133":0,"4134":-1,"4135":0,"4136":108,"4137":0,"4138":2020,"4139":2658,"4140":-1,"4141":-1,"4142":2176,"4143":-1,"4144":-1,"4145":0,"4146":2582,"4147":2097,"4148":0,"4149":0,"4150":2571,"4151":2061,"4152":2046,"4153":0,"4154":0,"4155":154,"4156":0,"4157":0,"4158":0,"4159":2307,"4160":0,"4161":0,"4162":0,"4163":-1,"4164":-1,"4165":2163,"4166":-1,"4167":0,"4168":0,"4169":0,"4170":0,"4171":-1,"4172":0,"4173":-1,"4174":-1,"4175":-1,"4176":-1,"4177":-1,"4178":0,"4179":-1,"4180":2285,"4181":0,"4182":-1,"4183":0,"4184":0,"4185":-1,"4186":2470,"4187":2450,"4188":0,"4189":3,"4190":2015,"4191":2002,"4192":0,"4193":0,"4194":2476,"4195":33,"4196":2206,"4197":0,"4198":-1,"4199":2161,"4200":2258,"4201":-1,"4202":2426,"4203":2410,"4204":578,"4205":2191,"4206":0,"4207":-1,"4208":-1,"4209":-1,"4210":2439,"4211":-1,"4212":-1,"4213":2265,"4214":-1,"4215":2562,"4216":0,"4217":1991,"4218":2489,"4219":0,"4220":-1,"4221":345,"4222":0,"4223":0,"4224":-1,"4225":-1,"4226":317,"4227":2360,"4228":-1,"4229":2291,"4230":2665,"4231":-1,"4232":0,"4233":-1,"4234":2136,"4235":0,"4236":2670,"4237":2249,"4238":-1,"4239":-1,"4240":-1,"4241":1993,"4242":2281,"4243":-1,"4244":0,"4245":-1,"4246":-1,"4247":0,"4248":0,"4249":2406,"4250":-1,"4251":-1,"4252":2473,"4253":-1,"4254":0,"4255":0,"4256":2082,"4257":2000,"4258":-1,"4259":-1,"4260":0,"4261":0,"4262":-1,"4263":2169,"4264":669,"4265":-1,"4266":0,"4267":0,"4268":2479,"4269":-1,"4270":-1,"4271":2619,"4272":0,"4273":45,"4274":0,"4275":0,"4276":0,"4277":0,"4278":43,"4279":-1,"4280":2056,"4281":2069,"4282":0,"4283":0,"4284":-1,"4285":2653,"4286":0,"4287":0,"4288":2652,"4289":0,"4290":2432,"4291":2671,"4292":0,"4293":-1,"4294":-1,"4295":0,"4296":2113,"4297":0,"4298":-1,"4299":-1,"4300":-1,"4301":0,"4302":0,"4303":0,"4304":2183,"4305":0,"4306":0,"4307":2669,"4308":0,"4309":0,"4310":691,"4311":-1,"4312":0,"4313":0,"4314":-1,"4315":0,"4316":0,"4317":2140,"4318":65,"4319":0,"4320":2321,"4321":-1,"4322":-1,"4323":2660,"4324":2134,"4325":0,"4326":0,"4327":0,"4328":-1,"4329":0,"4330":0,"4331":0,"4332":-1,"4333":2105,"4334":0,"4335":2215,"4336":-1,"4337":0,"4338":2451,"4339":-1,"4340":0,"4341":0,"4342":-1,"4343":0,"4344":-1,"4345":-1,"4346":2525,"4347":-1,"4348":0,"4349":2159,"4350":0,"4351":0,"4352":2002,"4353":-1,"4354":572,"4355":0,"4356":-1,"4357":-1,"4358":0,"4359":-1,"4360":-1,"4361":0,"4362":-1,"4363":0,"4364":0,"4365":0,"4366":-1,"4367":584,"4368":2221,"4369":-1,"4370":-1,"4371":2009,"4372":0,"4373":-1,"4374":0,"4375":0,"4376":0,"4377":0,"4378":0,"4379":412,"4380":-1,"4381":-1,"4382":-1,"4383":0,"4384":120,"4385":0,"4386":0,"4387":0,"4388":-1,"4389":0,"4390":0,"4391":0,"4392":0,"4393":300,"4394":2433,"4395":2148,"4396":-1,"4397":2455,"4398":2158,"4399":2241,"4400":-1,"4401":-1,"4402":0,"4403":-1,"4404":0,"4405":-1,"4406":0,"4407":-1,"4408":0,"4409":0,"4410":0,"4411":0,"4412":0,"4413":0,"4414":2165,"4415":483,"4416":0,"4417":772,"4418":0,"4419":0,"4420":-1,"4421":61,"4422":0,"4423":-1,"4424":0,"4425":0,"4426":0,"4427":2122,"4428":0,"4429":262,"4430":0,"4431":2454,"4432":0,"4433":0,"4434":2106,"4435":0,"4436":0,"4437":2065,"4438":0,"4439":-1,"4440":0,"4441":0,"4442":-1,"4443":559,"4444":0,"4445":0,"4446":0,"4447":303,"4448":0,"4449":2508,"4450":0,"4451":0,"4452":0,"4453":0,"4454":198,"4455":0,"4456":0,"4457":-1,"4458":0,"4459":-1,"4460":2500,"4461":-1,"4462":0,"4463":-1,"4464":0,"4465":-1,"4466":0,"4467":0,"4468":-1,"4469":2421,"4470":0,"4471":-1,"4472":-1,"4473":-1,"4474":2523,"4475":-1,"4476":-1,"4477":0,"4478":2593,"4479":0,"4480":0,"4481":3,"4482":-1,"4483":-1,"4484":0,"4485":-1,"4486":2533,"4487":2310,"4488":-1,"4489":2499,"4490":0,"4491":0,"4492":0,"4493":0,"4494":0,"4495":0,"4496":0,"4497":-1,"4498":0,"4499":2589,"4500":-1,"4501":2371,"4502":-1,"4503":-1,"4504":0,"4505":-1,"4506":2116,"4507":2375,"4508":-1,"4509":2675,"4510":217,"4511":0,"4512":-1,"4513":0,"4514":0,"4515":-1,"4516":0,"4517":-1,"4518":0,"4519":0,"4520":-1,"4521":0,"4522":2438,"4523":0,"4524":2264,"4525":0,"4526":-1,"4527":8,"4528":2008,"4529":-1,"4530":0,"4531":0,"4532":0,"4533":-1,"4534":2413,"4535":-1,"4536":0,"4537":0,"4538":0,"4539":705,"4540":-1,"4541":0,"4542":0,"4543":0,"4544":0,"4545":-1,"4546":284,"4547":-1,"4548":-1,"4549":0,"4550":0,"4551":0,"4552":-1,"4553":-1,"4554":-1,"4555":0,"4556":-1,"4557":0,"4558":2427,"4559":0,"4560":0,"4561":2667,"4562":2361,"4563":-1,"4564":-1,"4565":2084,"4566":-1,"4567":-1,"4568":2459,"4569":-1,"4570":0,"4571":0,"4572":0,"4573":2483,"4574":2266,"4575":0,"4576":0,"4577":0,"4578":-1,"4579":-1,"4580":133,"4581":0,"4582":2356,"4583":-1,"4584":0,"4585":-1,"4586":0,"4587":-1,"4588":0,"4589":2563,"4590":0,"4591":0,"4592":-1,"4593":2205,"4594":-1,"4595":-1,"4596":0,"4597":2547,"4598":2007,"4599":-1,"4600":16,"4601":-1,"4602":2137,"4603":-1,"4604":-1,"4605":0,"4606":-1,"4607":-1,"4608":0,"4609":2111,"4610":-1,"4611":0,"4612":2070,"4613":-1,"4614":849,"4615":-1,"4616":-1,"4617":0,"4618":0,"4619":-1,"4620":2345,"4621":0,"4622":-1,"4623":0,"4624":205,"4625":-1,"4626":0,"4627":2522,"4628":0,"4629":0,"4630":500,"4631":-1,"4632":2541,"4633":0,"4634":2580,"4635":0,"4636":-1,"4637":-1,"4638":2190,"4639":-1,"4640":2298,"4641":0,"4642":-1,"4643":0,"4644":0,"4645":2600,"4646":-1,"4647":-1,"4648":0,"4649":0,"4650":0,"4651":701,"4652":0,"4653":0,"4654":-1,"4655":-1,"4656":0,"4657":0,"4658":0,"4659":-1,"4660":0,"4661":-1,"4662":0,"4663":2125,"4664":0,"4665":-1,"4666":0,"4667":-1,"4668":2050,"4669":0,"4670":2388,"4671":-1,"4672":-1,"4673":-1,"4674":0,"4675":-1,"4676":-1,"4677":0,"4678":2082,"4679":0,"4680":0,"4681":0,"4682":2152,"4683":0,"4684":2253,"4685":0,"4686":-1,"4687":0,"4688":-1,"4689":-1,"4690":0,"4691":0,"4692":0,"4693":0,"4694":2386,"4695":0,"4696":0,"4697":-1,"4698":2645,"4699":0,"4700":2326,"4701":0,"4702":-1,"4703":0,"4704":0,"4705":908,"4706":2559,"4707":0,"4708":-1,"4709":264,"4710":0,"4711":2193,"4712":-1,"4713":0,"4714":2002,"4715":0,"4716":-1,"4717":0,"4718":412,"4719":0,"4720":-1,"4721":0,"4722":0,"4723":0,"4724":0,"4725":0,"4726":-1,"4727":0,"4728":2192,"4729":637,"4730":2471,"4731":2012,"4732":-1,"4733":0,"4734":-1,"4735":0,"4736":-1,"4737":-1,"4738":2678,"4739":2561,"4740":0,"4741":-1,"4742":-1,"4743":-1,"4744":663,"4745":0,"4746":0,"4747":2517,"4748":2534,"4749":0,"4750":2429,"4751":2154,"4752":0,"4753":0,"4754":0,"4755":0,"4756":0,"4757":0,"4758":0,"4759":0,"4760":906,"4761":0,"4762":2380,"4763":-1,"4764":0,"4765":-1,"4766":0,"4767":-1,"4768":2608,"4769":-1,"4770":-1,"4771":-1,"4772":-1,"4773":0,"4774":864,"4775":-1,"4776":-1,"4777":-1,"4778":-1,"4779":0,"4780":2067,"4781":0,"4782":2623,"4783":-1,"4784":-1,"4785":2053,"4786":0,"4787":2011,"4788":0,"4789":0,"4790":0,"4791":-1,"4792":0,"4793":0,"4794":2379,"4795":0,"4796":0,"4797":21,"4798":-1,"4799":2604,"4800":-1,"4801":-1,"4802":0,"4803":-1,"4804":-1,"4805":0,"4806":2226,"4807":-1,"4808":261,"4809":0,"4810":264,"4811":0,"4812":-1,"4813":0,"4814":0,"4815":-1,"4816":0,"4817":-1,"4818":-1,"4819":0,"4820":2358,"4821":2103,"4822":0,"4823":0,"4824":0,"4825":849,"4826":2269,"4827":2397,"4828":159,"4829":0,"4830":0,"4831":0,"4832":-1,"4833":0,"4834":-1,"4835":0,"4836":120,"4837":0,"4838":0,"4839":0,"4840":-1,"4841":2062,"4842":0,"4843":-1,"4844":-1,"4845":0,"4846":2117,"4847":0,"4848":27,"4849":2664,"4850":2122,"4851":-1,"4852":-1,"4853":2423,"4854":-1,"4855":-1,"4856":0,"4857":2443,"4858":0,"4859":-1,"4860":0,"4861":-1,"4862":2437,"4863":0,"4864":-1,"4865":-1,"4866":-1,"4867":-1,"4868":0,"4869":2663,"4870":2246,"4871":-1,"4872":0,"4873":2283,"4874":-1,"4875":141,"4876":2533,"4877":0,"4878":-1,"4879":2237,"4880":0,"4881":0,"4882":0,"4883":-1,"4884":-1,"4885":0,"4886":0,"4887":2630,"4888":0,"4889":0,"4890":2528,"4891":2137,"4892":-1,"4893":0,"4894":0,"4895":-1,"4896":0,"4897":-1,"4898":-1,"4899":2171,"4900":2198,"4901":0,"4902":18,"4903":-1,"4904":-1,"4905":-1,"4906":0,"4907":2010,"4908":0,"4909":-1,"4910":0,"4911":0,"4912":-1,"4913":2090,"4914":0,"4915":-1,"4916":-1,"4917":2035,"4918":0,"4919":0,"4920":0,"4921":-1,"4922":0,"4923":2580,"4924":0,"4925":2313,"4926":88,"4927":-1,"4928":3,"4929":-1,"4930":2072,"4931":-1,"4932":-1,"4933":0,"4934":2277,"4935":-1,"4936":0,"4937":-1,"4938":1996,"4939":0,"4940":0,"4941":2218,"4942":0,"4943":-1,"4944":-1,"4945":2580,"4946":-1,"4947":2379,"4948":2201,"4949":126,"4950":2031,"4951":0,"4952":-1,"4953":0,"4954":0,"4955":0,"4956":2268,"4957":-1,"4958":2673,"4959":2455,"4960":2042,"4961":0,"4962":0,"4963":-1,"4964":0,"4965":2077,"4966":-1,"4967":0,"4968":0,"4969":2385,"4970":0,"4971":0,"4972":2632,"4973":-1,"4974":-1,"4975":455,"4976":-1,"4977":0,"4978":-1,"4979":-1,"4980":0,"4981":0,"4982":2341,"4983":0,"4984":584,"4985":0,"4986":2063,"4987":-1,"4988":0,"4989":0,"4990":0,"4991":2404,"4992":-1,"4993":0,"4994":0,"4995":-1,"4996":0,"4997":0,"4998":0,"4999":0,"5000":-1,"5001":0,"5002":2530,"5003":2199,"5004":-1,"5005":0,"5006":-1,"5007":-1,"5008":2152,"5009":-1,"5010":-1,"5011":-1,"5012":0,"5013":-1,"5014":0,"5015":0,"5016":0,"5017":0,"5018":0,"5019":0,"5020":0,"5021":2277,"5022":1997,"5023":0,"5024":2438,"5025":0,"5026":0,"5027":0,"5028":0,"5029":0,"5030":2629,"5031":-1,"5032":2425,"5033":0,"5034":0,"5035":96,"5036":245,"5037":0,"5038":0,"5039":0,"5040":-1,"5041":-1,"5042":-1,"5043":2382,"5044":-1,"5045":2267,"5046":0,"5047":0,"5048":0,"5049":2246,"5050":-1,"5051":0,"5052":-1,"5053":-1,"5054":2590,"5055":2380,"5056":21,"5057":0,"5058":0,"5059":2069,"5060":-1,"5061":2614,"5062":-1,"5063":-1,"5064":0,"5065":-1,"5066":-1,"5067":0,"5068":-1,"5069":0,"5070":64,"5071":-1,"5072":-1,"5073":-1,"5074":2633,"5075":0,"5076":0,"5077":0,"5078":-1,"5079":2308,"5080":0,"5081":-1,"5082":0,"5083":2433,"5084":-1,"5085":-1,"5086":22,"5087":-1,"5088":0,"5089":0,"5090":-1,"5091":2611,"5092":-1,"5093":0,"5094":0,"5095":-1,"5096":0,"5097":0,"5098":-1,"5099":-1,"5100":0,"5101":-1,"5102":2569,"5103":-1,"5104":0,"5105":219,"5106":2637,"5107":0,"5108":2557,"5109":-1,"5110":-1,"5111":-1,"5112":0,"5113":2362,"5114":0,"5115":0,"5116":2472,"5117":2251,"5118":0,"5119":317,"5120":2176,"5121":2354,"5122":-1,"5123":2113,"5124":0,"5125":0,"5126":0,"5127":0,"5128":-1,"5129":0,"5130":-1,"5131":0,"5132":2480,"5133":262,"5134":2544,"5135":-1,"5136":0,"5137":-1,"5138":0,"5139":-1,"5140":-1,"5141":-1,"5142":0,"5143":-1,"5144":0,"5145":40,"5146":735,"5147":0,"5148":2166,"5149":0,"5150":-1,"5151":0,"5152":0,"5153":0,"5154":793,"5155":0,"5156":-1,"5157":0,"5158":0,"5159":0,"5160":2329,"5161":2357,"5162":0,"5163":-1,"5164":0,"5165":0,"5166":2204,"5167":0,"5168":0,"5169":-1,"5170":308,"5171":0,"5172":0,"5173":0,"5174":-1,"5175":-1,"5176":-1,"5177":-1,"5178":0,"5179":0,"5180":2330,"5181":2323,"5182":0,"5183":-1,"5184":2522,"5185":-1,"5186":826,"5187":0,"5188":2363,"5189":0,"5190":-1,"5191":0,"5192":-1,"5193":0,"5194":475,"5195":0,"5196":0,"5197":2575,"5198":-1,"5199":0,"5200":0,"5201":-1,"5202":2621,"5203":-1,"5204":2193,"5205":0,"5206":0,"5207":0,"5208":2459,"5209":0,"5210":2633,"5211":0,"5212":0,"5213":-1,"5214":-1,"5215":2561,"5216":0,"5217":0,"5218":2138,"5219":-1,"5220":0,"5221":-1,"5222":0,"5223":-1,"5224":-1,"5225":0,"5226":2115,"5227":1993,"5228":-1,"5229":-1,"5230":-1,"5231":0,"5232":0,"5233":-1,"5234":0,"5235":0,"5236":407,"5237":0,"5238":0,"5239":333,"5240":1995,"5241":0,"5242":2181,"5243":0,"5244":-1,"5245":-1,"5246":0,"5247":2030,"5248":508,"5249":2493,"5250":2356,"5251":-1,"5252":0,"5253":0,"5254":0,"5255":-1,"5256":0,"5257":-1,"5258":2190,"5259":-1,"5260":0,"5261":0,"5262":2145,"5263":0,"5264":-1,"5265":2388,"5266":-1,"5267":0,"5268":2003,"5269":2133,"5270":-1,"5271":-1,"5272":0,"5273":0,"5274":-1,"5275":102,"5276":-1,"5277":2607,"5278":0,"5279":2070,"5280":-1,"5281":0,"5282":0,"5283":2560,"5284":-1,"5285":0,"5286":0,"5287":0,"5288":2012,"5289":-1,"5290":612,"5291":0,"5292":0,"5293":-1,"5294":0,"5295":0,"5296":-1,"5297":0,"5298":-1,"5299":0,"5300":2525,"5301":-1,"5302":-1,"5303":0,"5304":0,"5305":2112,"5306":0,"5307":-1,"5308":-1,"5309":0,"5310":-1,"5311":2109,"5312":-1,"5313":2485,"5314":0,"5315":0,"5316":0,"5317":0,"5318":0,"5319":-1,"5320":-1,"5321":2214,"5322":0,"5323":2289,"5324":-1,"5325":2620,"5326":-1,"5327":0,"5328":-1,"5329":0,"5330":0,"5331":-1,"5332":-1,"5333":-1,"5334":-1,"5335":0,"5336":-1,"5337":0,"5338":2237,"5339":0,"5340":-1,"5341":0,"5342":0,"5343":0,"5344":0,"5345":0,"5346":0,"5347":-1,"5348":-1,"5349":-1,"5350":0,"5351":0,"5352":0,"5353":-1,"5354":-1,"5355":-1,"5356":13,"5357":0,"5358":0,"5359":0,"5360":0,"5361":0,"5362":0,"5363":0,"5364":2065,"5365":-1,"5366":-1,"5367":-1,"5368":2000,"5369":-1,"5370":2487,"5371":-1,"5372":0,"5373":0,"5374":-1,"5375":29,"5376":2442,"5377":0,"5378":2078,"5379":-1,"5380":2626,"5381":2003,"5382":28,"5383":0,"5384":-1,"5385":-1,"5386":2345,"5387":-1,"5388":2463,"5389":-1,"5390":2248,"5391":0,"5392":37,"5393":-1,"5394":-1,"5395":0,"5396":0,"5397":2122,"5398":0,"5399":0,"5400":-1,"5401":2453,"5402":0,"5403":2301,"5404":-1,"5405":0,"5406":0,"5407":0,"5408":-1,"5409":0,"5410":-1,"5411":0,"5412":0,"5413":2335,"5414":-1,"5415":2581,"5416":-1,"5417":-1,"5418":645,"5419":-1,"5420":2650,"5421":-1,"5422":0,"5423":0,"5424":102,"5425":-1,"5426":-1,"5427":-1,"5428":2549,"5429":-1,"5430":-1,"5431":0,"5432":0,"5433":0,"5434":0,"5435":-1,"5436":0,"5437":942,"5438":-1,"5439":88,"5440":-1,"5441":-1,"5442":0,"5443":2486,"5444":0,"5445":-1,"5446":0,"5447":86,"5448":0,"5449":0,"5450":2060,"5451":0,"5452":2084,"5453":2490,"5454":0,"5455":-1,"5456":0,"5457":0,"5458":-1,"5459":0,"5460":0,"5461":0,"5462":0,"5463":2237,"5464":-1,"5465":0,"5466":2481,"5467":-1,"5468":0,"5469":-1,"5470":-1,"5471":0,"5472":-1,"5473":-1,"5474":-1,"5475":0,"5476":0,"5477":310,"5478":2346,"5479":2147,"5480":2462,"5481":-1,"5482":0,"5483":-1,"5484":0,"5485":0,"5486":2091,"5487":-1,"5488":2317,"5489":0,"5490":0,"5491":-1,"5492":-1,"5493":0,"5494":327,"5495":-1,"5496":0,"5497":0,"5498":908,"5499":0,"5500":0,"5501":0,"5502":137,"5503":0,"5504":2654,"5505":0,"5506":0,"5507":0,"5508":-1,"5509":-1,"5510":2021,"5511":0,"5512":2434,"5513":2396,"5514":41,"5515":0,"5516":0,"5517":-1,"5518":-1,"5519":-1,"5520":0,"5521":-1,"5522":2264,"5523":0,"5524":-1,"5525":0,"5526":0,"5527":-1,"5528":-1,"5529":-1,"5530":0,"5531":-1,"5532":0,"5533":-1,"5534":0,"5535":2561,"5536":-1,"5537":787,"5538":-1,"5539":-1,"5540":0,"5541":0,"5542":0,"5543":0,"5544":-1,"5545":0,"5546":-1,"5547":0,"5548":2571,"5549":-1,"5550":0,"5551":2279,"5552":-1,"5553":0,"5554":-1,"5555":-1,"5556":-1,"5557":2258,"5558":0,"5559":2423,"5560":0,"5561":0,"5562":0,"5563":0,"5564":0,"5565":-1,"5566":18,"5567":0,"5568":0,"5569":0,"5570":2001,"5571":19,"5572":0,"5573":1994,"5574":0,"5575":-1,"5576":-1,"5577":0,"5578":0,"5579":-1,"5580":-1,"5581":0,"5582":0,"5583":0,"5584":2106,"5585":2414,"5586":-1,"5587":0,"5588":-1,"5589":0,"5590":-1,"5591":-1,"5592":0,"5593":0,"5594":2382,"5595":-1,"5596":-1,"5597":0,"5598":0,"5599":-1,"5600":2676,"5601":0,"5602":2446,"5603":0,"5604":0,"5605":-1,"5606":0,"5607":-1,"5608":0,"5609":187,"5610":0,"5611":0,"5612":-1,"5613":-1,"5614":0,"5615":0,"5616":0,"5617":10,"5618":-1,"5619":-1,"5620":0,"5621":-1,"5622":-1,"5623":936,"5624":0,"5625":0,"5626":-1,"5627":0,"5628":2487,"5629":0,"5630":0,"5631":-1,"5632":0,"5633":0,"5634":-1,"5635":0,"5636":2228,"5637":-1,"5638":0,"5639":-1,"5640":-1,"5641":0,"5642":-1,"5643":-1,"5644":-1,"5645":2051,"5646":0,"5647":2246,"5648":0,"5649":2475,"5650":2672,"5651":-1,"5652":0,"5653":0,"5654":2567,"5655":0,"5656":-1,"5657":0,"5658":0,"5659":-1,"5660":0,"5661":-1,"5662":2508,"5663":0,"5664":0,"5665":0,"5666":0,"5667":0,"5668":-1,"5669":0,"5670":0,"5671":0,"5672":-1,"5673":2574,"5674":2142,"5675":0,"5676":0,"5677":0,"5678":2478,"5679":0,"5680":0,"5681":-1,"5682":-1,"5683":16,"5684":0,"5685":-1,"5686":2074,"5687":693,"5688":-1,"5689":2636,"5690":-1,"5691":2090,"5692":2139,"5693":0,"5694":2096,"5695":308,"5696":0,"5697":0,"5698":-1,"5699":-1,"5700":-1,"5701":0,"5702":0,"5703":2249,"5704":0,"5705":0,"5706":0,"5707":2277,"5708":0,"5709":0,"5710":0,"5711":0,"5712":-1,"5713":137,"5714":2572,"5715":-1,"5716":0,"5717":0,"5718":39,"5719":0,"5720":-1,"5721":0,"5722":2288,"5723":0,"5724":-1,"5725":-1,"5726":2424,"5727":-1,"5728":2663,"5729":0,"5730":2137,"5731":-1,"5732":0,"5733":0,"5734":-1,"5735":0,"5736":0,"5737":2381,"5738":2155,"5739":0,"5740":-1,"5741":-1,"5742":130,"5743":-1,"5744":-1,"5745":0,"5746":-1,"5747":0,"5748":0,"5749":-1,"5750":0,"5751":0,"5752":0,"5753":20,"5754":-1,"5755":0,"5756":-1,"5757":-1,"5758":-1,"5759":-1,"5760":-1,"5761":0,"5762":0,"5763":0,"5764":2611,"5765":0,"5766":310,"5767":0,"5768":-1,"5769":-1,"5770":-1,"5771":0,"5772":0,"5773":551,"5774":-1,"5775":-1,"5776":0,"5777":-1,"5778":-1,"5779":0,"5780":0,"5781":-1,"5782":-1,"5783":-1,"5784":2421,"5785":0,"5786":0,"5787":0,"5788":0,"5789":0,"5790":-1,"5791":0,"5792":-1,"5793":2053,"5794":0,"5795":508,"5796":2517,"5797":0,"5798":0,"5799":-1,"5800":-1,"5801":-1,"5802":2133,"5803":412,"5804":0,"5805":2297,"5806":-1,"5807":0,"5808":-1,"5809":0,"5810":0,"5811":0,"5812":0,"5813":104,"5814":2618,"5815":2020,"5816":0,"5817":0,"5818":-1,"5819":0,"5820":0,"5821":-1,"5822":0,"5823":0,"5824":0,"5825":2635,"5826":-1,"5827":75,"5828":2386,"5829":-1,"5830":0,"5831":0,"5832":0,"5833":-1,"5834":2384,"5835":0,"5836":2224,"5837":0,"5838":2175,"5839":0,"5840":0,"5841":-1,"5842":0,"5843":0,"5844":-1,"5845":0,"5846":-1,"5847":0,"5848":0,"5849":-1,"5850":0,"5851":2044,"5852":-1,"5853":0,"5854":0,"5855":0,"5856":-1,"5857":2659,"5858":-1,"5859":0,"5860":-1,"5861":0,"5862":0,"5863":0,"5864":2089,"5865":2333,"5866":0,"5867":0,"5868":2316,"5869":-1,"5870":0,"5871":2203,"5872":0,"5873":0,"5874":0,"5875":2598,"5876":2097,"5877":-1,"5878":0,"5879":0,"5880":0,"5881":-1,"5882":0,"5883":0,"5884":2449,"5885":436,"5886":5,"5887":0,"5888":0,"5889":397,"5890":0,"5891":-1,"5892":0,"5893":2016,"5894":0,"5895":329,"5896":2000,"5897":-1,"5898":0,"5899":-1,"5900":2288,"5901":-1,"5902":-1,"5903":0,"5904":2613,"5905":0,"5906":0,"5907":2559,"5908":-1,"5909":0,"5910":-1,"5911":2641,"5912":21,"5913":-1,"5914":107,"5915":0,"5916":2648,"5917":0,"5918":908,"5919":-1,"5920":-1,"5921":2552,"5922":2340,"5923":-1,"5924":-1,"5925":-1,"5926":-1,"5927":-1,"5928":-1,"5929":-1,"5930":-1,"5931":-1,"5932":0,"5933":-1,"5934":-1,"5935":-1,"5936":-1,"5937":0,"5938":0,"5939":14,"5940":2562,"5941":798,"5942":-1,"5943":-1,"5944":-1,"5945":0,"5946":-1,"5947":-1,"5948":-1,"5949":-1,"5950":-1,"5951":0,"5952":-1,"5953":0,"5954":-1,"5955":-1,"5956":2226,"5957":0,"5958":602,"5959":-1,"5960":-1,"5961":0,"5962":2191,"5963":0,"5964":-1,"5965":2638,"5966":-1,"5967":0,"5968":-1,"5969":0,"5970":0,"5971":-1,"5972":98,"5973":-1,"5974":0,"5975":0,"5976":-1,"5977":0,"5978":2319,"5979":0,"5980":0,"5981":2673,"5982":-1,"5983":0,"5984":2204,"5985":2652,"5986":0,"5987":2382,"5988":-1,"5989":0,"5990":0,"5991":2633,"5992":2067,"5993":-1,"5994":-1,"5995":2638,"5996":-1,"5997":2500,"5998":0,"5999":0,"6000":2490,"6001":0,"6002":-1,"6003":2477,"6004":0,"6005":2674,"6006":-1,"6007":0,"6008":2211,"6009":0,"6010":0,"6011":0,"6012":-1,"6013":0,"6014":353,"6015":2452,"6016":0,"6017":0,"6018":0,"6019":0,"6020":2626,"6021":-1,"6022":-1,"6023":39,"6024":-1,"6025":108,"6026":-1,"6027":-1,"6028":-1,"6029":2390,"6030":2083,"6031":0,"6032":145,"6033":0,"6034":0,"6035":2484,"6036":0,"6037":0,"6038":0,"6039":2406,"6040":0,"6041":-1,"6042":0,"6043":0,"6044":2465,"6045":2122,"6046":0,"6047":-1,"6048":-1,"6049":0,"6050":104,"6051":0,"6052":2216,"6053":0,"6054":0,"6055":-1,"6056":-1,"6057":0,"6058":-1,"6059":0,"6060":2427,"6061":0,"6062":2469,"6063":2262,"6064":0,"6065":0,"6066":-1,"6067":-1,"6068":2134,"6069":-1,"6070":0,"6071":0,"6072":220,"6073":-1,"6074":0,"6075":0,"6076":-1,"6077":2034,"6078":0,"6079":0,"6080":2164,"6081":0,"6082":-1,"6083":2679,"6084":-1,"6085":-1,"6086":0,"6087":0,"6088":46,"6089":0,"6090":0,"6091":0,"6092":-1,"6093":2021,"6094":-1,"6095":-1,"6096":2572,"6097":-1,"6098":2652,"6099":0,"6100":0,"6101":0,"6102":-1,"6103":-1,"6104":2293,"6105":-1,"6106":0,"6107":2148,"6108":0,"6109":40,"6110":-1,"6111":0,"6112":2663,"6113":10,"6114":0,"6115":104,"6116":0,"6117":0,"6118":-1,"6119":-1,"6120":-1,"6121":-1,"6122":-1,"6123":0,"6124":0,"6125":0,"6126":0,"6127":-1,"6128":-1,"6129":0,"6130":-1,"6131":2131,"6132":859,"6133":0,"6134":0,"6135":-1,"6136":483,"6137":-1,"6138":-1,"6139":0,"6140":-1,"6141":-1,"6142":28,"6143":2514,"6144":0,"6145":0,"6146":-1,"6147":-1,"6148":0,"6149":0,"6150":2387,"6151":0,"6152":2180,"6153":-1,"6154":0,"6155":0,"6156":0,"6157":0,"6158":-1,"6159":25,"6160":-1,"6161":-1,"6162":0,"6163":0,"6164":0,"6165":-1,"6166":-1,"6167":-1,"6168":-1,"6169":-1,"6170":-1,"6171":2371,"6172":2414,"6173":0,"6174":0,"6175":0,"6176":-1,"6177":2334,"6178":2170,"6179":0,"6180":0,"6181":0,"6182":0,"6183":0,"6184":-1,"6185":0,"6186":667,"6187":894,"6188":-1,"6189":-1,"6190":2004,"6191":-1,"6192":0,"6193":0,"6194":-1,"6195":584,"6196":0,"6197":-1,"6198":0,"6199":353,"6200":-1,"6201":2246,"6202":0,"6203":0,"6204":0,"6205":-1,"6206":0,"6207":0,"6208":-1,"6209":0,"6210":2593,"6211":-1,"6212":2368,"6213":2201,"6214":0,"6215":2541,"6216":2296,"6217":2365,"6218":96,"6219":0,"6220":2505,"6221":0,"6222":0,"6223":-1,"6224":333,"6225":2671,"6226":-1,"6227":0,"6228":0,"6229":0,"6230":0,"6231":908,"6232":0,"6233":0,"6234":2154,"6235":2661,"6236":-1,"6237":2178,"6238":0,"6239":0,"6240":-1,"6241":-1,"6242":0,"6243":-1,"6244":0,"6245":0,"6246":-1,"6247":67,"6248":-1,"6249":0,"6250":-1,"6251":0,"6252":2370,"6253":0,"6254":0,"6255":0,"6256":0,"6257":2090,"6258":0,"6259":-1,"6260":0,"6261":0,"6262":0,"6263":2599,"6264":0,"6265":0,"6266":2323,"6267":0,"6268":0,"6269":0,"6270":0,"6271":0,"6272":-1,"6273":0,"6274":0,"6275":-1,"6276":-1,"6277":0,"6278":-1,"6279":-1,"6280":0,"6281":2531,"6282":2211,"6283":0,"6284":-1,"6285":136,"6286":2549,"6287":0,"6288":-1,"6289":2414,"6290":0,"6291":0,"6292":0,"6293":0,"6294":-1,"6295":2351,"6296":0,"6297":-1,"6298":0,"6299":0,"6300":-1,"6301":0,"6302":-1,"6303":-1,"6304":0,"6305":-1,"6306":2348,"6307":0,"6308":-1,"6309":2387,"6310":345,"6311":2446,"6312":0,"6313":-1,"6314":-1,"6315":2371,"6316":551,"6317":407,"6318":0,"6319":-1,"6320":-1,"6321":-1,"6322":0,"6323":-1,"6324":-1,"6325":-1,"6326":2150,"6327":-1,"6328":2160,"6329":0,"6330":0,"6331":-1,"6332":0,"6333":299,"6334":0,"6335":0,"6336":-1,"6337":2193,"6338":2081,"6339":0,"6340":0,"6341":0,"6342":-1,"6343":2632,"6344":0,"6345":-1,"6346":0,"6347":-1,"6348":-1,"6349":0,"6350":2510,"6351":2141,"6352":0,"6353":0,"6354":0,"6355":0,"6356":0,"6357":2544,"6358":0,"6359":-1,"6360":-1,"6361":0,"6362":0,"6363":772,"6364":-1,"6365":0,"6366":0,"6367":0,"6368":-1,"6369":0,"6370":-1,"6371":0,"6372":0,"6373":0,"6374":0,"6375":0,"6376":0,"6377":0,"6378":0,"6379":262,"6380":777,"6381":2372,"6382":159,"6383":2230,"6384":0,"6385":-1,"6386":0,"6387":-1,"6388":2489,"6389":-1,"6390":0,"6391":2208,"6392":-1,"6393":0,"6394":0,"6395":0,"6396":-1,"6397":0,"6398":-1,"6399":-1,"6400":-1,"6401":2385,"6402":-1,"6403":0,"6404":0,"6405":0,"6406":-1,"6407":-1,"6408":-1,"6409":310,"6410":0,"6411":0,"6412":2043,"6413":107,"6414":-1,"6415":0,"6416":0,"6417":2229,"6418":-1,"6419":-1,"6420":0,"6421":-1,"6422":23,"6423":-1,"6424":0,"6425":-1,"6426":0,"6427":-1,"6428":2002,"6429":-1,"6430":-1,"6431":0,"6432":0,"6433":-1,"6434":-1,"6435":0,"6436":-1,"6437":0,"6438":313,"6439":1995,"6440":1998,"6441":2404,"6442":-1,"6443":300,"6444":0,"6445":-1,"6446":-1,"6447":-1,"6448":-1,"6449":-1,"6450":-1,"6451":0,"6452":0,"6453":-1,"6454":0,"6455":0,"6456":-1,"6457":58,"6458":0,"6459":0,"6460":0,"6461":0,"6462":2145,"6463":2136,"6464":0,"6465":2060,"6466":0,"6467":1998,"6468":0,"6469":0,"6470":0,"6471":0,"6472":0,"6473":0,"6474":0,"6475":0,"6476":353,"6477":2035,"6478":2626,"6479":-1,"6480":2064,"6481":0,"6482":-1,"6483":0,"6484":0,"6485":-1,"6486":0,"6487":0,"6488":0,"6489":2387,"6490":2354,"6491":-1,"6492":0,"6493":0,"6494":0,"6495":2584,"6496":0,"6497":0,"6498":0,"6499":-1,"6500":-1,"6501":2108,"6502":0,"6503":2591,"6504":2129,"6505":-1,"6506":2625,"6507":0,"6508":0,"6509":-1,"6510":0,"6511":0,"6512":0,"6513":0,"6514":0,"6515":262,"6516":-1,"6517":0,"6518":0,"6519":-1,"6520":-1,"6521":-1,"6522":0,"6523":0,"6524":2409,"6525":0,"6526":0,"6527":-1,"6528":0,"6529":-1,"6530":0,"6531":-1,"6532":0,"6533":-1,"6534":0,"6535":2474,"6536":0,"6537":0,"6538":0,"6539":-1,"6540":-1,"6541":2294,"6542":0,"6543":-1,"6544":420,"6545":0,"6546":2389,"6547":0,"6548":0,"6549":0,"6550":0,"6551":-1,"6552":0,"6553":-1,"6554":-1,"6555":0,"6556":2264,"6557":0,"6558":-1,"6559":0,"6560":-1,"6561":-1,"6562":0,"6563":-1,"6564":0,"6565":-1,"6566":0,"6567":-1,"6568":461,"6569":-1,"6570":0,"6571":-1,"6572":-1,"6573":0,"6574":0,"6575":0,"6576":0,"6577":0,"6578":2021,"6579":2518,"6580":-1,"6581":341,"6582":2269,"6583":2030,"6584":2505,"6585":0,"6586":2486,"6587":0,"6588":0,"6589":-1,"6590":-1,"6591":0,"6592":-1,"6593":0,"6594":17,"6595":-1,"6596":-1,"6597":-1,"6598":-1,"6599":0,"6600":0,"6601":-1,"6602":-1,"6603":2354,"6604":-1,"6605":0,"6606":2485,"6607":-1,"6608":2465,"6609":0,"6610":2027,"6611":-1,"6612":0,"6613":199,"6614":-1,"6615":0,"6616":0,"6617":0,"6618":-1,"6619":0,"6620":0,"6621":0,"6622":-1,"6623":0,"6624":0,"6625":0,"6626":0,"6627":0,"6628":0,"6629":0,"6630":2438,"6631":0,"6632":61,"6633":559,"6634":0,"6635":-1,"6636":0,"6637":0,"6638":-1,"6639":0,"6640":325,"6641":262,"6642":-1,"6643":0,"6644":2237,"6645":0,"6646":-1,"6647":0,"6648":0,"6649":455,"6650":2268,"6651":-1,"6652":2539,"6653":-1,"6654":2077,"6655":-1,"6656":2365,"6657":-1,"6658":0,"6659":0,"6660":2493,"6661":0,"6662":0,"6663":2123,"6664":0,"6665":0,"6666":2213,"6667":0,"6668":2412,"6669":0,"6670":0,"6671":0,"6672":0,"6673":-1,"6674":-1,"6675":0,"6676":-1,"6677":0,"6678":-1,"6679":0,"6680":300,"6681":2110,"6682":420,"6683":0,"6684":-1,"6685":-1,"6686":0,"6687":436,"6688":-1,"6689":-1,"6690":2676,"6691":2106,"6692":0,"6693":2670,"6694":0,"6695":310,"6696":0,"6697":0,"6698":0,"6699":0,"6700":0,"6701":0,"6702":2473,"6703":0,"6704":2281,"6705":0,"6706":168,"6707":0,"6708":-1,"6709":-1,"6710":0,"6711":2316,"6712":0,"6713":2259,"6714":0,"6715":0,"6716":-1,"6717":0,"6718":2676,"6719":842,"6720":942,"6721":0,"6722":0,"6723":0,"6724":0,"6725":0,"6726":2645,"6727":2497,"6728":0,"6729":0,"6730":-1,"6731":0,"6732":0,"6733":0,"6734":0,"6735":2328,"6736":0,"6737":0,"6738":0,"6739":2080,"6740":-1,"6741":0,"6742":-1,"6743":0,"6744":0,"6745":0,"6746":0,"6747":2027,"6748":2313,"6749":-1,"6750":0,"6751":2442,"6752":-1,"6753":0,"6754":0,"6755":2426,"6756":0,"6757":-1,"6758":-1,"6759":0,"6760":0,"6761":-1,"6762":0,"6763":2572,"6764":0,"6765":0,"6766":0,"6767":0,"6768":2474,"6769":2418,"6770":2393,"6771":2657,"6772":2229,"6773":-1,"6774":-1,"6775":-1,"6776":-1,"6777":0,"6778":0,"6779":0,"6780":0,"6781":0,"6782":2319,"6783":787,"6784":-1,"6785":0,"6786":96,"6787":0,"6788":-1,"6789":-1,"6790":-1,"6791":0,"6792":0,"6793":514,"6794":0,"6795":-1,"6796":-1,"6797":0,"6798":0,"6799":0,"6800":0,"6801":0,"6802":-1,"6803":-1,"6804":0,"6805":0,"6806":0,"6807":0,"6808":2383,"6809":0,"6810":0,"6811":2186,"6812":0,"6813":-1,"6814":2580,"6815":0,"6816":2598,"6817":0,"6818":2377,"6819":-1,"6820":0,"6821":0,"6822":2018,"6823":2031,"6824":2207,"6825":-1,"6826":849,"6827":108,"6828":-1,"6829":0,"6830":-1,"6831":0,"6832":-1,"6833":2645,"6834":0,"6835":2197,"6836":0,"6837":0,"6838":0,"6839":0,"6840":0,"6841":0,"6842":-1,"6843":-1,"6844":0,"6845":-1,"6846":554,"6847":0,"6848":2601,"6849":0,"6850":2309,"6851":0,"6852":0,"6853":0,"6854":2079,"6855":0,"6856":-1,"6857":61,"6858":578,"6859":-1,"6860":0,"6861":0,"6862":0,"6863":2334,"6864":0,"6865":0,"6866":0,"6867":-1,"6868":0,"6869":0,"6870":0,"6871":0,"6872":0,"6873":0,"6874":2263,"6875":2172,"6876":246,"6877":-1,"6878":0,"6879":-1,"6880":0,"6881":2278,"6882":-1,"6883":0,"6884":-1,"6885":284,"6886":2161,"6887":-1,"6888":0,"6889":2440,"6890":2026,"6891":0,"6892":-1,"6893":0,"6894":2509,"6895":2208,"6896":0,"6897":-1,"6898":0,"6899":0,"6900":-1,"6901":-1,"6902":2267,"6903":-1,"6904":-1,"6905":0,"6906":-1,"6907":219,"6908":-1,"6909":0,"6910":-1,"6911":2348,"6912":0,"6913":0,"6914":0,"6915":-1,"6916":0,"6917":2552,"6918":2412,"6919":0,"6920":2343,"6921":-1,"6922":0,"6923":520,"6924":0,"6925":362,"6926":0,"6927":0,"6928":-1,"6929":2284,"6930":0,"6931":612,"6932":-1,"6933":0,"6934":2013,"6935":0,"6936":0,"6937":-1,"6938":2425,"6939":559,"6940":-1,"6941":0,"6942":-1,"6943":2578,"6944":0,"6945":-1,"6946":2187,"6947":-1,"6948":0,"6949":0,"6950":0,"6951":0,"6952":0,"6953":-1,"6954":-1,"6955":0,"6956":-1,"6957":0,"6958":0,"6959":-1,"6960":12,"6961":2537,"6962":2142,"6963":2368,"6964":-1,"6965":-1,"6966":0,"6967":0,"6968":-1,"6969":-1,"6970":0,"6971":0,"6972":0,"6973":0,"6974":2030,"6975":0,"6976":2557,"6977":0,"6978":-1,"6979":2451,"6980":2219,"6981":-1,"6982":-1,"6983":0,"6984":0,"6985":-1,"6986":0,"6987":-1,"6988":2143,"6989":0,"6990":-1,"6991":547,"6992":0,"6993":-1,"6994":-1,"6995":0,"6996":0,"6997":0,"6998":0,"6999":8,"7000":-1,"7001":0,"7002":0,"7003":-1,"7004":0,"7005":2646,"7006":2055,"7007":-1,"7008":-1,"7009":-1,"7010":0,"7011":0,"7012":-1,"7013":-1,"7014":0,"7015":-1,"7016":0,"7017":2351,"7018":0,"7019":-1,"7020":0,"7021":-1,"7022":2367,"7023":0,"7024":0,"7025":-1,"7026":25,"7027":2473,"7028":-1,"7029":0,"7030":2213,"7031":-1,"7032":-1,"7033":0,"7034":0,"7035":2246,"7036":0,"7037":-1,"7038":2106,"7039":-1,"7040":0,"7041":0,"7042":0,"7043":0,"7044":2617,"7045":0,"7046":0,"7047":0,"7048":0,"7049":2453,"7050":-1,"7051":2511,"7052":2594,"7053":0,"7054":0,"7055":0,"7056":-1,"7057":-1,"7058":-1,"7059":0,"7060":0,"7061":0,"7062":0,"7063":-1,"7064":-1,"7065":0,"7066":-1,"7067":0,"7068":37,"7069":604,"7070":0,"7071":2145,"7072":2256,"7073":-1,"7074":2101,"7075":0,"7076":0,"7077":2337,"7078":-1,"7079":-1,"7080":0,"7081":-1,"7082":0,"7083":-1,"7084":-1,"7085":-1,"7086":0,"7087":603,"7088":-1,"7089":2036,"7090":936,"7091":-1,"7092":0,"7093":-1,"7094":-1,"7095":0,"7096":-1,"7097":0,"7098":-1,"7099":0,"7100":2203,"7101":0,"7102":0,"7103":0,"7104":0,"7105":-1,"7106":-1,"7107":-1,"7108":0,"7109":-1,"7110":0,"7111":-1,"7112":2387,"7113":0,"7114":0,"7115":-1,"7116":0,"7117":0,"7118":2514,"7119":0,"7120":0,"7121":0,"7122":-1,"7123":0,"7124":-1,"7125":-1,"7126":-1,"7127":0,"7128":0,"7129":2257,"7130":0,"7131":0,"7132":-1,"7133":0,"7134":0,"7135":0,"7136":-1,"7137":0,"7138":0,"7139":0,"7140":0,"7141":2567,"7142":-1,"7143":2176,"7144":0,"7145":-1,"7146":0,"7147":533,"7148":-1,"7149":-1,"7150":29,"7151":0,"7152":0,"7153":0,"7154":-1,"7155":2388,"7156":-1,"7157":2031,"7158":2121,"7159":-1,"7160":2242,"7161":-1,"7162":0,"7163":0,"7164":0,"7165":0,"7166":0,"7167":0,"7168":120,"7169":2113,"7170":0,"7171":2124,"7172":-1,"7173":0,"7174":-1,"7175":0,"7176":0,"7177":0,"7178":-1,"7179":-1,"7180":2448,"7181":0,"7182":-1,"7183":2034,"7184":0,"7185":0,"7186":-1,"7187":0,"7188":2254,"7189":0,"7190":2240,"7191":0,"7192":-1,"7193":0,"7194":-1,"7195":0,"7196":395,"7197":0,"7198":0,"7199":0,"7200":0,"7201":-1,"7202":0,"7203":-1,"7204":0,"7205":-1,"7206":-1,"7207":0,"7208":0,"7209":0,"7210":-1,"7211":-1,"7212":2602,"7213":0,"7214":2283,"7215":-1,"7216":0,"7217":0,"7218":-1,"7219":2516,"7220":2478,"7221":-1,"7222":0,"7223":0,"7224":0,"7225":2061,"7226":0,"7227":-1,"7228":0,"7229":0,"7230":-1,"7231":2332,"7232":0,"7233":2440,"7234":0,"7235":0,"7236":0,"7237":0,"7238":-1,"7239":2567,"7240":0,"7241":2075,"7242":2402,"7243":2282,"7244":-1,"7245":0,"7246":0,"7247":-1,"7248":2184,"7249":0,"7250":0,"7251":2238,"7252":0,"7253":0,"7254":-1,"7255":0,"7256":0,"7257":-1,"7258":-1,"7259":0,"7260":0,"7261":130,"7262":0,"7263":0,"7264":0,"7265":0,"7266":0,"7267":2052,"7268":-1,"7269":-1,"7270":-1,"7271":0,"7272":787,"7273":0,"7274":2394,"7275":0,"7276":2418,"7277":0,"7278":2257,"7279":-1,"7280":0,"7281":-1,"7282":0,"7283":0,"7284":2138,"7285":859,"7286":2653,"7287":455,"7288":-1,"7289":2384,"7290":0,"7291":0,"7292":0,"7293":0,"7294":-1,"7295":-1,"7296":0,"7297":0,"7298":2554,"7299":-1,"7300":-1,"7301":-1,"7302":-1,"7303":0,"7304":2286,"7305":0,"7306":0,"7307":-1,"7308":-1,"7309":0,"7310":0,"7311":0,"7312":2341,"7313":0,"7314":693,"7315":219,"7316":0,"7317":0,"7318":0,"7319":2404,"7320":2254,"7321":0,"7322":0,"7323":156,"7324":-1,"7325":-1,"7326":908,"7327":0,"7328":-1,"7329":0,"7330":0,"7331":-1,"7332":-1,"7333":2580,"7334":-1,"7335":-1,"7336":-1,"7337":-1,"7338":0,"7339":0,"7340":2081,"7341":0,"7342":2338,"7343":2669,"7344":0,"7345":0,"7346":0,"7347":2585,"7348":0,"7349":-1,"7350":0,"7351":-1,"7352":0,"7353":0,"7354":0,"7355":-1,"7356":-1,"7357":0,"7358":2,"7359":-1,"7360":0,"7361":0,"7362":-1,"7363":2046,"7364":2087,"7365":2430,"7366":0,"7367":2170,"7368":0,"7369":2225,"7370":-1,"7371":0,"7372":0,"7373":0,"7374":0,"7375":0,"7376":2651,"7377":2152,"7378":0,"7379":-1,"7380":2324,"7381":-1,"7382":2353,"7383":2392,"7384":-1,"7385":-1,"7386":-1,"7387":-1,"7388":0,"7389":2643,"7390":2150,"7391":0,"7392":0,"7393":-1,"7394":0,"7395":0,"7396":449,"7397":0,"7398":-1,"7399":-1,"7400":0,"7401":0,"7402":-1,"7403":2108,"7404":-1,"7405":-1,"7406":0,"7407":64,"7408":0,"7409":-1,"7410":0,"7411":0,"7412":496,"7413":0,"7414":-1,"7415":0,"7416":-1,"7417":0,"7418":0,"7419":0,"7420":-1,"7421":-1,"7422":-1,"7423":2221,"7424":0,"7425":551,"7426":0,"7427":0,"7428":-1,"7429":-1,"7430":0,"7431":2175,"7432":-1,"7433":130,"7434":-1,"7435":-1,"7436":2296,"7437":-1,"7438":-1,"7439":0,"7440":2593,"7441":0,"7442":0,"7443":0,"7444":-1,"7445":0,"7446":0,"7447":-1,"7448":2497,"7449":0,"7450":0,"7451":-1,"7452":924,"7453":0,"7454":-1,"7455":2074,"7456":0,"7457":0,"7458":-1,"7459":-1,"7460":2122,"7461":-1,"7462":0,"7463":0,"7464":-1,"7465":2648,"7466":-1,"7467":2425,"7468":-1,"7469":0,"7470":2209,"7471":-1,"7472":2422,"7473":2067,"7474":168,"7475":0,"7476":0,"7477":0,"7478":693,"7479":2570,"7480":0,"7481":2223,"7482":-1,"7483":0,"7484":0,"7485":0,"7486":-1,"7487":0,"7488":-1,"7489":-1,"7490":0,"7491":0,"7492":0,"7493":-1,"7494":0,"7495":0,"7496":-1,"7497":0,"7498":0,"7499":-1,"7500":0,"7501":0,"7502":0,"7503":0,"7504":0,"7505":-1,"7506":2028,"7507":0,"7508":-1,"7509":2383,"7510":-1,"7511":220,"7512":-1,"7513":2325,"7514":-1,"7515":2197,"7516":33,"7517":0,"7518":0,"7519":2030,"7520":0,"7521":0,"7522":2592,"7523":0,"7524":-1,"7525":0,"7526":0,"7527":-1,"7528":2287,"7529":614,"7530":0,"7531":0,"7532":-1,"7533":-1,"7534":395,"7535":-1,"7536":0,"7537":0,"7538":0,"7539":0,"7540":2041,"7541":0,"7542":0,"7543":2047,"7544":0,"7545":-1,"7546":0,"7547":0,"7548":0,"7549":-1,"7550":0,"7551":0,"7552":-1,"7553":0,"7554":0,"7555":0,"7556":0,"7557":-1,"7558":2271,"7559":86,"7560":0,"7561":0,"7562":2459,"7563":0,"7564":-1,"7565":0,"7566":2503,"7567":345,"7568":-1,"7569":-1,"7570":-1,"7571":2230,"7572":0,"7573":2451,"7574":2546,"7575":-1,"7576":2664,"7577":0,"7578":-1,"7579":2325,"7580":-1,"7581":2510,"7582":-1,"7583":2037,"7584":-1,"7585":150,"7586":-1,"7587":2648,"7588":0,"7589":0,"7590":0,"7591":217,"7592":0,"7593":2259,"7594":41,"7595":-1,"7596":0,"7597":0,"7598":0,"7599":0,"7600":0,"7601":667,"7602":0,"7603":-1,"7604":-1,"7605":2188,"7606":-1,"7607":-1,"7608":0,"7609":2582,"7610":-1,"7611":2387,"7612":-1,"7613":0,"7614":662,"7615":-1,"7616":0,"7617":0,"7618":21,"7619":2579,"7620":0,"7621":-1,"7622":0,"7623":0,"7624":514,"7625":341,"7626":0,"7627":2360,"7628":-1,"7629":0,"7630":0,"7631":0,"7632":3,"7633":584,"7634":-1,"7635":-1,"7636":-1,"7637":0,"7638":46,"7639":0,"7640":0,"7641":-1,"7642":-1,"7643":0,"7644":0,"7645":0,"7646":-1,"7647":-1,"7648":2669,"7649":2451,"7650":2660,"7651":2657,"7652":-1,"7653":2509,"7654":0,"7655":-1,"7656":0,"7657":0,"7658":0,"7659":-1,"7660":420,"7661":0,"7662":0,"7663":2463,"7664":0,"7665":2125,"7666":2589,"7667":0,"7668":0,"7669":0,"7670":0,"7671":-1,"7672":0,"7673":2342,"7674":0,"7675":2405,"7676":2062,"7677":0,"7678":0,"7679":2430,"7680":-1,"7681":2456,"7682":88,"7683":2476,"7684":-1,"7685":-1,"7686":-1,"7687":3,"7688":0,"7689":2507,"7690":-1,"7691":-1,"7692":0,"7693":0,"7694":2489,"7695":-1,"7696":0,"7697":0,"7698":0,"7699":-1,"7700":2303,"7701":0,"7702":0,"7703":0,"7704":2127,"7705":0,"7706":0,"7707":-1,"7708":0,"7709":-1,"7710":2414,"7711":-1,"7712":0,"7713":-1,"7714":2638,"7715":0,"7716":2564,"7717":46,"7718":2385,"7719":-1,"7720":455,"7721":0,"7722":0,"7723":-1,"7724":0,"7725":-1,"7726":0,"7727":2516,"7728":0,"7729":-1,"7730":0,"7731":0,"7732":0,"7733":0,"7734":2384,"7735":-1,"7736":2530,"7737":0,"7738":2124,"7739":0,"7740":0,"7741":-1,"7742":2494,"7743":669,"7744":0,"7745":-1,"7746":2419,"7747":0,"7748":0,"7749":0,"7750":0,"7751":0,"7752":19,"7753":0,"7754":0,"7755":-1,"7756":0,"7757":-1,"7758":0,"7759":-1,"7760":-1,"7761":-1,"7762":0,"7763":2629,"7764":0,"7765":0,"7766":-1,"7767":2105,"7768":-1,"7769":2181,"7770":0,"7771":0,"7772":-1,"7773":-1,"7774":-1,"7775":0,"7776":-1,"7777":622,"7778":0,"7779":0,"7780":-1,"7781":-1,"7782":0,"7783":-1,"7784":0,"7785":-1,"7786":2545,"7787":-1,"7788":2009,"7789":637,"7790":0,"7791":2274,"7792":0,"7793":0,"7794":-1,"7795":0,"7796":0,"7797":0,"7798":0,"7799":0,"7800":2070,"7801":0,"7802":30,"7803":0,"7804":2514,"7805":0,"7806":-1,"7807":0,"7808":0,"7809":0,"7810":-1,"7811":-1,"7812":0,"7813":0,"7814":0,"7815":0,"7816":2391,"7817":0,"7818":0,"7819":0,"7820":0,"7821":0,"7822":2104,"7823":0,"7824":133,"7825":2074,"7826":2240,"7827":0,"7828":-1,"7829":0,"7830":2602,"7831":0,"7832":0,"7833":0,"7834":-1,"7835":0,"7836":0,"7837":2550,"7838":-1,"7839":2505,"7840":0,"7841":0,"7842":0,"7843":735,"7844":-1,"7845":0,"7846":0,"7847":2434,"7848":-1,"7849":-1,"7850":0,"7851":0,"7852":0,"7853":0,"7854":2179,"7855":-1,"7856":0,"7857":-1,"7858":559,"7859":2613,"7860":-1,"7861":2547,"7862":-1,"7863":-1,"7864":-1,"7865":-1,"7866":-1,"7867":0,"7868":0,"7869":0,"7870":0,"7871":2288,"7872":0,"7873":0,"7874":148,"7875":0,"7876":0,"7877":0,"7878":0,"7879":2662,"7880":0,"7881":0,"7882":0,"7883":0,"7884":0,"7885":0,"7886":2578,"7887":0,"7888":-1,"7889":0,"7890":2187,"7891":0,"7892":0,"7893":2569,"7894":0,"7895":2386,"7896":-1,"7897":-1,"7898":2203,"7899":-1,"7900":0,"7901":2574,"7902":0,"7903":-1,"7904":-1,"7905":44,"7906":0,"7907":0,"7908":2536,"7909":0,"7910":0,"7911":-1,"7912":0,"7913":2653,"7914":2201,"7915":-1,"7916":2397,"7917":-1,"7918":2197,"7919":2321,"7920":0,"7921":-1,"7922":-1,"7923":2387,"7924":2664,"7925":-1,"7926":0,"7927":0,"7928":2398,"7929":2636,"7930":280,"7931":-1,"7932":0,"7933":0,"7934":0,"7935":-1,"7936":-1,"7937":0,"7938":0,"7939":-1,"7940":0,"7941":0,"7942":2661,"7943":2232,"7944":0,"7945":0,"7946":0,"7947":2093,"7948":2311,"7949":0,"7950":2582,"7951":0,"7952":2531,"7953":0,"7954":-1,"7955":0,"7956":942,"7957":-1,"7958":2228,"7959":-1,"7960":0,"7961":-1,"7962":0,"7963":2003,"7964":0,"7965":0,"7966":-1,"7967":0,"7968":0,"7969":-1,"7970":0,"7971":-1,"7972":136,"7973":-1,"7974":0,"7975":-1,"7976":0,"7977":772,"7978":-1,"7979":-1,"7980":-1,"7981":-1,"7982":0,"7983":2081,"7984":2451,"7985":0,"7986":-1,"7987":-1,"7988":2497,"7989":0,"7990":0,"7991":2044,"7992":0,"7993":-1,"7994":-1,"7995":2103,"7996":2093,"7997":0,"7998":0,"7999":0,"8000":-1,"8001":0,"8002":2441,"8003":2423,"8004":0,"8005":0,"8006":300,"8007":2562,"8008":2171,"8009":0,"8010":2668,"8011":1993,"8012":2260,"8013":0,"8014":0,"8015":0,"8016":-1,"8017":0,"8018":2170,"8019":0,"8020":2068,"8021":0,"8022":0,"8023":0,"8024":-1,"8025":0,"8026":2524,"8027":0,"8028":407,"8029":0,"8030":0,"8031":-1,"8032":0,"8033":199,"8034":0,"8035":0,"8036":-1,"8037":-1,"8038":0,"8039":0,"8040":-1,"8041":-1,"8042":-1,"8043":-1,"8044":142,"8045":2081,"8046":0,"8047":0,"8048":418,"8049":-1,"8050":0,"8051":0,"8052":0,"8053":0,"8054":0,"8055":0,"8056":0,"8057":0,"8058":-1,"8059":64,"8060":-1,"8061":0,"8062":0,"8063":942,"8064":0,"8065":0,"8066":0,"8067":0,"8068":-1,"8069":0,"8070":-1,"8071":0,"8072":0,"8073":0,"8074":-1,"8075":345,"8076":0,"8077":1995,"8078":0,"8079":2058,"8080":-1,"8081":0,"8082":0,"8083":460,"8084":0,"8085":2238,"8086":0,"8087":0,"8088":0,"8089":0,"8090":-1,"8091":0,"8092":-1,"8093":220,"8094":0,"8095":2529,"8096":-1,"8097":2315,"8098":-1,"8099":0,"8100":-1,"8101":0,"8102":-1,"8103":0,"8104":0,"8105":-1,"8106":58,"8107":-1,"8108":-1,"8109":-1,"8110":0,"8111":-1,"8112":0,"8113":-1,"8114":0,"8115":0,"8116":2165,"8117":2082,"8118":2430,"8119":-1,"8120":2447,"8121":0,"8122":-1,"8123":-1,"8124":-1,"8125":-1,"8126":-1,"8127":2663,"8128":0,"8129":0,"8130":-1,"8131":0,"8132":-1,"8133":0,"8134":2333,"8135":0,"8136":2659,"8137":0,"8138":0,"8139":0,"8140":2322,"8141":-1,"8142":0,"8143":0,"8144":0,"8145":0,"8146":777,"8147":0,"8148":0,"8149":0,"8150":2545,"8151":0,"8152":2019,"8153":2077,"8154":0,"8155":0,"8156":-1,"8157":0,"8158":-1,"8159":0,"8160":0,"8161":0,"8162":-1,"8163":-1,"8164":-1,"8165":0,"8166":0,"8167":-1,"8168":88,"8169":11,"8170":0,"8171":-1,"8172":2024,"8173":0,"8174":-1,"8175":148,"8176":0,"8177":-1,"8178":-1,"8179":2640,"8180":0,"8181":0,"8182":0,"8183":-1,"8184":-1,"8185":2077,"8186":2628,"8187":-1,"8188":0,"8189":-1,"8190":0,"8191":-1,"8192":-1,"8193":0,"8194":2570,"8195":16,"8196":-1,"8197":308,"8198":-1,"8199":2087,"8200":-1,"8201":-1,"8202":2178,"8203":2110,"8204":2580,"8205":-1,"8206":0,"8207":-1,"8208":0,"8209":-1,"8210":0,"8211":-1,"8212":-1,"8213":0,"8214":907,"8215":0,"8216":-1,"8217":-1,"8218":2098,"8219":0,"8220":-1,"8221":-1,"8222":0,"8223":0,"8224":-1,"8225":0,"8226":2018,"8227":0,"8228":2538,"8229":0,"8230":0,"8231":-1,"8232":-1,"8233":0,"8234":0,"8235":2135,"8236":-1,"8237":0,"8238":0,"8239":0,"8240":-1,"8241":0,"8242":-1,"8243":0,"8244":0,"8245":0,"8246":-1,"8247":245,"8248":0,"8249":0,"8250":0,"8251":2134,"8252":0,"8253":-1,"8254":2006,"8255":0,"8256":0,"8257":0,"8258":0,"8259":2071,"8260":0,"8261":0,"8262":-1,"8263":-1,"8264":0,"8265":0,"8266":102,"8267":0,"8268":2065,"8269":449,"8270":-1,"8271":0,"8272":0,"8273":0,"8274":0,"8275":0,"8276":2254,"8277":0,"8278":2547,"8279":2186,"8280":0,"8281":2030,"8282":0,"8283":-1,"8284":-1,"8285":-1,"8286":2650,"8287":-1,"8288":0,"8289":0,"8290":2400,"8291":0,"8292":2299,"8293":0,"8294":0,"8295":-1,"8296":0,"8297":2197,"8298":-1,"8299":0,"8300":-1,"8301":-1,"8302":-1,"8303":0,"8304":2117,"8305":31,"8306":-1,"8307":-1,"8308":-1,"8309":0,"8310":-1,"8311":0,"8312":-1,"8313":2321,"8314":0,"8315":2273,"8316":942,"8317":0,"8318":2097,"8319":0,"8320":-1,"8321":2298,"8322":-1,"8323":0,"8324":0,"8325":0,"8326":0,"8327":2488,"8328":0,"8329":-1,"8330":-1,"8331":2666,"8332":2247,"8333":0,"8334":0,"8335":-1,"8336":0,"8337":0,"8338":2407,"8339":0,"8340":0,"8341":-1,"8342":0,"8343":0,"8344":0,"8345":-1,"8346":0,"8347":2271,"8348":0,"8349":0,"8350":0,"8351":-1,"8352":0,"8353":2317,"8354":0,"8355":0,"8356":0,"8357":-1,"8358":-1,"8359":2523,"8360":-1,"8361":-1,"8362":2594,"8363":-1,"8364":0,"8365":2009,"8366":0,"8367":412,"8368":0,"8369":0,"8370":-1,"8371":-1,"8372":-1,"8373":2005,"8374":0,"8375":418,"8376":2604,"8377":0,"8378":2567,"8379":-1,"8380":2142,"8381":1995,"8382":-1,"8383":0,"8384":0,"8385":-1,"8386":2212,"8387":2280,"8388":2357,"8389":-1,"8390":2497,"8391":2134,"8392":-1,"8393":-1,"8394":0,"8395":2440,"8396":0,"8397":-1,"8398":0,"8399":-1,"8400":0,"8401":2495,"8402":-1,"8403":-1,"8404":2502,"8405":0,"8406":0,"8407":2489,"8408":-1,"8409":-1,"8410":0,"8411":2254,"8412":-1,"8413":2169,"8414":0,"8415":-1,"8416":0,"8417":0,"8418":0,"8419":-1,"8420":2659,"8421":0,"8422":-1,"8423":2215,"8424":0,"8425":0,"8426":0,"8427":0,"8428":-1,"8429":0,"8430":2614,"8431":0,"8432":0,"8433":0,"8434":0,"8435":0,"8436":-1,"8437":0,"8438":0,"8439":0,"8440":-1,"8441":-1,"8442":-1,"8443":0,"8444":-1,"8445":2664,"8446":109,"8447":0,"8448":0,"8449":2458,"8450":30,"8451":0,"8452":0,"8453":-1,"8454":0,"8455":-1,"8456":0,"8457":0,"8458":0,"8459":0,"8460":0,"8461":-1,"8462":2276,"8463":-1,"8464":2451,"8465":0,"8466":2332,"8467":0,"8468":0,"8469":0,"8470":0,"8471":2096,"8472":0,"8473":0,"8474":-1,"8475":2235,"8476":2176,"8477":2497,"8478":-1,"8479":2504,"8480":0,"8481":0,"8482":0,"8483":0,"8484":0,"8485":0,"8486":0,"8487":-1,"8488":-1,"8489":0,"8490":-1,"8491":-1,"8492":0,"8493":0,"8494":-1,"8495":0,"8496":0,"8497":-1,"8498":-1,"8499":-1,"8500":0,"8501":-1,"8502":0,"8503":2058,"8504":2397,"8505":0,"8506":0,"8507":-1,"8508":0,"8509":2172,"8510":-1,"8511":-1,"8512":0,"8513":-1,"8514":2399,"8515":0,"8516":0,"8517":-1,"8518":2372,"8519":2496,"8520":0,"8521":2430,"8522":0,"8523":0,"8524":6,"8525":0,"8526":153,"8527":0,"8528":0,"8529":0,"8530":-1,"8531":293,"8532":-1,"8533":2152,"8534":2239,"8535":-1,"8536":0,"8537":2509,"8538":-1,"8539":0,"8540":-1,"8541":0,"8542":0,"8543":2023,"8544":-1,"8545":2076,"8546":0,"8547":0,"8548":0,"8549":-1,"8550":-1,"8551":0,"8552":0,"8553":96,"8554":-1,"8555":2325,"8556":-1,"8557":0,"8558":-1,"8559":-1,"8560":2042,"8561":2593,"8562":-1,"8563":-1,"8564":-1,"8565":0,"8566":0,"8567":2579,"8568":0,"8569":0,"8570":0,"8571":0,"8572":0,"8573":-1,"8574":0,"8575":2228,"8576":2245,"8577":2085,"8578":0,"8579":-1,"8580":2624,"8581":-1,"8582":0,"8583":0,"8584":0,"8585":-1,"8586":2345,"8587":0,"8588":-1,"8589":2368,"8590":-1,"8591":0,"8592":0,"8593":-1,"8594":2080,"8595":2430,"8596":0,"8597":0,"8598":2149,"8599":2142,"8600":0,"8601":0,"8602":-1,"8603":0,"8604":-1,"8605":0,"8606":49,"8607":-1,"8608":0,"8609":-1,"8610":0,"8611":-1,"8612":0,"8613":-1,"8614":-1,"8615":0,"8616":136,"8617":-1,"8618":0,"8619":2500,"8620":0,"8621":2573,"8622":0,"8623":0,"8624":0,"8625":-1,"8626":0,"8627":0,"8628":2104,"8629":0,"8630":0,"8631":0,"8632":0,"8633":0,"8634":-1,"8635":0,"8636":-1,"8637":0,"8638":0,"8639":9,"8640":2584,"8641":2371,"8642":0,"8643":0,"8644":0,"8645":-1,"8646":0,"8647":2493,"8648":2434,"8649":0,"8650":2452,"8651":-1,"8652":0,"8653":0,"8654":-1,"8655":2055,"8656":0,"8657":0,"8658":436,"8659":2499,"8660":0,"8661":0,"8662":0,"8663":0,"8664":2080,"8665":-1,"8666":0,"8667":-1,"8668":-1,"8669":-1,"8670":0,"8671":0,"8672":0,"8673":-1,"8674":2403,"8675":567,"8676":2389,"8677":-1,"8678":0,"8679":-1,"8680":2286,"8681":0,"8682":-1,"8683":-1,"8684":-1,"8685":2579,"8686":-1,"8687":2037,"8688":0,"8689":-1,"8690":0,"8691":0,"8692":2603,"8693":2293,"8694":0,"8695":-1,"8696":2494,"8697":0,"8698":0,"8699":-1,"8700":0,"8701":2069,"8702":-1,"8703":0,"8704":-1,"8705":-1,"8706":0,"8707":0,"8708":-1,"8709":0,"8710":0,"8711":0,"8712":0,"8713":20,"8714":0,"8715":2017,"8716":2437,"8717":2442,"8718":0,"8719":261,"8720":-1,"8721":2099,"8722":2194,"8723":178,"8724":-1,"8725":0,"8726":-1,"8727":0,"8728":0,"8729":0,"8730":-1,"8731":0,"8732":2350,"8733":2530,"8734":0,"8735":2602,"8736":-1,"8737":578,"8738":2046,"8739":-1,"8740":2545,"8741":-1,"8742":-1,"8743":0,"8744":-1,"8745":2466,"8746":2148,"8747":-1,"8748":0,"8749":154,"8750":2305,"8751":402,"8752":0,"8753":906,"8754":2074,"8755":-1,"8756":0,"8757":-1,"8758":2392,"8759":0,"8760":2105,"8761":0,"8762":0,"8763":0,"8764":0,"8765":-1,"8766":-1,"8767":0,"8768":0,"8769":-1,"8770":0,"8771":0,"8772":-1,"8773":-1,"8774":0,"8775":-1,"8776":0,"8777":2622,"8778":16,"8779":-1,"8780":-1,"8781":-1,"8782":0,"8783":0,"8784":0,"8785":0,"8786":-1,"8787":2310,"8788":0,"8789":2214,"8790":0,"8791":-1,"8792":0,"8793":2106,"8794":0,"8795":-1,"8796":0,"8797":-1,"8798":-1,"8799":-1,"8800":2114,"8801":2110,"8802":0,"8803":2468,"8804":2169,"8805":0,"8806":2296,"8807":0,"8808":0,"8809":0,"8810":-1,"8811":-1,"8812":2231,"8813":0,"8814":-1,"8815":0,"8816":0,"8817":0,"8818":0,"8819":-1,"8820":2025,"8821":-1,"8822":0,"8823":2065,"8824":2489,"8825":-1,"8826":0,"8827":-1,"8828":0,"8829":0,"8830":130,"8831":-1,"8832":0,"8833":0,"8834":-1,"8835":0,"8836":-1,"8837":-1,"8838":0,"8839":0,"8840":0,"8841":2196,"8842":0,"8843":-1,"8844":0,"8845":333,"8846":-1,"8847":0,"8848":-1,"8849":-1,"8850":0,"8851":0,"8852":0,"8853":-1,"8854":-1,"8855":0,"8856":0,"8857":-1,"8858":-1,"8859":-1,"8860":0,"8861":0,"8862":0,"8863":-1,"8864":333,"8865":-1,"8866":0,"8867":-1,"8868":205,"8869":-1,"8870":2296,"8871":0,"8872":2073,"8873":0,"8874":2480,"8875":-1,"8876":2362,"8877":-1,"8878":-1,"8879":-1,"8880":-1,"8881":-1,"8882":-1,"8883":-1,"8884":-1,"8885":2267,"8886":0,"8887":0,"8888":0,"8889":-1,"8890":0,"8891":0,"8892":-1,"8893":2276,"8894":-1,"8895":0,"8896":2143,"8897":2406,"8898":0,"8899":0,"8900":0,"8901":2110,"8902":2377,"8903":-1,"8904":2509,"8905":-1,"8906":2677,"8907":-1,"8908":2567,"8909":2541,"8910":-1,"8911":-1,"8912":0,"8913":2091,"8914":-1,"8915":-1,"8916":0,"8917":-1,"8918":0,"8919":2673,"8920":0,"8921":884,"8922":2634,"8923":-1,"8924":2592,"8925":0,"8926":-1,"8927":0,"8928":0,"8929":0,"8930":0,"8931":-1,"8932":-1,"8933":0,"8934":2659,"8935":-1,"8936":-1,"8937":0,"8938":0,"8939":0,"8940":2353,"8941":0,"8942":-1,"8943":0,"8944":0,"8945":0,"8946":-1,"8947":2137,"8948":2121,"8949":2439,"8950":0,"8951":0,"8952":-1,"8953":-1,"8954":0,"8955":0,"8956":-1,"8957":-1,"8958":2168,"8959":2653,"8960":198,"8961":-1,"8962":-1,"8963":-1,"8964":-1,"8965":-1,"8966":-1,"8967":2133,"8968":2174,"8969":0,"8970":0,"8971":-1,"8972":2237,"8973":-1,"8974":353,"8975":-1,"8976":0,"8977":0,"8978":0,"8979":0,"8980":-1,"8981":2184,"8982":0,"8983":2137,"8984":0,"8985":0,"8986":0,"8987":0,"8988":0,"8989":0,"8990":46,"8991":-1,"8992":0,"8993":-1,"8994":-1,"8995":0,"8996":-1,"8997":-1,"8998":2288,"8999":2360,"9000":0,"9001":2186,"9002":-1,"9003":0,"9004":0,"9005":0,"9006":-1,"9007":2355,"9008":-1,"9009":0,"9010":2306,"9011":0,"9012":0,"9013":-1,"9014":2303,"9015":0,"9016":-1,"9017":0,"9018":0,"9019":0,"9020":907,"9021":2023,"9022":2384,"9023":2424,"9024":0,"9025":-1,"9026":-1,"9027":2112,"9028":0,"9029":0,"9030":0,"9031":-1,"9032":-1,"9033":-1,"9034":0,"9035":0,"9036":2143,"9037":2392,"9038":0,"9039":-1,"9040":0,"9041":2338,"9042":2673,"9043":0,"9044":-1,"9045":2234,"9046":-1,"9047":-1,"9048":0,"9049":0,"9050":0,"9051":-1,"9052":2563,"9053":262,"9054":0,"9055":2132,"9056":0,"9057":-1,"9058":2338,"9059":-1,"9060":350,"9061":-1,"9062":0,"9063":0,"9064":0,"9065":0,"9066":-1,"9067":-1,"9068":2192,"9069":0,"9070":0,"9071":-1,"9072":0,"9073":2334,"9074":-1,"9075":-1,"9076":2142,"9077":645,"9078":2124,"9079":-1,"9080":-1,"9081":0,"9082":2479,"9083":0,"9084":2341,"9085":-1,"9086":0,"9087":-1,"9088":0,"9089":-1,"9090":-1,"9091":496,"9092":-1,"9093":2194,"9094":622,"9095":2400,"9096":0,"9097":2127,"9098":0,"9099":0,"9100":-1,"9101":0,"9102":0,"9103":-1,"9104":2328,"9105":2215,"9106":2107,"9107":0,"9108":0,"9109":0,"9110":-1,"9111":-1,"9112":2026,"9113":-1,"9114":58,"9115":0,"9116":0,"9117":0,"9118":-1,"9119":-1,"9120":1996,"9121":-1,"9122":-1,"9123":-1,"9124":0,"9125":-1,"9126":2554,"9127":0,"9128":0,"9129":2032,"9130":2222,"9131":2133,"9132":2170,"9133":2484,"9134":0,"9135":0,"9136":-1,"9137":-1,"9138":0,"9139":0,"9140":2206,"9141":2652,"9142":0,"9143":2118,"9144":101,"9145":2550,"9146":-1,"9147":0,"9148":-1,"9149":-1,"9150":-1,"9151":404,"9152":0,"9153":0,"9154":-1,"9155":2204,"9156":-1,"9157":2379,"9158":-1,"9159":0,"9160":-1,"9161":0,"9162":29,"9163":-1,"9164":0,"9165":-1,"9166":0,"9167":0,"9168":-1,"9169":0,"9170":0,"9171":0,"9172":0,"9173":2331,"9174":-1,"9175":-1,"9176":0,"9177":0,"9178":0,"9179":2596,"9180":0,"9181":0,"9182":-1,"9183":0,"9184":0,"9185":2190,"9186":0,"9187":0,"9188":0,"9189":0,"9190":0,"9191":0,"9192":0,"9193":0,"9194":0,"9195":0,"9196":2345,"9197":-1,"9198":77,"9199":2049,"9200":0,"9201":0,"9202":109,"9203":0,"9204":2010,"9205":2635,"9206":0,"9207":0,"9208":2363,"9209":2418,"9210":0,"9211":0,"9212":0,"9213":2619,"9214":2158,"9215":-1,"9216":0,"9217":-1,"9218":0,"9219":-1,"9220":2093,"9221":2364,"9222":2142,"9223":2456,"9224":0,"9225":2365,"9226":2422,"9227":0,"9228":2159,"9229":0,"9230":0,"9231":455,"9232":-1,"9233":-1,"9234":0,"9235":0,"9236":0,"9237":-1,"9238":0,"9239":0,"9240":-1,"9241":0,"9242":0,"9243":2284,"9244":0,"9245":0,"9246":0,"9247":0,"9248":0,"9249":38,"9250":0,"9251":0,"9252":0,"9253":0,"9254":0,"9255":-1,"9256":0,"9257":-1,"9258":-1,"9259":0,"9260":0,"9261":-1,"9262":0,"9263":-1,"9264":-1,"9265":0,"9266":0,"9267":292,"9268":0,"9269":2465,"9270":2443,"9271":0,"9272":-1,"9273":2405,"9274":0,"9275":693,"9276":2271,"9277":-1,"9278":2578,"9279":2292,"9280":-1,"9281":-1,"9282":2346,"9283":0,"9284":2466,"9285":0,"9286":-1,"9287":75,"9288":0,"9289":2158,"9290":-1,"9291":2369,"9292":0,"9293":-1,"9294":0,"9295":0,"9296":0,"9297":0,"9298":0,"9299":-1,"9300":-1,"9301":-1,"9302":0,"9303":2465,"9304":0,"9305":0,"9306":-1,"9307":0,"9308":-1,"9309":0,"9310":0,"9311":-1,"9312":0,"9313":-1,"9314":-1,"9315":-1,"9316":-1,"9317":0,"9318":0,"9319":2401,"9320":0,"9321":0,"9322":-1,"9323":0,"9324":-1,"9325":0,"9326":0,"9327":-1,"9328":0,"9329":1991,"9330":-1,"9331":0,"9332":-1,"9333":-1,"9334":-1,"9335":0,"9336":-1,"9337":2311,"9338":310,"9339":2522,"9340":2402,"9341":0,"9342":-1,"9343":-1,"9344":0,"9345":-1,"9346":0,"9347":0,"9348":-1,"9349":0,"9350":0,"9351":-1,"9352":-1,"9353":130,"9354":0,"9355":-1,"9356":-1,"9357":0,"9358":2132,"9359":2476,"9360":0,"9361":0,"9362":8,"9363":0,"9364":2218,"9365":-1,"9366":0,"9367":2424,"9368":-1,"9369":-1,"9370":0,"9371":0,"9372":0,"9373":2322,"9374":0,"9375":0,"9376":0,"9377":-1,"9378":0,"9379":0,"9380":41,"9381":0,"9382":2432,"9383":2041,"9384":2414,"9385":-1,"9386":2317,"9387":-1,"9388":0,"9389":2280,"9390":0,"9391":0,"9392":-1,"9393":0,"9394":-1,"9395":0,"9396":0,"9397":2435,"9398":0,"9399":-1,"9400":0,"9401":-1,"9402":2575,"9403":0,"9404":-1,"9405":2180,"9406":0,"9407":-1,"9408":0,"9409":2608,"9410":2378,"9411":0,"9412":0,"9413":0,"9414":0,"9415":0,"9416":-1,"9417":2399,"9418":0,"9419":0,"9420":0,"9421":2308,"9422":0,"9423":2436,"9424":0,"9425":-1,"9426":0,"9427":-1,"9428":-1,"9429":2643,"9430":0,"9431":0,"9432":-1,"9433":-1,"9434":-1,"9435":2436,"9436":0,"9437":-1,"9438":-1,"9439":0,"9440":2562,"9441":0,"9442":0,"9443":0,"9444":-1,"9445":0,"9446":-1,"9447":-1,"9448":0,"9449":-1,"9450":-1,"9451":2263,"9452":-1,"9453":0,"9454":0,"9455":0,"9456":-1,"9457":-1,"9458":-1,"9459":-1,"9460":0,"9461":0,"9462":0,"9463":0,"9464":-1,"9465":-1,"9466":0,"9467":-1,"9468":-1,"9469":198,"9470":0,"9471":2052,"9472":2642,"9473":2152,"9474":-1,"9475":-1,"9476":-1,"9477":0,"9478":0,"9479":-1,"9480":0,"9481":2210,"9482":0,"9483":2572,"9484":-1,"9485":1993,"9486":2430,"9487":0,"9488":-1,"9489":0,"9490":2303,"9491":0,"9492":0,"9493":-1,"9494":-1,"9495":-1,"9496":-1,"9497":0,"9498":0,"9499":-1,"9500":-1,"9501":0,"9502":0,"9503":0,"9504":-1,"9505":0,"9506":0,"9507":2199,"9508":2292,"9509":-1,"9510":136,"9511":-1,"9512":0,"9513":-1,"9514":-1,"9515":0,"9516":0,"9517":-1,"9518":0,"9519":0,"9520":13,"9521":2587,"9522":-1,"9523":0,"9524":-1,"9525":0,"9526":0,"9527":-1,"9528":0,"9529":0,"9530":2134,"9531":-1,"9532":-1,"9533":-1,"9534":-1,"9535":-1,"9536":2147,"9537":0,"9538":0,"9539":0,"9540":0,"9541":-1,"9542":-1,"9543":2126,"9544":2428,"9545":-1,"9546":0,"9547":0,"9548":-1,"9549":2606,"9550":2039,"9551":2574,"9552":2001,"9553":-1,"9554":2447,"9555":-1,"9556":-1,"9557":-1,"9558":0,"9559":0,"9560":-1,"9561":0,"9562":-1,"9563":0,"9564":2044,"9565":2293,"9566":96,"9567":-1,"9568":67,"9569":0,"9570":-1,"9571":0,"9572":2350,"9573":2147,"9574":0,"9575":2657,"9576":0,"9577":-1,"9578":0,"9579":0,"9580":0,"9581":-1,"9582":0,"9583":0,"9584":2007,"9585":-1,"9586":-1,"9587":-1,"9588":2273,"9589":-1,"9590":-1,"9591":2126,"9592":-1,"9593":2524,"9594":-1,"9595":-1,"9596":0,"9597":-1,"9598":0,"9599":0,"9600":-1,"9601":0,"9602":-1,"9603":0,"9604":0,"9605":2678,"9606":0,"9607":-1,"9608":0,"9609":0,"9610":-1,"9611":2624,"9612":2008,"9613":2510,"9614":0,"9615":0,"9616":514,"9617":0,"9618":0,"9619":0,"9620":-1,"9621":2327,"9622":0,"9623":-1,"9624":-1,"9625":-1,"9626":0,"9627":-1,"9628":0,"9629":-1,"9630":2023,"9631":-1,"9632":2035,"9633":-1,"9634":2666,"9635":6,"9636":-1,"9637":0,"9638":2154,"9639":0,"9640":-1,"9641":2546,"9642":0,"9643":2569,"9644":0,"9645":0,"9646":-1,"9647":-1,"9648":118,"9649":-1,"9650":2485,"9651":0,"9652":-1,"9653":2512,"9654":0,"9655":-1,"9656":-1,"9657":-1,"9658":-1,"9659":0,"9660":2086,"9661":-1,"9662":-1,"9663":0,"9664":0,"9665":0,"9666":-1,"9667":0,"9668":0,"9669":0,"9670":2452,"9671":0,"9672":0,"9673":0,"9674":2569,"9675":0,"9676":2370,"9677":2425,"9678":2114,"9679":-1,"9680":0,"9681":2554,"9682":2039,"9683":2603,"9684":0,"9685":2632,"9686":0,"9687":0,"9688":-1,"9689":0,"9690":701,"9691":0,"9692":0,"9693":0,"9694":0,"9695":-1,"9696":2256,"9697":0,"9698":0,"9699":0,"9700":0,"9701":2304,"9702":0,"9703":0,"9704":-1,"9705":0,"9706":-1,"9707":0,"9708":-1,"9709":-1,"9710":2645,"9711":-1,"9712":0,"9713":0,"9714":0,"9715":0,"9716":0,"9717":2242,"9718":2287,"9719":-1,"9720":-1,"9721":514,"9722":-1,"9723":0,"9724":0,"9725":-1,"9726":-1,"9727":0,"9728":64,"9729":-1,"9730":0,"9731":-1,"9732":0,"9733":0,"9734":0,"9735":0,"9736":0,"9737":0,"9738":0,"9739":-1,"9740":0,"9741":2597,"9742":0,"9743":2258,"9744":-1,"9745":0,"9746":0,"9747":-1,"9748":544,"9749":0,"9750":2058,"9751":0,"9752":0,"9753":2323,"9754":-1,"9755":706,"9756":-1,"9757":-1,"9758":2148,"9759":-1,"9760":0,"9761":-1,"9762":0,"9763":0,"9764":0,"9765":-1,"9766":-1,"9767":0,"9768":0,"9769":0,"9770":0,"9771":0,"9772":0,"9773":0,"9774":0,"9775":0,"9776":2319,"9777":0,"9778":0,"9779":-1,"9780":0,"9781":10,"9782":0,"9783":2138,"9784":2275,"9785":-1,"9786":-1,"9787":2323,"9788":-1,"9789":-1,"9790":0,"9791":0,"9792":0,"9793":2257,"9794":0,"9795":397,"9796":0,"9797":0,"9798":2370,"9799":0,"9800":0,"9801":-1,"9802":2138,"9803":2433,"9804":-1,"9805":0,"9806":-1,"9807":2211,"9808":-1,"9809":2285,"9810":0,"9811":-1,"9812":-1,"9813":2252,"9814":0,"9815":0,"9816":-1,"9817":0,"9818":-1,"9819":603,"9820":-1,"9821":-1,"9822":0,"9823":0,"9824":-1,"9825":-1,"9826":-1,"9827":-1,"9828":0,"9829":6,"9830":-1,"9831":-1,"9832":-1,"9833":2417,"9834":2503,"9835":-1,"9836":2617,"9837":-1,"9838":2413,"9839":-1,"9840":0,"9841":2024,"9842":-1,"9843":0,"9844":2570,"9845":0,"9846":0,"9847":0,"9848":-1,"9849":-1,"9850":-1,"9851":0,"9852":0,"9853":-1,"9854":2405,"9855":0,"9856":0,"9857":0,"9858":287,"9859":0,"9860":0,"9861":-1,"9862":-1,"9863":2206,"9864":2541,"9865":2472,"9866":0,"9867":-1,"9868":2402,"9869":701,"9870":0,"9871":0,"9872":0,"9873":2045,"9874":2281,"9875":2533,"9876":0,"9877":2072,"9878":0,"9879":-1,"9880":0,"9881":2195,"9882":475,"9883":-1,"9884":0,"9885":0,"9886":-1,"9887":2568,"9888":2314,"9889":0,"9890":-1,"9891":691,"9892":-1,"9893":0,"9894":-1,"9895":2285,"9896":0,"9897":-1,"9898":-1,"9899":-1,"9900":2608,"9901":0,"9902":-1,"9903":645,"9904":-1,"9905":-1,"9906":142,"9907":0,"9908":-1,"9909":-1,"9910":-1,"9911":2068,"9912":2660,"9913":-1,"9914":0,"9915":0,"9916":849,"9917":2643,"9918":0,"9919":-1,"9920":0,"9921":-1,"9922":-1,"9923":2463,"9924":2319,"9925":-1,"9926":0,"9927":2191,"9928":-1,"9929":-1,"9930":2540,"9931":0,"9932":2118,"9933":0,"9934":443,"9935":0,"9936":-1,"9937":2326,"9938":0,"9939":2054,"9940":0,"9941":0,"9942":148,"9943":0,"9944":0,"9945":2175,"9946":2127,"9947":-1,"9948":-1,"9949":2587,"9950":0,"9951":0,"9952":2104,"9953":2606,"9954":0,"9955":0,"9956":404,"9957":0,"9958":0,"9959":0,"9960":-1,"9961":0,"9962":-1,"9963":-1,"9964":2386,"9965":0,"9966":0,"9967":0,"9968":-1,"9969":-1,"9970":-1,"9971":2565,"9972":0,"9973":-1,"9974":0,"9975":2322,"9976":-1,"9977":0,"9978":-1,"9979":2367,"9980":2376,"9981":-1,"9982":0,"9983":2596,"9984":-1,"9985":0,"9986":13,"9987":2076,"9988":0,"9989":2673,"9990":-1,"9991":-1,"9992":0,"9993":2187,"9994":0,"9995":0,"9996":341,"9997":0,"9998":-1,"9999":0,"10000":0,"10001":325,"10002":-1,"10003":2433,"10004":0,"10005":-1,"10006":1996,"10007":0,"10008":0,"10009":2018,"10010":0,"10011":0,"10012":-1,"10013":-1,"10014":0,"10015":-1,"10016":0,"10017":-1,"10018":0,"10019":0,"10020":2284,"10021":-1,"10022":2093,"10023":42,"10024":0,"10025":0,"10026":0,"10027":2017,"10028":0,"10029":-1,"10030":0,"10031":0,"10032":-1,"10033":2049,"10034":0,"10035":-1,"10036":-1,"10037":2656,"10038":-1,"10039":-1,"10040":0,"10041":0,"10042":-1,"10043":-1,"10044":-1,"10045":2476,"10046":-1,"10047":0,"10048":-1,"10049":-1,"10050":0,"10051":-1,"10052":0,"10053":0,"10054":0,"10055":0,"10056":0,"10057":0,"10058":0,"10059":0,"10060":-1,"10061":-1,"10062":0,"10063":2086,"10064":2203,"10065":-1,"10066":0,"10067":0,"10068":-1,"10069":2186,"10070":-1,"10071":0,"10072":0,"10073":-1,"10074":2544,"10075":-1,"10076":0,"10077":0,"10078":-1,"10079":2205,"10080":2447,"10081":0,"10082":420,"10083":0,"10084":0,"10085":327,"10086":0,"10087":2163,"10088":0,"10089":2044,"10090":-1,"10091":0,"10092":0,"10093":2236,"10094":-1,"10095":0,"10096":0,"10097":0,"10098":0,"10099":-1,"10100":0,"10101":-1,"10102":0,"10103":2604,"10104":-1,"10105":178,"10106":2160,"10107":2285,"10108":0,"10109":-1,"10110":0,"10111":0,"10112":2072,"10113":0,"10114":0,"10115":2601,"10116":0,"10117":0,"10118":0,"10119":-1,"10120":0,"10121":0,"10122":-1,"10123":0,"10124":2112,"10125":0,"10126":0,"10127":-1,"10128":0,"10129":0,"10130":2074,"10131":0,"10132":0,"10133":0,"10134":0,"10135":0,"10136":0,"10137":386,"10138":0,"10139":2122,"10140":0,"10141":2119,"10142":0,"10143":0,"10144":2550,"10145":412,"10146":604,"10147":-1,"10148":2011,"10149":2260,"10150":2299,"10151":0,"10152":386,"10153":2181,"10154":-1,"10155":2609,"10156":0,"10157":-1,"10158":-1,"10159":0,"10160":0,"10161":2508,"10162":2075,"10163":2675,"10164":-1,"10165":2543,"10166":-1,"10167":0,"10168":0,"10169":-1,"10170":0,"10171":-1,"10172":2369,"10173":-1,"10174":-1,"10175":-1,"10176":0,"10177":2424,"10178":0,"10179":0,"10180":-1,"10181":2452,"10182":-1,"10183":345,"10184":2054,"10185":0,"10186":0,"10187":0,"10188":0,"10189":0,"10190":2557,"10191":0,"10192":-1,"10193":0,"10194":0,"10195":0,"10196":0,"10197":2508,"10198":-1,"10199":0,"10200":0,"10201":0,"10202":0,"10203":-1,"10204":23,"10205":-1,"10206":-1,"10207":299,"10208":0,"10209":2454,"10210":-1,"10211":-1,"10212":0,"10213":0,"10214":0,"10215":-1,"10216":2165,"10217":0,"10218":0,"10219":0,"10220":-1,"10221":0,"10222":2626,"10223":2560,"10224":2502,"10225":0,"10226":0,"10227":-1,"10228":0,"10229":-1,"10230":0,"10231":2304,"10232":-1,"10233":0,"10234":-1,"10235":101,"10236":-1,"10237":0,"10238":0,"10239":2365,"10240":-1,"10241":0,"10242":0,"10243":34,"10244":2611,"10245":-1,"10246":2486,"10247":0,"10248":0,"10249":2160,"10250":-1,"10251":2431,"10252":0,"10253":0,"10254":2298,"10255":2189,"10256":-1,"10257":-1,"10258":-1,"10259":-1,"10260":-1,"10261":-1,"10262":-1,"10263":0,"10264":-1,"10265":-1,"10266":0,"10267":2351,"10268":2003,"10269":0,"10270":-1,"10271":-1,"10272":-1,"10273":2532,"10274":2569,"10275":2551,"10276":-1,"10277":33,"10278":-1,"10279":1998,"10280":0,"10281":280,"10282":0,"10283":2106,"10284":-1,"10285":317,"10286":-1,"10287":-1,"10288":64,"10289":0,"10290":2555,"10291":0,"10292":0,"10293":-1,"10294":0,"10295":436,"10296":603,"10297":2208,"10298":0,"10299":2415,"10300":0,"10301":2225,"10302":0,"10303":2597,"10304":10,"10305":-1,"10306":-1,"10307":0,"10308":0,"10309":0,"10310":0,"10311":2381,"10312":2458,"10313":-1,"10314":2432,"10315":0,"10316":0,"10317":0,"10318":-1,"10319":0,"10320":-1,"10321":-1,"10322":0,"10323":-1,"10324":0,"10325":2212,"10326":-1,"10327":-1,"10328":0,"10329":-1,"10330":0,"10331":-1,"10332":0,"10333":-1,"10334":-1,"10335":612,"10336":0,"10337":0,"10338":-1,"10339":-1,"10340":0,"10341":2606,"10342":-1,"10343":2293,"10344":-1,"10345":2515,"10346":0,"10347":-1,"10348":0,"10349":637,"10350":-1,"10351":-1,"10352":0,"10353":0,"10354":-1,"10355":2261,"10356":0,"10357":-1,"10358":299,"10359":-1,"10360":0,"10361":0,"10362":0,"10363":0,"10364":0,"10365":0,"10366":2485,"10367":-1,"10368":0,"10369":2403,"10370":126,"10371":-1,"10372":0,"10373":2240,"10374":0,"10375":-1,"10376":0,"10377":2291,"10378":-1,"10379":-1,"10380":-1,"10381":-1,"10382":2560,"10383":0,"10384":-1,"10385":0,"10386":2505,"10387":-1,"10388":514,"10389":0,"10390":-1,"10391":0,"10392":-1,"10393":-1,"10394":237,"10395":-1,"10396":-1,"10397":0,"10398":0,"10399":-1,"10400":-1,"10401":907,"10402":-1,"10403":0,"10404":0,"10405":2013,"10406":0,"10407":0,"10408":0,"10409":-1,"10410":0,"10411":0,"10412":-1,"10413":0,"10414":-1,"10415":2575,"10416":-1,"10417":-1,"10418":-1,"10419":313,"10420":-1,"10421":2474,"10422":0,"10423":0,"10424":0,"10425":2070,"10426":300,"10427":0,"10428":0,"10429":-1,"10430":-1,"10431":0,"10432":2591,"10433":0,"10434":-1,"10435":2079,"10436":-1,"10437":2232,"10438":0,"10439":130,"10440":0,"10441":0,"10442":0,"10443":-1,"10444":-1,"10445":0,"10446":2608,"10447":2259,"10448":-1,"10449":-1,"10450":2241,"10451":-1,"10452":2466,"10453":-1,"10454":0,"10455":-1,"10456":-1,"10457":34,"10458":-1,"10459":-1,"10460":0,"10461":0,"10462":28,"10463":0,"10464":0,"10465":2416,"10466":0,"10467":41,"10468":2496,"10469":-1,"10470":2638,"10471":0,"10472":2129,"10473":2141,"10474":2371,"10475":-1,"10476":2593,"10477":2076,"10478":0,"10479":0,"10480":0,"10481":-1,"10482":-1,"10483":-1,"10484":-1,"10485":-1,"10486":2160,"10487":0,"10488":2010,"10489":0,"10490":2557,"10491":-1,"10492":-1,"10493":0,"10494":2190,"10495":2150,"10496":0,"10497":0,"10498":0,"10499":0,"10500":0,"10501":0,"10502":0,"10503":-1,"10504":0,"10505":-1,"10506":0,"10507":0,"10508":0,"10509":-1,"10510":34,"10511":0,"10512":341,"10513":-1,"10514":0,"10515":2167,"10516":2442,"10517":2396,"10518":-1,"10519":2588,"10520":2367,"10521":-1,"10522":2529,"10523":0,"10524":-1,"10525":2199,"10526":-1,"10527":2059,"10528":2094,"10529":-1,"10530":-1,"10531":0,"10532":0,"10533":0,"10534":0,"10535":2498,"10536":0,"10537":-1,"10538":-1,"10539":2009,"10540":-1,"10541":0,"10542":0,"10543":-1,"10544":-1,"10545":-1,"10546":-1,"10547":0,"10548":0,"10549":-1,"10550":0,"10551":-1,"10552":-1,"10553":0,"10554":0,"10555":-1,"10556":0,"10557":-1,"10558":0,"10559":0,"10560":0,"10561":0,"10562":104,"10563":0,"10564":0,"10565":0,"10566":-1,"10567":663,"10568":2644,"10569":33,"10570":0,"10571":2343,"10572":0,"10573":2645,"10574":-1,"10575":-1,"10576":-1,"10577":-1,"10578":2191,"10579":2212,"10580":0,"10581":0,"10582":0,"10583":-1,"10584":0,"10585":0,"10586":0,"10587":-1,"10588":500,"10589":0,"10590":-1,"10591":0,"10592":-1,"10593":-1,"10594":2172,"10595":2368,"10596":0,"10597":2348,"10598":2644,"10599":0,"10600":2611,"10601":0,"10602":-1,"10603":178,"10604":-1,"10605":1995,"10606":0,"10607":2185,"10608":0,"10609":-1,"10610":0,"10611":-1,"10612":-1,"10613":0,"10614":0,"10615":-1,"10616":0,"10617":0,"10618":-1,"10619":0,"10620":2100,"10621":-1,"10622":198,"10623":0,"10624":0,"10625":0,"10626":0,"10627":2478,"10628":0,"10629":0,"10630":-1,"10631":0,"10632":0,"10633":-1,"10634":0,"10635":-1,"10636":0,"10637":0,"10638":-1,"10639":0,"10640":-1,"10641":0,"10642":2242,"10643":2430,"10644":0,"10645":0,"10646":0,"10647":0,"10648":0,"10649":2119,"10650":0,"10651":0,"10652":-1,"10653":0,"10654":0,"10655":-1,"10656":2184,"10657":0,"10658":0,"10659":0,"10660":0,"10661":0,"10662":2144,"10663":0,"10664":0,"10665":2541,"10666":-1,"10667":0,"10668":2264,"10669":-1,"10670":-1,"10671":-1,"10672":667,"10673":-1,"10674":-1,"10675":0,"10676":0,"10677":0,"10678":-1,"10679":2302,"10680":2413,"10681":0,"10682":2096,"10683":2456,"10684":837,"10685":0,"10686":0,"10687":-1,"10688":341,"10689":-1,"10690":0,"10691":2289,"10692":-1,"10693":0,"10694":-1,"10695":-1,"10696":0,"10697":0,"10698":0,"10699":0,"10700":2079,"10701":-1,"10702":0,"10703":0,"10704":0,"10705":0,"10706":0,"10707":-1,"10708":0,"10709":2418,"10710":-1,"10711":148,"10712":2244,"10713":-1,"10714":-1,"10715":0,"10716":0,"10717":0,"10718":0,"10719":0,"10720":0,"10721":0,"10722":-1,"10723":-1,"10724":2419,"10725":2616,"10726":0,"10727":0,"10728":-1,"10729":-1,"10730":-1,"10731":0,"10732":126,"10733":0,"10734":2111,"10735":31,"10736":0,"10737":-1,"10738":2070,"10739":-1,"10740":0,"10741":292,"10742":2644,"10743":0,"10744":-1,"10745":-1,"10746":-1,"10747":0,"10748":0,"10749":0,"10750":0,"10751":-1,"10752":0,"10753":-1,"10754":0,"10755":-1,"10756":-1,"10757":-1,"10758":-1,"10759":2048,"10760":0,"10761":0,"10762":0,"10763":0,"10764":0,"10765":2312,"10766":0,"10767":-1,"10768":-1,"10769":142,"10770":-1,"10771":0,"10772":2532,"10773":0,"10774":-1,"10775":0,"10776":-1,"10777":19,"10778":0,"10779":0,"10780":-1,"10781":-1,"10782":0,"10783":-1,"10784":-1,"10785":0,"10786":0,"10787":0,"10788":2236,"10789":0,"10790":0,"10791":0,"10792":-1,"10793":0,"10794":2294,"10795":-1,"10796":0,"10797":-1,"10798":894,"10799":0,"10800":-1,"10801":2271,"10802":-1,"10803":-1,"10804":-1,"10805":0,"10806":0,"10807":2072,"10808":0,"10809":2577,"10810":-1,"10811":0,"10812":2135,"10813":0,"10814":-1,"10815":-1,"10816":-1,"10817":572,"10818":-1,"10819":0,"10820":-1,"10821":2332,"10822":0,"10823":-1,"10824":-1,"10825":-1,"10826":-1,"10827":0,"10828":-1,"10829":0,"10830":198,"10831":0,"10832":0,"10833":-1,"10834":0,"10835":-1,"10836":0,"10837":-1,"10838":2067,"10839":2260,"10840":0,"10841":2126,"10842":0,"10843":0,"10844":36,"10845":0,"10846":2491,"10847":-1,"10848":-1,"10849":0,"10850":2447,"10851":-1,"10852":0,"10853":-1,"10854":-1,"10855":2151,"10856":0,"10857":2475,"10858":262,"10859":0,"10860":0,"10861":-1,"10862":0,"10863":2258,"10864":0,"10865":0,"10866":12,"10867":0,"10868":0,"10869":2137,"10870":0,"10871":-1,"10872":-1,"10873":0,"10874":-1,"10875":-1,"10876":0,"10877":0,"10878":0,"10879":-1,"10880":2430,"10881":-1,"10882":-1,"10883":0,"10884":0,"10885":-1,"10886":0,"10887":0,"10888":-1,"10889":0,"10890":-1,"10891":-1,"10892":0,"10893":-1,"10894":-1,"10895":-1,"10896":2,"10897":-1,"10898":2663,"10899":0,"10900":0,"10901":-1,"10902":108,"10903":0,"10904":0,"10905":0,"10906":2428,"10907":0,"10908":-1,"10909":0,"10910":0,"10911":0,"10912":2388,"10913":0,"10914":-1,"10915":436,"10916":0,"10917":-1,"10918":-1,"10919":0,"10920":-1,"10921":0,"10922":-1,"10923":0,"10924":0,"10925":0,"10926":-1,"10927":2544,"10928":0,"10929":-1,"10930":2380,"10931":0,"10932":2517,"10933":-1,"10934":0,"10935":0,"10936":-1,"10937":-1,"10938":0,"10939":0,"10940":0,"10941":0,"10942":14,"10943":2219,"10944":-1,"10945":2526,"10946":0,"10947":0,"10948":2673,"10949":2241,"10950":0,"10951":-1,"10952":-1,"10953":-1,"10954":0,"10955":2375,"10956":0,"10957":2663,"10958":-1,"10959":246,"10960":-1,"10961":-1,"10962":0,"10963":2436,"10964":2609,"10965":0,"10966":0,"10967":-1,"10968":0,"10969":-1,"10970":0,"10971":0,"10972":793,"10973":-1,"10974":483,"10975":0,"10976":0,"10977":-1,"10978":0,"10979":0,"10980":2276,"10981":-1,"10982":2270,"10983":0,"10984":-1,"10985":2486,"10986":2632,"10987":2560,"10988":2677,"10989":0,"10990":0,"10991":0,"10992":-1,"10993":-1,"10994":0,"10995":-1,"10996":-1,"10997":0,"10998":-1,"10999":0,"11000":2338,"11001":2420,"11002":-1,"11003":178,"11004":2155,"11005":2488,"11006":0,"11007":2286,"11008":-1,"11009":0,"11010":-1,"11011":-1,"11012":-1,"11013":107,"11014":584,"11015":-1,"11016":35,"11017":0,"11018":0,"11019":0,"11020":-1,"11021":0,"11022":2181,"11023":0,"11024":2341,"11025":0,"11026":-1,"11027":209,"11028":0,"11029":2259,"11030":0,"11031":0,"11032":-1,"11033":2101,"11034":-1,"11035":2073,"11036":-1,"11037":2517,"11038":0,"11039":-1,"11040":2121,"11041":0,"11042":2602,"11043":-1,"11044":2425,"11045":-1,"11046":0,"11047":0,"11048":0,"11049":-1,"11050":2329,"11051":2068,"11052":0,"11053":0,"11054":0,"11055":0,"11056":0,"11057":-1,"11058":-1,"11059":-1,"11060":-1,"11061":0,"11062":-1,"11063":2096,"11064":-1,"11065":45,"11066":2219,"11067":787,"11068":0,"11069":362,"11070":98,"11071":0,"11072":0,"11073":-1,"11074":637,"11075":-1,"11076":0,"11077":2106,"11078":0,"11079":2069,"11080":-1,"11081":353,"11082":-1,"11083":-1,"11084":0,"11085":0,"11086":669,"11087":0,"11088":0,"11089":0,"11090":0,"11091":-1,"11092":-1,"11093":-1,"11094":0,"11095":0,"11096":-1,"11097":-1,"11098":0,"11099":-1,"11100":-1,"11101":0,"11102":2610,"11103":-1,"11104":-1,"11105":0,"11106":0,"11107":0,"11108":2619,"11109":0,"11110":0,"11111":0,"11112":418,"11113":0,"11114":-1,"11115":0,"11116":0,"11117":0,"11118":0,"11119":-1,"11120":0,"11121":0,"11122":-1,"11123":2306,"11124":2209,"11125":2638,"11126":0,"11127":-1,"11128":0,"11129":-1,"11130":-1,"11131":0,"11132":0,"11133":0,"11134":-1,"11135":-1,"11136":0,"11137":2283,"11138":-1,"11139":0,"11140":0,"11141":0,"11142":-1,"11143":2365,"11144":0,"11145":0,"11146":2598,"11147":0,"11148":645,"11149":2322,"11150":-1,"11151":2645,"11152":2186,"11153":0,"11154":35,"11155":0,"11156":0,"11157":-1,"11158":36,"11159":2130,"11160":-1,"11161":0,"11162":0,"11163":2013,"11164":0,"11165":0,"11166":0,"11167":0,"11168":-1,"11169":-1,"11170":0,"11171":2558,"11172":0,"11173":0,"11174":2548,"11175":0,"11176":0,"11177":-1,"11178":0,"11179":-1,"11180":-1,"11181":2624,"11182":-1,"11183":2158,"11184":0,"11185":0,"11186":-1,"11187":0,"11188":0,"11189":0,"11190":0,"11191":-1,"11192":-1,"11193":0,"11194":0,"11195":-1,"11196":0,"11197":0,"11198":0,"11199":0,"11200":0,"11201":2133,"11202":2583,"11203":0,"11204":0,"11205":0,"11206":61,"11207":0,"11208":-1,"11209":0,"11210":0,"11211":0,"11212":2228,"11213":662,"11214":2163,"11215":-1,"11216":0,"11217":-1,"11218":-1,"11219":0,"11220":0,"11221":0,"11222":0,"11223":-1,"11224":-1,"11225":2050,"11226":0,"11227":-1,"11228":0,"11229":-1,"11230":669,"11231":-1,"11232":0,"11233":0,"11234":0,"11235":0,"11236":0,"11237":0,"11238":0,"11239":0,"11240":0,"11241":-1,"11242":-1,"11243":0,"11244":0,"11245":-1,"11246":0,"11247":0,"11248":-1,"11249":0,"11250":0,"11251":0,"11252":362,"11253":0,"11254":0,"11255":0,"11256":0,"11257":0,"11258":-1,"11259":0,"11260":2306,"11261":2481,"11262":-1,"11263":-1,"11264":0,"11265":0,"11266":0,"11267":0,"11268":-1,"11269":0,"11270":0,"11271":2308,"11272":-1,"11273":0,"11274":287,"11275":0,"11276":2426,"11277":-1,"11278":2423,"11279":793,"11280":0,"11281":0,"11282":-1,"11283":0,"11284":2428,"11285":0,"11286":-1,"11287":0,"11288":0,"11289":2537,"11290":-1,"11291":2581,"11292":-1,"11293":-1,"11294":0,"11295":-1,"11296":2577,"11297":-1,"11298":0,"11299":0,"11300":0,"11301":2499,"11302":0,"11303":-1,"11304":0,"11305":-1,"11306":-1,"11307":0,"11308":2195,"11309":0,"11310":0,"11311":2049,"11312":-1,"11313":-1,"11314":0,"11315":0,"11316":0,"11317":0,"11318":2497,"11319":-1,"11320":0,"11321":-1,"11322":0,"11323":2336,"11324":0,"11325":833,"11326":0,"11327":64,"11328":0,"11329":-1,"11330":0,"11331":-1,"11332":-1,"11333":0,"11334":0,"11335":2400,"11336":2146,"11337":308,"11338":0,"11339":0,"11340":0,"11341":0,"11342":0,"11343":312,"11344":0,"11345":0,"11346":0,"11347":2575,"11348":2161,"11349":0,"11350":2641,"11351":-1,"11352":0,"11353":2069,"11354":0,"11355":2117,"11356":0,"11357":0,"11358":27,"11359":2230,"11360":-1,"11361":2241,"11362":0,"11363":-1,"11364":-1,"11365":0,"11366":0,"11367":28,"11368":0,"11369":0,"11370":0,"11371":2209,"11372":2326,"11373":0,"11374":0,"11375":0,"11376":0,"11377":-1,"11378":0,"11379":-1,"11380":-1,"11381":-1,"11382":663,"11383":0,"11384":0,"11385":0,"11386":2590,"11387":-1,"11388":0,"11389":0,"11390":0,"11391":2458,"11392":2475,"11393":-1,"11394":2023,"11395":0,"11396":2285,"11397":0,"11398":0,"11399":0,"11400":0,"11401":0,"11402":0,"11403":793,"11404":-1,"11405":2212,"11406":662,"11407":0,"11408":0,"11409":0,"11410":-1,"11411":2450,"11412":-1,"11413":0,"11414":153,"11415":1996,"11416":0,"11417":-1,"11418":2208,"11419":2054,"11420":2602,"11421":0,"11422":-1,"11423":0,"11424":-1,"11425":-1,"11426":0,"11427":2043,"11428":0,"11429":-1,"11430":-1,"11431":-1,"11432":2148,"11433":2094,"11434":0,"11435":2277,"11436":-1,"11437":0,"11438":-1,"11439":578,"11440":-1,"11441":2134,"11442":2636,"11443":-1,"11444":0,"11445":2049,"11446":150,"11447":-1,"11448":0,"11449":-1,"11450":-1,"11451":2364,"11452":0,"11453":2131,"11454":0,"11455":2568,"11456":0,"11457":-1,"11458":1994,"11459":0,"11460":-1,"11461":0,"11462":2531,"11463":-1,"11464":436,"11465":0,"11466":2107,"11467":-1,"11468":-1,"11469":0,"11470":0,"11471":-1,"11472":0,"11473":0,"11474":0,"11475":-1,"11476":-1,"11477":691,"11478":2595,"11479":0,"11480":2177,"11481":-1,"11482":-1,"11483":0,"11484":0,"11485":-1,"11486":2337,"11487":-1,"11488":0,"11489":-1,"11490":436,"11491":2024,"11492":-1,"11493":142,"11494":0,"11495":133,"11496":2594,"11497":0,"11498":-1,"11499":0,"11500":0,"11501":2056,"11502":-1,"11503":-1,"11504":2411,"11505":2455,"11506":-1,"11507":0,"11508":21,"11509":-1,"11510":-1,"11511":0,"11512":0,"11513":0,"11514":2582,"11515":0,"11516":0,"11517":-1,"11518":0,"11519":622,"11520":669,"11521":2395,"11522":2387,"11523":0,"11524":-1,"11525":-1,"11526":0,"11527":0,"11528":0,"11529":-1,"11530":2066,"11531":2240,"11532":524,"11533":620,"11534":0,"11535":-1,"11536":0,"11537":-1,"11538":-1,"11539":-1,"11540":-1,"11541":2547,"11542":-1,"11543":461,"11544":2065,"11545":0,"11546":2231,"11547":-1,"11548":0,"11549":0,"11550":2130,"11551":0,"11552":0,"11553":2596,"11554":-1,"11555":2059,"11556":0,"11557":0,"11558":0,"11559":0,"11560":0,"11561":0,"11562":-1,"11563":0,"11564":0,"11565":-1,"11566":44,"11567":0,"11568":-1,"11569":2619,"11570":0,"11571":0,"11572":0,"11573":-1,"11574":0,"11575":-1,"11576":0,"11577":2221,"11578":0,"11579":150,"11580":-1,"11581":0,"11582":-1,"11583":0,"11584":287,"11585":-1,"11586":0,"11587":2540,"11588":2652,"11589":2211,"11590":0,"11591":533,"11592":0,"11593":2587,"11594":-1,"11595":936,"11596":2073,"11597":-1,"11598":-1,"11599":2023,"11600":-1,"11601":0,"11602":-1,"11603":2646,"11604":-1,"11605":0,"11606":-1,"11607":0,"11608":0,"11609":-1,"11610":0,"11611":-1,"11612":2093,"11613":0,"11614":-1,"11615":23,"11616":101,"11617":-1,"11618":0,"11619":-1,"11620":0,"11621":0,"11622":-1,"11623":787,"11624":0,"11625":0,"11626":2146,"11627":2056,"11628":150,"11629":-1,"11630":-1,"11631":0,"11632":0,"11633":-1,"11634":2138,"11635":0,"11636":2326,"11637":864,"11638":0,"11639":2266,"11640":2007,"11641":2293,"11642":-1,"11643":0,"11644":2517,"11645":2025,"11646":2095,"11647":0,"11648":2268,"11649":327,"11650":0,"11651":-1,"11652":-1,"11653":-1,"11654":-1,"11655":-1,"11656":0,"11657":0,"11658":2340,"11659":0,"11660":0,"11661":0,"11662":0,"11663":2522,"11664":2016,"11665":-1,"11666":533,"11667":0,"11668":2032,"11669":0,"11670":-1,"11671":0,"11672":-1,"11673":-1,"11674":-1,"11675":0,"11676":0,"11677":2069,"11678":0,"11679":-1,"11680":-1,"11681":325,"11682":0,"11683":2604,"11684":0,"11685":-1,"11686":0,"11687":0,"11688":0,"11689":0,"11690":0,"11691":0,"11692":2356,"11693":2190,"11694":49,"11695":2132,"11696":2192,"11697":0,"11698":0,"11699":2607,"11700":0,"11701":0,"11702":-1,"11703":-1,"11704":-1,"11705":2629,"11706":264,"11707":-1,"11708":2128,"11709":0,"11710":-1,"11711":-1,"11712":2588,"11713":2643,"11714":-1,"11715":0,"11716":-1,"11717":0,"11718":-1,"11719":2488,"11720":-1,"11721":2035,"11722":-1,"11723":2497,"11724":-1,"11725":-1,"11726":0,"11727":-1,"11728":2526,"11729":0,"11730":2461,"11731":0,"11732":2363,"11733":-1,"11734":602,"11735":2121,"11736":0,"11737":0,"11738":-1,"11739":2129,"11740":2138,"11741":-1,"11742":0,"11743":0,"11744":-1,"11745":2182,"11746":0,"11747":-1,"11748":198,"11749":0,"11750":0,"11751":0,"11752":-1,"11753":12,"11754":0,"11755":0,"11756":-1,"11757":-1,"11758":-1,"11759":0,"11760":0,"11761":0,"11762":2308,"11763":2247,"11764":49,"11765":-1,"11766":0,"11767":2590,"11768":-1,"11769":-1,"11770":0,"11771":58,"11772":-1,"11773":2405,"11774":0,"11775":0,"11776":0,"11777":-1,"11778":-1,"11779":-1,"11780":0,"11781":2629,"11782":8,"11783":2124,"11784":2258,"11785":281,"11786":-1,"11787":2153,"11788":-1,"11789":0,"11790":0,"11791":-1,"11792":-1,"11793":0,"11794":0,"11795":0,"11796":0,"11797":0,"11798":0,"11799":-1,"11800":-1,"11801":-1,"11802":-1,"11803":0,"11804":2536,"11805":-1,"11806":-1,"11807":0,"11808":0,"11809":2395,"11810":-1,"11811":0,"11812":2229,"11813":0,"11814":-1,"11815":0,"11816":2365,"11817":0,"11818":-1,"11819":-1,"11820":667,"11821":2338,"11822":-1,"11823":-1,"11824":0,"11825":-1,"11826":-1,"11827":701,"11828":2533,"11829":2400,"11830":2140,"11831":0,"11832":0,"11833":0,"11834":0,"11835":-1,"11836":2091,"11837":0,"11838":-1,"11839":2093,"11840":2038,"11841":0,"11842":0,"11843":0,"11844":2407,"11845":0,"11846":2187,"11847":2667,"11848":-1,"11849":0,"11850":0,"11851":-1,"11852":-1,"11853":461,"11854":0,"11855":0,"11856":2615,"11857":0,"11858":2199,"11859":-1,"11860":0,"11861":2546,"11862":205,"11863":2163,"11864":551,"11865":-1,"11866":0,"11867":0,"11868":0,"11869":0,"11870":0,"11871":-1,"11872":-1,"11873":-1,"11874":0,"11875":0,"11876":0,"11877":0,"11878":0,"11879":137,"11880":281,"11881":0,"11882":20,"11883":0,"11884":-1,"11885":2526,"11886":2209,"11887":0,"11888":-1,"11889":0,"11890":-1,"11891":-1,"11892":2082,"11893":2292,"11894":0,"11895":0,"11896":0,"11897":2055,"11898":0,"11899":0,"11900":0,"11901":2039,"11902":0,"11903":-1,"11904":-1,"11905":2251,"11906":2547,"11907":0,"11908":2399,"11909":-1,"11910":2558,"11911":-1,"11912":0,"11913":-1,"11914":2365,"11915":0,"11916":0,"11917":2066,"11918":-1,"11919":2437,"11920":2677,"11921":0,"11922":-1,"11923":0,"11924":2204,"11925":0,"11926":-1,"11927":0,"11928":0,"11929":-1,"11930":2257,"11931":0,"11932":0,"11933":0,"11934":0,"11935":-1,"11936":-1,"11937":-1,"11938":-1,"11939":0,"11940":-1,"11941":-1,"11942":0,"11943":2539,"11944":0,"11945":-1,"11946":0,"11947":-1,"11948":0,"11949":2642,"11950":0,"11951":-1,"11952":0,"11953":2242,"11954":2107,"11955":-1,"11956":-1,"11957":2667,"11958":2036,"11959":0,"11960":1999,"11961":0,"11962":0,"11963":-1,"11964":136,"11965":2563,"11966":-1,"11967":2347,"11968":0,"11969":2244,"11970":2329,"11971":2202,"11972":2064,"11973":-1,"11974":-1,"11975":1997,"11976":0,"11977":0,"11978":0,"11979":0,"11980":-1,"11981":0,"11982":0,"11983":-1,"11984":-1,"11985":2615,"11986":2661,"11987":-1,"11988":-1,"11989":0,"11990":0,"11991":2542,"11992":0,"11993":-1,"11994":0,"11995":0,"11996":-1,"11997":0,"11998":0,"11999":0,"12000":449,"12001":0,"12002":0,"12003":0,"12004":0,"12005":-1,"12006":436,"12007":-1,"12008":0,"12009":0,"12010":0,"12011":0,"12012":-1,"12013":0,"12014":0,"12015":0,"12016":0,"12017":386,"12018":0,"12019":2321,"12020":2028,"12021":2088,"12022":0,"12023":0,"12024":0,"12025":-1,"12026":0,"12027":-1,"12028":0,"12029":639,"12030":0,"12031":2065,"12032":-1,"12033":0,"12034":0,"12035":0,"12036":0,"12037":-1,"12038":0,"12039":0,"12040":2505,"12041":0,"12042":-1,"12043":2339,"12044":0,"12045":-1,"12046":0,"12047":-1,"12048":2634,"12049":2540,"12050":667,"12051":0,"12052":0,"12053":-1,"12054":0,"12055":2110,"12056":0,"12057":-1,"12058":2664,"12059":-1,"12060":-1,"12061":102,"12062":0,"12063":26,"12064":0,"12065":2309,"12066":-1,"12067":0,"12068":0,"12069":837,"12070":475,"12071":-1,"12072":329,"12073":-1,"12074":-1,"12075":0,"12076":0,"12077":0,"12078":14,"12079":0,"12080":2174,"12081":2079,"12082":2667,"12083":2278,"12084":0,"12085":0,"12086":-1,"12087":0,"12088":-1,"12089":0,"12090":-1,"12091":0,"12092":500,"12093":0,"12094":2154,"12095":0,"12096":0,"12097":0,"12098":-1,"12099":-1,"12100":0,"12101":2626,"12102":2400,"12103":0,"12104":-1,"12105":-1,"12106":-1,"12107":2207,"12108":0,"12109":-1,"12110":2507,"12111":0,"12112":0,"12113":0,"12114":0,"12115":-1,"12116":0,"12117":0,"12118":2186,"12119":2116,"12120":0,"12121":-1,"12122":-1,"12123":-1,"12124":2284,"12125":-1,"12126":0,"12127":0,"12128":0,"12129":362,"12130":2122,"12131":2180,"12132":0,"12133":-1,"12134":2006,"12135":2044,"12136":0,"12137":0,"12138":2255,"12139":-1,"12140":2322,"12141":0,"12142":2036,"12143":2289,"12144":0,"12145":0,"12146":0,"12147":0,"12148":0,"12149":0,"12150":0,"12151":-1,"12152":0,"12153":0,"12154":0,"12155":1995,"12156":0,"12157":0,"12158":-1,"12159":0,"12160":2378,"12161":-1,"12162":0,"12163":-1,"12164":2473,"12165":2488,"12166":0,"12167":0,"12168":2665,"12169":-1,"12170":2040,"12171":-1,"12172":2448,"12173":0,"12174":2576,"12175":2072,"12176":0,"12177":0,"12178":0,"12179":-1,"12180":-1,"12181":-1,"12182":2311,"12183":-1,"12184":0,"12185":-1,"12186":0,"12187":0,"12188":0,"12189":2452,"12190":0,"12191":2592,"12192":2566,"12193":2230,"12194":-1,"12195":0,"12196":-1,"12197":220,"12198":0,"12199":-1,"12200":508,"12201":0,"12202":0,"12203":0,"12204":0,"12205":0,"12206":-1,"12207":2492,"12208":-1,"12209":0,"12210":0,"12211":0,"12212":0,"12213":0,"12214":199,"12215":-1,"12216":2568,"12217":0,"12218":-1,"12219":-1,"12220":-1,"12221":0,"12222":2055,"12223":-1,"12224":0,"12225":2238,"12226":0,"12227":-1,"12228":2430,"12229":0,"12230":0,"12231":-1,"12232":-1,"12233":0,"12234":0,"12235":598,"12236":-1,"12237":397,"12238":2664,"12239":2363,"12240":-1,"12241":0,"12242":2271,"12243":0,"12244":0,"12245":0,"12246":2677,"12247":0,"12248":2548,"12249":0,"12250":-1,"12251":0,"12252":0,"12253":-1,"12254":0,"12255":-1,"12256":-1,"12257":2640,"12258":2045,"12259":0,"12260":2490,"12261":0,"12262":0,"12263":0,"12264":0,"12265":0,"12266":0,"12267":0,"12268":0,"12269":-1,"12270":15,"12271":0,"12272":0,"12273":2354,"12274":-1,"12275":2338,"12276":-1,"12277":-1,"12278":0,"12279":-1,"12280":0,"12281":0,"12282":0,"12283":-1,"12284":0,"12285":-1,"12286":0,"12287":-1,"12288":-1,"12289":2086,"12290":0,"12291":2093,"12292":0,"12293":-1,"12294":2640,"12295":-1,"12296":0,"12297":-1,"12298":0,"12299":-1,"12300":0,"12301":0,"12302":-1,"12303":-1,"12304":-1,"12305":0,"12306":404,"12307":-1,"12308":2667,"12309":80,"12310":2246,"12311":0,"12312":0,"12313":-1,"12314":0,"12315":-1,"12316":-1,"12317":2100,"12318":2182,"12319":0,"12320":0,"12321":205,"12322":0,"12323":0,"12324":-1,"12325":2500,"12326":0,"12327":-1,"12328":0,"12329":0,"12330":0,"12331":0,"12332":-1,"12333":0,"12334":0,"12335":-1,"12336":0,"12337":0,"12338":0,"12339":264,"12340":0,"12341":0,"12342":-1,"12343":2203,"12344":-1,"12345":-1,"12346":0,"12347":-1,"12348":720,"12349":-1,"12350":-1,"12351":0,"12352":0,"12353":-1,"12354":-1,"12355":0,"12356":-1,"12357":0,"12358":2242,"12359":0,"12360":0,"12361":-1,"12362":0,"12363":-1,"12364":2307,"12365":0,"12366":0,"12367":-1,"12368":0,"12369":0,"12370":299,"12371":0,"12372":-1,"12373":-1,"12374":0,"12375":0,"12376":0,"12377":-1,"12378":0,"12379":2005,"12380":2134,"12381":2256,"12382":598,"12383":-1,"12384":0,"12385":0,"12386":-1,"12387":2082,"12388":-1,"12389":-1,"12390":0,"12391":0,"12392":-1,"12393":0,"12394":-1,"12395":2320,"12396":-1,"12397":64,"12398":2266,"12399":0,"12400":-1,"12401":2302,"12402":2405,"12403":-1,"12404":402,"12405":0,"12406":2450,"12407":2361,"12408":2101,"12409":472,"12410":0,"12411":0,"12412":0,"12413":0,"12414":0,"12415":0,"12416":2609,"12417":-1,"12418":-1,"12419":0,"12420":0,"12421":4,"12422":0,"12423":0,"12424":-1,"12425":-1,"12426":-1,"12427":2221,"12428":0,"12429":0,"12430":-1,"12431":-1,"12432":2588,"12433":-1,"12434":-1,"12435":-1,"12436":0,"12437":0,"12438":2090,"12439":0,"12440":0,"12441":0,"12442":2446,"12443":0,"12444":2166,"12445":2020,"12446":0,"12447":-1,"12448":2511,"12449":-1,"12450":-1,"12451":-1,"12452":2643,"12453":0,"12454":-1,"12455":0,"12456":-1,"12457":-1,"12458":-1,"12459":1994,"12460":-1,"12461":-1,"12462":-1,"12463":0,"12464":2528,"12465":-1,"12466":0,"12467":2283,"12468":0,"12469":2061,"12470":2661,"12471":2579,"12472":0,"12473":0,"12474":0,"12475":0,"12476":2312,"12477":2481,"12478":422,"12479":0,"12480":0,"12481":2297,"12482":-1,"12483":0,"12484":0,"12485":-1,"12486":2350,"12487":-1,"12488":0,"12489":-1,"12490":-1,"12491":0,"12492":2038,"12493":2052,"12494":102,"12495":-1,"12496":-1,"12497":2138,"12498":341,"12499":0,"12500":0,"12501":-1,"12502":0,"12503":-1,"12504":-1,"12505":0,"12506":0,"12507":0,"12508":-1,"12509":0,"12510":0,"12511":2412,"12512":2074,"12513":0,"12514":0,"12515":0,"12516":0,"12517":0,"12518":2209,"12519":-1,"12520":0,"12521":0,"12522":-1,"12523":2470,"12524":0,"12525":2367,"12526":-1,"12527":0,"12528":-1,"12529":0,"12530":0,"12531":0,"12532":0,"12533":0,"12534":0,"12535":2094,"12536":2675,"12537":0,"12538":-1,"12539":-1,"12540":0,"12541":-1,"12542":-1,"12543":2195,"12544":-1,"12545":-1,"12546":0,"12547":0,"12548":2165,"12549":345,"12550":86,"12551":-1,"12552":0,"12553":0,"12554":0,"12555":-1,"12556":-1,"12557":0,"12558":-1,"12559":2494,"12560":2493,"12561":0,"12562":0,"12563":-1,"12564":-1,"12565":-1,"12566":0,"12567":2421,"12568":-1,"12569":2336,"12570":0,"12571":-1,"12572":2515,"12573":153,"12574":198,"12575":-1,"12576":-1,"12577":0,"12578":-1,"12579":0,"12580":0,"12581":-1,"12582":-1,"12583":0,"12584":0,"12585":0,"12586":2497,"12587":-1,"12588":2666,"12589":-1,"12590":2008,"12591":0,"12592":0,"12593":0,"12594":0,"12595":0,"12596":2258,"12597":2474,"12598":-1,"12599":0,"12600":-1,"12601":-1,"12602":0,"12603":2320,"12604":2122,"12605":2060,"12606":0,"12607":0,"12608":0,"12609":-1,"12610":2564,"12611":0,"12612":205,"12613":2168,"12614":514,"12615":0,"12616":0,"12617":2665,"12618":2525,"12619":0,"12620":0,"12621":0,"12622":0,"12623":2136,"12624":0,"12625":2289,"12626":2250,"12627":0,"12628":-1,"12629":0,"12630":2111,"12631":2171,"12632":2073,"12633":0,"12634":-1,"12635":-1,"12636":-1,"12637":0,"12638":0,"12639":-1,"12640":-1,"12641":0,"12642":0,"12643":0,"12644":2313,"12645":-1,"12646":-1,"12647":-1,"12648":0,"12649":833,"12650":2308,"12651":-1,"12652":20,"12653":2238,"12654":2555,"12655":2294,"12656":2374,"12657":2491,"12658":2560,"12659":-1,"12660":39,"12661":-1,"12662":0,"12663":86,"12664":-1,"12665":2329,"12666":0,"12667":0,"12668":0,"12669":-1,"12670":2385,"12671":88,"12672":2446,"12673":0,"12674":0,"12675":2255,"12676":-1,"12677":0,"12678":156,"12679":0,"12680":-1,"12681":-1,"12682":-1,"12683":0,"12684":2641,"12685":2131,"12686":0,"12687":-1,"12688":-1,"12689":-1,"12690":-1,"12691":0,"12692":-1,"12693":-1,"12694":-1,"12695":2120,"12696":0,"12697":0,"12698":475,"12699":2477,"12700":2087,"12701":2392,"12702":44,"12703":-1,"12704":0,"12705":-1,"12706":0,"12707":0,"12708":0,"12709":0,"12710":-1,"12711":0,"12712":-1,"12713":0,"12714":-1,"12715":-1,"12716":2200,"12717":0,"12718":0,"12719":0,"12720":0,"12721":0,"12722":2199,"12723":0,"12724":0,"12725":-1,"12726":-1,"12727":-1,"12728":0,"12729":2447,"12730":0,"12731":2614,"12732":0,"12733":0,"12734":1993,"12735":-1,"12736":0,"12737":0,"12738":-1,"12739":2463,"12740":0,"12741":198,"12742":2480,"12743":0,"12744":0,"12745":-1,"12746":0,"12747":909,"12748":-1,"12749":-1,"12750":2372,"12751":-1,"12752":0,"12753":2233,"12754":2240,"12755":2407,"12756":2369,"12757":-1,"12758":2413,"12759":0,"12760":-1,"12761":2678,"12762":-1,"12763":2158,"12764":-1,"12765":-1,"12766":-1,"12767":0,"12768":0,"12769":2492,"12770":-1,"12771":2676,"12772":-1,"12773":0,"12774":-1,"12775":0,"12776":0,"12777":0,"12778":2200,"12779":2004,"12780":0,"12781":0,"12782":2375,"12783":2341,"12784":2638,"12785":0,"12786":0,"12787":-1,"12788":34,"12789":0,"12790":2035,"12791":0,"12792":0,"12793":0,"12794":-1,"12795":-1,"12796":0,"12797":108,"12798":2066,"12799":-1,"12800":0,"12801":2247,"12802":0,"12803":-1,"12804":0,"12805":0,"12806":8,"12807":2313,"12808":362,"12809":-1,"12810":0,"12811":-1,"12812":0,"12813":0,"12814":0,"12815":120,"12816":2500,"12817":0,"12818":2174,"12819":-1,"12820":0,"12821":287,"12822":-1,"12823":0,"12824":2159,"12825":2506,"12826":-1,"12827":0,"12828":0,"12829":645,"12830":0,"12831":-1,"12832":2412,"12833":-1,"12834":0,"12835":-1,"12836":2101,"12837":0,"12838":2251,"12839":0,"12840":0,"12841":-1,"12842":2622,"12843":2676,"12844":219,"12845":2506,"12846":0,"12847":0,"12848":2377,"12849":-1,"12850":2661,"12851":-1,"12852":-1,"12853":448,"12854":2477,"12855":-1,"12856":-1,"12857":0,"12858":-1,"12859":508,"12860":0,"12861":0,"12862":0,"12863":0,"12864":-1,"12865":2551,"12866":310,"12867":2370,"12868":-1,"12869":-1,"12870":-1,"12871":0,"12872":2273,"12873":475,"12874":0,"12875":-1,"12876":2465,"12877":-1,"12878":0,"12879":-1,"12880":0,"12881":77,"12882":0,"12883":-1,"12884":0,"12885":2100,"12886":0,"12887":-1,"12888":0,"12889":0,"12890":0,"12891":2429,"12892":0,"12893":0,"12894":2294,"12895":-1,"12896":0,"12897":0,"12898":0,"12899":0,"12900":2334,"12901":-1,"12902":0,"12903":-1,"12904":2257,"12905":-1,"12906":2326,"12907":2320,"12908":443,"12909":0,"12910":-1,"12911":-1,"12912":-1,"12913":-1,"12914":0,"12915":0,"12916":0,"12917":0,"12918":2418,"12919":0,"12920":-1,"12921":0,"12922":-1,"12923":0,"12924":0,"12925":-1,"12926":0,"12927":-1,"12928":0,"12929":0,"12930":0,"12931":0,"12932":2502,"12933":0,"12934":0,"12935":299,"12936":0,"12937":2561,"12938":-1,"12939":0,"12940":0,"12941":0,"12942":2263,"12943":-1,"12944":0,"12945":2178,"12946":0,"12947":-1,"12948":0,"12949":0,"12950":0,"12951":2300,"12952":-1,"12953":0,"12954":2366,"12955":2479,"12956":0,"12957":16,"12958":2331,"12959":-1,"12960":0,"12961":-1,"12962":0,"12963":-1,"12964":0,"12965":-1,"12966":2466,"12967":-1,"12968":0,"12969":0,"12970":2237,"12971":-1,"12972":-1,"12973":-1,"12974":-1,"12975":0,"12976":308,"12977":-1,"12978":-1,"12979":-1,"12980":0,"12981":0,"12982":2252,"12983":-1,"12984":0,"12985":0,"12986":2307,"12987":0,"12988":-1,"12989":0,"12990":0,"12991":0,"12992":2068,"12993":0,"12994":0,"12995":-1,"12996":86,"12997":-1,"12998":-1,"12999":198,"13000":-1,"13001":-1,"13002":2624,"13003":-1,"13004":-1,"13005":0,"13006":101,"13007":0,"13008":0,"13009":2614,"13010":-1,"13011":2503,"13012":0,"13013":2253,"13014":0,"13015":2094,"13016":-1,"13017":-1,"13018":1996,"13019":0,"13020":-1,"13021":-1,"13022":2002,"13023":0,"13024":0,"13025":0,"13026":2340,"13027":2462,"13028":0,"13029":0,"13030":0,"13031":2296,"13032":5,"13033":0,"13034":0,"13035":0,"13036":-1,"13037":0,"13038":-1,"13039":0,"13040":77,"13041":-1,"13042":104,"13043":2130,"13044":-1,"13045":2358,"13046":-1,"13047":0,"13048":0,"13049":0,"13050":2500,"13051":-1,"13052":0,"13053":0,"13054":0,"13055":2565,"13056":0,"13057":-1,"13058":0,"13059":2148,"13060":0,"13061":2331,"13062":2220,"13063":-1,"13064":0,"13065":0,"13066":404,"13067":0,"13068":0,"13069":0,"13070":0,"13071":-1,"13072":86,"13073":0,"13074":-1,"13075":2509,"13076":-1,"13077":0,"13078":0,"13079":0,"13080":0,"13081":-1,"13082":2656,"13083":2358,"13084":402,"13085":0,"13086":0,"13087":2106,"13088":0,"13089":0,"13090":-1,"13091":-1,"13092":-1,"13093":-1,"13094":-1,"13095":2020,"13096":0,"13097":0,"13098":168,"13099":0,"13100":2324,"13101":2031,"13102":2374,"13103":0,"13104":2353,"13105":0,"13106":418,"13107":2025,"13108":0,"13109":-1,"13110":0,"13111":-1,"13112":0,"13113":-1,"13114":-1,"13115":0,"13116":2235,"13117":0,"13118":0,"13119":0,"13120":-1,"13121":-1,"13122":-1,"13123":2159,"13124":-1,"13125":0,"13126":-1,"13127":-1,"13128":0,"13129":-1,"13130":0,"13131":0,"13132":-1,"13133":2433,"13134":2061,"13135":317,"13136":61,"13137":-1,"13138":-1,"13139":0,"13140":40,"13141":0,"13142":0,"13143":-1,"13144":-1,"13145":0,"13146":0,"13147":0,"13148":0,"13149":-1,"13150":0,"13151":2410,"13152":472,"13153":325,"13154":-1,"13155":0,"13156":0,"13157":0,"13158":0,"13159":298,"13160":2366,"13161":0,"13162":2527,"13163":0,"13164":0,"13165":2006,"13166":0,"13167":-1,"13168":0,"13169":0,"13170":0,"13171":-1,"13172":-1,"13173":-1,"13174":8,"13175":2364,"13176":-1,"13177":-1,"13178":0,"13179":-1,"13180":2367,"13181":-1,"13182":2485,"13183":-1,"13184":2366,"13185":0,"13186":0,"13187":0,"13188":0,"13189":0,"13190":0,"13191":0,"13192":2155,"13193":313,"13194":0,"13195":0,"13196":0,"13197":0,"13198":0,"13199":0,"13200":0,"13201":-1,"13202":-1,"13203":0,"13204":0,"13205":-1,"13206":0,"13207":-1,"13208":-1,"13209":0,"13210":0,"13211":-1,"13212":0,"13213":2377,"13214":2174,"13215":-1,"13216":0,"13217":0,"13218":-1,"13219":0,"13220":0,"13221":2637,"13222":0,"13223":2580,"13224":0,"13225":0,"13226":0,"13227":2347,"13228":0,"13229":0,"13230":2387,"13231":-1,"13232":0,"13233":0,"13234":0,"13235":1995,"13236":0,"13237":0,"13238":-1,"13239":-1,"13240":2433,"13241":0,"13242":2301,"13243":-1,"13244":0,"13245":0,"13246":0,"13247":0,"13248":0,"13249":0,"13250":0,"13251":0,"13252":0,"13253":2230,"13254":-1,"13255":2017,"13256":-1,"13257":-1,"13258":0,"13259":2238,"13260":6,"13261":0,"13262":2472,"13263":0,"13264":0,"13265":0,"13266":-1,"13267":0,"13268":0,"13269":126,"13270":0,"13271":0,"13272":0,"13273":-1,"13274":0,"13275":-1,"13276":0,"13277":2491,"13278":-1,"13279":772,"13280":80,"13281":-1,"13282":-1,"13283":2633,"13284":0,"13285":-1,"13286":0,"13287":-1,"13288":-1,"13289":-1,"13290":0,"13291":0,"13292":0,"13293":0,"13294":0,"13295":0,"13296":907,"13297":0,"13298":0,"13299":-1,"13300":-1,"13301":-1,"13302":-1,"13303":-1,"13304":-1,"13305":0,"13306":2384,"13307":0,"13308":77,"13309":0,"13310":-1,"13311":0,"13312":2411,"13313":0,"13314":-1,"13315":-1,"13316":2293,"13317":0,"13318":0,"13319":0,"13320":-1,"13321":0,"13322":2301,"13323":2072,"13324":0,"13325":0,"13326":1994,"13327":0,"13328":0,"13329":0,"13330":-1,"13331":0,"13332":-1,"13333":30,"13334":2572,"13335":-1,"13336":-1,"13337":-1,"13338":2589,"13339":-1,"13340":-1,"13341":0,"13342":-1,"13343":2543,"13344":-1,"13345":0,"13346":2544,"13347":0,"13348":0,"13349":-1,"13350":2483,"13351":0,"13352":-1,"13353":0,"13354":281,"13355":-1,"13356":0,"13357":2618,"13358":2671,"13359":-1,"13360":0,"13361":2241,"13362":-1,"13363":0,"13364":0,"13365":0,"13366":-1,"13367":-1,"13368":38,"13369":0,"13370":0,"13371":-1,"13372":0,"13373":-1,"13374":0,"13375":0,"13376":0,"13377":-1,"13378":-1,"13379":0,"13380":2165,"13381":-1,"13382":0,"13383":-1,"13384":2502,"13385":0,"13386":-1,"13387":0,"13388":0,"13389":0,"13390":-1,"13391":0,"13392":0,"13393":0,"13394":2672,"13395":2236,"13396":0,"13397":0,"13398":0,"13399":0,"13400":0,"13401":2055,"13402":0,"13403":-1,"13404":2163,"13405":-1,"13406":0,"13407":-1,"13408":0,"13409":-1,"13410":0,"13411":0,"13412":-1,"13413":-1,"13414":472,"13415":-1,"13416":0,"13417":0,"13418":-1,"13419":0,"13420":-1,"13421":0,"13422":-1,"13423":0,"13424":0,"13425":0,"13426":-1,"13427":2678,"13428":2123,"13429":-1,"13430":-1,"13431":0,"13432":0,"13433":0,"13434":0,"13435":0,"13436":2205,"13437":0,"13438":-1,"13439":0,"13440":0,"13441":0,"13442":-1,"13443":0,"13444":2221,"13445":2616,"13446":2225,"13447":0,"13448":-1,"13449":-1,"13450":0,"13451":2546,"13452":706,"13453":2067,"13454":262,"13455":0,"13456":2538,"13457":0,"13458":0,"13459":2110,"13460":0,"13461":0,"13462":2068,"13463":0,"13464":-1,"13465":-1,"13466":0,"13467":0,"13468":-1,"13469":2,"13470":0,"13471":0,"13472":0,"13473":2488,"13474":-1,"13475":2553,"13476":-1,"13477":0,"13478":-1,"13479":-1,"13480":2364,"13481":0,"13482":0,"13483":614,"13484":2320,"13485":-1,"13486":-1,"13487":-1,"13488":0,"13489":2243,"13490":-1,"13491":350,"13492":0,"13493":-1,"13494":-1,"13495":327,"13496":-1,"13497":0,"13498":0,"13499":0,"13500":0,"13501":-1,"13502":-1,"13503":0,"13504":0,"13505":0,"13506":0,"13507":341,"13508":0,"13509":2005,"13510":2564,"13511":0,"13512":0,"13513":448,"13514":0,"13515":-1,"13516":170,"13517":-1,"13518":2516,"13519":-1,"13520":2383,"13521":0,"13522":-1,"13523":-1,"13524":0,"13525":80,"13526":-1,"13527":-1,"13528":0,"13529":2510,"13530":2349,"13531":-1,"13532":0,"13533":2267,"13534":-1,"13535":-1,"13536":-1,"13537":-1,"13538":2217,"13539":-1,"13540":2625,"13541":0,"13542":-1,"13543":-1,"13544":0,"13545":2117,"13546":0,"13547":2083,"13548":0,"13549":0,"13550":-1,"13551":0,"13552":0,"13553":0,"13554":0,"13555":0,"13556":0,"13557":-1,"13558":2168,"13559":-1,"13560":-1,"13561":2512,"13562":-1,"13563":0,"13564":0,"13565":-1,"13566":2644,"13567":2168,"13568":0,"13569":0,"13570":0,"13571":2144,"13572":0,"13573":0,"13574":0,"13575":0,"13576":2227,"13577":2007,"13578":2354,"13579":-1,"13580":2447,"13581":0,"13582":0,"13583":2074,"13584":667,"13585":-1,"13586":-1,"13587":-1,"13588":0,"13589":0,"13590":-1,"13591":2290,"13592":2500,"13593":-1,"13594":-1,"13595":58,"13596":0,"13597":0,"13598":-1,"13599":0,"13600":0,"13601":2079,"13602":-1,"13603":2346,"13604":2342,"13605":0,"13606":0,"13607":0,"13608":-1,"13609":-1,"13610":0,"13611":0,"13612":0,"13613":2046,"13614":-1,"13615":0,"13616":2584,"13617":0,"13618":0,"13619":-1,"13620":0,"13621":0,"13622":-1,"13623":2037,"13624":2077,"13625":108,"13626":0,"13627":2081,"13628":-1,"13629":906,"13630":-1,"13631":2558,"13632":-1,"13633":-1,"13634":-1,"13635":-1,"13636":0,"13637":2601,"13638":-1,"13639":2285,"13640":-1,"13641":-1,"13642":0,"13643":2485,"13644":-1,"13645":2259,"13646":0,"13647":0,"13648":0,"13649":0,"13650":0,"13651":0,"13652":2565,"13653":0,"13654":-1,"13655":-1,"13656":-1,"13657":0,"13658":0,"13659":2292,"13660":0,"13661":-1,"13662":0,"13663":-1,"13664":0,"13665":2619,"13666":-1,"13667":-1,"13668":2187,"13669":2207,"13670":0,"13671":0,"13672":-1,"13673":0,"13674":-1,"13675":-1,"13676":483,"13677":2453,"13678":2649,"13679":2441,"13680":0,"13681":0,"13682":0,"13683":-1,"13684":0,"13685":-1,"13686":2520,"13687":0,"13688":0,"13689":-1,"13690":-1,"13691":2647,"13692":0,"13693":0,"13694":-1,"13695":0,"13696":-1,"13697":0,"13698":-1,"13699":0,"13700":2543,"13701":0,"13702":2055,"13703":0,"13704":0,"13705":0,"13706":-1,"13707":-1,"13708":67,"13709":0,"13710":2447,"13711":-1,"13712":219,"13713":0,"13714":2127,"13715":2318,"13716":0,"13717":2388,"13718":0,"13719":-1,"13720":0,"13721":0,"13722":2217,"13723":0,"13724":-1,"13725":0,"13726":-1,"13727":2179,"13728":-1,"13729":2564,"13730":0,"13731":0,"13732":0,"13733":-1,"13734":-1,"13735":2039,"13736":-1,"13737":281,"13738":0,"13739":0,"13740":2428,"13741":0,"13742":0,"13743":2639,"13744":-1,"13745":0,"13746":-1,"13747":0,"13748":49,"13749":0,"13750":2181,"13751":2271,"13752":2561,"13753":0,"13754":-1,"13755":2511,"13756":7,"13757":-1,"13758":-1,"13759":0,"13760":-1,"13761":0,"13762":0,"13763":0,"13764":-1,"13765":0,"13766":0,"13767":2662,"13768":0,"13769":2313,"13770":0,"13771":-1,"13772":2138,"13773":0,"13774":2202,"13775":0,"13776":0,"13777":-1,"13778":2104,"13779":0,"13780":2656,"13781":2519,"13782":-1,"13783":0,"13784":0,"13785":0,"13786":-1,"13787":-1,"13788":0,"13789":0,"13790":-1,"13791":0,"13792":-1,"13793":0,"13794":0,"13795":2636,"13796":2065,"13797":0,"13798":-1,"13799":0,"13800":-1,"13801":0,"13802":639,"13803":0,"13804":0,"13805":2320,"13806":0,"13807":0,"13808":0,"13809":-1,"13810":-1,"13811":2098,"13812":-1,"13813":-1,"13814":-1,"13815":0,"13816":-1,"13817":-1,"13818":-1,"13819":-1,"13820":2343,"13821":-1,"13822":-1,"13823":0,"13824":-1,"13825":0,"13826":0,"13827":0,"13828":0,"13829":-1,"13830":0,"13831":-1,"13832":0,"13833":156,"13834":0,"13835":0,"13836":-1,"13837":-1,"13838":0,"13839":0,"13840":0,"13841":2089,"13842":2302,"13843":333,"13844":0,"13845":-1,"13846":2602,"13847":0,"13848":0,"13849":2421,"13850":2039,"13851":0,"13852":-1,"13853":-1,"13854":0,"13855":205,"13856":333,"13857":0,"13858":-1,"13859":0,"13860":0,"13861":0,"13862":-1,"13863":0,"13864":705,"13865":2094,"13866":2502,"13867":0,"13868":2161,"13869":2513,"13870":0,"13871":-1,"13872":-1,"13873":-1,"13874":-1,"13875":2483,"13876":-1,"13877":-1,"13878":0,"13879":0,"13880":-1,"13881":-1,"13882":787,"13883":0,"13884":0,"13885":178,"13886":-1,"13887":2015,"13888":-1,"13889":0,"13890":0,"13891":-1,"13892":0,"13893":0,"13894":2605,"13895":2599,"13896":-1,"13897":0,"13898":604,"13899":0,"13900":-1,"13901":520,"13902":0,"13903":0,"13904":-1,"13905":130,"13906":-1,"13907":2003,"13908":2086,"13909":2179,"13910":2604,"13911":0,"13912":-1,"13913":0,"13914":2107,"13915":0,"13916":520,"13917":0,"13918":220,"13919":0,"13920":-1,"13921":0,"13922":2118,"13923":-1,"13924":0,"13925":0,"13926":0,"13927":0,"13928":0,"13929":-1,"13930":0,"13931":0,"13932":-1,"13933":-1,"13934":-1,"13935":350,"13936":262,"13937":-1,"13938":0,"13939":-1,"13940":-1,"13941":2093,"13942":2356,"13943":0,"13944":2355,"13945":-1,"13946":2269,"13947":2216,"13948":-1,"13949":0,"13950":-1,"13951":2340,"13952":-1,"13953":-1,"13954":0,"13955":0,"13956":-1,"13957":2330,"13958":612,"13959":0,"13960":2324,"13961":-1,"13962":0,"13963":0,"13964":-1,"13965":-1,"13966":-1,"13967":-1,"13968":0,"13969":0,"13970":0,"13971":0,"13972":-1,"13973":-1,"13974":-1,"13975":0,"13976":0,"13977":-1,"13978":-1,"13979":2179,"13980":0,"13981":2462,"13982":0,"13983":0,"13984":2246,"13985":-1,"13986":-1,"13987":0,"13988":0,"13989":2234,"13990":-1,"13991":17,"13992":2181,"13993":-1,"13994":2261,"13995":0,"13996":0,"13997":0,"13998":0,"13999":0,"14000":-1,"14001":-1,"14002":2090,"14003":0,"14004":0,"14005":0,"14006":2436,"14007":2455,"14008":0,"14009":-1,"14010":2586,"14011":3,"14012":-1,"14013":0,"14014":-1,"14015":-1,"14016":2390,"14017":-1,"14018":245,"14019":0,"14020":2598,"14021":0,"14022":-1,"14023":0,"14024":0,"14025":0,"14026":0,"14027":-1,"14028":0,"14029":0,"14030":-1,"14031":2514,"14032":0,"14033":0,"14034":0,"14035":0,"14036":0,"14037":-1,"14038":0,"14039":237,"14040":-1,"14041":-1,"14042":-1,"14043":0,"14044":-1,"14045":0,"14046":0,"14047":-1,"14048":-1,"14049":0,"14050":524,"14051":-1,"14052":0,"14053":-1,"14054":0,"14055":2319,"14056":3,"14057":-1,"14058":2412,"14059":0,"14060":-1,"14061":0,"14062":2621,"14063":-1,"14064":-1,"14065":0,"14066":0,"14067":-1,"14068":2047,"14069":0,"14070":2457,"14071":-1,"14072":0,"14073":0,"14074":-1,"14075":-1,"14076":0,"14077":0,"14078":0,"14079":2262,"14080":0,"14081":0,"14082":0,"14083":0,"14084":0,"14085":2190,"14086":-1,"14087":0,"14088":-1,"14089":0,"14090":0,"14091":-1,"14092":612,"14093":0,"14094":0,"14095":0,"14096":2540,"14097":0,"14098":2555,"14099":0,"14100":-1,"14101":0,"14102":-1,"14103":-1,"14104":0,"14105":0,"14106":2050,"14107":0,"14108":2492,"14109":-1,"14110":-1,"14111":908,"14112":2136,"14113":-1,"14114":0,"14115":0,"14116":0,"14117":-1,"14118":0,"14119":-1,"14120":-1,"14121":-1,"14122":2583,"14123":0,"14124":0,"14125":0,"14126":0,"14127":2203,"14128":-1,"14129":-1,"14130":0,"14131":0,"14132":2300,"14133":179,"14134":0,"14135":12,"14136":2552,"14137":0,"14138":2201,"14139":0,"14140":0,"14141":0,"14142":2547,"14143":-1,"14144":2098,"14145":2220,"14146":0,"14147":0,"14148":-1,"14149":-1,"14150":2505,"14151":0,"14152":-1,"14153":-1,"14154":-1,"14155":2243,"14156":-1,"14157":0,"14158":-1,"14159":299,"14160":0,"14161":11,"14162":-1,"14163":448,"14164":-1,"14165":0,"14166":-1,"14167":2341,"14168":-1,"14169":0,"14170":-1,"14171":0,"14172":-1,"14173":-1,"14174":0,"14175":0,"14176":-1,"14177":2312,"14178":0,"14179":0,"14180":17,"14181":2212,"14182":-1,"14183":612,"14184":2072,"14185":-1,"14186":0,"14187":0,"14188":0,"14189":0,"14190":0,"14191":-1,"14192":475,"14193":0,"14194":0,"14195":0,"14196":0,"14197":-1,"14198":0,"14199":0,"14200":13,"14201":598,"14202":0,"14203":2444,"14204":0,"14205":2119,"14206":0,"14207":0,"14208":-1,"14209":0,"14210":2175,"14211":-1,"14212":0,"14213":-1,"14214":0,"14215":-1,"14216":0,"14217":0,"14218":0,"14219":10,"14220":-1,"14221":-1,"14222":0,"14223":-1,"14224":2299,"14225":-1,"14226":0,"14227":-1,"14228":-1,"14229":0,"14230":0,"14231":-1,"14232":0,"14233":0,"14234":-1,"14235":-1,"14236":2655,"14237":0,"14238":-1,"14239":-1,"14240":2313,"14241":-1,"14242":2292,"14243":0,"14244":508,"14245":-1,"14246":0,"14247":2204,"14248":0,"14249":0,"14250":2126,"14251":0,"14252":-1,"14253":-1,"14254":533,"14255":0,"14256":61,"14257":-1,"14258":-1,"14259":-1,"14260":2539,"14261":2179,"14262":-1,"14263":0,"14264":0,"14265":0,"14266":0,"14267":2224,"14268":-1,"14269":2376,"14270":2563,"14271":2512,"14272":-1,"14273":2336,"14274":2500,"14275":0,"14276":-1,"14277":58,"14278":0,"14279":0,"14280":-1,"14281":0,"14282":-1,"14283":2371,"14284":0,"14285":0,"14286":2444,"14287":2421,"14288":-1,"14289":936,"14290":2368,"14291":0,"14292":0,"14293":0,"14294":0,"14295":0,"14296":2400,"14297":-1,"14298":0,"14299":2677,"14300":2501,"14301":645,"14302":701,"14303":-1,"14304":0,"14305":0,"14306":0,"14307":-1,"14308":0,"14309":-1,"14310":-1,"14311":-1,"14312":-1,"14313":-1,"14314":0,"14315":-1,"14316":2665,"14317":-1,"14318":0,"14319":-1,"14320":0,"14321":-1,"14322":2195,"14323":0,"14324":-1,"14325":2518,"14326":2334,"14327":-1,"14328":0,"14329":0,"14330":0,"14331":2211,"14332":0,"14333":2169,"14334":2503,"14335":2350,"14336":0,"14337":-1,"14338":0,"14339":0,"14340":0,"14341":-1,"14342":2444,"14343":-1,"14344":-1,"14345":2337,"14346":-1,"14347":153,"14348":2201,"14349":-1,"14350":0,"14351":2145,"14352":0,"14353":-1,"14354":2655,"14355":0,"14356":-1,"14357":-1,"14358":-1,"14359":2555,"14360":0,"14361":-1,"14362":0,"14363":2472,"14364":-1,"14365":2572,"14366":0,"14367":0,"14368":-1,"14369":0,"14370":2248,"14371":2487,"14372":0,"14373":-1,"14374":0,"14375":-1,"14376":-1,"14377":0,"14378":2034,"14379":-1,"14380":2677,"14381":299,"14382":0,"14383":0,"14384":0,"14385":0,"14386":-1,"14387":2200,"14388":-1,"14389":-1,"14390":-1,"14391":0,"14392":0,"14393":0,"14394":2335,"14395":-1,"14396":0,"14397":2377,"14398":-1,"14399":2629,"14400":-1,"14401":-1,"14402":-1,"14403":2533,"14404":0,"14405":2518,"14406":-1,"14407":0,"14408":-1,"14409":0,"14410":-1,"14411":0,"14412":-1,"14413":2366,"14414":2632,"14415":2118,"14416":-1,"14417":2461,"14418":0,"14419":0,"14420":0,"14421":2565,"14422":-1,"14423":2302,"14424":0,"14425":0,"14426":0,"14427":0,"14428":0,"14429":2194,"14430":0,"14431":2234,"14432":-1,"14433":-1,"14434":0,"14435":0,"14436":0,"14437":-1,"14438":2542,"14439":0,"14440":0,"14441":-1,"14442":2165,"14443":-1,"14444":-1,"14445":2352,"14446":0,"14447":0,"14448":-1,"14449":2436,"14450":2251,"14451":2029,"14452":-1,"14453":0,"14454":-1,"14455":2111,"14456":0,"14457":-1,"14458":0,"14459":0,"14460":0,"14461":-1,"14462":-1,"14463":-1,"14464":-1,"14465":281,"14466":0,"14467":0,"14468":2557,"14469":-1,"14470":2650,"14471":0,"14472":-1,"14473":104,"14474":0,"14475":0,"14476":2262,"14477":-1,"14478":-1,"14479":-1,"14480":-1,"14481":0,"14482":-1,"14483":-1,"14484":2087,"14485":2199,"14486":0,"14487":2366,"14488":0,"14489":0,"14490":-1,"14491":-1,"14492":2163,"14493":2631,"14494":64,"14495":0,"14496":0,"14497":-1,"14498":2652,"14499":0,"14500":0,"14501":420,"14502":0,"14503":2552,"14504":0,"14505":-1,"14506":0,"14507":-1,"14508":-1,"14509":0,"14510":-1,"14511":-1,"14512":0,"14513":0,"14514":65,"14515":-1,"14516":0,"14517":0,"14518":0,"14519":2243,"14520":909,"14521":-1,"14522":-1,"14523":29,"14524":0,"14525":-1,"14526":884,"14527":0,"14528":0,"14529":-1,"14530":-1,"14531":0,"14532":0,"14533":0,"14534":2111,"14535":2195,"14536":-1,"14537":-1,"14538":0,"14539":-1,"14540":-1,"14541":2276,"14542":0,"14543":0,"14544":0,"14545":-1,"14546":0,"14547":2007,"14548":2441,"14549":2059,"14550":30,"14551":0,"14552":-1,"14553":0,"14554":0,"14555":-1,"14556":2532,"14557":2,"14558":77,"14559":-1,"14560":2643,"14561":0,"14562":0,"14563":0,"14564":0,"14565":2425,"14566":2438,"14567":0,"14568":-1,"14569":-1,"14570":2104,"14571":-1,"14572":2004,"14573":-1,"14574":-1,"14575":2442,"14576":-1,"14577":0,"14578":0,"14579":0,"14580":-1,"14581":2656,"14582":-1,"14583":-1,"14584":0,"14585":0,"14586":0,"14587":0,"14588":0,"14589":0,"14590":-1,"14591":0,"14592":0,"14593":325,"14594":-1,"14595":-1,"14596":-1,"14597":0,"14598":-1,"14599":0,"14600":-1,"14601":833,"14602":0,"14603":-1,"14604":0,"14605":2486,"14606":-1,"14607":-1,"14608":-1,"14609":0,"14610":554,"14611":107,"14612":-1,"14613":0,"14614":0,"14615":2529,"14616":0,"14617":-1,"14618":-1,"14619":-1,"14620":2050,"14621":2582,"14622":-1,"14623":0,"14624":0,"14625":0,"14626":-1,"14627":-1,"14628":0,"14629":-1,"14630":2589,"14631":5,"14632":0,"14633":0,"14634":2118,"14635":0,"14636":142,"14637":0,"14638":0,"14639":2421,"14640":-1,"14641":0,"14642":0,"14643":-1,"14644":0,"14645":0,"14646":0,"14647":0,"14648":0,"14649":-1,"14650":2265,"14651":0,"14652":-1,"14653":0,"14654":317,"14655":2418,"14656":0,"14657":0,"14658":-1,"14659":-1,"14660":0,"14661":-1,"14662":0,"14663":2542,"14664":0,"14665":0,"14666":-1,"14667":0,"14668":-1,"14669":2550,"14670":-1,"14671":0,"14672":0,"14673":0,"14674":-1,"14675":98,"14676":842,"14677":-1,"14678":-1,"14679":-1,"14680":-1,"14681":0,"14682":-1,"14683":0,"14684":-1,"14685":2256,"14686":0,"14687":0,"14688":2128,"14689":0,"14690":0,"14691":0,"14692":0,"14693":0,"14694":-1,"14695":0,"14696":-1,"14697":-1,"14698":2088,"14699":0,"14700":0,"14701":0,"14702":-1,"14703":0,"14704":0,"14705":137,"14706":2020,"14707":0,"14708":98,"14709":0,"14710":-1,"14711":-1,"14712":-1,"14713":472,"14714":617,"14715":0,"14716":2037,"14717":0,"14718":-1,"14719":-1,"14720":460,"14721":0,"14722":0,"14723":0,"14724":0,"14725":-1,"14726":2561,"14727":0,"14728":0,"14729":-1,"14730":350,"14731":141,"14732":-1,"14733":-1,"14734":-1,"14735":61,"14736":0,"14737":-1,"14738":2026,"14739":2351,"14740":2611,"14741":0,"14742":-1,"14743":-1,"14744":-1,"14745":0,"14746":-1,"14747":-1,"14748":-1,"14749":0,"14750":-1,"14751":0,"14752":2094,"14753":2547,"14754":2553,"14755":2564,"14756":2503,"14757":0,"14758":0,"14759":0,"14760":2230,"14761":-1,"14762":-1,"14763":-1,"14764":0,"14765":-1,"14766":-1,"14767":-1,"14768":0,"14769":-1,"14770":-1,"14771":2434,"14772":2257,"14773":2448,"14774":2479,"14775":2544,"14776":-1,"14777":0,"14778":-1,"14779":0,"14780":2629,"14781":2591,"14782":0,"14783":2073,"14784":0,"14785":0,"14786":402,"14787":-1,"14788":0,"14789":2174,"14790":-1,"14791":0,"14792":-1,"14793":0,"14794":2095,"14795":0,"14796":0,"14797":0,"14798":2340,"14799":30,"14800":31,"14801":2604,"14802":0,"14803":-1,"14804":-1,"14805":2273,"14806":2141,"14807":0,"14808":-1,"14809":-1,"14810":0,"14811":-1,"14812":0,"14813":4,"14814":2634,"14815":-1,"14816":0,"14817":-1,"14818":0,"14819":-1,"14820":0,"14821":-1,"14822":0,"14823":0,"14824":-1,"14825":0,"14826":0,"14827":2016,"14828":0,"14829":0,"14830":0,"14831":-1,"14832":-1,"14833":2293,"14834":-1,"14835":0,"14836":-1,"14837":0,"14838":2441,"14839":0,"14840":0,"14841":-1,"14842":0,"14843":0,"14844":-1,"14845":720,"14846":0,"14847":0,"14848":2677,"14849":2252,"14850":-1,"14851":0,"14852":-1,"14853":0,"14854":0,"14855":-1,"14856":2466,"14857":0,"14858":2631,"14859":0,"14860":-1,"14861":0,"14862":2177,"14863":-1,"14864":-1,"14865":2576,"14866":0,"14867":2122,"14868":-1,"14869":0,"14870":0,"14871":67,"14872":-1,"14873":645,"14874":0,"14875":0,"14876":0,"14877":-1,"14878":-1,"14879":-1,"14880":2212,"14881":300,"14882":0,"14883":0,"14884":2474,"14885":2233,"14886":0,"14887":0,"14888":0,"14889":-1,"14890":-1,"14891":2366,"14892":0,"14893":2373,"14894":2124,"14895":-1,"14896":-1,"14897":-1,"14898":2288,"14899":0,"14900":936,"14901":0,"14902":-1,"14903":0,"14904":0,"14905":0,"14906":-1,"14907":-1,"14908":-1,"14909":-1,"14910":0,"14911":0,"14912":0,"14913":4,"14914":-1,"14915":0,"14916":-1,"14917":0,"14918":0,"14919":2045,"14920":-1,"14921":-1,"14922":-1,"14923":0,"14924":0,"14925":-1,"14926":-1,"14927":0,"14928":0,"14929":2115,"14930":12,"14931":0,"14932":0,"14933":-1,"14934":2212,"14935":2188,"14936":0,"14937":2665,"14938":-1,"14939":0,"14940":-1,"14941":0,"14942":159,"14943":0,"14944":2071,"14945":2402,"14946":0,"14947":0,"14948":0,"14949":0,"14950":0,"14951":0,"14952":-1,"14953":2642,"14954":0,"14955":137,"14956":-1,"14957":-1,"14958":2287,"14959":0,"14960":118,"14961":0,"14962":0,"14963":0,"14964":701,"14965":-1,"14966":0,"14967":-1,"14968":2519,"14969":0,"14970":-1,"14971":-1,"14972":0,"14973":-1,"14974":2079,"14975":0,"14976":0,"14977":-1,"14978":2207,"14979":-1,"14980":0,"14981":-1,"14982":0,"14983":-1,"14984":-1,"14985":-1,"14986":0,"14987":0,"14988":-1,"14989":0,"14990":2512,"14991":-1,"14992":637,"14993":0,"14994":23,"14995":701,"14996":2419,"14997":0,"14998":2282,"14999":0,"15000":-1,"15001":0,"15002":0,"15003":0,"15004":418,"15005":-1,"15006":0,"15007":0,"15008":0,"15009":-1,"15010":-1,"15011":-1,"15012":0,"15013":2446,"15014":2386,"15015":2091,"15016":-1,"15017":0,"15018":-1,"15019":-1,"15020":0,"15021":-1,"15022":-1,"15023":-1,"15024":0,"15025":0,"15026":0,"15027":-1,"15028":0,"15029":-1,"15030":19,"15031":-1,"15032":0,"15033":0,"15034":0,"15035":0,"15036":0,"15037":0,"15038":2247,"15039":2474,"15040":2455,"15041":0,"15042":-1,"15043":2118,"15044":-1,"15045":0,"15046":2030,"15047":2675,"15048":2136,"15049":49,"15050":237,"15051":-1,"15052":-1,"15053":2508,"15054":-1,"15055":0,"15056":0,"15057":0,"15058":0,"15059":0,"15060":303,"15061":0,"15062":0,"15063":2409,"15064":0,"15065":42,"15066":2174,"15067":2347,"15068":0,"15069":777,"15070":0,"15071":2157,"15072":-1,"15073":0,"15074":-1,"15075":2608,"15076":2048,"15077":0,"15078":0,"15079":2356,"15080":0,"15081":0,"15082":-1,"15083":-1,"15084":0,"15085":-1,"15086":-1,"15087":0,"15088":0,"15089":-1,"15090":-1,"15091":908,"15092":0,"15093":2614,"15094":0,"15095":0,"15096":2045,"15097":0,"15098":-1,"15099":2380,"15100":0,"15101":-1,"15102":2303,"15103":906,"15104":0,"15105":-1,"15106":2473,"15107":0,"15108":2609,"15109":0,"15110":0,"15111":-1,"15112":-1,"15113":0,"15114":25,"15115":-1,"15116":443,"15117":2229,"15118":0,"15119":245,"15120":0,"15121":2095,"15122":0,"15123":0,"15124":2376,"15125":2465,"15126":0,"15127":-1,"15128":0,"15129":2621,"15130":2137,"15131":0,"15132":0,"15133":0,"15134":0,"15135":0,"15136":-1,"15137":859,"15138":0,"15139":145,"15140":0,"15141":0,"15142":-1,"15143":2402,"15144":0,"15145":0,"15146":0,"15147":-1,"15148":793,"15149":2548,"15150":0,"15151":2508,"15152":2557,"15153":0,"15154":-1,"15155":-1,"15156":0,"15157":0,"15158":2572,"15159":0,"15160":-1,"15161":-1,"15162":0,"15163":0,"15164":0,"15165":418,"15166":0,"15167":0,"15168":0,"15169":0,"15170":187,"15171":0,"15172":0,"15173":301,"15174":-1,"15175":-1,"15176":0,"15177":0,"15178":300,"15179":2433,"15180":0,"15181":-1,"15182":0,"15183":2552,"15184":-1,"15185":2058,"15186":-1,"15187":0,"15188":0,"15189":0,"15190":-1,"15191":0,"15192":-1,"15193":0,"15194":0,"15195":0,"15196":0,"15197":0,"15198":2562,"15199":0,"15200":0,"15201":0,"15202":2120,"15203":2023,"15204":-1,"15205":-1,"15206":-1,"15207":0,"15208":-1,"15209":894,"15210":0,"15211":0,"15212":-1,"15213":2492,"15214":0,"15215":-1,"15216":0,"15217":2095,"15218":2537,"15219":-1,"15220":0,"15221":-1,"15222":2468,"15223":-1,"15224":-1,"15225":0,"15226":942,"15227":2259,"15228":-1,"15229":0,"15230":0,"15231":2009,"15232":0,"15233":0,"15234":0,"15235":0,"15236":0,"15237":-1,"15238":2,"15239":0,"15240":0,"15241":0,"15242":0,"15243":2372,"15244":0,"15245":-1,"15246":-1,"15247":2476,"15248":2408,"15249":-1,"15250":0,"15251":-1,"15252":2494,"15253":2296,"15254":-1,"15255":0,"15256":2355,"15257":2473,"15258":2117,"15259":2610,"15260":0,"15261":2056,"15262":-1,"15263":0,"15264":2098,"15265":0,"15266":0,"15267":0,"15268":0,"15269":170,"15270":2288,"15271":-1,"15272":2437,"15273":-1,"15274":894,"15275":2033,"15276":793,"15277":-1,"15278":262,"15279":2085,"15280":-1,"15281":0,"15282":0,"15283":313,"15284":-1,"15285":0,"15286":2182,"15287":2595,"15288":514,"15289":-1,"15290":2250,"15291":0,"15292":0,"15293":0,"15294":738,"15295":0,"15296":-1,"15297":-1,"15298":0,"15299":2225,"15300":-1,"15301":-1,"15302":0,"15303":0,"15304":-1,"15305":2081,"15306":136,"15307":2500,"15308":-1,"15309":-1,"15310":2599,"15311":0,"15312":0,"15313":461,"15314":2256,"15315":-1,"15316":-1,"15317":2380,"15318":0,"15319":0,"15320":2180,"15321":2314,"15322":0,"15323":2286,"15324":0,"15325":-1,"15326":0,"15327":2353,"15328":0,"15329":906,"15330":2109,"15331":0,"15332":280,"15333":-1,"15334":0,"15335":0,"15336":0,"15337":-1,"15338":-1,"15339":0,"15340":-1,"15341":0,"15342":0,"15343":0,"15344":-1,"15345":2663,"15346":0,"15347":2611,"15348":0,"15349":-1,"15350":735,"15351":0,"15352":2273,"15353":0,"15354":2195,"15355":0,"15356":-1,"15357":0,"15358":0,"15359":0,"15360":0,"15361":2201,"15362":0,"15363":0,"15364":0,"15365":-1,"15366":0,"15367":88,"15368":2411,"15369":0,"15370":0,"15371":-1,"15372":0,"15373":0,"15374":0,"15375":0,"15376":2131,"15377":-1,"15378":2574,"15379":0,"15380":0,"15381":-1,"15382":0,"15383":0,"15384":0,"15385":455,"15386":0,"15387":0,"15388":0,"15389":-1,"15390":0,"15391":0,"15392":0,"15393":0,"15394":2579,"15395":2148,"15396":0,"15397":0,"15398":2634,"15399":0,"15400":-1,"15401":0,"15402":0,"15403":496,"15404":0,"15405":-1,"15406":0,"15407":0,"15408":397,"15409":-1,"15410":-1,"15411":2022,"15412":2031,"15413":-1,"15414":209,"15415":0,"15416":2247,"15417":0,"15418":0,"15419":-1,"15420":-1,"15421":-1,"15422":-1,"15423":2352,"15424":0,"15425":220,"15426":-1,"15427":0,"15428":-1,"15429":-1,"15430":0,"15431":2413,"15432":0,"15433":2505,"15434":-1,"15435":2017,"15436":-1,"15437":2014,"15438":-1,"15439":0,"15440":-1,"15441":0,"15442":-1,"15443":-1,"15444":0,"15445":-1,"15446":2346,"15447":0,"15448":-1,"15449":-1,"15450":2055,"15451":0,"15452":0,"15453":-1,"15454":0,"15455":0,"15456":0,"15457":0,"15458":0,"15459":0,"15460":-1,"15461":0,"15462":0,"15463":777,"15464":0,"15465":0,"15466":0,"15467":-1,"15468":-1,"15469":0,"15470":2469,"15471":-1,"15472":-1,"15473":0,"15474":0,"15475":0,"15476":-1,"15477":2407,"15478":0,"15479":-1,"15480":645,"15481":-1,"15482":2544,"15483":0,"15484":0,"15485":402,"15486":0,"15487":0,"15488":31,"15489":2093,"15490":0,"15491":0,"15492":-1,"15493":0,"15494":-1,"15495":-1,"15496":-1,"15497":-1,"15498":0,"15499":0,"15500":-1,"15501":0,"15502":-1,"15503":120,"15504":0,"15505":0,"15506":0,"15507":-1,"15508":-1,"15509":-1,"15510":0,"15511":0,"15512":0,"15513":2305,"15514":617,"15515":0,"15516":2262,"15517":-1,"15518":0,"15519":-1,"15520":0,"15521":-1,"15522":0,"15523":0,"15524":0,"15525":2667,"15526":0,"15527":-1,"15528":42,"15529":0,"15530":-1,"15531":0,"15532":2509,"15533":-1,"15534":-1,"15535":-1,"15536":293,"15537":80,"15538":0,"15539":2668,"15540":30,"15541":-1,"15542":0,"15543":0,"15544":0,"15545":-1,"15546":0,"15547":-1,"15548":2353,"15549":0,"15550":-1,"15551":0,"15552":0,"15553":0,"15554":2154,"15555":0,"15556":2345,"15557":0,"15558":0,"15559":-1,"15560":0,"15561":2122,"15562":0,"15563":0,"15564":2065,"15565":-1,"15566":2680,"15567":0,"15568":-1,"15569":-1,"15570":0,"15571":0,"15572":0,"15573":-1,"15574":0,"15575":2026,"15576":2323,"15577":2298,"15578":598,"15579":-1,"15580":0,"15581":39,"15582":0,"15583":0,"15584":42,"15585":-1,"15586":0,"15587":2070,"15588":-1,"15589":0,"15590":0,"15591":-1,"15592":0,"15593":-1,"15594":0,"15595":0,"15596":0,"15597":-1,"15598":0,"15599":2475,"15600":907,"15601":0,"15602":2233,"15603":0,"15604":0,"15605":0,"15606":-1,"15607":0,"15608":0,"15609":2385,"15610":-1,"15611":909,"15612":0,"15613":2078,"15614":0,"15615":0,"15616":-1,"15617":0,"15618":2463,"15619":404,"15620":0,"15621":-1,"15622":-1,"15623":0,"15624":0,"15625":0,"15626":0,"15627":0,"15628":2367,"15629":-1,"15630":-1,"15631":0,"15632":2119,"15633":0,"15634":0,"15635":-1,"15636":0,"15637":0,"15638":2587,"15639":0,"15640":0,"15641":-1,"15642":-1,"15643":0,"15644":2515,"15645":-1,"15646":-1,"15647":2568,"15648":0,"15649":0,"15650":-1,"15651":2318,"15652":2264,"15653":-1,"15654":2490,"15655":-1,"15656":0,"15657":2109,"15658":-1,"15659":0,"15660":-1,"15661":2259,"15662":-1,"15663":2564,"15664":0,"15665":154,"15666":0,"15667":0,"15668":0,"15669":-1,"15670":2120,"15671":0,"15672":0,"15673":2569,"15674":-1,"15675":0,"15676":0,"15677":0,"15678":2224,"15679":-1,"15680":-1,"15681":2451,"15682":-1,"15683":0,"15684":0,"15685":0,"15686":0,"15687":2356,"15688":0,"15689":2205,"15690":0,"15691":0,"15692":2484,"15693":567,"15694":0,"15695":-1,"15696":-1,"15697":2086,"15698":-1,"15699":2550,"15700":-1,"15701":2166,"15702":-1,"15703":2237,"15704":2366,"15705":2186,"15706":2002,"15707":0,"15708":187,"15709":-1,"15710":2006,"15711":-1,"15712":-1,"15713":0,"15714":2172,"15715":0,"15716":0,"15717":2374,"15718":0,"15719":2115,"15720":0,"15721":0,"15722":-1,"15723":-1,"15724":0,"15725":2002,"15726":0,"15727":-1,"15728":0,"15729":0,"15730":2339,"15731":-1,"15732":-1,"15733":-1,"15734":0,"15735":0,"15736":0,"15737":-1,"15738":-1,"15739":-1,"15740":8,"15741":2615,"15742":0,"15743":-1,"15744":0,"15745":2594,"15746":0,"15747":0,"15748":2677,"15749":2604,"15750":0,"15751":0,"15752":0,"15753":45,"15754":0,"15755":0,"15756":-1,"15757":-1,"15758":-1,"15759":-1,"15760":-1,"15761":2347,"15762":0,"15763":2405,"15764":2223,"15765":2265,"15766":-1,"15767":0,"15768":0,"15769":-1,"15770":0,"15771":-1,"15772":2305,"15773":0,"15774":-1,"15775":-1,"15776":-1,"15777":0,"15778":-1,"15779":2228,"15780":-1,"15781":-1,"15782":0,"15783":2207,"15784":-1,"15785":-1,"15786":-1,"15787":-1,"15788":-1,"15789":2045,"15790":0,"15791":0,"15792":0,"15793":0,"15794":639,"15795":0,"15796":2598,"15797":0,"15798":-1,"15799":2438,"15800":-1,"15801":-1,"15802":0,"15803":0,"15804":-1,"15805":2082,"15806":2117,"15807":0,"15808":0,"15809":0,"15810":0,"15811":2027,"15812":245,"15813":-1,"15814":2209,"15815":0,"15816":0,"15817":2651,"15818":-1,"15819":0,"15820":2294,"15821":0,"15822":460,"15823":-1,"15824":2044,"15825":0,"15826":-1,"15827":0,"15828":-1,"15829":2368,"15830":0,"15831":-1,"15832":0,"15833":-1,"15834":0,"15835":-1,"15836":2281,"15837":65,"15838":0,"15839":-1,"15840":0,"15841":0,"15842":2562,"15843":0,"15844":2193,"15845":-1,"15846":-1,"15847":2178,"15848":395,"15849":1994,"15850":2487,"15851":0,"15852":720,"15853":0,"15854":0,"15855":0,"15856":0,"15857":-1,"15858":0,"15859":-1,"15860":0,"15861":2098,"15862":-1,"15863":-1,"15864":-1,"15865":2052,"15866":-1,"15867":-1,"15868":2059,"15869":2216,"15870":-1,"15871":2102,"15872":2353,"15873":2589,"15874":-1,"15875":0,"15876":-1,"15877":412,"15878":-1,"15879":-1,"15880":0,"15881":-1,"15882":-1,"15883":-1,"15884":0,"15885":2390,"15886":-1,"15887":0,"15888":-1,"15889":-1,"15890":2220,"15891":0,"15892":2238,"15893":-1,"15894":2138,"15895":2651,"15896":0,"15897":0,"15898":0,"15899":0,"15900":-1,"15901":0,"15902":0,"15903":0,"15904":313,"15905":65,"15906":-1,"15907":-1,"15908":-1,"15909":-1,"15910":2378,"15911":0,"15912":0,"15913":0,"15914":0,"15915":2323,"15916":-1,"15917":-1,"15918":2201,"15919":-1,"15920":-1,"15921":2268,"15922":-1,"15923":2580,"15924":0,"15925":0,"15926":-1,"15927":-1,"15928":2197,"15929":-1,"15930":2074,"15931":0,"15932":0,"15933":0,"15934":2426,"15935":-1,"15936":0,"15937":-1,"15938":0,"15939":-1,"15940":0,"15941":-1,"15942":0,"15943":0,"15944":-1,"15945":2621,"15946":0,"15947":-1,"15948":0,"15949":-1,"15950":2585,"15951":0,"15952":2591,"15953":0,"15954":0,"15955":0,"15956":-1,"15957":-1,"15958":2214,"15959":0,"15960":-1,"15961":2144,"15962":-1,"15963":2641,"15964":0,"15965":0,"15966":2524,"15967":0,"15968":-1,"15969":-1,"15970":2002,"15971":0,"15972":-1,"15973":2228,"15974":0,"15975":0,"15976":-1,"15977":2314,"15978":0,"15979":0,"15980":0,"15981":2417,"15982":-1,"15983":0,"15984":2337,"15985":0,"15986":0,"15987":-1,"15988":-1,"15989":-1,"15990":0,"15991":65,"15992":-1,"15993":2193,"15994":-1,"15995":0,"15996":0,"15997":-1,"15998":0,"15999":-1,"16000":0,"16001":-1,"16002":0,"16003":2482,"16004":0,"16005":0,"16006":-1,"16007":-1,"16008":837,"16009":669,"16010":77,"16011":0,"16012":-1,"16013":2364,"16014":0,"16015":0,"16016":0,"16017":0,"16018":639,"16019":-1,"16020":0,"16021":0,"16022":0,"16023":0,"16024":0,"16025":0,"16026":2313,"16027":-1,"16028":-1,"16029":-1,"16030":0,"16031":0,"16032":0,"16033":0,"16034":-1,"16035":-1,"16036":0,"16037":-1,"16038":0,"16039":2617,"16040":2390,"16041":-1,"16042":-1,"16043":0,"16044":2175,"16045":65,"16046":-1,"16047":0,"16048":0,"16049":198,"16050":0,"16051":-1,"16052":0,"16053":-1,"16054":-1,"16055":0,"16056":0,"16057":16,"16058":0,"16059":0,"16060":0,"16061":0,"16062":-1,"16063":2261,"16064":0,"16065":0,"16066":0,"16067":0,"16068":-1,"16069":0,"16070":0,"16071":2343,"16072":-1,"16073":2584,"16074":0,"16075":-1,"16076":2452,"16077":-1,"16078":0,"16079":0,"16080":2207,"16081":-1,"16082":-1,"16083":2016,"16084":0,"16085":0,"16086":2386,"16087":0,"16088":-1,"16089":0,"16090":-1,"16091":-1,"16092":2586,"16093":2123,"16094":2047,"16095":2099,"16096":-1,"16097":-1,"16098":2187,"16099":0,"16100":2433,"16101":-1,"16102":-1,"16103":-1,"16104":2264,"16105":2189,"16106":2089,"16107":2514,"16108":0,"16109":0,"16110":2178,"16111":261,"16112":-1,"16113":2040,"16114":-1,"16115":-1,"16116":2413,"16117":813,"16118":-1,"16119":0,"16120":0,"16121":2163,"16122":141,"16123":0,"16124":0,"16125":2273,"16126":0,"16127":-1,"16128":2387,"16129":159,"16130":0,"16131":0,"16132":17,"16133":-1,"16134":0,"16135":0,"16136":0,"16137":2332,"16138":0,"16139":-1,"16140":-1,"16141":2624,"16142":0,"16143":0,"16144":2540,"16145":0,"16146":0,"16147":2032,"16148":2580,"16149":2268,"16150":0,"16151":2318,"16152":0,"16153":-1,"16154":-1,"16155":-1,"16156":-1,"16157":864,"16158":-1,"16159":0,"16160":25,"16161":2070,"16162":102,"16163":0,"16164":0,"16165":-1,"16166":0,"16167":2558,"16168":0,"16169":-1,"16170":0,"16171":0,"16172":0,"16173":0,"16174":0,"16175":0,"16176":2319,"16177":-1,"16178":2429,"16179":0,"16180":-1,"16181":153,"16182":-1,"16183":0,"16184":2531,"16185":-1,"16186":0,"16187":0,"16188":2624,"16189":0,"16190":2006,"16191":2648,"16192":0,"16193":-1,"16194":-1,"16195":-1,"16196":0,"16197":2355,"16198":0,"16199":-1,"16200":0,"16201":-1,"16202":67,"16203":0,"16204":0,"16205":0,"16206":2285,"16207":-1,"16208":2562,"16209":-1,"16210":-1,"16211":0,"16212":0,"16213":2530,"16214":0,"16215":2176,"16216":0,"16217":0,"16218":0,"16219":2383,"16220":0,"16221":0,"16222":-1,"16223":96,"16224":2222,"16225":2569,"16226":0,"16227":-1,"16228":0,"16229":0,"16230":2668,"16231":0,"16232":-1,"16233":0,"16234":0,"16235":0,"16236":-1,"16237":2470,"16238":-1,"16239":0,"16240":0,"16241":2398,"16242":-1,"16243":0,"16244":2015,"16245":0,"16246":2196,"16247":-1,"16248":-1,"16249":0,"16250":-1,"16251":-1,"16252":0,"16253":2050,"16254":-1,"16255":-1,"16256":-1,"16257":287,"16258":0,"16259":0,"16260":0,"16261":0,"16262":2191,"16263":-1,"16264":-1,"16265":0,"16266":0,"16267":-1,"16268":0,"16269":2367,"16270":-1,"16271":2265,"16272":2205,"16273":0,"16274":2619,"16275":0,"16276":0,"16277":0,"16278":0,"16279":0,"16280":2527,"16281":-1,"16282":-1,"16283":0,"16284":-1,"16285":0,"16286":-1,"16287":-1,"16288":-1,"16289":-1,"16290":-1,"16291":0,"16292":0,"16293":0,"16294":0,"16295":0,"16296":2029,"16297":2409,"16298":0,"16299":0,"16300":2461,"16301":0,"16302":0,"16303":-1,"16304":-1,"16305":0,"16306":0,"16307":0,"16308":205,"16309":0,"16310":312,"16311":0,"16312":0,"16313":0,"16314":2607,"16315":-1,"16316":2193,"16317":0,"16318":0,"16319":0,"16320":-1,"16321":0,"16322":0,"16323":-1,"16324":2445,"16325":2262,"16326":2562,"16327":-1,"16328":2414,"16329":0,"16330":0,"16331":0,"16332":-1,"16333":-1,"16334":2026,"16335":0,"16336":0,"16337":2252,"16338":894,"16339":0,"16340":0,"16341":2011,"16342":0,"16343":0,"16344":-1,"16345":-1,"16346":-1,"16347":0,"16348":0,"16349":-1,"16350":0,"16351":-1,"16352":-1,"16353":2291,"16354":461,"16355":0,"16356":0,"16357":2292,"16358":2340,"16359":298,"16360":2482,"16361":-1,"16362":0,"16363":2386,"16364":2231,"16365":0,"16366":0,"16367":2469,"16368":-1,"16369":0,"16370":2259,"16371":-1,"16372":2083,"16373":-1,"16374":-1,"16375":0,"16376":0,"16377":-1,"16378":0,"16379":0,"16380":-1,"16381":-1,"16382":-1,"16383":2299,"16384":0,"16385":787,"16386":0,"16387":2675,"16388":-1,"16389":0,"16390":0,"16391":-1,"16392":0,"16393":2109,"16394":0,"16395":0,"16396":-1,"16397":894,"16398":0,"16399":2547,"16400":2662,"16401":0,"16402":0,"16403":-1,"16404":2011,"16405":0,"16406":-1,"16407":-1,"16408":2532,"16409":0,"16410":0,"16411":0,"16412":0,"16413":-1,"16414":0,"16415":-1,"16416":-1,"16417":148,"16418":-1,"16419":-1,"16420":-1,"16421":-1,"16422":0,"16423":0,"16424":2423,"16425":-1,"16426":-1,"16427":2392,"16428":-1,"16429":2329,"16430":-1,"16431":2239,"16432":0,"16433":2491,"16434":-1,"16435":-1,"16436":-1,"16437":2137,"16438":0,"16439":0,"16440":-1,"16441":-1,"16442":-1,"16443":0,"16444":0,"16445":-1,"16446":0,"16447":0,"16448":-1,"16449":2463,"16450":0,"16451":-1,"16452":0,"16453":0,"16454":0,"16455":0,"16456":0,"16457":-1,"16458":0,"16459":0,"16460":2468,"16461":-1,"16462":0,"16463":637,"16464":0,"16465":0,"16466":0,"16467":-1,"16468":2417,"16469":-1,"16470":23,"16471":0,"16472":0,"16473":-1,"16474":2310,"16475":-1,"16476":-1,"16477":2601,"16478":0,"16479":0,"16480":0,"16481":0,"16482":0,"16483":0,"16484":-1,"16485":0,"16486":-1,"16487":-1,"16488":0,"16489":0,"16490":34,"16491":0,"16492":-1,"16493":2653,"16494":0,"16495":-1,"16496":2146,"16497":-1,"16498":0,"16499":0,"16500":2160,"16501":0,"16502":0,"16503":-1,"16504":0,"16505":-1,"16506":2470,"16507":691,"16508":0,"16509":0,"16510":2351,"16511":-1,"16512":-1,"16513":2457,"16514":-1,"16515":0,"16516":-1,"16517":0,"16518":0,"16519":0,"16520":2005,"16521":308,"16522":2405,"16523":0,"16524":-1,"16525":-1,"16526":0,"16527":-1,"16528":0,"16529":0,"16530":0,"16531":0,"16532":2505,"16533":0,"16534":-1,"16535":0,"16536":-1,"16537":-1,"16538":2605,"16539":0,"16540":2093,"16541":-1,"16542":0,"16543":0,"16544":0,"16545":0,"16546":-1,"16547":0,"16548":0,"16549":0,"16550":0,"16551":-1,"16552":2584,"16553":2193,"16554":-1,"16555":0,"16556":178,"16557":-1,"16558":0,"16559":0,"16560":2443,"16561":-1,"16562":-1,"16563":-1,"16564":0,"16565":0,"16566":0,"16567":0,"16568":0,"16569":-1,"16570":2517,"16571":31,"16572":-1,"16573":-1,"16574":-1,"16575":-1,"16576":0,"16577":0,"16578":0,"16579":0,"16580":0,"16581":0,"16582":2228,"16583":0,"16584":667,"16585":2000,"16586":1999,"16587":0,"16588":-1,"16589":2202,"16590":-1,"16591":-1,"16592":0,"16593":0,"16594":0,"16595":0,"16596":544,"16597":-1,"16598":514,"16599":0,"16600":-1,"16601":2463,"16602":0,"16603":310,"16604":2580,"16605":0,"16606":0,"16607":0,"16608":-1,"16609":2210,"16610":0,"16611":2159,"16612":2281,"16613":0,"16614":0,"16615":-1,"16616":617,"16617":0,"16618":0,"16619":-1,"16620":0,"16621":2639,"16622":-1,"16623":908,"16624":2589,"16625":-1,"16626":-1,"16627":0,"16628":0,"16629":-1,"16630":0,"16631":0,"16632":-1,"16633":0,"16634":2548,"16635":0,"16636":0,"16637":0,"16638":2219,"16639":-1,"16640":-1,"16641":0,"16642":0,"16643":-1,"16644":-1,"16645":0,"16646":2018,"16647":2179,"16648":-1,"16649":0,"16650":-1,"16651":0,"16652":0,"16653":-1,"16654":0,"16655":0,"16656":-1,"16657":0,"16658":-1,"16659":584,"16660":0,"16661":-1,"16662":2200,"16663":0,"16664":2286,"16665":2440,"16666":0,"16667":0,"16668":0,"16669":0,"16670":-1,"16671":0,"16672":0,"16673":-1,"16674":2400,"16675":0,"16676":2622,"16677":0,"16678":-1,"16679":-1,"16680":-1,"16681":2595,"16682":0,"16683":2444,"16684":0,"16685":-1,"16686":0,"16687":2483,"16688":2332,"16689":2246,"16690":-1,"16691":0,"16692":-1,"16693":0,"16694":0,"16695":-1,"16696":-1,"16697":2558,"16698":-1,"16699":0,"16700":-1,"16701":0,"16702":0,"16703":-1,"16704":0,"16705":0,"16706":0,"16707":2512,"16708":0,"16709":-1,"16710":2561,"16711":0,"16712":-1,"16713":0,"16714":0,"16715":0,"16716":2608,"16717":0,"16718":2634,"16719":0,"16720":-1,"16721":-1,"16722":0,"16723":0,"16724":0,"16725":0,"16726":0,"16727":0,"16728":0,"16729":0,"16730":0,"16731":-1,"16732":0,"16733":-1,"16734":-1,"16735":-1,"16736":-1,"16737":0,"16738":-1,"16739":353,"16740":2289,"16741":0,"16742":2403,"16743":1997,"16744":0,"16745":-1,"16746":0,"16747":0,"16748":0,"16749":220,"16750":2225,"16751":2674,"16752":-1,"16753":0,"16754":0,"16755":-1,"16756":0,"16757":0,"16758":-1,"16759":0,"16760":0,"16761":2181,"16762":-1,"16763":-1,"16764":0,"16765":-1,"16766":0,"16767":0,"16768":2163,"16769":2004,"16770":2588,"16771":2405,"16772":2055,"16773":0,"16774":0,"16775":-1,"16776":-1,"16777":0,"16778":-1,"16779":0,"16780":39,"16781":0,"16782":0,"16783":0,"16784":0,"16785":96,"16786":0,"16787":0,"16788":2357,"16789":544,"16790":0,"16791":0,"16792":0,"16793":0,"16794":-1,"16795":0,"16796":0,"16797":-1,"16798":-1,"16799":101,"16800":0,"16801":-1,"16802":0,"16803":0,"16804":-1,"16805":0,"16806":0,"16807":-1,"16808":0,"16809":604,"16810":0,"16811":2179,"16812":-1,"16813":0,"16814":-1,"16815":-1,"16816":-1,"16817":0,"16818":-1,"16819":0,"16820":-1,"16821":0,"16822":-1,"16823":0,"16824":0,"16825":-1,"16826":0,"16827":0,"16828":2610,"16829":0,"16830":-1,"16831":-1,"16832":0,"16833":0,"16834":0,"16835":-1,"16836":2224,"16837":2648,"16838":-1,"16839":-1,"16840":813,"16841":2443,"16842":0,"16843":0,"16844":0,"16845":-1,"16846":-1,"16847":-1,"16848":0,"16849":-1,"16850":0,"16851":-1,"16852":0,"16853":-1,"16854":0,"16855":0,"16856":2218,"16857":-1,"16858":-1,"16859":-1,"16860":-1,"16861":0,"16862":2476,"16863":0,"16864":0,"16865":-1,"16866":0,"16867":0,"16868":-1,"16869":-1,"16870":0,"16871":-1,"16872":-1,"16873":0,"16874":0,"16875":2104,"16876":2503,"16877":0,"16878":0,"16879":2561,"16880":0,"16881":-1,"16882":0,"16883":150,"16884":23,"16885":-1,"16886":0,"16887":0,"16888":0,"16889":0,"16890":0,"16891":0,"16892":2500,"16893":-1,"16894":0,"16895":-1,"16896":0,"16897":0,"16898":0,"16899":2500,"16900":-1,"16901":-1,"16902":-1,"16903":0,"16904":-1,"16905":-1,"16906":0,"16907":-1,"16908":-1,"16909":402,"16910":2084,"16911":0,"16912":0,"16913":2053,"16914":0,"16915":0,"16916":-1,"16917":0,"16918":-1,"16919":2156,"16920":-1,"16921":0,"16922":0,"16923":0,"16924":2269,"16925":0,"16926":0,"16927":0,"16928":0,"16929":0,"16930":0,"16931":0,"16932":-1,"16933":-1,"16934":0,"16935":0,"16936":0,"16937":0,"16938":449,"16939":2084,"16940":2139,"16941":-1,"16942":-1,"16943":0,"16944":-1,"16945":0,"16946":-1,"16947":0,"16948":0,"16949":0,"16950":0,"16951":0,"16952":-1,"16953":0,"16954":0,"16955":2460,"16956":0,"16957":0,"16958":0,"16959":622,"16960":0,"16961":-1,"16962":2545,"16963":0,"16964":2594,"16965":-1,"16966":-1,"16967":0,"16968":-1,"16969":-1,"16970":0,"16971":-1,"16972":102,"16973":0,"16974":777,"16975":-1,"16976":-1,"16977":-1,"16978":0,"16979":0,"16980":-1,"16981":0,"16982":2287,"16983":0,"16984":0,"16985":2459,"16986":2149,"16987":2209,"16988":2195,"16989":-1,"16990":2194,"16991":-1,"16992":-1,"16993":0,"16994":0,"16995":0,"16996":0,"16997":2408,"16998":-1,"16999":0,"17000":0,"17001":-1,"17002":-1,"17003":-1,"17004":2078,"17005":-1,"17006":0,"17007":0,"17008":0,"17009":0,"17010":0,"17011":0,"17012":0,"17013":0,"17014":0,"17015":0,"17016":-1,"17017":0,"17018":0,"17019":0,"17020":-1,"17021":2183,"17022":-1,"17023":-1,"17024":0,"17025":0,"17026":0,"17027":-1,"17028":-1,"17029":0,"17030":0,"17031":0,"17032":17,"17033":0,"17034":17,"17035":-1,"17036":-1,"17037":-1,"17038":0,"17039":0,"17040":-1,"17041":0,"17042":-1,"17043":0,"17044":0,"17045":0,"17046":2602,"17047":0,"17048":662,"17049":0,"17050":2617,"17051":0,"17052":2399,"17053":0,"17054":0,"17055":0,"17056":-1,"17057":0,"17058":2612,"17059":237,"17060":0,"17061":0,"17062":-1,"17063":141,"17064":0,"17065":793,"17066":0,"17067":0,"17068":0,"17069":-1,"17070":0,"17071":-1,"17072":0,"17073":-1,"17074":2342,"17075":0,"17076":0,"17077":2530,"17078":17,"17079":0,"17080":-1,"17081":0,"17082":2560,"17083":0,"17084":0,"17085":2274,"17086":2528,"17087":-1,"17088":2590,"17089":23,"17090":0,"17091":-1,"17092":0,"17093":-1,"17094":2175,"17095":29,"17096":2638,"17097":2200,"17098":0,"17099":-1,"17100":2045,"17101":0,"17102":-1,"17103":-1,"17104":0,"17105":0,"17106":-1,"17107":-1,"17108":0,"17109":0,"17110":-1,"17111":0,"17112":0,"17113":-1,"17114":0,"17115":0,"17116":2085,"17117":0,"17118":-1,"17119":102,"17120":-1,"17121":0,"17122":2295,"17123":0,"17124":0,"17125":-1,"17126":-1,"17127":0,"17128":0,"17129":2165,"17130":0,"17131":0,"17132":-1,"17133":-1,"17134":0,"17135":0,"17136":0,"17137":0,"17138":-1,"17139":0,"17140":2288,"17141":0,"17142":300,"17143":2233,"17144":-1,"17145":301,"17146":0,"17147":-1,"17148":0,"17149":0,"17150":0,"17151":0,"17152":0,"17153":0,"17154":-1,"17155":0,"17156":2316,"17157":0,"17158":-1,"17159":-1,"17160":0,"17161":0,"17162":2457,"17163":-1,"17164":0,"17165":2175,"17166":0,"17167":0,"17168":0,"17169":2429,"17170":0,"17171":2273,"17172":0,"17173":2369,"17174":0,"17175":-1,"17176":-1,"17177":2013,"17178":0,"17179":2582,"17180":0,"17181":0,"17182":0,"17183":0,"17184":2086,"17185":2267,"17186":-1,"17187":2330,"17188":0,"17189":0,"17190":2241,"17191":-1,"17192":0,"17193":701,"17194":2023,"17195":0,"17196":0,"17197":0,"17198":2361,"17199":-1,"17200":0,"17201":2580,"17202":-1,"17203":0,"17204":-1,"17205":0,"17206":-1,"17207":0,"17208":2329,"17209":0,"17210":0,"17211":2500,"17212":0,"17213":0,"17214":2047,"17215":-1,"17216":2660,"17217":0,"17218":0,"17219":0,"17220":0,"17221":0,"17222":0,"17223":0,"17224":-1,"17225":0,"17226":-1,"17227":0,"17228":0,"17229":-1,"17230":0,"17231":0,"17232":0,"17233":0,"17234":0,"17235":0,"17236":0,"17237":0,"17238":0,"17239":0,"17240":-1,"17241":2343,"17242":-1,"17243":-1,"17244":0,"17245":2652,"17246":-1,"17247":0,"17248":-1,"17249":2401,"17250":0,"17251":0,"17252":2452,"17253":0,"17254":2299,"17255":0,"17256":2585,"17257":0,"17258":0,"17259":-1,"17260":-1,"17261":-1,"17262":0,"17263":2654,"17264":2143,"17265":0,"17266":2408,"17267":-1,"17268":-1,"17269":2408,"17270":2370,"17271":0,"17272":2041,"17273":0,"17274":386,"17275":2214,"17276":-1,"17277":-1,"17278":187,"17279":2047,"17280":0,"17281":0,"17282":-1,"17283":0,"17284":2080,"17285":-1,"17286":0,"17287":2091,"17288":584,"17289":-1,"17290":0,"17291":-1,"17292":-1,"17293":0,"17294":2331,"17295":350,"17296":0,"17297":-1,"17298":-1,"17299":-1,"17300":-1,"17301":0,"17302":-1,"17303":2346,"17304":0,"17305":-1,"17306":2046,"17307":0,"17308":0,"17309":-1,"17310":2428,"17311":0,"17312":-1,"17313":-1,"17314":2614,"17315":-1,"17316":0,"17317":-1,"17318":2162,"17319":0,"17320":0,"17321":237,"17322":-1,"17323":2044,"17324":0,"17325":2422,"17326":0,"17327":0,"17328":-1,"17329":-1,"17330":0,"17331":-1,"17332":514,"17333":0,"17334":0,"17335":0,"17336":0,"17337":2655,"17338":-1,"17339":-1,"17340":-1,"17341":2168,"17342":2418,"17343":-1,"17344":0,"17345":-1,"17346":0,"17347":-1,"17348":0,"17349":0,"17350":-1,"17351":0,"17352":-1,"17353":2574,"17354":0,"17355":2074,"17356":-1,"17357":0,"17358":0,"17359":-1,"17360":0,"17361":-1,"17362":0,"17363":-1,"17364":2224,"17365":2352,"17366":0,"17367":0,"17368":-1,"17369":0,"17370":18,"17371":0,"17372":-1,"17373":2559,"17374":2125,"17375":-1,"17376":-1,"17377":-1,"17378":23,"17379":2342,"17380":-1,"17381":0,"17382":-1,"17383":0,"17384":0,"17385":-1,"17386":2156,"17387":0,"17388":-1,"17389":0,"17390":2214,"17391":-1,"17392":0,"17393":0,"17394":133,"17395":0,"17396":-1,"17397":-1,"17398":404,"17399":-1,"17400":0,"17401":0,"17402":2586,"17403":2109,"17404":0,"17405":0,"17406":524,"17407":2027,"17408":0,"17409":-1,"17410":0,"17411":2407,"17412":0,"17413":2366,"17414":359,"17415":-1,"17416":0,"17417":-1,"17418":67,"17419":-1,"17420":0,"17421":0,"17422":-1,"17423":-1,"17424":-1,"17425":0,"17426":44,"17427":0,"17428":0,"17429":604,"17430":-1,"17431":-1,"17432":-1,"17433":2006,"17434":2566,"17435":-1,"17436":0,"17437":-1,"17438":0,"17439":2557,"17440":0,"17441":0,"17442":-1,"17443":0,"17444":-1,"17445":0,"17446":2073,"17447":0,"17448":0,"17449":0,"17450":-1,"17451":0,"17452":-1,"17453":-1,"17454":-1,"17455":2021,"17456":-1,"17457":0,"17458":-1,"17459":-1,"17460":0,"17461":0,"17462":67,"17463":0,"17464":-1,"17465":-1,"17466":0,"17467":0,"17468":293,"17469":-1,"17470":-1,"17471":2125,"17472":0,"17473":-1,"17474":-1,"17475":0,"17476":-1,"17477":-1,"17478":-1,"17479":-1,"17480":-1,"17481":-1,"17482":0,"17483":0,"17484":772,"17485":0,"17486":148,"17487":2446,"17488":0,"17489":-1,"17490":0,"17491":2250,"17492":-1,"17493":0,"17494":0,"17495":483,"17496":0,"17497":-1,"17498":-1,"17499":0,"17500":-1,"17501":2082,"17502":-1,"17503":0,"17504":0,"17505":559,"17506":-1,"17507":-1,"17508":0,"17509":27,"17510":0,"17511":-1,"17512":-1,"17513":2115,"17514":0,"17515":0,"17516":2229,"17517":-1,"17518":0,"17519":0,"17520":0,"17521":-1,"17522":-1,"17523":0,"17524":0,"17525":0,"17526":0,"17527":2670,"17528":0,"17529":2340,"17530":0,"17531":2033,"17532":422,"17533":0,"17534":2205,"17535":0,"17536":237,"17537":0,"17538":0,"17539":0,"17540":-1,"17541":0,"17542":21,"17543":-1,"17544":0,"17545":-1,"17546":2678,"17547":2140,"17548":-1,"17549":2333,"17550":0,"17551":2180,"17552":0,"17553":701,"17554":2124,"17555":2104,"17556":0,"17557":0,"17558":0,"17559":0,"17560":0,"17561":0,"17562":0,"17563":2038,"17564":2257,"17565":-1,"17566":217,"17567":14,"17568":0,"17569":-1,"17570":312,"17571":0,"17572":0,"17573":2039,"17574":567,"17575":0,"17576":0,"17577":0,"17578":0,"17579":3,"17580":-1,"17581":-1,"17582":-1,"17583":0,"17584":2339,"17585":-1,"17586":-1,"17587":0,"17588":0,"17589":0,"17590":0,"17591":2036,"17592":0,"17593":0,"17594":0,"17595":0,"17596":-1,"17597":0,"17598":2443,"17599":0,"17600":-1,"17601":0,"17602":2561,"17603":2604,"17604":0,"17605":-1,"17606":0,"17607":0,"17608":-1,"17609":-1,"17610":-1,"17611":2410,"17612":0,"17613":0,"17614":2440,"17615":-1,"17616":2545,"17617":0,"17618":-1,"17619":2663,"17620":-1,"17621":2282,"17622":0,"17623":2078,"17624":-1,"17625":0,"17626":738,"17627":2640,"17628":0,"17629":75,"17630":0,"17631":-1,"17632":-1,"17633":-1,"17634":0,"17635":-1,"17636":-1,"17637":0,"17638":-1,"17639":-1,"17640":-1,"17641":0,"17642":0,"17643":2075,"17644":-1,"17645":118,"17646":0,"17647":0,"17648":2649,"17649":2471,"17650":0,"17651":2398,"17652":0,"17653":0,"17654":2331,"17655":-1,"17656":108,"17657":2513,"17658":0,"17659":2518,"17660":-1,"17661":-1,"17662":0,"17663":0,"17664":2454,"17665":0,"17666":0,"17667":2019,"17668":0,"17669":2,"17670":-1,"17671":0,"17672":-1,"17673":-1,"17674":-1,"17675":-1,"17676":0,"17677":2067,"17678":0,"17679":31,"17680":-1,"17681":-1,"17682":0,"17683":0,"17684":0,"17685":0,"17686":2511,"17687":2404,"17688":2579,"17689":0,"17690":-1,"17691":0,"17692":170,"17693":-1,"17694":0,"17695":0,"17696":2155,"17697":0,"17698":0,"17699":2280,"17700":2375,"17701":0,"17702":0,"17703":2442,"17704":0,"17705":-1,"17706":-1,"17707":0,"17708":0,"17709":-1,"17710":-1,"17711":0,"17712":-1,"17713":-1,"17714":0,"17715":0,"17716":2222,"17717":-1,"17718":0,"17719":-1,"17720":-1,"17721":-1,"17722":-1,"17723":884,"17724":2292,"17725":-1,"17726":2066,"17727":2181,"17728":-1,"17729":0,"17730":0,"17731":-1,"17732":-1,"17733":-1,"17734":0,"17735":-1,"17736":-1,"17737":0,"17738":0,"17739":2151,"17740":0,"17741":-1,"17742":2189,"17743":2010,"17744":0,"17745":-1,"17746":0,"17747":-1,"17748":2328,"17749":-1,"17750":-1,"17751":-1,"17752":209,"17753":-1,"17754":2164,"17755":-1,"17756":-1,"17757":-1,"17758":-1,"17759":-1,"17760":2549,"17761":-1,"17762":0,"17763":0,"17764":-1,"17765":0,"17766":2658,"17767":0,"17768":-1,"17769":0,"17770":0,"17771":0,"17772":-1,"17773":0,"17774":0,"17775":0,"17776":2338,"17777":-1,"17778":-1,"17779":0,"17780":-1,"17781":0,"17782":-1,"17783":0,"17784":0,"17785":2431,"17786":-1,"17787":0,"17788":-1,"17789":-1,"17790":0,"17791":-1,"17792":0,"17793":-1,"17794":-1,"17795":168,"17796":0,"17797":0,"17798":-1,"17799":-1,"17800":2332,"17801":46,"17802":0,"17803":0,"17804":0,"17805":-1,"17806":0,"17807":0,"17808":2047,"17809":0,"17810":2653,"17811":301,"17812":-1,"17813":0,"17814":2508,"17815":-1,"17816":-1,"17817":0,"17818":-1,"17819":0,"17820":0,"17821":0,"17822":0,"17823":-1,"17824":-1,"17825":209,"17826":520,"17827":-1,"17828":153,"17829":0,"17830":2031,"17831":2144,"17832":2190,"17833":-1,"17834":-1,"17835":0,"17836":0,"17837":-1,"17838":-1,"17839":0,"17840":-1,"17841":-1,"17842":-1,"17843":-1,"17844":2183,"17845":0,"17846":-1,"17847":-1,"17848":0,"17849":-1,"17850":-1,"17851":0,"17852":0,"17853":0,"17854":0,"17855":0,"17856":2632,"17857":0,"17858":2175,"17859":0,"17860":-1,"17861":3,"17862":0,"17863":0,"17864":2237,"17865":2064,"17866":2239,"17867":2502,"17868":2495,"17869":-1,"17870":0,"17871":0,"17872":524,"17873":2550,"17874":0,"17875":2261,"17876":2317,"17877":2235,"17878":0,"17879":2131,"17880":-1,"17881":0,"17882":0,"17883":520,"17884":1999,"17885":2091,"17886":2532,"17887":-1,"17888":-1,"17889":0,"17890":0,"17891":2533,"17892":261,"17893":-1,"17894":-1,"17895":0,"17896":-1,"17897":2599,"17898":-1,"17899":0,"17900":-1,"17901":-1,"17902":0,"17903":-1,"17904":-1,"17905":0,"17906":0,"17907":2438,"17908":2213,"17909":0,"17910":0,"17911":-1,"17912":-1,"17913":0,"17914":-1,"17915":0,"17916":-1,"17917":0,"17918":2637,"17919":-1,"17920":0,"17921":0,"17922":2357,"17923":0,"17924":2483,"17925":-1,"17926":2320,"17927":0,"17928":-1,"17929":-1,"17930":-1,"17931":0,"17932":2342,"17933":0,"17934":2640,"17935":0,"17936":0,"17937":2167,"17938":2484,"17939":0,"17940":2491,"17941":0,"17942":-1,"17943":-1,"17944":2082,"17945":-1,"17946":2121,"17947":0,"17948":0,"17949":0,"17950":0,"17951":0,"17952":-1,"17953":-1,"17954":-1,"17955":0,"17956":567,"17957":2093,"17958":0,"17959":2592,"17960":-1,"17961":0,"17962":-1,"17963":-1,"17964":2473,"17965":-1,"17966":2328,"17967":0,"17968":0,"17969":2380,"17970":0,"17971":2104,"17972":0,"17973":-1,"17974":-1,"17975":2290,"17976":0,"17977":0,"17978":0,"17979":0,"17980":-1,"17981":0,"17982":2218,"17983":-1,"17984":0,"17985":0,"17986":0,"17987":2232,"17988":2638,"17989":2395,"17990":0,"17991":0,"17992":-1,"17993":0,"17994":-1,"17995":0,"17996":-1,"17997":0,"17998":0,"17999":0,"18000":2383,"18001":-1,"18002":2372,"18003":2658,"18004":2538,"18005":0,"18006":-1,"18007":2035,"18008":-1,"18009":0,"18010":0,"18011":2215,"18012":-1,"18013":0,"18014":-1,"18015":-1,"18016":0,"18017":-1,"18018":0,"18019":0,"18020":0,"18021":-1,"18022":-1,"18023":2151,"18024":559,"18025":0,"18026":0,"18027":-1,"18028":813,"18029":-1,"18030":-1,"18031":0,"18032":-1,"18033":0,"18034":2366,"18035":2168,"18036":0,"18037":0,"18038":-1,"18039":0,"18040":0,"18041":0,"18042":0,"18043":0,"18044":-1,"18045":-1,"18046":0,"18047":-1,"18048":0,"18049":2411,"18050":2516,"18051":-1,"18052":2536,"18053":0,"18054":0,"18055":0,"18056":2244,"18057":0,"18058":0,"18059":2326,"18060":0,"18061":-1,"18062":0,"18063":0,"18064":0,"18065":0,"18066":217,"18067":0,"18068":-1,"18069":-1,"18070":-1,"18071":0,"18072":0,"18073":0,"18074":0,"18075":2321,"18076":246,"18077":0,"18078":0,"18079":-1,"18080":-1,"18081":0,"18082":-1,"18083":0,"18084":2235,"18085":2452,"18086":0,"18087":2609,"18088":2550,"18089":0,"18090":-1,"18091":0,"18092":0,"18093":0,"18094":0,"18095":0,"18096":0,"18097":-1,"18098":0,"18099":0,"18100":-1,"18101":-1,"18102":0,"18103":-1,"18104":0,"18105":0,"18106":-1,"18107":2680,"18108":-1,"18109":0,"18110":2574,"18111":2105,"18112":-1,"18113":-1,"18114":0,"18115":-1,"18116":0,"18117":2209,"18118":2037,"18119":2240,"18120":2292,"18121":0,"18122":-1,"18123":-1,"18124":2566,"18125":2066,"18126":-1,"18127":-1,"18128":0,"18129":12,"18130":-1,"18131":0,"18132":0,"18133":-1,"18134":0,"18135":0,"18136":0,"18137":0,"18138":0,"18139":-1,"18140":18,"18141":0,"18142":-1,"18143":-1,"18144":2260,"18145":0,"18146":0,"18147":2115,"18148":0,"18149":-1,"18150":0,"18151":0,"18152":-1,"18153":2067,"18154":0,"18155":2666,"18156":0,"18157":2498,"18158":0,"18159":-1,"18160":-1,"18161":-1,"18162":0,"18163":-1,"18164":0,"18165":0,"18166":0,"18167":0,"18168":2319,"18169":-1,"18170":2393,"18171":0,"18172":0,"18173":0,"18174":0,"18175":-1,"18176":0,"18177":0,"18178":0,"18179":2221,"18180":-1,"18181":2255,"18182":-1,"18183":0,"18184":2020,"18185":209,"18186":2202,"18187":-1,"18188":-1,"18189":-1,"18190":-1,"18191":0,"18192":-1,"18193":65,"18194":2122,"18195":0,"18196":0,"18197":-1,"18198":0,"18199":-1,"18200":2203,"18201":45,"18202":-1,"18203":0,"18204":22,"18205":2253,"18206":0,"18207":-1,"18208":-1,"18209":-1,"18210":-1,"18211":-1,"18212":455,"18213":2549,"18214":0,"18215":0,"18216":0,"18217":2446,"18218":-1,"18219":0,"18220":0,"18221":2465,"18222":0,"18223":-1,"18224":-1,"18225":-1,"18226":0,"18227":-1,"18228":0,"18229":0,"18230":-1,"18231":0,"18232":0,"18233":0,"18234":2247,"18235":-1,"18236":-1,"18237":0,"18238":-1,"18239":0,"18240":2563,"18241":0,"18242":-1,"18243":0,"18244":0,"18245":-1,"18246":2167,"18247":2030,"18248":0,"18249":287,"18250":0,"18251":0,"18252":2076,"18253":0,"18254":-1,"18255":397,"18256":0,"18257":362,"18258":0,"18259":2583,"18260":-1,"18261":-1,"18262":-1,"18263":0,"18264":2291,"18265":0,"18266":2302,"18267":2344,"18268":0,"18269":2347,"18270":2333,"18271":0,"18272":148,"18273":-1,"18274":2498,"18275":-1,"18276":-1,"18277":0,"18278":2294,"18279":98,"18280":0,"18281":2266,"18282":2226,"18283":-1,"18284":0,"18285":2358,"18286":0,"18287":-1,"18288":0,"18289":0,"18290":0,"18291":0,"18292":-1,"18293":0,"18294":2547,"18295":2525,"18296":0,"18297":0,"18298":0,"18299":2364,"18300":0,"18301":0,"18302":0,"18303":-1,"18304":2411,"18305":-1,"18306":0,"18307":-1,"18308":2431,"18309":0,"18310":0,"18311":0,"18312":-1,"18313":2290,"18314":-1,"18315":0,"18316":2605,"18317":-1,"18318":0,"18319":2379,"18320":0,"18321":0,"18322":-1,"18323":2554,"18324":0,"18325":0,"18326":0,"18327":0,"18328":0,"18329":-1,"18330":514,"18331":2338,"18332":-1,"18333":0,"18334":0,"18335":2619,"18336":2601,"18337":0,"18338":-1,"18339":-1,"18340":-1,"18341":2400,"18342":2269,"18343":2426,"18344":2247,"18345":329,"18346":0,"18347":0,"18348":-1,"18349":-1,"18350":-1,"18351":-1,"18352":0,"18353":-1,"18354":0,"18355":0,"18356":-1,"18357":2562,"18358":-1,"18359":2317,"18360":0,"18361":-1,"18362":-1,"18363":-1,"18364":0,"18365":-1,"18366":-1,"18367":-1,"18368":0,"18369":2255,"18370":-1,"18371":0,"18372":0,"18373":0,"18374":2517,"18375":0,"18376":-1,"18377":0,"18378":-1,"18379":0,"18380":0,"18381":2294,"18382":0,"18383":0,"18384":0,"18385":-1,"18386":-1,"18387":0,"18388":0,"18389":2589,"18390":-1,"18391":0,"18392":0,"18393":0,"18394":0,"18395":-1,"18396":0,"18397":-1,"18398":0,"18399":2084,"18400":0,"18401":0,"18402":-1,"18403":2401,"18404":2319,"18405":0,"18406":0,"18407":-1,"18408":0,"18409":-1,"18410":-1,"18411":-1,"18412":2254,"18413":-1,"18414":2613,"18415":0,"18416":0,"18417":2459,"18418":2583,"18419":0,"18420":0,"18421":-1,"18422":159,"18423":-1,"18424":0,"18425":0,"18426":2640,"18427":0,"18428":-1,"18429":313,"18430":-1,"18431":2675,"18432":0,"18433":578,"18434":67,"18435":0,"18436":0,"18437":-1,"18438":-1,"18439":2232,"18440":-1,"18441":2657,"18442":-1,"18443":199,"18444":0,"18445":0,"18446":0,"18447":0,"18448":-1,"18449":-1,"18450":402,"18451":2416,"18452":0,"18453":-1,"18454":-1,"18455":2466,"18456":0,"18457":2147,"18458":0,"18459":-1,"18460":-1,"18461":2648,"18462":2160,"18463":0,"18464":0,"18465":0,"18466":-1,"18467":2570,"18468":25,"18469":-1,"18470":313,"18471":-1,"18472":2040,"18473":-1,"18474":0,"18475":0,"18476":-1,"18477":-1,"18478":2260,"18479":-1,"18480":-1,"18481":27,"18482":0,"18483":0,"18484":0,"18485":2535,"18486":0,"18487":0,"18488":2413,"18489":2624,"18490":0,"18491":2281,"18492":-1,"18493":0,"18494":0,"18495":-1,"18496":-1,"18497":2622,"18498":0,"18499":0,"18500":0,"18501":0,"18502":2678,"18503":0,"18504":-1,"18505":-1,"18506":0,"18507":-1,"18508":2543,"18509":327,"18510":-1,"18511":-1,"18512":0,"18513":0,"18514":859,"18515":0,"18516":0,"18517":0,"18518":0,"18519":2308,"18520":-1,"18521":2030,"18522":0,"18523":0,"18524":0,"18525":42,"18526":-1,"18527":317,"18528":0,"18529":0,"18530":-1,"18531":0,"18532":-1,"18533":-1,"18534":-1,"18535":2467,"18536":2147,"18537":2307,"18538":5,"18539":2106,"18540":0,"18541":-1,"18542":0,"18543":2518,"18544":2181,"18545":2177,"18546":0,"18547":2225,"18548":-1,"18549":-1,"18550":-1,"18551":6,"18552":0,"18553":0,"18554":0,"18555":-1,"18556":0,"18557":64,"18558":0,"18559":0,"18560":0,"18561":0,"18562":2127,"18563":0,"18564":0,"18565":0,"18566":420,"18567":-1,"18568":0,"18569":1999,"18570":0,"18571":-1,"18572":-1,"18573":0,"18574":19,"18575":0,"18576":2347,"18577":0,"18578":0,"18579":0,"18580":0,"18581":0,"18582":-1,"18583":0,"18584":2209,"18585":0,"18586":-1,"18587":77,"18588":2125,"18589":-1,"18590":443,"18591":0,"18592":6,"18593":0,"18594":-1,"18595":23,"18596":0,"18597":0,"18598":0,"18599":-1,"18600":136,"18601":-1,"18602":0,"18603":-1,"18604":0,"18605":-1,"18606":-1,"18607":0,"18608":0,"18609":2228,"18610":2287,"18611":-1,"18612":0,"18613":-1,"18614":0,"18615":2679,"18616":-1,"18617":0,"18618":-1,"18619":0,"18620":0,"18621":0,"18622":0,"18623":-1,"18624":-1,"18625":-1,"18626":-1,"18627":0,"18628":-1,"18629":-1,"18630":0,"18631":0,"18632":0,"18633":325,"18634":2353,"18635":-1,"18636":2607,"18637":0,"18638":0,"18639":0,"18640":0,"18641":-1,"18642":-1,"18643":-1,"18644":0,"18645":0,"18646":0,"18647":-1,"18648":0,"18649":-1,"18650":245,"18651":2316,"18652":2646,"18653":-1,"18654":-1,"18655":0,"18656":2247,"18657":0,"18658":0,"18659":0,"18660":2048,"18661":0,"18662":0,"18663":0,"18664":0,"18665":0,"18666":2303,"18667":2174,"18668":669,"18669":2155,"18670":-1,"18671":0,"18672":-1,"18673":2519,"18674":0,"18675":0,"18676":2310,"18677":-1,"18678":0,"18679":0,"18680":907,"18681":0,"18682":0,"18683":0,"18684":0,"18685":-1,"18686":0,"18687":-1,"18688":2036,"18689":0,"18690":-1,"18691":0,"18692":-1,"18693":2180,"18694":0,"18695":0,"18696":-1,"18697":544,"18698":2159,"18699":-1,"18700":-1,"18701":0,"18702":0,"18703":2251,"18704":0,"18705":-1,"18706":9,"18707":2321,"18708":-1,"18709":0,"18710":455,"18711":1997,"18712":0,"18713":2115,"18714":-1,"18715":0,"18716":0,"18717":0,"18718":0,"18719":-1,"18720":2458,"18721":2486,"18722":0,"18723":2560,"18724":0,"18725":0,"18726":0,"18727":2597,"18728":-1,"18729":0,"18730":-1,"18731":2288,"18732":0,"18733":2577,"18734":0,"18735":0,"18736":-1,"18737":-1,"18738":0,"18739":496,"18740":0,"18741":0,"18742":-1,"18743":2116,"18744":0,"18745":2251,"18746":-1,"18747":0,"18748":-1,"18749":-1,"18750":-1,"18751":-1,"18752":-1,"18753":-1,"18754":-1,"18755":0,"18756":-1,"18757":0,"18758":-1,"18759":0,"18760":0,"18761":2510,"18762":2536,"18763":-1,"18764":-1,"18765":-1,"18766":2248,"18767":-1,"18768":-1,"18769":0,"18770":2083,"18771":0,"18772":2523,"18773":0,"18774":0,"18775":2124,"18776":2313,"18777":386,"18778":16,"18779":0,"18780":0,"18781":-1,"18782":0,"18783":0,"18784":-1,"18785":0,"18786":-1,"18787":0,"18788":0,"18789":2652,"18790":0,"18791":0,"18792":0,"18793":-1,"18794":2506,"18795":0,"18796":0,"18797":0,"18798":2438,"18799":-1,"18800":0,"18801":2254,"18802":2467,"18803":-1,"18804":264,"18805":2549,"18806":0,"18807":-1,"18808":0,"18809":2156,"18810":0,"18811":-1,"18812":0,"18813":2515,"18814":2189,"18815":-1,"18816":0,"18817":0,"18818":0,"18819":2454,"18820":2160,"18821":0,"18822":2312,"18823":0,"18824":2059,"18825":0,"18826":0,"18827":-1,"18828":0,"18829":0,"18830":0,"18831":-1,"18832":2598,"18833":0,"18834":-1,"18835":0,"18836":2079,"18837":0,"18838":-1,"18839":0,"18840":0,"18841":-1,"18842":-1,"18843":0,"18844":2175,"18845":-1,"18846":-1,"18847":0,"18848":0,"18849":-1,"18850":0,"18851":178,"18852":407,"18853":2548,"18854":-1,"18855":-1,"18856":0,"18857":2358,"18858":2164,"18859":-1,"18860":2012,"18861":0,"18862":2512,"18863":0,"18864":-1,"18865":2382,"18866":-1,"18867":-1,"18868":2623,"18869":0,"18870":0,"18871":-1,"18872":-1,"18873":2667,"18874":0,"18875":0,"18876":-1,"18877":0,"18878":299,"18879":0,"18880":0,"18881":0,"18882":2200,"18883":2147,"18884":0,"18885":0,"18886":604,"18887":0,"18888":2336,"18889":0,"18890":0,"18891":0,"18892":-1,"18893":0,"18894":0,"18895":2209,"18896":2180,"18897":0,"18898":0,"18899":2023,"18900":-1,"18901":0,"18902":2138,"18903":-1,"18904":0,"18905":-1,"18906":0,"18907":-1,"18908":0,"18909":0,"18910":-1,"18911":1991,"18912":-1,"18913":0,"18914":0,"18915":0,"18916":0,"18917":-1,"18918":-1,"18919":2622,"18920":0,"18921":2329,"18922":-1,"18923":2475,"18924":0,"18925":0,"18926":0,"18927":-1,"18928":-1,"18929":2573,"18930":0,"18931":133,"18932":0,"18933":0,"18934":0,"18935":2468,"18936":-1,"18937":2112,"18938":0,"18939":0,"18940":0,"18941":0,"18942":-1,"18943":0,"18944":-1,"18945":0,"18946":2146,"18947":40,"18948":2610,"18949":0,"18950":0,"18951":0,"18952":0,"18953":64,"18954":2072,"18955":-1,"18956":2135,"18957":-1,"18958":-1,"18959":0,"18960":645,"18961":-1,"18962":0,"18963":0,"18964":0,"18965":2466,"18966":0,"18967":0,"18968":-1,"18969":0,"18970":0,"18971":455,"18972":0,"18973":2335,"18974":0,"18975":0,"18976":0,"18977":0,"18978":-1,"18979":-1,"18980":-1,"18981":0,"18982":0,"18983":0,"18984":2135,"18985":0,"18986":-1,"18987":-1,"18988":0,"18989":-1,"18990":0,"18991":-1,"18992":-1,"18993":-1,"18994":2224,"18995":-1,"18996":0,"18997":0,"18998":0,"18999":2185,"19000":-1,"19001":2578,"19002":0,"19003":2476,"19004":0,"19005":-1,"19006":-1,"19007":2236,"19008":-1,"19009":-1,"19010":2223,"19011":0,"19012":0,"19013":0,"19014":738,"19015":-1,"19016":0,"19017":0,"19018":0,"19019":-1,"19020":0,"19021":0,"19022":0,"19023":-1,"19024":0,"19025":-1,"19026":0,"19027":-1,"19028":0,"19029":-1,"19030":772,"19031":0,"19032":2172,"19033":-1,"19034":2542,"19035":0,"19036":-1,"19037":0,"19038":0,"19039":2333,"19040":-1,"19041":2083,"19042":2623,"19043":0,"19044":2315,"19045":-1,"19046":0,"19047":0,"19048":2114,"19049":-1,"19050":-1,"19051":2144,"19052":2656,"19053":0,"19054":-1,"19055":0,"19056":0,"19057":-1,"19058":-1,"19059":-1,"19060":2383,"19061":0,"19062":-1,"19063":-1,"19064":0,"19065":2091,"19066":0,"19067":2355,"19068":-1,"19069":772,"19070":0,"19071":2064,"19072":2094,"19073":0,"19074":0,"19075":0,"19076":0,"19077":0,"19078":0,"19079":0,"19080":0,"19081":2479,"19082":0,"19083":2083,"19084":2204,"19085":237,"19086":-1,"19087":325,"19088":0,"19089":0,"19090":-1,"19091":2473,"19092":0,"19093":0,"19094":0,"19095":-1,"19096":0,"19097":2263,"19098":0,"19099":0,"19100":0,"19101":2223,"19102":-1,"19103":0,"19104":-1,"19105":-1,"19106":-1,"19107":0,"19108":-1,"19109":2297,"19110":2066,"19111":-1,"19112":0,"19113":0,"19114":-1,"19115":0,"19116":0,"19117":2076,"19118":0,"19119":2208,"19120":0,"19121":-1,"19122":-1,"19123":-1,"19124":0,"19125":475,"19126":0,"19127":0,"19128":0,"19129":0,"19130":0,"19131":0,"19132":2102,"19133":-1,"19134":0,"19135":0,"19136":0,"19137":2649,"19138":-1,"19139":-1,"19140":2644,"19141":0,"19142":-1,"19143":833,"19144":2395,"19145":-1,"19146":2280,"19147":2363,"19148":-1,"19149":0,"19150":2490,"19151":2126,"19152":584,"19153":720,"19154":0,"19155":0,"19156":-1,"19157":0,"19158":0,"19159":0,"19160":-1,"19161":-1,"19162":0,"19163":-1,"19164":2656,"19165":-1,"19166":-1,"19167":0,"19168":0,"19169":-1,"19170":0,"19171":-1,"19172":-1,"19173":0,"19174":-1,"19175":2674,"19176":0,"19177":0,"19178":-1,"19179":0,"19180":0,"19181":-1,"19182":2312,"19183":-1,"19184":2454,"19185":2072,"19186":-1,"19187":-1,"19188":0,"19189":0,"19190":2647,"19191":-1,"19192":-1,"19193":2327,"19194":0,"19195":0,"19196":2180,"19197":-1,"19198":0,"19199":0,"19200":0,"19201":0,"19202":0,"19203":2599,"19204":0,"19205":2055,"19206":0,"19207":0,"19208":0,"19209":220,"19210":-1,"19211":2119,"19212":0,"19213":2087,"19214":2244,"19215":-1,"19216":0,"19217":0,"19218":-1,"19219":-1,"19220":777,"19221":-1,"19222":0,"19223":2283,"19224":-1,"19225":-1,"19226":350,"19227":0,"19228":0,"19229":2008,"19230":2341,"19231":0,"19232":0,"19233":0,"19234":0,"19235":2570,"19236":-1,"19237":0,"19238":0,"19239":0,"19240":0,"19241":-1,"19242":0,"19243":-1,"19244":-1,"19245":-1,"19246":2309,"19247":0,"19248":0,"19249":-1,"19250":0,"19251":0,"19252":-1,"19253":-1,"19254":0,"19255":-1,"19256":0,"19257":0,"19258":0,"19259":75,"19260":-1,"19261":-1,"19262":0,"19263":-1,"19264":-1,"19265":0,"19266":-1,"19267":0,"19268":0,"19269":-1,"19270":0,"19271":2666,"19272":-1,"19273":2116,"19274":-1,"19275":2389,"19276":0,"19277":-1,"19278":2013,"19279":1994,"19280":0,"19281":49,"19282":-1,"19283":0,"19284":0,"19285":-1,"19286":0,"19287":0,"19288":0,"19289":2240,"19290":-1,"19291":0,"19292":0,"19293":0,"19294":-1,"19295":0,"19296":-1,"19297":0,"19298":-1,"19299":-1,"19300":0,"19301":2544,"19302":0,"19303":0,"19304":2302,"19305":-1,"19306":0,"19307":-1,"19308":16,"19309":0,"19310":-1,"19311":-1,"19312":0,"19313":0,"19314":2512,"19315":2357,"19316":0,"19317":-1,"19318":-1,"19319":0,"19320":0,"19321":2556,"19322":-1,"19323":-1,"19324":0,"19325":-1,"19326":0,"19327":0,"19328":0,"19329":0,"19330":2432,"19331":2416,"19332":0,"19333":0,"19334":2444,"19335":-1,"19336":0,"19337":1991,"19338":0,"19339":0,"19340":0,"19341":2385,"19342":0,"19343":0,"19344":0,"19345":0,"19346":-1,"19347":-1,"19348":-1,"19349":0,"19350":0,"19351":0,"19352":-1,"19353":0,"19354":0,"19355":39,"19356":2095,"19357":-1,"19358":-1,"19359":-1,"19360":0,"19361":-1,"19362":2664,"19363":-1,"19364":2632,"19365":0,"19366":-1,"19367":0,"19368":0,"19369":0,"19370":0,"19371":0,"19372":0,"19373":-1,"19374":0,"19375":-1,"19376":-1,"19377":-1,"19378":2043,"19379":2073,"19380":0,"19381":-1,"19382":0,"19383":-1,"19384":292,"19385":2451,"19386":0,"19387":-1,"19388":0,"19389":0,"19390":0,"19391":2033,"19392":0,"19393":0,"19394":0,"19395":40,"19396":0,"19397":0,"19398":-1,"19399":2386,"19400":0,"19401":0,"19402":2203,"19403":0,"19404":2007,"19405":2624,"19406":-1,"19407":312,"19408":-1,"19409":-1,"19410":0,"19411":2220,"19412":0,"19413":0,"19414":0,"19415":936,"19416":0,"19417":0,"19418":-1,"19419":2038,"19420":-1,"19421":0,"19422":0,"19423":0,"19424":-1,"19425":0,"19426":693,"19427":0,"19428":0,"19429":0,"19430":0,"19431":0,"19432":0,"19433":0,"19434":0,"19435":-1,"19436":-1,"19437":0,"19438":0,"19439":0,"19440":2004,"19441":-1,"19442":80,"19443":-1,"19444":-1,"19445":0,"19446":2612,"19447":0,"19448":0,"19449":148,"19450":-1,"19451":2092,"19452":-1,"19453":5,"19454":0,"19455":0,"19456":0,"19457":0,"19458":-1,"19459":-1,"19460":-1,"19461":0,"19462":0,"19463":2191,"19464":2324,"19465":0,"19466":-1,"19467":0,"19468":2141,"19469":107,"19470":-1,"19471":-1,"19472":0,"19473":2577,"19474":0,"19475":2052,"19476":27,"19477":2630,"19478":-1,"19479":772,"19480":0,"19481":2518,"19482":2183,"19483":0,"19484":0,"19485":2099,"19486":0,"19487":0,"19488":2296,"19489":-1,"19490":-1,"19491":0,"19492":508,"19493":0,"19494":0,"19495":2111,"19496":2320,"19497":-1,"19498":0,"19499":-1,"19500":2146,"19501":2202,"19502":2151,"19503":0,"19504":-1,"19505":-1,"19506":-1,"19507":2387,"19508":-1,"19509":-1,"19510":2197,"19511":-1,"19512":-1,"19513":0,"19514":2186,"19515":137,"19516":0,"19517":0,"19518":2209,"19519":2449,"19520":0,"19521":0,"19522":2051,"19523":0,"19524":0,"19525":-1,"19526":2540,"19527":2527,"19528":-1,"19529":0,"19530":0,"19531":2036,"19532":2196,"19533":0,"19534":0,"19535":2135,"19536":-1,"19537":-1,"19538":-1,"19539":2044,"19540":-1,"19541":0,"19542":-1,"19543":2511,"19544":0,"19545":0,"19546":2227,"19547":-1,"19548":-1,"19549":0,"19550":2583,"19551":7,"19552":669,"19553":2267,"19554":2382,"19555":0,"19556":0,"19557":0,"19558":0,"19559":0,"19560":0,"19561":0,"19562":-1,"19563":2467,"19564":-1,"19565":-1,"19566":0,"19567":-1,"19568":-1,"19569":0,"19570":-1,"19571":0,"19572":2473,"19573":0,"19574":-1,"19575":-1,"19576":-1,"19577":0,"19578":0,"19579":533,"19580":0,"19581":-1,"19582":-1,"19583":2467,"19584":-1,"19585":-1,"19586":2351,"19587":0,"19588":2436,"19589":-1,"19590":2209,"19591":2174,"19592":0,"19593":-1,"19594":-1,"19595":0,"19596":0,"19597":2444,"19598":0,"19599":-1,"19600":0,"19601":-1,"19602":0,"19603":2275,"19604":-1,"19605":0,"19606":0,"19607":0,"19608":0,"19609":0,"19610":1998,"19611":-1,"19612":-1,"19613":0,"19614":2248,"19615":0,"19616":2382,"19617":0,"19618":341,"19619":0,"19620":-1,"19621":0,"19622":2159,"19623":0,"19624":0,"19625":-1,"19626":2446,"19627":345,"19628":37,"19629":-1,"19630":0,"19631":-1,"19632":777,"19633":-1,"19634":0,"19635":0,"19636":2303,"19637":2431,"19638":2097,"19639":0,"19640":-1,"19641":0,"19642":2041,"19643":2080,"19644":0,"19645":942,"19646":0,"19647":0,"19648":0,"19649":2010,"19650":2462,"19651":584,"19652":0,"19653":-1,"19654":0,"19655":246,"19656":-1,"19657":0,"19658":500,"19659":58,"19660":0,"19661":2199,"19662":0,"19663":2675,"19664":0,"19665":-1,"19666":2474,"19667":280,"19668":0,"19669":0,"19670":-1,"19671":0,"19672":0,"19673":-1,"19674":0,"19675":44,"19676":-1,"19677":2122,"19678":0,"19679":-1,"19680":0,"19681":2493,"19682":0,"19683":-1,"19684":-1,"19685":0,"19686":0,"19687":0,"19688":-1,"19689":-1,"19690":-1,"19691":533,"19692":0,"19693":705,"19694":2506,"19695":0,"19696":2494,"19697":-1,"19698":-1,"19699":0,"19700":0,"19701":0,"19702":0,"19703":-1,"19704":0,"19705":0,"19706":-1,"19707":-1,"19708":849,"19709":0,"19710":0,"19711":0,"19712":0,"19713":2537,"19714":0,"19715":0,"19716":0,"19717":0,"19718":0,"19719":2315,"19720":2441,"19721":-1,"19722":0,"19723":0,"19724":0,"19725":2617,"19726":2544,"19727":2162,"19728":2387,"19729":-1,"19730":-1,"19731":-1,"19732":2231,"19733":-1,"19734":-1,"19735":-1,"19736":-1,"19737":-1,"19738":0,"19739":0,"19740":301,"19741":0,"19742":2483,"19743":0,"19744":-1,"19745":0,"19746":0,"19747":0,"19748":0,"19749":-1,"19750":0,"19751":-1,"19752":2126,"19753":0,"19754":2409,"19755":2213,"19756":0,"19757":-1,"19758":0,"19759":-1,"19760":2393,"19761":0,"19762":-1,"19763":2108,"19764":2115,"19765":0,"19766":-1,"19767":-1,"19768":-1,"19769":0,"19770":0,"19771":-1,"19772":2563,"19773":0,"19774":2675,"19775":2130,"19776":0,"19777":0,"19778":2491,"19779":496,"19780":-1,"19781":325,"19782":0,"19783":0,"19784":-1,"19785":-1,"19786":27,"19787":2269,"19788":-1,"19789":-1,"19790":-1,"19791":-1,"19792":0,"19793":2628,"19794":0,"19795":0,"19796":0,"19797":0,"19798":-1,"19799":0,"19800":0,"19801":-1,"19802":2488,"19803":-1,"19804":0,"19805":-1,"19806":420,"19807":0,"19808":0,"19809":-1,"19810":0,"19811":0,"19812":-1,"19813":2365,"19814":-1,"19815":2021,"19816":2380,"19817":-1,"19818":0,"19819":-1,"19820":0,"19821":2298,"19822":0,"19823":2657,"19824":-1,"19825":0,"19826":-1,"19827":-1,"19828":0,"19829":-1,"19830":0,"19831":-1,"19832":0,"19833":614,"19834":500,"19835":2121,"19836":0,"19837":2412,"19838":-1,"19839":2606,"19840":924,"19841":2007,"19842":0,"19843":-1,"19844":-1,"19845":0,"19846":-1,"19847":-1,"19848":-1,"19849":0,"19850":2102,"19851":-1,"19852":0,"19853":-1,"19854":-1,"19855":0,"19856":-1,"19857":0,"19858":0,"19859":341,"19860":0,"19861":2662,"19862":-1,"19863":2394,"19864":0,"19865":0,"19866":0,"19867":-1,"19868":0,"19869":-1,"19870":0,"19871":-1,"19872":-1,"19873":2114,"19874":-1,"19875":-1,"19876":0,"19877":-1,"19878":-1,"19879":0,"19880":-1,"19881":559,"19882":-1,"19883":0,"19884":0,"19885":2498,"19886":0,"19887":2173,"19888":2398,"19889":0,"19890":-1,"19891":-1,"19892":-1,"19893":0,"19894":0,"19895":2626,"19896":2448,"19897":2287,"19898":0,"19899":2602,"19900":0,"19901":0,"19902":-1,"19903":2299,"19904":0,"19905":0,"19906":-1,"19907":0,"19908":0,"19909":-1,"19910":0,"19911":2641,"19912":0,"19913":23,"19914":0,"19915":0,"19916":-1,"19917":0,"19918":-1,"19919":-1,"19920":0,"19921":2677,"19922":0,"19923":-1,"19924":0,"19925":0,"19926":0,"19927":0,"19928":0,"19929":-1,"19930":0,"19931":0,"19932":-1,"19933":2237,"19934":908,"19935":0,"19936":0,"19937":0,"19938":2002,"19939":0,"19940":0,"19941":0,"19942":0,"19943":-1,"19944":2354,"19945":0,"19946":0,"19947":-1,"19948":0,"19949":-1,"19950":-1,"19951":2503,"19952":2361,"19953":0,"19954":-1,"19955":-1,"19956":0,"19957":0,"19958":-1,"19959":-1,"19960":0,"19961":2033,"19962":-1,"19963":-1,"19964":-1,"19965":0,"19966":-1,"19967":-1,"19968":-1,"19969":-1,"19970":0,"19971":-1,"19972":2622,"19973":0,"19974":0,"19975":0,"19976":-1,"19977":-1,"19978":39,"19979":-1,"19980":0,"19981":0,"19982":0,"19983":0,"19984":0,"19985":0,"19986":-1,"19987":0,"19988":-1,"19989":0,"19990":2183,"19991":2197,"19992":2572,"19993":0,"19994":2485,"19995":0,"19996":0,"19997":2281,"19998":-1,"19999":-1,"20000":2582,"20001":0,"20002":0,"20003":-1,"20004":-1,"20005":0,"20006":0,"20007":-1,"20008":2399,"20009":0,"20010":0,"20011":7,"20012":0,"20013":-1,"20014":645,"20015":0,"20016":0,"20017":0,"20018":-1,"20019":2406,"20020":0,"20021":-1,"20022":2045,"20023":-1,"20024":-1,"20025":0,"20026":2090,"20027":0,"20028":-1,"20029":2233,"20030":0,"20031":0,"20032":0,"20033":0,"20034":130,"20035":0,"20036":2452,"20037":-1,"20038":-1,"20039":-1,"20040":0,"20041":2674,"20042":-1,"20043":-1,"20044":0,"20045":-1,"20046":0,"20047":0,"20048":0,"20049":0,"20050":0,"20051":-1,"20052":0,"20053":217,"20054":0,"20055":-1,"20056":0,"20057":0,"20058":0,"20059":-1,"20060":-1,"20061":-1,"20062":-1,"20063":693,"20064":-1,"20065":0,"20066":2224,"20067":0,"20068":0,"20069":0,"20070":0,"20071":0,"20072":2227,"20073":0,"20074":2077,"20075":2043,"20076":0,"20077":-1,"20078":0,"20079":2616,"20080":0,"20081":0,"20082":0,"20083":0,"20084":0,"20085":0,"20086":0,"20087":0,"20088":2127,"20089":0,"20090":0,"20091":0,"20092":2306,"20093":0,"20094":2057,"20095":-1,"20096":0,"20097":0,"20098":0,"20099":693,"20100":-1,"20101":0,"20102":67,"20103":0,"20104":-1,"20105":0,"20106":0,"20107":0,"20108":0,"20109":0,"20110":-1,"20111":-1,"20112":0,"20113":2350,"20114":0,"20115":0,"20116":0,"20117":-1,"20118":0,"20119":0,"20120":-1,"20121":0,"20122":0,"20123":2657,"20124":-1,"20125":-1,"20126":-1,"20127":0,"20128":-1,"20129":2258,"20130":2503,"20131":2048,"20132":0,"20133":104,"20134":-1,"20135":2113,"20136":-1,"20137":-1,"20138":2657,"20139":2511,"20140":0,"20141":-1,"20142":-1,"20143":0,"20144":2400,"20145":0,"20146":-1,"20147":-1,"20148":0,"20149":0,"20150":0,"20151":-1,"20152":-1,"20153":-1,"20154":906,"20155":-1,"20156":-1,"20157":0,"20158":572,"20159":0,"20160":0,"20161":0,"20162":-1,"20163":0,"20164":0,"20165":2652,"20166":-1,"20167":-1,"20168":2313,"20169":-1,"20170":2188,"20171":0,"20172":0,"20173":-1,"20174":2117,"20175":-1,"20176":-1,"20177":0,"20178":220,"20179":909,"20180":0,"20181":-1,"20182":0,"20183":0,"20184":0,"20185":1991,"20186":0,"20187":2517,"20188":2363,"20189":2535,"20190":-1,"20191":-1,"20192":2453,"20193":2410,"20194":0,"20195":-1,"20196":0,"20197":-1,"20198":0,"20199":0,"20200":0,"20201":0,"20202":-1,"20203":2538,"20204":-1,"20205":559,"20206":2306,"20207":0,"20208":-1,"20209":0,"20210":159,"20211":2409,"20212":0,"20213":0,"20214":0,"20215":0,"20216":0,"20217":0,"20218":-1,"20219":-1,"20220":-1,"20221":-1,"20222":0,"20223":0,"20224":2076,"20225":-1,"20226":-1,"20227":-1,"20228":0,"20229":2130,"20230":0,"20231":-1,"20232":772,"20233":2212,"20234":-1,"20235":0,"20236":0,"20237":345,"20238":0,"20239":0,"20240":0,"20241":2457,"20242":2181,"20243":2298,"20244":0,"20245":0,"20246":2127,"20247":199,"20248":-1,"20249":0,"20250":-1,"20251":0,"20252":0,"20253":0,"20254":-1,"20255":0,"20256":-1,"20257":0,"20258":0,"20259":2125,"20260":2307,"20261":198,"20262":-1,"20263":-1,"20264":-1,"20265":2471,"20266":0,"20267":0,"20268":2331,"20269":-1,"20270":0,"20271":2336,"20272":-1,"20273":443,"20274":0,"20275":0,"20276":0,"20277":0,"20278":0,"20279":58,"20280":0,"20281":604,"20282":-1,"20283":-1,"20284":-1,"20285":1997,"20286":65,"20287":0,"20288":2147,"20289":2426,"20290":-1,"20291":-1,"20292":0,"20293":0,"20294":-1,"20295":-1,"20296":0,"20297":0,"20298":0,"20299":118,"20300":2469,"20301":-1,"20302":0,"20303":-1,"20304":2432,"20305":2237,"20306":2624,"20307":2092,"20308":2656,"20309":0,"20310":2597,"20311":2532,"20312":2559,"20313":-1,"20314":0,"20315":0,"20316":0,"20317":-1,"20318":0,"20319":0,"20320":0,"20321":2304,"20322":-1,"20323":0,"20324":170,"20325":2362,"20326":156,"20327":0,"20328":-1,"20329":0,"20330":0,"20331":-1,"20332":44,"20333":0,"20334":179,"20335":0,"20336":-1,"20337":-1,"20338":-1,"20339":0,"20340":-1,"20341":2160,"20342":2312,"20343":-1,"20344":-1,"20345":2582,"20346":0,"20347":0,"20348":-1,"20349":0,"20350":0,"20351":0,"20352":-1,"20353":-1,"20354":0,"20355":0,"20356":-1,"20357":44,"20358":-1,"20359":0,"20360":-1,"20361":-1,"20362":-1,"20363":0,"20364":0,"20365":-1,"20366":-1,"20367":0,"20368":0,"20369":0,"20370":572,"20371":-1,"20372":-1,"20373":0,"20374":0,"20375":2120,"20376":45,"20377":0,"20378":2572,"20379":0,"20380":0,"20381":2023,"20382":936,"20383":0,"20384":0,"20385":2402,"20386":2112,"20387":2053,"20388":-1,"20389":-1,"20390":2460,"20391":906,"20392":262,"20393":-1,"20394":0,"20395":0,"20396":49,"20397":0,"20398":0,"20399":584,"20400":2627,"20401":0,"20402":0,"20403":2169,"20404":0,"20405":0,"20406":-1,"20407":-1,"20408":0,"20409":-1,"20410":2109,"20411":2065,"20412":0,"20413":0,"20414":0,"20415":0,"20416":-1,"20417":0,"20418":2015,"20419":2145,"20420":2075,"20421":-1,"20422":0,"20423":2325,"20424":0,"20425":0,"20426":0,"20427":0,"20428":2586,"20429":0,"20430":0,"20431":2142,"20432":-1,"20433":0,"20434":-1,"20435":0,"20436":0,"20437":0,"20438":0,"20439":-1,"20440":2030,"20441":0,"20442":0,"20443":2310,"20444":0,"20445":448,"20446":2044,"20447":-1,"20448":0,"20449":0,"20450":0,"20451":0,"20452":0,"20453":448,"20454":0,"20455":0,"20456":2430,"20457":-1,"20458":0,"20459":292,"20460":0,"20461":0,"20462":2082,"20463":0,"20464":0,"20465":-1,"20466":2282,"20467":-1,"20468":0,"20469":2259,"20470":-1,"20471":0,"20472":2488,"20473":-1,"20474":-1,"20475":0,"20476":-1,"20477":0,"20478":0,"20479":-1,"20480":0,"20481":2284,"20482":2421,"20483":0,"20484":418,"20485":833,"20486":0,"20487":-1,"20488":-1,"20489":-1,"20490":0,"20491":0,"20492":-1,"20493":-1,"20494":2433,"20495":2053,"20496":0,"20497":2013,"20498":0,"20499":-1,"20500":2445,"20501":0,"20502":-1,"20503":-1,"20504":0,"20505":2296,"20506":-1,"20507":0,"20508":-1,"20509":2248,"20510":-1,"20511":0,"20512":0,"20513":0,"20514":-1,"20515":0,"20516":0,"20517":909,"20518":2142,"20519":2573,"20520":0,"20521":0,"20522":-1,"20523":2163,"20524":0,"20525":-1,"20526":2240,"20527":-1,"20528":2249,"20529":118,"20530":2554,"20531":2312,"20532":0,"20533":178,"20534":0,"20535":0,"20536":-1,"20537":-1,"20538":205,"20539":0,"20540":0,"20541":-1,"20542":0,"20543":-1,"20544":0,"20545":0,"20546":-1,"20547":0,"20548":-1,"20549":0,"20550":40,"20551":-1,"20552":833,"20553":2058,"20554":2150,"20555":0,"20556":0,"20557":0,"20558":0,"20559":0,"20560":0,"20561":-1,"20562":-1,"20563":622,"20564":2408,"20565":-1,"20566":0,"20567":96,"20568":1992,"20569":-1,"20570":0,"20571":0,"20572":-1,"20573":2579,"20574":0,"20575":0,"20576":0,"20577":0,"20578":2313,"20579":612,"20580":0,"20581":0,"20582":2201,"20583":2487,"20584":-1,"20585":-1,"20586":-1,"20587":-1,"20588":0,"20589":0,"20590":2542,"20591":617,"20592":0,"20593":0,"20594":2565,"20595":130,"20596":-1,"20597":0,"20598":-1,"20599":0,"20600":2536,"20601":0,"20602":0,"20603":0,"20604":-1,"20605":-1,"20606":0,"20607":2104,"20608":-1,"20609":2619,"20610":-1,"20611":0,"20612":2618,"20613":0,"20614":2443,"20615":0,"20616":-1,"20617":2134,"20618":0,"20619":0,"20620":2391,"20621":2430,"20622":-1,"20623":0,"20624":45,"20625":2478,"20626":-1,"20627":0,"20628":-1,"20629":209,"20630":-1,"20631":-1,"20632":0,"20633":0,"20634":-1,"20635":2408,"20636":-1,"20637":2505,"20638":0,"20639":2657,"20640":0,"20641":-1,"20642":0,"20643":0,"20644":-1,"20645":2271,"20646":0,"20647":0,"20648":0,"20649":-1,"20650":-1,"20651":2247,"20652":0,"20653":0,"20654":0,"20655":0,"20656":-1,"20657":2263,"20658":-1,"20659":0,"20660":0,"20661":0,"20662":0,"20663":-1,"20664":0,"20665":0,"20666":2656,"20667":0,"20668":2552,"20669":-1,"20670":0,"20671":-1,"20672":-1,"20673":-1,"20674":0,"20675":0,"20676":0,"20677":2390,"20678":2041,"20679":0,"20680":0,"20681":554,"20682":-1,"20683":0,"20684":-1,"20685":0,"20686":261,"20687":0,"20688":0,"20689":0,"20690":0,"20691":2562,"20692":-1,"20693":0,"20694":0,"20695":0,"20696":-1,"20697":-1,"20698":0,"20699":0,"20700":-1,"20701":-1,"20702":-1,"20703":0,"20704":-1,"20705":-1,"20706":-1,"20707":-1,"20708":0,"20709":0,"20710":2024,"20711":2635,"20712":0,"20713":0,"20714":-1,"20715":2375,"20716":-1,"20717":0,"20718":-1,"20719":-1,"20720":-1,"20721":0,"20722":-1,"20723":2439,"20724":-1,"20725":0,"20726":-1,"20727":2272,"20728":0,"20729":0,"20730":2195,"20731":0,"20732":0,"20733":-1,"20734":0,"20735":0,"20736":0,"20737":0,"20738":2452,"20739":0,"20740":2248,"20741":2384,"20742":-1,"20743":0,"20744":0,"20745":0,"20746":-1,"20747":0,"20748":0,"20749":0,"20750":0,"20751":2541,"20752":0,"20753":0,"20754":-1,"20755":701,"20756":-1,"20757":2295,"20758":0,"20759":-1,"20760":0,"20761":0,"20762":0,"20763":0,"20764":-1,"20765":-1,"20766":0,"20767":0,"20768":0,"20769":-1,"20770":0,"20771":2579,"20772":0,"20773":0,"20774":0,"20775":2212,"20776":20,"20777":0,"20778":-1,"20779":2057,"20780":0,"20781":0,"20782":-1,"20783":0,"20784":-1,"20785":-1,"20786":0,"20787":-1,"20788":0,"20789":-1,"20790":2286,"20791":936,"20792":-1,"20793":-1,"20794":0,"20795":0,"20796":2518,"20797":0,"20798":2640,"20799":-1,"20800":0,"20801":-1,"20802":2336,"20803":2101,"20804":178,"20805":-1,"20806":2510,"20807":2458,"20808":2422,"20809":-1,"20810":2078,"20811":0,"20812":-1,"20813":2567,"20814":0,"20815":0,"20816":0,"20817":0,"20818":0,"20819":0,"20820":0,"20821":0,"20822":604,"20823":0,"20824":0,"20825":0,"20826":0,"20827":2483,"20828":-1,"20829":0,"20830":2578,"20831":2166,"20832":2659,"20833":2632,"20834":2078,"20835":2530,"20836":205,"20837":0,"20838":2448,"20839":-1,"20840":2600,"20841":-1,"20842":-1,"20843":299,"20844":0,"20845":0,"20846":2206,"20847":2652,"20848":-1,"20849":0,"20850":-1,"20851":0,"20852":-1,"20853":0,"20854":0,"20855":0,"20856":-1,"20857":-1,"20858":2553,"20859":0,"20860":0,"20861":-1,"20862":0,"20863":-1,"20864":0,"20865":0,"20866":0,"20867":-1,"20868":0,"20869":0,"20870":1999,"20871":2160,"20872":-1,"20873":2485,"20874":-1,"20875":0,"20876":0,"20877":310,"20878":-1,"20879":2294,"20880":-1,"20881":0,"20882":0,"20883":2185,"20884":0,"20885":0,"20886":2385,"20887":0,"20888":-1,"20889":-1,"20890":-1,"20891":2657,"20892":-1,"20893":0,"20894":0,"20895":2079,"20896":0,"20897":2629,"20898":0,"20899":0,"20900":-1,"20901":2323,"20902":-1,"20903":-1,"20904":701,"20905":0,"20906":-1,"20907":-1,"20908":-1,"20909":0,"20910":0,"20911":2102,"20912":2485,"20913":2096,"20914":0,"20915":-1,"20916":-1,"20917":0,"20918":-1,"20919":-1,"20920":0,"20921":0,"20922":-1,"20923":0,"20924":-1,"20925":0,"20926":-1,"20927":-1,"20928":-1,"20929":-1,"20930":-1,"20931":0,"20932":0,"20933":-1,"20934":2334,"20935":0,"20936":0,"20937":2076,"20938":-1,"20939":-1,"20940":2479,"20941":0,"20942":0,"20943":0,"20944":0,"20945":2080,"20946":0,"20947":0,"20948":-1,"20949":0,"20950":2028,"20951":-1,"20952":0,"20953":0,"20954":-1,"20955":-1,"20956":0,"20957":0,"20958":-1,"20959":-1,"20960":-1,"20961":0,"20962":2408,"20963":-1,"20964":0,"20965":0,"20966":0,"20967":0,"20968":2408,"20969":0,"20970":2488,"20971":0,"20972":-1,"20973":0,"20974":0,"20975":0,"20976":0,"20977":2302,"20978":2159,"20979":2558,"20980":-1,"20981":209,"20982":-1,"20983":0,"20984":28,"20985":2115,"20986":2424,"20987":-1,"20988":0,"20989":2162,"20990":0,"20991":2585,"20992":-1,"20993":0,"20994":0,"20995":0,"20996":0,"20997":325,"20998":2366,"20999":567,"21000":0,"21001":2489,"21002":2266,"21003":-1,"21004":0,"21005":2516,"21006":-1,"21007":0,"21008":0,"21009":0,"21010":2671,"21011":-1,"21012":-1,"21013":0,"21014":142,"21015":-1,"21016":0,"21017":0,"21018":2166,"21019":-1,"21020":0,"21021":420,"21022":-1,"21023":0,"21024":0,"21025":0,"21026":2394,"21027":0,"21028":0,"21029":-1,"21030":2470,"21031":-1,"21032":-1,"21033":-1,"21034":-1,"21035":-1,"21036":-1,"21037":-1,"21038":-1,"21039":0,"21040":179,"21041":0,"21042":2088,"21043":-1,"21044":0,"21045":0,"21046":0,"21047":0,"21048":-1,"21049":0,"21050":-1,"21051":-1,"21052":156,"21053":-1,"21054":0,"21055":2039,"21056":0,"21057":-1,"21058":-1,"21059":2547,"21060":2167,"21061":0,"21062":0,"21063":2011,"21064":0,"21065":0,"21066":0,"21067":-1,"21068":0,"21069":12,"21070":0,"21071":0,"21072":2477,"21073":159,"21074":2443,"21075":2275,"21076":-1,"21077":2151,"21078":-1,"21079":-1,"21080":27,"21081":2451,"21082":-1,"21083":64,"21084":-1,"21085":-1,"21086":0,"21087":2199,"21088":2573,"21089":0,"21090":0,"21091":2220,"21092":0,"21093":2269,"21094":-1,"21095":2606,"21096":0,"21097":-1,"21098":0,"21099":0,"21100":-1,"21101":0,"21102":0,"21103":-1,"21104":-1,"21105":0,"21106":2540,"21107":-1,"21108":2178,"21109":0,"21110":0,"21111":178,"21112":0,"21113":-1,"21114":2519,"21115":-1,"21116":2195,"21117":2113,"21118":2225,"21119":2645,"21120":-1,"21121":2229,"21122":2149,"21123":0,"21124":313,"21125":2352,"21126":0,"21127":-1,"21128":0,"21129":-1,"21130":0,"21131":0,"21132":2495,"21133":-1,"21134":0,"21135":-1,"21136":-1,"21137":0,"21138":0,"21139":0,"21140":-1,"21141":0,"21142":0,"21143":-1,"21144":2281,"21145":-1,"21146":-1,"21147":-1,"21148":-1,"21149":2083,"21150":2472,"21151":0,"21152":2326,"21153":0,"21154":-1,"21155":-1,"21156":-1,"21157":2103,"21158":2402,"21159":0,"21160":-1,"21161":0,"21162":0,"21163":0,"21164":2077,"21165":2520,"21166":0,"21167":0,"21168":2297,"21169":0,"21170":0,"21171":-1,"21172":2412,"21173":2481,"21174":0,"21175":2067,"21176":418,"21177":-1,"21178":-1,"21179":-1,"21180":0,"21181":-1,"21182":-1,"21183":-1,"21184":2085,"21185":0,"21186":2274,"21187":0,"21188":0,"21189":0,"21190":-1,"21191":0,"21192":0,"21193":2157,"21194":2107,"21195":0,"21196":-1,"21197":0,"21198":0,"21199":2240,"21200":0,"21201":0,"21202":2619,"21203":0,"21204":0,"21205":-1,"21206":-1,"21207":-1,"21208":2,"21209":2278,"21210":-1,"21211":-1,"21212":2285,"21213":0,"21214":2485,"21215":2199,"21216":0,"21217":-1,"21218":0,"21219":0,"21220":2107,"21221":0,"21222":0,"21223":2575,"21224":0,"21225":-1,"21226":0,"21227":0,"21228":0,"21229":-1,"21230":0,"21231":-1,"21232":2513,"21233":2226,"21234":547,"21235":0,"21236":-1,"21237":-1,"21238":-1,"21239":0,"21240":602,"21241":2321,"21242":0,"21243":0,"21244":2388,"21245":2023,"21246":-1,"21247":-1,"21248":2091,"21249":0,"21250":0,"21251":0,"21252":-1,"21253":-1,"21254":-1,"21255":0,"21256":-1,"21257":0,"21258":-1,"21259":0,"21260":2097,"21261":2528,"21262":386,"21263":2317,"21264":0,"21265":-1,"21266":0,"21267":2467,"21268":-1,"21269":0,"21270":-1,"21271":0,"21272":0,"21273":-1,"21274":0,"21275":-1,"21276":0,"21277":0,"21278":-1,"21279":2118,"21280":2383,"21281":-1,"21282":0,"21283":-1,"21284":0,"21285":0,"21286":-1,"21287":0,"21288":2166,"21289":-1,"21290":1996,"21291":2066,"21292":-1,"21293":0,"21294":2622,"21295":0,"21296":0,"21297":-1,"21298":0,"21299":0,"21300":-1,"21301":-1,"21302":0,"21303":0,"21304":0,"21305":2135,"21306":0,"21307":-1,"21308":0,"21309":0,"21310":0,"21311":0,"21312":-1,"21313":-1,"21314":2456,"21315":-1,"21316":-1,"21317":0,"21318":0,"21319":-1,"21320":0,"21321":0,"21322":-1,"21323":-1,"21324":2571,"21325":-1,"21326":2454,"21327":0,"21328":0,"21329":2549,"21330":0,"21331":108,"21332":2538,"21333":-1,"21334":0,"21335":462,"21336":-1,"21337":0,"21338":-1,"21339":-1,"21340":0,"21341":0,"21342":2562,"21343":0,"21344":0,"21345":-1,"21346":0,"21347":0,"21348":0,"21349":-1,"21350":14,"21351":0,"21352":0,"21353":0,"21354":-1,"21355":0,"21356":-1,"21357":0,"21358":2538,"21359":0,"21360":0,"21361":0,"21362":0,"21363":0,"21364":0,"21365":0,"21366":0,"21367":2197,"21368":0,"21369":-1,"21370":-1,"21371":0,"21372":-1,"21373":-1,"21374":2099,"21375":2663,"21376":0,"21377":-1,"21378":-1,"21379":-1,"21380":0,"21381":0,"21382":0,"21383":0,"21384":-1,"21385":0,"21386":0,"21387":-1,"21388":2149,"21389":0,"21390":-1,"21391":0,"21392":141,"21393":2443,"21394":0,"21395":2189,"21396":0,"21397":0,"21398":-1,"21399":0,"21400":0,"21401":0,"21402":1998,"21403":0,"21404":2174,"21405":2384,"21406":0,"21407":0,"21408":0,"21409":-1,"21410":-1,"21411":0,"21412":0,"21413":2480,"21414":2372,"21415":0,"21416":0,"21417":-1,"21418":-1,"21419":2609,"21420":0,"21421":2008,"21422":-1,"21423":0,"21424":-1,"21425":0,"21426":0,"21427":-1,"21428":0,"21429":-1,"21430":0,"21431":0,"21432":-1,"21433":2579,"21434":0,"21435":0,"21436":-1,"21437":0,"21438":0,"21439":-1,"21440":-1,"21441":0,"21442":422,"21443":0,"21444":0,"21445":-1,"21446":-1,"21447":-1,"21448":0,"21449":0,"21450":2453,"21451":2567,"21452":0,"21453":2109,"21454":2541,"21455":2633,"21456":2555,"21457":0,"21458":-1,"21459":0,"21460":0,"21461":-1,"21462":2075,"21463":0,"21464":-1,"21465":-1,"21466":2528,"21467":178,"21468":-1,"21469":0,"21470":-1,"21471":0,"21472":2233,"21473":0,"21474":0,"21475":0,"21476":-1,"21477":0,"21478":0,"21479":0,"21480":2110,"21481":0,"21482":0,"21483":-1,"21484":-1,"21485":-1,"21486":0,"21487":0,"21488":0,"21489":107,"21490":0,"21491":0,"21492":-1,"21493":0,"21494":2456,"21495":0,"21496":0,"21497":404,"21498":2372,"21499":0,"21500":2279,"21501":-1,"21502":327,"21503":0,"21504":2339,"21505":2358,"21506":45,"21507":0,"21508":0,"21509":-1,"21510":0,"21511":2373,"21512":0,"21513":-1,"21514":-1,"21515":0,"21516":0,"21517":-1,"21518":0,"21519":-1,"21520":2580,"21521":0,"21522":0,"21523":0,"21524":-1,"21525":2246,"21526":280,"21527":0,"21528":2051,"21529":-1,"21530":0,"21531":0,"21532":-1,"21533":-1,"21534":-1,"21535":2678,"21536":-1,"21537":0,"21538":-1,"21539":0,"21540":2508,"21541":-1,"21542":-1,"21543":0,"21544":0,"21545":-1,"21546":0,"21547":-1,"21548":0,"21549":-1,"21550":0,"21551":2491,"21552":0,"21553":0,"21554":2597,"21555":2634,"21556":-1,"21557":0,"21558":602,"21559":-1,"21560":38,"21561":0,"21562":-1,"21563":2342,"21564":2646,"21565":0,"21566":0,"21567":-1,"21568":0,"21569":0,"21570":-1,"21571":2216,"21572":34,"21573":-1,"21574":-1,"21575":0,"21576":0,"21577":-1,"21578":0,"21579":-1,"21580":-1,"21581":2296,"21582":0,"21583":0,"21584":-1,"21585":0,"21586":2424,"21587":-1,"21588":0,"21589":547,"21590":-1,"21591":-1,"21592":461,"21593":2560,"21594":2420,"21595":2249,"21596":2679,"21597":0,"21598":0,"21599":0,"21600":-1,"21601":2167,"21602":-1,"21603":-1,"21604":0,"21605":2228,"21606":0,"21607":0,"21608":0,"21609":0,"21610":-1,"21611":0,"21612":-1,"21613":0,"21614":0,"21615":-1,"21616":25,"21617":0,"21618":0,"21619":-1,"21620":0,"21621":-1,"21622":0,"21623":75,"21624":-1,"21625":-1,"21626":0,"21627":2350,"21628":-1,"21629":-1,"21630":0,"21631":2182,"21632":0,"21633":-1,"21634":0,"21635":0,"21636":-1,"21637":-1,"21638":2129,"21639":0,"21640":2438,"21641":2524,"21642":0,"21643":-1,"21644":-1,"21645":2273,"21646":2572,"21647":0,"21648":0,"21649":894,"21650":0,"21651":-1,"21652":-1,"21653":-1,"21654":102,"21655":407,"21656":-1,"21657":0,"21658":2330,"21659":-1,"21660":-1,"21661":0,"21662":-1,"21663":0,"21664":0,"21665":2148,"21666":0,"21667":-1,"21668":-1,"21669":-1,"21670":0,"21671":-1,"21672":-1,"21673":2664,"21674":0,"21675":-1,"21676":0,"21677":-1,"21678":2671,"21679":-1,"21680":2217,"21681":0,"21682":2536,"21683":0,"21684":2292,"21685":-1,"21686":0,"21687":-1,"21688":0,"21689":-1,"21690":-1,"21691":-1,"21692":-1,"21693":2514,"21694":0,"21695":-1,"21696":2483,"21697":0,"21698":0,"21699":-1,"21700":2589,"21701":0,"21702":-1,"21703":-1,"21704":706,"21705":130,"21706":-1,"21707":0,"21708":0,"21709":0,"21710":0,"21711":0,"21712":0,"21713":0,"21714":0,"21715":-1,"21716":-1,"21717":-1,"21718":0,"21719":75,"21720":-1,"21721":-1,"21722":0,"21723":-1,"21724":0,"21725":-1,"21726":-1,"21727":455,"21728":2265,"21729":0,"21730":-1,"21731":-1,"21732":-1,"21733":2316,"21734":0,"21735":0,"21736":-1,"21737":2015,"21738":0,"21739":-1,"21740":0,"21741":0,"21742":-1,"21743":2337,"21744":2287,"21745":2004,"21746":2471,"21747":-1,"21748":2220,"21749":-1,"21750":-1,"21751":0,"21752":2585,"21753":0,"21754":547,"21755":0,"21756":-1,"21757":2402,"21758":2473,"21759":-1,"21760":0,"21761":2128,"21762":0,"21763":0,"21764":2054,"21765":2638,"21766":0,"21767":262,"21768":0,"21769":36,"21770":0,"21771":0,"21772":17,"21773":0,"21774":0,"21775":0,"21776":639,"21777":0,"21778":906,"21779":2625,"21780":0,"21781":0,"21782":-1,"21783":-1,"21784":0,"21785":0,"21786":2032,"21787":0,"21788":42,"21789":0,"21790":0,"21791":2069,"21792":-1,"21793":0,"21794":2036,"21795":0,"21796":0,"21797":359,"21798":0,"21799":2582,"21800":-1,"21801":0,"21802":-1,"21803":0,"21804":2547,"21805":0,"21806":-1,"21807":-1,"21808":-1,"21809":0,"21810":2240,"21811":2672,"21812":0,"21813":0,"21814":-1,"21815":0,"21816":0,"21817":0,"21818":0,"21819":-1,"21820":0,"21821":246,"21822":-1,"21823":2009,"21824":0,"21825":0,"21826":0,"21827":-1,"21828":0,"21829":-1,"21830":514,"21831":0,"21832":2651,"21833":0,"21834":-1,"21835":-1,"21836":0,"21837":0,"21838":2357,"21839":2666,"21840":-1,"21841":0,"21842":-1,"21843":-1,"21844":0,"21845":0,"21846":-1,"21847":-1,"21848":2351,"21849":0,"21850":0,"21851":0,"21852":0,"21853":-1,"21854":-1,"21855":0,"21856":0,"21857":-1,"21858":0,"21859":-1,"21860":0,"21861":0,"21862":-1,"21863":0,"21864":-1,"21865":0,"21866":0,"21867":-1,"21868":2273,"21869":0,"21870":0,"21871":0,"21872":0,"21873":2412,"21874":0,"21875":-1,"21876":-1,"21877":2545,"21878":813,"21879":0,"21880":0,"21881":0,"21882":0,"21883":0,"21884":0,"21885":-1,"21886":0,"21887":-1,"21888":198,"21889":-1,"21890":-1,"21891":2331,"21892":-1,"21893":0,"21894":2376,"21895":-1,"21896":2603,"21897":0,"21898":-1,"21899":0,"21900":-1,"21901":2664,"21902":2515,"21903":0,"21904":-1,"21905":0,"21906":0,"21907":0,"21908":-1,"21909":2446,"21910":2251,"21911":645,"21912":280,"21913":0,"21914":-1,"21915":2211,"21916":2358,"21917":0,"21918":-1,"21919":0,"21920":2346,"21921":0,"21922":2656,"21923":-1,"21924":2670,"21925":-1,"21926":0,"21927":0,"21928":0,"21929":2152,"21930":2505,"21931":0,"21932":0,"21933":-1,"21934":0,"21935":-1,"21936":-1,"21937":-1,"21938":43,"21939":0,"21940":612,"21941":2597,"21942":0,"21943":0,"21944":-1,"21945":-1,"21946":-1,"21947":0,"21948":2260,"21949":0,"21950":0,"21951":2521,"21952":-1,"21953":0,"21954":-1,"21955":-1,"21956":0,"21957":0,"21958":-1,"21959":-1,"21960":397,"21961":462,"21962":0,"21963":0,"21964":0,"21965":0,"21966":-1,"21967":0,"21968":-1,"21969":-1,"21970":67,"21971":0,"21972":-1,"21973":-1,"21974":0,"21975":-1,"21976":0,"21977":0,"21978":455,"21979":0,"21980":0,"21981":2475,"21982":2364,"21983":-1,"21984":0,"21985":-1,"21986":61,"21987":-1,"21988":0,"21989":0,"21990":2020,"21991":0,"21992":2235,"21993":12,"21994":0,"21995":0,"21996":-1,"21997":-1,"21998":842,"21999":2180,"22000":-1,"22001":0,"22002":2608,"22003":2005,"22004":-1,"22005":0,"22006":0,"22007":602,"22008":0,"22009":0,"22010":-1,"22011":-1,"22012":2261,"22013":2434,"22014":2282,"22015":-1,"22016":0,"22017":0,"22018":0,"22019":-1,"22020":0,"22021":2495,"22022":-1,"22023":0,"22024":27,"22025":0,"22026":0,"22027":-1,"22028":2433,"22029":-1,"22030":0,"22031":-1,"22032":0,"22033":0,"22034":0,"22035":-1,"22036":2520,"22037":-1,"22038":0,"22039":-1,"22040":0,"22041":0,"22042":2590,"22043":0,"22044":2143,"22045":0,"22046":19,"22047":2537,"22048":-1,"22049":-1,"22050":-1,"22051":2247,"22052":0,"22053":0,"22054":0,"22055":0,"22056":0,"22057":2232,"22058":0,"22059":2285,"22060":0,"22061":0,"22062":0,"22063":0,"22064":2355,"22065":0,"22066":-1,"22067":-1,"22068":-1,"22069":0,"22070":0,"22071":0,"22072":0,"22073":0,"22074":0,"22075":0,"22076":0,"22077":-1,"22078":0,"22079":2612,"22080":0,"22081":0,"22082":0,"22083":0,"22084":0,"22085":0,"22086":-1,"22087":2298,"22088":-1,"22089":0,"22090":0,"22091":0,"22092":-1,"22093":-1,"22094":0,"22095":0,"22096":-1,"22097":-1,"22098":-1,"22099":-1,"22100":0,"22101":2679,"22102":-1,"22103":422,"22104":2566,"22105":0,"22106":-1,"22107":-1,"22108":0,"22109":0,"22110":0,"22111":-1,"22112":-1,"22113":0,"22114":2492,"22115":2365,"22116":0,"22117":0,"22118":-1,"22119":2534,"22120":0,"22121":-1,"22122":2351,"22123":0,"22124":0,"22125":0,"22126":0,"22127":0,"22128":0,"22129":0,"22130":0,"22131":-1,"22132":0,"22133":0,"22134":0,"22135":0,"22136":298,"22137":-1,"22138":-1,"22139":2386,"22140":0,"22141":2100,"22142":2609,"22143":-1,"22144":0,"22145":-1,"22146":0,"22147":0,"22148":-1,"22149":0,"22150":-1,"22151":0,"22152":0,"22153":0,"22154":0,"22155":0,"22156":-1,"22157":-1,"22158":-1,"22159":0,"22160":2236,"22161":303,"22162":-1,"22163":2308,"22164":142,"22165":2532,"22166":2327,"22167":-1,"22168":0,"22169":-1,"22170":0,"22171":2148,"22172":2603,"22173":0,"22174":0,"22175":0,"22176":0,"22177":300,"22178":-1,"22179":0,"22180":0,"22181":0,"22182":0,"22183":-1,"22184":0,"22185":-1,"22186":0,"22187":17,"22188":2410,"22189":0,"22190":0,"22191":-1,"22192":2200,"22193":0,"22194":2388,"22195":2103,"22196":-1,"22197":2177,"22198":2252,"22199":0,"22200":-1,"22201":0,"22202":0,"22203":0,"22204":0,"22205":2300,"22206":0,"22207":0,"22208":0,"22209":0,"22210":-1,"22211":0,"22212":0,"22213":0,"22214":0,"22215":0,"22216":0,"22217":0,"22218":0,"22219":-1,"22220":2098,"22221":0,"22222":2059,"22223":-1,"22224":0,"22225":0,"22226":0,"22227":2268,"22228":0,"22229":2132,"22230":2307,"22231":-1,"22232":0,"22233":2004,"22234":0,"22235":0,"22236":-1,"22237":0,"22238":0,"22239":2398,"22240":0,"22241":0,"22242":2396,"22243":-1,"22244":-1,"22245":2059,"22246":0,"22247":0,"22248":2425,"22249":-1,"22250":0,"22251":-1,"22252":0,"22253":2423,"22254":0,"22255":0,"22256":-1,"22257":-1,"22258":0,"22259":2086,"22260":0,"22261":126,"22262":-1,"22263":0,"22264":0,"22265":2346,"22266":-1,"22267":2667,"22268":-1,"22269":0,"22270":-1,"22271":0,"22272":0,"22273":2100,"22274":0,"22275":2420,"22276":-1,"22277":0,"22278":-1,"22279":0,"22280":402,"22281":2561,"22282":0,"22283":0,"22284":0,"22285":2457,"22286":2083,"22287":0,"22288":0,"22289":2662,"22290":-1,"22291":0,"22292":0,"22293":-1,"22294":-1,"22295":0,"22296":148,"22297":-1,"22298":0,"22299":-1,"22300":0,"22301":-1,"22302":-1,"22303":246,"22304":0,"22305":0,"22306":0,"22307":-1,"22308":0,"22309":-1,"22310":0,"22311":-1,"22312":0,"22313":0,"22314":-1,"22315":0,"22316":0,"22317":2606,"22318":2074,"22319":102,"22320":-1,"22321":2144,"22322":-1,"22323":0,"22324":2679,"22325":-1,"22326":0,"22327":0,"22328":0,"22329":1994,"22330":0,"22331":150,"22332":0,"22333":-1,"22334":0,"22335":0,"22336":-1,"22337":0,"22338":-1,"22339":2338,"22340":-1,"22341":8,"22342":0,"22343":-1,"22344":-1,"22345":0,"22346":2565,"22347":0,"22348":2653,"22349":0,"22350":0,"22351":0,"22352":-1,"22353":0,"22354":0,"22355":0,"22356":0,"22357":0,"22358":2412,"22359":0,"22360":-1,"22361":-1,"22362":2036,"22363":2099,"22364":0,"22365":-1,"22366":0,"22367":-1,"22368":-1,"22369":2315,"22370":0,"22371":-1,"22372":-1,"22373":2569,"22374":2409,"22375":-1,"22376":245,"22377":0,"22378":0,"22379":-1,"22380":0,"22381":0,"22382":-1,"22383":0,"22384":-1,"22385":-1,"22386":-1,"22387":2111,"22388":0,"22389":0,"22390":-1,"22391":2309,"22392":0,"22393":2367,"22394":0,"22395":2271,"22396":-1,"22397":353,"22398":-1,"22399":0,"22400":-1,"22401":0,"22402":2179,"22403":246,"22404":-1,"22405":-1,"22406":0,"22407":0,"22408":0,"22409":-1,"22410":-1,"22411":0,"22412":88,"22413":2153,"22414":0,"22415":0,"22416":0,"22417":0,"22418":2341,"22419":0,"22420":0,"22421":0,"22422":0,"22423":312,"22424":0,"22425":-1,"22426":-1,"22427":-1,"22428":0,"22429":0,"22430":0,"22431":2642,"22432":2640,"22433":0,"22434":-1,"22435":0,"22436":0,"22437":0,"22438":-1,"22439":2619,"22440":-1,"22441":0,"22442":0,"22443":2426,"22444":0,"22445":0,"22446":-1,"22447":0,"22448":0,"22449":2159,"22450":-1,"22451":0,"22452":0,"22453":-1,"22454":2469,"22455":0,"22456":-1,"22457":2401,"22458":0,"22459":2055,"22460":0,"22461":-1,"22462":-1,"22463":-1,"22464":2359,"22465":-1,"22466":-1,"22467":2637,"22468":0,"22469":0,"22470":0,"22471":-1,"22472":-1,"22473":-1,"22474":0,"22475":-1,"22476":0,"22477":0,"22478":0,"22479":0,"22480":2649,"22481":2595,"22482":0,"22483":0,"22484":-1,"22485":-1,"22486":0,"22487":-1,"22488":2533,"22489":0,"22490":-1,"22491":0,"22492":0,"22493":-1,"22494":-1,"22495":2223,"22496":2236,"22497":0,"22498":524,"22499":-1,"22500":0,"22501":0,"22502":-1,"22503":0,"22504":-1,"22505":2244,"22506":-1,"22507":0,"22508":0,"22509":0,"22510":-1,"22511":0,"22512":2551,"22513":-1,"22514":-1,"22515":-1,"22516":0,"22517":0,"22518":572,"22519":0,"22520":-1,"22521":0,"22522":2053,"22523":-1,"22524":-1,"22525":2255,"22526":0,"22527":0,"22528":-1,"22529":2530,"22530":-1,"22531":2609,"22532":2118,"22533":0,"22534":-1,"22535":-1,"22536":2536,"22537":2518,"22538":0,"22539":-1,"22540":0,"22541":2390,"22542":0,"22543":0,"22544":0,"22545":0,"22546":2510,"22547":-1,"22548":2370,"22549":-1,"22550":-1,"22551":298,"22552":0,"22553":2650,"22554":2602,"22555":0,"22556":-1,"22557":-1,"22558":-1,"22559":0,"22560":0,"22561":0,"22562":0,"22563":0,"22564":2604,"22565":2174,"22566":-1,"22567":0,"22568":0,"22569":-1,"22570":0,"22571":0,"22572":0,"22573":0,"22574":0,"22575":-1,"22576":0,"22577":-1,"22578":2032,"22579":2376,"22580":2031,"22581":-1,"22582":0,"22583":0,"22584":0,"22585":14,"22586":44,"22587":-1,"22588":0,"22589":0,"22590":2069,"22591":0,"22592":0,"22593":0,"22594":0,"22595":0,"22596":2429,"22597":-1,"22598":0,"22599":0,"22600":-1,"22601":0,"22602":2603,"22603":0,"22604":-1,"22605":0,"22606":0,"22607":0,"22608":-1,"22609":-1,"22610":2629,"22611":0,"22612":0,"22613":-1,"22614":0,"22615":2412,"22616":-1,"22617":-1,"22618":0,"22619":508,"22620":-1,"22621":0,"22622":-1,"22623":0,"22624":2576,"22625":-1,"22626":0,"22627":2189,"22628":-1,"22629":436,"22630":-1,"22631":0,"22632":-1,"22633":2458,"22634":-1,"22635":0,"22636":-1,"22637":-1,"22638":-1,"22639":-1,"22640":0,"22641":-1,"22642":-1,"22643":0,"22644":0,"22645":0,"22646":-1,"22647":0,"22648":0,"22649":0,"22650":0,"22651":2036,"22652":-1,"22653":2620,"22654":0,"22655":-1,"22656":-1,"22657":0,"22658":0,"22659":-1,"22660":-1,"22661":0,"22662":0,"22663":0,"22664":0,"22665":-1,"22666":2610,"22667":-1,"22668":0,"22669":0,"22670":341,"22671":-1,"22672":-1,"22673":0,"22674":0,"22675":0,"22676":-1,"22677":0,"22678":-1,"22679":-1,"22680":16,"22681":-1,"22682":-1,"22683":-1,"22684":0,"22685":0,"22686":-1,"22687":0,"22688":0,"22689":2310,"22690":2565,"22691":-1,"22692":-1,"22693":0,"22694":-1,"22695":-1,"22696":145,"22697":-1,"22698":2056,"22699":0,"22700":0,"22701":2660,"22702":-1,"22703":0,"22704":27,"22705":0,"22706":2346,"22707":-1,"22708":-1,"22709":2659,"22710":-1,"22711":0,"22712":0,"22713":0,"22714":2487,"22715":0,"22716":-1,"22717":2164,"22718":833,"22719":-1,"22720":2246,"22721":2205,"22722":-1,"22723":0,"22724":1996,"22725":0,"22726":0,"22727":0,"22728":-1,"22729":0,"22730":0,"22731":-1,"22732":0,"22733":0,"22734":0,"22735":2595,"22736":2464,"22737":0,"22738":598,"22739":0,"22740":-1,"22741":2344,"22742":2635,"22743":0,"22744":0,"22745":2341,"22746":0,"22747":0,"22748":2037,"22749":0,"22750":0,"22751":0,"22752":0,"22753":798,"22754":0,"22755":0,"22756":0,"22757":120,"22758":77,"22759":0,"22760":0,"22761":-1,"22762":2474,"22763":-1,"22764":-1,"22765":-1,"22766":-1,"22767":-1,"22768":-1,"22769":0,"22770":-1,"22771":0,"22772":102,"22773":46,"22774":2072,"22775":0,"22776":2276,"22777":2546,"22778":-1,"22779":0,"22780":-1,"22781":-1,"22782":0,"22783":137,"22784":0,"22785":-1,"22786":-1,"22787":-1,"22788":0,"22789":404,"22790":2331,"22791":-1,"22792":2309,"22793":-1,"22794":0,"22795":0,"22796":0,"22797":0,"22798":0,"22799":0,"22800":2167,"22801":2103,"22802":-1,"22803":738,"22804":-1,"22805":2023,"22806":-1,"22807":2653,"22808":2250,"22809":-1,"22810":0,"22811":2498,"22812":2513,"22813":0,"22814":0,"22815":436,"22816":126,"22817":-1,"22818":-1,"22819":-1,"22820":-1,"22821":-1,"22822":2050,"22823":2630,"22824":0,"22825":0,"22826":-1,"22827":2132,"22828":0,"22829":2015,"22830":0,"22831":-1,"22832":0,"22833":2403,"22834":2085,"22835":2472,"22836":2243,"22837":0,"22838":0,"22839":0,"22840":0,"22841":0,"22842":0,"22843":-1,"22844":0,"22845":0,"22846":-1,"22847":-1,"22848":308,"22849":-1,"22850":0,"22851":-1,"22852":-1,"22853":0,"22854":179,"22855":-1,"22856":0,"22857":-1,"22858":2626,"22859":0,"22860":0,"22861":2306,"22862":2217,"22863":-1,"22864":-1,"22865":-1,"22866":2384,"22867":691,"22868":0,"22869":0,"22870":-1,"22871":2410,"22872":0,"22873":-1,"22874":0,"22875":0,"22876":0,"22877":-1,"22878":0,"22879":0,"22880":0,"22881":0,"22882":0,"22883":2587,"22884":-1,"22885":0,"22886":-1,"22887":0,"22888":2051,"22889":-1,"22890":0,"22891":0,"22892":0,"22893":2580,"22894":2380,"22895":-1,"22896":-1,"22897":0,"22898":-1,"22899":2227,"22900":0,"22901":-1,"22902":0,"22903":461,"22904":-1,"22905":2605,"22906":0,"22907":2632,"22908":0,"22909":-1,"22910":-1,"22911":2231,"22912":0,"22913":0,"22914":2448,"22915":2390,"22916":2605,"22917":701,"22918":-1,"22919":0,"22920":-1,"22921":0,"22922":2158,"22923":-1,"22924":-1,"22925":-1,"22926":0,"22927":2465,"22928":-1,"22929":-1,"22930":0,"22931":43,"22932":0,"22933":0,"22934":0,"22935":-1,"22936":-1,"22937":-1,"22938":312,"22939":0,"22940":407,"22941":2117,"22942":0,"22943":0,"22944":0,"22945":0,"22946":-1,"22947":2167,"22948":0,"22949":0,"22950":-1,"22951":-1,"22952":0,"22953":2596,"22954":2201,"22955":0,"22956":0,"22957":-1,"22958":-1,"22959":80,"22960":-1,"22961":0,"22962":0,"22963":-1,"22964":0,"22965":-1,"22966":0,"22967":0,"22968":-1,"22969":-1,"22970":2008,"22971":924,"22972":0,"22973":2122,"22974":0,"22975":2545,"22976":-1,"22977":0,"22978":-1,"22979":-1,"22980":2379,"22981":-1,"22982":-1,"22983":237,"22984":0,"22985":0,"22986":0,"22987":-1,"22988":1994,"22989":0,"22990":2012,"22991":0,"22992":325,"22993":-1,"22994":0,"22995":-1,"22996":0,"22997":2506,"22998":-1,"22999":2371,"23000":0,"23001":0,"23002":2182,"23003":-1,"23004":0,"23005":0,"23006":0,"23007":-1,"23008":-1,"23009":2378,"23010":-1,"23011":0,"23012":0,"23013":2308,"23014":0,"23015":2243,"23016":-1,"23017":0,"23018":0,"23019":0,"23020":2540,"23021":-1,"23022":533,"23023":0,"23024":0,"23025":-1,"23026":-1,"23027":-1,"23028":-1,"23029":0,"23030":-1,"23031":0,"23032":-1,"23033":-1,"23034":0,"23035":-1,"23036":-1,"23037":2554,"23038":-1,"23039":-1,"23040":0,"23041":2576,"23042":-1,"23043":0,"23044":-1,"23045":-1,"23046":0,"23047":-1,"23048":0,"23049":2585,"23050":0,"23051":2364,"23052":0,"23053":0,"23054":0,"23055":168,"23056":0,"23057":2018,"23058":0,"23059":-1,"23060":0,"23061":2270,"23062":2002,"23063":-1,"23064":2525,"23065":2579,"23066":598,"23067":0,"23068":0,"23069":2143,"23070":2672,"23071":0,"23072":0,"23073":2304,"23074":2069,"23075":-1,"23076":0,"23077":2555,"23078":0,"23079":-1,"23080":-1,"23081":86,"23082":104,"23083":0,"23084":2449,"23085":-1,"23086":0,"23087":0,"23088":0,"23089":-1,"23090":0,"23091":0,"23092":-1,"23093":2029,"23094":-1,"23095":0,"23096":0,"23097":-1,"23098":58,"23099":-1,"23100":2027,"23101":496,"23102":-1,"23103":0,"23104":-1,"23105":0,"23106":0,"23107":2373,"23108":404,"23109":-1,"23110":2680,"23111":-1,"23112":0,"23113":436,"23114":-1,"23115":0,"23116":2071,"23117":0,"23118":-1,"23119":0,"23120":0,"23121":-1,"23122":2495,"23123":0,"23124":-1,"23125":0,"23126":0,"23127":0,"23128":2328,"23129":-1,"23130":-1,"23131":0,"23132":2101,"23133":0,"23134":0,"23135":0,"23136":0,"23137":0,"23138":0,"23139":2221,"23140":2468,"23141":0,"23142":598,"23143":2057,"23144":2646,"23145":-1,"23146":2308,"23147":-1,"23148":2057,"23149":-1,"23150":10,"23151":-1,"23152":-1,"23153":170,"23154":0,"23155":0,"23156":2252,"23157":-1,"23158":-1,"23159":-1,"23160":2364,"23161":2098,"23162":0,"23163":0,"23164":0,"23165":141,"23166":-1,"23167":-1,"23168":0,"23169":0,"23170":0,"23171":0,"23172":-1,"23173":-1,"23174":2249,"23175":0,"23176":2639,"23177":0,"23178":1996,"23179":0,"23180":-1,"23181":-1,"23182":0,"23183":2319,"23184":2007,"23185":0,"23186":2284,"23187":0,"23188":849,"23189":0,"23190":0,"23191":2644,"23192":0,"23193":0,"23194":-1,"23195":455,"23196":2640,"23197":0,"23198":-1,"23199":2425,"23200":0,"23201":-1,"23202":-1,"23203":0,"23204":0,"23205":362,"23206":705,"23207":2554,"23208":-1,"23209":0,"23210":0,"23211":0,"23212":-1,"23213":0,"23214":-1,"23215":2559,"23216":58,"23217":2536,"23218":2595,"23219":0,"23220":-1,"23221":0,"23222":0,"23223":0,"23224":0,"23225":-1,"23226":2274,"23227":0,"23228":101,"23229":0,"23230":0,"23231":-1,"23232":2043,"23233":-1,"23234":0,"23235":-1,"23236":-1,"23237":0,"23238":0,"23239":281,"23240":-1,"23241":-1,"23242":-1,"23243":0,"23244":-1,"23245":2014,"23246":0,"23247":2609,"23248":0,"23249":2537,"23250":2199,"23251":0,"23252":0,"23253":0,"23254":-1,"23255":-1,"23256":-1,"23257":-1,"23258":0,"23259":0,"23260":0,"23261":2059,"23262":-1,"23263":-1,"23264":2105,"23265":-1,"23266":0,"23267":0,"23268":0,"23269":-1,"23270":2240,"23271":0,"23272":0,"23273":0,"23274":2650,"23275":2615,"23276":0,"23277":33,"23278":0,"23279":-1,"23280":0,"23281":-1,"23282":-1,"23283":0,"23284":-1,"23285":-1,"23286":-1,"23287":2309,"23288":-1,"23289":0,"23290":0,"23291":-1,"23292":0,"23293":0,"23294":0,"23295":-1,"23296":2315,"23297":0,"23298":0,"23299":2602,"23300":2266,"23301":0,"23302":0,"23303":2172,"23304":-1,"23305":0,"23306":0,"23307":-1,"23308":2606,"23309":2503,"23310":120,"23311":2407,"23312":-1,"23313":0,"23314":-1,"23315":0,"23316":-1,"23317":2176,"23318":0,"23319":1998,"23320":2466,"23321":2370,"23322":-1,"23323":2611,"23324":2381,"23325":0,"23326":-1,"23327":2557,"23328":909,"23329":2138,"23330":0,"23331":-1,"23332":0,"23333":-1,"23334":-1,"23335":0,"23336":2510,"23337":0,"23338":0,"23339":-1,"23340":0,"23341":2383,"23342":-1,"23343":460,"23344":0,"23345":2024,"23346":2451,"23347":2626,"23348":-1,"23349":0,"23350":0,"23351":333,"23352":34,"23353":-1,"23354":0,"23355":2557,"23356":-1,"23357":136,"23358":2491,"23359":-1,"23360":0,"23361":0,"23362":-1,"23363":219,"23364":0,"23365":0,"23366":0,"23367":-1,"23368":0,"23369":0,"23370":-1,"23371":0,"23372":2539,"23373":0,"23374":49,"23375":0,"23376":2284,"23377":2123,"23378":0,"23379":-1,"23380":2438,"23381":0,"23382":-1,"23383":-1,"23384":0,"23385":0,"23386":0,"23387":0,"23388":-1,"23389":0,"23390":0,"23391":0,"23392":2071,"23393":2141,"23394":-1,"23395":2387,"23396":0,"23397":0,"23398":40,"23399":-1,"23400":0,"23401":0,"23402":2502,"23403":0,"23404":0,"23405":0,"23406":0,"23407":0,"23408":0,"23409":2520,"23410":-1,"23411":0,"23412":-1,"23413":-1,"23414":0,"23415":2062,"23416":2549,"23417":0,"23418":0,"23419":1998,"23420":2493,"23421":0,"23422":-1,"23423":0,"23424":2402,"23425":0,"23426":-1,"23427":-1,"23428":2359,"23429":-1,"23430":0,"23431":-1,"23432":-1,"23433":0,"23434":-1,"23435":0,"23436":2679,"23437":-1,"23438":11,"23439":0,"23440":-1,"23441":0,"23442":0,"23443":12,"23444":0,"23445":2017,"23446":0,"23447":2602,"23448":0,"23449":-1,"23450":2264,"23451":0,"23452":0,"23453":0,"23454":-1,"23455":0,"23456":-1,"23457":0,"23458":154,"23459":0,"23460":-1,"23461":2046,"23462":-1,"23463":-1,"23464":2461,"23465":2220,"23466":2619,"23467":-1,"23468":0,"23469":0,"23470":0,"23471":-1,"23472":2421,"23473":2101,"23474":-1,"23475":2077,"23476":-1,"23477":0,"23478":287,"23479":0,"23480":-1,"23481":2095,"23482":2360,"23483":0,"23484":-1,"23485":0,"23486":0,"23487":0,"23488":28,"23489":156,"23490":0,"23491":350,"23492":0,"23493":0,"23494":0,"23495":0,"23496":64,"23497":-1,"23498":-1,"23499":2215,"23500":0,"23501":0,"23502":0,"23503":-1,"23504":2127,"23505":2360,"23506":524,"23507":0,"23508":2588,"23509":-1,"23510":-1,"23511":-1,"23512":0,"23513":-1,"23514":0,"23515":-1,"23516":0,"23517":-1,"23518":0,"23519":-1,"23520":2202,"23521":-1,"23522":-1,"23523":0,"23524":0,"23525":-1,"23526":0,"23527":-1,"23528":0,"23529":31,"23530":0,"23531":-1,"23532":0,"23533":0,"23534":-1,"23535":0,"23536":0,"23537":0,"23538":0,"23539":136,"23540":0,"23541":0,"23542":0,"23543":0,"23544":0,"23545":-1,"23546":0,"23547":0,"23548":-1,"23549":0,"23550":0,"23551":0,"23552":0,"23553":-1,"23554":-1,"23555":0,"23556":-1,"23557":-1,"23558":0,"23559":0,"23560":0,"23561":0,"23562":0,"23563":483,"23564":-1,"23565":0,"23566":2464,"23567":0,"23568":-1,"23569":-1,"23570":0,"23571":-1,"23572":0,"23573":2171,"23574":0,"23575":2166,"23576":0,"23577":-1,"23578":-1,"23579":0,"23580":-1,"23581":2051,"23582":-1,"23583":0,"23584":2576,"23585":-1,"23586":2009,"23587":-1,"23588":0,"23589":261,"23590":2089,"23591":2476,"23592":-1,"23593":0,"23594":-1,"23595":0,"23596":0,"23597":-1,"23598":-1,"23599":2293,"23600":2299,"23601":0,"23602":0,"23603":-1,"23604":0,"23605":0,"23606":2457,"23607":-1,"23608":2415,"23609":-1,"23610":-1,"23611":-1,"23612":-1,"23613":2299,"23614":0,"23615":-1,"23616":6,"23617":-1,"23618":2189,"23619":0,"23620":0,"23621":0,"23622":-1,"23623":245,"23624":-1,"23625":0,"23626":-1,"23627":-1,"23628":2490,"23629":0,"23630":0,"23631":-1,"23632":-1,"23633":2308,"23634":2095,"23635":2526,"23636":559,"23637":2381,"23638":0,"23639":0,"23640":0,"23641":-1,"23642":0,"23643":150,"23644":0,"23645":0,"23646":-1,"23647":0,"23648":-1,"23649":2651,"23650":-1,"23651":2566,"23652":-1,"23653":-1,"23654":0,"23655":0,"23656":-1,"23657":0,"23658":-1,"23659":2028,"23660":0,"23661":2268,"23662":2047,"23663":0,"23664":-1,"23665":2333,"23666":2109,"23667":0,"23668":924,"23669":0,"23670":2329,"23671":0,"23672":-1,"23673":0,"23674":0,"23675":2410,"23676":2356,"23677":2575,"23678":813,"23679":2116,"23680":0,"23681":261,"23682":0,"23683":0,"23684":-1,"23685":0,"23686":-1,"23687":2200,"23688":0,"23689":2483,"23690":-1,"23691":0,"23692":0,"23693":2573,"23694":0,"23695":0,"23696":-1,"23697":-1,"23698":2160,"23699":0,"23700":2325,"23701":2641,"23702":2604,"23703":-1,"23704":0,"23705":-1,"23706":602,"23707":0,"23708":2181,"23709":-1,"23710":0,"23711":-1,"23712":0,"23713":-1,"23714":-1,"23715":-1,"23716":0,"23717":0,"23718":0,"23719":2097,"23720":-1,"23721":0,"23722":2543,"23723":2180,"23724":0,"23725":0,"23726":0,"23727":0,"23728":40,"23729":2600,"23730":-1,"23731":-1,"23732":0,"23733":0,"23734":0,"23735":0,"23736":0,"23737":2239,"23738":2466,"23739":0,"23740":0,"23741":-1,"23742":159,"23743":2216,"23744":0,"23745":2483,"23746":2621,"23747":2454,"23748":-1,"23749":2106,"23750":-1,"23751":0,"23752":2365,"23753":-1,"23754":-1,"23755":0,"23756":0,"23757":44,"23758":-1,"23759":0,"23760":88,"23761":-1,"23762":-1,"23763":617,"23764":0,"23765":2254,"23766":2675,"23767":404,"23768":0,"23769":693,"23770":-1,"23771":2396,"23772":0,"23773":0,"23774":2310,"23775":-1,"23776":-1,"23777":0,"23778":0,"23779":0,"23780":0,"23781":0,"23782":2235,"23783":0,"23784":0,"23785":-1,"23786":1997,"23787":0,"23788":-1,"23789":0,"23790":-1,"23791":2573,"23792":0,"23793":-1,"23794":0,"23795":-1,"23796":-1,"23797":2309,"23798":0,"23799":0,"23800":42,"23801":199,"23802":0,"23803":603,"23804":2335,"23805":2419,"23806":0,"23807":0,"23808":-1,"23809":-1,"23810":0,"23811":-1,"23812":-1,"23813":-1,"23814":0,"23815":0,"23816":0,"23817":0,"23818":-1,"23819":2381,"23820":0,"23821":-1,"23822":-1,"23823":0,"23824":2527,"23825":-1,"23826":2520,"23827":0,"23828":-1,"23829":0,"23830":0,"23831":0,"23832":-1,"23833":864,"23834":2374,"23835":11,"23836":-1,"23837":2416,"23838":0,"23839":2167,"23840":0,"23841":-1,"23842":-1,"23843":0,"23844":0,"23845":-1,"23846":0,"23847":-1,"23848":-1,"23849":-1,"23850":-1,"23851":0,"23852":0,"23853":-1,"23854":0,"23855":0,"23856":-1,"23857":0,"23858":2485,"23859":0,"23860":-1,"23861":2005,"23862":-1,"23863":2126,"23864":-1,"23865":327,"23866":2316,"23867":2644,"23868":2147,"23869":0,"23870":43,"23871":0,"23872":0,"23873":0,"23874":-1,"23875":0,"23876":0,"23877":0,"23878":-1,"23879":0,"23880":0,"23881":0,"23882":-1,"23883":-1,"23884":0,"23885":2669,"23886":0,"23887":0,"23888":0,"23889":0,"23890":2305,"23891":0,"23892":-1,"23893":0,"23894":-1,"23895":-1,"23896":0,"23897":0,"23898":0,"23899":0,"23900":-1,"23901":0,"23902":0,"23903":0,"23904":262,"23905":2133,"23906":-1,"23907":0,"23908":20,"23909":-1,"23910":0,"23911":2289,"23912":-1,"23913":0,"23914":0,"23915":-1,"23916":-1,"23917":0,"23918":-1,"23919":-1,"23920":0,"23921":-1,"23922":0,"23923":0,"23924":0,"23925":-1,"23926":0,"23927":0,"23928":0,"23929":0,"23930":-1,"23931":0,"23932":0,"23933":2544,"23934":0,"23935":0,"23936":2401,"23937":-1,"23938":-1,"23939":612,"23940":0,"23941":2497,"23942":98,"23943":614,"23944":0,"23945":0,"23946":0,"23947":2618,"23948":0,"23949":2267,"23950":-1,"23951":0,"23952":-1,"23953":0,"23954":0,"23955":0,"23956":0,"23957":-1,"23958":2185,"23959":2392,"23960":0,"23961":0,"23962":0,"23963":0,"23964":2194,"23965":0,"23966":2290,"23967":64,"23968":-1,"23969":2281,"23970":0,"23971":2179,"23972":0,"23973":2402,"23974":0,"23975":0,"23976":2669,"23977":-1,"23978":0,"23979":2269,"23980":0,"23981":-1,"23982":0,"23983":578,"23984":0,"23985":-1,"23986":-1,"23987":2347,"23988":0,"23989":0,"23990":-1,"23991":0,"23992":0,"23993":26,"23994":26,"23995":0,"23996":0,"23997":0,"23998":-1,"23999":2253,"24000":0,"24001":0,"24002":0,"24003":909,"24004":0,"24005":0,"24006":0,"24007":0,"24008":-1,"24009":0,"24010":0,"24011":0,"24012":362,"24013":0,"24014":0,"24015":-1,"24016":2677,"24017":2364,"24018":-1,"24019":2586,"24020":2095,"24021":2418,"24022":2295,"24023":-1,"24024":2280,"24025":0,"24026":2287,"24027":2368,"24028":333,"24029":-1,"24030":0,"24031":-1,"24032":0,"24033":2403,"24034":-1,"24035":-1,"24036":0,"24037":663,"24038":-1,"24039":0,"24040":0,"24041":2240,"24042":-1,"24043":0,"24044":-1,"24045":0,"24046":0,"24047":0,"24048":0,"24049":2222,"24050":0,"24051":0,"24052":14,"24053":0,"24054":-1,"24055":2130,"24056":0,"24057":0,"24058":-1,"24059":-1,"24060":0,"24061":2460,"24062":-1,"24063":0,"24064":-1,"24065":-1,"24066":-1,"24067":0,"24068":0,"24069":2086,"24070":-1,"24071":-1,"24072":-1,"24073":2352,"24074":2094,"24075":0,"24076":-1,"24077":-1,"24078":-1,"24079":0,"24080":0,"24081":2237,"24082":0,"24083":2640,"24084":0,"24085":-1,"24086":-1,"24087":0,"24088":2401,"24089":-1,"24090":0,"24091":2079,"24092":0,"24093":-1,"24094":2005,"24095":0,"24096":-1,"24097":-1,"24098":-1,"24099":2034,"24100":0,"24101":2472,"24102":5,"24103":0,"24104":0,"24105":0,"24106":0,"24107":0,"24108":2633,"24109":2612,"24110":2053,"24111":0,"24112":602,"24113":2602,"24114":0,"24115":0,"24116":2196,"24117":0,"24118":604,"24119":2434,"24120":0,"24121":0,"24122":0,"24123":0,"24124":2440,"24125":0,"24126":0,"24127":-1,"24128":-1,"24129":0,"24130":0,"24131":0,"24132":0,"24133":0,"24134":-1,"24135":-1,"24136":-1,"24137":2678,"24138":11,"24139":0,"24140":0,"24141":0,"24142":-1,"24143":0,"24144":0,"24145":-1,"24146":-1,"24147":0,"24148":2482,"24149":-1,"24150":2309,"24151":0,"24152":-1,"24153":-1,"24154":0,"24155":0,"24156":0,"24157":2305,"24158":0,"24159":0,"24160":0,"24161":-1,"24162":-1,"24163":0,"24164":-1,"24165":0,"24166":-1,"24167":0,"24168":0,"24169":0,"24170":0,"24171":-1,"24172":2175,"24173":0,"24174":0,"24175":-1,"24176":0,"24177":0,"24178":2505,"24179":2075,"24180":0,"24181":-1,"24182":0,"24183":0,"24184":-1,"24185":-1,"24186":-1,"24187":2088,"24188":-1,"24189":-1,"24190":0,"24191":2022,"24192":0,"24193":0,"24194":0,"24195":-1,"24196":0,"24197":0,"24198":-1,"24199":40,"24200":0,"24201":-1,"24202":2182,"24203":2218,"24204":-1,"24205":-1,"24206":2149,"24207":2586,"24208":0,"24209":-1,"24210":-1,"24211":-1,"24212":0,"24213":-1,"24214":0,"24215":-1,"24216":0,"24217":-1,"24218":0,"24219":0,"24220":-1,"24221":-1,"24222":0,"24223":-1,"24224":2535,"24225":0,"24226":-1,"24227":104,"24228":2019,"24229":0,"24230":0,"24231":0,"24232":-1,"24233":2529,"24234":0,"24235":0,"24236":-1,"24237":2456,"24238":-1,"24239":0,"24240":2367,"24241":864,"24242":-1,"24243":-1,"24244":2352,"24245":-1,"24246":0,"24247":39,"24248":-1,"24249":-1,"24250":-1,"24251":0,"24252":2281,"24253":178,"24254":2622,"24255":0,"24256":2321,"24257":-1,"24258":0,"24259":-1,"24260":0,"24261":-1,"24262":0,"24263":0,"24264":2025,"24265":0,"24266":-1,"24267":0,"24268":0,"24269":2169,"24270":2419,"24271":-1,"24272":572,"24273":705,"24274":2645,"24275":2464,"24276":-1,"24277":0,"24278":2335,"24279":602,"24280":0,"24281":2635,"24282":0,"24283":-1,"24284":2462,"24285":-1,"24286":0,"24287":2577,"24288":0,"24289":0,"24290":0,"24291":787,"24292":2613,"24293":-1,"24294":0,"24295":-1,"24296":0,"24297":0,"24298":0,"24299":-1,"24300":-1,"24301":2582,"24302":0,"24303":2453,"24304":2576,"24305":0,"24306":0,"24307":2483,"24308":2550,"24309":0,"24310":2500,"24311":-1,"24312":-1,"24313":0,"24314":2496,"24315":-1,"24316":0,"24317":0,"24318":0,"24319":0,"24320":2578,"24321":-1,"24322":-1,"24323":472,"24324":-1,"24325":0,"24326":0,"24327":612,"24328":0,"24329":0,"24330":0,"24331":-1,"24332":-1,"24333":0,"24334":0,"24335":2463,"24336":2542,"24337":-1,"24338":0,"24339":0,"24340":0,"24341":0,"24342":2298,"24343":0,"24344":0,"24345":-1,"24346":0,"24347":0,"24348":2161,"24349":0,"24350":-1,"24351":2554,"24352":2568,"24353":0,"24354":0,"24355":-1,"24356":2376,"24357":0,"24358":-1,"24359":2056,"24360":2127,"24361":-1,"24362":170,"24363":0,"24364":0,"24365":-1,"24366":0,"24367":126,"24368":2480,"24369":-1,"24370":0,"24371":2298,"24372":-1,"24373":2122,"24374":0,"24375":-1,"24376":2186,"24377":-1,"24378":0,"24379":0,"24380":2140,"24381":0,"24382":0,"24383":75,"24384":0,"24385":2170,"24386":0,"24387":0,"24388":612,"24389":0,"24390":0,"24391":-1,"24392":0,"24393":-1,"24394":-1,"24395":0,"24396":0,"24397":2184,"24398":-1,"24399":2310,"24400":2155,"24401":0,"24402":2319,"24403":-1,"24404":0,"24405":0,"24406":0,"24407":0,"24408":462,"24409":0,"24410":0,"24411":0,"24412":0,"24413":0,"24414":0,"24415":2581,"24416":-1,"24417":0,"24418":0,"24419":2123,"24420":0,"24421":0,"24422":0,"24423":0,"24424":0,"24425":219,"24426":-1,"24427":0,"24428":-1,"24429":-1,"24430":-1,"24431":0,"24432":2276,"24433":-1,"24434":1994,"24435":0,"24436":-1,"24437":0,"24438":0,"24439":-1,"24440":0,"24441":2575,"24442":0,"24443":-1,"24444":-1,"24445":0,"24446":0,"24447":2072,"24448":0,"24449":-1,"24450":0,"24451":0,"24452":0,"24453":0,"24454":2042,"24455":2057,"24456":2600,"24457":2090,"24458":0,"24459":0,"24460":-1,"24461":2482,"24462":0,"24463":0,"24464":0,"24465":-1,"24466":-1,"24467":0,"24468":0,"24469":0,"24470":0,"24471":0,"24472":2149,"24473":0,"24474":0,"24475":-1,"24476":-1,"24477":-1,"24478":0,"24479":-1,"24480":2485,"24481":2406,"24482":0,"24483":0,"24484":1997,"24485":2334,"24486":0,"24487":2350,"24488":2232,"24489":0,"24490":0,"24491":-1,"24492":0,"24493":0,"24494":0,"24495":0,"24496":209,"24497":-1,"24498":2145,"24499":0,"24500":-1,"24501":0,"24502":0,"24503":0,"24504":-1,"24505":10,"24506":0,"24507":0,"24508":27,"24509":0,"24510":0,"24511":-1,"24512":-1,"24513":2185,"24514":0,"24515":2141,"24516":0,"24517":0,"24518":0,"24519":0,"24520":-1,"24521":2622,"24522":-1,"24523":2045,"24524":-1,"24525":-1,"24526":-1,"24527":-1,"24528":-1,"24529":0,"24530":0,"24531":0,"24532":0,"24533":2257,"24534":0,"24535":0,"24536":2121,"24537":0,"24538":-1,"24539":-1,"24540":0,"24541":-1,"24542":0,"24543":0,"24544":0,"24545":170,"24546":-1,"24547":-1,"24548":-1,"24549":-1,"24550":-1,"24551":31,"24552":2001,"24553":0,"24554":0,"24555":-1,"24556":2044,"24557":-1,"24558":0,"24559":-1,"24560":-1,"24561":-1,"24562":-1,"24563":2333,"24564":2138,"24565":0,"24566":706,"24567":-1,"24568":2065,"24569":0,"24570":2394,"24571":-1,"24572":0,"24573":2571,"24574":738,"24575":0,"24576":329,"24577":0,"24578":46,"24579":0,"24580":-1,"24581":0,"24582":2099,"24583":-1,"24584":0,"24585":2466,"24586":0,"24587":9,"24588":2097,"24589":11,"24590":2554,"24591":-1,"24592":0,"24593":-1,"24594":-1,"24595":-1,"24596":-1,"24597":0,"24598":-1,"24599":0,"24600":0,"24601":2478,"24602":-1,"24603":-1,"24604":2318,"24605":-1,"24606":-1,"24607":0,"24608":0,"24609":-1,"24610":0,"24611":2406,"24612":2125,"24613":0,"24614":0,"24615":0,"24616":0,"24617":-1,"24618":2575,"24619":0,"24620":0,"24621":27,"24622":0,"24623":0,"24624":-1,"24625":-1,"24626":2100,"24627":0,"24628":0,"24629":-1,"24630":-1,"24631":2053,"24632":0,"24633":0,"24634":2054,"24635":0,"24636":0,"24637":-1,"24638":-1,"24639":547,"24640":0,"24641":2281,"24642":-1,"24643":-1,"24644":2220,"24645":0,"24646":0,"24647":0,"24648":2609,"24649":2441,"24650":0,"24651":-1,"24652":-1,"24653":2226,"24654":2107,"24655":0,"24656":0,"24657":2043,"24658":2580,"24659":0,"24660":362,"24661":-1,"24662":-1,"24663":-1,"24664":-1,"24665":0,"24666":533,"24667":462,"24668":-1,"24669":-1,"24670":0,"24671":2273,"24672":25,"24673":350,"24674":0,"24675":0,"24676":0,"24677":0,"24678":-1,"24679":0,"24680":0,"24681":0,"24682":0,"24683":2105,"24684":0,"24685":-1,"24686":-1,"24687":2671,"24688":0,"24689":0,"24690":-1,"24691":-1,"24692":0,"24693":-1,"24694":33,"24695":-1,"24696":-1,"24697":-1,"24698":-1,"24699":0,"24700":-1,"24701":2376,"24702":0,"24703":0,"24704":0,"24705":0,"24706":0,"24707":0,"24708":0,"24709":0,"24710":2641,"24711":2000,"24712":0,"24713":2645,"24714":2493,"24715":-1,"24716":0,"24717":0,"24718":-1,"24719":0,"24720":0,"24721":0,"24722":0,"24723":0,"24724":-1,"24725":2591,"24726":0,"24727":0,"24728":0,"24729":-1,"24730":-1,"24731":-1,"24732":572,"24733":-1,"24734":2415,"24735":0,"24736":-1,"24737":0,"24738":0,"24739":2122,"24740":0,"24741":2180,"24742":0,"24743":-1,"24744":0,"24745":2061,"24746":2355,"24747":2455,"24748":2524,"24749":0,"24750":0,"24751":0,"24752":-1,"24753":0,"24754":2309,"24755":0,"24756":2618,"24757":0,"24758":2448,"24759":262,"24760":0,"24761":0,"24762":-1,"24763":0,"24764":-1,"24765":-1,"24766":-1,"24767":0,"24768":0,"24769":0,"24770":2184,"24771":0,"24772":0,"24773":-1,"24774":0,"24775":0,"24776":0,"24777":2247,"24778":-1,"24779":0,"24780":2198,"24781":0,"24782":-1,"24783":705,"24784":-1,"24785":2268,"24786":2334,"24787":0,"24788":-1,"24789":2514,"24790":-1,"24791":-1,"24792":0,"24793":11,"24794":0,"24795":2531,"24796":-1,"24797":-1,"24798":67,"24799":65,"24800":2418,"24801":0,"24802":667,"24803":0,"24804":2671,"24805":2157,"24806":0,"24807":0,"24808":-1,"24809":0,"24810":0,"24811":942,"24812":0,"24813":0,"24814":-1,"24815":0,"24816":-1,"24817":0,"24818":2167,"24819":0,"24820":0,"24821":26,"24822":-1,"24823":-1,"24824":0,"24825":2251,"24826":2609,"24827":-1,"24828":2620,"24829":9,"24830":2546,"24831":2369,"24832":-1,"24833":-1,"24834":2409,"24835":-1,"24836":0,"24837":2675,"24838":0,"24839":0,"24840":0,"24841":443,"24842":909,"24843":0,"24844":2577,"24845":2500,"24846":0,"24847":2015,"24848":-1,"24849":-1,"24850":-1,"24851":-1,"24852":0,"24853":2349,"24854":909,"24855":2352,"24856":-1,"24857":0,"24858":2536,"24859":-1,"24860":-1,"24861":2459,"24862":0,"24863":0,"24864":0,"24865":-1,"24866":0,"24867":0,"24868":-1,"24869":-1,"24870":0,"24871":0,"24872":0,"24873":-1,"24874":88,"24875":0,"24876":2399,"24877":2420,"24878":-1,"24879":-1,"24880":-1,"24881":2415,"24882":0,"24883":0,"24884":2249,"24885":0,"24886":-1,"24887":0,"24888":-1,"24889":449,"24890":0,"24891":0,"24892":0,"24893":-1,"24894":11,"24895":-1,"24896":0,"24897":0,"24898":2050,"24899":0,"24900":2662,"24901":0,"24902":2564,"24903":0,"24904":0,"24905":-1,"24906":-1,"24907":0,"24908":-1,"24909":-1,"24910":0,"24911":-1,"24912":2649,"24913":2570,"24914":2523,"24915":168,"24916":86,"24917":0,"24918":2665,"24919":2636,"24920":0,"24921":0,"24922":0,"24923":2541,"24924":0,"24925":2269,"24926":-1,"24927":2388,"24928":-1,"24929":-1,"24930":-1,"24931":0,"24932":669,"24933":0,"24934":25,"24935":2508,"24936":-1,"24937":-1,"24938":-1,"24939":-1,"24940":0,"24941":0,"24942":2283,"24943":-1,"24944":-1,"24945":0,"24946":-1,"24947":0,"24948":-1,"24949":2664,"24950":598,"24951":2621,"24952":2324,"24953":-1,"24954":-1,"24955":0,"24956":0,"24957":2583,"24958":598,"24959":2172,"24960":-1,"24961":0,"24962":2626,"24963":-1,"24964":0,"24965":-1,"24966":0,"24967":0,"24968":-1,"24969":-1,"24970":0,"24971":-1,"24972":0,"24973":0,"24974":0,"24975":0,"24976":0,"24977":2247,"24978":109,"24979":2371,"24980":0,"24981":2511,"24982":0,"24983":2636,"24984":-1,"24985":-1,"24986":2188,"24987":-1,"24988":-1,"24989":-1,"24990":2108,"24991":2490,"24992":0,"24993":2535,"24994":2076,"24995":-1,"24996":-1,"24997":0,"24998":-1,"24999":0,"25000":-1,"25001":0,"25002":667,"25003":-1,"25004":220,"25005":-1,"25006":0,"25007":2091,"25008":0,"25009":0,"25010":0,"25011":2158,"25012":-1,"25013":864,"25014":0,"25015":-1,"25016":-1,"25017":0,"25018":2086,"25019":0,"25020":-1,"25021":0,"25022":2273,"25023":-1,"25024":520,"25025":-1,"25026":2445,"25027":0,"25028":0,"25029":-1,"25030":2465,"25031":-1,"25032":2391,"25033":-1,"25034":0,"25035":0,"25036":0,"25037":2114,"25038":2226,"25039":0,"25040":-1,"25041":-1,"25042":-1,"25043":-1,"25044":2477,"25045":-1,"25046":0,"25047":2263,"25048":0,"25049":0,"25050":-1,"25051":0,"25052":-1,"25053":-1,"25054":0,"25055":0,"25056":2186,"25057":2283,"25058":-1,"25059":-1,"25060":-1,"25061":-1,"25062":2324,"25063":2156,"25064":0,"25065":2437,"25066":264,"25067":2468,"25068":2074,"25069":-1,"25070":0,"25071":0,"25072":362,"25073":-1,"25074":0,"25075":772,"25076":-1,"25077":0,"25078":0,"25079":0,"25080":-1,"25081":2063,"25082":0,"25083":2495,"25084":-1,"25085":0,"25086":-1,"25087":-1,"25088":0,"25089":0,"25090":-1,"25091":2546,"25092":0,"25093":-1,"25094":0,"25095":0,"25096":-1,"25097":0,"25098":0,"25099":-1,"25100":0,"25101":2006,"25102":0,"25103":-1,"25104":2198,"25105":0,"25106":-1,"25107":2648,"25108":0,"25109":-1,"25110":0,"25111":2200,"25112":2627,"25113":-1,"25114":-1,"25115":-1,"25116":2114,"25117":-1,"25118":0,"25119":0,"25120":0,"25121":-1,"25122":2088,"25123":0,"25124":0,"25125":0,"25126":-1,"25127":0,"25128":-1,"25129":2209,"25130":-1,"25131":0,"25132":-1,"25133":0,"25134":0,"25135":-1,"25136":-1,"25137":-1,"25138":-1,"25139":0,"25140":0,"25141":0,"25142":2060,"25143":2195,"25144":-1,"25145":0,"25146":-1,"25147":2224,"25148":2177,"25149":0,"25150":37,"25151":0,"25152":2382,"25153":-1,"25154":0,"25155":2559,"25156":0,"25157":2375,"25158":-1,"25159":-1,"25160":0,"25161":0,"25162":-1,"25163":-1,"25164":0,"25165":-1,"25166":0,"25167":-1,"25168":0,"25169":0,"25170":-1,"25171":-1,"25172":-1,"25173":2261,"25174":2652,"25175":0,"25176":2542,"25177":0,"25178":-1,"25179":-1,"25180":0,"25181":2460,"25182":2021,"25183":0,"25184":2273,"25185":0,"25186":0,"25187":0,"25188":-1,"25189":2506,"25190":0,"25191":0,"25192":-1,"25193":2032,"25194":-1,"25195":0,"25196":0,"25197":0,"25198":0,"25199":-1,"25200":0,"25201":0,"25202":0,"25203":0,"25204":547,"25205":0,"25206":49,"25207":2268,"25208":0,"25209":0,"25210":0,"25211":-1,"25212":2580,"25213":-1,"25214":0,"25215":0,"25216":-1,"25217":353,"25218":0,"25219":-1,"25220":-1,"25221":0,"25222":0,"25223":0,"25224":-1,"25225":-1,"25226":-1,"25227":0,"25228":-1,"25229":-1,"25230":2340,"25231":75,"25232":-1,"25233":0,"25234":-1,"25235":0,"25236":0,"25237":0,"25238":-1,"25239":0,"25240":-1,"25241":0,"25242":0,"25243":20,"25244":107,"25245":107,"25246":0,"25247":0,"25248":0,"25249":-1,"25250":0,"25251":2508,"25252":-1,"25253":0,"25254":0,"25255":0,"25256":-1,"25257":2115,"25258":-1,"25259":-1,"25260":0,"25261":547,"25262":-1,"25263":2070,"25264":2171,"25265":386,"25266":0,"25267":2005,"25268":-1,"25269":0,"25270":-1,"25271":-1,"25272":-1,"25273":0,"25274":-1,"25275":0,"25276":2428,"25277":0,"25278":0,"25279":0,"25280":2537,"25281":0,"25282":0,"25283":0,"25284":-1,"25285":-1,"25286":-1,"25287":0,"25288":-1,"25289":0,"25290":0,"25291":0,"25292":0,"25293":0,"25294":0,"25295":0,"25296":-1,"25297":-1,"25298":1994,"25299":-1,"25300":2044,"25301":-1,"25302":2426,"25303":0,"25304":0,"25305":-1,"25306":-1,"25307":603,"25308":-1,"25309":0,"25310":0,"25311":2618,"25312":0,"25313":0,"25314":0,"25315":2461,"25316":0,"25317":-1,"25318":2570,"25319":-1,"25320":-1,"25321":2442,"25322":0,"25323":0,"25324":-1,"25325":2502,"25326":0,"25327":0,"25328":0,"25329":-1,"25330":-1,"25331":0,"25332":-1,"25333":-1,"25334":2081,"25335":0,"25336":0,"25337":448,"25338":0,"25339":2088,"25340":2119,"25341":2561,"25342":-1,"25343":0,"25344":-1,"25345":-1,"25346":-1,"25347":0,"25348":-1,"25349":0,"25350":0,"25351":0,"25352":-1,"25353":0,"25354":2328,"25355":0,"25356":-1,"25357":-1,"25358":-1,"25359":-1,"25360":0,"25361":2304,"25362":2357,"25363":-1,"25364":2232,"25365":-1,"25366":-1,"25367":0,"25368":0,"25369":0,"25370":2109,"25371":0,"25372":-1,"25373":-1,"25374":0,"25375":-1,"25376":2413,"25377":0,"25378":-1,"25379":281,"25380":2122,"25381":0,"25382":0,"25383":-1,"25384":-1,"25385":0,"25386":0,"25387":0,"25388":-1,"25389":-1,"25390":0,"25391":2157,"25392":0,"25393":-1,"25394":-1,"25395":0,"25396":0,"25397":0,"25398":2239,"25399":2172,"25400":-1,"25401":0,"25402":0,"25403":0,"25404":-1,"25405":0,"25406":10,"25407":0,"25408":0,"25409":2136,"25410":-1,"25411":-1,"25412":2415,"25413":-1,"25414":2631,"25415":0,"25416":2514,"25417":693,"25418":-1,"25419":0,"25420":0,"25421":-1,"25422":-1,"25423":2371,"25424":0,"25425":0,"25426":0,"25427":2544,"25428":0,"25429":0,"25430":0,"25431":2563,"25432":0,"25433":0,"25434":0,"25435":0,"25436":2441,"25437":-1,"25438":0,"25439":-1,"25440":0,"25441":0,"25442":2166,"25443":-1,"25444":0,"25445":0,"25446":-1,"25447":0,"25448":0,"25449":2527,"25450":0,"25451":0,"25452":-1,"25453":-1,"25454":-1,"25455":-1,"25456":0,"25457":-1,"25458":0,"25459":-1,"25460":0,"25461":0,"25462":-1,"25463":0,"25464":-1,"25465":0,"25466":-1,"25467":0,"25468":0,"25469":-1,"25470":0,"25471":-1,"25472":0,"25473":0,"25474":-1,"25475":0,"25476":-1,"25477":0,"25478":2065,"25479":0,"25480":0,"25481":-1,"25482":0,"25483":30,"25484":0,"25485":2310,"25486":-1,"25487":2615,"25488":2172,"25489":-1,"25490":-1,"25491":0,"25492":-1,"25493":-1,"25494":-1,"25495":-1,"25496":2155,"25497":-1,"25498":0,"25499":2518,"25500":0,"25501":0,"25502":-1,"25503":2443,"25504":-1,"25505":0,"25506":-1,"25507":0,"25508":0,"25509":0,"25510":46,"25511":0,"25512":-1,"25513":-1,"25514":0,"25515":-1,"25516":-1,"25517":-1,"25518":0,"25519":0,"25520":0,"25521":-1,"25522":-1,"25523":483,"25524":0,"25525":-1,"25526":0,"25527":0,"25528":-1,"25529":0,"25530":2237,"25531":2284,"25532":-1,"25533":2547,"25534":-1,"25535":0,"25536":0,"25537":0,"25538":0,"25539":2226,"25540":-1,"25541":0,"25542":0,"25543":-1,"25544":168,"25545":0,"25546":-1,"25547":0,"25548":2100,"25549":0,"25550":0,"25551":0,"25552":-1,"25553":2342,"25554":2132,"25555":-1,"25556":0,"25557":0,"25558":386,"25559":0,"25560":0,"25561":-1,"25562":0,"25563":0,"25564":0,"25565":0,"25566":0,"25567":0,"25568":0,"25569":-1,"25570":2079,"25571":2120,"25572":0,"25573":0,"25574":0,"25575":-1,"25576":0,"25577":0,"25578":0,"25579":0,"25580":-1,"25581":0,"25582":0,"25583":2317,"25584":0,"25585":-1,"25586":0,"25587":-1,"25588":0,"25589":-1,"25590":-1,"25591":2317,"25592":420,"25593":0,"25594":2221,"25595":-1,"25596":0,"25597":2665,"25598":2202,"25599":312,"25600":2643,"25601":-1,"25602":2128,"25603":2546,"25604":-1,"25605":2319,"25606":-1,"25607":2193,"25608":0,"25609":2444,"25610":-1,"25611":0,"25612":2325,"25613":0,"25614":2662,"25615":-1,"25616":-1,"25617":-1,"25618":-1,"25619":2024,"25620":64,"25621":0,"25622":2216,"25623":0,"25624":0,"25625":-1,"25626":0,"25627":2374,"25628":0,"25629":-1,"25630":0,"25631":284,"25632":1997,"25633":0,"25634":0,"25635":2114,"25636":0,"25637":-1,"25638":2384,"25639":-1,"25640":0,"25641":2574,"25642":-1,"25643":2213,"25644":-1,"25645":-1,"25646":0,"25647":-1,"25648":0,"25649":2452,"25650":0,"25651":0,"25652":2295,"25653":-1,"25654":0,"25655":0,"25656":-1,"25657":80,"25658":-1,"25659":-1,"25660":0,"25661":2400,"25662":2481,"25663":-1,"25664":0,"25665":0,"25666":-1,"25667":0,"25668":0,"25669":2632,"25670":0,"25671":2560,"25672":2294,"25673":-1,"25674":2279,"25675":0,"25676":-1,"25677":-1,"25678":-1,"25679":2304,"25680":2335,"25681":-1,"25682":0,"25683":0,"25684":2518,"25685":0,"25686":2279,"25687":2105,"25688":0,"25689":0,"25690":1993,"25691":0,"25692":2452,"25693":0,"25694":0,"25695":0,"25696":-1,"25697":-1,"25698":-1,"25699":-1,"25700":0,"25701":2129,"25702":0,"25703":0,"25704":0,"25705":2014,"25706":-1,"25707":0,"25708":2334,"25709":0,"25710":245,"25711":0,"25712":0,"25713":0,"25714":2652,"25715":-1,"25716":2016,"25717":0,"25718":0,"25719":2227,"25720":420,"25721":2121,"25722":2447,"25723":-1,"25724":0,"25725":0,"25726":2614,"25727":88,"25728":0,"25729":0,"25730":2213,"25731":0,"25732":-1,"25733":-1,"25734":0,"25735":2051,"25736":0,"25737":0,"25738":-1,"25739":0,"25740":0,"25741":329,"25742":0,"25743":-1,"25744":-1,"25745":622,"25746":2309,"25747":-1,"25748":0,"25749":-1,"25750":2305,"25751":0,"25752":0,"25753":0,"25754":-1,"25755":2202,"25756":-1,"25757":2339,"25758":-1,"25759":-1,"25760":2162,"25761":0,"25762":0,"25763":2219,"25764":0,"25765":2044,"25766":2069,"25767":0,"25768":0,"25769":0,"25770":2069,"25771":-1,"25772":0,"25773":-1,"25774":-1,"25775":0,"25776":0,"25777":-1,"25778":0,"25779":-1,"25780":663,"25781":0,"25782":2173,"25783":45,"25784":-1,"25785":2127,"25786":0,"25787":0,"25788":0,"25789":0,"25790":0,"25791":0,"25792":-1,"25793":-1,"25794":0,"25795":0,"25796":0,"25797":693,"25798":0,"25799":0,"25800":7,"25801":2169,"25802":0,"25803":-1,"25804":0,"25805":2625,"25806":0,"25807":-1,"25808":0,"25809":0,"25810":-1,"25811":-1,"25812":0,"25813":-1,"25814":0,"25815":0,"25816":-1,"25817":-1,"25818":-1,"25819":0,"25820":-1,"25821":96,"25822":0,"25823":0,"25824":0,"25825":-1,"25826":2302,"25827":-1,"25828":0,"25829":0,"25830":0,"25831":0,"25832":0,"25833":0,"25834":2258,"25835":0,"25836":-1,"25837":2514,"25838":2062,"25839":2182,"25840":2023,"25841":0,"25842":0,"25843":2519,"25844":0,"25845":0,"25846":0,"25847":-1,"25848":-1,"25849":1992,"25850":0,"25851":2650,"25852":-1,"25853":-1,"25854":0,"25855":2078,"25856":-1,"25857":0,"25858":0,"25859":0,"25860":2475,"25861":0,"25862":2294,"25863":0,"25864":-1,"25865":-1,"25866":2088,"25867":0,"25868":0,"25869":-1,"25870":0,"25871":2451,"25872":2169,"25873":-1,"25874":2641,"25875":2150,"25876":-1,"25877":0,"25878":-1,"25879":0,"25880":-1,"25881":2448,"25882":0,"25883":0,"25884":0,"25885":2140,"25886":-1,"25887":2419,"25888":0,"25889":0,"25890":0,"25891":0,"25892":0,"25893":0,"25894":-1,"25895":75,"25896":2054,"25897":42,"25898":1999,"25899":0,"25900":-1,"25901":0,"25902":-1,"25903":0,"25904":0,"25905":645,"25906":0,"25907":2605,"25908":0,"25909":2319,"25910":0,"25911":0,"25912":0,"25913":-1,"25914":-1,"25915":2111,"25916":0,"25917":667,"25918":0,"25919":-1,"25920":-1,"25921":0,"25922":2572,"25923":-1,"25924":-1,"25925":-1,"25926":0,"25927":0,"25928":2062,"25929":0,"25930":0,"25931":639,"25932":178,"25933":0,"25934":0,"25935":0,"25936":-1,"25937":0,"25938":0,"25939":2492,"25940":2382,"25941":2023,"25942":2395,"25943":-1,"25944":0,"25945":0,"25946":0,"25947":0,"25948":0,"25949":2037,"25950":0,"25951":2511,"25952":455,"25953":0,"25954":2327,"25955":0,"25956":0,"25957":-1,"25958":-1,"25959":2049,"25960":0,"25961":0,"25962":-1,"25963":-1,"25964":0,"25965":0,"25966":0,"25967":0,"25968":-1,"25969":0,"25970":0,"25971":2176,"25972":-1,"25973":2673,"25974":0,"25975":0,"25976":-1,"25977":0,"25978":2452,"25979":0,"25980":0,"25981":2311,"25982":0,"25983":0,"25984":2615,"25985":2067,"25986":0,"25987":-1,"25988":-1,"25989":0,"25990":-1,"25991":-1,"25992":2105,"25993":2430,"25994":292,"25995":0,"25996":-1,"25997":0,"25998":-1,"25999":0,"26000":0,"26001":-1,"26002":0,"26003":2168,"26004":-1,"26005":2516,"26006":0,"26007":0,"26008":2348,"26009":0,"26010":-1,"26011":0,"26012":2477,"26013":-1,"26014":0,"26015":2006,"26016":-1,"26017":0,"26018":-1,"26019":0,"26020":-1,"26021":2358,"26022":2343,"26023":299,"26024":-1,"26025":0,"26026":350,"26027":2130,"26028":2017,"26029":0,"26030":0,"26031":40,"26032":2085,"26033":2575,"26034":496,"26035":-1,"26036":0,"26037":-1,"26038":0,"26039":-1,"26040":2400,"26041":2541,"26042":-1,"26043":-1,"26044":2003,"26045":-1,"26046":0,"26047":0,"26048":2648,"26049":0,"26050":0,"26051":0,"26052":-1,"26053":-1,"26054":-1,"26055":2043,"26056":0,"26057":0,"26058":-1,"26059":0,"26060":2062,"26061":-1,"26062":-1,"26063":-1,"26064":2378,"26065":-1,"26066":2296,"26067":0,"26068":-1,"26069":-1,"26070":0,"26071":2679,"26072":0,"26073":2215,"26074":-1,"26075":0,"26076":0,"26077":-1,"26078":2019,"26079":0,"26080":0,"26081":0,"26082":0,"26083":-1,"26084":301,"26085":-1,"26086":0,"26087":0,"26088":2461,"26089":-1,"26090":0,"26091":2386,"26092":-1,"26093":-1,"26094":0,"26095":-1,"26096":-1,"26097":0,"26098":0,"26099":0,"26100":0,"26101":0,"26102":0,"26103":2278,"26104":2277,"26105":-1,"26106":402,"26107":0,"26108":0,"26109":0,"26110":842,"26111":0,"26112":0,"26113":0,"26114":0,"26115":0,"26116":0,"26117":-1,"26118":2353,"26119":0,"26120":0,"26121":0,"26122":2148,"26123":2383,"26124":0,"26125":0,"26126":-1,"26127":793,"26128":2603,"26129":0,"26130":-1,"26131":-1,"26132":2226,"26133":0,"26134":0,"26135":0,"26136":2150,"26137":-1,"26138":2262,"26139":2009,"26140":0,"26141":-1,"26142":0,"26143":-1,"26144":-1,"26145":0,"26146":0,"26147":2161,"26148":-1,"26149":0,"26150":-1,"26151":-1,"26152":0,"26153":0,"26154":0,"26155":0,"26156":2177,"26157":2249,"26158":-1,"26159":-1,"26160":0,"26161":0,"26162":2232,"26163":0,"26164":-1,"26165":0,"26166":0,"26167":-1,"26168":0,"26169":-1,"26170":-1,"26171":-1,"26172":2070,"26173":2647,"26174":-1,"26175":0,"26176":0,"26177":2666,"26178":-1,"26179":-1,"26180":2262,"26181":0,"26182":-1,"26183":0,"26184":-1,"26185":0,"26186":0,"26187":0,"26188":205,"26189":0,"26190":0,"26191":0,"26192":0,"26193":0,"26194":-1,"26195":0,"26196":-1,"26197":0,"26198":0,"26199":0,"26200":262,"26201":-1,"26202":0,"26203":842,"26204":0,"26205":2004,"26206":0,"26207":261,"26208":-1,"26209":-1,"26210":-1,"26211":0,"26212":-1,"26213":0,"26214":-1,"26215":-1,"26216":0,"26217":-1,"26218":0,"26219":-1,"26220":0,"26221":-1,"26222":-1,"26223":2385,"26224":-1,"26225":-1,"26226":0,"26227":2524,"26228":0,"26229":2447,"26230":-1,"26231":0,"26232":0,"26233":0,"26234":0,"26235":0,"26236":0,"26237":2366,"26238":0,"26239":449,"26240":0,"26241":-1,"26242":0,"26243":0,"26244":449,"26245":0,"26246":0,"26247":0,"26248":-1,"26249":0,"26250":-1,"26251":-1,"26252":38,"26253":0,"26254":0,"26255":-1,"26256":0,"26257":2251,"26258":2409,"26259":-1,"26260":0,"26261":-1,"26262":0,"26263":-1,"26264":-1,"26265":0,"26266":1997,"26267":0,"26268":2540,"26269":0,"26270":0,"26271":-1,"26272":-1,"26273":0,"26274":0,"26275":-1,"26276":0,"26277":0,"26278":2313,"26279":-1,"26280":0,"26281":0,"26282":0,"26283":2023,"26284":0,"26285":514,"26286":0,"26287":1994,"26288":2654,"26289":0,"26290":0,"26291":-1,"26292":0,"26293":-1,"26294":0,"26295":-1,"26296":0,"26297":-1,"26298":0,"26299":-1,"26300":137,"26301":837,"26302":483,"26303":2656,"26304":0,"26305":-1,"26306":-1,"26307":-1,"26308":-1,"26309":-1,"26310":2142,"26311":0,"26312":0,"26313":-1,"26314":0,"26315":-1,"26316":0,"26317":0,"26318":0,"26319":2240,"26320":2083,"26321":0,"26322":-1,"26323":-1,"26324":0,"26325":2556,"26326":-1,"26327":0,"26328":0,"26329":2389,"26330":2303,"26331":0,"26332":-1,"26333":0,"26334":2388,"26335":2244,"26336":0,"26337":0,"26338":0,"26339":-1,"26340":2057,"26341":31,"26342":-1,"26343":2619,"26344":-1,"26345":-1,"26346":2460,"26347":0,"26348":-1,"26349":2477,"26350":0,"26351":34,"26352":455,"26353":0,"26354":327,"26355":-1,"26356":-1,"26357":-1,"26358":0,"26359":-1,"26360":0,"26361":0,"26362":-1,"26363":-1,"26364":-1,"26365":153,"26366":0,"26367":298,"26368":0,"26369":2013,"26370":0,"26371":0,"26372":0,"26373":-1,"26374":-1,"26375":0,"26376":0,"26377":0,"26378":-1,"26379":0,"26380":2505,"26381":2274,"26382":-1,"26383":0,"26384":-1,"26385":2208,"26386":-1,"26387":0,"26388":0,"26389":0,"26390":0,"26391":-1,"26392":-1,"26393":-1,"26394":2027,"26395":2422,"26396":2248,"26397":-1,"26398":-1,"26399":0,"26400":2048,"26401":-1,"26402":-1,"26403":2592,"26404":-1,"26405":-1,"26406":395,"26407":-1,"26408":0,"26409":0,"26410":2082,"26411":0,"26412":-1,"26413":-1,"26414":0,"26415":2368,"26416":0,"26417":141,"26418":0,"26419":0,"26420":-1,"26421":2445,"26422":2423,"26423":0,"26424":2145,"26425":0,"26426":-1,"26427":0,"26428":2527,"26429":0,"26430":2022,"26431":-1,"26432":2447,"26433":-1,"26434":0,"26435":2678,"26436":-1,"26437":300,"26438":-1,"26439":2008,"26440":2541,"26441":0,"26442":2517,"26443":-1,"26444":-1,"26445":0,"26446":-1,"26447":2374,"26448":2051,"26449":-1,"26450":0,"26451":0,"26452":842,"26453":-1,"26454":-1,"26455":-1,"26456":0,"26457":-1,"26458":0,"26459":45,"26460":0,"26461":0,"26462":0,"26463":2274,"26464":0,"26465":-1,"26466":-1,"26467":0,"26468":2580,"26469":-1,"26470":0,"26471":0,"26472":-1,"26473":-1,"26474":2133,"26475":2360,"26476":2085,"26477":0,"26478":0,"26479":-1,"26480":18,"26481":578,"26482":2480,"26483":2141,"26484":-1,"26485":0,"26486":-1,"26487":-1,"26488":80,"26489":-1,"26490":2592,"26491":-1,"26492":-1,"26493":-1,"26494":-1,"26495":2657,"26496":-1,"26497":0,"26498":0,"26499":0,"26500":2580,"26501":0,"26502":-1,"26503":0,"26504":-1,"26505":906,"26506":706,"26507":2611,"26508":-1,"26509":0,"26510":-1,"26511":-1,"26512":-1,"26513":-1,"26514":-1,"26515":-1,"26516":0,"26517":0,"26518":0,"26519":0,"26520":-1,"26521":0,"26522":0,"26523":2290,"26524":2567,"26525":0,"26526":-1,"26527":2601,"26528":0,"26529":0,"26530":0,"26531":-1,"26532":0,"26533":0,"26534":0,"26535":0,"26536":0,"26537":-1,"26538":2275,"26539":-1,"26540":341,"26541":-1,"26542":-1,"26543":2340,"26544":0,"26545":0,"26546":0,"26547":-1,"26548":0,"26549":0,"26550":-1,"26551":2431,"26552":148,"26553":0,"26554":0,"26555":936,"26556":0,"26557":0,"26558":-1,"26559":0,"26560":0,"26561":-1,"26562":2530,"26563":0,"26564":0,"26565":2103,"26566":0,"26567":0,"26568":0,"26569":0,"26570":-1,"26571":0,"26572":2166,"26573":2026,"26574":2004,"26575":2335,"26576":0,"26577":-1,"26578":-1,"26579":-1,"26580":2478,"26581":-1,"26582":2200,"26583":10,"26584":0,"26585":-1,"26586":2458,"26587":0,"26588":0,"26589":2126,"26590":2534,"26591":-1,"26592":2189,"26593":0,"26594":0,"26595":-1,"26596":2543,"26597":2228,"26598":-1,"26599":0,"26600":-1,"26601":0,"26602":2432,"26603":-1,"26604":0,"26605":-1,"26606":-1,"26607":0,"26608":0,"26609":170,"26610":0,"26611":0,"26612":-1,"26613":-1,"26614":2410,"26615":0,"26616":0,"26617":2110,"26618":2584,"26619":2419,"26620":0,"26621":0,"26622":2078,"26623":2264,"26624":2251,"26625":2184,"26626":38,"26627":0,"26628":-1,"26629":-1,"26630":0,"26631":2427,"26632":0,"26633":0,"26634":0,"26635":0,"26636":0,"26637":2630,"26638":-1,"26639":-1,"26640":2591,"26641":0,"26642":0,"26643":0,"26644":-1,"26645":0,"26646":0,"26647":-1,"26648":0,"26649":1991,"26650":0,"26651":-1,"26652":2413,"26653":2061,"26654":2426,"26655":0,"26656":0,"26657":-1,"26658":772,"26659":0,"26660":0,"26661":-1,"26662":0,"26663":2328,"26664":-1,"26665":-1,"26666":2146,"26667":0,"26668":-1,"26669":0,"26670":-1,"26671":0,"26672":-1,"26673":16,"26674":2279,"26675":-1,"26676":0,"26677":-1,"26678":0,"26679":0,"26680":-1,"26681":-1,"26682":-1,"26683":-1,"26684":0,"26685":0,"26686":-1,"26687":0,"26688":-1,"26689":0,"26690":0,"26691":80,"26692":0,"26693":-1,"26694":0,"26695":0,"26696":0,"26697":0,"26698":2128,"26699":0,"26700":2144,"26701":2539,"26702":2575,"26703":2335,"26704":0,"26705":443,"26706":-1,"26707":0,"26708":0,"26709":-1,"26710":0,"26711":-1,"26712":0,"26713":0,"26714":0,"26715":-1,"26716":2254,"26717":-1,"26718":520,"26719":0,"26720":-1,"26721":462,"26722":0,"26723":0,"26724":-1,"26725":0,"26726":2007,"26727":0,"26728":2349,"26729":2608,"26730":-1,"26731":0,"26732":2644,"26733":908,"26734":-1,"26735":0,"26736":0,"26737":0,"26738":0,"26739":0,"26740":45,"26741":0,"26742":0,"26743":0,"26744":0,"26745":2181,"26746":-1,"26747":2073,"26748":0,"26749":0,"26750":0,"26751":43,"26752":0,"26753":-1,"26754":-1,"26755":2651,"26756":0,"26757":-1,"26758":23,"26759":2395,"26760":0,"26761":0,"26762":-1,"26763":0,"26764":0,"26765":-1,"26766":0,"26767":-1,"26768":-1,"26769":2549,"26770":20,"26771":0,"26772":0,"26773":0,"26774":-1,"26775":0,"26776":-1,"26777":0,"26778":2314,"26779":0,"26780":-1,"26781":-1,"26782":2024,"26783":0,"26784":2165,"26785":2102,"26786":-1,"26787":0,"26788":0,"26789":-1,"26790":2500,"26791":-1,"26792":-1,"26793":2047,"26794":0,"26795":0,"26796":0,"26797":-1,"26798":924,"26799":-1,"26800":-1,"26801":0,"26802":-1,"26803":-1,"26804":0,"26805":0,"26806":0,"26807":-1,"26808":0,"26809":2537,"26810":0,"26811":-1,"26812":-1,"26813":0,"26814":2364,"26815":-1,"26816":2608,"26817":-1,"26818":-1,"26819":0,"26820":-1,"26821":0,"26822":2087,"26823":-1,"26824":333,"26825":0,"26826":0,"26827":0,"26828":0,"26829":-1,"26830":0,"26831":2111,"26832":2305,"26833":0,"26834":-1,"26835":0,"26836":2011,"26837":2539,"26838":0,"26839":420,"26840":-1,"26841":2329,"26842":2255,"26843":2086,"26844":-1,"26845":-1,"26846":0,"26847":-1,"26848":-1,"26849":-1,"26850":0,"26851":-1,"26852":-1,"26853":2403,"26854":0,"26855":0,"26856":2447,"26857":-1,"26858":-1,"26859":2520,"26860":0,"26861":-1,"26862":0,"26863":0,"26864":0,"26865":-1,"26866":0,"26867":0,"26868":2228,"26869":0,"26870":0,"26871":-1,"26872":2655,"26873":-1,"26874":0,"26875":-1,"26876":-1,"26877":-1,"26878":199,"26879":-1,"26880":0,"26881":34,"26882":-1,"26883":0,"26884":0,"26885":-1,"26886":0,"26887":2059,"26888":-1,"26889":-1,"26890":2461,"26891":0,"26892":-1,"26893":-1,"26894":0,"26895":-1,"26896":-1,"26897":-1,"26898":0,"26899":-1,"26900":0,"26901":-1,"26902":0,"26903":0,"26904":0,"26905":310,"26906":2625,"26907":0,"26908":-1,"26909":-1,"26910":-1,"26911":0,"26912":0,"26913":0,"26914":0,"26915":0,"26916":-1,"26917":0,"26918":0,"26919":-1,"26920":-1,"26921":0,"26922":0,"26923":2529,"26924":-1,"26925":2451,"26926":0,"26927":2410,"26928":2192,"26929":0,"26930":0,"26931":2423,"26932":0,"26933":0,"26934":2394,"26935":2541,"26936":2466,"26937":-1,"26938":-1,"26939":-1,"26940":2506,"26941":0,"26942":2361,"26943":2500,"26944":0,"26945":-1,"26946":0,"26947":449,"26948":0,"26949":0,"26950":0,"26951":0,"26952":0,"26953":0,"26954":0,"26955":-1,"26956":0,"26957":118,"26958":0,"26959":-1,"26960":0,"26961":0,"26962":-1,"26963":0,"26964":0,"26965":0,"26966":0,"26967":-1,"26968":0,"26969":-1,"26970":0,"26971":0,"26972":0,"26973":-1,"26974":0,"26975":-1,"26976":2456,"26977":-1,"26978":0,"26979":-1,"26980":0,"26981":2344,"26982":0,"26983":1995,"26984":-1,"26985":0,"26986":2446,"26987":-1,"26988":-1,"26989":0,"26990":2498,"26991":2111,"26992":-1,"26993":2297,"26994":-1,"26995":0,"26996":-1,"26997":2099,"26998":2640,"26999":0,"27000":0,"27001":0,"27002":0,"27003":2016,"27004":118,"27005":2591,"27006":-1,"27007":2634,"27008":2170,"27009":-1,"27010":738,"27011":-1,"27012":-1,"27013":0,"27014":-1,"27015":2040,"27016":-1,"27017":0,"27018":-1,"27019":0,"27020":0,"27021":0,"27022":-1,"27023":2636,"27024":-1,"27025":0,"27026":0,"27027":2641,"27028":2255,"27029":0,"27030":0,"27031":-1,"27032":0,"27033":0,"27034":-1,"27035":-1,"27036":475,"27037":2113,"27038":2626,"27039":0,"27040":-1,"27041":0,"27042":2165,"27043":-1,"27044":2260,"27045":0,"27046":-1,"27047":-1,"27048":2045,"27049":-1,"27050":-1,"27051":0,"27052":0,"27053":0,"27054":-1,"27055":0,"27056":0,"27057":2567,"27058":-1,"27059":2423,"27060":-1,"27061":0,"27062":0,"27063":2175,"27064":2228,"27065":2081,"27066":0,"27067":2419,"27068":-1,"27069":0,"27070":-1,"27071":0,"27072":0,"27073":0,"27074":2123,"27075":2073,"27076":472,"27077":-1,"27078":0,"27079":0,"27080":0,"27081":-1,"27082":0,"27083":0,"27084":20,"27085":2418,"27086":0,"27087":0,"27088":-1,"27089":-1,"27090":-1,"27091":0,"27092":0,"27093":0,"27094":0,"27095":2483,"27096":0,"27097":0,"27098":0,"27099":-1,"27100":0,"27101":0,"27102":-1,"27103":0,"27104":520,"27105":2228,"27106":-1,"27107":0,"27108":0,"27109":0,"27110":0,"27111":0,"27112":0,"27113":2661,"27114":-1,"27115":0,"27116":-1,"27117":0,"27118":2581,"27119":2344,"27120":-1,"27121":0,"27122":-1,"27123":-1,"27124":2201,"27125":0,"27126":-1,"27127":0,"27128":-1,"27129":0,"27130":0,"27131":0,"27132":0,"27133":0,"27134":2479,"27135":39,"27136":0,"27137":0,"27138":0,"27139":-1,"27140":0,"27141":-1,"27142":0,"27143":-1,"27144":0,"27145":44,"27146":0,"27147":0,"27148":0,"27149":2231,"27150":-1,"27151":-1,"27152":2453,"27153":-1,"27154":2075,"27155":217,"27156":2002,"27157":2619,"27158":2360,"27159":0,"27160":0,"27161":2552,"27162":2409,"27163":0,"27164":-1,"27165":0,"27166":706,"27167":0,"27168":0,"27169":-1,"27170":0,"27171":-1,"27172":-1,"27173":0,"27174":-1,"27175":-1,"27176":-1,"27177":-1,"27178":2193,"27179":2579,"27180":-1,"27181":0,"27182":2532,"27183":-1,"27184":0,"27185":2354,"27186":2646,"27187":0,"27188":0,"27189":0,"27190":2175,"27191":2466,"27192":0,"27193":-1,"27194":2250,"27195":2018,"27196":0,"27197":0,"27198":2349,"27199":-1,"27200":0,"27201":0,"27202":0,"27203":0,"27204":0,"27205":0,"27206":-1,"27207":-1,"27208":-1,"27209":0,"27210":-1,"27211":0,"27212":-1,"27213":0,"27214":-1,"27215":2612,"27216":-1,"27217":2154,"27218":0,"27219":0,"27220":2594,"27221":0,"27222":2443,"27223":2399,"27224":0,"27225":2320,"27226":0,"27227":2483,"27228":0,"27229":0,"27230":2560,"27231":0,"27232":-1,"27233":0,"27234":-1,"27235":0,"27236":-1,"27237":0,"27238":0,"27239":2514,"27240":0,"27241":2495,"27242":0,"27243":2195,"27244":0,"27245":-1,"27246":0,"27247":-1,"27248":49,"27249":0,"27250":2240,"27251":-1,"27252":-1,"27253":2161,"27254":0,"27255":0,"27256":720,"27257":80,"27258":0,"27259":-1,"27260":0,"27261":-1,"27262":-1,"27263":2506,"27264":2521,"27265":0,"27266":0,"27267":0,"27268":2088,"27269":2617,"27270":2519,"27271":-1,"27272":0,"27273":0,"27274":0,"27275":0,"27276":0,"27277":-1,"27278":0,"27279":0,"27280":2377,"27281":-1,"27282":2581,"27283":-1,"27284":2235,"27285":-1,"27286":-1,"27287":0,"27288":-1,"27289":2430,"27290":-1,"27291":0,"27292":0,"27293":-1,"27294":-1,"27295":-1,"27296":0,"27297":-1,"27298":-1,"27299":0,"27300":2166,"27301":2226,"27302":-1,"27303":0,"27304":0,"27305":0,"27306":0,"27307":2197,"27308":-1,"27309":0,"27310":0,"27311":-1,"27312":-1,"27313":-1,"27314":0,"27315":-1,"27316":0,"27317":-1,"27318":0,"27319":-1,"27320":-1,"27321":2012,"27322":0,"27323":-1,"27324":-1,"27325":0,"27326":2275,"27327":-1,"27328":0,"27329":0,"27330":0,"27331":0,"27332":0,"27333":2537,"27334":-1,"27335":0,"27336":23,"27337":-1,"27338":0,"27339":0,"27340":0,"27341":448,"27342":0,"27343":0,"27344":0,"27345":0,"27346":0,"27347":-1,"27348":-1,"27349":2372,"27350":2574,"27351":-1,"27352":-1,"27353":0,"27354":0,"27355":-1,"27356":-1,"27357":-1,"27358":148,"27359":0,"27360":0,"27361":2313,"27362":-1,"27363":-1,"27364":2531,"27365":-1,"27366":-1,"27367":0,"27368":0,"27369":0,"27370":0,"27371":2233,"27372":2299,"27373":-1,"27374":-1,"27375":-1,"27376":2434,"27377":0,"27378":2316,"27379":620,"27380":-1,"27381":-1,"27382":2006,"27383":559,"27384":-1,"27385":2561,"27386":280,"27387":-1,"27388":-1,"27389":0,"27390":0,"27391":0,"27392":-1,"27393":-1,"27394":-1,"27395":2650,"27396":-1,"27397":-1,"27398":-1,"27399":2099,"27400":2266,"27401":0,"27402":0,"27403":0,"27404":-1,"27405":598,"27406":0,"27407":2396,"27408":-1,"27409":2085,"27410":205,"27411":0,"27412":0,"27413":0,"27414":-1,"27415":-1,"27416":2632,"27417":-1,"27418":0,"27419":0,"27420":397,"27421":-1,"27422":2547,"27423":-1,"27424":-1,"27425":-1,"27426":-1,"27427":-1,"27428":0,"27429":0,"27430":0,"27431":2297,"27432":-1,"27433":2171,"27434":-1,"27435":0,"27436":-1,"27437":0,"27438":-1,"27439":0,"27440":0,"27441":-1,"27442":-1,"27443":-1,"27444":0,"27445":0,"27446":0,"27447":-1,"27448":0,"27449":0,"27450":0,"27451":0,"27452":0,"27453":-1,"27454":-1,"27455":0,"27456":-1,"27457":2495,"27458":0,"27459":0,"27460":0,"27461":102,"27462":0,"27463":0,"27464":2675,"27465":0,"27466":2128,"27467":-1,"27468":-1,"27469":2437,"27470":0,"27471":-1,"27472":0,"27473":0,"27474":-1,"27475":-1,"27476":0,"27477":0,"27478":-1,"27479":0,"27480":0,"27481":0,"27482":0,"27483":2589,"27484":2618,"27485":-1,"27486":2001,"27487":2583,"27488":-1,"27489":-1,"27490":0,"27491":2510,"27492":-1,"27493":0,"27494":109,"27495":0,"27496":0,"27497":0,"27498":2057,"27499":0,"27500":-1,"27501":0,"27502":0,"27503":2519,"27504":2067,"27505":2320,"27506":0,"27507":0,"27508":-1,"27509":2479,"27510":0,"27511":0,"27512":-1,"27513":0,"27514":-1,"27515":0,"27516":0,"27517":0,"27518":2061,"27519":-1,"27520":0,"27521":1992,"27522":0,"27523":0,"27524":0,"27525":0,"27526":0,"27527":-1,"27528":0,"27529":-1,"27530":-1,"27531":2554,"27532":0,"27533":-1,"27534":2045,"27535":0,"27536":0,"27537":2309,"27538":-1,"27539":-1,"27540":-1,"27541":2531,"27542":0,"27543":0,"27544":0,"27545":-1,"27546":2599,"27547":0,"27548":0,"27549":0,"27550":0,"27551":-1,"27552":34,"27553":0,"27554":0,"27555":0,"27556":0,"27557":2471,"27558":0,"27559":0,"27560":0,"27561":-1,"27562":2013,"27563":325,"27564":2582,"27565":0,"27566":2479,"27567":2678,"27568":0,"27569":0,"27570":-1,"27571":0,"27572":0,"27573":-1,"27574":-1,"27575":0,"27576":0,"27577":2678,"27578":2154,"27579":2264,"27580":0,"27581":2240,"27582":0,"27583":614,"27584":2439,"27585":0,"27586":0,"27587":-1,"27588":2542,"27589":2300,"27590":0,"27591":-1,"27592":-1,"27593":0,"27594":-1,"27595":0,"27596":0,"27597":0,"27598":2060,"27599":0,"27600":0,"27601":0,"27602":2084,"27603":2334,"27604":0,"27605":-1,"27606":2250,"27607":0,"27608":-1,"27609":0,"27610":6,"27611":2473,"27612":-1,"27613":-1,"27614":0,"27615":0,"27616":-1,"27617":0,"27618":0,"27619":2530,"27620":-1,"27621":-1,"27622":2666,"27623":2122,"27624":0,"27625":0,"27626":2368,"27627":-1,"27628":0,"27629":0,"27630":0,"27631":-1,"27632":2224,"27633":0,"27634":0,"27635":-1,"27636":0,"27637":-1,"27638":0,"27639":2415,"27640":156,"27641":0,"27642":-1,"27643":-1,"27644":0,"27645":0,"27646":0,"27647":-1,"27648":0,"27649":0,"27650":2342,"27651":77,"27652":0,"27653":833,"27654":0,"27655":0,"27656":2020,"27657":0,"27658":-1,"27659":-1,"27660":0,"27661":-1,"27662":0,"27663":0,"27664":-1,"27665":0,"27666":2272,"27667":559,"27668":145,"27669":0,"27670":2069,"27671":2145,"27672":0,"27673":0,"27674":2641,"27675":-1,"27676":2040,"27677":-1,"27678":0,"27679":0,"27680":0,"27681":-1,"27682":2449,"27683":0,"27684":0,"27685":0,"27686":-1,"27687":-1,"27688":0,"27689":-1,"27690":0,"27691":2100,"27692":2404,"27693":0,"27694":-1,"27695":2150,"27696":0,"27697":-1,"27698":0,"27699":2571,"27700":0,"27701":-1,"27702":2041,"27703":0,"27704":-1,"27705":-1,"27706":0,"27707":0,"27708":2051,"27709":-1,"27710":0,"27711":1992,"27712":0,"27713":1997,"27714":44,"27715":2575,"27716":0,"27717":-1,"27718":-1,"27719":0,"27720":-1,"27721":0,"27722":-1,"27723":0,"27724":-1,"27725":2639,"27726":496,"27727":-1,"27728":-1,"27729":-1,"27730":2530,"27731":0,"27732":-1,"27733":0,"27734":2508,"27735":0,"27736":2446,"27737":0,"27738":0,"27739":0,"27740":19,"27741":154,"27742":0,"27743":0,"27744":0,"27745":-1,"27746":-1,"27747":-1,"27748":-1,"27749":2070,"27750":0,"27751":-1,"27752":0,"27753":0,"27754":0,"27755":0,"27756":-1,"27757":-1,"27758":0,"27759":2493,"27760":205,"27761":219,"27762":-1,"27763":0,"27764":-1,"27765":0,"27766":0,"27767":-1,"27768":0,"27769":2245,"27770":0,"27771":0,"27772":0,"27773":0,"27774":-1,"27775":0,"27776":2099,"27777":0,"27778":0,"27779":0,"27780":0,"27781":0,"27782":-1,"27783":-1,"27784":2312,"27785":0,"27786":0,"27787":-1,"27788":-1,"27789":0,"27790":-1,"27791":0,"27792":0,"27793":-1,"27794":0,"27795":-1,"27796":0,"27797":2093,"27798":2411,"27799":2134,"27800":0,"27801":0,"27802":-1,"27803":0,"27804":-1,"27805":-1,"27806":96,"27807":37,"27808":2147,"27809":0,"27810":-1,"27811":-1,"27812":0,"27813":0,"27814":0,"27815":0,"27816":0,"27817":0,"27818":0,"27819":0,"27820":0,"27821":0,"27822":-1,"27823":0,"27824":0,"27825":0,"27826":2533,"27827":-1,"27828":-1,"27829":-1,"27830":0,"27831":2028,"27832":0,"27833":0,"27834":-1,"27835":-1,"27836":-1,"27837":0,"27838":0,"27839":-1,"27840":-1,"27841":2676,"27842":2532,"27843":2374,"27844":2667,"27845":0,"27846":0,"27847":907,"27848":0,"27849":0,"27850":0,"27851":-1,"27852":0,"27853":2219,"27854":-1,"27855":0,"27856":-1,"27857":2078,"27858":0,"27859":-1,"27860":-1,"27861":0,"27862":0,"27863":2259,"27864":0,"27865":0,"27866":2505,"27867":2586,"27868":0,"27869":-1,"27870":0,"27871":-1,"27872":0,"27873":0,"27874":0,"27875":0,"27876":205,"27877":0,"27878":0,"27879":0,"27880":0,"27881":0,"27882":0,"27883":0,"27884":-1,"27885":0,"27886":0,"27887":0,"27888":2623,"27889":-1,"27890":0,"27891":130,"27892":2340,"27893":0,"27894":-1,"27895":0,"27896":2515,"27897":0,"27898":0,"27899":2185,"27900":0,"27901":706,"27902":0,"27903":2607,"27904":-1,"27905":0,"27906":-1,"27907":2111,"27908":0,"27909":0,"27910":2419,"27911":-1,"27912":-1,"27913":0,"27914":0,"27915":0,"27916":2544,"27917":0,"27918":0,"27919":0,"27920":-1,"27921":-1,"27922":-1,"27923":64,"27924":0,"27925":0,"27926":0,"27927":0,"27928":0,"27929":0,"27930":0,"27931":2174,"27932":0,"27933":-1,"27934":0,"27935":0,"27936":-1,"27937":-1,"27938":0,"27939":-1,"27940":0,"27941":2671,"27942":136,"27943":0,"27944":-1,"27945":-1,"27946":0,"27947":2012,"27948":0,"27949":0,"27950":-1,"27951":2286,"27952":0,"27953":2510,"27954":2590,"27955":0,"27956":-1,"27957":-1,"27958":2273,"27959":65,"27960":0,"27961":-1,"27962":-1,"27963":0,"27964":-1,"27965":0,"27966":0,"27967":-1,"27968":2509,"27969":0,"27970":-1,"27971":2150,"27972":-1,"27973":0,"27974":-1,"27975":-1,"27976":-1,"27977":-1,"27978":2447,"27979":0,"27980":0,"27981":-1,"27982":2079,"27983":237,"27984":-1,"27985":0,"27986":2406,"27987":5,"27988":0,"27989":0,"27990":2638,"27991":-1,"27992":-1,"27993":0,"27994":-1,"27995":2665,"27996":-1,"27997":0,"27998":2305,"27999":0,"28000":2339,"28001":65,"28002":0,"28003":0,"28004":0,"28005":472,"28006":2044,"28007":0,"28008":-1,"28009":-1,"28010":0,"28011":0,"28012":-1,"28013":317,"28014":-1,"28015":2214,"28016":-1,"28017":-1,"28018":-1,"28019":-1,"28020":-1,"28021":0,"28022":0,"28023":-1,"28024":2564,"28025":0,"28026":663,"28027":0,"28028":0,"28029":303,"28030":2532,"28031":0,"28032":-1,"28033":0,"28034":-1,"28035":-1,"28036":-1,"28037":42,"28038":2047,"28039":-1,"28040":-1,"28041":0,"28042":-1,"28043":1998,"28044":2090,"28045":-1,"28046":2549,"28047":2518,"28048":0,"28049":-1,"28050":0,"28051":0,"28052":0,"28053":-1,"28054":-1,"28055":0,"28056":0,"28057":18,"28058":0,"28059":-1,"28060":0,"28061":-1,"28062":0,"28063":2181,"28064":2194,"28065":-1,"28066":0,"28067":-1,"28068":0,"28069":-1,"28070":0,"28071":-1,"28072":-1,"28073":0,"28074":-1,"28075":0,"28076":-1,"28077":0,"28078":0,"28079":0,"28080":-1,"28081":2351,"28082":0,"28083":0,"28084":0,"28085":0,"28086":2196,"28087":-1,"28088":2008,"28089":0,"28090":0,"28091":2214,"28092":0,"28093":-1,"28094":0,"28095":-1,"28096":2662,"28097":0,"28098":0,"28099":2087,"28100":2518,"28101":-1,"28102":0,"28103":-1,"28104":0,"28105":2580,"28106":0,"28107":0,"28108":0,"28109":0,"28110":-1,"28111":0,"28112":2034,"28113":-1,"28114":2501,"28115":0,"28116":-1,"28117":0,"28118":0,"28119":0,"28120":0,"28121":2624,"28122":2648,"28123":0,"28124":2534,"28125":0,"28126":-1,"28127":0,"28128":0,"28129":2315,"28130":0,"28131":-1,"28132":2469,"28133":109,"28134":0,"28135":0,"28136":13,"28137":-1,"28138":0,"28139":-1,"28140":0,"28141":2580,"28142":0,"28143":102,"28144":-1,"28145":-1,"28146":0,"28147":2602,"28148":0,"28149":0,"28150":2509,"28151":2350,"28152":0,"28153":0,"28154":2288,"28155":-1,"28156":-1,"28157":2084,"28158":-1,"28159":0,"28160":2382,"28161":2179,"28162":0,"28163":0,"28164":0,"28165":-1,"28166":-1,"28167":0,"28168":0,"28169":0,"28170":0,"28171":813,"28172":0,"28173":-1,"28174":-1,"28175":0,"28176":2050,"28177":0,"28178":2459,"28179":-1,"28180":-1,"28181":0,"28182":-1,"28183":859,"28184":0,"28185":0,"28186":0,"28187":448,"28188":-1,"28189":0,"28190":0,"28191":2233,"28192":0,"28193":0,"28194":0,"28195":0,"28196":0,"28197":-1,"28198":-1,"28199":0,"28200":2338,"28201":2304,"28202":2206,"28203":0,"28204":0,"28205":-1,"28206":2130,"28207":0,"28208":-1,"28209":-1,"28210":-1,"28211":0,"28212":0,"28213":0,"28214":2452,"28215":-1,"28216":-1,"28217":2504,"28218":-1,"28219":0,"28220":0,"28221":-1,"28222":2567,"28223":0,"28224":-1,"28225":0,"28226":312,"28227":0,"28228":0,"28229":-1,"28230":2671,"28231":0,"28232":2592,"28233":0,"28234":2533,"28235":2663,"28236":-1,"28237":0,"28238":0,"28239":2283,"28240":-1,"28241":-1,"28242":0,"28243":-1,"28244":0,"28245":2422,"28246":-1,"28247":0,"28248":2301,"28249":-1,"28250":0,"28251":-1,"28252":2636,"28253":0,"28254":-1,"28255":-1,"28256":2612,"28257":2123,"28258":2273,"28259":0,"28260":2312,"28261":30,"28262":455,"28263":-1,"28264":2368,"28265":0,"28266":0,"28267":0,"28268":2048,"28269":2351,"28270":2523,"28271":-1,"28272":-1,"28273":0,"28274":0,"28275":2450,"28276":-1,"28277":0,"28278":-1,"28279":-1,"28280":0,"28281":0,"28282":2582,"28283":2380,"28284":0,"28285":0,"28286":0,"28287":0,"28288":2182,"28289":0,"28290":187,"28291":0,"28292":-1,"28293":0,"28294":-1,"28295":2072,"28296":-1,"28297":-1,"28298":2579,"28299":0,"28300":0,"28301":0,"28302":-1,"28303":0,"28304":-1,"28305":21,"28306":0,"28307":-1,"28308":-1,"28309":-1,"28310":-1,"28311":-1,"28312":29,"28313":-1,"28314":-1,"28315":107,"28316":2287,"28317":0,"28318":-1,"28319":-1,"28320":0,"28321":2461,"28322":0,"28323":0,"28324":0,"28325":0,"28326":-1,"28327":2189,"28328":2615,"28329":0,"28330":-1,"28331":-1,"28332":-1,"28333":2663,"28334":-1,"28335":-1,"28336":0,"28337":0,"28338":0,"28339":-1,"28340":0,"28341":2300,"28342":0,"28343":0,"28344":0,"28345":0,"28346":0,"28347":-1,"28348":2304,"28349":-1,"28350":-1,"28351":0,"28352":0,"28353":0,"28354":0,"28355":2271,"28356":75,"28357":-1,"28358":0,"28359":2338,"28360":2482,"28361":0,"28362":0,"28363":0,"28364":0,"28365":0,"28366":8,"28367":0,"28368":2231,"28369":142,"28370":2356,"28371":-1,"28372":2326,"28373":2053,"28374":-1,"28375":-1,"28376":2215,"28377":0,"28378":0,"28379":-1,"28380":-1,"28381":-1,"28382":0,"28383":2376,"28384":2162,"28385":-1,"28386":0,"28387":2200,"28388":0,"28389":2452,"28390":0,"28391":0,"28392":2055,"28393":-1,"28394":2608,"28395":0,"28396":-1,"28397":0,"28398":0,"28399":-1,"28400":0,"28401":0,"28402":2170,"28403":0,"28404":-1,"28405":0,"28406":-1,"28407":-1,"28408":-1,"28409":0,"28410":0,"28411":-1,"28412":0,"28413":-1,"28414":2335,"28415":-1,"28416":0,"28417":0,"28418":80,"28419":-1,"28420":34,"28421":0,"28422":-1,"28423":0,"28424":-1,"28425":2338,"28426":0,"28427":22,"28428":0,"28429":0,"28430":0,"28431":0,"28432":0,"28433":2355,"28434":-1,"28435":-1,"28436":0,"28437":0,"28438":2077,"28439":0,"28440":-1,"28441":-1,"28442":2454,"28443":0,"28444":-1,"28445":-1,"28446":0,"28447":-1,"28448":0,"28449":0,"28450":0,"28451":0,"28452":2492,"28453":0,"28454":0,"28455":475,"28456":0,"28457":-1,"28458":2535,"28459":-1,"28460":2399,"28461":-1,"28462":0,"28463":-1,"28464":0,"28465":-1,"28466":0,"28467":0,"28468":-1,"28469":0,"28470":0,"28471":2612,"28472":0,"28473":422,"28474":2128,"28475":0,"28476":-1,"28477":0,"28478":2372,"28479":0,"28480":-1,"28481":0,"28482":-1,"28483":0,"28484":-1,"28485":-1,"28486":-1,"28487":-1,"28488":-1,"28489":25,"28490":2261,"28491":0,"28492":11,"28493":0,"28494":-1,"28495":0,"28496":0,"28497":0,"28498":-1,"28499":0,"28500":0,"28501":-1,"28502":620,"28503":-1,"28504":2523,"28505":0,"28506":462,"28507":2194,"28508":-1,"28509":-1,"28510":448,"28511":0,"28512":0,"28513":-1,"28514":0,"28515":0,"28516":-1,"28517":0,"28518":0,"28519":205,"28520":0,"28521":2581,"28522":0,"28523":0,"28524":2156,"28525":0,"28526":-1,"28527":0,"28528":-1,"28529":-1,"28530":-1,"28531":-1,"28532":0,"28533":2093,"28534":-1,"28535":-1,"28536":-1,"28537":2046,"28538":0,"28539":0,"28540":2276,"28541":-1,"28542":-1,"28543":0,"28544":-1,"28545":-1,"28546":0,"28547":0,"28548":-1,"28549":-1,"28550":-1,"28551":0,"28552":-1,"28553":-1,"28554":0,"28555":0,"28556":2042,"28557":0,"28558":2327,"28559":98,"28560":-1,"28561":0,"28562":0,"28563":0,"28564":2401,"28565":2178,"28566":0,"28567":0,"28568":-1,"28569":-1,"28570":0,"28571":0,"28572":-1,"28573":-1,"28574":0,"28575":2458,"28576":0,"28577":0,"28578":-1,"28579":0,"28580":0,"28581":0,"28582":0,"28583":2530,"28584":0,"28585":-1,"28586":2014,"28587":0,"28588":2190,"28589":-1,"28590":0,"28591":-1,"28592":0,"28593":-1,"28594":0,"28595":0,"28596":0,"28597":0,"28598":0,"28599":2660,"28600":0,"28601":2615,"28602":0,"28603":2063,"28604":2369,"28605":2163,"28606":-1,"28607":2545,"28608":2630,"28609":0,"28610":0,"28611":2601,"28612":0,"28613":0,"28614":0,"28615":0,"28616":-1,"28617":2385,"28618":-1,"28619":2305,"28620":-1,"28621":13,"28622":0,"28623":0,"28624":-1,"28625":0,"28626":0,"28627":2182,"28628":0,"28629":2537,"28630":0,"28631":2267,"28632":-1,"28633":0,"28634":33,"28635":0,"28636":-1,"28637":2573,"28638":0,"28639":-1,"28640":2241,"28641":2548,"28642":2482,"28643":-1,"28644":-1,"28645":0,"28646":205,"28647":0,"28648":-1,"28649":0,"28650":-1,"28651":0,"28652":2187,"28653":0,"28654":0,"28655":2076,"28656":2232,"28657":0,"28658":-1,"28659":0,"28660":0,"28661":2559,"28662":-1,"28663":2471,"28664":-1,"28665":2241,"28666":0,"28667":0,"28668":0,"28669":-1,"28670":0,"28671":-1,"28672":-1,"28673":-1,"28674":0,"28675":0,"28676":0,"28677":-1,"28678":-1,"28679":2627,"28680":96,"28681":0,"28682":0,"28683":0,"28684":0,"28685":2227,"28686":2674,"28687":0,"28688":0,"28689":0,"28690":-1,"28691":-1,"28692":-1,"28693":2637,"28694":2290,"28695":-1,"28696":-1,"28697":0,"28698":0,"28699":524,"28700":-1,"28701":0,"28702":-1,"28703":-1,"28704":-1,"28705":0,"28706":0,"28707":-1,"28708":-1,"28709":-1,"28710":-1,"28711":2023,"28712":2519,"28713":329,"28714":0,"28715":0,"28716":0,"28717":-1,"28718":-1,"28719":2166,"28720":0,"28721":-1,"28722":2284,"28723":0,"28724":0,"28725":-1,"28726":0,"28727":0,"28728":2236,"28729":2612,"28730":0,"28731":-1,"28732":-1,"28733":0,"28734":-1,"28735":-1,"28736":-1,"28737":0,"28738":0,"28739":2222,"28740":0,"28741":0,"28742":359,"28743":-1,"28744":2290,"28745":0,"28746":2107,"28747":0,"28748":0,"28749":0,"28750":-1,"28751":-1,"28752":2198,"28753":-1,"28754":0,"28755":0,"28756":-1,"28757":2597,"28758":0,"28759":0,"28760":-1,"28761":-1,"28762":2473,"28763":-1,"28764":0,"28765":0,"28766":-1,"28767":-1,"28768":0,"28769":2577,"28770":0,"28771":460,"28772":0,"28773":0,"28774":2587,"28775":0,"28776":-1,"28777":0,"28778":2654,"28779":-1,"28780":0,"28781":0,"28782":0,"28783":798,"28784":-1,"28785":-1,"28786":-1,"28787":15,"28788":0,"28789":0,"28790":-1,"28791":2517,"28792":0,"28793":0,"28794":0,"28795":0,"28796":0,"28797":-1,"28798":0,"28799":-1,"28800":-1,"28801":0,"28802":0,"28803":-1,"28804":-1,"28805":0,"28806":2333,"28807":-1,"28808":0,"28809":-1,"28810":0,"28811":-1,"28812":2389,"28813":0,"28814":-1,"28815":0,"28816":2406,"28817":0,"28818":0,"28819":0,"28820":2007,"28821":-1,"28822":0,"28823":662,"28824":-1,"28825":-1,"28826":0,"28827":0,"28828":-1,"28829":0,"28830":0,"28831":2035,"28832":-1,"28833":2335,"28834":0,"28835":-1,"28836":-1,"28837":-1,"28838":2185,"28839":-1,"28840":-1,"28841":-1,"28842":-1,"28843":0,"28844":2072,"28845":0,"28846":0,"28847":-1,"28848":0,"28849":0,"28850":-1,"28851":0,"28852":0,"28853":0,"28854":2500,"28855":-1,"28856":0,"28857":2623,"28858":2123,"28859":0,"28860":0,"28861":0,"28862":-1,"28863":2051,"28864":0,"28865":-1,"28866":0,"28867":0,"28868":-1,"28869":-1,"28870":-1,"28871":-1,"28872":0,"28873":2093,"28874":145,"28875":-1,"28876":0,"28877":0,"28878":0,"28879":2151,"28880":0,"28881":2325,"28882":-1,"28883":0,"28884":-1,"28885":2401,"28886":0,"28887":0,"28888":0,"28889":0,"28890":0,"28891":-1,"28892":0,"28893":-1,"28894":2143,"28895":0,"28896":0,"28897":2218,"28898":2174,"28899":2065,"28900":-1,"28901":0,"28902":2500,"28903":-1,"28904":0,"28905":2579,"28906":2390,"28907":0,"28908":0,"28909":0,"28910":0,"28911":0,"28912":0,"28913":0,"28914":0,"28915":0,"28916":-1,"28917":-1,"28918":0,"28919":0,"28920":0,"28921":402,"28922":-1,"28923":0,"28924":0,"28925":705,"28926":2647,"28927":524,"28928":2293,"28929":0,"28930":455,"28931":0,"28932":0,"28933":-1,"28934":-1,"28935":2155,"28936":906,"28937":0,"28938":0,"28939":2418,"28940":0,"28941":2281,"28942":0,"28943":0,"28944":0,"28945":-1,"28946":0,"28947":-1,"28948":2044,"28949":-1,"28950":-1,"28951":-1,"28952":-1,"28953":-1,"28954":2192,"28955":0,"28956":2036,"28957":0,"28958":0,"28959":0,"28960":0,"28961":0,"28962":0,"28963":0,"28964":0,"28965":303,"28966":0,"28967":0,"28968":0,"28969":0,"28970":0,"28971":-1,"28972":2027,"28973":2312,"28974":0,"28975":19,"28976":0,"28977":0,"28978":-1,"28979":-1,"28980":0,"28981":0,"28982":0,"28983":0,"28984":-1,"28985":0,"28986":0,"28987":-1,"28988":209,"28989":2607,"28990":0,"28991":0,"28992":0,"28993":2177,"28994":-1,"28995":-1,"28996":0,"28997":2258,"28998":-1,"28999":-1,"29000":1997,"29001":0,"29002":-1,"29003":-1,"29004":-1,"29005":0,"29006":0,"29007":-1,"29008":2092,"29009":2525,"29010":2392,"29011":0,"29012":0,"29013":-1,"29014":0,"29015":-1,"29016":-1,"29017":2372,"29018":0,"29019":333,"29020":-1,"29021":2370,"29022":2595,"29023":0,"29024":0,"29025":-1,"29026":-1,"29027":0,"29028":0,"29029":0,"29030":2044,"29031":-1,"29032":2540,"29033":884,"29034":0,"29035":0,"29036":-1,"29037":-1,"29038":0,"29039":2511,"29040":0,"29041":0,"29042":602,"29043":0,"29044":-1,"29045":2022,"29046":107,"29047":0,"29048":0,"29049":2351,"29050":-1,"29051":0,"29052":0,"29053":-1,"29054":0,"29055":2050,"29056":10,"29057":-1,"29058":2586,"29059":0,"29060":0,"29061":205,"29062":2284,"29063":0,"29064":-1,"29065":3,"29066":2592,"29067":0,"29068":0,"29069":-1,"29070":0,"29071":-1,"29072":2380,"29073":2239,"29074":-1,"29075":0,"29076":0,"29077":2580,"29078":0,"29079":2540,"29080":0,"29081":0,"29082":159,"29083":0,"29084":-1,"29085":-1,"29086":2328,"29087":2598,"29088":0,"29089":0,"29090":-1,"29091":2178,"29092":-1,"29093":-1,"29094":0,"29095":0,"29096":2206,"29097":2663,"29098":0,"29099":0,"29100":2521,"29101":0,"29102":0,"29103":0,"29104":0,"29105":-1,"29106":2259,"29107":-1,"29108":0,"29109":2245,"29110":2562,"29111":0,"29112":-1,"29113":-1,"29114":0,"29115":0,"29116":-1,"29117":-1,"29118":-1,"29119":2284,"29120":0,"29121":0,"29122":-1,"29123":2113,"29124":2268,"29125":0,"29126":2016,"29127":0,"29128":0,"29129":0,"29130":0,"29131":2528,"29132":-1,"29133":0,"29134":2175,"29135":-1,"29136":2016,"29137":2010,"29138":0,"29139":0,"29140":-1,"29141":0,"29142":-1,"29143":-1,"29144":-1,"29145":-1,"29146":-1,"29147":2496,"29148":-1,"29149":-1,"29150":-1,"29151":0,"29152":0,"29153":0,"29154":0,"29155":0,"29156":2656,"29157":-1,"29158":0,"29159":2165,"29160":0,"29161":-1,"29162":0,"29163":2260,"29164":-1,"29165":0,"29166":-1,"29167":-1,"29168":0,"29169":0,"29170":0,"29171":-1,"29172":2577,"29173":-1,"29174":2635,"29175":-1,"29176":-1,"29177":14,"29178":-1,"29179":-1,"29180":0,"29181":2473,"29182":0,"29183":0,"29184":0,"29185":0,"29186":0,"29187":-1,"29188":0,"29189":0,"29190":-1,"29191":0,"29192":2361,"29193":0,"29194":0,"29195":2438,"29196":0,"29197":187,"29198":0,"29199":0,"29200":0,"29201":0,"29202":0,"29203":0,"29204":-1,"29205":0,"29206":0,"29207":2610,"29208":-1,"29209":2465,"29210":-1,"29211":-1,"29212":-1,"29213":0,"29214":0,"29215":0,"29216":-1,"29217":-1,"29218":1995,"29219":0,"29220":0,"29221":2055,"29222":0,"29223":2551,"29224":88,"29225":-1,"29226":-1,"29227":2133,"29228":0,"29229":-1,"29230":-1,"29231":0,"29232":0,"29233":2120,"29234":2363,"29235":0,"29236":0,"29237":0,"29238":0,"29239":0,"29240":-1,"29241":2283,"29242":-1,"29243":2354,"29244":0,"29245":-1,"29246":0,"29247":-1,"29248":0,"29249":-1,"29250":0,"29251":0,"29252":0,"29253":-1,"29254":0,"29255":2401,"29256":0,"29257":0,"29258":0,"29259":0,"29260":-1,"29261":0,"29262":0,"29263":2347,"29264":2028,"29265":0,"29266":-1,"29267":0,"29268":-1,"29269":2372,"29270":0,"29271":0,"29272":584,"29273":0,"29274":-1,"29275":0,"29276":0,"29277":-1,"29278":-1,"29279":0,"29280":0,"29281":2262,"29282":-1,"29283":-1,"29284":2477,"29285":0,"29286":0,"29287":2016,"29288":0,"29289":-1,"29290":-1,"29291":-1,"29292":0,"29293":0,"29294":-1,"29295":0,"29296":0,"29297":0,"29298":0,"29299":312,"29300":2188,"29301":0,"29302":0,"29303":0,"29304":-1,"29305":0,"29306":2300,"29307":2123,"29308":-1,"29309":-1,"29310":0,"29311":-1,"29312":2297,"29313":2135,"29314":-1,"29315":-1,"29316":0,"29317":-1,"29318":0,"29319":-1,"29320":0,"29321":0,"29322":-1,"29323":2130,"29324":0,"29325":2479,"29326":787,"29327":0,"29328":2677,"29329":0,"29330":813,"29331":-1,"29332":0,"29333":0,"29334":0,"29335":187,"29336":-1,"29337":198,"29338":-1,"29339":-1,"29340":0,"29341":0,"29342":0,"29343":-1,"29344":1994,"29345":0,"29346":-1,"29347":0,"29348":0,"29349":0,"29350":-1,"29351":-1,"29352":0,"29353":-1,"29354":2607,"29355":-1,"29356":0,"29357":0,"29358":-1,"29359":-1,"29360":0,"29361":325,"29362":2020,"29363":0,"29364":2081,"29365":2455,"29366":0,"29367":64,"29368":-1,"29369":2184,"29370":0,"29371":0,"29372":-1,"29373":-1,"29374":572,"29375":0,"29376":0,"29377":-1,"29378":-1,"29379":0,"29380":-1,"29381":0,"29382":0,"29383":-1,"29384":0,"29385":0,"29386":0,"29387":2265,"29388":2572,"29389":-1,"29390":-1,"29391":0,"29392":-1,"29393":0,"29394":0,"29395":-1,"29396":0,"29397":0,"29398":-1,"29399":0,"29400":2305,"29401":-1,"29402":0,"29403":0,"29404":0,"29405":1993,"29406":-1,"29407":2329,"29408":-1,"29409":2148,"29410":0,"29411":2348,"29412":2077,"29413":2254,"29414":-1,"29415":359,"29416":0,"29417":2405,"29418":0,"29419":2389,"29420":-1,"29421":0,"29422":0,"29423":-1,"29424":-1,"29425":-1,"29426":2245,"29427":2082,"29428":2449,"29429":-1,"29430":0,"29431":0,"29432":0,"29433":0,"29434":0,"29435":0,"29436":0,"29437":0,"29438":2239,"29439":0,"29440":0,"29441":0,"29442":0,"29443":402,"29444":0,"29445":-1,"29446":-1,"29447":2425,"29448":-1,"29449":669,"29450":0,"29451":2671,"29452":281,"29453":0,"29454":0,"29455":0,"29456":0,"29457":0,"29458":2629,"29459":-1,"29460":0,"29461":-1,"29462":14,"29463":0,"29464":-1,"29465":2205,"29466":0,"29467":-1,"29468":0,"29469":2164,"29470":0,"29471":0,"29472":-1,"29473":-1,"29474":2568,"29475":0,"29476":0,"29477":0,"29478":0,"29479":412,"29480":0,"29481":-1,"29482":2533,"29483":2278,"29484":0,"29485":0,"29486":-1,"29487":0,"29488":-1,"29489":-1,"29490":0,"29491":0,"29492":0,"29493":-1,"29494":0,"29495":2512,"29496":0,"29497":-1,"29498":-1,"29499":0,"29500":2392,"29501":-1,"29502":0,"29503":2340,"29504":0,"29505":0,"29506":1996,"29507":-1,"29508":-1,"29509":187,"29510":-1,"29511":-1,"29512":0,"29513":0,"29514":0,"29515":-1,"29516":0,"29517":2406,"29518":120,"29519":0,"29520":0,"29521":2385,"29522":0,"29523":0,"29524":0,"29525":0,"29526":0,"29527":2081,"29528":-1,"29529":-1,"29530":2241,"29531":2491,"29532":0,"29533":0,"29534":2570,"29535":-1,"29536":0,"29537":2279,"29538":2632,"29539":2643,"29540":-1,"29541":-1,"29542":-1,"29543":2552,"29544":0,"29545":-1,"29546":2132,"29547":0,"29548":-1,"29549":-1,"29550":0,"29551":2142,"29552":0,"29553":0,"29554":0,"29555":-1,"29556":-1,"29557":-1,"29558":0,"29559":0,"29560":2323,"29561":-1,"29562":-1,"29563":29,"29564":0,"29565":-1,"29566":-1,"29567":0,"29568":2604,"29569":61,"29570":0,"29571":0,"29572":2207,"29573":-1,"29574":2556,"29575":-1,"29576":0,"29577":0,"29578":-1,"29579":0,"29580":2389,"29581":-1,"29582":0,"29583":0,"29584":0,"29585":-1,"29586":0,"29587":0,"29588":0,"29589":0,"29590":0,"29591":0,"29592":0,"29593":-1,"29594":0,"29595":292,"29596":2176,"29597":0,"29598":2549,"29599":0,"29600":0,"29601":-1,"29602":-1,"29603":-1,"29604":2322,"29605":0,"29606":-1,"29607":-1,"29608":-1,"29609":0,"29610":0,"29611":0,"29612":-1,"29613":0,"29614":2284,"29615":-1,"29616":-1,"29617":2144,"29618":-1,"29619":0,"29620":-1,"29621":-1,"29622":0,"29623":-1,"29624":-1,"29625":148,"29626":0,"29627":0,"29628":0,"29629":0,"29630":-1,"29631":0,"29632":-1,"29633":2459,"29634":0,"29635":0,"29636":2442,"29637":2423,"29638":693,"29639":-1,"29640":2231,"29641":0,"29642":-1,"29643":0,"29644":0,"29645":0,"29646":-1,"29647":0,"29648":0,"29649":0,"29650":2557,"29651":-1,"29652":2525,"29653":-1,"29654":-1,"29655":-1,"29656":-1,"29657":-1,"29658":2637,"29659":0,"29660":-1,"29661":0,"29662":2299,"29663":0,"29664":-1,"29665":0,"29666":2205,"29667":-1,"29668":2631,"29669":2396,"29670":0,"29671":-1,"29672":-1,"29673":0,"29674":-1,"29675":2553,"29676":2270,"29677":-1,"29678":23,"29679":0,"29680":-1,"29681":0,"29682":-1,"29683":2022,"29684":-1,"29685":2488,"29686":0,"29687":0,"29688":0,"29689":2549,"29690":-1,"29691":-1,"29692":300,"29693":0,"29694":0,"29695":0,"29696":-1,"29697":2260,"29698":2189,"29699":2508,"29700":0,"29701":0,"29702":0,"29703":500,"29704":-1,"29705":61,"29706":-1,"29707":1997,"29708":0,"29709":0,"29710":264,"29711":0,"29712":-1,"29713":0,"29714":0,"29715":-1,"29716":0,"29717":0,"29718":-1,"29719":170,"29720":-1,"29721":2212,"29722":2667,"29723":2149,"29724":884,"29725":2210,"29726":-1,"29727":0,"29728":386,"29729":0,"29730":0,"29731":-1,"29732":2466,"29733":-1,"29734":-1,"29735":0,"29736":2233,"29737":-1,"29738":2350,"29739":-1,"29740":0,"29741":0,"29742":0,"29743":2607,"29744":0,"29745":2439,"29746":2274,"29747":2375,"29748":0,"29749":-1,"29750":-1,"29751":0,"29752":0,"29753":2109,"29754":0,"29755":-1,"29756":2476,"29757":4,"29758":-1,"29759":0,"29760":0,"29761":0,"29762":2089,"29763":2077,"29764":0,"29765":0,"29766":0,"29767":-1,"29768":-1,"29769":2570,"29770":2068,"29771":2103,"29772":-1,"29773":2328,"29774":0,"29775":2505,"29776":909,"29777":0,"29778":2673,"29779":2534,"29780":418,"29781":0,"29782":2455,"29783":0,"29784":0,"29785":-1,"29786":-1,"29787":-1,"29788":-1,"29789":-1,"29790":0,"29791":-1,"29792":-1,"29793":-1,"29794":0,"29795":-1,"29796":2215,"29797":567,"29798":43,"29799":2052,"29800":0,"29801":2461,"29802":0,"29803":0,"29804":0,"29805":0,"29806":0,"29807":-1,"29808":-1,"29809":-1,"29810":0,"29811":2598,"29812":-1,"29813":-1,"29814":-1,"29815":0,"29816":0,"29817":26,"29818":0,"29819":0,"29820":-1,"29821":2605,"29822":-1,"29823":-1,"29824":2507,"29825":0,"29826":-1,"29827":0,"29828":2291,"29829":2118,"29830":0,"29831":0,"29832":0,"29833":0,"29834":0,"29835":-1,"29836":0,"29837":-1,"29838":0,"29839":-1,"29840":2143,"29841":-1,"29842":0,"29843":0,"29844":2073,"29845":-1,"29846":-1,"29847":2489,"29848":-1,"29849":-1,"29850":0,"29851":-1,"29852":0,"29853":-1,"29854":0,"29855":-1,"29856":0,"29857":2430,"29858":0,"29859":0,"29860":0,"29861":0,"29862":0,"29863":359,"29864":2409,"29865":0,"29866":2672,"29867":0,"29868":2063,"29869":0,"29870":0,"29871":0,"29872":-1,"29873":-1,"29874":0,"29875":0,"29876":2005,"29877":0,"29878":-1,"29879":2004,"29880":0,"29881":2361,"29882":0,"29883":2221,"29884":-1,"29885":0,"29886":2560,"29887":2599,"29888":-1,"29889":0,"29890":-1,"29891":0,"29892":0,"29893":0,"29894":0,"29895":-1,"29896":-1,"29897":2267,"29898":0,"29899":2038,"29900":0,"29901":-1,"29902":2299,"29903":0,"29904":0,"29905":2398,"29906":0,"29907":2072,"29908":0,"29909":0,"29910":-1,"29911":2046,"29912":-1,"29913":-1,"29914":2353,"29915":0,"29916":-1,"29917":2483,"29918":2658,"29919":0,"29920":-1,"29921":-1,"29922":-1,"29923":33,"29924":0,"29925":0,"29926":2236,"29927":2297,"29928":2097,"29929":0,"29930":0,"29931":-1,"29932":-1,"29933":0,"29934":-1,"29935":0,"29936":2391,"29937":520,"29938":-1,"29939":2489,"29940":0,"29941":2064,"29942":101,"29943":0,"29944":-1,"29945":0,"29946":669,"29947":2363,"29948":-1,"29949":-1,"29950":0,"29951":0,"29952":2638,"29953":-1,"29954":-1,"29955":2536,"29956":0,"29957":0,"29958":0,"29959":0,"29960":0,"29961":0,"29962":0,"29963":0,"29964":2266,"29965":0,"29966":0,"29967":-1,"29968":-1,"29969":-1,"29970":0,"29971":-1,"29972":0,"29973":-1,"29974":0,"29975":-1,"29976":-1,"29977":0,"29978":559,"29979":-1,"29980":0,"29981":0,"29982":0,"29983":0,"29984":0,"29985":0,"29986":0,"29987":-1,"29988":0,"29989":2619,"29990":0,"29991":0,"29992":0,"29993":-1,"29994":-1,"29995":-1,"29996":0,"29997":0,"29998":0,"29999":0,"30000":-1,"30001":0,"30002":2676,"30003":-1,"30004":0,"30005":2485,"30006":98,"30007":0,"30008":0,"30009":2251,"30010":-1,"30011":0,"30012":0,"30013":-1,"30014":0,"30015":2101,"30016":0,"30017":-1,"30018":2063,"30019":0,"30020":0,"30021":2638,"30022":2634,"30023":-1,"30024":0,"30025":-1,"30026":2580,"30027":0,"30028":0,"30029":0,"30030":2649,"30031":-1,"30032":0,"30033":2643,"30034":0,"30035":2615,"30036":2607,"30037":0,"30038":-1,"30039":-1,"30040":0,"30041":-1,"30042":142,"30043":-1,"30044":2453,"30045":0,"30046":0,"30047":-1,"30048":2491,"30049":0,"30050":0,"30051":0,"30052":0,"30053":2463,"30054":0,"30055":0,"30056":0,"30057":0,"30058":0,"30059":-1,"30060":669,"30061":0,"30062":-1,"30063":-1,"30064":0,"30065":2145,"30066":-1,"30067":2271,"30068":310,"30069":0,"30070":0,"30071":0,"30072":-1,"30073":36,"30074":584,"30075":2082,"30076":2512,"30077":-1,"30078":0,"30079":0,"30080":0,"30081":0,"30082":2122,"30083":2434,"30084":-1,"30085":0,"30086":0,"30087":-1,"30088":0,"30089":0,"30090":0,"30091":2640,"30092":0,"30093":-1,"30094":0,"30095":0,"30096":2530,"30097":-1,"30098":0,"30099":0,"30100":-1,"30101":2032,"30102":2036,"30103":2391,"30104":0,"30105":0,"30106":0,"30107":142,"30108":0,"30109":-1,"30110":0,"30111":0,"30112":-1,"30113":2092,"30114":-1,"30115":0,"30116":2064,"30117":404,"30118":0,"30119":-1,"30120":0,"30121":0,"30122":13,"30123":0,"30124":2039,"30125":0,"30126":-1,"30127":0,"30128":0,"30129":-1,"30130":0,"30131":2230,"30132":-1,"30133":2192,"30134":-1,"30135":0,"30136":0,"30137":-1,"30138":-1,"30139":-1,"30140":0,"30141":0,"30142":-1,"30143":0,"30144":2387,"30145":0,"30146":-1,"30147":0,"30148":2115,"30149":0,"30150":0,"30151":0,"30152":0,"30153":2537,"30154":0,"30155":2053,"30156":0,"30157":0,"30158":0,"30159":0,"30160":-1,"30161":0,"30162":0,"30163":0,"30164":0,"30165":0,"30166":0,"30167":-1,"30168":-1,"30169":0,"30170":2347,"30171":0,"30172":0,"30173":0,"30174":-1,"30175":-1,"30176":-1,"30177":0,"30178":0,"30179":0,"30180":0,"30181":0,"30182":-1,"30183":0,"30184":2426,"30185":-1,"30186":-1,"30187":-1,"30188":0,"30189":0,"30190":0,"30191":0,"30192":0,"30193":2226,"30194":0,"30195":0,"30196":-1,"30197":0,"30198":-1,"30199":0,"30200":2183,"30201":0,"30202":-1,"30203":-1,"30204":0,"30205":2598,"30206":0,"30207":-1,"30208":0,"30209":-1,"30210":461,"30211":455,"30212":2563,"30213":-1,"30214":-1,"30215":-1,"30216":-1,"30217":-1,"30218":0,"30219":-1,"30220":-1,"30221":2276,"30222":0,"30223":2632,"30224":386,"30225":2123,"30226":0,"30227":-1,"30228":0,"30229":2304,"30230":2633,"30231":2492,"30232":0,"30233":0,"30234":0,"30235":0,"30236":0,"30237":0,"30238":598,"30239":284,"30240":0,"30241":2477,"30242":0,"30243":0,"30244":-1,"30245":0,"30246":0,"30247":0,"30248":0,"30249":-1,"30250":0,"30251":0,"30252":0,"30253":0,"30254":-1,"30255":-1,"30256":-1,"30257":-1,"30258":130,"30259":-1,"30260":2640,"30261":30,"30262":2045,"30263":0,"30264":-1,"30265":-1,"30266":0,"30267":2264,"30268":-1,"30269":-1,"30270":2622,"30271":2638,"30272":7,"30273":102,"30274":0,"30275":0,"30276":0,"30277":0,"30278":0,"30279":0,"30280":2593,"30281":-1,"30282":2272,"30283":-1,"30284":0,"30285":547,"30286":0,"30287":2259,"30288":2155,"30289":-1,"30290":0,"30291":2453,"30292":0,"30293":0,"30294":-1,"30295":612,"30296":0,"30297":-1,"30298":0,"30299":2482,"30300":0,"30301":-1,"30302":0,"30303":-1,"30304":0,"30305":-1,"30306":0,"30307":0,"30308":1995,"30309":-1,"30310":-1,"30311":2663,"30312":-1,"30313":2012,"30314":2257,"30315":-1,"30316":0,"30317":2514,"30318":2599,"30319":0,"30320":0,"30321":-1,"30322":0,"30323":2350,"30324":2348,"30325":0,"30326":412,"30327":-1,"30328":-1,"30329":0,"30330":-1,"30331":0,"30332":0,"30333":-1,"30334":2485,"30335":0,"30336":2607,"30337":0,"30338":-1,"30339":2367,"30340":0,"30341":0,"30342":0,"30343":0,"30344":0,"30345":0,"30346":787,"30347":0,"30348":0,"30349":13,"30350":0,"30351":2396,"30352":0,"30353":0,"30354":-1,"30355":2190,"30356":2516,"30357":0,"30358":-1,"30359":300,"30360":-1,"30361":0,"30362":0,"30363":0,"30364":0,"30365":2529,"30366":-1,"30367":2185,"30368":0,"30369":500,"30370":0,"30371":0,"30372":299,"30373":2487,"30374":-1,"30375":2018,"30376":0,"30377":0,"30378":-1,"30379":2293,"30380":2480,"30381":2664,"30382":787,"30383":0,"30384":168,"30385":0,"30386":-1,"30387":0,"30388":-1,"30389":-1,"30390":0,"30391":0,"30392":0,"30393":-1,"30394":-1,"30395":2176,"30396":-1,"30397":0,"30398":-1,"30399":0,"30400":0,"30401":-1,"30402":2419,"30403":-1,"30404":-1,"30405":-1,"30406":2089,"30407":0,"30408":0,"30409":2370,"30410":0,"30411":2351,"30412":0,"30413":-1,"30414":0,"30415":-1,"30416":0,"30417":126,"30418":-1,"30419":-1,"30420":2328,"30421":-1,"30422":-1,"30423":-1,"30424":0,"30425":0,"30426":2339,"30427":0,"30428":-1,"30429":0,"30430":0,"30431":0,"30432":0,"30433":2105,"30434":2193,"30435":2289,"30436":0,"30437":2009,"30438":2143,"30439":0,"30440":-1,"30441":0,"30442":-1,"30443":-1,"30444":693,"30445":2562,"30446":2399,"30447":0,"30448":2618,"30449":0,"30450":-1,"30451":0,"30452":0,"30453":-1,"30454":2083,"30455":0,"30456":0,"30457":0,"30458":0,"30459":483,"30460":0,"30461":-1,"30462":0,"30463":2291,"30464":2309,"30465":-1,"30466":0,"30467":-1,"30468":443,"30469":-1,"30470":2113,"30471":0,"30472":-1,"30473":-1,"30474":0,"30475":-1,"30476":2080,"30477":0,"30478":-1,"30479":0,"30480":-1,"30481":0,"30482":-1,"30483":2411,"30484":0,"30485":-1,"30486":691,"30487":-1,"30488":0,"30489":0,"30490":-1,"30491":-1,"30492":0,"30493":-1,"30494":-1,"30495":2502,"30496":0,"30497":0,"30498":-1,"30499":0,"30500":-1,"30501":359,"30502":-1,"30503":-1,"30504":602,"30505":-1,"30506":907,"30507":2383,"30508":0,"30509":-1,"30510":0,"30511":2076,"30512":2644,"30513":-1,"30514":2679,"30515":0,"30516":-1,"30517":-1,"30518":0,"30519":2429,"30520":0,"30521":2332,"30522":2564,"30523":-1,"30524":-1,"30525":0,"30526":-1,"30527":0,"30528":0,"30529":0,"30530":0,"30531":-1,"30532":-1,"30533":-1,"30534":2285,"30535":0,"30536":2214,"30537":0,"30538":2332,"30539":0,"30540":0,"30541":2248,"30542":29,"30543":422,"30544":0,"30545":2013,"30546":-1,"30547":2224,"30548":0,"30549":0,"30550":0,"30551":0,"30552":0,"30553":-1,"30554":-1,"30555":0,"30556":-1,"30557":-1,"30558":0,"30559":0,"30560":-1,"30561":-1,"30562":0,"30563":2340,"30564":0,"30565":0,"30566":0,"30567":-1,"30568":0,"30569":-1,"30570":0,"30571":-1,"30572":0,"30573":2096,"30574":0,"30575":2586,"30576":38,"30577":-1,"30578":0,"30579":2113,"30580":0,"30581":0,"30582":0,"30583":-1,"30584":0,"30585":837,"30586":-1,"30587":0,"30588":0,"30589":-1,"30590":0,"30591":-1,"30592":2126,"30593":0,"30594":0,"30595":0,"30596":0,"30597":-1,"30598":130,"30599":299,"30600":-1,"30601":2303,"30602":2353,"30603":-1,"30604":0,"30605":-1,"30606":-1,"30607":0,"30608":0,"30609":20,"30610":0,"30611":0,"30612":-1,"30613":-1,"30614":-1,"30615":25,"30616":0,"30617":0,"30618":-1,"30619":0,"30620":-1,"30621":325,"30622":2280,"30623":0,"30624":0,"30625":0,"30626":-1,"30627":-1,"30628":0,"30629":-1,"30630":-1,"30631":0,"30632":2402,"30633":2150,"30634":2272,"30635":0,"30636":2185,"30637":-1,"30638":-1,"30639":2465,"30640":0,"30641":-1,"30642":2050,"30643":-1,"30644":-1,"30645":0,"30646":0,"30647":0,"30648":0,"30649":-1,"30650":-1,"30651":-1,"30652":-1,"30653":0,"30654":0,"30655":-1,"30656":0,"30657":-1,"30658":0,"30659":2244,"30660":-1,"30661":0,"30662":2154,"30663":2185,"30664":0,"30665":65,"30666":0,"30667":0,"30668":-1,"30669":0,"30670":0,"30671":0,"30672":0,"30673":-1,"30674":0,"30675":-1,"30676":-1,"30677":0,"30678":0,"30679":2217,"30680":0,"30681":0,"30682":-1,"30683":0,"30684":-1,"30685":-1,"30686":2340,"30687":0,"30688":-1,"30689":0,"30690":-1,"30691":2225,"30692":0,"30693":0,"30694":0,"30695":2574,"30696":-1,"30697":0,"30698":0,"30699":2546,"30700":-1,"30701":0,"30702":0,"30703":-1,"30704":0,"30705":-1,"30706":-1,"30707":0,"30708":0,"30709":0,"30710":-1,"30711":2348,"30712":0,"30713":0,"30714":0,"30715":0,"30716":604,"30717":0,"30718":2446,"30719":2115,"30720":-1,"30721":0,"30722":2129,"30723":2107,"30724":0,"30725":61,"30726":-1,"30727":0,"30728":837,"30729":2678,"30730":-1,"30731":2086,"30732":2292,"30733":0,"30734":0,"30735":-1,"30736":0,"30737":455,"30738":-1,"30739":-1,"30740":2214,"30741":2505,"30742":-1,"30743":-1,"30744":0,"30745":0,"30746":0,"30747":0,"30748":0,"30749":-1,"30750":0,"30751":-1,"30752":0,"30753":2090,"30754":0,"30755":-1,"30756":-1,"30757":0,"30758":0,"30759":2254,"30760":0,"30761":0,"30762":0,"30763":0,"30764":2533,"30765":2248,"30766":0,"30767":-1,"30768":2621,"30769":0,"30770":2615,"30771":-1,"30772":-1,"30773":-1,"30774":2667,"30775":0,"30776":584,"30777":2063,"30778":0,"30779":0,"30780":-1,"30781":0,"30782":0,"30783":-1,"30784":-1,"30785":154,"30786":0,"30787":-1,"30788":0,"30789":0,"30790":2169,"30791":-1,"30792":2478,"30793":0,"30794":0,"30795":2291,"30796":0,"30797":0,"30798":-1,"30799":0,"30800":0,"30801":-1,"30802":-1,"30803":0,"30804":0,"30805":0,"30806":2268,"30807":0,"30808":0,"30809":2027,"30810":-1,"30811":2310,"30812":141,"30813":639,"30814":-1,"30815":-1,"30816":2460,"30817":2424,"30818":0,"30819":-1,"30820":0,"30821":0,"30822":0,"30823":0,"30824":-1,"30825":-1,"30826":-1,"30827":0,"30828":0,"30829":0,"30830":0,"30831":0,"30832":-1,"30833":0,"30834":0,"30835":2350,"30836":-1,"30837":0,"30838":0,"30839":2678,"30840":0,"30841":0,"30842":0,"30843":0,"30844":-1,"30845":2473,"30846":-1,"30847":2007,"30848":-1,"30849":-1,"30850":-1,"30851":-1,"30852":0,"30853":0,"30854":-1,"30855":793,"30856":2609,"30857":2565,"30858":2545,"30859":-1,"30860":0,"30861":0,"30862":-1,"30863":0,"30864":2136,"30865":0,"30866":2410,"30867":0,"30868":2046,"30869":0,"30870":-1,"30871":2646,"30872":0,"30873":2310,"30874":2390,"30875":0,"30876":7,"30877":-1,"30878":508,"30879":0,"30880":2585,"30881":-1,"30882":0,"30883":-1,"30884":-1,"30885":0,"30886":-1,"30887":2127,"30888":-1,"30889":2455,"30890":0,"30891":-1,"30892":0,"30893":77,"30894":0,"30895":0,"30896":0,"30897":0,"30898":0,"30899":0,"30900":0,"30901":2594,"30902":-1,"30903":0,"30904":0,"30905":2420,"30906":0,"30907":0,"30908":0,"30909":0,"30910":0,"30911":-1,"30912":0,"30913":0,"30914":0,"30915":2244,"30916":2035,"30917":-1,"30918":-1,"30919":-1,"30920":0,"30921":-1,"30922":0,"30923":-1,"30924":0,"30925":2567,"30926":0,"30927":2596,"30928":-1,"30929":-1,"30930":0,"30931":0,"30932":0,"30933":0,"30934":0,"30935":0,"30936":0,"30937":0,"30938":-1,"30939":2033,"30940":0,"30941":0,"30942":0,"30943":0,"30944":0,"30945":-1,"30946":0,"30947":2208,"30948":15,"30949":0,"30950":0,"30951":2431,"30952":-1,"30953":-1,"30954":-1,"30955":2320,"30956":0,"30957":102,"30958":0,"30959":-1,"30960":2658,"30961":-1,"30962":-1,"30963":0,"30964":0,"30965":-1,"30966":0,"30967":0,"30968":-1,"30969":-1,"30970":0,"30971":0,"30972":0,"30973":2067,"30974":-1,"30975":-1,"30976":0,"30977":0,"30978":-1,"30979":-1,"30980":0,"30981":-1,"30982":0,"30983":0,"30984":-1,"30985":2377,"30986":-1,"30987":0,"30988":36,"30989":859,"30990":-1,"30991":0,"30992":0,"30993":303,"30994":-1,"30995":0,"30996":-1,"30997":-1,"30998":0,"30999":443,"31000":-1,"31001":0,"31002":80,"31003":0,"31004":-1,"31005":-1,"31006":96,"31007":0,"31008":2031,"31009":0,"31010":2507,"31011":2330,"31012":-1,"31013":2322,"31014":0,"31015":0,"31016":0,"31017":0,"31018":-1,"31019":27,"31020":0,"31021":2333,"31022":2061,"31023":-1,"31024":-1,"31025":-1,"31026":0,"31027":0,"31028":0,"31029":842,"31030":2539,"31031":-1,"31032":-1,"31033":199,"31034":-1,"31035":-1,"31036":0,"31037":-1,"31038":2197,"31039":-1,"31040":0,"31041":0,"31042":2042,"31043":2282,"31044":-1,"31045":0,"31046":0,"31047":0,"31048":-1,"31049":443,"31050":0,"31051":2499,"31052":-1,"31053":-1,"31054":0,"31055":0,"31056":0,"31057":0,"31058":0,"31059":0,"31060":-1,"31061":0,"31062":-1,"31063":2313,"31064":325,"31065":0,"31066":0,"31067":-1,"31068":2485,"31069":0,"31070":0,"31071":-1,"31072":0,"31073":2318,"31074":2144,"31075":0,"31076":-1,"31077":-1,"31078":-1,"31079":0,"31080":10,"31081":0,"31082":0,"31083":-1,"31084":-1,"31085":-1,"31086":2377,"31087":0,"31088":-1,"31089":0,"31090":0,"31091":0,"31092":-1,"31093":-1,"31094":-1,"31095":0,"31096":34,"31097":-1,"31098":-1,"31099":2673,"31100":0,"31101":-1,"31102":2068,"31103":-1,"31104":-1,"31105":-1,"31106":-1,"31107":0,"31108":0,"31109":0,"31110":0,"31111":-1,"31112":0,"31113":-1,"31114":-1,"31115":0,"31116":-1,"31117":-1,"31118":0,"31119":0,"31120":2177,"31121":-1,"31122":0,"31123":-1,"31124":-1,"31125":0,"31126":2343,"31127":0,"31128":0,"31129":0,"31130":0,"31131":-1,"31132":0,"31133":0,"31134":0,"31135":-1,"31136":-1,"31137":0,"31138":0,"31139":2223,"31140":0,"31141":0,"31142":-1,"31143":2572,"31144":-1,"31145":-1,"31146":2439,"31147":0,"31148":2429,"31149":-1,"31150":2406,"31151":280,"31152":2059,"31153":-1,"31154":-1,"31155":0,"31156":0,"31157":2597,"31158":0,"31159":2476,"31160":0,"31161":126,"31162":0,"31163":-1,"31164":-1,"31165":0,"31166":-1,"31167":-1,"31168":0,"31169":2512,"31170":-1,"31171":2603,"31172":0,"31173":0,"31174":0,"31175":-1,"31176":2012,"31177":2347,"31178":0,"31179":2484,"31180":2248,"31181":-1,"31182":0,"31183":0,"31184":0,"31185":0,"31186":0,"31187":2654,"31188":2541,"31189":0,"31190":0,"31191":0,"31192":-1,"31193":0,"31194":2472,"31195":-1,"31196":2062,"31197":-1,"31198":0,"31199":-1,"31200":-1,"31201":0,"31202":-1,"31203":2533,"31204":-1,"31205":0,"31206":0,"31207":0,"31208":0,"31209":2540,"31210":2505,"31211":-1,"31212":2372,"31213":2189,"31214":2536,"31215":0,"31216":-1,"31217":0,"31218":2057,"31219":0,"31220":0,"31221":0,"31222":0,"31223":0,"31224":0,"31225":0,"31226":-1,"31227":0,"31228":-1,"31229":0,"31230":-1,"31231":2247,"31232":0,"31233":0,"31234":0,"31235":0,"31236":0,"31237":-1,"31238":0,"31239":0,"31240":0,"31241":-1,"31242":-1,"31243":-1,"31244":-1,"31245":2581,"31246":-1,"31247":0,"31248":0,"31249":0,"31250":0,"31251":2272,"31252":0,"31253":86,"31254":-1,"31255":2492,"31256":0,"31257":0,"31258":-1,"31259":0,"31260":33,"31261":-1,"31262":2032,"31263":667,"31264":-1,"31265":0,"31266":-1,"31267":0,"31268":-1,"31269":0,"31270":0,"31271":-1,"31272":0,"31273":-1,"31274":0,"31275":-1,"31276":0,"31277":359,"31278":-1,"31279":0,"31280":2220,"31281":0,"31282":0,"31283":-1,"31284":0,"31285":-1,"31286":-1,"31287":-1,"31288":0,"31289":-1,"31290":0,"31291":-1,"31292":-1,"31293":-1,"31294":0,"31295":179,"31296":0,"31297":620,"31298":2216,"31299":-1,"31300":0,"31301":0,"31302":-1,"31303":0,"31304":0,"31305":0,"31306":2480,"31307":-1,"31308":0,"31309":813,"31310":2006,"31311":0,"31312":-1,"31313":2,"31314":2665,"31315":0,"31316":2251,"31317":-1,"31318":-1,"31319":0,"31320":0,"31321":0,"31322":0,"31323":2643,"31324":-1,"31325":0,"31326":2251,"31327":-1,"31328":28,"31329":0,"31330":-1,"31331":-1,"31332":0,"31333":0,"31334":217,"31335":65,"31336":0,"31337":-1,"31338":0,"31339":0,"31340":-1,"31341":-1,"31342":-1,"31343":2046,"31344":2572,"31345":0,"31346":0,"31347":-1,"31348":-1,"31349":2669,"31350":-1,"31351":-1,"31352":0,"31353":-1,"31354":0,"31355":2600,"31356":0,"31357":0,"31358":0,"31359":2085,"31360":2249,"31361":2157,"31362":0,"31363":2345,"31364":-1,"31365":0,"31366":-1,"31367":0,"31368":-1,"31369":0,"31370":2586,"31371":0,"31372":0,"31373":2062,"31374":0,"31375":0,"31376":2490,"31377":2075,"31378":0,"31379":-1,"31380":350,"31381":0,"31382":-1,"31383":0,"31384":2162,"31385":2313,"31386":2079,"31387":-1,"31388":-1,"31389":0,"31390":0,"31391":0,"31392":0,"31393":0,"31394":0,"31395":0,"31396":0,"31397":0,"31398":-1,"31399":0,"31400":0,"31401":0,"31402":0,"31403":-1,"31404":2427,"31405":-1,"31406":0,"31407":0,"31408":0,"31409":0,"31410":-1,"31411":120,"31412":0,"31413":0,"31414":2483,"31415":2579,"31416":0,"31417":2341,"31418":0,"31419":-1,"31420":0,"31421":-1,"31422":2003,"31423":-1,"31424":-1,"31425":0,"31426":2346,"31427":-1,"31428":-1,"31429":0,"31430":0,"31431":0,"31432":2560,"31433":0,"31434":0,"31435":0,"31436":0,"31437":-1,"31438":-1,"31439":2196,"31440":-1,"31441":0,"31442":0,"31443":-1,"31444":667,"31445":0,"31446":2313,"31447":2344,"31448":0,"31449":2639,"31450":0,"31451":0,"31452":2119,"31453":2410,"31454":0,"31455":-1,"31456":-1,"31457":0,"31458":0,"31459":-1,"31460":0,"31461":-1,"31462":0,"31463":0,"31464":0,"31465":-1,"31466":0,"31467":-1,"31468":-1,"31469":-1,"31470":-1,"31471":2261,"31472":0,"31473":-1,"31474":0,"31475":0,"31476":0,"31477":-1,"31478":-1,"31479":2522,"31480":0,"31481":0,"31482":-1,"31483":-1,"31484":2392,"31485":0,"31486":2238,"31487":-1,"31488":0,"31489":0,"31490":2462,"31491":0,"31492":0,"31493":-1,"31494":-1,"31495":0,"31496":2205,"31497":-1,"31498":554,"31499":0,"31500":-1,"31501":0,"31502":2219,"31503":2370,"31504":0,"31505":0,"31506":0,"31507":0,"31508":2459,"31509":0,"31510":0,"31511":-1,"31512":-1,"31513":0,"31514":2344,"31515":-1,"31516":2169,"31517":2180,"31518":0,"31519":-1,"31520":0,"31521":837,"31522":0,"31523":0,"31524":-1,"31525":0,"31526":0,"31527":0,"31528":0,"31529":0,"31530":1993,"31531":0,"31532":0,"31533":0,"31534":-1,"31535":0,"31536":2417,"31537":-1,"31538":-1,"31539":-1,"31540":0,"31541":-1,"31542":0,"31543":-1,"31544":-1,"31545":908,"31546":0,"31547":-1,"31548":0,"31549":2579,"31550":461,"31551":0,"31552":-1,"31553":0,"31554":-1,"31555":2015,"31556":0,"31557":-1,"31558":2000,"31559":0,"31560":0,"31561":0,"31562":-1,"31563":-1,"31564":0,"31565":-1,"31566":-1,"31567":0,"31568":533,"31569":0,"31570":2291,"31571":0,"31572":0,"31573":2380,"31574":0,"31575":-1,"31576":639,"31577":-1,"31578":2560,"31579":0,"31580":0,"31581":0,"31582":0,"31583":-1,"31584":2601,"31585":0,"31586":0,"31587":-1,"31588":0,"31589":2289,"31590":0,"31591":0,"31592":0,"31593":2491,"31594":-1,"31595":-1,"31596":0,"31597":-1,"31598":0,"31599":0,"31600":0,"31601":0,"31602":-1,"31603":0,"31604":0,"31605":179,"31606":-1,"31607":20,"31608":-1,"31609":0,"31610":-1,"31611":0,"31612":0,"31613":0,"31614":0,"31615":0,"31616":2079,"31617":0,"31618":2349,"31619":-1,"31620":-1,"31621":-1,"31622":2530,"31623":2159,"31624":2293,"31625":2426,"31626":0,"31627":0,"31628":0,"31629":2153,"31630":-1,"31631":-1,"31632":0,"31633":0,"31634":2094,"31635":-1,"31636":0,"31637":-1,"31638":0,"31639":-1,"31640":-1,"31641":2422,"31642":2644,"31643":0,"31644":663,"31645":-1,"31646":-1,"31647":0,"31648":0,"31649":0,"31650":-1,"31651":0,"31652":2093,"31653":0,"31654":-1,"31655":-1,"31656":350,"31657":-1,"31658":-1,"31659":0,"31660":0,"31661":0,"31662":2356,"31663":0,"31664":-1,"31665":572,"31666":833,"31667":-1,"31668":-1,"31669":-1,"31670":-1,"31671":0,"31672":-1,"31673":907,"31674":-1,"31675":0,"31676":-1,"31677":19,"31678":2004,"31679":2417,"31680":-1,"31681":-1,"31682":-1,"31683":2185,"31684":2493,"31685":0,"31686":-1,"31687":2448,"31688":-1,"31689":0,"31690":-1,"31691":-1,"31692":0,"31693":0,"31694":-1,"31695":0,"31696":559,"31697":-1,"31698":2396,"31699":-1,"31700":-1,"31701":2475,"31702":2581,"31703":0,"31704":-1,"31705":-1,"31706":-1,"31707":2349,"31708":0,"31709":2455,"31710":2138,"31711":0,"31712":2415,"31713":0,"31714":-1,"31715":2184,"31716":-1,"31717":0,"31718":0,"31719":524,"31720":-1,"31721":-1,"31722":0,"31723":0,"31724":-1,"31725":0,"31726":-1,"31727":359,"31728":2338,"31729":0,"31730":-1,"31731":-1,"31732":0,"31733":2551,"31734":-1,"31735":2002,"31736":0,"31737":-1,"31738":0,"31739":-1,"31740":-1,"31741":-1,"31742":402,"31743":-1,"31744":2517,"31745":2285,"31746":2046,"31747":0,"31748":0,"31749":-1,"31750":2294,"31751":0,"31752":0,"31753":0,"31754":0,"31755":0,"31756":-1,"31757":0,"31758":0,"31759":0,"31760":2526,"31761":-1,"31762":-1,"31763":-1,"31764":0,"31765":-1,"31766":2074,"31767":-1,"31768":10,"31769":720,"31770":2417,"31771":2241,"31772":706,"31773":-1,"31774":-1,"31775":2250,"31776":2481,"31777":0,"31778":0,"31779":0,"31780":0,"31781":554,"31782":2146,"31783":2144,"31784":0,"31785":-1,"31786":0,"31787":2666,"31788":-1,"31789":0,"31790":262,"31791":-1,"31792":-1,"31793":2662,"31794":0,"31795":2436,"31796":2113,"31797":0,"31798":0,"31799":0,"31800":0,"31801":0,"31802":-1,"31803":0,"31804":2042,"31805":0,"31806":2057,"31807":-1,"31808":0,"31809":-1,"31810":-1,"31811":0,"31812":-1,"31813":0,"31814":0,"31815":0,"31816":0,"31817":-1,"31818":0,"31819":-1,"31820":-1,"31821":0,"31822":-1,"31823":0,"31824":2450,"31825":-1,"31826":-1,"31827":2027,"31828":0,"31829":2003,"31830":-1,"31831":-1,"31832":-1,"31833":-1,"31834":-1,"31835":-1,"31836":-1,"31837":88,"31838":0,"31839":0,"31840":2235,"31841":-1,"31842":2159,"31843":-1,"31844":-1,"31845":906,"31846":-1,"31847":-1,"31848":0,"31849":0,"31850":2446,"31851":0,"31852":0,"31853":-1,"31854":0,"31855":0,"31856":0,"31857":-1,"31858":2374,"31859":-1,"31860":2137,"31861":0,"31862":0,"31863":2399,"31864":0,"31865":2498,"31866":2257,"31867":-1,"31868":-1,"31869":-1,"31870":-1,"31871":-1,"31872":-1,"31873":2653,"31874":2229,"31875":0,"31876":0,"31877":0,"31878":0,"31879":-1,"31880":0,"31881":402,"31882":-1,"31883":-1,"31884":2483,"31885":-1,"31886":0,"31887":2388,"31888":0,"31889":0,"31890":-1,"31891":2549,"31892":412,"31893":-1,"31894":0,"31895":-1,"31896":2373,"31897":-1,"31898":2505,"31899":0,"31900":0,"31901":-1,"31902":2523,"31903":-1,"31904":0,"31905":0,"31906":-1,"31907":0,"31908":-1,"31909":-1,"31910":0,"31911":0,"31912":0,"31913":0,"31914":0,"31915":0,"31916":-1,"31917":-1,"31918":2651,"31919":237,"31920":2590,"31921":0,"31922":-1,"31923":0,"31924":2147,"31925":0,"31926":0,"31927":0,"31928":-1,"31929":0,"31930":0,"31931":2582,"31932":-1,"31933":0,"31934":-1,"31935":2283,"31936":168,"31937":0,"31938":0,"31939":2494,"31940":-1,"31941":-1,"31942":-1,"31943":2115,"31944":-1,"31945":2635,"31946":0,"31947":11,"31948":0,"31949":0,"31950":0,"31951":0,"31952":0,"31953":-1,"31954":0,"31955":-1,"31956":0,"31957":-1,"31958":691,"31959":-1,"31960":0,"31961":0,"31962":0,"31963":2679,"31964":0,"31965":0,"31966":-1,"31967":-1,"31968":-1,"31969":2144,"31970":2643,"31971":-1,"31972":0,"31973":2525,"31974":-1,"31975":2015,"31976":312,"31977":-1,"31978":0,"31979":701,"31980":-1,"31981":-1,"31982":-1,"31983":0,"31984":2538,"31985":-1,"31986":0,"31987":246,"31988":0,"31989":0,"31990":0,"31991":2069,"31992":2258,"31993":2415,"31994":-1,"31995":109,"31996":-1,"31997":-1,"31998":0,"31999":0,"32000":2172,"32001":-1,"32002":2286,"32003":-1,"32004":-1,"32005":-1,"32006":0,"32007":0,"32008":-1,"32009":0,"32010":2424,"32011":0,"32012":0,"32013":-1,"32014":0,"32015":-1,"32016":-1,"32017":2379,"32018":2506,"32019":0,"32020":0,"32021":637,"32022":2629,"32023":-1,"32024":-1,"32025":0,"32026":0,"32027":303,"32028":0,"32029":0,"32030":-1,"32031":42,"32032":2028,"32033":0,"32034":-1,"32035":0,"32036":2546,"32037":-1,"32038":-1,"32039":0,"32040":2428,"32041":0,"32042":0,"32043":2365,"32044":2550,"32045":0,"32046":2372,"32047":2646,"32048":0,"32049":-1,"32050":0,"32051":2119,"32052":0,"32053":-1,"32054":0,"32055":-1,"32056":0,"32057":2018,"32058":0,"32059":0,"32060":2328,"32061":0,"32062":0,"32063":0,"32064":0,"32065":-1,"32066":2581,"32067":0,"32068":0,"32069":-1,"32070":0,"32071":0,"32072":0,"32073":735,"32074":2556,"32075":0,"32076":17,"32077":0,"32078":0,"32079":-1,"32080":2165,"32081":0,"32082":0,"32083":2045,"32084":0,"32085":-1,"32086":2268,"32087":-1,"32088":0,"32089":-1,"32090":0,"32091":0,"32092":-1,"32093":0,"32094":2196,"32095":0,"32096":0,"32097":2509,"32098":0,"32099":0,"32100":0,"32101":-1,"32102":0,"32103":0,"32104":0,"32105":2499,"32106":0,"32107":0,"32108":0,"32109":0,"32110":-1,"32111":0,"32112":0,"32113":-1,"32114":2489,"32115":0,"32116":0,"32117":2205,"32118":-1,"32119":-1,"32120":0,"32121":842,"32122":0,"32123":0,"32124":2564,"32125":0,"32126":2589,"32127":2436,"32128":2605,"32129":0,"32130":0,"32131":-1,"32132":-1,"32133":2395,"32134":0,"32135":-1,"32136":0,"32137":-1,"32138":-1,"32139":2661,"32140":-1,"32141":0,"32142":2463,"32143":2549,"32144":0,"32145":-1,"32146":0,"32147":-1,"32148":-1,"32149":-1,"32150":0,"32151":2252,"32152":-1,"32153":0,"32154":483,"32155":-1,"32156":0,"32157":0,"32158":-1,"32159":0,"32160":436,"32161":0,"32162":0,"32163":0,"32164":0,"32165":-1,"32166":2011,"32167":0,"32168":-1,"32169":0,"32170":0,"32171":0,"32172":0,"32173":2643,"32174":2111,"32175":0,"32176":404,"32177":0,"32178":0,"32179":-1,"32180":2342,"32181":0,"32182":0,"32183":0,"32184":0,"32185":2046,"32186":17,"32187":0,"32188":2569,"32189":0,"32190":0,"32191":0,"32192":0,"32193":2041,"32194":-1,"32195":-1,"32196":0,"32197":-1,"32198":-1,"32199":148,"32200":0,"32201":-1,"32202":-1,"32203":-1,"32204":-1,"32205":0,"32206":0,"32207":-1,"32208":0,"32209":2168,"32210":2108,"32211":0,"32212":-1,"32213":0,"32214":0,"32215":0,"32216":-1,"32217":-1,"32218":0,"32219":475,"32220":0,"32221":2003,"32222":137,"32223":2533,"32224":0,"32225":-1,"32226":0,"32227":-1,"32228":0,"32229":0,"32230":-1,"32231":2457,"32232":2176,"32233":-1,"32234":0,"32235":5,"32236":-1,"32237":0,"32238":0,"32239":-1,"32240":0,"32241":-1,"32242":0,"32243":-1,"32244":0,"32245":-1,"32246":0,"32247":0,"32248":4,"32249":341,"32250":2305,"32251":2618,"32252":-1,"32253":0,"32254":2619,"32255":0,"32256":0,"32257":0,"32258":0,"32259":217,"32260":0,"32261":0,"32262":0,"32263":0,"32264":0,"32265":-1,"32266":2601,"32267":0,"32268":0,"32269":2484,"32270":-1,"32271":0,"32272":0,"32273":0,"32274":-1,"32275":2161,"32276":-1,"32277":-1,"32278":0,"32279":0,"32280":0,"32281":-1,"32282":0,"32283":0,"32284":0,"32285":-1,"32286":-1,"32287":-1,"32288":663,"32289":-1,"32290":0,"32291":-1,"32292":0,"32293":-1,"32294":0,"32295":0,"32296":0,"32297":0,"32298":-1,"32299":-1,"32300":0,"32301":-1,"32302":0,"32303":0,"32304":0,"32305":0,"32306":0,"32307":0,"32308":2226,"32309":612,"32310":293,"32311":0,"32312":2051,"32313":0,"32314":0,"32315":-1,"32316":-1,"32317":0,"32318":0,"32319":0,"32320":-1,"32321":-1,"32322":-1,"32323":0,"32324":2490,"32325":0,"32326":-1,"32327":-1,"32328":-1,"32329":-1,"32330":0,"32331":0,"32332":-1,"32333":0,"32334":-1,"32335":0,"32336":2601,"32337":0,"32338":136,"32339":198,"32340":-1,"32341":0,"32342":0,"32343":-1,"32344":2441,"32345":-1,"32346":0,"32347":2285,"32348":2253,"32349":2141,"32350":0,"32351":-1,"32352":-1,"32353":2019,"32354":2229,"32355":-1,"32356":0,"32357":2249,"32358":0,"32359":2190,"32360":2661,"32361":2352,"32362":2489,"32363":2036,"32364":2381,"32365":0,"32366":2053,"32367":2258,"32368":-1,"32369":0,"32370":2223,"32371":0,"32372":0,"32373":0,"32374":-1,"32375":0,"32376":-1,"32377":645,"32378":0,"32379":-1,"32380":2483,"32381":2668,"32382":0,"32383":2201,"32384":2422,"32385":2162,"32386":-1,"32387":2006,"32388":0,"32389":0,"32390":-1,"32391":2298,"32392":327,"32393":-1,"32394":0,"32395":0,"32396":-1,"32397":2483,"32398":2250,"32399":0,"32400":-1,"32401":0,"32402":-1,"32403":0,"32404":2163,"32405":2191,"32406":0,"32407":-1,"32408":-1,"32409":0,"32410":0,"32411":0,"32412":0,"32413":0,"32414":2648,"32415":2202,"32416":2240,"32417":-1,"32418":-1,"32419":2388,"32420":386,"32421":572,"32422":2214,"32423":2209,"32424":0,"32425":0,"32426":-1,"32427":520,"32428":0,"32429":2056,"32430":-1,"32431":0,"32432":0,"32433":0,"32434":0,"32435":0,"32436":2083,"32437":0,"32438":-1,"32439":2102,"32440":0,"32441":2671,"32442":0,"32443":-1,"32444":2484,"32445":-1,"32446":284,"32447":0,"32448":0,"32449":2514,"32450":2437,"32451":-1,"32452":-1,"32453":0,"32454":0,"32455":-1,"32456":2439,"32457":-1,"32458":0,"32459":0,"32460":-1,"32461":2426,"32462":205,"32463":-1,"32464":2401,"32465":2363,"32466":-1,"32467":-1,"32468":-1,"32469":0,"32470":142,"32471":0,"32472":0,"32473":0,"32474":2631,"32475":-1,"32476":-1,"32477":0,"32478":-1,"32479":2581,"32480":-1,"32481":924,"32482":-1,"32483":0,"32484":2262,"32485":-1,"32486":0,"32487":2635,"32488":663,"32489":0,"32490":-1,"32491":2099,"32492":2034,"32493":-1,"32494":2451,"32495":2517,"32496":2197,"32497":-1,"32498":2445,"32499":-1,"32500":2329,"32501":2306,"32502":2663,"32503":2587,"32504":-1,"32505":0,"32506":-1,"32507":0,"32508":2399,"32509":0,"32510":0,"32511":2136,"32512":2141,"32513":0,"32514":2108,"32515":-1,"32516":2159,"32517":0,"32518":0,"32519":-1,"32520":2057,"32521":-1,"32522":0,"32523":-1,"32524":0,"32525":2329,"32526":-1,"32527":2552,"32528":0,"32529":2221,"32530":0,"32531":-1,"32532":287,"32533":2615,"32534":-1,"32535":-1,"32536":2665,"32537":0,"32538":21,"32539":2568,"32540":350,"32541":14,"32542":-1,"32543":-1,"32544":280,"32545":2606,"32546":0,"32547":2588,"32548":-1,"32549":0,"32550":0,"32551":2605,"32552":0,"32553":0,"32554":0,"32555":-1,"32556":0,"32557":0,"32558":2214,"32559":0,"32560":826,"32561":2669,"32562":0,"32563":0,"32564":-1,"32565":0,"32566":-1,"32567":-1,"32568":0,"32569":0,"32570":0,"32571":0,"32572":2363,"32573":2282,"32574":2654,"32575":0,"32576":-1,"32577":-1,"32578":0,"32579":0,"32580":0,"32581":-1,"32582":2595,"32583":0,"32584":0,"32585":0,"32586":0,"32587":-1,"32588":0,"32589":0,"32590":0,"32591":0,"32592":12,"32593":0,"32594":2428,"32595":0,"32596":0,"32597":-1,"32598":0,"32599":0,"32600":2174,"32601":-1,"32602":2183,"32603":0,"32604":-1,"32605":2655,"32606":2093,"32607":-1,"32608":-1,"32609":2073,"32610":0,"32611":0,"32612":0,"32613":-1,"32614":0,"32615":-1,"32616":-1,"32617":-1,"32618":-1,"32619":0,"32620":-1,"32621":0,"32622":0,"32623":0,"32624":0,"32625":-1,"32626":0,"32627":-1,"32628":0,"32629":-1,"32630":0,"32631":-1,"32632":0,"32633":-1,"32634":0,"32635":0,"32636":-1,"32637":-1,"32638":0,"32639":0,"32640":397,"32641":0,"32642":-1,"32643":0,"32644":0,"32645":0,"32646":0,"32647":2530,"32648":-1,"32649":-1,"32650":2278,"32651":0,"32652":0,"32653":-1,"32654":-1,"32655":-1,"32656":0,"32657":0,"32658":0,"32659":-1,"32660":0,"32661":-1,"32662":0,"32663":0,"32664":-1,"32665":-1,"32666":-1,"32667":-1,"32668":0,"32669":10,"32670":-1,"32671":0,"32672":598,"32673":0,"32674":-1,"32675":0,"32676":0,"32677":0,"32678":0,"32679":547,"32680":2019,"32681":0,"32682":-1,"32683":0,"32684":-1,"32685":-1,"32686":2398,"32687":36,"32688":-1,"32689":0,"32690":2053,"32691":0,"32692":-1,"32693":2292,"32694":0,"32695":0,"32696":0,"32697":2669,"32698":2636,"32699":0,"32700":15,"32701":0,"32702":-1,"32703":2138,"32704":2033,"32705":0,"32706":2343,"32707":2112,"32708":353,"32709":0,"32710":2106,"32711":2262,"32712":2205,"32713":2296,"32714":0,"32715":-1,"32716":37,"32717":0,"32718":0,"32719":2618,"32720":-1,"32721":-1,"32722":2473,"32723":2452,"32724":2040,"32725":0,"32726":0,"32727":-1,"32728":-1,"32729":0,"32730":0,"32731":-1,"32732":0,"32733":0,"32734":-1,"32735":-1,"32736":0,"32737":2218,"32738":2418,"32739":-1,"32740":0,"32741":0,"32742":0,"32743":0,"32744":0,"32745":0,"32746":15,"32747":0,"32748":-1,"32749":-1,"32750":0,"32751":-1,"32752":0,"32753":2623,"32754":0,"32755":2314,"32756":-1,"32757":-1,"32758":2101,"32759":0,"32760":-1,"32761":0,"32762":-1,"32763":2036,"32764":0,"32765":-1,"32766":0,"32767":-1,"32768":-1,"32769":0,"32770":2509,"32771":0,"32772":0,"32773":-1,"32774":614,"32775":0,"32776":0,"32777":0,"32778":0,"32779":2205,"32780":-1,"32781":2673,"32782":0,"32783":-1,"32784":-1,"32785":2380,"32786":-1,"32787":0,"32788":-1,"32789":-1,"32790":0,"32791":0,"32792":0,"32793":-1,"32794":-1,"32795":41,"32796":0,"32797":2344,"32798":2433,"32799":0,"32800":-1,"32801":0,"32802":0,"32803":0,"32804":-1,"32805":849,"32806":-1,"32807":-1,"32808":2261,"32809":2339,"32810":2568,"32811":0,"32812":2108,"32813":0,"32814":-1,"32815":-1,"32816":2239,"32817":0,"32818":2017,"32819":-1,"32820":136,"32821":0,"32822":2288,"32823":0,"32824":0,"32825":2280,"32826":-1,"32827":2104,"32828":0,"32829":2645,"32830":603,"32831":-1,"32832":2393,"32833":2423,"32834":0,"32835":-1,"32836":0,"32837":0,"32838":0,"32839":0,"32840":0,"32841":-1,"32842":0,"32843":0,"32844":544,"32845":483,"32846":-1,"32847":2321,"32848":0,"32849":-1,"32850":0,"32851":0,"32852":0,"32853":-1,"32854":-1,"32855":0,"32856":603,"32857":0,"32858":0,"32859":0,"32860":2533,"32861":-1,"32862":-1,"32863":-1,"32864":567,"32865":-1,"32866":-1,"32867":-1,"32868":0,"32869":2561,"32870":-1,"32871":0,"32872":0,"32873":0,"32874":0,"32875":0,"32876":2483,"32877":0,"32878":0,"32879":-1,"32880":2180,"32881":0,"32882":-1,"32883":0,"32884":0,"32885":23,"32886":0,"32887":-1,"32888":738,"32889":0,"32890":-1,"32891":-1,"32892":0,"32893":2165,"32894":0,"32895":2591,"32896":-1,"32897":-1,"32898":2617,"32899":2086,"32900":341,"32901":0,"32902":0,"32903":14,"32904":0,"32905":0,"32906":-1,"32907":0,"32908":-1,"32909":-1,"32910":0,"32911":-1,"32912":0,"32913":-1,"32914":0,"32915":-1,"32916":0,"32917":2144,"32918":2142,"32919":2326,"32920":0,"32921":0,"32922":0,"32923":0,"32924":0,"32925":0,"32926":-1,"32927":-1,"32928":0,"32929":-1,"32930":0,"32931":-1,"32932":-1,"32933":0,"32934":0,"32935":-1,"32936":0,"32937":0,"32938":0,"32939":2016,"32940":0,"32941":-1,"32942":-1,"32943":-1,"32944":0,"32945":-1,"32946":-1,"32947":2104,"32948":-1,"32949":2166,"32950":0,"32951":-1,"32952":0,"32953":0,"32954":2269,"32955":0,"32956":0,"32957":-1,"32958":0,"32959":-1,"32960":2105,"32961":0,"32962":-1,"32963":0,"32964":0,"32965":2032,"32966":0,"32967":-1,"32968":0,"32969":0,"32970":0,"32971":0,"32972":2248,"32973":2197,"32974":0,"32975":2432,"32976":-1,"32977":0,"32978":2406,"32979":2358,"32980":2062,"32981":-1,"32982":2227,"32983":-1,"32984":0,"32985":604,"32986":0,"32987":637,"32988":0,"32989":-1,"32990":-1,"32991":0,"32992":0,"32993":0,"32994":2531,"32995":-1,"32996":-1,"32997":0,"32998":0,"32999":-1,"33000":2195,"33001":0,"33002":0,"33003":0,"33004":0,"33005":2418,"33006":2601,"33007":0,"33008":0,"33009":0,"33010":0,"33011":-1,"33012":0,"33013":2412,"33014":0,"33015":0,"33016":-1,"33017":-1,"33018":-1,"33019":0,"33020":2103,"33021":-1,"33022":0,"33023":0,"33024":-1,"33025":261,"33026":2568,"33027":-1,"33028":-1,"33029":2124,"33030":-1,"33031":-1,"33032":2599,"33033":0,"33034":-1,"33035":-1,"33036":-1,"33037":2657,"33038":2042,"33039":0,"33040":0,"33041":0,"33042":0,"33043":0,"33044":0,"33045":2270,"33046":2315,"33047":-1,"33048":0,"33049":0,"33050":0,"33051":-1,"33052":0,"33053":0,"33054":0,"33055":461,"33056":-1,"33057":-1,"33058":0,"33059":-1,"33060":2245,"33061":0,"33062":-1,"33063":0,"33064":2431,"33065":0,"33066":137,"33067":-1,"33068":-1,"33069":0,"33070":-1,"33071":0,"33072":0,"33073":2267,"33074":0,"33075":-1,"33076":0,"33077":61,"33078":0,"33079":2434,"33080":0,"33081":-1,"33082":0,"33083":2480,"33084":-1,"33085":-1,"33086":2317,"33087":-1,"33088":2503,"33089":0,"33090":0,"33091":0,"33092":2468,"33093":199,"33094":1991,"33095":397,"33096":-1,"33097":-1,"33098":0,"33099":-1,"33100":-1,"33101":2590,"33102":317,"33103":-1,"33104":-1,"33105":2398,"33106":0,"33107":0,"33108":-1,"33109":0,"33110":2300,"33111":2557,"33112":2051,"33113":0,"33114":-1,"33115":2362,"33116":0,"33117":0,"33118":-1,"33119":-1,"33120":2454,"33121":2096,"33122":-1,"33123":86,"33124":0,"33125":0,"33126":2363,"33127":2479,"33128":-1,"33129":2316,"33130":179,"33131":-1,"33132":-1,"33133":0,"33134":0,"33135":0,"33136":0,"33137":2114,"33138":2409,"33139":2232,"33140":0,"33141":205,"33142":-1,"33143":0,"33144":0,"33145":0,"33146":-1,"33147":2368,"33148":0,"33149":0,"33150":908,"33151":-1,"33152":0,"33153":2045,"33154":-1,"33155":-1,"33156":-1,"33157":2612,"33158":2153,"33159":0,"33160":0,"33161":0,"33162":2395,"33163":0,"33164":2561,"33165":-1,"33166":0,"33167":0,"33168":0,"33169":0,"33170":0,"33171":-1,"33172":2124,"33173":-1,"33174":0,"33175":0,"33176":-1,"33177":0,"33178":0,"33179":29,"33180":220,"33181":-1,"33182":0,"33183":2162,"33184":0,"33185":0,"33186":2649,"33187":0,"33188":2147,"33189":0,"33190":-1,"33191":0,"33192":67,"33193":572,"33194":-1,"33195":-1,"33196":2156,"33197":-1,"33198":0,"33199":0,"33200":0,"33201":-1,"33202":2083,"33203":-1,"33204":2402,"33205":-1,"33206":0,"33207":0,"33208":0,"33209":0,"33210":2063,"33211":2510,"33212":0,"33213":-1,"33214":-1,"33215":0,"33216":-1,"33217":-1,"33218":2506,"33219":2466,"33220":-1,"33221":402,"33222":2410,"33223":0,"33224":-1,"33225":-1,"33226":-1,"33227":0,"33228":0,"33229":0,"33230":0,"33231":0,"33232":2433,"33233":2293,"33234":-1,"33235":-1,"33236":-1,"33237":0,"33238":-1,"33239":0,"33240":-1,"33241":0,"33242":0,"33243":-1,"33244":0,"33245":0,"33246":0,"33247":0,"33248":-1,"33249":136,"33250":0,"33251":-1,"33252":0,"33253":0,"33254":-1,"33255":2287,"33256":0,"33257":15,"33258":-1,"33259":2088,"33260":0,"33261":0,"33262":2599,"33263":2061,"33264":-1,"33265":-1,"33266":0,"33267":936,"33268":-1,"33269":0,"33270":0,"33271":0,"33272":0,"33273":0,"33274":0,"33275":2174,"33276":0,"33277":567,"33278":0,"33279":-1,"33280":-1,"33281":0,"33282":0,"33283":-1,"33284":0,"33285":0,"33286":2450,"33287":0,"33288":-1,"33289":39,"33290":-1,"33291":0,"33292":-1,"33293":0,"33294":0,"33295":0,"33296":-1,"33297":0,"33298":0,"33299":0,"33300":0,"33301":0,"33302":-1,"33303":0,"33304":0,"33305":-1,"33306":2188,"33307":-1,"33308":0,"33309":0,"33310":2215,"33311":-1,"33312":-1,"33313":-1,"33314":353,"33315":0,"33316":-1,"33317":0,"33318":0,"33319":-1,"33320":-1,"33321":-1,"33322":0,"33323":2025,"33324":2245,"33325":0,"33326":-1,"33327":0,"33328":-1,"33329":-1,"33330":833,"33331":2239,"33332":-1,"33333":0,"33334":0,"33335":-1,"33336":-1,"33337":-1,"33338":-1,"33339":0,"33340":1997,"33341":0,"33342":-1,"33343":0,"33344":0,"33345":-1,"33346":0,"33347":0,"33348":0,"33349":-1,"33350":0,"33351":0,"33352":0,"33353":-1,"33354":-1,"33355":0,"33356":2215,"33357":-1,"33358":0,"33359":559,"33360":0,"33361":246,"33362":0,"33363":-1,"33364":298,"33365":0,"33366":0,"33367":156,"33368":0,"33369":0,"33370":2161,"33371":0,"33372":0,"33373":-1,"33374":0,"33375":0,"33376":559,"33377":0,"33378":0,"33379":0,"33380":1993,"33381":0,"33382":0,"33383":-1,"33384":2543,"33385":0,"33386":-1,"33387":40,"33388":2484,"33389":-1,"33390":-1,"33391":0,"33392":-1,"33393":0,"33394":-1,"33395":2249,"33396":0,"33397":-1,"33398":859,"33399":2667,"33400":397,"33401":0,"33402":0,"33403":2086,"33404":0,"33405":0,"33406":-1,"33407":0,"33408":-1,"33409":0,"33410":-1,"33411":2542,"33412":0,"33413":-1,"33414":0,"33415":2190,"33416":412,"33417":-1,"33418":-1,"33419":0,"33420":2550,"33421":-1,"33422":-1,"33423":264,"33424":0,"33425":-1,"33426":0,"33427":-1,"33428":0,"33429":0,"33430":0,"33431":-1,"33432":0,"33433":0,"33434":0,"33435":2587,"33436":-1,"33437":0,"33438":0,"33439":0,"33440":0,"33441":-1,"33442":0,"33443":-1,"33444":0,"33445":0,"33446":2605,"33447":0,"33448":-1,"33449":-1,"33450":2059,"33451":0,"33452":2067,"33453":0,"33454":2132,"33455":-1,"33456":0,"33457":-1,"33458":448,"33459":2160,"33460":2327,"33461":-1,"33462":-1,"33463":0,"33464":2338,"33465":0,"33466":-1,"33467":-1,"33468":0,"33469":0,"33470":-1,"33471":20,"33472":2023,"33473":7,"33474":246,"33475":0,"33476":0,"33477":2026,"33478":-1,"33479":0,"33480":0,"33481":0,"33482":2402,"33483":0,"33484":2442,"33485":2125,"33486":2533,"33487":2341,"33488":0,"33489":0,"33490":-1,"33491":639,"33492":0,"33493":-1,"33494":0,"33495":2050,"33496":0,"33497":-1,"33498":-1,"33499":0,"33500":-1,"33501":2049,"33502":-1,"33503":0,"33504":-1,"33505":-1,"33506":-1,"33507":0,"33508":-1,"33509":0,"33510":-1,"33511":0,"33512":0,"33513":0,"33514":0,"33515":187,"33516":0,"33517":0,"33518":2456,"33519":2655,"33520":0,"33521":0,"33522":0,"33523":0,"33524":0,"33525":0,"33526":2520,"33527":2169,"33528":0,"33529":0,"33530":-1,"33531":0,"33532":0,"33533":0,"33534":-1,"33535":0,"33536":-1,"33537":2282,"33538":-1,"33539":-1,"33540":620,"33541":0,"33542":0,"33543":-1,"33544":2394,"33545":0,"33546":2534,"33547":-1,"33548":0,"33549":0,"33550":0,"33551":0,"33552":2022,"33553":317,"33554":0,"33555":0,"33556":-1,"33557":-1,"33558":77,"33559":-1,"33560":0,"33561":2658,"33562":0,"33563":0,"33564":2194,"33565":-1,"33566":0,"33567":-1,"33568":2509,"33569":-1,"33570":-1,"33571":-1,"33572":-1,"33573":0,"33574":2181,"33575":0,"33576":67,"33577":2160,"33578":0,"33579":-1,"33580":353,"33581":0,"33582":0,"33583":2390,"33584":2401,"33585":524,"33586":2039,"33587":-1,"33588":2521,"33589":0,"33590":0,"33591":-1,"33592":0,"33593":-1,"33594":0,"33595":0,"33596":0,"33597":-1,"33598":-1,"33599":0,"33600":0,"33601":-1,"33602":617,"33603":0,"33604":0,"33605":2550,"33606":0,"33607":0,"33608":2406,"33609":-1,"33610":0,"33611":345,"33612":-1,"33613":-1,"33614":-1,"33615":-1,"33616":0,"33617":622,"33618":0,"33619":0,"33620":2547,"33621":-1,"33622":0,"33623":0,"33624":-1,"33625":-1,"33626":0,"33627":0,"33628":2578,"33629":0,"33630":-1,"33631":-1,"33632":0,"33633":2476,"33634":0,"33635":-1,"33636":0,"33637":0,"33638":2545,"33639":0,"33640":2475,"33641":2271,"33642":2678,"33643":0,"33644":2431,"33645":0,"33646":0,"33647":0,"33648":-1,"33649":612,"33650":2064,"33651":0,"33652":-1,"33653":-1,"33654":0,"33655":2018,"33656":448,"33657":2060,"33658":0,"33659":0,"33660":0,"33661":0,"33662":-1,"33663":-1,"33664":-1,"33665":-1,"33666":-1,"33667":0,"33668":-1,"33669":-1,"33670":0,"33671":-1,"33672":420,"33673":0,"33674":0,"33675":0,"33676":-1,"33677":2182,"33678":0,"33679":0,"33680":-1,"33681":178,"33682":2267,"33683":0,"33684":0,"33685":-1,"33686":-1,"33687":-1,"33688":0,"33689":2425,"33690":2043,"33691":0,"33692":2014,"33693":-1,"33694":0,"33695":2197,"33696":1997,"33697":0,"33698":-1,"33699":2545,"33700":0,"33701":0,"33702":0,"33703":0,"33704":0,"33705":2672,"33706":0,"33707":-1,"33708":2587,"33709":11,"33710":0,"33711":0,"33712":0,"33713":0,"33714":2481,"33715":0,"33716":2398,"33717":-1,"33718":0,"33719":2399,"33720":0,"33721":0,"33722":0,"33723":0,"33724":0,"33725":317,"33726":0,"33727":-1,"33728":0,"33729":-1,"33730":-1,"33731":-1,"33732":-1,"33733":0,"33734":2162,"33735":0,"33736":0,"33737":0,"33738":0,"33739":2460,"33740":2624,"33741":0,"33742":0,"33743":500,"33744":-1,"33745":663,"33746":813,"33747":-1,"33748":0,"33749":0,"33750":-1,"33751":-1,"33752":0,"33753":-1,"33754":2142,"33755":-1,"33756":0,"33757":0,"33758":-1,"33759":0,"33760":0,"33761":0,"33762":23,"33763":2133,"33764":0,"33765":-1,"33766":-1,"33767":0,"33768":2097,"33769":2496,"33770":-1,"33771":0,"33772":2079,"33773":30,"33774":0,"33775":0,"33776":0,"33777":2465,"33778":-1,"33779":2474,"33780":15,"33781":0,"33782":-1,"33783":0,"33784":0,"33785":0,"33786":2219,"33787":-1,"33788":0,"33789":2095,"33790":0,"33791":0,"33792":0,"33793":0,"33794":0,"33795":-1,"33796":0,"33797":-1,"33798":-1,"33799":2364,"33800":0,"33801":2570,"33802":-1,"33803":0,"33804":-1,"33805":0,"33806":0,"33807":0,"33808":0,"33809":0,"33810":-1,"33811":-1,"33812":0,"33813":2174,"33814":0,"33815":0,"33816":0,"33817":1,"33818":2532,"33819":-1,"33820":0,"33821":0,"33822":0,"33823":0,"33824":0,"33825":0,"33826":395,"33827":0,"33828":-1,"33829":0,"33830":0,"33831":2257,"33832":2322,"33833":0,"33834":0,"33835":0,"33836":-1,"33837":-1,"33838":0,"33839":-1,"33840":-1,"33841":-1,"33842":2415,"33843":0,"33844":2628,"33845":2470,"33846":-1,"33847":-1,"33848":0,"33849":2596,"33850":-1,"33851":0,"33852":-1,"33853":554,"33854":0,"33855":141,"33856":0,"33857":0,"33858":-1,"33859":0,"33860":0,"33861":-1,"33862":-1,"33863":-1,"33864":0,"33865":-1,"33866":2503,"33867":-1,"33868":-1,"33869":0,"33870":-1,"33871":420,"33872":2127,"33873":0,"33874":0,"33875":0,"33876":2213,"33877":0,"33878":2215,"33879":0,"33880":-1,"33881":0,"33882":0,"33883":0,"33884":0,"33885":0,"33886":0,"33887":-1,"33888":-1,"33889":0,"33890":-1,"33891":2184,"33892":2331,"33893":-1,"33894":0,"33895":0,"33896":0,"33897":-1,"33898":2037,"33899":-1,"33900":2208,"33901":0,"33902":293,"33903":-1,"33904":0,"33905":-1,"33906":0,"33907":0,"33908":-1,"33909":-1,"33910":0,"33911":0,"33912":0,"33913":0,"33914":-1,"33915":-1,"33916":-1,"33917":0,"33918":7,"33919":2071,"33920":0,"33921":0,"33922":0,"33923":0,"33924":0,"33925":0,"33926":2338,"33927":407,"33928":0,"33929":0,"33930":0,"33931":2023,"33932":-1,"33933":0,"33934":0,"33935":2550,"33936":0,"33937":-1,"33938":-1,"33939":2564,"33940":0,"33941":0,"33942":-1,"33943":2186,"33944":-1,"33945":0,"33946":0,"33947":0,"33948":0,"33949":1999,"33950":2217,"33951":-1,"33952":0,"33953":2357,"33954":-1,"33955":533,"33956":0,"33957":2011,"33958":0,"33959":-1,"33960":2355,"33961":130,"33962":38,"33963":-1,"33964":-1,"33965":0,"33966":-1,"33967":30,"33968":2202,"33969":0,"33970":0,"33971":26,"33972":0,"33973":-1,"33974":2433,"33975":2342,"33976":2358,"33977":0,"33978":0,"33979":2646,"33980":-1,"33981":-1,"33982":-1,"33983":-1,"33984":-1,"33985":2066,"33986":0,"33987":2216,"33988":-1,"33989":0,"33990":0,"33991":0,"33992":-1,"33993":2305,"33994":126,"33995":-1,"33996":2643,"33997":0,"33998":0,"33999":2471,"34000":0,"34001":0,"34002":2460,"34003":0,"34004":0,"34005":0,"34006":2269,"34007":-1,"34008":-1,"34009":39,"34010":2020,"34011":2223,"34012":2427,"34013":-1,"34014":0,"34015":2441,"34016":0,"34017":-1,"34018":0,"34019":0,"34020":0,"34021":0,"34022":2286,"34023":0,"34024":-1,"34025":0,"34026":705,"34027":0,"34028":-1,"34029":2658,"34030":0,"34031":-1,"34032":2064,"34033":0,"34034":0,"34035":0,"34036":0,"34037":-1,"34038":0,"34039":-1,"34040":0,"34041":2641,"34042":2248,"34043":0,"34044":-1,"34045":2100,"34046":667,"34047":0,"34048":-1,"34049":0,"34050":0,"34051":-1,"34052":0,"34053":0,"34054":-1,"34055":0,"34056":0,"34057":-1,"34058":0,"34059":793,"34060":0,"34061":26,"34062":-1,"34063":-1,"34064":2646,"34065":0,"34066":2258,"34067":-1,"34068":0,"34069":2233,"34070":1996,"34071":0,"34072":0,"34073":0,"34074":0,"34075":-1,"34076":-1,"34077":0,"34078":-1,"34079":-1,"34080":2060,"34081":2432,"34082":30,"34083":2173,"34084":0,"34085":0,"34086":299,"34087":0,"34088":-1,"34089":0,"34090":0,"34091":-1,"34092":0,"34093":0,"34094":-1,"34095":-1,"34096":0,"34097":0,"34098":0,"34099":0,"34100":-1,"34101":0,"34102":0,"34103":0,"34104":0,"34105":-1,"34106":-1,"34107":0,"34108":2503,"34109":-1,"34110":0,"34111":2081,"34112":0,"34113":2634,"34114":2277,"34115":0,"34116":0,"34117":-1,"34118":-1,"34119":0,"34120":2171,"34121":0,"34122":0,"34123":2137,"34124":-1,"34125":0,"34126":-1,"34127":0,"34128":-1,"34129":0,"34130":-1,"34131":0,"34132":0,"34133":2431,"34134":0,"34135":-1,"34136":-1,"34137":293,"34138":0,"34139":-1,"34140":2323,"34141":0,"34142":-1,"34143":-1,"34144":-1,"34145":-1,"34146":0,"34147":-1,"34148":514,"34149":2434,"34150":0,"34151":-1,"34152":2125,"34153":2419,"34154":-1,"34155":-1,"34156":-1,"34157":0,"34158":0,"34159":2201,"34160":0,"34161":2428,"34162":0,"34163":0,"34164":0,"34165":0,"34166":25,"34167":0,"34168":0,"34169":1994,"34170":0,"34171":0,"34172":2444,"34173":2634,"34174":0,"34175":0,"34176":-1,"34177":-1,"34178":0,"34179":-1,"34180":0,"34181":133,"34182":-1,"34183":0,"34184":0,"34185":-1,"34186":-1,"34187":0,"34188":-1,"34189":-1,"34190":0,"34191":2611,"34192":0,"34193":-1,"34194":2527,"34195":0,"34196":0,"34197":-1,"34198":179,"34199":-1,"34200":0,"34201":0,"34202":-1,"34203":0,"34204":0,"34205":2253,"34206":-1,"34207":-1,"34208":-1,"34209":2196,"34210":0,"34211":0,"34212":-1,"34213":2488,"34214":0,"34215":0,"34216":-1,"34217":-1,"34218":-1,"34219":0,"34220":0,"34221":2184,"34222":-1,"34223":0,"34224":0,"34225":0,"34226":602,"34227":0,"34228":-1,"34229":-1,"34230":2351,"34231":199,"34232":2174,"34233":-1,"34234":2059,"34235":798,"34236":-1,"34237":-1,"34238":0,"34239":-1,"34240":0,"34241":0,"34242":0,"34243":-1,"34244":0,"34245":-1,"34246":0,"34247":0,"34248":-1,"34249":0,"34250":2223,"34251":-1,"34252":2116,"34253":2422,"34254":2548,"34255":0,"34256":-1,"34257":2485,"34258":2114,"34259":0,"34260":2086,"34261":2125,"34262":0,"34263":-1,"34264":-1,"34265":-1,"34266":0,"34267":0,"34268":-1,"34269":-1,"34270":-1,"34271":0,"34272":0,"34273":-1,"34274":663,"34275":0,"34276":2238,"34277":-1,"34278":0,"34279":0,"34280":0,"34281":-1,"34282":0,"34283":0,"34284":-1,"34285":1992,"34286":0,"34287":0,"34288":0,"34289":-1,"34290":0,"34291":2594,"34292":2613,"34293":620,"34294":2248,"34295":-1,"34296":-1,"34297":-1,"34298":0,"34299":0,"34300":0,"34301":-1,"34302":2193,"34303":2020,"34304":-1,"34305":2340,"34306":-1,"34307":-1,"34308":-1,"34309":0,"34310":0,"34311":0,"34312":-1,"34313":554,"34314":10,"34315":0,"34316":0,"34317":133,"34318":0,"34319":0,"34320":0,"34321":2578,"34322":-1,"34323":2591,"34324":2286,"34325":461,"34326":-1,"34327":2390,"34328":2610,"34329":0,"34330":0,"34331":0,"34332":0,"34333":-1,"34334":0,"34335":0,"34336":0,"34337":0,"34338":-1,"34339":2287,"34340":0,"34341":0,"34342":-1,"34343":2678,"34344":0,"34345":0,"34346":2631,"34347":0,"34348":2162,"34349":837,"34350":0,"34351":-1,"34352":2164,"34353":-1,"34354":2474,"34355":-1,"34356":0,"34357":2271,"34358":0,"34359":0,"34360":-1,"34361":-1,"34362":-1,"34363":2241,"34364":0,"34365":-1,"34366":-1,"34367":-1,"34368":0,"34369":-1,"34370":2154,"34371":0,"34372":2111,"34373":2515,"34374":-1,"34375":0,"34376":0,"34377":101,"34378":2314,"34379":-1,"34380":-1,"34381":-1,"34382":-1,"34383":2149,"34384":2337,"34385":0,"34386":2065,"34387":2481,"34388":-1,"34389":0,"34390":-1,"34391":2598,"34392":198,"34393":-1,"34394":-1,"34395":0,"34396":-1,"34397":-1,"34398":15,"34399":2372,"34400":0,"34401":-1,"34402":0,"34403":-1,"34404":0,"34405":-1,"34406":2524,"34407":-1,"34408":0,"34409":0,"34410":-1,"34411":2269,"34412":-1,"34413":-1,"34414":0,"34415":-1,"34416":-1,"34417":0,"34418":0,"34419":-1,"34420":2368,"34421":-1,"34422":0,"34423":0,"34424":36,"34425":2095,"34426":0,"34427":-1,"34428":0,"34429":0,"34430":2551,"34431":-1,"34432":-1,"34433":0,"34434":0,"34435":0,"34436":2466,"34437":2288,"34438":-1,"34439":2,"34440":-1,"34441":443,"34442":0,"34443":0,"34444":0,"34445":0,"34446":0,"34447":0,"34448":0,"34449":-1,"34450":0,"34451":620,"34452":422,"34453":-1,"34454":0,"34455":-1,"34456":0,"34457":-1,"34458":-1,"34459":-1,"34460":-1,"34461":-1,"34462":0,"34463":-1,"34464":2675,"34465":2569,"34466":691,"34467":2185,"34468":0,"34469":-1,"34470":0,"34471":0,"34472":0,"34473":-1,"34474":118,"34475":0,"34476":-1,"34477":0,"34478":0,"34479":0,"34480":0,"34481":0,"34482":-1,"34483":-1,"34484":0,"34485":0,"34486":-1,"34487":-1,"34488":2594,"34489":639,"34490":0,"34491":2587,"34492":0,"34493":0,"34494":0,"34495":0,"34496":-1,"34497":2195,"34498":-1,"34499":-1,"34500":-1,"34501":350,"34502":0,"34503":2391,"34504":0,"34505":0,"34506":0,"34507":-1,"34508":0,"34509":0,"34510":-1,"34511":2481,"34512":-1,"34513":2163,"34514":-1,"34515":2091,"34516":2095,"34517":2555,"34518":0,"34519":0,"34520":0,"34521":0,"34522":2375,"34523":0,"34524":0,"34525":0,"34526":-1,"34527":2613,"34528":-1,"34529":2466,"34530":2569,"34531":-1,"34532":0,"34533":0,"34534":0,"34535":2646,"34536":0,"34537":-1,"34538":-1,"34539":-1,"34540":-1,"34541":2363,"34542":2477,"34543":0,"34544":0,"34545":2201,"34546":2254,"34547":2455,"34548":0,"34549":0,"34550":133,"34551":-1,"34552":2603,"34553":2302,"34554":0,"34555":2494,"34556":-1,"34557":2674,"34558":0,"34559":-1,"34560":-1,"34561":-1,"34562":2527,"34563":0,"34564":2592,"34565":0,"34566":0,"34567":350,"34568":0,"34569":0,"34570":21,"34571":-1,"34572":-1,"34573":0,"34574":-1,"34575":-1,"34576":-1,"34577":0,"34578":2677,"34579":-1,"34580":-1,"34581":2079,"34582":2017,"34583":0,"34584":0,"34585":0,"34586":-1,"34587":-1,"34588":-1,"34589":-1,"34590":0,"34591":-1,"34592":2327,"34593":2491,"34594":-1,"34595":-1,"34596":2032,"34597":0,"34598":2343,"34599":2288,"34600":2039,"34601":0,"34602":0,"34603":0,"34604":0,"34605":0,"34606":0,"34607":-1,"34608":0,"34609":2106,"34610":0,"34611":0,"34612":-1,"34613":0,"34614":2643,"34615":2177,"34616":2153,"34617":-1,"34618":0,"34619":0,"34620":-1,"34621":0,"34622":0,"34623":0,"34624":0,"34625":0,"34626":-1,"34627":0,"34628":2314,"34629":0,"34630":-1,"34631":0,"34632":0,"34633":2617,"34634":547,"34635":-1,"34636":0,"34637":2298,"34638":-1,"34639":0,"34640":0,"34641":0,"34642":0,"34643":2417,"34644":2215,"34645":-1,"34646":-1,"34647":2012,"34648":0,"34649":-1,"34650":0,"34651":0,"34652":0,"34653":422,"34654":0,"34655":0,"34656":2066,"34657":0,"34658":0,"34659":-1,"34660":-1,"34661":0,"34662":1999,"34663":-1,"34664":0,"34665":2277,"34666":0,"34667":0,"34668":0,"34669":2600,"34670":0,"34671":0,"34672":-1,"34673":0,"34674":0,"34675":-1,"34676":0,"34677":-1,"34678":2470,"34679":-1,"34680":-1,"34681":-1,"34682":0,"34683":-1,"34684":0,"34685":2516,"34686":2575,"34687":826,"34688":-1,"34689":325,"34690":0,"34691":-1,"34692":0,"34693":0,"34694":0,"34695":2182,"34696":0,"34697":0,"34698":0,"34699":2285,"34700":-1,"34701":0,"34702":-1,"34703":2632,"34704":0,"34705":-1,"34706":0,"34707":0,"34708":22,"34709":0,"34710":2550,"34711":2287,"34712":0,"34713":-1,"34714":0,"34715":2017,"34716":0,"34717":0,"34718":0,"34719":2501,"34720":2026,"34721":-1,"34722":220,"34723":0,"34724":-1,"34725":-1,"34726":0,"34727":0,"34728":2386,"34729":0,"34730":2506,"34731":0,"34732":0,"34733":0,"34734":-1,"34735":109,"34736":2609,"34737":1992,"34738":1995,"34739":-1,"34740":262,"34741":2206,"34742":0,"34743":-1,"34744":-1,"34745":0,"34746":-1,"34747":2327,"34748":0,"34749":2097,"34750":0,"34751":2209,"34752":-1,"34753":2502,"34754":-1,"34755":0,"34756":2600,"34757":2614,"34758":0,"34759":362,"34760":0,"34761":0,"34762":0,"34763":362,"34764":-1,"34765":2488,"34766":0,"34767":-1,"34768":0,"34769":-1,"34770":-1,"34771":407,"34772":301,"34773":0,"34774":0,"34775":159,"34776":-1,"34777":0,"34778":0,"34779":0,"34780":-1,"34781":2392,"34782":-1,"34783":-1,"34784":-1,"34785":0,"34786":2435,"34787":2186,"34788":2420,"34789":2160,"34790":0,"34791":-1,"34792":-1,"34793":0,"34794":0,"34795":0,"34796":2061,"34797":2340,"34798":0,"34799":0,"34800":-1,"34801":584,"34802":2541,"34803":0,"34804":0,"34805":0,"34806":0,"34807":0,"34808":-1,"34809":0,"34810":-1,"34811":0,"34812":0,"34813":-1,"34814":0,"34815":-1,"34816":0,"34817":0,"34818":2600,"34819":0,"34820":-1,"34821":0,"34822":0,"34823":-1,"34824":-1,"34825":-1,"34826":-1,"34827":-1,"34828":-1,"34829":0,"34830":2146,"34831":0,"34832":-1,"34833":0,"34834":-1,"34835":0,"34836":0,"34837":2083,"34838":-1,"34839":0,"34840":0,"34841":-1,"34842":-1,"34843":0,"34844":2591,"34845":0,"34846":0,"34847":-1,"34848":2220,"34849":-1,"34850":0,"34851":0,"34852":0,"34853":-1,"34854":2502,"34855":2333,"34856":-1,"34857":2061,"34858":0,"34859":209,"34860":-1,"34861":0,"34862":-1,"34863":-1,"34864":-1,"34865":0,"34866":2402,"34867":-1,"34868":2471,"34869":-1,"34870":-1,"34871":-1,"34872":0,"34873":0,"34874":2065,"34875":0,"34876":0,"34877":-1,"34878":0,"34879":0,"34880":8,"34881":-1,"34882":0,"34883":2000,"34884":-1,"34885":-1,"34886":-1,"34887":2403,"34888":-1,"34889":2491,"34890":0,"34891":-1,"34892":-1,"34893":0,"34894":-1,"34895":-1,"34896":0,"34897":2102,"34898":0,"34899":0,"34900":-1,"34901":-1,"34902":0,"34903":-1,"34904":0,"34905":0,"34906":2045,"34907":-1,"34908":2598,"34909":0,"34910":0,"34911":-1,"34912":-1,"34913":2055,"34914":0,"34915":0,"34916":-1,"34917":-1,"34918":-1,"34919":-1,"34920":0,"34921":0,"34922":0,"34923":-1,"34924":0,"34925":0,"34926":2044,"34927":0,"34928":-1,"34929":0,"34930":-1,"34931":0,"34932":-1,"34933":-1,"34934":-1,"34935":0,"34936":-1,"34937":-1,"34938":2021,"34939":220,"34940":2246,"34941":2085,"34942":0,"34943":2434,"34944":-1,"34945":0,"34946":0,"34947":2613,"34948":-1,"34949":-1,"34950":0,"34951":-1,"34952":2488,"34953":-1,"34954":2469,"34955":0,"34956":0,"34957":436,"34958":2376,"34959":2027,"34960":0,"34961":-1,"34962":2481,"34963":0,"34964":0,"34965":0,"34966":0,"34967":-1,"34968":-1,"34969":-1,"34970":0,"34971":-1,"34972":-1,"34973":148,"34974":0,"34975":0,"34976":2126,"34977":-1,"34978":924,"34979":34,"34980":462,"34981":2537,"34982":2077,"34983":-1,"34984":2099,"34985":0,"34986":2387,"34987":0,"34988":0,"34989":2260,"34990":-1,"34991":0,"34992":0,"34993":2560,"34994":-1,"34995":-1,"34996":0,"34997":-1,"34998":-1,"34999":0,"35000":0,"35001":0,"35002":0,"35003":0,"35004":-1,"35005":-1,"35006":-1,"35007":842,"35008":0,"35009":0,"35010":2663,"35011":0,"35012":0,"35013":0,"35014":533,"35015":35,"35016":0,"35017":-1,"35018":0,"35019":-1,"35020":0,"35021":2618,"35022":0,"35023":0,"35024":0,"35025":0,"35026":-1,"35027":0,"35028":0,"35029":-1,"35030":0,"35031":0,"35032":-1,"35033":2605,"35034":-1,"35035":3,"35036":-1,"35037":0,"35038":0,"35039":-1,"35040":-1,"35041":2360,"35042":39,"35043":0,"35044":0,"35045":0,"35046":2496,"35047":-1,"35048":0,"35049":-1,"35050":0,"35051":0,"35052":2439,"35053":0,"35054":2628,"35055":-1,"35056":0,"35057":0,"35058":0,"35059":0,"35060":0,"35061":-1,"35062":-1,"35063":2550,"35064":2394,"35065":0,"35066":0,"35067":0,"35068":-1,"35069":-1,"35070":0,"35071":0,"35072":0,"35073":-1,"35074":0,"35075":0,"35076":0,"35077":-1,"35078":0,"35079":-1,"35080":0,"35081":0,"35082":2437,"35083":0,"35084":0,"35085":14,"35086":2238,"35087":-1,"35088":0,"35089":2195,"35090":-1,"35091":0,"35092":0,"35093":-1,"35094":2164,"35095":0,"35096":0,"35097":520,"35098":2474,"35099":-1,"35100":0,"35101":0,"35102":0,"35103":0,"35104":-1,"35105":-1,"35106":-1,"35107":0,"35108":0,"35109":137,"35110":-1,"35111":2286,"35112":-1,"35113":-1,"35114":0,"35115":0,"35116":0,"35117":-1,"35118":551,"35119":2534,"35120":0,"35121":0,"35122":0,"35123":2391,"35124":-1,"35125":313,"35126":-1,"35127":2627,"35128":0,"35129":0,"35130":299,"35131":0,"35132":0,"35133":-1,"35134":0,"35135":2085,"35136":0,"35137":-1,"35138":0,"35139":2245,"35140":2153,"35141":217,"35142":0,"35143":-1,"35144":2007,"35145":-1,"35146":0,"35147":-1,"35148":-1,"35149":0,"35150":-1,"35151":0,"35152":-1,"35153":0,"35154":0,"35155":-1,"35156":-1,"35157":2533,"35158":620,"35159":0,"35160":-1,"35161":23,"35162":0,"35163":-1,"35164":0,"35165":2450,"35166":449,"35167":2636,"35168":422,"35169":-1,"35170":0,"35171":0,"35172":0,"35173":0,"35174":2308,"35175":-1,"35176":2126,"35177":-1,"35178":0,"35179":2578,"35180":2317,"35181":-1,"35182":2360,"35183":-1,"35184":0,"35185":-1,"35186":0,"35187":-1,"35188":0,"35189":2123,"35190":-1,"35191":2243,"35192":0,"35193":-1,"35194":0,"35195":0,"35196":2295,"35197":-1,"35198":-1,"35199":0,"35200":-1,"35201":0,"35202":-1,"35203":0,"35204":2184,"35205":-1,"35206":0,"35207":-1,"35208":0,"35209":-1,"35210":-1,"35211":104,"35212":0,"35213":0,"35214":2222,"35215":-1,"35216":2279,"35217":0,"35218":-1,"35219":-1,"35220":0,"35221":2064,"35222":0,"35223":-1,"35224":0,"35225":0,"35226":-1,"35227":-1,"35228":0,"35229":0,"35230":-1,"35231":-1,"35232":-1,"35233":0,"35234":-1,"35235":0,"35236":0,"35237":-1,"35238":-1,"35239":0,"35240":28,"35241":136,"35242":-1,"35243":0,"35244":-1,"35245":2085,"35246":-1,"35247":2260,"35248":-1,"35249":0,"35250":0,"35251":0,"35252":-1,"35253":0,"35254":0,"35255":0,"35256":2225,"35257":-1,"35258":2595,"35259":-1,"35260":-1,"35261":0,"35262":0,"35263":0,"35264":-1,"35265":-1,"35266":0,"35267":693,"35268":0,"35269":2494,"35270":2037,"35271":475,"35272":-1,"35273":-1,"35274":-1,"35275":0,"35276":0,"35277":0,"35278":-1,"35279":2322,"35280":0,"35281":0,"35282":0,"35283":20,"35284":2094,"35285":2212,"35286":-1,"35287":2304,"35288":0,"35289":906,"35290":0,"35291":-1,"35292":0,"35293":2427,"35294":2223,"35295":0,"35296":2350,"35297":-1,"35298":-1,"35299":0,"35300":2560,"35301":2012,"35302":2671,"35303":-1,"35304":-1,"35305":-1,"35306":2243,"35307":0,"35308":0,"35309":0,"35310":-1,"35311":0,"35312":-1,"35313":2654,"35314":-1,"35315":0,"35316":0,"35317":0,"35318":-1,"35319":2016,"35320":-1,"35321":2669,"35322":0,"35323":-1,"35324":0,"35325":0,"35326":2509,"35327":-1,"35328":0,"35329":0,"35330":-1,"35331":0,"35332":0,"35333":0,"35334":0,"35335":-1,"35336":0,"35337":2516,"35338":2125,"35339":-1,"35340":0,"35341":-1,"35342":-1,"35343":-1,"35344":0,"35345":-1,"35346":-1,"35347":0,"35348":2236,"35349":0,"35350":-1,"35351":-1,"35352":0,"35353":0,"35354":0,"35355":0,"35356":0,"35357":-1,"35358":2364,"35359":2061,"35360":0,"35361":0,"35362":-1,"35363":0,"35364":0,"35365":0,"35366":2149,"35367":0,"35368":0,"35369":-1,"35370":-1,"35371":-1,"35372":2143,"35373":2201,"35374":2281,"35375":0,"35376":-1,"35377":-1,"35378":2221,"35379":0,"35380":-1,"35381":2305,"35382":0,"35383":9,"35384":0,"35385":0,"35386":0,"35387":-1,"35388":2039,"35389":2087,"35390":-1,"35391":2413,"35392":0,"35393":0,"35394":0,"35395":-1,"35396":0,"35397":0,"35398":0,"35399":-1,"35400":-1,"35401":2298,"35402":-1,"35403":0,"35404":2543,"35405":0,"35406":0,"35407":0,"35408":0,"35409":-1,"35410":-1,"35411":2341,"35412":2091,"35413":2659,"35414":0,"35415":0,"35416":-1,"35417":2473,"35418":2456,"35419":126,"35420":0,"35421":-1,"35422":-1,"35423":-1,"35424":2625,"35425":2103,"35426":-1,"35427":2289,"35428":2011,"35429":0,"35430":0,"35431":2479,"35432":2326,"35433":-1,"35434":-1,"35435":2024,"35436":2021,"35437":2211,"35438":-1,"35439":-1,"35440":-1,"35441":-1,"35442":0,"35443":-1,"35444":-1,"35445":0,"35446":0,"35447":2009,"35448":2403,"35449":0,"35450":-1,"35451":-1,"35452":2521,"35453":0,"35454":0,"35455":-1,"35456":0,"35457":42,"35458":0,"35459":2320,"35460":0,"35461":0,"35462":0,"35463":0,"35464":2545,"35465":0,"35466":2654,"35467":0,"35468":-1,"35469":0,"35470":0,"35471":0,"35472":2428,"35473":-1,"35474":0,"35475":0,"35476":0,"35477":33,"35478":0,"35479":-1,"35480":0,"35481":0,"35482":0,"35483":0,"35484":544,"35485":2594,"35486":0,"35487":-1,"35488":2491,"35489":2137,"35490":0,"35491":2566,"35492":0,"35493":-1,"35494":-1,"35495":0,"35496":-1,"35497":0,"35498":2330,"35499":0,"35500":-1,"35501":37,"35502":2361,"35503":0,"35504":-1,"35505":2615,"35506":2335,"35507":2124,"35508":0,"35509":2662,"35510":-1,"35511":0,"35512":0,"35513":0,"35514":-1,"35515":2449,"35516":0,"35517":0,"35518":0,"35519":0,"35520":2562,"35521":0,"35522":0,"35523":0,"35524":2514,"35525":0,"35526":-1,"35527":0,"35528":0,"35529":0,"35530":-1,"35531":2517,"35532":2336,"35533":0,"35534":-1,"35535":0,"35536":2243,"35537":2262,"35538":-1,"35539":2344,"35540":0,"35541":0,"35542":0,"35543":0,"35544":-1,"35545":894,"35546":0,"35547":2478,"35548":-1,"35549":0,"35550":0,"35551":0,"35552":-1,"35553":-1,"35554":0,"35555":0,"35556":-1,"35557":-1,"35558":-1,"35559":-1,"35560":0,"35561":2055,"35562":0,"35563":2669,"35564":2318,"35565":884,"35566":2420,"35567":325,"35568":0,"35569":0,"35570":-1,"35571":2130,"35572":0,"35573":44,"35574":2018,"35575":-1,"35576":0,"35577":-1,"35578":0,"35579":0,"35580":-1,"35581":13,"35582":-1,"35583":0,"35584":-1,"35585":2416,"35586":2641,"35587":-1,"35588":0,"35589":0,"35590":2488,"35591":2082,"35592":2308,"35593":-1,"35594":2555,"35595":-1,"35596":-1,"35597":-1,"35598":0,"35599":0,"35600":0,"35601":209,"35602":0,"35603":-1,"35604":0,"35605":2572,"35606":-1,"35607":0,"35608":0,"35609":77,"35610":0,"35611":0,"35612":0,"35613":0,"35614":2341,"35615":2370,"35616":0,"35617":0,"35618":612,"35619":0,"35620":-1,"35621":0,"35622":2401,"35623":0,"35624":-1,"35625":2524,"35626":0,"35627":0,"35628":2470,"35629":2240,"35630":2645,"35631":2629,"35632":-1,"35633":0,"35634":-1,"35635":-1,"35636":0,"35637":2520,"35638":-1,"35639":2298,"35640":-1,"35641":0,"35642":2423,"35643":2457,"35644":0,"35645":2142,"35646":2539,"35647":-1,"35648":-1,"35649":0,"35650":2316,"35651":-1,"35652":0,"35653":2356,"35654":-1,"35655":0,"35656":0,"35657":0,"35658":-1,"35659":-1,"35660":0,"35661":2362,"35662":-1,"35663":0,"35664":0,"35665":0,"35666":2262,"35667":0,"35668":0,"35669":2666,"35670":0,"35671":0,"35672":-1,"35673":-1,"35674":-1,"35675":0,"35676":2030,"35677":-1,"35678":0,"35679":-1,"35680":2542,"35681":2353,"35682":-1,"35683":0,"35684":-1,"35685":-1,"35686":0,"35687":455,"35688":0,"35689":2113,"35690":0,"35691":0,"35692":2396,"35693":842,"35694":-1,"35695":0,"35696":0,"35697":0,"35698":-1,"35699":0,"35700":0,"35701":0,"35702":-1,"35703":0,"35704":0,"35705":0,"35706":0,"35707":0,"35708":2228,"35709":2406,"35710":2344,"35711":-1,"35712":-1,"35713":2190,"35714":65,"35715":2680,"35716":0,"35717":0,"35718":2376,"35719":2606,"35720":0,"35721":-1,"35722":0,"35723":0,"35724":0,"35725":-1,"35726":2460,"35727":-1,"35728":0,"35729":0,"35730":2450,"35731":0,"35732":0,"35733":-1,"35734":-1,"35735":617,"35736":0,"35737":2635,"35738":49,"35739":0,"35740":-1,"35741":-1,"35742":-1,"35743":-1,"35744":154,"35745":2489,"35746":-1,"35747":0,"35748":0,"35749":-1,"35750":0,"35751":-1,"35752":0,"35753":0,"35754":0,"35755":2489,"35756":0,"35757":0,"35758":-1,"35759":-1,"35760":0,"35761":-1,"35762":0,"35763":0,"35764":0,"35765":0,"35766":2420,"35767":2359,"35768":0,"35769":0,"35770":0,"35771":0,"35772":-1,"35773":2154,"35774":-1,"35775":2492,"35776":0,"35777":-1,"35778":-1,"35779":-1,"35780":102,"35781":0,"35782":0,"35783":2401,"35784":0,"35785":-1,"35786":-1,"35787":2592,"35788":-1,"35789":0,"35790":-1,"35791":-1,"35792":2567,"35793":2634,"35794":-1,"35795":-1,"35796":-1,"35797":-1,"35798":0,"35799":2209,"35800":0,"35801":2039,"35802":0,"35803":0,"35804":-1,"35805":0,"35806":0,"35807":-1,"35808":0,"35809":0,"35810":0,"35811":0,"35812":0,"35813":-1,"35814":-1,"35815":-1,"35816":-1,"35817":0,"35818":2275,"35819":0,"35820":2319,"35821":0,"35822":-1,"35823":2315,"35824":0,"35825":475,"35826":0,"35827":2146,"35828":0,"35829":0,"35830":0,"35831":2675,"35832":-1,"35833":0,"35834":-1,"35835":0,"35836":0,"35837":-1,"35838":0,"35839":-1,"35840":0,"35841":-1,"35842":2372,"35843":0,"35844":2519,"35845":0,"35846":-1,"35847":77,"35848":0,"35849":0,"35850":36,"35851":-1,"35852":0,"35853":0,"35854":0,"35855":-1,"35856":2655,"35857":2650,"35858":0,"35859":2636,"35860":2675,"35861":-1,"35862":0,"35863":0,"35864":-1,"35865":-1,"35866":2537,"35867":-1,"35868":1995,"35869":0,"35870":0,"35871":0,"35872":0,"35873":0,"35874":0,"35875":0,"35876":0,"35877":2461,"35878":0,"35879":-1,"35880":0,"35881":2512,"35882":0,"35883":-1,"35884":-1,"35885":-1,"35886":0,"35887":-1,"35888":39,"35889":0,"35890":0,"35891":0,"35892":2112,"35893":-1,"35894":0,"35895":0,"35896":-1,"35897":-1,"35898":0,"35899":907,"35900":0,"35901":0,"35902":0,"35903":0,"35904":0,"35905":0,"35906":-1,"35907":0,"35908":-1,"35909":2218,"35910":2091,"35911":-1,"35912":0,"35913":0,"35914":0,"35915":0,"35916":0,"35917":341,"35918":-1,"35919":0,"35920":0,"35921":-1,"35922":0,"35923":0,"35924":0,"35925":0,"35926":0,"35927":0,"35928":2416,"35929":0,"35930":-1,"35931":-1,"35932":0,"35933":2123,"35934":404,"35935":0,"35936":0,"35937":353,"35938":-1,"35939":2361,"35940":1999,"35941":0,"35942":0,"35943":0,"35944":-1,"35945":-1,"35946":0,"35947":0,"35948":0,"35949":-1,"35950":2011,"35951":-1,"35952":0,"35953":2668,"35954":-1,"35955":894,"35956":0,"35957":0,"35958":-1,"35959":2148,"35960":2260,"35961":0,"35962":0,"35963":0,"35964":2589,"35965":0,"35966":0,"35967":-1,"35968":0,"35969":0,"35970":0,"35971":-1,"35972":0,"35973":2393,"35974":0,"35975":-1,"35976":-1,"35977":0,"35978":1998,"35979":2324,"35980":2096,"35981":0,"35982":0,"35983":0,"35984":0,"35985":0,"35986":0,"35987":-1,"35988":2629,"35989":-1,"35990":-1,"35991":0,"35992":0,"35993":0,"35994":0,"35995":0,"35996":2502,"35997":-1,"35998":0,"35999":2125,"36000":-1,"36001":-1,"36002":0,"36003":-1,"36004":-1,"36005":-1,"36006":720,"36007":-1,"36008":-1,"36009":-1,"36010":0,"36011":-1,"36012":0,"36013":308,"36014":443,"36015":0,"36016":310,"36017":141,"36018":2064,"36019":2665,"36020":1999,"36021":0,"36022":0,"36023":-1,"36024":2010,"36025":-1,"36026":0,"36027":645,"36028":0,"36029":2059,"36030":-1,"36031":0,"36032":0,"36033":2370,"36034":0,"36035":-1,"36036":0,"36037":2332,"36038":2514,"36039":-1,"36040":2540,"36041":496,"36042":-1,"36043":-1,"36044":-1,"36045":906,"36046":-1,"36047":2330,"36048":-1,"36049":0,"36050":2344,"36051":-1,"36052":26,"36053":-1,"36054":-1,"36055":-1,"36056":0,"36057":0,"36058":0,"36059":2502,"36060":0,"36061":0,"36062":-1,"36063":0,"36064":102,"36065":0,"36066":0,"36067":2359,"36068":0,"36069":0,"36070":0,"36071":0,"36072":-1,"36073":-1,"36074":-1,"36075":-1,"36076":-1,"36077":0,"36078":0,"36079":-1,"36080":2578,"36081":-1,"36082":0,"36083":0,"36084":0,"36085":-1,"36086":-1,"36087":0,"36088":2127,"36089":-1,"36090":-1,"36091":0,"36092":2558,"36093":0,"36094":0,"36095":547,"36096":0,"36097":-1,"36098":-1,"36099":2418,"36100":0,"36101":1995,"36102":2146,"36103":0,"36104":2063,"36105":0,"36106":-1,"36107":-1,"36108":0,"36109":2135,"36110":2327,"36111":0,"36112":-1,"36113":-1,"36114":2595,"36115":-1,"36116":-1,"36117":2578,"36118":0,"36119":-1,"36120":-1,"36121":0,"36122":2557,"36123":0,"36124":0,"36125":0,"36126":-1,"36127":-1,"36128":0,"36129":2671,"36130":-1,"36131":-1,"36132":0,"36133":2417,"36134":-1,"36135":-1,"36136":-1,"36137":0,"36138":-1,"36139":2009,"36140":0,"36141":0,"36142":-1,"36143":0,"36144":-1,"36145":0,"36146":0,"36147":0,"36148":547,"36149":0,"36150":1,"36151":-1,"36152":2289,"36153":-1,"36154":0,"36155":-1,"36156":-1,"36157":2645,"36158":2186,"36159":0,"36160":2551,"36161":-1,"36162":0,"36163":-1,"36164":0,"36165":0,"36166":-1,"36167":-1,"36168":0,"36169":-1,"36170":-1,"36171":0,"36172":0,"36173":-1,"36174":-1,"36175":-1,"36176":2453,"36177":2615,"36178":0,"36179":284,"36180":0,"36181":0,"36182":2528,"36183":2019,"36184":359,"36185":2444,"36186":-1,"36187":0,"36188":2373,"36189":-1,"36190":0,"36191":-1,"36192":61,"36193":0,"36194":-1,"36195":0,"36196":-1,"36197":0,"36198":-1,"36199":-1,"36200":0,"36201":0,"36202":2366,"36203":0,"36204":0,"36205":0,"36206":2497,"36207":-1,"36208":0,"36209":0,"36210":0,"36211":2390,"36212":-1,"36213":0,"36214":0,"36215":0,"36216":-1,"36217":-1,"36218":2538,"36219":-1,"36220":2639,"36221":0,"36222":2258,"36223":-1,"36224":2444,"36225":-1,"36226":2249,"36227":0,"36228":-1,"36229":2527,"36230":0,"36231":0,"36232":-1,"36233":0,"36234":0,"36235":2106,"36236":0,"36237":0,"36238":-1,"36239":-1,"36240":0,"36241":2229,"36242":-1,"36243":2154,"36244":0,"36245":2374,"36246":-1,"36247":2137,"36248":-1,"36249":2205,"36250":2626,"36251":0,"36252":-1,"36253":-1,"36254":0,"36255":0,"36256":-1,"36257":-1,"36258":2216,"36259":-1,"36260":0,"36261":0,"36262":-1,"36263":2593,"36264":2368,"36265":2596,"36266":0,"36267":-1,"36268":-1,"36269":2012,"36270":2289,"36271":0,"36272":663,"36273":-1,"36274":0,"36275":0,"36276":0,"36277":0,"36278":0,"36279":0,"36280":64,"36281":2012,"36282":0,"36283":0,"36284":0,"36285":0,"36286":-1,"36287":-1,"36288":-1,"36289":2026,"36290":0,"36291":2531,"36292":2531,"36293":-1,"36294":-1,"36295":0,"36296":0,"36297":0,"36298":-1,"36299":-1,"36300":16,"36301":0,"36302":2457,"36303":0,"36304":2101,"36305":0,"36306":0,"36307":-1,"36308":-1,"36309":-1,"36310":-1,"36311":2257,"36312":-1,"36313":-1,"36314":2175,"36315":-1,"36316":2431,"36317":0,"36318":0,"36319":449,"36320":0,"36321":637,"36322":-1,"36323":-1,"36324":0,"36325":2564,"36326":0,"36327":-1,"36328":0,"36329":0,"36330":2224,"36331":0,"36332":0,"36333":-1,"36334":0,"36335":0,"36336":0,"36337":-1,"36338":0,"36339":-1,"36340":0,"36341":2005,"36342":0,"36343":-1,"36344":-1,"36345":104,"36346":-1,"36347":0,"36348":2519,"36349":-1,"36350":0,"36351":2443,"36352":0,"36353":0,"36354":0,"36355":0,"36356":2042,"36357":0,"36358":0,"36359":2349,"36360":2459,"36361":0,"36362":362,"36363":0,"36364":-1,"36365":2574,"36366":0,"36367":2601,"36368":-1,"36369":0,"36370":2606,"36371":-1,"36372":-1,"36373":-1,"36374":0,"36375":1996,"36376":2473,"36377":2349,"36378":0,"36379":598,"36380":0,"36381":2360,"36382":-1,"36383":0,"36384":0,"36385":0,"36386":0,"36387":0,"36388":0,"36389":-1,"36390":-1,"36391":-1,"36392":1994,"36393":-1,"36394":0,"36395":0,"36396":2081,"36397":0,"36398":-1,"36399":2412,"36400":0,"36401":-1,"36402":0,"36403":0,"36404":-1,"36405":0,"36406":-1,"36407":0,"36408":0,"36409":-1,"36410":0,"36411":0,"36412":-1,"36413":2415,"36414":-1,"36415":0,"36416":-1,"36417":0,"36418":2149,"36419":0,"36420":436,"36421":-1,"36422":2663,"36423":0,"36424":0,"36425":0,"36426":303,"36427":-1,"36428":0,"36429":0,"36430":0,"36431":-1,"36432":-1,"36433":2561,"36434":0,"36435":2310,"36436":0,"36437":-1,"36438":0,"36439":-1,"36440":2071,"36441":2105,"36442":-1,"36443":2544,"36444":0,"36445":1998,"36446":2090,"36447":2416,"36448":-1,"36449":2017,"36450":2134,"36451":0,"36452":0,"36453":2665,"36454":0,"36455":2167,"36456":18,"36457":0,"36458":0,"36459":0,"36460":2336,"36461":-1,"36462":0,"36463":-1,"36464":533,"36465":2315,"36466":2033,"36467":0,"36468":0,"36469":0,"36470":2530,"36471":0,"36472":0,"36473":0,"36474":0,"36475":-1,"36476":0,"36477":0,"36478":2436,"36479":0,"36480":2080,"36481":-1,"36482":2002,"36483":0,"36484":0,"36485":0,"36486":-1,"36487":2642,"36488":0,"36489":-1,"36490":2246,"36491":-1,"36492":0,"36493":-1,"36494":533,"36495":0,"36496":0,"36497":-1,"36498":833,"36499":2360,"36500":0,"36501":0,"36502":0,"36503":-1,"36504":2677,"36505":2575,"36506":-1,"36507":-1,"36508":0,"36509":-1,"36510":0,"36511":0,"36512":0,"36513":-1,"36514":-1,"36515":0,"36516":-1,"36517":353,"36518":2269,"36519":2659,"36520":-1,"36521":-1,"36522":0,"36523":9,"36524":2333,"36525":-1,"36526":0,"36527":-1,"36528":-1,"36529":0,"36530":-1,"36531":2285,"36532":0,"36533":0,"36534":-1,"36535":0,"36536":-1,"36537":-1,"36538":-1,"36539":-1,"36540":0,"36541":0,"36542":2206,"36543":0,"36544":2281,"36545":0,"36546":0,"36547":-1,"36548":2160,"36549":2278,"36550":2307,"36551":-1,"36552":2254,"36553":0,"36554":0,"36555":-1,"36556":-1,"36557":0,"36558":-1,"36559":-1,"36560":2638,"36561":0,"36562":2132,"36563":0,"36564":0,"36565":0,"36566":-1,"36567":-1,"36568":2229,"36569":0,"36570":639,"36571":61,"36572":-1,"36573":2020,"36574":333,"36575":0,"36576":0,"36577":0,"36578":0,"36579":0,"36580":2626,"36581":0,"36582":0,"36583":0,"36584":0,"36585":0,"36586":-1,"36587":884,"36588":-1,"36589":2460,"36590":-1,"36591":0,"36592":0,"36593":2565,"36594":-1,"36595":0,"36596":0,"36597":-1,"36598":-1,"36599":-1,"36600":-1,"36601":-1,"36602":0,"36603":514,"36604":-1,"36605":0,"36606":-1,"36607":0,"36608":-1,"36609":0,"36610":0,"36611":-1,"36612":0,"36613":2334,"36614":2612,"36615":45,"36616":-1,"36617":-1,"36618":-1,"36619":0,"36620":0,"36621":0,"36622":0,"36623":287,"36624":-1,"36625":0,"36626":-1,"36627":0,"36628":0,"36629":-1,"36630":0,"36631":0,"36632":2216,"36633":2536,"36634":0,"36635":-1,"36636":0,"36637":2418,"36638":-1,"36639":0,"36640":0,"36641":0,"36642":0,"36643":2188,"36644":-1,"36645":-1,"36646":-1,"36647":102,"36648":2295,"36649":-1,"36650":-1,"36651":0,"36652":0,"36653":2211,"36654":-1,"36655":75,"36656":0,"36657":-1,"36658":0,"36659":-1,"36660":0,"36661":0,"36662":0,"36663":-1,"36664":-1,"36665":2420,"36666":0,"36667":-1,"36668":0,"36669":-1,"36670":-1,"36671":0,"36672":500,"36673":284,"36674":-1,"36675":-1,"36676":0,"36677":2087,"36678":0,"36679":-1,"36680":0,"36681":2593,"36682":908,"36683":2436,"36684":0,"36685":2396,"36686":2145,"36687":-1,"36688":262,"36689":0,"36690":0,"36691":0,"36692":0,"36693":-1,"36694":-1,"36695":-1,"36696":-1,"36697":0,"36698":0,"36699":-1,"36700":-1,"36701":0,"36702":-1,"36703":0,"36704":96,"36705":0,"36706":0,"36707":2641,"36708":2248,"36709":0,"36710":-1,"36711":0,"36712":0,"36713":-1,"36714":-1,"36715":-1,"36716":0,"36717":2302,"36718":-1,"36719":0,"36720":0,"36721":0,"36722":663,"36723":578,"36724":0,"36725":0,"36726":2114,"36727":-1,"36728":0,"36729":0,"36730":0,"36731":2266,"36732":0,"36733":2493,"36734":0,"36735":0,"36736":0,"36737":-1,"36738":-1,"36739":2547,"36740":0,"36741":2447,"36742":0,"36743":0,"36744":0,"36745":0,"36746":0,"36747":0,"36748":-1,"36749":0,"36750":2337,"36751":0,"36752":0,"36753":0,"36754":0,"36755":2395,"36756":2337,"36757":-1,"36758":-1,"36759":0,"36760":0,"36761":0,"36762":2572,"36763":-1,"36764":2247,"36765":-1,"36766":-1,"36767":-1,"36768":-1,"36769":-1,"36770":0,"36771":2327,"36772":0,"36773":-1,"36774":2264,"36775":0,"36776":-1,"36777":-1,"36778":2012,"36779":0,"36780":-1,"36781":0,"36782":0,"36783":0,"36784":0,"36785":0,"36786":0,"36787":0,"36788":0,"36789":-1,"36790":2465,"36791":0,"36792":0,"36793":0,"36794":-1,"36795":-1,"36796":-1,"36797":2202,"36798":-1,"36799":2365,"36800":0,"36801":500,"36802":-1,"36803":-1,"36804":0,"36805":0,"36806":0,"36807":2087,"36808":0,"36809":0,"36810":-1,"36811":0,"36812":0,"36813":137,"36814":0,"36815":-1,"36816":0,"36817":-1,"36818":0,"36819":17,"36820":2536,"36821":-1,"36822":0,"36823":0,"36824":0,"36825":0,"36826":0,"36827":0,"36828":2588,"36829":0,"36830":-1,"36831":0,"36832":-1,"36833":-1,"36834":2132,"36835":0,"36836":-1,"36837":-1,"36838":0,"36839":0,"36840":-1,"36841":-1,"36842":-1,"36843":2270,"36844":-1,"36845":0,"36846":-1,"36847":-1,"36848":-1,"36849":0,"36850":-1,"36851":0,"36852":0,"36853":0,"36854":2532,"36855":0,"36856":-1,"36857":0,"36858":-1,"36859":0,"36860":-1,"36861":0,"36862":-1,"36863":-1,"36864":-1,"36865":-1,"36866":0,"36867":0,"36868":0,"36869":0,"36870":2022,"36871":-1,"36872":0,"36873":2348,"36874":2238,"36875":0,"36876":2233,"36877":-1,"36878":2050,"36879":2207,"36880":701,"36881":0,"36882":-1,"36883":2006,"36884":-1,"36885":2093,"36886":-1,"36887":0,"36888":-1,"36889":0,"36890":-1,"36891":2051,"36892":-1,"36893":199,"36894":0,"36895":0,"36896":-1,"36897":0,"36898":2583,"36899":0,"36900":-1,"36901":0,"36902":0,"36903":-1,"36904":0,"36905":-1,"36906":0,"36907":0,"36908":2375,"36909":-1,"36910":0,"36911":0,"36912":-1,"36913":-1,"36914":-1,"36915":2325,"36916":2050,"36917":2082,"36918":0,"36919":420,"36920":41,"36921":0,"36922":-1,"36923":2513,"36924":-1,"36925":-1,"36926":2117,"36927":2343,"36928":0,"36929":0,"36930":0,"36931":598,"36932":0,"36933":2102,"36934":2343,"36935":0,"36936":404,"36937":2358,"36938":0,"36939":-1,"36940":0,"36941":0,"36942":0,"36943":0,"36944":0,"36945":0,"36946":0,"36947":-1,"36948":2489,"36949":0,"36950":2106,"36951":-1,"36952":2344,"36953":2094,"36954":2420,"36955":0,"36956":0,"36957":-1,"36958":0,"36959":-1,"36960":0,"36961":0,"36962":0,"36963":849,"36964":-1,"36965":-1,"36966":-1,"36967":-1,"36968":2548,"36969":455,"36970":-1,"36971":2136,"36972":2607,"36973":2094,"36974":0,"36975":0,"36976":-1,"36977":2561,"36978":0,"36979":0,"36980":-1,"36981":-1,"36982":2307,"36983":-1,"36984":0,"36985":-1,"36986":-1,"36987":2466,"36988":0,"36989":0,"36990":0,"36991":-1,"36992":0,"36993":-1,"36994":0,"36995":-1,"36996":2020,"36997":-1,"36998":2651,"36999":0,"37000":-1,"37001":-1,"37002":-1,"37003":-1,"37004":0,"37005":0,"37006":2317,"37007":0,"37008":-1,"37009":101,"37010":-1,"37011":2039,"37012":0,"37013":2322,"37014":2128,"37015":2112,"37016":0,"37017":0,"37018":-1,"37019":40,"37020":-1,"37021":2352,"37022":0,"37023":0,"37024":-1,"37025":0,"37026":0,"37027":-1,"37028":0,"37029":0,"37030":2638,"37031":0,"37032":-1,"37033":0,"37034":15,"37035":-1,"37036":0,"37037":0,"37038":-1,"37039":0,"37040":2637,"37041":0,"37042":-1,"37043":170,"37044":2074,"37045":2613,"37046":359,"37047":-1,"37048":0,"37049":-1,"37050":2155,"37051":0,"37052":2313,"37053":-1,"37054":0,"37055":-1,"37056":-1,"37057":0,"37058":0,"37059":0,"37060":-1,"37061":0,"37062":-1,"37063":-1,"37064":-1,"37065":0,"37066":0,"37067":0,"37068":0,"37069":-1,"37070":0,"37071":554,"37072":2621,"37073":0,"37074":0,"37075":-1,"37076":2196,"37077":43,"37078":2157,"37079":-1,"37080":2121,"37081":2536,"37082":-1,"37083":-1,"37084":0,"37085":2222,"37086":554,"37087":2069,"37088":0,"37089":0,"37090":0,"37091":0,"37092":2102,"37093":0,"37094":0,"37095":37,"37096":-1,"37097":0,"37098":0,"37099":2005,"37100":-1,"37101":0,"37102":0,"37103":0,"37104":0,"37105":598,"37106":-1,"37107":0,"37108":0,"37109":-1,"37110":2492,"37111":0,"37112":0,"37113":-1,"37114":2125,"37115":-1,"37116":-1,"37117":0,"37118":0,"37119":0,"37120":-1,"37121":-1,"37122":0,"37123":0,"37124":2651,"37125":2048,"37126":-1,"37127":2068,"37128":-1,"37129":0,"37130":0,"37131":-1,"37132":-1,"37133":2180,"37134":0,"37135":0,"37136":0,"37137":-1,"37138":0,"37139":-1,"37140":2549,"37141":0,"37142":0,"37143":2198,"37144":0,"37145":0,"37146":0,"37147":0,"37148":0,"37149":2101,"37150":-1,"37151":2635,"37152":-1,"37153":2398,"37154":0,"37155":2151,"37156":-1,"37157":-1,"37158":0,"37159":170,"37160":-1,"37161":0,"37162":0,"37163":0,"37164":2038,"37165":637,"37166":598,"37167":2380,"37168":2078,"37169":-1,"37170":-1,"37171":-1,"37172":-1,"37173":-1,"37174":-1,"37175":-1,"37176":2024,"37177":2323,"37178":2632,"37179":0,"37180":0,"37181":622,"37182":0,"37183":2041,"37184":2000,"37185":0,"37186":-1,"37187":0,"37188":-1,"37189":0,"37190":0,"37191":-1,"37192":-1,"37193":2036,"37194":2677,"37195":-1,"37196":2166,"37197":-1,"37198":2463,"37199":317,"37200":-1,"37201":2663,"37202":2278,"37203":-1,"37204":-1,"37205":22,"37206":-1,"37207":0,"37208":0,"37209":0,"37210":2461,"37211":0,"37212":2330,"37213":2571,"37214":2161,"37215":0,"37216":-1,"37217":0,"37218":-1,"37219":-1,"37220":0,"37221":0,"37222":0,"37223":0,"37224":-1,"37225":205,"37226":-1,"37227":0,"37228":0,"37229":-1,"37230":-1,"37231":-1,"37232":-1,"37233":-1,"37234":-1,"37235":0,"37236":0,"37237":-1,"37238":0,"37239":-1,"37240":0,"37241":0,"37242":-1,"37243":0,"37244":0,"37245":0,"37246":-1,"37247":0,"37248":-1,"37249":0,"37250":2486,"37251":2417,"37252":0,"37253":-1,"37254":2312,"37255":-1,"37256":0,"37257":0,"37258":-1,"37259":0,"37260":2207,"37261":0,"37262":0,"37263":2264,"37264":-1,"37265":2525,"37266":2614,"37267":0,"37268":0,"37269":2476,"37270":0,"37271":-1,"37272":-1,"37273":-1,"37274":0,"37275":0,"37276":826,"37277":2006,"37278":0,"37279":-1,"37280":-1,"37281":-1,"37282":0,"37283":0,"37284":0,"37285":0,"37286":1997,"37287":0,"37288":637,"37289":12,"37290":0,"37291":0,"37292":0,"37293":0,"37294":2128,"37295":0,"37296":2205,"37297":-1,"37298":2545,"37299":-1,"37300":0,"37301":-1,"37302":598,"37303":2590,"37304":0,"37305":-1,"37306":-1,"37307":0,"37308":0,"37309":-1,"37310":-1,"37311":738,"37312":2659,"37313":0,"37314":2010,"37315":-1,"37316":0,"37317":2138,"37318":412,"37319":0,"37320":-1,"37321":496,"37322":0,"37323":572,"37324":0,"37325":0,"37326":0,"37327":-1,"37328":0,"37329":0,"37330":2338,"37331":0,"37332":0,"37333":-1,"37334":0,"37335":-1,"37336":0,"37337":0,"37338":-1,"37339":0,"37340":-1,"37341":-1,"37342":-1,"37343":0,"37344":-1,"37345":2387,"37346":0,"37347":0,"37348":0,"37349":0,"37350":2520,"37351":0,"37352":0,"37353":0,"37354":0,"37355":-1,"37356":0,"37357":0,"37358":-1,"37359":2047,"37360":-1,"37361":0,"37362":0,"37363":-1,"37364":153,"37365":578,"37366":0,"37367":0,"37368":-1,"37369":2225,"37370":0,"37371":0,"37372":0,"37373":2275,"37374":-1,"37375":0,"37376":2194,"37377":2541,"37378":2197,"37379":2123,"37380":0,"37381":0,"37382":-1,"37383":462,"37384":2335,"37385":0,"37386":-1,"37387":0,"37388":0,"37389":0,"37390":0,"37391":0,"37392":2403,"37393":0,"37394":-1,"37395":130,"37396":-1,"37397":-1,"37398":-1,"37399":0,"37400":-1,"37401":0,"37402":-1,"37403":0,"37404":0,"37405":0,"37406":-1,"37407":0,"37408":-1,"37409":0,"37410":2620,"37411":-1,"37412":0,"37413":2247,"37414":0,"37415":-1,"37416":2203,"37417":0,"37418":-1,"37419":0,"37420":-1,"37421":0,"37422":2351,"37423":-1,"37424":-1,"37425":0,"37426":2114,"37427":0,"37428":-1,"37429":-1,"37430":0,"37431":2548,"37432":0,"37433":-1,"37434":-1,"37435":2352,"37436":2659,"37437":-1,"37438":-1,"37439":0,"37440":-1,"37441":0,"37442":0,"37443":-1,"37444":-1,"37445":2456,"37446":0,"37447":833,"37448":0,"37449":-1,"37450":-1,"37451":2558,"37452":2168,"37453":2345,"37454":0,"37455":2537,"37456":0,"37457":662,"37458":0,"37459":-1,"37460":0,"37461":2145,"37462":-1,"37463":0,"37464":0,"37465":0,"37466":0,"37467":0,"37468":-1,"37469":2597,"37470":0,"37471":0,"37472":0,"37473":0,"37474":-1,"37475":0,"37476":0,"37477":0,"37478":0,"37479":-1,"37480":345,"37481":-1,"37482":-1,"37483":462,"37484":-1,"37485":168,"37486":-1,"37487":-1,"37488":-1,"37489":0,"37490":2132,"37491":8,"37492":2214,"37493":2123,"37494":2542,"37495":2635,"37496":0,"37497":-1,"37498":-1,"37499":0,"37500":386,"37501":2217,"37502":2372,"37503":0,"37504":0,"37505":2366,"37506":-1,"37507":0,"37508":0,"37509":2060,"37510":-1,"37511":2072,"37512":-1,"37513":0,"37514":-1,"37515":0,"37516":-1,"37517":-1,"37518":0,"37519":-1,"37520":2334,"37521":2422,"37522":2295,"37523":-1,"37524":0,"37525":-1,"37526":2387,"37527":-1,"37528":0,"37529":0,"37530":0,"37531":0,"37532":-1,"37533":0,"37534":0,"37535":-1,"37536":2518,"37537":2621,"37538":-1,"37539":0,"37540":0,"37541":-1,"37542":26,"37543":-1,"37544":0,"37545":0,"37546":2361,"37547":0,"37548":2295,"37549":2482,"37550":0,"37551":0,"37552":-1,"37553":449,"37554":0,"37555":0,"37556":1999,"37557":-1,"37558":0,"37559":0,"37560":0,"37561":-1,"37562":-1,"37563":2251,"37564":0,"37565":0,"37566":0,"37567":-1,"37568":2156,"37569":0,"37570":2465,"37571":0,"37572":2340,"37573":-1,"37574":0,"37575":0,"37576":2592,"37577":-1,"37578":2146,"37579":0,"37580":2269,"37581":0,"37582":-1,"37583":0,"37584":2341,"37585":2556,"37586":0,"37587":2599,"37588":2534,"37589":0,"37590":-1,"37591":2061,"37592":0,"37593":2179,"37594":-1,"37595":0,"37596":0,"37597":2484,"37598":2610,"37599":0,"37600":0,"37601":0,"37602":0,"37603":-1,"37604":0,"37605":217,"37606":-1,"37607":-1,"37608":2081,"37609":0,"37610":0,"37611":0,"37612":187,"37613":0,"37614":2613,"37615":0,"37616":-1,"37617":-1,"37618":0,"37619":2671,"37620":-1,"37621":0,"37622":0,"37623":0,"37624":2030,"37625":2303,"37626":150,"37627":0,"37628":-1,"37629":0,"37630":0,"37631":-1,"37632":8,"37633":-1,"37634":2589,"37635":0,"37636":61,"37637":0,"37638":0,"37639":483,"37640":2394,"37641":2524,"37642":0,"37643":0,"37644":0,"37645":0,"37646":0,"37647":0,"37648":-1,"37649":2191,"37650":-1,"37651":0,"37652":554,"37653":0,"37654":0,"37655":-1,"37656":0,"37657":-1,"37658":327,"37659":0,"37660":310,"37661":-1,"37662":0,"37663":0,"37664":-1,"37665":0,"37666":645,"37667":0,"37668":2517,"37669":-1,"37670":-1,"37671":2190,"37672":-1,"37673":404,"37674":-1,"37675":-1,"37676":0,"37677":-1,"37678":-1,"37679":0,"37680":0,"37681":2654,"37682":0,"37683":0,"37684":0,"37685":0,"37686":2303,"37687":443,"37688":-1,"37689":2245,"37690":-1,"37691":-1,"37692":0,"37693":-1,"37694":0,"37695":12,"37696":-1,"37697":0,"37698":0,"37699":2087,"37700":0,"37701":-1,"37702":-1,"37703":0,"37704":0,"37705":0,"37706":0,"37707":-1,"37708":0,"37709":0,"37710":-1,"37711":-1,"37712":-1,"37713":645,"37714":0,"37715":-1,"37716":0,"37717":418,"37718":-1,"37719":0,"37720":-1,"37721":0,"37722":738,"37723":0,"37724":-1,"37725":-1,"37726":0,"37727":0,"37728":2549,"37729":-1,"37730":2251,"37731":2176,"37732":0,"37733":-1,"37734":2458,"37735":0,"37736":0,"37737":0,"37738":37,"37739":0,"37740":2473,"37741":-1,"37742":300,"37743":-1,"37744":0,"37745":0,"37746":-1,"37747":0,"37748":-1,"37749":-1,"37750":-1,"37751":-1,"37752":-1,"37753":0,"37754":0,"37755":0,"37756":0,"37757":2283,"37758":-1,"37759":2566,"37760":0,"37761":663,"37762":0,"37763":0,"37764":-1,"37765":0,"37766":362,"37767":-1,"37768":2530,"37769":-1,"37770":0,"37771":2604,"37772":0,"37773":0,"37774":0,"37775":-1,"37776":2573,"37777":1994,"37778":0,"37779":2661,"37780":0,"37781":-1,"37782":2431,"37783":0,"37784":0,"37785":264,"37786":407,"37787":-1,"37788":0,"37789":0,"37790":0,"37791":2104,"37792":2076,"37793":0,"37794":-1,"37795":2567,"37796":2563,"37797":0,"37798":0,"37799":-1,"37800":0,"37801":2515,"37802":0,"37803":0,"37804":2166,"37805":-1,"37806":0,"37807":0,"37808":0,"37809":0,"37810":-1,"37811":2574,"37812":2316,"37813":-1,"37814":-1,"37815":0,"37816":0,"37817":-1,"37818":2083,"37819":554,"37820":0,"37821":0,"37822":2621,"37823":-1,"37824":0,"37825":0,"37826":0,"37827":43,"37828":0,"37829":-1,"37830":-1,"37831":2644,"37832":2589,"37833":0,"37834":0,"37835":-1,"37836":0,"37837":-1,"37838":-1,"37839":-1,"37840":0,"37841":-1,"37842":2507,"37843":-1,"37844":0,"37845":2582,"37846":602,"37847":-1,"37848":-1,"37849":462,"37850":-1,"37851":2517,"37852":462,"37853":-1,"37854":-1,"37855":-1,"37856":-1,"37857":0,"37858":2074,"37859":0,"37860":-1,"37861":-1,"37862":-1,"37863":-1,"37864":-1,"37865":-1,"37866":2186,"37867":0,"37868":0,"37869":0,"37870":0,"37871":-1,"37872":0,"37873":663,"37874":-1,"37875":0,"37876":0,"37877":0,"37878":-1,"37879":-1,"37880":906,"37881":2055,"37882":0,"37883":2647,"37884":-1,"37885":0,"37886":826,"37887":-1,"37888":496,"37889":-1,"37890":-1,"37891":-1,"37892":-1,"37893":0,"37894":0,"37895":-1,"37896":0,"37897":168,"37898":2521,"37899":-1,"37900":2422,"37901":0,"37902":0,"37903":-1,"37904":-1,"37905":2072,"37906":2306,"37907":2182,"37908":0,"37909":0,"37910":0,"37911":0,"37912":0,"37913":0,"37914":-1,"37915":0,"37916":-1,"37917":0,"37918":909,"37919":0,"37920":2658,"37921":-1,"37922":0,"37923":2357,"37924":2524,"37925":0,"37926":2226,"37927":0,"37928":0,"37929":-1,"37930":-1,"37931":-1,"37932":-1,"37933":0,"37934":2154,"37935":-1,"37936":-1,"37937":0,"37938":0,"37939":0,"37940":0,"37941":2133,"37942":2310,"37943":2140,"37944":0,"37945":8,"37946":-1,"37947":-1,"37948":2607,"37949":-1,"37950":2311,"37951":0,"37952":0,"37953":0,"37954":2632,"37955":0,"37956":-1,"37957":-1,"37958":0,"37959":0,"37960":0,"37961":0,"37962":0,"37963":-1,"37964":0,"37965":2458,"37966":-1,"37967":-1,"37968":0,"37969":0,"37970":2573,"37971":2124,"37972":-1,"37973":-1,"37974":-1,"37975":0,"37976":0,"37977":18,"37978":0,"37979":-1,"37980":-1,"37981":0,"37982":327,"37983":0,"37984":-1,"37985":-1,"37986":0,"37987":310,"37988":-1,"37989":2009,"37990":-1,"37991":-1,"37992":-1,"37993":2232,"37994":0,"37995":2266,"37996":-1,"37997":0,"37998":-1,"37999":0,"38000":0,"38001":0,"38002":2567,"38003":-1,"38004":-1,"38005":0,"38006":-1,"38007":-1,"38008":2550,"38009":2538,"38010":-1,"38011":-1,"38012":2143,"38013":2295,"38014":2105,"38015":2566,"38016":0,"38017":0,"38018":412,"38019":-1,"38020":0,"38021":35,"38022":-1,"38023":-1,"38024":0,"38025":-1,"38026":-1,"38027":-1,"38028":-1,"38029":-1,"38030":0,"38031":-1,"38032":2216,"38033":0,"38034":2629,"38035":-1,"38036":-1,"38037":-1,"38038":-1,"38039":0,"38040":104,"38041":567,"38042":0,"38043":0,"38044":-1,"38045":2089,"38046":0,"38047":0,"38048":0,"38049":-1,"38050":-1,"38051":-1,"38052":142,"38053":-1,"38054":0,"38055":-1,"38056":0,"38057":-1,"38058":-1,"38059":0,"38060":2267,"38061":0,"38062":-1,"38063":-1,"38064":0,"38065":0,"38066":-1,"38067":261,"38068":-1,"38069":2237,"38070":-1,"38071":0,"38072":-1,"38073":-1,"38074":0,"38075":-1,"38076":0,"38077":2121,"38078":0,"38079":2678,"38080":0,"38081":-1,"38082":0,"38083":0,"38084":0,"38085":0,"38086":-1,"38087":2611,"38088":199,"38089":0,"38090":0,"38091":-1,"38092":-1,"38093":0,"38094":-1,"38095":0,"38096":0,"38097":2655,"38098":-1,"38099":-1,"38100":2259,"38101":0,"38102":2579,"38103":303,"38104":-1,"38105":0,"38106":0,"38107":0,"38108":0,"38109":936,"38110":-1,"38111":0,"38112":-1,"38113":2009,"38114":133,"38115":0,"38116":0,"38117":2352,"38118":-1,"38119":0,"38120":-1,"38121":0,"38122":0,"38123":0,"38124":0,"38125":0,"38126":0,"38127":2079,"38128":299,"38129":0,"38130":0,"38131":-1,"38132":-1,"38133":-1,"38134":-1,"38135":-1,"38136":0,"38137":2128,"38138":-1,"38139":0,"38140":246,"38141":0,"38142":-1,"38143":-1,"38144":246,"38145":-1,"38146":-1,"38147":-1,"38148":0,"38149":-1,"38150":2496,"38151":0,"38152":0,"38153":0,"38154":-1,"38155":0,"38156":2625,"38157":0,"38158":-1,"38159":-1,"38160":-1,"38161":0,"38162":-1,"38163":2278,"38164":2,"38165":2608,"38166":-1,"38167":-1,"38168":2583,"38169":0,"38170":2194,"38171":-1,"38172":-1,"38173":0,"38174":0,"38175":156,"38176":0,"38177":2491,"38178":-1,"38179":0,"38180":826,"38181":483,"38182":0,"38183":-1,"38184":2387,"38185":-1,"38186":2081,"38187":-1,"38188":0,"38189":-1,"38190":0,"38191":2130,"38192":2282,"38193":2283,"38194":199,"38195":2575,"38196":-1,"38197":0,"38198":2551,"38199":584,"38200":-1,"38201":0,"38202":2673,"38203":0,"38204":0,"38205":-1,"38206":-1,"38207":0,"38208":2297,"38209":-1,"38210":38,"38211":0,"38212":0,"38213":0,"38214":0,"38215":0,"38216":-1,"38217":0,"38218":-1,"38219":-1,"38220":-1,"38221":-1,"38222":-1,"38223":-1,"38224":-1,"38225":0,"38226":0,"38227":0,"38228":2387,"38229":-1,"38230":2152,"38231":-1,"38232":2203,"38233":0,"38234":0,"38235":2598,"38236":0,"38237":-1,"38238":0,"38239":0,"38240":281,"38241":0,"38242":0,"38243":-1,"38244":2330,"38245":662,"38246":0,"38247":0,"38248":578,"38249":2617,"38250":-1,"38251":-1,"38252":0,"38253":2655,"38254":0,"38255":-1,"38256":2214,"38257":-1,"38258":0,"38259":0,"38260":907,"38261":0,"38262":0,"38263":0,"38264":-1,"38265":0,"38266":-1,"38267":0,"38268":0,"38269":0,"38270":0,"38271":0,"38272":924,"38273":-1,"38274":-1,"38275":0,"38276":-1,"38277":0,"38278":-1,"38279":-1,"38280":2055,"38281":2476,"38282":0,"38283":2307,"38284":0,"38285":0,"38286":2249,"38287":0,"38288":-1,"38289":-1,"38290":2290,"38291":-1,"38292":0,"38293":-1,"38294":0,"38295":2647,"38296":0,"38297":-1,"38298":2591,"38299":-1,"38300":0,"38301":2619,"38302":-1,"38303":-1,"38304":-1,"38305":-1,"38306":0,"38307":0,"38308":2601,"38309":0,"38310":-1,"38311":2489,"38312":-1,"38313":2063,"38314":-1,"38315":-1,"38316":0,"38317":23,"38318":-1,"38319":-1,"38320":0,"38321":0,"38322":2194,"38323":-1,"38324":2642,"38325":2373,"38326":-1,"38327":-1,"38328":0,"38329":2050,"38330":-1,"38331":0,"38332":0,"38333":2598,"38334":2081,"38335":2198,"38336":0,"38337":298,"38338":0,"38339":0,"38340":2132,"38341":-1,"38342":0,"38343":2540,"38344":0,"38345":0,"38346":-1,"38347":-1,"38348":2016,"38349":-1,"38350":-1,"38351":2137,"38352":0,"38353":0,"38354":-1,"38355":0,"38356":-1,"38357":2619,"38358":2395,"38359":2610,"38360":109,"38361":2412,"38362":0,"38363":1995,"38364":0,"38365":0,"38366":0,"38367":-1,"38368":2660,"38369":3,"38370":0,"38371":2534,"38372":2002,"38373":-1,"38374":0,"38375":0,"38376":496,"38377":-1,"38378":2285,"38379":-1,"38380":0,"38381":0,"38382":2313,"38383":2439,"38384":0,"38385":2677,"38386":-1,"38387":0,"38388":44,"38389":0,"38390":2152,"38391":108,"38392":-1,"38393":-1,"38394":2450,"38395":0,"38396":0,"38397":293,"38398":2418,"38399":2003,"38400":-1,"38401":2450,"38402":0,"38403":0,"38404":-1,"38405":620,"38406":0,"38407":0,"38408":0,"38409":-1,"38410":0,"38411":0,"38412":2392,"38413":0,"38414":0,"38415":0,"38416":0,"38417":0,"38418":-1,"38419":0,"38420":0,"38421":2230,"38422":2037,"38423":-1,"38424":2398,"38425":-1,"38426":0,"38427":-1,"38428":-1,"38429":-1,"38430":0,"38431":-1,"38432":0,"38433":-1,"38434":0,"38435":-1,"38436":-1,"38437":0,"38438":0,"38439":-1,"38440":-1,"38441":0,"38442":-1,"38443":2431,"38444":-1,"38445":-1,"38446":-1,"38447":0,"38448":908,"38449":0,"38450":0,"38451":2671,"38452":2670,"38453":2571,"38454":0,"38455":2501,"38456":34,"38457":0,"38458":0,"38459":0,"38460":2253,"38461":-1,"38462":2107,"38463":0,"38464":0,"38465":0,"38466":2388,"38467":-1,"38468":0,"38469":101,"38470":0,"38471":0,"38472":0,"38473":2546,"38474":2116,"38475":0,"38476":-1,"38477":-1,"38478":2583,"38479":312,"38480":2567,"38481":0,"38482":-1,"38483":2621,"38484":2231,"38485":-1,"38486":0,"38487":-1,"38488":0,"38489":0,"38490":0,"38491":-1,"38492":-1,"38493":-1,"38494":2175,"38495":2581,"38496":-1,"38497":-1,"38498":0,"38499":2068,"38500":-1,"38501":2510,"38502":2134,"38503":2602,"38504":8,"38505":0,"38506":0,"38507":0,"38508":-1,"38509":0,"38510":2571,"38511":0,"38512":0,"38513":-1,"38514":0,"38515":0,"38516":0,"38517":-1,"38518":-1,"38519":0,"38520":0,"38521":-1,"38522":0,"38523":0,"38524":-1,"38525":-1,"38526":0,"38527":-1,"38528":0,"38529":418,"38530":2397,"38531":-1,"38532":2408,"38533":2269,"38534":-1,"38535":2645,"38536":2412,"38537":0,"38538":-1,"38539":0,"38540":0,"38541":-1,"38542":2300,"38543":2385,"38544":-1,"38545":0,"38546":0,"38547":2317,"38548":2241,"38549":0,"38550":-1,"38551":-1,"38552":-1,"38553":-1,"38554":0,"38555":2311,"38556":2335,"38557":2469,"38558":448,"38559":0,"38560":-1,"38561":2177,"38562":-1,"38563":0,"38564":-1,"38565":0,"38566":0,"38567":0,"38568":-1,"38569":0,"38570":0,"38571":0,"38572":0,"38573":2279,"38574":0,"38575":0,"38576":0,"38577":2188,"38578":-1,"38579":0,"38580":2047,"38581":-1,"38582":2556,"38583":2620,"38584":2151,"38585":-1,"38586":2179,"38587":0,"38588":0,"38589":2578,"38590":0,"38591":2206,"38592":-1,"38593":2482,"38594":-1,"38595":0,"38596":0,"38597":-1,"38598":2602,"38599":0,"38600":0,"38601":-1,"38602":46,"38603":1995,"38604":-1,"38605":-1,"38606":0,"38607":-1,"38608":-1,"38609":0,"38610":0,"38611":2598,"38612":0,"38613":0,"38614":-1,"38615":2436,"38616":2328,"38617":0,"38618":-1,"38619":0,"38620":0,"38621":2644,"38622":0,"38623":0,"38624":2647,"38625":2334,"38626":0,"38627":0,"38628":0,"38629":-1,"38630":-1,"38631":0,"38632":0,"38633":662,"38634":-1,"38635":-1,"38636":0,"38637":2229,"38638":2663,"38639":0,"38640":-1,"38641":-1,"38642":2642,"38643":0,"38644":0,"38645":2198,"38646":0,"38647":2301,"38648":0,"38649":-1,"38650":-1,"38651":0,"38652":0,"38653":-1,"38654":-1,"38655":-1,"38656":0,"38657":0,"38658":2383,"38659":0,"38660":-1,"38661":2053,"38662":0,"38663":-1,"38664":0,"38665":-1,"38666":-1,"38667":-1,"38668":0,"38669":2173,"38670":-1,"38671":0,"38672":0,"38673":2492,"38674":-1,"38675":-1,"38676":0,"38677":0,"38678":0,"38679":2294,"38680":0,"38681":0,"38682":-1,"38683":2570,"38684":2107,"38685":0,"38686":0,"38687":-1,"38688":533,"38689":0,"38690":0,"38691":2362,"38692":0,"38693":-1,"38694":0,"38695":0,"38696":-1,"38697":-1,"38698":0,"38699":359,"38700":0,"38701":-1,"38702":0,"38703":-1,"38704":-1,"38705":0,"38706":-1,"38707":-1,"38708":0,"38709":0,"38710":0,"38711":0,"38712":2605,"38713":2509,"38714":-1,"38715":2575,"38716":-1,"38717":-1,"38718":0,"38719":0,"38720":-1,"38721":0,"38722":0,"38723":-1,"38724":0,"38725":2443,"38726":0,"38727":0,"38728":-1,"38729":2628,"38730":-1,"38731":662,"38732":0,"38733":0,"38734":-1,"38735":2345,"38736":2378,"38737":0,"38738":-1,"38739":0,"38740":-1,"38741":0,"38742":-1,"38743":0,"38744":-1,"38745":2404,"38746":-1,"38747":-1,"38748":2611,"38749":0,"38750":2233,"38751":0,"38752":0,"38753":461,"38754":0,"38755":0,"38756":0,"38757":0,"38758":-1,"38759":2314,"38760":0,"38761":2406,"38762":2425,"38763":0,"38764":0,"38765":34,"38766":0,"38767":0,"38768":-1,"38769":0,"38770":0,"38771":2645,"38772":-1,"38773":-1,"38774":0,"38775":0,"38776":0,"38777":2260,"38778":2071,"38779":-1,"38780":-1,"38781":-1,"38782":0,"38783":0,"38784":0,"38785":2141,"38786":0,"38787":-1,"38788":2066,"38789":0,"38790":0,"38791":2312,"38792":-1,"38793":-1,"38794":2619,"38795":2083,"38796":2305,"38797":0,"38798":0,"38799":2122,"38800":-1,"38801":0,"38802":-1,"38803":-1,"38804":154,"38805":0,"38806":0,"38807":0,"38808":-1,"38809":0,"38810":0,"38811":2150,"38812":0,"38813":0,"38814":2602,"38815":-1,"38816":0,"38817":0,"38818":2300,"38819":0,"38820":2506,"38821":0,"38822":0,"38823":0,"38824":2215,"38825":0,"38826":2168,"38827":0,"38828":280,"38829":2599,"38830":0,"38831":2381,"38832":0,"38833":2664,"38834":0,"38835":0,"38836":0,"38837":2431,"38838":-1,"38839":0,"38840":0,"38841":-1,"38842":0,"38843":2407,"38844":2110,"38845":837,"38846":-1,"38847":0,"38848":0,"38849":0,"38850":-1,"38851":0,"38852":2158,"38853":0,"38854":0,"38855":-1,"38856":0,"38857":2045,"38858":0,"38859":0,"38860":-1,"38861":2157,"38862":-1,"38863":-1,"38864":2301,"38865":-1,"38866":0,"38867":2423,"38868":-1,"38869":-1,"38870":0,"38871":-1,"38872":0,"38873":0,"38874":-1,"38875":0,"38876":617,"38877":0,"38878":-1,"38879":-1,"38880":0,"38881":0,"38882":2306,"38883":2234,"38884":0,"38885":0,"38886":-1,"38887":908,"38888":0,"38889":-1,"38890":0,"38891":0,"38892":0,"38893":2251,"38894":0,"38895":2172,"38896":0,"38897":0,"38898":-1,"38899":2209,"38900":2313,"38901":2,"38902":2543,"38903":-1,"38904":-1,"38905":0,"38906":0,"38907":0,"38908":0,"38909":-1,"38910":-1,"38911":-1,"38912":2226,"38913":-1,"38914":-1,"38915":-1,"38916":2325,"38917":2630,"38918":0,"38919":28,"38920":0,"38921":2319,"38922":0,"38923":2454,"38924":2021,"38925":-1,"38926":-1,"38927":2381,"38928":0,"38929":0,"38930":0,"38931":-1,"38932":-1,"38933":0,"38934":-1,"38935":-1,"38936":0,"38937":0,"38938":0,"38939":2155,"38940":0,"38941":0,"38942":0,"38943":0,"38944":0,"38945":620,"38946":0,"38947":0,"38948":2134,"38949":-1,"38950":2013,"38951":0,"38952":0,"38953":0,"38954":2398,"38955":0,"38956":0,"38957":-1,"38958":-1,"38959":0,"38960":-1,"38961":-1,"38962":0,"38963":0,"38964":0,"38965":0,"38966":738,"38967":0,"38968":0,"38969":0,"38970":-1,"38971":0,"38972":2243,"38973":0,"38974":2395,"38975":0,"38976":2474,"38977":-1,"38978":2621,"38979":0,"38980":2018,"38981":2602,"38982":2094,"38983":404,"38984":0,"38985":0,"38986":0,"38987":-1,"38988":2331,"38989":-1,"38990":0,"38991":0,"38992":2075,"38993":0,"38994":0,"38995":2627,"38996":2436,"38997":787,"38998":0,"38999":0,"39000":-1,"39001":-1,"39002":2402,"39003":0,"39004":0,"39005":145,"39006":2172,"39007":-1,"39008":-1,"39009":0,"39010":0,"39011":0,"39012":0,"39013":2220,"39014":2584,"39015":2515,"39016":0,"39017":0,"39018":-1,"39019":0,"39020":-1,"39021":0,"39022":2553,"39023":0,"39024":859,"39025":0,"39026":0,"39027":0,"39028":-1,"39029":0,"39030":-1,"39031":2248,"39032":0,"39033":0,"39034":-1,"39035":-1,"39036":461,"39037":2260,"39038":86,"39039":0,"39040":0,"39041":0,"39042":0,"39043":-1,"39044":246,"39045":2655,"39046":-1,"39047":0,"39048":0,"39049":-1,"39050":-1,"39051":-1,"39052":2218,"39053":0,"39054":-1,"39055":42,"39056":0,"39057":2287,"39058":2607,"39059":-1,"39060":-1,"39061":0,"39062":2343,"39063":0,"39064":0,"39065":0,"39066":2389,"39067":2580,"39068":0,"39069":0,"39070":2587,"39071":2543,"39072":0,"39073":-1,"39074":0,"39075":-1,"39076":2049,"39077":2258,"39078":1994,"39079":-1,"39080":0,"39081":0,"39082":8,"39083":2394,"39084":0,"39085":-1,"39086":2151,"39087":-1,"39088":-1,"39089":-1,"39090":362,"39091":-1,"39092":0,"39093":2319,"39094":-1,"39095":0,"39096":0,"39097":-1,"39098":0,"39099":2568,"39100":-1,"39101":2251,"39102":2408,"39103":-1,"39104":0,"39105":0,"39106":2191,"39107":0,"39108":849,"39109":0,"39110":2441,"39111":2150,"39112":2038,"39113":2251,"39114":2526,"39115":2462,"39116":2075,"39117":0,"39118":0,"39119":0,"39120":0,"39121":-1,"39122":-1,"39123":-1,"39124":693,"39125":669,"39126":-1,"39127":-1,"39128":-1,"39129":-1,"39130":0,"39131":-1,"39132":-1,"39133":0,"39134":0,"39135":0,"39136":0,"39137":0,"39138":-1,"39139":0,"39140":-1,"39141":-1,"39142":0,"39143":0,"39144":-1,"39145":0,"39146":0,"39147":598,"39148":2162,"39149":-1,"39150":0,"39151":299,"39152":-1,"39153":2107,"39154":-1,"39155":0,"39156":-1,"39157":2315,"39158":0,"39159":0,"39160":0,"39161":-1,"39162":2358,"39163":2088,"39164":2234,"39165":0,"39166":787,"39167":-1,"39168":0,"39169":154,"39170":0,"39171":0,"39172":0,"39173":2131,"39174":2121,"39175":-1,"39176":-1,"39177":-1,"39178":2229,"39179":617,"39180":0,"39181":2063,"39182":-1,"39183":0,"39184":303,"39185":0,"39186":2293,"39187":0,"39188":0,"39189":303,"39190":0,"39191":0,"39192":-1,"39193":317,"39194":0,"39195":2355,"39196":0,"39197":2427,"39198":2385,"39199":0,"39200":0,"39201":-1,"39202":2411,"39203":0,"39204":-1,"39205":0,"39206":2366,"39207":0,"39208":-1,"39209":0,"39210":2486,"39211":2531,"39212":2166,"39213":-1,"39214":0,"39215":0,"39216":0,"39217":0,"39218":327,"39219":-1,"39220":0,"39221":0,"39222":-1,"39223":-1,"39224":0,"39225":0,"39226":-1,"39227":2443,"39228":0,"39229":0,"39230":0,"39231":2166,"39232":-1,"39233":2262,"39234":-1,"39235":2316,"39236":0,"39237":-1,"39238":2216,"39239":2633,"39240":-1,"39241":-1,"39242":2350,"39243":0,"39244":-1,"39245":0,"39246":-1,"39247":0,"39248":2261,"39249":0,"39250":-1,"39251":0,"39252":0,"39253":36,"39254":0,"39255":0,"39256":33,"39257":0,"39258":0,"39259":-1,"39260":0,"39261":0,"39262":0,"39263":0,"39264":-1,"39265":0,"39266":2171,"39267":-1,"39268":-1,"39269":0,"39270":0,"39271":2040,"39272":2249,"39273":-1,"39274":359,"39275":-1,"39276":0,"39277":-1,"39278":0,"39279":2654,"39280":2010,"39281":0,"39282":397,"39283":-1,"39284":0,"39285":-1,"39286":0,"39287":-1,"39288":-1,"39289":0,"39290":1991,"39291":-1,"39292":2630,"39293":837,"39294":0,"39295":-1,"39296":0,"39297":2332,"39298":2144,"39299":2242,"39300":0,"39301":-1,"39302":2320,"39303":0,"39304":0,"39305":-1,"39306":-1,"39307":-1,"39308":0,"39309":2311,"39310":2021,"39311":0,"39312":-1,"39313":0,"39314":-1,"39315":0,"39316":0,"39317":-1,"39318":0,"39319":-1,"39320":0,"39321":-1,"39322":-1,"39323":-1,"39324":-1,"39325":-1,"39326":0,"39327":0,"39328":906,"39329":0,"39330":0,"39331":-1,"39332":0,"39333":0,"39334":-1,"39335":26,"39336":2575,"39337":2271,"39338":2368,"39339":2354,"39340":0,"39341":0,"39342":40,"39343":-1,"39344":0,"39345":0,"39346":154,"39347":0,"39348":0,"39349":-1,"39350":-1,"39351":0,"39352":0,"39353":2234,"39354":0,"39355":397,"39356":-1,"39357":-1,"39358":0,"39359":2677,"39360":2105,"39361":0,"39362":-1,"39363":2650,"39364":-1,"39365":0,"39366":2230,"39367":2068,"39368":0,"39369":-1,"39370":0,"39371":0,"39372":0,"39373":2343,"39374":0,"39375":-1,"39376":0,"39377":2429,"39378":584,"39379":-1,"39380":2558,"39381":-1,"39382":0,"39383":-1,"39384":0,"39385":0,"39386":0,"39387":0,"39388":598,"39389":667,"39390":245,"39391":0,"39392":-1,"39393":0,"39394":0,"39395":0,"39396":-1,"39397":2174,"39398":-1,"39399":0,"39400":98,"39401":-1,"39402":-1,"39403":-1,"39404":-1,"39405":0,"39406":-1,"39407":0,"39408":0,"39409":-1,"39410":0,"39411":2175,"39412":0,"39413":2185,"39414":2507,"39415":0,"39416":61,"39417":0,"39418":2263,"39419":31,"39420":0,"39421":0,"39422":28,"39423":2640,"39424":0,"39425":-1,"39426":0,"39427":0,"39428":2528,"39429":0,"39430":0,"39431":-1,"39432":0,"39433":2561,"39434":0,"39435":2649,"39436":-1,"39437":0,"39438":0,"39439":-1,"39440":0,"39441":2640,"39442":738,"39443":645,"39444":-1,"39445":2387,"39446":0,"39447":2680,"39448":2472,"39449":-1,"39450":2079,"39451":0,"39452":0,"39453":0,"39454":0,"39455":-1,"39456":0,"39457":2110,"39458":0,"39459":0,"39460":0,"39461":0,"39462":2613,"39463":4,"39464":2092,"39465":461,"39466":-1,"39467":0,"39468":0,"39469":-1,"39470":0,"39471":28,"39472":2488,"39473":0,"39474":-1,"39475":-1,"39476":-1,"39477":2089,"39478":17,"39479":837,"39480":0,"39481":0,"39482":-1,"39483":0,"39484":0,"39485":0,"39486":2431,"39487":0,"39488":-1,"39489":0,"39490":-1,"39491":2562,"39492":-1,"39493":-1,"39494":-1,"39495":0,"39496":-1,"39497":0,"39498":0,"39499":0,"39500":2323,"39501":0,"39502":0,"39503":0,"39504":-1,"39505":0,"39506":0,"39507":-1,"39508":0,"39509":-1,"39510":2006,"39511":2096,"39512":-1,"39513":2604,"39514":-1,"39515":0,"39516":-1,"39517":2063,"39518":0,"39519":0,"39520":0,"39521":0,"39522":2215,"39523":-1,"39524":0,"39525":2636,"39526":-1,"39527":-1,"39528":2093,"39529":0,"39530":0,"39531":2269,"39532":0,"39533":0,"39534":-1,"39535":0,"39536":0,"39537":-1,"39538":0,"39539":-1,"39540":0,"39541":-1,"39542":-1,"39543":2290,"39544":-1,"39545":2468,"39546":0,"39547":0,"39548":0,"39549":-1,"39550":2102,"39551":8,"39552":2368,"39553":-1,"39554":-1,"39555":-1,"39556":0,"39557":826,"39558":-1,"39559":-1,"39560":0,"39561":2001,"39562":2269,"39563":0,"39564":-1,"39565":2037,"39566":2457,"39567":2631,"39568":2585,"39569":-1,"39570":77,"39571":0,"39572":0,"39573":0,"39574":0,"39575":0,"39576":-1,"39577":0,"39578":0,"39579":-1,"39580":0,"39581":0,"39582":0,"39583":2140,"39584":0,"39585":0,"39586":2671,"39587":-1,"39588":2001,"39589":0,"39590":-1,"39591":-1,"39592":0,"39593":-1,"39594":0,"39595":-1,"39596":-1,"39597":2103,"39598":-1,"39599":2119,"39600":-1,"39601":0,"39602":341,"39603":0,"39604":0,"39605":359,"39606":0,"39607":-1,"39608":0,"39609":-1,"39610":2093,"39611":0,"39612":2220,"39613":-1,"39614":0,"39615":0,"39616":0,"39617":2680,"39618":0,"39619":0,"39620":0,"39621":-1,"39622":0,"39623":0,"39624":0,"39625":2490,"39626":-1,"39627":-1,"39628":0,"39629":-1,"39630":-1,"39631":2226,"39632":2634,"39633":2535,"39634":2652,"39635":4,"39636":551,"39637":0,"39638":-1,"39639":-1,"39640":-1,"39641":0,"39642":-1,"39643":2048,"39644":-1,"39645":329,"39646":2091,"39647":-1,"39648":-1,"39649":2655,"39650":-1,"39651":2236,"39652":0,"39653":0,"39654":0,"39655":2045,"39656":-1,"39657":2176,"39658":-1,"39659":-1,"39660":179,"39661":0,"39662":-1,"39663":-1,"39664":0,"39665":2203,"39666":0,"39667":0,"39668":0,"39669":0,"39670":0,"39671":0,"39672":0,"39673":0,"39674":0,"39675":0,"39676":0,"39677":0,"39678":-1,"39679":0,"39680":-1,"39681":2247,"39682":2174,"39683":0,"39684":-1,"39685":0,"39686":0,"39687":-1,"39688":0,"39689":0,"39690":0,"39691":2237,"39692":2194,"39693":0,"39694":-1,"39695":-1,"39696":2576,"39697":-1,"39698":-1,"39699":-1,"39700":0,"39701":-1,"39702":2671,"39703":-1,"39704":0,"39705":2322,"39706":0,"39707":2611,"39708":-1,"39709":2656,"39710":148,"39711":0,"39712":2613,"39713":0,"39714":0,"39715":0,"39716":0,"39717":2276,"39718":0,"39719":-1,"39720":-1,"39721":-1,"39722":2418,"39723":2144,"39724":0,"39725":0,"39726":0,"39727":0,"39728":0,"39729":2535,"39730":-1,"39731":0,"39732":-1,"39733":-1,"39734":2476,"39735":0,"39736":2602,"39737":2014,"39738":2126,"39739":-1,"39740":-1,"39741":2659,"39742":0,"39743":0,"39744":0,"39745":2313,"39746":-1,"39747":2396,"39748":0,"39749":2505,"39750":145,"39751":0,"39752":0,"39753":14,"39754":0,"39755":-1,"39756":2159,"39757":2313,"39758":2003,"39759":0,"39760":2104,"39761":0,"39762":0,"39763":2438,"39764":2435,"39765":0,"39766":2304,"39767":-1,"39768":2142,"39769":0,"39770":2481,"39771":0,"39772":691,"39773":0,"39774":-1,"39775":0,"39776":2058,"39777":2279,"39778":-1,"39779":-1,"39780":299,"39781":0,"39782":2280,"39783":0,"39784":2139,"39785":0,"39786":2622,"39787":-1,"39788":0,"39789":0,"39790":0,"39791":2340,"39792":0,"39793":2022,"39794":0,"39795":0,"39796":-1,"39797":0,"39798":-1,"39799":0,"39800":0,"39801":2136,"39802":-1,"39803":0,"39804":2201,"39805":-1,"39806":-1,"39807":0,"39808":-1,"39809":0,"39810":2097,"39811":0,"39812":-1,"39813":-1,"39814":-1,"39815":-1,"39816":2162,"39817":-1,"39818":-1,"39819":0,"39820":0,"39821":0,"39822":0,"39823":2006,"39824":-1,"39825":-1,"39826":-1,"39827":-1,"39828":0,"39829":-1,"39830":2255,"39831":0,"39832":-1,"39833":2620,"39834":2284,"39835":0,"39836":2235,"39837":0,"39838":2070,"39839":0,"39840":0,"39841":-1,"39842":2565,"39843":0,"39844":0,"39845":0,"39846":-1,"39847":0,"39848":0,"39849":-1,"39850":2523,"39851":0,"39852":2061,"39853":-1,"39854":-1,"39855":-1,"39856":-1,"39857":-1,"39858":2044,"39859":-1,"39860":1998,"39861":2539,"39862":-1,"39863":0,"39864":2493,"39865":0,"39866":2221,"39867":0,"39868":0,"39869":209,"39870":2363,"39871":150,"39872":-1,"39873":0,"39874":2391,"39875":0,"39876":-1,"39877":2629,"39878":0,"39879":2329,"39880":907,"39881":0,"39882":-1,"39883":2291,"39884":0,"39885":0,"39886":0,"39887":0,"39888":0,"39889":0,"39890":0,"39891":0,"39892":2454,"39893":2589,"39894":-1,"39895":-1,"39896":-1,"39897":-1,"39898":0,"39899":0,"39900":-1,"39901":2096,"39902":-1,"39903":0,"39904":0,"39905":-1,"39906":-1,"39907":-1,"39908":0,"39909":0,"39910":-1,"39911":2666,"39912":-1,"39913":663,"39914":0,"39915":448,"39916":-1,"39917":-1,"39918":0,"39919":0,"39920":-1,"39921":2543,"39922":2255,"39923":0,"39924":-1,"39925":0,"39926":0,"39927":2338,"39928":-1,"39929":0,"39930":0,"39931":0,"39932":-1,"39933":0,"39934":2315,"39935":2088,"39936":0,"39937":2385,"39938":-1,"39939":-1,"39940":-1,"39941":-1,"39942":313,"39943":0,"39944":2359,"39945":2051,"39946":0,"39947":0,"39948":2463,"39949":77,"39950":-1,"39951":0,"39952":-1,"39953":-1,"39954":2298,"39955":2583,"39956":0,"39957":0,"39958":2117,"39959":-1,"39960":-1,"39961":0,"39962":-1,"39963":-1,"39964":0,"39965":0,"39966":2431,"39967":-1,"39968":308,"39969":2609,"39970":0,"39971":0,"39972":-1,"39973":-1,"39974":-1,"39975":0,"39976":-1,"39977":1992,"39978":2269,"39979":0,"39980":0,"39981":0,"39982":2611,"39983":-1,"39984":2654,"39985":0,"39986":-1,"39987":0,"39988":2676,"39989":402,"39990":2448,"39991":-1,"39992":2053,"39993":0,"39994":0,"39995":-1,"39996":-1,"39997":61,"39998":0,"39999":-1,"40000":0,"40001":2475,"40002":0,"40003":0,"40004":-1,"40005":0,"40006":-1,"40007":-1,"40008":0,"40009":0,"40010":0,"40011":-1,"40012":-1,"40013":2295,"40014":0,"40015":0,"40016":0,"40017":0,"40018":-1,"40019":2013,"40020":2066,"40021":2465,"40022":-1,"40023":0,"40024":0,"40025":0,"40026":0,"40027":-1,"40028":0,"40029":2374,"40030":1999,"40031":2221,"40032":2327,"40033":0,"40034":0,"40035":0,"40036":-1,"40037":2593,"40038":-1,"40039":0,"40040":-1,"40041":0,"40042":-1,"40043":0,"40044":2379,"40045":-1,"40046":-1,"40047":0,"40048":0,"40049":-1,"40050":2127,"40051":-1,"40052":0,"40053":2259,"40054":2096,"40055":2448,"40056":0,"40057":0,"40058":0,"40059":0,"40060":0,"40061":-1,"40062":-1,"40063":-1,"40064":2376,"40065":-1,"40066":2034,"40067":0,"40068":2217,"40069":2038,"40070":-1,"40071":2194,"40072":0,"40073":0,"40074":-1,"40075":0,"40076":0,"40077":-1,"40078":0,"40079":2557,"40080":-1,"40081":-1,"40082":-1,"40083":0,"40084":2477,"40085":0,"40086":0,"40087":0,"40088":2378,"40089":-1,"40090":2229,"40091":-1,"40092":2231,"40093":2521,"40094":-1,"40095":0,"40096":0,"40097":-1,"40098":14,"40099":2397,"40100":-1,"40101":0,"40102":-1,"40103":2254,"40104":2016,"40105":0,"40106":0,"40107":2033,"40108":2098,"40109":-1,"40110":-1,"40111":0,"40112":0,"40113":-1,"40114":849,"40115":0,"40116":0,"40117":-1,"40118":2341,"40119":0,"40120":0,"40121":0,"40122":-1,"40123":0,"40124":-1,"40125":0,"40126":2197,"40127":-1,"40128":2006,"40129":0,"40130":0,"40131":-1,"40132":-1,"40133":2601,"40134":-1,"40135":0,"40136":2658,"40137":-1,"40138":-1,"40139":0,"40140":-1,"40141":-1,"40142":2295,"40143":0,"40144":0,"40145":0,"40146":2007,"40147":2320,"40148":0,"40149":-1,"40150":-1,"40151":0,"40152":-1,"40153":0,"40154":-1,"40155":-1,"40156":2296,"40157":-1,"40158":2572,"40159":2278,"40160":0,"40161":2424,"40162":617,"40163":-1,"40164":-1,"40165":-1,"40166":2399,"40167":118,"40168":0,"40169":0,"40170":0,"40171":0,"40172":2658,"40173":0,"40174":0,"40175":2356,"40176":2090,"40177":2416,"40178":-1,"40179":-1,"40180":-1,"40181":0,"40182":2355,"40183":0,"40184":0,"40185":0,"40186":-1,"40187":2623,"40188":-1,"40189":-1,"40190":0,"40191":4,"40192":0,"40193":2179,"40194":-1,"40195":2167,"40196":0,"40197":0,"40198":-1,"40199":0,"40200":-1,"40201":2552,"40202":-1,"40203":0,"40204":2008,"40205":0,"40206":-1,"40207":0,"40208":-1,"40209":-1,"40210":-1,"40211":0,"40212":0,"40213":-1,"40214":0,"40215":-1,"40216":0,"40217":0,"40218":2519,"40219":2199,"40220":0,"40221":-1,"40222":-1,"40223":2679,"40224":145,"40225":-1,"40226":-1,"40227":-1,"40228":-1,"40229":2118,"40230":0,"40231":0,"40232":-1,"40233":-1,"40234":2063,"40235":-1,"40236":-1,"40237":-1,"40238":0,"40239":-1,"40240":-1,"40241":-1,"40242":-1,"40243":0,"40244":0,"40245":-1,"40246":0,"40247":-1,"40248":0,"40249":-1,"40250":2204,"40251":0,"40252":2099,"40253":0,"40254":2033,"40255":-1,"40256":2201,"40257":-1,"40258":2298,"40259":0,"40260":-1,"40261":0,"40262":0,"40263":-1,"40264":0,"40265":2339,"40266":2399,"40267":0,"40268":0,"40269":-1,"40270":2106,"40271":-1,"40272":-1,"40273":-1,"40274":0,"40275":2520,"40276":0,"40277":0,"40278":0,"40279":2523,"40280":2621,"40281":325,"40282":0,"40283":2276,"40284":0,"40285":0,"40286":-1,"40287":2410,"40288":0,"40289":448,"40290":0,"40291":-1,"40292":2265,"40293":2296,"40294":-1,"40295":-1,"40296":0,"40297":-1,"40298":46,"40299":0,"40300":0,"40301":0,"40302":-1,"40303":2564,"40304":2516,"40305":-1,"40306":-1,"40307":622,"40308":2046,"40309":2611,"40310":0,"40311":0,"40312":-1,"40313":80,"40314":-1,"40315":0,"40316":0,"40317":3,"40318":0,"40319":-1,"40320":0,"40321":-1,"40322":-1,"40323":2473,"40324":0,"40325":-1,"40326":-1,"40327":0,"40328":-1,"40329":0,"40330":-1,"40331":-1,"40332":2410,"40333":2314,"40334":0,"40335":-1,"40336":0,"40337":0,"40338":2532,"40339":0,"40340":0,"40341":178,"40342":0,"40343":2499,"40344":-1,"40345":-1,"40346":0,"40347":2597,"40348":2452,"40349":2332,"40350":133,"40351":0,"40352":-1,"40353":2094,"40354":2351,"40355":0,"40356":-1,"40357":-1,"40358":0,"40359":0,"40360":-1,"40361":2671,"40362":0,"40363":-1,"40364":0,"40365":0,"40366":-1,"40367":0,"40368":0,"40369":0,"40370":0,"40371":-1,"40372":0,"40373":0,"40374":2328,"40375":2535,"40376":2448,"40377":0,"40378":-1,"40379":0,"40380":12,"40381":0,"40382":-1,"40383":2089,"40384":2499,"40385":-1,"40386":0,"40387":2426,"40388":-1,"40389":0,"40390":-1,"40391":-1,"40392":2680,"40393":0,"40394":-1,"40395":0,"40396":0,"40397":0,"40398":0,"40399":-1,"40400":0,"40401":0,"40402":-1,"40403":2033,"40404":0,"40405":-1,"40406":-1,"40407":2615,"40408":0,"40409":2115,"40410":-1,"40411":0,"40412":-1,"40413":2064,"40414":2199,"40415":0,"40416":0,"40417":2020,"40418":2,"40419":0,"40420":0,"40421":2328,"40422":-1,"40423":0,"40424":0,"40425":2455,"40426":108,"40427":-1,"40428":0,"40429":2384,"40430":-1,"40431":-1,"40432":-1,"40433":2523,"40434":-1,"40435":-1,"40436":0,"40437":0,"40438":2474,"40439":-1,"40440":2184,"40441":2272,"40442":-1,"40443":0,"40444":148,"40445":2007,"40446":0,"40447":0,"40448":2223,"40449":-1,"40450":42,"40451":-1,"40452":9,"40453":0,"40454":0,"40455":0,"40456":2417,"40457":0,"40458":37,"40459":0,"40460":0,"40461":0,"40462":2268,"40463":-1,"40464":0,"40465":0,"40466":-1,"40467":2126,"40468":2110,"40469":-1,"40470":-1,"40471":0,"40472":-1,"40473":293,"40474":2192,"40475":-1,"40476":0,"40477":2393,"40478":-1,"40479":0,"40480":-1,"40481":2103,"40482":0,"40483":0,"40484":-1,"40485":-1,"40486":0,"40487":2434,"40488":0,"40489":-1,"40490":662,"40491":-1,"40492":0,"40493":0,"40494":0,"40495":2456,"40496":0,"40497":2168,"40498":-1,"40499":0,"40500":0,"40501":2400,"40502":-1,"40503":2249,"40504":0,"40505":0,"40506":2122,"40507":0,"40508":42,"40509":2215,"40510":-1,"40511":-1,"40512":0,"40513":0,"40514":-1,"40515":2169,"40516":-1,"40517":2298,"40518":0,"40519":0,"40520":-1,"40521":0,"40522":0,"40523":2370,"40524":2436,"40525":0,"40526":2418,"40527":0,"40528":-1,"40529":0,"40530":2344,"40531":0,"40532":-1,"40533":0,"40534":2489,"40535":0,"40536":0,"40537":2356,"40538":2382,"40539":720,"40540":0,"40541":2264,"40542":0,"40543":310,"40544":-1,"40545":0,"40546":772,"40547":0,"40548":-1,"40549":-1,"40550":-1,"40551":0,"40552":0,"40553":0,"40554":2064,"40555":2598,"40556":-1,"40557":0,"40558":15,"40559":0,"40560":842,"40561":0,"40562":0,"40563":0,"40564":0,"40565":-1,"40566":-1,"40567":0,"40568":-1,"40569":-1,"40570":2584,"40571":0,"40572":2470,"40573":2666,"40574":2658,"40575":2463,"40576":2329,"40577":0,"40578":2048,"40579":264,"40580":-1,"40581":0,"40582":0,"40583":-1,"40584":2143,"40585":-1,"40586":-1,"40587":2096,"40588":-1,"40589":-1,"40590":0,"40591":-1,"40592":0,"40593":0,"40594":0,"40595":-1,"40596":0,"40597":0,"40598":-1,"40599":0,"40600":2179,"40601":544,"40602":2053,"40603":-1,"40604":0,"40605":-1,"40606":0,"40607":2680,"40608":0,"40609":0,"40610":0,"40611":2016,"40612":20,"40613":327,"40614":0,"40615":0,"40616":0,"40617":0,"40618":-1,"40619":-1,"40620":-1,"40621":-1,"40622":-1,"40623":-1,"40624":2454,"40625":-1,"40626":0,"40627":0,"40628":2432,"40629":-1,"40630":0,"40631":2087,"40632":0,"40633":-1,"40634":2486,"40635":2609,"40636":0,"40637":-1,"40638":0,"40639":2062,"40640":-1,"40641":-1,"40642":-1,"40643":2486,"40644":0,"40645":0,"40646":-1,"40647":-1,"40648":-1,"40649":-1,"40650":-1,"40651":-1,"40652":0,"40653":0,"40654":-1,"40655":0,"40656":0,"40657":2549,"40658":2482,"40659":0,"40660":2451,"40661":2663,"40662":-1,"40663":-1,"40664":-1,"40665":-1,"40666":2612,"40667":0,"40668":2523,"40669":2123,"40670":567,"40671":2403,"40672":-1,"40673":0,"40674":0,"40675":2170,"40676":-1,"40677":0,"40678":0,"40679":-1,"40680":-1,"40681":0,"40682":0,"40683":13,"40684":-1,"40685":0,"40686":-1,"40687":2611,"40688":0,"40689":0,"40690":0,"40691":2641,"40692":2382,"40693":-1,"40694":2140,"40695":179,"40696":-1,"40697":0,"40698":0,"40699":-1,"40700":0,"40701":-1,"40702":-1,"40703":-1,"40704":-1,"40705":772,"40706":-1,"40707":0,"40708":0,"40709":2291,"40710":0,"40711":-1,"40712":0,"40713":-1,"40714":2023,"40715":2644,"40716":-1,"40717":0,"40718":2647,"40719":0,"40720":0,"40721":0,"40722":-1,"40723":-1,"40724":0,"40725":0,"40726":-1,"40727":0,"40728":-1,"40729":2161,"40730":412,"40731":0,"40732":0,"40733":2303,"40734":-1,"40735":0,"40736":0,"40737":0,"40738":0,"40739":2574,"40740":2446,"40741":0,"40742":0,"40743":0,"40744":0,"40745":0,"40746":0,"40747":0,"40748":793,"40749":2511,"40750":-1,"40751":-1,"40752":-1,"40753":-1,"40754":0,"40755":20,"40756":906,"40757":2601,"40758":220,"40759":0,"40760":-1,"40761":0,"40762":2621,"40763":0,"40764":0,"40765":2285,"40766":-1,"40767":2203,"40768":-1,"40769":0,"40770":-1,"40771":-1,"40772":2663,"40773":0,"40774":-1,"40775":-1,"40776":2673,"40777":280,"40778":0,"40779":-1,"40780":2110,"40781":0,"40782":0,"40783":0,"40784":0,"40785":-1,"40786":0,"40787":2364,"40788":0,"40789":0,"40790":-1,"40791":2227,"40792":0,"40793":0,"40794":0,"40795":0,"40796":-1,"40797":0,"40798":0,"40799":617,"40800":-1,"40801":0,"40802":0,"40803":-1,"40804":0,"40805":137,"40806":2431,"40807":-1,"40808":0,"40809":-1,"40810":0,"40811":0,"40812":2028,"40813":2330,"40814":2287,"40815":0,"40816":0,"40817":0,"40818":209,"40819":0,"40820":2226,"40821":-1,"40822":0,"40823":-1,"40824":2426,"40825":0,"40826":0,"40827":0,"40828":0,"40829":0,"40830":0,"40831":2220,"40832":0,"40833":2618,"40834":2187,"40835":-1,"40836":-1,"40837":0,"40838":-1,"40839":0,"40840":0,"40841":-1,"40842":-1,"40843":-1,"40844":-1,"40845":-1,"40846":2540,"40847":0,"40848":667,"40849":-1,"40850":2446,"40851":-1,"40852":2536,"40853":0,"40854":2024,"40855":-1,"40856":402,"40857":0,"40858":-1,"40859":2416,"40860":0,"40861":0,"40862":2210,"40863":0,"40864":2127,"40865":0,"40866":0,"40867":2121,"40868":0,"40869":0,"40870":2095,"40871":0,"40872":2365,"40873":0,"40874":0,"40875":-1,"40876":2413,"40877":2576,"40878":-1,"40879":0,"40880":2530,"40881":-1,"40882":0,"40883":-1,"40884":-1,"40885":0,"40886":120,"40887":2375,"40888":0,"40889":-1,"40890":-1,"40891":0,"40892":0,"40893":0,"40894":0,"40895":-1,"40896":0,"40897":0,"40898":-1,"40899":2402,"40900":-1,"40901":-1,"40902":-1,"40903":2396,"40904":0,"40905":2404,"40906":-1,"40907":-1,"40908":2072,"40909":0,"40910":2065,"40911":0,"40912":0,"40913":0,"40914":2056,"40915":2673,"40916":0,"40917":2607,"40918":2385,"40919":2623,"40920":0,"40921":0,"40922":2397,"40923":0,"40924":0,"40925":-1,"40926":0,"40927":-1,"40928":0,"40929":2443,"40930":-1,"40931":-1,"40932":0,"40933":261,"40934":0,"40935":0,"40936":-1,"40937":0,"40938":-1,"40939":-1,"40940":0,"40941":308,"40942":-1,"40943":-1,"40944":0,"40945":0,"40946":-1,"40947":-1,"40948":-1,"40949":0,"40950":-1,"40951":2464,"40952":2328,"40953":2223,"40954":2301,"40955":-1,"40956":0,"40957":2614,"40958":-1,"40959":-1,"40960":2453,"40961":-1,"40962":0,"40963":2339,"40964":2227,"40965":-1,"40966":2570,"40967":0,"40968":2062,"40969":0,"40970":0,"40971":0,"40972":-1,"40973":2004,"40974":0,"40975":-1,"40976":0,"40977":0,"40978":0,"40979":0,"40980":0,"40981":-1,"40982":0,"40983":0,"40984":0,"40985":0,"40986":0,"40987":-1,"40988":-1,"40989":-1,"40990":0,"40991":-1,"40992":2567,"40993":0,"40994":-1,"40995":-1,"40996":-1,"40997":2358,"40998":395,"40999":2555,"41000":1992,"41001":-1,"41002":554,"41003":0,"41004":2397,"41005":-1,"41006":0,"41007":-1,"41008":-1,"41009":0,"41010":0,"41011":0,"41012":0,"41013":-1,"41014":-1,"41015":-1,"41016":-1,"41017":0,"41018":-1,"41019":-1,"41020":0,"41021":0,"41022":-1,"41023":0,"41024":-1,"41025":2196,"41026":0,"41027":0,"41028":0,"41029":37,"41030":2076,"41031":0,"41032":0,"41033":2316,"41034":0,"41035":0,"41036":0,"41037":-1,"41038":0,"41039":-1,"41040":-1,"41041":0,"41042":908,"41043":0,"41044":-1,"41045":2350,"41046":662,"41047":0,"41048":0,"41049":2238,"41050":2533,"41051":2011,"41052":-1,"41053":0,"41054":-1,"41055":0,"41056":0,"41057":-1,"41058":310,"41059":0,"41060":-1,"41061":2602,"41062":-1,"41063":-1,"41064":2057,"41065":2167,"41066":0,"41067":0,"41068":-1,"41069":0,"41070":0,"41071":-1,"41072":-1,"41073":-1,"41074":0,"41075":0,"41076":-1,"41077":0,"41078":0,"41079":-1,"41080":0,"41081":2555,"41082":0,"41083":148,"41084":-1,"41085":-1,"41086":0,"41087":-1,"41088":0,"41089":0,"41090":-1,"41091":2424,"41092":-1,"41093":0,"41094":2328,"41095":0,"41096":2427,"41097":2206,"41098":0,"41099":0,"41100":0,"41101":0,"41102":-1,"41103":2590,"41104":-1,"41105":2227,"41106":-1,"41107":-1,"41108":0,"41109":0,"41110":0,"41111":0,"41112":0,"41113":-1,"41114":-1,"41115":0,"41116":-1,"41117":0,"41118":2417,"41119":2460,"41120":0,"41121":2063,"41122":-1,"41123":0,"41124":-1,"41125":-1,"41126":2345,"41127":0,"41128":-1,"41129":-1,"41130":-1,"41131":-1,"41132":859,"41133":2279,"41134":-1,"41135":0,"41136":0,"41137":2520,"41138":-1,"41139":-1,"41140":0,"41141":397,"41142":0,"41143":-1,"41144":2407,"41145":-1,"41146":2201,"41147":0,"41148":2286,"41149":102,"41150":777,"41151":0,"41152":0,"41153":-1,"41154":-1,"41155":2504,"41156":-1,"41157":-1,"41158":2618,"41159":-1,"41160":0,"41161":0,"41162":0,"41163":-1,"41164":0,"41165":2570,"41166":-1,"41167":0,"41168":-1,"41169":23,"41170":-1,"41171":-1,"41172":837,"41173":0,"41174":2356,"41175":0,"41176":-1,"41177":-1,"41178":0,"41179":0,"41180":2514,"41181":0,"41182":-1,"41183":0,"41184":-1,"41185":0,"41186":0,"41187":0,"41188":-1,"41189":0,"41190":-1,"41191":-1,"41192":-1,"41193":0,"41194":0,"41195":0,"41196":187,"41197":0,"41198":0,"41199":2027,"41200":0,"41201":-1,"41202":0,"41203":2262,"41204":0,"41205":-1,"41206":0,"41207":0,"41208":0,"41209":-1,"41210":0,"41211":2014,"41212":2195,"41213":0,"41214":0,"41215":-1,"41216":422,"41217":-1,"41218":-1,"41219":-1,"41220":2133,"41221":0,"41222":-1,"41223":-1,"41224":2670,"41225":0,"41226":0,"41227":2241,"41228":2425,"41229":-1,"41230":31,"41231":-1,"41232":-1,"41233":-1,"41234":0,"41235":0,"41236":0,"41237":3,"41238":2400,"41239":168,"41240":0,"41241":0,"41242":0,"41243":-1,"41244":2146,"41245":-1,"41246":0,"41247":26,"41248":-1,"41249":-1,"41250":-1,"41251":2030,"41252":-1,"41253":-1,"41254":0,"41255":0,"41256":1991,"41257":-1,"41258":-1,"41259":0,"41260":88,"41261":2392,"41262":0,"41263":2237,"41264":-1,"41265":-1,"41266":0,"41267":-1,"41268":2293,"41269":2101,"41270":0,"41271":0,"41272":0,"41273":2436,"41274":0,"41275":0,"41276":284,"41277":0,"41278":-1,"41279":2474,"41280":2042,"41281":-1,"41282":-1,"41283":-1,"41284":-1,"41285":572,"41286":2344,"41287":2518,"41288":-1,"41289":-1,"41290":0,"41291":-1,"41292":-1,"41293":0,"41294":705,"41295":2611,"41296":-1,"41297":0,"41298":-1,"41299":287,"41300":663,"41301":0,"41302":2328,"41303":2435,"41304":-1,"41305":-1,"41306":2478,"41307":-1,"41308":-1,"41309":-1,"41310":-1,"41311":0,"41312":0,"41313":-1,"41314":0,"41315":0,"41316":0,"41317":-1,"41318":0,"41319":-1,"41320":0,"41321":0,"41322":0,"41323":0,"41324":2270,"41325":475,"41326":0,"41327":-1,"41328":0,"41329":0,"41330":0,"41331":0,"41332":0,"41333":572,"41334":-1,"41335":2563,"41336":0,"41337":0,"41338":0,"41339":-1,"41340":0,"41341":0,"41342":-1,"41343":0,"41344":-1,"41345":-1,"41346":2084,"41347":-1,"41348":0,"41349":0,"41350":0,"41351":-1,"41352":0,"41353":2126,"41354":0,"41355":0,"41356":0,"41357":0,"41358":0,"41359":0,"41360":0,"41361":0,"41362":2557,"41363":2397,"41364":0,"41365":2213,"41366":2132,"41367":-1,"41368":0,"41369":0,"41370":0,"41371":407,"41372":0,"41373":2300,"41374":0,"41375":-1,"41376":312,"41377":0,"41378":-1,"41379":0,"41380":-1,"41381":496,"41382":0,"41383":0,"41384":-1,"41385":0,"41386":-1,"41387":2672,"41388":0,"41389":-1,"41390":0,"41391":2549,"41392":-1,"41393":2007,"41394":0,"41395":-1,"41396":0,"41397":-1,"41398":0,"41399":2258,"41400":-1,"41401":-1,"41402":2191,"41403":2049,"41404":-1,"41405":0,"41406":96,"41407":-1,"41408":2062,"41409":-1,"41410":2027,"41411":-1,"41412":2420,"41413":-1,"41414":313,"41415":-1,"41416":2044,"41417":-1,"41418":-1,"41419":0,"41420":2564,"41421":-1,"41422":-1,"41423":0,"41424":0,"41425":0,"41426":0,"41427":2120,"41428":2022,"41429":-1,"41430":2531,"41431":0,"41432":2051,"41433":-1,"41434":0,"41435":-1,"41436":237,"41437":0,"41438":0,"41439":0,"41440":-1,"41441":0,"41442":-1,"41443":0,"41444":-1,"41445":0,"41446":2104,"41447":-1,"41448":2318,"41449":-1,"41450":2109,"41451":0,"41452":0,"41453":3,"41454":2673,"41455":0,"41456":0,"41457":-1,"41458":0,"41459":0,"41460":-1,"41461":2534,"41462":0,"41463":0,"41464":-1,"41465":-1,"41466":0,"41467":0,"41468":0,"41469":-1,"41470":-1,"41471":0,"41472":2375,"41473":-1,"41474":2212,"41475":0,"41476":109,"41477":0,"41478":2419,"41479":0,"41480":0,"41481":0,"41482":0,"41483":0,"41484":-1,"41485":0,"41486":2226,"41487":-1,"41488":-1,"41489":-1,"41490":2361,"41491":2080,"41492":0,"41493":0,"41494":0,"41495":0,"41496":0,"41497":2370,"41498":0,"41499":2353,"41500":0,"41501":-1,"41502":0,"41503":-1,"41504":-1,"41505":2197,"41506":-1,"41507":0,"41508":2029,"41509":0,"41510":0,"41511":0,"41512":0,"41513":-1,"41514":-1,"41515":0,"41516":0,"41517":0,"41518":136,"41519":-1,"41520":0,"41521":0,"41522":0,"41523":0,"41524":2617,"41525":-1,"41526":-1,"41527":-1,"41528":0,"41529":-1,"41530":0,"41531":2483,"41532":0,"41533":-1,"41534":0,"41535":-1,"41536":-1,"41537":0,"41538":559,"41539":2093,"41540":0,"41541":-1,"41542":-1,"41543":2571,"41544":2202,"41545":353,"41546":-1,"41547":-1,"41548":0,"41549":8,"41550":-1,"41551":-1,"41552":0,"41553":-1,"41554":0,"41555":0,"41556":-1,"41557":-1,"41558":2412,"41559":0,"41560":-1,"41561":0,"41562":-1,"41563":0,"41564":0,"41565":-1,"41566":0,"41567":0,"41568":75,"41569":2419,"41570":-1,"41571":2243,"41572":0,"41573":0,"41574":2424,"41575":0,"41576":-1,"41577":-1,"41578":-1,"41579":-1,"41580":0,"41581":-1,"41582":0,"41583":-1,"41584":0,"41585":-1,"41586":2615,"41587":2498,"41588":0,"41589":0,"41590":-1,"41591":-1,"41592":-1,"41593":2016,"41594":0,"41595":2364,"41596":0,"41597":0,"41598":0,"41599":-1,"41600":0,"41601":0,"41602":0,"41603":0,"41604":-1,"41605":0,"41606":2242,"41607":2172,"41608":-1,"41609":-1,"41610":-1,"41611":0,"41612":0,"41613":333,"41614":2158,"41615":0,"41616":-1,"41617":0,"41618":102,"41619":0,"41620":2271,"41621":0,"41622":0,"41623":0,"41624":0,"41625":0,"41626":908,"41627":-1,"41628":2046,"41629":-1,"41630":0,"41631":-1,"41632":0,"41633":0,"41634":0,"41635":-1,"41636":14,"41637":0,"41638":2499,"41639":0,"41640":2645,"41641":-1,"41642":0,"41643":-1,"41644":-1,"41645":0,"41646":150,"41647":287,"41648":0,"41649":2122,"41650":0,"41651":-1,"41652":0,"41653":404,"41654":1999,"41655":-1,"41656":-1,"41657":-1,"41658":2589,"41659":0,"41660":0,"41661":0,"41662":2199,"41663":0,"41664":-1,"41665":-1,"41666":2434,"41667":2301,"41668":2463,"41669":-1,"41670":0,"41671":0,"41672":-1,"41673":-1,"41674":2265,"41675":-1,"41676":936,"41677":2507,"41678":0,"41679":0,"41680":-1,"41681":0,"41682":0,"41683":-1,"41684":-1,"41685":0,"41686":-1,"41687":-1,"41688":0,"41689":4,"41690":0,"41691":2325,"41692":-1,"41693":2362,"41694":0,"41695":-1,"41696":0,"41697":2048,"41698":-1,"41699":0,"41700":0,"41701":0,"41702":0,"41703":0,"41704":-1,"41705":13,"41706":0,"41707":0,"41708":2182,"41709":-1,"41710":0,"41711":0,"41712":-1,"41713":-1,"41714":0,"41715":145,"41716":-1,"41717":2118,"41718":0,"41719":-1,"41720":0,"41721":2056,"41722":2072,"41723":0,"41724":0,"41725":0,"41726":0,"41727":0,"41728":0,"41729":-1,"41730":0,"41731":2336,"41732":-1,"41733":0,"41734":217,"41735":0,"41736":0,"41737":2311,"41738":2458,"41739":-1,"41740":-1,"41741":2185,"41742":0,"41743":0,"41744":-1,"41745":0,"41746":-1,"41747":0,"41748":2377,"41749":-1,"41750":-1,"41751":2099,"41752":0,"41753":-1,"41754":0,"41755":-1,"41756":0,"41757":2418,"41758":-1,"41759":2493,"41760":2318,"41761":0,"41762":0,"41763":0,"41764":-1,"41765":-1,"41766":0,"41767":2527,"41768":0,"41769":0,"41770":2558,"41771":-1,"41772":2273,"41773":2622,"41774":0,"41775":0,"41776":0,"41777":0,"41778":-1,"41779":0,"41780":-1,"41781":0,"41782":0,"41783":0,"41784":0,"41785":0,"41786":-1,"41787":0,"41788":0,"41789":2503,"41790":2297,"41791":0,"41792":0,"41793":0,"41794":0,"41795":0,"41796":0,"41797":0,"41798":0,"41799":10,"41800":0,"41801":0,"41802":0,"41803":0,"41804":0,"41805":-1,"41806":418,"41807":2366,"41808":-1,"41809":0,"41810":-1,"41811":0,"41812":0,"41813":2483,"41814":0,"41815":-1,"41816":0,"41817":2618,"41818":0,"41819":0,"41820":2323,"41821":-1,"41822":2388,"41823":2171,"41824":0,"41825":-1,"41826":0,"41827":0,"41828":0,"41829":-1,"41830":0,"41831":-1,"41832":0,"41833":0,"41834":2092,"41835":-1,"41836":2109,"41837":0,"41838":38,"41839":0,"41840":0,"41841":0,"41842":39,"41843":2672,"41844":-1,"41845":0,"41846":0,"41847":0,"41848":-1,"41849":0,"41850":-1,"41851":-1,"41852":-1,"41853":-1,"41854":2213,"41855":-1,"41856":-1,"41857":-1,"41858":2571,"41859":0,"41860":0,"41861":0,"41862":0,"41863":0,"41864":0,"41865":0,"41866":-1,"41867":0,"41868":154,"41869":-1,"41870":2678,"41871":0,"41872":0,"41873":2072,"41874":-1,"41875":0,"41876":-1,"41877":2448,"41878":2445,"41879":0,"41880":-1,"41881":2360,"41882":0,"41883":109,"41884":-1,"41885":2410,"41886":0,"41887":0,"41888":-1,"41889":0,"41890":2453,"41891":0,"41892":2543,"41893":0,"41894":0,"41895":2539,"41896":0,"41897":0,"41898":2670,"41899":2514,"41900":0,"41901":0,"41902":0,"41903":-1,"41904":0,"41905":-1,"41906":2376,"41907":2389,"41908":0,"41909":0,"41910":0,"41911":-1,"41912":2140,"41913":2467,"41914":0,"41915":0,"41916":-1,"41917":2254,"41918":0,"41919":0,"41920":-1,"41921":-1,"41922":-1,"41923":2407,"41924":-1,"41925":-1,"41926":2481,"41927":-1,"41928":-1,"41929":0,"41930":0,"41931":-1,"41932":2128,"41933":-1,"41934":-1,"41935":-1,"41936":0,"41937":0,"41938":2416,"41939":0,"41940":0,"41941":0,"41942":0,"41943":0,"41944":0,"41945":-1,"41946":0,"41947":0,"41948":-1,"41949":0,"41950":0,"41951":-1,"41952":0,"41953":2519,"41954":0,"41955":436,"41956":2439,"41957":0,"41958":-1,"41959":-1,"41960":0,"41961":0,"41962":2244,"41963":0,"41964":5,"41965":0,"41966":-1,"41967":-1,"41968":2211,"41969":0,"41970":0,"41971":19,"41972":0,"41973":0,"41974":0,"41975":0,"41976":0,"41977":2570,"41978":0,"41979":0,"41980":2394,"41981":0,"41982":-1,"41983":-1,"41984":0,"41985":-1,"41986":0,"41987":0,"41988":0,"41989":0,"41990":-1,"41991":41,"41992":2293,"41993":0,"41994":2305,"41995":0,"41996":-1,"41997":-1,"41998":0,"41999":-1,"42000":0,"42001":0,"42002":2030,"42003":2240,"42004":0,"42005":0,"42006":0,"42007":-1,"42008":168,"42009":-1,"42010":-1,"42011":-1,"42012":0,"42013":0,"42014":0,"42015":2284,"42016":0,"42017":2341,"42018":2055,"42019":-1,"42020":0,"42021":0,"42022":-1,"42023":0,"42024":-1,"42025":-1,"42026":0,"42027":-1,"42028":2015,"42029":2082,"42030":-1,"42031":0,"42032":0,"42033":0,"42034":0,"42035":0,"42036":2651,"42037":2123,"42038":0,"42039":-1,"42040":0,"42041":0,"42042":-1,"42043":-1,"42044":0,"42045":0,"42046":2211,"42047":-1,"42048":-1,"42049":0,"42050":0,"42051":0,"42052":397,"42053":-1,"42054":13,"42055":907,"42056":0,"42057":-1,"42058":-1,"42059":0,"42060":0,"42061":0,"42062":0,"42063":0,"42064":0,"42065":15,"42066":-1,"42067":0,"42068":2644,"42069":0,"42070":-1,"42071":0,"42072":0,"42073":0,"42074":-1,"42075":0,"42076":0,"42077":0,"42078":-1,"42079":-1,"42080":0,"42081":0,"42082":2086,"42083":-1,"42084":2456,"42085":0,"42086":0,"42087":-1,"42088":2304,"42089":2080,"42090":-1,"42091":0,"42092":0,"42093":0,"42094":303,"42095":0,"42096":-1,"42097":-1,"42098":2527,"42099":-1,"42100":0,"42101":-1,"42102":0,"42103":0,"42104":0,"42105":0,"42106":0,"42107":0,"42108":-1,"42109":-1,"42110":-1,"42111":0,"42112":0,"42113":-1,"42114":0,"42115":2661,"42116":0,"42117":2039,"42118":0,"42119":-1,"42120":0,"42121":0,"42122":0,"42123":0,"42124":-1,"42125":-1,"42126":0,"42127":2543,"42128":-1,"42129":-1,"42130":-1,"42131":2225,"42132":2319,"42133":0,"42134":0,"42135":2587,"42136":0,"42137":0,"42138":2536,"42139":-1,"42140":-1,"42141":-1,"42142":0,"42143":-1,"42144":0,"42145":2462,"42146":-1,"42147":-1,"42148":2333,"42149":-1,"42150":-1,"42151":0,"42152":-1,"42153":0,"42154":0,"42155":-1,"42156":0,"42157":-1,"42158":2677,"42159":-1,"42160":2097,"42161":2164,"42162":2146,"42163":2361,"42164":0,"42165":0,"42166":0,"42167":-1,"42168":-1,"42169":0,"42170":2006,"42171":2116,"42172":35,"42173":2417,"42174":0,"42175":0,"42176":-1,"42177":0,"42178":0,"42179":0,"42180":0,"42181":-1,"42182":2015,"42183":0,"42184":0,"42185":0,"42186":0,"42187":0,"42188":0,"42189":-1,"42190":0,"42191":0,"42192":0,"42193":19,"42194":0,"42195":0,"42196":0,"42197":-1,"42198":0,"42199":2018,"42200":2095,"42201":2445,"42202":0,"42203":0,"42204":0,"42205":-1,"42206":0,"42207":2319,"42208":-1,"42209":0,"42210":-1,"42211":0,"42212":-1,"42213":2314,"42214":0,"42215":0,"42216":178,"42217":0,"42218":-1,"42219":2016,"42220":-1,"42221":2304,"42222":0,"42223":2557,"42224":0,"42225":262,"42226":88,"42227":2151,"42228":460,"42229":-1,"42230":205,"42231":0,"42232":-1,"42233":-1,"42234":524,"42235":-1,"42236":0,"42237":-1,"42238":0,"42239":98,"42240":0,"42241":0,"42242":0,"42243":0,"42244":0,"42245":-1,"42246":-1,"42247":2188,"42248":-1,"42249":-1,"42250":2630,"42251":0,"42252":2392,"42253":2192,"42254":2042,"42255":500,"42256":-1,"42257":2211,"42258":-1,"42259":-1,"42260":-1,"42261":0,"42262":2162,"42263":98,"42264":0,"42265":-1,"42266":0,"42267":0,"42268":-1,"42269":0,"42270":1993,"42271":-1,"42272":0,"42273":327,"42274":2428,"42275":2194,"42276":2542,"42277":0,"42278":0,"42279":0,"42280":2594,"42281":0,"42282":0,"42283":0,"42284":0,"42285":0,"42286":0,"42287":0,"42288":2562,"42289":130,"42290":0,"42291":0,"42292":2228,"42293":0,"42294":0,"42295":2508,"42296":-1,"42297":2641,"42298":2119,"42299":0,"42300":-1,"42301":2067,"42302":0,"42303":246,"42304":0,"42305":0,"42306":-1,"42307":-1,"42308":0,"42309":-1,"42310":0,"42311":-1,"42312":0,"42313":-1,"42314":2348,"42315":0,"42316":0,"42317":-1,"42318":0,"42319":0,"42320":-1,"42321":88,"42322":-1,"42323":-1,"42324":-1,"42325":2504,"42326":2190,"42327":-1,"42328":0,"42329":2605,"42330":2565,"42331":-1,"42332":0,"42333":2394,"42334":0,"42335":0,"42336":0,"42337":0,"42338":2208,"42339":2642,"42340":-1,"42341":0,"42342":-1,"42343":-1,"42344":0,"42345":362,"42346":-1,"42347":2326,"42348":0,"42349":0,"42350":0,"42351":0,"42352":2116,"42353":2644,"42354":-1,"42355":0,"42356":0,"42357":-1,"42358":-1,"42359":0,"42360":2153,"42361":0,"42362":833,"42363":0,"42364":0,"42365":2137,"42366":2108,"42367":0,"42368":0,"42369":2604,"42370":0,"42371":-1,"42372":2418,"42373":-1,"42374":0,"42375":0,"42376":2441,"42377":-1,"42378":-1,"42379":2655,"42380":2203,"42381":0,"42382":0,"42383":2271,"42384":2439,"42385":0,"42386":0,"42387":0,"42388":-1,"42389":0,"42390":-1,"42391":-1,"42392":598,"42393":0,"42394":0,"42395":0,"42396":2197,"42397":0,"42398":0,"42399":2437,"42400":0,"42401":0,"42402":2581,"42403":2491,"42404":0,"42405":-1,"42406":2340,"42407":0,"42408":-1,"42409":691,"42410":2675,"42411":-1,"42412":0,"42413":0,"42414":0,"42415":-1,"42416":2325,"42417":0,"42418":0,"42419":-1,"42420":0,"42421":-1,"42422":620,"42423":0,"42424":8,"42425":-1,"42426":2113,"42427":2197,"42428":-1,"42429":0,"42430":0,"42431":0,"42432":2143,"42433":-1,"42434":-1,"42435":0,"42436":43,"42437":0,"42438":-1,"42439":0,"42440":-1,"42441":-1,"42442":-1,"42443":3,"42444":-1,"42445":86,"42446":2021,"42447":0,"42448":-1,"42449":0,"42450":0,"42451":2251,"42452":0,"42453":0,"42454":0,"42455":2014,"42456":2181,"42457":0,"42458":-1,"42459":-1,"42460":0,"42461":0,"42462":0,"42463":0,"42464":58,"42465":-1,"42466":2085,"42467":738,"42468":-1,"42469":2116,"42470":-1,"42471":0,"42472":-1,"42473":-1,"42474":2010,"42475":0,"42476":0,"42477":46,"42478":0,"42479":-1,"42480":0,"42481":2652,"42482":2451,"42483":0,"42484":2277,"42485":0,"42486":0,"42487":-1,"42488":0,"42489":-1,"42490":0,"42491":-1,"42492":0,"42493":0,"42494":-1,"42495":20,"42496":-1,"42497":-1,"42498":2346,"42499":-1,"42500":-1,"42501":2156,"42502":-1,"42503":0,"42504":-1,"42505":0,"42506":2446,"42507":-1,"42508":-1,"42509":0,"42510":2554,"42511":-1,"42512":-1,"42513":-1,"42514":0,"42515":237,"42516":0,"42517":0,"42518":-1,"42519":2666,"42520":0,"42521":2188,"42522":2272,"42523":-1,"42524":-1,"42525":0,"42526":-1,"42527":0,"42528":-1,"42529":-1,"42530":-1,"42531":0,"42532":-1,"42533":0,"42534":-1,"42535":2553,"42536":2612,"42537":0,"42538":2412,"42539":0,"42540":-1,"42541":906,"42542":-1,"42543":0,"42544":0,"42545":2008,"42546":2416,"42547":0,"42548":2175,"42549":0,"42550":0,"42551":312,"42552":300,"42553":0,"42554":0,"42555":-1,"42556":-1,"42557":141,"42558":0,"42559":0,"42560":0,"42561":-1,"42562":0,"42563":0,"42564":0,"42565":0,"42566":2253,"42567":0,"42568":0,"42569":0,"42570":2056,"42571":0,"42572":0,"42573":-1,"42574":0,"42575":0,"42576":-1,"42577":2050,"42578":578,"42579":0,"42580":0,"42581":2172,"42582":-1,"42583":345,"42584":0,"42585":-1,"42586":0,"42587":49,"42588":0,"42589":2647,"42590":2086,"42591":27,"42592":0,"42593":-1,"42594":2341,"42595":2298,"42596":-1,"42597":0,"42598":-1,"42599":2281,"42600":-1,"42601":-1,"42602":0,"42603":2545,"42604":2449,"42605":-1,"42606":0,"42607":0,"42608":0,"42609":-1,"42610":0,"42611":-1,"42612":0,"42613":148,"42614":2454,"42615":0,"42616":-1,"42617":29,"42618":136,"42619":2322,"42620":2250,"42621":0,"42622":735,"42623":0,"42624":0,"42625":0,"42626":2295,"42627":-1,"42628":0,"42629":0,"42630":301,"42631":0,"42632":0,"42633":-1,"42634":2003,"42635":2315,"42636":-1,"42637":2408,"42638":-1,"42639":2373,"42640":2287,"42641":0,"42642":2492,"42643":-1,"42644":-1,"42645":0,"42646":-1,"42647":-1,"42648":2117,"42649":2299,"42650":-1,"42651":0,"42652":0,"42653":-1,"42654":0,"42655":2256,"42656":2085,"42657":2652,"42658":2306,"42659":0,"42660":0,"42661":0,"42662":-1,"42663":0,"42664":0,"42665":-1,"42666":-1,"42667":0,"42668":0,"42669":-1,"42670":2309,"42671":2207,"42672":-1,"42673":-1,"42674":-1,"42675":2614,"42676":0,"42677":2297,"42678":0,"42679":0,"42680":-1,"42681":0,"42682":-1,"42683":0,"42684":0,"42685":884,"42686":-1,"42687":0,"42688":0,"42689":0,"42690":-1,"42691":2374,"42692":0,"42693":-1,"42694":0,"42695":2413,"42696":0,"42697":0,"42698":0,"42699":2551,"42700":0,"42701":0,"42702":0,"42703":0,"42704":-1,"42705":-1,"42706":0,"42707":2654,"42708":0,"42709":0,"42710":-1,"42711":0,"42712":2660,"42713":0,"42714":2095,"42715":2535,"42716":0,"42717":-1,"42718":0,"42719":0,"42720":2242,"42721":2376,"42722":-1,"42723":0,"42724":-1,"42725":0,"42726":2290,"42727":-1,"42728":2114,"42729":-1,"42730":2666,"42731":2663,"42732":-1,"42733":-1,"42734":0,"42735":2440,"42736":0,"42737":0,"42738":0,"42739":0,"42740":894,"42741":-1,"42742":0,"42743":0,"42744":2489,"42745":0,"42746":-1,"42747":-1,"42748":0,"42749":0,"42750":2275,"42751":-1,"42752":0,"42753":0,"42754":2508,"42755":0,"42756":2024,"42757":-1,"42758":-1,"42759":-1,"42760":0,"42761":2472,"42762":0,"42763":-1,"42764":-1,"42765":0,"42766":-1,"42767":2274,"42768":0,"42769":0,"42770":-1,"42771":-1,"42772":0,"42773":0,"42774":2109,"42775":0,"42776":0,"42777":0,"42778":0,"42779":0,"42780":0,"42781":-1,"42782":0,"42783":-1,"42784":0,"42785":-1,"42786":-1,"42787":0,"42788":0,"42789":0,"42790":-1,"42791":-1,"42792":0,"42793":0,"42794":-1,"42795":0,"42796":0,"42797":0,"42798":-1,"42799":0,"42800":0,"42801":0,"42802":-1,"42803":0,"42804":-1,"42805":0,"42806":-1,"42807":-1,"42808":0,"42809":602,"42810":0,"42811":2152,"42812":-1,"42813":75,"42814":0,"42815":-1,"42816":0,"42817":-1,"42818":2095,"42819":-1,"42820":2203,"42821":-1,"42822":-1,"42823":0,"42824":-1,"42825":2173,"42826":2298,"42827":-1,"42828":-1,"42829":0,"42830":2342,"42831":-1,"42832":0,"42833":0,"42834":-1,"42835":0,"42836":0,"42837":2032,"42838":2434,"42839":0,"42840":2345,"42841":-1,"42842":0,"42843":0,"42844":-1,"42845":-1,"42846":0,"42847":2223,"42848":0,"42849":0,"42850":0,"42851":2046,"42852":0,"42853":-1,"42854":614,"42855":0,"42856":-1,"42857":130,"42858":0,"42859":0,"42860":0,"42861":-1,"42862":2627,"42863":-1,"42864":0,"42865":0,"42866":-1,"42867":-1,"42868":-1,"42869":-1,"42870":0,"42871":2333,"42872":2675,"42873":-1,"42874":-1,"42875":0,"42876":-1,"42877":-1,"42878":0,"42879":-1,"42880":45,"42881":0,"42882":0,"42883":0,"42884":0,"42885":2521,"42886":2061,"42887":-1,"42888":2497,"42889":0,"42890":2596,"42891":2011,"42892":-1,"42893":-1,"42894":0,"42895":0,"42896":2256,"42897":2555,"42898":-1,"42899":520,"42900":2614,"42901":31,"42902":2103,"42903":0,"42904":0,"42905":0,"42906":2186,"42907":2436,"42908":0,"42909":0,"42910":894,"42911":0,"42912":2654,"42913":-1,"42914":-1,"42915":0,"42916":0,"42917":0,"42918":0,"42919":0,"42920":-1,"42921":-1,"42922":0,"42923":0,"42924":2031,"42925":2068,"42926":0,"42927":-1,"42928":-1,"42929":317,"42930":0,"42931":0,"42932":0,"42933":0,"42934":0,"42935":-1,"42936":-1,"42937":-1,"42938":-1,"42939":0,"42940":0,"42941":0,"42942":198,"42943":0,"42944":0,"42945":2358,"42946":0,"42947":0,"42948":-1,"42949":2382,"42950":0,"42951":0,"42952":-1,"42953":0,"42954":-1,"42955":0,"42956":0,"42957":-1,"42958":2577,"42959":2265,"42960":2399,"42961":0,"42962":2280,"42963":-1,"42964":-1,"42965":-1,"42966":0,"42967":0,"42968":-1,"42969":-1,"42970":2620,"42971":-1,"42972":0,"42973":0,"42974":2664,"42975":-1,"42976":-1,"42977":-1,"42978":0,"42979":0,"42980":-1,"42981":0,"42982":0,"42983":0,"42984":-1,"42985":0,"42986":-1,"42987":350,"42988":0,"42989":0,"42990":2159,"42991":-1,"42992":0,"42993":-1,"42994":0,"42995":-1,"42996":-1,"42997":0,"42998":422,"42999":-1,"43000":10,"43001":0,"43002":-1,"43003":0,"43004":0,"43005":-1,"43006":0,"43007":0,"43008":0,"43009":0,"43010":2597,"43011":-1,"43012":2264,"43013":-1,"43014":0,"43015":-1,"43016":2559,"43017":0,"43018":-1,"43019":622,"43020":2171,"43021":0,"43022":0,"43023":-1,"43024":5,"43025":109,"43026":500,"43027":0,"43028":0,"43029":2174,"43030":-1,"43031":0,"43032":-1,"43033":455,"43034":0,"43035":-1,"43036":-1,"43037":-1,"43038":-1,"43039":2243,"43040":0,"43041":0,"43042":0,"43043":-1,"43044":0,"43045":2361,"43046":353,"43047":0,"43048":-1,"43049":0,"43050":-1,"43051":0,"43052":-1,"43053":0,"43054":0,"43055":-1,"43056":-1,"43057":0,"43058":-1,"43059":0,"43060":-1,"43061":0,"43062":0,"43063":-1,"43064":-1,"43065":0,"43066":0,"43067":0,"43068":29,"43069":662,"43070":2110,"43071":-1,"43072":-1,"43073":-1,"43074":0,"43075":-1,"43076":2662,"43077":0,"43078":2556,"43079":-1,"43080":-1,"43081":0,"43082":-1,"43083":0,"43084":0,"43085":0,"43086":2644,"43087":2383,"43088":0,"43089":0,"43090":-1,"43091":2380,"43092":2419,"43093":-1,"43094":0,"43095":0,"43096":0,"43097":0,"43098":2004,"43099":-1,"43100":0,"43101":0,"43102":0,"43103":0,"43104":0,"43105":0,"43106":2591,"43107":0,"43108":0,"43109":0,"43110":0,"43111":2641,"43112":-1,"43113":-1,"43114":29,"43115":0,"43116":-1,"43117":101,"43118":-1,"43119":154,"43120":0,"43121":-1,"43122":2662,"43123":0,"43124":0,"43125":154,"43126":-1,"43127":2260,"43128":-1,"43129":0,"43130":-1,"43131":-1,"43132":2069,"43133":0,"43134":2367,"43135":136,"43136":0,"43137":2350,"43138":2554,"43139":0,"43140":2062,"43141":0,"43142":0,"43143":0,"43144":0,"43145":44,"43146":-1,"43147":2154,"43148":-1,"43149":0,"43150":-1,"43151":0,"43152":-1,"43153":-1,"43154":2410,"43155":0,"43156":-1,"43157":0,"43158":0,"43159":0,"43160":-1,"43161":0,"43162":-1,"43163":2135,"43164":0,"43165":0,"43166":2373,"43167":0,"43168":300,"43169":-1,"43170":-1,"43171":0,"43172":2355,"43173":0,"43174":2103,"43175":-1,"43176":-1,"43177":40,"43178":-1,"43179":2370,"43180":2347,"43181":-1,"43182":-1,"43183":-1,"43184":170,"43185":-1,"43186":-1,"43187":2254,"43188":2323,"43189":2138,"43190":-1,"43191":2007,"43192":0,"43193":798,"43194":603,"43195":0,"43196":2387,"43197":-1,"43198":0,"43199":0,"43200":4,"43201":2249,"43202":64,"43203":-1,"43204":0,"43205":-1,"43206":2314,"43207":-1,"43208":2219,"43209":-1,"43210":0,"43211":0,"43212":0,"43213":-1,"43214":2130,"43215":0,"43216":2108,"43217":43,"43218":0,"43219":0,"43220":777,"43221":0,"43222":0,"43223":0,"43224":0,"43225":0,"43226":0,"43227":-1,"43228":0,"43229":0,"43230":0,"43231":0,"43232":2449,"43233":2105,"43234":-1,"43235":0,"43236":-1,"43237":0,"43238":0,"43239":0,"43240":-1,"43241":0,"43242":2380,"43243":0,"43244":-1,"43245":-1,"43246":-1,"43247":0,"43248":-1,"43249":0,"43250":0,"43251":0,"43252":604,"43253":-1,"43254":-1,"43255":0,"43256":0,"43257":2178,"43258":0,"43259":0,"43260":0,"43261":0,"43262":0,"43263":0,"43264":-1,"43265":-1,"43266":-1,"43267":299,"43268":0,"43269":11,"43270":-1,"43271":237,"43272":-1,"43273":2249,"43274":2286,"43275":0,"43276":-1,"43277":-1,"43278":-1,"43279":0,"43280":2446,"43281":0,"43282":0,"43283":-1,"43284":0,"43285":2325,"43286":0,"43287":-1,"43288":49,"43289":-1,"43290":-1,"43291":-1,"43292":-1,"43293":-1,"43294":2391,"43295":2176,"43296":0,"43297":2239,"43298":-1,"43299":-1,"43300":2309,"43301":-1,"43302":-1,"43303":67,"43304":0,"43305":2360,"43306":-1,"43307":0,"43308":0,"43309":-1,"43310":0,"43311":0,"43312":0,"43313":0,"43314":0,"43315":0,"43316":0,"43317":0,"43318":-1,"43319":0,"43320":-1,"43321":0,"43322":0,"43323":0,"43324":-1,"43325":2114,"43326":0,"43327":-1,"43328":-1,"43329":0,"43330":-1,"43331":0,"43332":0,"43333":-1,"43334":-1,"43335":-1,"43336":0,"43337":2677,"43338":0,"43339":-1,"43340":0,"43341":0,"43342":-1,"43343":0,"43344":2455,"43345":-1,"43346":23,"43347":0,"43348":-1,"43349":0,"43350":0,"43351":524,"43352":0,"43353":-1,"43354":-1,"43355":-1,"43356":2098,"43357":2172,"43358":0,"43359":2029,"43360":-1,"43361":-1,"43362":0,"43363":0,"43364":-1,"43365":-1,"43366":662,"43367":-1,"43368":0,"43369":1993,"43370":2563,"43371":2494,"43372":-1,"43373":0,"43374":0,"43375":2598,"43376":0,"43377":0,"43378":-1,"43379":0,"43380":2243,"43381":0,"43382":2107,"43383":0,"43384":-1,"43385":0,"43386":0,"43387":0,"43388":-1,"43389":0,"43390":0,"43391":0,"43392":-1,"43393":604,"43394":-1,"43395":-1,"43396":-1,"43397":0,"43398":0,"43399":0,"43400":-1,"43401":245,"43402":-1,"43403":0,"43404":2623,"43405":0,"43406":-1,"43407":0,"43408":2313,"43409":0,"43410":-1,"43411":-1,"43412":0,"43413":0,"43414":0,"43415":0,"43416":0,"43417":0,"43418":0,"43419":0,"43420":-1,"43421":2412,"43422":-1,"43423":-1,"43424":-1,"43425":-1,"43426":-1,"43427":0,"43428":0,"43429":-1,"43430":0,"43431":-1,"43432":0,"43433":2347,"43434":-1,"43435":0,"43436":-1,"43437":2390,"43438":18,"43439":0,"43440":-1,"43441":2047,"43442":0,"43443":448,"43444":0,"43445":0,"43446":0,"43447":0,"43448":-1,"43449":0,"43450":0,"43451":-1,"43452":0,"43453":0,"43454":412,"43455":-1,"43456":0,"43457":-1,"43458":2551,"43459":0,"43460":2087,"43461":0,"43462":0,"43463":-1,"43464":-1,"43465":2216,"43466":2344,"43467":0,"43468":0,"43469":-1,"43470":-1,"43471":-1,"43472":2368,"43473":0,"43474":0,"43475":-1,"43476":0,"43477":2153,"43478":-1,"43479":0,"43480":2559,"43481":-1,"43482":-1,"43483":-1,"43484":0,"43485":-1,"43486":2663,"43487":2552,"43488":2023,"43489":0,"43490":0,"43491":0,"43492":-1,"43493":0,"43494":0,"43495":0,"43496":0,"43497":2612,"43498":-1,"43499":-1,"43500":0,"43501":0,"43502":-1,"43503":-1,"43504":0,"43505":-1,"43506":0,"43507":-1,"43508":-1,"43509":-1,"43510":-1,"43511":2525,"43512":0,"43513":-1,"43514":0,"43515":-1,"43516":0,"43517":2456,"43518":-1,"43519":0,"43520":0,"43521":-1,"43522":-1,"43523":-1,"43524":0,"43525":2362,"43526":0,"43527":86,"43528":2446,"43529":0,"43530":2347,"43531":-1,"43532":-1,"43533":2279,"43534":-1,"43535":67,"43536":-1,"43537":2481,"43538":2267,"43539":2011,"43540":-1,"43541":-1,"43542":1991,"43543":2268,"43544":-1,"43545":-1,"43546":2000,"43547":0,"43548":0,"43549":2286,"43550":-1,"43551":-1,"43552":0,"43553":0,"43554":-1,"43555":2157,"43556":-1,"43557":-1,"43558":0,"43559":-1,"43560":43,"43561":-1,"43562":0,"43563":-1,"43564":2591,"43565":0,"43566":0,"43567":0,"43568":0,"43569":-1,"43570":0,"43571":-1,"43572":2077,"43573":2280,"43574":262,"43575":0,"43576":0,"43577":2603,"43578":0,"43579":2010,"43580":0,"43581":2197,"43582":0,"43583":2665,"43584":2448,"43585":0,"43586":0,"43587":2236,"43588":0,"43589":0,"43590":-1,"43591":0,"43592":-1,"43593":0,"43594":49,"43595":-1,"43596":0,"43597":2069,"43598":0,"43599":2585,"43600":-1,"43601":0,"43602":514,"43603":-1,"43604":-1,"43605":0,"43606":0,"43607":2494,"43608":2302,"43609":-1,"43610":-1,"43611":0,"43612":-1,"43613":0,"43614":-1,"43615":-1,"43616":2504,"43617":2384,"43618":0,"43619":622,"43620":-1,"43621":2076,"43622":-1,"43623":0,"43624":0,"43625":0,"43626":0,"43627":0,"43628":0,"43629":2644,"43630":-1,"43631":-1,"43632":0,"43633":-1,"43634":-1,"43635":0,"43636":2181,"43637":0,"43638":2365,"43639":0,"43640":-1,"43641":0,"43642":0,"43643":-1,"43644":0,"43645":0,"43646":2043,"43647":0,"43648":0,"43649":-1,"43650":0,"43651":-1,"43652":-1,"43653":0,"43654":0,"43655":-1,"43656":-1,"43657":-1,"43658":0,"43659":-1,"43660":0,"43661":0,"43662":0,"43663":2588,"43664":-1,"43665":2339,"43666":0,"43667":-1,"43668":-1,"43669":-1,"43670":2045,"43671":-1,"43672":0,"43673":2285,"43674":-1,"43675":-1,"43676":0,"43677":0,"43678":-1,"43679":0,"43680":2329,"43681":-1,"43682":0,"43683":2399,"43684":-1,"43685":-1,"43686":603,"43687":-1,"43688":0,"43689":-1,"43690":-1,"43691":2177,"43692":-1,"43693":-1,"43694":2038,"43695":0,"43696":-1,"43697":2142,"43698":0,"43699":0,"43700":0,"43701":-1,"43702":2016,"43703":0,"43704":-1,"43705":2414,"43706":0,"43707":0,"43708":0,"43709":-1,"43710":0,"43711":2046,"43712":2533,"43713":-1,"43714":0,"43715":-1,"43716":-1,"43717":199,"43718":-1,"43719":0,"43720":-1,"43721":-1,"43722":2230,"43723":2153,"43724":29,"43725":0,"43726":0,"43727":0,"43728":2230,"43729":-1,"43730":2142,"43731":0,"43732":2187,"43733":0,"43734":0,"43735":-1,"43736":-1,"43737":-1,"43738":0,"43739":0,"43740":-1,"43741":2196,"43742":-1,"43743":0,"43744":0,"43745":-1,"43746":-1,"43747":-1,"43748":0,"43749":-1,"43750":0,"43751":0,"43752":0,"43753":-1,"43754":2579,"43755":-1,"43756":0,"43757":-1,"43758":0,"43759":0,"43760":0,"43761":2672,"43762":-1,"43763":0,"43764":102,"43765":-1,"43766":-1,"43767":0,"43768":0,"43769":-1,"43770":0,"43771":-1,"43772":2557,"43773":2611,"43774":-1,"43775":-1,"43776":-1,"43777":0,"43778":-1,"43779":2058,"43780":-1,"43781":0,"43782":-1,"43783":-1,"43784":0,"43785":0,"43786":0,"43787":-1,"43788":0,"43789":2668,"43790":-1,"43791":209,"43792":-1,"43793":-1,"43794":0,"43795":2574,"43796":0,"43797":-1,"43798":-1,"43799":0,"43800":0,"43801":0,"43802":0,"43803":2534,"43804":0,"43805":-1,"43806":-1,"43807":-1,"43808":-1,"43809":0,"43810":2381,"43811":-1,"43812":-1,"43813":0,"43814":-1,"43815":-1,"43816":2214,"43817":-1,"43818":0,"43819":0,"43820":2601,"43821":2387,"43822":159,"43823":-1,"43824":-1,"43825":-1,"43826":0,"43827":2300,"43828":-1,"43829":0,"43830":0,"43831":0,"43832":2180,"43833":2344,"43834":0,"43835":-1,"43836":0,"43837":0,"43838":-1,"43839":0,"43840":0,"43841":262,"43842":-1,"43843":67,"43844":2530,"43845":-1,"43846":0,"43847":0,"43848":0,"43849":0,"43850":0,"43851":2146,"43852":2472,"43853":-1,"43854":-1,"43855":2209,"43856":0,"43857":2623,"43858":0,"43859":0,"43860":-1,"43861":-1,"43862":-1,"43863":2416,"43864":0,"43865":-1,"43866":2059,"43867":-1,"43868":0,"43869":0,"43870":0,"43871":-1,"43872":0,"43873":0,"43874":-1,"43875":0,"43876":0,"43877":0,"43878":2616,"43879":0,"43880":0,"43881":-1,"43882":0,"43883":2496,"43884":2542,"43885":0,"43886":404,"43887":0,"43888":0,"43889":0,"43890":0,"43891":0,"43892":-1,"43893":-1,"43894":-1,"43895":-1,"43896":168,"43897":-1,"43898":310,"43899":0,"43900":-1,"43901":333,"43902":2277,"43903":-1,"43904":0,"43905":0,"43906":-1,"43907":842,"43908":0,"43909":0,"43910":-1,"43911":2380,"43912":0,"43913":0,"43914":-1,"43915":-1,"43916":0,"43917":0,"43918":-1,"43919":-1,"43920":0,"43921":2035,"43922":0,"43923":2465,"43924":2030,"43925":2657,"43926":0,"43927":-1,"43928":-1,"43929":0,"43930":0,"43931":0,"43932":-1,"43933":0,"43934":-1,"43935":-1,"43936":2111,"43937":-1,"43938":-1,"43939":88,"43940":0,"43941":0,"43942":0,"43943":2445,"43944":2350,"43945":0,"43946":-1,"43947":-1,"43948":-1,"43949":0,"43950":2308,"43951":-1,"43952":0,"43953":0,"43954":0,"43955":0,"43956":-1,"43957":0,"43958":-1,"43959":0,"43960":0,"43961":0,"43962":0,"43963":-1,"43964":-1,"43965":-1,"43966":0,"43967":2049,"43968":-1,"43969":0,"43970":622,"43971":2179,"43972":2150,"43973":0,"43974":0,"43975":2339,"43976":2447,"43977":2397,"43978":0,"43979":0,"43980":-1,"43981":0,"43982":-1,"43983":2553,"43984":-1,"43985":-1,"43986":0,"43987":667,"43988":-1,"43989":0,"43990":0,"43991":0,"43992":2074,"43993":663,"43994":0,"43995":2597,"43996":2205,"43997":2358,"43998":45,"43999":0,"44000":-1,"44001":2246,"44002":0,"44003":0,"44004":0,"44005":-1,"44006":0,"44007":-1,"44008":0,"44009":-1,"44010":-1,"44011":0,"44012":-1,"44013":0,"44014":2100,"44015":2133,"44016":0,"44017":0,"44018":-1,"44019":0,"44020":0,"44021":0,"44022":2441,"44023":2590,"44024":0,"44025":-1,"44026":-1,"44027":98,"44028":2046,"44029":0,"44030":0,"44031":0,"44032":-1,"44033":0,"44034":-1,"44035":0,"44036":-1,"44037":-1,"44038":0,"44039":0,"44040":281,"44041":0,"44042":-1,"44043":-1,"44044":-1,"44045":0,"44046":2626,"44047":-1,"44048":-1,"44049":-1,"44050":2324,"44051":0,"44052":-1,"44053":-1,"44054":25,"44055":-1,"44056":2648,"44057":0,"44058":2496,"44059":0,"44060":-1,"44061":-1,"44062":2200,"44063":-1,"44064":2331,"44065":0,"44066":2202,"44067":0,"44068":0,"44069":0,"44070":2412,"44071":-1,"44072":0,"44073":0,"44074":0,"44075":-1,"44076":0,"44077":-1,"44078":0,"44079":-1,"44080":0,"44081":13,"44082":2315,"44083":2167,"44084":0,"44085":2539,"44086":0,"44087":0,"44088":2596,"44089":0,"44090":-1,"44091":2101,"44092":0,"44093":-1,"44094":0,"44095":2389,"44096":0,"44097":-1,"44098":2380,"44099":-1,"44100":2495,"44101":-1,"44102":-1,"44103":-1,"44104":-1,"44105":0,"44106":-1,"44107":2419,"44108":-1,"44109":2131,"44110":0,"44111":350,"44112":0,"44113":362,"44114":-1,"44115":0,"44116":2117,"44117":2567,"44118":-1,"44119":-1,"44120":0,"44121":0,"44122":-1,"44123":2369,"44124":0,"44125":0,"44126":0,"44127":2562,"44128":2006,"44129":0,"44130":0,"44131":1997,"44132":-1,"44133":0,"44134":2191,"44135":2279,"44136":0,"44137":2666,"44138":0,"44139":-1,"44140":-1,"44141":0,"44142":2389,"44143":0,"44144":0,"44145":-1,"44146":0,"44147":0,"44148":-1,"44149":-1,"44150":0,"44151":0,"44152":0,"44153":0,"44154":2452,"44155":-1,"44156":0,"44157":0,"44158":-1,"44159":2263,"44160":2299,"44161":2462,"44162":-1,"44163":0,"44164":0,"44165":-1,"44166":2055,"44167":-1,"44168":2264,"44169":18,"44170":2506,"44171":0,"44172":0,"44173":-1,"44174":0,"44175":0,"44176":-1,"44177":-1,"44178":0,"44179":0,"44180":0,"44181":-1,"44182":2007,"44183":0,"44184":2472,"44185":0,"44186":2361,"44187":603,"44188":2109,"44189":0,"44190":0,"44191":0,"44192":2231,"44193":154,"44194":2594,"44195":2021,"44196":-1,"44197":-1,"44198":0,"44199":-1,"44200":2579,"44201":-1,"44202":2244,"44203":28,"44204":-1,"44205":0,"44206":0,"44207":0,"44208":2604,"44209":-1,"44210":2569,"44211":0,"44212":137,"44213":0,"44214":395,"44215":0,"44216":2031,"44217":2585,"44218":2456,"44219":0,"44220":0,"44221":0,"44222":0,"44223":0,"44224":0,"44225":2438,"44226":0,"44227":2409,"44228":0,"44229":-1,"44230":-1,"44231":-1,"44232":-1,"44233":0,"44234":864,"44235":2307,"44236":-1,"44237":2608,"44238":-1,"44239":0,"44240":-1,"44241":-1,"44242":0,"44243":0,"44244":0,"44245":0,"44246":-1,"44247":2655,"44248":0,"44249":584,"44250":-1,"44251":0,"44252":-1,"44253":2193,"44254":0,"44255":-1,"44256":0,"44257":0,"44258":2494,"44259":-1,"44260":209,"44261":0,"44262":2609,"44263":-1,"44264":422,"44265":0,"44266":0,"44267":2437,"44268":0,"44269":2155,"44270":325,"44271":-1,"44272":0,"44273":2584,"44274":0,"44275":2432,"44276":2398,"44277":-1,"44278":2535,"44279":0,"44280":2639,"44281":0,"44282":2252,"44283":2166,"44284":2178,"44285":-1,"44286":0,"44287":2598,"44288":0,"44289":0,"44290":0,"44291":0,"44292":-1,"44293":-1,"44294":2544,"44295":0,"44296":0,"44297":-1,"44298":-1,"44299":-1,"44300":0,"44301":0,"44302":0,"44303":0,"44304":2458,"44305":0,"44306":0,"44307":2654,"44308":-1,"44309":0,"44310":-1,"44311":-1,"44312":2002,"44313":0,"44314":2174,"44315":0,"44316":2250,"44317":2486,"44318":0,"44319":0,"44320":-1,"44321":0,"44322":0,"44323":262,"44324":0,"44325":0,"44326":-1,"44327":2564,"44328":0,"44329":0,"44330":2146,"44331":2379,"44332":-1,"44333":136,"44334":0,"44335":2185,"44336":2673,"44337":-1,"44338":0,"44339":2563,"44340":0,"44341":2364,"44342":0,"44343":2369,"44344":-1,"44345":-1,"44346":1998,"44347":-1,"44348":2180,"44349":2660,"44350":0,"44351":0,"44352":16,"44353":2596,"44354":2665,"44355":0,"44356":0,"44357":0,"44358":7,"44359":-1,"44360":-1,"44361":0,"44362":0,"44363":40,"44364":65,"44365":-1,"44366":0,"44367":0,"44368":0,"44369":2075,"44370":1994,"44371":0,"44372":0,"44373":2540,"44374":-1,"44375":-1,"44376":-1,"44377":0,"44378":0,"44379":0,"44380":0,"44381":-1,"44382":2056,"44383":-1,"44384":-1,"44385":0,"44386":0,"44387":0,"44388":0,"44389":0,"44390":0,"44391":0,"44392":2578,"44393":2096,"44394":-1,"44395":0,"44396":2128,"44397":0,"44398":0,"44399":0,"44400":0,"44401":0,"44402":0,"44403":0,"44404":-1,"44405":0,"44406":2127,"44407":0,"44408":0,"44409":0,"44410":145,"44411":-1,"44412":524,"44413":-1,"44414":2037,"44415":0,"44416":2235,"44417":0,"44418":0,"44419":0,"44420":0,"44421":2094,"44422":2162,"44423":0,"44424":0,"44425":0,"44426":-1,"44427":2644,"44428":2195,"44429":-1,"44430":2620,"44431":2571,"44432":-1,"44433":20,"44434":0,"44435":-1,"44436":0,"44437":0,"44438":-1,"44439":0,"44440":88,"44441":-1,"44442":0,"44443":0,"44444":0,"44445":0,"44446":-1,"44447":0,"44448":-1,"44449":-1,"44450":0,"44451":2393,"44452":2296,"44453":705,"44454":2344,"44455":0,"44456":0,"44457":-1,"44458":45,"44459":0,"44460":2403,"44461":-1,"44462":2633,"44463":0,"44464":42,"44465":-1,"44466":2207,"44467":2021,"44468":2088,"44469":0,"44470":-1,"44471":-1,"44472":-1,"44473":894,"44474":2421,"44475":10,"44476":-1,"44477":2580,"44478":-1,"44479":924,"44480":2137,"44481":0,"44482":0,"44483":-1,"44484":-1,"44485":-1,"44486":0,"44487":2093,"44488":67,"44489":0,"44490":2088,"44491":0,"44492":-1,"44493":0,"44494":-1,"44495":-1,"44496":0,"44497":0,"44498":2178,"44499":2202,"44500":-1,"44501":2421,"44502":0,"44503":0,"44504":0,"44505":395,"44506":-1,"44507":2581,"44508":-1,"44509":0,"44510":2237,"44511":-1,"44512":0,"44513":0,"44514":0,"44515":237,"44516":-1,"44517":-1,"44518":-1,"44519":-1,"44520":-1,"44521":-1,"44522":2137,"44523":0,"44524":2154,"44525":-1,"44526":0,"44527":0,"44528":0,"44529":312,"44530":-1,"44531":-1,"44532":2376,"44533":-1,"44534":-1,"44535":0,"44536":0,"44537":-1,"44538":0,"44539":2506,"44540":0,"44541":2214,"44542":2091,"44543":-1,"44544":-1,"44545":-1,"44546":0,"44547":-1,"44548":-1,"44549":0,"44550":0,"44551":0,"44552":-1,"44553":2237,"44554":0,"44555":-1,"44556":0,"44557":0,"44558":386,"44559":-1,"44560":-1,"44561":2448,"44562":0,"44563":40,"44564":-1,"44565":2071,"44566":2301,"44567":0,"44568":-1,"44569":2560,"44570":-1,"44571":-1,"44572":-1,"44573":0,"44574":0,"44575":0,"44576":0,"44577":-1,"44578":-1,"44579":2659,"44580":0,"44581":0,"44582":0,"44583":0,"44584":2668,"44585":0,"44586":-1,"44587":0,"44588":2537,"44589":2281,"44590":0,"44591":0,"44592":0,"44593":-1,"44594":-1,"44595":-1,"44596":-1,"44597":0,"44598":0,"44599":2582,"44600":-1,"44601":-1,"44602":0,"44603":2338,"44604":0,"44605":0,"44606":2025,"44607":0,"44608":0,"44609":327,"44610":2531,"44611":397,"44612":0,"44613":2190,"44614":0,"44615":-1,"44616":-1,"44617":1995,"44618":-1,"44619":0,"44620":0,"44621":0,"44622":0,"44623":0,"44624":38,"44625":0,"44626":0,"44627":2541,"44628":-1,"44629":2449,"44630":2639,"44631":2528,"44632":10,"44633":2602,"44634":-1,"44635":0,"44636":0,"44637":0,"44638":2461,"44639":-1,"44640":864,"44641":0,"44642":0,"44643":0,"44644":-1,"44645":-1,"44646":-1,"44647":-1,"44648":0,"44649":0,"44650":-1,"44651":2045,"44652":-1,"44653":0,"44654":-1,"44655":1997,"44656":-1,"44657":-1,"44658":0,"44659":-1,"44660":0,"44661":0,"44662":-1,"44663":0,"44664":-1,"44665":0,"44666":-1,"44667":0,"44668":-1,"44669":0,"44670":0,"44671":2295,"44672":-1,"44673":0,"44674":-1,"44675":2005,"44676":0,"44677":2345,"44678":0,"44679":0,"44680":-1,"44681":0,"44682":2171,"44683":0,"44684":-1,"44685":-1,"44686":-1,"44687":-1,"44688":-1,"44689":0,"44690":0,"44691":2448,"44692":0,"44693":0,"44694":0,"44695":2572,"44696":-1,"44697":2575,"44698":25,"44699":2542,"44700":0,"44701":0,"44702":0,"44703":813,"44704":-1,"44705":2487,"44706":0,"44707":0,"44708":2231,"44709":0,"44710":2282,"44711":-1,"44712":924,"44713":2387,"44714":0,"44715":0,"44716":0,"44717":-1,"44718":0,"44719":0,"44720":-1,"44721":0,"44722":0,"44723":0,"44724":0,"44725":2545,"44726":-1,"44727":-1,"44728":49,"44729":0,"44730":837,"44731":0,"44732":-1,"44733":-1,"44734":0,"44735":0,"44736":0,"44737":2186,"44738":0,"44739":-1,"44740":0,"44741":0,"44742":0,"44743":0,"44744":0,"44745":2220,"44746":-1,"44747":-1,"44748":-1,"44749":2414,"44750":0,"44751":0,"44752":0,"44753":772,"44754":2546,"44755":0,"44756":2478,"44757":-1,"44758":2498,"44759":2615,"44760":0,"44761":-1,"44762":0,"44763":0,"44764":0,"44765":0,"44766":2362,"44767":2015,"44768":-1,"44769":0,"44770":-1,"44771":-1,"44772":-1,"44773":2625,"44774":2028,"44775":-1,"44776":0,"44777":793,"44778":-1,"44779":-1,"44780":0,"44781":-1,"44782":2358,"44783":0,"44784":0,"44785":2129,"44786":-1,"44787":-1,"44788":0,"44789":0,"44790":0,"44791":0,"44792":-1,"44793":0,"44794":-1,"44795":0,"44796":0,"44797":2545,"44798":4,"44799":0,"44800":-1,"44801":-1,"44802":2116,"44803":0,"44804":2119,"44805":0,"44806":0,"44807":420,"44808":-1,"44809":0,"44810":-1,"44811":2481,"44812":2086,"44813":0,"44814":0,"44815":0,"44816":-1,"44817":-1,"44818":0,"44819":0,"44820":0,"44821":0,"44822":2643,"44823":0,"44824":2212,"44825":-1,"44826":17,"44827":0,"44828":-1,"44829":-1,"44830":-1,"44831":0,"44832":0,"44833":-1,"44834":-1,"44835":0,"44836":-1,"44837":0,"44838":-1,"44839":0,"44840":0,"44841":0,"44842":2444,"44843":0,"44844":0,"44845":2353,"44846":2597,"44847":-1,"44848":0,"44849":0,"44850":0,"44851":0,"44852":-1,"44853":2359,"44854":0,"44855":237,"44856":0,"44857":0,"44858":2196,"44859":0,"44860":310,"44861":0,"44862":0,"44863":2225,"44864":-1,"44865":-1,"44866":-1,"44867":-1,"44868":0,"44869":2547,"44870":-1,"44871":2330,"44872":2463,"44873":0,"44874":2047,"44875":0,"44876":-1,"44877":-1,"44878":0,"44879":0,"44880":-1,"44881":-1,"44882":0,"44883":2446,"44884":2407,"44885":0,"44886":2190,"44887":0,"44888":2377,"44889":2044,"44890":2037,"44891":-1,"44892":0,"44893":-1,"44894":2380,"44895":-1,"44896":0,"44897":-1,"44898":0,"44899":0,"44900":0,"44901":-1,"44902":0,"44903":-1,"44904":-1,"44905":0,"44906":-1,"44907":0,"44908":0,"44909":2097,"44910":0,"44911":645,"44912":0,"44913":-1,"44914":0,"44915":0,"44916":-1,"44917":0,"44918":-1,"44919":0,"44920":2366,"44921":0,"44922":0,"44923":2527,"44924":2128,"44925":0,"44926":-1,"44927":-1,"44928":7,"44929":-1,"44930":0,"44931":2193,"44932":0,"44933":-1,"44934":0,"44935":0,"44936":2230,"44937":0,"44938":-1,"44939":0,"44940":37,"44941":2660,"44942":0,"44943":2672,"44944":-1,"44945":418,"44946":0,"44947":0,"44948":2466,"44949":395,"44950":2366,"44951":-1,"44952":0,"44953":0,"44954":2495,"44955":0,"44956":0,"44957":0,"44958":0,"44959":-1,"44960":0,"44961":2384,"44962":0,"44963":2373,"44964":0,"44965":0,"44966":-1,"44967":2006,"44968":2574,"44969":0,"44970":-1,"44971":-1,"44972":-1,"44973":455,"44974":0,"44975":907,"44976":0,"44977":-1,"44978":-1,"44979":2623,"44980":720,"44981":0,"44982":0,"44983":0,"44984":0,"44985":0,"44986":2263,"44987":2346,"44988":2134,"44989":0,"44990":0,"44991":-1,"44992":924,"44993":0,"44994":0,"44995":0,"44996":-1,"44997":2333,"44998":-1,"44999":0,"45000":2495,"45001":2123,"45002":0,"45003":0,"45004":0,"45005":0,"45006":-1,"45007":0,"45008":0,"45009":0,"45010":2327,"45011":2196,"45012":-1,"45013":0,"45014":0,"45015":-1,"45016":2037,"45017":2584,"45018":0,"45019":-1,"45020":31,"45021":-1,"45022":0,"45023":-1,"45024":2430,"45025":2584,"45026":0,"45027":0,"45028":0,"45029":0,"45030":0,"45031":237,"45032":-1,"45033":0,"45034":0,"45035":-1,"45036":2032,"45037":0,"45038":0,"45039":2603,"45040":2584,"45041":0,"45042":142,"45043":0,"45044":0,"45045":0,"45046":-1,"45047":0,"45048":-1,"45049":0,"45050":0,"45051":0,"45052":2043,"45053":6,"45054":0,"45055":2385,"45056":2085,"45057":0,"45058":2630,"45059":-1,"45060":-1,"45061":0,"45062":-1,"45063":0,"45064":0,"45065":-1,"45066":0,"45067":-1,"45068":-1,"45069":0,"45070":-1,"45071":0,"45072":2164,"45073":-1,"45074":-1,"45075":-1,"45076":-1,"45077":864,"45078":-1,"45079":0,"45080":0,"45081":787,"45082":-1,"45083":2603,"45084":0,"45085":-1,"45086":-1,"45087":2243,"45088":0,"45089":-1,"45090":0,"45091":0,"45092":0,"45093":0,"45094":2214,"45095":2418,"45096":0,"45097":0,"45098":1996,"45099":-1,"45100":0,"45101":2506,"45102":2332,"45103":0,"45104":-1,"45105":300,"45106":-1,"45107":0,"45108":-1,"45109":-1,"45110":0,"45111":0,"45112":0,"45113":0,"45114":2601,"45115":-1,"45116":-1,"45117":0,"45118":2350,"45119":2329,"45120":2280,"45121":-1,"45122":0,"45123":-1,"45124":2034,"45125":2192,"45126":2608,"45127":2465,"45128":0,"45129":-1,"45130":2380,"45131":-1,"45132":-1,"45133":-1,"45134":-1,"45135":-1,"45136":0,"45137":-1,"45138":0,"45139":-1,"45140":0,"45141":-1,"45142":2312,"45143":0,"45144":-1,"45145":0,"45146":2474,"45147":-1,"45148":2508,"45149":-1,"45150":0,"45151":0,"45152":2621,"45153":0,"45154":0,"45155":-1,"45156":-1,"45157":2050,"45158":-1,"45159":0,"45160":67,"45161":2459,"45162":0,"45163":0,"45164":2529,"45165":-1,"45166":-1,"45167":2441,"45168":-1,"45169":0,"45170":0,"45171":-1,"45172":0,"45173":0,"45174":0,"45175":0,"45176":325,"45177":-1,"45178":0,"45179":0,"45180":2524,"45181":0,"45182":-1,"45183":-1,"45184":-1,"45185":2069,"45186":-1,"45187":0,"45188":0,"45189":0,"45190":0,"45191":0,"45192":0,"45193":2298,"45194":0,"45195":2179,"45196":2083,"45197":-1,"45198":317,"45199":2244,"45200":187,"45201":0,"45202":798,"45203":-1,"45204":0,"45205":-1,"45206":-1,"45207":-1,"45208":2255,"45209":-1,"45210":2462,"45211":-1,"45212":-1,"45213":455,"45214":303,"45215":0,"45216":2568,"45217":-1,"45218":0,"45219":-1,"45220":0,"45221":-1,"45222":-1,"45223":0,"45224":0,"45225":0,"45226":-1,"45227":0,"45228":0,"45229":0,"45230":0,"45231":0,"45232":0,"45233":2242,"45234":2661,"45235":2232,"45236":0,"45237":0,"45238":2248,"45239":261,"45240":0,"45241":2043,"45242":0,"45243":0,"45244":-1,"45245":0,"45246":0,"45247":924,"45248":118,"45249":0,"45250":0,"45251":0,"45252":0,"45253":0,"45254":0,"45255":-1,"45256":-1,"45257":-1,"45258":2171,"45259":303,"45260":-1,"45261":-1,"45262":-1,"45263":2074,"45264":0,"45265":2514,"45266":-1,"45267":2211,"45268":0,"45269":2586,"45270":0,"45271":-1,"45272":2067,"45273":-1,"45274":-1,"45275":-1,"45276":-1,"45277":-1,"45278":2465,"45279":0,"45280":2605,"45281":-1,"45282":0,"45283":0,"45284":0,"45285":0,"45286":2317,"45287":0,"45288":-1,"45289":0,"45290":0,"45291":-1,"45292":2664,"45293":-1,"45294":0,"45295":2294,"45296":0,"45297":0,"45298":-1,"45299":2112,"45300":126,"45301":0,"45302":-1,"45303":2354,"45304":0,"45305":2599,"45306":0,"45307":-1,"45308":0,"45309":0,"45310":0,"45311":0,"45312":2496,"45313":-1,"45314":0,"45315":0,"45316":0,"45317":-1,"45318":2555,"45319":0,"45320":2515,"45321":178,"45322":2279,"45323":-1,"45324":-1,"45325":0,"45326":-1,"45327":0,"45328":0,"45329":-1,"45330":-1,"45331":-1,"45332":0,"45333":0,"45334":2177,"45335":2301,"45336":0,"45337":2133,"45338":-1,"45339":-1,"45340":0,"45341":-1,"45342":0,"45343":0,"45344":0,"45345":0,"45346":0,"45347":300,"45348":0,"45349":0,"45350":0,"45351":0,"45352":2172,"45353":0,"45354":107,"45355":-1,"45356":2006,"45357":0,"45358":-1,"45359":2404,"45360":-1,"45361":-1,"45362":0,"45363":0,"45364":-1,"45365":-1,"45366":198,"45367":-1,"45368":0,"45369":0,"45370":2113,"45371":0,"45372":472,"45373":2444,"45374":0,"45375":-1,"45376":-1,"45377":-1,"45378":2322,"45379":2587,"45380":0,"45381":0,"45382":0,"45383":-1,"45384":0,"45385":0,"45386":2445,"45387":0,"45388":-1,"45389":2642,"45390":-1,"45391":15,"45392":2669,"45393":0,"45394":0,"45395":2270,"45396":2587,"45397":0,"45398":2345,"45399":-1,"45400":28,"45401":0,"45402":0,"45403":2536,"45404":0,"45405":0,"45406":0,"45407":-1,"45408":-1,"45409":-1,"45410":2504,"45411":0,"45412":-1,"45413":-1,"45414":0,"45415":2379,"45416":0,"45417":0,"45418":0,"45419":-1,"45420":-1,"45421":-1,"45422":2513,"45423":0,"45424":2103,"45425":0,"45426":2668,"45427":0,"45428":0,"45429":280,"45430":-1,"45431":2183,"45432":2067,"45433":0,"45434":-1,"45435":0,"45436":2134,"45437":-1,"45438":108,"45439":0,"45440":-1,"45441":0,"45442":0,"45443":0,"45444":0,"45445":-1,"45446":2541,"45447":-1,"45448":0,"45449":0,"45450":-1,"45451":0,"45452":0,"45453":-1,"45454":0,"45455":-1,"45456":0,"45457":0,"45458":2232,"45459":0,"45460":-1,"45461":0,"45462":-1,"45463":-1,"45464":2058,"45465":0,"45466":2581,"45467":2016,"45468":0,"45469":0,"45470":0,"45471":0,"45472":0,"45473":0,"45474":2018,"45475":2022,"45476":2536,"45477":2551,"45478":706,"45479":-1,"45480":0,"45481":0,"45482":2259,"45483":0,"45484":0,"45485":2025,"45486":0,"45487":104,"45488":0,"45489":-1,"45490":544,"45491":-1,"45492":-1,"45493":2635,"45494":350,"45495":0,"45496":0,"45497":0,"45498":2465,"45499":0,"45500":0,"45501":0,"45502":-1,"45503":0,"45504":-1,"45505":0,"45506":0,"45507":2506,"45508":-1,"45509":2265,"45510":0,"45511":0,"45512":-1,"45513":-1,"45514":0,"45515":884,"45516":0,"45517":345,"45518":0,"45519":0,"45520":0,"45521":0,"45522":-1,"45523":2001,"45524":2080,"45525":1991,"45526":2245,"45527":2606,"45528":2545,"45529":0,"45530":2198,"45531":0,"45532":-1,"45533":0,"45534":-1,"45535":2381,"45536":0,"45537":-1,"45538":0,"45539":-1,"45540":-1,"45541":0,"45542":0,"45543":-1,"45544":0,"45545":0,"45546":-1,"45547":584,"45548":0,"45549":0,"45550":2343,"45551":0,"45552":2251,"45553":0,"45554":0,"45555":-1,"45556":0,"45557":0,"45558":-1,"45559":0,"45560":2311,"45561":-1,"45562":0,"45563":0,"45564":2569,"45565":-1,"45566":-1,"45567":-1,"45568":-1,"45569":0,"45570":0,"45571":-1,"45572":2393,"45573":2226,"45574":1991,"45575":2156,"45576":0,"45577":136,"45578":-1,"45579":2080,"45580":0,"45581":0,"45582":2262,"45583":0,"45584":0,"45585":-1,"45586":-1,"45587":0,"45588":0,"45589":-1,"45590":-1,"45591":-1,"45592":0,"45593":-1,"45594":2422,"45595":2289,"45596":-1,"45597":0,"45598":-1,"45599":0,"45600":2151,"45601":603,"45602":0,"45603":-1,"45604":2217,"45605":0,"45606":-1,"45607":-1,"45608":0,"45609":0,"45610":2634,"45611":246,"45612":2523,"45613":0,"45614":0,"45615":420,"45616":0,"45617":0,"45618":-1,"45619":2085,"45620":0,"45621":0,"45622":0,"45623":0,"45624":-1,"45625":-1,"45626":-1,"45627":0,"45628":0,"45629":-1,"45630":-1,"45631":645,"45632":0,"45633":0,"45634":2297,"45635":0,"45636":0,"45637":0,"45638":-1,"45639":2665,"45640":0,"45641":0,"45642":0,"45643":0,"45644":2051,"45645":720,"45646":2306,"45647":0,"45648":2206,"45649":-1,"45650":-1,"45651":0,"45652":-1,"45653":0,"45654":2001,"45655":0,"45656":2119,"45657":0,"45658":0,"45659":2462,"45660":0,"45661":-1,"45662":-1,"45663":0,"45664":-1,"45665":2386,"45666":-1,"45667":-1,"45668":0,"45669":2332,"45670":2109,"45671":-1,"45672":-1,"45673":-1,"45674":0,"45675":-1,"45676":-1,"45677":936,"45678":-1,"45679":-1,"45680":0,"45681":-1,"45682":-1,"45683":0,"45684":2465,"45685":-1,"45686":-1,"45687":0,"45688":2311,"45689":-1,"45690":0,"45691":2070,"45692":-1,"45693":0,"45694":0,"45695":2665,"45696":2048,"45697":0,"45698":2392,"45699":0,"45700":2350,"45701":0,"45702":298,"45703":936,"45704":-1,"45705":-1,"45706":0,"45707":-1,"45708":0,"45709":0,"45710":0,"45711":706,"45712":2478,"45713":0,"45714":0,"45715":0,"45716":-1,"45717":-1,"45718":2360,"45719":0,"45720":2215,"45721":-1,"45722":0,"45723":-1,"45724":2133,"45725":-1,"45726":0,"45727":-1,"45728":-1,"45729":-1,"45730":-1,"45731":2600,"45732":0,"45733":0,"45734":0,"45735":-1,"45736":-1,"45737":-1,"45738":2008,"45739":-1,"45740":2101,"45741":-1,"45742":2362,"45743":0,"45744":2341,"45745":-1,"45746":2058,"45747":-1,"45748":-1,"45749":0,"45750":0,"45751":0,"45752":0,"45753":0,"45754":205,"45755":0,"45756":2443,"45757":0,"45758":2516,"45759":-1,"45760":2371,"45761":2004,"45762":0,"45763":0,"45764":0,"45765":2570,"45766":0,"45767":-1,"45768":0,"45769":2227,"45770":2635,"45771":-1,"45772":0,"45773":-1,"45774":0,"45775":0,"45776":345,"45777":-1,"45778":19,"45779":-1,"45780":0,"45781":2560,"45782":0,"45783":0,"45784":-1,"45785":2549,"45786":-1,"45787":-1,"45788":-1,"45789":-1,"45790":-1,"45791":-1,"45792":0,"45793":0,"45794":-1,"45795":-1,"45796":2433,"45797":209,"45798":-1,"45799":-1,"45800":329,"45801":-1,"45802":0,"45803":-1,"45804":2501,"45805":2318,"45806":0,"45807":-1,"45808":0,"45809":-1,"45810":0,"45811":0,"45812":-1,"45813":0,"45814":0,"45815":0,"45816":-1,"45817":-1,"45818":0,"45819":0,"45820":0,"45821":0,"45822":0,"45823":-1,"45824":0,"45825":584,"45826":0,"45827":0,"45828":2181,"45829":-1,"45830":0,"45831":2083,"45832":0,"45833":0,"45834":-1,"45835":706,"45836":-1,"45837":2222,"45838":0,"45839":-1,"45840":-1,"45841":2216,"45842":-1,"45843":0,"45844":0,"45845":-1,"45846":0,"45847":0,"45848":0,"45849":2148,"45850":0,"45851":0,"45852":-1,"45853":0,"45854":0,"45855":0,"45856":0,"45857":-1,"45858":0,"45859":-1,"45860":2446,"45861":0,"45862":0,"45863":0,"45864":-1,"45865":0,"45866":2516,"45867":-1,"45868":-1,"45869":-1,"45870":0,"45871":0,"45872":-1,"45873":0,"45874":-1,"45875":0,"45876":2608,"45877":0,"45878":80,"45879":-1,"45880":-1,"45881":2218,"45882":0,"45883":0,"45884":0,"45885":2540,"45886":0,"45887":-1,"45888":303,"45889":-1,"45890":0,"45891":-1,"45892":0,"45893":-1,"45894":2063,"45895":0,"45896":0,"45897":-1,"45898":0,"45899":0,"45900":0,"45901":2296,"45902":2621,"45903":0,"45904":0,"45905":0,"45906":0,"45907":-1,"45908":0,"45909":-1,"45910":0,"45911":-1,"45912":0,"45913":0,"45914":0,"45915":-1,"45916":-1,"45917":2456,"45918":0,"45919":2252,"45920":2650,"45921":-1,"45922":2153,"45923":0,"45924":0,"45925":-1,"45926":0,"45927":0,"45928":-1,"45929":0,"45930":0,"45931":-1,"45932":0,"45933":45,"45934":2284,"45935":350,"45936":0,"45937":2634,"45938":0,"45939":0,"45940":-1,"45941":2418,"45942":0,"45943":2249,"45944":0,"45945":0,"45946":-1,"45947":826,"45948":0,"45949":2530,"45950":0,"45951":0,"45952":2221,"45953":-1,"45954":2384,"45955":-1,"45956":-1,"45957":-1,"45958":0,"45959":0,"45960":0,"45961":0,"45962":2656,"45963":0,"45964":0,"45965":0,"45966":2665,"45967":-1,"45968":-1,"45969":2229,"45970":-1,"45971":-1,"45972":0,"45973":-1,"45974":0,"45975":-1,"45976":-1,"45977":0,"45978":0,"45979":-1,"45980":2057,"45981":0,"45982":0,"45983":-1,"45984":-1,"45985":-1,"45986":924,"45987":0,"45988":-1,"45989":2131,"45990":0,"45991":0,"45992":-1,"45993":0,"45994":-1,"45995":-1,"45996":0,"45997":0,"45998":2000,"45999":2607,"46000":-1,"46001":156,"46002":0,"46003":0,"46004":2347,"46005":-1,"46006":-1,"46007":2024,"46008":0,"46009":-1,"46010":0,"46011":0,"46012":0,"46013":2014,"46014":0,"46015":0,"46016":0,"46017":178,"46018":-1,"46019":0,"46020":2148,"46021":2056,"46022":0,"46023":-1,"46024":0,"46025":2329,"46026":0,"46027":2539,"46028":0,"46029":2285,"46030":-1,"46031":701,"46032":2484,"46033":-1,"46034":-1,"46035":2087,"46036":2514,"46037":0,"46038":-1,"46039":0,"46040":2575,"46041":0,"46042":0,"46043":0,"46044":0,"46045":2292,"46046":2473,"46047":0,"46048":0,"46049":2295,"46050":0,"46051":0,"46052":0,"46053":0,"46054":2281,"46055":-1,"46056":0,"46057":0,"46058":2202,"46059":-1,"46060":0,"46061":0,"46062":0,"46063":0,"46064":-1,"46065":2429,"46066":2253,"46067":0,"46068":-1,"46069":0,"46070":0,"46071":0,"46072":2126,"46073":-1,"46074":-1,"46075":-1,"46076":0,"46077":-1,"46078":-1,"46079":0,"46080":2060,"46081":-1,"46082":-1,"46083":2653,"46084":-1,"46085":-1,"46086":0,"46087":0,"46088":0,"46089":0,"46090":-1,"46091":-1,"46092":0,"46093":0,"46094":0,"46095":0,"46096":2003,"46097":-1,"46098":35,"46099":0,"46100":1992,"46101":341,"46102":0,"46103":198,"46104":-1,"46105":2200,"46106":-1,"46107":0,"46108":-1,"46109":0,"46110":2343,"46111":0,"46112":0,"46113":2444,"46114":2308,"46115":2162,"46116":2459,"46117":-1,"46118":-1,"46119":-1,"46120":-1,"46121":0,"46122":246,"46123":0,"46124":0,"46125":-1,"46126":-1,"46127":0,"46128":0,"46129":0,"46130":0,"46131":-1,"46132":0,"46133":-1,"46134":0,"46135":0,"46136":-1,"46137":0,"46138":0,"46139":2479,"46140":-1,"46141":0,"46142":0,"46143":0,"46144":0,"46145":0,"46146":-1,"46147":2104,"46148":-1,"46149":2435,"46150":-1,"46151":0,"46152":0,"46153":0,"46154":333,"46155":1998,"46156":0,"46157":0,"46158":0,"46159":2034,"46160":0,"46161":0,"46162":1997,"46163":0,"46164":0,"46165":2239,"46166":-1,"46167":-1,"46168":0,"46169":-1,"46170":0,"46171":0,"46172":793,"46173":0,"46174":-1,"46175":-1,"46176":75,"46177":317,"46178":-1,"46179":0,"46180":0,"46181":0,"46182":-1,"46183":0,"46184":-1,"46185":10,"46186":-1,"46187":0,"46188":0,"46189":2562,"46190":-1,"46191":-1,"46192":0,"46193":-1,"46194":0,"46195":849,"46196":0,"46197":-1,"46198":-1,"46199":2098,"46200":-1,"46201":0,"46202":0,"46203":2256,"46204":2231,"46205":0,"46206":0,"46207":0,"46208":0,"46209":572,"46210":2127,"46211":-1,"46212":2012,"46213":0,"46214":0,"46215":-1,"46216":2045,"46217":-1,"46218":-1,"46219":-1,"46220":0,"46221":0,"46222":0,"46223":0,"46224":-1,"46225":0,"46226":2547,"46227":-1,"46228":-1,"46229":2646,"46230":-1,"46231":0,"46232":0,"46233":0,"46234":0,"46235":-1,"46236":-1,"46237":2570,"46238":0,"46239":-1,"46240":2240,"46241":0,"46242":0,"46243":18,"46244":-1,"46245":0,"46246":0,"46247":-1,"46248":-1,"46249":-1,"46250":2285,"46251":0,"46252":0,"46253":0,"46254":0,"46255":0,"46256":-1,"46257":2442,"46258":0,"46259":0,"46260":2492,"46261":-1,"46262":2450,"46263":2522,"46264":-1,"46265":96,"46266":0,"46267":2034,"46268":0,"46269":0,"46270":38,"46271":-1,"46272":0,"46273":2139,"46274":2563,"46275":0,"46276":0,"46277":0,"46278":0,"46279":0,"46280":0,"46281":-1,"46282":0,"46283":0,"46284":-1,"46285":-1,"46286":6,"46287":2532,"46288":-1,"46289":2608,"46290":2535,"46291":2520,"46292":-1,"46293":2385,"46294":-1,"46295":0,"46296":2248,"46297":-1,"46298":2651,"46299":0,"46300":0,"46301":-1,"46302":0,"46303":559,"46304":2590,"46305":0,"46306":-1,"46307":544,"46308":0,"46309":-1,"46310":0,"46311":0,"46312":0,"46313":0,"46314":0,"46315":0,"46316":0,"46317":-1,"46318":0,"46319":-1,"46320":-1,"46321":-1,"46322":0,"46323":0,"46324":0,"46325":-1,"46326":-1,"46327":-1,"46328":0,"46329":2269,"46330":-1,"46331":0,"46332":0,"46333":0,"46334":0,"46335":0,"46336":0,"46337":0,"46338":0,"46339":-1,"46340":0,"46341":2433,"46342":0,"46343":-1,"46344":0,"46345":2083,"46346":0,"46347":0,"46348":2351,"46349":2402,"46350":-1,"46351":2114,"46352":10,"46353":0,"46354":0,"46355":2242,"46356":0,"46357":-1,"46358":0,"46359":-1,"46360":317,"46361":2281,"46362":88,"46363":0,"46364":0,"46365":-1,"46366":2236,"46367":0,"46368":2309,"46369":-1,"46370":0,"46371":-1,"46372":15,"46373":-1,"46374":617,"46375":-1,"46376":0,"46377":0,"46378":2044,"46379":2050,"46380":0,"46381":-1,"46382":-1,"46383":0,"46384":145,"46385":-1,"46386":2569,"46387":0,"46388":0,"46389":0,"46390":2348,"46391":-1,"46392":0,"46393":0,"46394":0,"46395":-1,"46396":0,"46397":0,"46398":-1,"46399":0,"46400":-1,"46401":0,"46402":-1,"46403":0,"46404":0,"46405":2090,"46406":-1,"46407":0,"46408":0,"46409":0,"46410":0,"46411":0,"46412":0,"46413":0,"46414":0,"46415":2536,"46416":0,"46417":0,"46418":0,"46419":-1,"46420":0,"46421":0,"46422":-1,"46423":2648,"46424":-1,"46425":-1,"46426":0,"46427":-1,"46428":0,"46429":2048,"46430":0,"46431":0,"46432":-1,"46433":0,"46434":2162,"46435":-1,"46436":1992,"46437":-1,"46438":0,"46439":-1,"46440":2597,"46441":0,"46442":2022,"46443":-1,"46444":327,"46445":-1,"46446":2680,"46447":0,"46448":0,"46449":2603,"46450":-1,"46451":-1,"46452":0,"46453":2513,"46454":0,"46455":0,"46456":-1,"46457":2157,"46458":-1,"46459":2373,"46460":350,"46461":2202,"46462":407,"46463":0,"46464":-1,"46465":-1,"46466":-1,"46467":2119,"46468":813,"46469":-1,"46470":26,"46471":-1,"46472":0,"46473":-1,"46474":0,"46475":2055,"46476":2650,"46477":2472,"46478":0,"46479":2002,"46480":2431,"46481":0,"46482":0,"46483":0,"46484":0,"46485":0,"46486":2653,"46487":-1,"46488":0,"46489":0,"46490":0,"46491":0,"46492":0,"46493":2457,"46494":0,"46495":2329,"46496":-1,"46497":-1,"46498":-1,"46499":-1,"46500":2280,"46501":0,"46502":0,"46503":-1,"46504":34,"46505":-1,"46506":-1,"46507":0,"46508":2213,"46509":2228,"46510":0,"46511":0,"46512":0,"46513":2290,"46514":2663,"46515":0,"46516":-1,"46517":-1,"46518":0,"46519":0,"46520":2160,"46521":2639,"46522":0,"46523":2430,"46524":-1,"46525":2542,"46526":0,"46527":0,"46528":312,"46529":-1,"46530":-1,"46531":2348,"46532":-1,"46533":0,"46534":2227,"46535":-1,"46536":0,"46537":0,"46538":0,"46539":0,"46540":0,"46541":2170,"46542":0,"46543":793,"46544":0,"46545":2136,"46546":-1,"46547":0,"46548":0,"46549":-1,"46550":859,"46551":0,"46552":2494,"46553":2018,"46554":3,"46555":-1,"46556":-1,"46557":9,"46558":-1,"46559":2492,"46560":0,"46561":-1,"46562":-1,"46563":0,"46564":2445,"46565":2184,"46566":-1,"46567":-1,"46568":-1,"46569":0,"46570":0,"46571":-1,"46572":0,"46573":2637,"46574":2345,"46575":2653,"46576":-1,"46577":0,"46578":0,"46579":0,"46580":2617,"46581":2422,"46582":2173,"46583":0,"46584":-1,"46585":2548,"46586":0,"46587":2465,"46588":-1,"46589":0,"46590":-1,"46591":0,"46592":2200,"46593":-1,"46594":-1,"46595":141,"46596":0,"46597":-1,"46598":-1,"46599":-1,"46600":0,"46601":0,"46602":0,"46603":-1,"46604":-1,"46605":80,"46606":287,"46607":2620,"46608":0,"46609":2092,"46610":0,"46611":2220,"46612":-1,"46613":-1,"46614":-1,"46615":0,"46616":598,"46617":0,"46618":101,"46619":0,"46620":-1,"46621":0,"46622":2081,"46623":0,"46624":2108,"46625":-1,"46626":0,"46627":-1,"46628":2437,"46629":0,"46630":-1,"46631":-1,"46632":0,"46633":942,"46634":2529,"46635":0,"46636":0,"46637":0,"46638":-1,"46639":-1,"46640":-1,"46641":2679,"46642":-1,"46643":-1,"46644":-1,"46645":-1,"46646":2365,"46647":2270,"46648":2343,"46649":2352,"46650":-1,"46651":281,"46652":-1,"46653":-1,"46654":0,"46655":0,"46656":-1,"46657":2011,"46658":-1,"46659":0,"46660":2174,"46661":2270,"46662":0,"46663":-1,"46664":2668,"46665":0,"46666":-1,"46667":0,"46668":0,"46669":0,"46670":0,"46671":2481,"46672":0,"46673":0,"46674":0,"46675":0,"46676":-1,"46677":2602,"46678":0,"46679":-1,"46680":0,"46681":-1,"46682":2485,"46683":0,"46684":2516,"46685":0,"46686":2504,"46687":2640,"46688":0,"46689":0,"46690":2112,"46691":0,"46692":0,"46693":2389,"46694":0,"46695":-1,"46696":-1,"46697":0,"46698":0,"46699":-1,"46700":2188,"46701":0,"46702":0,"46703":0,"46704":0,"46705":-1,"46706":645,"46707":0,"46708":2172,"46709":0,"46710":0,"46711":0,"46712":2053,"46713":0,"46714":-1,"46715":0,"46716":21,"46717":-1,"46718":-1,"46719":120,"46720":0,"46721":0,"46722":-1,"46723":-1,"46724":-1,"46725":0,"46726":0,"46727":-1,"46728":-1,"46729":2421,"46730":0,"46731":0,"46732":-1,"46733":0,"46734":0,"46735":0,"46736":0,"46737":-1,"46738":-1,"46739":2324,"46740":0,"46741":-1,"46742":-1,"46743":0,"46744":-1,"46745":-1,"46746":0,"46747":-1,"46748":-1,"46749":0,"46750":637,"46751":0,"46752":0,"46753":1993,"46754":0,"46755":0,"46756":2191,"46757":2438,"46758":2394,"46759":-1,"46760":0,"46761":2270,"46762":0,"46763":-1,"46764":0,"46765":-1,"46766":0,"46767":2223,"46768":0,"46769":1998,"46770":-1,"46771":0,"46772":2112,"46773":0,"46774":-1,"46775":0,"46776":-1,"46777":-1,"46778":0,"46779":0,"46780":0,"46781":0,"46782":-1,"46783":-1,"46784":-1,"46785":0,"46786":-1,"46787":0,"46788":2015,"46789":0,"46790":-1,"46791":2496,"46792":0,"46793":0,"46794":0,"46795":2319,"46796":0,"46797":0,"46798":2466,"46799":2259,"46800":0,"46801":0,"46802":-1,"46803":0,"46804":0,"46805":0,"46806":28,"46807":-1,"46808":0,"46809":0,"46810":20,"46811":-1,"46812":2515,"46813":2643,"46814":0,"46815":-1,"46816":0,"46817":2443,"46818":0,"46819":0,"46820":0,"46821":130,"46822":-1,"46823":461,"46824":0,"46825":-1,"46826":0,"46827":0,"46828":2161,"46829":-1,"46830":0,"46831":2387,"46832":0,"46833":-1,"46834":-1,"46835":-1,"46836":2402,"46837":0,"46838":-1,"46839":2458,"46840":2456,"46841":18,"46842":-1,"46843":0,"46844":2572,"46845":-1,"46846":2060,"46847":2656,"46848":0,"46849":0,"46850":2223,"46851":-1,"46852":-1,"46853":0,"46854":2275,"46855":-1,"46856":2400,"46857":2124,"46858":2279,"46859":-1,"46860":-1,"46861":0,"46862":-1,"46863":-1,"46864":0,"46865":2004,"46866":0,"46867":0,"46868":0,"46869":0,"46870":-1,"46871":-1,"46872":0,"46873":-1,"46874":0,"46875":-1,"46876":2235,"46877":2048,"46878":0,"46879":0,"46880":-1,"46881":-1,"46882":2263,"46883":-1,"46884":-1,"46885":-1,"46886":0,"46887":2397,"46888":0,"46889":-1,"46890":2479,"46891":0,"46892":-1,"46893":637,"46894":0,"46895":0,"46896":-1,"46897":667,"46898":0,"46899":2627,"46900":-1,"46901":0,"46902":0,"46903":-1,"46904":0,"46905":-1,"46906":-1,"46907":0,"46908":859,"46909":2187,"46910":-1,"46911":2077,"46912":-1,"46913":2646,"46914":-1,"46915":-1,"46916":310,"46917":0,"46918":-1,"46919":0,"46920":2635,"46921":0,"46922":-1,"46923":-1,"46924":0,"46925":-1,"46926":27,"46927":2032,"46928":2433,"46929":0,"46930":0,"46931":0,"46932":0,"46933":-1,"46934":-1,"46935":-1,"46936":0,"46937":-1,"46938":2531,"46939":0,"46940":0,"46941":312,"46942":-1,"46943":0,"46944":-1,"46945":-1,"46946":137,"46947":0,"46948":-1,"46949":-1,"46950":-1,"46951":0,"46952":0,"46953":0,"46954":0,"46955":0,"46956":0,"46957":2380,"46958":-1,"46959":-1,"46960":0,"46961":0,"46962":0,"46963":-1,"46964":2014,"46965":2606,"46966":2623,"46967":2541,"46968":-1,"46969":0,"46970":0,"46971":0,"46972":0,"46973":0,"46974":0,"46975":0,"46976":0,"46977":-1,"46978":-1,"46979":-1,"46980":2660,"46981":2312,"46982":0,"46983":0,"46984":-1,"46985":0,"46986":45,"46987":0,"46988":0,"46989":0,"46990":0,"46991":2566,"46992":0,"46993":0,"46994":0,"46995":2334,"46996":0,"46997":0,"46998":-1,"46999":-1,"47000":2680,"47001":-1,"47002":-1,"47003":0,"47004":2081,"47005":0,"47006":-1,"47007":2617,"47008":0,"47009":0,"47010":-1,"47011":2540,"47012":-1,"47013":-1,"47014":2017,"47015":0,"47016":2064,"47017":-1,"47018":2217,"47019":0,"47020":0,"47021":-1,"47022":0,"47023":0,"47024":0,"47025":-1,"47026":-1,"47027":-1,"47028":26,"47029":0,"47030":2145,"47031":0,"47032":-1,"47033":-1,"47034":0,"47035":-1,"47036":-1,"47037":-1,"47038":0,"47039":-1,"47040":-1,"47041":0,"47042":-1,"47043":-1,"47044":0,"47045":0,"47046":-1,"47047":2537,"47048":554,"47049":0,"47050":0,"47051":0,"47052":2537,"47053":0,"47054":2342,"47055":0,"47056":2397,"47057":22,"47058":2127,"47059":-1,"47060":0,"47061":-1,"47062":0,"47063":0,"47064":0,"47065":0,"47066":0,"47067":0,"47068":-1,"47069":30,"47070":0,"47071":0,"47072":-1,"47073":0,"47074":-1,"47075":0,"47076":-1,"47077":-1,"47078":0,"47079":0,"47080":2171,"47081":0,"47082":-1,"47083":-1,"47084":-1,"47085":0,"47086":0,"47087":0,"47088":544,"47089":0,"47090":0,"47091":-1,"47092":13,"47093":0,"47094":-1,"47095":2004,"47096":-1,"47097":0,"47098":0,"47099":0,"47100":0,"47101":0,"47102":0,"47103":0,"47104":-1,"47105":0,"47106":2042,"47107":2334,"47108":0,"47109":-1,"47110":-1,"47111":-1,"47112":2484,"47113":0,"47114":313,"47115":0,"47116":0,"47117":0,"47118":-1,"47119":0,"47120":2446,"47121":0,"47122":0,"47123":0,"47124":0,"47125":0,"47126":0,"47127":0,"47128":0,"47129":693,"47130":0,"47131":0,"47132":-1,"47133":0,"47134":0,"47135":0,"47136":0,"47137":2181,"47138":-1,"47139":0,"47140":0,"47141":-1,"47142":-1,"47143":772,"47144":2680,"47145":-1,"47146":2354,"47147":0,"47148":0,"47149":0,"47150":0,"47151":77,"47152":-1,"47153":0,"47154":2590,"47155":299,"47156":0,"47157":-1,"47158":0,"47159":0,"47160":0,"47161":0,"47162":-1,"47163":-1,"47164":0,"47165":0,"47166":-1,"47167":0,"47168":-1,"47169":317,"47170":-1,"47171":341,"47172":-1,"47173":2066,"47174":0,"47175":0,"47176":0,"47177":0,"47178":0,"47179":2532,"47180":0,"47181":2337,"47182":-1,"47183":0,"47184":0,"47185":-1,"47186":-1,"47187":-1,"47188":0,"47189":0,"47190":168,"47191":422,"47192":0,"47193":-1,"47194":0,"47195":-1,"47196":0,"47197":0,"47198":0,"47199":-1,"47200":0,"47201":-1,"47202":-1,"47203":-1,"47204":0,"47205":0,"47206":2233,"47207":0,"47208":86,"47209":-1,"47210":-1,"47211":2310,"47212":-1,"47213":2373,"47214":0,"47215":-1,"47216":-1,"47217":2478,"47218":0,"47219":-1,"47220":559,"47221":0,"47222":0,"47223":0,"47224":-1,"47225":2100,"47226":-1,"47227":0,"47228":-1,"47229":0,"47230":-1,"47231":2447,"47232":2608,"47233":0,"47234":-1,"47235":2612,"47236":-1,"47237":-1,"47238":0,"47239":2396,"47240":0,"47241":0,"47242":0,"47243":-1,"47244":0,"47245":0,"47246":-1,"47247":0,"47248":0,"47249":0,"47250":2362,"47251":0,"47252":0,"47253":-1,"47254":0,"47255":2506,"47256":0,"47257":2625,"47258":2024,"47259":0,"47260":-1,"47261":0,"47262":2149,"47263":-1,"47264":0,"47265":-1,"47266":-1,"47267":-1,"47268":0,"47269":0,"47270":0,"47271":0,"47272":0,"47273":-1,"47274":-1,"47275":-1,"47276":-1,"47277":0,"47278":-1,"47279":0,"47280":2095,"47281":-1,"47282":-1,"47283":2335,"47284":0,"47285":2113,"47286":0,"47287":0,"47288":0,"47289":2485,"47290":-1,"47291":-1,"47292":0,"47293":-1,"47294":-1,"47295":-1,"47296":0,"47297":2663,"47298":0,"47299":2450,"47300":2406,"47301":0,"47302":2601,"47303":2288,"47304":2101,"47305":0,"47306":2496,"47307":58,"47308":2136,"47309":-1,"47310":-1,"47311":-1,"47312":0,"47313":2079,"47314":0,"47315":0,"47316":0,"47317":2157,"47318":-1,"47319":0,"47320":2442,"47321":0,"47322":0,"47323":0,"47324":2464,"47325":0,"47326":2654,"47327":0,"47328":2299,"47329":2127,"47330":2290,"47331":0,"47332":26,"47333":0,"47334":2585,"47335":-1,"47336":-1,"47337":-1,"47338":-1,"47339":-1,"47340":2091,"47341":0,"47342":0,"47343":2580,"47344":-1,"47345":0,"47346":2189,"47347":2657,"47348":0,"47349":0,"47350":-1,"47351":2144,"47352":0,"47353":2598,"47354":-1,"47355":0,"47356":0,"47357":0,"47358":842,"47359":2626,"47360":-1,"47361":-1,"47362":0,"47363":0,"47364":0,"47365":0,"47366":-1,"47367":-1,"47368":2290,"47369":-1,"47370":0,"47371":-1,"47372":0,"47373":0,"47374":64,"47375":-1,"47376":2521,"47377":18,"47378":0,"47379":0,"47380":0,"47381":0,"47382":0,"47383":0,"47384":-1,"47385":2210,"47386":-1,"47387":0,"47388":2336,"47389":0,"47390":2459,"47391":2354,"47392":0,"47393":102,"47394":-1,"47395":0,"47396":0,"47397":2577,"47398":-1,"47399":0,"47400":0,"47401":0,"47402":-1,"47403":-1,"47404":-1,"47405":0,"47406":-1,"47407":-1,"47408":0,"47409":-1,"47410":0,"47411":-1,"47412":0,"47413":-1,"47414":0,"47415":-1,"47416":2161,"47417":293,"47418":-1,"47419":0,"47420":-1,"47421":-1,"47422":0,"47423":0,"47424":-1,"47425":64,"47426":2021,"47427":2319,"47428":2567,"47429":2077,"47430":2034,"47431":0,"47432":-1,"47433":-1,"47434":0,"47435":4,"47436":-1,"47437":0,"47438":793,"47439":-1,"47440":0,"47441":2433,"47442":2567,"47443":1998,"47444":-1,"47445":2127,"47446":2164,"47447":0,"47448":-1,"47449":0,"47450":443,"47451":0,"47452":-1,"47453":-1,"47454":0,"47455":0,"47456":0,"47457":0,"47458":-1,"47459":559,"47460":2569,"47461":-1,"47462":-1,"47463":-1,"47464":2037,"47465":2105,"47466":2649,"47467":64,"47468":-1,"47469":-1,"47470":2204,"47471":-1,"47472":2394,"47473":2577,"47474":0,"47475":-1,"47476":0,"47477":2512,"47478":0,"47479":0,"47480":475,"47481":-1,"47482":0,"47483":2601,"47484":2525,"47485":0,"47486":2630,"47487":-1,"47488":0,"47489":0,"47490":645,"47491":0,"47492":0,"47493":0,"47494":-1,"47495":2501,"47496":0,"47497":-1,"47498":2424,"47499":0,"47500":-1,"47501":2566,"47502":0,"47503":0,"47504":0,"47505":-1,"47506":0,"47507":-1,"47508":0,"47509":-1,"47510":0,"47511":2474,"47512":-1,"47513":0,"47514":2620,"47515":-1,"47516":0,"47517":-1,"47518":0,"47519":0,"47520":0,"47521":0,"47522":0,"47523":0,"47524":-1,"47525":-1,"47526":0,"47527":0,"47528":-1,"47529":0,"47530":-1,"47531":299,"47532":-1,"47533":-1,"47534":-1,"47535":2579,"47536":0,"47537":2617,"47538":0,"47539":-1,"47540":2,"47541":0,"47542":-1,"47543":0,"47544":0,"47545":2032,"47546":-1,"47547":2457,"47548":-1,"47549":460,"47550":-1,"47551":-1,"47552":0,"47553":0,"47554":2600,"47555":-1,"47556":-1,"47557":2544,"47558":-1,"47559":0,"47560":0,"47561":0,"47562":0,"47563":0,"47564":-1,"47565":2089,"47566":1998,"47567":2595,"47568":2329,"47569":0,"47570":0,"47571":2583,"47572":2398,"47573":0,"47574":-1,"47575":2638,"47576":-1,"47577":0,"47578":0,"47579":0,"47580":-1,"47581":2475,"47582":-1,"47583":-1,"47584":2119,"47585":-1,"47586":0,"47587":0,"47588":-1,"47589":0,"47590":598,"47591":0,"47592":0,"47593":0,"47594":2284,"47595":-1,"47596":0,"47597":0,"47598":-1,"47599":0,"47600":2129,"47601":-1,"47602":-1,"47603":-1,"47604":0,"47605":0,"47606":-1,"47607":0,"47608":-1,"47609":0,"47610":0,"47611":0,"47612":2525,"47613":2042,"47614":0,"47615":0,"47616":-1,"47617":-1,"47618":2227,"47619":0,"47620":-1,"47621":-1,"47622":0,"47623":-1,"47624":-1,"47625":455,"47626":0,"47627":0,"47628":2647,"47629":0,"47630":0,"47631":0,"47632":0,"47633":-1,"47634":-1,"47635":0,"47636":0,"47637":-1,"47638":-1,"47639":0,"47640":2260,"47641":0,"47642":-1,"47643":0,"47644":-1,"47645":0,"47646":0,"47647":0,"47648":0,"47649":0,"47650":0,"47651":0,"47652":2407,"47653":-1,"47654":2057,"47655":0,"47656":0,"47657":39,"47658":0,"47659":-1,"47660":0,"47661":0,"47662":2336,"47663":0,"47664":0,"47665":2672,"47666":0,"47667":0,"47668":2509,"47669":0,"47670":2505,"47671":0,"47672":0,"47673":-1,"47674":2649,"47675":2422,"47676":-1,"47677":-1,"47678":0,"47679":-1,"47680":0,"47681":2581,"47682":0,"47683":0,"47684":-1,"47685":2183,"47686":-1,"47687":-1,"47688":942,"47689":2322,"47690":-1,"47691":0,"47692":-1,"47693":0,"47694":0,"47695":2243,"47696":395,"47697":-1,"47698":-1,"47699":0,"47700":2239,"47701":-1,"47702":0,"47703":0,"47704":-1,"47705":-1,"47706":0,"47707":-1,"47708":0,"47709":0,"47710":0,"47711":2172,"47712":0,"47713":-1,"47714":2345,"47715":-1,"47716":0,"47717":0,"47718":2115,"47719":-1,"47720":-1,"47721":-1,"47722":2440,"47723":0,"47724":0,"47725":-1,"47726":2588,"47727":-1,"47728":2229,"47729":-1,"47730":-1,"47731":-1,"47732":-1,"47733":-1,"47734":2508,"47735":-1,"47736":-1,"47737":0,"47738":0,"47739":2453,"47740":0,"47741":0,"47742":0,"47743":691,"47744":0,"47745":0,"47746":0,"47747":0,"47748":-1,"47749":0,"47750":0,"47751":0,"47752":0,"47753":0,"47754":0,"47755":0,"47756":0,"47757":-1,"47758":-1,"47759":2453,"47760":-1,"47761":2662,"47762":2207,"47763":-1,"47764":2399,"47765":-1,"47766":0,"47767":2373,"47768":0,"47769":-1,"47770":0,"47771":-1,"47772":-1,"47773":2216,"47774":-1,"47775":-1,"47776":2660,"47777":-1,"47778":0,"47779":-1,"47780":0,"47781":1995,"47782":0,"47783":-1,"47784":-1,"47785":0,"47786":2436,"47787":2196,"47788":2263,"47789":0,"47790":-1,"47791":2146,"47792":-1,"47793":-1,"47794":-1,"47795":0,"47796":0,"47797":0,"47798":0,"47799":0,"47800":-1,"47801":2149,"47802":0,"47803":-1,"47804":0,"47805":-1,"47806":0,"47807":0,"47808":0,"47809":2594,"47810":0,"47811":2373,"47812":-1,"47813":0,"47814":0,"47815":-1,"47816":-1,"47817":-1,"47818":0,"47819":-1,"47820":0,"47821":-1,"47822":-1,"47823":-1,"47824":-1,"47825":0,"47826":-1,"47827":2570,"47828":-1,"47829":2454,"47830":-1,"47831":-1,"47832":-1,"47833":-1,"47834":0,"47835":2613,"47836":0,"47837":-1,"47838":341,"47839":2607,"47840":2066,"47841":2613,"47842":16,"47843":2641,"47844":-1,"47845":-1,"47846":-1,"47847":0,"47848":2052,"47849":0,"47850":0,"47851":0,"47852":-1,"47853":2329,"47854":0,"47855":-1,"47856":777,"47857":-1,"47858":287,"47859":10,"47860":0,"47861":2404,"47862":0,"47863":261,"47864":96,"47865":0,"47866":0,"47867":0,"47868":0,"47869":2079,"47870":2643,"47871":0,"47872":0,"47873":0,"47874":2604,"47875":-1,"47876":0,"47877":-1,"47878":-1,"47879":2098,"47880":2143,"47881":0,"47882":-1,"47883":2582,"47884":-1,"47885":-1,"47886":-1,"47887":2461,"47888":0,"47889":-1,"47890":-1,"47891":-1,"47892":2435,"47893":0,"47894":0,"47895":-1,"47896":2034,"47897":-1,"47898":0,"47899":0,"47900":0,"47901":7,"47902":0,"47903":2519,"47904":2651,"47905":0,"47906":0,"47907":0,"47908":0,"47909":0,"47910":2311,"47911":2287,"47912":0,"47913":0,"47914":-1,"47915":0,"47916":-1,"47917":-1,"47918":0,"47919":2631,"47920":2096,"47921":2520,"47922":2019,"47923":0,"47924":-1,"47925":2670,"47926":942,"47927":-1,"47928":0,"47929":2600,"47930":0,"47931":0,"47932":-1,"47933":0,"47934":2612,"47935":0,"47936":-1,"47937":-1,"47938":0,"47939":2502,"47940":-1,"47941":0,"47942":2316,"47943":0,"47944":0,"47945":0,"47946":0,"47947":-1,"47948":0,"47949":2511,"47950":0,"47951":2230,"47952":-1,"47953":0,"47954":705,"47955":-1,"47956":-1,"47957":21,"47958":61,"47959":0,"47960":-1,"47961":-1,"47962":0,"47963":0,"47964":-1,"47965":-1,"47966":0,"47967":639,"47968":2221,"47969":2571,"47970":-1,"47971":0,"47972":0,"47973":-1,"47974":-1,"47975":2334,"47976":2487,"47977":0,"47978":0,"47979":0,"47980":-1,"47981":0,"47982":2429,"47983":-1,"47984":0,"47985":2184,"47986":-1,"47987":-1,"47988":-1,"47989":2426,"47990":0,"47991":-1,"47992":2583,"47993":0,"47994":0,"47995":-1,"47996":2350,"47997":0,"47998":0,"47999":2304,"48000":-1,"48001":0,"48002":-1,"48003":0,"48004":924,"48005":325,"48006":2390,"48007":826,"48008":2159,"48009":-1,"48010":2234,"48011":0,"48012":0,"48013":2668,"48014":0,"48015":0,"48016":0,"48017":-1,"48018":15,"48019":-1,"48020":0,"48021":0,"48022":58,"48023":2213,"48024":-1,"48025":0,"48026":0,"48027":2581,"48028":2627,"48029":0,"48030":520,"48031":2240,"48032":-1,"48033":0,"48034":0,"48035":2474,"48036":-1,"48037":2267,"48038":0,"48039":0,"48040":0,"48041":0,"48042":0,"48043":313,"48044":-1,"48045":0,"48046":0,"48047":0,"48048":0,"48049":-1,"48050":-1,"48051":2388,"48052":2193,"48053":0,"48054":-1,"48055":0,"48056":0,"48057":2598,"48058":0,"48059":2046,"48060":-1,"48061":-1,"48062":2558,"48063":2409,"48064":0,"48065":0,"48066":0,"48067":0,"48068":-1,"48069":0,"48070":0,"48071":793,"48072":0,"48073":-1,"48074":2574,"48075":0,"48076":0,"48077":0,"48078":2211,"48079":0,"48080":-1,"48081":-1,"48082":-1,"48083":2109,"48084":0,"48085":0,"48086":-1,"48087":-1,"48088":-1,"48089":-1,"48090":-1,"48091":-1,"48092":-1,"48093":-1,"48094":0,"48095":2561,"48096":0,"48097":2077,"48098":-1,"48099":2029,"48100":0,"48101":0,"48102":0,"48103":0,"48104":2180,"48105":0,"48106":500,"48107":-1,"48108":0,"48109":-1,"48110":19,"48111":0,"48112":-1,"48113":2406,"48114":2256,"48115":-1,"48116":-1,"48117":0,"48118":0,"48119":0,"48120":0,"48121":2282,"48122":2676,"48123":0,"48124":-1,"48125":0,"48126":0,"48127":2623,"48128":637,"48129":0,"48130":-1,"48131":-1,"48132":-1,"48133":2642,"48134":-1,"48135":-1,"48136":0,"48137":0,"48138":-1,"48139":0,"48140":0,"48141":0,"48142":0,"48143":-1,"48144":-1,"48145":-1,"48146":2395,"48147":-1,"48148":0,"48149":-1,"48150":-1,"48151":0,"48152":2543,"48153":735,"48154":0,"48155":460,"48156":-1,"48157":0,"48158":2567,"48159":2137,"48160":0,"48161":0,"48162":0,"48163":2043,"48164":0,"48165":0,"48166":2128,"48167":154,"48168":0,"48169":-1,"48170":-1,"48171":-1,"48172":0,"48173":0,"48174":-1,"48175":2362,"48176":27,"48177":2001,"48178":-1,"48179":0,"48180":0,"48181":-1,"48182":2525,"48183":0,"48184":2180,"48185":2388,"48186":0,"48187":2226,"48188":-1,"48189":-1,"48190":0,"48191":0,"48192":0,"48193":2227,"48194":0,"48195":2554,"48196":-1,"48197":0,"48198":0,"48199":0,"48200":-1,"48201":0,"48202":0,"48203":220,"48204":-1,"48205":0,"48206":2095,"48207":0,"48208":-1,"48209":0,"48210":281,"48211":0,"48212":-1,"48213":0,"48214":0,"48215":0,"48216":308,"48217":0,"48218":-1,"48219":-1,"48220":0,"48221":0,"48222":0,"48223":0,"48224":104,"48225":-1,"48226":0,"48227":-1,"48228":-1,"48229":-1,"48230":2049,"48231":0,"48232":-1,"48233":0,"48234":0,"48235":0,"48236":-1,"48237":2580,"48238":-1,"48239":0,"48240":0,"48241":0,"48242":475,"48243":-1,"48244":2157,"48245":2162,"48246":2279,"48247":2631,"48248":2312,"48249":0,"48250":0,"48251":-1,"48252":2025,"48253":2447,"48254":0,"48255":0,"48256":0,"48257":-1,"48258":-1,"48259":0,"48260":-1,"48261":-1,"48262":0,"48263":-1,"48264":-1,"48265":0,"48266":126,"48267":0,"48268":2605,"48269":-1,"48270":2284,"48271":0,"48272":0,"48273":0,"48274":-1,"48275":2,"48276":317,"48277":0,"48278":0,"48279":0,"48280":2545,"48281":0,"48282":-1,"48283":0,"48284":0,"48285":-1,"48286":0,"48287":-1,"48288":2379,"48289":0,"48290":0,"48291":2297,"48292":-1,"48293":2592,"48294":2673,"48295":0,"48296":0,"48297":-1,"48298":-1,"48299":-1,"48300":-1,"48301":0,"48302":-1,"48303":0,"48304":2450,"48305":2179,"48306":102,"48307":0,"48308":2595,"48309":-1,"48310":-1,"48311":329,"48312":584,"48313":-1,"48314":0,"48315":0,"48316":-1,"48317":19,"48318":0,"48319":2180,"48320":2572,"48321":0,"48322":-1,"48323":0,"48324":2634,"48325":-1,"48326":-1,"48327":-1,"48328":-1,"48329":-1,"48330":-1,"48331":6,"48332":0,"48333":0,"48334":142,"48335":0,"48336":0,"48337":-1,"48338":-1,"48339":2242,"48340":0,"48341":-1,"48342":2225,"48343":0,"48344":2383,"48345":0,"48346":-1,"48347":317,"48348":-1,"48349":0,"48350":-1,"48351":-1,"48352":0,"48353":0,"48354":-1,"48355":0,"48356":0,"48357":-1,"48358":2665,"48359":0,"48360":0,"48361":0,"48362":2271,"48363":0,"48364":-1,"48365":0,"48366":-1,"48367":-1,"48368":2020,"48369":0,"48370":86,"48371":0,"48372":0,"48373":-1,"48374":0,"48375":-1,"48376":0,"48377":31,"48378":0,"48379":-1,"48380":2243,"48381":0,"48382":0,"48383":-1,"48384":0,"48385":2433,"48386":0,"48387":2038,"48388":-1,"48389":2024,"48390":310,"48391":2293,"48392":0,"48393":-1,"48394":2171,"48395":-1,"48396":0,"48397":2004,"48398":0,"48399":0,"48400":261,"48401":0,"48402":0,"48403":0,"48404":-1,"48405":-1,"48406":0,"48407":-1,"48408":-1,"48409":2654,"48410":-1,"48411":0,"48412":-1,"48413":-1,"48414":0,"48415":0,"48416":-1,"48417":0,"48418":0,"48419":0,"48420":-1,"48421":2275,"48422":-1,"48423":-1,"48424":0,"48425":-1,"48426":-1,"48427":-1,"48428":-1,"48429":-1,"48430":0,"48431":0,"48432":-1,"48433":0,"48434":0,"48435":-1,"48436":0,"48437":0,"48438":38,"48439":2451,"48440":0,"48441":0,"48442":0,"48443":-1,"48444":0,"48445":-1,"48446":0,"48447":-1,"48448":0,"48449":-1,"48450":0,"48451":-1,"48452":0,"48453":2364,"48454":0,"48455":0,"48456":0,"48457":-1,"48458":2369,"48459":-1,"48460":2206,"48461":-1,"48462":0,"48463":-1,"48464":-1,"48465":0,"48466":-1,"48467":0,"48468":-1,"48469":0,"48470":0,"48471":0,"48472":0,"48473":2263,"48474":0,"48475":0,"48476":2544,"48477":-1,"48478":0,"48479":2619,"48480":0,"48481":0,"48482":2167,"48483":0,"48484":3,"48485":-1,"48486":2292,"48487":0,"48488":-1,"48489":0,"48490":-1,"48491":0,"48492":0,"48493":0,"48494":2293,"48495":0,"48496":-1,"48497":0,"48498":2140,"48499":-1,"48500":2016,"48501":-1,"48502":0,"48503":0,"48504":0,"48505":0,"48506":0,"48507":0,"48508":-1,"48509":0,"48510":0,"48511":2515,"48512":0,"48513":0,"48514":0,"48515":-1,"48516":0,"48517":325,"48518":0,"48519":2192,"48520":-1,"48521":-1,"48522":0,"48523":-1,"48524":2654,"48525":-1,"48526":0,"48527":0,"48528":-1,"48529":313,"48530":-1,"48531":0,"48532":2420,"48533":0,"48534":0,"48535":2522,"48536":0,"48537":-1,"48538":0,"48539":0,"48540":-1,"48541":0,"48542":0,"48543":-1,"48544":0,"48545":0,"48546":-1,"48547":0,"48548":2493,"48549":0,"48550":2228,"48551":179,"48552":-1,"48553":2564,"48554":-1,"48555":-1,"48556":-1,"48557":-1,"48558":-1,"48559":-1,"48560":0,"48561":0,"48562":2049,"48563":2570,"48564":2244,"48565":2137,"48566":0,"48567":0,"48568":0,"48569":0,"48570":0,"48571":0,"48572":0,"48573":2437,"48574":0,"48575":0,"48576":2493,"48577":551,"48578":-1,"48579":0,"48580":0,"48581":-1,"48582":284,"48583":2531,"48584":2582,"48585":-1,"48586":-1,"48587":0,"48588":0,"48589":-1,"48590":0,"48591":2081,"48592":-1,"48593":2482,"48594":2060,"48595":0,"48596":-1,"48597":0,"48598":-1,"48599":0,"48600":0,"48601":2652,"48602":2408,"48603":-1,"48604":0,"48605":-1,"48606":-1,"48607":-1,"48608":2144,"48609":-1,"48610":2461,"48611":0,"48612":-1,"48613":0,"48614":0,"48615":0,"48616":0,"48617":2420,"48618":-1,"48619":0,"48620":0,"48621":-1,"48622":0,"48623":2352,"48624":2212,"48625":-1,"48626":2165,"48627":0,"48628":0,"48629":0,"48630":0,"48631":0,"48632":0,"48633":0,"48634":0,"48635":0,"48636":0,"48637":0,"48638":0,"48639":-1,"48640":-1,"48641":2090,"48642":0,"48643":-1,"48644":0,"48645":0,"48646":0,"48647":0,"48648":0,"48649":104,"48650":-1,"48651":617,"48652":153,"48653":0,"48654":-1,"48655":0,"48656":2453,"48657":0,"48658":0,"48659":0,"48660":0,"48661":0,"48662":0,"48663":0,"48664":2502,"48665":0,"48666":0,"48667":2642,"48668":0,"48669":-1,"48670":2382,"48671":-1,"48672":2663,"48673":0,"48674":2154,"48675":-1,"48676":2377,"48677":0,"48678":0,"48679":0,"48680":-1,"48681":0,"48682":2576,"48683":0,"48684":942,"48685":-1,"48686":2554,"48687":-1,"48688":0,"48689":-1,"48690":0,"48691":0,"48692":0,"48693":0,"48694":15,"48695":-1,"48696":0,"48697":2262,"48698":2395,"48699":-1,"48700":0,"48701":0,"48702":-1,"48703":2627,"48704":0,"48705":420,"48706":-1,"48707":0,"48708":-1,"48709":2096,"48710":0,"48711":0,"48712":-1,"48713":0,"48714":2439,"48715":2413,"48716":0,"48717":0,"48718":-1,"48719":2349,"48720":-1,"48721":0,"48722":2548,"48723":-1,"48724":2545,"48725":-1,"48726":-1,"48727":0,"48728":35,"48729":0,"48730":0,"48731":0,"48732":-1,"48733":2224,"48734":0,"48735":-1,"48736":0,"48737":0,"48738":-1,"48739":2483,"48740":2055,"48741":455,"48742":0,"48743":-1,"48744":0,"48745":0,"48746":-1,"48747":0,"48748":-1,"48749":2630,"48750":-1,"48751":0,"48752":-1,"48753":0,"48754":402,"48755":0,"48756":0,"48757":2290,"48758":-1,"48759":0,"48760":2413,"48761":-1,"48762":2321,"48763":0,"48764":2234,"48765":2156,"48766":-1,"48767":-1,"48768":2211,"48769":2539,"48770":-1,"48771":612,"48772":0,"48773":2078,"48774":0,"48775":-1,"48776":0,"48777":0,"48778":0,"48779":104,"48780":199,"48781":-1,"48782":0,"48783":0,"48784":0,"48785":0,"48786":-1,"48787":0,"48788":2367,"48789":2337,"48790":-1,"48791":0,"48792":-1,"48793":1992,"48794":0,"48795":-1,"48796":2281,"48797":0,"48798":0,"48799":0,"48800":2629,"48801":0,"48802":-1,"48803":2475,"48804":-1,"48805":-1,"48806":0,"48807":2301,"48808":101,"48809":-1,"48810":0,"48811":2505,"48812":-1,"48813":0,"48814":0,"48815":41,"48816":0,"48817":0,"48818":0,"48819":0,"48820":2166,"48821":0,"48822":837,"48823":0,"48824":-1,"48825":2553,"48826":2245,"48827":-1,"48828":2234,"48829":0,"48830":-1,"48831":-1,"48832":2531,"48833":-1,"48834":2263,"48835":0,"48836":0,"48837":520,"48838":-1,"48839":0,"48840":-1,"48841":0,"48842":2316,"48843":0,"48844":-1,"48845":0,"48846":-1,"48847":572,"48848":-1,"48849":-1,"48850":-1,"48851":0,"48852":0,"48853":-1,"48854":0,"48855":0,"48856":0,"48857":2657,"48858":0,"48859":0,"48860":2306,"48861":2170,"48862":-1,"48863":-1,"48864":2512,"48865":0,"48866":0,"48867":0,"48868":-1,"48869":0,"48870":2085,"48871":461,"48872":0,"48873":-1,"48874":0,"48875":2437,"48876":2670,"48877":0,"48878":-1,"48879":0,"48880":2437,"48881":-1,"48882":0,"48883":-1,"48884":-1,"48885":0,"48886":2505,"48887":0,"48888":0,"48889":0,"48890":-1,"48891":-1,"48892":0,"48893":0,"48894":-1,"48895":936,"48896":0,"48897":2081,"48898":0,"48899":0,"48900":-1,"48901":-1,"48902":0,"48903":-1,"48904":0,"48905":-1,"48906":-1,"48907":-1,"48908":0,"48909":0,"48910":0,"48911":0,"48912":0,"48913":0,"48914":0,"48915":2003,"48916":-1,"48917":0,"48918":-1,"48919":0,"48920":0,"48921":0,"48922":0,"48923":0,"48924":333,"48925":2072,"48926":-1,"48927":-1,"48928":-1,"48929":0,"48930":0,"48931":0,"48932":-1,"48933":42,"48934":-1,"48935":-1,"48936":0,"48937":0,"48938":0,"48939":0,"48940":-1,"48941":2236,"48942":0,"48943":2628,"48944":2109,"48945":-1,"48946":2413,"48947":0,"48948":663,"48949":-1,"48950":303,"48951":35,"48952":0,"48953":-1,"48954":2671,"48955":0,"48956":0,"48957":0,"48958":0,"48959":0,"48960":0,"48961":2522,"48962":-1,"48963":1,"48964":2155,"48965":859,"48966":2197,"48967":0,"48968":2557,"48969":-1,"48970":0,"48971":-1,"48972":0,"48973":237,"48974":-1,"48975":0,"48976":0,"48977":-1,"48978":0,"48979":2323,"48980":11,"48981":0,"48982":2566,"48983":2335,"48984":0,"48985":-1,"48986":0,"48987":2077,"48988":-1,"48989":-1,"48990":0,"48991":-1,"48992":2160,"48993":0,"48994":-1,"48995":412,"48996":2421,"48997":0,"48998":0,"48999":0,"49000":2298,"49001":2651,"49002":-1,"49003":0,"49004":0,"49005":-1,"49006":-1,"49007":2261,"49008":0,"49009":-1,"49010":0,"49011":2358,"49012":-1,"49013":-1,"49014":0,"49015":2306,"49016":2242,"49017":2009,"49018":787,"49019":2355,"49020":-1,"49021":2284,"49022":-1,"49023":0,"49024":2206,"49025":2359,"49026":0,"49027":0,"49028":0,"49029":2176,"49030":-1,"49031":-1,"49032":0,"49033":2622,"49034":0,"49035":-1,"49036":0,"49037":2614,"49038":0,"49039":0,"49040":-1,"49041":-1,"49042":0,"49043":-1,"49044":2114,"49045":0,"49046":-1,"49047":701,"49048":0,"49049":0,"49050":-1,"49051":0,"49052":0,"49053":0,"49054":0,"49055":0,"49056":2480,"49057":44,"49058":0,"49059":500,"49060":0,"49061":205,"49062":0,"49063":0,"49064":0,"49065":2138,"49066":0,"49067":0,"49068":0,"49069":264,"49070":-1,"49071":-1,"49072":-1,"49073":0,"49074":422,"49075":2171,"49076":0,"49077":219,"49078":2517,"49079":0,"49080":0,"49081":0,"49082":0,"49083":-1,"49084":0,"49085":2562,"49086":0,"49087":-1,"49088":0,"49089":-1,"49090":-1,"49091":2280,"49092":2037,"49093":0,"49094":0,"49095":0,"49096":2213,"49097":2537,"49098":2674,"49099":36,"49100":2577,"49101":0,"49102":0,"49103":-1,"49104":2019,"49105":0,"49106":0,"49107":0,"49108":0,"49109":2080,"49110":0,"49111":2198,"49112":-1,"49113":-1,"49114":9,"49115":2624,"49116":-1,"49117":0,"49118":86,"49119":0,"49120":2021,"49121":0,"49122":0,"49123":0,"49124":0,"49125":0,"49126":0,"49127":2475,"49128":2086,"49129":0,"49130":0,"49131":0,"49132":-1,"49133":-1,"49134":0,"49135":2571,"49136":2637,"49137":2512,"49138":0,"49139":0,"49140":2643,"49141":-1,"49142":0,"49143":-1,"49144":-1,"49145":2198,"49146":-1,"49147":0,"49148":-1,"49149":2618,"49150":2656,"49151":2451,"49152":0,"49153":0,"49154":-1,"49155":-1,"49156":-1,"49157":2203,"49158":0,"49159":2387,"49160":-1,"49161":0,"49162":-1,"49163":0,"49164":299,"49165":0,"49166":2466,"49167":1991,"49168":0,"49169":2144,"49170":-1,"49171":0,"49172":-1,"49173":2548,"49174":0,"49175":0,"49176":0,"49177":2643,"49178":2000,"49179":-1,"49180":-1,"49181":0,"49182":2482,"49183":0,"49184":-1,"49185":2241,"49186":-1,"49187":2332,"49188":-1,"49189":2261,"49190":2259,"49191":-1,"49192":0,"49193":0,"49194":0,"49195":0,"49196":2506,"49197":2549,"49198":0,"49199":-1,"49200":0,"49201":-1,"49202":0,"49203":-1,"49204":0,"49205":22,"49206":2190,"49207":2548,"49208":2670,"49209":2646,"49210":0,"49211":-1,"49212":0,"49213":2216,"49214":0,"49215":0,"49216":2473,"49217":0,"49218":261,"49219":0,"49220":0,"49221":0,"49222":317,"49223":0,"49224":500,"49225":2000,"49226":-1,"49227":0,"49228":0,"49229":0,"49230":2229,"49231":0,"49232":-1,"49233":0,"49234":-1,"49235":0,"49236":-1,"49237":0,"49238":0,"49239":-1,"49240":-1,"49241":0,"49242":0,"49243":-1,"49244":0,"49245":0,"49246":2594,"49247":-1,"49248":35,"49249":-1,"49250":-1,"49251":0,"49252":0,"49253":0,"49254":2062,"49255":-1,"49256":0,"49257":2007,"49258":0,"49259":2115,"49260":-1,"49261":0,"49262":2199,"49263":-1,"49264":0,"49265":2030,"49266":0,"49267":2462,"49268":0,"49269":0,"49270":0,"49271":-1,"49272":2076,"49273":2573,"49274":0,"49275":-1,"49276":0,"49277":2239,"49278":-1,"49279":-1,"49280":2074,"49281":0,"49282":0,"49283":-1,"49284":-1,"49285":2188,"49286":0,"49287":0,"49288":-1,"49289":2358,"49290":2047,"49291":-1,"49292":-1,"49293":0,"49294":2004,"49295":0,"49296":-1,"49297":-1,"49298":2118,"49299":2556,"49300":0,"49301":-1,"49302":0,"49303":443,"49304":-1,"49305":0,"49306":0,"49307":0,"49308":0,"49309":2046,"49310":-1,"49311":2221,"49312":2598,"49313":0,"49314":2234,"49315":-1,"49316":-1,"49317":0,"49318":-1,"49319":2332,"49320":-1,"49321":0,"49322":10,"49323":0,"49324":-1,"49325":0,"49326":0,"49327":-1,"49328":2082,"49329":-1,"49330":0,"49331":0,"49332":0,"49333":-1,"49334":-1,"49335":0,"49336":-1,"49337":2590,"49338":0,"49339":0,"49340":2045,"49341":2400,"49342":-1,"49343":217,"49344":2662,"49345":2463,"49346":2030,"49347":0,"49348":2273,"49349":2256,"49350":310,"49351":-1,"49352":2197,"49353":-1,"49354":0,"49355":0,"49356":-1,"49357":0,"49358":-1,"49359":0,"49360":-1,"49361":0,"49362":2462,"49363":0,"49364":2611,"49365":-1,"49366":0,"49367":0,"49368":0,"49369":-1,"49370":-1,"49371":2331,"49372":2390,"49373":0,"49374":-1,"49375":0,"49376":287,"49377":859,"49378":793,"49379":0,"49380":-1,"49381":0,"49382":0,"49383":-1,"49384":2329,"49385":1994,"49386":-1,"49387":-1,"49388":0,"49389":2242,"49390":-1,"49391":0,"49392":-1,"49393":0,"49394":2174,"49395":0,"49396":-1,"49397":2299,"49398":-1,"49399":2003,"49400":0,"49401":0,"49402":0,"49403":0,"49404":237,"49405":0,"49406":-1,"49407":0,"49408":0,"49409":2080,"49410":0,"49411":0,"49412":0,"49413":2429,"49414":0,"49415":-1,"49416":0,"49417":-1,"49418":2432,"49419":0,"49420":2354,"49421":-1,"49422":0,"49423":0,"49424":-1,"49425":-1,"49426":0,"49427":1998,"49428":2067,"49429":-1,"49430":-1,"49431":-1,"49432":0,"49433":2032,"49434":-1,"49435":2535,"49436":0,"49437":0,"49438":0,"49439":2537,"49440":2101,"49441":2121,"49442":-1,"49443":924,"49444":0,"49445":2157,"49446":0,"49447":0,"49448":-1,"49449":-1,"49450":-1,"49451":0,"49452":0,"49453":0,"49454":-1,"49455":-1,"49456":0,"49457":0,"49458":2392,"49459":-1,"49460":-1,"49461":0,"49462":0,"49463":0,"49464":0,"49465":0,"49466":0,"49467":0,"49468":0,"49469":2018,"49470":0,"49471":787,"49472":-1,"49473":2509,"49474":0,"49475":0,"49476":-1,"49477":-1,"49478":-1,"49479":0,"49480":2614,"49481":2383,"49482":0,"49483":2535,"49484":2380,"49485":0,"49486":118,"49487":942,"49488":-1,"49489":-1,"49490":-1,"49491":2086,"49492":-1,"49493":-1,"49494":0,"49495":2616,"49496":-1,"49497":0,"49498":735,"49499":0,"49500":0,"49501":-1,"49502":-1,"49503":0,"49504":-1,"49505":2246,"49506":0,"49507":0,"49508":0,"49509":2114,"49510":-1,"49511":397,"49512":0,"49513":0,"49514":-1,"49515":0,"49516":-1,"49517":0,"49518":0,"49519":-1,"49520":0,"49521":2663,"49522":0,"49523":-1,"49524":0,"49525":0,"49526":0,"49527":2172,"49528":2062,"49529":0,"49530":-1,"49531":-1,"49532":420,"49533":-1,"49534":0,"49535":-1,"49536":2092,"49537":2259,"49538":0,"49539":2041,"49540":0,"49541":-1,"49542":-1,"49543":0,"49544":0,"49545":-1,"49546":2380,"49547":-1,"49548":0,"49549":-1,"49550":-1,"49551":0,"49552":0,"49553":0,"49554":-1,"49555":0,"49556":-1,"49557":0,"49558":0,"49559":-1,"49560":2440,"49561":-1,"49562":0,"49563":0,"49564":0,"49565":0,"49566":-1,"49567":0,"49568":-1,"49569":2276,"49570":-1,"49571":2585,"49572":0,"49573":2169,"49574":0,"49575":0,"49576":2166,"49577":0,"49578":0,"49579":0,"49580":-1,"49581":0,"49582":2317,"49583":-1,"49584":0,"49585":0,"49586":0,"49587":2553,"49588":0,"49589":-1,"49590":-1,"49591":-1,"49592":2027,"49593":-1,"49594":0,"49595":0,"49596":0,"49597":-1,"49598":0,"49599":-1,"49600":-1,"49601":0,"49602":2590,"49603":2212,"49604":-1,"49605":2414,"49606":0,"49607":0,"49608":0,"49609":2360,"49610":0,"49611":2005,"49612":-1,"49613":0,"49614":-1,"49615":2491,"49616":0,"49617":0,"49618":0,"49619":-1,"49620":0,"49621":-1,"49622":-1,"49623":0,"49624":2197,"49625":-1,"49626":0,"49627":0,"49628":0,"49629":-1,"49630":-1,"49631":0,"49632":0,"49633":-1,"49634":0,"49635":2255,"49636":2661,"49637":2221,"49638":0,"49639":0,"49640":2075,"49641":-1,"49642":-1,"49643":0,"49644":0,"49645":2333,"49646":-1,"49647":-1,"49648":-1,"49649":2509,"49650":2554,"49651":0,"49652":0,"49653":-1,"49654":2189,"49655":2364,"49656":0,"49657":0,"49658":0,"49659":0,"49660":-1,"49661":777,"49662":0,"49663":2514,"49664":0,"49665":49,"49666":0,"49667":0,"49668":-1,"49669":0,"49670":0,"49671":-1,"49672":-1,"49673":145,"49674":-1,"49675":0,"49676":-1,"49677":0,"49678":0,"49679":-1,"49680":2108,"49681":0,"49682":0,"49683":0,"49684":738,"49685":-1,"49686":2161,"49687":0,"49688":0,"49689":0,"49690":0,"49691":0,"49692":-1,"49693":-1,"49694":0,"49695":0,"49696":0,"49697":2473,"49698":45,"49699":-1,"49700":0,"49701":-1,"49702":-1,"49703":-1,"49704":0,"49705":-1,"49706":-1,"49707":2576,"49708":0,"49709":0,"49710":0,"49711":-1,"49712":2378,"49713":2602,"49714":2249,"49715":2302,"49716":-1,"49717":0,"49718":-1,"49719":43,"49720":-1,"49721":0,"49722":2218,"49723":2414,"49724":-1,"49725":2498,"49726":-1,"49727":16,"49728":0,"49729":-1,"49730":2286,"49731":0,"49732":0,"49733":2254,"49734":0,"49735":0,"49736":-1,"49737":0,"49738":2008,"49739":0,"49740":2490,"49741":2591,"49742":-1,"49743":-1,"49744":0,"49745":0,"49746":2492,"49747":-1,"49748":0,"49749":-1,"49750":0,"49751":-1,"49752":2570,"49753":75,"49754":0,"49755":2127,"49756":2449,"49757":2037,"49758":0,"49759":2100,"49760":1992,"49761":0,"49762":0,"49763":2426,"49764":2089,"49765":-1,"49766":0,"49767":0,"49768":2064,"49769":2355,"49770":0,"49771":0,"49772":0,"49773":-1,"49774":2366,"49775":0,"49776":-1,"49777":2313,"49778":-1,"49779":0,"49780":-1,"49781":-1,"49782":-1,"49783":0,"49784":0,"49785":0,"49786":0,"49787":-1,"49788":0,"49789":2510,"49790":0,"49791":-1,"49792":2171,"49793":0,"49794":0,"49795":-1,"49796":-1,"49797":2449,"49798":0,"49799":2527,"49800":0,"49801":-1,"49802":0,"49803":0,"49804":-1,"49805":0,"49806":0,"49807":-1,"49808":0,"49809":-1,"49810":137,"49811":29,"49812":109,"49813":0,"49814":-1,"49815":0,"49816":0,"49817":0,"49818":2202,"49819":2529,"49820":0,"49821":2105,"49822":0,"49823":2308,"49824":0,"49825":-1,"49826":-1,"49827":-1,"49828":-1,"49829":2582,"49830":2152,"49831":2217,"49832":-1,"49833":2343,"49834":0,"49835":154,"49836":0,"49837":0,"49838":0,"49839":-1,"49840":0,"49841":0,"49842":0,"49843":2443,"49844":0,"49845":-1,"49846":0,"49847":-1,"49848":0,"49849":2154,"49850":0,"49851":0,"49852":2025,"49853":-1,"49854":0,"49855":-1,"49856":0,"49857":2308,"49858":-1,"49859":-1,"49860":2216,"49861":-1,"49862":2621,"49863":-1,"49864":0,"49865":-1,"49866":-1,"49867":0,"49868":0,"49869":0,"49870":0,"49871":2161,"49872":0,"49873":0,"49874":620,"49875":496,"49876":2218,"49877":0,"49878":-1,"49879":0,"49880":209,"49881":-1,"49882":2124,"49883":0,"49884":0,"49885":2256,"49886":-1,"49887":0,"49888":-1,"49889":-1,"49890":-1,"49891":-1,"49892":-1,"49893":0,"49894":-1,"49895":-1,"49896":0,"49897":-1,"49898":833,"49899":0,"49900":0,"49901":-1,"49902":2489,"49903":-1,"49904":2627,"49905":2297,"49906":153,"49907":0,"49908":-1,"49909":-1,"49910":0,"49911":-1,"49912":-1,"49913":0,"49914":-1,"49915":2427,"49916":0,"49917":-1,"49918":0,"49919":-1,"49920":0,"49921":-1,"49922":0,"49923":-1,"49924":0,"49925":0,"49926":2368,"49927":-1,"49928":0,"49929":-1,"49930":0,"49931":0,"49932":109,"49933":0,"49934":-1,"49935":0,"49936":0,"49937":-1,"49938":-1,"49939":-1,"49940":0,"49941":-1,"49942":41,"49943":-1,"49944":-1,"49945":2290,"49946":2661,"49947":2540,"49948":0,"49949":2662,"49950":-1,"49951":0,"49952":0,"49953":0,"49954":2189,"49955":0,"49956":-1,"49957":0,"49958":2073,"49959":0,"49960":341,"49961":0,"49962":0,"49963":217,"49964":0,"49965":-1,"49966":0,"49967":-1,"49968":-1,"49969":2043,"49970":0,"49971":0,"49972":2374,"49973":0,"49974":-1,"49975":924,"49976":0,"49977":0,"49978":0,"49979":0,"49980":281,"49981":-1,"49982":2277,"49983":0,"49984":0,"49985":2224,"49986":2155,"49987":0,"49988":-1,"49989":-1,"49990":150,"49991":0,"49992":0,"49993":0,"49994":0,"49995":-1,"49996":0,"49997":65,"49998":455,"49999":-1,"50000":0,"50001":2041,"50002":0,"50003":0,"50004":150,"50005":-1,"50006":2232,"50007":313,"50008":0,"50009":2201,"50010":0,"50011":0,"50012":0,"50013":2569,"50014":0,"50015":-1,"50016":0,"50017":-1,"50018":58,"50019":0,"50020":0,"50021":0,"50022":-1,"50023":-1,"50024":0,"50025":-1,"50026":0,"50027":0,"50028":-1,"50029":0,"50030":0,"50031":0,"50032":0,"50033":-1,"50034":118,"50035":0,"50036":-1,"50037":0,"50038":2351,"50039":0,"50040":-1,"50041":-1,"50042":0,"50043":0,"50044":0,"50045":2351,"50046":2283,"50047":-1,"50048":0,"50049":0,"50050":2082,"50051":-1,"50052":0,"50053":0,"50054":-1,"50055":0,"50056":0,"50057":-1,"50058":-1,"50059":0,"50060":0,"50061":0,"50062":-1,"50063":0,"50064":-1,"50065":2353,"50066":-1,"50067":0,"50068":-1,"50069":-1,"50070":-1,"50071":-1,"50072":0,"50073":2668,"50074":126,"50075":2495,"50076":-1,"50077":2470,"50078":2241,"50079":0,"50080":2191,"50081":0,"50082":0,"50083":2287,"50084":-1,"50085":0,"50086":0,"50087":0,"50088":0,"50089":0,"50090":0,"50091":0,"50092":-1,"50093":533,"50094":298,"50095":120,"50096":-1,"50097":0,"50098":-1,"50099":-1,"50100":-1,"50101":-1,"50102":0,"50103":0,"50104":0,"50105":-1,"50106":0,"50107":2040,"50108":-1,"50109":-1,"50110":777,"50111":-1,"50112":-1,"50113":0,"50114":0,"50115":-1,"50116":-1,"50117":0,"50118":2515,"50119":-1,"50120":0,"50121":38,"50122":0,"50123":-1,"50124":-1,"50125":0,"50126":0,"50127":2342,"50128":0,"50129":0,"50130":0,"50131":0,"50132":353,"50133":2328,"50134":0,"50135":-1,"50136":2299,"50137":0,"50138":2534,"50139":0,"50140":0,"50141":0,"50142":-1,"50143":0,"50144":-1,"50145":0,"50146":2423,"50147":-1,"50148":483,"50149":-1,"50150":0,"50151":0,"50152":2290,"50153":0,"50154":2084,"50155":0,"50156":738,"50157":2506,"50158":0,"50159":-1,"50160":0,"50161":-1,"50162":0,"50163":0,"50164":0,"50165":-1,"50166":-1,"50167":0,"50168":-1,"50169":2361,"50170":2616,"50171":13,"50172":-1,"50173":2675,"50174":0,"50175":0,"50176":0,"50177":0,"50178":-1,"50179":-1,"50180":0,"50181":0,"50182":0,"50183":645,"50184":0,"50185":0,"50186":-1,"50187":0,"50188":0,"50189":-1,"50190":0,"50191":-1,"50192":2186,"50193":-1,"50194":0,"50195":0,"50196":1997,"50197":-1,"50198":0,"50199":0,"50200":0,"50201":2679,"50202":-1,"50203":-1,"50204":-1,"50205":2101,"50206":-1,"50207":0,"50208":-1,"50209":0,"50210":0,"50211":0,"50212":0,"50213":2476,"50214":0,"50215":262,"50216":0,"50217":0,"50218":2540,"50219":-1,"50220":0,"50221":0,"50222":-1,"50223":0,"50224":0,"50225":-1,"50226":2418,"50227":-1,"50228":0,"50229":58,"50230":0,"50231":0,"50232":0,"50233":-1,"50234":-1,"50235":156,"50236":-1,"50237":0,"50238":0,"50239":0,"50240":-1,"50241":2253,"50242":2142,"50243":0,"50244":2621,"50245":0,"50246":2312,"50247":2526,"50248":0,"50249":2632,"50250":0,"50251":2270,"50252":-1,"50253":2222,"50254":0,"50255":-1,"50256":0,"50257":0,"50258":2351,"50259":-1,"50260":0,"50261":578,"50262":0,"50263":0,"50264":0,"50265":2312,"50266":-1,"50267":0,"50268":2467,"50269":2034,"50270":2483,"50271":20,"50272":-1,"50273":0,"50274":-1,"50275":0,"50276":-1,"50277":0,"50278":0,"50279":0,"50280":2272,"50281":-1,"50282":0,"50283":0,"50284":603,"50285":2323,"50286":-1,"50287":2068,"50288":0,"50289":0,"50290":551,"50291":0,"50292":39,"50293":-1,"50294":0,"50295":-1,"50296":-1,"50297":-1,"50298":0,"50299":0,"50300":0,"50301":0,"50302":2558,"50303":0,"50304":0,"50305":0,"50306":308,"50307":-1,"50308":-1,"50309":0,"50310":0,"50311":0,"50312":-1,"50313":-1,"50314":-1,"50315":0,"50316":0,"50317":0,"50318":2207,"50319":-1,"50320":0,"50321":0,"50322":-1,"50323":0,"50324":0,"50325":2555,"50326":2326,"50327":0,"50328":2073,"50329":2149,"50330":-1,"50331":-1,"50332":2510,"50333":-1,"50334":0,"50335":0,"50336":2014,"50337":-1,"50338":0,"50339":0,"50340":2646,"50341":0,"50342":0,"50343":0,"50344":0,"50345":0,"50346":0,"50347":2014,"50348":2307,"50349":0,"50350":0,"50351":0,"50352":-1,"50353":2676,"50354":-1,"50355":-1,"50356":2267,"50357":2115,"50358":2582,"50359":2573,"50360":0,"50361":-1,"50362":-1,"50363":0,"50364":2020,"50365":-1,"50366":-1,"50367":-1,"50368":0,"50369":0,"50370":0,"50371":-1,"50372":-1,"50373":0,"50374":0,"50375":0,"50376":-1,"50377":2651,"50378":2375,"50379":-1,"50380":-1,"50381":0,"50382":-1,"50383":0,"50384":0,"50385":0,"50386":-1,"50387":-1,"50388":0,"50389":826,"50390":2323,"50391":0,"50392":0,"50393":2333,"50394":0,"50395":0,"50396":2157,"50397":0,"50398":-1,"50399":0,"50400":0,"50401":-1,"50402":2001,"50403":0,"50404":2003,"50405":-1,"50406":-1,"50407":936,"50408":0,"50409":2493,"50410":0,"50411":-1,"50412":-1,"50413":2656,"50414":0,"50415":443,"50416":0,"50417":0,"50418":0,"50419":0,"50420":-1,"50421":2220,"50422":0,"50423":0,"50424":-1,"50425":0,"50426":2278,"50427":2163,"50428":0,"50429":2502,"50430":-1,"50431":0,"50432":2191,"50433":0,"50434":-1,"50435":0,"50436":2302,"50437":0,"50438":0,"50439":0,"50440":-1,"50441":859,"50442":-1,"50443":0,"50444":-1,"50445":-1,"50446":2224,"50447":118,"50448":0,"50449":2031,"50450":0,"50451":0,"50452":0,"50453":101,"50454":2639,"50455":0,"50456":0,"50457":0,"50458":2578,"50459":-1,"50460":2479,"50461":0,"50462":0,"50463":-1,"50464":0,"50465":0,"50466":-1,"50467":-1,"50468":0,"50469":0,"50470":0,"50471":-1,"50472":2618,"50473":-1,"50474":0,"50475":0,"50476":27,"50477":-1,"50478":2497,"50479":2360,"50480":2528,"50481":-1,"50482":-1,"50483":2589,"50484":-1,"50485":0,"50486":0,"50487":0,"50488":-1,"50489":-1,"50490":2442,"50491":0,"50492":0,"50493":0,"50494":-1,"50495":-1,"50496":1995,"50497":0,"50498":-1,"50499":2299,"50500":329,"50501":287,"50502":0,"50503":-1,"50504":-1,"50505":-1,"50506":245,"50507":0,"50508":0,"50509":2117,"50510":0,"50511":0,"50512":2012,"50513":2179,"50514":0,"50515":0,"50516":0,"50517":0,"50518":0,"50519":0,"50520":0,"50521":0,"50522":0,"50523":2150,"50524":0,"50525":0,"50526":0,"50527":496,"50528":572,"50529":2287,"50530":0,"50531":0,"50532":2063,"50533":0,"50534":0,"50535":2529,"50536":0,"50537":0,"50538":0,"50539":0,"50540":0,"50541":0,"50542":864,"50543":0,"50544":2084,"50545":0,"50546":-1,"50547":0,"50548":-1,"50549":2269,"50550":-1,"50551":-1,"50552":572,"50553":2005,"50554":-1,"50555":-1,"50556":0,"50557":0,"50558":-1,"50559":-1,"50560":-1,"50561":-1,"50562":287,"50563":514,"50564":0,"50565":554,"50566":0,"50567":-1,"50568":2395,"50569":-1,"50570":-1,"50571":0,"50572":0,"50573":2167,"50574":2439,"50575":-1,"50576":-1,"50577":0,"50578":2057,"50579":0,"50580":-1,"50581":0,"50582":2285,"50583":0,"50584":2578,"50585":-1,"50586":-1,"50587":2529,"50588":-1,"50589":2460,"50590":-1,"50591":0,"50592":2197,"50593":0,"50594":0,"50595":0,"50596":-1,"50597":0,"50598":-1,"50599":0,"50600":0,"50601":-1,"50602":-1,"50603":0,"50604":0,"50605":0,"50606":2385,"50607":0,"50608":-1,"50609":2302,"50610":0,"50611":-1,"50612":0,"50613":0,"50614":-1,"50615":0,"50616":0,"50617":-1,"50618":0,"50619":-1,"50620":0,"50621":-1,"50622":-1,"50623":-1,"50624":-1,"50625":0,"50626":0,"50627":0,"50628":738,"50629":0,"50630":-1,"50631":2207,"50632":0,"50633":0,"50634":-1,"50635":0,"50636":-1,"50637":-1,"50638":0,"50639":-1,"50640":-1,"50641":-1,"50642":0,"50643":-1,"50644":0,"50645":2604,"50646":-1,"50647":0,"50648":0,"50649":0,"50650":0,"50651":0,"50652":2546,"50653":-1,"50654":0,"50655":0,"50656":2462,"50657":-1,"50658":0,"50659":2359,"50660":0,"50661":217,"50662":0,"50663":0,"50664":2051,"50665":0,"50666":0,"50667":0,"50668":0,"50669":-1,"50670":0,"50671":0,"50672":0,"50673":-1,"50674":0,"50675":0,"50676":0,"50677":0,"50678":0,"50679":0,"50680":-1,"50681":-1,"50682":2242,"50683":-1,"50684":-1,"50685":0,"50686":0,"50687":0,"50688":0,"50689":0,"50690":-1,"50691":2545,"50692":-1,"50693":0,"50694":2677,"50695":-1,"50696":2649,"50697":0,"50698":2666,"50699":0,"50700":0,"50701":2371,"50702":0,"50703":2603,"50704":2124,"50705":23,"50706":0,"50707":0,"50708":-1,"50709":-1,"50710":-1,"50711":0,"50712":0,"50713":0,"50714":0,"50715":2393,"50716":-1,"50717":-1,"50718":-1,"50719":0,"50720":0,"50721":2609,"50722":-1,"50723":0,"50724":2167,"50725":-1,"50726":-1,"50727":0,"50728":0,"50729":0,"50730":-1,"50731":2622,"50732":0,"50733":2325,"50734":2569,"50735":2659,"50736":2616,"50737":141,"50738":-1,"50739":0,"50740":0,"50741":0,"50742":2071,"50743":-1,"50744":0,"50745":0,"50746":-1,"50747":317,"50748":-1,"50749":-1,"50750":0,"50751":-1,"50752":-1,"50753":2359,"50754":0,"50755":-1,"50756":2302,"50757":2200,"50758":80,"50759":0,"50760":2128,"50761":0,"50762":0,"50763":0,"50764":-1,"50765":-1,"50766":0,"50767":-1,"50768":362,"50769":2513,"50770":0,"50771":0,"50772":0,"50773":2327,"50774":2470,"50775":0,"50776":0,"50777":2262,"50778":2516,"50779":2405,"50780":0,"50781":-1,"50782":-1,"50783":-1,"50784":0,"50785":2124,"50786":-1,"50787":0,"50788":36,"50789":-1,"50790":-1,"50791":-1,"50792":2014,"50793":2205,"50794":0,"50795":-1,"50796":-1,"50797":0,"50798":0,"50799":0,"50800":2575,"50801":-1,"50802":0,"50803":0,"50804":-1,"50805":-1,"50806":-1,"50807":0,"50808":-1,"50809":0,"50810":0,"50811":0,"50812":-1,"50813":-1,"50814":0,"50815":2446,"50816":0,"50817":2578,"50818":0,"50819":0,"50820":2572,"50821":2303,"50822":0,"50823":0,"50824":0,"50825":-1,"50826":-1,"50827":2448,"50828":0,"50829":0,"50830":-1,"50831":-1,"50832":2021,"50833":-1,"50834":0,"50835":-1,"50836":107,"50837":2671,"50838":0,"50839":2579,"50840":6,"50841":0,"50842":0,"50843":0,"50844":2114,"50845":0,"50846":0,"50847":-1,"50848":0,"50849":0,"50850":0,"50851":0,"50852":2146,"50853":-1,"50854":0,"50855":0,"50856":-1,"50857":0,"50858":-1,"50859":0,"50860":-1,"50861":0,"50862":2327,"50863":0,"50864":0,"50865":-1,"50866":-1,"50867":199,"50868":-1,"50869":0,"50870":-1,"50871":0,"50872":0,"50873":2471,"50874":-1,"50875":0,"50876":0,"50877":0,"50878":0,"50879":-1,"50880":0,"50881":-1,"50882":0,"50883":0,"50884":0,"50885":2467,"50886":2328,"50887":2163,"50888":0,"50889":2341,"50890":-1,"50891":0,"50892":2120,"50893":2269,"50894":0,"50895":0,"50896":2464,"50897":0,"50898":0,"50899":0,"50900":-1,"50901":2658,"50902":0,"50903":-1,"50904":0,"50905":-1,"50906":0,"50907":2257,"50908":0,"50909":0,"50910":0,"50911":2007,"50912":2092,"50913":-1,"50914":-1,"50915":-1,"50916":0,"50917":-1,"50918":0,"50919":0,"50920":0,"50921":-1,"50922":-1,"50923":0,"50924":-1,"50925":-1,"50926":2192,"50927":0,"50928":-1,"50929":-1,"50930":-1,"50931":-1,"50932":0,"50933":0,"50934":2212,"50935":0,"50936":0,"50937":-1,"50938":0,"50939":2063,"50940":0,"50941":0,"50942":0,"50943":0,"50944":-1,"50945":-1,"50946":0,"50947":2024,"50948":0,"50949":-1,"50950":-1,"50951":0,"50952":0,"50953":281,"50954":0,"50955":462,"50956":-1,"50957":2033,"50958":0,"50959":-1,"50960":2514,"50961":0,"50962":0,"50963":0,"50964":-1,"50965":0,"50966":-1,"50967":0,"50968":0,"50969":-1,"50970":0,"50971":0,"50972":-1,"50973":2376,"50974":0,"50975":0,"50976":0,"50977":0,"50978":-1,"50979":-1,"50980":-1,"50981":2321,"50982":0,"50983":49,"50984":-1,"50985":2154,"50986":-1,"50987":0,"50988":2461,"50989":-1,"50990":-1,"50991":0,"50992":-1,"50993":0,"50994":0,"50995":0,"50996":8,"50997":0,"50998":-1,"50999":0,"51000":2374,"51001":-1,"51002":2537,"51003":-1,"51004":2346,"51005":2379,"51006":154,"51007":-1,"51008":0,"51009":0,"51010":-1,"51011":-1,"51012":0,"51013":2230,"51014":0,"51015":-1,"51016":0,"51017":0,"51018":2220,"51019":2591,"51020":0,"51021":-1,"51022":2109,"51023":0,"51024":2498,"51025":-1,"51026":2627,"51027":0,"51028":2260,"51029":-1,"51030":0,"51031":-1,"51032":0,"51033":350,"51034":-1,"51035":0,"51036":0,"51037":0,"51038":-1,"51039":-1,"51040":0,"51041":2274,"51042":547,"51043":0,"51044":-1,"51045":-1,"51046":0,"51047":0,"51048":0,"51049":-1,"51050":27,"51051":0,"51052":2429,"51053":2678,"51054":0,"51055":0,"51056":2164,"51057":2545,"51058":-1,"51059":-1,"51060":0,"51061":849,"51062":0,"51063":2214,"51064":0,"51065":-1,"51066":-1,"51067":0,"51068":0,"51069":0,"51070":2185,"51071":-1,"51072":2111,"51073":-1,"51074":0,"51075":-1,"51076":2472,"51077":0,"51078":2292,"51079":0,"51080":-1,"51081":0,"51082":-1,"51083":0,"51084":0,"51085":0,"51086":-1,"51087":2253,"51088":2661,"51089":567,"51090":0,"51091":-1,"51092":0,"51093":-1,"51094":-1,"51095":-1,"51096":2563,"51097":2480,"51098":-1,"51099":0,"51100":2198,"51101":0,"51102":0,"51103":2288,"51104":0,"51105":-1,"51106":0,"51107":2130,"51108":-1,"51109":833,"51110":2284,"51111":0,"51112":-1,"51113":2542,"51114":0,"51115":0,"51116":0,"51117":-1,"51118":0,"51119":-1,"51120":0,"51121":2211,"51122":0,"51123":0,"51124":0,"51125":2047,"51126":0,"51127":-1,"51128":0,"51129":0,"51130":2391,"51131":0,"51132":0,"51133":0,"51134":0,"51135":0,"51136":-1,"51137":0,"51138":3,"51139":2618,"51140":2515,"51141":2035,"51142":0,"51143":-1,"51144":0,"51145":0,"51146":0,"51147":-1,"51148":-1,"51149":0,"51150":-1,"51151":-1,"51152":-1,"51153":-1,"51154":2217,"51155":0,"51156":0,"51157":2595,"51158":0,"51159":-1,"51160":0,"51161":2325,"51162":-1,"51163":-1,"51164":2253,"51165":0,"51166":0,"51167":-1,"51168":-1,"51169":-1,"51170":0,"51171":2560,"51172":0,"51173":0,"51174":0,"51175":19,"51176":0,"51177":-1,"51178":-1,"51179":0,"51180":0,"51181":2132,"51182":2615,"51183":2101,"51184":-1,"51185":-1,"51186":0,"51187":-1,"51188":-1,"51189":2500,"51190":0,"51191":-1,"51192":0,"51193":0,"51194":2546,"51195":-1,"51196":2651,"51197":0,"51198":0,"51199":-1,"51200":-1,"51201":0,"51202":-1,"51203":0,"51204":0,"51205":0,"51206":2146,"51207":-1,"51208":2138,"51209":2206,"51210":0,"51211":2550,"51212":0,"51213":0,"51214":15,"51215":0,"51216":0,"51217":0,"51218":-1,"51219":-1,"51220":0,"51221":0,"51222":0,"51223":0,"51224":-1,"51225":75,"51226":0,"51227":0,"51228":-1,"51229":0,"51230":0,"51231":0,"51232":-1,"51233":0,"51234":-1,"51235":0,"51236":2565,"51237":-1,"51238":0,"51239":-1,"51240":2125,"51241":0,"51242":2598,"51243":0,"51244":0,"51245":0,"51246":0,"51247":-1,"51248":-1,"51249":-1,"51250":-1,"51251":0,"51252":-1,"51253":2576,"51254":-1,"51255":0,"51256":2192,"51257":0,"51258":0,"51259":0,"51260":0,"51261":0,"51262":0,"51263":0,"51264":-1,"51265":2445,"51266":2212,"51267":-1,"51268":0,"51269":2469,"51270":0,"51271":0,"51272":0,"51273":0,"51274":-1,"51275":2457,"51276":-1,"51277":-1,"51278":-1,"51279":-1,"51280":0,"51281":-1,"51282":-1,"51283":36,"51284":2612,"51285":2607,"51286":-1,"51287":0,"51288":0,"51289":0,"51290":-1,"51291":-1,"51292":0,"51293":2196,"51294":0,"51295":-1,"51296":2237,"51297":0,"51298":2560,"51299":-1,"51300":0,"51301":0,"51302":0,"51303":2186,"51304":0,"51305":0,"51306":-1,"51307":0,"51308":-1,"51309":0,"51310":0,"51311":0,"51312":2125,"51313":317,"51314":0,"51315":-1,"51316":2316,"51317":0,"51318":0,"51319":0,"51320":0,"51321":0,"51322":-1,"51323":0,"51324":-1,"51325":2177,"51326":0,"51327":-1,"51328":2609,"51329":0,"51330":2441,"51331":2051,"51332":0,"51333":2623,"51334":-1,"51335":0,"51336":-1,"51337":2081,"51338":0,"51339":2548,"51340":0,"51341":220,"51342":2638,"51343":2353,"51344":-1,"51345":0,"51346":0,"51347":-1,"51348":-1,"51349":0,"51350":2491,"51351":-1,"51352":0,"51353":-1,"51354":2306,"51355":2552,"51356":0,"51357":0,"51358":2398,"51359":2430,"51360":-1,"51361":-1,"51362":0,"51363":-1,"51364":2059,"51365":2672,"51366":2544,"51367":0,"51368":0,"51369":0,"51370":0,"51371":0,"51372":2554,"51373":293,"51374":136,"51375":-1,"51376":0,"51377":0,"51378":2262,"51379":-1,"51380":0,"51381":0,"51382":-1,"51383":0,"51384":-1,"51385":-1,"51386":0,"51387":0,"51388":0,"51389":0,"51390":0,"51391":-1,"51392":0,"51393":0,"51394":2448,"51395":0,"51396":0,"51397":2124,"51398":0,"51399":-1,"51400":-1,"51401":-1,"51402":-1,"51403":2352,"51404":0,"51405":2472,"51406":6,"51407":-1,"51408":-1,"51409":-1,"51410":-1,"51411":0,"51412":2255,"51413":0,"51414":-1,"51415":11,"51416":0,"51417":0,"51418":2219,"51419":0,"51420":0,"51421":-1,"51422":0,"51423":2608,"51424":-1,"51425":0,"51426":-1,"51427":-1,"51428":859,"51429":-1,"51430":2637,"51431":0,"51432":-1,"51433":-1,"51434":-1,"51435":-1,"51436":-1,"51437":2277,"51438":-1,"51439":0,"51440":2069,"51441":0,"51442":2256,"51443":-1,"51444":0,"51445":0,"51446":-1,"51447":-1,"51448":0,"51449":0,"51450":-1,"51451":0,"51452":0,"51453":0,"51454":2023,"51455":0,"51456":-1,"51457":-1,"51458":0,"51459":-1,"51460":-1,"51461":0,"51462":0,"51463":0,"51464":-1,"51465":0,"51466":2196,"51467":0,"51468":-1,"51469":-1,"51470":663,"51471":-1,"51472":-1,"51473":-1,"51474":-1,"51475":0,"51476":0,"51477":39,"51478":0,"51479":2183,"51480":0,"51481":-1,"51482":209,"51483":0,"51484":-1,"51485":-1,"51486":0,"51487":0,"51488":2624,"51489":-1,"51490":1999,"51491":-1,"51492":-1,"51493":0,"51494":0,"51495":0,"51496":0,"51497":0,"51498":0,"51499":0,"51500":-1,"51501":0,"51502":0,"51503":2023,"51504":2190,"51505":0,"51506":0,"51507":-1,"51508":0,"51509":0,"51510":475,"51511":-1,"51512":2493,"51513":-1,"51514":584,"51515":-1,"51516":2521,"51517":0,"51518":-1,"51519":0,"51520":-1,"51521":0,"51522":-1,"51523":0,"51524":-1,"51525":-1,"51526":0,"51527":-1,"51528":0,"51529":-1,"51530":2607,"51531":0,"51532":-1,"51533":-1,"51534":0,"51535":5,"51536":-1,"51537":154,"51538":-1,"51539":0,"51540":2252,"51541":-1,"51542":0,"51543":0,"51544":0,"51545":0,"51546":0,"51547":0,"51548":0,"51549":2517,"51550":2318,"51551":617,"51552":2299,"51553":284,"51554":-1,"51555":-1,"51556":2589,"51557":-1,"51558":2092,"51559":-1,"51560":0,"51561":2159,"51562":0,"51563":0,"51564":-1,"51565":639,"51566":0,"51567":-1,"51568":2664,"51569":0,"51570":-1,"51571":2180,"51572":0,"51573":0,"51574":0,"51575":0,"51576":0,"51577":2220,"51578":0,"51579":0,"51580":833,"51581":-1,"51582":0,"51583":0,"51584":-1,"51585":2255,"51586":0,"51587":0,"51588":0,"51589":0,"51590":-1,"51591":0,"51592":0,"51593":-1,"51594":-1,"51595":0,"51596":2308,"51597":0,"51598":0,"51599":-1,"51600":-1,"51601":936,"51602":-1,"51603":0,"51604":-1,"51605":0,"51606":0,"51607":0,"51608":0,"51609":0,"51610":0,"51611":0,"51612":0,"51613":-1,"51614":0,"51615":2633,"51616":-1,"51617":-1,"51618":0,"51619":0,"51620":0,"51621":2295,"51622":0,"51623":0,"51624":0,"51625":2636,"51626":0,"51627":907,"51628":2188,"51629":-1,"51630":2440,"51631":0,"51632":2674,"51633":-1,"51634":0,"51635":0,"51636":-1,"51637":0,"51638":2201,"51639":-1,"51640":2422,"51641":2517,"51642":-1,"51643":-1,"51644":0,"51645":0,"51646":2269,"51647":0,"51648":-1,"51649":0,"51650":-1,"51651":2334,"51652":2298,"51653":0,"51654":0,"51655":0,"51656":0,"51657":0,"51658":0,"51659":0,"51660":2320,"51661":-1,"51662":-1,"51663":0,"51664":0,"51665":-1,"51666":0,"51667":0,"51668":-1,"51669":-1,"51670":0,"51671":0,"51672":-1,"51673":-1,"51674":0,"51675":0,"51676":2120,"51677":0,"51678":0,"51679":-1,"51680":0,"51681":0,"51682":0,"51683":0,"51684":2673,"51685":0,"51686":0,"51687":2072,"51688":-1,"51689":-1,"51690":-1,"51691":0,"51692":0,"51693":0,"51694":0,"51695":0,"51696":-1,"51697":2676,"51698":2119,"51699":0,"51700":0,"51701":0,"51702":0,"51703":2471,"51704":0,"51705":0,"51706":-1,"51707":-1,"51708":0,"51709":-1,"51710":0,"51711":2538,"51712":-1,"51713":-1,"51714":0,"51715":-1,"51716":65,"51717":-1,"51718":0,"51719":2518,"51720":2291,"51721":0,"51722":-1,"51723":0,"51724":0,"51725":0,"51726":0,"51727":0,"51728":0,"51729":-1,"51730":-1,"51731":2262,"51732":0,"51733":0,"51734":0,"51735":0,"51736":0,"51737":2374,"51738":2308,"51739":300,"51740":0,"51741":0,"51742":-1,"51743":317,"51744":0,"51745":0,"51746":-1,"51747":2431,"51748":-1,"51749":2399,"51750":-1,"51751":0,"51752":0,"51753":-1,"51754":0,"51755":0,"51756":2046,"51757":0,"51758":0,"51759":-1,"51760":0,"51761":0,"51762":2135,"51763":2369,"51764":2274,"51765":-1,"51766":0,"51767":0,"51768":0,"51769":0,"51770":0,"51771":0,"51772":-1,"51773":0,"51774":0,"51775":28,"51776":0,"51777":0,"51778":0,"51779":0,"51780":2467,"51781":0,"51782":0,"51783":-1,"51784":0,"51785":2251,"51786":0,"51787":0,"51788":2379,"51789":-1,"51790":1998,"51791":-1,"51792":-1,"51793":2492,"51794":0,"51795":2000,"51796":2606,"51797":-1,"51798":0,"51799":620,"51800":0,"51801":2275,"51802":2416,"51803":0,"51804":0,"51805":0,"51806":-1,"51807":0,"51808":0,"51809":-1,"51810":-1,"51811":-1,"51812":-1,"51813":2114,"51814":2503,"51815":-1,"51816":0,"51817":-1,"51818":0,"51819":-1,"51820":0,"51821":0,"51822":0,"51823":-1,"51824":0,"51825":0,"51826":-1,"51827":0,"51828":126,"51829":-1,"51830":2630,"51831":-1,"51832":-1,"51833":2144,"51834":2181,"51835":-1,"51836":0,"51837":0,"51838":0,"51839":2304,"51840":0,"51841":0,"51842":2471,"51843":-1,"51844":0,"51845":0,"51846":0,"51847":2534,"51848":2312,"51849":-1,"51850":2643,"51851":0,"51852":0,"51853":0,"51854":2445,"51855":0,"51856":-1,"51857":-1,"51858":-1,"51859":0,"51860":-1,"51861":0,"51862":2520,"51863":514,"51864":-1,"51865":0,"51866":-1,"51867":0,"51868":2051,"51869":-1,"51870":2460,"51871":2560,"51872":0,"51873":345,"51874":0,"51875":-1,"51876":2456,"51877":0,"51878":0,"51879":2239,"51880":0,"51881":-1,"51882":0,"51883":0,"51884":2312,"51885":0,"51886":0,"51887":0,"51888":0,"51889":612,"51890":-1,"51891":-1,"51892":-1,"51893":2274,"51894":-1,"51895":0,"51896":-1,"51897":0,"51898":0,"51899":0,"51900":0,"51901":2576,"51902":2086,"51903":-1,"51904":1993,"51905":-1,"51906":-1,"51907":2295,"51908":-1,"51909":0,"51910":0,"51911":0,"51912":-1,"51913":-1,"51914":2506,"51915":0,"51916":787,"51917":0,"51918":2142,"51919":2475,"51920":0,"51921":-1,"51922":2664,"51923":-1,"51924":0,"51925":0,"51926":0,"51927":2042,"51928":-1,"51929":-1,"51930":0,"51931":-1,"51932":-1,"51933":0,"51934":0,"51935":0,"51936":2520,"51937":156,"51938":2079,"51939":2497,"51940":0,"51941":0,"51942":2473,"51943":-1,"51944":2353,"51945":-1,"51946":0,"51947":0,"51948":0,"51949":0,"51950":4,"51951":0,"51952":0,"51953":0,"51954":0,"51955":2489,"51956":2615,"51957":-1,"51958":0,"51959":2089,"51960":-1,"51961":-1,"51962":-1,"51963":104,"51964":2155,"51965":-1,"51966":-1,"51967":0,"51968":0,"51969":0,"51970":0,"51971":2164,"51972":0,"51973":0,"51974":0,"51975":2633,"51976":-1,"51977":0,"51978":0,"51979":0,"51980":0,"51981":2271,"51982":0,"51983":0,"51984":-1,"51985":0,"51986":2313,"51987":-1,"51988":0,"51989":0,"51990":-1,"51991":0,"51992":-1,"51993":0,"51994":-1,"51995":0,"51996":0,"51997":-1,"51998":0,"51999":333,"52000":-1,"52001":2596,"52002":0,"52003":2614,"52004":0,"52005":2079,"52006":0,"52007":2223,"52008":-1,"52009":0,"52010":2062,"52011":-1,"52012":2140,"52013":0,"52014":-1,"52015":-1,"52016":2654,"52017":0,"52018":-1,"52019":-1,"52020":-1,"52021":-1,"52022":0,"52023":2516,"52024":420,"52025":2632,"52026":0,"52027":2076,"52028":0,"52029":-1,"52030":0,"52031":0,"52032":-1,"52033":0,"52034":0,"52035":0,"52036":0,"52037":0,"52038":0,"52039":0,"52040":0,"52041":0,"52042":0,"52043":0,"52044":0,"52045":0,"52046":2045,"52047":-1,"52048":154,"52049":2610,"52050":2132,"52051":0,"52052":2258,"52053":2305,"52054":-1,"52055":0,"52056":2579,"52057":0,"52058":2375,"52059":0,"52060":0,"52061":0,"52062":2371,"52063":0,"52064":0,"52065":0,"52066":0,"52067":0,"52068":-1,"52069":0,"52070":0,"52071":0,"52072":0,"52073":2152,"52074":0,"52075":0,"52076":-1,"52077":0,"52078":0,"52079":0,"52080":2167,"52081":2361,"52082":-1,"52083":0,"52084":0,"52085":0,"52086":-1,"52087":-1,"52088":0,"52089":2471,"52090":-1,"52091":0,"52092":-1,"52093":617,"52094":669,"52095":-1,"52096":0,"52097":-1,"52098":2404,"52099":2257,"52100":0,"52101":0,"52102":-1,"52103":2304,"52104":2598,"52105":0,"52106":-1,"52107":-1,"52108":2580,"52109":-1,"52110":0,"52111":0,"52112":-1,"52113":-1,"52114":0,"52115":-1,"52116":-1,"52117":0,"52118":-1,"52119":0,"52120":2157,"52121":-1,"52122":-1,"52123":0,"52124":2362,"52125":2548,"52126":0,"52127":0,"52128":0,"52129":0,"52130":308,"52131":-1,"52132":0,"52133":-1,"52134":-1,"52135":-1,"52136":0,"52137":0,"52138":-1,"52139":-1,"52140":0,"52141":0,"52142":2305,"52143":0,"52144":0,"52145":-1,"52146":-1,"52147":0,"52148":-1,"52149":0,"52150":2667,"52151":120,"52152":2377,"52153":-1,"52154":-1,"52155":0,"52156":199,"52157":0,"52158":150,"52159":-1,"52160":-1,"52161":2604,"52162":0,"52163":0,"52164":0,"52165":0,"52166":359,"52167":0,"52168":-1,"52169":-1,"52170":-1,"52171":2498,"52172":0,"52173":-1,"52174":2077,"52175":0,"52176":397,"52177":0,"52178":-1,"52179":-1,"52180":2343,"52181":-1,"52182":0,"52183":2407,"52184":-1,"52185":0,"52186":2227,"52187":0,"52188":0,"52189":2214,"52190":0,"52191":-1,"52192":2544,"52193":0,"52194":-1,"52195":2205,"52196":2603,"52197":0,"52198":312,"52199":0,"52200":0,"52201":0,"52202":547,"52203":2623,"52204":-1,"52205":-1,"52206":0,"52207":0,"52208":237,"52209":-1,"52210":-1,"52211":0,"52212":2011,"52213":0,"52214":0,"52215":0,"52216":0,"52217":2553,"52218":0,"52219":-1,"52220":-1,"52221":0,"52222":-1,"52223":0,"52224":2354,"52225":0,"52226":0,"52227":0,"52228":219,"52229":0,"52230":2562,"52231":0,"52232":0,"52233":-1,"52234":0,"52235":0,"52236":2226,"52237":-1,"52238":-1,"52239":0,"52240":0,"52241":0,"52242":280,"52243":0,"52244":0,"52245":2119,"52246":0,"52247":0,"52248":0,"52249":2618,"52250":-1,"52251":0,"52252":-1,"52253":-1,"52254":-1,"52255":-1,"52256":0,"52257":909,"52258":0,"52259":2455,"52260":-1,"52261":2205,"52262":2012,"52263":-1,"52264":0,"52265":-1,"52266":0,"52267":0,"52268":-1,"52269":0,"52270":-1,"52271":98,"52272":0,"52273":67,"52274":0,"52275":-1,"52276":0,"52277":0,"52278":-1,"52279":0,"52280":0,"52281":2638,"52282":2238,"52283":0,"52284":0,"52285":2143,"52286":-1,"52287":0,"52288":2115,"52289":11,"52290":0,"52291":-1,"52292":2198,"52293":0,"52294":0,"52295":-1,"52296":2413,"52297":2030,"52298":2067,"52299":2201,"52300":706,"52301":2310,"52302":-1,"52303":0,"52304":0,"52305":0,"52306":2571,"52307":2144,"52308":1,"52309":0,"52310":49,"52311":133,"52312":2101,"52313":0,"52314":0,"52315":2266,"52316":-1,"52317":0,"52318":-1,"52319":0,"52320":0,"52321":2086,"52322":-1,"52323":-1,"52324":0,"52325":0,"52326":0,"52327":0,"52328":2584,"52329":0,"52330":0,"52331":0,"52332":-1,"52333":325,"52334":2129,"52335":0,"52336":-1,"52337":0,"52338":2118,"52339":2458,"52340":170,"52341":0,"52342":-1,"52343":0,"52344":0,"52345":2341,"52346":2629,"52347":0,"52348":-1,"52349":38,"52350":884,"52351":0,"52352":2241,"52353":-1,"52354":-1,"52355":2139,"52356":-1,"52357":0,"52358":0,"52359":-1,"52360":0,"52361":2442,"52362":0,"52363":0,"52364":0,"52365":-1,"52366":-1,"52367":154,"52368":2228,"52369":2291,"52370":-1,"52371":0,"52372":-1,"52373":0,"52374":0,"52375":2474,"52376":0,"52377":0,"52378":667,"52379":-1,"52380":0,"52381":0,"52382":0,"52383":2113,"52384":-1,"52385":2206,"52386":2150,"52387":0,"52388":-1,"52389":0,"52390":2138,"52391":-1,"52392":2401,"52393":0,"52394":-1,"52395":0,"52396":422,"52397":0,"52398":0,"52399":0,"52400":0,"52401":0,"52402":0,"52403":0,"52404":-1,"52405":-1,"52406":209,"52407":0,"52408":2104,"52409":2215,"52410":2360,"52411":0,"52412":-1,"52413":0,"52414":0,"52415":0,"52416":-1,"52417":2498,"52418":2550,"52419":14,"52420":-1,"52421":0,"52422":0,"52423":0,"52424":2156,"52425":0,"52426":0,"52427":0,"52428":2460,"52429":2529,"52430":-1,"52431":0,"52432":-1,"52433":-1,"52434":-1,"52435":0,"52436":-1,"52437":-1,"52438":2093,"52439":0,"52440":-1,"52441":2013,"52442":-1,"52443":-1,"52444":-1,"52445":-1,"52446":-1,"52447":0,"52448":2437,"52449":2511,"52450":-1,"52451":0,"52452":-1,"52453":-1,"52454":0,"52455":-1,"52456":2395,"52457":2521,"52458":0,"52459":126,"52460":-1,"52461":0,"52462":0,"52463":0,"52464":-1,"52465":0,"52466":0,"52467":-1,"52468":-1,"52469":2220,"52470":0,"52471":0,"52472":-1,"52473":168,"52474":-1,"52475":0,"52476":-1,"52477":2156,"52478":-1,"52479":-1,"52480":0,"52481":-1,"52482":0,"52483":0,"52484":0,"52485":2044,"52486":2385,"52487":-1,"52488":0,"52489":0,"52490":0,"52491":2161,"52492":2317,"52493":45,"52494":-1,"52495":2469,"52496":-1,"52497":0,"52498":2015,"52499":-1,"52500":-1,"52501":-1,"52502":0,"52503":-1,"52504":2586,"52505":0,"52506":0,"52507":0,"52508":0,"52509":0,"52510":-1,"52511":0,"52512":0,"52513":10,"52514":0,"52515":2396,"52516":2512,"52517":0,"52518":0,"52519":2205,"52520":0,"52521":2421,"52522":-1,"52523":-1,"52524":-1,"52525":2493,"52526":0,"52527":-1,"52528":0,"52529":0,"52530":0,"52531":0,"52532":669,"52533":-1,"52534":0,"52535":2356,"52536":0,"52537":2548,"52538":0,"52539":0,"52540":2207,"52541":0,"52542":0,"52543":-1,"52544":2496,"52545":0,"52546":0,"52547":0,"52548":2491,"52549":-1,"52550":-1,"52551":-1,"52552":0,"52553":-1,"52554":0,"52555":0,"52556":-1,"52557":0,"52558":-1,"52559":303,"52560":0,"52561":-1,"52562":2510,"52563":0,"52564":0,"52565":2550,"52566":0,"52567":2577,"52568":0,"52569":2533,"52570":-1,"52571":-1,"52572":2549,"52573":-1,"52574":-1,"52575":-1,"52576":-1,"52577":-1,"52578":-1,"52579":-1,"52580":2469,"52581":0,"52582":0,"52583":2329,"52584":0,"52585":-1,"52586":2571,"52587":0,"52588":-1,"52589":11,"52590":-1,"52591":0,"52592":-1,"52593":2304,"52594":0,"52595":0,"52596":2000,"52597":-1,"52598":-1,"52599":2131,"52600":0,"52601":2484,"52602":0,"52603":-1,"52604":2156,"52605":0,"52606":-1,"52607":0,"52608":0,"52609":0,"52610":2331,"52611":0,"52612":0,"52613":0,"52614":0,"52615":-1,"52616":-1,"52617":0,"52618":0,"52619":0,"52620":0,"52621":-1,"52622":1991,"52623":0,"52624":0,"52625":0,"52626":0,"52627":0,"52628":-1,"52629":0,"52630":2602,"52631":0,"52632":0,"52633":0,"52634":-1,"52635":-1,"52636":2341,"52637":-1,"52638":-1,"52639":-1,"52640":0,"52641":-1,"52642":0,"52643":2131,"52644":0,"52645":0,"52646":826,"52647":-1,"52648":38,"52649":2440,"52650":2327,"52651":2596,"52652":0,"52653":-1,"52654":-1,"52655":0,"52656":0,"52657":2526,"52658":2594,"52659":0,"52660":-1,"52661":-1,"52662":0,"52663":0,"52664":0,"52665":-1,"52666":2634,"52667":0,"52668":-1,"52669":0,"52670":0,"52671":2028,"52672":0,"52673":0,"52674":-1,"52675":0,"52676":449,"52677":2070,"52678":0,"52679":-1,"52680":0,"52681":0,"52682":-1,"52683":0,"52684":0,"52685":-1,"52686":0,"52687":0,"52688":0,"52689":0,"52690":-1,"52691":-1,"52692":0,"52693":0,"52694":2370,"52695":0,"52696":0,"52697":2465,"52698":2431,"52699":-1,"52700":0,"52701":0,"52702":0,"52703":884,"52704":0,"52705":-1,"52706":-1,"52707":2387,"52708":0,"52709":-1,"52710":0,"52711":-1,"52712":2522,"52713":0,"52714":0,"52715":-1,"52716":22,"52717":-1,"52718":-1,"52719":2351,"52720":-1,"52721":2384,"52722":0,"52723":0,"52724":-1,"52725":0,"52726":15,"52727":0,"52728":2190,"52729":2063,"52730":0,"52731":-1,"52732":2468,"52733":0,"52734":2296,"52735":0,"52736":-1,"52737":0,"52738":2403,"52739":-1,"52740":0,"52741":-1,"52742":-1,"52743":-1,"52744":0,"52745":0,"52746":-1,"52747":2266,"52748":-1,"52749":7,"52750":0,"52751":-1,"52752":0,"52753":2650,"52754":-1,"52755":2160,"52756":-1,"52757":894,"52758":-1,"52759":0,"52760":-1,"52761":0,"52762":-1,"52763":-1,"52764":0,"52765":0,"52766":-1,"52767":-1,"52768":-1,"52769":2315,"52770":0,"52771":0,"52772":472,"52773":0,"52774":-1,"52775":-1,"52776":0,"52777":-1,"52778":-1,"52779":-1,"52780":2270,"52781":-1,"52782":-1,"52783":0,"52784":-1,"52785":-1,"52786":2015,"52787":-1,"52788":2570,"52789":0,"52790":0,"52791":2489,"52792":-1,"52793":0,"52794":1994,"52795":2130,"52796":0,"52797":-1,"52798":0,"52799":-1,"52800":0,"52801":2659,"52802":2531,"52803":0,"52804":-1,"52805":0,"52806":2504,"52807":2525,"52808":0,"52809":0,"52810":-1,"52811":2414,"52812":0,"52813":2264,"52814":2256,"52815":-1,"52816":0,"52817":0,"52818":0,"52819":0,"52820":0,"52821":559,"52822":483,"52823":2177,"52824":2117,"52825":0,"52826":-1,"52827":0,"52828":777,"52829":0,"52830":2116,"52831":0,"52832":0,"52833":2385,"52834":0,"52835":0,"52836":0,"52837":-1,"52838":2050,"52839":-1,"52840":-1,"52841":2135,"52842":0,"52843":-1,"52844":2042,"52845":-1,"52846":2390,"52847":0,"52848":0,"52849":2042,"52850":284,"52851":-1,"52852":0,"52853":0,"52854":0,"52855":-1,"52856":0,"52857":2000,"52858":461,"52859":-1,"52860":145,"52861":2073,"52862":0,"52863":0,"52864":2637,"52865":-1,"52866":264,"52867":-1,"52868":-1,"52869":-1,"52870":2546,"52871":0,"52872":1,"52873":25,"52874":0,"52875":-1,"52876":0,"52877":-1,"52878":-1,"52879":2537,"52880":2129,"52881":-1,"52882":0,"52883":0,"52884":-1,"52885":-1,"52886":2599,"52887":0,"52888":-1,"52889":0,"52890":0,"52891":0,"52892":2070,"52893":0,"52894":-1,"52895":-1,"52896":2417,"52897":-1,"52898":2147,"52899":2464,"52900":-1,"52901":-1,"52902":0,"52903":0,"52904":0,"52905":-1,"52906":-1,"52907":7,"52908":2454,"52909":0,"52910":2455,"52911":-1,"52912":2591,"52913":0,"52914":-1,"52915":2464,"52916":0,"52917":0,"52918":0,"52919":2559,"52920":-1,"52921":-1,"52922":0,"52923":0,"52924":0,"52925":0,"52926":-1,"52927":0,"52928":2593,"52929":0,"52930":0,"52931":0,"52932":-1,"52933":-1,"52934":-1,"52935":-1,"52936":-1,"52937":942,"52938":2012,"52939":0,"52940":0,"52941":-1,"52942":0,"52943":0,"52944":826,"52945":-1,"52946":0,"52947":0,"52948":-1,"52949":0,"52950":0,"52951":-1,"52952":0,"52953":0,"52954":-1,"52955":-1,"52956":0,"52957":2620,"52958":2211,"52959":2174,"52960":2187,"52961":-1,"52962":0,"52963":-1,"52964":2157,"52965":0,"52966":0,"52967":-1,"52968":0,"52969":2229,"52970":0,"52971":0,"52972":2280,"52973":-1,"52974":0,"52975":-1,"52976":-1,"52977":2157,"52978":-1,"52979":0,"52980":-1,"52981":2675,"52982":2402,"52983":-1,"52984":0,"52985":-1,"52986":-1,"52987":2582,"52988":2656,"52989":2031,"52990":0,"52991":0,"52992":0,"52993":-1,"52994":0,"52995":0,"52996":0,"52997":-1,"52998":2113,"52999":2676,"53000":0,"53001":-1,"53002":-1,"53003":-1,"53004":0,"53005":-1,"53006":2180,"53007":-1,"53008":-1,"53009":-1,"53010":0,"53011":0,"53012":0,"53013":2435,"53014":2561,"53015":0,"53016":-1,"53017":2589,"53018":-1,"53019":-1,"53020":-1,"53021":2473,"53022":2437,"53023":0,"53024":2579,"53025":2112,"53026":-1,"53027":2292,"53028":0,"53029":-1,"53030":2294,"53031":0,"53032":-1,"53033":849,"53034":0,"53035":209,"53036":0,"53037":0,"53038":0,"53039":0,"53040":0,"53041":0,"53042":0,"53043":-1,"53044":2264,"53045":2308,"53046":153,"53047":0,"53048":0,"53049":0,"53050":2595,"53051":-1,"53052":0,"53053":0,"53054":0,"53055":2333,"53056":-1,"53057":0,"53058":0,"53059":0,"53060":2063,"53061":578,"53062":-1,"53063":2135,"53064":0,"53065":-1,"53066":-1,"53067":2649,"53068":-1,"53069":-1,"53070":0,"53071":620,"53072":0,"53073":-1,"53074":-1,"53075":2184,"53076":2154,"53077":-1,"53078":-1,"53079":0,"53080":-1,"53081":-1,"53082":0,"53083":0,"53084":0,"53085":0,"53086":0,"53087":0,"53088":-1,"53089":0,"53090":-1,"53091":-1,"53092":-1,"53093":-1,"53094":0,"53095":0,"53096":219,"53097":2633,"53098":2005,"53099":0,"53100":-1,"53101":0,"53102":-1,"53103":67,"53104":0,"53105":0,"53106":2354,"53107":0,"53108":0,"53109":137,"53110":0,"53111":261,"53112":0,"53113":0,"53114":-1,"53115":0,"53116":-1,"53117":2665,"53118":-1,"53119":0,"53120":2208,"53121":-1,"53122":0,"53123":329,"53124":2352,"53125":0,"53126":0,"53127":0,"53128":2343,"53129":0,"53130":2022,"53131":0,"53132":-1,"53133":0,"53134":0,"53135":2025,"53136":317,"53137":2225,"53138":0,"53139":-1,"53140":2675,"53141":359,"53142":0,"53143":0,"53144":2088,"53145":0,"53146":0,"53147":2466,"53148":2531,"53149":0,"53150":246,"53151":-1,"53152":-1,"53153":-1,"53154":0,"53155":64,"53156":0,"53157":2246,"53158":2377,"53159":-1,"53160":0,"53161":2078,"53162":-1,"53163":-1,"53164":2444,"53165":2095,"53166":0,"53167":2595,"53168":-1,"53169":0,"53170":0,"53171":0,"53172":-1,"53173":0,"53174":0,"53175":0,"53176":837,"53177":2249,"53178":-1,"53179":0,"53180":-1,"53181":0,"53182":0,"53183":-1,"53184":0,"53185":0,"53186":0,"53187":2394,"53188":-1,"53189":0,"53190":-1,"53191":-1,"53192":2379,"53193":0,"53194":-1,"53195":2518,"53196":-1,"53197":-1,"53198":0,"53199":0,"53200":572,"53201":-1,"53202":0,"53203":-1,"53204":2080,"53205":0,"53206":2355,"53207":-1,"53208":-1,"53209":0,"53210":0,"53211":0,"53212":0,"53213":0,"53214":-1,"53215":2647,"53216":0,"53217":-1,"53218":2608,"53219":907,"53220":-1,"53221":520,"53222":-1,"53223":617,"53224":0,"53225":0,"53226":-1,"53227":0,"53228":0,"53229":2678,"53230":-1,"53231":-1,"53232":0,"53233":-1,"53234":2318,"53235":2118,"53236":0,"53237":0,"53238":0,"53239":0,"53240":0,"53241":0,"53242":0,"53243":0,"53244":2469,"53245":0,"53246":-1,"53247":0,"53248":0,"53249":0,"53250":-1,"53251":0,"53252":0,"53253":-1,"53254":-1,"53255":0,"53256":-1,"53257":0,"53258":-1,"53259":-1,"53260":0,"53261":2466,"53262":0,"53263":2065,"53264":0,"53265":0,"53266":2169,"53267":0,"53268":0,"53269":0,"53270":-1,"53271":0,"53272":2198,"53273":0,"53274":0,"53275":0,"53276":2278,"53277":0,"53278":-1,"53279":199,"53280":2143,"53281":-1,"53282":0,"53283":0,"53284":-1,"53285":-1,"53286":2248,"53287":-1,"53288":0,"53289":-1,"53290":0,"53291":0,"53292":-1,"53293":0,"53294":404,"53295":141,"53296":508,"53297":0,"53298":2616,"53299":2062,"53300":-1,"53301":2077,"53302":0,"53303":-1,"53304":-1,"53305":0,"53306":0,"53307":-1,"53308":-1,"53309":0,"53310":-1,"53311":0,"53312":-1,"53313":-1,"53314":-1,"53315":0,"53316":0,"53317":2092,"53318":-1,"53319":-1,"53320":-1,"53321":0,"53322":0,"53323":-1,"53324":0,"53325":-1,"53326":-1,"53327":2294,"53328":-1,"53329":2550,"53330":2171,"53331":-1,"53332":2675,"53333":0,"53334":0,"53335":2196,"53336":0,"53337":2216,"53338":-1,"53339":0,"53340":0,"53341":2378,"53342":0,"53343":0,"53344":-1,"53345":0,"53346":2334,"53347":-1,"53348":2407,"53349":-1,"53350":2548,"53351":0,"53352":2007,"53353":0,"53354":0,"53355":126,"53356":0,"53357":-1,"53358":0,"53359":2540,"53360":0,"53361":-1,"53362":0,"53363":0,"53364":-1,"53365":-1,"53366":0,"53367":0,"53368":2650,"53369":0,"53370":0,"53371":-1,"53372":2095,"53373":2392,"53374":2605,"53375":0,"53376":472,"53377":0,"53378":25,"53379":-1,"53380":0,"53381":0,"53382":2068,"53383":2257,"53384":0,"53385":-1,"53386":0,"53387":0,"53388":0,"53389":0,"53390":-1,"53391":0,"53392":0,"53393":0,"53394":884,"53395":0,"53396":0,"53397":0,"53398":0,"53399":0,"53400":0,"53401":0,"53402":-1,"53403":0,"53404":-1,"53405":-1,"53406":2386,"53407":0,"53408":-1,"53409":0,"53410":-1,"53411":2021,"53412":-1,"53413":-1,"53414":0,"53415":0,"53416":0,"53417":2459,"53418":0,"53419":0,"53420":2048,"53421":2413,"53422":2222,"53423":0,"53424":0,"53425":2607,"53426":2242,"53427":-1,"53428":0,"53429":0,"53430":-1,"53431":0,"53432":2197,"53433":-1,"53434":0,"53435":-1,"53436":2441,"53437":-1,"53438":449,"53439":-1,"53440":0,"53441":-1,"53442":0,"53443":2489,"53444":0,"53445":-1,"53446":0,"53447":-1,"53448":0,"53449":0,"53450":0,"53451":0,"53452":0,"53453":0,"53454":0,"53455":2364,"53456":0,"53457":187,"53458":0,"53459":-1,"53460":0,"53461":0,"53462":-1,"53463":2352,"53464":0,"53465":2101,"53466":-1,"53467":2360,"53468":0,"53469":2562,"53470":0,"53471":0,"53472":2288,"53473":2674,"53474":0,"53475":2052,"53476":-1,"53477":2531,"53478":0,"53479":-1,"53480":2321,"53481":0,"53482":0,"53483":0,"53484":0,"53485":2410,"53486":150,"53487":0,"53488":0,"53489":2111,"53490":0,"53491":-1,"53492":2190,"53493":0,"53494":-1,"53495":909,"53496":0,"53497":2039,"53498":0,"53499":0,"53500":-1,"53501":-1,"53502":2204,"53503":2244,"53504":-1,"53505":475,"53506":0,"53507":2093,"53508":0,"53509":5,"53510":-1,"53511":0,"53512":0,"53513":0,"53514":449,"53515":2659,"53516":-1,"53517":2444,"53518":0,"53519":2577,"53520":2128,"53521":-1,"53522":0,"53523":-1,"53524":0,"53525":0,"53526":0,"53527":0,"53528":2544,"53529":0,"53530":0,"53531":2329,"53532":0,"53533":2233,"53534":-1,"53535":7,"53536":2280,"53537":-1,"53538":0,"53539":-1,"53540":0,"53541":-1,"53542":0,"53543":-1,"53544":2536,"53545":-1,"53546":-1,"53547":-1,"53548":0,"53549":-1,"53550":-1,"53551":-1,"53552":341,"53553":-1,"53554":-1,"53555":0,"53556":0,"53557":-1,"53558":0,"53559":29,"53560":0,"53561":-1,"53562":-1,"53563":0,"53564":-1,"53565":21,"53566":793,"53567":-1,"53568":0,"53569":0,"53570":-1,"53571":2274,"53572":0,"53573":2604,"53574":-1,"53575":-1,"53576":0,"53577":0,"53578":0,"53579":0,"53580":0,"53581":0,"53582":0,"53583":-1,"53584":2352,"53585":2588,"53586":-1,"53587":-1,"53588":0,"53589":2142,"53590":483,"53591":524,"53592":-1,"53593":0,"53594":-1,"53595":2098,"53596":0,"53597":2053,"53598":2034,"53599":2311,"53600":0,"53601":0,"53602":-1,"53603":0,"53604":0,"53605":0,"53606":0,"53607":0,"53608":-1,"53609":0,"53610":0,"53611":2351,"53612":2365,"53613":2042,"53614":0,"53615":-1,"53616":2516,"53617":-1,"53618":2096,"53619":-1,"53620":0,"53621":-1,"53622":-1,"53623":0,"53624":404,"53625":301,"53626":2143,"53627":2308,"53628":0,"53629":2285,"53630":-1,"53631":0,"53632":2577,"53633":2536,"53634":-1,"53635":0,"53636":-1,"53637":-1,"53638":-1,"53639":0,"53640":-1,"53641":0,"53642":0,"53643":0,"53644":2625,"53645":0,"53646":2653,"53647":0,"53648":0,"53649":-1,"53650":-1,"53651":136,"53652":2163,"53653":793,"53654":0,"53655":0,"53656":0,"53657":2451,"53658":2640,"53659":-1,"53660":67,"53661":2255,"53662":2080,"53663":455,"53664":0,"53665":-1,"53666":0,"53667":0,"53668":2561,"53669":2502,"53670":2139,"53671":0,"53672":0,"53673":0,"53674":-1,"53675":0,"53676":102,"53677":0,"53678":0,"53679":245,"53680":-1,"53681":2359,"53682":-1,"53683":2165,"53684":0,"53685":2250,"53686":2149,"53687":2280,"53688":0,"53689":-1,"53690":0,"53691":0,"53692":0,"53693":-1,"53694":0,"53695":0,"53696":2365,"53697":-1,"53698":2542,"53699":0,"53700":2298,"53701":2171,"53702":0,"53703":0,"53704":0,"53705":-1,"53706":-1,"53707":0,"53708":0,"53709":2584,"53710":2396,"53711":2142,"53712":0,"53713":0,"53714":544,"53715":0,"53716":0,"53717":0,"53718":-1,"53719":-1,"53720":0,"53721":137,"53722":2230,"53723":0,"53724":0,"53725":0,"53726":0,"53727":0,"53728":0,"53729":0,"53730":0,"53731":0,"53732":43,"53733":-1,"53734":-1,"53735":-1,"53736":-1,"53737":0,"53738":0,"53739":2278,"53740":-1,"53741":0,"53742":2580,"53743":2316,"53744":2676,"53745":2239,"53746":-1,"53747":-1,"53748":2527,"53749":0,"53750":-1,"53751":-1,"53752":2500,"53753":0,"53754":-1,"53755":2075,"53756":2410,"53757":0,"53758":2255,"53759":0,"53760":-1,"53761":0,"53762":-1,"53763":-1,"53764":2462,"53765":-1,"53766":2090,"53767":2490,"53768":0,"53769":0,"53770":-1,"53771":-1,"53772":0,"53773":2496,"53774":-1,"53775":2446,"53776":-1,"53777":0,"53778":2182,"53779":-1,"53780":0,"53781":2633,"53782":0,"53783":0,"53784":2062,"53785":0,"53786":-1,"53787":0,"53788":-1,"53789":2417,"53790":0,"53791":0,"53792":0,"53793":0,"53794":0,"53795":0,"53796":-1,"53797":-1,"53798":-1,"53799":2568,"53800":0,"53801":0,"53802":0,"53803":36,"53804":0,"53805":0,"53806":2062,"53807":-1,"53808":0,"53809":2374,"53810":0,"53811":-1,"53812":-1,"53813":0,"53814":0,"53815":0,"53816":0,"53817":-1,"53818":2171,"53819":0,"53820":-1,"53821":0,"53822":-1,"53823":0,"53824":0,"53825":301,"53826":0,"53827":0,"53828":-1,"53829":2356,"53830":21,"53831":0,"53832":2340,"53833":693,"53834":0,"53835":350,"53836":-1,"53837":598,"53838":0,"53839":0,"53840":-1,"53841":0,"53842":-1,"53843":0,"53844":-1,"53845":0,"53846":0,"53847":8,"53848":-1,"53849":0,"53850":0,"53851":-1,"53852":-1,"53853":0,"53854":0,"53855":-1,"53856":0,"53857":-1,"53858":0,"53859":-1,"53860":0,"53861":0,"53862":0,"53863":0,"53864":-1,"53865":312,"53866":2483,"53867":0,"53868":-1,"53869":-1,"53870":0,"53871":-1,"53872":-1,"53873":-1,"53874":0,"53875":2307,"53876":0,"53877":-1,"53878":-1,"53879":-1,"53880":36,"53881":0,"53882":2629,"53883":0,"53884":14,"53885":2201,"53886":-1,"53887":-1,"53888":0,"53889":0,"53890":2459,"53891":-1,"53892":2034,"53893":0,"53894":-1,"53895":942,"53896":-1,"53897":-1,"53898":-1,"53899":0,"53900":16,"53901":2073,"53902":0,"53903":-1,"53904":2108,"53905":0,"53906":2119,"53907":559,"53908":0,"53909":2345,"53910":-1,"53911":2543,"53912":0,"53913":0,"53914":-1,"53915":0,"53916":-1,"53917":-1,"53918":-1,"53919":2255,"53920":0,"53921":0,"53922":-1,"53923":2361,"53924":0,"53925":0,"53926":0,"53927":2480,"53928":0,"53929":2245,"53930":-1,"53931":2330,"53932":-1,"53933":0,"53934":-1,"53935":0,"53936":-1,"53937":2658,"53938":-1,"53939":0,"53940":2238,"53941":0,"53942":-1,"53943":2414,"53944":2285,"53945":-1,"53946":0,"53947":0,"53948":0,"53949":0,"53950":35,"53951":-1,"53952":0,"53953":0,"53954":-1,"53955":2298,"53956":303,"53957":2128,"53958":280,"53959":0,"53960":0,"53961":-1,"53962":2272,"53963":2276,"53964":-1,"53965":0,"53966":-1,"53967":0,"53968":36,"53969":0,"53970":-1,"53971":0,"53972":2590,"53973":0,"53974":-1,"53975":0,"53976":2450,"53977":2231,"53978":0,"53979":-1,"53980":0,"53981":2359,"53982":0,"53983":0,"53984":0,"53985":0,"53986":-1,"53987":2299,"53988":2028,"53989":0,"53990":0,"53991":0,"53992":-1,"53993":0,"53994":-1,"53995":-1,"53996":2520,"53997":0,"53998":667,"53999":-1,"54000":-1,"54001":2045,"54002":0,"54003":0,"54004":0,"54005":-1,"54006":-1,"54007":0,"54008":0,"54009":-1,"54010":264,"54011":-1,"54012":-1,"54013":0,"54014":-1,"54015":0,"54016":2311,"54017":0,"54018":-1,"54019":2294,"54020":0,"54021":2570,"54022":0,"54023":-1,"54024":0,"54025":0,"54026":-1,"54027":0,"54028":0,"54029":567,"54030":2358,"54031":-1,"54032":-1,"54033":-1,"54034":0,"54035":-1,"54036":-1,"54037":0,"54038":-1,"54039":-1,"54040":0,"54041":2352,"54042":455,"54043":2575,"54044":0,"54045":0,"54046":0,"54047":0,"54048":-1,"54049":2592,"54050":2423,"54051":-1,"54052":0,"54053":0,"54054":-1,"54055":2239,"54056":-1,"54057":0,"54058":2672,"54059":0,"54060":0,"54061":2422,"54062":-1,"54063":-1,"54064":-1,"54065":0,"54066":-1,"54067":-1,"54068":-1,"54069":0,"54070":-1,"54071":-1,"54072":0,"54073":-1,"54074":0,"54075":639,"54076":0,"54077":0,"54078":-1,"54079":2055,"54080":0,"54081":0,"54082":-1,"54083":0,"54084":-1,"54085":0,"54086":0,"54087":2120,"54088":-1,"54089":0,"54090":2544,"54091":-1,"54092":-1,"54093":0,"54094":0,"54095":0,"54096":0,"54097":0,"54098":0,"54099":2026,"54100":41,"54101":837,"54102":-1,"54103":-1,"54104":0,"54105":0,"54106":2053,"54107":-1,"54108":2376,"54109":0,"54110":2003,"54111":2376,"54112":2499,"54113":-1,"54114":2055,"54115":0,"54116":0,"54117":0,"54118":18,"54119":-1,"54120":0,"54121":-1,"54122":2666,"54123":0,"54124":2006,"54125":0,"54126":-1,"54127":0,"54128":0,"54129":2653,"54130":0,"54131":-1,"54132":0,"54133":0,"54134":0,"54135":301,"54136":-1,"54137":0,"54138":-1,"54139":-1,"54140":0,"54141":0,"54142":-1,"54143":2175,"54144":-1,"54145":0,"54146":-1,"54147":2279,"54148":0,"54149":0,"54150":0,"54151":0,"54152":0,"54153":0,"54154":313,"54155":2110,"54156":0,"54157":-1,"54158":2116,"54159":0,"54160":199,"54161":0,"54162":-1,"54163":0,"54164":0,"54165":2476,"54166":2143,"54167":0,"54168":520,"54169":0,"54170":2529,"54171":-1,"54172":2664,"54173":0,"54174":0,"54175":2057,"54176":0,"54177":2118,"54178":-1,"54179":-1,"54180":-1,"54181":-1,"54182":-1,"54183":2522,"54184":0,"54185":0,"54186":-1,"54187":-1,"54188":-1,"54189":-1,"54190":620,"54191":0,"54192":-1,"54193":2368,"54194":0,"54195":-1,"54196":0,"54197":-1,"54198":0,"54199":0,"54200":0,"54201":2121,"54202":67,"54203":-1,"54204":-1,"54205":-1,"54206":0,"54207":2276,"54208":-1,"54209":0,"54210":-1,"54211":0,"54212":-1,"54213":0,"54214":-1,"54215":0,"54216":-1,"54217":669,"54218":2441,"54219":-1,"54220":-1,"54221":0,"54222":-1,"54223":-1,"54224":-1,"54225":0,"54226":-1,"54227":2226,"54228":0,"54229":-1,"54230":-1,"54231":2216,"54232":-1,"54233":2270,"54234":0,"54235":101,"54236":-1,"54237":-1,"54238":0,"54239":0,"54240":0,"54241":2105,"54242":126,"54243":-1,"54244":2482,"54245":0,"54246":-1,"54247":2485,"54248":0,"54249":0,"54250":2029,"54251":0,"54252":-1,"54253":-1,"54254":2227,"54255":-1,"54256":0,"54257":-1,"54258":2307,"54259":0,"54260":-1,"54261":0,"54262":2551,"54263":0,"54264":96,"54265":-1,"54266":-1,"54267":-1,"54268":0,"54269":0,"54270":2015,"54271":-1,"54272":-1,"54273":353,"54274":0,"54275":0,"54276":0,"54277":-1,"54278":0,"54279":-1,"54280":-1,"54281":0,"54282":0,"54283":0,"54284":-1,"54285":-1,"54286":2335,"54287":75,"54288":0,"54289":-1,"54290":0,"54291":2226,"54292":0,"54293":-1,"54294":0,"54295":-1,"54296":0,"54297":-1,"54298":-1,"54299":-1,"54300":2528,"54301":0,"54302":0,"54303":0,"54304":-1,"54305":-1,"54306":133,"54307":-1,"54308":-1,"54309":-1,"54310":-1,"54311":0,"54312":0,"54313":0,"54314":0,"54315":0,"54316":-1,"54317":0,"54318":0,"54319":0,"54320":-1,"54321":-1,"54322":0,"54323":2193,"54324":-1,"54325":0,"54326":-1,"54327":2300,"54328":0,"54329":-1,"54330":2046,"54331":2045,"54332":-1,"54333":2076,"54334":0,"54335":0,"54336":-1,"54337":837,"54338":0,"54339":0,"54340":-1,"54341":0,"54342":0,"54343":2590,"54344":0,"54345":-1,"54346":0,"54347":2020,"54348":2287,"54349":-1,"54350":0,"54351":0,"54352":0,"54353":-1,"54354":2376,"54355":0,"54356":0,"54357":0,"54358":2464,"54359":0,"54360":0,"54361":-1,"54362":2611,"54363":-1,"54364":-1,"54365":0,"54366":-1,"54367":2648,"54368":-1,"54369":0,"54370":-1,"54371":0,"54372":0,"54373":-1,"54374":0,"54375":0,"54376":787,"54377":2486,"54378":0,"54379":2620,"54380":-1,"54381":0,"54382":0,"54383":0,"54384":-1,"54385":2481,"54386":2636,"54387":0,"54388":0,"54389":0,"54390":0,"54391":-1,"54392":0,"54393":2487,"54394":-1,"54395":0,"54396":0,"54397":0,"54398":2398,"54399":0,"54400":0,"54401":0,"54402":0,"54403":0,"54404":-1,"54405":0,"54406":0,"54407":0,"54408":0,"54409":0,"54410":2438,"54411":-1,"54412":0,"54413":0,"54414":0,"54415":0,"54416":2108,"54417":0,"54418":2161,"54419":6,"54420":793,"54421":2058,"54422":-1,"54423":2333,"54424":0,"54425":-1,"54426":0,"54427":-1,"54428":2237,"54429":2528,"54430":2201,"54431":-1,"54432":0,"54433":0,"54434":0,"54435":0,"54436":-1,"54437":-1,"54438":-1,"54439":0,"54440":0,"54441":0,"54442":-1,"54443":2487,"54444":-1,"54445":-1,"54446":-1,"54447":0,"54448":0,"54449":38,"54450":0,"54451":0,"54452":-1,"54453":0,"54454":0,"54455":-1,"54456":0,"54457":0,"54458":2340,"54459":0,"54460":2371,"54461":0,"54462":2398,"54463":0,"54464":-1,"54465":2633,"54466":483,"54467":-1,"54468":0,"54469":0,"54470":-1,"54471":0,"54472":2605,"54473":0,"54474":-1,"54475":2567,"54476":0,"54477":-1,"54478":2237,"54479":-1,"54480":2339,"54481":0,"54482":0,"54483":2394,"54484":-1,"54485":170,"54486":0,"54487":2641,"54488":-1,"54489":2579,"54490":0,"54491":2183,"54492":-1,"54493":2040,"54494":0,"54495":-1,"54496":0,"54497":544,"54498":0,"54499":-1,"54500":350,"54501":-1,"54502":0,"54503":0,"54504":2353,"54505":-1,"54506":2012,"54507":-1,"54508":0,"54509":0,"54510":-1,"54511":2383,"54512":-1,"54513":-1,"54514":0,"54515":0,"54516":2447,"54517":0,"54518":-1,"54519":0,"54520":-1,"54521":-1,"54522":2344,"54523":2606,"54524":2670,"54525":0,"54526":0,"54527":2283,"54528":-1,"54529":0,"54530":0,"54531":-1,"54532":0,"54533":-1,"54534":2274,"54535":2184,"54536":2222,"54537":2063,"54538":0,"54539":0,"54540":-1,"54541":0,"54542":0,"54543":-1,"54544":0,"54545":2172,"54546":-1,"54547":2201,"54548":0,"54549":0,"54550":2619,"54551":0,"54552":667,"54553":-1,"54554":-1,"54555":2536,"54556":2571,"54557":2547,"54558":0,"54559":-1,"54560":-1,"54561":0,"54562":2255,"54563":0,"54564":2239,"54565":-1,"54566":0,"54567":0,"54568":554,"54569":0,"54570":0,"54571":0,"54572":-1,"54573":0,"54574":2357,"54575":-1,"54576":-1,"54577":-1,"54578":0,"54579":2338,"54580":-1,"54581":1998,"54582":-1,"54583":-1,"54584":460,"54585":2458,"54586":2085,"54587":-1,"54588":0,"54589":2458,"54590":2423,"54591":0,"54592":0,"54593":2174,"54594":-1,"54595":-1,"54596":0,"54597":-1,"54598":-1,"54599":0,"54600":2381,"54601":0,"54602":-1,"54603":0,"54604":-1,"54605":0,"54606":-1,"54607":-1,"54608":2419,"54609":0,"54610":0,"54611":0,"54612":2067,"54613":0,"54614":0,"54615":-1,"54616":0,"54617":2142,"54618":0,"54619":2372,"54620":-1,"54621":2151,"54622":2163,"54623":0,"54624":-1,"54625":0,"54626":0,"54627":-1,"54628":0,"54629":-1,"54630":0,"54631":-1,"54632":2660,"54633":0,"54634":0,"54635":0,"54636":0,"54637":2466,"54638":0,"54639":-1,"54640":-1,"54641":0,"54642":-1,"54643":-1,"54644":-1,"54645":2144,"54646":0,"54647":787,"54648":0,"54649":0,"54650":0,"54651":-1,"54652":0,"54653":-1,"54654":2465,"54655":-1,"54656":2327,"54657":-1,"54658":-1,"54659":0,"54660":0,"54661":-1,"54662":0,"54663":-1,"54664":-1,"54665":0,"54666":-1,"54667":0,"54668":-1,"54669":0,"54670":-1,"54671":612,"54672":0,"54673":-1,"54674":-1,"54675":-1,"54676":-1,"54677":-1,"54678":0,"54679":-1,"54680":0,"54681":-1,"54682":2078,"54683":2378,"54684":0,"54685":2474,"54686":0,"54687":2665,"54688":-1,"54689":0,"54690":0,"54691":0,"54692":0,"54693":0,"54694":-1,"54695":0,"54696":-1,"54697":-1,"54698":0,"54699":-1,"54700":-1,"54701":0,"54702":0,"54703":0,"54704":0,"54705":2580,"54706":-1,"54707":2245,"54708":0,"54709":0,"54710":0,"54711":2108,"54712":0,"54713":-1,"54714":-1,"54715":0,"54716":293,"54717":2405,"54718":0,"54719":0,"54720":0,"54721":2393,"54722":0,"54723":0,"54724":0,"54725":-1,"54726":2516,"54727":2613,"54728":0,"54729":-1,"54730":0,"54731":0,"54732":-1,"54733":-1,"54734":-1,"54735":-1,"54736":0,"54737":0,"54738":0,"54739":2267,"54740":0,"54741":0,"54742":0,"54743":0,"54744":0,"54745":0,"54746":0,"54747":0,"54748":-1,"54749":0,"54750":0,"54751":-1,"54752":2466,"54753":0,"54754":0,"54755":2363,"54756":-1,"54757":2655,"54758":0,"54759":0,"54760":2477,"54761":-1,"54762":0,"54763":0,"54764":0,"54765":0,"54766":-1,"54767":-1,"54768":397,"54769":0,"54770":-1,"54771":0,"54772":0,"54773":0,"54774":2245,"54775":-1,"54776":2430,"54777":614,"54778":-1,"54779":-1,"54780":864,"54781":2498,"54782":-1,"54783":0,"54784":0,"54785":-1,"54786":156,"54787":40,"54788":0,"54789":2514,"54790":-1,"54791":-1,"54792":2444,"54793":-1,"54794":2614,"54795":0,"54796":0,"54797":312,"54798":-1,"54799":0,"54800":2151,"54801":0,"54802":693,"54803":2339,"54804":-1,"54805":2629,"54806":-1,"54807":-1,"54808":0,"54809":-1,"54810":0,"54811":0,"54812":2580,"54813":524,"54814":2601,"54815":2027,"54816":2351,"54817":0,"54818":2021,"54819":0,"54820":0,"54821":2347,"54822":0,"54823":-1,"54824":-1,"54825":-1,"54826":0,"54827":2099,"54828":2166,"54829":0,"54830":0,"54831":0,"54832":0,"54833":0,"54834":-1,"54835":1996,"54836":0,"54837":-1,"54838":-1,"54839":0,"54840":0,"54841":-1,"54842":-1,"54843":2466,"54844":-1,"54845":-1,"54846":-1,"54847":0,"54848":0,"54849":2456,"54850":2289,"54851":0,"54852":0,"54853":-1,"54854":0,"54855":-1,"54856":-1,"54857":-1,"54858":0,"54859":-1,"54860":0,"54861":0,"54862":0,"54863":0,"54864":0,"54865":-1,"54866":0,"54867":0,"54868":0,"54869":0,"54870":0,"54871":2000,"54872":2633,"54873":0,"54874":0,"54875":-1,"54876":0,"54877":0,"54878":-1,"54879":-1,"54880":0,"54881":0,"54882":-1,"54883":0,"54884":2016,"54885":2566,"54886":-1,"54887":0,"54888":2595,"54889":2001,"54890":65,"54891":2342,"54892":-1,"54893":0,"54894":0,"54895":0,"54896":-1,"54897":0,"54898":-1,"54899":-1,"54900":0,"54901":-1,"54902":0,"54903":0,"54904":0,"54905":2434,"54906":-1,"54907":-1,"54908":0,"54909":-1,"54910":2394,"54911":0,"54912":2454,"54913":0,"54914":0,"54915":2185,"54916":25,"54917":0,"54918":2183,"54919":0,"54920":-1,"54921":-1,"54922":-1,"54923":2552,"54924":2257,"54925":2020,"54926":2516,"54927":0,"54928":0,"54929":2092,"54930":-1,"54931":0,"54932":2226,"54933":-1,"54934":-1,"54935":2273,"54936":2637,"54937":0,"54938":0,"54939":2638,"54940":0,"54941":2354,"54942":0,"54943":-1,"54944":0,"54945":738,"54946":2117,"54947":0,"54948":-1,"54949":0,"54950":2368,"54951":0,"54952":0,"54953":500,"54954":0,"54955":2397,"54956":-1,"54957":2096,"54958":0,"54959":0,"54960":2550,"54961":-1,"54962":-1,"54963":0,"54964":0,"54965":2605,"54966":0,"54967":0,"54968":0,"54969":2486,"54970":-1,"54971":2620,"54972":0,"54973":0,"54974":-1,"54975":0,"54976":2359,"54977":0,"54978":0,"54979":0,"54980":584,"54981":2624,"54982":0,"54983":2368,"54984":0,"54985":-1,"54986":-1,"54987":0,"54988":0,"54989":-1,"54990":-1,"54991":-1,"54992":0,"54993":-1,"54994":-1,"54995":-1,"54996":2557,"54997":0,"54998":-1,"54999":2199,"55000":0,"55001":2650,"55002":-1,"55003":2612,"55004":-1,"55005":0,"55006":0,"55007":0,"55008":0,"55009":0,"55010":0,"55011":2119,"55012":0,"55013":2552,"55014":0,"55015":2531,"55016":0,"55017":0,"55018":-1,"55019":559,"55020":0,"55021":0,"55022":0,"55023":0,"55024":2324,"55025":2465,"55026":0,"55027":-1,"55028":2199,"55029":0,"55030":-1,"55031":0,"55032":0,"55033":-1,"55034":0,"55035":0,"55036":-1,"55037":2043,"55038":2045,"55039":0,"55040":-1,"55041":-1,"55042":58,"55043":287,"55044":0,"55045":-1,"55046":-1,"55047":0,"55048":0,"55049":0,"55050":2572,"55051":-1,"55052":0,"55053":-1,"55054":0,"55055":2398,"55056":2404,"55057":2088,"55058":2421,"55059":0,"55060":598,"55061":554,"55062":-1,"55063":2469,"55064":2109,"55065":2459,"55066":2307,"55067":0,"55068":0,"55069":2388,"55070":18,"55071":0,"55072":-1,"55073":-1,"55074":2648,"55075":-1,"55076":0,"55077":-1,"55078":-1,"55079":-1,"55080":-1,"55081":0,"55082":284,"55083":2454,"55084":2358,"55085":-1,"55086":-1,"55087":0,"55088":-1,"55089":0,"55090":-1,"55091":-1,"55092":0,"55093":0,"55094":0,"55095":0,"55096":2186,"55097":-1,"55098":-1,"55099":-1,"55100":0,"55101":0,"55102":0,"55103":2397,"55104":-1,"55105":2312,"55106":-1,"55107":0,"55108":772,"55109":2340,"55110":0,"55111":2083,"55112":0,"55113":-1,"55114":0,"55115":2296,"55116":-1,"55117":0,"55118":0,"55119":-1,"55120":64,"55121":0,"55122":-1,"55123":-1,"55124":0,"55125":-1,"55126":-1,"55127":-1,"55128":0,"55129":-1,"55130":-1,"55131":2148,"55132":0,"55133":0,"55134":0,"55135":2513,"55136":0,"55137":0,"55138":-1,"55139":-1,"55140":-1,"55141":-1,"55142":0,"55143":-1,"55144":0,"55145":2444,"55146":0,"55147":0,"55148":0,"55149":0,"55150":-1,"55151":2382,"55152":-1,"55153":-1,"55154":-1,"55155":0,"55156":2062,"55157":-1,"55158":0,"55159":0,"55160":2357,"55161":0,"55162":2157,"55163":2114,"55164":2644,"55165":2290,"55166":-1,"55167":-1,"55168":0,"55169":-1,"55170":0,"55171":0,"55172":0,"55173":2390,"55174":0,"55175":2173,"55176":-1,"55177":-1,"55178":-1,"55179":0,"55180":-1,"55181":0,"55182":2212,"55183":2406,"55184":0,"55185":2471,"55186":0,"55187":0,"55188":0,"55189":0,"55190":-1,"55191":0,"55192":-1,"55193":-1,"55194":-1,"55195":0,"55196":0,"55197":0,"55198":0,"55199":-1,"55200":0,"55201":2215,"55202":-1,"55203":-1,"55204":0,"55205":-1,"55206":0,"55207":0,"55208":0,"55209":0,"55210":0,"55211":0,"55212":0,"55213":0,"55214":2620,"55215":-1,"55216":0,"55217":0,"55218":2372,"55219":-1,"55220":0,"55221":2394,"55222":0,"55223":0,"55224":0,"55225":-1,"55226":0,"55227":-1,"55228":-1,"55229":0,"55230":-1,"55231":-1,"55232":2449,"55233":-1,"55234":0,"55235":0,"55236":0,"55237":-1,"55238":0,"55239":0,"55240":0,"55241":693,"55242":-1,"55243":-1,"55244":0,"55245":2133,"55246":0,"55247":0,"55248":-1,"55249":2622,"55250":-1,"55251":-1,"55252":0,"55253":0,"55254":0,"55255":-1,"55256":-1,"55257":-1,"55258":2561,"55259":2031,"55260":2372,"55261":2062,"55262":0,"55263":-1,"55264":0,"55265":0,"55266":0,"55267":449,"55268":-1,"55269":-1,"55270":-1,"55271":0,"55272":-1,"55273":-1,"55274":-1,"55275":0,"55276":0,"55277":0,"55278":0,"55279":-1,"55280":2288,"55281":-1,"55282":475,"55283":-1,"55284":-1,"55285":2632,"55286":-1,"55287":0,"55288":0,"55289":0,"55290":0,"55291":0,"55292":-1,"55293":0,"55294":0,"55295":-1,"55296":-1,"55297":-1,"55298":0,"55299":-1,"55300":-1,"55301":2487,"55302":2331,"55303":0,"55304":2106,"55305":0,"55306":0,"55307":0,"55308":-1,"55309":-1,"55310":0,"55311":0,"55312":0,"55313":0,"55314":2563,"55315":0,"55316":0,"55317":-1,"55318":617,"55319":0,"55320":0,"55321":2493,"55322":2373,"55323":2456,"55324":2125,"55325":0,"55326":645,"55327":0,"55328":906,"55329":2296,"55330":0,"55331":-1,"55332":-1,"55333":0,"55334":2546,"55335":80,"55336":842,"55337":0,"55338":0,"55339":2570,"55340":0,"55341":2271,"55342":-1,"55343":0,"55344":301,"55345":0,"55346":0,"55347":-1,"55348":284,"55349":-1,"55350":-1,"55351":0,"55352":-1,"55353":0,"55354":0,"55355":-1,"55356":0,"55357":2641,"55358":-1,"55359":0,"55360":-1,"55361":0,"55362":-1,"55363":0,"55364":0,"55365":-1,"55366":0,"55367":693,"55368":0,"55369":-1,"55370":2192,"55371":0,"55372":-1,"55373":-1,"55374":-1,"55375":0,"55376":2457,"55377":2089,"55378":18,"55379":-1,"55380":-1,"55381":0,"55382":2512,"55383":0,"55384":2292,"55385":496,"55386":0,"55387":0,"55388":-1,"55389":2611,"55390":-1,"55391":402,"55392":237,"55393":2067,"55394":2214,"55395":-1,"55396":0,"55397":0,"55398":-1,"55399":0,"55400":2473,"55401":0,"55402":-1,"55403":-1,"55404":-1,"55405":2520,"55406":2144,"55407":2641,"55408":-1,"55409":0,"55410":-1,"55411":-1,"55412":3,"55413":2272,"55414":-1,"55415":0,"55416":0,"55417":-1,"55418":0,"55419":0,"55420":612,"55421":2467,"55422":0,"55423":0,"55424":0,"55425":0,"55426":942,"55427":-1,"55428":0,"55429":0,"55430":2369,"55431":0,"55432":-1,"55433":-1,"55434":514,"55435":0,"55436":0,"55437":2402,"55438":-1,"55439":0,"55440":0,"55441":-1,"55442":2622,"55443":-1,"55444":0,"55445":0,"55446":0,"55447":-1,"55448":0,"55449":-1,"55450":0,"55451":2185,"55452":0,"55453":0,"55454":0,"55455":0,"55456":2082,"55457":19,"55458":-1,"55459":2020,"55460":2114,"55461":0,"55462":0,"55463":-1,"55464":0,"55465":-1,"55466":-1,"55467":0,"55468":-1,"55469":-1,"55470":0,"55471":-1,"55472":-1,"55473":0,"55474":0,"55475":-1,"55476":0,"55477":2038,"55478":2065,"55479":0,"55480":0,"55481":-1,"55482":-1,"55483":0,"55484":0,"55485":2121,"55486":0,"55487":0,"55488":2008,"55489":0,"55490":-1,"55491":0,"55492":0,"55493":-1,"55494":0,"55495":0,"55496":-1,"55497":-1,"55498":-1,"55499":-1,"55500":0,"55501":0,"55502":0,"55503":0,"55504":-1,"55505":-1,"55506":-1,"55507":-1,"55508":-1,"55509":0,"55510":0,"55511":28,"55512":2644,"55513":0,"55514":2017,"55515":-1,"55516":0,"55517":0,"55518":0,"55519":-1,"55520":0,"55521":-1,"55522":0,"55523":0,"55524":0,"55525":2050,"55526":-1,"55527":0,"55528":-1,"55529":-1,"55530":0,"55531":0,"55532":0,"55533":-1,"55534":287,"55535":-1,"55536":-1,"55537":-1,"55538":-1,"55539":0,"55540":0,"55541":2259,"55542":2464,"55543":0,"55544":-1,"55545":0,"55546":0,"55547":0,"55548":2298,"55549":0,"55550":-1,"55551":2230,"55552":0,"55553":0,"55554":2029,"55555":2497,"55556":-1,"55557":0,"55558":2554,"55559":0,"55560":-1,"55561":-1,"55562":2184,"55563":0,"55564":0,"55565":-1,"55566":2108,"55567":2392,"55568":0,"55569":0,"55570":2659,"55571":0,"55572":-1,"55573":-1,"55574":2359,"55575":0,"55576":0,"55577":0,"55578":-1,"55579":0,"55580":-1,"55581":0,"55582":217,"55583":2413,"55584":-1,"55585":2466,"55586":0,"55587":2267,"55588":2509,"55589":0,"55590":2009,"55591":547,"55592":2585,"55593":2444,"55594":-1,"55595":0,"55596":0,"55597":2102,"55598":-1,"55599":2316,"55600":2511,"55601":0,"55602":0,"55603":0,"55604":0,"55605":-1,"55606":0,"55607":-1,"55608":0,"55609":2596,"55610":-1,"55611":0,"55612":0,"55613":-1,"55614":0,"55615":0,"55616":0,"55617":455,"55618":-1,"55619":0,"55620":0,"55621":2546,"55622":-1,"55623":2181,"55624":2326,"55625":0,"55626":0,"55627":80,"55628":0,"55629":-1,"55630":2638,"55631":0,"55632":0,"55633":0,"55634":0,"55635":0,"55636":2482,"55637":2632,"55638":-1,"55639":2360,"55640":0,"55641":-1,"55642":0,"55643":-1,"55644":0,"55645":2522,"55646":0,"55647":0,"55648":0,"55649":0,"55650":-1,"55651":-1,"55652":-1,"55653":0,"55654":0,"55655":0,"55656":0,"55657":2312,"55658":-1,"55659":-1,"55660":0,"55661":0,"55662":-1,"55663":0,"55664":0,"55665":-1,"55666":-1,"55667":0,"55668":-1,"55669":209,"55670":-1,"55671":2638,"55672":0,"55673":2105,"55674":2020,"55675":0,"55676":-1,"55677":0,"55678":0,"55679":0,"55680":0,"55681":2098,"55682":0,"55683":-1,"55684":2155,"55685":0,"55686":-1,"55687":-1,"55688":-1,"55689":-1,"55690":34,"55691":-1,"55692":-1,"55693":2417,"55694":0,"55695":0,"55696":-1,"55697":2191,"55698":2019,"55699":-1,"55700":0,"55701":2231,"55702":-1,"55703":0,"55704":0,"55705":0,"55706":612,"55707":0,"55708":0,"55709":-1,"55710":2428,"55711":0,"55712":2246,"55713":34,"55714":-1,"55715":0,"55716":-1,"55717":-1,"55718":0,"55719":0,"55720":0,"55721":0,"55722":-1,"55723":-1,"55724":-1,"55725":0,"55726":0,"55727":0,"55728":0,"55729":0,"55730":0,"55731":75,"55732":0,"55733":-1,"55734":0,"55735":0,"55736":-1,"55737":-1,"55738":65,"55739":-1,"55740":0,"55741":2016,"55742":909,"55743":0,"55744":2311,"55745":2245,"55746":-1,"55747":-1,"55748":0,"55749":2459,"55750":0,"55751":0,"55752":402,"55753":-1,"55754":-1,"55755":0,"55756":0,"55757":-1,"55758":-1,"55759":2158,"55760":0,"55761":0,"55762":-1,"55763":0,"55764":2418,"55765":0,"55766":0,"55767":-1,"55768":395,"55769":0,"55770":-1,"55771":-1,"55772":0,"55773":-1,"55774":-1,"55775":0,"55776":0,"55777":0,"55778":-1,"55779":0,"55780":0,"55781":-1,"55782":0,"55783":0,"55784":0,"55785":-1,"55786":-1,"55787":0,"55788":-1,"55789":0,"55790":0,"55791":2497,"55792":0,"55793":0,"55794":0,"55795":2085,"55796":0,"55797":108,"55798":0,"55799":0,"55800":2099,"55801":-1,"55802":0,"55803":-1,"55804":0,"55805":0,"55806":0,"55807":0,"55808":0,"55809":0,"55810":2310,"55811":2375,"55812":1995,"55813":0,"55814":-1,"55815":0,"55816":0,"55817":2230,"55818":2045,"55819":-1,"55820":0,"55821":0,"55822":2316,"55823":2613,"55824":-1,"55825":1992,"55826":-1,"55827":-1,"55828":-1,"55829":2325,"55830":0,"55831":864,"55832":0,"55833":-1,"55834":2346,"55835":0,"55836":150,"55837":2191,"55838":2588,"55839":0,"55840":0,"55841":0,"55842":-1,"55843":-1,"55844":0,"55845":0,"55846":-1,"55847":0,"55848":0,"55849":-1,"55850":2021,"55851":-1,"55852":-1,"55853":0,"55854":58,"55855":-1,"55856":-1,"55857":0,"55858":-1,"55859":-1,"55860":0,"55861":0,"55862":0,"55863":2518,"55864":-1,"55865":0,"55866":0,"55867":2354,"55868":-1,"55869":0,"55870":0,"55871":-1,"55872":2350,"55873":0,"55874":2494,"55875":0,"55876":0,"55877":849,"55878":0,"55879":-1,"55880":0,"55881":2477,"55882":0,"55883":-1,"55884":0,"55885":0,"55886":0,"55887":0,"55888":0,"55889":-1,"55890":-1,"55891":-1,"55892":0,"55893":2522,"55894":-1,"55895":2371,"55896":-1,"55897":-1,"55898":-1,"55899":0,"55900":-1,"55901":2191,"55902":2635,"55903":148,"55904":0,"55905":0,"55906":520,"55907":0,"55908":0,"55909":-1,"55910":-1,"55911":0,"55912":667,"55913":2643,"55914":-1,"55915":0,"55916":-1,"55917":0,"55918":0,"55919":2106,"55920":0,"55921":-1,"55922":0,"55923":0,"55924":0,"55925":0,"55926":1992,"55927":0,"55928":-1,"55929":-1,"55930":-1,"55931":0,"55932":2453,"55933":-1,"55934":2586,"55935":-1,"55936":0,"55937":2383,"55938":-1,"55939":-1,"55940":-1,"55941":0,"55942":-1,"55943":2315,"55944":0,"55945":-1,"55946":-1,"55947":0,"55948":0,"55949":620,"55950":-1,"55951":1999,"55952":280,"55953":-1,"55954":0,"55955":-1,"55956":2598,"55957":0,"55958":-1,"55959":-1,"55960":0,"55961":0,"55962":0,"55963":-1,"55964":-1,"55965":2042,"55966":0,"55967":2365,"55968":0,"55969":-1,"55970":-1,"55971":2163,"55972":126,"55973":0,"55974":-1,"55975":0,"55976":0,"55977":0,"55978":0,"55979":-1,"55980":-1,"55981":0,"55982":612,"55983":0,"55984":0,"55985":67,"55986":-1,"55987":0,"55988":0,"55989":-1,"55990":2536,"55991":0,"55992":77,"55993":0,"55994":-1,"55995":0,"55996":-1,"55997":0,"55998":402,"55999":0,"56000":0,"56001":0,"56002":-1,"56003":0,"56004":0,"56005":-1,"56006":0,"56007":-1,"56008":0,"56009":2464,"56010":21,"56011":0,"56012":-1,"56013":-1,"56014":-1,"56015":2680,"56016":-1,"56017":25,"56018":0,"56019":-1,"56020":0,"56021":-1,"56022":0,"56023":2089,"56024":2319,"56025":2521,"56026":0,"56027":-1,"56028":-1,"56029":0,"56030":0,"56031":2419,"56032":0,"56033":2260,"56034":0,"56035":0,"56036":2587,"56037":-1,"56038":0,"56039":0,"56040":0,"56041":2439,"56042":-1,"56043":-1,"56044":2526,"56045":2106,"56046":0,"56047":-1,"56048":0,"56049":-1,"56050":0,"56051":-1,"56052":-1,"56053":0,"56054":-1,"56055":2034,"56056":0,"56057":2255,"56058":-1,"56059":0,"56060":-1,"56061":0,"56062":0,"56063":-1,"56064":-1,"56065":0,"56066":0,"56067":2262,"56068":0,"56069":0,"56070":-1,"56071":104,"56072":2520,"56073":2382,"56074":-1,"56075":0,"56076":0,"56077":-1,"56078":0,"56079":-1,"56080":0,"56081":2039,"56082":0,"56083":0,"56084":0,"56085":0,"56086":2672,"56087":0,"56088":264,"56089":0,"56090":0,"56091":-1,"56092":2474,"56093":0,"56094":936,"56095":2563,"56096":0,"56097":-1,"56098":2011,"56099":-1,"56100":0,"56101":2243,"56102":-1,"56103":0,"56104":0,"56105":614,"56106":2227,"56107":-1,"56108":-1,"56109":2513,"56110":2449,"56111":-1,"56112":2030,"56113":0,"56114":-1,"56115":21,"56116":317,"56117":0,"56118":894,"56119":0,"56120":0,"56121":0,"56122":-1,"56123":67,"56124":0,"56125":0,"56126":0,"56127":0,"56128":2024,"56129":3,"56130":-1,"56131":-1,"56132":0,"56133":667,"56134":0,"56135":-1,"56136":-1,"56137":0,"56138":0,"56139":0,"56140":2609,"56141":0,"56142":0,"56143":2413,"56144":0,"56145":0,"56146":-1,"56147":1999,"56148":-1,"56149":-1,"56150":310,"56151":-1,"56152":0,"56153":2589,"56154":0,"56155":2166,"56156":0,"56157":-1,"56158":-1,"56159":-1,"56160":0,"56161":0,"56162":859,"56163":-1,"56164":0,"56165":0,"56166":-1,"56167":0,"56168":0,"56169":0,"56170":-1,"56171":0,"56172":2420,"56173":0,"56174":-1,"56175":0,"56176":-1,"56177":12,"56178":-1,"56179":0,"56180":-1,"56181":-1,"56182":2398,"56183":2359,"56184":0,"56185":0,"56186":2249,"56187":0,"56188":-1,"56189":-1,"56190":-1,"56191":0,"56192":-1,"56193":0,"56194":0,"56195":0,"56196":0,"56197":0,"56198":-1,"56199":2176,"56200":0,"56201":-1,"56202":0,"56203":-1,"56204":-1,"56205":2195,"56206":-1,"56207":-1,"56208":2271,"56209":0,"56210":0,"56211":0,"56212":325,"56213":65,"56214":-1,"56215":2656,"56216":-1,"56217":2178,"56218":2408,"56219":0,"56220":0,"56221":0,"56222":-1,"56223":0,"56224":0,"56225":612,"56226":0,"56227":-1,"56228":-1,"56229":2596,"56230":0,"56231":2587,"56232":-1,"56233":-1,"56234":0,"56235":-1,"56236":0,"56237":-1,"56238":2451,"56239":2586,"56240":0,"56241":0,"56242":0,"56243":-1,"56244":0,"56245":0,"56246":2139,"56247":-1,"56248":2006,"56249":0,"56250":2305,"56251":0,"56252":2362,"56253":0,"56254":2342,"56255":-1,"56256":0,"56257":0,"56258":-1,"56259":2394,"56260":-1,"56261":0,"56262":-1,"56263":2149,"56264":0,"56265":0,"56266":-1,"56267":924,"56268":-1,"56269":0,"56270":2470,"56271":2336,"56272":262,"56273":2083,"56274":-1,"56275":0,"56276":2008,"56277":-1,"56278":-1,"56279":0,"56280":0,"56281":0,"56282":2246,"56283":-1,"56284":0,"56285":0,"56286":-1,"56287":0,"56288":-1,"56289":0,"56290":0,"56291":0,"56292":-1,"56293":-1,"56294":0,"56295":455,"56296":2023,"56297":2656,"56298":0,"56299":-1,"56300":-1,"56301":2051,"56302":2664,"56303":-1,"56304":0,"56305":2278,"56306":0,"56307":0,"56308":-1,"56309":0,"56310":0,"56311":0,"56312":0,"56313":0,"56314":0,"56315":-1,"56316":0,"56317":0,"56318":0,"56319":2493,"56320":-1,"56321":-1,"56322":2500,"56323":2507,"56324":604,"56325":-1,"56326":-1,"56327":-1,"56328":2457,"56329":0,"56330":0,"56331":293,"56332":-1,"56333":-1,"56334":0,"56335":0,"56336":-1,"56337":455,"56338":-1,"56339":0,"56340":34,"56341":0,"56342":2324,"56343":2316,"56344":31,"56345":0,"56346":0,"56347":0,"56348":0,"56349":-1,"56350":2258,"56351":0,"56352":0,"56353":0,"56354":2329,"56355":0,"56356":0,"56357":2170,"56358":2458,"56359":9,"56360":0,"56361":2551,"56362":-1,"56363":0,"56364":0,"56365":-1,"56366":292,"56367":0,"56368":-1,"56369":-1,"56370":-1,"56371":0,"56372":-1,"56373":2414,"56374":-1,"56375":0,"56376":0,"56377":2046,"56378":2637,"56379":2422,"56380":0,"56381":0,"56382":0,"56383":0,"56384":-1,"56385":2263,"56386":2311,"56387":0,"56388":461,"56389":0,"56390":21,"56391":-1,"56392":2036,"56393":0,"56394":0,"56395":0,"56396":-1,"56397":2281,"56398":-1,"56399":-1,"56400":2031,"56401":-1,"56402":0,"56403":0,"56404":2378,"56405":-1,"56406":0,"56407":0,"56408":0,"56409":483,"56410":0,"56411":2374,"56412":0,"56413":2656,"56414":-1,"56415":2479,"56416":-1,"56417":0,"56418":0,"56419":-1,"56420":0,"56421":-1,"56422":-1,"56423":-1,"56424":0,"56425":0,"56426":-1,"56427":0,"56428":0,"56429":-1,"56430":2527,"56431":-1,"56432":-1,"56433":0,"56434":2474,"56435":-1,"56436":0,"56437":0,"56438":-1,"56439":0,"56440":41,"56441":0,"56442":-1,"56443":-1,"56444":65,"56445":0,"56446":-1,"56447":0,"56448":-1,"56449":0,"56450":-1,"56451":0,"56452":0,"56453":0,"56454":2468,"56455":-1,"56456":0,"56457":0,"56458":0,"56459":2354,"56460":0,"56461":-1,"56462":2178,"56463":-1,"56464":0,"56465":0,"56466":0,"56467":0,"56468":0,"56469":-1,"56470":0,"56471":-1,"56472":2090,"56473":2353,"56474":2619,"56475":-1,"56476":-1,"56477":443,"56478":-1,"56479":2276,"56480":0,"56481":0,"56482":2191,"56483":-1,"56484":0,"56485":0,"56486":2511,"56487":2126,"56488":0,"56489":-1,"56490":75,"56491":-1,"56492":0,"56493":0,"56494":0,"56495":0,"56496":0,"56497":-1,"56498":205,"56499":2459,"56500":-1,"56501":-1,"56502":2014,"56503":-1,"56504":2171,"56505":0,"56506":0,"56507":2199,"56508":0,"56509":-1,"56510":-1,"56511":0,"56512":0,"56513":-1,"56514":0,"56515":0,"56516":2163,"56517":0,"56518":-1,"56519":0,"56520":0,"56521":2139,"56522":2367,"56523":2043,"56524":2379,"56525":2043,"56526":-1,"56527":-1,"56528":0,"56529":-1,"56530":0,"56531":395,"56532":0,"56533":96,"56534":0,"56535":0,"56536":738,"56537":2073,"56538":0,"56539":0,"56540":0,"56541":-1,"56542":0,"56543":0,"56544":0,"56545":-1,"56546":0,"56547":2201,"56548":159,"56549":2484,"56550":0,"56551":0,"56552":-1,"56553":0,"56554":7,"56555":0,"56556":0,"56557":-1,"56558":-1,"56559":-1,"56560":-1,"56561":-1,"56562":572,"56563":-1,"56564":-1,"56565":0,"56566":-1,"56567":2251,"56568":2249,"56569":2350,"56570":2397,"56571":-1,"56572":-1,"56573":2169,"56574":0,"56575":-1,"56576":-1,"56577":-1,"56578":0,"56579":2424,"56580":-1,"56581":0,"56582":-1,"56583":0,"56584":2390,"56585":0,"56586":0,"56587":0,"56588":0,"56589":0,"56590":2601,"56591":-1,"56592":-1,"56593":2253,"56594":-1,"56595":-1,"56596":0,"56597":0,"56598":-1,"56599":-1,"56600":2204,"56601":2183,"56602":842,"56603":0,"56604":0,"56605":0,"56606":0,"56607":38,"56608":936,"56609":0,"56610":0,"56611":0,"56612":2331,"56613":0,"56614":0,"56615":0,"56616":2300,"56617":2345,"56618":0,"56619":-1,"56620":-1,"56621":-1,"56622":-1,"56623":0,"56624":0,"56625":0,"56626":2552,"56627":2576,"56628":0,"56629":0,"56630":-1,"56631":-1,"56632":0,"56633":-1,"56634":-1,"56635":0,"56636":37,"56637":345,"56638":-1,"56639":0,"56640":46,"56641":0,"56642":0,"56643":-1,"56644":2489,"56645":-1,"56646":0,"56647":-1,"56648":-1,"56649":-1,"56650":0,"56651":-1,"56652":0,"56653":0,"56654":-1,"56655":-1,"56656":0,"56657":-1,"56658":0,"56659":0,"56660":2463,"56661":0,"56662":0,"56663":0,"56664":0,"56665":547,"56666":2332,"56667":-1,"56668":-1,"56669":0,"56670":0,"56671":-1,"56672":-1,"56673":2677,"56674":0,"56675":0,"56676":0,"56677":2467,"56678":2502,"56679":0,"56680":2107,"56681":0,"56682":2277,"56683":-1,"56684":0,"56685":-1,"56686":0,"56687":0,"56688":0,"56689":-1,"56690":0,"56691":2480,"56692":2239,"56693":2428,"56694":449,"56695":0,"56696":-1,"56697":0,"56698":-1,"56699":-1,"56700":0,"56701":0,"56702":-1,"56703":0,"56704":0,"56705":0,"56706":0,"56707":0,"56708":0,"56709":-1,"56710":461,"56711":0,"56712":-1,"56713":-1,"56714":0,"56715":0,"56716":170,"56717":2338,"56718":0,"56719":0,"56720":2532,"56721":-1,"56722":-1,"56723":0,"56724":0,"56725":0,"56726":220,"56727":0,"56728":-1,"56729":2678,"56730":0,"56731":0,"56732":298,"56733":2512,"56734":0,"56735":-1,"56736":0,"56737":2389,"56738":0,"56739":-1,"56740":0,"56741":-1,"56742":-1,"56743":0,"56744":-1,"56745":0,"56746":-1,"56747":0,"56748":0,"56749":0,"56750":-1,"56751":0,"56752":0,"56753":58,"56754":2520,"56755":2419,"56756":0,"56757":-1,"56758":0,"56759":-1,"56760":0,"56761":-1,"56762":0,"56763":-1,"56764":-1,"56765":-1,"56766":0,"56767":0,"56768":-1,"56769":2487,"56770":-1,"56771":-1,"56772":2463,"56773":0,"56774":0,"56775":0,"56776":-1,"56777":-1,"56778":2567,"56779":0,"56780":0,"56781":0,"56782":2189,"56783":2499,"56784":-1,"56785":0,"56786":-1,"56787":0,"56788":0,"56789":-1,"56790":0,"56791":2484,"56792":0,"56793":0,"56794":-1,"56795":37,"56796":-1,"56797":0,"56798":0,"56799":-1,"56800":-1,"56801":0,"56802":0,"56803":-1,"56804":-1,"56805":-1,"56806":0,"56807":0,"56808":0,"56809":-1,"56810":0,"56811":0,"56812":-1,"56813":-1,"56814":0,"56815":0,"56816":0,"56817":-1,"56818":-1,"56819":-1,"56820":0,"56821":0,"56822":-1,"56823":0,"56824":2011,"56825":-1,"56826":2665,"56827":-1,"56828":0,"56829":2064,"56830":2252,"56831":0,"56832":0,"56833":0,"56834":2052,"56835":0,"56836":2251,"56837":0,"56838":0,"56839":2455,"56840":0,"56841":-1,"56842":0,"56843":6,"56844":706,"56845":2107,"56846":448,"56847":-1,"56848":-1,"56849":0,"56850":2163,"56851":0,"56852":0,"56853":0,"56854":0,"56855":0,"56856":2128,"56857":-1,"56858":-1,"56859":0,"56860":-1,"56861":0,"56862":0,"56863":0,"56864":-1,"56865":362,"56866":2555,"56867":0,"56868":0,"56869":12,"56870":0,"56871":0,"56872":-1,"56873":2308,"56874":0,"56875":-1,"56876":-1,"56877":0,"56878":-1,"56879":0,"56880":-1,"56881":-1,"56882":0,"56883":0,"56884":-1,"56885":-1,"56886":0,"56887":-1,"56888":2385,"56889":0,"56890":-1,"56891":108,"56892":0,"56893":-1,"56894":-1,"56895":924,"56896":0,"56897":25,"56898":-1,"56899":0,"56900":0,"56901":0,"56902":0,"56903":2030,"56904":-1,"56905":-1,"56906":0,"56907":0,"56908":0,"56909":98,"56910":0,"56911":0,"56912":706,"56913":0,"56914":0,"56915":0,"56916":341,"56917":-1,"56918":2209,"56919":0,"56920":2061,"56921":2426,"56922":-1,"56923":0,"56924":0,"56925":0,"56926":0,"56927":2543,"56928":2155,"56929":-1,"56930":-1,"56931":0,"56932":-1,"56933":-1,"56934":-1,"56935":2464,"56936":0,"56937":0,"56938":0,"56939":2612,"56940":-1,"56941":0,"56942":0,"56943":0,"56944":2202,"56945":0,"56946":2355,"56947":2500,"56948":0,"56949":2358,"56950":142,"56951":0,"56952":0,"56953":0,"56954":3,"56955":-1,"56956":0,"56957":-1,"56958":2311,"56959":-1,"56960":0,"56961":-1,"56962":-1,"56963":2559,"56964":0,"56965":0,"56966":2459,"56967":2246,"56968":0,"56969":-1,"56970":2383,"56971":2420,"56972":-1,"56973":2183,"56974":0,"56975":-1,"56976":39,"56977":0,"56978":2286,"56979":0,"56980":-1,"56981":0,"56982":0,"56983":27,"56984":-1,"56985":2658,"56986":2006,"56987":2482,"56988":0,"56989":-1,"56990":308,"56991":0,"56992":0,"56993":-1,"56994":0,"56995":-1,"56996":0,"56997":-1,"56998":0,"56999":2006,"57000":0,"57001":0,"57002":0,"57003":0,"57004":2503,"57005":0,"57006":0,"57007":0,"57008":2427,"57009":0,"57010":-1,"57011":0,"57012":0,"57013":418,"57014":0,"57015":0,"57016":0,"57017":2427,"57018":0,"57019":2527,"57020":2435,"57021":-1,"57022":-1,"57023":-1,"57024":0,"57025":126,"57026":0,"57027":2154,"57028":29,"57029":2673,"57030":0,"57031":-1,"57032":0,"57033":-1,"57034":0,"57035":0,"57036":-1,"57037":-1,"57038":0,"57039":2171,"57040":0,"57041":2572,"57042":637,"57043":-1,"57044":0,"57045":-1,"57046":-1,"57047":36,"57048":0,"57049":2008,"57050":-1,"57051":0,"57052":0,"57053":0,"57054":-1,"57055":0,"57056":35,"57057":-1,"57058":-1,"57059":0,"57060":0,"57061":2340,"57062":0,"57063":-1,"57064":2030,"57065":-1,"57066":0,"57067":472,"57068":0,"57069":0,"57070":0,"57071":2432,"57072":-1,"57073":0,"57074":2194,"57075":-1,"57076":0,"57077":0,"57078":2410,"57079":-1,"57080":0,"57081":0,"57082":2571,"57083":0,"57084":1993,"57085":-1,"57086":2450,"57087":2538,"57088":0,"57089":0,"57090":2097,"57091":0,"57092":2445,"57093":0,"57094":2675,"57095":2174,"57096":-1,"57097":0,"57098":-1,"57099":0,"57100":0,"57101":0,"57102":2575,"57103":-1,"57104":25,"57105":0,"57106":0,"57107":2286,"57108":0,"57109":-1,"57110":-1,"57111":-1,"57112":-1,"57113":-1,"57114":2302,"57115":0,"57116":-1,"57117":-1,"57118":0,"57119":0,"57120":298,"57121":-1,"57122":0,"57123":2110,"57124":-1,"57125":-1,"57126":-1,"57127":0,"57128":-1,"57129":0,"57130":0,"57131":-1,"57132":0,"57133":2273,"57134":0,"57135":-1,"57136":-1,"57137":0,"57138":-1,"57139":0,"57140":0,"57141":0,"57142":2566,"57143":2481,"57144":0,"57145":0,"57146":0,"57147":0,"57148":-1,"57149":-1,"57150":0,"57151":2478,"57152":-1,"57153":813,"57154":-1,"57155":-1,"57156":-1,"57157":350,"57158":0,"57159":2223,"57160":67,"57161":0,"57162":2241,"57163":2217,"57164":2424,"57165":2429,"57166":0,"57167":-1,"57168":-1,"57169":-1,"57170":0,"57171":0,"57172":0,"57173":2609,"57174":-1,"57175":-1,"57176":2066,"57177":0,"57178":0,"57179":0,"57180":0,"57181":2276,"57182":2064,"57183":2614,"57184":0,"57185":2171,"57186":-1,"57187":0,"57188":2083,"57189":2158,"57190":-1,"57191":2496,"57192":0,"57193":0,"57194":-1,"57195":2123,"57196":0,"57197":0,"57198":0,"57199":-1,"57200":0,"57201":0,"57202":2086,"57203":2097,"57204":-1,"57205":-1,"57206":2080,"57207":0,"57208":-1,"57209":-1,"57210":0,"57211":0,"57212":261,"57213":0,"57214":0,"57215":2079,"57216":-1,"57217":-1,"57218":2020,"57219":2002,"57220":-1,"57221":2599,"57222":0,"57223":0,"57224":-1,"57225":2514,"57226":-1,"57227":0,"57228":614,"57229":-1,"57230":0,"57231":2578,"57232":0,"57233":0,"57234":0,"57235":0,"57236":1995,"57237":-1,"57238":0,"57239":-1,"57240":0,"57241":0,"57242":0,"57243":0,"57244":0,"57245":0,"57246":0,"57247":2397,"57248":-1,"57249":2231,"57250":0,"57251":0,"57252":0,"57253":2611,"57254":2039,"57255":2029,"57256":0,"57257":2166,"57258":2435,"57259":-1,"57260":0,"57261":-1,"57262":-1,"57263":-1,"57264":0,"57265":2642,"57266":0,"57267":0,"57268":859,"57269":0,"57270":-1,"57271":2643,"57272":0,"57273":0,"57274":168,"57275":2054,"57276":-1,"57277":0,"57278":-1,"57279":-1,"57280":2303,"57281":0,"57282":0,"57283":0,"57284":0,"57285":-1,"57286":-1,"57287":0,"57288":-1,"57289":0,"57290":-1,"57291":-1,"57292":0,"57293":0,"57294":2448,"57295":-1,"57296":0,"57297":-1,"57298":0,"57299":-1,"57300":-1,"57301":0,"57302":2289,"57303":-1,"57304":-1,"57305":0,"57306":2147,"57307":2147,"57308":0,"57309":-1,"57310":2371,"57311":-1,"57312":-1,"57313":-1,"57314":0,"57315":-1,"57316":2217,"57317":-1,"57318":0,"57319":-1,"57320":-1,"57321":-1,"57322":-1,"57323":0,"57324":-1,"57325":2149,"57326":-1,"57327":-1,"57328":-1,"57329":0,"57330":-1,"57331":0,"57332":2479,"57333":2149,"57334":-1,"57335":-1,"57336":2449,"57337":-1,"57338":-1,"57339":0,"57340":2022,"57341":-1,"57342":0,"57343":-1,"57344":0,"57345":0,"57346":2631,"57347":298,"57348":2076,"57349":0,"57350":0,"57351":-1,"57352":-1,"57353":0,"57354":-1,"57355":2038,"57356":2561,"57357":2063,"57358":0,"57359":0,"57360":0,"57361":-1,"57362":0,"57363":-1,"57364":0,"57365":-1,"57366":0,"57367":0,"57368":0,"57369":-1,"57370":0,"57371":2455,"57372":0,"57373":0,"57374":0,"57375":0,"57376":-1,"57377":2339,"57378":-1,"57379":-1,"57380":-1,"57381":0,"57382":0,"57383":-1,"57384":0,"57385":0,"57386":0,"57387":-1,"57388":-1,"57389":34,"57390":-1,"57391":2436,"57392":-1,"57393":0,"57394":0,"57395":-1,"57396":2296,"57397":0,"57398":0,"57399":0,"57400":2110,"57401":-1,"57402":0,"57403":-1,"57404":-1,"57405":0,"57406":-1,"57407":2116,"57408":0,"57409":2179,"57410":-1,"57411":-1,"57412":-1,"57413":0,"57414":-1,"57415":-1,"57416":-1,"57417":-1,"57418":0,"57419":0,"57420":0,"57421":0,"57422":0,"57423":2436,"57424":0,"57425":0,"57426":462,"57427":2321,"57428":2034,"57429":0,"57430":-1,"57431":0,"57432":-1,"57433":0,"57434":2469,"57435":0,"57436":496,"57437":0,"57438":0,"57439":0,"57440":-1,"57441":0,"57442":906,"57443":2257,"57444":281,"57445":0,"57446":0,"57447":909,"57448":0,"57449":0,"57450":-1,"57451":2347,"57452":2491,"57453":0,"57454":0,"57455":-1,"57456":0,"57457":2563,"57458":864,"57459":-1,"57460":2385,"57461":-1,"57462":-1,"57463":0,"57464":-1,"57465":0,"57466":-1,"57467":2174,"57468":0,"57469":-1,"57470":-1,"57471":2313,"57472":2608,"57473":0,"57474":-1,"57475":0,"57476":0,"57477":0,"57478":-1,"57479":-1,"57480":2504,"57481":-1,"57482":0,"57483":2583,"57484":0,"57485":0,"57486":2118,"57487":0,"57488":2625,"57489":2459,"57490":-1,"57491":-1,"57492":-1,"57493":0,"57494":0,"57495":-1,"57496":0,"57497":0,"57498":-1,"57499":0,"57500":2033,"57501":-1,"57502":2379,"57503":0,"57504":0,"57505":0,"57506":-1,"57507":0,"57508":0,"57509":2315,"57510":-1,"57511":-1,"57512":0,"57513":0,"57514":0,"57515":0,"57516":0,"57517":0,"57518":2675,"57519":645,"57520":0,"57521":386,"57522":864,"57523":245,"57524":0,"57525":0,"57526":0,"57527":-1,"57528":-1,"57529":0,"57530":0,"57531":0,"57532":217,"57533":2297,"57534":0,"57535":-1,"57536":0,"57537":0,"57538":0,"57539":-1,"57540":2291,"57541":-1,"57542":0,"57543":0,"57544":-1,"57545":2046,"57546":2075,"57547":0,"57548":0,"57549":0,"57550":2047,"57551":0,"57552":-1,"57553":-1,"57554":462,"57555":-1,"57556":0,"57557":2589,"57558":-1,"57559":0,"57560":0,"57561":0,"57562":0,"57563":-1,"57564":136,"57565":-1,"57566":-1,"57567":0,"57568":-1,"57569":0,"57570":0,"57571":-1,"57572":-1,"57573":0,"57574":-1,"57575":-1,"57576":0,"57577":0,"57578":0,"57579":0,"57580":0,"57581":0,"57582":0,"57583":0,"57584":-1,"57585":2506,"57586":0,"57587":0,"57588":0,"57589":2343,"57590":-1,"57591":0,"57592":-1,"57593":0,"57594":-1,"57595":-1,"57596":136,"57597":199,"57598":2041,"57599":0,"57600":-1,"57601":-1,"57602":0,"57603":2050,"57604":-1,"57605":350,"57606":0,"57607":2503,"57608":2659,"57609":0,"57610":0,"57611":0,"57612":2448,"57613":0,"57614":2381,"57615":0,"57616":2339,"57617":0,"57618":-1,"57619":0,"57620":2660,"57621":0,"57622":0,"57623":0,"57624":2549,"57625":2123,"57626":0,"57627":-1,"57628":2066,"57629":0,"57630":-1,"57631":-1,"57632":0,"57633":-1,"57634":0,"57635":0,"57636":-1,"57637":2666,"57638":0,"57639":0,"57640":0,"57641":0,"57642":-1,"57643":0,"57644":0,"57645":-1,"57646":-1,"57647":-1,"57648":-1,"57649":-1,"57650":-1,"57651":0,"57652":126,"57653":2599,"57654":-1,"57655":0,"57656":0,"57657":-1,"57658":0,"57659":0,"57660":0,"57661":0,"57662":0,"57663":2528,"57664":46,"57665":-1,"57666":-1,"57667":0,"57668":0,"57669":2088,"57670":-1,"57671":-1,"57672":-1,"57673":0,"57674":2246,"57675":13,"57676":0,"57677":-1,"57678":544,"57679":-1,"57680":0,"57681":75,"57682":0,"57683":-1,"57684":33,"57685":1998,"57686":0,"57687":-1,"57688":0,"57689":0,"57690":0,"57691":2506,"57692":0,"57693":-1,"57694":-1,"57695":2402,"57696":2145,"57697":327,"57698":2031,"57699":-1,"57700":0,"57701":0,"57702":2560,"57703":-1,"57704":0,"57705":-1,"57706":0,"57707":0,"57708":-1,"57709":2318,"57710":0,"57711":0,"57712":2580,"57713":-1,"57714":2680,"57715":-1,"57716":0,"57717":0,"57718":2679,"57719":-1,"57720":-1,"57721":2410,"57722":0,"57723":0,"57724":-1,"57725":2004,"57726":-1,"57727":2425,"57728":-1,"57729":2055,"57730":0,"57731":2508,"57732":-1,"57733":2458,"57734":359,"57735":-1,"57736":-1,"57737":-1,"57738":0,"57739":-1,"57740":-1,"57741":0,"57742":-1,"57743":2449,"57744":-1,"57745":614,"57746":2403,"57747":-1,"57748":-1,"57749":-1,"57750":0,"57751":40,"57752":0,"57753":-1,"57754":145,"57755":0,"57756":2450,"57757":19,"57758":0,"57759":0,"57760":-1,"57761":0,"57762":0,"57763":0,"57764":-1,"57765":-1,"57766":2560,"57767":0,"57768":0,"57769":2075,"57770":-1,"57771":0,"57772":0,"57773":0,"57774":2493,"57775":0,"57776":0,"57777":-1,"57778":2289,"57779":0,"57780":0,"57781":0,"57782":2653,"57783":-1,"57784":0,"57785":0,"57786":353,"57787":-1,"57788":0,"57789":2655,"57790":0,"57791":0,"57792":0,"57793":0,"57794":0,"57795":-1,"57796":2178,"57797":0,"57798":0,"57799":2619,"57800":0,"57801":-1,"57802":0,"57803":0,"57804":-1,"57805":422,"57806":0,"57807":0,"57808":0,"57809":2381,"57810":0,"57811":0,"57812":2285,"57813":0,"57814":-1,"57815":0,"57816":-1,"57817":2415,"57818":0,"57819":-1,"57820":0,"57821":0,"57822":0,"57823":0,"57824":849,"57825":-1,"57826":0,"57827":612,"57828":0,"57829":0,"57830":-1,"57831":-1,"57832":0,"57833":0,"57834":-1,"57835":0,"57836":0,"57837":2591,"57838":2533,"57839":333,"57840":333,"57841":-1,"57842":0,"57843":-1,"57844":-1,"57845":0,"57846":0,"57847":2493,"57848":0,"57849":2154,"57850":0,"57851":0,"57852":0,"57853":-1,"57854":-1,"57855":0,"57856":0,"57857":0,"57858":-1,"57859":-1,"57860":559,"57861":-1,"57862":0,"57863":2469,"57864":2352,"57865":2014,"57866":2539,"57867":2552,"57868":2069,"57869":2257,"57870":2309,"57871":-1,"57872":-1,"57873":0,"57874":0,"57875":2283,"57876":0,"57877":0,"57878":-1,"57879":-1,"57880":0,"57881":0,"57882":-1,"57883":-1,"57884":-1,"57885":-1,"57886":2322,"57887":-1,"57888":2429,"57889":0,"57890":0,"57891":0,"57892":-1,"57893":2530,"57894":0,"57895":2129,"57896":2663,"57897":-1,"57898":-1,"57899":-1,"57900":-1,"57901":-1,"57902":0,"57903":0,"57904":0,"57905":0,"57906":0,"57907":0,"57908":-1,"57909":0,"57910":-1,"57911":2201,"57912":0,"57913":0,"57914":-1,"57915":-1,"57916":0,"57917":0,"57918":0,"57919":0,"57920":2228,"57921":0,"57922":0,"57923":0,"57924":2108,"57925":-1,"57926":0,"57927":2645,"57928":-1,"57929":-1,"57930":0,"57931":2564,"57932":-1,"57933":0,"57934":0,"57935":0,"57936":0,"57937":-1,"57938":0,"57939":58,"57940":0,"57941":-1,"57942":0,"57943":-1,"57944":2568,"57945":0,"57946":0,"57947":1991,"57948":-1,"57949":2628,"57950":2120,"57951":0,"57952":2195,"57953":2079,"57954":0,"57955":0,"57956":0,"57957":0,"57958":-1,"57959":0,"57960":-1,"57961":-1,"57962":0,"57963":2393,"57964":-1,"57965":2335,"57966":-1,"57967":2483,"57968":-1,"57969":-1,"57970":-1,"57971":0,"57972":2296,"57973":2124,"57974":2137,"57975":0,"57976":0,"57977":-1,"57978":0,"57979":0,"57980":2315,"57981":547,"57982":0,"57983":0,"57984":-1,"57985":-1,"57986":2434,"57987":0,"57988":0,"57989":-1,"57990":0,"57991":0,"57992":-1,"57993":-1,"57994":0,"57995":-1,"57996":2500,"57997":2407,"57998":0,"57999":-1,"58000":0,"58001":-1,"58002":2579,"58003":0,"58004":1991,"58005":6,"58006":0,"58007":2138,"58008":2287,"58009":-1,"58010":-1,"58011":2409,"58012":-1,"58013":0,"58014":-1,"58015":0,"58016":0,"58017":-1,"58018":0,"58019":0,"58020":0,"58021":-1,"58022":0,"58023":0,"58024":0,"58025":-1,"58026":-1,"58027":2189,"58028":0,"58029":-1,"58030":0,"58031":-1,"58032":0,"58033":0,"58034":2566,"58035":0,"58036":-1,"58037":2465,"58038":96,"58039":0,"58040":-1,"58041":-1,"58042":0,"58043":-1,"58044":-1,"58045":-1,"58046":-1,"58047":2150,"58048":-1,"58049":2486,"58050":0,"58051":2105,"58052":2229,"58053":-1,"58054":0,"58055":-1,"58056":0,"58057":-1,"58058":-1,"58059":-1,"58060":136,"58061":0,"58062":2297,"58063":-1,"58064":0,"58065":0,"58066":0,"58067":2307,"58068":-1,"58069":0,"58070":0,"58071":0,"58072":0,"58073":-1,"58074":0,"58075":-1,"58076":0,"58077":-1,"58078":0,"58079":-1,"58080":2261,"58081":2640,"58082":0,"58083":141,"58084":2150,"58085":0,"58086":0,"58087":2307,"58088":0,"58089":0,"58090":-1,"58091":706,"58092":-1,"58093":0,"58094":-1,"58095":-1,"58096":0,"58097":0,"58098":-1,"58099":0,"58100":2405,"58101":0,"58102":-1,"58103":0,"58104":0,"58105":-1,"58106":0,"58107":0,"58108":0,"58109":567,"58110":-1,"58111":2257,"58112":0,"58113":-1,"58114":-1,"58115":551,"58116":154,"58117":0,"58118":-1,"58119":-1,"58120":2278,"58121":-1,"58122":0,"58123":2380,"58124":0,"58125":0,"58126":2478,"58127":2234,"58128":2281,"58129":-1,"58130":2126,"58131":0,"58132":-1,"58133":2030,"58134":-1,"58135":0,"58136":-1,"58137":2038,"58138":-1,"58139":0,"58140":-1,"58141":0,"58142":-1,"58143":0,"58144":2182,"58145":0,"58146":37,"58147":0,"58148":0,"58149":0,"58150":-1,"58151":0,"58152":2098,"58153":-1,"58154":-1,"58155":0,"58156":0,"58157":0,"58158":2275,"58159":2179,"58160":2398,"58161":-1,"58162":-1,"58163":0,"58164":2170,"58165":2,"58166":0,"58167":0,"58168":-1,"58169":-1,"58170":0,"58171":-1,"58172":0,"58173":-1,"58174":-1,"58175":0,"58176":2311,"58177":2097,"58178":2109,"58179":2172,"58180":-1,"58181":0,"58182":-1,"58183":0,"58184":-1,"58185":-1,"58186":-1,"58187":-1,"58188":281,"58189":0,"58190":-1,"58191":-1,"58192":2437,"58193":-1,"58194":0,"58195":0,"58196":2625,"58197":0,"58198":0,"58199":906,"58200":-1,"58201":-1,"58202":-1,"58203":0,"58204":5,"58205":-1,"58206":0,"58207":-1,"58208":2622,"58209":2544,"58210":0,"58211":-1,"58212":0,"58213":2248,"58214":0,"58215":0,"58216":2001,"58217":0,"58218":2153,"58219":0,"58220":58,"58221":2517,"58222":0,"58223":0,"58224":0,"58225":2370,"58226":-1,"58227":-1,"58228":2436,"58229":0,"58230":-1,"58231":-1,"58232":0,"58233":2595,"58234":-1,"58235":0,"58236":2600,"58237":0,"58238":-1,"58239":2670,"58240":0,"58241":2103,"58242":0,"58243":0,"58244":0,"58245":0,"58246":-1,"58247":0,"58248":0,"58249":2425,"58250":693,"58251":-1,"58252":-1,"58253":0,"58254":0,"58255":0,"58256":0,"58257":2002,"58258":0,"58259":0,"58260":443,"58261":0,"58262":2434,"58263":0,"58264":0,"58265":2340,"58266":-1,"58267":2080,"58268":0,"58269":-1,"58270":0,"58271":-1,"58272":-1,"58273":2103,"58274":0,"58275":-1,"58276":-1,"58277":0,"58278":-1,"58279":936,"58280":2499,"58281":0,"58282":0,"58283":0,"58284":0,"58285":0,"58286":0,"58287":0,"58288":-1,"58289":-1,"58290":0,"58291":0,"58292":0,"58293":217,"58294":-1,"58295":-1,"58296":2458,"58297":-1,"58298":8,"58299":0,"58300":0,"58301":0,"58302":0,"58303":2187,"58304":0,"58305":327,"58306":0,"58307":0,"58308":-1,"58309":2470,"58310":-1,"58311":-1,"58312":0,"58313":3,"58314":312,"58315":1992,"58316":2053,"58317":0,"58318":-1,"58319":793,"58320":0,"58321":2037,"58322":-1,"58323":0,"58324":-1,"58325":0,"58326":-1,"58327":0,"58328":-1,"58329":-1,"58330":0,"58331":2017,"58332":483,"58333":0,"58334":0,"58335":-1,"58336":-1,"58337":0,"58338":-1,"58339":0,"58340":-1,"58341":2106,"58342":-1,"58343":0,"58344":0,"58345":-1,"58346":0,"58347":-1,"58348":0,"58349":0,"58350":-1,"58351":-1,"58352":2023,"58353":0,"58354":2427,"58355":-1,"58356":-1,"58357":0,"58358":2397,"58359":906,"58360":2457,"58361":0,"58362":0,"58363":300,"58364":2038,"58365":-1,"58366":2631,"58367":-1,"58368":0,"58369":-1,"58370":0,"58371":2552,"58372":-1,"58373":0,"58374":-1,"58375":2558,"58376":0,"58377":0,"58378":2089,"58379":2339,"58380":0,"58381":0,"58382":0,"58383":0,"58384":554,"58385":0,"58386":2629,"58387":0,"58388":0,"58389":-1,"58390":2494,"58391":0,"58392":-1,"58393":-1,"58394":-1,"58395":0,"58396":-1,"58397":0,"58398":2593,"58399":0,"58400":0,"58401":0,"58402":-1,"58403":0,"58404":2010,"58405":-1,"58406":0,"58407":-1,"58408":10,"58409":0,"58410":-1,"58411":2413,"58412":2615,"58413":0,"58414":0,"58415":0,"58416":2678,"58417":533,"58418":0,"58419":-1,"58420":0,"58421":2389,"58422":217,"58423":2068,"58424":2405,"58425":2424,"58426":0,"58427":-1,"58428":-1,"58429":0,"58430":-1,"58431":-1,"58432":0,"58433":-1,"58434":2659,"58435":0,"58436":2043,"58437":-1,"58438":0,"58439":0,"58440":-1,"58441":-1,"58442":2483,"58443":0,"58444":0,"58445":2280,"58446":0,"58447":0,"58448":-1,"58449":0,"58450":-1,"58451":-1,"58452":-1,"58453":0,"58454":0,"58455":-1,"58456":-1,"58457":0,"58458":0,"58459":2068,"58460":-1,"58461":-1,"58462":691,"58463":-1,"58464":0,"58465":0,"58466":0,"58467":2434,"58468":-1,"58469":2519,"58470":0,"58471":-1,"58472":64,"58473":0,"58474":4,"58475":0,"58476":-1,"58477":1,"58478":-1,"58479":0,"58480":0,"58481":0,"58482":735,"58483":21,"58484":0,"58485":0,"58486":-1,"58487":-1,"58488":2135,"58489":0,"58490":0,"58491":0,"58492":0,"58493":-1,"58494":-1,"58495":-1,"58496":0,"58497":-1,"58498":0,"58499":-1,"58500":0,"58501":2457,"58502":0,"58503":2322,"58504":0,"58505":-1,"58506":0,"58507":2667,"58508":701,"58509":23,"58510":-1,"58511":0,"58512":0,"58513":37,"58514":0,"58515":0,"58516":-1,"58517":0,"58518":0,"58519":0,"58520":-1,"58521":0,"58522":-1,"58523":0,"58524":0,"58525":-1,"58526":-1,"58527":-1,"58528":0,"58529":-1,"58530":308,"58531":19,"58532":0,"58533":0,"58534":-1,"58535":0,"58536":2352,"58537":2096,"58538":2464,"58539":0,"58540":0,"58541":2520,"58542":-1,"58543":0,"58544":284,"58545":-1,"58546":-1,"58547":-1,"58548":639,"58549":0,"58550":317,"58551":2655,"58552":0,"58553":-1,"58554":217,"58555":0,"58556":2546,"58557":0,"58558":-1,"58559":0,"58560":0,"58561":2206,"58562":0,"58563":2485,"58564":0,"58565":-1,"58566":2042,"58567":0,"58568":-1,"58569":-1,"58570":-1,"58571":0,"58572":-1,"58573":0,"58574":0,"58575":0,"58576":2151,"58577":2010,"58578":-1,"58579":0,"58580":2349,"58581":2675,"58582":0,"58583":0,"58584":0,"58585":75,"58586":-1,"58587":0,"58588":0,"58589":-1,"58590":2488,"58591":0,"58592":0,"58593":2081,"58594":-1,"58595":-1,"58596":0,"58597":-1,"58598":0,"58599":-1,"58600":0,"58601":0,"58602":472,"58603":2511,"58604":0,"58605":-1,"58606":0,"58607":-1,"58608":0,"58609":0,"58610":0,"58611":0,"58612":0,"58613":-1,"58614":264,"58615":-1,"58616":2638,"58617":0,"58618":2679,"58619":2615,"58620":0,"58621":924,"58622":0,"58623":-1,"58624":0,"58625":-1,"58626":2418,"58627":-1,"58628":0,"58629":-1,"58630":2436,"58631":-1,"58632":2116,"58633":-1,"58634":0,"58635":0,"58636":-1,"58637":0,"58638":-1,"58639":2426,"58640":2609,"58641":-1,"58642":-1,"58643":-1,"58644":2507,"58645":-1,"58646":154,"58647":0,"58648":2114,"58649":-1,"58650":544,"58651":2001,"58652":2144,"58653":0,"58654":0,"58655":0,"58656":2658,"58657":-1,"58658":0,"58659":-1,"58660":0,"58661":-1,"58662":-1,"58663":-1,"58664":-1,"58665":-1,"58666":0,"58667":0,"58668":2039,"58669":2117,"58670":2239,"58671":-1,"58672":-1,"58673":849,"58674":2618,"58675":-1,"58676":0,"58677":-1,"58678":0,"58679":0,"58680":-1,"58681":-1,"58682":-1,"58683":0,"58684":-1,"58685":0,"58686":-1,"58687":-1,"58688":-1,"58689":-1,"58690":-1,"58691":2540,"58692":0,"58693":39,"58694":-1,"58695":0,"58696":-1,"58697":0,"58698":0,"58699":0,"58700":-1,"58701":-1,"58702":0,"58703":0,"58704":-1,"58705":2579,"58706":0,"58707":0,"58708":0,"58709":0,"58710":0,"58711":612,"58712":0,"58713":0,"58714":2365,"58715":-1,"58716":0,"58717":0,"58718":0,"58719":0,"58720":2102,"58721":0,"58722":-1,"58723":-1,"58724":-1,"58725":2028,"58726":0,"58727":1999,"58728":2218,"58729":0,"58730":-1,"58731":-1,"58732":0,"58733":0,"58734":2245,"58735":0,"58736":0,"58737":0,"58738":0,"58739":-1,"58740":2309,"58741":0,"58742":2335,"58743":2281,"58744":0,"58745":-1,"58746":-1,"58747":0,"58748":308,"58749":-1,"58750":-1,"58751":170,"58752":0,"58753":-1,"58754":2272,"58755":-1,"58756":2446,"58757":0,"58758":-1,"58759":2632,"58760":0,"58761":2,"58762":0,"58763":-1,"58764":0,"58765":-1,"58766":2507,"58767":42,"58768":2358,"58769":-1,"58770":2174,"58771":0,"58772":-1,"58773":-1,"58774":-1,"58775":-1,"58776":-1,"58777":148,"58778":-1,"58779":0,"58780":0,"58781":-1,"58782":0,"58783":2418,"58784":2559,"58785":0,"58786":0,"58787":0,"58788":-1,"58789":-1,"58790":2386,"58791":0,"58792":0,"58793":-1,"58794":645,"58795":0,"58796":-1,"58797":2054,"58798":0,"58799":2465,"58800":0,"58801":2619,"58802":0,"58803":-1,"58804":-1,"58805":-1,"58806":-1,"58807":-1,"58808":0,"58809":0,"58810":0,"58811":2498,"58812":849,"58813":2294,"58814":0,"58815":2157,"58816":0,"58817":0,"58818":2258,"58819":693,"58820":0,"58821":-1,"58822":-1,"58823":0,"58824":0,"58825":104,"58826":-1,"58827":-1,"58828":0,"58829":0,"58830":0,"58831":-1,"58832":-1,"58833":0,"58834":0,"58835":2331,"58836":2513,"58837":-1,"58838":-1,"58839":0,"58840":0,"58841":2573,"58842":2069,"58843":0,"58844":2415,"58845":0,"58846":0,"58847":2127,"58848":0,"58849":639,"58850":2329,"58851":2367,"58852":0,"58853":0,"58854":0,"58855":-1,"58856":0,"58857":2320,"58858":0,"58859":-1,"58860":-1,"58861":-1,"58862":-1,"58863":-1,"58864":0,"58865":0,"58866":-1,"58867":-1,"58868":0,"58869":2047,"58870":2522,"58871":0,"58872":2633,"58873":798,"58874":0,"58875":-1,"58876":0,"58877":-1,"58878":-1,"58879":572,"58880":2584,"58881":2424,"58882":0,"58883":0,"58884":-1,"58885":0,"58886":2605,"58887":0,"58888":-1,"58889":168,"58890":-1,"58891":2460,"58892":-1,"58893":0,"58894":2383,"58895":0,"58896":496,"58897":0,"58898":-1,"58899":-1,"58900":301,"58901":-1,"58902":-1,"58903":-1,"58904":0,"58905":0,"58906":0,"58907":0,"58908":-1,"58909":0,"58910":2285,"58911":-1,"58912":0,"58913":0,"58914":0,"58915":0,"58916":0,"58917":0,"58918":-1,"58919":2062,"58920":2110,"58921":-1,"58922":0,"58923":798,"58924":0,"58925":-1,"58926":0,"58927":0,"58928":0,"58929":2660,"58930":2447,"58931":0,"58932":0,"58933":-1,"58934":-1,"58935":0,"58936":-1,"58937":4,"58938":0,"58939":2035,"58940":2390,"58941":-1,"58942":-1,"58943":0,"58944":-1,"58945":2273,"58946":2206,"58947":0,"58948":-1,"58949":0,"58950":0,"58951":-1,"58952":0,"58953":2299,"58954":-1,"58955":-1,"58956":0,"58957":2537,"58958":0,"58959":0,"58960":0,"58961":0,"58962":2168,"58963":-1,"58964":0,"58965":0,"58966":2365,"58967":0,"58968":0,"58969":2413,"58970":-1,"58971":0,"58972":-1,"58973":0,"58974":0,"58975":0,"58976":2229,"58977":2188,"58978":-1,"58979":2189,"58980":2177,"58981":0,"58982":-1,"58983":-1,"58984":0,"58985":-1,"58986":-1,"58987":0,"58988":0,"58989":-1,"58990":0,"58991":-1,"58992":0,"58993":-1,"58994":0,"58995":-1,"58996":-1,"58997":0,"58998":2662,"58999":0,"59000":0,"59001":-1,"59002":777,"59003":292,"59004":-1,"59005":0,"59006":30,"59007":0,"59008":0,"59009":0,"59010":0,"59011":2599,"59012":-1,"59013":-1,"59014":0,"59015":178,"59016":0,"59017":-1,"59018":-1,"59019":-1,"59020":0,"59021":0,"59022":0,"59023":0,"59024":-1,"59025":-1,"59026":-1,"59027":500,"59028":-1,"59029":0,"59030":0,"59031":0,"59032":0,"59033":0,"59034":-1,"59035":2041,"59036":0,"59037":-1,"59038":-1,"59039":0,"59040":0,"59041":0,"59042":2447,"59043":0,"59044":0,"59045":-1,"59046":0,"59047":0,"59048":-1,"59049":-1,"59050":-1,"59051":-1,"59052":0,"59053":0,"59054":777,"59055":2275,"59056":0,"59057":2135,"59058":508,"59059":0,"59060":0,"59061":0,"59062":0,"59063":0,"59064":0,"59065":0,"59066":0,"59067":-1,"59068":0,"59069":-1,"59070":0,"59071":264,"59072":0,"59073":2476,"59074":-1,"59075":837,"59076":2611,"59077":-1,"59078":0,"59079":2352,"59080":137,"59081":-1,"59082":2063,"59083":-1,"59084":-1,"59085":0,"59086":2447,"59087":-1,"59088":0,"59089":-1,"59090":0,"59091":2271,"59092":2256,"59093":-1,"59094":-1,"59095":-1,"59096":-1,"59097":0,"59098":0,"59099":0,"59100":554,"59101":-1,"59102":0,"59103":-1,"59104":0,"59105":-1,"59106":0,"59107":0,"59108":-1,"59109":-1,"59110":0,"59111":-1,"59112":0,"59113":2021,"59114":-1,"59115":2356,"59116":0,"59117":0,"59118":-1,"59119":-1,"59120":0,"59121":0,"59122":-1,"59123":0,"59124":2497,"59125":2550,"59126":2224,"59127":-1,"59128":2481,"59129":-1,"59130":0,"59131":0,"59132":219,"59133":2674,"59134":0,"59135":2304,"59136":0,"59137":-1,"59138":0,"59139":0,"59140":96,"59141":0,"59142":-1,"59143":0,"59144":0,"59145":-1,"59146":353,"59147":-1,"59148":0,"59149":0,"59150":0,"59151":0,"59152":0,"59153":-1,"59154":0,"59155":0,"59156":-1,"59157":0,"59158":0,"59159":0,"59160":-1,"59161":0,"59162":0,"59163":0,"59164":0,"59165":-1,"59166":-1,"59167":2675,"59168":0,"59169":-1,"59170":0,"59171":-1,"59172":2318,"59173":2570,"59174":2650,"59175":0,"59176":-1,"59177":-1,"59178":0,"59179":0,"59180":0,"59181":-1,"59182":0,"59183":2042,"59184":0,"59185":0,"59186":2091,"59187":0,"59188":0,"59189":2384,"59190":0,"59191":19,"59192":0,"59193":-1,"59194":-1,"59195":0,"59196":0,"59197":-1,"59198":547,"59199":0,"59200":14,"59201":0,"59202":0,"59203":-1,"59204":-1,"59205":0,"59206":-1,"59207":0,"59208":2117,"59209":-1,"59210":2679,"59211":-1,"59212":1997,"59213":787,"59214":0,"59215":12,"59216":-1,"59217":2565,"59218":2592,"59219":0,"59220":2631,"59221":-1,"59222":2421,"59223":-1,"59224":2213,"59225":0,"59226":-1,"59227":0,"59228":-1,"59229":-1,"59230":-1,"59231":0,"59232":0,"59233":0,"59234":0,"59235":2311,"59236":2300,"59237":520,"59238":-1,"59239":2272,"59240":2253,"59241":-1,"59242":0,"59243":0,"59244":0,"59245":2097,"59246":2556,"59247":0,"59248":0,"59249":-1,"59250":0,"59251":0,"59252":-1,"59253":0,"59254":0,"59255":-1,"59256":-1,"59257":2144,"59258":2674,"59259":2368,"59260":2305,"59261":-1,"59262":-1,"59263":-1,"59264":0,"59265":0,"59266":-1,"59267":-1,"59268":2136,"59269":0,"59270":0,"59271":0,"59272":2271,"59273":0,"59274":2209,"59275":2473,"59276":0,"59277":-1,"59278":0,"59279":2265,"59280":2158,"59281":772,"59282":0,"59283":-1,"59284":0,"59285":0,"59286":2630,"59287":2171,"59288":-1,"59289":19,"59290":0,"59291":0,"59292":0,"59293":150,"59294":0,"59295":2227,"59296":0,"59297":-1,"59298":-1,"59299":2263,"59300":-1,"59301":0,"59302":0,"59303":-1,"59304":2290,"59305":0,"59306":-1,"59307":0,"59308":-1,"59309":264,"59310":2054,"59311":2343,"59312":-1,"59313":0,"59314":-1,"59315":-1,"59316":-1,"59317":-1,"59318":0,"59319":0,"59320":0,"59321":0,"59322":0,"59323":0,"59324":0,"59325":0,"59326":0,"59327":0,"59328":0,"59329":2087,"59330":-1,"59331":3,"59332":104,"59333":0,"59334":2107,"59335":2500,"59336":33,"59337":0,"59338":2216,"59339":2264,"59340":0,"59341":-1,"59342":2597,"59343":2299,"59344":2589,"59345":-1,"59346":0,"59347":-1,"59348":2251,"59349":-1,"59350":0,"59351":0,"59352":2562,"59353":2056,"59354":551,"59355":0,"59356":0,"59357":0,"59358":0,"59359":0,"59360":2596,"59361":-1,"59362":0,"59363":0,"59364":-1,"59365":-1,"59366":301,"59367":0,"59368":2564,"59369":2436,"59370":0,"59371":0,"59372":2160,"59373":0,"59374":2001,"59375":-1,"59376":-1,"59377":-1,"59378":-1,"59379":2561,"59380":524,"59381":2539,"59382":0,"59383":0,"59384":-1,"59385":-1,"59386":720,"59387":0,"59388":-1,"59389":0,"59390":2367,"59391":0,"59392":-1,"59393":0,"59394":-1,"59395":2605,"59396":0,"59397":-1,"59398":2064,"59399":0,"59400":-1,"59401":2644,"59402":-1,"59403":-1,"59404":2232,"59405":9,"59406":0,"59407":0,"59408":-1,"59409":-1,"59410":0,"59411":0,"59412":-1,"59413":-1,"59414":-1,"59415":0,"59416":0,"59417":0,"59418":0,"59419":0,"59420":0,"59421":0,"59422":-1,"59423":0,"59424":-1,"59425":-1,"59426":0,"59427":0,"59428":0,"59429":-1,"59430":-1,"59431":2152,"59432":559,"59433":0,"59434":-1,"59435":-1,"59436":-1,"59437":-1,"59438":0,"59439":2482,"59440":2226,"59441":0,"59442":0,"59443":0,"59444":2510,"59445":0,"59446":0,"59447":0,"59448":-1,"59449":-1,"59450":0,"59451":5,"59452":2270,"59453":2047,"59454":0,"59455":-1,"59456":-1,"59457":0,"59458":292,"59459":0,"59460":0,"59461":0,"59462":0,"59463":31,"59464":2320,"59465":2325,"59466":2334,"59467":0,"59468":0,"59469":-1,"59470":-1,"59471":2343,"59472":-1,"59473":2554,"59474":0,"59475":0,"59476":0,"59477":0,"59478":2524,"59479":0,"59480":2337,"59481":-1,"59482":-1,"59483":-1,"59484":-1,"59485":0,"59486":2532,"59487":0,"59488":-1,"59489":2656,"59490":-1,"59491":0,"59492":-1,"59493":0,"59494":-1,"59495":0,"59496":-1,"59497":0,"59498":2280,"59499":0,"59500":0,"59501":2216,"59502":0,"59503":-1,"59504":2358,"59505":-1,"59506":-1,"59507":-1,"59508":2463,"59509":2656,"59510":0,"59511":0,"59512":-1,"59513":0,"59514":-1,"59515":-1,"59516":2177,"59517":-1,"59518":-1,"59519":-1,"59520":0,"59521":0,"59522":2446,"59523":0,"59524":0,"59525":0,"59526":0,"59527":-1,"59528":909,"59529":-1,"59530":936,"59531":2387,"59532":0,"59533":2090,"59534":2291,"59535":-1,"59536":-1,"59537":0,"59538":0,"59539":-1,"59540":133,"59541":-1,"59542":-1,"59543":0,"59544":-1,"59545":0,"59546":-1,"59547":0,"59548":2448,"59549":2626,"59550":2448,"59551":-1,"59552":2359,"59553":-1,"59554":0,"59555":2390,"59556":0,"59557":2567,"59558":0,"59559":-1,"59560":-1,"59561":0,"59562":0,"59563":0,"59564":0,"59565":-1,"59566":-1,"59567":-1,"59568":0,"59569":-1,"59570":0,"59571":-1,"59572":137,"59573":-1,"59574":2230,"59575":2576,"59576":0,"59577":-1,"59578":2584,"59579":0,"59580":2524,"59581":772,"59582":0,"59583":0,"59584":2163,"59585":2377,"59586":-1,"59587":0,"59588":0,"59589":-1,"59590":0,"59591":0,"59592":-1,"59593":0,"59594":-1,"59595":2023,"59596":2240,"59597":0,"59598":2657,"59599":0,"59600":0,"59601":-1,"59602":-1,"59603":2205,"59604":0,"59605":0,"59606":0,"59607":0,"59608":2034,"59609":0,"59610":2402,"59611":0,"59612":0,"59613":-1,"59614":-1,"59615":-1,"59616":0,"59617":0,"59618":-1,"59619":-1,"59620":0,"59621":-1,"59622":-1,"59623":-1,"59624":168,"59625":0,"59626":2458,"59627":104,"59628":0,"59629":0,"59630":-1,"59631":0,"59632":8,"59633":-1,"59634":-1,"59635":0,"59636":-1,"59637":0,"59638":0,"59639":2111,"59640":-1,"59641":-1,"59642":-1,"59643":2113,"59644":0,"59645":0,"59646":0,"59647":0,"59648":0,"59649":0,"59650":-1,"59651":-1,"59652":0,"59653":0,"59654":2237,"59655":0,"59656":2512,"59657":0,"59658":-1,"59659":-1,"59660":2420,"59661":2092,"59662":0,"59663":-1,"59664":-1,"59665":-1,"59666":0,"59667":2614,"59668":0,"59669":-1,"59670":2083,"59671":17,"59672":-1,"59673":0,"59674":2672,"59675":0,"59676":-1,"59677":0,"59678":0,"59679":0,"59680":0,"59681":0,"59682":2465,"59683":0,"59684":-1,"59685":2529,"59686":-1,"59687":2443,"59688":-1,"59689":0,"59690":-1,"59691":2519,"59692":0,"59693":0,"59694":0,"59695":0,"59696":0,"59697":-1,"59698":0,"59699":-1,"59700":0,"59701":0,"59702":-1,"59703":-1,"59704":-1,"59705":0,"59706":-1,"59707":25,"59708":0,"59709":308,"59710":0,"59711":-1,"59712":0,"59713":-1,"59714":0,"59715":0,"59716":0,"59717":-1,"59718":-1,"59719":-1,"59720":0,"59721":2015,"59722":2368,"59723":-1,"59724":0,"59725":-1,"59726":0,"59727":2132,"59728":2514,"59729":0,"59730":96,"59731":2636,"59732":0,"59733":0,"59734":-1,"59735":2515,"59736":2362,"59737":407,"59738":2248,"59739":2589,"59740":0,"59741":0,"59742":-1,"59743":-1,"59744":0,"59745":0,"59746":617,"59747":2454,"59748":2043,"59749":0,"59750":2282,"59751":2596,"59752":148,"59753":-1,"59754":0,"59755":-1,"59756":217,"59757":2293,"59758":0,"59759":0,"59760":0,"59761":0,"59762":-1,"59763":0,"59764":0,"59765":2140,"59766":0,"59767":0,"59768":-1,"59769":0,"59770":0,"59771":0,"59772":-1,"59773":0,"59774":-1,"59775":-1,"59776":0,"59777":0,"59778":2007,"59779":-1,"59780":-1,"59781":0,"59782":-1,"59783":0,"59784":2319,"59785":0,"59786":0,"59787":0,"59788":0,"59789":0,"59790":-1,"59791":0,"59792":246,"59793":0,"59794":0,"59795":-1,"59796":0,"59797":0,"59798":0,"59799":-1,"59800":0,"59801":0,"59802":-1,"59803":0,"59804":0,"59805":0,"59806":0,"59807":0,"59808":0,"59809":0,"59810":0,"59811":0,"59812":0,"59813":604,"59814":-1,"59815":-1,"59816":-1,"59817":0,"59818":2457,"59819":-1,"59820":-1,"59821":0,"59822":2014,"59823":-1,"59824":2253,"59825":2258,"59826":0,"59827":-1,"59828":0,"59829":0,"59830":-1,"59831":508,"59832":287,"59833":0,"59834":-1,"59835":0,"59836":0,"59837":-1,"59838":2633,"59839":-1,"59840":0,"59841":2338,"59842":0,"59843":-1,"59844":-1,"59845":0,"59846":0,"59847":0,"59848":-1,"59849":-1,"59850":0,"59851":2379,"59852":2610,"59853":-1,"59854":2058,"59855":0,"59856":2305,"59857":0,"59858":0,"59859":-1,"59860":-1,"59861":-1,"59862":-1,"59863":0,"59864":0,"59865":0,"59866":0,"59867":-1,"59868":-1,"59869":0,"59870":2267,"59871":0,"59872":2137,"59873":0,"59874":0,"59875":-1,"59876":0,"59877":0,"59878":-1,"59879":0,"59880":-1,"59881":-1,"59882":-1,"59883":0,"59884":2565,"59885":0,"59886":2058,"59887":-1,"59888":-1,"59889":0,"59890":0,"59891":2481,"59892":0,"59893":-1,"59894":2183,"59895":2664,"59896":-1,"59897":2095,"59898":0,"59899":2462,"59900":0,"59901":0,"59902":-1,"59903":350,"59904":-1,"59905":-1,"59906":2643,"59907":0,"59908":0,"59909":-1,"59910":-1,"59911":0,"59912":0,"59913":0,"59914":-1,"59915":0,"59916":-1,"59917":2073,"59918":-1,"59919":0,"59920":0,"59921":-1,"59922":2347,"59923":0,"59924":-1,"59925":-1,"59926":0,"59927":0,"59928":-1,"59929":0,"59930":0,"59931":-1,"59932":0,"59933":2615,"59934":0,"59935":-1,"59936":-1,"59937":0,"59938":0,"59939":2631,"59940":0,"59941":-1,"59942":2255,"59943":-1,"59944":0,"59945":0,"59946":0,"59947":0,"59948":-1,"59949":0,"59950":-1,"59951":0,"59952":0,"59953":849,"59954":-1,"59955":-1,"59956":0,"59957":-1,"59958":0,"59959":-1,"59960":0,"59961":0,"59962":-1,"59963":0,"59964":0,"59965":2179,"59966":0,"59967":0,"59968":-1,"59969":0,"59970":-1,"59971":0,"59972":2131,"59973":2296,"59974":0,"59975":-1,"59976":0,"59977":2430,"59978":-1,"59979":0,"59980":0,"59981":0,"59982":108,"59983":-1,"59984":0,"59985":310,"59986":0,"59987":0,"59988":2558,"59989":0,"59990":2036,"59991":0,"59992":-1,"59993":2015,"59994":578,"59995":0,"59996":-1,"59997":2169,"59998":-1,"59999":-1,"60000":0,"60001":0,"60002":-1,"60003":2243,"60004":2599,"60005":2331,"60006":2239,"60007":0,"60008":0,"60009":2457,"60010":2048,"60011":-1,"60012":2604,"60013":0,"60014":2650,"60015":2368,"60016":-1,"60017":-1,"60018":0,"60019":0,"60020":-1,"60021":-1,"60022":0,"60023":-1,"60024":2221,"60025":0,"60026":2172,"60027":-1,"60028":-1,"60029":0,"60030":-1,"60031":2603,"60032":2105,"60033":0,"60034":0,"60035":2128,"60036":0,"60037":0,"60038":-1,"60039":-1,"60040":2152,"60041":0,"60042":0,"60043":0,"60044":0,"60045":-1,"60046":0,"60047":0,"60048":-1,"60049":-1,"60050":-1,"60051":0,"60052":2677,"60053":-1,"60054":0,"60055":2551,"60056":2443,"60057":-1,"60058":-1,"60059":0,"60060":2138,"60061":-1,"60062":2025,"60063":0,"60064":0,"60065":0,"60066":34,"60067":2029,"60068":2178,"60069":0,"60070":2286,"60071":-1,"60072":0,"60073":0,"60074":2259,"60075":-1,"60076":0,"60077":0,"60078":-1,"60079":2484,"60080":-1,"60081":-1,"60082":40,"60083":0,"60084":0,"60085":2438,"60086":-1,"60087":0,"60088":-1,"60089":-1,"60090":0,"60091":2266,"60092":0,"60093":0,"60094":-1,"60095":0,"60096":-1,"60097":2605,"60098":0,"60099":-1,"60100":0,"60101":0,"60102":2581,"60103":27,"60104":0,"60105":2215,"60106":0,"60107":0,"60108":-1,"60109":-1,"60110":0,"60111":0,"60112":2571,"60113":0,"60114":0,"60115":0,"60116":0,"60117":0,"60118":0,"60119":2587,"60120":2292,"60121":-1,"60122":-1,"60123":-1,"60124":0,"60125":0,"60126":0,"60127":2561,"60128":0,"60129":-1,"60130":-1,"60131":-1,"60132":-1,"60133":198,"60134":0,"60135":-1,"60136":2541,"60137":0,"60138":2020,"60139":-1,"60140":-1,"60141":-1,"60142":2246,"60143":0,"60144":0,"60145":0,"60146":0,"60147":-1,"60148":0,"60149":0,"60150":0,"60151":-1,"60152":20,"60153":-1,"60154":-1,"60155":-1,"60156":2072,"60157":2212,"60158":2423,"60159":0,"60160":0,"60161":2194,"60162":-1,"60163":0,"60164":0,"60165":0,"60166":0,"60167":-1,"60168":-1,"60169":0,"60170":-1,"60171":-1,"60172":-1,"60173":0,"60174":-1,"60175":-1,"60176":2642,"60177":-1,"60178":-1,"60179":-1,"60180":0,"60181":-1,"60182":2379,"60183":58,"60184":0,"60185":0,"60186":2377,"60187":2542,"60188":0,"60189":0,"60190":2474,"60191":0,"60192":-1,"60193":0,"60194":-1,"60195":0,"60196":0,"60197":2106,"60198":-1,"60199":0,"60200":-1,"60201":2168,"60202":-1,"60203":293,"60204":2657,"60205":-1,"60206":-1,"60207":2347,"60208":-1,"60209":2182,"60210":-1,"60211":-1,"60212":0,"60213":-1,"60214":0,"60215":0,"60216":0,"60217":0,"60218":2634,"60219":0,"60220":-1,"60221":2142,"60222":-1,"60223":0,"60224":-1,"60225":0,"60226":0,"60227":-1,"60228":0,"60229":-1,"60230":0,"60231":0,"60232":38,"60233":170,"60234":0,"60235":2185,"60236":0,"60237":0,"60238":-1,"60239":-1,"60240":2022,"60241":0,"60242":-1,"60243":0,"60244":2417,"60245":-1,"60246":-1,"60247":0,"60248":0,"60249":-1,"60250":544,"60251":0,"60252":0,"60253":-1,"60254":-1,"60255":2311,"60256":-1,"60257":-1,"60258":2593,"60259":0,"60260":0,"60261":0,"60262":2294,"60263":-1,"60264":0,"60265":0,"60266":0,"60267":2355,"60268":0,"60269":0,"60270":0,"60271":0,"60272":-1,"60273":0,"60274":2297,"60275":-1,"60276":2571,"60277":362,"60278":0,"60279":2548,"60280":-1,"60281":2099,"60282":-1,"60283":-1,"60284":520,"60285":0,"60286":-1,"60287":2144,"60288":0,"60289":0,"60290":0,"60291":0,"60292":-1,"60293":2222,"60294":0,"60295":0,"60296":-1,"60297":14,"60298":2173,"60299":-1,"60300":-1,"60301":0,"60302":0,"60303":-1,"60304":0,"60305":0,"60306":2312,"60307":0,"60308":22,"60309":-1,"60310":-1,"60311":-1,"60312":0,"60313":2413,"60314":0,"60315":0,"60316":-1,"60317":2658,"60318":-1,"60319":0,"60320":2054,"60321":0,"60322":0,"60323":0,"60324":-1,"60325":-1,"60326":-1,"60327":0,"60328":0,"60329":0,"60330":620,"60331":2388,"60332":2630,"60333":2424,"60334":0,"60335":2393,"60336":0,"60337":0,"60338":0,"60339":0,"60340":422,"60341":-1,"60342":-1,"60343":0,"60344":-1,"60345":-1,"60346":0,"60347":1993,"60348":0,"60349":0,"60350":0,"60351":-1,"60352":2246,"60353":0,"60354":-1,"60355":-1,"60356":312,"60357":0,"60358":-1,"60359":0,"60360":0,"60361":-1,"60362":0,"60363":0,"60364":-1,"60365":-1,"60366":0,"60367":2228,"60368":0,"60369":0,"60370":2464,"60371":0,"60372":0,"60373":0,"60374":2663,"60375":0,"60376":0,"60377":0,"60378":-1,"60379":2016,"60380":-1,"60381":4,"60382":0,"60383":-1,"60384":0,"60385":0,"60386":-1,"60387":0,"60388":2433,"60389":2249,"60390":-1,"60391":-1,"60392":-1,"60393":2082,"60394":2200,"60395":2617,"60396":0,"60397":0,"60398":0,"60399":2481,"60400":2631,"60401":0,"60402":0,"60403":-1,"60404":-1,"60405":0,"60406":0,"60407":0,"60408":0,"60409":2026,"60410":-1,"60411":-1,"60412":0,"60413":2401,"60414":0,"60415":0,"60416":0,"60417":31,"60418":0,"60419":0,"60420":0,"60421":0,"60422":0,"60423":0,"60424":-1,"60425":-1,"60426":0,"60427":0,"60428":-1,"60429":0,"60430":0,"60431":0,"60432":0,"60433":2166,"60434":-1,"60435":-1,"60436":0,"60437":0,"60438":-1,"60439":-1,"60440":2406,"60441":-1,"60442":0,"60443":2066,"60444":-1,"60445":-1,"60446":-1,"60447":-1,"60448":2611,"60449":0,"60450":0,"60451":0,"60452":2158,"60453":-1,"60454":0,"60455":-1,"60456":0,"60457":-1,"60458":0,"60459":2432,"60460":2498,"60461":0,"60462":-1,"60463":-1,"60464":0,"60465":2625,"60466":0,"60467":2528,"60468":-1,"60469":-1,"60470":2631,"60471":0,"60472":2483,"60473":2243,"60474":-1,"60475":0,"60476":0,"60477":264,"60478":2259,"60479":0,"60480":0,"60481":2565,"60482":2239,"60483":2131,"60484":2136,"60485":2452,"60486":-1,"60487":0,"60488":2206,"60489":0,"60490":0,"60491":2605,"60492":2395,"60493":2157,"60494":0,"60495":0,"60496":-1,"60497":0,"60498":-1,"60499":2557,"60500":-1,"60501":-1,"60502":2210,"60503":0,"60504":2176,"60505":-1,"60506":0,"60507":0,"60508":2094,"60509":0,"60510":-1,"60511":2140,"60512":-1,"60513":0,"60514":2063,"60515":-1,"60516":0,"60517":2321,"60518":2642,"60519":-1,"60520":2388,"60521":0,"60522":0,"60523":2548,"60524":0,"60525":0,"60526":2436,"60527":-1,"60528":0,"60529":2130,"60530":-1,"60531":412,"60532":0,"60533":-1,"60534":0,"60535":-1,"60536":-1,"60537":0,"60538":0,"60539":2061,"60540":-1,"60541":0,"60542":-1,"60543":-1,"60544":-1,"60545":0,"60546":-1,"60547":-1,"60548":0,"60549":0,"60550":2388,"60551":101,"60552":0,"60553":-1,"60554":0,"60555":0,"60556":2677,"60557":0,"60558":0,"60559":0,"60560":-1,"60561":38,"60562":0,"60563":0,"60564":0,"60565":-1,"60566":0,"60567":-1,"60568":0,"60569":0,"60570":0,"60571":0,"60572":0,"60573":-1,"60574":-1,"60575":0,"60576":2025,"60577":-1,"60578":0,"60579":2064,"60580":2164,"60581":0,"60582":2231,"60583":2212,"60584":0,"60585":837,"60586":-1,"60587":-1,"60588":-1,"60589":2676,"60590":2130,"60591":0,"60592":0,"60593":2067,"60594":0,"60595":720,"60596":-1,"60597":-1,"60598":2547,"60599":0,"60600":0,"60601":0,"60602":0,"60603":0,"60604":-1,"60605":-1,"60606":0,"60607":-1,"60608":-1,"60609":2229,"60610":-1,"60611":-1,"60612":2648,"60613":-1,"60614":-1,"60615":-1,"60616":-1,"60617":-1,"60618":2349,"60619":-1,"60620":0,"60621":2559,"60622":0,"60623":2221,"60624":0,"60625":0,"60626":2196,"60627":0,"60628":2178,"60629":2063,"60630":0,"60631":-1,"60632":284,"60633":0,"60634":2588,"60635":-1,"60636":2261,"60637":663,"60638":0,"60639":-1,"60640":0,"60641":-1,"60642":2177,"60643":-1,"60644":-1,"60645":0,"60646":0,"60647":-1,"60648":-1,"60649":0,"60650":2208,"60651":0,"60652":2006,"60653":0,"60654":-1,"60655":0,"60656":-1,"60657":0,"60658":-1,"60659":0,"60660":0,"60661":0,"60662":-1,"60663":-1,"60664":45,"60665":0,"60666":2460,"60667":2627,"60668":-1,"60669":0,"60670":34,"60671":2411,"60672":0,"60673":0,"60674":2266,"60675":-1,"60676":0,"60677":0,"60678":0,"60679":0,"60680":0,"60681":0,"60682":2667,"60683":-1,"60684":0,"60685":-1,"60686":0,"60687":2077,"60688":0,"60689":2273,"60690":0,"60691":-1,"60692":-1,"60693":0,"60694":906,"60695":2528,"60696":2407,"60697":514,"60698":-1,"60699":2073,"60700":0,"60701":551,"60702":0,"60703":-1,"60704":209,"60705":0,"60706":-1,"60707":0,"60708":2614,"60709":198,"60710":0,"60711":0,"60712":0,"60713":2557,"60714":0,"60715":-1,"60716":0,"60717":2157,"60718":0,"60719":0,"60720":0,"60721":-1,"60722":2605,"60723":0,"60724":-1,"60725":-1,"60726":0,"60727":0,"60728":0,"60729":0,"60730":0,"60731":0,"60732":0,"60733":-1,"60734":2334,"60735":-1,"60736":-1,"60737":0,"60738":2291,"60739":-1,"60740":2037,"60741":0,"60742":0,"60743":0,"60744":0,"60745":-1,"60746":2590,"60747":706,"60748":0,"60749":0,"60750":-1,"60751":0,"60752":-1,"60753":-1,"60754":0,"60755":0,"60756":-1,"60757":0,"60758":-1,"60759":-1,"60760":0,"60761":2295,"60762":0,"60763":-1,"60764":-1,"60765":0,"60766":0,"60767":-1,"60768":0,"60769":-1,"60770":2079,"60771":2195,"60772":-1,"60773":2076,"60774":1995,"60775":2004,"60776":-1,"60777":0,"60778":-1,"60779":0,"60780":0,"60781":2448,"60782":2539,"60783":-1,"60784":308,"60785":-1,"60786":0,"60787":-1,"60788":0,"60789":2107,"60790":2177,"60791":-1,"60792":-1,"60793":0,"60794":0,"60795":0,"60796":-1,"60797":2600,"60798":-1,"60799":2444,"60800":-1,"60801":0,"60802":0,"60803":-1,"60804":2068,"60805":-1,"60806":2456,"60807":524,"60808":0,"60809":0,"60810":2614,"60811":0,"60812":0,"60813":0,"60814":0,"60815":2480,"60816":2318,"60817":-1,"60818":0,"60819":2096,"60820":2549,"60821":2381,"60822":0,"60823":0,"60824":-1,"60825":2150,"60826":30,"60827":-1,"60828":0,"60829":2231,"60830":-1,"60831":-1,"60832":2405,"60833":0,"60834":0,"60835":0,"60836":0,"60837":0,"60838":475,"60839":0,"60840":0,"60841":0,"60842":-1,"60843":0,"60844":0,"60845":-1,"60846":-1,"60847":-1,"60848":0,"60849":-1,"60850":2238,"60851":2456,"60852":-1,"60853":0,"60854":-1,"60855":-1,"60856":2303,"60857":0,"60858":-1,"60859":-1,"60860":-1,"60861":0,"60862":448,"60863":-1,"60864":0,"60865":-1,"60866":2459,"60867":0,"60868":0,"60869":0,"60870":2024,"60871":0,"60872":-1,"60873":0,"60874":0,"60875":0,"60876":2153,"60877":2076,"60878":0,"60879":0,"60880":2226,"60881":-1,"60882":-1,"60883":0,"60884":2055,"60885":-1,"60886":0,"60887":0,"60888":-1,"60889":0,"60890":0,"60891":-1,"60892":0,"60893":2631,"60894":0,"60895":0,"60896":0,"60897":0,"60898":0,"60899":-1,"60900":0,"60901":2397,"60902":2335,"60903":0,"60904":-1,"60905":0,"60906":508,"60907":0,"60908":0,"60909":2125,"60910":2024,"60911":0,"60912":0,"60913":0,"60914":0,"60915":0,"60916":0,"60917":-1,"60918":2170,"60919":0,"60920":0,"60921":0,"60922":-1,"60923":-1,"60924":-1,"60925":2519,"60926":0,"60927":0,"60928":0,"60929":0,"60930":0,"60931":0,"60932":0,"60933":0,"60934":0,"60935":0,"60936":2170,"60937":-1,"60938":2035,"60939":0,"60940":0,"60941":397,"60942":2540,"60943":-1,"60944":2101,"60945":2120,"60946":-1,"60947":0,"60948":-1,"60949":0,"60950":299,"60951":0,"60952":-1,"60953":-1,"60954":0,"60955":2119,"60956":2008,"60957":2473,"60958":-1,"60959":0,"60960":0,"60961":-1,"60962":39,"60963":-1,"60964":-1,"60965":0,"60966":-1,"60967":-1,"60968":-1,"60969":-1,"60970":0,"60971":0,"60972":0,"60973":0,"60974":2578,"60975":2498,"60976":514,"60977":0,"60978":0,"60979":0,"60980":2130,"60981":0,"60982":0,"60983":-1,"60984":0,"60985":-1,"60986":-1,"60987":0,"60988":-1,"60989":2483,"60990":0,"60991":0,"60992":-1,"60993":0,"60994":-1,"60995":0,"60996":0,"60997":0,"60998":0,"60999":0,"61000":-1,"61001":2300,"61002":2072,"61003":2322,"61004":-1,"61005":2491,"61006":-1,"61007":2024,"61008":0,"61009":0,"61010":-1,"61011":0,"61012":2542,"61013":0,"61014":2522,"61015":-1,"61016":2584,"61017":0,"61018":-1,"61019":0,"61020":-1,"61021":0,"61022":2339,"61023":2319,"61024":0,"61025":0,"61026":2461,"61027":-1,"61028":0,"61029":-1,"61030":-1,"61031":-1,"61032":0,"61033":0,"61034":0,"61035":0,"61036":-1,"61037":-1,"61038":-1,"61039":0,"61040":2249,"61041":-1,"61042":0,"61043":0,"61044":0,"61045":0,"61046":-1,"61047":0,"61048":-1,"61049":0,"61050":2531,"61051":2632,"61052":0,"61053":0,"61054":-1,"61055":0,"61056":0,"61057":0,"61058":345,"61059":-1,"61060":0,"61061":-1,"61062":-1,"61063":-1,"61064":0,"61065":2066,"61066":-1,"61067":0,"61068":0,"61069":0,"61070":-1,"61071":-1,"61072":0,"61073":-1,"61074":0,"61075":-1,"61076":0,"61077":-1,"61078":-1,"61079":0,"61080":0,"61081":-1,"61082":0,"61083":0,"61084":2118,"61085":0,"61086":0,"61087":2220,"61088":0,"61089":-1,"61090":0,"61091":0,"61092":-1,"61093":2123,"61094":-1,"61095":0,"61096":0,"61097":2270,"61098":2327,"61099":0,"61100":0,"61101":2267,"61102":0,"61103":2424,"61104":0,"61105":2522,"61106":2311,"61107":0,"61108":-1,"61109":-1,"61110":0,"61111":2404,"61112":2383,"61113":-1,"61114":2330,"61115":0,"61116":-1,"61117":2024,"61118":-1,"61119":0,"61120":0,"61121":2281,"61122":-1,"61123":0,"61124":-1,"61125":0,"61126":0,"61127":-1,"61128":0,"61129":42,"61130":2656,"61131":0,"61132":0,"61133":0,"61134":126,"61135":0,"61136":-1,"61137":0,"61138":0,"61139":-1,"61140":0,"61141":0,"61142":1996,"61143":-1,"61144":-1,"61145":12,"61146":0,"61147":2579,"61148":0,"61149":0,"61150":237,"61151":2103,"61152":0,"61153":0,"61154":2387,"61155":-1,"61156":-1,"61157":2235,"61158":-1,"61159":0,"61160":2371,"61161":2476,"61162":0,"61163":0,"61164":0,"61165":0,"61166":-1,"61167":0,"61168":-1,"61169":2378,"61170":-1,"61171":0,"61172":2264,"61173":2436,"61174":-1,"61175":-1,"61176":2270,"61177":0,"61178":-1,"61179":0,"61180":0,"61181":-1,"61182":637,"61183":2179,"61184":2379,"61185":0,"61186":-1,"61187":0,"61188":0,"61189":0,"61190":2482,"61191":2433,"61192":-1,"61193":2153,"61194":-1,"61195":0,"61196":-1,"61197":-1,"61198":0,"61199":0,"61200":2334,"61201":-1,"61202":544,"61203":-1,"61204":-1,"61205":2044,"61206":0,"61207":2005,"61208":0,"61209":0,"61210":-1,"61211":0,"61212":2493,"61213":0,"61214":0,"61215":317,"61216":2096,"61217":0,"61218":0,"61219":2017,"61220":0,"61221":2434,"61222":-1,"61223":0,"61224":0,"61225":2341,"61226":-1,"61227":10,"61228":402,"61229":-1,"61230":0,"61231":0,"61232":2303,"61233":0,"61234":-1,"61235":-1,"61236":2329,"61237":0,"61238":-1,"61239":-1,"61240":0,"61241":0,"61242":2592,"61243":-1,"61244":0,"61245":0,"61246":0,"61247":-1,"61248":-1,"61249":-1,"61250":2575,"61251":-1,"61252":-1,"61253":2501,"61254":0,"61255":0,"61256":0,"61257":-1,"61258":-1,"61259":2470,"61260":0,"61261":0,"61262":-1,"61263":0,"61264":462,"61265":2513,"61266":0,"61267":0,"61268":639,"61269":0,"61270":2139,"61271":2127,"61272":-1,"61273":2623,"61274":0,"61275":2374,"61276":2216,"61277":0,"61278":-1,"61279":0,"61280":-1,"61281":2172,"61282":0,"61283":0,"61284":-1,"61285":310,"61286":0,"61287":-1,"61288":0,"61289":-1,"61290":0,"61291":0,"61292":-1,"61293":-1,"61294":-1,"61295":0,"61296":2172,"61297":0,"61298":-1,"61299":0,"61300":-1,"61301":-1,"61302":-1,"61303":0,"61304":0,"61305":0,"61306":0,"61307":2191,"61308":0,"61309":0,"61310":0,"61311":0,"61312":2428,"61313":-1,"61314":2070,"61315":0,"61316":-1,"61317":-1,"61318":-1,"61319":0,"61320":0,"61321":0,"61322":0,"61323":-1,"61324":292,"61325":2208,"61326":-1,"61327":0,"61328":0,"61329":0,"61330":2216,"61331":0,"61332":0,"61333":-1,"61334":0,"61335":0,"61336":109,"61337":448,"61338":0,"61339":-1,"61340":-1,"61341":-1,"61342":0,"61343":-1,"61344":-1,"61345":2496,"61346":0,"61347":2126,"61348":0,"61349":0,"61350":-1,"61351":0,"61352":2588,"61353":0,"61354":2447,"61355":-1,"61356":0,"61357":-1,"61358":-1,"61359":909,"61360":-1,"61361":2202,"61362":0,"61363":-1,"61364":0,"61365":-1,"61366":0,"61367":0,"61368":0,"61369":-1,"61370":-1,"61371":-1,"61372":350,"61373":170,"61374":0,"61375":0,"61376":-1,"61377":0,"61378":0,"61379":-1,"61380":0,"61381":0,"61382":0,"61383":0,"61384":0,"61385":0,"61386":-1,"61387":-1,"61388":0,"61389":2659,"61390":-1,"61391":0,"61392":2230,"61393":-1,"61394":0,"61395":0,"61396":404,"61397":2478,"61398":-1,"61399":-1,"61400":0,"61401":2499,"61402":0,"61403":2020,"61404":0,"61405":0,"61406":0,"61407":-1,"61408":-1,"61409":2609,"61410":-1,"61411":0,"61412":2486,"61413":2386,"61414":0,"61415":0,"61416":-1,"61417":0,"61418":2368,"61419":178,"61420":-1,"61421":104,"61422":0,"61423":0,"61424":2312,"61425":0,"61426":2145,"61427":0,"61428":603,"61429":0,"61430":0,"61431":-1,"61432":0,"61433":-1,"61434":0,"61435":0,"61436":-1,"61437":-1,"61438":0,"61439":37,"61440":0,"61441":27,"61442":0,"61443":-1,"61444":-1,"61445":0,"61446":2008,"61447":-1,"61448":-1,"61449":0,"61450":0,"61451":-1,"61452":2161,"61453":-1,"61454":0,"61455":0,"61456":2181,"61457":2510,"61458":2265,"61459":-1,"61460":0,"61461":0,"61462":0,"61463":77,"61464":0,"61465":0,"61466":0,"61467":0,"61468":0,"61469":2425,"61470":0,"61471":2348,"61472":39,"61473":0,"61474":0,"61475":0,"61476":0,"61477":2083,"61478":2652,"61479":2499,"61480":500,"61481":0,"61482":-1,"61483":2249,"61484":2597,"61485":0,"61486":2100,"61487":0,"61488":-1,"61489":88,"61490":0,"61491":-1,"61492":0,"61493":0,"61494":0,"61495":0,"61496":-1,"61497":2004,"61498":-1,"61499":327,"61500":0,"61501":-1,"61502":2487,"61503":-1,"61504":-1,"61505":2533,"61506":0,"61507":0,"61508":2389,"61509":0,"61510":102,"61511":0,"61512":0,"61513":2152,"61514":2296,"61515":2100,"61516":-1,"61517":0,"61518":0,"61519":-1,"61520":-1,"61521":2024,"61522":0,"61523":0,"61524":220,"61525":0,"61526":0,"61527":0,"61528":402,"61529":0,"61530":2028,"61531":-1,"61532":0,"61533":0,"61534":-1,"61535":2564,"61536":2670,"61537":-1,"61538":-1,"61539":0,"61540":0,"61541":0,"61542":2010,"61543":0,"61544":0,"61545":0,"61546":2331,"61547":168,"61548":-1,"61549":2068,"61550":0,"61551":-1,"61552":0,"61553":-1,"61554":-1,"61555":0,"61556":2245,"61557":-1,"61558":0,"61559":2472,"61560":2009,"61561":-1,"61562":-1,"61563":2475,"61564":0,"61565":-1,"61566":2662,"61567":-1,"61568":0,"61569":2487,"61570":-1,"61571":-1,"61572":0,"61573":0,"61574":-1,"61575":-1,"61576":0,"61577":209,"61578":2176,"61579":2502,"61580":2006,"61581":0,"61582":-1,"61583":-1,"61584":-1,"61585":2526,"61586":2549,"61587":0,"61588":2132,"61589":0,"61590":-1,"61591":0,"61592":2557,"61593":0,"61594":0,"61595":300,"61596":-1,"61597":-1,"61598":2456,"61599":0,"61600":-1,"61601":2251,"61602":-1,"61603":0,"61604":-1,"61605":2298,"61606":-1,"61607":-1,"61608":2182,"61609":2111,"61610":0,"61611":1992,"61612":-1,"61613":0,"61614":0,"61615":-1,"61616":-1,"61617":0,"61618":0,"61619":2451,"61620":-1,"61621":-1,"61622":0,"61623":2312,"61624":-1,"61625":0,"61626":0,"61627":8,"61628":-1,"61629":0,"61630":0,"61631":0,"61632":-1,"61633":-1,"61634":0,"61635":-1,"61636":2515,"61637":-1,"61638":0,"61639":0,"61640":-1,"61641":2520,"61642":2036,"61643":-1,"61644":-1,"61645":-1,"61646":2086,"61647":0,"61648":2134,"61649":-1,"61650":0,"61651":2473,"61652":0,"61653":604,"61654":-1,"61655":0,"61656":0,"61657":2438,"61658":0,"61659":-1,"61660":0,"61661":0,"61662":-1,"61663":0,"61664":-1,"61665":-1,"61666":-1,"61667":0,"61668":0,"61669":0,"61670":0,"61671":0,"61672":0,"61673":2090,"61674":-1,"61675":2126,"61676":0,"61677":-1,"61678":0,"61679":0,"61680":-1,"61681":0,"61682":-1,"61683":-1,"61684":0,"61685":2455,"61686":0,"61687":2066,"61688":-1,"61689":2282,"61690":0,"61691":0,"61692":0,"61693":578,"61694":353,"61695":292,"61696":-1,"61697":0,"61698":2429,"61699":0,"61700":-1,"61701":2646,"61702":0,"61703":0,"61704":2602,"61705":663,"61706":2469,"61707":0,"61708":0,"61709":0,"61710":-1,"61711":0,"61712":0,"61713":-1,"61714":0,"61715":0,"61716":0,"61717":-1,"61718":-1,"61719":-1,"61720":0,"61721":2621,"61722":-1,"61723":3,"61724":2650,"61725":0,"61726":-1,"61727":2521,"61728":0,"61729":0,"61730":0,"61731":2304,"61732":-1,"61733":-1,"61734":-1,"61735":-1,"61736":0,"61737":2087,"61738":-1,"61739":735,"61740":2453,"61741":-1,"61742":2191,"61743":0,"61744":0,"61745":-1,"61746":-1,"61747":0,"61748":0,"61749":-1,"61750":-1,"61751":2281,"61752":0,"61753":2103,"61754":2345,"61755":2108,"61756":-1,"61757":2392,"61758":2218,"61759":0,"61760":455,"61761":2359,"61762":-1,"61763":-1,"61764":2333,"61765":0,"61766":0,"61767":0,"61768":-1,"61769":2285,"61770":0,"61771":-1,"61772":0,"61773":-1,"61774":0,"61775":0,"61776":-1,"61777":-1,"61778":150,"61779":2426,"61780":88,"61781":-1,"61782":0,"61783":2251,"61784":0,"61785":-1,"61786":0,"61787":0,"61788":2277,"61789":0,"61790":2302,"61791":0,"61792":0,"61793":0,"61794":0,"61795":-1,"61796":-1,"61797":0,"61798":-1,"61799":-1,"61800":2074,"61801":0,"61802":0,"61803":0,"61804":2063,"61805":2123,"61806":0,"61807":2275,"61808":0,"61809":0,"61810":0,"61811":0,"61812":0,"61813":0,"61814":-1,"61815":0,"61816":0,"61817":0,"61818":2621,"61819":0,"61820":2212,"61821":16,"61822":-1,"61823":2644,"61824":0,"61825":0,"61826":-1,"61827":0,"61828":-1,"61829":-1,"61830":2653,"61831":2626,"61832":0,"61833":-1,"61834":0,"61835":-1,"61836":2437,"61837":2481,"61838":0,"61839":0,"61840":-1,"61841":0,"61842":2248,"61843":-1,"61844":0,"61845":-1,"61846":0,"61847":-1,"61848":-1,"61849":0,"61850":31,"61851":-1,"61852":-1,"61853":2479,"61854":2048,"61855":2064,"61856":2354,"61857":2353,"61858":2336,"61859":0,"61860":0,"61861":2355,"61862":0,"61863":37,"61864":2542,"61865":0,"61866":0,"61867":-1,"61868":-1,"61869":0,"61870":2303,"61871":0,"61872":2250,"61873":2598,"61874":2654,"61875":2215,"61876":2052,"61877":0,"61878":637,"61879":-1,"61880":-1,"61881":6,"61882":-1,"61883":0,"61884":0,"61885":2044,"61886":-1,"61887":-1,"61888":0,"61889":620,"61890":2644,"61891":2500,"61892":-1,"61893":-1,"61894":-1,"61895":0,"61896":0,"61897":2174,"61898":0,"61899":0,"61900":-1,"61901":0,"61902":-1,"61903":-1,"61904":0,"61905":0,"61906":2085,"61907":-1,"61908":2387,"61909":-1,"61910":2054,"61911":0,"61912":301,"61913":0,"61914":0,"61915":584,"61916":2369,"61917":0,"61918":0,"61919":-1,"61920":0,"61921":0,"61922":0,"61923":0,"61924":-1,"61925":2398,"61926":0,"61927":0,"61928":0,"61929":0,"61930":0,"61931":-1,"61932":0,"61933":0,"61934":2106,"61935":-1,"61936":0,"61937":-1,"61938":2375,"61939":0,"61940":0,"61941":0,"61942":0,"61943":-1,"61944":0,"61945":-1,"61946":0,"61947":0,"61948":-1,"61949":0,"61950":2305,"61951":-1,"61952":0,"61953":0,"61954":0,"61955":0,"61956":2621,"61957":-1,"61958":2065,"61959":0,"61960":0,"61961":0,"61962":2304,"61963":-1,"61964":-1,"61965":2008,"61966":0,"61967":0,"61968":-1,"61969":0,"61970":-1,"61971":2663,"61972":-1,"61973":-1,"61974":2576,"61975":2403,"61976":0,"61977":-1,"61978":0,"61979":-1,"61980":-1,"61981":0,"61982":2288,"61983":837,"61984":-1,"61985":-1,"61986":-1,"61987":2058,"61988":0,"61989":-1,"61990":0,"61991":0,"61992":0,"61993":-1,"61994":-1,"61995":2287,"61996":0,"61997":2131,"61998":2610,"61999":0,"62000":2518,"62001":0,"62002":412,"62003":0,"62004":0,"62005":0,"62006":2105,"62007":-1,"62008":0,"62009":-1,"62010":0,"62011":0,"62012":245,"62013":0,"62014":0,"62015":-1,"62016":2539,"62017":0,"62018":28,"62019":-1,"62020":0,"62021":0,"62022":2669,"62023":-1,"62024":2212,"62025":0,"62026":-1,"62027":-1,"62028":2014,"62029":-1,"62030":2040,"62031":2146,"62032":-1,"62033":448,"62034":0,"62035":-1,"62036":0,"62037":0,"62038":-1,"62039":0,"62040":-1,"62041":-1,"62042":-1,"62043":0,"62044":-1,"62045":0,"62046":-1,"62047":2452,"62048":2530,"62049":-1,"62050":0,"62051":2073,"62052":0,"62053":-1,"62054":2362,"62055":-1,"62056":0,"62057":-1,"62058":0,"62059":0,"62060":-1,"62061":-1,"62062":-1,"62063":-1,"62064":2008,"62065":0,"62066":-1,"62067":2508,"62068":-1,"62069":0,"62070":-1,"62071":-1,"62072":0,"62073":-1,"62074":0,"62075":0,"62076":-1,"62077":0,"62078":-1,"62079":0,"62080":0,"62081":-1,"62082":0,"62083":-1,"62084":-1,"62085":-1,"62086":-1,"62087":2668,"62088":2097,"62089":-1,"62090":0,"62091":-1,"62092":-1,"62093":2304,"62094":0,"62095":0,"62096":0,"62097":2655,"62098":0,"62099":-1,"62100":-1,"62101":738,"62102":-1,"62103":2456,"62104":0,"62105":-1,"62106":0,"62107":-1,"62108":-1,"62109":0,"62110":2151,"62111":0,"62112":0,"62113":0,"62114":0,"62115":2168,"62116":0,"62117":0,"62118":-1,"62119":0,"62120":-1,"62121":0,"62122":0,"62123":0,"62124":-1,"62125":2567,"62126":0,"62127":0,"62128":-1,"62129":0,"62130":0,"62131":2545,"62132":-1,"62133":0,"62134":0,"62135":0,"62136":6,"62137":0,"62138":2193,"62139":2037,"62140":0,"62141":2093,"62142":0,"62143":-1,"62144":-1,"62145":2000,"62146":0,"62147":-1,"62148":-1,"62149":0,"62150":0,"62151":-1,"62152":-1,"62153":-1,"62154":2292,"62155":-1,"62156":0,"62157":-1,"62158":-1,"62159":-1,"62160":0,"62161":0,"62162":0,"62163":-1,"62164":0,"62165":-1,"62166":-1,"62167":0,"62168":0,"62169":2376,"62170":-1,"62171":36,"62172":0,"62173":0,"62174":-1,"62175":0,"62176":-1,"62177":2,"62178":2278,"62179":0,"62180":-1,"62181":0,"62182":0,"62183":0,"62184":86,"62185":109,"62186":2598,"62187":0,"62188":2438,"62189":0,"62190":2302,"62191":2184,"62192":0,"62193":2402,"62194":0,"62195":2631,"62196":-1,"62197":0,"62198":2637,"62199":-1,"62200":0,"62201":0,"62202":-1,"62203":2005,"62204":0,"62205":2175,"62206":0,"62207":2320,"62208":-1,"62209":2249,"62210":0,"62211":2151,"62212":-1,"62213":837,"62214":0,"62215":2596,"62216":0,"62217":0,"62218":701,"62219":0,"62220":-1,"62221":2460,"62222":2566,"62223":-1,"62224":-1,"62225":0,"62226":2670,"62227":-1,"62228":2493,"62229":-1,"62230":0,"62231":0,"62232":0,"62233":0,"62234":554,"62235":2001,"62236":0,"62237":-1,"62238":0,"62239":0,"62240":0,"62241":-1,"62242":-1,"62243":23,"62244":-1,"62245":2441,"62246":-1,"62247":0,"62248":2014,"62249":0,"62250":154,"62251":2532,"62252":0,"62253":-1,"62254":-1,"62255":0,"62256":2388,"62257":0,"62258":-1,"62259":0,"62260":-1,"62261":0,"62262":0,"62263":533,"62264":0,"62265":0,"62266":0,"62267":0,"62268":-1,"62269":2127,"62270":-1,"62271":0,"62272":0,"62273":2472,"62274":0,"62275":0,"62276":-1,"62277":0,"62278":0,"62279":0,"62280":-1,"62281":2456,"62282":-1,"62283":0,"62284":0,"62285":-1,"62286":0,"62287":-1,"62288":2625,"62289":2065,"62290":0,"62291":0,"62292":2307,"62293":0,"62294":33,"62295":0,"62296":-1,"62297":0,"62298":0,"62299":0,"62300":0,"62301":-1,"62302":170,"62303":-1,"62304":0,"62305":0,"62306":0,"62307":-1,"62308":-1,"62309":-1,"62310":0,"62311":0,"62312":0,"62313":0,"62314":-1,"62315":0,"62316":130,"62317":0,"62318":0,"62319":0,"62320":0,"62321":-1,"62322":-1,"62323":2369,"62324":0,"62325":2513,"62326":909,"62327":0,"62328":0,"62329":2237,"62330":-1,"62331":-1,"62332":327,"62333":2677,"62334":0,"62335":-1,"62336":-1,"62337":0,"62338":0,"62339":13,"62340":2276,"62341":0,"62342":0,"62343":2281,"62344":2189,"62345":0,"62346":0,"62347":58,"62348":-1,"62349":2141,"62350":-1,"62351":0,"62352":0,"62353":0,"62354":0,"62355":0,"62356":-1,"62357":0,"62358":0,"62359":-1,"62360":4,"62361":-1,"62362":2088,"62363":0,"62364":720,"62365":-1,"62366":2656,"62367":2461,"62368":-1,"62369":-1,"62370":0,"62371":-1,"62372":0,"62373":0,"62374":0,"62375":0,"62376":-1,"62377":2083,"62378":2471,"62379":2016,"62380":64,"62381":-1,"62382":0,"62383":0,"62384":0,"62385":0,"62386":0,"62387":-1,"62388":0,"62389":0,"62390":2301,"62391":2434,"62392":0,"62393":0,"62394":-1,"62395":-1,"62396":2121,"62397":0,"62398":0,"62399":603,"62400":2102,"62401":0,"62402":-1,"62403":0,"62404":2122,"62405":-1,"62406":-1,"62407":2472,"62408":-1,"62409":-1,"62410":26,"62411":0,"62412":-1,"62413":475,"62414":-1,"62415":0,"62416":2490,"62417":301,"62418":0,"62419":0,"62420":-1,"62421":0,"62422":-1,"62423":0,"62424":-1,"62425":-1,"62426":0,"62427":-1,"62428":-1,"62429":-1,"62430":2621,"62431":-1,"62432":-1,"62433":-1,"62434":0,"62435":2445,"62436":0,"62437":0,"62438":2455,"62439":0,"62440":-1,"62441":0,"62442":0,"62443":0,"62444":-1,"62445":0,"62446":2325,"62447":0,"62448":2666,"62449":-1,"62450":620,"62451":0,"62452":2573,"62453":-1,"62454":2670,"62455":2342,"62456":0,"62457":2472,"62458":0,"62459":0,"62460":2092,"62461":0,"62462":0,"62463":-1,"62464":0,"62465":0,"62466":2243,"62467":0,"62468":-1,"62469":0,"62470":-1,"62471":2093,"62472":2046,"62473":0,"62474":-1,"62475":-1,"62476":0,"62477":0,"62478":0,"62479":0,"62480":0,"62481":0,"62482":2580,"62483":0,"62484":0,"62485":-1,"62486":2169,"62487":-1,"62488":0,"62489":-1,"62490":19,"62491":0,"62492":0,"62493":0,"62494":-1,"62495":0,"62496":0,"62497":0,"62498":-1,"62499":0,"62500":2631,"62501":0,"62502":0,"62503":2467,"62504":2372,"62505":0,"62506":0,"62507":0,"62508":2419,"62509":0,"62510":2081,"62511":701,"62512":-1,"62513":639,"62514":0,"62515":0,"62516":0,"62517":0,"62518":0,"62519":-1,"62520":0,"62521":284,"62522":2288,"62523":0,"62524":2338,"62525":2385,"62526":2545,"62527":0,"62528":2590,"62529":-1,"62530":2658,"62531":2514,"62532":-1,"62533":0,"62534":0,"62535":0,"62536":-1,"62537":-1,"62538":0,"62539":-1,"62540":2322,"62541":-1,"62542":0,"62543":0,"62544":-1,"62545":-1,"62546":-1,"62547":2541,"62548":0,"62549":0,"62550":0,"62551":2273,"62552":0,"62553":2533,"62554":0,"62555":-1,"62556":-1,"62557":0,"62558":2007,"62559":0,"62560":2086,"62561":0,"62562":2283,"62563":0,"62564":0,"62565":-1,"62566":-1,"62567":0,"62568":2021,"62569":-1,"62570":0,"62571":2635,"62572":-1,"62573":-1,"62574":-1,"62575":0,"62576":735,"62577":2581,"62578":0,"62579":-1,"62580":-1,"62581":2100,"62582":0,"62583":2085,"62584":2488,"62585":0,"62586":0,"62587":0,"62588":0,"62589":0,"62590":0,"62591":0,"62592":-1,"62593":2028,"62594":-1,"62595":-1,"62596":2532,"62597":-1,"62598":-1,"62599":-1,"62600":0,"62601":2394,"62602":2223,"62603":0,"62604":107,"62605":0,"62606":0,"62607":0,"62608":0,"62609":2105,"62610":2677,"62611":0,"62612":0,"62613":-1,"62614":720,"62615":-1,"62616":-1,"62617":2626,"62618":0,"62619":2376,"62620":0,"62621":-1,"62622":0,"62623":0,"62624":-1,"62625":0,"62626":-1,"62627":2328,"62628":-1,"62629":0,"62630":0,"62631":-1,"62632":908,"62633":0,"62634":0,"62635":0,"62636":-1,"62637":0,"62638":2578,"62639":0,"62640":-1,"62641":2055,"62642":0,"62643":0,"62644":2268,"62645":2204,"62646":2488,"62647":-1,"62648":2539,"62649":-1,"62650":0,"62651":-1,"62652":0,"62653":0,"62654":0,"62655":0,"62656":-1,"62657":-1,"62658":-1,"62659":-1,"62660":2196,"62661":-1,"62662":-1,"62663":2632,"62664":-1,"62665":2481,"62666":0,"62667":0,"62668":0,"62669":-1,"62670":2107,"62671":0,"62672":0,"62673":0,"62674":0,"62675":0,"62676":2539,"62677":462,"62678":0,"62679":2261,"62680":-1,"62681":-1,"62682":2419,"62683":0,"62684":0,"62685":-1,"62686":-1,"62687":0,"62688":0,"62689":2376,"62690":0,"62691":-1,"62692":-1,"62693":0,"62694":-1,"62695":317,"62696":0,"62697":0,"62698":-1,"62699":0,"62700":0,"62701":-1,"62702":-1,"62703":0,"62704":-1,"62705":-1,"62706":0,"62707":-1,"62708":-1,"62709":67,"62710":2281,"62711":0,"62712":-1,"62713":-1,"62714":-1,"62715":0,"62716":-1,"62717":-1,"62718":-1,"62719":0,"62720":0,"62721":2097,"62722":2260,"62723":0,"62724":-1,"62725":-1,"62726":-1,"62727":2130,"62728":0,"62729":0,"62730":-1,"62731":-1,"62732":0,"62733":2007,"62734":-1,"62735":2512,"62736":-1,"62737":0,"62738":2618,"62739":2638,"62740":-1,"62741":0,"62742":2391,"62743":2017,"62744":0,"62745":-1,"62746":0,"62747":209,"62748":0,"62749":2442,"62750":0,"62751":2540,"62752":-1,"62753":-1,"62754":0,"62755":735,"62756":2219,"62757":0,"62758":-1,"62759":-1,"62760":-1,"62761":0,"62762":-1,"62763":0,"62764":0,"62765":-1,"62766":-1,"62767":0,"62768":-1,"62769":-1,"62770":-1,"62771":-1,"62772":-1,"62773":0,"62774":-1,"62775":0,"62776":0,"62777":0,"62778":2008,"62779":0,"62780":-1,"62781":0,"62782":0,"62783":0,"62784":0,"62785":0,"62786":-1,"62787":2199,"62788":0,"62789":-1,"62790":0,"62791":0,"62792":0,"62793":-1,"62794":0,"62795":2322,"62796":22,"62797":-1,"62798":2267,"62799":0,"62800":2545,"62801":2432,"62802":-1,"62803":0,"62804":0,"62805":0,"62806":2208,"62807":2661,"62808":-1,"62809":0,"62810":2509,"62811":0,"62812":2091,"62813":0,"62814":-1,"62815":-1,"62816":-1,"62817":-1,"62818":2058,"62819":2167,"62820":0,"62821":0,"62822":0,"62823":-1,"62824":0,"62825":0,"62826":2599,"62827":0,"62828":2082,"62829":-1,"62830":2492,"62831":2096,"62832":-1,"62833":2287,"62834":924,"62835":2015,"62836":-1,"62837":0,"62838":-1,"62839":-1,"62840":0,"62841":2470,"62842":0,"62843":-1,"62844":0,"62845":-1,"62846":-1,"62847":0,"62848":-1,"62849":-1,"62850":0,"62851":0,"62852":2548,"62853":2517,"62854":0,"62855":-1,"62856":0,"62857":2138,"62858":-1,"62859":0,"62860":2438,"62861":0,"62862":2464,"62863":0,"62864":2069,"62865":-1,"62866":508,"62867":-1,"62868":2544,"62869":0,"62870":-1,"62871":2194,"62872":-1,"62873":0,"62874":0,"62875":-1,"62876":-1,"62877":2347,"62878":-1,"62879":0,"62880":0,"62881":-1,"62882":-1,"62883":0,"62884":0,"62885":0,"62886":0,"62887":-1,"62888":0,"62889":2671,"62890":-1,"62891":0,"62892":906,"62893":-1,"62894":-1,"62895":0,"62896":598,"62897":0,"62898":-1,"62899":0,"62900":-1,"62901":0,"62902":-1,"62903":0,"62904":0,"62905":2063,"62906":-1,"62907":0,"62908":0,"62909":0,"62910":0,"62911":0,"62912":0,"62913":0,"62914":-1,"62915":0,"62916":0,"62917":-1,"62918":-1,"62919":-1,"62920":0,"62921":310,"62922":-1,"62923":0,"62924":0,"62925":-1,"62926":0,"62927":0,"62928":2564,"62929":0,"62930":-1,"62931":-1,"62932":0,"62933":0,"62934":0,"62935":0,"62936":-1,"62937":2075,"62938":0,"62939":-1,"62940":-1,"62941":2003,"62942":325,"62943":-1,"62944":154,"62945":0,"62946":0,"62947":0,"62948":2501,"62949":0,"62950":0,"62951":0,"62952":86,"62953":-1,"62954":-1,"62955":0,"62956":0,"62957":58,"62958":-1,"62959":793,"62960":0,"62961":30,"62962":2654,"62963":0,"62964":-1,"62965":-1,"62966":2459,"62967":0,"62968":0,"62969":-1,"62970":0,"62971":0,"62972":-1,"62973":-1,"62974":-1,"62975":0,"62976":-1,"62977":0,"62978":0,"62979":2037,"62980":-1,"62981":0,"62982":-1,"62983":-1,"62984":-1,"62985":-1,"62986":0,"62987":0,"62988":0,"62989":2469,"62990":0,"62991":0,"62992":-1,"62993":0,"62994":0,"62995":2494,"62996":2252,"62997":2455,"62998":2672,"62999":-1,"63000":2295,"63001":-1,"63002":-1,"63003":-1,"63004":0,"63005":0,"63006":0,"63007":2631,"63008":2071,"63009":0,"63010":0,"63011":-1,"63012":0,"63013":-1,"63014":0,"63015":0,"63016":0,"63017":11,"63018":2287,"63019":2555,"63020":-1,"63021":-1,"63022":187,"63023":-1,"63024":0,"63025":0,"63026":0,"63027":2423,"63028":-1,"63029":-1,"63030":-1,"63031":0,"63032":0,"63033":0,"63034":353,"63035":0,"63036":0,"63037":-1,"63038":-1,"63039":2161,"63040":2003,"63041":554,"63042":0,"63043":-1,"63044":-1,"63045":2326,"63046":0,"63047":-1,"63048":0,"63049":0,"63050":0,"63051":0,"63052":-1,"63053":-1,"63054":2544,"63055":-1,"63056":98,"63057":-1,"63058":-1,"63059":0,"63060":2280,"63061":0,"63062":0,"63063":262,"63064":2166,"63065":0,"63066":-1,"63067":0,"63068":0,"63069":2245,"63070":0,"63071":0,"63072":0,"63073":2171,"63074":0,"63075":0,"63076":-1,"63077":-1,"63078":220,"63079":209,"63080":2074,"63081":0,"63082":0,"63083":2609,"63084":0,"63085":0,"63086":2603,"63087":2030,"63088":0,"63089":0,"63090":2289,"63091":-1,"63092":0,"63093":37,"63094":0,"63095":2115,"63096":-1,"63097":2020,"63098":0,"63099":-1,"63100":-1,"63101":-1,"63102":0,"63103":0,"63104":0,"63105":0,"63106":-1,"63107":2226,"63108":0,"63109":0,"63110":0,"63111":287,"63112":-1,"63113":0,"63114":0,"63115":2627,"63116":2498,"63117":-1,"63118":0,"63119":2671,"63120":-1,"63121":-1,"63122":0,"63123":-1,"63124":-1,"63125":0,"63126":58,"63127":-1,"63128":-1,"63129":-1,"63130":-1,"63131":0,"63132":-1,"63133":0,"63134":2532,"63135":-1,"63136":0,"63137":0,"63138":-1,"63139":0,"63140":0,"63141":0,"63142":-1,"63143":0,"63144":2072,"63145":325,"63146":0,"63147":2258,"63148":-1,"63149":0,"63150":-1,"63151":849,"63152":-1,"63153":0,"63154":-1,"63155":0,"63156":0,"63157":483,"63158":2277,"63159":-1,"63160":0,"63161":0,"63162":-1,"63163":-1,"63164":-1,"63165":-1,"63166":0,"63167":0,"63168":-1,"63169":-1,"63170":-1,"63171":-1,"63172":2254,"63173":0,"63174":544,"63175":2295,"63176":-1,"63177":2541,"63178":436,"63179":0,"63180":2393,"63181":0,"63182":0,"63183":0,"63184":-1,"63185":0,"63186":2650,"63187":2444,"63188":0,"63189":0,"63190":0,"63191":2455,"63192":-1,"63193":0,"63194":2279,"63195":-1,"63196":0,"63197":0,"63198":0,"63199":2079,"63200":-1,"63201":2184,"63202":0,"63203":-1,"63204":0,"63205":310,"63206":-1,"63207":0,"63208":0,"63209":0,"63210":-1,"63211":-1,"63212":2506,"63213":0,"63214":2430,"63215":0,"63216":217,"63217":-1,"63218":0,"63219":0,"63220":2178,"63221":0,"63222":-1,"63223":0,"63224":0,"63225":2120,"63226":1,"63227":-1,"63228":0,"63229":0,"63230":0,"63231":2420,"63232":0,"63233":0,"63234":-1,"63235":0,"63236":0,"63237":0,"63238":-1,"63239":-1,"63240":0,"63241":0,"63242":2648,"63243":0,"63244":0,"63245":-1,"63246":-1,"63247":2611,"63248":2502,"63249":2139,"63250":798,"63251":-1,"63252":-1,"63253":0,"63254":0,"63255":301,"63256":-1,"63257":0,"63258":0,"63259":0,"63260":2465,"63261":0,"63262":-1,"63263":0,"63264":-1,"63265":0,"63266":0,"63267":0,"63268":0,"63269":0,"63270":0,"63271":21,"63272":0,"63273":-1,"63274":2420,"63275":0,"63276":-1,"63277":-1,"63278":0,"63279":2614,"63280":2304,"63281":2556,"63282":2338,"63283":-1,"63284":148,"63285":2018,"63286":2335,"63287":-1,"63288":0,"63289":0,"63290":0,"63291":0,"63292":-1,"63293":0,"63294":0,"63295":0,"63296":0,"63297":0,"63298":2453,"63299":88,"63300":0,"63301":0,"63302":2414,"63303":0,"63304":65,"63305":-1,"63306":-1,"63307":0,"63308":0,"63309":-1,"63310":-1,"63311":2255,"63312":0,"63313":0,"63314":-1,"63315":2233,"63316":-1,"63317":2516,"63318":-1,"63319":0,"63320":0,"63321":-1,"63322":2399,"63323":-1,"63324":0,"63325":2000,"63326":0,"63327":0,"63328":0,"63329":-1,"63330":0,"63331":0,"63332":0,"63333":-1,"63334":0,"63335":-1,"63336":11,"63337":0,"63338":667,"63339":-1,"63340":0,"63341":0,"63342":-1,"63343":0,"63344":0,"63345":0,"63346":0,"63347":262,"63348":2449,"63349":2559,"63350":2268,"63351":0,"63352":-1,"63353":0,"63354":313,"63355":0,"63356":0,"63357":0,"63358":0,"63359":2409,"63360":0,"63361":0,"63362":0,"63363":0,"63364":-1,"63365":-1,"63366":2347,"63367":0,"63368":-1,"63369":0,"63370":0,"63371":-1,"63372":0,"63373":0,"63374":-1,"63375":-1,"63376":-1,"63377":-1,"63378":0,"63379":2186,"63380":-1,"63381":-1,"63382":-1,"63383":-1,"63384":-1,"63385":0,"63386":-1,"63387":0,"63388":0,"63389":0,"63390":0,"63391":-1,"63392":0,"63393":0,"63394":-1,"63395":-1,"63396":0,"63397":0,"63398":0,"63399":0,"63400":0,"63401":-1,"63402":-1,"63403":0,"63404":0,"63405":0,"63406":-1,"63407":-1,"63408":2568,"63409":-1,"63410":-1,"63411":0,"63412":0,"63413":0,"63414":2045,"63415":0,"63416":137,"63417":0,"63418":-1,"63419":0,"63420":0,"63421":2605,"63422":-1,"63423":0,"63424":-1,"63425":-1,"63426":58,"63427":0,"63428":-1,"63429":-1,"63430":2239,"63431":-1,"63432":-1,"63433":-1,"63434":0,"63435":0,"63436":-1,"63437":0,"63438":0,"63439":0,"63440":-1,"63441":559,"63442":0,"63443":-1,"63444":0,"63445":0,"63446":0,"63447":-1,"63448":0,"63449":2335,"63450":0,"63451":-1,"63452":0,"63453":2507,"63454":-1,"63455":-1,"63456":-1,"63457":0,"63458":0,"63459":0,"63460":0,"63461":2390,"63462":2642,"63463":0,"63464":0,"63465":-1,"63466":0,"63467":-1,"63468":-1,"63469":0,"63470":2512,"63471":145,"63472":-1,"63473":2310,"63474":0,"63475":0,"63476":2414,"63477":-1,"63478":-1,"63479":2607,"63480":0,"63481":-1,"63482":0,"63483":0,"63484":2081,"63485":0,"63486":-1,"63487":0,"63488":0,"63489":0,"63490":-1,"63491":0,"63492":0,"63493":906,"63494":0,"63495":2605,"63496":0,"63497":2194,"63498":-1,"63499":0,"63500":2111,"63501":-1,"63502":-1,"63503":0,"63504":0,"63505":0,"63506":2403,"63507":0,"63508":-1,"63509":2210,"63510":301,"63511":0,"63512":2313,"63513":0,"63514":-1,"63515":-1,"63516":0,"63517":-1,"63518":0,"63519":0,"63520":0,"63521":-1,"63522":-1,"63523":0,"63524":-1,"63525":-1,"63526":0,"63527":-1,"63528":0,"63529":-1,"63530":2576,"63531":-1,"63532":0,"63533":0,"63534":22,"63535":0,"63536":0,"63537":-1,"63538":0,"63539":2367,"63540":0,"63541":2186,"63542":0,"63543":0,"63544":38,"63545":0,"63546":0,"63547":0,"63548":-1,"63549":0,"63550":0,"63551":2071,"63552":0,"63553":2032,"63554":-1,"63555":0,"63556":833,"63557":2238,"63558":0,"63559":0,"63560":-1,"63561":-1,"63562":0,"63563":0,"63564":0,"63565":0,"63566":0,"63567":2087,"63568":0,"63569":-1,"63570":2221,"63571":31,"63572":0,"63573":-1,"63574":-1,"63575":2057,"63576":2143,"63577":0,"63578":-1,"63579":0,"63580":0,"63581":-1,"63582":0,"63583":0,"63584":0,"63585":2375,"63586":-1,"63587":0,"63588":0,"63589":0,"63590":-1,"63591":0,"63592":-1,"63593":0,"63594":2247,"63595":0,"63596":-1,"63597":2359,"63598":0,"63599":-1,"63600":2113,"63601":-1,"63602":0,"63603":2358,"63604":-1,"63605":0,"63606":0,"63607":-1,"63608":2573,"63609":0,"63610":-1,"63611":2252,"63612":0,"63613":21,"63614":0,"63615":2113,"63616":0,"63617":-1,"63618":0,"63619":0,"63620":-1,"63621":-1,"63622":0,"63623":2089,"63624":2644,"63625":0,"63626":-1,"63627":0,"63628":0,"63629":0,"63630":-1,"63631":2371,"63632":2144,"63633":2380,"63634":0,"63635":2036,"63636":-1,"63637":0,"63638":-1,"63639":2238,"63640":0,"63641":0,"63642":0,"63643":0,"63644":0,"63645":-1,"63646":2408,"63647":0,"63648":-1,"63649":-1,"63650":0,"63651":2441,"63652":-1,"63653":-1,"63654":0,"63655":-1,"63656":2586,"63657":0,"63658":0,"63659":0,"63660":0,"63661":2666,"63662":-1,"63663":0,"63664":-1,"63665":2298,"63666":0,"63667":0,"63668":-1,"63669":0,"63670":-1,"63671":2034,"63672":2542,"63673":-1,"63674":0,"63675":-1,"63676":-1,"63677":-1,"63678":0,"63679":-1,"63680":-1,"63681":0,"63682":0,"63683":0,"63684":2593,"63685":2293,"63686":-1,"63687":-1,"63688":0,"63689":0,"63690":-1,"63691":0,"63692":0,"63693":0,"63694":0,"63695":2031,"63696":520,"63697":2468,"63698":0,"63699":-1,"63700":-1,"63701":0,"63702":-1,"63703":0,"63704":0,"63705":0,"63706":-1,"63707":-1,"63708":0,"63709":-1,"63710":2237,"63711":-1,"63712":0,"63713":0,"63714":0,"63715":104,"63716":2131,"63717":-1,"63718":2459,"63719":-1,"63720":0,"63721":2232,"63722":-1,"63723":2108,"63724":-1,"63725":-1,"63726":49,"63727":2054,"63728":-1,"63729":2362,"63730":-1,"63731":-1,"63732":0,"63733":313,"63734":0,"63735":0,"63736":2620,"63737":2006,"63738":0,"63739":-1,"63740":-1,"63741":0,"63742":2290,"63743":0,"63744":-1,"63745":0,"63746":0,"63747":0,"63748":0,"63749":-1,"63750":2341,"63751":-1,"63752":0,"63753":-1,"63754":2653,"63755":2052,"63756":0,"63757":0,"63758":0,"63759":2111,"63760":0,"63761":2185,"63762":0,"63763":0,"63764":0,"63765":-1,"63766":0,"63767":-1,"63768":0,"63769":2214,"63770":0,"63771":0,"63772":0,"63773":0,"63774":2676,"63775":-1,"63776":0,"63777":2353,"63778":0,"63779":0,"63780":2036,"63781":0,"63782":-1,"63783":0,"63784":-1,"63785":0,"63786":0,"63787":-1,"63788":0,"63789":292,"63790":2165,"63791":0,"63792":2331,"63793":-1,"63794":-1,"63795":2498,"63796":0,"63797":0,"63798":-1,"63799":461,"63800":-1,"63801":0,"63802":-1,"63803":0,"63804":-1,"63805":2124,"63806":0,"63807":0,"63808":-1,"63809":0,"63810":604,"63811":2310,"63812":2283,"63813":-1,"63814":2281,"63815":0,"63816":1995,"63817":2220,"63818":0,"63819":303,"63820":0,"63821":0,"63822":-1,"63823":0,"63824":2659,"63825":-1,"63826":-1,"63827":2203,"63828":645,"63829":-1,"63830":2147,"63831":0,"63832":0,"63833":-1,"63834":0,"63835":0,"63836":-1,"63837":0,"63838":-1,"63839":-1,"63840":-1,"63841":-1,"63842":0,"63843":2402,"63844":0,"63845":2123,"63846":0,"63847":0,"63848":2662,"63849":2145,"63850":46,"63851":-1,"63852":2667,"63853":0,"63854":0,"63855":0,"63856":0,"63857":0,"63858":0,"63859":0,"63860":-1,"63861":0,"63862":2062,"63863":0,"63864":0,"63865":2553,"63866":864,"63867":0,"63868":0,"63869":-1,"63870":2026,"63871":-1,"63872":0,"63873":0,"63874":0,"63875":2002,"63876":906,"63877":-1,"63878":-1,"63879":2248,"63880":0,"63881":280,"63882":0,"63883":2021,"63884":0,"63885":-1,"63886":0,"63887":-1,"63888":0,"63889":-1,"63890":-1,"63891":0,"63892":0,"63893":0,"63894":0,"63895":2243,"63896":-1,"63897":0,"63898":-1,"63899":-1,"63900":0,"63901":-1,"63902":108,"63903":-1,"63904":-1,"63905":0,"63906":0,"63907":-1,"63908":-1,"63909":0,"63910":0,"63911":0,"63912":0,"63913":0,"63914":0,"63915":2249,"63916":2435,"63917":0,"63918":0,"63919":2319,"63920":0,"63921":2533,"63922":0,"63923":0,"63924":-1,"63925":554,"63926":0,"63927":0,"63928":-1,"63929":0,"63930":-1,"63931":2330,"63932":0,"63933":0,"63934":461,"63935":0,"63936":-1,"63937":0,"63938":0,"63939":598,"63940":-1,"63941":-1,"63942":-1,"63943":2635,"63944":2643,"63945":0,"63946":0,"63947":-1,"63948":0,"63949":0,"63950":-1,"63951":136,"63952":0,"63953":-1,"63954":0,"63955":0,"63956":-1,"63957":-1,"63958":0,"63959":2135,"63960":2035,"63961":-1,"63962":2277,"63963":2368,"63964":0,"63965":2549,"63966":-1,"63967":2032,"63968":0,"63969":-1,"63970":-1,"63971":0,"63972":-1,"63973":0,"63974":-1,"63975":0,"63976":2088,"63977":-1,"63978":2377,"63979":-1,"63980":2202,"63981":-1,"63982":0,"63983":0,"63984":0,"63985":0,"63986":0,"63987":-1,"63988":0,"63989":-1,"63990":2268,"63991":0,"63992":-1,"63993":-1,"63994":0,"63995":-1,"63996":0,"63997":2316,"63998":0,"63999":-1,"64000":496,"64001":2009,"64002":0,"64003":0,"64004":0,"64005":0,"64006":-1,"64007":-1,"64008":2296,"64009":-1,"64010":-1,"64011":0,"64012":0,"64013":500,"64014":0,"64015":-1,"64016":58,"64017":0,"64018":2485,"64019":-1,"64020":2150,"64021":0,"64022":0,"64023":0,"64024":-1,"64025":0,"64026":0,"64027":0,"64028":-1,"64029":327,"64030":0,"64031":0,"64032":-1,"64033":2597,"64034":-1,"64035":-1,"64036":0,"64037":2662,"64038":0,"64039":-1,"64040":0,"64041":2217,"64042":-1,"64043":0,"64044":0,"64045":0,"64046":-1,"64047":0,"64048":-1,"64049":-1,"64050":-1,"64051":0,"64052":-1,"64053":-1,"64054":0,"64055":2075,"64056":2225,"64057":0,"64058":-1,"64059":-1,"64060":0,"64061":-1,"64062":-1,"64063":0,"64064":2645,"64065":-1,"64066":-1,"64067":0,"64068":-1,"64069":0,"64070":45,"64071":0,"64072":0,"64073":2523,"64074":2387,"64075":0,"64076":-1,"64077":2479,"64078":0,"64079":0,"64080":2670,"64081":0,"64082":2114,"64083":0,"64084":2521,"64085":-1,"64086":2373,"64087":22,"64088":2636,"64089":0,"64090":0,"64091":0,"64092":0,"64093":2677,"64094":0,"64095":0,"64096":0,"64097":2226,"64098":578,"64099":0,"64100":0,"64101":-1,"64102":0,"64103":663,"64104":2241,"64105":-1,"64106":449,"64107":0,"64108":0,"64109":2247,"64110":0,"64111":2114,"64112":2084,"64113":-1,"64114":-1,"64115":-1,"64116":0,"64117":0,"64118":0,"64119":0,"64120":0,"64121":-1,"64122":0,"64123":-1,"64124":0,"64125":0,"64126":2472,"64127":2126,"64128":2307,"64129":2302,"64130":2549,"64131":0,"64132":-1,"64133":0,"64134":0,"64135":281,"64136":2134,"64137":2170,"64138":2097,"64139":-1,"64140":2364,"64141":0,"64142":0,"64143":0,"64144":2400,"64145":-1,"64146":0,"64147":0,"64148":-1,"64149":0,"64150":2391,"64151":0,"64152":418,"64153":0,"64154":-1,"64155":2469,"64156":0,"64157":31,"64158":0,"64159":2192,"64160":0,"64161":0,"64162":2307,"64163":0,"64164":-1,"64165":2596,"64166":-1,"64167":-1,"64168":0,"64169":-1,"64170":2333,"64171":0,"64172":0,"64173":2394,"64174":-1,"64175":0,"64176":0,"64177":333,"64178":0,"64179":0,"64180":2273,"64181":0,"64182":0,"64183":0,"64184":0,"64185":2659,"64186":-1,"64187":2477,"64188":2269,"64189":0,"64190":-1,"64191":2307,"64192":-1,"64193":-1,"64194":-1,"64195":2447,"64196":0,"64197":2151,"64198":-1,"64199":0,"64200":0,"64201":-1,"64202":0,"64203":-1,"64204":2657,"64205":2226,"64206":0,"64207":924,"64208":329,"64209":0,"64210":-1,"64211":2410,"64212":-1,"64213":0,"64214":0,"64215":0,"64216":-1,"64217":0,"64218":-1,"64219":-1,"64220":0,"64221":0,"64222":0,"64223":1995,"64224":-1,"64225":0,"64226":0,"64227":-1,"64228":0,"64229":2185,"64230":-1,"64231":0,"64232":2295,"64233":-1,"64234":-1,"64235":2564,"64236":0,"64237":0,"64238":2277,"64239":-1,"64240":0,"64241":-1,"64242":0,"64243":359,"64244":2492,"64245":2646,"64246":0,"64247":-1,"64248":0,"64249":0,"64250":-1,"64251":-1,"64252":0,"64253":0,"64254":0,"64255":0,"64256":0,"64257":300,"64258":-1,"64259":0,"64260":0,"64261":2281,"64262":2395,"64263":2647,"64264":0,"64265":86,"64266":0,"64267":-1,"64268":-1,"64269":2343,"64270":-1,"64271":2277,"64272":0,"64273":2467,"64274":0,"64275":2618,"64276":-1,"64277":2291,"64278":0,"64279":-1,"64280":0,"64281":0,"64282":0,"64283":0,"64284":2678,"64285":2643,"64286":0,"64287":-1,"64288":0,"64289":-1,"64290":-1,"64291":2036,"64292":2627,"64293":-1,"64294":0,"64295":-1,"64296":2659,"64297":0,"64298":-1,"64299":2571,"64300":0,"64301":-1,"64302":130,"64303":0,"64304":2457,"64305":520,"64306":-1,"64307":0,"64308":-1,"64309":-1,"64310":2489,"64311":2326,"64312":0,"64313":0,"64314":-1,"64315":2058,"64316":-1,"64317":2505,"64318":-1,"64319":-1,"64320":0,"64321":0,"64322":0,"64323":0,"64324":2520,"64325":0,"64326":2329,"64327":0,"64328":0,"64329":2307,"64330":-1,"64331":0,"64332":0,"64333":0,"64334":0,"64335":-1,"64336":2554,"64337":0,"64338":0,"64339":0,"64340":0,"64341":0,"64342":0,"64343":0,"64344":-1,"64345":0,"64346":0,"64347":0,"64348":0,"64349":-1,"64350":2268,"64351":0,"64352":245,"64353":-1,"64354":0,"64355":584,"64356":2062,"64357":0,"64358":2631,"64359":0,"64360":2673,"64361":2131,"64362":-1,"64363":567,"64364":-1,"64365":0,"64366":-1,"64367":-1,"64368":0,"64369":0,"64370":-1,"64371":2095,"64372":2529,"64373":-1,"64374":0,"64375":2206,"64376":-1,"64377":0,"64378":-1,"64379":-1,"64380":2087,"64381":0,"64382":0,"64383":0,"64384":0,"64385":0,"64386":-1,"64387":0,"64388":-1,"64389":0,"64390":2400,"64391":-1,"64392":-1,"64393":0,"64394":2556,"64395":0,"64396":0,"64397":2305,"64398":-1,"64399":-1,"64400":2361,"64401":0,"64402":0,"64403":142,"64404":0,"64405":0,"64406":0,"64407":-1,"64408":-1,"64409":0,"64410":2323,"64411":2561,"64412":0,"64413":0,"64414":-1,"64415":-1,"64416":0,"64417":-1,"64418":0,"64419":0,"64420":0,"64421":18,"64422":101,"64423":0,"64424":-1,"64425":2296,"64426":-1,"64427":0,"64428":0,"64429":0,"64430":2403,"64431":0,"64432":2007,"64433":2665,"64434":-1,"64435":-1,"64436":-1,"64437":0,"64438":-1,"64439":-1,"64440":-1,"64441":0,"64442":0,"64443":0,"64444":-1,"64445":0,"64446":0,"64447":0,"64448":908,"64449":2189,"64450":-1,"64451":2517,"64452":0,"64453":137,"64454":0,"64455":2194,"64456":0,"64457":-1,"64458":-1,"64459":-1,"64460":0,"64461":-1,"64462":0,"64463":0,"64464":-1,"64465":0,"64466":-1,"64467":0,"64468":-1,"64469":0,"64470":-1,"64471":2010,"64472":0,"64473":2135,"64474":-1,"64475":2249,"64476":-1,"64477":-1,"64478":0,"64479":-1,"64480":-1,"64481":-1,"64482":2151,"64483":0,"64484":0,"64485":0,"64486":0,"64487":-1,"64488":0,"64489":0,"64490":0,"64491":0,"64492":2413,"64493":-1,"64494":0,"64495":2556,"64496":-1,"64497":0,"64498":0,"64499":-1,"64500":-1,"64501":-1,"64502":617,"64503":0,"64504":-1,"64505":2554,"64506":0,"64507":0,"64508":-1,"64509":0,"64510":-1,"64511":0,"64512":-1,"64513":0,"64514":0,"64515":0,"64516":-1,"64517":0,"64518":0,"64519":-1,"64520":0,"64521":2069,"64522":2457,"64523":0,"64524":2028,"64525":-1,"64526":0,"64527":0,"64528":-1,"64529":2122,"64530":-1,"64531":-1,"64532":2045,"64533":0,"64534":25,"64535":2642,"64536":0,"64537":0,"64538":0,"64539":0,"64540":0,"64541":0,"64542":0,"64543":0,"64544":0,"64545":0,"64546":0,"64547":-1,"64548":0,"64549":-1,"64550":-1,"64551":864,"64552":0,"64553":86,"64554":0,"64555":0,"64556":386,"64557":2604,"64558":0,"64559":0,"64560":0,"64561":0,"64562":0,"64563":0,"64564":0,"64565":0,"64566":-1,"64567":0,"64568":-1,"64569":2127,"64570":0,"64571":0,"64572":2517,"64573":2398,"64574":0,"64575":0,"64576":2160,"64577":-1,"64578":0,"64579":-1,"64580":-1,"64581":0,"64582":-1,"64583":2629,"64584":2279,"64585":2289,"64586":0,"64587":0,"64588":0,"64589":0,"64590":-1,"64591":2329,"64592":0,"64593":-1,"64594":-1,"64595":0,"64596":0,"64597":0,"64598":0,"64599":217,"64600":-1,"64601":0,"64602":2017,"64603":-1,"64604":-1,"64605":0,"64606":0,"64607":-1,"64608":0,"64609":2114,"64610":284,"64611":2394,"64612":2489,"64613":104,"64614":2550,"64615":2323,"64616":-1,"64617":2390,"64618":2040,"64619":23,"64620":19,"64621":0,"64622":0,"64623":0,"64624":0,"64625":0,"64626":0,"64627":0,"64628":0,"64629":-1,"64630":-1,"64631":0,"64632":0,"64633":-1,"64634":-1,"64635":0,"64636":-1,"64637":2046,"64638":-1,"64639":2315,"64640":0,"64641":-1,"64642":0,"64643":-1,"64644":-1,"64645":2574,"64646":-1,"64647":0,"64648":-1,"64649":-1,"64650":0,"64651":-1,"64652":-1,"64653":2527,"64654":-1,"64655":0,"64656":-1,"64657":0,"64658":2445,"64659":0,"64660":64,"64661":0,"64662":0,"64663":-1,"64664":0,"64665":2066,"64666":-1,"64667":2054,"64668":0,"64669":0,"64670":0,"64671":0,"64672":0,"64673":483,"64674":-1,"64675":42,"64676":617,"64677":0,"64678":0,"64679":0,"64680":2447,"64681":-1,"64682":30,"64683":-1,"64684":0,"64685":2175,"64686":0,"64687":2048,"64688":0,"64689":0,"64690":-1,"64691":0,"64692":2064,"64693":0,"64694":0,"64695":264,"64696":-1,"64697":-1,"64698":0,"64699":-1,"64700":2227,"64701":2160,"64702":-1,"64703":0,"64704":2086,"64705":0,"64706":2670,"64707":0,"64708":-1,"64709":-1,"64710":2145,"64711":0,"64712":-1,"64713":-1,"64714":2,"64715":-1,"64716":308,"64717":-1,"64718":75,"64719":0,"64720":0,"64721":0,"64722":0,"64723":2272,"64724":-1,"64725":0,"64726":2509,"64727":2636,"64728":-1,"64729":0,"64730":-1,"64731":0,"64732":-1,"64733":0,"64734":2450,"64735":1995,"64736":2209,"64737":2665,"64738":397,"64739":2553,"64740":136,"64741":-1,"64742":0,"64743":2388,"64744":-1,"64745":-1,"64746":0,"64747":0,"64748":-1,"64749":2431,"64750":0,"64751":0,"64752":-1,"64753":0,"64754":0,"64755":0,"64756":0,"64757":2309,"64758":0,"64759":-1,"64760":-1,"64761":0,"64762":0,"64763":0,"64764":2656,"64765":0,"64766":-1,"64767":0,"64768":0,"64769":2665,"64770":-1,"64771":2253,"64772":-1,"64773":0,"64774":80,"64775":0,"64776":0,"64777":0,"64778":-1,"64779":0,"64780":0,"64781":-1,"64782":40,"64783":2108,"64784":-1,"64785":-1,"64786":-1,"64787":133,"64788":0,"64789":-1,"64790":2290,"64791":2228,"64792":2420,"64793":2326,"64794":-1,"64795":604,"64796":0,"64797":0,"64798":2065,"64799":0,"64800":0,"64801":0,"64802":-1,"64803":2165,"64804":0,"64805":0,"64806":-1,"64807":-1,"64808":-1,"64809":0,"64810":798,"64811":-1,"64812":0,"64813":-1,"64814":-1,"64815":2645,"64816":0,"64817":0,"64818":-1,"64819":-1,"64820":-1,"64821":0,"64822":0,"64823":325,"64824":-1,"64825":0,"64826":2326,"64827":2346,"64828":0,"64829":2537,"64830":584,"64831":2065,"64832":2422,"64833":0,"64834":0,"64835":0,"64836":0,"64837":0,"64838":2420,"64839":-1,"64840":0,"64841":0,"64842":2072,"64843":0,"64844":-1,"64845":-1,"64846":-1,"64847":-1,"64848":0,"64849":0,"64850":0,"64851":-1,"64852":2226,"64853":0,"64854":0,"64855":-1,"64856":2589,"64857":-1,"64858":-1,"64859":-1,"64860":2596,"64861":2434,"64862":-1,"64863":7,"64864":-1,"64865":2430,"64866":-1,"64867":-1,"64868":0,"64869":-1,"64870":209,"64871":-1,"64872":0,"64873":-1,"64874":0,"64875":2668,"64876":0,"64877":12,"64878":2166,"64879":0,"64880":-1,"64881":0,"64882":2106,"64883":0,"64884":-1,"64885":0,"64886":-1,"64887":0,"64888":-1,"64889":-1,"64890":-1,"64891":0,"64892":2008,"64893":0,"64894":0,"64895":-1,"64896":2453,"64897":0,"64898":0,"64899":-1,"64900":-1,"64901":0,"64902":2599,"64903":0,"64904":2434,"64905":-1,"64906":0,"64907":0,"64908":0,"64909":-1,"64910":2065,"64911":0,"64912":-1,"64913":2613,"64914":0,"64915":-1,"64916":-1,"64917":0,"64918":0,"64919":2517,"64920":-1,"64921":2449,"64922":-1,"64923":-1,"64924":0,"64925":0,"64926":572,"64927":-1,"64928":0,"64929":0,"64930":2151,"64931":-1,"64932":0,"64933":-1,"64934":0,"64935":2584,"64936":0,"64937":0,"64938":-1,"64939":0,"64940":0,"64941":-1,"64942":-1,"64943":2203,"64944":0,"64945":-1,"64946":0,"64947":-1,"64948":0,"64949":-1,"64950":2601,"64951":-1,"64952":0,"64953":0,"64954":0,"64955":0,"64956":2672,"64957":0,"64958":0,"64959":2010,"64960":-1,"64961":-1,"64962":-1,"64963":0,"64964":-1,"64965":0,"64966":449,"64967":0,"64968":-1,"64969":0,"64970":0,"64971":107,"64972":2049,"64973":0,"64974":0,"64975":-1,"64976":0,"64977":-1,"64978":0,"64979":-1,"64980":0,"64981":-1,"64982":0,"64983":2433,"64984":0,"64985":-1,"64986":-1,"64987":0,"64988":-1,"64989":2317,"64990":0,"64991":0,"64992":6,"64993":2271,"64994":-1,"64995":0,"64996":-1,"64997":-1,"64998":-1,"64999":-1,"65000":0,"65001":0,"65002":-1,"65003":-1,"65004":2569,"65005":-1,"65006":-1,"65007":0,"65008":-1,"65009":0,"65010":-1,"65011":0,"65012":0,"65013":0,"65014":0,"65015":0,"65016":-1,"65017":-1,"65018":0,"65019":0,"65020":0,"65021":2241,"65022":0,"65023":2340,"65024":0,"65025":0,"65026":0,"65027":2081,"65028":-1,"65029":-1,"65030":2147,"65031":148,"65032":0,"65033":0,"65034":0,"65035":2600,"65036":0,"65037":2512,"65038":-1,"65039":0,"65040":0,"65041":-1,"65042":0,"65043":31,"65044":0,"65045":738,"65046":2353,"65047":-1,"65048":0,"65049":-1,"65050":2185,"65051":2603,"65052":2008,"65053":-1,"65054":-1,"65055":-1,"65056":-1,"65057":0,"65058":-1,"65059":-1,"65060":-1,"65061":-1,"65062":0,"65063":0,"65064":0,"65065":2203,"65066":-1,"65067":0,"65068":-1,"65069":-1,"65070":2021,"65071":0,"65072":-1,"65073":-1,"65074":2304,"65075":-1,"65076":-1,"65077":2303,"65078":0,"65079":-1,"65080":118,"65081":0,"65082":0,"65083":0,"65084":2098,"65085":2643,"65086":0,"65087":0,"65088":0,"65089":2424,"65090":2583,"65091":0,"65092":0,"65093":0,"65094":0,"65095":0,"65096":0,"65097":0,"65098":0,"65099":0,"65100":0,"65101":-1,"65102":-1,"65103":-1,"65104":2315,"65105":2437,"65106":2306,"65107":0,"65108":0,"65109":-1,"65110":0,"65111":0,"65112":0,"65113":-1,"65114":2335,"65115":0,"65116":-1,"65117":2591,"65118":0,"65119":0,"65120":-1,"65121":0,"65122":-1,"65123":-1,"65124":0,"65125":-1,"65126":2195,"65127":-1,"65128":0,"65129":2376,"65130":0,"65131":0,"65132":-1,"65133":0,"65134":0,"65135":-1,"65136":2481,"65137":-1,"65138":-1,"65139":0,"65140":0,"65141":-1,"65142":-1,"65143":-1,"65144":2658,"65145":-1,"65146":0,"65147":-1,"65148":0,"65149":-1,"65150":0,"65151":-1,"65152":-1,"65153":-1,"65154":2668,"65155":0,"65156":402,"65157":20,"65158":-1,"65159":0,"65160":0,"65161":0,"65162":0,"65163":13,"65164":-1,"65165":-1,"65166":-1,"65167":0,"65168":-1,"65169":0,"65170":0,"65171":0,"65172":-1,"65173":-1,"65174":0,"65175":0,"65176":-1,"65177":0,"65178":0,"65179":-1,"65180":0,"65181":0,"65182":-1,"65183":-1,"65184":0,"65185":0,"65186":0,"65187":2058,"65188":2552,"65189":2222,"65190":-1,"65191":0,"65192":-1,"65193":2289,"65194":284,"65195":0,"65196":0,"65197":0,"65198":-1,"65199":-1,"65200":0,"65201":2252,"65202":2597,"65203":2658,"65204":-1,"65205":2094,"65206":0,"65207":0,"65208":0,"65209":-1,"65210":-1,"65211":0,"65212":1991,"65213":0,"65214":-1,"65215":-1,"65216":7,"65217":0,"65218":-1,"65219":0,"65220":-1,"65221":0,"65222":0,"65223":-1,"65224":-1,"65225":-1,"65226":-1,"65227":-1,"65228":0,"65229":-1,"65230":0,"65231":0,"65232":2421,"65233":0,"65234":2618,"65235":-1,"65236":0,"65237":2317,"65238":2291,"65239":0,"65240":2151,"65241":0,"65242":0,"65243":-1,"65244":-1,"65245":0,"65246":-1,"65247":-1,"65248":0,"65249":0,"65250":0,"65251":0,"65252":2021,"65253":0,"65254":0,"65255":0,"65256":0,"65257":0,"65258":0,"65259":0,"65260":2295,"65261":-1,"65262":2431,"65263":2459,"65264":178,"65265":0,"65266":0,"65267":0,"65268":0,"65269":0,"65270":-1,"65271":-1,"65272":-1,"65273":2229,"65274":0,"65275":0,"65276":-1,"65277":0,"65278":2027,"65279":849,"65280":2239,"65281":0,"65282":-1,"65283":2439,"65284":-1,"65285":-1,"65286":-1,"65287":0,"65288":0,"65289":-1,"65290":0,"65291":2181,"65292":0,"65293":2384,"65294":0,"65295":-1,"65296":0,"65297":2126,"65298":2397,"65299":2404,"65300":0,"65301":-1,"65302":-1,"65303":18,"65304":-1,"65305":0,"65306":2472,"65307":0,"65308":0,"65309":0,"65310":-1,"65311":0,"65312":0,"65313":0,"65314":-1,"65315":0,"65316":-1,"65317":-1,"65318":-1,"65319":0,"65320":2591,"65321":-1,"65322":0,"65323":2437,"65324":-1,"65325":-1,"65326":2020,"65327":0,"65328":0,"65329":-1,"65330":-1,"65331":0,"65332":2357,"65333":2139,"65334":3,"65335":2536,"65336":29,"65337":-1,"65338":-1,"65339":0,"65340":-1,"65341":0,"65342":-1,"65343":2044,"65344":-1,"65345":0,"65346":2181,"65347":0,"65348":-1,"65349":2410,"65350":0,"65351":2628,"65352":2506,"65353":0,"65354":0,"65355":0,"65356":2300,"65357":0,"65358":2294,"65359":2281,"65360":0,"65361":0,"65362":-1,"65363":-1,"65364":0,"65365":2418,"65366":0,"65367":145,"65368":2478,"65369":-1,"65370":1993,"65371":0,"65372":0,"65373":-1,"65374":-1,"65375":-1,"65376":0,"65377":0,"65378":-1,"65379":-1,"65380":0,"65381":0,"65382":2223,"65383":2231,"65384":0,"65385":-1,"65386":-1,"65387":-1,"65388":0,"65389":35,"65390":130,"65391":0,"65392":0,"65393":38,"65394":0,"65395":-1,"65396":325,"65397":0,"65398":0,"65399":-1,"65400":0,"65401":-1,"65402":0,"65403":-1,"65404":0,"65405":0,"65406":602,"65407":2673,"65408":0,"65409":0,"65410":-1,"65411":-1,"65412":2254,"65413":0,"65414":2534,"65415":0,"65416":0,"65417":284,"65418":-1,"65419":0,"65420":2142,"65421":402,"65422":0,"65423":0,"65424":0,"65425":2662,"65426":-1,"65427":0,"65428":-1,"65429":-1,"65430":0,"65431":0,"65432":0,"65433":0,"65434":-1,"65435":0,"65436":0,"65437":0,"65438":2380,"65439":16,"65440":514,"65441":-1,"65442":0,"65443":-1,"65444":0,"65445":2609,"65446":0,"65447":0,"65448":448,"65449":0,"65450":-1,"65451":-1,"65452":0,"65453":-1,"65454":-1,"65455":2477,"65456":2227,"65457":2483,"65458":2394,"65459":2489,"65460":-1,"65461":-1,"65462":2035,"65463":2265,"65464":2039,"65465":0,"65466":0,"65467":0,"65468":2526,"65469":2024,"65470":2268,"65471":2303,"65472":0,"65473":2064,"65474":-1,"65475":0,"65476":0,"65477":0,"65478":0,"65479":-1,"65480":2165,"65481":0,"65482":0,"65483":0,"65484":2442,"65485":2520,"65486":0,"65487":2643,"65488":0,"65489":-1,"65490":-1,"65491":2052,"65492":0,"65493":-1,"65494":0,"65495":0,"65496":-1,"65497":0,"65498":-1,"65499":0,"65500":0,"65501":-1,"65502":0,"65503":0,"65504":2358,"65505":0,"65506":-1,"65507":0,"65508":0,"65509":-1,"65510":0,"65511":-1,"65512":0,"65513":0,"65514":2275,"65515":2343,"65516":-1,"65517":2156,"65518":-1,"65519":-1,"65520":2070,"65521":-1,"65522":0,"65523":2316,"65524":0,"65525":-1,"65526":-1,"65527":0,"65528":327,"65529":-1,"65530":-1,"65531":2251,"65532":0,"65533":864,"65534":0,"65535":-1,"65536":0,"65537":0,"65538":350,"65539":0,"65540":-1,"65541":-1,"65542":0,"65543":0,"65544":2451,"65545":0,"65546":0,"65547":0,"65548":-1,"65549":0,"65550":0,"65551":-1,"65552":2327,"65553":0,"65554":663,"65555":2350,"65556":0,"65557":-1,"65558":-1,"65559":0,"65560":0,"65561":0,"65562":0,"65563":787,"65564":-1,"65565":-1,"65566":2531,"65567":-1,"65568":0,"65569":-1,"65570":0,"65571":2172,"65572":-1,"65573":2564,"65574":-1,"65575":-1,"65576":-1,"65577":-1,"65578":2089,"65579":-1,"65580":2384,"65581":0,"65582":0,"65583":2361,"65584":-1,"65585":2449,"65586":0,"65587":0,"65588":0,"65589":0,"65590":-1,"65591":-1,"65592":159,"65593":2309,"65594":2242,"65595":2165,"65596":0,"65597":2556,"65598":-1,"65599":0,"65600":2280,"65601":2048,"65602":2425,"65603":0,"65604":0,"65605":-1,"65606":-1,"65607":0,"65608":2578,"65609":2434,"65610":5,"65611":-1,"65612":-1,"65613":-1,"65614":-1,"65615":0,"65616":1992,"65617":0,"65618":-1,"65619":0,"65620":0,"65621":217,"65622":0,"65623":2553,"65624":-1,"65625":0,"65626":0,"65627":-1,"65628":-1,"65629":2675,"65630":-1,"65631":0,"65632":-1,"65633":0,"65634":2337,"65635":0,"65636":2353,"65637":0,"65638":0,"65639":-1,"65640":0,"65641":0,"65642":0,"65643":2247,"65644":-1,"65645":-1,"65646":2297,"65647":0,"65648":-1,"65649":0,"65650":2324,"65651":0,"65652":2583,"65653":-1,"65654":-1,"65655":-1,"65656":-1,"65657":0,"65658":284,"65659":2570,"65660":-1,"65661":-1,"65662":-1,"65663":-1,"65664":0,"65665":-1,"65666":-1,"65667":-1,"65668":-1,"65669":0,"65670":0,"65671":691,"65672":2287,"65673":0,"65674":-1,"65675":0,"65676":0,"65677":0,"65678":0,"65679":0,"65680":2200,"65681":2066,"65682":884,"65683":0,"65684":2025,"65685":-1,"65686":0,"65687":-1,"65688":0,"65689":-1,"65690":-1,"65691":622,"65692":-1,"65693":0,"65694":2120,"65695":2563,"65696":-1,"65697":0,"65698":0,"65699":0,"65700":0,"65701":0,"65702":-1,"65703":-1,"65704":0,"65705":0,"65706":0,"65707":2172,"65708":-1,"65709":-1,"65710":0,"65711":40,"65712":0,"65713":-1,"65714":2399,"65715":292,"65716":-1,"65717":2131,"65718":0,"65719":0,"65720":0,"65721":0,"65722":0,"65723":0,"65724":-1,"65725":0,"65726":-1,"65727":-1,"65728":-1,"65729":-1,"65730":-1,"65731":2034,"65732":0,"65733":0,"65734":-1,"65735":0,"65736":-1,"65737":2052,"65738":1995,"65739":-1,"65740":2034,"65741":0,"65742":0,"65743":-1,"65744":2387,"65745":2247,"65746":2188,"65747":0,"65748":2447,"65749":-1,"65750":-1,"65751":102,"65752":-1,"65753":-1,"65754":0,"65755":0,"65756":0,"65757":-1,"65758":-1,"65759":603,"65760":0,"65761":2453,"65762":0,"65763":0,"65764":-1,"65765":-1,"65766":-1,"65767":-1,"65768":-1,"65769":0,"65770":0,"65771":0,"65772":-1,"65773":0,"65774":0,"65775":0,"65776":0,"65777":0,"65778":0,"65779":2440,"65780":0,"65781":0,"65782":2359,"65783":-1,"65784":2104,"65785":2151,"65786":317,"65787":-1,"65788":2277,"65789":0,"65790":0,"65791":-1,"65792":0,"65793":-1,"65794":-1,"65795":-1,"65796":-1,"65797":-1,"65798":-1,"65799":2269,"65800":0,"65801":0,"65802":0,"65803":0,"65804":-1,"65805":-1,"65806":-1,"65807":303,"65808":0,"65809":909,"65810":2109,"65811":0,"65812":179,"65813":0,"65814":0,"65815":0,"65816":0,"65817":2170,"65818":0,"65819":0,"65820":2241,"65821":0,"65822":264,"65823":0,"65824":0,"65825":-1,"65826":0,"65827":0,"65828":0,"65829":0,"65830":0,"65831":0,"65832":0,"65833":-1,"65834":720,"65835":2419,"65836":0,"65837":-1,"65838":0,"65839":0,"65840":-1,"65841":-1,"65842":0,"65843":0,"65844":449,"65845":-1,"65846":-1,"65847":0,"65848":-1,"65849":2530,"65850":1995,"65851":0,"65852":-1,"65853":2410,"65854":-1,"65855":0,"65856":0,"65857":2414,"65858":0,"65859":-1,"65860":0,"65861":0,"65862":-1,"65863":0,"65864":2448,"65865":-1,"65866":2452,"65867":0,"65868":0,"65869":-1,"65870":-1,"65871":-1,"65872":0,"65873":2593,"65874":-1,"65875":798,"65876":0,"65877":-1,"65878":-1,"65879":-1,"65880":-1,"65881":-1,"65882":0,"65883":0,"65884":0,"65885":0,"65886":31,"65887":2030,"65888":-1,"65889":-1,"65890":-1,"65891":0,"65892":-1,"65893":2463,"65894":-1,"65895":17,"65896":0,"65897":0,"65898":-1,"65899":49,"65900":-1,"65901":-1,"65902":-1,"65903":0,"65904":-1,"65905":2189,"65906":-1,"65907":0,"65908":-1,"65909":-1,"65910":0,"65911":2313,"65912":2218,"65913":0,"65914":0,"65915":0,"65916":0,"65917":448,"65918":936,"65919":-1,"65920":-1,"65921":0,"65922":2453,"65923":-1,"65924":-1,"65925":-1,"65926":0,"65927":-1,"65928":2372,"65929":2501,"65930":0,"65931":0,"65932":-1,"65933":2048,"65934":-1,"65935":-1,"65936":2472,"65937":2515,"65938":0,"65939":0,"65940":2499,"65941":0,"65942":0,"65943":407,"65944":0,"65945":2499,"65946":0,"65947":-1,"65948":0,"65949":-1,"65950":2123,"65951":2659,"65952":0,"65953":0,"65954":-1,"65955":0,"65956":-1,"65957":2082,"65958":0,"65959":0,"65960":0,"65961":-1,"65962":0,"65963":-1,"65964":0,"65965":2546,"65966":2645,"65967":2050,"65968":-1,"65969":0,"65970":0,"65971":345,"65972":0,"65973":0,"65974":3,"65975":0,"65976":2127,"65977":0,"65978":462,"65979":2651,"65980":-1,"65981":0,"65982":0,"65983":554,"65984":0,"65985":-1,"65986":0,"65987":0,"65988":0,"65989":2138,"65990":-1,"65991":572,"65992":-1,"65993":0,"65994":-1,"65995":0,"65996":0,"65997":-1,"65998":-1,"65999":2454,"66000":0,"66001":-1,"66002":0,"66003":2328,"66004":0,"66005":0,"66006":0,"66007":-1,"66008":2316,"66009":-1,"66010":2031,"66011":2134,"66012":0,"66013":-1,"66014":2233,"66015":2460,"66016":2636,"66017":-1,"66018":-1,"66019":0,"66020":0,"66021":0,"66022":0,"66023":-1,"66024":-1,"66025":2497,"66026":-1,"66027":-1,"66028":21,"66029":0,"66030":-1,"66031":0,"66032":0,"66033":0,"66034":2630,"66035":0,"66036":2328,"66037":-1,"66038":0,"66039":-1,"66040":-1,"66041":-1,"66042":61,"66043":0,"66044":0,"66045":2133,"66046":-1,"66047":0,"66048":-1,"66049":0,"66050":0,"66051":-1,"66052":0,"66053":-1,"66054":0,"66055":669,"66056":2069,"66057":-1,"66058":-1,"66059":0,"66060":0,"66061":2320,"66062":-1,"66063":280,"66064":0,"66065":-1,"66066":0,"66067":0,"66068":-1,"66069":-1,"66070":0,"66071":-1,"66072":0,"66073":-1,"66074":0,"66075":0,"66076":0,"66077":0,"66078":2666,"66079":2551,"66080":148,"66081":2393,"66082":-1,"66083":0,"66084":-1,"66085":2559,"66086":0,"66087":-1,"66088":2532,"66089":2368,"66090":-1,"66091":2183,"66092":-1,"66093":96,"66094":0,"66095":0,"66096":300,"66097":0,"66098":-1,"66099":2622,"66100":0,"66101":-1,"66102":2602,"66103":0,"66104":0,"66105":-1,"66106":0,"66107":-1,"66108":44,"66109":0,"66110":0,"66111":2548,"66112":-1,"66113":0,"66114":0,"66115":0,"66116":0,"66117":350,"66118":0,"66119":604,"66120":2555,"66121":0,"66122":0,"66123":0,"66124":0,"66125":-1,"66126":-1,"66127":0,"66128":0,"66129":-1,"66130":0,"66131":0,"66132":-1,"66133":2100,"66134":2113,"66135":-1,"66136":0,"66137":0,"66138":0,"66139":0,"66140":2433,"66141":2264,"66142":2560,"66143":2615,"66144":0,"66145":0,"66146":-1,"66147":0,"66148":0,"66149":-1,"66150":0,"66151":2250,"66152":-1,"66153":0,"66154":-1,"66155":-1,"66156":118,"66157":-1,"66158":-1,"66159":2298,"66160":0,"66161":2650,"66162":0,"66163":0,"66164":-1,"66165":2318,"66166":2675,"66167":2311,"66168":-1,"66169":637,"66170":-1,"66171":-1,"66172":0,"66173":0,"66174":0,"66175":0,"66176":2449,"66177":0,"66178":0,"66179":-1,"66180":0,"66181":514,"66182":2596,"66183":2617,"66184":-1,"66185":0,"66186":0,"66187":0,"66188":0,"66189":0,"66190":-1,"66191":-1,"66192":-1,"66193":0,"66194":-1,"66195":0,"66196":2029,"66197":0,"66198":0,"66199":2665,"66200":842,"66201":0,"66202":0,"66203":0,"66204":-1,"66205":0,"66206":-1,"66207":0,"66208":-1,"66209":2638,"66210":0,"66211":0,"66212":2002,"66213":-1,"66214":0,"66215":2377,"66216":-1,"66217":2506,"66218":0,"66219":0,"66220":2174,"66221":-1,"66222":2112,"66223":2557,"66224":0,"66225":-1,"66226":-1,"66227":0,"66228":-1,"66229":2110,"66230":0,"66231":0,"66232":-1,"66233":-1,"66234":-1,"66235":-1,"66236":0,"66237":0,"66238":2093,"66239":0,"66240":2088,"66241":0,"66242":0,"66243":2354,"66244":-1,"66245":2193,"66246":0,"66247":0,"66248":-1,"66249":2121,"66250":-1,"66251":-1,"66252":-1,"66253":0,"66254":0,"66255":-1,"66256":0,"66257":0,"66258":2234,"66259":2368,"66260":645,"66261":2561,"66262":284,"66263":0,"66264":0,"66265":0,"66266":0,"66267":-1,"66268":0,"66269":0,"66270":-1,"66271":-1,"66272":-1,"66273":-1,"66274":0,"66275":2007,"66276":2666,"66277":2342,"66278":2086,"66279":0,"66280":-1,"66281":58,"66282":2407,"66283":-1,"66284":0,"66285":0,"66286":-1,"66287":-1,"66288":0,"66289":2114,"66290":0,"66291":2446,"66292":-1,"66293":2003,"66294":0,"66295":0,"66296":-1,"66297":0,"66298":-1,"66299":262,"66300":-1,"66301":-1,"66302":0,"66303":0,"66304":-1,"66305":0,"66306":-1,"66307":0,"66308":0,"66309":-1,"66310":2510,"66311":0,"66312":-1,"66313":798,"66314":2518,"66315":2424,"66316":2495,"66317":-1,"66318":-1,"66319":0,"66320":2395,"66321":-1,"66322":-1,"66323":0,"66324":-1,"66325":2134,"66326":0,"66327":0,"66328":0,"66329":514,"66330":2111,"66331":136,"66332":35,"66333":-1,"66334":2610,"66335":0,"66336":-1,"66337":0,"66338":0,"66339":0,"66340":-1,"66341":0,"66342":293,"66343":2291,"66344":0,"66345":0,"66346":-1,"66347":449,"66348":0,"66349":0,"66350":0,"66351":-1,"66352":2540,"66353":2196,"66354":-1,"66355":0,"66356":0,"66357":551,"66358":-1,"66359":0,"66360":2215,"66361":0,"66362":2473,"66363":0,"66364":-1,"66365":0,"66366":2097,"66367":-1,"66368":2286,"66369":49,"66370":2638,"66371":-1,"66372":0,"66373":0,"66374":0,"66375":2055,"66376":2467,"66377":0,"66378":0,"66379":-1,"66380":0,"66381":-1,"66382":0,"66383":0,"66384":0,"66385":-1,"66386":0,"66387":44,"66388":0,"66389":0,"66390":0,"66391":2231,"66392":-1,"66393":141,"66394":-1,"66395":2582,"66396":0,"66397":-1,"66398":-1,"66399":0,"66400":0,"66401":0,"66402":0,"66403":0,"66404":0,"66405":0,"66406":0,"66407":341,"66408":2660,"66409":-1,"66410":14,"66411":0,"66412":0,"66413":0,"66414":0,"66415":395,"66416":0,"66417":0,"66418":2316,"66419":0,"66420":0,"66421":0,"66422":0,"66423":0,"66424":-1,"66425":-1,"66426":2138,"66427":-1,"66428":2217,"66429":0,"66430":-1,"66431":0,"66432":0,"66433":0,"66434":0,"66435":-1,"66436":2190,"66437":2565,"66438":-1,"66439":-1,"66440":2248,"66441":2587,"66442":-1,"66443":2331,"66444":2398,"66445":0,"66446":0,"66447":0,"66448":0,"66449":0,"66450":0,"66451":2408,"66452":-1,"66453":2503,"66454":-1,"66455":2677,"66456":2035,"66457":0,"66458":-1,"66459":-1,"66460":2563,"66461":0,"66462":2266,"66463":0,"66464":2571,"66465":2044,"66466":303,"66467":461,"66468":0,"66469":-1,"66470":0,"66471":0,"66472":2382,"66473":0,"66474":0,"66475":0,"66476":2044,"66477":0,"66478":-1,"66479":-1,"66480":-1,"66481":-1,"66482":0,"66483":2014,"66484":0,"66485":2536,"66486":859,"66487":0,"66488":2310,"66489":65,"66490":0,"66491":0,"66492":-1,"66493":-1,"66494":-1,"66495":-1,"66496":0,"66497":-1,"66498":-1,"66499":0,"66500":2442,"66501":2282,"66502":2160,"66503":101,"66504":64,"66505":0,"66506":2328,"66507":0,"66508":0,"66509":-1,"66510":2223,"66511":2302,"66512":20,"66513":-1,"66514":2161,"66515":455,"66516":0,"66517":-1,"66518":0,"66519":2414,"66520":2109,"66521":0,"66522":2136,"66523":0,"66524":0,"66525":0,"66526":-1,"66527":0,"66528":118,"66529":-1,"66530":0,"66531":2138,"66532":-1,"66533":603,"66534":0,"66535":0,"66536":-1,"66537":0,"66538":0,"66539":0,"66540":-1,"66541":0,"66542":0,"66543":0,"66544":0,"66545":2113,"66546":0,"66547":2604,"66548":0,"66549":2097,"66550":-1,"66551":-1,"66552":-1,"66553":2195,"66554":-1,"66555":2541,"66556":-1,"66557":0,"66558":-1,"66559":-1,"66560":0,"66561":2128,"66562":2311,"66563":0,"66564":0,"66565":0,"66566":-1,"66567":2192,"66568":-1,"66569":-1,"66570":0,"66571":544,"66572":0,"66573":0,"66574":0,"66575":0,"66576":0,"66577":-1,"66578":2080,"66579":-1,"66580":0,"66581":0,"66582":0,"66583":2051,"66584":0,"66585":2017,"66586":0,"66587":0,"66588":0,"66589":0,"66590":0,"66591":0,"66592":2510,"66593":-1,"66594":0,"66595":0,"66596":0,"66597":-1,"66598":-1,"66599":0,"66600":2406,"66601":-1,"66602":2170,"66603":0,"66604":0,"66605":-1,"66606":2519,"66607":-1,"66608":0,"66609":706,"66610":-1,"66611":0,"66612":-1,"66613":-1,"66614":0,"66615":2427,"66616":2642,"66617":0,"66618":0,"66619":2283,"66620":0,"66621":0,"66622":2471,"66623":0,"66624":2412,"66625":0,"66626":0,"66627":-1,"66628":0,"66629":0,"66630":-1,"66631":-1,"66632":2052,"66633":2498,"66634":0,"66635":2446,"66636":0,"66637":0,"66638":-1,"66639":0,"66640":0,"66641":0,"66642":-1,"66643":0,"66644":2166,"66645":0,"66646":2486,"66647":-1,"66648":0,"66649":2655,"66650":2347,"66651":2592,"66652":0,"66653":0,"66654":2316,"66655":0,"66656":2014,"66657":-1,"66658":0,"66659":0,"66660":0,"66661":2075,"66662":2528,"66663":-1,"66664":0,"66665":3,"66666":0,"66667":-1,"66668":-1,"66669":150,"66670":-1,"66671":-1,"66672":0,"66673":0,"66674":-1,"66675":0,"66676":2659,"66677":0,"66678":0,"66679":-1,"66680":38,"66681":0,"66682":-1,"66683":-1,"66684":2129,"66685":0,"66686":0,"66687":483,"66688":-1,"66689":2120,"66690":0,"66691":-1,"66692":0,"66693":0,"66694":187,"66695":0,"66696":-1,"66697":-1,"66698":-1,"66699":0,"66700":-1,"66701":2590,"66702":0,"66703":0,"66704":0,"66705":-1,"66706":2451,"66707":0,"66708":2194,"66709":-1,"66710":0,"66711":2167,"66712":-1,"66713":2368,"66714":-1,"66715":2411,"66716":-1,"66717":-1,"66718":2357,"66719":0,"66720":0,"66721":0,"66722":0,"66723":0,"66724":1992,"66725":-1,"66726":2051,"66727":0,"66728":0,"66729":0,"66730":-1,"66731":0,"66732":126,"66733":-1,"66734":-1,"66735":33,"66736":2586,"66737":-1,"66738":-1,"66739":2401,"66740":327,"66741":35,"66742":0,"66743":-1,"66744":2452,"66745":2251,"66746":0,"66747":-1,"66748":0,"66749":0,"66750":2255,"66751":0,"66752":0,"66753":0,"66754":-1,"66755":2665,"66756":0,"66757":-1,"66758":-1,"66759":-1,"66760":0,"66761":0,"66762":2626,"66763":2663,"66764":-1,"66765":2458,"66766":0,"66767":0,"66768":-1,"66769":0,"66770":2203,"66771":0,"66772":0,"66773":-1,"66774":0,"66775":0,"66776":-1,"66777":2072,"66778":-1,"66779":-1,"66780":2185,"66781":0,"66782":-1,"66783":0,"66784":-1,"66785":2172,"66786":148,"66787":0,"66788":-1,"66789":0,"66790":0,"66791":-1,"66792":-1,"66793":2122,"66794":-1,"66795":-1,"66796":-1,"66797":2308,"66798":0,"66799":0,"66800":-1,"66801":2382,"66802":0,"66803":2121,"66804":2662,"66805":-1,"66806":0,"66807":-1,"66808":-1,"66809":0,"66810":-1,"66811":-1,"66812":-1,"66813":0,"66814":0,"66815":0,"66816":-1,"66817":2060,"66818":2086,"66819":-1,"66820":2046,"66821":2537,"66822":2546,"66823":0,"66824":-1,"66825":2382,"66826":0,"66827":2635,"66828":-1,"66829":-1,"66830":-1,"66831":-1,"66832":0,"66833":0,"66834":0,"66835":0,"66836":2307,"66837":-1,"66838":0,"66839":-1,"66840":-1,"66841":-1,"66842":-1,"66843":-1,"66844":0,"66845":-1,"66846":2298,"66847":0,"66848":-1,"66849":0,"66850":120,"66851":2126,"66852":738,"66853":0,"66854":-1,"66855":-1,"66856":0,"66857":0,"66858":0,"66859":0,"66860":33,"66861":2067,"66862":0,"66863":0,"66864":-1,"66865":-1,"66866":2585,"66867":0,"66868":-1,"66869":2446,"66870":0,"66871":0,"66872":-1,"66873":-1,"66874":2105,"66875":0,"66876":0,"66877":859,"66878":0,"66879":-1,"66880":0,"66881":0,"66882":2177,"66883":-1,"66884":2096,"66885":0,"66886":0,"66887":-1,"66888":-1,"66889":-1,"66890":412,"66891":0,"66892":0,"66893":-1,"66894":0,"66895":0,"66896":2391,"66897":849,"66898":0,"66899":-1,"66900":-1,"66901":0,"66902":2360,"66903":2506,"66904":0,"66905":0,"66906":0,"66907":2001,"66908":-1,"66909":2220,"66910":0,"66911":-1,"66912":0,"66913":-1,"66914":-1,"66915":0,"66916":2398,"66917":-1,"66918":0,"66919":0,"66920":0,"66921":0,"66922":-1,"66923":-1,"66924":0,"66925":0,"66926":0,"66927":-1,"66928":2025,"66929":0,"66930":2273,"66931":0,"66932":2383,"66933":0,"66934":0,"66935":0,"66936":-1,"66937":0,"66938":0,"66939":2296,"66940":0,"66941":2642,"66942":-1,"66943":0,"66944":-1,"66945":0,"66946":80,"66947":313,"66948":0,"66949":0,"66950":-1,"66951":-1,"66952":-1,"66953":205,"66954":-1,"66955":0,"66956":-1,"66957":2386,"66958":133,"66959":0,"66960":2431,"66961":0,"66962":0,"66963":0,"66964":0,"66965":0,"66966":287,"66967":2337,"66968":0,"66969":0,"66970":0,"66971":0,"66972":2008,"66973":2060,"66974":0,"66975":-1,"66976":2213,"66977":0,"66978":2500,"66979":2527,"66980":0,"66981":2255,"66982":65,"66983":0,"66984":2293,"66985":2386,"66986":-1,"66987":0,"66988":2018,"66989":2169,"66990":0,"66991":-1,"66992":2179,"66993":-1,"66994":-1,"66995":0,"66996":2147,"66997":2018,"66998":2437,"66999":-1,"67000":0,"67001":0,"67002":2130,"67003":0,"67004":0,"67005":-1,"67006":0,"67007":-1,"67008":-1,"67009":0,"67010":0,"67011":0,"67012":2249,"67013":0,"67014":0,"67015":0,"67016":-1,"67017":0,"67018":-1,"67019":0,"67020":0,"67021":2465,"67022":2186,"67023":0,"67024":0,"67025":2193,"67026":0,"67027":0,"67028":2465,"67029":0,"67030":0,"67031":-1,"67032":-1,"67033":-1,"67034":0,"67035":0,"67036":2503,"67037":0,"67038":-1,"67039":0,"67040":0,"67041":0,"67042":0,"67043":-1,"67044":-1,"67045":-1,"67046":2042,"67047":0,"67048":0,"67049":0,"67050":0,"67051":2518,"67052":-1,"67053":0,"67054":-1,"67055":2638,"67056":567,"67057":0,"67058":-1,"67059":-1,"67060":0,"67061":219,"67062":2010,"67063":0,"67064":0,"67065":-1,"67066":0,"67067":2009,"67068":0,"67069":-1,"67070":0,"67071":2453,"67072":2263,"67073":-1,"67074":-1,"67075":0,"67076":-1,"67077":0,"67078":2387,"67079":0,"67080":0,"67081":0,"67082":-1,"67083":-1,"67084":0,"67085":2498,"67086":0,"67087":2014,"67088":0,"67089":2251,"67090":0,"67091":894,"67092":-1,"67093":2414,"67094":-1,"67095":0,"67096":0,"67097":0,"67098":0,"67099":0,"67100":-1,"67101":0,"67102":159,"67103":-1,"67104":0,"67105":2538,"67106":-1,"67107":2384,"67108":-1,"67109":0,"67110":-1,"67111":0,"67112":-1,"67113":0,"67114":-1,"67115":-1,"67116":2469,"67117":0,"67118":-1,"67119":0,"67120":0,"67121":2149,"67122":30,"67123":0,"67124":0,"67125":-1,"67126":-1,"67127":2187,"67128":-1,"67129":2067,"67130":2650,"67131":0,"67132":-1,"67133":-1,"67134":-1,"67135":0,"67136":-1,"67137":2253,"67138":-1,"67139":0,"67140":2369,"67141":-1,"67142":0,"67143":0,"67144":0,"67145":0,"67146":0,"67147":0,"67148":0,"67149":-1,"67150":2218,"67151":187,"67152":0,"67153":0,"67154":0,"67155":0,"67156":0,"67157":0,"67158":-1,"67159":2191,"67160":0,"67161":-1,"67162":-1,"67163":2307,"67164":0,"67165":2253,"67166":0,"67167":2162,"67168":0,"67169":0,"67170":2473,"67171":-1,"67172":2536,"67173":0,"67174":0,"67175":-1,"67176":0,"67177":2575,"67178":2665,"67179":0,"67180":0,"67181":0,"67182":0,"67183":-1,"67184":0,"67185":0,"67186":-1,"67187":0,"67188":0,"67189":0,"67190":2293,"67191":0,"67192":2563,"67193":2411,"67194":2419,"67195":0,"67196":-1,"67197":-1,"67198":-1,"67199":0,"67200":0,"67201":909,"67202":0,"67203":-1,"67204":0,"67205":-1,"67206":0,"67207":0,"67208":-1,"67209":0,"67210":701,"67211":0,"67212":-1,"67213":2445,"67214":0,"67215":-1,"67216":0,"67217":2562,"67218":0,"67219":0,"67220":-1,"67221":0,"67222":0,"67223":-1,"67224":-1,"67225":0,"67226":0,"67227":17,"67228":0,"67229":2039,"67230":0,"67231":0,"67232":-1,"67233":0,"67234":30,"67235":0,"67236":0,"67237":-1,"67238":0,"67239":0,"67240":-1,"67241":0,"67242":0,"67243":0,"67244":0,"67245":0,"67246":-1,"67247":0,"67248":2056,"67249":-1,"67250":-1,"67251":0,"67252":-1,"67253":706,"67254":0,"67255":0,"67256":0,"67257":0,"67258":-1,"67259":-1,"67260":0,"67261":0,"67262":2293,"67263":-1,"67264":0,"67265":-1,"67266":-1,"67267":2115,"67268":154,"67269":2463,"67270":-1,"67271":0,"67272":0,"67273":-1,"67274":0,"67275":0,"67276":2154,"67277":2204,"67278":0,"67279":0,"67280":-1,"67281":0,"67282":0,"67283":0,"67284":-1,"67285":-1,"67286":2434,"67287":2320,"67288":2332,"67289":554,"67290":-1,"67291":0,"67292":0,"67293":0,"67294":-1,"67295":-1,"67296":-1,"67297":0,"67298":-1,"67299":2433,"67300":312,"67301":-1,"67302":0,"67303":-1,"67304":-1,"67305":412,"67306":0,"67307":-1,"67308":0,"67309":-1,"67310":0,"67311":0,"67312":22,"67313":-1,"67314":0,"67315":2358,"67316":0,"67317":0,"67318":936,"67319":0,"67320":-1,"67321":-1,"67322":2207,"67323":0,"67324":0,"67325":-1,"67326":0,"67327":0,"67328":-1,"67329":-1,"67330":772,"67331":0,"67332":0,"67333":0,"67334":-1,"67335":0,"67336":0,"67337":2569,"67338":0,"67339":0,"67340":-1,"67341":460,"67342":-1,"67343":0,"67344":0,"67345":2306,"67346":2135,"67347":-1,"67348":0,"67349":0,"67350":153,"67351":0,"67352":-1,"67353":0,"67354":2105,"67355":2175,"67356":2350,"67357":0,"67358":-1,"67359":-1,"67360":-1,"67361":-1,"67362":2471,"67363":-1,"67364":2235,"67365":2100,"67366":2148,"67367":2444,"67368":0,"67369":2470,"67370":0,"67371":735,"67372":0,"67373":-1,"67374":2311,"67375":-1,"67376":0,"67377":2161,"67378":2392,"67379":-1,"67380":2540,"67381":2361,"67382":2297,"67383":0,"67384":0,"67385":-1,"67386":-1,"67387":0,"67388":0,"67389":0,"67390":0,"67391":126,"67392":0,"67393":0,"67394":-1,"67395":0,"67396":0,"67397":2203,"67398":-1,"67399":2231,"67400":-1,"67401":0,"67402":0,"67403":-1,"67404":2396,"67405":0,"67406":0,"67407":-1,"67408":2042,"67409":0,"67410":2607,"67411":2247,"67412":-1,"67413":0,"67414":0,"67415":-1,"67416":-1,"67417":0,"67418":0,"67419":-1,"67420":0,"67421":0,"67422":-1,"67423":-1,"67424":2466,"67425":0,"67426":2295,"67427":0,"67428":0,"67429":-1,"67430":0,"67431":0,"67432":2080,"67433":2609,"67434":0,"67435":2054,"67436":-1,"67437":2047,"67438":2350,"67439":-1,"67440":0,"67441":-1,"67442":0,"67443":44,"67444":0,"67445":-1,"67446":0,"67447":-1,"67448":0,"67449":2414,"67450":0,"67451":-1,"67452":-1,"67453":0,"67454":-1,"67455":0,"67456":0,"67457":2589,"67458":-1,"67459":2347,"67460":2268,"67461":0,"67462":0,"67463":0,"67464":0,"67465":2345,"67466":-1,"67467":0,"67468":2167,"67469":-1,"67470":-1,"67471":0,"67472":-1,"67473":-1,"67474":2382,"67475":0,"67476":0,"67477":0,"67478":2211,"67479":0,"67480":2641,"67481":-1,"67482":0,"67483":0,"67484":0,"67485":0,"67486":-1,"67487":0,"67488":0,"67489":2602,"67490":-1,"67491":2217,"67492":-1,"67493":0,"67494":2551,"67495":0,"67496":2627,"67497":-1,"67498":-1,"67499":0,"67500":-1,"67501":-1,"67502":0,"67503":0,"67504":448,"67505":2553,"67506":-1,"67507":0,"67508":-1,"67509":-1,"67510":-1,"67511":-1,"67512":0,"67513":-1,"67514":0,"67515":2081,"67516":0,"67517":2627,"67518":0,"67519":0,"67520":-1,"67521":-1,"67522":-1,"67523":0,"67524":0,"67525":-1,"67526":0,"67527":37,"67528":2637,"67529":0,"67530":0,"67531":0,"67532":-1,"67533":27,"67534":2279,"67535":-1,"67536":0,"67537":2657,"67538":-1,"67539":0,"67540":0,"67541":2541,"67542":-1,"67543":0,"67544":0,"67545":-1,"67546":2199,"67547":2227,"67548":0,"67549":2234,"67550":0,"67551":0,"67552":2350,"67553":0,"67554":2162,"67555":-1,"67556":-1,"67557":2234,"67558":-1,"67559":0,"67560":0,"67561":-1,"67562":-1,"67563":2163,"67564":2350,"67565":-1,"67566":0,"67567":0,"67568":2202,"67569":0,"67570":0,"67571":-1,"67572":0,"67573":-1,"67574":0,"67575":2196,"67576":0,"67577":0,"67578":-1,"67579":2614,"67580":-1,"67581":-1,"67582":0,"67583":0,"67584":0,"67585":-1,"67586":0,"67587":0,"67588":0,"67589":1992,"67590":-1,"67591":2108,"67592":0,"67593":2177,"67594":0,"67595":0,"67596":0,"67597":-1,"67598":-1,"67599":-1,"67600":-1,"67601":0,"67602":-1,"67603":-1,"67604":0,"67605":-1,"67606":2334,"67607":0,"67608":205,"67609":0,"67610":0,"67611":0,"67612":0,"67613":2127,"67614":2534,"67615":2119,"67616":0,"67617":-1,"67618":-1,"67619":0,"67620":0,"67621":2360,"67622":0,"67623":0,"67624":-1,"67625":2315,"67626":0,"67627":-1,"67628":0,"67629":0,"67630":0,"67631":353,"67632":0,"67633":-1,"67634":2679,"67635":0,"67636":-1,"67637":0,"67638":0,"67639":-1,"67640":0,"67641":0,"67642":0,"67643":-1,"67644":-1,"67645":-1,"67646":2535,"67647":-1,"67648":663,"67649":-1,"67650":0,"67651":2468,"67652":-1,"67653":-1,"67654":-1,"67655":2163,"67656":-1,"67657":0,"67658":0,"67659":0,"67660":-1,"67661":0,"67662":407,"67663":2040,"67664":2202,"67665":2538,"67666":0,"67667":0,"67668":145,"67669":2497,"67670":-1,"67671":-1,"67672":2363,"67673":-1,"67674":0,"67675":0,"67676":0,"67677":2020,"67678":-1,"67679":-1,"67680":-1,"67681":0,"67682":0,"67683":-1,"67684":-1,"67685":2283,"67686":-1,"67687":0,"67688":-1,"67689":0,"67690":0,"67691":2568,"67692":578,"67693":2610,"67694":2438,"67695":0,"67696":0,"67697":-1,"67698":0,"67699":61,"67700":0,"67701":2158,"67702":2105,"67703":2147,"67704":-1,"67705":0,"67706":0,"67707":0,"67708":0,"67709":798,"67710":567,"67711":2303,"67712":-1,"67713":-1,"67714":0,"67715":0,"67716":-1,"67717":-1,"67718":-1,"67719":0,"67720":0,"67721":-1,"67722":-1,"67723":-1,"67724":-1,"67725":0,"67726":2208,"67727":0,"67728":-1,"67729":667,"67730":0,"67731":0,"67732":0,"67733":64,"67734":2470,"67735":0,"67736":-1,"67737":0,"67738":0,"67739":-1,"67740":0,"67741":554,"67742":0,"67743":-1,"67744":0,"67745":0,"67746":-1,"67747":-1,"67748":-1,"67749":-1,"67750":40,"67751":0,"67752":-1,"67753":-1,"67754":2260,"67755":44,"67756":0,"67757":-1,"67758":-1,"67759":0,"67760":168,"67761":0,"67762":0,"67763":-1,"67764":0,"67765":0,"67766":-1,"67767":-1,"67768":-1,"67769":0,"67770":0,"67771":2199,"67772":0,"67773":0,"67774":-1,"67775":2482,"67776":0,"67777":0,"67778":-1,"67779":0,"67780":0,"67781":2571,"67782":-1,"67783":2227,"67784":0,"67785":-1,"67786":0,"67787":0,"67788":-1,"67789":2612,"67790":-1,"67791":2025,"67792":-1,"67793":-1,"67794":0,"67795":-1,"67796":-1,"67797":-1,"67798":2463,"67799":0,"67800":2384,"67801":0,"67802":0,"67803":0,"67804":598,"67805":0,"67806":460,"67807":-1,"67808":2011,"67809":0,"67810":0,"67811":0,"67812":0,"67813":0,"67814":-1,"67815":-1,"67816":-1,"67817":-1,"67818":2623,"67819":0,"67820":0,"67821":0,"67822":-1,"67823":0,"67824":-1,"67825":620,"67826":0,"67827":-1,"67828":1998,"67829":-1,"67830":0,"67831":2508,"67832":-1,"67833":-1,"67834":-1,"67835":2010,"67836":-1,"67837":0,"67838":0,"67839":0,"67840":-1,"67841":-1,"67842":0,"67843":0,"67844":-1,"67845":-1,"67846":2023,"67847":0,"67848":2420,"67849":-1,"67850":0,"67851":350,"67852":0,"67853":0,"67854":-1,"67855":-1,"67856":-1,"67857":0,"67858":0,"67859":-1,"67860":0,"67861":0,"67862":2003,"67863":0,"67864":0,"67865":-1,"67866":13,"67867":2578,"67868":0,"67869":2611,"67870":-1,"67871":0,"67872":2215,"67873":-1,"67874":0,"67875":2212,"67876":2523,"67877":2435,"67878":2650,"67879":179,"67880":0,"67881":0,"67882":-1,"67883":-1,"67884":-1,"67885":551,"67886":0,"67887":2425,"67888":0,"67889":2052,"67890":0,"67891":0,"67892":2598,"67893":2460,"67894":-1,"67895":2273,"67896":20,"67897":-1,"67898":0,"67899":2351,"67900":-1,"67901":0,"67902":2530,"67903":0,"67904":2004,"67905":0,"67906":2494,"67907":-1,"67908":-1,"67909":-1,"67910":-1,"67911":0,"67912":-1,"67913":-1,"67914":2241,"67915":0,"67916":0,"67917":0,"67918":0,"67919":18,"67920":-1,"67921":-1,"67922":-1,"67923":-1,"67924":0,"67925":0,"67926":0,"67927":0,"67928":-1,"67929":0,"67930":-1,"67931":-1,"67932":0,"67933":2323,"67934":2050,"67935":-1,"67936":0,"67937":11,"67938":0,"67939":-1,"67940":0,"67941":327,"67942":-1,"67943":0,"67944":0,"67945":-1,"67946":0,"67947":2381,"67948":-1,"67949":-1,"67950":0,"67951":2066,"67952":0,"67953":-1,"67954":2594,"67955":-1,"67956":0,"67957":-1,"67958":-1,"67959":0,"67960":-1,"67961":-1,"67962":-1,"67963":0,"67964":2122,"67965":0,"67966":0,"67967":2496,"67968":0,"67969":-1,"67970":0,"67971":2548,"67972":0,"67973":0,"67974":-1,"67975":-1,"67976":2509,"67977":0,"67978":61,"67979":2409,"67980":2168,"67981":2528,"67982":-1,"67983":2012,"67984":2367,"67985":2165,"67986":-1,"67987":0,"67988":-1,"67989":-1,"67990":-1,"67991":0,"67992":-1,"67993":-1,"67994":0,"67995":-1,"67996":0,"67997":0,"67998":0,"67999":0,"68000":245,"68001":2235,"68002":0,"68003":-1,"68004":0,"68005":0,"68006":237,"68007":2009,"68008":-1,"68009":645,"68010":0,"68011":0,"68012":2192,"68013":-1,"68014":2165,"68015":-1,"68016":0,"68017":-1,"68018":0,"68019":2455,"68020":-1,"68021":2554,"68022":-1,"68023":0,"68024":-1,"68025":2328,"68026":0,"68027":-1,"68028":-1,"68029":-1,"68030":0,"68031":0,"68032":0,"68033":2242,"68034":0,"68035":0,"68036":-1,"68037":-1,"68038":0,"68039":-1,"68040":-1,"68041":0,"68042":0,"68043":-1,"68044":0,"68045":0,"68046":-1,"68047":0,"68048":-1,"68049":-1,"68050":2002,"68051":2286,"68052":-1,"68053":-1,"68054":0,"68055":-1,"68056":0,"68057":-1,"68058":-1,"68059":0,"68060":2537,"68061":0,"68062":0,"68063":0,"68064":0,"68065":0,"68066":2342,"68067":0,"68068":0,"68069":0,"68070":0,"68071":0,"68072":-1,"68073":0,"68074":2432,"68075":-1,"68076":0,"68077":0,"68078":-1,"68079":2544,"68080":0,"68081":2055,"68082":-1,"68083":-1,"68084":0,"68085":-1,"68086":0,"68087":-1,"68088":0,"68089":-1,"68090":0,"68091":0,"68092":0,"68093":0,"68094":0,"68095":0,"68096":0,"68097":0,"68098":2643,"68099":0,"68100":-1,"68101":2491,"68102":0,"68103":-1,"68104":0,"68105":0,"68106":-1,"68107":639,"68108":0,"68109":-1,"68110":18,"68111":2172,"68112":0,"68113":-1,"68114":0,"68115":0,"68116":-1,"68117":-1,"68118":0,"68119":-1,"68120":0,"68121":0,"68122":154,"68123":0,"68124":-1,"68125":2470,"68126":-1,"68127":-1,"68128":-1,"68129":0,"68130":-1,"68131":-1,"68132":0,"68133":-1,"68134":-1,"68135":-1,"68136":-1,"68137":0,"68138":-1,"68139":0,"68140":-1,"68141":-1,"68142":-1,"68143":0,"68144":-1,"68145":0,"68146":-1,"68147":0,"68148":0,"68149":639,"68150":0,"68151":-1,"68152":0,"68153":-1,"68154":460,"68155":-1,"68156":-1,"68157":2278,"68158":0,"68159":0,"68160":0,"68161":0,"68162":-1,"68163":-1,"68164":0,"68165":2468,"68166":0,"68167":0,"68168":-1,"68169":-1,"68170":38,"68171":2380,"68172":0,"68173":-1,"68174":0,"68175":-1,"68176":0,"68177":0,"68178":0,"68179":0,"68180":-1,"68181":-1,"68182":0,"68183":2477,"68184":-1,"68185":0,"68186":0,"68187":-1,"68188":2049,"68189":-1,"68190":0,"68191":2677,"68192":126,"68193":0,"68194":0,"68195":0,"68196":-1,"68197":508,"68198":36,"68199":0,"68200":-1,"68201":0,"68202":0,"68203":0,"68204":2309,"68205":0,"68206":-1,"68207":-1,"68208":0,"68209":0,"68210":-1,"68211":0,"68212":-1,"68213":-1,"68214":0,"68215":-1,"68216":2090,"68217":0,"68218":-1,"68219":0,"68220":2559,"68221":0,"68222":-1,"68223":0,"68224":-1,"68225":-1,"68226":547,"68227":0,"68228":0,"68229":0,"68230":0,"68231":0,"68232":38,"68233":-1,"68234":-1,"68235":-1,"68236":-1,"68237":0,"68238":-1,"68239":27,"68240":0,"68241":-1,"68242":0,"68243":12,"68244":0,"68245":448,"68246":-1,"68247":0,"68248":0,"68249":0,"68250":0,"68251":-1,"68252":0,"68253":2669,"68254":-1,"68255":-1,"68256":0,"68257":0,"68258":0,"68259":0,"68260":0,"68261":0,"68262":2186,"68263":0,"68264":0,"68265":2327,"68266":0,"68267":0,"68268":-1,"68269":0,"68270":0,"68271":0,"68272":0,"68273":0,"68274":-1,"68275":0,"68276":0,"68277":-1,"68278":0,"68279":2008,"68280":0,"68281":0,"68282":0,"68283":-1,"68284":2471,"68285":0,"68286":-1,"68287":353,"68288":0,"68289":-1,"68290":551,"68291":2109,"68292":0,"68293":0,"68294":0,"68295":0,"68296":0,"68297":0,"68298":-1,"68299":2676,"68300":2118,"68301":2146,"68302":0,"68303":0,"68304":0,"68305":0,"68306":-1,"68307":12,"68308":0,"68309":-1,"68310":0,"68311":-1,"68312":-1,"68313":2297,"68314":-1,"68315":0,"68316":-1,"68317":-1,"68318":2463,"68319":2051,"68320":-1,"68321":-1,"68322":-1,"68323":-1,"68324":2382,"68325":-1,"68326":-1,"68327":-1,"68328":2041,"68329":0,"68330":-1,"68331":0,"68332":0,"68333":0,"68334":0,"68335":2145,"68336":2282,"68337":-1,"68338":-1,"68339":-1,"68340":0,"68341":2286,"68342":-1,"68343":2385,"68344":448,"68345":0,"68346":0,"68347":0,"68348":2080,"68349":2121,"68350":0,"68351":0,"68352":2649,"68353":0,"68354":395,"68355":0,"68356":1992,"68357":-1,"68358":2072,"68359":0,"68360":0,"68361":-1,"68362":0,"68363":2614,"68364":2222,"68365":0,"68366":-1,"68367":0,"68368":0,"68369":-1,"68370":2660,"68371":0,"68372":2383,"68373":0,"68374":0,"68375":-1,"68376":0,"68377":0,"68378":2126,"68379":0,"68380":-1,"68381":2594,"68382":-1,"68383":2619,"68384":-1,"68385":-1,"68386":2364,"68387":2581,"68388":2513,"68389":2145,"68390":418,"68391":2531,"68392":0,"68393":0,"68394":0,"68395":-1,"68396":-1,"68397":2113,"68398":-1,"68399":2640,"68400":298,"68401":-1,"68402":0,"68403":0,"68404":-1,"68405":-1,"68406":0,"68407":2172,"68408":0,"68409":-1,"68410":168,"68411":-1,"68412":-1,"68413":-1,"68414":0,"68415":-1,"68416":0,"68417":102,"68418":0,"68419":0,"68420":2435,"68421":0,"68422":0,"68423":0,"68424":-1,"68425":0,"68426":0,"68427":-1,"68428":2271,"68429":0,"68430":0,"68431":-1,"68432":0,"68433":0,"68434":-1,"68435":2297,"68436":1992,"68437":-1,"68438":397,"68439":0,"68440":2260,"68441":-1,"68442":2585,"68443":2429,"68444":-1,"68445":-1,"68446":2238,"68447":-1,"68448":0,"68449":-1,"68450":0,"68451":2109,"68452":0,"68453":2361,"68454":669,"68455":-1,"68456":0,"68457":0,"68458":2346,"68459":-1,"68460":0,"68461":-1,"68462":0,"68463":0,"68464":0,"68465":-1,"68466":2146,"68467":0,"68468":2156,"68469":-1,"68470":0,"68471":0,"68472":0,"68473":2141,"68474":-1,"68475":2129,"68476":-1,"68477":0,"68478":-1,"68479":2436,"68480":-1,"68481":-1,"68482":2218,"68483":2589,"68484":0,"68485":662,"68486":0,"68487":-1,"68488":0,"68489":-1,"68490":0,"68491":0,"68492":0,"68493":-1,"68494":0,"68495":1997,"68496":2091,"68497":0,"68498":0,"68499":-1,"68500":2202,"68501":-1,"68502":-1,"68503":-1,"68504":0,"68505":2246,"68506":0,"68507":-1,"68508":2202,"68509":-1,"68510":-1,"68511":-1,"68512":0,"68513":2226,"68514":-1,"68515":0,"68516":0,"68517":0,"68518":0,"68519":0,"68520":0,"68521":0,"68522":0,"68523":0,"68524":0,"68525":2571,"68526":-1,"68527":350,"68528":2312,"68529":663,"68530":-1,"68531":2171,"68532":0,"68533":187,"68534":0,"68535":0,"68536":0,"68537":-1,"68538":0,"68539":2140,"68540":0,"68541":842,"68542":-1,"68543":2420,"68544":0,"68545":0,"68546":0,"68547":0,"68548":0,"68549":-1,"68550":-1,"68551":0,"68552":-1,"68553":2674,"68554":0,"68555":0,"68556":-1,"68557":2608,"68558":0,"68559":2055,"68560":0,"68561":2210,"68562":-1,"68563":-1,"68564":-1,"68565":0,"68566":2080,"68567":-1,"68568":0,"68569":598,"68570":-1,"68571":0,"68572":2019,"68573":0,"68574":0,"68575":-1,"68576":-1,"68577":-1,"68578":0,"68579":2407,"68580":2298,"68581":0,"68582":0,"68583":245,"68584":2002,"68585":2309,"68586":-1,"68587":-1,"68588":0,"68589":-1,"68590":-1,"68591":0,"68592":-1,"68593":-1,"68594":-1,"68595":0,"68596":0,"68597":-1,"68598":0,"68599":0,"68600":0,"68601":0,"68602":0,"68603":-1,"68604":-1,"68605":-1,"68606":28,"68607":0,"68608":0,"68609":0,"68610":0,"68611":2446,"68612":-1,"68613":-1,"68614":0,"68615":-1,"68616":0,"68617":2382,"68618":0,"68619":0,"68620":2303,"68621":2126,"68622":0,"68623":0,"68624":0,"68625":0,"68626":0,"68627":2301,"68628":0,"68629":0,"68630":0,"68631":0,"68632":0,"68633":-1,"68634":0,"68635":2651,"68636":-1,"68637":-1,"68638":86,"68639":0,"68640":2168,"68641":0,"68642":2170,"68643":-1,"68644":-1,"68645":0,"68646":0,"68647":0,"68648":0,"68649":0,"68650":-1,"68651":-1,"68652":0,"68653":2303,"68654":0,"68655":0,"68656":170,"68657":-1,"68658":2001,"68659":0,"68660":622,"68661":-1,"68662":2371,"68663":0,"68664":-1,"68665":2633,"68666":21,"68667":2467,"68668":0,"68669":0,"68670":-1,"68671":2253,"68672":0,"68673":-1,"68674":0,"68675":0,"68676":-1,"68677":2512,"68678":0,"68679":2233,"68680":-1,"68681":0,"68682":-1,"68683":2213,"68684":0,"68685":0,"68686":-1,"68687":524,"68688":0,"68689":0,"68690":645,"68691":2048,"68692":-1,"68693":0,"68694":0,"68695":0,"68696":2151,"68697":2590,"68698":0,"68699":-1,"68700":-1,"68701":-1,"68702":2415,"68703":-1,"68704":0,"68705":-1,"68706":2262,"68707":0,"68708":0,"68709":2492,"68710":0,"68711":0,"68712":0,"68713":0,"68714":-1,"68715":0,"68716":0,"68717":-1,"68718":-1,"68719":0,"68720":0,"68721":-1,"68722":0,"68723":154,"68724":-1,"68725":0,"68726":2224,"68727":2198,"68728":2578,"68729":-1,"68730":301,"68731":2358,"68732":2388,"68733":-1,"68734":-1,"68735":-1,"68736":-1,"68737":584,"68738":0,"68739":-1,"68740":2560,"68741":-1,"68742":0,"68743":-1,"68744":0,"68745":-1,"68746":0,"68747":0,"68748":2081,"68749":0,"68750":0,"68751":2170,"68752":2540,"68753":-1,"68754":-1,"68755":-1,"68756":-1,"68757":0,"68758":0,"68759":0,"68760":-1,"68761":313,"68762":0,"68763":75,"68764":0,"68765":0,"68766":0,"68767":0,"68768":2618,"68769":-1,"68770":0,"68771":0,"68772":-1,"68773":2001,"68774":0,"68775":2097,"68776":2368,"68777":-1,"68778":-1,"68779":0,"68780":0,"68781":0,"68782":0,"68783":-1,"68784":0,"68785":-1,"68786":-1,"68787":0,"68788":-1,"68789":2676,"68790":-1,"68791":-1,"68792":-1,"68793":2402,"68794":0,"68795":0,"68796":0,"68797":0,"68798":0,"68799":0,"68800":-1,"68801":136,"68802":-1,"68803":0,"68804":0,"68805":0,"68806":0,"68807":0,"68808":0,"68809":2067,"68810":0,"68811":0,"68812":0,"68813":-1,"68814":-1,"68815":0,"68816":-1,"68817":0,"68818":-1,"68819":0,"68820":0,"68821":2248,"68822":0,"68823":0,"68824":0,"68825":2031,"68826":-1,"68827":-1,"68828":-1,"68829":407,"68830":0,"68831":0,"68832":2410,"68833":2089,"68834":2490,"68835":-1,"68836":0,"68837":-1,"68838":0,"68839":0,"68840":0,"68841":2333,"68842":0,"68843":0,"68844":-1,"68845":2050,"68846":0,"68847":-1,"68848":0,"68849":-1,"68850":317,"68851":-1,"68852":0,"68853":2225,"68854":0,"68855":-1,"68856":1996,"68857":2186,"68858":2314,"68859":2032,"68860":-1,"68861":0,"68862":2567,"68863":-1,"68864":0,"68865":-1,"68866":0,"68867":2214,"68868":0,"68869":-1,"68870":-1,"68871":0,"68872":0,"68873":0,"68874":0,"68875":-1,"68876":0,"68877":0,"68878":-1,"68879":0,"68880":0,"68881":-1,"68882":-1,"68883":-1,"68884":0,"68885":0,"68886":2635,"68887":-1,"68888":33,"68889":-1,"68890":2401,"68891":0,"68892":-1,"68893":-1,"68894":2057,"68895":0,"68896":-1,"68897":0,"68898":0,"68899":798,"68900":0,"68901":-1,"68902":0,"68903":0,"68904":2375,"68905":-1,"68906":-1,"68907":0,"68908":2625,"68909":-1,"68910":0,"68911":2648,"68912":-1,"68913":2215,"68914":2028,"68915":0,"68916":-1,"68917":0,"68918":0,"68919":2443,"68920":2513,"68921":0,"68922":-1,"68923":0,"68924":0,"68925":-1,"68926":0,"68927":-1,"68928":0,"68929":0,"68930":0,"68931":-1,"68932":0,"68933":0,"68934":308,"68935":-1,"68936":2510,"68937":-1,"68938":-1,"68939":-1,"68940":0,"68941":0,"68942":0,"68943":-1,"68944":-1,"68945":-1,"68946":0,"68947":0,"68948":-1,"68949":0,"68950":0,"68951":2240,"68952":2646,"68953":0,"68954":0,"68955":0,"68956":0,"68957":0,"68958":0,"68959":0,"68960":-1,"68961":0,"68962":-1,"68963":1996,"68964":0,"68965":0,"68966":0,"68967":0,"68968":2496,"68969":2523,"68970":0,"68971":0,"68972":-1,"68973":96,"68974":-1,"68975":-1,"68976":2221,"68977":-1,"68978":0,"68979":-1,"68980":-1,"68981":-1,"68982":2417,"68983":2327,"68984":0,"68985":894,"68986":0,"68987":0,"68988":0,"68989":0,"68990":2322,"68991":-1,"68992":0,"68993":0,"68994":0,"68995":-1,"68996":0,"68997":0,"68998":0,"68999":0,"69000":-1,"69001":0,"69002":0,"69003":0,"69004":0,"69005":2556,"69006":0,"69007":2046,"69008":2510,"69009":0,"69010":0,"69011":0,"69012":0,"69013":0,"69014":0,"69015":0,"69016":2195,"69017":2138,"69018":0,"69019":0,"69020":0,"69021":0,"69022":0,"69023":2458,"69024":0,"69025":-1,"69026":0,"69027":0,"69028":0,"69029":2656,"69030":0,"69031":0,"69032":44,"69033":-1,"69034":-1,"69035":0,"69036":2315,"69037":7,"69038":-1,"69039":0,"69040":0,"69041":2666,"69042":2137,"69043":0,"69044":0,"69045":-1,"69046":-1,"69047":0,"69048":-1,"69049":-1,"69050":237,"69051":0,"69052":2092,"69053":2041,"69054":-1,"69055":-1,"69056":0,"69057":-1,"69058":-1,"69059":0,"69060":2086,"69061":2024,"69062":0,"69063":2457,"69064":0,"69065":0,"69066":0,"69067":2516,"69068":0,"69069":2543,"69070":-1,"69071":0,"69072":0,"69073":0,"69074":2407,"69075":2655,"69076":837,"69077":2592,"69078":0,"69079":-1,"69080":0,"69081":0,"69082":136,"69083":567,"69084":0,"69085":2588,"69086":2321,"69087":-1,"69088":0,"69089":0,"69090":-1,"69091":2257,"69092":-1,"69093":0,"69094":217,"69095":-1,"69096":133,"69097":2653,"69098":0,"69099":45,"69100":460,"69101":-1,"69102":0,"69103":2083,"69104":-1,"69105":-1,"69106":220,"69107":0,"69108":2624,"69109":-1,"69110":-1,"69111":0,"69112":0,"69113":0,"69114":0,"69115":-1,"69116":-1,"69117":-1,"69118":0,"69119":0,"69120":-1,"69121":-1,"69122":-1,"69123":-1,"69124":0,"69125":2461,"69126":-1,"69127":2549,"69128":-1,"69129":0,"69130":-1,"69131":0,"69132":-1,"69133":0,"69134":2060,"69135":0,"69136":-1,"69137":2423,"69138":0,"69139":0,"69140":0,"69141":-1,"69142":2180,"69143":-1,"69144":2405,"69145":0,"69146":0,"69147":-1,"69148":-1,"69149":0,"69150":0,"69151":-1,"69152":0,"69153":2168,"69154":-1,"69155":-1,"69156":0,"69157":-1,"69158":98,"69159":10,"69160":0,"69161":0,"69162":2017,"69163":0,"69164":2073,"69165":0,"69166":-1,"69167":0,"69168":0,"69169":0,"69170":2574,"69171":0,"69172":2101,"69173":2005,"69174":0,"69175":0,"69176":-1,"69177":-1,"69178":287,"69179":-1,"69180":-1,"69181":-1,"69182":-1,"69183":0,"69184":0,"69185":0,"69186":0,"69187":0,"69188":0,"69189":0,"69190":-1,"69191":-1,"69192":-1,"69193":0,"69194":2301,"69195":0,"69196":0,"69197":2028,"69198":0,"69199":-1,"69200":0,"69201":-1,"69202":0,"69203":691,"69204":-1,"69205":-1,"69206":0,"69207":-1,"69208":0,"69209":-1,"69210":0,"69211":-1,"69212":412,"69213":26,"69214":0,"69215":0,"69216":-1,"69217":98,"69218":30,"69219":0,"69220":-1,"69221":2153,"69222":0,"69223":720,"69224":0,"69225":-1,"69226":-1,"69227":-1,"69228":-1,"69229":-1,"69230":-1,"69231":2218,"69232":0,"69233":-1,"69234":0,"69235":0,"69236":2029,"69237":350,"69238":0,"69239":0,"69240":-1,"69241":-1,"69242":-1,"69243":-1,"69244":-1,"69245":2381,"69246":0,"69247":0,"69248":2144,"69249":0,"69250":19,"69251":-1,"69252":0,"69253":-1,"69254":0,"69255":2219,"69256":0,"69257":0,"69258":2328,"69259":2170,"69260":-1,"69261":220,"69262":-1,"69263":-1,"69264":2539,"69265":0,"69266":67,"69267":58,"69268":0,"69269":-1,"69270":0,"69271":-1,"69272":25,"69273":0,"69274":0,"69275":0,"69276":0,"69277":0,"69278":0,"69279":2272,"69280":2485,"69281":0,"69282":-1,"69283":0,"69284":0,"69285":-1,"69286":0,"69287":-1,"69288":0,"69289":0,"69290":0,"69291":-1,"69292":0,"69293":-1,"69294":2560,"69295":-1,"69296":0,"69297":0,"69298":0,"69299":2230,"69300":-1,"69301":353,"69302":0,"69303":-1,"69304":0,"69305":-1,"69306":0,"69307":793,"69308":2275,"69309":2227,"69310":-1,"69311":-1,"69312":2529,"69313":2543,"69314":0,"69315":0,"69316":0,"69317":-1,"69318":2035,"69319":2361,"69320":2310,"69321":0,"69322":2497,"69323":0,"69324":2657,"69325":2268,"69326":2637,"69327":0,"69328":0,"69329":0,"69330":0,"69331":-1,"69332":0,"69333":0,"69334":-1,"69335":-1,"69336":-1,"69337":0,"69338":2195,"69339":2426,"69340":-1,"69341":0,"69342":-1,"69343":2379,"69344":2659,"69345":-1,"69346":-1,"69347":0,"69348":0,"69349":2,"69350":0,"69351":2632,"69352":-1,"69353":-1,"69354":-1,"69355":2638,"69356":0,"69357":-1,"69358":0,"69359":2051,"69360":2287,"69361":-1,"69362":0,"69363":0,"69364":0,"69365":0,"69366":-1,"69367":-1,"69368":2677,"69369":2423,"69370":-1,"69371":0,"69372":-1,"69373":0,"69374":-1,"69375":-1,"69376":-1,"69377":0,"69378":-1,"69379":0,"69380":0,"69381":0,"69382":0,"69383":0,"69384":-1,"69385":2528,"69386":0,"69387":0,"69388":2529,"69389":0,"69390":0,"69391":2181,"69392":0,"69393":-1,"69394":-1,"69395":0,"69396":-1,"69397":2330,"69398":-1,"69399":906,"69400":-1,"69401":2054,"69402":0,"69403":0,"69404":0,"69405":-1,"69406":-1,"69407":29,"69408":0,"69409":0,"69410":-1,"69411":637,"69412":0,"69413":0,"69414":-1,"69415":2005,"69416":0,"69417":2243,"69418":0,"69419":-1,"69420":2237,"69421":-1,"69422":0,"69423":-1,"69424":0,"69425":0,"69426":2661,"69427":0,"69428":0,"69429":793,"69430":0,"69431":2433,"69432":-1,"69433":0,"69434":2565,"69435":0,"69436":0,"69437":0,"69438":0,"69439":603,"69440":2469,"69441":0,"69442":0,"69443":2637,"69444":2277,"69445":2413,"69446":2139,"69447":-1,"69448":2087,"69449":-1,"69450":0,"69451":0,"69452":0,"69453":-1,"69454":-1,"69455":0,"69456":2672,"69457":0,"69458":0,"69459":0,"69460":-1,"69461":2502,"69462":-1,"69463":2610,"69464":0,"69465":-1,"69466":2072,"69467":0,"69468":0,"69469":0,"69470":0,"69471":0,"69472":0,"69473":-1,"69474":2399,"69475":-1,"69476":-1,"69477":0,"69478":-1,"69479":41,"69480":2403,"69481":2054,"69482":0,"69483":-1,"69484":-1,"69485":313,"69486":2166,"69487":2456,"69488":1999,"69489":-1,"69490":-1,"69491":-1,"69492":735,"69493":-1,"69494":0,"69495":0,"69496":1997,"69497":2638,"69498":-1,"69499":2107,"69500":0,"69501":2452,"69502":2229,"69503":0,"69504":-1,"69505":-1,"69506":0,"69507":2680,"69508":-1,"69509":0,"69510":-1,"69511":2188,"69512":-1,"69513":345,"69514":2604,"69515":2014,"69516":2138,"69517":0,"69518":0,"69519":0,"69520":0,"69521":0,"69522":261,"69523":-1,"69524":2240,"69525":0,"69526":0,"69527":0,"69528":0,"69529":603,"69530":2197,"69531":-1,"69532":0,"69533":2029,"69534":0,"69535":0,"69536":-1,"69537":0,"69538":0,"69539":0,"69540":-1,"69541":0,"69542":-1,"69543":-1,"69544":2521,"69545":0,"69546":2473,"69547":2179,"69548":0,"69549":2227,"69550":2251,"69551":2032,"69552":0,"69553":0,"69554":2378,"69555":2496,"69556":0,"69557":2106,"69558":2393,"69559":-1,"69560":0,"69561":187,"69562":0,"69563":833,"69564":2266,"69565":-1,"69566":-1,"69567":0,"69568":-1,"69569":0,"69570":109,"69571":-1,"69572":2236,"69573":-1,"69574":-1,"69575":0,"69576":0,"69577":2562,"69578":0,"69579":0,"69580":-1,"69581":2573,"69582":0,"69583":0,"69584":0,"69585":-1,"69586":0,"69587":-1,"69588":-1,"69589":2566,"69590":2632,"69591":0,"69592":-1,"69593":0,"69594":0,"69595":0,"69596":-1,"69597":0,"69598":2059,"69599":27,"69600":0,"69601":0,"69602":0,"69603":0,"69604":0,"69605":0,"69606":2365,"69607":0,"69608":-1,"69609":-1,"69610":-1,"69611":-1,"69612":-1,"69613":0,"69614":0,"69615":-1,"69616":-1,"69617":0,"69618":341,"69619":0,"69620":-1,"69621":-1,"69622":2601,"69623":2366,"69624":0,"69625":0,"69626":2311,"69627":0,"69628":-1,"69629":0,"69630":-1,"69631":2232,"69632":-1,"69633":2232,"69634":-1,"69635":-1,"69636":0,"69637":0,"69638":2110,"69639":-1,"69640":261,"69641":0,"69642":-1,"69643":0,"69644":2164,"69645":0,"69646":2194,"69647":-1,"69648":0,"69649":0,"69650":0,"69651":2000,"69652":2393,"69653":-1,"69654":0,"69655":0,"69656":0,"69657":0,"69658":0,"69659":0,"69660":2152,"69661":0,"69662":0,"69663":2622,"69664":-1,"69665":0,"69666":0,"69667":0,"69668":-1,"69669":0,"69670":-1,"69671":0,"69672":2644,"69673":2361,"69674":0,"69675":-1,"69676":0,"69677":-1,"69678":-1,"69679":0,"69680":2582,"69681":-1,"69682":0,"69683":-1,"69684":0,"69685":-1,"69686":0,"69687":2344,"69688":2400,"69689":-1,"69690":-1,"69691":-1,"69692":-1,"69693":0,"69694":0,"69695":0,"69696":0,"69697":20,"69698":604,"69699":-1,"69700":0,"69701":0,"69702":2111,"69703":2580,"69704":-1,"69705":2219,"69706":460,"69707":0,"69708":-1,"69709":2230,"69710":-1,"69711":-1,"69712":0,"69713":0,"69714":-1,"69715":-1,"69716":2223,"69717":-1,"69718":-1,"69719":-1,"69720":0,"69721":0,"69722":0,"69723":-1,"69724":0,"69725":0,"69726":-1,"69727":-1,"69728":-1,"69729":-1,"69730":0,"69731":2302,"69732":0,"69733":0,"69734":0,"69735":-1,"69736":0,"69737":2379,"69738":2233,"69739":0,"69740":0,"69741":-1,"69742":2338,"69743":0,"69744":-1,"69745":-1,"69746":0,"69747":0,"69748":0,"69749":0,"69750":-1,"69751":2437,"69752":2249,"69753":-1,"69754":2140,"69755":0,"69756":0,"69757":0,"69758":0,"69759":2273,"69760":2309,"69761":-1,"69762":0,"69763":-1,"69764":0,"69765":-1,"69766":2188,"69767":0,"69768":-1,"69769":0,"69770":0,"69771":2109,"69772":2315,"69773":0,"69774":-1,"69775":0,"69776":-1,"69777":-1,"69778":-1,"69779":2187,"69780":0,"69781":2430,"69782":2588,"69783":-1,"69784":0,"69785":-1,"69786":0,"69787":0,"69788":0,"69789":-1,"69790":0,"69791":-1,"69792":120,"69793":2580,"69794":-1,"69795":2554,"69796":-1,"69797":-1,"69798":0,"69799":0,"69800":-1,"69801":-1,"69802":0,"69803":-1,"69804":0,"69805":2056,"69806":-1,"69807":2236,"69808":0,"69809":2166,"69810":0,"69811":2475,"69812":0,"69813":2323,"69814":2475,"69815":-1,"69816":0,"69817":-1,"69818":2291,"69819":-1,"69820":2187,"69821":-1,"69822":0,"69823":2293,"69824":-1,"69825":0,"69826":793,"69827":-1,"69828":0,"69829":2344,"69830":1994,"69831":0,"69832":-1,"69833":0,"69834":-1,"69835":2430,"69836":-1,"69837":-1,"69838":2129,"69839":-1,"69840":-1,"69841":0,"69842":0,"69843":-1,"69844":0,"69845":0,"69846":2350,"69847":-1,"69848":2253,"69849":0,"69850":-1,"69851":2009,"69852":-1,"69853":2565,"69854":0,"69855":0,"69856":-1,"69857":2148,"69858":-1,"69859":-1,"69860":0,"69861":0,"69862":0,"69863":0,"69864":0,"69865":118,"69866":0,"69867":2398,"69868":313,"69869":0,"69870":0,"69871":-1,"69872":798,"69873":0,"69874":0,"69875":109,"69876":-1,"69877":0,"69878":2346,"69879":-1,"69880":0,"69881":0,"69882":864,"69883":2544,"69884":0,"69885":2539,"69886":0,"69887":0,"69888":-1,"69889":-1,"69890":0,"69891":0,"69892":2543,"69893":0,"69894":2644,"69895":0,"69896":-1,"69897":620,"69898":0,"69899":0,"69900":0,"69901":-1,"69902":-1,"69903":0,"69904":0,"69905":2497,"69906":533,"69907":2550,"69908":0,"69909":0,"69910":0,"69911":0,"69912":0,"69913":0,"69914":-1,"69915":-1,"69916":2483,"69917":-1,"69918":0,"69919":0,"69920":341,"69921":0,"69922":0,"69923":-1,"69924":0,"69925":2142,"69926":-1,"69927":0,"69928":-1,"69929":0,"69930":-1,"69931":-1,"69932":-1,"69933":0,"69934":-1,"69935":0,"69936":2576,"69937":-1,"69938":2375,"69939":2316,"69940":2362,"69941":0,"69942":-1,"69943":-1,"69944":-1,"69945":2194,"69946":2405,"69947":237,"69948":-1,"69949":0,"69950":2447,"69951":-1,"69952":0,"69953":7,"69954":0,"69955":0,"69956":2199,"69957":0,"69958":0,"69959":443,"69960":2202,"69961":0,"69962":0,"69963":0,"69964":0,"69965":2583,"69966":2012,"69967":-1,"69968":2312,"69969":-1,"69970":0,"69971":0,"69972":-1,"69973":2525,"69974":0,"69975":-1,"69976":-1,"69977":2151,"69978":-1,"69979":2106,"69980":-1,"69981":0,"69982":0,"69983":0,"69984":-1,"69985":0,"69986":0,"69987":-1,"69988":-1,"69989":0,"69990":2680,"69991":2048,"69992":0,"69993":-1,"69994":-1,"69995":0,"69996":2127,"69997":0,"69998":0,"69999":2284,"70000":2475,"70001":-1,"70002":0,"70003":2284,"70004":0,"70005":0,"70006":833,"70007":-1,"70008":-1,"70009":0,"70010":-1,"70011":0,"70012":0,"70013":0,"70014":0,"70015":0,"70016":-1,"70017":0,"70018":-1,"70019":2430,"70020":0,"70021":34,"70022":0,"70023":2622,"70024":0,"70025":0,"70026":2308,"70027":26,"70028":2269,"70029":2185,"70030":0,"70031":-1,"70032":80,"70033":2594,"70034":0,"70035":-1,"70036":-1,"70037":-1,"70038":0,"70039":0,"70040":0,"70041":0,"70042":1993,"70043":0,"70044":0,"70045":-1,"70046":0,"70047":-1,"70048":2553,"70049":2420,"70050":0,"70051":-1,"70052":0,"70053":2033,"70054":-1,"70055":0,"70056":2424,"70057":0,"70058":0,"70059":0,"70060":-1,"70061":-1,"70062":0,"70063":2158,"70064":0,"70065":2367,"70066":483,"70067":1996,"70068":0,"70069":0,"70070":0,"70071":2145,"70072":2536,"70073":118,"70074":422,"70075":-1,"70076":0,"70077":0,"70078":-1,"70079":2413,"70080":-1,"70081":0,"70082":0,"70083":0,"70084":-1,"70085":0,"70086":2384,"70087":0,"70088":0,"70089":0,"70090":-1,"70091":0,"70092":-1,"70093":942,"70094":237,"70095":2506,"70096":-1,"70097":-1,"70098":0,"70099":0,"70100":0,"70101":-1,"70102":-1,"70103":2610,"70104":-1,"70105":2568,"70106":-1,"70107":0,"70108":0,"70109":0,"70110":-1,"70111":-1,"70112":0,"70113":-1,"70114":0,"70115":-1,"70116":12,"70117":0,"70118":0,"70119":-1,"70120":2497,"70121":0,"70122":-1,"70123":2571,"70124":2323,"70125":0,"70126":0,"70127":2054,"70128":0,"70129":0,"70130":0,"70131":2072,"70132":0,"70133":2593,"70134":0,"70135":-1,"70136":-1,"70137":2547,"70138":2599,"70139":2067,"70140":0,"70141":0,"70142":-1,"70143":-1,"70144":0,"70145":-1,"70146":2496,"70147":-1,"70148":2622,"70149":0,"70150":2348,"70151":-1,"70152":0,"70153":-1,"70154":2580,"70155":0,"70156":-1,"70157":-1,"70158":772,"70159":0,"70160":0,"70161":0,"70162":2295,"70163":-1,"70164":0,"70165":141,"70166":837,"70167":0,"70168":-1,"70169":0,"70170":0,"70171":2519,"70172":0,"70173":-1,"70174":0,"70175":0,"70176":0,"70177":0,"70178":0,"70179":2041,"70180":0,"70181":-1,"70182":0,"70183":-1,"70184":0,"70185":-1,"70186":0,"70187":0,"70188":0,"70189":0,"70190":170,"70191":-1,"70192":-1,"70193":0,"70194":0,"70195":2535,"70196":2355,"70197":0,"70198":2048,"70199":2491,"70200":0,"70201":0,"70202":-1,"70203":0,"70204":0,"70205":0,"70206":2532,"70207":0,"70208":0,"70209":2507,"70210":0,"70211":2462,"70212":-1,"70213":0,"70214":0,"70215":0,"70216":662,"70217":-1,"70218":0,"70219":0,"70220":-1,"70221":483,"70222":0,"70223":-1,"70224":508,"70225":0,"70226":0,"70227":0,"70228":-1,"70229":0,"70230":0,"70231":0,"70232":2342,"70233":0,"70234":0,"70235":0,"70236":0,"70237":567,"70238":0,"70239":-1,"70240":0,"70241":0,"70242":0,"70243":0,"70244":0,"70245":0,"70246":0,"70247":0,"70248":2240,"70249":0,"70250":-1,"70251":0,"70252":0,"70253":-1,"70254":-1,"70255":0,"70256":0,"70257":0,"70258":2152,"70259":0,"70260":0,"70261":0,"70262":2044,"70263":-1,"70264":-1,"70265":0,"70266":44,"70267":0,"70268":2442,"70269":2421,"70270":2052,"70271":-1,"70272":-1,"70273":0,"70274":2225,"70275":0,"70276":345,"70277":0,"70278":2573,"70279":0,"70280":2115,"70281":0,"70282":-1,"70283":-1,"70284":0,"70285":0,"70286":-1,"70287":-1,"70288":2152,"70289":2148,"70290":-1,"70291":0,"70292":-1,"70293":2054,"70294":0,"70295":0,"70296":2506,"70297":-1,"70298":-1,"70299":-1,"70300":0,"70301":0,"70302":-1,"70303":0,"70304":0,"70305":-1,"70306":-1,"70307":-1,"70308":-1,"70309":2625,"70310":0,"70311":-1,"70312":-1,"70313":0,"70314":30,"70315":2113,"70316":-1,"70317":-1,"70318":-1,"70319":0,"70320":-1,"70321":-1,"70322":-1,"70323":461,"70324":0,"70325":-1,"70326":2011,"70327":-1,"70328":0,"70329":-1,"70330":2108,"70331":0,"70332":0,"70333":0,"70334":0,"70335":-1,"70336":0,"70337":0,"70338":0,"70339":-1,"70340":0,"70341":-1,"70342":-1,"70343":2543,"70344":0,"70345":0,"70346":0,"70347":-1,"70348":237,"70349":0,"70350":-1,"70351":2292,"70352":0,"70353":2257,"70354":86,"70355":2450,"70356":2162,"70357":0,"70358":0,"70359":2334,"70360":-1,"70361":0,"70362":0,"70363":0,"70364":-1,"70365":0,"70366":-1,"70367":-1,"70368":-1,"70369":0,"70370":-1,"70371":0,"70372":0,"70373":-1,"70374":0,"70375":-1,"70376":-1,"70377":0,"70378":-1,"70379":0,"70380":0,"70381":-1,"70382":2165,"70383":2556,"70384":0,"70385":0,"70386":-1,"70387":2509,"70388":0,"70389":2650,"70390":-1,"70391":-1,"70392":2606,"70393":2048,"70394":0,"70395":0,"70396":2598,"70397":2041,"70398":0,"70399":0,"70400":-1,"70401":2664,"70402":0,"70403":0,"70404":0,"70405":0,"70406":-1,"70407":2584,"70408":0,"70409":0,"70410":-1,"70411":-1,"70412":0,"70413":0,"70414":-1,"70415":2057,"70416":2623,"70417":0,"70418":0,"70419":0,"70420":2512,"70421":-1,"70422":2375,"70423":-1,"70424":418,"70425":-1,"70426":-1,"70427":0,"70428":2616,"70429":0,"70430":-1,"70431":472,"70432":-1,"70433":0,"70434":2217,"70435":-1,"70436":0,"70437":-1,"70438":2314,"70439":-1,"70440":2196,"70441":-1,"70442":-1,"70443":0,"70444":-1,"70445":0,"70446":-1,"70447":20,"70448":0,"70449":353,"70450":86,"70451":0,"70452":-1,"70453":-1,"70454":-1,"70455":0,"70456":0,"70457":-1,"70458":-1,"70459":0,"70460":-1,"70461":0,"70462":0,"70463":0,"70464":-1,"70465":2064,"70466":-1,"70467":0,"70468":-1,"70469":0,"70470":0,"70471":0,"70472":0,"70473":-1,"70474":0,"70475":0,"70476":-1,"70477":0,"70478":0,"70479":0,"70480":0,"70481":2305,"70482":0,"70483":0,"70484":-1,"70485":0,"70486":0,"70487":0,"70488":2625,"70489":16,"70490":-1,"70491":2325,"70492":0,"70493":0,"70494":0,"70495":141,"70496":2187,"70497":0,"70498":894,"70499":0,"70500":0,"70501":-1,"70502":706,"70503":0,"70504":0,"70505":-1,"70506":462,"70507":0,"70508":2600,"70509":2215,"70510":0,"70511":0,"70512":2183,"70513":-1,"70514":2510,"70515":2237,"70516":0,"70517":0,"70518":2562,"70519":-1,"70520":-1,"70521":-1,"70522":0,"70523":-1,"70524":-1,"70525":0,"70526":0,"70527":0,"70528":-1,"70529":0,"70530":0,"70531":1994,"70532":-1,"70533":0,"70534":2178,"70535":-1,"70536":2346,"70537":0,"70538":-1,"70539":2280,"70540":-1,"70541":0,"70542":0,"70543":0,"70544":-1,"70545":-1,"70546":0,"70547":2571,"70548":0,"70549":0,"70550":2110,"70551":0,"70552":-1,"70553":-1,"70554":0,"70555":0,"70556":0,"70557":64,"70558":2013,"70559":2218,"70560":0,"70561":2480,"70562":0,"70563":2181,"70564":-1,"70565":0,"70566":2411,"70567":0,"70568":0,"70569":0,"70570":0,"70571":-1,"70572":0,"70573":-1,"70574":-1,"70575":-1,"70576":-1,"70577":2130,"70578":0,"70579":0,"70580":2401,"70581":-1,"70582":-1,"70583":-1,"70584":2481,"70585":0,"70586":0,"70587":0,"70588":0,"70589":0,"70590":0,"70591":2375,"70592":2250,"70593":0,"70594":2383,"70595":0,"70596":0,"70597":2120,"70598":0,"70599":2214,"70600":-1,"70601":21,"70602":-1,"70603":0,"70604":0,"70605":-1,"70606":-1,"70607":-1,"70608":2520,"70609":0,"70610":0,"70611":0,"70612":-1,"70613":-1,"70614":0,"70615":-1,"70616":0,"70617":0,"70618":0,"70619":102,"70620":0,"70621":-1,"70622":-1,"70623":0,"70624":0,"70625":0,"70626":0,"70627":0,"70628":-1,"70629":-1,"70630":0,"70631":0,"70632":0,"70633":0,"70634":0,"70635":-1,"70636":0,"70637":2242,"70638":0,"70639":2298,"70640":0,"70641":-1,"70642":-1,"70643":-1,"70644":-1,"70645":2665,"70646":0,"70647":-1,"70648":0,"70649":0,"70650":0,"70651":-1,"70652":0,"70653":0,"70654":-1,"70655":0,"70656":0,"70657":0,"70658":-1,"70659":-1,"70660":2636,"70661":-1,"70662":0,"70663":0,"70664":0,"70665":-1,"70666":42,"70667":2257,"70668":-1,"70669":0,"70670":0,"70671":0,"70672":-1,"70673":0,"70674":-1,"70675":0,"70676":-1,"70677":0,"70678":-1,"70679":0,"70680":0,"70681":0,"70682":-1,"70683":0,"70684":0,"70685":0,"70686":-1,"70687":2390,"70688":120,"70689":-1,"70690":0,"70691":0,"70692":-1,"70693":0,"70694":0,"70695":0,"70696":0,"70697":0,"70698":0,"70699":0,"70700":0,"70701":0,"70702":-1,"70703":-1,"70704":10,"70705":-1,"70706":-1,"70707":0,"70708":2363,"70709":0,"70710":0,"70711":0,"70712":-1,"70713":0,"70714":-1,"70715":0,"70716":0,"70717":2328,"70718":0,"70719":-1,"70720":0,"70721":327,"70722":0,"70723":101,"70724":0,"70725":-1,"70726":-1,"70727":0,"70728":0,"70729":44,"70730":0,"70731":0,"70732":2144,"70733":0,"70734":0,"70735":2411,"70736":-1,"70737":-1,"70738":0,"70739":2295,"70740":0,"70741":2544,"70742":0,"70743":261,"70744":2256,"70745":-1,"70746":0,"70747":0,"70748":0,"70749":0,"70750":0,"70751":0,"70752":0,"70753":-1,"70754":0,"70755":0,"70756":0,"70757":0,"70758":-1,"70759":-1,"70760":20,"70761":402,"70762":0,"70763":0,"70764":-1,"70765":2251,"70766":2462,"70767":-1,"70768":0,"70769":-1,"70770":0,"70771":787,"70772":0,"70773":0,"70774":27,"70775":2198,"70776":0,"70777":0,"70778":-1,"70779":-1,"70780":2217,"70781":0,"70782":0,"70783":0,"70784":-1,"70785":0,"70786":109,"70787":2047,"70788":0,"70789":-1,"70790":0,"70791":153,"70792":-1,"70793":0,"70794":2349,"70795":-1,"70796":2362,"70797":2182,"70798":0,"70799":-1,"70800":2650,"70801":-1,"70802":-1,"70803":-1,"70804":2365,"70805":0,"70806":0,"70807":0,"70808":0,"70809":2291,"70810":0,"70811":0,"70812":-1,"70813":0,"70814":2535,"70815":2654,"70816":-1,"70817":0,"70818":0,"70819":0,"70820":104,"70821":-1,"70822":-1,"70823":-1,"70824":-1,"70825":0,"70826":645,"70827":0,"70828":0,"70829":2305,"70830":-1,"70831":0,"70832":-1,"70833":0,"70834":0,"70835":-1,"70836":0,"70837":2579,"70838":35,"70839":0,"70840":0,"70841":0,"70842":-1,"70843":0,"70844":2121,"70845":-1,"70846":0,"70847":0,"70848":0,"70849":0,"70850":0,"70851":0,"70852":0,"70853":0,"70854":0,"70855":2005,"70856":0,"70857":2007,"70858":2582,"70859":0,"70860":0,"70861":0,"70862":0,"70863":-1,"70864":-1,"70865":25,"70866":0,"70867":2252,"70868":-1,"70869":2640,"70870":-1,"70871":2225,"70872":2392,"70873":0,"70874":0,"70875":-1,"70876":2597,"70877":-1,"70878":-1,"70879":2220,"70880":0,"70881":-1,"70882":-1,"70883":0,"70884":2433,"70885":2116,"70886":-1,"70887":514,"70888":-1,"70889":0,"70890":-1,"70891":-1,"70892":2364,"70893":-1,"70894":-1,"70895":-1,"70896":0,"70897":-1,"70898":-1,"70899":0,"70900":0,"70901":-1,"70902":341,"70903":0,"70904":293,"70905":0,"70906":0,"70907":2279,"70908":0,"70909":2406,"70910":-1,"70911":2419,"70912":0,"70913":0,"70914":292,"70915":0,"70916":2590,"70917":-1,"70918":-1,"70919":0,"70920":-1,"70921":313,"70922":0,"70923":2364,"70924":0,"70925":-1,"70926":0,"70927":0,"70928":-1,"70929":2477,"70930":-1,"70931":0,"70932":-1,"70933":0,"70934":-1,"70935":-1,"70936":0,"70937":2180,"70938":-1,"70939":-1,"70940":2084,"70941":2117,"70942":0,"70943":0,"70944":0,"70945":-1,"70946":-1,"70947":-1,"70948":-1,"70949":2275,"70950":-1,"70951":0,"70952":2625,"70953":2205,"70954":0,"70955":96,"70956":0,"70957":-1,"70958":0,"70959":-1,"70960":2456,"70961":0,"70962":0,"70963":0,"70964":-1,"70965":0,"70966":-1,"70967":0,"70968":-1,"70969":0,"70970":2444,"70971":2185,"70972":2609,"70973":0,"70974":-1,"70975":1997,"70976":0,"70977":-1,"70978":-1,"70979":0,"70980":0,"70981":-1,"70982":-1,"70983":0,"70984":-1,"70985":2019,"70986":-1,"70987":0,"70988":0,"70989":402,"70990":1998,"70991":0,"70992":-1,"70993":2154,"70994":2538,"70995":2120,"70996":0,"70997":2260,"70998":2239,"70999":2280,"71000":2105,"71001":-1,"71002":-1,"71003":0,"71004":-1,"71005":706,"71006":2368,"71007":2167,"71008":0,"71009":-1,"71010":-1,"71011":0,"71012":448,"71013":0,"71014":2389,"71015":2152,"71016":0,"71017":2164,"71018":-1,"71019":0,"71020":150,"71021":2246,"71022":0,"71023":0,"71024":0,"71025":2356,"71026":0,"71027":0,"71028":0,"71029":2515,"71030":-1,"71031":2419,"71032":-1,"71033":2195,"71034":-1,"71035":199,"71036":-1,"71037":0,"71038":0,"71039":2039,"71040":0,"71041":-1,"71042":0,"71043":-1,"71044":-1,"71045":0,"71046":0,"71047":-1,"71048":0,"71049":-1,"71050":0,"71051":0,"71052":2471,"71053":0,"71054":2227,"71055":-1,"71056":0,"71057":2344,"71058":508,"71059":0,"71060":0,"71061":0,"71062":-1,"71063":-1,"71064":693,"71065":-1,"71066":2075,"71067":-1,"71068":0,"71069":-1,"71070":0,"71071":0,"71072":2021,"71073":0,"71074":-1,"71075":0,"71076":0,"71077":0,"71078":-1,"71079":-1,"71080":0,"71081":-1,"71082":2147,"71083":-1,"71084":-1,"71085":-1,"71086":-1,"71087":-1,"71088":0,"71089":0,"71090":0,"71091":602,"71092":0,"71093":0,"71094":0,"71095":-1,"71096":0,"71097":-1,"71098":0,"71099":2116,"71100":0,"71101":0,"71102":-1,"71103":0,"71104":0,"71105":-1,"71106":2420,"71107":284,"71108":2160,"71109":-1,"71110":0,"71111":0,"71112":2489,"71113":0,"71114":908,"71115":-1,"71116":2578,"71117":-1,"71118":0,"71119":-1,"71120":43,"71121":-1,"71122":-1,"71123":0,"71124":-1,"71125":2298,"71126":0,"71127":0,"71128":0,"71129":0,"71130":0,"71131":0,"71132":0,"71133":2494,"71134":0,"71135":0,"71136":0,"71137":0,"71138":2024,"71139":-1,"71140":2613,"71141":0,"71142":-1,"71143":2638,"71144":2356,"71145":0,"71146":293,"71147":0,"71148":-1,"71149":0,"71150":787,"71151":0,"71152":0,"71153":2117,"71154":0,"71155":-1,"71156":-1,"71157":0,"71158":2313,"71159":-1,"71160":-1,"71161":0,"71162":0,"71163":-1,"71164":0,"71165":-1,"71166":0,"71167":0,"71168":0,"71169":-1,"71170":0,"71171":2090,"71172":-1,"71173":0,"71174":0,"71175":-1,"71176":0,"71177":2402,"71178":0,"71179":2647,"71180":0,"71181":0,"71182":0,"71183":0,"71184":2016,"71185":2117,"71186":0,"71187":0,"71188":-1,"71189":0,"71190":1995,"71191":2667,"71192":0,"71193":0,"71194":0,"71195":0,"71196":0,"71197":2171,"71198":-1,"71199":0,"71200":0,"71201":-1,"71202":2318,"71203":0,"71204":0,"71205":-1,"71206":2665,"71207":-1,"71208":0,"71209":2156,"71210":0,"71211":0,"71212":2032,"71213":2281,"71214":0,"71215":2152,"71216":-1,"71217":0,"71218":0,"71219":2370,"71220":2648,"71221":-1,"71222":-1,"71223":2134,"71224":0,"71225":3,"71226":0,"71227":0,"71228":-1,"71229":-1,"71230":0,"71231":0,"71232":-1,"71233":2086,"71234":0,"71235":0,"71236":-1,"71237":-1,"71238":-1,"71239":0,"71240":-1,"71241":2086,"71242":0,"71243":0,"71244":0,"71245":0,"71246":0,"71247":-1,"71248":-1,"71249":0,"71250":2292,"71251":0,"71252":2396,"71253":-1,"71254":-1,"71255":-1,"71256":0,"71257":0,"71258":0,"71259":0,"71260":0,"71261":-1,"71262":-1,"71263":0,"71264":0,"71265":0,"71266":2275,"71267":2676,"71268":-1,"71269":0,"71270":0,"71271":-1,"71272":-1,"71273":0,"71274":2220,"71275":0,"71276":-1,"71277":0,"71278":0,"71279":2027,"71280":0,"71281":0,"71282":0,"71283":2299,"71284":-1,"71285":0,"71286":0,"71287":-1,"71288":0,"71289":-1,"71290":0,"71291":-1,"71292":0,"71293":-1,"71294":2114,"71295":0,"71296":-1,"71297":0,"71298":0,"71299":0,"71300":-1,"71301":0,"71302":0,"71303":0,"71304":141,"71305":0,"71306":0,"71307":2165,"71308":0,"71309":-1,"71310":0,"71311":-1,"71312":2537,"71313":0,"71314":0,"71315":906,"71316":0,"71317":-1,"71318":0,"71319":-1,"71320":0,"71321":0,"71322":0,"71323":0,"71324":-1,"71325":0,"71326":-1,"71327":2409,"71328":2020,"71329":0,"71330":0,"71331":0,"71332":0,"71333":2211,"71334":0,"71335":0,"71336":0,"71337":0,"71338":-1,"71339":0,"71340":0,"71341":2450,"71342":159,"71343":2251,"71344":2420,"71345":0,"71346":0,"71347":246,"71348":0,"71349":39,"71350":0,"71351":2529,"71352":0,"71353":0,"71354":418,"71355":2045,"71356":2365,"71357":0,"71358":0,"71359":0,"71360":0,"71361":-1,"71362":0,"71363":-1,"71364":2592,"71365":0,"71366":-1,"71367":0,"71368":-1,"71369":2044,"71370":0,"71371":0,"71372":0,"71373":-1,"71374":-1,"71375":0,"71376":-1,"71377":0,"71378":2266,"71379":-1,"71380":0,"71381":0,"71382":0,"71383":-1,"71384":0,"71385":0,"71386":-1,"71387":-1,"71388":-1,"71389":2593,"71390":2344,"71391":0,"71392":2533,"71393":-1,"71394":0,"71395":2571,"71396":0,"71397":2649,"71398":-1,"71399":0,"71400":1996,"71401":0,"71402":2228,"71403":-1,"71404":0,"71405":-1,"71406":-1,"71407":2177,"71408":-1,"71409":2235,"71410":2189,"71411":168,"71412":2006,"71413":0,"71414":0,"71415":2434,"71416":0,"71417":-1,"71418":-1,"71419":281,"71420":2464,"71421":-1,"71422":0,"71423":2480,"71424":-1,"71425":0,"71426":-1,"71427":2484,"71428":0,"71429":0,"71430":2038,"71431":-1,"71432":-1,"71433":-1,"71434":-1,"71435":2441,"71436":0,"71437":0,"71438":0,"71439":2419,"71440":0,"71441":0,"71442":0,"71443":0,"71444":-1,"71445":0,"71446":0,"71447":0,"71448":0,"71449":-1,"71450":-1,"71451":0,"71452":0,"71453":0,"71454":0,"71455":2602,"71456":2324,"71457":-1,"71458":0,"71459":0,"71460":2598,"71461":0,"71462":0,"71463":-1,"71464":-1,"71465":0,"71466":0,"71467":2288,"71468":2160,"71469":0,"71470":0,"71471":2010,"71472":2438,"71473":126,"71474":-1,"71475":-1,"71476":0,"71477":2338,"71478":2568,"71479":-1,"71480":0,"71481":2410,"71482":0,"71483":2487,"71484":2451,"71485":0,"71486":2493,"71487":2352,"71488":2357,"71489":2530,"71490":0,"71491":0,"71492":-1,"71493":-1,"71494":0,"71495":0,"71496":0,"71497":0,"71498":0,"71499":0,"71500":0,"71501":0,"71502":2336,"71503":0,"71504":-1,"71505":0,"71506":0,"71507":0,"71508":2292,"71509":0,"71510":-1,"71511":-1,"71512":2179,"71513":-1,"71514":0,"71515":-1,"71516":0,"71517":0,"71518":-1,"71519":0,"71520":-1,"71521":0,"71522":0,"71523":2284,"71524":0,"71525":-1,"71526":0,"71527":0,"71528":0,"71529":0,"71530":-1,"71531":0,"71532":0,"71533":2465,"71534":0,"71535":-1,"71536":0,"71537":2069,"71538":0,"71539":-1,"71540":-1,"71541":0,"71542":2303,"71543":0,"71544":0,"71545":-1,"71546":-1,"71547":0,"71548":2534,"71549":0,"71550":-1,"71551":2673,"71552":0,"71553":0,"71554":-1,"71555":2288,"71556":0,"71557":0,"71558":0,"71559":2161,"71560":-1,"71561":0,"71562":0,"71563":2635,"71564":0,"71565":0,"71566":0,"71567":0,"71568":-1,"71569":-1,"71570":0,"71571":-1,"71572":0,"71573":0,"71574":-1,"71575":-1,"71576":0,"71577":2351,"71578":-1,"71579":0,"71580":-1,"71581":-1,"71582":0,"71583":0,"71584":0,"71585":0,"71586":0,"71587":2244,"71588":-1,"71589":0,"71590":0,"71591":-1,"71592":2212,"71593":0,"71594":2007,"71595":0,"71596":-1,"71597":0,"71598":0,"71599":0,"71600":0,"71601":2108,"71602":0,"71603":0,"71604":0,"71605":0,"71606":0,"71607":-1,"71608":-1,"71609":-1,"71610":-1,"71611":0,"71612":2471,"71613":2402,"71614":-1,"71615":0,"71616":2669,"71617":-1,"71618":0,"71619":0,"71620":0,"71621":107,"71622":0,"71623":0,"71624":-1,"71625":2131,"71626":0,"71627":-1,"71628":0,"71629":0,"71630":-1,"71631":2605,"71632":0,"71633":0,"71634":-1,"71635":-1,"71636":88,"71637":0,"71638":0,"71639":-1,"71640":0,"71641":0,"71642":-1,"71643":0,"71644":0,"71645":0,"71646":42,"71647":0,"71648":0,"71649":0,"71650":2483,"71651":-1,"71652":2023,"71653":837,"71654":-1,"71655":2275,"71656":0,"71657":2671,"71658":-1,"71659":0,"71660":0,"71661":0,"71662":-1,"71663":386,"71664":0,"71665":0,"71666":-1,"71667":0,"71668":-1,"71669":0,"71670":0,"71671":0,"71672":2121,"71673":2596,"71674":0,"71675":0,"71676":2263,"71677":0,"71678":0,"71679":0,"71680":0,"71681":0,"71682":246,"71683":0,"71684":0,"71685":0,"71686":2093,"71687":0,"71688":0,"71689":-1,"71690":-1,"71691":-1,"71692":-1,"71693":-1,"71694":-1,"71695":0,"71696":0,"71697":0,"71698":2549,"71699":0,"71700":420,"71701":281,"71702":2293,"71703":0,"71704":0,"71705":0,"71706":0,"71707":0,"71708":0,"71709":2349,"71710":0,"71711":0,"71712":-1,"71713":0,"71714":2605,"71715":2042,"71716":0,"71717":-1,"71718":0,"71719":2425,"71720":2197,"71721":-1,"71722":0,"71723":2020,"71724":0,"71725":2062,"71726":-1,"71727":0,"71728":2589,"71729":-1,"71730":0,"71731":0,"71732":2180,"71733":159,"71734":2032,"71735":-1,"71736":-1,"71737":0,"71738":-1,"71739":-1,"71740":0,"71741":693,"71742":0,"71743":0,"71744":0,"71745":-1,"71746":17,"71747":0,"71748":0,"71749":-1,"71750":-1,"71751":2053,"71752":842,"71753":2058,"71754":0,"71755":-1,"71756":0,"71757":2350,"71758":0,"71759":0,"71760":0,"71761":0,"71762":691,"71763":0,"71764":21,"71765":-1,"71766":0,"71767":120,"71768":-1,"71769":-1,"71770":2542,"71771":-1,"71772":-1,"71773":0,"71774":2044,"71775":0,"71776":0,"71777":2092,"71778":-1,"71779":-1,"71780":2577,"71781":0,"71782":0,"71783":0,"71784":-1,"71785":0,"71786":0,"71787":0,"71788":0,"71789":-1,"71790":-1,"71791":0,"71792":0,"71793":-1,"71794":-1,"71795":-1,"71796":0,"71797":0,"71798":284,"71799":0,"71800":2077,"71801":2285,"71802":0,"71803":0,"71804":-1,"71805":567,"71806":-1,"71807":-1,"71808":0,"71809":2269,"71810":0,"71811":-1,"71812":-1,"71813":864,"71814":-1,"71815":2167,"71816":2318,"71817":-1,"71818":0,"71819":2499,"71820":-1,"71821":514,"71822":-1,"71823":0,"71824":0,"71825":-1,"71826":-1,"71827":0,"71828":0,"71829":0,"71830":0,"71831":0,"71832":0,"71833":0,"71834":0,"71835":-1,"71836":0,"71837":0,"71838":0,"71839":0,"71840":-1,"71841":0,"71842":0,"71843":-1,"71844":0,"71845":0,"71846":2089,"71847":-1,"71848":0,"71849":0,"71850":-1,"71851":2349,"71852":-1,"71853":-1,"71854":-1,"71855":0,"71856":0,"71857":0,"71858":-1,"71859":-1,"71860":23,"71861":0,"71862":-1,"71863":0,"71864":0,"71865":-1,"71866":0,"71867":0,"71868":-1,"71869":2090,"71870":2093,"71871":2035,"71872":-1,"71873":0,"71874":-1,"71875":0,"71876":0,"71877":0,"71878":0,"71879":2045,"71880":0,"71881":2098,"71882":0,"71883":0,"71884":0,"71885":0,"71886":1995,"71887":2335,"71888":0,"71889":-1,"71890":2034,"71891":0,"71892":-1,"71893":-1,"71894":0,"71895":0,"71896":2010,"71897":-1,"71898":-1,"71899":0,"71900":0,"71901":-1,"71902":0,"71903":-1,"71904":0,"71905":2227,"71906":-1,"71907":0,"71908":-1,"71909":-1,"71910":0,"71911":-1,"71912":0,"71913":0,"71914":0,"71915":0,"71916":-1,"71917":-1,"71918":2514,"71919":130,"71920":-1,"71921":0,"71922":2107,"71923":-1,"71924":-1,"71925":-1,"71926":2127,"71927":-1,"71928":0,"71929":0,"71930":533,"71931":0,"71932":0,"71933":-1,"71934":0,"71935":0,"71936":0,"71937":-1,"71938":0,"71939":-1,"71940":-1,"71941":0,"71942":-1,"71943":0,"71944":-1,"71945":0,"71946":-1,"71947":2491,"71948":-1,"71949":-1,"71950":0,"71951":-1,"71952":2602,"71953":2242,"71954":0,"71955":2548,"71956":0,"71957":0,"71958":-1,"71959":-1,"71960":0,"71961":-1,"71962":-1,"71963":-1,"71964":2444,"71965":0,"71966":0,"71967":-1,"71968":-1,"71969":738,"71970":2552,"71971":-1,"71972":38,"71973":2650,"71974":0,"71975":0,"71976":-1,"71977":-1,"71978":0,"71979":2591,"71980":0,"71981":0,"71982":-1,"71983":-1,"71984":0,"71985":2052,"71986":0,"71987":2442,"71988":0,"71989":2607,"71990":0,"71991":0,"71992":0,"71993":2519,"71994":0,"71995":0,"71996":2665,"71997":-1,"71998":0,"71999":0,"72000":217,"72001":0,"72002":2463,"72003":0,"72004":-1,"72005":0,"72006":0,"72007":0,"72008":0,"72009":2483,"72010":0,"72011":0,"72012":0,"72013":178,"72014":0,"72015":0,"72016":0,"72017":0,"72018":2375,"72019":0,"72020":0,"72021":2210,"72022":-1,"72023":-1,"72024":0,"72025":0,"72026":0,"72027":-1,"72028":2557,"72029":0,"72030":-1,"72031":2299,"72032":-1,"72033":-1,"72034":0,"72035":2281,"72036":0,"72037":-1,"72038":-1,"72039":-1,"72040":0,"72041":-1,"72042":-1,"72043":0,"72044":-1,"72045":0,"72046":-1,"72047":281,"72048":0,"72049":-1,"72050":-1,"72051":0,"72052":2403,"72053":-1,"72054":-1,"72055":0,"72056":-1,"72057":2481,"72058":0,"72059":2518,"72060":0,"72061":2132,"72062":0,"72063":2496,"72064":0,"72065":-1,"72066":0,"72067":133,"72068":0,"72069":0,"72070":0,"72071":-1,"72072":0,"72073":-1,"72074":2183,"72075":-1,"72076":2525,"72077":-1,"72078":0,"72079":2617,"72080":-1,"72081":-1,"72082":0,"72083":0,"72084":2193,"72085":-1,"72086":0,"72087":2664,"72088":-1,"72089":2058,"72090":-1,"72091":-1,"72092":0,"72093":168,"72094":0,"72095":0,"72096":0,"72097":2171,"72098":0,"72099":-1,"72100":-1,"72101":0,"72102":0,"72103":2365,"72104":2294,"72105":2223,"72106":0,"72107":-1,"72108":0,"72109":0,"72110":-1,"72111":0,"72112":0,"72113":2177,"72114":-1,"72115":-1,"72116":0,"72117":0,"72118":2533,"72119":0,"72120":0,"72121":0,"72122":0,"72123":-1,"72124":0,"72125":0,"72126":-1,"72127":-1,"72128":0,"72129":-1,"72130":2109,"72131":350,"72132":-1,"72133":0,"72134":0,"72135":2339,"72136":2618,"72137":-1,"72138":2013,"72139":-1,"72140":0,"72141":0,"72142":0,"72143":0,"72144":2146,"72145":0,"72146":2338,"72147":2207,"72148":0,"72149":0,"72150":0,"72151":2250,"72152":0,"72153":0,"72154":-1,"72155":2379,"72156":2651,"72157":-1,"72158":-1,"72159":0,"72160":-1,"72161":2461,"72162":2574,"72163":-1,"72164":2329,"72165":0,"72166":0,"72167":0,"72168":2512,"72169":0,"72170":0,"72171":2094,"72172":0,"72173":2187,"72174":0,"72175":0,"72176":0,"72177":0,"72178":-1,"72179":0,"72180":-1,"72181":2664,"72182":2095,"72183":0,"72184":-1,"72185":-1,"72186":-1,"72187":7,"72188":2294,"72189":0,"72190":2039,"72191":0,"72192":-1,"72193":422,"72194":-1,"72195":2239,"72196":2319,"72197":-1,"72198":0,"72199":-1,"72200":0,"72201":0,"72202":0,"72203":0,"72204":2436,"72205":303,"72206":0,"72207":2356,"72208":-1,"72209":0,"72210":0,"72211":0,"72212":0,"72213":2067,"72214":0,"72215":0,"72216":0,"72217":0,"72218":0,"72219":-1,"72220":-1,"72221":-1,"72222":0,"72223":-1,"72224":2465,"72225":2243,"72226":0,"72227":2163,"72228":198,"72229":168,"72230":-1,"72231":0,"72232":-1,"72233":-1,"72234":0,"72235":-1,"72236":0,"72237":0,"72238":2659,"72239":0,"72240":0,"72241":0,"72242":-1,"72243":0,"72244":2115,"72245":-1,"72246":14,"72247":-1,"72248":-1,"72249":0,"72250":0,"72251":2210,"72252":2558,"72253":-1,"72254":0,"72255":0,"72256":-1,"72257":-1,"72258":2612,"72259":-1,"72260":0,"72261":2653,"72262":2,"72263":2260,"72264":0,"72265":2003,"72266":0,"72267":0,"72268":0,"72269":0,"72270":0,"72271":0,"72272":-1,"72273":2623,"72274":0,"72275":-1,"72276":2400,"72277":0,"72278":0,"72279":0,"72280":2423,"72281":0,"72282":0,"72283":-1,"72284":0,"72285":2590,"72286":2141,"72287":-1,"72288":2480,"72289":0,"72290":2492,"72291":2267,"72292":0,"72293":0,"72294":0,"72295":-1,"72296":-1,"72297":-1,"72298":0,"72299":0,"72300":0,"72301":-1,"72302":0,"72303":-1,"72304":0,"72305":-1,"72306":2315,"72307":-1,"72308":-1,"72309":0,"72310":2494,"72311":2237,"72312":-1,"72313":2654,"72314":2271,"72315":0,"72316":0,"72317":0,"72318":0,"72319":2221,"72320":2513,"72321":0,"72322":0,"72323":-1,"72324":0,"72325":0,"72326":-1,"72327":0,"72328":2633,"72329":0,"72330":0,"72331":0,"72332":-1,"72333":0,"72334":0,"72335":907,"72336":0,"72337":617,"72338":2007,"72339":0,"72340":0,"72341":0,"72342":2231,"72343":0,"72344":559,"72345":-1,"72346":0,"72347":0,"72348":2090,"72349":-1,"72350":0,"72351":0,"72352":0,"72353":-1,"72354":0,"72355":0,"72356":2635,"72357":0,"72358":0,"72359":0,"72360":0,"72361":0,"72362":-1,"72363":0,"72364":0,"72365":-1,"72366":246,"72367":-1,"72368":2353,"72369":-1,"72370":7,"72371":-1,"72372":2105,"72373":-1,"72374":0,"72375":2187,"72376":-1,"72377":0,"72378":-1,"72379":418,"72380":0,"72381":0,"72382":-1,"72383":-1,"72384":0,"72385":0,"72386":2195,"72387":0,"72388":-1,"72389":42,"72390":0,"72391":2435,"72392":0,"72393":0,"72394":0,"72395":0,"72396":-1,"72397":-1,"72398":0,"72399":-1,"72400":0,"72401":0,"72402":-1,"72403":0,"72404":907,"72405":0,"72406":2161,"72407":-1,"72408":0,"72409":-1,"72410":-1,"72411":0,"72412":77,"72413":0,"72414":2623,"72415":-1,"72416":0,"72417":-1,"72418":0,"72419":-1,"72420":2548,"72421":-1,"72422":0,"72423":-1,"72424":-1,"72425":2221,"72426":-1,"72427":2045,"72428":0,"72429":0,"72430":2621,"72431":0,"72432":0,"72433":-1,"72434":0,"72435":-1,"72436":-1,"72437":-1,"72438":2421,"72439":2304,"72440":-1,"72441":0,"72442":0,"72443":2042,"72444":0,"72445":-1,"72446":0,"72447":-1,"72448":17,"72449":2175,"72450":0,"72451":-1,"72452":-1,"72453":0,"72454":2061,"72455":-1,"72456":-1,"72457":-1,"72458":0,"72459":-1,"72460":-1,"72461":2468,"72462":0,"72463":2193,"72464":0,"72465":2090,"72466":2485,"72467":-1,"72468":2133,"72469":-1,"72470":-1,"72471":41,"72472":-1,"72473":0,"72474":0,"72475":0,"72476":-1,"72477":0,"72478":-1,"72479":837,"72480":0,"72481":0,"72482":-1,"72483":-1,"72484":0,"72485":0,"72486":2412,"72487":2132,"72488":2573,"72489":0,"72490":-1,"72491":-1,"72492":0,"72493":0,"72494":0,"72495":2001,"72496":-1,"72497":524,"72498":0,"72499":-1,"72500":2500,"72501":-1,"72502":0,"72503":-1,"72504":-1,"72505":-1,"72506":0,"72507":0,"72508":-1,"72509":0,"72510":-1,"72511":-1,"72512":0,"72513":833,"72514":0,"72515":2339,"72516":0,"72517":2261,"72518":0,"72519":-1,"72520":300,"72521":0,"72522":-1,"72523":449,"72524":833,"72525":0,"72526":0,"72527":0,"72528":-1,"72529":772,"72530":0,"72531":0,"72532":0,"72533":0,"72534":0,"72535":-1,"72536":837,"72537":0,"72538":0,"72539":0,"72540":-1,"72541":0,"72542":0,"72543":2206,"72544":0,"72545":2116,"72546":-1,"72547":2556,"72548":2540,"72549":2196,"72550":2,"72551":2162,"72552":-1,"72553":-1,"72554":0,"72555":0,"72556":-1,"72557":0,"72558":0,"72559":0,"72560":-1,"72561":894,"72562":0,"72563":0,"72564":0,"72565":-1,"72566":-1,"72567":1999,"72568":0,"72569":-1,"72570":0,"72571":-1,"72572":2027,"72573":0,"72574":-1,"72575":-1,"72576":0,"72577":2252,"72578":0,"72579":0,"72580":-1,"72581":0,"72582":11,"72583":102,"72584":0,"72585":2308,"72586":2252,"72587":0,"72588":0,"72589":0,"72590":-1,"72591":0,"72592":0,"72593":2483,"72594":0,"72595":0,"72596":-1,"72597":-1,"72598":170,"72599":0,"72600":2087,"72601":0,"72602":0,"72603":329,"72604":0,"72605":0,"72606":0,"72607":0,"72608":-1,"72609":0,"72610":0,"72611":0,"72612":0,"72613":-1,"72614":-1,"72615":-1,"72616":0,"72617":0,"72618":0,"72619":2503,"72620":-1,"72621":-1,"72622":0,"72623":-1,"72624":2543,"72625":0,"72626":0,"72627":2052,"72628":2147,"72629":2485,"72630":-1,"72631":0,"72632":0,"72633":-1,"72634":-1,"72635":345,"72636":-1,"72637":2295,"72638":-1,"72639":299,"72640":-1,"72641":317,"72642":0,"72643":2048,"72644":2171,"72645":0,"72646":-1,"72647":2084,"72648":-1,"72649":-1,"72650":0,"72651":-1,"72652":-1,"72653":325,"72654":0,"72655":-1,"72656":2141,"72657":2407,"72658":0,"72659":0,"72660":0,"72661":0,"72662":0,"72663":0,"72664":2251,"72665":0,"72666":2413,"72667":2114,"72668":-1,"72669":2120,"72670":0,"72671":-1,"72672":0,"72673":-1,"72674":2675,"72675":0,"72676":0,"72677":-1,"72678":-1,"72679":-1,"72680":0,"72681":2492,"72682":-1,"72683":0,"72684":-1,"72685":-1,"72686":2243,"72687":-1,"72688":2583,"72689":-1,"72690":924,"72691":2052,"72692":0,"72693":0,"72694":-1,"72695":-1,"72696":-1,"72697":0,"72698":209,"72699":2342,"72700":-1,"72701":0,"72702":-1,"72703":0,"72704":-1,"72705":859,"72706":-1,"72707":0,"72708":-1,"72709":-1,"72710":-1,"72711":0,"72712":0,"72713":0,"72714":-1,"72715":-1,"72716":0,"72717":0,"72718":0,"72719":0,"72720":2183,"72721":0,"72722":0,"72723":-1,"72724":2079,"72725":0,"72726":0,"72727":0,"72728":2319,"72729":0,"72730":-1,"72731":-1,"72732":0,"72733":-1,"72734":0,"72735":0,"72736":0,"72737":0,"72738":-1,"72739":0,"72740":0,"72741":-1,"72742":-1,"72743":0,"72744":2319,"72745":0,"72746":-1,"72747":-1,"72748":2388,"72749":-1,"72750":-1,"72751":2419,"72752":2139,"72753":0,"72754":0,"72755":402,"72756":0,"72757":-1,"72758":-1,"72759":0,"72760":16,"72761":0,"72762":-1,"72763":2443,"72764":0,"72765":0,"72766":-1,"72767":-1,"72768":0,"72769":0,"72770":2163,"72771":0,"72772":-1,"72773":0,"72774":2177,"72775":2008,"72776":-1,"72777":-1,"72778":2619,"72779":0,"72780":0,"72781":-1,"72782":2050,"72783":-1,"72784":2342,"72785":-1,"72786":2269,"72787":36,"72788":0,"72789":0,"72790":2678,"72791":2045,"72792":-1,"72793":0,"72794":104,"72795":2412,"72796":170,"72797":-1,"72798":0,"72799":2069,"72800":0,"72801":-1,"72802":0,"72803":0,"72804":0,"72805":-1,"72806":0,"72807":-1,"72808":-1,"72809":237,"72810":0,"72811":-1,"72812":2082,"72813":0,"72814":2555,"72815":0,"72816":0,"72817":-1,"72818":0,"72819":0,"72820":0,"72821":2550,"72822":-1,"72823":-1,"72824":2067,"72825":0,"72826":-1,"72827":44,"72828":0,"72829":0,"72830":0,"72831":-1,"72832":-1,"72833":-1,"72834":-1,"72835":0,"72836":-1,"72837":168,"72838":2374,"72839":2406,"72840":0,"72841":735,"72842":-1,"72843":0,"72844":2262,"72845":-1,"72846":0,"72847":0,"72848":-1,"72849":0,"72850":0,"72851":2670,"72852":0,"72853":0,"72854":2217,"72855":-1,"72856":2191,"72857":0,"72858":-1,"72859":-1,"72860":-1,"72861":0,"72862":2144,"72863":-1,"72864":-1,"72865":2211,"72866":0,"72867":2096,"72868":0,"72869":0,"72870":-1,"72871":0,"72872":2416,"72873":2184,"72874":-1,"72875":0,"72876":0,"72877":0,"72878":2426,"72879":2063,"72880":0,"72881":0,"72882":0,"72883":-1,"72884":0,"72885":0,"72886":0,"72887":2486,"72888":-1,"72889":-1,"72890":0,"72891":2672,"72892":0,"72893":-1,"72894":-1,"72895":-1,"72896":0,"72897":0,"72898":0,"72899":178,"72900":2576,"72901":0,"72902":-1,"72903":0,"72904":0,"72905":-1,"72906":0,"72907":0,"72908":0,"72909":-1,"72910":0,"72911":0,"72912":29,"72913":0,"72914":-1,"72915":-1,"72916":28,"72917":0,"72918":0,"72919":2578,"72920":0,"72921":0,"72922":0,"72923":0,"72924":-1,"72925":-1,"72926":0,"72927":0,"72928":0,"72929":0,"72930":0,"72931":936,"72932":0,"72933":0,"72934":-1,"72935":0,"72936":0,"72937":2261,"72938":0,"72939":18,"72940":2289,"72941":0,"72942":-1,"72943":-1,"72944":-1,"72945":2034,"72946":0,"72947":-1,"72948":-1,"72949":0,"72950":2634,"72951":0,"72952":2102,"72953":2067,"72954":2129,"72955":0,"72956":-1,"72957":-1,"72958":0,"72959":0,"72960":2152,"72961":2572,"72962":-1,"72963":-1,"72964":2675,"72965":0,"72966":0,"72967":0,"72968":0,"72969":0,"72970":2008,"72971":0,"72972":0,"72973":0,"72974":0,"72975":0,"72976":0,"72977":-1,"72978":0,"72979":386,"72980":-1,"72981":0,"72982":2406,"72983":2346,"72984":-1,"72985":0,"72986":-1,"72987":0,"72988":0,"72989":0,"72990":-1,"72991":-1,"72992":-1,"72993":2083,"72994":0,"72995":0,"72996":0,"72997":145,"72998":-1,"72999":2054,"73000":-1,"73001":-1,"73002":2037,"73003":2663,"73004":-1,"73005":2239,"73006":2329,"73007":-1,"73008":-1,"73009":0,"73010":-1,"73011":0,"73012":2105,"73013":0,"73014":2013,"73015":-1,"73016":0,"73017":0,"73018":2231,"73019":-1,"73020":2669,"73021":-1,"73022":-1,"73023":-1,"73024":0,"73025":0,"73026":0,"73027":-1,"73028":0,"73029":-1,"73030":0,"73031":0,"73032":-1,"73033":-1,"73034":-1,"73035":0,"73036":0,"73037":0,"73038":0,"73039":0,"73040":0,"73041":126,"73042":0,"73043":159,"73044":0,"73045":2223,"73046":2595,"73047":-1,"73048":-1,"73049":0,"73050":-1,"73051":-1,"73052":-1,"73053":-1,"73054":-1,"73055":0,"73056":0,"73057":0,"73058":0,"73059":-1,"73060":1997,"73061":2095,"73062":0,"73063":0,"73064":-1,"73065":-1,"73066":-1,"73067":2170,"73068":0,"73069":0,"73070":-1,"73071":-1,"73072":-1,"73073":-1,"73074":0,"73075":2200,"73076":2075,"73077":0,"73078":0,"73079":2651,"73080":-1,"73081":2616,"73082":-1,"73083":0,"73084":0,"73085":102,"73086":16,"73087":0,"73088":833,"73089":0,"73090":0,"73091":833,"73092":-1,"73093":0,"73094":-1,"73095":0,"73096":-1,"73097":-1,"73098":-1,"73099":0,"73100":0,"73101":0,"73102":0,"73103":602,"73104":2587,"73105":0,"73106":-1,"73107":-1,"73108":2297,"73109":0,"73110":691,"73111":-1,"73112":2248,"73113":0,"73114":2018,"73115":-1,"73116":483,"73117":0,"73118":2354,"73119":43,"73120":0,"73121":0,"73122":-1,"73123":0,"73124":706,"73125":2081,"73126":0,"73127":0,"73128":0,"73129":2001,"73130":2269,"73131":0,"73132":-1,"73133":0,"73134":0,"73135":2635,"73136":2672,"73137":0,"73138":2261,"73139":0,"73140":-1,"73141":2655,"73142":2317,"73143":0,"73144":-1,"73145":-1,"73146":0,"73147":2544,"73148":0,"73149":-1,"73150":0,"73151":0,"73152":0,"73153":-1,"73154":2418,"73155":2566,"73156":-1,"73157":2347,"73158":-1,"73159":-1,"73160":0,"73161":-1,"73162":0,"73163":0,"73164":-1,"73165":0,"73166":0,"73167":2226,"73168":-1,"73169":0,"73170":0,"73171":0,"73172":0,"73173":0,"73174":-1,"73175":-1,"73176":2416,"73177":2269,"73178":0,"73179":0,"73180":0,"73181":0,"73182":8,"73183":2641,"73184":0,"73185":2257,"73186":0,"73187":-1,"73188":-1,"73189":-1,"73190":2124,"73191":2513,"73192":-1,"73193":2551,"73194":2091,"73195":-1,"73196":-1,"73197":-1,"73198":-1,"73199":0,"73200":2615,"73201":-1,"73202":2252,"73203":2310,"73204":0,"73205":0,"73206":0,"73207":0,"73208":0,"73209":-1,"73210":-1,"73211":-1,"73212":2222,"73213":0,"73214":-1,"73215":-1,"73216":-1,"73217":0,"73218":156,"73219":2333,"73220":2497,"73221":0,"73222":2183,"73223":0,"73224":2420,"73225":0,"73226":-1,"73227":0,"73228":2661,"73229":0,"73230":-1,"73231":0,"73232":2415,"73233":-1,"73234":0,"73235":2090,"73236":0,"73237":0,"73238":-1,"73239":2443,"73240":0,"73241":0,"73242":2180,"73243":2303,"73244":-1,"73245":0,"73246":0,"73247":2424,"73248":0,"73249":2205,"73250":-1,"73251":0,"73252":2174,"73253":313,"73254":0,"73255":0,"73256":0,"73257":153,"73258":0,"73259":0,"73260":544,"73261":-1,"73262":0,"73263":-1,"73264":34,"73265":-1,"73266":0,"73267":0,"73268":2113,"73269":-1,"73270":0,"73271":-1,"73272":0,"73273":2044,"73274":2446,"73275":2426,"73276":0,"73277":2270,"73278":-1,"73279":-1,"73280":0,"73281":-1,"73282":-1,"73283":-1,"73284":0,"73285":-1,"73286":0,"73287":2170,"73288":0,"73289":-1,"73290":-1,"73291":2211,"73292":-1,"73293":2175,"73294":0,"73295":0,"73296":-1,"73297":908,"73298":-1,"73299":2461,"73300":-1,"73301":2089,"73302":0,"73303":-1,"73304":0,"73305":2333,"73306":-1,"73307":0,"73308":-1,"73309":2564,"73310":-1,"73311":0,"73312":0,"73313":0,"73314":-1,"73315":0,"73316":0,"73317":2430,"73318":0,"73319":0,"73320":-1,"73321":-1,"73322":0,"73323":-1,"73324":2515,"73325":-1,"73326":2309,"73327":0,"73328":-1,"73329":-1,"73330":2584,"73331":0,"73332":837,"73333":-1,"73334":0,"73335":-1,"73336":-1,"73337":0,"73338":-1,"73339":-1,"73340":-1,"73341":-1,"73342":0,"73343":0,"73344":0,"73345":-1,"73346":0,"73347":2361,"73348":0,"73349":-1,"73350":0,"73351":-1,"73352":-1,"73353":0,"73354":0,"73355":-1,"73356":-1,"73357":0,"73358":0,"73359":-1,"73360":312,"73361":2136,"73362":-1,"73363":-1,"73364":0,"73365":-1,"73366":2510,"73367":-1,"73368":0,"73369":39,"73370":0,"73371":0,"73372":-1,"73373":237,"73374":0,"73375":0,"73376":0,"73377":2159,"73378":2412,"73379":2606,"73380":284,"73381":0,"73382":-1,"73383":-1,"73384":-1,"73385":2461,"73386":0,"73387":-1,"73388":-1,"73389":0,"73390":0,"73391":-1,"73392":0,"73393":0,"73394":0,"73395":0,"73396":0,"73397":0,"73398":-1,"73399":0,"73400":-1,"73401":0,"73402":0,"73403":-1,"73404":813,"73405":-1,"73406":0,"73407":-1,"73408":49,"73409":0,"73410":-1,"73411":0,"73412":0,"73413":0,"73414":2379,"73415":-1,"73416":0,"73417":-1,"73418":-1,"73419":-1,"73420":0,"73421":-1,"73422":2361,"73423":-1,"73424":0,"73425":-1,"73426":0,"73427":2140,"73428":0,"73429":-1,"73430":2529,"73431":0,"73432":0,"73433":-1,"73434":0,"73435":0,"73436":0,"73437":0,"73438":0,"73439":0,"73440":2115,"73441":0,"73442":2391,"73443":-1,"73444":0,"73445":-1,"73446":2510,"73447":2610,"73448":-1,"73449":0,"73450":2575,"73451":-1,"73452":0,"73453":-1,"73454":2233,"73455":0,"73456":-1,"73457":-1,"73458":2003,"73459":0,"73460":0,"73461":-1,"73462":2405,"73463":-1,"73464":0,"73465":2375,"73466":-1,"73467":0,"73468":0,"73469":-1,"73470":0,"73471":0,"73472":2370,"73473":2413,"73474":8,"73475":0,"73476":0,"73477":98,"73478":2029,"73479":2225,"73480":0,"73481":-1,"73482":0,"73483":0,"73484":2142,"73485":2409,"73486":2125,"73487":-1,"73488":-1,"73489":0,"73490":0,"73491":0,"73492":0,"73493":0,"73494":2517,"73495":-1,"73496":0,"73497":0,"73498":0,"73499":864,"73500":2166,"73501":0,"73502":-1,"73503":0,"73504":-1,"73505":0,"73506":2101,"73507":0,"73508":-1,"73509":2035,"73510":0,"73511":2189,"73512":0,"73513":0,"73514":0,"73515":2471,"73516":798,"73517":-1,"73518":2114,"73519":-1,"73520":0,"73521":0,"73522":-1,"73523":-1,"73524":0,"73525":0,"73526":0,"73527":-1,"73528":-1,"73529":2589,"73530":-1,"73531":2630,"73532":0,"73533":-1,"73534":2026,"73535":0,"73536":-1,"73537":-1,"73538":0,"73539":0,"73540":0,"73541":-1,"73542":0,"73543":0,"73544":0,"73545":0,"73546":2196,"73547":0,"73548":-1,"73549":0,"73550":0,"73551":0,"73552":0,"73553":-1,"73554":-1,"73555":-1,"73556":-1,"73557":-1,"73558":-1,"73559":584,"73560":0,"73561":554,"73562":0,"73563":-1,"73564":0,"73565":0,"73566":2069,"73567":2220,"73568":2227,"73569":2174,"73570":0,"73571":2513,"73572":0,"73573":-1,"73574":-1,"73575":0,"73576":0,"73577":2190,"73578":-1,"73579":-1,"73580":0,"73581":2366,"73582":2245,"73583":0,"73584":2408,"73585":2622,"73586":-1,"73587":0,"73588":449,"73589":-1,"73590":0,"73591":-1,"73592":0,"73593":0,"73594":2433,"73595":0,"73596":-1,"73597":0,"73598":0,"73599":-1,"73600":0,"73601":2087,"73602":-1,"73603":2590,"73604":0,"73605":0,"73606":-1,"73607":2382,"73608":0,"73609":-1,"73610":-1,"73611":0,"73612":-1,"73613":0,"73614":0,"73615":0,"73616":-1,"73617":0,"73618":0,"73619":-1,"73620":-1,"73621":-1,"73622":-1,"73623":0,"73624":0,"73625":-1,"73626":-1,"73627":-1,"73628":-1,"73629":0,"73630":1999,"73631":2337,"73632":0,"73633":0,"73634":0,"73635":0,"73636":2339,"73637":0,"73638":0,"73639":-1,"73640":0,"73641":0,"73642":0,"73643":2279,"73644":2655,"73645":0,"73646":0,"73647":0,"73648":0,"73649":0,"73650":0,"73651":-1,"73652":-1,"73653":108,"73654":2529,"73655":475,"73656":-1,"73657":0,"73658":2111,"73659":0,"73660":0,"73661":2350,"73662":0,"73663":0,"73664":-1,"73665":2496,"73666":-1,"73667":2648,"73668":0,"73669":0,"73670":1991,"73671":0,"73672":2343,"73673":-1,"73674":0,"73675":0,"73676":0,"73677":-1,"73678":-1,"73679":-1,"73680":2469,"73681":2186,"73682":-1,"73683":2359,"73684":-1,"73685":245,"73686":0,"73687":-1,"73688":0,"73689":-1,"73690":2051,"73691":0,"73692":0,"73693":2198,"73694":75,"73695":-1,"73696":0,"73697":-1,"73698":0,"73699":0,"73700":2619,"73701":-1,"73702":-1,"73703":2121,"73704":2128,"73705":-1,"73706":-1,"73707":0,"73708":0,"73709":0,"73710":2174,"73711":101,"73712":0,"73713":2517,"73714":2497,"73715":0,"73716":-1,"73717":0,"73718":0,"73719":2503,"73720":2060,"73721":0,"73722":-1,"73723":-1,"73724":2371,"73725":0,"73726":0,"73727":0,"73728":0,"73729":2319,"73730":0,"73731":0,"73732":0,"73733":448,"73734":-1,"73735":-1,"73736":0,"73737":-1,"73738":0,"73739":0,"73740":0,"73741":0,"73742":2410,"73743":0,"73744":0,"73745":-1,"73746":942,"73747":0,"73748":-1,"73749":-1,"73750":0,"73751":0,"73752":0,"73753":0,"73754":-1,"73755":-1,"73756":0,"73757":0,"73758":2662,"73759":2176,"73760":0,"73761":0,"73762":0,"73763":-1,"73764":0,"73765":-1,"73766":0,"73767":0,"73768":0,"73769":0,"73770":0,"73771":2038,"73772":2067,"73773":0,"73774":0,"73775":0,"73776":0,"73777":-1,"73778":-1,"73779":2560,"73780":-1,"73781":-1,"73782":-1,"73783":0,"73784":0,"73785":2628,"73786":29,"73787":-1,"73788":1,"73789":-1,"73790":2366,"73791":-1,"73792":0,"73793":0,"73794":-1,"73795":2229,"73796":-1,"73797":-1,"73798":2664,"73799":-1,"73800":0,"73801":-1,"73802":0,"73803":-1,"73804":46,"73805":412,"73806":0}} \ No newline at end of file diff --git a/individual_tv50_3.json b/individual_tv50_3.json new file mode 100644 index 0000000000000000000000000000000000000000..632c3ff60f28bc5e9cf015617bf71104b88b2ac2 --- /dev/null +++ b/individual_tv50_3.json @@ -0,0 +1 @@ +{"hhid":{"0":8397,"1":10687,"2":177,"3":571,"4":5469,"5":6160,"6":3119,"7":10993,"8":2213,"9":1749,"10":5012,"11":1473,"12":2115,"13":9607,"14":5311,"15":5419,"16":10476,"17":10874,"18":10543,"19":9165,"20":1041,"21":5993,"22":8387,"23":2932,"24":5014,"25":10734,"26":9146,"27":10897,"28":6999,"29":9956,"30":1507,"31":7287,"32":10734,"33":10624,"34":8739,"35":7282,"36":5351,"37":4707,"38":3251,"39":1797,"40":1067,"41":1916,"42":6064,"43":10557,"44":6769,"45":4373,"46":1389,"47":7951,"48":7172,"49":8032,"50":9207,"51":6015,"52":3602,"53":7016,"54":8135,"55":6965,"56":10330,"57":5587,"58":4891,"59":1849,"60":8958,"61":3917,"62":730,"63":8616,"64":5105,"65":6082,"66":5054,"67":6746,"68":7894,"69":10105,"70":7790,"71":5575,"72":3032,"73":7847,"74":10318,"75":9505,"76":4126,"77":1820,"78":4667,"79":5264,"80":6475,"81":6198,"82":8847,"83":3816,"84":7485,"85":5450,"86":9924,"87":10077,"88":10429,"89":4872,"90":7684,"91":8806,"92":2253,"93":9616,"94":1244,"95":4950,"96":814,"97":4621,"98":2898,"99":1955,"100":6206,"101":1758,"102":6162,"103":10584,"104":5925,"105":1207,"106":10431,"107":6565,"108":9316,"109":2376,"110":9599,"111":2703,"112":856,"113":5088,"114":9889,"115":1331,"116":6769,"117":3123,"118":699,"119":1296,"120":8012,"121":1678,"122":5605,"123":188,"124":10305,"125":2330,"126":5024,"127":2960,"128":5280,"129":8334,"130":7268,"131":2092,"132":9223,"133":7779,"134":8723,"135":937,"136":759,"137":1192,"138":3080,"139":6146,"140":8229,"141":4615,"142":7847,"143":7861,"144":10602,"145":7603,"146":10017,"147":4183,"148":6176,"149":5881,"150":1025,"151":1604,"152":646,"153":2093,"154":9187,"155":4810,"156":4081,"157":10103,"158":7867,"159":1186,"160":10656,"161":6588,"162":3419,"163":6960,"164":3640,"165":5506,"166":7467,"167":7193,"168":3199,"169":6600,"170":7285,"171":6037,"172":8775,"173":878,"174":1093,"175":9221,"176":872,"177":3856,"178":8149,"179":9020,"180":2998,"181":5089,"182":10584,"183":8043,"184":318,"185":6576,"186":8426,"187":1079,"188":4974,"189":2280,"190":10041,"191":7644,"192":9611,"193":5947,"194":8650,"195":230,"196":4066,"197":1745,"198":7900,"199":6786,"200":7276,"201":8392,"202":7907,"203":9477,"204":5268,"205":3271,"206":2067,"207":8552,"208":2152,"209":1240,"210":3160,"211":1255,"212":2997,"213":6312,"214":10305,"215":328,"216":6429,"217":8012,"218":3265,"219":3781,"220":4303,"221":4510,"222":5151,"223":7421,"224":1537,"225":609,"226":6905,"227":1825,"228":8487,"229":891,"230":483,"231":4751,"232":603,"233":5471,"234":2861,"235":2297,"236":6192,"237":4780,"238":5986,"239":9257,"240":1763,"241":9011,"242":7178,"243":109,"244":3276,"245":4288,"246":8706,"247":1868,"248":9534,"249":8858,"250":2910,"251":1871,"252":5221,"253":159,"254":7147,"255":8160,"256":6206,"257":8404,"258":4942,"259":2533,"260":10792,"261":5614,"262":2505,"263":4260,"264":6128,"265":10822,"266":347,"267":6252,"268":8966,"269":1652,"270":5017,"271":502,"272":10206,"273":9525,"274":10466,"275":6708,"276":9022,"277":3836,"278":5601,"279":10847,"280":595,"281":114,"282":5809,"283":7204,"284":8487,"285":8488,"286":9870,"287":7293,"288":8982,"289":792,"290":4340,"291":7172,"292":8206,"293":8256,"294":10345,"295":9370,"296":628,"297":8640,"298":9527,"299":1268,"300":8827,"301":2442,"302":3365,"303":6440,"304":2943,"305":6534,"306":10306,"307":986,"308":2670,"309":9241,"310":5003,"311":6269,"312":425,"313":3282,"314":2949,"315":7753,"316":318,"317":10554,"318":4348,"319":9054,"320":9603,"321":7290,"322":5752,"323":6979,"324":3139,"325":9049,"326":4006,"327":669,"328":3926,"329":922,"330":10289,"331":8963,"332":7054,"333":3513,"334":6695,"335":4778,"336":7858,"337":5440,"338":1909,"339":5368,"340":2628,"341":2947,"342":4055,"343":8758,"344":565,"345":3793,"346":2054,"347":9726,"348":6960,"349":109,"350":7742,"351":4869,"352":8562,"353":73,"354":7071,"355":9175,"356":8149,"357":8098,"358":1768,"359":1376,"360":264,"361":698,"362":4429,"363":8285,"364":10924,"365":6825,"366":4049,"367":3354,"368":6475,"369":4279,"370":8471,"371":9686,"372":1723,"373":4479,"374":2666,"375":8936,"376":4900,"377":9726,"378":1049,"379":7503,"380":10935,"381":9314,"382":8102,"383":757,"384":10321,"385":2968,"386":3747,"387":2811,"388":7942,"389":5887,"390":1706,"391":10018,"392":5654,"393":6411,"394":6182,"395":8996,"396":560,"397":5926,"398":1989,"399":5497,"400":9157,"401":3066,"402":1782,"403":7049,"404":6052,"405":6761,"406":493,"407":1718,"408":10249,"409":6496,"410":8269,"411":2352,"412":5144,"413":2885,"414":6053,"415":5445,"416":3998,"417":3019,"418":8872,"419":10727,"420":3257,"421":6558,"422":3691,"423":6921,"424":10775,"425":1010,"426":3908,"427":898,"428":8363,"429":1172,"430":7442,"431":3668,"432":9245,"433":6972,"434":2795,"435":5693,"436":4996,"437":9084,"438":5043,"439":2707,"440":1652,"441":95,"442":4819,"443":2537,"444":8707,"445":1899,"446":1535,"447":9396,"448":9476,"449":4792,"450":10097,"451":4014,"452":1723,"453":8968,"454":481,"455":9938,"456":5473,"457":4779,"458":5185,"459":10487,"460":2605,"461":1447,"462":3504,"463":10875,"464":4447,"465":9109,"466":5294,"467":6517,"468":8828,"469":6218,"470":4485,"471":3769,"472":9800,"473":6982,"474":8200,"475":3364,"476":5774,"477":9317,"478":9251,"479":10205,"480":7169,"481":3920,"482":7831,"483":4931,"484":6332,"485":1646,"486":6532,"487":3749,"488":8227,"489":5945,"490":1067,"491":10315,"492":3919,"493":8208,"494":175,"495":1956,"496":3060,"497":2052,"498":6544,"499":3714,"500":3338,"501":6098,"502":4078,"503":4140,"504":8205,"505":8395,"506":9463,"507":6234,"508":8519,"509":9328,"510":1356,"511":3675,"512":3028,"513":9673,"514":9461,"515":7243,"516":6822,"517":7376,"518":3490,"519":190,"520":3731,"521":8370,"522":4675,"523":9396,"524":7155,"525":7815,"526":6496,"527":883,"528":6047,"529":7762,"530":541,"531":5453,"532":6253,"533":9892,"534":10430,"535":636,"536":774,"537":9191,"538":1016,"539":7389,"540":676,"541":8285,"542":160,"543":2201,"544":10245,"545":10255,"546":10960,"547":618,"548":2737,"549":9447,"550":4815,"551":1557,"552":4537,"553":4362,"554":1989,"555":4955,"556":2,"557":4221,"558":1578,"559":8981,"560":9436,"561":10114,"562":1897,"563":10037,"564":472,"565":8126,"566":1378,"567":6080,"568":4157,"569":6986,"570":8165,"571":7556,"572":10676,"573":4388,"574":8107,"575":9468,"576":4694,"577":3017,"578":780,"579":10734,"580":8197,"581":6287,"582":6579,"583":8855,"584":8468,"585":5061,"586":7939,"587":5026,"588":2849,"589":742,"590":3958,"591":9084,"592":10461,"593":722,"594":8927,"595":10055,"596":1443,"597":10796,"598":4804,"599":2820,"600":3169,"601":7138,"602":8456,"603":2723,"604":3168,"605":9025,"606":10934,"607":9140,"608":3760,"609":5738,"610":1862,"611":6445,"612":4685,"613":2612,"614":9808,"615":6800,"616":5833,"617":1338,"618":7823,"619":9403,"620":4648,"621":6595,"622":5420,"623":4265,"624":1722,"625":6522,"626":3218,"627":9167,"628":298,"629":5787,"630":131,"631":6471,"632":5045,"633":9205,"634":239,"635":9461,"636":7983,"637":1263,"638":8038,"639":6889,"640":8977,"641":5295,"642":5867,"643":7909,"644":1736,"645":3820,"646":4332,"647":7101,"648":789,"649":5811,"650":3645,"651":9322,"652":9506,"653":7962,"654":3053,"655":864,"656":3649,"657":6021,"658":1736,"659":404,"660":803,"661":6466,"662":2786,"663":9284,"664":8557,"665":8167,"666":6058,"667":2550,"668":10268,"669":6169,"670":3275,"671":5970,"672":4001,"673":3308,"674":468,"675":1751,"676":10932,"677":7636,"678":7481,"679":9205,"680":2080,"681":3318,"682":4186,"683":6219,"684":4658,"685":5140,"686":4912,"687":2554,"688":1341,"689":10185,"690":961,"691":10314,"692":10385,"693":4815,"694":4138,"695":8714,"696":9628,"697":2620,"698":1325,"699":3670,"700":7296,"701":3487,"702":3550,"703":5012,"704":3562,"705":199,"706":4571,"707":56,"708":7926,"709":1137,"710":9076,"711":10976,"712":2407,"713":2246,"714":261,"715":4038,"716":3281,"717":8637,"718":5519,"719":10838,"720":8979,"721":112,"722":7681,"723":7712,"724":6151,"725":411,"726":9562,"727":2941,"728":8003,"729":7047,"730":3038,"731":7498,"732":8223,"733":9679,"734":131,"735":2867,"736":8648,"737":3401,"738":8014,"739":2922,"740":1042,"741":7972,"742":5204,"743":5384,"744":10604,"745":2394,"746":4386,"747":5558,"748":5324,"749":1394,"750":514,"751":5253,"752":7853,"753":10596,"754":7744,"755":5841,"756":4690,"757":4608,"758":5441,"759":7211,"760":9126,"761":431,"762":2797,"763":9407,"764":7810,"765":9825,"766":7873,"767":6412,"768":2379,"769":1839,"770":6368,"771":6606,"772":1388,"773":3634,"774":1028,"775":4993,"776":4851,"777":7811,"778":6117,"779":184,"780":5554,"781":3735,"782":2362,"783":10137,"784":2403,"785":5315,"786":1371,"787":8942,"788":6377,"789":3604,"790":2251,"791":10394,"792":4408,"793":9537,"794":5226,"795":10336,"796":4268,"797":9908,"798":5809,"799":353,"800":2710,"801":8925,"802":4272,"803":6752,"804":6575,"805":1589,"806":5301,"807":2006,"808":6052,"809":10680,"810":9026,"811":8867,"812":847,"813":4344,"814":7019,"815":985,"816":1196,"817":3421,"818":1783,"819":989,"820":4290,"821":8928,"822":9938,"823":10113,"824":8082,"825":2272,"826":3800,"827":4282,"828":1982,"829":3291,"830":772,"831":6114,"832":9461,"833":2332,"834":575,"835":2355,"836":9254,"837":10988,"838":82,"839":2423,"840":5356,"841":5710,"842":8789,"843":145,"844":8294,"845":2923,"846":2131,"847":4706,"848":2333,"849":5033,"850":10662,"851":2942,"852":532,"853":6026,"854":2751,"855":170,"856":8574,"857":6193,"858":1042,"859":8821,"860":9864,"861":530,"862":3278,"863":4835,"864":10113,"865":3296,"866":7147,"867":7636,"868":405,"869":1061,"870":4784,"871":7856,"872":2200,"873":2026,"874":2260,"875":6296,"876":1465,"877":2002,"878":8525,"879":6567,"880":6074,"881":5459,"882":8896,"883":1647,"884":3764,"885":1628,"886":2659,"887":2586,"888":2759,"889":6973,"890":6390,"891":4257,"892":9893,"893":1073,"894":10909,"895":2060,"896":8434,"897":1887,"898":5202,"899":7799,"900":776,"901":1265,"902":3814,"903":6669,"904":1167,"905":7843,"906":7522,"907":10547,"908":667,"909":4090,"910":8582,"911":3674,"912":201,"913":1913,"914":797,"915":10481,"916":4774,"917":2397,"918":3115,"919":7812,"920":10605,"921":10334,"922":363,"923":7968,"924":7156,"925":10266,"926":10935,"927":1108,"928":332,"929":8101,"930":7043,"931":10980,"932":8649,"933":7277,"934":5083,"935":1814,"936":3892,"937":3914,"938":8969,"939":10218,"940":1579,"941":7787,"942":4494,"943":6329,"944":8470,"945":4369,"946":5824,"947":6785,"948":3987,"949":2351,"950":2344,"951":886,"952":22,"953":4673,"954":5637,"955":10371,"956":8583,"957":9413,"958":7852,"959":7808,"960":7119,"961":4606,"962":9321,"963":1124,"964":400,"965":3394,"966":8885,"967":3897,"968":8156,"969":4580,"970":6927,"971":10117,"972":977,"973":5034,"974":10950,"975":8019,"976":8840,"977":10381,"978":1275,"979":10235,"980":5110,"981":1639,"982":10672,"983":8672,"984":3043,"985":499,"986":10158,"987":5880,"988":5025,"989":557,"990":921,"991":2250,"992":1150,"993":4706,"994":8352,"995":5122,"996":6253,"997":10576,"998":8953,"999":23,"1000":3631,"1001":4616,"1002":3797,"1003":8060,"1004":3113,"1005":2151,"1006":8682,"1007":6514,"1008":8410,"1009":3514,"1010":10424,"1011":9767,"1012":1242,"1013":6418,"1014":5464,"1015":377,"1016":6600,"1017":2898,"1018":2850,"1019":4868,"1020":5029,"1021":8656,"1022":6255,"1023":4641,"1024":2383,"1025":9187,"1026":1033,"1027":3383,"1028":7348,"1029":2337,"1030":1049,"1031":6543,"1032":869,"1033":5293,"1034":1918,"1035":10609,"1036":481,"1037":5505,"1038":8627,"1039":5908,"1040":6064,"1041":8366,"1042":9397,"1043":9305,"1044":3823,"1045":2769,"1046":3072,"1047":2386,"1048":7853,"1049":9474,"1050":3144,"1051":8893,"1052":7616,"1053":1419,"1054":1813,"1055":5798,"1056":3008,"1057":7915,"1058":416,"1059":3284,"1060":1373,"1061":2616,"1062":7339,"1063":6501,"1064":8460,"1065":9869,"1066":10138,"1067":5550,"1068":555,"1069":1692,"1070":4914,"1071":10739,"1072":6084,"1073":2819,"1074":3222,"1075":5448,"1076":10748,"1077":8127,"1078":6491,"1079":643,"1080":5720,"1081":8795,"1082":3794,"1083":4958,"1084":671,"1085":10669,"1086":8880,"1087":3119,"1088":8411,"1089":3437,"1090":2992,"1091":8469,"1092":8249,"1093":7474,"1094":307,"1095":5706,"1096":2425,"1097":9360,"1098":4725,"1099":8307,"1100":10887,"1101":1508,"1102":8038,"1103":8840,"1104":2538,"1105":19,"1106":1116,"1107":9871,"1108":816,"1109":4309,"1110":6509,"1111":2968,"1112":5677,"1113":3915,"1114":5229,"1115":498,"1116":122,"1117":10,"1118":9302,"1119":7204,"1120":7486,"1121":2105,"1122":5142,"1123":6868,"1124":9654,"1125":8907,"1126":6737,"1127":1179,"1128":3891,"1129":2424,"1130":7691,"1131":3959,"1132":315,"1133":3332,"1134":3169,"1135":826,"1136":6014,"1137":9513,"1138":7857,"1139":3645,"1140":6112,"1141":6899,"1142":3020,"1143":2171,"1144":4251,"1145":8176,"1146":10180,"1147":2914,"1148":3999,"1149":2459,"1150":9698,"1151":6843,"1152":10454,"1153":4126,"1154":8260,"1155":10763,"1156":7190,"1157":5780,"1158":10778,"1159":7933,"1160":7775,"1161":346,"1162":3768,"1163":926,"1164":3822,"1165":7818,"1166":542,"1167":3974,"1168":7220,"1169":669,"1170":9813,"1171":3918,"1172":5828,"1173":10009,"1174":1948,"1175":9756,"1176":9957,"1177":10256,"1178":4488,"1179":8513,"1180":1788,"1181":5460,"1182":5268,"1183":10331,"1184":5562,"1185":8146,"1186":8117,"1187":3646,"1188":3599,"1189":10366,"1190":5666,"1191":6292,"1192":2284,"1193":67,"1194":4370,"1195":3115,"1196":6665,"1197":3292,"1198":6401,"1199":3425,"1200":1202,"1201":1232,"1202":4151,"1203":8322,"1204":5131,"1205":1391,"1206":334,"1207":1914,"1208":9019,"1209":3395,"1210":3986,"1211":8117,"1212":2437,"1213":8174,"1214":3965,"1215":10735,"1216":7816,"1217":9112,"1218":3303,"1219":10628,"1220":6102,"1221":2531,"1222":8647,"1223":6340,"1224":3217,"1225":992,"1226":7504,"1227":4350,"1228":10967,"1229":6288,"1230":2863,"1231":8148,"1232":7177,"1233":3172,"1234":8640,"1235":8467,"1236":1496,"1237":3550,"1238":3073,"1239":7895,"1240":9200,"1241":3252,"1242":1033,"1243":2038,"1244":10072,"1245":349,"1246":6118,"1247":5833,"1248":9573,"1249":9379,"1250":8378,"1251":9797,"1252":4091,"1253":6296,"1254":10462,"1255":5428,"1256":9211,"1257":5176,"1258":5487,"1259":8635,"1260":1146,"1261":7903,"1262":7652,"1263":2775,"1264":2870,"1265":9216,"1266":4899,"1267":8258,"1268":3283,"1269":7616,"1270":5413,"1271":2765,"1272":1437,"1273":6877,"1274":5382,"1275":1513,"1276":6288,"1277":1537,"1278":8299,"1279":5187,"1280":9583,"1281":3975,"1282":7364,"1283":5243,"1284":8158,"1285":6686,"1286":9186,"1287":5412,"1288":10179,"1289":2093,"1290":1769,"1291":9767,"1292":2864,"1293":8544,"1294":3440,"1295":2955,"1296":10681,"1297":4626,"1298":6141,"1299":5554,"1300":6435,"1301":4467,"1302":2861,"1303":9700,"1304":1169,"1305":2947,"1306":5019,"1307":6142,"1308":10245,"1309":8496,"1310":8304,"1311":5981,"1312":10334,"1313":9729,"1314":8733,"1315":358,"1316":6444,"1317":9452,"1318":8312,"1319":2819,"1320":8906,"1321":970,"1322":2186,"1323":2061,"1324":1921,"1325":10549,"1326":1470,"1327":9796,"1328":628,"1329":4060,"1330":10240,"1331":5626,"1332":2607,"1333":9049,"1334":2058,"1335":5584,"1336":10061,"1337":99,"1338":8725,"1339":665,"1340":8660,"1341":3558,"1342":359,"1343":5947,"1344":5063,"1345":2416,"1346":2113,"1347":3977,"1348":8340,"1349":3260,"1350":10732,"1351":7082,"1352":5082,"1353":1322,"1354":10923,"1355":1750,"1356":9982,"1357":8220,"1358":6000,"1359":4982,"1360":1583,"1361":221,"1362":7304,"1363":8167,"1364":7888,"1365":7189,"1366":5639,"1367":5773,"1368":6199,"1369":4031,"1370":7519,"1371":8198,"1372":10655,"1373":6908,"1374":10527,"1375":1208,"1376":5220,"1377":1042,"1378":5829,"1379":4922,"1380":2586,"1381":3034,"1382":6246,"1383":3554,"1384":1022,"1385":5199,"1386":7600,"1387":4005,"1388":6136,"1389":745,"1390":8911,"1391":6294,"1392":2383,"1393":3539,"1394":3326,"1395":2719,"1396":3453,"1397":9552,"1398":7670,"1399":3522,"1400":6163,"1401":3307,"1402":8441,"1403":4360,"1404":4250,"1405":6980,"1406":10250,"1407":3286,"1408":2492,"1409":10098,"1410":4510,"1411":7112,"1412":2752,"1413":886,"1414":1430,"1415":3973,"1416":737,"1417":7097,"1418":4383,"1419":3922,"1420":6664,"1421":2950,"1422":5973,"1423":4866,"1424":4858,"1425":10206,"1426":10990,"1427":115,"1428":10142,"1429":8340,"1430":2738,"1431":2473,"1432":143,"1433":5950,"1434":8216,"1435":10720,"1436":2976,"1437":643,"1438":10152,"1439":103,"1440":9312,"1441":5987,"1442":1134,"1443":8308,"1444":164,"1445":7337,"1446":6912,"1447":9897,"1448":3691,"1449":906,"1450":7127,"1451":6936,"1452":8850,"1453":3211,"1454":8989,"1455":6796,"1456":2458,"1457":812,"1458":10197,"1459":9126,"1460":9491,"1461":502,"1462":2740,"1463":3109,"1464":10332,"1465":5606,"1466":10718,"1467":4466,"1468":4186,"1469":6485,"1470":3363,"1471":550,"1472":4621,"1473":2859,"1474":3723,"1475":10173,"1476":8848,"1477":8099,"1478":2772,"1479":785,"1480":8898,"1481":3942,"1482":3352,"1483":8820,"1484":2018,"1485":4118,"1486":7536,"1487":439,"1488":10532,"1489":6185,"1490":8337,"1491":4600,"1492":3258,"1493":2144,"1494":9695,"1495":6057,"1496":8137,"1497":6602,"1498":4115,"1499":3404,"1500":815,"1501":9452,"1502":623,"1503":1299,"1504":8807,"1505":6529,"1506":7717,"1507":4007,"1508":3066,"1509":880,"1510":4332,"1511":4815,"1512":5763,"1513":10033,"1514":5884,"1515":9341,"1516":1806,"1517":3633,"1518":2232,"1519":7462,"1520":517,"1521":6269,"1522":3494,"1523":2586,"1524":5921,"1525":3804,"1526":6990,"1527":7986,"1528":310,"1529":8116,"1530":7660,"1531":2567,"1532":8861,"1533":9356,"1534":10825,"1535":2349,"1536":5464,"1537":9154,"1538":9241,"1539":8816,"1540":6817,"1541":1627,"1542":2054,"1543":2238,"1544":8199,"1545":204,"1546":6900,"1547":4766,"1548":5390,"1549":3668,"1550":4303,"1551":1078,"1552":4954,"1553":10330,"1554":1292,"1555":4217,"1556":1657,"1557":2208,"1558":10114,"1559":4324,"1560":9760,"1561":8835,"1562":4189,"1563":483,"1564":5988,"1565":5923,"1566":10682,"1567":1369,"1568":6187,"1569":758,"1570":2847,"1571":7003,"1572":5671,"1573":6775,"1574":5628,"1575":6413,"1576":8342,"1577":2791,"1578":657,"1579":1407,"1580":8664,"1581":7234,"1582":4943,"1583":5891,"1584":10255,"1585":160,"1586":8935,"1587":9548,"1588":2219,"1589":7875,"1590":3881,"1591":7516,"1592":10453,"1593":10854,"1594":9107,"1595":4823,"1596":9800,"1597":4146,"1598":502,"1599":4684,"1600":5216,"1601":5480,"1602":1892,"1603":3817,"1604":10908,"1605":493,"1606":3833,"1607":4308,"1608":1294,"1609":5638,"1610":5312,"1611":366,"1612":10229,"1613":5981,"1614":556,"1615":2422,"1616":4311,"1617":4376,"1618":9770,"1619":7444,"1620":938,"1621":1309,"1622":1741,"1623":565,"1624":1985,"1625":5637,"1626":10275,"1627":4017,"1628":10876,"1629":4135,"1630":4293,"1631":1866,"1632":3597,"1633":5220,"1634":8365,"1635":721,"1636":4535,"1637":5585,"1638":6043,"1639":4972,"1640":10328,"1641":5180,"1642":2589,"1643":4054,"1644":591,"1645":8734,"1646":4147,"1647":3144,"1648":5970,"1649":9567,"1650":8938,"1651":834,"1652":5542,"1653":8980,"1654":2712,"1655":6500,"1656":8669,"1657":3276,"1658":8130,"1659":4484,"1660":10274,"1661":794,"1662":7967,"1663":1554,"1664":350,"1665":4833,"1666":7101,"1667":288,"1668":2329,"1669":10233,"1670":1270,"1671":2826,"1672":10964,"1673":625,"1674":10914,"1675":590,"1676":3148,"1677":5667,"1678":5093,"1679":1393,"1680":2307,"1681":6126,"1682":9853,"1683":485,"1684":5775,"1685":5080,"1686":8186,"1687":3489,"1688":284,"1689":5031,"1690":1743,"1691":5377,"1692":5599,"1693":8743,"1694":9672,"1695":8336,"1696":29,"1697":8730,"1698":4752,"1699":3132,"1700":9526,"1701":1055,"1702":3893,"1703":1186,"1704":1345,"1705":8274,"1706":1996,"1707":8152,"1708":5158,"1709":9058,"1710":9623,"1711":5925,"1712":3899,"1713":527,"1714":1826,"1715":10541,"1716":8002,"1717":10287,"1718":9498,"1719":5526,"1720":9176,"1721":3274,"1722":10309,"1723":390,"1724":5633,"1725":1278,"1726":5867,"1727":4795,"1728":6730,"1729":2102,"1730":6700,"1731":6515,"1732":5483,"1733":4195,"1734":7394,"1735":7874,"1736":3405,"1737":2962,"1738":3509,"1739":6173,"1740":4172,"1741":7070,"1742":8058,"1743":943,"1744":2983,"1745":7432,"1746":5580,"1747":7160,"1748":1962,"1749":7475,"1750":5064,"1751":9425,"1752":397,"1753":5916,"1754":4218,"1755":9070,"1756":3487,"1757":6838,"1758":3478,"1759":9003,"1760":8689,"1761":10034,"1762":1133,"1763":9288,"1764":10644,"1765":7588,"1766":6273,"1767":10111,"1768":10769,"1769":1475,"1770":3459,"1771":3418,"1772":1842,"1773":10225,"1774":4947,"1775":9793,"1776":9262,"1777":3987,"1778":4970,"1779":6426,"1780":6553,"1781":3433,"1782":8868,"1783":418,"1784":9538,"1785":862,"1786":8778,"1787":2287,"1788":1140,"1789":5299,"1790":7983,"1791":8768,"1792":5236,"1793":2028,"1794":7166,"1795":6351,"1796":6678,"1797":4348,"1798":8950,"1799":8675,"1800":10441,"1801":3755,"1802":686,"1803":10863,"1804":1404,"1805":2605,"1806":6129,"1807":7011,"1808":8276,"1809":6244,"1810":7512,"1811":6530,"1812":2551,"1813":5537,"1814":2698,"1815":7729,"1816":794,"1817":4715,"1818":3384,"1819":366,"1820":7825,"1821":4239,"1822":3514,"1823":10884,"1824":7507,"1825":4697,"1826":6083,"1827":10540,"1828":3873,"1829":2593,"1830":10314,"1831":2901,"1832":5593,"1833":6277,"1834":5235,"1835":243,"1836":3765,"1837":7217,"1838":6935,"1839":1888,"1840":3114,"1841":9487,"1842":4763,"1843":6927,"1844":3219,"1845":6005,"1846":5265,"1847":6449,"1848":2019,"1849":7646,"1850":7875,"1851":61,"1852":2560,"1853":6338,"1854":5974,"1855":2664,"1856":6435,"1857":2514,"1858":4634,"1859":2570,"1860":556,"1861":172,"1862":611,"1863":6134,"1864":10041,"1865":7611,"1866":4734,"1867":584,"1868":6885,"1869":5562,"1870":4292,"1871":6121,"1872":9409,"1873":10217,"1874":702,"1875":7736,"1876":5441,"1877":218,"1878":3994,"1879":4366,"1880":6194,"1881":4916,"1882":670,"1883":7442,"1884":6617,"1885":3374,"1886":4339,"1887":2,"1888":3182,"1889":3538,"1890":6527,"1891":6017,"1892":5761,"1893":1053,"1894":2254,"1895":10015,"1896":7758,"1897":9349,"1898":3483,"1899":10174,"1900":3031,"1901":8924,"1902":5395,"1903":3171,"1904":2795,"1905":1926,"1906":650,"1907":1877,"1908":6796,"1909":9081,"1910":429,"1911":9794,"1912":2603,"1913":7404,"1914":24,"1915":399,"1916":10226,"1917":2382,"1918":10374,"1919":508,"1920":9793,"1921":736,"1922":7700,"1923":7989,"1924":10615,"1925":7319,"1926":8659,"1927":2207,"1928":9599,"1929":8696,"1930":1673,"1931":9850,"1932":9976,"1933":9405,"1934":375,"1935":7774,"1936":1814,"1937":8855,"1938":6184,"1939":8925,"1940":1950,"1941":8159,"1942":1855,"1943":320,"1944":5023,"1945":8354,"1946":8550,"1947":450,"1948":1688,"1949":10501,"1950":1838,"1951":6836,"1952":637,"1953":1445,"1954":9503,"1955":2370,"1956":4469,"1957":3240,"1958":9444,"1959":9944,"1960":505,"1961":8899,"1962":6399,"1963":6362,"1964":9224,"1965":6897,"1966":5720,"1967":8994,"1968":3604,"1969":6823,"1970":285,"1971":4535,"1972":499,"1973":217,"1974":5928,"1975":8953,"1976":191,"1977":6575,"1978":3934,"1979":5965,"1980":9876,"1981":3770,"1982":10624,"1983":6592,"1984":10503,"1985":2008,"1986":2649,"1987":4793,"1988":6171,"1989":9206,"1990":5041,"1991":9644,"1992":9286,"1993":5910,"1994":1549,"1995":1899,"1996":832,"1997":10276,"1998":2686,"1999":8764,"2000":10805,"2001":10585,"2002":541,"2003":3547,"2004":4619,"2005":2998,"2006":1535,"2007":4110,"2008":2147,"2009":9002,"2010":10219,"2011":583,"2012":5891,"2013":1898,"2014":8022,"2015":548,"2016":284,"2017":5890,"2018":10224,"2019":8599,"2020":3785,"2021":1098,"2022":9165,"2023":10234,"2024":8025,"2025":9521,"2026":4610,"2027":5883,"2028":7759,"2029":5300,"2030":6005,"2031":9562,"2032":4310,"2033":9675,"2034":6781,"2035":1005,"2036":4003,"2037":3097,"2038":8218,"2039":7402,"2040":10337,"2041":4081,"2042":10132,"2043":2679,"2044":1655,"2045":8650,"2046":3579,"2047":2661,"2048":8752,"2049":619,"2050":10657,"2051":2921,"2052":6307,"2053":6383,"2054":7651,"2055":5516,"2056":7898,"2057":521,"2058":5150,"2059":1452,"2060":7915,"2061":1702,"2062":8424,"2063":5974,"2064":9372,"2065":8084,"2066":3984,"2067":3969,"2068":961,"2069":10837,"2070":3866,"2071":2678,"2072":7523,"2073":570,"2074":7858,"2075":5308,"2076":6685,"2077":9201,"2078":3534,"2079":4819,"2080":6459,"2081":5924,"2082":3478,"2083":7743,"2084":8794,"2085":10271,"2086":10692,"2087":910,"2088":2523,"2089":2182,"2090":4661,"2091":5833,"2092":9790,"2093":4763,"2094":814,"2095":3047,"2096":5530,"2097":3055,"2098":8489,"2099":474,"2100":9671,"2101":10384,"2102":2917,"2103":4771,"2104":952,"2105":3830,"2106":936,"2107":466,"2108":223,"2109":8132,"2110":166,"2111":5919,"2112":2923,"2113":1287,"2114":7822,"2115":10411,"2116":7441,"2117":976,"2118":5984,"2119":9713,"2120":10207,"2121":1492,"2122":9686,"2123":270,"2124":25,"2125":5391,"2126":1333,"2127":1157,"2128":1470,"2129":4076,"2130":2148,"2131":2734,"2132":4159,"2133":6041,"2134":4866,"2135":4714,"2136":5664,"2137":9557,"2138":1678,"2139":6872,"2140":8142,"2141":268,"2142":3073,"2143":1205,"2144":8554,"2145":7505,"2146":1374,"2147":7335,"2148":3351,"2149":8947,"2150":10238,"2151":6708,"2152":2032,"2153":6096,"2154":6458,"2155":2482,"2156":500,"2157":7424,"2158":9140,"2159":3280,"2160":10583,"2161":7814,"2162":5620,"2163":5092,"2164":1366,"2165":943,"2166":501,"2167":2208,"2168":2343,"2169":8957,"2170":7905,"2171":10524,"2172":4934,"2173":673,"2174":541,"2175":10945,"2176":727,"2177":268,"2178":5381,"2179":822,"2180":10253,"2181":9908,"2182":6328,"2183":761,"2184":10660,"2185":6405,"2186":7673,"2187":1360,"2188":2582,"2189":9488,"2190":3950,"2191":9720,"2192":10062,"2193":7675,"2194":4770,"2195":9933,"2196":1146,"2197":2138,"2198":6136,"2199":2026,"2200":8897,"2201":3356,"2202":1455,"2203":1853,"2204":9124,"2205":1025,"2206":3819,"2207":3111,"2208":2818,"2209":256,"2210":7868,"2211":5135,"2212":1042,"2213":5311,"2214":9674,"2215":8661,"2216":2810,"2217":4496,"2218":4980,"2219":4776,"2220":1551,"2221":9556,"2222":6483,"2223":1434,"2224":5681,"2225":4387,"2226":5183,"2227":5116,"2228":9772,"2229":8371,"2230":2858,"2231":2835,"2232":9199,"2233":2426,"2234":2322,"2235":10316,"2236":6914,"2237":3827,"2238":3352,"2239":6567,"2240":9629,"2241":10629,"2242":7976,"2243":8194,"2244":6462,"2245":10101,"2246":9389,"2247":5382,"2248":6504,"2249":4980,"2250":3854,"2251":1716,"2252":6756,"2253":248,"2254":133,"2255":1019,"2256":10129,"2257":7952,"2258":461,"2259":10025,"2260":245,"2261":129,"2262":5502,"2263":5236,"2264":7304,"2265":3682,"2266":865,"2267":6901,"2268":4343,"2269":1263,"2270":2270,"2271":1674,"2272":7685,"2273":8339,"2274":8702,"2275":4381,"2276":3437,"2277":276,"2278":6732,"2279":10138,"2280":7075,"2281":5831,"2282":652,"2283":10844,"2284":10214,"2285":9834,"2286":1985,"2287":3201,"2288":9164,"2289":1132,"2290":2361,"2291":8396,"2292":6998,"2293":6373,"2294":2645,"2295":2375,"2296":2216,"2297":9084,"2298":7399,"2299":3729,"2300":6758,"2301":5862,"2302":7621,"2303":9543,"2304":9350,"2305":8455,"2306":7274,"2307":136,"2308":1341,"2309":1349,"2310":7568,"2311":9939,"2312":8348,"2313":7920,"2314":180,"2315":3495,"2316":6696,"2317":3085,"2318":3125,"2319":2578,"2320":5495,"2321":4820,"2322":2813,"2323":10651,"2324":902,"2325":8629,"2326":8375,"2327":1798,"2328":10512,"2329":9716,"2330":9527,"2331":8332,"2332":6068,"2333":4895,"2334":2227,"2335":8150,"2336":683,"2337":1398,"2338":3015,"2339":8252,"2340":10219,"2341":1084,"2342":251,"2343":4184,"2344":10175,"2345":8788,"2346":3024,"2347":6627,"2348":6746,"2349":5506,"2350":8925,"2351":7871,"2352":6763,"2353":10652,"2354":5814,"2355":3174,"2356":7910,"2357":5322,"2358":4933,"2359":2573,"2360":3174,"2361":2133,"2362":7781,"2363":9779,"2364":2819,"2365":10377,"2366":4851,"2367":8160,"2368":1991,"2369":8246,"2370":8502,"2371":5393,"2372":8220,"2373":2968,"2374":6491,"2375":6249,"2376":7801,"2377":10078,"2378":81,"2379":3563,"2380":1312,"2381":7058,"2382":6380,"2383":7129,"2384":1859,"2385":10703,"2386":9909,"2387":8914,"2388":6122,"2389":7060,"2390":5445,"2391":10867,"2392":4210,"2393":529,"2394":7014,"2395":2207,"2396":512,"2397":10727,"2398":10794,"2399":5467,"2400":6840,"2401":6665,"2402":2257,"2403":5268,"2404":748,"2405":5501,"2406":1023,"2407":4741,"2408":113,"2409":4219,"2410":1106,"2411":7530,"2412":3039,"2413":7036,"2414":9722,"2415":5438,"2416":7599,"2417":3581,"2418":101,"2419":6702,"2420":4742,"2421":10834,"2422":4737,"2423":10247,"2424":2957,"2425":9932,"2426":4069,"2427":8971,"2428":8215,"2429":2788,"2430":5713,"2431":5461,"2432":7316,"2433":9741,"2434":1010,"2435":2170,"2436":10796,"2437":2813,"2438":9111,"2439":1846,"2440":9452,"2441":4093,"2442":8784,"2443":3721,"2444":9220,"2445":8326,"2446":5267,"2447":4843,"2448":59,"2449":6429,"2450":6690,"2451":3322,"2452":4951,"2453":1302,"2454":269,"2455":5809,"2456":6938,"2457":10422,"2458":794,"2459":6437,"2460":1166,"2461":2012,"2462":5152,"2463":2918,"2464":7610,"2465":6644,"2466":7707,"2467":7482,"2468":5568,"2469":6500,"2470":10989,"2471":7462,"2472":5179,"2473":4371,"2474":5040,"2475":868,"2476":2637,"2477":10200,"2478":1752,"2479":7546,"2480":503,"2481":2760,"2482":10916,"2483":4262,"2484":4935,"2485":7318,"2486":7999,"2487":5534,"2488":7834,"2489":4095,"2490":6914,"2491":3334,"2492":7898,"2493":4462,"2494":6669,"2495":6330,"2496":572,"2497":6735,"2498":7985,"2499":5213,"2500":5404,"2501":8531,"2502":1229,"2503":4630,"2504":5909,"2505":7071,"2506":2120,"2507":545,"2508":2087,"2509":2527,"2510":6582,"2511":6243,"2512":7308,"2513":1264,"2514":2104,"2515":5227,"2516":3792,"2517":3661,"2518":5911,"2519":6480,"2520":238,"2521":413,"2522":231,"2523":7053,"2524":9418,"2525":6858,"2526":7459,"2527":8636,"2528":4599,"2529":1860,"2530":5826,"2531":5624,"2532":8095,"2533":7427,"2534":8253,"2535":1936,"2536":10263,"2537":5075,"2538":1687,"2539":6010,"2540":3777,"2541":2376,"2542":2327,"2543":5655,"2544":6548,"2545":7914,"2546":9842,"2547":25,"2548":7866,"2549":7257,"2550":4581,"2551":3103,"2552":4656,"2553":10048,"2554":3299,"2555":125,"2556":5432,"2557":6559,"2558":674,"2559":5949,"2560":6676,"2561":7904,"2562":6685,"2563":7739,"2564":4529,"2565":5827,"2566":821,"2567":5244,"2568":8056,"2569":5346,"2570":4466,"2571":1948,"2572":3315,"2573":5256,"2574":204,"2575":9497,"2576":6406,"2577":9383,"2578":1537,"2579":8380,"2580":6681,"2581":7294,"2582":6354,"2583":8714,"2584":7009,"2585":6205,"2586":1268,"2587":8837,"2588":994,"2589":5958,"2590":1221,"2591":7603,"2592":429,"2593":9661,"2594":670,"2595":8333,"2596":3478,"2597":6642,"2598":8746,"2599":1688,"2600":2513,"2601":2576,"2602":6765,"2603":7673,"2604":10457,"2605":8040,"2606":10202,"2607":2469,"2608":5320,"2609":8553,"2610":8118,"2611":10361,"2612":8064,"2613":5392,"2614":4171,"2615":1281,"2616":9688,"2617":832,"2618":2373,"2619":4790,"2620":4484,"2621":9077,"2622":365,"2623":3369,"2624":1422,"2625":5252,"2626":916,"2627":9879,"2628":5571,"2629":2380,"2630":460,"2631":341,"2632":4588,"2633":5959,"2634":10699,"2635":7883,"2636":4788,"2637":5964,"2638":7399,"2639":9807,"2640":8637,"2641":7456,"2642":3013,"2643":9146,"2644":6831,"2645":4542,"2646":1117,"2647":1211,"2648":9734,"2649":6819,"2650":6584,"2651":2117,"2652":1927,"2653":7019,"2654":991,"2655":4309,"2656":8582,"2657":9681,"2658":5917,"2659":41,"2660":8024,"2661":8020,"2662":5614,"2663":10794,"2664":1633,"2665":6399,"2666":10304,"2667":8659,"2668":3129,"2669":6775,"2670":10981,"2671":640,"2672":1960,"2673":4680,"2674":6338,"2675":5288,"2676":6841,"2677":10745,"2678":10647,"2679":2211,"2680":653,"2681":8112,"2682":2892,"2683":8396,"2684":1988,"2685":456,"2686":4444,"2687":2199,"2688":7642,"2689":7114,"2690":8365,"2691":10054,"2692":6727,"2693":1563,"2694":6117,"2695":6590,"2696":3791,"2697":8158,"2698":8755,"2699":9372,"2700":1141,"2701":807,"2702":1706,"2703":10318,"2704":7804,"2705":264,"2706":3138,"2707":10979,"2708":8951,"2709":4102,"2710":10171,"2711":5873,"2712":10337,"2713":10031,"2714":4206,"2715":6309,"2716":559,"2717":8429,"2718":4630,"2719":9743,"2720":7732,"2721":6793,"2722":3869,"2723":1702,"2724":8740,"2725":4551,"2726":10652,"2727":3451,"2728":2457,"2729":631,"2730":3222,"2731":7224,"2732":806,"2733":9929,"2734":4584,"2735":10884,"2736":5586,"2737":1625,"2738":3499,"2739":10722,"2740":7301,"2741":9339,"2742":7101,"2743":9539,"2744":5693,"2745":5246,"2746":2225,"2747":2093,"2748":2188,"2749":1661,"2750":6369,"2751":4871,"2752":9665,"2753":9368,"2754":4488,"2755":8969,"2756":5943,"2757":8305,"2758":9440,"2759":1020,"2760":6844,"2761":8692,"2762":504,"2763":2265,"2764":7256,"2765":4770,"2766":1920,"2767":3915,"2768":2306,"2769":6308,"2770":6716,"2771":8015,"2772":277,"2773":8506,"2774":8805,"2775":10837,"2776":455,"2777":3035,"2778":145,"2779":7092,"2780":7960,"2781":1480,"2782":10336,"2783":130,"2784":4304,"2785":5611,"2786":8207,"2787":3134,"2788":10874,"2789":837,"2790":74,"2791":7794,"2792":7110,"2793":9866,"2794":7592,"2795":6225,"2796":8886,"2797":2022,"2798":9919,"2799":7001,"2800":1267,"2801":9763,"2802":3506,"2803":3581,"2804":6749,"2805":6129,"2806":5718,"2807":3640,"2808":6403,"2809":1441,"2810":955,"2811":4548,"2812":1038,"2813":5365,"2814":3570,"2815":7435,"2816":1563,"2817":4949,"2818":5369,"2819":4722,"2820":7203,"2821":7507,"2822":3679,"2823":4050,"2824":10726,"2825":2524,"2826":4724,"2827":8654,"2828":6363,"2829":1606,"2830":7164,"2831":4514,"2832":2855,"2833":8421,"2834":4556,"2835":10599,"2836":2933,"2837":10343,"2838":3381,"2839":5027,"2840":10685,"2841":1224,"2842":6797,"2843":7636,"2844":9382,"2845":7635,"2846":9174,"2847":5965,"2848":2116,"2849":10916,"2850":1542,"2851":10642,"2852":6558,"2853":1712,"2854":3093,"2855":5889,"2856":8091,"2857":4675,"2858":9531,"2859":4534,"2860":10872,"2861":447,"2862":6116,"2863":1387,"2864":7811,"2865":9812,"2866":4670,"2867":4353,"2868":8397,"2869":3323,"2870":4657,"2871":9697,"2872":3865,"2873":5504,"2874":834,"2875":2848,"2876":8854,"2877":5145,"2878":5746,"2879":5607,"2880":9226,"2881":7123,"2882":5501,"2883":8747,"2884":8003,"2885":8993,"2886":10115,"2887":2726,"2888":10389,"2889":2561,"2890":10694,"2891":7480,"2892":9864,"2893":10251,"2894":6297,"2895":2867,"2896":3717,"2897":5786,"2898":5276,"2899":6130,"2900":7715,"2901":6189,"2902":1994,"2903":5931,"2904":3511,"2905":3054,"2906":118,"2907":3646,"2908":4337,"2909":5144,"2910":7225,"2911":1601,"2912":7002,"2913":8702,"2914":220,"2915":7742,"2916":10969,"2917":2067,"2918":3141,"2919":3020,"2920":3103,"2921":2309,"2922":7771,"2923":10709,"2924":9282,"2925":3978,"2926":3920,"2927":10126,"2928":1830,"2929":4092,"2930":9053,"2931":1171,"2932":2038,"2933":277,"2934":324,"2935":5760,"2936":595,"2937":4786,"2938":8846,"2939":4290,"2940":4727,"2941":9862,"2942":10582,"2943":4456,"2944":550,"2945":3213,"2946":4144,"2947":4415,"2948":3355,"2949":9795,"2950":3087,"2951":1001,"2952":471,"2953":2290,"2954":9651,"2955":943,"2956":6532,"2957":3718,"2958":4333,"2959":8853,"2960":9424,"2961":9813,"2962":4062,"2963":1839,"2964":4442,"2965":9687,"2966":2912,"2967":3554,"2968":10312,"2969":2485,"2970":735,"2971":5079,"2972":7881,"2973":8788,"2974":10207,"2975":7917,"2976":3420,"2977":7950,"2978":6555,"2979":3691,"2980":7271,"2981":10957,"2982":9564,"2983":1294,"2984":10033,"2985":9640,"2986":1272,"2987":9597,"2988":3101,"2989":6194,"2990":7875,"2991":10548,"2992":510,"2993":7877,"2994":7356,"2995":864,"2996":1282,"2997":462,"2998":4457,"2999":4268,"3000":1582,"3001":9855,"3002":9426,"3003":724,"3004":1402,"3005":2642,"3006":4101,"3007":5953,"3008":6300,"3009":5648,"3010":5002,"3011":9797,"3012":7373,"3013":6377,"3014":5130,"3015":4182,"3016":508,"3017":4176,"3018":5187,"3019":6954,"3020":2354,"3021":10937,"3022":3999,"3023":9198,"3024":4794,"3025":5757,"3026":9906,"3027":8632,"3028":2032,"3029":2557,"3030":10348,"3031":4496,"3032":6026,"3033":2116,"3034":826,"3035":4377,"3036":9325,"3037":4132,"3038":5127,"3039":5439,"3040":8475,"3041":1321,"3042":6828,"3043":451,"3044":270,"3045":10102,"3046":7987,"3047":7159,"3048":7936,"3049":10405,"3050":10976,"3051":10036,"3052":822,"3053":6936,"3054":10077,"3055":10016,"3056":10703,"3057":2563,"3058":2825,"3059":6421,"3060":2194,"3061":3782,"3062":5835,"3063":360,"3064":5788,"3065":10136,"3066":9636,"3067":372,"3068":10886,"3069":9795,"3070":3665,"3071":4278,"3072":9723,"3073":4113,"3074":3890,"3075":522,"3076":10086,"3077":5564,"3078":2614,"3079":5350,"3080":7492,"3081":412,"3082":5497,"3083":10573,"3084":7854,"3085":7494,"3086":5680,"3087":6680,"3088":6143,"3089":3466,"3090":3297,"3091":823,"3092":1718,"3093":4174,"3094":1852,"3095":528,"3096":6806,"3097":4437,"3098":2106,"3099":9192,"3100":10371,"3101":3635,"3102":9050,"3103":3153,"3104":2411,"3105":6616,"3106":3983,"3107":502,"3108":1246,"3109":6367,"3110":6563,"3111":7944,"3112":3720,"3113":4225,"3114":774,"3115":2326,"3116":10808,"3117":7261,"3118":5245,"3119":4445,"3120":3090,"3121":7578,"3122":7664,"3123":2550,"3124":2329,"3125":2780,"3126":4174,"3127":1466,"3128":6635,"3129":7144,"3130":6072,"3131":4958,"3132":7410,"3133":1042,"3134":9883,"3135":2255,"3136":2997,"3137":362,"3138":8426,"3139":3544,"3140":8284,"3141":8144,"3142":2520,"3143":2575,"3144":1416,"3145":7791,"3146":4625,"3147":1599,"3148":2049,"3149":6905,"3150":2053,"3151":4186,"3152":2575,"3153":264,"3154":3892,"3155":9520,"3156":3419,"3157":5628,"3158":8820,"3159":7880,"3160":390,"3161":5425,"3162":5507,"3163":10747,"3164":3870,"3165":10748,"3166":959,"3167":7891,"3168":6771,"3169":9265,"3170":3559,"3171":1349,"3172":2625,"3173":9690,"3174":181,"3175":10991,"3176":4674,"3177":5243,"3178":8866,"3179":4964,"3180":2188,"3181":10183,"3182":4194,"3183":8556,"3184":3979,"3185":5945,"3186":182,"3187":10019,"3188":9150,"3189":2378,"3190":370,"3191":675,"3192":9984,"3193":9615,"3194":9871,"3195":3061,"3196":8447,"3197":10119,"3198":775,"3199":568,"3200":1107,"3201":4781,"3202":2270,"3203":756,"3204":1170,"3205":8616,"3206":2759,"3207":7036,"3208":1316,"3209":3597,"3210":4714,"3211":4327,"3212":10126,"3213":6591,"3214":6982,"3215":1629,"3216":2353,"3217":7291,"3218":9240,"3219":5295,"3220":9584,"3221":7635,"3222":4026,"3223":686,"3224":1330,"3225":8381,"3226":7063,"3227":10983,"3228":8516,"3229":4563,"3230":5416,"3231":5121,"3232":6063,"3233":10867,"3234":3175,"3235":8589,"3236":6526,"3237":3476,"3238":1576,"3239":7040,"3240":2094,"3241":2364,"3242":10293,"3243":3821,"3244":5944,"3245":375,"3246":6718,"3247":853,"3248":10067,"3249":5036,"3250":1310,"3251":10442,"3252":1360,"3253":4037,"3254":10937,"3255":7755,"3256":5635,"3257":2176,"3258":2172,"3259":3288,"3260":8674,"3261":35,"3262":2391,"3263":5649,"3264":4262,"3265":7241,"3266":3601,"3267":9393,"3268":3267,"3269":10745,"3270":8483,"3271":3029,"3272":7091,"3273":1573,"3274":1824,"3275":4453,"3276":691,"3277":1584,"3278":1571,"3279":6667,"3280":4395,"3281":2349,"3282":8448,"3283":3174,"3284":10378,"3285":10846,"3286":3714,"3287":7394,"3288":9892,"3289":2800,"3290":9019,"3291":8265,"3292":4584,"3293":303,"3294":2556,"3295":9531,"3296":9726,"3297":1753,"3298":4824,"3299":2769,"3300":8657,"3301":1875,"3302":5272,"3303":8516,"3304":2768,"3305":8443,"3306":7176,"3307":1228,"3308":1735,"3309":6729,"3310":852,"3311":3392,"3312":6830,"3313":772,"3314":4762,"3315":7890,"3316":10772,"3317":10313,"3318":8560,"3319":9362,"3320":5675,"3321":6270,"3322":6106,"3323":377,"3324":37,"3325":4315,"3326":6911,"3327":10198,"3328":7081,"3329":7584,"3330":3632,"3331":10599,"3332":9634,"3333":2360,"3334":8572,"3335":10684,"3336":90,"3337":5224,"3338":5448,"3339":2064,"3340":9260,"3341":8033,"3342":9969,"3343":1371,"3344":2299,"3345":2675,"3346":9566,"3347":5984,"3348":587,"3349":6696,"3350":4830,"3351":727,"3352":8350,"3353":582,"3354":9574,"3355":2274,"3356":7118,"3357":1502,"3358":1519,"3359":6308,"3360":8824,"3361":5465,"3362":4577,"3363":848,"3364":5954,"3365":5645,"3366":10304,"3367":1634,"3368":2603,"3369":6882,"3370":1143,"3371":6472,"3372":2304,"3373":460,"3374":5834,"3375":10693,"3376":6885,"3377":6519,"3378":4846,"3379":1512,"3380":438,"3381":10416,"3382":5301,"3383":10129,"3384":2680,"3385":6325,"3386":10790,"3387":5051,"3388":4812,"3389":7179,"3390":4210,"3391":7354,"3392":7574,"3393":5527,"3394":1789,"3395":5414,"3396":3816,"3397":7195,"3398":4562,"3399":7497,"3400":6736,"3401":2407,"3402":4565,"3403":8497,"3404":2220,"3405":1484,"3406":4558,"3407":9923,"3408":7761,"3409":6972,"3410":3840,"3411":6745,"3412":3006,"3413":7793,"3414":1301,"3415":8700,"3416":1588,"3417":4882,"3418":9333,"3419":2074,"3420":9506,"3421":5666,"3422":2904,"3423":7733,"3424":3533,"3425":4561,"3426":9742,"3427":9796,"3428":2839,"3429":1460,"3430":6763,"3431":111,"3432":1016,"3433":3573,"3434":9140,"3435":364,"3436":1963,"3437":8159,"3438":6110,"3439":6520,"3440":6391,"3441":2990,"3442":1024,"3443":6352,"3444":2814,"3445":10338,"3446":951,"3447":9361,"3448":7185,"3449":3333,"3450":2594,"3451":7276,"3452":7638,"3453":10369,"3454":6788,"3455":541,"3456":8181,"3457":8439,"3458":3542,"3459":9548,"3460":1455,"3461":5690,"3462":744,"3463":7816,"3464":6988,"3465":3845,"3466":933,"3467":3354,"3468":10967,"3469":8865,"3470":8171,"3471":4698,"3472":3075,"3473":5284,"3474":4774,"3475":10545,"3476":8093,"3477":9586,"3478":6910,"3479":6060,"3480":5790,"3481":7768,"3482":9336,"3483":9069,"3484":8894,"3485":6283,"3486":2808,"3487":5573,"3488":9420,"3489":5090,"3490":120,"3491":10840,"3492":229,"3493":10134,"3494":9575,"3495":5232,"3496":6746,"3497":7503,"3498":8879,"3499":686,"3500":4115,"3501":3218,"3502":8934,"3503":6646,"3504":866,"3505":5962,"3506":9577,"3507":1900,"3508":2201,"3509":10966,"3510":1603,"3511":6888,"3512":1489,"3513":9689,"3514":7499,"3515":4191,"3516":4519,"3517":8900,"3518":7169,"3519":2084,"3520":6341,"3521":8697,"3522":1392,"3523":10666,"3524":1268,"3525":322,"3526":4206,"3527":5323,"3528":5973,"3529":5421,"3530":5891,"3531":3407,"3532":10318,"3533":5982,"3534":1671,"3535":3618,"3536":4805,"3537":5570,"3538":3822,"3539":10940,"3540":3940,"3541":234,"3542":281,"3543":5532,"3544":5883,"3545":6648,"3546":5506,"3547":2530,"3548":10925,"3549":3441,"3550":4471,"3551":796,"3552":737,"3553":681,"3554":8669,"3555":2328,"3556":9315,"3557":3579,"3558":1247,"3559":784,"3560":8259,"3561":9411,"3562":7939,"3563":3915,"3564":3643,"3565":1606,"3566":3188,"3567":1277,"3568":8506,"3569":7361,"3570":1448,"3571":6376,"3572":348,"3573":5929,"3574":5140,"3575":3365,"3576":9652,"3577":5026,"3578":2141,"3579":8040,"3580":3980,"3581":6145,"3582":8500,"3583":2653,"3584":7903,"3585":3058,"3586":6632,"3587":1056,"3588":7334,"3589":9738,"3590":9682,"3591":3286,"3592":842,"3593":9880,"3594":5843,"3595":4331,"3596":1481,"3597":1654,"3598":1421,"3599":4671,"3600":3281,"3601":7323,"3602":6757,"3603":8032,"3604":3029,"3605":5775,"3606":5633,"3607":2535,"3608":8646,"3609":7579,"3610":1785,"3611":4745,"3612":2330,"3613":6378,"3614":7498,"3615":10086,"3616":10912,"3617":10634,"3618":6204,"3619":1867,"3620":8228,"3621":9672,"3622":9710,"3623":10256,"3624":2908,"3625":9168,"3626":10282,"3627":8601,"3628":856,"3629":10560,"3630":9907,"3631":6888,"3632":773,"3633":9428,"3634":1779,"3635":10087,"3636":4803,"3637":3567,"3638":5670,"3639":10370,"3640":3135,"3641":3746,"3642":3394,"3643":1911,"3644":10534,"3645":3817,"3646":6858,"3647":9047,"3648":8083,"3649":5226,"3650":10030,"3651":2741,"3652":4154,"3653":10911,"3654":4592,"3655":9701,"3656":7709,"3657":7275,"3658":8140,"3659":10775,"3660":10246,"3661":42,"3662":425,"3663":4973,"3664":3877,"3665":10374,"3666":7730,"3667":2639,"3668":7909,"3669":3483,"3670":7061,"3671":10103,"3672":9059,"3673":7930,"3674":3167,"3675":9896,"3676":1632,"3677":2870,"3678":3120,"3679":2803,"3680":10573,"3681":2625,"3682":946,"3683":468,"3684":5520,"3685":5263,"3686":10917,"3687":10432,"3688":5594,"3689":8251,"3690":5763,"3691":2381,"3692":1238,"3693":1327,"3694":4225,"3695":10015,"3696":9892,"3697":2804,"3698":7925,"3699":3109,"3700":3212,"3701":5928,"3702":1496,"3703":8274,"3704":2139,"3705":10728,"3706":9826,"3707":320,"3708":4427,"3709":10649,"3710":1475,"3711":6044,"3712":4623,"3713":509,"3714":9858,"3715":9272,"3716":2612,"3717":863,"3718":7122,"3719":7692,"3720":6081,"3721":3708,"3722":3942,"3723":8240,"3724":6616,"3725":6109,"3726":1979,"3727":6279,"3728":7744,"3729":5499,"3730":6281,"3731":8317,"3732":4625,"3733":8250,"3734":10584,"3735":526,"3736":6262,"3737":6372,"3738":7153,"3739":2761,"3740":1190,"3741":7188,"3742":6669,"3743":1449,"3744":452,"3745":2622,"3746":8188,"3747":1870,"3748":3692,"3749":8455,"3750":10809,"3751":8331,"3752":2366,"3753":2566,"3754":4938,"3755":957,"3756":2090,"3757":8310,"3758":4647,"3759":9993,"3760":2686,"3761":3176,"3762":9075,"3763":3796,"3764":9157,"3765":1501,"3766":2707,"3767":7310,"3768":5248,"3769":3477,"3770":1226,"3771":7430,"3772":3058,"3773":9703,"3774":4391,"3775":6744,"3776":4615,"3777":10162,"3778":426,"3779":6674,"3780":2749,"3781":4602,"3782":4657,"3783":3082,"3784":8638,"3785":2904,"3786":2932,"3787":3560,"3788":10692,"3789":8904,"3790":1936,"3791":2651,"3792":4157,"3793":7977,"3794":10707,"3795":9413,"3796":10808,"3797":7585,"3798":1916,"3799":176,"3800":1630,"3801":10640,"3802":9313,"3803":7964,"3804":1295,"3805":1893,"3806":2871,"3807":5375,"3808":4185,"3809":4060,"3810":3882,"3811":422,"3812":6828,"3813":8973,"3814":2843,"3815":732,"3816":10101,"3817":8124,"3818":7459,"3819":1788,"3820":3375,"3821":5190,"3822":7625,"3823":7167,"3824":5105,"3825":495,"3826":6227,"3827":4486,"3828":6149,"3829":1886,"3830":3395,"3831":2581,"3832":2880,"3833":10530,"3834":6434,"3835":6948,"3836":9674,"3837":6224,"3838":8363,"3839":3815,"3840":2911,"3841":7203,"3842":7192,"3843":9114,"3844":5380,"3845":7938,"3846":3462,"3847":8377,"3848":10777,"3849":8683,"3850":1626,"3851":8541,"3852":4269,"3853":8031,"3854":8561,"3855":4950,"3856":1341,"3857":1795,"3858":4430,"3859":9158,"3860":5018,"3861":10718,"3862":3673,"3863":390,"3864":876,"3865":4593,"3866":4059,"3867":8098,"3868":197,"3869":6759,"3870":2852,"3871":658,"3872":1139,"3873":9835,"3874":9337,"3875":1797,"3876":7933,"3877":6198,"3878":10741,"3879":2737,"3880":2803,"3881":3258,"3882":8995,"3883":3059,"3884":3772,"3885":8415,"3886":4796,"3887":3709,"3888":4882,"3889":6907,"3890":9392,"3891":6457,"3892":9271,"3893":4383,"3894":10540,"3895":2367,"3896":3319,"3897":7222,"3898":8724,"3899":2192,"3900":8264,"3901":7581,"3902":1238,"3903":904,"3904":6283,"3905":10632,"3906":3149,"3907":7355,"3908":1270,"3909":181,"3910":6576,"3911":9810,"3912":7484,"3913":8275,"3914":6242,"3915":1874,"3916":2410,"3917":10143,"3918":1424,"3919":8134,"3920":5060,"3921":9722,"3922":7293,"3923":6945,"3924":6585,"3925":6296,"3926":5007,"3927":9311,"3928":5625,"3929":3163,"3930":1904,"3931":1630,"3932":6127,"3933":7854,"3934":468,"3935":6337,"3936":8497,"3937":4984,"3938":3885,"3939":7100,"3940":2483,"3941":5460,"3942":1801,"3943":7316,"3944":4864,"3945":9493,"3946":6067,"3947":9358,"3948":5453,"3949":7621,"3950":3056,"3951":719,"3952":1619,"3953":1270,"3954":10445,"3955":955,"3956":10240,"3957":7267,"3958":7078,"3959":4988,"3960":6723,"3961":6554,"3962":2890,"3963":3366,"3964":2150,"3965":9197,"3966":6690,"3967":10870,"3968":453,"3969":3751,"3970":7144,"3971":4346,"3972":7536,"3973":4224,"3974":2427,"3975":10235,"3976":10518,"3977":5269,"3978":9566,"3979":8078,"3980":10426,"3981":8560,"3982":497,"3983":8628,"3984":10617,"3985":7216,"3986":5268,"3987":8615,"3988":403,"3989":556,"3990":4715,"3991":8094,"3992":5934,"3993":2899,"3994":5531,"3995":826,"3996":2845,"3997":810,"3998":2133,"3999":5390,"4000":3572,"4001":8190,"4002":4342,"4003":9858,"4004":7196,"4005":8935,"4006":4097,"4007":10043,"4008":10823,"4009":10143,"4010":8383,"4011":2263,"4012":9447,"4013":6811,"4014":10630,"4015":2416,"4016":7404,"4017":3420,"4018":10085,"4019":1959,"4020":497,"4021":9597,"4022":5833,"4023":5212,"4024":8926,"4025":9841,"4026":7442,"4027":4235,"4028":6328,"4029":2048,"4030":5043,"4031":10148,"4032":10179,"4033":4952,"4034":1997,"4035":2835,"4036":8731,"4037":4933,"4038":8581,"4039":2838,"4040":5279,"4041":9805,"4042":1687,"4043":4963,"4044":5709,"4045":2915,"4046":3504,"4047":4649,"4048":6409,"4049":5988,"4050":876,"4051":5288,"4052":3009,"4053":7950,"4054":9160,"4055":5017,"4056":3391,"4057":6866,"4058":155,"4059":2365,"4060":1532,"4061":3813,"4062":9666,"4063":10646,"4064":9549,"4065":10092,"4066":7959,"4067":3491,"4068":10262,"4069":3368,"4070":7881,"4071":688,"4072":5726,"4073":1039,"4074":5468,"4075":9392,"4076":1969,"4077":564,"4078":364,"4079":9134,"4080":7778,"4081":1655,"4082":6005,"4083":10445,"4084":9351,"4085":10281,"4086":2954,"4087":1461,"4088":560,"4089":4600,"4090":413,"4091":504,"4092":9343,"4093":6576,"4094":2450,"4095":2892,"4096":7541,"4097":3378,"4098":9592,"4099":6199,"4100":5529,"4101":7582,"4102":661,"4103":8804,"4104":3396,"4105":1011,"4106":6066,"4107":4524,"4108":3532,"4109":5250,"4110":7569,"4111":8261,"4112":8908,"4113":7766,"4114":1256,"4115":7184,"4116":10938,"4117":5913,"4118":5626,"4119":1974,"4120":8674,"4121":232,"4122":9085,"4123":6583,"4124":958,"4125":130,"4126":6689,"4127":1717,"4128":9484,"4129":10325,"4130":139,"4131":736,"4132":8789,"4133":6120,"4134":5783,"4135":2878,"4136":101,"4137":91,"4138":4458,"4139":2038,"4140":1019,"4141":1318,"4142":5756,"4143":8773,"4144":10578,"4145":10505,"4146":10362,"4147":4910,"4148":5881,"4149":411,"4150":10988,"4151":3756,"4152":6515,"4153":2441,"4154":10703,"4155":1081,"4156":7091,"4157":5843,"4158":8852,"4159":5953,"4160":7842,"4161":7786,"4162":948,"4163":7569,"4164":10189,"4165":2971,"4166":2932,"4167":42,"4168":4101,"4169":7617,"4170":2377,"4171":2359,"4172":6512,"4173":7060,"4174":663,"4175":7800,"4176":5859,"4177":1252,"4178":10731,"4179":8184,"4180":5423,"4181":4065,"4182":2970,"4183":7916,"4184":6717,"4185":6642,"4186":3706,"4187":7311,"4188":4967,"4189":10988,"4190":4659,"4191":4738,"4192":9476,"4193":976,"4194":8839,"4195":7432,"4196":1432,"4197":7400,"4198":7047,"4199":8254,"4200":9174,"4201":4588,"4202":7231,"4203":6754,"4204":1455,"4205":1810,"4206":4101,"4207":1681,"4208":9334,"4209":6510,"4210":136,"4211":1645,"4212":4507,"4213":2962,"4214":6353,"4215":10406,"4216":1076,"4217":199,"4218":726,"4219":479,"4220":568,"4221":2295,"4222":275,"4223":9067,"4224":9213,"4225":1033,"4226":2868,"4227":7778,"4228":2275,"4229":1062,"4230":551,"4231":445,"4232":4322,"4233":4306,"4234":8671,"4235":5209,"4236":10653,"4237":6724,"4238":5583,"4239":2920,"4240":6167,"4241":7374,"4242":4495,"4243":5349,"4244":5006,"4245":4756,"4246":8553,"4247":5760,"4248":2155,"4249":3954,"4250":2535,"4251":5421,"4252":4465,"4253":3120,"4254":5509,"4255":1253,"4256":9368,"4257":5738,"4258":3133,"4259":4144,"4260":2385,"4261":2140,"4262":1719,"4263":5202,"4264":4664,"4265":7776,"4266":7142,"4267":2489,"4268":4212,"4269":997,"4270":3300,"4271":9254,"4272":10266,"4273":1124,"4274":3541,"4275":8305,"4276":7335,"4277":6650,"4278":8709,"4279":2668,"4280":9990,"4281":1395,"4282":1970,"4283":828,"4284":4874,"4285":7469,"4286":335,"4287":7380,"4288":6252,"4289":1550,"4290":7177,"4291":3333,"4292":1734,"4293":7,"4294":9426,"4295":8898,"4296":6947,"4297":8722,"4298":8236,"4299":3783,"4300":6249,"4301":6438,"4302":1876,"4303":1860,"4304":10553,"4305":240,"4306":8547,"4307":10456,"4308":3378,"4309":5063,"4310":5417,"4311":4054,"4312":1238,"4313":7471,"4314":7669,"4315":6484,"4316":4248,"4317":9563,"4318":8462,"4319":9413,"4320":2286,"4321":7741,"4322":2663,"4323":3886,"4324":6777,"4325":7639,"4326":1746,"4327":5612,"4328":8439,"4329":899,"4330":1235,"4331":5844,"4332":7124,"4333":6076,"4334":5914,"4335":7260,"4336":1113,"4337":3983,"4338":3951,"4339":10733,"4340":5501,"4341":2747,"4342":8848,"4343":10454,"4344":5172,"4345":7499,"4346":9095,"4347":10567,"4348":6113,"4349":2310,"4350":104,"4351":5999,"4352":3262,"4353":9417,"4354":4388,"4355":1101,"4356":6838,"4357":5145,"4358":9293,"4359":9028,"4360":8686,"4361":9642,"4362":9232,"4363":8783,"4364":4429,"4365":4582,"4366":8963,"4367":1625,"4368":414,"4369":4298,"4370":1929,"4371":8124,"4372":4764,"4373":4879,"4374":9735,"4375":10608,"4376":7798,"4377":653,"4378":3545,"4379":4186,"4380":9118,"4381":9804,"4382":1482,"4383":9337,"4384":4481,"4385":8552,"4386":4220,"4387":3890,"4388":430,"4389":10957,"4390":582,"4391":3368,"4392":4673,"4393":303,"4394":2708,"4395":3139,"4396":3981,"4397":8008,"4398":6958,"4399":1044,"4400":9511,"4401":533,"4402":509,"4403":1116,"4404":2916,"4405":5278,"4406":2035,"4407":7893,"4408":5763,"4409":7862,"4410":5998,"4411":5307,"4412":8954,"4413":8210,"4414":8825,"4415":1622,"4416":8993,"4417":5592,"4418":7557,"4419":1915,"4420":1673,"4421":1389,"4422":4069,"4423":1300,"4424":8124,"4425":10849,"4426":3228,"4427":2372,"4428":7331,"4429":3936,"4430":8924,"4431":4593,"4432":5524,"4433":3680,"4434":8448,"4435":711,"4436":9285,"4437":9081,"4438":901,"4439":853,"4440":8843,"4441":10011,"4442":2674,"4443":3653,"4444":7496,"4445":7134,"4446":6283,"4447":6306,"4448":8187,"4449":8453,"4450":3343,"4451":6795,"4452":8360,"4453":9217,"4454":9462,"4455":4812,"4456":9812,"4457":6596,"4458":4985,"4459":8131,"4460":3780,"4461":265,"4462":3596,"4463":80,"4464":3729,"4465":10848,"4466":769,"4467":2514,"4468":8167,"4469":9124,"4470":1928,"4471":4931,"4472":10894,"4473":1151,"4474":7553,"4475":5095,"4476":5098,"4477":1057,"4478":10983,"4479":1090,"4480":8705,"4481":9476,"4482":7766,"4483":6449,"4484":4754,"4485":6637,"4486":6043,"4487":8875,"4488":7842,"4489":4215,"4490":9105,"4491":9167,"4492":570,"4493":10498,"4494":8500,"4495":1228,"4496":2298,"4497":99,"4498":8899,"4499":8243,"4500":9319,"4501":2283,"4502":3156,"4503":9636,"4504":1399,"4505":10484,"4506":8147,"4507":4909,"4508":2469,"4509":10384,"4510":142,"4511":6938,"4512":1700,"4513":3007,"4514":10466,"4515":7058,"4516":9535,"4517":3392,"4518":5001,"4519":7228,"4520":6794,"4521":8503,"4522":5792,"4523":854,"4524":10039,"4525":5430,"4526":5528,"4527":6644,"4528":10646,"4529":3693,"4530":8459,"4531":1442,"4532":3371,"4533":5532,"4534":8554,"4535":8964,"4536":4966,"4537":3756,"4538":10926,"4539":4035,"4540":458,"4541":6156,"4542":7602,"4543":5515,"4544":10815,"4545":10886,"4546":1669,"4547":80,"4548":1228,"4549":2950,"4550":6015,"4551":902,"4552":9393,"4553":5594,"4554":7624,"4555":4359,"4556":8192,"4557":9067,"4558":7752,"4559":3647,"4560":9007,"4561":6745,"4562":6343,"4563":2869,"4564":9098,"4565":7461,"4566":5175,"4567":6375,"4568":3150,"4569":7979,"4570":906,"4571":7156,"4572":2251,"4573":5020,"4574":7693,"4575":2218,"4576":7602,"4577":4256,"4578":8207,"4579":7425,"4580":769,"4581":6650,"4582":4366,"4583":4660,"4584":2502,"4585":5643,"4586":5308,"4587":7753,"4588":5244,"4589":2421,"4590":6427,"4591":2745,"4592":6212,"4593":9675,"4594":9610,"4595":4812,"4596":3200,"4597":3390,"4598":8318,"4599":6773,"4600":6317,"4601":555,"4602":6519,"4603":1155,"4604":6989,"4605":9746,"4606":3974,"4607":5717,"4608":5280,"4609":2834,"4610":1136,"4611":5763,"4612":10520,"4613":3061,"4614":9623,"4615":4159,"4616":4934,"4617":3568,"4618":9521,"4619":9789,"4620":7435,"4621":7190,"4622":10102,"4623":9225,"4624":8265,"4625":3347,"4626":4435,"4627":10038,"4628":9396,"4629":10592,"4630":6738,"4631":6569,"4632":6584,"4633":7061,"4634":8383,"4635":6367,"4636":2100,"4637":4374,"4638":5927,"4639":6423,"4640":3464,"4641":1758,"4642":4623,"4643":8045,"4644":6922,"4645":8094,"4646":2974,"4647":6638,"4648":456,"4649":7183,"4650":10253,"4651":2975,"4652":3143,"4653":820,"4654":3639,"4655":4479,"4656":10237,"4657":7035,"4658":1106,"4659":428,"4660":7721,"4661":5847,"4662":8177,"4663":10496,"4664":8771,"4665":3537,"4666":4682,"4667":7830,"4668":9969,"4669":6552,"4670":10290,"4671":9083,"4672":4844,"4673":6025,"4674":1282,"4675":10641,"4676":8686,"4677":8886,"4678":7961,"4679":5223,"4680":8420,"4681":9359,"4682":5000,"4683":9785,"4684":6771,"4685":4537,"4686":7465,"4687":9775,"4688":6077,"4689":604,"4690":2900,"4691":3745,"4692":2581,"4693":3290,"4694":4889,"4695":3821,"4696":5090,"4697":7445,"4698":7386,"4699":6900,"4700":10556,"4701":1886,"4702":871,"4703":3647,"4704":973,"4705":4125,"4706":3162,"4707":6652,"4708":1228,"4709":2216,"4710":4576,"4711":5828,"4712":9326,"4713":7110,"4714":4561,"4715":91,"4716":9776,"4717":3789,"4718":4745,"4719":2954,"4720":6690,"4721":2177,"4722":4667,"4723":10189,"4724":7941,"4725":3376,"4726":2207,"4727":3076,"4728":3710,"4729":4916,"4730":7785,"4731":6852,"4732":4813,"4733":6476,"4734":7765,"4735":10929,"4736":7017,"4737":10747,"4738":7927,"4739":6925,"4740":96,"4741":699,"4742":5942,"4743":4037,"4744":10262,"4745":4593,"4746":10416,"4747":2651,"4748":1323,"4749":250,"4750":5354,"4751":7148,"4752":6263,"4753":10543,"4754":2526,"4755":7714,"4756":2189,"4757":2517,"4758":3371,"4759":3738,"4760":1650,"4761":9209,"4762":2554,"4763":2229,"4764":430,"4765":984,"4766":3045,"4767":5499,"4768":1201,"4769":1457,"4770":570,"4771":8364,"4772":6473,"4773":10042,"4774":6515,"4775":2936,"4776":5185,"4777":10631,"4778":9501,"4779":5367,"4780":1411,"4781":4278,"4782":1892,"4783":9544,"4784":2005,"4785":5625,"4786":4983,"4787":1541,"4788":2131,"4789":9677,"4790":2804,"4791":3818,"4792":6281,"4793":455,"4794":9486,"4795":167,"4796":4403,"4797":3237,"4798":5686,"4799":9279,"4800":294,"4801":8055,"4802":6061,"4803":2613,"4804":9399,"4805":4746,"4806":3415,"4807":8957,"4808":119,"4809":1777,"4810":8573,"4811":5947,"4812":3802,"4813":4543,"4814":6729,"4815":5032,"4816":5967,"4817":3438,"4818":8654,"4819":1389,"4820":6835,"4821":2660,"4822":2908,"4823":9881,"4824":9033,"4825":9492,"4826":3026,"4827":3209,"4828":6637,"4829":10970,"4830":6196,"4831":346,"4832":2903,"4833":5945,"4834":7290,"4835":802,"4836":10053,"4837":1314,"4838":4198,"4839":6673,"4840":814,"4841":9734,"4842":2538,"4843":2242,"4844":4544,"4845":3185,"4846":7154,"4847":10069,"4848":7601,"4849":1745,"4850":8965,"4851":7877,"4852":4865,"4853":1828,"4854":6802,"4855":7506,"4856":3948,"4857":7212,"4858":6868,"4859":1459,"4860":2021,"4861":9905,"4862":6318,"4863":7763,"4864":8365,"4865":3839,"4866":3964,"4867":10405,"4868":1321,"4869":6940,"4870":9727,"4871":1522,"4872":8290,"4873":3187,"4874":9694,"4875":1696,"4876":4787,"4877":1478,"4878":7895,"4879":6524,"4880":285,"4881":6258,"4882":7818,"4883":7336,"4884":5886,"4885":3428,"4886":10269,"4887":9896,"4888":2719,"4889":8018,"4890":7132,"4891":6678,"4892":10307,"4893":4502,"4894":284,"4895":9956,"4896":5968,"4897":8479,"4898":5849,"4899":3061,"4900":1413,"4901":9086,"4902":8271,"4903":10022,"4904":10878,"4905":10241,"4906":1387,"4907":4084,"4908":3590,"4909":7083,"4910":4998,"4911":5224,"4912":10393,"4913":5147,"4914":1611,"4915":7031,"4916":6431,"4917":3192,"4918":7960,"4919":7244,"4920":10715,"4921":786,"4922":9655,"4923":1782,"4924":1858,"4925":956,"4926":2494,"4927":3369,"4928":8095,"4929":2502,"4930":2862,"4931":6320,"4932":9472,"4933":5135,"4934":976,"4935":5081,"4936":8021,"4937":7223,"4938":4975,"4939":6779,"4940":2936,"4941":10188,"4942":1681,"4943":10173,"4944":930,"4945":5559,"4946":3467,"4947":7322,"4948":1287,"4949":3686,"4950":10868,"4951":9103,"4952":130,"4953":5163,"4954":4606,"4955":1388,"4956":8152,"4957":3350,"4958":7530,"4959":9610,"4960":9500,"4961":7815,"4962":5887,"4963":6002,"4964":8554,"4965":2139,"4966":1642,"4967":7343,"4968":8953,"4969":7969,"4970":2269,"4971":3565,"4972":6063,"4973":2195,"4974":4714,"4975":3542,"4976":9368,"4977":3416,"4978":1370,"4979":7089,"4980":8817,"4981":10851,"4982":10583,"4983":10169,"4984":8440,"4985":10476,"4986":363,"4987":8337,"4988":7371,"4989":5147,"4990":9540,"4991":7261,"4992":4869,"4993":8235,"4994":5168,"4995":2600,"4996":1006,"4997":5782,"4998":8683,"4999":10114,"5000":9955,"5001":10686,"5002":4889,"5003":1746,"5004":6806,"5005":10949,"5006":7232,"5007":3111,"5008":1311,"5009":2772,"5010":9042,"5011":838,"5012":2277,"5013":6445,"5014":5547,"5015":10546,"5016":282,"5017":448,"5018":2646,"5019":1752,"5020":1424,"5021":3161,"5022":342,"5023":2618,"5024":9971,"5025":4609,"5026":9541,"5027":7156,"5028":8798,"5029":5728,"5030":10312,"5031":4508,"5032":3191,"5033":1205,"5034":610,"5035":6395,"5036":7424,"5037":441,"5038":4571,"5039":9530,"5040":2329,"5041":6630,"5042":3225,"5043":3598,"5044":10888,"5045":4175,"5046":17,"5047":3029,"5048":1104,"5049":701,"5050":10537,"5051":2624,"5052":2527,"5053":2194,"5054":3617,"5055":10883,"5056":3299,"5057":5660,"5058":7295,"5059":7216,"5060":1788,"5061":2080,"5062":342,"5063":2683,"5064":4380,"5065":1704,"5066":5221,"5067":7495,"5068":1889,"5069":2577,"5070":10120,"5071":5903,"5072":2104,"5073":2035,"5074":7460,"5075":7074,"5076":1319,"5077":5366,"5078":4118,"5079":9824,"5080":5408,"5081":4888,"5082":3183,"5083":1616,"5084":4628,"5085":10373,"5086":9124,"5087":7314,"5088":9500,"5089":9648,"5090":10989,"5091":7438,"5092":2079,"5093":6583,"5094":5020,"5095":1485,"5096":10608,"5097":584,"5098":7132,"5099":1076,"5100":4744,"5101":2598,"5102":3552,"5103":6538,"5104":3278,"5105":2446,"5106":2738,"5107":3548,"5108":8948,"5109":349,"5110":1405,"5111":3268,"5112":6972,"5113":7408,"5114":10078,"5115":8377,"5116":7093,"5117":4245,"5118":673,"5119":6508,"5120":6664,"5121":6108,"5122":4585,"5123":1323,"5124":10226,"5125":195,"5126":3953,"5127":8658,"5128":166,"5129":5810,"5130":10266,"5131":594,"5132":3082,"5133":5747,"5134":4736,"5135":1520,"5136":10480,"5137":7555,"5138":7338,"5139":657,"5140":6898,"5141":7515,"5142":3180,"5143":597,"5144":8205,"5145":1500,"5146":2761,"5147":7180,"5148":4944,"5149":7553,"5150":8663,"5151":8231,"5152":9453,"5153":7596,"5154":989,"5155":8630,"5156":8163,"5157":8087,"5158":6398,"5159":8102,"5160":5457,"5161":3609,"5162":6190,"5163":7538,"5164":3879,"5165":3478,"5166":8643,"5167":5522,"5168":6113,"5169":7133,"5170":1768,"5171":8987,"5172":3581,"5173":289,"5174":8981,"5175":8884,"5176":1689,"5177":2191,"5178":4617,"5179":2133,"5180":5124,"5181":9551,"5182":3260,"5183":7198,"5184":4479,"5185":2836,"5186":2512,"5187":7202,"5188":5582,"5189":10939,"5190":502,"5191":1605,"5192":2267,"5193":2479,"5194":2667,"5195":1727,"5196":2682,"5197":4412,"5198":7926,"5199":3515,"5200":1636,"5201":8934,"5202":1571,"5203":5686,"5204":1795,"5205":10896,"5206":2659,"5207":5508,"5208":8774,"5209":3232,"5210":4461,"5211":8210,"5212":4083,"5213":5292,"5214":8912,"5215":4434,"5216":6988,"5217":3304,"5218":2349,"5219":4361,"5220":246,"5221":6907,"5222":818,"5223":5739,"5224":1082,"5225":2967,"5226":5034,"5227":3824,"5228":9532,"5229":575,"5230":4378,"5231":1742,"5232":9220,"5233":4355,"5234":4276,"5235":8443,"5236":3474,"5237":8516,"5238":4359,"5239":1599,"5240":4076,"5241":5302,"5242":9063,"5243":1757,"5244":10096,"5245":4402,"5246":9849,"5247":1125,"5248":8171,"5249":10500,"5250":7992,"5251":8669,"5252":10141,"5253":1585,"5254":9928,"5255":6707,"5256":6004,"5257":9490,"5258":1216,"5259":1174,"5260":8556,"5261":3584,"5262":3059,"5263":6632,"5264":3052,"5265":9316,"5266":3474,"5267":2439,"5268":2406,"5269":7358,"5270":8414,"5271":9133,"5272":5187,"5273":6246,"5274":10,"5275":8849,"5276":8004,"5277":6621,"5278":9542,"5279":2064,"5280":6801,"5281":2474,"5282":2911,"5283":926,"5284":1298,"5285":1791,"5286":4749,"5287":5604,"5288":9731,"5289":4026,"5290":8072,"5291":6781,"5292":1258,"5293":710,"5294":8293,"5295":10462,"5296":1823,"5297":9547,"5298":4617,"5299":6350,"5300":6451,"5301":9152,"5302":7377,"5303":5034,"5304":7301,"5305":3825,"5306":2042,"5307":6403,"5308":2553,"5309":471,"5310":9003,"5311":3049,"5312":3487,"5313":7762,"5314":6588,"5315":2083,"5316":3997,"5317":4523,"5318":10316,"5319":3367,"5320":5442,"5321":4349,"5322":9115,"5323":1732,"5324":4740,"5325":8757,"5326":3190,"5327":5081,"5328":1177,"5329":1454,"5330":4064,"5331":6652,"5332":2377,"5333":7018,"5334":10368,"5335":3370,"5336":2873,"5337":6756,"5338":9247,"5339":6591,"5340":722,"5341":8696,"5342":10243,"5343":8707,"5344":10344,"5345":5543,"5346":9679,"5347":10185,"5348":5983,"5349":105,"5350":7497,"5351":7741,"5352":7623,"5353":7763,"5354":1443,"5355":4127,"5356":9361,"5357":8895,"5358":6871,"5359":2591,"5360":7470,"5361":9520,"5362":3460,"5363":684,"5364":9414,"5365":5589,"5366":2125,"5367":9910,"5368":5041,"5369":10850,"5370":8830,"5371":5281,"5372":742,"5373":2406,"5374":6719,"5375":3800,"5376":2662,"5377":10867,"5378":9828,"5379":1296,"5380":2698,"5381":2935,"5382":1390,"5383":7910,"5384":1957,"5385":951,"5386":285,"5387":5206,"5388":6671,"5389":3937,"5390":6336,"5391":39,"5392":8934,"5393":7941,"5394":9730,"5395":1796,"5396":7812,"5397":2999,"5398":10799,"5399":10341,"5400":3203,"5401":10872,"5402":9976,"5403":6243,"5404":7383,"5405":6303,"5406":9051,"5407":10697,"5408":2659,"5409":7990,"5410":7342,"5411":6691,"5412":4068,"5413":5888,"5414":4098,"5415":6351,"5416":8541,"5417":656,"5418":1462,"5419":3,"5420":1341,"5421":5922,"5422":426,"5423":5000,"5424":8793,"5425":8855,"5426":8785,"5427":10898,"5428":5611,"5429":8030,"5430":1877,"5431":6358,"5432":3799,"5433":1668,"5434":2712,"5435":5801,"5436":215,"5437":6283,"5438":9696,"5439":6162,"5440":1635,"5441":10462,"5442":9393,"5443":5189,"5444":10883,"5445":8703,"5446":3125,"5447":6302,"5448":4202,"5449":9126,"5450":3871,"5451":10535,"5452":9030,"5453":9133,"5454":6934,"5455":10161,"5456":3131,"5457":6864,"5458":1212,"5459":9861,"5460":9151,"5461":6329,"5462":9707,"5463":10703,"5464":1303,"5465":7611,"5466":6010,"5467":6812,"5468":8428,"5469":10781,"5470":6325,"5471":2662,"5472":4367,"5473":10696,"5474":1214,"5475":627,"5476":860,"5477":10994,"5478":2408,"5479":9733,"5480":10458,"5481":1328,"5482":6920,"5483":9859,"5484":9990,"5485":7661,"5486":3571,"5487":10546,"5488":4402,"5489":9810,"5490":7971,"5491":9657,"5492":176,"5493":9982,"5494":10607,"5495":9642,"5496":10576,"5497":7585,"5498":7121,"5499":6053,"5500":10876,"5501":8859,"5502":134,"5503":2468,"5504":1447,"5505":6165,"5506":2135,"5507":6165,"5508":7073,"5509":7296,"5510":2316,"5511":9799,"5512":10170,"5513":10326,"5514":5618,"5515":7798,"5516":1714,"5517":10740,"5518":6960,"5519":4755,"5520":9464,"5521":3457,"5522":9628,"5523":683,"5524":5365,"5525":4372,"5526":5788,"5527":3969,"5528":5895,"5529":1848,"5530":2654,"5531":6709,"5532":5321,"5533":5588,"5534":5678,"5535":2069,"5536":649,"5537":1624,"5538":8641,"5539":655,"5540":3472,"5541":146,"5542":8086,"5543":9795,"5544":880,"5545":3249,"5546":857,"5547":7447,"5548":10610,"5549":9333,"5550":7183,"5551":369,"5552":2146,"5553":6138,"5554":9107,"5555":1700,"5556":7878,"5557":3413,"5558":2120,"5559":3089,"5560":1247,"5561":802,"5562":9860,"5563":591,"5564":1251,"5565":9130,"5566":6590,"5567":6660,"5568":604,"5569":2157,"5570":7379,"5571":2900,"5572":286,"5573":7455,"5574":4527,"5575":9490,"5576":933,"5577":10925,"5578":5425,"5579":590,"5580":1449,"5581":1367,"5582":4394,"5583":4068,"5584":3620,"5585":7099,"5586":668,"5587":8383,"5588":1992,"5589":8430,"5590":3590,"5591":8410,"5592":106,"5593":5365,"5594":10690,"5595":7022,"5596":6935,"5597":9939,"5598":1615,"5599":4778,"5600":9216,"5601":2942,"5602":559,"5603":10262,"5604":1020,"5605":5354,"5606":400,"5607":10171,"5608":5518,"5609":252,"5610":7329,"5611":6048,"5612":7371,"5613":5797,"5614":5317,"5615":4771,"5616":6351,"5617":10834,"5618":7601,"5619":4974,"5620":10606,"5621":8914,"5622":2201,"5623":9684,"5624":8402,"5625":4684,"5626":10268,"5627":9894,"5628":567,"5629":4209,"5630":7077,"5631":4687,"5632":10408,"5633":6565,"5634":3,"5635":2445,"5636":263,"5637":5484,"5638":7370,"5639":8494,"5640":8540,"5641":10562,"5642":4136,"5643":9697,"5644":8324,"5645":662,"5646":10485,"5647":943,"5648":9180,"5649":5132,"5650":8723,"5651":5198,"5652":9801,"5653":10352,"5654":4317,"5655":3761,"5656":5612,"5657":7107,"5658":7738,"5659":552,"5660":1220,"5661":10335,"5662":10891,"5663":9522,"5664":940,"5665":2520,"5666":931,"5667":9692,"5668":4358,"5669":6671,"5670":7720,"5671":3649,"5672":3086,"5673":3623,"5674":10986,"5675":3659,"5676":9864,"5677":4373,"5678":1586,"5679":10521,"5680":3923,"5681":10324,"5682":1418,"5683":2686,"5684":2166,"5685":8821,"5686":3735,"5687":10570,"5688":5252,"5689":2129,"5690":50,"5691":4398,"5692":1023,"5693":2325,"5694":5553,"5695":7224,"5696":10770,"5697":5578,"5698":5674,"5699":4872,"5700":10960,"5701":9661,"5702":244,"5703":10613,"5704":9796,"5705":1664,"5706":2326,"5707":7631,"5708":7845,"5709":5718,"5710":5807,"5711":6642,"5712":2496,"5713":8593,"5714":93,"5715":7321,"5716":10959,"5717":10772,"5718":929,"5719":3679,"5720":2821,"5721":4807,"5722":7172,"5723":1831,"5724":6025,"5725":10,"5726":3435,"5727":8158,"5728":9169,"5729":9250,"5730":4957,"5731":8994,"5732":2088,"5733":861,"5734":9884,"5735":10435,"5736":6359,"5737":6695,"5738":5688,"5739":9917,"5740":2185,"5741":9881,"5742":5027,"5743":1020,"5744":3382,"5745":5804,"5746":10639,"5747":280,"5748":10622,"5749":1761,"5750":9042,"5751":1786,"5752":9523,"5753":5712,"5754":4607,"5755":7039,"5756":4384,"5757":3815,"5758":3002,"5759":5477,"5760":2805,"5761":10708,"5762":8899,"5763":2269,"5764":3638,"5765":8042,"5766":3609,"5767":10693,"5768":1681,"5769":8867,"5770":3445,"5771":3634,"5772":2316,"5773":2672,"5774":7399,"5775":89,"5776":3453,"5777":10996,"5778":7008,"5779":1823,"5780":2205,"5781":6085,"5782":5389,"5783":4560,"5784":2063,"5785":1214,"5786":8935,"5787":7131,"5788":8992,"5789":9502,"5790":4130,"5791":15,"5792":8663,"5793":5349,"5794":10042,"5795":10387,"5796":8710,"5797":8764,"5798":10994,"5799":2632,"5800":8933,"5801":1366,"5802":9297,"5803":5287,"5804":8373,"5805":5291,"5806":99,"5807":105,"5808":5272,"5809":8465,"5810":8829,"5811":9463,"5812":3998,"5813":4749,"5814":5180,"5815":4121,"5816":5198,"5817":8983,"5818":3381,"5819":5007,"5820":7841,"5821":10938,"5822":5206,"5823":10289,"5824":5644,"5825":4624,"5826":4441,"5827":7120,"5828":10065,"5829":1651,"5830":4716,"5831":391,"5832":2052,"5833":9624,"5834":5232,"5835":2653,"5836":10750,"5837":3443,"5838":3600,"5839":2187,"5840":4305,"5841":5909,"5842":10987,"5843":8355,"5844":10427,"5845":2660,"5846":8647,"5847":493,"5848":10980,"5849":5703,"5850":3339,"5851":6552,"5852":3447,"5853":234,"5854":3511,"5855":7895,"5856":9926,"5857":5436,"5858":574,"5859":555,"5860":6267,"5861":2184,"5862":7179,"5863":6890,"5864":6545,"5865":4892,"5866":983,"5867":8825,"5868":2394,"5869":7977,"5870":2178,"5871":582,"5872":8156,"5873":834,"5874":7422,"5875":4445,"5876":8811,"5877":584,"5878":490,"5879":7204,"5880":3993,"5881":8160,"5882":4110,"5883":9816,"5884":8819,"5885":4791,"5886":8813,"5887":9263,"5888":10324,"5889":10931,"5890":6443,"5891":607,"5892":10468,"5893":3842,"5894":6143,"5895":1560,"5896":6075,"5897":7308,"5898":4862,"5899":8531,"5900":4094,"5901":4978,"5902":2805,"5903":8739,"5904":8678,"5905":7873,"5906":4357,"5907":6705,"5908":66,"5909":5804,"5910":6064,"5911":6266,"5912":6428,"5913":234,"5914":10209,"5915":916,"5916":4428,"5917":8712,"5918":9479,"5919":3812,"5920":4690,"5921":10197,"5922":10672,"5923":3623,"5924":9746,"5925":8466,"5926":3114,"5927":1256,"5928":8628,"5929":2382,"5930":5702,"5931":3078,"5932":1435,"5933":8277,"5934":3358,"5935":367,"5936":7511,"5937":8245,"5938":6381,"5939":2009,"5940":4737,"5941":10274,"5942":676,"5943":7105,"5944":1865,"5945":3571,"5946":3831,"5947":10945,"5948":5034,"5949":8566,"5950":5599,"5951":3391,"5952":8310,"5953":489,"5954":1787,"5955":1101,"5956":4814,"5957":1314,"5958":5944,"5959":9327,"5960":693,"5961":10449,"5962":5802,"5963":8457,"5964":8105,"5965":9256,"5966":7480,"5967":8448,"5968":9178,"5969":4925,"5970":10667,"5971":7756,"5972":3219,"5973":8924,"5974":1170,"5975":1531,"5976":7023,"5977":7822,"5978":5219,"5979":2035,"5980":4525,"5981":3880,"5982":3624,"5983":651,"5984":3081,"5985":1109,"5986":2556,"5987":10691,"5988":4675,"5989":5908,"5990":6902,"5991":39,"5992":916,"5993":2580,"5994":1344,"5995":10618,"5996":7186,"5997":6782,"5998":4330,"5999":7597,"6000":4969,"6001":10381,"6002":8433,"6003":3742,"6004":8500,"6005":3679,"6006":10099,"6007":4284,"6008":3061,"6009":3081,"6010":2930,"6011":8076,"6012":301,"6013":7813,"6014":2565,"6015":2368,"6016":3136,"6017":6967,"6018":9911,"6019":2672,"6020":7619,"6021":5603,"6022":8763,"6023":6564,"6024":3126,"6025":1339,"6026":6028,"6027":134,"6028":9659,"6029":1334,"6030":6398,"6031":2584,"6032":4124,"6033":10089,"6034":3503,"6035":573,"6036":4119,"6037":5830,"6038":1843,"6039":708,"6040":4847,"6041":9798,"6042":9459,"6043":7089,"6044":9308,"6045":1010,"6046":7254,"6047":9259,"6048":3812,"6049":10750,"6050":511,"6051":10520,"6052":891,"6053":8392,"6054":1477,"6055":4547,"6056":6285,"6057":2898,"6058":6184,"6059":1625,"6060":2930,"6061":4639,"6062":4216,"6063":3263,"6064":909,"6065":8464,"6066":3032,"6067":5675,"6068":1182,"6069":7369,"6070":6895,"6071":1936,"6072":3729,"6073":3302,"6074":5492,"6075":5631,"6076":9375,"6077":10685,"6078":3200,"6079":286,"6080":3242,"6081":1046,"6082":1235,"6083":3383,"6084":8954,"6085":7722,"6086":586,"6087":6493,"6088":8408,"6089":8629,"6090":10222,"6091":4504,"6092":9546,"6093":10128,"6094":780,"6095":1783,"6096":1040,"6097":3737,"6098":2626,"6099":7221,"6100":4673,"6101":6063,"6102":5036,"6103":2111,"6104":2105,"6105":9830,"6106":5622,"6107":2509,"6108":5457,"6109":2879,"6110":5004,"6111":8042,"6112":6511,"6113":3735,"6114":3732,"6115":3697,"6116":10201,"6117":5734,"6118":3273,"6119":6993,"6120":707,"6121":7958,"6122":324,"6123":9128,"6124":859,"6125":2158,"6126":3740,"6127":142,"6128":8962,"6129":1755,"6130":559,"6131":2408,"6132":2253,"6133":6630,"6134":2726,"6135":4936,"6136":5578,"6137":8320,"6138":7903,"6139":9932,"6140":1127,"6141":7589,"6142":4106,"6143":10739,"6144":5719,"6145":1467,"6146":2906,"6147":6482,"6148":6851,"6149":4632,"6150":1160,"6151":6793,"6152":10353,"6153":443,"6154":6379,"6155":359,"6156":3698,"6157":5803,"6158":7772,"6159":3341,"6160":3332,"6161":7199,"6162":7915,"6163":5003,"6164":9455,"6165":9762,"6166":2562,"6167":1596,"6168":5980,"6169":4198,"6170":8411,"6171":8194,"6172":9468,"6173":1446,"6174":8251,"6175":7049,"6176":2766,"6177":5694,"6178":9318,"6179":10891,"6180":2610,"6181":5039,"6182":2665,"6183":5170,"6184":2644,"6185":8155,"6186":9840,"6187":919,"6188":6686,"6189":7383,"6190":7233,"6191":2657,"6192":7130,"6193":4048,"6194":1120,"6195":2396,"6196":1699,"6197":6933,"6198":10933,"6199":9298,"6200":6449,"6201":610,"6202":3567,"6203":9317,"6204":6643,"6205":10682,"6206":2093,"6207":113,"6208":2586,"6209":8289,"6210":5334,"6211":6598,"6212":6268,"6213":2739,"6214":9210,"6215":7422,"6216":8439,"6217":4432,"6218":1882,"6219":5354,"6220":4611,"6221":6799,"6222":9521,"6223":8439,"6224":8560,"6225":2049,"6226":9981,"6227":2398,"6228":8774,"6229":8743,"6230":7623,"6231":6688,"6232":7402,"6233":109,"6234":9148,"6235":2566,"6236":1338,"6237":8774,"6238":705,"6239":5835,"6240":5871,"6241":2660,"6242":1517,"6243":2126,"6244":1748,"6245":205,"6246":7879,"6247":6621,"6248":3018,"6249":1691,"6250":5523,"6251":9565,"6252":7288,"6253":7432,"6254":4501,"6255":3502,"6256":10154,"6257":3317,"6258":3849,"6259":1140,"6260":4632,"6261":8759,"6262":1772,"6263":203,"6264":4478,"6265":8510,"6266":2060,"6267":8333,"6268":9110,"6269":3848,"6270":8327,"6271":7138,"6272":2828,"6273":5601,"6274":2700,"6275":4567,"6276":7762,"6277":187,"6278":4631,"6279":10922,"6280":6622,"6281":2656,"6282":4917,"6283":8841,"6284":8685,"6285":6939,"6286":6829,"6287":3080,"6288":5258,"6289":5160,"6290":2796,"6291":6437,"6292":2111,"6293":8057,"6294":3505,"6295":6079,"6296":7470,"6297":6999,"6298":2248,"6299":8708,"6300":8649,"6301":3113,"6302":9107,"6303":5507,"6304":9057,"6305":8274,"6306":10518,"6307":2121,"6308":3652,"6309":10768,"6310":8511,"6311":9362,"6312":2820,"6313":9668,"6314":6301,"6315":7776,"6316":8465,"6317":6076,"6318":3750,"6319":8003,"6320":7677,"6321":925,"6322":10536,"6323":8181,"6324":10373,"6325":2717,"6326":5930,"6327":7292,"6328":6656,"6329":7399,"6330":3278,"6331":10001,"6332":4938,"6333":6381,"6334":2217,"6335":7061,"6336":7240,"6337":3957,"6338":6795,"6339":92,"6340":8897,"6341":1293,"6342":162,"6343":767,"6344":5133,"6345":518,"6346":4768,"6347":4026,"6348":4404,"6349":10942,"6350":7568,"6351":9841,"6352":4564,"6353":8062,"6354":3206,"6355":1917,"6356":4154,"6357":10264,"6358":9601,"6359":4065,"6360":9702,"6361":7740,"6362":2388,"6363":4188,"6364":5169,"6365":7446,"6366":9443,"6367":1405,"6368":2905,"6369":9249,"6370":2588,"6371":8084,"6372":9144,"6373":9954,"6374":3459,"6375":10937,"6376":7002,"6377":9368,"6378":259,"6379":7520,"6380":2155,"6381":2379,"6382":4695,"6383":2610,"6384":10379,"6385":10203,"6386":8623,"6387":489,"6388":6225,"6389":6576,"6390":5973,"6391":963,"6392":2236,"6393":10865,"6394":8256,"6395":4606,"6396":712,"6397":7210,"6398":4879,"6399":9044,"6400":3946,"6401":6382,"6402":7000,"6403":1729,"6404":5527,"6405":5192,"6406":4958,"6407":9106,"6408":9466,"6409":5096,"6410":4840,"6411":1470,"6412":2841,"6413":6327,"6414":9119,"6415":1046,"6416":2446,"6417":8594,"6418":1828,"6419":10543,"6420":9123,"6421":4781,"6422":10815,"6423":3395,"6424":2990,"6425":506,"6426":4946,"6427":10964,"6428":8803,"6429":1729,"6430":1152,"6431":6882,"6432":4900,"6433":7076,"6434":1718,"6435":9814,"6436":6323,"6437":6304,"6438":5353,"6439":3677,"6440":8841,"6441":6239,"6442":8356,"6443":5529,"6444":6814,"6445":7466,"6446":8317,"6447":1607,"6448":5775,"6449":5490,"6450":10780,"6451":2518,"6452":3130,"6453":9156,"6454":5159,"6455":634,"6456":11,"6457":7750,"6458":3855,"6459":9697,"6460":10659,"6461":7889,"6462":9472,"6463":8773,"6464":10072,"6465":9023,"6466":984,"6467":5668,"6468":2532,"6469":4783,"6470":10027,"6471":725,"6472":9969,"6473":5454,"6474":10205,"6475":9127,"6476":2093,"6477":2663,"6478":3276,"6479":3559,"6480":8157,"6481":2196,"6482":5730,"6483":6912,"6484":6880,"6485":10634,"6486":1794,"6487":346,"6488":461,"6489":10011,"6490":5268,"6491":5032,"6492":4242,"6493":9079,"6494":6814,"6495":9905,"6496":75,"6497":2363,"6498":9004,"6499":8314,"6500":4964,"6501":10495,"6502":595,"6503":884,"6504":5848,"6505":7337,"6506":10360,"6507":3561,"6508":9948,"6509":14,"6510":2393,"6511":9013,"6512":2319,"6513":174,"6514":9415,"6515":6421,"6516":329,"6517":3390,"6518":1249,"6519":3462,"6520":316,"6521":206,"6522":2064,"6523":1547,"6524":1353,"6525":7570,"6526":1609,"6527":5037,"6528":9040,"6529":5790,"6530":3248,"6531":4637,"6532":7901,"6533":7431,"6534":5631,"6535":3843,"6536":10094,"6537":4318,"6538":5516,"6539":2991,"6540":3982,"6541":1437,"6542":10941,"6543":5398,"6544":10913,"6545":1815,"6546":8743,"6547":4106,"6548":3497,"6549":4373,"6550":5503,"6551":3618,"6552":2470,"6553":6245,"6554":4497,"6555":1819,"6556":10641,"6557":1453,"6558":3686,"6559":2860,"6560":5097,"6561":2041,"6562":3980,"6563":10516,"6564":5051,"6565":6337,"6566":5075,"6567":9347,"6568":5068,"6569":7772,"6570":9542,"6571":8835,"6572":246,"6573":10974,"6574":9666,"6575":7426,"6576":963,"6577":1283,"6578":3752,"6579":4411,"6580":3792,"6581":10221,"6582":6212,"6583":5533,"6584":6577,"6585":2045,"6586":7491,"6587":8643,"6588":3970,"6589":6537,"6590":5632,"6591":3001,"6592":1463,"6593":6956,"6594":5742,"6595":5617,"6596":5597,"6597":8952,"6598":6240,"6599":9534,"6600":7324,"6601":4018,"6602":10340,"6603":7002,"6604":4408,"6605":6365,"6606":6117,"6607":1638,"6608":5519,"6609":2532,"6610":8942,"6611":880,"6612":6761,"6613":2843,"6614":934,"6615":1924,"6616":3275,"6617":9637,"6618":1315,"6619":1835,"6620":1050,"6621":1055,"6622":2452,"6623":7563,"6624":2659,"6625":5701,"6626":10666,"6627":4023,"6628":9915,"6629":4386,"6630":197,"6631":578,"6632":1862,"6633":1263,"6634":6029,"6635":5552,"6636":38,"6637":7740,"6638":3289,"6639":918,"6640":5460,"6641":4386,"6642":6750,"6643":8166,"6644":1078,"6645":9710,"6646":6838,"6647":5802,"6648":9427,"6649":10962,"6650":3662,"6651":3466,"6652":3608,"6653":7699,"6654":5330,"6655":7739,"6656":2235,"6657":9445,"6658":3130,"6659":4335,"6660":203,"6661":6393,"6662":2598,"6663":9219,"6664":4763,"6665":8211,"6666":8473,"6667":1629,"6668":1675,"6669":5089,"6670":7255,"6671":6149,"6672":2291,"6673":2661,"6674":6960,"6675":2458,"6676":10214,"6677":5585,"6678":3140,"6679":2528,"6680":8739,"6681":6556,"6682":506,"6683":1721,"6684":414,"6685":1805,"6686":6224,"6687":3347,"6688":5728,"6689":64,"6690":7985,"6691":8082,"6692":10475,"6693":10951,"6694":3289,"6695":8049,"6696":7318,"6697":10517,"6698":3001,"6699":2884,"6700":9772,"6701":6093,"6702":3791,"6703":4053,"6704":9142,"6705":7062,"6706":6754,"6707":1877,"6708":1487,"6709":4883,"6710":905,"6711":189,"6712":7665,"6713":8578,"6714":366,"6715":1600,"6716":8425,"6717":8948,"6718":698,"6719":6248,"6720":7666,"6721":5415,"6722":8379,"6723":6397,"6724":7345,"6725":10627,"6726":3964,"6727":6116,"6728":10743,"6729":5919,"6730":4065,"6731":8751,"6732":10396,"6733":4409,"6734":3059,"6735":2960,"6736":4669,"6737":2905,"6738":10505,"6739":5316,"6740":10453,"6741":8222,"6742":6625,"6743":4645,"6744":10452,"6745":5452,"6746":10961,"6747":9014,"6748":2567,"6749":8127,"6750":588,"6751":6817,"6752":9227,"6753":5127,"6754":8494,"6755":4612,"6756":9523,"6757":8326,"6758":9809,"6759":3033,"6760":6359,"6761":10009,"6762":7145,"6763":4440,"6764":5376,"6765":3517,"6766":3380,"6767":4599,"6768":7724,"6769":2061,"6770":4809,"6771":910,"6772":3137,"6773":8548,"6774":5796,"6775":5042,"6776":5685,"6777":2029,"6778":4569,"6779":5610,"6780":4424,"6781":1122,"6782":6297,"6783":7069,"6784":3335,"6785":6626,"6786":10599,"6787":9916,"6788":455,"6789":7409,"6790":7,"6791":3785,"6792":1582,"6793":6608,"6794":3914,"6795":9807,"6796":3510,"6797":7006,"6798":7924,"6799":7291,"6800":1559,"6801":8074,"6802":2221,"6803":5709,"6804":2525,"6805":6134,"6806":7073,"6807":6808,"6808":3852,"6809":5920,"6810":2110,"6811":1965,"6812":4899,"6813":8462,"6814":333,"6815":439,"6816":6582,"6817":2281,"6818":8854,"6819":3731,"6820":660,"6821":8383,"6822":7102,"6823":10967,"6824":4847,"6825":6006,"6826":2561,"6827":9925,"6828":6519,"6829":7065,"6830":2528,"6831":2113,"6832":4636,"6833":8523,"6834":4881,"6835":8764,"6836":8454,"6837":3611,"6838":6439,"6839":3922,"6840":4188,"6841":6160,"6842":3902,"6843":1220,"6844":624,"6845":953,"6846":1782,"6847":7975,"6848":4242,"6849":3687,"6850":10626,"6851":5128,"6852":9565,"6853":10030,"6854":3632,"6855":4298,"6856":9268,"6857":3316,"6858":1972,"6859":6895,"6860":5665,"6861":4315,"6862":4184,"6863":1889,"6864":8003,"6865":8393,"6866":8452,"6867":3180,"6868":1026,"6869":3441,"6870":8824,"6871":4774,"6872":9993,"6873":5024,"6874":3479,"6875":10116,"6876":1433,"6877":3404,"6878":7963,"6879":4874,"6880":3805,"6881":780,"6882":3973,"6883":10684,"6884":3091,"6885":3022,"6886":7604,"6887":942,"6888":5188,"6889":2006,"6890":8266,"6891":5149,"6892":5214,"6893":7972,"6894":1982,"6895":3650,"6896":1103,"6897":8394,"6898":6515,"6899":607,"6900":6719,"6901":4224,"6902":6479,"6903":1647,"6904":10010,"6905":5781,"6906":7055,"6907":4065,"6908":6606,"6909":3371,"6910":6050,"6911":897,"6912":1943,"6913":6391,"6914":6880,"6915":9790,"6916":7412,"6917":9065,"6918":9247,"6919":3688,"6920":4178,"6921":292,"6922":7316,"6923":5736,"6924":1998,"6925":3969,"6926":10860,"6927":8202,"6928":2545,"6929":8734,"6930":1884,"6931":2243,"6932":2253,"6933":9433,"6934":2304,"6935":9743,"6936":8431,"6937":10805,"6938":5139,"6939":2569,"6940":7378,"6941":5518,"6942":3207,"6943":7673,"6944":6817,"6945":36,"6946":4170,"6947":9018,"6948":8257,"6949":7109,"6950":9293,"6951":1824,"6952":5188,"6953":8475,"6954":6090,"6955":172,"6956":10909,"6957":8591,"6958":6745,"6959":9376,"6960":8084,"6961":2338,"6962":1994,"6963":9301,"6964":531,"6965":4854,"6966":8885,"6967":2365,"6968":6372,"6969":6265,"6970":7143,"6971":3414,"6972":44,"6973":9363,"6974":9232,"6975":1143,"6976":10397,"6977":5785,"6978":10675,"6979":10097,"6980":3584,"6981":2022,"6982":1606,"6983":9440,"6984":998,"6985":10173,"6986":8374,"6987":10541,"6988":6454,"6989":5712,"6990":3547,"6991":1018,"6992":8005,"6993":8030,"6994":2723,"6995":7341,"6996":7356,"6997":7414,"6998":995,"6999":985,"7000":6214,"7001":6975,"7002":7481,"7003":8493,"7004":9601,"7005":6755,"7006":6930,"7007":7295,"7008":4443,"7009":7771,"7010":10268,"7011":2560,"7012":3191,"7013":9690,"7014":3020,"7015":275,"7016":9421,"7017":6963,"7018":10948,"7019":2346,"7020":2097,"7021":7270,"7022":6802,"7023":9278,"7024":1961,"7025":907,"7026":5240,"7027":1492,"7028":2181,"7029":3421,"7030":7130,"7031":5894,"7032":7258,"7033":10574,"7034":210,"7035":10515,"7036":8225,"7037":527,"7038":7762,"7039":4751,"7040":7358,"7041":3953,"7042":5621,"7043":2720,"7044":10283,"7045":9103,"7046":7889,"7047":9080,"7048":10720,"7049":10122,"7050":4912,"7051":1200,"7052":7154,"7053":4465,"7054":2150,"7055":1112,"7056":8814,"7057":4159,"7058":8991,"7059":5113,"7060":10575,"7061":4279,"7062":2584,"7063":6678,"7064":2832,"7065":6525,"7066":4271,"7067":5677,"7068":7849,"7069":6681,"7070":5467,"7071":10750,"7072":9737,"7073":4482,"7074":5074,"7075":5607,"7076":6371,"7077":5536,"7078":378,"7079":10762,"7080":3295,"7081":4940,"7082":1622,"7083":8143,"7084":10057,"7085":6460,"7086":2930,"7087":9538,"7088":6287,"7089":3662,"7090":4670,"7091":275,"7092":3551,"7093":579,"7094":4496,"7095":6931,"7096":8570,"7097":8085,"7098":3232,"7099":6680,"7100":1377,"7101":6250,"7102":1254,"7103":6510,"7104":7155,"7105":1199,"7106":6893,"7107":3701,"7108":5263,"7109":8012,"7110":6488,"7111":5,"7112":4961,"7113":9420,"7114":136,"7115":3580,"7116":7091,"7117":6398,"7118":10296,"7119":10398,"7120":2783,"7121":10649,"7122":10832,"7123":7730,"7124":7516,"7125":2481,"7126":10302,"7127":2095,"7128":1119,"7129":8195,"7130":6539,"7131":6184,"7132":5559,"7133":10824,"7134":152,"7135":10209,"7136":10519,"7137":4149,"7138":4193,"7139":2679,"7140":3770,"7141":589,"7142":8431,"7143":10809,"7144":5198,"7145":2094,"7146":7735,"7147":9996,"7148":1270,"7149":10088,"7150":8053,"7151":4945,"7152":5295,"7153":3006,"7154":6638,"7155":8877,"7156":3865,"7157":5398,"7158":8473,"7159":8725,"7160":7857,"7161":7238,"7162":4251,"7163":866,"7164":2623,"7165":5764,"7166":4928,"7167":4199,"7168":7966,"7169":54,"7170":3609,"7171":1346,"7172":6831,"7173":608,"7174":2007,"7175":517,"7176":3528,"7177":4039,"7178":724,"7179":4317,"7180":10054,"7181":9358,"7182":4046,"7183":9394,"7184":2749,"7185":1299,"7186":2256,"7187":6415,"7188":5617,"7189":4939,"7190":2439,"7191":8815,"7192":1124,"7193":1161,"7194":10995,"7195":7446,"7196":9252,"7197":190,"7198":5835,"7199":10959,"7200":10876,"7201":10569,"7202":10476,"7203":8915,"7204":730,"7205":1198,"7206":6408,"7207":6456,"7208":1500,"7209":6568,"7210":1525,"7211":8451,"7212":9383,"7213":9180,"7214":2743,"7215":9486,"7216":10614,"7217":8483,"7218":9436,"7219":8081,"7220":8850,"7221":10472,"7222":9110,"7223":9077,"7224":5938,"7225":5618,"7226":6301,"7227":8492,"7228":8385,"7229":6146,"7230":3645,"7231":10030,"7232":5687,"7233":6447,"7234":7534,"7235":2537,"7236":2642,"7237":10079,"7238":263,"7239":7351,"7240":6246,"7241":4326,"7242":10916,"7243":8337,"7244":9016,"7245":1225,"7246":9976,"7247":5336,"7248":10521,"7249":3719,"7250":5696,"7251":8338,"7252":3441,"7253":7389,"7254":10609,"7255":4417,"7256":9513,"7257":3300,"7258":8496,"7259":7381,"7260":7188,"7261":9720,"7262":9909,"7263":7199,"7264":1212,"7265":9518,"7266":3102,"7267":5688,"7268":949,"7269":4407,"7270":3594,"7271":760,"7272":6897,"7273":10728,"7274":8585,"7275":2637,"7276":2638,"7277":10107,"7278":5605,"7279":5386,"7280":10956,"7281":8279,"7282":4354,"7283":533,"7284":9652,"7285":5541,"7286":4220,"7287":2820,"7288":1477,"7289":6153,"7290":3255,"7291":6126,"7292":565,"7293":9980,"7294":6935,"7295":4856,"7296":6644,"7297":8384,"7298":3182,"7299":9871,"7300":3661,"7301":7028,"7302":4200,"7303":4800,"7304":4679,"7305":2440,"7306":4447,"7307":6047,"7308":8713,"7309":7997,"7310":5460,"7311":7602,"7312":9633,"7313":9719,"7314":6504,"7315":7180,"7316":2344,"7317":4124,"7318":5297,"7319":4656,"7320":955,"7321":8073,"7322":4671,"7323":10064,"7324":5342,"7325":8833,"7326":6232,"7327":2068,"7328":4165,"7329":3260,"7330":1465,"7331":1143,"7332":3496,"7333":9653,"7334":1239,"7335":6309,"7336":8144,"7337":7313,"7338":3680,"7339":8746,"7340":2244,"7341":825,"7342":10117,"7343":5121,"7344":7741,"7345":7572,"7346":9466,"7347":3765,"7348":2866,"7349":7707,"7350":3325,"7351":5454,"7352":4429,"7353":8597,"7354":10639,"7355":3177,"7356":4176,"7357":3032,"7358":2314,"7359":238,"7360":10181,"7361":10494,"7362":8818,"7363":6195,"7364":506,"7365":9632,"7366":1192,"7367":4437,"7368":2756,"7369":3579,"7370":4910,"7371":2819,"7372":3307,"7373":7258,"7374":3220,"7375":7613,"7376":5689,"7377":2277,"7378":7789,"7379":7270,"7380":9950,"7381":2540,"7382":5597,"7383":10435,"7384":6886,"7385":3996,"7386":5523,"7387":8158,"7388":10583,"7389":9144,"7390":3909,"7391":7837,"7392":9686,"7393":215,"7394":10135,"7395":10751,"7396":7642,"7397":4270,"7398":4880,"7399":6254,"7400":10608,"7401":765,"7402":9263,"7403":10201,"7404":1203,"7405":2618,"7406":9877,"7407":6982,"7408":8695,"7409":284,"7410":3754,"7411":2055,"7412":7726,"7413":10275,"7414":5856,"7415":8936,"7416":1022,"7417":5844,"7418":7330,"7419":9514,"7420":4397,"7421":5001,"7422":8542,"7423":9015,"7424":2504,"7425":2616,"7426":9761,"7427":3976,"7428":8589,"7429":75,"7430":6212,"7431":10491,"7432":1087,"7433":3676,"7434":1603,"7435":6047,"7436":4956,"7437":10873,"7438":1411,"7439":9391,"7440":4565,"7441":7847,"7442":2525,"7443":7623,"7444":10558,"7445":1765,"7446":50,"7447":10972,"7448":6236,"7449":5133,"7450":9803,"7451":5629,"7452":1092,"7453":2034,"7454":1694,"7455":1590,"7456":9207,"7457":4498,"7458":7423,"7459":10325,"7460":6789,"7461":3576,"7462":2710,"7463":6264,"7464":7466,"7465":4029,"7466":5984,"7467":2625,"7468":8832,"7469":7238,"7470":5825,"7471":3940,"7472":3441,"7473":9556,"7474":808,"7475":618,"7476":790,"7477":505,"7478":4464,"7479":573,"7480":6289,"7481":3556,"7482":5785,"7483":7257,"7484":9712,"7485":8535,"7486":3373,"7487":1070,"7488":8044,"7489":9866,"7490":763,"7491":9862,"7492":4911,"7493":10498,"7494":7363,"7495":4919,"7496":6805,"7497":8224,"7498":10032,"7499":331,"7500":5786,"7501":1102,"7502":8674,"7503":704,"7504":7181,"7505":7035,"7506":8830,"7507":8546,"7508":3525,"7509":7546,"7510":6242,"7511":8194,"7512":3310,"7513":5237,"7514":3789,"7515":7472,"7516":6331,"7517":7230,"7518":2264,"7519":5863,"7520":3409,"7521":5222,"7522":5840,"7523":5944,"7524":586,"7525":8500,"7526":9751,"7527":9419,"7528":101,"7529":7645,"7530":3611,"7531":8033,"7532":8479,"7533":6783,"7534":9717,"7535":8414,"7536":2669,"7537":3238,"7538":8144,"7539":1005,"7540":10289,"7541":4070,"7542":2098,"7543":9034,"7544":88,"7545":3683,"7546":10971,"7547":4971,"7548":1236,"7549":66,"7550":3960,"7551":7048,"7552":1012,"7553":8180,"7554":9077,"7555":10189,"7556":7083,"7557":4967,"7558":6366,"7559":9016,"7560":4280,"7561":2999,"7562":6893,"7563":1050,"7564":5842,"7565":927,"7566":5894,"7567":9038,"7568":2442,"7569":1460,"7570":5661,"7571":4637,"7572":3600,"7573":6336,"7574":7556,"7575":4664,"7576":4692,"7577":2407,"7578":1953,"7579":6235,"7580":9341,"7581":10161,"7582":8764,"7583":3868,"7584":9505,"7585":652,"7586":1357,"7587":4607,"7588":5961,"7589":3449,"7590":4508,"7591":8122,"7592":10225,"7593":10299,"7594":4563,"7595":6996,"7596":5271,"7597":3030,"7598":1142,"7599":9519,"7600":5569,"7601":3940,"7602":2597,"7603":1259,"7604":9325,"7605":668,"7606":7367,"7607":8286,"7608":7332,"7609":2637,"7610":7508,"7611":6750,"7612":6849,"7613":5167,"7614":10408,"7615":2349,"7616":1232,"7617":9924,"7618":9282,"7619":6508,"7620":11,"7621":4624,"7622":5634,"7623":8236,"7624":9165,"7625":5257,"7626":5516,"7627":5831,"7628":7023,"7629":92,"7630":2258,"7631":10335,"7632":4141,"7633":4144,"7634":1906,"7635":9353,"7636":8246,"7637":9866,"7638":7745,"7639":5264,"7640":3753,"7641":9232,"7642":794,"7643":6235,"7644":1393,"7645":5983,"7646":3353,"7647":2975,"7648":4600,"7649":4027,"7650":10678,"7651":3903,"7652":10208,"7653":8767,"7654":7961,"7655":1554,"7656":8372,"7657":1146,"7658":10441,"7659":5893,"7660":7862,"7661":7741,"7662":42,"7663":1660,"7664":2917,"7665":2483,"7666":782,"7667":3654,"7668":9623,"7669":8819,"7670":1367,"7671":10701,"7672":629,"7673":10903,"7674":5179,"7675":8815,"7676":8574,"7677":3324,"7678":4837,"7679":8747,"7680":652,"7681":3277,"7682":1186,"7683":8839,"7684":5616,"7685":247,"7686":1244,"7687":1801,"7688":2393,"7689":3834,"7690":2695,"7691":3450,"7692":4476,"7693":6427,"7694":481,"7695":6978,"7696":788,"7697":10586,"7698":6995,"7699":6773,"7700":262,"7701":5170,"7702":4148,"7703":1427,"7704":9095,"7705":7931,"7706":547,"7707":5963,"7708":1421,"7709":9014,"7710":9928,"7711":1005,"7712":6865,"7713":9816,"7714":2839,"7715":10202,"7716":10020,"7717":8118,"7718":9110,"7719":821,"7720":7438,"7721":4276,"7722":2491,"7723":3930,"7724":8595,"7725":9748,"7726":6302,"7727":9669,"7728":5512,"7729":1930,"7730":9063,"7731":4106,"7732":3329,"7733":312,"7734":1341,"7735":8239,"7736":4168,"7737":3509,"7738":10669,"7739":2792,"7740":2638,"7741":6928,"7742":10229,"7743":2052,"7744":4710,"7745":9566,"7746":4500,"7747":4052,"7748":7396,"7749":7924,"7750":8488,"7751":8145,"7752":7300,"7753":7435,"7754":1483,"7755":4483,"7756":2544,"7757":278,"7758":4021,"7759":1247,"7760":1323,"7761":2430,"7762":7488,"7763":518,"7764":3761,"7765":4239,"7766":2264,"7767":235,"7768":3451,"7769":7676,"7770":1006,"7771":9497,"7772":7804,"7773":3014,"7774":547,"7775":8074,"7776":7075,"7777":5659,"7778":1625,"7779":8520,"7780":9539,"7781":7884,"7782":474,"7783":2705,"7784":4682,"7785":1415,"7786":7498,"7787":220,"7788":4364,"7789":6055,"7790":529,"7791":4533,"7792":3721,"7793":5384,"7794":8601,"7795":4123,"7796":4688,"7797":1544,"7798":1318,"7799":6171,"7800":1139,"7801":4329,"7802":9023,"7803":2247,"7804":9940,"7805":6860,"7806":6768,"7807":6491,"7808":8755,"7809":6833,"7810":3095,"7811":10203,"7812":1977,"7813":7974,"7814":2031,"7815":7974,"7816":8526,"7817":9666,"7818":5728,"7819":7989,"7820":2573,"7821":7826,"7822":10671,"7823":3837,"7824":6849,"7825":6190,"7826":5837,"7827":7367,"7828":9718,"7829":574,"7830":6581,"7831":4607,"7832":8869,"7833":6044,"7834":2391,"7835":3988,"7836":250,"7837":5011,"7838":2406,"7839":6197,"7840":3832,"7841":3116,"7842":3011,"7843":8352,"7844":3535,"7845":10376,"7846":5836,"7847":1471,"7848":4913,"7849":2117,"7850":6658,"7851":843,"7852":806,"7853":10671,"7854":8170,"7855":5704,"7856":5058,"7857":3086,"7858":4680,"7859":7707,"7860":9346,"7861":2678,"7862":2201,"7863":3334,"7864":3706,"7865":5683,"7866":6018,"7867":3978,"7868":7543,"7869":124,"7870":9117,"7871":9645,"7872":9100,"7873":458,"7874":7288,"7875":6241,"7876":6013,"7877":7932,"7878":6930,"7879":7461,"7880":9879,"7881":2351,"7882":1634,"7883":1281,"7884":8755,"7885":2360,"7886":6982,"7887":7939,"7888":7880,"7889":7473,"7890":9840,"7891":5983,"7892":3718,"7893":9102,"7894":9240,"7895":5463,"7896":198,"7897":848,"7898":2378,"7899":4753,"7900":7736,"7901":4287,"7902":4160,"7903":1243,"7904":2053,"7905":2717,"7906":8168,"7907":9948,"7908":6213,"7909":8952,"7910":5574,"7911":642,"7912":5396,"7913":1066,"7914":2311,"7915":9456,"7916":10530,"7917":4450,"7918":7866,"7919":10352,"7920":697,"7921":8580,"7922":323,"7923":4637,"7924":2055,"7925":8753,"7926":9561,"7927":2861,"7928":4999,"7929":7998,"7930":4715,"7931":6925,"7932":9412,"7933":3509,"7934":2090,"7935":357,"7936":224,"7937":5877,"7938":4119,"7939":7541,"7940":5048,"7941":2993,"7942":2746,"7943":7842,"7944":165,"7945":10309,"7946":1685,"7947":416,"7948":8477,"7949":3790,"7950":989,"7951":3471,"7952":6718,"7953":4317,"7954":3748,"7955":10137,"7956":6227,"7957":7633,"7958":7316,"7959":5748,"7960":6184,"7961":8898,"7962":1774,"7963":2337,"7964":9285,"7965":10814,"7966":5302,"7967":3867,"7968":1104,"7969":10513,"7970":3258,"7971":9312,"7972":7277,"7973":9343,"7974":9931,"7975":1322,"7976":10881,"7977":8045,"7978":6261,"7979":8053,"7980":9920,"7981":1111,"7982":954,"7983":5730,"7984":2604,"7985":6800,"7986":4670,"7987":473,"7988":7897,"7989":1480,"7990":4945,"7991":2168,"7992":3486,"7993":5240,"7994":1324,"7995":4599,"7996":1094,"7997":6653,"7998":4538,"7999":917,"8000":540,"8001":10168,"8002":3301,"8003":5300,"8004":5340,"8005":5394,"8006":375,"8007":4117,"8008":8234,"8009":7140,"8010":7082,"8011":5305,"8012":9346,"8013":3118,"8014":5970,"8015":1543,"8016":368,"8017":2912,"8018":1617,"8019":1374,"8020":6909,"8021":4583,"8022":8411,"8023":9665,"8024":2102,"8025":2800,"8026":4506,"8027":5469,"8028":128,"8029":8372,"8030":7805,"8031":9966,"8032":2085,"8033":10522,"8034":6110,"8035":6547,"8036":6417,"8037":1158,"8038":7414,"8039":7171,"8040":9801,"8041":7711,"8042":7457,"8043":4605,"8044":7679,"8045":3764,"8046":132,"8047":10908,"8048":7370,"8049":7134,"8050":2284,"8051":10413,"8052":10000,"8053":7575,"8054":7972,"8055":5261,"8056":7228,"8057":5241,"8058":8309,"8059":2929,"8060":266,"8061":10301,"8062":1581,"8063":3078,"8064":3509,"8065":3933,"8066":2315,"8067":2311,"8068":7777,"8069":2688,"8070":2789,"8071":1143,"8072":4175,"8073":132,"8074":8541,"8075":2648,"8076":10078,"8077":9027,"8078":10226,"8079":10365,"8080":454,"8081":6900,"8082":5000,"8083":3518,"8084":5123,"8085":10026,"8086":1804,"8087":506,"8088":5665,"8089":718,"8090":2270,"8091":5605,"8092":10017,"8093":8983,"8094":8804,"8095":3012,"8096":9456,"8097":3584,"8098":10752,"8099":1001,"8100":3976,"8101":8220,"8102":8065,"8103":6305,"8104":1608,"8105":7331,"8106":9750,"8107":7642,"8108":10503,"8109":9902,"8110":5424,"8111":7027,"8112":9490,"8113":3400,"8114":7264,"8115":344,"8116":4248,"8117":6874,"8118":5610,"8119":4986,"8120":10156,"8121":7545,"8122":1072,"8123":1952,"8124":10474,"8125":9029,"8126":5773,"8127":9290,"8128":3170,"8129":164,"8130":4247,"8131":406,"8132":7903,"8133":10387,"8134":6852,"8135":7265,"8136":6355,"8137":6712,"8138":5024,"8139":9597,"8140":3377,"8141":8511,"8142":983,"8143":2661,"8144":3322,"8145":10345,"8146":2239,"8147":10584,"8148":4559,"8149":6316,"8150":6784,"8151":275,"8152":9069,"8153":1027,"8154":738,"8155":8942,"8156":4799,"8157":4862,"8158":9028,"8159":10265,"8160":7848,"8161":6510,"8162":1770,"8163":10827,"8164":6663,"8165":8570,"8166":7853,"8167":518,"8168":4809,"8169":3960,"8170":7601,"8171":1259,"8172":6649,"8173":4109,"8174":3460,"8175":3104,"8176":2298,"8177":429,"8178":9288,"8179":2080,"8180":9989,"8181":2949,"8182":10116,"8183":9450,"8184":5879,"8185":1830,"8186":5150,"8187":79,"8188":1356,"8189":5123,"8190":9748,"8191":3844,"8192":3028,"8193":9506,"8194":10215,"8195":1369,"8196":986,"8197":10702,"8198":6282,"8199":7806,"8200":7048,"8201":2261,"8202":10316,"8203":3333,"8204":2762,"8205":6263,"8206":2058,"8207":10779,"8208":922,"8209":8900,"8210":10605,"8211":7749,"8212":2702,"8213":5511,"8214":9089,"8215":2155,"8216":4974,"8217":7068,"8218":9890,"8219":3680,"8220":2680,"8221":2609,"8222":2779,"8223":8883,"8224":6559,"8225":2740,"8226":10923,"8227":5496,"8228":149,"8229":10206,"8230":7491,"8231":3427,"8232":8423,"8233":7949,"8234":1745,"8235":319,"8236":2031,"8237":3149,"8238":154,"8239":3720,"8240":8508,"8241":2371,"8242":10058,"8243":5576,"8244":4204,"8245":9237,"8246":725,"8247":4489,"8248":829,"8249":10813,"8250":10047,"8251":744,"8252":5405,"8253":5924,"8254":7470,"8255":7057,"8256":2907,"8257":7498,"8258":9236,"8259":2691,"8260":1264,"8261":679,"8262":9507,"8263":4722,"8264":8313,"8265":5528,"8266":947,"8267":4120,"8268":5084,"8269":2171,"8270":2928,"8271":6408,"8272":5556,"8273":1629,"8274":5787,"8275":7906,"8276":9898,"8277":7969,"8278":5745,"8279":7208,"8280":4517,"8281":4215,"8282":6544,"8283":2563,"8284":2278,"8285":9970,"8286":5201,"8287":7089,"8288":3862,"8289":9543,"8290":8128,"8291":1326,"8292":6318,"8293":1267,"8294":5008,"8295":5561,"8296":424,"8297":7966,"8298":8992,"8299":2245,"8300":9330,"8301":3346,"8302":4432,"8303":1366,"8304":3402,"8305":10739,"8306":285,"8307":8305,"8308":1047,"8309":9307,"8310":3223,"8311":5412,"8312":10584,"8313":6842,"8314":467,"8315":1635,"8316":4622,"8317":6700,"8318":9261,"8319":10570,"8320":1755,"8321":7818,"8322":6680,"8323":42,"8324":2791,"8325":5739,"8326":2337,"8327":2028,"8328":10393,"8329":10400,"8330":2317,"8331":9448,"8332":2644,"8333":290,"8334":3594,"8335":6232,"8336":9305,"8337":8252,"8338":974,"8339":7984,"8340":377,"8341":1051,"8342":4859,"8343":6180,"8344":1562,"8345":8628,"8346":4360,"8347":5561,"8348":5226,"8349":2635,"8350":9157,"8351":909,"8352":2395,"8353":2348,"8354":5064,"8355":7476,"8356":8539,"8357":7763,"8358":7292,"8359":879,"8360":7616,"8361":6958,"8362":4662,"8363":9481,"8364":6441,"8365":6913,"8366":9477,"8367":10055,"8368":567,"8369":3706,"8370":2872,"8371":1602,"8372":961,"8373":8001,"8374":2976,"8375":4054,"8376":8017,"8377":7583,"8378":5518,"8379":5770,"8380":616,"8381":1104,"8382":10691,"8383":6933,"8384":1833,"8385":4354,"8386":8047,"8387":10746,"8388":9797,"8389":10009,"8390":9658,"8391":8063,"8392":1233,"8393":8446,"8394":9993,"8395":3533,"8396":2321,"8397":8854,"8398":7593,"8399":5731,"8400":1632,"8401":4888,"8402":3012,"8403":9009,"8404":3181,"8405":10270,"8406":1078,"8407":7129,"8408":2859,"8409":5524,"8410":4189,"8411":10637,"8412":686,"8413":10892,"8414":4088,"8415":6242,"8416":6855,"8417":391,"8418":2951,"8419":8079,"8420":8070,"8421":7252,"8422":5781,"8423":8061,"8424":5154,"8425":9895,"8426":2320,"8427":4301,"8428":8076,"8429":1886,"8430":1463,"8431":3710,"8432":3256,"8433":482,"8434":6636,"8435":6046,"8436":8037,"8437":9701,"8438":10048,"8439":10260,"8440":5379,"8441":10801,"8442":6845,"8443":982,"8444":8971,"8445":242,"8446":952,"8447":3130,"8448":7832,"8449":5551,"8450":438,"8451":6610,"8452":3412,"8453":9290,"8454":5843,"8455":10504,"8456":3218,"8457":2944,"8458":10890,"8459":9452,"8460":10288,"8461":10322,"8462":2851,"8463":2345,"8464":2363,"8465":10694,"8466":8296,"8467":9379,"8468":7563,"8469":1638,"8470":10877,"8471":7216,"8472":4615,"8473":2555,"8474":9257,"8475":1240,"8476":4425,"8477":2035,"8478":135,"8479":5953,"8480":7889,"8481":49,"8482":8069,"8483":7251,"8484":520,"8485":4631,"8486":10418,"8487":2357,"8488":9180,"8489":9337,"8490":4783,"8491":7360,"8492":10359,"8493":6587,"8494":233,"8495":9840,"8496":6094,"8497":216,"8498":3947,"8499":5853,"8500":4872,"8501":6896,"8502":7626,"8503":6216,"8504":4746,"8505":5497,"8506":10174,"8507":3952,"8508":145,"8509":8722,"8510":2565,"8511":1036,"8512":10707,"8513":9854,"8514":8375,"8515":54,"8516":1471,"8517":2992,"8518":10322,"8519":6325,"8520":8499,"8521":9178,"8522":4327,"8523":9079,"8524":9800,"8525":1225,"8526":7598,"8527":5231,"8528":7518,"8529":1099,"8530":3985,"8531":10562,"8532":4583,"8533":5195,"8534":4791,"8535":9744,"8536":10927,"8537":2690,"8538":4026,"8539":10196,"8540":2163,"8541":8724,"8542":1468,"8543":6200,"8544":8500,"8545":2890,"8546":7102,"8547":762,"8548":6795,"8549":236,"8550":8091,"8551":1178,"8552":10524,"8553":4912,"8554":7644,"8555":1152,"8556":8638,"8557":4786,"8558":7268,"8559":8809,"8560":1540,"8561":4775,"8562":7527,"8563":3492,"8564":393,"8565":6500,"8566":4515,"8567":4983,"8568":3783,"8569":8894,"8570":10680,"8571":7985,"8572":5079,"8573":5114,"8574":1655,"8575":6472,"8576":2574,"8577":2408,"8578":6197,"8579":5793,"8580":5416,"8581":2234,"8582":7402,"8583":2282,"8584":8270,"8585":2719,"8586":6271,"8587":10686,"8588":5383,"8589":2803,"8590":3587,"8591":3652,"8592":5912,"8593":9396,"8594":6314,"8595":5800,"8596":8647,"8597":7300,"8598":5647,"8599":3641,"8600":8498,"8601":5489,"8602":1151,"8603":851,"8604":10399,"8605":2914,"8606":9237,"8607":274,"8608":9415,"8609":5552,"8610":8147,"8611":9041,"8612":2273,"8613":2424,"8614":2144,"8615":3779,"8616":6890,"8617":2404,"8618":8614,"8619":10689,"8620":8692,"8621":4451,"8622":8683,"8623":7194,"8624":10153,"8625":7069,"8626":1503,"8627":1888,"8628":2708,"8629":8902,"8630":9438,"8631":7795,"8632":9388,"8633":7986,"8634":8748,"8635":8592,"8636":9016,"8637":7928,"8638":7575,"8639":6227,"8640":7850,"8641":1748,"8642":2857,"8643":9169,"8644":7782,"8645":2671,"8646":1944,"8647":4844,"8648":627,"8649":10520,"8650":5681,"8651":8780,"8652":539,"8653":129,"8654":9425,"8655":9846,"8656":4331,"8657":3689,"8658":977,"8659":10651,"8660":6409,"8661":6460,"8662":1432,"8663":9393,"8664":3985,"8665":6628,"8666":1227,"8667":3417,"8668":1707,"8669":3310,"8670":6973,"8671":8228,"8672":5047,"8673":10007,"8674":4770,"8675":4856,"8676":2824,"8677":7497,"8678":3449,"8679":5386,"8680":6764,"8681":6073,"8682":8920,"8683":7069,"8684":8791,"8685":4699,"8686":6448,"8687":1275,"8688":9268,"8689":9320,"8690":10908,"8691":49,"8692":3435,"8693":10549,"8694":2398,"8695":5669,"8696":2178,"8697":9364,"8698":1959,"8699":3424,"8700":10140,"8701":1034,"8702":5177,"8703":5681,"8704":9896,"8705":7626,"8706":7274,"8707":8731,"8708":6601,"8709":3552,"8710":812,"8711":5862,"8712":3732,"8713":4574,"8714":3342,"8715":2688,"8716":6534,"8717":305,"8718":9451,"8719":9940,"8720":5410,"8721":851,"8722":9327,"8723":370,"8724":471,"8725":7071,"8726":3157,"8727":9481,"8728":3967,"8729":4511,"8730":2041,"8731":9581,"8732":6935,"8733":7519,"8734":1555,"8735":1886,"8736":3373,"8737":9429,"8738":2160,"8739":112,"8740":10303,"8741":9925,"8742":6991,"8743":4466,"8744":10119,"8745":10660,"8746":463,"8747":2169,"8748":7593,"8749":3595,"8750":10826,"8751":7829,"8752":380,"8753":2791,"8754":7413,"8755":3190,"8756":5044,"8757":6558,"8758":3549,"8759":2194,"8760":2426,"8761":5756,"8762":9996,"8763":8537,"8764":8683,"8765":5159,"8766":924,"8767":8215,"8768":7206,"8769":7287,"8770":5571,"8771":1255,"8772":1362,"8773":6849,"8774":7197,"8775":8805,"8776":3772,"8777":1517,"8778":8610,"8779":4144,"8780":3628,"8781":6261,"8782":3289,"8783":5365,"8784":6633,"8785":7946,"8786":7219,"8787":9813,"8788":5230,"8789":7293,"8790":7207,"8791":9909,"8792":2358,"8793":10177,"8794":8932,"8795":9847,"8796":8813,"8797":4694,"8798":3393,"8799":7495,"8800":10990,"8801":104,"8802":8896,"8803":554,"8804":5402,"8805":9843,"8806":7824,"8807":3544,"8808":9124,"8809":8245,"8810":10300,"8811":7066,"8812":7867,"8813":6534,"8814":4421,"8815":7322,"8816":3671,"8817":4994,"8818":2929,"8819":799,"8820":5111,"8821":166,"8822":9800,"8823":1335,"8824":8038,"8825":8714,"8826":10968,"8827":5553,"8828":38,"8829":341,"8830":2759,"8831":1943,"8832":6701,"8833":6994,"8834":1783,"8835":6103,"8836":1952,"8837":5049,"8838":9954,"8839":4156,"8840":8511,"8841":5158,"8842":9235,"8843":1340,"8844":7516,"8845":7923,"8846":9780,"8847":4426,"8848":8412,"8849":10409,"8850":5230,"8851":6082,"8852":4565,"8853":7482,"8854":10492,"8855":4243,"8856":6913,"8857":3490,"8858":1108,"8859":1925,"8860":9264,"8861":6514,"8862":2040,"8863":4789,"8864":9182,"8865":8990,"8866":8877,"8867":7539,"8868":5176,"8869":10560,"8870":10479,"8871":1223,"8872":958,"8873":10682,"8874":7403,"8875":9338,"8876":9154,"8877":4220,"8878":8422,"8879":5956,"8880":6142,"8881":1222,"8882":6257,"8883":5966,"8884":8225,"8885":7605,"8886":8503,"8887":9983,"8888":7090,"8889":9140,"8890":9339,"8891":7641,"8892":6586,"8893":9313,"8894":2711,"8895":6882,"8896":6846,"8897":542,"8898":5143,"8899":6197,"8900":878,"8901":575,"8902":6145,"8903":623,"8904":7191,"8905":6853,"8906":7879,"8907":299,"8908":4858,"8909":626,"8910":6637,"8911":8055,"8912":4251,"8913":1509,"8914":2084,"8915":1558,"8916":9755,"8917":7484,"8918":5861,"8919":2671,"8920":7397,"8921":10618,"8922":719,"8923":10467,"8924":2026,"8925":9476,"8926":5398,"8927":5514,"8928":1062,"8929":6782,"8930":720,"8931":8714,"8932":4714,"8933":8572,"8934":9150,"8935":10617,"8936":5506,"8937":5309,"8938":5689,"8939":7002,"8940":2989,"8941":10406,"8942":380,"8943":5199,"8944":5087,"8945":2828,"8946":10214,"8947":84,"8948":8821,"8949":3874,"8950":9898,"8951":60,"8952":6780,"8953":4361,"8954":9039,"8955":7450,"8956":4927,"8957":8506,"8958":10118,"8959":2896,"8960":2063,"8961":2804,"8962":7862,"8963":1500,"8964":7264,"8965":4622,"8966":6801,"8967":8114,"8968":1660,"8969":333,"8970":8962,"8971":5380,"8972":5127,"8973":5107,"8974":1795,"8975":10382,"8976":5245,"8977":390,"8978":8357,"8979":9526,"8980":7726,"8981":7693,"8982":10877,"8983":6450,"8984":136,"8985":499,"8986":10889,"8987":10410,"8988":3243,"8989":9911,"8990":3198,"8991":4987,"8992":1690,"8993":5920,"8994":9155,"8995":3759,"8996":926,"8997":9027,"8998":3938,"8999":7048,"9000":2716,"9001":5112,"9002":6097,"9003":5970,"9004":8240,"9005":9444,"9006":9020,"9007":5596,"9008":7876,"9009":4032,"9010":4610,"9011":6672,"9012":6550,"9013":147,"9014":3117,"9015":5472,"9016":8580,"9017":1392,"9018":3070,"9019":6564,"9020":7481,"9021":4215,"9022":6027,"9023":7882,"9024":9527,"9025":10472,"9026":4662,"9027":3755,"9028":10055,"9029":7080,"9030":2949,"9031":1042,"9032":3140,"9033":3750,"9034":6008,"9035":301,"9036":8857,"9037":7834,"9038":4470,"9039":7646,"9040":3901,"9041":1167,"9042":3064,"9043":2894,"9044":862,"9045":5144,"9046":10090,"9047":4903,"9048":98,"9049":3074,"9050":7308,"9051":3366,"9052":8398,"9053":10459,"9054":6683,"9055":9299,"9056":7706,"9057":1379,"9058":6065,"9059":6433,"9060":9082,"9061":903,"9062":2683,"9063":1785,"9064":7186,"9065":6432,"9066":4804,"9067":3181,"9068":10261,"9069":9930,"9070":637,"9071":6564,"9072":1861,"9073":7243,"9074":8107,"9075":9321,"9076":3325,"9077":10580,"9078":6890,"9079":4291,"9080":4908,"9081":10489,"9082":7073,"9083":5894,"9084":6887,"9085":5711,"9086":4806,"9087":6879,"9088":10472,"9089":8195,"9090":2977,"9091":8485,"9092":10689,"9093":7673,"9094":6165,"9095":1764,"9096":10152,"9097":4259,"9098":3617,"9099":3240,"9100":2697,"9101":8718,"9102":9013,"9103":2352,"9104":771,"9105":430,"9106":9785,"9107":46,"9108":5505,"9109":2811,"9110":9510,"9111":4455,"9112":9875,"9113":10485,"9114":1768,"9115":4205,"9116":9381,"9117":3805,"9118":2905,"9119":9732,"9120":1381,"9121":2754,"9122":5224,"9123":7163,"9124":1024,"9125":8301,"9126":7285,"9127":10631,"9128":8466,"9129":5188,"9130":3477,"9131":1846,"9132":4412,"9133":1172,"9134":6792,"9135":9727,"9136":6814,"9137":3758,"9138":6315,"9139":4499,"9140":8985,"9141":2881,"9142":4982,"9143":10512,"9144":6894,"9145":302,"9146":8272,"9147":2833,"9148":3858,"9149":1555,"9150":10444,"9151":9057,"9152":700,"9153":1442,"9154":7323,"9155":9798,"9156":4738,"9157":2238,"9158":2465,"9159":4331,"9160":3340,"9161":6797,"9162":4010,"9163":4625,"9164":6733,"9165":7539,"9166":5681,"9167":8680,"9168":1433,"9169":5197,"9170":1153,"9171":9455,"9172":7585,"9173":2916,"9174":4032,"9175":1992,"9176":844,"9177":2799,"9178":1905,"9179":7130,"9180":8281,"9181":6175,"9182":8347,"9183":3368,"9184":10520,"9185":1770,"9186":9582,"9187":9768,"9188":10517,"9189":4420,"9190":8980,"9191":2714,"9192":2012,"9193":9897,"9194":1013,"9195":3535,"9196":2075,"9197":433,"9198":4119,"9199":4678,"9200":10917,"9201":666,"9202":3047,"9203":6822,"9204":10523,"9205":7297,"9206":8227,"9207":1155,"9208":10327,"9209":3453,"9210":4568,"9211":10613,"9212":7562,"9213":5633,"9214":6538,"9215":1261,"9216":5934,"9217":8358,"9218":5943,"9219":5381,"9220":6446,"9221":3178,"9222":4832,"9223":6675,"9224":8926,"9225":1935,"9226":3387,"9227":10790,"9228":5177,"9229":7372,"9230":9837,"9231":9672,"9232":817,"9233":974,"9234":360,"9235":5739,"9236":5325,"9237":8336,"9238":6954,"9239":4435,"9240":6538,"9241":10544,"9242":5781,"9243":10380,"9244":5770,"9245":5139,"9246":8505,"9247":4445,"9248":10888,"9249":10932,"9250":443,"9251":3338,"9252":1532,"9253":10126,"9254":10323,"9255":5930,"9256":5465,"9257":9150,"9258":6847,"9259":2985,"9260":2230,"9261":3754,"9262":2591,"9263":8098,"9264":5354,"9265":6502,"9266":2072,"9267":10707,"9268":8628,"9269":6978,"9270":9399,"9271":1237,"9272":5589,"9273":3846,"9274":9227,"9275":10036,"9276":5657,"9277":7343,"9278":4005,"9279":10270,"9280":3639,"9281":8892,"9282":4907,"9283":7570,"9284":6496,"9285":834,"9286":1907,"9287":2966,"9288":2766,"9289":1130,"9290":4690,"9291":6854,"9292":6634,"9293":2689,"9294":920,"9295":4427,"9296":5978,"9297":2692,"9298":6502,"9299":5455,"9300":9320,"9301":5323,"9302":8870,"9303":7547,"9304":2866,"9305":1044,"9306":10971,"9307":4525,"9308":7036,"9309":2694,"9310":72,"9311":5794,"9312":10685,"9313":2910,"9314":1108,"9315":9823,"9316":4640,"9317":6808,"9318":3702,"9319":1349,"9320":3384,"9321":5573,"9322":2144,"9323":9971,"9324":696,"9325":9150,"9326":2193,"9327":2325,"9328":413,"9329":4494,"9330":5929,"9331":5805,"9332":5958,"9333":7088,"9334":10366,"9335":179,"9336":7667,"9337":2792,"9338":1865,"9339":5262,"9340":10367,"9341":87,"9342":2118,"9343":8437,"9344":6438,"9345":10541,"9346":10095,"9347":9469,"9348":4227,"9349":5207,"9350":6356,"9351":5948,"9352":4266,"9353":10764,"9354":2809,"9355":4796,"9356":3578,"9357":7310,"9358":9194,"9359":3388,"9360":9724,"9361":9323,"9362":7408,"9363":3173,"9364":2276,"9365":6186,"9366":5296,"9367":9820,"9368":7856,"9369":2491,"9370":291,"9371":7929,"9372":6240,"9373":3412,"9374":1994,"9375":3774,"9376":3783,"9377":2372,"9378":7695,"9379":9496,"9380":10367,"9381":8384,"9382":3834,"9383":4008,"9384":1220,"9385":365,"9386":2309,"9387":10690,"9388":4267,"9389":4594,"9390":5767,"9391":4181,"9392":2124,"9393":8601,"9394":10037,"9395":6596,"9396":10142,"9397":4503,"9398":6369,"9399":2885,"9400":7424,"9401":10065,"9402":5009,"9403":10416,"9404":921,"9405":7698,"9406":114,"9407":4494,"9408":3088,"9409":9401,"9410":9577,"9411":10836,"9412":8626,"9413":873,"9414":5166,"9415":4152,"9416":3843,"9417":4276,"9418":2565,"9419":10261,"9420":6267,"9421":9105,"9422":2576,"9423":1795,"9424":2505,"9425":6178,"9426":3485,"9427":9229,"9428":6551,"9429":571,"9430":3583,"9431":9426,"9432":9474,"9433":3442,"9434":9633,"9435":3077,"9436":4898,"9437":3741,"9438":7259,"9439":4800,"9440":8440,"9441":4719,"9442":9874,"9443":9456,"9444":4504,"9445":7973,"9446":10841,"9447":9483,"9448":10049,"9449":9631,"9450":5097,"9451":2763,"9452":4138,"9453":8973,"9454":5273,"9455":5227,"9456":5479,"9457":7404,"9458":6287,"9459":10117,"9460":5957,"9461":887,"9462":5291,"9463":7484,"9464":7659,"9465":252,"9466":9191,"9467":7883,"9468":2708,"9469":4984,"9470":6292,"9471":1365,"9472":3767,"9473":7876,"9474":5691,"9475":8749,"9476":7314,"9477":5223,"9478":5249,"9479":2206,"9480":9072,"9481":7022,"9482":298,"9483":10505,"9484":10442,"9485":6099,"9486":7626,"9487":3174,"9488":1495,"9489":4221,"9490":8003,"9491":775,"9492":10481,"9493":8150,"9494":922,"9495":9719,"9496":1353,"9497":6287,"9498":7630,"9499":1437,"9500":2313,"9501":823,"9502":9304,"9503":9795,"9504":7295,"9505":1549,"9506":3634,"9507":2437,"9508":5784,"9509":10047,"9510":4945,"9511":6330,"9512":8651,"9513":5318,"9514":1488,"9515":3637,"9516":1974,"9517":10586,"9518":6327,"9519":2670,"9520":4648,"9521":8975,"9522":10338,"9523":1669,"9524":5126,"9525":1840,"9526":2816,"9527":4945,"9528":10033,"9529":10588,"9530":9604,"9531":897,"9532":6312,"9533":2696,"9534":3523,"9535":5906,"9536":8350,"9537":2575,"9538":9581,"9539":7042,"9540":5869,"9541":4626,"9542":1219,"9543":8906,"9544":1936,"9545":5244,"9546":3221,"9547":10977,"9548":9959,"9549":7367,"9550":6148,"9551":5292,"9552":2995,"9553":4691,"9554":9155,"9555":7994,"9556":4435,"9557":3521,"9558":2339,"9559":6985,"9560":5871,"9561":3244,"9562":8652,"9563":3791,"9564":7777,"9565":6561,"9566":1522,"9567":5934,"9568":8818,"9569":5512,"9570":4133,"9571":2800,"9572":7819,"9573":10291,"9574":5535,"9575":8586,"9576":8036,"9577":3927,"9578":7358,"9579":7874,"9580":1845,"9581":4946,"9582":7333,"9583":6453,"9584":169,"9585":1608,"9586":5338,"9587":1871,"9588":10183,"9589":936,"9590":118,"9591":9950,"9592":518,"9593":3829,"9594":2115,"9595":8444,"9596":9783,"9597":6192,"9598":8355,"9599":4187,"9600":7787,"9601":3324,"9602":9769,"9603":8287,"9604":614,"9605":7066,"9606":2585,"9607":5386,"9608":1882,"9609":9012,"9610":8287,"9611":4102,"9612":8873,"9613":810,"9614":5635,"9615":7559,"9616":3408,"9617":10461,"9618":9945,"9619":1251,"9620":1977,"9621":4944,"9622":3245,"9623":2022,"9624":545,"9625":6955,"9626":10723,"9627":7157,"9628":3618,"9629":6517,"9630":2514,"9631":9349,"9632":8719,"9633":3363,"9634":6345,"9635":4313,"9636":5160,"9637":3206,"9638":5886,"9639":9062,"9640":2835,"9641":6047,"9642":7832,"9643":3662,"9644":10523,"9645":8491,"9646":6799,"9647":6054,"9648":4479,"9649":6356,"9650":411,"9651":966,"9652":306,"9653":1299,"9654":4298,"9655":471,"9656":10784,"9657":10283,"9658":3215,"9659":4339,"9660":8868,"9661":10564,"9662":2932,"9663":265,"9664":10522,"9665":9333,"9666":5287,"9667":7149,"9668":4353,"9669":346,"9670":5232,"9671":8188,"9672":355,"9673":3266,"9674":9590,"9675":2850,"9676":4487,"9677":5293,"9678":9424,"9679":6179,"9680":7771,"9681":1146,"9682":215,"9683":8964,"9684":6764,"9685":10242,"9686":8432,"9687":4078,"9688":10844,"9689":7768,"9690":901,"9691":8929,"9692":3073,"9693":2515,"9694":2903,"9695":8169,"9696":3697,"9697":4726,"9698":5728,"9699":348,"9700":8547,"9701":8504,"9702":10278,"9703":6251,"9704":4303,"9705":7086,"9706":3598,"9707":9472,"9708":3549,"9709":4166,"9710":10468,"9711":6776,"9712":8792,"9713":7558,"9714":3243,"9715":542,"9716":2295,"9717":48,"9718":10075,"9719":1958,"9720":2676,"9721":3905,"9722":6384,"9723":7830,"9724":10258,"9725":8076,"9726":6917,"9727":806,"9728":1419,"9729":5173,"9730":6455,"9731":6495,"9732":4790,"9733":8541,"9734":6344,"9735":4610,"9736":1893,"9737":2770,"9738":1366,"9739":3906,"9740":935,"9741":2728,"9742":8320,"9743":687,"9744":2945,"9745":3531,"9746":3199,"9747":1286,"9748":3839,"9749":5585,"9750":8246,"9751":2809,"9752":5581,"9753":6965,"9754":7489,"9755":9937,"9756":407,"9757":10469,"9758":4561,"9759":7619,"9760":9992,"9761":4811,"9762":5232,"9763":10791,"9764":10357,"9765":2251,"9766":4503,"9767":8883,"9768":3242,"9769":3527,"9770":10931,"9771":10687,"9772":7630,"9773":9256,"9774":6245,"9775":8116,"9776":10395,"9777":6078,"9778":5683,"9779":4435,"9780":4929,"9781":6000,"9782":1487,"9783":712,"9784":9498,"9785":7935,"9786":4773,"9787":4168,"9788":10687,"9789":451,"9790":8180,"9791":5128,"9792":1505,"9793":940,"9794":7603,"9795":10756,"9796":3889,"9797":4753,"9798":136,"9799":2212,"9800":1322,"9801":4489,"9802":7769,"9803":1286,"9804":3415,"9805":6133,"9806":1180,"9807":1360,"9808":2215,"9809":7427,"9810":711,"9811":2922,"9812":3890,"9813":8736,"9814":8549,"9815":2411,"9816":6103,"9817":2118,"9818":8073,"9819":6484,"9820":5483,"9821":10602,"9822":5985,"9823":3189,"9824":1814,"9825":4966,"9826":6669,"9827":1335,"9828":7176,"9829":2631,"9830":3804,"9831":5122,"9832":2700,"9833":1655,"9834":1490,"9835":7345,"9836":4584,"9837":4437,"9838":1246,"9839":7911,"9840":6546,"9841":10378,"9842":827,"9843":2999,"9844":6921,"9845":3737,"9846":8288,"9847":7552,"9848":8672,"9849":7299,"9850":9517,"9851":2450,"9852":3077,"9853":7096,"9854":661,"9855":2781,"9856":4358,"9857":7500,"9858":10386,"9859":10729,"9860":5210,"9861":6714,"9862":10891,"9863":3102,"9864":8005,"9865":7533,"9866":6278,"9867":4229,"9868":6186,"9869":3855,"9870":8632,"9871":9064,"9872":7653,"9873":4951,"9874":3932,"9875":6709,"9876":7403,"9877":3374,"9878":5028,"9879":3922,"9880":335,"9881":10002,"9882":766,"9883":6378,"9884":860,"9885":4683,"9886":6373,"9887":10752,"9888":8652,"9889":140,"9890":7684,"9891":4251,"9892":6633,"9893":1373,"9894":3613,"9895":5574,"9896":8484,"9897":4909,"9898":7062,"9899":7545,"9900":6706,"9901":4217,"9902":5563,"9903":3472,"9904":698,"9905":9208,"9906":2906,"9907":5208,"9908":2153,"9909":7721,"9910":474,"9911":7921,"9912":4389,"9913":4849,"9914":4994,"9915":3536,"9916":2158,"9917":9536,"9918":4926,"9919":4404,"9920":2709,"9921":3126,"9922":2796,"9923":9544,"9924":2850,"9925":631,"9926":4052,"9927":238,"9928":9692,"9929":9318,"9930":112,"9931":8459,"9932":8005,"9933":8229,"9934":3757,"9935":10378,"9936":9315,"9937":4497,"9938":6791,"9939":3922,"9940":2315,"9941":3906,"9942":1332,"9943":4912,"9944":9799,"9945":7358,"9946":7743,"9947":7308,"9948":7673,"9949":10958,"9950":10211,"9951":9828,"9952":7922,"9953":2952,"9954":1731,"9955":2056,"9956":6540,"9957":9673,"9958":3,"9959":2524,"9960":4667,"9961":4345,"9962":5233,"9963":5840,"9964":3713,"9965":6189,"9966":10276,"9967":5015,"9968":3253,"9969":6399,"9970":10153,"9971":10603,"9972":5423,"9973":2925,"9974":10689,"9975":8292,"9976":8796,"9977":5026,"9978":6094,"9979":9928,"9980":3223,"9981":3242,"9982":10622,"9983":2615,"9984":3873,"9985":10413,"9986":5203,"9987":7188,"9988":2553,"9989":5254,"9990":9632,"9991":1405,"9992":7677,"9993":4118,"9994":5013,"9995":3304,"9996":6897,"9997":2251,"9998":6186,"9999":9971,"10000":5460,"10001":1979,"10002":8392,"10003":6345,"10004":3498,"10005":6067,"10006":6211,"10007":1326,"10008":10050,"10009":5405,"10010":6781,"10011":650,"10012":2759,"10013":3828,"10014":1994,"10015":3534,"10016":9180,"10017":3133,"10018":6835,"10019":6964,"10020":5256,"10021":7287,"10022":5428,"10023":5860,"10024":5241,"10025":3834,"10026":2738,"10027":460,"10028":495,"10029":7002,"10030":7320,"10031":527,"10032":3024,"10033":3541,"10034":1301,"10035":8147,"10036":5638,"10037":5918,"10038":10636,"10039":5609,"10040":10972,"10041":9783,"10042":3897,"10043":7688,"10044":4330,"10045":8784,"10046":1850,"10047":6148,"10048":2691,"10049":1566,"10050":7135,"10051":4209,"10052":1291,"10053":2763,"10054":10126,"10055":537,"10056":487,"10057":7449,"10058":5019,"10059":10300,"10060":1027,"10061":3202,"10062":8008,"10063":4963,"10064":5040,"10065":5725,"10066":2440,"10067":9730,"10068":7532,"10069":2590,"10070":8804,"10071":7724,"10072":902,"10073":6062,"10074":1520,"10075":7740,"10076":675,"10077":80,"10078":483,"10079":10154,"10080":3379,"10081":7926,"10082":1896,"10083":1571,"10084":6048,"10085":1304,"10086":8734,"10087":3376,"10088":3901,"10089":3291,"10090":3667,"10091":1387,"10092":8981,"10093":505,"10094":259,"10095":4952,"10096":7557,"10097":878,"10098":10217,"10099":1160,"10100":7639,"10101":4288,"10102":6510,"10103":6041,"10104":3605,"10105":9839,"10106":3350,"10107":3021,"10108":10436,"10109":9147,"10110":3273,"10111":9496,"10112":6613,"10113":675,"10114":9277,"10115":25,"10116":8467,"10117":7155,"10118":5643,"10119":2337,"10120":9599,"10121":5105,"10122":8233,"10123":5104,"10124":9456,"10125":8864,"10126":4426,"10127":4002,"10128":1544,"10129":2039,"10130":7542,"10131":4404,"10132":8911,"10133":3691,"10134":1163,"10135":9898,"10136":383,"10137":9169,"10138":765,"10139":1664,"10140":7306,"10141":10359,"10142":3350,"10143":7363,"10144":3479,"10145":8081,"10146":3448,"10147":5456,"10148":4454,"10149":4675,"10150":4847,"10151":701,"10152":2210,"10153":9446,"10154":6608,"10155":3385,"10156":1069,"10157":7629,"10158":9776,"10159":1501,"10160":8960,"10161":3435,"10162":10459,"10163":442,"10164":10339,"10165":6834,"10166":6385,"10167":2819,"10168":4793,"10169":3467,"10170":176,"10171":1292,"10172":8212,"10173":3344,"10174":6996,"10175":811,"10176":10971,"10177":7765,"10178":3008,"10179":8445,"10180":5279,"10181":5213,"10182":9545,"10183":2210,"10184":3139,"10185":2173,"10186":8969,"10187":3835,"10188":9037,"10189":2297,"10190":3160,"10191":9564,"10192":4818,"10193":8590,"10194":10546,"10195":48,"10196":7941,"10197":10821,"10198":9429,"10199":7105,"10200":7608,"10201":671,"10202":8981,"10203":2727,"10204":4267,"10205":10763,"10206":7569,"10207":9492,"10208":9797,"10209":717,"10210":8634,"10211":1818,"10212":2076,"10213":3205,"10214":4055,"10215":1263,"10216":3451,"10217":4296,"10218":6957,"10219":6748,"10220":349,"10221":5796,"10222":1083,"10223":3620,"10224":6985,"10225":8827,"10226":7557,"10227":26,"10228":9494,"10229":5006,"10230":10441,"10231":6689,"10232":3092,"10233":2087,"10234":10341,"10235":10895,"10236":9042,"10237":6616,"10238":2592,"10239":5857,"10240":10005,"10241":5754,"10242":8763,"10243":8267,"10244":3308,"10245":3144,"10246":2026,"10247":141,"10248":5768,"10249":8201,"10250":2418,"10251":581,"10252":4105,"10253":3634,"10254":5811,"10255":2331,"10256":4766,"10257":454,"10258":9661,"10259":9363,"10260":5193,"10261":6763,"10262":3593,"10263":153,"10264":10073,"10265":10296,"10266":10983,"10267":9631,"10268":7252,"10269":8710,"10270":8944,"10271":8013,"10272":213,"10273":10473,"10274":2055,"10275":4351,"10276":8758,"10277":8224,"10278":10661,"10279":7994,"10280":2352,"10281":3041,"10282":1315,"10283":9935,"10284":2717,"10285":2638,"10286":6860,"10287":9305,"10288":122,"10289":8725,"10290":6485,"10291":9332,"10292":460,"10293":5945,"10294":6314,"10295":5848,"10296":457,"10297":5678,"10298":8172,"10299":4816,"10300":5882,"10301":9478,"10302":1824,"10303":305,"10304":4773,"10305":1660,"10306":5493,"10307":1973,"10308":1978,"10309":9689,"10310":7828,"10311":449,"10312":10066,"10313":7724,"10314":6590,"10315":10624,"10316":3036,"10317":1537,"10318":10249,"10319":352,"10320":7924,"10321":3550,"10322":8199,"10323":3524,"10324":10053,"10325":5253,"10326":4835,"10327":1701,"10328":479,"10329":4751,"10330":9829,"10331":5291,"10332":8441,"10333":6132,"10334":9596,"10335":5361,"10336":9340,"10337":4213,"10338":3713,"10339":8833,"10340":780,"10341":1503,"10342":2777,"10343":8505,"10344":4440,"10345":9574,"10346":6463,"10347":50,"10348":9681,"10349":12,"10350":4578,"10351":3196,"10352":2994,"10353":8736,"10354":4993,"10355":4108,"10356":3605,"10357":2439,"10358":10301,"10359":5011,"10360":1392,"10361":10103,"10362":10649,"10363":3284,"10364":2680,"10365":4614,"10366":6079,"10367":10673,"10368":3388,"10369":4873,"10370":9118,"10371":469,"10372":3635,"10373":3917,"10374":3271,"10375":1034,"10376":376,"10377":1476,"10378":65,"10379":278,"10380":2226,"10381":8274,"10382":7010,"10383":5040,"10384":10372,"10385":9705,"10386":7432,"10387":6653,"10388":1840,"10389":3193,"10390":3127,"10391":5601,"10392":1147,"10393":10120,"10394":6053,"10395":7561,"10396":4182,"10397":5513,"10398":116,"10399":8903,"10400":9082,"10401":7676,"10402":6847,"10403":7167,"10404":9095,"10405":6312,"10406":3490,"10407":238,"10408":2789,"10409":2160,"10410":944,"10411":10996,"10412":32,"10413":299,"10414":7927,"10415":10690,"10416":4608,"10417":3159,"10418":9136,"10419":5559,"10420":470,"10421":4663,"10422":5257,"10423":7875,"10424":4981,"10425":7744,"10426":10552,"10427":10039,"10428":5156,"10429":7787,"10430":10533,"10431":6615,"10432":6827,"10433":10017,"10434":10631,"10435":4961,"10436":8210,"10437":10830,"10438":1669,"10439":6483,"10440":7464,"10441":348,"10442":7502,"10443":8858,"10444":9047,"10445":23,"10446":4243,"10447":9952,"10448":960,"10449":1186,"10450":3264,"10451":1682,"10452":6680,"10453":10700,"10454":69,"10455":4045,"10456":543,"10457":6987,"10458":2004,"10459":2779,"10460":7544,"10461":10966,"10462":9073,"10463":3203,"10464":8993,"10465":7018,"10466":7918,"10467":4512,"10468":2053,"10469":3561,"10470":10787,"10471":2719,"10472":9967,"10473":7740,"10474":4911,"10475":7971,"10476":5412,"10477":519,"10478":4316,"10479":2853,"10480":9309,"10481":9349,"10482":360,"10483":2295,"10484":2152,"10485":5801,"10486":1425,"10487":1251,"10488":8404,"10489":2350,"10490":9826,"10491":9800,"10492":2198,"10493":8422,"10494":2424,"10495":1262,"10496":8301,"10497":4008,"10498":4475,"10499":8085,"10500":122,"10501":10985,"10502":4463,"10503":8308,"10504":4150,"10505":10456,"10506":8066,"10507":10278,"10508":1012,"10509":9887,"10510":1783,"10511":10338,"10512":7542,"10513":9112,"10514":720,"10515":9352,"10516":9822,"10517":4479,"10518":4927,"10519":7424,"10520":2206,"10521":391,"10522":8917,"10523":10167,"10524":4358,"10525":2893,"10526":156,"10527":9687,"10528":7594,"10529":10260,"10530":130,"10531":7077,"10532":7255,"10533":3435,"10534":8375,"10535":2083,"10536":4480,"10537":4874,"10538":2799,"10539":310,"10540":3738,"10541":6732,"10542":8688,"10543":5725,"10544":2666,"10545":4517,"10546":10200,"10547":9731,"10548":8842,"10549":813,"10550":10357,"10551":4832,"10552":6006,"10553":3902,"10554":9659,"10555":2823,"10556":2590,"10557":8848,"10558":7347,"10559":4574,"10560":10732,"10561":10689,"10562":6463,"10563":4962,"10564":1940,"10565":10743,"10566":8130,"10567":2824,"10568":7816,"10569":5617,"10570":7880,"10571":4082,"10572":3195,"10573":3820,"10574":4923,"10575":5314,"10576":10569,"10577":10243,"10578":4747,"10579":4447,"10580":10140,"10581":1547,"10582":7481,"10583":6811,"10584":4720,"10585":6942,"10586":4845,"10587":7625,"10588":8236,"10589":4145,"10590":8839,"10591":6825,"10592":2927,"10593":2478,"10594":913,"10595":7921,"10596":6815,"10597":7020,"10598":5224,"10599":9655,"10600":6938,"10601":807,"10602":10823,"10603":3965,"10604":7187,"10605":9612,"10606":8275,"10607":4823,"10608":5851,"10609":6808,"10610":581,"10611":1259,"10612":4190,"10613":3714,"10614":6284,"10615":7051,"10616":6212,"10617":9293,"10618":3005,"10619":9351,"10620":6072,"10621":7920,"10622":2383,"10623":1726,"10624":10667,"10625":8824,"10626":4821,"10627":10056,"10628":8557,"10629":7216,"10630":2534,"10631":9779,"10632":890,"10633":2404,"10634":2411,"10635":1735,"10636":4362,"10637":6606,"10638":1400,"10639":8259,"10640":10083,"10641":3808,"10642":10849,"10643":3497,"10644":2065,"10645":8821,"10646":4120,"10647":5020,"10648":4335,"10649":2065,"10650":5144,"10651":3968,"10652":353,"10653":6268,"10654":1866,"10655":4936,"10656":977,"10657":9310,"10658":3345,"10659":5217,"10660":1385,"10661":2078,"10662":2471,"10663":2630,"10664":8689,"10665":10082,"10666":6567,"10667":928,"10668":10629,"10669":19,"10670":1526,"10671":9559,"10672":4265,"10673":8020,"10674":752,"10675":2673,"10676":1037,"10677":5819,"10678":1023,"10679":677,"10680":1289,"10681":6890,"10682":8225,"10683":1123,"10684":3689,"10685":10786,"10686":1107,"10687":4257,"10688":7165,"10689":10333,"10690":4347,"10691":5600,"10692":6174,"10693":7902,"10694":1878,"10695":376,"10696":7344,"10697":1179,"10698":10336,"10699":9938,"10700":10255,"10701":7,"10702":8209,"10703":8785,"10704":6223,"10705":4893,"10706":5034,"10707":9991,"10708":486,"10709":2811,"10710":1317,"10711":10687,"10712":917,"10713":1316,"10714":1399,"10715":9966,"10716":6426,"10717":6639,"10718":614,"10719":9174,"10720":5560,"10721":10987,"10722":2903,"10723":316,"10724":5703,"10725":5963,"10726":8521,"10727":4172,"10728":6570,"10729":4256,"10730":8510,"10731":58,"10732":4515,"10733":4647,"10734":10652,"10735":1338,"10736":10066,"10737":10317,"10738":9773,"10739":9586,"10740":8515,"10741":7690,"10742":10094,"10743":1336,"10744":8564,"10745":3862,"10746":10987,"10747":8699,"10748":3446,"10749":2356,"10750":601,"10751":2886,"10752":3007,"10753":9218,"10754":6800,"10755":10629,"10756":8891,"10757":9793,"10758":10910,"10759":1677,"10760":2075,"10761":1101,"10762":5058,"10763":2081,"10764":9764,"10765":5788,"10766":2226,"10767":1187,"10768":893,"10769":1434,"10770":10481,"10771":5680,"10772":10530,"10773":7320,"10774":7803,"10775":1661,"10776":10826,"10777":3520,"10778":2969,"10779":3489,"10780":4321,"10781":7546,"10782":8373,"10783":9578,"10784":1578,"10785":5759,"10786":1308,"10787":1658,"10788":1046,"10789":5687,"10790":3728,"10791":4866,"10792":9086,"10793":4057,"10794":7047,"10795":10531,"10796":2800,"10797":7418,"10798":3490,"10799":4436,"10800":1505,"10801":8755,"10802":9525,"10803":3931,"10804":6209,"10805":8404,"10806":1078,"10807":6758,"10808":5054,"10809":1306,"10810":8787,"10811":6556,"10812":447,"10813":8163,"10814":476,"10815":460,"10816":815,"10817":5580,"10818":2664,"10819":2847,"10820":5400,"10821":5328,"10822":6059,"10823":757,"10824":6590,"10825":4046,"10826":6250,"10827":9616,"10828":10655,"10829":4952,"10830":3414,"10831":4400,"10832":4615,"10833":10341,"10834":3629,"10835":10419,"10836":8831,"10837":8679,"10838":536,"10839":4591,"10840":10294,"10841":9838,"10842":5448,"10843":1510,"10844":6023,"10845":322,"10846":617,"10847":10090,"10848":8772,"10849":10431,"10850":2842,"10851":10301,"10852":3035,"10853":2117,"10854":3666,"10855":178,"10856":6177,"10857":2621,"10858":10794,"10859":1583,"10860":6373,"10861":8135,"10862":2726,"10863":5940,"10864":6461,"10865":9389,"10866":7855,"10867":6727,"10868":638,"10869":6369,"10870":4760,"10871":1481,"10872":3894,"10873":1737,"10874":473,"10875":507,"10876":8767,"10877":4275,"10878":7997,"10879":5280,"10880":6113,"10881":6514,"10882":7081,"10883":3586,"10884":6753,"10885":8053,"10886":8414,"10887":10243,"10888":185,"10889":3672,"10890":1466,"10891":510,"10892":9493,"10893":6424,"10894":913,"10895":10577,"10896":5917,"10897":5917,"10898":3112,"10899":940,"10900":2023,"10901":3843,"10902":4020,"10903":6134,"10904":10029,"10905":7771,"10906":5500,"10907":5980,"10908":2474,"10909":2756,"10910":9697,"10911":532,"10912":8744,"10913":5872,"10914":9366,"10915":728,"10916":6370,"10917":6830,"10918":3067,"10919":7280,"10920":7396,"10921":10693,"10922":7857,"10923":4796,"10924":1799,"10925":1499,"10926":1609,"10927":10071,"10928":6691,"10929":1215,"10930":10964,"10931":4590,"10932":10878,"10933":8237,"10934":8307,"10935":8141,"10936":3537,"10937":9451,"10938":7433,"10939":7251,"10940":6943,"10941":7043,"10942":1777,"10943":3584,"10944":4972,"10945":8616,"10946":2597,"10947":2070,"10948":3464,"10949":9293,"10950":2022,"10951":392,"10952":7212,"10953":5144,"10954":9191,"10955":4223,"10956":476,"10957":10206,"10958":9555,"10959":945,"10960":7542,"10961":6973,"10962":7786,"10963":9154,"10964":2586,"10965":7450,"10966":965,"10967":963,"10968":9710,"10969":4074,"10970":10137,"10971":9064,"10972":4933,"10973":200,"10974":3305,"10975":3702,"10976":607,"10977":2418,"10978":2985,"10979":6579,"10980":4780,"10981":1342,"10982":10950,"10983":9808,"10984":2660,"10985":3354,"10986":7286,"10987":3037,"10988":819,"10989":2985,"10990":300,"10991":4065,"10992":7134,"10993":3550,"10994":4650,"10995":4460,"10996":10601,"10997":1534,"10998":523,"10999":3702,"11000":8761,"11001":1204,"11002":10356,"11003":5996,"11004":8433,"11005":4122,"11006":5886,"11007":7397,"11008":4275,"11009":684,"11010":541,"11011":4332,"11012":6986,"11013":4785,"11014":2909,"11015":5574,"11016":1391,"11017":3074,"11018":6116,"11019":10957,"11020":4735,"11021":10005,"11022":7366,"11023":5789,"11024":1666,"11025":4199,"11026":9060,"11027":4772,"11028":10775,"11029":3501,"11030":166,"11031":344,"11032":4253,"11033":7014,"11034":3679,"11035":3379,"11036":6348,"11037":6136,"11038":3444,"11039":3071,"11040":923,"11041":4958,"11042":9288,"11043":5562,"11044":9686,"11045":3711,"11046":3912,"11047":3731,"11048":7578,"11049":10144,"11050":3984,"11051":2603,"11052":9528,"11053":6318,"11054":481,"11055":8596,"11056":747,"11057":4342,"11058":8775,"11059":10757,"11060":8715,"11061":10763,"11062":8537,"11063":2103,"11064":8848,"11065":3486,"11066":8017,"11067":4386,"11068":675,"11069":8454,"11070":6981,"11071":273,"11072":8904,"11073":1935,"11074":4311,"11075":5132,"11076":6354,"11077":5078,"11078":324,"11079":332,"11080":9242,"11081":8955,"11082":10358,"11083":5337,"11084":702,"11085":9473,"11086":1829,"11087":4856,"11088":3906,"11089":3914,"11090":7578,"11091":4203,"11092":3833,"11093":10623,"11094":4669,"11095":4898,"11096":7206,"11097":1104,"11098":10568,"11099":10732,"11100":8534,"11101":6958,"11102":8087,"11103":10532,"11104":10113,"11105":5340,"11106":4636,"11107":9006,"11108":6673,"11109":8327,"11110":9158,"11111":2489,"11112":4030,"11113":796,"11114":1268,"11115":7745,"11116":10612,"11117":1281,"11118":10975,"11119":2566,"11120":8230,"11121":756,"11122":7882,"11123":10509,"11124":139,"11125":9093,"11126":781,"11127":7245,"11128":4119,"11129":6973,"11130":3620,"11131":7117,"11132":9244,"11133":2412,"11134":4232,"11135":10009,"11136":9122,"11137":6712,"11138":7734,"11139":9080,"11140":5621,"11141":9261,"11142":7176,"11143":5667,"11144":7588,"11145":4025,"11146":8748,"11147":8806,"11148":2376,"11149":575,"11150":2957,"11151":10292,"11152":3718,"11153":7652,"11154":3159,"11155":836,"11156":6827,"11157":5141,"11158":2630,"11159":1313,"11160":4073,"11161":7212,"11162":3664,"11163":6828,"11164":3841,"11165":771,"11166":9009,"11167":10777,"11168":542,"11169":1294,"11170":9878,"11171":1930,"11172":2050,"11173":7016,"11174":6226,"11175":5612,"11176":2934,"11177":137,"11178":7245,"11179":4396,"11180":6119,"11181":858,"11182":6638,"11183":5464,"11184":5728,"11185":5295,"11186":6425,"11187":3721,"11188":3047,"11189":3612,"11190":5117,"11191":4706,"11192":8112,"11193":3969,"11194":10930,"11195":10506,"11196":10775,"11197":8987,"11198":9622,"11199":6769,"11200":4111,"11201":8312,"11202":1214,"11203":4551,"11204":6748,"11205":172,"11206":546,"11207":1602,"11208":8645,"11209":7861,"11210":4110,"11211":7673,"11212":8340,"11213":2382,"11214":3439,"11215":4952,"11216":3841,"11217":4951,"11218":7703,"11219":4873,"11220":10420,"11221":1473,"11222":4547,"11223":1521,"11224":9817,"11225":8490,"11226":5092,"11227":7524,"11228":8229,"11229":5209,"11230":4285,"11231":7123,"11232":10474,"11233":2194,"11234":5621,"11235":3947,"11236":7329,"11237":7657,"11238":3036,"11239":2040,"11240":2443,"11241":6156,"11242":6941,"11243":5968,"11244":102,"11245":6039,"11246":5693,"11247":6114,"11248":4372,"11249":659,"11250":2989,"11251":5517,"11252":8326,"11253":8782,"11254":1203,"11255":7494,"11256":7434,"11257":4958,"11258":3051,"11259":495,"11260":10822,"11261":1897,"11262":5963,"11263":6438,"11264":8712,"11265":4450,"11266":4425,"11267":8543,"11268":6542,"11269":714,"11270":1178,"11271":3268,"11272":83,"11273":1331,"11274":4173,"11275":8668,"11276":3759,"11277":8720,"11278":4308,"11279":2787,"11280":7975,"11281":8405,"11282":5428,"11283":8832,"11284":8520,"11285":2426,"11286":864,"11287":4607,"11288":6203,"11289":4355,"11290":1525,"11291":3482,"11292":4868,"11293":2140,"11294":3394,"11295":5487,"11296":2249,"11297":3542,"11298":5432,"11299":10567,"11300":2660,"11301":7228,"11302":2209,"11303":5696,"11304":9716,"11305":8897,"11306":9585,"11307":7844,"11308":7714,"11309":3807,"11310":5538,"11311":1063,"11312":127,"11313":279,"11314":3442,"11315":7428,"11316":1759,"11317":5740,"11318":8179,"11319":6622,"11320":10279,"11321":10770,"11322":4430,"11323":8171,"11324":2416,"11325":3186,"11326":2966,"11327":8294,"11328":7763,"11329":5181,"11330":10636,"11331":3508,"11332":7011,"11333":9415,"11334":1951,"11335":5036,"11336":9778,"11337":8430,"11338":9610,"11339":3078,"11340":8111,"11341":5849,"11342":3252,"11343":9347,"11344":8306,"11345":7436,"11346":10462,"11347":6953,"11348":10445,"11349":2209,"11350":2029,"11351":8884,"11352":2337,"11353":5765,"11354":10739,"11355":4283,"11356":9249,"11357":842,"11358":1214,"11359":1493,"11360":10533,"11361":5958,"11362":2968,"11363":2442,"11364":2535,"11365":3799,"11366":2060,"11367":7388,"11368":4093,"11369":6582,"11370":9068,"11371":5148,"11372":8869,"11373":4446,"11374":8209,"11375":6060,"11376":7143,"11377":5964,"11378":496,"11379":7732,"11380":2753,"11381":7469,"11382":4020,"11383":470,"11384":3465,"11385":10933,"11386":4436,"11387":8721,"11388":5385,"11389":4577,"11390":5905,"11391":5143,"11392":393,"11393":6138,"11394":8955,"11395":392,"11396":2356,"11397":6175,"11398":10729,"11399":6115,"11400":7104,"11401":2210,"11402":6054,"11403":7086,"11404":8270,"11405":9303,"11406":1181,"11407":5511,"11408":1286,"11409":9722,"11410":9871,"11411":2933,"11412":8148,"11413":5863,"11414":1344,"11415":5286,"11416":6332,"11417":10829,"11418":4875,"11419":1729,"11420":15,"11421":1594,"11422":8034,"11423":4401,"11424":9871,"11425":8848,"11426":5590,"11427":2526,"11428":3684,"11429":8858,"11430":10889,"11431":8104,"11432":6770,"11433":10677,"11434":7839,"11435":2280,"11436":2299,"11437":8871,"11438":10761,"11439":7946,"11440":8321,"11441":3044,"11442":7834,"11443":5455,"11444":387,"11445":3578,"11446":8191,"11447":10689,"11448":8037,"11449":4132,"11450":962,"11451":5994,"11452":1707,"11453":1320,"11454":7309,"11455":4731,"11456":5383,"11457":1684,"11458":7021,"11459":964,"11460":9237,"11461":8788,"11462":2295,"11463":8804,"11464":5965,"11465":3218,"11466":1093,"11467":10780,"11468":2290,"11469":9975,"11470":9782,"11471":3398,"11472":10343,"11473":4988,"11474":4334,"11475":4948,"11476":9318,"11477":9188,"11478":9219,"11479":6470,"11480":2499,"11481":10774,"11482":8840,"11483":1023,"11484":522,"11485":5120,"11486":10807,"11487":10948,"11488":3955,"11489":10573,"11490":3523,"11491":6945,"11492":2662,"11493":3966,"11494":1761,"11495":5667,"11496":9274,"11497":3844,"11498":5843,"11499":6821,"11500":8996,"11501":2387,"11502":4542,"11503":6268,"11504":3622,"11505":2104,"11506":7973,"11507":8811,"11508":10827,"11509":7084,"11510":3205,"11511":778,"11512":10568,"11513":10319,"11514":954,"11515":626,"11516":8017,"11517":5827,"11518":7072,"11519":7579,"11520":4658,"11521":10304,"11522":8136,"11523":1645,"11524":8926,"11525":6940,"11526":3801,"11527":3451,"11528":1666,"11529":1684,"11530":3033,"11531":206,"11532":3994,"11533":4769,"11534":4408,"11535":1300,"11536":10315,"11537":258,"11538":2474,"11539":544,"11540":4638,"11541":1095,"11542":6648,"11543":9820,"11544":3178,"11545":7696,"11546":6453,"11547":7369,"11548":9812,"11549":5176,"11550":1836,"11551":2117,"11552":5492,"11553":4987,"11554":5785,"11555":4865,"11556":6713,"11557":8123,"11558":7359,"11559":4104,"11560":5391,"11561":9697,"11562":8195,"11563":3495,"11564":6182,"11565":1524,"11566":9850,"11567":381,"11568":760,"11569":2912,"11570":6372,"11571":585,"11572":10110,"11573":9035,"11574":611,"11575":8019,"11576":9240,"11577":10718,"11578":6542,"11579":4811,"11580":819,"11581":2180,"11582":1100,"11583":2402,"11584":7717,"11585":6419,"11586":8692,"11587":10493,"11588":2667,"11589":8365,"11590":1378,"11591":9369,"11592":3790,"11593":7764,"11594":4930,"11595":6658,"11596":5330,"11597":9783,"11598":3063,"11599":5672,"11600":10182,"11601":1379,"11602":5374,"11603":3121,"11604":4260,"11605":10971,"11606":9065,"11607":7078,"11608":9553,"11609":6954,"11610":9124,"11611":9345,"11612":1010,"11613":7863,"11614":2123,"11615":10191,"11616":1286,"11617":8200,"11618":892,"11619":4667,"11620":534,"11621":6631,"11622":3282,"11623":4354,"11624":623,"11625":8148,"11626":7322,"11627":9978,"11628":4439,"11629":4548,"11630":6676,"11631":9669,"11632":10447,"11633":4253,"11634":1759,"11635":7546,"11636":4617,"11637":1066,"11638":8223,"11639":1819,"11640":6110,"11641":1660,"11642":10114,"11643":6881,"11644":9149,"11645":2222,"11646":4279,"11647":18,"11648":2390,"11649":1431,"11650":2807,"11651":5213,"11652":6137,"11653":8367,"11654":7089,"11655":2951,"11656":982,"11657":3196,"11658":3920,"11659":10016,"11660":3545,"11661":596,"11662":7061,"11663":4631,"11664":2233,"11665":3414,"11666":7400,"11667":7499,"11668":8679,"11669":5511,"11670":3431,"11671":1289,"11672":8994,"11673":1754,"11674":3860,"11675":92,"11676":6087,"11677":3910,"11678":4175,"11679":4096,"11680":5618,"11681":2812,"11682":6733,"11683":5288,"11684":2359,"11685":9312,"11686":9796,"11687":1760,"11688":6867,"11689":4416,"11690":6117,"11691":279,"11692":6035,"11693":1396,"11694":6441,"11695":9526,"11696":7526,"11697":9420,"11698":9584,"11699":3573,"11700":1904,"11701":8333,"11702":8080,"11703":3069,"11704":6950,"11705":5537,"11706":530,"11707":1272,"11708":8475,"11709":1741,"11710":1197,"11711":9265,"11712":1693,"11713":6236,"11714":10152,"11715":1275,"11716":9907,"11717":8022,"11718":5174,"11719":10534,"11720":10001,"11721":3933,"11722":10267,"11723":9953,"11724":5988,"11725":4022,"11726":8118,"11727":2662,"11728":5259,"11729":1274,"11730":8627,"11731":2134,"11732":7359,"11733":319,"11734":5405,"11735":1922,"11736":2305,"11737":9293,"11738":8653,"11739":4913,"11740":137,"11741":5963,"11742":8331,"11743":8951,"11744":6502,"11745":7947,"11746":10892,"11747":7623,"11748":7438,"11749":1329,"11750":7622,"11751":5235,"11752":3457,"11753":7812,"11754":5642,"11755":2618,"11756":7728,"11757":10837,"11758":1195,"11759":3890,"11760":1580,"11761":3455,"11762":2757,"11763":2395,"11764":6019,"11765":8742,"11766":2843,"11767":6699,"11768":6417,"11769":6055,"11770":2224,"11771":549,"11772":3326,"11773":7516,"11774":3833,"11775":8164,"11776":2001,"11777":1433,"11778":6387,"11779":10518,"11780":5783,"11781":2889,"11782":4289,"11783":8602,"11784":3971,"11785":8336,"11786":4744,"11787":969,"11788":3140,"11789":2661,"11790":8804,"11791":5708,"11792":5706,"11793":3897,"11794":9923,"11795":5699,"11796":8303,"11797":7969,"11798":7815,"11799":10098,"11800":2766,"11801":8336,"11802":10204,"11803":3675,"11804":9652,"11805":2250,"11806":5667,"11807":10563,"11808":8830,"11809":2496,"11810":2571,"11811":3484,"11812":1982,"11813":946,"11814":4045,"11815":2945,"11816":1654,"11817":3280,"11818":4364,"11819":8981,"11820":6425,"11821":4679,"11822":731,"11823":6936,"11824":7755,"11825":615,"11826":7418,"11827":6221,"11828":7886,"11829":4163,"11830":10238,"11831":8478,"11832":6049,"11833":3183,"11834":8619,"11835":10043,"11836":1029,"11837":6575,"11838":5619,"11839":7142,"11840":10848,"11841":6368,"11842":152,"11843":9951,"11844":2567,"11845":933,"11846":127,"11847":2310,"11848":4763,"11849":3901,"11850":1536,"11851":9902,"11852":6202,"11853":4905,"11854":8000,"11855":7519,"11856":492,"11857":4563,"11858":10438,"11859":39,"11860":5117,"11861":10084,"11862":1663,"11863":6357,"11864":9671,"11865":1844,"11866":6557,"11867":6625,"11868":4464,"11869":4594,"11870":6305,"11871":9309,"11872":2630,"11873":8501,"11874":10403,"11875":6296,"11876":668,"11877":8494,"11878":2972,"11879":2947,"11880":2769,"11881":1694,"11882":2918,"11883":5743,"11884":10535,"11885":2401,"11886":9035,"11887":4128,"11888":3034,"11889":3348,"11890":4572,"11891":8707,"11892":4204,"11893":2211,"11894":9004,"11895":7967,"11896":654,"11897":6583,"11898":4843,"11899":8201,"11900":10553,"11901":5444,"11902":9852,"11903":3007,"11904":7561,"11905":10142,"11906":2422,"11907":6762,"11908":8680,"11909":451,"11910":4483,"11911":7596,"11912":10688,"11913":619,"11914":9466,"11915":965,"11916":6236,"11917":3098,"11918":6835,"11919":10236,"11920":9037,"11921":10465,"11922":8806,"11923":1541,"11924":8398,"11925":2370,"11926":2976,"11927":10027,"11928":8864,"11929":10336,"11930":5210,"11931":10652,"11932":9245,"11933":1448,"11934":830,"11935":1255,"11936":680,"11937":9983,"11938":10538,"11939":8688,"11940":3244,"11941":10964,"11942":2493,"11943":968,"11944":8593,"11945":1203,"11946":8564,"11947":632,"11948":7669,"11949":8629,"11950":15,"11951":4103,"11952":5640,"11953":6928,"11954":8732,"11955":10381,"11956":2995,"11957":7289,"11958":6832,"11959":6775,"11960":251,"11961":1288,"11962":7251,"11963":365,"11964":9991,"11965":6392,"11966":10706,"11967":9579,"11968":6951,"11969":510,"11970":3635,"11971":3375,"11972":4932,"11973":8872,"11974":1945,"11975":2801,"11976":6618,"11977":4410,"11978":8524,"11979":5761,"11980":5651,"11981":9614,"11982":8812,"11983":8086,"11984":9086,"11985":9540,"11986":4568,"11987":1500,"11988":6116,"11989":4435,"11990":1723,"11991":6338,"11992":89,"11993":8850,"11994":9973,"11995":6469,"11996":4722,"11997":5058,"11998":3106,"11999":3966,"12000":366,"12001":9441,"12002":10318,"12003":1148,"12004":5542,"12005":9968,"12006":7522,"12007":8603,"12008":1936,"12009":7891,"12010":8148,"12011":9503,"12012":8692,"12013":256,"12014":2612,"12015":411,"12016":5714,"12017":576,"12018":9830,"12019":5913,"12020":3496,"12021":9950,"12022":6209,"12023":3488,"12024":1486,"12025":5219,"12026":7664,"12027":10161,"12028":4308,"12029":9945,"12030":9230,"12031":9004,"12032":6444,"12033":7373,"12034":6915,"12035":4894,"12036":5692,"12037":6891,"12038":1081,"12039":5762,"12040":6132,"12041":10551,"12042":4065,"12043":6109,"12044":297,"12045":1471,"12046":7315,"12047":10968,"12048":1401,"12049":1753,"12050":2751,"12051":6938,"12052":1363,"12053":10346,"12054":8714,"12055":9764,"12056":2958,"12057":9759,"12058":1190,"12059":3177,"12060":9559,"12061":1932,"12062":1277,"12063":5414,"12064":965,"12065":9078,"12066":7838,"12067":1607,"12068":5412,"12069":10927,"12070":7074,"12071":3888,"12072":5372,"12073":6724,"12074":3200,"12075":680,"12076":714,"12077":1346,"12078":5146,"12079":8628,"12080":5639,"12081":5517,"12082":3886,"12083":10033,"12084":3193,"12085":7085,"12086":3221,"12087":7224,"12088":3122,"12089":8065,"12090":3175,"12091":8336,"12092":3464,"12093":6881,"12094":3623,"12095":2462,"12096":3692,"12097":7049,"12098":3972,"12099":8991,"12100":7033,"12101":9900,"12102":9168,"12103":57,"12104":9805,"12105":9955,"12106":7794,"12107":7301,"12108":5996,"12109":854,"12110":8707,"12111":5861,"12112":1506,"12113":9020,"12114":2629,"12115":2528,"12116":10623,"12117":824,"12118":5865,"12119":94,"12120":8363,"12121":4929,"12122":8053,"12123":2846,"12124":10668,"12125":1335,"12126":432,"12127":10818,"12128":6945,"12129":5643,"12130":940,"12131":1358,"12132":10377,"12133":2069,"12134":4849,"12135":4126,"12136":1222,"12137":8815,"12138":3000,"12139":8091,"12140":6854,"12141":1793,"12142":7434,"12143":6077,"12144":3896,"12145":8743,"12146":5988,"12147":9233,"12148":6487,"12149":3929,"12150":9815,"12151":4088,"12152":2453,"12153":9227,"12154":9741,"12155":6845,"12156":676,"12157":10561,"12158":6825,"12159":682,"12160":6743,"12161":3429,"12162":6150,"12163":3102,"12164":5359,"12165":10604,"12166":8386,"12167":2265,"12168":1997,"12169":4579,"12170":10444,"12171":1142,"12172":10543,"12173":6050,"12174":6608,"12175":726,"12176":6702,"12177":9488,"12178":79,"12179":1902,"12180":1114,"12181":10693,"12182":6314,"12183":520,"12184":2915,"12185":9683,"12186":8423,"12187":8527,"12188":7050,"12189":10332,"12190":442,"12191":5204,"12192":10268,"12193":3412,"12194":7654,"12195":10871,"12196":3490,"12197":7714,"12198":10453,"12199":9750,"12200":7930,"12201":9163,"12202":4083,"12203":6656,"12204":2638,"12205":1534,"12206":6399,"12207":4042,"12208":6360,"12209":1697,"12210":2395,"12211":1073,"12212":717,"12213":3182,"12214":8266,"12215":3993,"12216":5622,"12217":2286,"12218":6609,"12219":10302,"12220":4521,"12221":6775,"12222":4004,"12223":3165,"12224":2133,"12225":9861,"12226":2449,"12227":7232,"12228":7444,"12229":10364,"12230":5069,"12231":9770,"12232":1446,"12233":3794,"12234":7012,"12235":9703,"12236":5300,"12237":2505,"12238":9176,"12239":6752,"12240":2538,"12241":1568,"12242":783,"12243":8182,"12244":1571,"12245":10970,"12246":930,"12247":7416,"12248":3013,"12249":4112,"12250":5198,"12251":9721,"12252":4886,"12253":7323,"12254":7645,"12255":2848,"12256":5219,"12257":3902,"12258":8606,"12259":7343,"12260":7634,"12261":927,"12262":10035,"12263":8825,"12264":366,"12265":6359,"12266":8533,"12267":2660,"12268":3867,"12269":958,"12270":5647,"12271":8474,"12272":1034,"12273":3778,"12274":1458,"12275":4853,"12276":10157,"12277":4358,"12278":9805,"12279":8390,"12280":3194,"12281":7521,"12282":8609,"12283":693,"12284":5204,"12285":4703,"12286":2407,"12287":3017,"12288":4707,"12289":2718,"12290":7171,"12291":2869,"12292":10356,"12293":9348,"12294":5585,"12295":8081,"12296":2934,"12297":2609,"12298":4544,"12299":9457,"12300":1999,"12301":1868,"12302":2311,"12303":4885,"12304":10444,"12305":593,"12306":9275,"12307":6597,"12308":7286,"12309":8631,"12310":5749,"12311":8665,"12312":8757,"12313":3239,"12314":4869,"12315":3923,"12316":4930,"12317":3058,"12318":7895,"12319":3090,"12320":4533,"12321":10108,"12322":602,"12323":10438,"12324":8319,"12325":2738,"12326":6968,"12327":3811,"12328":6319,"12329":2773,"12330":7572,"12331":296,"12332":8884,"12333":6859,"12334":9355,"12335":10363,"12336":5414,"12337":6599,"12338":2786,"12339":4668,"12340":9943,"12341":7292,"12342":1927,"12343":358,"12344":1287,"12345":7630,"12346":10444,"12347":5409,"12348":3199,"12349":10625,"12350":10020,"12351":3230,"12352":4658,"12353":4294,"12354":10169,"12355":9670,"12356":5051,"12357":10784,"12358":970,"12359":9935,"12360":6908,"12361":6383,"12362":1165,"12363":7618,"12364":6388,"12365":354,"12366":6457,"12367":2181,"12368":9330,"12369":2359,"12370":7357,"12371":3806,"12372":7433,"12373":8196,"12374":9684,"12375":4067,"12376":5827,"12377":7115,"12378":7766,"12379":4290,"12380":4083,"12381":3118,"12382":6040,"12383":3381,"12384":2456,"12385":3695,"12386":4202,"12387":899,"12388":2148,"12389":4190,"12390":9273,"12391":7385,"12392":858,"12393":2709,"12394":964,"12395":7230,"12396":8440,"12397":6134,"12398":8776,"12399":504,"12400":1060,"12401":986,"12402":2164,"12403":7843,"12404":2645,"12405":9079,"12406":7058,"12407":4399,"12408":8112,"12409":2382,"12410":4374,"12411":90,"12412":4406,"12413":7202,"12414":8275,"12415":1046,"12416":2246,"12417":1078,"12418":5999,"12419":7103,"12420":4232,"12421":4906,"12422":7176,"12423":10120,"12424":1163,"12425":5070,"12426":3283,"12427":9235,"12428":7454,"12429":6914,"12430":2420,"12431":2890,"12432":8425,"12433":734,"12434":3028,"12435":4697,"12436":9793,"12437":5721,"12438":9415,"12439":6485,"12440":7921,"12441":2539,"12442":10433,"12443":935,"12444":8329,"12445":7049,"12446":7280,"12447":2359,"12448":3137,"12449":4335,"12450":8259,"12451":889,"12452":2195,"12453":6800,"12454":2018,"12455":811,"12456":3613,"12457":1442,"12458":8947,"12459":1040,"12460":4812,"12461":6,"12462":9175,"12463":7913,"12464":2757,"12465":9033,"12466":9047,"12467":3142,"12468":121,"12469":8612,"12470":4419,"12471":6326,"12472":7561,"12473":3017,"12474":1013,"12475":9000,"12476":3941,"12477":7804,"12478":8121,"12479":2500,"12480":208,"12481":5289,"12482":6780,"12483":2360,"12484":9283,"12485":6171,"12486":6675,"12487":7963,"12488":8604,"12489":5057,"12490":1208,"12491":7443,"12492":8493,"12493":2818,"12494":6943,"12495":4575,"12496":6680,"12497":6954,"12498":3218,"12499":5022,"12500":363,"12501":10751,"12502":2164,"12503":5289,"12504":5939,"12505":3480,"12506":3713,"12507":8134,"12508":6414,"12509":7065,"12510":8180,"12511":1530,"12512":5312,"12513":6151,"12514":8222,"12515":10558,"12516":4905,"12517":6477,"12518":5858,"12519":9834,"12520":5941,"12521":6691,"12522":4477,"12523":746,"12524":8872,"12525":3105,"12526":6077,"12527":10658,"12528":10061,"12529":3851,"12530":8563,"12531":2585,"12532":9835,"12533":6962,"12534":2741,"12535":2034,"12536":5300,"12537":10624,"12538":7908,"12539":1211,"12540":10639,"12541":3703,"12542":1332,"12543":4168,"12544":5006,"12545":357,"12546":9237,"12547":7134,"12548":4451,"12549":7277,"12550":9349,"12551":9968,"12552":4616,"12553":8899,"12554":2718,"12555":10692,"12556":561,"12557":2077,"12558":7748,"12559":4937,"12560":6347,"12561":7724,"12562":1121,"12563":8113,"12564":9086,"12565":10121,"12566":10477,"12567":10842,"12568":7802,"12569":1561,"12570":465,"12571":3769,"12572":9433,"12573":4340,"12574":10687,"12575":9327,"12576":7290,"12577":5620,"12578":2394,"12579":8515,"12580":6247,"12581":4630,"12582":4243,"12583":3413,"12584":407,"12585":2262,"12586":9542,"12587":6521,"12588":2307,"12589":7647,"12590":526,"12591":2703,"12592":1032,"12593":3753,"12594":7251,"12595":1285,"12596":2467,"12597":862,"12598":3072,"12599":5119,"12600":4206,"12601":8501,"12602":3501,"12603":9086,"12604":1297,"12605":687,"12606":2313,"12607":10414,"12608":7030,"12609":1548,"12610":3440,"12611":5690,"12612":6518,"12613":9906,"12614":1731,"12615":1103,"12616":5169,"12617":489,"12618":4633,"12619":37,"12620":2034,"12621":9972,"12622":10743,"12623":9880,"12624":9581,"12625":6541,"12626":7448,"12627":8668,"12628":6703,"12629":10890,"12630":5611,"12631":3556,"12632":1107,"12633":9926,"12634":4993,"12635":9241,"12636":7881,"12637":6951,"12638":3793,"12639":1377,"12640":5765,"12641":6803,"12642":6651,"12643":4846,"12644":7551,"12645":4289,"12646":9050,"12647":1025,"12648":379,"12649":7663,"12650":6373,"12651":7307,"12652":534,"12653":6772,"12654":1729,"12655":1286,"12656":7888,"12657":7065,"12658":7083,"12659":4683,"12660":10514,"12661":8690,"12662":2942,"12663":6708,"12664":2305,"12665":6572,"12666":5717,"12667":8594,"12668":4507,"12669":5393,"12670":1809,"12671":5730,"12672":2080,"12673":9301,"12674":10086,"12675":5035,"12676":4616,"12677":9069,"12678":3891,"12679":8074,"12680":6113,"12681":5296,"12682":8375,"12683":10103,"12684":10330,"12685":4098,"12686":3790,"12687":7893,"12688":2724,"12689":4156,"12690":3903,"12691":746,"12692":5913,"12693":8705,"12694":5533,"12695":10810,"12696":4050,"12697":10204,"12698":5336,"12699":7975,"12700":3468,"12701":8606,"12702":8740,"12703":6930,"12704":7895,"12705":10509,"12706":603,"12707":7272,"12708":7346,"12709":7981,"12710":3399,"12711":3832,"12712":9623,"12713":120,"12714":2864,"12715":6075,"12716":10816,"12717":1302,"12718":2258,"12719":7181,"12720":537,"12721":587,"12722":6454,"12723":180,"12724":3968,"12725":6009,"12726":5157,"12727":3625,"12728":7297,"12729":8958,"12730":6267,"12731":4042,"12732":9997,"12733":868,"12734":2766,"12735":3741,"12736":1118,"12737":10244,"12738":2472,"12739":4760,"12740":939,"12741":4910,"12742":1188,"12743":530,"12744":9269,"12745":3453,"12746":9750,"12747":8484,"12748":8092,"12749":356,"12750":2449,"12751":4043,"12752":659,"12753":1541,"12754":1709,"12755":2384,"12756":9600,"12757":9260,"12758":5114,"12759":7540,"12760":6998,"12761":4183,"12762":351,"12763":2923,"12764":4086,"12765":2163,"12766":8971,"12767":1587,"12768":9764,"12769":1113,"12770":8514,"12771":1381,"12772":7602,"12773":6420,"12774":7630,"12775":109,"12776":1589,"12777":10350,"12778":4698,"12779":7351,"12780":7850,"12781":9688,"12782":2714,"12783":7926,"12784":7684,"12785":9840,"12786":10177,"12787":9695,"12788":2507,"12789":8744,"12790":4561,"12791":6682,"12792":157,"12793":9418,"12794":511,"12795":8463,"12796":2172,"12797":6854,"12798":9386,"12799":5838,"12800":4387,"12801":6480,"12802":16,"12803":9474,"12804":260,"12805":2762,"12806":10879,"12807":2965,"12808":5293,"12809":10714,"12810":2396,"12811":7744,"12812":2060,"12813":2648,"12814":10807,"12815":10358,"12816":585,"12817":6682,"12818":2768,"12819":2692,"12820":10149,"12821":5857,"12822":7488,"12823":845,"12824":5311,"12825":5104,"12826":4225,"12827":2611,"12828":233,"12829":10701,"12830":10040,"12831":1663,"12832":2907,"12833":135,"12834":3091,"12835":7296,"12836":1159,"12837":1150,"12838":9151,"12839":5641,"12840":6832,"12841":6661,"12842":5726,"12843":9218,"12844":8973,"12845":5232,"12846":6652,"12847":4244,"12848":3298,"12849":1157,"12850":3347,"12851":3837,"12852":5487,"12853":1037,"12854":9422,"12855":6024,"12856":10856,"12857":3882,"12858":1658,"12859":3907,"12860":874,"12861":6177,"12862":6048,"12863":4738,"12864":10640,"12865":5848,"12866":6163,"12867":5972,"12868":3113,"12869":10828,"12870":4252,"12871":5152,"12872":3156,"12873":2491,"12874":4588,"12875":723,"12876":5232,"12877":1528,"12878":1700,"12879":10407,"12880":8357,"12881":9340,"12882":4125,"12883":2797,"12884":2654,"12885":6873,"12886":7449,"12887":5638,"12888":7295,"12889":2049,"12890":2745,"12891":8465,"12892":3382,"12893":7850,"12894":2937,"12895":742,"12896":10760,"12897":1956,"12898":9962,"12899":4574,"12900":7506,"12901":9597,"12902":3105,"12903":5744,"12904":8192,"12905":2644,"12906":1236,"12907":5866,"12908":6708,"12909":1655,"12910":5065,"12911":3030,"12912":2021,"12913":10193,"12914":10559,"12915":512,"12916":4915,"12917":2923,"12918":5608,"12919":5396,"12920":6987,"12921":6984,"12922":5635,"12923":9475,"12924":5568,"12925":1118,"12926":5698,"12927":7341,"12928":3555,"12929":290,"12930":4590,"12931":10855,"12932":2804,"12933":237,"12934":10986,"12935":9785,"12936":4667,"12937":2328,"12938":1603,"12939":6614,"12940":8179,"12941":5984,"12942":9355,"12943":2204,"12944":3683,"12945":8171,"12946":8445,"12947":7052,"12948":10616,"12949":345,"12950":4263,"12951":875,"12952":1490,"12953":430,"12954":155,"12955":240,"12956":937,"12957":198,"12958":9445,"12959":6716,"12960":1949,"12961":5242,"12962":7373,"12963":3348,"12964":8263,"12965":5645,"12966":1785,"12967":6688,"12968":5645,"12969":1584,"12970":6797,"12971":229,"12972":1920,"12973":9288,"12974":4786,"12975":6336,"12976":9555,"12977":6189,"12978":43,"12979":7211,"12980":2094,"12981":10405,"12982":8849,"12983":6299,"12984":9469,"12985":6536,"12986":9656,"12987":3312,"12988":8943,"12989":99,"12990":8478,"12991":2547,"12992":9147,"12993":97,"12994":9984,"12995":7167,"12996":8540,"12997":6778,"12998":7799,"12999":7673,"13000":3582,"13001":4890,"13002":6672,"13003":940,"13004":5753,"13005":9993,"13006":8321,"13007":4539,"13008":3595,"13009":2361,"13010":8886,"13011":2651,"13012":334,"13013":7835,"13014":8071,"13015":8350,"13016":8133,"13017":567,"13018":5338,"13019":10810,"13020":3578,"13021":7755,"13022":982,"13023":5584,"13024":328,"13025":770,"13026":6967,"13027":6743,"13028":6040,"13029":6072,"13030":9994,"13031":1595,"13032":7348,"13033":9254,"13034":325,"13035":8119,"13036":3299,"13037":10186,"13038":10280,"13039":4468,"13040":8199,"13041":8173,"13042":8478,"13043":3733,"13044":3362,"13045":2069,"13046":5937,"13047":4663,"13048":6334,"13049":2013,"13050":2735,"13051":6456,"13052":4072,"13053":6807,"13054":5888,"13055":4393,"13056":5510,"13057":2676,"13058":9005,"13059":6863,"13060":670,"13061":10938,"13062":880,"13063":10362,"13064":10180,"13065":9592,"13066":10616,"13067":1726,"13068":9033,"13069":4276,"13070":8554,"13071":977,"13072":9945,"13073":826,"13074":9340,"13075":3688,"13076":4194,"13077":8032,"13078":447,"13079":1673,"13080":338,"13081":10396,"13082":9512,"13083":1439,"13084":493,"13085":1242,"13086":8540,"13087":7559,"13088":10240,"13089":3566,"13090":9110,"13091":3455,"13092":8797,"13093":1234,"13094":49,"13095":5964,"13096":2085,"13097":6011,"13098":9263,"13099":1823,"13100":4164,"13101":9825,"13102":10643,"13103":10717,"13104":6890,"13105":3990,"13106":7348,"13107":7427,"13108":8068,"13109":9066,"13110":6287,"13111":3163,"13112":6179,"13113":3604,"13114":5822,"13115":3075,"13116":4108,"13117":1920,"13118":3887,"13119":5924,"13120":4394,"13121":1722,"13122":500,"13123":477,"13124":10918,"13125":4388,"13126":8359,"13127":8753,"13128":519,"13129":10279,"13130":4004,"13131":8271,"13132":3075,"13133":4733,"13134":1569,"13135":4370,"13136":3060,"13137":8528,"13138":2660,"13139":5863,"13140":7886,"13141":8938,"13142":3171,"13143":4494,"13144":10706,"13145":6300,"13146":922,"13147":1588,"13148":8007,"13149":3232,"13150":4225,"13151":3444,"13152":2076,"13153":4352,"13154":6220,"13155":10058,"13156":6143,"13157":3596,"13158":10954,"13159":8969,"13160":3044,"13161":5441,"13162":5,"13163":7613,"13164":9514,"13165":5059,"13166":10943,"13167":3015,"13168":4850,"13169":2100,"13170":9111,"13171":2696,"13172":9824,"13173":563,"13174":1241,"13175":5485,"13176":977,"13177":9399,"13178":9188,"13179":623,"13180":10712,"13181":2553,"13182":4659,"13183":3041,"13184":9113,"13185":1564,"13186":8297,"13187":5503,"13188":10435,"13189":2895,"13190":3416,"13191":3760,"13192":438,"13193":1351,"13194":8033,"13195":8798,"13196":5930,"13197":1190,"13198":1607,"13199":8051,"13200":1623,"13201":5927,"13202":2079,"13203":77,"13204":9705,"13205":6178,"13206":3799,"13207":2883,"13208":3636,"13209":3821,"13210":6373,"13211":7927,"13212":3388,"13213":1299,"13214":5297,"13215":7309,"13216":1028,"13217":10970,"13218":8417,"13219":1088,"13220":8276,"13221":9461,"13222":762,"13223":5376,"13224":2152,"13225":2026,"13226":7597,"13227":7572,"13228":1741,"13229":10051,"13230":2970,"13231":6355,"13232":8920,"13233":1944,"13234":7234,"13235":8746,"13236":9363,"13237":2633,"13238":5487,"13239":2293,"13240":3615,"13241":10801,"13242":5900,"13243":7956,"13244":9344,"13245":10208,"13246":4646,"13247":8811,"13248":8665,"13249":4822,"13250":612,"13251":6050,"13252":9229,"13253":3513,"13254":7792,"13255":6937,"13256":7450,"13257":6417,"13258":5978,"13259":5099,"13260":4691,"13261":10316,"13262":4992,"13263":6068,"13264":8217,"13265":2433,"13266":5717,"13267":8654,"13268":9601,"13269":7155,"13270":8430,"13271":7321,"13272":3216,"13273":1573,"13274":10478,"13275":5430,"13276":9509,"13277":1864,"13278":9225,"13279":6801,"13280":5200,"13281":792,"13282":1999,"13283":7934,"13284":6404,"13285":6812,"13286":2617,"13287":6017,"13288":4754,"13289":1759,"13290":6491,"13291":566,"13292":4087,"13293":7686,"13294":3812,"13295":3468,"13296":7872,"13297":1143,"13298":5813,"13299":892,"13300":723,"13301":7016,"13302":842,"13303":5287,"13304":9668,"13305":7257,"13306":1951,"13307":9136,"13308":5355,"13309":3489,"13310":456,"13311":2663,"13312":3308,"13313":2373,"13314":4811,"13315":5449,"13316":4990,"13317":7752,"13318":4972,"13319":8776,"13320":7324,"13321":4714,"13322":5815,"13323":8437,"13324":9143,"13325":6576,"13326":998,"13327":10207,"13328":7587,"13329":2396,"13330":6100,"13331":1232,"13332":6833,"13333":1556,"13334":2232,"13335":8709,"13336":6270,"13337":8466,"13338":1475,"13339":5483,"13340":3793,"13341":6772,"13342":2038,"13343":4606,"13344":8165,"13345":7274,"13346":3856,"13347":1705,"13348":1205,"13349":8972,"13350":9170,"13351":3458,"13352":3929,"13353":393,"13354":6725,"13355":5030,"13356":6622,"13357":1723,"13358":6153,"13359":5070,"13360":9603,"13361":7704,"13362":6813,"13363":7656,"13364":4191,"13365":9187,"13366":7575,"13367":106,"13368":8895,"13369":3528,"13370":3114,"13371":8416,"13372":4163,"13373":5779,"13374":885,"13375":4561,"13376":5029,"13377":321,"13378":3265,"13379":6726,"13380":8124,"13381":6239,"13382":8479,"13383":10981,"13384":9313,"13385":8934,"13386":8599,"13387":8200,"13388":2390,"13389":1720,"13390":9644,"13391":4761,"13392":129,"13393":10303,"13394":5537,"13395":2820,"13396":4368,"13397":6218,"13398":8722,"13399":7698,"13400":4516,"13401":10269,"13402":1128,"13403":9623,"13404":7665,"13405":5832,"13406":2060,"13407":5564,"13408":6339,"13409":2451,"13410":9570,"13411":8671,"13412":6178,"13413":1520,"13414":8851,"13415":8131,"13416":2367,"13417":4323,"13418":7434,"13419":4689,"13420":6956,"13421":3555,"13422":5543,"13423":156,"13424":1499,"13425":856,"13426":9949,"13427":2623,"13428":4448,"13429":9888,"13430":8982,"13431":5571,"13432":3944,"13433":1154,"13434":2500,"13435":6832,"13436":10656,"13437":6854,"13438":9126,"13439":5052,"13440":393,"13441":8510,"13442":9089,"13443":8893,"13444":10977,"13445":4289,"13446":688,"13447":4899,"13448":1527,"13449":7330,"13450":9794,"13451":6837,"13452":9015,"13453":2645,"13454":4984,"13455":2510,"13456":664,"13457":8262,"13458":9572,"13459":1014,"13460":516,"13461":2006,"13462":7640,"13463":4821,"13464":1882,"13465":10996,"13466":2938,"13467":6176,"13468":7221,"13469":3308,"13470":2480,"13471":3171,"13472":1139,"13473":4854,"13474":8928,"13475":10656,"13476":1930,"13477":6954,"13478":10946,"13479":5441,"13480":5457,"13481":3886,"13482":7157,"13483":4971,"13484":9588,"13485":3898,"13486":6502,"13487":5005,"13488":1587,"13489":10061,"13490":4051,"13491":6572,"13492":8077,"13493":3393,"13494":6539,"13495":3024,"13496":467,"13497":2438,"13498":528,"13499":4593,"13500":10792,"13501":7354,"13502":2576,"13503":6712,"13504":5642,"13505":1233,"13506":623,"13507":8275,"13508":3241,"13509":9257,"13510":10092,"13511":156,"13512":4803,"13513":2020,"13514":249,"13515":5073,"13516":1641,"13517":2294,"13518":10034,"13519":2423,"13520":6999,"13521":6514,"13522":4747,"13523":9501,"13524":1196,"13525":9878,"13526":3706,"13527":1600,"13528":10236,"13529":5818,"13530":785,"13531":3659,"13532":779,"13533":3094,"13534":5733,"13535":7169,"13536":4988,"13537":4524,"13538":9805,"13539":1994,"13540":7301,"13541":503,"13542":1954,"13543":1809,"13544":1253,"13545":6561,"13546":2671,"13547":8916,"13548":5207,"13549":1339,"13550":5094,"13551":8099,"13552":8266,"13553":5280,"13554":3274,"13555":10111,"13556":3143,"13557":5496,"13558":5973,"13559":7177,"13560":3619,"13561":9434,"13562":5355,"13563":8565,"13564":6123,"13565":1782,"13566":6563,"13567":1245,"13568":3524,"13569":5256,"13570":4902,"13571":8770,"13572":9611,"13573":8991,"13574":4121,"13575":1778,"13576":187,"13577":5095,"13578":666,"13579":9562,"13580":4192,"13581":5564,"13582":6600,"13583":6412,"13584":3614,"13585":5933,"13586":2617,"13587":4461,"13588":5560,"13589":9726,"13590":1241,"13591":5396,"13592":2661,"13593":1570,"13594":3995,"13595":6869,"13596":5439,"13597":1732,"13598":3091,"13599":3471,"13600":1349,"13601":2136,"13602":2320,"13603":10753,"13604":5909,"13605":8540,"13606":9529,"13607":10170,"13608":10287,"13609":9148,"13610":6599,"13611":10023,"13612":10706,"13613":7322,"13614":5004,"13615":7779,"13616":6284,"13617":9580,"13618":7221,"13619":10244,"13620":5176,"13621":4029,"13622":3660,"13623":10391,"13624":4067,"13625":6517,"13626":5330,"13627":5386,"13628":6594,"13629":7270,"13630":7183,"13631":2989,"13632":1184,"13633":6471,"13634":3440,"13635":2683,"13636":5717,"13637":8298,"13638":820,"13639":1968,"13640":1630,"13641":9489,"13642":6362,"13643":653,"13644":1073,"13645":9285,"13646":8803,"13647":4798,"13648":8581,"13649":7773,"13650":971,"13651":8182,"13652":8271,"13653":2513,"13654":9752,"13655":5119,"13656":5519,"13657":1265,"13658":1000,"13659":6108,"13660":2781,"13661":4049,"13662":4562,"13663":2571,"13664":3151,"13665":8143,"13666":688,"13667":4203,"13668":10929,"13669":7246,"13670":5256,"13671":2072,"13672":7875,"13673":7816,"13674":10968,"13675":2014,"13676":10931,"13677":7796,"13678":10920,"13679":6928,"13680":8642,"13681":995,"13682":8690,"13683":6254,"13684":369,"13685":5409,"13686":76,"13687":9524,"13688":6782,"13689":5809,"13690":5945,"13691":4929,"13692":8594,"13693":1822,"13694":913,"13695":5370,"13696":5460,"13697":8042,"13698":8181,"13699":9338,"13700":8922,"13701":9482,"13702":2243,"13703":5657,"13704":4925,"13705":6475,"13706":3104,"13707":8670,"13708":3004,"13709":5978,"13710":267,"13711":2296,"13712":4922,"13713":7689,"13714":1690,"13715":4564,"13716":2078,"13717":593,"13718":3798,"13719":10541,"13720":207,"13721":8412,"13722":10013,"13723":6944,"13724":3073,"13725":486,"13726":3154,"13727":5137,"13728":4694,"13729":9873,"13730":3833,"13731":2140,"13732":3842,"13733":10769,"13734":3120,"13735":353,"13736":5247,"13737":9246,"13738":2812,"13739":7174,"13740":3449,"13741":7018,"13742":2446,"13743":6556,"13744":5592,"13745":5465,"13746":5321,"13747":4562,"13748":1069,"13749":6201,"13750":7925,"13751":4181,"13752":8331,"13753":5493,"13754":6898,"13755":4700,"13756":1930,"13757":6957,"13758":5202,"13759":8063,"13760":8053,"13761":2017,"13762":3743,"13763":9192,"13764":6663,"13765":5987,"13766":5010,"13767":405,"13768":3172,"13769":2270,"13770":9780,"13771":7550,"13772":7587,"13773":10663,"13774":4838,"13775":466,"13776":5253,"13777":6126,"13778":10813,"13779":9204,"13780":871,"13781":5694,"13782":12,"13783":446,"13784":1845,"13785":137,"13786":4248,"13787":5379,"13788":4926,"13789":5449,"13790":1951,"13791":3821,"13792":8357,"13793":925,"13794":7899,"13795":5609,"13796":1833,"13797":2805,"13798":8380,"13799":3452,"13800":9131,"13801":2027,"13802":2104,"13803":7731,"13804":3235,"13805":2301,"13806":10581,"13807":3386,"13808":8228,"13809":4688,"13810":9213,"13811":6381,"13812":3476,"13813":9266,"13814":5276,"13815":7029,"13816":9164,"13817":1728,"13818":1591,"13819":8159,"13820":1268,"13821":10558,"13822":1633,"13823":6819,"13824":4024,"13825":251,"13826":6629,"13827":4894,"13828":7223,"13829":9399,"13830":5904,"13831":2068,"13832":722,"13833":3628,"13834":2356,"13835":670,"13836":5108,"13837":6466,"13838":6021,"13839":5158,"13840":4382,"13841":6815,"13842":857,"13843":9848,"13844":9179,"13845":9083,"13846":10311,"13847":4767,"13848":9726,"13849":8046,"13850":2982,"13851":4249,"13852":9650,"13853":4190,"13854":8299,"13855":8990,"13856":9982,"13857":6748,"13858":10882,"13859":5118,"13860":8842,"13861":7384,"13862":5871,"13863":1503,"13864":1870,"13865":5474,"13866":10614,"13867":9131,"13868":6499,"13869":1863,"13870":1036,"13871":6694,"13872":3308,"13873":6213,"13874":6121,"13875":2185,"13876":10424,"13877":4932,"13878":9493,"13879":8593,"13880":2440,"13881":7448,"13882":4429,"13883":10840,"13884":5142,"13885":2440,"13886":3548,"13887":6570,"13888":8327,"13889":6850,"13890":5459,"13891":1776,"13892":691,"13893":9069,"13894":902,"13895":3996,"13896":3384,"13897":3144,"13898":6707,"13899":1843,"13900":7150,"13901":5788,"13902":6225,"13903":8770,"13904":4820,"13905":6299,"13906":9763,"13907":1877,"13908":1716,"13909":822,"13910":5939,"13911":5560,"13912":7237,"13913":10428,"13914":3800,"13915":1373,"13916":526,"13917":9780,"13918":9663,"13919":989,"13920":3429,"13921":1077,"13922":10928,"13923":900,"13924":9067,"13925":4444,"13926":10025,"13927":8585,"13928":10354,"13929":5766,"13930":4073,"13931":6373,"13932":6874,"13933":5650,"13934":75,"13935":2418,"13936":641,"13937":215,"13938":4054,"13939":5388,"13940":1822,"13941":5588,"13942":386,"13943":4237,"13944":1748,"13945":10792,"13946":8108,"13947":1665,"13948":9118,"13949":9228,"13950":6245,"13951":8915,"13952":10045,"13953":3562,"13954":7493,"13955":2994,"13956":7076,"13957":3965,"13958":5959,"13959":1688,"13960":1287,"13961":6852,"13962":5796,"13963":5340,"13964":3094,"13965":908,"13966":3946,"13967":3036,"13968":3430,"13969":10205,"13970":9026,"13971":8762,"13972":9891,"13973":117,"13974":5812,"13975":8613,"13976":9508,"13977":4136,"13978":8344,"13979":9507,"13980":7128,"13981":5402,"13982":5490,"13983":4102,"13984":2608,"13985":8171,"13986":5093,"13987":1262,"13988":5231,"13989":4219,"13990":1608,"13991":4303,"13992":3310,"13993":4489,"13994":6911,"13995":9967,"13996":327,"13997":10163,"13998":6595,"13999":5424,"14000":4559,"14001":7995,"14002":1419,"14003":3685,"14004":7787,"14005":4736,"14006":5160,"14007":6202,"14008":3614,"14009":3312,"14010":7236,"14011":252,"14012":3947,"14013":10207,"14014":4408,"14015":1676,"14016":7501,"14017":1686,"14018":8707,"14019":8357,"14020":7505,"14021":572,"14022":4063,"14023":6786,"14024":9174,"14025":2012,"14026":4486,"14027":9500,"14028":3902,"14029":10873,"14030":1913,"14031":10765,"14032":2696,"14033":5563,"14034":8057,"14035":529,"14036":361,"14037":8010,"14038":7559,"14039":6579,"14040":7777,"14041":3987,"14042":1964,"14043":7552,"14044":1409,"14045":1523,"14046":469,"14047":4207,"14048":3162,"14049":9050,"14050":5262,"14051":271,"14052":1429,"14053":2680,"14054":10963,"14055":3287,"14056":1867,"14057":2236,"14058":9819,"14059":7492,"14060":867,"14061":4400,"14062":10452,"14063":9999,"14064":3211,"14065":4792,"14066":473,"14067":2011,"14068":9101,"14069":8161,"14070":4957,"14071":3887,"14072":9043,"14073":7884,"14074":5371,"14075":695,"14076":4820,"14077":5812,"14078":7838,"14079":10092,"14080":8863,"14081":6135,"14082":6320,"14083":1861,"14084":9009,"14085":6657,"14086":1089,"14087":4266,"14088":1923,"14089":4104,"14090":5407,"14091":7708,"14092":914,"14093":4150,"14094":2184,"14095":2521,"14096":2020,"14097":347,"14098":10636,"14099":10276,"14100":339,"14101":62,"14102":9354,"14103":5873,"14104":6402,"14105":9783,"14106":2207,"14107":3441,"14108":7694,"14109":520,"14110":3157,"14111":2596,"14112":5672,"14113":5548,"14114":8633,"14115":2017,"14116":244,"14117":370,"14118":2770,"14119":2104,"14120":4246,"14121":490,"14122":6645,"14123":640,"14124":8482,"14125":2468,"14126":10150,"14127":2764,"14128":2686,"14129":4767,"14130":4458,"14131":957,"14132":8751,"14133":4806,"14134":9367,"14135":9611,"14136":165,"14137":3557,"14138":3510,"14139":6952,"14140":10276,"14141":3061,"14142":10317,"14143":10471,"14144":9893,"14145":2861,"14146":9252,"14147":9956,"14148":9149,"14149":9794,"14150":6112,"14151":4719,"14152":799,"14153":10359,"14154":7669,"14155":10650,"14156":9874,"14157":1970,"14158":8635,"14159":10413,"14160":8418,"14161":4176,"14162":6781,"14163":285,"14164":9554,"14165":7159,"14166":2653,"14167":255,"14168":3300,"14169":2881,"14170":8557,"14171":8147,"14172":5654,"14173":7391,"14174":9863,"14175":10478,"14176":5886,"14177":1921,"14178":2883,"14179":1416,"14180":4867,"14181":7374,"14182":959,"14183":675,"14184":9617,"14185":2699,"14186":6794,"14187":6279,"14188":7745,"14189":8946,"14190":628,"14191":5581,"14192":10180,"14193":1132,"14194":9911,"14195":3626,"14196":5877,"14197":9270,"14198":4416,"14199":5172,"14200":131,"14201":2268,"14202":5292,"14203":1143,"14204":8391,"14205":5010,"14206":5661,"14207":5413,"14208":2483,"14209":7099,"14210":2876,"14211":2901,"14212":10368,"14213":8825,"14214":8141,"14215":4533,"14216":7967,"14217":8848,"14218":3579,"14219":7487,"14220":3079,"14221":10858,"14222":8918,"14223":7452,"14224":3324,"14225":1696,"14226":3887,"14227":10870,"14228":7318,"14229":9391,"14230":9522,"14231":9057,"14232":7139,"14233":4003,"14234":7163,"14235":4473,"14236":7641,"14237":1258,"14238":8000,"14239":6767,"14240":10351,"14241":2774,"14242":6578,"14243":9370,"14244":1881,"14245":10480,"14246":1721,"14247":7501,"14248":789,"14249":5004,"14250":216,"14251":1431,"14252":10680,"14253":1221,"14254":9436,"14255":6675,"14256":8461,"14257":8446,"14258":3139,"14259":9746,"14260":3573,"14261":9183,"14262":10234,"14263":72,"14264":6710,"14265":3448,"14266":6226,"14267":8973,"14268":3664,"14269":9855,"14270":8499,"14271":10861,"14272":8781,"14273":6329,"14274":7681,"14275":9249,"14276":6915,"14277":5689,"14278":5914,"14279":6545,"14280":4754,"14281":3942,"14282":1114,"14283":7798,"14284":7261,"14285":2951,"14286":2119,"14287":3629,"14288":3703,"14289":9327,"14290":4818,"14291":5600,"14292":8834,"14293":8907,"14294":5896,"14295":6437,"14296":2959,"14297":9600,"14298":7257,"14299":4258,"14300":2286,"14301":5392,"14302":3885,"14303":8988,"14304":3457,"14305":3036,"14306":5177,"14307":6741,"14308":1196,"14309":10800,"14310":6511,"14311":1141,"14312":2642,"14313":10462,"14314":9808,"14315":9143,"14316":6027,"14317":10707,"14318":10435,"14319":520,"14320":4177,"14321":3954,"14322":3325,"14323":1859,"14324":9234,"14325":4046,"14326":4075,"14327":5176,"14328":9458,"14329":2661,"14330":4366,"14331":9818,"14332":2680,"14333":3152,"14334":3155,"14335":1722,"14336":61,"14337":7557,"14338":8902,"14339":10618,"14340":10648,"14341":8589,"14342":3407,"14343":6569,"14344":4398,"14345":3242,"14346":7870,"14347":4285,"14348":1112,"14349":589,"14350":2045,"14351":6671,"14352":6643,"14353":7161,"14354":9254,"14355":7370,"14356":6604,"14357":857,"14358":3369,"14359":4224,"14360":3574,"14361":8618,"14362":927,"14363":8403,"14364":8828,"14365":4388,"14366":3167,"14367":2624,"14368":7591,"14369":5414,"14370":4574,"14371":8373,"14372":7038,"14373":6222,"14374":9792,"14375":6087,"14376":5918,"14377":2283,"14378":6974,"14379":6558,"14380":1297,"14381":2142,"14382":4153,"14383":1511,"14384":9120,"14385":525,"14386":6549,"14387":2019,"14388":9729,"14389":9029,"14390":5809,"14391":4623,"14392":1960,"14393":945,"14394":3726,"14395":3153,"14396":6347,"14397":5377,"14398":6215,"14399":1051,"14400":10134,"14401":9974,"14402":3947,"14403":9084,"14404":3553,"14405":1060,"14406":1313,"14407":4704,"14408":6562,"14409":3456,"14410":3781,"14411":7901,"14412":10185,"14413":10719,"14414":9417,"14415":10228,"14416":8818,"14417":1514,"14418":7578,"14419":1067,"14420":8359,"14421":9080,"14422":2326,"14423":4488,"14424":8847,"14425":5200,"14426":5353,"14427":8006,"14428":3256,"14429":215,"14430":1736,"14431":10666,"14432":9113,"14433":4717,"14434":5122,"14435":5557,"14436":7751,"14437":9256,"14438":5590,"14439":2794,"14440":9627,"14441":7526,"14442":9644,"14443":6855,"14444":5796,"14445":1773,"14446":9206,"14447":10987,"14448":5758,"14449":7410,"14450":3788,"14451":6187,"14452":7716,"14453":8039,"14454":1651,"14455":8862,"14456":152,"14457":6846,"14458":8600,"14459":4935,"14460":8391,"14461":2601,"14462":5443,"14463":2499,"14464":10845,"14465":10018,"14466":5676,"14467":2914,"14468":7260,"14469":8113,"14470":8677,"14471":1528,"14472":962,"14473":793,"14474":9609,"14475":8387,"14476":212,"14477":8201,"14478":8700,"14479":7067,"14480":4764,"14481":7950,"14482":7678,"14483":9037,"14484":1740,"14485":233,"14486":8459,"14487":1458,"14488":8196,"14489":8036,"14490":5825,"14491":2407,"14492":4020,"14493":10693,"14494":2749,"14495":10661,"14496":6100,"14497":8756,"14498":5117,"14499":245,"14500":8598,"14501":1541,"14502":870,"14503":3819,"14504":9417,"14505":1420,"14506":9511,"14507":1216,"14508":8491,"14509":1294,"14510":8559,"14511":1217,"14512":8101,"14513":602,"14514":1808,"14515":1965,"14516":3088,"14517":292,"14518":7156,"14519":2114,"14520":6491,"14521":7047,"14522":2335,"14523":7475,"14524":3992,"14525":7730,"14526":1752,"14527":4546,"14528":1728,"14529":4433,"14530":755,"14531":639,"14532":5747,"14533":846,"14534":9065,"14535":4368,"14536":7839,"14537":3311,"14538":6285,"14539":4081,"14540":4626,"14541":8742,"14542":5454,"14543":4634,"14544":2272,"14545":688,"14546":6531,"14547":384,"14548":373,"14549":8815,"14550":1675,"14551":3177,"14552":10993,"14553":3648,"14554":5795,"14555":10039,"14556":281,"14557":7156,"14558":3023,"14559":4658,"14560":302,"14561":5714,"14562":9212,"14563":4586,"14564":7198,"14565":4714,"14566":9111,"14567":7756,"14568":766,"14569":6289,"14570":4951,"14571":3632,"14572":3974,"14573":9903,"14574":2672,"14575":2060,"14576":10301,"14577":6775,"14578":7072,"14579":6791,"14580":1814,"14581":3972,"14582":2549,"14583":5343,"14584":9978,"14585":8709,"14586":706,"14587":3122,"14588":1152,"14589":851,"14590":8519,"14591":7513,"14592":3525,"14593":3391,"14594":277,"14595":4533,"14596":7310,"14597":3855,"14598":1661,"14599":9054,"14600":3921,"14601":2900,"14602":790,"14603":2561,"14604":10067,"14605":6993,"14606":10217,"14607":1879,"14608":3871,"14609":2545,"14610":6034,"14611":8092,"14612":779,"14613":7178,"14614":1701,"14615":7942,"14616":8176,"14617":2653,"14618":7119,"14619":10026,"14620":6445,"14621":6131,"14622":9930,"14623":4046,"14624":2760,"14625":9839,"14626":6658,"14627":4021,"14628":8162,"14629":753,"14630":9846,"14631":1117,"14632":4268,"14633":1623,"14634":2373,"14635":8836,"14636":2999,"14637":1011,"14638":7111,"14639":2043,"14640":317,"14641":9199,"14642":596,"14643":883,"14644":5922,"14645":2312,"14646":1981,"14647":2197,"14648":9913,"14649":5408,"14650":4200,"14651":9607,"14652":8156,"14653":10448,"14654":156,"14655":10775,"14656":4623,"14657":9833,"14658":7291,"14659":7697,"14660":7079,"14661":4132,"14662":8623,"14663":4248,"14664":1919,"14665":431,"14666":2532,"14667":1626,"14668":5800,"14669":5087,"14670":1335,"14671":5691,"14672":5546,"14673":238,"14674":7135,"14675":9269,"14676":4362,"14677":10237,"14678":944,"14679":8213,"14680":880,"14681":2454,"14682":5896,"14683":1820,"14684":1747,"14685":10991,"14686":8700,"14687":9567,"14688":8308,"14689":4727,"14690":9241,"14691":5481,"14692":9798,"14693":1907,"14694":7354,"14695":7143,"14696":10580,"14697":2780,"14698":1101,"14699":7629,"14700":724,"14701":6345,"14702":8833,"14703":8018,"14704":1558,"14705":5133,"14706":7139,"14707":5688,"14708":3737,"14709":8690,"14710":6039,"14711":9694,"14712":10408,"14713":7549,"14714":6882,"14715":6867,"14716":9845,"14717":906,"14718":3353,"14719":7876,"14720":3300,"14721":3452,"14722":8448,"14723":2707,"14724":10461,"14725":819,"14726":10499,"14727":7183,"14728":1335,"14729":8312,"14730":2961,"14731":1779,"14732":7699,"14733":5349,"14734":5830,"14735":1009,"14736":10367,"14737":4286,"14738":122,"14739":4676,"14740":10251,"14741":10349,"14742":5486,"14743":8110,"14744":500,"14745":7152,"14746":5566,"14747":4275,"14748":7311,"14749":2779,"14750":8801,"14751":621,"14752":4722,"14753":10272,"14754":6251,"14755":9091,"14756":6266,"14757":8645,"14758":10347,"14759":7623,"14760":366,"14761":7161,"14762":1134,"14763":6025,"14764":8181,"14765":3222,"14766":10585,"14767":2580,"14768":5474,"14769":3175,"14770":3727,"14771":8602,"14772":274,"14773":1118,"14774":5208,"14775":9943,"14776":1310,"14777":7933,"14778":9427,"14779":7650,"14780":10074,"14781":8370,"14782":5452,"14783":10290,"14784":1562,"14785":6069,"14786":1922,"14787":320,"14788":2806,"14789":8952,"14790":2125,"14791":5780,"14792":10061,"14793":1567,"14794":8952,"14795":7914,"14796":8173,"14797":5533,"14798":1710,"14799":5453,"14800":4455,"14801":3360,"14802":8529,"14803":2115,"14804":10222,"14805":10577,"14806":9951,"14807":440,"14808":4336,"14809":382,"14810":6669,"14811":10932,"14812":2035,"14813":5757,"14814":3000,"14815":512,"14816":2774,"14817":10782,"14818":2964,"14819":10796,"14820":8812,"14821":1837,"14822":9291,"14823":5390,"14824":6460,"14825":3230,"14826":5049,"14827":1343,"14828":508,"14829":5106,"14830":9401,"14831":6215,"14832":8383,"14833":5792,"14834":1961,"14835":191,"14836":8479,"14837":127,"14838":3714,"14839":5101,"14840":11,"14841":9075,"14842":7036,"14843":1269,"14844":4404,"14845":3032,"14846":7623,"14847":2739,"14848":7568,"14849":9871,"14850":5869,"14851":5929,"14852":8276,"14853":10053,"14854":62,"14855":3667,"14856":2503,"14857":2429,"14858":10504,"14859":162,"14860":8234,"14861":5923,"14862":4240,"14863":693,"14864":5859,"14865":10301,"14866":4776,"14867":3441,"14868":10143,"14869":3761,"14870":569,"14871":7761,"14872":2433,"14873":6133,"14874":4565,"14875":6370,"14876":9601,"14877":7860,"14878":6098,"14879":3414,"14880":10751,"14881":5673,"14882":7989,"14883":6235,"14884":9996,"14885":8136,"14886":2333,"14887":247,"14888":1787,"14889":7857,"14890":315,"14891":6221,"14892":6696,"14893":8185,"14894":2228,"14895":5467,"14896":9487,"14897":9711,"14898":6906,"14899":8888,"14900":10223,"14901":232,"14902":7464,"14903":1651,"14904":7838,"14905":5482,"14906":4104,"14907":10230,"14908":5758,"14909":7289,"14910":9297,"14911":1453,"14912":9861,"14913":10790,"14914":8949,"14915":9932,"14916":2056,"14917":4843,"14918":2080,"14919":977,"14920":130,"14921":7448,"14922":5847,"14923":8781,"14924":1901,"14925":9512,"14926":2200,"14927":10711,"14928":6986,"14929":4277,"14930":7743,"14931":820,"14932":9248,"14933":4071,"14934":2865,"14935":1602,"14936":1313,"14937":4374,"14938":1631,"14939":3924,"14940":1626,"14941":8611,"14942":6967,"14943":7865,"14944":8339,"14945":6275,"14946":4876,"14947":10292,"14948":9500,"14949":8215,"14950":2663,"14951":4537,"14952":2832,"14953":992,"14954":1530,"14955":462,"14956":3332,"14957":4106,"14958":4859,"14959":5991,"14960":3986,"14961":7725,"14962":4042,"14963":10790,"14964":7681,"14965":10247,"14966":9053,"14967":3252,"14968":10848,"14969":127,"14970":9704,"14971":10829,"14972":2459,"14973":10101,"14974":7043,"14975":3414,"14976":315,"14977":4016,"14978":1972,"14979":581,"14980":4095,"14981":4265,"14982":6612,"14983":8152,"14984":1620,"14985":5959,"14986":6678,"14987":5096,"14988":9141,"14989":9247,"14990":804,"14991":3931,"14992":1026,"14993":6746,"14994":2179,"14995":9959,"14996":8109,"14997":5972,"14998":5196,"14999":6370,"15000":4544,"15001":2588,"15002":6067,"15003":635,"15004":10721,"15005":3026,"15006":6565,"15007":2480,"15008":2196,"15009":3138,"15010":2026,"15011":9366,"15012":8418,"15013":4570,"15014":1852,"15015":1092,"15016":7727,"15017":10449,"15018":1287,"15019":3148,"15020":5432,"15021":6393,"15022":1742,"15023":4125,"15024":47,"15025":9378,"15026":5533,"15027":8754,"15028":5207,"15029":9153,"15030":153,"15031":3022,"15032":4050,"15033":10939,"15034":8793,"15035":1529,"15036":8457,"15037":8873,"15038":4248,"15039":2203,"15040":6596,"15041":465,"15042":10875,"15043":2402,"15044":10242,"15045":4040,"15046":3066,"15047":3341,"15048":10109,"15049":1931,"15050":5198,"15051":5560,"15052":7634,"15053":9213,"15054":3,"15055":9515,"15056":6218,"15057":7964,"15058":4974,"15059":4518,"15060":8025,"15061":2144,"15062":8927,"15063":9588,"15064":1163,"15065":5788,"15066":5898,"15067":10539,"15068":6842,"15069":2115,"15070":1576,"15071":591,"15072":5652,"15073":4354,"15074":5164,"15075":1125,"15076":1755,"15077":2497,"15078":10899,"15079":5101,"15080":3991,"15081":4510,"15082":2048,"15083":9930,"15084":9681,"15085":1732,"15086":2652,"15087":8510,"15088":1396,"15089":5875,"15090":2223,"15091":7058,"15092":3435,"15093":3116,"15094":10567,"15095":6390,"15096":9973,"15097":3621,"15098":8058,"15099":6944,"15100":10806,"15101":5729,"15102":2312,"15103":438,"15104":7191,"15105":6071,"15106":299,"15107":9339,"15108":5590,"15109":984,"15110":10794,"15111":3769,"15112":7245,"15113":1376,"15114":4232,"15115":6234,"15116":426,"15117":655,"15118":8901,"15119":8397,"15120":8477,"15121":5531,"15122":811,"15123":5786,"15124":9498,"15125":4474,"15126":2397,"15127":6442,"15128":867,"15129":3931,"15130":4746,"15131":10894,"15132":3679,"15133":4459,"15134":6719,"15135":4575,"15136":7702,"15137":7637,"15138":4664,"15139":1501,"15140":1199,"15141":6482,"15142":7536,"15143":864,"15144":2250,"15145":4042,"15146":1528,"15147":1141,"15148":9575,"15149":1374,"15150":3486,"15151":4875,"15152":7265,"15153":2652,"15154":6152,"15155":6774,"15156":6838,"15157":7304,"15158":87,"15159":7004,"15160":8509,"15161":7944,"15162":7242,"15163":6442,"15164":2781,"15165":1490,"15166":65,"15167":4937,"15168":1857,"15169":2939,"15170":1980,"15171":2979,"15172":9648,"15173":2794,"15174":8129,"15175":8115,"15176":4884,"15177":964,"15178":6458,"15179":10748,"15180":6115,"15181":4488,"15182":544,"15183":10840,"15184":9158,"15185":10253,"15186":4492,"15187":4974,"15188":8278,"15189":7501,"15190":607,"15191":9696,"15192":6729,"15193":10196,"15194":4886,"15195":5789,"15196":159,"15197":8315,"15198":10611,"15199":4449,"15200":9092,"15201":2901,"15202":4436,"15203":9926,"15204":5546,"15205":8401,"15206":10212,"15207":4379,"15208":10896,"15209":1737,"15210":1449,"15211":6001,"15212":4526,"15213":5281,"15214":1779,"15215":2071,"15216":3387,"15217":9432,"15218":1270,"15219":10622,"15220":10436,"15221":1198,"15222":2649,"15223":5836,"15224":3197,"15225":474,"15226":7267,"15227":7767,"15228":10619,"15229":2640,"15230":3473,"15231":4346,"15232":7300,"15233":5637,"15234":1264,"15235":10458,"15236":9533,"15237":5345,"15238":7324,"15239":677,"15240":988,"15241":10845,"15242":7772,"15243":3109,"15244":3210,"15245":9232,"15246":1729,"15247":8525,"15248":3145,"15249":10535,"15250":5404,"15251":8301,"15252":4167,"15253":3246,"15254":10016,"15255":4348,"15256":2848,"15257":8429,"15258":5342,"15259":4371,"15260":8270,"15261":6982,"15262":2786,"15263":6036,"15264":6030,"15265":8499,"15266":6915,"15267":1930,"15268":2228,"15269":10323,"15270":1968,"15271":2688,"15272":8311,"15273":9597,"15274":7391,"15275":10078,"15276":7954,"15277":4519,"15278":4627,"15279":7723,"15280":3272,"15281":2093,"15282":3602,"15283":10667,"15284":2177,"15285":5381,"15286":6310,"15287":9454,"15288":4359,"15289":37,"15290":768,"15291":10325,"15292":7567,"15293":4150,"15294":354,"15295":9150,"15296":5387,"15297":10249,"15298":3765,"15299":2027,"15300":2267,"15301":4676,"15302":6154,"15303":8488,"15304":9407,"15305":1821,"15306":10140,"15307":7042,"15308":219,"15309":6407,"15310":9074,"15311":6125,"15312":9293,"15313":6504,"15314":9138,"15315":6897,"15316":7825,"15317":1203,"15318":7016,"15319":6942,"15320":63,"15321":1655,"15322":2147,"15323":1847,"15324":1608,"15325":6010,"15326":3807,"15327":921,"15328":9039,"15329":10629,"15330":5882,"15331":8213,"15332":10434,"15333":5487,"15334":7448,"15335":3897,"15336":4414,"15337":8295,"15338":5436,"15339":2286,"15340":4274,"15341":9752,"15342":1205,"15343":9409,"15344":523,"15345":10072,"15346":10476,"15347":2918,"15348":2260,"15349":3798,"15350":5453,"15351":6918,"15352":2843,"15353":10831,"15354":5642,"15355":9229,"15356":923,"15357":3126,"15358":7292,"15359":8230,"15360":5306,"15361":7417,"15362":4273,"15363":4996,"15364":2118,"15365":3717,"15366":4469,"15367":1438,"15368":7952,"15369":2328,"15370":2116,"15371":10782,"15372":4266,"15373":4012,"15374":10209,"15375":4121,"15376":1827,"15377":3739,"15378":2156,"15379":3026,"15380":10505,"15381":4120,"15382":7009,"15383":150,"15384":10666,"15385":648,"15386":6807,"15387":7184,"15388":9490,"15389":5324,"15390":10284,"15391":10747,"15392":7459,"15393":8779,"15394":5653,"15395":4240,"15396":10224,"15397":1,"15398":3718,"15399":9319,"15400":10435,"15401":6309,"15402":6518,"15403":5862,"15404":8577,"15405":5643,"15406":10068,"15407":7954,"15408":2506,"15409":10011,"15410":5653,"15411":1421,"15412":8294,"15413":9947,"15414":9771,"15415":9161,"15416":8490,"15417":5975,"15418":7155,"15419":4377,"15420":10955,"15421":615,"15422":937,"15423":10658,"15424":3885,"15425":6531,"15426":10262,"15427":9336,"15428":2949,"15429":5960,"15430":2074,"15431":2237,"15432":4655,"15433":7112,"15434":9330,"15435":1261,"15436":4977,"15437":5730,"15438":1574,"15439":2482,"15440":4696,"15441":983,"15442":6131,"15443":1038,"15444":4672,"15445":6874,"15446":558,"15447":8720,"15448":3574,"15449":7895,"15450":5896,"15451":3569,"15452":3491,"15453":7462,"15454":6298,"15455":1938,"15456":4170,"15457":540,"15458":8341,"15459":3651,"15460":8891,"15461":394,"15462":7854,"15463":1962,"15464":1905,"15465":7055,"15466":495,"15467":6883,"15468":8147,"15469":10154,"15470":2184,"15471":3192,"15472":9588,"15473":6904,"15474":8088,"15475":4860,"15476":9678,"15477":7956,"15478":3230,"15479":3318,"15480":867,"15481":4830,"15482":2195,"15483":3367,"15484":3983,"15485":2774,"15486":1325,"15487":10199,"15488":10173,"15489":9360,"15490":6168,"15491":5894,"15492":710,"15493":1493,"15494":9036,"15495":5714,"15496":6625,"15497":8173,"15498":1943,"15499":7254,"15500":10147,"15501":9032,"15502":7271,"15503":2787,"15504":8584,"15505":5122,"15506":461,"15507":9443,"15508":2266,"15509":5188,"15510":4679,"15511":3357,"15512":2355,"15513":3159,"15514":2301,"15515":3332,"15516":6949,"15517":6290,"15518":33,"15519":10243,"15520":6021,"15521":4410,"15522":5934,"15523":10903,"15524":2002,"15525":9082,"15526":5948,"15527":5496,"15528":8769,"15529":5462,"15530":4192,"15531":4783,"15532":5945,"15533":3244,"15534":7626,"15535":9149,"15536":5625,"15537":2079,"15538":2702,"15539":715,"15540":1205,"15541":9151,"15542":7246,"15543":8522,"15544":3301,"15545":2445,"15546":4538,"15547":3746,"15548":1864,"15549":7837,"15550":554,"15551":2892,"15552":8351,"15553":4067,"15554":4091,"15555":4198,"15556":5497,"15557":8752,"15558":9439,"15559":10990,"15560":6696,"15561":3543,"15562":7021,"15563":2661,"15564":518,"15565":8421,"15566":3436,"15567":7808,"15568":4715,"15569":573,"15570":7810,"15571":4483,"15572":3834,"15573":5611,"15574":5013,"15575":7294,"15576":1363,"15577":9756,"15578":3371,"15579":1388,"15580":5097,"15581":3920,"15582":5398,"15583":87,"15584":1780,"15585":6864,"15586":5526,"15587":5352,"15588":690,"15589":2483,"15590":8943,"15591":3116,"15592":8235,"15593":852,"15594":4001,"15595":1788,"15596":8791,"15597":6467,"15598":2185,"15599":5870,"15600":10277,"15601":8007,"15602":1332,"15603":2754,"15604":6013,"15605":1052,"15606":8478,"15607":2580,"15608":8637,"15609":4342,"15610":9254,"15611":10369,"15612":3410,"15613":4478,"15614":8819,"15615":4550,"15616":7149,"15617":10605,"15618":6075,"15619":110,"15620":6105,"15621":3151,"15622":5576,"15623":3153,"15624":10564,"15625":10528,"15626":10379,"15627":6988,"15628":8173,"15629":471,"15630":10411,"15631":3806,"15632":7647,"15633":6259,"15634":2102,"15635":5407,"15636":3382,"15637":1665,"15638":996,"15639":4753,"15640":339,"15641":9229,"15642":6230,"15643":5723,"15644":5220,"15645":4295,"15646":2829,"15647":3094,"15648":3181,"15649":10251,"15650":7659,"15651":6248,"15652":8191,"15653":5557,"15654":906,"15655":2877,"15656":10632,"15657":5255,"15658":1873,"15659":1892,"15660":1469,"15661":5193,"15662":2596,"15663":3047,"15664":8387,"15665":5154,"15666":8453,"15667":6754,"15668":10281,"15669":4350,"15670":1490,"15671":9314,"15672":160,"15673":996,"15674":10575,"15675":7373,"15676":197,"15677":2559,"15678":4044,"15679":9463,"15680":2054,"15681":33,"15682":8301,"15683":5041,"15684":5375,"15685":8103,"15686":6994,"15687":1185,"15688":7348,"15689":6415,"15690":6471,"15691":9616,"15692":10088,"15693":1818,"15694":7511,"15695":2987,"15696":8975,"15697":3876,"15698":6949,"15699":5121,"15700":5160,"15701":1861,"15702":1634,"15703":435,"15704":4355,"15705":3994,"15706":831,"15707":1631,"15708":4343,"15709":2212,"15710":1095,"15711":7679,"15712":7613,"15713":4005,"15714":4691,"15715":554,"15716":1654,"15717":2441,"15718":1995,"15719":6741,"15720":339,"15721":4895,"15722":5864,"15723":8923,"15724":10887,"15725":10847,"15726":3317,"15727":2748,"15728":2453,"15729":7327,"15730":8872,"15731":2842,"15732":293,"15733":4282,"15734":1152,"15735":6891,"15736":7963,"15737":4277,"15738":5827,"15739":7088,"15740":10937,"15741":3935,"15742":10119,"15743":3629,"15744":10015,"15745":5599,"15746":5592,"15747":8231,"15748":2970,"15749":10905,"15750":5776,"15751":3477,"15752":3576,"15753":6434,"15754":9355,"15755":3780,"15756":2346,"15757":7779,"15758":8511,"15759":3441,"15760":786,"15761":720,"15762":7008,"15763":9537,"15764":7459,"15765":10525,"15766":9613,"15767":3755,"15768":453,"15769":7897,"15770":3166,"15771":387,"15772":3905,"15773":7803,"15774":3769,"15775":9965,"15776":7308,"15777":7648,"15778":7790,"15779":5684,"15780":4891,"15781":449,"15782":2487,"15783":3351,"15784":746,"15785":9058,"15786":5909,"15787":8535,"15788":3848,"15789":2401,"15790":898,"15791":6055,"15792":4688,"15793":3150,"15794":7772,"15795":7089,"15796":748,"15797":5627,"15798":8042,"15799":5069,"15800":3147,"15801":1618,"15802":2907,"15803":1146,"15804":1728,"15805":2821,"15806":8241,"15807":2309,"15808":10002,"15809":3465,"15810":7603,"15811":10627,"15812":5839,"15813":4138,"15814":10691,"15815":10939,"15816":4313,"15817":6961,"15818":7016,"15819":2391,"15820":9608,"15821":3162,"15822":7721,"15823":5021,"15824":3708,"15825":6927,"15826":409,"15827":1708,"15828":5519,"15829":4512,"15830":584,"15831":2918,"15832":6646,"15833":7232,"15834":3562,"15835":10397,"15836":8801,"15837":5262,"15838":7550,"15839":9115,"15840":3490,"15841":2082,"15842":7452,"15843":10934,"15844":339,"15845":2035,"15846":10210,"15847":9639,"15848":10818,"15849":6792,"15850":8947,"15851":3695,"15852":4001,"15853":7031,"15854":10576,"15855":2009,"15856":3197,"15857":6125,"15858":2948,"15859":3979,"15860":225,"15861":8441,"15862":1669,"15863":5879,"15864":512,"15865":6412,"15866":9030,"15867":5731,"15868":8141,"15869":10061,"15870":4432,"15871":3291,"15872":10198,"15873":4532,"15874":495,"15875":2918,"15876":1655,"15877":10143,"15878":5217,"15879":2165,"15880":2566,"15881":4320,"15882":182,"15883":9013,"15884":1798,"15885":6892,"15886":3821,"15887":10684,"15888":8099,"15889":7663,"15890":23,"15891":1361,"15892":8148,"15893":10089,"15894":7258,"15895":10495,"15896":8014,"15897":9972,"15898":5816,"15899":4742,"15900":2335,"15901":6377,"15902":9940,"15903":800,"15904":1650,"15905":5188,"15906":2734,"15907":6877,"15908":5072,"15909":6376,"15910":5735,"15911":10516,"15912":8189,"15913":9424,"15914":5098,"15915":1921,"15916":5639,"15917":10284,"15918":8737,"15919":7052,"15920":10068,"15921":4847,"15922":8062,"15923":10080,"15924":4047,"15925":9680,"15926":1771,"15927":10173,"15928":1676,"15929":7310,"15930":3442,"15931":3856,"15932":2599,"15933":8367,"15934":4268,"15935":10873,"15936":8396,"15937":10574,"15938":8650,"15939":10874,"15940":3762,"15941":10965,"15942":3053,"15943":1734,"15944":3057,"15945":4613,"15946":2701,"15947":3865,"15948":2856,"15949":10163,"15950":3517,"15951":1202,"15952":8664,"15953":6512,"15954":4522,"15955":1290,"15956":3053,"15957":4359,"15958":4511,"15959":7598,"15960":5046,"15961":4211,"15962":5457,"15963":3843,"15964":3321,"15965":3236,"15966":6214,"15967":5421,"15968":3646,"15969":964,"15970":5827,"15971":4225,"15972":693,"15973":5803,"15974":8493,"15975":10954,"15976":4557,"15977":7104,"15978":414,"15979":7633,"15980":5906,"15981":2145,"15982":3736,"15983":2472,"15984":5492,"15985":4135,"15986":3678,"15987":246,"15988":6798,"15989":5732,"15990":7079,"15991":2973,"15992":8286,"15993":2202,"15994":1653,"15995":9381,"15996":2747,"15997":485,"15998":7894,"15999":3239,"16000":7136,"16001":8646,"16002":227,"16003":9653,"16004":2729,"16005":5831,"16006":7911,"16007":9330,"16008":3710,"16009":3019,"16010":508,"16011":2130,"16012":8605,"16013":363,"16014":4456,"16015":10130,"16016":8939,"16017":1390,"16018":2038,"16019":10230,"16020":7335,"16021":10398,"16022":5776,"16023":2400,"16024":6031,"16025":5401,"16026":541,"16027":2377,"16028":10324,"16029":8190,"16030":6784,"16031":9385,"16032":2664,"16033":5918,"16034":6253,"16035":5856,"16036":7081,"16037":9557,"16038":7932,"16039":10521,"16040":9042,"16041":1015,"16042":4955,"16043":10344,"16044":1981,"16045":7651,"16046":4022,"16047":9546,"16048":5770,"16049":2985,"16050":5734,"16051":10301,"16052":556,"16053":725,"16054":3022,"16055":9100,"16056":6375,"16057":4197,"16058":8765,"16059":3685,"16060":9906,"16061":3240,"16062":3999,"16063":3114,"16064":6598,"16065":5918,"16066":5522,"16067":8561,"16068":8305,"16069":4002,"16070":4576,"16071":4132,"16072":4607,"16073":1223,"16074":10510,"16075":5282,"16076":9013,"16077":2673,"16078":5242,"16079":9590,"16080":5312,"16081":4135,"16082":3254,"16083":2238,"16084":1905,"16085":7430,"16086":7093,"16087":907,"16088":2835,"16089":473,"16090":3348,"16091":8487,"16092":7004,"16093":2200,"16094":6153,"16095":5675,"16096":3819,"16097":10945,"16098":1184,"16099":10089,"16100":3810,"16101":8867,"16102":1199,"16103":10170,"16104":6428,"16105":1606,"16106":8667,"16107":5046,"16108":6125,"16109":8583,"16110":678,"16111":10786,"16112":9077,"16113":3544,"16114":9479,"16115":4042,"16116":4441,"16117":10657,"16118":4887,"16119":1501,"16120":116,"16121":6814,"16122":1960,"16123":10826,"16124":10657,"16125":3468,"16126":2648,"16127":9024,"16128":6394,"16129":929,"16130":6342,"16131":856,"16132":6413,"16133":1809,"16134":10281,"16135":5277,"16136":1410,"16137":1037,"16138":2934,"16139":7497,"16140":6255,"16141":1690,"16142":5378,"16143":5906,"16144":7202,"16145":8226,"16146":9058,"16147":7249,"16148":9665,"16149":9357,"16150":1893,"16151":7924,"16152":9217,"16153":505,"16154":5638,"16155":5173,"16156":1866,"16157":722,"16158":1906,"16159":9831,"16160":5684,"16161":2550,"16162":3024,"16163":5255,"16164":5412,"16165":6547,"16166":9853,"16167":6188,"16168":6303,"16169":8422,"16170":4061,"16171":2636,"16172":6499,"16173":7897,"16174":7217,"16175":6608,"16176":1630,"16177":10787,"16178":4236,"16179":9533,"16180":2109,"16181":3852,"16182":5442,"16183":3975,"16184":5510,"16185":6949,"16186":1714,"16187":1475,"16188":4261,"16189":1944,"16190":10715,"16191":1492,"16192":10720,"16193":3311,"16194":3452,"16195":9370,"16196":7922,"16197":8559,"16198":9096,"16199":6891,"16200":3009,"16201":3051,"16202":6684,"16203":180,"16204":4225,"16205":10512,"16206":10685,"16207":6312,"16208":3180,"16209":5957,"16210":4009,"16211":9845,"16212":9365,"16213":691,"16214":8061,"16215":3796,"16216":7210,"16217":712,"16218":4524,"16219":3681,"16220":8510,"16221":2300,"16222":7351,"16223":3850,"16224":8056,"16225":8188,"16226":8197,"16227":10523,"16228":8552,"16229":3219,"16230":4798,"16231":5092,"16232":1669,"16233":4814,"16234":5185,"16235":2587,"16236":9602,"16237":5823,"16238":10012,"16239":10727,"16240":2575,"16241":6551,"16242":8182,"16243":9344,"16244":8324,"16245":726,"16246":2981,"16247":9974,"16248":5816,"16249":6460,"16250":3620,"16251":7984,"16252":3071,"16253":9074,"16254":9648,"16255":9143,"16256":44,"16257":2164,"16258":10347,"16259":7066,"16260":8854,"16261":9966,"16262":7327,"16263":10135,"16264":4479,"16265":3630,"16266":3800,"16267":6599,"16268":7502,"16269":577,"16270":7688,"16271":6253,"16272":8850,"16273":1238,"16274":6050,"16275":7580,"16276":795,"16277":9088,"16278":7063,"16279":3040,"16280":8034,"16281":9091,"16282":3440,"16283":1570,"16284":2301,"16285":2009,"16286":8965,"16287":7153,"16288":1086,"16289":553,"16290":9624,"16291":6885,"16292":4978,"16293":2431,"16294":1232,"16295":9754,"16296":10180,"16297":1108,"16298":7600,"16299":3776,"16300":2873,"16301":906,"16302":8558,"16303":6007,"16304":1452,"16305":9849,"16306":8143,"16307":5825,"16308":2841,"16309":4494,"16310":3892,"16311":2729,"16312":9433,"16313":580,"16314":4914,"16315":8872,"16316":8474,"16317":10319,"16318":10847,"16319":5098,"16320":395,"16321":3002,"16322":833,"16323":6740,"16324":4525,"16325":5305,"16326":4109,"16327":1092,"16328":3806,"16329":10488,"16330":4967,"16331":3429,"16332":9502,"16333":10702,"16334":6553,"16335":2224,"16336":10763,"16337":4701,"16338":5822,"16339":6368,"16340":3146,"16341":6411,"16342":1776,"16343":7424,"16344":1090,"16345":1720,"16346":3224,"16347":2482,"16348":4002,"16349":3464,"16350":3128,"16351":6452,"16352":6604,"16353":3130,"16354":3295,"16355":6983,"16356":1103,"16357":652,"16358":9204,"16359":1919,"16360":10680,"16361":3082,"16362":5763,"16363":6390,"16364":3732,"16365":5460,"16366":91,"16367":3506,"16368":9740,"16369":4062,"16370":10461,"16371":6999,"16372":3768,"16373":2800,"16374":1286,"16375":1147,"16376":10332,"16377":2432,"16378":956,"16379":8050,"16380":2986,"16381":3051,"16382":1353,"16383":2579,"16384":877,"16385":7179,"16386":10056,"16387":1090,"16388":5786,"16389":3474,"16390":7661,"16391":6656,"16392":3108,"16393":1561,"16394":2518,"16395":3277,"16396":9940,"16397":2328,"16398":6852,"16399":1396,"16400":5698,"16401":10951,"16402":7407,"16403":9714,"16404":1922,"16405":2474,"16406":341,"16407":6689,"16408":6000,"16409":1327,"16410":9535,"16411":4941,"16412":9771,"16413":6580,"16414":5907,"16415":2672,"16416":9333,"16417":9462,"16418":4866,"16419":577,"16420":3490,"16421":4851,"16422":5982,"16423":5776,"16424":2622,"16425":4809,"16426":7064,"16427":2308,"16428":2047,"16429":10890,"16430":7286,"16431":1470,"16432":8705,"16433":5900,"16434":2608,"16435":7427,"16436":5391,"16437":262,"16438":2269,"16439":9801,"16440":7238,"16441":619,"16442":4710,"16443":3199,"16444":7350,"16445":7366,"16446":4059,"16447":2742,"16448":8703,"16449":237,"16450":138,"16451":155,"16452":2725,"16453":8912,"16454":2854,"16455":2698,"16456":4767,"16457":4203,"16458":556,"16459":7675,"16460":3733,"16461":2252,"16462":10343,"16463":4280,"16464":180,"16465":1451,"16466":2758,"16467":2507,"16468":1588,"16469":10852,"16470":4453,"16471":5888,"16472":1757,"16473":112,"16474":5363,"16475":2815,"16476":5285,"16477":8401,"16478":3607,"16479":2358,"16480":4870,"16481":2404,"16482":6782,"16483":60,"16484":4270,"16485":9053,"16486":9938,"16487":6526,"16488":3644,"16489":2028,"16490":6966,"16491":2575,"16492":7053,"16493":2958,"16494":2884,"16495":3498,"16496":5932,"16497":1611,"16498":857,"16499":10706,"16500":4930,"16501":5616,"16502":1625,"16503":4770,"16504":10364,"16505":1500,"16506":9283,"16507":9976,"16508":9335,"16509":9431,"16510":5183,"16511":5120,"16512":10029,"16513":3588,"16514":2266,"16515":8858,"16516":1341,"16517":7655,"16518":10,"16519":672,"16520":8692,"16521":10466,"16522":2548,"16523":10321,"16524":1452,"16525":942,"16526":6084,"16527":3324,"16528":10007,"16529":4073,"16530":5106,"16531":3711,"16532":4857,"16533":6595,"16534":3341,"16535":961,"16536":2820,"16537":10583,"16538":4211,"16539":3577,"16540":4937,"16541":6970,"16542":2237,"16543":7695,"16544":975,"16545":5960,"16546":9649,"16547":2262,"16548":218,"16549":8435,"16550":7569,"16551":1351,"16552":5987,"16553":9150,"16554":570,"16555":9422,"16556":2632,"16557":4935,"16558":2114,"16559":4193,"16560":7482,"16561":156,"16562":6743,"16563":4408,"16564":8973,"16565":2200,"16566":8300,"16567":7551,"16568":8849,"16569":8049,"16570":9722,"16571":8572,"16572":5737,"16573":3872,"16574":6695,"16575":9110,"16576":5254,"16577":3282,"16578":10866,"16579":8219,"16580":4940,"16581":6304,"16582":2194,"16583":3266,"16584":5926,"16585":8942,"16586":7175,"16587":4097,"16588":2704,"16589":7604,"16590":264,"16591":592,"16592":2511,"16593":2204,"16594":4637,"16595":3603,"16596":2845,"16597":5019,"16598":306,"16599":3209,"16600":1915,"16601":2793,"16602":8312,"16603":10653,"16604":6389,"16605":6249,"16606":8141,"16607":1876,"16608":4791,"16609":4891,"16610":5908,"16611":6480,"16612":1570,"16613":5970,"16614":9696,"16615":9316,"16616":2922,"16617":2383,"16618":8359,"16619":7056,"16620":7401,"16621":9999,"16622":4230,"16623":1009,"16624":10706,"16625":9474,"16626":1606,"16627":1816,"16628":1066,"16629":10871,"16630":7646,"16631":1014,"16632":10929,"16633":6500,"16634":466,"16635":7688,"16636":8522,"16637":3315,"16638":6794,"16639":1837,"16640":1110,"16641":5606,"16642":4770,"16643":8498,"16644":10126,"16645":5219,"16646":5189,"16647":8231,"16648":5688,"16649":5355,"16650":3207,"16651":2395,"16652":10710,"16653":6956,"16654":4885,"16655":711,"16656":722,"16657":6300,"16658":8068,"16659":59,"16660":2917,"16661":10771,"16662":4993,"16663":7764,"16664":6244,"16665":1049,"16666":6669,"16667":10620,"16668":2951,"16669":9779,"16670":4438,"16671":917,"16672":8249,"16673":9043,"16674":9299,"16675":8756,"16676":1246,"16677":9599,"16678":145,"16679":861,"16680":4842,"16681":3352,"16682":5427,"16683":3704,"16684":4568,"16685":2588,"16686":8500,"16687":8571,"16688":6513,"16689":9887,"16690":9435,"16691":10128,"16692":10836,"16693":2787,"16694":2940,"16695":6114,"16696":10455,"16697":4942,"16698":10636,"16699":7373,"16700":709,"16701":5266,"16702":7159,"16703":2620,"16704":9491,"16705":3291,"16706":3872,"16707":1721,"16708":3844,"16709":6079,"16710":1887,"16711":8510,"16712":2684,"16713":1019,"16714":8551,"16715":10610,"16716":1694,"16717":2343,"16718":2522,"16719":862,"16720":633,"16721":10089,"16722":4097,"16723":2333,"16724":2961,"16725":4013,"16726":6825,"16727":5919,"16728":4610,"16729":5160,"16730":2834,"16731":10500,"16732":9436,"16733":10714,"16734":5474,"16735":55,"16736":4497,"16737":8084,"16738":6145,"16739":2182,"16740":523,"16741":2048,"16742":9496,"16743":9619,"16744":10895,"16745":1025,"16746":4481,"16747":2539,"16748":2007,"16749":1495,"16750":5849,"16751":9726,"16752":10676,"16753":1204,"16754":7319,"16755":2449,"16756":8478,"16757":2750,"16758":5830,"16759":1155,"16760":1511,"16761":8940,"16762":5630,"16763":8060,"16764":8262,"16765":2651,"16766":7428,"16767":1769,"16768":7492,"16769":7269,"16770":4059,"16771":6202,"16772":5816,"16773":779,"16774":10547,"16775":8014,"16776":5152,"16777":7812,"16778":1420,"16779":4487,"16780":8458,"16781":6285,"16782":2574,"16783":3280,"16784":10175,"16785":9993,"16786":2621,"16787":7797,"16788":7240,"16789":1362,"16790":4743,"16791":6248,"16792":10245,"16793":2657,"16794":5394,"16795":7290,"16796":2525,"16797":6411,"16798":671,"16799":5000,"16800":8456,"16801":2152,"16802":1980,"16803":8054,"16804":7243,"16805":2973,"16806":2002,"16807":1767,"16808":7592,"16809":5262,"16810":9592,"16811":5464,"16812":138,"16813":6871,"16814":9224,"16815":8956,"16816":5645,"16817":1246,"16818":3320,"16819":5961,"16820":359,"16821":2118,"16822":6823,"16823":7403,"16824":5488,"16825":3585,"16826":4966,"16827":4852,"16828":6437,"16829":10995,"16830":5056,"16831":2361,"16832":5081,"16833":7024,"16834":2688,"16835":6354,"16836":232,"16837":5808,"16838":7841,"16839":3612,"16840":5180,"16841":944,"16842":10644,"16843":3006,"16844":6466,"16845":3423,"16846":9703,"16847":4732,"16848":10712,"16849":9924,"16850":1404,"16851":2375,"16852":45,"16853":9014,"16854":2332,"16855":8264,"16856":7615,"16857":203,"16858":8250,"16859":2646,"16860":8378,"16861":9937,"16862":9279,"16863":7546,"16864":731,"16865":1993,"16866":363,"16867":5183,"16868":6329,"16869":3185,"16870":763,"16871":5451,"16872":216,"16873":7122,"16874":10265,"16875":5577,"16876":10278,"16877":6878,"16878":1082,"16879":9559,"16880":2270,"16881":8335,"16882":2851,"16883":2522,"16884":4236,"16885":9287,"16886":2517,"16887":474,"16888":3438,"16889":6690,"16890":2458,"16891":3727,"16892":9171,"16893":81,"16894":7689,"16895":292,"16896":620,"16897":5905,"16898":5321,"16899":5764,"16900":2288,"16901":7576,"16902":6662,"16903":6016,"16904":10128,"16905":126,"16906":3658,"16907":278,"16908":616,"16909":8088,"16910":4473,"16911":3,"16912":1220,"16913":9836,"16914":10819,"16915":5637,"16916":6132,"16917":5360,"16918":1877,"16919":441,"16920":10582,"16921":477,"16922":7914,"16923":3828,"16924":6405,"16925":10951,"16926":10880,"16927":10376,"16928":3559,"16929":10008,"16930":3635,"16931":7040,"16932":3443,"16933":9791,"16934":8240,"16935":7392,"16936":3721,"16937":7635,"16938":8930,"16939":1562,"16940":8220,"16941":4180,"16942":4086,"16943":6159,"16944":3918,"16945":8296,"16946":6589,"16947":6874,"16948":8923,"16949":5771,"16950":1136,"16951":849,"16952":1133,"16953":7960,"16954":3963,"16955":4235,"16956":6906,"16957":8037,"16958":129,"16959":1358,"16960":7503,"16961":2002,"16962":9527,"16963":6342,"16964":10229,"16965":3154,"16966":2344,"16967":7688,"16968":5680,"16969":133,"16970":2733,"16971":7275,"16972":2801,"16973":2695,"16974":5623,"16975":1568,"16976":387,"16977":4678,"16978":6024,"16979":5562,"16980":3449,"16981":9864,"16982":5679,"16983":2878,"16984":6469,"16985":3994,"16986":2046,"16987":3813,"16988":3306,"16989":33,"16990":10593,"16991":3829,"16992":10265,"16993":6021,"16994":5232,"16995":1810,"16996":1475,"16997":3093,"16998":5304,"16999":10613,"17000":2321,"17001":1658,"17002":6541,"17003":10901,"17004":1966,"17005":5178,"17006":8094,"17007":2032,"17008":10838,"17009":4463,"17010":526,"17011":10633,"17012":9052,"17013":9097,"17014":7987,"17015":9270,"17016":3922,"17017":6894,"17018":2892,"17019":10405,"17020":9607,"17021":7087,"17022":3733,"17023":10133,"17024":2826,"17025":10482,"17026":7880,"17027":1604,"17028":10817,"17029":2436,"17030":10729,"17031":986,"17032":6760,"17033":2136,"17034":1461,"17035":653,"17036":5447,"17037":3245,"17038":351,"17039":5941,"17040":9803,"17041":287,"17042":10749,"17043":1753,"17044":6772,"17045":3391,"17046":1592,"17047":987,"17048":6616,"17049":8216,"17050":6400,"17051":184,"17052":8870,"17053":5793,"17054":2196,"17055":7065,"17056":2833,"17057":7979,"17058":10174,"17059":5851,"17060":6220,"17061":3882,"17062":9094,"17063":5613,"17064":8914,"17065":4706,"17066":10543,"17067":10342,"17068":5353,"17069":8091,"17070":208,"17071":3870,"17072":6403,"17073":2304,"17074":10984,"17075":1249,"17076":1115,"17077":10814,"17078":4687,"17079":3717,"17080":6309,"17081":9156,"17082":10460,"17083":4421,"17084":3196,"17085":3373,"17086":5898,"17087":1691,"17088":1448,"17089":5188,"17090":10742,"17091":869,"17092":2569,"17093":2484,"17094":1034,"17095":1220,"17096":621,"17097":9474,"17098":10377,"17099":9500,"17100":7432,"17101":6361,"17102":8556,"17103":4648,"17104":7211,"17105":6090,"17106":10386,"17107":4288,"17108":10415,"17109":2927,"17110":4798,"17111":2541,"17112":10660,"17113":2843,"17114":2655,"17115":5611,"17116":4730,"17117":10028,"17118":30,"17119":10645,"17120":7039,"17121":9461,"17122":2872,"17123":5340,"17124":1855,"17125":9521,"17126":3650,"17127":7080,"17128":10068,"17129":5404,"17130":4106,"17131":3135,"17132":7567,"17133":8733,"17134":4503,"17135":10488,"17136":840,"17137":3099,"17138":3010,"17139":3786,"17140":2342,"17141":9637,"17142":7532,"17143":4193,"17144":2852,"17145":9610,"17146":4591,"17147":9528,"17148":4598,"17149":9878,"17150":1903,"17151":668,"17152":6065,"17153":617,"17154":7803,"17155":523,"17156":3060,"17157":4445,"17158":2077,"17159":9101,"17160":5920,"17161":372,"17162":7392,"17163":2741,"17164":3036,"17165":5141,"17166":7062,"17167":3144,"17168":959,"17169":138,"17170":1292,"17171":6845,"17172":218,"17173":1293,"17174":3835,"17175":2614,"17176":9790,"17177":3167,"17178":8133,"17179":1039,"17180":1898,"17181":2634,"17182":1131,"17183":8044,"17184":10146,"17185":4763,"17186":1784,"17187":1052,"17188":6388,"17189":604,"17190":9687,"17191":9914,"17192":2448,"17193":472,"17194":2934,"17195":2685,"17196":2414,"17197":7317,"17198":712,"17199":8178,"17200":4991,"17201":8592,"17202":4632,"17203":879,"17204":3860,"17205":8285,"17206":2831,"17207":5549,"17208":10730,"17209":4510,"17210":10464,"17211":4735,"17212":3988,"17213":6778,"17214":6519,"17215":8884,"17216":4211,"17217":1733,"17218":8376,"17219":3674,"17220":2355,"17221":4499,"17222":2426,"17223":8973,"17224":5518,"17225":7109,"17226":1660,"17227":1255,"17228":10053,"17229":6616,"17230":6504,"17231":10085,"17232":7833,"17233":330,"17234":5461,"17235":6740,"17236":2531,"17237":7038,"17238":10331,"17239":2596,"17240":10821,"17241":7239,"17242":6649,"17243":10954,"17244":2711,"17245":4603,"17246":5966,"17247":1338,"17248":6230,"17249":365,"17250":4125,"17251":6535,"17252":6,"17253":1268,"17254":8874,"17255":7103,"17256":8973,"17257":1480,"17258":7491,"17259":3217,"17260":3507,"17261":9574,"17262":63,"17263":3233,"17264":8495,"17265":10790,"17266":10539,"17267":3333,"17268":7804,"17269":7735,"17270":8256,"17271":3411,"17272":2618,"17273":2512,"17274":2531,"17275":627,"17276":3267,"17277":9076,"17278":7537,"17279":1767,"17280":2986,"17281":4304,"17282":5595,"17283":10194,"17284":1974,"17285":694,"17286":4186,"17287":5792,"17288":7184,"17289":7725,"17290":2774,"17291":6917,"17292":7077,"17293":6587,"17294":1397,"17295":9629,"17296":8636,"17297":42,"17298":4165,"17299":1038,"17300":5267,"17301":8605,"17302":4151,"17303":10193,"17304":6201,"17305":8114,"17306":5075,"17307":8079,"17308":414,"17309":8821,"17310":9314,"17311":4148,"17312":3306,"17313":8282,"17314":10038,"17315":9591,"17316":3776,"17317":6138,"17318":1223,"17319":378,"17320":9932,"17321":1660,"17322":4891,"17323":7128,"17324":10952,"17325":10266,"17326":1413,"17327":6885,"17328":7683,"17329":9541,"17330":986,"17331":438,"17332":922,"17333":8442,"17334":7120,"17335":10225,"17336":7887,"17337":6705,"17338":3173,"17339":9287,"17340":10917,"17341":5704,"17342":4400,"17343":6164,"17344":4814,"17345":2341,"17346":6285,"17347":9704,"17348":6966,"17349":10269,"17350":5388,"17351":9874,"17352":10054,"17353":7108,"17354":3045,"17355":9067,"17356":9682,"17357":7863,"17358":7709,"17359":8099,"17360":2783,"17361":1174,"17362":4888,"17363":10148,"17364":1567,"17365":1039,"17366":36,"17367":4802,"17368":7832,"17369":5844,"17370":1774,"17371":9757,"17372":6426,"17373":6911,"17374":2647,"17375":10219,"17376":8743,"17377":9630,"17378":4333,"17379":3058,"17380":8496,"17381":1506,"17382":3532,"17383":1744,"17384":5549,"17385":4601,"17386":206,"17387":7823,"17388":9231,"17389":9706,"17390":8800,"17391":2425,"17392":9029,"17393":4178,"17394":3068,"17395":8215,"17396":2060,"17397":10841,"17398":5343,"17399":10148,"17400":3184,"17401":3455,"17402":5233,"17403":5204,"17404":6390,"17405":4015,"17406":4280,"17407":5912,"17408":6864,"17409":771,"17410":2292,"17411":3663,"17412":156,"17413":9867,"17414":8754,"17415":6761,"17416":4614,"17417":2317,"17418":5084,"17419":4344,"17420":1161,"17421":9887,"17422":6329,"17423":8140,"17424":2596,"17425":5690,"17426":2579,"17427":8225,"17428":4887,"17429":4902,"17430":10252,"17431":2824,"17432":1499,"17433":5837,"17434":7042,"17435":6160,"17436":8736,"17437":10510,"17438":1609,"17439":136,"17440":2064,"17441":1420,"17442":2546,"17443":585,"17444":10632,"17445":4787,"17446":6089,"17447":6770,"17448":5537,"17449":1071,"17450":6213,"17451":3881,"17452":3129,"17453":5010,"17454":6518,"17455":938,"17456":5114,"17457":790,"17458":10412,"17459":9288,"17460":9532,"17461":5699,"17462":7494,"17463":2758,"17464":2229,"17465":3963,"17466":9911,"17467":2512,"17468":10297,"17469":5997,"17470":7550,"17471":2755,"17472":6849,"17473":10434,"17474":8105,"17475":7353,"17476":6030,"17477":1454,"17478":9240,"17479":5071,"17480":31,"17481":9139,"17482":74,"17483":4367,"17484":3030,"17485":2460,"17486":710,"17487":2059,"17488":8674,"17489":5777,"17490":4073,"17491":10469,"17492":10066,"17493":4973,"17494":2698,"17495":68,"17496":3319,"17497":1442,"17498":141,"17499":3608,"17500":4246,"17501":70,"17502":3525,"17503":5899,"17504":4438,"17505":2115,"17506":1271,"17507":7258,"17508":9703,"17509":725,"17510":22,"17511":1286,"17512":6303,"17513":1507,"17514":7883,"17515":1593,"17516":10422,"17517":8684,"17518":5262,"17519":3861,"17520":8739,"17521":6546,"17522":10191,"17523":4908,"17524":8750,"17525":1990,"17526":7594,"17527":2009,"17528":456,"17529":9813,"17530":9246,"17531":7820,"17532":921,"17533":9868,"17534":3543,"17535":3109,"17536":9745,"17537":3567,"17538":5065,"17539":7684,"17540":8489,"17541":1990,"17542":1415,"17543":7136,"17544":554,"17545":877,"17546":6884,"17547":208,"17548":10747,"17549":1070,"17550":6631,"17551":1077,"17552":156,"17553":1406,"17554":2490,"17555":10237,"17556":2451,"17557":3600,"17558":10729,"17559":3591,"17560":5809,"17561":6530,"17562":6255,"17563":3794,"17564":8809,"17565":874,"17566":5996,"17567":5446,"17568":3158,"17569":3435,"17570":2128,"17571":5999,"17572":9119,"17573":3724,"17574":927,"17575":10286,"17576":7900,"17577":10932,"17578":907,"17579":8459,"17580":4836,"17581":4626,"17582":2499,"17583":1052,"17584":2906,"17585":8916,"17586":5220,"17587":8460,"17588":8092,"17589":6202,"17590":2134,"17591":2184,"17592":3045,"17593":1587,"17594":652,"17595":7360,"17596":6385,"17597":6813,"17598":5888,"17599":6252,"17600":7378,"17601":10060,"17602":2932,"17603":1749,"17604":997,"17605":7381,"17606":4836,"17607":5531,"17608":9673,"17609":1640,"17610":10893,"17611":4239,"17612":2913,"17613":1353,"17614":6920,"17615":10846,"17616":9204,"17617":2931,"17618":8466,"17619":7466,"17620":1201,"17621":8808,"17622":519,"17623":1749,"17624":977,"17625":6602,"17626":4743,"17627":1973,"17628":2364,"17629":10342,"17630":4267,"17631":8255,"17632":4882,"17633":9465,"17634":5945,"17635":4328,"17636":7912,"17637":6256,"17638":5893,"17639":9959,"17640":1306,"17641":10621,"17642":7875,"17643":8085,"17644":6358,"17645":10514,"17646":10453,"17647":8929,"17648":4756,"17649":3760,"17650":8383,"17651":10129,"17652":1060,"17653":355,"17654":804,"17655":1444,"17656":5057,"17657":6928,"17658":4071,"17659":2230,"17660":6886,"17661":6333,"17662":10121,"17663":6623,"17664":9957,"17665":9072,"17666":786,"17667":10464,"17668":10882,"17669":1404,"17670":6351,"17671":7377,"17672":3362,"17673":8500,"17674":1752,"17675":915,"17676":2707,"17677":8405,"17678":10369,"17679":1566,"17680":9605,"17681":6145,"17682":2325,"17683":3830,"17684":6086,"17685":9502,"17686":593,"17687":8402,"17688":10174,"17689":9966,"17690":1732,"17691":9473,"17692":10432,"17693":4405,"17694":4326,"17695":3768,"17696":10588,"17697":3532,"17698":10825,"17699":9273,"17700":4204,"17701":3896,"17702":10119,"17703":7207,"17704":1469,"17705":179,"17706":4719,"17707":9787,"17708":5600,"17709":7247,"17710":5162,"17711":7338,"17712":817,"17713":10992,"17714":6192,"17715":2959,"17716":6121,"17717":9343,"17718":7104,"17719":4774,"17720":2646,"17721":2237,"17722":6083,"17723":9569,"17724":1445,"17725":9931,"17726":10898,"17727":2050,"17728":2879,"17729":375,"17730":8735,"17731":3834,"17732":1218,"17733":2242,"17734":4275,"17735":3200,"17736":1436,"17737":2771,"17738":10105,"17739":905,"17740":10275,"17741":4662,"17742":9906,"17743":4786,"17744":1809,"17745":5698,"17746":5262,"17747":9997,"17748":10518,"17749":3980,"17750":6916,"17751":5164,"17752":7099,"17753":8552,"17754":4276,"17755":2113,"17756":7180,"17757":1594,"17758":7604,"17759":3529,"17760":9395,"17761":6282,"17762":8889,"17763":2687,"17764":9669,"17765":10385,"17766":7533,"17767":2803,"17768":10880,"17769":749,"17770":9752,"17771":1383,"17772":865,"17773":809,"17774":9031,"17775":1572,"17776":4759,"17777":6952,"17778":6069,"17779":4573,"17780":9914,"17781":4179,"17782":474,"17783":5685,"17784":2518,"17785":3239,"17786":6409,"17787":178,"17788":10935,"17789":9130,"17790":6287,"17791":5489,"17792":7978,"17793":5326,"17794":3698,"17795":2245,"17796":3859,"17797":6439,"17798":7785,"17799":9834,"17800":8839,"17801":5113,"17802":7447,"17803":4004,"17804":7606,"17805":4743,"17806":5539,"17807":9602,"17808":5765,"17809":2029,"17810":271,"17811":1672,"17812":109,"17813":8823,"17814":7665,"17815":2231,"17816":8873,"17817":9919,"17818":3317,"17819":170,"17820":5461,"17821":9689,"17822":4721,"17823":9849,"17824":6562,"17825":1014,"17826":4476,"17827":3928,"17828":10204,"17829":2424,"17830":10288,"17831":4483,"17832":3071,"17833":5937,"17834":9213,"17835":1915,"17836":7103,"17837":459,"17838":3681,"17839":661,"17840":9541,"17841":4997,"17842":7977,"17843":3383,"17844":7448,"17845":7427,"17846":5734,"17847":3857,"17848":7548,"17849":1443,"17850":6411,"17851":5696,"17852":1994,"17853":1351,"17854":5374,"17855":7747,"17856":2150,"17857":10390,"17858":10212,"17859":8692,"17860":975,"17861":5003,"17862":5877,"17863":5690,"17864":5702,"17865":631,"17866":7059,"17867":4949,"17868":2914,"17869":7057,"17870":10314,"17871":6826,"17872":5644,"17873":5622,"17874":10020,"17875":7776,"17876":7764,"17877":6066,"17878":5470,"17879":5055,"17880":5544,"17881":9394,"17882":525,"17883":2521,"17884":2285,"17885":10298,"17886":2316,"17887":10792,"17888":1825,"17889":6624,"17890":2138,"17891":6941,"17892":85,"17893":473,"17894":8417,"17895":3878,"17896":10607,"17897":3636,"17898":7025,"17899":7785,"17900":123,"17901":2021,"17902":5579,"17903":3667,"17904":7074,"17905":988,"17906":4303,"17907":10429,"17908":10767,"17909":5702,"17910":10404,"17911":5287,"17912":89,"17913":4995,"17914":2318,"17915":6755,"17916":9325,"17917":7018,"17918":35,"17919":4447,"17920":4177,"17921":4455,"17922":9837,"17923":10858,"17924":6622,"17925":7832,"17926":9459,"17927":3386,"17928":10965,"17929":480,"17930":4933,"17931":4771,"17932":3146,"17933":4003,"17934":6361,"17935":3628,"17936":2954,"17937":1464,"17938":1270,"17939":218,"17940":6951,"17941":6351,"17942":8830,"17943":155,"17944":4609,"17945":2311,"17946":7431,"17947":10159,"17948":10281,"17949":5350,"17950":1672,"17951":5864,"17952":10075,"17953":3304,"17954":70,"17955":2013,"17956":2208,"17957":3302,"17958":2028,"17959":9569,"17960":5241,"17961":3945,"17962":8142,"17963":4663,"17964":7489,"17965":9635,"17966":7040,"17967":1034,"17968":10408,"17969":2519,"17970":2468,"17971":9398,"17972":2740,"17973":8386,"17974":2602,"17975":2819,"17976":10737,"17977":10717,"17978":297,"17979":3385,"17980":10123,"17981":3849,"17982":313,"17983":3610,"17984":483,"17985":10909,"17986":3114,"17987":2512,"17988":9232,"17989":9584,"17990":5618,"17991":10831,"17992":5837,"17993":10354,"17994":9076,"17995":10302,"17996":5339,"17997":726,"17998":1923,"17999":9620,"18000":5367,"18001":7149,"18002":8275,"18003":5178,"18004":4932,"18005":8415,"18006":4864,"18007":1346,"18008":5183,"18009":3894,"18010":3668,"18011":2673,"18012":7016,"18013":4307,"18014":4871,"18015":10867,"18016":7930,"18017":8203,"18018":804,"18019":9096,"18020":6567,"18021":436,"18022":274,"18023":9267,"18024":4643,"18025":61,"18026":4603,"18027":4596,"18028":5872,"18029":3448,"18030":122,"18031":3218,"18032":7084,"18033":4325,"18034":1512,"18035":8715,"18036":1422,"18037":5184,"18038":5870,"18039":9522,"18040":10613,"18041":7018,"18042":3543,"18043":5411,"18044":2561,"18045":1156,"18046":10243,"18047":1826,"18048":1246,"18049":5491,"18050":6014,"18051":3988,"18052":359,"18053":3153,"18054":1922,"18055":5422,"18056":9499,"18057":1542,"18058":4493,"18059":10332,"18060":3288,"18061":3727,"18062":1194,"18063":4524,"18064":5431,"18065":9633,"18066":8420,"18067":926,"18068":5724,"18069":4353,"18070":2177,"18071":4633,"18072":4816,"18073":9162,"18074":4382,"18075":1926,"18076":4629,"18077":274,"18078":3916,"18079":10874,"18080":8614,"18081":7823,"18082":8576,"18083":10885,"18084":9163,"18085":3278,"18086":9378,"18087":7753,"18088":8106,"18089":2347,"18090":5119,"18091":2896,"18092":694,"18093":466,"18094":5048,"18095":2025,"18096":10414,"18097":3139,"18098":1029,"18099":8381,"18100":7173,"18101":1397,"18102":1836,"18103":6317,"18104":4599,"18105":5818,"18106":4402,"18107":1520,"18108":5098,"18109":552,"18110":3617,"18111":10443,"18112":4790,"18113":3229,"18114":1835,"18115":4820,"18116":3024,"18117":1606,"18118":2192,"18119":1282,"18120":10588,"18121":3064,"18122":10266,"18123":4400,"18124":3425,"18125":5395,"18126":4831,"18127":2460,"18128":9476,"18129":1083,"18130":5915,"18131":2989,"18132":3112,"18133":8108,"18134":4022,"18135":1015,"18136":2091,"18137":8777,"18138":7304,"18139":8610,"18140":7342,"18141":4521,"18142":2489,"18143":7967,"18144":663,"18145":1158,"18146":2478,"18147":4220,"18148":8725,"18149":9010,"18150":9909,"18151":2431,"18152":5978,"18153":8535,"18154":4085,"18155":7809,"18156":4541,"18157":8244,"18158":3429,"18159":10922,"18160":2587,"18161":8208,"18162":8823,"18163":7847,"18164":9012,"18165":6119,"18166":9918,"18167":7566,"18168":8278,"18169":5309,"18170":9855,"18171":8268,"18172":3886,"18173":7488,"18174":8032,"18175":2594,"18176":9387,"18177":4365,"18178":10383,"18179":120,"18180":1212,"18181":5678,"18182":3212,"18183":2487,"18184":8591,"18185":7050,"18186":1467,"18187":9573,"18188":4356,"18189":6001,"18190":6840,"18191":9953,"18192":10375,"18193":9044,"18194":7996,"18195":3847,"18196":9398,"18197":8064,"18198":9909,"18199":7393,"18200":5783,"18201":1142,"18202":10122,"18203":10828,"18204":409,"18205":9704,"18206":10873,"18207":3189,"18208":8771,"18209":1533,"18210":8901,"18211":7555,"18212":4029,"18213":9658,"18214":8693,"18215":8551,"18216":3298,"18217":9771,"18218":8553,"18219":9527,"18220":1130,"18221":4174,"18222":7218,"18223":1077,"18224":2467,"18225":6761,"18226":1440,"18227":4155,"18228":2862,"18229":6317,"18230":648,"18231":6926,"18232":5791,"18233":658,"18234":9098,"18235":9310,"18236":10842,"18237":3331,"18238":10574,"18239":9269,"18240":4722,"18241":10908,"18242":9276,"18243":9290,"18244":283,"18245":10500,"18246":5615,"18247":8515,"18248":3161,"18249":10925,"18250":169,"18251":9007,"18252":9957,"18253":4608,"18254":761,"18255":7051,"18256":3812,"18257":432,"18258":10081,"18259":1659,"18260":3626,"18261":7620,"18262":3195,"18263":169,"18264":9201,"18265":3304,"18266":875,"18267":387,"18268":8749,"18269":6237,"18270":6022,"18271":5012,"18272":2658,"18273":324,"18274":3447,"18275":1300,"18276":6450,"18277":10966,"18278":360,"18279":4131,"18280":4929,"18281":5750,"18282":149,"18283":10561,"18284":3185,"18285":6787,"18286":153,"18287":5863,"18288":9170,"18289":3589,"18290":6614,"18291":1361,"18292":9724,"18293":7592,"18294":8681,"18295":889,"18296":4623,"18297":10912,"18298":9726,"18299":9126,"18300":9437,"18301":595,"18302":1171,"18303":3630,"18304":8560,"18305":9033,"18306":9109,"18307":3424,"18308":3534,"18309":10658,"18310":5747,"18311":9331,"18312":4898,"18313":3820,"18314":3145,"18315":10918,"18316":5998,"18317":4358,"18318":9558,"18319":5812,"18320":4572,"18321":7688,"18322":3370,"18323":7367,"18324":1948,"18325":9442,"18326":5285,"18327":1095,"18328":3327,"18329":4043,"18330":10657,"18331":8735,"18332":7138,"18333":3272,"18334":6778,"18335":953,"18336":7755,"18337":580,"18338":10881,"18339":3509,"18340":5506,"18341":7259,"18342":7803,"18343":386,"18344":3107,"18345":6142,"18346":1129,"18347":5992,"18348":2727,"18349":9216,"18350":7003,"18351":1716,"18352":7293,"18353":1433,"18354":3255,"18355":9856,"18356":8249,"18357":2910,"18358":10881,"18359":2504,"18360":9073,"18361":10113,"18362":9479,"18363":1286,"18364":3018,"18365":10170,"18366":3305,"18367":3711,"18368":5603,"18369":2190,"18370":4822,"18371":1658,"18372":1244,"18373":2401,"18374":2504,"18375":8276,"18376":6971,"18377":9948,"18378":9038,"18379":7632,"18380":5452,"18381":253,"18382":795,"18383":6734,"18384":7532,"18385":202,"18386":8838,"18387":954,"18388":8148,"18389":3361,"18390":8258,"18391":10926,"18392":10219,"18393":5093,"18394":321,"18395":9634,"18396":5114,"18397":7223,"18398":9043,"18399":5812,"18400":5370,"18401":1677,"18402":3956,"18403":5857,"18404":1052,"18405":9238,"18406":1895,"18407":106,"18408":7208,"18409":5066,"18410":3458,"18411":6406,"18412":3046,"18413":5114,"18414":7342,"18415":873,"18416":5108,"18417":6101,"18418":710,"18419":9975,"18420":828,"18421":9748,"18422":1023,"18423":83,"18424":3987,"18425":10243,"18426":8279,"18427":6269,"18428":62,"18429":3866,"18430":9072,"18431":5630,"18432":7932,"18433":871,"18434":10739,"18435":5099,"18436":4597,"18437":1983,"18438":9556,"18439":4596,"18440":2647,"18441":4431,"18442":1922,"18443":7169,"18444":510,"18445":5262,"18446":2644,"18447":7253,"18448":9823,"18449":1920,"18450":9337,"18451":7761,"18452":9450,"18453":3622,"18454":2249,"18455":1717,"18456":2341,"18457":1628,"18458":4122,"18459":10944,"18460":9155,"18461":4635,"18462":6293,"18463":5789,"18464":4012,"18465":213,"18466":1788,"18467":4463,"18468":966,"18469":7944,"18470":8207,"18471":10694,"18472":596,"18473":1575,"18474":2155,"18475":3564,"18476":2180,"18477":9436,"18478":4394,"18479":7673,"18480":8892,"18481":4567,"18482":8376,"18483":7288,"18484":1558,"18485":5371,"18486":6462,"18487":617,"18488":6492,"18489":4728,"18490":9715,"18491":4854,"18492":4170,"18493":3660,"18494":1474,"18495":5804,"18496":7627,"18497":5260,"18498":9624,"18499":6711,"18500":2445,"18501":10130,"18502":4662,"18503":5642,"18504":4691,"18505":10668,"18506":8969,"18507":8533,"18508":5204,"18509":2924,"18510":921,"18511":10690,"18512":6081,"18513":8500,"18514":1044,"18515":6055,"18516":4379,"18517":3620,"18518":2543,"18519":51,"18520":5988,"18521":914,"18522":2494,"18523":4758,"18524":2547,"18525":9802,"18526":2622,"18527":5187,"18528":2187,"18529":7370,"18530":9428,"18531":2815,"18532":10013,"18533":4704,"18534":9579,"18535":1776,"18536":3063,"18537":10218,"18538":1077,"18539":7549,"18540":1553,"18541":10855,"18542":5217,"18543":2237,"18544":7239,"18545":9257,"18546":10783,"18547":1106,"18548":9834,"18549":3455,"18550":8860,"18551":6923,"18552":4977,"18553":3062,"18554":8443,"18555":10034,"18556":7941,"18557":4461,"18558":6480,"18559":9016,"18560":3797,"18561":6401,"18562":8994,"18563":3675,"18564":218,"18565":3986,"18566":1595,"18567":5725,"18568":5859,"18569":1869,"18570":10461,"18571":10380,"18572":2270,"18573":8864,"18574":7682,"18575":5815,"18576":4914,"18577":10424,"18578":1247,"18579":10187,"18580":1181,"18581":1644,"18582":8435,"18583":1210,"18584":10952,"18585":10600,"18586":7109,"18587":4186,"18588":10072,"18589":4467,"18590":9547,"18591":7692,"18592":9033,"18593":9055,"18594":5196,"18595":10435,"18596":2168,"18597":320,"18598":6461,"18599":8171,"18600":6038,"18601":6977,"18602":9079,"18603":10340,"18604":8588,"18605":5895,"18606":10823,"18607":4134,"18608":4191,"18609":2875,"18610":4271,"18611":5045,"18612":8661,"18613":497,"18614":5411,"18615":3087,"18616":10700,"18617":6951,"18618":8485,"18619":3324,"18620":10120,"18621":4509,"18622":8076,"18623":9755,"18624":2207,"18625":1086,"18626":726,"18627":6884,"18628":8002,"18629":9226,"18630":9061,"18631":4874,"18632":7807,"18633":9137,"18634":6875,"18635":2783,"18636":7731,"18637":8349,"18638":5662,"18639":1120,"18640":6962,"18641":7478,"18642":6720,"18643":8730,"18644":5604,"18645":124,"18646":8108,"18647":5671,"18648":1775,"18649":6300,"18650":4564,"18651":6139,"18652":3962,"18653":347,"18654":4677,"18655":1983,"18656":9525,"18657":7591,"18658":5345,"18659":1635,"18660":8485,"18661":8267,"18662":9270,"18663":4498,"18664":5590,"18665":6755,"18666":10556,"18667":879,"18668":3699,"18669":431,"18670":6347,"18671":3438,"18672":8866,"18673":6414,"18674":6503,"18675":3599,"18676":1836,"18677":2591,"18678":4941,"18679":907,"18680":3475,"18681":8458,"18682":10023,"18683":6455,"18684":2154,"18685":263,"18686":1578,"18687":401,"18688":7235,"18689":6158,"18690":5433,"18691":4168,"18692":10181,"18693":10829,"18694":2166,"18695":6232,"18696":5533,"18697":9777,"18698":3959,"18699":10624,"18700":9996,"18701":240,"18702":5284,"18703":316,"18704":9056,"18705":10659,"18706":6990,"18707":7884,"18708":3840,"18709":1684,"18710":8963,"18711":7492,"18712":4096,"18713":10742,"18714":7883,"18715":7019,"18716":7332,"18717":929,"18718":9122,"18719":6563,"18720":6150,"18721":9370,"18722":9015,"18723":8223,"18724":98,"18725":9024,"18726":7515,"18727":2964,"18728":10342,"18729":5596,"18730":7053,"18731":8741,"18732":9023,"18733":3540,"18734":4699,"18735":3752,"18736":4660,"18737":213,"18738":2334,"18739":3152,"18740":2855,"18741":7564,"18742":8400,"18743":3083,"18744":6870,"18745":3204,"18746":8283,"18747":7634,"18748":5475,"18749":3250,"18750":8539,"18751":6087,"18752":6857,"18753":6359,"18754":2210,"18755":8532,"18756":5008,"18757":7316,"18758":9709,"18759":5444,"18760":549,"18761":6746,"18762":8096,"18763":2113,"18764":156,"18765":3846,"18766":1560,"18767":8496,"18768":3852,"18769":5463,"18770":9735,"18771":4869,"18772":1537,"18773":1948,"18774":9423,"18775":142,"18776":2733,"18777":8639,"18778":7029,"18779":10224,"18780":3692,"18781":9565,"18782":2760,"18783":6522,"18784":5025,"18785":10670,"18786":4614,"18787":840,"18788":7470,"18789":4754,"18790":4824,"18791":4682,"18792":4707,"18793":10210,"18794":2406,"18795":4679,"18796":4630,"18797":5363,"18798":4052,"18799":5807,"18800":7565,"18801":763,"18802":6280,"18803":3142,"18804":3415,"18805":4996,"18806":8566,"18807":6806,"18808":3851,"18809":9435,"18810":2096,"18811":9294,"18812":1637,"18813":8210,"18814":1456,"18815":3351,"18816":7207,"18817":8799,"18818":8839,"18819":2331,"18820":5956,"18821":943,"18822":3803,"18823":622,"18824":8958,"18825":10523,"18826":4813,"18827":9087,"18828":8603,"18829":7603,"18830":10559,"18831":6975,"18832":543,"18833":2300,"18834":7121,"18835":4045,"18836":7732,"18837":542,"18838":2736,"18839":10861,"18840":10335,"18841":8348,"18842":9872,"18843":1757,"18844":8573,"18845":4343,"18846":4601,"18847":3833,"18848":2984,"18849":6524,"18850":2669,"18851":3781,"18852":4495,"18853":5005,"18854":5712,"18855":5927,"18856":1841,"18857":6777,"18858":598,"18859":9425,"18860":9334,"18861":3110,"18862":6948,"18863":2665,"18864":10373,"18865":530,"18866":3490,"18867":6982,"18868":610,"18869":9199,"18870":8101,"18871":10096,"18872":10763,"18873":10383,"18874":6315,"18875":10918,"18876":3321,"18877":304,"18878":2712,"18879":7631,"18880":2650,"18881":5933,"18882":4352,"18883":7510,"18884":50,"18885":6225,"18886":5703,"18887":9121,"18888":1984,"18889":168,"18890":8517,"18891":6803,"18892":224,"18893":6764,"18894":5529,"18895":6423,"18896":7648,"18897":7993,"18898":572,"18899":920,"18900":4207,"18901":4858,"18902":10733,"18903":5479,"18904":3538,"18905":1779,"18906":8418,"18907":6407,"18908":3502,"18909":10885,"18910":7400,"18911":4841,"18912":10258,"18913":2330,"18914":2006,"18915":10961,"18916":9547,"18917":7886,"18918":7939,"18919":2975,"18920":1229,"18921":7961,"18922":1785,"18923":5025,"18924":10303,"18925":7068,"18926":2560,"18927":8222,"18928":9592,"18929":8394,"18930":7590,"18931":4525,"18932":7663,"18933":10862,"18934":8681,"18935":5678,"18936":2628,"18937":2855,"18938":8123,"18939":10127,"18940":728,"18941":389,"18942":5457,"18943":4787,"18944":6276,"18945":10709,"18946":8595,"18947":9933,"18948":2247,"18949":2848,"18950":3914,"18951":7726,"18952":1259,"18953":6773,"18954":3068,"18955":2738,"18956":9074,"18957":5181,"18958":3398,"18959":3129,"18960":6437,"18961":2781,"18962":10481,"18963":2926,"18964":3928,"18965":7333,"18966":2185,"18967":8974,"18968":6041,"18969":5285,"18970":1413,"18971":9376,"18972":4835,"18973":10633,"18974":10594,"18975":10669,"18976":957,"18977":3421,"18978":555,"18979":3386,"18980":3364,"18981":1429,"18982":5869,"18983":9501,"18984":7968,"18985":5980,"18986":6230,"18987":5809,"18988":8516,"18989":2547,"18990":8766,"18991":1634,"18992":7917,"18993":8069,"18994":7589,"18995":3027,"18996":9119,"18997":4165,"18998":7648,"18999":6904,"19000":9229,"19001":5674,"19002":10054,"19003":4150,"19004":6238,"19005":5777,"19006":7716,"19007":4956,"19008":505,"19009":1943,"19010":601,"19011":9035,"19012":4594,"19013":5349,"19014":7055,"19015":759,"19016":6746,"19017":10884,"19018":6412,"19019":9968,"19020":3402,"19021":7178,"19022":9550,"19023":1517,"19024":7855,"19025":4077,"19026":5429,"19027":942,"19028":2729,"19029":8591,"19030":8965,"19031":2365,"19032":219,"19033":5017,"19034":2516,"19035":4169,"19036":8433,"19037":7126,"19038":723,"19039":2559,"19040":5671,"19041":9110,"19042":913,"19043":10121,"19044":2284,"19045":9429,"19046":6025,"19047":3258,"19048":8459,"19049":4328,"19050":8855,"19051":5713,"19052":461,"19053":2406,"19054":4114,"19055":5779,"19056":5753,"19057":4103,"19058":3376,"19059":1384,"19060":70,"19061":7429,"19062":3271,"19063":7449,"19064":8776,"19065":2287,"19066":6560,"19067":4991,"19068":4424,"19069":2038,"19070":5349,"19071":8418,"19072":7429,"19073":2097,"19074":4024,"19075":292,"19076":8147,"19077":3127,"19078":5091,"19079":8719,"19080":6901,"19081":3117,"19082":10445,"19083":2359,"19084":8568,"19085":8789,"19086":4607,"19087":2471,"19088":5658,"19089":4933,"19090":7191,"19091":7658,"19092":5364,"19093":8551,"19094":7821,"19095":10430,"19096":4397,"19097":5703,"19098":4309,"19099":4238,"19100":2095,"19101":2125,"19102":9397,"19103":254,"19104":1495,"19105":2490,"19106":545,"19107":3655,"19108":6339,"19109":5479,"19110":7972,"19111":8558,"19112":10585,"19113":5872,"19114":10398,"19115":1703,"19116":6210,"19117":7945,"19118":366,"19119":2305,"19120":7595,"19121":9656,"19122":1414,"19123":3627,"19124":9479,"19125":10779,"19126":6307,"19127":2046,"19128":6032,"19129":9017,"19130":4987,"19131":9039,"19132":4515,"19133":3878,"19134":9895,"19135":50,"19136":8571,"19137":807,"19138":1094,"19139":1083,"19140":1600,"19141":8679,"19142":3249,"19143":10492,"19144":6164,"19145":5968,"19146":9593,"19147":8116,"19148":2654,"19149":9945,"19150":564,"19151":6434,"19152":2266,"19153":4581,"19154":7640,"19155":2739,"19156":4984,"19157":7635,"19158":6035,"19159":6102,"19160":379,"19161":5494,"19162":9641,"19163":10526,"19164":10183,"19165":5473,"19166":6203,"19167":9474,"19168":10500,"19169":4465,"19170":6970,"19171":1061,"19172":10577,"19173":2325,"19174":10252,"19175":8591,"19176":2895,"19177":8742,"19178":1730,"19179":4089,"19180":7360,"19181":9604,"19182":4330,"19183":7733,"19184":8585,"19185":1733,"19186":5643,"19187":8062,"19188":7211,"19189":9588,"19190":3921,"19191":2591,"19192":196,"19193":382,"19194":2105,"19195":10388,"19196":3773,"19197":8666,"19198":3426,"19199":697,"19200":6564,"19201":1055,"19202":9111,"19203":7294,"19204":2300,"19205":2746,"19206":10739,"19207":10697,"19208":2318,"19209":9994,"19210":8943,"19211":5027,"19212":10195,"19213":7737,"19214":8646,"19215":9807,"19216":7696,"19217":5921,"19218":7585,"19219":3314,"19220":1659,"19221":248,"19222":6345,"19223":308,"19224":4259,"19225":9941,"19226":6418,"19227":3371,"19228":2606,"19229":10114,"19230":9573,"19231":7816,"19232":4936,"19233":3019,"19234":2788,"19235":1032,"19236":3658,"19237":8853,"19238":6947,"19239":6263,"19240":1876,"19241":45,"19242":4295,"19243":639,"19244":58,"19245":9496,"19246":7772,"19247":4096,"19248":3191,"19249":10704,"19250":2110,"19251":489,"19252":856,"19253":4200,"19254":8875,"19255":2144,"19256":439,"19257":10076,"19258":10166,"19259":1611,"19260":4378,"19261":6277,"19262":5956,"19263":8770,"19264":8189,"19265":4667,"19266":5530,"19267":2167,"19268":1857,"19269":6977,"19270":5812,"19271":4670,"19272":8545,"19273":5244,"19274":1449,"19275":2074,"19276":7115,"19277":8142,"19278":1380,"19279":9612,"19280":6280,"19281":9514,"19282":4079,"19283":10527,"19284":5865,"19285":6420,"19286":214,"19287":5076,"19288":7420,"19289":437,"19290":10888,"19291":4682,"19292":6569,"19293":2096,"19294":18,"19295":2284,"19296":1817,"19297":6106,"19298":1112,"19299":10828,"19300":2221,"19301":8135,"19302":5185,"19303":1803,"19304":4677,"19305":8686,"19306":10450,"19307":10875,"19308":8051,"19309":4046,"19310":4220,"19311":1849,"19312":8778,"19313":4462,"19314":7351,"19315":5535,"19316":450,"19317":8282,"19318":9986,"19319":1217,"19320":8773,"19321":7031,"19322":7190,"19323":9403,"19324":8858,"19325":5424,"19326":9788,"19327":2437,"19328":7455,"19329":8149,"19330":9458,"19331":5626,"19332":3801,"19333":1600,"19334":1742,"19335":10879,"19336":9918,"19337":7513,"19338":10356,"19339":5706,"19340":2976,"19341":3223,"19342":4582,"19343":8758,"19344":2464,"19345":7300,"19346":1458,"19347":5871,"19348":4835,"19349":1513,"19350":9962,"19351":9173,"19352":4189,"19353":2646,"19354":9848,"19355":9844,"19356":4065,"19357":7774,"19358":8376,"19359":234,"19360":9810,"19361":8130,"19362":9322,"19363":6237,"19364":8245,"19365":4661,"19366":6712,"19367":7796,"19368":3189,"19369":5442,"19370":1509,"19371":10569,"19372":7216,"19373":9504,"19374":7407,"19375":4231,"19376":4029,"19377":947,"19378":5976,"19379":4943,"19380":3406,"19381":312,"19382":6733,"19383":2107,"19384":6797,"19385":5562,"19386":9380,"19387":6405,"19388":3980,"19389":3191,"19390":2701,"19391":6837,"19392":8577,"19393":1642,"19394":2307,"19395":7128,"19396":7405,"19397":3492,"19398":8379,"19399":5856,"19400":4134,"19401":6792,"19402":6363,"19403":6851,"19404":8381,"19405":9141,"19406":8933,"19407":10018,"19408":5884,"19409":3003,"19410":624,"19411":3323,"19412":10944,"19413":2128,"19414":8602,"19415":1711,"19416":10682,"19417":3725,"19418":2451,"19419":9821,"19420":10876,"19421":973,"19422":8070,"19423":3441,"19424":5931,"19425":6480,"19426":7481,"19427":2534,"19428":8959,"19429":6919,"19430":8325,"19431":7072,"19432":2912,"19433":6487,"19434":4189,"19435":2970,"19436":2006,"19437":3207,"19438":2948,"19439":2878,"19440":516,"19441":8602,"19442":10947,"19443":485,"19444":424,"19445":9214,"19446":7154,"19447":9562,"19448":1730,"19449":10190,"19450":6195,"19451":10546,"19452":5648,"19453":5113,"19454":2472,"19455":9035,"19456":6672,"19457":91,"19458":1693,"19459":1062,"19460":6789,"19461":4989,"19462":5462,"19463":6954,"19464":6693,"19465":1745,"19466":10919,"19467":1406,"19468":1597,"19469":4396,"19470":5485,"19471":4427,"19472":5213,"19473":2008,"19474":10588,"19475":6941,"19476":9753,"19477":9299,"19478":3190,"19479":10329,"19480":8057,"19481":615,"19482":8272,"19483":5320,"19484":2548,"19485":5419,"19486":3786,"19487":2137,"19488":6520,"19489":2224,"19490":7120,"19491":5052,"19492":2347,"19493":7468,"19494":10921,"19495":111,"19496":5757,"19497":4469,"19498":7298,"19499":6380,"19500":418,"19501":6119,"19502":2473,"19503":6323,"19504":351,"19505":153,"19506":7672,"19507":2177,"19508":9298,"19509":3517,"19510":5047,"19511":5943,"19512":2801,"19513":4231,"19514":9040,"19515":3224,"19516":2631,"19517":6824,"19518":3989,"19519":9482,"19520":1905,"19521":1906,"19522":4354,"19523":8753,"19524":9218,"19525":9740,"19526":8237,"19527":4626,"19528":10946,"19529":8841,"19530":6265,"19531":10545,"19532":7075,"19533":2868,"19534":6080,"19535":1409,"19536":3942,"19537":2111,"19538":3940,"19539":3249,"19540":4140,"19541":4283,"19542":8974,"19543":8652,"19544":7327,"19545":10787,"19546":9912,"19547":3173,"19548":4306,"19549":9164,"19550":4537,"19551":101,"19552":10747,"19553":4381,"19554":5967,"19555":45,"19556":4587,"19557":7678,"19558":10079,"19559":6003,"19560":8134,"19561":854,"19562":448,"19563":9048,"19564":742,"19565":7882,"19566":7827,"19567":351,"19568":6797,"19569":6352,"19570":3537,"19571":855,"19572":6537,"19573":5897,"19574":2669,"19575":934,"19576":6639,"19577":489,"19578":1881,"19579":2784,"19580":4926,"19581":9462,"19582":327,"19583":6066,"19584":4416,"19585":2879,"19586":4983,"19587":9138,"19588":10992,"19589":5114,"19590":5723,"19591":1813,"19592":2919,"19593":10420,"19594":8849,"19595":4472,"19596":2578,"19597":3050,"19598":7041,"19599":8057,"19600":8091,"19601":7803,"19602":5508,"19603":10048,"19604":6645,"19605":7032,"19606":6966,"19607":7215,"19608":8502,"19609":6413,"19610":6020,"19611":3641,"19612":3639,"19613":9373,"19614":498,"19615":1254,"19616":4043,"19617":7707,"19618":2937,"19619":348,"19620":2269,"19621":5644,"19622":7201,"19623":3098,"19624":1391,"19625":9428,"19626":4537,"19627":10821,"19628":7432,"19629":8299,"19630":8573,"19631":1281,"19632":4701,"19633":1777,"19634":360,"19635":9881,"19636":3225,"19637":216,"19638":2081,"19639":7805,"19640":10758,"19641":110,"19642":8880,"19643":613,"19644":96,"19645":8964,"19646":997,"19647":9183,"19648":6649,"19649":4173,"19650":8485,"19651":435,"19652":6959,"19653":8728,"19654":1832,"19655":1158,"19656":10411,"19657":5272,"19658":8444,"19659":92,"19660":53,"19661":7341,"19662":936,"19663":7887,"19664":836,"19665":10709,"19666":8629,"19667":3074,"19668":3705,"19669":7962,"19670":3611,"19671":7934,"19672":3987,"19673":1426,"19674":8667,"19675":2695,"19676":8796,"19677":8854,"19678":4202,"19679":8058,"19680":10401,"19681":7931,"19682":1406,"19683":2454,"19684":8094,"19685":4010,"19686":198,"19687":7128,"19688":1815,"19689":4970,"19690":5774,"19691":10952,"19692":8920,"19693":8442,"19694":8584,"19695":3377,"19696":8783,"19697":3244,"19698":8806,"19699":7553,"19700":10386,"19701":3797,"19702":8970,"19703":2132,"19704":8368,"19705":10775,"19706":1693,"19707":3505,"19708":8513,"19709":6931,"19710":8889,"19711":5322,"19712":7974,"19713":6646,"19714":10119,"19715":6195,"19716":2577,"19717":6735,"19718":5429,"19719":2542,"19720":2539,"19721":1983,"19722":6800,"19723":7254,"19724":10610,"19725":10601,"19726":2200,"19727":3043,"19728":7545,"19729":2158,"19730":7531,"19731":1315,"19732":10391,"19733":3364,"19734":8998,"19735":2896,"19736":9306,"19737":500,"19738":10280,"19739":5334,"19740":9678,"19741":6193,"19742":7595,"19743":5254,"19744":6601,"19745":2279,"19746":1617,"19747":10029,"19748":10188,"19749":10806,"19750":5969,"19751":9258,"19752":2255,"19753":9054,"19754":8913,"19755":1047,"19756":1530,"19757":3817,"19758":10627,"19759":4734,"19760":7284,"19761":1711,"19762":10014,"19763":3359,"19764":8039,"19765":1148,"19766":4537,"19767":9186,"19768":1020,"19769":2604,"19770":10272,"19771":3007,"19772":8499,"19773":2472,"19774":7853,"19775":9812,"19776":8693,"19777":10571,"19778":580,"19779":8948,"19780":999,"19781":2940,"19782":8717,"19783":7067,"19784":1535,"19785":20,"19786":1244,"19787":5685,"19788":10816,"19789":4818,"19790":7486,"19791":160,"19792":10847,"19793":2905,"19794":6679,"19795":5582,"19796":4891,"19797":2558,"19798":7570,"19799":9595,"19800":5352,"19801":5910,"19802":720,"19803":4638,"19804":9073,"19805":4226,"19806":7990,"19807":10175,"19808":10439,"19809":9840,"19810":9153,"19811":7717,"19812":4966,"19813":7304,"19814":4597,"19815":8658,"19816":2097,"19817":100,"19818":7381,"19819":5042,"19820":236,"19821":3727,"19822":7034,"19823":8533,"19824":3585,"19825":8129,"19826":1387,"19827":2566,"19828":8543,"19829":10610,"19830":9371,"19831":10036,"19832":8349,"19833":2771,"19834":9777,"19835":4895,"19836":8205,"19837":6080,"19838":10593,"19839":5191,"19840":634,"19841":976,"19842":5403,"19843":989,"19844":3329,"19845":6514,"19846":2577,"19847":3976,"19848":5881,"19849":7029,"19850":8543,"19851":4333,"19852":7026,"19853":1815,"19854":6570,"19855":3728,"19856":10697,"19857":9154,"19858":9193,"19859":6120,"19860":7608,"19861":4302,"19862":5561,"19863":1422,"19864":3308,"19865":9742,"19866":9571,"19867":9780,"19868":1755,"19869":1304,"19870":3813,"19871":3006,"19872":8353,"19873":8743,"19874":9099,"19875":5455,"19876":821,"19877":5814,"19878":5949,"19879":10797,"19880":3678,"19881":4261,"19882":5834,"19883":517,"19884":7571,"19885":4166,"19886":7165,"19887":7415,"19888":4465,"19889":10216,"19890":7650,"19891":9738,"19892":2776,"19893":7025,"19894":1878,"19895":822,"19896":1381,"19897":718,"19898":4493,"19899":5073,"19900":10544,"19901":4205,"19902":10039,"19903":10594,"19904":6416,"19905":4468,"19906":9568,"19907":2214,"19908":3833,"19909":8917,"19910":3239,"19911":4465,"19912":7303,"19913":9174,"19914":4070,"19915":1726,"19916":4752,"19917":5733,"19918":8341,"19919":9035,"19920":7160,"19921":8445,"19922":4729,"19923":7668,"19924":6979,"19925":1534,"19926":4237,"19927":10665,"19928":5560,"19929":3551,"19930":3368,"19931":7333,"19932":6625,"19933":3440,"19934":4389,"19935":2765,"19936":2676,"19937":879,"19938":9482,"19939":5122,"19940":884,"19941":1409,"19942":3826,"19943":10700,"19944":5179,"19945":6719,"19946":6565,"19947":7681,"19948":9148,"19949":2433,"19950":7340,"19951":10309,"19952":8051,"19953":1763,"19954":8124,"19955":4400,"19956":2491,"19957":3703,"19958":1419,"19959":8031,"19960":1319,"19961":1915,"19962":8860,"19963":1213,"19964":6622,"19965":2285,"19966":3714,"19967":10235,"19968":4599,"19969":174,"19970":5117,"19971":7695,"19972":2302,"19973":5379,"19974":5463,"19975":6940,"19976":8295,"19977":6427,"19978":7971,"19979":7298,"19980":5490,"19981":1795,"19982":1948,"19983":9939,"19984":3144,"19985":5223,"19986":7329,"19987":5152,"19988":8861,"19989":10432,"19990":8315,"19991":10602,"19992":913,"19993":3885,"19994":7387,"19995":666,"19996":2633,"19997":4533,"19998":6137,"19999":1999,"20000":2647,"20001":4116,"20002":3993,"20003":8637,"20004":10797,"20005":4529,"20006":8413,"20007":10762,"20008":6293,"20009":8575,"20010":7931,"20011":1015,"20012":6413,"20013":2626,"20014":10628,"20015":3214,"20016":8595,"20017":3358,"20018":680,"20019":8818,"20020":4488,"20021":1574,"20022":8795,"20023":9697,"20024":6023,"20025":5027,"20026":4628,"20027":3166,"20028":8371,"20029":4397,"20030":4751,"20031":3880,"20032":8244,"20033":9627,"20034":9445,"20035":1111,"20036":8388,"20037":4663,"20038":9111,"20039":9212,"20040":3589,"20041":5821,"20042":3288,"20043":4032,"20044":2274,"20045":7959,"20046":1072,"20047":2894,"20048":7343,"20049":10637,"20050":2771,"20051":1763,"20052":8800,"20053":6655,"20054":10107,"20055":3960,"20056":8030,"20057":7218,"20058":3364,"20059":6486,"20060":8800,"20061":4143,"20062":7751,"20063":195,"20064":6266,"20065":7581,"20066":3064,"20067":9260,"20068":3047,"20069":6921,"20070":5636,"20071":889,"20072":3605,"20073":9338,"20074":4371,"20075":9727,"20076":5228,"20077":3439,"20078":9952,"20079":4873,"20080":6555,"20081":8760,"20082":9460,"20083":9434,"20084":10174,"20085":3141,"20086":4864,"20087":2504,"20088":7537,"20089":9401,"20090":4372,"20091":355,"20092":5941,"20093":3479,"20094":7000,"20095":5766,"20096":47,"20097":1600,"20098":3991,"20099":6182,"20100":1167,"20101":5755,"20102":1586,"20103":10014,"20104":5632,"20105":4717,"20106":2763,"20107":7012,"20108":6771,"20109":4850,"20110":8999,"20111":2953,"20112":9162,"20113":542,"20114":4319,"20115":10946,"20116":9171,"20117":5726,"20118":898,"20119":7989,"20120":1861,"20121":4896,"20122":5388,"20123":9161,"20124":6332,"20125":8318,"20126":504,"20127":5347,"20128":7615,"20129":849,"20130":9579,"20131":6839,"20132":3177,"20133":5593,"20134":300,"20135":7234,"20136":361,"20137":4188,"20138":10930,"20139":9038,"20140":4788,"20141":4119,"20142":7853,"20143":6607,"20144":1089,"20145":150,"20146":8373,"20147":3644,"20148":7748,"20149":2670,"20150":5473,"20151":2301,"20152":3499,"20153":490,"20154":5746,"20155":971,"20156":932,"20157":1299,"20158":9240,"20159":7767,"20160":9711,"20161":1801,"20162":4850,"20163":8498,"20164":4369,"20165":4832,"20166":26,"20167":6230,"20168":10634,"20169":10626,"20170":242,"20171":10221,"20172":3986,"20173":4490,"20174":4764,"20175":9638,"20176":6494,"20177":1788,"20178":8482,"20179":10201,"20180":5325,"20181":2489,"20182":2106,"20183":3340,"20184":1977,"20185":10987,"20186":6150,"20187":4396,"20188":2004,"20189":5413,"20190":10119,"20191":7839,"20192":8107,"20193":10863,"20194":10191,"20195":8373,"20196":4218,"20197":897,"20198":3339,"20199":6573,"20200":3871,"20201":7468,"20202":9935,"20203":772,"20204":6543,"20205":8595,"20206":6304,"20207":6557,"20208":9916,"20209":4556,"20210":345,"20211":10043,"20212":367,"20213":10995,"20214":1283,"20215":4838,"20216":9529,"20217":6078,"20218":6227,"20219":6150,"20220":6554,"20221":5626,"20222":2124,"20223":5507,"20224":4899,"20225":8332,"20226":6729,"20227":9364,"20228":10858,"20229":3250,"20230":10028,"20231":5440,"20232":9200,"20233":2100,"20234":5393,"20235":1149,"20236":7669,"20237":4594,"20238":9060,"20239":8426,"20240":3431,"20241":3432,"20242":3319,"20243":1482,"20244":2798,"20245":3614,"20246":10782,"20247":10970,"20248":10756,"20249":4982,"20250":5230,"20251":3293,"20252":2298,"20253":2427,"20254":2131,"20255":126,"20256":2410,"20257":10707,"20258":8790,"20259":10850,"20260":8922,"20261":8979,"20262":4806,"20263":10872,"20264":379,"20265":5446,"20266":966,"20267":2127,"20268":6260,"20269":6468,"20270":9186,"20271":7862,"20272":4694,"20273":10297,"20274":4802,"20275":472,"20276":1166,"20277":6233,"20278":2883,"20279":148,"20280":8568,"20281":5816,"20282":9300,"20283":7168,"20284":7506,"20285":2859,"20286":6896,"20287":7705,"20288":8254,"20289":2648,"20290":5010,"20291":9109,"20292":2410,"20293":7366,"20294":571,"20295":48,"20296":9308,"20297":9110,"20298":9389,"20299":3076,"20300":7658,"20301":8475,"20302":2855,"20303":182,"20304":4679,"20305":8671,"20306":7727,"20307":7907,"20308":567,"20309":9984,"20310":9326,"20311":9143,"20312":8329,"20313":3220,"20314":2355,"20315":6606,"20316":6840,"20317":6497,"20318":1518,"20319":6011,"20320":10215,"20321":2593,"20322":6091,"20323":4512,"20324":1682,"20325":10525,"20326":6423,"20327":6572,"20328":345,"20329":9240,"20330":568,"20331":375,"20332":8966,"20333":4638,"20334":920,"20335":4219,"20336":1822,"20337":2946,"20338":5434,"20339":8572,"20340":7317,"20341":4355,"20342":6443,"20343":284,"20344":8869,"20345":1087,"20346":1478,"20347":199,"20348":10684,"20349":7414,"20350":6992,"20351":2024,"20352":9453,"20353":7397,"20354":8420,"20355":3328,"20356":1525,"20357":7405,"20358":722,"20359":3546,"20360":10763,"20361":5692,"20362":4651,"20363":399,"20364":425,"20365":290,"20366":4969,"20367":7625,"20368":983,"20369":4956,"20370":10895,"20371":9957,"20372":1321,"20373":9626,"20374":3077,"20375":9475,"20376":1159,"20377":5610,"20378":9911,"20379":4187,"20380":7431,"20381":5105,"20382":7579,"20383":6143,"20384":3297,"20385":9766,"20386":6566,"20387":9929,"20388":4026,"20389":8042,"20390":47,"20391":5353,"20392":8294,"20393":9034,"20394":10387,"20395":4664,"20396":72,"20397":194,"20398":2273,"20399":1892,"20400":8351,"20401":4935,"20402":1327,"20403":3225,"20404":4912,"20405":782,"20406":6374,"20407":3752,"20408":6197,"20409":3631,"20410":9308,"20411":7054,"20412":2034,"20413":3248,"20414":8112,"20415":6311,"20416":10943,"20417":3469,"20418":3657,"20419":9344,"20420":1217,"20421":10518,"20422":3036,"20423":5245,"20424":1742,"20425":9208,"20426":2948,"20427":732,"20428":137,"20429":7413,"20430":7290,"20431":7683,"20432":9992,"20433":1749,"20434":6009,"20435":8234,"20436":4736,"20437":4824,"20438":8317,"20439":4991,"20440":8034,"20441":8801,"20442":6805,"20443":4424,"20444":3821,"20445":3511,"20446":5694,"20447":4623,"20448":3414,"20449":1795,"20450":2285,"20451":5116,"20452":10407,"20453":9365,"20454":8988,"20455":8003,"20456":4399,"20457":1637,"20458":3922,"20459":8074,"20460":667,"20461":9168,"20462":7397,"20463":6939,"20464":8051,"20465":10065,"20466":1521,"20467":4876,"20468":544,"20469":1079,"20470":4878,"20471":5261,"20472":5396,"20473":6321,"20474":5097,"20475":5322,"20476":275,"20477":4578,"20478":7247,"20479":4953,"20480":5844,"20481":9673,"20482":1920,"20483":1476,"20484":6397,"20485":7626,"20486":3279,"20487":5023,"20488":7020,"20489":2102,"20490":10178,"20491":6225,"20492":7017,"20493":9873,"20494":4722,"20495":3017,"20496":3224,"20497":10444,"20498":737,"20499":10967,"20500":7026,"20501":6428,"20502":7635,"20503":9857,"20504":2349,"20505":1972,"20506":2828,"20507":9853,"20508":1213,"20509":157,"20510":7003,"20511":2886,"20512":344,"20513":9099,"20514":5728,"20515":1899,"20516":3347,"20517":3989,"20518":6578,"20519":7497,"20520":5353,"20521":8344,"20522":628,"20523":1295,"20524":146,"20525":9312,"20526":1495,"20527":7450,"20528":5156,"20529":1480,"20530":4177,"20531":8313,"20532":6540,"20533":5883,"20534":6631,"20535":447,"20536":6688,"20537":5918,"20538":6872,"20539":5382,"20540":8668,"20541":10990,"20542":6164,"20543":6886,"20544":7125,"20545":364,"20546":5295,"20547":3669,"20548":10652,"20549":5499,"20550":8325,"20551":8148,"20552":4487,"20553":7131,"20554":9465,"20555":1013,"20556":3359,"20557":3528,"20558":4661,"20559":735,"20560":8785,"20561":6117,"20562":516,"20563":4655,"20564":7325,"20565":5940,"20566":1071,"20567":779,"20568":10724,"20569":3102,"20570":6876,"20571":4111,"20572":2592,"20573":10606,"20574":3688,"20575":9268,"20576":3926,"20577":4939,"20578":10271,"20579":5103,"20580":7016,"20581":4096,"20582":9141,"20583":9647,"20584":2145,"20585":9352,"20586":5448,"20587":2414,"20588":1945,"20589":7659,"20590":5334,"20591":3809,"20592":10071,"20593":6229,"20594":1214,"20595":1156,"20596":6511,"20597":894,"20598":2401,"20599":2570,"20600":1811,"20601":7870,"20602":3051,"20603":10944,"20604":3860,"20605":794,"20606":7352,"20607":4372,"20608":2742,"20609":9597,"20610":703,"20611":3350,"20612":9866,"20613":3046,"20614":1651,"20615":6914,"20616":4966,"20617":9651,"20618":1051,"20619":7952,"20620":3806,"20621":7325,"20622":646,"20623":5616,"20624":5836,"20625":4868,"20626":10961,"20627":3950,"20628":1195,"20629":10718,"20630":324,"20631":922,"20632":10697,"20633":1642,"20634":9645,"20635":8183,"20636":5984,"20637":1290,"20638":178,"20639":9843,"20640":2680,"20641":1824,"20642":6659,"20643":9220,"20644":6963,"20645":3806,"20646":2937,"20647":4423,"20648":3154,"20649":8613,"20650":2950,"20651":7874,"20652":7898,"20653":7731,"20654":9589,"20655":3484,"20656":8848,"20657":5788,"20658":3529,"20659":5249,"20660":4938,"20661":1467,"20662":4283,"20663":4490,"20664":626,"20665":6678,"20666":2847,"20667":6468,"20668":5348,"20669":10795,"20670":5870,"20671":8152,"20672":10245,"20673":125,"20674":3432,"20675":7623,"20676":3375,"20677":8242,"20678":3790,"20679":8246,"20680":7729,"20681":2057,"20682":5451,"20683":4007,"20684":6086,"20685":2334,"20686":6091,"20687":3805,"20688":7898,"20689":10664,"20690":10370,"20691":9068,"20692":456,"20693":1966,"20694":10461,"20695":9641,"20696":10499,"20697":3415,"20698":10969,"20699":3348,"20700":4010,"20701":3805,"20702":2935,"20703":10213,"20704":7447,"20705":1835,"20706":6745,"20707":2824,"20708":7039,"20709":562,"20710":1039,"20711":5892,"20712":4794,"20713":3219,"20714":10491,"20715":5867,"20716":9543,"20717":685,"20718":2967,"20719":2295,"20720":3106,"20721":9064,"20722":6650,"20723":2781,"20724":6472,"20725":1877,"20726":1008,"20727":2571,"20728":1509,"20729":6965,"20730":942,"20731":555,"20732":2846,"20733":688,"20734":8624,"20735":7716,"20736":2927,"20737":6418,"20738":10602,"20739":1748,"20740":9306,"20741":7783,"20742":7559,"20743":3445,"20744":1081,"20745":6181,"20746":7456,"20747":9960,"20748":10816,"20749":2356,"20750":3606,"20751":2965,"20752":5805,"20753":7484,"20754":8885,"20755":4959,"20756":10002,"20757":5016,"20758":794,"20759":2819,"20760":8100,"20761":2358,"20762":8055,"20763":2216,"20764":9327,"20765":2848,"20766":8821,"20767":9275,"20768":6690,"20769":10578,"20770":8480,"20771":4082,"20772":3503,"20773":3847,"20774":10323,"20775":1678,"20776":7522,"20777":9289,"20778":8486,"20779":9641,"20780":5108,"20781":3917,"20782":1238,"20783":7112,"20784":296,"20785":4101,"20786":10873,"20787":1769,"20788":6926,"20789":6723,"20790":528,"20791":4799,"20792":6502,"20793":5533,"20794":6683,"20795":6352,"20796":2103,"20797":6635,"20798":1183,"20799":4677,"20800":9980,"20801":3678,"20802":604,"20803":3151,"20804":2169,"20805":9391,"20806":5186,"20807":7017,"20808":391,"20809":10735,"20810":7062,"20811":4166,"20812":4904,"20813":4636,"20814":7101,"20815":4369,"20816":5468,"20817":7265,"20818":10042,"20819":8699,"20820":2302,"20821":8883,"20822":8795,"20823":1181,"20824":7726,"20825":10138,"20826":4872,"20827":7365,"20828":6879,"20829":923,"20830":3919,"20831":9923,"20832":2816,"20833":9214,"20834":6677,"20835":6988,"20836":597,"20837":3665,"20838":377,"20839":5392,"20840":8923,"20841":8356,"20842":2346,"20843":808,"20844":7139,"20845":8826,"20846":8388,"20847":7770,"20848":2400,"20849":5505,"20850":6143,"20851":3873,"20852":4889,"20853":9827,"20854":6254,"20855":9625,"20856":9754,"20857":3976,"20858":3641,"20859":9222,"20860":5784,"20861":7238,"20862":10900,"20863":1003,"20864":9177,"20865":6731,"20866":3601,"20867":5149,"20868":9808,"20869":2734,"20870":3698,"20871":10758,"20872":67,"20873":10386,"20874":10851,"20875":2891,"20876":2268,"20877":3648,"20878":7565,"20879":4731,"20880":4083,"20881":10590,"20882":6066,"20883":1155,"20884":9187,"20885":2382,"20886":3966,"20887":2445,"20888":7518,"20889":2331,"20890":3157,"20891":486,"20892":1716,"20893":5092,"20894":1026,"20895":5073,"20896":208,"20897":7404,"20898":4462,"20899":10642,"20900":7455,"20901":9035,"20902":9506,"20903":3431,"20904":9918,"20905":5482,"20906":6972,"20907":1355,"20908":3907,"20909":8487,"20910":5129,"20911":5435,"20912":3933,"20913":6696,"20914":4965,"20915":2802,"20916":3620,"20917":9219,"20918":1778,"20919":1938,"20920":5384,"20921":9236,"20922":6115,"20923":2068,"20924":8255,"20925":6311,"20926":15,"20927":6469,"20928":4094,"20929":3075,"20930":994,"20931":10752,"20932":512,"20933":10149,"20934":8850,"20935":634,"20936":9211,"20937":1788,"20938":3318,"20939":3105,"20940":3543,"20941":7072,"20942":9029,"20943":1057,"20944":7211,"20945":4502,"20946":8199,"20947":6400,"20948":5451,"20949":840,"20950":10788,"20951":2442,"20952":1899,"20953":7542,"20954":1968,"20955":5266,"20956":5194,"20957":4550,"20958":4345,"20959":10099,"20960":2006,"20961":843,"20962":5916,"20963":7592,"20964":4859,"20965":9025,"20966":754,"20967":4527,"20968":3592,"20969":6150,"20970":4312,"20971":5207,"20972":3859,"20973":5635,"20974":7872,"20975":3521,"20976":3409,"20977":4868,"20978":1020,"20979":10346,"20980":870,"20981":3410,"20982":5420,"20983":1875,"20984":6369,"20985":6102,"20986":4430,"20987":1329,"20988":1717,"20989":2847,"20990":7037,"20991":4842,"20992":4048,"20993":10726,"20994":939,"20995":2395,"20996":7084,"20997":5146,"20998":1403,"20999":2104,"21000":7303,"21001":1769,"21002":4595,"21003":9592,"21004":8347,"21005":5629,"21006":4170,"21007":2715,"21008":2244,"21009":1605,"21010":4608,"21011":9409,"21012":7882,"21013":5445,"21014":1156,"21015":158,"21016":4654,"21017":10430,"21018":3447,"21019":6657,"21020":10100,"21021":5925,"21022":3038,"21023":10979,"21024":9001,"21025":8498,"21026":3991,"21027":7439,"21028":7110,"21029":1264,"21030":4902,"21031":6234,"21032":10253,"21033":9137,"21034":4650,"21035":2534,"21036":2353,"21037":6109,"21038":2580,"21039":8328,"21040":9511,"21041":9451,"21042":10185,"21043":3754,"21044":1192,"21045":7333,"21046":2471,"21047":1351,"21048":46,"21049":559,"21050":10835,"21051":4825,"21052":3673,"21053":10954,"21054":3442,"21055":7087,"21056":1344,"21057":418,"21058":9196,"21059":640,"21060":8146,"21061":5634,"21062":7949,"21063":9386,"21064":1349,"21065":8604,"21066":8096,"21067":8330,"21068":5713,"21069":4012,"21070":1885,"21071":5773,"21072":910,"21073":1406,"21074":8304,"21075":1524,"21076":8388,"21077":9604,"21078":3334,"21079":6136,"21080":10896,"21081":5404,"21082":5875,"21083":4626,"21084":7300,"21085":1994,"21086":2813,"21087":7219,"21088":5844,"21089":99,"21090":6836,"21091":887,"21092":1335,"21093":10253,"21094":1824,"21095":9469,"21096":5698,"21097":8767,"21098":3261,"21099":274,"21100":8301,"21101":3403,"21102":6790,"21103":1334,"21104":5905,"21105":10161,"21106":1658,"21107":3687,"21108":2327,"21109":2144,"21110":2876,"21111":3817,"21112":7143,"21113":2,"21114":10328,"21115":1272,"21116":4241,"21117":2219,"21118":2868,"21119":2842,"21120":9525,"21121":4657,"21122":1736,"21123":8489,"21124":3811,"21125":4180,"21126":2053,"21127":3841,"21128":7698,"21129":3343,"21130":3114,"21131":2536,"21132":7691,"21133":7855,"21134":10280,"21135":7592,"21136":9173,"21137":1053,"21138":288,"21139":4545,"21140":1156,"21141":8070,"21142":6346,"21143":10161,"21144":7284,"21145":6003,"21146":7133,"21147":440,"21148":6477,"21149":7563,"21150":2400,"21151":7500,"21152":10672,"21153":3921,"21154":1527,"21155":5109,"21156":10884,"21157":2849,"21158":9357,"21159":286,"21160":3778,"21161":6485,"21162":7648,"21163":751,"21164":9616,"21165":10550,"21166":6383,"21167":2926,"21168":4456,"21169":8563,"21170":9685,"21171":9879,"21172":1978,"21173":10433,"21174":10131,"21175":46,"21176":9857,"21177":3511,"21178":8678,"21179":6942,"21180":10644,"21181":6810,"21182":5835,"21183":5817,"21184":10684,"21185":2226,"21186":5551,"21187":8297,"21188":3272,"21189":10861,"21190":10568,"21191":10953,"21192":7747,"21193":355,"21194":4676,"21195":2684,"21196":5918,"21197":6984,"21198":10026,"21199":5196,"21200":10765,"21201":5996,"21202":6605,"21203":6506,"21204":9342,"21205":9577,"21206":4892,"21207":5807,"21208":5025,"21209":6244,"21210":1135,"21211":5685,"21212":4480,"21213":5722,"21214":442,"21215":9208,"21216":383,"21217":6711,"21218":98,"21219":6673,"21220":6777,"21221":4803,"21222":4926,"21223":3349,"21224":382,"21225":1609,"21226":8056,"21227":6866,"21228":5507,"21229":7691,"21230":3897,"21231":9236,"21232":6150,"21233":7995,"21234":4034,"21235":8565,"21236":4198,"21237":10084,"21238":2490,"21239":1215,"21240":510,"21241":4080,"21242":8946,"21243":3222,"21244":6797,"21245":5519,"21246":7081,"21247":5662,"21248":9676,"21249":1372,"21250":1235,"21251":7979,"21252":3968,"21253":5738,"21254":4129,"21255":1197,"21256":6102,"21257":201,"21258":7158,"21259":358,"21260":6296,"21261":7494,"21262":1404,"21263":8261,"21264":6775,"21265":7810,"21266":90,"21267":7020,"21268":10333,"21269":7138,"21270":6313,"21271":6956,"21272":6369,"21273":8484,"21274":1478,"21275":502,"21276":7205,"21277":883,"21278":4562,"21279":901,"21280":10837,"21281":1753,"21282":4986,"21283":3220,"21284":1998,"21285":7454,"21286":7749,"21287":8534,"21288":642,"21289":10047,"21290":5107,"21291":5211,"21292":393,"21293":4568,"21294":2288,"21295":4357,"21296":1412,"21297":1415,"21298":4544,"21299":3528,"21300":613,"21301":2377,"21302":8819,"21303":7046,"21304":9874,"21305":2239,"21306":4551,"21307":7137,"21308":7171,"21309":1713,"21310":762,"21311":7399,"21312":8275,"21313":8851,"21314":117,"21315":2685,"21316":6582,"21317":7182,"21318":1212,"21319":10184,"21320":2667,"21321":10628,"21322":10768,"21323":7451,"21324":495,"21325":8870,"21326":8594,"21327":4042,"21328":9380,"21329":5846,"21330":1957,"21331":3707,"21332":2183,"21333":10962,"21334":3375,"21335":4914,"21336":4573,"21337":10453,"21338":2070,"21339":3690,"21340":1607,"21341":9427,"21342":10517,"21343":10571,"21344":1309,"21345":2864,"21346":6540,"21347":901,"21348":3899,"21349":4210,"21350":269,"21351":7068,"21352":10978,"21353":9603,"21354":8487,"21355":813,"21356":3522,"21357":5443,"21358":4303,"21359":606,"21360":3560,"21361":1879,"21362":9584,"21363":5618,"21364":5381,"21365":8277,"21366":5567,"21367":2958,"21368":7909,"21369":345,"21370":4695,"21371":9993,"21372":4737,"21373":7036,"21374":3596,"21375":10462,"21376":7694,"21377":7080,"21378":9328,"21379":4432,"21380":9822,"21381":8867,"21382":10135,"21383":1845,"21384":3361,"21385":1557,"21386":4591,"21387":3971,"21388":10210,"21389":5849,"21390":227,"21391":2956,"21392":7163,"21393":7301,"21394":10254,"21395":4558,"21396":1176,"21397":2725,"21398":9484,"21399":1578,"21400":10955,"21401":7505,"21402":7335,"21403":7765,"21404":2438,"21405":9472,"21406":8522,"21407":3814,"21408":1600,"21409":2602,"21410":2620,"21411":5399,"21412":10255,"21413":5374,"21414":878,"21415":5498,"21416":1464,"21417":6805,"21418":10283,"21419":9094,"21420":3008,"21421":10503,"21422":3597,"21423":826,"21424":10656,"21425":9645,"21426":6419,"21427":875,"21428":7014,"21429":10678,"21430":3240,"21431":5827,"21432":1215,"21433":356,"21434":5891,"21435":6038,"21436":670,"21437":8923,"21438":3955,"21439":3638,"21440":1174,"21441":1002,"21442":1290,"21443":337,"21444":864,"21445":6755,"21446":5745,"21447":753,"21448":4686,"21449":108,"21450":10876,"21451":1096,"21452":2940,"21453":4300,"21454":3678,"21455":6570,"21456":707,"21457":10688,"21458":2225,"21459":8945,"21460":2618,"21461":3579,"21462":4214,"21463":8097,"21464":4310,"21465":2751,"21466":9447,"21467":5092,"21468":513,"21469":4901,"21470":4811,"21471":10082,"21472":2071,"21473":2372,"21474":9018,"21475":5105,"21476":10357,"21477":1114,"21478":7193,"21479":1605,"21480":8996,"21481":7192,"21482":6429,"21483":2955,"21484":6169,"21485":10865,"21486":2478,"21487":6798,"21488":5076,"21489":10422,"21490":841,"21491":9272,"21492":3057,"21493":8054,"21494":8128,"21495":450,"21496":65,"21497":2180,"21498":9963,"21499":1298,"21500":9859,"21501":3406,"21502":2473,"21503":109,"21504":1593,"21505":787,"21506":753,"21507":3782,"21508":6290,"21509":7197,"21510":10677,"21511":4377,"21512":9708,"21513":4572,"21514":10904,"21515":5593,"21516":9119,"21517":4498,"21518":2572,"21519":1716,"21520":8586,"21521":8247,"21522":5867,"21523":1487,"21524":7521,"21525":6202,"21526":10155,"21527":1467,"21528":4372,"21529":800,"21530":2899,"21531":9831,"21532":2766,"21533":6651,"21534":8850,"21535":2420,"21536":6603,"21537":4527,"21538":9708,"21539":2005,"21540":3455,"21541":7459,"21542":1288,"21543":4626,"21544":1981,"21545":2255,"21546":9403,"21547":10852,"21548":10862,"21549":2487,"21550":9734,"21551":10027,"21552":8,"21553":73,"21554":7873,"21555":5725,"21556":10013,"21557":6961,"21558":107,"21559":3706,"21560":7177,"21561":1088,"21562":7112,"21563":863,"21564":5110,"21565":8143,"21566":3487,"21567":8037,"21568":7013,"21569":8011,"21570":6776,"21571":4016,"21572":6720,"21573":3739,"21574":490,"21575":6642,"21576":6263,"21577":511,"21578":7295,"21579":4025,"21580":5999,"21581":7235,"21582":8081,"21583":6148,"21584":7694,"21585":10773,"21586":2447,"21587":3258,"21588":3319,"21589":7074,"21590":6903,"21591":5021,"21592":7701,"21593":318,"21594":7824,"21595":9648,"21596":135,"21597":10225,"21598":5179,"21599":6718,"21600":8104,"21601":1705,"21602":575,"21603":4630,"21604":38,"21605":7817,"21606":3016,"21607":4200,"21608":3011,"21609":3308,"21610":1715,"21611":681,"21612":6666,"21613":1613,"21614":9051,"21615":9739,"21616":4928,"21617":4516,"21618":2456,"21619":9320,"21620":6800,"21621":3479,"21622":7940,"21623":7872,"21624":1385,"21625":10658,"21626":7712,"21627":6160,"21628":7702,"21629":10783,"21630":3259,"21631":4978,"21632":2234,"21633":5813,"21634":10524,"21635":3072,"21636":1218,"21637":8408,"21638":9709,"21639":7769,"21640":526,"21641":9886,"21642":9809,"21643":2030,"21644":2618,"21645":9646,"21646":3684,"21647":697,"21648":6015,"21649":3469,"21650":1201,"21651":7013,"21652":6950,"21653":8825,"21654":10400,"21655":7070,"21656":10247,"21657":7860,"21658":6921,"21659":8415,"21660":670,"21661":6928,"21662":630,"21663":3695,"21664":5878,"21665":1370,"21666":305,"21667":8233,"21668":10626,"21669":5835,"21670":3921,"21671":4927,"21672":10195,"21673":6547,"21674":5464,"21675":6229,"21676":8472,"21677":1834,"21678":9911,"21679":1365,"21680":551,"21681":6140,"21682":99,"21683":6517,"21684":1299,"21685":5867,"21686":1620,"21687":1189,"21688":9521,"21689":2897,"21690":4007,"21691":2909,"21692":1368,"21693":5316,"21694":6205,"21695":7973,"21696":10491,"21697":1674,"21698":8109,"21699":8453,"21700":1555,"21701":10,"21702":2516,"21703":9926,"21704":9867,"21705":391,"21706":4554,"21707":4617,"21708":6917,"21709":6524,"21710":615,"21711":5203,"21712":4668,"21713":8698,"21714":2056,"21715":9026,"21716":2224,"21717":45,"21718":8554,"21719":2625,"21720":10199,"21721":373,"21722":9147,"21723":688,"21724":6008,"21725":5692,"21726":2766,"21727":6990,"21728":60,"21729":9795,"21730":10063,"21731":5482,"21732":3563,"21733":5759,"21734":4940,"21735":6722,"21736":10921,"21737":10125,"21738":7771,"21739":10748,"21740":7156,"21741":7545,"21742":9599,"21743":9464,"21744":2495,"21745":1079,"21746":825,"21747":824,"21748":8947,"21749":3616,"21750":4632,"21751":6865,"21752":2176,"21753":2988,"21754":3694,"21755":8983,"21756":1914,"21757":9391,"21758":4991,"21759":306,"21760":10785,"21761":7734,"21762":10600,"21763":5409,"21764":9803,"21765":9883,"21766":5963,"21767":5373,"21768":10719,"21769":9409,"21770":2685,"21771":6027,"21772":2892,"21773":4394,"21774":2795,"21775":9969,"21776":10716,"21777":933,"21778":3910,"21779":4797,"21780":2856,"21781":928,"21782":1158,"21783":9540,"21784":5318,"21785":9955,"21786":8719,"21787":7027,"21788":2345,"21789":5179,"21790":5615,"21791":2164,"21792":5967,"21793":3200,"21794":2432,"21795":10500,"21796":5355,"21797":5284,"21798":6061,"21799":4468,"21800":3616,"21801":3302,"21802":10551,"21803":8385,"21804":1427,"21805":3385,"21806":9530,"21807":4236,"21808":8809,"21809":4819,"21810":2310,"21811":6186,"21812":10118,"21813":9319,"21814":8655,"21815":1864,"21816":6793,"21817":2881,"21818":361,"21819":3323,"21820":4656,"21821":1364,"21822":2324,"21823":1486,"21824":9853,"21825":9081,"21826":2106,"21827":1957,"21828":1359,"21829":10907,"21830":7281,"21831":1250,"21832":385,"21833":6636,"21834":1094,"21835":7200,"21836":747,"21837":9817,"21838":2935,"21839":10385,"21840":3947,"21841":4067,"21842":10355,"21843":3577,"21844":9048,"21845":9707,"21846":8338,"21847":781,"21848":5009,"21849":6340,"21850":8975,"21851":4891,"21852":9594,"21853":1161,"21854":3168,"21855":3888,"21856":7622,"21857":9853,"21858":10795,"21859":771,"21860":4891,"21861":8013,"21862":5358,"21863":5369,"21864":1275,"21865":9821,"21866":3879,"21867":1879,"21868":7095,"21869":9167,"21870":7514,"21871":4821,"21872":6867,"21873":6159,"21874":6729,"21875":9706,"21876":1433,"21877":3769,"21878":5401,"21879":7968,"21880":7079,"21881":1550,"21882":160,"21883":9728,"21884":1982,"21885":9815,"21886":8198,"21887":3940,"21888":407,"21889":9588,"21890":3759,"21891":4380,"21892":9869,"21893":1825,"21894":9137,"21895":2015,"21896":5428,"21897":10160,"21898":5691,"21899":7749,"21900":10827,"21901":606,"21902":2813,"21903":8583,"21904":2766,"21905":756,"21906":9008,"21907":8751,"21908":5762,"21909":4346,"21910":6117,"21911":6238,"21912":10899,"21913":7173,"21914":4838,"21915":463,"21916":9853,"21917":8828,"21918":4428,"21919":6257,"21920":8228,"21921":6089,"21922":8885,"21923":2157,"21924":3622,"21925":3760,"21926":10648,"21927":6726,"21928":1636,"21929":5402,"21930":7811,"21931":4407,"21932":5211,"21933":8341,"21934":3355,"21935":376,"21936":4200,"21937":6209,"21938":7017,"21939":9928,"21940":8936,"21941":4793,"21942":4174,"21943":9676,"21944":8087,"21945":2789,"21946":1806,"21947":1242,"21948":9796,"21949":5637,"21950":1123,"21951":805,"21952":9987,"21953":3621,"21954":1516,"21955":7637,"21956":6060,"21957":2920,"21958":6526,"21959":10170,"21960":6492,"21961":8773,"21962":6443,"21963":4515,"21964":1566,"21965":6111,"21966":2568,"21967":9752,"21968":6938,"21969":7534,"21970":1595,"21971":234,"21972":2561,"21973":6692,"21974":6712,"21975":7532,"21976":9114,"21977":2901,"21978":6291,"21979":10686,"21980":3055,"21981":8291,"21982":5631,"21983":4150,"21984":10501,"21985":6154,"21986":2392,"21987":10418,"21988":2841,"21989":7429,"21990":8925,"21991":7948,"21992":3481,"21993":6132,"21994":9315,"21995":1591,"21996":6176,"21997":1287,"21998":1977,"21999":5788,"22000":8918,"22001":8853,"22002":2749,"22003":10542,"22004":5176,"22005":3168,"22006":1639,"22007":6738,"22008":9640,"22009":4464,"22010":1138,"22011":6247,"22012":3782,"22013":10041,"22014":2799,"22015":1529,"22016":8053,"22017":3633,"22018":5576,"22019":1156,"22020":7586,"22021":5783,"22022":8751,"22023":5272,"22024":2102,"22025":3713,"22026":6307,"22027":10480,"22028":6545,"22029":7777,"22030":4051,"22031":10365,"22032":9384,"22033":6492,"22034":3162,"22035":3224,"22036":9881,"22037":6211,"22038":2176,"22039":8816,"22040":9615,"22041":5376,"22042":393,"22043":10148,"22044":9848,"22045":507,"22046":6454,"22047":4730,"22048":9088,"22049":10006,"22050":2804,"22051":4511,"22052":1725,"22053":5022,"22054":9927,"22055":9444,"22056":8986,"22057":3387,"22058":5091,"22059":6872,"22060":5172,"22061":10964,"22062":4347,"22063":1313,"22064":4789,"22065":10666,"22066":1883,"22067":1955,"22068":8549,"22069":9475,"22070":973,"22071":3732,"22072":3404,"22073":1598,"22074":9705,"22075":654,"22076":1880,"22077":5515,"22078":5605,"22079":7921,"22080":6876,"22081":3800,"22082":39,"22083":4046,"22084":4780,"22085":3260,"22086":4284,"22087":10977,"22088":8563,"22089":8200,"22090":7419,"22091":5596,"22092":10870,"22093":2305,"22094":3575,"22095":10923,"22096":2627,"22097":4345,"22098":1723,"22099":6633,"22100":2717,"22101":2251,"22102":7491,"22103":3248,"22104":3443,"22105":9426,"22106":1789,"22107":6884,"22108":4211,"22109":7957,"22110":8952,"22111":5874,"22112":2411,"22113":9219,"22114":10773,"22115":112,"22116":1205,"22117":9833,"22118":2704,"22119":8858,"22120":3096,"22121":2640,"22122":2255,"22123":2502,"22124":3232,"22125":5961,"22126":128,"22127":7483,"22128":3972,"22129":7245,"22130":10606,"22131":2277,"22132":5995,"22133":2022,"22134":7936,"22135":8853,"22136":1971,"22137":9069,"22138":7354,"22139":1834,"22140":4398,"22141":9162,"22142":3061,"22143":3630,"22144":6210,"22145":2188,"22146":6472,"22147":556,"22148":3774,"22149":7724,"22150":5394,"22151":216,"22152":6902,"22153":8187,"22154":9298,"22155":9470,"22156":6474,"22157":5089,"22158":7776,"22159":8409,"22160":9497,"22161":10284,"22162":8060,"22163":10669,"22164":43,"22165":1812,"22166":2151,"22167":7045,"22168":7735,"22169":7735,"22170":4750,"22171":8195,"22172":1341,"22173":10273,"22174":7577,"22175":7598,"22176":8468,"22177":4994,"22178":6169,"22179":1648,"22180":6619,"22181":10768,"22182":10744,"22183":8571,"22184":8686,"22185":3056,"22186":1859,"22187":1771,"22188":2554,"22189":4962,"22190":3206,"22191":3393,"22192":7831,"22193":7478,"22194":9166,"22195":5459,"22196":718,"22197":5065,"22198":6226,"22199":10206,"22200":7041,"22201":9290,"22202":10055,"22203":10479,"22204":4454,"22205":5846,"22206":8505,"22207":10148,"22208":3030,"22209":281,"22210":7899,"22211":10673,"22212":8243,"22213":4231,"22214":6915,"22215":6481,"22216":8092,"22217":7964,"22218":10565,"22219":4509,"22220":6735,"22221":10498,"22222":9951,"22223":10327,"22224":5998,"22225":1165,"22226":9584,"22227":8314,"22228":5700,"22229":2489,"22230":5986,"22231":2272,"22232":6879,"22233":6152,"22234":8306,"22235":3387,"22236":9392,"22237":4572,"22238":9761,"22239":1127,"22240":8038,"22241":6518,"22242":4514,"22243":2732,"22244":5357,"22245":1366,"22246":7197,"22247":5125,"22248":8192,"22249":10471,"22250":4622,"22251":10586,"22252":928,"22253":1956,"22254":350,"22255":5562,"22256":5406,"22257":1905,"22258":8401,"22259":3350,"22260":8864,"22261":1868,"22262":4288,"22263":3812,"22264":351,"22265":7252,"22266":3176,"22267":6519,"22268":5251,"22269":658,"22270":5990,"22271":3264,"22272":9337,"22273":3715,"22274":2623,"22275":5948,"22276":1150,"22277":738,"22278":2466,"22279":8592,"22280":5592,"22281":7080,"22282":2019,"22283":10031,"22284":4834,"22285":8280,"22286":2862,"22287":6014,"22288":2702,"22289":6452,"22290":7422,"22291":7944,"22292":9315,"22293":6556,"22294":3466,"22295":782,"22296":6818,"22297":5048,"22298":10078,"22299":9907,"22300":6640,"22301":864,"22302":1126,"22303":8191,"22304":7184,"22305":9861,"22306":9963,"22307":4923,"22308":5175,"22309":7720,"22310":9767,"22311":7171,"22312":7962,"22313":9252,"22314":9696,"22315":859,"22316":3186,"22317":9666,"22318":7956,"22319":7573,"22320":10591,"22321":8644,"22322":8132,"22323":8823,"22324":4694,"22325":2701,"22326":4634,"22327":5926,"22328":674,"22329":3401,"22330":5904,"22331":4183,"22332":3610,"22333":9947,"22334":9823,"22335":5515,"22336":3028,"22337":2546,"22338":3085,"22339":5220,"22340":3953,"22341":7225,"22342":6774,"22343":2101,"22344":4109,"22345":5683,"22346":8777,"22347":2780,"22348":9555,"22349":1874,"22350":3241,"22351":2230,"22352":1714,"22353":7901,"22354":748,"22355":8331,"22356":8820,"22357":10369,"22358":2121,"22359":534,"22360":8219,"22361":1950,"22362":8114,"22363":5457,"22364":520,"22365":4141,"22366":10420,"22367":4879,"22368":3606,"22369":2535,"22370":5322,"22371":2038,"22372":2363,"22373":5971,"22374":459,"22375":4878,"22376":8285,"22377":8372,"22378":4985,"22379":2463,"22380":4148,"22381":4018,"22382":5305,"22383":3512,"22384":10650,"22385":8919,"22386":8955,"22387":7649,"22388":4836,"22389":9837,"22390":1135,"22391":10135,"22392":4932,"22393":2176,"22394":9454,"22395":6739,"22396":1483,"22397":2752,"22398":4891,"22399":5546,"22400":418,"22401":4508,"22402":473,"22403":6822,"22404":3308,"22405":2233,"22406":9630,"22407":6018,"22408":10562,"22409":807,"22410":4278,"22411":8569,"22412":2528,"22413":4330,"22414":413,"22415":9742,"22416":1354,"22417":3204,"22418":8604,"22419":1212,"22420":100,"22421":2967,"22422":10340,"22423":1385,"22424":10121,"22425":6385,"22426":1449,"22427":5852,"22428":6384,"22429":10737,"22430":6824,"22431":2144,"22432":319,"22433":4473,"22434":1396,"22435":641,"22436":5138,"22437":10222,"22438":2158,"22439":524,"22440":8641,"22441":6103,"22442":4501,"22443":5582,"22444":7933,"22445":1353,"22446":856,"22447":491,"22448":260,"22449":8538,"22450":9920,"22451":4310,"22452":10905,"22453":7451,"22454":5201,"22455":3633,"22456":9549,"22457":10951,"22458":5280,"22459":1217,"22460":5066,"22461":9247,"22462":8300,"22463":6655,"22464":3180,"22465":6525,"22466":7713,"22467":5656,"22468":4509,"22469":10234,"22470":7303,"22471":4032,"22472":9456,"22473":1346,"22474":7815,"22475":9412,"22476":4939,"22477":6849,"22478":6822,"22479":9859,"22480":4843,"22481":3065,"22482":9774,"22483":1454,"22484":5990,"22485":7302,"22486":8313,"22487":5694,"22488":2244,"22489":9661,"22490":3191,"22491":2239,"22492":9464,"22493":1578,"22494":8442,"22495":4983,"22496":165,"22497":5675,"22498":991,"22499":3742,"22500":6980,"22501":10000,"22502":38,"22503":4870,"22504":2593,"22505":6802,"22506":3770,"22507":9749,"22508":7788,"22509":1434,"22510":9681,"22511":5355,"22512":5814,"22513":5340,"22514":1896,"22515":3716,"22516":5909,"22517":1880,"22518":5053,"22519":7851,"22520":2962,"22521":2091,"22522":5429,"22523":6729,"22524":8362,"22525":2836,"22526":6799,"22527":1443,"22528":2262,"22529":5343,"22530":10750,"22531":1691,"22532":7096,"22533":4671,"22534":267,"22535":6107,"22536":6559,"22537":615,"22538":5429,"22539":1961,"22540":440,"22541":10126,"22542":2381,"22543":8983,"22544":4227,"22545":3588,"22546":4738,"22547":917,"22548":5951,"22549":6897,"22550":4639,"22551":10160,"22552":7438,"22553":9972,"22554":8904,"22555":9519,"22556":7461,"22557":6544,"22558":7791,"22559":5413,"22560":10081,"22561":6078,"22562":143,"22563":6877,"22564":6472,"22565":2496,"22566":8456,"22567":6521,"22568":9860,"22569":2215,"22570":1403,"22571":6975,"22572":3508,"22573":1259,"22574":297,"22575":4205,"22576":1346,"22577":2875,"22578":1775,"22579":6273,"22580":7364,"22581":3192,"22582":9263,"22583":7546,"22584":3743,"22585":5766,"22586":2949,"22587":481,"22588":9851,"22589":9994,"22590":5746,"22591":2833,"22592":783,"22593":10062,"22594":8055,"22595":6105,"22596":5541,"22597":1981,"22598":10785,"22599":5114,"22600":9707,"22601":1352,"22602":4928,"22603":9188,"22604":2066,"22605":8759,"22606":10403,"22607":1915,"22608":8827,"22609":1090,"22610":2959,"22611":4267,"22612":7211,"22613":4317,"22614":4088,"22615":247,"22616":10216,"22617":7761,"22618":10673,"22619":9028,"22620":2142,"22621":2125,"22622":10802,"22623":7852,"22624":126,"22625":5707,"22626":6254,"22627":6499,"22628":8228,"22629":264,"22630":5262,"22631":9607,"22632":1240,"22633":9259,"22634":9948,"22635":9964,"22636":9654,"22637":2575,"22638":8470,"22639":7913,"22640":10532,"22641":4022,"22642":160,"22643":3965,"22644":819,"22645":258,"22646":5376,"22647":3953,"22648":2577,"22649":3152,"22650":2555,"22651":1794,"22652":5180,"22653":6491,"22654":8137,"22655":8728,"22656":7141,"22657":3443,"22658":8444,"22659":2874,"22660":9377,"22661":1144,"22662":8031,"22663":43,"22664":9836,"22665":10259,"22666":3594,"22667":3051,"22668":7082,"22669":10416,"22670":9831,"22671":7028,"22672":2442,"22673":6271,"22674":7554,"22675":818,"22676":5316,"22677":7316,"22678":2615,"22679":9696,"22680":3062,"22681":7801,"22682":1302,"22683":10891,"22684":2398,"22685":10417,"22686":3194,"22687":9818,"22688":8931,"22689":7144,"22690":8588,"22691":4864,"22692":9963,"22693":4202,"22694":10158,"22695":8330,"22696":5646,"22697":2757,"22698":1187,"22699":10800,"22700":4831,"22701":2549,"22702":4255,"22703":10522,"22704":6963,"22705":4450,"22706":6907,"22707":5453,"22708":8728,"22709":10953,"22710":764,"22711":4409,"22712":6515,"22713":9992,"22714":5854,"22715":125,"22716":9222,"22717":8513,"22718":4529,"22719":10402,"22720":8640,"22721":1332,"22722":3640,"22723":7215,"22724":8712,"22725":3034,"22726":5714,"22727":553,"22728":2994,"22729":6011,"22730":6823,"22731":8665,"22732":10734,"22733":9491,"22734":3626,"22735":6032,"22736":7511,"22737":3075,"22738":6866,"22739":8227,"22740":9135,"22741":1081,"22742":10635,"22743":7721,"22744":7961,"22745":265,"22746":2752,"22747":9571,"22748":1527,"22749":2706,"22750":2121,"22751":7135,"22752":1504,"22753":967,"22754":3643,"22755":8271,"22756":10745,"22757":4868,"22758":4993,"22759":3612,"22760":9054,"22761":4358,"22762":7541,"22763":1816,"22764":5613,"22765":3158,"22766":10482,"22767":7297,"22768":2327,"22769":10646,"22770":7493,"22771":6007,"22772":4263,"22773":1959,"22774":8729,"22775":9374,"22776":2589,"22777":3858,"22778":10755,"22779":2509,"22780":1034,"22781":404,"22782":3212,"22783":6225,"22784":8925,"22785":5714,"22786":1318,"22787":9752,"22788":7023,"22789":3931,"22790":2228,"22791":4808,"22792":9946,"22793":582,"22794":9713,"22795":1797,"22796":5380,"22797":5632,"22798":10656,"22799":7440,"22800":6671,"22801":986,"22802":380,"22803":7249,"22804":6866,"22805":6964,"22806":5284,"22807":4708,"22808":4300,"22809":5057,"22810":2048,"22811":243,"22812":3946,"22813":1571,"22814":5464,"22815":8507,"22816":550,"22817":10889,"22818":8210,"22819":2545,"22820":5579,"22821":7022,"22822":4804,"22823":5431,"22824":9829,"22825":3439,"22826":3177,"22827":5199,"22828":6897,"22829":6421,"22830":5221,"22831":5426,"22832":8812,"22833":6439,"22834":5060,"22835":4414,"22836":8676,"22837":3182,"22838":10730,"22839":4784,"22840":6439,"22841":1034,"22842":9808,"22843":6110,"22844":3880,"22845":9294,"22846":7405,"22847":10340,"22848":5724,"22849":6459,"22850":4943,"22851":4584,"22852":8581,"22853":192,"22854":9922,"22855":7439,"22856":5918,"22857":7035,"22858":6702,"22859":9830,"22860":5792,"22861":3156,"22862":4161,"22863":1633,"22864":8897,"22865":4616,"22866":5866,"22867":1266,"22868":8311,"22869":4178,"22870":6073,"22871":9072,"22872":374,"22873":1871,"22874":3336,"22875":10591,"22876":4522,"22877":8588,"22878":1203,"22879":9768,"22880":1249,"22881":10984,"22882":2827,"22883":4616,"22884":5733,"22885":9173,"22886":10461,"22887":3704,"22888":770,"22889":9356,"22890":8631,"22891":2739,"22892":8155,"22893":3145,"22894":10708,"22895":9930,"22896":10141,"22897":3427,"22898":3493,"22899":3662,"22900":3984,"22901":5031,"22902":1791,"22903":7986,"22904":5380,"22905":817,"22906":3936,"22907":596,"22908":893,"22909":9481,"22910":2331,"22911":7277,"22912":3383,"22913":6879,"22914":6273,"22915":4887,"22916":8886,"22917":7095,"22918":9963,"22919":8117,"22920":3939,"22921":4981,"22922":4931,"22923":4825,"22924":3692,"22925":7602,"22926":448,"22927":7804,"22928":5604,"22929":9033,"22930":10940,"22931":2240,"22932":265,"22933":4902,"22934":6916,"22935":6593,"22936":7299,"22937":4027,"22938":4184,"22939":940,"22940":6134,"22941":7808,"22942":5412,"22943":5560,"22944":336,"22945":10003,"22946":3962,"22947":9525,"22948":1598,"22949":6443,"22950":5058,"22951":10033,"22952":7265,"22953":6071,"22954":688,"22955":6661,"22956":3382,"22957":7525,"22958":7474,"22959":8340,"22960":2420,"22961":5437,"22962":817,"22963":6996,"22964":2802,"22965":1764,"22966":2564,"22967":3138,"22968":4748,"22969":5015,"22970":7743,"22971":5024,"22972":5805,"22973":5643,"22974":3401,"22975":5606,"22976":7061,"22977":2452,"22978":3785,"22979":7535,"22980":7962,"22981":6668,"22982":6192,"22983":4554,"22984":6262,"22985":5528,"22986":3448,"22987":151,"22988":4775,"22989":2032,"22990":7014,"22991":5559,"22992":9584,"22993":3734,"22994":3305,"22995":2292,"22996":1397,"22997":4627,"22998":9162,"22999":6326,"23000":404,"23001":7578,"23002":763,"23003":4754,"23004":5582,"23005":3914,"23006":3885,"23007":10557,"23008":9975,"23009":7790,"23010":8794,"23011":6805,"23012":8255,"23013":5290,"23014":9209,"23015":1324,"23016":5211,"23017":3066,"23018":9862,"23019":6035,"23020":1287,"23021":390,"23022":5508,"23023":7783,"23024":2747,"23025":3283,"23026":5530,"23027":10605,"23028":3434,"23029":1201,"23030":10148,"23031":1398,"23032":10584,"23033":3540,"23034":9968,"23035":4058,"23036":10723,"23037":7044,"23038":3867,"23039":9318,"23040":6161,"23041":8804,"23042":7524,"23043":10001,"23044":7130,"23045":5095,"23046":4578,"23047":2000,"23048":6469,"23049":5268,"23050":1826,"23051":10165,"23052":6515,"23053":10327,"23054":3448,"23055":8136,"23056":3513,"23057":5437,"23058":4204,"23059":6600,"23060":5429,"23061":7389,"23062":1080,"23063":10884,"23064":733,"23065":8790,"23066":1350,"23067":4952,"23068":6700,"23069":10190,"23070":3463,"23071":6751,"23072":5197,"23073":2529,"23074":6097,"23075":3280,"23076":2200,"23077":10011,"23078":7177,"23079":5140,"23080":10914,"23081":6023,"23082":3896,"23083":3637,"23084":4665,"23085":4348,"23086":10812,"23087":6935,"23088":3952,"23089":7860,"23090":1447,"23091":952,"23092":3998,"23093":5797,"23094":7736,"23095":6720,"23096":5008,"23097":89,"23098":4709,"23099":7654,"23100":1708,"23101":9761,"23102":10024,"23103":7176,"23104":904,"23105":24,"23106":10275,"23107":8095,"23108":6970,"23109":5373,"23110":1260,"23111":4044,"23112":4311,"23113":3007,"23114":6777,"23115":7464,"23116":2435,"23117":5605,"23118":2084,"23119":6871,"23120":7214,"23121":4681,"23122":1643,"23123":10979,"23124":9437,"23125":4876,"23126":5421,"23127":5290,"23128":10170,"23129":486,"23130":8292,"23131":3684,"23132":9008,"23133":740,"23134":3747,"23135":9955,"23136":9371,"23137":9245,"23138":2363,"23139":4191,"23140":3433,"23141":4415,"23142":3998,"23143":4649,"23144":4513,"23145":6653,"23146":8846,"23147":6415,"23148":9935,"23149":5193,"23150":9523,"23151":3246,"23152":2765,"23153":8991,"23154":7344,"23155":5276,"23156":10448,"23157":8186,"23158":5854,"23159":3185,"23160":9176,"23161":7815,"23162":2070,"23163":1771,"23164":4556,"23165":560,"23166":5388,"23167":2733,"23168":6607,"23169":8200,"23170":8731,"23171":5388,"23172":9359,"23173":1532,"23174":2990,"23175":1752,"23176":6135,"23177":6321,"23178":2641,"23179":4664,"23180":751,"23181":5126,"23182":9480,"23183":1272,"23184":3763,"23185":2083,"23186":7895,"23187":2669,"23188":5538,"23189":4146,"23190":4819,"23191":2135,"23192":8019,"23193":714,"23194":8791,"23195":6859,"23196":3131,"23197":1545,"23198":4823,"23199":8658,"23200":8282,"23201":2651,"23202":5608,"23203":6118,"23204":10108,"23205":8382,"23206":10311,"23207":9667,"23208":10857,"23209":10874,"23210":10607,"23211":58,"23212":4377,"23213":4973,"23214":6617,"23215":3655,"23216":3634,"23217":3090,"23218":947,"23219":4074,"23220":4855,"23221":9070,"23222":5078,"23223":1410,"23224":3685,"23225":1073,"23226":10906,"23227":8533,"23228":10077,"23229":9807,"23230":8510,"23231":5784,"23232":3154,"23233":9919,"23234":8062,"23235":9904,"23236":1350,"23237":4277,"23238":7775,"23239":10858,"23240":6657,"23241":9343,"23242":1468,"23243":8642,"23244":5727,"23245":10683,"23246":2396,"23247":2275,"23248":6633,"23249":29,"23250":8313,"23251":4495,"23252":10580,"23253":1276,"23254":7594,"23255":8436,"23256":2029,"23257":7989,"23258":2466,"23259":4385,"23260":5567,"23261":2515,"23262":3931,"23263":1395,"23264":3763,"23265":9987,"23266":8579,"23267":1385,"23268":1050,"23269":3092,"23270":4878,"23271":3534,"23272":2934,"23273":6913,"23274":7267,"23275":656,"23276":6514,"23277":2335,"23278":21,"23279":10456,"23280":9755,"23281":5991,"23282":4164,"23283":1769,"23284":2081,"23285":8845,"23286":9692,"23287":4970,"23288":10532,"23289":406,"23290":576,"23291":4448,"23292":2063,"23293":6213,"23294":8572,"23295":5197,"23296":1848,"23297":10074,"23298":10372,"23299":6058,"23300":896,"23301":7980,"23302":8922,"23303":9079,"23304":6301,"23305":5344,"23306":9732,"23307":1959,"23308":5395,"23309":10337,"23310":3076,"23311":7848,"23312":6704,"23313":1381,"23314":2233,"23315":7931,"23316":7041,"23317":10364,"23318":5327,"23319":6438,"23320":5664,"23321":10595,"23322":5068,"23323":9582,"23324":9572,"23325":1277,"23326":5899,"23327":2590,"23328":4203,"23329":4230,"23330":3300,"23331":2509,"23332":7610,"23333":2464,"23334":6098,"23335":3476,"23336":7504,"23337":3540,"23338":2221,"23339":6400,"23340":7586,"23341":8697,"23342":9276,"23343":10341,"23344":7876,"23345":7036,"23346":3285,"23347":7601,"23348":1129,"23349":9912,"23350":5225,"23351":643,"23352":3523,"23353":4714,"23354":3766,"23355":2490,"23356":4577,"23357":8677,"23358":6130,"23359":2490,"23360":1702,"23361":8002,"23362":5727,"23363":3778,"23364":5623,"23365":8660,"23366":6269,"23367":1975,"23368":3933,"23369":2012,"23370":10711,"23371":3755,"23372":5585,"23373":9775,"23374":6233,"23375":4818,"23376":475,"23377":6809,"23378":8949,"23379":8548,"23380":1136,"23381":2562,"23382":4499,"23383":10871,"23384":9407,"23385":1559,"23386":5933,"23387":5008,"23388":6892,"23389":4980,"23390":9932,"23391":8251,"23392":7022,"23393":8829,"23394":10744,"23395":8330,"23396":10144,"23397":5723,"23398":1737,"23399":7244,"23400":10868,"23401":8916,"23402":4196,"23403":1257,"23404":8560,"23405":88,"23406":5766,"23407":6291,"23408":6638,"23409":10740,"23410":4444,"23411":2738,"23412":6755,"23413":6718,"23414":1528,"23415":8504,"23416":5136,"23417":10034,"23418":7909,"23419":10405,"23420":7446,"23421":4166,"23422":5921,"23423":5890,"23424":3228,"23425":205,"23426":10478,"23427":3046,"23428":5369,"23429":755,"23430":7849,"23431":4729,"23432":9066,"23433":8053,"23434":8867,"23435":675,"23436":9761,"23437":7980,"23438":7500,"23439":7082,"23440":5389,"23441":5764,"23442":10406,"23443":10919,"23444":6221,"23445":9196,"23446":661,"23447":9713,"23448":2073,"23449":6868,"23450":5092,"23451":1125,"23452":6827,"23453":7565,"23454":10504,"23455":10511,"23456":8156,"23457":5437,"23458":4211,"23459":4071,"23460":4797,"23461":8619,"23462":7358,"23463":6161,"23464":5779,"23465":8664,"23466":1651,"23467":252,"23468":6633,"23469":2832,"23470":8410,"23471":3294,"23472":5209,"23473":6738,"23474":8294,"23475":4393,"23476":9483,"23477":8251,"23478":8296,"23479":5359,"23480":5077,"23481":6087,"23482":7847,"23483":4600,"23484":5569,"23485":6794,"23486":2139,"23487":6424,"23488":10973,"23489":7736,"23490":2268,"23491":9683,"23492":2643,"23493":8202,"23494":7305,"23495":6973,"23496":10150,"23497":8772,"23498":4672,"23499":6971,"23500":7887,"23501":8766,"23502":5278,"23503":6328,"23504":1865,"23505":9177,"23506":5384,"23507":3772,"23508":3251,"23509":8022,"23510":10033,"23511":9802,"23512":10348,"23513":2649,"23514":7694,"23515":5382,"23516":10432,"23517":1017,"23518":1569,"23519":2489,"23520":5741,"23521":2778,"23522":9271,"23523":3618,"23524":6647,"23525":4405,"23526":1935,"23527":4375,"23528":10833,"23529":8661,"23530":8489,"23531":4741,"23532":3375,"23533":9851,"23534":1834,"23535":3951,"23536":2883,"23537":10404,"23538":1228,"23539":1291,"23540":10988,"23541":6091,"23542":1901,"23543":2992,"23544":8551,"23545":5310,"23546":9964,"23547":1519,"23548":8967,"23549":3207,"23550":6812,"23551":6893,"23552":3703,"23553":10590,"23554":3280,"23555":7620,"23556":5668,"23557":122,"23558":2620,"23559":10102,"23560":7505,"23561":5312,"23562":3280,"23563":681,"23564":7851,"23565":2868,"23566":9219,"23567":799,"23568":9299,"23569":7946,"23570":10248,"23571":3509,"23572":6284,"23573":10049,"23574":5699,"23575":5386,"23576":6887,"23577":10148,"23578":7989,"23579":4637,"23580":143,"23581":6728,"23582":10425,"23583":9988,"23584":6569,"23585":8833,"23586":9640,"23587":2394,"23588":2552,"23589":10058,"23590":4732,"23591":10317,"23592":632,"23593":9474,"23594":4492,"23595":10665,"23596":5813,"23597":173,"23598":5544,"23599":9634,"23600":3760,"23601":4360,"23602":4374,"23603":4893,"23604":1648,"23605":2778,"23606":4037,"23607":2600,"23608":5545,"23609":565,"23610":3738,"23611":7511,"23612":5681,"23613":6354,"23614":6207,"23615":2395,"23616":10788,"23617":9786,"23618":10357,"23619":229,"23620":2880,"23621":9225,"23622":1473,"23623":800,"23624":8723,"23625":2104,"23626":545,"23627":5614,"23628":4239,"23629":5520,"23630":10951,"23631":10164,"23632":3757,"23633":9477,"23634":8389,"23635":2361,"23636":10616,"23637":3667,"23638":305,"23639":9785,"23640":1231,"23641":7368,"23642":7607,"23643":472,"23644":2849,"23645":2260,"23646":7151,"23647":7819,"23648":6734,"23649":8856,"23650":3565,"23651":7579,"23652":4189,"23653":2202,"23654":7469,"23655":3870,"23656":8454,"23657":9674,"23658":7976,"23659":2887,"23660":3227,"23661":4011,"23662":1741,"23663":5275,"23664":273,"23665":6129,"23666":5858,"23667":8723,"23668":7889,"23669":618,"23670":3320,"23671":10110,"23672":10212,"23673":2239,"23674":2806,"23675":847,"23676":325,"23677":9688,"23678":3319,"23679":7792,"23680":575,"23681":10388,"23682":6519,"23683":2895,"23684":7261,"23685":9848,"23686":988,"23687":9638,"23688":1014,"23689":5267,"23690":10096,"23691":9066,"23692":4513,"23693":2572,"23694":8204,"23695":5060,"23696":5186,"23697":10498,"23698":4404,"23699":7819,"23700":6105,"23701":10476,"23702":2978,"23703":1038,"23704":6733,"23705":8553,"23706":5049,"23707":8060,"23708":8808,"23709":8776,"23710":9104,"23711":616,"23712":9438,"23713":10963,"23714":986,"23715":4026,"23716":10794,"23717":4092,"23718":6807,"23719":1431,"23720":3219,"23721":5577,"23722":10079,"23723":2097,"23724":8770,"23725":1812,"23726":3954,"23727":1844,"23728":4620,"23729":7041,"23730":9654,"23731":16,"23732":5851,"23733":5463,"23734":829,"23735":2802,"23736":7451,"23737":3335,"23738":8963,"23739":9369,"23740":8151,"23741":7815,"23742":8899,"23743":4709,"23744":3142,"23745":3408,"23746":10841,"23747":1501,"23748":9918,"23749":9757,"23750":2024,"23751":10941,"23752":10987,"23753":3033,"23754":4863,"23755":5045,"23756":3640,"23757":1161,"23758":7208,"23759":929,"23760":8554,"23761":3309,"23762":6947,"23763":4184,"23764":6899,"23765":2687,"23766":6591,"23767":8241,"23768":3453,"23769":4252,"23770":638,"23771":204,"23772":4427,"23773":334,"23774":1040,"23775":3280,"23776":2678,"23777":987,"23778":4521,"23779":8821,"23780":4342,"23781":9267,"23782":1958,"23783":4180,"23784":4739,"23785":8316,"23786":2371,"23787":562,"23788":701,"23789":5488,"23790":9189,"23791":4878,"23792":9933,"23793":8153,"23794":3367,"23795":6820,"23796":10497,"23797":9623,"23798":5101,"23799":10039,"23800":8364,"23801":3906,"23802":6881,"23803":4024,"23804":5216,"23805":321,"23806":2847,"23807":5400,"23808":8284,"23809":435,"23810":9592,"23811":9460,"23812":1244,"23813":9152,"23814":686,"23815":10627,"23816":4476,"23817":8394,"23818":10960,"23819":6926,"23820":8334,"23821":8960,"23822":658,"23823":2762,"23824":1927,"23825":7523,"23826":1239,"23827":7879,"23828":9548,"23829":4541,"23830":9852,"23831":3079,"23832":4422,"23833":7321,"23834":7967,"23835":7674,"23836":5795,"23837":9915,"23838":7906,"23839":8540,"23840":7754,"23841":1415,"23842":2493,"23843":8344,"23844":1110,"23845":2358,"23846":108,"23847":1173,"23848":7997,"23849":10881,"23850":9480,"23851":5474,"23852":4903,"23853":2107,"23854":8868,"23855":8682,"23856":8312,"23857":4351,"23858":225,"23859":799,"23860":1446,"23861":7638,"23862":8659,"23863":8885,"23864":2647,"23865":8300,"23866":9783,"23867":8286,"23868":4023,"23869":2440,"23870":5834,"23871":8049,"23872":6441,"23873":8115,"23874":10007,"23875":1100,"23876":4637,"23877":8633,"23878":1118,"23879":8762,"23880":6924,"23881":8071,"23882":4593,"23883":1044,"23884":7713,"23885":3340,"23886":1910,"23887":1214,"23888":208,"23889":9244,"23890":4160,"23891":4800,"23892":1450,"23893":10020,"23894":9465,"23895":7690,"23896":4811,"23897":10272,"23898":2385,"23899":9699,"23900":10464,"23901":6929,"23902":6093,"23903":967,"23904":2078,"23905":5286,"23906":6008,"23907":6121,"23908":1264,"23909":5327,"23910":1618,"23911":8903,"23912":291,"23913":10919,"23914":8281,"23915":7905,"23916":8480,"23917":6532,"23918":176,"23919":9603,"23920":6292,"23921":6790,"23922":8306,"23923":5016,"23924":8159,"23925":6791,"23926":7286,"23927":8001,"23928":2601,"23929":4212,"23930":6057,"23931":6142,"23932":3777,"23933":6985,"23934":4298,"23935":10194,"23936":5950,"23937":3495,"23938":4978,"23939":6638,"23940":10434,"23941":7711,"23942":10207,"23943":3064,"23944":605,"23945":3771,"23946":9990,"23947":932,"23948":4330,"23949":3699,"23950":4240,"23951":5013,"23952":6045,"23953":8600,"23954":2178,"23955":10898,"23956":35,"23957":5285,"23958":6833,"23959":2754,"23960":7821,"23961":6477,"23962":9367,"23963":8599,"23964":6663,"23965":8540,"23966":4782,"23967":9185,"23968":5754,"23969":4210,"23970":3602,"23971":4964,"23972":2093,"23973":10063,"23974":7159,"23975":8013,"23976":9859,"23977":4859,"23978":5577,"23979":371,"23980":9327,"23981":4905,"23982":9961,"23983":3911,"23984":9941,"23985":7202,"23986":9630,"23987":6792,"23988":1410,"23989":4134,"23990":2651,"23991":1361,"23992":1854,"23993":8776,"23994":8453,"23995":7050,"23996":8039,"23997":6498,"23998":8810,"23999":8554,"24000":1043,"24001":4028,"24002":295,"24003":1348,"24004":629,"24005":3372,"24006":9612,"24007":10081,"24008":8769,"24009":1084,"24010":6638,"24011":7622,"24012":4628,"24013":10009,"24014":8564,"24015":4622,"24016":3154,"24017":9106,"24018":6711,"24019":2909,"24020":2511,"24021":10798,"24022":6310,"24023":1801,"24024":4855,"24025":8152,"24026":4765,"24027":3821,"24028":5940,"24029":6571,"24030":8210,"24031":6213,"24032":4397,"24033":8147,"24034":7195,"24035":7181,"24036":10958,"24037":994,"24038":3394,"24039":4849,"24040":9453,"24041":7459,"24042":2968,"24043":5770,"24044":2508,"24045":10933,"24046":7670,"24047":9734,"24048":1182,"24049":8259,"24050":2967,"24051":6857,"24052":7388,"24053":8569,"24054":9232,"24055":2707,"24056":9007,"24057":9583,"24058":1558,"24059":3962,"24060":9829,"24061":8297,"24062":5460,"24063":3905,"24064":4503,"24065":6174,"24066":10417,"24067":3545,"24068":7853,"24069":4177,"24070":7692,"24071":3770,"24072":1591,"24073":4896,"24074":9799,"24075":670,"24076":1424,"24077":9233,"24078":8267,"24079":7457,"24080":10264,"24081":2009,"24082":5290,"24083":9104,"24084":7876,"24085":8379,"24086":1171,"24087":10986,"24088":5049,"24089":1069,"24090":9037,"24091":7767,"24092":7984,"24093":10043,"24094":149,"24095":4195,"24096":5675,"24097":2065,"24098":1210,"24099":6934,"24100":730,"24101":4396,"24102":1217,"24103":5863,"24104":5916,"24105":2056,"24106":9645,"24107":7224,"24108":941,"24109":4210,"24110":1274,"24111":9344,"24112":5284,"24113":942,"24114":8219,"24115":7016,"24116":3996,"24117":9019,"24118":7515,"24119":4376,"24120":9849,"24121":6013,"24122":7260,"24123":4006,"24124":10077,"24125":2699,"24126":2064,"24127":10483,"24128":1881,"24129":5710,"24130":4090,"24131":3818,"24132":2168,"24133":5690,"24134":6329,"24135":7088,"24136":9558,"24137":4470,"24138":195,"24139":7227,"24140":9339,"24141":6763,"24142":3002,"24143":10200,"24144":7215,"24145":7959,"24146":8718,"24147":8635,"24148":4119,"24149":10404,"24150":2146,"24151":8894,"24152":7284,"24153":925,"24154":4249,"24155":2434,"24156":4864,"24157":10332,"24158":4085,"24159":581,"24160":688,"24161":10648,"24162":10606,"24163":9815,"24164":8658,"24165":6818,"24166":7789,"24167":9427,"24168":445,"24169":2582,"24170":6546,"24171":3069,"24172":4664,"24173":9533,"24174":8991,"24175":3000,"24176":10985,"24177":2606,"24178":9566,"24179":6774,"24180":2010,"24181":1938,"24182":8592,"24183":3986,"24184":6613,"24185":9932,"24186":1953,"24187":4826,"24188":8857,"24189":3652,"24190":7050,"24191":9145,"24192":6307,"24193":4233,"24194":4720,"24195":8189,"24196":9690,"24197":5498,"24198":9143,"24199":2843,"24200":2200,"24201":6133,"24202":5798,"24203":3501,"24204":5113,"24205":2539,"24206":5687,"24207":5985,"24208":2712,"24209":5362,"24210":6742,"24211":2310,"24212":6528,"24213":3634,"24214":3458,"24215":4341,"24216":354,"24217":9157,"24218":7063,"24219":1785,"24220":7834,"24221":9703,"24222":856,"24223":3047,"24224":3124,"24225":8276,"24226":3380,"24227":4172,"24228":10170,"24229":1960,"24230":2610,"24231":9146,"24232":4586,"24233":10982,"24234":1831,"24235":5406,"24236":3646,"24237":271,"24238":8128,"24239":9712,"24240":10853,"24241":4382,"24242":5203,"24243":2279,"24244":6112,"24245":183,"24246":9651,"24247":1793,"24248":4551,"24249":3425,"24250":9570,"24251":2796,"24252":4841,"24253":10463,"24254":9867,"24255":80,"24256":10639,"24257":8153,"24258":10581,"24259":4549,"24260":10399,"24261":7255,"24262":4192,"24263":10502,"24264":890,"24265":3372,"24266":5347,"24267":6045,"24268":7903,"24269":5631,"24270":8383,"24271":7376,"24272":9394,"24273":946,"24274":3421,"24275":4678,"24276":10693,"24277":317,"24278":1871,"24279":5519,"24280":2848,"24281":6943,"24282":10200,"24283":8497,"24284":9548,"24285":2838,"24286":6064,"24287":9281,"24288":3862,"24289":2007,"24290":6675,"24291":8934,"24292":2941,"24293":9066,"24294":488,"24295":5581,"24296":8136,"24297":3618,"24298":8290,"24299":6082,"24300":10277,"24301":4930,"24302":7299,"24303":257,"24304":1933,"24305":9033,"24306":9377,"24307":1808,"24308":9631,"24309":10970,"24310":5103,"24311":5285,"24312":1699,"24313":7685,"24314":331,"24315":593,"24316":7970,"24317":6682,"24318":1158,"24319":81,"24320":4263,"24321":7445,"24322":5513,"24323":187,"24324":10772,"24325":1932,"24326":34,"24327":2650,"24328":7675,"24329":6100,"24330":6753,"24331":4247,"24332":3409,"24333":2254,"24334":9922,"24335":10966,"24336":9840,"24337":4142,"24338":9844,"24339":9987,"24340":1762,"24341":9196,"24342":10893,"24343":4827,"24344":5600,"24345":2179,"24346":9129,"24347":6804,"24348":2006,"24349":2089,"24350":6948,"24351":5333,"24352":351,"24353":1372,"24354":6127,"24355":10251,"24356":3176,"24357":5052,"24358":8556,"24359":10254,"24360":9960,"24361":8492,"24362":1162,"24363":10798,"24364":10153,"24365":6359,"24366":5716,"24367":9688,"24368":6583,"24369":5646,"24370":2424,"24371":7782,"24372":10629,"24373":8282,"24374":2546,"24375":3908,"24376":118,"24377":10665,"24378":8190,"24379":10285,"24380":8349,"24381":5248,"24382":9630,"24383":3786,"24384":1542,"24385":7017,"24386":1526,"24387":3330,"24388":8252,"24389":7024,"24390":3814,"24391":10134,"24392":4722,"24393":8717,"24394":3719,"24395":2809,"24396":8525,"24397":3262,"24398":9848,"24399":6167,"24400":4969,"24401":7574,"24402":2903,"24403":8126,"24404":207,"24405":1548,"24406":2451,"24407":1556,"24408":3756,"24409":8416,"24410":4105,"24411":1119,"24412":9788,"24413":7812,"24414":4366,"24415":2042,"24416":10689,"24417":8897,"24418":7573,"24419":8691,"24420":9085,"24421":3766,"24422":569,"24423":3197,"24424":2123,"24425":3396,"24426":6997,"24427":2188,"24428":5413,"24429":6255,"24430":8572,"24431":5677,"24432":10172,"24433":10675,"24434":9515,"24435":2846,"24436":7449,"24437":4517,"24438":7056,"24439":9837,"24440":5506,"24441":6170,"24442":6719,"24443":10407,"24444":4980,"24445":7864,"24446":2104,"24447":6876,"24448":410,"24449":2644,"24450":8665,"24451":4157,"24452":7406,"24453":1278,"24454":3882,"24455":2437,"24456":8086,"24457":5465,"24458":10763,"24459":3400,"24460":6979,"24461":10222,"24462":3936,"24463":7235,"24464":2241,"24465":3886,"24466":8693,"24467":2624,"24468":1383,"24469":5033,"24470":4505,"24471":6828,"24472":1871,"24473":7618,"24474":7362,"24475":2718,"24476":3042,"24477":1033,"24478":4926,"24479":2689,"24480":2904,"24481":1599,"24482":2945,"24483":10542,"24484":10180,"24485":7025,"24486":462,"24487":9306,"24488":10344,"24489":3654,"24490":8864,"24491":9911,"24492":6619,"24493":3042,"24494":1516,"24495":1080,"24496":9590,"24497":6413,"24498":10225,"24499":9179,"24500":10922,"24501":6766,"24502":5701,"24503":375,"24504":3007,"24505":3306,"24506":1216,"24507":1585,"24508":5100,"24509":7344,"24510":8246,"24511":10119,"24512":5627,"24513":3559,"24514":2674,"24515":8929,"24516":9357,"24517":4594,"24518":3504,"24519":5598,"24520":5658,"24521":390,"24522":7309,"24523":4103,"24524":2323,"24525":6156,"24526":8445,"24527":6487,"24528":10013,"24529":4179,"24530":1752,"24531":6798,"24532":5608,"24533":2945,"24534":5880,"24535":4137,"24536":3995,"24537":7270,"24538":1000,"24539":4080,"24540":7036,"24541":7693,"24542":8000,"24543":8775,"24544":652,"24545":5913,"24546":1698,"24547":5904,"24548":6841,"24549":326,"24550":9946,"24551":7198,"24552":4400,"24553":6094,"24554":9105,"24555":6787,"24556":10794,"24557":10225,"24558":5047,"24559":6170,"24560":6381,"24561":3516,"24562":5709,"24563":10028,"24564":5682,"24565":7172,"24566":9031,"24567":3943,"24568":9698,"24569":10777,"24570":10139,"24571":7363,"24572":3627,"24573":10173,"24574":7424,"24575":2299,"24576":7261,"24577":1187,"24578":8356,"24579":3193,"24580":7500,"24581":5994,"24582":3603,"24583":9005,"24584":3863,"24585":4633,"24586":6199,"24587":9392,"24588":4421,"24589":4666,"24590":3718,"24591":2045,"24592":8355,"24593":7383,"24594":3960,"24595":7846,"24596":9815,"24597":3238,"24598":9062,"24599":7549,"24600":4299,"24601":8293,"24602":1058,"24603":5776,"24604":7557,"24605":7213,"24606":1098,"24607":7216,"24608":627,"24609":1122,"24610":4627,"24611":10407,"24612":6647,"24613":4321,"24614":9944,"24615":9952,"24616":8626,"24617":8733,"24618":5832,"24619":2857,"24620":7768,"24621":8608,"24622":1426,"24623":6224,"24624":10106,"24625":2445,"24626":1135,"24627":1546,"24628":2790,"24629":6004,"24630":439,"24631":146,"24632":4077,"24633":2687,"24634":3118,"24635":1735,"24636":7856,"24637":1855,"24638":6561,"24639":2986,"24640":2123,"24641":7395,"24642":2482,"24643":9815,"24644":1962,"24645":5762,"24646":3066,"24647":4305,"24648":8439,"24649":68,"24650":1604,"24651":8427,"24652":8119,"24653":10431,"24654":2055,"24655":9475,"24656":3870,"24657":661,"24658":1456,"24659":8707,"24660":4608,"24661":6296,"24662":9627,"24663":10243,"24664":6703,"24665":7479,"24666":3812,"24667":8450,"24668":9173,"24669":10137,"24670":859,"24671":4488,"24672":9249,"24673":10805,"24674":485,"24675":247,"24676":7388,"24677":4729,"24678":4567,"24679":7469,"24680":2976,"24681":8582,"24682":9086,"24683":1219,"24684":9776,"24685":3175,"24686":628,"24687":248,"24688":5045,"24689":5486,"24690":6777,"24691":8466,"24692":5850,"24693":6070,"24694":6337,"24695":5627,"24696":3049,"24697":2355,"24698":3345,"24699":9295,"24700":3102,"24701":4432,"24702":4904,"24703":1239,"24704":734,"24705":8881,"24706":1702,"24707":6322,"24708":6210,"24709":5726,"24710":2303,"24711":1300,"24712":2285,"24713":2380,"24714":7385,"24715":7417,"24716":9721,"24717":10077,"24718":993,"24719":8106,"24720":10534,"24721":1308,"24722":2254,"24723":10104,"24724":364,"24725":7049,"24726":8813,"24727":8282,"24728":10253,"24729":1704,"24730":5897,"24731":8067,"24732":5547,"24733":2826,"24734":3390,"24735":7756,"24736":6512,"24737":2473,"24738":4737,"24739":10219,"24740":7724,"24741":10295,"24742":7920,"24743":4154,"24744":940,"24745":3485,"24746":5050,"24747":10645,"24748":1865,"24749":1616,"24750":6617,"24751":10011,"24752":2986,"24753":6342,"24754":6613,"24755":10832,"24756":8975,"24757":2825,"24758":4023,"24759":370,"24760":339,"24761":6215,"24762":7248,"24763":9837,"24764":10075,"24765":4967,"24766":8260,"24767":10038,"24768":5562,"24769":8981,"24770":1299,"24771":4919,"24772":1473,"24773":3240,"24774":1212,"24775":6920,"24776":836,"24777":7205,"24778":3029,"24779":10014,"24780":9100,"24781":2331,"24782":10023,"24783":4475,"24784":10831,"24785":4799,"24786":3084,"24787":3483,"24788":7332,"24789":169,"24790":7859,"24791":5274,"24792":3614,"24793":3598,"24794":10700,"24795":7494,"24796":9621,"24797":4590,"24798":10176,"24799":10787,"24800":5531,"24801":613,"24802":2611,"24803":7250,"24804":5093,"24805":4848,"24806":3094,"24807":8275,"24808":10060,"24809":9054,"24810":523,"24811":10906,"24812":2189,"24813":3427,"24814":274,"24815":6079,"24816":8592,"24817":5131,"24818":5570,"24819":2063,"24820":930,"24821":7976,"24822":1884,"24823":3575,"24824":3518,"24825":1806,"24826":7003,"24827":8580,"24828":9152,"24829":206,"24830":1883,"24831":3313,"24832":3714,"24833":3103,"24834":8190,"24835":4401,"24836":10662,"24837":3595,"24838":4921,"24839":686,"24840":8888,"24841":6059,"24842":9198,"24843":8370,"24844":4133,"24845":10618,"24846":6324,"24847":1943,"24848":9984,"24849":5547,"24850":5654,"24851":912,"24852":8735,"24853":644,"24854":1121,"24855":6231,"24856":3784,"24857":704,"24858":8724,"24859":2476,"24860":744,"24861":7023,"24862":3952,"24863":7595,"24864":5669,"24865":4229,"24866":1059,"24867":9500,"24868":8009,"24869":7278,"24870":554,"24871":10087,"24872":832,"24873":5209,"24874":10529,"24875":5537,"24876":796,"24877":1222,"24878":3205,"24879":3458,"24880":967,"24881":10284,"24882":9217,"24883":3643,"24884":1515,"24885":1608,"24886":6113,"24887":206,"24888":8518,"24889":6216,"24890":1462,"24891":5030,"24892":6136,"24893":9963,"24894":4227,"24895":5676,"24896":3262,"24897":7106,"24898":6547,"24899":10438,"24900":10651,"24901":618,"24902":6095,"24903":1625,"24904":5977,"24905":785,"24906":5259,"24907":9602,"24908":9967,"24909":4525,"24910":2775,"24911":758,"24912":6573,"24913":1297,"24914":1391,"24915":9207,"24916":4475,"24917":6489,"24918":1021,"24919":3252,"24920":3831,"24921":7356,"24922":1621,"24923":8633,"24924":7418,"24925":4147,"24926":3690,"24927":9454,"24928":77,"24929":1969,"24930":6090,"24931":931,"24932":8278,"24933":2779,"24934":6431,"24935":2452,"24936":2485,"24937":10758,"24938":7962,"24939":1941,"24940":1022,"24941":4997,"24942":329,"24943":6413,"24944":420,"24945":4669,"24946":82,"24947":8277,"24948":10494,"24949":6219,"24950":3645,"24951":10894,"24952":588,"24953":6277,"24954":1907,"24955":2292,"24956":4924,"24957":5265,"24958":4107,"24959":3664,"24960":9220,"24961":2198,"24962":8138,"24963":2189,"24964":9700,"24965":6586,"24966":2046,"24967":6713,"24968":8193,"24969":2990,"24970":7426,"24971":7697,"24972":5560,"24973":4642,"24974":7870,"24975":7342,"24976":6952,"24977":3646,"24978":2911,"24979":5972,"24980":3869,"24981":3735,"24982":5928,"24983":5798,"24984":3605,"24985":9446,"24986":5643,"24987":723,"24988":10527,"24989":6417,"24990":1594,"24991":5367,"24992":1684,"24993":10228,"24994":9486,"24995":4402,"24996":2193,"24997":8571,"24998":428,"24999":2586,"25000":9656,"25001":1744,"25002":8492,"25003":4556,"25004":7305,"25005":2378,"25006":3119,"25007":3639,"25008":8765,"25009":8457,"25010":655,"25011":8819,"25012":7935,"25013":798,"25014":1878,"25015":9874,"25016":7881,"25017":5960,"25018":7526,"25019":855,"25020":7895,"25021":59,"25022":8802,"25023":3141,"25024":4597,"25025":5325,"25026":10064,"25027":1344,"25028":3518,"25029":7314,"25030":7226,"25031":10664,"25032":96,"25033":694,"25034":7870,"25035":10000,"25036":7719,"25037":6968,"25038":892,"25039":6831,"25040":6859,"25041":44,"25042":9910,"25043":7862,"25044":21,"25045":6335,"25046":3631,"25047":2926,"25048":5704,"25049":5901,"25050":9497,"25051":5715,"25052":3715,"25053":9558,"25054":5992,"25055":7328,"25056":9093,"25057":5730,"25058":6884,"25059":6875,"25060":2959,"25061":6449,"25062":1717,"25063":8394,"25064":9925,"25065":10393,"25066":8658,"25067":10668,"25068":4877,"25069":8092,"25070":8797,"25071":5684,"25072":3967,"25073":7535,"25074":4814,"25075":5185,"25076":6910,"25077":5771,"25078":972,"25079":2385,"25080":3751,"25081":3695,"25082":8325,"25083":2134,"25084":4525,"25085":1336,"25086":5192,"25087":8436,"25088":2335,"25089":3290,"25090":9150,"25091":9641,"25092":2518,"25093":9640,"25094":9914,"25095":5483,"25096":4207,"25097":3947,"25098":4361,"25099":6461,"25100":10256,"25101":2032,"25102":5225,"25103":2558,"25104":5578,"25105":1837,"25106":7045,"25107":2829,"25108":9382,"25109":1551,"25110":6820,"25111":1651,"25112":5519,"25113":4119,"25114":4825,"25115":837,"25116":3278,"25117":10391,"25118":2770,"25119":5180,"25120":6007,"25121":848,"25122":9587,"25123":4127,"25124":3386,"25125":9046,"25126":6199,"25127":525,"25128":10450,"25129":9569,"25130":10511,"25131":3614,"25132":147,"25133":2219,"25134":980,"25135":10420,"25136":4797,"25137":6211,"25138":9778,"25139":1969,"25140":4171,"25141":3419,"25142":2256,"25143":10099,"25144":8255,"25145":476,"25146":2519,"25147":7644,"25148":1542,"25149":6706,"25150":9740,"25151":4998,"25152":6858,"25153":5746,"25154":4229,"25155":5758,"25156":6305,"25157":161,"25158":9365,"25159":6217,"25160":3536,"25161":4419,"25162":6285,"25163":2040,"25164":606,"25165":7297,"25166":2212,"25167":868,"25168":745,"25169":5423,"25170":7094,"25171":3452,"25172":3375,"25173":2241,"25174":5858,"25175":3085,"25176":6040,"25177":1994,"25178":3855,"25179":5258,"25180":9514,"25181":3979,"25182":3142,"25183":273,"25184":7035,"25185":3591,"25186":215,"25187":1000,"25188":6787,"25189":433,"25190":5820,"25191":660,"25192":2543,"25193":2166,"25194":10405,"25195":3543,"25196":2371,"25197":4350,"25198":4944,"25199":6295,"25200":3674,"25201":1949,"25202":9691,"25203":4827,"25204":4170,"25205":8620,"25206":7917,"25207":4381,"25208":4829,"25209":5779,"25210":3238,"25211":4742,"25212":5092,"25213":8161,"25214":3856,"25215":4446,"25216":5489,"25217":3977,"25218":3338,"25219":6694,"25220":332,"25221":575,"25222":10344,"25223":1224,"25224":7657,"25225":1174,"25226":9899,"25227":2900,"25228":10907,"25229":5527,"25230":3393,"25231":5850,"25232":4068,"25233":2856,"25234":4382,"25235":3248,"25236":5769,"25237":3110,"25238":10425,"25239":2890,"25240":692,"25241":10774,"25242":3230,"25243":6218,"25244":1614,"25245":9566,"25246":4831,"25247":8374,"25248":6488,"25249":8035,"25250":10282,"25251":7682,"25252":171,"25253":2718,"25254":1652,"25255":6477,"25256":2894,"25257":10360,"25258":919,"25259":7520,"25260":9731,"25261":2855,"25262":8387,"25263":10492,"25264":9508,"25265":3885,"25266":6974,"25267":10635,"25268":4379,"25269":4780,"25270":10778,"25271":1191,"25272":6189,"25273":9255,"25274":4876,"25275":9974,"25276":3659,"25277":8727,"25278":10223,"25279":9085,"25280":3278,"25281":8749,"25282":2085,"25283":5179,"25284":6353,"25285":7942,"25286":5035,"25287":1817,"25288":8711,"25289":3699,"25290":1836,"25291":9195,"25292":7123,"25293":511,"25294":1730,"25295":6378,"25296":10306,"25297":1024,"25298":1425,"25299":6186,"25300":5603,"25301":8539,"25302":3471,"25303":4320,"25304":2793,"25305":2643,"25306":3586,"25307":1634,"25308":4700,"25309":3729,"25310":9127,"25311":8337,"25312":313,"25313":8857,"25314":122,"25315":3728,"25316":8787,"25317":5037,"25318":4256,"25319":811,"25320":8825,"25321":7085,"25322":4920,"25323":5036,"25324":4453,"25325":7596,"25326":260,"25327":7217,"25328":7352,"25329":3940,"25330":6773,"25331":4493,"25332":7649,"25333":4580,"25334":6189,"25335":2961,"25336":7549,"25337":8972,"25338":9314,"25339":1658,"25340":4838,"25341":4932,"25342":9369,"25343":1161,"25344":2022,"25345":4141,"25346":9797,"25347":5597,"25348":2484,"25349":8027,"25350":10241,"25351":1100,"25352":10987,"25353":570,"25354":3535,"25355":628,"25356":1413,"25357":211,"25358":6687,"25359":6675,"25360":9170,"25361":7990,"25362":106,"25363":8646,"25364":4640,"25365":9299,"25366":7309,"25367":6228,"25368":506,"25369":8496,"25370":3689,"25371":4100,"25372":1613,"25373":1143,"25374":6382,"25375":7238,"25376":5275,"25377":10896,"25378":5278,"25379":4706,"25380":4422,"25381":1031,"25382":9459,"25383":1178,"25384":10017,"25385":1540,"25386":5813,"25387":5604,"25388":2878,"25389":10639,"25390":8719,"25391":3752,"25392":588,"25393":256,"25394":4244,"25395":5753,"25396":6634,"25397":5541,"25398":5093,"25399":690,"25400":5702,"25401":63,"25402":8980,"25403":9345,"25404":4990,"25405":6442,"25406":7098,"25407":769,"25408":1003,"25409":10708,"25410":7719,"25411":9102,"25412":4832,"25413":10230,"25414":8644,"25415":8654,"25416":5293,"25417":4693,"25418":1723,"25419":2656,"25420":632,"25421":10622,"25422":8612,"25423":10070,"25424":6496,"25425":6982,"25426":9101,"25427":5528,"25428":191,"25429":9572,"25430":5639,"25431":10407,"25432":864,"25433":5763,"25434":10840,"25435":10894,"25436":1424,"25437":24,"25438":9977,"25439":7179,"25440":3637,"25441":6046,"25442":7716,"25443":3459,"25444":9980,"25445":5575,"25446":1954,"25447":2459,"25448":9034,"25449":8558,"25450":8881,"25451":2211,"25452":3094,"25453":7156,"25454":9702,"25455":2014,"25456":7415,"25457":6574,"25458":4943,"25459":3185,"25460":523,"25461":1220,"25462":9974,"25463":2614,"25464":6190,"25465":6444,"25466":1048,"25467":677,"25468":10469,"25469":8518,"25470":3539,"25471":9987,"25472":10905,"25473":2561,"25474":254,"25475":3205,"25476":1626,"25477":2443,"25478":3433,"25479":10138,"25480":5981,"25481":9300,"25482":4889,"25483":9971,"25484":2472,"25485":10824,"25486":7702,"25487":3787,"25488":5503,"25489":8154,"25490":3829,"25491":1898,"25492":5206,"25493":6815,"25494":4036,"25495":3021,"25496":6110,"25497":5428,"25498":7300,"25499":6776,"25500":4551,"25501":6212,"25502":18,"25503":884,"25504":324,"25505":3141,"25506":963,"25507":1953,"25508":2165,"25509":713,"25510":9360,"25511":8542,"25512":1618,"25513":1334,"25514":9958,"25515":1207,"25516":5652,"25517":5035,"25518":5847,"25519":10451,"25520":3646,"25521":4794,"25522":5271,"25523":2902,"25524":8710,"25525":266,"25526":6870,"25527":6720,"25528":7047,"25529":402,"25530":8820,"25531":6656,"25532":3854,"25533":5553,"25534":6018,"25535":4761,"25536":2350,"25537":4479,"25538":7419,"25539":3867,"25540":768,"25541":441,"25542":1036,"25543":4311,"25544":10958,"25545":2933,"25546":3670,"25547":4244,"25548":1311,"25549":6364,"25550":8045,"25551":6255,"25552":4583,"25553":6885,"25554":2552,"25555":10147,"25556":10253,"25557":9348,"25558":9119,"25559":756,"25560":1138,"25561":8771,"25562":7189,"25563":5238,"25564":9587,"25565":3364,"25566":4422,"25567":6314,"25568":906,"25569":4083,"25570":10703,"25571":129,"25572":4693,"25573":3155,"25574":7473,"25575":4960,"25576":7496,"25577":4766,"25578":10893,"25579":8851,"25580":703,"25581":4922,"25582":2947,"25583":4584,"25584":10129,"25585":7066,"25586":6847,"25587":991,"25588":8606,"25589":7872,"25590":8393,"25591":5536,"25592":1072,"25593":5185,"25594":10162,"25595":7699,"25596":1159,"25597":6426,"25598":4432,"25599":6325,"25600":8876,"25601":7346,"25602":5817,"25603":7857,"25604":4140,"25605":10896,"25606":969,"25607":10508,"25608":3317,"25609":3683,"25610":6116,"25611":5189,"25612":9912,"25613":1220,"25614":4607,"25615":9290,"25616":2264,"25617":3826,"25618":939,"25619":10241,"25620":5373,"25621":6046,"25622":9662,"25623":1118,"25624":8407,"25625":420,"25626":5481,"25627":3769,"25628":4854,"25629":6502,"25630":6208,"25631":4993,"25632":2775,"25633":5477,"25634":2051,"25635":706,"25636":4269,"25637":6481,"25638":9622,"25639":1148,"25640":970,"25641":10145,"25642":1315,"25643":587,"25644":1443,"25645":630,"25646":996,"25647":8,"25648":9916,"25649":2221,"25650":649,"25651":5773,"25652":4329,"25653":2677,"25654":10613,"25655":9205,"25656":7995,"25657":8229,"25658":8997,"25659":9748,"25660":8461,"25661":9181,"25662":2122,"25663":576,"25664":3308,"25665":3188,"25666":3748,"25667":4440,"25668":5081,"25669":4405,"25670":5505,"25671":6649,"25672":2671,"25673":4156,"25674":10252,"25675":37,"25676":2006,"25677":4942,"25678":2007,"25679":2754,"25680":6828,"25681":2047,"25682":9132,"25683":2318,"25684":7483,"25685":6722,"25686":7948,"25687":9627,"25688":2351,"25689":6770,"25690":4921,"25691":6139,"25692":1689,"25693":454,"25694":3712,"25695":2051,"25696":1805,"25697":6101,"25698":4336,"25699":10318,"25700":6541,"25701":6616,"25702":10662,"25703":3307,"25704":5324,"25705":6789,"25706":259,"25707":9026,"25708":1051,"25709":9000,"25710":189,"25711":10910,"25712":6553,"25713":4305,"25714":7493,"25715":6923,"25716":5383,"25717":8719,"25718":6233,"25719":5354,"25720":2848,"25721":8156,"25722":4797,"25723":4339,"25724":7836,"25725":8363,"25726":2871,"25727":2262,"25728":9620,"25729":9932,"25730":9138,"25731":2601,"25732":8684,"25733":9904,"25734":8584,"25735":5514,"25736":5322,"25737":8962,"25738":5998,"25739":1177,"25740":5387,"25741":4603,"25742":9648,"25743":579,"25744":8876,"25745":383,"25746":1340,"25747":8135,"25748":4651,"25749":5336,"25750":7871,"25751":6019,"25752":8797,"25753":586,"25754":5317,"25755":5229,"25756":3282,"25757":10711,"25758":3411,"25759":3423,"25760":4176,"25761":9477,"25762":7146,"25763":9244,"25764":9211,"25765":10520,"25766":7682,"25767":271,"25768":5319,"25769":4708,"25770":950,"25771":9632,"25772":8787,"25773":9184,"25774":10527,"25775":3500,"25776":4280,"25777":5124,"25778":1123,"25779":4950,"25780":3614,"25781":3520,"25782":1285,"25783":6604,"25784":1152,"25785":8581,"25786":462,"25787":839,"25788":8899,"25789":4523,"25790":5851,"25791":3485,"25792":9881,"25793":10040,"25794":624,"25795":4221,"25796":4738,"25797":3257,"25798":9947,"25799":705,"25800":9975,"25801":3409,"25802":6651,"25803":10507,"25804":5814,"25805":10753,"25806":10833,"25807":4954,"25808":10214,"25809":8885,"25810":6719,"25811":9660,"25812":6310,"25813":3824,"25814":1719,"25815":817,"25816":8155,"25817":7898,"25818":9756,"25819":8512,"25820":5306,"25821":4362,"25822":563,"25823":8193,"25824":10724,"25825":9988,"25826":482,"25827":4298,"25828":9224,"25829":969,"25830":3987,"25831":4712,"25832":3599,"25833":2586,"25834":6641,"25835":5829,"25836":26,"25837":3783,"25838":4473,"25839":7882,"25840":5797,"25841":5904,"25842":10339,"25843":578,"25844":321,"25845":2424,"25846":8803,"25847":5712,"25848":7576,"25849":9371,"25850":2088,"25851":7335,"25852":9651,"25853":5129,"25854":3192,"25855":9572,"25856":9835,"25857":8555,"25858":9312,"25859":5437,"25860":797,"25861":945,"25862":6895,"25863":1910,"25864":7876,"25865":3662,"25866":313,"25867":10789,"25868":4896,"25869":840,"25870":6145,"25871":710,"25872":8156,"25873":5017,"25874":7995,"25875":5864,"25876":6662,"25877":4272,"25878":2893,"25879":1896,"25880":4815,"25881":2563,"25882":3361,"25883":196,"25884":1837,"25885":4706,"25886":5223,"25887":5443,"25888":6073,"25889":1357,"25890":5064,"25891":795,"25892":10603,"25893":4751,"25894":7606,"25895":10782,"25896":7288,"25897":4428,"25898":2360,"25899":1805,"25900":590,"25901":10051,"25902":6374,"25903":7928,"25904":3800,"25905":995,"25906":3727,"25907":5599,"25908":3526,"25909":4070,"25910":9107,"25911":4809,"25912":2617,"25913":3496,"25914":3511,"25915":9351,"25916":2133,"25917":729,"25918":232,"25919":1097,"25920":5393,"25921":1734,"25922":2617,"25923":4187,"25924":6401,"25925":1587,"25926":4984,"25927":6228,"25928":3816,"25929":771,"25930":640,"25931":5457,"25932":9061,"25933":2346,"25934":5944,"25935":1450,"25936":2756,"25937":597,"25938":8108,"25939":5879,"25940":661,"25941":2126,"25942":6622,"25943":3929,"25944":10151,"25945":10000,"25946":2157,"25947":2599,"25948":10573,"25949":2844,"25950":5062,"25951":8859,"25952":2384,"25953":4625,"25954":3655,"25955":8056,"25956":10798,"25957":6055,"25958":6583,"25959":3087,"25960":1239,"25961":6723,"25962":10747,"25963":5939,"25964":8028,"25965":5126,"25966":1356,"25967":1396,"25968":9404,"25969":5178,"25970":556,"25971":2846,"25972":6716,"25973":8051,"25974":8416,"25975":237,"25976":8555,"25977":4868,"25978":9840,"25979":2539,"25980":10804,"25981":6843,"25982":1853,"25983":1863,"25984":1319,"25985":234,"25986":2890,"25987":6119,"25988":7424,"25989":8909,"25990":7547,"25991":4101,"25992":5184,"25993":5879,"25994":3736,"25995":997,"25996":10321,"25997":7510,"25998":6795,"25999":1085,"26000":4156,"26001":9301,"26002":1425,"26003":6754,"26004":2688,"26005":7318,"26006":2350,"26007":7887,"26008":752,"26009":1874,"26010":8871,"26011":7444,"26012":9310,"26013":10869,"26014":4996,"26015":8870,"26016":777,"26017":9402,"26018":420,"26019":5345,"26020":777,"26021":10678,"26022":3321,"26023":4103,"26024":5662,"26025":3464,"26026":5655,"26027":8947,"26028":829,"26029":5182,"26030":1030,"26031":6421,"26032":5711,"26033":1608,"26034":5484,"26035":8383,"26036":2810,"26037":8578,"26038":2954,"26039":1400,"26040":6389,"26041":7928,"26042":535,"26043":10236,"26044":2088,"26045":8654,"26046":5133,"26047":10346,"26048":7072,"26049":5033,"26050":7249,"26051":8504,"26052":795,"26053":10284,"26054":5294,"26055":10870,"26056":1874,"26057":4810,"26058":1621,"26059":3493,"26060":2806,"26061":6139,"26062":8439,"26063":10941,"26064":8488,"26065":4237,"26066":4875,"26067":10351,"26068":5456,"26069":6745,"26070":6175,"26071":10886,"26072":8745,"26073":5976,"26074":1220,"26075":3172,"26076":1400,"26077":217,"26078":7372,"26079":5973,"26080":6552,"26081":4390,"26082":2022,"26083":10563,"26084":10244,"26085":4386,"26086":5482,"26087":3878,"26088":1226,"26089":6040,"26090":5874,"26091":9584,"26092":6339,"26093":9724,"26094":2254,"26095":4723,"26096":4805,"26097":10424,"26098":107,"26099":10190,"26100":5066,"26101":3358,"26102":2557,"26103":1514,"26104":6373,"26105":952,"26106":9189,"26107":2145,"26108":7162,"26109":1053,"26110":4602,"26111":4600,"26112":4970,"26113":10786,"26114":1978,"26115":3567,"26116":2813,"26117":4208,"26118":3046,"26119":9497,"26120":3504,"26121":7702,"26122":10986,"26123":2370,"26124":6009,"26125":7939,"26126":8538,"26127":4240,"26128":6559,"26129":1580,"26130":9850,"26131":2998,"26132":8489,"26133":7825,"26134":3579,"26135":59,"26136":7861,"26137":9789,"26138":2837,"26139":1826,"26140":3672,"26141":6697,"26142":9620,"26143":2466,"26144":1476,"26145":1179,"26146":964,"26147":7448,"26148":10550,"26149":6790,"26150":1241,"26151":5716,"26152":1430,"26153":6028,"26154":6742,"26155":2648,"26156":7837,"26157":2453,"26158":449,"26159":10021,"26160":4606,"26161":10561,"26162":2458,"26163":8083,"26164":3454,"26165":9837,"26166":4303,"26167":5579,"26168":3939,"26169":10487,"26170":9656,"26171":2724,"26172":10852,"26173":2404,"26174":4692,"26175":10392,"26176":7148,"26177":10155,"26178":3769,"26179":8419,"26180":7231,"26181":3018,"26182":10002,"26183":9011,"26184":2456,"26185":3830,"26186":7654,"26187":10560,"26188":8883,"26189":6833,"26190":5194,"26191":21,"26192":2727,"26193":2831,"26194":9524,"26195":7277,"26196":7725,"26197":4918,"26198":6335,"26199":10022,"26200":2972,"26201":7317,"26202":5335,"26203":1105,"26204":2184,"26205":504,"26206":3580,"26207":515,"26208":9387,"26209":8212,"26210":9835,"26211":6851,"26212":7288,"26213":1007,"26214":1797,"26215":2731,"26216":8763,"26217":8610,"26218":7326,"26219":9010,"26220":7734,"26221":4894,"26222":8038,"26223":9623,"26224":3099,"26225":6922,"26226":7765,"26227":8022,"26228":8749,"26229":2504,"26230":1964,"26231":7866,"26232":2492,"26233":8491,"26234":10975,"26235":4588,"26236":9141,"26237":872,"26238":3193,"26239":3108,"26240":473,"26241":9152,"26242":2851,"26243":5339,"26244":9293,"26245":10315,"26246":1521,"26247":5420,"26248":5184,"26249":6450,"26250":10822,"26251":5390,"26252":10598,"26253":4559,"26254":2630,"26255":8250,"26256":2071,"26257":7751,"26258":7359,"26259":5236,"26260":936,"26261":6659,"26262":7664,"26263":10597,"26264":2033,"26265":8227,"26266":1071,"26267":10621,"26268":10486,"26269":3397,"26270":8882,"26271":6919,"26272":9636,"26273":3313,"26274":2859,"26275":3666,"26276":7041,"26277":10679,"26278":8367,"26279":5733,"26280":7215,"26281":2227,"26282":1913,"26283":3035,"26284":9909,"26285":4347,"26286":7935,"26287":2551,"26288":8324,"26289":465,"26290":8224,"26291":2590,"26292":1712,"26293":7595,"26294":6444,"26295":9327,"26296":6010,"26297":7970,"26298":10895,"26299":453,"26300":5463,"26301":8189,"26302":1054,"26303":528,"26304":1416,"26305":6544,"26306":10763,"26307":9952,"26308":3364,"26309":3498,"26310":3037,"26311":6883,"26312":2041,"26313":9819,"26314":4841,"26315":9458,"26316":9686,"26317":8169,"26318":2514,"26319":3555,"26320":9882,"26321":4907,"26322":8518,"26323":3666,"26324":7330,"26325":337,"26326":4771,"26327":5432,"26328":8282,"26329":129,"26330":3297,"26331":8480,"26332":1206,"26333":5747,"26334":2519,"26335":6120,"26336":7755,"26337":1278,"26338":3096,"26339":10108,"26340":7710,"26341":8093,"26342":6628,"26343":4777,"26344":1332,"26345":5174,"26346":6832,"26347":7289,"26348":1146,"26349":2759,"26350":9873,"26351":726,"26352":8158,"26353":518,"26354":7497,"26355":2699,"26356":9907,"26357":7964,"26358":2478,"26359":8129,"26360":9583,"26361":9243,"26362":1733,"26363":3569,"26364":9751,"26365":3781,"26366":874,"26367":6560,"26368":4757,"26369":10582,"26370":1904,"26371":7655,"26372":6003,"26373":6014,"26374":252,"26375":9874,"26376":6668,"26377":8964,"26378":10535,"26379":1256,"26380":8424,"26381":7295,"26382":8619,"26383":8915,"26384":172,"26385":7007,"26386":9383,"26387":7007,"26388":8120,"26389":5410,"26390":10095,"26391":3934,"26392":3750,"26393":6117,"26394":1763,"26395":5799,"26396":6440,"26397":309,"26398":3520,"26399":819,"26400":6404,"26401":3080,"26402":9518,"26403":8793,"26404":9253,"26405":3254,"26406":3667,"26407":8734,"26408":8749,"26409":3666,"26410":4491,"26411":8369,"26412":3706,"26413":179,"26414":1680,"26415":5971,"26416":8002,"26417":4037,"26418":3652,"26419":9451,"26420":1036,"26421":4697,"26422":8871,"26423":1821,"26424":2991,"26425":5406,"26426":288,"26427":7689,"26428":3086,"26429":2026,"26430":6814,"26431":5103,"26432":3255,"26433":2312,"26434":8623,"26435":6319,"26436":2008,"26437":9516,"26438":1597,"26439":3846,"26440":1421,"26441":8228,"26442":10215,"26443":8092,"26444":4978,"26445":5898,"26446":5600,"26447":7160,"26448":7613,"26449":3851,"26450":9797,"26451":3797,"26452":5537,"26453":4750,"26454":3112,"26455":6229,"26456":31,"26457":8538,"26458":1610,"26459":5547,"26460":9335,"26461":10308,"26462":10996,"26463":10149,"26464":7713,"26465":1780,"26466":4982,"26467":638,"26468":881,"26469":5175,"26470":7214,"26471":5038,"26472":8497,"26473":8121,"26474":7151,"26475":5195,"26476":4302,"26477":7127,"26478":6568,"26479":1313,"26480":6061,"26481":6431,"26482":3957,"26483":3183,"26484":10789,"26485":4258,"26486":4960,"26487":1929,"26488":2135,"26489":847,"26490":231,"26491":4238,"26492":10516,"26493":9587,"26494":3522,"26495":7222,"26496":1018,"26497":10639,"26498":2635,"26499":6318,"26500":3324,"26501":7545,"26502":6351,"26503":6725,"26504":10355,"26505":1138,"26506":5059,"26507":3223,"26508":4115,"26509":9134,"26510":2924,"26511":6605,"26512":7529,"26513":105,"26514":3579,"26515":1890,"26516":7472,"26517":2758,"26518":8731,"26519":169,"26520":10566,"26521":5935,"26522":3493,"26523":1627,"26524":2109,"26525":6907,"26526":7688,"26527":2165,"26528":8376,"26529":10060,"26530":8254,"26531":1856,"26532":5540,"26533":1595,"26534":7299,"26535":7030,"26536":4248,"26537":7640,"26538":484,"26539":9525,"26540":2435,"26541":8384,"26542":6589,"26543":228,"26544":4324,"26545":144,"26546":7807,"26547":5595,"26548":5235,"26549":7028,"26550":937,"26551":7382,"26552":3050,"26553":3135,"26554":3806,"26555":563,"26556":10565,"26557":3680,"26558":9623,"26559":6295,"26560":1450,"26561":3957,"26562":5742,"26563":799,"26564":4068,"26565":1724,"26566":7601,"26567":8814,"26568":10551,"26569":8396,"26570":1941,"26571":5577,"26572":4464,"26573":4238,"26574":548,"26575":673,"26576":10936,"26577":5235,"26578":8970,"26579":8998,"26580":9289,"26581":6025,"26582":3311,"26583":1756,"26584":9360,"26585":7526,"26586":7829,"26587":8602,"26588":830,"26589":3999,"26590":3005,"26591":647,"26592":9139,"26593":10368,"26594":9908,"26595":4819,"26596":2108,"26597":8342,"26598":9894,"26599":2498,"26600":7111,"26601":1262,"26602":2296,"26603":6292,"26604":8584,"26605":7226,"26606":2059,"26607":8486,"26608":2521,"26609":9509,"26610":3570,"26611":2269,"26612":3694,"26613":1135,"26614":1629,"26615":6503,"26616":3049,"26617":5904,"26618":2132,"26619":9441,"26620":5198,"26621":4896,"26622":3567,"26623":1163,"26624":408,"26625":8566,"26626":1342,"26627":10698,"26628":6197,"26629":7988,"26630":4799,"26631":10085,"26632":10263,"26633":9259,"26634":8440,"26635":3516,"26636":3842,"26637":4788,"26638":8095,"26639":5591,"26640":1139,"26641":215,"26642":8026,"26643":9998,"26644":1634,"26645":2472,"26646":8730,"26647":5587,"26648":10815,"26649":118,"26650":9652,"26651":6189,"26652":3442,"26653":380,"26654":2627,"26655":6634,"26656":10968,"26657":1785,"26658":10198,"26659":3629,"26660":7526,"26661":8404,"26662":284,"26663":4129,"26664":5148,"26665":971,"26666":598,"26667":3023,"26668":9289,"26669":6350,"26670":8836,"26671":6396,"26672":9200,"26673":3747,"26674":5113,"26675":2160,"26676":2861,"26677":8455,"26678":8758,"26679":8205,"26680":203,"26681":6764,"26682":7148,"26683":10007,"26684":3889,"26685":9869,"26686":3047,"26687":10067,"26688":3123,"26689":2863,"26690":9389,"26691":7968,"26692":4797,"26693":10820,"26694":330,"26695":2742,"26696":9559,"26697":4078,"26698":2725,"26699":3210,"26700":2583,"26701":1193,"26702":1270,"26703":3703,"26704":5463,"26705":1932,"26706":5588,"26707":6578,"26708":2178,"26709":1277,"26710":4748,"26711":218,"26712":7610,"26713":10188,"26714":7375,"26715":6270,"26716":10022,"26717":1418,"26718":9854,"26719":3646,"26720":507,"26721":250,"26722":2897,"26723":10250,"26724":8537,"26725":3147,"26726":10639,"26727":1654,"26728":2332,"26729":667,"26730":5881,"26731":3572,"26732":9638,"26733":4770,"26734":803,"26735":5234,"26736":10915,"26737":7843,"26738":3303,"26739":6219,"26740":3567,"26741":613,"26742":8829,"26743":9202,"26744":10904,"26745":8784,"26746":5923,"26747":9588,"26748":152,"26749":3905,"26750":9070,"26751":1314,"26752":463,"26753":10318,"26754":7510,"26755":2958,"26756":4245,"26757":8887,"26758":9715,"26759":5855,"26760":6322,"26761":9309,"26762":7986,"26763":8070,"26764":8309,"26765":10721,"26766":515,"26767":537,"26768":8399,"26769":5428,"26770":10897,"26771":5811,"26772":10868,"26773":4596,"26774":6479,"26775":9886,"26776":7121,"26777":366,"26778":9589,"26779":5043,"26780":5334,"26781":7742,"26782":2302,"26783":7075,"26784":10454,"26785":161,"26786":532,"26787":5551,"26788":877,"26789":2317,"26790":6945,"26791":5020,"26792":502,"26793":8222,"26794":7181,"26795":7333,"26796":10003,"26797":1904,"26798":3774,"26799":4283,"26800":7943,"26801":8327,"26802":3009,"26803":7800,"26804":1991,"26805":5980,"26806":9004,"26807":6993,"26808":9276,"26809":10788,"26810":3436,"26811":10384,"26812":8121,"26813":2677,"26814":9132,"26815":1470,"26816":7452,"26817":9583,"26818":7773,"26819":3704,"26820":3353,"26821":7319,"26822":4297,"26823":7995,"26824":9299,"26825":7337,"26826":7010,"26827":6357,"26828":3776,"26829":9525,"26830":6217,"26831":10196,"26832":3956,"26833":8777,"26834":10139,"26835":8195,"26836":875,"26837":9872,"26838":8285,"26839":8238,"26840":8323,"26841":1869,"26842":3793,"26843":9419,"26844":8579,"26845":5901,"26846":4162,"26847":1194,"26848":3198,"26849":1510,"26850":7330,"26851":2639,"26852":8472,"26853":7305,"26854":732,"26855":1299,"26856":2387,"26857":3424,"26858":5402,"26859":8941,"26860":388,"26861":7579,"26862":3984,"26863":7229,"26864":2827,"26865":6677,"26866":7038,"26867":6852,"26868":1866,"26869":10692,"26870":417,"26871":10751,"26872":5270,"26873":6120,"26874":8520,"26875":10313,"26876":6957,"26877":2853,"26878":5388,"26879":1901,"26880":4476,"26881":206,"26882":5298,"26883":5907,"26884":7586,"26885":4443,"26886":9628,"26887":8835,"26888":10137,"26889":3083,"26890":10907,"26891":3919,"26892":2957,"26893":2253,"26894":8873,"26895":4363,"26896":10986,"26897":2474,"26898":6872,"26899":6588,"26900":8199,"26901":336,"26902":7349,"26903":1885,"26904":10896,"26905":1670,"26906":9545,"26907":9380,"26908":6690,"26909":8493,"26910":256,"26911":10291,"26912":8834,"26913":7980,"26914":9459,"26915":10705,"26916":9868,"26917":1247,"26918":9608,"26919":10070,"26920":5109,"26921":4775,"26922":7430,"26923":6152,"26924":9072,"26925":2419,"26926":7893,"26927":5360,"26928":322,"26929":6765,"26930":3930,"26931":7235,"26932":9398,"26933":8634,"26934":2625,"26935":5611,"26936":4484,"26937":7360,"26938":3684,"26939":5271,"26940":8696,"26941":7764,"26942":8131,"26943":4888,"26944":2380,"26945":10815,"26946":2862,"26947":4081,"26948":7220,"26949":4112,"26950":9703,"26951":7459,"26952":9465,"26953":3901,"26954":4579,"26955":7146,"26956":10976,"26957":1668,"26958":4853,"26959":6396,"26960":9897,"26961":7459,"26962":1062,"26963":3880,"26964":2324,"26965":2395,"26966":367,"26967":8122,"26968":9998,"26969":2305,"26970":55,"26971":9480,"26972":10779,"26973":4662,"26974":636,"26975":7358,"26976":1448,"26977":9931,"26978":3038,"26979":2470,"26980":5984,"26981":8078,"26982":1796,"26983":6493,"26984":7161,"26985":10603,"26986":8092,"26987":6653,"26988":10144,"26989":1800,"26990":7697,"26991":2544,"26992":8028,"26993":2931,"26994":5221,"26995":6509,"26996":9762,"26997":10342,"26998":10324,"26999":8867,"27000":4630,"27001":1267,"27002":1288,"27003":3694,"27004":1463,"27005":10468,"27006":1369,"27007":9264,"27008":2524,"27009":3195,"27010":193,"27011":10666,"27012":2983,"27013":4781,"27014":1316,"27015":10814,"27016":132,"27017":64,"27018":7129,"27019":7686,"27020":8051,"27021":3855,"27022":7025,"27023":9750,"27024":9238,"27025":4953,"27026":1893,"27027":6564,"27028":6692,"27029":6128,"27030":872,"27031":4560,"27032":9361,"27033":7907,"27034":2864,"27035":10905,"27036":1851,"27037":3105,"27038":8306,"27039":1350,"27040":4280,"27041":75,"27042":10545,"27043":815,"27044":519,"27045":2013,"27046":4367,"27047":3857,"27048":6259,"27049":6083,"27050":4717,"27051":10045,"27052":5071,"27053":2153,"27054":3261,"27055":6448,"27056":4041,"27057":6980,"27058":10602,"27059":5872,"27060":2364,"27061":1592,"27062":2788,"27063":2674,"27064":5668,"27065":1670,"27066":3134,"27067":347,"27068":8636,"27069":7129,"27070":2552,"27071":4594,"27072":9546,"27073":3421,"27074":1343,"27075":8258,"27076":2139,"27077":4037,"27078":6123,"27079":9610,"27080":4942,"27081":7277,"27082":2306,"27083":7422,"27084":7508,"27085":4341,"27086":2136,"27087":1685,"27088":9239,"27089":223,"27090":10754,"27091":8200,"27092":8915,"27093":7961,"27094":9797,"27095":10902,"27096":8105,"27097":1601,"27098":6581,"27099":5238,"27100":6303,"27101":8210,"27102":9556,"27103":5724,"27104":6079,"27105":10927,"27106":3804,"27107":5040,"27108":301,"27109":2116,"27110":10030,"27111":10531,"27112":334,"27113":990,"27114":8999,"27115":10449,"27116":3203,"27117":2791,"27118":10080,"27119":6971,"27120":4518,"27121":9948,"27122":7871,"27123":571,"27124":132,"27125":7089,"27126":1950,"27127":1434,"27128":5237,"27129":9045,"27130":9518,"27131":2405,"27132":8016,"27133":7485,"27134":7906,"27135":1099,"27136":1064,"27137":1318,"27138":965,"27139":552,"27140":2227,"27141":9896,"27142":6830,"27143":3403,"27144":7499,"27145":1121,"27146":10493,"27147":4396,"27148":6908,"27149":6562,"27150":9686,"27151":8544,"27152":3810,"27153":8171,"27154":10049,"27155":6109,"27156":7649,"27157":7934,"27158":8889,"27159":5949,"27160":642,"27161":2943,"27162":377,"27163":3683,"27164":895,"27165":2281,"27166":4433,"27167":9373,"27168":4020,"27169":8771,"27170":10554,"27171":10948,"27172":10750,"27173":6691,"27174":7091,"27175":1101,"27176":8340,"27177":7353,"27178":5626,"27179":10701,"27180":3271,"27181":6348,"27182":843,"27183":954,"27184":10059,"27185":4016,"27186":9639,"27187":2509,"27188":7235,"27189":2464,"27190":8065,"27191":3846,"27192":2752,"27193":3677,"27194":3895,"27195":626,"27196":1357,"27197":2807,"27198":3759,"27199":9808,"27200":5172,"27201":3508,"27202":9563,"27203":10459,"27204":10099,"27205":1656,"27206":4689,"27207":10211,"27208":2387,"27209":10070,"27210":5915,"27211":1444,"27212":3212,"27213":517,"27214":10359,"27215":708,"27216":3927,"27217":3977,"27218":6272,"27219":5970,"27220":6839,"27221":9003,"27222":3399,"27223":597,"27224":2639,"27225":3437,"27226":1400,"27227":4148,"27228":5882,"27229":6470,"27230":7309,"27231":10251,"27232":1194,"27233":627,"27234":6676,"27235":9112,"27236":3363,"27237":3722,"27238":6857,"27239":4216,"27240":7654,"27241":5484,"27242":848,"27243":1889,"27244":3850,"27245":5329,"27246":5096,"27247":3034,"27248":7743,"27249":3635,"27250":6033,"27251":4266,"27252":9012,"27253":2042,"27254":4636,"27255":2147,"27256":1116,"27257":7428,"27258":1335,"27259":10119,"27260":5480,"27261":8164,"27262":6854,"27263":3558,"27264":3027,"27265":3387,"27266":5825,"27267":1565,"27268":2414,"27269":9339,"27270":1799,"27271":10631,"27272":10599,"27273":245,"27274":1802,"27275":7080,"27276":7346,"27277":10376,"27278":6593,"27279":1314,"27280":1973,"27281":270,"27282":3653,"27283":9619,"27284":3896,"27285":7632,"27286":6500,"27287":9900,"27288":7065,"27289":1872,"27290":10897,"27291":7716,"27292":7603,"27293":9504,"27294":7274,"27295":5349,"27296":3583,"27297":8658,"27298":2486,"27299":10994,"27300":9278,"27301":1564,"27302":8097,"27303":4270,"27304":1108,"27305":6341,"27306":1015,"27307":1211,"27308":2948,"27309":10877,"27310":5964,"27311":7965,"27312":9584,"27313":222,"27314":6883,"27315":1879,"27316":6469,"27317":8686,"27318":1542,"27319":5908,"27320":4665,"27321":2690,"27322":7867,"27323":9361,"27324":4055,"27325":5742,"27326":3954,"27327":9895,"27328":176,"27329":2087,"27330":8983,"27331":2831,"27332":8960,"27333":4273,"27334":9050,"27335":7161,"27336":7425,"27337":1273,"27338":3048,"27339":2481,"27340":10646,"27341":10987,"27342":253,"27343":10880,"27344":5224,"27345":4281,"27346":8807,"27347":6390,"27348":3945,"27349":2101,"27350":7772,"27351":6039,"27352":4047,"27353":9974,"27354":8118,"27355":2632,"27356":9550,"27357":6289,"27358":7737,"27359":5544,"27360":4847,"27361":8674,"27362":9088,"27363":2817,"27364":637,"27365":7103,"27366":1282,"27367":10148,"27368":6740,"27369":7338,"27370":2081,"27371":4568,"27372":8813,"27373":871,"27374":5472,"27375":650,"27376":10907,"27377":4805,"27378":5251,"27379":945,"27380":8800,"27381":5317,"27382":5850,"27383":417,"27384":9003,"27385":6644,"27386":3567,"27387":9819,"27388":8966,"27389":7623,"27390":6320,"27391":3545,"27392":10233,"27393":9725,"27394":6662,"27395":8072,"27396":1686,"27397":8848,"27398":6492,"27399":7665,"27400":1513,"27401":2092,"27402":10299,"27403":5679,"27404":2433,"27405":4312,"27406":9609,"27407":6336,"27408":5144,"27409":1584,"27410":594,"27411":6817,"27412":5639,"27413":5537,"27414":6482,"27415":1535,"27416":7826,"27417":6140,"27418":2590,"27419":1567,"27420":8382,"27421":7688,"27422":8253,"27423":3645,"27424":3612,"27425":5703,"27426":1909,"27427":8268,"27428":3755,"27429":7969,"27430":2635,"27431":490,"27432":8151,"27433":10141,"27434":828,"27435":3063,"27436":2918,"27437":7575,"27438":9261,"27439":9153,"27440":5342,"27441":9996,"27442":9500,"27443":25,"27444":8609,"27445":32,"27446":7891,"27447":2645,"27448":4195,"27449":5898,"27450":4792,"27451":760,"27452":810,"27453":792,"27454":1523,"27455":2468,"27456":10495,"27457":50,"27458":7416,"27459":8837,"27460":2900,"27461":2720,"27462":8100,"27463":686,"27464":4330,"27465":3922,"27466":6401,"27467":2838,"27468":6600,"27469":6887,"27470":1925,"27471":4630,"27472":6239,"27473":8306,"27474":3946,"27475":342,"27476":7227,"27477":4066,"27478":2032,"27479":2426,"27480":7418,"27481":6023,"27482":7395,"27483":7396,"27484":5786,"27485":9876,"27486":1851,"27487":7522,"27488":9091,"27489":7273,"27490":7817,"27491":4656,"27492":2271,"27493":9514,"27494":3936,"27495":1273,"27496":3874,"27497":5528,"27498":2714,"27499":5237,"27500":7533,"27501":8556,"27502":1858,"27503":10022,"27504":230,"27505":1203,"27506":7440,"27507":1302,"27508":6465,"27509":7357,"27510":3895,"27511":4885,"27512":8755,"27513":6233,"27514":4268,"27515":4641,"27516":5235,"27517":6533,"27518":249,"27519":777,"27520":10373,"27521":9650,"27522":985,"27523":8007,"27524":6613,"27525":4301,"27526":9525,"27527":3618,"27528":2513,"27529":10539,"27530":3314,"27531":8686,"27532":8282,"27533":6150,"27534":8297,"27535":1205,"27536":6598,"27537":4471,"27538":2135,"27539":6842,"27540":8890,"27541":8357,"27542":1940,"27543":4173,"27544":9745,"27545":2871,"27546":781,"27547":7922,"27548":3772,"27549":6473,"27550":5314,"27551":8572,"27552":6213,"27553":9441,"27554":2368,"27555":1760,"27556":9516,"27557":2339,"27558":6584,"27559":6576,"27560":1987,"27561":9974,"27562":6176,"27563":4124,"27564":5856,"27565":8670,"27566":1290,"27567":2876,"27568":10358,"27569":4818,"27570":3488,"27571":646,"27572":3202,"27573":2130,"27574":2274,"27575":5186,"27576":1976,"27577":10429,"27578":7118,"27579":6639,"27580":2902,"27581":5332,"27582":835,"27583":3111,"27584":10291,"27585":1190,"27586":2906,"27587":354,"27588":9512,"27589":8728,"27590":2990,"27591":4070,"27592":6246,"27593":7483,"27594":5735,"27595":1742,"27596":5323,"27597":1145,"27598":3798,"27599":1418,"27600":6061,"27601":1452,"27602":9134,"27603":8291,"27604":493,"27605":6745,"27606":773,"27607":1582,"27608":5658,"27609":8780,"27610":9852,"27611":5751,"27612":3130,"27613":9788,"27614":1467,"27615":5073,"27616":9683,"27617":5500,"27618":8525,"27619":8916,"27620":7419,"27621":3491,"27622":8792,"27623":8735,"27624":5829,"27625":9554,"27626":9743,"27627":1803,"27628":4642,"27629":4437,"27630":8524,"27631":2869,"27632":3452,"27633":10806,"27634":3189,"27635":7806,"27636":8692,"27637":3990,"27638":2641,"27639":2480,"27640":5605,"27641":2369,"27642":8258,"27643":7169,"27644":6324,"27645":252,"27646":10254,"27647":9374,"27648":662,"27649":9863,"27650":6794,"27651":6224,"27652":6663,"27653":4118,"27654":9888,"27655":2942,"27656":5979,"27657":5514,"27658":5989,"27659":3446,"27660":5042,"27661":2979,"27662":8575,"27663":3974,"27664":2851,"27665":6225,"27666":10995,"27667":1409,"27668":10584,"27669":2514,"27670":1971,"27671":7051,"27672":7929,"27673":9548,"27674":8073,"27675":9141,"27676":7821,"27677":9820,"27678":6815,"27679":1810,"27680":4754,"27681":4633,"27682":4922,"27683":5640,"27684":10986,"27685":10759,"27686":1023,"27687":1344,"27688":6740,"27689":8031,"27690":8188,"27691":6787,"27692":9694,"27693":3932,"27694":3074,"27695":7417,"27696":5936,"27697":5139,"27698":6545,"27699":3873,"27700":5323,"27701":5326,"27702":10576,"27703":5166,"27704":6979,"27705":5510,"27706":766,"27707":5439,"27708":6642,"27709":9129,"27710":3521,"27711":3680,"27712":102,"27713":10483,"27714":8367,"27715":4471,"27716":3897,"27717":2948,"27718":10037,"27719":736,"27720":1159,"27721":7779,"27722":625,"27723":1634,"27724":3557,"27725":1140,"27726":3518,"27727":2746,"27728":10052,"27729":8585,"27730":4536,"27731":10018,"27732":5668,"27733":10243,"27734":4884,"27735":2463,"27736":5706,"27737":1671,"27738":6976,"27739":352,"27740":7402,"27741":3855,"27742":9616,"27743":8462,"27744":620,"27745":8179,"27746":5728,"27747":9578,"27748":8339,"27749":2637,"27750":9480,"27751":10979,"27752":7379,"27753":6804,"27754":381,"27755":8625,"27756":1216,"27757":3363,"27758":1894,"27759":6014,"27760":6631,"27761":6814,"27762":5133,"27763":5395,"27764":6618,"27765":4355,"27766":9981,"27767":9789,"27768":3118,"27769":55,"27770":3261,"27771":4313,"27772":9560,"27773":10118,"27774":1574,"27775":9748,"27776":9316,"27777":8902,"27778":483,"27779":4759,"27780":8979,"27781":4237,"27782":2746,"27783":8611,"27784":2047,"27785":10902,"27786":1379,"27787":2157,"27788":6821,"27789":7877,"27790":780,"27791":5985,"27792":2989,"27793":773,"27794":5265,"27795":9151,"27796":7028,"27797":10219,"27798":1412,"27799":8449,"27800":7953,"27801":1083,"27802":6844,"27803":8987,"27804":5177,"27805":9875,"27806":9695,"27807":2441,"27808":6405,"27809":3140,"27810":4177,"27811":6147,"27812":3795,"27813":5166,"27814":7453,"27815":3339,"27816":6231,"27817":7022,"27818":683,"27819":6143,"27820":6887,"27821":2103,"27822":4751,"27823":6828,"27824":3164,"27825":4189,"27826":3954,"27827":4508,"27828":1539,"27829":2288,"27830":10376,"27831":6495,"27832":5142,"27833":8020,"27834":1248,"27835":10915,"27836":702,"27837":978,"27838":10518,"27839":8096,"27840":10399,"27841":5028,"27842":2256,"27843":7979,"27844":8826,"27845":1654,"27846":5471,"27847":1300,"27848":2247,"27849":43,"27850":4138,"27851":3395,"27852":6847,"27853":5117,"27854":8023,"27855":6506,"27856":6124,"27857":5552,"27858":2259,"27859":6507,"27860":9161,"27861":10893,"27862":530,"27863":4789,"27864":8241,"27865":6435,"27866":9573,"27867":9162,"27868":881,"27869":8239,"27870":4432,"27871":7951,"27872":9539,"27873":3313,"27874":3053,"27875":1790,"27876":4120,"27877":2971,"27878":8465,"27879":2173,"27880":5299,"27881":9362,"27882":5308,"27883":2684,"27884":2876,"27885":2125,"27886":8764,"27887":8814,"27888":10123,"27889":52,"27890":1546,"27891":778,"27892":2143,"27893":9849,"27894":10106,"27895":3297,"27896":7037,"27897":9666,"27898":3381,"27899":801,"27900":3589,"27901":5798,"27902":4463,"27903":5768,"27904":102,"27905":3477,"27906":8539,"27907":1462,"27908":2072,"27909":8338,"27910":7432,"27911":4333,"27912":10610,"27913":7648,"27914":7712,"27915":10568,"27916":385,"27917":4897,"27918":3806,"27919":2424,"27920":9469,"27921":1185,"27922":4266,"27923":9593,"27924":6006,"27925":188,"27926":10667,"27927":9414,"27928":2288,"27929":4482,"27930":6413,"27931":114,"27932":3185,"27933":4711,"27934":1667,"27935":755,"27936":3187,"27937":584,"27938":10164,"27939":5390,"27940":7856,"27941":1607,"27942":3149,"27943":3258,"27944":17,"27945":4301,"27946":3407,"27947":8036,"27948":10284,"27949":8365,"27950":3872,"27951":6368,"27952":2798,"27953":7890,"27954":3028,"27955":1808,"27956":10764,"27957":1664,"27958":2554,"27959":4385,"27960":3329,"27961":1882,"27962":5842,"27963":3038,"27964":10282,"27965":5515,"27966":2924,"27967":2124,"27968":5875,"27969":7293,"27970":2122,"27971":3576,"27972":1194,"27973":1359,"27974":7217,"27975":8588,"27976":4631,"27977":9703,"27978":8785,"27979":9869,"27980":4674,"27981":8175,"27982":1271,"27983":6088,"27984":4522,"27985":4751,"27986":5025,"27987":5982,"27988":2612,"27989":65,"27990":9641,"27991":5840,"27992":8948,"27993":8810,"27994":1703,"27995":773,"27996":506,"27997":5976,"27998":9154,"27999":2775,"28000":6763,"28001":8757,"28002":2530,"28003":352,"28004":6697,"28005":3837,"28006":2576,"28007":5846,"28008":4585,"28009":1544,"28010":3183,"28011":8976,"28012":6660,"28013":2190,"28014":2062,"28015":9612,"28016":6415,"28017":5601,"28018":9078,"28019":9530,"28020":3768,"28021":5812,"28022":10422,"28023":3740,"28024":2972,"28025":10371,"28026":6969,"28027":30,"28028":1027,"28029":545,"28030":10928,"28031":3074,"28032":1519,"28033":322,"28034":10527,"28035":4418,"28036":5062,"28037":2560,"28038":7495,"28039":5389,"28040":4439,"28041":4915,"28042":3024,"28043":4993,"28044":8090,"28045":601,"28046":8852,"28047":8523,"28048":3479,"28049":5178,"28050":1624,"28051":7601,"28052":4165,"28053":9907,"28054":10930,"28055":8406,"28056":1544,"28057":846,"28058":5247,"28059":7402,"28060":2738,"28061":2246,"28062":8593,"28063":1688,"28064":5661,"28065":10246,"28066":4984,"28067":4249,"28068":2174,"28069":2589,"28070":7451,"28071":342,"28072":9084,"28073":1654,"28074":2982,"28075":9829,"28076":7463,"28077":9863,"28078":982,"28079":618,"28080":1535,"28081":2606,"28082":897,"28083":10394,"28084":7038,"28085":9139,"28086":5226,"28087":3593,"28088":7418,"28089":8755,"28090":9386,"28091":8499,"28092":3426,"28093":5201,"28094":8572,"28095":7014,"28096":6128,"28097":780,"28098":3135,"28099":4783,"28100":5224,"28101":6014,"28102":8345,"28103":8054,"28104":3981,"28105":5907,"28106":2921,"28107":4750,"28108":267,"28109":5697,"28110":10666,"28111":5836,"28112":470,"28113":607,"28114":5531,"28115":5291,"28116":2561,"28117":7667,"28118":8990,"28119":4542,"28120":1203,"28121":1324,"28122":251,"28123":5486,"28124":6477,"28125":4442,"28126":8549,"28127":10728,"28128":5333,"28129":1245,"28130":10384,"28131":1348,"28132":3734,"28133":5141,"28134":6690,"28135":9989,"28136":2232,"28137":868,"28138":8200,"28139":4676,"28140":10839,"28141":4503,"28142":9866,"28143":4426,"28144":3309,"28145":5400,"28146":908,"28147":4888,"28148":1427,"28149":10805,"28150":6926,"28151":10672,"28152":9252,"28153":4880,"28154":7751,"28155":9781,"28156":9296,"28157":8122,"28158":240,"28159":529,"28160":722,"28161":1018,"28162":2093,"28163":8452,"28164":7106,"28165":8617,"28166":4076,"28167":7700,"28168":10850,"28169":6645,"28170":9900,"28171":1509,"28172":5836,"28173":10297,"28174":940,"28175":8889,"28176":10446,"28177":8540,"28178":2297,"28179":5710,"28180":5833,"28181":10844,"28182":5349,"28183":1764,"28184":79,"28185":7669,"28186":9796,"28187":5590,"28188":8313,"28189":6542,"28190":1418,"28191":6898,"28192":1411,"28193":1735,"28194":9174,"28195":10555,"28196":7030,"28197":1377,"28198":7439,"28199":6611,"28200":9778,"28201":268,"28202":4151,"28203":6048,"28204":3792,"28205":10671,"28206":1147,"28207":9641,"28208":10245,"28209":4206,"28210":3434,"28211":9510,"28212":80,"28213":8475,"28214":4326,"28215":503,"28216":10821,"28217":6597,"28218":1614,"28219":2880,"28220":5980,"28221":8873,"28222":8005,"28223":4515,"28224":10304,"28225":4594,"28226":2053,"28227":9302,"28228":6526,"28229":4470,"28230":8606,"28231":7210,"28232":10336,"28233":7919,"28234":4930,"28235":10452,"28236":3483,"28237":51,"28238":2710,"28239":7705,"28240":4282,"28241":9860,"28242":7524,"28243":617,"28244":10735,"28245":1450,"28246":8097,"28247":10509,"28248":4155,"28249":2413,"28250":6303,"28251":175,"28252":10069,"28253":7793,"28254":1875,"28255":7620,"28256":10824,"28257":5604,"28258":9995,"28259":3433,"28260":3643,"28261":5469,"28262":8103,"28263":5344,"28264":4993,"28265":8448,"28266":1438,"28267":2530,"28268":63,"28269":10166,"28270":2713,"28271":10612,"28272":2503,"28273":9460,"28274":10787,"28275":10298,"28276":9723,"28277":8969,"28278":7294,"28279":6804,"28280":6688,"28281":8794,"28282":2143,"28283":10766,"28284":10863,"28285":2535,"28286":3646,"28287":9847,"28288":8829,"28289":3866,"28290":6461,"28291":6084,"28292":7428,"28293":1756,"28294":7542,"28295":3128,"28296":1140,"28297":3982,"28298":10186,"28299":287,"28300":5562,"28301":2474,"28302":4008,"28303":6062,"28304":3575,"28305":6104,"28306":5509,"28307":1378,"28308":2037,"28309":9990,"28310":5098,"28311":5639,"28312":10157,"28313":2081,"28314":9936,"28315":3676,"28316":9475,"28317":7768,"28318":6441,"28319":851,"28320":1004,"28321":1009,"28322":6828,"28323":1709,"28324":9311,"28325":4075,"28326":8580,"28327":4725,"28328":1469,"28329":2572,"28330":10997,"28331":9657,"28332":8177,"28333":3449,"28334":8773,"28335":1145,"28336":2721,"28337":5622,"28338":8956,"28339":7332,"28340":10460,"28341":3165,"28342":10509,"28343":6382,"28344":9335,"28345":4019,"28346":9337,"28347":1892,"28348":6263,"28349":5205,"28350":2137,"28351":6444,"28352":5701,"28353":1568,"28354":6169,"28355":8249,"28356":5413,"28357":4530,"28358":4450,"28359":3067,"28360":3343,"28361":6777,"28362":1446,"28363":2905,"28364":10855,"28365":6983,"28366":3482,"28367":10927,"28368":2309,"28369":5115,"28370":8803,"28371":4797,"28372":10703,"28373":2634,"28374":2743,"28375":10718,"28376":9498,"28377":2868,"28378":4789,"28379":6321,"28380":3263,"28381":3066,"28382":10504,"28383":4293,"28384":4536,"28385":6141,"28386":6039,"28387":8610,"28388":5531,"28389":2880,"28390":3837,"28391":8010,"28392":4801,"28393":2733,"28394":1911,"28395":8531,"28396":852,"28397":9860,"28398":8084,"28399":10080,"28400":1625,"28401":3016,"28402":5555,"28403":9243,"28404":8543,"28405":9922,"28406":8611,"28407":9917,"28408":8346,"28409":6717,"28410":9479,"28411":7993,"28412":3339,"28413":2551,"28414":1434,"28415":9545,"28416":6626,"28417":7059,"28418":5440,"28419":4795,"28420":4032,"28421":3636,"28422":9079,"28423":7155,"28424":1225,"28425":1206,"28426":3723,"28427":250,"28428":9674,"28429":5681,"28430":10931,"28431":6147,"28432":7277,"28433":6411,"28434":7722,"28435":5633,"28436":5107,"28437":8299,"28438":9205,"28439":8853,"28440":8905,"28441":5681,"28442":2296,"28443":1831,"28444":3202,"28445":4756,"28446":373,"28447":5004,"28448":3963,"28449":3146,"28450":7222,"28451":5634,"28452":3960,"28453":661,"28454":7779,"28455":9964,"28456":10202,"28457":4062,"28458":8924,"28459":3618,"28460":10209,"28461":4345,"28462":8389,"28463":10700,"28464":10454,"28465":7355,"28466":4816,"28467":10005,"28468":2899,"28469":5696,"28470":9622,"28471":4372,"28472":10415,"28473":3260,"28474":5846,"28475":8059,"28476":1372,"28477":1847,"28478":8358,"28479":4055,"28480":2554,"28481":5354,"28482":9566,"28483":4435,"28484":6222,"28485":4045,"28486":8018,"28487":3216,"28488":5246,"28489":6409,"28490":6966,"28491":3139,"28492":10919,"28493":1671,"28494":1416,"28495":40,"28496":3598,"28497":8565,"28498":6584,"28499":1027,"28500":292,"28501":3209,"28502":7296,"28503":3098,"28504":1970,"28505":7594,"28506":177,"28507":5051,"28508":3935,"28509":6007,"28510":1892,"28511":1165,"28512":9763,"28513":5938,"28514":9351,"28515":10823,"28516":1672,"28517":4457,"28518":4477,"28519":4811,"28520":3723,"28521":588,"28522":1233,"28523":5734,"28524":236,"28525":3532,"28526":5971,"28527":8145,"28528":8779,"28529":5610,"28530":6963,"28531":9897,"28532":1910,"28533":9174,"28534":7662,"28535":4555,"28536":591,"28537":3503,"28538":1428,"28539":5689,"28540":10694,"28541":4225,"28542":5850,"28543":2003,"28544":8941,"28545":8766,"28546":10741,"28547":4151,"28548":8046,"28549":8820,"28550":4149,"28551":2067,"28552":4110,"28553":2489,"28554":4545,"28555":966,"28556":5125,"28557":9538,"28558":9795,"28559":4392,"28560":2265,"28561":2538,"28562":8040,"28563":7027,"28564":6483,"28565":10472,"28566":4704,"28567":4734,"28568":3057,"28569":3476,"28570":3513,"28571":10913,"28572":10587,"28573":6306,"28574":2110,"28575":235,"28576":3353,"28577":703,"28578":3919,"28579":1697,"28580":4822,"28581":10348,"28582":10935,"28583":6965,"28584":7006,"28585":5281,"28586":6324,"28587":8086,"28588":2175,"28589":5348,"28590":1887,"28591":6159,"28592":834,"28593":4128,"28594":6630,"28595":1414,"28596":127,"28597":6827,"28598":417,"28599":1009,"28600":9834,"28601":2399,"28602":7767,"28603":1818,"28604":10375,"28605":5585,"28606":7566,"28607":4985,"28608":2341,"28609":8488,"28610":7924,"28611":122,"28612":4378,"28613":8952,"28614":4022,"28615":1688,"28616":788,"28617":9206,"28618":1190,"28619":9877,"28620":6550,"28621":9282,"28622":5252,"28623":9883,"28624":6757,"28625":4207,"28626":5275,"28627":2958,"28628":7498,"28629":2387,"28630":2549,"28631":10842,"28632":9073,"28633":5145,"28634":4372,"28635":1605,"28636":10536,"28637":6893,"28638":3031,"28639":10388,"28640":6818,"28641":2248,"28642":7999,"28643":2132,"28644":6463,"28645":5497,"28646":10570,"28647":6290,"28648":8342,"28649":1074,"28650":487,"28651":3278,"28652":763,"28653":10489,"28654":3148,"28655":1987,"28656":4557,"28657":8316,"28658":705,"28659":1406,"28660":8812,"28661":6100,"28662":6414,"28663":5162,"28664":8345,"28665":5750,"28666":8486,"28667":3924,"28668":5631,"28669":1779,"28670":6705,"28671":1799,"28672":2591,"28673":4329,"28674":5799,"28675":2215,"28676":1906,"28677":5822,"28678":6819,"28679":7619,"28680":9806,"28681":5226,"28682":4213,"28683":4137,"28684":5269,"28685":4612,"28686":9974,"28687":6594,"28688":4530,"28689":4743,"28690":2436,"28691":10391,"28692":1768,"28693":2785,"28694":8870,"28695":7672,"28696":5595,"28697":8260,"28698":10077,"28699":1079,"28700":10842,"28701":7368,"28702":5290,"28703":9062,"28704":7140,"28705":778,"28706":9264,"28707":5410,"28708":4378,"28709":8495,"28710":1501,"28711":10414,"28712":9530,"28713":5500,"28714":4470,"28715":4534,"28716":4574,"28717":101,"28718":3631,"28719":4876,"28720":8617,"28721":8142,"28722":2631,"28723":2169,"28724":9509,"28725":7649,"28726":6674,"28727":1544,"28728":8365,"28729":2506,"28730":98,"28731":9205,"28732":6183,"28733":2574,"28734":6693,"28735":2761,"28736":9818,"28737":6113,"28738":10467,"28739":2481,"28740":506,"28741":7220,"28742":10003,"28743":527,"28744":6513,"28745":1125,"28746":282,"28747":4549,"28748":9634,"28749":7611,"28750":9734,"28751":4644,"28752":9371,"28753":4437,"28754":1875,"28755":5205,"28756":1684,"28757":4413,"28758":7581,"28759":5279,"28760":9289,"28761":6440,"28762":602,"28763":8170,"28764":10290,"28765":8469,"28766":4981,"28767":970,"28768":7372,"28769":3041,"28770":2425,"28771":4506,"28772":4397,"28773":6126,"28774":10288,"28775":1545,"28776":7924,"28777":1537,"28778":2615,"28779":8986,"28780":6712,"28781":7893,"28782":6712,"28783":10719,"28784":6755,"28785":1502,"28786":10076,"28787":9699,"28788":4106,"28789":7143,"28790":3057,"28791":4889,"28792":2410,"28793":7540,"28794":7559,"28795":8893,"28796":1740,"28797":3582,"28798":2579,"28799":8487,"28800":5428,"28801":9034,"28802":10241,"28803":6573,"28804":6013,"28805":7082,"28806":317,"28807":7067,"28808":7945,"28809":9629,"28810":9051,"28811":3932,"28812":8509,"28813":4486,"28814":944,"28815":8000,"28816":6706,"28817":2868,"28818":2305,"28819":5599,"28820":267,"28821":6950,"28822":6884,"28823":5816,"28824":5996,"28825":3833,"28826":911,"28827":837,"28828":2588,"28829":9996,"28830":10436,"28831":1419,"28832":3073,"28833":4325,"28834":4570,"28835":2016,"28836":3503,"28837":5752,"28838":5831,"28839":9211,"28840":888,"28841":4560,"28842":5190,"28843":10057,"28844":8391,"28845":1538,"28846":8529,"28847":3371,"28848":8828,"28849":1743,"28850":4411,"28851":6505,"28852":5528,"28853":9290,"28854":1027,"28855":6952,"28856":10236,"28857":10493,"28858":3621,"28859":617,"28860":4469,"28861":8319,"28862":2764,"28863":10507,"28864":682,"28865":9540,"28866":3986,"28867":3038,"28868":1598,"28869":2244,"28870":2239,"28871":6859,"28872":2213,"28873":4863,"28874":4835,"28875":5135,"28876":10442,"28877":4543,"28878":5534,"28879":1725,"28880":10347,"28881":5130,"28882":2607,"28883":9834,"28884":3045,"28885":397,"28886":7150,"28887":9057,"28888":285,"28889":8287,"28890":7218,"28891":6919,"28892":1732,"28893":3398,"28894":2799,"28895":210,"28896":3222,"28897":896,"28898":10946,"28899":4080,"28900":7006,"28901":7707,"28902":9077,"28903":9869,"28904":10864,"28905":7841,"28906":6410,"28907":5902,"28908":5072,"28909":564,"28910":2703,"28911":9838,"28912":4899,"28913":219,"28914":7841,"28915":1040,"28916":1163,"28917":3428,"28918":4968,"28919":6726,"28920":2492,"28921":8068,"28922":10076,"28923":8969,"28924":5769,"28925":1448,"28926":5653,"28927":9127,"28928":10542,"28929":448,"28930":4652,"28931":10572,"28932":10057,"28933":8655,"28934":6486,"28935":6836,"28936":10210,"28937":1320,"28938":3316,"28939":2023,"28940":697,"28941":6022,"28942":535,"28943":2255,"28944":10060,"28945":3373,"28946":1327,"28947":3499,"28948":1377,"28949":837,"28950":2627,"28951":1443,"28952":9170,"28953":3601,"28954":6302,"28955":6101,"28956":10288,"28957":6573,"28958":3150,"28959":7340,"28960":5695,"28961":3894,"28962":1206,"28963":1502,"28964":788,"28965":3773,"28966":7986,"28967":5163,"28968":3960,"28969":5241,"28970":6530,"28971":9042,"28972":8438,"28973":10697,"28974":8720,"28975":4515,"28976":9226,"28977":3927,"28978":211,"28979":5012,"28980":1663,"28981":6263,"28982":9876,"28983":10984,"28984":9475,"28985":6853,"28986":8918,"28987":1789,"28988":7831,"28989":3200,"28990":968,"28991":2784,"28992":8332,"28993":9714,"28994":3362,"28995":10326,"28996":8758,"28997":2496,"28998":1190,"28999":7756,"29000":1044,"29001":7661,"29002":6623,"29003":9137,"29004":723,"29005":5809,"29006":3957,"29007":6785,"29008":2290,"29009":9505,"29010":7316,"29011":3969,"29012":9196,"29013":2194,"29014":10843,"29015":10244,"29016":10565,"29017":434,"29018":228,"29019":2439,"29020":1583,"29021":3672,"29022":2198,"29023":5816,"29024":2381,"29025":6877,"29026":7189,"29027":3743,"29028":2176,"29029":9260,"29030":3904,"29031":1414,"29032":4881,"29033":2006,"29034":6785,"29035":1916,"29036":9542,"29037":7963,"29038":6122,"29039":6057,"29040":8565,"29041":8107,"29042":8435,"29043":8700,"29044":3181,"29045":1513,"29046":3963,"29047":7957,"29048":979,"29049":8152,"29050":1485,"29051":7298,"29052":7425,"29053":7097,"29054":4630,"29055":5363,"29056":1154,"29057":2874,"29058":5092,"29059":10702,"29060":339,"29061":6085,"29062":10508,"29063":1703,"29064":6662,"29065":1698,"29066":6833,"29067":3698,"29068":633,"29069":10271,"29070":10502,"29071":1156,"29072":253,"29073":7113,"29074":6317,"29075":2053,"29076":4796,"29077":2624,"29078":7497,"29079":3211,"29080":5319,"29081":9529,"29082":2225,"29083":2988,"29084":9677,"29085":8377,"29086":5088,"29087":10435,"29088":6320,"29089":1398,"29090":929,"29091":3393,"29092":4736,"29093":5570,"29094":8642,"29095":2452,"29096":3663,"29097":5450,"29098":7311,"29099":5479,"29100":7946,"29101":5076,"29102":7628,"29103":8736,"29104":5222,"29105":107,"29106":41,"29107":4032,"29108":5575,"29109":3978,"29110":5349,"29111":6583,"29112":2570,"29113":3825,"29114":1548,"29115":9044,"29116":319,"29117":7135,"29118":4507,"29119":8715,"29120":4442,"29121":4211,"29122":3661,"29123":8655,"29124":7239,"29125":472,"29126":4259,"29127":10311,"29128":10809,"29129":6661,"29130":4569,"29131":5096,"29132":1712,"29133":5293,"29134":723,"29135":857,"29136":6532,"29137":1912,"29138":8607,"29139":9593,"29140":814,"29141":8074,"29142":3704,"29143":3423,"29144":3394,"29145":494,"29146":449,"29147":5950,"29148":8579,"29149":4325,"29150":3022,"29151":9601,"29152":9730,"29153":3050,"29154":1400,"29155":103,"29156":1120,"29157":10092,"29158":6619,"29159":5147,"29160":1704,"29161":7815,"29162":5832,"29163":14,"29164":3439,"29165":9307,"29166":10918,"29167":10242,"29168":6513,"29169":2529,"29170":5294,"29171":9223,"29172":1955,"29173":4560,"29174":6481,"29175":4860,"29176":3310,"29177":7463,"29178":6986,"29179":6483,"29180":10759,"29181":3682,"29182":8453,"29183":5123,"29184":10819,"29185":3218,"29186":2289,"29187":8528,"29188":7202,"29189":5778,"29190":838,"29191":9159,"29192":7802,"29193":4221,"29194":1172,"29195":6434,"29196":8244,"29197":7797,"29198":3213,"29199":6089,"29200":9800,"29201":9550,"29202":10470,"29203":8159,"29204":9003,"29205":5946,"29206":8311,"29207":6554,"29208":3702,"29209":8315,"29210":5481,"29211":3981,"29212":9746,"29213":4541,"29214":2163,"29215":120,"29216":1296,"29217":67,"29218":799,"29219":8770,"29220":8302,"29221":2552,"29222":841,"29223":7506,"29224":4530,"29225":5963,"29226":8707,"29227":1122,"29228":2111,"29229":4314,"29230":983,"29231":5250,"29232":3452,"29233":6011,"29234":1013,"29235":6146,"29236":369,"29237":7639,"29238":5651,"29239":3172,"29240":10712,"29241":7691,"29242":7496,"29243":6099,"29244":7506,"29245":226,"29246":882,"29247":7473,"29248":2747,"29249":4001,"29250":6528,"29251":734,"29252":9934,"29253":5246,"29254":9931,"29255":9966,"29256":4463,"29257":8030,"29258":9284,"29259":2141,"29260":1675,"29261":5295,"29262":4006,"29263":6340,"29264":8460,"29265":6410,"29266":32,"29267":6943,"29268":3635,"29269":5680,"29270":7659,"29271":10045,"29272":2235,"29273":4139,"29274":9784,"29275":7938,"29276":10628,"29277":6861,"29278":3571,"29279":5161,"29280":1182,"29281":5294,"29282":4213,"29283":263,"29284":7308,"29285":9836,"29286":6010,"29287":5344,"29288":5471,"29289":10775,"29290":8786,"29291":4686,"29292":9275,"29293":962,"29294":7854,"29295":4136,"29296":7913,"29297":840,"29298":243,"29299":1581,"29300":5603,"29301":10439,"29302":7708,"29303":6503,"29304":10780,"29305":4796,"29306":1434,"29307":9978,"29308":3860,"29309":9385,"29310":1221,"29311":6745,"29312":9848,"29313":5813,"29314":5722,"29315":4425,"29316":3106,"29317":247,"29318":10817,"29319":107,"29320":3061,"29321":3118,"29322":3010,"29323":718,"29324":10629,"29325":1931,"29326":3995,"29327":9166,"29328":3143,"29329":6113,"29330":4514,"29331":4403,"29332":357,"29333":8801,"29334":2683,"29335":8020,"29336":8283,"29337":4957,"29338":7320,"29339":4441,"29340":8263,"29341":1564,"29342":7482,"29343":8665,"29344":8451,"29345":4298,"29346":5692,"29347":2154,"29348":2728,"29349":8697,"29350":7377,"29351":2336,"29352":10844,"29353":7473,"29354":8307,"29355":10370,"29356":618,"29357":7419,"29358":1832,"29359":9185,"29360":9795,"29361":7395,"29362":2872,"29363":10345,"29364":7261,"29365":7024,"29366":6196,"29367":2867,"29368":1461,"29369":5479,"29370":9202,"29371":5023,"29372":8704,"29373":5881,"29374":8852,"29375":6547,"29376":10492,"29377":5821,"29378":2733,"29379":9889,"29380":10852,"29381":4625,"29382":9633,"29383":4961,"29384":9831,"29385":10652,"29386":10977,"29387":6779,"29388":2079,"29389":1685,"29390":2511,"29391":4858,"29392":7451,"29393":8530,"29394":2492,"29395":7145,"29396":7030,"29397":4894,"29398":3250,"29399":8722,"29400":8251,"29401":5344,"29402":6800,"29403":10969,"29404":4448,"29405":281,"29406":1724,"29407":5393,"29408":3602,"29409":6620,"29410":6772,"29411":2416,"29412":9725,"29413":7951,"29414":899,"29415":9879,"29416":3836,"29417":9600,"29418":4858,"29419":4595,"29420":4244,"29421":5142,"29422":1177,"29423":3160,"29424":7507,"29425":9849,"29426":10111,"29427":975,"29428":5568,"29429":2630,"29430":6401,"29431":2837,"29432":6755,"29433":4338,"29434":1352,"29435":7210,"29436":7613,"29437":8715,"29438":229,"29439":10154,"29440":1526,"29441":7585,"29442":4807,"29443":588,"29444":3460,"29445":7908,"29446":9664,"29447":1800,"29448":6401,"29449":3302,"29450":6536,"29451":8784,"29452":9538,"29453":4030,"29454":8183,"29455":8841,"29456":1013,"29457":8624,"29458":10204,"29459":10615,"29460":6698,"29461":9984,"29462":8785,"29463":6377,"29464":9841,"29465":4923,"29466":4650,"29467":8172,"29468":948,"29469":1514,"29470":1580,"29471":6947,"29472":10905,"29473":4280,"29474":10973,"29475":730,"29476":7813,"29477":8506,"29478":3615,"29479":5941,"29480":6582,"29481":9432,"29482":10696,"29483":8741,"29484":2176,"29485":1451,"29486":8498,"29487":7802,"29488":91,"29489":8161,"29490":3850,"29491":1565,"29492":9794,"29493":8108,"29494":10699,"29495":4543,"29496":1117,"29497":1332,"29498":5754,"29499":5541,"29500":3263,"29501":5903,"29502":1237,"29503":4859,"29504":6308,"29505":8067,"29506":3682,"29507":1089,"29508":450,"29509":5230,"29510":2706,"29511":4462,"29512":3260,"29513":2668,"29514":9399,"29515":4642,"29516":8395,"29517":5432,"29518":1423,"29519":10994,"29520":8077,"29521":3118,"29522":688,"29523":8120,"29524":6631,"29525":6382,"29526":5195,"29527":7992,"29528":8744,"29529":6222,"29530":9704,"29531":1724,"29532":10716,"29533":2336,"29534":8658,"29535":6976,"29536":4864,"29537":7581,"29538":9925,"29539":616,"29540":4846,"29541":6367,"29542":5988,"29543":10326,"29544":7290,"29545":3509,"29546":9262,"29547":7973,"29548":1940,"29549":6651,"29550":1233,"29551":921,"29552":495,"29553":802,"29554":1128,"29555":5829,"29556":9721,"29557":5880,"29558":1051,"29559":6021,"29560":2600,"29561":250,"29562":3060,"29563":5714,"29564":6451,"29565":3254,"29566":5071,"29567":1514,"29568":6783,"29569":8272,"29570":3619,"29571":8409,"29572":8015,"29573":7164,"29574":1820,"29575":1449,"29576":1126,"29577":3408,"29578":6896,"29579":4681,"29580":10716,"29581":7643,"29582":1957,"29583":4631,"29584":761,"29585":10113,"29586":2305,"29587":8665,"29588":8624,"29589":2877,"29590":3116,"29591":5978,"29592":8822,"29593":10322,"29594":4760,"29595":9539,"29596":3410,"29597":2202,"29598":4241,"29599":9863,"29600":3882,"29601":9833,"29602":10280,"29603":7093,"29604":8113,"29605":6001,"29606":8737,"29607":8568,"29608":2555,"29609":5846,"29610":3264,"29611":2578,"29612":8568,"29613":4365,"29614":1749,"29615":10664,"29616":4432,"29617":3505,"29618":10733,"29619":2825,"29620":10536,"29621":10742,"29622":589,"29623":7520,"29624":10587,"29625":6732,"29626":10600,"29627":6452,"29628":8670,"29629":283,"29630":7441,"29631":8690,"29632":3449,"29633":3160,"29634":10260,"29635":2077,"29636":9869,"29637":5573,"29638":4808,"29639":2112,"29640":4314,"29641":1275,"29642":9497,"29643":9149,"29644":7094,"29645":5603,"29646":3722,"29647":3638,"29648":10263,"29649":10090,"29650":5841,"29651":8318,"29652":212,"29653":4960,"29654":10654,"29655":1560,"29656":2227,"29657":3552,"29658":7318,"29659":3351,"29660":9936,"29661":6002,"29662":10402,"29663":8590,"29664":1102,"29665":8657,"29666":5611,"29667":2881,"29668":8186,"29669":9655,"29670":4323,"29671":6681,"29672":7974,"29673":9235,"29674":5343,"29675":4546,"29676":9637,"29677":10758,"29678":5480,"29679":4046,"29680":9978,"29681":2205,"29682":4137,"29683":3876,"29684":816,"29685":10263,"29686":2468,"29687":1616,"29688":4410,"29689":10721,"29690":9305,"29691":3661,"29692":9079,"29693":6647,"29694":3597,"29695":1920,"29696":2231,"29697":2177,"29698":9833,"29699":2413,"29700":3862,"29701":627,"29702":4310,"29703":336,"29704":5351,"29705":7875,"29706":7435,"29707":8613,"29708":8273,"29709":8753,"29710":7909,"29711":3992,"29712":8429,"29713":7236,"29714":10362,"29715":2010,"29716":9214,"29717":10409,"29718":6736,"29719":5443,"29720":1095,"29721":8992,"29722":8367,"29723":2942,"29724":8175,"29725":6401,"29726":4799,"29727":1625,"29728":10865,"29729":10851,"29730":7350,"29731":2563,"29732":6980,"29733":3080,"29734":6893,"29735":2963,"29736":4718,"29737":3485,"29738":7219,"29739":2047,"29740":7124,"29741":10522,"29742":4535,"29743":91,"29744":10373,"29745":3539,"29746":598,"29747":4787,"29748":1877,"29749":10472,"29750":2038,"29751":4071,"29752":10047,"29753":1803,"29754":6613,"29755":3407,"29756":1599,"29757":9054,"29758":2147,"29759":3272,"29760":6567,"29761":10877,"29762":2071,"29763":10318,"29764":989,"29765":1363,"29766":5899,"29767":2115,"29768":4294,"29769":401,"29770":8854,"29771":9775,"29772":10231,"29773":4335,"29774":4848,"29775":5030,"29776":4677,"29777":7348,"29778":5082,"29779":8220,"29780":2872,"29781":3773,"29782":8315,"29783":6319,"29784":8192,"29785":7538,"29786":6950,"29787":6017,"29788":4040,"29789":9572,"29790":7360,"29791":903,"29792":527,"29793":2434,"29794":1346,"29795":10087,"29796":5687,"29797":292,"29798":3720,"29799":7456,"29800":7448,"29801":10901,"29802":1356,"29803":7526,"29804":5093,"29805":1113,"29806":8074,"29807":3861,"29808":1456,"29809":1711,"29810":5098,"29811":8626,"29812":7665,"29813":1480,"29814":9149,"29815":2481,"29816":3000,"29817":3362,"29818":10577,"29819":3274,"29820":7512,"29821":3204,"29822":1360,"29823":7024,"29824":5166,"29825":5525,"29826":7278,"29827":3950,"29828":1201,"29829":4721,"29830":10975,"29831":7474,"29832":9825,"29833":8523,"29834":6969,"29835":7380,"29836":2098,"29837":4462,"29838":10134,"29839":5597,"29840":8712,"29841":4494,"29842":6742,"29843":4500,"29844":74,"29845":7262,"29846":3947,"29847":67,"29848":2288,"29849":10449,"29850":8506,"29851":8605,"29852":10298,"29853":5423,"29854":1647,"29855":7475,"29856":1208,"29857":1780,"29858":10832,"29859":4184,"29860":8864,"29861":6581,"29862":4201,"29863":6357,"29864":562,"29865":5525,"29866":7116,"29867":4917,"29868":7414,"29869":951,"29870":9521,"29871":3443,"29872":3777,"29873":4977,"29874":5552,"29875":6290,"29876":37,"29877":9004,"29878":3616,"29879":1420,"29880":9143,"29881":7956,"29882":8332,"29883":7760,"29884":282,"29885":5338,"29886":4200,"29887":2462,"29888":1212,"29889":4995,"29890":4125,"29891":6681,"29892":8708,"29893":5308,"29894":9309,"29895":6883,"29896":7806,"29897":4109,"29898":4318,"29899":10613,"29900":7396,"29901":1449,"29902":10256,"29903":10161,"29904":10526,"29905":8671,"29906":9250,"29907":6903,"29908":7144,"29909":3857,"29910":2607,"29911":2298,"29912":8918,"29913":3432,"29914":10136,"29915":3086,"29916":4117,"29917":5977,"29918":476,"29919":5727,"29920":9808,"29921":9044,"29922":6479,"29923":8161,"29924":151,"29925":8592,"29926":2903,"29927":8843,"29928":4819,"29929":3536,"29930":4396,"29931":10122,"29932":5993,"29933":4018,"29934":8860,"29935":2412,"29936":3231,"29937":6329,"29938":4503,"29939":1836,"29940":1112,"29941":10339,"29942":4114,"29943":8621,"29944":5723,"29945":2530,"29946":8978,"29947":10451,"29948":5744,"29949":1426,"29950":2369,"29951":10975,"29952":10124,"29953":3643,"29954":1321,"29955":5840,"29956":6654,"29957":485,"29958":3184,"29959":10425,"29960":7776,"29961":3255,"29962":2240,"29963":9619,"29964":9561,"29965":2993,"29966":8685,"29967":4170,"29968":9827,"29969":1737,"29970":5216,"29971":10234,"29972":5842,"29973":1036,"29974":8701,"29975":7301,"29976":5262,"29977":769,"29978":8817,"29979":6533,"29980":3286,"29981":5059,"29982":3201,"29983":1432,"29984":9057,"29985":8577,"29986":10436,"29987":10263,"29988":2336,"29989":7153,"29990":6849,"29991":6086,"29992":5613,"29993":7465,"29994":4106,"29995":3945,"29996":8351,"29997":4195,"29998":4607,"29999":7810,"30000":9941,"30001":1270,"30002":5590,"30003":3661,"30004":2243,"30005":9422,"30006":10942,"30007":867,"30008":8865,"30009":9165,"30010":5296,"30011":6702,"30012":4774,"30013":8038,"30014":7878,"30015":1480,"30016":2475,"30017":4795,"30018":7583,"30019":3435,"30020":6841,"30021":4002,"30022":8474,"30023":47,"30024":10804,"30025":8602,"30026":3591,"30027":1384,"30028":7842,"30029":184,"30030":1939,"30031":6114,"30032":7744,"30033":5949,"30034":7447,"30035":3816,"30036":3740,"30037":10518,"30038":2194,"30039":3841,"30040":1640,"30041":3811,"30042":10811,"30043":3568,"30044":6788,"30045":3367,"30046":5156,"30047":5820,"30048":6293,"30049":4256,"30050":933,"30051":5689,"30052":10552,"30053":8460,"30054":9394,"30055":6904,"30056":6588,"30057":1818,"30058":4431,"30059":4218,"30060":6655,"30061":5057,"30062":2626,"30063":7047,"30064":4331,"30065":6977,"30066":9441,"30067":2366,"30068":4947,"30069":4116,"30070":1218,"30071":10253,"30072":3542,"30073":2902,"30074":620,"30075":10190,"30076":7490,"30077":4660,"30078":2844,"30079":1550,"30080":10584,"30081":10607,"30082":6161,"30083":10155,"30084":6130,"30085":1642,"30086":3604,"30087":10963,"30088":2769,"30089":3973,"30090":1713,"30091":10843,"30092":6907,"30093":1915,"30094":9706,"30095":4728,"30096":8289,"30097":1672,"30098":5392,"30099":1959,"30100":9466,"30101":5935,"30102":3783,"30103":3829,"30104":3241,"30105":1738,"30106":10318,"30107":5000,"30108":1606,"30109":10133,"30110":10819,"30111":3208,"30112":9485,"30113":1417,"30114":6174,"30115":8613,"30116":8371,"30117":4640,"30118":3969,"30119":3030,"30120":8486,"30121":9223,"30122":1792,"30123":7408,"30124":7322,"30125":288,"30126":2829,"30127":2574,"30128":985,"30129":4577,"30130":703,"30131":781,"30132":8884,"30133":5215,"30134":74,"30135":5102,"30136":3156,"30137":307,"30138":1107,"30139":3510,"30140":6587,"30141":4353,"30142":8429,"30143":3187,"30144":5098,"30145":2542,"30146":1723,"30147":8125,"30148":426,"30149":2430,"30150":6606,"30151":5993,"30152":9749,"30153":5884,"30154":9292,"30155":2455,"30156":2477,"30157":2001,"30158":8735,"30159":4190,"30160":6238,"30161":9050,"30162":8248,"30163":10596,"30164":3954,"30165":3876,"30166":7228,"30167":3951,"30168":8357,"30169":10379,"30170":8526,"30171":10237,"30172":4692,"30173":8786,"30174":5903,"30175":5625,"30176":3158,"30177":4520,"30178":5055,"30179":7828,"30180":8026,"30181":6901,"30182":1244,"30183":9059,"30184":10213,"30185":5451,"30186":8382,"30187":801,"30188":6784,"30189":3349,"30190":3907,"30191":6678,"30192":7796,"30193":3154,"30194":671,"30195":3084,"30196":54,"30197":9677,"30198":8394,"30199":8128,"30200":7520,"30201":8639,"30202":6195,"30203":5897,"30204":4291,"30205":10173,"30206":7920,"30207":6429,"30208":491,"30209":1559,"30210":10239,"30211":2246,"30212":10959,"30213":4378,"30214":10756,"30215":6681,"30216":8031,"30217":10903,"30218":7665,"30219":6043,"30220":4407,"30221":4738,"30222":5967,"30223":302,"30224":10893,"30225":1423,"30226":6853,"30227":4104,"30228":8309,"30229":1813,"30230":1671,"30231":5474,"30232":7246,"30233":2842,"30234":6675,"30235":10561,"30236":1090,"30237":3566,"30238":5769,"30239":1741,"30240":9963,"30241":10356,"30242":10072,"30243":2217,"30244":5362,"30245":5872,"30246":1949,"30247":7183,"30248":3632,"30249":2962,"30250":8421,"30251":800,"30252":5736,"30253":2482,"30254":2138,"30255":560,"30256":10989,"30257":6299,"30258":8068,"30259":7494,"30260":3173,"30261":1139,"30262":5492,"30263":6406,"30264":6895,"30265":9025,"30266":4029,"30267":8745,"30268":564,"30269":455,"30270":7423,"30271":10476,"30272":7229,"30273":3890,"30274":8447,"30275":7212,"30276":2274,"30277":10455,"30278":1477,"30279":5944,"30280":8016,"30281":10184,"30282":1936,"30283":2137,"30284":9477,"30285":5210,"30286":4093,"30287":7100,"30288":10263,"30289":1012,"30290":6304,"30291":10827,"30292":6174,"30293":8745,"30294":10448,"30295":6547,"30296":684,"30297":10554,"30298":6696,"30299":4142,"30300":1134,"30301":2317,"30302":5397,"30303":7795,"30304":8113,"30305":10011,"30306":2419,"30307":4579,"30308":313,"30309":8822,"30310":6169,"30311":4171,"30312":1895,"30313":7897,"30314":7361,"30315":7138,"30316":5665,"30317":10477,"30318":6030,"30319":8211,"30320":8035,"30321":2269,"30322":4000,"30323":9605,"30324":7711,"30325":10652,"30326":1937,"30327":8593,"30328":1742,"30329":3349,"30330":4938,"30331":9042,"30332":2771,"30333":9132,"30334":3515,"30335":4380,"30336":2412,"30337":10023,"30338":5670,"30339":708,"30340":5833,"30341":2722,"30342":7344,"30343":5061,"30344":9113,"30345":2790,"30346":9106,"30347":7076,"30348":7991,"30349":6130,"30350":6350,"30351":8961,"30352":7931,"30353":427,"30354":1068,"30355":264,"30356":2270,"30357":1605,"30358":9545,"30359":1345,"30360":5345,"30361":4605,"30362":5412,"30363":953,"30364":1976,"30365":4612,"30366":4800,"30367":4933,"30368":6785,"30369":10280,"30370":8398,"30371":6909,"30372":4350,"30373":10725,"30374":6865,"30375":10637,"30376":1531,"30377":9330,"30378":1323,"30379":4246,"30380":9594,"30381":2641,"30382":6527,"30383":5749,"30384":1349,"30385":7004,"30386":9269,"30387":8810,"30388":9139,"30389":989,"30390":8795,"30391":3262,"30392":4857,"30393":1959,"30394":2224,"30395":2251,"30396":985,"30397":6249,"30398":4684,"30399":6770,"30400":9395,"30401":3106,"30402":2338,"30403":6573,"30404":1988,"30405":5915,"30406":1106,"30407":10710,"30408":7497,"30409":5470,"30410":8644,"30411":4253,"30412":4687,"30413":8445,"30414":209,"30415":9913,"30416":921,"30417":2229,"30418":3730,"30419":1619,"30420":3423,"30421":4990,"30422":697,"30423":7763,"30424":2328,"30425":1678,"30426":10125,"30427":8831,"30428":9438,"30429":4883,"30430":9176,"30431":8958,"30432":8968,"30433":2559,"30434":3038,"30435":583,"30436":120,"30437":4743,"30438":10275,"30439":4151,"30440":10175,"30441":6395,"30442":36,"30443":3182,"30444":3832,"30445":1209,"30446":7303,"30447":4233,"30448":4979,"30449":2720,"30450":10738,"30451":6382,"30452":3668,"30453":1447,"30454":9952,"30455":8667,"30456":5020,"30457":1932,"30458":7294,"30459":4460,"30460":9867,"30461":5414,"30462":538,"30463":2354,"30464":5260,"30465":9414,"30466":6447,"30467":4947,"30468":3560,"30469":6813,"30470":1328,"30471":10635,"30472":5841,"30473":9476,"30474":10174,"30475":6457,"30476":5406,"30477":2232,"30478":8489,"30479":761,"30480":3483,"30481":2552,"30482":5100,"30483":10292,"30484":6021,"30485":7737,"30486":5712,"30487":6624,"30488":5125,"30489":162,"30490":994,"30491":10153,"30492":5304,"30493":10153,"30494":1240,"30495":9113,"30496":10786,"30497":10254,"30498":1615,"30499":7646,"30500":7435,"30501":1129,"30502":7582,"30503":6937,"30504":9669,"30505":1843,"30506":10962,"30507":135,"30508":9174,"30509":4564,"30510":4158,"30511":6077,"30512":4425,"30513":1304,"30514":1218,"30515":7895,"30516":10800,"30517":1533,"30518":1857,"30519":9291,"30520":8181,"30521":10414,"30522":9280,"30523":3430,"30524":9238,"30525":10750,"30526":5593,"30527":244,"30528":10580,"30529":3062,"30530":3556,"30531":6188,"30532":4689,"30533":10258,"30534":8254,"30535":222,"30536":3864,"30537":1650,"30538":8058,"30539":3709,"30540":3828,"30541":5446,"30542":784,"30543":1425,"30544":4287,"30545":9168,"30546":9554,"30547":996,"30548":10690,"30549":7107,"30550":10618,"30551":1525,"30552":6316,"30553":833,"30554":1542,"30555":10595,"30556":2182,"30557":9509,"30558":10876,"30559":9043,"30560":5603,"30561":8167,"30562":10812,"30563":10986,"30564":3540,"30565":9423,"30566":6640,"30567":418,"30568":384,"30569":10470,"30570":3155,"30571":7861,"30572":4957,"30573":3884,"30574":1676,"30575":9134,"30576":5996,"30577":6360,"30578":8891,"30579":4967,"30580":10821,"30581":8684,"30582":7959,"30583":8362,"30584":7019,"30585":6353,"30586":174,"30587":985,"30588":9977,"30589":2108,"30590":5383,"30591":6472,"30592":10870,"30593":5196,"30594":10434,"30595":7671,"30596":5202,"30597":9090,"30598":9908,"30599":4746,"30600":803,"30601":3290,"30602":4510,"30603":464,"30604":3612,"30605":8335,"30606":5865,"30607":159,"30608":10978,"30609":5383,"30610":3813,"30611":10997,"30612":5319,"30613":4440,"30614":3900,"30615":1265,"30616":9747,"30617":4440,"30618":3596,"30619":8187,"30620":10879,"30621":1507,"30622":4295,"30623":912,"30624":4216,"30625":3366,"30626":4172,"30627":10912,"30628":270,"30629":9331,"30630":7415,"30631":8506,"30632":4009,"30633":6969,"30634":9011,"30635":739,"30636":6765,"30637":10193,"30638":8967,"30639":9859,"30640":8799,"30641":4384,"30642":2816,"30643":10317,"30644":1737,"30645":1126,"30646":4688,"30647":5837,"30648":5681,"30649":1885,"30650":4490,"30651":9390,"30652":2488,"30653":2769,"30654":3328,"30655":7171,"30656":4763,"30657":1087,"30658":5683,"30659":7587,"30660":7156,"30661":2369,"30662":8400,"30663":7376,"30664":3621,"30665":6169,"30666":5087,"30667":9516,"30668":6243,"30669":1970,"30670":10490,"30671":2458,"30672":6868,"30673":9551,"30674":9758,"30675":6366,"30676":5883,"30677":733,"30678":3919,"30679":4021,"30680":2836,"30681":9155,"30682":4897,"30683":2534,"30684":2662,"30685":131,"30686":8998,"30687":7870,"30688":1691,"30689":7280,"30690":770,"30691":6924,"30692":7095,"30693":7613,"30694":1852,"30695":1977,"30696":9857,"30697":10574,"30698":8917,"30699":1326,"30700":5072,"30701":4528,"30702":8457,"30703":10761,"30704":8921,"30705":10071,"30706":6218,"30707":10372,"30708":5275,"30709":3713,"30710":2690,"30711":5228,"30712":1939,"30713":221,"30714":9636,"30715":6475,"30716":7135,"30717":10746,"30718":8247,"30719":7111,"30720":3809,"30721":1740,"30722":6645,"30723":7835,"30724":1177,"30725":9430,"30726":3217,"30727":7279,"30728":5082,"30729":662,"30730":1169,"30731":3069,"30732":7686,"30733":10467,"30734":7328,"30735":7168,"30736":5820,"30737":5695,"30738":6771,"30739":9886,"30740":4293,"30741":1670,"30742":9921,"30743":7674,"30744":8219,"30745":2460,"30746":9232,"30747":8016,"30748":2367,"30749":679,"30750":4698,"30751":9862,"30752":4683,"30753":4539,"30754":544,"30755":4710,"30756":111,"30757":5930,"30758":3275,"30759":9658,"30760":5997,"30761":5039,"30762":4810,"30763":3606,"30764":1732,"30765":9812,"30766":136,"30767":10764,"30768":9390,"30769":7070,"30770":10964,"30771":7617,"30772":2948,"30773":10156,"30774":6622,"30775":4815,"30776":6264,"30777":6262,"30778":9938,"30779":3028,"30780":1436,"30781":1551,"30782":10553,"30783":2227,"30784":547,"30785":6384,"30786":6856,"30787":7268,"30788":1061,"30789":8268,"30790":7266,"30791":3765,"30792":483,"30793":5410,"30794":6584,"30795":10402,"30796":10204,"30797":378,"30798":115,"30799":6597,"30800":1513,"30801":9707,"30802":3089,"30803":5772,"30804":8555,"30805":4457,"30806":8685,"30807":2076,"30808":2167,"30809":6155,"30810":8791,"30811":4306,"30812":8648,"30813":9325,"30814":8637,"30815":2867,"30816":9626,"30817":1377,"30818":9413,"30819":7822,"30820":8907,"30821":113,"30822":10610,"30823":3765,"30824":7001,"30825":7608,"30826":3121,"30827":5222,"30828":5083,"30829":8887,"30830":5952,"30831":8017,"30832":6088,"30833":7504,"30834":6926,"30835":8045,"30836":5218,"30837":1036,"30838":5040,"30839":8998,"30840":174,"30841":8533,"30842":10461,"30843":7175,"30844":4495,"30845":4020,"30846":1008,"30847":7784,"30848":6753,"30849":8762,"30850":4402,"30851":10544,"30852":4722,"30853":5529,"30854":4501,"30855":7888,"30856":2677,"30857":6027,"30858":4085,"30859":1212,"30860":3181,"30861":8623,"30862":3482,"30863":3833,"30864":2298,"30865":7333,"30866":10783,"30867":3893,"30868":9862,"30869":9251,"30870":5076,"30871":8896,"30872":3474,"30873":4088,"30874":3846,"30875":9131,"30876":1453,"30877":1681,"30878":6816,"30879":3555,"30880":6482,"30881":8573,"30882":10804,"30883":4223,"30884":3245,"30885":2830,"30886":9588,"30887":5680,"30888":7151,"30889":4635,"30890":3459,"30891":3475,"30892":7393,"30893":2874,"30894":126,"30895":1302,"30896":6682,"30897":10753,"30898":473,"30899":10512,"30900":259,"30901":40,"30902":2040,"30903":8066,"30904":9414,"30905":10246,"30906":5122,"30907":4584,"30908":3002,"30909":1589,"30910":3491,"30911":10822,"30912":4887,"30913":4299,"30914":6319,"30915":497,"30916":4322,"30917":9390,"30918":3809,"30919":1897,"30920":10836,"30921":362,"30922":1727,"30923":2218,"30924":662,"30925":982,"30926":10587,"30927":8977,"30928":5514,"30929":2682,"30930":8389,"30931":6837,"30932":10473,"30933":3278,"30934":9959,"30935":1486,"30936":10676,"30937":5022,"30938":10937,"30939":8022,"30940":2519,"30941":7014,"30942":9078,"30943":163,"30944":10646,"30945":10795,"30946":6312,"30947":7427,"30948":4560,"30949":3612,"30950":3501,"30951":10715,"30952":290,"30953":6601,"30954":4624,"30955":9560,"30956":9999,"30957":9541,"30958":7718,"30959":1364,"30960":10977,"30961":6403,"30962":5620,"30963":5890,"30964":59,"30965":2079,"30966":9430,"30967":10193,"30968":633,"30969":1178,"30970":10891,"30971":2839,"30972":901,"30973":4138,"30974":9258,"30975":10869,"30976":8433,"30977":620,"30978":2612,"30979":5020,"30980":10166,"30981":5473,"30982":7885,"30983":6690,"30984":9700,"30985":8812,"30986":8679,"30987":10274,"30988":1224,"30989":4287,"30990":1527,"30991":4809,"30992":8241,"30993":10089,"30994":10153,"30995":754,"30996":8588,"30997":2642,"30998":6520,"30999":1098,"31000":6656,"31001":2357,"31002":7851,"31003":5093,"31004":3280,"31005":6906,"31006":2460,"31007":4224,"31008":7125,"31009":9410,"31010":157,"31011":3981,"31012":10795,"31013":7872,"31014":7217,"31015":8791,"31016":8602,"31017":1249,"31018":5397,"31019":1582,"31020":3480,"31021":1076,"31022":1090,"31023":3665,"31024":4228,"31025":7336,"31026":324,"31027":8723,"31028":507,"31029":4135,"31030":3693,"31031":7993,"31032":6056,"31033":7370,"31034":7740,"31035":4836,"31036":5956,"31037":5788,"31038":3501,"31039":5783,"31040":9602,"31041":9205,"31042":10248,"31043":2375,"31044":2758,"31045":5019,"31046":343,"31047":464,"31048":7195,"31049":1959,"31050":9198,"31051":5634,"31052":4017,"31053":6469,"31054":7060,"31055":6508,"31056":5865,"31057":7843,"31058":3829,"31059":259,"31060":7036,"31061":7573,"31062":3143,"31063":3834,"31064":2139,"31065":805,"31066":10221,"31067":1157,"31068":4668,"31069":1496,"31070":2901,"31071":2425,"31072":770,"31073":5710,"31074":10450,"31075":10617,"31076":2165,"31077":1936,"31078":10263,"31079":8946,"31080":10950,"31081":5966,"31082":2236,"31083":7333,"31084":3088,"31085":10132,"31086":8856,"31087":1440,"31088":4088,"31089":9921,"31090":9121,"31091":943,"31092":10304,"31093":532,"31094":3821,"31095":2055,"31096":9610,"31097":1936,"31098":3943,"31099":1193,"31100":2164,"31101":3539,"31102":9181,"31103":2607,"31104":9107,"31105":3951,"31106":167,"31107":8481,"31108":7869,"31109":2343,"31110":9503,"31111":425,"31112":9882,"31113":2433,"31114":4746,"31115":5063,"31116":5409,"31117":3762,"31118":10571,"31119":7788,"31120":10750,"31121":2503,"31122":1417,"31123":10341,"31124":10839,"31125":4425,"31126":10100,"31127":8069,"31128":9866,"31129":10019,"31130":845,"31131":10314,"31132":7659,"31133":7188,"31134":4925,"31135":10257,"31136":8474,"31137":242,"31138":2983,"31139":934,"31140":5854,"31141":3282,"31142":6487,"31143":2390,"31144":3169,"31145":7789,"31146":10964,"31147":1208,"31148":2861,"31149":215,"31150":1715,"31151":3742,"31152":2119,"31153":10558,"31154":6811,"31155":7333,"31156":336,"31157":10713,"31158":2199,"31159":6820,"31160":2456,"31161":3513,"31162":6874,"31163":214,"31164":10413,"31165":4425,"31166":1027,"31167":9003,"31168":10329,"31169":6087,"31170":8691,"31171":2723,"31172":8934,"31173":10995,"31174":4162,"31175":10814,"31176":2019,"31177":6962,"31178":3074,"31179":8120,"31180":10657,"31181":4415,"31182":4534,"31183":2661,"31184":8565,"31185":2509,"31186":5911,"31187":5598,"31188":5487,"31189":1037,"31190":1453,"31191":7250,"31192":2016,"31193":7254,"31194":1114,"31195":6641,"31196":7260,"31197":8879,"31198":118,"31199":7330,"31200":2186,"31201":3214,"31202":8939,"31203":7662,"31204":6955,"31205":5822,"31206":612,"31207":3180,"31208":860,"31209":3724,"31210":5632,"31211":4245,"31212":623,"31213":8998,"31214":7005,"31215":3610,"31216":444,"31217":6555,"31218":3586,"31219":1272,"31220":8831,"31221":2119,"31222":7146,"31223":10309,"31224":8376,"31225":7147,"31226":163,"31227":1928,"31228":5306,"31229":4714,"31230":288,"31231":9579,"31232":313,"31233":4935,"31234":9442,"31235":9616,"31236":626,"31237":1993,"31238":8252,"31239":6723,"31240":5439,"31241":9171,"31242":912,"31243":7725,"31244":9185,"31245":6354,"31246":9727,"31247":100,"31248":231,"31249":8542,"31250":3806,"31251":6526,"31252":4181,"31253":109,"31254":2226,"31255":7481,"31256":7876,"31257":9179,"31258":3932,"31259":6013,"31260":2571,"31261":4455,"31262":7736,"31263":252,"31264":5732,"31265":5690,"31266":8325,"31267":3685,"31268":314,"31269":1607,"31270":4082,"31271":2384,"31272":8647,"31273":5038,"31274":2971,"31275":8509,"31276":3656,"31277":4915,"31278":10267,"31279":7724,"31280":7750,"31281":9059,"31282":1915,"31283":100,"31284":7561,"31285":192,"31286":7325,"31287":5292,"31288":6548,"31289":196,"31290":10898,"31291":5525,"31292":5255,"31293":9547,"31294":8615,"31295":10947,"31296":2686,"31297":7423,"31298":3647,"31299":4547,"31300":6600,"31301":7240,"31302":10653,"31303":1945,"31304":10285,"31305":5970,"31306":9594,"31307":1104,"31308":10114,"31309":4972,"31310":1552,"31311":1174,"31312":269,"31313":8951,"31314":9557,"31315":10846,"31316":513,"31317":9865,"31318":78,"31319":3295,"31320":8044,"31321":9091,"31322":381,"31323":1933,"31324":10834,"31325":1651,"31326":2268,"31327":271,"31328":1861,"31329":2037,"31330":870,"31331":10953,"31332":6798,"31333":4641,"31334":9598,"31335":7108,"31336":2380,"31337":5577,"31338":8332,"31339":10446,"31340":8967,"31341":2086,"31342":7625,"31343":5366,"31344":1175,"31345":6227,"31346":1993,"31347":7592,"31348":1755,"31349":8630,"31350":3649,"31351":8970,"31352":2940,"31353":2863,"31354":8874,"31355":8734,"31356":8450,"31357":9840,"31358":424,"31359":10446,"31360":673,"31361":7289,"31362":608,"31363":8287,"31364":6809,"31365":10302,"31366":5937,"31367":4209,"31368":2373,"31369":7813,"31370":3995,"31371":7117,"31372":7533,"31373":6760,"31374":1350,"31375":2742,"31376":7058,"31377":5050,"31378":8230,"31379":3426,"31380":3913,"31381":264,"31382":4052,"31383":674,"31384":8833,"31385":10984,"31386":6511,"31387":7498,"31388":3514,"31389":3596,"31390":706,"31391":5480,"31392":9943,"31393":2608,"31394":2981,"31395":7475,"31396":8163,"31397":566,"31398":9995,"31399":6338,"31400":6997,"31401":10248,"31402":1165,"31403":4575,"31404":7253,"31405":1151,"31406":853,"31407":7039,"31408":565,"31409":6505,"31410":8644,"31411":3447,"31412":6563,"31413":1338,"31414":10345,"31415":479,"31416":1720,"31417":6816,"31418":10706,"31419":2879,"31420":657,"31421":10882,"31422":3165,"31423":2849,"31424":3879,"31425":263,"31426":4316,"31427":61,"31428":5155,"31429":7032,"31430":1525,"31431":4924,"31432":5879,"31433":9688,"31434":3130,"31435":7166,"31436":5663,"31437":3922,"31438":10372,"31439":8961,"31440":8041,"31441":884,"31442":4431,"31443":3435,"31444":2781,"31445":6228,"31446":5911,"31447":1575,"31448":10665,"31449":5020,"31450":492,"31451":648,"31452":10008,"31453":3987,"31454":5390,"31455":3858,"31456":4108,"31457":9882,"31458":3546,"31459":8885,"31460":9684,"31461":10342,"31462":4696,"31463":4128,"31464":3337,"31465":1562,"31466":5657,"31467":1994,"31468":4286,"31469":9000,"31470":10485,"31471":8413,"31472":8150,"31473":2794,"31474":132,"31475":9079,"31476":3147,"31477":6393,"31478":1654,"31479":3237,"31480":10606,"31481":6790,"31482":10599,"31483":9456,"31484":6459,"31485":1822,"31486":9673,"31487":5482,"31488":3042,"31489":9609,"31490":1802,"31491":1226,"31492":7510,"31493":4992,"31494":812,"31495":8897,"31496":6037,"31497":3741,"31498":5430,"31499":9075,"31500":9012,"31501":9954,"31502":4948,"31503":6650,"31504":7370,"31505":5765,"31506":8161,"31507":8501,"31508":8349,"31509":5496,"31510":5228,"31511":2545,"31512":466,"31513":6078,"31514":7684,"31515":2279,"31516":2374,"31517":4657,"31518":2925,"31519":4868,"31520":3719,"31521":7984,"31522":2228,"31523":10800,"31524":178,"31525":3276,"31526":6322,"31527":5582,"31528":1152,"31529":2964,"31530":6814,"31531":7634,"31532":2466,"31533":7374,"31534":4604,"31535":2920,"31536":1701,"31537":2308,"31538":8681,"31539":9736,"31540":9642,"31541":4892,"31542":1832,"31543":2547,"31544":4443,"31545":4033,"31546":3196,"31547":5645,"31548":8172,"31549":9966,"31550":4413,"31551":596,"31552":7025,"31553":1525,"31554":3533,"31555":8879,"31556":910,"31557":9126,"31558":357,"31559":7051,"31560":419,"31561":8837,"31562":6067,"31563":3745,"31564":6376,"31565":2819,"31566":2566,"31567":2456,"31568":9853,"31569":904,"31570":7647,"31571":9206,"31572":178,"31573":764,"31574":10062,"31575":2821,"31576":4742,"31577":3396,"31578":2436,"31579":9714,"31580":10640,"31581":9705,"31582":10650,"31583":3654,"31584":2925,"31585":8567,"31586":10063,"31587":4496,"31588":6600,"31589":650,"31590":241,"31591":7376,"31592":1222,"31593":9387,"31594":9704,"31595":4974,"31596":3129,"31597":8929,"31598":291,"31599":8690,"31600":9307,"31601":8653,"31602":176,"31603":114,"31604":1334,"31605":6907,"31606":10027,"31607":10485,"31608":6347,"31609":2565,"31610":9570,"31611":6549,"31612":166,"31613":2988,"31614":1602,"31615":2149,"31616":5988,"31617":7018,"31618":8282,"31619":6404,"31620":8041,"31621":5118,"31622":4204,"31623":4240,"31624":5183,"31625":5646,"31626":8533,"31627":880,"31628":4082,"31629":4931,"31630":1950,"31631":5873,"31632":467,"31633":7186,"31634":9366,"31635":8522,"31636":1724,"31637":1719,"31638":1610,"31639":4961,"31640":6272,"31641":4017,"31642":5361,"31643":3676,"31644":7212,"31645":10210,"31646":5301,"31647":5517,"31648":8977,"31649":9909,"31650":10875,"31651":10298,"31652":2430,"31653":5270,"31654":471,"31655":8461,"31656":589,"31657":1936,"31658":10497,"31659":5636,"31660":2704,"31661":10017,"31662":364,"31663":1549,"31664":475,"31665":3533,"31666":9076,"31667":2330,"31668":2588,"31669":1473,"31670":160,"31671":5529,"31672":10599,"31673":7943,"31674":6934,"31675":8014,"31676":8397,"31677":10484,"31678":9921,"31679":4201,"31680":8997,"31681":1445,"31682":2536,"31683":661,"31684":5160,"31685":6775,"31686":2168,"31687":4392,"31688":9635,"31689":1718,"31690":9189,"31691":9671,"31692":7680,"31693":5886,"31694":7499,"31695":161,"31696":6867,"31697":3131,"31698":8123,"31699":1597,"31700":2634,"31701":2493,"31702":10660,"31703":9604,"31704":2573,"31705":2089,"31706":447,"31707":4860,"31708":10312,"31709":2136,"31710":4913,"31711":9534,"31712":10396,"31713":3133,"31714":8732,"31715":8645,"31716":5795,"31717":1617,"31718":2792,"31719":4974,"31720":351,"31721":2337,"31722":1492,"31723":1126,"31724":9343,"31725":8161,"31726":8752,"31727":6634,"31728":8627,"31729":9153,"31730":7096,"31731":10160,"31732":10897,"31733":1732,"31734":8030,"31735":3449,"31736":3883,"31737":2347,"31738":2760,"31739":8454,"31740":8477,"31741":7892,"31742":8356,"31743":515,"31744":1920,"31745":1542,"31746":7803,"31747":1748,"31748":4032,"31749":2226,"31750":6171,"31751":10221,"31752":10378,"31753":7006,"31754":10646,"31755":10338,"31756":5160,"31757":551,"31758":9954,"31759":4014,"31760":7869,"31761":8760,"31762":6245,"31763":4776,"31764":7022,"31765":7449,"31766":8587,"31767":4956,"31768":5603,"31769":9443,"31770":1776,"31771":4408,"31772":10449,"31773":3300,"31774":3960,"31775":5858,"31776":3529,"31777":5307,"31778":6860,"31779":7576,"31780":7061,"31781":4443,"31782":440,"31783":10211,"31784":5504,"31785":471,"31786":10829,"31787":4709,"31788":4719,"31789":5414,"31790":5725,"31791":1890,"31792":2344,"31793":9904,"31794":1406,"31795":2997,"31796":4226,"31797":10618,"31798":4976,"31799":2950,"31800":8978,"31801":4362,"31802":1505,"31803":7742,"31804":2817,"31805":9809,"31806":3326,"31807":135,"31808":9002,"31809":2239,"31810":3732,"31811":1780,"31812":1210,"31813":4700,"31814":7924,"31815":6934,"31816":10198,"31817":5233,"31818":7894,"31819":8962,"31820":4464,"31821":2828,"31822":972,"31823":10145,"31824":6549,"31825":7898,"31826":322,"31827":7312,"31828":7520,"31829":1064,"31830":10118,"31831":1163,"31832":2465,"31833":7457,"31834":5946,"31835":7665,"31836":577,"31837":682,"31838":7868,"31839":4482,"31840":10482,"31841":7848,"31842":8820,"31843":486,"31844":1508,"31845":3826,"31846":7969,"31847":9408,"31848":3693,"31849":6768,"31850":8409,"31851":2905,"31852":10723,"31853":10568,"31854":2443,"31855":5139,"31856":5100,"31857":3300,"31858":8910,"31859":4326,"31860":9986,"31861":10533,"31862":2449,"31863":6667,"31864":5877,"31865":3775,"31866":2376,"31867":485,"31868":500,"31869":8278,"31870":10829,"31871":10506,"31872":66,"31873":3825,"31874":5981,"31875":1665,"31876":8517,"31877":4815,"31878":9728,"31879":5917,"31880":9586,"31881":7531,"31882":776,"31883":3536,"31884":6201,"31885":9660,"31886":8052,"31887":4939,"31888":7454,"31889":2938,"31890":7331,"31891":6663,"31892":2678,"31893":4078,"31894":8362,"31895":3880,"31896":10494,"31897":9587,"31898":246,"31899":9269,"31900":654,"31901":2834,"31902":4163,"31903":7873,"31904":9919,"31905":8550,"31906":10860,"31907":5181,"31908":6586,"31909":3275,"31910":10363,"31911":10806,"31912":9427,"31913":8290,"31914":5502,"31915":6244,"31916":2517,"31917":8117,"31918":6368,"31919":6819,"31920":9108,"31921":466,"31922":7199,"31923":1183,"31924":842,"31925":970,"31926":5378,"31927":10590,"31928":7626,"31929":2029,"31930":4981,"31931":9193,"31932":4867,"31933":3463,"31934":1345,"31935":171,"31936":10320,"31937":1289,"31938":104,"31939":5376,"31940":7331,"31941":6051,"31942":9633,"31943":6970,"31944":1969,"31945":7857,"31946":7346,"31947":3104,"31948":9213,"31949":10653,"31950":10258,"31951":9177,"31952":1510,"31953":9868,"31954":1914,"31955":4923,"31956":4571,"31957":5301,"31958":434,"31959":718,"31960":2586,"31961":2809,"31962":2503,"31963":5014,"31964":3460,"31965":4377,"31966":1529,"31967":8480,"31968":9319,"31969":9045,"31970":10703,"31971":774,"31972":2517,"31973":8909,"31974":10017,"31975":2066,"31976":7875,"31977":8733,"31978":4211,"31979":8252,"31980":3970,"31981":3412,"31982":6132,"31983":1905,"31984":5764,"31985":2866,"31986":9812,"31987":2808,"31988":9419,"31989":1656,"31990":10915,"31991":429,"31992":463,"31993":7395,"31994":301,"31995":4264,"31996":4257,"31997":1371,"31998":1122,"31999":8217,"32000":7920,"32001":4653,"32002":8969,"32003":6747,"32004":4351,"32005":7632,"32006":2264,"32007":9265,"32008":9430,"32009":3115,"32010":8947,"32011":2011,"32012":2195,"32013":10024,"32014":10404,"32015":10969,"32016":9017,"32017":8836,"32018":7458,"32019":9520,"32020":4416,"32021":9776,"32022":4376,"32023":7169,"32024":4228,"32025":9564,"32026":2786,"32027":6609,"32028":3292,"32029":52,"32030":6777,"32031":7750,"32032":3416,"32033":9280,"32034":8316,"32035":10826,"32036":2747,"32037":2802,"32038":10444,"32039":3900,"32040":4213,"32041":3744,"32042":7981,"32043":1700,"32044":7743,"32045":4858,"32046":9831,"32047":5560,"32048":5330,"32049":7491,"32050":3340,"32051":4595,"32052":10530,"32053":1693,"32054":9449,"32055":8325,"32056":5845,"32057":5402,"32058":195,"32059":4032,"32060":10031,"32061":9476,"32062":652,"32063":6919,"32064":3343,"32065":2567,"32066":5784,"32067":3947,"32068":654,"32069":10461,"32070":7231,"32071":8509,"32072":2076,"32073":1202,"32074":2181,"32075":8687,"32076":1428,"32077":8100,"32078":6384,"32079":1222,"32080":4873,"32081":8395,"32082":2313,"32083":7251,"32084":8143,"32085":5915,"32086":6930,"32087":6523,"32088":1059,"32089":3078,"32090":8853,"32091":2839,"32092":4599,"32093":3951,"32094":4683,"32095":4529,"32096":7348,"32097":523,"32098":892,"32099":3354,"32100":5511,"32101":3874,"32102":6654,"32103":2394,"32104":7615,"32105":895,"32106":9579,"32107":4953,"32108":9819,"32109":2113,"32110":1683,"32111":1035,"32112":5189,"32113":4945,"32114":9956,"32115":10104,"32116":5961,"32117":258,"32118":6612,"32119":10467,"32120":4952,"32121":8962,"32122":4392,"32123":5974,"32124":797,"32125":5756,"32126":1192,"32127":6354,"32128":8092,"32129":2042,"32130":2720,"32131":756,"32132":4844,"32133":2742,"32134":10595,"32135":8084,"32136":2093,"32137":2455,"32138":9280,"32139":2203,"32140":1200,"32141":5848,"32142":4214,"32143":3161,"32144":3279,"32145":5476,"32146":10762,"32147":227,"32148":3836,"32149":2313,"32150":8065,"32151":10984,"32152":8331,"32153":9124,"32154":7994,"32155":4973,"32156":2660,"32157":3506,"32158":10874,"32159":4080,"32160":657,"32161":2079,"32162":6731,"32163":3324,"32164":5838,"32165":9045,"32166":7086,"32167":1361,"32168":5669,"32169":356,"32170":821,"32171":9653,"32172":480,"32173":1882,"32174":7314,"32175":4445,"32176":2651,"32177":4549,"32178":5783,"32179":10409,"32180":10535,"32181":10188,"32182":9084,"32183":669,"32184":2364,"32185":7120,"32186":9021,"32187":2629,"32188":4833,"32189":147,"32190":2147,"32191":10777,"32192":9766,"32193":6562,"32194":5479,"32195":5049,"32196":5179,"32197":6911,"32198":7577,"32199":7518,"32200":7801,"32201":1130,"32202":6108,"32203":1200,"32204":414,"32205":8896,"32206":10119,"32207":10186,"32208":565,"32209":5765,"32210":2066,"32211":6861,"32212":1113,"32213":7263,"32214":34,"32215":3830,"32216":8744,"32217":7066,"32218":6571,"32219":144,"32220":8253,"32221":4050,"32222":7937,"32223":6536,"32224":8740,"32225":5130,"32226":8487,"32227":701,"32228":2107,"32229":7284,"32230":10693,"32231":7034,"32232":863,"32233":8961,"32234":4029,"32235":6891,"32236":10844,"32237":6944,"32238":9299,"32239":2818,"32240":7715,"32241":10014,"32242":4477,"32243":8354,"32244":5438,"32245":8242,"32246":3583,"32247":1180,"32248":1476,"32249":7667,"32250":8133,"32251":8386,"32252":2854,"32253":4137,"32254":4044,"32255":2707,"32256":6261,"32257":4921,"32258":2057,"32259":846,"32260":8496,"32261":7725,"32262":1953,"32263":10388,"32264":3804,"32265":4100,"32266":5038,"32267":5496,"32268":10075,"32269":1693,"32270":1394,"32271":8282,"32272":2735,"32273":2689,"32274":9473,"32275":4396,"32276":5594,"32277":6625,"32278":492,"32279":6155,"32280":9404,"32281":7643,"32282":6638,"32283":5730,"32284":5603,"32285":3651,"32286":1261,"32287":9063,"32288":249,"32289":1190,"32290":5100,"32291":1182,"32292":6760,"32293":10821,"32294":9185,"32295":4311,"32296":1877,"32297":819,"32298":10552,"32299":820,"32300":2886,"32301":9784,"32302":4561,"32303":4893,"32304":1646,"32305":3830,"32306":4200,"32307":4452,"32308":6204,"32309":10528,"32310":9671,"32311":2173,"32312":4592,"32313":407,"32314":3751,"32315":2218,"32316":8232,"32317":9333,"32318":5431,"32319":4462,"32320":1998,"32321":6688,"32322":1373,"32323":8343,"32324":2442,"32325":8913,"32326":3121,"32327":3583,"32328":5765,"32329":292,"32330":4610,"32331":3255,"32332":8438,"32333":2594,"32334":4616,"32335":9708,"32336":3519,"32337":5734,"32338":4365,"32339":3917,"32340":8088,"32341":1934,"32342":3112,"32343":8631,"32344":8629,"32345":7851,"32346":4950,"32347":9330,"32348":5512,"32349":3253,"32350":8207,"32351":9843,"32352":9065,"32353":1745,"32354":2056,"32355":8263,"32356":5169,"32357":2934,"32358":474,"32359":5931,"32360":7550,"32361":891,"32362":123,"32363":902,"32364":3936,"32365":5425,"32366":469,"32367":6144,"32368":3875,"32369":9357,"32370":3398,"32371":10113,"32372":8791,"32373":71,"32374":8929,"32375":6273,"32376":3569,"32377":659,"32378":1551,"32379":10748,"32380":2955,"32381":8312,"32382":3626,"32383":8472,"32384":4667,"32385":5615,"32386":4674,"32387":7872,"32388":1094,"32389":9610,"32390":9709,"32391":8698,"32392":10057,"32393":6650,"32394":6712,"32395":928,"32396":4460,"32397":2303,"32398":2895,"32399":2293,"32400":3585,"32401":4880,"32402":4971,"32403":9911,"32404":1673,"32405":9798,"32406":5965,"32407":4656,"32408":10457,"32409":3498,"32410":5479,"32411":8318,"32412":4190,"32413":518,"32414":33,"32415":1599,"32416":4648,"32417":9292,"32418":6279,"32419":7914,"32420":3151,"32421":285,"32422":1329,"32423":9469,"32424":8261,"32425":9323,"32426":9753,"32427":4163,"32428":3052,"32429":5714,"32430":8402,"32431":5356,"32432":5488,"32433":5713,"32434":1302,"32435":264,"32436":1044,"32437":7814,"32438":6355,"32439":10390,"32440":6608,"32441":2768,"32442":3568,"32443":10465,"32444":7974,"32445":998,"32446":1788,"32447":2262,"32448":2526,"32449":10479,"32450":6034,"32451":6754,"32452":7426,"32453":2381,"32454":1493,"32455":2010,"32456":7627,"32457":9502,"32458":1863,"32459":7920,"32460":8947,"32461":9364,"32462":2975,"32463":5187,"32464":4277,"32465":5521,"32466":5446,"32467":134,"32468":1320,"32469":9613,"32470":8437,"32471":2470,"32472":729,"32473":4341,"32474":9347,"32475":6486,"32476":567,"32477":7509,"32478":9495,"32479":3432,"32480":10334,"32481":9773,"32482":1747,"32483":4235,"32484":2202,"32485":4045,"32486":3577,"32487":922,"32488":4733,"32489":6722,"32490":6917,"32491":972,"32492":2239,"32493":2845,"32494":5138,"32495":8403,"32496":9286,"32497":8334,"32498":7170,"32499":5357,"32500":2988,"32501":4657,"32502":798,"32503":7295,"32504":3542,"32505":3279,"32506":7599,"32507":9983,"32508":5068,"32509":8869,"32510":7273,"32511":8174,"32512":1066,"32513":2627,"32514":8802,"32515":2138,"32516":6551,"32517":110,"32518":8007,"32519":1152,"32520":3681,"32521":5503,"32522":1921,"32523":5468,"32524":8262,"32525":4589,"32526":10118,"32527":1522,"32528":2069,"32529":4230,"32530":4425,"32531":43,"32532":5230,"32533":1042,"32534":514,"32535":1364,"32536":2678,"32537":2548,"32538":8507,"32539":6102,"32540":4533,"32541":6609,"32542":234,"32543":7318,"32544":7349,"32545":10792,"32546":3117,"32547":10983,"32548":7077,"32549":2496,"32550":7202,"32551":6347,"32552":1054,"32553":10021,"32554":4455,"32555":3967,"32556":9606,"32557":2445,"32558":6692,"32559":9625,"32560":313,"32561":8514,"32562":10534,"32563":1656,"32564":2277,"32565":4708,"32566":5982,"32567":4210,"32568":5769,"32569":5072,"32570":10695,"32571":6170,"32572":2026,"32573":7613,"32574":2713,"32575":9737,"32576":985,"32577":2245,"32578":3746,"32579":6951,"32580":4603,"32581":10746,"32582":10323,"32583":8012,"32584":9305,"32585":1074,"32586":4994,"32587":7750,"32588":5971,"32589":2713,"32590":432,"32591":4080,"32592":1058,"32593":10583,"32594":5228,"32595":8821,"32596":9795,"32597":914,"32598":7920,"32599":6877,"32600":7739,"32601":9100,"32602":6797,"32603":10113,"32604":5535,"32605":8336,"32606":6085,"32607":6671,"32608":9285,"32609":9704,"32610":2317,"32611":1072,"32612":3222,"32613":1806,"32614":6592,"32615":4099,"32616":6320,"32617":6625,"32618":5397,"32619":10225,"32620":7631,"32621":6198,"32622":6117,"32623":3514,"32624":9483,"32625":5533,"32626":2964,"32627":1812,"32628":7162,"32629":3808,"32630":1353,"32631":4123,"32632":1883,"32633":3709,"32634":6146,"32635":9350,"32636":10397,"32637":7959,"32638":8007,"32639":481,"32640":3403,"32641":7039,"32642":1221,"32643":1766,"32644":3449,"32645":7773,"32646":9241,"32647":7730,"32648":8356,"32649":9740,"32650":2306,"32651":6767,"32652":6144,"32653":5239,"32654":1814,"32655":9528,"32656":3935,"32657":2979,"32658":2322,"32659":9375,"32660":4263,"32661":3967,"32662":4645,"32663":1043,"32664":4752,"32665":7507,"32666":4924,"32667":721,"32668":3374,"32669":10294,"32670":2547,"32671":1249,"32672":6548,"32673":10156,"32674":10536,"32675":10351,"32676":8718,"32677":8411,"32678":203,"32679":4426,"32680":6291,"32681":3730,"32682":1806,"32683":1515,"32684":3457,"32685":10825,"32686":7363,"32687":4156,"32688":3982,"32689":7358,"32690":3532,"32691":1007,"32692":4268,"32693":9235,"32694":1561,"32695":9701,"32696":7341,"32697":5653,"32698":4145,"32699":7486,"32700":6553,"32701":5765,"32702":10920,"32703":7830,"32704":7718,"32705":9094,"32706":6944,"32707":5745,"32708":9588,"32709":54,"32710":6142,"32711":9399,"32712":3274,"32713":8974,"32714":4027,"32715":6855,"32716":5437,"32717":7784,"32718":4825,"32719":8843,"32720":6497,"32721":9228,"32722":448,"32723":9886,"32724":7604,"32725":9550,"32726":3706,"32727":9143,"32728":992,"32729":3226,"32730":6029,"32731":10946,"32732":8384,"32733":950,"32734":2271,"32735":4449,"32736":5734,"32737":2724,"32738":4125,"32739":9080,"32740":96,"32741":3896,"32742":1231,"32743":5461,"32744":8448,"32745":8402,"32746":807,"32747":1737,"32748":8827,"32749":1300,"32750":3995,"32751":10199,"32752":238,"32753":6260,"32754":5174,"32755":6597,"32756":6004,"32757":3757,"32758":9745,"32759":2819,"32760":9167,"32761":2898,"32762":8849,"32763":3797,"32764":5575,"32765":581,"32766":6365,"32767":6329,"32768":7910,"32769":1434,"32770":1851,"32771":10601,"32772":5455,"32773":7953,"32774":5067,"32775":1931,"32776":2666,"32777":4836,"32778":5090,"32779":6567,"32780":150,"32781":5673,"32782":8580,"32783":9344,"32784":3581,"32785":6609,"32786":9648,"32787":825,"32788":2113,"32789":10203,"32790":9932,"32791":3163,"32792":4357,"32793":4522,"32794":721,"32795":1918,"32796":3906,"32797":629,"32798":10077,"32799":1170,"32800":7154,"32801":5828,"32802":4358,"32803":491,"32804":4824,"32805":6519,"32806":5288,"32807":3210,"32808":1563,"32809":8496,"32810":2360,"32811":7350,"32812":4311,"32813":273,"32814":3923,"32815":3818,"32816":1838,"32817":9292,"32818":4032,"32819":474,"32820":9214,"32821":2160,"32822":3370,"32823":3732,"32824":6231,"32825":6363,"32826":4752,"32827":3851,"32828":10409,"32829":51,"32830":2044,"32831":8747,"32832":4594,"32833":5774,"32834":10215,"32835":3743,"32836":2458,"32837":1164,"32838":2759,"32839":2972,"32840":1794,"32841":664,"32842":10305,"32843":5955,"32844":3596,"32845":10436,"32846":3455,"32847":2789,"32848":3908,"32849":6647,"32850":6995,"32851":2237,"32852":10714,"32853":8998,"32854":9437,"32855":9785,"32856":8943,"32857":3802,"32858":8750,"32859":4253,"32860":10340,"32861":2043,"32862":767,"32863":10884,"32864":8162,"32865":5312,"32866":9516,"32867":6167,"32868":6238,"32869":10921,"32870":58,"32871":10257,"32872":2377,"32873":6827,"32874":7488,"32875":4423,"32876":1598,"32877":2466,"32878":10900,"32879":8130,"32880":7775,"32881":10594,"32882":4088,"32883":5030,"32884":2287,"32885":10558,"32886":1185,"32887":6195,"32888":8377,"32889":2080,"32890":8624,"32891":10921,"32892":4857,"32893":9342,"32894":3724,"32895":3155,"32896":4367,"32897":819,"32898":9588,"32899":8227,"32900":5062,"32901":10068,"32902":7578,"32903":8653,"32904":3687,"32905":2442,"32906":4873,"32907":3008,"32908":1584,"32909":892,"32910":6640,"32911":8350,"32912":4822,"32913":8959,"32914":6856,"32915":2067,"32916":5121,"32917":2202,"32918":8878,"32919":1498,"32920":3221,"32921":8189,"32922":9388,"32923":1981,"32924":3306,"32925":4228,"32926":136,"32927":2996,"32928":2794,"32929":1870,"32930":5557,"32931":5655,"32932":7617,"32933":2602,"32934":10322,"32935":5663,"32936":5546,"32937":1061,"32938":4226,"32939":655,"32940":3900,"32941":6224,"32942":7398,"32943":10131,"32944":3353,"32945":4046,"32946":8196,"32947":6182,"32948":7641,"32949":10033,"32950":1987,"32951":1407,"32952":4640,"32953":2706,"32954":5897,"32955":9449,"32956":2001,"32957":8104,"32958":8644,"32959":6932,"32960":2121,"32961":9937,"32962":7463,"32963":5463,"32964":3270,"32965":4093,"32966":4419,"32967":5272,"32968":1274,"32969":3571,"32970":5030,"32971":7929,"32972":8768,"32973":6826,"32974":8009,"32975":5968,"32976":6849,"32977":8816,"32978":1402,"32979":630,"32980":7905,"32981":5049,"32982":6279,"32983":7321,"32984":830,"32985":4833,"32986":8625,"32987":7278,"32988":8962,"32989":6084,"32990":181,"32991":7043,"32992":356,"32993":10218,"32994":7318,"32995":1250,"32996":1747,"32997":2717,"32998":5579,"32999":5354,"33000":4223,"33001":5217,"33002":8657,"33003":5755,"33004":4171,"33005":6465,"33006":791,"33007":7396,"33008":1036,"33009":9161,"33010":2162,"33011":9296,"33012":3426,"33013":4548,"33014":4095,"33015":7281,"33016":651,"33017":7256,"33018":5150,"33019":3008,"33020":4168,"33021":1510,"33022":10342,"33023":10036,"33024":7959,"33025":8838,"33026":9622,"33027":10983,"33028":6923,"33029":10541,"33030":2477,"33031":5197,"33032":9454,"33033":10507,"33034":4904,"33035":2997,"33036":1915,"33037":3534,"33038":5555,"33039":4388,"33040":2080,"33041":5842,"33042":2569,"33043":2961,"33044":7962,"33045":8119,"33046":10116,"33047":4583,"33048":10681,"33049":6191,"33050":6777,"33051":7784,"33052":3792,"33053":10075,"33054":305,"33055":2939,"33056":4405,"33057":4538,"33058":9695,"33059":3010,"33060":5898,"33061":8062,"33062":5919,"33063":427,"33064":5288,"33065":1727,"33066":2672,"33067":9832,"33068":8172,"33069":119,"33070":5594,"33071":3180,"33072":3577,"33073":66,"33074":7133,"33075":3913,"33076":3961,"33077":4664,"33078":2415,"33079":9902,"33080":8287,"33081":9533,"33082":6588,"33083":10351,"33084":9215,"33085":1834,"33086":86,"33087":3413,"33088":7919,"33089":9158,"33090":6879,"33091":10268,"33092":6839,"33093":2076,"33094":1495,"33095":1731,"33096":10828,"33097":670,"33098":10643,"33099":10917,"33100":5513,"33101":3710,"33102":1097,"33103":2159,"33104":9870,"33105":3983,"33106":4229,"33107":8584,"33108":6320,"33109":7638,"33110":1262,"33111":9063,"33112":4780,"33113":1406,"33114":9313,"33115":8911,"33116":8991,"33117":5418,"33118":7836,"33119":8738,"33120":1219,"33121":6417,"33122":10286,"33123":7965,"33124":6633,"33125":4578,"33126":685,"33127":3990,"33128":6608,"33129":6155,"33130":6646,"33131":9348,"33132":7226,"33133":8422,"33134":6062,"33135":1444,"33136":8807,"33137":2976,"33138":9776,"33139":5151,"33140":4451,"33141":3522,"33142":797,"33143":8399,"33144":9144,"33145":10815,"33146":1363,"33147":6204,"33148":8343,"33149":9262,"33150":1511,"33151":6875,"33152":10084,"33153":9193,"33154":2616,"33155":4771,"33156":438,"33157":6405,"33158":5184,"33159":1779,"33160":8573,"33161":4452,"33162":5900,"33163":5502,"33164":4210,"33165":1140,"33166":4770,"33167":10159,"33168":6373,"33169":6752,"33170":5559,"33171":10473,"33172":5860,"33173":10610,"33174":9471,"33175":9763,"33176":2682,"33177":8022,"33178":8314,"33179":8270,"33180":2039,"33181":7999,"33182":1938,"33183":10837,"33184":4015,"33185":5502,"33186":6781,"33187":2814,"33188":6149,"33189":8769,"33190":3150,"33191":8755,"33192":7564,"33193":5272,"33194":3282,"33195":495,"33196":8513,"33197":8111,"33198":2051,"33199":2278,"33200":3240,"33201":3718,"33202":1130,"33203":6657,"33204":8342,"33205":9888,"33206":2611,"33207":5711,"33208":9385,"33209":10729,"33210":5287,"33211":488,"33212":5239,"33213":4900,"33214":1671,"33215":10016,"33216":2129,"33217":4501,"33218":10196,"33219":1193,"33220":5945,"33221":4939,"33222":9333,"33223":6717,"33224":3374,"33225":10039,"33226":8434,"33227":923,"33228":4568,"33229":7339,"33230":10306,"33231":2427,"33232":8137,"33233":7476,"33234":9413,"33235":229,"33236":4759,"33237":2889,"33238":9056,"33239":2075,"33240":9812,"33241":4509,"33242":6108,"33243":4229,"33244":1461,"33245":7382,"33246":20,"33247":2088,"33248":4941,"33249":1349,"33250":9356,"33251":7862,"33252":3903,"33253":269,"33254":5535,"33255":10514,"33256":9719,"33257":133,"33258":2948,"33259":3730,"33260":6031,"33261":3458,"33262":7253,"33263":7366,"33264":4966,"33265":7120,"33266":34,"33267":1145,"33268":4885,"33269":3680,"33270":5028,"33271":8731,"33272":3377,"33273":9580,"33274":2036,"33275":969,"33276":7943,"33277":2997,"33278":7648,"33279":4346,"33280":699,"33281":4374,"33282":1294,"33283":7461,"33284":6274,"33285":7427,"33286":1804,"33287":9069,"33288":1636,"33289":9190,"33290":10085,"33291":2601,"33292":2874,"33293":7364,"33294":8403,"33295":4313,"33296":4231,"33297":6151,"33298":10294,"33299":6936,"33300":214,"33301":7923,"33302":765,"33303":5992,"33304":9181,"33305":10133,"33306":10085,"33307":3283,"33308":4685,"33309":6031,"33310":6932,"33311":5839,"33312":10220,"33313":4322,"33314":8328,"33315":10298,"33316":2721,"33317":810,"33318":53,"33319":9245,"33320":5573,"33321":766,"33322":8798,"33323":5165,"33324":8425,"33325":707,"33326":9322,"33327":6685,"33328":4079,"33329":1762,"33330":1537,"33331":8964,"33332":349,"33333":10529,"33334":10503,"33335":893,"33336":1449,"33337":8562,"33338":766,"33339":10619,"33340":2754,"33341":427,"33342":4780,"33343":3563,"33344":6323,"33345":800,"33346":9840,"33347":8311,"33348":4845,"33349":8358,"33350":10536,"33351":5078,"33352":3292,"33353":1924,"33354":2691,"33355":140,"33356":6327,"33357":7584,"33358":2499,"33359":2186,"33360":6705,"33361":9713,"33362":2305,"33363":2298,"33364":8603,"33365":2433,"33366":5316,"33367":5093,"33368":417,"33369":9599,"33370":1165,"33371":2684,"33372":10748,"33373":3168,"33374":8967,"33375":3998,"33376":7490,"33377":7760,"33378":8350,"33379":7754,"33380":9722,"33381":9990,"33382":5834,"33383":9108,"33384":7806,"33385":7333,"33386":5854,"33387":4047,"33388":2595,"33389":6408,"33390":4834,"33391":5344,"33392":4902,"33393":6005,"33394":2623,"33395":2888,"33396":689,"33397":8859,"33398":451,"33399":6195,"33400":9399,"33401":2203,"33402":3712,"33403":2346,"33404":6752,"33405":6687,"33406":1018,"33407":779,"33408":6309,"33409":6739,"33410":5198,"33411":8832,"33412":7098,"33413":10166,"33414":8296,"33415":7779,"33416":922,"33417":4693,"33418":183,"33419":5865,"33420":3007,"33421":7476,"33422":4126,"33423":6224,"33424":9298,"33425":4906,"33426":4046,"33427":7011,"33428":9404,"33429":858,"33430":8229,"33431":6206,"33432":4942,"33433":8335,"33434":2965,"33435":1627,"33436":3261,"33437":6238,"33438":2990,"33439":3616,"33440":2411,"33441":3510,"33442":3211,"33443":5361,"33444":26,"33445":2190,"33446":6694,"33447":3201,"33448":8823,"33449":1399,"33450":6560,"33451":9534,"33452":5470,"33453":7378,"33454":10557,"33455":799,"33456":8787,"33457":7727,"33458":3670,"33459":9621,"33460":10955,"33461":3398,"33462":5897,"33463":7194,"33464":1907,"33465":7038,"33466":5259,"33467":1693,"33468":4727,"33469":273,"33470":10251,"33471":2575,"33472":3561,"33473":3760,"33474":10793,"33475":3334,"33476":8935,"33477":696,"33478":10473,"33479":7126,"33480":9725,"33481":10800,"33482":9614,"33483":6757,"33484":4610,"33485":8106,"33486":8765,"33487":4193,"33488":9851,"33489":9028,"33490":7716,"33491":44,"33492":709,"33493":10319,"33494":9691,"33495":7169,"33496":6817,"33497":9303,"33498":886,"33499":5082,"33500":8320,"33501":4391,"33502":8325,"33503":7816,"33504":2529,"33505":8360,"33506":3706,"33507":6657,"33508":9697,"33509":3909,"33510":5390,"33511":9682,"33512":1108,"33513":10290,"33514":1148,"33515":3472,"33516":4348,"33517":6663,"33518":1340,"33519":6782,"33520":3613,"33521":8594,"33522":10423,"33523":10865,"33524":7728,"33525":2778,"33526":7706,"33527":314,"33528":6221,"33529":6523,"33530":2202,"33531":5583,"33532":6799,"33533":6288,"33534":10501,"33535":6666,"33536":1409,"33537":4595,"33538":6343,"33539":4324,"33540":3312,"33541":2502,"33542":8543,"33543":4800,"33544":7196,"33545":6107,"33546":3863,"33547":7507,"33548":7254,"33549":660,"33550":1158,"33551":7855,"33552":9304,"33553":10551,"33554":4123,"33555":3462,"33556":8520,"33557":678,"33558":10331,"33559":2492,"33560":8933,"33561":4458,"33562":1926,"33563":5517,"33564":4511,"33565":785,"33566":5095,"33567":1188,"33568":910,"33569":7884,"33570":2222,"33571":2895,"33572":8364,"33573":6764,"33574":4444,"33575":2419,"33576":2159,"33577":3512,"33578":6127,"33579":822,"33580":6028,"33581":8048,"33582":9324,"33583":1629,"33584":8981,"33585":3315,"33586":177,"33587":981,"33588":8750,"33589":9250,"33590":6905,"33591":1102,"33592":10816,"33593":2226,"33594":8704,"33595":9255,"33596":8386,"33597":8228,"33598":3104,"33599":4878,"33600":9105,"33601":2489,"33602":7214,"33603":10575,"33604":9109,"33605":1390,"33606":4395,"33607":2744,"33608":8298,"33609":3977,"33610":10421,"33611":3886,"33612":7948,"33613":4882,"33614":1814,"33615":3369,"33616":4094,"33617":9599,"33618":3077,"33619":5891,"33620":2928,"33621":1971,"33622":3547,"33623":3848,"33624":295,"33625":10318,"33626":3835,"33627":3536,"33628":2203,"33629":2777,"33630":10924,"33631":8008,"33632":3099,"33633":3876,"33634":651,"33635":340,"33636":6665,"33637":8028,"33638":3264,"33639":10651,"33640":4558,"33641":3822,"33642":10818,"33643":9544,"33644":3105,"33645":3693,"33646":7158,"33647":1707,"33648":3925,"33649":7497,"33650":4257,"33651":10783,"33652":5535,"33653":10258,"33654":2109,"33655":10218,"33656":2732,"33657":8746,"33658":10594,"33659":3614,"33660":8048,"33661":5228,"33662":10508,"33663":1839,"33664":6163,"33665":5815,"33666":7936,"33667":10536,"33668":6591,"33669":10851,"33670":3818,"33671":5859,"33672":7488,"33673":5135,"33674":3014,"33675":6075,"33676":7409,"33677":6576,"33678":495,"33679":1784,"33680":1943,"33681":4262,"33682":8108,"33683":3013,"33684":9627,"33685":6070,"33686":8533,"33687":2765,"33688":10709,"33689":6573,"33690":7062,"33691":9468,"33692":4048,"33693":9994,"33694":8361,"33695":7415,"33696":6122,"33697":8059,"33698":8180,"33699":2391,"33700":2021,"33701":1449,"33702":10826,"33703":6541,"33704":3029,"33705":5683,"33706":9907,"33707":5261,"33708":8598,"33709":10888,"33710":3974,"33711":8050,"33712":117,"33713":8743,"33714":3770,"33715":10310,"33716":6894,"33717":9274,"33718":423,"33719":3570,"33720":4925,"33721":5639,"33722":5600,"33723":2370,"33724":218,"33725":3330,"33726":2894,"33727":9989,"33728":7685,"33729":2506,"33730":3709,"33731":7832,"33732":7170,"33733":2907,"33734":2771,"33735":10244,"33736":2821,"33737":5239,"33738":10498,"33739":492,"33740":8177,"33741":9942,"33742":6725,"33743":3262,"33744":4634,"33745":6411,"33746":4754,"33747":3417,"33748":2251,"33749":2557,"33750":2957,"33751":8743,"33752":3275,"33753":8164,"33754":4412,"33755":3043,"33756":6251,"33757":2126,"33758":2262,"33759":2125,"33760":1336,"33761":7272,"33762":5137,"33763":10995,"33764":2330,"33765":2822,"33766":8048,"33767":4685,"33768":5470,"33769":3354,"33770":8365,"33771":7629,"33772":525,"33773":5040,"33774":6202,"33775":5650,"33776":4801,"33777":10176,"33778":1874,"33779":9571,"33780":1671,"33781":1329,"33782":4292,"33783":1473,"33784":10367,"33785":9739,"33786":6849,"33787":6967,"33788":9768,"33789":205,"33790":1539,"33791":10697,"33792":10669,"33793":4984,"33794":2887,"33795":4098,"33796":3675,"33797":1948,"33798":3485,"33799":5768,"33800":7738,"33801":7396,"33802":1842,"33803":4761,"33804":9625,"33805":3863,"33806":2108,"33807":4640,"33808":6821,"33809":925,"33810":10710,"33811":4797,"33812":559,"33813":8412,"33814":5286,"33815":9202,"33816":10342,"33817":10116,"33818":1972,"33819":2666,"33820":4201,"33821":10428,"33822":801,"33823":722,"33824":8168,"33825":5559,"33826":9660,"33827":3789,"33828":1460,"33829":6516,"33830":8512,"33831":1168,"33832":3675,"33833":566,"33834":7864,"33835":4171,"33836":10131,"33837":1185,"33838":8476,"33839":2723,"33840":1720,"33841":6355,"33842":5344,"33843":956,"33844":9158,"33845":3989,"33846":110,"33847":7006,"33848":1245,"33849":268,"33850":6077,"33851":14,"33852":879,"33853":7488,"33854":8692,"33855":9311,"33856":4088,"33857":6233,"33858":7238,"33859":10227,"33860":10788,"33861":3380,"33862":590,"33863":4609,"33864":3025,"33865":743,"33866":3528,"33867":4163,"33868":891,"33869":3632,"33870":2018,"33871":1005,"33872":9166,"33873":1622,"33874":1868,"33875":9483,"33876":1418,"33877":1055,"33878":6276,"33879":7623,"33880":3187,"33881":6679,"33882":8467,"33883":4352,"33884":6483,"33885":6723,"33886":8313,"33887":1877,"33888":4936,"33889":194,"33890":5173,"33891":4941,"33892":5802,"33893":9325,"33894":10687,"33895":10754,"33896":9760,"33897":8392,"33898":4777,"33899":10834,"33900":2355,"33901":455,"33902":7350,"33903":642,"33904":6509,"33905":6323,"33906":7741,"33907":4686,"33908":2512,"33909":10971,"33910":8828,"33911":3377,"33912":1573,"33913":6361,"33914":1262,"33915":8794,"33916":10603,"33917":5672,"33918":2722,"33919":8212,"33920":1665,"33921":6499,"33922":10612,"33923":5813,"33924":7300,"33925":8139,"33926":1186,"33927":2059,"33928":2038,"33929":5844,"33930":9504,"33931":2692,"33932":4984,"33933":3162,"33934":1956,"33935":4706,"33936":10562,"33937":2197,"33938":7713,"33939":10102,"33940":1423,"33941":9390,"33942":8991,"33943":1929,"33944":8036,"33945":10739,"33946":5512,"33947":1770,"33948":4395,"33949":535,"33950":8914,"33951":534,"33952":4419,"33953":5083,"33954":8678,"33955":4835,"33956":1439,"33957":5432,"33958":4250,"33959":685,"33960":8566,"33961":6397,"33962":7122,"33963":4897,"33964":6336,"33965":4814,"33966":1064,"33967":9889,"33968":1621,"33969":582,"33970":10823,"33971":10259,"33972":2498,"33973":6093,"33974":728,"33975":9513,"33976":194,"33977":9981,"33978":10706,"33979":6571,"33980":1230,"33981":2602,"33982":764,"33983":6521,"33984":201,"33985":1213,"33986":8857,"33987":5411,"33988":1736,"33989":5738,"33990":9355,"33991":9824,"33992":7158,"33993":1547,"33994":1719,"33995":7394,"33996":6123,"33997":2802,"33998":7206,"33999":5735,"34000":9008,"34001":2022,"34002":7681,"34003":10731,"34004":1487,"34005":8795,"34006":1559,"34007":1041,"34008":3814,"34009":8501,"34010":2107,"34011":10923,"34012":7960,"34013":1687,"34014":1536,"34015":6924,"34016":1963,"34017":2643,"34018":9290,"34019":9806,"34020":333,"34021":7108,"34022":114,"34023":865,"34024":715,"34025":8465,"34026":9614,"34027":2618,"34028":2388,"34029":4497,"34030":4673,"34031":9550,"34032":4910,"34033":6427,"34034":5138,"34035":10012,"34036":5995,"34037":7163,"34038":4626,"34039":10191,"34040":10561,"34041":9652,"34042":9666,"34043":10631,"34044":7014,"34045":10790,"34046":3871,"34047":3989,"34048":6495,"34049":10501,"34050":4408,"34051":5426,"34052":8176,"34053":4409,"34054":8532,"34055":2488,"34056":2918,"34057":1867,"34058":4911,"34059":10387,"34060":7660,"34061":331,"34062":843,"34063":9514,"34064":8724,"34065":304,"34066":1435,"34067":8143,"34068":3404,"34069":5283,"34070":6329,"34071":856,"34072":218,"34073":6965,"34074":4245,"34075":10496,"34076":8843,"34077":5222,"34078":8903,"34079":4087,"34080":5243,"34081":540,"34082":8454,"34083":2794,"34084":5977,"34085":7318,"34086":8389,"34087":3433,"34088":6379,"34089":9369,"34090":4621,"34091":1482,"34092":4948,"34093":6902,"34094":2086,"34095":493,"34096":6421,"34097":7378,"34098":10434,"34099":4068,"34100":10802,"34101":8569,"34102":1472,"34103":1402,"34104":1,"34105":2953,"34106":10469,"34107":594,"34108":409,"34109":8373,"34110":6460,"34111":4635,"34112":6756,"34113":6377,"34114":10724,"34115":1157,"34116":2446,"34117":9579,"34118":8303,"34119":7566,"34120":9064,"34121":1090,"34122":2711,"34123":870,"34124":10465,"34125":4761,"34126":1335,"34127":6107,"34128":6354,"34129":1214,"34130":5261,"34131":5654,"34132":10403,"34133":8732,"34134":4086,"34135":4387,"34136":2414,"34137":9693,"34138":838,"34139":1328,"34140":5783,"34141":3469,"34142":5078,"34143":5578,"34144":8464,"34145":9402,"34146":9369,"34147":8980,"34148":1839,"34149":5412,"34150":5480,"34151":4051,"34152":7425,"34153":2323,"34154":10213,"34155":10105,"34156":2957,"34157":10926,"34158":965,"34159":7700,"34160":5455,"34161":10347,"34162":2062,"34163":3417,"34164":3542,"34165":1948,"34166":2182,"34167":6083,"34168":7203,"34169":1907,"34170":8974,"34171":6323,"34172":221,"34173":8187,"34174":9449,"34175":2551,"34176":46,"34177":5627,"34178":6727,"34179":5023,"34180":7247,"34181":7779,"34182":1804,"34183":438,"34184":1101,"34185":9716,"34186":8141,"34187":9261,"34188":4085,"34189":3247,"34190":1347,"34191":3422,"34192":2309,"34193":6041,"34194":2315,"34195":246,"34196":1678,"34197":1348,"34198":9757,"34199":6167,"34200":2712,"34201":7902,"34202":7764,"34203":3500,"34204":5510,"34205":10111,"34206":7852,"34207":3342,"34208":8586,"34209":7824,"34210":3737,"34211":8233,"34212":5485,"34213":2405,"34214":962,"34215":2939,"34216":5823,"34217":2823,"34218":3638,"34219":7279,"34220":8952,"34221":488,"34222":4841,"34223":7774,"34224":4841,"34225":8359,"34226":4064,"34227":3751,"34228":6636,"34229":3346,"34230":8678,"34231":10679,"34232":7874,"34233":9145,"34234":581,"34235":4300,"34236":624,"34237":7494,"34238":7089,"34239":1322,"34240":3290,"34241":5871,"34242":10038,"34243":4,"34244":9304,"34245":3747,"34246":2261,"34247":7542,"34248":10667,"34249":7108,"34250":1944,"34251":7465,"34252":814,"34253":484,"34254":10876,"34255":8845,"34256":3615,"34257":3523,"34258":1382,"34259":2169,"34260":8298,"34261":2171,"34262":4396,"34263":8176,"34264":3132,"34265":10746,"34266":9581,"34267":7475,"34268":606,"34269":1217,"34270":369,"34271":1127,"34272":3719,"34273":2180,"34274":3674,"34275":2598,"34276":2252,"34277":6581,"34278":2871,"34279":5549,"34280":2505,"34281":4254,"34282":3814,"34283":9537,"34284":6450,"34285":2445,"34286":9036,"34287":5148,"34288":7725,"34289":10433,"34290":3309,"34291":8108,"34292":6423,"34293":2034,"34294":6084,"34295":1572,"34296":591,"34297":5082,"34298":9271,"34299":6255,"34300":5833,"34301":4375,"34302":1551,"34303":7581,"34304":3083,"34305":10857,"34306":3139,"34307":3425,"34308":6749,"34309":4948,"34310":7348,"34311":5542,"34312":10870,"34313":17,"34314":8020,"34315":2470,"34316":3142,"34317":8986,"34318":9556,"34319":10717,"34320":887,"34321":7284,"34322":8917,"34323":8093,"34324":8369,"34325":808,"34326":3510,"34327":9601,"34328":78,"34329":1873,"34330":1045,"34331":10917,"34332":9637,"34333":4241,"34334":3946,"34335":2416,"34336":2025,"34337":9566,"34338":6664,"34339":1946,"34340":2197,"34341":3972,"34342":1487,"34343":4120,"34344":5211,"34345":2692,"34346":4547,"34347":10705,"34348":10081,"34349":6608,"34350":883,"34351":2995,"34352":3116,"34353":4917,"34354":212,"34355":9531,"34356":1684,"34357":10662,"34358":3179,"34359":10536,"34360":3751,"34361":7697,"34362":29,"34363":1119,"34364":1203,"34365":864,"34366":4730,"34367":9558,"34368":1497,"34369":5472,"34370":8921,"34371":2570,"34372":9046,"34373":5811,"34374":10655,"34375":7935,"34376":4550,"34377":1166,"34378":10625,"34379":10691,"34380":9543,"34381":4064,"34382":9089,"34383":1206,"34384":1359,"34385":5791,"34386":1653,"34387":5191,"34388":639,"34389":5896,"34390":10485,"34391":5749,"34392":6384,"34393":10763,"34394":582,"34395":7978,"34396":1280,"34397":2167,"34398":9521,"34399":2399,"34400":7017,"34401":2800,"34402":3511,"34403":1862,"34404":6415,"34405":10929,"34406":7670,"34407":5195,"34408":8989,"34409":7287,"34410":7323,"34411":9691,"34412":3582,"34413":5613,"34414":8999,"34415":9746,"34416":6478,"34417":727,"34418":4318,"34419":3161,"34420":10725,"34421":10397,"34422":9136,"34423":1423,"34424":3608,"34425":7311,"34426":4713,"34427":8998,"34428":8676,"34429":10285,"34430":2281,"34431":8512,"34432":7383,"34433":468,"34434":871,"34435":8032,"34436":10113,"34437":3702,"34438":5188,"34439":8999,"34440":10102,"34441":4201,"34442":8357,"34443":6624,"34444":3007,"34445":7458,"34446":3708,"34447":7134,"34448":8145,"34449":807,"34450":273,"34451":699,"34452":10486,"34453":5666,"34454":421,"34455":10565,"34456":5934,"34457":6937,"34458":5521,"34459":5259,"34460":2818,"34461":7723,"34462":10205,"34463":108,"34464":9818,"34465":6365,"34466":5509,"34467":4713,"34468":435,"34469":2614,"34470":9575,"34471":7928,"34472":3477,"34473":226,"34474":598,"34475":4540,"34476":8260,"34477":4169,"34478":2183,"34479":1975,"34480":5436,"34481":5124,"34482":7614,"34483":8694,"34484":4705,"34485":5423,"34486":3456,"34487":277,"34488":10387,"34489":6206,"34490":1001,"34491":7192,"34492":2838,"34493":2420,"34494":7483,"34495":2009,"34496":9629,"34497":3589,"34498":2516,"34499":10753,"34500":5001,"34501":9364,"34502":2462,"34503":6564,"34504":631,"34505":4467,"34506":6256,"34507":6905,"34508":569,"34509":5550,"34510":3444,"34511":5823,"34512":4941,"34513":7250,"34514":3054,"34515":7899,"34516":7272,"34517":9739,"34518":555,"34519":9772,"34520":3772,"34521":3455,"34522":8277,"34523":9152,"34524":753,"34525":4116,"34526":7326,"34527":8828,"34528":1352,"34529":1311,"34530":375,"34531":2253,"34532":5632,"34533":932,"34534":27,"34535":3254,"34536":5105,"34537":7064,"34538":9417,"34539":6784,"34540":7788,"34541":6962,"34542":7548,"34543":6583,"34544":9394,"34545":5498,"34546":8332,"34547":6294,"34548":1492,"34549":4798,"34550":4199,"34551":1291,"34552":3962,"34553":9128,"34554":7675,"34555":1498,"34556":6628,"34557":7261,"34558":811,"34559":5386,"34560":7052,"34561":9872,"34562":9726,"34563":6593,"34564":2341,"34565":1521,"34566":9946,"34567":6826,"34568":743,"34569":808,"34570":2752,"34571":4507,"34572":3647,"34573":2901,"34574":6271,"34575":597,"34576":6776,"34577":9138,"34578":9657,"34579":10688,"34580":3926,"34581":7707,"34582":9751,"34583":3707,"34584":6566,"34585":1924,"34586":9500,"34587":3614,"34588":5225,"34589":7485,"34590":10557,"34591":10321,"34592":6679,"34593":6536,"34594":3456,"34595":619,"34596":8660,"34597":3343,"34598":7685,"34599":2943,"34600":1576,"34601":5154,"34602":5876,"34603":8112,"34604":7747,"34605":8456,"34606":10633,"34607":6931,"34608":8670,"34609":10074,"34610":4376,"34611":10520,"34612":490,"34613":8042,"34614":9124,"34615":1629,"34616":4042,"34617":1578,"34618":7456,"34619":10094,"34620":3448,"34621":9924,"34622":6733,"34623":4485,"34624":9811,"34625":8489,"34626":7629,"34627":5447,"34628":10285,"34629":7525,"34630":399,"34631":8853,"34632":4061,"34633":7362,"34634":4508,"34635":5009,"34636":229,"34637":2972,"34638":9522,"34639":7180,"34640":6433,"34641":8232,"34642":7740,"34643":8486,"34644":9258,"34645":7857,"34646":10865,"34647":6719,"34648":835,"34649":272,"34650":3696,"34651":2087,"34652":10057,"34653":9531,"34654":677,"34655":7934,"34656":6237,"34657":10006,"34658":8956,"34659":6023,"34660":793,"34661":3632,"34662":2794,"34663":10941,"34664":7264,"34665":10545,"34666":5519,"34667":5425,"34668":8836,"34669":1021,"34670":9112,"34671":7815,"34672":7472,"34673":2892,"34674":8494,"34675":3346,"34676":1996,"34677":7481,"34678":2413,"34679":3066,"34680":8419,"34681":885,"34682":4678,"34683":7345,"34684":80,"34685":3170,"34686":7154,"34687":10136,"34688":8122,"34689":652,"34690":6903,"34691":2320,"34692":2755,"34693":5137,"34694":637,"34695":8373,"34696":8598,"34697":5085,"34698":2461,"34699":7420,"34700":3008,"34701":10159,"34702":5607,"34703":7056,"34704":3027,"34705":10220,"34706":7295,"34707":702,"34708":8780,"34709":7352,"34710":9991,"34711":1060,"34712":7,"34713":248,"34714":7983,"34715":10488,"34716":8023,"34717":8273,"34718":2885,"34719":6767,"34720":4372,"34721":2055,"34722":7212,"34723":9017,"34724":4528,"34725":8783,"34726":5834,"34727":8399,"34728":5599,"34729":9910,"34730":3730,"34731":482,"34732":7180,"34733":6076,"34734":10047,"34735":486,"34736":6398,"34737":8702,"34738":793,"34739":6123,"34740":3484,"34741":7628,"34742":8653,"34743":5104,"34744":10068,"34745":9664,"34746":8476,"34747":4332,"34748":10296,"34749":2053,"34750":745,"34751":8072,"34752":4422,"34753":7083,"34754":5660,"34755":3233,"34756":10667,"34757":9339,"34758":1386,"34759":3928,"34760":2841,"34761":3289,"34762":3312,"34763":594,"34764":1169,"34765":100,"34766":10357,"34767":6557,"34768":109,"34769":4170,"34770":6056,"34771":780,"34772":2409,"34773":2095,"34774":3239,"34775":8320,"34776":1,"34777":392,"34778":10153,"34779":10216,"34780":9533,"34781":223,"34782":8741,"34783":2194,"34784":2670,"34785":9891,"34786":2628,"34787":7079,"34788":6850,"34789":4626,"34790":5583,"34791":3967,"34792":4607,"34793":1003,"34794":1906,"34795":4521,"34796":9890,"34797":8231,"34798":10862,"34799":9014,"34800":5792,"34801":8349,"34802":5114,"34803":10646,"34804":9527,"34805":9442,"34806":6076,"34807":4864,"34808":4053,"34809":3884,"34810":10239,"34811":2017,"34812":3819,"34813":10826,"34814":5194,"34815":1679,"34816":10610,"34817":10740,"34818":804,"34819":886,"34820":2667,"34821":7720,"34822":8500,"34823":5161,"34824":4957,"34825":10709,"34826":1430,"34827":1383,"34828":2026,"34829":7144,"34830":4132,"34831":1684,"34832":10779,"34833":5813,"34834":836,"34835":10568,"34836":1579,"34837":1519,"34838":3285,"34839":6365,"34840":6352,"34841":6311,"34842":8410,"34843":1605,"34844":686,"34845":241,"34846":7992,"34847":7266,"34848":8745,"34849":1106,"34850":8145,"34851":2782,"34852":10393,"34853":6805,"34854":6138,"34855":4025,"34856":1475,"34857":9212,"34858":6371,"34859":10452,"34860":9485,"34861":5292,"34862":7981,"34863":2938,"34864":3183,"34865":7846,"34866":10708,"34867":5836,"34868":6426,"34869":8880,"34870":1776,"34871":1956,"34872":3492,"34873":6636,"34874":8008,"34875":4206,"34876":7962,"34877":9885,"34878":5295,"34879":4582,"34880":2257,"34881":4904,"34882":5581,"34883":8662,"34884":3059,"34885":4337,"34886":9431,"34887":6105,"34888":4009,"34889":4891,"34890":227,"34891":9250,"34892":6395,"34893":9019,"34894":6573,"34895":412,"34896":1640,"34897":7635,"34898":424,"34899":5012,"34900":7010,"34901":9096,"34902":2153,"34903":7059,"34904":5035,"34905":8880,"34906":10013,"34907":2537,"34908":6902,"34909":9634,"34910":5399,"34911":1531,"34912":3532,"34913":5286,"34914":1986,"34915":8338,"34916":5673,"34917":2955,"34918":6629,"34919":8226,"34920":5199,"34921":919,"34922":3586,"34923":6703,"34924":3361,"34925":2363,"34926":1728,"34927":516,"34928":4371,"34929":7234,"34930":3785,"34931":4711,"34932":862,"34933":627,"34934":880,"34935":7436,"34936":1193,"34937":191,"34938":1467,"34939":40,"34940":7535,"34941":10649,"34942":5076,"34943":6340,"34944":1802,"34945":1810,"34946":1117,"34947":8941,"34948":9817,"34949":4430,"34950":9838,"34951":3462,"34952":8877,"34953":8391,"34954":10865,"34955":10057,"34956":7998,"34957":6568,"34958":4400,"34959":4334,"34960":10755,"34961":5820,"34962":2099,"34963":100,"34964":215,"34965":7097,"34966":2062,"34967":8046,"34968":7271,"34969":6480,"34970":5369,"34971":10053,"34972":1609,"34973":3844,"34974":9687,"34975":3948,"34976":9244,"34977":9508,"34978":203,"34979":5134,"34980":6728,"34981":623,"34982":2935,"34983":7952,"34984":7549,"34985":4912,"34986":5351,"34987":7850,"34988":5749,"34989":2313,"34990":6925,"34991":1158,"34992":3944,"34993":1494,"34994":9478,"34995":2167,"34996":1393,"34997":6184,"34998":7598,"34999":5954,"35000":8074,"35001":7618,"35002":9105,"35003":2426,"35004":3664,"35005":2946,"35006":7770,"35007":10285,"35008":7937,"35009":4145,"35010":9372,"35011":7862,"35012":8019,"35013":8294,"35014":10112,"35015":1354,"35016":9138,"35017":9467,"35018":2197,"35019":6485,"35020":5272,"35021":8545,"35022":10383,"35023":822,"35024":3764,"35025":4209,"35026":9932,"35027":3381,"35028":1017,"35029":6334,"35030":7305,"35031":9286,"35032":2092,"35033":2166,"35034":1045,"35035":8567,"35036":3268,"35037":8344,"35038":3067,"35039":5990,"35040":3999,"35041":7368,"35042":2303,"35043":5960,"35044":10930,"35045":9946,"35046":2368,"35047":3688,"35048":9728,"35049":1834,"35050":10168,"35051":6374,"35052":750,"35053":10624,"35054":538,"35055":4564,"35056":3748,"35057":10069,"35058":751,"35059":7390,"35060":4841,"35061":3094,"35062":1536,"35063":952,"35064":3675,"35065":3723,"35066":6089,"35067":4287,"35068":2877,"35069":5790,"35070":3236,"35071":8705,"35072":1523,"35073":10798,"35074":8377,"35075":9781,"35076":1002,"35077":7975,"35078":4213,"35079":1101,"35080":3114,"35081":9485,"35082":9582,"35083":8238,"35084":9836,"35085":6417,"35086":4558,"35087":229,"35088":2980,"35089":5080,"35090":4890,"35091":9256,"35092":953,"35093":5664,"35094":1428,"35095":8054,"35096":1383,"35097":6919,"35098":1533,"35099":1742,"35100":1981,"35101":4786,"35102":3309,"35103":758,"35104":805,"35105":4601,"35106":1733,"35107":9218,"35108":227,"35109":9271,"35110":1778,"35111":6263,"35112":2267,"35113":3279,"35114":3868,"35115":1754,"35116":1106,"35117":10157,"35118":6559,"35119":8757,"35120":3465,"35121":2561,"35122":6527,"35123":10161,"35124":9256,"35125":1886,"35126":950,"35127":363,"35128":1658,"35129":2388,"35130":4758,"35131":8931,"35132":3750,"35133":1156,"35134":6594,"35135":6943,"35136":8485,"35137":5566,"35138":3076,"35139":3732,"35140":7856,"35141":7625,"35142":3622,"35143":2853,"35144":6149,"35145":8016,"35146":4226,"35147":4895,"35148":9099,"35149":2095,"35150":8578,"35151":1980,"35152":10029,"35153":84,"35154":7199,"35155":8850,"35156":7959,"35157":3844,"35158":759,"35159":8997,"35160":6470,"35161":9948,"35162":10233,"35163":1850,"35164":1986,"35165":9570,"35166":8555,"35167":8349,"35168":2160,"35169":8313,"35170":2516,"35171":2631,"35172":63,"35173":7035,"35174":6829,"35175":6771,"35176":6181,"35177":5344,"35178":10249,"35179":9287,"35180":877,"35181":10647,"35182":2234,"35183":2466,"35184":9415,"35185":422,"35186":6525,"35187":7795,"35188":8342,"35189":2405,"35190":2934,"35191":4632,"35192":10457,"35193":4581,"35194":5928,"35195":7514,"35196":528,"35197":6256,"35198":9178,"35199":1666,"35200":4479,"35201":689,"35202":9806,"35203":8121,"35204":10124,"35205":10828,"35206":417,"35207":311,"35208":6301,"35209":8278,"35210":5725,"35211":5170,"35212":3397,"35213":8401,"35214":4659,"35215":5551,"35216":3698,"35217":9694,"35218":4808,"35219":8248,"35220":6359,"35221":4250,"35222":10249,"35223":1830,"35224":487,"35225":7348,"35226":5452,"35227":3594,"35228":3551,"35229":9378,"35230":10004,"35231":9984,"35232":617,"35233":2557,"35234":8747,"35235":2130,"35236":4294,"35237":7916,"35238":5856,"35239":3501,"35240":3983,"35241":2881,"35242":1052,"35243":4696,"35244":3999,"35245":1356,"35246":5117,"35247":999,"35248":1551,"35249":327,"35250":4725,"35251":228,"35252":1787,"35253":3869,"35254":3590,"35255":5079,"35256":7631,"35257":2778,"35258":6604,"35259":882,"35260":9309,"35261":6585,"35262":6505,"35263":10641,"35264":7304,"35265":5882,"35266":7304,"35267":4807,"35268":235,"35269":6392,"35270":6385,"35271":10992,"35272":4043,"35273":6330,"35274":10178,"35275":2303,"35276":720,"35277":6749,"35278":9272,"35279":5643,"35280":7370,"35281":9567,"35282":1869,"35283":2793,"35284":9208,"35285":5438,"35286":8250,"35287":3243,"35288":4222,"35289":6031,"35290":10961,"35291":7923,"35292":10887,"35293":5351,"35294":9631,"35295":8079,"35296":8574,"35297":3980,"35298":6989,"35299":9874,"35300":6648,"35301":9781,"35302":770,"35303":10520,"35304":5469,"35305":4510,"35306":735,"35307":8981,"35308":5324,"35309":3425,"35310":2209,"35311":8095,"35312":6358,"35313":9796,"35314":840,"35315":5528,"35316":4585,"35317":3937,"35318":9846,"35319":4493,"35320":4632,"35321":5429,"35322":7022,"35323":5428,"35324":1112,"35325":3536,"35326":4848,"35327":6985,"35328":2212,"35329":1884,"35330":8385,"35331":1481,"35332":10837,"35333":9174,"35334":9749,"35335":10104,"35336":3688,"35337":4557,"35338":7040,"35339":4091,"35340":8624,"35341":138,"35342":7035,"35343":9658,"35344":6717,"35345":8143,"35346":1761,"35347":10919,"35348":10878,"35349":4210,"35350":6411,"35351":2587,"35352":7283,"35353":10849,"35354":6170,"35355":1878,"35356":3679,"35357":9901,"35358":584,"35359":5338,"35360":10220,"35361":3872,"35362":247,"35363":8090,"35364":2007,"35365":7759,"35366":10997,"35367":5389,"35368":7487,"35369":2554,"35370":7508,"35371":9065,"35372":9740,"35373":7689,"35374":4978,"35375":7875,"35376":9225,"35377":6087,"35378":4528,"35379":10610,"35380":1445,"35381":2135,"35382":2860,"35383":1895,"35384":10294,"35385":577,"35386":10614,"35387":1282,"35388":4407,"35389":5831,"35390":8377,"35391":1948,"35392":10215,"35393":8513,"35394":7916,"35395":9904,"35396":3712,"35397":4449,"35398":7960,"35399":7121,"35400":3958,"35401":4928,"35402":5304,"35403":3035,"35404":5852,"35405":7581,"35406":5297,"35407":8249,"35408":5053,"35409":1269,"35410":5493,"35411":2434,"35412":2929,"35413":7069,"35414":1870,"35415":2556,"35416":1087,"35417":2956,"35418":4413,"35419":8950,"35420":3044,"35421":8673,"35422":7359,"35423":710,"35424":6204,"35425":5032,"35426":9033,"35427":9046,"35428":10983,"35429":5654,"35430":1949,"35431":5538,"35432":3009,"35433":1394,"35434":10029,"35435":6444,"35436":3523,"35437":6142,"35438":7362,"35439":8659,"35440":407,"35441":1746,"35442":3372,"35443":10878,"35444":6739,"35445":5962,"35446":7100,"35447":4028,"35448":7614,"35449":7237,"35450":9124,"35451":8173,"35452":4331,"35453":9747,"35454":1948,"35455":3181,"35456":8110,"35457":9782,"35458":8587,"35459":3853,"35460":2231,"35461":10454,"35462":10439,"35463":10037,"35464":6686,"35465":2245,"35466":10737,"35467":1141,"35468":3653,"35469":7553,"35470":2737,"35471":7448,"35472":3371,"35473":4605,"35474":4659,"35475":352,"35476":5001,"35477":6527,"35478":10172,"35479":3801,"35480":4851,"35481":7012,"35482":8971,"35483":2619,"35484":5790,"35485":4298,"35486":7593,"35487":2880,"35488":6537,"35489":5273,"35490":6811,"35491":4334,"35492":3039,"35493":4381,"35494":5468,"35495":10715,"35496":1129,"35497":4915,"35498":5439,"35499":8208,"35500":5106,"35501":5690,"35502":10453,"35503":7470,"35504":368,"35505":6529,"35506":2532,"35507":8959,"35508":2283,"35509":22,"35510":2350,"35511":6010,"35512":6267,"35513":710,"35514":2569,"35515":8431,"35516":9212,"35517":6671,"35518":7084,"35519":10804,"35520":3472,"35521":304,"35522":10867,"35523":10502,"35524":6625,"35525":7498,"35526":3856,"35527":4111,"35528":8025,"35529":5108,"35530":3023,"35531":1709,"35532":5763,"35533":6850,"35534":4704,"35535":1680,"35536":1214,"35537":10699,"35538":2575,"35539":9725,"35540":4364,"35541":3315,"35542":2876,"35543":10880,"35544":2246,"35545":2860,"35546":3688,"35547":7257,"35548":3445,"35549":6220,"35550":6571,"35551":5424,"35552":2520,"35553":10282,"35554":8988,"35555":4928,"35556":10027,"35557":3083,"35558":3173,"35559":3613,"35560":7226,"35561":2461,"35562":5085,"35563":222,"35564":5086,"35565":5848,"35566":10182,"35567":8988,"35568":4738,"35569":5279,"35570":2592,"35571":565,"35572":2473,"35573":9602,"35574":3302,"35575":4055,"35576":2912,"35577":8979,"35578":9676,"35579":5914,"35580":7593,"35581":807,"35582":1098,"35583":817,"35584":8361,"35585":9021,"35586":1908,"35587":2897,"35588":9971,"35589":609,"35590":59,"35591":2529,"35592":653,"35593":4586,"35594":10324,"35595":3044,"35596":9604,"35597":1366,"35598":3912,"35599":8818,"35600":738,"35601":3943,"35602":10540,"35603":4692,"35604":4841,"35605":5408,"35606":5564,"35607":376,"35608":782,"35609":6376,"35610":1837,"35611":623,"35612":8941,"35613":4584,"35614":2942,"35615":3350,"35616":4881,"35617":1653,"35618":6715,"35619":10019,"35620":8201,"35621":6957,"35622":1080,"35623":8144,"35624":5931,"35625":4559,"35626":8912,"35627":64,"35628":2061,"35629":9866,"35630":8878,"35631":9517,"35632":10978,"35633":7798,"35634":10186,"35635":2488,"35636":6380,"35637":2422,"35638":7093,"35639":4806,"35640":9147,"35641":4268,"35642":2506,"35643":5534,"35644":1766,"35645":4104,"35646":1664,"35647":1570,"35648":3209,"35649":8326,"35650":8423,"35651":2740,"35652":10365,"35653":8595,"35654":5813,"35655":9446,"35656":4949,"35657":5868,"35658":1574,"35659":7961,"35660":6855,"35661":3048,"35662":4146,"35663":371,"35664":477,"35665":6407,"35666":7017,"35667":2294,"35668":2942,"35669":7762,"35670":9657,"35671":8034,"35672":3922,"35673":3329,"35674":8589,"35675":2318,"35676":340,"35677":5403,"35678":6177,"35679":10055,"35680":7924,"35681":7009,"35682":5422,"35683":10201,"35684":2710,"35685":9331,"35686":6239,"35687":10215,"35688":9267,"35689":735,"35690":10359,"35691":2067,"35692":10333,"35693":7546,"35694":4374,"35695":5331,"35696":1621,"35697":6566,"35698":7632,"35699":289,"35700":4767,"35701":3149,"35702":5236,"35703":446,"35704":8502,"35705":9673,"35706":9864,"35707":6863,"35708":10807,"35709":9858,"35710":538,"35711":5755,"35712":3632,"35713":4621,"35714":4720,"35715":1251,"35716":5412,"35717":6356,"35718":4385,"35719":3432,"35720":6782,"35721":10547,"35722":10195,"35723":1400,"35724":7195,"35725":3787,"35726":1691,"35727":10862,"35728":1662,"35729":8962,"35730":4927,"35731":10023,"35732":3179,"35733":7937,"35734":7716,"35735":9339,"35736":9862,"35737":10370,"35738":5669,"35739":7688,"35740":10382,"35741":366,"35742":7769,"35743":3124,"35744":5988,"35745":9104,"35746":6019,"35747":9240,"35748":8936,"35749":9461,"35750":373,"35751":5930,"35752":8726,"35753":1134,"35754":7140,"35755":7249,"35756":3469,"35757":5678,"35758":4084,"35759":3847,"35760":2509,"35761":3461,"35762":10040,"35763":5037,"35764":1219,"35765":2738,"35766":4401,"35767":2559,"35768":7513,"35769":1097,"35770":6770,"35771":8446,"35772":10165,"35773":2136,"35774":10028,"35775":1048,"35776":4225,"35777":2334,"35778":6277,"35779":3049,"35780":7151,"35781":5221,"35782":709,"35783":9891,"35784":10657,"35785":8601,"35786":4334,"35787":7528,"35788":10395,"35789":4288,"35790":3004,"35791":8792,"35792":1206,"35793":5007,"35794":6640,"35795":6554,"35796":5746,"35797":8082,"35798":630,"35799":8015,"35800":1792,"35801":5623,"35802":8705,"35803":4601,"35804":5911,"35805":7809,"35806":10935,"35807":5700,"35808":5910,"35809":2881,"35810":10094,"35811":10669,"35812":10677,"35813":1772,"35814":5731,"35815":9031,"35816":3053,"35817":1804,"35818":1265,"35819":10071,"35820":10589,"35821":2204,"35822":1370,"35823":3468,"35824":4083,"35825":8050,"35826":8064,"35827":1347,"35828":2841,"35829":6918,"35830":4196,"35831":3961,"35832":10352,"35833":7346,"35834":6791,"35835":6157,"35836":7447,"35837":9762,"35838":5728,"35839":7915,"35840":766,"35841":3411,"35842":9112,"35843":2439,"35844":8382,"35845":8552,"35846":1634,"35847":10936,"35848":6450,"35849":9036,"35850":4089,"35851":8464,"35852":6940,"35853":537,"35854":2782,"35855":5683,"35856":4350,"35857":274,"35858":235,"35859":2340,"35860":8330,"35861":6280,"35862":3852,"35863":5792,"35864":3087,"35865":6071,"35866":9919,"35867":4260,"35868":10072,"35869":5510,"35870":3519,"35871":8347,"35872":9162,"35873":7378,"35874":2911,"35875":1529,"35876":6680,"35877":5743,"35878":4416,"35879":10711,"35880":175,"35881":6090,"35882":4349,"35883":6563,"35884":7444,"35885":4672,"35886":4352,"35887":2362,"35888":1940,"35889":10687,"35890":9885,"35891":7470,"35892":5952,"35893":8193,"35894":6298,"35895":9337,"35896":7939,"35897":1883,"35898":8807,"35899":1542,"35900":9547,"35901":4477,"35902":9774,"35903":4203,"35904":7138,"35905":6655,"35906":10022,"35907":1226,"35908":4409,"35909":10436,"35910":2528,"35911":4666,"35912":3862,"35913":10513,"35914":9359,"35915":9858,"35916":6874,"35917":4919,"35918":10900,"35919":9847,"35920":2246,"35921":8267,"35922":6430,"35923":3848,"35924":3549,"35925":7908,"35926":6397,"35927":8635,"35928":10277,"35929":4937,"35930":5335,"35931":2600,"35932":9892,"35933":2162,"35934":10964,"35935":8361,"35936":3195,"35937":4867,"35938":4189,"35939":1114,"35940":7121,"35941":4394,"35942":1595,"35943":4217,"35944":9152,"35945":8721,"35946":9410,"35947":8842,"35948":1238,"35949":5861,"35950":8228,"35951":4520,"35952":9731,"35953":6106,"35954":5070,"35955":3625,"35956":224,"35957":9117,"35958":10773,"35959":1990,"35960":6259,"35961":3097,"35962":2430,"35963":6406,"35964":9383,"35965":950,"35966":7654,"35967":3550,"35968":5353,"35969":3811,"35970":5404,"35971":6824,"35972":3820,"35973":5240,"35974":4474,"35975":7279,"35976":5196,"35977":8028,"35978":10937,"35979":9771,"35980":865,"35981":6870,"35982":10077,"35983":8554,"35984":4213,"35985":6087,"35986":10571,"35987":684,"35988":10003,"35989":10587,"35990":104,"35991":4069,"35992":9202,"35993":6046,"35994":2940,"35995":9220,"35996":9657,"35997":8787,"35998":3966,"35999":10581,"36000":8031,"36001":10965,"36002":2338,"36003":8860,"36004":10563,"36005":7,"36006":8279,"36007":1654,"36008":2415,"36009":10746,"36010":6507,"36011":3642,"36012":2642,"36013":9615,"36014":6562,"36015":9911,"36016":10125,"36017":6049,"36018":3500,"36019":8111,"36020":5985,"36021":5673,"36022":484,"36023":7415,"36024":2778,"36025":7254,"36026":9470,"36027":3293,"36028":5431,"36029":2976,"36030":9211,"36031":10809,"36032":2767,"36033":841,"36034":9777,"36035":511,"36036":3365,"36037":9553,"36038":757,"36039":4849,"36040":7552,"36041":2974,"36042":3606,"36043":484,"36044":4314,"36045":8240,"36046":1135,"36047":8024,"36048":6521,"36049":4427,"36050":8737,"36051":4932,"36052":6831,"36053":6133,"36054":6768,"36055":4830,"36056":533,"36057":4323,"36058":10702,"36059":5289,"36060":719,"36061":2863,"36062":3054,"36063":5988,"36064":454,"36065":9237,"36066":9043,"36067":2592,"36068":1828,"36069":5803,"36070":7996,"36071":9468,"36072":1416,"36073":8591,"36074":8998,"36075":813,"36076":4794,"36077":8122,"36078":8325,"36079":4551,"36080":5231,"36081":1340,"36082":2760,"36083":3104,"36084":4834,"36085":2228,"36086":5406,"36087":2699,"36088":10896,"36089":1104,"36090":8283,"36091":283,"36092":4825,"36093":7276,"36094":3986,"36095":4597,"36096":8572,"36097":3672,"36098":2646,"36099":10172,"36100":5010,"36101":6297,"36102":1890,"36103":10055,"36104":10000,"36105":197,"36106":3551,"36107":6342,"36108":7485,"36109":10784,"36110":243,"36111":5514,"36112":9175,"36113":6685,"36114":10570,"36115":4697,"36116":9949,"36117":7082,"36118":4586,"36119":7020,"36120":8937,"36121":891,"36122":10891,"36123":4802,"36124":5935,"36125":2008,"36126":2542,"36127":8876,"36128":9644,"36129":7237,"36130":8302,"36131":7871,"36132":2056,"36133":9223,"36134":7760,"36135":5112,"36136":10032,"36137":8174,"36138":10484,"36139":4319,"36140":1408,"36141":2007,"36142":100,"36143":590,"36144":260,"36145":9099,"36146":4163,"36147":8809,"36148":1182,"36149":7721,"36150":308,"36151":9321,"36152":5730,"36153":531,"36154":9201,"36155":8644,"36156":8749,"36157":7127,"36158":4330,"36159":2604,"36160":3632,"36161":622,"36162":1477,"36163":4791,"36164":10829,"36165":9713,"36166":4124,"36167":3664,"36168":3961,"36169":3367,"36170":7809,"36171":6848,"36172":10165,"36173":341,"36174":831,"36175":4782,"36176":7751,"36177":10804,"36178":7587,"36179":2171,"36180":3753,"36181":3626,"36182":3127,"36183":4817,"36184":7625,"36185":1573,"36186":8444,"36187":8256,"36188":9726,"36189":1309,"36190":4599,"36191":8688,"36192":6214,"36193":5745,"36194":6703,"36195":6143,"36196":2837,"36197":6472,"36198":901,"36199":10115,"36200":9415,"36201":7517,"36202":9359,"36203":3332,"36204":286,"36205":5197,"36206":2969,"36207":10300,"36208":9352,"36209":9421,"36210":6982,"36211":3664,"36212":4298,"36213":6201,"36214":590,"36215":1600,"36216":9316,"36217":2415,"36218":6446,"36219":8934,"36220":5509,"36221":4310,"36222":3568,"36223":3132,"36224":3014,"36225":9905,"36226":515,"36227":5229,"36228":4669,"36229":5947,"36230":9391,"36231":650,"36232":632,"36233":4372,"36234":387,"36235":2808,"36236":6960,"36237":4761,"36238":4172,"36239":10670,"36240":6648,"36241":9301,"36242":4702,"36243":7530,"36244":2910,"36245":7471,"36246":1631,"36247":3969,"36248":4579,"36249":5743,"36250":671,"36251":1702,"36252":1007,"36253":3808,"36254":4888,"36255":4019,"36256":1070,"36257":2709,"36258":3888,"36259":4220,"36260":2324,"36261":9830,"36262":2069,"36263":6808,"36264":1914,"36265":3685,"36266":8477,"36267":2943,"36268":2043,"36269":6126,"36270":4805,"36271":8082,"36272":8345,"36273":3520,"36274":7793,"36275":6494,"36276":2762,"36277":8743,"36278":4642,"36279":6692,"36280":5391,"36281":10942,"36282":5109,"36283":2539,"36284":3499,"36285":9747,"36286":9110,"36287":1772,"36288":9069,"36289":3045,"36290":4939,"36291":10518,"36292":4757,"36293":7323,"36294":9267,"36295":8896,"36296":889,"36297":8643,"36298":1557,"36299":8713,"36300":206,"36301":4796,"36302":1471,"36303":1371,"36304":3161,"36305":5116,"36306":5967,"36307":5504,"36308":6514,"36309":4000,"36310":2184,"36311":2129,"36312":212,"36313":91,"36314":5163,"36315":1428,"36316":5880,"36317":8619,"36318":2480,"36319":1174,"36320":4969,"36321":9890,"36322":3152,"36323":2982,"36324":5743,"36325":4411,"36326":6717,"36327":10607,"36328":8059,"36329":6203,"36330":7758,"36331":1556,"36332":2847,"36333":9833,"36334":10108,"36335":4413,"36336":1360,"36337":7278,"36338":2099,"36339":287,"36340":1904,"36341":7722,"36342":7397,"36343":3166,"36344":6148,"36345":9863,"36346":9919,"36347":2949,"36348":2300,"36349":7758,"36350":2947,"36351":5606,"36352":6083,"36353":9659,"36354":6592,"36355":6167,"36356":4671,"36357":9732,"36358":10396,"36359":4276,"36360":7226,"36361":3749,"36362":4767,"36363":8609,"36364":7521,"36365":5095,"36366":2132,"36367":4224,"36368":8822,"36369":2222,"36370":9050,"36371":10152,"36372":6386,"36373":8466,"36374":5819,"36375":9522,"36376":3679,"36377":1082,"36378":6564,"36379":9566,"36380":550,"36381":8636,"36382":10194,"36383":8840,"36384":2939,"36385":9221,"36386":6839,"36387":4399,"36388":5806,"36389":10000,"36390":8985,"36391":10121,"36392":4957,"36393":8682,"36394":8939,"36395":8820,"36396":4098,"36397":10122,"36398":6720,"36399":7733,"36400":827,"36401":8484,"36402":6620,"36403":5495,"36404":10303,"36405":959,"36406":1390,"36407":7697,"36408":3521,"36409":7340,"36410":8805,"36411":3658,"36412":5878,"36413":4019,"36414":184,"36415":10661,"36416":10141,"36417":8483,"36418":9040,"36419":4428,"36420":10536,"36421":5520,"36422":7936,"36423":10871,"36424":5885,"36425":4735,"36426":8035,"36427":9308,"36428":10892,"36429":8309,"36430":2764,"36431":10734,"36432":10095,"36433":9299,"36434":1005,"36435":9381,"36436":10472,"36437":4456,"36438":8496,"36439":2033,"36440":3644,"36441":10961,"36442":9020,"36443":590,"36444":10670,"36445":1958,"36446":5853,"36447":7136,"36448":10905,"36449":3489,"36450":2270,"36451":3330,"36452":1292,"36453":8193,"36454":833,"36455":5562,"36456":8182,"36457":6140,"36458":225,"36459":4083,"36460":3866,"36461":9361,"36462":4925,"36463":78,"36464":9623,"36465":5523,"36466":7092,"36467":1956,"36468":7844,"36469":4837,"36470":1080,"36471":10447,"36472":1943,"36473":3668,"36474":7154,"36475":278,"36476":4013,"36477":10990,"36478":5953,"36479":5271,"36480":6852,"36481":1037,"36482":677,"36483":9315,"36484":2905,"36485":8090,"36486":7605,"36487":3180,"36488":7612,"36489":5892,"36490":6027,"36491":9886,"36492":5170,"36493":2977,"36494":5975,"36495":6947,"36496":5862,"36497":1460,"36498":7602,"36499":3017,"36500":3854,"36501":9870,"36502":7033,"36503":10069,"36504":7587,"36505":8755,"36506":9007,"36507":1447,"36508":8930,"36509":4603,"36510":3916,"36511":5551,"36512":4391,"36513":2241,"36514":1518,"36515":9246,"36516":6846,"36517":4031,"36518":4834,"36519":4147,"36520":3758,"36521":7438,"36522":6474,"36523":4142,"36524":6399,"36525":6586,"36526":3601,"36527":1166,"36528":1241,"36529":9856,"36530":10403,"36531":7978,"36532":2655,"36533":8171,"36534":9161,"36535":3421,"36536":4516,"36537":1859,"36538":1337,"36539":2072,"36540":4912,"36541":378,"36542":3298,"36543":736,"36544":697,"36545":7953,"36546":4122,"36547":9280,"36548":5650,"36549":10165,"36550":4228,"36551":1400,"36552":3234,"36553":10687,"36554":4327,"36555":9992,"36556":7055,"36557":1904,"36558":3880,"36559":6102,"36560":10920,"36561":627,"36562":6715,"36563":7865,"36564":9590,"36565":3219,"36566":3734,"36567":2477,"36568":1054,"36569":8317,"36570":10343,"36571":7931,"36572":8764,"36573":1564,"36574":764,"36575":7888,"36576":3093,"36577":10857,"36578":344,"36579":2789,"36580":2483,"36581":5819,"36582":768,"36583":5126,"36584":4805,"36585":10282,"36586":5292,"36587":6312,"36588":3392,"36589":335,"36590":2985,"36591":5092,"36592":847,"36593":8716,"36594":5546,"36595":9826,"36596":459,"36597":7217,"36598":6444,"36599":1300,"36600":2594,"36601":2613,"36602":5517,"36603":3766,"36604":5629,"36605":4632,"36606":997,"36607":4239,"36608":494,"36609":1088,"36610":491,"36611":6707,"36612":2596,"36613":3640,"36614":5324,"36615":1333,"36616":5797,"36617":7252,"36618":3646,"36619":1138,"36620":8704,"36621":1287,"36622":3116,"36623":5477,"36624":10008,"36625":4603,"36626":6758,"36627":9912,"36628":4674,"36629":3473,"36630":10227,"36631":8019,"36632":8214,"36633":3701,"36634":5570,"36635":10945,"36636":7926,"36637":2742,"36638":6810,"36639":3598,"36640":7211,"36641":6047,"36642":5382,"36643":4950,"36644":9792,"36645":8012,"36646":10532,"36647":9185,"36648":387,"36649":6223,"36650":3018,"36651":10438,"36652":2538,"36653":10567,"36654":2768,"36655":9166,"36656":3074,"36657":16,"36658":8676,"36659":8764,"36660":6710,"36661":582,"36662":7986,"36663":4651,"36664":10975,"36665":5321,"36666":3099,"36667":557,"36668":9686,"36669":8640,"36670":150,"36671":5009,"36672":8204,"36673":3243,"36674":6899,"36675":2595,"36676":2122,"36677":9552,"36678":4300,"36679":10673,"36680":6966,"36681":10000,"36682":7448,"36683":5663,"36684":749,"36685":3266,"36686":6833,"36687":1399,"36688":6388,"36689":7893,"36690":6714,"36691":9497,"36692":3868,"36693":9821,"36694":6657,"36695":6353,"36696":4383,"36697":5107,"36698":23,"36699":2398,"36700":8456,"36701":7861,"36702":5039,"36703":5725,"36704":6112,"36705":7700,"36706":2428,"36707":3708,"36708":10094,"36709":6788,"36710":1800,"36711":1333,"36712":1106,"36713":3369,"36714":995,"36715":9180,"36716":8401,"36717":4516,"36718":7458,"36719":1234,"36720":5358,"36721":1007,"36722":10859,"36723":2371,"36724":7609,"36725":10689,"36726":238,"36727":4458,"36728":6069,"36729":1963,"36730":7512,"36731":2889,"36732":4829,"36733":4182,"36734":5366,"36735":5892,"36736":4328,"36737":4479,"36738":1667,"36739":8782,"36740":8837,"36741":1487,"36742":8934,"36743":6236,"36744":4071,"36745":7976,"36746":161,"36747":6726,"36748":3578,"36749":10714,"36750":6741,"36751":7470,"36752":3680,"36753":3681,"36754":9241,"36755":1073,"36756":1174,"36757":2091,"36758":4069,"36759":7057,"36760":8687,"36761":4997,"36762":9122,"36763":5242,"36764":9921,"36765":4064,"36766":10142,"36767":2542,"36768":8012,"36769":2014,"36770":2886,"36771":2275,"36772":4460,"36773":304,"36774":2642,"36775":5689,"36776":6514,"36777":6646,"36778":2735,"36779":5132,"36780":77,"36781":10524,"36782":4533,"36783":7626,"36784":6623,"36785":5079,"36786":1395,"36787":5600,"36788":7748,"36789":6204,"36790":2956,"36791":4546,"36792":9114,"36793":3250,"36794":8888,"36795":2648,"36796":9032,"36797":4271,"36798":3846,"36799":473,"36800":238,"36801":7995,"36802":226,"36803":5143,"36804":6690,"36805":5549,"36806":5330,"36807":9651,"36808":2797,"36809":5307,"36810":3405,"36811":504,"36812":4916,"36813":2722,"36814":308,"36815":2892,"36816":2947,"36817":2305,"36818":6954,"36819":8674,"36820":10215,"36821":7535,"36822":10568,"36823":8504,"36824":726,"36825":8983,"36826":7135,"36827":7770,"36828":4391,"36829":2759,"36830":5116,"36831":3718,"36832":1576,"36833":8280,"36834":2458,"36835":53,"36836":1271,"36837":5426,"36838":84,"36839":6659,"36840":6542,"36841":8260,"36842":3359,"36843":8748,"36844":3679,"36845":338,"36846":1193,"36847":5341,"36848":5021,"36849":7089,"36850":6169,"36851":10336,"36852":7040,"36853":6147,"36854":1731,"36855":6097,"36856":9453,"36857":1970,"36858":10378,"36859":3861,"36860":9056,"36861":8818,"36862":5672,"36863":7459,"36864":7658,"36865":8928,"36866":9277,"36867":3915,"36868":6953,"36869":3501,"36870":9784,"36871":6930,"36872":8307,"36873":10160,"36874":9737,"36875":3699,"36876":1137,"36877":7508,"36878":950,"36879":6717,"36880":7990,"36881":4591,"36882":6582,"36883":8200,"36884":7219,"36885":7048,"36886":7557,"36887":1169,"36888":9181,"36889":6908,"36890":850,"36891":6555,"36892":7858,"36893":1775,"36894":10968,"36895":6739,"36896":9512,"36897":5518,"36898":2392,"36899":5123,"36900":9676,"36901":7480,"36902":10650,"36903":6710,"36904":1811,"36905":152,"36906":719,"36907":7766,"36908":4771,"36909":2031,"36910":10357,"36911":10417,"36912":5260,"36913":1660,"36914":1837,"36915":1620,"36916":10837,"36917":6402,"36918":10717,"36919":6817,"36920":7851,"36921":2433,"36922":1711,"36923":2295,"36924":4362,"36925":1489,"36926":9516,"36927":424,"36928":9040,"36929":5073,"36930":2311,"36931":8802,"36932":3320,"36933":1933,"36934":10547,"36935":6363,"36936":3581,"36937":3387,"36938":6991,"36939":6800,"36940":3385,"36941":4022,"36942":2418,"36943":10771,"36944":7727,"36945":4031,"36946":7816,"36947":2066,"36948":3142,"36949":135,"36950":3030,"36951":10111,"36952":5993,"36953":5119,"36954":8598,"36955":9372,"36956":1951,"36957":6087,"36958":5387,"36959":8803,"36960":3553,"36961":9679,"36962":65,"36963":1330,"36964":3400,"36965":4536,"36966":1854,"36967":5336,"36968":6272,"36969":9611,"36970":4692,"36971":10416,"36972":2978,"36973":2932,"36974":409,"36975":4547,"36976":628,"36977":7749,"36978":7120,"36979":2041,"36980":7292,"36981":8643,"36982":5714,"36983":8782,"36984":2086,"36985":8734,"36986":8853,"36987":1796,"36988":4821,"36989":5326,"36990":5630,"36991":634,"36992":9160,"36993":1706,"36994":3516,"36995":9275,"36996":10454,"36997":3936,"36998":7826,"36999":10000,"37000":5135,"37001":5778,"37002":2963,"37003":5494,"37004":7693,"37005":44,"37006":9631,"37007":2936,"37008":8538,"37009":7187,"37010":8967,"37011":1743,"37012":10408,"37013":1886,"37014":10816,"37015":6605,"37016":9673,"37017":6626,"37018":2722,"37019":2782,"37020":36,"37021":6244,"37022":3357,"37023":7603,"37024":10956,"37025":5597,"37026":3005,"37027":5882,"37028":10460,"37029":4070,"37030":7829,"37031":3986,"37032":6557,"37033":6051,"37034":7003,"37035":7283,"37036":3838,"37037":10876,"37038":7722,"37039":8045,"37040":4647,"37041":390,"37042":4910,"37043":858,"37044":10108,"37045":1894,"37046":2734,"37047":10906,"37048":1962,"37049":7504,"37050":10639,"37051":1268,"37052":2723,"37053":10247,"37054":3577,"37055":9088,"37056":9532,"37057":8038,"37058":8813,"37059":10327,"37060":1946,"37061":9664,"37062":5269,"37063":8164,"37064":6011,"37065":2195,"37066":10464,"37067":60,"37068":4030,"37069":4360,"37070":3741,"37071":5997,"37072":4122,"37073":2579,"37074":2572,"37075":9062,"37076":3524,"37077":3204,"37078":3872,"37079":389,"37080":806,"37081":5887,"37082":6913,"37083":4405,"37084":8536,"37085":10541,"37086":7830,"37087":10184,"37088":6523,"37089":6330,"37090":1505,"37091":8214,"37092":7268,"37093":10233,"37094":3183,"37095":5340,"37096":4435,"37097":3590,"37098":6774,"37099":7019,"37100":8295,"37101":3748,"37102":6250,"37103":10681,"37104":239,"37105":8224,"37106":2188,"37107":241,"37108":7724,"37109":1918,"37110":9159,"37111":1003,"37112":5080,"37113":8932,"37114":846,"37115":10213,"37116":1895,"37117":5318,"37118":1679,"37119":9527,"37120":3452,"37121":1465,"37122":5958,"37123":6283,"37124":6402,"37125":10737,"37126":4024,"37127":6767,"37128":2743,"37129":822,"37130":1919,"37131":4902,"37132":3542,"37133":9475,"37134":2340,"37135":9050,"37136":9003,"37137":6532,"37138":8882,"37139":10996,"37140":4561,"37141":4957,"37142":4258,"37143":9360,"37144":2176,"37145":7109,"37146":8242,"37147":7365,"37148":6981,"37149":3999,"37150":4564,"37151":4158,"37152":784,"37153":2383,"37154":7095,"37155":1606,"37156":9325,"37157":1613,"37158":4089,"37159":209,"37160":1360,"37161":7731,"37162":1450,"37163":10464,"37164":6077,"37165":6133,"37166":10365,"37167":9069,"37168":6587,"37169":974,"37170":1137,"37171":2656,"37172":6001,"37173":4939,"37174":5903,"37175":1268,"37176":1327,"37177":3716,"37178":4264,"37179":1558,"37180":4886,"37181":2174,"37182":6349,"37183":10888,"37184":7644,"37185":433,"37186":440,"37187":1018,"37188":7643,"37189":8077,"37190":6290,"37191":10781,"37192":3620,"37193":947,"37194":3234,"37195":8518,"37196":3580,"37197":9551,"37198":608,"37199":7201,"37200":801,"37201":9338,"37202":1917,"37203":8980,"37204":4467,"37205":6600,"37206":272,"37207":8576,"37208":375,"37209":4331,"37210":10657,"37211":10634,"37212":6022,"37213":5386,"37214":1597,"37215":6830,"37216":8478,"37217":2841,"37218":1821,"37219":7168,"37220":8503,"37221":2982,"37222":2473,"37223":7185,"37224":9175,"37225":9938,"37226":5636,"37227":2719,"37228":3420,"37229":2984,"37230":2458,"37231":3131,"37232":6731,"37233":6296,"37234":5518,"37235":10275,"37236":8173,"37237":5340,"37238":1848,"37239":1105,"37240":6300,"37241":6281,"37242":5810,"37243":6937,"37244":6004,"37245":6170,"37246":4523,"37247":2736,"37248":8029,"37249":9940,"37250":7125,"37251":2258,"37252":123,"37253":3260,"37254":6320,"37255":3516,"37256":8905,"37257":1510,"37258":1739,"37259":5681,"37260":10038,"37261":6436,"37262":8783,"37263":574,"37264":48,"37265":961,"37266":8237,"37267":7940,"37268":7578,"37269":10215,"37270":8132,"37271":7377,"37272":4583,"37273":9130,"37274":6991,"37275":6164,"37276":6317,"37277":6874,"37278":8884,"37279":7719,"37280":9765,"37281":1120,"37282":5341,"37283":963,"37284":9779,"37285":6050,"37286":4236,"37287":157,"37288":5203,"37289":1047,"37290":3331,"37291":7095,"37292":10569,"37293":4432,"37294":6321,"37295":5695,"37296":6992,"37297":10663,"37298":9948,"37299":8454,"37300":3330,"37301":282,"37302":7694,"37303":4269,"37304":7782,"37305":4312,"37306":3772,"37307":10662,"37308":2629,"37309":68,"37310":9021,"37311":5313,"37312":4789,"37313":9455,"37314":7407,"37315":7263,"37316":1063,"37317":3801,"37318":3979,"37319":5852,"37320":10161,"37321":3287,"37322":2523,"37323":2723,"37324":5000,"37325":1164,"37326":10455,"37327":8811,"37328":10915,"37329":5601,"37330":1284,"37331":9224,"37332":6042,"37333":4385,"37334":5466,"37335":2784,"37336":5496,"37337":1931,"37338":3710,"37339":3428,"37340":2501,"37341":3053,"37342":6957,"37343":1572,"37344":10513,"37345":8833,"37346":3953,"37347":4130,"37348":10738,"37349":8822,"37350":2004,"37351":3280,"37352":1213,"37353":893,"37354":6495,"37355":5294,"37356":5532,"37357":3342,"37358":1544,"37359":1565,"37360":10225,"37361":2966,"37362":5472,"37363":5751,"37364":1814,"37365":1651,"37366":4813,"37367":9989,"37368":88,"37369":7035,"37370":857,"37371":901,"37372":3767,"37373":3810,"37374":5016,"37375":3815,"37376":3538,"37377":3328,"37378":2897,"37379":3691,"37380":2331,"37381":8214,"37382":99,"37383":8802,"37384":3283,"37385":7951,"37386":1343,"37387":4049,"37388":8438,"37389":5276,"37390":7896,"37391":4423,"37392":10790,"37393":3410,"37394":9331,"37395":10938,"37396":4974,"37397":6836,"37398":10112,"37399":6946,"37400":10131,"37401":4875,"37402":6559,"37403":3092,"37404":5146,"37405":8615,"37406":2321,"37407":1914,"37408":9129,"37409":206,"37410":5394,"37411":2019,"37412":10310,"37413":4518,"37414":1586,"37415":6215,"37416":1966,"37417":6044,"37418":10441,"37419":8766,"37420":7350,"37421":1901,"37422":2098,"37423":10344,"37424":5236,"37425":8975,"37426":9798,"37427":10096,"37428":4965,"37429":4800,"37430":159,"37431":1508,"37432":1741,"37433":9242,"37434":930,"37435":7219,"37436":8769,"37437":4187,"37438":5158,"37439":10493,"37440":9711,"37441":2861,"37442":8666,"37443":5972,"37444":936,"37445":1660,"37446":7047,"37447":12,"37448":3633,"37449":1068,"37450":9410,"37451":6431,"37452":8869,"37453":4384,"37454":8378,"37455":4633,"37456":5931,"37457":6325,"37458":2903,"37459":2015,"37460":3561,"37461":3149,"37462":8528,"37463":10342,"37464":7044,"37465":7812,"37466":8253,"37467":6951,"37468":10083,"37469":19,"37470":3519,"37471":4419,"37472":10189,"37473":20,"37474":2993,"37475":9082,"37476":3315,"37477":3470,"37478":10170,"37479":1247,"37480":565,"37481":9677,"37482":8270,"37483":10687,"37484":2353,"37485":6189,"37486":2190,"37487":8028,"37488":8552,"37489":7597,"37490":10182,"37491":2412,"37492":7035,"37493":2334,"37494":3498,"37495":8403,"37496":10204,"37497":32,"37498":2056,"37499":7169,"37500":3170,"37501":6350,"37502":3440,"37503":9324,"37504":2171,"37505":8443,"37506":5906,"37507":6846,"37508":5373,"37509":4419,"37510":1754,"37511":978,"37512":6473,"37513":10957,"37514":304,"37515":4908,"37516":3962,"37517":8696,"37518":1964,"37519":10638,"37520":503,"37521":9293,"37522":6634,"37523":9996,"37524":10934,"37525":3266,"37526":9205,"37527":6777,"37528":6751,"37529":6974,"37530":412,"37531":9796,"37532":6041,"37533":6342,"37534":9685,"37535":5662,"37536":3540,"37537":3901,"37538":1623,"37539":6224,"37540":10470,"37541":5671,"37542":7963,"37543":10040,"37544":2476,"37545":4316,"37546":1680,"37547":5605,"37548":1655,"37549":358,"37550":3316,"37551":10629,"37552":6672,"37553":5614,"37554":2727,"37555":755,"37556":1984,"37557":6188,"37558":5883,"37559":6494,"37560":8417,"37561":9221,"37562":354,"37563":485,"37564":2085,"37565":362,"37566":5594,"37567":4978,"37568":5150,"37569":572,"37570":1375,"37571":4248,"37572":8742,"37573":10621,"37574":6976,"37575":3700,"37576":561,"37577":10211,"37578":700,"37579":4992,"37580":6101,"37581":5184,"37582":3196,"37583":4602,"37584":7962,"37585":10657,"37586":3641,"37587":6817,"37588":1997,"37589":6458,"37590":2568,"37591":9917,"37592":7337,"37593":10098,"37594":579,"37595":9504,"37596":6879,"37597":7662,"37598":6476,"37599":645,"37600":3342,"37601":1393,"37602":1707,"37603":10688,"37604":2419,"37605":9776,"37606":3178,"37607":10847,"37608":410,"37609":4220,"37610":8159,"37611":8891,"37612":5269,"37613":9517,"37614":5402,"37615":10923,"37616":2187,"37617":10760,"37618":9924,"37619":6669,"37620":4467,"37621":4938,"37622":8624,"37623":6392,"37624":9736,"37625":10407,"37626":2398,"37627":8274,"37628":7035,"37629":7505,"37630":3857,"37631":3286,"37632":5234,"37633":4723,"37634":5228,"37635":2780,"37636":140,"37637":7577,"37638":8872,"37639":4234,"37640":79,"37641":553,"37642":7194,"37643":8446,"37644":9886,"37645":791,"37646":4462,"37647":3268,"37648":1977,"37649":2987,"37650":5071,"37651":10477,"37652":3909,"37653":8731,"37654":3159,"37655":4224,"37656":542,"37657":1022,"37658":4521,"37659":4581,"37660":6729,"37661":551,"37662":6037,"37663":7824,"37664":9376,"37665":81,"37666":8021,"37667":1105,"37668":8718,"37669":2478,"37670":716,"37671":1350,"37672":262,"37673":6601,"37674":6643,"37675":7950,"37676":389,"37677":7244,"37678":10645,"37679":10080,"37680":10457,"37681":5781,"37682":5479,"37683":7377,"37684":6992,"37685":10160,"37686":3304,"37687":4145,"37688":1303,"37689":4452,"37690":3016,"37691":99,"37692":5767,"37693":10445,"37694":5464,"37695":8593,"37696":3142,"37697":9519,"37698":6641,"37699":5315,"37700":1236,"37701":6478,"37702":6488,"37703":9547,"37704":2045,"37705":9815,"37706":3394,"37707":5750,"37708":1091,"37709":10360,"37710":9511,"37711":8178,"37712":9969,"37713":6062,"37714":3615,"37715":1568,"37716":1561,"37717":2090,"37718":8463,"37719":10184,"37720":3016,"37721":6862,"37722":3242,"37723":9402,"37724":2578,"37725":2123,"37726":9307,"37727":4094,"37728":2744,"37729":3763,"37730":7379,"37731":68,"37732":5979,"37733":561,"37734":5278,"37735":4117,"37736":6820,"37737":3293,"37738":6464,"37739":5517,"37740":1329,"37741":6585,"37742":2816,"37743":2636,"37744":3216,"37745":9333,"37746":4853,"37747":10476,"37748":8514,"37749":7966,"37750":10267,"37751":4016,"37752":697,"37753":10297,"37754":9629,"37755":5748,"37756":6672,"37757":5989,"37758":10898,"37759":5131,"37760":6487,"37761":288,"37762":9406,"37763":3353,"37764":5835,"37765":10179,"37766":8665,"37767":217,"37768":4932,"37769":7870,"37770":8556,"37771":9974,"37772":9283,"37773":10351,"37774":4931,"37775":10015,"37776":8571,"37777":2920,"37778":1671,"37779":2945,"37780":9848,"37781":10299,"37782":5176,"37783":9530,"37784":9313,"37785":9629,"37786":8932,"37787":9805,"37788":9930,"37789":3064,"37790":9554,"37791":986,"37792":7431,"37793":2429,"37794":9381,"37795":9569,"37796":8147,"37797":419,"37798":2181,"37799":7574,"37800":3203,"37801":8541,"37802":6384,"37803":8150,"37804":8997,"37805":1516,"37806":9716,"37807":4640,"37808":10277,"37809":10419,"37810":3423,"37811":4989,"37812":10801,"37813":5741,"37814":4084,"37815":7901,"37816":10918,"37817":2592,"37818":7103,"37819":1152,"37820":1763,"37821":3581,"37822":7513,"37823":9292,"37824":6145,"37825":4864,"37826":8004,"37827":10926,"37828":9869,"37829":7370,"37830":19,"37831":2251,"37832":1070,"37833":7122,"37834":10072,"37835":10509,"37836":5635,"37837":7221,"37838":8908,"37839":10939,"37840":1027,"37841":8447,"37842":1854,"37843":10564,"37844":4820,"37845":10246,"37846":8632,"37847":8303,"37848":5513,"37849":2360,"37850":7249,"37851":2539,"37852":7488,"37853":10679,"37854":2401,"37855":10897,"37856":4048,"37857":6802,"37858":2404,"37859":667,"37860":6910,"37861":3144,"37862":4011,"37863":10668,"37864":3573,"37865":3043,"37866":8582,"37867":6870,"37868":891,"37869":6942,"37870":9115,"37871":2964,"37872":378,"37873":2380,"37874":848,"37875":10115,"37876":262,"37877":818,"37878":7765,"37879":3784,"37880":5776,"37881":2939,"37882":442,"37883":4155,"37884":3397,"37885":7130,"37886":9410,"37887":8900,"37888":6745,"37889":8354,"37890":2890,"37891":4280,"37892":2149,"37893":8248,"37894":4835,"37895":5895,"37896":7190,"37897":1800,"37898":6568,"37899":6600,"37900":9829,"37901":7524,"37902":10701,"37903":10899,"37904":304,"37905":4006,"37906":3358,"37907":8765,"37908":10513,"37909":10418,"37910":3815,"37911":9221,"37912":860,"37913":3211,"37914":8642,"37915":5960,"37916":2039,"37917":2553,"37918":8679,"37919":1989,"37920":5198,"37921":9071,"37922":2357,"37923":9125,"37924":9242,"37925":7633,"37926":2153,"37927":801,"37928":31,"37929":8859,"37930":8343,"37931":10954,"37932":10930,"37933":1218,"37934":2500,"37935":4015,"37936":7923,"37937":5478,"37938":6886,"37939":8187,"37940":10807,"37941":5507,"37942":9948,"37943":1347,"37944":6227,"37945":3084,"37946":1027,"37947":638,"37948":6160,"37949":8845,"37950":10976,"37951":6958,"37952":4564,"37953":4792,"37954":1701,"37955":10046,"37956":9139,"37957":5520,"37958":4537,"37959":10778,"37960":192,"37961":10478,"37962":2556,"37963":2755,"37964":9627,"37965":2068,"37966":9618,"37967":5690,"37968":9904,"37969":10767,"37970":2465,"37971":3259,"37972":7536,"37973":3626,"37974":7521,"37975":4919,"37976":2216,"37977":4350,"37978":3994,"37979":9846,"37980":1252,"37981":4526,"37982":9309,"37983":898,"37984":656,"37985":6535,"37986":4680,"37987":8173,"37988":8193,"37989":9001,"37990":9469,"37991":7453,"37992":3031,"37993":5247,"37994":8276,"37995":9341,"37996":9257,"37997":4379,"37998":6131,"37999":8894,"38000":6710,"38001":2387,"38002":8437,"38003":9123,"38004":4839,"38005":3257,"38006":2058,"38007":2435,"38008":2469,"38009":10220,"38010":1144,"38011":3689,"38012":7455,"38013":3247,"38014":9688,"38015":5221,"38016":7085,"38017":371,"38018":7899,"38019":5922,"38020":4912,"38021":3607,"38022":8700,"38023":3675,"38024":9979,"38025":2968,"38026":2357,"38027":5067,"38028":6348,"38029":8805,"38030":4343,"38031":1932,"38032":1282,"38033":4183,"38034":8957,"38035":2161,"38036":1774,"38037":10106,"38038":10232,"38039":8345,"38040":4600,"38041":2156,"38042":10632,"38043":6175,"38044":10231,"38045":10316,"38046":8995,"38047":4773,"38048":6520,"38049":576,"38050":5734,"38051":7550,"38052":1964,"38053":3454,"38054":4531,"38055":7757,"38056":2397,"38057":892,"38058":3450,"38059":8249,"38060":8722,"38061":2409,"38062":5358,"38063":7984,"38064":1513,"38065":5447,"38066":2998,"38067":8574,"38068":10146,"38069":854,"38070":3845,"38071":3015,"38072":9423,"38073":2743,"38074":8551,"38075":6548,"38076":9412,"38077":754,"38078":9562,"38079":247,"38080":3318,"38081":5489,"38082":9282,"38083":9425,"38084":9290,"38085":3234,"38086":9206,"38087":4333,"38088":7885,"38089":4856,"38090":3602,"38091":10826,"38092":3054,"38093":9295,"38094":9722,"38095":4540,"38096":6957,"38097":125,"38098":3040,"38099":10847,"38100":9590,"38101":1082,"38102":2213,"38103":4262,"38104":5314,"38105":10744,"38106":6759,"38107":3760,"38108":8360,"38109":4226,"38110":6673,"38111":9783,"38112":5752,"38113":7279,"38114":9884,"38115":14,"38116":4328,"38117":5944,"38118":6065,"38119":815,"38120":10264,"38121":4918,"38122":6384,"38123":7477,"38124":5072,"38125":9917,"38126":2205,"38127":2515,"38128":8492,"38129":5197,"38130":7653,"38131":4400,"38132":10466,"38133":2996,"38134":1214,"38135":1189,"38136":6226,"38137":5522,"38138":2667,"38139":10582,"38140":6858,"38141":5067,"38142":9304,"38143":8977,"38144":1778,"38145":2681,"38146":4711,"38147":8445,"38148":4625,"38149":441,"38150":9143,"38151":9090,"38152":3038,"38153":7296,"38154":7872,"38155":4684,"38156":8506,"38157":5488,"38158":1605,"38159":1084,"38160":5214,"38161":10982,"38162":479,"38163":3081,"38164":9682,"38165":4725,"38166":2444,"38167":3359,"38168":9040,"38169":1836,"38170":5685,"38171":6339,"38172":3111,"38173":8692,"38174":4857,"38175":10942,"38176":7625,"38177":3470,"38178":3541,"38179":6437,"38180":6899,"38181":1555,"38182":10501,"38183":8701,"38184":6087,"38185":9122,"38186":4663,"38187":10690,"38188":3965,"38189":1606,"38190":940,"38191":9791,"38192":4553,"38193":5717,"38194":8730,"38195":5748,"38196":7040,"38197":7643,"38198":617,"38199":4034,"38200":2701,"38201":4827,"38202":5120,"38203":7493,"38204":4966,"38205":9793,"38206":1951,"38207":4765,"38208":294,"38209":7785,"38210":9637,"38211":636,"38212":3507,"38213":870,"38214":3669,"38215":9667,"38216":1216,"38217":5735,"38218":2721,"38219":10884,"38220":8655,"38221":6478,"38222":1211,"38223":4783,"38224":9017,"38225":1693,"38226":727,"38227":7658,"38228":1307,"38229":408,"38230":7141,"38231":4758,"38232":7940,"38233":10344,"38234":6141,"38235":7680,"38236":10987,"38237":3914,"38238":3641,"38239":10412,"38240":7710,"38241":9278,"38242":5778,"38243":2701,"38244":9429,"38245":9717,"38246":3339,"38247":7531,"38248":1964,"38249":3269,"38250":493,"38251":2795,"38252":3532,"38253":1015,"38254":4829,"38255":7672,"38256":8939,"38257":8922,"38258":10887,"38259":5573,"38260":8874,"38261":9671,"38262":2380,"38263":3563,"38264":10515,"38265":10641,"38266":7800,"38267":3198,"38268":1387,"38269":5341,"38270":9101,"38271":7132,"38272":154,"38273":9705,"38274":10510,"38275":2464,"38276":9520,"38277":4114,"38278":1845,"38279":9631,"38280":6974,"38281":7543,"38282":7710,"38283":6912,"38284":2662,"38285":9319,"38286":1659,"38287":1576,"38288":9087,"38289":8420,"38290":8283,"38291":10910,"38292":9040,"38293":3291,"38294":6946,"38295":3985,"38296":1085,"38297":621,"38298":3445,"38299":5124,"38300":8781,"38301":8847,"38302":2702,"38303":7663,"38304":8997,"38305":7201,"38306":5060,"38307":3108,"38308":3201,"38309":7146,"38310":9907,"38311":9125,"38312":8511,"38313":10908,"38314":3355,"38315":5427,"38316":6394,"38317":4220,"38318":10263,"38319":7008,"38320":190,"38321":5472,"38322":10403,"38323":1212,"38324":400,"38325":4474,"38326":2199,"38327":4612,"38328":7902,"38329":4757,"38330":6586,"38331":292,"38332":2666,"38333":8437,"38334":901,"38335":10654,"38336":7896,"38337":2474,"38338":1294,"38339":3229,"38340":9201,"38341":4110,"38342":5748,"38343":6344,"38344":3906,"38345":6947,"38346":10731,"38347":6632,"38348":1554,"38349":2062,"38350":5895,"38351":5273,"38352":1084,"38353":2535,"38354":3656,"38355":8071,"38356":4342,"38357":6684,"38358":7150,"38359":1388,"38360":8984,"38361":9791,"38362":2707,"38363":2649,"38364":975,"38365":10958,"38366":8552,"38367":515,"38368":4040,"38369":968,"38370":7780,"38371":8863,"38372":8770,"38373":7990,"38374":7426,"38375":5054,"38376":10496,"38377":9692,"38378":8488,"38379":388,"38380":6114,"38381":2855,"38382":8086,"38383":2209,"38384":7742,"38385":3434,"38386":144,"38387":2793,"38388":7199,"38389":6938,"38390":6254,"38391":8669,"38392":861,"38393":3977,"38394":4525,"38395":10656,"38396":3810,"38397":9929,"38398":830,"38399":3252,"38400":10465,"38401":7402,"38402":329,"38403":9747,"38404":8441,"38405":6027,"38406":5809,"38407":10886,"38408":4619,"38409":10841,"38410":716,"38411":7489,"38412":8962,"38413":10032,"38414":10707,"38415":988,"38416":4790,"38417":3301,"38418":7874,"38419":4840,"38420":9673,"38421":2514,"38422":7701,"38423":4191,"38424":1992,"38425":6325,"38426":8934,"38427":7911,"38428":3494,"38429":4965,"38430":2140,"38431":10505,"38432":2054,"38433":9451,"38434":7241,"38435":3023,"38436":8825,"38437":5112,"38438":4180,"38439":9680,"38440":5358,"38441":10073,"38442":7139,"38443":6366,"38444":2924,"38445":8922,"38446":8991,"38447":10575,"38448":327,"38449":7150,"38450":9907,"38451":4954,"38452":5781,"38453":6786,"38454":3916,"38455":6953,"38456":5801,"38457":10355,"38458":10144,"38459":7032,"38460":4261,"38461":8559,"38462":1987,"38463":7594,"38464":1782,"38465":819,"38466":10257,"38467":7685,"38468":7923,"38469":1359,"38470":8626,"38471":1646,"38472":2993,"38473":10885,"38474":6053,"38475":8252,"38476":7605,"38477":7931,"38478":5609,"38479":5885,"38480":10518,"38481":9693,"38482":6716,"38483":1133,"38484":7745,"38485":8188,"38486":10761,"38487":8951,"38488":8008,"38489":2558,"38490":2296,"38491":4625,"38492":2001,"38493":306,"38494":5689,"38495":6641,"38496":4100,"38497":5205,"38498":4335,"38499":8273,"38500":8213,"38501":5033,"38502":4472,"38503":2335,"38504":7993,"38505":10398,"38506":6888,"38507":6471,"38508":6612,"38509":4865,"38510":9427,"38511":2418,"38512":7505,"38513":8243,"38514":6365,"38515":6126,"38516":6041,"38517":6033,"38518":4116,"38519":6595,"38520":8178,"38521":3470,"38522":2930,"38523":1386,"38524":5428,"38525":3778,"38526":1057,"38527":4248,"38528":4984,"38529":10473,"38530":5192,"38531":10831,"38532":5294,"38533":9581,"38534":7302,"38535":3429,"38536":4491,"38537":2726,"38538":4364,"38539":6348,"38540":5046,"38541":4147,"38542":9491,"38543":1982,"38544":5094,"38545":7175,"38546":8133,"38547":2353,"38548":434,"38549":3285,"38550":5848,"38551":3533,"38552":3128,"38553":1986,"38554":1645,"38555":6924,"38556":10449,"38557":8732,"38558":333,"38559":5563,"38560":6490,"38561":6673,"38562":7127,"38563":10960,"38564":9060,"38565":4887,"38566":6489,"38567":1538,"38568":2376,"38569":374,"38570":9627,"38571":10007,"38572":7160,"38573":2109,"38574":2291,"38575":3233,"38576":4753,"38577":10272,"38578":7451,"38579":221,"38580":9560,"38581":4592,"38582":9011,"38583":5537,"38584":7868,"38585":4772,"38586":8787,"38587":10113,"38588":9895,"38589":1393,"38590":2278,"38591":5196,"38592":8489,"38593":10613,"38594":2760,"38595":9782,"38596":3803,"38597":895,"38598":9124,"38599":4918,"38600":3628,"38601":521,"38602":1384,"38603":1300,"38604":8212,"38605":10604,"38606":8221,"38607":3438,"38608":4764,"38609":2215,"38610":7059,"38611":374,"38612":8316,"38613":9461,"38614":7575,"38615":1108,"38616":4187,"38617":3950,"38618":5623,"38619":4540,"38620":5388,"38621":5781,"38622":9363,"38623":9400,"38624":3118,"38625":1502,"38626":2311,"38627":4512,"38628":5960,"38629":2161,"38630":1523,"38631":8989,"38632":3414,"38633":9763,"38634":8719,"38635":8176,"38636":4630,"38637":8555,"38638":10149,"38639":6248,"38640":10572,"38641":1247,"38642":2051,"38643":2977,"38644":5475,"38645":9886,"38646":4319,"38647":4053,"38648":2119,"38649":923,"38650":8008,"38651":3421,"38652":6633,"38653":7259,"38654":3397,"38655":5419,"38656":1095,"38657":8892,"38658":4491,"38659":5289,"38660":8666,"38661":1080,"38662":1317,"38663":10882,"38664":5819,"38665":1577,"38666":1540,"38667":5792,"38668":4773,"38669":7053,"38670":5282,"38671":8386,"38672":35,"38673":2402,"38674":6563,"38675":3213,"38676":4573,"38677":10132,"38678":1043,"38679":386,"38680":8366,"38681":6916,"38682":1835,"38683":6613,"38684":594,"38685":8378,"38686":3569,"38687":9317,"38688":3197,"38689":6939,"38690":7564,"38691":8204,"38692":9645,"38693":4011,"38694":7729,"38695":6653,"38696":2881,"38697":8870,"38698":9531,"38699":1343,"38700":10637,"38701":7686,"38702":9408,"38703":8112,"38704":2550,"38705":2434,"38706":8011,"38707":8206,"38708":9487,"38709":6670,"38710":1190,"38711":5740,"38712":7612,"38713":8947,"38714":3494,"38715":485,"38716":10891,"38717":9238,"38718":10776,"38719":676,"38720":8142,"38721":9502,"38722":3739,"38723":5706,"38724":118,"38725":5546,"38726":559,"38727":895,"38728":9057,"38729":4363,"38730":7360,"38731":2202,"38732":5327,"38733":2160,"38734":10738,"38735":7984,"38736":6555,"38737":10530,"38738":6255,"38739":2893,"38740":10725,"38741":7538,"38742":10571,"38743":10609,"38744":4174,"38745":6976,"38746":750,"38747":4043,"38748":10637,"38749":8875,"38750":2843,"38751":6032,"38752":2876,"38753":6058,"38754":9518,"38755":10760,"38756":2573,"38757":4362,"38758":7930,"38759":10004,"38760":10268,"38761":1452,"38762":10459,"38763":8472,"38764":5495,"38765":10810,"38766":10801,"38767":4905,"38768":4739,"38769":191,"38770":1086,"38771":7085,"38772":1359,"38773":6816,"38774":5353,"38775":7166,"38776":8453,"38777":2582,"38778":4963,"38779":6827,"38780":406,"38781":10906,"38782":8614,"38783":10546,"38784":9944,"38785":10573,"38786":1549,"38787":4842,"38788":3600,"38789":2787,"38790":9646,"38791":10,"38792":4932,"38793":9992,"38794":10756,"38795":9790,"38796":572,"38797":4043,"38798":8231,"38799":7493,"38800":9036,"38801":6007,"38802":4420,"38803":2585,"38804":8442,"38805":5646,"38806":10328,"38807":7440,"38808":5137,"38809":3182,"38810":278,"38811":6938,"38812":9753,"38813":9585,"38814":6583,"38815":91,"38816":4988,"38817":10655,"38818":8674,"38819":5291,"38820":10944,"38821":3516,"38822":1132,"38823":9132,"38824":2046,"38825":4551,"38826":2394,"38827":10077,"38828":3838,"38829":7908,"38830":715,"38831":10993,"38832":10238,"38833":8049,"38834":4445,"38835":2621,"38836":5902,"38837":4558,"38838":7477,"38839":4000,"38840":6799,"38841":10644,"38842":614,"38843":9336,"38844":8633,"38845":1580,"38846":8990,"38847":1252,"38848":10539,"38849":2667,"38850":1661,"38851":1561,"38852":2855,"38853":4404,"38854":1741,"38855":6766,"38856":3383,"38857":1160,"38858":5282,"38859":5604,"38860":7937,"38861":2442,"38862":8753,"38863":9289,"38864":6434,"38865":9489,"38866":10073,"38867":3134,"38868":9116,"38869":7917,"38870":2913,"38871":2139,"38872":8281,"38873":715,"38874":5608,"38875":6922,"38876":2890,"38877":8635,"38878":4857,"38879":4136,"38880":8063,"38881":9995,"38882":7921,"38883":5821,"38884":1184,"38885":7015,"38886":6644,"38887":7032,"38888":1678,"38889":10013,"38890":8045,"38891":3361,"38892":715,"38893":7435,"38894":632,"38895":1610,"38896":4565,"38897":4785,"38898":8791,"38899":5548,"38900":9402,"38901":6647,"38902":3483,"38903":2912,"38904":3394,"38905":6320,"38906":1464,"38907":9813,"38908":10598,"38909":3855,"38910":3975,"38911":6060,"38912":8140,"38913":5766,"38914":9935,"38915":6450,"38916":7259,"38917":4281,"38918":7870,"38919":6240,"38920":8004,"38921":1665,"38922":7644,"38923":5986,"38924":9176,"38925":1230,"38926":7856,"38927":2014,"38928":763,"38929":2978,"38930":8070,"38931":8882,"38932":5422,"38933":3218,"38934":9950,"38935":230,"38936":3226,"38937":8697,"38938":7877,"38939":5151,"38940":2366,"38941":9783,"38942":7092,"38943":164,"38944":2708,"38945":9727,"38946":3431,"38947":10110,"38948":7442,"38949":3907,"38950":8076,"38951":4442,"38952":2939,"38953":478,"38954":5496,"38955":7232,"38956":5069,"38957":169,"38958":7609,"38959":10561,"38960":1881,"38961":1733,"38962":2411,"38963":3352,"38964":4501,"38965":6559,"38966":836,"38967":6261,"38968":2605,"38969":10481,"38970":8180,"38971":2403,"38972":708,"38973":5860,"38974":1159,"38975":2206,"38976":2615,"38977":2681,"38978":3249,"38979":6570,"38980":8570,"38981":284,"38982":10734,"38983":1233,"38984":8141,"38985":7520,"38986":2597,"38987":1195,"38988":2825,"38989":6509,"38990":6721,"38991":3897,"38992":3587,"38993":4461,"38994":5771,"38995":458,"38996":8465,"38997":7131,"38998":266,"38999":3985,"39000":7744,"39001":8292,"39002":7327,"39003":5063,"39004":885,"39005":1623,"39006":5802,"39007":6437,"39008":945,"39009":10337,"39010":8406,"39011":10072,"39012":6551,"39013":4431,"39014":4378,"39015":1771,"39016":5074,"39017":9057,"39018":1486,"39019":219,"39020":5760,"39021":8802,"39022":10490,"39023":8165,"39024":8032,"39025":8779,"39026":2486,"39027":4939,"39028":9594,"39029":2079,"39030":7486,"39031":9681,"39032":6187,"39033":5346,"39034":6109,"39035":8651,"39036":10153,"39037":2392,"39038":1786,"39039":4422,"39040":8854,"39041":4424,"39042":10347,"39043":649,"39044":2942,"39045":9268,"39046":10298,"39047":1515,"39048":2063,"39049":516,"39050":7103,"39051":7147,"39052":1814,"39053":8455,"39054":5516,"39055":6207,"39056":7475,"39057":7547,"39058":3221,"39059":9143,"39060":8591,"39061":6603,"39062":7319,"39063":2368,"39064":4853,"39065":4465,"39066":3606,"39067":3949,"39068":7999,"39069":5085,"39070":9405,"39071":5647,"39072":7866,"39073":9923,"39074":4279,"39075":2574,"39076":8717,"39077":1244,"39078":6326,"39079":5913,"39080":10394,"39081":4655,"39082":6219,"39083":4242,"39084":5332,"39085":10331,"39086":5933,"39087":6947,"39088":10471,"39089":2657,"39090":2055,"39091":1178,"39092":6394,"39093":4845,"39094":7212,"39095":8218,"39096":8742,"39097":10309,"39098":6465,"39099":10212,"39100":8491,"39101":2273,"39102":3739,"39103":6118,"39104":4350,"39105":8079,"39106":9395,"39107":4828,"39108":2538,"39109":931,"39110":4146,"39111":1295,"39112":7807,"39113":3198,"39114":5496,"39115":7862,"39116":4908,"39117":7661,"39118":2241,"39119":1503,"39120":706,"39121":8150,"39122":3364,"39123":7636,"39124":1991,"39125":8129,"39126":6036,"39127":3787,"39128":8390,"39129":6294,"39130":8888,"39131":3273,"39132":9938,"39133":1101,"39134":9773,"39135":5995,"39136":5491,"39137":4160,"39138":3518,"39139":10708,"39140":6843,"39141":8439,"39142":2373,"39143":8596,"39144":2591,"39145":6789,"39146":5717,"39147":2773,"39148":6633,"39149":8154,"39150":1807,"39151":10803,"39152":4144,"39153":9639,"39154":3545,"39155":6931,"39156":9321,"39157":9103,"39158":10706,"39159":3277,"39160":67,"39161":6377,"39162":625,"39163":943,"39164":10087,"39165":9643,"39166":1447,"39167":4033,"39168":2689,"39169":3564,"39170":8460,"39171":5844,"39172":3003,"39173":10944,"39174":2531,"39175":9377,"39176":8713,"39177":9125,"39178":7104,"39179":9557,"39180":2633,"39181":3453,"39182":10072,"39183":6074,"39184":9939,"39185":734,"39186":6983,"39187":3954,"39188":5622,"39189":2401,"39190":5522,"39191":161,"39192":8442,"39193":10812,"39194":3250,"39195":10126,"39196":656,"39197":6861,"39198":1985,"39199":2624,"39200":2950,"39201":8396,"39202":10244,"39203":869,"39204":6351,"39205":325,"39206":7588,"39207":10252,"39208":716,"39209":7694,"39210":4151,"39211":1097,"39212":6604,"39213":1482,"39214":6419,"39215":88,"39216":8537,"39217":4310,"39218":3507,"39219":7612,"39220":2493,"39221":2289,"39222":9513,"39223":7483,"39224":4710,"39225":7256,"39226":7275,"39227":1227,"39228":3402,"39229":9858,"39230":8245,"39231":1042,"39232":5512,"39233":5592,"39234":8859,"39235":4290,"39236":3221,"39237":10832,"39238":2226,"39239":629,"39240":8681,"39241":4363,"39242":9083,"39243":8501,"39244":5796,"39245":6401,"39246":2392,"39247":2101,"39248":9190,"39249":1288,"39250":7845,"39251":4880,"39252":10780,"39253":10010,"39254":7280,"39255":9663,"39256":7505,"39257":5155,"39258":6961,"39259":5339,"39260":3746,"39261":1679,"39262":2367,"39263":4953,"39264":6760,"39265":1298,"39266":3441,"39267":10437,"39268":2882,"39269":2634,"39270":6984,"39271":4400,"39272":1250,"39273":6826,"39274":7107,"39275":9464,"39276":340,"39277":9940,"39278":6384,"39279":4276,"39280":5234,"39281":1477,"39282":6493,"39283":6102,"39284":2988,"39285":9648,"39286":742,"39287":7558,"39288":3506,"39289":4370,"39290":4369,"39291":6696,"39292":6709,"39293":4471,"39294":2801,"39295":9593,"39296":6786,"39297":83,"39298":1072,"39299":4413,"39300":1821,"39301":2698,"39302":8655,"39303":7196,"39304":1868,"39305":2841,"39306":7854,"39307":8914,"39308":448,"39309":2898,"39310":8093,"39311":774,"39312":2233,"39313":6483,"39314":5678,"39315":9836,"39316":6547,"39317":9471,"39318":2012,"39319":4929,"39320":5069,"39321":9480,"39322":8726,"39323":8939,"39324":2731,"39325":6959,"39326":9941,"39327":1862,"39328":442,"39329":3515,"39330":5125,"39331":3732,"39332":5371,"39333":8417,"39334":9713,"39335":9518,"39336":5078,"39337":9038,"39338":4604,"39339":7199,"39340":681,"39341":10259,"39342":8822,"39343":7669,"39344":7948,"39345":1191,"39346":9261,"39347":4085,"39348":3026,"39349":1593,"39350":3453,"39351":5010,"39352":5021,"39353":9252,"39354":5470,"39355":9901,"39356":5630,"39357":6616,"39358":7267,"39359":3100,"39360":6142,"39361":7136,"39362":449,"39363":5642,"39364":7633,"39365":3664,"39366":4974,"39367":6413,"39368":99,"39369":10656,"39370":9121,"39371":5086,"39372":2007,"39373":5939,"39374":10588,"39375":1557,"39376":6669,"39377":5417,"39378":2297,"39379":4330,"39380":6778,"39381":7358,"39382":4339,"39383":389,"39384":10199,"39385":5850,"39386":8590,"39387":836,"39388":6354,"39389":7854,"39390":5303,"39391":13,"39392":8220,"39393":8762,"39394":982,"39395":6982,"39396":3237,"39397":2665,"39398":1009,"39399":8495,"39400":8254,"39401":5612,"39402":6887,"39403":2492,"39404":10373,"39405":1204,"39406":9739,"39407":788,"39408":2979,"39409":1099,"39410":1662,"39411":6483,"39412":4873,"39413":7524,"39414":1530,"39415":5678,"39416":2340,"39417":4215,"39418":8596,"39419":220,"39420":10326,"39421":5270,"39422":5718,"39423":3948,"39424":8808,"39425":10674,"39426":7954,"39427":8729,"39428":2397,"39429":5647,"39430":6835,"39431":9226,"39432":3105,"39433":9875,"39434":9793,"39435":2126,"39436":1352,"39437":1298,"39438":2943,"39439":6996,"39440":9985,"39441":8624,"39442":10553,"39443":4592,"39444":4557,"39445":1235,"39446":928,"39447":10309,"39448":2523,"39449":1622,"39450":7361,"39451":3631,"39452":8737,"39453":8552,"39454":8488,"39455":850,"39456":2667,"39457":1760,"39458":5155,"39459":4677,"39460":4339,"39461":77,"39462":8620,"39463":302,"39464":7538,"39465":9536,"39466":3673,"39467":2043,"39468":7146,"39469":9245,"39470":6405,"39471":6672,"39472":1903,"39473":4950,"39474":4056,"39475":3968,"39476":3446,"39477":6404,"39478":563,"39479":10270,"39480":9559,"39481":6886,"39482":1990,"39483":10748,"39484":1762,"39485":8276,"39486":3637,"39487":6809,"39488":546,"39489":4635,"39490":7720,"39491":3417,"39492":6233,"39493":5645,"39494":10177,"39495":10614,"39496":7576,"39497":811,"39498":3057,"39499":10734,"39500":6425,"39501":8133,"39502":8731,"39503":3678,"39504":6978,"39505":7260,"39506":8310,"39507":7238,"39508":2903,"39509":10776,"39510":5652,"39511":5238,"39512":6792,"39513":2367,"39514":5404,"39515":599,"39516":6796,"39517":9959,"39518":4696,"39519":1293,"39520":4782,"39521":5268,"39522":9089,"39523":7984,"39524":3839,"39525":1061,"39526":772,"39527":8796,"39528":326,"39529":2919,"39530":5565,"39531":291,"39532":2711,"39533":7172,"39534":4215,"39535":8912,"39536":8412,"39537":59,"39538":10286,"39539":9465,"39540":8377,"39541":5144,"39542":7465,"39543":1118,"39544":4338,"39545":4151,"39546":161,"39547":10418,"39548":6981,"39549":7625,"39550":65,"39551":2198,"39552":7411,"39553":416,"39554":7931,"39555":3012,"39556":7879,"39557":10870,"39558":2898,"39559":2193,"39560":1779,"39561":5602,"39562":8042,"39563":6400,"39564":1851,"39565":1305,"39566":8233,"39567":1511,"39568":10536,"39569":9412,"39570":5494,"39571":10568,"39572":4871,"39573":601,"39574":6764,"39575":8634,"39576":7300,"39577":9720,"39578":7150,"39579":1186,"39580":2514,"39581":9474,"39582":8720,"39583":24,"39584":8053,"39585":2184,"39586":1694,"39587":6636,"39588":1006,"39589":2501,"39590":10811,"39591":4138,"39592":1202,"39593":2761,"39594":6765,"39595":4747,"39596":2931,"39597":3336,"39598":9668,"39599":9458,"39600":4277,"39601":10502,"39602":7264,"39603":9007,"39604":4273,"39605":3807,"39606":951,"39607":6906,"39608":8846,"39609":8232,"39610":5074,"39611":10374,"39612":2363,"39613":8045,"39614":1622,"39615":9600,"39616":2535,"39617":4873,"39618":8072,"39619":667,"39620":4404,"39621":4613,"39622":10835,"39623":10061,"39624":9326,"39625":5727,"39626":4226,"39627":3281,"39628":9793,"39629":892,"39630":3871,"39631":8604,"39632":9676,"39633":5478,"39634":10514,"39635":5898,"39636":10381,"39637":10902,"39638":6967,"39639":9828,"39640":1441,"39641":10713,"39642":1554,"39643":10232,"39644":2595,"39645":10679,"39646":1674,"39647":8129,"39648":9167,"39649":773,"39650":10731,"39651":476,"39652":1928,"39653":4192,"39654":10973,"39655":9799,"39656":3265,"39657":9211,"39658":2861,"39659":7102,"39660":2356,"39661":3360,"39662":6507,"39663":1448,"39664":2439,"39665":5722,"39666":10733,"39667":3572,"39668":5340,"39669":2593,"39670":9521,"39671":10480,"39672":10883,"39673":4210,"39674":7964,"39675":5917,"39676":9538,"39677":5527,"39678":2115,"39679":7699,"39680":10416,"39681":9605,"39682":7067,"39683":7865,"39684":255,"39685":3640,"39686":3460,"39687":4420,"39688":7306,"39689":580,"39690":1716,"39691":1111,"39692":7515,"39693":8893,"39694":4055,"39695":6420,"39696":9272,"39697":9300,"39698":4365,"39699":7405,"39700":5850,"39701":3838,"39702":4699,"39703":4502,"39704":4186,"39705":6869,"39706":2171,"39707":4100,"39708":9354,"39709":3974,"39710":5036,"39711":8467,"39712":3324,"39713":4284,"39714":9998,"39715":2888,"39716":5115,"39717":6539,"39718":7639,"39719":8377,"39720":2815,"39721":9532,"39722":8820,"39723":3190,"39724":10936,"39725":5200,"39726":7410,"39727":1464,"39728":7047,"39729":10451,"39730":10298,"39731":6505,"39732":6364,"39733":9033,"39734":8096,"39735":3321,"39736":5348,"39737":1091,"39738":4708,"39739":6435,"39740":5343,"39741":1440,"39742":513,"39743":6714,"39744":3198,"39745":8685,"39746":5269,"39747":8041,"39748":6868,"39749":9031,"39750":9752,"39751":6163,"39752":5029,"39753":8648,"39754":8996,"39755":4234,"39756":8487,"39757":8252,"39758":7614,"39759":2771,"39760":2852,"39761":6296,"39762":1324,"39763":1837,"39764":9601,"39765":1601,"39766":297,"39767":5210,"39768":4996,"39769":4004,"39770":2353,"39771":3456,"39772":9255,"39773":9469,"39774":10449,"39775":2058,"39776":7580,"39777":5850,"39778":5277,"39779":8026,"39780":7144,"39781":6026,"39782":5258,"39783":3361,"39784":3303,"39785":9428,"39786":790,"39787":4006,"39788":6631,"39789":7093,"39790":7966,"39791":7072,"39792":1196,"39793":2650,"39794":8468,"39795":122,"39796":1171,"39797":236,"39798":171,"39799":9256,"39800":3879,"39801":4106,"39802":4822,"39803":454,"39804":9536,"39805":5411,"39806":9466,"39807":8694,"39808":615,"39809":5557,"39810":2862,"39811":3055,"39812":10086,"39813":9729,"39814":274,"39815":6522,"39816":7061,"39817":1712,"39818":195,"39819":144,"39820":1608,"39821":7674,"39822":5981,"39823":9156,"39824":1607,"39825":2374,"39826":9464,"39827":2125,"39828":10216,"39829":3614,"39830":10574,"39831":21,"39832":7655,"39833":9549,"39834":2939,"39835":291,"39836":5513,"39837":4186,"39838":749,"39839":1823,"39840":3536,"39841":8019,"39842":1947,"39843":6297,"39844":7699,"39845":2064,"39846":4719,"39847":10225,"39848":7982,"39849":4870,"39850":1036,"39851":2634,"39852":186,"39853":1115,"39854":3025,"39855":466,"39856":574,"39857":10673,"39858":4857,"39859":7651,"39860":1393,"39861":6385,"39862":9576,"39863":5248,"39864":922,"39865":3935,"39866":9997,"39867":4817,"39868":6853,"39869":9316,"39870":10550,"39871":5299,"39872":4606,"39873":343,"39874":7326,"39875":10616,"39876":7432,"39877":4041,"39878":6240,"39879":2096,"39880":3940,"39881":3071,"39882":10451,"39883":1286,"39884":3360,"39885":6138,"39886":6334,"39887":10413,"39888":8862,"39889":6270,"39890":1889,"39891":5813,"39892":2646,"39893":9527,"39894":9762,"39895":2423,"39896":7432,"39897":6780,"39898":1217,"39899":10236,"39900":1765,"39901":9889,"39902":1362,"39903":8694,"39904":6579,"39905":304,"39906":7119,"39907":3179,"39908":1414,"39909":6969,"39910":2501,"39911":6914,"39912":2164,"39913":3914,"39914":6548,"39915":9159,"39916":4130,"39917":1625,"39918":752,"39919":5355,"39920":4786,"39921":4053,"39922":5215,"39923":95,"39924":9580,"39925":9190,"39926":1079,"39927":3640,"39928":3427,"39929":10328,"39930":5129,"39931":4872,"39932":357,"39933":1484,"39934":8549,"39935":1996,"39936":3364,"39937":6247,"39938":3870,"39939":8103,"39940":1791,"39941":1341,"39942":678,"39943":4387,"39944":9217,"39945":9869,"39946":10722,"39947":10263,"39948":1026,"39949":7846,"39950":9680,"39951":3787,"39952":10177,"39953":2876,"39954":689,"39955":7846,"39956":9655,"39957":676,"39958":6176,"39959":6377,"39960":4471,"39961":9002,"39962":3166,"39963":312,"39964":9198,"39965":1858,"39966":8789,"39967":6900,"39968":1634,"39969":2095,"39970":2431,"39971":811,"39972":6272,"39973":6150,"39974":7384,"39975":10454,"39976":663,"39977":9036,"39978":4567,"39979":2584,"39980":3069,"39981":3697,"39982":1900,"39983":9005,"39984":9034,"39985":5227,"39986":9741,"39987":10393,"39988":9139,"39989":10101,"39990":675,"39991":6054,"39992":9923,"39993":5490,"39994":1205,"39995":1360,"39996":621,"39997":8978,"39998":2115,"39999":5281,"40000":8249,"40001":10041,"40002":3047,"40003":10475,"40004":9240,"40005":562,"40006":9758,"40007":3958,"40008":6878,"40009":5523,"40010":682,"40011":10878,"40012":10412,"40013":4636,"40014":8321,"40015":9334,"40016":7555,"40017":4109,"40018":5788,"40019":3194,"40020":6692,"40021":1704,"40022":10114,"40023":1683,"40024":5265,"40025":1479,"40026":7661,"40027":2079,"40028":3899,"40029":1899,"40030":4875,"40031":4170,"40032":10904,"40033":2733,"40034":2667,"40035":7738,"40036":5553,"40037":5995,"40038":5861,"40039":4266,"40040":277,"40041":5616,"40042":4997,"40043":5310,"40044":4310,"40045":7156,"40046":9315,"40047":4754,"40048":9569,"40049":427,"40050":10888,"40051":10607,"40052":10526,"40053":1976,"40054":10543,"40055":2036,"40056":984,"40057":5663,"40058":7047,"40059":5970,"40060":2915,"40061":1231,"40062":5710,"40063":10336,"40064":7021,"40065":2882,"40066":10171,"40067":2992,"40068":7564,"40069":7300,"40070":6372,"40071":7356,"40072":2707,"40073":7814,"40074":9432,"40075":65,"40076":4935,"40077":1745,"40078":7955,"40079":1599,"40080":2541,"40081":4490,"40082":9177,"40083":6210,"40084":7258,"40085":4861,"40086":3889,"40087":6296,"40088":2898,"40089":5157,"40090":8400,"40091":10448,"40092":8396,"40093":7966,"40094":8182,"40095":1283,"40096":3997,"40097":5884,"40098":3153,"40099":10483,"40100":9302,"40101":10918,"40102":4475,"40103":2507,"40104":9295,"40105":2668,"40106":7463,"40107":6671,"40108":2979,"40109":5269,"40110":2262,"40111":9042,"40112":9374,"40113":4981,"40114":3018,"40115":919,"40116":5495,"40117":4542,"40118":2434,"40119":7823,"40120":5900,"40121":421,"40122":6200,"40123":7635,"40124":8254,"40125":10500,"40126":7547,"40127":3872,"40128":4422,"40129":8598,"40130":2575,"40131":4200,"40132":4393,"40133":1329,"40134":7030,"40135":6529,"40136":10094,"40137":3228,"40138":2755,"40139":4566,"40140":8765,"40141":644,"40142":9848,"40143":8172,"40144":10659,"40145":3086,"40146":8032,"40147":6889,"40148":210,"40149":5628,"40150":9180,"40151":9967,"40152":6884,"40153":9803,"40154":10922,"40155":5153,"40156":8942,"40157":836,"40158":1752,"40159":4861,"40160":9809,"40161":5144,"40162":9018,"40163":2479,"40164":8249,"40165":244,"40166":5841,"40167":10666,"40168":10740,"40169":7668,"40170":5056,"40171":1781,"40172":9845,"40173":4031,"40174":7716,"40175":5772,"40176":9378,"40177":568,"40178":2164,"40179":9189,"40180":3168,"40181":3195,"40182":2266,"40183":6882,"40184":10608,"40185":1238,"40186":3581,"40187":7232,"40188":2429,"40189":8127,"40190":10169,"40191":2535,"40192":3017,"40193":4023,"40194":1367,"40195":576,"40196":5171,"40197":8078,"40198":1256,"40199":7719,"40200":10374,"40201":3336,"40202":10260,"40203":4627,"40204":202,"40205":10814,"40206":2475,"40207":436,"40208":6629,"40209":8134,"40210":3030,"40211":8937,"40212":7769,"40213":4524,"40214":4971,"40215":6949,"40216":4047,"40217":5271,"40218":523,"40219":1152,"40220":7340,"40221":1990,"40222":7277,"40223":7250,"40224":6219,"40225":7943,"40226":6866,"40227":1869,"40228":6077,"40229":4680,"40230":4303,"40231":9041,"40232":1460,"40233":481,"40234":2323,"40235":6252,"40236":1578,"40237":601,"40238":7362,"40239":6837,"40240":620,"40241":5976,"40242":3949,"40243":2731,"40244":2030,"40245":1393,"40246":7529,"40247":3163,"40248":7470,"40249":8180,"40250":9724,"40251":7165,"40252":4420,"40253":6385,"40254":1527,"40255":8609,"40256":6686,"40257":10661,"40258":7517,"40259":3405,"40260":4955,"40261":3867,"40262":3803,"40263":7117,"40264":10550,"40265":1116,"40266":6899,"40267":10423,"40268":10361,"40269":10326,"40270":6804,"40271":5682,"40272":9416,"40273":5700,"40274":7277,"40275":5172,"40276":9444,"40277":8326,"40278":5266,"40279":9989,"40280":1695,"40281":6260,"40282":2666,"40283":5381,"40284":10945,"40285":1301,"40286":274,"40287":9346,"40288":7618,"40289":9455,"40290":4685,"40291":5741,"40292":3752,"40293":2747,"40294":829,"40295":7181,"40296":741,"40297":2276,"40298":9628,"40299":8019,"40300":6876,"40301":2741,"40302":2810,"40303":3775,"40304":8388,"40305":6295,"40306":3557,"40307":5381,"40308":357,"40309":7537,"40310":8865,"40311":7900,"40312":6449,"40313":2078,"40314":3324,"40315":3389,"40316":2119,"40317":9375,"40318":4086,"40319":6583,"40320":8476,"40321":6544,"40322":2504,"40323":5157,"40324":1972,"40325":2884,"40326":8517,"40327":3024,"40328":10351,"40329":582,"40330":4827,"40331":6384,"40332":30,"40333":6049,"40334":5186,"40335":5722,"40336":5645,"40337":3541,"40338":2866,"40339":226,"40340":1455,"40341":8905,"40342":10943,"40343":4208,"40344":1956,"40345":950,"40346":10390,"40347":8329,"40348":4632,"40349":3154,"40350":3414,"40351":743,"40352":2677,"40353":6091,"40354":8581,"40355":10847,"40356":5042,"40357":9052,"40358":10849,"40359":9902,"40360":4766,"40361":9896,"40362":8156,"40363":9330,"40364":8111,"40365":176,"40366":1739,"40367":4306,"40368":4311,"40369":7557,"40370":9593,"40371":3554,"40372":5705,"40373":1909,"40374":4018,"40375":10212,"40376":3085,"40377":1275,"40378":3686,"40379":10811,"40380":1977,"40381":5176,"40382":10557,"40383":887,"40384":10697,"40385":1993,"40386":5060,"40387":6871,"40388":8494,"40389":5139,"40390":2812,"40391":3832,"40392":10070,"40393":5558,"40394":5438,"40395":574,"40396":684,"40397":1491,"40398":1848,"40399":10032,"40400":9797,"40401":3047,"40402":7522,"40403":2189,"40404":10454,"40405":2978,"40406":780,"40407":1203,"40408":1337,"40409":6872,"40410":4652,"40411":339,"40412":7054,"40413":3772,"40414":345,"40415":2260,"40416":7578,"40417":1128,"40418":6017,"40419":9189,"40420":4302,"40421":4355,"40422":6231,"40423":4817,"40424":3874,"40425":5145,"40426":2151,"40427":2167,"40428":4419,"40429":2511,"40430":3081,"40431":4537,"40432":4548,"40433":10905,"40434":3378,"40435":546,"40436":7912,"40437":5666,"40438":568,"40439":8226,"40440":3310,"40441":3257,"40442":5381,"40443":5385,"40444":444,"40445":4248,"40446":5432,"40447":9009,"40448":3379,"40449":10012,"40450":9394,"40451":10306,"40452":4637,"40453":6607,"40454":8432,"40455":673,"40456":7754,"40457":235,"40458":10629,"40459":573,"40460":2419,"40461":3664,"40462":892,"40463":5946,"40464":9045,"40465":10755,"40466":5164,"40467":2661,"40468":1986,"40469":2875,"40470":1432,"40471":9456,"40472":5126,"40473":6054,"40474":7011,"40475":4037,"40476":3755,"40477":7692,"40478":7631,"40479":5028,"40480":6223,"40481":2730,"40482":2170,"40483":3103,"40484":3869,"40485":2031,"40486":8625,"40487":1607,"40488":5884,"40489":2585,"40490":470,"40491":3834,"40492":1744,"40493":7593,"40494":4917,"40495":4810,"40496":5263,"40497":535,"40498":5224,"40499":481,"40500":6088,"40501":4488,"40502":3279,"40503":4281,"40504":3718,"40505":2249,"40506":10880,"40507":7360,"40508":2747,"40509":6912,"40510":9712,"40511":9548,"40512":5453,"40513":1713,"40514":10439,"40515":498,"40516":4719,"40517":6103,"40518":3575,"40519":4789,"40520":7794,"40521":4033,"40522":4758,"40523":7312,"40524":5106,"40525":4674,"40526":10736,"40527":474,"40528":6865,"40529":515,"40530":9415,"40531":8261,"40532":6161,"40533":2795,"40534":7068,"40535":5995,"40536":4763,"40537":2265,"40538":7606,"40539":4599,"40540":6820,"40541":2679,"40542":2194,"40543":7549,"40544":9596,"40545":1818,"40546":10600,"40547":5451,"40548":4000,"40549":1397,"40550":8426,"40551":8589,"40552":3710,"40553":2523,"40554":7591,"40555":4753,"40556":6259,"40557":4446,"40558":10893,"40559":9239,"40560":7133,"40561":9882,"40562":756,"40563":4200,"40564":1937,"40565":3976,"40566":10543,"40567":3275,"40568":3051,"40569":8352,"40570":1857,"40571":7631,"40572":10519,"40573":5104,"40574":4908,"40575":9810,"40576":2064,"40577":8595,"40578":10618,"40579":8514,"40580":5334,"40581":8767,"40582":6432,"40583":10947,"40584":6493,"40585":6219,"40586":2859,"40587":439,"40588":980,"40589":908,"40590":1635,"40591":1266,"40592":1180,"40593":916,"40594":3393,"40595":6165,"40596":4492,"40597":6286,"40598":10765,"40599":7124,"40600":841,"40601":191,"40602":3288,"40603":466,"40604":1620,"40605":5248,"40606":3788,"40607":7760,"40608":1512,"40609":1980,"40610":9149,"40611":7891,"40612":9894,"40613":8825,"40614":10220,"40615":4293,"40616":8022,"40617":6196,"40618":1258,"40619":2099,"40620":5215,"40621":345,"40622":7475,"40623":7411,"40624":1524,"40625":8852,"40626":2958,"40627":423,"40628":3655,"40629":8870,"40630":193,"40631":10067,"40632":6222,"40633":8213,"40634":1131,"40635":4272,"40636":6100,"40637":8210,"40638":4890,"40639":6701,"40640":5641,"40641":9225,"40642":7394,"40643":7568,"40644":1708,"40645":7420,"40646":7769,"40647":1007,"40648":6108,"40649":6295,"40650":3031,"40651":2486,"40652":10294,"40653":4525,"40654":10452,"40655":5786,"40656":10775,"40657":6051,"40658":3691,"40659":6994,"40660":8820,"40661":8066,"40662":3689,"40663":1817,"40664":8892,"40665":6592,"40666":2666,"40667":10338,"40668":177,"40669":4771,"40670":4671,"40671":49,"40672":7544,"40673":1047,"40674":7565,"40675":7924,"40676":3326,"40677":1012,"40678":9704,"40679":8994,"40680":1592,"40681":10630,"40682":9488,"40683":10500,"40684":6122,"40685":7602,"40686":4172,"40687":8834,"40688":648,"40689":7095,"40690":893,"40691":9759,"40692":7223,"40693":6199,"40694":5244,"40695":3193,"40696":8365,"40697":2604,"40698":1722,"40699":3796,"40700":6998,"40701":7675,"40702":10819,"40703":5979,"40704":6700,"40705":1259,"40706":6892,"40707":10630,"40708":1777,"40709":10100,"40710":6567,"40711":6448,"40712":6484,"40713":6585,"40714":9649,"40715":2291,"40716":8465,"40717":9937,"40718":4233,"40719":9834,"40720":4164,"40721":3781,"40722":2622,"40723":6957,"40724":4934,"40725":2752,"40726":4512,"40727":551,"40728":9791,"40729":7718,"40730":1973,"40731":3376,"40732":7592,"40733":3103,"40734":7302,"40735":147,"40736":9133,"40737":3283,"40738":7121,"40739":5442,"40740":3886,"40741":5337,"40742":521,"40743":4107,"40744":7510,"40745":8104,"40746":3011,"40747":7672,"40748":2080,"40749":1307,"40750":252,"40751":7125,"40752":5505,"40753":233,"40754":5458,"40755":4575,"40756":3296,"40757":1819,"40758":2753,"40759":6193,"40760":3864,"40761":2158,"40762":3779,"40763":8753,"40764":1947,"40765":4013,"40766":4538,"40767":1757,"40768":7899,"40769":2463,"40770":3342,"40771":7791,"40772":4492,"40773":8292,"40774":7925,"40775":522,"40776":9253,"40777":1160,"40778":7173,"40779":6018,"40780":8520,"40781":6852,"40782":5823,"40783":8731,"40784":603,"40785":3772,"40786":3275,"40787":577,"40788":9067,"40789":4323,"40790":6857,"40791":10361,"40792":10374,"40793":2586,"40794":5744,"40795":9695,"40796":10696,"40797":6289,"40798":1330,"40799":6667,"40800":10012,"40801":5014,"40802":1980,"40803":4039,"40804":5108,"40805":4276,"40806":1273,"40807":6293,"40808":7502,"40809":6568,"40810":4920,"40811":5577,"40812":6018,"40813":2563,"40814":3068,"40815":8778,"40816":9463,"40817":9134,"40818":9311,"40819":5844,"40820":6814,"40821":7119,"40822":3608,"40823":6618,"40824":2499,"40825":10100,"40826":3885,"40827":432,"40828":1467,"40829":2033,"40830":5442,"40831":3658,"40832":7197,"40833":7863,"40834":6506,"40835":7700,"40836":7833,"40837":1349,"40838":8115,"40839":2231,"40840":4491,"40841":7310,"40842":7581,"40843":9647,"40844":8144,"40845":304,"40846":10579,"40847":2713,"40848":5682,"40849":4056,"40850":9884,"40851":56,"40852":9751,"40853":5292,"40854":2501,"40855":4887,"40856":7010,"40857":8944,"40858":2179,"40859":10506,"40860":10343,"40861":9264,"40862":8803,"40863":7020,"40864":3525,"40865":4795,"40866":7591,"40867":8175,"40868":5100,"40869":3860,"40870":8120,"40871":5487,"40872":6490,"40873":2639,"40874":2463,"40875":245,"40876":4321,"40877":502,"40878":4386,"40879":10343,"40880":3147,"40881":9302,"40882":1428,"40883":8310,"40884":2836,"40885":10816,"40886":1105,"40887":4421,"40888":1436,"40889":1442,"40890":5884,"40891":1856,"40892":5491,"40893":734,"40894":5513,"40895":3009,"40896":504,"40897":128,"40898":1361,"40899":8302,"40900":9536,"40901":2792,"40902":3478,"40903":433,"40904":284,"40905":10470,"40906":8355,"40907":6284,"40908":4563,"40909":2438,"40910":6021,"40911":6003,"40912":7886,"40913":9862,"40914":5325,"40915":5298,"40916":10423,"40917":180,"40918":10689,"40919":2442,"40920":7958,"40921":5003,"40922":10587,"40923":3724,"40924":1780,"40925":8939,"40926":9323,"40927":7638,"40928":7332,"40929":1332,"40930":5453,"40931":5347,"40932":5032,"40933":1302,"40934":5250,"40935":5084,"40936":5996,"40937":2640,"40938":9728,"40939":2105,"40940":4324,"40941":445,"40942":7290,"40943":8748,"40944":794,"40945":6713,"40946":7873,"40947":4709,"40948":7276,"40949":9345,"40950":10435,"40951":7833,"40952":44,"40953":8452,"40954":4623,"40955":8920,"40956":5980,"40957":5040,"40958":6440,"40959":6923,"40960":9792,"40961":4034,"40962":8870,"40963":8826,"40964":2925,"40965":1486,"40966":595,"40967":8987,"40968":2041,"40969":10163,"40970":1004,"40971":396,"40972":7660,"40973":166,"40974":332,"40975":368,"40976":4408,"40977":1942,"40978":7107,"40979":272,"40980":7659,"40981":3180,"40982":6065,"40983":38,"40984":7746,"40985":10373,"40986":10669,"40987":5443,"40988":3470,"40989":8390,"40990":3698,"40991":4404,"40992":9620,"40993":3670,"40994":7387,"40995":6860,"40996":1111,"40997":715,"40998":4195,"40999":9226,"41000":3382,"41001":6884,"41002":7029,"41003":10797,"41004":7042,"41005":2120,"41006":4012,"41007":2772,"41008":10326,"41009":8563,"41010":6265,"41011":9062,"41012":6868,"41013":2511,"41014":2679,"41015":4381,"41016":10297,"41017":10065,"41018":5039,"41019":6480,"41020":4179,"41021":1942,"41022":8554,"41023":328,"41024":4203,"41025":8217,"41026":2592,"41027":10503,"41028":7558,"41029":1742,"41030":704,"41031":3826,"41032":4140,"41033":4389,"41034":7514,"41035":9589,"41036":3743,"41037":10446,"41038":2233,"41039":10385,"41040":10828,"41041":1728,"41042":10891,"41043":10179,"41044":4216,"41045":7303,"41046":2149,"41047":4260,"41048":6578,"41049":2463,"41050":202,"41051":6389,"41052":10285,"41053":1666,"41054":5629,"41055":8761,"41056":6495,"41057":22,"41058":5462,"41059":2291,"41060":2040,"41061":4793,"41062":1977,"41063":4272,"41064":6886,"41065":2569,"41066":9787,"41067":488,"41068":7809,"41069":4368,"41070":8139,"41071":9875,"41072":528,"41073":6682,"41074":9822,"41075":9839,"41076":2320,"41077":2655,"41078":10741,"41079":4306,"41080":3571,"41081":4195,"41082":4348,"41083":4088,"41084":1684,"41085":10261,"41086":2885,"41087":3989,"41088":10415,"41089":7057,"41090":10075,"41091":3706,"41092":3430,"41093":4125,"41094":6684,"41095":2070,"41096":1329,"41097":3163,"41098":2098,"41099":3803,"41100":1858,"41101":313,"41102":555,"41103":5098,"41104":3591,"41105":2142,"41106":2799,"41107":5737,"41108":8622,"41109":1919,"41110":10754,"41111":4233,"41112":729,"41113":4224,"41114":7134,"41115":9179,"41116":10984,"41117":7476,"41118":3460,"41119":467,"41120":3885,"41121":10552,"41122":2136,"41123":1787,"41124":1649,"41125":3276,"41126":4527,"41127":10671,"41128":2903,"41129":6662,"41130":9610,"41131":7700,"41132":2546,"41133":1312,"41134":10436,"41135":4539,"41136":7285,"41137":8019,"41138":1280,"41139":2310,"41140":4445,"41141":10463,"41142":6489,"41143":1346,"41144":10204,"41145":2997,"41146":10547,"41147":151,"41148":821,"41149":9790,"41150":199,"41151":2206,"41152":1481,"41153":6782,"41154":3783,"41155":10142,"41156":9949,"41157":10,"41158":2745,"41159":2152,"41160":8555,"41161":9152,"41162":658,"41163":3762,"41164":9590,"41165":9697,"41166":4957,"41167":2267,"41168":2976,"41169":9240,"41170":8773,"41171":9802,"41172":734,"41173":8983,"41174":1810,"41175":9275,"41176":8009,"41177":1192,"41178":1178,"41179":5737,"41180":7939,"41181":1718,"41182":326,"41183":937,"41184":2122,"41185":2476,"41186":3430,"41187":10835,"41188":5375,"41189":5693,"41190":221,"41191":6518,"41192":2710,"41193":4663,"41194":10507,"41195":6922,"41196":243,"41197":7037,"41198":10107,"41199":10493,"41200":9893,"41201":937,"41202":4900,"41203":6881,"41204":5467,"41205":7732,"41206":5609,"41207":2077,"41208":10393,"41209":5143,"41210":211,"41211":5413,"41212":10634,"41213":733,"41214":993,"41215":506,"41216":9049,"41217":6664,"41218":6091,"41219":7631,"41220":3644,"41221":6896,"41222":2783,"41223":5792,"41224":2399,"41225":6166,"41226":1712,"41227":3754,"41228":227,"41229":1059,"41230":10201,"41231":3868,"41232":6274,"41233":4112,"41234":6894,"41235":4383,"41236":4439,"41237":6483,"41238":884,"41239":8174,"41240":6751,"41241":7393,"41242":9754,"41243":10664,"41244":8517,"41245":3631,"41246":2591,"41247":8430,"41248":1766,"41249":5352,"41250":2271,"41251":9845,"41252":2098,"41253":9340,"41254":4634,"41255":7505,"41256":8789,"41257":2186,"41258":10283,"41259":7426,"41260":9717,"41261":1480,"41262":10487,"41263":10620,"41264":7585,"41265":9899,"41266":4689,"41267":9007,"41268":1922,"41269":9650,"41270":6302,"41271":5153,"41272":5160,"41273":4033,"41274":3306,"41275":3079,"41276":2276,"41277":3235,"41278":9387,"41279":6813,"41280":10904,"41281":3636,"41282":4487,"41283":8255,"41284":4336,"41285":7807,"41286":9309,"41287":288,"41288":10010,"41289":9884,"41290":586,"41291":5831,"41292":5185,"41293":6092,"41294":7022,"41295":7462,"41296":3288,"41297":3897,"41298":7670,"41299":10601,"41300":10761,"41301":5494,"41302":1317,"41303":614,"41304":8385,"41305":4297,"41306":9770,"41307":4801,"41308":10293,"41309":9874,"41310":1811,"41311":8931,"41312":3259,"41313":531,"41314":9054,"41315":3925,"41316":6362,"41317":372,"41318":10846,"41319":4639,"41320":10256,"41321":8208,"41322":9467,"41323":8917,"41324":6511,"41325":207,"41326":10468,"41327":7352,"41328":4735,"41329":5396,"41330":6933,"41331":4466,"41332":9459,"41333":2932,"41334":1230,"41335":8639,"41336":10073,"41337":8265,"41338":2510,"41339":9256,"41340":9207,"41341":9440,"41342":2504,"41343":241,"41344":5440,"41345":10164,"41346":3025,"41347":9722,"41348":7869,"41349":6066,"41350":9922,"41351":2648,"41352":9920,"41353":7036,"41354":1294,"41355":1999,"41356":7958,"41357":2034,"41358":3945,"41359":3179,"41360":7986,"41361":3909,"41362":4101,"41363":95,"41364":1222,"41365":3072,"41366":4675,"41367":9373,"41368":9549,"41369":10091,"41370":5865,"41371":3323,"41372":9738,"41373":2462,"41374":8252,"41375":5096,"41376":2421,"41377":6077,"41378":3066,"41379":4114,"41380":4526,"41381":10443,"41382":9761,"41383":5295,"41384":6978,"41385":1147,"41386":10254,"41387":9229,"41388":438,"41389":3254,"41390":3164,"41391":9064,"41392":7671,"41393":5622,"41394":7613,"41395":9689,"41396":6713,"41397":10582,"41398":1613,"41399":77,"41400":7696,"41401":1345,"41402":1739,"41403":6105,"41404":3955,"41405":6614,"41406":1253,"41407":4309,"41408":6511,"41409":10413,"41410":120,"41411":10906,"41412":6034,"41413":10833,"41414":10347,"41415":5534,"41416":4622,"41417":5082,"41418":9817,"41419":10449,"41420":4587,"41421":2933,"41422":4319,"41423":7945,"41424":7819,"41425":3840,"41426":9329,"41427":6185,"41428":4803,"41429":7809,"41430":4101,"41431":2654,"41432":2651,"41433":5325,"41434":2802,"41435":1053,"41436":5418,"41437":1026,"41438":3088,"41439":5652,"41440":1899,"41441":7836,"41442":8966,"41443":88,"41444":7056,"41445":3375,"41446":6774,"41447":6943,"41448":349,"41449":10947,"41450":3824,"41451":5021,"41452":9264,"41453":4340,"41454":8349,"41455":7492,"41456":8831,"41457":6676,"41458":9431,"41459":5117,"41460":7393,"41461":8041,"41462":5068,"41463":5984,"41464":3836,"41465":5935,"41466":5456,"41467":1612,"41468":9962,"41469":8179,"41470":6128,"41471":7610,"41472":599,"41473":10526,"41474":4307,"41475":1878,"41476":9706,"41477":9231,"41478":4056,"41479":5348,"41480":3365,"41481":3270,"41482":2441,"41483":8131,"41484":6996,"41485":1552,"41486":8266,"41487":10746,"41488":718,"41489":9441,"41490":10168,"41491":8838,"41492":6559,"41493":2126,"41494":4434,"41495":5422,"41496":2354,"41497":4564,"41498":3174,"41499":9577,"41500":3838,"41501":6749,"41502":4530,"41503":1336,"41504":9675,"41505":7874,"41506":6844,"41507":3866,"41508":38,"41509":6168,"41510":2031,"41511":6692,"41512":3916,"41513":8729,"41514":5319,"41515":9291,"41516":9933,"41517":3097,"41518":9964,"41519":4357,"41520":9764,"41521":8139,"41522":7578,"41523":7921,"41524":10406,"41525":2337,"41526":5649,"41527":1443,"41528":881,"41529":5678,"41530":7848,"41531":9805,"41532":10416,"41533":173,"41534":6849,"41535":10042,"41536":5474,"41537":5310,"41538":10188,"41539":200,"41540":8568,"41541":8,"41542":8781,"41543":8371,"41544":5465,"41545":10156,"41546":2113,"41547":5350,"41548":2792,"41549":2869,"41550":10220,"41551":8434,"41552":5922,"41553":9470,"41554":8720,"41555":10981,"41556":10063,"41557":6535,"41558":9761,"41559":1955,"41560":5243,"41561":6410,"41562":3977,"41563":2043,"41564":2310,"41565":7040,"41566":9131,"41567":1952,"41568":4906,"41569":6643,"41570":4092,"41571":4059,"41572":1190,"41573":3282,"41574":3216,"41575":7523,"41576":10440,"41577":338,"41578":3303,"41579":1424,"41580":4736,"41581":10350,"41582":4810,"41583":56,"41584":2981,"41585":3253,"41586":7200,"41587":6162,"41588":192,"41589":9445,"41590":2419,"41591":4965,"41592":9397,"41593":2770,"41594":3146,"41595":7567,"41596":7272,"41597":6417,"41598":7017,"41599":7583,"41600":3679,"41601":1834,"41602":7170,"41603":9809,"41604":2139,"41605":9527,"41606":7709,"41607":7356,"41608":8852,"41609":9530,"41610":9813,"41611":4266,"41612":7409,"41613":4395,"41614":8783,"41615":10055,"41616":5848,"41617":4259,"41618":229,"41619":3752,"41620":1451,"41621":5714,"41622":6854,"41623":10407,"41624":2916,"41625":8543,"41626":1436,"41627":10071,"41628":5896,"41629":7788,"41630":7824,"41631":2455,"41632":2423,"41633":3749,"41634":2773,"41635":4037,"41636":3926,"41637":1355,"41638":7772,"41639":4907,"41640":7912,"41641":28,"41642":3105,"41643":4602,"41644":8659,"41645":7175,"41646":2609,"41647":4868,"41648":10853,"41649":9035,"41650":237,"41651":9770,"41652":1920,"41653":6297,"41654":7403,"41655":10471,"41656":5951,"41657":1643,"41658":3154,"41659":4887,"41660":4986,"41661":7802,"41662":10051,"41663":7339,"41664":6428,"41665":7606,"41666":4746,"41667":590,"41668":2123,"41669":1386,"41670":3973,"41671":10547,"41672":6697,"41673":4355,"41674":4550,"41675":1769,"41676":10011,"41677":7488,"41678":8654,"41679":1238,"41680":8107,"41681":9748,"41682":2297,"41683":6427,"41684":9384,"41685":10892,"41686":5055,"41687":8243,"41688":3686,"41689":2823,"41690":1237,"41691":7209,"41692":9470,"41693":331,"41694":7573,"41695":2235,"41696":5561,"41697":1925,"41698":2796,"41699":1716,"41700":3389,"41701":5101,"41702":9951,"41703":5984,"41704":1162,"41705":9038,"41706":5674,"41707":8303,"41708":10663,"41709":307,"41710":255,"41711":5494,"41712":10887,"41713":2980,"41714":7272,"41715":9053,"41716":7599,"41717":5031,"41718":6666,"41719":10146,"41720":7586,"41721":6859,"41722":1401,"41723":9076,"41724":7281,"41725":398,"41726":1659,"41727":4006,"41728":651,"41729":9231,"41730":6255,"41731":2392,"41732":6094,"41733":5424,"41734":3864,"41735":3320,"41736":9135,"41737":6877,"41738":8153,"41739":3164,"41740":296,"41741":746,"41742":533,"41743":5992,"41744":7327,"41745":6469,"41746":8957,"41747":510,"41748":8696,"41749":8209,"41750":9502,"41751":6579,"41752":6901,"41753":7885,"41754":7571,"41755":309,"41756":1825,"41757":4040,"41758":6694,"41759":6981,"41760":4059,"41761":7598,"41762":8419,"41763":7221,"41764":9270,"41765":689,"41766":2338,"41767":2212,"41768":6050,"41769":2304,"41770":6755,"41771":7324,"41772":9121,"41773":9700,"41774":7176,"41775":6670,"41776":8701,"41777":5807,"41778":7786,"41779":4228,"41780":337,"41781":6576,"41782":757,"41783":1151,"41784":10347,"41785":7757,"41786":6533,"41787":6837,"41788":6480,"41789":10655,"41790":3246,"41791":6422,"41792":330,"41793":3974,"41794":7185,"41795":6611,"41796":957,"41797":7141,"41798":2139,"41799":1876,"41800":522,"41801":1189,"41802":5094,"41803":9357,"41804":2678,"41805":9032,"41806":4315,"41807":6118,"41808":5388,"41809":6858,"41810":9449,"41811":3184,"41812":877,"41813":1779,"41814":3331,"41815":10285,"41816":6275,"41817":8208,"41818":4318,"41819":4554,"41820":2398,"41821":8710,"41822":787,"41823":3745,"41824":6779,"41825":7959,"41826":634,"41827":8206,"41828":9903,"41829":10406,"41830":2840,"41831":9228,"41832":9515,"41833":5530,"41834":10131,"41835":6226,"41836":6005,"41837":2036,"41838":4658,"41839":623,"41840":8286,"41841":4481,"41842":4129,"41843":10476,"41844":8869,"41845":9212,"41846":6575,"41847":4629,"41848":10860,"41849":393,"41850":4433,"41851":7806,"41852":1432,"41853":9909,"41854":3956,"41855":8719,"41856":9984,"41857":3135,"41858":3773,"41859":2531,"41860":5518,"41861":191,"41862":54,"41863":458,"41864":9599,"41865":8920,"41866":4836,"41867":10839,"41868":4173,"41869":4582,"41870":2875,"41871":2693,"41872":10712,"41873":9165,"41874":4157,"41875":10331,"41876":4137,"41877":2981,"41878":8020,"41879":9889,"41880":9504,"41881":444,"41882":2406,"41883":7722,"41884":7974,"41885":6494,"41886":10788,"41887":1248,"41888":4144,"41889":3587,"41890":2397,"41891":3516,"41892":832,"41893":10940,"41894":9003,"41895":2768,"41896":9427,"41897":7870,"41898":10350,"41899":8211,"41900":462,"41901":9678,"41902":5844,"41903":5441,"41904":193,"41905":8342,"41906":1598,"41907":7511,"41908":10027,"41909":6195,"41910":5648,"41911":8464,"41912":5643,"41913":7359,"41914":9625,"41915":8548,"41916":8828,"41917":6997,"41918":1930,"41919":4459,"41920":6699,"41921":8999,"41922":10169,"41923":10682,"41924":9712,"41925":2707,"41926":1162,"41927":10618,"41928":7382,"41929":3458,"41930":1252,"41931":10613,"41932":3492,"41933":2960,"41934":3213,"41935":8167,"41936":5803,"41937":9748,"41938":4337,"41939":338,"41940":1481,"41941":10128,"41942":7058,"41943":6741,"41944":6000,"41945":9613,"41946":2977,"41947":10413,"41948":7440,"41949":1668,"41950":2678,"41951":1310,"41952":1967,"41953":7696,"41954":4377,"41955":705,"41956":4660,"41957":9812,"41958":4672,"41959":7147,"41960":6172,"41961":9140,"41962":6074,"41963":9854,"41964":2452,"41965":9265,"41966":5587,"41967":3576,"41968":1676,"41969":1036,"41970":5707,"41971":7096,"41972":10474,"41973":4990,"41974":7355,"41975":5543,"41976":4131,"41977":9038,"41978":6052,"41979":2685,"41980":1056,"41981":6235,"41982":6708,"41983":5979,"41984":3200,"41985":838,"41986":4136,"41987":2888,"41988":4169,"41989":2324,"41990":2295,"41991":3400,"41992":4448,"41993":5399,"41994":3692,"41995":4746,"41996":5525,"41997":4023,"41998":10773,"41999":10682,"42000":1617,"42001":3865,"42002":1045,"42003":7467,"42004":10454,"42005":4662,"42006":4134,"42007":162,"42008":4507,"42009":9451,"42010":256,"42011":8242,"42012":855,"42013":111,"42014":10755,"42015":3318,"42016":7065,"42017":2830,"42018":734,"42019":7359,"42020":230,"42021":7502,"42022":4921,"42023":431,"42024":4797,"42025":7520,"42026":2066,"42027":1577,"42028":4715,"42029":4636,"42030":3997,"42031":10042,"42032":8195,"42033":7580,"42034":1596,"42035":3794,"42036":8672,"42037":10659,"42038":6045,"42039":1947,"42040":10419,"42041":10774,"42042":7991,"42043":8754,"42044":10321,"42045":3360,"42046":3807,"42047":4759,"42048":3249,"42049":7560,"42050":4548,"42051":3296,"42052":4909,"42053":9352,"42054":1276,"42055":1065,"42056":7458,"42057":4587,"42058":10856,"42059":555,"42060":5449,"42061":10405,"42062":5484,"42063":4860,"42064":3864,"42065":5945,"42066":8875,"42067":3779,"42068":1156,"42069":8945,"42070":1282,"42071":8248,"42072":5014,"42073":2395,"42074":10324,"42075":9012,"42076":8482,"42077":7863,"42078":8510,"42079":9505,"42080":2843,"42081":10372,"42082":1667,"42083":9621,"42084":2722,"42085":6416,"42086":5418,"42087":1350,"42088":4610,"42089":2307,"42090":9580,"42091":7144,"42092":3536,"42093":1028,"42094":5906,"42095":1430,"42096":10604,"42097":9246,"42098":7026,"42099":3762,"42100":444,"42101":3747,"42102":5441,"42103":94,"42104":5717,"42105":2542,"42106":10018,"42107":8853,"42108":1917,"42109":10866,"42110":5350,"42111":1054,"42112":2083,"42113":6237,"42114":10628,"42115":10343,"42116":7476,"42117":2159,"42118":5270,"42119":8455,"42120":1844,"42121":3680,"42122":3972,"42123":4390,"42124":4637,"42125":1269,"42126":8264,"42127":863,"42128":7253,"42129":6364,"42130":8202,"42131":3296,"42132":7110,"42133":4296,"42134":4707,"42135":3233,"42136":4731,"42137":298,"42138":8870,"42139":9972,"42140":8885,"42141":1834,"42142":3236,"42143":3245,"42144":4195,"42145":8796,"42146":1309,"42147":5555,"42148":9737,"42149":1635,"42150":6306,"42151":2235,"42152":2135,"42153":8869,"42154":371,"42155":9856,"42156":1145,"42157":3517,"42158":7614,"42159":9782,"42160":9341,"42161":8411,"42162":7065,"42163":1927,"42164":5413,"42165":1491,"42166":2635,"42167":1011,"42168":4623,"42169":10686,"42170":8784,"42171":3645,"42172":9297,"42173":4327,"42174":7691,"42175":8858,"42176":10513,"42177":4208,"42178":1441,"42179":7242,"42180":5670,"42181":6351,"42182":1674,"42183":6580,"42184":6229,"42185":7189,"42186":3893,"42187":10264,"42188":10415,"42189":4319,"42190":241,"42191":2744,"42192":5001,"42193":397,"42194":10067,"42195":9782,"42196":4455,"42197":2104,"42198":6663,"42199":7372,"42200":793,"42201":8203,"42202":7126,"42203":568,"42204":6142,"42205":4463,"42206":1365,"42207":559,"42208":8325,"42209":2205,"42210":2052,"42211":1398,"42212":505,"42213":5597,"42214":4894,"42215":10171,"42216":10358,"42217":4206,"42218":6346,"42219":6533,"42220":7397,"42221":9878,"42222":487,"42223":3403,"42224":5598,"42225":3055,"42226":1178,"42227":2409,"42228":2551,"42229":3252,"42230":6295,"42231":5660,"42232":5851,"42233":10528,"42234":5596,"42235":831,"42236":483,"42237":5863,"42238":1015,"42239":7565,"42240":4941,"42241":5586,"42242":8016,"42243":7314,"42244":1429,"42245":7437,"42246":10983,"42247":8182,"42248":9993,"42249":2280,"42250":8086,"42251":567,"42252":2215,"42253":1240,"42254":10593,"42255":7439,"42256":351,"42257":8054,"42258":6566,"42259":2217,"42260":2624,"42261":7290,"42262":6168,"42263":2013,"42264":2974,"42265":4096,"42266":9658,"42267":4578,"42268":2913,"42269":2986,"42270":8206,"42271":4178,"42272":3949,"42273":3424,"42274":10989,"42275":3647,"42276":8075,"42277":2328,"42278":3671,"42279":5001,"42280":5518,"42281":3733,"42282":713,"42283":3757,"42284":7543,"42285":1915,"42286":9411,"42287":4622,"42288":6411,"42289":6413,"42290":1176,"42291":6332,"42292":3102,"42293":188,"42294":5725,"42295":691,"42296":10577,"42297":8120,"42298":8176,"42299":5444,"42300":5740,"42301":9059,"42302":8912,"42303":5202,"42304":1759,"42305":4515,"42306":9125,"42307":9839,"42308":2277,"42309":3771,"42310":925,"42311":9697,"42312":343,"42313":7864,"42314":10320,"42315":4669,"42316":6630,"42317":8293,"42318":7048,"42319":6959,"42320":2781,"42321":329,"42322":10416,"42323":983,"42324":5990,"42325":1329,"42326":5753,"42327":3642,"42328":8672,"42329":363,"42330":8125,"42331":3440,"42332":1566,"42333":4762,"42334":4690,"42335":1121,"42336":6236,"42337":34,"42338":493,"42339":10059,"42340":6192,"42341":9046,"42342":1267,"42343":9753,"42344":3618,"42345":3346,"42346":6567,"42347":9585,"42348":9857,"42349":8927,"42350":7824,"42351":4503,"42352":10739,"42353":6736,"42354":4728,"42355":7754,"42356":343,"42357":4230,"42358":6135,"42359":8280,"42360":4436,"42361":8499,"42362":1928,"42363":7680,"42364":3064,"42365":8910,"42366":5343,"42367":2568,"42368":3180,"42369":4651,"42370":4759,"42371":916,"42372":248,"42373":904,"42374":7687,"42375":3929,"42376":7464,"42377":494,"42378":9842,"42379":8377,"42380":7310,"42381":10726,"42382":8226,"42383":5212,"42384":10273,"42385":7673,"42386":7347,"42387":3194,"42388":609,"42389":533,"42390":7864,"42391":10525,"42392":6379,"42393":6037,"42394":9353,"42395":8453,"42396":2810,"42397":5977,"42398":8318,"42399":606,"42400":8872,"42401":10393,"42402":1335,"42403":891,"42404":8759,"42405":2691,"42406":10293,"42407":7718,"42408":273,"42409":7608,"42410":4302,"42411":6164,"42412":2492,"42413":5875,"42414":7477,"42415":5875,"42416":65,"42417":8558,"42418":3220,"42419":6436,"42420":4009,"42421":5405,"42422":10025,"42423":9557,"42424":7691,"42425":6176,"42426":6444,"42427":8225,"42428":9172,"42429":5591,"42430":1829,"42431":6968,"42432":5389,"42433":6083,"42434":3757,"42435":523,"42436":6462,"42437":3226,"42438":3725,"42439":4182,"42440":335,"42441":7507,"42442":3908,"42443":4989,"42444":3999,"42445":5602,"42446":2554,"42447":2328,"42448":3074,"42449":4731,"42450":7232,"42451":7898,"42452":4504,"42453":6696,"42454":9552,"42455":3030,"42456":8336,"42457":7928,"42458":8400,"42459":7679,"42460":3311,"42461":1703,"42462":1993,"42463":9111,"42464":714,"42465":8192,"42466":6488,"42467":7368,"42468":3944,"42469":2197,"42470":8947,"42471":108,"42472":8856,"42473":7571,"42474":5227,"42475":799,"42476":5668,"42477":4074,"42478":8689,"42479":7523,"42480":5715,"42481":8146,"42482":2876,"42483":9837,"42484":1429,"42485":6054,"42486":3078,"42487":7721,"42488":7185,"42489":7968,"42490":7496,"42491":1168,"42492":2388,"42493":3547,"42494":8200,"42495":6176,"42496":5122,"42497":8587,"42498":5575,"42499":33,"42500":9135,"42501":10856,"42502":1,"42503":3214,"42504":2198,"42505":4689,"42506":9344,"42507":8818,"42508":7337,"42509":2165,"42510":1018,"42511":194,"42512":1852,"42513":245,"42514":2585,"42515":8408,"42516":10900,"42517":8232,"42518":1611,"42519":7528,"42520":6208,"42521":213,"42522":9507,"42523":946,"42524":7326,"42525":9928,"42526":6658,"42527":2401,"42528":2446,"42529":5977,"42530":6375,"42531":9944,"42532":4763,"42533":3605,"42534":2106,"42535":2876,"42536":7790,"42537":9956,"42538":10108,"42539":8247,"42540":753,"42541":5569,"42542":5996,"42543":9379,"42544":353,"42545":8132,"42546":8931,"42547":2979,"42548":419,"42549":8157,"42550":10164,"42551":3508,"42552":543,"42553":10118,"42554":7694,"42555":10522,"42556":65,"42557":10076,"42558":8066,"42559":3084,"42560":9842,"42561":8340,"42562":7921,"42563":1754,"42564":10445,"42565":7908,"42566":9141,"42567":5733,"42568":6305,"42569":2979,"42570":514,"42571":2267,"42572":3803,"42573":7034,"42574":7702,"42575":3622,"42576":3041,"42577":2673,"42578":8861,"42579":9811,"42580":46,"42581":9421,"42582":7359,"42583":916,"42584":9315,"42585":6287,"42586":1533,"42587":934,"42588":8324,"42589":8950,"42590":8595,"42591":3370,"42592":5969,"42593":431,"42594":8031,"42595":2582,"42596":10662,"42597":4339,"42598":709,"42599":7012,"42600":7346,"42601":2530,"42602":6964,"42603":860,"42604":9150,"42605":2119,"42606":7427,"42607":8348,"42608":4566,"42609":5834,"42610":4096,"42611":7858,"42612":4329,"42613":3069,"42614":4352,"42615":8816,"42616":4324,"42617":1478,"42618":2533,"42619":8490,"42620":2524,"42621":1511,"42622":3747,"42623":9160,"42624":6501,"42625":3615,"42626":1344,"42627":4635,"42628":10714,"42629":5302,"42630":5344,"42631":2742,"42632":2219,"42633":10705,"42634":5906,"42635":2316,"42636":6008,"42637":5084,"42638":8840,"42639":6907,"42640":1842,"42641":6576,"42642":684,"42643":1331,"42644":2386,"42645":6081,"42646":10382,"42647":9919,"42648":8197,"42649":205,"42650":9474,"42651":3609,"42652":8948,"42653":6380,"42654":3682,"42655":4552,"42656":820,"42657":9571,"42658":7120,"42659":6203,"42660":6294,"42661":6721,"42662":1636,"42663":1021,"42664":10818,"42665":7974,"42666":8858,"42667":4285,"42668":6361,"42669":8939,"42670":1679,"42671":2887,"42672":4945,"42673":8565,"42674":6067,"42675":5805,"42676":2024,"42677":2865,"42678":9405,"42679":539,"42680":10021,"42681":2454,"42682":6160,"42683":8842,"42684":9140,"42685":7441,"42686":10273,"42687":4660,"42688":1301,"42689":6016,"42690":10240,"42691":5685,"42692":6809,"42693":2323,"42694":6210,"42695":10215,"42696":2286,"42697":982,"42698":6059,"42699":9037,"42700":5179,"42701":1709,"42702":2595,"42703":8312,"42704":9510,"42705":752,"42706":3367,"42707":2662,"42708":936,"42709":10946,"42710":7988,"42711":4271,"42712":4570,"42713":1119,"42714":6331,"42715":6284,"42716":1317,"42717":1005,"42718":9204,"42719":10595,"42720":3273,"42721":8052,"42722":591,"42723":3347,"42724":6156,"42725":7095,"42726":5499,"42727":4617,"42728":10156,"42729":1810,"42730":9547,"42731":6326,"42732":10051,"42733":6995,"42734":5929,"42735":7212,"42736":2119,"42737":8244,"42738":10220,"42739":1762,"42740":6964,"42741":7812,"42742":4988,"42743":8772,"42744":7254,"42745":10914,"42746":422,"42747":41,"42748":3823,"42749":3804,"42750":10044,"42751":1031,"42752":2299,"42753":10545,"42754":7894,"42755":535,"42756":892,"42757":924,"42758":10682,"42759":3694,"42760":8286,"42761":2466,"42762":2119,"42763":1891,"42764":4173,"42765":5908,"42766":8321,"42767":4222,"42768":4697,"42769":5894,"42770":7958,"42771":4481,"42772":10556,"42773":6863,"42774":5264,"42775":4565,"42776":2261,"42777":712,"42778":1911,"42779":416,"42780":9296,"42781":4985,"42782":2728,"42783":9505,"42784":9821,"42785":1772,"42786":3926,"42787":10916,"42788":641,"42789":5960,"42790":5590,"42791":617,"42792":9509,"42793":247,"42794":741,"42795":8236,"42796":8593,"42797":5524,"42798":5147,"42799":1605,"42800":4091,"42801":3797,"42802":3028,"42803":3758,"42804":9471,"42805":8895,"42806":8729,"42807":8386,"42808":7819,"42809":854,"42810":7252,"42811":6373,"42812":4303,"42813":4321,"42814":789,"42815":8398,"42816":8369,"42817":5997,"42818":7762,"42819":3915,"42820":4552,"42821":4207,"42822":3178,"42823":8968,"42824":6886,"42825":3596,"42826":7228,"42827":480,"42828":5604,"42829":6543,"42830":6985,"42831":9041,"42832":4377,"42833":8089,"42834":894,"42835":4912,"42836":3187,"42837":7306,"42838":798,"42839":924,"42840":6188,"42841":7214,"42842":6119,"42843":7645,"42844":1654,"42845":6608,"42846":9055,"42847":1276,"42848":10090,"42849":8322,"42850":9139,"42851":4015,"42852":7266,"42853":8315,"42854":5893,"42855":7870,"42856":1954,"42857":3619,"42858":1492,"42859":10193,"42860":5658,"42861":6444,"42862":6274,"42863":2325,"42864":1540,"42865":10311,"42866":618,"42867":8986,"42868":1397,"42869":5330,"42870":2125,"42871":4935,"42872":2130,"42873":5309,"42874":7347,"42875":9151,"42876":1188,"42877":2278,"42878":10162,"42879":9614,"42880":8429,"42881":690,"42882":9552,"42883":10949,"42884":8595,"42885":2696,"42886":8135,"42887":4816,"42888":8294,"42889":3849,"42890":8824,"42891":6450,"42892":3110,"42893":3619,"42894":1198,"42895":8638,"42896":7885,"42897":5928,"42898":10380,"42899":1807,"42900":1253,"42901":8726,"42902":3465,"42903":2507,"42904":4202,"42905":2011,"42906":10466,"42907":8801,"42908":4539,"42909":570,"42910":10435,"42911":1229,"42912":731,"42913":8425,"42914":9520,"42915":61,"42916":8633,"42917":327,"42918":1723,"42919":6750,"42920":9199,"42921":2743,"42922":4082,"42923":8954,"42924":4618,"42925":10334,"42926":8997,"42927":8600,"42928":8492,"42929":7638,"42930":8284,"42931":2664,"42932":10870,"42933":2598,"42934":6442,"42935":185,"42936":8790,"42937":7988,"42938":5407,"42939":9678,"42940":5415,"42941":10279,"42942":7648,"42943":7956,"42944":7981,"42945":1105,"42946":2376,"42947":5585,"42948":10270,"42949":3910,"42950":2199,"42951":3884,"42952":6457,"42953":116,"42954":3721,"42955":1279,"42956":10683,"42957":10899,"42958":611,"42959":2234,"42960":10506,"42961":5586,"42962":8794,"42963":9314,"42964":1328,"42965":3808,"42966":10174,"42967":1096,"42968":9428,"42969":8909,"42970":9205,"42971":2180,"42972":3618,"42973":5330,"42974":6090,"42975":10192,"42976":2032,"42977":6207,"42978":6823,"42979":9719,"42980":866,"42981":7411,"42982":225,"42983":10820,"42984":5599,"42985":1312,"42986":6553,"42987":9723,"42988":3936,"42989":368,"42990":3356,"42991":6602,"42992":8232,"42993":2248,"42994":2145,"42995":6850,"42996":9502,"42997":3199,"42998":408,"42999":2715,"43000":7365,"43001":1765,"43002":10770,"43003":9370,"43004":3398,"43005":4255,"43006":4420,"43007":8917,"43008":5898,"43009":8894,"43010":5827,"43011":10020,"43012":5711,"43013":9249,"43014":4866,"43015":345,"43016":8476,"43017":10001,"43018":7912,"43019":313,"43020":9579,"43021":9415,"43022":3785,"43023":5330,"43024":8452,"43025":2196,"43026":3930,"43027":2064,"43028":3689,"43029":4883,"43030":2222,"43031":376,"43032":10180,"43033":6403,"43034":10695,"43035":10288,"43036":9744,"43037":10030,"43038":6701,"43039":149,"43040":3855,"43041":8496,"43042":2847,"43043":7404,"43044":839,"43045":2658,"43046":5165,"43047":3689,"43048":8578,"43049":10373,"43050":5104,"43051":7944,"43052":4887,"43053":3756,"43054":3655,"43055":5921,"43056":8709,"43057":712,"43058":176,"43059":10683,"43060":2120,"43061":652,"43062":8676,"43063":8844,"43064":9980,"43065":5481,"43066":8679,"43067":732,"43068":8050,"43069":2856,"43070":9591,"43071":2009,"43072":9751,"43073":4414,"43074":2681,"43075":2991,"43076":5335,"43077":2301,"43078":2270,"43079":10699,"43080":3423,"43081":9979,"43082":3435,"43083":402,"43084":1690,"43085":9322,"43086":4017,"43087":3480,"43088":6783,"43089":3059,"43090":5155,"43091":8694,"43092":1383,"43093":9440,"43094":3772,"43095":6112,"43096":7477,"43097":8972,"43098":8938,"43099":4222,"43100":2958,"43101":44,"43102":8804,"43103":5022,"43104":10793,"43105":1494,"43106":9404,"43107":3020,"43108":2191,"43109":10315,"43110":7301,"43111":9788,"43112":9699,"43113":7198,"43114":2651,"43115":3714,"43116":6252,"43117":4086,"43118":8591,"43119":3873,"43120":2268,"43121":4649,"43122":5804,"43123":6559,"43124":7307,"43125":7833,"43126":9308,"43127":6807,"43128":6530,"43129":3124,"43130":3542,"43131":9653,"43132":9308,"43133":7840,"43134":2324,"43135":10351,"43136":5728,"43137":446,"43138":2627,"43139":5006,"43140":8516,"43141":9127,"43142":236,"43143":8285,"43144":5752,"43145":503,"43146":9669,"43147":8709,"43148":710,"43149":2176,"43150":9695,"43151":7778,"43152":4227,"43153":10235,"43154":6776,"43155":9331,"43156":968,"43157":1857,"43158":5486,"43159":9635,"43160":3589,"43161":3574,"43162":2885,"43163":2459,"43164":9788,"43165":8031,"43166":5538,"43167":5165,"43168":1189,"43169":119,"43170":2471,"43171":9162,"43172":4417,"43173":2581,"43174":2315,"43175":9903,"43176":10311,"43177":8821,"43178":9253,"43179":9690,"43180":10465,"43181":5245,"43182":476,"43183":5466,"43184":5973,"43185":3894,"43186":9217,"43187":720,"43188":10703,"43189":7079,"43190":4071,"43191":10268,"43192":5683,"43193":5168,"43194":2175,"43195":7458,"43196":3375,"43197":6183,"43198":1401,"43199":10948,"43200":5017,"43201":5783,"43202":7679,"43203":7445,"43204":3114,"43205":5086,"43206":9508,"43207":2124,"43208":9224,"43209":10381,"43210":5831,"43211":3715,"43212":3530,"43213":5572,"43214":3711,"43215":10514,"43216":1043,"43217":9442,"43218":5839,"43219":5902,"43220":430,"43221":7240,"43222":9557,"43223":2584,"43224":2119,"43225":5531,"43226":8373,"43227":1880,"43228":750,"43229":7468,"43230":10853,"43231":7144,"43232":2193,"43233":4924,"43234":2557,"43235":10228,"43236":3992,"43237":1787,"43238":9097,"43239":2538,"43240":3912,"43241":747,"43242":3144,"43243":8294,"43244":5155,"43245":10506,"43246":4163,"43247":3645,"43248":7786,"43249":8443,"43250":8968,"43251":8846,"43252":4220,"43253":993,"43254":9388,"43255":435,"43256":10660,"43257":5615,"43258":5277,"43259":9755,"43260":3190,"43261":4422,"43262":1076,"43263":8020,"43264":10623,"43265":1366,"43266":6260,"43267":8152,"43268":1349,"43269":8097,"43270":10519,"43271":8954,"43272":4537,"43273":2213,"43274":5994,"43275":1320,"43276":4387,"43277":1899,"43278":2490,"43279":3355,"43280":8932,"43281":9569,"43282":351,"43283":3771,"43284":1085,"43285":8168,"43286":2887,"43287":3127,"43288":1833,"43289":1473,"43290":9519,"43291":8432,"43292":5025,"43293":8257,"43294":6080,"43295":5646,"43296":1472,"43297":4034,"43298":10627,"43299":10647,"43300":7118,"43301":936,"43302":6012,"43303":5274,"43304":600,"43305":8676,"43306":1698,"43307":3940,"43308":5388,"43309":7491,"43310":1696,"43311":3194,"43312":8148,"43313":971,"43314":1534,"43315":7603,"43316":9418,"43317":10467,"43318":1504,"43319":4389,"43320":10598,"43321":6178,"43322":2636,"43323":751,"43324":1199,"43325":4651,"43326":7813,"43327":4482,"43328":1835,"43329":9230,"43330":1831,"43331":6723,"43332":6947,"43333":9049,"43334":8924,"43335":7549,"43336":6738,"43337":3505,"43338":8876,"43339":3853,"43340":1632,"43341":3356,"43342":1858,"43343":5936,"43344":2484,"43345":8826,"43346":6263,"43347":10742,"43348":8316,"43349":4396,"43350":9004,"43351":7637,"43352":10389,"43353":4876,"43354":991,"43355":3027,"43356":10494,"43357":314,"43358":8785,"43359":3663,"43360":6059,"43361":1648,"43362":8764,"43363":4634,"43364":7533,"43365":2259,"43366":5857,"43367":10883,"43368":2378,"43369":6273,"43370":6619,"43371":4175,"43372":7725,"43373":7100,"43374":2822,"43375":9027,"43376":8503,"43377":8591,"43378":10166,"43379":9035,"43380":8661,"43381":2658,"43382":6219,"43383":264,"43384":4374,"43385":5178,"43386":4297,"43387":7236,"43388":10048,"43389":3739,"43390":6629,"43391":3107,"43392":7255,"43393":10296,"43394":6376,"43395":10026,"43396":3380,"43397":4433,"43398":3754,"43399":1494,"43400":9299,"43401":10654,"43402":6245,"43403":537,"43404":5768,"43405":5678,"43406":7537,"43407":6253,"43408":6940,"43409":7038,"43410":5869,"43411":7232,"43412":9130,"43413":7408,"43414":3216,"43415":4362,"43416":8405,"43417":7996,"43418":2725,"43419":8822,"43420":5927,"43421":268,"43422":10093,"43423":765,"43424":989,"43425":1312,"43426":2961,"43427":6506,"43428":5743,"43429":5686,"43430":2354,"43431":4957,"43432":6755,"43433":9398,"43434":8835,"43435":2417,"43436":1180,"43437":8797,"43438":1856,"43439":5507,"43440":3214,"43441":2469,"43442":7409,"43443":8877,"43444":2396,"43445":3367,"43446":3950,"43447":10968,"43448":1058,"43449":2448,"43450":5286,"43451":10728,"43452":5360,"43453":698,"43454":1517,"43455":9184,"43456":228,"43457":1929,"43458":7986,"43459":3278,"43460":619,"43461":2550,"43462":8342,"43463":6971,"43464":10928,"43465":1941,"43466":4023,"43467":6415,"43468":2389,"43469":6632,"43470":2016,"43471":8510,"43472":8989,"43473":599,"43474":4760,"43475":72,"43476":5288,"43477":10276,"43478":10548,"43479":4480,"43480":7784,"43481":8165,"43482":5641,"43483":8569,"43484":3939,"43485":7591,"43486":4307,"43487":1815,"43488":4319,"43489":1381,"43490":7539,"43491":1380,"43492":9503,"43493":9229,"43494":2543,"43495":10367,"43496":3640,"43497":6328,"43498":7387,"43499":10581,"43500":5417,"43501":7996,"43502":2230,"43503":8405,"43504":5453,"43505":9081,"43506":6147,"43507":8706,"43508":1164,"43509":6972,"43510":7479,"43511":3486,"43512":859,"43513":7150,"43514":5416,"43515":118,"43516":7145,"43517":1829,"43518":135,"43519":1097,"43520":396,"43521":10894,"43522":5043,"43523":8970,"43524":10394,"43525":5182,"43526":3906,"43527":2041,"43528":19,"43529":2446,"43530":3052,"43531":3293,"43532":7407,"43533":7354,"43534":8901,"43535":478,"43536":9679,"43537":5229,"43538":8071,"43539":5000,"43540":7536,"43541":6721,"43542":9358,"43543":7538,"43544":4943,"43545":9399,"43546":10217,"43547":5651,"43548":3005,"43549":6465,"43550":9871,"43551":7680,"43552":1191,"43553":3254,"43554":754,"43555":6232,"43556":9213,"43557":7574,"43558":7385,"43559":7045,"43560":9883,"43561":8641,"43562":10978,"43563":1414,"43564":4563,"43565":4950,"43566":8847,"43567":5913,"43568":415,"43569":1931,"43570":7087,"43571":6990,"43572":7327,"43573":5326,"43574":6987,"43575":9792,"43576":6128,"43577":377,"43578":8002,"43579":10635,"43580":5235,"43581":1376,"43582":4910,"43583":7705,"43584":7682,"43585":5190,"43586":2708,"43587":8032,"43588":290,"43589":6902,"43590":9012,"43591":421,"43592":999,"43593":1255,"43594":7981,"43595":1861,"43596":1035,"43597":2127,"43598":9105,"43599":9346,"43600":9768,"43601":9543,"43602":8391,"43603":348,"43604":7060,"43605":3607,"43606":8053,"43607":3987,"43608":10712,"43609":358,"43610":1035,"43611":255,"43612":6143,"43613":527,"43614":1531,"43615":2299,"43616":4472,"43617":10495,"43618":6910,"43619":1558,"43620":6862,"43621":1844,"43622":8814,"43623":5795,"43624":3477,"43625":3327,"43626":5724,"43627":4151,"43628":3941,"43629":9293,"43630":5255,"43631":1697,"43632":7027,"43633":10896,"43634":10870,"43635":10624,"43636":1252,"43637":4962,"43638":5570,"43639":1745,"43640":10189,"43641":91,"43642":2879,"43643":384,"43644":7581,"43645":3804,"43646":4998,"43647":848,"43648":7197,"43649":6183,"43650":6218,"43651":7649,"43652":3199,"43653":8111,"43654":10546,"43655":5892,"43656":2685,"43657":3956,"43658":9578,"43659":3177,"43660":4884,"43661":6320,"43662":10267,"43663":10815,"43664":657,"43665":9510,"43666":64,"43667":10934,"43668":9321,"43669":9560,"43670":5402,"43671":1355,"43672":1672,"43673":1119,"43674":8647,"43675":8221,"43676":2913,"43677":2626,"43678":9301,"43679":4609,"43680":6124,"43681":974,"43682":3961,"43683":9098,"43684":1001,"43685":10483,"43686":5780,"43687":10151,"43688":9178,"43689":4406,"43690":7757,"43691":218,"43692":627,"43693":9528,"43694":8687,"43695":4747,"43696":983,"43697":4529,"43698":7308,"43699":999,"43700":2917,"43701":2379,"43702":7858,"43703":8175,"43704":5276,"43705":6346,"43706":6131,"43707":1902,"43708":2963,"43709":3461,"43710":10082,"43711":2310,"43712":6829,"43713":7592,"43714":8490,"43715":5104,"43716":8218,"43717":5193,"43718":543,"43719":4910,"43720":1666,"43721":9430,"43722":5580,"43723":251,"43724":9305,"43725":915,"43726":660,"43727":4876,"43728":8884,"43729":5715,"43730":3596,"43731":6821,"43732":4934,"43733":118,"43734":9,"43735":1683,"43736":10901,"43737":7396,"43738":7475,"43739":3677,"43740":3842,"43741":4728,"43742":8393,"43743":3877,"43744":7796,"43745":8473,"43746":10486,"43747":5741,"43748":1640,"43749":9057,"43750":3690,"43751":6467,"43752":10629,"43753":8486,"43754":6806,"43755":1717,"43756":5862,"43757":5159,"43758":10833,"43759":4571,"43760":8871,"43761":9400,"43762":9695,"43763":2268,"43764":2156,"43765":1812,"43766":5032,"43767":10324,"43768":7151,"43769":3940,"43770":6309,"43771":8340,"43772":3610,"43773":4495,"43774":9313,"43775":6943,"43776":5287,"43777":9419,"43778":5940,"43779":6608,"43780":6810,"43781":1083,"43782":5507,"43783":8328,"43784":1643,"43785":3761,"43786":181,"43787":7708,"43788":4178,"43789":9165,"43790":10619,"43791":2817,"43792":5301,"43793":7994,"43794":724,"43795":3508,"43796":9324,"43797":2431,"43798":5942,"43799":9947,"43800":1140,"43801":8157,"43802":9900,"43803":7513,"43804":10690,"43805":10474,"43806":6281,"43807":6514,"43808":9018,"43809":3746,"43810":797,"43811":1683,"43812":9182,"43813":9009,"43814":7082,"43815":8939,"43816":672,"43817":10662,"43818":9616,"43819":4386,"43820":7304,"43821":1543,"43822":9416,"43823":1530,"43824":8684,"43825":7766,"43826":2856,"43827":802,"43828":6797,"43829":6592,"43830":9203,"43831":5326,"43832":832,"43833":6524,"43834":618,"43835":2861,"43836":1316,"43837":8612,"43838":6305,"43839":9211,"43840":10627,"43841":8665,"43842":6035,"43843":80,"43844":8268,"43845":1699,"43846":4142,"43847":5449,"43848":1210,"43849":6864,"43850":1730,"43851":8103,"43852":3970,"43853":4613,"43854":6162,"43855":3769,"43856":3395,"43857":1645,"43858":5874,"43859":2655,"43860":577,"43861":6205,"43862":10511,"43863":10865,"43864":1897,"43865":8861,"43866":7529,"43867":8522,"43868":8229,"43869":70,"43870":8965,"43871":5059,"43872":1624,"43873":1886,"43874":7255,"43875":3015,"43876":6227,"43877":294,"43878":5472,"43879":5445,"43880":7600,"43881":3963,"43882":3763,"43883":7715,"43884":3493,"43885":8518,"43886":2976,"43887":2742,"43888":5732,"43889":1350,"43890":1923,"43891":10921,"43892":762,"43893":144,"43894":7707,"43895":4424,"43896":10083,"43897":9125,"43898":4905,"43899":7896,"43900":3461,"43901":8748,"43902":8521,"43903":10484,"43904":4038,"43905":1972,"43906":1089,"43907":1056,"43908":9489,"43909":7094,"43910":939,"43911":9135,"43912":6264,"43913":309,"43914":2197,"43915":9939,"43916":3468,"43917":7890,"43918":279,"43919":9489,"43920":844,"43921":7011,"43922":7604,"43923":2306,"43924":4685,"43925":8597,"43926":2186,"43927":4014,"43928":2724,"43929":4039,"43930":1027,"43931":2599,"43932":6627,"43933":8376,"43934":726,"43935":1946,"43936":5330,"43937":766,"43938":7203,"43939":5396,"43940":6220,"43941":768,"43942":2752,"43943":3436,"43944":5076,"43945":2921,"43946":5556,"43947":14,"43948":887,"43949":10370,"43950":9248,"43951":10070,"43952":10141,"43953":7857,"43954":10255,"43955":1336,"43956":7068,"43957":3609,"43958":2800,"43959":6166,"43960":2238,"43961":7958,"43962":8141,"43963":4696,"43964":3707,"43965":3985,"43966":10617,"43967":331,"43968":1899,"43969":3277,"43970":2771,"43971":10467,"43972":6439,"43973":6592,"43974":2129,"43975":2337,"43976":4501,"43977":7962,"43978":5504,"43979":3952,"43980":680,"43981":7417,"43982":2953,"43983":9899,"43984":10854,"43985":10639,"43986":893,"43987":251,"43988":10333,"43989":8790,"43990":6339,"43991":8161,"43992":1123,"43993":10487,"43994":4056,"43995":2811,"43996":10138,"43997":133,"43998":4800,"43999":682,"44000":2139,"44001":5179,"44002":7551,"44003":3900,"44004":10236,"44005":2856,"44006":10171,"44007":5315,"44008":7672,"44009":4887,"44010":1010,"44011":6920,"44012":9938,"44013":7480,"44014":2315,"44015":5513,"44016":7782,"44017":1309,"44018":1075,"44019":8218,"44020":8352,"44021":8553,"44022":896,"44023":8147,"44024":7341,"44025":5929,"44026":186,"44027":4442,"44028":1049,"44029":10903,"44030":10546,"44031":561,"44032":4962,"44033":10006,"44034":3964,"44035":5434,"44036":7835,"44037":10706,"44038":7916,"44039":1924,"44040":5865,"44041":9672,"44042":2444,"44043":8161,"44044":4325,"44045":310,"44046":8380,"44047":7587,"44048":9804,"44049":8485,"44050":8135,"44051":1456,"44052":3943,"44053":6844,"44054":4598,"44055":3060,"44056":8435,"44057":6273,"44058":2917,"44059":1172,"44060":10427,"44061":5860,"44062":2352,"44063":2718,"44064":336,"44065":4188,"44066":641,"44067":8035,"44068":7801,"44069":4857,"44070":442,"44071":200,"44072":9367,"44073":7806,"44074":9627,"44075":503,"44076":7194,"44077":4084,"44078":2814,"44079":9290,"44080":4006,"44081":3379,"44082":6989,"44083":1909,"44084":9805,"44085":2110,"44086":4778,"44087":5772,"44088":53,"44089":7598,"44090":7920,"44091":9399,"44092":2990,"44093":7068,"44094":7242,"44095":3701,"44096":2363,"44097":5309,"44098":3068,"44099":6282,"44100":2069,"44101":7102,"44102":8703,"44103":5902,"44104":664,"44105":1721,"44106":8803,"44107":8972,"44108":1392,"44109":6525,"44110":4388,"44111":1565,"44112":2479,"44113":5781,"44114":4213,"44115":6382,"44116":1158,"44117":3663,"44118":7096,"44119":7592,"44120":3633,"44121":5932,"44122":8210,"44123":776,"44124":9177,"44125":1191,"44126":5595,"44127":7040,"44128":9511,"44129":2453,"44130":2289,"44131":8376,"44132":9971,"44133":3267,"44134":8930,"44135":6227,"44136":8867,"44137":7740,"44138":9171,"44139":6743,"44140":400,"44141":8146,"44142":7427,"44143":10360,"44144":9230,"44145":755,"44146":9111,"44147":1757,"44148":5587,"44149":3881,"44150":5254,"44151":6382,"44152":9149,"44153":10395,"44154":9948,"44155":9854,"44156":5454,"44157":2565,"44158":4045,"44159":5495,"44160":9650,"44161":7445,"44162":6417,"44163":6833,"44164":2742,"44165":6024,"44166":8289,"44167":8204,"44168":4551,"44169":4055,"44170":9158,"44171":224,"44172":9128,"44173":7058,"44174":4606,"44175":1619,"44176":6678,"44177":7869,"44178":5026,"44179":3177,"44180":915,"44181":7723,"44182":1435,"44183":9984,"44184":6955,"44185":3818,"44186":9899,"44187":736,"44188":8693,"44189":6593,"44190":6528,"44191":5883,"44192":7498,"44193":6049,"44194":9359,"44195":2141,"44196":636,"44197":893,"44198":9347,"44199":6142,"44200":10624,"44201":7028,"44202":8112},"individ":{"0":1,"1":2,"2":3,"3":4,"4":5,"5":6,"6":7,"7":8,"8":9,"9":10,"10":11,"11":12,"12":13,"13":14,"14":15,"15":16,"16":17,"17":18,"18":19,"19":20,"20":21,"21":22,"22":23,"23":24,"24":25,"25":26,"26":27,"27":28,"28":29,"29":30,"30":31,"31":32,"32":33,"33":34,"34":35,"35":36,"36":37,"37":38,"38":39,"39":40,"40":41,"41":42,"42":43,"43":44,"44":45,"45":46,"46":47,"47":48,"48":49,"49":50,"50":51,"51":52,"52":53,"53":54,"54":55,"55":56,"56":57,"57":58,"58":59,"59":60,"60":61,"61":62,"62":63,"63":64,"64":65,"65":66,"66":67,"67":68,"68":69,"69":70,"70":71,"71":72,"72":73,"73":74,"74":75,"75":76,"76":77,"77":78,"78":79,"79":80,"80":81,"81":82,"82":83,"83":84,"84":85,"85":86,"86":87,"87":88,"88":89,"89":90,"90":91,"91":92,"92":93,"93":94,"94":95,"95":96,"96":97,"97":98,"98":99,"99":100,"100":101,"101":102,"102":103,"103":104,"104":105,"105":106,"106":107,"107":108,"108":109,"109":110,"110":111,"111":112,"112":113,"113":114,"114":115,"115":116,"116":117,"117":118,"118":119,"119":120,"120":121,"121":122,"122":123,"123":124,"124":125,"125":126,"126":127,"127":128,"128":129,"129":130,"130":131,"131":132,"132":133,"133":134,"134":135,"135":136,"136":137,"137":138,"138":139,"139":140,"140":141,"141":142,"142":143,"143":144,"144":145,"145":146,"146":147,"147":148,"148":149,"149":150,"150":151,"151":152,"152":153,"153":154,"154":155,"155":156,"156":157,"157":158,"158":159,"159":160,"160":161,"161":162,"162":163,"163":164,"164":165,"165":166,"166":167,"167":168,"168":169,"169":170,"170":171,"171":172,"172":173,"173":174,"174":175,"175":176,"176":177,"177":178,"178":179,"179":180,"180":181,"181":182,"182":183,"183":184,"184":185,"185":186,"186":187,"187":188,"188":189,"189":190,"190":191,"191":192,"192":193,"193":194,"194":195,"195":196,"196":197,"197":198,"198":199,"199":200,"200":201,"201":202,"202":203,"203":204,"204":205,"205":206,"206":207,"207":208,"208":209,"209":210,"210":211,"211":212,"212":213,"213":214,"214":215,"215":216,"216":217,"217":218,"218":219,"219":220,"220":221,"221":222,"222":223,"223":224,"224":225,"225":226,"226":227,"227":228,"228":229,"229":230,"230":231,"231":232,"232":233,"233":234,"234":235,"235":236,"236":237,"237":238,"238":239,"239":240,"240":241,"241":242,"242":243,"243":244,"244":245,"245":246,"246":247,"247":248,"248":249,"249":250,"250":251,"251":252,"252":253,"253":254,"254":255,"255":256,"256":257,"257":258,"258":259,"259":260,"260":261,"261":262,"262":263,"263":264,"264":265,"265":266,"266":267,"267":268,"268":269,"269":270,"270":271,"271":272,"272":273,"273":274,"274":275,"275":276,"276":277,"277":278,"278":279,"279":280,"280":281,"281":282,"282":283,"283":284,"284":285,"285":286,"286":287,"287":288,"288":289,"289":290,"290":291,"291":292,"292":293,"293":294,"294":295,"295":296,"296":297,"297":298,"298":299,"299":300,"300":301,"301":302,"302":303,"303":304,"304":305,"305":306,"306":307,"307":308,"308":309,"309":310,"310":311,"311":312,"312":313,"313":314,"314":315,"315":316,"316":317,"317":318,"318":319,"319":320,"320":321,"321":322,"322":323,"323":324,"324":325,"325":326,"326":327,"327":328,"328":329,"329":330,"330":331,"331":332,"332":333,"333":334,"334":335,"335":336,"336":337,"337":338,"338":339,"339":340,"340":341,"341":342,"342":343,"343":344,"344":345,"345":346,"346":347,"347":348,"348":349,"349":350,"350":351,"351":352,"352":353,"353":354,"354":355,"355":356,"356":357,"357":358,"358":359,"359":360,"360":361,"361":362,"362":363,"363":364,"364":365,"365":366,"366":367,"367":368,"368":369,"369":370,"370":371,"371":372,"372":373,"373":374,"374":375,"375":376,"376":377,"377":378,"378":379,"379":380,"380":381,"381":382,"382":383,"383":384,"384":385,"385":386,"386":387,"387":388,"388":389,"389":390,"390":391,"391":392,"392":393,"393":394,"394":395,"395":396,"396":397,"397":398,"398":399,"399":400,"400":401,"401":402,"402":403,"403":404,"404":405,"405":406,"406":407,"407":408,"408":409,"409":410,"410":411,"411":412,"412":413,"413":414,"414":415,"415":416,"416":417,"417":418,"418":419,"419":420,"420":421,"421":422,"422":423,"423":424,"424":425,"425":426,"426":427,"427":428,"428":429,"429":430,"430":431,"431":432,"432":433,"433":434,"434":435,"435":436,"436":437,"437":438,"438":439,"439":440,"440":441,"441":442,"442":443,"443":444,"444":445,"445":446,"446":447,"447":448,"448":449,"449":450,"450":451,"451":452,"452":453,"453":454,"454":455,"455":456,"456":457,"457":458,"458":459,"459":460,"460":461,"461":462,"462":463,"463":464,"464":465,"465":466,"466":467,"467":468,"468":469,"469":470,"470":471,"471":472,"472":473,"473":474,"474":475,"475":476,"476":477,"477":478,"478":479,"479":480,"480":481,"481":482,"482":483,"483":484,"484":485,"485":486,"486":487,"487":488,"488":489,"489":490,"490":491,"491":492,"492":493,"493":494,"494":495,"495":496,"496":497,"497":498,"498":499,"499":500,"500":501,"501":502,"502":503,"503":504,"504":505,"505":506,"506":507,"507":508,"508":509,"509":510,"510":511,"511":512,"512":513,"513":514,"514":515,"515":516,"516":517,"517":518,"518":519,"519":520,"520":521,"521":522,"522":523,"523":524,"524":525,"525":526,"526":527,"527":528,"528":529,"529":530,"530":531,"531":532,"532":533,"533":534,"534":535,"535":536,"536":537,"537":538,"538":539,"539":540,"540":541,"541":542,"542":543,"543":544,"544":545,"545":546,"546":547,"547":548,"548":549,"549":550,"550":551,"551":552,"552":553,"553":554,"554":555,"555":556,"556":557,"557":558,"558":559,"559":560,"560":561,"561":562,"562":563,"563":564,"564":565,"565":566,"566":567,"567":568,"568":569,"569":570,"570":571,"571":572,"572":573,"573":574,"574":575,"575":576,"576":577,"577":578,"578":579,"579":580,"580":581,"581":582,"582":583,"583":584,"584":585,"585":586,"586":587,"587":588,"588":589,"589":590,"590":591,"591":592,"592":593,"593":594,"594":595,"595":596,"596":597,"597":598,"598":599,"599":600,"600":601,"601":602,"602":603,"603":604,"604":605,"605":606,"606":607,"607":608,"608":609,"609":610,"610":611,"611":612,"612":613,"613":614,"614":615,"615":616,"616":617,"617":618,"618":619,"619":620,"620":621,"621":622,"622":623,"623":624,"624":625,"625":626,"626":627,"627":628,"628":629,"629":630,"630":631,"631":632,"632":633,"633":634,"634":635,"635":636,"636":637,"637":638,"638":639,"639":640,"640":641,"641":642,"642":643,"643":644,"644":645,"645":646,"646":647,"647":648,"648":649,"649":650,"650":651,"651":652,"652":653,"653":654,"654":655,"655":656,"656":657,"657":658,"658":659,"659":660,"660":661,"661":662,"662":663,"663":664,"664":665,"665":666,"666":667,"667":668,"668":669,"669":670,"670":671,"671":672,"672":673,"673":674,"674":675,"675":676,"676":677,"677":678,"678":679,"679":680,"680":681,"681":682,"682":683,"683":684,"684":685,"685":686,"686":687,"687":688,"688":689,"689":690,"690":691,"691":692,"692":693,"693":694,"694":695,"695":696,"696":697,"697":698,"698":699,"699":700,"700":701,"701":702,"702":703,"703":704,"704":705,"705":706,"706":707,"707":708,"708":709,"709":710,"710":711,"711":712,"712":713,"713":714,"714":715,"715":716,"716":717,"717":718,"718":719,"719":720,"720":721,"721":722,"722":723,"723":724,"724":725,"725":726,"726":727,"727":728,"728":729,"729":730,"730":731,"731":732,"732":733,"733":734,"734":735,"735":736,"736":737,"737":738,"738":739,"739":740,"740":741,"741":742,"742":743,"743":744,"744":745,"745":746,"746":747,"747":748,"748":749,"749":750,"750":751,"751":752,"752":753,"753":754,"754":755,"755":756,"756":757,"757":758,"758":759,"759":760,"760":761,"761":762,"762":763,"763":764,"764":765,"765":766,"766":767,"767":768,"768":769,"769":770,"770":771,"771":772,"772":773,"773":774,"774":775,"775":776,"776":777,"777":778,"778":779,"779":780,"780":781,"781":782,"782":783,"783":784,"784":785,"785":786,"786":787,"787":788,"788":789,"789":790,"790":791,"791":792,"792":793,"793":794,"794":795,"795":796,"796":797,"797":798,"798":799,"799":800,"800":801,"801":802,"802":803,"803":804,"804":805,"805":806,"806":807,"807":808,"808":809,"809":810,"810":811,"811":812,"812":813,"813":814,"814":815,"815":816,"816":817,"817":818,"818":819,"819":820,"820":821,"821":822,"822":823,"823":824,"824":825,"825":826,"826":827,"827":828,"828":829,"829":830,"830":831,"831":832,"832":833,"833":834,"834":835,"835":836,"836":837,"837":838,"838":839,"839":840,"840":841,"841":842,"842":843,"843":844,"844":845,"845":846,"846":847,"847":848,"848":849,"849":850,"850":851,"851":852,"852":853,"853":854,"854":855,"855":856,"856":857,"857":858,"858":859,"859":860,"860":861,"861":862,"862":863,"863":864,"864":865,"865":866,"866":867,"867":868,"868":869,"869":870,"870":871,"871":872,"872":873,"873":874,"874":875,"875":876,"876":877,"877":878,"878":879,"879":880,"880":881,"881":882,"882":883,"883":884,"884":885,"885":886,"886":887,"887":888,"888":889,"889":890,"890":891,"891":892,"892":893,"893":894,"894":895,"895":896,"896":897,"897":898,"898":899,"899":900,"900":901,"901":902,"902":903,"903":904,"904":905,"905":906,"906":907,"907":908,"908":909,"909":910,"910":911,"911":912,"912":913,"913":914,"914":915,"915":916,"916":917,"917":918,"918":919,"919":920,"920":921,"921":922,"922":923,"923":924,"924":925,"925":926,"926":927,"927":928,"928":929,"929":930,"930":931,"931":932,"932":933,"933":934,"934":935,"935":936,"936":937,"937":938,"938":939,"939":940,"940":941,"941":942,"942":943,"943":944,"944":945,"945":946,"946":947,"947":948,"948":949,"949":950,"950":951,"951":952,"952":953,"953":954,"954":955,"955":956,"956":957,"957":958,"958":959,"959":960,"960":961,"961":962,"962":963,"963":964,"964":965,"965":966,"966":967,"967":968,"968":969,"969":970,"970":971,"971":972,"972":973,"973":974,"974":975,"975":976,"976":977,"977":978,"978":979,"979":980,"980":981,"981":982,"982":983,"983":984,"984":985,"985":986,"986":987,"987":988,"988":989,"989":990,"990":991,"991":992,"992":993,"993":994,"994":995,"995":996,"996":997,"997":998,"998":999,"999":1000,"1000":1001,"1001":1002,"1002":1003,"1003":1004,"1004":1005,"1005":1006,"1006":1007,"1007":1008,"1008":1009,"1009":1010,"1010":1011,"1011":1012,"1012":1013,"1013":1014,"1014":1015,"1015":1016,"1016":1017,"1017":1018,"1018":1019,"1019":1020,"1020":1021,"1021":1022,"1022":1023,"1023":1024,"1024":1025,"1025":1026,"1026":1027,"1027":1028,"1028":1029,"1029":1030,"1030":1031,"1031":1032,"1032":1033,"1033":1034,"1034":1035,"1035":1036,"1036":1037,"1037":1038,"1038":1039,"1039":1040,"1040":1041,"1041":1042,"1042":1043,"1043":1044,"1044":1045,"1045":1046,"1046":1047,"1047":1048,"1048":1049,"1049":1050,"1050":1051,"1051":1052,"1052":1053,"1053":1054,"1054":1055,"1055":1056,"1056":1057,"1057":1058,"1058":1059,"1059":1060,"1060":1061,"1061":1062,"1062":1063,"1063":1064,"1064":1065,"1065":1066,"1066":1067,"1067":1068,"1068":1069,"1069":1070,"1070":1071,"1071":1072,"1072":1073,"1073":1074,"1074":1075,"1075":1076,"1076":1077,"1077":1078,"1078":1079,"1079":1080,"1080":1081,"1081":1082,"1082":1083,"1083":1084,"1084":1085,"1085":1086,"1086":1087,"1087":1088,"1088":1089,"1089":1090,"1090":1091,"1091":1092,"1092":1093,"1093":1094,"1094":1095,"1095":1096,"1096":1097,"1097":1098,"1098":1099,"1099":1100,"1100":1101,"1101":1102,"1102":1103,"1103":1104,"1104":1105,"1105":1106,"1106":1107,"1107":1108,"1108":1109,"1109":1110,"1110":1111,"1111":1112,"1112":1113,"1113":1114,"1114":1115,"1115":1116,"1116":1117,"1117":1118,"1118":1119,"1119":1120,"1120":1121,"1121":1122,"1122":1123,"1123":1124,"1124":1125,"1125":1126,"1126":1127,"1127":1128,"1128":1129,"1129":1130,"1130":1131,"1131":1132,"1132":1133,"1133":1134,"1134":1135,"1135":1136,"1136":1137,"1137":1138,"1138":1139,"1139":1140,"1140":1141,"1141":1142,"1142":1143,"1143":1144,"1144":1145,"1145":1146,"1146":1147,"1147":1148,"1148":1149,"1149":1150,"1150":1151,"1151":1152,"1152":1153,"1153":1154,"1154":1155,"1155":1156,"1156":1157,"1157":1158,"1158":1159,"1159":1160,"1160":1161,"1161":1162,"1162":1163,"1163":1164,"1164":1165,"1165":1166,"1166":1167,"1167":1168,"1168":1169,"1169":1170,"1170":1171,"1171":1172,"1172":1173,"1173":1174,"1174":1175,"1175":1176,"1176":1177,"1177":1178,"1178":1179,"1179":1180,"1180":1181,"1181":1182,"1182":1183,"1183":1184,"1184":1185,"1185":1186,"1186":1187,"1187":1188,"1188":1189,"1189":1190,"1190":1191,"1191":1192,"1192":1193,"1193":1194,"1194":1195,"1195":1196,"1196":1197,"1197":1198,"1198":1199,"1199":1200,"1200":1201,"1201":1202,"1202":1203,"1203":1204,"1204":1205,"1205":1206,"1206":1207,"1207":1208,"1208":1209,"1209":1210,"1210":1211,"1211":1212,"1212":1213,"1213":1214,"1214":1215,"1215":1216,"1216":1217,"1217":1218,"1218":1219,"1219":1220,"1220":1221,"1221":1222,"1222":1223,"1223":1224,"1224":1225,"1225":1226,"1226":1227,"1227":1228,"1228":1229,"1229":1230,"1230":1231,"1231":1232,"1232":1233,"1233":1234,"1234":1235,"1235":1236,"1236":1237,"1237":1238,"1238":1239,"1239":1240,"1240":1241,"1241":1242,"1242":1243,"1243":1244,"1244":1245,"1245":1246,"1246":1247,"1247":1248,"1248":1249,"1249":1250,"1250":1251,"1251":1252,"1252":1253,"1253":1254,"1254":1255,"1255":1256,"1256":1257,"1257":1258,"1258":1259,"1259":1260,"1260":1261,"1261":1262,"1262":1263,"1263":1264,"1264":1265,"1265":1266,"1266":1267,"1267":1268,"1268":1269,"1269":1270,"1270":1271,"1271":1272,"1272":1273,"1273":1274,"1274":1275,"1275":1276,"1276":1277,"1277":1278,"1278":1279,"1279":1280,"1280":1281,"1281":1282,"1282":1283,"1283":1284,"1284":1285,"1285":1286,"1286":1287,"1287":1288,"1288":1289,"1289":1290,"1290":1291,"1291":1292,"1292":1293,"1293":1294,"1294":1295,"1295":1296,"1296":1297,"1297":1298,"1298":1299,"1299":1300,"1300":1301,"1301":1302,"1302":1303,"1303":1304,"1304":1305,"1305":1306,"1306":1307,"1307":1308,"1308":1309,"1309":1310,"1310":1311,"1311":1312,"1312":1313,"1313":1314,"1314":1315,"1315":1316,"1316":1317,"1317":1318,"1318":1319,"1319":1320,"1320":1321,"1321":1322,"1322":1323,"1323":1324,"1324":1325,"1325":1326,"1326":1327,"1327":1328,"1328":1329,"1329":1330,"1330":1331,"1331":1332,"1332":1333,"1333":1334,"1334":1335,"1335":1336,"1336":1337,"1337":1338,"1338":1339,"1339":1340,"1340":1341,"1341":1342,"1342":1343,"1343":1344,"1344":1345,"1345":1346,"1346":1347,"1347":1348,"1348":1349,"1349":1350,"1350":1351,"1351":1352,"1352":1353,"1353":1354,"1354":1355,"1355":1356,"1356":1357,"1357":1358,"1358":1359,"1359":1360,"1360":1361,"1361":1362,"1362":1363,"1363":1364,"1364":1365,"1365":1366,"1366":1367,"1367":1368,"1368":1369,"1369":1370,"1370":1371,"1371":1372,"1372":1373,"1373":1374,"1374":1375,"1375":1376,"1376":1377,"1377":1378,"1378":1379,"1379":1380,"1380":1381,"1381":1382,"1382":1383,"1383":1384,"1384":1385,"1385":1386,"1386":1387,"1387":1388,"1388":1389,"1389":1390,"1390":1391,"1391":1392,"1392":1393,"1393":1394,"1394":1395,"1395":1396,"1396":1397,"1397":1398,"1398":1399,"1399":1400,"1400":1401,"1401":1402,"1402":1403,"1403":1404,"1404":1405,"1405":1406,"1406":1407,"1407":1408,"1408":1409,"1409":1410,"1410":1411,"1411":1412,"1412":1413,"1413":1414,"1414":1415,"1415":1416,"1416":1417,"1417":1418,"1418":1419,"1419":1420,"1420":1421,"1421":1422,"1422":1423,"1423":1424,"1424":1425,"1425":1426,"1426":1427,"1427":1428,"1428":1429,"1429":1430,"1430":1431,"1431":1432,"1432":1433,"1433":1434,"1434":1435,"1435":1436,"1436":1437,"1437":1438,"1438":1439,"1439":1440,"1440":1441,"1441":1442,"1442":1443,"1443":1444,"1444":1445,"1445":1446,"1446":1447,"1447":1448,"1448":1449,"1449":1450,"1450":1451,"1451":1452,"1452":1453,"1453":1454,"1454":1455,"1455":1456,"1456":1457,"1457":1458,"1458":1459,"1459":1460,"1460":1461,"1461":1462,"1462":1463,"1463":1464,"1464":1465,"1465":1466,"1466":1467,"1467":1468,"1468":1469,"1469":1470,"1470":1471,"1471":1472,"1472":1473,"1473":1474,"1474":1475,"1475":1476,"1476":1477,"1477":1478,"1478":1479,"1479":1480,"1480":1481,"1481":1482,"1482":1483,"1483":1484,"1484":1485,"1485":1486,"1486":1487,"1487":1488,"1488":1489,"1489":1490,"1490":1491,"1491":1492,"1492":1493,"1493":1494,"1494":1495,"1495":1496,"1496":1497,"1497":1498,"1498":1499,"1499":1500,"1500":1501,"1501":1502,"1502":1503,"1503":1504,"1504":1505,"1505":1506,"1506":1507,"1507":1508,"1508":1509,"1509":1510,"1510":1511,"1511":1512,"1512":1513,"1513":1514,"1514":1515,"1515":1516,"1516":1517,"1517":1518,"1518":1519,"1519":1520,"1520":1521,"1521":1522,"1522":1523,"1523":1524,"1524":1525,"1525":1526,"1526":1527,"1527":1528,"1528":1529,"1529":1530,"1530":1531,"1531":1532,"1532":1533,"1533":1534,"1534":1535,"1535":1536,"1536":1537,"1537":1538,"1538":1539,"1539":1540,"1540":1541,"1541":1542,"1542":1543,"1543":1544,"1544":1545,"1545":1546,"1546":1547,"1547":1548,"1548":1549,"1549":1550,"1550":1551,"1551":1552,"1552":1553,"1553":1554,"1554":1555,"1555":1556,"1556":1557,"1557":1558,"1558":1559,"1559":1560,"1560":1561,"1561":1562,"1562":1563,"1563":1564,"1564":1565,"1565":1566,"1566":1567,"1567":1568,"1568":1569,"1569":1570,"1570":1571,"1571":1572,"1572":1573,"1573":1574,"1574":1575,"1575":1576,"1576":1577,"1577":1578,"1578":1579,"1579":1580,"1580":1581,"1581":1582,"1582":1583,"1583":1584,"1584":1585,"1585":1586,"1586":1587,"1587":1588,"1588":1589,"1589":1590,"1590":1591,"1591":1592,"1592":1593,"1593":1594,"1594":1595,"1595":1596,"1596":1597,"1597":1598,"1598":1599,"1599":1600,"1600":1601,"1601":1602,"1602":1603,"1603":1604,"1604":1605,"1605":1606,"1606":1607,"1607":1608,"1608":1609,"1609":1610,"1610":1611,"1611":1612,"1612":1613,"1613":1614,"1614":1615,"1615":1616,"1616":1617,"1617":1618,"1618":1619,"1619":1620,"1620":1621,"1621":1622,"1622":1623,"1623":1624,"1624":1625,"1625":1626,"1626":1627,"1627":1628,"1628":1629,"1629":1630,"1630":1631,"1631":1632,"1632":1633,"1633":1634,"1634":1635,"1635":1636,"1636":1637,"1637":1638,"1638":1639,"1639":1640,"1640":1641,"1641":1642,"1642":1643,"1643":1644,"1644":1645,"1645":1646,"1646":1647,"1647":1648,"1648":1649,"1649":1650,"1650":1651,"1651":1652,"1652":1653,"1653":1654,"1654":1655,"1655":1656,"1656":1657,"1657":1658,"1658":1659,"1659":1660,"1660":1661,"1661":1662,"1662":1663,"1663":1664,"1664":1665,"1665":1666,"1666":1667,"1667":1668,"1668":1669,"1669":1670,"1670":1671,"1671":1672,"1672":1673,"1673":1674,"1674":1675,"1675":1676,"1676":1677,"1677":1678,"1678":1679,"1679":1680,"1680":1681,"1681":1682,"1682":1683,"1683":1684,"1684":1685,"1685":1686,"1686":1687,"1687":1688,"1688":1689,"1689":1690,"1690":1691,"1691":1692,"1692":1693,"1693":1694,"1694":1695,"1695":1696,"1696":1697,"1697":1698,"1698":1699,"1699":1700,"1700":1701,"1701":1702,"1702":1703,"1703":1704,"1704":1705,"1705":1706,"1706":1707,"1707":1708,"1708":1709,"1709":1710,"1710":1711,"1711":1712,"1712":1713,"1713":1714,"1714":1715,"1715":1716,"1716":1717,"1717":1718,"1718":1719,"1719":1720,"1720":1721,"1721":1722,"1722":1723,"1723":1724,"1724":1725,"1725":1726,"1726":1727,"1727":1728,"1728":1729,"1729":1730,"1730":1731,"1731":1732,"1732":1733,"1733":1734,"1734":1735,"1735":1736,"1736":1737,"1737":1738,"1738":1739,"1739":1740,"1740":1741,"1741":1742,"1742":1743,"1743":1744,"1744":1745,"1745":1746,"1746":1747,"1747":1748,"1748":1749,"1749":1750,"1750":1751,"1751":1752,"1752":1753,"1753":1754,"1754":1755,"1755":1756,"1756":1757,"1757":1758,"1758":1759,"1759":1760,"1760":1761,"1761":1762,"1762":1763,"1763":1764,"1764":1765,"1765":1766,"1766":1767,"1767":1768,"1768":1769,"1769":1770,"1770":1771,"1771":1772,"1772":1773,"1773":1774,"1774":1775,"1775":1776,"1776":1777,"1777":1778,"1778":1779,"1779":1780,"1780":1781,"1781":1782,"1782":1783,"1783":1784,"1784":1785,"1785":1786,"1786":1787,"1787":1788,"1788":1789,"1789":1790,"1790":1791,"1791":1792,"1792":1793,"1793":1794,"1794":1795,"1795":1796,"1796":1797,"1797":1798,"1798":1799,"1799":1800,"1800":1801,"1801":1802,"1802":1803,"1803":1804,"1804":1805,"1805":1806,"1806":1807,"1807":1808,"1808":1809,"1809":1810,"1810":1811,"1811":1812,"1812":1813,"1813":1814,"1814":1815,"1815":1816,"1816":1817,"1817":1818,"1818":1819,"1819":1820,"1820":1821,"1821":1822,"1822":1823,"1823":1824,"1824":1825,"1825":1826,"1826":1827,"1827":1828,"1828":1829,"1829":1830,"1830":1831,"1831":1832,"1832":1833,"1833":1834,"1834":1835,"1835":1836,"1836":1837,"1837":1838,"1838":1839,"1839":1840,"1840":1841,"1841":1842,"1842":1843,"1843":1844,"1844":1845,"1845":1846,"1846":1847,"1847":1848,"1848":1849,"1849":1850,"1850":1851,"1851":1852,"1852":1853,"1853":1854,"1854":1855,"1855":1856,"1856":1857,"1857":1858,"1858":1859,"1859":1860,"1860":1861,"1861":1862,"1862":1863,"1863":1864,"1864":1865,"1865":1866,"1866":1867,"1867":1868,"1868":1869,"1869":1870,"1870":1871,"1871":1872,"1872":1873,"1873":1874,"1874":1875,"1875":1876,"1876":1877,"1877":1878,"1878":1879,"1879":1880,"1880":1881,"1881":1882,"1882":1883,"1883":1884,"1884":1885,"1885":1886,"1886":1887,"1887":1888,"1888":1889,"1889":1890,"1890":1891,"1891":1892,"1892":1893,"1893":1894,"1894":1895,"1895":1896,"1896":1897,"1897":1898,"1898":1899,"1899":1900,"1900":1901,"1901":1902,"1902":1903,"1903":1904,"1904":1905,"1905":1906,"1906":1907,"1907":1908,"1908":1909,"1909":1910,"1910":1911,"1911":1912,"1912":1913,"1913":1914,"1914":1915,"1915":1916,"1916":1917,"1917":1918,"1918":1919,"1919":1920,"1920":1921,"1921":1922,"1922":1923,"1923":1924,"1924":1925,"1925":1926,"1926":1927,"1927":1928,"1928":1929,"1929":1930,"1930":1931,"1931":1932,"1932":1933,"1933":1934,"1934":1935,"1935":1936,"1936":1937,"1937":1938,"1938":1939,"1939":1940,"1940":1941,"1941":1942,"1942":1943,"1943":1944,"1944":1945,"1945":1946,"1946":1947,"1947":1948,"1948":1949,"1949":1950,"1950":1951,"1951":1952,"1952":1953,"1953":1954,"1954":1955,"1955":1956,"1956":1957,"1957":1958,"1958":1959,"1959":1960,"1960":1961,"1961":1962,"1962":1963,"1963":1964,"1964":1965,"1965":1966,"1966":1967,"1967":1968,"1968":1969,"1969":1970,"1970":1971,"1971":1972,"1972":1973,"1973":1974,"1974":1975,"1975":1976,"1976":1977,"1977":1978,"1978":1979,"1979":1980,"1980":1981,"1981":1982,"1982":1983,"1983":1984,"1984":1985,"1985":1986,"1986":1987,"1987":1988,"1988":1989,"1989":1990,"1990":1991,"1991":1992,"1992":1993,"1993":1994,"1994":1995,"1995":1996,"1996":1997,"1997":1998,"1998":1999,"1999":2000,"2000":2001,"2001":2002,"2002":2003,"2003":2004,"2004":2005,"2005":2006,"2006":2007,"2007":2008,"2008":2009,"2009":2010,"2010":2011,"2011":2012,"2012":2013,"2013":2014,"2014":2015,"2015":2016,"2016":2017,"2017":2018,"2018":2019,"2019":2020,"2020":2021,"2021":2022,"2022":2023,"2023":2024,"2024":2025,"2025":2026,"2026":2027,"2027":2028,"2028":2029,"2029":2030,"2030":2031,"2031":2032,"2032":2033,"2033":2034,"2034":2035,"2035":2036,"2036":2037,"2037":2038,"2038":2039,"2039":2040,"2040":2041,"2041":2042,"2042":2043,"2043":2044,"2044":2045,"2045":2046,"2046":2047,"2047":2048,"2048":2049,"2049":2050,"2050":2051,"2051":2052,"2052":2053,"2053":2054,"2054":2055,"2055":2056,"2056":2057,"2057":2058,"2058":2059,"2059":2060,"2060":2061,"2061":2062,"2062":2063,"2063":2064,"2064":2065,"2065":2066,"2066":2067,"2067":2068,"2068":2069,"2069":2070,"2070":2071,"2071":2072,"2072":2073,"2073":2074,"2074":2075,"2075":2076,"2076":2077,"2077":2078,"2078":2079,"2079":2080,"2080":2081,"2081":2082,"2082":2083,"2083":2084,"2084":2085,"2085":2086,"2086":2087,"2087":2088,"2088":2089,"2089":2090,"2090":2091,"2091":2092,"2092":2093,"2093":2094,"2094":2095,"2095":2096,"2096":2097,"2097":2098,"2098":2099,"2099":2100,"2100":2101,"2101":2102,"2102":2103,"2103":2104,"2104":2105,"2105":2106,"2106":2107,"2107":2108,"2108":2109,"2109":2110,"2110":2111,"2111":2112,"2112":2113,"2113":2114,"2114":2115,"2115":2116,"2116":2117,"2117":2118,"2118":2119,"2119":2120,"2120":2121,"2121":2122,"2122":2123,"2123":2124,"2124":2125,"2125":2126,"2126":2127,"2127":2128,"2128":2129,"2129":2130,"2130":2131,"2131":2132,"2132":2133,"2133":2134,"2134":2135,"2135":2136,"2136":2137,"2137":2138,"2138":2139,"2139":2140,"2140":2141,"2141":2142,"2142":2143,"2143":2144,"2144":2145,"2145":2146,"2146":2147,"2147":2148,"2148":2149,"2149":2150,"2150":2151,"2151":2152,"2152":2153,"2153":2154,"2154":2155,"2155":2156,"2156":2157,"2157":2158,"2158":2159,"2159":2160,"2160":2161,"2161":2162,"2162":2163,"2163":2164,"2164":2165,"2165":2166,"2166":2167,"2167":2168,"2168":2169,"2169":2170,"2170":2171,"2171":2172,"2172":2173,"2173":2174,"2174":2175,"2175":2176,"2176":2177,"2177":2178,"2178":2179,"2179":2180,"2180":2181,"2181":2182,"2182":2183,"2183":2184,"2184":2185,"2185":2186,"2186":2187,"2187":2188,"2188":2189,"2189":2190,"2190":2191,"2191":2192,"2192":2193,"2193":2194,"2194":2195,"2195":2196,"2196":2197,"2197":2198,"2198":2199,"2199":2200,"2200":2201,"2201":2202,"2202":2203,"2203":2204,"2204":2205,"2205":2206,"2206":2207,"2207":2208,"2208":2209,"2209":2210,"2210":2211,"2211":2212,"2212":2213,"2213":2214,"2214":2215,"2215":2216,"2216":2217,"2217":2218,"2218":2219,"2219":2220,"2220":2221,"2221":2222,"2222":2223,"2223":2224,"2224":2225,"2225":2226,"2226":2227,"2227":2228,"2228":2229,"2229":2230,"2230":2231,"2231":2232,"2232":2233,"2233":2234,"2234":2235,"2235":2236,"2236":2237,"2237":2238,"2238":2239,"2239":2240,"2240":2241,"2241":2242,"2242":2243,"2243":2244,"2244":2245,"2245":2246,"2246":2247,"2247":2248,"2248":2249,"2249":2250,"2250":2251,"2251":2252,"2252":2253,"2253":2254,"2254":2255,"2255":2256,"2256":2257,"2257":2258,"2258":2259,"2259":2260,"2260":2261,"2261":2262,"2262":2263,"2263":2264,"2264":2265,"2265":2266,"2266":2267,"2267":2268,"2268":2269,"2269":2270,"2270":2271,"2271":2272,"2272":2273,"2273":2274,"2274":2275,"2275":2276,"2276":2277,"2277":2278,"2278":2279,"2279":2280,"2280":2281,"2281":2282,"2282":2283,"2283":2284,"2284":2285,"2285":2286,"2286":2287,"2287":2288,"2288":2289,"2289":2290,"2290":2291,"2291":2292,"2292":2293,"2293":2294,"2294":2295,"2295":2296,"2296":2297,"2297":2298,"2298":2299,"2299":2300,"2300":2301,"2301":2302,"2302":2303,"2303":2304,"2304":2305,"2305":2306,"2306":2307,"2307":2308,"2308":2309,"2309":2310,"2310":2311,"2311":2312,"2312":2313,"2313":2314,"2314":2315,"2315":2316,"2316":2317,"2317":2318,"2318":2319,"2319":2320,"2320":2321,"2321":2322,"2322":2323,"2323":2324,"2324":2325,"2325":2326,"2326":2327,"2327":2328,"2328":2329,"2329":2330,"2330":2331,"2331":2332,"2332":2333,"2333":2334,"2334":2335,"2335":2336,"2336":2337,"2337":2338,"2338":2339,"2339":2340,"2340":2341,"2341":2342,"2342":2343,"2343":2344,"2344":2345,"2345":2346,"2346":2347,"2347":2348,"2348":2349,"2349":2350,"2350":2351,"2351":2352,"2352":2353,"2353":2354,"2354":2355,"2355":2356,"2356":2357,"2357":2358,"2358":2359,"2359":2360,"2360":2361,"2361":2362,"2362":2363,"2363":2364,"2364":2365,"2365":2366,"2366":2367,"2367":2368,"2368":2369,"2369":2370,"2370":2371,"2371":2372,"2372":2373,"2373":2374,"2374":2375,"2375":2376,"2376":2377,"2377":2378,"2378":2379,"2379":2380,"2380":2381,"2381":2382,"2382":2383,"2383":2384,"2384":2385,"2385":2386,"2386":2387,"2387":2388,"2388":2389,"2389":2390,"2390":2391,"2391":2392,"2392":2393,"2393":2394,"2394":2395,"2395":2396,"2396":2397,"2397":2398,"2398":2399,"2399":2400,"2400":2401,"2401":2402,"2402":2403,"2403":2404,"2404":2405,"2405":2406,"2406":2407,"2407":2408,"2408":2409,"2409":2410,"2410":2411,"2411":2412,"2412":2413,"2413":2414,"2414":2415,"2415":2416,"2416":2417,"2417":2418,"2418":2419,"2419":2420,"2420":2421,"2421":2422,"2422":2423,"2423":2424,"2424":2425,"2425":2426,"2426":2427,"2427":2428,"2428":2429,"2429":2430,"2430":2431,"2431":2432,"2432":2433,"2433":2434,"2434":2435,"2435":2436,"2436":2437,"2437":2438,"2438":2439,"2439":2440,"2440":2441,"2441":2442,"2442":2443,"2443":2444,"2444":2445,"2445":2446,"2446":2447,"2447":2448,"2448":2449,"2449":2450,"2450":2451,"2451":2452,"2452":2453,"2453":2454,"2454":2455,"2455":2456,"2456":2457,"2457":2458,"2458":2459,"2459":2460,"2460":2461,"2461":2462,"2462":2463,"2463":2464,"2464":2465,"2465":2466,"2466":2467,"2467":2468,"2468":2469,"2469":2470,"2470":2471,"2471":2472,"2472":2473,"2473":2474,"2474":2475,"2475":2476,"2476":2477,"2477":2478,"2478":2479,"2479":2480,"2480":2481,"2481":2482,"2482":2483,"2483":2484,"2484":2485,"2485":2486,"2486":2487,"2487":2488,"2488":2489,"2489":2490,"2490":2491,"2491":2492,"2492":2493,"2493":2494,"2494":2495,"2495":2496,"2496":2497,"2497":2498,"2498":2499,"2499":2500,"2500":2501,"2501":2502,"2502":2503,"2503":2504,"2504":2505,"2505":2506,"2506":2507,"2507":2508,"2508":2509,"2509":2510,"2510":2511,"2511":2512,"2512":2513,"2513":2514,"2514":2515,"2515":2516,"2516":2517,"2517":2518,"2518":2519,"2519":2520,"2520":2521,"2521":2522,"2522":2523,"2523":2524,"2524":2525,"2525":2526,"2526":2527,"2527":2528,"2528":2529,"2529":2530,"2530":2531,"2531":2532,"2532":2533,"2533":2534,"2534":2535,"2535":2536,"2536":2537,"2537":2538,"2538":2539,"2539":2540,"2540":2541,"2541":2542,"2542":2543,"2543":2544,"2544":2545,"2545":2546,"2546":2547,"2547":2548,"2548":2549,"2549":2550,"2550":2551,"2551":2552,"2552":2553,"2553":2554,"2554":2555,"2555":2556,"2556":2557,"2557":2558,"2558":2559,"2559":2560,"2560":2561,"2561":2562,"2562":2563,"2563":2564,"2564":2565,"2565":2566,"2566":2567,"2567":2568,"2568":2569,"2569":2570,"2570":2571,"2571":2572,"2572":2573,"2573":2574,"2574":2575,"2575":2576,"2576":2577,"2577":2578,"2578":2579,"2579":2580,"2580":2581,"2581":2582,"2582":2583,"2583":2584,"2584":2585,"2585":2586,"2586":2587,"2587":2588,"2588":2589,"2589":2590,"2590":2591,"2591":2592,"2592":2593,"2593":2594,"2594":2595,"2595":2596,"2596":2597,"2597":2598,"2598":2599,"2599":2600,"2600":2601,"2601":2602,"2602":2603,"2603":2604,"2604":2605,"2605":2606,"2606":2607,"2607":2608,"2608":2609,"2609":2610,"2610":2611,"2611":2612,"2612":2613,"2613":2614,"2614":2615,"2615":2616,"2616":2617,"2617":2618,"2618":2619,"2619":2620,"2620":2621,"2621":2622,"2622":2623,"2623":2624,"2624":2625,"2625":2626,"2626":2627,"2627":2628,"2628":2629,"2629":2630,"2630":2631,"2631":2632,"2632":2633,"2633":2634,"2634":2635,"2635":2636,"2636":2637,"2637":2638,"2638":2639,"2639":2640,"2640":2641,"2641":2642,"2642":2643,"2643":2644,"2644":2645,"2645":2646,"2646":2647,"2647":2648,"2648":2649,"2649":2650,"2650":2651,"2651":2652,"2652":2653,"2653":2654,"2654":2655,"2655":2656,"2656":2657,"2657":2658,"2658":2659,"2659":2660,"2660":2661,"2661":2662,"2662":2663,"2663":2664,"2664":2665,"2665":2666,"2666":2667,"2667":2668,"2668":2669,"2669":2670,"2670":2671,"2671":2672,"2672":2673,"2673":2674,"2674":2675,"2675":2676,"2676":2677,"2677":2678,"2678":2679,"2679":2680,"2680":2681,"2681":2682,"2682":2683,"2683":2684,"2684":2685,"2685":2686,"2686":2687,"2687":2688,"2688":2689,"2689":2690,"2690":2691,"2691":2692,"2692":2693,"2693":2694,"2694":2695,"2695":2696,"2696":2697,"2697":2698,"2698":2699,"2699":2700,"2700":2701,"2701":2702,"2702":2703,"2703":2704,"2704":2705,"2705":2706,"2706":2707,"2707":2708,"2708":2709,"2709":2710,"2710":2711,"2711":2712,"2712":2713,"2713":2714,"2714":2715,"2715":2716,"2716":2717,"2717":2718,"2718":2719,"2719":2720,"2720":2721,"2721":2722,"2722":2723,"2723":2724,"2724":2725,"2725":2726,"2726":2727,"2727":2728,"2728":2729,"2729":2730,"2730":2731,"2731":2732,"2732":2733,"2733":2734,"2734":2735,"2735":2736,"2736":2737,"2737":2738,"2738":2739,"2739":2740,"2740":2741,"2741":2742,"2742":2743,"2743":2744,"2744":2745,"2745":2746,"2746":2747,"2747":2748,"2748":2749,"2749":2750,"2750":2751,"2751":2752,"2752":2753,"2753":2754,"2754":2755,"2755":2756,"2756":2757,"2757":2758,"2758":2759,"2759":2760,"2760":2761,"2761":2762,"2762":2763,"2763":2764,"2764":2765,"2765":2766,"2766":2767,"2767":2768,"2768":2769,"2769":2770,"2770":2771,"2771":2772,"2772":2773,"2773":2774,"2774":2775,"2775":2776,"2776":2777,"2777":2778,"2778":2779,"2779":2780,"2780":2781,"2781":2782,"2782":2783,"2783":2784,"2784":2785,"2785":2786,"2786":2787,"2787":2788,"2788":2789,"2789":2790,"2790":2791,"2791":2792,"2792":2793,"2793":2794,"2794":2795,"2795":2796,"2796":2797,"2797":2798,"2798":2799,"2799":2800,"2800":2801,"2801":2802,"2802":2803,"2803":2804,"2804":2805,"2805":2806,"2806":2807,"2807":2808,"2808":2809,"2809":2810,"2810":2811,"2811":2812,"2812":2813,"2813":2814,"2814":2815,"2815":2816,"2816":2817,"2817":2818,"2818":2819,"2819":2820,"2820":2821,"2821":2822,"2822":2823,"2823":2824,"2824":2825,"2825":2826,"2826":2827,"2827":2828,"2828":2829,"2829":2830,"2830":2831,"2831":2832,"2832":2833,"2833":2834,"2834":2835,"2835":2836,"2836":2837,"2837":2838,"2838":2839,"2839":2840,"2840":2841,"2841":2842,"2842":2843,"2843":2844,"2844":2845,"2845":2846,"2846":2847,"2847":2848,"2848":2849,"2849":2850,"2850":2851,"2851":2852,"2852":2853,"2853":2854,"2854":2855,"2855":2856,"2856":2857,"2857":2858,"2858":2859,"2859":2860,"2860":2861,"2861":2862,"2862":2863,"2863":2864,"2864":2865,"2865":2866,"2866":2867,"2867":2868,"2868":2869,"2869":2870,"2870":2871,"2871":2872,"2872":2873,"2873":2874,"2874":2875,"2875":2876,"2876":2877,"2877":2878,"2878":2879,"2879":2880,"2880":2881,"2881":2882,"2882":2883,"2883":2884,"2884":2885,"2885":2886,"2886":2887,"2887":2888,"2888":2889,"2889":2890,"2890":2891,"2891":2892,"2892":2893,"2893":2894,"2894":2895,"2895":2896,"2896":2897,"2897":2898,"2898":2899,"2899":2900,"2900":2901,"2901":2902,"2902":2903,"2903":2904,"2904":2905,"2905":2906,"2906":2907,"2907":2908,"2908":2909,"2909":2910,"2910":2911,"2911":2912,"2912":2913,"2913":2914,"2914":2915,"2915":2916,"2916":2917,"2917":2918,"2918":2919,"2919":2920,"2920":2921,"2921":2922,"2922":2923,"2923":2924,"2924":2925,"2925":2926,"2926":2927,"2927":2928,"2928":2929,"2929":2930,"2930":2931,"2931":2932,"2932":2933,"2933":2934,"2934":2935,"2935":2936,"2936":2937,"2937":2938,"2938":2939,"2939":2940,"2940":2941,"2941":2942,"2942":2943,"2943":2944,"2944":2945,"2945":2946,"2946":2947,"2947":2948,"2948":2949,"2949":2950,"2950":2951,"2951":2952,"2952":2953,"2953":2954,"2954":2955,"2955":2956,"2956":2957,"2957":2958,"2958":2959,"2959":2960,"2960":2961,"2961":2962,"2962":2963,"2963":2964,"2964":2965,"2965":2966,"2966":2967,"2967":2968,"2968":2969,"2969":2970,"2970":2971,"2971":2972,"2972":2973,"2973":2974,"2974":2975,"2975":2976,"2976":2977,"2977":2978,"2978":2979,"2979":2980,"2980":2981,"2981":2982,"2982":2983,"2983":2984,"2984":2985,"2985":2986,"2986":2987,"2987":2988,"2988":2989,"2989":2990,"2990":2991,"2991":2992,"2992":2993,"2993":2994,"2994":2995,"2995":2996,"2996":2997,"2997":2998,"2998":2999,"2999":3000,"3000":3001,"3001":3002,"3002":3003,"3003":3004,"3004":3005,"3005":3006,"3006":3007,"3007":3008,"3008":3009,"3009":3010,"3010":3011,"3011":3012,"3012":3013,"3013":3014,"3014":3015,"3015":3016,"3016":3017,"3017":3018,"3018":3019,"3019":3020,"3020":3021,"3021":3022,"3022":3023,"3023":3024,"3024":3025,"3025":3026,"3026":3027,"3027":3028,"3028":3029,"3029":3030,"3030":3031,"3031":3032,"3032":3033,"3033":3034,"3034":3035,"3035":3036,"3036":3037,"3037":3038,"3038":3039,"3039":3040,"3040":3041,"3041":3042,"3042":3043,"3043":3044,"3044":3045,"3045":3046,"3046":3047,"3047":3048,"3048":3049,"3049":3050,"3050":3051,"3051":3052,"3052":3053,"3053":3054,"3054":3055,"3055":3056,"3056":3057,"3057":3058,"3058":3059,"3059":3060,"3060":3061,"3061":3062,"3062":3063,"3063":3064,"3064":3065,"3065":3066,"3066":3067,"3067":3068,"3068":3069,"3069":3070,"3070":3071,"3071":3072,"3072":3073,"3073":3074,"3074":3075,"3075":3076,"3076":3077,"3077":3078,"3078":3079,"3079":3080,"3080":3081,"3081":3082,"3082":3083,"3083":3084,"3084":3085,"3085":3086,"3086":3087,"3087":3088,"3088":3089,"3089":3090,"3090":3091,"3091":3092,"3092":3093,"3093":3094,"3094":3095,"3095":3096,"3096":3097,"3097":3098,"3098":3099,"3099":3100,"3100":3101,"3101":3102,"3102":3103,"3103":3104,"3104":3105,"3105":3106,"3106":3107,"3107":3108,"3108":3109,"3109":3110,"3110":3111,"3111":3112,"3112":3113,"3113":3114,"3114":3115,"3115":3116,"3116":3117,"3117":3118,"3118":3119,"3119":3120,"3120":3121,"3121":3122,"3122":3123,"3123":3124,"3124":3125,"3125":3126,"3126":3127,"3127":3128,"3128":3129,"3129":3130,"3130":3131,"3131":3132,"3132":3133,"3133":3134,"3134":3135,"3135":3136,"3136":3137,"3137":3138,"3138":3139,"3139":3140,"3140":3141,"3141":3142,"3142":3143,"3143":3144,"3144":3145,"3145":3146,"3146":3147,"3147":3148,"3148":3149,"3149":3150,"3150":3151,"3151":3152,"3152":3153,"3153":3154,"3154":3155,"3155":3156,"3156":3157,"3157":3158,"3158":3159,"3159":3160,"3160":3161,"3161":3162,"3162":3163,"3163":3164,"3164":3165,"3165":3166,"3166":3167,"3167":3168,"3168":3169,"3169":3170,"3170":3171,"3171":3172,"3172":3173,"3173":3174,"3174":3175,"3175":3176,"3176":3177,"3177":3178,"3178":3179,"3179":3180,"3180":3181,"3181":3182,"3182":3183,"3183":3184,"3184":3185,"3185":3186,"3186":3187,"3187":3188,"3188":3189,"3189":3190,"3190":3191,"3191":3192,"3192":3193,"3193":3194,"3194":3195,"3195":3196,"3196":3197,"3197":3198,"3198":3199,"3199":3200,"3200":3201,"3201":3202,"3202":3203,"3203":3204,"3204":3205,"3205":3206,"3206":3207,"3207":3208,"3208":3209,"3209":3210,"3210":3211,"3211":3212,"3212":3213,"3213":3214,"3214":3215,"3215":3216,"3216":3217,"3217":3218,"3218":3219,"3219":3220,"3220":3221,"3221":3222,"3222":3223,"3223":3224,"3224":3225,"3225":3226,"3226":3227,"3227":3228,"3228":3229,"3229":3230,"3230":3231,"3231":3232,"3232":3233,"3233":3234,"3234":3235,"3235":3236,"3236":3237,"3237":3238,"3238":3239,"3239":3240,"3240":3241,"3241":3242,"3242":3243,"3243":3244,"3244":3245,"3245":3246,"3246":3247,"3247":3248,"3248":3249,"3249":3250,"3250":3251,"3251":3252,"3252":3253,"3253":3254,"3254":3255,"3255":3256,"3256":3257,"3257":3258,"3258":3259,"3259":3260,"3260":3261,"3261":3262,"3262":3263,"3263":3264,"3264":3265,"3265":3266,"3266":3267,"3267":3268,"3268":3269,"3269":3270,"3270":3271,"3271":3272,"3272":3273,"3273":3274,"3274":3275,"3275":3276,"3276":3277,"3277":3278,"3278":3279,"3279":3280,"3280":3281,"3281":3282,"3282":3283,"3283":3284,"3284":3285,"3285":3286,"3286":3287,"3287":3288,"3288":3289,"3289":3290,"3290":3291,"3291":3292,"3292":3293,"3293":3294,"3294":3295,"3295":3296,"3296":3297,"3297":3298,"3298":3299,"3299":3300,"3300":3301,"3301":3302,"3302":3303,"3303":3304,"3304":3305,"3305":3306,"3306":3307,"3307":3308,"3308":3309,"3309":3310,"3310":3311,"3311":3312,"3312":3313,"3313":3314,"3314":3315,"3315":3316,"3316":3317,"3317":3318,"3318":3319,"3319":3320,"3320":3321,"3321":3322,"3322":3323,"3323":3324,"3324":3325,"3325":3326,"3326":3327,"3327":3328,"3328":3329,"3329":3330,"3330":3331,"3331":3332,"3332":3333,"3333":3334,"3334":3335,"3335":3336,"3336":3337,"3337":3338,"3338":3339,"3339":3340,"3340":3341,"3341":3342,"3342":3343,"3343":3344,"3344":3345,"3345":3346,"3346":3347,"3347":3348,"3348":3349,"3349":3350,"3350":3351,"3351":3352,"3352":3353,"3353":3354,"3354":3355,"3355":3356,"3356":3357,"3357":3358,"3358":3359,"3359":3360,"3360":3361,"3361":3362,"3362":3363,"3363":3364,"3364":3365,"3365":3366,"3366":3367,"3367":3368,"3368":3369,"3369":3370,"3370":3371,"3371":3372,"3372":3373,"3373":3374,"3374":3375,"3375":3376,"3376":3377,"3377":3378,"3378":3379,"3379":3380,"3380":3381,"3381":3382,"3382":3383,"3383":3384,"3384":3385,"3385":3386,"3386":3387,"3387":3388,"3388":3389,"3389":3390,"3390":3391,"3391":3392,"3392":3393,"3393":3394,"3394":3395,"3395":3396,"3396":3397,"3397":3398,"3398":3399,"3399":3400,"3400":3401,"3401":3402,"3402":3403,"3403":3404,"3404":3405,"3405":3406,"3406":3407,"3407":3408,"3408":3409,"3409":3410,"3410":3411,"3411":3412,"3412":3413,"3413":3414,"3414":3415,"3415":3416,"3416":3417,"3417":3418,"3418":3419,"3419":3420,"3420":3421,"3421":3422,"3422":3423,"3423":3424,"3424":3425,"3425":3426,"3426":3427,"3427":3428,"3428":3429,"3429":3430,"3430":3431,"3431":3432,"3432":3433,"3433":3434,"3434":3435,"3435":3436,"3436":3437,"3437":3438,"3438":3439,"3439":3440,"3440":3441,"3441":3442,"3442":3443,"3443":3444,"3444":3445,"3445":3446,"3446":3447,"3447":3448,"3448":3449,"3449":3450,"3450":3451,"3451":3452,"3452":3453,"3453":3454,"3454":3455,"3455":3456,"3456":3457,"3457":3458,"3458":3459,"3459":3460,"3460":3461,"3461":3462,"3462":3463,"3463":3464,"3464":3465,"3465":3466,"3466":3467,"3467":3468,"3468":3469,"3469":3470,"3470":3471,"3471":3472,"3472":3473,"3473":3474,"3474":3475,"3475":3476,"3476":3477,"3477":3478,"3478":3479,"3479":3480,"3480":3481,"3481":3482,"3482":3483,"3483":3484,"3484":3485,"3485":3486,"3486":3487,"3487":3488,"3488":3489,"3489":3490,"3490":3491,"3491":3492,"3492":3493,"3493":3494,"3494":3495,"3495":3496,"3496":3497,"3497":3498,"3498":3499,"3499":3500,"3500":3501,"3501":3502,"3502":3503,"3503":3504,"3504":3505,"3505":3506,"3506":3507,"3507":3508,"3508":3509,"3509":3510,"3510":3511,"3511":3512,"3512":3513,"3513":3514,"3514":3515,"3515":3516,"3516":3517,"3517":3518,"3518":3519,"3519":3520,"3520":3521,"3521":3522,"3522":3523,"3523":3524,"3524":3525,"3525":3526,"3526":3527,"3527":3528,"3528":3529,"3529":3530,"3530":3531,"3531":3532,"3532":3533,"3533":3534,"3534":3535,"3535":3536,"3536":3537,"3537":3538,"3538":3539,"3539":3540,"3540":3541,"3541":3542,"3542":3543,"3543":3544,"3544":3545,"3545":3546,"3546":3547,"3547":3548,"3548":3549,"3549":3550,"3550":3551,"3551":3552,"3552":3553,"3553":3554,"3554":3555,"3555":3556,"3556":3557,"3557":3558,"3558":3559,"3559":3560,"3560":3561,"3561":3562,"3562":3563,"3563":3564,"3564":3565,"3565":3566,"3566":3567,"3567":3568,"3568":3569,"3569":3570,"3570":3571,"3571":3572,"3572":3573,"3573":3574,"3574":3575,"3575":3576,"3576":3577,"3577":3578,"3578":3579,"3579":3580,"3580":3581,"3581":3582,"3582":3583,"3583":3584,"3584":3585,"3585":3586,"3586":3587,"3587":3588,"3588":3589,"3589":3590,"3590":3591,"3591":3592,"3592":3593,"3593":3594,"3594":3595,"3595":3596,"3596":3597,"3597":3598,"3598":3599,"3599":3600,"3600":3601,"3601":3602,"3602":3603,"3603":3604,"3604":3605,"3605":3606,"3606":3607,"3607":3608,"3608":3609,"3609":3610,"3610":3611,"3611":3612,"3612":3613,"3613":3614,"3614":3615,"3615":3616,"3616":3617,"3617":3618,"3618":3619,"3619":3620,"3620":3621,"3621":3622,"3622":3623,"3623":3624,"3624":3625,"3625":3626,"3626":3627,"3627":3628,"3628":3629,"3629":3630,"3630":3631,"3631":3632,"3632":3633,"3633":3634,"3634":3635,"3635":3636,"3636":3637,"3637":3638,"3638":3639,"3639":3640,"3640":3641,"3641":3642,"3642":3643,"3643":3644,"3644":3645,"3645":3646,"3646":3647,"3647":3648,"3648":3649,"3649":3650,"3650":3651,"3651":3652,"3652":3653,"3653":3654,"3654":3655,"3655":3656,"3656":3657,"3657":3658,"3658":3659,"3659":3660,"3660":3661,"3661":3662,"3662":3663,"3663":3664,"3664":3665,"3665":3666,"3666":3667,"3667":3668,"3668":3669,"3669":3670,"3670":3671,"3671":3672,"3672":3673,"3673":3674,"3674":3675,"3675":3676,"3676":3677,"3677":3678,"3678":3679,"3679":3680,"3680":3681,"3681":3682,"3682":3683,"3683":3684,"3684":3685,"3685":3686,"3686":3687,"3687":3688,"3688":3689,"3689":3690,"3690":3691,"3691":3692,"3692":3693,"3693":3694,"3694":3695,"3695":3696,"3696":3697,"3697":3698,"3698":3699,"3699":3700,"3700":3701,"3701":3702,"3702":3703,"3703":3704,"3704":3705,"3705":3706,"3706":3707,"3707":3708,"3708":3709,"3709":3710,"3710":3711,"3711":3712,"3712":3713,"3713":3714,"3714":3715,"3715":3716,"3716":3717,"3717":3718,"3718":3719,"3719":3720,"3720":3721,"3721":3722,"3722":3723,"3723":3724,"3724":3725,"3725":3726,"3726":3727,"3727":3728,"3728":3729,"3729":3730,"3730":3731,"3731":3732,"3732":3733,"3733":3734,"3734":3735,"3735":3736,"3736":3737,"3737":3738,"3738":3739,"3739":3740,"3740":3741,"3741":3742,"3742":3743,"3743":3744,"3744":3745,"3745":3746,"3746":3747,"3747":3748,"3748":3749,"3749":3750,"3750":3751,"3751":3752,"3752":3753,"3753":3754,"3754":3755,"3755":3756,"3756":3757,"3757":3758,"3758":3759,"3759":3760,"3760":3761,"3761":3762,"3762":3763,"3763":3764,"3764":3765,"3765":3766,"3766":3767,"3767":3768,"3768":3769,"3769":3770,"3770":3771,"3771":3772,"3772":3773,"3773":3774,"3774":3775,"3775":3776,"3776":3777,"3777":3778,"3778":3779,"3779":3780,"3780":3781,"3781":3782,"3782":3783,"3783":3784,"3784":3785,"3785":3786,"3786":3787,"3787":3788,"3788":3789,"3789":3790,"3790":3791,"3791":3792,"3792":3793,"3793":3794,"3794":3795,"3795":3796,"3796":3797,"3797":3798,"3798":3799,"3799":3800,"3800":3801,"3801":3802,"3802":3803,"3803":3804,"3804":3805,"3805":3806,"3806":3807,"3807":3808,"3808":3809,"3809":3810,"3810":3811,"3811":3812,"3812":3813,"3813":3814,"3814":3815,"3815":3816,"3816":3817,"3817":3818,"3818":3819,"3819":3820,"3820":3821,"3821":3822,"3822":3823,"3823":3824,"3824":3825,"3825":3826,"3826":3827,"3827":3828,"3828":3829,"3829":3830,"3830":3831,"3831":3832,"3832":3833,"3833":3834,"3834":3835,"3835":3836,"3836":3837,"3837":3838,"3838":3839,"3839":3840,"3840":3841,"3841":3842,"3842":3843,"3843":3844,"3844":3845,"3845":3846,"3846":3847,"3847":3848,"3848":3849,"3849":3850,"3850":3851,"3851":3852,"3852":3853,"3853":3854,"3854":3855,"3855":3856,"3856":3857,"3857":3858,"3858":3859,"3859":3860,"3860":3861,"3861":3862,"3862":3863,"3863":3864,"3864":3865,"3865":3866,"3866":3867,"3867":3868,"3868":3869,"3869":3870,"3870":3871,"3871":3872,"3872":3873,"3873":3874,"3874":3875,"3875":3876,"3876":3877,"3877":3878,"3878":3879,"3879":3880,"3880":3881,"3881":3882,"3882":3883,"3883":3884,"3884":3885,"3885":3886,"3886":3887,"3887":3888,"3888":3889,"3889":3890,"3890":3891,"3891":3892,"3892":3893,"3893":3894,"3894":3895,"3895":3896,"3896":3897,"3897":3898,"3898":3899,"3899":3900,"3900":3901,"3901":3902,"3902":3903,"3903":3904,"3904":3905,"3905":3906,"3906":3907,"3907":3908,"3908":3909,"3909":3910,"3910":3911,"3911":3912,"3912":3913,"3913":3914,"3914":3915,"3915":3916,"3916":3917,"3917":3918,"3918":3919,"3919":3920,"3920":3921,"3921":3922,"3922":3923,"3923":3924,"3924":3925,"3925":3926,"3926":3927,"3927":3928,"3928":3929,"3929":3930,"3930":3931,"3931":3932,"3932":3933,"3933":3934,"3934":3935,"3935":3936,"3936":3937,"3937":3938,"3938":3939,"3939":3940,"3940":3941,"3941":3942,"3942":3943,"3943":3944,"3944":3945,"3945":3946,"3946":3947,"3947":3948,"3948":3949,"3949":3950,"3950":3951,"3951":3952,"3952":3953,"3953":3954,"3954":3955,"3955":3956,"3956":3957,"3957":3958,"3958":3959,"3959":3960,"3960":3961,"3961":3962,"3962":3963,"3963":3964,"3964":3965,"3965":3966,"3966":3967,"3967":3968,"3968":3969,"3969":3970,"3970":3971,"3971":3972,"3972":3973,"3973":3974,"3974":3975,"3975":3976,"3976":3977,"3977":3978,"3978":3979,"3979":3980,"3980":3981,"3981":3982,"3982":3983,"3983":3984,"3984":3985,"3985":3986,"3986":3987,"3987":3988,"3988":3989,"3989":3990,"3990":3991,"3991":3992,"3992":3993,"3993":3994,"3994":3995,"3995":3996,"3996":3997,"3997":3998,"3998":3999,"3999":4000,"4000":4001,"4001":4002,"4002":4003,"4003":4004,"4004":4005,"4005":4006,"4006":4007,"4007":4008,"4008":4009,"4009":4010,"4010":4011,"4011":4012,"4012":4013,"4013":4014,"4014":4015,"4015":4016,"4016":4017,"4017":4018,"4018":4019,"4019":4020,"4020":4021,"4021":4022,"4022":4023,"4023":4024,"4024":4025,"4025":4026,"4026":4027,"4027":4028,"4028":4029,"4029":4030,"4030":4031,"4031":4032,"4032":4033,"4033":4034,"4034":4035,"4035":4036,"4036":4037,"4037":4038,"4038":4039,"4039":4040,"4040":4041,"4041":4042,"4042":4043,"4043":4044,"4044":4045,"4045":4046,"4046":4047,"4047":4048,"4048":4049,"4049":4050,"4050":4051,"4051":4052,"4052":4053,"4053":4054,"4054":4055,"4055":4056,"4056":4057,"4057":4058,"4058":4059,"4059":4060,"4060":4061,"4061":4062,"4062":4063,"4063":4064,"4064":4065,"4065":4066,"4066":4067,"4067":4068,"4068":4069,"4069":4070,"4070":4071,"4071":4072,"4072":4073,"4073":4074,"4074":4075,"4075":4076,"4076":4077,"4077":4078,"4078":4079,"4079":4080,"4080":4081,"4081":4082,"4082":4083,"4083":4084,"4084":4085,"4085":4086,"4086":4087,"4087":4088,"4088":4089,"4089":4090,"4090":4091,"4091":4092,"4092":4093,"4093":4094,"4094":4095,"4095":4096,"4096":4097,"4097":4098,"4098":4099,"4099":4100,"4100":4101,"4101":4102,"4102":4103,"4103":4104,"4104":4105,"4105":4106,"4106":4107,"4107":4108,"4108":4109,"4109":4110,"4110":4111,"4111":4112,"4112":4113,"4113":4114,"4114":4115,"4115":4116,"4116":4117,"4117":4118,"4118":4119,"4119":4120,"4120":4121,"4121":4122,"4122":4123,"4123":4124,"4124":4125,"4125":4126,"4126":4127,"4127":4128,"4128":4129,"4129":4130,"4130":4131,"4131":4132,"4132":4133,"4133":4134,"4134":4135,"4135":4136,"4136":4137,"4137":4138,"4138":4139,"4139":4140,"4140":4141,"4141":4142,"4142":4143,"4143":4144,"4144":4145,"4145":4146,"4146":4147,"4147":4148,"4148":4149,"4149":4150,"4150":4151,"4151":4152,"4152":4153,"4153":4154,"4154":4155,"4155":4156,"4156":4157,"4157":4158,"4158":4159,"4159":4160,"4160":4161,"4161":4162,"4162":4163,"4163":4164,"4164":4165,"4165":4166,"4166":4167,"4167":4168,"4168":4169,"4169":4170,"4170":4171,"4171":4172,"4172":4173,"4173":4174,"4174":4175,"4175":4176,"4176":4177,"4177":4178,"4178":4179,"4179":4180,"4180":4181,"4181":4182,"4182":4183,"4183":4184,"4184":4185,"4185":4186,"4186":4187,"4187":4188,"4188":4189,"4189":4190,"4190":4191,"4191":4192,"4192":4193,"4193":4194,"4194":4195,"4195":4196,"4196":4197,"4197":4198,"4198":4199,"4199":4200,"4200":4201,"4201":4202,"4202":4203,"4203":4204,"4204":4205,"4205":4206,"4206":4207,"4207":4208,"4208":4209,"4209":4210,"4210":4211,"4211":4212,"4212":4213,"4213":4214,"4214":4215,"4215":4216,"4216":4217,"4217":4218,"4218":4219,"4219":4220,"4220":4221,"4221":4222,"4222":4223,"4223":4224,"4224":4225,"4225":4226,"4226":4227,"4227":4228,"4228":4229,"4229":4230,"4230":4231,"4231":4232,"4232":4233,"4233":4234,"4234":4235,"4235":4236,"4236":4237,"4237":4238,"4238":4239,"4239":4240,"4240":4241,"4241":4242,"4242":4243,"4243":4244,"4244":4245,"4245":4246,"4246":4247,"4247":4248,"4248":4249,"4249":4250,"4250":4251,"4251":4252,"4252":4253,"4253":4254,"4254":4255,"4255":4256,"4256":4257,"4257":4258,"4258":4259,"4259":4260,"4260":4261,"4261":4262,"4262":4263,"4263":4264,"4264":4265,"4265":4266,"4266":4267,"4267":4268,"4268":4269,"4269":4270,"4270":4271,"4271":4272,"4272":4273,"4273":4274,"4274":4275,"4275":4276,"4276":4277,"4277":4278,"4278":4279,"4279":4280,"4280":4281,"4281":4282,"4282":4283,"4283":4284,"4284":4285,"4285":4286,"4286":4287,"4287":4288,"4288":4289,"4289":4290,"4290":4291,"4291":4292,"4292":4293,"4293":4294,"4294":4295,"4295":4296,"4296":4297,"4297":4298,"4298":4299,"4299":4300,"4300":4301,"4301":4302,"4302":4303,"4303":4304,"4304":4305,"4305":4306,"4306":4307,"4307":4308,"4308":4309,"4309":4310,"4310":4311,"4311":4312,"4312":4313,"4313":4314,"4314":4315,"4315":4316,"4316":4317,"4317":4318,"4318":4319,"4319":4320,"4320":4321,"4321":4322,"4322":4323,"4323":4324,"4324":4325,"4325":4326,"4326":4327,"4327":4328,"4328":4329,"4329":4330,"4330":4331,"4331":4332,"4332":4333,"4333":4334,"4334":4335,"4335":4336,"4336":4337,"4337":4338,"4338":4339,"4339":4340,"4340":4341,"4341":4342,"4342":4343,"4343":4344,"4344":4345,"4345":4346,"4346":4347,"4347":4348,"4348":4349,"4349":4350,"4350":4351,"4351":4352,"4352":4353,"4353":4354,"4354":4355,"4355":4356,"4356":4357,"4357":4358,"4358":4359,"4359":4360,"4360":4361,"4361":4362,"4362":4363,"4363":4364,"4364":4365,"4365":4366,"4366":4367,"4367":4368,"4368":4369,"4369":4370,"4370":4371,"4371":4372,"4372":4373,"4373":4374,"4374":4375,"4375":4376,"4376":4377,"4377":4378,"4378":4379,"4379":4380,"4380":4381,"4381":4382,"4382":4383,"4383":4384,"4384":4385,"4385":4386,"4386":4387,"4387":4388,"4388":4389,"4389":4390,"4390":4391,"4391":4392,"4392":4393,"4393":4394,"4394":4395,"4395":4396,"4396":4397,"4397":4398,"4398":4399,"4399":4400,"4400":4401,"4401":4402,"4402":4403,"4403":4404,"4404":4405,"4405":4406,"4406":4407,"4407":4408,"4408":4409,"4409":4410,"4410":4411,"4411":4412,"4412":4413,"4413":4414,"4414":4415,"4415":4416,"4416":4417,"4417":4418,"4418":4419,"4419":4420,"4420":4421,"4421":4422,"4422":4423,"4423":4424,"4424":4425,"4425":4426,"4426":4427,"4427":4428,"4428":4429,"4429":4430,"4430":4431,"4431":4432,"4432":4433,"4433":4434,"4434":4435,"4435":4436,"4436":4437,"4437":4438,"4438":4439,"4439":4440,"4440":4441,"4441":4442,"4442":4443,"4443":4444,"4444":4445,"4445":4446,"4446":4447,"4447":4448,"4448":4449,"4449":4450,"4450":4451,"4451":4452,"4452":4453,"4453":4454,"4454":4455,"4455":4456,"4456":4457,"4457":4458,"4458":4459,"4459":4460,"4460":4461,"4461":4462,"4462":4463,"4463":4464,"4464":4465,"4465":4466,"4466":4467,"4467":4468,"4468":4469,"4469":4470,"4470":4471,"4471":4472,"4472":4473,"4473":4474,"4474":4475,"4475":4476,"4476":4477,"4477":4478,"4478":4479,"4479":4480,"4480":4481,"4481":4482,"4482":4483,"4483":4484,"4484":4485,"4485":4486,"4486":4487,"4487":4488,"4488":4489,"4489":4490,"4490":4491,"4491":4492,"4492":4493,"4493":4494,"4494":4495,"4495":4496,"4496":4497,"4497":4498,"4498":4499,"4499":4500,"4500":4501,"4501":4502,"4502":4503,"4503":4504,"4504":4505,"4505":4506,"4506":4507,"4507":4508,"4508":4509,"4509":4510,"4510":4511,"4511":4512,"4512":4513,"4513":4514,"4514":4515,"4515":4516,"4516":4517,"4517":4518,"4518":4519,"4519":4520,"4520":4521,"4521":4522,"4522":4523,"4523":4524,"4524":4525,"4525":4526,"4526":4527,"4527":4528,"4528":4529,"4529":4530,"4530":4531,"4531":4532,"4532":4533,"4533":4534,"4534":4535,"4535":4536,"4536":4537,"4537":4538,"4538":4539,"4539":4540,"4540":4541,"4541":4542,"4542":4543,"4543":4544,"4544":4545,"4545":4546,"4546":4547,"4547":4548,"4548":4549,"4549":4550,"4550":4551,"4551":4552,"4552":4553,"4553":4554,"4554":4555,"4555":4556,"4556":4557,"4557":4558,"4558":4559,"4559":4560,"4560":4561,"4561":4562,"4562":4563,"4563":4564,"4564":4565,"4565":4566,"4566":4567,"4567":4568,"4568":4569,"4569":4570,"4570":4571,"4571":4572,"4572":4573,"4573":4574,"4574":4575,"4575":4576,"4576":4577,"4577":4578,"4578":4579,"4579":4580,"4580":4581,"4581":4582,"4582":4583,"4583":4584,"4584":4585,"4585":4586,"4586":4587,"4587":4588,"4588":4589,"4589":4590,"4590":4591,"4591":4592,"4592":4593,"4593":4594,"4594":4595,"4595":4596,"4596":4597,"4597":4598,"4598":4599,"4599":4600,"4600":4601,"4601":4602,"4602":4603,"4603":4604,"4604":4605,"4605":4606,"4606":4607,"4607":4608,"4608":4609,"4609":4610,"4610":4611,"4611":4612,"4612":4613,"4613":4614,"4614":4615,"4615":4616,"4616":4617,"4617":4618,"4618":4619,"4619":4620,"4620":4621,"4621":4622,"4622":4623,"4623":4624,"4624":4625,"4625":4626,"4626":4627,"4627":4628,"4628":4629,"4629":4630,"4630":4631,"4631":4632,"4632":4633,"4633":4634,"4634":4635,"4635":4636,"4636":4637,"4637":4638,"4638":4639,"4639":4640,"4640":4641,"4641":4642,"4642":4643,"4643":4644,"4644":4645,"4645":4646,"4646":4647,"4647":4648,"4648":4649,"4649":4650,"4650":4651,"4651":4652,"4652":4653,"4653":4654,"4654":4655,"4655":4656,"4656":4657,"4657":4658,"4658":4659,"4659":4660,"4660":4661,"4661":4662,"4662":4663,"4663":4664,"4664":4665,"4665":4666,"4666":4667,"4667":4668,"4668":4669,"4669":4670,"4670":4671,"4671":4672,"4672":4673,"4673":4674,"4674":4675,"4675":4676,"4676":4677,"4677":4678,"4678":4679,"4679":4680,"4680":4681,"4681":4682,"4682":4683,"4683":4684,"4684":4685,"4685":4686,"4686":4687,"4687":4688,"4688":4689,"4689":4690,"4690":4691,"4691":4692,"4692":4693,"4693":4694,"4694":4695,"4695":4696,"4696":4697,"4697":4698,"4698":4699,"4699":4700,"4700":4701,"4701":4702,"4702":4703,"4703":4704,"4704":4705,"4705":4706,"4706":4707,"4707":4708,"4708":4709,"4709":4710,"4710":4711,"4711":4712,"4712":4713,"4713":4714,"4714":4715,"4715":4716,"4716":4717,"4717":4718,"4718":4719,"4719":4720,"4720":4721,"4721":4722,"4722":4723,"4723":4724,"4724":4725,"4725":4726,"4726":4727,"4727":4728,"4728":4729,"4729":4730,"4730":4731,"4731":4732,"4732":4733,"4733":4734,"4734":4735,"4735":4736,"4736":4737,"4737":4738,"4738":4739,"4739":4740,"4740":4741,"4741":4742,"4742":4743,"4743":4744,"4744":4745,"4745":4746,"4746":4747,"4747":4748,"4748":4749,"4749":4750,"4750":4751,"4751":4752,"4752":4753,"4753":4754,"4754":4755,"4755":4756,"4756":4757,"4757":4758,"4758":4759,"4759":4760,"4760":4761,"4761":4762,"4762":4763,"4763":4764,"4764":4765,"4765":4766,"4766":4767,"4767":4768,"4768":4769,"4769":4770,"4770":4771,"4771":4772,"4772":4773,"4773":4774,"4774":4775,"4775":4776,"4776":4777,"4777":4778,"4778":4779,"4779":4780,"4780":4781,"4781":4782,"4782":4783,"4783":4784,"4784":4785,"4785":4786,"4786":4787,"4787":4788,"4788":4789,"4789":4790,"4790":4791,"4791":4792,"4792":4793,"4793":4794,"4794":4795,"4795":4796,"4796":4797,"4797":4798,"4798":4799,"4799":4800,"4800":4801,"4801":4802,"4802":4803,"4803":4804,"4804":4805,"4805":4806,"4806":4807,"4807":4808,"4808":4809,"4809":4810,"4810":4811,"4811":4812,"4812":4813,"4813":4814,"4814":4815,"4815":4816,"4816":4817,"4817":4818,"4818":4819,"4819":4820,"4820":4821,"4821":4822,"4822":4823,"4823":4824,"4824":4825,"4825":4826,"4826":4827,"4827":4828,"4828":4829,"4829":4830,"4830":4831,"4831":4832,"4832":4833,"4833":4834,"4834":4835,"4835":4836,"4836":4837,"4837":4838,"4838":4839,"4839":4840,"4840":4841,"4841":4842,"4842":4843,"4843":4844,"4844":4845,"4845":4846,"4846":4847,"4847":4848,"4848":4849,"4849":4850,"4850":4851,"4851":4852,"4852":4853,"4853":4854,"4854":4855,"4855":4856,"4856":4857,"4857":4858,"4858":4859,"4859":4860,"4860":4861,"4861":4862,"4862":4863,"4863":4864,"4864":4865,"4865":4866,"4866":4867,"4867":4868,"4868":4869,"4869":4870,"4870":4871,"4871":4872,"4872":4873,"4873":4874,"4874":4875,"4875":4876,"4876":4877,"4877":4878,"4878":4879,"4879":4880,"4880":4881,"4881":4882,"4882":4883,"4883":4884,"4884":4885,"4885":4886,"4886":4887,"4887":4888,"4888":4889,"4889":4890,"4890":4891,"4891":4892,"4892":4893,"4893":4894,"4894":4895,"4895":4896,"4896":4897,"4897":4898,"4898":4899,"4899":4900,"4900":4901,"4901":4902,"4902":4903,"4903":4904,"4904":4905,"4905":4906,"4906":4907,"4907":4908,"4908":4909,"4909":4910,"4910":4911,"4911":4912,"4912":4913,"4913":4914,"4914":4915,"4915":4916,"4916":4917,"4917":4918,"4918":4919,"4919":4920,"4920":4921,"4921":4922,"4922":4923,"4923":4924,"4924":4925,"4925":4926,"4926":4927,"4927":4928,"4928":4929,"4929":4930,"4930":4931,"4931":4932,"4932":4933,"4933":4934,"4934":4935,"4935":4936,"4936":4937,"4937":4938,"4938":4939,"4939":4940,"4940":4941,"4941":4942,"4942":4943,"4943":4944,"4944":4945,"4945":4946,"4946":4947,"4947":4948,"4948":4949,"4949":4950,"4950":4951,"4951":4952,"4952":4953,"4953":4954,"4954":4955,"4955":4956,"4956":4957,"4957":4958,"4958":4959,"4959":4960,"4960":4961,"4961":4962,"4962":4963,"4963":4964,"4964":4965,"4965":4966,"4966":4967,"4967":4968,"4968":4969,"4969":4970,"4970":4971,"4971":4972,"4972":4973,"4973":4974,"4974":4975,"4975":4976,"4976":4977,"4977":4978,"4978":4979,"4979":4980,"4980":4981,"4981":4982,"4982":4983,"4983":4984,"4984":4985,"4985":4986,"4986":4987,"4987":4988,"4988":4989,"4989":4990,"4990":4991,"4991":4992,"4992":4993,"4993":4994,"4994":4995,"4995":4996,"4996":4997,"4997":4998,"4998":4999,"4999":5000,"5000":5001,"5001":5002,"5002":5003,"5003":5004,"5004":5005,"5005":5006,"5006":5007,"5007":5008,"5008":5009,"5009":5010,"5010":5011,"5011":5012,"5012":5013,"5013":5014,"5014":5015,"5015":5016,"5016":5017,"5017":5018,"5018":5019,"5019":5020,"5020":5021,"5021":5022,"5022":5023,"5023":5024,"5024":5025,"5025":5026,"5026":5027,"5027":5028,"5028":5029,"5029":5030,"5030":5031,"5031":5032,"5032":5033,"5033":5034,"5034":5035,"5035":5036,"5036":5037,"5037":5038,"5038":5039,"5039":5040,"5040":5041,"5041":5042,"5042":5043,"5043":5044,"5044":5045,"5045":5046,"5046":5047,"5047":5048,"5048":5049,"5049":5050,"5050":5051,"5051":5052,"5052":5053,"5053":5054,"5054":5055,"5055":5056,"5056":5057,"5057":5058,"5058":5059,"5059":5060,"5060":5061,"5061":5062,"5062":5063,"5063":5064,"5064":5065,"5065":5066,"5066":5067,"5067":5068,"5068":5069,"5069":5070,"5070":5071,"5071":5072,"5072":5073,"5073":5074,"5074":5075,"5075":5076,"5076":5077,"5077":5078,"5078":5079,"5079":5080,"5080":5081,"5081":5082,"5082":5083,"5083":5084,"5084":5085,"5085":5086,"5086":5087,"5087":5088,"5088":5089,"5089":5090,"5090":5091,"5091":5092,"5092":5093,"5093":5094,"5094":5095,"5095":5096,"5096":5097,"5097":5098,"5098":5099,"5099":5100,"5100":5101,"5101":5102,"5102":5103,"5103":5104,"5104":5105,"5105":5106,"5106":5107,"5107":5108,"5108":5109,"5109":5110,"5110":5111,"5111":5112,"5112":5113,"5113":5114,"5114":5115,"5115":5116,"5116":5117,"5117":5118,"5118":5119,"5119":5120,"5120":5121,"5121":5122,"5122":5123,"5123":5124,"5124":5125,"5125":5126,"5126":5127,"5127":5128,"5128":5129,"5129":5130,"5130":5131,"5131":5132,"5132":5133,"5133":5134,"5134":5135,"5135":5136,"5136":5137,"5137":5138,"5138":5139,"5139":5140,"5140":5141,"5141":5142,"5142":5143,"5143":5144,"5144":5145,"5145":5146,"5146":5147,"5147":5148,"5148":5149,"5149":5150,"5150":5151,"5151":5152,"5152":5153,"5153":5154,"5154":5155,"5155":5156,"5156":5157,"5157":5158,"5158":5159,"5159":5160,"5160":5161,"5161":5162,"5162":5163,"5163":5164,"5164":5165,"5165":5166,"5166":5167,"5167":5168,"5168":5169,"5169":5170,"5170":5171,"5171":5172,"5172":5173,"5173":5174,"5174":5175,"5175":5176,"5176":5177,"5177":5178,"5178":5179,"5179":5180,"5180":5181,"5181":5182,"5182":5183,"5183":5184,"5184":5185,"5185":5186,"5186":5187,"5187":5188,"5188":5189,"5189":5190,"5190":5191,"5191":5192,"5192":5193,"5193":5194,"5194":5195,"5195":5196,"5196":5197,"5197":5198,"5198":5199,"5199":5200,"5200":5201,"5201":5202,"5202":5203,"5203":5204,"5204":5205,"5205":5206,"5206":5207,"5207":5208,"5208":5209,"5209":5210,"5210":5211,"5211":5212,"5212":5213,"5213":5214,"5214":5215,"5215":5216,"5216":5217,"5217":5218,"5218":5219,"5219":5220,"5220":5221,"5221":5222,"5222":5223,"5223":5224,"5224":5225,"5225":5226,"5226":5227,"5227":5228,"5228":5229,"5229":5230,"5230":5231,"5231":5232,"5232":5233,"5233":5234,"5234":5235,"5235":5236,"5236":5237,"5237":5238,"5238":5239,"5239":5240,"5240":5241,"5241":5242,"5242":5243,"5243":5244,"5244":5245,"5245":5246,"5246":5247,"5247":5248,"5248":5249,"5249":5250,"5250":5251,"5251":5252,"5252":5253,"5253":5254,"5254":5255,"5255":5256,"5256":5257,"5257":5258,"5258":5259,"5259":5260,"5260":5261,"5261":5262,"5262":5263,"5263":5264,"5264":5265,"5265":5266,"5266":5267,"5267":5268,"5268":5269,"5269":5270,"5270":5271,"5271":5272,"5272":5273,"5273":5274,"5274":5275,"5275":5276,"5276":5277,"5277":5278,"5278":5279,"5279":5280,"5280":5281,"5281":5282,"5282":5283,"5283":5284,"5284":5285,"5285":5286,"5286":5287,"5287":5288,"5288":5289,"5289":5290,"5290":5291,"5291":5292,"5292":5293,"5293":5294,"5294":5295,"5295":5296,"5296":5297,"5297":5298,"5298":5299,"5299":5300,"5300":5301,"5301":5302,"5302":5303,"5303":5304,"5304":5305,"5305":5306,"5306":5307,"5307":5308,"5308":5309,"5309":5310,"5310":5311,"5311":5312,"5312":5313,"5313":5314,"5314":5315,"5315":5316,"5316":5317,"5317":5318,"5318":5319,"5319":5320,"5320":5321,"5321":5322,"5322":5323,"5323":5324,"5324":5325,"5325":5326,"5326":5327,"5327":5328,"5328":5329,"5329":5330,"5330":5331,"5331":5332,"5332":5333,"5333":5334,"5334":5335,"5335":5336,"5336":5337,"5337":5338,"5338":5339,"5339":5340,"5340":5341,"5341":5342,"5342":5343,"5343":5344,"5344":5345,"5345":5346,"5346":5347,"5347":5348,"5348":5349,"5349":5350,"5350":5351,"5351":5352,"5352":5353,"5353":5354,"5354":5355,"5355":5356,"5356":5357,"5357":5358,"5358":5359,"5359":5360,"5360":5361,"5361":5362,"5362":5363,"5363":5364,"5364":5365,"5365":5366,"5366":5367,"5367":5368,"5368":5369,"5369":5370,"5370":5371,"5371":5372,"5372":5373,"5373":5374,"5374":5375,"5375":5376,"5376":5377,"5377":5378,"5378":5379,"5379":5380,"5380":5381,"5381":5382,"5382":5383,"5383":5384,"5384":5385,"5385":5386,"5386":5387,"5387":5388,"5388":5389,"5389":5390,"5390":5391,"5391":5392,"5392":5393,"5393":5394,"5394":5395,"5395":5396,"5396":5397,"5397":5398,"5398":5399,"5399":5400,"5400":5401,"5401":5402,"5402":5403,"5403":5404,"5404":5405,"5405":5406,"5406":5407,"5407":5408,"5408":5409,"5409":5410,"5410":5411,"5411":5412,"5412":5413,"5413":5414,"5414":5415,"5415":5416,"5416":5417,"5417":5418,"5418":5419,"5419":5420,"5420":5421,"5421":5422,"5422":5423,"5423":5424,"5424":5425,"5425":5426,"5426":5427,"5427":5428,"5428":5429,"5429":5430,"5430":5431,"5431":5432,"5432":5433,"5433":5434,"5434":5435,"5435":5436,"5436":5437,"5437":5438,"5438":5439,"5439":5440,"5440":5441,"5441":5442,"5442":5443,"5443":5444,"5444":5445,"5445":5446,"5446":5447,"5447":5448,"5448":5449,"5449":5450,"5450":5451,"5451":5452,"5452":5453,"5453":5454,"5454":5455,"5455":5456,"5456":5457,"5457":5458,"5458":5459,"5459":5460,"5460":5461,"5461":5462,"5462":5463,"5463":5464,"5464":5465,"5465":5466,"5466":5467,"5467":5468,"5468":5469,"5469":5470,"5470":5471,"5471":5472,"5472":5473,"5473":5474,"5474":5475,"5475":5476,"5476":5477,"5477":5478,"5478":5479,"5479":5480,"5480":5481,"5481":5482,"5482":5483,"5483":5484,"5484":5485,"5485":5486,"5486":5487,"5487":5488,"5488":5489,"5489":5490,"5490":5491,"5491":5492,"5492":5493,"5493":5494,"5494":5495,"5495":5496,"5496":5497,"5497":5498,"5498":5499,"5499":5500,"5500":5501,"5501":5502,"5502":5503,"5503":5504,"5504":5505,"5505":5506,"5506":5507,"5507":5508,"5508":5509,"5509":5510,"5510":5511,"5511":5512,"5512":5513,"5513":5514,"5514":5515,"5515":5516,"5516":5517,"5517":5518,"5518":5519,"5519":5520,"5520":5521,"5521":5522,"5522":5523,"5523":5524,"5524":5525,"5525":5526,"5526":5527,"5527":5528,"5528":5529,"5529":5530,"5530":5531,"5531":5532,"5532":5533,"5533":5534,"5534":5535,"5535":5536,"5536":5537,"5537":5538,"5538":5539,"5539":5540,"5540":5541,"5541":5542,"5542":5543,"5543":5544,"5544":5545,"5545":5546,"5546":5547,"5547":5548,"5548":5549,"5549":5550,"5550":5551,"5551":5552,"5552":5553,"5553":5554,"5554":5555,"5555":5556,"5556":5557,"5557":5558,"5558":5559,"5559":5560,"5560":5561,"5561":5562,"5562":5563,"5563":5564,"5564":5565,"5565":5566,"5566":5567,"5567":5568,"5568":5569,"5569":5570,"5570":5571,"5571":5572,"5572":5573,"5573":5574,"5574":5575,"5575":5576,"5576":5577,"5577":5578,"5578":5579,"5579":5580,"5580":5581,"5581":5582,"5582":5583,"5583":5584,"5584":5585,"5585":5586,"5586":5587,"5587":5588,"5588":5589,"5589":5590,"5590":5591,"5591":5592,"5592":5593,"5593":5594,"5594":5595,"5595":5596,"5596":5597,"5597":5598,"5598":5599,"5599":5600,"5600":5601,"5601":5602,"5602":5603,"5603":5604,"5604":5605,"5605":5606,"5606":5607,"5607":5608,"5608":5609,"5609":5610,"5610":5611,"5611":5612,"5612":5613,"5613":5614,"5614":5615,"5615":5616,"5616":5617,"5617":5618,"5618":5619,"5619":5620,"5620":5621,"5621":5622,"5622":5623,"5623":5624,"5624":5625,"5625":5626,"5626":5627,"5627":5628,"5628":5629,"5629":5630,"5630":5631,"5631":5632,"5632":5633,"5633":5634,"5634":5635,"5635":5636,"5636":5637,"5637":5638,"5638":5639,"5639":5640,"5640":5641,"5641":5642,"5642":5643,"5643":5644,"5644":5645,"5645":5646,"5646":5647,"5647":5648,"5648":5649,"5649":5650,"5650":5651,"5651":5652,"5652":5653,"5653":5654,"5654":5655,"5655":5656,"5656":5657,"5657":5658,"5658":5659,"5659":5660,"5660":5661,"5661":5662,"5662":5663,"5663":5664,"5664":5665,"5665":5666,"5666":5667,"5667":5668,"5668":5669,"5669":5670,"5670":5671,"5671":5672,"5672":5673,"5673":5674,"5674":5675,"5675":5676,"5676":5677,"5677":5678,"5678":5679,"5679":5680,"5680":5681,"5681":5682,"5682":5683,"5683":5684,"5684":5685,"5685":5686,"5686":5687,"5687":5688,"5688":5689,"5689":5690,"5690":5691,"5691":5692,"5692":5693,"5693":5694,"5694":5695,"5695":5696,"5696":5697,"5697":5698,"5698":5699,"5699":5700,"5700":5701,"5701":5702,"5702":5703,"5703":5704,"5704":5705,"5705":5706,"5706":5707,"5707":5708,"5708":5709,"5709":5710,"5710":5711,"5711":5712,"5712":5713,"5713":5714,"5714":5715,"5715":5716,"5716":5717,"5717":5718,"5718":5719,"5719":5720,"5720":5721,"5721":5722,"5722":5723,"5723":5724,"5724":5725,"5725":5726,"5726":5727,"5727":5728,"5728":5729,"5729":5730,"5730":5731,"5731":5732,"5732":5733,"5733":5734,"5734":5735,"5735":5736,"5736":5737,"5737":5738,"5738":5739,"5739":5740,"5740":5741,"5741":5742,"5742":5743,"5743":5744,"5744":5745,"5745":5746,"5746":5747,"5747":5748,"5748":5749,"5749":5750,"5750":5751,"5751":5752,"5752":5753,"5753":5754,"5754":5755,"5755":5756,"5756":5757,"5757":5758,"5758":5759,"5759":5760,"5760":5761,"5761":5762,"5762":5763,"5763":5764,"5764":5765,"5765":5766,"5766":5767,"5767":5768,"5768":5769,"5769":5770,"5770":5771,"5771":5772,"5772":5773,"5773":5774,"5774":5775,"5775":5776,"5776":5777,"5777":5778,"5778":5779,"5779":5780,"5780":5781,"5781":5782,"5782":5783,"5783":5784,"5784":5785,"5785":5786,"5786":5787,"5787":5788,"5788":5789,"5789":5790,"5790":5791,"5791":5792,"5792":5793,"5793":5794,"5794":5795,"5795":5796,"5796":5797,"5797":5798,"5798":5799,"5799":5800,"5800":5801,"5801":5802,"5802":5803,"5803":5804,"5804":5805,"5805":5806,"5806":5807,"5807":5808,"5808":5809,"5809":5810,"5810":5811,"5811":5812,"5812":5813,"5813":5814,"5814":5815,"5815":5816,"5816":5817,"5817":5818,"5818":5819,"5819":5820,"5820":5821,"5821":5822,"5822":5823,"5823":5824,"5824":5825,"5825":5826,"5826":5827,"5827":5828,"5828":5829,"5829":5830,"5830":5831,"5831":5832,"5832":5833,"5833":5834,"5834":5835,"5835":5836,"5836":5837,"5837":5838,"5838":5839,"5839":5840,"5840":5841,"5841":5842,"5842":5843,"5843":5844,"5844":5845,"5845":5846,"5846":5847,"5847":5848,"5848":5849,"5849":5850,"5850":5851,"5851":5852,"5852":5853,"5853":5854,"5854":5855,"5855":5856,"5856":5857,"5857":5858,"5858":5859,"5859":5860,"5860":5861,"5861":5862,"5862":5863,"5863":5864,"5864":5865,"5865":5866,"5866":5867,"5867":5868,"5868":5869,"5869":5870,"5870":5871,"5871":5872,"5872":5873,"5873":5874,"5874":5875,"5875":5876,"5876":5877,"5877":5878,"5878":5879,"5879":5880,"5880":5881,"5881":5882,"5882":5883,"5883":5884,"5884":5885,"5885":5886,"5886":5887,"5887":5888,"5888":5889,"5889":5890,"5890":5891,"5891":5892,"5892":5893,"5893":5894,"5894":5895,"5895":5896,"5896":5897,"5897":5898,"5898":5899,"5899":5900,"5900":5901,"5901":5902,"5902":5903,"5903":5904,"5904":5905,"5905":5906,"5906":5907,"5907":5908,"5908":5909,"5909":5910,"5910":5911,"5911":5912,"5912":5913,"5913":5914,"5914":5915,"5915":5916,"5916":5917,"5917":5918,"5918":5919,"5919":5920,"5920":5921,"5921":5922,"5922":5923,"5923":5924,"5924":5925,"5925":5926,"5926":5927,"5927":5928,"5928":5929,"5929":5930,"5930":5931,"5931":5932,"5932":5933,"5933":5934,"5934":5935,"5935":5936,"5936":5937,"5937":5938,"5938":5939,"5939":5940,"5940":5941,"5941":5942,"5942":5943,"5943":5944,"5944":5945,"5945":5946,"5946":5947,"5947":5948,"5948":5949,"5949":5950,"5950":5951,"5951":5952,"5952":5953,"5953":5954,"5954":5955,"5955":5956,"5956":5957,"5957":5958,"5958":5959,"5959":5960,"5960":5961,"5961":5962,"5962":5963,"5963":5964,"5964":5965,"5965":5966,"5966":5967,"5967":5968,"5968":5969,"5969":5970,"5970":5971,"5971":5972,"5972":5973,"5973":5974,"5974":5975,"5975":5976,"5976":5977,"5977":5978,"5978":5979,"5979":5980,"5980":5981,"5981":5982,"5982":5983,"5983":5984,"5984":5985,"5985":5986,"5986":5987,"5987":5988,"5988":5989,"5989":5990,"5990":5991,"5991":5992,"5992":5993,"5993":5994,"5994":5995,"5995":5996,"5996":5997,"5997":5998,"5998":5999,"5999":6000,"6000":6001,"6001":6002,"6002":6003,"6003":6004,"6004":6005,"6005":6006,"6006":6007,"6007":6008,"6008":6009,"6009":6010,"6010":6011,"6011":6012,"6012":6013,"6013":6014,"6014":6015,"6015":6016,"6016":6017,"6017":6018,"6018":6019,"6019":6020,"6020":6021,"6021":6022,"6022":6023,"6023":6024,"6024":6025,"6025":6026,"6026":6027,"6027":6028,"6028":6029,"6029":6030,"6030":6031,"6031":6032,"6032":6033,"6033":6034,"6034":6035,"6035":6036,"6036":6037,"6037":6038,"6038":6039,"6039":6040,"6040":6041,"6041":6042,"6042":6043,"6043":6044,"6044":6045,"6045":6046,"6046":6047,"6047":6048,"6048":6049,"6049":6050,"6050":6051,"6051":6052,"6052":6053,"6053":6054,"6054":6055,"6055":6056,"6056":6057,"6057":6058,"6058":6059,"6059":6060,"6060":6061,"6061":6062,"6062":6063,"6063":6064,"6064":6065,"6065":6066,"6066":6067,"6067":6068,"6068":6069,"6069":6070,"6070":6071,"6071":6072,"6072":6073,"6073":6074,"6074":6075,"6075":6076,"6076":6077,"6077":6078,"6078":6079,"6079":6080,"6080":6081,"6081":6082,"6082":6083,"6083":6084,"6084":6085,"6085":6086,"6086":6087,"6087":6088,"6088":6089,"6089":6090,"6090":6091,"6091":6092,"6092":6093,"6093":6094,"6094":6095,"6095":6096,"6096":6097,"6097":6098,"6098":6099,"6099":6100,"6100":6101,"6101":6102,"6102":6103,"6103":6104,"6104":6105,"6105":6106,"6106":6107,"6107":6108,"6108":6109,"6109":6110,"6110":6111,"6111":6112,"6112":6113,"6113":6114,"6114":6115,"6115":6116,"6116":6117,"6117":6118,"6118":6119,"6119":6120,"6120":6121,"6121":6122,"6122":6123,"6123":6124,"6124":6125,"6125":6126,"6126":6127,"6127":6128,"6128":6129,"6129":6130,"6130":6131,"6131":6132,"6132":6133,"6133":6134,"6134":6135,"6135":6136,"6136":6137,"6137":6138,"6138":6139,"6139":6140,"6140":6141,"6141":6142,"6142":6143,"6143":6144,"6144":6145,"6145":6146,"6146":6147,"6147":6148,"6148":6149,"6149":6150,"6150":6151,"6151":6152,"6152":6153,"6153":6154,"6154":6155,"6155":6156,"6156":6157,"6157":6158,"6158":6159,"6159":6160,"6160":6161,"6161":6162,"6162":6163,"6163":6164,"6164":6165,"6165":6166,"6166":6167,"6167":6168,"6168":6169,"6169":6170,"6170":6171,"6171":6172,"6172":6173,"6173":6174,"6174":6175,"6175":6176,"6176":6177,"6177":6178,"6178":6179,"6179":6180,"6180":6181,"6181":6182,"6182":6183,"6183":6184,"6184":6185,"6185":6186,"6186":6187,"6187":6188,"6188":6189,"6189":6190,"6190":6191,"6191":6192,"6192":6193,"6193":6194,"6194":6195,"6195":6196,"6196":6197,"6197":6198,"6198":6199,"6199":6200,"6200":6201,"6201":6202,"6202":6203,"6203":6204,"6204":6205,"6205":6206,"6206":6207,"6207":6208,"6208":6209,"6209":6210,"6210":6211,"6211":6212,"6212":6213,"6213":6214,"6214":6215,"6215":6216,"6216":6217,"6217":6218,"6218":6219,"6219":6220,"6220":6221,"6221":6222,"6222":6223,"6223":6224,"6224":6225,"6225":6226,"6226":6227,"6227":6228,"6228":6229,"6229":6230,"6230":6231,"6231":6232,"6232":6233,"6233":6234,"6234":6235,"6235":6236,"6236":6237,"6237":6238,"6238":6239,"6239":6240,"6240":6241,"6241":6242,"6242":6243,"6243":6244,"6244":6245,"6245":6246,"6246":6247,"6247":6248,"6248":6249,"6249":6250,"6250":6251,"6251":6252,"6252":6253,"6253":6254,"6254":6255,"6255":6256,"6256":6257,"6257":6258,"6258":6259,"6259":6260,"6260":6261,"6261":6262,"6262":6263,"6263":6264,"6264":6265,"6265":6266,"6266":6267,"6267":6268,"6268":6269,"6269":6270,"6270":6271,"6271":6272,"6272":6273,"6273":6274,"6274":6275,"6275":6276,"6276":6277,"6277":6278,"6278":6279,"6279":6280,"6280":6281,"6281":6282,"6282":6283,"6283":6284,"6284":6285,"6285":6286,"6286":6287,"6287":6288,"6288":6289,"6289":6290,"6290":6291,"6291":6292,"6292":6293,"6293":6294,"6294":6295,"6295":6296,"6296":6297,"6297":6298,"6298":6299,"6299":6300,"6300":6301,"6301":6302,"6302":6303,"6303":6304,"6304":6305,"6305":6306,"6306":6307,"6307":6308,"6308":6309,"6309":6310,"6310":6311,"6311":6312,"6312":6313,"6313":6314,"6314":6315,"6315":6316,"6316":6317,"6317":6318,"6318":6319,"6319":6320,"6320":6321,"6321":6322,"6322":6323,"6323":6324,"6324":6325,"6325":6326,"6326":6327,"6327":6328,"6328":6329,"6329":6330,"6330":6331,"6331":6332,"6332":6333,"6333":6334,"6334":6335,"6335":6336,"6336":6337,"6337":6338,"6338":6339,"6339":6340,"6340":6341,"6341":6342,"6342":6343,"6343":6344,"6344":6345,"6345":6346,"6346":6347,"6347":6348,"6348":6349,"6349":6350,"6350":6351,"6351":6352,"6352":6353,"6353":6354,"6354":6355,"6355":6356,"6356":6357,"6357":6358,"6358":6359,"6359":6360,"6360":6361,"6361":6362,"6362":6363,"6363":6364,"6364":6365,"6365":6366,"6366":6367,"6367":6368,"6368":6369,"6369":6370,"6370":6371,"6371":6372,"6372":6373,"6373":6374,"6374":6375,"6375":6376,"6376":6377,"6377":6378,"6378":6379,"6379":6380,"6380":6381,"6381":6382,"6382":6383,"6383":6384,"6384":6385,"6385":6386,"6386":6387,"6387":6388,"6388":6389,"6389":6390,"6390":6391,"6391":6392,"6392":6393,"6393":6394,"6394":6395,"6395":6396,"6396":6397,"6397":6398,"6398":6399,"6399":6400,"6400":6401,"6401":6402,"6402":6403,"6403":6404,"6404":6405,"6405":6406,"6406":6407,"6407":6408,"6408":6409,"6409":6410,"6410":6411,"6411":6412,"6412":6413,"6413":6414,"6414":6415,"6415":6416,"6416":6417,"6417":6418,"6418":6419,"6419":6420,"6420":6421,"6421":6422,"6422":6423,"6423":6424,"6424":6425,"6425":6426,"6426":6427,"6427":6428,"6428":6429,"6429":6430,"6430":6431,"6431":6432,"6432":6433,"6433":6434,"6434":6435,"6435":6436,"6436":6437,"6437":6438,"6438":6439,"6439":6440,"6440":6441,"6441":6442,"6442":6443,"6443":6444,"6444":6445,"6445":6446,"6446":6447,"6447":6448,"6448":6449,"6449":6450,"6450":6451,"6451":6452,"6452":6453,"6453":6454,"6454":6455,"6455":6456,"6456":6457,"6457":6458,"6458":6459,"6459":6460,"6460":6461,"6461":6462,"6462":6463,"6463":6464,"6464":6465,"6465":6466,"6466":6467,"6467":6468,"6468":6469,"6469":6470,"6470":6471,"6471":6472,"6472":6473,"6473":6474,"6474":6475,"6475":6476,"6476":6477,"6477":6478,"6478":6479,"6479":6480,"6480":6481,"6481":6482,"6482":6483,"6483":6484,"6484":6485,"6485":6486,"6486":6487,"6487":6488,"6488":6489,"6489":6490,"6490":6491,"6491":6492,"6492":6493,"6493":6494,"6494":6495,"6495":6496,"6496":6497,"6497":6498,"6498":6499,"6499":6500,"6500":6501,"6501":6502,"6502":6503,"6503":6504,"6504":6505,"6505":6506,"6506":6507,"6507":6508,"6508":6509,"6509":6510,"6510":6511,"6511":6512,"6512":6513,"6513":6514,"6514":6515,"6515":6516,"6516":6517,"6517":6518,"6518":6519,"6519":6520,"6520":6521,"6521":6522,"6522":6523,"6523":6524,"6524":6525,"6525":6526,"6526":6527,"6527":6528,"6528":6529,"6529":6530,"6530":6531,"6531":6532,"6532":6533,"6533":6534,"6534":6535,"6535":6536,"6536":6537,"6537":6538,"6538":6539,"6539":6540,"6540":6541,"6541":6542,"6542":6543,"6543":6544,"6544":6545,"6545":6546,"6546":6547,"6547":6548,"6548":6549,"6549":6550,"6550":6551,"6551":6552,"6552":6553,"6553":6554,"6554":6555,"6555":6556,"6556":6557,"6557":6558,"6558":6559,"6559":6560,"6560":6561,"6561":6562,"6562":6563,"6563":6564,"6564":6565,"6565":6566,"6566":6567,"6567":6568,"6568":6569,"6569":6570,"6570":6571,"6571":6572,"6572":6573,"6573":6574,"6574":6575,"6575":6576,"6576":6577,"6577":6578,"6578":6579,"6579":6580,"6580":6581,"6581":6582,"6582":6583,"6583":6584,"6584":6585,"6585":6586,"6586":6587,"6587":6588,"6588":6589,"6589":6590,"6590":6591,"6591":6592,"6592":6593,"6593":6594,"6594":6595,"6595":6596,"6596":6597,"6597":6598,"6598":6599,"6599":6600,"6600":6601,"6601":6602,"6602":6603,"6603":6604,"6604":6605,"6605":6606,"6606":6607,"6607":6608,"6608":6609,"6609":6610,"6610":6611,"6611":6612,"6612":6613,"6613":6614,"6614":6615,"6615":6616,"6616":6617,"6617":6618,"6618":6619,"6619":6620,"6620":6621,"6621":6622,"6622":6623,"6623":6624,"6624":6625,"6625":6626,"6626":6627,"6627":6628,"6628":6629,"6629":6630,"6630":6631,"6631":6632,"6632":6633,"6633":6634,"6634":6635,"6635":6636,"6636":6637,"6637":6638,"6638":6639,"6639":6640,"6640":6641,"6641":6642,"6642":6643,"6643":6644,"6644":6645,"6645":6646,"6646":6647,"6647":6648,"6648":6649,"6649":6650,"6650":6651,"6651":6652,"6652":6653,"6653":6654,"6654":6655,"6655":6656,"6656":6657,"6657":6658,"6658":6659,"6659":6660,"6660":6661,"6661":6662,"6662":6663,"6663":6664,"6664":6665,"6665":6666,"6666":6667,"6667":6668,"6668":6669,"6669":6670,"6670":6671,"6671":6672,"6672":6673,"6673":6674,"6674":6675,"6675":6676,"6676":6677,"6677":6678,"6678":6679,"6679":6680,"6680":6681,"6681":6682,"6682":6683,"6683":6684,"6684":6685,"6685":6686,"6686":6687,"6687":6688,"6688":6689,"6689":6690,"6690":6691,"6691":6692,"6692":6693,"6693":6694,"6694":6695,"6695":6696,"6696":6697,"6697":6698,"6698":6699,"6699":6700,"6700":6701,"6701":6702,"6702":6703,"6703":6704,"6704":6705,"6705":6706,"6706":6707,"6707":6708,"6708":6709,"6709":6710,"6710":6711,"6711":6712,"6712":6713,"6713":6714,"6714":6715,"6715":6716,"6716":6717,"6717":6718,"6718":6719,"6719":6720,"6720":6721,"6721":6722,"6722":6723,"6723":6724,"6724":6725,"6725":6726,"6726":6727,"6727":6728,"6728":6729,"6729":6730,"6730":6731,"6731":6732,"6732":6733,"6733":6734,"6734":6735,"6735":6736,"6736":6737,"6737":6738,"6738":6739,"6739":6740,"6740":6741,"6741":6742,"6742":6743,"6743":6744,"6744":6745,"6745":6746,"6746":6747,"6747":6748,"6748":6749,"6749":6750,"6750":6751,"6751":6752,"6752":6753,"6753":6754,"6754":6755,"6755":6756,"6756":6757,"6757":6758,"6758":6759,"6759":6760,"6760":6761,"6761":6762,"6762":6763,"6763":6764,"6764":6765,"6765":6766,"6766":6767,"6767":6768,"6768":6769,"6769":6770,"6770":6771,"6771":6772,"6772":6773,"6773":6774,"6774":6775,"6775":6776,"6776":6777,"6777":6778,"6778":6779,"6779":6780,"6780":6781,"6781":6782,"6782":6783,"6783":6784,"6784":6785,"6785":6786,"6786":6787,"6787":6788,"6788":6789,"6789":6790,"6790":6791,"6791":6792,"6792":6793,"6793":6794,"6794":6795,"6795":6796,"6796":6797,"6797":6798,"6798":6799,"6799":6800,"6800":6801,"6801":6802,"6802":6803,"6803":6804,"6804":6805,"6805":6806,"6806":6807,"6807":6808,"6808":6809,"6809":6810,"6810":6811,"6811":6812,"6812":6813,"6813":6814,"6814":6815,"6815":6816,"6816":6817,"6817":6818,"6818":6819,"6819":6820,"6820":6821,"6821":6822,"6822":6823,"6823":6824,"6824":6825,"6825":6826,"6826":6827,"6827":6828,"6828":6829,"6829":6830,"6830":6831,"6831":6832,"6832":6833,"6833":6834,"6834":6835,"6835":6836,"6836":6837,"6837":6838,"6838":6839,"6839":6840,"6840":6841,"6841":6842,"6842":6843,"6843":6844,"6844":6845,"6845":6846,"6846":6847,"6847":6848,"6848":6849,"6849":6850,"6850":6851,"6851":6852,"6852":6853,"6853":6854,"6854":6855,"6855":6856,"6856":6857,"6857":6858,"6858":6859,"6859":6860,"6860":6861,"6861":6862,"6862":6863,"6863":6864,"6864":6865,"6865":6866,"6866":6867,"6867":6868,"6868":6869,"6869":6870,"6870":6871,"6871":6872,"6872":6873,"6873":6874,"6874":6875,"6875":6876,"6876":6877,"6877":6878,"6878":6879,"6879":6880,"6880":6881,"6881":6882,"6882":6883,"6883":6884,"6884":6885,"6885":6886,"6886":6887,"6887":6888,"6888":6889,"6889":6890,"6890":6891,"6891":6892,"6892":6893,"6893":6894,"6894":6895,"6895":6896,"6896":6897,"6897":6898,"6898":6899,"6899":6900,"6900":6901,"6901":6902,"6902":6903,"6903":6904,"6904":6905,"6905":6906,"6906":6907,"6907":6908,"6908":6909,"6909":6910,"6910":6911,"6911":6912,"6912":6913,"6913":6914,"6914":6915,"6915":6916,"6916":6917,"6917":6918,"6918":6919,"6919":6920,"6920":6921,"6921":6922,"6922":6923,"6923":6924,"6924":6925,"6925":6926,"6926":6927,"6927":6928,"6928":6929,"6929":6930,"6930":6931,"6931":6932,"6932":6933,"6933":6934,"6934":6935,"6935":6936,"6936":6937,"6937":6938,"6938":6939,"6939":6940,"6940":6941,"6941":6942,"6942":6943,"6943":6944,"6944":6945,"6945":6946,"6946":6947,"6947":6948,"6948":6949,"6949":6950,"6950":6951,"6951":6952,"6952":6953,"6953":6954,"6954":6955,"6955":6956,"6956":6957,"6957":6958,"6958":6959,"6959":6960,"6960":6961,"6961":6962,"6962":6963,"6963":6964,"6964":6965,"6965":6966,"6966":6967,"6967":6968,"6968":6969,"6969":6970,"6970":6971,"6971":6972,"6972":6973,"6973":6974,"6974":6975,"6975":6976,"6976":6977,"6977":6978,"6978":6979,"6979":6980,"6980":6981,"6981":6982,"6982":6983,"6983":6984,"6984":6985,"6985":6986,"6986":6987,"6987":6988,"6988":6989,"6989":6990,"6990":6991,"6991":6992,"6992":6993,"6993":6994,"6994":6995,"6995":6996,"6996":6997,"6997":6998,"6998":6999,"6999":7000,"7000":7001,"7001":7002,"7002":7003,"7003":7004,"7004":7005,"7005":7006,"7006":7007,"7007":7008,"7008":7009,"7009":7010,"7010":7011,"7011":7012,"7012":7013,"7013":7014,"7014":7015,"7015":7016,"7016":7017,"7017":7018,"7018":7019,"7019":7020,"7020":7021,"7021":7022,"7022":7023,"7023":7024,"7024":7025,"7025":7026,"7026":7027,"7027":7028,"7028":7029,"7029":7030,"7030":7031,"7031":7032,"7032":7033,"7033":7034,"7034":7035,"7035":7036,"7036":7037,"7037":7038,"7038":7039,"7039":7040,"7040":7041,"7041":7042,"7042":7043,"7043":7044,"7044":7045,"7045":7046,"7046":7047,"7047":7048,"7048":7049,"7049":7050,"7050":7051,"7051":7052,"7052":7053,"7053":7054,"7054":7055,"7055":7056,"7056":7057,"7057":7058,"7058":7059,"7059":7060,"7060":7061,"7061":7062,"7062":7063,"7063":7064,"7064":7065,"7065":7066,"7066":7067,"7067":7068,"7068":7069,"7069":7070,"7070":7071,"7071":7072,"7072":7073,"7073":7074,"7074":7075,"7075":7076,"7076":7077,"7077":7078,"7078":7079,"7079":7080,"7080":7081,"7081":7082,"7082":7083,"7083":7084,"7084":7085,"7085":7086,"7086":7087,"7087":7088,"7088":7089,"7089":7090,"7090":7091,"7091":7092,"7092":7093,"7093":7094,"7094":7095,"7095":7096,"7096":7097,"7097":7098,"7098":7099,"7099":7100,"7100":7101,"7101":7102,"7102":7103,"7103":7104,"7104":7105,"7105":7106,"7106":7107,"7107":7108,"7108":7109,"7109":7110,"7110":7111,"7111":7112,"7112":7113,"7113":7114,"7114":7115,"7115":7116,"7116":7117,"7117":7118,"7118":7119,"7119":7120,"7120":7121,"7121":7122,"7122":7123,"7123":7124,"7124":7125,"7125":7126,"7126":7127,"7127":7128,"7128":7129,"7129":7130,"7130":7131,"7131":7132,"7132":7133,"7133":7134,"7134":7135,"7135":7136,"7136":7137,"7137":7138,"7138":7139,"7139":7140,"7140":7141,"7141":7142,"7142":7143,"7143":7144,"7144":7145,"7145":7146,"7146":7147,"7147":7148,"7148":7149,"7149":7150,"7150":7151,"7151":7152,"7152":7153,"7153":7154,"7154":7155,"7155":7156,"7156":7157,"7157":7158,"7158":7159,"7159":7160,"7160":7161,"7161":7162,"7162":7163,"7163":7164,"7164":7165,"7165":7166,"7166":7167,"7167":7168,"7168":7169,"7169":7170,"7170":7171,"7171":7172,"7172":7173,"7173":7174,"7174":7175,"7175":7176,"7176":7177,"7177":7178,"7178":7179,"7179":7180,"7180":7181,"7181":7182,"7182":7183,"7183":7184,"7184":7185,"7185":7186,"7186":7187,"7187":7188,"7188":7189,"7189":7190,"7190":7191,"7191":7192,"7192":7193,"7193":7194,"7194":7195,"7195":7196,"7196":7197,"7197":7198,"7198":7199,"7199":7200,"7200":7201,"7201":7202,"7202":7203,"7203":7204,"7204":7205,"7205":7206,"7206":7207,"7207":7208,"7208":7209,"7209":7210,"7210":7211,"7211":7212,"7212":7213,"7213":7214,"7214":7215,"7215":7216,"7216":7217,"7217":7218,"7218":7219,"7219":7220,"7220":7221,"7221":7222,"7222":7223,"7223":7224,"7224":7225,"7225":7226,"7226":7227,"7227":7228,"7228":7229,"7229":7230,"7230":7231,"7231":7232,"7232":7233,"7233":7234,"7234":7235,"7235":7236,"7236":7237,"7237":7238,"7238":7239,"7239":7240,"7240":7241,"7241":7242,"7242":7243,"7243":7244,"7244":7245,"7245":7246,"7246":7247,"7247":7248,"7248":7249,"7249":7250,"7250":7251,"7251":7252,"7252":7253,"7253":7254,"7254":7255,"7255":7256,"7256":7257,"7257":7258,"7258":7259,"7259":7260,"7260":7261,"7261":7262,"7262":7263,"7263":7264,"7264":7265,"7265":7266,"7266":7267,"7267":7268,"7268":7269,"7269":7270,"7270":7271,"7271":7272,"7272":7273,"7273":7274,"7274":7275,"7275":7276,"7276":7277,"7277":7278,"7278":7279,"7279":7280,"7280":7281,"7281":7282,"7282":7283,"7283":7284,"7284":7285,"7285":7286,"7286":7287,"7287":7288,"7288":7289,"7289":7290,"7290":7291,"7291":7292,"7292":7293,"7293":7294,"7294":7295,"7295":7296,"7296":7297,"7297":7298,"7298":7299,"7299":7300,"7300":7301,"7301":7302,"7302":7303,"7303":7304,"7304":7305,"7305":7306,"7306":7307,"7307":7308,"7308":7309,"7309":7310,"7310":7311,"7311":7312,"7312":7313,"7313":7314,"7314":7315,"7315":7316,"7316":7317,"7317":7318,"7318":7319,"7319":7320,"7320":7321,"7321":7322,"7322":7323,"7323":7324,"7324":7325,"7325":7326,"7326":7327,"7327":7328,"7328":7329,"7329":7330,"7330":7331,"7331":7332,"7332":7333,"7333":7334,"7334":7335,"7335":7336,"7336":7337,"7337":7338,"7338":7339,"7339":7340,"7340":7341,"7341":7342,"7342":7343,"7343":7344,"7344":7345,"7345":7346,"7346":7347,"7347":7348,"7348":7349,"7349":7350,"7350":7351,"7351":7352,"7352":7353,"7353":7354,"7354":7355,"7355":7356,"7356":7357,"7357":7358,"7358":7359,"7359":7360,"7360":7361,"7361":7362,"7362":7363,"7363":7364,"7364":7365,"7365":7366,"7366":7367,"7367":7368,"7368":7369,"7369":7370,"7370":7371,"7371":7372,"7372":7373,"7373":7374,"7374":7375,"7375":7376,"7376":7377,"7377":7378,"7378":7379,"7379":7380,"7380":7381,"7381":7382,"7382":7383,"7383":7384,"7384":7385,"7385":7386,"7386":7387,"7387":7388,"7388":7389,"7389":7390,"7390":7391,"7391":7392,"7392":7393,"7393":7394,"7394":7395,"7395":7396,"7396":7397,"7397":7398,"7398":7399,"7399":7400,"7400":7401,"7401":7402,"7402":7403,"7403":7404,"7404":7405,"7405":7406,"7406":7407,"7407":7408,"7408":7409,"7409":7410,"7410":7411,"7411":7412,"7412":7413,"7413":7414,"7414":7415,"7415":7416,"7416":7417,"7417":7418,"7418":7419,"7419":7420,"7420":7421,"7421":7422,"7422":7423,"7423":7424,"7424":7425,"7425":7426,"7426":7427,"7427":7428,"7428":7429,"7429":7430,"7430":7431,"7431":7432,"7432":7433,"7433":7434,"7434":7435,"7435":7436,"7436":7437,"7437":7438,"7438":7439,"7439":7440,"7440":7441,"7441":7442,"7442":7443,"7443":7444,"7444":7445,"7445":7446,"7446":7447,"7447":7448,"7448":7449,"7449":7450,"7450":7451,"7451":7452,"7452":7453,"7453":7454,"7454":7455,"7455":7456,"7456":7457,"7457":7458,"7458":7459,"7459":7460,"7460":7461,"7461":7462,"7462":7463,"7463":7464,"7464":7465,"7465":7466,"7466":7467,"7467":7468,"7468":7469,"7469":7470,"7470":7471,"7471":7472,"7472":7473,"7473":7474,"7474":7475,"7475":7476,"7476":7477,"7477":7478,"7478":7479,"7479":7480,"7480":7481,"7481":7482,"7482":7483,"7483":7484,"7484":7485,"7485":7486,"7486":7487,"7487":7488,"7488":7489,"7489":7490,"7490":7491,"7491":7492,"7492":7493,"7493":7494,"7494":7495,"7495":7496,"7496":7497,"7497":7498,"7498":7499,"7499":7500,"7500":7501,"7501":7502,"7502":7503,"7503":7504,"7504":7505,"7505":7506,"7506":7507,"7507":7508,"7508":7509,"7509":7510,"7510":7511,"7511":7512,"7512":7513,"7513":7514,"7514":7515,"7515":7516,"7516":7517,"7517":7518,"7518":7519,"7519":7520,"7520":7521,"7521":7522,"7522":7523,"7523":7524,"7524":7525,"7525":7526,"7526":7527,"7527":7528,"7528":7529,"7529":7530,"7530":7531,"7531":7532,"7532":7533,"7533":7534,"7534":7535,"7535":7536,"7536":7537,"7537":7538,"7538":7539,"7539":7540,"7540":7541,"7541":7542,"7542":7543,"7543":7544,"7544":7545,"7545":7546,"7546":7547,"7547":7548,"7548":7549,"7549":7550,"7550":7551,"7551":7552,"7552":7553,"7553":7554,"7554":7555,"7555":7556,"7556":7557,"7557":7558,"7558":7559,"7559":7560,"7560":7561,"7561":7562,"7562":7563,"7563":7564,"7564":7565,"7565":7566,"7566":7567,"7567":7568,"7568":7569,"7569":7570,"7570":7571,"7571":7572,"7572":7573,"7573":7574,"7574":7575,"7575":7576,"7576":7577,"7577":7578,"7578":7579,"7579":7580,"7580":7581,"7581":7582,"7582":7583,"7583":7584,"7584":7585,"7585":7586,"7586":7587,"7587":7588,"7588":7589,"7589":7590,"7590":7591,"7591":7592,"7592":7593,"7593":7594,"7594":7595,"7595":7596,"7596":7597,"7597":7598,"7598":7599,"7599":7600,"7600":7601,"7601":7602,"7602":7603,"7603":7604,"7604":7605,"7605":7606,"7606":7607,"7607":7608,"7608":7609,"7609":7610,"7610":7611,"7611":7612,"7612":7613,"7613":7614,"7614":7615,"7615":7616,"7616":7617,"7617":7618,"7618":7619,"7619":7620,"7620":7621,"7621":7622,"7622":7623,"7623":7624,"7624":7625,"7625":7626,"7626":7627,"7627":7628,"7628":7629,"7629":7630,"7630":7631,"7631":7632,"7632":7633,"7633":7634,"7634":7635,"7635":7636,"7636":7637,"7637":7638,"7638":7639,"7639":7640,"7640":7641,"7641":7642,"7642":7643,"7643":7644,"7644":7645,"7645":7646,"7646":7647,"7647":7648,"7648":7649,"7649":7650,"7650":7651,"7651":7652,"7652":7653,"7653":7654,"7654":7655,"7655":7656,"7656":7657,"7657":7658,"7658":7659,"7659":7660,"7660":7661,"7661":7662,"7662":7663,"7663":7664,"7664":7665,"7665":7666,"7666":7667,"7667":7668,"7668":7669,"7669":7670,"7670":7671,"7671":7672,"7672":7673,"7673":7674,"7674":7675,"7675":7676,"7676":7677,"7677":7678,"7678":7679,"7679":7680,"7680":7681,"7681":7682,"7682":7683,"7683":7684,"7684":7685,"7685":7686,"7686":7687,"7687":7688,"7688":7689,"7689":7690,"7690":7691,"7691":7692,"7692":7693,"7693":7694,"7694":7695,"7695":7696,"7696":7697,"7697":7698,"7698":7699,"7699":7700,"7700":7701,"7701":7702,"7702":7703,"7703":7704,"7704":7705,"7705":7706,"7706":7707,"7707":7708,"7708":7709,"7709":7710,"7710":7711,"7711":7712,"7712":7713,"7713":7714,"7714":7715,"7715":7716,"7716":7717,"7717":7718,"7718":7719,"7719":7720,"7720":7721,"7721":7722,"7722":7723,"7723":7724,"7724":7725,"7725":7726,"7726":7727,"7727":7728,"7728":7729,"7729":7730,"7730":7731,"7731":7732,"7732":7733,"7733":7734,"7734":7735,"7735":7736,"7736":7737,"7737":7738,"7738":7739,"7739":7740,"7740":7741,"7741":7742,"7742":7743,"7743":7744,"7744":7745,"7745":7746,"7746":7747,"7747":7748,"7748":7749,"7749":7750,"7750":7751,"7751":7752,"7752":7753,"7753":7754,"7754":7755,"7755":7756,"7756":7757,"7757":7758,"7758":7759,"7759":7760,"7760":7761,"7761":7762,"7762":7763,"7763":7764,"7764":7765,"7765":7766,"7766":7767,"7767":7768,"7768":7769,"7769":7770,"7770":7771,"7771":7772,"7772":7773,"7773":7774,"7774":7775,"7775":7776,"7776":7777,"7777":7778,"7778":7779,"7779":7780,"7780":7781,"7781":7782,"7782":7783,"7783":7784,"7784":7785,"7785":7786,"7786":7787,"7787":7788,"7788":7789,"7789":7790,"7790":7791,"7791":7792,"7792":7793,"7793":7794,"7794":7795,"7795":7796,"7796":7797,"7797":7798,"7798":7799,"7799":7800,"7800":7801,"7801":7802,"7802":7803,"7803":7804,"7804":7805,"7805":7806,"7806":7807,"7807":7808,"7808":7809,"7809":7810,"7810":7811,"7811":7812,"7812":7813,"7813":7814,"7814":7815,"7815":7816,"7816":7817,"7817":7818,"7818":7819,"7819":7820,"7820":7821,"7821":7822,"7822":7823,"7823":7824,"7824":7825,"7825":7826,"7826":7827,"7827":7828,"7828":7829,"7829":7830,"7830":7831,"7831":7832,"7832":7833,"7833":7834,"7834":7835,"7835":7836,"7836":7837,"7837":7838,"7838":7839,"7839":7840,"7840":7841,"7841":7842,"7842":7843,"7843":7844,"7844":7845,"7845":7846,"7846":7847,"7847":7848,"7848":7849,"7849":7850,"7850":7851,"7851":7852,"7852":7853,"7853":7854,"7854":7855,"7855":7856,"7856":7857,"7857":7858,"7858":7859,"7859":7860,"7860":7861,"7861":7862,"7862":7863,"7863":7864,"7864":7865,"7865":7866,"7866":7867,"7867":7868,"7868":7869,"7869":7870,"7870":7871,"7871":7872,"7872":7873,"7873":7874,"7874":7875,"7875":7876,"7876":7877,"7877":7878,"7878":7879,"7879":7880,"7880":7881,"7881":7882,"7882":7883,"7883":7884,"7884":7885,"7885":7886,"7886":7887,"7887":7888,"7888":7889,"7889":7890,"7890":7891,"7891":7892,"7892":7893,"7893":7894,"7894":7895,"7895":7896,"7896":7897,"7897":7898,"7898":7899,"7899":7900,"7900":7901,"7901":7902,"7902":7903,"7903":7904,"7904":7905,"7905":7906,"7906":7907,"7907":7908,"7908":7909,"7909":7910,"7910":7911,"7911":7912,"7912":7913,"7913":7914,"7914":7915,"7915":7916,"7916":7917,"7917":7918,"7918":7919,"7919":7920,"7920":7921,"7921":7922,"7922":7923,"7923":7924,"7924":7925,"7925":7926,"7926":7927,"7927":7928,"7928":7929,"7929":7930,"7930":7931,"7931":7932,"7932":7933,"7933":7934,"7934":7935,"7935":7936,"7936":7937,"7937":7938,"7938":7939,"7939":7940,"7940":7941,"7941":7942,"7942":7943,"7943":7944,"7944":7945,"7945":7946,"7946":7947,"7947":7948,"7948":7949,"7949":7950,"7950":7951,"7951":7952,"7952":7953,"7953":7954,"7954":7955,"7955":7956,"7956":7957,"7957":7958,"7958":7959,"7959":7960,"7960":7961,"7961":7962,"7962":7963,"7963":7964,"7964":7965,"7965":7966,"7966":7967,"7967":7968,"7968":7969,"7969":7970,"7970":7971,"7971":7972,"7972":7973,"7973":7974,"7974":7975,"7975":7976,"7976":7977,"7977":7978,"7978":7979,"7979":7980,"7980":7981,"7981":7982,"7982":7983,"7983":7984,"7984":7985,"7985":7986,"7986":7987,"7987":7988,"7988":7989,"7989":7990,"7990":7991,"7991":7992,"7992":7993,"7993":7994,"7994":7995,"7995":7996,"7996":7997,"7997":7998,"7998":7999,"7999":8000,"8000":8001,"8001":8002,"8002":8003,"8003":8004,"8004":8005,"8005":8006,"8006":8007,"8007":8008,"8008":8009,"8009":8010,"8010":8011,"8011":8012,"8012":8013,"8013":8014,"8014":8015,"8015":8016,"8016":8017,"8017":8018,"8018":8019,"8019":8020,"8020":8021,"8021":8022,"8022":8023,"8023":8024,"8024":8025,"8025":8026,"8026":8027,"8027":8028,"8028":8029,"8029":8030,"8030":8031,"8031":8032,"8032":8033,"8033":8034,"8034":8035,"8035":8036,"8036":8037,"8037":8038,"8038":8039,"8039":8040,"8040":8041,"8041":8042,"8042":8043,"8043":8044,"8044":8045,"8045":8046,"8046":8047,"8047":8048,"8048":8049,"8049":8050,"8050":8051,"8051":8052,"8052":8053,"8053":8054,"8054":8055,"8055":8056,"8056":8057,"8057":8058,"8058":8059,"8059":8060,"8060":8061,"8061":8062,"8062":8063,"8063":8064,"8064":8065,"8065":8066,"8066":8067,"8067":8068,"8068":8069,"8069":8070,"8070":8071,"8071":8072,"8072":8073,"8073":8074,"8074":8075,"8075":8076,"8076":8077,"8077":8078,"8078":8079,"8079":8080,"8080":8081,"8081":8082,"8082":8083,"8083":8084,"8084":8085,"8085":8086,"8086":8087,"8087":8088,"8088":8089,"8089":8090,"8090":8091,"8091":8092,"8092":8093,"8093":8094,"8094":8095,"8095":8096,"8096":8097,"8097":8098,"8098":8099,"8099":8100,"8100":8101,"8101":8102,"8102":8103,"8103":8104,"8104":8105,"8105":8106,"8106":8107,"8107":8108,"8108":8109,"8109":8110,"8110":8111,"8111":8112,"8112":8113,"8113":8114,"8114":8115,"8115":8116,"8116":8117,"8117":8118,"8118":8119,"8119":8120,"8120":8121,"8121":8122,"8122":8123,"8123":8124,"8124":8125,"8125":8126,"8126":8127,"8127":8128,"8128":8129,"8129":8130,"8130":8131,"8131":8132,"8132":8133,"8133":8134,"8134":8135,"8135":8136,"8136":8137,"8137":8138,"8138":8139,"8139":8140,"8140":8141,"8141":8142,"8142":8143,"8143":8144,"8144":8145,"8145":8146,"8146":8147,"8147":8148,"8148":8149,"8149":8150,"8150":8151,"8151":8152,"8152":8153,"8153":8154,"8154":8155,"8155":8156,"8156":8157,"8157":8158,"8158":8159,"8159":8160,"8160":8161,"8161":8162,"8162":8163,"8163":8164,"8164":8165,"8165":8166,"8166":8167,"8167":8168,"8168":8169,"8169":8170,"8170":8171,"8171":8172,"8172":8173,"8173":8174,"8174":8175,"8175":8176,"8176":8177,"8177":8178,"8178":8179,"8179":8180,"8180":8181,"8181":8182,"8182":8183,"8183":8184,"8184":8185,"8185":8186,"8186":8187,"8187":8188,"8188":8189,"8189":8190,"8190":8191,"8191":8192,"8192":8193,"8193":8194,"8194":8195,"8195":8196,"8196":8197,"8197":8198,"8198":8199,"8199":8200,"8200":8201,"8201":8202,"8202":8203,"8203":8204,"8204":8205,"8205":8206,"8206":8207,"8207":8208,"8208":8209,"8209":8210,"8210":8211,"8211":8212,"8212":8213,"8213":8214,"8214":8215,"8215":8216,"8216":8217,"8217":8218,"8218":8219,"8219":8220,"8220":8221,"8221":8222,"8222":8223,"8223":8224,"8224":8225,"8225":8226,"8226":8227,"8227":8228,"8228":8229,"8229":8230,"8230":8231,"8231":8232,"8232":8233,"8233":8234,"8234":8235,"8235":8236,"8236":8237,"8237":8238,"8238":8239,"8239":8240,"8240":8241,"8241":8242,"8242":8243,"8243":8244,"8244":8245,"8245":8246,"8246":8247,"8247":8248,"8248":8249,"8249":8250,"8250":8251,"8251":8252,"8252":8253,"8253":8254,"8254":8255,"8255":8256,"8256":8257,"8257":8258,"8258":8259,"8259":8260,"8260":8261,"8261":8262,"8262":8263,"8263":8264,"8264":8265,"8265":8266,"8266":8267,"8267":8268,"8268":8269,"8269":8270,"8270":8271,"8271":8272,"8272":8273,"8273":8274,"8274":8275,"8275":8276,"8276":8277,"8277":8278,"8278":8279,"8279":8280,"8280":8281,"8281":8282,"8282":8283,"8283":8284,"8284":8285,"8285":8286,"8286":8287,"8287":8288,"8288":8289,"8289":8290,"8290":8291,"8291":8292,"8292":8293,"8293":8294,"8294":8295,"8295":8296,"8296":8297,"8297":8298,"8298":8299,"8299":8300,"8300":8301,"8301":8302,"8302":8303,"8303":8304,"8304":8305,"8305":8306,"8306":8307,"8307":8308,"8308":8309,"8309":8310,"8310":8311,"8311":8312,"8312":8313,"8313":8314,"8314":8315,"8315":8316,"8316":8317,"8317":8318,"8318":8319,"8319":8320,"8320":8321,"8321":8322,"8322":8323,"8323":8324,"8324":8325,"8325":8326,"8326":8327,"8327":8328,"8328":8329,"8329":8330,"8330":8331,"8331":8332,"8332":8333,"8333":8334,"8334":8335,"8335":8336,"8336":8337,"8337":8338,"8338":8339,"8339":8340,"8340":8341,"8341":8342,"8342":8343,"8343":8344,"8344":8345,"8345":8346,"8346":8347,"8347":8348,"8348":8349,"8349":8350,"8350":8351,"8351":8352,"8352":8353,"8353":8354,"8354":8355,"8355":8356,"8356":8357,"8357":8358,"8358":8359,"8359":8360,"8360":8361,"8361":8362,"8362":8363,"8363":8364,"8364":8365,"8365":8366,"8366":8367,"8367":8368,"8368":8369,"8369":8370,"8370":8371,"8371":8372,"8372":8373,"8373":8374,"8374":8375,"8375":8376,"8376":8377,"8377":8378,"8378":8379,"8379":8380,"8380":8381,"8381":8382,"8382":8383,"8383":8384,"8384":8385,"8385":8386,"8386":8387,"8387":8388,"8388":8389,"8389":8390,"8390":8391,"8391":8392,"8392":8393,"8393":8394,"8394":8395,"8395":8396,"8396":8397,"8397":8398,"8398":8399,"8399":8400,"8400":8401,"8401":8402,"8402":8403,"8403":8404,"8404":8405,"8405":8406,"8406":8407,"8407":8408,"8408":8409,"8409":8410,"8410":8411,"8411":8412,"8412":8413,"8413":8414,"8414":8415,"8415":8416,"8416":8417,"8417":8418,"8418":8419,"8419":8420,"8420":8421,"8421":8422,"8422":8423,"8423":8424,"8424":8425,"8425":8426,"8426":8427,"8427":8428,"8428":8429,"8429":8430,"8430":8431,"8431":8432,"8432":8433,"8433":8434,"8434":8435,"8435":8436,"8436":8437,"8437":8438,"8438":8439,"8439":8440,"8440":8441,"8441":8442,"8442":8443,"8443":8444,"8444":8445,"8445":8446,"8446":8447,"8447":8448,"8448":8449,"8449":8450,"8450":8451,"8451":8452,"8452":8453,"8453":8454,"8454":8455,"8455":8456,"8456":8457,"8457":8458,"8458":8459,"8459":8460,"8460":8461,"8461":8462,"8462":8463,"8463":8464,"8464":8465,"8465":8466,"8466":8467,"8467":8468,"8468":8469,"8469":8470,"8470":8471,"8471":8472,"8472":8473,"8473":8474,"8474":8475,"8475":8476,"8476":8477,"8477":8478,"8478":8479,"8479":8480,"8480":8481,"8481":8482,"8482":8483,"8483":8484,"8484":8485,"8485":8486,"8486":8487,"8487":8488,"8488":8489,"8489":8490,"8490":8491,"8491":8492,"8492":8493,"8493":8494,"8494":8495,"8495":8496,"8496":8497,"8497":8498,"8498":8499,"8499":8500,"8500":8501,"8501":8502,"8502":8503,"8503":8504,"8504":8505,"8505":8506,"8506":8507,"8507":8508,"8508":8509,"8509":8510,"8510":8511,"8511":8512,"8512":8513,"8513":8514,"8514":8515,"8515":8516,"8516":8517,"8517":8518,"8518":8519,"8519":8520,"8520":8521,"8521":8522,"8522":8523,"8523":8524,"8524":8525,"8525":8526,"8526":8527,"8527":8528,"8528":8529,"8529":8530,"8530":8531,"8531":8532,"8532":8533,"8533":8534,"8534":8535,"8535":8536,"8536":8537,"8537":8538,"8538":8539,"8539":8540,"8540":8541,"8541":8542,"8542":8543,"8543":8544,"8544":8545,"8545":8546,"8546":8547,"8547":8548,"8548":8549,"8549":8550,"8550":8551,"8551":8552,"8552":8553,"8553":8554,"8554":8555,"8555":8556,"8556":8557,"8557":8558,"8558":8559,"8559":8560,"8560":8561,"8561":8562,"8562":8563,"8563":8564,"8564":8565,"8565":8566,"8566":8567,"8567":8568,"8568":8569,"8569":8570,"8570":8571,"8571":8572,"8572":8573,"8573":8574,"8574":8575,"8575":8576,"8576":8577,"8577":8578,"8578":8579,"8579":8580,"8580":8581,"8581":8582,"8582":8583,"8583":8584,"8584":8585,"8585":8586,"8586":8587,"8587":8588,"8588":8589,"8589":8590,"8590":8591,"8591":8592,"8592":8593,"8593":8594,"8594":8595,"8595":8596,"8596":8597,"8597":8598,"8598":8599,"8599":8600,"8600":8601,"8601":8602,"8602":8603,"8603":8604,"8604":8605,"8605":8606,"8606":8607,"8607":8608,"8608":8609,"8609":8610,"8610":8611,"8611":8612,"8612":8613,"8613":8614,"8614":8615,"8615":8616,"8616":8617,"8617":8618,"8618":8619,"8619":8620,"8620":8621,"8621":8622,"8622":8623,"8623":8624,"8624":8625,"8625":8626,"8626":8627,"8627":8628,"8628":8629,"8629":8630,"8630":8631,"8631":8632,"8632":8633,"8633":8634,"8634":8635,"8635":8636,"8636":8637,"8637":8638,"8638":8639,"8639":8640,"8640":8641,"8641":8642,"8642":8643,"8643":8644,"8644":8645,"8645":8646,"8646":8647,"8647":8648,"8648":8649,"8649":8650,"8650":8651,"8651":8652,"8652":8653,"8653":8654,"8654":8655,"8655":8656,"8656":8657,"8657":8658,"8658":8659,"8659":8660,"8660":8661,"8661":8662,"8662":8663,"8663":8664,"8664":8665,"8665":8666,"8666":8667,"8667":8668,"8668":8669,"8669":8670,"8670":8671,"8671":8672,"8672":8673,"8673":8674,"8674":8675,"8675":8676,"8676":8677,"8677":8678,"8678":8679,"8679":8680,"8680":8681,"8681":8682,"8682":8683,"8683":8684,"8684":8685,"8685":8686,"8686":8687,"8687":8688,"8688":8689,"8689":8690,"8690":8691,"8691":8692,"8692":8693,"8693":8694,"8694":8695,"8695":8696,"8696":8697,"8697":8698,"8698":8699,"8699":8700,"8700":8701,"8701":8702,"8702":8703,"8703":8704,"8704":8705,"8705":8706,"8706":8707,"8707":8708,"8708":8709,"8709":8710,"8710":8711,"8711":8712,"8712":8713,"8713":8714,"8714":8715,"8715":8716,"8716":8717,"8717":8718,"8718":8719,"8719":8720,"8720":8721,"8721":8722,"8722":8723,"8723":8724,"8724":8725,"8725":8726,"8726":8727,"8727":8728,"8728":8729,"8729":8730,"8730":8731,"8731":8732,"8732":8733,"8733":8734,"8734":8735,"8735":8736,"8736":8737,"8737":8738,"8738":8739,"8739":8740,"8740":8741,"8741":8742,"8742":8743,"8743":8744,"8744":8745,"8745":8746,"8746":8747,"8747":8748,"8748":8749,"8749":8750,"8750":8751,"8751":8752,"8752":8753,"8753":8754,"8754":8755,"8755":8756,"8756":8757,"8757":8758,"8758":8759,"8759":8760,"8760":8761,"8761":8762,"8762":8763,"8763":8764,"8764":8765,"8765":8766,"8766":8767,"8767":8768,"8768":8769,"8769":8770,"8770":8771,"8771":8772,"8772":8773,"8773":8774,"8774":8775,"8775":8776,"8776":8777,"8777":8778,"8778":8779,"8779":8780,"8780":8781,"8781":8782,"8782":8783,"8783":8784,"8784":8785,"8785":8786,"8786":8787,"8787":8788,"8788":8789,"8789":8790,"8790":8791,"8791":8792,"8792":8793,"8793":8794,"8794":8795,"8795":8796,"8796":8797,"8797":8798,"8798":8799,"8799":8800,"8800":8801,"8801":8802,"8802":8803,"8803":8804,"8804":8805,"8805":8806,"8806":8807,"8807":8808,"8808":8809,"8809":8810,"8810":8811,"8811":8812,"8812":8813,"8813":8814,"8814":8815,"8815":8816,"8816":8817,"8817":8818,"8818":8819,"8819":8820,"8820":8821,"8821":8822,"8822":8823,"8823":8824,"8824":8825,"8825":8826,"8826":8827,"8827":8828,"8828":8829,"8829":8830,"8830":8831,"8831":8832,"8832":8833,"8833":8834,"8834":8835,"8835":8836,"8836":8837,"8837":8838,"8838":8839,"8839":8840,"8840":8841,"8841":8842,"8842":8843,"8843":8844,"8844":8845,"8845":8846,"8846":8847,"8847":8848,"8848":8849,"8849":8850,"8850":8851,"8851":8852,"8852":8853,"8853":8854,"8854":8855,"8855":8856,"8856":8857,"8857":8858,"8858":8859,"8859":8860,"8860":8861,"8861":8862,"8862":8863,"8863":8864,"8864":8865,"8865":8866,"8866":8867,"8867":8868,"8868":8869,"8869":8870,"8870":8871,"8871":8872,"8872":8873,"8873":8874,"8874":8875,"8875":8876,"8876":8877,"8877":8878,"8878":8879,"8879":8880,"8880":8881,"8881":8882,"8882":8883,"8883":8884,"8884":8885,"8885":8886,"8886":8887,"8887":8888,"8888":8889,"8889":8890,"8890":8891,"8891":8892,"8892":8893,"8893":8894,"8894":8895,"8895":8896,"8896":8897,"8897":8898,"8898":8899,"8899":8900,"8900":8901,"8901":8902,"8902":8903,"8903":8904,"8904":8905,"8905":8906,"8906":8907,"8907":8908,"8908":8909,"8909":8910,"8910":8911,"8911":8912,"8912":8913,"8913":8914,"8914":8915,"8915":8916,"8916":8917,"8917":8918,"8918":8919,"8919":8920,"8920":8921,"8921":8922,"8922":8923,"8923":8924,"8924":8925,"8925":8926,"8926":8927,"8927":8928,"8928":8929,"8929":8930,"8930":8931,"8931":8932,"8932":8933,"8933":8934,"8934":8935,"8935":8936,"8936":8937,"8937":8938,"8938":8939,"8939":8940,"8940":8941,"8941":8942,"8942":8943,"8943":8944,"8944":8945,"8945":8946,"8946":8947,"8947":8948,"8948":8949,"8949":8950,"8950":8951,"8951":8952,"8952":8953,"8953":8954,"8954":8955,"8955":8956,"8956":8957,"8957":8958,"8958":8959,"8959":8960,"8960":8961,"8961":8962,"8962":8963,"8963":8964,"8964":8965,"8965":8966,"8966":8967,"8967":8968,"8968":8969,"8969":8970,"8970":8971,"8971":8972,"8972":8973,"8973":8974,"8974":8975,"8975":8976,"8976":8977,"8977":8978,"8978":8979,"8979":8980,"8980":8981,"8981":8982,"8982":8983,"8983":8984,"8984":8985,"8985":8986,"8986":8987,"8987":8988,"8988":8989,"8989":8990,"8990":8991,"8991":8992,"8992":8993,"8993":8994,"8994":8995,"8995":8996,"8996":8997,"8997":8998,"8998":8999,"8999":9000,"9000":9001,"9001":9002,"9002":9003,"9003":9004,"9004":9005,"9005":9006,"9006":9007,"9007":9008,"9008":9009,"9009":9010,"9010":9011,"9011":9012,"9012":9013,"9013":9014,"9014":9015,"9015":9016,"9016":9017,"9017":9018,"9018":9019,"9019":9020,"9020":9021,"9021":9022,"9022":9023,"9023":9024,"9024":9025,"9025":9026,"9026":9027,"9027":9028,"9028":9029,"9029":9030,"9030":9031,"9031":9032,"9032":9033,"9033":9034,"9034":9035,"9035":9036,"9036":9037,"9037":9038,"9038":9039,"9039":9040,"9040":9041,"9041":9042,"9042":9043,"9043":9044,"9044":9045,"9045":9046,"9046":9047,"9047":9048,"9048":9049,"9049":9050,"9050":9051,"9051":9052,"9052":9053,"9053":9054,"9054":9055,"9055":9056,"9056":9057,"9057":9058,"9058":9059,"9059":9060,"9060":9061,"9061":9062,"9062":9063,"9063":9064,"9064":9065,"9065":9066,"9066":9067,"9067":9068,"9068":9069,"9069":9070,"9070":9071,"9071":9072,"9072":9073,"9073":9074,"9074":9075,"9075":9076,"9076":9077,"9077":9078,"9078":9079,"9079":9080,"9080":9081,"9081":9082,"9082":9083,"9083":9084,"9084":9085,"9085":9086,"9086":9087,"9087":9088,"9088":9089,"9089":9090,"9090":9091,"9091":9092,"9092":9093,"9093":9094,"9094":9095,"9095":9096,"9096":9097,"9097":9098,"9098":9099,"9099":9100,"9100":9101,"9101":9102,"9102":9103,"9103":9104,"9104":9105,"9105":9106,"9106":9107,"9107":9108,"9108":9109,"9109":9110,"9110":9111,"9111":9112,"9112":9113,"9113":9114,"9114":9115,"9115":9116,"9116":9117,"9117":9118,"9118":9119,"9119":9120,"9120":9121,"9121":9122,"9122":9123,"9123":9124,"9124":9125,"9125":9126,"9126":9127,"9127":9128,"9128":9129,"9129":9130,"9130":9131,"9131":9132,"9132":9133,"9133":9134,"9134":9135,"9135":9136,"9136":9137,"9137":9138,"9138":9139,"9139":9140,"9140":9141,"9141":9142,"9142":9143,"9143":9144,"9144":9145,"9145":9146,"9146":9147,"9147":9148,"9148":9149,"9149":9150,"9150":9151,"9151":9152,"9152":9153,"9153":9154,"9154":9155,"9155":9156,"9156":9157,"9157":9158,"9158":9159,"9159":9160,"9160":9161,"9161":9162,"9162":9163,"9163":9164,"9164":9165,"9165":9166,"9166":9167,"9167":9168,"9168":9169,"9169":9170,"9170":9171,"9171":9172,"9172":9173,"9173":9174,"9174":9175,"9175":9176,"9176":9177,"9177":9178,"9178":9179,"9179":9180,"9180":9181,"9181":9182,"9182":9183,"9183":9184,"9184":9185,"9185":9186,"9186":9187,"9187":9188,"9188":9189,"9189":9190,"9190":9191,"9191":9192,"9192":9193,"9193":9194,"9194":9195,"9195":9196,"9196":9197,"9197":9198,"9198":9199,"9199":9200,"9200":9201,"9201":9202,"9202":9203,"9203":9204,"9204":9205,"9205":9206,"9206":9207,"9207":9208,"9208":9209,"9209":9210,"9210":9211,"9211":9212,"9212":9213,"9213":9214,"9214":9215,"9215":9216,"9216":9217,"9217":9218,"9218":9219,"9219":9220,"9220":9221,"9221":9222,"9222":9223,"9223":9224,"9224":9225,"9225":9226,"9226":9227,"9227":9228,"9228":9229,"9229":9230,"9230":9231,"9231":9232,"9232":9233,"9233":9234,"9234":9235,"9235":9236,"9236":9237,"9237":9238,"9238":9239,"9239":9240,"9240":9241,"9241":9242,"9242":9243,"9243":9244,"9244":9245,"9245":9246,"9246":9247,"9247":9248,"9248":9249,"9249":9250,"9250":9251,"9251":9252,"9252":9253,"9253":9254,"9254":9255,"9255":9256,"9256":9257,"9257":9258,"9258":9259,"9259":9260,"9260":9261,"9261":9262,"9262":9263,"9263":9264,"9264":9265,"9265":9266,"9266":9267,"9267":9268,"9268":9269,"9269":9270,"9270":9271,"9271":9272,"9272":9273,"9273":9274,"9274":9275,"9275":9276,"9276":9277,"9277":9278,"9278":9279,"9279":9280,"9280":9281,"9281":9282,"9282":9283,"9283":9284,"9284":9285,"9285":9286,"9286":9287,"9287":9288,"9288":9289,"9289":9290,"9290":9291,"9291":9292,"9292":9293,"9293":9294,"9294":9295,"9295":9296,"9296":9297,"9297":9298,"9298":9299,"9299":9300,"9300":9301,"9301":9302,"9302":9303,"9303":9304,"9304":9305,"9305":9306,"9306":9307,"9307":9308,"9308":9309,"9309":9310,"9310":9311,"9311":9312,"9312":9313,"9313":9314,"9314":9315,"9315":9316,"9316":9317,"9317":9318,"9318":9319,"9319":9320,"9320":9321,"9321":9322,"9322":9323,"9323":9324,"9324":9325,"9325":9326,"9326":9327,"9327":9328,"9328":9329,"9329":9330,"9330":9331,"9331":9332,"9332":9333,"9333":9334,"9334":9335,"9335":9336,"9336":9337,"9337":9338,"9338":9339,"9339":9340,"9340":9341,"9341":9342,"9342":9343,"9343":9344,"9344":9345,"9345":9346,"9346":9347,"9347":9348,"9348":9349,"9349":9350,"9350":9351,"9351":9352,"9352":9353,"9353":9354,"9354":9355,"9355":9356,"9356":9357,"9357":9358,"9358":9359,"9359":9360,"9360":9361,"9361":9362,"9362":9363,"9363":9364,"9364":9365,"9365":9366,"9366":9367,"9367":9368,"9368":9369,"9369":9370,"9370":9371,"9371":9372,"9372":9373,"9373":9374,"9374":9375,"9375":9376,"9376":9377,"9377":9378,"9378":9379,"9379":9380,"9380":9381,"9381":9382,"9382":9383,"9383":9384,"9384":9385,"9385":9386,"9386":9387,"9387":9388,"9388":9389,"9389":9390,"9390":9391,"9391":9392,"9392":9393,"9393":9394,"9394":9395,"9395":9396,"9396":9397,"9397":9398,"9398":9399,"9399":9400,"9400":9401,"9401":9402,"9402":9403,"9403":9404,"9404":9405,"9405":9406,"9406":9407,"9407":9408,"9408":9409,"9409":9410,"9410":9411,"9411":9412,"9412":9413,"9413":9414,"9414":9415,"9415":9416,"9416":9417,"9417":9418,"9418":9419,"9419":9420,"9420":9421,"9421":9422,"9422":9423,"9423":9424,"9424":9425,"9425":9426,"9426":9427,"9427":9428,"9428":9429,"9429":9430,"9430":9431,"9431":9432,"9432":9433,"9433":9434,"9434":9435,"9435":9436,"9436":9437,"9437":9438,"9438":9439,"9439":9440,"9440":9441,"9441":9442,"9442":9443,"9443":9444,"9444":9445,"9445":9446,"9446":9447,"9447":9448,"9448":9449,"9449":9450,"9450":9451,"9451":9452,"9452":9453,"9453":9454,"9454":9455,"9455":9456,"9456":9457,"9457":9458,"9458":9459,"9459":9460,"9460":9461,"9461":9462,"9462":9463,"9463":9464,"9464":9465,"9465":9466,"9466":9467,"9467":9468,"9468":9469,"9469":9470,"9470":9471,"9471":9472,"9472":9473,"9473":9474,"9474":9475,"9475":9476,"9476":9477,"9477":9478,"9478":9479,"9479":9480,"9480":9481,"9481":9482,"9482":9483,"9483":9484,"9484":9485,"9485":9486,"9486":9487,"9487":9488,"9488":9489,"9489":9490,"9490":9491,"9491":9492,"9492":9493,"9493":9494,"9494":9495,"9495":9496,"9496":9497,"9497":9498,"9498":9499,"9499":9500,"9500":9501,"9501":9502,"9502":9503,"9503":9504,"9504":9505,"9505":9506,"9506":9507,"9507":9508,"9508":9509,"9509":9510,"9510":9511,"9511":9512,"9512":9513,"9513":9514,"9514":9515,"9515":9516,"9516":9517,"9517":9518,"9518":9519,"9519":9520,"9520":9521,"9521":9522,"9522":9523,"9523":9524,"9524":9525,"9525":9526,"9526":9527,"9527":9528,"9528":9529,"9529":9530,"9530":9531,"9531":9532,"9532":9533,"9533":9534,"9534":9535,"9535":9536,"9536":9537,"9537":9538,"9538":9539,"9539":9540,"9540":9541,"9541":9542,"9542":9543,"9543":9544,"9544":9545,"9545":9546,"9546":9547,"9547":9548,"9548":9549,"9549":9550,"9550":9551,"9551":9552,"9552":9553,"9553":9554,"9554":9555,"9555":9556,"9556":9557,"9557":9558,"9558":9559,"9559":9560,"9560":9561,"9561":9562,"9562":9563,"9563":9564,"9564":9565,"9565":9566,"9566":9567,"9567":9568,"9568":9569,"9569":9570,"9570":9571,"9571":9572,"9572":9573,"9573":9574,"9574":9575,"9575":9576,"9576":9577,"9577":9578,"9578":9579,"9579":9580,"9580":9581,"9581":9582,"9582":9583,"9583":9584,"9584":9585,"9585":9586,"9586":9587,"9587":9588,"9588":9589,"9589":9590,"9590":9591,"9591":9592,"9592":9593,"9593":9594,"9594":9595,"9595":9596,"9596":9597,"9597":9598,"9598":9599,"9599":9600,"9600":9601,"9601":9602,"9602":9603,"9603":9604,"9604":9605,"9605":9606,"9606":9607,"9607":9608,"9608":9609,"9609":9610,"9610":9611,"9611":9612,"9612":9613,"9613":9614,"9614":9615,"9615":9616,"9616":9617,"9617":9618,"9618":9619,"9619":9620,"9620":9621,"9621":9622,"9622":9623,"9623":9624,"9624":9625,"9625":9626,"9626":9627,"9627":9628,"9628":9629,"9629":9630,"9630":9631,"9631":9632,"9632":9633,"9633":9634,"9634":9635,"9635":9636,"9636":9637,"9637":9638,"9638":9639,"9639":9640,"9640":9641,"9641":9642,"9642":9643,"9643":9644,"9644":9645,"9645":9646,"9646":9647,"9647":9648,"9648":9649,"9649":9650,"9650":9651,"9651":9652,"9652":9653,"9653":9654,"9654":9655,"9655":9656,"9656":9657,"9657":9658,"9658":9659,"9659":9660,"9660":9661,"9661":9662,"9662":9663,"9663":9664,"9664":9665,"9665":9666,"9666":9667,"9667":9668,"9668":9669,"9669":9670,"9670":9671,"9671":9672,"9672":9673,"9673":9674,"9674":9675,"9675":9676,"9676":9677,"9677":9678,"9678":9679,"9679":9680,"9680":9681,"9681":9682,"9682":9683,"9683":9684,"9684":9685,"9685":9686,"9686":9687,"9687":9688,"9688":9689,"9689":9690,"9690":9691,"9691":9692,"9692":9693,"9693":9694,"9694":9695,"9695":9696,"9696":9697,"9697":9698,"9698":9699,"9699":9700,"9700":9701,"9701":9702,"9702":9703,"9703":9704,"9704":9705,"9705":9706,"9706":9707,"9707":9708,"9708":9709,"9709":9710,"9710":9711,"9711":9712,"9712":9713,"9713":9714,"9714":9715,"9715":9716,"9716":9717,"9717":9718,"9718":9719,"9719":9720,"9720":9721,"9721":9722,"9722":9723,"9723":9724,"9724":9725,"9725":9726,"9726":9727,"9727":9728,"9728":9729,"9729":9730,"9730":9731,"9731":9732,"9732":9733,"9733":9734,"9734":9735,"9735":9736,"9736":9737,"9737":9738,"9738":9739,"9739":9740,"9740":9741,"9741":9742,"9742":9743,"9743":9744,"9744":9745,"9745":9746,"9746":9747,"9747":9748,"9748":9749,"9749":9750,"9750":9751,"9751":9752,"9752":9753,"9753":9754,"9754":9755,"9755":9756,"9756":9757,"9757":9758,"9758":9759,"9759":9760,"9760":9761,"9761":9762,"9762":9763,"9763":9764,"9764":9765,"9765":9766,"9766":9767,"9767":9768,"9768":9769,"9769":9770,"9770":9771,"9771":9772,"9772":9773,"9773":9774,"9774":9775,"9775":9776,"9776":9777,"9777":9778,"9778":9779,"9779":9780,"9780":9781,"9781":9782,"9782":9783,"9783":9784,"9784":9785,"9785":9786,"9786":9787,"9787":9788,"9788":9789,"9789":9790,"9790":9791,"9791":9792,"9792":9793,"9793":9794,"9794":9795,"9795":9796,"9796":9797,"9797":9798,"9798":9799,"9799":9800,"9800":9801,"9801":9802,"9802":9803,"9803":9804,"9804":9805,"9805":9806,"9806":9807,"9807":9808,"9808":9809,"9809":9810,"9810":9811,"9811":9812,"9812":9813,"9813":9814,"9814":9815,"9815":9816,"9816":9817,"9817":9818,"9818":9819,"9819":9820,"9820":9821,"9821":9822,"9822":9823,"9823":9824,"9824":9825,"9825":9826,"9826":9827,"9827":9828,"9828":9829,"9829":9830,"9830":9831,"9831":9832,"9832":9833,"9833":9834,"9834":9835,"9835":9836,"9836":9837,"9837":9838,"9838":9839,"9839":9840,"9840":9841,"9841":9842,"9842":9843,"9843":9844,"9844":9845,"9845":9846,"9846":9847,"9847":9848,"9848":9849,"9849":9850,"9850":9851,"9851":9852,"9852":9853,"9853":9854,"9854":9855,"9855":9856,"9856":9857,"9857":9858,"9858":9859,"9859":9860,"9860":9861,"9861":9862,"9862":9863,"9863":9864,"9864":9865,"9865":9866,"9866":9867,"9867":9868,"9868":9869,"9869":9870,"9870":9871,"9871":9872,"9872":9873,"9873":9874,"9874":9875,"9875":9876,"9876":9877,"9877":9878,"9878":9879,"9879":9880,"9880":9881,"9881":9882,"9882":9883,"9883":9884,"9884":9885,"9885":9886,"9886":9887,"9887":9888,"9888":9889,"9889":9890,"9890":9891,"9891":9892,"9892":9893,"9893":9894,"9894":9895,"9895":9896,"9896":9897,"9897":9898,"9898":9899,"9899":9900,"9900":9901,"9901":9902,"9902":9903,"9903":9904,"9904":9905,"9905":9906,"9906":9907,"9907":9908,"9908":9909,"9909":9910,"9910":9911,"9911":9912,"9912":9913,"9913":9914,"9914":9915,"9915":9916,"9916":9917,"9917":9918,"9918":9919,"9919":9920,"9920":9921,"9921":9922,"9922":9923,"9923":9924,"9924":9925,"9925":9926,"9926":9927,"9927":9928,"9928":9929,"9929":9930,"9930":9931,"9931":9932,"9932":9933,"9933":9934,"9934":9935,"9935":9936,"9936":9937,"9937":9938,"9938":9939,"9939":9940,"9940":9941,"9941":9942,"9942":9943,"9943":9944,"9944":9945,"9945":9946,"9946":9947,"9947":9948,"9948":9949,"9949":9950,"9950":9951,"9951":9952,"9952":9953,"9953":9954,"9954":9955,"9955":9956,"9956":9957,"9957":9958,"9958":9959,"9959":9960,"9960":9961,"9961":9962,"9962":9963,"9963":9964,"9964":9965,"9965":9966,"9966":9967,"9967":9968,"9968":9969,"9969":9970,"9970":9971,"9971":9972,"9972":9973,"9973":9974,"9974":9975,"9975":9976,"9976":9977,"9977":9978,"9978":9979,"9979":9980,"9980":9981,"9981":9982,"9982":9983,"9983":9984,"9984":9985,"9985":9986,"9986":9987,"9987":9988,"9988":9989,"9989":9990,"9990":9991,"9991":9992,"9992":9993,"9993":9994,"9994":9995,"9995":9996,"9996":9997,"9997":9998,"9998":9999,"9999":10000,"10000":10001,"10001":10002,"10002":10003,"10003":10004,"10004":10005,"10005":10006,"10006":10007,"10007":10008,"10008":10009,"10009":10010,"10010":10011,"10011":10012,"10012":10013,"10013":10014,"10014":10015,"10015":10016,"10016":10017,"10017":10018,"10018":10019,"10019":10020,"10020":10021,"10021":10022,"10022":10023,"10023":10024,"10024":10025,"10025":10026,"10026":10027,"10027":10028,"10028":10029,"10029":10030,"10030":10031,"10031":10032,"10032":10033,"10033":10034,"10034":10035,"10035":10036,"10036":10037,"10037":10038,"10038":10039,"10039":10040,"10040":10041,"10041":10042,"10042":10043,"10043":10044,"10044":10045,"10045":10046,"10046":10047,"10047":10048,"10048":10049,"10049":10050,"10050":10051,"10051":10052,"10052":10053,"10053":10054,"10054":10055,"10055":10056,"10056":10057,"10057":10058,"10058":10059,"10059":10060,"10060":10061,"10061":10062,"10062":10063,"10063":10064,"10064":10065,"10065":10066,"10066":10067,"10067":10068,"10068":10069,"10069":10070,"10070":10071,"10071":10072,"10072":10073,"10073":10074,"10074":10075,"10075":10076,"10076":10077,"10077":10078,"10078":10079,"10079":10080,"10080":10081,"10081":10082,"10082":10083,"10083":10084,"10084":10085,"10085":10086,"10086":10087,"10087":10088,"10088":10089,"10089":10090,"10090":10091,"10091":10092,"10092":10093,"10093":10094,"10094":10095,"10095":10096,"10096":10097,"10097":10098,"10098":10099,"10099":10100,"10100":10101,"10101":10102,"10102":10103,"10103":10104,"10104":10105,"10105":10106,"10106":10107,"10107":10108,"10108":10109,"10109":10110,"10110":10111,"10111":10112,"10112":10113,"10113":10114,"10114":10115,"10115":10116,"10116":10117,"10117":10118,"10118":10119,"10119":10120,"10120":10121,"10121":10122,"10122":10123,"10123":10124,"10124":10125,"10125":10126,"10126":10127,"10127":10128,"10128":10129,"10129":10130,"10130":10131,"10131":10132,"10132":10133,"10133":10134,"10134":10135,"10135":10136,"10136":10137,"10137":10138,"10138":10139,"10139":10140,"10140":10141,"10141":10142,"10142":10143,"10143":10144,"10144":10145,"10145":10146,"10146":10147,"10147":10148,"10148":10149,"10149":10150,"10150":10151,"10151":10152,"10152":10153,"10153":10154,"10154":10155,"10155":10156,"10156":10157,"10157":10158,"10158":10159,"10159":10160,"10160":10161,"10161":10162,"10162":10163,"10163":10164,"10164":10165,"10165":10166,"10166":10167,"10167":10168,"10168":10169,"10169":10170,"10170":10171,"10171":10172,"10172":10173,"10173":10174,"10174":10175,"10175":10176,"10176":10177,"10177":10178,"10178":10179,"10179":10180,"10180":10181,"10181":10182,"10182":10183,"10183":10184,"10184":10185,"10185":10186,"10186":10187,"10187":10188,"10188":10189,"10189":10190,"10190":10191,"10191":10192,"10192":10193,"10193":10194,"10194":10195,"10195":10196,"10196":10197,"10197":10198,"10198":10199,"10199":10200,"10200":10201,"10201":10202,"10202":10203,"10203":10204,"10204":10205,"10205":10206,"10206":10207,"10207":10208,"10208":10209,"10209":10210,"10210":10211,"10211":10212,"10212":10213,"10213":10214,"10214":10215,"10215":10216,"10216":10217,"10217":10218,"10218":10219,"10219":10220,"10220":10221,"10221":10222,"10222":10223,"10223":10224,"10224":10225,"10225":10226,"10226":10227,"10227":10228,"10228":10229,"10229":10230,"10230":10231,"10231":10232,"10232":10233,"10233":10234,"10234":10235,"10235":10236,"10236":10237,"10237":10238,"10238":10239,"10239":10240,"10240":10241,"10241":10242,"10242":10243,"10243":10244,"10244":10245,"10245":10246,"10246":10247,"10247":10248,"10248":10249,"10249":10250,"10250":10251,"10251":10252,"10252":10253,"10253":10254,"10254":10255,"10255":10256,"10256":10257,"10257":10258,"10258":10259,"10259":10260,"10260":10261,"10261":10262,"10262":10263,"10263":10264,"10264":10265,"10265":10266,"10266":10267,"10267":10268,"10268":10269,"10269":10270,"10270":10271,"10271":10272,"10272":10273,"10273":10274,"10274":10275,"10275":10276,"10276":10277,"10277":10278,"10278":10279,"10279":10280,"10280":10281,"10281":10282,"10282":10283,"10283":10284,"10284":10285,"10285":10286,"10286":10287,"10287":10288,"10288":10289,"10289":10290,"10290":10291,"10291":10292,"10292":10293,"10293":10294,"10294":10295,"10295":10296,"10296":10297,"10297":10298,"10298":10299,"10299":10300,"10300":10301,"10301":10302,"10302":10303,"10303":10304,"10304":10305,"10305":10306,"10306":10307,"10307":10308,"10308":10309,"10309":10310,"10310":10311,"10311":10312,"10312":10313,"10313":10314,"10314":10315,"10315":10316,"10316":10317,"10317":10318,"10318":10319,"10319":10320,"10320":10321,"10321":10322,"10322":10323,"10323":10324,"10324":10325,"10325":10326,"10326":10327,"10327":10328,"10328":10329,"10329":10330,"10330":10331,"10331":10332,"10332":10333,"10333":10334,"10334":10335,"10335":10336,"10336":10337,"10337":10338,"10338":10339,"10339":10340,"10340":10341,"10341":10342,"10342":10343,"10343":10344,"10344":10345,"10345":10346,"10346":10347,"10347":10348,"10348":10349,"10349":10350,"10350":10351,"10351":10352,"10352":10353,"10353":10354,"10354":10355,"10355":10356,"10356":10357,"10357":10358,"10358":10359,"10359":10360,"10360":10361,"10361":10362,"10362":10363,"10363":10364,"10364":10365,"10365":10366,"10366":10367,"10367":10368,"10368":10369,"10369":10370,"10370":10371,"10371":10372,"10372":10373,"10373":10374,"10374":10375,"10375":10376,"10376":10377,"10377":10378,"10378":10379,"10379":10380,"10380":10381,"10381":10382,"10382":10383,"10383":10384,"10384":10385,"10385":10386,"10386":10387,"10387":10388,"10388":10389,"10389":10390,"10390":10391,"10391":10392,"10392":10393,"10393":10394,"10394":10395,"10395":10396,"10396":10397,"10397":10398,"10398":10399,"10399":10400,"10400":10401,"10401":10402,"10402":10403,"10403":10404,"10404":10405,"10405":10406,"10406":10407,"10407":10408,"10408":10409,"10409":10410,"10410":10411,"10411":10412,"10412":10413,"10413":10414,"10414":10415,"10415":10416,"10416":10417,"10417":10418,"10418":10419,"10419":10420,"10420":10421,"10421":10422,"10422":10423,"10423":10424,"10424":10425,"10425":10426,"10426":10427,"10427":10428,"10428":10429,"10429":10430,"10430":10431,"10431":10432,"10432":10433,"10433":10434,"10434":10435,"10435":10436,"10436":10437,"10437":10438,"10438":10439,"10439":10440,"10440":10441,"10441":10442,"10442":10443,"10443":10444,"10444":10445,"10445":10446,"10446":10447,"10447":10448,"10448":10449,"10449":10450,"10450":10451,"10451":10452,"10452":10453,"10453":10454,"10454":10455,"10455":10456,"10456":10457,"10457":10458,"10458":10459,"10459":10460,"10460":10461,"10461":10462,"10462":10463,"10463":10464,"10464":10465,"10465":10466,"10466":10467,"10467":10468,"10468":10469,"10469":10470,"10470":10471,"10471":10472,"10472":10473,"10473":10474,"10474":10475,"10475":10476,"10476":10477,"10477":10478,"10478":10479,"10479":10480,"10480":10481,"10481":10482,"10482":10483,"10483":10484,"10484":10485,"10485":10486,"10486":10487,"10487":10488,"10488":10489,"10489":10490,"10490":10491,"10491":10492,"10492":10493,"10493":10494,"10494":10495,"10495":10496,"10496":10497,"10497":10498,"10498":10499,"10499":10500,"10500":10501,"10501":10502,"10502":10503,"10503":10504,"10504":10505,"10505":10506,"10506":10507,"10507":10508,"10508":10509,"10509":10510,"10510":10511,"10511":10512,"10512":10513,"10513":10514,"10514":10515,"10515":10516,"10516":10517,"10517":10518,"10518":10519,"10519":10520,"10520":10521,"10521":10522,"10522":10523,"10523":10524,"10524":10525,"10525":10526,"10526":10527,"10527":10528,"10528":10529,"10529":10530,"10530":10531,"10531":10532,"10532":10533,"10533":10534,"10534":10535,"10535":10536,"10536":10537,"10537":10538,"10538":10539,"10539":10540,"10540":10541,"10541":10542,"10542":10543,"10543":10544,"10544":10545,"10545":10546,"10546":10547,"10547":10548,"10548":10549,"10549":10550,"10550":10551,"10551":10552,"10552":10553,"10553":10554,"10554":10555,"10555":10556,"10556":10557,"10557":10558,"10558":10559,"10559":10560,"10560":10561,"10561":10562,"10562":10563,"10563":10564,"10564":10565,"10565":10566,"10566":10567,"10567":10568,"10568":10569,"10569":10570,"10570":10571,"10571":10572,"10572":10573,"10573":10574,"10574":10575,"10575":10576,"10576":10577,"10577":10578,"10578":10579,"10579":10580,"10580":10581,"10581":10582,"10582":10583,"10583":10584,"10584":10585,"10585":10586,"10586":10587,"10587":10588,"10588":10589,"10589":10590,"10590":10591,"10591":10592,"10592":10593,"10593":10594,"10594":10595,"10595":10596,"10596":10597,"10597":10598,"10598":10599,"10599":10600,"10600":10601,"10601":10602,"10602":10603,"10603":10604,"10604":10605,"10605":10606,"10606":10607,"10607":10608,"10608":10609,"10609":10610,"10610":10611,"10611":10612,"10612":10613,"10613":10614,"10614":10615,"10615":10616,"10616":10617,"10617":10618,"10618":10619,"10619":10620,"10620":10621,"10621":10622,"10622":10623,"10623":10624,"10624":10625,"10625":10626,"10626":10627,"10627":10628,"10628":10629,"10629":10630,"10630":10631,"10631":10632,"10632":10633,"10633":10634,"10634":10635,"10635":10636,"10636":10637,"10637":10638,"10638":10639,"10639":10640,"10640":10641,"10641":10642,"10642":10643,"10643":10644,"10644":10645,"10645":10646,"10646":10647,"10647":10648,"10648":10649,"10649":10650,"10650":10651,"10651":10652,"10652":10653,"10653":10654,"10654":10655,"10655":10656,"10656":10657,"10657":10658,"10658":10659,"10659":10660,"10660":10661,"10661":10662,"10662":10663,"10663":10664,"10664":10665,"10665":10666,"10666":10667,"10667":10668,"10668":10669,"10669":10670,"10670":10671,"10671":10672,"10672":10673,"10673":10674,"10674":10675,"10675":10676,"10676":10677,"10677":10678,"10678":10679,"10679":10680,"10680":10681,"10681":10682,"10682":10683,"10683":10684,"10684":10685,"10685":10686,"10686":10687,"10687":10688,"10688":10689,"10689":10690,"10690":10691,"10691":10692,"10692":10693,"10693":10694,"10694":10695,"10695":10696,"10696":10697,"10697":10698,"10698":10699,"10699":10700,"10700":10701,"10701":10702,"10702":10703,"10703":10704,"10704":10705,"10705":10706,"10706":10707,"10707":10708,"10708":10709,"10709":10710,"10710":10711,"10711":10712,"10712":10713,"10713":10714,"10714":10715,"10715":10716,"10716":10717,"10717":10718,"10718":10719,"10719":10720,"10720":10721,"10721":10722,"10722":10723,"10723":10724,"10724":10725,"10725":10726,"10726":10727,"10727":10728,"10728":10729,"10729":10730,"10730":10731,"10731":10732,"10732":10733,"10733":10734,"10734":10735,"10735":10736,"10736":10737,"10737":10738,"10738":10739,"10739":10740,"10740":10741,"10741":10742,"10742":10743,"10743":10744,"10744":10745,"10745":10746,"10746":10747,"10747":10748,"10748":10749,"10749":10750,"10750":10751,"10751":10752,"10752":10753,"10753":10754,"10754":10755,"10755":10756,"10756":10757,"10757":10758,"10758":10759,"10759":10760,"10760":10761,"10761":10762,"10762":10763,"10763":10764,"10764":10765,"10765":10766,"10766":10767,"10767":10768,"10768":10769,"10769":10770,"10770":10771,"10771":10772,"10772":10773,"10773":10774,"10774":10775,"10775":10776,"10776":10777,"10777":10778,"10778":10779,"10779":10780,"10780":10781,"10781":10782,"10782":10783,"10783":10784,"10784":10785,"10785":10786,"10786":10787,"10787":10788,"10788":10789,"10789":10790,"10790":10791,"10791":10792,"10792":10793,"10793":10794,"10794":10795,"10795":10796,"10796":10797,"10797":10798,"10798":10799,"10799":10800,"10800":10801,"10801":10802,"10802":10803,"10803":10804,"10804":10805,"10805":10806,"10806":10807,"10807":10808,"10808":10809,"10809":10810,"10810":10811,"10811":10812,"10812":10813,"10813":10814,"10814":10815,"10815":10816,"10816":10817,"10817":10818,"10818":10819,"10819":10820,"10820":10821,"10821":10822,"10822":10823,"10823":10824,"10824":10825,"10825":10826,"10826":10827,"10827":10828,"10828":10829,"10829":10830,"10830":10831,"10831":10832,"10832":10833,"10833":10834,"10834":10835,"10835":10836,"10836":10837,"10837":10838,"10838":10839,"10839":10840,"10840":10841,"10841":10842,"10842":10843,"10843":10844,"10844":10845,"10845":10846,"10846":10847,"10847":10848,"10848":10849,"10849":10850,"10850":10851,"10851":10852,"10852":10853,"10853":10854,"10854":10855,"10855":10856,"10856":10857,"10857":10858,"10858":10859,"10859":10860,"10860":10861,"10861":10862,"10862":10863,"10863":10864,"10864":10865,"10865":10866,"10866":10867,"10867":10868,"10868":10869,"10869":10870,"10870":10871,"10871":10872,"10872":10873,"10873":10874,"10874":10875,"10875":10876,"10876":10877,"10877":10878,"10878":10879,"10879":10880,"10880":10881,"10881":10882,"10882":10883,"10883":10884,"10884":10885,"10885":10886,"10886":10887,"10887":10888,"10888":10889,"10889":10890,"10890":10891,"10891":10892,"10892":10893,"10893":10894,"10894":10895,"10895":10896,"10896":10897,"10897":10898,"10898":10899,"10899":10900,"10900":10901,"10901":10902,"10902":10903,"10903":10904,"10904":10905,"10905":10906,"10906":10907,"10907":10908,"10908":10909,"10909":10910,"10910":10911,"10911":10912,"10912":10913,"10913":10914,"10914":10915,"10915":10916,"10916":10917,"10917":10918,"10918":10919,"10919":10920,"10920":10921,"10921":10922,"10922":10923,"10923":10924,"10924":10925,"10925":10926,"10926":10927,"10927":10928,"10928":10929,"10929":10930,"10930":10931,"10931":10932,"10932":10933,"10933":10934,"10934":10935,"10935":10936,"10936":10937,"10937":10938,"10938":10939,"10939":10940,"10940":10941,"10941":10942,"10942":10943,"10943":10944,"10944":10945,"10945":10946,"10946":10947,"10947":10948,"10948":10949,"10949":10950,"10950":10951,"10951":10952,"10952":10953,"10953":10954,"10954":10955,"10955":10956,"10956":10957,"10957":10958,"10958":10959,"10959":10960,"10960":10961,"10961":10962,"10962":10963,"10963":10964,"10964":10965,"10965":10966,"10966":10967,"10967":10968,"10968":10969,"10969":10970,"10970":10971,"10971":10972,"10972":10973,"10973":10974,"10974":10975,"10975":10976,"10976":10977,"10977":10978,"10978":10979,"10979":10980,"10980":10981,"10981":10982,"10982":10983,"10983":10984,"10984":10985,"10985":10986,"10986":10987,"10987":10988,"10988":10989,"10989":10990,"10990":10991,"10991":10992,"10992":10993,"10993":10994,"10994":10995,"10995":10996,"10996":10997,"10997":10998,"10998":10999,"10999":11000,"11000":11001,"11001":11002,"11002":11003,"11003":11004,"11004":11005,"11005":11006,"11006":11007,"11007":11008,"11008":11009,"11009":11010,"11010":11011,"11011":11012,"11012":11013,"11013":11014,"11014":11015,"11015":11016,"11016":11017,"11017":11018,"11018":11019,"11019":11020,"11020":11021,"11021":11022,"11022":11023,"11023":11024,"11024":11025,"11025":11026,"11026":11027,"11027":11028,"11028":11029,"11029":11030,"11030":11031,"11031":11032,"11032":11033,"11033":11034,"11034":11035,"11035":11036,"11036":11037,"11037":11038,"11038":11039,"11039":11040,"11040":11041,"11041":11042,"11042":11043,"11043":11044,"11044":11045,"11045":11046,"11046":11047,"11047":11048,"11048":11049,"11049":11050,"11050":11051,"11051":11052,"11052":11053,"11053":11054,"11054":11055,"11055":11056,"11056":11057,"11057":11058,"11058":11059,"11059":11060,"11060":11061,"11061":11062,"11062":11063,"11063":11064,"11064":11065,"11065":11066,"11066":11067,"11067":11068,"11068":11069,"11069":11070,"11070":11071,"11071":11072,"11072":11073,"11073":11074,"11074":11075,"11075":11076,"11076":11077,"11077":11078,"11078":11079,"11079":11080,"11080":11081,"11081":11082,"11082":11083,"11083":11084,"11084":11085,"11085":11086,"11086":11087,"11087":11088,"11088":11089,"11089":11090,"11090":11091,"11091":11092,"11092":11093,"11093":11094,"11094":11095,"11095":11096,"11096":11097,"11097":11098,"11098":11099,"11099":11100,"11100":11101,"11101":11102,"11102":11103,"11103":11104,"11104":11105,"11105":11106,"11106":11107,"11107":11108,"11108":11109,"11109":11110,"11110":11111,"11111":11112,"11112":11113,"11113":11114,"11114":11115,"11115":11116,"11116":11117,"11117":11118,"11118":11119,"11119":11120,"11120":11121,"11121":11122,"11122":11123,"11123":11124,"11124":11125,"11125":11126,"11126":11127,"11127":11128,"11128":11129,"11129":11130,"11130":11131,"11131":11132,"11132":11133,"11133":11134,"11134":11135,"11135":11136,"11136":11137,"11137":11138,"11138":11139,"11139":11140,"11140":11141,"11141":11142,"11142":11143,"11143":11144,"11144":11145,"11145":11146,"11146":11147,"11147":11148,"11148":11149,"11149":11150,"11150":11151,"11151":11152,"11152":11153,"11153":11154,"11154":11155,"11155":11156,"11156":11157,"11157":11158,"11158":11159,"11159":11160,"11160":11161,"11161":11162,"11162":11163,"11163":11164,"11164":11165,"11165":11166,"11166":11167,"11167":11168,"11168":11169,"11169":11170,"11170":11171,"11171":11172,"11172":11173,"11173":11174,"11174":11175,"11175":11176,"11176":11177,"11177":11178,"11178":11179,"11179":11180,"11180":11181,"11181":11182,"11182":11183,"11183":11184,"11184":11185,"11185":11186,"11186":11187,"11187":11188,"11188":11189,"11189":11190,"11190":11191,"11191":11192,"11192":11193,"11193":11194,"11194":11195,"11195":11196,"11196":11197,"11197":11198,"11198":11199,"11199":11200,"11200":11201,"11201":11202,"11202":11203,"11203":11204,"11204":11205,"11205":11206,"11206":11207,"11207":11208,"11208":11209,"11209":11210,"11210":11211,"11211":11212,"11212":11213,"11213":11214,"11214":11215,"11215":11216,"11216":11217,"11217":11218,"11218":11219,"11219":11220,"11220":11221,"11221":11222,"11222":11223,"11223":11224,"11224":11225,"11225":11226,"11226":11227,"11227":11228,"11228":11229,"11229":11230,"11230":11231,"11231":11232,"11232":11233,"11233":11234,"11234":11235,"11235":11236,"11236":11237,"11237":11238,"11238":11239,"11239":11240,"11240":11241,"11241":11242,"11242":11243,"11243":11244,"11244":11245,"11245":11246,"11246":11247,"11247":11248,"11248":11249,"11249":11250,"11250":11251,"11251":11252,"11252":11253,"11253":11254,"11254":11255,"11255":11256,"11256":11257,"11257":11258,"11258":11259,"11259":11260,"11260":11261,"11261":11262,"11262":11263,"11263":11264,"11264":11265,"11265":11266,"11266":11267,"11267":11268,"11268":11269,"11269":11270,"11270":11271,"11271":11272,"11272":11273,"11273":11274,"11274":11275,"11275":11276,"11276":11277,"11277":11278,"11278":11279,"11279":11280,"11280":11281,"11281":11282,"11282":11283,"11283":11284,"11284":11285,"11285":11286,"11286":11287,"11287":11288,"11288":11289,"11289":11290,"11290":11291,"11291":11292,"11292":11293,"11293":11294,"11294":11295,"11295":11296,"11296":11297,"11297":11298,"11298":11299,"11299":11300,"11300":11301,"11301":11302,"11302":11303,"11303":11304,"11304":11305,"11305":11306,"11306":11307,"11307":11308,"11308":11309,"11309":11310,"11310":11311,"11311":11312,"11312":11313,"11313":11314,"11314":11315,"11315":11316,"11316":11317,"11317":11318,"11318":11319,"11319":11320,"11320":11321,"11321":11322,"11322":11323,"11323":11324,"11324":11325,"11325":11326,"11326":11327,"11327":11328,"11328":11329,"11329":11330,"11330":11331,"11331":11332,"11332":11333,"11333":11334,"11334":11335,"11335":11336,"11336":11337,"11337":11338,"11338":11339,"11339":11340,"11340":11341,"11341":11342,"11342":11343,"11343":11344,"11344":11345,"11345":11346,"11346":11347,"11347":11348,"11348":11349,"11349":11350,"11350":11351,"11351":11352,"11352":11353,"11353":11354,"11354":11355,"11355":11356,"11356":11357,"11357":11358,"11358":11359,"11359":11360,"11360":11361,"11361":11362,"11362":11363,"11363":11364,"11364":11365,"11365":11366,"11366":11367,"11367":11368,"11368":11369,"11369":11370,"11370":11371,"11371":11372,"11372":11373,"11373":11374,"11374":11375,"11375":11376,"11376":11377,"11377":11378,"11378":11379,"11379":11380,"11380":11381,"11381":11382,"11382":11383,"11383":11384,"11384":11385,"11385":11386,"11386":11387,"11387":11388,"11388":11389,"11389":11390,"11390":11391,"11391":11392,"11392":11393,"11393":11394,"11394":11395,"11395":11396,"11396":11397,"11397":11398,"11398":11399,"11399":11400,"11400":11401,"11401":11402,"11402":11403,"11403":11404,"11404":11405,"11405":11406,"11406":11407,"11407":11408,"11408":11409,"11409":11410,"11410":11411,"11411":11412,"11412":11413,"11413":11414,"11414":11415,"11415":11416,"11416":11417,"11417":11418,"11418":11419,"11419":11420,"11420":11421,"11421":11422,"11422":11423,"11423":11424,"11424":11425,"11425":11426,"11426":11427,"11427":11428,"11428":11429,"11429":11430,"11430":11431,"11431":11432,"11432":11433,"11433":11434,"11434":11435,"11435":11436,"11436":11437,"11437":11438,"11438":11439,"11439":11440,"11440":11441,"11441":11442,"11442":11443,"11443":11444,"11444":11445,"11445":11446,"11446":11447,"11447":11448,"11448":11449,"11449":11450,"11450":11451,"11451":11452,"11452":11453,"11453":11454,"11454":11455,"11455":11456,"11456":11457,"11457":11458,"11458":11459,"11459":11460,"11460":11461,"11461":11462,"11462":11463,"11463":11464,"11464":11465,"11465":11466,"11466":11467,"11467":11468,"11468":11469,"11469":11470,"11470":11471,"11471":11472,"11472":11473,"11473":11474,"11474":11475,"11475":11476,"11476":11477,"11477":11478,"11478":11479,"11479":11480,"11480":11481,"11481":11482,"11482":11483,"11483":11484,"11484":11485,"11485":11486,"11486":11487,"11487":11488,"11488":11489,"11489":11490,"11490":11491,"11491":11492,"11492":11493,"11493":11494,"11494":11495,"11495":11496,"11496":11497,"11497":11498,"11498":11499,"11499":11500,"11500":11501,"11501":11502,"11502":11503,"11503":11504,"11504":11505,"11505":11506,"11506":11507,"11507":11508,"11508":11509,"11509":11510,"11510":11511,"11511":11512,"11512":11513,"11513":11514,"11514":11515,"11515":11516,"11516":11517,"11517":11518,"11518":11519,"11519":11520,"11520":11521,"11521":11522,"11522":11523,"11523":11524,"11524":11525,"11525":11526,"11526":11527,"11527":11528,"11528":11529,"11529":11530,"11530":11531,"11531":11532,"11532":11533,"11533":11534,"11534":11535,"11535":11536,"11536":11537,"11537":11538,"11538":11539,"11539":11540,"11540":11541,"11541":11542,"11542":11543,"11543":11544,"11544":11545,"11545":11546,"11546":11547,"11547":11548,"11548":11549,"11549":11550,"11550":11551,"11551":11552,"11552":11553,"11553":11554,"11554":11555,"11555":11556,"11556":11557,"11557":11558,"11558":11559,"11559":11560,"11560":11561,"11561":11562,"11562":11563,"11563":11564,"11564":11565,"11565":11566,"11566":11567,"11567":11568,"11568":11569,"11569":11570,"11570":11571,"11571":11572,"11572":11573,"11573":11574,"11574":11575,"11575":11576,"11576":11577,"11577":11578,"11578":11579,"11579":11580,"11580":11581,"11581":11582,"11582":11583,"11583":11584,"11584":11585,"11585":11586,"11586":11587,"11587":11588,"11588":11589,"11589":11590,"11590":11591,"11591":11592,"11592":11593,"11593":11594,"11594":11595,"11595":11596,"11596":11597,"11597":11598,"11598":11599,"11599":11600,"11600":11601,"11601":11602,"11602":11603,"11603":11604,"11604":11605,"11605":11606,"11606":11607,"11607":11608,"11608":11609,"11609":11610,"11610":11611,"11611":11612,"11612":11613,"11613":11614,"11614":11615,"11615":11616,"11616":11617,"11617":11618,"11618":11619,"11619":11620,"11620":11621,"11621":11622,"11622":11623,"11623":11624,"11624":11625,"11625":11626,"11626":11627,"11627":11628,"11628":11629,"11629":11630,"11630":11631,"11631":11632,"11632":11633,"11633":11634,"11634":11635,"11635":11636,"11636":11637,"11637":11638,"11638":11639,"11639":11640,"11640":11641,"11641":11642,"11642":11643,"11643":11644,"11644":11645,"11645":11646,"11646":11647,"11647":11648,"11648":11649,"11649":11650,"11650":11651,"11651":11652,"11652":11653,"11653":11654,"11654":11655,"11655":11656,"11656":11657,"11657":11658,"11658":11659,"11659":11660,"11660":11661,"11661":11662,"11662":11663,"11663":11664,"11664":11665,"11665":11666,"11666":11667,"11667":11668,"11668":11669,"11669":11670,"11670":11671,"11671":11672,"11672":11673,"11673":11674,"11674":11675,"11675":11676,"11676":11677,"11677":11678,"11678":11679,"11679":11680,"11680":11681,"11681":11682,"11682":11683,"11683":11684,"11684":11685,"11685":11686,"11686":11687,"11687":11688,"11688":11689,"11689":11690,"11690":11691,"11691":11692,"11692":11693,"11693":11694,"11694":11695,"11695":11696,"11696":11697,"11697":11698,"11698":11699,"11699":11700,"11700":11701,"11701":11702,"11702":11703,"11703":11704,"11704":11705,"11705":11706,"11706":11707,"11707":11708,"11708":11709,"11709":11710,"11710":11711,"11711":11712,"11712":11713,"11713":11714,"11714":11715,"11715":11716,"11716":11717,"11717":11718,"11718":11719,"11719":11720,"11720":11721,"11721":11722,"11722":11723,"11723":11724,"11724":11725,"11725":11726,"11726":11727,"11727":11728,"11728":11729,"11729":11730,"11730":11731,"11731":11732,"11732":11733,"11733":11734,"11734":11735,"11735":11736,"11736":11737,"11737":11738,"11738":11739,"11739":11740,"11740":11741,"11741":11742,"11742":11743,"11743":11744,"11744":11745,"11745":11746,"11746":11747,"11747":11748,"11748":11749,"11749":11750,"11750":11751,"11751":11752,"11752":11753,"11753":11754,"11754":11755,"11755":11756,"11756":11757,"11757":11758,"11758":11759,"11759":11760,"11760":11761,"11761":11762,"11762":11763,"11763":11764,"11764":11765,"11765":11766,"11766":11767,"11767":11768,"11768":11769,"11769":11770,"11770":11771,"11771":11772,"11772":11773,"11773":11774,"11774":11775,"11775":11776,"11776":11777,"11777":11778,"11778":11779,"11779":11780,"11780":11781,"11781":11782,"11782":11783,"11783":11784,"11784":11785,"11785":11786,"11786":11787,"11787":11788,"11788":11789,"11789":11790,"11790":11791,"11791":11792,"11792":11793,"11793":11794,"11794":11795,"11795":11796,"11796":11797,"11797":11798,"11798":11799,"11799":11800,"11800":11801,"11801":11802,"11802":11803,"11803":11804,"11804":11805,"11805":11806,"11806":11807,"11807":11808,"11808":11809,"11809":11810,"11810":11811,"11811":11812,"11812":11813,"11813":11814,"11814":11815,"11815":11816,"11816":11817,"11817":11818,"11818":11819,"11819":11820,"11820":11821,"11821":11822,"11822":11823,"11823":11824,"11824":11825,"11825":11826,"11826":11827,"11827":11828,"11828":11829,"11829":11830,"11830":11831,"11831":11832,"11832":11833,"11833":11834,"11834":11835,"11835":11836,"11836":11837,"11837":11838,"11838":11839,"11839":11840,"11840":11841,"11841":11842,"11842":11843,"11843":11844,"11844":11845,"11845":11846,"11846":11847,"11847":11848,"11848":11849,"11849":11850,"11850":11851,"11851":11852,"11852":11853,"11853":11854,"11854":11855,"11855":11856,"11856":11857,"11857":11858,"11858":11859,"11859":11860,"11860":11861,"11861":11862,"11862":11863,"11863":11864,"11864":11865,"11865":11866,"11866":11867,"11867":11868,"11868":11869,"11869":11870,"11870":11871,"11871":11872,"11872":11873,"11873":11874,"11874":11875,"11875":11876,"11876":11877,"11877":11878,"11878":11879,"11879":11880,"11880":11881,"11881":11882,"11882":11883,"11883":11884,"11884":11885,"11885":11886,"11886":11887,"11887":11888,"11888":11889,"11889":11890,"11890":11891,"11891":11892,"11892":11893,"11893":11894,"11894":11895,"11895":11896,"11896":11897,"11897":11898,"11898":11899,"11899":11900,"11900":11901,"11901":11902,"11902":11903,"11903":11904,"11904":11905,"11905":11906,"11906":11907,"11907":11908,"11908":11909,"11909":11910,"11910":11911,"11911":11912,"11912":11913,"11913":11914,"11914":11915,"11915":11916,"11916":11917,"11917":11918,"11918":11919,"11919":11920,"11920":11921,"11921":11922,"11922":11923,"11923":11924,"11924":11925,"11925":11926,"11926":11927,"11927":11928,"11928":11929,"11929":11930,"11930":11931,"11931":11932,"11932":11933,"11933":11934,"11934":11935,"11935":11936,"11936":11937,"11937":11938,"11938":11939,"11939":11940,"11940":11941,"11941":11942,"11942":11943,"11943":11944,"11944":11945,"11945":11946,"11946":11947,"11947":11948,"11948":11949,"11949":11950,"11950":11951,"11951":11952,"11952":11953,"11953":11954,"11954":11955,"11955":11956,"11956":11957,"11957":11958,"11958":11959,"11959":11960,"11960":11961,"11961":11962,"11962":11963,"11963":11964,"11964":11965,"11965":11966,"11966":11967,"11967":11968,"11968":11969,"11969":11970,"11970":11971,"11971":11972,"11972":11973,"11973":11974,"11974":11975,"11975":11976,"11976":11977,"11977":11978,"11978":11979,"11979":11980,"11980":11981,"11981":11982,"11982":11983,"11983":11984,"11984":11985,"11985":11986,"11986":11987,"11987":11988,"11988":11989,"11989":11990,"11990":11991,"11991":11992,"11992":11993,"11993":11994,"11994":11995,"11995":11996,"11996":11997,"11997":11998,"11998":11999,"11999":12000,"12000":12001,"12001":12002,"12002":12003,"12003":12004,"12004":12005,"12005":12006,"12006":12007,"12007":12008,"12008":12009,"12009":12010,"12010":12011,"12011":12012,"12012":12013,"12013":12014,"12014":12015,"12015":12016,"12016":12017,"12017":12018,"12018":12019,"12019":12020,"12020":12021,"12021":12022,"12022":12023,"12023":12024,"12024":12025,"12025":12026,"12026":12027,"12027":12028,"12028":12029,"12029":12030,"12030":12031,"12031":12032,"12032":12033,"12033":12034,"12034":12035,"12035":12036,"12036":12037,"12037":12038,"12038":12039,"12039":12040,"12040":12041,"12041":12042,"12042":12043,"12043":12044,"12044":12045,"12045":12046,"12046":12047,"12047":12048,"12048":12049,"12049":12050,"12050":12051,"12051":12052,"12052":12053,"12053":12054,"12054":12055,"12055":12056,"12056":12057,"12057":12058,"12058":12059,"12059":12060,"12060":12061,"12061":12062,"12062":12063,"12063":12064,"12064":12065,"12065":12066,"12066":12067,"12067":12068,"12068":12069,"12069":12070,"12070":12071,"12071":12072,"12072":12073,"12073":12074,"12074":12075,"12075":12076,"12076":12077,"12077":12078,"12078":12079,"12079":12080,"12080":12081,"12081":12082,"12082":12083,"12083":12084,"12084":12085,"12085":12086,"12086":12087,"12087":12088,"12088":12089,"12089":12090,"12090":12091,"12091":12092,"12092":12093,"12093":12094,"12094":12095,"12095":12096,"12096":12097,"12097":12098,"12098":12099,"12099":12100,"12100":12101,"12101":12102,"12102":12103,"12103":12104,"12104":12105,"12105":12106,"12106":12107,"12107":12108,"12108":12109,"12109":12110,"12110":12111,"12111":12112,"12112":12113,"12113":12114,"12114":12115,"12115":12116,"12116":12117,"12117":12118,"12118":12119,"12119":12120,"12120":12121,"12121":12122,"12122":12123,"12123":12124,"12124":12125,"12125":12126,"12126":12127,"12127":12128,"12128":12129,"12129":12130,"12130":12131,"12131":12132,"12132":12133,"12133":12134,"12134":12135,"12135":12136,"12136":12137,"12137":12138,"12138":12139,"12139":12140,"12140":12141,"12141":12142,"12142":12143,"12143":12144,"12144":12145,"12145":12146,"12146":12147,"12147":12148,"12148":12149,"12149":12150,"12150":12151,"12151":12152,"12152":12153,"12153":12154,"12154":12155,"12155":12156,"12156":12157,"12157":12158,"12158":12159,"12159":12160,"12160":12161,"12161":12162,"12162":12163,"12163":12164,"12164":12165,"12165":12166,"12166":12167,"12167":12168,"12168":12169,"12169":12170,"12170":12171,"12171":12172,"12172":12173,"12173":12174,"12174":12175,"12175":12176,"12176":12177,"12177":12178,"12178":12179,"12179":12180,"12180":12181,"12181":12182,"12182":12183,"12183":12184,"12184":12185,"12185":12186,"12186":12187,"12187":12188,"12188":12189,"12189":12190,"12190":12191,"12191":12192,"12192":12193,"12193":12194,"12194":12195,"12195":12196,"12196":12197,"12197":12198,"12198":12199,"12199":12200,"12200":12201,"12201":12202,"12202":12203,"12203":12204,"12204":12205,"12205":12206,"12206":12207,"12207":12208,"12208":12209,"12209":12210,"12210":12211,"12211":12212,"12212":12213,"12213":12214,"12214":12215,"12215":12216,"12216":12217,"12217":12218,"12218":12219,"12219":12220,"12220":12221,"12221":12222,"12222":12223,"12223":12224,"12224":12225,"12225":12226,"12226":12227,"12227":12228,"12228":12229,"12229":12230,"12230":12231,"12231":12232,"12232":12233,"12233":12234,"12234":12235,"12235":12236,"12236":12237,"12237":12238,"12238":12239,"12239":12240,"12240":12241,"12241":12242,"12242":12243,"12243":12244,"12244":12245,"12245":12246,"12246":12247,"12247":12248,"12248":12249,"12249":12250,"12250":12251,"12251":12252,"12252":12253,"12253":12254,"12254":12255,"12255":12256,"12256":12257,"12257":12258,"12258":12259,"12259":12260,"12260":12261,"12261":12262,"12262":12263,"12263":12264,"12264":12265,"12265":12266,"12266":12267,"12267":12268,"12268":12269,"12269":12270,"12270":12271,"12271":12272,"12272":12273,"12273":12274,"12274":12275,"12275":12276,"12276":12277,"12277":12278,"12278":12279,"12279":12280,"12280":12281,"12281":12282,"12282":12283,"12283":12284,"12284":12285,"12285":12286,"12286":12287,"12287":12288,"12288":12289,"12289":12290,"12290":12291,"12291":12292,"12292":12293,"12293":12294,"12294":12295,"12295":12296,"12296":12297,"12297":12298,"12298":12299,"12299":12300,"12300":12301,"12301":12302,"12302":12303,"12303":12304,"12304":12305,"12305":12306,"12306":12307,"12307":12308,"12308":12309,"12309":12310,"12310":12311,"12311":12312,"12312":12313,"12313":12314,"12314":12315,"12315":12316,"12316":12317,"12317":12318,"12318":12319,"12319":12320,"12320":12321,"12321":12322,"12322":12323,"12323":12324,"12324":12325,"12325":12326,"12326":12327,"12327":12328,"12328":12329,"12329":12330,"12330":12331,"12331":12332,"12332":12333,"12333":12334,"12334":12335,"12335":12336,"12336":12337,"12337":12338,"12338":12339,"12339":12340,"12340":12341,"12341":12342,"12342":12343,"12343":12344,"12344":12345,"12345":12346,"12346":12347,"12347":12348,"12348":12349,"12349":12350,"12350":12351,"12351":12352,"12352":12353,"12353":12354,"12354":12355,"12355":12356,"12356":12357,"12357":12358,"12358":12359,"12359":12360,"12360":12361,"12361":12362,"12362":12363,"12363":12364,"12364":12365,"12365":12366,"12366":12367,"12367":12368,"12368":12369,"12369":12370,"12370":12371,"12371":12372,"12372":12373,"12373":12374,"12374":12375,"12375":12376,"12376":12377,"12377":12378,"12378":12379,"12379":12380,"12380":12381,"12381":12382,"12382":12383,"12383":12384,"12384":12385,"12385":12386,"12386":12387,"12387":12388,"12388":12389,"12389":12390,"12390":12391,"12391":12392,"12392":12393,"12393":12394,"12394":12395,"12395":12396,"12396":12397,"12397":12398,"12398":12399,"12399":12400,"12400":12401,"12401":12402,"12402":12403,"12403":12404,"12404":12405,"12405":12406,"12406":12407,"12407":12408,"12408":12409,"12409":12410,"12410":12411,"12411":12412,"12412":12413,"12413":12414,"12414":12415,"12415":12416,"12416":12417,"12417":12418,"12418":12419,"12419":12420,"12420":12421,"12421":12422,"12422":12423,"12423":12424,"12424":12425,"12425":12426,"12426":12427,"12427":12428,"12428":12429,"12429":12430,"12430":12431,"12431":12432,"12432":12433,"12433":12434,"12434":12435,"12435":12436,"12436":12437,"12437":12438,"12438":12439,"12439":12440,"12440":12441,"12441":12442,"12442":12443,"12443":12444,"12444":12445,"12445":12446,"12446":12447,"12447":12448,"12448":12449,"12449":12450,"12450":12451,"12451":12452,"12452":12453,"12453":12454,"12454":12455,"12455":12456,"12456":12457,"12457":12458,"12458":12459,"12459":12460,"12460":12461,"12461":12462,"12462":12463,"12463":12464,"12464":12465,"12465":12466,"12466":12467,"12467":12468,"12468":12469,"12469":12470,"12470":12471,"12471":12472,"12472":12473,"12473":12474,"12474":12475,"12475":12476,"12476":12477,"12477":12478,"12478":12479,"12479":12480,"12480":12481,"12481":12482,"12482":12483,"12483":12484,"12484":12485,"12485":12486,"12486":12487,"12487":12488,"12488":12489,"12489":12490,"12490":12491,"12491":12492,"12492":12493,"12493":12494,"12494":12495,"12495":12496,"12496":12497,"12497":12498,"12498":12499,"12499":12500,"12500":12501,"12501":12502,"12502":12503,"12503":12504,"12504":12505,"12505":12506,"12506":12507,"12507":12508,"12508":12509,"12509":12510,"12510":12511,"12511":12512,"12512":12513,"12513":12514,"12514":12515,"12515":12516,"12516":12517,"12517":12518,"12518":12519,"12519":12520,"12520":12521,"12521":12522,"12522":12523,"12523":12524,"12524":12525,"12525":12526,"12526":12527,"12527":12528,"12528":12529,"12529":12530,"12530":12531,"12531":12532,"12532":12533,"12533":12534,"12534":12535,"12535":12536,"12536":12537,"12537":12538,"12538":12539,"12539":12540,"12540":12541,"12541":12542,"12542":12543,"12543":12544,"12544":12545,"12545":12546,"12546":12547,"12547":12548,"12548":12549,"12549":12550,"12550":12551,"12551":12552,"12552":12553,"12553":12554,"12554":12555,"12555":12556,"12556":12557,"12557":12558,"12558":12559,"12559":12560,"12560":12561,"12561":12562,"12562":12563,"12563":12564,"12564":12565,"12565":12566,"12566":12567,"12567":12568,"12568":12569,"12569":12570,"12570":12571,"12571":12572,"12572":12573,"12573":12574,"12574":12575,"12575":12576,"12576":12577,"12577":12578,"12578":12579,"12579":12580,"12580":12581,"12581":12582,"12582":12583,"12583":12584,"12584":12585,"12585":12586,"12586":12587,"12587":12588,"12588":12589,"12589":12590,"12590":12591,"12591":12592,"12592":12593,"12593":12594,"12594":12595,"12595":12596,"12596":12597,"12597":12598,"12598":12599,"12599":12600,"12600":12601,"12601":12602,"12602":12603,"12603":12604,"12604":12605,"12605":12606,"12606":12607,"12607":12608,"12608":12609,"12609":12610,"12610":12611,"12611":12612,"12612":12613,"12613":12614,"12614":12615,"12615":12616,"12616":12617,"12617":12618,"12618":12619,"12619":12620,"12620":12621,"12621":12622,"12622":12623,"12623":12624,"12624":12625,"12625":12626,"12626":12627,"12627":12628,"12628":12629,"12629":12630,"12630":12631,"12631":12632,"12632":12633,"12633":12634,"12634":12635,"12635":12636,"12636":12637,"12637":12638,"12638":12639,"12639":12640,"12640":12641,"12641":12642,"12642":12643,"12643":12644,"12644":12645,"12645":12646,"12646":12647,"12647":12648,"12648":12649,"12649":12650,"12650":12651,"12651":12652,"12652":12653,"12653":12654,"12654":12655,"12655":12656,"12656":12657,"12657":12658,"12658":12659,"12659":12660,"12660":12661,"12661":12662,"12662":12663,"12663":12664,"12664":12665,"12665":12666,"12666":12667,"12667":12668,"12668":12669,"12669":12670,"12670":12671,"12671":12672,"12672":12673,"12673":12674,"12674":12675,"12675":12676,"12676":12677,"12677":12678,"12678":12679,"12679":12680,"12680":12681,"12681":12682,"12682":12683,"12683":12684,"12684":12685,"12685":12686,"12686":12687,"12687":12688,"12688":12689,"12689":12690,"12690":12691,"12691":12692,"12692":12693,"12693":12694,"12694":12695,"12695":12696,"12696":12697,"12697":12698,"12698":12699,"12699":12700,"12700":12701,"12701":12702,"12702":12703,"12703":12704,"12704":12705,"12705":12706,"12706":12707,"12707":12708,"12708":12709,"12709":12710,"12710":12711,"12711":12712,"12712":12713,"12713":12714,"12714":12715,"12715":12716,"12716":12717,"12717":12718,"12718":12719,"12719":12720,"12720":12721,"12721":12722,"12722":12723,"12723":12724,"12724":12725,"12725":12726,"12726":12727,"12727":12728,"12728":12729,"12729":12730,"12730":12731,"12731":12732,"12732":12733,"12733":12734,"12734":12735,"12735":12736,"12736":12737,"12737":12738,"12738":12739,"12739":12740,"12740":12741,"12741":12742,"12742":12743,"12743":12744,"12744":12745,"12745":12746,"12746":12747,"12747":12748,"12748":12749,"12749":12750,"12750":12751,"12751":12752,"12752":12753,"12753":12754,"12754":12755,"12755":12756,"12756":12757,"12757":12758,"12758":12759,"12759":12760,"12760":12761,"12761":12762,"12762":12763,"12763":12764,"12764":12765,"12765":12766,"12766":12767,"12767":12768,"12768":12769,"12769":12770,"12770":12771,"12771":12772,"12772":12773,"12773":12774,"12774":12775,"12775":12776,"12776":12777,"12777":12778,"12778":12779,"12779":12780,"12780":12781,"12781":12782,"12782":12783,"12783":12784,"12784":12785,"12785":12786,"12786":12787,"12787":12788,"12788":12789,"12789":12790,"12790":12791,"12791":12792,"12792":12793,"12793":12794,"12794":12795,"12795":12796,"12796":12797,"12797":12798,"12798":12799,"12799":12800,"12800":12801,"12801":12802,"12802":12803,"12803":12804,"12804":12805,"12805":12806,"12806":12807,"12807":12808,"12808":12809,"12809":12810,"12810":12811,"12811":12812,"12812":12813,"12813":12814,"12814":12815,"12815":12816,"12816":12817,"12817":12818,"12818":12819,"12819":12820,"12820":12821,"12821":12822,"12822":12823,"12823":12824,"12824":12825,"12825":12826,"12826":12827,"12827":12828,"12828":12829,"12829":12830,"12830":12831,"12831":12832,"12832":12833,"12833":12834,"12834":12835,"12835":12836,"12836":12837,"12837":12838,"12838":12839,"12839":12840,"12840":12841,"12841":12842,"12842":12843,"12843":12844,"12844":12845,"12845":12846,"12846":12847,"12847":12848,"12848":12849,"12849":12850,"12850":12851,"12851":12852,"12852":12853,"12853":12854,"12854":12855,"12855":12856,"12856":12857,"12857":12858,"12858":12859,"12859":12860,"12860":12861,"12861":12862,"12862":12863,"12863":12864,"12864":12865,"12865":12866,"12866":12867,"12867":12868,"12868":12869,"12869":12870,"12870":12871,"12871":12872,"12872":12873,"12873":12874,"12874":12875,"12875":12876,"12876":12877,"12877":12878,"12878":12879,"12879":12880,"12880":12881,"12881":12882,"12882":12883,"12883":12884,"12884":12885,"12885":12886,"12886":12887,"12887":12888,"12888":12889,"12889":12890,"12890":12891,"12891":12892,"12892":12893,"12893":12894,"12894":12895,"12895":12896,"12896":12897,"12897":12898,"12898":12899,"12899":12900,"12900":12901,"12901":12902,"12902":12903,"12903":12904,"12904":12905,"12905":12906,"12906":12907,"12907":12908,"12908":12909,"12909":12910,"12910":12911,"12911":12912,"12912":12913,"12913":12914,"12914":12915,"12915":12916,"12916":12917,"12917":12918,"12918":12919,"12919":12920,"12920":12921,"12921":12922,"12922":12923,"12923":12924,"12924":12925,"12925":12926,"12926":12927,"12927":12928,"12928":12929,"12929":12930,"12930":12931,"12931":12932,"12932":12933,"12933":12934,"12934":12935,"12935":12936,"12936":12937,"12937":12938,"12938":12939,"12939":12940,"12940":12941,"12941":12942,"12942":12943,"12943":12944,"12944":12945,"12945":12946,"12946":12947,"12947":12948,"12948":12949,"12949":12950,"12950":12951,"12951":12952,"12952":12953,"12953":12954,"12954":12955,"12955":12956,"12956":12957,"12957":12958,"12958":12959,"12959":12960,"12960":12961,"12961":12962,"12962":12963,"12963":12964,"12964":12965,"12965":12966,"12966":12967,"12967":12968,"12968":12969,"12969":12970,"12970":12971,"12971":12972,"12972":12973,"12973":12974,"12974":12975,"12975":12976,"12976":12977,"12977":12978,"12978":12979,"12979":12980,"12980":12981,"12981":12982,"12982":12983,"12983":12984,"12984":12985,"12985":12986,"12986":12987,"12987":12988,"12988":12989,"12989":12990,"12990":12991,"12991":12992,"12992":12993,"12993":12994,"12994":12995,"12995":12996,"12996":12997,"12997":12998,"12998":12999,"12999":13000,"13000":13001,"13001":13002,"13002":13003,"13003":13004,"13004":13005,"13005":13006,"13006":13007,"13007":13008,"13008":13009,"13009":13010,"13010":13011,"13011":13012,"13012":13013,"13013":13014,"13014":13015,"13015":13016,"13016":13017,"13017":13018,"13018":13019,"13019":13020,"13020":13021,"13021":13022,"13022":13023,"13023":13024,"13024":13025,"13025":13026,"13026":13027,"13027":13028,"13028":13029,"13029":13030,"13030":13031,"13031":13032,"13032":13033,"13033":13034,"13034":13035,"13035":13036,"13036":13037,"13037":13038,"13038":13039,"13039":13040,"13040":13041,"13041":13042,"13042":13043,"13043":13044,"13044":13045,"13045":13046,"13046":13047,"13047":13048,"13048":13049,"13049":13050,"13050":13051,"13051":13052,"13052":13053,"13053":13054,"13054":13055,"13055":13056,"13056":13057,"13057":13058,"13058":13059,"13059":13060,"13060":13061,"13061":13062,"13062":13063,"13063":13064,"13064":13065,"13065":13066,"13066":13067,"13067":13068,"13068":13069,"13069":13070,"13070":13071,"13071":13072,"13072":13073,"13073":13074,"13074":13075,"13075":13076,"13076":13077,"13077":13078,"13078":13079,"13079":13080,"13080":13081,"13081":13082,"13082":13083,"13083":13084,"13084":13085,"13085":13086,"13086":13087,"13087":13088,"13088":13089,"13089":13090,"13090":13091,"13091":13092,"13092":13093,"13093":13094,"13094":13095,"13095":13096,"13096":13097,"13097":13098,"13098":13099,"13099":13100,"13100":13101,"13101":13102,"13102":13103,"13103":13104,"13104":13105,"13105":13106,"13106":13107,"13107":13108,"13108":13109,"13109":13110,"13110":13111,"13111":13112,"13112":13113,"13113":13114,"13114":13115,"13115":13116,"13116":13117,"13117":13118,"13118":13119,"13119":13120,"13120":13121,"13121":13122,"13122":13123,"13123":13124,"13124":13125,"13125":13126,"13126":13127,"13127":13128,"13128":13129,"13129":13130,"13130":13131,"13131":13132,"13132":13133,"13133":13134,"13134":13135,"13135":13136,"13136":13137,"13137":13138,"13138":13139,"13139":13140,"13140":13141,"13141":13142,"13142":13143,"13143":13144,"13144":13145,"13145":13146,"13146":13147,"13147":13148,"13148":13149,"13149":13150,"13150":13151,"13151":13152,"13152":13153,"13153":13154,"13154":13155,"13155":13156,"13156":13157,"13157":13158,"13158":13159,"13159":13160,"13160":13161,"13161":13162,"13162":13163,"13163":13164,"13164":13165,"13165":13166,"13166":13167,"13167":13168,"13168":13169,"13169":13170,"13170":13171,"13171":13172,"13172":13173,"13173":13174,"13174":13175,"13175":13176,"13176":13177,"13177":13178,"13178":13179,"13179":13180,"13180":13181,"13181":13182,"13182":13183,"13183":13184,"13184":13185,"13185":13186,"13186":13187,"13187":13188,"13188":13189,"13189":13190,"13190":13191,"13191":13192,"13192":13193,"13193":13194,"13194":13195,"13195":13196,"13196":13197,"13197":13198,"13198":13199,"13199":13200,"13200":13201,"13201":13202,"13202":13203,"13203":13204,"13204":13205,"13205":13206,"13206":13207,"13207":13208,"13208":13209,"13209":13210,"13210":13211,"13211":13212,"13212":13213,"13213":13214,"13214":13215,"13215":13216,"13216":13217,"13217":13218,"13218":13219,"13219":13220,"13220":13221,"13221":13222,"13222":13223,"13223":13224,"13224":13225,"13225":13226,"13226":13227,"13227":13228,"13228":13229,"13229":13230,"13230":13231,"13231":13232,"13232":13233,"13233":13234,"13234":13235,"13235":13236,"13236":13237,"13237":13238,"13238":13239,"13239":13240,"13240":13241,"13241":13242,"13242":13243,"13243":13244,"13244":13245,"13245":13246,"13246":13247,"13247":13248,"13248":13249,"13249":13250,"13250":13251,"13251":13252,"13252":13253,"13253":13254,"13254":13255,"13255":13256,"13256":13257,"13257":13258,"13258":13259,"13259":13260,"13260":13261,"13261":13262,"13262":13263,"13263":13264,"13264":13265,"13265":13266,"13266":13267,"13267":13268,"13268":13269,"13269":13270,"13270":13271,"13271":13272,"13272":13273,"13273":13274,"13274":13275,"13275":13276,"13276":13277,"13277":13278,"13278":13279,"13279":13280,"13280":13281,"13281":13282,"13282":13283,"13283":13284,"13284":13285,"13285":13286,"13286":13287,"13287":13288,"13288":13289,"13289":13290,"13290":13291,"13291":13292,"13292":13293,"13293":13294,"13294":13295,"13295":13296,"13296":13297,"13297":13298,"13298":13299,"13299":13300,"13300":13301,"13301":13302,"13302":13303,"13303":13304,"13304":13305,"13305":13306,"13306":13307,"13307":13308,"13308":13309,"13309":13310,"13310":13311,"13311":13312,"13312":13313,"13313":13314,"13314":13315,"13315":13316,"13316":13317,"13317":13318,"13318":13319,"13319":13320,"13320":13321,"13321":13322,"13322":13323,"13323":13324,"13324":13325,"13325":13326,"13326":13327,"13327":13328,"13328":13329,"13329":13330,"13330":13331,"13331":13332,"13332":13333,"13333":13334,"13334":13335,"13335":13336,"13336":13337,"13337":13338,"13338":13339,"13339":13340,"13340":13341,"13341":13342,"13342":13343,"13343":13344,"13344":13345,"13345":13346,"13346":13347,"13347":13348,"13348":13349,"13349":13350,"13350":13351,"13351":13352,"13352":13353,"13353":13354,"13354":13355,"13355":13356,"13356":13357,"13357":13358,"13358":13359,"13359":13360,"13360":13361,"13361":13362,"13362":13363,"13363":13364,"13364":13365,"13365":13366,"13366":13367,"13367":13368,"13368":13369,"13369":13370,"13370":13371,"13371":13372,"13372":13373,"13373":13374,"13374":13375,"13375":13376,"13376":13377,"13377":13378,"13378":13379,"13379":13380,"13380":13381,"13381":13382,"13382":13383,"13383":13384,"13384":13385,"13385":13386,"13386":13387,"13387":13388,"13388":13389,"13389":13390,"13390":13391,"13391":13392,"13392":13393,"13393":13394,"13394":13395,"13395":13396,"13396":13397,"13397":13398,"13398":13399,"13399":13400,"13400":13401,"13401":13402,"13402":13403,"13403":13404,"13404":13405,"13405":13406,"13406":13407,"13407":13408,"13408":13409,"13409":13410,"13410":13411,"13411":13412,"13412":13413,"13413":13414,"13414":13415,"13415":13416,"13416":13417,"13417":13418,"13418":13419,"13419":13420,"13420":13421,"13421":13422,"13422":13423,"13423":13424,"13424":13425,"13425":13426,"13426":13427,"13427":13428,"13428":13429,"13429":13430,"13430":13431,"13431":13432,"13432":13433,"13433":13434,"13434":13435,"13435":13436,"13436":13437,"13437":13438,"13438":13439,"13439":13440,"13440":13441,"13441":13442,"13442":13443,"13443":13444,"13444":13445,"13445":13446,"13446":13447,"13447":13448,"13448":13449,"13449":13450,"13450":13451,"13451":13452,"13452":13453,"13453":13454,"13454":13455,"13455":13456,"13456":13457,"13457":13458,"13458":13459,"13459":13460,"13460":13461,"13461":13462,"13462":13463,"13463":13464,"13464":13465,"13465":13466,"13466":13467,"13467":13468,"13468":13469,"13469":13470,"13470":13471,"13471":13472,"13472":13473,"13473":13474,"13474":13475,"13475":13476,"13476":13477,"13477":13478,"13478":13479,"13479":13480,"13480":13481,"13481":13482,"13482":13483,"13483":13484,"13484":13485,"13485":13486,"13486":13487,"13487":13488,"13488":13489,"13489":13490,"13490":13491,"13491":13492,"13492":13493,"13493":13494,"13494":13495,"13495":13496,"13496":13497,"13497":13498,"13498":13499,"13499":13500,"13500":13501,"13501":13502,"13502":13503,"13503":13504,"13504":13505,"13505":13506,"13506":13507,"13507":13508,"13508":13509,"13509":13510,"13510":13511,"13511":13512,"13512":13513,"13513":13514,"13514":13515,"13515":13516,"13516":13517,"13517":13518,"13518":13519,"13519":13520,"13520":13521,"13521":13522,"13522":13523,"13523":13524,"13524":13525,"13525":13526,"13526":13527,"13527":13528,"13528":13529,"13529":13530,"13530":13531,"13531":13532,"13532":13533,"13533":13534,"13534":13535,"13535":13536,"13536":13537,"13537":13538,"13538":13539,"13539":13540,"13540":13541,"13541":13542,"13542":13543,"13543":13544,"13544":13545,"13545":13546,"13546":13547,"13547":13548,"13548":13549,"13549":13550,"13550":13551,"13551":13552,"13552":13553,"13553":13554,"13554":13555,"13555":13556,"13556":13557,"13557":13558,"13558":13559,"13559":13560,"13560":13561,"13561":13562,"13562":13563,"13563":13564,"13564":13565,"13565":13566,"13566":13567,"13567":13568,"13568":13569,"13569":13570,"13570":13571,"13571":13572,"13572":13573,"13573":13574,"13574":13575,"13575":13576,"13576":13577,"13577":13578,"13578":13579,"13579":13580,"13580":13581,"13581":13582,"13582":13583,"13583":13584,"13584":13585,"13585":13586,"13586":13587,"13587":13588,"13588":13589,"13589":13590,"13590":13591,"13591":13592,"13592":13593,"13593":13594,"13594":13595,"13595":13596,"13596":13597,"13597":13598,"13598":13599,"13599":13600,"13600":13601,"13601":13602,"13602":13603,"13603":13604,"13604":13605,"13605":13606,"13606":13607,"13607":13608,"13608":13609,"13609":13610,"13610":13611,"13611":13612,"13612":13613,"13613":13614,"13614":13615,"13615":13616,"13616":13617,"13617":13618,"13618":13619,"13619":13620,"13620":13621,"13621":13622,"13622":13623,"13623":13624,"13624":13625,"13625":13626,"13626":13627,"13627":13628,"13628":13629,"13629":13630,"13630":13631,"13631":13632,"13632":13633,"13633":13634,"13634":13635,"13635":13636,"13636":13637,"13637":13638,"13638":13639,"13639":13640,"13640":13641,"13641":13642,"13642":13643,"13643":13644,"13644":13645,"13645":13646,"13646":13647,"13647":13648,"13648":13649,"13649":13650,"13650":13651,"13651":13652,"13652":13653,"13653":13654,"13654":13655,"13655":13656,"13656":13657,"13657":13658,"13658":13659,"13659":13660,"13660":13661,"13661":13662,"13662":13663,"13663":13664,"13664":13665,"13665":13666,"13666":13667,"13667":13668,"13668":13669,"13669":13670,"13670":13671,"13671":13672,"13672":13673,"13673":13674,"13674":13675,"13675":13676,"13676":13677,"13677":13678,"13678":13679,"13679":13680,"13680":13681,"13681":13682,"13682":13683,"13683":13684,"13684":13685,"13685":13686,"13686":13687,"13687":13688,"13688":13689,"13689":13690,"13690":13691,"13691":13692,"13692":13693,"13693":13694,"13694":13695,"13695":13696,"13696":13697,"13697":13698,"13698":13699,"13699":13700,"13700":13701,"13701":13702,"13702":13703,"13703":13704,"13704":13705,"13705":13706,"13706":13707,"13707":13708,"13708":13709,"13709":13710,"13710":13711,"13711":13712,"13712":13713,"13713":13714,"13714":13715,"13715":13716,"13716":13717,"13717":13718,"13718":13719,"13719":13720,"13720":13721,"13721":13722,"13722":13723,"13723":13724,"13724":13725,"13725":13726,"13726":13727,"13727":13728,"13728":13729,"13729":13730,"13730":13731,"13731":13732,"13732":13733,"13733":13734,"13734":13735,"13735":13736,"13736":13737,"13737":13738,"13738":13739,"13739":13740,"13740":13741,"13741":13742,"13742":13743,"13743":13744,"13744":13745,"13745":13746,"13746":13747,"13747":13748,"13748":13749,"13749":13750,"13750":13751,"13751":13752,"13752":13753,"13753":13754,"13754":13755,"13755":13756,"13756":13757,"13757":13758,"13758":13759,"13759":13760,"13760":13761,"13761":13762,"13762":13763,"13763":13764,"13764":13765,"13765":13766,"13766":13767,"13767":13768,"13768":13769,"13769":13770,"13770":13771,"13771":13772,"13772":13773,"13773":13774,"13774":13775,"13775":13776,"13776":13777,"13777":13778,"13778":13779,"13779":13780,"13780":13781,"13781":13782,"13782":13783,"13783":13784,"13784":13785,"13785":13786,"13786":13787,"13787":13788,"13788":13789,"13789":13790,"13790":13791,"13791":13792,"13792":13793,"13793":13794,"13794":13795,"13795":13796,"13796":13797,"13797":13798,"13798":13799,"13799":13800,"13800":13801,"13801":13802,"13802":13803,"13803":13804,"13804":13805,"13805":13806,"13806":13807,"13807":13808,"13808":13809,"13809":13810,"13810":13811,"13811":13812,"13812":13813,"13813":13814,"13814":13815,"13815":13816,"13816":13817,"13817":13818,"13818":13819,"13819":13820,"13820":13821,"13821":13822,"13822":13823,"13823":13824,"13824":13825,"13825":13826,"13826":13827,"13827":13828,"13828":13829,"13829":13830,"13830":13831,"13831":13832,"13832":13833,"13833":13834,"13834":13835,"13835":13836,"13836":13837,"13837":13838,"13838":13839,"13839":13840,"13840":13841,"13841":13842,"13842":13843,"13843":13844,"13844":13845,"13845":13846,"13846":13847,"13847":13848,"13848":13849,"13849":13850,"13850":13851,"13851":13852,"13852":13853,"13853":13854,"13854":13855,"13855":13856,"13856":13857,"13857":13858,"13858":13859,"13859":13860,"13860":13861,"13861":13862,"13862":13863,"13863":13864,"13864":13865,"13865":13866,"13866":13867,"13867":13868,"13868":13869,"13869":13870,"13870":13871,"13871":13872,"13872":13873,"13873":13874,"13874":13875,"13875":13876,"13876":13877,"13877":13878,"13878":13879,"13879":13880,"13880":13881,"13881":13882,"13882":13883,"13883":13884,"13884":13885,"13885":13886,"13886":13887,"13887":13888,"13888":13889,"13889":13890,"13890":13891,"13891":13892,"13892":13893,"13893":13894,"13894":13895,"13895":13896,"13896":13897,"13897":13898,"13898":13899,"13899":13900,"13900":13901,"13901":13902,"13902":13903,"13903":13904,"13904":13905,"13905":13906,"13906":13907,"13907":13908,"13908":13909,"13909":13910,"13910":13911,"13911":13912,"13912":13913,"13913":13914,"13914":13915,"13915":13916,"13916":13917,"13917":13918,"13918":13919,"13919":13920,"13920":13921,"13921":13922,"13922":13923,"13923":13924,"13924":13925,"13925":13926,"13926":13927,"13927":13928,"13928":13929,"13929":13930,"13930":13931,"13931":13932,"13932":13933,"13933":13934,"13934":13935,"13935":13936,"13936":13937,"13937":13938,"13938":13939,"13939":13940,"13940":13941,"13941":13942,"13942":13943,"13943":13944,"13944":13945,"13945":13946,"13946":13947,"13947":13948,"13948":13949,"13949":13950,"13950":13951,"13951":13952,"13952":13953,"13953":13954,"13954":13955,"13955":13956,"13956":13957,"13957":13958,"13958":13959,"13959":13960,"13960":13961,"13961":13962,"13962":13963,"13963":13964,"13964":13965,"13965":13966,"13966":13967,"13967":13968,"13968":13969,"13969":13970,"13970":13971,"13971":13972,"13972":13973,"13973":13974,"13974":13975,"13975":13976,"13976":13977,"13977":13978,"13978":13979,"13979":13980,"13980":13981,"13981":13982,"13982":13983,"13983":13984,"13984":13985,"13985":13986,"13986":13987,"13987":13988,"13988":13989,"13989":13990,"13990":13991,"13991":13992,"13992":13993,"13993":13994,"13994":13995,"13995":13996,"13996":13997,"13997":13998,"13998":13999,"13999":14000,"14000":14001,"14001":14002,"14002":14003,"14003":14004,"14004":14005,"14005":14006,"14006":14007,"14007":14008,"14008":14009,"14009":14010,"14010":14011,"14011":14012,"14012":14013,"14013":14014,"14014":14015,"14015":14016,"14016":14017,"14017":14018,"14018":14019,"14019":14020,"14020":14021,"14021":14022,"14022":14023,"14023":14024,"14024":14025,"14025":14026,"14026":14027,"14027":14028,"14028":14029,"14029":14030,"14030":14031,"14031":14032,"14032":14033,"14033":14034,"14034":14035,"14035":14036,"14036":14037,"14037":14038,"14038":14039,"14039":14040,"14040":14041,"14041":14042,"14042":14043,"14043":14044,"14044":14045,"14045":14046,"14046":14047,"14047":14048,"14048":14049,"14049":14050,"14050":14051,"14051":14052,"14052":14053,"14053":14054,"14054":14055,"14055":14056,"14056":14057,"14057":14058,"14058":14059,"14059":14060,"14060":14061,"14061":14062,"14062":14063,"14063":14064,"14064":14065,"14065":14066,"14066":14067,"14067":14068,"14068":14069,"14069":14070,"14070":14071,"14071":14072,"14072":14073,"14073":14074,"14074":14075,"14075":14076,"14076":14077,"14077":14078,"14078":14079,"14079":14080,"14080":14081,"14081":14082,"14082":14083,"14083":14084,"14084":14085,"14085":14086,"14086":14087,"14087":14088,"14088":14089,"14089":14090,"14090":14091,"14091":14092,"14092":14093,"14093":14094,"14094":14095,"14095":14096,"14096":14097,"14097":14098,"14098":14099,"14099":14100,"14100":14101,"14101":14102,"14102":14103,"14103":14104,"14104":14105,"14105":14106,"14106":14107,"14107":14108,"14108":14109,"14109":14110,"14110":14111,"14111":14112,"14112":14113,"14113":14114,"14114":14115,"14115":14116,"14116":14117,"14117":14118,"14118":14119,"14119":14120,"14120":14121,"14121":14122,"14122":14123,"14123":14124,"14124":14125,"14125":14126,"14126":14127,"14127":14128,"14128":14129,"14129":14130,"14130":14131,"14131":14132,"14132":14133,"14133":14134,"14134":14135,"14135":14136,"14136":14137,"14137":14138,"14138":14139,"14139":14140,"14140":14141,"14141":14142,"14142":14143,"14143":14144,"14144":14145,"14145":14146,"14146":14147,"14147":14148,"14148":14149,"14149":14150,"14150":14151,"14151":14152,"14152":14153,"14153":14154,"14154":14155,"14155":14156,"14156":14157,"14157":14158,"14158":14159,"14159":14160,"14160":14161,"14161":14162,"14162":14163,"14163":14164,"14164":14165,"14165":14166,"14166":14167,"14167":14168,"14168":14169,"14169":14170,"14170":14171,"14171":14172,"14172":14173,"14173":14174,"14174":14175,"14175":14176,"14176":14177,"14177":14178,"14178":14179,"14179":14180,"14180":14181,"14181":14182,"14182":14183,"14183":14184,"14184":14185,"14185":14186,"14186":14187,"14187":14188,"14188":14189,"14189":14190,"14190":14191,"14191":14192,"14192":14193,"14193":14194,"14194":14195,"14195":14196,"14196":14197,"14197":14198,"14198":14199,"14199":14200,"14200":14201,"14201":14202,"14202":14203,"14203":14204,"14204":14205,"14205":14206,"14206":14207,"14207":14208,"14208":14209,"14209":14210,"14210":14211,"14211":14212,"14212":14213,"14213":14214,"14214":14215,"14215":14216,"14216":14217,"14217":14218,"14218":14219,"14219":14220,"14220":14221,"14221":14222,"14222":14223,"14223":14224,"14224":14225,"14225":14226,"14226":14227,"14227":14228,"14228":14229,"14229":14230,"14230":14231,"14231":14232,"14232":14233,"14233":14234,"14234":14235,"14235":14236,"14236":14237,"14237":14238,"14238":14239,"14239":14240,"14240":14241,"14241":14242,"14242":14243,"14243":14244,"14244":14245,"14245":14246,"14246":14247,"14247":14248,"14248":14249,"14249":14250,"14250":14251,"14251":14252,"14252":14253,"14253":14254,"14254":14255,"14255":14256,"14256":14257,"14257":14258,"14258":14259,"14259":14260,"14260":14261,"14261":14262,"14262":14263,"14263":14264,"14264":14265,"14265":14266,"14266":14267,"14267":14268,"14268":14269,"14269":14270,"14270":14271,"14271":14272,"14272":14273,"14273":14274,"14274":14275,"14275":14276,"14276":14277,"14277":14278,"14278":14279,"14279":14280,"14280":14281,"14281":14282,"14282":14283,"14283":14284,"14284":14285,"14285":14286,"14286":14287,"14287":14288,"14288":14289,"14289":14290,"14290":14291,"14291":14292,"14292":14293,"14293":14294,"14294":14295,"14295":14296,"14296":14297,"14297":14298,"14298":14299,"14299":14300,"14300":14301,"14301":14302,"14302":14303,"14303":14304,"14304":14305,"14305":14306,"14306":14307,"14307":14308,"14308":14309,"14309":14310,"14310":14311,"14311":14312,"14312":14313,"14313":14314,"14314":14315,"14315":14316,"14316":14317,"14317":14318,"14318":14319,"14319":14320,"14320":14321,"14321":14322,"14322":14323,"14323":14324,"14324":14325,"14325":14326,"14326":14327,"14327":14328,"14328":14329,"14329":14330,"14330":14331,"14331":14332,"14332":14333,"14333":14334,"14334":14335,"14335":14336,"14336":14337,"14337":14338,"14338":14339,"14339":14340,"14340":14341,"14341":14342,"14342":14343,"14343":14344,"14344":14345,"14345":14346,"14346":14347,"14347":14348,"14348":14349,"14349":14350,"14350":14351,"14351":14352,"14352":14353,"14353":14354,"14354":14355,"14355":14356,"14356":14357,"14357":14358,"14358":14359,"14359":14360,"14360":14361,"14361":14362,"14362":14363,"14363":14364,"14364":14365,"14365":14366,"14366":14367,"14367":14368,"14368":14369,"14369":14370,"14370":14371,"14371":14372,"14372":14373,"14373":14374,"14374":14375,"14375":14376,"14376":14377,"14377":14378,"14378":14379,"14379":14380,"14380":14381,"14381":14382,"14382":14383,"14383":14384,"14384":14385,"14385":14386,"14386":14387,"14387":14388,"14388":14389,"14389":14390,"14390":14391,"14391":14392,"14392":14393,"14393":14394,"14394":14395,"14395":14396,"14396":14397,"14397":14398,"14398":14399,"14399":14400,"14400":14401,"14401":14402,"14402":14403,"14403":14404,"14404":14405,"14405":14406,"14406":14407,"14407":14408,"14408":14409,"14409":14410,"14410":14411,"14411":14412,"14412":14413,"14413":14414,"14414":14415,"14415":14416,"14416":14417,"14417":14418,"14418":14419,"14419":14420,"14420":14421,"14421":14422,"14422":14423,"14423":14424,"14424":14425,"14425":14426,"14426":14427,"14427":14428,"14428":14429,"14429":14430,"14430":14431,"14431":14432,"14432":14433,"14433":14434,"14434":14435,"14435":14436,"14436":14437,"14437":14438,"14438":14439,"14439":14440,"14440":14441,"14441":14442,"14442":14443,"14443":14444,"14444":14445,"14445":14446,"14446":14447,"14447":14448,"14448":14449,"14449":14450,"14450":14451,"14451":14452,"14452":14453,"14453":14454,"14454":14455,"14455":14456,"14456":14457,"14457":14458,"14458":14459,"14459":14460,"14460":14461,"14461":14462,"14462":14463,"14463":14464,"14464":14465,"14465":14466,"14466":14467,"14467":14468,"14468":14469,"14469":14470,"14470":14471,"14471":14472,"14472":14473,"14473":14474,"14474":14475,"14475":14476,"14476":14477,"14477":14478,"14478":14479,"14479":14480,"14480":14481,"14481":14482,"14482":14483,"14483":14484,"14484":14485,"14485":14486,"14486":14487,"14487":14488,"14488":14489,"14489":14490,"14490":14491,"14491":14492,"14492":14493,"14493":14494,"14494":14495,"14495":14496,"14496":14497,"14497":14498,"14498":14499,"14499":14500,"14500":14501,"14501":14502,"14502":14503,"14503":14504,"14504":14505,"14505":14506,"14506":14507,"14507":14508,"14508":14509,"14509":14510,"14510":14511,"14511":14512,"14512":14513,"14513":14514,"14514":14515,"14515":14516,"14516":14517,"14517":14518,"14518":14519,"14519":14520,"14520":14521,"14521":14522,"14522":14523,"14523":14524,"14524":14525,"14525":14526,"14526":14527,"14527":14528,"14528":14529,"14529":14530,"14530":14531,"14531":14532,"14532":14533,"14533":14534,"14534":14535,"14535":14536,"14536":14537,"14537":14538,"14538":14539,"14539":14540,"14540":14541,"14541":14542,"14542":14543,"14543":14544,"14544":14545,"14545":14546,"14546":14547,"14547":14548,"14548":14549,"14549":14550,"14550":14551,"14551":14552,"14552":14553,"14553":14554,"14554":14555,"14555":14556,"14556":14557,"14557":14558,"14558":14559,"14559":14560,"14560":14561,"14561":14562,"14562":14563,"14563":14564,"14564":14565,"14565":14566,"14566":14567,"14567":14568,"14568":14569,"14569":14570,"14570":14571,"14571":14572,"14572":14573,"14573":14574,"14574":14575,"14575":14576,"14576":14577,"14577":14578,"14578":14579,"14579":14580,"14580":14581,"14581":14582,"14582":14583,"14583":14584,"14584":14585,"14585":14586,"14586":14587,"14587":14588,"14588":14589,"14589":14590,"14590":14591,"14591":14592,"14592":14593,"14593":14594,"14594":14595,"14595":14596,"14596":14597,"14597":14598,"14598":14599,"14599":14600,"14600":14601,"14601":14602,"14602":14603,"14603":14604,"14604":14605,"14605":14606,"14606":14607,"14607":14608,"14608":14609,"14609":14610,"14610":14611,"14611":14612,"14612":14613,"14613":14614,"14614":14615,"14615":14616,"14616":14617,"14617":14618,"14618":14619,"14619":14620,"14620":14621,"14621":14622,"14622":14623,"14623":14624,"14624":14625,"14625":14626,"14626":14627,"14627":14628,"14628":14629,"14629":14630,"14630":14631,"14631":14632,"14632":14633,"14633":14634,"14634":14635,"14635":14636,"14636":14637,"14637":14638,"14638":14639,"14639":14640,"14640":14641,"14641":14642,"14642":14643,"14643":14644,"14644":14645,"14645":14646,"14646":14647,"14647":14648,"14648":14649,"14649":14650,"14650":14651,"14651":14652,"14652":14653,"14653":14654,"14654":14655,"14655":14656,"14656":14657,"14657":14658,"14658":14659,"14659":14660,"14660":14661,"14661":14662,"14662":14663,"14663":14664,"14664":14665,"14665":14666,"14666":14667,"14667":14668,"14668":14669,"14669":14670,"14670":14671,"14671":14672,"14672":14673,"14673":14674,"14674":14675,"14675":14676,"14676":14677,"14677":14678,"14678":14679,"14679":14680,"14680":14681,"14681":14682,"14682":14683,"14683":14684,"14684":14685,"14685":14686,"14686":14687,"14687":14688,"14688":14689,"14689":14690,"14690":14691,"14691":14692,"14692":14693,"14693":14694,"14694":14695,"14695":14696,"14696":14697,"14697":14698,"14698":14699,"14699":14700,"14700":14701,"14701":14702,"14702":14703,"14703":14704,"14704":14705,"14705":14706,"14706":14707,"14707":14708,"14708":14709,"14709":14710,"14710":14711,"14711":14712,"14712":14713,"14713":14714,"14714":14715,"14715":14716,"14716":14717,"14717":14718,"14718":14719,"14719":14720,"14720":14721,"14721":14722,"14722":14723,"14723":14724,"14724":14725,"14725":14726,"14726":14727,"14727":14728,"14728":14729,"14729":14730,"14730":14731,"14731":14732,"14732":14733,"14733":14734,"14734":14735,"14735":14736,"14736":14737,"14737":14738,"14738":14739,"14739":14740,"14740":14741,"14741":14742,"14742":14743,"14743":14744,"14744":14745,"14745":14746,"14746":14747,"14747":14748,"14748":14749,"14749":14750,"14750":14751,"14751":14752,"14752":14753,"14753":14754,"14754":14755,"14755":14756,"14756":14757,"14757":14758,"14758":14759,"14759":14760,"14760":14761,"14761":14762,"14762":14763,"14763":14764,"14764":14765,"14765":14766,"14766":14767,"14767":14768,"14768":14769,"14769":14770,"14770":14771,"14771":14772,"14772":14773,"14773":14774,"14774":14775,"14775":14776,"14776":14777,"14777":14778,"14778":14779,"14779":14780,"14780":14781,"14781":14782,"14782":14783,"14783":14784,"14784":14785,"14785":14786,"14786":14787,"14787":14788,"14788":14789,"14789":14790,"14790":14791,"14791":14792,"14792":14793,"14793":14794,"14794":14795,"14795":14796,"14796":14797,"14797":14798,"14798":14799,"14799":14800,"14800":14801,"14801":14802,"14802":14803,"14803":14804,"14804":14805,"14805":14806,"14806":14807,"14807":14808,"14808":14809,"14809":14810,"14810":14811,"14811":14812,"14812":14813,"14813":14814,"14814":14815,"14815":14816,"14816":14817,"14817":14818,"14818":14819,"14819":14820,"14820":14821,"14821":14822,"14822":14823,"14823":14824,"14824":14825,"14825":14826,"14826":14827,"14827":14828,"14828":14829,"14829":14830,"14830":14831,"14831":14832,"14832":14833,"14833":14834,"14834":14835,"14835":14836,"14836":14837,"14837":14838,"14838":14839,"14839":14840,"14840":14841,"14841":14842,"14842":14843,"14843":14844,"14844":14845,"14845":14846,"14846":14847,"14847":14848,"14848":14849,"14849":14850,"14850":14851,"14851":14852,"14852":14853,"14853":14854,"14854":14855,"14855":14856,"14856":14857,"14857":14858,"14858":14859,"14859":14860,"14860":14861,"14861":14862,"14862":14863,"14863":14864,"14864":14865,"14865":14866,"14866":14867,"14867":14868,"14868":14869,"14869":14870,"14870":14871,"14871":14872,"14872":14873,"14873":14874,"14874":14875,"14875":14876,"14876":14877,"14877":14878,"14878":14879,"14879":14880,"14880":14881,"14881":14882,"14882":14883,"14883":14884,"14884":14885,"14885":14886,"14886":14887,"14887":14888,"14888":14889,"14889":14890,"14890":14891,"14891":14892,"14892":14893,"14893":14894,"14894":14895,"14895":14896,"14896":14897,"14897":14898,"14898":14899,"14899":14900,"14900":14901,"14901":14902,"14902":14903,"14903":14904,"14904":14905,"14905":14906,"14906":14907,"14907":14908,"14908":14909,"14909":14910,"14910":14911,"14911":14912,"14912":14913,"14913":14914,"14914":14915,"14915":14916,"14916":14917,"14917":14918,"14918":14919,"14919":14920,"14920":14921,"14921":14922,"14922":14923,"14923":14924,"14924":14925,"14925":14926,"14926":14927,"14927":14928,"14928":14929,"14929":14930,"14930":14931,"14931":14932,"14932":14933,"14933":14934,"14934":14935,"14935":14936,"14936":14937,"14937":14938,"14938":14939,"14939":14940,"14940":14941,"14941":14942,"14942":14943,"14943":14944,"14944":14945,"14945":14946,"14946":14947,"14947":14948,"14948":14949,"14949":14950,"14950":14951,"14951":14952,"14952":14953,"14953":14954,"14954":14955,"14955":14956,"14956":14957,"14957":14958,"14958":14959,"14959":14960,"14960":14961,"14961":14962,"14962":14963,"14963":14964,"14964":14965,"14965":14966,"14966":14967,"14967":14968,"14968":14969,"14969":14970,"14970":14971,"14971":14972,"14972":14973,"14973":14974,"14974":14975,"14975":14976,"14976":14977,"14977":14978,"14978":14979,"14979":14980,"14980":14981,"14981":14982,"14982":14983,"14983":14984,"14984":14985,"14985":14986,"14986":14987,"14987":14988,"14988":14989,"14989":14990,"14990":14991,"14991":14992,"14992":14993,"14993":14994,"14994":14995,"14995":14996,"14996":14997,"14997":14998,"14998":14999,"14999":15000,"15000":15001,"15001":15002,"15002":15003,"15003":15004,"15004":15005,"15005":15006,"15006":15007,"15007":15008,"15008":15009,"15009":15010,"15010":15011,"15011":15012,"15012":15013,"15013":15014,"15014":15015,"15015":15016,"15016":15017,"15017":15018,"15018":15019,"15019":15020,"15020":15021,"15021":15022,"15022":15023,"15023":15024,"15024":15025,"15025":15026,"15026":15027,"15027":15028,"15028":15029,"15029":15030,"15030":15031,"15031":15032,"15032":15033,"15033":15034,"15034":15035,"15035":15036,"15036":15037,"15037":15038,"15038":15039,"15039":15040,"15040":15041,"15041":15042,"15042":15043,"15043":15044,"15044":15045,"15045":15046,"15046":15047,"15047":15048,"15048":15049,"15049":15050,"15050":15051,"15051":15052,"15052":15053,"15053":15054,"15054":15055,"15055":15056,"15056":15057,"15057":15058,"15058":15059,"15059":15060,"15060":15061,"15061":15062,"15062":15063,"15063":15064,"15064":15065,"15065":15066,"15066":15067,"15067":15068,"15068":15069,"15069":15070,"15070":15071,"15071":15072,"15072":15073,"15073":15074,"15074":15075,"15075":15076,"15076":15077,"15077":15078,"15078":15079,"15079":15080,"15080":15081,"15081":15082,"15082":15083,"15083":15084,"15084":15085,"15085":15086,"15086":15087,"15087":15088,"15088":15089,"15089":15090,"15090":15091,"15091":15092,"15092":15093,"15093":15094,"15094":15095,"15095":15096,"15096":15097,"15097":15098,"15098":15099,"15099":15100,"15100":15101,"15101":15102,"15102":15103,"15103":15104,"15104":15105,"15105":15106,"15106":15107,"15107":15108,"15108":15109,"15109":15110,"15110":15111,"15111":15112,"15112":15113,"15113":15114,"15114":15115,"15115":15116,"15116":15117,"15117":15118,"15118":15119,"15119":15120,"15120":15121,"15121":15122,"15122":15123,"15123":15124,"15124":15125,"15125":15126,"15126":15127,"15127":15128,"15128":15129,"15129":15130,"15130":15131,"15131":15132,"15132":15133,"15133":15134,"15134":15135,"15135":15136,"15136":15137,"15137":15138,"15138":15139,"15139":15140,"15140":15141,"15141":15142,"15142":15143,"15143":15144,"15144":15145,"15145":15146,"15146":15147,"15147":15148,"15148":15149,"15149":15150,"15150":15151,"15151":15152,"15152":15153,"15153":15154,"15154":15155,"15155":15156,"15156":15157,"15157":15158,"15158":15159,"15159":15160,"15160":15161,"15161":15162,"15162":15163,"15163":15164,"15164":15165,"15165":15166,"15166":15167,"15167":15168,"15168":15169,"15169":15170,"15170":15171,"15171":15172,"15172":15173,"15173":15174,"15174":15175,"15175":15176,"15176":15177,"15177":15178,"15178":15179,"15179":15180,"15180":15181,"15181":15182,"15182":15183,"15183":15184,"15184":15185,"15185":15186,"15186":15187,"15187":15188,"15188":15189,"15189":15190,"15190":15191,"15191":15192,"15192":15193,"15193":15194,"15194":15195,"15195":15196,"15196":15197,"15197":15198,"15198":15199,"15199":15200,"15200":15201,"15201":15202,"15202":15203,"15203":15204,"15204":15205,"15205":15206,"15206":15207,"15207":15208,"15208":15209,"15209":15210,"15210":15211,"15211":15212,"15212":15213,"15213":15214,"15214":15215,"15215":15216,"15216":15217,"15217":15218,"15218":15219,"15219":15220,"15220":15221,"15221":15222,"15222":15223,"15223":15224,"15224":15225,"15225":15226,"15226":15227,"15227":15228,"15228":15229,"15229":15230,"15230":15231,"15231":15232,"15232":15233,"15233":15234,"15234":15235,"15235":15236,"15236":15237,"15237":15238,"15238":15239,"15239":15240,"15240":15241,"15241":15242,"15242":15243,"15243":15244,"15244":15245,"15245":15246,"15246":15247,"15247":15248,"15248":15249,"15249":15250,"15250":15251,"15251":15252,"15252":15253,"15253":15254,"15254":15255,"15255":15256,"15256":15257,"15257":15258,"15258":15259,"15259":15260,"15260":15261,"15261":15262,"15262":15263,"15263":15264,"15264":15265,"15265":15266,"15266":15267,"15267":15268,"15268":15269,"15269":15270,"15270":15271,"15271":15272,"15272":15273,"15273":15274,"15274":15275,"15275":15276,"15276":15277,"15277":15278,"15278":15279,"15279":15280,"15280":15281,"15281":15282,"15282":15283,"15283":15284,"15284":15285,"15285":15286,"15286":15287,"15287":15288,"15288":15289,"15289":15290,"15290":15291,"15291":15292,"15292":15293,"15293":15294,"15294":15295,"15295":15296,"15296":15297,"15297":15298,"15298":15299,"15299":15300,"15300":15301,"15301":15302,"15302":15303,"15303":15304,"15304":15305,"15305":15306,"15306":15307,"15307":15308,"15308":15309,"15309":15310,"15310":15311,"15311":15312,"15312":15313,"15313":15314,"15314":15315,"15315":15316,"15316":15317,"15317":15318,"15318":15319,"15319":15320,"15320":15321,"15321":15322,"15322":15323,"15323":15324,"15324":15325,"15325":15326,"15326":15327,"15327":15328,"15328":15329,"15329":15330,"15330":15331,"15331":15332,"15332":15333,"15333":15334,"15334":15335,"15335":15336,"15336":15337,"15337":15338,"15338":15339,"15339":15340,"15340":15341,"15341":15342,"15342":15343,"15343":15344,"15344":15345,"15345":15346,"15346":15347,"15347":15348,"15348":15349,"15349":15350,"15350":15351,"15351":15352,"15352":15353,"15353":15354,"15354":15355,"15355":15356,"15356":15357,"15357":15358,"15358":15359,"15359":15360,"15360":15361,"15361":15362,"15362":15363,"15363":15364,"15364":15365,"15365":15366,"15366":15367,"15367":15368,"15368":15369,"15369":15370,"15370":15371,"15371":15372,"15372":15373,"15373":15374,"15374":15375,"15375":15376,"15376":15377,"15377":15378,"15378":15379,"15379":15380,"15380":15381,"15381":15382,"15382":15383,"15383":15384,"15384":15385,"15385":15386,"15386":15387,"15387":15388,"15388":15389,"15389":15390,"15390":15391,"15391":15392,"15392":15393,"15393":15394,"15394":15395,"15395":15396,"15396":15397,"15397":15398,"15398":15399,"15399":15400,"15400":15401,"15401":15402,"15402":15403,"15403":15404,"15404":15405,"15405":15406,"15406":15407,"15407":15408,"15408":15409,"15409":15410,"15410":15411,"15411":15412,"15412":15413,"15413":15414,"15414":15415,"15415":15416,"15416":15417,"15417":15418,"15418":15419,"15419":15420,"15420":15421,"15421":15422,"15422":15423,"15423":15424,"15424":15425,"15425":15426,"15426":15427,"15427":15428,"15428":15429,"15429":15430,"15430":15431,"15431":15432,"15432":15433,"15433":15434,"15434":15435,"15435":15436,"15436":15437,"15437":15438,"15438":15439,"15439":15440,"15440":15441,"15441":15442,"15442":15443,"15443":15444,"15444":15445,"15445":15446,"15446":15447,"15447":15448,"15448":15449,"15449":15450,"15450":15451,"15451":15452,"15452":15453,"15453":15454,"15454":15455,"15455":15456,"15456":15457,"15457":15458,"15458":15459,"15459":15460,"15460":15461,"15461":15462,"15462":15463,"15463":15464,"15464":15465,"15465":15466,"15466":15467,"15467":15468,"15468":15469,"15469":15470,"15470":15471,"15471":15472,"15472":15473,"15473":15474,"15474":15475,"15475":15476,"15476":15477,"15477":15478,"15478":15479,"15479":15480,"15480":15481,"15481":15482,"15482":15483,"15483":15484,"15484":15485,"15485":15486,"15486":15487,"15487":15488,"15488":15489,"15489":15490,"15490":15491,"15491":15492,"15492":15493,"15493":15494,"15494":15495,"15495":15496,"15496":15497,"15497":15498,"15498":15499,"15499":15500,"15500":15501,"15501":15502,"15502":15503,"15503":15504,"15504":15505,"15505":15506,"15506":15507,"15507":15508,"15508":15509,"15509":15510,"15510":15511,"15511":15512,"15512":15513,"15513":15514,"15514":15515,"15515":15516,"15516":15517,"15517":15518,"15518":15519,"15519":15520,"15520":15521,"15521":15522,"15522":15523,"15523":15524,"15524":15525,"15525":15526,"15526":15527,"15527":15528,"15528":15529,"15529":15530,"15530":15531,"15531":15532,"15532":15533,"15533":15534,"15534":15535,"15535":15536,"15536":15537,"15537":15538,"15538":15539,"15539":15540,"15540":15541,"15541":15542,"15542":15543,"15543":15544,"15544":15545,"15545":15546,"15546":15547,"15547":15548,"15548":15549,"15549":15550,"15550":15551,"15551":15552,"15552":15553,"15553":15554,"15554":15555,"15555":15556,"15556":15557,"15557":15558,"15558":15559,"15559":15560,"15560":15561,"15561":15562,"15562":15563,"15563":15564,"15564":15565,"15565":15566,"15566":15567,"15567":15568,"15568":15569,"15569":15570,"15570":15571,"15571":15572,"15572":15573,"15573":15574,"15574":15575,"15575":15576,"15576":15577,"15577":15578,"15578":15579,"15579":15580,"15580":15581,"15581":15582,"15582":15583,"15583":15584,"15584":15585,"15585":15586,"15586":15587,"15587":15588,"15588":15589,"15589":15590,"15590":15591,"15591":15592,"15592":15593,"15593":15594,"15594":15595,"15595":15596,"15596":15597,"15597":15598,"15598":15599,"15599":15600,"15600":15601,"15601":15602,"15602":15603,"15603":15604,"15604":15605,"15605":15606,"15606":15607,"15607":15608,"15608":15609,"15609":15610,"15610":15611,"15611":15612,"15612":15613,"15613":15614,"15614":15615,"15615":15616,"15616":15617,"15617":15618,"15618":15619,"15619":15620,"15620":15621,"15621":15622,"15622":15623,"15623":15624,"15624":15625,"15625":15626,"15626":15627,"15627":15628,"15628":15629,"15629":15630,"15630":15631,"15631":15632,"15632":15633,"15633":15634,"15634":15635,"15635":15636,"15636":15637,"15637":15638,"15638":15639,"15639":15640,"15640":15641,"15641":15642,"15642":15643,"15643":15644,"15644":15645,"15645":15646,"15646":15647,"15647":15648,"15648":15649,"15649":15650,"15650":15651,"15651":15652,"15652":15653,"15653":15654,"15654":15655,"15655":15656,"15656":15657,"15657":15658,"15658":15659,"15659":15660,"15660":15661,"15661":15662,"15662":15663,"15663":15664,"15664":15665,"15665":15666,"15666":15667,"15667":15668,"15668":15669,"15669":15670,"15670":15671,"15671":15672,"15672":15673,"15673":15674,"15674":15675,"15675":15676,"15676":15677,"15677":15678,"15678":15679,"15679":15680,"15680":15681,"15681":15682,"15682":15683,"15683":15684,"15684":15685,"15685":15686,"15686":15687,"15687":15688,"15688":15689,"15689":15690,"15690":15691,"15691":15692,"15692":15693,"15693":15694,"15694":15695,"15695":15696,"15696":15697,"15697":15698,"15698":15699,"15699":15700,"15700":15701,"15701":15702,"15702":15703,"15703":15704,"15704":15705,"15705":15706,"15706":15707,"15707":15708,"15708":15709,"15709":15710,"15710":15711,"15711":15712,"15712":15713,"15713":15714,"15714":15715,"15715":15716,"15716":15717,"15717":15718,"15718":15719,"15719":15720,"15720":15721,"15721":15722,"15722":15723,"15723":15724,"15724":15725,"15725":15726,"15726":15727,"15727":15728,"15728":15729,"15729":15730,"15730":15731,"15731":15732,"15732":15733,"15733":15734,"15734":15735,"15735":15736,"15736":15737,"15737":15738,"15738":15739,"15739":15740,"15740":15741,"15741":15742,"15742":15743,"15743":15744,"15744":15745,"15745":15746,"15746":15747,"15747":15748,"15748":15749,"15749":15750,"15750":15751,"15751":15752,"15752":15753,"15753":15754,"15754":15755,"15755":15756,"15756":15757,"15757":15758,"15758":15759,"15759":15760,"15760":15761,"15761":15762,"15762":15763,"15763":15764,"15764":15765,"15765":15766,"15766":15767,"15767":15768,"15768":15769,"15769":15770,"15770":15771,"15771":15772,"15772":15773,"15773":15774,"15774":15775,"15775":15776,"15776":15777,"15777":15778,"15778":15779,"15779":15780,"15780":15781,"15781":15782,"15782":15783,"15783":15784,"15784":15785,"15785":15786,"15786":15787,"15787":15788,"15788":15789,"15789":15790,"15790":15791,"15791":15792,"15792":15793,"15793":15794,"15794":15795,"15795":15796,"15796":15797,"15797":15798,"15798":15799,"15799":15800,"15800":15801,"15801":15802,"15802":15803,"15803":15804,"15804":15805,"15805":15806,"15806":15807,"15807":15808,"15808":15809,"15809":15810,"15810":15811,"15811":15812,"15812":15813,"15813":15814,"15814":15815,"15815":15816,"15816":15817,"15817":15818,"15818":15819,"15819":15820,"15820":15821,"15821":15822,"15822":15823,"15823":15824,"15824":15825,"15825":15826,"15826":15827,"15827":15828,"15828":15829,"15829":15830,"15830":15831,"15831":15832,"15832":15833,"15833":15834,"15834":15835,"15835":15836,"15836":15837,"15837":15838,"15838":15839,"15839":15840,"15840":15841,"15841":15842,"15842":15843,"15843":15844,"15844":15845,"15845":15846,"15846":15847,"15847":15848,"15848":15849,"15849":15850,"15850":15851,"15851":15852,"15852":15853,"15853":15854,"15854":15855,"15855":15856,"15856":15857,"15857":15858,"15858":15859,"15859":15860,"15860":15861,"15861":15862,"15862":15863,"15863":15864,"15864":15865,"15865":15866,"15866":15867,"15867":15868,"15868":15869,"15869":15870,"15870":15871,"15871":15872,"15872":15873,"15873":15874,"15874":15875,"15875":15876,"15876":15877,"15877":15878,"15878":15879,"15879":15880,"15880":15881,"15881":15882,"15882":15883,"15883":15884,"15884":15885,"15885":15886,"15886":15887,"15887":15888,"15888":15889,"15889":15890,"15890":15891,"15891":15892,"15892":15893,"15893":15894,"15894":15895,"15895":15896,"15896":15897,"15897":15898,"15898":15899,"15899":15900,"15900":15901,"15901":15902,"15902":15903,"15903":15904,"15904":15905,"15905":15906,"15906":15907,"15907":15908,"15908":15909,"15909":15910,"15910":15911,"15911":15912,"15912":15913,"15913":15914,"15914":15915,"15915":15916,"15916":15917,"15917":15918,"15918":15919,"15919":15920,"15920":15921,"15921":15922,"15922":15923,"15923":15924,"15924":15925,"15925":15926,"15926":15927,"15927":15928,"15928":15929,"15929":15930,"15930":15931,"15931":15932,"15932":15933,"15933":15934,"15934":15935,"15935":15936,"15936":15937,"15937":15938,"15938":15939,"15939":15940,"15940":15941,"15941":15942,"15942":15943,"15943":15944,"15944":15945,"15945":15946,"15946":15947,"15947":15948,"15948":15949,"15949":15950,"15950":15951,"15951":15952,"15952":15953,"15953":15954,"15954":15955,"15955":15956,"15956":15957,"15957":15958,"15958":15959,"15959":15960,"15960":15961,"15961":15962,"15962":15963,"15963":15964,"15964":15965,"15965":15966,"15966":15967,"15967":15968,"15968":15969,"15969":15970,"15970":15971,"15971":15972,"15972":15973,"15973":15974,"15974":15975,"15975":15976,"15976":15977,"15977":15978,"15978":15979,"15979":15980,"15980":15981,"15981":15982,"15982":15983,"15983":15984,"15984":15985,"15985":15986,"15986":15987,"15987":15988,"15988":15989,"15989":15990,"15990":15991,"15991":15992,"15992":15993,"15993":15994,"15994":15995,"15995":15996,"15996":15997,"15997":15998,"15998":15999,"15999":16000,"16000":16001,"16001":16002,"16002":16003,"16003":16004,"16004":16005,"16005":16006,"16006":16007,"16007":16008,"16008":16009,"16009":16010,"16010":16011,"16011":16012,"16012":16013,"16013":16014,"16014":16015,"16015":16016,"16016":16017,"16017":16018,"16018":16019,"16019":16020,"16020":16021,"16021":16022,"16022":16023,"16023":16024,"16024":16025,"16025":16026,"16026":16027,"16027":16028,"16028":16029,"16029":16030,"16030":16031,"16031":16032,"16032":16033,"16033":16034,"16034":16035,"16035":16036,"16036":16037,"16037":16038,"16038":16039,"16039":16040,"16040":16041,"16041":16042,"16042":16043,"16043":16044,"16044":16045,"16045":16046,"16046":16047,"16047":16048,"16048":16049,"16049":16050,"16050":16051,"16051":16052,"16052":16053,"16053":16054,"16054":16055,"16055":16056,"16056":16057,"16057":16058,"16058":16059,"16059":16060,"16060":16061,"16061":16062,"16062":16063,"16063":16064,"16064":16065,"16065":16066,"16066":16067,"16067":16068,"16068":16069,"16069":16070,"16070":16071,"16071":16072,"16072":16073,"16073":16074,"16074":16075,"16075":16076,"16076":16077,"16077":16078,"16078":16079,"16079":16080,"16080":16081,"16081":16082,"16082":16083,"16083":16084,"16084":16085,"16085":16086,"16086":16087,"16087":16088,"16088":16089,"16089":16090,"16090":16091,"16091":16092,"16092":16093,"16093":16094,"16094":16095,"16095":16096,"16096":16097,"16097":16098,"16098":16099,"16099":16100,"16100":16101,"16101":16102,"16102":16103,"16103":16104,"16104":16105,"16105":16106,"16106":16107,"16107":16108,"16108":16109,"16109":16110,"16110":16111,"16111":16112,"16112":16113,"16113":16114,"16114":16115,"16115":16116,"16116":16117,"16117":16118,"16118":16119,"16119":16120,"16120":16121,"16121":16122,"16122":16123,"16123":16124,"16124":16125,"16125":16126,"16126":16127,"16127":16128,"16128":16129,"16129":16130,"16130":16131,"16131":16132,"16132":16133,"16133":16134,"16134":16135,"16135":16136,"16136":16137,"16137":16138,"16138":16139,"16139":16140,"16140":16141,"16141":16142,"16142":16143,"16143":16144,"16144":16145,"16145":16146,"16146":16147,"16147":16148,"16148":16149,"16149":16150,"16150":16151,"16151":16152,"16152":16153,"16153":16154,"16154":16155,"16155":16156,"16156":16157,"16157":16158,"16158":16159,"16159":16160,"16160":16161,"16161":16162,"16162":16163,"16163":16164,"16164":16165,"16165":16166,"16166":16167,"16167":16168,"16168":16169,"16169":16170,"16170":16171,"16171":16172,"16172":16173,"16173":16174,"16174":16175,"16175":16176,"16176":16177,"16177":16178,"16178":16179,"16179":16180,"16180":16181,"16181":16182,"16182":16183,"16183":16184,"16184":16185,"16185":16186,"16186":16187,"16187":16188,"16188":16189,"16189":16190,"16190":16191,"16191":16192,"16192":16193,"16193":16194,"16194":16195,"16195":16196,"16196":16197,"16197":16198,"16198":16199,"16199":16200,"16200":16201,"16201":16202,"16202":16203,"16203":16204,"16204":16205,"16205":16206,"16206":16207,"16207":16208,"16208":16209,"16209":16210,"16210":16211,"16211":16212,"16212":16213,"16213":16214,"16214":16215,"16215":16216,"16216":16217,"16217":16218,"16218":16219,"16219":16220,"16220":16221,"16221":16222,"16222":16223,"16223":16224,"16224":16225,"16225":16226,"16226":16227,"16227":16228,"16228":16229,"16229":16230,"16230":16231,"16231":16232,"16232":16233,"16233":16234,"16234":16235,"16235":16236,"16236":16237,"16237":16238,"16238":16239,"16239":16240,"16240":16241,"16241":16242,"16242":16243,"16243":16244,"16244":16245,"16245":16246,"16246":16247,"16247":16248,"16248":16249,"16249":16250,"16250":16251,"16251":16252,"16252":16253,"16253":16254,"16254":16255,"16255":16256,"16256":16257,"16257":16258,"16258":16259,"16259":16260,"16260":16261,"16261":16262,"16262":16263,"16263":16264,"16264":16265,"16265":16266,"16266":16267,"16267":16268,"16268":16269,"16269":16270,"16270":16271,"16271":16272,"16272":16273,"16273":16274,"16274":16275,"16275":16276,"16276":16277,"16277":16278,"16278":16279,"16279":16280,"16280":16281,"16281":16282,"16282":16283,"16283":16284,"16284":16285,"16285":16286,"16286":16287,"16287":16288,"16288":16289,"16289":16290,"16290":16291,"16291":16292,"16292":16293,"16293":16294,"16294":16295,"16295":16296,"16296":16297,"16297":16298,"16298":16299,"16299":16300,"16300":16301,"16301":16302,"16302":16303,"16303":16304,"16304":16305,"16305":16306,"16306":16307,"16307":16308,"16308":16309,"16309":16310,"16310":16311,"16311":16312,"16312":16313,"16313":16314,"16314":16315,"16315":16316,"16316":16317,"16317":16318,"16318":16319,"16319":16320,"16320":16321,"16321":16322,"16322":16323,"16323":16324,"16324":16325,"16325":16326,"16326":16327,"16327":16328,"16328":16329,"16329":16330,"16330":16331,"16331":16332,"16332":16333,"16333":16334,"16334":16335,"16335":16336,"16336":16337,"16337":16338,"16338":16339,"16339":16340,"16340":16341,"16341":16342,"16342":16343,"16343":16344,"16344":16345,"16345":16346,"16346":16347,"16347":16348,"16348":16349,"16349":16350,"16350":16351,"16351":16352,"16352":16353,"16353":16354,"16354":16355,"16355":16356,"16356":16357,"16357":16358,"16358":16359,"16359":16360,"16360":16361,"16361":16362,"16362":16363,"16363":16364,"16364":16365,"16365":16366,"16366":16367,"16367":16368,"16368":16369,"16369":16370,"16370":16371,"16371":16372,"16372":16373,"16373":16374,"16374":16375,"16375":16376,"16376":16377,"16377":16378,"16378":16379,"16379":16380,"16380":16381,"16381":16382,"16382":16383,"16383":16384,"16384":16385,"16385":16386,"16386":16387,"16387":16388,"16388":16389,"16389":16390,"16390":16391,"16391":16392,"16392":16393,"16393":16394,"16394":16395,"16395":16396,"16396":16397,"16397":16398,"16398":16399,"16399":16400,"16400":16401,"16401":16402,"16402":16403,"16403":16404,"16404":16405,"16405":16406,"16406":16407,"16407":16408,"16408":16409,"16409":16410,"16410":16411,"16411":16412,"16412":16413,"16413":16414,"16414":16415,"16415":16416,"16416":16417,"16417":16418,"16418":16419,"16419":16420,"16420":16421,"16421":16422,"16422":16423,"16423":16424,"16424":16425,"16425":16426,"16426":16427,"16427":16428,"16428":16429,"16429":16430,"16430":16431,"16431":16432,"16432":16433,"16433":16434,"16434":16435,"16435":16436,"16436":16437,"16437":16438,"16438":16439,"16439":16440,"16440":16441,"16441":16442,"16442":16443,"16443":16444,"16444":16445,"16445":16446,"16446":16447,"16447":16448,"16448":16449,"16449":16450,"16450":16451,"16451":16452,"16452":16453,"16453":16454,"16454":16455,"16455":16456,"16456":16457,"16457":16458,"16458":16459,"16459":16460,"16460":16461,"16461":16462,"16462":16463,"16463":16464,"16464":16465,"16465":16466,"16466":16467,"16467":16468,"16468":16469,"16469":16470,"16470":16471,"16471":16472,"16472":16473,"16473":16474,"16474":16475,"16475":16476,"16476":16477,"16477":16478,"16478":16479,"16479":16480,"16480":16481,"16481":16482,"16482":16483,"16483":16484,"16484":16485,"16485":16486,"16486":16487,"16487":16488,"16488":16489,"16489":16490,"16490":16491,"16491":16492,"16492":16493,"16493":16494,"16494":16495,"16495":16496,"16496":16497,"16497":16498,"16498":16499,"16499":16500,"16500":16501,"16501":16502,"16502":16503,"16503":16504,"16504":16505,"16505":16506,"16506":16507,"16507":16508,"16508":16509,"16509":16510,"16510":16511,"16511":16512,"16512":16513,"16513":16514,"16514":16515,"16515":16516,"16516":16517,"16517":16518,"16518":16519,"16519":16520,"16520":16521,"16521":16522,"16522":16523,"16523":16524,"16524":16525,"16525":16526,"16526":16527,"16527":16528,"16528":16529,"16529":16530,"16530":16531,"16531":16532,"16532":16533,"16533":16534,"16534":16535,"16535":16536,"16536":16537,"16537":16538,"16538":16539,"16539":16540,"16540":16541,"16541":16542,"16542":16543,"16543":16544,"16544":16545,"16545":16546,"16546":16547,"16547":16548,"16548":16549,"16549":16550,"16550":16551,"16551":16552,"16552":16553,"16553":16554,"16554":16555,"16555":16556,"16556":16557,"16557":16558,"16558":16559,"16559":16560,"16560":16561,"16561":16562,"16562":16563,"16563":16564,"16564":16565,"16565":16566,"16566":16567,"16567":16568,"16568":16569,"16569":16570,"16570":16571,"16571":16572,"16572":16573,"16573":16574,"16574":16575,"16575":16576,"16576":16577,"16577":16578,"16578":16579,"16579":16580,"16580":16581,"16581":16582,"16582":16583,"16583":16584,"16584":16585,"16585":16586,"16586":16587,"16587":16588,"16588":16589,"16589":16590,"16590":16591,"16591":16592,"16592":16593,"16593":16594,"16594":16595,"16595":16596,"16596":16597,"16597":16598,"16598":16599,"16599":16600,"16600":16601,"16601":16602,"16602":16603,"16603":16604,"16604":16605,"16605":16606,"16606":16607,"16607":16608,"16608":16609,"16609":16610,"16610":16611,"16611":16612,"16612":16613,"16613":16614,"16614":16615,"16615":16616,"16616":16617,"16617":16618,"16618":16619,"16619":16620,"16620":16621,"16621":16622,"16622":16623,"16623":16624,"16624":16625,"16625":16626,"16626":16627,"16627":16628,"16628":16629,"16629":16630,"16630":16631,"16631":16632,"16632":16633,"16633":16634,"16634":16635,"16635":16636,"16636":16637,"16637":16638,"16638":16639,"16639":16640,"16640":16641,"16641":16642,"16642":16643,"16643":16644,"16644":16645,"16645":16646,"16646":16647,"16647":16648,"16648":16649,"16649":16650,"16650":16651,"16651":16652,"16652":16653,"16653":16654,"16654":16655,"16655":16656,"16656":16657,"16657":16658,"16658":16659,"16659":16660,"16660":16661,"16661":16662,"16662":16663,"16663":16664,"16664":16665,"16665":16666,"16666":16667,"16667":16668,"16668":16669,"16669":16670,"16670":16671,"16671":16672,"16672":16673,"16673":16674,"16674":16675,"16675":16676,"16676":16677,"16677":16678,"16678":16679,"16679":16680,"16680":16681,"16681":16682,"16682":16683,"16683":16684,"16684":16685,"16685":16686,"16686":16687,"16687":16688,"16688":16689,"16689":16690,"16690":16691,"16691":16692,"16692":16693,"16693":16694,"16694":16695,"16695":16696,"16696":16697,"16697":16698,"16698":16699,"16699":16700,"16700":16701,"16701":16702,"16702":16703,"16703":16704,"16704":16705,"16705":16706,"16706":16707,"16707":16708,"16708":16709,"16709":16710,"16710":16711,"16711":16712,"16712":16713,"16713":16714,"16714":16715,"16715":16716,"16716":16717,"16717":16718,"16718":16719,"16719":16720,"16720":16721,"16721":16722,"16722":16723,"16723":16724,"16724":16725,"16725":16726,"16726":16727,"16727":16728,"16728":16729,"16729":16730,"16730":16731,"16731":16732,"16732":16733,"16733":16734,"16734":16735,"16735":16736,"16736":16737,"16737":16738,"16738":16739,"16739":16740,"16740":16741,"16741":16742,"16742":16743,"16743":16744,"16744":16745,"16745":16746,"16746":16747,"16747":16748,"16748":16749,"16749":16750,"16750":16751,"16751":16752,"16752":16753,"16753":16754,"16754":16755,"16755":16756,"16756":16757,"16757":16758,"16758":16759,"16759":16760,"16760":16761,"16761":16762,"16762":16763,"16763":16764,"16764":16765,"16765":16766,"16766":16767,"16767":16768,"16768":16769,"16769":16770,"16770":16771,"16771":16772,"16772":16773,"16773":16774,"16774":16775,"16775":16776,"16776":16777,"16777":16778,"16778":16779,"16779":16780,"16780":16781,"16781":16782,"16782":16783,"16783":16784,"16784":16785,"16785":16786,"16786":16787,"16787":16788,"16788":16789,"16789":16790,"16790":16791,"16791":16792,"16792":16793,"16793":16794,"16794":16795,"16795":16796,"16796":16797,"16797":16798,"16798":16799,"16799":16800,"16800":16801,"16801":16802,"16802":16803,"16803":16804,"16804":16805,"16805":16806,"16806":16807,"16807":16808,"16808":16809,"16809":16810,"16810":16811,"16811":16812,"16812":16813,"16813":16814,"16814":16815,"16815":16816,"16816":16817,"16817":16818,"16818":16819,"16819":16820,"16820":16821,"16821":16822,"16822":16823,"16823":16824,"16824":16825,"16825":16826,"16826":16827,"16827":16828,"16828":16829,"16829":16830,"16830":16831,"16831":16832,"16832":16833,"16833":16834,"16834":16835,"16835":16836,"16836":16837,"16837":16838,"16838":16839,"16839":16840,"16840":16841,"16841":16842,"16842":16843,"16843":16844,"16844":16845,"16845":16846,"16846":16847,"16847":16848,"16848":16849,"16849":16850,"16850":16851,"16851":16852,"16852":16853,"16853":16854,"16854":16855,"16855":16856,"16856":16857,"16857":16858,"16858":16859,"16859":16860,"16860":16861,"16861":16862,"16862":16863,"16863":16864,"16864":16865,"16865":16866,"16866":16867,"16867":16868,"16868":16869,"16869":16870,"16870":16871,"16871":16872,"16872":16873,"16873":16874,"16874":16875,"16875":16876,"16876":16877,"16877":16878,"16878":16879,"16879":16880,"16880":16881,"16881":16882,"16882":16883,"16883":16884,"16884":16885,"16885":16886,"16886":16887,"16887":16888,"16888":16889,"16889":16890,"16890":16891,"16891":16892,"16892":16893,"16893":16894,"16894":16895,"16895":16896,"16896":16897,"16897":16898,"16898":16899,"16899":16900,"16900":16901,"16901":16902,"16902":16903,"16903":16904,"16904":16905,"16905":16906,"16906":16907,"16907":16908,"16908":16909,"16909":16910,"16910":16911,"16911":16912,"16912":16913,"16913":16914,"16914":16915,"16915":16916,"16916":16917,"16917":16918,"16918":16919,"16919":16920,"16920":16921,"16921":16922,"16922":16923,"16923":16924,"16924":16925,"16925":16926,"16926":16927,"16927":16928,"16928":16929,"16929":16930,"16930":16931,"16931":16932,"16932":16933,"16933":16934,"16934":16935,"16935":16936,"16936":16937,"16937":16938,"16938":16939,"16939":16940,"16940":16941,"16941":16942,"16942":16943,"16943":16944,"16944":16945,"16945":16946,"16946":16947,"16947":16948,"16948":16949,"16949":16950,"16950":16951,"16951":16952,"16952":16953,"16953":16954,"16954":16955,"16955":16956,"16956":16957,"16957":16958,"16958":16959,"16959":16960,"16960":16961,"16961":16962,"16962":16963,"16963":16964,"16964":16965,"16965":16966,"16966":16967,"16967":16968,"16968":16969,"16969":16970,"16970":16971,"16971":16972,"16972":16973,"16973":16974,"16974":16975,"16975":16976,"16976":16977,"16977":16978,"16978":16979,"16979":16980,"16980":16981,"16981":16982,"16982":16983,"16983":16984,"16984":16985,"16985":16986,"16986":16987,"16987":16988,"16988":16989,"16989":16990,"16990":16991,"16991":16992,"16992":16993,"16993":16994,"16994":16995,"16995":16996,"16996":16997,"16997":16998,"16998":16999,"16999":17000,"17000":17001,"17001":17002,"17002":17003,"17003":17004,"17004":17005,"17005":17006,"17006":17007,"17007":17008,"17008":17009,"17009":17010,"17010":17011,"17011":17012,"17012":17013,"17013":17014,"17014":17015,"17015":17016,"17016":17017,"17017":17018,"17018":17019,"17019":17020,"17020":17021,"17021":17022,"17022":17023,"17023":17024,"17024":17025,"17025":17026,"17026":17027,"17027":17028,"17028":17029,"17029":17030,"17030":17031,"17031":17032,"17032":17033,"17033":17034,"17034":17035,"17035":17036,"17036":17037,"17037":17038,"17038":17039,"17039":17040,"17040":17041,"17041":17042,"17042":17043,"17043":17044,"17044":17045,"17045":17046,"17046":17047,"17047":17048,"17048":17049,"17049":17050,"17050":17051,"17051":17052,"17052":17053,"17053":17054,"17054":17055,"17055":17056,"17056":17057,"17057":17058,"17058":17059,"17059":17060,"17060":17061,"17061":17062,"17062":17063,"17063":17064,"17064":17065,"17065":17066,"17066":17067,"17067":17068,"17068":17069,"17069":17070,"17070":17071,"17071":17072,"17072":17073,"17073":17074,"17074":17075,"17075":17076,"17076":17077,"17077":17078,"17078":17079,"17079":17080,"17080":17081,"17081":17082,"17082":17083,"17083":17084,"17084":17085,"17085":17086,"17086":17087,"17087":17088,"17088":17089,"17089":17090,"17090":17091,"17091":17092,"17092":17093,"17093":17094,"17094":17095,"17095":17096,"17096":17097,"17097":17098,"17098":17099,"17099":17100,"17100":17101,"17101":17102,"17102":17103,"17103":17104,"17104":17105,"17105":17106,"17106":17107,"17107":17108,"17108":17109,"17109":17110,"17110":17111,"17111":17112,"17112":17113,"17113":17114,"17114":17115,"17115":17116,"17116":17117,"17117":17118,"17118":17119,"17119":17120,"17120":17121,"17121":17122,"17122":17123,"17123":17124,"17124":17125,"17125":17126,"17126":17127,"17127":17128,"17128":17129,"17129":17130,"17130":17131,"17131":17132,"17132":17133,"17133":17134,"17134":17135,"17135":17136,"17136":17137,"17137":17138,"17138":17139,"17139":17140,"17140":17141,"17141":17142,"17142":17143,"17143":17144,"17144":17145,"17145":17146,"17146":17147,"17147":17148,"17148":17149,"17149":17150,"17150":17151,"17151":17152,"17152":17153,"17153":17154,"17154":17155,"17155":17156,"17156":17157,"17157":17158,"17158":17159,"17159":17160,"17160":17161,"17161":17162,"17162":17163,"17163":17164,"17164":17165,"17165":17166,"17166":17167,"17167":17168,"17168":17169,"17169":17170,"17170":17171,"17171":17172,"17172":17173,"17173":17174,"17174":17175,"17175":17176,"17176":17177,"17177":17178,"17178":17179,"17179":17180,"17180":17181,"17181":17182,"17182":17183,"17183":17184,"17184":17185,"17185":17186,"17186":17187,"17187":17188,"17188":17189,"17189":17190,"17190":17191,"17191":17192,"17192":17193,"17193":17194,"17194":17195,"17195":17196,"17196":17197,"17197":17198,"17198":17199,"17199":17200,"17200":17201,"17201":17202,"17202":17203,"17203":17204,"17204":17205,"17205":17206,"17206":17207,"17207":17208,"17208":17209,"17209":17210,"17210":17211,"17211":17212,"17212":17213,"17213":17214,"17214":17215,"17215":17216,"17216":17217,"17217":17218,"17218":17219,"17219":17220,"17220":17221,"17221":17222,"17222":17223,"17223":17224,"17224":17225,"17225":17226,"17226":17227,"17227":17228,"17228":17229,"17229":17230,"17230":17231,"17231":17232,"17232":17233,"17233":17234,"17234":17235,"17235":17236,"17236":17237,"17237":17238,"17238":17239,"17239":17240,"17240":17241,"17241":17242,"17242":17243,"17243":17244,"17244":17245,"17245":17246,"17246":17247,"17247":17248,"17248":17249,"17249":17250,"17250":17251,"17251":17252,"17252":17253,"17253":17254,"17254":17255,"17255":17256,"17256":17257,"17257":17258,"17258":17259,"17259":17260,"17260":17261,"17261":17262,"17262":17263,"17263":17264,"17264":17265,"17265":17266,"17266":17267,"17267":17268,"17268":17269,"17269":17270,"17270":17271,"17271":17272,"17272":17273,"17273":17274,"17274":17275,"17275":17276,"17276":17277,"17277":17278,"17278":17279,"17279":17280,"17280":17281,"17281":17282,"17282":17283,"17283":17284,"17284":17285,"17285":17286,"17286":17287,"17287":17288,"17288":17289,"17289":17290,"17290":17291,"17291":17292,"17292":17293,"17293":17294,"17294":17295,"17295":17296,"17296":17297,"17297":17298,"17298":17299,"17299":17300,"17300":17301,"17301":17302,"17302":17303,"17303":17304,"17304":17305,"17305":17306,"17306":17307,"17307":17308,"17308":17309,"17309":17310,"17310":17311,"17311":17312,"17312":17313,"17313":17314,"17314":17315,"17315":17316,"17316":17317,"17317":17318,"17318":17319,"17319":17320,"17320":17321,"17321":17322,"17322":17323,"17323":17324,"17324":17325,"17325":17326,"17326":17327,"17327":17328,"17328":17329,"17329":17330,"17330":17331,"17331":17332,"17332":17333,"17333":17334,"17334":17335,"17335":17336,"17336":17337,"17337":17338,"17338":17339,"17339":17340,"17340":17341,"17341":17342,"17342":17343,"17343":17344,"17344":17345,"17345":17346,"17346":17347,"17347":17348,"17348":17349,"17349":17350,"17350":17351,"17351":17352,"17352":17353,"17353":17354,"17354":17355,"17355":17356,"17356":17357,"17357":17358,"17358":17359,"17359":17360,"17360":17361,"17361":17362,"17362":17363,"17363":17364,"17364":17365,"17365":17366,"17366":17367,"17367":17368,"17368":17369,"17369":17370,"17370":17371,"17371":17372,"17372":17373,"17373":17374,"17374":17375,"17375":17376,"17376":17377,"17377":17378,"17378":17379,"17379":17380,"17380":17381,"17381":17382,"17382":17383,"17383":17384,"17384":17385,"17385":17386,"17386":17387,"17387":17388,"17388":17389,"17389":17390,"17390":17391,"17391":17392,"17392":17393,"17393":17394,"17394":17395,"17395":17396,"17396":17397,"17397":17398,"17398":17399,"17399":17400,"17400":17401,"17401":17402,"17402":17403,"17403":17404,"17404":17405,"17405":17406,"17406":17407,"17407":17408,"17408":17409,"17409":17410,"17410":17411,"17411":17412,"17412":17413,"17413":17414,"17414":17415,"17415":17416,"17416":17417,"17417":17418,"17418":17419,"17419":17420,"17420":17421,"17421":17422,"17422":17423,"17423":17424,"17424":17425,"17425":17426,"17426":17427,"17427":17428,"17428":17429,"17429":17430,"17430":17431,"17431":17432,"17432":17433,"17433":17434,"17434":17435,"17435":17436,"17436":17437,"17437":17438,"17438":17439,"17439":17440,"17440":17441,"17441":17442,"17442":17443,"17443":17444,"17444":17445,"17445":17446,"17446":17447,"17447":17448,"17448":17449,"17449":17450,"17450":17451,"17451":17452,"17452":17453,"17453":17454,"17454":17455,"17455":17456,"17456":17457,"17457":17458,"17458":17459,"17459":17460,"17460":17461,"17461":17462,"17462":17463,"17463":17464,"17464":17465,"17465":17466,"17466":17467,"17467":17468,"17468":17469,"17469":17470,"17470":17471,"17471":17472,"17472":17473,"17473":17474,"17474":17475,"17475":17476,"17476":17477,"17477":17478,"17478":17479,"17479":17480,"17480":17481,"17481":17482,"17482":17483,"17483":17484,"17484":17485,"17485":17486,"17486":17487,"17487":17488,"17488":17489,"17489":17490,"17490":17491,"17491":17492,"17492":17493,"17493":17494,"17494":17495,"17495":17496,"17496":17497,"17497":17498,"17498":17499,"17499":17500,"17500":17501,"17501":17502,"17502":17503,"17503":17504,"17504":17505,"17505":17506,"17506":17507,"17507":17508,"17508":17509,"17509":17510,"17510":17511,"17511":17512,"17512":17513,"17513":17514,"17514":17515,"17515":17516,"17516":17517,"17517":17518,"17518":17519,"17519":17520,"17520":17521,"17521":17522,"17522":17523,"17523":17524,"17524":17525,"17525":17526,"17526":17527,"17527":17528,"17528":17529,"17529":17530,"17530":17531,"17531":17532,"17532":17533,"17533":17534,"17534":17535,"17535":17536,"17536":17537,"17537":17538,"17538":17539,"17539":17540,"17540":17541,"17541":17542,"17542":17543,"17543":17544,"17544":17545,"17545":17546,"17546":17547,"17547":17548,"17548":17549,"17549":17550,"17550":17551,"17551":17552,"17552":17553,"17553":17554,"17554":17555,"17555":17556,"17556":17557,"17557":17558,"17558":17559,"17559":17560,"17560":17561,"17561":17562,"17562":17563,"17563":17564,"17564":17565,"17565":17566,"17566":17567,"17567":17568,"17568":17569,"17569":17570,"17570":17571,"17571":17572,"17572":17573,"17573":17574,"17574":17575,"17575":17576,"17576":17577,"17577":17578,"17578":17579,"17579":17580,"17580":17581,"17581":17582,"17582":17583,"17583":17584,"17584":17585,"17585":17586,"17586":17587,"17587":17588,"17588":17589,"17589":17590,"17590":17591,"17591":17592,"17592":17593,"17593":17594,"17594":17595,"17595":17596,"17596":17597,"17597":17598,"17598":17599,"17599":17600,"17600":17601,"17601":17602,"17602":17603,"17603":17604,"17604":17605,"17605":17606,"17606":17607,"17607":17608,"17608":17609,"17609":17610,"17610":17611,"17611":17612,"17612":17613,"17613":17614,"17614":17615,"17615":17616,"17616":17617,"17617":17618,"17618":17619,"17619":17620,"17620":17621,"17621":17622,"17622":17623,"17623":17624,"17624":17625,"17625":17626,"17626":17627,"17627":17628,"17628":17629,"17629":17630,"17630":17631,"17631":17632,"17632":17633,"17633":17634,"17634":17635,"17635":17636,"17636":17637,"17637":17638,"17638":17639,"17639":17640,"17640":17641,"17641":17642,"17642":17643,"17643":17644,"17644":17645,"17645":17646,"17646":17647,"17647":17648,"17648":17649,"17649":17650,"17650":17651,"17651":17652,"17652":17653,"17653":17654,"17654":17655,"17655":17656,"17656":17657,"17657":17658,"17658":17659,"17659":17660,"17660":17661,"17661":17662,"17662":17663,"17663":17664,"17664":17665,"17665":17666,"17666":17667,"17667":17668,"17668":17669,"17669":17670,"17670":17671,"17671":17672,"17672":17673,"17673":17674,"17674":17675,"17675":17676,"17676":17677,"17677":17678,"17678":17679,"17679":17680,"17680":17681,"17681":17682,"17682":17683,"17683":17684,"17684":17685,"17685":17686,"17686":17687,"17687":17688,"17688":17689,"17689":17690,"17690":17691,"17691":17692,"17692":17693,"17693":17694,"17694":17695,"17695":17696,"17696":17697,"17697":17698,"17698":17699,"17699":17700,"17700":17701,"17701":17702,"17702":17703,"17703":17704,"17704":17705,"17705":17706,"17706":17707,"17707":17708,"17708":17709,"17709":17710,"17710":17711,"17711":17712,"17712":17713,"17713":17714,"17714":17715,"17715":17716,"17716":17717,"17717":17718,"17718":17719,"17719":17720,"17720":17721,"17721":17722,"17722":17723,"17723":17724,"17724":17725,"17725":17726,"17726":17727,"17727":17728,"17728":17729,"17729":17730,"17730":17731,"17731":17732,"17732":17733,"17733":17734,"17734":17735,"17735":17736,"17736":17737,"17737":17738,"17738":17739,"17739":17740,"17740":17741,"17741":17742,"17742":17743,"17743":17744,"17744":17745,"17745":17746,"17746":17747,"17747":17748,"17748":17749,"17749":17750,"17750":17751,"17751":17752,"17752":17753,"17753":17754,"17754":17755,"17755":17756,"17756":17757,"17757":17758,"17758":17759,"17759":17760,"17760":17761,"17761":17762,"17762":17763,"17763":17764,"17764":17765,"17765":17766,"17766":17767,"17767":17768,"17768":17769,"17769":17770,"17770":17771,"17771":17772,"17772":17773,"17773":17774,"17774":17775,"17775":17776,"17776":17777,"17777":17778,"17778":17779,"17779":17780,"17780":17781,"17781":17782,"17782":17783,"17783":17784,"17784":17785,"17785":17786,"17786":17787,"17787":17788,"17788":17789,"17789":17790,"17790":17791,"17791":17792,"17792":17793,"17793":17794,"17794":17795,"17795":17796,"17796":17797,"17797":17798,"17798":17799,"17799":17800,"17800":17801,"17801":17802,"17802":17803,"17803":17804,"17804":17805,"17805":17806,"17806":17807,"17807":17808,"17808":17809,"17809":17810,"17810":17811,"17811":17812,"17812":17813,"17813":17814,"17814":17815,"17815":17816,"17816":17817,"17817":17818,"17818":17819,"17819":17820,"17820":17821,"17821":17822,"17822":17823,"17823":17824,"17824":17825,"17825":17826,"17826":17827,"17827":17828,"17828":17829,"17829":17830,"17830":17831,"17831":17832,"17832":17833,"17833":17834,"17834":17835,"17835":17836,"17836":17837,"17837":17838,"17838":17839,"17839":17840,"17840":17841,"17841":17842,"17842":17843,"17843":17844,"17844":17845,"17845":17846,"17846":17847,"17847":17848,"17848":17849,"17849":17850,"17850":17851,"17851":17852,"17852":17853,"17853":17854,"17854":17855,"17855":17856,"17856":17857,"17857":17858,"17858":17859,"17859":17860,"17860":17861,"17861":17862,"17862":17863,"17863":17864,"17864":17865,"17865":17866,"17866":17867,"17867":17868,"17868":17869,"17869":17870,"17870":17871,"17871":17872,"17872":17873,"17873":17874,"17874":17875,"17875":17876,"17876":17877,"17877":17878,"17878":17879,"17879":17880,"17880":17881,"17881":17882,"17882":17883,"17883":17884,"17884":17885,"17885":17886,"17886":17887,"17887":17888,"17888":17889,"17889":17890,"17890":17891,"17891":17892,"17892":17893,"17893":17894,"17894":17895,"17895":17896,"17896":17897,"17897":17898,"17898":17899,"17899":17900,"17900":17901,"17901":17902,"17902":17903,"17903":17904,"17904":17905,"17905":17906,"17906":17907,"17907":17908,"17908":17909,"17909":17910,"17910":17911,"17911":17912,"17912":17913,"17913":17914,"17914":17915,"17915":17916,"17916":17917,"17917":17918,"17918":17919,"17919":17920,"17920":17921,"17921":17922,"17922":17923,"17923":17924,"17924":17925,"17925":17926,"17926":17927,"17927":17928,"17928":17929,"17929":17930,"17930":17931,"17931":17932,"17932":17933,"17933":17934,"17934":17935,"17935":17936,"17936":17937,"17937":17938,"17938":17939,"17939":17940,"17940":17941,"17941":17942,"17942":17943,"17943":17944,"17944":17945,"17945":17946,"17946":17947,"17947":17948,"17948":17949,"17949":17950,"17950":17951,"17951":17952,"17952":17953,"17953":17954,"17954":17955,"17955":17956,"17956":17957,"17957":17958,"17958":17959,"17959":17960,"17960":17961,"17961":17962,"17962":17963,"17963":17964,"17964":17965,"17965":17966,"17966":17967,"17967":17968,"17968":17969,"17969":17970,"17970":17971,"17971":17972,"17972":17973,"17973":17974,"17974":17975,"17975":17976,"17976":17977,"17977":17978,"17978":17979,"17979":17980,"17980":17981,"17981":17982,"17982":17983,"17983":17984,"17984":17985,"17985":17986,"17986":17987,"17987":17988,"17988":17989,"17989":17990,"17990":17991,"17991":17992,"17992":17993,"17993":17994,"17994":17995,"17995":17996,"17996":17997,"17997":17998,"17998":17999,"17999":18000,"18000":18001,"18001":18002,"18002":18003,"18003":18004,"18004":18005,"18005":18006,"18006":18007,"18007":18008,"18008":18009,"18009":18010,"18010":18011,"18011":18012,"18012":18013,"18013":18014,"18014":18015,"18015":18016,"18016":18017,"18017":18018,"18018":18019,"18019":18020,"18020":18021,"18021":18022,"18022":18023,"18023":18024,"18024":18025,"18025":18026,"18026":18027,"18027":18028,"18028":18029,"18029":18030,"18030":18031,"18031":18032,"18032":18033,"18033":18034,"18034":18035,"18035":18036,"18036":18037,"18037":18038,"18038":18039,"18039":18040,"18040":18041,"18041":18042,"18042":18043,"18043":18044,"18044":18045,"18045":18046,"18046":18047,"18047":18048,"18048":18049,"18049":18050,"18050":18051,"18051":18052,"18052":18053,"18053":18054,"18054":18055,"18055":18056,"18056":18057,"18057":18058,"18058":18059,"18059":18060,"18060":18061,"18061":18062,"18062":18063,"18063":18064,"18064":18065,"18065":18066,"18066":18067,"18067":18068,"18068":18069,"18069":18070,"18070":18071,"18071":18072,"18072":18073,"18073":18074,"18074":18075,"18075":18076,"18076":18077,"18077":18078,"18078":18079,"18079":18080,"18080":18081,"18081":18082,"18082":18083,"18083":18084,"18084":18085,"18085":18086,"18086":18087,"18087":18088,"18088":18089,"18089":18090,"18090":18091,"18091":18092,"18092":18093,"18093":18094,"18094":18095,"18095":18096,"18096":18097,"18097":18098,"18098":18099,"18099":18100,"18100":18101,"18101":18102,"18102":18103,"18103":18104,"18104":18105,"18105":18106,"18106":18107,"18107":18108,"18108":18109,"18109":18110,"18110":18111,"18111":18112,"18112":18113,"18113":18114,"18114":18115,"18115":18116,"18116":18117,"18117":18118,"18118":18119,"18119":18120,"18120":18121,"18121":18122,"18122":18123,"18123":18124,"18124":18125,"18125":18126,"18126":18127,"18127":18128,"18128":18129,"18129":18130,"18130":18131,"18131":18132,"18132":18133,"18133":18134,"18134":18135,"18135":18136,"18136":18137,"18137":18138,"18138":18139,"18139":18140,"18140":18141,"18141":18142,"18142":18143,"18143":18144,"18144":18145,"18145":18146,"18146":18147,"18147":18148,"18148":18149,"18149":18150,"18150":18151,"18151":18152,"18152":18153,"18153":18154,"18154":18155,"18155":18156,"18156":18157,"18157":18158,"18158":18159,"18159":18160,"18160":18161,"18161":18162,"18162":18163,"18163":18164,"18164":18165,"18165":18166,"18166":18167,"18167":18168,"18168":18169,"18169":18170,"18170":18171,"18171":18172,"18172":18173,"18173":18174,"18174":18175,"18175":18176,"18176":18177,"18177":18178,"18178":18179,"18179":18180,"18180":18181,"18181":18182,"18182":18183,"18183":18184,"18184":18185,"18185":18186,"18186":18187,"18187":18188,"18188":18189,"18189":18190,"18190":18191,"18191":18192,"18192":18193,"18193":18194,"18194":18195,"18195":18196,"18196":18197,"18197":18198,"18198":18199,"18199":18200,"18200":18201,"18201":18202,"18202":18203,"18203":18204,"18204":18205,"18205":18206,"18206":18207,"18207":18208,"18208":18209,"18209":18210,"18210":18211,"18211":18212,"18212":18213,"18213":18214,"18214":18215,"18215":18216,"18216":18217,"18217":18218,"18218":18219,"18219":18220,"18220":18221,"18221":18222,"18222":18223,"18223":18224,"18224":18225,"18225":18226,"18226":18227,"18227":18228,"18228":18229,"18229":18230,"18230":18231,"18231":18232,"18232":18233,"18233":18234,"18234":18235,"18235":18236,"18236":18237,"18237":18238,"18238":18239,"18239":18240,"18240":18241,"18241":18242,"18242":18243,"18243":18244,"18244":18245,"18245":18246,"18246":18247,"18247":18248,"18248":18249,"18249":18250,"18250":18251,"18251":18252,"18252":18253,"18253":18254,"18254":18255,"18255":18256,"18256":18257,"18257":18258,"18258":18259,"18259":18260,"18260":18261,"18261":18262,"18262":18263,"18263":18264,"18264":18265,"18265":18266,"18266":18267,"18267":18268,"18268":18269,"18269":18270,"18270":18271,"18271":18272,"18272":18273,"18273":18274,"18274":18275,"18275":18276,"18276":18277,"18277":18278,"18278":18279,"18279":18280,"18280":18281,"18281":18282,"18282":18283,"18283":18284,"18284":18285,"18285":18286,"18286":18287,"18287":18288,"18288":18289,"18289":18290,"18290":18291,"18291":18292,"18292":18293,"18293":18294,"18294":18295,"18295":18296,"18296":18297,"18297":18298,"18298":18299,"18299":18300,"18300":18301,"18301":18302,"18302":18303,"18303":18304,"18304":18305,"18305":18306,"18306":18307,"18307":18308,"18308":18309,"18309":18310,"18310":18311,"18311":18312,"18312":18313,"18313":18314,"18314":18315,"18315":18316,"18316":18317,"18317":18318,"18318":18319,"18319":18320,"18320":18321,"18321":18322,"18322":18323,"18323":18324,"18324":18325,"18325":18326,"18326":18327,"18327":18328,"18328":18329,"18329":18330,"18330":18331,"18331":18332,"18332":18333,"18333":18334,"18334":18335,"18335":18336,"18336":18337,"18337":18338,"18338":18339,"18339":18340,"18340":18341,"18341":18342,"18342":18343,"18343":18344,"18344":18345,"18345":18346,"18346":18347,"18347":18348,"18348":18349,"18349":18350,"18350":18351,"18351":18352,"18352":18353,"18353":18354,"18354":18355,"18355":18356,"18356":18357,"18357":18358,"18358":18359,"18359":18360,"18360":18361,"18361":18362,"18362":18363,"18363":18364,"18364":18365,"18365":18366,"18366":18367,"18367":18368,"18368":18369,"18369":18370,"18370":18371,"18371":18372,"18372":18373,"18373":18374,"18374":18375,"18375":18376,"18376":18377,"18377":18378,"18378":18379,"18379":18380,"18380":18381,"18381":18382,"18382":18383,"18383":18384,"18384":18385,"18385":18386,"18386":18387,"18387":18388,"18388":18389,"18389":18390,"18390":18391,"18391":18392,"18392":18393,"18393":18394,"18394":18395,"18395":18396,"18396":18397,"18397":18398,"18398":18399,"18399":18400,"18400":18401,"18401":18402,"18402":18403,"18403":18404,"18404":18405,"18405":18406,"18406":18407,"18407":18408,"18408":18409,"18409":18410,"18410":18411,"18411":18412,"18412":18413,"18413":18414,"18414":18415,"18415":18416,"18416":18417,"18417":18418,"18418":18419,"18419":18420,"18420":18421,"18421":18422,"18422":18423,"18423":18424,"18424":18425,"18425":18426,"18426":18427,"18427":18428,"18428":18429,"18429":18430,"18430":18431,"18431":18432,"18432":18433,"18433":18434,"18434":18435,"18435":18436,"18436":18437,"18437":18438,"18438":18439,"18439":18440,"18440":18441,"18441":18442,"18442":18443,"18443":18444,"18444":18445,"18445":18446,"18446":18447,"18447":18448,"18448":18449,"18449":18450,"18450":18451,"18451":18452,"18452":18453,"18453":18454,"18454":18455,"18455":18456,"18456":18457,"18457":18458,"18458":18459,"18459":18460,"18460":18461,"18461":18462,"18462":18463,"18463":18464,"18464":18465,"18465":18466,"18466":18467,"18467":18468,"18468":18469,"18469":18470,"18470":18471,"18471":18472,"18472":18473,"18473":18474,"18474":18475,"18475":18476,"18476":18477,"18477":18478,"18478":18479,"18479":18480,"18480":18481,"18481":18482,"18482":18483,"18483":18484,"18484":18485,"18485":18486,"18486":18487,"18487":18488,"18488":18489,"18489":18490,"18490":18491,"18491":18492,"18492":18493,"18493":18494,"18494":18495,"18495":18496,"18496":18497,"18497":18498,"18498":18499,"18499":18500,"18500":18501,"18501":18502,"18502":18503,"18503":18504,"18504":18505,"18505":18506,"18506":18507,"18507":18508,"18508":18509,"18509":18510,"18510":18511,"18511":18512,"18512":18513,"18513":18514,"18514":18515,"18515":18516,"18516":18517,"18517":18518,"18518":18519,"18519":18520,"18520":18521,"18521":18522,"18522":18523,"18523":18524,"18524":18525,"18525":18526,"18526":18527,"18527":18528,"18528":18529,"18529":18530,"18530":18531,"18531":18532,"18532":18533,"18533":18534,"18534":18535,"18535":18536,"18536":18537,"18537":18538,"18538":18539,"18539":18540,"18540":18541,"18541":18542,"18542":18543,"18543":18544,"18544":18545,"18545":18546,"18546":18547,"18547":18548,"18548":18549,"18549":18550,"18550":18551,"18551":18552,"18552":18553,"18553":18554,"18554":18555,"18555":18556,"18556":18557,"18557":18558,"18558":18559,"18559":18560,"18560":18561,"18561":18562,"18562":18563,"18563":18564,"18564":18565,"18565":18566,"18566":18567,"18567":18568,"18568":18569,"18569":18570,"18570":18571,"18571":18572,"18572":18573,"18573":18574,"18574":18575,"18575":18576,"18576":18577,"18577":18578,"18578":18579,"18579":18580,"18580":18581,"18581":18582,"18582":18583,"18583":18584,"18584":18585,"18585":18586,"18586":18587,"18587":18588,"18588":18589,"18589":18590,"18590":18591,"18591":18592,"18592":18593,"18593":18594,"18594":18595,"18595":18596,"18596":18597,"18597":18598,"18598":18599,"18599":18600,"18600":18601,"18601":18602,"18602":18603,"18603":18604,"18604":18605,"18605":18606,"18606":18607,"18607":18608,"18608":18609,"18609":18610,"18610":18611,"18611":18612,"18612":18613,"18613":18614,"18614":18615,"18615":18616,"18616":18617,"18617":18618,"18618":18619,"18619":18620,"18620":18621,"18621":18622,"18622":18623,"18623":18624,"18624":18625,"18625":18626,"18626":18627,"18627":18628,"18628":18629,"18629":18630,"18630":18631,"18631":18632,"18632":18633,"18633":18634,"18634":18635,"18635":18636,"18636":18637,"18637":18638,"18638":18639,"18639":18640,"18640":18641,"18641":18642,"18642":18643,"18643":18644,"18644":18645,"18645":18646,"18646":18647,"18647":18648,"18648":18649,"18649":18650,"18650":18651,"18651":18652,"18652":18653,"18653":18654,"18654":18655,"18655":18656,"18656":18657,"18657":18658,"18658":18659,"18659":18660,"18660":18661,"18661":18662,"18662":18663,"18663":18664,"18664":18665,"18665":18666,"18666":18667,"18667":18668,"18668":18669,"18669":18670,"18670":18671,"18671":18672,"18672":18673,"18673":18674,"18674":18675,"18675":18676,"18676":18677,"18677":18678,"18678":18679,"18679":18680,"18680":18681,"18681":18682,"18682":18683,"18683":18684,"18684":18685,"18685":18686,"18686":18687,"18687":18688,"18688":18689,"18689":18690,"18690":18691,"18691":18692,"18692":18693,"18693":18694,"18694":18695,"18695":18696,"18696":18697,"18697":18698,"18698":18699,"18699":18700,"18700":18701,"18701":18702,"18702":18703,"18703":18704,"18704":18705,"18705":18706,"18706":18707,"18707":18708,"18708":18709,"18709":18710,"18710":18711,"18711":18712,"18712":18713,"18713":18714,"18714":18715,"18715":18716,"18716":18717,"18717":18718,"18718":18719,"18719":18720,"18720":18721,"18721":18722,"18722":18723,"18723":18724,"18724":18725,"18725":18726,"18726":18727,"18727":18728,"18728":18729,"18729":18730,"18730":18731,"18731":18732,"18732":18733,"18733":18734,"18734":18735,"18735":18736,"18736":18737,"18737":18738,"18738":18739,"18739":18740,"18740":18741,"18741":18742,"18742":18743,"18743":18744,"18744":18745,"18745":18746,"18746":18747,"18747":18748,"18748":18749,"18749":18750,"18750":18751,"18751":18752,"18752":18753,"18753":18754,"18754":18755,"18755":18756,"18756":18757,"18757":18758,"18758":18759,"18759":18760,"18760":18761,"18761":18762,"18762":18763,"18763":18764,"18764":18765,"18765":18766,"18766":18767,"18767":18768,"18768":18769,"18769":18770,"18770":18771,"18771":18772,"18772":18773,"18773":18774,"18774":18775,"18775":18776,"18776":18777,"18777":18778,"18778":18779,"18779":18780,"18780":18781,"18781":18782,"18782":18783,"18783":18784,"18784":18785,"18785":18786,"18786":18787,"18787":18788,"18788":18789,"18789":18790,"18790":18791,"18791":18792,"18792":18793,"18793":18794,"18794":18795,"18795":18796,"18796":18797,"18797":18798,"18798":18799,"18799":18800,"18800":18801,"18801":18802,"18802":18803,"18803":18804,"18804":18805,"18805":18806,"18806":18807,"18807":18808,"18808":18809,"18809":18810,"18810":18811,"18811":18812,"18812":18813,"18813":18814,"18814":18815,"18815":18816,"18816":18817,"18817":18818,"18818":18819,"18819":18820,"18820":18821,"18821":18822,"18822":18823,"18823":18824,"18824":18825,"18825":18826,"18826":18827,"18827":18828,"18828":18829,"18829":18830,"18830":18831,"18831":18832,"18832":18833,"18833":18834,"18834":18835,"18835":18836,"18836":18837,"18837":18838,"18838":18839,"18839":18840,"18840":18841,"18841":18842,"18842":18843,"18843":18844,"18844":18845,"18845":18846,"18846":18847,"18847":18848,"18848":18849,"18849":18850,"18850":18851,"18851":18852,"18852":18853,"18853":18854,"18854":18855,"18855":18856,"18856":18857,"18857":18858,"18858":18859,"18859":18860,"18860":18861,"18861":18862,"18862":18863,"18863":18864,"18864":18865,"18865":18866,"18866":18867,"18867":18868,"18868":18869,"18869":18870,"18870":18871,"18871":18872,"18872":18873,"18873":18874,"18874":18875,"18875":18876,"18876":18877,"18877":18878,"18878":18879,"18879":18880,"18880":18881,"18881":18882,"18882":18883,"18883":18884,"18884":18885,"18885":18886,"18886":18887,"18887":18888,"18888":18889,"18889":18890,"18890":18891,"18891":18892,"18892":18893,"18893":18894,"18894":18895,"18895":18896,"18896":18897,"18897":18898,"18898":18899,"18899":18900,"18900":18901,"18901":18902,"18902":18903,"18903":18904,"18904":18905,"18905":18906,"18906":18907,"18907":18908,"18908":18909,"18909":18910,"18910":18911,"18911":18912,"18912":18913,"18913":18914,"18914":18915,"18915":18916,"18916":18917,"18917":18918,"18918":18919,"18919":18920,"18920":18921,"18921":18922,"18922":18923,"18923":18924,"18924":18925,"18925":18926,"18926":18927,"18927":18928,"18928":18929,"18929":18930,"18930":18931,"18931":18932,"18932":18933,"18933":18934,"18934":18935,"18935":18936,"18936":18937,"18937":18938,"18938":18939,"18939":18940,"18940":18941,"18941":18942,"18942":18943,"18943":18944,"18944":18945,"18945":18946,"18946":18947,"18947":18948,"18948":18949,"18949":18950,"18950":18951,"18951":18952,"18952":18953,"18953":18954,"18954":18955,"18955":18956,"18956":18957,"18957":18958,"18958":18959,"18959":18960,"18960":18961,"18961":18962,"18962":18963,"18963":18964,"18964":18965,"18965":18966,"18966":18967,"18967":18968,"18968":18969,"18969":18970,"18970":18971,"18971":18972,"18972":18973,"18973":18974,"18974":18975,"18975":18976,"18976":18977,"18977":18978,"18978":18979,"18979":18980,"18980":18981,"18981":18982,"18982":18983,"18983":18984,"18984":18985,"18985":18986,"18986":18987,"18987":18988,"18988":18989,"18989":18990,"18990":18991,"18991":18992,"18992":18993,"18993":18994,"18994":18995,"18995":18996,"18996":18997,"18997":18998,"18998":18999,"18999":19000,"19000":19001,"19001":19002,"19002":19003,"19003":19004,"19004":19005,"19005":19006,"19006":19007,"19007":19008,"19008":19009,"19009":19010,"19010":19011,"19011":19012,"19012":19013,"19013":19014,"19014":19015,"19015":19016,"19016":19017,"19017":19018,"19018":19019,"19019":19020,"19020":19021,"19021":19022,"19022":19023,"19023":19024,"19024":19025,"19025":19026,"19026":19027,"19027":19028,"19028":19029,"19029":19030,"19030":19031,"19031":19032,"19032":19033,"19033":19034,"19034":19035,"19035":19036,"19036":19037,"19037":19038,"19038":19039,"19039":19040,"19040":19041,"19041":19042,"19042":19043,"19043":19044,"19044":19045,"19045":19046,"19046":19047,"19047":19048,"19048":19049,"19049":19050,"19050":19051,"19051":19052,"19052":19053,"19053":19054,"19054":19055,"19055":19056,"19056":19057,"19057":19058,"19058":19059,"19059":19060,"19060":19061,"19061":19062,"19062":19063,"19063":19064,"19064":19065,"19065":19066,"19066":19067,"19067":19068,"19068":19069,"19069":19070,"19070":19071,"19071":19072,"19072":19073,"19073":19074,"19074":19075,"19075":19076,"19076":19077,"19077":19078,"19078":19079,"19079":19080,"19080":19081,"19081":19082,"19082":19083,"19083":19084,"19084":19085,"19085":19086,"19086":19087,"19087":19088,"19088":19089,"19089":19090,"19090":19091,"19091":19092,"19092":19093,"19093":19094,"19094":19095,"19095":19096,"19096":19097,"19097":19098,"19098":19099,"19099":19100,"19100":19101,"19101":19102,"19102":19103,"19103":19104,"19104":19105,"19105":19106,"19106":19107,"19107":19108,"19108":19109,"19109":19110,"19110":19111,"19111":19112,"19112":19113,"19113":19114,"19114":19115,"19115":19116,"19116":19117,"19117":19118,"19118":19119,"19119":19120,"19120":19121,"19121":19122,"19122":19123,"19123":19124,"19124":19125,"19125":19126,"19126":19127,"19127":19128,"19128":19129,"19129":19130,"19130":19131,"19131":19132,"19132":19133,"19133":19134,"19134":19135,"19135":19136,"19136":19137,"19137":19138,"19138":19139,"19139":19140,"19140":19141,"19141":19142,"19142":19143,"19143":19144,"19144":19145,"19145":19146,"19146":19147,"19147":19148,"19148":19149,"19149":19150,"19150":19151,"19151":19152,"19152":19153,"19153":19154,"19154":19155,"19155":19156,"19156":19157,"19157":19158,"19158":19159,"19159":19160,"19160":19161,"19161":19162,"19162":19163,"19163":19164,"19164":19165,"19165":19166,"19166":19167,"19167":19168,"19168":19169,"19169":19170,"19170":19171,"19171":19172,"19172":19173,"19173":19174,"19174":19175,"19175":19176,"19176":19177,"19177":19178,"19178":19179,"19179":19180,"19180":19181,"19181":19182,"19182":19183,"19183":19184,"19184":19185,"19185":19186,"19186":19187,"19187":19188,"19188":19189,"19189":19190,"19190":19191,"19191":19192,"19192":19193,"19193":19194,"19194":19195,"19195":19196,"19196":19197,"19197":19198,"19198":19199,"19199":19200,"19200":19201,"19201":19202,"19202":19203,"19203":19204,"19204":19205,"19205":19206,"19206":19207,"19207":19208,"19208":19209,"19209":19210,"19210":19211,"19211":19212,"19212":19213,"19213":19214,"19214":19215,"19215":19216,"19216":19217,"19217":19218,"19218":19219,"19219":19220,"19220":19221,"19221":19222,"19222":19223,"19223":19224,"19224":19225,"19225":19226,"19226":19227,"19227":19228,"19228":19229,"19229":19230,"19230":19231,"19231":19232,"19232":19233,"19233":19234,"19234":19235,"19235":19236,"19236":19237,"19237":19238,"19238":19239,"19239":19240,"19240":19241,"19241":19242,"19242":19243,"19243":19244,"19244":19245,"19245":19246,"19246":19247,"19247":19248,"19248":19249,"19249":19250,"19250":19251,"19251":19252,"19252":19253,"19253":19254,"19254":19255,"19255":19256,"19256":19257,"19257":19258,"19258":19259,"19259":19260,"19260":19261,"19261":19262,"19262":19263,"19263":19264,"19264":19265,"19265":19266,"19266":19267,"19267":19268,"19268":19269,"19269":19270,"19270":19271,"19271":19272,"19272":19273,"19273":19274,"19274":19275,"19275":19276,"19276":19277,"19277":19278,"19278":19279,"19279":19280,"19280":19281,"19281":19282,"19282":19283,"19283":19284,"19284":19285,"19285":19286,"19286":19287,"19287":19288,"19288":19289,"19289":19290,"19290":19291,"19291":19292,"19292":19293,"19293":19294,"19294":19295,"19295":19296,"19296":19297,"19297":19298,"19298":19299,"19299":19300,"19300":19301,"19301":19302,"19302":19303,"19303":19304,"19304":19305,"19305":19306,"19306":19307,"19307":19308,"19308":19309,"19309":19310,"19310":19311,"19311":19312,"19312":19313,"19313":19314,"19314":19315,"19315":19316,"19316":19317,"19317":19318,"19318":19319,"19319":19320,"19320":19321,"19321":19322,"19322":19323,"19323":19324,"19324":19325,"19325":19326,"19326":19327,"19327":19328,"19328":19329,"19329":19330,"19330":19331,"19331":19332,"19332":19333,"19333":19334,"19334":19335,"19335":19336,"19336":19337,"19337":19338,"19338":19339,"19339":19340,"19340":19341,"19341":19342,"19342":19343,"19343":19344,"19344":19345,"19345":19346,"19346":19347,"19347":19348,"19348":19349,"19349":19350,"19350":19351,"19351":19352,"19352":19353,"19353":19354,"19354":19355,"19355":19356,"19356":19357,"19357":19358,"19358":19359,"19359":19360,"19360":19361,"19361":19362,"19362":19363,"19363":19364,"19364":19365,"19365":19366,"19366":19367,"19367":19368,"19368":19369,"19369":19370,"19370":19371,"19371":19372,"19372":19373,"19373":19374,"19374":19375,"19375":19376,"19376":19377,"19377":19378,"19378":19379,"19379":19380,"19380":19381,"19381":19382,"19382":19383,"19383":19384,"19384":19385,"19385":19386,"19386":19387,"19387":19388,"19388":19389,"19389":19390,"19390":19391,"19391":19392,"19392":19393,"19393":19394,"19394":19395,"19395":19396,"19396":19397,"19397":19398,"19398":19399,"19399":19400,"19400":19401,"19401":19402,"19402":19403,"19403":19404,"19404":19405,"19405":19406,"19406":19407,"19407":19408,"19408":19409,"19409":19410,"19410":19411,"19411":19412,"19412":19413,"19413":19414,"19414":19415,"19415":19416,"19416":19417,"19417":19418,"19418":19419,"19419":19420,"19420":19421,"19421":19422,"19422":19423,"19423":19424,"19424":19425,"19425":19426,"19426":19427,"19427":19428,"19428":19429,"19429":19430,"19430":19431,"19431":19432,"19432":19433,"19433":19434,"19434":19435,"19435":19436,"19436":19437,"19437":19438,"19438":19439,"19439":19440,"19440":19441,"19441":19442,"19442":19443,"19443":19444,"19444":19445,"19445":19446,"19446":19447,"19447":19448,"19448":19449,"19449":19450,"19450":19451,"19451":19452,"19452":19453,"19453":19454,"19454":19455,"19455":19456,"19456":19457,"19457":19458,"19458":19459,"19459":19460,"19460":19461,"19461":19462,"19462":19463,"19463":19464,"19464":19465,"19465":19466,"19466":19467,"19467":19468,"19468":19469,"19469":19470,"19470":19471,"19471":19472,"19472":19473,"19473":19474,"19474":19475,"19475":19476,"19476":19477,"19477":19478,"19478":19479,"19479":19480,"19480":19481,"19481":19482,"19482":19483,"19483":19484,"19484":19485,"19485":19486,"19486":19487,"19487":19488,"19488":19489,"19489":19490,"19490":19491,"19491":19492,"19492":19493,"19493":19494,"19494":19495,"19495":19496,"19496":19497,"19497":19498,"19498":19499,"19499":19500,"19500":19501,"19501":19502,"19502":19503,"19503":19504,"19504":19505,"19505":19506,"19506":19507,"19507":19508,"19508":19509,"19509":19510,"19510":19511,"19511":19512,"19512":19513,"19513":19514,"19514":19515,"19515":19516,"19516":19517,"19517":19518,"19518":19519,"19519":19520,"19520":19521,"19521":19522,"19522":19523,"19523":19524,"19524":19525,"19525":19526,"19526":19527,"19527":19528,"19528":19529,"19529":19530,"19530":19531,"19531":19532,"19532":19533,"19533":19534,"19534":19535,"19535":19536,"19536":19537,"19537":19538,"19538":19539,"19539":19540,"19540":19541,"19541":19542,"19542":19543,"19543":19544,"19544":19545,"19545":19546,"19546":19547,"19547":19548,"19548":19549,"19549":19550,"19550":19551,"19551":19552,"19552":19553,"19553":19554,"19554":19555,"19555":19556,"19556":19557,"19557":19558,"19558":19559,"19559":19560,"19560":19561,"19561":19562,"19562":19563,"19563":19564,"19564":19565,"19565":19566,"19566":19567,"19567":19568,"19568":19569,"19569":19570,"19570":19571,"19571":19572,"19572":19573,"19573":19574,"19574":19575,"19575":19576,"19576":19577,"19577":19578,"19578":19579,"19579":19580,"19580":19581,"19581":19582,"19582":19583,"19583":19584,"19584":19585,"19585":19586,"19586":19587,"19587":19588,"19588":19589,"19589":19590,"19590":19591,"19591":19592,"19592":19593,"19593":19594,"19594":19595,"19595":19596,"19596":19597,"19597":19598,"19598":19599,"19599":19600,"19600":19601,"19601":19602,"19602":19603,"19603":19604,"19604":19605,"19605":19606,"19606":19607,"19607":19608,"19608":19609,"19609":19610,"19610":19611,"19611":19612,"19612":19613,"19613":19614,"19614":19615,"19615":19616,"19616":19617,"19617":19618,"19618":19619,"19619":19620,"19620":19621,"19621":19622,"19622":19623,"19623":19624,"19624":19625,"19625":19626,"19626":19627,"19627":19628,"19628":19629,"19629":19630,"19630":19631,"19631":19632,"19632":19633,"19633":19634,"19634":19635,"19635":19636,"19636":19637,"19637":19638,"19638":19639,"19639":19640,"19640":19641,"19641":19642,"19642":19643,"19643":19644,"19644":19645,"19645":19646,"19646":19647,"19647":19648,"19648":19649,"19649":19650,"19650":19651,"19651":19652,"19652":19653,"19653":19654,"19654":19655,"19655":19656,"19656":19657,"19657":19658,"19658":19659,"19659":19660,"19660":19661,"19661":19662,"19662":19663,"19663":19664,"19664":19665,"19665":19666,"19666":19667,"19667":19668,"19668":19669,"19669":19670,"19670":19671,"19671":19672,"19672":19673,"19673":19674,"19674":19675,"19675":19676,"19676":19677,"19677":19678,"19678":19679,"19679":19680,"19680":19681,"19681":19682,"19682":19683,"19683":19684,"19684":19685,"19685":19686,"19686":19687,"19687":19688,"19688":19689,"19689":19690,"19690":19691,"19691":19692,"19692":19693,"19693":19694,"19694":19695,"19695":19696,"19696":19697,"19697":19698,"19698":19699,"19699":19700,"19700":19701,"19701":19702,"19702":19703,"19703":19704,"19704":19705,"19705":19706,"19706":19707,"19707":19708,"19708":19709,"19709":19710,"19710":19711,"19711":19712,"19712":19713,"19713":19714,"19714":19715,"19715":19716,"19716":19717,"19717":19718,"19718":19719,"19719":19720,"19720":19721,"19721":19722,"19722":19723,"19723":19724,"19724":19725,"19725":19726,"19726":19727,"19727":19728,"19728":19729,"19729":19730,"19730":19731,"19731":19732,"19732":19733,"19733":19734,"19734":19735,"19735":19736,"19736":19737,"19737":19738,"19738":19739,"19739":19740,"19740":19741,"19741":19742,"19742":19743,"19743":19744,"19744":19745,"19745":19746,"19746":19747,"19747":19748,"19748":19749,"19749":19750,"19750":19751,"19751":19752,"19752":19753,"19753":19754,"19754":19755,"19755":19756,"19756":19757,"19757":19758,"19758":19759,"19759":19760,"19760":19761,"19761":19762,"19762":19763,"19763":19764,"19764":19765,"19765":19766,"19766":19767,"19767":19768,"19768":19769,"19769":19770,"19770":19771,"19771":19772,"19772":19773,"19773":19774,"19774":19775,"19775":19776,"19776":19777,"19777":19778,"19778":19779,"19779":19780,"19780":19781,"19781":19782,"19782":19783,"19783":19784,"19784":19785,"19785":19786,"19786":19787,"19787":19788,"19788":19789,"19789":19790,"19790":19791,"19791":19792,"19792":19793,"19793":19794,"19794":19795,"19795":19796,"19796":19797,"19797":19798,"19798":19799,"19799":19800,"19800":19801,"19801":19802,"19802":19803,"19803":19804,"19804":19805,"19805":19806,"19806":19807,"19807":19808,"19808":19809,"19809":19810,"19810":19811,"19811":19812,"19812":19813,"19813":19814,"19814":19815,"19815":19816,"19816":19817,"19817":19818,"19818":19819,"19819":19820,"19820":19821,"19821":19822,"19822":19823,"19823":19824,"19824":19825,"19825":19826,"19826":19827,"19827":19828,"19828":19829,"19829":19830,"19830":19831,"19831":19832,"19832":19833,"19833":19834,"19834":19835,"19835":19836,"19836":19837,"19837":19838,"19838":19839,"19839":19840,"19840":19841,"19841":19842,"19842":19843,"19843":19844,"19844":19845,"19845":19846,"19846":19847,"19847":19848,"19848":19849,"19849":19850,"19850":19851,"19851":19852,"19852":19853,"19853":19854,"19854":19855,"19855":19856,"19856":19857,"19857":19858,"19858":19859,"19859":19860,"19860":19861,"19861":19862,"19862":19863,"19863":19864,"19864":19865,"19865":19866,"19866":19867,"19867":19868,"19868":19869,"19869":19870,"19870":19871,"19871":19872,"19872":19873,"19873":19874,"19874":19875,"19875":19876,"19876":19877,"19877":19878,"19878":19879,"19879":19880,"19880":19881,"19881":19882,"19882":19883,"19883":19884,"19884":19885,"19885":19886,"19886":19887,"19887":19888,"19888":19889,"19889":19890,"19890":19891,"19891":19892,"19892":19893,"19893":19894,"19894":19895,"19895":19896,"19896":19897,"19897":19898,"19898":19899,"19899":19900,"19900":19901,"19901":19902,"19902":19903,"19903":19904,"19904":19905,"19905":19906,"19906":19907,"19907":19908,"19908":19909,"19909":19910,"19910":19911,"19911":19912,"19912":19913,"19913":19914,"19914":19915,"19915":19916,"19916":19917,"19917":19918,"19918":19919,"19919":19920,"19920":19921,"19921":19922,"19922":19923,"19923":19924,"19924":19925,"19925":19926,"19926":19927,"19927":19928,"19928":19929,"19929":19930,"19930":19931,"19931":19932,"19932":19933,"19933":19934,"19934":19935,"19935":19936,"19936":19937,"19937":19938,"19938":19939,"19939":19940,"19940":19941,"19941":19942,"19942":19943,"19943":19944,"19944":19945,"19945":19946,"19946":19947,"19947":19948,"19948":19949,"19949":19950,"19950":19951,"19951":19952,"19952":19953,"19953":19954,"19954":19955,"19955":19956,"19956":19957,"19957":19958,"19958":19959,"19959":19960,"19960":19961,"19961":19962,"19962":19963,"19963":19964,"19964":19965,"19965":19966,"19966":19967,"19967":19968,"19968":19969,"19969":19970,"19970":19971,"19971":19972,"19972":19973,"19973":19974,"19974":19975,"19975":19976,"19976":19977,"19977":19978,"19978":19979,"19979":19980,"19980":19981,"19981":19982,"19982":19983,"19983":19984,"19984":19985,"19985":19986,"19986":19987,"19987":19988,"19988":19989,"19989":19990,"19990":19991,"19991":19992,"19992":19993,"19993":19994,"19994":19995,"19995":19996,"19996":19997,"19997":19998,"19998":19999,"19999":20000,"20000":20001,"20001":20002,"20002":20003,"20003":20004,"20004":20005,"20005":20006,"20006":20007,"20007":20008,"20008":20009,"20009":20010,"20010":20011,"20011":20012,"20012":20013,"20013":20014,"20014":20015,"20015":20016,"20016":20017,"20017":20018,"20018":20019,"20019":20020,"20020":20021,"20021":20022,"20022":20023,"20023":20024,"20024":20025,"20025":20026,"20026":20027,"20027":20028,"20028":20029,"20029":20030,"20030":20031,"20031":20032,"20032":20033,"20033":20034,"20034":20035,"20035":20036,"20036":20037,"20037":20038,"20038":20039,"20039":20040,"20040":20041,"20041":20042,"20042":20043,"20043":20044,"20044":20045,"20045":20046,"20046":20047,"20047":20048,"20048":20049,"20049":20050,"20050":20051,"20051":20052,"20052":20053,"20053":20054,"20054":20055,"20055":20056,"20056":20057,"20057":20058,"20058":20059,"20059":20060,"20060":20061,"20061":20062,"20062":20063,"20063":20064,"20064":20065,"20065":20066,"20066":20067,"20067":20068,"20068":20069,"20069":20070,"20070":20071,"20071":20072,"20072":20073,"20073":20074,"20074":20075,"20075":20076,"20076":20077,"20077":20078,"20078":20079,"20079":20080,"20080":20081,"20081":20082,"20082":20083,"20083":20084,"20084":20085,"20085":20086,"20086":20087,"20087":20088,"20088":20089,"20089":20090,"20090":20091,"20091":20092,"20092":20093,"20093":20094,"20094":20095,"20095":20096,"20096":20097,"20097":20098,"20098":20099,"20099":20100,"20100":20101,"20101":20102,"20102":20103,"20103":20104,"20104":20105,"20105":20106,"20106":20107,"20107":20108,"20108":20109,"20109":20110,"20110":20111,"20111":20112,"20112":20113,"20113":20114,"20114":20115,"20115":20116,"20116":20117,"20117":20118,"20118":20119,"20119":20120,"20120":20121,"20121":20122,"20122":20123,"20123":20124,"20124":20125,"20125":20126,"20126":20127,"20127":20128,"20128":20129,"20129":20130,"20130":20131,"20131":20132,"20132":20133,"20133":20134,"20134":20135,"20135":20136,"20136":20137,"20137":20138,"20138":20139,"20139":20140,"20140":20141,"20141":20142,"20142":20143,"20143":20144,"20144":20145,"20145":20146,"20146":20147,"20147":20148,"20148":20149,"20149":20150,"20150":20151,"20151":20152,"20152":20153,"20153":20154,"20154":20155,"20155":20156,"20156":20157,"20157":20158,"20158":20159,"20159":20160,"20160":20161,"20161":20162,"20162":20163,"20163":20164,"20164":20165,"20165":20166,"20166":20167,"20167":20168,"20168":20169,"20169":20170,"20170":20171,"20171":20172,"20172":20173,"20173":20174,"20174":20175,"20175":20176,"20176":20177,"20177":20178,"20178":20179,"20179":20180,"20180":20181,"20181":20182,"20182":20183,"20183":20184,"20184":20185,"20185":20186,"20186":20187,"20187":20188,"20188":20189,"20189":20190,"20190":20191,"20191":20192,"20192":20193,"20193":20194,"20194":20195,"20195":20196,"20196":20197,"20197":20198,"20198":20199,"20199":20200,"20200":20201,"20201":20202,"20202":20203,"20203":20204,"20204":20205,"20205":20206,"20206":20207,"20207":20208,"20208":20209,"20209":20210,"20210":20211,"20211":20212,"20212":20213,"20213":20214,"20214":20215,"20215":20216,"20216":20217,"20217":20218,"20218":20219,"20219":20220,"20220":20221,"20221":20222,"20222":20223,"20223":20224,"20224":20225,"20225":20226,"20226":20227,"20227":20228,"20228":20229,"20229":20230,"20230":20231,"20231":20232,"20232":20233,"20233":20234,"20234":20235,"20235":20236,"20236":20237,"20237":20238,"20238":20239,"20239":20240,"20240":20241,"20241":20242,"20242":20243,"20243":20244,"20244":20245,"20245":20246,"20246":20247,"20247":20248,"20248":20249,"20249":20250,"20250":20251,"20251":20252,"20252":20253,"20253":20254,"20254":20255,"20255":20256,"20256":20257,"20257":20258,"20258":20259,"20259":20260,"20260":20261,"20261":20262,"20262":20263,"20263":20264,"20264":20265,"20265":20266,"20266":20267,"20267":20268,"20268":20269,"20269":20270,"20270":20271,"20271":20272,"20272":20273,"20273":20274,"20274":20275,"20275":20276,"20276":20277,"20277":20278,"20278":20279,"20279":20280,"20280":20281,"20281":20282,"20282":20283,"20283":20284,"20284":20285,"20285":20286,"20286":20287,"20287":20288,"20288":20289,"20289":20290,"20290":20291,"20291":20292,"20292":20293,"20293":20294,"20294":20295,"20295":20296,"20296":20297,"20297":20298,"20298":20299,"20299":20300,"20300":20301,"20301":20302,"20302":20303,"20303":20304,"20304":20305,"20305":20306,"20306":20307,"20307":20308,"20308":20309,"20309":20310,"20310":20311,"20311":20312,"20312":20313,"20313":20314,"20314":20315,"20315":20316,"20316":20317,"20317":20318,"20318":20319,"20319":20320,"20320":20321,"20321":20322,"20322":20323,"20323":20324,"20324":20325,"20325":20326,"20326":20327,"20327":20328,"20328":20329,"20329":20330,"20330":20331,"20331":20332,"20332":20333,"20333":20334,"20334":20335,"20335":20336,"20336":20337,"20337":20338,"20338":20339,"20339":20340,"20340":20341,"20341":20342,"20342":20343,"20343":20344,"20344":20345,"20345":20346,"20346":20347,"20347":20348,"20348":20349,"20349":20350,"20350":20351,"20351":20352,"20352":20353,"20353":20354,"20354":20355,"20355":20356,"20356":20357,"20357":20358,"20358":20359,"20359":20360,"20360":20361,"20361":20362,"20362":20363,"20363":20364,"20364":20365,"20365":20366,"20366":20367,"20367":20368,"20368":20369,"20369":20370,"20370":20371,"20371":20372,"20372":20373,"20373":20374,"20374":20375,"20375":20376,"20376":20377,"20377":20378,"20378":20379,"20379":20380,"20380":20381,"20381":20382,"20382":20383,"20383":20384,"20384":20385,"20385":20386,"20386":20387,"20387":20388,"20388":20389,"20389":20390,"20390":20391,"20391":20392,"20392":20393,"20393":20394,"20394":20395,"20395":20396,"20396":20397,"20397":20398,"20398":20399,"20399":20400,"20400":20401,"20401":20402,"20402":20403,"20403":20404,"20404":20405,"20405":20406,"20406":20407,"20407":20408,"20408":20409,"20409":20410,"20410":20411,"20411":20412,"20412":20413,"20413":20414,"20414":20415,"20415":20416,"20416":20417,"20417":20418,"20418":20419,"20419":20420,"20420":20421,"20421":20422,"20422":20423,"20423":20424,"20424":20425,"20425":20426,"20426":20427,"20427":20428,"20428":20429,"20429":20430,"20430":20431,"20431":20432,"20432":20433,"20433":20434,"20434":20435,"20435":20436,"20436":20437,"20437":20438,"20438":20439,"20439":20440,"20440":20441,"20441":20442,"20442":20443,"20443":20444,"20444":20445,"20445":20446,"20446":20447,"20447":20448,"20448":20449,"20449":20450,"20450":20451,"20451":20452,"20452":20453,"20453":20454,"20454":20455,"20455":20456,"20456":20457,"20457":20458,"20458":20459,"20459":20460,"20460":20461,"20461":20462,"20462":20463,"20463":20464,"20464":20465,"20465":20466,"20466":20467,"20467":20468,"20468":20469,"20469":20470,"20470":20471,"20471":20472,"20472":20473,"20473":20474,"20474":20475,"20475":20476,"20476":20477,"20477":20478,"20478":20479,"20479":20480,"20480":20481,"20481":20482,"20482":20483,"20483":20484,"20484":20485,"20485":20486,"20486":20487,"20487":20488,"20488":20489,"20489":20490,"20490":20491,"20491":20492,"20492":20493,"20493":20494,"20494":20495,"20495":20496,"20496":20497,"20497":20498,"20498":20499,"20499":20500,"20500":20501,"20501":20502,"20502":20503,"20503":20504,"20504":20505,"20505":20506,"20506":20507,"20507":20508,"20508":20509,"20509":20510,"20510":20511,"20511":20512,"20512":20513,"20513":20514,"20514":20515,"20515":20516,"20516":20517,"20517":20518,"20518":20519,"20519":20520,"20520":20521,"20521":20522,"20522":20523,"20523":20524,"20524":20525,"20525":20526,"20526":20527,"20527":20528,"20528":20529,"20529":20530,"20530":20531,"20531":20532,"20532":20533,"20533":20534,"20534":20535,"20535":20536,"20536":20537,"20537":20538,"20538":20539,"20539":20540,"20540":20541,"20541":20542,"20542":20543,"20543":20544,"20544":20545,"20545":20546,"20546":20547,"20547":20548,"20548":20549,"20549":20550,"20550":20551,"20551":20552,"20552":20553,"20553":20554,"20554":20555,"20555":20556,"20556":20557,"20557":20558,"20558":20559,"20559":20560,"20560":20561,"20561":20562,"20562":20563,"20563":20564,"20564":20565,"20565":20566,"20566":20567,"20567":20568,"20568":20569,"20569":20570,"20570":20571,"20571":20572,"20572":20573,"20573":20574,"20574":20575,"20575":20576,"20576":20577,"20577":20578,"20578":20579,"20579":20580,"20580":20581,"20581":20582,"20582":20583,"20583":20584,"20584":20585,"20585":20586,"20586":20587,"20587":20588,"20588":20589,"20589":20590,"20590":20591,"20591":20592,"20592":20593,"20593":20594,"20594":20595,"20595":20596,"20596":20597,"20597":20598,"20598":20599,"20599":20600,"20600":20601,"20601":20602,"20602":20603,"20603":20604,"20604":20605,"20605":20606,"20606":20607,"20607":20608,"20608":20609,"20609":20610,"20610":20611,"20611":20612,"20612":20613,"20613":20614,"20614":20615,"20615":20616,"20616":20617,"20617":20618,"20618":20619,"20619":20620,"20620":20621,"20621":20622,"20622":20623,"20623":20624,"20624":20625,"20625":20626,"20626":20627,"20627":20628,"20628":20629,"20629":20630,"20630":20631,"20631":20632,"20632":20633,"20633":20634,"20634":20635,"20635":20636,"20636":20637,"20637":20638,"20638":20639,"20639":20640,"20640":20641,"20641":20642,"20642":20643,"20643":20644,"20644":20645,"20645":20646,"20646":20647,"20647":20648,"20648":20649,"20649":20650,"20650":20651,"20651":20652,"20652":20653,"20653":20654,"20654":20655,"20655":20656,"20656":20657,"20657":20658,"20658":20659,"20659":20660,"20660":20661,"20661":20662,"20662":20663,"20663":20664,"20664":20665,"20665":20666,"20666":20667,"20667":20668,"20668":20669,"20669":20670,"20670":20671,"20671":20672,"20672":20673,"20673":20674,"20674":20675,"20675":20676,"20676":20677,"20677":20678,"20678":20679,"20679":20680,"20680":20681,"20681":20682,"20682":20683,"20683":20684,"20684":20685,"20685":20686,"20686":20687,"20687":20688,"20688":20689,"20689":20690,"20690":20691,"20691":20692,"20692":20693,"20693":20694,"20694":20695,"20695":20696,"20696":20697,"20697":20698,"20698":20699,"20699":20700,"20700":20701,"20701":20702,"20702":20703,"20703":20704,"20704":20705,"20705":20706,"20706":20707,"20707":20708,"20708":20709,"20709":20710,"20710":20711,"20711":20712,"20712":20713,"20713":20714,"20714":20715,"20715":20716,"20716":20717,"20717":20718,"20718":20719,"20719":20720,"20720":20721,"20721":20722,"20722":20723,"20723":20724,"20724":20725,"20725":20726,"20726":20727,"20727":20728,"20728":20729,"20729":20730,"20730":20731,"20731":20732,"20732":20733,"20733":20734,"20734":20735,"20735":20736,"20736":20737,"20737":20738,"20738":20739,"20739":20740,"20740":20741,"20741":20742,"20742":20743,"20743":20744,"20744":20745,"20745":20746,"20746":20747,"20747":20748,"20748":20749,"20749":20750,"20750":20751,"20751":20752,"20752":20753,"20753":20754,"20754":20755,"20755":20756,"20756":20757,"20757":20758,"20758":20759,"20759":20760,"20760":20761,"20761":20762,"20762":20763,"20763":20764,"20764":20765,"20765":20766,"20766":20767,"20767":20768,"20768":20769,"20769":20770,"20770":20771,"20771":20772,"20772":20773,"20773":20774,"20774":20775,"20775":20776,"20776":20777,"20777":20778,"20778":20779,"20779":20780,"20780":20781,"20781":20782,"20782":20783,"20783":20784,"20784":20785,"20785":20786,"20786":20787,"20787":20788,"20788":20789,"20789":20790,"20790":20791,"20791":20792,"20792":20793,"20793":20794,"20794":20795,"20795":20796,"20796":20797,"20797":20798,"20798":20799,"20799":20800,"20800":20801,"20801":20802,"20802":20803,"20803":20804,"20804":20805,"20805":20806,"20806":20807,"20807":20808,"20808":20809,"20809":20810,"20810":20811,"20811":20812,"20812":20813,"20813":20814,"20814":20815,"20815":20816,"20816":20817,"20817":20818,"20818":20819,"20819":20820,"20820":20821,"20821":20822,"20822":20823,"20823":20824,"20824":20825,"20825":20826,"20826":20827,"20827":20828,"20828":20829,"20829":20830,"20830":20831,"20831":20832,"20832":20833,"20833":20834,"20834":20835,"20835":20836,"20836":20837,"20837":20838,"20838":20839,"20839":20840,"20840":20841,"20841":20842,"20842":20843,"20843":20844,"20844":20845,"20845":20846,"20846":20847,"20847":20848,"20848":20849,"20849":20850,"20850":20851,"20851":20852,"20852":20853,"20853":20854,"20854":20855,"20855":20856,"20856":20857,"20857":20858,"20858":20859,"20859":20860,"20860":20861,"20861":20862,"20862":20863,"20863":20864,"20864":20865,"20865":20866,"20866":20867,"20867":20868,"20868":20869,"20869":20870,"20870":20871,"20871":20872,"20872":20873,"20873":20874,"20874":20875,"20875":20876,"20876":20877,"20877":20878,"20878":20879,"20879":20880,"20880":20881,"20881":20882,"20882":20883,"20883":20884,"20884":20885,"20885":20886,"20886":20887,"20887":20888,"20888":20889,"20889":20890,"20890":20891,"20891":20892,"20892":20893,"20893":20894,"20894":20895,"20895":20896,"20896":20897,"20897":20898,"20898":20899,"20899":20900,"20900":20901,"20901":20902,"20902":20903,"20903":20904,"20904":20905,"20905":20906,"20906":20907,"20907":20908,"20908":20909,"20909":20910,"20910":20911,"20911":20912,"20912":20913,"20913":20914,"20914":20915,"20915":20916,"20916":20917,"20917":20918,"20918":20919,"20919":20920,"20920":20921,"20921":20922,"20922":20923,"20923":20924,"20924":20925,"20925":20926,"20926":20927,"20927":20928,"20928":20929,"20929":20930,"20930":20931,"20931":20932,"20932":20933,"20933":20934,"20934":20935,"20935":20936,"20936":20937,"20937":20938,"20938":20939,"20939":20940,"20940":20941,"20941":20942,"20942":20943,"20943":20944,"20944":20945,"20945":20946,"20946":20947,"20947":20948,"20948":20949,"20949":20950,"20950":20951,"20951":20952,"20952":20953,"20953":20954,"20954":20955,"20955":20956,"20956":20957,"20957":20958,"20958":20959,"20959":20960,"20960":20961,"20961":20962,"20962":20963,"20963":20964,"20964":20965,"20965":20966,"20966":20967,"20967":20968,"20968":20969,"20969":20970,"20970":20971,"20971":20972,"20972":20973,"20973":20974,"20974":20975,"20975":20976,"20976":20977,"20977":20978,"20978":20979,"20979":20980,"20980":20981,"20981":20982,"20982":20983,"20983":20984,"20984":20985,"20985":20986,"20986":20987,"20987":20988,"20988":20989,"20989":20990,"20990":20991,"20991":20992,"20992":20993,"20993":20994,"20994":20995,"20995":20996,"20996":20997,"20997":20998,"20998":20999,"20999":21000,"21000":21001,"21001":21002,"21002":21003,"21003":21004,"21004":21005,"21005":21006,"21006":21007,"21007":21008,"21008":21009,"21009":21010,"21010":21011,"21011":21012,"21012":21013,"21013":21014,"21014":21015,"21015":21016,"21016":21017,"21017":21018,"21018":21019,"21019":21020,"21020":21021,"21021":21022,"21022":21023,"21023":21024,"21024":21025,"21025":21026,"21026":21027,"21027":21028,"21028":21029,"21029":21030,"21030":21031,"21031":21032,"21032":21033,"21033":21034,"21034":21035,"21035":21036,"21036":21037,"21037":21038,"21038":21039,"21039":21040,"21040":21041,"21041":21042,"21042":21043,"21043":21044,"21044":21045,"21045":21046,"21046":21047,"21047":21048,"21048":21049,"21049":21050,"21050":21051,"21051":21052,"21052":21053,"21053":21054,"21054":21055,"21055":21056,"21056":21057,"21057":21058,"21058":21059,"21059":21060,"21060":21061,"21061":21062,"21062":21063,"21063":21064,"21064":21065,"21065":21066,"21066":21067,"21067":21068,"21068":21069,"21069":21070,"21070":21071,"21071":21072,"21072":21073,"21073":21074,"21074":21075,"21075":21076,"21076":21077,"21077":21078,"21078":21079,"21079":21080,"21080":21081,"21081":21082,"21082":21083,"21083":21084,"21084":21085,"21085":21086,"21086":21087,"21087":21088,"21088":21089,"21089":21090,"21090":21091,"21091":21092,"21092":21093,"21093":21094,"21094":21095,"21095":21096,"21096":21097,"21097":21098,"21098":21099,"21099":21100,"21100":21101,"21101":21102,"21102":21103,"21103":21104,"21104":21105,"21105":21106,"21106":21107,"21107":21108,"21108":21109,"21109":21110,"21110":21111,"21111":21112,"21112":21113,"21113":21114,"21114":21115,"21115":21116,"21116":21117,"21117":21118,"21118":21119,"21119":21120,"21120":21121,"21121":21122,"21122":21123,"21123":21124,"21124":21125,"21125":21126,"21126":21127,"21127":21128,"21128":21129,"21129":21130,"21130":21131,"21131":21132,"21132":21133,"21133":21134,"21134":21135,"21135":21136,"21136":21137,"21137":21138,"21138":21139,"21139":21140,"21140":21141,"21141":21142,"21142":21143,"21143":21144,"21144":21145,"21145":21146,"21146":21147,"21147":21148,"21148":21149,"21149":21150,"21150":21151,"21151":21152,"21152":21153,"21153":21154,"21154":21155,"21155":21156,"21156":21157,"21157":21158,"21158":21159,"21159":21160,"21160":21161,"21161":21162,"21162":21163,"21163":21164,"21164":21165,"21165":21166,"21166":21167,"21167":21168,"21168":21169,"21169":21170,"21170":21171,"21171":21172,"21172":21173,"21173":21174,"21174":21175,"21175":21176,"21176":21177,"21177":21178,"21178":21179,"21179":21180,"21180":21181,"21181":21182,"21182":21183,"21183":21184,"21184":21185,"21185":21186,"21186":21187,"21187":21188,"21188":21189,"21189":21190,"21190":21191,"21191":21192,"21192":21193,"21193":21194,"21194":21195,"21195":21196,"21196":21197,"21197":21198,"21198":21199,"21199":21200,"21200":21201,"21201":21202,"21202":21203,"21203":21204,"21204":21205,"21205":21206,"21206":21207,"21207":21208,"21208":21209,"21209":21210,"21210":21211,"21211":21212,"21212":21213,"21213":21214,"21214":21215,"21215":21216,"21216":21217,"21217":21218,"21218":21219,"21219":21220,"21220":21221,"21221":21222,"21222":21223,"21223":21224,"21224":21225,"21225":21226,"21226":21227,"21227":21228,"21228":21229,"21229":21230,"21230":21231,"21231":21232,"21232":21233,"21233":21234,"21234":21235,"21235":21236,"21236":21237,"21237":21238,"21238":21239,"21239":21240,"21240":21241,"21241":21242,"21242":21243,"21243":21244,"21244":21245,"21245":21246,"21246":21247,"21247":21248,"21248":21249,"21249":21250,"21250":21251,"21251":21252,"21252":21253,"21253":21254,"21254":21255,"21255":21256,"21256":21257,"21257":21258,"21258":21259,"21259":21260,"21260":21261,"21261":21262,"21262":21263,"21263":21264,"21264":21265,"21265":21266,"21266":21267,"21267":21268,"21268":21269,"21269":21270,"21270":21271,"21271":21272,"21272":21273,"21273":21274,"21274":21275,"21275":21276,"21276":21277,"21277":21278,"21278":21279,"21279":21280,"21280":21281,"21281":21282,"21282":21283,"21283":21284,"21284":21285,"21285":21286,"21286":21287,"21287":21288,"21288":21289,"21289":21290,"21290":21291,"21291":21292,"21292":21293,"21293":21294,"21294":21295,"21295":21296,"21296":21297,"21297":21298,"21298":21299,"21299":21300,"21300":21301,"21301":21302,"21302":21303,"21303":21304,"21304":21305,"21305":21306,"21306":21307,"21307":21308,"21308":21309,"21309":21310,"21310":21311,"21311":21312,"21312":21313,"21313":21314,"21314":21315,"21315":21316,"21316":21317,"21317":21318,"21318":21319,"21319":21320,"21320":21321,"21321":21322,"21322":21323,"21323":21324,"21324":21325,"21325":21326,"21326":21327,"21327":21328,"21328":21329,"21329":21330,"21330":21331,"21331":21332,"21332":21333,"21333":21334,"21334":21335,"21335":21336,"21336":21337,"21337":21338,"21338":21339,"21339":21340,"21340":21341,"21341":21342,"21342":21343,"21343":21344,"21344":21345,"21345":21346,"21346":21347,"21347":21348,"21348":21349,"21349":21350,"21350":21351,"21351":21352,"21352":21353,"21353":21354,"21354":21355,"21355":21356,"21356":21357,"21357":21358,"21358":21359,"21359":21360,"21360":21361,"21361":21362,"21362":21363,"21363":21364,"21364":21365,"21365":21366,"21366":21367,"21367":21368,"21368":21369,"21369":21370,"21370":21371,"21371":21372,"21372":21373,"21373":21374,"21374":21375,"21375":21376,"21376":21377,"21377":21378,"21378":21379,"21379":21380,"21380":21381,"21381":21382,"21382":21383,"21383":21384,"21384":21385,"21385":21386,"21386":21387,"21387":21388,"21388":21389,"21389":21390,"21390":21391,"21391":21392,"21392":21393,"21393":21394,"21394":21395,"21395":21396,"21396":21397,"21397":21398,"21398":21399,"21399":21400,"21400":21401,"21401":21402,"21402":21403,"21403":21404,"21404":21405,"21405":21406,"21406":21407,"21407":21408,"21408":21409,"21409":21410,"21410":21411,"21411":21412,"21412":21413,"21413":21414,"21414":21415,"21415":21416,"21416":21417,"21417":21418,"21418":21419,"21419":21420,"21420":21421,"21421":21422,"21422":21423,"21423":21424,"21424":21425,"21425":21426,"21426":21427,"21427":21428,"21428":21429,"21429":21430,"21430":21431,"21431":21432,"21432":21433,"21433":21434,"21434":21435,"21435":21436,"21436":21437,"21437":21438,"21438":21439,"21439":21440,"21440":21441,"21441":21442,"21442":21443,"21443":21444,"21444":21445,"21445":21446,"21446":21447,"21447":21448,"21448":21449,"21449":21450,"21450":21451,"21451":21452,"21452":21453,"21453":21454,"21454":21455,"21455":21456,"21456":21457,"21457":21458,"21458":21459,"21459":21460,"21460":21461,"21461":21462,"21462":21463,"21463":21464,"21464":21465,"21465":21466,"21466":21467,"21467":21468,"21468":21469,"21469":21470,"21470":21471,"21471":21472,"21472":21473,"21473":21474,"21474":21475,"21475":21476,"21476":21477,"21477":21478,"21478":21479,"21479":21480,"21480":21481,"21481":21482,"21482":21483,"21483":21484,"21484":21485,"21485":21486,"21486":21487,"21487":21488,"21488":21489,"21489":21490,"21490":21491,"21491":21492,"21492":21493,"21493":21494,"21494":21495,"21495":21496,"21496":21497,"21497":21498,"21498":21499,"21499":21500,"21500":21501,"21501":21502,"21502":21503,"21503":21504,"21504":21505,"21505":21506,"21506":21507,"21507":21508,"21508":21509,"21509":21510,"21510":21511,"21511":21512,"21512":21513,"21513":21514,"21514":21515,"21515":21516,"21516":21517,"21517":21518,"21518":21519,"21519":21520,"21520":21521,"21521":21522,"21522":21523,"21523":21524,"21524":21525,"21525":21526,"21526":21527,"21527":21528,"21528":21529,"21529":21530,"21530":21531,"21531":21532,"21532":21533,"21533":21534,"21534":21535,"21535":21536,"21536":21537,"21537":21538,"21538":21539,"21539":21540,"21540":21541,"21541":21542,"21542":21543,"21543":21544,"21544":21545,"21545":21546,"21546":21547,"21547":21548,"21548":21549,"21549":21550,"21550":21551,"21551":21552,"21552":21553,"21553":21554,"21554":21555,"21555":21556,"21556":21557,"21557":21558,"21558":21559,"21559":21560,"21560":21561,"21561":21562,"21562":21563,"21563":21564,"21564":21565,"21565":21566,"21566":21567,"21567":21568,"21568":21569,"21569":21570,"21570":21571,"21571":21572,"21572":21573,"21573":21574,"21574":21575,"21575":21576,"21576":21577,"21577":21578,"21578":21579,"21579":21580,"21580":21581,"21581":21582,"21582":21583,"21583":21584,"21584":21585,"21585":21586,"21586":21587,"21587":21588,"21588":21589,"21589":21590,"21590":21591,"21591":21592,"21592":21593,"21593":21594,"21594":21595,"21595":21596,"21596":21597,"21597":21598,"21598":21599,"21599":21600,"21600":21601,"21601":21602,"21602":21603,"21603":21604,"21604":21605,"21605":21606,"21606":21607,"21607":21608,"21608":21609,"21609":21610,"21610":21611,"21611":21612,"21612":21613,"21613":21614,"21614":21615,"21615":21616,"21616":21617,"21617":21618,"21618":21619,"21619":21620,"21620":21621,"21621":21622,"21622":21623,"21623":21624,"21624":21625,"21625":21626,"21626":21627,"21627":21628,"21628":21629,"21629":21630,"21630":21631,"21631":21632,"21632":21633,"21633":21634,"21634":21635,"21635":21636,"21636":21637,"21637":21638,"21638":21639,"21639":21640,"21640":21641,"21641":21642,"21642":21643,"21643":21644,"21644":21645,"21645":21646,"21646":21647,"21647":21648,"21648":21649,"21649":21650,"21650":21651,"21651":21652,"21652":21653,"21653":21654,"21654":21655,"21655":21656,"21656":21657,"21657":21658,"21658":21659,"21659":21660,"21660":21661,"21661":21662,"21662":21663,"21663":21664,"21664":21665,"21665":21666,"21666":21667,"21667":21668,"21668":21669,"21669":21670,"21670":21671,"21671":21672,"21672":21673,"21673":21674,"21674":21675,"21675":21676,"21676":21677,"21677":21678,"21678":21679,"21679":21680,"21680":21681,"21681":21682,"21682":21683,"21683":21684,"21684":21685,"21685":21686,"21686":21687,"21687":21688,"21688":21689,"21689":21690,"21690":21691,"21691":21692,"21692":21693,"21693":21694,"21694":21695,"21695":21696,"21696":21697,"21697":21698,"21698":21699,"21699":21700,"21700":21701,"21701":21702,"21702":21703,"21703":21704,"21704":21705,"21705":21706,"21706":21707,"21707":21708,"21708":21709,"21709":21710,"21710":21711,"21711":21712,"21712":21713,"21713":21714,"21714":21715,"21715":21716,"21716":21717,"21717":21718,"21718":21719,"21719":21720,"21720":21721,"21721":21722,"21722":21723,"21723":21724,"21724":21725,"21725":21726,"21726":21727,"21727":21728,"21728":21729,"21729":21730,"21730":21731,"21731":21732,"21732":21733,"21733":21734,"21734":21735,"21735":21736,"21736":21737,"21737":21738,"21738":21739,"21739":21740,"21740":21741,"21741":21742,"21742":21743,"21743":21744,"21744":21745,"21745":21746,"21746":21747,"21747":21748,"21748":21749,"21749":21750,"21750":21751,"21751":21752,"21752":21753,"21753":21754,"21754":21755,"21755":21756,"21756":21757,"21757":21758,"21758":21759,"21759":21760,"21760":21761,"21761":21762,"21762":21763,"21763":21764,"21764":21765,"21765":21766,"21766":21767,"21767":21768,"21768":21769,"21769":21770,"21770":21771,"21771":21772,"21772":21773,"21773":21774,"21774":21775,"21775":21776,"21776":21777,"21777":21778,"21778":21779,"21779":21780,"21780":21781,"21781":21782,"21782":21783,"21783":21784,"21784":21785,"21785":21786,"21786":21787,"21787":21788,"21788":21789,"21789":21790,"21790":21791,"21791":21792,"21792":21793,"21793":21794,"21794":21795,"21795":21796,"21796":21797,"21797":21798,"21798":21799,"21799":21800,"21800":21801,"21801":21802,"21802":21803,"21803":21804,"21804":21805,"21805":21806,"21806":21807,"21807":21808,"21808":21809,"21809":21810,"21810":21811,"21811":21812,"21812":21813,"21813":21814,"21814":21815,"21815":21816,"21816":21817,"21817":21818,"21818":21819,"21819":21820,"21820":21821,"21821":21822,"21822":21823,"21823":21824,"21824":21825,"21825":21826,"21826":21827,"21827":21828,"21828":21829,"21829":21830,"21830":21831,"21831":21832,"21832":21833,"21833":21834,"21834":21835,"21835":21836,"21836":21837,"21837":21838,"21838":21839,"21839":21840,"21840":21841,"21841":21842,"21842":21843,"21843":21844,"21844":21845,"21845":21846,"21846":21847,"21847":21848,"21848":21849,"21849":21850,"21850":21851,"21851":21852,"21852":21853,"21853":21854,"21854":21855,"21855":21856,"21856":21857,"21857":21858,"21858":21859,"21859":21860,"21860":21861,"21861":21862,"21862":21863,"21863":21864,"21864":21865,"21865":21866,"21866":21867,"21867":21868,"21868":21869,"21869":21870,"21870":21871,"21871":21872,"21872":21873,"21873":21874,"21874":21875,"21875":21876,"21876":21877,"21877":21878,"21878":21879,"21879":21880,"21880":21881,"21881":21882,"21882":21883,"21883":21884,"21884":21885,"21885":21886,"21886":21887,"21887":21888,"21888":21889,"21889":21890,"21890":21891,"21891":21892,"21892":21893,"21893":21894,"21894":21895,"21895":21896,"21896":21897,"21897":21898,"21898":21899,"21899":21900,"21900":21901,"21901":21902,"21902":21903,"21903":21904,"21904":21905,"21905":21906,"21906":21907,"21907":21908,"21908":21909,"21909":21910,"21910":21911,"21911":21912,"21912":21913,"21913":21914,"21914":21915,"21915":21916,"21916":21917,"21917":21918,"21918":21919,"21919":21920,"21920":21921,"21921":21922,"21922":21923,"21923":21924,"21924":21925,"21925":21926,"21926":21927,"21927":21928,"21928":21929,"21929":21930,"21930":21931,"21931":21932,"21932":21933,"21933":21934,"21934":21935,"21935":21936,"21936":21937,"21937":21938,"21938":21939,"21939":21940,"21940":21941,"21941":21942,"21942":21943,"21943":21944,"21944":21945,"21945":21946,"21946":21947,"21947":21948,"21948":21949,"21949":21950,"21950":21951,"21951":21952,"21952":21953,"21953":21954,"21954":21955,"21955":21956,"21956":21957,"21957":21958,"21958":21959,"21959":21960,"21960":21961,"21961":21962,"21962":21963,"21963":21964,"21964":21965,"21965":21966,"21966":21967,"21967":21968,"21968":21969,"21969":21970,"21970":21971,"21971":21972,"21972":21973,"21973":21974,"21974":21975,"21975":21976,"21976":21977,"21977":21978,"21978":21979,"21979":21980,"21980":21981,"21981":21982,"21982":21983,"21983":21984,"21984":21985,"21985":21986,"21986":21987,"21987":21988,"21988":21989,"21989":21990,"21990":21991,"21991":21992,"21992":21993,"21993":21994,"21994":21995,"21995":21996,"21996":21997,"21997":21998,"21998":21999,"21999":22000,"22000":22001,"22001":22002,"22002":22003,"22003":22004,"22004":22005,"22005":22006,"22006":22007,"22007":22008,"22008":22009,"22009":22010,"22010":22011,"22011":22012,"22012":22013,"22013":22014,"22014":22015,"22015":22016,"22016":22017,"22017":22018,"22018":22019,"22019":22020,"22020":22021,"22021":22022,"22022":22023,"22023":22024,"22024":22025,"22025":22026,"22026":22027,"22027":22028,"22028":22029,"22029":22030,"22030":22031,"22031":22032,"22032":22033,"22033":22034,"22034":22035,"22035":22036,"22036":22037,"22037":22038,"22038":22039,"22039":22040,"22040":22041,"22041":22042,"22042":22043,"22043":22044,"22044":22045,"22045":22046,"22046":22047,"22047":22048,"22048":22049,"22049":22050,"22050":22051,"22051":22052,"22052":22053,"22053":22054,"22054":22055,"22055":22056,"22056":22057,"22057":22058,"22058":22059,"22059":22060,"22060":22061,"22061":22062,"22062":22063,"22063":22064,"22064":22065,"22065":22066,"22066":22067,"22067":22068,"22068":22069,"22069":22070,"22070":22071,"22071":22072,"22072":22073,"22073":22074,"22074":22075,"22075":22076,"22076":22077,"22077":22078,"22078":22079,"22079":22080,"22080":22081,"22081":22082,"22082":22083,"22083":22084,"22084":22085,"22085":22086,"22086":22087,"22087":22088,"22088":22089,"22089":22090,"22090":22091,"22091":22092,"22092":22093,"22093":22094,"22094":22095,"22095":22096,"22096":22097,"22097":22098,"22098":22099,"22099":22100,"22100":22101,"22101":22102,"22102":22103,"22103":22104,"22104":22105,"22105":22106,"22106":22107,"22107":22108,"22108":22109,"22109":22110,"22110":22111,"22111":22112,"22112":22113,"22113":22114,"22114":22115,"22115":22116,"22116":22117,"22117":22118,"22118":22119,"22119":22120,"22120":22121,"22121":22122,"22122":22123,"22123":22124,"22124":22125,"22125":22126,"22126":22127,"22127":22128,"22128":22129,"22129":22130,"22130":22131,"22131":22132,"22132":22133,"22133":22134,"22134":22135,"22135":22136,"22136":22137,"22137":22138,"22138":22139,"22139":22140,"22140":22141,"22141":22142,"22142":22143,"22143":22144,"22144":22145,"22145":22146,"22146":22147,"22147":22148,"22148":22149,"22149":22150,"22150":22151,"22151":22152,"22152":22153,"22153":22154,"22154":22155,"22155":22156,"22156":22157,"22157":22158,"22158":22159,"22159":22160,"22160":22161,"22161":22162,"22162":22163,"22163":22164,"22164":22165,"22165":22166,"22166":22167,"22167":22168,"22168":22169,"22169":22170,"22170":22171,"22171":22172,"22172":22173,"22173":22174,"22174":22175,"22175":22176,"22176":22177,"22177":22178,"22178":22179,"22179":22180,"22180":22181,"22181":22182,"22182":22183,"22183":22184,"22184":22185,"22185":22186,"22186":22187,"22187":22188,"22188":22189,"22189":22190,"22190":22191,"22191":22192,"22192":22193,"22193":22194,"22194":22195,"22195":22196,"22196":22197,"22197":22198,"22198":22199,"22199":22200,"22200":22201,"22201":22202,"22202":22203,"22203":22204,"22204":22205,"22205":22206,"22206":22207,"22207":22208,"22208":22209,"22209":22210,"22210":22211,"22211":22212,"22212":22213,"22213":22214,"22214":22215,"22215":22216,"22216":22217,"22217":22218,"22218":22219,"22219":22220,"22220":22221,"22221":22222,"22222":22223,"22223":22224,"22224":22225,"22225":22226,"22226":22227,"22227":22228,"22228":22229,"22229":22230,"22230":22231,"22231":22232,"22232":22233,"22233":22234,"22234":22235,"22235":22236,"22236":22237,"22237":22238,"22238":22239,"22239":22240,"22240":22241,"22241":22242,"22242":22243,"22243":22244,"22244":22245,"22245":22246,"22246":22247,"22247":22248,"22248":22249,"22249":22250,"22250":22251,"22251":22252,"22252":22253,"22253":22254,"22254":22255,"22255":22256,"22256":22257,"22257":22258,"22258":22259,"22259":22260,"22260":22261,"22261":22262,"22262":22263,"22263":22264,"22264":22265,"22265":22266,"22266":22267,"22267":22268,"22268":22269,"22269":22270,"22270":22271,"22271":22272,"22272":22273,"22273":22274,"22274":22275,"22275":22276,"22276":22277,"22277":22278,"22278":22279,"22279":22280,"22280":22281,"22281":22282,"22282":22283,"22283":22284,"22284":22285,"22285":22286,"22286":22287,"22287":22288,"22288":22289,"22289":22290,"22290":22291,"22291":22292,"22292":22293,"22293":22294,"22294":22295,"22295":22296,"22296":22297,"22297":22298,"22298":22299,"22299":22300,"22300":22301,"22301":22302,"22302":22303,"22303":22304,"22304":22305,"22305":22306,"22306":22307,"22307":22308,"22308":22309,"22309":22310,"22310":22311,"22311":22312,"22312":22313,"22313":22314,"22314":22315,"22315":22316,"22316":22317,"22317":22318,"22318":22319,"22319":22320,"22320":22321,"22321":22322,"22322":22323,"22323":22324,"22324":22325,"22325":22326,"22326":22327,"22327":22328,"22328":22329,"22329":22330,"22330":22331,"22331":22332,"22332":22333,"22333":22334,"22334":22335,"22335":22336,"22336":22337,"22337":22338,"22338":22339,"22339":22340,"22340":22341,"22341":22342,"22342":22343,"22343":22344,"22344":22345,"22345":22346,"22346":22347,"22347":22348,"22348":22349,"22349":22350,"22350":22351,"22351":22352,"22352":22353,"22353":22354,"22354":22355,"22355":22356,"22356":22357,"22357":22358,"22358":22359,"22359":22360,"22360":22361,"22361":22362,"22362":22363,"22363":22364,"22364":22365,"22365":22366,"22366":22367,"22367":22368,"22368":22369,"22369":22370,"22370":22371,"22371":22372,"22372":22373,"22373":22374,"22374":22375,"22375":22376,"22376":22377,"22377":22378,"22378":22379,"22379":22380,"22380":22381,"22381":22382,"22382":22383,"22383":22384,"22384":22385,"22385":22386,"22386":22387,"22387":22388,"22388":22389,"22389":22390,"22390":22391,"22391":22392,"22392":22393,"22393":22394,"22394":22395,"22395":22396,"22396":22397,"22397":22398,"22398":22399,"22399":22400,"22400":22401,"22401":22402,"22402":22403,"22403":22404,"22404":22405,"22405":22406,"22406":22407,"22407":22408,"22408":22409,"22409":22410,"22410":22411,"22411":22412,"22412":22413,"22413":22414,"22414":22415,"22415":22416,"22416":22417,"22417":22418,"22418":22419,"22419":22420,"22420":22421,"22421":22422,"22422":22423,"22423":22424,"22424":22425,"22425":22426,"22426":22427,"22427":22428,"22428":22429,"22429":22430,"22430":22431,"22431":22432,"22432":22433,"22433":22434,"22434":22435,"22435":22436,"22436":22437,"22437":22438,"22438":22439,"22439":22440,"22440":22441,"22441":22442,"22442":22443,"22443":22444,"22444":22445,"22445":22446,"22446":22447,"22447":22448,"22448":22449,"22449":22450,"22450":22451,"22451":22452,"22452":22453,"22453":22454,"22454":22455,"22455":22456,"22456":22457,"22457":22458,"22458":22459,"22459":22460,"22460":22461,"22461":22462,"22462":22463,"22463":22464,"22464":22465,"22465":22466,"22466":22467,"22467":22468,"22468":22469,"22469":22470,"22470":22471,"22471":22472,"22472":22473,"22473":22474,"22474":22475,"22475":22476,"22476":22477,"22477":22478,"22478":22479,"22479":22480,"22480":22481,"22481":22482,"22482":22483,"22483":22484,"22484":22485,"22485":22486,"22486":22487,"22487":22488,"22488":22489,"22489":22490,"22490":22491,"22491":22492,"22492":22493,"22493":22494,"22494":22495,"22495":22496,"22496":22497,"22497":22498,"22498":22499,"22499":22500,"22500":22501,"22501":22502,"22502":22503,"22503":22504,"22504":22505,"22505":22506,"22506":22507,"22507":22508,"22508":22509,"22509":22510,"22510":22511,"22511":22512,"22512":22513,"22513":22514,"22514":22515,"22515":22516,"22516":22517,"22517":22518,"22518":22519,"22519":22520,"22520":22521,"22521":22522,"22522":22523,"22523":22524,"22524":22525,"22525":22526,"22526":22527,"22527":22528,"22528":22529,"22529":22530,"22530":22531,"22531":22532,"22532":22533,"22533":22534,"22534":22535,"22535":22536,"22536":22537,"22537":22538,"22538":22539,"22539":22540,"22540":22541,"22541":22542,"22542":22543,"22543":22544,"22544":22545,"22545":22546,"22546":22547,"22547":22548,"22548":22549,"22549":22550,"22550":22551,"22551":22552,"22552":22553,"22553":22554,"22554":22555,"22555":22556,"22556":22557,"22557":22558,"22558":22559,"22559":22560,"22560":22561,"22561":22562,"22562":22563,"22563":22564,"22564":22565,"22565":22566,"22566":22567,"22567":22568,"22568":22569,"22569":22570,"22570":22571,"22571":22572,"22572":22573,"22573":22574,"22574":22575,"22575":22576,"22576":22577,"22577":22578,"22578":22579,"22579":22580,"22580":22581,"22581":22582,"22582":22583,"22583":22584,"22584":22585,"22585":22586,"22586":22587,"22587":22588,"22588":22589,"22589":22590,"22590":22591,"22591":22592,"22592":22593,"22593":22594,"22594":22595,"22595":22596,"22596":22597,"22597":22598,"22598":22599,"22599":22600,"22600":22601,"22601":22602,"22602":22603,"22603":22604,"22604":22605,"22605":22606,"22606":22607,"22607":22608,"22608":22609,"22609":22610,"22610":22611,"22611":22612,"22612":22613,"22613":22614,"22614":22615,"22615":22616,"22616":22617,"22617":22618,"22618":22619,"22619":22620,"22620":22621,"22621":22622,"22622":22623,"22623":22624,"22624":22625,"22625":22626,"22626":22627,"22627":22628,"22628":22629,"22629":22630,"22630":22631,"22631":22632,"22632":22633,"22633":22634,"22634":22635,"22635":22636,"22636":22637,"22637":22638,"22638":22639,"22639":22640,"22640":22641,"22641":22642,"22642":22643,"22643":22644,"22644":22645,"22645":22646,"22646":22647,"22647":22648,"22648":22649,"22649":22650,"22650":22651,"22651":22652,"22652":22653,"22653":22654,"22654":22655,"22655":22656,"22656":22657,"22657":22658,"22658":22659,"22659":22660,"22660":22661,"22661":22662,"22662":22663,"22663":22664,"22664":22665,"22665":22666,"22666":22667,"22667":22668,"22668":22669,"22669":22670,"22670":22671,"22671":22672,"22672":22673,"22673":22674,"22674":22675,"22675":22676,"22676":22677,"22677":22678,"22678":22679,"22679":22680,"22680":22681,"22681":22682,"22682":22683,"22683":22684,"22684":22685,"22685":22686,"22686":22687,"22687":22688,"22688":22689,"22689":22690,"22690":22691,"22691":22692,"22692":22693,"22693":22694,"22694":22695,"22695":22696,"22696":22697,"22697":22698,"22698":22699,"22699":22700,"22700":22701,"22701":22702,"22702":22703,"22703":22704,"22704":22705,"22705":22706,"22706":22707,"22707":22708,"22708":22709,"22709":22710,"22710":22711,"22711":22712,"22712":22713,"22713":22714,"22714":22715,"22715":22716,"22716":22717,"22717":22718,"22718":22719,"22719":22720,"22720":22721,"22721":22722,"22722":22723,"22723":22724,"22724":22725,"22725":22726,"22726":22727,"22727":22728,"22728":22729,"22729":22730,"22730":22731,"22731":22732,"22732":22733,"22733":22734,"22734":22735,"22735":22736,"22736":22737,"22737":22738,"22738":22739,"22739":22740,"22740":22741,"22741":22742,"22742":22743,"22743":22744,"22744":22745,"22745":22746,"22746":22747,"22747":22748,"22748":22749,"22749":22750,"22750":22751,"22751":22752,"22752":22753,"22753":22754,"22754":22755,"22755":22756,"22756":22757,"22757":22758,"22758":22759,"22759":22760,"22760":22761,"22761":22762,"22762":22763,"22763":22764,"22764":22765,"22765":22766,"22766":22767,"22767":22768,"22768":22769,"22769":22770,"22770":22771,"22771":22772,"22772":22773,"22773":22774,"22774":22775,"22775":22776,"22776":22777,"22777":22778,"22778":22779,"22779":22780,"22780":22781,"22781":22782,"22782":22783,"22783":22784,"22784":22785,"22785":22786,"22786":22787,"22787":22788,"22788":22789,"22789":22790,"22790":22791,"22791":22792,"22792":22793,"22793":22794,"22794":22795,"22795":22796,"22796":22797,"22797":22798,"22798":22799,"22799":22800,"22800":22801,"22801":22802,"22802":22803,"22803":22804,"22804":22805,"22805":22806,"22806":22807,"22807":22808,"22808":22809,"22809":22810,"22810":22811,"22811":22812,"22812":22813,"22813":22814,"22814":22815,"22815":22816,"22816":22817,"22817":22818,"22818":22819,"22819":22820,"22820":22821,"22821":22822,"22822":22823,"22823":22824,"22824":22825,"22825":22826,"22826":22827,"22827":22828,"22828":22829,"22829":22830,"22830":22831,"22831":22832,"22832":22833,"22833":22834,"22834":22835,"22835":22836,"22836":22837,"22837":22838,"22838":22839,"22839":22840,"22840":22841,"22841":22842,"22842":22843,"22843":22844,"22844":22845,"22845":22846,"22846":22847,"22847":22848,"22848":22849,"22849":22850,"22850":22851,"22851":22852,"22852":22853,"22853":22854,"22854":22855,"22855":22856,"22856":22857,"22857":22858,"22858":22859,"22859":22860,"22860":22861,"22861":22862,"22862":22863,"22863":22864,"22864":22865,"22865":22866,"22866":22867,"22867":22868,"22868":22869,"22869":22870,"22870":22871,"22871":22872,"22872":22873,"22873":22874,"22874":22875,"22875":22876,"22876":22877,"22877":22878,"22878":22879,"22879":22880,"22880":22881,"22881":22882,"22882":22883,"22883":22884,"22884":22885,"22885":22886,"22886":22887,"22887":22888,"22888":22889,"22889":22890,"22890":22891,"22891":22892,"22892":22893,"22893":22894,"22894":22895,"22895":22896,"22896":22897,"22897":22898,"22898":22899,"22899":22900,"22900":22901,"22901":22902,"22902":22903,"22903":22904,"22904":22905,"22905":22906,"22906":22907,"22907":22908,"22908":22909,"22909":22910,"22910":22911,"22911":22912,"22912":22913,"22913":22914,"22914":22915,"22915":22916,"22916":22917,"22917":22918,"22918":22919,"22919":22920,"22920":22921,"22921":22922,"22922":22923,"22923":22924,"22924":22925,"22925":22926,"22926":22927,"22927":22928,"22928":22929,"22929":22930,"22930":22931,"22931":22932,"22932":22933,"22933":22934,"22934":22935,"22935":22936,"22936":22937,"22937":22938,"22938":22939,"22939":22940,"22940":22941,"22941":22942,"22942":22943,"22943":22944,"22944":22945,"22945":22946,"22946":22947,"22947":22948,"22948":22949,"22949":22950,"22950":22951,"22951":22952,"22952":22953,"22953":22954,"22954":22955,"22955":22956,"22956":22957,"22957":22958,"22958":22959,"22959":22960,"22960":22961,"22961":22962,"22962":22963,"22963":22964,"22964":22965,"22965":22966,"22966":22967,"22967":22968,"22968":22969,"22969":22970,"22970":22971,"22971":22972,"22972":22973,"22973":22974,"22974":22975,"22975":22976,"22976":22977,"22977":22978,"22978":22979,"22979":22980,"22980":22981,"22981":22982,"22982":22983,"22983":22984,"22984":22985,"22985":22986,"22986":22987,"22987":22988,"22988":22989,"22989":22990,"22990":22991,"22991":22992,"22992":22993,"22993":22994,"22994":22995,"22995":22996,"22996":22997,"22997":22998,"22998":22999,"22999":23000,"23000":23001,"23001":23002,"23002":23003,"23003":23004,"23004":23005,"23005":23006,"23006":23007,"23007":23008,"23008":23009,"23009":23010,"23010":23011,"23011":23012,"23012":23013,"23013":23014,"23014":23015,"23015":23016,"23016":23017,"23017":23018,"23018":23019,"23019":23020,"23020":23021,"23021":23022,"23022":23023,"23023":23024,"23024":23025,"23025":23026,"23026":23027,"23027":23028,"23028":23029,"23029":23030,"23030":23031,"23031":23032,"23032":23033,"23033":23034,"23034":23035,"23035":23036,"23036":23037,"23037":23038,"23038":23039,"23039":23040,"23040":23041,"23041":23042,"23042":23043,"23043":23044,"23044":23045,"23045":23046,"23046":23047,"23047":23048,"23048":23049,"23049":23050,"23050":23051,"23051":23052,"23052":23053,"23053":23054,"23054":23055,"23055":23056,"23056":23057,"23057":23058,"23058":23059,"23059":23060,"23060":23061,"23061":23062,"23062":23063,"23063":23064,"23064":23065,"23065":23066,"23066":23067,"23067":23068,"23068":23069,"23069":23070,"23070":23071,"23071":23072,"23072":23073,"23073":23074,"23074":23075,"23075":23076,"23076":23077,"23077":23078,"23078":23079,"23079":23080,"23080":23081,"23081":23082,"23082":23083,"23083":23084,"23084":23085,"23085":23086,"23086":23087,"23087":23088,"23088":23089,"23089":23090,"23090":23091,"23091":23092,"23092":23093,"23093":23094,"23094":23095,"23095":23096,"23096":23097,"23097":23098,"23098":23099,"23099":23100,"23100":23101,"23101":23102,"23102":23103,"23103":23104,"23104":23105,"23105":23106,"23106":23107,"23107":23108,"23108":23109,"23109":23110,"23110":23111,"23111":23112,"23112":23113,"23113":23114,"23114":23115,"23115":23116,"23116":23117,"23117":23118,"23118":23119,"23119":23120,"23120":23121,"23121":23122,"23122":23123,"23123":23124,"23124":23125,"23125":23126,"23126":23127,"23127":23128,"23128":23129,"23129":23130,"23130":23131,"23131":23132,"23132":23133,"23133":23134,"23134":23135,"23135":23136,"23136":23137,"23137":23138,"23138":23139,"23139":23140,"23140":23141,"23141":23142,"23142":23143,"23143":23144,"23144":23145,"23145":23146,"23146":23147,"23147":23148,"23148":23149,"23149":23150,"23150":23151,"23151":23152,"23152":23153,"23153":23154,"23154":23155,"23155":23156,"23156":23157,"23157":23158,"23158":23159,"23159":23160,"23160":23161,"23161":23162,"23162":23163,"23163":23164,"23164":23165,"23165":23166,"23166":23167,"23167":23168,"23168":23169,"23169":23170,"23170":23171,"23171":23172,"23172":23173,"23173":23174,"23174":23175,"23175":23176,"23176":23177,"23177":23178,"23178":23179,"23179":23180,"23180":23181,"23181":23182,"23182":23183,"23183":23184,"23184":23185,"23185":23186,"23186":23187,"23187":23188,"23188":23189,"23189":23190,"23190":23191,"23191":23192,"23192":23193,"23193":23194,"23194":23195,"23195":23196,"23196":23197,"23197":23198,"23198":23199,"23199":23200,"23200":23201,"23201":23202,"23202":23203,"23203":23204,"23204":23205,"23205":23206,"23206":23207,"23207":23208,"23208":23209,"23209":23210,"23210":23211,"23211":23212,"23212":23213,"23213":23214,"23214":23215,"23215":23216,"23216":23217,"23217":23218,"23218":23219,"23219":23220,"23220":23221,"23221":23222,"23222":23223,"23223":23224,"23224":23225,"23225":23226,"23226":23227,"23227":23228,"23228":23229,"23229":23230,"23230":23231,"23231":23232,"23232":23233,"23233":23234,"23234":23235,"23235":23236,"23236":23237,"23237":23238,"23238":23239,"23239":23240,"23240":23241,"23241":23242,"23242":23243,"23243":23244,"23244":23245,"23245":23246,"23246":23247,"23247":23248,"23248":23249,"23249":23250,"23250":23251,"23251":23252,"23252":23253,"23253":23254,"23254":23255,"23255":23256,"23256":23257,"23257":23258,"23258":23259,"23259":23260,"23260":23261,"23261":23262,"23262":23263,"23263":23264,"23264":23265,"23265":23266,"23266":23267,"23267":23268,"23268":23269,"23269":23270,"23270":23271,"23271":23272,"23272":23273,"23273":23274,"23274":23275,"23275":23276,"23276":23277,"23277":23278,"23278":23279,"23279":23280,"23280":23281,"23281":23282,"23282":23283,"23283":23284,"23284":23285,"23285":23286,"23286":23287,"23287":23288,"23288":23289,"23289":23290,"23290":23291,"23291":23292,"23292":23293,"23293":23294,"23294":23295,"23295":23296,"23296":23297,"23297":23298,"23298":23299,"23299":23300,"23300":23301,"23301":23302,"23302":23303,"23303":23304,"23304":23305,"23305":23306,"23306":23307,"23307":23308,"23308":23309,"23309":23310,"23310":23311,"23311":23312,"23312":23313,"23313":23314,"23314":23315,"23315":23316,"23316":23317,"23317":23318,"23318":23319,"23319":23320,"23320":23321,"23321":23322,"23322":23323,"23323":23324,"23324":23325,"23325":23326,"23326":23327,"23327":23328,"23328":23329,"23329":23330,"23330":23331,"23331":23332,"23332":23333,"23333":23334,"23334":23335,"23335":23336,"23336":23337,"23337":23338,"23338":23339,"23339":23340,"23340":23341,"23341":23342,"23342":23343,"23343":23344,"23344":23345,"23345":23346,"23346":23347,"23347":23348,"23348":23349,"23349":23350,"23350":23351,"23351":23352,"23352":23353,"23353":23354,"23354":23355,"23355":23356,"23356":23357,"23357":23358,"23358":23359,"23359":23360,"23360":23361,"23361":23362,"23362":23363,"23363":23364,"23364":23365,"23365":23366,"23366":23367,"23367":23368,"23368":23369,"23369":23370,"23370":23371,"23371":23372,"23372":23373,"23373":23374,"23374":23375,"23375":23376,"23376":23377,"23377":23378,"23378":23379,"23379":23380,"23380":23381,"23381":23382,"23382":23383,"23383":23384,"23384":23385,"23385":23386,"23386":23387,"23387":23388,"23388":23389,"23389":23390,"23390":23391,"23391":23392,"23392":23393,"23393":23394,"23394":23395,"23395":23396,"23396":23397,"23397":23398,"23398":23399,"23399":23400,"23400":23401,"23401":23402,"23402":23403,"23403":23404,"23404":23405,"23405":23406,"23406":23407,"23407":23408,"23408":23409,"23409":23410,"23410":23411,"23411":23412,"23412":23413,"23413":23414,"23414":23415,"23415":23416,"23416":23417,"23417":23418,"23418":23419,"23419":23420,"23420":23421,"23421":23422,"23422":23423,"23423":23424,"23424":23425,"23425":23426,"23426":23427,"23427":23428,"23428":23429,"23429":23430,"23430":23431,"23431":23432,"23432":23433,"23433":23434,"23434":23435,"23435":23436,"23436":23437,"23437":23438,"23438":23439,"23439":23440,"23440":23441,"23441":23442,"23442":23443,"23443":23444,"23444":23445,"23445":23446,"23446":23447,"23447":23448,"23448":23449,"23449":23450,"23450":23451,"23451":23452,"23452":23453,"23453":23454,"23454":23455,"23455":23456,"23456":23457,"23457":23458,"23458":23459,"23459":23460,"23460":23461,"23461":23462,"23462":23463,"23463":23464,"23464":23465,"23465":23466,"23466":23467,"23467":23468,"23468":23469,"23469":23470,"23470":23471,"23471":23472,"23472":23473,"23473":23474,"23474":23475,"23475":23476,"23476":23477,"23477":23478,"23478":23479,"23479":23480,"23480":23481,"23481":23482,"23482":23483,"23483":23484,"23484":23485,"23485":23486,"23486":23487,"23487":23488,"23488":23489,"23489":23490,"23490":23491,"23491":23492,"23492":23493,"23493":23494,"23494":23495,"23495":23496,"23496":23497,"23497":23498,"23498":23499,"23499":23500,"23500":23501,"23501":23502,"23502":23503,"23503":23504,"23504":23505,"23505":23506,"23506":23507,"23507":23508,"23508":23509,"23509":23510,"23510":23511,"23511":23512,"23512":23513,"23513":23514,"23514":23515,"23515":23516,"23516":23517,"23517":23518,"23518":23519,"23519":23520,"23520":23521,"23521":23522,"23522":23523,"23523":23524,"23524":23525,"23525":23526,"23526":23527,"23527":23528,"23528":23529,"23529":23530,"23530":23531,"23531":23532,"23532":23533,"23533":23534,"23534":23535,"23535":23536,"23536":23537,"23537":23538,"23538":23539,"23539":23540,"23540":23541,"23541":23542,"23542":23543,"23543":23544,"23544":23545,"23545":23546,"23546":23547,"23547":23548,"23548":23549,"23549":23550,"23550":23551,"23551":23552,"23552":23553,"23553":23554,"23554":23555,"23555":23556,"23556":23557,"23557":23558,"23558":23559,"23559":23560,"23560":23561,"23561":23562,"23562":23563,"23563":23564,"23564":23565,"23565":23566,"23566":23567,"23567":23568,"23568":23569,"23569":23570,"23570":23571,"23571":23572,"23572":23573,"23573":23574,"23574":23575,"23575":23576,"23576":23577,"23577":23578,"23578":23579,"23579":23580,"23580":23581,"23581":23582,"23582":23583,"23583":23584,"23584":23585,"23585":23586,"23586":23587,"23587":23588,"23588":23589,"23589":23590,"23590":23591,"23591":23592,"23592":23593,"23593":23594,"23594":23595,"23595":23596,"23596":23597,"23597":23598,"23598":23599,"23599":23600,"23600":23601,"23601":23602,"23602":23603,"23603":23604,"23604":23605,"23605":23606,"23606":23607,"23607":23608,"23608":23609,"23609":23610,"23610":23611,"23611":23612,"23612":23613,"23613":23614,"23614":23615,"23615":23616,"23616":23617,"23617":23618,"23618":23619,"23619":23620,"23620":23621,"23621":23622,"23622":23623,"23623":23624,"23624":23625,"23625":23626,"23626":23627,"23627":23628,"23628":23629,"23629":23630,"23630":23631,"23631":23632,"23632":23633,"23633":23634,"23634":23635,"23635":23636,"23636":23637,"23637":23638,"23638":23639,"23639":23640,"23640":23641,"23641":23642,"23642":23643,"23643":23644,"23644":23645,"23645":23646,"23646":23647,"23647":23648,"23648":23649,"23649":23650,"23650":23651,"23651":23652,"23652":23653,"23653":23654,"23654":23655,"23655":23656,"23656":23657,"23657":23658,"23658":23659,"23659":23660,"23660":23661,"23661":23662,"23662":23663,"23663":23664,"23664":23665,"23665":23666,"23666":23667,"23667":23668,"23668":23669,"23669":23670,"23670":23671,"23671":23672,"23672":23673,"23673":23674,"23674":23675,"23675":23676,"23676":23677,"23677":23678,"23678":23679,"23679":23680,"23680":23681,"23681":23682,"23682":23683,"23683":23684,"23684":23685,"23685":23686,"23686":23687,"23687":23688,"23688":23689,"23689":23690,"23690":23691,"23691":23692,"23692":23693,"23693":23694,"23694":23695,"23695":23696,"23696":23697,"23697":23698,"23698":23699,"23699":23700,"23700":23701,"23701":23702,"23702":23703,"23703":23704,"23704":23705,"23705":23706,"23706":23707,"23707":23708,"23708":23709,"23709":23710,"23710":23711,"23711":23712,"23712":23713,"23713":23714,"23714":23715,"23715":23716,"23716":23717,"23717":23718,"23718":23719,"23719":23720,"23720":23721,"23721":23722,"23722":23723,"23723":23724,"23724":23725,"23725":23726,"23726":23727,"23727":23728,"23728":23729,"23729":23730,"23730":23731,"23731":23732,"23732":23733,"23733":23734,"23734":23735,"23735":23736,"23736":23737,"23737":23738,"23738":23739,"23739":23740,"23740":23741,"23741":23742,"23742":23743,"23743":23744,"23744":23745,"23745":23746,"23746":23747,"23747":23748,"23748":23749,"23749":23750,"23750":23751,"23751":23752,"23752":23753,"23753":23754,"23754":23755,"23755":23756,"23756":23757,"23757":23758,"23758":23759,"23759":23760,"23760":23761,"23761":23762,"23762":23763,"23763":23764,"23764":23765,"23765":23766,"23766":23767,"23767":23768,"23768":23769,"23769":23770,"23770":23771,"23771":23772,"23772":23773,"23773":23774,"23774":23775,"23775":23776,"23776":23777,"23777":23778,"23778":23779,"23779":23780,"23780":23781,"23781":23782,"23782":23783,"23783":23784,"23784":23785,"23785":23786,"23786":23787,"23787":23788,"23788":23789,"23789":23790,"23790":23791,"23791":23792,"23792":23793,"23793":23794,"23794":23795,"23795":23796,"23796":23797,"23797":23798,"23798":23799,"23799":23800,"23800":23801,"23801":23802,"23802":23803,"23803":23804,"23804":23805,"23805":23806,"23806":23807,"23807":23808,"23808":23809,"23809":23810,"23810":23811,"23811":23812,"23812":23813,"23813":23814,"23814":23815,"23815":23816,"23816":23817,"23817":23818,"23818":23819,"23819":23820,"23820":23821,"23821":23822,"23822":23823,"23823":23824,"23824":23825,"23825":23826,"23826":23827,"23827":23828,"23828":23829,"23829":23830,"23830":23831,"23831":23832,"23832":23833,"23833":23834,"23834":23835,"23835":23836,"23836":23837,"23837":23838,"23838":23839,"23839":23840,"23840":23841,"23841":23842,"23842":23843,"23843":23844,"23844":23845,"23845":23846,"23846":23847,"23847":23848,"23848":23849,"23849":23850,"23850":23851,"23851":23852,"23852":23853,"23853":23854,"23854":23855,"23855":23856,"23856":23857,"23857":23858,"23858":23859,"23859":23860,"23860":23861,"23861":23862,"23862":23863,"23863":23864,"23864":23865,"23865":23866,"23866":23867,"23867":23868,"23868":23869,"23869":23870,"23870":23871,"23871":23872,"23872":23873,"23873":23874,"23874":23875,"23875":23876,"23876":23877,"23877":23878,"23878":23879,"23879":23880,"23880":23881,"23881":23882,"23882":23883,"23883":23884,"23884":23885,"23885":23886,"23886":23887,"23887":23888,"23888":23889,"23889":23890,"23890":23891,"23891":23892,"23892":23893,"23893":23894,"23894":23895,"23895":23896,"23896":23897,"23897":23898,"23898":23899,"23899":23900,"23900":23901,"23901":23902,"23902":23903,"23903":23904,"23904":23905,"23905":23906,"23906":23907,"23907":23908,"23908":23909,"23909":23910,"23910":23911,"23911":23912,"23912":23913,"23913":23914,"23914":23915,"23915":23916,"23916":23917,"23917":23918,"23918":23919,"23919":23920,"23920":23921,"23921":23922,"23922":23923,"23923":23924,"23924":23925,"23925":23926,"23926":23927,"23927":23928,"23928":23929,"23929":23930,"23930":23931,"23931":23932,"23932":23933,"23933":23934,"23934":23935,"23935":23936,"23936":23937,"23937":23938,"23938":23939,"23939":23940,"23940":23941,"23941":23942,"23942":23943,"23943":23944,"23944":23945,"23945":23946,"23946":23947,"23947":23948,"23948":23949,"23949":23950,"23950":23951,"23951":23952,"23952":23953,"23953":23954,"23954":23955,"23955":23956,"23956":23957,"23957":23958,"23958":23959,"23959":23960,"23960":23961,"23961":23962,"23962":23963,"23963":23964,"23964":23965,"23965":23966,"23966":23967,"23967":23968,"23968":23969,"23969":23970,"23970":23971,"23971":23972,"23972":23973,"23973":23974,"23974":23975,"23975":23976,"23976":23977,"23977":23978,"23978":23979,"23979":23980,"23980":23981,"23981":23982,"23982":23983,"23983":23984,"23984":23985,"23985":23986,"23986":23987,"23987":23988,"23988":23989,"23989":23990,"23990":23991,"23991":23992,"23992":23993,"23993":23994,"23994":23995,"23995":23996,"23996":23997,"23997":23998,"23998":23999,"23999":24000,"24000":24001,"24001":24002,"24002":24003,"24003":24004,"24004":24005,"24005":24006,"24006":24007,"24007":24008,"24008":24009,"24009":24010,"24010":24011,"24011":24012,"24012":24013,"24013":24014,"24014":24015,"24015":24016,"24016":24017,"24017":24018,"24018":24019,"24019":24020,"24020":24021,"24021":24022,"24022":24023,"24023":24024,"24024":24025,"24025":24026,"24026":24027,"24027":24028,"24028":24029,"24029":24030,"24030":24031,"24031":24032,"24032":24033,"24033":24034,"24034":24035,"24035":24036,"24036":24037,"24037":24038,"24038":24039,"24039":24040,"24040":24041,"24041":24042,"24042":24043,"24043":24044,"24044":24045,"24045":24046,"24046":24047,"24047":24048,"24048":24049,"24049":24050,"24050":24051,"24051":24052,"24052":24053,"24053":24054,"24054":24055,"24055":24056,"24056":24057,"24057":24058,"24058":24059,"24059":24060,"24060":24061,"24061":24062,"24062":24063,"24063":24064,"24064":24065,"24065":24066,"24066":24067,"24067":24068,"24068":24069,"24069":24070,"24070":24071,"24071":24072,"24072":24073,"24073":24074,"24074":24075,"24075":24076,"24076":24077,"24077":24078,"24078":24079,"24079":24080,"24080":24081,"24081":24082,"24082":24083,"24083":24084,"24084":24085,"24085":24086,"24086":24087,"24087":24088,"24088":24089,"24089":24090,"24090":24091,"24091":24092,"24092":24093,"24093":24094,"24094":24095,"24095":24096,"24096":24097,"24097":24098,"24098":24099,"24099":24100,"24100":24101,"24101":24102,"24102":24103,"24103":24104,"24104":24105,"24105":24106,"24106":24107,"24107":24108,"24108":24109,"24109":24110,"24110":24111,"24111":24112,"24112":24113,"24113":24114,"24114":24115,"24115":24116,"24116":24117,"24117":24118,"24118":24119,"24119":24120,"24120":24121,"24121":24122,"24122":24123,"24123":24124,"24124":24125,"24125":24126,"24126":24127,"24127":24128,"24128":24129,"24129":24130,"24130":24131,"24131":24132,"24132":24133,"24133":24134,"24134":24135,"24135":24136,"24136":24137,"24137":24138,"24138":24139,"24139":24140,"24140":24141,"24141":24142,"24142":24143,"24143":24144,"24144":24145,"24145":24146,"24146":24147,"24147":24148,"24148":24149,"24149":24150,"24150":24151,"24151":24152,"24152":24153,"24153":24154,"24154":24155,"24155":24156,"24156":24157,"24157":24158,"24158":24159,"24159":24160,"24160":24161,"24161":24162,"24162":24163,"24163":24164,"24164":24165,"24165":24166,"24166":24167,"24167":24168,"24168":24169,"24169":24170,"24170":24171,"24171":24172,"24172":24173,"24173":24174,"24174":24175,"24175":24176,"24176":24177,"24177":24178,"24178":24179,"24179":24180,"24180":24181,"24181":24182,"24182":24183,"24183":24184,"24184":24185,"24185":24186,"24186":24187,"24187":24188,"24188":24189,"24189":24190,"24190":24191,"24191":24192,"24192":24193,"24193":24194,"24194":24195,"24195":24196,"24196":24197,"24197":24198,"24198":24199,"24199":24200,"24200":24201,"24201":24202,"24202":24203,"24203":24204,"24204":24205,"24205":24206,"24206":24207,"24207":24208,"24208":24209,"24209":24210,"24210":24211,"24211":24212,"24212":24213,"24213":24214,"24214":24215,"24215":24216,"24216":24217,"24217":24218,"24218":24219,"24219":24220,"24220":24221,"24221":24222,"24222":24223,"24223":24224,"24224":24225,"24225":24226,"24226":24227,"24227":24228,"24228":24229,"24229":24230,"24230":24231,"24231":24232,"24232":24233,"24233":24234,"24234":24235,"24235":24236,"24236":24237,"24237":24238,"24238":24239,"24239":24240,"24240":24241,"24241":24242,"24242":24243,"24243":24244,"24244":24245,"24245":24246,"24246":24247,"24247":24248,"24248":24249,"24249":24250,"24250":24251,"24251":24252,"24252":24253,"24253":24254,"24254":24255,"24255":24256,"24256":24257,"24257":24258,"24258":24259,"24259":24260,"24260":24261,"24261":24262,"24262":24263,"24263":24264,"24264":24265,"24265":24266,"24266":24267,"24267":24268,"24268":24269,"24269":24270,"24270":24271,"24271":24272,"24272":24273,"24273":24274,"24274":24275,"24275":24276,"24276":24277,"24277":24278,"24278":24279,"24279":24280,"24280":24281,"24281":24282,"24282":24283,"24283":24284,"24284":24285,"24285":24286,"24286":24287,"24287":24288,"24288":24289,"24289":24290,"24290":24291,"24291":24292,"24292":24293,"24293":24294,"24294":24295,"24295":24296,"24296":24297,"24297":24298,"24298":24299,"24299":24300,"24300":24301,"24301":24302,"24302":24303,"24303":24304,"24304":24305,"24305":24306,"24306":24307,"24307":24308,"24308":24309,"24309":24310,"24310":24311,"24311":24312,"24312":24313,"24313":24314,"24314":24315,"24315":24316,"24316":24317,"24317":24318,"24318":24319,"24319":24320,"24320":24321,"24321":24322,"24322":24323,"24323":24324,"24324":24325,"24325":24326,"24326":24327,"24327":24328,"24328":24329,"24329":24330,"24330":24331,"24331":24332,"24332":24333,"24333":24334,"24334":24335,"24335":24336,"24336":24337,"24337":24338,"24338":24339,"24339":24340,"24340":24341,"24341":24342,"24342":24343,"24343":24344,"24344":24345,"24345":24346,"24346":24347,"24347":24348,"24348":24349,"24349":24350,"24350":24351,"24351":24352,"24352":24353,"24353":24354,"24354":24355,"24355":24356,"24356":24357,"24357":24358,"24358":24359,"24359":24360,"24360":24361,"24361":24362,"24362":24363,"24363":24364,"24364":24365,"24365":24366,"24366":24367,"24367":24368,"24368":24369,"24369":24370,"24370":24371,"24371":24372,"24372":24373,"24373":24374,"24374":24375,"24375":24376,"24376":24377,"24377":24378,"24378":24379,"24379":24380,"24380":24381,"24381":24382,"24382":24383,"24383":24384,"24384":24385,"24385":24386,"24386":24387,"24387":24388,"24388":24389,"24389":24390,"24390":24391,"24391":24392,"24392":24393,"24393":24394,"24394":24395,"24395":24396,"24396":24397,"24397":24398,"24398":24399,"24399":24400,"24400":24401,"24401":24402,"24402":24403,"24403":24404,"24404":24405,"24405":24406,"24406":24407,"24407":24408,"24408":24409,"24409":24410,"24410":24411,"24411":24412,"24412":24413,"24413":24414,"24414":24415,"24415":24416,"24416":24417,"24417":24418,"24418":24419,"24419":24420,"24420":24421,"24421":24422,"24422":24423,"24423":24424,"24424":24425,"24425":24426,"24426":24427,"24427":24428,"24428":24429,"24429":24430,"24430":24431,"24431":24432,"24432":24433,"24433":24434,"24434":24435,"24435":24436,"24436":24437,"24437":24438,"24438":24439,"24439":24440,"24440":24441,"24441":24442,"24442":24443,"24443":24444,"24444":24445,"24445":24446,"24446":24447,"24447":24448,"24448":24449,"24449":24450,"24450":24451,"24451":24452,"24452":24453,"24453":24454,"24454":24455,"24455":24456,"24456":24457,"24457":24458,"24458":24459,"24459":24460,"24460":24461,"24461":24462,"24462":24463,"24463":24464,"24464":24465,"24465":24466,"24466":24467,"24467":24468,"24468":24469,"24469":24470,"24470":24471,"24471":24472,"24472":24473,"24473":24474,"24474":24475,"24475":24476,"24476":24477,"24477":24478,"24478":24479,"24479":24480,"24480":24481,"24481":24482,"24482":24483,"24483":24484,"24484":24485,"24485":24486,"24486":24487,"24487":24488,"24488":24489,"24489":24490,"24490":24491,"24491":24492,"24492":24493,"24493":24494,"24494":24495,"24495":24496,"24496":24497,"24497":24498,"24498":24499,"24499":24500,"24500":24501,"24501":24502,"24502":24503,"24503":24504,"24504":24505,"24505":24506,"24506":24507,"24507":24508,"24508":24509,"24509":24510,"24510":24511,"24511":24512,"24512":24513,"24513":24514,"24514":24515,"24515":24516,"24516":24517,"24517":24518,"24518":24519,"24519":24520,"24520":24521,"24521":24522,"24522":24523,"24523":24524,"24524":24525,"24525":24526,"24526":24527,"24527":24528,"24528":24529,"24529":24530,"24530":24531,"24531":24532,"24532":24533,"24533":24534,"24534":24535,"24535":24536,"24536":24537,"24537":24538,"24538":24539,"24539":24540,"24540":24541,"24541":24542,"24542":24543,"24543":24544,"24544":24545,"24545":24546,"24546":24547,"24547":24548,"24548":24549,"24549":24550,"24550":24551,"24551":24552,"24552":24553,"24553":24554,"24554":24555,"24555":24556,"24556":24557,"24557":24558,"24558":24559,"24559":24560,"24560":24561,"24561":24562,"24562":24563,"24563":24564,"24564":24565,"24565":24566,"24566":24567,"24567":24568,"24568":24569,"24569":24570,"24570":24571,"24571":24572,"24572":24573,"24573":24574,"24574":24575,"24575":24576,"24576":24577,"24577":24578,"24578":24579,"24579":24580,"24580":24581,"24581":24582,"24582":24583,"24583":24584,"24584":24585,"24585":24586,"24586":24587,"24587":24588,"24588":24589,"24589":24590,"24590":24591,"24591":24592,"24592":24593,"24593":24594,"24594":24595,"24595":24596,"24596":24597,"24597":24598,"24598":24599,"24599":24600,"24600":24601,"24601":24602,"24602":24603,"24603":24604,"24604":24605,"24605":24606,"24606":24607,"24607":24608,"24608":24609,"24609":24610,"24610":24611,"24611":24612,"24612":24613,"24613":24614,"24614":24615,"24615":24616,"24616":24617,"24617":24618,"24618":24619,"24619":24620,"24620":24621,"24621":24622,"24622":24623,"24623":24624,"24624":24625,"24625":24626,"24626":24627,"24627":24628,"24628":24629,"24629":24630,"24630":24631,"24631":24632,"24632":24633,"24633":24634,"24634":24635,"24635":24636,"24636":24637,"24637":24638,"24638":24639,"24639":24640,"24640":24641,"24641":24642,"24642":24643,"24643":24644,"24644":24645,"24645":24646,"24646":24647,"24647":24648,"24648":24649,"24649":24650,"24650":24651,"24651":24652,"24652":24653,"24653":24654,"24654":24655,"24655":24656,"24656":24657,"24657":24658,"24658":24659,"24659":24660,"24660":24661,"24661":24662,"24662":24663,"24663":24664,"24664":24665,"24665":24666,"24666":24667,"24667":24668,"24668":24669,"24669":24670,"24670":24671,"24671":24672,"24672":24673,"24673":24674,"24674":24675,"24675":24676,"24676":24677,"24677":24678,"24678":24679,"24679":24680,"24680":24681,"24681":24682,"24682":24683,"24683":24684,"24684":24685,"24685":24686,"24686":24687,"24687":24688,"24688":24689,"24689":24690,"24690":24691,"24691":24692,"24692":24693,"24693":24694,"24694":24695,"24695":24696,"24696":24697,"24697":24698,"24698":24699,"24699":24700,"24700":24701,"24701":24702,"24702":24703,"24703":24704,"24704":24705,"24705":24706,"24706":24707,"24707":24708,"24708":24709,"24709":24710,"24710":24711,"24711":24712,"24712":24713,"24713":24714,"24714":24715,"24715":24716,"24716":24717,"24717":24718,"24718":24719,"24719":24720,"24720":24721,"24721":24722,"24722":24723,"24723":24724,"24724":24725,"24725":24726,"24726":24727,"24727":24728,"24728":24729,"24729":24730,"24730":24731,"24731":24732,"24732":24733,"24733":24734,"24734":24735,"24735":24736,"24736":24737,"24737":24738,"24738":24739,"24739":24740,"24740":24741,"24741":24742,"24742":24743,"24743":24744,"24744":24745,"24745":24746,"24746":24747,"24747":24748,"24748":24749,"24749":24750,"24750":24751,"24751":24752,"24752":24753,"24753":24754,"24754":24755,"24755":24756,"24756":24757,"24757":24758,"24758":24759,"24759":24760,"24760":24761,"24761":24762,"24762":24763,"24763":24764,"24764":24765,"24765":24766,"24766":24767,"24767":24768,"24768":24769,"24769":24770,"24770":24771,"24771":24772,"24772":24773,"24773":24774,"24774":24775,"24775":24776,"24776":24777,"24777":24778,"24778":24779,"24779":24780,"24780":24781,"24781":24782,"24782":24783,"24783":24784,"24784":24785,"24785":24786,"24786":24787,"24787":24788,"24788":24789,"24789":24790,"24790":24791,"24791":24792,"24792":24793,"24793":24794,"24794":24795,"24795":24796,"24796":24797,"24797":24798,"24798":24799,"24799":24800,"24800":24801,"24801":24802,"24802":24803,"24803":24804,"24804":24805,"24805":24806,"24806":24807,"24807":24808,"24808":24809,"24809":24810,"24810":24811,"24811":24812,"24812":24813,"24813":24814,"24814":24815,"24815":24816,"24816":24817,"24817":24818,"24818":24819,"24819":24820,"24820":24821,"24821":24822,"24822":24823,"24823":24824,"24824":24825,"24825":24826,"24826":24827,"24827":24828,"24828":24829,"24829":24830,"24830":24831,"24831":24832,"24832":24833,"24833":24834,"24834":24835,"24835":24836,"24836":24837,"24837":24838,"24838":24839,"24839":24840,"24840":24841,"24841":24842,"24842":24843,"24843":24844,"24844":24845,"24845":24846,"24846":24847,"24847":24848,"24848":24849,"24849":24850,"24850":24851,"24851":24852,"24852":24853,"24853":24854,"24854":24855,"24855":24856,"24856":24857,"24857":24858,"24858":24859,"24859":24860,"24860":24861,"24861":24862,"24862":24863,"24863":24864,"24864":24865,"24865":24866,"24866":24867,"24867":24868,"24868":24869,"24869":24870,"24870":24871,"24871":24872,"24872":24873,"24873":24874,"24874":24875,"24875":24876,"24876":24877,"24877":24878,"24878":24879,"24879":24880,"24880":24881,"24881":24882,"24882":24883,"24883":24884,"24884":24885,"24885":24886,"24886":24887,"24887":24888,"24888":24889,"24889":24890,"24890":24891,"24891":24892,"24892":24893,"24893":24894,"24894":24895,"24895":24896,"24896":24897,"24897":24898,"24898":24899,"24899":24900,"24900":24901,"24901":24902,"24902":24903,"24903":24904,"24904":24905,"24905":24906,"24906":24907,"24907":24908,"24908":24909,"24909":24910,"24910":24911,"24911":24912,"24912":24913,"24913":24914,"24914":24915,"24915":24916,"24916":24917,"24917":24918,"24918":24919,"24919":24920,"24920":24921,"24921":24922,"24922":24923,"24923":24924,"24924":24925,"24925":24926,"24926":24927,"24927":24928,"24928":24929,"24929":24930,"24930":24931,"24931":24932,"24932":24933,"24933":24934,"24934":24935,"24935":24936,"24936":24937,"24937":24938,"24938":24939,"24939":24940,"24940":24941,"24941":24942,"24942":24943,"24943":24944,"24944":24945,"24945":24946,"24946":24947,"24947":24948,"24948":24949,"24949":24950,"24950":24951,"24951":24952,"24952":24953,"24953":24954,"24954":24955,"24955":24956,"24956":24957,"24957":24958,"24958":24959,"24959":24960,"24960":24961,"24961":24962,"24962":24963,"24963":24964,"24964":24965,"24965":24966,"24966":24967,"24967":24968,"24968":24969,"24969":24970,"24970":24971,"24971":24972,"24972":24973,"24973":24974,"24974":24975,"24975":24976,"24976":24977,"24977":24978,"24978":24979,"24979":24980,"24980":24981,"24981":24982,"24982":24983,"24983":24984,"24984":24985,"24985":24986,"24986":24987,"24987":24988,"24988":24989,"24989":24990,"24990":24991,"24991":24992,"24992":24993,"24993":24994,"24994":24995,"24995":24996,"24996":24997,"24997":24998,"24998":24999,"24999":25000,"25000":25001,"25001":25002,"25002":25003,"25003":25004,"25004":25005,"25005":25006,"25006":25007,"25007":25008,"25008":25009,"25009":25010,"25010":25011,"25011":25012,"25012":25013,"25013":25014,"25014":25015,"25015":25016,"25016":25017,"25017":25018,"25018":25019,"25019":25020,"25020":25021,"25021":25022,"25022":25023,"25023":25024,"25024":25025,"25025":25026,"25026":25027,"25027":25028,"25028":25029,"25029":25030,"25030":25031,"25031":25032,"25032":25033,"25033":25034,"25034":25035,"25035":25036,"25036":25037,"25037":25038,"25038":25039,"25039":25040,"25040":25041,"25041":25042,"25042":25043,"25043":25044,"25044":25045,"25045":25046,"25046":25047,"25047":25048,"25048":25049,"25049":25050,"25050":25051,"25051":25052,"25052":25053,"25053":25054,"25054":25055,"25055":25056,"25056":25057,"25057":25058,"25058":25059,"25059":25060,"25060":25061,"25061":25062,"25062":25063,"25063":25064,"25064":25065,"25065":25066,"25066":25067,"25067":25068,"25068":25069,"25069":25070,"25070":25071,"25071":25072,"25072":25073,"25073":25074,"25074":25075,"25075":25076,"25076":25077,"25077":25078,"25078":25079,"25079":25080,"25080":25081,"25081":25082,"25082":25083,"25083":25084,"25084":25085,"25085":25086,"25086":25087,"25087":25088,"25088":25089,"25089":25090,"25090":25091,"25091":25092,"25092":25093,"25093":25094,"25094":25095,"25095":25096,"25096":25097,"25097":25098,"25098":25099,"25099":25100,"25100":25101,"25101":25102,"25102":25103,"25103":25104,"25104":25105,"25105":25106,"25106":25107,"25107":25108,"25108":25109,"25109":25110,"25110":25111,"25111":25112,"25112":25113,"25113":25114,"25114":25115,"25115":25116,"25116":25117,"25117":25118,"25118":25119,"25119":25120,"25120":25121,"25121":25122,"25122":25123,"25123":25124,"25124":25125,"25125":25126,"25126":25127,"25127":25128,"25128":25129,"25129":25130,"25130":25131,"25131":25132,"25132":25133,"25133":25134,"25134":25135,"25135":25136,"25136":25137,"25137":25138,"25138":25139,"25139":25140,"25140":25141,"25141":25142,"25142":25143,"25143":25144,"25144":25145,"25145":25146,"25146":25147,"25147":25148,"25148":25149,"25149":25150,"25150":25151,"25151":25152,"25152":25153,"25153":25154,"25154":25155,"25155":25156,"25156":25157,"25157":25158,"25158":25159,"25159":25160,"25160":25161,"25161":25162,"25162":25163,"25163":25164,"25164":25165,"25165":25166,"25166":25167,"25167":25168,"25168":25169,"25169":25170,"25170":25171,"25171":25172,"25172":25173,"25173":25174,"25174":25175,"25175":25176,"25176":25177,"25177":25178,"25178":25179,"25179":25180,"25180":25181,"25181":25182,"25182":25183,"25183":25184,"25184":25185,"25185":25186,"25186":25187,"25187":25188,"25188":25189,"25189":25190,"25190":25191,"25191":25192,"25192":25193,"25193":25194,"25194":25195,"25195":25196,"25196":25197,"25197":25198,"25198":25199,"25199":25200,"25200":25201,"25201":25202,"25202":25203,"25203":25204,"25204":25205,"25205":25206,"25206":25207,"25207":25208,"25208":25209,"25209":25210,"25210":25211,"25211":25212,"25212":25213,"25213":25214,"25214":25215,"25215":25216,"25216":25217,"25217":25218,"25218":25219,"25219":25220,"25220":25221,"25221":25222,"25222":25223,"25223":25224,"25224":25225,"25225":25226,"25226":25227,"25227":25228,"25228":25229,"25229":25230,"25230":25231,"25231":25232,"25232":25233,"25233":25234,"25234":25235,"25235":25236,"25236":25237,"25237":25238,"25238":25239,"25239":25240,"25240":25241,"25241":25242,"25242":25243,"25243":25244,"25244":25245,"25245":25246,"25246":25247,"25247":25248,"25248":25249,"25249":25250,"25250":25251,"25251":25252,"25252":25253,"25253":25254,"25254":25255,"25255":25256,"25256":25257,"25257":25258,"25258":25259,"25259":25260,"25260":25261,"25261":25262,"25262":25263,"25263":25264,"25264":25265,"25265":25266,"25266":25267,"25267":25268,"25268":25269,"25269":25270,"25270":25271,"25271":25272,"25272":25273,"25273":25274,"25274":25275,"25275":25276,"25276":25277,"25277":25278,"25278":25279,"25279":25280,"25280":25281,"25281":25282,"25282":25283,"25283":25284,"25284":25285,"25285":25286,"25286":25287,"25287":25288,"25288":25289,"25289":25290,"25290":25291,"25291":25292,"25292":25293,"25293":25294,"25294":25295,"25295":25296,"25296":25297,"25297":25298,"25298":25299,"25299":25300,"25300":25301,"25301":25302,"25302":25303,"25303":25304,"25304":25305,"25305":25306,"25306":25307,"25307":25308,"25308":25309,"25309":25310,"25310":25311,"25311":25312,"25312":25313,"25313":25314,"25314":25315,"25315":25316,"25316":25317,"25317":25318,"25318":25319,"25319":25320,"25320":25321,"25321":25322,"25322":25323,"25323":25324,"25324":25325,"25325":25326,"25326":25327,"25327":25328,"25328":25329,"25329":25330,"25330":25331,"25331":25332,"25332":25333,"25333":25334,"25334":25335,"25335":25336,"25336":25337,"25337":25338,"25338":25339,"25339":25340,"25340":25341,"25341":25342,"25342":25343,"25343":25344,"25344":25345,"25345":25346,"25346":25347,"25347":25348,"25348":25349,"25349":25350,"25350":25351,"25351":25352,"25352":25353,"25353":25354,"25354":25355,"25355":25356,"25356":25357,"25357":25358,"25358":25359,"25359":25360,"25360":25361,"25361":25362,"25362":25363,"25363":25364,"25364":25365,"25365":25366,"25366":25367,"25367":25368,"25368":25369,"25369":25370,"25370":25371,"25371":25372,"25372":25373,"25373":25374,"25374":25375,"25375":25376,"25376":25377,"25377":25378,"25378":25379,"25379":25380,"25380":25381,"25381":25382,"25382":25383,"25383":25384,"25384":25385,"25385":25386,"25386":25387,"25387":25388,"25388":25389,"25389":25390,"25390":25391,"25391":25392,"25392":25393,"25393":25394,"25394":25395,"25395":25396,"25396":25397,"25397":25398,"25398":25399,"25399":25400,"25400":25401,"25401":25402,"25402":25403,"25403":25404,"25404":25405,"25405":25406,"25406":25407,"25407":25408,"25408":25409,"25409":25410,"25410":25411,"25411":25412,"25412":25413,"25413":25414,"25414":25415,"25415":25416,"25416":25417,"25417":25418,"25418":25419,"25419":25420,"25420":25421,"25421":25422,"25422":25423,"25423":25424,"25424":25425,"25425":25426,"25426":25427,"25427":25428,"25428":25429,"25429":25430,"25430":25431,"25431":25432,"25432":25433,"25433":25434,"25434":25435,"25435":25436,"25436":25437,"25437":25438,"25438":25439,"25439":25440,"25440":25441,"25441":25442,"25442":25443,"25443":25444,"25444":25445,"25445":25446,"25446":25447,"25447":25448,"25448":25449,"25449":25450,"25450":25451,"25451":25452,"25452":25453,"25453":25454,"25454":25455,"25455":25456,"25456":25457,"25457":25458,"25458":25459,"25459":25460,"25460":25461,"25461":25462,"25462":25463,"25463":25464,"25464":25465,"25465":25466,"25466":25467,"25467":25468,"25468":25469,"25469":25470,"25470":25471,"25471":25472,"25472":25473,"25473":25474,"25474":25475,"25475":25476,"25476":25477,"25477":25478,"25478":25479,"25479":25480,"25480":25481,"25481":25482,"25482":25483,"25483":25484,"25484":25485,"25485":25486,"25486":25487,"25487":25488,"25488":25489,"25489":25490,"25490":25491,"25491":25492,"25492":25493,"25493":25494,"25494":25495,"25495":25496,"25496":25497,"25497":25498,"25498":25499,"25499":25500,"25500":25501,"25501":25502,"25502":25503,"25503":25504,"25504":25505,"25505":25506,"25506":25507,"25507":25508,"25508":25509,"25509":25510,"25510":25511,"25511":25512,"25512":25513,"25513":25514,"25514":25515,"25515":25516,"25516":25517,"25517":25518,"25518":25519,"25519":25520,"25520":25521,"25521":25522,"25522":25523,"25523":25524,"25524":25525,"25525":25526,"25526":25527,"25527":25528,"25528":25529,"25529":25530,"25530":25531,"25531":25532,"25532":25533,"25533":25534,"25534":25535,"25535":25536,"25536":25537,"25537":25538,"25538":25539,"25539":25540,"25540":25541,"25541":25542,"25542":25543,"25543":25544,"25544":25545,"25545":25546,"25546":25547,"25547":25548,"25548":25549,"25549":25550,"25550":25551,"25551":25552,"25552":25553,"25553":25554,"25554":25555,"25555":25556,"25556":25557,"25557":25558,"25558":25559,"25559":25560,"25560":25561,"25561":25562,"25562":25563,"25563":25564,"25564":25565,"25565":25566,"25566":25567,"25567":25568,"25568":25569,"25569":25570,"25570":25571,"25571":25572,"25572":25573,"25573":25574,"25574":25575,"25575":25576,"25576":25577,"25577":25578,"25578":25579,"25579":25580,"25580":25581,"25581":25582,"25582":25583,"25583":25584,"25584":25585,"25585":25586,"25586":25587,"25587":25588,"25588":25589,"25589":25590,"25590":25591,"25591":25592,"25592":25593,"25593":25594,"25594":25595,"25595":25596,"25596":25597,"25597":25598,"25598":25599,"25599":25600,"25600":25601,"25601":25602,"25602":25603,"25603":25604,"25604":25605,"25605":25606,"25606":25607,"25607":25608,"25608":25609,"25609":25610,"25610":25611,"25611":25612,"25612":25613,"25613":25614,"25614":25615,"25615":25616,"25616":25617,"25617":25618,"25618":25619,"25619":25620,"25620":25621,"25621":25622,"25622":25623,"25623":25624,"25624":25625,"25625":25626,"25626":25627,"25627":25628,"25628":25629,"25629":25630,"25630":25631,"25631":25632,"25632":25633,"25633":25634,"25634":25635,"25635":25636,"25636":25637,"25637":25638,"25638":25639,"25639":25640,"25640":25641,"25641":25642,"25642":25643,"25643":25644,"25644":25645,"25645":25646,"25646":25647,"25647":25648,"25648":25649,"25649":25650,"25650":25651,"25651":25652,"25652":25653,"25653":25654,"25654":25655,"25655":25656,"25656":25657,"25657":25658,"25658":25659,"25659":25660,"25660":25661,"25661":25662,"25662":25663,"25663":25664,"25664":25665,"25665":25666,"25666":25667,"25667":25668,"25668":25669,"25669":25670,"25670":25671,"25671":25672,"25672":25673,"25673":25674,"25674":25675,"25675":25676,"25676":25677,"25677":25678,"25678":25679,"25679":25680,"25680":25681,"25681":25682,"25682":25683,"25683":25684,"25684":25685,"25685":25686,"25686":25687,"25687":25688,"25688":25689,"25689":25690,"25690":25691,"25691":25692,"25692":25693,"25693":25694,"25694":25695,"25695":25696,"25696":25697,"25697":25698,"25698":25699,"25699":25700,"25700":25701,"25701":25702,"25702":25703,"25703":25704,"25704":25705,"25705":25706,"25706":25707,"25707":25708,"25708":25709,"25709":25710,"25710":25711,"25711":25712,"25712":25713,"25713":25714,"25714":25715,"25715":25716,"25716":25717,"25717":25718,"25718":25719,"25719":25720,"25720":25721,"25721":25722,"25722":25723,"25723":25724,"25724":25725,"25725":25726,"25726":25727,"25727":25728,"25728":25729,"25729":25730,"25730":25731,"25731":25732,"25732":25733,"25733":25734,"25734":25735,"25735":25736,"25736":25737,"25737":25738,"25738":25739,"25739":25740,"25740":25741,"25741":25742,"25742":25743,"25743":25744,"25744":25745,"25745":25746,"25746":25747,"25747":25748,"25748":25749,"25749":25750,"25750":25751,"25751":25752,"25752":25753,"25753":25754,"25754":25755,"25755":25756,"25756":25757,"25757":25758,"25758":25759,"25759":25760,"25760":25761,"25761":25762,"25762":25763,"25763":25764,"25764":25765,"25765":25766,"25766":25767,"25767":25768,"25768":25769,"25769":25770,"25770":25771,"25771":25772,"25772":25773,"25773":25774,"25774":25775,"25775":25776,"25776":25777,"25777":25778,"25778":25779,"25779":25780,"25780":25781,"25781":25782,"25782":25783,"25783":25784,"25784":25785,"25785":25786,"25786":25787,"25787":25788,"25788":25789,"25789":25790,"25790":25791,"25791":25792,"25792":25793,"25793":25794,"25794":25795,"25795":25796,"25796":25797,"25797":25798,"25798":25799,"25799":25800,"25800":25801,"25801":25802,"25802":25803,"25803":25804,"25804":25805,"25805":25806,"25806":25807,"25807":25808,"25808":25809,"25809":25810,"25810":25811,"25811":25812,"25812":25813,"25813":25814,"25814":25815,"25815":25816,"25816":25817,"25817":25818,"25818":25819,"25819":25820,"25820":25821,"25821":25822,"25822":25823,"25823":25824,"25824":25825,"25825":25826,"25826":25827,"25827":25828,"25828":25829,"25829":25830,"25830":25831,"25831":25832,"25832":25833,"25833":25834,"25834":25835,"25835":25836,"25836":25837,"25837":25838,"25838":25839,"25839":25840,"25840":25841,"25841":25842,"25842":25843,"25843":25844,"25844":25845,"25845":25846,"25846":25847,"25847":25848,"25848":25849,"25849":25850,"25850":25851,"25851":25852,"25852":25853,"25853":25854,"25854":25855,"25855":25856,"25856":25857,"25857":25858,"25858":25859,"25859":25860,"25860":25861,"25861":25862,"25862":25863,"25863":25864,"25864":25865,"25865":25866,"25866":25867,"25867":25868,"25868":25869,"25869":25870,"25870":25871,"25871":25872,"25872":25873,"25873":25874,"25874":25875,"25875":25876,"25876":25877,"25877":25878,"25878":25879,"25879":25880,"25880":25881,"25881":25882,"25882":25883,"25883":25884,"25884":25885,"25885":25886,"25886":25887,"25887":25888,"25888":25889,"25889":25890,"25890":25891,"25891":25892,"25892":25893,"25893":25894,"25894":25895,"25895":25896,"25896":25897,"25897":25898,"25898":25899,"25899":25900,"25900":25901,"25901":25902,"25902":25903,"25903":25904,"25904":25905,"25905":25906,"25906":25907,"25907":25908,"25908":25909,"25909":25910,"25910":25911,"25911":25912,"25912":25913,"25913":25914,"25914":25915,"25915":25916,"25916":25917,"25917":25918,"25918":25919,"25919":25920,"25920":25921,"25921":25922,"25922":25923,"25923":25924,"25924":25925,"25925":25926,"25926":25927,"25927":25928,"25928":25929,"25929":25930,"25930":25931,"25931":25932,"25932":25933,"25933":25934,"25934":25935,"25935":25936,"25936":25937,"25937":25938,"25938":25939,"25939":25940,"25940":25941,"25941":25942,"25942":25943,"25943":25944,"25944":25945,"25945":25946,"25946":25947,"25947":25948,"25948":25949,"25949":25950,"25950":25951,"25951":25952,"25952":25953,"25953":25954,"25954":25955,"25955":25956,"25956":25957,"25957":25958,"25958":25959,"25959":25960,"25960":25961,"25961":25962,"25962":25963,"25963":25964,"25964":25965,"25965":25966,"25966":25967,"25967":25968,"25968":25969,"25969":25970,"25970":25971,"25971":25972,"25972":25973,"25973":25974,"25974":25975,"25975":25976,"25976":25977,"25977":25978,"25978":25979,"25979":25980,"25980":25981,"25981":25982,"25982":25983,"25983":25984,"25984":25985,"25985":25986,"25986":25987,"25987":25988,"25988":25989,"25989":25990,"25990":25991,"25991":25992,"25992":25993,"25993":25994,"25994":25995,"25995":25996,"25996":25997,"25997":25998,"25998":25999,"25999":26000,"26000":26001,"26001":26002,"26002":26003,"26003":26004,"26004":26005,"26005":26006,"26006":26007,"26007":26008,"26008":26009,"26009":26010,"26010":26011,"26011":26012,"26012":26013,"26013":26014,"26014":26015,"26015":26016,"26016":26017,"26017":26018,"26018":26019,"26019":26020,"26020":26021,"26021":26022,"26022":26023,"26023":26024,"26024":26025,"26025":26026,"26026":26027,"26027":26028,"26028":26029,"26029":26030,"26030":26031,"26031":26032,"26032":26033,"26033":26034,"26034":26035,"26035":26036,"26036":26037,"26037":26038,"26038":26039,"26039":26040,"26040":26041,"26041":26042,"26042":26043,"26043":26044,"26044":26045,"26045":26046,"26046":26047,"26047":26048,"26048":26049,"26049":26050,"26050":26051,"26051":26052,"26052":26053,"26053":26054,"26054":26055,"26055":26056,"26056":26057,"26057":26058,"26058":26059,"26059":26060,"26060":26061,"26061":26062,"26062":26063,"26063":26064,"26064":26065,"26065":26066,"26066":26067,"26067":26068,"26068":26069,"26069":26070,"26070":26071,"26071":26072,"26072":26073,"26073":26074,"26074":26075,"26075":26076,"26076":26077,"26077":26078,"26078":26079,"26079":26080,"26080":26081,"26081":26082,"26082":26083,"26083":26084,"26084":26085,"26085":26086,"26086":26087,"26087":26088,"26088":26089,"26089":26090,"26090":26091,"26091":26092,"26092":26093,"26093":26094,"26094":26095,"26095":26096,"26096":26097,"26097":26098,"26098":26099,"26099":26100,"26100":26101,"26101":26102,"26102":26103,"26103":26104,"26104":26105,"26105":26106,"26106":26107,"26107":26108,"26108":26109,"26109":26110,"26110":26111,"26111":26112,"26112":26113,"26113":26114,"26114":26115,"26115":26116,"26116":26117,"26117":26118,"26118":26119,"26119":26120,"26120":26121,"26121":26122,"26122":26123,"26123":26124,"26124":26125,"26125":26126,"26126":26127,"26127":26128,"26128":26129,"26129":26130,"26130":26131,"26131":26132,"26132":26133,"26133":26134,"26134":26135,"26135":26136,"26136":26137,"26137":26138,"26138":26139,"26139":26140,"26140":26141,"26141":26142,"26142":26143,"26143":26144,"26144":26145,"26145":26146,"26146":26147,"26147":26148,"26148":26149,"26149":26150,"26150":26151,"26151":26152,"26152":26153,"26153":26154,"26154":26155,"26155":26156,"26156":26157,"26157":26158,"26158":26159,"26159":26160,"26160":26161,"26161":26162,"26162":26163,"26163":26164,"26164":26165,"26165":26166,"26166":26167,"26167":26168,"26168":26169,"26169":26170,"26170":26171,"26171":26172,"26172":26173,"26173":26174,"26174":26175,"26175":26176,"26176":26177,"26177":26178,"26178":26179,"26179":26180,"26180":26181,"26181":26182,"26182":26183,"26183":26184,"26184":26185,"26185":26186,"26186":26187,"26187":26188,"26188":26189,"26189":26190,"26190":26191,"26191":26192,"26192":26193,"26193":26194,"26194":26195,"26195":26196,"26196":26197,"26197":26198,"26198":26199,"26199":26200,"26200":26201,"26201":26202,"26202":26203,"26203":26204,"26204":26205,"26205":26206,"26206":26207,"26207":26208,"26208":26209,"26209":26210,"26210":26211,"26211":26212,"26212":26213,"26213":26214,"26214":26215,"26215":26216,"26216":26217,"26217":26218,"26218":26219,"26219":26220,"26220":26221,"26221":26222,"26222":26223,"26223":26224,"26224":26225,"26225":26226,"26226":26227,"26227":26228,"26228":26229,"26229":26230,"26230":26231,"26231":26232,"26232":26233,"26233":26234,"26234":26235,"26235":26236,"26236":26237,"26237":26238,"26238":26239,"26239":26240,"26240":26241,"26241":26242,"26242":26243,"26243":26244,"26244":26245,"26245":26246,"26246":26247,"26247":26248,"26248":26249,"26249":26250,"26250":26251,"26251":26252,"26252":26253,"26253":26254,"26254":26255,"26255":26256,"26256":26257,"26257":26258,"26258":26259,"26259":26260,"26260":26261,"26261":26262,"26262":26263,"26263":26264,"26264":26265,"26265":26266,"26266":26267,"26267":26268,"26268":26269,"26269":26270,"26270":26271,"26271":26272,"26272":26273,"26273":26274,"26274":26275,"26275":26276,"26276":26277,"26277":26278,"26278":26279,"26279":26280,"26280":26281,"26281":26282,"26282":26283,"26283":26284,"26284":26285,"26285":26286,"26286":26287,"26287":26288,"26288":26289,"26289":26290,"26290":26291,"26291":26292,"26292":26293,"26293":26294,"26294":26295,"26295":26296,"26296":26297,"26297":26298,"26298":26299,"26299":26300,"26300":26301,"26301":26302,"26302":26303,"26303":26304,"26304":26305,"26305":26306,"26306":26307,"26307":26308,"26308":26309,"26309":26310,"26310":26311,"26311":26312,"26312":26313,"26313":26314,"26314":26315,"26315":26316,"26316":26317,"26317":26318,"26318":26319,"26319":26320,"26320":26321,"26321":26322,"26322":26323,"26323":26324,"26324":26325,"26325":26326,"26326":26327,"26327":26328,"26328":26329,"26329":26330,"26330":26331,"26331":26332,"26332":26333,"26333":26334,"26334":26335,"26335":26336,"26336":26337,"26337":26338,"26338":26339,"26339":26340,"26340":26341,"26341":26342,"26342":26343,"26343":26344,"26344":26345,"26345":26346,"26346":26347,"26347":26348,"26348":26349,"26349":26350,"26350":26351,"26351":26352,"26352":26353,"26353":26354,"26354":26355,"26355":26356,"26356":26357,"26357":26358,"26358":26359,"26359":26360,"26360":26361,"26361":26362,"26362":26363,"26363":26364,"26364":26365,"26365":26366,"26366":26367,"26367":26368,"26368":26369,"26369":26370,"26370":26371,"26371":26372,"26372":26373,"26373":26374,"26374":26375,"26375":26376,"26376":26377,"26377":26378,"26378":26379,"26379":26380,"26380":26381,"26381":26382,"26382":26383,"26383":26384,"26384":26385,"26385":26386,"26386":26387,"26387":26388,"26388":26389,"26389":26390,"26390":26391,"26391":26392,"26392":26393,"26393":26394,"26394":26395,"26395":26396,"26396":26397,"26397":26398,"26398":26399,"26399":26400,"26400":26401,"26401":26402,"26402":26403,"26403":26404,"26404":26405,"26405":26406,"26406":26407,"26407":26408,"26408":26409,"26409":26410,"26410":26411,"26411":26412,"26412":26413,"26413":26414,"26414":26415,"26415":26416,"26416":26417,"26417":26418,"26418":26419,"26419":26420,"26420":26421,"26421":26422,"26422":26423,"26423":26424,"26424":26425,"26425":26426,"26426":26427,"26427":26428,"26428":26429,"26429":26430,"26430":26431,"26431":26432,"26432":26433,"26433":26434,"26434":26435,"26435":26436,"26436":26437,"26437":26438,"26438":26439,"26439":26440,"26440":26441,"26441":26442,"26442":26443,"26443":26444,"26444":26445,"26445":26446,"26446":26447,"26447":26448,"26448":26449,"26449":26450,"26450":26451,"26451":26452,"26452":26453,"26453":26454,"26454":26455,"26455":26456,"26456":26457,"26457":26458,"26458":26459,"26459":26460,"26460":26461,"26461":26462,"26462":26463,"26463":26464,"26464":26465,"26465":26466,"26466":26467,"26467":26468,"26468":26469,"26469":26470,"26470":26471,"26471":26472,"26472":26473,"26473":26474,"26474":26475,"26475":26476,"26476":26477,"26477":26478,"26478":26479,"26479":26480,"26480":26481,"26481":26482,"26482":26483,"26483":26484,"26484":26485,"26485":26486,"26486":26487,"26487":26488,"26488":26489,"26489":26490,"26490":26491,"26491":26492,"26492":26493,"26493":26494,"26494":26495,"26495":26496,"26496":26497,"26497":26498,"26498":26499,"26499":26500,"26500":26501,"26501":26502,"26502":26503,"26503":26504,"26504":26505,"26505":26506,"26506":26507,"26507":26508,"26508":26509,"26509":26510,"26510":26511,"26511":26512,"26512":26513,"26513":26514,"26514":26515,"26515":26516,"26516":26517,"26517":26518,"26518":26519,"26519":26520,"26520":26521,"26521":26522,"26522":26523,"26523":26524,"26524":26525,"26525":26526,"26526":26527,"26527":26528,"26528":26529,"26529":26530,"26530":26531,"26531":26532,"26532":26533,"26533":26534,"26534":26535,"26535":26536,"26536":26537,"26537":26538,"26538":26539,"26539":26540,"26540":26541,"26541":26542,"26542":26543,"26543":26544,"26544":26545,"26545":26546,"26546":26547,"26547":26548,"26548":26549,"26549":26550,"26550":26551,"26551":26552,"26552":26553,"26553":26554,"26554":26555,"26555":26556,"26556":26557,"26557":26558,"26558":26559,"26559":26560,"26560":26561,"26561":26562,"26562":26563,"26563":26564,"26564":26565,"26565":26566,"26566":26567,"26567":26568,"26568":26569,"26569":26570,"26570":26571,"26571":26572,"26572":26573,"26573":26574,"26574":26575,"26575":26576,"26576":26577,"26577":26578,"26578":26579,"26579":26580,"26580":26581,"26581":26582,"26582":26583,"26583":26584,"26584":26585,"26585":26586,"26586":26587,"26587":26588,"26588":26589,"26589":26590,"26590":26591,"26591":26592,"26592":26593,"26593":26594,"26594":26595,"26595":26596,"26596":26597,"26597":26598,"26598":26599,"26599":26600,"26600":26601,"26601":26602,"26602":26603,"26603":26604,"26604":26605,"26605":26606,"26606":26607,"26607":26608,"26608":26609,"26609":26610,"26610":26611,"26611":26612,"26612":26613,"26613":26614,"26614":26615,"26615":26616,"26616":26617,"26617":26618,"26618":26619,"26619":26620,"26620":26621,"26621":26622,"26622":26623,"26623":26624,"26624":26625,"26625":26626,"26626":26627,"26627":26628,"26628":26629,"26629":26630,"26630":26631,"26631":26632,"26632":26633,"26633":26634,"26634":26635,"26635":26636,"26636":26637,"26637":26638,"26638":26639,"26639":26640,"26640":26641,"26641":26642,"26642":26643,"26643":26644,"26644":26645,"26645":26646,"26646":26647,"26647":26648,"26648":26649,"26649":26650,"26650":26651,"26651":26652,"26652":26653,"26653":26654,"26654":26655,"26655":26656,"26656":26657,"26657":26658,"26658":26659,"26659":26660,"26660":26661,"26661":26662,"26662":26663,"26663":26664,"26664":26665,"26665":26666,"26666":26667,"26667":26668,"26668":26669,"26669":26670,"26670":26671,"26671":26672,"26672":26673,"26673":26674,"26674":26675,"26675":26676,"26676":26677,"26677":26678,"26678":26679,"26679":26680,"26680":26681,"26681":26682,"26682":26683,"26683":26684,"26684":26685,"26685":26686,"26686":26687,"26687":26688,"26688":26689,"26689":26690,"26690":26691,"26691":26692,"26692":26693,"26693":26694,"26694":26695,"26695":26696,"26696":26697,"26697":26698,"26698":26699,"26699":26700,"26700":26701,"26701":26702,"26702":26703,"26703":26704,"26704":26705,"26705":26706,"26706":26707,"26707":26708,"26708":26709,"26709":26710,"26710":26711,"26711":26712,"26712":26713,"26713":26714,"26714":26715,"26715":26716,"26716":26717,"26717":26718,"26718":26719,"26719":26720,"26720":26721,"26721":26722,"26722":26723,"26723":26724,"26724":26725,"26725":26726,"26726":26727,"26727":26728,"26728":26729,"26729":26730,"26730":26731,"26731":26732,"26732":26733,"26733":26734,"26734":26735,"26735":26736,"26736":26737,"26737":26738,"26738":26739,"26739":26740,"26740":26741,"26741":26742,"26742":26743,"26743":26744,"26744":26745,"26745":26746,"26746":26747,"26747":26748,"26748":26749,"26749":26750,"26750":26751,"26751":26752,"26752":26753,"26753":26754,"26754":26755,"26755":26756,"26756":26757,"26757":26758,"26758":26759,"26759":26760,"26760":26761,"26761":26762,"26762":26763,"26763":26764,"26764":26765,"26765":26766,"26766":26767,"26767":26768,"26768":26769,"26769":26770,"26770":26771,"26771":26772,"26772":26773,"26773":26774,"26774":26775,"26775":26776,"26776":26777,"26777":26778,"26778":26779,"26779":26780,"26780":26781,"26781":26782,"26782":26783,"26783":26784,"26784":26785,"26785":26786,"26786":26787,"26787":26788,"26788":26789,"26789":26790,"26790":26791,"26791":26792,"26792":26793,"26793":26794,"26794":26795,"26795":26796,"26796":26797,"26797":26798,"26798":26799,"26799":26800,"26800":26801,"26801":26802,"26802":26803,"26803":26804,"26804":26805,"26805":26806,"26806":26807,"26807":26808,"26808":26809,"26809":26810,"26810":26811,"26811":26812,"26812":26813,"26813":26814,"26814":26815,"26815":26816,"26816":26817,"26817":26818,"26818":26819,"26819":26820,"26820":26821,"26821":26822,"26822":26823,"26823":26824,"26824":26825,"26825":26826,"26826":26827,"26827":26828,"26828":26829,"26829":26830,"26830":26831,"26831":26832,"26832":26833,"26833":26834,"26834":26835,"26835":26836,"26836":26837,"26837":26838,"26838":26839,"26839":26840,"26840":26841,"26841":26842,"26842":26843,"26843":26844,"26844":26845,"26845":26846,"26846":26847,"26847":26848,"26848":26849,"26849":26850,"26850":26851,"26851":26852,"26852":26853,"26853":26854,"26854":26855,"26855":26856,"26856":26857,"26857":26858,"26858":26859,"26859":26860,"26860":26861,"26861":26862,"26862":26863,"26863":26864,"26864":26865,"26865":26866,"26866":26867,"26867":26868,"26868":26869,"26869":26870,"26870":26871,"26871":26872,"26872":26873,"26873":26874,"26874":26875,"26875":26876,"26876":26877,"26877":26878,"26878":26879,"26879":26880,"26880":26881,"26881":26882,"26882":26883,"26883":26884,"26884":26885,"26885":26886,"26886":26887,"26887":26888,"26888":26889,"26889":26890,"26890":26891,"26891":26892,"26892":26893,"26893":26894,"26894":26895,"26895":26896,"26896":26897,"26897":26898,"26898":26899,"26899":26900,"26900":26901,"26901":26902,"26902":26903,"26903":26904,"26904":26905,"26905":26906,"26906":26907,"26907":26908,"26908":26909,"26909":26910,"26910":26911,"26911":26912,"26912":26913,"26913":26914,"26914":26915,"26915":26916,"26916":26917,"26917":26918,"26918":26919,"26919":26920,"26920":26921,"26921":26922,"26922":26923,"26923":26924,"26924":26925,"26925":26926,"26926":26927,"26927":26928,"26928":26929,"26929":26930,"26930":26931,"26931":26932,"26932":26933,"26933":26934,"26934":26935,"26935":26936,"26936":26937,"26937":26938,"26938":26939,"26939":26940,"26940":26941,"26941":26942,"26942":26943,"26943":26944,"26944":26945,"26945":26946,"26946":26947,"26947":26948,"26948":26949,"26949":26950,"26950":26951,"26951":26952,"26952":26953,"26953":26954,"26954":26955,"26955":26956,"26956":26957,"26957":26958,"26958":26959,"26959":26960,"26960":26961,"26961":26962,"26962":26963,"26963":26964,"26964":26965,"26965":26966,"26966":26967,"26967":26968,"26968":26969,"26969":26970,"26970":26971,"26971":26972,"26972":26973,"26973":26974,"26974":26975,"26975":26976,"26976":26977,"26977":26978,"26978":26979,"26979":26980,"26980":26981,"26981":26982,"26982":26983,"26983":26984,"26984":26985,"26985":26986,"26986":26987,"26987":26988,"26988":26989,"26989":26990,"26990":26991,"26991":26992,"26992":26993,"26993":26994,"26994":26995,"26995":26996,"26996":26997,"26997":26998,"26998":26999,"26999":27000,"27000":27001,"27001":27002,"27002":27003,"27003":27004,"27004":27005,"27005":27006,"27006":27007,"27007":27008,"27008":27009,"27009":27010,"27010":27011,"27011":27012,"27012":27013,"27013":27014,"27014":27015,"27015":27016,"27016":27017,"27017":27018,"27018":27019,"27019":27020,"27020":27021,"27021":27022,"27022":27023,"27023":27024,"27024":27025,"27025":27026,"27026":27027,"27027":27028,"27028":27029,"27029":27030,"27030":27031,"27031":27032,"27032":27033,"27033":27034,"27034":27035,"27035":27036,"27036":27037,"27037":27038,"27038":27039,"27039":27040,"27040":27041,"27041":27042,"27042":27043,"27043":27044,"27044":27045,"27045":27046,"27046":27047,"27047":27048,"27048":27049,"27049":27050,"27050":27051,"27051":27052,"27052":27053,"27053":27054,"27054":27055,"27055":27056,"27056":27057,"27057":27058,"27058":27059,"27059":27060,"27060":27061,"27061":27062,"27062":27063,"27063":27064,"27064":27065,"27065":27066,"27066":27067,"27067":27068,"27068":27069,"27069":27070,"27070":27071,"27071":27072,"27072":27073,"27073":27074,"27074":27075,"27075":27076,"27076":27077,"27077":27078,"27078":27079,"27079":27080,"27080":27081,"27081":27082,"27082":27083,"27083":27084,"27084":27085,"27085":27086,"27086":27087,"27087":27088,"27088":27089,"27089":27090,"27090":27091,"27091":27092,"27092":27093,"27093":27094,"27094":27095,"27095":27096,"27096":27097,"27097":27098,"27098":27099,"27099":27100,"27100":27101,"27101":27102,"27102":27103,"27103":27104,"27104":27105,"27105":27106,"27106":27107,"27107":27108,"27108":27109,"27109":27110,"27110":27111,"27111":27112,"27112":27113,"27113":27114,"27114":27115,"27115":27116,"27116":27117,"27117":27118,"27118":27119,"27119":27120,"27120":27121,"27121":27122,"27122":27123,"27123":27124,"27124":27125,"27125":27126,"27126":27127,"27127":27128,"27128":27129,"27129":27130,"27130":27131,"27131":27132,"27132":27133,"27133":27134,"27134":27135,"27135":27136,"27136":27137,"27137":27138,"27138":27139,"27139":27140,"27140":27141,"27141":27142,"27142":27143,"27143":27144,"27144":27145,"27145":27146,"27146":27147,"27147":27148,"27148":27149,"27149":27150,"27150":27151,"27151":27152,"27152":27153,"27153":27154,"27154":27155,"27155":27156,"27156":27157,"27157":27158,"27158":27159,"27159":27160,"27160":27161,"27161":27162,"27162":27163,"27163":27164,"27164":27165,"27165":27166,"27166":27167,"27167":27168,"27168":27169,"27169":27170,"27170":27171,"27171":27172,"27172":27173,"27173":27174,"27174":27175,"27175":27176,"27176":27177,"27177":27178,"27178":27179,"27179":27180,"27180":27181,"27181":27182,"27182":27183,"27183":27184,"27184":27185,"27185":27186,"27186":27187,"27187":27188,"27188":27189,"27189":27190,"27190":27191,"27191":27192,"27192":27193,"27193":27194,"27194":27195,"27195":27196,"27196":27197,"27197":27198,"27198":27199,"27199":27200,"27200":27201,"27201":27202,"27202":27203,"27203":27204,"27204":27205,"27205":27206,"27206":27207,"27207":27208,"27208":27209,"27209":27210,"27210":27211,"27211":27212,"27212":27213,"27213":27214,"27214":27215,"27215":27216,"27216":27217,"27217":27218,"27218":27219,"27219":27220,"27220":27221,"27221":27222,"27222":27223,"27223":27224,"27224":27225,"27225":27226,"27226":27227,"27227":27228,"27228":27229,"27229":27230,"27230":27231,"27231":27232,"27232":27233,"27233":27234,"27234":27235,"27235":27236,"27236":27237,"27237":27238,"27238":27239,"27239":27240,"27240":27241,"27241":27242,"27242":27243,"27243":27244,"27244":27245,"27245":27246,"27246":27247,"27247":27248,"27248":27249,"27249":27250,"27250":27251,"27251":27252,"27252":27253,"27253":27254,"27254":27255,"27255":27256,"27256":27257,"27257":27258,"27258":27259,"27259":27260,"27260":27261,"27261":27262,"27262":27263,"27263":27264,"27264":27265,"27265":27266,"27266":27267,"27267":27268,"27268":27269,"27269":27270,"27270":27271,"27271":27272,"27272":27273,"27273":27274,"27274":27275,"27275":27276,"27276":27277,"27277":27278,"27278":27279,"27279":27280,"27280":27281,"27281":27282,"27282":27283,"27283":27284,"27284":27285,"27285":27286,"27286":27287,"27287":27288,"27288":27289,"27289":27290,"27290":27291,"27291":27292,"27292":27293,"27293":27294,"27294":27295,"27295":27296,"27296":27297,"27297":27298,"27298":27299,"27299":27300,"27300":27301,"27301":27302,"27302":27303,"27303":27304,"27304":27305,"27305":27306,"27306":27307,"27307":27308,"27308":27309,"27309":27310,"27310":27311,"27311":27312,"27312":27313,"27313":27314,"27314":27315,"27315":27316,"27316":27317,"27317":27318,"27318":27319,"27319":27320,"27320":27321,"27321":27322,"27322":27323,"27323":27324,"27324":27325,"27325":27326,"27326":27327,"27327":27328,"27328":27329,"27329":27330,"27330":27331,"27331":27332,"27332":27333,"27333":27334,"27334":27335,"27335":27336,"27336":27337,"27337":27338,"27338":27339,"27339":27340,"27340":27341,"27341":27342,"27342":27343,"27343":27344,"27344":27345,"27345":27346,"27346":27347,"27347":27348,"27348":27349,"27349":27350,"27350":27351,"27351":27352,"27352":27353,"27353":27354,"27354":27355,"27355":27356,"27356":27357,"27357":27358,"27358":27359,"27359":27360,"27360":27361,"27361":27362,"27362":27363,"27363":27364,"27364":27365,"27365":27366,"27366":27367,"27367":27368,"27368":27369,"27369":27370,"27370":27371,"27371":27372,"27372":27373,"27373":27374,"27374":27375,"27375":27376,"27376":27377,"27377":27378,"27378":27379,"27379":27380,"27380":27381,"27381":27382,"27382":27383,"27383":27384,"27384":27385,"27385":27386,"27386":27387,"27387":27388,"27388":27389,"27389":27390,"27390":27391,"27391":27392,"27392":27393,"27393":27394,"27394":27395,"27395":27396,"27396":27397,"27397":27398,"27398":27399,"27399":27400,"27400":27401,"27401":27402,"27402":27403,"27403":27404,"27404":27405,"27405":27406,"27406":27407,"27407":27408,"27408":27409,"27409":27410,"27410":27411,"27411":27412,"27412":27413,"27413":27414,"27414":27415,"27415":27416,"27416":27417,"27417":27418,"27418":27419,"27419":27420,"27420":27421,"27421":27422,"27422":27423,"27423":27424,"27424":27425,"27425":27426,"27426":27427,"27427":27428,"27428":27429,"27429":27430,"27430":27431,"27431":27432,"27432":27433,"27433":27434,"27434":27435,"27435":27436,"27436":27437,"27437":27438,"27438":27439,"27439":27440,"27440":27441,"27441":27442,"27442":27443,"27443":27444,"27444":27445,"27445":27446,"27446":27447,"27447":27448,"27448":27449,"27449":27450,"27450":27451,"27451":27452,"27452":27453,"27453":27454,"27454":27455,"27455":27456,"27456":27457,"27457":27458,"27458":27459,"27459":27460,"27460":27461,"27461":27462,"27462":27463,"27463":27464,"27464":27465,"27465":27466,"27466":27467,"27467":27468,"27468":27469,"27469":27470,"27470":27471,"27471":27472,"27472":27473,"27473":27474,"27474":27475,"27475":27476,"27476":27477,"27477":27478,"27478":27479,"27479":27480,"27480":27481,"27481":27482,"27482":27483,"27483":27484,"27484":27485,"27485":27486,"27486":27487,"27487":27488,"27488":27489,"27489":27490,"27490":27491,"27491":27492,"27492":27493,"27493":27494,"27494":27495,"27495":27496,"27496":27497,"27497":27498,"27498":27499,"27499":27500,"27500":27501,"27501":27502,"27502":27503,"27503":27504,"27504":27505,"27505":27506,"27506":27507,"27507":27508,"27508":27509,"27509":27510,"27510":27511,"27511":27512,"27512":27513,"27513":27514,"27514":27515,"27515":27516,"27516":27517,"27517":27518,"27518":27519,"27519":27520,"27520":27521,"27521":27522,"27522":27523,"27523":27524,"27524":27525,"27525":27526,"27526":27527,"27527":27528,"27528":27529,"27529":27530,"27530":27531,"27531":27532,"27532":27533,"27533":27534,"27534":27535,"27535":27536,"27536":27537,"27537":27538,"27538":27539,"27539":27540,"27540":27541,"27541":27542,"27542":27543,"27543":27544,"27544":27545,"27545":27546,"27546":27547,"27547":27548,"27548":27549,"27549":27550,"27550":27551,"27551":27552,"27552":27553,"27553":27554,"27554":27555,"27555":27556,"27556":27557,"27557":27558,"27558":27559,"27559":27560,"27560":27561,"27561":27562,"27562":27563,"27563":27564,"27564":27565,"27565":27566,"27566":27567,"27567":27568,"27568":27569,"27569":27570,"27570":27571,"27571":27572,"27572":27573,"27573":27574,"27574":27575,"27575":27576,"27576":27577,"27577":27578,"27578":27579,"27579":27580,"27580":27581,"27581":27582,"27582":27583,"27583":27584,"27584":27585,"27585":27586,"27586":27587,"27587":27588,"27588":27589,"27589":27590,"27590":27591,"27591":27592,"27592":27593,"27593":27594,"27594":27595,"27595":27596,"27596":27597,"27597":27598,"27598":27599,"27599":27600,"27600":27601,"27601":27602,"27602":27603,"27603":27604,"27604":27605,"27605":27606,"27606":27607,"27607":27608,"27608":27609,"27609":27610,"27610":27611,"27611":27612,"27612":27613,"27613":27614,"27614":27615,"27615":27616,"27616":27617,"27617":27618,"27618":27619,"27619":27620,"27620":27621,"27621":27622,"27622":27623,"27623":27624,"27624":27625,"27625":27626,"27626":27627,"27627":27628,"27628":27629,"27629":27630,"27630":27631,"27631":27632,"27632":27633,"27633":27634,"27634":27635,"27635":27636,"27636":27637,"27637":27638,"27638":27639,"27639":27640,"27640":27641,"27641":27642,"27642":27643,"27643":27644,"27644":27645,"27645":27646,"27646":27647,"27647":27648,"27648":27649,"27649":27650,"27650":27651,"27651":27652,"27652":27653,"27653":27654,"27654":27655,"27655":27656,"27656":27657,"27657":27658,"27658":27659,"27659":27660,"27660":27661,"27661":27662,"27662":27663,"27663":27664,"27664":27665,"27665":27666,"27666":27667,"27667":27668,"27668":27669,"27669":27670,"27670":27671,"27671":27672,"27672":27673,"27673":27674,"27674":27675,"27675":27676,"27676":27677,"27677":27678,"27678":27679,"27679":27680,"27680":27681,"27681":27682,"27682":27683,"27683":27684,"27684":27685,"27685":27686,"27686":27687,"27687":27688,"27688":27689,"27689":27690,"27690":27691,"27691":27692,"27692":27693,"27693":27694,"27694":27695,"27695":27696,"27696":27697,"27697":27698,"27698":27699,"27699":27700,"27700":27701,"27701":27702,"27702":27703,"27703":27704,"27704":27705,"27705":27706,"27706":27707,"27707":27708,"27708":27709,"27709":27710,"27710":27711,"27711":27712,"27712":27713,"27713":27714,"27714":27715,"27715":27716,"27716":27717,"27717":27718,"27718":27719,"27719":27720,"27720":27721,"27721":27722,"27722":27723,"27723":27724,"27724":27725,"27725":27726,"27726":27727,"27727":27728,"27728":27729,"27729":27730,"27730":27731,"27731":27732,"27732":27733,"27733":27734,"27734":27735,"27735":27736,"27736":27737,"27737":27738,"27738":27739,"27739":27740,"27740":27741,"27741":27742,"27742":27743,"27743":27744,"27744":27745,"27745":27746,"27746":27747,"27747":27748,"27748":27749,"27749":27750,"27750":27751,"27751":27752,"27752":27753,"27753":27754,"27754":27755,"27755":27756,"27756":27757,"27757":27758,"27758":27759,"27759":27760,"27760":27761,"27761":27762,"27762":27763,"27763":27764,"27764":27765,"27765":27766,"27766":27767,"27767":27768,"27768":27769,"27769":27770,"27770":27771,"27771":27772,"27772":27773,"27773":27774,"27774":27775,"27775":27776,"27776":27777,"27777":27778,"27778":27779,"27779":27780,"27780":27781,"27781":27782,"27782":27783,"27783":27784,"27784":27785,"27785":27786,"27786":27787,"27787":27788,"27788":27789,"27789":27790,"27790":27791,"27791":27792,"27792":27793,"27793":27794,"27794":27795,"27795":27796,"27796":27797,"27797":27798,"27798":27799,"27799":27800,"27800":27801,"27801":27802,"27802":27803,"27803":27804,"27804":27805,"27805":27806,"27806":27807,"27807":27808,"27808":27809,"27809":27810,"27810":27811,"27811":27812,"27812":27813,"27813":27814,"27814":27815,"27815":27816,"27816":27817,"27817":27818,"27818":27819,"27819":27820,"27820":27821,"27821":27822,"27822":27823,"27823":27824,"27824":27825,"27825":27826,"27826":27827,"27827":27828,"27828":27829,"27829":27830,"27830":27831,"27831":27832,"27832":27833,"27833":27834,"27834":27835,"27835":27836,"27836":27837,"27837":27838,"27838":27839,"27839":27840,"27840":27841,"27841":27842,"27842":27843,"27843":27844,"27844":27845,"27845":27846,"27846":27847,"27847":27848,"27848":27849,"27849":27850,"27850":27851,"27851":27852,"27852":27853,"27853":27854,"27854":27855,"27855":27856,"27856":27857,"27857":27858,"27858":27859,"27859":27860,"27860":27861,"27861":27862,"27862":27863,"27863":27864,"27864":27865,"27865":27866,"27866":27867,"27867":27868,"27868":27869,"27869":27870,"27870":27871,"27871":27872,"27872":27873,"27873":27874,"27874":27875,"27875":27876,"27876":27877,"27877":27878,"27878":27879,"27879":27880,"27880":27881,"27881":27882,"27882":27883,"27883":27884,"27884":27885,"27885":27886,"27886":27887,"27887":27888,"27888":27889,"27889":27890,"27890":27891,"27891":27892,"27892":27893,"27893":27894,"27894":27895,"27895":27896,"27896":27897,"27897":27898,"27898":27899,"27899":27900,"27900":27901,"27901":27902,"27902":27903,"27903":27904,"27904":27905,"27905":27906,"27906":27907,"27907":27908,"27908":27909,"27909":27910,"27910":27911,"27911":27912,"27912":27913,"27913":27914,"27914":27915,"27915":27916,"27916":27917,"27917":27918,"27918":27919,"27919":27920,"27920":27921,"27921":27922,"27922":27923,"27923":27924,"27924":27925,"27925":27926,"27926":27927,"27927":27928,"27928":27929,"27929":27930,"27930":27931,"27931":27932,"27932":27933,"27933":27934,"27934":27935,"27935":27936,"27936":27937,"27937":27938,"27938":27939,"27939":27940,"27940":27941,"27941":27942,"27942":27943,"27943":27944,"27944":27945,"27945":27946,"27946":27947,"27947":27948,"27948":27949,"27949":27950,"27950":27951,"27951":27952,"27952":27953,"27953":27954,"27954":27955,"27955":27956,"27956":27957,"27957":27958,"27958":27959,"27959":27960,"27960":27961,"27961":27962,"27962":27963,"27963":27964,"27964":27965,"27965":27966,"27966":27967,"27967":27968,"27968":27969,"27969":27970,"27970":27971,"27971":27972,"27972":27973,"27973":27974,"27974":27975,"27975":27976,"27976":27977,"27977":27978,"27978":27979,"27979":27980,"27980":27981,"27981":27982,"27982":27983,"27983":27984,"27984":27985,"27985":27986,"27986":27987,"27987":27988,"27988":27989,"27989":27990,"27990":27991,"27991":27992,"27992":27993,"27993":27994,"27994":27995,"27995":27996,"27996":27997,"27997":27998,"27998":27999,"27999":28000,"28000":28001,"28001":28002,"28002":28003,"28003":28004,"28004":28005,"28005":28006,"28006":28007,"28007":28008,"28008":28009,"28009":28010,"28010":28011,"28011":28012,"28012":28013,"28013":28014,"28014":28015,"28015":28016,"28016":28017,"28017":28018,"28018":28019,"28019":28020,"28020":28021,"28021":28022,"28022":28023,"28023":28024,"28024":28025,"28025":28026,"28026":28027,"28027":28028,"28028":28029,"28029":28030,"28030":28031,"28031":28032,"28032":28033,"28033":28034,"28034":28035,"28035":28036,"28036":28037,"28037":28038,"28038":28039,"28039":28040,"28040":28041,"28041":28042,"28042":28043,"28043":28044,"28044":28045,"28045":28046,"28046":28047,"28047":28048,"28048":28049,"28049":28050,"28050":28051,"28051":28052,"28052":28053,"28053":28054,"28054":28055,"28055":28056,"28056":28057,"28057":28058,"28058":28059,"28059":28060,"28060":28061,"28061":28062,"28062":28063,"28063":28064,"28064":28065,"28065":28066,"28066":28067,"28067":28068,"28068":28069,"28069":28070,"28070":28071,"28071":28072,"28072":28073,"28073":28074,"28074":28075,"28075":28076,"28076":28077,"28077":28078,"28078":28079,"28079":28080,"28080":28081,"28081":28082,"28082":28083,"28083":28084,"28084":28085,"28085":28086,"28086":28087,"28087":28088,"28088":28089,"28089":28090,"28090":28091,"28091":28092,"28092":28093,"28093":28094,"28094":28095,"28095":28096,"28096":28097,"28097":28098,"28098":28099,"28099":28100,"28100":28101,"28101":28102,"28102":28103,"28103":28104,"28104":28105,"28105":28106,"28106":28107,"28107":28108,"28108":28109,"28109":28110,"28110":28111,"28111":28112,"28112":28113,"28113":28114,"28114":28115,"28115":28116,"28116":28117,"28117":28118,"28118":28119,"28119":28120,"28120":28121,"28121":28122,"28122":28123,"28123":28124,"28124":28125,"28125":28126,"28126":28127,"28127":28128,"28128":28129,"28129":28130,"28130":28131,"28131":28132,"28132":28133,"28133":28134,"28134":28135,"28135":28136,"28136":28137,"28137":28138,"28138":28139,"28139":28140,"28140":28141,"28141":28142,"28142":28143,"28143":28144,"28144":28145,"28145":28146,"28146":28147,"28147":28148,"28148":28149,"28149":28150,"28150":28151,"28151":28152,"28152":28153,"28153":28154,"28154":28155,"28155":28156,"28156":28157,"28157":28158,"28158":28159,"28159":28160,"28160":28161,"28161":28162,"28162":28163,"28163":28164,"28164":28165,"28165":28166,"28166":28167,"28167":28168,"28168":28169,"28169":28170,"28170":28171,"28171":28172,"28172":28173,"28173":28174,"28174":28175,"28175":28176,"28176":28177,"28177":28178,"28178":28179,"28179":28180,"28180":28181,"28181":28182,"28182":28183,"28183":28184,"28184":28185,"28185":28186,"28186":28187,"28187":28188,"28188":28189,"28189":28190,"28190":28191,"28191":28192,"28192":28193,"28193":28194,"28194":28195,"28195":28196,"28196":28197,"28197":28198,"28198":28199,"28199":28200,"28200":28201,"28201":28202,"28202":28203,"28203":28204,"28204":28205,"28205":28206,"28206":28207,"28207":28208,"28208":28209,"28209":28210,"28210":28211,"28211":28212,"28212":28213,"28213":28214,"28214":28215,"28215":28216,"28216":28217,"28217":28218,"28218":28219,"28219":28220,"28220":28221,"28221":28222,"28222":28223,"28223":28224,"28224":28225,"28225":28226,"28226":28227,"28227":28228,"28228":28229,"28229":28230,"28230":28231,"28231":28232,"28232":28233,"28233":28234,"28234":28235,"28235":28236,"28236":28237,"28237":28238,"28238":28239,"28239":28240,"28240":28241,"28241":28242,"28242":28243,"28243":28244,"28244":28245,"28245":28246,"28246":28247,"28247":28248,"28248":28249,"28249":28250,"28250":28251,"28251":28252,"28252":28253,"28253":28254,"28254":28255,"28255":28256,"28256":28257,"28257":28258,"28258":28259,"28259":28260,"28260":28261,"28261":28262,"28262":28263,"28263":28264,"28264":28265,"28265":28266,"28266":28267,"28267":28268,"28268":28269,"28269":28270,"28270":28271,"28271":28272,"28272":28273,"28273":28274,"28274":28275,"28275":28276,"28276":28277,"28277":28278,"28278":28279,"28279":28280,"28280":28281,"28281":28282,"28282":28283,"28283":28284,"28284":28285,"28285":28286,"28286":28287,"28287":28288,"28288":28289,"28289":28290,"28290":28291,"28291":28292,"28292":28293,"28293":28294,"28294":28295,"28295":28296,"28296":28297,"28297":28298,"28298":28299,"28299":28300,"28300":28301,"28301":28302,"28302":28303,"28303":28304,"28304":28305,"28305":28306,"28306":28307,"28307":28308,"28308":28309,"28309":28310,"28310":28311,"28311":28312,"28312":28313,"28313":28314,"28314":28315,"28315":28316,"28316":28317,"28317":28318,"28318":28319,"28319":28320,"28320":28321,"28321":28322,"28322":28323,"28323":28324,"28324":28325,"28325":28326,"28326":28327,"28327":28328,"28328":28329,"28329":28330,"28330":28331,"28331":28332,"28332":28333,"28333":28334,"28334":28335,"28335":28336,"28336":28337,"28337":28338,"28338":28339,"28339":28340,"28340":28341,"28341":28342,"28342":28343,"28343":28344,"28344":28345,"28345":28346,"28346":28347,"28347":28348,"28348":28349,"28349":28350,"28350":28351,"28351":28352,"28352":28353,"28353":28354,"28354":28355,"28355":28356,"28356":28357,"28357":28358,"28358":28359,"28359":28360,"28360":28361,"28361":28362,"28362":28363,"28363":28364,"28364":28365,"28365":28366,"28366":28367,"28367":28368,"28368":28369,"28369":28370,"28370":28371,"28371":28372,"28372":28373,"28373":28374,"28374":28375,"28375":28376,"28376":28377,"28377":28378,"28378":28379,"28379":28380,"28380":28381,"28381":28382,"28382":28383,"28383":28384,"28384":28385,"28385":28386,"28386":28387,"28387":28388,"28388":28389,"28389":28390,"28390":28391,"28391":28392,"28392":28393,"28393":28394,"28394":28395,"28395":28396,"28396":28397,"28397":28398,"28398":28399,"28399":28400,"28400":28401,"28401":28402,"28402":28403,"28403":28404,"28404":28405,"28405":28406,"28406":28407,"28407":28408,"28408":28409,"28409":28410,"28410":28411,"28411":28412,"28412":28413,"28413":28414,"28414":28415,"28415":28416,"28416":28417,"28417":28418,"28418":28419,"28419":28420,"28420":28421,"28421":28422,"28422":28423,"28423":28424,"28424":28425,"28425":28426,"28426":28427,"28427":28428,"28428":28429,"28429":28430,"28430":28431,"28431":28432,"28432":28433,"28433":28434,"28434":28435,"28435":28436,"28436":28437,"28437":28438,"28438":28439,"28439":28440,"28440":28441,"28441":28442,"28442":28443,"28443":28444,"28444":28445,"28445":28446,"28446":28447,"28447":28448,"28448":28449,"28449":28450,"28450":28451,"28451":28452,"28452":28453,"28453":28454,"28454":28455,"28455":28456,"28456":28457,"28457":28458,"28458":28459,"28459":28460,"28460":28461,"28461":28462,"28462":28463,"28463":28464,"28464":28465,"28465":28466,"28466":28467,"28467":28468,"28468":28469,"28469":28470,"28470":28471,"28471":28472,"28472":28473,"28473":28474,"28474":28475,"28475":28476,"28476":28477,"28477":28478,"28478":28479,"28479":28480,"28480":28481,"28481":28482,"28482":28483,"28483":28484,"28484":28485,"28485":28486,"28486":28487,"28487":28488,"28488":28489,"28489":28490,"28490":28491,"28491":28492,"28492":28493,"28493":28494,"28494":28495,"28495":28496,"28496":28497,"28497":28498,"28498":28499,"28499":28500,"28500":28501,"28501":28502,"28502":28503,"28503":28504,"28504":28505,"28505":28506,"28506":28507,"28507":28508,"28508":28509,"28509":28510,"28510":28511,"28511":28512,"28512":28513,"28513":28514,"28514":28515,"28515":28516,"28516":28517,"28517":28518,"28518":28519,"28519":28520,"28520":28521,"28521":28522,"28522":28523,"28523":28524,"28524":28525,"28525":28526,"28526":28527,"28527":28528,"28528":28529,"28529":28530,"28530":28531,"28531":28532,"28532":28533,"28533":28534,"28534":28535,"28535":28536,"28536":28537,"28537":28538,"28538":28539,"28539":28540,"28540":28541,"28541":28542,"28542":28543,"28543":28544,"28544":28545,"28545":28546,"28546":28547,"28547":28548,"28548":28549,"28549":28550,"28550":28551,"28551":28552,"28552":28553,"28553":28554,"28554":28555,"28555":28556,"28556":28557,"28557":28558,"28558":28559,"28559":28560,"28560":28561,"28561":28562,"28562":28563,"28563":28564,"28564":28565,"28565":28566,"28566":28567,"28567":28568,"28568":28569,"28569":28570,"28570":28571,"28571":28572,"28572":28573,"28573":28574,"28574":28575,"28575":28576,"28576":28577,"28577":28578,"28578":28579,"28579":28580,"28580":28581,"28581":28582,"28582":28583,"28583":28584,"28584":28585,"28585":28586,"28586":28587,"28587":28588,"28588":28589,"28589":28590,"28590":28591,"28591":28592,"28592":28593,"28593":28594,"28594":28595,"28595":28596,"28596":28597,"28597":28598,"28598":28599,"28599":28600,"28600":28601,"28601":28602,"28602":28603,"28603":28604,"28604":28605,"28605":28606,"28606":28607,"28607":28608,"28608":28609,"28609":28610,"28610":28611,"28611":28612,"28612":28613,"28613":28614,"28614":28615,"28615":28616,"28616":28617,"28617":28618,"28618":28619,"28619":28620,"28620":28621,"28621":28622,"28622":28623,"28623":28624,"28624":28625,"28625":28626,"28626":28627,"28627":28628,"28628":28629,"28629":28630,"28630":28631,"28631":28632,"28632":28633,"28633":28634,"28634":28635,"28635":28636,"28636":28637,"28637":28638,"28638":28639,"28639":28640,"28640":28641,"28641":28642,"28642":28643,"28643":28644,"28644":28645,"28645":28646,"28646":28647,"28647":28648,"28648":28649,"28649":28650,"28650":28651,"28651":28652,"28652":28653,"28653":28654,"28654":28655,"28655":28656,"28656":28657,"28657":28658,"28658":28659,"28659":28660,"28660":28661,"28661":28662,"28662":28663,"28663":28664,"28664":28665,"28665":28666,"28666":28667,"28667":28668,"28668":28669,"28669":28670,"28670":28671,"28671":28672,"28672":28673,"28673":28674,"28674":28675,"28675":28676,"28676":28677,"28677":28678,"28678":28679,"28679":28680,"28680":28681,"28681":28682,"28682":28683,"28683":28684,"28684":28685,"28685":28686,"28686":28687,"28687":28688,"28688":28689,"28689":28690,"28690":28691,"28691":28692,"28692":28693,"28693":28694,"28694":28695,"28695":28696,"28696":28697,"28697":28698,"28698":28699,"28699":28700,"28700":28701,"28701":28702,"28702":28703,"28703":28704,"28704":28705,"28705":28706,"28706":28707,"28707":28708,"28708":28709,"28709":28710,"28710":28711,"28711":28712,"28712":28713,"28713":28714,"28714":28715,"28715":28716,"28716":28717,"28717":28718,"28718":28719,"28719":28720,"28720":28721,"28721":28722,"28722":28723,"28723":28724,"28724":28725,"28725":28726,"28726":28727,"28727":28728,"28728":28729,"28729":28730,"28730":28731,"28731":28732,"28732":28733,"28733":28734,"28734":28735,"28735":28736,"28736":28737,"28737":28738,"28738":28739,"28739":28740,"28740":28741,"28741":28742,"28742":28743,"28743":28744,"28744":28745,"28745":28746,"28746":28747,"28747":28748,"28748":28749,"28749":28750,"28750":28751,"28751":28752,"28752":28753,"28753":28754,"28754":28755,"28755":28756,"28756":28757,"28757":28758,"28758":28759,"28759":28760,"28760":28761,"28761":28762,"28762":28763,"28763":28764,"28764":28765,"28765":28766,"28766":28767,"28767":28768,"28768":28769,"28769":28770,"28770":28771,"28771":28772,"28772":28773,"28773":28774,"28774":28775,"28775":28776,"28776":28777,"28777":28778,"28778":28779,"28779":28780,"28780":28781,"28781":28782,"28782":28783,"28783":28784,"28784":28785,"28785":28786,"28786":28787,"28787":28788,"28788":28789,"28789":28790,"28790":28791,"28791":28792,"28792":28793,"28793":28794,"28794":28795,"28795":28796,"28796":28797,"28797":28798,"28798":28799,"28799":28800,"28800":28801,"28801":28802,"28802":28803,"28803":28804,"28804":28805,"28805":28806,"28806":28807,"28807":28808,"28808":28809,"28809":28810,"28810":28811,"28811":28812,"28812":28813,"28813":28814,"28814":28815,"28815":28816,"28816":28817,"28817":28818,"28818":28819,"28819":28820,"28820":28821,"28821":28822,"28822":28823,"28823":28824,"28824":28825,"28825":28826,"28826":28827,"28827":28828,"28828":28829,"28829":28830,"28830":28831,"28831":28832,"28832":28833,"28833":28834,"28834":28835,"28835":28836,"28836":28837,"28837":28838,"28838":28839,"28839":28840,"28840":28841,"28841":28842,"28842":28843,"28843":28844,"28844":28845,"28845":28846,"28846":28847,"28847":28848,"28848":28849,"28849":28850,"28850":28851,"28851":28852,"28852":28853,"28853":28854,"28854":28855,"28855":28856,"28856":28857,"28857":28858,"28858":28859,"28859":28860,"28860":28861,"28861":28862,"28862":28863,"28863":28864,"28864":28865,"28865":28866,"28866":28867,"28867":28868,"28868":28869,"28869":28870,"28870":28871,"28871":28872,"28872":28873,"28873":28874,"28874":28875,"28875":28876,"28876":28877,"28877":28878,"28878":28879,"28879":28880,"28880":28881,"28881":28882,"28882":28883,"28883":28884,"28884":28885,"28885":28886,"28886":28887,"28887":28888,"28888":28889,"28889":28890,"28890":28891,"28891":28892,"28892":28893,"28893":28894,"28894":28895,"28895":28896,"28896":28897,"28897":28898,"28898":28899,"28899":28900,"28900":28901,"28901":28902,"28902":28903,"28903":28904,"28904":28905,"28905":28906,"28906":28907,"28907":28908,"28908":28909,"28909":28910,"28910":28911,"28911":28912,"28912":28913,"28913":28914,"28914":28915,"28915":28916,"28916":28917,"28917":28918,"28918":28919,"28919":28920,"28920":28921,"28921":28922,"28922":28923,"28923":28924,"28924":28925,"28925":28926,"28926":28927,"28927":28928,"28928":28929,"28929":28930,"28930":28931,"28931":28932,"28932":28933,"28933":28934,"28934":28935,"28935":28936,"28936":28937,"28937":28938,"28938":28939,"28939":28940,"28940":28941,"28941":28942,"28942":28943,"28943":28944,"28944":28945,"28945":28946,"28946":28947,"28947":28948,"28948":28949,"28949":28950,"28950":28951,"28951":28952,"28952":28953,"28953":28954,"28954":28955,"28955":28956,"28956":28957,"28957":28958,"28958":28959,"28959":28960,"28960":28961,"28961":28962,"28962":28963,"28963":28964,"28964":28965,"28965":28966,"28966":28967,"28967":28968,"28968":28969,"28969":28970,"28970":28971,"28971":28972,"28972":28973,"28973":28974,"28974":28975,"28975":28976,"28976":28977,"28977":28978,"28978":28979,"28979":28980,"28980":28981,"28981":28982,"28982":28983,"28983":28984,"28984":28985,"28985":28986,"28986":28987,"28987":28988,"28988":28989,"28989":28990,"28990":28991,"28991":28992,"28992":28993,"28993":28994,"28994":28995,"28995":28996,"28996":28997,"28997":28998,"28998":28999,"28999":29000,"29000":29001,"29001":29002,"29002":29003,"29003":29004,"29004":29005,"29005":29006,"29006":29007,"29007":29008,"29008":29009,"29009":29010,"29010":29011,"29011":29012,"29012":29013,"29013":29014,"29014":29015,"29015":29016,"29016":29017,"29017":29018,"29018":29019,"29019":29020,"29020":29021,"29021":29022,"29022":29023,"29023":29024,"29024":29025,"29025":29026,"29026":29027,"29027":29028,"29028":29029,"29029":29030,"29030":29031,"29031":29032,"29032":29033,"29033":29034,"29034":29035,"29035":29036,"29036":29037,"29037":29038,"29038":29039,"29039":29040,"29040":29041,"29041":29042,"29042":29043,"29043":29044,"29044":29045,"29045":29046,"29046":29047,"29047":29048,"29048":29049,"29049":29050,"29050":29051,"29051":29052,"29052":29053,"29053":29054,"29054":29055,"29055":29056,"29056":29057,"29057":29058,"29058":29059,"29059":29060,"29060":29061,"29061":29062,"29062":29063,"29063":29064,"29064":29065,"29065":29066,"29066":29067,"29067":29068,"29068":29069,"29069":29070,"29070":29071,"29071":29072,"29072":29073,"29073":29074,"29074":29075,"29075":29076,"29076":29077,"29077":29078,"29078":29079,"29079":29080,"29080":29081,"29081":29082,"29082":29083,"29083":29084,"29084":29085,"29085":29086,"29086":29087,"29087":29088,"29088":29089,"29089":29090,"29090":29091,"29091":29092,"29092":29093,"29093":29094,"29094":29095,"29095":29096,"29096":29097,"29097":29098,"29098":29099,"29099":29100,"29100":29101,"29101":29102,"29102":29103,"29103":29104,"29104":29105,"29105":29106,"29106":29107,"29107":29108,"29108":29109,"29109":29110,"29110":29111,"29111":29112,"29112":29113,"29113":29114,"29114":29115,"29115":29116,"29116":29117,"29117":29118,"29118":29119,"29119":29120,"29120":29121,"29121":29122,"29122":29123,"29123":29124,"29124":29125,"29125":29126,"29126":29127,"29127":29128,"29128":29129,"29129":29130,"29130":29131,"29131":29132,"29132":29133,"29133":29134,"29134":29135,"29135":29136,"29136":29137,"29137":29138,"29138":29139,"29139":29140,"29140":29141,"29141":29142,"29142":29143,"29143":29144,"29144":29145,"29145":29146,"29146":29147,"29147":29148,"29148":29149,"29149":29150,"29150":29151,"29151":29152,"29152":29153,"29153":29154,"29154":29155,"29155":29156,"29156":29157,"29157":29158,"29158":29159,"29159":29160,"29160":29161,"29161":29162,"29162":29163,"29163":29164,"29164":29165,"29165":29166,"29166":29167,"29167":29168,"29168":29169,"29169":29170,"29170":29171,"29171":29172,"29172":29173,"29173":29174,"29174":29175,"29175":29176,"29176":29177,"29177":29178,"29178":29179,"29179":29180,"29180":29181,"29181":29182,"29182":29183,"29183":29184,"29184":29185,"29185":29186,"29186":29187,"29187":29188,"29188":29189,"29189":29190,"29190":29191,"29191":29192,"29192":29193,"29193":29194,"29194":29195,"29195":29196,"29196":29197,"29197":29198,"29198":29199,"29199":29200,"29200":29201,"29201":29202,"29202":29203,"29203":29204,"29204":29205,"29205":29206,"29206":29207,"29207":29208,"29208":29209,"29209":29210,"29210":29211,"29211":29212,"29212":29213,"29213":29214,"29214":29215,"29215":29216,"29216":29217,"29217":29218,"29218":29219,"29219":29220,"29220":29221,"29221":29222,"29222":29223,"29223":29224,"29224":29225,"29225":29226,"29226":29227,"29227":29228,"29228":29229,"29229":29230,"29230":29231,"29231":29232,"29232":29233,"29233":29234,"29234":29235,"29235":29236,"29236":29237,"29237":29238,"29238":29239,"29239":29240,"29240":29241,"29241":29242,"29242":29243,"29243":29244,"29244":29245,"29245":29246,"29246":29247,"29247":29248,"29248":29249,"29249":29250,"29250":29251,"29251":29252,"29252":29253,"29253":29254,"29254":29255,"29255":29256,"29256":29257,"29257":29258,"29258":29259,"29259":29260,"29260":29261,"29261":29262,"29262":29263,"29263":29264,"29264":29265,"29265":29266,"29266":29267,"29267":29268,"29268":29269,"29269":29270,"29270":29271,"29271":29272,"29272":29273,"29273":29274,"29274":29275,"29275":29276,"29276":29277,"29277":29278,"29278":29279,"29279":29280,"29280":29281,"29281":29282,"29282":29283,"29283":29284,"29284":29285,"29285":29286,"29286":29287,"29287":29288,"29288":29289,"29289":29290,"29290":29291,"29291":29292,"29292":29293,"29293":29294,"29294":29295,"29295":29296,"29296":29297,"29297":29298,"29298":29299,"29299":29300,"29300":29301,"29301":29302,"29302":29303,"29303":29304,"29304":29305,"29305":29306,"29306":29307,"29307":29308,"29308":29309,"29309":29310,"29310":29311,"29311":29312,"29312":29313,"29313":29314,"29314":29315,"29315":29316,"29316":29317,"29317":29318,"29318":29319,"29319":29320,"29320":29321,"29321":29322,"29322":29323,"29323":29324,"29324":29325,"29325":29326,"29326":29327,"29327":29328,"29328":29329,"29329":29330,"29330":29331,"29331":29332,"29332":29333,"29333":29334,"29334":29335,"29335":29336,"29336":29337,"29337":29338,"29338":29339,"29339":29340,"29340":29341,"29341":29342,"29342":29343,"29343":29344,"29344":29345,"29345":29346,"29346":29347,"29347":29348,"29348":29349,"29349":29350,"29350":29351,"29351":29352,"29352":29353,"29353":29354,"29354":29355,"29355":29356,"29356":29357,"29357":29358,"29358":29359,"29359":29360,"29360":29361,"29361":29362,"29362":29363,"29363":29364,"29364":29365,"29365":29366,"29366":29367,"29367":29368,"29368":29369,"29369":29370,"29370":29371,"29371":29372,"29372":29373,"29373":29374,"29374":29375,"29375":29376,"29376":29377,"29377":29378,"29378":29379,"29379":29380,"29380":29381,"29381":29382,"29382":29383,"29383":29384,"29384":29385,"29385":29386,"29386":29387,"29387":29388,"29388":29389,"29389":29390,"29390":29391,"29391":29392,"29392":29393,"29393":29394,"29394":29395,"29395":29396,"29396":29397,"29397":29398,"29398":29399,"29399":29400,"29400":29401,"29401":29402,"29402":29403,"29403":29404,"29404":29405,"29405":29406,"29406":29407,"29407":29408,"29408":29409,"29409":29410,"29410":29411,"29411":29412,"29412":29413,"29413":29414,"29414":29415,"29415":29416,"29416":29417,"29417":29418,"29418":29419,"29419":29420,"29420":29421,"29421":29422,"29422":29423,"29423":29424,"29424":29425,"29425":29426,"29426":29427,"29427":29428,"29428":29429,"29429":29430,"29430":29431,"29431":29432,"29432":29433,"29433":29434,"29434":29435,"29435":29436,"29436":29437,"29437":29438,"29438":29439,"29439":29440,"29440":29441,"29441":29442,"29442":29443,"29443":29444,"29444":29445,"29445":29446,"29446":29447,"29447":29448,"29448":29449,"29449":29450,"29450":29451,"29451":29452,"29452":29453,"29453":29454,"29454":29455,"29455":29456,"29456":29457,"29457":29458,"29458":29459,"29459":29460,"29460":29461,"29461":29462,"29462":29463,"29463":29464,"29464":29465,"29465":29466,"29466":29467,"29467":29468,"29468":29469,"29469":29470,"29470":29471,"29471":29472,"29472":29473,"29473":29474,"29474":29475,"29475":29476,"29476":29477,"29477":29478,"29478":29479,"29479":29480,"29480":29481,"29481":29482,"29482":29483,"29483":29484,"29484":29485,"29485":29486,"29486":29487,"29487":29488,"29488":29489,"29489":29490,"29490":29491,"29491":29492,"29492":29493,"29493":29494,"29494":29495,"29495":29496,"29496":29497,"29497":29498,"29498":29499,"29499":29500,"29500":29501,"29501":29502,"29502":29503,"29503":29504,"29504":29505,"29505":29506,"29506":29507,"29507":29508,"29508":29509,"29509":29510,"29510":29511,"29511":29512,"29512":29513,"29513":29514,"29514":29515,"29515":29516,"29516":29517,"29517":29518,"29518":29519,"29519":29520,"29520":29521,"29521":29522,"29522":29523,"29523":29524,"29524":29525,"29525":29526,"29526":29527,"29527":29528,"29528":29529,"29529":29530,"29530":29531,"29531":29532,"29532":29533,"29533":29534,"29534":29535,"29535":29536,"29536":29537,"29537":29538,"29538":29539,"29539":29540,"29540":29541,"29541":29542,"29542":29543,"29543":29544,"29544":29545,"29545":29546,"29546":29547,"29547":29548,"29548":29549,"29549":29550,"29550":29551,"29551":29552,"29552":29553,"29553":29554,"29554":29555,"29555":29556,"29556":29557,"29557":29558,"29558":29559,"29559":29560,"29560":29561,"29561":29562,"29562":29563,"29563":29564,"29564":29565,"29565":29566,"29566":29567,"29567":29568,"29568":29569,"29569":29570,"29570":29571,"29571":29572,"29572":29573,"29573":29574,"29574":29575,"29575":29576,"29576":29577,"29577":29578,"29578":29579,"29579":29580,"29580":29581,"29581":29582,"29582":29583,"29583":29584,"29584":29585,"29585":29586,"29586":29587,"29587":29588,"29588":29589,"29589":29590,"29590":29591,"29591":29592,"29592":29593,"29593":29594,"29594":29595,"29595":29596,"29596":29597,"29597":29598,"29598":29599,"29599":29600,"29600":29601,"29601":29602,"29602":29603,"29603":29604,"29604":29605,"29605":29606,"29606":29607,"29607":29608,"29608":29609,"29609":29610,"29610":29611,"29611":29612,"29612":29613,"29613":29614,"29614":29615,"29615":29616,"29616":29617,"29617":29618,"29618":29619,"29619":29620,"29620":29621,"29621":29622,"29622":29623,"29623":29624,"29624":29625,"29625":29626,"29626":29627,"29627":29628,"29628":29629,"29629":29630,"29630":29631,"29631":29632,"29632":29633,"29633":29634,"29634":29635,"29635":29636,"29636":29637,"29637":29638,"29638":29639,"29639":29640,"29640":29641,"29641":29642,"29642":29643,"29643":29644,"29644":29645,"29645":29646,"29646":29647,"29647":29648,"29648":29649,"29649":29650,"29650":29651,"29651":29652,"29652":29653,"29653":29654,"29654":29655,"29655":29656,"29656":29657,"29657":29658,"29658":29659,"29659":29660,"29660":29661,"29661":29662,"29662":29663,"29663":29664,"29664":29665,"29665":29666,"29666":29667,"29667":29668,"29668":29669,"29669":29670,"29670":29671,"29671":29672,"29672":29673,"29673":29674,"29674":29675,"29675":29676,"29676":29677,"29677":29678,"29678":29679,"29679":29680,"29680":29681,"29681":29682,"29682":29683,"29683":29684,"29684":29685,"29685":29686,"29686":29687,"29687":29688,"29688":29689,"29689":29690,"29690":29691,"29691":29692,"29692":29693,"29693":29694,"29694":29695,"29695":29696,"29696":29697,"29697":29698,"29698":29699,"29699":29700,"29700":29701,"29701":29702,"29702":29703,"29703":29704,"29704":29705,"29705":29706,"29706":29707,"29707":29708,"29708":29709,"29709":29710,"29710":29711,"29711":29712,"29712":29713,"29713":29714,"29714":29715,"29715":29716,"29716":29717,"29717":29718,"29718":29719,"29719":29720,"29720":29721,"29721":29722,"29722":29723,"29723":29724,"29724":29725,"29725":29726,"29726":29727,"29727":29728,"29728":29729,"29729":29730,"29730":29731,"29731":29732,"29732":29733,"29733":29734,"29734":29735,"29735":29736,"29736":29737,"29737":29738,"29738":29739,"29739":29740,"29740":29741,"29741":29742,"29742":29743,"29743":29744,"29744":29745,"29745":29746,"29746":29747,"29747":29748,"29748":29749,"29749":29750,"29750":29751,"29751":29752,"29752":29753,"29753":29754,"29754":29755,"29755":29756,"29756":29757,"29757":29758,"29758":29759,"29759":29760,"29760":29761,"29761":29762,"29762":29763,"29763":29764,"29764":29765,"29765":29766,"29766":29767,"29767":29768,"29768":29769,"29769":29770,"29770":29771,"29771":29772,"29772":29773,"29773":29774,"29774":29775,"29775":29776,"29776":29777,"29777":29778,"29778":29779,"29779":29780,"29780":29781,"29781":29782,"29782":29783,"29783":29784,"29784":29785,"29785":29786,"29786":29787,"29787":29788,"29788":29789,"29789":29790,"29790":29791,"29791":29792,"29792":29793,"29793":29794,"29794":29795,"29795":29796,"29796":29797,"29797":29798,"29798":29799,"29799":29800,"29800":29801,"29801":29802,"29802":29803,"29803":29804,"29804":29805,"29805":29806,"29806":29807,"29807":29808,"29808":29809,"29809":29810,"29810":29811,"29811":29812,"29812":29813,"29813":29814,"29814":29815,"29815":29816,"29816":29817,"29817":29818,"29818":29819,"29819":29820,"29820":29821,"29821":29822,"29822":29823,"29823":29824,"29824":29825,"29825":29826,"29826":29827,"29827":29828,"29828":29829,"29829":29830,"29830":29831,"29831":29832,"29832":29833,"29833":29834,"29834":29835,"29835":29836,"29836":29837,"29837":29838,"29838":29839,"29839":29840,"29840":29841,"29841":29842,"29842":29843,"29843":29844,"29844":29845,"29845":29846,"29846":29847,"29847":29848,"29848":29849,"29849":29850,"29850":29851,"29851":29852,"29852":29853,"29853":29854,"29854":29855,"29855":29856,"29856":29857,"29857":29858,"29858":29859,"29859":29860,"29860":29861,"29861":29862,"29862":29863,"29863":29864,"29864":29865,"29865":29866,"29866":29867,"29867":29868,"29868":29869,"29869":29870,"29870":29871,"29871":29872,"29872":29873,"29873":29874,"29874":29875,"29875":29876,"29876":29877,"29877":29878,"29878":29879,"29879":29880,"29880":29881,"29881":29882,"29882":29883,"29883":29884,"29884":29885,"29885":29886,"29886":29887,"29887":29888,"29888":29889,"29889":29890,"29890":29891,"29891":29892,"29892":29893,"29893":29894,"29894":29895,"29895":29896,"29896":29897,"29897":29898,"29898":29899,"29899":29900,"29900":29901,"29901":29902,"29902":29903,"29903":29904,"29904":29905,"29905":29906,"29906":29907,"29907":29908,"29908":29909,"29909":29910,"29910":29911,"29911":29912,"29912":29913,"29913":29914,"29914":29915,"29915":29916,"29916":29917,"29917":29918,"29918":29919,"29919":29920,"29920":29921,"29921":29922,"29922":29923,"29923":29924,"29924":29925,"29925":29926,"29926":29927,"29927":29928,"29928":29929,"29929":29930,"29930":29931,"29931":29932,"29932":29933,"29933":29934,"29934":29935,"29935":29936,"29936":29937,"29937":29938,"29938":29939,"29939":29940,"29940":29941,"29941":29942,"29942":29943,"29943":29944,"29944":29945,"29945":29946,"29946":29947,"29947":29948,"29948":29949,"29949":29950,"29950":29951,"29951":29952,"29952":29953,"29953":29954,"29954":29955,"29955":29956,"29956":29957,"29957":29958,"29958":29959,"29959":29960,"29960":29961,"29961":29962,"29962":29963,"29963":29964,"29964":29965,"29965":29966,"29966":29967,"29967":29968,"29968":29969,"29969":29970,"29970":29971,"29971":29972,"29972":29973,"29973":29974,"29974":29975,"29975":29976,"29976":29977,"29977":29978,"29978":29979,"29979":29980,"29980":29981,"29981":29982,"29982":29983,"29983":29984,"29984":29985,"29985":29986,"29986":29987,"29987":29988,"29988":29989,"29989":29990,"29990":29991,"29991":29992,"29992":29993,"29993":29994,"29994":29995,"29995":29996,"29996":29997,"29997":29998,"29998":29999,"29999":30000,"30000":30001,"30001":30002,"30002":30003,"30003":30004,"30004":30005,"30005":30006,"30006":30007,"30007":30008,"30008":30009,"30009":30010,"30010":30011,"30011":30012,"30012":30013,"30013":30014,"30014":30015,"30015":30016,"30016":30017,"30017":30018,"30018":30019,"30019":30020,"30020":30021,"30021":30022,"30022":30023,"30023":30024,"30024":30025,"30025":30026,"30026":30027,"30027":30028,"30028":30029,"30029":30030,"30030":30031,"30031":30032,"30032":30033,"30033":30034,"30034":30035,"30035":30036,"30036":30037,"30037":30038,"30038":30039,"30039":30040,"30040":30041,"30041":30042,"30042":30043,"30043":30044,"30044":30045,"30045":30046,"30046":30047,"30047":30048,"30048":30049,"30049":30050,"30050":30051,"30051":30052,"30052":30053,"30053":30054,"30054":30055,"30055":30056,"30056":30057,"30057":30058,"30058":30059,"30059":30060,"30060":30061,"30061":30062,"30062":30063,"30063":30064,"30064":30065,"30065":30066,"30066":30067,"30067":30068,"30068":30069,"30069":30070,"30070":30071,"30071":30072,"30072":30073,"30073":30074,"30074":30075,"30075":30076,"30076":30077,"30077":30078,"30078":30079,"30079":30080,"30080":30081,"30081":30082,"30082":30083,"30083":30084,"30084":30085,"30085":30086,"30086":30087,"30087":30088,"30088":30089,"30089":30090,"30090":30091,"30091":30092,"30092":30093,"30093":30094,"30094":30095,"30095":30096,"30096":30097,"30097":30098,"30098":30099,"30099":30100,"30100":30101,"30101":30102,"30102":30103,"30103":30104,"30104":30105,"30105":30106,"30106":30107,"30107":30108,"30108":30109,"30109":30110,"30110":30111,"30111":30112,"30112":30113,"30113":30114,"30114":30115,"30115":30116,"30116":30117,"30117":30118,"30118":30119,"30119":30120,"30120":30121,"30121":30122,"30122":30123,"30123":30124,"30124":30125,"30125":30126,"30126":30127,"30127":30128,"30128":30129,"30129":30130,"30130":30131,"30131":30132,"30132":30133,"30133":30134,"30134":30135,"30135":30136,"30136":30137,"30137":30138,"30138":30139,"30139":30140,"30140":30141,"30141":30142,"30142":30143,"30143":30144,"30144":30145,"30145":30146,"30146":30147,"30147":30148,"30148":30149,"30149":30150,"30150":30151,"30151":30152,"30152":30153,"30153":30154,"30154":30155,"30155":30156,"30156":30157,"30157":30158,"30158":30159,"30159":30160,"30160":30161,"30161":30162,"30162":30163,"30163":30164,"30164":30165,"30165":30166,"30166":30167,"30167":30168,"30168":30169,"30169":30170,"30170":30171,"30171":30172,"30172":30173,"30173":30174,"30174":30175,"30175":30176,"30176":30177,"30177":30178,"30178":30179,"30179":30180,"30180":30181,"30181":30182,"30182":30183,"30183":30184,"30184":30185,"30185":30186,"30186":30187,"30187":30188,"30188":30189,"30189":30190,"30190":30191,"30191":30192,"30192":30193,"30193":30194,"30194":30195,"30195":30196,"30196":30197,"30197":30198,"30198":30199,"30199":30200,"30200":30201,"30201":30202,"30202":30203,"30203":30204,"30204":30205,"30205":30206,"30206":30207,"30207":30208,"30208":30209,"30209":30210,"30210":30211,"30211":30212,"30212":30213,"30213":30214,"30214":30215,"30215":30216,"30216":30217,"30217":30218,"30218":30219,"30219":30220,"30220":30221,"30221":30222,"30222":30223,"30223":30224,"30224":30225,"30225":30226,"30226":30227,"30227":30228,"30228":30229,"30229":30230,"30230":30231,"30231":30232,"30232":30233,"30233":30234,"30234":30235,"30235":30236,"30236":30237,"30237":30238,"30238":30239,"30239":30240,"30240":30241,"30241":30242,"30242":30243,"30243":30244,"30244":30245,"30245":30246,"30246":30247,"30247":30248,"30248":30249,"30249":30250,"30250":30251,"30251":30252,"30252":30253,"30253":30254,"30254":30255,"30255":30256,"30256":30257,"30257":30258,"30258":30259,"30259":30260,"30260":30261,"30261":30262,"30262":30263,"30263":30264,"30264":30265,"30265":30266,"30266":30267,"30267":30268,"30268":30269,"30269":30270,"30270":30271,"30271":30272,"30272":30273,"30273":30274,"30274":30275,"30275":30276,"30276":30277,"30277":30278,"30278":30279,"30279":30280,"30280":30281,"30281":30282,"30282":30283,"30283":30284,"30284":30285,"30285":30286,"30286":30287,"30287":30288,"30288":30289,"30289":30290,"30290":30291,"30291":30292,"30292":30293,"30293":30294,"30294":30295,"30295":30296,"30296":30297,"30297":30298,"30298":30299,"30299":30300,"30300":30301,"30301":30302,"30302":30303,"30303":30304,"30304":30305,"30305":30306,"30306":30307,"30307":30308,"30308":30309,"30309":30310,"30310":30311,"30311":30312,"30312":30313,"30313":30314,"30314":30315,"30315":30316,"30316":30317,"30317":30318,"30318":30319,"30319":30320,"30320":30321,"30321":30322,"30322":30323,"30323":30324,"30324":30325,"30325":30326,"30326":30327,"30327":30328,"30328":30329,"30329":30330,"30330":30331,"30331":30332,"30332":30333,"30333":30334,"30334":30335,"30335":30336,"30336":30337,"30337":30338,"30338":30339,"30339":30340,"30340":30341,"30341":30342,"30342":30343,"30343":30344,"30344":30345,"30345":30346,"30346":30347,"30347":30348,"30348":30349,"30349":30350,"30350":30351,"30351":30352,"30352":30353,"30353":30354,"30354":30355,"30355":30356,"30356":30357,"30357":30358,"30358":30359,"30359":30360,"30360":30361,"30361":30362,"30362":30363,"30363":30364,"30364":30365,"30365":30366,"30366":30367,"30367":30368,"30368":30369,"30369":30370,"30370":30371,"30371":30372,"30372":30373,"30373":30374,"30374":30375,"30375":30376,"30376":30377,"30377":30378,"30378":30379,"30379":30380,"30380":30381,"30381":30382,"30382":30383,"30383":30384,"30384":30385,"30385":30386,"30386":30387,"30387":30388,"30388":30389,"30389":30390,"30390":30391,"30391":30392,"30392":30393,"30393":30394,"30394":30395,"30395":30396,"30396":30397,"30397":30398,"30398":30399,"30399":30400,"30400":30401,"30401":30402,"30402":30403,"30403":30404,"30404":30405,"30405":30406,"30406":30407,"30407":30408,"30408":30409,"30409":30410,"30410":30411,"30411":30412,"30412":30413,"30413":30414,"30414":30415,"30415":30416,"30416":30417,"30417":30418,"30418":30419,"30419":30420,"30420":30421,"30421":30422,"30422":30423,"30423":30424,"30424":30425,"30425":30426,"30426":30427,"30427":30428,"30428":30429,"30429":30430,"30430":30431,"30431":30432,"30432":30433,"30433":30434,"30434":30435,"30435":30436,"30436":30437,"30437":30438,"30438":30439,"30439":30440,"30440":30441,"30441":30442,"30442":30443,"30443":30444,"30444":30445,"30445":30446,"30446":30447,"30447":30448,"30448":30449,"30449":30450,"30450":30451,"30451":30452,"30452":30453,"30453":30454,"30454":30455,"30455":30456,"30456":30457,"30457":30458,"30458":30459,"30459":30460,"30460":30461,"30461":30462,"30462":30463,"30463":30464,"30464":30465,"30465":30466,"30466":30467,"30467":30468,"30468":30469,"30469":30470,"30470":30471,"30471":30472,"30472":30473,"30473":30474,"30474":30475,"30475":30476,"30476":30477,"30477":30478,"30478":30479,"30479":30480,"30480":30481,"30481":30482,"30482":30483,"30483":30484,"30484":30485,"30485":30486,"30486":30487,"30487":30488,"30488":30489,"30489":30490,"30490":30491,"30491":30492,"30492":30493,"30493":30494,"30494":30495,"30495":30496,"30496":30497,"30497":30498,"30498":30499,"30499":30500,"30500":30501,"30501":30502,"30502":30503,"30503":30504,"30504":30505,"30505":30506,"30506":30507,"30507":30508,"30508":30509,"30509":30510,"30510":30511,"30511":30512,"30512":30513,"30513":30514,"30514":30515,"30515":30516,"30516":30517,"30517":30518,"30518":30519,"30519":30520,"30520":30521,"30521":30522,"30522":30523,"30523":30524,"30524":30525,"30525":30526,"30526":30527,"30527":30528,"30528":30529,"30529":30530,"30530":30531,"30531":30532,"30532":30533,"30533":30534,"30534":30535,"30535":30536,"30536":30537,"30537":30538,"30538":30539,"30539":30540,"30540":30541,"30541":30542,"30542":30543,"30543":30544,"30544":30545,"30545":30546,"30546":30547,"30547":30548,"30548":30549,"30549":30550,"30550":30551,"30551":30552,"30552":30553,"30553":30554,"30554":30555,"30555":30556,"30556":30557,"30557":30558,"30558":30559,"30559":30560,"30560":30561,"30561":30562,"30562":30563,"30563":30564,"30564":30565,"30565":30566,"30566":30567,"30567":30568,"30568":30569,"30569":30570,"30570":30571,"30571":30572,"30572":30573,"30573":30574,"30574":30575,"30575":30576,"30576":30577,"30577":30578,"30578":30579,"30579":30580,"30580":30581,"30581":30582,"30582":30583,"30583":30584,"30584":30585,"30585":30586,"30586":30587,"30587":30588,"30588":30589,"30589":30590,"30590":30591,"30591":30592,"30592":30593,"30593":30594,"30594":30595,"30595":30596,"30596":30597,"30597":30598,"30598":30599,"30599":30600,"30600":30601,"30601":30602,"30602":30603,"30603":30604,"30604":30605,"30605":30606,"30606":30607,"30607":30608,"30608":30609,"30609":30610,"30610":30611,"30611":30612,"30612":30613,"30613":30614,"30614":30615,"30615":30616,"30616":30617,"30617":30618,"30618":30619,"30619":30620,"30620":30621,"30621":30622,"30622":30623,"30623":30624,"30624":30625,"30625":30626,"30626":30627,"30627":30628,"30628":30629,"30629":30630,"30630":30631,"30631":30632,"30632":30633,"30633":30634,"30634":30635,"30635":30636,"30636":30637,"30637":30638,"30638":30639,"30639":30640,"30640":30641,"30641":30642,"30642":30643,"30643":30644,"30644":30645,"30645":30646,"30646":30647,"30647":30648,"30648":30649,"30649":30650,"30650":30651,"30651":30652,"30652":30653,"30653":30654,"30654":30655,"30655":30656,"30656":30657,"30657":30658,"30658":30659,"30659":30660,"30660":30661,"30661":30662,"30662":30663,"30663":30664,"30664":30665,"30665":30666,"30666":30667,"30667":30668,"30668":30669,"30669":30670,"30670":30671,"30671":30672,"30672":30673,"30673":30674,"30674":30675,"30675":30676,"30676":30677,"30677":30678,"30678":30679,"30679":30680,"30680":30681,"30681":30682,"30682":30683,"30683":30684,"30684":30685,"30685":30686,"30686":30687,"30687":30688,"30688":30689,"30689":30690,"30690":30691,"30691":30692,"30692":30693,"30693":30694,"30694":30695,"30695":30696,"30696":30697,"30697":30698,"30698":30699,"30699":30700,"30700":30701,"30701":30702,"30702":30703,"30703":30704,"30704":30705,"30705":30706,"30706":30707,"30707":30708,"30708":30709,"30709":30710,"30710":30711,"30711":30712,"30712":30713,"30713":30714,"30714":30715,"30715":30716,"30716":30717,"30717":30718,"30718":30719,"30719":30720,"30720":30721,"30721":30722,"30722":30723,"30723":30724,"30724":30725,"30725":30726,"30726":30727,"30727":30728,"30728":30729,"30729":30730,"30730":30731,"30731":30732,"30732":30733,"30733":30734,"30734":30735,"30735":30736,"30736":30737,"30737":30738,"30738":30739,"30739":30740,"30740":30741,"30741":30742,"30742":30743,"30743":30744,"30744":30745,"30745":30746,"30746":30747,"30747":30748,"30748":30749,"30749":30750,"30750":30751,"30751":30752,"30752":30753,"30753":30754,"30754":30755,"30755":30756,"30756":30757,"30757":30758,"30758":30759,"30759":30760,"30760":30761,"30761":30762,"30762":30763,"30763":30764,"30764":30765,"30765":30766,"30766":30767,"30767":30768,"30768":30769,"30769":30770,"30770":30771,"30771":30772,"30772":30773,"30773":30774,"30774":30775,"30775":30776,"30776":30777,"30777":30778,"30778":30779,"30779":30780,"30780":30781,"30781":30782,"30782":30783,"30783":30784,"30784":30785,"30785":30786,"30786":30787,"30787":30788,"30788":30789,"30789":30790,"30790":30791,"30791":30792,"30792":30793,"30793":30794,"30794":30795,"30795":30796,"30796":30797,"30797":30798,"30798":30799,"30799":30800,"30800":30801,"30801":30802,"30802":30803,"30803":30804,"30804":30805,"30805":30806,"30806":30807,"30807":30808,"30808":30809,"30809":30810,"30810":30811,"30811":30812,"30812":30813,"30813":30814,"30814":30815,"30815":30816,"30816":30817,"30817":30818,"30818":30819,"30819":30820,"30820":30821,"30821":30822,"30822":30823,"30823":30824,"30824":30825,"30825":30826,"30826":30827,"30827":30828,"30828":30829,"30829":30830,"30830":30831,"30831":30832,"30832":30833,"30833":30834,"30834":30835,"30835":30836,"30836":30837,"30837":30838,"30838":30839,"30839":30840,"30840":30841,"30841":30842,"30842":30843,"30843":30844,"30844":30845,"30845":30846,"30846":30847,"30847":30848,"30848":30849,"30849":30850,"30850":30851,"30851":30852,"30852":30853,"30853":30854,"30854":30855,"30855":30856,"30856":30857,"30857":30858,"30858":30859,"30859":30860,"30860":30861,"30861":30862,"30862":30863,"30863":30864,"30864":30865,"30865":30866,"30866":30867,"30867":30868,"30868":30869,"30869":30870,"30870":30871,"30871":30872,"30872":30873,"30873":30874,"30874":30875,"30875":30876,"30876":30877,"30877":30878,"30878":30879,"30879":30880,"30880":30881,"30881":30882,"30882":30883,"30883":30884,"30884":30885,"30885":30886,"30886":30887,"30887":30888,"30888":30889,"30889":30890,"30890":30891,"30891":30892,"30892":30893,"30893":30894,"30894":30895,"30895":30896,"30896":30897,"30897":30898,"30898":30899,"30899":30900,"30900":30901,"30901":30902,"30902":30903,"30903":30904,"30904":30905,"30905":30906,"30906":30907,"30907":30908,"30908":30909,"30909":30910,"30910":30911,"30911":30912,"30912":30913,"30913":30914,"30914":30915,"30915":30916,"30916":30917,"30917":30918,"30918":30919,"30919":30920,"30920":30921,"30921":30922,"30922":30923,"30923":30924,"30924":30925,"30925":30926,"30926":30927,"30927":30928,"30928":30929,"30929":30930,"30930":30931,"30931":30932,"30932":30933,"30933":30934,"30934":30935,"30935":30936,"30936":30937,"30937":30938,"30938":30939,"30939":30940,"30940":30941,"30941":30942,"30942":30943,"30943":30944,"30944":30945,"30945":30946,"30946":30947,"30947":30948,"30948":30949,"30949":30950,"30950":30951,"30951":30952,"30952":30953,"30953":30954,"30954":30955,"30955":30956,"30956":30957,"30957":30958,"30958":30959,"30959":30960,"30960":30961,"30961":30962,"30962":30963,"30963":30964,"30964":30965,"30965":30966,"30966":30967,"30967":30968,"30968":30969,"30969":30970,"30970":30971,"30971":30972,"30972":30973,"30973":30974,"30974":30975,"30975":30976,"30976":30977,"30977":30978,"30978":30979,"30979":30980,"30980":30981,"30981":30982,"30982":30983,"30983":30984,"30984":30985,"30985":30986,"30986":30987,"30987":30988,"30988":30989,"30989":30990,"30990":30991,"30991":30992,"30992":30993,"30993":30994,"30994":30995,"30995":30996,"30996":30997,"30997":30998,"30998":30999,"30999":31000,"31000":31001,"31001":31002,"31002":31003,"31003":31004,"31004":31005,"31005":31006,"31006":31007,"31007":31008,"31008":31009,"31009":31010,"31010":31011,"31011":31012,"31012":31013,"31013":31014,"31014":31015,"31015":31016,"31016":31017,"31017":31018,"31018":31019,"31019":31020,"31020":31021,"31021":31022,"31022":31023,"31023":31024,"31024":31025,"31025":31026,"31026":31027,"31027":31028,"31028":31029,"31029":31030,"31030":31031,"31031":31032,"31032":31033,"31033":31034,"31034":31035,"31035":31036,"31036":31037,"31037":31038,"31038":31039,"31039":31040,"31040":31041,"31041":31042,"31042":31043,"31043":31044,"31044":31045,"31045":31046,"31046":31047,"31047":31048,"31048":31049,"31049":31050,"31050":31051,"31051":31052,"31052":31053,"31053":31054,"31054":31055,"31055":31056,"31056":31057,"31057":31058,"31058":31059,"31059":31060,"31060":31061,"31061":31062,"31062":31063,"31063":31064,"31064":31065,"31065":31066,"31066":31067,"31067":31068,"31068":31069,"31069":31070,"31070":31071,"31071":31072,"31072":31073,"31073":31074,"31074":31075,"31075":31076,"31076":31077,"31077":31078,"31078":31079,"31079":31080,"31080":31081,"31081":31082,"31082":31083,"31083":31084,"31084":31085,"31085":31086,"31086":31087,"31087":31088,"31088":31089,"31089":31090,"31090":31091,"31091":31092,"31092":31093,"31093":31094,"31094":31095,"31095":31096,"31096":31097,"31097":31098,"31098":31099,"31099":31100,"31100":31101,"31101":31102,"31102":31103,"31103":31104,"31104":31105,"31105":31106,"31106":31107,"31107":31108,"31108":31109,"31109":31110,"31110":31111,"31111":31112,"31112":31113,"31113":31114,"31114":31115,"31115":31116,"31116":31117,"31117":31118,"31118":31119,"31119":31120,"31120":31121,"31121":31122,"31122":31123,"31123":31124,"31124":31125,"31125":31126,"31126":31127,"31127":31128,"31128":31129,"31129":31130,"31130":31131,"31131":31132,"31132":31133,"31133":31134,"31134":31135,"31135":31136,"31136":31137,"31137":31138,"31138":31139,"31139":31140,"31140":31141,"31141":31142,"31142":31143,"31143":31144,"31144":31145,"31145":31146,"31146":31147,"31147":31148,"31148":31149,"31149":31150,"31150":31151,"31151":31152,"31152":31153,"31153":31154,"31154":31155,"31155":31156,"31156":31157,"31157":31158,"31158":31159,"31159":31160,"31160":31161,"31161":31162,"31162":31163,"31163":31164,"31164":31165,"31165":31166,"31166":31167,"31167":31168,"31168":31169,"31169":31170,"31170":31171,"31171":31172,"31172":31173,"31173":31174,"31174":31175,"31175":31176,"31176":31177,"31177":31178,"31178":31179,"31179":31180,"31180":31181,"31181":31182,"31182":31183,"31183":31184,"31184":31185,"31185":31186,"31186":31187,"31187":31188,"31188":31189,"31189":31190,"31190":31191,"31191":31192,"31192":31193,"31193":31194,"31194":31195,"31195":31196,"31196":31197,"31197":31198,"31198":31199,"31199":31200,"31200":31201,"31201":31202,"31202":31203,"31203":31204,"31204":31205,"31205":31206,"31206":31207,"31207":31208,"31208":31209,"31209":31210,"31210":31211,"31211":31212,"31212":31213,"31213":31214,"31214":31215,"31215":31216,"31216":31217,"31217":31218,"31218":31219,"31219":31220,"31220":31221,"31221":31222,"31222":31223,"31223":31224,"31224":31225,"31225":31226,"31226":31227,"31227":31228,"31228":31229,"31229":31230,"31230":31231,"31231":31232,"31232":31233,"31233":31234,"31234":31235,"31235":31236,"31236":31237,"31237":31238,"31238":31239,"31239":31240,"31240":31241,"31241":31242,"31242":31243,"31243":31244,"31244":31245,"31245":31246,"31246":31247,"31247":31248,"31248":31249,"31249":31250,"31250":31251,"31251":31252,"31252":31253,"31253":31254,"31254":31255,"31255":31256,"31256":31257,"31257":31258,"31258":31259,"31259":31260,"31260":31261,"31261":31262,"31262":31263,"31263":31264,"31264":31265,"31265":31266,"31266":31267,"31267":31268,"31268":31269,"31269":31270,"31270":31271,"31271":31272,"31272":31273,"31273":31274,"31274":31275,"31275":31276,"31276":31277,"31277":31278,"31278":31279,"31279":31280,"31280":31281,"31281":31282,"31282":31283,"31283":31284,"31284":31285,"31285":31286,"31286":31287,"31287":31288,"31288":31289,"31289":31290,"31290":31291,"31291":31292,"31292":31293,"31293":31294,"31294":31295,"31295":31296,"31296":31297,"31297":31298,"31298":31299,"31299":31300,"31300":31301,"31301":31302,"31302":31303,"31303":31304,"31304":31305,"31305":31306,"31306":31307,"31307":31308,"31308":31309,"31309":31310,"31310":31311,"31311":31312,"31312":31313,"31313":31314,"31314":31315,"31315":31316,"31316":31317,"31317":31318,"31318":31319,"31319":31320,"31320":31321,"31321":31322,"31322":31323,"31323":31324,"31324":31325,"31325":31326,"31326":31327,"31327":31328,"31328":31329,"31329":31330,"31330":31331,"31331":31332,"31332":31333,"31333":31334,"31334":31335,"31335":31336,"31336":31337,"31337":31338,"31338":31339,"31339":31340,"31340":31341,"31341":31342,"31342":31343,"31343":31344,"31344":31345,"31345":31346,"31346":31347,"31347":31348,"31348":31349,"31349":31350,"31350":31351,"31351":31352,"31352":31353,"31353":31354,"31354":31355,"31355":31356,"31356":31357,"31357":31358,"31358":31359,"31359":31360,"31360":31361,"31361":31362,"31362":31363,"31363":31364,"31364":31365,"31365":31366,"31366":31367,"31367":31368,"31368":31369,"31369":31370,"31370":31371,"31371":31372,"31372":31373,"31373":31374,"31374":31375,"31375":31376,"31376":31377,"31377":31378,"31378":31379,"31379":31380,"31380":31381,"31381":31382,"31382":31383,"31383":31384,"31384":31385,"31385":31386,"31386":31387,"31387":31388,"31388":31389,"31389":31390,"31390":31391,"31391":31392,"31392":31393,"31393":31394,"31394":31395,"31395":31396,"31396":31397,"31397":31398,"31398":31399,"31399":31400,"31400":31401,"31401":31402,"31402":31403,"31403":31404,"31404":31405,"31405":31406,"31406":31407,"31407":31408,"31408":31409,"31409":31410,"31410":31411,"31411":31412,"31412":31413,"31413":31414,"31414":31415,"31415":31416,"31416":31417,"31417":31418,"31418":31419,"31419":31420,"31420":31421,"31421":31422,"31422":31423,"31423":31424,"31424":31425,"31425":31426,"31426":31427,"31427":31428,"31428":31429,"31429":31430,"31430":31431,"31431":31432,"31432":31433,"31433":31434,"31434":31435,"31435":31436,"31436":31437,"31437":31438,"31438":31439,"31439":31440,"31440":31441,"31441":31442,"31442":31443,"31443":31444,"31444":31445,"31445":31446,"31446":31447,"31447":31448,"31448":31449,"31449":31450,"31450":31451,"31451":31452,"31452":31453,"31453":31454,"31454":31455,"31455":31456,"31456":31457,"31457":31458,"31458":31459,"31459":31460,"31460":31461,"31461":31462,"31462":31463,"31463":31464,"31464":31465,"31465":31466,"31466":31467,"31467":31468,"31468":31469,"31469":31470,"31470":31471,"31471":31472,"31472":31473,"31473":31474,"31474":31475,"31475":31476,"31476":31477,"31477":31478,"31478":31479,"31479":31480,"31480":31481,"31481":31482,"31482":31483,"31483":31484,"31484":31485,"31485":31486,"31486":31487,"31487":31488,"31488":31489,"31489":31490,"31490":31491,"31491":31492,"31492":31493,"31493":31494,"31494":31495,"31495":31496,"31496":31497,"31497":31498,"31498":31499,"31499":31500,"31500":31501,"31501":31502,"31502":31503,"31503":31504,"31504":31505,"31505":31506,"31506":31507,"31507":31508,"31508":31509,"31509":31510,"31510":31511,"31511":31512,"31512":31513,"31513":31514,"31514":31515,"31515":31516,"31516":31517,"31517":31518,"31518":31519,"31519":31520,"31520":31521,"31521":31522,"31522":31523,"31523":31524,"31524":31525,"31525":31526,"31526":31527,"31527":31528,"31528":31529,"31529":31530,"31530":31531,"31531":31532,"31532":31533,"31533":31534,"31534":31535,"31535":31536,"31536":31537,"31537":31538,"31538":31539,"31539":31540,"31540":31541,"31541":31542,"31542":31543,"31543":31544,"31544":31545,"31545":31546,"31546":31547,"31547":31548,"31548":31549,"31549":31550,"31550":31551,"31551":31552,"31552":31553,"31553":31554,"31554":31555,"31555":31556,"31556":31557,"31557":31558,"31558":31559,"31559":31560,"31560":31561,"31561":31562,"31562":31563,"31563":31564,"31564":31565,"31565":31566,"31566":31567,"31567":31568,"31568":31569,"31569":31570,"31570":31571,"31571":31572,"31572":31573,"31573":31574,"31574":31575,"31575":31576,"31576":31577,"31577":31578,"31578":31579,"31579":31580,"31580":31581,"31581":31582,"31582":31583,"31583":31584,"31584":31585,"31585":31586,"31586":31587,"31587":31588,"31588":31589,"31589":31590,"31590":31591,"31591":31592,"31592":31593,"31593":31594,"31594":31595,"31595":31596,"31596":31597,"31597":31598,"31598":31599,"31599":31600,"31600":31601,"31601":31602,"31602":31603,"31603":31604,"31604":31605,"31605":31606,"31606":31607,"31607":31608,"31608":31609,"31609":31610,"31610":31611,"31611":31612,"31612":31613,"31613":31614,"31614":31615,"31615":31616,"31616":31617,"31617":31618,"31618":31619,"31619":31620,"31620":31621,"31621":31622,"31622":31623,"31623":31624,"31624":31625,"31625":31626,"31626":31627,"31627":31628,"31628":31629,"31629":31630,"31630":31631,"31631":31632,"31632":31633,"31633":31634,"31634":31635,"31635":31636,"31636":31637,"31637":31638,"31638":31639,"31639":31640,"31640":31641,"31641":31642,"31642":31643,"31643":31644,"31644":31645,"31645":31646,"31646":31647,"31647":31648,"31648":31649,"31649":31650,"31650":31651,"31651":31652,"31652":31653,"31653":31654,"31654":31655,"31655":31656,"31656":31657,"31657":31658,"31658":31659,"31659":31660,"31660":31661,"31661":31662,"31662":31663,"31663":31664,"31664":31665,"31665":31666,"31666":31667,"31667":31668,"31668":31669,"31669":31670,"31670":31671,"31671":31672,"31672":31673,"31673":31674,"31674":31675,"31675":31676,"31676":31677,"31677":31678,"31678":31679,"31679":31680,"31680":31681,"31681":31682,"31682":31683,"31683":31684,"31684":31685,"31685":31686,"31686":31687,"31687":31688,"31688":31689,"31689":31690,"31690":31691,"31691":31692,"31692":31693,"31693":31694,"31694":31695,"31695":31696,"31696":31697,"31697":31698,"31698":31699,"31699":31700,"31700":31701,"31701":31702,"31702":31703,"31703":31704,"31704":31705,"31705":31706,"31706":31707,"31707":31708,"31708":31709,"31709":31710,"31710":31711,"31711":31712,"31712":31713,"31713":31714,"31714":31715,"31715":31716,"31716":31717,"31717":31718,"31718":31719,"31719":31720,"31720":31721,"31721":31722,"31722":31723,"31723":31724,"31724":31725,"31725":31726,"31726":31727,"31727":31728,"31728":31729,"31729":31730,"31730":31731,"31731":31732,"31732":31733,"31733":31734,"31734":31735,"31735":31736,"31736":31737,"31737":31738,"31738":31739,"31739":31740,"31740":31741,"31741":31742,"31742":31743,"31743":31744,"31744":31745,"31745":31746,"31746":31747,"31747":31748,"31748":31749,"31749":31750,"31750":31751,"31751":31752,"31752":31753,"31753":31754,"31754":31755,"31755":31756,"31756":31757,"31757":31758,"31758":31759,"31759":31760,"31760":31761,"31761":31762,"31762":31763,"31763":31764,"31764":31765,"31765":31766,"31766":31767,"31767":31768,"31768":31769,"31769":31770,"31770":31771,"31771":31772,"31772":31773,"31773":31774,"31774":31775,"31775":31776,"31776":31777,"31777":31778,"31778":31779,"31779":31780,"31780":31781,"31781":31782,"31782":31783,"31783":31784,"31784":31785,"31785":31786,"31786":31787,"31787":31788,"31788":31789,"31789":31790,"31790":31791,"31791":31792,"31792":31793,"31793":31794,"31794":31795,"31795":31796,"31796":31797,"31797":31798,"31798":31799,"31799":31800,"31800":31801,"31801":31802,"31802":31803,"31803":31804,"31804":31805,"31805":31806,"31806":31807,"31807":31808,"31808":31809,"31809":31810,"31810":31811,"31811":31812,"31812":31813,"31813":31814,"31814":31815,"31815":31816,"31816":31817,"31817":31818,"31818":31819,"31819":31820,"31820":31821,"31821":31822,"31822":31823,"31823":31824,"31824":31825,"31825":31826,"31826":31827,"31827":31828,"31828":31829,"31829":31830,"31830":31831,"31831":31832,"31832":31833,"31833":31834,"31834":31835,"31835":31836,"31836":31837,"31837":31838,"31838":31839,"31839":31840,"31840":31841,"31841":31842,"31842":31843,"31843":31844,"31844":31845,"31845":31846,"31846":31847,"31847":31848,"31848":31849,"31849":31850,"31850":31851,"31851":31852,"31852":31853,"31853":31854,"31854":31855,"31855":31856,"31856":31857,"31857":31858,"31858":31859,"31859":31860,"31860":31861,"31861":31862,"31862":31863,"31863":31864,"31864":31865,"31865":31866,"31866":31867,"31867":31868,"31868":31869,"31869":31870,"31870":31871,"31871":31872,"31872":31873,"31873":31874,"31874":31875,"31875":31876,"31876":31877,"31877":31878,"31878":31879,"31879":31880,"31880":31881,"31881":31882,"31882":31883,"31883":31884,"31884":31885,"31885":31886,"31886":31887,"31887":31888,"31888":31889,"31889":31890,"31890":31891,"31891":31892,"31892":31893,"31893":31894,"31894":31895,"31895":31896,"31896":31897,"31897":31898,"31898":31899,"31899":31900,"31900":31901,"31901":31902,"31902":31903,"31903":31904,"31904":31905,"31905":31906,"31906":31907,"31907":31908,"31908":31909,"31909":31910,"31910":31911,"31911":31912,"31912":31913,"31913":31914,"31914":31915,"31915":31916,"31916":31917,"31917":31918,"31918":31919,"31919":31920,"31920":31921,"31921":31922,"31922":31923,"31923":31924,"31924":31925,"31925":31926,"31926":31927,"31927":31928,"31928":31929,"31929":31930,"31930":31931,"31931":31932,"31932":31933,"31933":31934,"31934":31935,"31935":31936,"31936":31937,"31937":31938,"31938":31939,"31939":31940,"31940":31941,"31941":31942,"31942":31943,"31943":31944,"31944":31945,"31945":31946,"31946":31947,"31947":31948,"31948":31949,"31949":31950,"31950":31951,"31951":31952,"31952":31953,"31953":31954,"31954":31955,"31955":31956,"31956":31957,"31957":31958,"31958":31959,"31959":31960,"31960":31961,"31961":31962,"31962":31963,"31963":31964,"31964":31965,"31965":31966,"31966":31967,"31967":31968,"31968":31969,"31969":31970,"31970":31971,"31971":31972,"31972":31973,"31973":31974,"31974":31975,"31975":31976,"31976":31977,"31977":31978,"31978":31979,"31979":31980,"31980":31981,"31981":31982,"31982":31983,"31983":31984,"31984":31985,"31985":31986,"31986":31987,"31987":31988,"31988":31989,"31989":31990,"31990":31991,"31991":31992,"31992":31993,"31993":31994,"31994":31995,"31995":31996,"31996":31997,"31997":31998,"31998":31999,"31999":32000,"32000":32001,"32001":32002,"32002":32003,"32003":32004,"32004":32005,"32005":32006,"32006":32007,"32007":32008,"32008":32009,"32009":32010,"32010":32011,"32011":32012,"32012":32013,"32013":32014,"32014":32015,"32015":32016,"32016":32017,"32017":32018,"32018":32019,"32019":32020,"32020":32021,"32021":32022,"32022":32023,"32023":32024,"32024":32025,"32025":32026,"32026":32027,"32027":32028,"32028":32029,"32029":32030,"32030":32031,"32031":32032,"32032":32033,"32033":32034,"32034":32035,"32035":32036,"32036":32037,"32037":32038,"32038":32039,"32039":32040,"32040":32041,"32041":32042,"32042":32043,"32043":32044,"32044":32045,"32045":32046,"32046":32047,"32047":32048,"32048":32049,"32049":32050,"32050":32051,"32051":32052,"32052":32053,"32053":32054,"32054":32055,"32055":32056,"32056":32057,"32057":32058,"32058":32059,"32059":32060,"32060":32061,"32061":32062,"32062":32063,"32063":32064,"32064":32065,"32065":32066,"32066":32067,"32067":32068,"32068":32069,"32069":32070,"32070":32071,"32071":32072,"32072":32073,"32073":32074,"32074":32075,"32075":32076,"32076":32077,"32077":32078,"32078":32079,"32079":32080,"32080":32081,"32081":32082,"32082":32083,"32083":32084,"32084":32085,"32085":32086,"32086":32087,"32087":32088,"32088":32089,"32089":32090,"32090":32091,"32091":32092,"32092":32093,"32093":32094,"32094":32095,"32095":32096,"32096":32097,"32097":32098,"32098":32099,"32099":32100,"32100":32101,"32101":32102,"32102":32103,"32103":32104,"32104":32105,"32105":32106,"32106":32107,"32107":32108,"32108":32109,"32109":32110,"32110":32111,"32111":32112,"32112":32113,"32113":32114,"32114":32115,"32115":32116,"32116":32117,"32117":32118,"32118":32119,"32119":32120,"32120":32121,"32121":32122,"32122":32123,"32123":32124,"32124":32125,"32125":32126,"32126":32127,"32127":32128,"32128":32129,"32129":32130,"32130":32131,"32131":32132,"32132":32133,"32133":32134,"32134":32135,"32135":32136,"32136":32137,"32137":32138,"32138":32139,"32139":32140,"32140":32141,"32141":32142,"32142":32143,"32143":32144,"32144":32145,"32145":32146,"32146":32147,"32147":32148,"32148":32149,"32149":32150,"32150":32151,"32151":32152,"32152":32153,"32153":32154,"32154":32155,"32155":32156,"32156":32157,"32157":32158,"32158":32159,"32159":32160,"32160":32161,"32161":32162,"32162":32163,"32163":32164,"32164":32165,"32165":32166,"32166":32167,"32167":32168,"32168":32169,"32169":32170,"32170":32171,"32171":32172,"32172":32173,"32173":32174,"32174":32175,"32175":32176,"32176":32177,"32177":32178,"32178":32179,"32179":32180,"32180":32181,"32181":32182,"32182":32183,"32183":32184,"32184":32185,"32185":32186,"32186":32187,"32187":32188,"32188":32189,"32189":32190,"32190":32191,"32191":32192,"32192":32193,"32193":32194,"32194":32195,"32195":32196,"32196":32197,"32197":32198,"32198":32199,"32199":32200,"32200":32201,"32201":32202,"32202":32203,"32203":32204,"32204":32205,"32205":32206,"32206":32207,"32207":32208,"32208":32209,"32209":32210,"32210":32211,"32211":32212,"32212":32213,"32213":32214,"32214":32215,"32215":32216,"32216":32217,"32217":32218,"32218":32219,"32219":32220,"32220":32221,"32221":32222,"32222":32223,"32223":32224,"32224":32225,"32225":32226,"32226":32227,"32227":32228,"32228":32229,"32229":32230,"32230":32231,"32231":32232,"32232":32233,"32233":32234,"32234":32235,"32235":32236,"32236":32237,"32237":32238,"32238":32239,"32239":32240,"32240":32241,"32241":32242,"32242":32243,"32243":32244,"32244":32245,"32245":32246,"32246":32247,"32247":32248,"32248":32249,"32249":32250,"32250":32251,"32251":32252,"32252":32253,"32253":32254,"32254":32255,"32255":32256,"32256":32257,"32257":32258,"32258":32259,"32259":32260,"32260":32261,"32261":32262,"32262":32263,"32263":32264,"32264":32265,"32265":32266,"32266":32267,"32267":32268,"32268":32269,"32269":32270,"32270":32271,"32271":32272,"32272":32273,"32273":32274,"32274":32275,"32275":32276,"32276":32277,"32277":32278,"32278":32279,"32279":32280,"32280":32281,"32281":32282,"32282":32283,"32283":32284,"32284":32285,"32285":32286,"32286":32287,"32287":32288,"32288":32289,"32289":32290,"32290":32291,"32291":32292,"32292":32293,"32293":32294,"32294":32295,"32295":32296,"32296":32297,"32297":32298,"32298":32299,"32299":32300,"32300":32301,"32301":32302,"32302":32303,"32303":32304,"32304":32305,"32305":32306,"32306":32307,"32307":32308,"32308":32309,"32309":32310,"32310":32311,"32311":32312,"32312":32313,"32313":32314,"32314":32315,"32315":32316,"32316":32317,"32317":32318,"32318":32319,"32319":32320,"32320":32321,"32321":32322,"32322":32323,"32323":32324,"32324":32325,"32325":32326,"32326":32327,"32327":32328,"32328":32329,"32329":32330,"32330":32331,"32331":32332,"32332":32333,"32333":32334,"32334":32335,"32335":32336,"32336":32337,"32337":32338,"32338":32339,"32339":32340,"32340":32341,"32341":32342,"32342":32343,"32343":32344,"32344":32345,"32345":32346,"32346":32347,"32347":32348,"32348":32349,"32349":32350,"32350":32351,"32351":32352,"32352":32353,"32353":32354,"32354":32355,"32355":32356,"32356":32357,"32357":32358,"32358":32359,"32359":32360,"32360":32361,"32361":32362,"32362":32363,"32363":32364,"32364":32365,"32365":32366,"32366":32367,"32367":32368,"32368":32369,"32369":32370,"32370":32371,"32371":32372,"32372":32373,"32373":32374,"32374":32375,"32375":32376,"32376":32377,"32377":32378,"32378":32379,"32379":32380,"32380":32381,"32381":32382,"32382":32383,"32383":32384,"32384":32385,"32385":32386,"32386":32387,"32387":32388,"32388":32389,"32389":32390,"32390":32391,"32391":32392,"32392":32393,"32393":32394,"32394":32395,"32395":32396,"32396":32397,"32397":32398,"32398":32399,"32399":32400,"32400":32401,"32401":32402,"32402":32403,"32403":32404,"32404":32405,"32405":32406,"32406":32407,"32407":32408,"32408":32409,"32409":32410,"32410":32411,"32411":32412,"32412":32413,"32413":32414,"32414":32415,"32415":32416,"32416":32417,"32417":32418,"32418":32419,"32419":32420,"32420":32421,"32421":32422,"32422":32423,"32423":32424,"32424":32425,"32425":32426,"32426":32427,"32427":32428,"32428":32429,"32429":32430,"32430":32431,"32431":32432,"32432":32433,"32433":32434,"32434":32435,"32435":32436,"32436":32437,"32437":32438,"32438":32439,"32439":32440,"32440":32441,"32441":32442,"32442":32443,"32443":32444,"32444":32445,"32445":32446,"32446":32447,"32447":32448,"32448":32449,"32449":32450,"32450":32451,"32451":32452,"32452":32453,"32453":32454,"32454":32455,"32455":32456,"32456":32457,"32457":32458,"32458":32459,"32459":32460,"32460":32461,"32461":32462,"32462":32463,"32463":32464,"32464":32465,"32465":32466,"32466":32467,"32467":32468,"32468":32469,"32469":32470,"32470":32471,"32471":32472,"32472":32473,"32473":32474,"32474":32475,"32475":32476,"32476":32477,"32477":32478,"32478":32479,"32479":32480,"32480":32481,"32481":32482,"32482":32483,"32483":32484,"32484":32485,"32485":32486,"32486":32487,"32487":32488,"32488":32489,"32489":32490,"32490":32491,"32491":32492,"32492":32493,"32493":32494,"32494":32495,"32495":32496,"32496":32497,"32497":32498,"32498":32499,"32499":32500,"32500":32501,"32501":32502,"32502":32503,"32503":32504,"32504":32505,"32505":32506,"32506":32507,"32507":32508,"32508":32509,"32509":32510,"32510":32511,"32511":32512,"32512":32513,"32513":32514,"32514":32515,"32515":32516,"32516":32517,"32517":32518,"32518":32519,"32519":32520,"32520":32521,"32521":32522,"32522":32523,"32523":32524,"32524":32525,"32525":32526,"32526":32527,"32527":32528,"32528":32529,"32529":32530,"32530":32531,"32531":32532,"32532":32533,"32533":32534,"32534":32535,"32535":32536,"32536":32537,"32537":32538,"32538":32539,"32539":32540,"32540":32541,"32541":32542,"32542":32543,"32543":32544,"32544":32545,"32545":32546,"32546":32547,"32547":32548,"32548":32549,"32549":32550,"32550":32551,"32551":32552,"32552":32553,"32553":32554,"32554":32555,"32555":32556,"32556":32557,"32557":32558,"32558":32559,"32559":32560,"32560":32561,"32561":32562,"32562":32563,"32563":32564,"32564":32565,"32565":32566,"32566":32567,"32567":32568,"32568":32569,"32569":32570,"32570":32571,"32571":32572,"32572":32573,"32573":32574,"32574":32575,"32575":32576,"32576":32577,"32577":32578,"32578":32579,"32579":32580,"32580":32581,"32581":32582,"32582":32583,"32583":32584,"32584":32585,"32585":32586,"32586":32587,"32587":32588,"32588":32589,"32589":32590,"32590":32591,"32591":32592,"32592":32593,"32593":32594,"32594":32595,"32595":32596,"32596":32597,"32597":32598,"32598":32599,"32599":32600,"32600":32601,"32601":32602,"32602":32603,"32603":32604,"32604":32605,"32605":32606,"32606":32607,"32607":32608,"32608":32609,"32609":32610,"32610":32611,"32611":32612,"32612":32613,"32613":32614,"32614":32615,"32615":32616,"32616":32617,"32617":32618,"32618":32619,"32619":32620,"32620":32621,"32621":32622,"32622":32623,"32623":32624,"32624":32625,"32625":32626,"32626":32627,"32627":32628,"32628":32629,"32629":32630,"32630":32631,"32631":32632,"32632":32633,"32633":32634,"32634":32635,"32635":32636,"32636":32637,"32637":32638,"32638":32639,"32639":32640,"32640":32641,"32641":32642,"32642":32643,"32643":32644,"32644":32645,"32645":32646,"32646":32647,"32647":32648,"32648":32649,"32649":32650,"32650":32651,"32651":32652,"32652":32653,"32653":32654,"32654":32655,"32655":32656,"32656":32657,"32657":32658,"32658":32659,"32659":32660,"32660":32661,"32661":32662,"32662":32663,"32663":32664,"32664":32665,"32665":32666,"32666":32667,"32667":32668,"32668":32669,"32669":32670,"32670":32671,"32671":32672,"32672":32673,"32673":32674,"32674":32675,"32675":32676,"32676":32677,"32677":32678,"32678":32679,"32679":32680,"32680":32681,"32681":32682,"32682":32683,"32683":32684,"32684":32685,"32685":32686,"32686":32687,"32687":32688,"32688":32689,"32689":32690,"32690":32691,"32691":32692,"32692":32693,"32693":32694,"32694":32695,"32695":32696,"32696":32697,"32697":32698,"32698":32699,"32699":32700,"32700":32701,"32701":32702,"32702":32703,"32703":32704,"32704":32705,"32705":32706,"32706":32707,"32707":32708,"32708":32709,"32709":32710,"32710":32711,"32711":32712,"32712":32713,"32713":32714,"32714":32715,"32715":32716,"32716":32717,"32717":32718,"32718":32719,"32719":32720,"32720":32721,"32721":32722,"32722":32723,"32723":32724,"32724":32725,"32725":32726,"32726":32727,"32727":32728,"32728":32729,"32729":32730,"32730":32731,"32731":32732,"32732":32733,"32733":32734,"32734":32735,"32735":32736,"32736":32737,"32737":32738,"32738":32739,"32739":32740,"32740":32741,"32741":32742,"32742":32743,"32743":32744,"32744":32745,"32745":32746,"32746":32747,"32747":32748,"32748":32749,"32749":32750,"32750":32751,"32751":32752,"32752":32753,"32753":32754,"32754":32755,"32755":32756,"32756":32757,"32757":32758,"32758":32759,"32759":32760,"32760":32761,"32761":32762,"32762":32763,"32763":32764,"32764":32765,"32765":32766,"32766":32767,"32767":32768,"32768":32769,"32769":32770,"32770":32771,"32771":32772,"32772":32773,"32773":32774,"32774":32775,"32775":32776,"32776":32777,"32777":32778,"32778":32779,"32779":32780,"32780":32781,"32781":32782,"32782":32783,"32783":32784,"32784":32785,"32785":32786,"32786":32787,"32787":32788,"32788":32789,"32789":32790,"32790":32791,"32791":32792,"32792":32793,"32793":32794,"32794":32795,"32795":32796,"32796":32797,"32797":32798,"32798":32799,"32799":32800,"32800":32801,"32801":32802,"32802":32803,"32803":32804,"32804":32805,"32805":32806,"32806":32807,"32807":32808,"32808":32809,"32809":32810,"32810":32811,"32811":32812,"32812":32813,"32813":32814,"32814":32815,"32815":32816,"32816":32817,"32817":32818,"32818":32819,"32819":32820,"32820":32821,"32821":32822,"32822":32823,"32823":32824,"32824":32825,"32825":32826,"32826":32827,"32827":32828,"32828":32829,"32829":32830,"32830":32831,"32831":32832,"32832":32833,"32833":32834,"32834":32835,"32835":32836,"32836":32837,"32837":32838,"32838":32839,"32839":32840,"32840":32841,"32841":32842,"32842":32843,"32843":32844,"32844":32845,"32845":32846,"32846":32847,"32847":32848,"32848":32849,"32849":32850,"32850":32851,"32851":32852,"32852":32853,"32853":32854,"32854":32855,"32855":32856,"32856":32857,"32857":32858,"32858":32859,"32859":32860,"32860":32861,"32861":32862,"32862":32863,"32863":32864,"32864":32865,"32865":32866,"32866":32867,"32867":32868,"32868":32869,"32869":32870,"32870":32871,"32871":32872,"32872":32873,"32873":32874,"32874":32875,"32875":32876,"32876":32877,"32877":32878,"32878":32879,"32879":32880,"32880":32881,"32881":32882,"32882":32883,"32883":32884,"32884":32885,"32885":32886,"32886":32887,"32887":32888,"32888":32889,"32889":32890,"32890":32891,"32891":32892,"32892":32893,"32893":32894,"32894":32895,"32895":32896,"32896":32897,"32897":32898,"32898":32899,"32899":32900,"32900":32901,"32901":32902,"32902":32903,"32903":32904,"32904":32905,"32905":32906,"32906":32907,"32907":32908,"32908":32909,"32909":32910,"32910":32911,"32911":32912,"32912":32913,"32913":32914,"32914":32915,"32915":32916,"32916":32917,"32917":32918,"32918":32919,"32919":32920,"32920":32921,"32921":32922,"32922":32923,"32923":32924,"32924":32925,"32925":32926,"32926":32927,"32927":32928,"32928":32929,"32929":32930,"32930":32931,"32931":32932,"32932":32933,"32933":32934,"32934":32935,"32935":32936,"32936":32937,"32937":32938,"32938":32939,"32939":32940,"32940":32941,"32941":32942,"32942":32943,"32943":32944,"32944":32945,"32945":32946,"32946":32947,"32947":32948,"32948":32949,"32949":32950,"32950":32951,"32951":32952,"32952":32953,"32953":32954,"32954":32955,"32955":32956,"32956":32957,"32957":32958,"32958":32959,"32959":32960,"32960":32961,"32961":32962,"32962":32963,"32963":32964,"32964":32965,"32965":32966,"32966":32967,"32967":32968,"32968":32969,"32969":32970,"32970":32971,"32971":32972,"32972":32973,"32973":32974,"32974":32975,"32975":32976,"32976":32977,"32977":32978,"32978":32979,"32979":32980,"32980":32981,"32981":32982,"32982":32983,"32983":32984,"32984":32985,"32985":32986,"32986":32987,"32987":32988,"32988":32989,"32989":32990,"32990":32991,"32991":32992,"32992":32993,"32993":32994,"32994":32995,"32995":32996,"32996":32997,"32997":32998,"32998":32999,"32999":33000,"33000":33001,"33001":33002,"33002":33003,"33003":33004,"33004":33005,"33005":33006,"33006":33007,"33007":33008,"33008":33009,"33009":33010,"33010":33011,"33011":33012,"33012":33013,"33013":33014,"33014":33015,"33015":33016,"33016":33017,"33017":33018,"33018":33019,"33019":33020,"33020":33021,"33021":33022,"33022":33023,"33023":33024,"33024":33025,"33025":33026,"33026":33027,"33027":33028,"33028":33029,"33029":33030,"33030":33031,"33031":33032,"33032":33033,"33033":33034,"33034":33035,"33035":33036,"33036":33037,"33037":33038,"33038":33039,"33039":33040,"33040":33041,"33041":33042,"33042":33043,"33043":33044,"33044":33045,"33045":33046,"33046":33047,"33047":33048,"33048":33049,"33049":33050,"33050":33051,"33051":33052,"33052":33053,"33053":33054,"33054":33055,"33055":33056,"33056":33057,"33057":33058,"33058":33059,"33059":33060,"33060":33061,"33061":33062,"33062":33063,"33063":33064,"33064":33065,"33065":33066,"33066":33067,"33067":33068,"33068":33069,"33069":33070,"33070":33071,"33071":33072,"33072":33073,"33073":33074,"33074":33075,"33075":33076,"33076":33077,"33077":33078,"33078":33079,"33079":33080,"33080":33081,"33081":33082,"33082":33083,"33083":33084,"33084":33085,"33085":33086,"33086":33087,"33087":33088,"33088":33089,"33089":33090,"33090":33091,"33091":33092,"33092":33093,"33093":33094,"33094":33095,"33095":33096,"33096":33097,"33097":33098,"33098":33099,"33099":33100,"33100":33101,"33101":33102,"33102":33103,"33103":33104,"33104":33105,"33105":33106,"33106":33107,"33107":33108,"33108":33109,"33109":33110,"33110":33111,"33111":33112,"33112":33113,"33113":33114,"33114":33115,"33115":33116,"33116":33117,"33117":33118,"33118":33119,"33119":33120,"33120":33121,"33121":33122,"33122":33123,"33123":33124,"33124":33125,"33125":33126,"33126":33127,"33127":33128,"33128":33129,"33129":33130,"33130":33131,"33131":33132,"33132":33133,"33133":33134,"33134":33135,"33135":33136,"33136":33137,"33137":33138,"33138":33139,"33139":33140,"33140":33141,"33141":33142,"33142":33143,"33143":33144,"33144":33145,"33145":33146,"33146":33147,"33147":33148,"33148":33149,"33149":33150,"33150":33151,"33151":33152,"33152":33153,"33153":33154,"33154":33155,"33155":33156,"33156":33157,"33157":33158,"33158":33159,"33159":33160,"33160":33161,"33161":33162,"33162":33163,"33163":33164,"33164":33165,"33165":33166,"33166":33167,"33167":33168,"33168":33169,"33169":33170,"33170":33171,"33171":33172,"33172":33173,"33173":33174,"33174":33175,"33175":33176,"33176":33177,"33177":33178,"33178":33179,"33179":33180,"33180":33181,"33181":33182,"33182":33183,"33183":33184,"33184":33185,"33185":33186,"33186":33187,"33187":33188,"33188":33189,"33189":33190,"33190":33191,"33191":33192,"33192":33193,"33193":33194,"33194":33195,"33195":33196,"33196":33197,"33197":33198,"33198":33199,"33199":33200,"33200":33201,"33201":33202,"33202":33203,"33203":33204,"33204":33205,"33205":33206,"33206":33207,"33207":33208,"33208":33209,"33209":33210,"33210":33211,"33211":33212,"33212":33213,"33213":33214,"33214":33215,"33215":33216,"33216":33217,"33217":33218,"33218":33219,"33219":33220,"33220":33221,"33221":33222,"33222":33223,"33223":33224,"33224":33225,"33225":33226,"33226":33227,"33227":33228,"33228":33229,"33229":33230,"33230":33231,"33231":33232,"33232":33233,"33233":33234,"33234":33235,"33235":33236,"33236":33237,"33237":33238,"33238":33239,"33239":33240,"33240":33241,"33241":33242,"33242":33243,"33243":33244,"33244":33245,"33245":33246,"33246":33247,"33247":33248,"33248":33249,"33249":33250,"33250":33251,"33251":33252,"33252":33253,"33253":33254,"33254":33255,"33255":33256,"33256":33257,"33257":33258,"33258":33259,"33259":33260,"33260":33261,"33261":33262,"33262":33263,"33263":33264,"33264":33265,"33265":33266,"33266":33267,"33267":33268,"33268":33269,"33269":33270,"33270":33271,"33271":33272,"33272":33273,"33273":33274,"33274":33275,"33275":33276,"33276":33277,"33277":33278,"33278":33279,"33279":33280,"33280":33281,"33281":33282,"33282":33283,"33283":33284,"33284":33285,"33285":33286,"33286":33287,"33287":33288,"33288":33289,"33289":33290,"33290":33291,"33291":33292,"33292":33293,"33293":33294,"33294":33295,"33295":33296,"33296":33297,"33297":33298,"33298":33299,"33299":33300,"33300":33301,"33301":33302,"33302":33303,"33303":33304,"33304":33305,"33305":33306,"33306":33307,"33307":33308,"33308":33309,"33309":33310,"33310":33311,"33311":33312,"33312":33313,"33313":33314,"33314":33315,"33315":33316,"33316":33317,"33317":33318,"33318":33319,"33319":33320,"33320":33321,"33321":33322,"33322":33323,"33323":33324,"33324":33325,"33325":33326,"33326":33327,"33327":33328,"33328":33329,"33329":33330,"33330":33331,"33331":33332,"33332":33333,"33333":33334,"33334":33335,"33335":33336,"33336":33337,"33337":33338,"33338":33339,"33339":33340,"33340":33341,"33341":33342,"33342":33343,"33343":33344,"33344":33345,"33345":33346,"33346":33347,"33347":33348,"33348":33349,"33349":33350,"33350":33351,"33351":33352,"33352":33353,"33353":33354,"33354":33355,"33355":33356,"33356":33357,"33357":33358,"33358":33359,"33359":33360,"33360":33361,"33361":33362,"33362":33363,"33363":33364,"33364":33365,"33365":33366,"33366":33367,"33367":33368,"33368":33369,"33369":33370,"33370":33371,"33371":33372,"33372":33373,"33373":33374,"33374":33375,"33375":33376,"33376":33377,"33377":33378,"33378":33379,"33379":33380,"33380":33381,"33381":33382,"33382":33383,"33383":33384,"33384":33385,"33385":33386,"33386":33387,"33387":33388,"33388":33389,"33389":33390,"33390":33391,"33391":33392,"33392":33393,"33393":33394,"33394":33395,"33395":33396,"33396":33397,"33397":33398,"33398":33399,"33399":33400,"33400":33401,"33401":33402,"33402":33403,"33403":33404,"33404":33405,"33405":33406,"33406":33407,"33407":33408,"33408":33409,"33409":33410,"33410":33411,"33411":33412,"33412":33413,"33413":33414,"33414":33415,"33415":33416,"33416":33417,"33417":33418,"33418":33419,"33419":33420,"33420":33421,"33421":33422,"33422":33423,"33423":33424,"33424":33425,"33425":33426,"33426":33427,"33427":33428,"33428":33429,"33429":33430,"33430":33431,"33431":33432,"33432":33433,"33433":33434,"33434":33435,"33435":33436,"33436":33437,"33437":33438,"33438":33439,"33439":33440,"33440":33441,"33441":33442,"33442":33443,"33443":33444,"33444":33445,"33445":33446,"33446":33447,"33447":33448,"33448":33449,"33449":33450,"33450":33451,"33451":33452,"33452":33453,"33453":33454,"33454":33455,"33455":33456,"33456":33457,"33457":33458,"33458":33459,"33459":33460,"33460":33461,"33461":33462,"33462":33463,"33463":33464,"33464":33465,"33465":33466,"33466":33467,"33467":33468,"33468":33469,"33469":33470,"33470":33471,"33471":33472,"33472":33473,"33473":33474,"33474":33475,"33475":33476,"33476":33477,"33477":33478,"33478":33479,"33479":33480,"33480":33481,"33481":33482,"33482":33483,"33483":33484,"33484":33485,"33485":33486,"33486":33487,"33487":33488,"33488":33489,"33489":33490,"33490":33491,"33491":33492,"33492":33493,"33493":33494,"33494":33495,"33495":33496,"33496":33497,"33497":33498,"33498":33499,"33499":33500,"33500":33501,"33501":33502,"33502":33503,"33503":33504,"33504":33505,"33505":33506,"33506":33507,"33507":33508,"33508":33509,"33509":33510,"33510":33511,"33511":33512,"33512":33513,"33513":33514,"33514":33515,"33515":33516,"33516":33517,"33517":33518,"33518":33519,"33519":33520,"33520":33521,"33521":33522,"33522":33523,"33523":33524,"33524":33525,"33525":33526,"33526":33527,"33527":33528,"33528":33529,"33529":33530,"33530":33531,"33531":33532,"33532":33533,"33533":33534,"33534":33535,"33535":33536,"33536":33537,"33537":33538,"33538":33539,"33539":33540,"33540":33541,"33541":33542,"33542":33543,"33543":33544,"33544":33545,"33545":33546,"33546":33547,"33547":33548,"33548":33549,"33549":33550,"33550":33551,"33551":33552,"33552":33553,"33553":33554,"33554":33555,"33555":33556,"33556":33557,"33557":33558,"33558":33559,"33559":33560,"33560":33561,"33561":33562,"33562":33563,"33563":33564,"33564":33565,"33565":33566,"33566":33567,"33567":33568,"33568":33569,"33569":33570,"33570":33571,"33571":33572,"33572":33573,"33573":33574,"33574":33575,"33575":33576,"33576":33577,"33577":33578,"33578":33579,"33579":33580,"33580":33581,"33581":33582,"33582":33583,"33583":33584,"33584":33585,"33585":33586,"33586":33587,"33587":33588,"33588":33589,"33589":33590,"33590":33591,"33591":33592,"33592":33593,"33593":33594,"33594":33595,"33595":33596,"33596":33597,"33597":33598,"33598":33599,"33599":33600,"33600":33601,"33601":33602,"33602":33603,"33603":33604,"33604":33605,"33605":33606,"33606":33607,"33607":33608,"33608":33609,"33609":33610,"33610":33611,"33611":33612,"33612":33613,"33613":33614,"33614":33615,"33615":33616,"33616":33617,"33617":33618,"33618":33619,"33619":33620,"33620":33621,"33621":33622,"33622":33623,"33623":33624,"33624":33625,"33625":33626,"33626":33627,"33627":33628,"33628":33629,"33629":33630,"33630":33631,"33631":33632,"33632":33633,"33633":33634,"33634":33635,"33635":33636,"33636":33637,"33637":33638,"33638":33639,"33639":33640,"33640":33641,"33641":33642,"33642":33643,"33643":33644,"33644":33645,"33645":33646,"33646":33647,"33647":33648,"33648":33649,"33649":33650,"33650":33651,"33651":33652,"33652":33653,"33653":33654,"33654":33655,"33655":33656,"33656":33657,"33657":33658,"33658":33659,"33659":33660,"33660":33661,"33661":33662,"33662":33663,"33663":33664,"33664":33665,"33665":33666,"33666":33667,"33667":33668,"33668":33669,"33669":33670,"33670":33671,"33671":33672,"33672":33673,"33673":33674,"33674":33675,"33675":33676,"33676":33677,"33677":33678,"33678":33679,"33679":33680,"33680":33681,"33681":33682,"33682":33683,"33683":33684,"33684":33685,"33685":33686,"33686":33687,"33687":33688,"33688":33689,"33689":33690,"33690":33691,"33691":33692,"33692":33693,"33693":33694,"33694":33695,"33695":33696,"33696":33697,"33697":33698,"33698":33699,"33699":33700,"33700":33701,"33701":33702,"33702":33703,"33703":33704,"33704":33705,"33705":33706,"33706":33707,"33707":33708,"33708":33709,"33709":33710,"33710":33711,"33711":33712,"33712":33713,"33713":33714,"33714":33715,"33715":33716,"33716":33717,"33717":33718,"33718":33719,"33719":33720,"33720":33721,"33721":33722,"33722":33723,"33723":33724,"33724":33725,"33725":33726,"33726":33727,"33727":33728,"33728":33729,"33729":33730,"33730":33731,"33731":33732,"33732":33733,"33733":33734,"33734":33735,"33735":33736,"33736":33737,"33737":33738,"33738":33739,"33739":33740,"33740":33741,"33741":33742,"33742":33743,"33743":33744,"33744":33745,"33745":33746,"33746":33747,"33747":33748,"33748":33749,"33749":33750,"33750":33751,"33751":33752,"33752":33753,"33753":33754,"33754":33755,"33755":33756,"33756":33757,"33757":33758,"33758":33759,"33759":33760,"33760":33761,"33761":33762,"33762":33763,"33763":33764,"33764":33765,"33765":33766,"33766":33767,"33767":33768,"33768":33769,"33769":33770,"33770":33771,"33771":33772,"33772":33773,"33773":33774,"33774":33775,"33775":33776,"33776":33777,"33777":33778,"33778":33779,"33779":33780,"33780":33781,"33781":33782,"33782":33783,"33783":33784,"33784":33785,"33785":33786,"33786":33787,"33787":33788,"33788":33789,"33789":33790,"33790":33791,"33791":33792,"33792":33793,"33793":33794,"33794":33795,"33795":33796,"33796":33797,"33797":33798,"33798":33799,"33799":33800,"33800":33801,"33801":33802,"33802":33803,"33803":33804,"33804":33805,"33805":33806,"33806":33807,"33807":33808,"33808":33809,"33809":33810,"33810":33811,"33811":33812,"33812":33813,"33813":33814,"33814":33815,"33815":33816,"33816":33817,"33817":33818,"33818":33819,"33819":33820,"33820":33821,"33821":33822,"33822":33823,"33823":33824,"33824":33825,"33825":33826,"33826":33827,"33827":33828,"33828":33829,"33829":33830,"33830":33831,"33831":33832,"33832":33833,"33833":33834,"33834":33835,"33835":33836,"33836":33837,"33837":33838,"33838":33839,"33839":33840,"33840":33841,"33841":33842,"33842":33843,"33843":33844,"33844":33845,"33845":33846,"33846":33847,"33847":33848,"33848":33849,"33849":33850,"33850":33851,"33851":33852,"33852":33853,"33853":33854,"33854":33855,"33855":33856,"33856":33857,"33857":33858,"33858":33859,"33859":33860,"33860":33861,"33861":33862,"33862":33863,"33863":33864,"33864":33865,"33865":33866,"33866":33867,"33867":33868,"33868":33869,"33869":33870,"33870":33871,"33871":33872,"33872":33873,"33873":33874,"33874":33875,"33875":33876,"33876":33877,"33877":33878,"33878":33879,"33879":33880,"33880":33881,"33881":33882,"33882":33883,"33883":33884,"33884":33885,"33885":33886,"33886":33887,"33887":33888,"33888":33889,"33889":33890,"33890":33891,"33891":33892,"33892":33893,"33893":33894,"33894":33895,"33895":33896,"33896":33897,"33897":33898,"33898":33899,"33899":33900,"33900":33901,"33901":33902,"33902":33903,"33903":33904,"33904":33905,"33905":33906,"33906":33907,"33907":33908,"33908":33909,"33909":33910,"33910":33911,"33911":33912,"33912":33913,"33913":33914,"33914":33915,"33915":33916,"33916":33917,"33917":33918,"33918":33919,"33919":33920,"33920":33921,"33921":33922,"33922":33923,"33923":33924,"33924":33925,"33925":33926,"33926":33927,"33927":33928,"33928":33929,"33929":33930,"33930":33931,"33931":33932,"33932":33933,"33933":33934,"33934":33935,"33935":33936,"33936":33937,"33937":33938,"33938":33939,"33939":33940,"33940":33941,"33941":33942,"33942":33943,"33943":33944,"33944":33945,"33945":33946,"33946":33947,"33947":33948,"33948":33949,"33949":33950,"33950":33951,"33951":33952,"33952":33953,"33953":33954,"33954":33955,"33955":33956,"33956":33957,"33957":33958,"33958":33959,"33959":33960,"33960":33961,"33961":33962,"33962":33963,"33963":33964,"33964":33965,"33965":33966,"33966":33967,"33967":33968,"33968":33969,"33969":33970,"33970":33971,"33971":33972,"33972":33973,"33973":33974,"33974":33975,"33975":33976,"33976":33977,"33977":33978,"33978":33979,"33979":33980,"33980":33981,"33981":33982,"33982":33983,"33983":33984,"33984":33985,"33985":33986,"33986":33987,"33987":33988,"33988":33989,"33989":33990,"33990":33991,"33991":33992,"33992":33993,"33993":33994,"33994":33995,"33995":33996,"33996":33997,"33997":33998,"33998":33999,"33999":34000,"34000":34001,"34001":34002,"34002":34003,"34003":34004,"34004":34005,"34005":34006,"34006":34007,"34007":34008,"34008":34009,"34009":34010,"34010":34011,"34011":34012,"34012":34013,"34013":34014,"34014":34015,"34015":34016,"34016":34017,"34017":34018,"34018":34019,"34019":34020,"34020":34021,"34021":34022,"34022":34023,"34023":34024,"34024":34025,"34025":34026,"34026":34027,"34027":34028,"34028":34029,"34029":34030,"34030":34031,"34031":34032,"34032":34033,"34033":34034,"34034":34035,"34035":34036,"34036":34037,"34037":34038,"34038":34039,"34039":34040,"34040":34041,"34041":34042,"34042":34043,"34043":34044,"34044":34045,"34045":34046,"34046":34047,"34047":34048,"34048":34049,"34049":34050,"34050":34051,"34051":34052,"34052":34053,"34053":34054,"34054":34055,"34055":34056,"34056":34057,"34057":34058,"34058":34059,"34059":34060,"34060":34061,"34061":34062,"34062":34063,"34063":34064,"34064":34065,"34065":34066,"34066":34067,"34067":34068,"34068":34069,"34069":34070,"34070":34071,"34071":34072,"34072":34073,"34073":34074,"34074":34075,"34075":34076,"34076":34077,"34077":34078,"34078":34079,"34079":34080,"34080":34081,"34081":34082,"34082":34083,"34083":34084,"34084":34085,"34085":34086,"34086":34087,"34087":34088,"34088":34089,"34089":34090,"34090":34091,"34091":34092,"34092":34093,"34093":34094,"34094":34095,"34095":34096,"34096":34097,"34097":34098,"34098":34099,"34099":34100,"34100":34101,"34101":34102,"34102":34103,"34103":34104,"34104":34105,"34105":34106,"34106":34107,"34107":34108,"34108":34109,"34109":34110,"34110":34111,"34111":34112,"34112":34113,"34113":34114,"34114":34115,"34115":34116,"34116":34117,"34117":34118,"34118":34119,"34119":34120,"34120":34121,"34121":34122,"34122":34123,"34123":34124,"34124":34125,"34125":34126,"34126":34127,"34127":34128,"34128":34129,"34129":34130,"34130":34131,"34131":34132,"34132":34133,"34133":34134,"34134":34135,"34135":34136,"34136":34137,"34137":34138,"34138":34139,"34139":34140,"34140":34141,"34141":34142,"34142":34143,"34143":34144,"34144":34145,"34145":34146,"34146":34147,"34147":34148,"34148":34149,"34149":34150,"34150":34151,"34151":34152,"34152":34153,"34153":34154,"34154":34155,"34155":34156,"34156":34157,"34157":34158,"34158":34159,"34159":34160,"34160":34161,"34161":34162,"34162":34163,"34163":34164,"34164":34165,"34165":34166,"34166":34167,"34167":34168,"34168":34169,"34169":34170,"34170":34171,"34171":34172,"34172":34173,"34173":34174,"34174":34175,"34175":34176,"34176":34177,"34177":34178,"34178":34179,"34179":34180,"34180":34181,"34181":34182,"34182":34183,"34183":34184,"34184":34185,"34185":34186,"34186":34187,"34187":34188,"34188":34189,"34189":34190,"34190":34191,"34191":34192,"34192":34193,"34193":34194,"34194":34195,"34195":34196,"34196":34197,"34197":34198,"34198":34199,"34199":34200,"34200":34201,"34201":34202,"34202":34203,"34203":34204,"34204":34205,"34205":34206,"34206":34207,"34207":34208,"34208":34209,"34209":34210,"34210":34211,"34211":34212,"34212":34213,"34213":34214,"34214":34215,"34215":34216,"34216":34217,"34217":34218,"34218":34219,"34219":34220,"34220":34221,"34221":34222,"34222":34223,"34223":34224,"34224":34225,"34225":34226,"34226":34227,"34227":34228,"34228":34229,"34229":34230,"34230":34231,"34231":34232,"34232":34233,"34233":34234,"34234":34235,"34235":34236,"34236":34237,"34237":34238,"34238":34239,"34239":34240,"34240":34241,"34241":34242,"34242":34243,"34243":34244,"34244":34245,"34245":34246,"34246":34247,"34247":34248,"34248":34249,"34249":34250,"34250":34251,"34251":34252,"34252":34253,"34253":34254,"34254":34255,"34255":34256,"34256":34257,"34257":34258,"34258":34259,"34259":34260,"34260":34261,"34261":34262,"34262":34263,"34263":34264,"34264":34265,"34265":34266,"34266":34267,"34267":34268,"34268":34269,"34269":34270,"34270":34271,"34271":34272,"34272":34273,"34273":34274,"34274":34275,"34275":34276,"34276":34277,"34277":34278,"34278":34279,"34279":34280,"34280":34281,"34281":34282,"34282":34283,"34283":34284,"34284":34285,"34285":34286,"34286":34287,"34287":34288,"34288":34289,"34289":34290,"34290":34291,"34291":34292,"34292":34293,"34293":34294,"34294":34295,"34295":34296,"34296":34297,"34297":34298,"34298":34299,"34299":34300,"34300":34301,"34301":34302,"34302":34303,"34303":34304,"34304":34305,"34305":34306,"34306":34307,"34307":34308,"34308":34309,"34309":34310,"34310":34311,"34311":34312,"34312":34313,"34313":34314,"34314":34315,"34315":34316,"34316":34317,"34317":34318,"34318":34319,"34319":34320,"34320":34321,"34321":34322,"34322":34323,"34323":34324,"34324":34325,"34325":34326,"34326":34327,"34327":34328,"34328":34329,"34329":34330,"34330":34331,"34331":34332,"34332":34333,"34333":34334,"34334":34335,"34335":34336,"34336":34337,"34337":34338,"34338":34339,"34339":34340,"34340":34341,"34341":34342,"34342":34343,"34343":34344,"34344":34345,"34345":34346,"34346":34347,"34347":34348,"34348":34349,"34349":34350,"34350":34351,"34351":34352,"34352":34353,"34353":34354,"34354":34355,"34355":34356,"34356":34357,"34357":34358,"34358":34359,"34359":34360,"34360":34361,"34361":34362,"34362":34363,"34363":34364,"34364":34365,"34365":34366,"34366":34367,"34367":34368,"34368":34369,"34369":34370,"34370":34371,"34371":34372,"34372":34373,"34373":34374,"34374":34375,"34375":34376,"34376":34377,"34377":34378,"34378":34379,"34379":34380,"34380":34381,"34381":34382,"34382":34383,"34383":34384,"34384":34385,"34385":34386,"34386":34387,"34387":34388,"34388":34389,"34389":34390,"34390":34391,"34391":34392,"34392":34393,"34393":34394,"34394":34395,"34395":34396,"34396":34397,"34397":34398,"34398":34399,"34399":34400,"34400":34401,"34401":34402,"34402":34403,"34403":34404,"34404":34405,"34405":34406,"34406":34407,"34407":34408,"34408":34409,"34409":34410,"34410":34411,"34411":34412,"34412":34413,"34413":34414,"34414":34415,"34415":34416,"34416":34417,"34417":34418,"34418":34419,"34419":34420,"34420":34421,"34421":34422,"34422":34423,"34423":34424,"34424":34425,"34425":34426,"34426":34427,"34427":34428,"34428":34429,"34429":34430,"34430":34431,"34431":34432,"34432":34433,"34433":34434,"34434":34435,"34435":34436,"34436":34437,"34437":34438,"34438":34439,"34439":34440,"34440":34441,"34441":34442,"34442":34443,"34443":34444,"34444":34445,"34445":34446,"34446":34447,"34447":34448,"34448":34449,"34449":34450,"34450":34451,"34451":34452,"34452":34453,"34453":34454,"34454":34455,"34455":34456,"34456":34457,"34457":34458,"34458":34459,"34459":34460,"34460":34461,"34461":34462,"34462":34463,"34463":34464,"34464":34465,"34465":34466,"34466":34467,"34467":34468,"34468":34469,"34469":34470,"34470":34471,"34471":34472,"34472":34473,"34473":34474,"34474":34475,"34475":34476,"34476":34477,"34477":34478,"34478":34479,"34479":34480,"34480":34481,"34481":34482,"34482":34483,"34483":34484,"34484":34485,"34485":34486,"34486":34487,"34487":34488,"34488":34489,"34489":34490,"34490":34491,"34491":34492,"34492":34493,"34493":34494,"34494":34495,"34495":34496,"34496":34497,"34497":34498,"34498":34499,"34499":34500,"34500":34501,"34501":34502,"34502":34503,"34503":34504,"34504":34505,"34505":34506,"34506":34507,"34507":34508,"34508":34509,"34509":34510,"34510":34511,"34511":34512,"34512":34513,"34513":34514,"34514":34515,"34515":34516,"34516":34517,"34517":34518,"34518":34519,"34519":34520,"34520":34521,"34521":34522,"34522":34523,"34523":34524,"34524":34525,"34525":34526,"34526":34527,"34527":34528,"34528":34529,"34529":34530,"34530":34531,"34531":34532,"34532":34533,"34533":34534,"34534":34535,"34535":34536,"34536":34537,"34537":34538,"34538":34539,"34539":34540,"34540":34541,"34541":34542,"34542":34543,"34543":34544,"34544":34545,"34545":34546,"34546":34547,"34547":34548,"34548":34549,"34549":34550,"34550":34551,"34551":34552,"34552":34553,"34553":34554,"34554":34555,"34555":34556,"34556":34557,"34557":34558,"34558":34559,"34559":34560,"34560":34561,"34561":34562,"34562":34563,"34563":34564,"34564":34565,"34565":34566,"34566":34567,"34567":34568,"34568":34569,"34569":34570,"34570":34571,"34571":34572,"34572":34573,"34573":34574,"34574":34575,"34575":34576,"34576":34577,"34577":34578,"34578":34579,"34579":34580,"34580":34581,"34581":34582,"34582":34583,"34583":34584,"34584":34585,"34585":34586,"34586":34587,"34587":34588,"34588":34589,"34589":34590,"34590":34591,"34591":34592,"34592":34593,"34593":34594,"34594":34595,"34595":34596,"34596":34597,"34597":34598,"34598":34599,"34599":34600,"34600":34601,"34601":34602,"34602":34603,"34603":34604,"34604":34605,"34605":34606,"34606":34607,"34607":34608,"34608":34609,"34609":34610,"34610":34611,"34611":34612,"34612":34613,"34613":34614,"34614":34615,"34615":34616,"34616":34617,"34617":34618,"34618":34619,"34619":34620,"34620":34621,"34621":34622,"34622":34623,"34623":34624,"34624":34625,"34625":34626,"34626":34627,"34627":34628,"34628":34629,"34629":34630,"34630":34631,"34631":34632,"34632":34633,"34633":34634,"34634":34635,"34635":34636,"34636":34637,"34637":34638,"34638":34639,"34639":34640,"34640":34641,"34641":34642,"34642":34643,"34643":34644,"34644":34645,"34645":34646,"34646":34647,"34647":34648,"34648":34649,"34649":34650,"34650":34651,"34651":34652,"34652":34653,"34653":34654,"34654":34655,"34655":34656,"34656":34657,"34657":34658,"34658":34659,"34659":34660,"34660":34661,"34661":34662,"34662":34663,"34663":34664,"34664":34665,"34665":34666,"34666":34667,"34667":34668,"34668":34669,"34669":34670,"34670":34671,"34671":34672,"34672":34673,"34673":34674,"34674":34675,"34675":34676,"34676":34677,"34677":34678,"34678":34679,"34679":34680,"34680":34681,"34681":34682,"34682":34683,"34683":34684,"34684":34685,"34685":34686,"34686":34687,"34687":34688,"34688":34689,"34689":34690,"34690":34691,"34691":34692,"34692":34693,"34693":34694,"34694":34695,"34695":34696,"34696":34697,"34697":34698,"34698":34699,"34699":34700,"34700":34701,"34701":34702,"34702":34703,"34703":34704,"34704":34705,"34705":34706,"34706":34707,"34707":34708,"34708":34709,"34709":34710,"34710":34711,"34711":34712,"34712":34713,"34713":34714,"34714":34715,"34715":34716,"34716":34717,"34717":34718,"34718":34719,"34719":34720,"34720":34721,"34721":34722,"34722":34723,"34723":34724,"34724":34725,"34725":34726,"34726":34727,"34727":34728,"34728":34729,"34729":34730,"34730":34731,"34731":34732,"34732":34733,"34733":34734,"34734":34735,"34735":34736,"34736":34737,"34737":34738,"34738":34739,"34739":34740,"34740":34741,"34741":34742,"34742":34743,"34743":34744,"34744":34745,"34745":34746,"34746":34747,"34747":34748,"34748":34749,"34749":34750,"34750":34751,"34751":34752,"34752":34753,"34753":34754,"34754":34755,"34755":34756,"34756":34757,"34757":34758,"34758":34759,"34759":34760,"34760":34761,"34761":34762,"34762":34763,"34763":34764,"34764":34765,"34765":34766,"34766":34767,"34767":34768,"34768":34769,"34769":34770,"34770":34771,"34771":34772,"34772":34773,"34773":34774,"34774":34775,"34775":34776,"34776":34777,"34777":34778,"34778":34779,"34779":34780,"34780":34781,"34781":34782,"34782":34783,"34783":34784,"34784":34785,"34785":34786,"34786":34787,"34787":34788,"34788":34789,"34789":34790,"34790":34791,"34791":34792,"34792":34793,"34793":34794,"34794":34795,"34795":34796,"34796":34797,"34797":34798,"34798":34799,"34799":34800,"34800":34801,"34801":34802,"34802":34803,"34803":34804,"34804":34805,"34805":34806,"34806":34807,"34807":34808,"34808":34809,"34809":34810,"34810":34811,"34811":34812,"34812":34813,"34813":34814,"34814":34815,"34815":34816,"34816":34817,"34817":34818,"34818":34819,"34819":34820,"34820":34821,"34821":34822,"34822":34823,"34823":34824,"34824":34825,"34825":34826,"34826":34827,"34827":34828,"34828":34829,"34829":34830,"34830":34831,"34831":34832,"34832":34833,"34833":34834,"34834":34835,"34835":34836,"34836":34837,"34837":34838,"34838":34839,"34839":34840,"34840":34841,"34841":34842,"34842":34843,"34843":34844,"34844":34845,"34845":34846,"34846":34847,"34847":34848,"34848":34849,"34849":34850,"34850":34851,"34851":34852,"34852":34853,"34853":34854,"34854":34855,"34855":34856,"34856":34857,"34857":34858,"34858":34859,"34859":34860,"34860":34861,"34861":34862,"34862":34863,"34863":34864,"34864":34865,"34865":34866,"34866":34867,"34867":34868,"34868":34869,"34869":34870,"34870":34871,"34871":34872,"34872":34873,"34873":34874,"34874":34875,"34875":34876,"34876":34877,"34877":34878,"34878":34879,"34879":34880,"34880":34881,"34881":34882,"34882":34883,"34883":34884,"34884":34885,"34885":34886,"34886":34887,"34887":34888,"34888":34889,"34889":34890,"34890":34891,"34891":34892,"34892":34893,"34893":34894,"34894":34895,"34895":34896,"34896":34897,"34897":34898,"34898":34899,"34899":34900,"34900":34901,"34901":34902,"34902":34903,"34903":34904,"34904":34905,"34905":34906,"34906":34907,"34907":34908,"34908":34909,"34909":34910,"34910":34911,"34911":34912,"34912":34913,"34913":34914,"34914":34915,"34915":34916,"34916":34917,"34917":34918,"34918":34919,"34919":34920,"34920":34921,"34921":34922,"34922":34923,"34923":34924,"34924":34925,"34925":34926,"34926":34927,"34927":34928,"34928":34929,"34929":34930,"34930":34931,"34931":34932,"34932":34933,"34933":34934,"34934":34935,"34935":34936,"34936":34937,"34937":34938,"34938":34939,"34939":34940,"34940":34941,"34941":34942,"34942":34943,"34943":34944,"34944":34945,"34945":34946,"34946":34947,"34947":34948,"34948":34949,"34949":34950,"34950":34951,"34951":34952,"34952":34953,"34953":34954,"34954":34955,"34955":34956,"34956":34957,"34957":34958,"34958":34959,"34959":34960,"34960":34961,"34961":34962,"34962":34963,"34963":34964,"34964":34965,"34965":34966,"34966":34967,"34967":34968,"34968":34969,"34969":34970,"34970":34971,"34971":34972,"34972":34973,"34973":34974,"34974":34975,"34975":34976,"34976":34977,"34977":34978,"34978":34979,"34979":34980,"34980":34981,"34981":34982,"34982":34983,"34983":34984,"34984":34985,"34985":34986,"34986":34987,"34987":34988,"34988":34989,"34989":34990,"34990":34991,"34991":34992,"34992":34993,"34993":34994,"34994":34995,"34995":34996,"34996":34997,"34997":34998,"34998":34999,"34999":35000,"35000":35001,"35001":35002,"35002":35003,"35003":35004,"35004":35005,"35005":35006,"35006":35007,"35007":35008,"35008":35009,"35009":35010,"35010":35011,"35011":35012,"35012":35013,"35013":35014,"35014":35015,"35015":35016,"35016":35017,"35017":35018,"35018":35019,"35019":35020,"35020":35021,"35021":35022,"35022":35023,"35023":35024,"35024":35025,"35025":35026,"35026":35027,"35027":35028,"35028":35029,"35029":35030,"35030":35031,"35031":35032,"35032":35033,"35033":35034,"35034":35035,"35035":35036,"35036":35037,"35037":35038,"35038":35039,"35039":35040,"35040":35041,"35041":35042,"35042":35043,"35043":35044,"35044":35045,"35045":35046,"35046":35047,"35047":35048,"35048":35049,"35049":35050,"35050":35051,"35051":35052,"35052":35053,"35053":35054,"35054":35055,"35055":35056,"35056":35057,"35057":35058,"35058":35059,"35059":35060,"35060":35061,"35061":35062,"35062":35063,"35063":35064,"35064":35065,"35065":35066,"35066":35067,"35067":35068,"35068":35069,"35069":35070,"35070":35071,"35071":35072,"35072":35073,"35073":35074,"35074":35075,"35075":35076,"35076":35077,"35077":35078,"35078":35079,"35079":35080,"35080":35081,"35081":35082,"35082":35083,"35083":35084,"35084":35085,"35085":35086,"35086":35087,"35087":35088,"35088":35089,"35089":35090,"35090":35091,"35091":35092,"35092":35093,"35093":35094,"35094":35095,"35095":35096,"35096":35097,"35097":35098,"35098":35099,"35099":35100,"35100":35101,"35101":35102,"35102":35103,"35103":35104,"35104":35105,"35105":35106,"35106":35107,"35107":35108,"35108":35109,"35109":35110,"35110":35111,"35111":35112,"35112":35113,"35113":35114,"35114":35115,"35115":35116,"35116":35117,"35117":35118,"35118":35119,"35119":35120,"35120":35121,"35121":35122,"35122":35123,"35123":35124,"35124":35125,"35125":35126,"35126":35127,"35127":35128,"35128":35129,"35129":35130,"35130":35131,"35131":35132,"35132":35133,"35133":35134,"35134":35135,"35135":35136,"35136":35137,"35137":35138,"35138":35139,"35139":35140,"35140":35141,"35141":35142,"35142":35143,"35143":35144,"35144":35145,"35145":35146,"35146":35147,"35147":35148,"35148":35149,"35149":35150,"35150":35151,"35151":35152,"35152":35153,"35153":35154,"35154":35155,"35155":35156,"35156":35157,"35157":35158,"35158":35159,"35159":35160,"35160":35161,"35161":35162,"35162":35163,"35163":35164,"35164":35165,"35165":35166,"35166":35167,"35167":35168,"35168":35169,"35169":35170,"35170":35171,"35171":35172,"35172":35173,"35173":35174,"35174":35175,"35175":35176,"35176":35177,"35177":35178,"35178":35179,"35179":35180,"35180":35181,"35181":35182,"35182":35183,"35183":35184,"35184":35185,"35185":35186,"35186":35187,"35187":35188,"35188":35189,"35189":35190,"35190":35191,"35191":35192,"35192":35193,"35193":35194,"35194":35195,"35195":35196,"35196":35197,"35197":35198,"35198":35199,"35199":35200,"35200":35201,"35201":35202,"35202":35203,"35203":35204,"35204":35205,"35205":35206,"35206":35207,"35207":35208,"35208":35209,"35209":35210,"35210":35211,"35211":35212,"35212":35213,"35213":35214,"35214":35215,"35215":35216,"35216":35217,"35217":35218,"35218":35219,"35219":35220,"35220":35221,"35221":35222,"35222":35223,"35223":35224,"35224":35225,"35225":35226,"35226":35227,"35227":35228,"35228":35229,"35229":35230,"35230":35231,"35231":35232,"35232":35233,"35233":35234,"35234":35235,"35235":35236,"35236":35237,"35237":35238,"35238":35239,"35239":35240,"35240":35241,"35241":35242,"35242":35243,"35243":35244,"35244":35245,"35245":35246,"35246":35247,"35247":35248,"35248":35249,"35249":35250,"35250":35251,"35251":35252,"35252":35253,"35253":35254,"35254":35255,"35255":35256,"35256":35257,"35257":35258,"35258":35259,"35259":35260,"35260":35261,"35261":35262,"35262":35263,"35263":35264,"35264":35265,"35265":35266,"35266":35267,"35267":35268,"35268":35269,"35269":35270,"35270":35271,"35271":35272,"35272":35273,"35273":35274,"35274":35275,"35275":35276,"35276":35277,"35277":35278,"35278":35279,"35279":35280,"35280":35281,"35281":35282,"35282":35283,"35283":35284,"35284":35285,"35285":35286,"35286":35287,"35287":35288,"35288":35289,"35289":35290,"35290":35291,"35291":35292,"35292":35293,"35293":35294,"35294":35295,"35295":35296,"35296":35297,"35297":35298,"35298":35299,"35299":35300,"35300":35301,"35301":35302,"35302":35303,"35303":35304,"35304":35305,"35305":35306,"35306":35307,"35307":35308,"35308":35309,"35309":35310,"35310":35311,"35311":35312,"35312":35313,"35313":35314,"35314":35315,"35315":35316,"35316":35317,"35317":35318,"35318":35319,"35319":35320,"35320":35321,"35321":35322,"35322":35323,"35323":35324,"35324":35325,"35325":35326,"35326":35327,"35327":35328,"35328":35329,"35329":35330,"35330":35331,"35331":35332,"35332":35333,"35333":35334,"35334":35335,"35335":35336,"35336":35337,"35337":35338,"35338":35339,"35339":35340,"35340":35341,"35341":35342,"35342":35343,"35343":35344,"35344":35345,"35345":35346,"35346":35347,"35347":35348,"35348":35349,"35349":35350,"35350":35351,"35351":35352,"35352":35353,"35353":35354,"35354":35355,"35355":35356,"35356":35357,"35357":35358,"35358":35359,"35359":35360,"35360":35361,"35361":35362,"35362":35363,"35363":35364,"35364":35365,"35365":35366,"35366":35367,"35367":35368,"35368":35369,"35369":35370,"35370":35371,"35371":35372,"35372":35373,"35373":35374,"35374":35375,"35375":35376,"35376":35377,"35377":35378,"35378":35379,"35379":35380,"35380":35381,"35381":35382,"35382":35383,"35383":35384,"35384":35385,"35385":35386,"35386":35387,"35387":35388,"35388":35389,"35389":35390,"35390":35391,"35391":35392,"35392":35393,"35393":35394,"35394":35395,"35395":35396,"35396":35397,"35397":35398,"35398":35399,"35399":35400,"35400":35401,"35401":35402,"35402":35403,"35403":35404,"35404":35405,"35405":35406,"35406":35407,"35407":35408,"35408":35409,"35409":35410,"35410":35411,"35411":35412,"35412":35413,"35413":35414,"35414":35415,"35415":35416,"35416":35417,"35417":35418,"35418":35419,"35419":35420,"35420":35421,"35421":35422,"35422":35423,"35423":35424,"35424":35425,"35425":35426,"35426":35427,"35427":35428,"35428":35429,"35429":35430,"35430":35431,"35431":35432,"35432":35433,"35433":35434,"35434":35435,"35435":35436,"35436":35437,"35437":35438,"35438":35439,"35439":35440,"35440":35441,"35441":35442,"35442":35443,"35443":35444,"35444":35445,"35445":35446,"35446":35447,"35447":35448,"35448":35449,"35449":35450,"35450":35451,"35451":35452,"35452":35453,"35453":35454,"35454":35455,"35455":35456,"35456":35457,"35457":35458,"35458":35459,"35459":35460,"35460":35461,"35461":35462,"35462":35463,"35463":35464,"35464":35465,"35465":35466,"35466":35467,"35467":35468,"35468":35469,"35469":35470,"35470":35471,"35471":35472,"35472":35473,"35473":35474,"35474":35475,"35475":35476,"35476":35477,"35477":35478,"35478":35479,"35479":35480,"35480":35481,"35481":35482,"35482":35483,"35483":35484,"35484":35485,"35485":35486,"35486":35487,"35487":35488,"35488":35489,"35489":35490,"35490":35491,"35491":35492,"35492":35493,"35493":35494,"35494":35495,"35495":35496,"35496":35497,"35497":35498,"35498":35499,"35499":35500,"35500":35501,"35501":35502,"35502":35503,"35503":35504,"35504":35505,"35505":35506,"35506":35507,"35507":35508,"35508":35509,"35509":35510,"35510":35511,"35511":35512,"35512":35513,"35513":35514,"35514":35515,"35515":35516,"35516":35517,"35517":35518,"35518":35519,"35519":35520,"35520":35521,"35521":35522,"35522":35523,"35523":35524,"35524":35525,"35525":35526,"35526":35527,"35527":35528,"35528":35529,"35529":35530,"35530":35531,"35531":35532,"35532":35533,"35533":35534,"35534":35535,"35535":35536,"35536":35537,"35537":35538,"35538":35539,"35539":35540,"35540":35541,"35541":35542,"35542":35543,"35543":35544,"35544":35545,"35545":35546,"35546":35547,"35547":35548,"35548":35549,"35549":35550,"35550":35551,"35551":35552,"35552":35553,"35553":35554,"35554":35555,"35555":35556,"35556":35557,"35557":35558,"35558":35559,"35559":35560,"35560":35561,"35561":35562,"35562":35563,"35563":35564,"35564":35565,"35565":35566,"35566":35567,"35567":35568,"35568":35569,"35569":35570,"35570":35571,"35571":35572,"35572":35573,"35573":35574,"35574":35575,"35575":35576,"35576":35577,"35577":35578,"35578":35579,"35579":35580,"35580":35581,"35581":35582,"35582":35583,"35583":35584,"35584":35585,"35585":35586,"35586":35587,"35587":35588,"35588":35589,"35589":35590,"35590":35591,"35591":35592,"35592":35593,"35593":35594,"35594":35595,"35595":35596,"35596":35597,"35597":35598,"35598":35599,"35599":35600,"35600":35601,"35601":35602,"35602":35603,"35603":35604,"35604":35605,"35605":35606,"35606":35607,"35607":35608,"35608":35609,"35609":35610,"35610":35611,"35611":35612,"35612":35613,"35613":35614,"35614":35615,"35615":35616,"35616":35617,"35617":35618,"35618":35619,"35619":35620,"35620":35621,"35621":35622,"35622":35623,"35623":35624,"35624":35625,"35625":35626,"35626":35627,"35627":35628,"35628":35629,"35629":35630,"35630":35631,"35631":35632,"35632":35633,"35633":35634,"35634":35635,"35635":35636,"35636":35637,"35637":35638,"35638":35639,"35639":35640,"35640":35641,"35641":35642,"35642":35643,"35643":35644,"35644":35645,"35645":35646,"35646":35647,"35647":35648,"35648":35649,"35649":35650,"35650":35651,"35651":35652,"35652":35653,"35653":35654,"35654":35655,"35655":35656,"35656":35657,"35657":35658,"35658":35659,"35659":35660,"35660":35661,"35661":35662,"35662":35663,"35663":35664,"35664":35665,"35665":35666,"35666":35667,"35667":35668,"35668":35669,"35669":35670,"35670":35671,"35671":35672,"35672":35673,"35673":35674,"35674":35675,"35675":35676,"35676":35677,"35677":35678,"35678":35679,"35679":35680,"35680":35681,"35681":35682,"35682":35683,"35683":35684,"35684":35685,"35685":35686,"35686":35687,"35687":35688,"35688":35689,"35689":35690,"35690":35691,"35691":35692,"35692":35693,"35693":35694,"35694":35695,"35695":35696,"35696":35697,"35697":35698,"35698":35699,"35699":35700,"35700":35701,"35701":35702,"35702":35703,"35703":35704,"35704":35705,"35705":35706,"35706":35707,"35707":35708,"35708":35709,"35709":35710,"35710":35711,"35711":35712,"35712":35713,"35713":35714,"35714":35715,"35715":35716,"35716":35717,"35717":35718,"35718":35719,"35719":35720,"35720":35721,"35721":35722,"35722":35723,"35723":35724,"35724":35725,"35725":35726,"35726":35727,"35727":35728,"35728":35729,"35729":35730,"35730":35731,"35731":35732,"35732":35733,"35733":35734,"35734":35735,"35735":35736,"35736":35737,"35737":35738,"35738":35739,"35739":35740,"35740":35741,"35741":35742,"35742":35743,"35743":35744,"35744":35745,"35745":35746,"35746":35747,"35747":35748,"35748":35749,"35749":35750,"35750":35751,"35751":35752,"35752":35753,"35753":35754,"35754":35755,"35755":35756,"35756":35757,"35757":35758,"35758":35759,"35759":35760,"35760":35761,"35761":35762,"35762":35763,"35763":35764,"35764":35765,"35765":35766,"35766":35767,"35767":35768,"35768":35769,"35769":35770,"35770":35771,"35771":35772,"35772":35773,"35773":35774,"35774":35775,"35775":35776,"35776":35777,"35777":35778,"35778":35779,"35779":35780,"35780":35781,"35781":35782,"35782":35783,"35783":35784,"35784":35785,"35785":35786,"35786":35787,"35787":35788,"35788":35789,"35789":35790,"35790":35791,"35791":35792,"35792":35793,"35793":35794,"35794":35795,"35795":35796,"35796":35797,"35797":35798,"35798":35799,"35799":35800,"35800":35801,"35801":35802,"35802":35803,"35803":35804,"35804":35805,"35805":35806,"35806":35807,"35807":35808,"35808":35809,"35809":35810,"35810":35811,"35811":35812,"35812":35813,"35813":35814,"35814":35815,"35815":35816,"35816":35817,"35817":35818,"35818":35819,"35819":35820,"35820":35821,"35821":35822,"35822":35823,"35823":35824,"35824":35825,"35825":35826,"35826":35827,"35827":35828,"35828":35829,"35829":35830,"35830":35831,"35831":35832,"35832":35833,"35833":35834,"35834":35835,"35835":35836,"35836":35837,"35837":35838,"35838":35839,"35839":35840,"35840":35841,"35841":35842,"35842":35843,"35843":35844,"35844":35845,"35845":35846,"35846":35847,"35847":35848,"35848":35849,"35849":35850,"35850":35851,"35851":35852,"35852":35853,"35853":35854,"35854":35855,"35855":35856,"35856":35857,"35857":35858,"35858":35859,"35859":35860,"35860":35861,"35861":35862,"35862":35863,"35863":35864,"35864":35865,"35865":35866,"35866":35867,"35867":35868,"35868":35869,"35869":35870,"35870":35871,"35871":35872,"35872":35873,"35873":35874,"35874":35875,"35875":35876,"35876":35877,"35877":35878,"35878":35879,"35879":35880,"35880":35881,"35881":35882,"35882":35883,"35883":35884,"35884":35885,"35885":35886,"35886":35887,"35887":35888,"35888":35889,"35889":35890,"35890":35891,"35891":35892,"35892":35893,"35893":35894,"35894":35895,"35895":35896,"35896":35897,"35897":35898,"35898":35899,"35899":35900,"35900":35901,"35901":35902,"35902":35903,"35903":35904,"35904":35905,"35905":35906,"35906":35907,"35907":35908,"35908":35909,"35909":35910,"35910":35911,"35911":35912,"35912":35913,"35913":35914,"35914":35915,"35915":35916,"35916":35917,"35917":35918,"35918":35919,"35919":35920,"35920":35921,"35921":35922,"35922":35923,"35923":35924,"35924":35925,"35925":35926,"35926":35927,"35927":35928,"35928":35929,"35929":35930,"35930":35931,"35931":35932,"35932":35933,"35933":35934,"35934":35935,"35935":35936,"35936":35937,"35937":35938,"35938":35939,"35939":35940,"35940":35941,"35941":35942,"35942":35943,"35943":35944,"35944":35945,"35945":35946,"35946":35947,"35947":35948,"35948":35949,"35949":35950,"35950":35951,"35951":35952,"35952":35953,"35953":35954,"35954":35955,"35955":35956,"35956":35957,"35957":35958,"35958":35959,"35959":35960,"35960":35961,"35961":35962,"35962":35963,"35963":35964,"35964":35965,"35965":35966,"35966":35967,"35967":35968,"35968":35969,"35969":35970,"35970":35971,"35971":35972,"35972":35973,"35973":35974,"35974":35975,"35975":35976,"35976":35977,"35977":35978,"35978":35979,"35979":35980,"35980":35981,"35981":35982,"35982":35983,"35983":35984,"35984":35985,"35985":35986,"35986":35987,"35987":35988,"35988":35989,"35989":35990,"35990":35991,"35991":35992,"35992":35993,"35993":35994,"35994":35995,"35995":35996,"35996":35997,"35997":35998,"35998":35999,"35999":36000,"36000":36001,"36001":36002,"36002":36003,"36003":36004,"36004":36005,"36005":36006,"36006":36007,"36007":36008,"36008":36009,"36009":36010,"36010":36011,"36011":36012,"36012":36013,"36013":36014,"36014":36015,"36015":36016,"36016":36017,"36017":36018,"36018":36019,"36019":36020,"36020":36021,"36021":36022,"36022":36023,"36023":36024,"36024":36025,"36025":36026,"36026":36027,"36027":36028,"36028":36029,"36029":36030,"36030":36031,"36031":36032,"36032":36033,"36033":36034,"36034":36035,"36035":36036,"36036":36037,"36037":36038,"36038":36039,"36039":36040,"36040":36041,"36041":36042,"36042":36043,"36043":36044,"36044":36045,"36045":36046,"36046":36047,"36047":36048,"36048":36049,"36049":36050,"36050":36051,"36051":36052,"36052":36053,"36053":36054,"36054":36055,"36055":36056,"36056":36057,"36057":36058,"36058":36059,"36059":36060,"36060":36061,"36061":36062,"36062":36063,"36063":36064,"36064":36065,"36065":36066,"36066":36067,"36067":36068,"36068":36069,"36069":36070,"36070":36071,"36071":36072,"36072":36073,"36073":36074,"36074":36075,"36075":36076,"36076":36077,"36077":36078,"36078":36079,"36079":36080,"36080":36081,"36081":36082,"36082":36083,"36083":36084,"36084":36085,"36085":36086,"36086":36087,"36087":36088,"36088":36089,"36089":36090,"36090":36091,"36091":36092,"36092":36093,"36093":36094,"36094":36095,"36095":36096,"36096":36097,"36097":36098,"36098":36099,"36099":36100,"36100":36101,"36101":36102,"36102":36103,"36103":36104,"36104":36105,"36105":36106,"36106":36107,"36107":36108,"36108":36109,"36109":36110,"36110":36111,"36111":36112,"36112":36113,"36113":36114,"36114":36115,"36115":36116,"36116":36117,"36117":36118,"36118":36119,"36119":36120,"36120":36121,"36121":36122,"36122":36123,"36123":36124,"36124":36125,"36125":36126,"36126":36127,"36127":36128,"36128":36129,"36129":36130,"36130":36131,"36131":36132,"36132":36133,"36133":36134,"36134":36135,"36135":36136,"36136":36137,"36137":36138,"36138":36139,"36139":36140,"36140":36141,"36141":36142,"36142":36143,"36143":36144,"36144":36145,"36145":36146,"36146":36147,"36147":36148,"36148":36149,"36149":36150,"36150":36151,"36151":36152,"36152":36153,"36153":36154,"36154":36155,"36155":36156,"36156":36157,"36157":36158,"36158":36159,"36159":36160,"36160":36161,"36161":36162,"36162":36163,"36163":36164,"36164":36165,"36165":36166,"36166":36167,"36167":36168,"36168":36169,"36169":36170,"36170":36171,"36171":36172,"36172":36173,"36173":36174,"36174":36175,"36175":36176,"36176":36177,"36177":36178,"36178":36179,"36179":36180,"36180":36181,"36181":36182,"36182":36183,"36183":36184,"36184":36185,"36185":36186,"36186":36187,"36187":36188,"36188":36189,"36189":36190,"36190":36191,"36191":36192,"36192":36193,"36193":36194,"36194":36195,"36195":36196,"36196":36197,"36197":36198,"36198":36199,"36199":36200,"36200":36201,"36201":36202,"36202":36203,"36203":36204,"36204":36205,"36205":36206,"36206":36207,"36207":36208,"36208":36209,"36209":36210,"36210":36211,"36211":36212,"36212":36213,"36213":36214,"36214":36215,"36215":36216,"36216":36217,"36217":36218,"36218":36219,"36219":36220,"36220":36221,"36221":36222,"36222":36223,"36223":36224,"36224":36225,"36225":36226,"36226":36227,"36227":36228,"36228":36229,"36229":36230,"36230":36231,"36231":36232,"36232":36233,"36233":36234,"36234":36235,"36235":36236,"36236":36237,"36237":36238,"36238":36239,"36239":36240,"36240":36241,"36241":36242,"36242":36243,"36243":36244,"36244":36245,"36245":36246,"36246":36247,"36247":36248,"36248":36249,"36249":36250,"36250":36251,"36251":36252,"36252":36253,"36253":36254,"36254":36255,"36255":36256,"36256":36257,"36257":36258,"36258":36259,"36259":36260,"36260":36261,"36261":36262,"36262":36263,"36263":36264,"36264":36265,"36265":36266,"36266":36267,"36267":36268,"36268":36269,"36269":36270,"36270":36271,"36271":36272,"36272":36273,"36273":36274,"36274":36275,"36275":36276,"36276":36277,"36277":36278,"36278":36279,"36279":36280,"36280":36281,"36281":36282,"36282":36283,"36283":36284,"36284":36285,"36285":36286,"36286":36287,"36287":36288,"36288":36289,"36289":36290,"36290":36291,"36291":36292,"36292":36293,"36293":36294,"36294":36295,"36295":36296,"36296":36297,"36297":36298,"36298":36299,"36299":36300,"36300":36301,"36301":36302,"36302":36303,"36303":36304,"36304":36305,"36305":36306,"36306":36307,"36307":36308,"36308":36309,"36309":36310,"36310":36311,"36311":36312,"36312":36313,"36313":36314,"36314":36315,"36315":36316,"36316":36317,"36317":36318,"36318":36319,"36319":36320,"36320":36321,"36321":36322,"36322":36323,"36323":36324,"36324":36325,"36325":36326,"36326":36327,"36327":36328,"36328":36329,"36329":36330,"36330":36331,"36331":36332,"36332":36333,"36333":36334,"36334":36335,"36335":36336,"36336":36337,"36337":36338,"36338":36339,"36339":36340,"36340":36341,"36341":36342,"36342":36343,"36343":36344,"36344":36345,"36345":36346,"36346":36347,"36347":36348,"36348":36349,"36349":36350,"36350":36351,"36351":36352,"36352":36353,"36353":36354,"36354":36355,"36355":36356,"36356":36357,"36357":36358,"36358":36359,"36359":36360,"36360":36361,"36361":36362,"36362":36363,"36363":36364,"36364":36365,"36365":36366,"36366":36367,"36367":36368,"36368":36369,"36369":36370,"36370":36371,"36371":36372,"36372":36373,"36373":36374,"36374":36375,"36375":36376,"36376":36377,"36377":36378,"36378":36379,"36379":36380,"36380":36381,"36381":36382,"36382":36383,"36383":36384,"36384":36385,"36385":36386,"36386":36387,"36387":36388,"36388":36389,"36389":36390,"36390":36391,"36391":36392,"36392":36393,"36393":36394,"36394":36395,"36395":36396,"36396":36397,"36397":36398,"36398":36399,"36399":36400,"36400":36401,"36401":36402,"36402":36403,"36403":36404,"36404":36405,"36405":36406,"36406":36407,"36407":36408,"36408":36409,"36409":36410,"36410":36411,"36411":36412,"36412":36413,"36413":36414,"36414":36415,"36415":36416,"36416":36417,"36417":36418,"36418":36419,"36419":36420,"36420":36421,"36421":36422,"36422":36423,"36423":36424,"36424":36425,"36425":36426,"36426":36427,"36427":36428,"36428":36429,"36429":36430,"36430":36431,"36431":36432,"36432":36433,"36433":36434,"36434":36435,"36435":36436,"36436":36437,"36437":36438,"36438":36439,"36439":36440,"36440":36441,"36441":36442,"36442":36443,"36443":36444,"36444":36445,"36445":36446,"36446":36447,"36447":36448,"36448":36449,"36449":36450,"36450":36451,"36451":36452,"36452":36453,"36453":36454,"36454":36455,"36455":36456,"36456":36457,"36457":36458,"36458":36459,"36459":36460,"36460":36461,"36461":36462,"36462":36463,"36463":36464,"36464":36465,"36465":36466,"36466":36467,"36467":36468,"36468":36469,"36469":36470,"36470":36471,"36471":36472,"36472":36473,"36473":36474,"36474":36475,"36475":36476,"36476":36477,"36477":36478,"36478":36479,"36479":36480,"36480":36481,"36481":36482,"36482":36483,"36483":36484,"36484":36485,"36485":36486,"36486":36487,"36487":36488,"36488":36489,"36489":36490,"36490":36491,"36491":36492,"36492":36493,"36493":36494,"36494":36495,"36495":36496,"36496":36497,"36497":36498,"36498":36499,"36499":36500,"36500":36501,"36501":36502,"36502":36503,"36503":36504,"36504":36505,"36505":36506,"36506":36507,"36507":36508,"36508":36509,"36509":36510,"36510":36511,"36511":36512,"36512":36513,"36513":36514,"36514":36515,"36515":36516,"36516":36517,"36517":36518,"36518":36519,"36519":36520,"36520":36521,"36521":36522,"36522":36523,"36523":36524,"36524":36525,"36525":36526,"36526":36527,"36527":36528,"36528":36529,"36529":36530,"36530":36531,"36531":36532,"36532":36533,"36533":36534,"36534":36535,"36535":36536,"36536":36537,"36537":36538,"36538":36539,"36539":36540,"36540":36541,"36541":36542,"36542":36543,"36543":36544,"36544":36545,"36545":36546,"36546":36547,"36547":36548,"36548":36549,"36549":36550,"36550":36551,"36551":36552,"36552":36553,"36553":36554,"36554":36555,"36555":36556,"36556":36557,"36557":36558,"36558":36559,"36559":36560,"36560":36561,"36561":36562,"36562":36563,"36563":36564,"36564":36565,"36565":36566,"36566":36567,"36567":36568,"36568":36569,"36569":36570,"36570":36571,"36571":36572,"36572":36573,"36573":36574,"36574":36575,"36575":36576,"36576":36577,"36577":36578,"36578":36579,"36579":36580,"36580":36581,"36581":36582,"36582":36583,"36583":36584,"36584":36585,"36585":36586,"36586":36587,"36587":36588,"36588":36589,"36589":36590,"36590":36591,"36591":36592,"36592":36593,"36593":36594,"36594":36595,"36595":36596,"36596":36597,"36597":36598,"36598":36599,"36599":36600,"36600":36601,"36601":36602,"36602":36603,"36603":36604,"36604":36605,"36605":36606,"36606":36607,"36607":36608,"36608":36609,"36609":36610,"36610":36611,"36611":36612,"36612":36613,"36613":36614,"36614":36615,"36615":36616,"36616":36617,"36617":36618,"36618":36619,"36619":36620,"36620":36621,"36621":36622,"36622":36623,"36623":36624,"36624":36625,"36625":36626,"36626":36627,"36627":36628,"36628":36629,"36629":36630,"36630":36631,"36631":36632,"36632":36633,"36633":36634,"36634":36635,"36635":36636,"36636":36637,"36637":36638,"36638":36639,"36639":36640,"36640":36641,"36641":36642,"36642":36643,"36643":36644,"36644":36645,"36645":36646,"36646":36647,"36647":36648,"36648":36649,"36649":36650,"36650":36651,"36651":36652,"36652":36653,"36653":36654,"36654":36655,"36655":36656,"36656":36657,"36657":36658,"36658":36659,"36659":36660,"36660":36661,"36661":36662,"36662":36663,"36663":36664,"36664":36665,"36665":36666,"36666":36667,"36667":36668,"36668":36669,"36669":36670,"36670":36671,"36671":36672,"36672":36673,"36673":36674,"36674":36675,"36675":36676,"36676":36677,"36677":36678,"36678":36679,"36679":36680,"36680":36681,"36681":36682,"36682":36683,"36683":36684,"36684":36685,"36685":36686,"36686":36687,"36687":36688,"36688":36689,"36689":36690,"36690":36691,"36691":36692,"36692":36693,"36693":36694,"36694":36695,"36695":36696,"36696":36697,"36697":36698,"36698":36699,"36699":36700,"36700":36701,"36701":36702,"36702":36703,"36703":36704,"36704":36705,"36705":36706,"36706":36707,"36707":36708,"36708":36709,"36709":36710,"36710":36711,"36711":36712,"36712":36713,"36713":36714,"36714":36715,"36715":36716,"36716":36717,"36717":36718,"36718":36719,"36719":36720,"36720":36721,"36721":36722,"36722":36723,"36723":36724,"36724":36725,"36725":36726,"36726":36727,"36727":36728,"36728":36729,"36729":36730,"36730":36731,"36731":36732,"36732":36733,"36733":36734,"36734":36735,"36735":36736,"36736":36737,"36737":36738,"36738":36739,"36739":36740,"36740":36741,"36741":36742,"36742":36743,"36743":36744,"36744":36745,"36745":36746,"36746":36747,"36747":36748,"36748":36749,"36749":36750,"36750":36751,"36751":36752,"36752":36753,"36753":36754,"36754":36755,"36755":36756,"36756":36757,"36757":36758,"36758":36759,"36759":36760,"36760":36761,"36761":36762,"36762":36763,"36763":36764,"36764":36765,"36765":36766,"36766":36767,"36767":36768,"36768":36769,"36769":36770,"36770":36771,"36771":36772,"36772":36773,"36773":36774,"36774":36775,"36775":36776,"36776":36777,"36777":36778,"36778":36779,"36779":36780,"36780":36781,"36781":36782,"36782":36783,"36783":36784,"36784":36785,"36785":36786,"36786":36787,"36787":36788,"36788":36789,"36789":36790,"36790":36791,"36791":36792,"36792":36793,"36793":36794,"36794":36795,"36795":36796,"36796":36797,"36797":36798,"36798":36799,"36799":36800,"36800":36801,"36801":36802,"36802":36803,"36803":36804,"36804":36805,"36805":36806,"36806":36807,"36807":36808,"36808":36809,"36809":36810,"36810":36811,"36811":36812,"36812":36813,"36813":36814,"36814":36815,"36815":36816,"36816":36817,"36817":36818,"36818":36819,"36819":36820,"36820":36821,"36821":36822,"36822":36823,"36823":36824,"36824":36825,"36825":36826,"36826":36827,"36827":36828,"36828":36829,"36829":36830,"36830":36831,"36831":36832,"36832":36833,"36833":36834,"36834":36835,"36835":36836,"36836":36837,"36837":36838,"36838":36839,"36839":36840,"36840":36841,"36841":36842,"36842":36843,"36843":36844,"36844":36845,"36845":36846,"36846":36847,"36847":36848,"36848":36849,"36849":36850,"36850":36851,"36851":36852,"36852":36853,"36853":36854,"36854":36855,"36855":36856,"36856":36857,"36857":36858,"36858":36859,"36859":36860,"36860":36861,"36861":36862,"36862":36863,"36863":36864,"36864":36865,"36865":36866,"36866":36867,"36867":36868,"36868":36869,"36869":36870,"36870":36871,"36871":36872,"36872":36873,"36873":36874,"36874":36875,"36875":36876,"36876":36877,"36877":36878,"36878":36879,"36879":36880,"36880":36881,"36881":36882,"36882":36883,"36883":36884,"36884":36885,"36885":36886,"36886":36887,"36887":36888,"36888":36889,"36889":36890,"36890":36891,"36891":36892,"36892":36893,"36893":36894,"36894":36895,"36895":36896,"36896":36897,"36897":36898,"36898":36899,"36899":36900,"36900":36901,"36901":36902,"36902":36903,"36903":36904,"36904":36905,"36905":36906,"36906":36907,"36907":36908,"36908":36909,"36909":36910,"36910":36911,"36911":36912,"36912":36913,"36913":36914,"36914":36915,"36915":36916,"36916":36917,"36917":36918,"36918":36919,"36919":36920,"36920":36921,"36921":36922,"36922":36923,"36923":36924,"36924":36925,"36925":36926,"36926":36927,"36927":36928,"36928":36929,"36929":36930,"36930":36931,"36931":36932,"36932":36933,"36933":36934,"36934":36935,"36935":36936,"36936":36937,"36937":36938,"36938":36939,"36939":36940,"36940":36941,"36941":36942,"36942":36943,"36943":36944,"36944":36945,"36945":36946,"36946":36947,"36947":36948,"36948":36949,"36949":36950,"36950":36951,"36951":36952,"36952":36953,"36953":36954,"36954":36955,"36955":36956,"36956":36957,"36957":36958,"36958":36959,"36959":36960,"36960":36961,"36961":36962,"36962":36963,"36963":36964,"36964":36965,"36965":36966,"36966":36967,"36967":36968,"36968":36969,"36969":36970,"36970":36971,"36971":36972,"36972":36973,"36973":36974,"36974":36975,"36975":36976,"36976":36977,"36977":36978,"36978":36979,"36979":36980,"36980":36981,"36981":36982,"36982":36983,"36983":36984,"36984":36985,"36985":36986,"36986":36987,"36987":36988,"36988":36989,"36989":36990,"36990":36991,"36991":36992,"36992":36993,"36993":36994,"36994":36995,"36995":36996,"36996":36997,"36997":36998,"36998":36999,"36999":37000,"37000":37001,"37001":37002,"37002":37003,"37003":37004,"37004":37005,"37005":37006,"37006":37007,"37007":37008,"37008":37009,"37009":37010,"37010":37011,"37011":37012,"37012":37013,"37013":37014,"37014":37015,"37015":37016,"37016":37017,"37017":37018,"37018":37019,"37019":37020,"37020":37021,"37021":37022,"37022":37023,"37023":37024,"37024":37025,"37025":37026,"37026":37027,"37027":37028,"37028":37029,"37029":37030,"37030":37031,"37031":37032,"37032":37033,"37033":37034,"37034":37035,"37035":37036,"37036":37037,"37037":37038,"37038":37039,"37039":37040,"37040":37041,"37041":37042,"37042":37043,"37043":37044,"37044":37045,"37045":37046,"37046":37047,"37047":37048,"37048":37049,"37049":37050,"37050":37051,"37051":37052,"37052":37053,"37053":37054,"37054":37055,"37055":37056,"37056":37057,"37057":37058,"37058":37059,"37059":37060,"37060":37061,"37061":37062,"37062":37063,"37063":37064,"37064":37065,"37065":37066,"37066":37067,"37067":37068,"37068":37069,"37069":37070,"37070":37071,"37071":37072,"37072":37073,"37073":37074,"37074":37075,"37075":37076,"37076":37077,"37077":37078,"37078":37079,"37079":37080,"37080":37081,"37081":37082,"37082":37083,"37083":37084,"37084":37085,"37085":37086,"37086":37087,"37087":37088,"37088":37089,"37089":37090,"37090":37091,"37091":37092,"37092":37093,"37093":37094,"37094":37095,"37095":37096,"37096":37097,"37097":37098,"37098":37099,"37099":37100,"37100":37101,"37101":37102,"37102":37103,"37103":37104,"37104":37105,"37105":37106,"37106":37107,"37107":37108,"37108":37109,"37109":37110,"37110":37111,"37111":37112,"37112":37113,"37113":37114,"37114":37115,"37115":37116,"37116":37117,"37117":37118,"37118":37119,"37119":37120,"37120":37121,"37121":37122,"37122":37123,"37123":37124,"37124":37125,"37125":37126,"37126":37127,"37127":37128,"37128":37129,"37129":37130,"37130":37131,"37131":37132,"37132":37133,"37133":37134,"37134":37135,"37135":37136,"37136":37137,"37137":37138,"37138":37139,"37139":37140,"37140":37141,"37141":37142,"37142":37143,"37143":37144,"37144":37145,"37145":37146,"37146":37147,"37147":37148,"37148":37149,"37149":37150,"37150":37151,"37151":37152,"37152":37153,"37153":37154,"37154":37155,"37155":37156,"37156":37157,"37157":37158,"37158":37159,"37159":37160,"37160":37161,"37161":37162,"37162":37163,"37163":37164,"37164":37165,"37165":37166,"37166":37167,"37167":37168,"37168":37169,"37169":37170,"37170":37171,"37171":37172,"37172":37173,"37173":37174,"37174":37175,"37175":37176,"37176":37177,"37177":37178,"37178":37179,"37179":37180,"37180":37181,"37181":37182,"37182":37183,"37183":37184,"37184":37185,"37185":37186,"37186":37187,"37187":37188,"37188":37189,"37189":37190,"37190":37191,"37191":37192,"37192":37193,"37193":37194,"37194":37195,"37195":37196,"37196":37197,"37197":37198,"37198":37199,"37199":37200,"37200":37201,"37201":37202,"37202":37203,"37203":37204,"37204":37205,"37205":37206,"37206":37207,"37207":37208,"37208":37209,"37209":37210,"37210":37211,"37211":37212,"37212":37213,"37213":37214,"37214":37215,"37215":37216,"37216":37217,"37217":37218,"37218":37219,"37219":37220,"37220":37221,"37221":37222,"37222":37223,"37223":37224,"37224":37225,"37225":37226,"37226":37227,"37227":37228,"37228":37229,"37229":37230,"37230":37231,"37231":37232,"37232":37233,"37233":37234,"37234":37235,"37235":37236,"37236":37237,"37237":37238,"37238":37239,"37239":37240,"37240":37241,"37241":37242,"37242":37243,"37243":37244,"37244":37245,"37245":37246,"37246":37247,"37247":37248,"37248":37249,"37249":37250,"37250":37251,"37251":37252,"37252":37253,"37253":37254,"37254":37255,"37255":37256,"37256":37257,"37257":37258,"37258":37259,"37259":37260,"37260":37261,"37261":37262,"37262":37263,"37263":37264,"37264":37265,"37265":37266,"37266":37267,"37267":37268,"37268":37269,"37269":37270,"37270":37271,"37271":37272,"37272":37273,"37273":37274,"37274":37275,"37275":37276,"37276":37277,"37277":37278,"37278":37279,"37279":37280,"37280":37281,"37281":37282,"37282":37283,"37283":37284,"37284":37285,"37285":37286,"37286":37287,"37287":37288,"37288":37289,"37289":37290,"37290":37291,"37291":37292,"37292":37293,"37293":37294,"37294":37295,"37295":37296,"37296":37297,"37297":37298,"37298":37299,"37299":37300,"37300":37301,"37301":37302,"37302":37303,"37303":37304,"37304":37305,"37305":37306,"37306":37307,"37307":37308,"37308":37309,"37309":37310,"37310":37311,"37311":37312,"37312":37313,"37313":37314,"37314":37315,"37315":37316,"37316":37317,"37317":37318,"37318":37319,"37319":37320,"37320":37321,"37321":37322,"37322":37323,"37323":37324,"37324":37325,"37325":37326,"37326":37327,"37327":37328,"37328":37329,"37329":37330,"37330":37331,"37331":37332,"37332":37333,"37333":37334,"37334":37335,"37335":37336,"37336":37337,"37337":37338,"37338":37339,"37339":37340,"37340":37341,"37341":37342,"37342":37343,"37343":37344,"37344":37345,"37345":37346,"37346":37347,"37347":37348,"37348":37349,"37349":37350,"37350":37351,"37351":37352,"37352":37353,"37353":37354,"37354":37355,"37355":37356,"37356":37357,"37357":37358,"37358":37359,"37359":37360,"37360":37361,"37361":37362,"37362":37363,"37363":37364,"37364":37365,"37365":37366,"37366":37367,"37367":37368,"37368":37369,"37369":37370,"37370":37371,"37371":37372,"37372":37373,"37373":37374,"37374":37375,"37375":37376,"37376":37377,"37377":37378,"37378":37379,"37379":37380,"37380":37381,"37381":37382,"37382":37383,"37383":37384,"37384":37385,"37385":37386,"37386":37387,"37387":37388,"37388":37389,"37389":37390,"37390":37391,"37391":37392,"37392":37393,"37393":37394,"37394":37395,"37395":37396,"37396":37397,"37397":37398,"37398":37399,"37399":37400,"37400":37401,"37401":37402,"37402":37403,"37403":37404,"37404":37405,"37405":37406,"37406":37407,"37407":37408,"37408":37409,"37409":37410,"37410":37411,"37411":37412,"37412":37413,"37413":37414,"37414":37415,"37415":37416,"37416":37417,"37417":37418,"37418":37419,"37419":37420,"37420":37421,"37421":37422,"37422":37423,"37423":37424,"37424":37425,"37425":37426,"37426":37427,"37427":37428,"37428":37429,"37429":37430,"37430":37431,"37431":37432,"37432":37433,"37433":37434,"37434":37435,"37435":37436,"37436":37437,"37437":37438,"37438":37439,"37439":37440,"37440":37441,"37441":37442,"37442":37443,"37443":37444,"37444":37445,"37445":37446,"37446":37447,"37447":37448,"37448":37449,"37449":37450,"37450":37451,"37451":37452,"37452":37453,"37453":37454,"37454":37455,"37455":37456,"37456":37457,"37457":37458,"37458":37459,"37459":37460,"37460":37461,"37461":37462,"37462":37463,"37463":37464,"37464":37465,"37465":37466,"37466":37467,"37467":37468,"37468":37469,"37469":37470,"37470":37471,"37471":37472,"37472":37473,"37473":37474,"37474":37475,"37475":37476,"37476":37477,"37477":37478,"37478":37479,"37479":37480,"37480":37481,"37481":37482,"37482":37483,"37483":37484,"37484":37485,"37485":37486,"37486":37487,"37487":37488,"37488":37489,"37489":37490,"37490":37491,"37491":37492,"37492":37493,"37493":37494,"37494":37495,"37495":37496,"37496":37497,"37497":37498,"37498":37499,"37499":37500,"37500":37501,"37501":37502,"37502":37503,"37503":37504,"37504":37505,"37505":37506,"37506":37507,"37507":37508,"37508":37509,"37509":37510,"37510":37511,"37511":37512,"37512":37513,"37513":37514,"37514":37515,"37515":37516,"37516":37517,"37517":37518,"37518":37519,"37519":37520,"37520":37521,"37521":37522,"37522":37523,"37523":37524,"37524":37525,"37525":37526,"37526":37527,"37527":37528,"37528":37529,"37529":37530,"37530":37531,"37531":37532,"37532":37533,"37533":37534,"37534":37535,"37535":37536,"37536":37537,"37537":37538,"37538":37539,"37539":37540,"37540":37541,"37541":37542,"37542":37543,"37543":37544,"37544":37545,"37545":37546,"37546":37547,"37547":37548,"37548":37549,"37549":37550,"37550":37551,"37551":37552,"37552":37553,"37553":37554,"37554":37555,"37555":37556,"37556":37557,"37557":37558,"37558":37559,"37559":37560,"37560":37561,"37561":37562,"37562":37563,"37563":37564,"37564":37565,"37565":37566,"37566":37567,"37567":37568,"37568":37569,"37569":37570,"37570":37571,"37571":37572,"37572":37573,"37573":37574,"37574":37575,"37575":37576,"37576":37577,"37577":37578,"37578":37579,"37579":37580,"37580":37581,"37581":37582,"37582":37583,"37583":37584,"37584":37585,"37585":37586,"37586":37587,"37587":37588,"37588":37589,"37589":37590,"37590":37591,"37591":37592,"37592":37593,"37593":37594,"37594":37595,"37595":37596,"37596":37597,"37597":37598,"37598":37599,"37599":37600,"37600":37601,"37601":37602,"37602":37603,"37603":37604,"37604":37605,"37605":37606,"37606":37607,"37607":37608,"37608":37609,"37609":37610,"37610":37611,"37611":37612,"37612":37613,"37613":37614,"37614":37615,"37615":37616,"37616":37617,"37617":37618,"37618":37619,"37619":37620,"37620":37621,"37621":37622,"37622":37623,"37623":37624,"37624":37625,"37625":37626,"37626":37627,"37627":37628,"37628":37629,"37629":37630,"37630":37631,"37631":37632,"37632":37633,"37633":37634,"37634":37635,"37635":37636,"37636":37637,"37637":37638,"37638":37639,"37639":37640,"37640":37641,"37641":37642,"37642":37643,"37643":37644,"37644":37645,"37645":37646,"37646":37647,"37647":37648,"37648":37649,"37649":37650,"37650":37651,"37651":37652,"37652":37653,"37653":37654,"37654":37655,"37655":37656,"37656":37657,"37657":37658,"37658":37659,"37659":37660,"37660":37661,"37661":37662,"37662":37663,"37663":37664,"37664":37665,"37665":37666,"37666":37667,"37667":37668,"37668":37669,"37669":37670,"37670":37671,"37671":37672,"37672":37673,"37673":37674,"37674":37675,"37675":37676,"37676":37677,"37677":37678,"37678":37679,"37679":37680,"37680":37681,"37681":37682,"37682":37683,"37683":37684,"37684":37685,"37685":37686,"37686":37687,"37687":37688,"37688":37689,"37689":37690,"37690":37691,"37691":37692,"37692":37693,"37693":37694,"37694":37695,"37695":37696,"37696":37697,"37697":37698,"37698":37699,"37699":37700,"37700":37701,"37701":37702,"37702":37703,"37703":37704,"37704":37705,"37705":37706,"37706":37707,"37707":37708,"37708":37709,"37709":37710,"37710":37711,"37711":37712,"37712":37713,"37713":37714,"37714":37715,"37715":37716,"37716":37717,"37717":37718,"37718":37719,"37719":37720,"37720":37721,"37721":37722,"37722":37723,"37723":37724,"37724":37725,"37725":37726,"37726":37727,"37727":37728,"37728":37729,"37729":37730,"37730":37731,"37731":37732,"37732":37733,"37733":37734,"37734":37735,"37735":37736,"37736":37737,"37737":37738,"37738":37739,"37739":37740,"37740":37741,"37741":37742,"37742":37743,"37743":37744,"37744":37745,"37745":37746,"37746":37747,"37747":37748,"37748":37749,"37749":37750,"37750":37751,"37751":37752,"37752":37753,"37753":37754,"37754":37755,"37755":37756,"37756":37757,"37757":37758,"37758":37759,"37759":37760,"37760":37761,"37761":37762,"37762":37763,"37763":37764,"37764":37765,"37765":37766,"37766":37767,"37767":37768,"37768":37769,"37769":37770,"37770":37771,"37771":37772,"37772":37773,"37773":37774,"37774":37775,"37775":37776,"37776":37777,"37777":37778,"37778":37779,"37779":37780,"37780":37781,"37781":37782,"37782":37783,"37783":37784,"37784":37785,"37785":37786,"37786":37787,"37787":37788,"37788":37789,"37789":37790,"37790":37791,"37791":37792,"37792":37793,"37793":37794,"37794":37795,"37795":37796,"37796":37797,"37797":37798,"37798":37799,"37799":37800,"37800":37801,"37801":37802,"37802":37803,"37803":37804,"37804":37805,"37805":37806,"37806":37807,"37807":37808,"37808":37809,"37809":37810,"37810":37811,"37811":37812,"37812":37813,"37813":37814,"37814":37815,"37815":37816,"37816":37817,"37817":37818,"37818":37819,"37819":37820,"37820":37821,"37821":37822,"37822":37823,"37823":37824,"37824":37825,"37825":37826,"37826":37827,"37827":37828,"37828":37829,"37829":37830,"37830":37831,"37831":37832,"37832":37833,"37833":37834,"37834":37835,"37835":37836,"37836":37837,"37837":37838,"37838":37839,"37839":37840,"37840":37841,"37841":37842,"37842":37843,"37843":37844,"37844":37845,"37845":37846,"37846":37847,"37847":37848,"37848":37849,"37849":37850,"37850":37851,"37851":37852,"37852":37853,"37853":37854,"37854":37855,"37855":37856,"37856":37857,"37857":37858,"37858":37859,"37859":37860,"37860":37861,"37861":37862,"37862":37863,"37863":37864,"37864":37865,"37865":37866,"37866":37867,"37867":37868,"37868":37869,"37869":37870,"37870":37871,"37871":37872,"37872":37873,"37873":37874,"37874":37875,"37875":37876,"37876":37877,"37877":37878,"37878":37879,"37879":37880,"37880":37881,"37881":37882,"37882":37883,"37883":37884,"37884":37885,"37885":37886,"37886":37887,"37887":37888,"37888":37889,"37889":37890,"37890":37891,"37891":37892,"37892":37893,"37893":37894,"37894":37895,"37895":37896,"37896":37897,"37897":37898,"37898":37899,"37899":37900,"37900":37901,"37901":37902,"37902":37903,"37903":37904,"37904":37905,"37905":37906,"37906":37907,"37907":37908,"37908":37909,"37909":37910,"37910":37911,"37911":37912,"37912":37913,"37913":37914,"37914":37915,"37915":37916,"37916":37917,"37917":37918,"37918":37919,"37919":37920,"37920":37921,"37921":37922,"37922":37923,"37923":37924,"37924":37925,"37925":37926,"37926":37927,"37927":37928,"37928":37929,"37929":37930,"37930":37931,"37931":37932,"37932":37933,"37933":37934,"37934":37935,"37935":37936,"37936":37937,"37937":37938,"37938":37939,"37939":37940,"37940":37941,"37941":37942,"37942":37943,"37943":37944,"37944":37945,"37945":37946,"37946":37947,"37947":37948,"37948":37949,"37949":37950,"37950":37951,"37951":37952,"37952":37953,"37953":37954,"37954":37955,"37955":37956,"37956":37957,"37957":37958,"37958":37959,"37959":37960,"37960":37961,"37961":37962,"37962":37963,"37963":37964,"37964":37965,"37965":37966,"37966":37967,"37967":37968,"37968":37969,"37969":37970,"37970":37971,"37971":37972,"37972":37973,"37973":37974,"37974":37975,"37975":37976,"37976":37977,"37977":37978,"37978":37979,"37979":37980,"37980":37981,"37981":37982,"37982":37983,"37983":37984,"37984":37985,"37985":37986,"37986":37987,"37987":37988,"37988":37989,"37989":37990,"37990":37991,"37991":37992,"37992":37993,"37993":37994,"37994":37995,"37995":37996,"37996":37997,"37997":37998,"37998":37999,"37999":38000,"38000":38001,"38001":38002,"38002":38003,"38003":38004,"38004":38005,"38005":38006,"38006":38007,"38007":38008,"38008":38009,"38009":38010,"38010":38011,"38011":38012,"38012":38013,"38013":38014,"38014":38015,"38015":38016,"38016":38017,"38017":38018,"38018":38019,"38019":38020,"38020":38021,"38021":38022,"38022":38023,"38023":38024,"38024":38025,"38025":38026,"38026":38027,"38027":38028,"38028":38029,"38029":38030,"38030":38031,"38031":38032,"38032":38033,"38033":38034,"38034":38035,"38035":38036,"38036":38037,"38037":38038,"38038":38039,"38039":38040,"38040":38041,"38041":38042,"38042":38043,"38043":38044,"38044":38045,"38045":38046,"38046":38047,"38047":38048,"38048":38049,"38049":38050,"38050":38051,"38051":38052,"38052":38053,"38053":38054,"38054":38055,"38055":38056,"38056":38057,"38057":38058,"38058":38059,"38059":38060,"38060":38061,"38061":38062,"38062":38063,"38063":38064,"38064":38065,"38065":38066,"38066":38067,"38067":38068,"38068":38069,"38069":38070,"38070":38071,"38071":38072,"38072":38073,"38073":38074,"38074":38075,"38075":38076,"38076":38077,"38077":38078,"38078":38079,"38079":38080,"38080":38081,"38081":38082,"38082":38083,"38083":38084,"38084":38085,"38085":38086,"38086":38087,"38087":38088,"38088":38089,"38089":38090,"38090":38091,"38091":38092,"38092":38093,"38093":38094,"38094":38095,"38095":38096,"38096":38097,"38097":38098,"38098":38099,"38099":38100,"38100":38101,"38101":38102,"38102":38103,"38103":38104,"38104":38105,"38105":38106,"38106":38107,"38107":38108,"38108":38109,"38109":38110,"38110":38111,"38111":38112,"38112":38113,"38113":38114,"38114":38115,"38115":38116,"38116":38117,"38117":38118,"38118":38119,"38119":38120,"38120":38121,"38121":38122,"38122":38123,"38123":38124,"38124":38125,"38125":38126,"38126":38127,"38127":38128,"38128":38129,"38129":38130,"38130":38131,"38131":38132,"38132":38133,"38133":38134,"38134":38135,"38135":38136,"38136":38137,"38137":38138,"38138":38139,"38139":38140,"38140":38141,"38141":38142,"38142":38143,"38143":38144,"38144":38145,"38145":38146,"38146":38147,"38147":38148,"38148":38149,"38149":38150,"38150":38151,"38151":38152,"38152":38153,"38153":38154,"38154":38155,"38155":38156,"38156":38157,"38157":38158,"38158":38159,"38159":38160,"38160":38161,"38161":38162,"38162":38163,"38163":38164,"38164":38165,"38165":38166,"38166":38167,"38167":38168,"38168":38169,"38169":38170,"38170":38171,"38171":38172,"38172":38173,"38173":38174,"38174":38175,"38175":38176,"38176":38177,"38177":38178,"38178":38179,"38179":38180,"38180":38181,"38181":38182,"38182":38183,"38183":38184,"38184":38185,"38185":38186,"38186":38187,"38187":38188,"38188":38189,"38189":38190,"38190":38191,"38191":38192,"38192":38193,"38193":38194,"38194":38195,"38195":38196,"38196":38197,"38197":38198,"38198":38199,"38199":38200,"38200":38201,"38201":38202,"38202":38203,"38203":38204,"38204":38205,"38205":38206,"38206":38207,"38207":38208,"38208":38209,"38209":38210,"38210":38211,"38211":38212,"38212":38213,"38213":38214,"38214":38215,"38215":38216,"38216":38217,"38217":38218,"38218":38219,"38219":38220,"38220":38221,"38221":38222,"38222":38223,"38223":38224,"38224":38225,"38225":38226,"38226":38227,"38227":38228,"38228":38229,"38229":38230,"38230":38231,"38231":38232,"38232":38233,"38233":38234,"38234":38235,"38235":38236,"38236":38237,"38237":38238,"38238":38239,"38239":38240,"38240":38241,"38241":38242,"38242":38243,"38243":38244,"38244":38245,"38245":38246,"38246":38247,"38247":38248,"38248":38249,"38249":38250,"38250":38251,"38251":38252,"38252":38253,"38253":38254,"38254":38255,"38255":38256,"38256":38257,"38257":38258,"38258":38259,"38259":38260,"38260":38261,"38261":38262,"38262":38263,"38263":38264,"38264":38265,"38265":38266,"38266":38267,"38267":38268,"38268":38269,"38269":38270,"38270":38271,"38271":38272,"38272":38273,"38273":38274,"38274":38275,"38275":38276,"38276":38277,"38277":38278,"38278":38279,"38279":38280,"38280":38281,"38281":38282,"38282":38283,"38283":38284,"38284":38285,"38285":38286,"38286":38287,"38287":38288,"38288":38289,"38289":38290,"38290":38291,"38291":38292,"38292":38293,"38293":38294,"38294":38295,"38295":38296,"38296":38297,"38297":38298,"38298":38299,"38299":38300,"38300":38301,"38301":38302,"38302":38303,"38303":38304,"38304":38305,"38305":38306,"38306":38307,"38307":38308,"38308":38309,"38309":38310,"38310":38311,"38311":38312,"38312":38313,"38313":38314,"38314":38315,"38315":38316,"38316":38317,"38317":38318,"38318":38319,"38319":38320,"38320":38321,"38321":38322,"38322":38323,"38323":38324,"38324":38325,"38325":38326,"38326":38327,"38327":38328,"38328":38329,"38329":38330,"38330":38331,"38331":38332,"38332":38333,"38333":38334,"38334":38335,"38335":38336,"38336":38337,"38337":38338,"38338":38339,"38339":38340,"38340":38341,"38341":38342,"38342":38343,"38343":38344,"38344":38345,"38345":38346,"38346":38347,"38347":38348,"38348":38349,"38349":38350,"38350":38351,"38351":38352,"38352":38353,"38353":38354,"38354":38355,"38355":38356,"38356":38357,"38357":38358,"38358":38359,"38359":38360,"38360":38361,"38361":38362,"38362":38363,"38363":38364,"38364":38365,"38365":38366,"38366":38367,"38367":38368,"38368":38369,"38369":38370,"38370":38371,"38371":38372,"38372":38373,"38373":38374,"38374":38375,"38375":38376,"38376":38377,"38377":38378,"38378":38379,"38379":38380,"38380":38381,"38381":38382,"38382":38383,"38383":38384,"38384":38385,"38385":38386,"38386":38387,"38387":38388,"38388":38389,"38389":38390,"38390":38391,"38391":38392,"38392":38393,"38393":38394,"38394":38395,"38395":38396,"38396":38397,"38397":38398,"38398":38399,"38399":38400,"38400":38401,"38401":38402,"38402":38403,"38403":38404,"38404":38405,"38405":38406,"38406":38407,"38407":38408,"38408":38409,"38409":38410,"38410":38411,"38411":38412,"38412":38413,"38413":38414,"38414":38415,"38415":38416,"38416":38417,"38417":38418,"38418":38419,"38419":38420,"38420":38421,"38421":38422,"38422":38423,"38423":38424,"38424":38425,"38425":38426,"38426":38427,"38427":38428,"38428":38429,"38429":38430,"38430":38431,"38431":38432,"38432":38433,"38433":38434,"38434":38435,"38435":38436,"38436":38437,"38437":38438,"38438":38439,"38439":38440,"38440":38441,"38441":38442,"38442":38443,"38443":38444,"38444":38445,"38445":38446,"38446":38447,"38447":38448,"38448":38449,"38449":38450,"38450":38451,"38451":38452,"38452":38453,"38453":38454,"38454":38455,"38455":38456,"38456":38457,"38457":38458,"38458":38459,"38459":38460,"38460":38461,"38461":38462,"38462":38463,"38463":38464,"38464":38465,"38465":38466,"38466":38467,"38467":38468,"38468":38469,"38469":38470,"38470":38471,"38471":38472,"38472":38473,"38473":38474,"38474":38475,"38475":38476,"38476":38477,"38477":38478,"38478":38479,"38479":38480,"38480":38481,"38481":38482,"38482":38483,"38483":38484,"38484":38485,"38485":38486,"38486":38487,"38487":38488,"38488":38489,"38489":38490,"38490":38491,"38491":38492,"38492":38493,"38493":38494,"38494":38495,"38495":38496,"38496":38497,"38497":38498,"38498":38499,"38499":38500,"38500":38501,"38501":38502,"38502":38503,"38503":38504,"38504":38505,"38505":38506,"38506":38507,"38507":38508,"38508":38509,"38509":38510,"38510":38511,"38511":38512,"38512":38513,"38513":38514,"38514":38515,"38515":38516,"38516":38517,"38517":38518,"38518":38519,"38519":38520,"38520":38521,"38521":38522,"38522":38523,"38523":38524,"38524":38525,"38525":38526,"38526":38527,"38527":38528,"38528":38529,"38529":38530,"38530":38531,"38531":38532,"38532":38533,"38533":38534,"38534":38535,"38535":38536,"38536":38537,"38537":38538,"38538":38539,"38539":38540,"38540":38541,"38541":38542,"38542":38543,"38543":38544,"38544":38545,"38545":38546,"38546":38547,"38547":38548,"38548":38549,"38549":38550,"38550":38551,"38551":38552,"38552":38553,"38553":38554,"38554":38555,"38555":38556,"38556":38557,"38557":38558,"38558":38559,"38559":38560,"38560":38561,"38561":38562,"38562":38563,"38563":38564,"38564":38565,"38565":38566,"38566":38567,"38567":38568,"38568":38569,"38569":38570,"38570":38571,"38571":38572,"38572":38573,"38573":38574,"38574":38575,"38575":38576,"38576":38577,"38577":38578,"38578":38579,"38579":38580,"38580":38581,"38581":38582,"38582":38583,"38583":38584,"38584":38585,"38585":38586,"38586":38587,"38587":38588,"38588":38589,"38589":38590,"38590":38591,"38591":38592,"38592":38593,"38593":38594,"38594":38595,"38595":38596,"38596":38597,"38597":38598,"38598":38599,"38599":38600,"38600":38601,"38601":38602,"38602":38603,"38603":38604,"38604":38605,"38605":38606,"38606":38607,"38607":38608,"38608":38609,"38609":38610,"38610":38611,"38611":38612,"38612":38613,"38613":38614,"38614":38615,"38615":38616,"38616":38617,"38617":38618,"38618":38619,"38619":38620,"38620":38621,"38621":38622,"38622":38623,"38623":38624,"38624":38625,"38625":38626,"38626":38627,"38627":38628,"38628":38629,"38629":38630,"38630":38631,"38631":38632,"38632":38633,"38633":38634,"38634":38635,"38635":38636,"38636":38637,"38637":38638,"38638":38639,"38639":38640,"38640":38641,"38641":38642,"38642":38643,"38643":38644,"38644":38645,"38645":38646,"38646":38647,"38647":38648,"38648":38649,"38649":38650,"38650":38651,"38651":38652,"38652":38653,"38653":38654,"38654":38655,"38655":38656,"38656":38657,"38657":38658,"38658":38659,"38659":38660,"38660":38661,"38661":38662,"38662":38663,"38663":38664,"38664":38665,"38665":38666,"38666":38667,"38667":38668,"38668":38669,"38669":38670,"38670":38671,"38671":38672,"38672":38673,"38673":38674,"38674":38675,"38675":38676,"38676":38677,"38677":38678,"38678":38679,"38679":38680,"38680":38681,"38681":38682,"38682":38683,"38683":38684,"38684":38685,"38685":38686,"38686":38687,"38687":38688,"38688":38689,"38689":38690,"38690":38691,"38691":38692,"38692":38693,"38693":38694,"38694":38695,"38695":38696,"38696":38697,"38697":38698,"38698":38699,"38699":38700,"38700":38701,"38701":38702,"38702":38703,"38703":38704,"38704":38705,"38705":38706,"38706":38707,"38707":38708,"38708":38709,"38709":38710,"38710":38711,"38711":38712,"38712":38713,"38713":38714,"38714":38715,"38715":38716,"38716":38717,"38717":38718,"38718":38719,"38719":38720,"38720":38721,"38721":38722,"38722":38723,"38723":38724,"38724":38725,"38725":38726,"38726":38727,"38727":38728,"38728":38729,"38729":38730,"38730":38731,"38731":38732,"38732":38733,"38733":38734,"38734":38735,"38735":38736,"38736":38737,"38737":38738,"38738":38739,"38739":38740,"38740":38741,"38741":38742,"38742":38743,"38743":38744,"38744":38745,"38745":38746,"38746":38747,"38747":38748,"38748":38749,"38749":38750,"38750":38751,"38751":38752,"38752":38753,"38753":38754,"38754":38755,"38755":38756,"38756":38757,"38757":38758,"38758":38759,"38759":38760,"38760":38761,"38761":38762,"38762":38763,"38763":38764,"38764":38765,"38765":38766,"38766":38767,"38767":38768,"38768":38769,"38769":38770,"38770":38771,"38771":38772,"38772":38773,"38773":38774,"38774":38775,"38775":38776,"38776":38777,"38777":38778,"38778":38779,"38779":38780,"38780":38781,"38781":38782,"38782":38783,"38783":38784,"38784":38785,"38785":38786,"38786":38787,"38787":38788,"38788":38789,"38789":38790,"38790":38791,"38791":38792,"38792":38793,"38793":38794,"38794":38795,"38795":38796,"38796":38797,"38797":38798,"38798":38799,"38799":38800,"38800":38801,"38801":38802,"38802":38803,"38803":38804,"38804":38805,"38805":38806,"38806":38807,"38807":38808,"38808":38809,"38809":38810,"38810":38811,"38811":38812,"38812":38813,"38813":38814,"38814":38815,"38815":38816,"38816":38817,"38817":38818,"38818":38819,"38819":38820,"38820":38821,"38821":38822,"38822":38823,"38823":38824,"38824":38825,"38825":38826,"38826":38827,"38827":38828,"38828":38829,"38829":38830,"38830":38831,"38831":38832,"38832":38833,"38833":38834,"38834":38835,"38835":38836,"38836":38837,"38837":38838,"38838":38839,"38839":38840,"38840":38841,"38841":38842,"38842":38843,"38843":38844,"38844":38845,"38845":38846,"38846":38847,"38847":38848,"38848":38849,"38849":38850,"38850":38851,"38851":38852,"38852":38853,"38853":38854,"38854":38855,"38855":38856,"38856":38857,"38857":38858,"38858":38859,"38859":38860,"38860":38861,"38861":38862,"38862":38863,"38863":38864,"38864":38865,"38865":38866,"38866":38867,"38867":38868,"38868":38869,"38869":38870,"38870":38871,"38871":38872,"38872":38873,"38873":38874,"38874":38875,"38875":38876,"38876":38877,"38877":38878,"38878":38879,"38879":38880,"38880":38881,"38881":38882,"38882":38883,"38883":38884,"38884":38885,"38885":38886,"38886":38887,"38887":38888,"38888":38889,"38889":38890,"38890":38891,"38891":38892,"38892":38893,"38893":38894,"38894":38895,"38895":38896,"38896":38897,"38897":38898,"38898":38899,"38899":38900,"38900":38901,"38901":38902,"38902":38903,"38903":38904,"38904":38905,"38905":38906,"38906":38907,"38907":38908,"38908":38909,"38909":38910,"38910":38911,"38911":38912,"38912":38913,"38913":38914,"38914":38915,"38915":38916,"38916":38917,"38917":38918,"38918":38919,"38919":38920,"38920":38921,"38921":38922,"38922":38923,"38923":38924,"38924":38925,"38925":38926,"38926":38927,"38927":38928,"38928":38929,"38929":38930,"38930":38931,"38931":38932,"38932":38933,"38933":38934,"38934":38935,"38935":38936,"38936":38937,"38937":38938,"38938":38939,"38939":38940,"38940":38941,"38941":38942,"38942":38943,"38943":38944,"38944":38945,"38945":38946,"38946":38947,"38947":38948,"38948":38949,"38949":38950,"38950":38951,"38951":38952,"38952":38953,"38953":38954,"38954":38955,"38955":38956,"38956":38957,"38957":38958,"38958":38959,"38959":38960,"38960":38961,"38961":38962,"38962":38963,"38963":38964,"38964":38965,"38965":38966,"38966":38967,"38967":38968,"38968":38969,"38969":38970,"38970":38971,"38971":38972,"38972":38973,"38973":38974,"38974":38975,"38975":38976,"38976":38977,"38977":38978,"38978":38979,"38979":38980,"38980":38981,"38981":38982,"38982":38983,"38983":38984,"38984":38985,"38985":38986,"38986":38987,"38987":38988,"38988":38989,"38989":38990,"38990":38991,"38991":38992,"38992":38993,"38993":38994,"38994":38995,"38995":38996,"38996":38997,"38997":38998,"38998":38999,"38999":39000,"39000":39001,"39001":39002,"39002":39003,"39003":39004,"39004":39005,"39005":39006,"39006":39007,"39007":39008,"39008":39009,"39009":39010,"39010":39011,"39011":39012,"39012":39013,"39013":39014,"39014":39015,"39015":39016,"39016":39017,"39017":39018,"39018":39019,"39019":39020,"39020":39021,"39021":39022,"39022":39023,"39023":39024,"39024":39025,"39025":39026,"39026":39027,"39027":39028,"39028":39029,"39029":39030,"39030":39031,"39031":39032,"39032":39033,"39033":39034,"39034":39035,"39035":39036,"39036":39037,"39037":39038,"39038":39039,"39039":39040,"39040":39041,"39041":39042,"39042":39043,"39043":39044,"39044":39045,"39045":39046,"39046":39047,"39047":39048,"39048":39049,"39049":39050,"39050":39051,"39051":39052,"39052":39053,"39053":39054,"39054":39055,"39055":39056,"39056":39057,"39057":39058,"39058":39059,"39059":39060,"39060":39061,"39061":39062,"39062":39063,"39063":39064,"39064":39065,"39065":39066,"39066":39067,"39067":39068,"39068":39069,"39069":39070,"39070":39071,"39071":39072,"39072":39073,"39073":39074,"39074":39075,"39075":39076,"39076":39077,"39077":39078,"39078":39079,"39079":39080,"39080":39081,"39081":39082,"39082":39083,"39083":39084,"39084":39085,"39085":39086,"39086":39087,"39087":39088,"39088":39089,"39089":39090,"39090":39091,"39091":39092,"39092":39093,"39093":39094,"39094":39095,"39095":39096,"39096":39097,"39097":39098,"39098":39099,"39099":39100,"39100":39101,"39101":39102,"39102":39103,"39103":39104,"39104":39105,"39105":39106,"39106":39107,"39107":39108,"39108":39109,"39109":39110,"39110":39111,"39111":39112,"39112":39113,"39113":39114,"39114":39115,"39115":39116,"39116":39117,"39117":39118,"39118":39119,"39119":39120,"39120":39121,"39121":39122,"39122":39123,"39123":39124,"39124":39125,"39125":39126,"39126":39127,"39127":39128,"39128":39129,"39129":39130,"39130":39131,"39131":39132,"39132":39133,"39133":39134,"39134":39135,"39135":39136,"39136":39137,"39137":39138,"39138":39139,"39139":39140,"39140":39141,"39141":39142,"39142":39143,"39143":39144,"39144":39145,"39145":39146,"39146":39147,"39147":39148,"39148":39149,"39149":39150,"39150":39151,"39151":39152,"39152":39153,"39153":39154,"39154":39155,"39155":39156,"39156":39157,"39157":39158,"39158":39159,"39159":39160,"39160":39161,"39161":39162,"39162":39163,"39163":39164,"39164":39165,"39165":39166,"39166":39167,"39167":39168,"39168":39169,"39169":39170,"39170":39171,"39171":39172,"39172":39173,"39173":39174,"39174":39175,"39175":39176,"39176":39177,"39177":39178,"39178":39179,"39179":39180,"39180":39181,"39181":39182,"39182":39183,"39183":39184,"39184":39185,"39185":39186,"39186":39187,"39187":39188,"39188":39189,"39189":39190,"39190":39191,"39191":39192,"39192":39193,"39193":39194,"39194":39195,"39195":39196,"39196":39197,"39197":39198,"39198":39199,"39199":39200,"39200":39201,"39201":39202,"39202":39203,"39203":39204,"39204":39205,"39205":39206,"39206":39207,"39207":39208,"39208":39209,"39209":39210,"39210":39211,"39211":39212,"39212":39213,"39213":39214,"39214":39215,"39215":39216,"39216":39217,"39217":39218,"39218":39219,"39219":39220,"39220":39221,"39221":39222,"39222":39223,"39223":39224,"39224":39225,"39225":39226,"39226":39227,"39227":39228,"39228":39229,"39229":39230,"39230":39231,"39231":39232,"39232":39233,"39233":39234,"39234":39235,"39235":39236,"39236":39237,"39237":39238,"39238":39239,"39239":39240,"39240":39241,"39241":39242,"39242":39243,"39243":39244,"39244":39245,"39245":39246,"39246":39247,"39247":39248,"39248":39249,"39249":39250,"39250":39251,"39251":39252,"39252":39253,"39253":39254,"39254":39255,"39255":39256,"39256":39257,"39257":39258,"39258":39259,"39259":39260,"39260":39261,"39261":39262,"39262":39263,"39263":39264,"39264":39265,"39265":39266,"39266":39267,"39267":39268,"39268":39269,"39269":39270,"39270":39271,"39271":39272,"39272":39273,"39273":39274,"39274":39275,"39275":39276,"39276":39277,"39277":39278,"39278":39279,"39279":39280,"39280":39281,"39281":39282,"39282":39283,"39283":39284,"39284":39285,"39285":39286,"39286":39287,"39287":39288,"39288":39289,"39289":39290,"39290":39291,"39291":39292,"39292":39293,"39293":39294,"39294":39295,"39295":39296,"39296":39297,"39297":39298,"39298":39299,"39299":39300,"39300":39301,"39301":39302,"39302":39303,"39303":39304,"39304":39305,"39305":39306,"39306":39307,"39307":39308,"39308":39309,"39309":39310,"39310":39311,"39311":39312,"39312":39313,"39313":39314,"39314":39315,"39315":39316,"39316":39317,"39317":39318,"39318":39319,"39319":39320,"39320":39321,"39321":39322,"39322":39323,"39323":39324,"39324":39325,"39325":39326,"39326":39327,"39327":39328,"39328":39329,"39329":39330,"39330":39331,"39331":39332,"39332":39333,"39333":39334,"39334":39335,"39335":39336,"39336":39337,"39337":39338,"39338":39339,"39339":39340,"39340":39341,"39341":39342,"39342":39343,"39343":39344,"39344":39345,"39345":39346,"39346":39347,"39347":39348,"39348":39349,"39349":39350,"39350":39351,"39351":39352,"39352":39353,"39353":39354,"39354":39355,"39355":39356,"39356":39357,"39357":39358,"39358":39359,"39359":39360,"39360":39361,"39361":39362,"39362":39363,"39363":39364,"39364":39365,"39365":39366,"39366":39367,"39367":39368,"39368":39369,"39369":39370,"39370":39371,"39371":39372,"39372":39373,"39373":39374,"39374":39375,"39375":39376,"39376":39377,"39377":39378,"39378":39379,"39379":39380,"39380":39381,"39381":39382,"39382":39383,"39383":39384,"39384":39385,"39385":39386,"39386":39387,"39387":39388,"39388":39389,"39389":39390,"39390":39391,"39391":39392,"39392":39393,"39393":39394,"39394":39395,"39395":39396,"39396":39397,"39397":39398,"39398":39399,"39399":39400,"39400":39401,"39401":39402,"39402":39403,"39403":39404,"39404":39405,"39405":39406,"39406":39407,"39407":39408,"39408":39409,"39409":39410,"39410":39411,"39411":39412,"39412":39413,"39413":39414,"39414":39415,"39415":39416,"39416":39417,"39417":39418,"39418":39419,"39419":39420,"39420":39421,"39421":39422,"39422":39423,"39423":39424,"39424":39425,"39425":39426,"39426":39427,"39427":39428,"39428":39429,"39429":39430,"39430":39431,"39431":39432,"39432":39433,"39433":39434,"39434":39435,"39435":39436,"39436":39437,"39437":39438,"39438":39439,"39439":39440,"39440":39441,"39441":39442,"39442":39443,"39443":39444,"39444":39445,"39445":39446,"39446":39447,"39447":39448,"39448":39449,"39449":39450,"39450":39451,"39451":39452,"39452":39453,"39453":39454,"39454":39455,"39455":39456,"39456":39457,"39457":39458,"39458":39459,"39459":39460,"39460":39461,"39461":39462,"39462":39463,"39463":39464,"39464":39465,"39465":39466,"39466":39467,"39467":39468,"39468":39469,"39469":39470,"39470":39471,"39471":39472,"39472":39473,"39473":39474,"39474":39475,"39475":39476,"39476":39477,"39477":39478,"39478":39479,"39479":39480,"39480":39481,"39481":39482,"39482":39483,"39483":39484,"39484":39485,"39485":39486,"39486":39487,"39487":39488,"39488":39489,"39489":39490,"39490":39491,"39491":39492,"39492":39493,"39493":39494,"39494":39495,"39495":39496,"39496":39497,"39497":39498,"39498":39499,"39499":39500,"39500":39501,"39501":39502,"39502":39503,"39503":39504,"39504":39505,"39505":39506,"39506":39507,"39507":39508,"39508":39509,"39509":39510,"39510":39511,"39511":39512,"39512":39513,"39513":39514,"39514":39515,"39515":39516,"39516":39517,"39517":39518,"39518":39519,"39519":39520,"39520":39521,"39521":39522,"39522":39523,"39523":39524,"39524":39525,"39525":39526,"39526":39527,"39527":39528,"39528":39529,"39529":39530,"39530":39531,"39531":39532,"39532":39533,"39533":39534,"39534":39535,"39535":39536,"39536":39537,"39537":39538,"39538":39539,"39539":39540,"39540":39541,"39541":39542,"39542":39543,"39543":39544,"39544":39545,"39545":39546,"39546":39547,"39547":39548,"39548":39549,"39549":39550,"39550":39551,"39551":39552,"39552":39553,"39553":39554,"39554":39555,"39555":39556,"39556":39557,"39557":39558,"39558":39559,"39559":39560,"39560":39561,"39561":39562,"39562":39563,"39563":39564,"39564":39565,"39565":39566,"39566":39567,"39567":39568,"39568":39569,"39569":39570,"39570":39571,"39571":39572,"39572":39573,"39573":39574,"39574":39575,"39575":39576,"39576":39577,"39577":39578,"39578":39579,"39579":39580,"39580":39581,"39581":39582,"39582":39583,"39583":39584,"39584":39585,"39585":39586,"39586":39587,"39587":39588,"39588":39589,"39589":39590,"39590":39591,"39591":39592,"39592":39593,"39593":39594,"39594":39595,"39595":39596,"39596":39597,"39597":39598,"39598":39599,"39599":39600,"39600":39601,"39601":39602,"39602":39603,"39603":39604,"39604":39605,"39605":39606,"39606":39607,"39607":39608,"39608":39609,"39609":39610,"39610":39611,"39611":39612,"39612":39613,"39613":39614,"39614":39615,"39615":39616,"39616":39617,"39617":39618,"39618":39619,"39619":39620,"39620":39621,"39621":39622,"39622":39623,"39623":39624,"39624":39625,"39625":39626,"39626":39627,"39627":39628,"39628":39629,"39629":39630,"39630":39631,"39631":39632,"39632":39633,"39633":39634,"39634":39635,"39635":39636,"39636":39637,"39637":39638,"39638":39639,"39639":39640,"39640":39641,"39641":39642,"39642":39643,"39643":39644,"39644":39645,"39645":39646,"39646":39647,"39647":39648,"39648":39649,"39649":39650,"39650":39651,"39651":39652,"39652":39653,"39653":39654,"39654":39655,"39655":39656,"39656":39657,"39657":39658,"39658":39659,"39659":39660,"39660":39661,"39661":39662,"39662":39663,"39663":39664,"39664":39665,"39665":39666,"39666":39667,"39667":39668,"39668":39669,"39669":39670,"39670":39671,"39671":39672,"39672":39673,"39673":39674,"39674":39675,"39675":39676,"39676":39677,"39677":39678,"39678":39679,"39679":39680,"39680":39681,"39681":39682,"39682":39683,"39683":39684,"39684":39685,"39685":39686,"39686":39687,"39687":39688,"39688":39689,"39689":39690,"39690":39691,"39691":39692,"39692":39693,"39693":39694,"39694":39695,"39695":39696,"39696":39697,"39697":39698,"39698":39699,"39699":39700,"39700":39701,"39701":39702,"39702":39703,"39703":39704,"39704":39705,"39705":39706,"39706":39707,"39707":39708,"39708":39709,"39709":39710,"39710":39711,"39711":39712,"39712":39713,"39713":39714,"39714":39715,"39715":39716,"39716":39717,"39717":39718,"39718":39719,"39719":39720,"39720":39721,"39721":39722,"39722":39723,"39723":39724,"39724":39725,"39725":39726,"39726":39727,"39727":39728,"39728":39729,"39729":39730,"39730":39731,"39731":39732,"39732":39733,"39733":39734,"39734":39735,"39735":39736,"39736":39737,"39737":39738,"39738":39739,"39739":39740,"39740":39741,"39741":39742,"39742":39743,"39743":39744,"39744":39745,"39745":39746,"39746":39747,"39747":39748,"39748":39749,"39749":39750,"39750":39751,"39751":39752,"39752":39753,"39753":39754,"39754":39755,"39755":39756,"39756":39757,"39757":39758,"39758":39759,"39759":39760,"39760":39761,"39761":39762,"39762":39763,"39763":39764,"39764":39765,"39765":39766,"39766":39767,"39767":39768,"39768":39769,"39769":39770,"39770":39771,"39771":39772,"39772":39773,"39773":39774,"39774":39775,"39775":39776,"39776":39777,"39777":39778,"39778":39779,"39779":39780,"39780":39781,"39781":39782,"39782":39783,"39783":39784,"39784":39785,"39785":39786,"39786":39787,"39787":39788,"39788":39789,"39789":39790,"39790":39791,"39791":39792,"39792":39793,"39793":39794,"39794":39795,"39795":39796,"39796":39797,"39797":39798,"39798":39799,"39799":39800,"39800":39801,"39801":39802,"39802":39803,"39803":39804,"39804":39805,"39805":39806,"39806":39807,"39807":39808,"39808":39809,"39809":39810,"39810":39811,"39811":39812,"39812":39813,"39813":39814,"39814":39815,"39815":39816,"39816":39817,"39817":39818,"39818":39819,"39819":39820,"39820":39821,"39821":39822,"39822":39823,"39823":39824,"39824":39825,"39825":39826,"39826":39827,"39827":39828,"39828":39829,"39829":39830,"39830":39831,"39831":39832,"39832":39833,"39833":39834,"39834":39835,"39835":39836,"39836":39837,"39837":39838,"39838":39839,"39839":39840,"39840":39841,"39841":39842,"39842":39843,"39843":39844,"39844":39845,"39845":39846,"39846":39847,"39847":39848,"39848":39849,"39849":39850,"39850":39851,"39851":39852,"39852":39853,"39853":39854,"39854":39855,"39855":39856,"39856":39857,"39857":39858,"39858":39859,"39859":39860,"39860":39861,"39861":39862,"39862":39863,"39863":39864,"39864":39865,"39865":39866,"39866":39867,"39867":39868,"39868":39869,"39869":39870,"39870":39871,"39871":39872,"39872":39873,"39873":39874,"39874":39875,"39875":39876,"39876":39877,"39877":39878,"39878":39879,"39879":39880,"39880":39881,"39881":39882,"39882":39883,"39883":39884,"39884":39885,"39885":39886,"39886":39887,"39887":39888,"39888":39889,"39889":39890,"39890":39891,"39891":39892,"39892":39893,"39893":39894,"39894":39895,"39895":39896,"39896":39897,"39897":39898,"39898":39899,"39899":39900,"39900":39901,"39901":39902,"39902":39903,"39903":39904,"39904":39905,"39905":39906,"39906":39907,"39907":39908,"39908":39909,"39909":39910,"39910":39911,"39911":39912,"39912":39913,"39913":39914,"39914":39915,"39915":39916,"39916":39917,"39917":39918,"39918":39919,"39919":39920,"39920":39921,"39921":39922,"39922":39923,"39923":39924,"39924":39925,"39925":39926,"39926":39927,"39927":39928,"39928":39929,"39929":39930,"39930":39931,"39931":39932,"39932":39933,"39933":39934,"39934":39935,"39935":39936,"39936":39937,"39937":39938,"39938":39939,"39939":39940,"39940":39941,"39941":39942,"39942":39943,"39943":39944,"39944":39945,"39945":39946,"39946":39947,"39947":39948,"39948":39949,"39949":39950,"39950":39951,"39951":39952,"39952":39953,"39953":39954,"39954":39955,"39955":39956,"39956":39957,"39957":39958,"39958":39959,"39959":39960,"39960":39961,"39961":39962,"39962":39963,"39963":39964,"39964":39965,"39965":39966,"39966":39967,"39967":39968,"39968":39969,"39969":39970,"39970":39971,"39971":39972,"39972":39973,"39973":39974,"39974":39975,"39975":39976,"39976":39977,"39977":39978,"39978":39979,"39979":39980,"39980":39981,"39981":39982,"39982":39983,"39983":39984,"39984":39985,"39985":39986,"39986":39987,"39987":39988,"39988":39989,"39989":39990,"39990":39991,"39991":39992,"39992":39993,"39993":39994,"39994":39995,"39995":39996,"39996":39997,"39997":39998,"39998":39999,"39999":40000,"40000":40001,"40001":40002,"40002":40003,"40003":40004,"40004":40005,"40005":40006,"40006":40007,"40007":40008,"40008":40009,"40009":40010,"40010":40011,"40011":40012,"40012":40013,"40013":40014,"40014":40015,"40015":40016,"40016":40017,"40017":40018,"40018":40019,"40019":40020,"40020":40021,"40021":40022,"40022":40023,"40023":40024,"40024":40025,"40025":40026,"40026":40027,"40027":40028,"40028":40029,"40029":40030,"40030":40031,"40031":40032,"40032":40033,"40033":40034,"40034":40035,"40035":40036,"40036":40037,"40037":40038,"40038":40039,"40039":40040,"40040":40041,"40041":40042,"40042":40043,"40043":40044,"40044":40045,"40045":40046,"40046":40047,"40047":40048,"40048":40049,"40049":40050,"40050":40051,"40051":40052,"40052":40053,"40053":40054,"40054":40055,"40055":40056,"40056":40057,"40057":40058,"40058":40059,"40059":40060,"40060":40061,"40061":40062,"40062":40063,"40063":40064,"40064":40065,"40065":40066,"40066":40067,"40067":40068,"40068":40069,"40069":40070,"40070":40071,"40071":40072,"40072":40073,"40073":40074,"40074":40075,"40075":40076,"40076":40077,"40077":40078,"40078":40079,"40079":40080,"40080":40081,"40081":40082,"40082":40083,"40083":40084,"40084":40085,"40085":40086,"40086":40087,"40087":40088,"40088":40089,"40089":40090,"40090":40091,"40091":40092,"40092":40093,"40093":40094,"40094":40095,"40095":40096,"40096":40097,"40097":40098,"40098":40099,"40099":40100,"40100":40101,"40101":40102,"40102":40103,"40103":40104,"40104":40105,"40105":40106,"40106":40107,"40107":40108,"40108":40109,"40109":40110,"40110":40111,"40111":40112,"40112":40113,"40113":40114,"40114":40115,"40115":40116,"40116":40117,"40117":40118,"40118":40119,"40119":40120,"40120":40121,"40121":40122,"40122":40123,"40123":40124,"40124":40125,"40125":40126,"40126":40127,"40127":40128,"40128":40129,"40129":40130,"40130":40131,"40131":40132,"40132":40133,"40133":40134,"40134":40135,"40135":40136,"40136":40137,"40137":40138,"40138":40139,"40139":40140,"40140":40141,"40141":40142,"40142":40143,"40143":40144,"40144":40145,"40145":40146,"40146":40147,"40147":40148,"40148":40149,"40149":40150,"40150":40151,"40151":40152,"40152":40153,"40153":40154,"40154":40155,"40155":40156,"40156":40157,"40157":40158,"40158":40159,"40159":40160,"40160":40161,"40161":40162,"40162":40163,"40163":40164,"40164":40165,"40165":40166,"40166":40167,"40167":40168,"40168":40169,"40169":40170,"40170":40171,"40171":40172,"40172":40173,"40173":40174,"40174":40175,"40175":40176,"40176":40177,"40177":40178,"40178":40179,"40179":40180,"40180":40181,"40181":40182,"40182":40183,"40183":40184,"40184":40185,"40185":40186,"40186":40187,"40187":40188,"40188":40189,"40189":40190,"40190":40191,"40191":40192,"40192":40193,"40193":40194,"40194":40195,"40195":40196,"40196":40197,"40197":40198,"40198":40199,"40199":40200,"40200":40201,"40201":40202,"40202":40203,"40203":40204,"40204":40205,"40205":40206,"40206":40207,"40207":40208,"40208":40209,"40209":40210,"40210":40211,"40211":40212,"40212":40213,"40213":40214,"40214":40215,"40215":40216,"40216":40217,"40217":40218,"40218":40219,"40219":40220,"40220":40221,"40221":40222,"40222":40223,"40223":40224,"40224":40225,"40225":40226,"40226":40227,"40227":40228,"40228":40229,"40229":40230,"40230":40231,"40231":40232,"40232":40233,"40233":40234,"40234":40235,"40235":40236,"40236":40237,"40237":40238,"40238":40239,"40239":40240,"40240":40241,"40241":40242,"40242":40243,"40243":40244,"40244":40245,"40245":40246,"40246":40247,"40247":40248,"40248":40249,"40249":40250,"40250":40251,"40251":40252,"40252":40253,"40253":40254,"40254":40255,"40255":40256,"40256":40257,"40257":40258,"40258":40259,"40259":40260,"40260":40261,"40261":40262,"40262":40263,"40263":40264,"40264":40265,"40265":40266,"40266":40267,"40267":40268,"40268":40269,"40269":40270,"40270":40271,"40271":40272,"40272":40273,"40273":40274,"40274":40275,"40275":40276,"40276":40277,"40277":40278,"40278":40279,"40279":40280,"40280":40281,"40281":40282,"40282":40283,"40283":40284,"40284":40285,"40285":40286,"40286":40287,"40287":40288,"40288":40289,"40289":40290,"40290":40291,"40291":40292,"40292":40293,"40293":40294,"40294":40295,"40295":40296,"40296":40297,"40297":40298,"40298":40299,"40299":40300,"40300":40301,"40301":40302,"40302":40303,"40303":40304,"40304":40305,"40305":40306,"40306":40307,"40307":40308,"40308":40309,"40309":40310,"40310":40311,"40311":40312,"40312":40313,"40313":40314,"40314":40315,"40315":40316,"40316":40317,"40317":40318,"40318":40319,"40319":40320,"40320":40321,"40321":40322,"40322":40323,"40323":40324,"40324":40325,"40325":40326,"40326":40327,"40327":40328,"40328":40329,"40329":40330,"40330":40331,"40331":40332,"40332":40333,"40333":40334,"40334":40335,"40335":40336,"40336":40337,"40337":40338,"40338":40339,"40339":40340,"40340":40341,"40341":40342,"40342":40343,"40343":40344,"40344":40345,"40345":40346,"40346":40347,"40347":40348,"40348":40349,"40349":40350,"40350":40351,"40351":40352,"40352":40353,"40353":40354,"40354":40355,"40355":40356,"40356":40357,"40357":40358,"40358":40359,"40359":40360,"40360":40361,"40361":40362,"40362":40363,"40363":40364,"40364":40365,"40365":40366,"40366":40367,"40367":40368,"40368":40369,"40369":40370,"40370":40371,"40371":40372,"40372":40373,"40373":40374,"40374":40375,"40375":40376,"40376":40377,"40377":40378,"40378":40379,"40379":40380,"40380":40381,"40381":40382,"40382":40383,"40383":40384,"40384":40385,"40385":40386,"40386":40387,"40387":40388,"40388":40389,"40389":40390,"40390":40391,"40391":40392,"40392":40393,"40393":40394,"40394":40395,"40395":40396,"40396":40397,"40397":40398,"40398":40399,"40399":40400,"40400":40401,"40401":40402,"40402":40403,"40403":40404,"40404":40405,"40405":40406,"40406":40407,"40407":40408,"40408":40409,"40409":40410,"40410":40411,"40411":40412,"40412":40413,"40413":40414,"40414":40415,"40415":40416,"40416":40417,"40417":40418,"40418":40419,"40419":40420,"40420":40421,"40421":40422,"40422":40423,"40423":40424,"40424":40425,"40425":40426,"40426":40427,"40427":40428,"40428":40429,"40429":40430,"40430":40431,"40431":40432,"40432":40433,"40433":40434,"40434":40435,"40435":40436,"40436":40437,"40437":40438,"40438":40439,"40439":40440,"40440":40441,"40441":40442,"40442":40443,"40443":40444,"40444":40445,"40445":40446,"40446":40447,"40447":40448,"40448":40449,"40449":40450,"40450":40451,"40451":40452,"40452":40453,"40453":40454,"40454":40455,"40455":40456,"40456":40457,"40457":40458,"40458":40459,"40459":40460,"40460":40461,"40461":40462,"40462":40463,"40463":40464,"40464":40465,"40465":40466,"40466":40467,"40467":40468,"40468":40469,"40469":40470,"40470":40471,"40471":40472,"40472":40473,"40473":40474,"40474":40475,"40475":40476,"40476":40477,"40477":40478,"40478":40479,"40479":40480,"40480":40481,"40481":40482,"40482":40483,"40483":40484,"40484":40485,"40485":40486,"40486":40487,"40487":40488,"40488":40489,"40489":40490,"40490":40491,"40491":40492,"40492":40493,"40493":40494,"40494":40495,"40495":40496,"40496":40497,"40497":40498,"40498":40499,"40499":40500,"40500":40501,"40501":40502,"40502":40503,"40503":40504,"40504":40505,"40505":40506,"40506":40507,"40507":40508,"40508":40509,"40509":40510,"40510":40511,"40511":40512,"40512":40513,"40513":40514,"40514":40515,"40515":40516,"40516":40517,"40517":40518,"40518":40519,"40519":40520,"40520":40521,"40521":40522,"40522":40523,"40523":40524,"40524":40525,"40525":40526,"40526":40527,"40527":40528,"40528":40529,"40529":40530,"40530":40531,"40531":40532,"40532":40533,"40533":40534,"40534":40535,"40535":40536,"40536":40537,"40537":40538,"40538":40539,"40539":40540,"40540":40541,"40541":40542,"40542":40543,"40543":40544,"40544":40545,"40545":40546,"40546":40547,"40547":40548,"40548":40549,"40549":40550,"40550":40551,"40551":40552,"40552":40553,"40553":40554,"40554":40555,"40555":40556,"40556":40557,"40557":40558,"40558":40559,"40559":40560,"40560":40561,"40561":40562,"40562":40563,"40563":40564,"40564":40565,"40565":40566,"40566":40567,"40567":40568,"40568":40569,"40569":40570,"40570":40571,"40571":40572,"40572":40573,"40573":40574,"40574":40575,"40575":40576,"40576":40577,"40577":40578,"40578":40579,"40579":40580,"40580":40581,"40581":40582,"40582":40583,"40583":40584,"40584":40585,"40585":40586,"40586":40587,"40587":40588,"40588":40589,"40589":40590,"40590":40591,"40591":40592,"40592":40593,"40593":40594,"40594":40595,"40595":40596,"40596":40597,"40597":40598,"40598":40599,"40599":40600,"40600":40601,"40601":40602,"40602":40603,"40603":40604,"40604":40605,"40605":40606,"40606":40607,"40607":40608,"40608":40609,"40609":40610,"40610":40611,"40611":40612,"40612":40613,"40613":40614,"40614":40615,"40615":40616,"40616":40617,"40617":40618,"40618":40619,"40619":40620,"40620":40621,"40621":40622,"40622":40623,"40623":40624,"40624":40625,"40625":40626,"40626":40627,"40627":40628,"40628":40629,"40629":40630,"40630":40631,"40631":40632,"40632":40633,"40633":40634,"40634":40635,"40635":40636,"40636":40637,"40637":40638,"40638":40639,"40639":40640,"40640":40641,"40641":40642,"40642":40643,"40643":40644,"40644":40645,"40645":40646,"40646":40647,"40647":40648,"40648":40649,"40649":40650,"40650":40651,"40651":40652,"40652":40653,"40653":40654,"40654":40655,"40655":40656,"40656":40657,"40657":40658,"40658":40659,"40659":40660,"40660":40661,"40661":40662,"40662":40663,"40663":40664,"40664":40665,"40665":40666,"40666":40667,"40667":40668,"40668":40669,"40669":40670,"40670":40671,"40671":40672,"40672":40673,"40673":40674,"40674":40675,"40675":40676,"40676":40677,"40677":40678,"40678":40679,"40679":40680,"40680":40681,"40681":40682,"40682":40683,"40683":40684,"40684":40685,"40685":40686,"40686":40687,"40687":40688,"40688":40689,"40689":40690,"40690":40691,"40691":40692,"40692":40693,"40693":40694,"40694":40695,"40695":40696,"40696":40697,"40697":40698,"40698":40699,"40699":40700,"40700":40701,"40701":40702,"40702":40703,"40703":40704,"40704":40705,"40705":40706,"40706":40707,"40707":40708,"40708":40709,"40709":40710,"40710":40711,"40711":40712,"40712":40713,"40713":40714,"40714":40715,"40715":40716,"40716":40717,"40717":40718,"40718":40719,"40719":40720,"40720":40721,"40721":40722,"40722":40723,"40723":40724,"40724":40725,"40725":40726,"40726":40727,"40727":40728,"40728":40729,"40729":40730,"40730":40731,"40731":40732,"40732":40733,"40733":40734,"40734":40735,"40735":40736,"40736":40737,"40737":40738,"40738":40739,"40739":40740,"40740":40741,"40741":40742,"40742":40743,"40743":40744,"40744":40745,"40745":40746,"40746":40747,"40747":40748,"40748":40749,"40749":40750,"40750":40751,"40751":40752,"40752":40753,"40753":40754,"40754":40755,"40755":40756,"40756":40757,"40757":40758,"40758":40759,"40759":40760,"40760":40761,"40761":40762,"40762":40763,"40763":40764,"40764":40765,"40765":40766,"40766":40767,"40767":40768,"40768":40769,"40769":40770,"40770":40771,"40771":40772,"40772":40773,"40773":40774,"40774":40775,"40775":40776,"40776":40777,"40777":40778,"40778":40779,"40779":40780,"40780":40781,"40781":40782,"40782":40783,"40783":40784,"40784":40785,"40785":40786,"40786":40787,"40787":40788,"40788":40789,"40789":40790,"40790":40791,"40791":40792,"40792":40793,"40793":40794,"40794":40795,"40795":40796,"40796":40797,"40797":40798,"40798":40799,"40799":40800,"40800":40801,"40801":40802,"40802":40803,"40803":40804,"40804":40805,"40805":40806,"40806":40807,"40807":40808,"40808":40809,"40809":40810,"40810":40811,"40811":40812,"40812":40813,"40813":40814,"40814":40815,"40815":40816,"40816":40817,"40817":40818,"40818":40819,"40819":40820,"40820":40821,"40821":40822,"40822":40823,"40823":40824,"40824":40825,"40825":40826,"40826":40827,"40827":40828,"40828":40829,"40829":40830,"40830":40831,"40831":40832,"40832":40833,"40833":40834,"40834":40835,"40835":40836,"40836":40837,"40837":40838,"40838":40839,"40839":40840,"40840":40841,"40841":40842,"40842":40843,"40843":40844,"40844":40845,"40845":40846,"40846":40847,"40847":40848,"40848":40849,"40849":40850,"40850":40851,"40851":40852,"40852":40853,"40853":40854,"40854":40855,"40855":40856,"40856":40857,"40857":40858,"40858":40859,"40859":40860,"40860":40861,"40861":40862,"40862":40863,"40863":40864,"40864":40865,"40865":40866,"40866":40867,"40867":40868,"40868":40869,"40869":40870,"40870":40871,"40871":40872,"40872":40873,"40873":40874,"40874":40875,"40875":40876,"40876":40877,"40877":40878,"40878":40879,"40879":40880,"40880":40881,"40881":40882,"40882":40883,"40883":40884,"40884":40885,"40885":40886,"40886":40887,"40887":40888,"40888":40889,"40889":40890,"40890":40891,"40891":40892,"40892":40893,"40893":40894,"40894":40895,"40895":40896,"40896":40897,"40897":40898,"40898":40899,"40899":40900,"40900":40901,"40901":40902,"40902":40903,"40903":40904,"40904":40905,"40905":40906,"40906":40907,"40907":40908,"40908":40909,"40909":40910,"40910":40911,"40911":40912,"40912":40913,"40913":40914,"40914":40915,"40915":40916,"40916":40917,"40917":40918,"40918":40919,"40919":40920,"40920":40921,"40921":40922,"40922":40923,"40923":40924,"40924":40925,"40925":40926,"40926":40927,"40927":40928,"40928":40929,"40929":40930,"40930":40931,"40931":40932,"40932":40933,"40933":40934,"40934":40935,"40935":40936,"40936":40937,"40937":40938,"40938":40939,"40939":40940,"40940":40941,"40941":40942,"40942":40943,"40943":40944,"40944":40945,"40945":40946,"40946":40947,"40947":40948,"40948":40949,"40949":40950,"40950":40951,"40951":40952,"40952":40953,"40953":40954,"40954":40955,"40955":40956,"40956":40957,"40957":40958,"40958":40959,"40959":40960,"40960":40961,"40961":40962,"40962":40963,"40963":40964,"40964":40965,"40965":40966,"40966":40967,"40967":40968,"40968":40969,"40969":40970,"40970":40971,"40971":40972,"40972":40973,"40973":40974,"40974":40975,"40975":40976,"40976":40977,"40977":40978,"40978":40979,"40979":40980,"40980":40981,"40981":40982,"40982":40983,"40983":40984,"40984":40985,"40985":40986,"40986":40987,"40987":40988,"40988":40989,"40989":40990,"40990":40991,"40991":40992,"40992":40993,"40993":40994,"40994":40995,"40995":40996,"40996":40997,"40997":40998,"40998":40999,"40999":41000,"41000":41001,"41001":41002,"41002":41003,"41003":41004,"41004":41005,"41005":41006,"41006":41007,"41007":41008,"41008":41009,"41009":41010,"41010":41011,"41011":41012,"41012":41013,"41013":41014,"41014":41015,"41015":41016,"41016":41017,"41017":41018,"41018":41019,"41019":41020,"41020":41021,"41021":41022,"41022":41023,"41023":41024,"41024":41025,"41025":41026,"41026":41027,"41027":41028,"41028":41029,"41029":41030,"41030":41031,"41031":41032,"41032":41033,"41033":41034,"41034":41035,"41035":41036,"41036":41037,"41037":41038,"41038":41039,"41039":41040,"41040":41041,"41041":41042,"41042":41043,"41043":41044,"41044":41045,"41045":41046,"41046":41047,"41047":41048,"41048":41049,"41049":41050,"41050":41051,"41051":41052,"41052":41053,"41053":41054,"41054":41055,"41055":41056,"41056":41057,"41057":41058,"41058":41059,"41059":41060,"41060":41061,"41061":41062,"41062":41063,"41063":41064,"41064":41065,"41065":41066,"41066":41067,"41067":41068,"41068":41069,"41069":41070,"41070":41071,"41071":41072,"41072":41073,"41073":41074,"41074":41075,"41075":41076,"41076":41077,"41077":41078,"41078":41079,"41079":41080,"41080":41081,"41081":41082,"41082":41083,"41083":41084,"41084":41085,"41085":41086,"41086":41087,"41087":41088,"41088":41089,"41089":41090,"41090":41091,"41091":41092,"41092":41093,"41093":41094,"41094":41095,"41095":41096,"41096":41097,"41097":41098,"41098":41099,"41099":41100,"41100":41101,"41101":41102,"41102":41103,"41103":41104,"41104":41105,"41105":41106,"41106":41107,"41107":41108,"41108":41109,"41109":41110,"41110":41111,"41111":41112,"41112":41113,"41113":41114,"41114":41115,"41115":41116,"41116":41117,"41117":41118,"41118":41119,"41119":41120,"41120":41121,"41121":41122,"41122":41123,"41123":41124,"41124":41125,"41125":41126,"41126":41127,"41127":41128,"41128":41129,"41129":41130,"41130":41131,"41131":41132,"41132":41133,"41133":41134,"41134":41135,"41135":41136,"41136":41137,"41137":41138,"41138":41139,"41139":41140,"41140":41141,"41141":41142,"41142":41143,"41143":41144,"41144":41145,"41145":41146,"41146":41147,"41147":41148,"41148":41149,"41149":41150,"41150":41151,"41151":41152,"41152":41153,"41153":41154,"41154":41155,"41155":41156,"41156":41157,"41157":41158,"41158":41159,"41159":41160,"41160":41161,"41161":41162,"41162":41163,"41163":41164,"41164":41165,"41165":41166,"41166":41167,"41167":41168,"41168":41169,"41169":41170,"41170":41171,"41171":41172,"41172":41173,"41173":41174,"41174":41175,"41175":41176,"41176":41177,"41177":41178,"41178":41179,"41179":41180,"41180":41181,"41181":41182,"41182":41183,"41183":41184,"41184":41185,"41185":41186,"41186":41187,"41187":41188,"41188":41189,"41189":41190,"41190":41191,"41191":41192,"41192":41193,"41193":41194,"41194":41195,"41195":41196,"41196":41197,"41197":41198,"41198":41199,"41199":41200,"41200":41201,"41201":41202,"41202":41203,"41203":41204,"41204":41205,"41205":41206,"41206":41207,"41207":41208,"41208":41209,"41209":41210,"41210":41211,"41211":41212,"41212":41213,"41213":41214,"41214":41215,"41215":41216,"41216":41217,"41217":41218,"41218":41219,"41219":41220,"41220":41221,"41221":41222,"41222":41223,"41223":41224,"41224":41225,"41225":41226,"41226":41227,"41227":41228,"41228":41229,"41229":41230,"41230":41231,"41231":41232,"41232":41233,"41233":41234,"41234":41235,"41235":41236,"41236":41237,"41237":41238,"41238":41239,"41239":41240,"41240":41241,"41241":41242,"41242":41243,"41243":41244,"41244":41245,"41245":41246,"41246":41247,"41247":41248,"41248":41249,"41249":41250,"41250":41251,"41251":41252,"41252":41253,"41253":41254,"41254":41255,"41255":41256,"41256":41257,"41257":41258,"41258":41259,"41259":41260,"41260":41261,"41261":41262,"41262":41263,"41263":41264,"41264":41265,"41265":41266,"41266":41267,"41267":41268,"41268":41269,"41269":41270,"41270":41271,"41271":41272,"41272":41273,"41273":41274,"41274":41275,"41275":41276,"41276":41277,"41277":41278,"41278":41279,"41279":41280,"41280":41281,"41281":41282,"41282":41283,"41283":41284,"41284":41285,"41285":41286,"41286":41287,"41287":41288,"41288":41289,"41289":41290,"41290":41291,"41291":41292,"41292":41293,"41293":41294,"41294":41295,"41295":41296,"41296":41297,"41297":41298,"41298":41299,"41299":41300,"41300":41301,"41301":41302,"41302":41303,"41303":41304,"41304":41305,"41305":41306,"41306":41307,"41307":41308,"41308":41309,"41309":41310,"41310":41311,"41311":41312,"41312":41313,"41313":41314,"41314":41315,"41315":41316,"41316":41317,"41317":41318,"41318":41319,"41319":41320,"41320":41321,"41321":41322,"41322":41323,"41323":41324,"41324":41325,"41325":41326,"41326":41327,"41327":41328,"41328":41329,"41329":41330,"41330":41331,"41331":41332,"41332":41333,"41333":41334,"41334":41335,"41335":41336,"41336":41337,"41337":41338,"41338":41339,"41339":41340,"41340":41341,"41341":41342,"41342":41343,"41343":41344,"41344":41345,"41345":41346,"41346":41347,"41347":41348,"41348":41349,"41349":41350,"41350":41351,"41351":41352,"41352":41353,"41353":41354,"41354":41355,"41355":41356,"41356":41357,"41357":41358,"41358":41359,"41359":41360,"41360":41361,"41361":41362,"41362":41363,"41363":41364,"41364":41365,"41365":41366,"41366":41367,"41367":41368,"41368":41369,"41369":41370,"41370":41371,"41371":41372,"41372":41373,"41373":41374,"41374":41375,"41375":41376,"41376":41377,"41377":41378,"41378":41379,"41379":41380,"41380":41381,"41381":41382,"41382":41383,"41383":41384,"41384":41385,"41385":41386,"41386":41387,"41387":41388,"41388":41389,"41389":41390,"41390":41391,"41391":41392,"41392":41393,"41393":41394,"41394":41395,"41395":41396,"41396":41397,"41397":41398,"41398":41399,"41399":41400,"41400":41401,"41401":41402,"41402":41403,"41403":41404,"41404":41405,"41405":41406,"41406":41407,"41407":41408,"41408":41409,"41409":41410,"41410":41411,"41411":41412,"41412":41413,"41413":41414,"41414":41415,"41415":41416,"41416":41417,"41417":41418,"41418":41419,"41419":41420,"41420":41421,"41421":41422,"41422":41423,"41423":41424,"41424":41425,"41425":41426,"41426":41427,"41427":41428,"41428":41429,"41429":41430,"41430":41431,"41431":41432,"41432":41433,"41433":41434,"41434":41435,"41435":41436,"41436":41437,"41437":41438,"41438":41439,"41439":41440,"41440":41441,"41441":41442,"41442":41443,"41443":41444,"41444":41445,"41445":41446,"41446":41447,"41447":41448,"41448":41449,"41449":41450,"41450":41451,"41451":41452,"41452":41453,"41453":41454,"41454":41455,"41455":41456,"41456":41457,"41457":41458,"41458":41459,"41459":41460,"41460":41461,"41461":41462,"41462":41463,"41463":41464,"41464":41465,"41465":41466,"41466":41467,"41467":41468,"41468":41469,"41469":41470,"41470":41471,"41471":41472,"41472":41473,"41473":41474,"41474":41475,"41475":41476,"41476":41477,"41477":41478,"41478":41479,"41479":41480,"41480":41481,"41481":41482,"41482":41483,"41483":41484,"41484":41485,"41485":41486,"41486":41487,"41487":41488,"41488":41489,"41489":41490,"41490":41491,"41491":41492,"41492":41493,"41493":41494,"41494":41495,"41495":41496,"41496":41497,"41497":41498,"41498":41499,"41499":41500,"41500":41501,"41501":41502,"41502":41503,"41503":41504,"41504":41505,"41505":41506,"41506":41507,"41507":41508,"41508":41509,"41509":41510,"41510":41511,"41511":41512,"41512":41513,"41513":41514,"41514":41515,"41515":41516,"41516":41517,"41517":41518,"41518":41519,"41519":41520,"41520":41521,"41521":41522,"41522":41523,"41523":41524,"41524":41525,"41525":41526,"41526":41527,"41527":41528,"41528":41529,"41529":41530,"41530":41531,"41531":41532,"41532":41533,"41533":41534,"41534":41535,"41535":41536,"41536":41537,"41537":41538,"41538":41539,"41539":41540,"41540":41541,"41541":41542,"41542":41543,"41543":41544,"41544":41545,"41545":41546,"41546":41547,"41547":41548,"41548":41549,"41549":41550,"41550":41551,"41551":41552,"41552":41553,"41553":41554,"41554":41555,"41555":41556,"41556":41557,"41557":41558,"41558":41559,"41559":41560,"41560":41561,"41561":41562,"41562":41563,"41563":41564,"41564":41565,"41565":41566,"41566":41567,"41567":41568,"41568":41569,"41569":41570,"41570":41571,"41571":41572,"41572":41573,"41573":41574,"41574":41575,"41575":41576,"41576":41577,"41577":41578,"41578":41579,"41579":41580,"41580":41581,"41581":41582,"41582":41583,"41583":41584,"41584":41585,"41585":41586,"41586":41587,"41587":41588,"41588":41589,"41589":41590,"41590":41591,"41591":41592,"41592":41593,"41593":41594,"41594":41595,"41595":41596,"41596":41597,"41597":41598,"41598":41599,"41599":41600,"41600":41601,"41601":41602,"41602":41603,"41603":41604,"41604":41605,"41605":41606,"41606":41607,"41607":41608,"41608":41609,"41609":41610,"41610":41611,"41611":41612,"41612":41613,"41613":41614,"41614":41615,"41615":41616,"41616":41617,"41617":41618,"41618":41619,"41619":41620,"41620":41621,"41621":41622,"41622":41623,"41623":41624,"41624":41625,"41625":41626,"41626":41627,"41627":41628,"41628":41629,"41629":41630,"41630":41631,"41631":41632,"41632":41633,"41633":41634,"41634":41635,"41635":41636,"41636":41637,"41637":41638,"41638":41639,"41639":41640,"41640":41641,"41641":41642,"41642":41643,"41643":41644,"41644":41645,"41645":41646,"41646":41647,"41647":41648,"41648":41649,"41649":41650,"41650":41651,"41651":41652,"41652":41653,"41653":41654,"41654":41655,"41655":41656,"41656":41657,"41657":41658,"41658":41659,"41659":41660,"41660":41661,"41661":41662,"41662":41663,"41663":41664,"41664":41665,"41665":41666,"41666":41667,"41667":41668,"41668":41669,"41669":41670,"41670":41671,"41671":41672,"41672":41673,"41673":41674,"41674":41675,"41675":41676,"41676":41677,"41677":41678,"41678":41679,"41679":41680,"41680":41681,"41681":41682,"41682":41683,"41683":41684,"41684":41685,"41685":41686,"41686":41687,"41687":41688,"41688":41689,"41689":41690,"41690":41691,"41691":41692,"41692":41693,"41693":41694,"41694":41695,"41695":41696,"41696":41697,"41697":41698,"41698":41699,"41699":41700,"41700":41701,"41701":41702,"41702":41703,"41703":41704,"41704":41705,"41705":41706,"41706":41707,"41707":41708,"41708":41709,"41709":41710,"41710":41711,"41711":41712,"41712":41713,"41713":41714,"41714":41715,"41715":41716,"41716":41717,"41717":41718,"41718":41719,"41719":41720,"41720":41721,"41721":41722,"41722":41723,"41723":41724,"41724":41725,"41725":41726,"41726":41727,"41727":41728,"41728":41729,"41729":41730,"41730":41731,"41731":41732,"41732":41733,"41733":41734,"41734":41735,"41735":41736,"41736":41737,"41737":41738,"41738":41739,"41739":41740,"41740":41741,"41741":41742,"41742":41743,"41743":41744,"41744":41745,"41745":41746,"41746":41747,"41747":41748,"41748":41749,"41749":41750,"41750":41751,"41751":41752,"41752":41753,"41753":41754,"41754":41755,"41755":41756,"41756":41757,"41757":41758,"41758":41759,"41759":41760,"41760":41761,"41761":41762,"41762":41763,"41763":41764,"41764":41765,"41765":41766,"41766":41767,"41767":41768,"41768":41769,"41769":41770,"41770":41771,"41771":41772,"41772":41773,"41773":41774,"41774":41775,"41775":41776,"41776":41777,"41777":41778,"41778":41779,"41779":41780,"41780":41781,"41781":41782,"41782":41783,"41783":41784,"41784":41785,"41785":41786,"41786":41787,"41787":41788,"41788":41789,"41789":41790,"41790":41791,"41791":41792,"41792":41793,"41793":41794,"41794":41795,"41795":41796,"41796":41797,"41797":41798,"41798":41799,"41799":41800,"41800":41801,"41801":41802,"41802":41803,"41803":41804,"41804":41805,"41805":41806,"41806":41807,"41807":41808,"41808":41809,"41809":41810,"41810":41811,"41811":41812,"41812":41813,"41813":41814,"41814":41815,"41815":41816,"41816":41817,"41817":41818,"41818":41819,"41819":41820,"41820":41821,"41821":41822,"41822":41823,"41823":41824,"41824":41825,"41825":41826,"41826":41827,"41827":41828,"41828":41829,"41829":41830,"41830":41831,"41831":41832,"41832":41833,"41833":41834,"41834":41835,"41835":41836,"41836":41837,"41837":41838,"41838":41839,"41839":41840,"41840":41841,"41841":41842,"41842":41843,"41843":41844,"41844":41845,"41845":41846,"41846":41847,"41847":41848,"41848":41849,"41849":41850,"41850":41851,"41851":41852,"41852":41853,"41853":41854,"41854":41855,"41855":41856,"41856":41857,"41857":41858,"41858":41859,"41859":41860,"41860":41861,"41861":41862,"41862":41863,"41863":41864,"41864":41865,"41865":41866,"41866":41867,"41867":41868,"41868":41869,"41869":41870,"41870":41871,"41871":41872,"41872":41873,"41873":41874,"41874":41875,"41875":41876,"41876":41877,"41877":41878,"41878":41879,"41879":41880,"41880":41881,"41881":41882,"41882":41883,"41883":41884,"41884":41885,"41885":41886,"41886":41887,"41887":41888,"41888":41889,"41889":41890,"41890":41891,"41891":41892,"41892":41893,"41893":41894,"41894":41895,"41895":41896,"41896":41897,"41897":41898,"41898":41899,"41899":41900,"41900":41901,"41901":41902,"41902":41903,"41903":41904,"41904":41905,"41905":41906,"41906":41907,"41907":41908,"41908":41909,"41909":41910,"41910":41911,"41911":41912,"41912":41913,"41913":41914,"41914":41915,"41915":41916,"41916":41917,"41917":41918,"41918":41919,"41919":41920,"41920":41921,"41921":41922,"41922":41923,"41923":41924,"41924":41925,"41925":41926,"41926":41927,"41927":41928,"41928":41929,"41929":41930,"41930":41931,"41931":41932,"41932":41933,"41933":41934,"41934":41935,"41935":41936,"41936":41937,"41937":41938,"41938":41939,"41939":41940,"41940":41941,"41941":41942,"41942":41943,"41943":41944,"41944":41945,"41945":41946,"41946":41947,"41947":41948,"41948":41949,"41949":41950,"41950":41951,"41951":41952,"41952":41953,"41953":41954,"41954":41955,"41955":41956,"41956":41957,"41957":41958,"41958":41959,"41959":41960,"41960":41961,"41961":41962,"41962":41963,"41963":41964,"41964":41965,"41965":41966,"41966":41967,"41967":41968,"41968":41969,"41969":41970,"41970":41971,"41971":41972,"41972":41973,"41973":41974,"41974":41975,"41975":41976,"41976":41977,"41977":41978,"41978":41979,"41979":41980,"41980":41981,"41981":41982,"41982":41983,"41983":41984,"41984":41985,"41985":41986,"41986":41987,"41987":41988,"41988":41989,"41989":41990,"41990":41991,"41991":41992,"41992":41993,"41993":41994,"41994":41995,"41995":41996,"41996":41997,"41997":41998,"41998":41999,"41999":42000,"42000":42001,"42001":42002,"42002":42003,"42003":42004,"42004":42005,"42005":42006,"42006":42007,"42007":42008,"42008":42009,"42009":42010,"42010":42011,"42011":42012,"42012":42013,"42013":42014,"42014":42015,"42015":42016,"42016":42017,"42017":42018,"42018":42019,"42019":42020,"42020":42021,"42021":42022,"42022":42023,"42023":42024,"42024":42025,"42025":42026,"42026":42027,"42027":42028,"42028":42029,"42029":42030,"42030":42031,"42031":42032,"42032":42033,"42033":42034,"42034":42035,"42035":42036,"42036":42037,"42037":42038,"42038":42039,"42039":42040,"42040":42041,"42041":42042,"42042":42043,"42043":42044,"42044":42045,"42045":42046,"42046":42047,"42047":42048,"42048":42049,"42049":42050,"42050":42051,"42051":42052,"42052":42053,"42053":42054,"42054":42055,"42055":42056,"42056":42057,"42057":42058,"42058":42059,"42059":42060,"42060":42061,"42061":42062,"42062":42063,"42063":42064,"42064":42065,"42065":42066,"42066":42067,"42067":42068,"42068":42069,"42069":42070,"42070":42071,"42071":42072,"42072":42073,"42073":42074,"42074":42075,"42075":42076,"42076":42077,"42077":42078,"42078":42079,"42079":42080,"42080":42081,"42081":42082,"42082":42083,"42083":42084,"42084":42085,"42085":42086,"42086":42087,"42087":42088,"42088":42089,"42089":42090,"42090":42091,"42091":42092,"42092":42093,"42093":42094,"42094":42095,"42095":42096,"42096":42097,"42097":42098,"42098":42099,"42099":42100,"42100":42101,"42101":42102,"42102":42103,"42103":42104,"42104":42105,"42105":42106,"42106":42107,"42107":42108,"42108":42109,"42109":42110,"42110":42111,"42111":42112,"42112":42113,"42113":42114,"42114":42115,"42115":42116,"42116":42117,"42117":42118,"42118":42119,"42119":42120,"42120":42121,"42121":42122,"42122":42123,"42123":42124,"42124":42125,"42125":42126,"42126":42127,"42127":42128,"42128":42129,"42129":42130,"42130":42131,"42131":42132,"42132":42133,"42133":42134,"42134":42135,"42135":42136,"42136":42137,"42137":42138,"42138":42139,"42139":42140,"42140":42141,"42141":42142,"42142":42143,"42143":42144,"42144":42145,"42145":42146,"42146":42147,"42147":42148,"42148":42149,"42149":42150,"42150":42151,"42151":42152,"42152":42153,"42153":42154,"42154":42155,"42155":42156,"42156":42157,"42157":42158,"42158":42159,"42159":42160,"42160":42161,"42161":42162,"42162":42163,"42163":42164,"42164":42165,"42165":42166,"42166":42167,"42167":42168,"42168":42169,"42169":42170,"42170":42171,"42171":42172,"42172":42173,"42173":42174,"42174":42175,"42175":42176,"42176":42177,"42177":42178,"42178":42179,"42179":42180,"42180":42181,"42181":42182,"42182":42183,"42183":42184,"42184":42185,"42185":42186,"42186":42187,"42187":42188,"42188":42189,"42189":42190,"42190":42191,"42191":42192,"42192":42193,"42193":42194,"42194":42195,"42195":42196,"42196":42197,"42197":42198,"42198":42199,"42199":42200,"42200":42201,"42201":42202,"42202":42203,"42203":42204,"42204":42205,"42205":42206,"42206":42207,"42207":42208,"42208":42209,"42209":42210,"42210":42211,"42211":42212,"42212":42213,"42213":42214,"42214":42215,"42215":42216,"42216":42217,"42217":42218,"42218":42219,"42219":42220,"42220":42221,"42221":42222,"42222":42223,"42223":42224,"42224":42225,"42225":42226,"42226":42227,"42227":42228,"42228":42229,"42229":42230,"42230":42231,"42231":42232,"42232":42233,"42233":42234,"42234":42235,"42235":42236,"42236":42237,"42237":42238,"42238":42239,"42239":42240,"42240":42241,"42241":42242,"42242":42243,"42243":42244,"42244":42245,"42245":42246,"42246":42247,"42247":42248,"42248":42249,"42249":42250,"42250":42251,"42251":42252,"42252":42253,"42253":42254,"42254":42255,"42255":42256,"42256":42257,"42257":42258,"42258":42259,"42259":42260,"42260":42261,"42261":42262,"42262":42263,"42263":42264,"42264":42265,"42265":42266,"42266":42267,"42267":42268,"42268":42269,"42269":42270,"42270":42271,"42271":42272,"42272":42273,"42273":42274,"42274":42275,"42275":42276,"42276":42277,"42277":42278,"42278":42279,"42279":42280,"42280":42281,"42281":42282,"42282":42283,"42283":42284,"42284":42285,"42285":42286,"42286":42287,"42287":42288,"42288":42289,"42289":42290,"42290":42291,"42291":42292,"42292":42293,"42293":42294,"42294":42295,"42295":42296,"42296":42297,"42297":42298,"42298":42299,"42299":42300,"42300":42301,"42301":42302,"42302":42303,"42303":42304,"42304":42305,"42305":42306,"42306":42307,"42307":42308,"42308":42309,"42309":42310,"42310":42311,"42311":42312,"42312":42313,"42313":42314,"42314":42315,"42315":42316,"42316":42317,"42317":42318,"42318":42319,"42319":42320,"42320":42321,"42321":42322,"42322":42323,"42323":42324,"42324":42325,"42325":42326,"42326":42327,"42327":42328,"42328":42329,"42329":42330,"42330":42331,"42331":42332,"42332":42333,"42333":42334,"42334":42335,"42335":42336,"42336":42337,"42337":42338,"42338":42339,"42339":42340,"42340":42341,"42341":42342,"42342":42343,"42343":42344,"42344":42345,"42345":42346,"42346":42347,"42347":42348,"42348":42349,"42349":42350,"42350":42351,"42351":42352,"42352":42353,"42353":42354,"42354":42355,"42355":42356,"42356":42357,"42357":42358,"42358":42359,"42359":42360,"42360":42361,"42361":42362,"42362":42363,"42363":42364,"42364":42365,"42365":42366,"42366":42367,"42367":42368,"42368":42369,"42369":42370,"42370":42371,"42371":42372,"42372":42373,"42373":42374,"42374":42375,"42375":42376,"42376":42377,"42377":42378,"42378":42379,"42379":42380,"42380":42381,"42381":42382,"42382":42383,"42383":42384,"42384":42385,"42385":42386,"42386":42387,"42387":42388,"42388":42389,"42389":42390,"42390":42391,"42391":42392,"42392":42393,"42393":42394,"42394":42395,"42395":42396,"42396":42397,"42397":42398,"42398":42399,"42399":42400,"42400":42401,"42401":42402,"42402":42403,"42403":42404,"42404":42405,"42405":42406,"42406":42407,"42407":42408,"42408":42409,"42409":42410,"42410":42411,"42411":42412,"42412":42413,"42413":42414,"42414":42415,"42415":42416,"42416":42417,"42417":42418,"42418":42419,"42419":42420,"42420":42421,"42421":42422,"42422":42423,"42423":42424,"42424":42425,"42425":42426,"42426":42427,"42427":42428,"42428":42429,"42429":42430,"42430":42431,"42431":42432,"42432":42433,"42433":42434,"42434":42435,"42435":42436,"42436":42437,"42437":42438,"42438":42439,"42439":42440,"42440":42441,"42441":42442,"42442":42443,"42443":42444,"42444":42445,"42445":42446,"42446":42447,"42447":42448,"42448":42449,"42449":42450,"42450":42451,"42451":42452,"42452":42453,"42453":42454,"42454":42455,"42455":42456,"42456":42457,"42457":42458,"42458":42459,"42459":42460,"42460":42461,"42461":42462,"42462":42463,"42463":42464,"42464":42465,"42465":42466,"42466":42467,"42467":42468,"42468":42469,"42469":42470,"42470":42471,"42471":42472,"42472":42473,"42473":42474,"42474":42475,"42475":42476,"42476":42477,"42477":42478,"42478":42479,"42479":42480,"42480":42481,"42481":42482,"42482":42483,"42483":42484,"42484":42485,"42485":42486,"42486":42487,"42487":42488,"42488":42489,"42489":42490,"42490":42491,"42491":42492,"42492":42493,"42493":42494,"42494":42495,"42495":42496,"42496":42497,"42497":42498,"42498":42499,"42499":42500,"42500":42501,"42501":42502,"42502":42503,"42503":42504,"42504":42505,"42505":42506,"42506":42507,"42507":42508,"42508":42509,"42509":42510,"42510":42511,"42511":42512,"42512":42513,"42513":42514,"42514":42515,"42515":42516,"42516":42517,"42517":42518,"42518":42519,"42519":42520,"42520":42521,"42521":42522,"42522":42523,"42523":42524,"42524":42525,"42525":42526,"42526":42527,"42527":42528,"42528":42529,"42529":42530,"42530":42531,"42531":42532,"42532":42533,"42533":42534,"42534":42535,"42535":42536,"42536":42537,"42537":42538,"42538":42539,"42539":42540,"42540":42541,"42541":42542,"42542":42543,"42543":42544,"42544":42545,"42545":42546,"42546":42547,"42547":42548,"42548":42549,"42549":42550,"42550":42551,"42551":42552,"42552":42553,"42553":42554,"42554":42555,"42555":42556,"42556":42557,"42557":42558,"42558":42559,"42559":42560,"42560":42561,"42561":42562,"42562":42563,"42563":42564,"42564":42565,"42565":42566,"42566":42567,"42567":42568,"42568":42569,"42569":42570,"42570":42571,"42571":42572,"42572":42573,"42573":42574,"42574":42575,"42575":42576,"42576":42577,"42577":42578,"42578":42579,"42579":42580,"42580":42581,"42581":42582,"42582":42583,"42583":42584,"42584":42585,"42585":42586,"42586":42587,"42587":42588,"42588":42589,"42589":42590,"42590":42591,"42591":42592,"42592":42593,"42593":42594,"42594":42595,"42595":42596,"42596":42597,"42597":42598,"42598":42599,"42599":42600,"42600":42601,"42601":42602,"42602":42603,"42603":42604,"42604":42605,"42605":42606,"42606":42607,"42607":42608,"42608":42609,"42609":42610,"42610":42611,"42611":42612,"42612":42613,"42613":42614,"42614":42615,"42615":42616,"42616":42617,"42617":42618,"42618":42619,"42619":42620,"42620":42621,"42621":42622,"42622":42623,"42623":42624,"42624":42625,"42625":42626,"42626":42627,"42627":42628,"42628":42629,"42629":42630,"42630":42631,"42631":42632,"42632":42633,"42633":42634,"42634":42635,"42635":42636,"42636":42637,"42637":42638,"42638":42639,"42639":42640,"42640":42641,"42641":42642,"42642":42643,"42643":42644,"42644":42645,"42645":42646,"42646":42647,"42647":42648,"42648":42649,"42649":42650,"42650":42651,"42651":42652,"42652":42653,"42653":42654,"42654":42655,"42655":42656,"42656":42657,"42657":42658,"42658":42659,"42659":42660,"42660":42661,"42661":42662,"42662":42663,"42663":42664,"42664":42665,"42665":42666,"42666":42667,"42667":42668,"42668":42669,"42669":42670,"42670":42671,"42671":42672,"42672":42673,"42673":42674,"42674":42675,"42675":42676,"42676":42677,"42677":42678,"42678":42679,"42679":42680,"42680":42681,"42681":42682,"42682":42683,"42683":42684,"42684":42685,"42685":42686,"42686":42687,"42687":42688,"42688":42689,"42689":42690,"42690":42691,"42691":42692,"42692":42693,"42693":42694,"42694":42695,"42695":42696,"42696":42697,"42697":42698,"42698":42699,"42699":42700,"42700":42701,"42701":42702,"42702":42703,"42703":42704,"42704":42705,"42705":42706,"42706":42707,"42707":42708,"42708":42709,"42709":42710,"42710":42711,"42711":42712,"42712":42713,"42713":42714,"42714":42715,"42715":42716,"42716":42717,"42717":42718,"42718":42719,"42719":42720,"42720":42721,"42721":42722,"42722":42723,"42723":42724,"42724":42725,"42725":42726,"42726":42727,"42727":42728,"42728":42729,"42729":42730,"42730":42731,"42731":42732,"42732":42733,"42733":42734,"42734":42735,"42735":42736,"42736":42737,"42737":42738,"42738":42739,"42739":42740,"42740":42741,"42741":42742,"42742":42743,"42743":42744,"42744":42745,"42745":42746,"42746":42747,"42747":42748,"42748":42749,"42749":42750,"42750":42751,"42751":42752,"42752":42753,"42753":42754,"42754":42755,"42755":42756,"42756":42757,"42757":42758,"42758":42759,"42759":42760,"42760":42761,"42761":42762,"42762":42763,"42763":42764,"42764":42765,"42765":42766,"42766":42767,"42767":42768,"42768":42769,"42769":42770,"42770":42771,"42771":42772,"42772":42773,"42773":42774,"42774":42775,"42775":42776,"42776":42777,"42777":42778,"42778":42779,"42779":42780,"42780":42781,"42781":42782,"42782":42783,"42783":42784,"42784":42785,"42785":42786,"42786":42787,"42787":42788,"42788":42789,"42789":42790,"42790":42791,"42791":42792,"42792":42793,"42793":42794,"42794":42795,"42795":42796,"42796":42797,"42797":42798,"42798":42799,"42799":42800,"42800":42801,"42801":42802,"42802":42803,"42803":42804,"42804":42805,"42805":42806,"42806":42807,"42807":42808,"42808":42809,"42809":42810,"42810":42811,"42811":42812,"42812":42813,"42813":42814,"42814":42815,"42815":42816,"42816":42817,"42817":42818,"42818":42819,"42819":42820,"42820":42821,"42821":42822,"42822":42823,"42823":42824,"42824":42825,"42825":42826,"42826":42827,"42827":42828,"42828":42829,"42829":42830,"42830":42831,"42831":42832,"42832":42833,"42833":42834,"42834":42835,"42835":42836,"42836":42837,"42837":42838,"42838":42839,"42839":42840,"42840":42841,"42841":42842,"42842":42843,"42843":42844,"42844":42845,"42845":42846,"42846":42847,"42847":42848,"42848":42849,"42849":42850,"42850":42851,"42851":42852,"42852":42853,"42853":42854,"42854":42855,"42855":42856,"42856":42857,"42857":42858,"42858":42859,"42859":42860,"42860":42861,"42861":42862,"42862":42863,"42863":42864,"42864":42865,"42865":42866,"42866":42867,"42867":42868,"42868":42869,"42869":42870,"42870":42871,"42871":42872,"42872":42873,"42873":42874,"42874":42875,"42875":42876,"42876":42877,"42877":42878,"42878":42879,"42879":42880,"42880":42881,"42881":42882,"42882":42883,"42883":42884,"42884":42885,"42885":42886,"42886":42887,"42887":42888,"42888":42889,"42889":42890,"42890":42891,"42891":42892,"42892":42893,"42893":42894,"42894":42895,"42895":42896,"42896":42897,"42897":42898,"42898":42899,"42899":42900,"42900":42901,"42901":42902,"42902":42903,"42903":42904,"42904":42905,"42905":42906,"42906":42907,"42907":42908,"42908":42909,"42909":42910,"42910":42911,"42911":42912,"42912":42913,"42913":42914,"42914":42915,"42915":42916,"42916":42917,"42917":42918,"42918":42919,"42919":42920,"42920":42921,"42921":42922,"42922":42923,"42923":42924,"42924":42925,"42925":42926,"42926":42927,"42927":42928,"42928":42929,"42929":42930,"42930":42931,"42931":42932,"42932":42933,"42933":42934,"42934":42935,"42935":42936,"42936":42937,"42937":42938,"42938":42939,"42939":42940,"42940":42941,"42941":42942,"42942":42943,"42943":42944,"42944":42945,"42945":42946,"42946":42947,"42947":42948,"42948":42949,"42949":42950,"42950":42951,"42951":42952,"42952":42953,"42953":42954,"42954":42955,"42955":42956,"42956":42957,"42957":42958,"42958":42959,"42959":42960,"42960":42961,"42961":42962,"42962":42963,"42963":42964,"42964":42965,"42965":42966,"42966":42967,"42967":42968,"42968":42969,"42969":42970,"42970":42971,"42971":42972,"42972":42973,"42973":42974,"42974":42975,"42975":42976,"42976":42977,"42977":42978,"42978":42979,"42979":42980,"42980":42981,"42981":42982,"42982":42983,"42983":42984,"42984":42985,"42985":42986,"42986":42987,"42987":42988,"42988":42989,"42989":42990,"42990":42991,"42991":42992,"42992":42993,"42993":42994,"42994":42995,"42995":42996,"42996":42997,"42997":42998,"42998":42999,"42999":43000,"43000":43001,"43001":43002,"43002":43003,"43003":43004,"43004":43005,"43005":43006,"43006":43007,"43007":43008,"43008":43009,"43009":43010,"43010":43011,"43011":43012,"43012":43013,"43013":43014,"43014":43015,"43015":43016,"43016":43017,"43017":43018,"43018":43019,"43019":43020,"43020":43021,"43021":43022,"43022":43023,"43023":43024,"43024":43025,"43025":43026,"43026":43027,"43027":43028,"43028":43029,"43029":43030,"43030":43031,"43031":43032,"43032":43033,"43033":43034,"43034":43035,"43035":43036,"43036":43037,"43037":43038,"43038":43039,"43039":43040,"43040":43041,"43041":43042,"43042":43043,"43043":43044,"43044":43045,"43045":43046,"43046":43047,"43047":43048,"43048":43049,"43049":43050,"43050":43051,"43051":43052,"43052":43053,"43053":43054,"43054":43055,"43055":43056,"43056":43057,"43057":43058,"43058":43059,"43059":43060,"43060":43061,"43061":43062,"43062":43063,"43063":43064,"43064":43065,"43065":43066,"43066":43067,"43067":43068,"43068":43069,"43069":43070,"43070":43071,"43071":43072,"43072":43073,"43073":43074,"43074":43075,"43075":43076,"43076":43077,"43077":43078,"43078":43079,"43079":43080,"43080":43081,"43081":43082,"43082":43083,"43083":43084,"43084":43085,"43085":43086,"43086":43087,"43087":43088,"43088":43089,"43089":43090,"43090":43091,"43091":43092,"43092":43093,"43093":43094,"43094":43095,"43095":43096,"43096":43097,"43097":43098,"43098":43099,"43099":43100,"43100":43101,"43101":43102,"43102":43103,"43103":43104,"43104":43105,"43105":43106,"43106":43107,"43107":43108,"43108":43109,"43109":43110,"43110":43111,"43111":43112,"43112":43113,"43113":43114,"43114":43115,"43115":43116,"43116":43117,"43117":43118,"43118":43119,"43119":43120,"43120":43121,"43121":43122,"43122":43123,"43123":43124,"43124":43125,"43125":43126,"43126":43127,"43127":43128,"43128":43129,"43129":43130,"43130":43131,"43131":43132,"43132":43133,"43133":43134,"43134":43135,"43135":43136,"43136":43137,"43137":43138,"43138":43139,"43139":43140,"43140":43141,"43141":43142,"43142":43143,"43143":43144,"43144":43145,"43145":43146,"43146":43147,"43147":43148,"43148":43149,"43149":43150,"43150":43151,"43151":43152,"43152":43153,"43153":43154,"43154":43155,"43155":43156,"43156":43157,"43157":43158,"43158":43159,"43159":43160,"43160":43161,"43161":43162,"43162":43163,"43163":43164,"43164":43165,"43165":43166,"43166":43167,"43167":43168,"43168":43169,"43169":43170,"43170":43171,"43171":43172,"43172":43173,"43173":43174,"43174":43175,"43175":43176,"43176":43177,"43177":43178,"43178":43179,"43179":43180,"43180":43181,"43181":43182,"43182":43183,"43183":43184,"43184":43185,"43185":43186,"43186":43187,"43187":43188,"43188":43189,"43189":43190,"43190":43191,"43191":43192,"43192":43193,"43193":43194,"43194":43195,"43195":43196,"43196":43197,"43197":43198,"43198":43199,"43199":43200,"43200":43201,"43201":43202,"43202":43203,"43203":43204,"43204":43205,"43205":43206,"43206":43207,"43207":43208,"43208":43209,"43209":43210,"43210":43211,"43211":43212,"43212":43213,"43213":43214,"43214":43215,"43215":43216,"43216":43217,"43217":43218,"43218":43219,"43219":43220,"43220":43221,"43221":43222,"43222":43223,"43223":43224,"43224":43225,"43225":43226,"43226":43227,"43227":43228,"43228":43229,"43229":43230,"43230":43231,"43231":43232,"43232":43233,"43233":43234,"43234":43235,"43235":43236,"43236":43237,"43237":43238,"43238":43239,"43239":43240,"43240":43241,"43241":43242,"43242":43243,"43243":43244,"43244":43245,"43245":43246,"43246":43247,"43247":43248,"43248":43249,"43249":43250,"43250":43251,"43251":43252,"43252":43253,"43253":43254,"43254":43255,"43255":43256,"43256":43257,"43257":43258,"43258":43259,"43259":43260,"43260":43261,"43261":43262,"43262":43263,"43263":43264,"43264":43265,"43265":43266,"43266":43267,"43267":43268,"43268":43269,"43269":43270,"43270":43271,"43271":43272,"43272":43273,"43273":43274,"43274":43275,"43275":43276,"43276":43277,"43277":43278,"43278":43279,"43279":43280,"43280":43281,"43281":43282,"43282":43283,"43283":43284,"43284":43285,"43285":43286,"43286":43287,"43287":43288,"43288":43289,"43289":43290,"43290":43291,"43291":43292,"43292":43293,"43293":43294,"43294":43295,"43295":43296,"43296":43297,"43297":43298,"43298":43299,"43299":43300,"43300":43301,"43301":43302,"43302":43303,"43303":43304,"43304":43305,"43305":43306,"43306":43307,"43307":43308,"43308":43309,"43309":43310,"43310":43311,"43311":43312,"43312":43313,"43313":43314,"43314":43315,"43315":43316,"43316":43317,"43317":43318,"43318":43319,"43319":43320,"43320":43321,"43321":43322,"43322":43323,"43323":43324,"43324":43325,"43325":43326,"43326":43327,"43327":43328,"43328":43329,"43329":43330,"43330":43331,"43331":43332,"43332":43333,"43333":43334,"43334":43335,"43335":43336,"43336":43337,"43337":43338,"43338":43339,"43339":43340,"43340":43341,"43341":43342,"43342":43343,"43343":43344,"43344":43345,"43345":43346,"43346":43347,"43347":43348,"43348":43349,"43349":43350,"43350":43351,"43351":43352,"43352":43353,"43353":43354,"43354":43355,"43355":43356,"43356":43357,"43357":43358,"43358":43359,"43359":43360,"43360":43361,"43361":43362,"43362":43363,"43363":43364,"43364":43365,"43365":43366,"43366":43367,"43367":43368,"43368":43369,"43369":43370,"43370":43371,"43371":43372,"43372":43373,"43373":43374,"43374":43375,"43375":43376,"43376":43377,"43377":43378,"43378":43379,"43379":43380,"43380":43381,"43381":43382,"43382":43383,"43383":43384,"43384":43385,"43385":43386,"43386":43387,"43387":43388,"43388":43389,"43389":43390,"43390":43391,"43391":43392,"43392":43393,"43393":43394,"43394":43395,"43395":43396,"43396":43397,"43397":43398,"43398":43399,"43399":43400,"43400":43401,"43401":43402,"43402":43403,"43403":43404,"43404":43405,"43405":43406,"43406":43407,"43407":43408,"43408":43409,"43409":43410,"43410":43411,"43411":43412,"43412":43413,"43413":43414,"43414":43415,"43415":43416,"43416":43417,"43417":43418,"43418":43419,"43419":43420,"43420":43421,"43421":43422,"43422":43423,"43423":43424,"43424":43425,"43425":43426,"43426":43427,"43427":43428,"43428":43429,"43429":43430,"43430":43431,"43431":43432,"43432":43433,"43433":43434,"43434":43435,"43435":43436,"43436":43437,"43437":43438,"43438":43439,"43439":43440,"43440":43441,"43441":43442,"43442":43443,"43443":43444,"43444":43445,"43445":43446,"43446":43447,"43447":43448,"43448":43449,"43449":43450,"43450":43451,"43451":43452,"43452":43453,"43453":43454,"43454":43455,"43455":43456,"43456":43457,"43457":43458,"43458":43459,"43459":43460,"43460":43461,"43461":43462,"43462":43463,"43463":43464,"43464":43465,"43465":43466,"43466":43467,"43467":43468,"43468":43469,"43469":43470,"43470":43471,"43471":43472,"43472":43473,"43473":43474,"43474":43475,"43475":43476,"43476":43477,"43477":43478,"43478":43479,"43479":43480,"43480":43481,"43481":43482,"43482":43483,"43483":43484,"43484":43485,"43485":43486,"43486":43487,"43487":43488,"43488":43489,"43489":43490,"43490":43491,"43491":43492,"43492":43493,"43493":43494,"43494":43495,"43495":43496,"43496":43497,"43497":43498,"43498":43499,"43499":43500,"43500":43501,"43501":43502,"43502":43503,"43503":43504,"43504":43505,"43505":43506,"43506":43507,"43507":43508,"43508":43509,"43509":43510,"43510":43511,"43511":43512,"43512":43513,"43513":43514,"43514":43515,"43515":43516,"43516":43517,"43517":43518,"43518":43519,"43519":43520,"43520":43521,"43521":43522,"43522":43523,"43523":43524,"43524":43525,"43525":43526,"43526":43527,"43527":43528,"43528":43529,"43529":43530,"43530":43531,"43531":43532,"43532":43533,"43533":43534,"43534":43535,"43535":43536,"43536":43537,"43537":43538,"43538":43539,"43539":43540,"43540":43541,"43541":43542,"43542":43543,"43543":43544,"43544":43545,"43545":43546,"43546":43547,"43547":43548,"43548":43549,"43549":43550,"43550":43551,"43551":43552,"43552":43553,"43553":43554,"43554":43555,"43555":43556,"43556":43557,"43557":43558,"43558":43559,"43559":43560,"43560":43561,"43561":43562,"43562":43563,"43563":43564,"43564":43565,"43565":43566,"43566":43567,"43567":43568,"43568":43569,"43569":43570,"43570":43571,"43571":43572,"43572":43573,"43573":43574,"43574":43575,"43575":43576,"43576":43577,"43577":43578,"43578":43579,"43579":43580,"43580":43581,"43581":43582,"43582":43583,"43583":43584,"43584":43585,"43585":43586,"43586":43587,"43587":43588,"43588":43589,"43589":43590,"43590":43591,"43591":43592,"43592":43593,"43593":43594,"43594":43595,"43595":43596,"43596":43597,"43597":43598,"43598":43599,"43599":43600,"43600":43601,"43601":43602,"43602":43603,"43603":43604,"43604":43605,"43605":43606,"43606":43607,"43607":43608,"43608":43609,"43609":43610,"43610":43611,"43611":43612,"43612":43613,"43613":43614,"43614":43615,"43615":43616,"43616":43617,"43617":43618,"43618":43619,"43619":43620,"43620":43621,"43621":43622,"43622":43623,"43623":43624,"43624":43625,"43625":43626,"43626":43627,"43627":43628,"43628":43629,"43629":43630,"43630":43631,"43631":43632,"43632":43633,"43633":43634,"43634":43635,"43635":43636,"43636":43637,"43637":43638,"43638":43639,"43639":43640,"43640":43641,"43641":43642,"43642":43643,"43643":43644,"43644":43645,"43645":43646,"43646":43647,"43647":43648,"43648":43649,"43649":43650,"43650":43651,"43651":43652,"43652":43653,"43653":43654,"43654":43655,"43655":43656,"43656":43657,"43657":43658,"43658":43659,"43659":43660,"43660":43661,"43661":43662,"43662":43663,"43663":43664,"43664":43665,"43665":43666,"43666":43667,"43667":43668,"43668":43669,"43669":43670,"43670":43671,"43671":43672,"43672":43673,"43673":43674,"43674":43675,"43675":43676,"43676":43677,"43677":43678,"43678":43679,"43679":43680,"43680":43681,"43681":43682,"43682":43683,"43683":43684,"43684":43685,"43685":43686,"43686":43687,"43687":43688,"43688":43689,"43689":43690,"43690":43691,"43691":43692,"43692":43693,"43693":43694,"43694":43695,"43695":43696,"43696":43697,"43697":43698,"43698":43699,"43699":43700,"43700":43701,"43701":43702,"43702":43703,"43703":43704,"43704":43705,"43705":43706,"43706":43707,"43707":43708,"43708":43709,"43709":43710,"43710":43711,"43711":43712,"43712":43713,"43713":43714,"43714":43715,"43715":43716,"43716":43717,"43717":43718,"43718":43719,"43719":43720,"43720":43721,"43721":43722,"43722":43723,"43723":43724,"43724":43725,"43725":43726,"43726":43727,"43727":43728,"43728":43729,"43729":43730,"43730":43731,"43731":43732,"43732":43733,"43733":43734,"43734":43735,"43735":43736,"43736":43737,"43737":43738,"43738":43739,"43739":43740,"43740":43741,"43741":43742,"43742":43743,"43743":43744,"43744":43745,"43745":43746,"43746":43747,"43747":43748,"43748":43749,"43749":43750,"43750":43751,"43751":43752,"43752":43753,"43753":43754,"43754":43755,"43755":43756,"43756":43757,"43757":43758,"43758":43759,"43759":43760,"43760":43761,"43761":43762,"43762":43763,"43763":43764,"43764":43765,"43765":43766,"43766":43767,"43767":43768,"43768":43769,"43769":43770,"43770":43771,"43771":43772,"43772":43773,"43773":43774,"43774":43775,"43775":43776,"43776":43777,"43777":43778,"43778":43779,"43779":43780,"43780":43781,"43781":43782,"43782":43783,"43783":43784,"43784":43785,"43785":43786,"43786":43787,"43787":43788,"43788":43789,"43789":43790,"43790":43791,"43791":43792,"43792":43793,"43793":43794,"43794":43795,"43795":43796,"43796":43797,"43797":43798,"43798":43799,"43799":43800,"43800":43801,"43801":43802,"43802":43803,"43803":43804,"43804":43805,"43805":43806,"43806":43807,"43807":43808,"43808":43809,"43809":43810,"43810":43811,"43811":43812,"43812":43813,"43813":43814,"43814":43815,"43815":43816,"43816":43817,"43817":43818,"43818":43819,"43819":43820,"43820":43821,"43821":43822,"43822":43823,"43823":43824,"43824":43825,"43825":43826,"43826":43827,"43827":43828,"43828":43829,"43829":43830,"43830":43831,"43831":43832,"43832":43833,"43833":43834,"43834":43835,"43835":43836,"43836":43837,"43837":43838,"43838":43839,"43839":43840,"43840":43841,"43841":43842,"43842":43843,"43843":43844,"43844":43845,"43845":43846,"43846":43847,"43847":43848,"43848":43849,"43849":43850,"43850":43851,"43851":43852,"43852":43853,"43853":43854,"43854":43855,"43855":43856,"43856":43857,"43857":43858,"43858":43859,"43859":43860,"43860":43861,"43861":43862,"43862":43863,"43863":43864,"43864":43865,"43865":43866,"43866":43867,"43867":43868,"43868":43869,"43869":43870,"43870":43871,"43871":43872,"43872":43873,"43873":43874,"43874":43875,"43875":43876,"43876":43877,"43877":43878,"43878":43879,"43879":43880,"43880":43881,"43881":43882,"43882":43883,"43883":43884,"43884":43885,"43885":43886,"43886":43887,"43887":43888,"43888":43889,"43889":43890,"43890":43891,"43891":43892,"43892":43893,"43893":43894,"43894":43895,"43895":43896,"43896":43897,"43897":43898,"43898":43899,"43899":43900,"43900":43901,"43901":43902,"43902":43903,"43903":43904,"43904":43905,"43905":43906,"43906":43907,"43907":43908,"43908":43909,"43909":43910,"43910":43911,"43911":43912,"43912":43913,"43913":43914,"43914":43915,"43915":43916,"43916":43917,"43917":43918,"43918":43919,"43919":43920,"43920":43921,"43921":43922,"43922":43923,"43923":43924,"43924":43925,"43925":43926,"43926":43927,"43927":43928,"43928":43929,"43929":43930,"43930":43931,"43931":43932,"43932":43933,"43933":43934,"43934":43935,"43935":43936,"43936":43937,"43937":43938,"43938":43939,"43939":43940,"43940":43941,"43941":43942,"43942":43943,"43943":43944,"43944":43945,"43945":43946,"43946":43947,"43947":43948,"43948":43949,"43949":43950,"43950":43951,"43951":43952,"43952":43953,"43953":43954,"43954":43955,"43955":43956,"43956":43957,"43957":43958,"43958":43959,"43959":43960,"43960":43961,"43961":43962,"43962":43963,"43963":43964,"43964":43965,"43965":43966,"43966":43967,"43967":43968,"43968":43969,"43969":43970,"43970":43971,"43971":43972,"43972":43973,"43973":43974,"43974":43975,"43975":43976,"43976":43977,"43977":43978,"43978":43979,"43979":43980,"43980":43981,"43981":43982,"43982":43983,"43983":43984,"43984":43985,"43985":43986,"43986":43987,"43987":43988,"43988":43989,"43989":43990,"43990":43991,"43991":43992,"43992":43993,"43993":43994,"43994":43995,"43995":43996,"43996":43997,"43997":43998,"43998":43999,"43999":44000,"44000":44001,"44001":44002,"44002":44003,"44003":44004,"44004":44005,"44005":44006,"44006":44007,"44007":44008,"44008":44009,"44009":44010,"44010":44011,"44011":44012,"44012":44013,"44013":44014,"44014":44015,"44015":44016,"44016":44017,"44017":44018,"44018":44019,"44019":44020,"44020":44021,"44021":44022,"44022":44023,"44023":44024,"44024":44025,"44025":44026,"44026":44027,"44027":44028,"44028":44029,"44029":44030,"44030":44031,"44031":44032,"44032":44033,"44033":44034,"44034":44035,"44035":44036,"44036":44037,"44037":44038,"44038":44039,"44039":44040,"44040":44041,"44041":44042,"44042":44043,"44043":44044,"44044":44045,"44045":44046,"44046":44047,"44047":44048,"44048":44049,"44049":44050,"44050":44051,"44051":44052,"44052":44053,"44053":44054,"44054":44055,"44055":44056,"44056":44057,"44057":44058,"44058":44059,"44059":44060,"44060":44061,"44061":44062,"44062":44063,"44063":44064,"44064":44065,"44065":44066,"44066":44067,"44067":44068,"44068":44069,"44069":44070,"44070":44071,"44071":44072,"44072":44073,"44073":44074,"44074":44075,"44075":44076,"44076":44077,"44077":44078,"44078":44079,"44079":44080,"44080":44081,"44081":44082,"44082":44083,"44083":44084,"44084":44085,"44085":44086,"44086":44087,"44087":44088,"44088":44089,"44089":44090,"44090":44091,"44091":44092,"44092":44093,"44093":44094,"44094":44095,"44095":44096,"44096":44097,"44097":44098,"44098":44099,"44099":44100,"44100":44101,"44101":44102,"44102":44103,"44103":44104,"44104":44105,"44105":44106,"44106":44107,"44107":44108,"44108":44109,"44109":44110,"44110":44111,"44111":44112,"44112":44113,"44113":44114,"44114":44115,"44115":44116,"44116":44117,"44117":44118,"44118":44119,"44119":44120,"44120":44121,"44121":44122,"44122":44123,"44123":44124,"44124":44125,"44125":44126,"44126":44127,"44127":44128,"44128":44129,"44129":44130,"44130":44131,"44131":44132,"44132":44133,"44133":44134,"44134":44135,"44135":44136,"44136":44137,"44137":44138,"44138":44139,"44139":44140,"44140":44141,"44141":44142,"44142":44143,"44143":44144,"44144":44145,"44145":44146,"44146":44147,"44147":44148,"44148":44149,"44149":44150,"44150":44151,"44151":44152,"44152":44153,"44153":44154,"44154":44155,"44155":44156,"44156":44157,"44157":44158,"44158":44159,"44159":44160,"44160":44161,"44161":44162,"44162":44163,"44163":44164,"44164":44165,"44165":44166,"44166":44167,"44167":44168,"44168":44169,"44169":44170,"44170":44171,"44171":44172,"44172":44173,"44173":44174,"44174":44175,"44175":44176,"44176":44177,"44177":44178,"44178":44179,"44179":44180,"44180":44181,"44181":44182,"44182":44183,"44183":44184,"44184":44185,"44185":44186,"44186":44187,"44187":44188,"44188":44189,"44189":44190,"44190":44191,"44191":44192,"44192":44193,"44193":44194,"44194":44195,"44195":44196,"44196":44197,"44197":44198,"44198":44199,"44199":44200,"44200":44201,"44201":44202,"44202":44203},"gender":{"0":1,"1":1,"2":1,"3":1,"4":1,"5":2,"6":2,"7":2,"8":2,"9":2,"10":2,"11":2,"12":2,"13":2,"14":2,"15":2,"16":2,"17":1,"18":1,"19":2,"20":2,"21":1,"22":1,"23":2,"24":2,"25":2,"26":2,"27":2,"28":2,"29":2,"30":1,"31":1,"32":1,"33":2,"34":1,"35":2,"36":1,"37":1,"38":1,"39":2,"40":1,"41":1,"42":1,"43":2,"44":1,"45":2,"46":2,"47":2,"48":2,"49":2,"50":1,"51":2,"52":2,"53":2,"54":1,"55":1,"56":1,"57":2,"58":2,"59":2,"60":2,"61":2,"62":1,"63":2,"64":2,"65":1,"66":2,"67":2,"68":1,"69":2,"70":1,"71":2,"72":2,"73":2,"74":2,"75":2,"76":1,"77":2,"78":2,"79":2,"80":1,"81":2,"82":1,"83":2,"84":2,"85":2,"86":2,"87":2,"88":2,"89":2,"90":1,"91":2,"92":1,"93":1,"94":1,"95":1,"96":2,"97":2,"98":2,"99":1,"100":2,"101":1,"102":2,"103":2,"104":2,"105":1,"106":2,"107":1,"108":1,"109":2,"110":2,"111":1,"112":1,"113":2,"114":1,"115":2,"116":2,"117":1,"118":2,"119":2,"120":2,"121":2,"122":1,"123":2,"124":1,"125":2,"126":1,"127":2,"128":2,"129":1,"130":1,"131":1,"132":1,"133":1,"134":1,"135":1,"136":2,"137":1,"138":2,"139":1,"140":1,"141":1,"142":1,"143":1,"144":2,"145":1,"146":1,"147":2,"148":1,"149":2,"150":2,"151":1,"152":1,"153":1,"154":1,"155":2,"156":1,"157":1,"158":2,"159":2,"160":2,"161":1,"162":2,"163":1,"164":2,"165":2,"166":2,"167":2,"168":1,"169":2,"170":2,"171":2,"172":1,"173":2,"174":2,"175":2,"176":1,"177":1,"178":1,"179":2,"180":2,"181":2,"182":1,"183":1,"184":1,"185":2,"186":2,"187":2,"188":1,"189":2,"190":1,"191":2,"192":1,"193":1,"194":1,"195":2,"196":2,"197":2,"198":1,"199":2,"200":1,"201":1,"202":2,"203":1,"204":2,"205":1,"206":2,"207":1,"208":2,"209":1,"210":2,"211":1,"212":2,"213":1,"214":2,"215":1,"216":2,"217":2,"218":2,"219":1,"220":2,"221":1,"222":1,"223":2,"224":1,"225":1,"226":1,"227":2,"228":1,"229":1,"230":2,"231":2,"232":2,"233":1,"234":1,"235":1,"236":1,"237":1,"238":2,"239":1,"240":1,"241":2,"242":2,"243":2,"244":1,"245":2,"246":1,"247":1,"248":1,"249":2,"250":2,"251":2,"252":1,"253":2,"254":2,"255":2,"256":1,"257":1,"258":2,"259":2,"260":2,"261":2,"262":1,"263":2,"264":1,"265":1,"266":1,"267":2,"268":2,"269":2,"270":2,"271":2,"272":2,"273":1,"274":1,"275":2,"276":2,"277":1,"278":1,"279":1,"280":2,"281":1,"282":1,"283":1,"284":2,"285":2,"286":1,"287":2,"288":2,"289":2,"290":1,"291":1,"292":1,"293":1,"294":2,"295":1,"296":2,"297":2,"298":1,"299":1,"300":2,"301":1,"302":1,"303":1,"304":1,"305":2,"306":1,"307":1,"308":2,"309":1,"310":1,"311":1,"312":2,"313":1,"314":2,"315":2,"316":1,"317":2,"318":2,"319":2,"320":1,"321":1,"322":1,"323":2,"324":2,"325":2,"326":1,"327":2,"328":1,"329":1,"330":1,"331":1,"332":2,"333":1,"334":2,"335":2,"336":1,"337":2,"338":2,"339":2,"340":2,"341":1,"342":2,"343":2,"344":1,"345":1,"346":2,"347":1,"348":2,"349":2,"350":1,"351":2,"352":2,"353":2,"354":1,"355":2,"356":2,"357":1,"358":1,"359":2,"360":1,"361":1,"362":2,"363":2,"364":1,"365":2,"366":2,"367":2,"368":2,"369":1,"370":2,"371":2,"372":2,"373":1,"374":1,"375":2,"376":2,"377":2,"378":1,"379":1,"380":1,"381":2,"382":1,"383":2,"384":2,"385":1,"386":2,"387":1,"388":2,"389":2,"390":1,"391":2,"392":2,"393":2,"394":1,"395":1,"396":2,"397":2,"398":2,"399":2,"400":2,"401":1,"402":2,"403":1,"404":2,"405":1,"406":1,"407":1,"408":2,"409":1,"410":2,"411":2,"412":2,"413":1,"414":1,"415":2,"416":2,"417":1,"418":2,"419":1,"420":1,"421":2,"422":2,"423":2,"424":2,"425":1,"426":2,"427":1,"428":1,"429":2,"430":1,"431":1,"432":2,"433":1,"434":1,"435":2,"436":2,"437":1,"438":2,"439":2,"440":2,"441":2,"442":1,"443":1,"444":2,"445":1,"446":2,"447":2,"448":2,"449":2,"450":1,"451":1,"452":1,"453":2,"454":1,"455":1,"456":2,"457":2,"458":2,"459":2,"460":2,"461":1,"462":2,"463":2,"464":1,"465":1,"466":2,"467":1,"468":1,"469":1,"470":2,"471":1,"472":1,"473":1,"474":2,"475":2,"476":2,"477":1,"478":1,"479":2,"480":1,"481":1,"482":2,"483":1,"484":1,"485":1,"486":2,"487":1,"488":2,"489":2,"490":2,"491":1,"492":1,"493":1,"494":1,"495":1,"496":2,"497":2,"498":2,"499":1,"500":1,"501":1,"502":2,"503":2,"504":1,"505":1,"506":1,"507":2,"508":2,"509":1,"510":2,"511":1,"512":2,"513":1,"514":1,"515":1,"516":2,"517":1,"518":1,"519":2,"520":2,"521":1,"522":2,"523":1,"524":2,"525":1,"526":2,"527":1,"528":1,"529":1,"530":2,"531":1,"532":2,"533":1,"534":1,"535":1,"536":1,"537":1,"538":2,"539":2,"540":2,"541":2,"542":1,"543":2,"544":2,"545":2,"546":2,"547":1,"548":2,"549":1,"550":1,"551":1,"552":1,"553":1,"554":1,"555":1,"556":2,"557":2,"558":2,"559":2,"560":2,"561":2,"562":1,"563":2,"564":2,"565":2,"566":2,"567":2,"568":1,"569":2,"570":1,"571":2,"572":1,"573":2,"574":1,"575":1,"576":1,"577":1,"578":1,"579":2,"580":2,"581":2,"582":1,"583":1,"584":1,"585":1,"586":2,"587":1,"588":2,"589":2,"590":1,"591":1,"592":1,"593":1,"594":1,"595":1,"596":2,"597":2,"598":1,"599":1,"600":2,"601":2,"602":2,"603":2,"604":2,"605":2,"606":1,"607":2,"608":1,"609":1,"610":1,"611":2,"612":2,"613":2,"614":2,"615":2,"616":1,"617":1,"618":2,"619":2,"620":1,"621":1,"622":1,"623":1,"624":2,"625":1,"626":2,"627":1,"628":2,"629":2,"630":1,"631":1,"632":1,"633":1,"634":1,"635":2,"636":1,"637":2,"638":1,"639":2,"640":2,"641":1,"642":2,"643":1,"644":1,"645":2,"646":1,"647":1,"648":2,"649":2,"650":1,"651":2,"652":2,"653":1,"654":2,"655":1,"656":1,"657":2,"658":1,"659":1,"660":1,"661":1,"662":2,"663":2,"664":2,"665":1,"666":1,"667":1,"668":2,"669":1,"670":1,"671":2,"672":2,"673":2,"674":1,"675":2,"676":2,"677":2,"678":2,"679":2,"680":1,"681":1,"682":2,"683":2,"684":1,"685":2,"686":1,"687":2,"688":2,"689":1,"690":1,"691":2,"692":1,"693":2,"694":2,"695":2,"696":2,"697":2,"698":1,"699":2,"700":2,"701":2,"702":2,"703":1,"704":2,"705":1,"706":1,"707":2,"708":2,"709":2,"710":2,"711":2,"712":1,"713":2,"714":2,"715":1,"716":1,"717":1,"718":1,"719":2,"720":2,"721":2,"722":1,"723":2,"724":2,"725":1,"726":1,"727":1,"728":2,"729":2,"730":1,"731":2,"732":1,"733":1,"734":1,"735":2,"736":2,"737":1,"738":1,"739":2,"740":1,"741":2,"742":1,"743":2,"744":2,"745":2,"746":2,"747":1,"748":2,"749":1,"750":1,"751":1,"752":1,"753":2,"754":1,"755":1,"756":1,"757":1,"758":2,"759":1,"760":2,"761":1,"762":2,"763":1,"764":2,"765":2,"766":1,"767":2,"768":2,"769":1,"770":2,"771":2,"772":2,"773":1,"774":2,"775":2,"776":1,"777":1,"778":1,"779":2,"780":2,"781":2,"782":1,"783":2,"784":1,"785":2,"786":2,"787":2,"788":2,"789":1,"790":1,"791":2,"792":1,"793":2,"794":2,"795":1,"796":2,"797":2,"798":2,"799":2,"800":2,"801":2,"802":1,"803":2,"804":2,"805":1,"806":1,"807":2,"808":1,"809":2,"810":2,"811":1,"812":1,"813":2,"814":1,"815":2,"816":1,"817":1,"818":1,"819":2,"820":2,"821":2,"822":2,"823":2,"824":1,"825":1,"826":1,"827":1,"828":1,"829":2,"830":2,"831":2,"832":1,"833":2,"834":2,"835":1,"836":1,"837":2,"838":1,"839":2,"840":1,"841":2,"842":1,"843":1,"844":2,"845":2,"846":1,"847":2,"848":2,"849":1,"850":2,"851":1,"852":2,"853":2,"854":2,"855":2,"856":1,"857":1,"858":1,"859":1,"860":2,"861":2,"862":1,"863":2,"864":2,"865":1,"866":2,"867":2,"868":2,"869":1,"870":2,"871":1,"872":1,"873":1,"874":1,"875":2,"876":2,"877":2,"878":1,"879":2,"880":2,"881":2,"882":1,"883":1,"884":1,"885":1,"886":1,"887":1,"888":1,"889":2,"890":2,"891":2,"892":2,"893":1,"894":1,"895":1,"896":2,"897":2,"898":1,"899":2,"900":2,"901":2,"902":2,"903":2,"904":2,"905":1,"906":2,"907":1,"908":2,"909":1,"910":2,"911":1,"912":1,"913":1,"914":1,"915":1,"916":1,"917":2,"918":1,"919":2,"920":2,"921":2,"922":2,"923":2,"924":1,"925":2,"926":2,"927":1,"928":1,"929":2,"930":1,"931":1,"932":1,"933":1,"934":1,"935":1,"936":1,"937":1,"938":1,"939":2,"940":1,"941":2,"942":1,"943":1,"944":2,"945":1,"946":2,"947":2,"948":2,"949":1,"950":1,"951":1,"952":2,"953":1,"954":2,"955":2,"956":2,"957":1,"958":1,"959":2,"960":2,"961":1,"962":1,"963":2,"964":1,"965":1,"966":2,"967":2,"968":1,"969":2,"970":2,"971":1,"972":2,"973":2,"974":2,"975":2,"976":1,"977":1,"978":1,"979":2,"980":2,"981":2,"982":2,"983":2,"984":1,"985":2,"986":1,"987":1,"988":2,"989":1,"990":1,"991":1,"992":2,"993":2,"994":1,"995":1,"996":2,"997":1,"998":2,"999":1,"1000":1,"1001":1,"1002":1,"1003":1,"1004":1,"1005":2,"1006":2,"1007":1,"1008":1,"1009":2,"1010":1,"1011":2,"1012":1,"1013":2,"1014":1,"1015":1,"1016":2,"1017":1,"1018":2,"1019":1,"1020":1,"1021":2,"1022":2,"1023":1,"1024":1,"1025":2,"1026":2,"1027":2,"1028":1,"1029":2,"1030":1,"1031":1,"1032":2,"1033":1,"1034":2,"1035":2,"1036":2,"1037":1,"1038":2,"1039":2,"1040":2,"1041":2,"1042":2,"1043":1,"1044":1,"1045":1,"1046":2,"1047":1,"1048":2,"1049":2,"1050":1,"1051":1,"1052":2,"1053":1,"1054":2,"1055":2,"1056":1,"1057":1,"1058":2,"1059":1,"1060":2,"1061":2,"1062":1,"1063":2,"1064":1,"1065":1,"1066":2,"1067":2,"1068":1,"1069":2,"1070":2,"1071":2,"1072":1,"1073":1,"1074":1,"1075":1,"1076":1,"1077":2,"1078":2,"1079":2,"1080":2,"1081":1,"1082":1,"1083":2,"1084":1,"1085":2,"1086":2,"1087":2,"1088":1,"1089":1,"1090":1,"1091":2,"1092":1,"1093":2,"1094":1,"1095":2,"1096":1,"1097":2,"1098":1,"1099":2,"1100":2,"1101":2,"1102":2,"1103":1,"1104":1,"1105":2,"1106":1,"1107":2,"1108":2,"1109":2,"1110":2,"1111":2,"1112":1,"1113":1,"1114":1,"1115":2,"1116":2,"1117":1,"1118":2,"1119":2,"1120":1,"1121":1,"1122":2,"1123":2,"1124":2,"1125":1,"1126":2,"1127":1,"1128":2,"1129":1,"1130":2,"1131":2,"1132":2,"1133":2,"1134":2,"1135":2,"1136":2,"1137":2,"1138":1,"1139":1,"1140":2,"1141":1,"1142":1,"1143":1,"1144":1,"1145":1,"1146":1,"1147":1,"1148":2,"1149":2,"1150":2,"1151":2,"1152":2,"1153":1,"1154":1,"1155":1,"1156":2,"1157":1,"1158":2,"1159":1,"1160":1,"1161":2,"1162":2,"1163":2,"1164":1,"1165":2,"1166":2,"1167":2,"1168":2,"1169":1,"1170":2,"1171":2,"1172":2,"1173":2,"1174":1,"1175":2,"1176":2,"1177":2,"1178":1,"1179":2,"1180":1,"1181":1,"1182":2,"1183":2,"1184":1,"1185":1,"1186":1,"1187":2,"1188":2,"1189":2,"1190":2,"1191":2,"1192":1,"1193":2,"1194":2,"1195":2,"1196":1,"1197":1,"1198":1,"1199":1,"1200":2,"1201":2,"1202":1,"1203":1,"1204":2,"1205":1,"1206":2,"1207":2,"1208":1,"1209":1,"1210":1,"1211":2,"1212":2,"1213":1,"1214":2,"1215":2,"1216":1,"1217":1,"1218":2,"1219":1,"1220":2,"1221":2,"1222":2,"1223":1,"1224":1,"1225":2,"1226":2,"1227":1,"1228":2,"1229":2,"1230":2,"1231":1,"1232":2,"1233":1,"1234":1,"1235":2,"1236":2,"1237":2,"1238":1,"1239":2,"1240":2,"1241":2,"1242":1,"1243":2,"1244":2,"1245":1,"1246":2,"1247":1,"1248":2,"1249":1,"1250":1,"1251":2,"1252":2,"1253":2,"1254":2,"1255":1,"1256":2,"1257":2,"1258":1,"1259":2,"1260":2,"1261":1,"1262":1,"1263":1,"1264":1,"1265":2,"1266":1,"1267":2,"1268":1,"1269":2,"1270":2,"1271":1,"1272":2,"1273":2,"1274":2,"1275":1,"1276":1,"1277":1,"1278":1,"1279":1,"1280":1,"1281":2,"1282":1,"1283":2,"1284":2,"1285":2,"1286":2,"1287":2,"1288":1,"1289":2,"1290":2,"1291":2,"1292":1,"1293":2,"1294":1,"1295":2,"1296":1,"1297":1,"1298":2,"1299":1,"1300":1,"1301":2,"1302":2,"1303":1,"1304":1,"1305":1,"1306":2,"1307":2,"1308":2,"1309":1,"1310":2,"1311":1,"1312":2,"1313":2,"1314":1,"1315":2,"1316":1,"1317":1,"1318":1,"1319":2,"1320":2,"1321":2,"1322":1,"1323":2,"1324":2,"1325":2,"1326":1,"1327":1,"1328":1,"1329":1,"1330":2,"1331":1,"1332":2,"1333":1,"1334":1,"1335":1,"1336":2,"1337":2,"1338":1,"1339":1,"1340":2,"1341":1,"1342":2,"1343":1,"1344":2,"1345":1,"1346":2,"1347":1,"1348":2,"1349":1,"1350":2,"1351":1,"1352":2,"1353":2,"1354":1,"1355":1,"1356":2,"1357":1,"1358":2,"1359":1,"1360":2,"1361":1,"1362":2,"1363":1,"1364":2,"1365":2,"1366":1,"1367":2,"1368":2,"1369":2,"1370":1,"1371":2,"1372":1,"1373":1,"1374":2,"1375":2,"1376":2,"1377":1,"1378":2,"1379":2,"1380":1,"1381":2,"1382":1,"1383":1,"1384":2,"1385":2,"1386":1,"1387":2,"1388":1,"1389":2,"1390":1,"1391":2,"1392":1,"1393":1,"1394":2,"1395":1,"1396":2,"1397":2,"1398":2,"1399":2,"1400":1,"1401":2,"1402":2,"1403":1,"1404":2,"1405":2,"1406":1,"1407":1,"1408":1,"1409":2,"1410":2,"1411":2,"1412":2,"1413":1,"1414":2,"1415":2,"1416":2,"1417":2,"1418":1,"1419":2,"1420":2,"1421":2,"1422":2,"1423":1,"1424":2,"1425":1,"1426":2,"1427":2,"1428":1,"1429":1,"1430":2,"1431":2,"1432":2,"1433":1,"1434":1,"1435":1,"1436":1,"1437":1,"1438":2,"1439":2,"1440":2,"1441":1,"1442":2,"1443":1,"1444":2,"1445":1,"1446":2,"1447":1,"1448":2,"1449":1,"1450":2,"1451":1,"1452":2,"1453":1,"1454":2,"1455":2,"1456":2,"1457":1,"1458":2,"1459":2,"1460":1,"1461":1,"1462":2,"1463":1,"1464":1,"1465":1,"1466":2,"1467":2,"1468":2,"1469":2,"1470":1,"1471":2,"1472":1,"1473":2,"1474":2,"1475":1,"1476":1,"1477":2,"1478":2,"1479":1,"1480":1,"1481":2,"1482":2,"1483":1,"1484":1,"1485":2,"1486":2,"1487":1,"1488":1,"1489":2,"1490":2,"1491":1,"1492":1,"1493":2,"1494":1,"1495":1,"1496":2,"1497":2,"1498":2,"1499":1,"1500":2,"1501":2,"1502":2,"1503":1,"1504":2,"1505":2,"1506":1,"1507":1,"1508":2,"1509":1,"1510":1,"1511":2,"1512":2,"1513":2,"1514":2,"1515":2,"1516":1,"1517":1,"1518":1,"1519":2,"1520":1,"1521":2,"1522":2,"1523":1,"1524":1,"1525":1,"1526":1,"1527":2,"1528":2,"1529":1,"1530":1,"1531":2,"1532":2,"1533":1,"1534":2,"1535":1,"1536":1,"1537":1,"1538":2,"1539":2,"1540":2,"1541":2,"1542":1,"1543":1,"1544":1,"1545":1,"1546":1,"1547":2,"1548":1,"1549":1,"1550":1,"1551":1,"1552":2,"1553":2,"1554":1,"1555":2,"1556":1,"1557":1,"1558":1,"1559":1,"1560":1,"1561":1,"1562":2,"1563":2,"1564":1,"1565":2,"1566":2,"1567":1,"1568":2,"1569":2,"1570":2,"1571":2,"1572":1,"1573":2,"1574":2,"1575":1,"1576":1,"1577":1,"1578":1,"1579":2,"1580":1,"1581":1,"1582":1,"1583":1,"1584":2,"1585":1,"1586":2,"1587":1,"1588":1,"1589":1,"1590":2,"1591":1,"1592":1,"1593":2,"1594":2,"1595":1,"1596":1,"1597":1,"1598":2,"1599":2,"1600":1,"1601":1,"1602":1,"1603":2,"1604":2,"1605":1,"1606":1,"1607":1,"1608":2,"1609":1,"1610":1,"1611":2,"1612":2,"1613":2,"1614":2,"1615":2,"1616":2,"1617":2,"1618":1,"1619":2,"1620":1,"1621":1,"1622":1,"1623":2,"1624":1,"1625":1,"1626":2,"1627":1,"1628":2,"1629":1,"1630":1,"1631":2,"1632":1,"1633":1,"1634":1,"1635":1,"1636":2,"1637":2,"1638":1,"1639":2,"1640":2,"1641":2,"1642":2,"1643":2,"1644":2,"1645":2,"1646":1,"1647":2,"1648":2,"1649":1,"1650":1,"1651":2,"1652":1,"1653":2,"1654":2,"1655":1,"1656":1,"1657":2,"1658":1,"1659":1,"1660":2,"1661":2,"1662":1,"1663":1,"1664":2,"1665":1,"1666":1,"1667":2,"1668":2,"1669":2,"1670":1,"1671":2,"1672":1,"1673":2,"1674":2,"1675":2,"1676":2,"1677":2,"1678":1,"1679":2,"1680":2,"1681":1,"1682":1,"1683":2,"1684":2,"1685":2,"1686":2,"1687":1,"1688":1,"1689":1,"1690":1,"1691":1,"1692":2,"1693":2,"1694":1,"1695":1,"1696":2,"1697":1,"1698":2,"1699":2,"1700":2,"1701":1,"1702":2,"1703":2,"1704":1,"1705":2,"1706":1,"1707":1,"1708":2,"1709":2,"1710":1,"1711":2,"1712":2,"1713":1,"1714":2,"1715":2,"1716":2,"1717":1,"1718":1,"1719":1,"1720":1,"1721":1,"1722":2,"1723":1,"1724":2,"1725":1,"1726":1,"1727":2,"1728":2,"1729":1,"1730":2,"1731":2,"1732":2,"1733":2,"1734":2,"1735":2,"1736":2,"1737":2,"1738":2,"1739":2,"1740":2,"1741":2,"1742":1,"1743":2,"1744":1,"1745":2,"1746":1,"1747":2,"1748":2,"1749":2,"1750":2,"1751":1,"1752":1,"1753":1,"1754":1,"1755":1,"1756":1,"1757":1,"1758":1,"1759":1,"1760":2,"1761":1,"1762":2,"1763":1,"1764":2,"1765":1,"1766":1,"1767":2,"1768":2,"1769":2,"1770":1,"1771":2,"1772":2,"1773":2,"1774":1,"1775":1,"1776":1,"1777":2,"1778":2,"1779":1,"1780":2,"1781":1,"1782":1,"1783":2,"1784":1,"1785":2,"1786":2,"1787":1,"1788":2,"1789":2,"1790":2,"1791":1,"1792":2,"1793":1,"1794":1,"1795":1,"1796":2,"1797":1,"1798":2,"1799":2,"1800":2,"1801":1,"1802":1,"1803":1,"1804":2,"1805":1,"1806":2,"1807":2,"1808":1,"1809":2,"1810":1,"1811":1,"1812":2,"1813":2,"1814":2,"1815":2,"1816":1,"1817":1,"1818":2,"1819":2,"1820":2,"1821":1,"1822":1,"1823":2,"1824":2,"1825":2,"1826":1,"1827":1,"1828":2,"1829":2,"1830":1,"1831":2,"1832":2,"1833":1,"1834":2,"1835":2,"1836":1,"1837":1,"1838":2,"1839":2,"1840":2,"1841":2,"1842":2,"1843":2,"1844":1,"1845":1,"1846":2,"1847":2,"1848":1,"1849":1,"1850":1,"1851":1,"1852":1,"1853":2,"1854":1,"1855":1,"1856":2,"1857":1,"1858":2,"1859":2,"1860":1,"1861":1,"1862":1,"1863":1,"1864":1,"1865":2,"1866":2,"1867":2,"1868":1,"1869":1,"1870":1,"1871":1,"1872":2,"1873":1,"1874":1,"1875":1,"1876":1,"1877":1,"1878":2,"1879":2,"1880":2,"1881":2,"1882":1,"1883":1,"1884":1,"1885":1,"1886":1,"1887":1,"1888":2,"1889":1,"1890":1,"1891":2,"1892":1,"1893":1,"1894":1,"1895":2,"1896":1,"1897":1,"1898":2,"1899":2,"1900":2,"1901":1,"1902":2,"1903":2,"1904":2,"1905":2,"1906":1,"1907":1,"1908":1,"1909":2,"1910":1,"1911":1,"1912":1,"1913":2,"1914":2,"1915":1,"1916":1,"1917":2,"1918":1,"1919":2,"1920":1,"1921":1,"1922":1,"1923":1,"1924":1,"1925":1,"1926":2,"1927":1,"1928":2,"1929":2,"1930":2,"1931":1,"1932":2,"1933":2,"1934":1,"1935":2,"1936":2,"1937":2,"1938":1,"1939":2,"1940":1,"1941":1,"1942":1,"1943":1,"1944":2,"1945":2,"1946":2,"1947":1,"1948":2,"1949":2,"1950":2,"1951":1,"1952":2,"1953":1,"1954":1,"1955":2,"1956":1,"1957":1,"1958":2,"1959":2,"1960":1,"1961":2,"1962":1,"1963":1,"1964":2,"1965":1,"1966":1,"1967":2,"1968":1,"1969":2,"1970":1,"1971":1,"1972":2,"1973":2,"1974":2,"1975":1,"1976":1,"1977":2,"1978":1,"1979":1,"1980":1,"1981":1,"1982":2,"1983":2,"1984":2,"1985":2,"1986":1,"1987":1,"1988":2,"1989":1,"1990":2,"1991":2,"1992":1,"1993":1,"1994":2,"1995":2,"1996":1,"1997":1,"1998":1,"1999":2,"2000":1,"2001":1,"2002":1,"2003":1,"2004":2,"2005":2,"2006":2,"2007":1,"2008":2,"2009":1,"2010":1,"2011":2,"2012":2,"2013":2,"2014":1,"2015":2,"2016":1,"2017":2,"2018":1,"2019":2,"2020":1,"2021":1,"2022":2,"2023":1,"2024":1,"2025":1,"2026":1,"2027":2,"2028":2,"2029":2,"2030":2,"2031":1,"2032":2,"2033":1,"2034":1,"2035":2,"2036":2,"2037":1,"2038":1,"2039":1,"2040":2,"2041":1,"2042":1,"2043":2,"2044":1,"2045":2,"2046":1,"2047":1,"2048":1,"2049":1,"2050":2,"2051":2,"2052":1,"2053":1,"2054":1,"2055":1,"2056":2,"2057":1,"2058":2,"2059":2,"2060":1,"2061":2,"2062":1,"2063":1,"2064":1,"2065":1,"2066":1,"2067":2,"2068":2,"2069":2,"2070":1,"2071":1,"2072":2,"2073":2,"2074":2,"2075":2,"2076":2,"2077":1,"2078":1,"2079":1,"2080":1,"2081":2,"2082":2,"2083":1,"2084":1,"2085":2,"2086":1,"2087":2,"2088":1,"2089":2,"2090":2,"2091":1,"2092":2,"2093":1,"2094":1,"2095":1,"2096":1,"2097":1,"2098":2,"2099":2,"2100":1,"2101":2,"2102":1,"2103":1,"2104":1,"2105":1,"2106":1,"2107":2,"2108":2,"2109":1,"2110":1,"2111":1,"2112":1,"2113":1,"2114":1,"2115":1,"2116":1,"2117":1,"2118":2,"2119":1,"2120":2,"2121":2,"2122":1,"2123":2,"2124":1,"2125":1,"2126":1,"2127":2,"2128":1,"2129":1,"2130":2,"2131":2,"2132":2,"2133":1,"2134":1,"2135":2,"2136":1,"2137":1,"2138":1,"2139":1,"2140":1,"2141":2,"2142":1,"2143":1,"2144":2,"2145":1,"2146":2,"2147":2,"2148":1,"2149":1,"2150":2,"2151":1,"2152":2,"2153":1,"2154":2,"2155":2,"2156":1,"2157":2,"2158":2,"2159":1,"2160":1,"2161":1,"2162":2,"2163":1,"2164":1,"2165":2,"2166":2,"2167":2,"2168":1,"2169":2,"2170":1,"2171":1,"2172":1,"2173":2,"2174":2,"2175":2,"2176":1,"2177":2,"2178":1,"2179":1,"2180":2,"2181":2,"2182":2,"2183":1,"2184":1,"2185":2,"2186":1,"2187":2,"2188":2,"2189":2,"2190":1,"2191":1,"2192":1,"2193":2,"2194":1,"2195":1,"2196":1,"2197":1,"2198":1,"2199":2,"2200":1,"2201":2,"2202":1,"2203":2,"2204":1,"2205":1,"2206":1,"2207":2,"2208":2,"2209":2,"2210":2,"2211":1,"2212":2,"2213":1,"2214":2,"2215":1,"2216":1,"2217":2,"2218":1,"2219":2,"2220":2,"2221":1,"2222":1,"2223":1,"2224":2,"2225":1,"2226":2,"2227":2,"2228":1,"2229":2,"2230":2,"2231":2,"2232":2,"2233":2,"2234":1,"2235":1,"2236":1,"2237":2,"2238":1,"2239":1,"2240":2,"2241":2,"2242":1,"2243":1,"2244":2,"2245":2,"2246":2,"2247":1,"2248":2,"2249":1,"2250":2,"2251":2,"2252":1,"2253":2,"2254":2,"2255":2,"2256":1,"2257":2,"2258":2,"2259":2,"2260":1,"2261":2,"2262":2,"2263":1,"2264":2,"2265":2,"2266":2,"2267":2,"2268":2,"2269":1,"2270":2,"2271":1,"2272":1,"2273":1,"2274":1,"2275":2,"2276":1,"2277":2,"2278":1,"2279":2,"2280":2,"2281":2,"2282":1,"2283":2,"2284":2,"2285":1,"2286":1,"2287":2,"2288":2,"2289":2,"2290":2,"2291":1,"2292":2,"2293":2,"2294":1,"2295":1,"2296":1,"2297":2,"2298":2,"2299":1,"2300":2,"2301":2,"2302":1,"2303":1,"2304":2,"2305":1,"2306":1,"2307":2,"2308":2,"2309":1,"2310":2,"2311":1,"2312":1,"2313":2,"2314":1,"2315":2,"2316":1,"2317":1,"2318":2,"2319":2,"2320":1,"2321":2,"2322":2,"2323":1,"2324":2,"2325":2,"2326":1,"2327":2,"2328":2,"2329":2,"2330":1,"2331":1,"2332":1,"2333":1,"2334":1,"2335":2,"2336":2,"2337":1,"2338":2,"2339":2,"2340":1,"2341":1,"2342":1,"2343":2,"2344":2,"2345":1,"2346":1,"2347":1,"2348":1,"2349":2,"2350":1,"2351":2,"2352":1,"2353":1,"2354":2,"2355":2,"2356":2,"2357":2,"2358":2,"2359":2,"2360":1,"2361":2,"2362":2,"2363":1,"2364":2,"2365":1,"2366":2,"2367":1,"2368":2,"2369":2,"2370":2,"2371":1,"2372":1,"2373":2,"2374":2,"2375":1,"2376":1,"2377":2,"2378":1,"2379":2,"2380":1,"2381":1,"2382":2,"2383":2,"2384":1,"2385":1,"2386":2,"2387":2,"2388":2,"2389":1,"2390":2,"2391":2,"2392":1,"2393":1,"2394":1,"2395":2,"2396":2,"2397":2,"2398":2,"2399":2,"2400":1,"2401":2,"2402":1,"2403":2,"2404":2,"2405":2,"2406":2,"2407":1,"2408":2,"2409":2,"2410":1,"2411":1,"2412":2,"2413":2,"2414":2,"2415":1,"2416":2,"2417":1,"2418":1,"2419":1,"2420":2,"2421":2,"2422":1,"2423":1,"2424":1,"2425":1,"2426":1,"2427":2,"2428":2,"2429":2,"2430":2,"2431":1,"2432":2,"2433":1,"2434":2,"2435":1,"2436":2,"2437":2,"2438":1,"2439":2,"2440":2,"2441":2,"2442":1,"2443":1,"2444":1,"2445":1,"2446":2,"2447":1,"2448":2,"2449":1,"2450":1,"2451":2,"2452":1,"2453":2,"2454":1,"2455":1,"2456":1,"2457":1,"2458":1,"2459":2,"2460":1,"2461":2,"2462":2,"2463":1,"2464":2,"2465":2,"2466":1,"2467":1,"2468":2,"2469":2,"2470":2,"2471":2,"2472":1,"2473":1,"2474":1,"2475":2,"2476":2,"2477":1,"2478":1,"2479":1,"2480":1,"2481":2,"2482":2,"2483":2,"2484":2,"2485":1,"2486":2,"2487":2,"2488":2,"2489":2,"2490":1,"2491":2,"2492":2,"2493":1,"2494":1,"2495":1,"2496":1,"2497":2,"2498":1,"2499":2,"2500":2,"2501":1,"2502":2,"2503":2,"2504":1,"2505":1,"2506":2,"2507":2,"2508":2,"2509":2,"2510":2,"2511":1,"2512":2,"2513":1,"2514":1,"2515":1,"2516":2,"2517":1,"2518":1,"2519":1,"2520":1,"2521":2,"2522":1,"2523":2,"2524":2,"2525":1,"2526":1,"2527":1,"2528":1,"2529":2,"2530":2,"2531":2,"2532":2,"2533":1,"2534":1,"2535":1,"2536":1,"2537":2,"2538":2,"2539":1,"2540":2,"2541":1,"2542":2,"2543":2,"2544":2,"2545":2,"2546":2,"2547":1,"2548":1,"2549":1,"2550":1,"2551":1,"2552":2,"2553":2,"2554":2,"2555":2,"2556":2,"2557":1,"2558":1,"2559":2,"2560":1,"2561":2,"2562":2,"2563":2,"2564":1,"2565":2,"2566":1,"2567":2,"2568":2,"2569":1,"2570":2,"2571":1,"2572":2,"2573":1,"2574":1,"2575":2,"2576":1,"2577":1,"2578":1,"2579":2,"2580":2,"2581":2,"2582":1,"2583":2,"2584":1,"2585":1,"2586":2,"2587":2,"2588":2,"2589":2,"2590":1,"2591":1,"2592":2,"2593":2,"2594":2,"2595":2,"2596":1,"2597":1,"2598":2,"2599":2,"2600":2,"2601":2,"2602":1,"2603":2,"2604":1,"2605":2,"2606":2,"2607":2,"2608":2,"2609":2,"2610":2,"2611":1,"2612":2,"2613":1,"2614":2,"2615":1,"2616":1,"2617":1,"2618":2,"2619":1,"2620":2,"2621":2,"2622":1,"2623":1,"2624":1,"2625":1,"2626":2,"2627":1,"2628":1,"2629":2,"2630":1,"2631":2,"2632":1,"2633":1,"2634":2,"2635":1,"2636":1,"2637":2,"2638":1,"2639":2,"2640":2,"2641":2,"2642":2,"2643":2,"2644":1,"2645":1,"2646":1,"2647":1,"2648":2,"2649":1,"2650":2,"2651":2,"2652":2,"2653":1,"2654":2,"2655":1,"2656":1,"2657":1,"2658":2,"2659":1,"2660":1,"2661":2,"2662":1,"2663":1,"2664":2,"2665":1,"2666":1,"2667":1,"2668":1,"2669":1,"2670":2,"2671":1,"2672":2,"2673":2,"2674":2,"2675":1,"2676":2,"2677":2,"2678":2,"2679":2,"2680":1,"2681":2,"2682":2,"2683":2,"2684":1,"2685":2,"2686":2,"2687":1,"2688":2,"2689":1,"2690":2,"2691":1,"2692":2,"2693":2,"2694":1,"2695":2,"2696":2,"2697":2,"2698":1,"2699":1,"2700":2,"2701":1,"2702":2,"2703":2,"2704":1,"2705":2,"2706":1,"2707":1,"2708":1,"2709":2,"2710":1,"2711":1,"2712":2,"2713":2,"2714":1,"2715":1,"2716":2,"2717":1,"2718":2,"2719":2,"2720":2,"2721":1,"2722":1,"2723":1,"2724":1,"2725":1,"2726":1,"2727":2,"2728":2,"2729":2,"2730":2,"2731":1,"2732":2,"2733":2,"2734":1,"2735":1,"2736":2,"2737":2,"2738":2,"2739":2,"2740":2,"2741":2,"2742":2,"2743":2,"2744":2,"2745":2,"2746":2,"2747":2,"2748":2,"2749":1,"2750":1,"2751":2,"2752":2,"2753":2,"2754":2,"2755":1,"2756":1,"2757":2,"2758":1,"2759":2,"2760":1,"2761":2,"2762":2,"2763":1,"2764":1,"2765":1,"2766":2,"2767":2,"2768":1,"2769":1,"2770":2,"2771":1,"2772":2,"2773":2,"2774":1,"2775":1,"2776":1,"2777":1,"2778":1,"2779":2,"2780":2,"2781":1,"2782":1,"2783":1,"2784":1,"2785":1,"2786":1,"2787":1,"2788":2,"2789":2,"2790":1,"2791":2,"2792":2,"2793":1,"2794":2,"2795":1,"2796":1,"2797":2,"2798":1,"2799":2,"2800":2,"2801":1,"2802":2,"2803":2,"2804":1,"2805":1,"2806":2,"2807":1,"2808":2,"2809":1,"2810":1,"2811":1,"2812":1,"2813":1,"2814":2,"2815":1,"2816":1,"2817":2,"2818":2,"2819":2,"2820":2,"2821":2,"2822":1,"2823":1,"2824":1,"2825":2,"2826":2,"2827":2,"2828":2,"2829":1,"2830":1,"2831":1,"2832":2,"2833":1,"2834":2,"2835":1,"2836":1,"2837":1,"2838":2,"2839":1,"2840":2,"2841":2,"2842":2,"2843":2,"2844":2,"2845":2,"2846":1,"2847":2,"2848":2,"2849":1,"2850":2,"2851":1,"2852":2,"2853":2,"2854":2,"2855":1,"2856":2,"2857":1,"2858":2,"2859":1,"2860":1,"2861":1,"2862":1,"2863":1,"2864":2,"2865":2,"2866":2,"2867":2,"2868":1,"2869":2,"2870":2,"2871":2,"2872":1,"2873":1,"2874":2,"2875":1,"2876":2,"2877":1,"2878":2,"2879":2,"2880":2,"2881":1,"2882":1,"2883":2,"2884":1,"2885":2,"2886":2,"2887":2,"2888":2,"2889":1,"2890":2,"2891":2,"2892":1,"2893":2,"2894":2,"2895":2,"2896":1,"2897":1,"2898":1,"2899":2,"2900":2,"2901":1,"2902":1,"2903":2,"2904":2,"2905":1,"2906":2,"2907":1,"2908":2,"2909":1,"2910":2,"2911":1,"2912":2,"2913":1,"2914":1,"2915":1,"2916":1,"2917":1,"2918":2,"2919":1,"2920":2,"2921":2,"2922":2,"2923":1,"2924":2,"2925":2,"2926":2,"2927":2,"2928":2,"2929":2,"2930":1,"2931":1,"2932":1,"2933":1,"2934":2,"2935":2,"2936":2,"2937":2,"2938":1,"2939":2,"2940":2,"2941":2,"2942":1,"2943":2,"2944":1,"2945":1,"2946":2,"2947":1,"2948":2,"2949":2,"2950":1,"2951":2,"2952":1,"2953":2,"2954":1,"2955":1,"2956":1,"2957":1,"2958":1,"2959":2,"2960":1,"2961":2,"2962":1,"2963":1,"2964":2,"2965":1,"2966":2,"2967":1,"2968":2,"2969":2,"2970":2,"2971":1,"2972":2,"2973":2,"2974":1,"2975":2,"2976":1,"2977":2,"2978":2,"2979":1,"2980":1,"2981":2,"2982":2,"2983":1,"2984":1,"2985":2,"2986":2,"2987":1,"2988":2,"2989":1,"2990":2,"2991":2,"2992":2,"2993":2,"2994":1,"2995":1,"2996":1,"2997":2,"2998":1,"2999":2,"3000":1,"3001":1,"3002":1,"3003":2,"3004":2,"3005":1,"3006":1,"3007":2,"3008":1,"3009":1,"3010":2,"3011":1,"3012":2,"3013":1,"3014":1,"3015":1,"3016":2,"3017":1,"3018":1,"3019":1,"3020":2,"3021":1,"3022":1,"3023":2,"3024":2,"3025":2,"3026":1,"3027":2,"3028":2,"3029":2,"3030":2,"3031":1,"3032":2,"3033":2,"3034":1,"3035":2,"3036":2,"3037":1,"3038":1,"3039":2,"3040":2,"3041":1,"3042":2,"3043":2,"3044":1,"3045":2,"3046":1,"3047":1,"3048":2,"3049":2,"3050":2,"3051":2,"3052":2,"3053":2,"3054":2,"3055":2,"3056":1,"3057":2,"3058":1,"3059":1,"3060":1,"3061":2,"3062":2,"3063":2,"3064":1,"3065":2,"3066":2,"3067":1,"3068":1,"3069":1,"3070":2,"3071":2,"3072":1,"3073":1,"3074":2,"3075":1,"3076":2,"3077":1,"3078":1,"3079":1,"3080":2,"3081":2,"3082":1,"3083":1,"3084":2,"3085":1,"3086":1,"3087":1,"3088":1,"3089":2,"3090":2,"3091":2,"3092":2,"3093":2,"3094":1,"3095":2,"3096":2,"3097":1,"3098":2,"3099":2,"3100":2,"3101":2,"3102":2,"3103":2,"3104":1,"3105":1,"3106":2,"3107":1,"3108":2,"3109":1,"3110":2,"3111":1,"3112":1,"3113":2,"3114":1,"3115":2,"3116":2,"3117":1,"3118":1,"3119":1,"3120":2,"3121":2,"3122":2,"3123":1,"3124":2,"3125":2,"3126":1,"3127":1,"3128":1,"3129":1,"3130":2,"3131":2,"3132":1,"3133":1,"3134":2,"3135":2,"3136":1,"3137":2,"3138":1,"3139":2,"3140":1,"3141":1,"3142":1,"3143":1,"3144":2,"3145":1,"3146":1,"3147":1,"3148":2,"3149":1,"3150":1,"3151":2,"3152":1,"3153":2,"3154":1,"3155":1,"3156":1,"3157":2,"3158":1,"3159":1,"3160":2,"3161":2,"3162":1,"3163":1,"3164":2,"3165":1,"3166":1,"3167":2,"3168":2,"3169":2,"3170":1,"3171":2,"3172":1,"3173":1,"3174":2,"3175":1,"3176":1,"3177":1,"3178":2,"3179":2,"3180":2,"3181":2,"3182":2,"3183":1,"3184":2,"3185":1,"3186":1,"3187":2,"3188":2,"3189":2,"3190":2,"3191":2,"3192":1,"3193":1,"3194":1,"3195":2,"3196":1,"3197":1,"3198":2,"3199":2,"3200":2,"3201":1,"3202":2,"3203":2,"3204":2,"3205":2,"3206":2,"3207":2,"3208":1,"3209":1,"3210":2,"3211":2,"3212":1,"3213":1,"3214":2,"3215":1,"3216":2,"3217":2,"3218":1,"3219":2,"3220":2,"3221":1,"3222":2,"3223":1,"3224":1,"3225":1,"3226":1,"3227":2,"3228":2,"3229":1,"3230":2,"3231":2,"3232":1,"3233":1,"3234":1,"3235":1,"3236":1,"3237":2,"3238":2,"3239":2,"3240":2,"3241":2,"3242":2,"3243":1,"3244":2,"3245":1,"3246":2,"3247":2,"3248":1,"3249":2,"3250":2,"3251":2,"3252":1,"3253":2,"3254":2,"3255":1,"3256":1,"3257":1,"3258":2,"3259":1,"3260":2,"3261":2,"3262":2,"3263":1,"3264":2,"3265":2,"3266":2,"3267":1,"3268":2,"3269":1,"3270":2,"3271":1,"3272":2,"3273":2,"3274":2,"3275":1,"3276":1,"3277":1,"3278":2,"3279":2,"3280":2,"3281":1,"3282":1,"3283":2,"3284":1,"3285":1,"3286":2,"3287":1,"3288":2,"3289":2,"3290":2,"3291":2,"3292":2,"3293":1,"3294":1,"3295":1,"3296":2,"3297":1,"3298":1,"3299":2,"3300":1,"3301":2,"3302":2,"3303":2,"3304":2,"3305":1,"3306":1,"3307":1,"3308":1,"3309":2,"3310":2,"3311":1,"3312":2,"3313":1,"3314":1,"3315":1,"3316":1,"3317":2,"3318":1,"3319":2,"3320":1,"3321":2,"3322":2,"3323":1,"3324":2,"3325":1,"3326":1,"3327":2,"3328":1,"3329":1,"3330":2,"3331":1,"3332":1,"3333":1,"3334":2,"3335":1,"3336":1,"3337":2,"3338":2,"3339":2,"3340":2,"3341":2,"3342":2,"3343":2,"3344":2,"3345":2,"3346":1,"3347":1,"3348":2,"3349":2,"3350":1,"3351":1,"3352":1,"3353":1,"3354":2,"3355":1,"3356":2,"3357":1,"3358":2,"3359":2,"3360":2,"3361":2,"3362":1,"3363":1,"3364":1,"3365":1,"3366":1,"3367":1,"3368":2,"3369":1,"3370":2,"3371":1,"3372":1,"3373":2,"3374":2,"3375":1,"3376":2,"3377":1,"3378":2,"3379":1,"3380":2,"3381":1,"3382":2,"3383":2,"3384":1,"3385":1,"3386":2,"3387":2,"3388":1,"3389":1,"3390":2,"3391":2,"3392":2,"3393":1,"3394":2,"3395":2,"3396":1,"3397":1,"3398":1,"3399":2,"3400":1,"3401":2,"3402":2,"3403":2,"3404":2,"3405":2,"3406":2,"3407":2,"3408":2,"3409":1,"3410":1,"3411":1,"3412":2,"3413":2,"3414":1,"3415":2,"3416":2,"3417":1,"3418":1,"3419":2,"3420":2,"3421":2,"3422":2,"3423":1,"3424":1,"3425":2,"3426":1,"3427":1,"3428":2,"3429":2,"3430":2,"3431":1,"3432":1,"3433":1,"3434":1,"3435":2,"3436":1,"3437":2,"3438":1,"3439":2,"3440":2,"3441":2,"3442":1,"3443":1,"3444":1,"3445":1,"3446":1,"3447":2,"3448":1,"3449":2,"3450":1,"3451":1,"3452":2,"3453":2,"3454":1,"3455":2,"3456":2,"3457":2,"3458":2,"3459":2,"3460":2,"3461":1,"3462":1,"3463":1,"3464":2,"3465":2,"3466":1,"3467":1,"3468":1,"3469":2,"3470":1,"3471":1,"3472":2,"3473":2,"3474":1,"3475":2,"3476":1,"3477":1,"3478":1,"3479":1,"3480":1,"3481":2,"3482":2,"3483":1,"3484":2,"3485":1,"3486":2,"3487":2,"3488":1,"3489":1,"3490":2,"3491":1,"3492":1,"3493":1,"3494":2,"3495":1,"3496":2,"3497":1,"3498":2,"3499":2,"3500":1,"3501":2,"3502":1,"3503":1,"3504":2,"3505":1,"3506":1,"3507":1,"3508":1,"3509":2,"3510":1,"3511":1,"3512":2,"3513":1,"3514":2,"3515":1,"3516":2,"3517":1,"3518":2,"3519":2,"3520":2,"3521":2,"3522":1,"3523":1,"3524":1,"3525":2,"3526":2,"3527":2,"3528":1,"3529":1,"3530":1,"3531":1,"3532":2,"3533":2,"3534":2,"3535":2,"3536":1,"3537":2,"3538":1,"3539":1,"3540":1,"3541":1,"3542":1,"3543":1,"3544":1,"3545":2,"3546":1,"3547":2,"3548":2,"3549":2,"3550":1,"3551":1,"3552":2,"3553":2,"3554":2,"3555":1,"3556":2,"3557":1,"3558":1,"3559":2,"3560":1,"3561":1,"3562":1,"3563":2,"3564":2,"3565":1,"3566":1,"3567":1,"3568":2,"3569":2,"3570":1,"3571":1,"3572":2,"3573":1,"3574":1,"3575":2,"3576":1,"3577":2,"3578":1,"3579":1,"3580":1,"3581":1,"3582":2,"3583":2,"3584":2,"3585":1,"3586":2,"3587":1,"3588":2,"3589":1,"3590":1,"3591":2,"3592":2,"3593":1,"3594":1,"3595":1,"3596":1,"3597":1,"3598":1,"3599":1,"3600":1,"3601":2,"3602":1,"3603":1,"3604":2,"3605":2,"3606":1,"3607":1,"3608":1,"3609":2,"3610":1,"3611":1,"3612":1,"3613":2,"3614":2,"3615":2,"3616":1,"3617":2,"3618":1,"3619":1,"3620":2,"3621":2,"3622":1,"3623":1,"3624":2,"3625":2,"3626":2,"3627":2,"3628":2,"3629":2,"3630":2,"3631":1,"3632":1,"3633":1,"3634":1,"3635":2,"3636":1,"3637":1,"3638":1,"3639":2,"3640":1,"3641":2,"3642":1,"3643":1,"3644":2,"3645":1,"3646":1,"3647":1,"3648":1,"3649":1,"3650":1,"3651":1,"3652":1,"3653":2,"3654":1,"3655":2,"3656":2,"3657":2,"3658":2,"3659":2,"3660":1,"3661":1,"3662":2,"3663":2,"3664":2,"3665":2,"3666":1,"3667":2,"3668":1,"3669":2,"3670":2,"3671":2,"3672":2,"3673":1,"3674":1,"3675":2,"3676":1,"3677":1,"3678":2,"3679":2,"3680":1,"3681":1,"3682":2,"3683":1,"3684":1,"3685":2,"3686":2,"3687":1,"3688":1,"3689":1,"3690":1,"3691":2,"3692":1,"3693":2,"3694":1,"3695":2,"3696":1,"3697":2,"3698":2,"3699":2,"3700":1,"3701":1,"3702":1,"3703":2,"3704":2,"3705":2,"3706":1,"3707":1,"3708":2,"3709":2,"3710":2,"3711":2,"3712":1,"3713":2,"3714":2,"3715":2,"3716":2,"3717":2,"3718":2,"3719":1,"3720":2,"3721":1,"3722":1,"3723":1,"3724":2,"3725":2,"3726":2,"3727":1,"3728":2,"3729":1,"3730":2,"3731":1,"3732":1,"3733":1,"3734":1,"3735":1,"3736":2,"3737":2,"3738":2,"3739":1,"3740":1,"3741":1,"3742":1,"3743":2,"3744":2,"3745":1,"3746":1,"3747":2,"3748":1,"3749":2,"3750":1,"3751":2,"3752":1,"3753":2,"3754":2,"3755":2,"3756":2,"3757":1,"3758":2,"3759":2,"3760":2,"3761":2,"3762":1,"3763":1,"3764":1,"3765":2,"3766":2,"3767":1,"3768":2,"3769":2,"3770":2,"3771":1,"3772":1,"3773":1,"3774":1,"3775":2,"3776":2,"3777":2,"3778":2,"3779":2,"3780":2,"3781":2,"3782":2,"3783":1,"3784":1,"3785":1,"3786":2,"3787":2,"3788":1,"3789":1,"3790":1,"3791":1,"3792":2,"3793":2,"3794":1,"3795":2,"3796":2,"3797":1,"3798":1,"3799":2,"3800":1,"3801":2,"3802":1,"3803":2,"3804":2,"3805":2,"3806":1,"3807":1,"3808":2,"3809":2,"3810":1,"3811":2,"3812":1,"3813":1,"3814":1,"3815":2,"3816":2,"3817":2,"3818":2,"3819":1,"3820":1,"3821":2,"3822":2,"3823":2,"3824":1,"3825":1,"3826":1,"3827":1,"3828":1,"3829":2,"3830":1,"3831":1,"3832":2,"3833":1,"3834":1,"3835":1,"3836":2,"3837":2,"3838":1,"3839":1,"3840":1,"3841":2,"3842":2,"3843":2,"3844":2,"3845":2,"3846":2,"3847":2,"3848":2,"3849":1,"3850":1,"3851":2,"3852":1,"3853":1,"3854":1,"3855":2,"3856":2,"3857":1,"3858":2,"3859":2,"3860":1,"3861":1,"3862":2,"3863":1,"3864":1,"3865":1,"3866":2,"3867":2,"3868":2,"3869":2,"3870":2,"3871":1,"3872":2,"3873":2,"3874":1,"3875":2,"3876":2,"3877":1,"3878":1,"3879":1,"3880":1,"3881":2,"3882":2,"3883":1,"3884":2,"3885":2,"3886":2,"3887":2,"3888":2,"3889":1,"3890":2,"3891":2,"3892":2,"3893":2,"3894":1,"3895":2,"3896":1,"3897":1,"3898":2,"3899":2,"3900":1,"3901":1,"3902":2,"3903":2,"3904":2,"3905":1,"3906":2,"3907":2,"3908":2,"3909":1,"3910":1,"3911":2,"3912":1,"3913":1,"3914":2,"3915":1,"3916":1,"3917":1,"3918":2,"3919":1,"3920":1,"3921":1,"3922":1,"3923":1,"3924":1,"3925":2,"3926":1,"3927":1,"3928":1,"3929":1,"3930":2,"3931":2,"3932":2,"3933":2,"3934":2,"3935":2,"3936":2,"3937":2,"3938":2,"3939":2,"3940":1,"3941":1,"3942":1,"3943":2,"3944":2,"3945":2,"3946":1,"3947":2,"3948":1,"3949":1,"3950":1,"3951":1,"3952":2,"3953":1,"3954":1,"3955":2,"3956":1,"3957":2,"3958":2,"3959":1,"3960":1,"3961":2,"3962":1,"3963":2,"3964":1,"3965":2,"3966":1,"3967":1,"3968":2,"3969":1,"3970":2,"3971":2,"3972":2,"3973":2,"3974":2,"3975":1,"3976":2,"3977":2,"3978":2,"3979":1,"3980":2,"3981":1,"3982":2,"3983":1,"3984":1,"3985":1,"3986":1,"3987":1,"3988":2,"3989":2,"3990":1,"3991":2,"3992":2,"3993":1,"3994":2,"3995":2,"3996":2,"3997":2,"3998":1,"3999":2,"4000":2,"4001":1,"4002":1,"4003":2,"4004":2,"4005":2,"4006":1,"4007":2,"4008":2,"4009":1,"4010":1,"4011":2,"4012":2,"4013":2,"4014":2,"4015":1,"4016":1,"4017":2,"4018":2,"4019":1,"4020":2,"4021":2,"4022":1,"4023":1,"4024":2,"4025":2,"4026":2,"4027":2,"4028":1,"4029":2,"4030":2,"4031":2,"4032":1,"4033":2,"4034":1,"4035":1,"4036":1,"4037":1,"4038":2,"4039":1,"4040":2,"4041":2,"4042":1,"4043":1,"4044":2,"4045":1,"4046":1,"4047":1,"4048":1,"4049":2,"4050":2,"4051":2,"4052":1,"4053":1,"4054":2,"4055":2,"4056":1,"4057":1,"4058":1,"4059":1,"4060":1,"4061":1,"4062":2,"4063":2,"4064":2,"4065":1,"4066":1,"4067":2,"4068":2,"4069":2,"4070":1,"4071":1,"4072":1,"4073":2,"4074":2,"4075":1,"4076":1,"4077":1,"4078":2,"4079":2,"4080":1,"4081":1,"4082":2,"4083":2,"4084":2,"4085":2,"4086":2,"4087":1,"4088":1,"4089":1,"4090":1,"4091":2,"4092":1,"4093":1,"4094":1,"4095":2,"4096":1,"4097":1,"4098":2,"4099":2,"4100":1,"4101":2,"4102":1,"4103":1,"4104":2,"4105":1,"4106":1,"4107":2,"4108":1,"4109":2,"4110":1,"4111":1,"4112":1,"4113":1,"4114":2,"4115":2,"4116":1,"4117":1,"4118":1,"4119":2,"4120":1,"4121":2,"4122":2,"4123":1,"4124":1,"4125":2,"4126":2,"4127":2,"4128":1,"4129":2,"4130":2,"4131":1,"4132":2,"4133":2,"4134":2,"4135":2,"4136":1,"4137":1,"4138":1,"4139":1,"4140":1,"4141":1,"4142":1,"4143":2,"4144":1,"4145":2,"4146":2,"4147":1,"4148":2,"4149":1,"4150":1,"4151":2,"4152":1,"4153":2,"4154":2,"4155":1,"4156":1,"4157":2,"4158":1,"4159":2,"4160":1,"4161":2,"4162":2,"4163":2,"4164":2,"4165":1,"4166":1,"4167":1,"4168":1,"4169":1,"4170":2,"4171":2,"4172":2,"4173":2,"4174":1,"4175":2,"4176":2,"4177":2,"4178":2,"4179":2,"4180":1,"4181":1,"4182":2,"4183":1,"4184":2,"4185":2,"4186":1,"4187":2,"4188":1,"4189":2,"4190":2,"4191":2,"4192":1,"4193":2,"4194":2,"4195":1,"4196":2,"4197":2,"4198":1,"4199":1,"4200":1,"4201":2,"4202":2,"4203":1,"4204":2,"4205":2,"4206":2,"4207":1,"4208":2,"4209":1,"4210":2,"4211":2,"4212":1,"4213":1,"4214":2,"4215":2,"4216":1,"4217":2,"4218":2,"4219":1,"4220":1,"4221":2,"4222":1,"4223":2,"4224":1,"4225":2,"4226":2,"4227":1,"4228":1,"4229":1,"4230":1,"4231":1,"4232":2,"4233":2,"4234":2,"4235":2,"4236":2,"4237":2,"4238":1,"4239":1,"4240":1,"4241":1,"4242":2,"4243":2,"4244":1,"4245":1,"4246":1,"4247":1,"4248":1,"4249":2,"4250":1,"4251":1,"4252":1,"4253":1,"4254":2,"4255":2,"4256":1,"4257":1,"4258":2,"4259":2,"4260":1,"4261":2,"4262":1,"4263":1,"4264":1,"4265":1,"4266":1,"4267":2,"4268":1,"4269":2,"4270":2,"4271":1,"4272":1,"4273":2,"4274":2,"4275":1,"4276":1,"4277":2,"4278":1,"4279":2,"4280":1,"4281":2,"4282":1,"4283":1,"4284":2,"4285":2,"4286":1,"4287":2,"4288":1,"4289":1,"4290":2,"4291":1,"4292":1,"4293":2,"4294":2,"4295":1,"4296":1,"4297":1,"4298":2,"4299":1,"4300":1,"4301":1,"4302":2,"4303":2,"4304":2,"4305":2,"4306":1,"4307":2,"4308":2,"4309":2,"4310":1,"4311":2,"4312":1,"4313":1,"4314":2,"4315":2,"4316":1,"4317":2,"4318":2,"4319":1,"4320":1,"4321":1,"4322":2,"4323":2,"4324":2,"4325":2,"4326":1,"4327":1,"4328":2,"4329":2,"4330":2,"4331":1,"4332":2,"4333":2,"4334":2,"4335":1,"4336":1,"4337":2,"4338":1,"4339":2,"4340":2,"4341":2,"4342":1,"4343":1,"4344":1,"4345":1,"4346":2,"4347":1,"4348":1,"4349":2,"4350":2,"4351":2,"4352":1,"4353":1,"4354":1,"4355":2,"4356":1,"4357":2,"4358":1,"4359":1,"4360":1,"4361":2,"4362":1,"4363":2,"4364":2,"4365":2,"4366":1,"4367":1,"4368":1,"4369":2,"4370":2,"4371":2,"4372":1,"4373":2,"4374":2,"4375":2,"4376":2,"4377":1,"4378":2,"4379":2,"4380":2,"4381":1,"4382":1,"4383":1,"4384":2,"4385":2,"4386":2,"4387":2,"4388":2,"4389":2,"4390":2,"4391":2,"4392":2,"4393":1,"4394":2,"4395":1,"4396":1,"4397":2,"4398":2,"4399":1,"4400":1,"4401":1,"4402":1,"4403":1,"4404":1,"4405":1,"4406":2,"4407":1,"4408":1,"4409":2,"4410":1,"4411":1,"4412":2,"4413":2,"4414":1,"4415":1,"4416":2,"4417":1,"4418":1,"4419":1,"4420":1,"4421":2,"4422":2,"4423":2,"4424":2,"4425":1,"4426":2,"4427":2,"4428":1,"4429":1,"4430":2,"4431":2,"4432":1,"4433":2,"4434":2,"4435":2,"4436":1,"4437":1,"4438":1,"4439":2,"4440":2,"4441":1,"4442":1,"4443":2,"4444":2,"4445":1,"4446":2,"4447":1,"4448":1,"4449":2,"4450":1,"4451":1,"4452":1,"4453":2,"4454":1,"4455":1,"4456":2,"4457":2,"4458":2,"4459":2,"4460":2,"4461":2,"4462":1,"4463":1,"4464":1,"4465":1,"4466":1,"4467":2,"4468":2,"4469":1,"4470":1,"4471":2,"4472":2,"4473":1,"4474":1,"4475":2,"4476":2,"4477":1,"4478":2,"4479":1,"4480":1,"4481":1,"4482":2,"4483":1,"4484":2,"4485":2,"4486":2,"4487":1,"4488":1,"4489":2,"4490":1,"4491":2,"4492":2,"4493":1,"4494":2,"4495":2,"4496":1,"4497":1,"4498":2,"4499":2,"4500":1,"4501":1,"4502":1,"4503":2,"4504":1,"4505":2,"4506":2,"4507":1,"4508":1,"4509":2,"4510":2,"4511":1,"4512":1,"4513":1,"4514":2,"4515":2,"4516":2,"4517":2,"4518":1,"4519":2,"4520":2,"4521":2,"4522":2,"4523":2,"4524":1,"4525":2,"4526":1,"4527":1,"4528":1,"4529":1,"4530":2,"4531":1,"4532":2,"4533":2,"4534":1,"4535":2,"4536":1,"4537":2,"4538":2,"4539":2,"4540":1,"4541":1,"4542":1,"4543":2,"4544":1,"4545":1,"4546":2,"4547":1,"4548":1,"4549":1,"4550":1,"4551":2,"4552":2,"4553":1,"4554":1,"4555":2,"4556":1,"4557":1,"4558":2,"4559":1,"4560":1,"4561":1,"4562":2,"4563":1,"4564":2,"4565":2,"4566":2,"4567":2,"4568":1,"4569":1,"4570":1,"4571":2,"4572":2,"4573":1,"4574":2,"4575":2,"4576":2,"4577":2,"4578":1,"4579":1,"4580":1,"4581":1,"4582":1,"4583":1,"4584":1,"4585":1,"4586":1,"4587":2,"4588":1,"4589":2,"4590":2,"4591":2,"4592":1,"4593":2,"4594":2,"4595":1,"4596":1,"4597":1,"4598":2,"4599":2,"4600":2,"4601":1,"4602":1,"4603":2,"4604":2,"4605":2,"4606":2,"4607":2,"4608":2,"4609":2,"4610":2,"4611":2,"4612":2,"4613":2,"4614":1,"4615":1,"4616":2,"4617":2,"4618":2,"4619":1,"4620":1,"4621":1,"4622":2,"4623":2,"4624":1,"4625":2,"4626":1,"4627":2,"4628":1,"4629":1,"4630":1,"4631":1,"4632":2,"4633":1,"4634":1,"4635":1,"4636":2,"4637":1,"4638":1,"4639":1,"4640":2,"4641":2,"4642":1,"4643":1,"4644":2,"4645":1,"4646":2,"4647":1,"4648":1,"4649":2,"4650":1,"4651":1,"4652":2,"4653":1,"4654":1,"4655":2,"4656":1,"4657":1,"4658":1,"4659":2,"4660":2,"4661":2,"4662":1,"4663":1,"4664":2,"4665":1,"4666":2,"4667":1,"4668":2,"4669":1,"4670":2,"4671":2,"4672":1,"4673":2,"4674":1,"4675":2,"4676":1,"4677":1,"4678":1,"4679":2,"4680":2,"4681":2,"4682":2,"4683":2,"4684":2,"4685":1,"4686":2,"4687":2,"4688":1,"4689":2,"4690":2,"4691":2,"4692":1,"4693":2,"4694":1,"4695":2,"4696":2,"4697":2,"4698":2,"4699":1,"4700":2,"4701":2,"4702":2,"4703":1,"4704":1,"4705":1,"4706":1,"4707":1,"4708":1,"4709":2,"4710":2,"4711":1,"4712":1,"4713":2,"4714":2,"4715":1,"4716":1,"4717":1,"4718":2,"4719":1,"4720":1,"4721":1,"4722":2,"4723":2,"4724":1,"4725":1,"4726":1,"4727":2,"4728":1,"4729":1,"4730":2,"4731":2,"4732":2,"4733":1,"4734":1,"4735":2,"4736":1,"4737":2,"4738":1,"4739":2,"4740":2,"4741":1,"4742":1,"4743":2,"4744":2,"4745":2,"4746":1,"4747":2,"4748":2,"4749":1,"4750":2,"4751":2,"4752":2,"4753":2,"4754":2,"4755":2,"4756":2,"4757":1,"4758":2,"4759":2,"4760":2,"4761":1,"4762":1,"4763":1,"4764":1,"4765":1,"4766":1,"4767":2,"4768":1,"4769":1,"4770":2,"4771":2,"4772":2,"4773":1,"4774":1,"4775":2,"4776":1,"4777":2,"4778":1,"4779":2,"4780":1,"4781":1,"4782":2,"4783":2,"4784":1,"4785":2,"4786":2,"4787":1,"4788":1,"4789":1,"4790":1,"4791":2,"4792":1,"4793":1,"4794":1,"4795":2,"4796":2,"4797":1,"4798":1,"4799":2,"4800":1,"4801":1,"4802":2,"4803":2,"4804":2,"4805":1,"4806":1,"4807":1,"4808":1,"4809":1,"4810":2,"4811":2,"4812":1,"4813":2,"4814":1,"4815":2,"4816":1,"4817":1,"4818":2,"4819":2,"4820":2,"4821":2,"4822":2,"4823":1,"4824":2,"4825":1,"4826":2,"4827":1,"4828":1,"4829":1,"4830":1,"4831":2,"4832":1,"4833":1,"4834":1,"4835":1,"4836":2,"4837":1,"4838":1,"4839":1,"4840":1,"4841":2,"4842":2,"4843":2,"4844":1,"4845":2,"4846":1,"4847":2,"4848":1,"4849":2,"4850":1,"4851":2,"4852":2,"4853":2,"4854":2,"4855":1,"4856":1,"4857":1,"4858":1,"4859":1,"4860":1,"4861":1,"4862":1,"4863":1,"4864":2,"4865":1,"4866":2,"4867":2,"4868":1,"4869":1,"4870":2,"4871":1,"4872":2,"4873":1,"4874":1,"4875":2,"4876":2,"4877":2,"4878":2,"4879":2,"4880":1,"4881":2,"4882":2,"4883":1,"4884":2,"4885":2,"4886":1,"4887":1,"4888":2,"4889":1,"4890":2,"4891":2,"4892":2,"4893":1,"4894":1,"4895":2,"4896":1,"4897":2,"4898":2,"4899":2,"4900":2,"4901":1,"4902":1,"4903":2,"4904":1,"4905":2,"4906":1,"4907":2,"4908":1,"4909":2,"4910":1,"4911":2,"4912":1,"4913":2,"4914":1,"4915":2,"4916":2,"4917":2,"4918":2,"4919":2,"4920":2,"4921":1,"4922":2,"4923":1,"4924":1,"4925":2,"4926":2,"4927":1,"4928":1,"4929":2,"4930":1,"4931":2,"4932":1,"4933":1,"4934":1,"4935":2,"4936":2,"4937":1,"4938":1,"4939":1,"4940":2,"4941":1,"4942":1,"4943":2,"4944":2,"4945":2,"4946":1,"4947":2,"4948":1,"4949":1,"4950":2,"4951":2,"4952":1,"4953":1,"4954":1,"4955":1,"4956":1,"4957":1,"4958":1,"4959":1,"4960":1,"4961":1,"4962":1,"4963":2,"4964":1,"4965":1,"4966":2,"4967":2,"4968":2,"4969":1,"4970":2,"4971":2,"4972":2,"4973":2,"4974":2,"4975":1,"4976":1,"4977":1,"4978":2,"4979":1,"4980":1,"4981":1,"4982":1,"4983":1,"4984":2,"4985":1,"4986":2,"4987":1,"4988":2,"4989":2,"4990":2,"4991":1,"4992":2,"4993":2,"4994":1,"4995":2,"4996":1,"4997":1,"4998":2,"4999":2,"5000":2,"5001":1,"5002":1,"5003":1,"5004":1,"5005":2,"5006":1,"5007":1,"5008":1,"5009":2,"5010":1,"5011":1,"5012":1,"5013":2,"5014":1,"5015":2,"5016":1,"5017":1,"5018":1,"5019":1,"5020":1,"5021":2,"5022":2,"5023":1,"5024":1,"5025":1,"5026":2,"5027":1,"5028":1,"5029":2,"5030":1,"5031":2,"5032":1,"5033":2,"5034":2,"5035":2,"5036":1,"5037":2,"5038":1,"5039":2,"5040":2,"5041":1,"5042":1,"5043":2,"5044":2,"5045":2,"5046":2,"5047":1,"5048":2,"5049":1,"5050":2,"5051":2,"5052":2,"5053":2,"5054":2,"5055":1,"5056":1,"5057":2,"5058":1,"5059":2,"5060":2,"5061":2,"5062":2,"5063":1,"5064":1,"5065":1,"5066":1,"5067":1,"5068":2,"5069":1,"5070":1,"5071":1,"5072":1,"5073":1,"5074":2,"5075":1,"5076":1,"5077":1,"5078":2,"5079":1,"5080":2,"5081":1,"5082":1,"5083":1,"5084":2,"5085":1,"5086":1,"5087":1,"5088":1,"5089":1,"5090":1,"5091":2,"5092":1,"5093":1,"5094":2,"5095":1,"5096":1,"5097":1,"5098":2,"5099":1,"5100":1,"5101":2,"5102":2,"5103":1,"5104":1,"5105":1,"5106":1,"5107":1,"5108":2,"5109":1,"5110":1,"5111":1,"5112":2,"5113":1,"5114":1,"5115":2,"5116":1,"5117":1,"5118":1,"5119":1,"5120":2,"5121":2,"5122":2,"5123":1,"5124":1,"5125":1,"5126":1,"5127":1,"5128":1,"5129":2,"5130":2,"5131":2,"5132":1,"5133":1,"5134":1,"5135":1,"5136":1,"5137":1,"5138":2,"5139":1,"5140":1,"5141":1,"5142":2,"5143":1,"5144":1,"5145":1,"5146":2,"5147":2,"5148":2,"5149":2,"5150":1,"5151":1,"5152":1,"5153":1,"5154":2,"5155":2,"5156":2,"5157":2,"5158":1,"5159":2,"5160":1,"5161":2,"5162":1,"5163":1,"5164":2,"5165":1,"5166":2,"5167":2,"5168":1,"5169":1,"5170":1,"5171":1,"5172":1,"5173":1,"5174":1,"5175":1,"5176":2,"5177":1,"5178":2,"5179":1,"5180":2,"5181":2,"5182":2,"5183":2,"5184":1,"5185":2,"5186":1,"5187":1,"5188":2,"5189":2,"5190":2,"5191":1,"5192":1,"5193":1,"5194":2,"5195":1,"5196":2,"5197":1,"5198":2,"5199":1,"5200":1,"5201":1,"5202":2,"5203":2,"5204":1,"5205":2,"5206":1,"5207":2,"5208":1,"5209":2,"5210":2,"5211":1,"5212":1,"5213":2,"5214":2,"5215":2,"5216":1,"5217":1,"5218":1,"5219":2,"5220":2,"5221":1,"5222":2,"5223":2,"5224":1,"5225":2,"5226":2,"5227":1,"5228":2,"5229":1,"5230":1,"5231":2,"5232":1,"5233":2,"5234":1,"5235":2,"5236":1,"5237":2,"5238":1,"5239":1,"5240":1,"5241":2,"5242":2,"5243":2,"5244":1,"5245":2,"5246":1,"5247":2,"5248":2,"5249":1,"5250":2,"5251":2,"5252":1,"5253":1,"5254":1,"5255":1,"5256":1,"5257":2,"5258":2,"5259":1,"5260":1,"5261":2,"5262":1,"5263":1,"5264":2,"5265":2,"5266":2,"5267":1,"5268":1,"5269":2,"5270":2,"5271":2,"5272":1,"5273":1,"5274":1,"5275":2,"5276":1,"5277":1,"5278":2,"5279":1,"5280":2,"5281":2,"5282":2,"5283":2,"5284":2,"5285":1,"5286":1,"5287":1,"5288":1,"5289":2,"5290":1,"5291":1,"5292":1,"5293":2,"5294":2,"5295":1,"5296":2,"5297":2,"5298":2,"5299":1,"5300":1,"5301":2,"5302":1,"5303":2,"5304":2,"5305":1,"5306":2,"5307":2,"5308":1,"5309":1,"5310":1,"5311":2,"5312":1,"5313":1,"5314":1,"5315":1,"5316":2,"5317":2,"5318":2,"5319":1,"5320":1,"5321":1,"5322":1,"5323":2,"5324":2,"5325":2,"5326":2,"5327":2,"5328":1,"5329":2,"5330":1,"5331":2,"5332":2,"5333":1,"5334":2,"5335":1,"5336":2,"5337":1,"5338":2,"5339":1,"5340":1,"5341":1,"5342":1,"5343":1,"5344":2,"5345":1,"5346":2,"5347":1,"5348":1,"5349":2,"5350":2,"5351":2,"5352":1,"5353":1,"5354":1,"5355":1,"5356":1,"5357":2,"5358":2,"5359":2,"5360":1,"5361":2,"5362":1,"5363":1,"5364":2,"5365":1,"5366":1,"5367":2,"5368":2,"5369":1,"5370":1,"5371":1,"5372":2,"5373":2,"5374":1,"5375":2,"5376":2,"5377":2,"5378":1,"5379":2,"5380":1,"5381":1,"5382":2,"5383":2,"5384":2,"5385":1,"5386":2,"5387":1,"5388":2,"5389":2,"5390":1,"5391":1,"5392":1,"5393":2,"5394":2,"5395":1,"5396":2,"5397":2,"5398":2,"5399":2,"5400":1,"5401":1,"5402":1,"5403":2,"5404":1,"5405":1,"5406":2,"5407":2,"5408":1,"5409":1,"5410":1,"5411":2,"5412":2,"5413":1,"5414":1,"5415":1,"5416":1,"5417":1,"5418":2,"5419":2,"5420":1,"5421":1,"5422":2,"5423":2,"5424":1,"5425":2,"5426":1,"5427":2,"5428":2,"5429":1,"5430":1,"5431":1,"5432":1,"5433":2,"5434":2,"5435":1,"5436":1,"5437":2,"5438":1,"5439":1,"5440":1,"5441":1,"5442":1,"5443":1,"5444":2,"5445":1,"5446":1,"5447":1,"5448":1,"5449":2,"5450":1,"5451":2,"5452":1,"5453":2,"5454":2,"5455":2,"5456":1,"5457":1,"5458":1,"5459":1,"5460":2,"5461":1,"5462":1,"5463":2,"5464":2,"5465":2,"5466":2,"5467":1,"5468":2,"5469":2,"5470":2,"5471":1,"5472":2,"5473":1,"5474":2,"5475":1,"5476":1,"5477":1,"5478":1,"5479":2,"5480":2,"5481":1,"5482":2,"5483":2,"5484":1,"5485":1,"5486":1,"5487":1,"5488":1,"5489":1,"5490":2,"5491":1,"5492":2,"5493":2,"5494":1,"5495":1,"5496":1,"5497":2,"5498":1,"5499":1,"5500":2,"5501":2,"5502":1,"5503":2,"5504":1,"5505":2,"5506":1,"5507":1,"5508":2,"5509":2,"5510":2,"5511":2,"5512":1,"5513":2,"5514":1,"5515":1,"5516":1,"5517":1,"5518":1,"5519":2,"5520":2,"5521":2,"5522":1,"5523":1,"5524":1,"5525":2,"5526":1,"5527":1,"5528":2,"5529":2,"5530":2,"5531":1,"5532":1,"5533":2,"5534":2,"5535":2,"5536":2,"5537":2,"5538":2,"5539":1,"5540":1,"5541":1,"5542":2,"5543":1,"5544":2,"5545":2,"5546":1,"5547":1,"5548":2,"5549":1,"5550":2,"5551":1,"5552":1,"5553":2,"5554":2,"5555":1,"5556":1,"5557":2,"5558":1,"5559":2,"5560":1,"5561":1,"5562":2,"5563":2,"5564":1,"5565":2,"5566":2,"5567":1,"5568":2,"5569":2,"5570":2,"5571":1,"5572":1,"5573":2,"5574":2,"5575":2,"5576":2,"5577":2,"5578":1,"5579":1,"5580":1,"5581":2,"5582":1,"5583":1,"5584":1,"5585":2,"5586":1,"5587":2,"5588":1,"5589":1,"5590":2,"5591":2,"5592":1,"5593":2,"5594":2,"5595":2,"5596":2,"5597":1,"5598":2,"5599":2,"5600":2,"5601":1,"5602":1,"5603":1,"5604":2,"5605":2,"5606":1,"5607":2,"5608":1,"5609":2,"5610":1,"5611":1,"5612":1,"5613":1,"5614":1,"5615":2,"5616":1,"5617":1,"5618":1,"5619":1,"5620":2,"5621":1,"5622":2,"5623":1,"5624":2,"5625":2,"5626":2,"5627":1,"5628":2,"5629":2,"5630":1,"5631":1,"5632":1,"5633":2,"5634":1,"5635":1,"5636":2,"5637":1,"5638":2,"5639":1,"5640":1,"5641":2,"5642":1,"5643":2,"5644":1,"5645":2,"5646":2,"5647":1,"5648":1,"5649":2,"5650":2,"5651":1,"5652":2,"5653":1,"5654":1,"5655":1,"5656":2,"5657":1,"5658":1,"5659":1,"5660":2,"5661":2,"5662":1,"5663":1,"5664":2,"5665":2,"5666":1,"5667":1,"5668":2,"5669":1,"5670":1,"5671":1,"5672":1,"5673":2,"5674":2,"5675":2,"5676":1,"5677":1,"5678":2,"5679":2,"5680":1,"5681":2,"5682":2,"5683":2,"5684":2,"5685":1,"5686":2,"5687":2,"5688":1,"5689":1,"5690":1,"5691":1,"5692":1,"5693":1,"5694":2,"5695":1,"5696":1,"5697":1,"5698":1,"5699":2,"5700":2,"5701":1,"5702":2,"5703":2,"5704":2,"5705":1,"5706":1,"5707":2,"5708":2,"5709":1,"5710":1,"5711":1,"5712":2,"5713":1,"5714":2,"5715":1,"5716":1,"5717":1,"5718":1,"5719":1,"5720":2,"5721":2,"5722":2,"5723":2,"5724":2,"5725":1,"5726":1,"5727":2,"5728":1,"5729":2,"5730":1,"5731":1,"5732":1,"5733":2,"5734":1,"5735":1,"5736":1,"5737":1,"5738":2,"5739":2,"5740":2,"5741":2,"5742":1,"5743":1,"5744":1,"5745":2,"5746":1,"5747":1,"5748":2,"5749":1,"5750":1,"5751":2,"5752":1,"5753":2,"5754":1,"5755":2,"5756":1,"5757":1,"5758":2,"5759":1,"5760":1,"5761":1,"5762":2,"5763":1,"5764":2,"5765":1,"5766":2,"5767":1,"5768":2,"5769":2,"5770":2,"5771":1,"5772":1,"5773":2,"5774":1,"5775":1,"5776":1,"5777":2,"5778":2,"5779":1,"5780":2,"5781":2,"5782":1,"5783":1,"5784":1,"5785":1,"5786":2,"5787":1,"5788":2,"5789":2,"5790":2,"5791":2,"5792":1,"5793":2,"5794":2,"5795":1,"5796":2,"5797":2,"5798":1,"5799":2,"5800":1,"5801":2,"5802":2,"5803":2,"5804":1,"5805":2,"5806":2,"5807":1,"5808":1,"5809":1,"5810":1,"5811":1,"5812":2,"5813":2,"5814":2,"5815":1,"5816":2,"5817":2,"5818":1,"5819":2,"5820":1,"5821":2,"5822":1,"5823":2,"5824":2,"5825":2,"5826":1,"5827":1,"5828":2,"5829":1,"5830":2,"5831":2,"5832":1,"5833":1,"5834":2,"5835":1,"5836":2,"5837":1,"5838":1,"5839":2,"5840":1,"5841":1,"5842":1,"5843":2,"5844":1,"5845":2,"5846":1,"5847":2,"5848":1,"5849":1,"5850":1,"5851":1,"5852":2,"5853":1,"5854":2,"5855":1,"5856":1,"5857":1,"5858":2,"5859":1,"5860":2,"5861":1,"5862":2,"5863":1,"5864":2,"5865":2,"5866":2,"5867":1,"5868":1,"5869":2,"5870":2,"5871":1,"5872":2,"5873":1,"5874":2,"5875":2,"5876":1,"5877":2,"5878":2,"5879":2,"5880":1,"5881":1,"5882":1,"5883":2,"5884":1,"5885":1,"5886":2,"5887":1,"5888":2,"5889":2,"5890":1,"5891":1,"5892":2,"5893":2,"5894":1,"5895":1,"5896":2,"5897":1,"5898":1,"5899":2,"5900":1,"5901":2,"5902":1,"5903":1,"5904":1,"5905":2,"5906":2,"5907":2,"5908":2,"5909":1,"5910":1,"5911":1,"5912":2,"5913":2,"5914":2,"5915":1,"5916":2,"5917":1,"5918":1,"5919":2,"5920":2,"5921":1,"5922":1,"5923":2,"5924":2,"5925":2,"5926":2,"5927":1,"5928":1,"5929":1,"5930":1,"5931":2,"5932":2,"5933":1,"5934":2,"5935":1,"5936":2,"5937":1,"5938":1,"5939":1,"5940":1,"5941":2,"5942":2,"5943":1,"5944":2,"5945":1,"5946":2,"5947":1,"5948":2,"5949":1,"5950":2,"5951":1,"5952":2,"5953":2,"5954":1,"5955":2,"5956":2,"5957":1,"5958":1,"5959":1,"5960":2,"5961":2,"5962":2,"5963":2,"5964":2,"5965":1,"5966":1,"5967":2,"5968":2,"5969":2,"5970":2,"5971":2,"5972":1,"5973":2,"5974":2,"5975":2,"5976":2,"5977":1,"5978":2,"5979":2,"5980":1,"5981":1,"5982":2,"5983":2,"5984":2,"5985":2,"5986":2,"5987":1,"5988":1,"5989":1,"5990":1,"5991":1,"5992":2,"5993":1,"5994":1,"5995":1,"5996":1,"5997":1,"5998":1,"5999":2,"6000":1,"6001":1,"6002":2,"6003":2,"6004":2,"6005":1,"6006":1,"6007":1,"6008":1,"6009":1,"6010":2,"6011":2,"6012":1,"6013":1,"6014":1,"6015":2,"6016":2,"6017":2,"6018":2,"6019":1,"6020":1,"6021":1,"6022":2,"6023":2,"6024":1,"6025":2,"6026":2,"6027":2,"6028":1,"6029":1,"6030":1,"6031":2,"6032":2,"6033":2,"6034":2,"6035":1,"6036":2,"6037":1,"6038":2,"6039":2,"6040":2,"6041":1,"6042":2,"6043":2,"6044":2,"6045":1,"6046":2,"6047":1,"6048":2,"6049":2,"6050":2,"6051":2,"6052":1,"6053":1,"6054":1,"6055":1,"6056":1,"6057":2,"6058":1,"6059":2,"6060":2,"6061":2,"6062":2,"6063":1,"6064":1,"6065":1,"6066":1,"6067":2,"6068":2,"6069":1,"6070":2,"6071":1,"6072":2,"6073":1,"6074":2,"6075":1,"6076":2,"6077":2,"6078":2,"6079":1,"6080":1,"6081":2,"6082":1,"6083":2,"6084":1,"6085":1,"6086":1,"6087":2,"6088":1,"6089":2,"6090":2,"6091":2,"6092":1,"6093":1,"6094":2,"6095":1,"6096":2,"6097":2,"6098":1,"6099":1,"6100":1,"6101":1,"6102":2,"6103":1,"6104":1,"6105":2,"6106":2,"6107":2,"6108":1,"6109":1,"6110":1,"6111":1,"6112":1,"6113":2,"6114":1,"6115":1,"6116":2,"6117":1,"6118":2,"6119":2,"6120":1,"6121":1,"6122":1,"6123":2,"6124":1,"6125":2,"6126":1,"6127":1,"6128":1,"6129":2,"6130":1,"6131":2,"6132":1,"6133":2,"6134":1,"6135":1,"6136":1,"6137":2,"6138":1,"6139":2,"6140":2,"6141":1,"6142":2,"6143":2,"6144":2,"6145":2,"6146":2,"6147":2,"6148":2,"6149":1,"6150":1,"6151":1,"6152":2,"6153":2,"6154":1,"6155":1,"6156":1,"6157":1,"6158":1,"6159":1,"6160":2,"6161":1,"6162":1,"6163":2,"6164":1,"6165":1,"6166":2,"6167":2,"6168":2,"6169":1,"6170":2,"6171":1,"6172":1,"6173":1,"6174":2,"6175":1,"6176":2,"6177":1,"6178":2,"6179":2,"6180":2,"6181":1,"6182":1,"6183":2,"6184":1,"6185":1,"6186":1,"6187":2,"6188":1,"6189":2,"6190":1,"6191":2,"6192":1,"6193":2,"6194":2,"6195":2,"6196":1,"6197":1,"6198":1,"6199":1,"6200":2,"6201":2,"6202":1,"6203":2,"6204":2,"6205":2,"6206":2,"6207":1,"6208":2,"6209":1,"6210":2,"6211":2,"6212":2,"6213":1,"6214":2,"6215":2,"6216":1,"6217":2,"6218":2,"6219":2,"6220":1,"6221":1,"6222":2,"6223":1,"6224":2,"6225":1,"6226":2,"6227":2,"6228":2,"6229":1,"6230":1,"6231":2,"6232":1,"6233":2,"6234":1,"6235":2,"6236":1,"6237":2,"6238":2,"6239":1,"6240":2,"6241":1,"6242":1,"6243":1,"6244":1,"6245":1,"6246":2,"6247":2,"6248":2,"6249":2,"6250":2,"6251":2,"6252":1,"6253":2,"6254":1,"6255":2,"6256":2,"6257":2,"6258":1,"6259":2,"6260":2,"6261":2,"6262":2,"6263":2,"6264":2,"6265":1,"6266":2,"6267":1,"6268":2,"6269":2,"6270":2,"6271":1,"6272":2,"6273":1,"6274":1,"6275":2,"6276":1,"6277":1,"6278":1,"6279":2,"6280":1,"6281":1,"6282":1,"6283":2,"6284":1,"6285":2,"6286":2,"6287":1,"6288":2,"6289":1,"6290":1,"6291":2,"6292":2,"6293":1,"6294":1,"6295":1,"6296":2,"6297":2,"6298":1,"6299":2,"6300":1,"6301":2,"6302":2,"6303":1,"6304":1,"6305":2,"6306":2,"6307":1,"6308":1,"6309":1,"6310":2,"6311":2,"6312":1,"6313":2,"6314":1,"6315":2,"6316":1,"6317":2,"6318":1,"6319":1,"6320":2,"6321":1,"6322":2,"6323":2,"6324":1,"6325":2,"6326":1,"6327":1,"6328":1,"6329":2,"6330":2,"6331":1,"6332":2,"6333":1,"6334":1,"6335":2,"6336":1,"6337":2,"6338":2,"6339":1,"6340":2,"6341":2,"6342":2,"6343":2,"6344":1,"6345":2,"6346":1,"6347":1,"6348":1,"6349":2,"6350":2,"6351":1,"6352":2,"6353":1,"6354":2,"6355":2,"6356":1,"6357":1,"6358":1,"6359":2,"6360":1,"6361":2,"6362":1,"6363":1,"6364":2,"6365":2,"6366":1,"6367":2,"6368":1,"6369":1,"6370":2,"6371":2,"6372":2,"6373":1,"6374":1,"6375":1,"6376":1,"6377":2,"6378":2,"6379":2,"6380":1,"6381":1,"6382":2,"6383":1,"6384":1,"6385":2,"6386":2,"6387":2,"6388":2,"6389":1,"6390":2,"6391":2,"6392":1,"6393":1,"6394":1,"6395":1,"6396":1,"6397":1,"6398":1,"6399":2,"6400":2,"6401":2,"6402":2,"6403":1,"6404":2,"6405":1,"6406":2,"6407":2,"6408":1,"6409":2,"6410":2,"6411":1,"6412":1,"6413":1,"6414":2,"6415":2,"6416":2,"6417":2,"6418":2,"6419":2,"6420":1,"6421":2,"6422":1,"6423":2,"6424":1,"6425":1,"6426":1,"6427":2,"6428":1,"6429":1,"6430":1,"6431":1,"6432":2,"6433":1,"6434":2,"6435":2,"6436":2,"6437":1,"6438":2,"6439":2,"6440":1,"6441":2,"6442":2,"6443":2,"6444":2,"6445":2,"6446":1,"6447":1,"6448":1,"6449":1,"6450":2,"6451":1,"6452":2,"6453":2,"6454":1,"6455":1,"6456":1,"6457":2,"6458":2,"6459":2,"6460":1,"6461":1,"6462":1,"6463":1,"6464":1,"6465":1,"6466":2,"6467":1,"6468":1,"6469":1,"6470":2,"6471":1,"6472":1,"6473":1,"6474":2,"6475":2,"6476":2,"6477":1,"6478":1,"6479":1,"6480":1,"6481":2,"6482":2,"6483":1,"6484":1,"6485":1,"6486":1,"6487":1,"6488":2,"6489":2,"6490":2,"6491":2,"6492":1,"6493":2,"6494":2,"6495":1,"6496":2,"6497":1,"6498":1,"6499":1,"6500":2,"6501":1,"6502":1,"6503":2,"6504":2,"6505":1,"6506":1,"6507":2,"6508":2,"6509":2,"6510":2,"6511":2,"6512":1,"6513":1,"6514":1,"6515":1,"6516":1,"6517":1,"6518":2,"6519":2,"6520":1,"6521":2,"6522":2,"6523":2,"6524":1,"6525":1,"6526":1,"6527":1,"6528":2,"6529":1,"6530":1,"6531":2,"6532":2,"6533":2,"6534":1,"6535":1,"6536":2,"6537":1,"6538":2,"6539":2,"6540":2,"6541":1,"6542":1,"6543":1,"6544":2,"6545":1,"6546":2,"6547":1,"6548":2,"6549":2,"6550":2,"6551":1,"6552":2,"6553":2,"6554":2,"6555":1,"6556":1,"6557":2,"6558":2,"6559":1,"6560":1,"6561":2,"6562":1,"6563":2,"6564":2,"6565":2,"6566":1,"6567":2,"6568":2,"6569":1,"6570":2,"6571":2,"6572":2,"6573":1,"6574":1,"6575":2,"6576":1,"6577":2,"6578":1,"6579":1,"6580":2,"6581":1,"6582":2,"6583":2,"6584":2,"6585":2,"6586":2,"6587":2,"6588":2,"6589":1,"6590":1,"6591":2,"6592":1,"6593":1,"6594":1,"6595":2,"6596":1,"6597":1,"6598":2,"6599":2,"6600":1,"6601":1,"6602":1,"6603":2,"6604":1,"6605":1,"6606":2,"6607":2,"6608":1,"6609":2,"6610":1,"6611":1,"6612":1,"6613":1,"6614":1,"6615":1,"6616":2,"6617":2,"6618":2,"6619":2,"6620":2,"6621":1,"6622":2,"6623":1,"6624":2,"6625":2,"6626":1,"6627":2,"6628":2,"6629":1,"6630":1,"6631":1,"6632":2,"6633":1,"6634":2,"6635":2,"6636":2,"6637":2,"6638":1,"6639":1,"6640":1,"6641":2,"6642":1,"6643":2,"6644":2,"6645":1,"6646":2,"6647":1,"6648":2,"6649":1,"6650":2,"6651":2,"6652":2,"6653":2,"6654":2,"6655":1,"6656":1,"6657":2,"6658":1,"6659":1,"6660":1,"6661":1,"6662":1,"6663":1,"6664":1,"6665":1,"6666":2,"6667":2,"6668":1,"6669":2,"6670":2,"6671":1,"6672":1,"6673":2,"6674":1,"6675":1,"6676":2,"6677":1,"6678":2,"6679":2,"6680":2,"6681":1,"6682":2,"6683":1,"6684":2,"6685":1,"6686":2,"6687":1,"6688":2,"6689":2,"6690":1,"6691":1,"6692":1,"6693":2,"6694":2,"6695":1,"6696":1,"6697":2,"6698":1,"6699":2,"6700":2,"6701":1,"6702":2,"6703":2,"6704":2,"6705":1,"6706":1,"6707":2,"6708":2,"6709":2,"6710":2,"6711":1,"6712":1,"6713":2,"6714":2,"6715":1,"6716":1,"6717":1,"6718":1,"6719":1,"6720":2,"6721":1,"6722":1,"6723":1,"6724":2,"6725":1,"6726":1,"6727":1,"6728":2,"6729":1,"6730":2,"6731":1,"6732":2,"6733":1,"6734":2,"6735":2,"6736":1,"6737":1,"6738":1,"6739":2,"6740":1,"6741":1,"6742":2,"6743":2,"6744":1,"6745":1,"6746":1,"6747":2,"6748":1,"6749":2,"6750":1,"6751":2,"6752":2,"6753":1,"6754":1,"6755":2,"6756":2,"6757":2,"6758":2,"6759":2,"6760":1,"6761":2,"6762":2,"6763":1,"6764":2,"6765":2,"6766":1,"6767":2,"6768":1,"6769":2,"6770":1,"6771":1,"6772":2,"6773":1,"6774":1,"6775":2,"6776":1,"6777":1,"6778":2,"6779":1,"6780":2,"6781":1,"6782":2,"6783":1,"6784":1,"6785":1,"6786":2,"6787":1,"6788":1,"6789":2,"6790":2,"6791":1,"6792":1,"6793":1,"6794":2,"6795":2,"6796":2,"6797":2,"6798":1,"6799":2,"6800":1,"6801":1,"6802":2,"6803":2,"6804":2,"6805":1,"6806":2,"6807":1,"6808":1,"6809":2,"6810":1,"6811":1,"6812":2,"6813":2,"6814":2,"6815":2,"6816":1,"6817":2,"6818":2,"6819":2,"6820":2,"6821":1,"6822":2,"6823":2,"6824":2,"6825":1,"6826":2,"6827":1,"6828":1,"6829":1,"6830":2,"6831":2,"6832":1,"6833":1,"6834":2,"6835":2,"6836":1,"6837":1,"6838":2,"6839":1,"6840":1,"6841":2,"6842":1,"6843":1,"6844":1,"6845":2,"6846":2,"6847":1,"6848":1,"6849":1,"6850":1,"6851":1,"6852":2,"6853":2,"6854":1,"6855":1,"6856":2,"6857":2,"6858":1,"6859":2,"6860":2,"6861":1,"6862":1,"6863":1,"6864":2,"6865":1,"6866":1,"6867":2,"6868":1,"6869":1,"6870":1,"6871":1,"6872":2,"6873":2,"6874":2,"6875":2,"6876":2,"6877":1,"6878":1,"6879":2,"6880":1,"6881":1,"6882":2,"6883":1,"6884":2,"6885":2,"6886":1,"6887":1,"6888":1,"6889":2,"6890":1,"6891":1,"6892":1,"6893":2,"6894":2,"6895":2,"6896":2,"6897":1,"6898":1,"6899":1,"6900":2,"6901":1,"6902":1,"6903":2,"6904":1,"6905":1,"6906":1,"6907":1,"6908":1,"6909":2,"6910":1,"6911":1,"6912":2,"6913":1,"6914":2,"6915":1,"6916":1,"6917":2,"6918":1,"6919":2,"6920":1,"6921":1,"6922":1,"6923":2,"6924":2,"6925":1,"6926":1,"6927":1,"6928":1,"6929":1,"6930":2,"6931":2,"6932":2,"6933":2,"6934":2,"6935":1,"6936":2,"6937":1,"6938":1,"6939":1,"6940":2,"6941":1,"6942":1,"6943":1,"6944":1,"6945":1,"6946":2,"6947":2,"6948":2,"6949":2,"6950":1,"6951":1,"6952":1,"6953":2,"6954":2,"6955":1,"6956":2,"6957":1,"6958":2,"6959":2,"6960":2,"6961":1,"6962":2,"6963":1,"6964":2,"6965":2,"6966":2,"6967":2,"6968":1,"6969":1,"6970":2,"6971":2,"6972":2,"6973":2,"6974":1,"6975":2,"6976":1,"6977":2,"6978":2,"6979":2,"6980":1,"6981":2,"6982":2,"6983":1,"6984":2,"6985":2,"6986":2,"6987":2,"6988":2,"6989":1,"6990":1,"6991":2,"6992":1,"6993":1,"6994":2,"6995":2,"6996":2,"6997":1,"6998":1,"6999":1,"7000":2,"7001":2,"7002":2,"7003":2,"7004":1,"7005":1,"7006":1,"7007":2,"7008":2,"7009":2,"7010":1,"7011":2,"7012":1,"7013":2,"7014":2,"7015":2,"7016":2,"7017":2,"7018":1,"7019":1,"7020":1,"7021":1,"7022":2,"7023":1,"7024":2,"7025":1,"7026":2,"7027":1,"7028":2,"7029":2,"7030":2,"7031":2,"7032":1,"7033":1,"7034":2,"7035":2,"7036":1,"7037":1,"7038":2,"7039":1,"7040":1,"7041":1,"7042":1,"7043":1,"7044":2,"7045":1,"7046":2,"7047":2,"7048":2,"7049":2,"7050":2,"7051":2,"7052":2,"7053":2,"7054":2,"7055":1,"7056":1,"7057":2,"7058":2,"7059":1,"7060":1,"7061":1,"7062":1,"7063":1,"7064":2,"7065":2,"7066":1,"7067":1,"7068":2,"7069":2,"7070":1,"7071":1,"7072":2,"7073":2,"7074":2,"7075":1,"7076":2,"7077":2,"7078":1,"7079":1,"7080":2,"7081":1,"7082":1,"7083":1,"7084":1,"7085":2,"7086":2,"7087":2,"7088":1,"7089":1,"7090":1,"7091":2,"7092":2,"7093":2,"7094":1,"7095":2,"7096":1,"7097":2,"7098":2,"7099":2,"7100":2,"7101":2,"7102":1,"7103":1,"7104":1,"7105":1,"7106":1,"7107":1,"7108":1,"7109":1,"7110":1,"7111":2,"7112":2,"7113":1,"7114":1,"7115":1,"7116":1,"7117":2,"7118":1,"7119":2,"7120":1,"7121":1,"7122":1,"7123":2,"7124":1,"7125":1,"7126":1,"7127":1,"7128":2,"7129":2,"7130":2,"7131":2,"7132":1,"7133":1,"7134":2,"7135":2,"7136":2,"7137":2,"7138":2,"7139":1,"7140":1,"7141":1,"7142":2,"7143":1,"7144":2,"7145":1,"7146":1,"7147":1,"7148":2,"7149":2,"7150":1,"7151":2,"7152":1,"7153":2,"7154":2,"7155":1,"7156":2,"7157":2,"7158":2,"7159":1,"7160":1,"7161":1,"7162":2,"7163":2,"7164":2,"7165":1,"7166":2,"7167":1,"7168":2,"7169":2,"7170":2,"7171":1,"7172":1,"7173":2,"7174":1,"7175":1,"7176":1,"7177":2,"7178":1,"7179":1,"7180":1,"7181":1,"7182":2,"7183":1,"7184":1,"7185":1,"7186":2,"7187":1,"7188":1,"7189":1,"7190":1,"7191":1,"7192":1,"7193":1,"7194":2,"7195":2,"7196":1,"7197":1,"7198":1,"7199":2,"7200":1,"7201":1,"7202":1,"7203":2,"7204":2,"7205":1,"7206":2,"7207":2,"7208":1,"7209":2,"7210":1,"7211":2,"7212":1,"7213":1,"7214":2,"7215":2,"7216":2,"7217":2,"7218":1,"7219":1,"7220":2,"7221":1,"7222":1,"7223":1,"7224":2,"7225":1,"7226":2,"7227":1,"7228":1,"7229":1,"7230":1,"7231":1,"7232":1,"7233":1,"7234":2,"7235":2,"7236":1,"7237":1,"7238":1,"7239":1,"7240":1,"7241":1,"7242":1,"7243":2,"7244":1,"7245":1,"7246":2,"7247":1,"7248":2,"7249":2,"7250":1,"7251":1,"7252":1,"7253":1,"7254":1,"7255":2,"7256":2,"7257":1,"7258":1,"7259":1,"7260":2,"7261":2,"7262":2,"7263":2,"7264":2,"7265":2,"7266":2,"7267":1,"7268":2,"7269":1,"7270":2,"7271":2,"7272":1,"7273":2,"7274":2,"7275":1,"7276":2,"7277":2,"7278":1,"7279":2,"7280":2,"7281":2,"7282":1,"7283":2,"7284":2,"7285":2,"7286":2,"7287":1,"7288":1,"7289":1,"7290":2,"7291":2,"7292":1,"7293":2,"7294":1,"7295":1,"7296":1,"7297":1,"7298":1,"7299":1,"7300":2,"7301":2,"7302":1,"7303":1,"7304":2,"7305":2,"7306":1,"7307":1,"7308":1,"7309":1,"7310":2,"7311":2,"7312":2,"7313":2,"7314":1,"7315":2,"7316":1,"7317":1,"7318":1,"7319":1,"7320":1,"7321":2,"7322":2,"7323":2,"7324":2,"7325":1,"7326":2,"7327":2,"7328":2,"7329":1,"7330":2,"7331":2,"7332":1,"7333":1,"7334":2,"7335":1,"7336":1,"7337":2,"7338":1,"7339":2,"7340":1,"7341":1,"7342":2,"7343":2,"7344":1,"7345":2,"7346":2,"7347":2,"7348":2,"7349":1,"7350":1,"7351":2,"7352":1,"7353":2,"7354":2,"7355":2,"7356":2,"7357":2,"7358":1,"7359":1,"7360":2,"7361":2,"7362":2,"7363":2,"7364":2,"7365":2,"7366":2,"7367":1,"7368":1,"7369":2,"7370":1,"7371":1,"7372":2,"7373":1,"7374":2,"7375":2,"7376":1,"7377":2,"7378":1,"7379":1,"7380":1,"7381":2,"7382":2,"7383":2,"7384":1,"7385":2,"7386":1,"7387":1,"7388":2,"7389":1,"7390":1,"7391":2,"7392":1,"7393":1,"7394":1,"7395":2,"7396":2,"7397":1,"7398":1,"7399":1,"7400":2,"7401":2,"7402":1,"7403":1,"7404":1,"7405":2,"7406":2,"7407":1,"7408":2,"7409":2,"7410":1,"7411":1,"7412":2,"7413":2,"7414":1,"7415":2,"7416":2,"7417":1,"7418":1,"7419":1,"7420":1,"7421":1,"7422":2,"7423":1,"7424":1,"7425":2,"7426":1,"7427":2,"7428":2,"7429":1,"7430":2,"7431":2,"7432":1,"7433":1,"7434":1,"7435":1,"7436":2,"7437":1,"7438":2,"7439":2,"7440":1,"7441":1,"7442":2,"7443":2,"7444":1,"7445":2,"7446":2,"7447":2,"7448":1,"7449":1,"7450":1,"7451":2,"7452":2,"7453":2,"7454":1,"7455":2,"7456":1,"7457":1,"7458":2,"7459":1,"7460":2,"7461":2,"7462":2,"7463":1,"7464":2,"7465":1,"7466":1,"7467":2,"7468":2,"7469":2,"7470":1,"7471":2,"7472":1,"7473":2,"7474":2,"7475":2,"7476":1,"7477":1,"7478":1,"7479":2,"7480":1,"7481":2,"7482":1,"7483":2,"7484":2,"7485":2,"7486":1,"7487":2,"7488":2,"7489":1,"7490":2,"7491":2,"7492":2,"7493":1,"7494":2,"7495":1,"7496":2,"7497":1,"7498":1,"7499":2,"7500":1,"7501":2,"7502":1,"7503":1,"7504":1,"7505":2,"7506":1,"7507":2,"7508":1,"7509":1,"7510":2,"7511":2,"7512":1,"7513":2,"7514":2,"7515":2,"7516":2,"7517":1,"7518":1,"7519":2,"7520":2,"7521":1,"7522":2,"7523":1,"7524":1,"7525":1,"7526":1,"7527":1,"7528":2,"7529":1,"7530":2,"7531":1,"7532":1,"7533":1,"7534":2,"7535":1,"7536":2,"7537":2,"7538":2,"7539":2,"7540":2,"7541":1,"7542":2,"7543":1,"7544":1,"7545":1,"7546":2,"7547":1,"7548":1,"7549":1,"7550":1,"7551":1,"7552":2,"7553":2,"7554":2,"7555":1,"7556":2,"7557":1,"7558":2,"7559":2,"7560":2,"7561":1,"7562":2,"7563":1,"7564":1,"7565":2,"7566":1,"7567":2,"7568":2,"7569":1,"7570":1,"7571":1,"7572":1,"7573":2,"7574":2,"7575":2,"7576":2,"7577":1,"7578":1,"7579":1,"7580":2,"7581":1,"7582":2,"7583":1,"7584":2,"7585":1,"7586":2,"7587":2,"7588":2,"7589":2,"7590":1,"7591":1,"7592":1,"7593":1,"7594":2,"7595":2,"7596":1,"7597":1,"7598":2,"7599":2,"7600":1,"7601":1,"7602":1,"7603":2,"7604":2,"7605":1,"7606":2,"7607":2,"7608":2,"7609":1,"7610":2,"7611":1,"7612":1,"7613":2,"7614":2,"7615":1,"7616":2,"7617":2,"7618":2,"7619":1,"7620":1,"7621":1,"7622":2,"7623":1,"7624":2,"7625":2,"7626":2,"7627":1,"7628":2,"7629":1,"7630":2,"7631":1,"7632":2,"7633":2,"7634":1,"7635":2,"7636":2,"7637":2,"7638":1,"7639":1,"7640":2,"7641":2,"7642":2,"7643":2,"7644":1,"7645":2,"7646":1,"7647":2,"7648":1,"7649":2,"7650":1,"7651":2,"7652":1,"7653":1,"7654":2,"7655":2,"7656":2,"7657":1,"7658":1,"7659":2,"7660":2,"7661":2,"7662":2,"7663":2,"7664":1,"7665":2,"7666":1,"7667":2,"7668":1,"7669":1,"7670":2,"7671":1,"7672":1,"7673":1,"7674":1,"7675":2,"7676":2,"7677":2,"7678":2,"7679":1,"7680":1,"7681":1,"7682":1,"7683":2,"7684":2,"7685":1,"7686":2,"7687":1,"7688":2,"7689":1,"7690":1,"7691":2,"7692":2,"7693":2,"7694":1,"7695":1,"7696":1,"7697":2,"7698":2,"7699":2,"7700":1,"7701":1,"7702":1,"7703":2,"7704":2,"7705":1,"7706":2,"7707":2,"7708":1,"7709":1,"7710":2,"7711":2,"7712":1,"7713":1,"7714":1,"7715":1,"7716":1,"7717":1,"7718":1,"7719":2,"7720":1,"7721":1,"7722":2,"7723":2,"7724":1,"7725":2,"7726":1,"7727":2,"7728":1,"7729":2,"7730":2,"7731":1,"7732":1,"7733":1,"7734":1,"7735":1,"7736":1,"7737":2,"7738":1,"7739":1,"7740":1,"7741":2,"7742":1,"7743":2,"7744":1,"7745":1,"7746":2,"7747":1,"7748":2,"7749":2,"7750":2,"7751":1,"7752":1,"7753":1,"7754":1,"7755":2,"7756":2,"7757":2,"7758":1,"7759":2,"7760":1,"7761":2,"7762":1,"7763":2,"7764":2,"7765":2,"7766":1,"7767":1,"7768":1,"7769":2,"7770":2,"7771":1,"7772":1,"7773":2,"7774":2,"7775":1,"7776":1,"7777":2,"7778":2,"7779":2,"7780":2,"7781":2,"7782":1,"7783":2,"7784":1,"7785":1,"7786":2,"7787":1,"7788":2,"7789":1,"7790":2,"7791":1,"7792":2,"7793":2,"7794":1,"7795":1,"7796":2,"7797":1,"7798":1,"7799":2,"7800":1,"7801":2,"7802":1,"7803":2,"7804":1,"7805":1,"7806":1,"7807":1,"7808":2,"7809":1,"7810":2,"7811":1,"7812":1,"7813":2,"7814":2,"7815":2,"7816":2,"7817":1,"7818":2,"7819":1,"7820":2,"7821":2,"7822":1,"7823":2,"7824":1,"7825":2,"7826":1,"7827":1,"7828":2,"7829":1,"7830":1,"7831":2,"7832":2,"7833":2,"7834":1,"7835":1,"7836":1,"7837":2,"7838":1,"7839":1,"7840":1,"7841":1,"7842":2,"7843":2,"7844":1,"7845":2,"7846":2,"7847":2,"7848":1,"7849":1,"7850":1,"7851":2,"7852":2,"7853":2,"7854":2,"7855":2,"7856":2,"7857":2,"7858":2,"7859":1,"7860":1,"7861":1,"7862":1,"7863":2,"7864":1,"7865":2,"7866":2,"7867":2,"7868":1,"7869":1,"7870":2,"7871":1,"7872":1,"7873":1,"7874":1,"7875":1,"7876":1,"7877":2,"7878":1,"7879":1,"7880":2,"7881":2,"7882":2,"7883":1,"7884":1,"7885":1,"7886":2,"7887":1,"7888":2,"7889":2,"7890":2,"7891":2,"7892":1,"7893":2,"7894":2,"7895":2,"7896":1,"7897":1,"7898":2,"7899":1,"7900":2,"7901":2,"7902":2,"7903":2,"7904":1,"7905":2,"7906":2,"7907":2,"7908":1,"7909":1,"7910":1,"7911":2,"7912":2,"7913":2,"7914":2,"7915":2,"7916":1,"7917":2,"7918":2,"7919":2,"7920":2,"7921":1,"7922":2,"7923":1,"7924":2,"7925":2,"7926":1,"7927":2,"7928":2,"7929":2,"7930":1,"7931":1,"7932":2,"7933":2,"7934":1,"7935":2,"7936":1,"7937":1,"7938":1,"7939":1,"7940":2,"7941":1,"7942":2,"7943":1,"7944":2,"7945":1,"7946":1,"7947":1,"7948":1,"7949":2,"7950":1,"7951":2,"7952":2,"7953":1,"7954":1,"7955":2,"7956":2,"7957":2,"7958":2,"7959":2,"7960":2,"7961":2,"7962":1,"7963":1,"7964":1,"7965":1,"7966":2,"7967":1,"7968":2,"7969":2,"7970":2,"7971":2,"7972":2,"7973":2,"7974":1,"7975":1,"7976":2,"7977":2,"7978":1,"7979":2,"7980":2,"7981":1,"7982":1,"7983":1,"7984":2,"7985":1,"7986":2,"7987":2,"7988":1,"7989":1,"7990":1,"7991":2,"7992":1,"7993":2,"7994":1,"7995":2,"7996":1,"7997":1,"7998":2,"7999":1,"8000":2,"8001":2,"8002":1,"8003":1,"8004":2,"8005":2,"8006":1,"8007":2,"8008":1,"8009":2,"8010":1,"8011":1,"8012":2,"8013":1,"8014":1,"8015":2,"8016":2,"8017":1,"8018":2,"8019":2,"8020":2,"8021":2,"8022":2,"8023":1,"8024":2,"8025":1,"8026":1,"8027":1,"8028":1,"8029":1,"8030":2,"8031":2,"8032":2,"8033":1,"8034":1,"8035":1,"8036":1,"8037":1,"8038":1,"8039":1,"8040":1,"8041":2,"8042":2,"8043":2,"8044":1,"8045":2,"8046":2,"8047":1,"8048":2,"8049":1,"8050":2,"8051":1,"8052":1,"8053":2,"8054":1,"8055":1,"8056":1,"8057":2,"8058":2,"8059":1,"8060":2,"8061":2,"8062":2,"8063":1,"8064":1,"8065":1,"8066":2,"8067":2,"8068":2,"8069":2,"8070":1,"8071":1,"8072":2,"8073":2,"8074":1,"8075":1,"8076":1,"8077":2,"8078":2,"8079":2,"8080":1,"8081":2,"8082":2,"8083":2,"8084":1,"8085":1,"8086":2,"8087":1,"8088":1,"8089":1,"8090":1,"8091":2,"8092":2,"8093":1,"8094":2,"8095":1,"8096":1,"8097":2,"8098":1,"8099":1,"8100":2,"8101":1,"8102":2,"8103":1,"8104":1,"8105":1,"8106":2,"8107":1,"8108":1,"8109":2,"8110":2,"8111":1,"8112":2,"8113":2,"8114":2,"8115":2,"8116":2,"8117":1,"8118":2,"8119":2,"8120":1,"8121":2,"8122":1,"8123":2,"8124":1,"8125":2,"8126":2,"8127":1,"8128":2,"8129":1,"8130":2,"8131":2,"8132":2,"8133":1,"8134":1,"8135":1,"8136":1,"8137":1,"8138":2,"8139":2,"8140":2,"8141":1,"8142":1,"8143":2,"8144":1,"8145":1,"8146":2,"8147":1,"8148":1,"8149":1,"8150":2,"8151":2,"8152":1,"8153":2,"8154":1,"8155":2,"8156":1,"8157":1,"8158":2,"8159":2,"8160":1,"8161":2,"8162":1,"8163":2,"8164":2,"8165":2,"8166":2,"8167":1,"8168":1,"8169":2,"8170":1,"8171":2,"8172":1,"8173":1,"8174":1,"8175":1,"8176":2,"8177":1,"8178":2,"8179":2,"8180":1,"8181":1,"8182":1,"8183":2,"8184":1,"8185":1,"8186":2,"8187":1,"8188":2,"8189":1,"8190":1,"8191":1,"8192":2,"8193":2,"8194":2,"8195":2,"8196":1,"8197":2,"8198":1,"8199":1,"8200":2,"8201":2,"8202":1,"8203":2,"8204":1,"8205":1,"8206":1,"8207":1,"8208":1,"8209":1,"8210":2,"8211":2,"8212":2,"8213":2,"8214":1,"8215":2,"8216":1,"8217":2,"8218":1,"8219":1,"8220":2,"8221":2,"8222":1,"8223":1,"8224":1,"8225":2,"8226":2,"8227":1,"8228":2,"8229":1,"8230":1,"8231":2,"8232":2,"8233":2,"8234":2,"8235":2,"8236":2,"8237":2,"8238":2,"8239":1,"8240":2,"8241":1,"8242":2,"8243":1,"8244":2,"8245":2,"8246":2,"8247":2,"8248":2,"8249":2,"8250":2,"8251":1,"8252":2,"8253":1,"8254":1,"8255":1,"8256":2,"8257":2,"8258":1,"8259":2,"8260":1,"8261":2,"8262":1,"8263":1,"8264":2,"8265":1,"8266":1,"8267":1,"8268":1,"8269":2,"8270":2,"8271":1,"8272":2,"8273":2,"8274":1,"8275":1,"8276":2,"8277":1,"8278":2,"8279":2,"8280":2,"8281":1,"8282":2,"8283":1,"8284":1,"8285":2,"8286":2,"8287":2,"8288":1,"8289":2,"8290":2,"8291":2,"8292":1,"8293":1,"8294":1,"8295":1,"8296":1,"8297":1,"8298":1,"8299":2,"8300":2,"8301":1,"8302":2,"8303":2,"8304":2,"8305":2,"8306":2,"8307":1,"8308":1,"8309":2,"8310":1,"8311":1,"8312":1,"8313":2,"8314":1,"8315":2,"8316":2,"8317":2,"8318":2,"8319":2,"8320":2,"8321":1,"8322":2,"8323":1,"8324":2,"8325":2,"8326":1,"8327":1,"8328":1,"8329":2,"8330":1,"8331":2,"8332":1,"8333":2,"8334":1,"8335":2,"8336":1,"8337":1,"8338":2,"8339":1,"8340":2,"8341":1,"8342":2,"8343":1,"8344":1,"8345":2,"8346":1,"8347":2,"8348":1,"8349":2,"8350":2,"8351":2,"8352":2,"8353":2,"8354":1,"8355":1,"8356":2,"8357":2,"8358":1,"8359":2,"8360":2,"8361":1,"8362":2,"8363":2,"8364":2,"8365":1,"8366":2,"8367":1,"8368":2,"8369":2,"8370":2,"8371":2,"8372":1,"8373":2,"8374":1,"8375":1,"8376":2,"8377":1,"8378":2,"8379":2,"8380":1,"8381":2,"8382":2,"8383":2,"8384":1,"8385":2,"8386":2,"8387":1,"8388":1,"8389":1,"8390":1,"8391":2,"8392":2,"8393":2,"8394":1,"8395":1,"8396":2,"8397":1,"8398":2,"8399":2,"8400":2,"8401":2,"8402":2,"8403":2,"8404":1,"8405":2,"8406":1,"8407":1,"8408":2,"8409":2,"8410":2,"8411":1,"8412":1,"8413":2,"8414":2,"8415":1,"8416":1,"8417":2,"8418":1,"8419":1,"8420":2,"8421":1,"8422":1,"8423":2,"8424":2,"8425":1,"8426":1,"8427":1,"8428":1,"8429":1,"8430":2,"8431":2,"8432":2,"8433":2,"8434":1,"8435":1,"8436":2,"8437":2,"8438":2,"8439":2,"8440":1,"8441":2,"8442":1,"8443":2,"8444":2,"8445":1,"8446":2,"8447":1,"8448":1,"8449":1,"8450":2,"8451":2,"8452":1,"8453":1,"8454":1,"8455":1,"8456":1,"8457":2,"8458":1,"8459":1,"8460":1,"8461":2,"8462":2,"8463":1,"8464":1,"8465":2,"8466":2,"8467":2,"8468":1,"8469":2,"8470":2,"8471":2,"8472":2,"8473":2,"8474":2,"8475":2,"8476":2,"8477":1,"8478":1,"8479":2,"8480":2,"8481":1,"8482":2,"8483":2,"8484":2,"8485":1,"8486":2,"8487":2,"8488":2,"8489":1,"8490":2,"8491":1,"8492":1,"8493":2,"8494":2,"8495":2,"8496":2,"8497":2,"8498":2,"8499":2,"8500":1,"8501":2,"8502":2,"8503":2,"8504":2,"8505":2,"8506":2,"8507":1,"8508":1,"8509":1,"8510":2,"8511":1,"8512":1,"8513":2,"8514":2,"8515":1,"8516":1,"8517":1,"8518":1,"8519":1,"8520":2,"8521":1,"8522":1,"8523":2,"8524":1,"8525":2,"8526":2,"8527":1,"8528":2,"8529":1,"8530":1,"8531":2,"8532":2,"8533":1,"8534":2,"8535":2,"8536":2,"8537":2,"8538":2,"8539":2,"8540":1,"8541":1,"8542":1,"8543":1,"8544":1,"8545":1,"8546":1,"8547":1,"8548":1,"8549":1,"8550":1,"8551":1,"8552":1,"8553":2,"8554":1,"8555":1,"8556":2,"8557":1,"8558":1,"8559":2,"8560":2,"8561":1,"8562":1,"8563":2,"8564":2,"8565":1,"8566":1,"8567":1,"8568":1,"8569":2,"8570":1,"8571":2,"8572":2,"8573":2,"8574":2,"8575":2,"8576":2,"8577":2,"8578":2,"8579":1,"8580":1,"8581":2,"8582":1,"8583":2,"8584":2,"8585":2,"8586":1,"8587":1,"8588":1,"8589":1,"8590":1,"8591":1,"8592":1,"8593":2,"8594":2,"8595":2,"8596":2,"8597":2,"8598":2,"8599":2,"8600":1,"8601":2,"8602":1,"8603":1,"8604":2,"8605":1,"8606":1,"8607":2,"8608":1,"8609":1,"8610":1,"8611":2,"8612":1,"8613":1,"8614":2,"8615":1,"8616":2,"8617":1,"8618":2,"8619":2,"8620":1,"8621":2,"8622":2,"8623":2,"8624":1,"8625":1,"8626":1,"8627":1,"8628":2,"8629":1,"8630":1,"8631":1,"8632":2,"8633":1,"8634":2,"8635":2,"8636":2,"8637":2,"8638":2,"8639":1,"8640":1,"8641":1,"8642":1,"8643":2,"8644":2,"8645":2,"8646":1,"8647":2,"8648":2,"8649":2,"8650":2,"8651":2,"8652":2,"8653":2,"8654":1,"8655":2,"8656":2,"8657":1,"8658":2,"8659":2,"8660":2,"8661":1,"8662":1,"8663":1,"8664":1,"8665":1,"8666":2,"8667":1,"8668":1,"8669":2,"8670":2,"8671":1,"8672":1,"8673":2,"8674":2,"8675":2,"8676":1,"8677":1,"8678":1,"8679":1,"8680":1,"8681":2,"8682":2,"8683":2,"8684":2,"8685":2,"8686":2,"8687":1,"8688":1,"8689":1,"8690":1,"8691":2,"8692":1,"8693":1,"8694":1,"8695":2,"8696":2,"8697":2,"8698":1,"8699":2,"8700":2,"8701":1,"8702":1,"8703":2,"8704":2,"8705":1,"8706":1,"8707":1,"8708":2,"8709":1,"8710":2,"8711":2,"8712":1,"8713":2,"8714":2,"8715":1,"8716":2,"8717":1,"8718":1,"8719":2,"8720":2,"8721":1,"8722":2,"8723":1,"8724":2,"8725":2,"8726":1,"8727":2,"8728":1,"8729":1,"8730":1,"8731":1,"8732":2,"8733":1,"8734":1,"8735":1,"8736":1,"8737":2,"8738":1,"8739":2,"8740":2,"8741":1,"8742":1,"8743":2,"8744":2,"8745":2,"8746":1,"8747":1,"8748":1,"8749":2,"8750":1,"8751":1,"8752":2,"8753":2,"8754":2,"8755":1,"8756":2,"8757":1,"8758":2,"8759":1,"8760":1,"8761":1,"8762":1,"8763":1,"8764":2,"8765":2,"8766":1,"8767":1,"8768":2,"8769":2,"8770":1,"8771":2,"8772":1,"8773":1,"8774":2,"8775":1,"8776":1,"8777":1,"8778":2,"8779":2,"8780":1,"8781":2,"8782":2,"8783":1,"8784":2,"8785":1,"8786":2,"8787":2,"8788":1,"8789":2,"8790":2,"8791":1,"8792":1,"8793":1,"8794":1,"8795":2,"8796":2,"8797":2,"8798":1,"8799":1,"8800":2,"8801":1,"8802":1,"8803":1,"8804":1,"8805":2,"8806":1,"8807":2,"8808":1,"8809":2,"8810":1,"8811":2,"8812":1,"8813":1,"8814":1,"8815":1,"8816":2,"8817":1,"8818":2,"8819":1,"8820":2,"8821":2,"8822":1,"8823":2,"8824":2,"8825":2,"8826":1,"8827":1,"8828":1,"8829":2,"8830":1,"8831":2,"8832":2,"8833":2,"8834":1,"8835":1,"8836":1,"8837":2,"8838":1,"8839":1,"8840":1,"8841":2,"8842":1,"8843":2,"8844":2,"8845":2,"8846":1,"8847":2,"8848":2,"8849":2,"8850":1,"8851":1,"8852":1,"8853":2,"8854":1,"8855":2,"8856":2,"8857":2,"8858":1,"8859":1,"8860":1,"8861":2,"8862":1,"8863":1,"8864":1,"8865":2,"8866":1,"8867":1,"8868":1,"8869":1,"8870":1,"8871":1,"8872":2,"8873":2,"8874":2,"8875":1,"8876":1,"8877":1,"8878":1,"8879":1,"8880":2,"8881":1,"8882":2,"8883":2,"8884":2,"8885":2,"8886":1,"8887":2,"8888":2,"8889":1,"8890":2,"8891":1,"8892":2,"8893":1,"8894":1,"8895":1,"8896":2,"8897":2,"8898":1,"8899":2,"8900":2,"8901":1,"8902":1,"8903":1,"8904":2,"8905":1,"8906":1,"8907":2,"8908":2,"8909":2,"8910":1,"8911":2,"8912":2,"8913":2,"8914":2,"8915":2,"8916":1,"8917":1,"8918":2,"8919":2,"8920":2,"8921":1,"8922":1,"8923":1,"8924":1,"8925":2,"8926":1,"8927":1,"8928":2,"8929":1,"8930":2,"8931":2,"8932":1,"8933":2,"8934":1,"8935":1,"8936":2,"8937":1,"8938":1,"8939":1,"8940":1,"8941":1,"8942":1,"8943":1,"8944":2,"8945":1,"8946":2,"8947":2,"8948":2,"8949":1,"8950":1,"8951":2,"8952":1,"8953":1,"8954":1,"8955":2,"8956":2,"8957":2,"8958":1,"8959":1,"8960":2,"8961":2,"8962":2,"8963":1,"8964":1,"8965":1,"8966":2,"8967":1,"8968":1,"8969":1,"8970":2,"8971":1,"8972":2,"8973":1,"8974":2,"8975":2,"8976":1,"8977":1,"8978":2,"8979":2,"8980":1,"8981":1,"8982":2,"8983":1,"8984":2,"8985":2,"8986":1,"8987":1,"8988":2,"8989":2,"8990":1,"8991":1,"8992":1,"8993":2,"8994":1,"8995":1,"8996":2,"8997":1,"8998":1,"8999":1,"9000":2,"9001":2,"9002":1,"9003":1,"9004":2,"9005":2,"9006":1,"9007":1,"9008":1,"9009":1,"9010":1,"9011":1,"9012":1,"9013":1,"9014":2,"9015":2,"9016":1,"9017":2,"9018":1,"9019":1,"9020":1,"9021":1,"9022":2,"9023":1,"9024":2,"9025":1,"9026":2,"9027":1,"9028":1,"9029":1,"9030":2,"9031":1,"9032":2,"9033":2,"9034":2,"9035":2,"9036":1,"9037":2,"9038":1,"9039":1,"9040":1,"9041":2,"9042":2,"9043":1,"9044":2,"9045":2,"9046":1,"9047":1,"9048":1,"9049":2,"9050":2,"9051":1,"9052":1,"9053":1,"9054":1,"9055":2,"9056":2,"9057":1,"9058":1,"9059":2,"9060":1,"9061":2,"9062":2,"9063":2,"9064":1,"9065":1,"9066":2,"9067":2,"9068":1,"9069":1,"9070":1,"9071":2,"9072":1,"9073":1,"9074":1,"9075":2,"9076":1,"9077":2,"9078":2,"9079":2,"9080":2,"9081":2,"9082":2,"9083":2,"9084":2,"9085":1,"9086":2,"9087":1,"9088":1,"9089":1,"9090":2,"9091":1,"9092":2,"9093":1,"9094":1,"9095":2,"9096":1,"9097":2,"9098":2,"9099":2,"9100":2,"9101":2,"9102":1,"9103":1,"9104":1,"9105":1,"9106":1,"9107":2,"9108":1,"9109":2,"9110":2,"9111":1,"9112":1,"9113":2,"9114":1,"9115":2,"9116":1,"9117":1,"9118":2,"9119":2,"9120":1,"9121":2,"9122":2,"9123":2,"9124":1,"9125":1,"9126":2,"9127":1,"9128":1,"9129":2,"9130":1,"9131":2,"9132":2,"9133":2,"9134":1,"9135":1,"9136":1,"9137":1,"9138":2,"9139":1,"9140":2,"9141":2,"9142":1,"9143":1,"9144":1,"9145":2,"9146":2,"9147":2,"9148":1,"9149":2,"9150":1,"9151":2,"9152":1,"9153":2,"9154":1,"9155":1,"9156":2,"9157":1,"9158":2,"9159":2,"9160":2,"9161":1,"9162":2,"9163":2,"9164":1,"9165":2,"9166":1,"9167":1,"9168":2,"9169":1,"9170":2,"9171":2,"9172":2,"9173":2,"9174":2,"9175":2,"9176":1,"9177":2,"9178":1,"9179":2,"9180":2,"9181":1,"9182":2,"9183":1,"9184":2,"9185":2,"9186":1,"9187":1,"9188":2,"9189":2,"9190":2,"9191":2,"9192":2,"9193":1,"9194":2,"9195":2,"9196":2,"9197":1,"9198":1,"9199":1,"9200":2,"9201":1,"9202":1,"9203":2,"9204":1,"9205":1,"9206":1,"9207":2,"9208":1,"9209":1,"9210":2,"9211":1,"9212":2,"9213":1,"9214":2,"9215":2,"9216":1,"9217":1,"9218":1,"9219":1,"9220":2,"9221":1,"9222":1,"9223":1,"9224":1,"9225":2,"9226":1,"9227":2,"9228":2,"9229":1,"9230":1,"9231":2,"9232":1,"9233":1,"9234":1,"9235":1,"9236":1,"9237":2,"9238":2,"9239":1,"9240":2,"9241":2,"9242":1,"9243":2,"9244":2,"9245":1,"9246":2,"9247":1,"9248":2,"9249":2,"9250":2,"9251":2,"9252":2,"9253":1,"9254":2,"9255":2,"9256":1,"9257":2,"9258":2,"9259":2,"9260":1,"9261":2,"9262":2,"9263":1,"9264":1,"9265":1,"9266":1,"9267":1,"9268":1,"9269":1,"9270":2,"9271":1,"9272":2,"9273":1,"9274":2,"9275":1,"9276":2,"9277":1,"9278":2,"9279":1,"9280":2,"9281":1,"9282":2,"9283":1,"9284":2,"9285":2,"9286":2,"9287":2,"9288":1,"9289":2,"9290":1,"9291":2,"9292":1,"9293":1,"9294":1,"9295":2,"9296":2,"9297":2,"9298":2,"9299":1,"9300":1,"9301":2,"9302":1,"9303":2,"9304":2,"9305":1,"9306":1,"9307":2,"9308":2,"9309":2,"9310":1,"9311":2,"9312":1,"9313":1,"9314":2,"9315":1,"9316":2,"9317":2,"9318":2,"9319":1,"9320":1,"9321":1,"9322":1,"9323":2,"9324":2,"9325":1,"9326":2,"9327":1,"9328":2,"9329":2,"9330":2,"9331":1,"9332":1,"9333":1,"9334":2,"9335":1,"9336":2,"9337":1,"9338":2,"9339":2,"9340":2,"9341":2,"9342":2,"9343":2,"9344":2,"9345":2,"9346":2,"9347":1,"9348":2,"9349":2,"9350":2,"9351":2,"9352":1,"9353":2,"9354":2,"9355":2,"9356":2,"9357":1,"9358":2,"9359":2,"9360":1,"9361":2,"9362":2,"9363":1,"9364":1,"9365":1,"9366":1,"9367":2,"9368":2,"9369":1,"9370":1,"9371":2,"9372":1,"9373":2,"9374":1,"9375":2,"9376":1,"9377":2,"9378":1,"9379":2,"9380":1,"9381":2,"9382":1,"9383":1,"9384":2,"9385":2,"9386":2,"9387":2,"9388":2,"9389":1,"9390":1,"9391":2,"9392":1,"9393":1,"9394":2,"9395":2,"9396":2,"9397":1,"9398":2,"9399":2,"9400":1,"9401":1,"9402":1,"9403":2,"9404":2,"9405":1,"9406":2,"9407":1,"9408":2,"9409":1,"9410":2,"9411":2,"9412":2,"9413":2,"9414":2,"9415":2,"9416":1,"9417":2,"9418":2,"9419":1,"9420":2,"9421":2,"9422":2,"9423":2,"9424":1,"9425":2,"9426":1,"9427":2,"9428":2,"9429":2,"9430":2,"9431":2,"9432":2,"9433":2,"9434":1,"9435":1,"9436":2,"9437":2,"9438":2,"9439":1,"9440":2,"9441":2,"9442":1,"9443":2,"9444":2,"9445":1,"9446":1,"9447":1,"9448":2,"9449":2,"9450":1,"9451":2,"9452":2,"9453":2,"9454":1,"9455":1,"9456":1,"9457":2,"9458":1,"9459":2,"9460":2,"9461":1,"9462":2,"9463":1,"9464":2,"9465":2,"9466":1,"9467":2,"9468":1,"9469":2,"9470":1,"9471":1,"9472":2,"9473":1,"9474":2,"9475":1,"9476":1,"9477":1,"9478":1,"9479":1,"9480":1,"9481":1,"9482":1,"9483":1,"9484":1,"9485":2,"9486":2,"9487":1,"9488":1,"9489":1,"9490":2,"9491":2,"9492":2,"9493":2,"9494":1,"9495":1,"9496":1,"9497":1,"9498":1,"9499":1,"9500":1,"9501":2,"9502":1,"9503":2,"9504":1,"9505":2,"9506":1,"9507":2,"9508":2,"9509":2,"9510":1,"9511":2,"9512":1,"9513":2,"9514":1,"9515":2,"9516":1,"9517":1,"9518":1,"9519":2,"9520":2,"9521":2,"9522":1,"9523":2,"9524":2,"9525":2,"9526":2,"9527":1,"9528":1,"9529":1,"9530":2,"9531":1,"9532":2,"9533":2,"9534":1,"9535":1,"9536":1,"9537":2,"9538":2,"9539":2,"9540":1,"9541":2,"9542":1,"9543":1,"9544":1,"9545":2,"9546":1,"9547":1,"9548":2,"9549":1,"9550":2,"9551":2,"9552":1,"9553":1,"9554":1,"9555":1,"9556":1,"9557":2,"9558":1,"9559":2,"9560":2,"9561":2,"9562":1,"9563":1,"9564":1,"9565":2,"9566":2,"9567":2,"9568":1,"9569":1,"9570":2,"9571":1,"9572":2,"9573":2,"9574":2,"9575":1,"9576":1,"9577":1,"9578":2,"9579":2,"9580":2,"9581":2,"9582":2,"9583":1,"9584":1,"9585":2,"9586":2,"9587":2,"9588":2,"9589":2,"9590":1,"9591":2,"9592":2,"9593":1,"9594":1,"9595":2,"9596":2,"9597":2,"9598":1,"9599":1,"9600":2,"9601":1,"9602":2,"9603":2,"9604":1,"9605":2,"9606":1,"9607":2,"9608":1,"9609":2,"9610":1,"9611":1,"9612":2,"9613":1,"9614":1,"9615":1,"9616":2,"9617":1,"9618":1,"9619":1,"9620":1,"9621":2,"9622":1,"9623":2,"9624":2,"9625":2,"9626":2,"9627":2,"9628":2,"9629":2,"9630":2,"9631":2,"9632":1,"9633":1,"9634":2,"9635":2,"9636":2,"9637":1,"9638":1,"9639":1,"9640":2,"9641":1,"9642":1,"9643":2,"9644":2,"9645":1,"9646":1,"9647":2,"9648":1,"9649":2,"9650":1,"9651":1,"9652":2,"9653":1,"9654":1,"9655":1,"9656":2,"9657":1,"9658":2,"9659":1,"9660":2,"9661":1,"9662":1,"9663":1,"9664":2,"9665":1,"9666":1,"9667":1,"9668":2,"9669":1,"9670":1,"9671":2,"9672":1,"9673":2,"9674":2,"9675":1,"9676":2,"9677":1,"9678":2,"9679":2,"9680":2,"9681":1,"9682":1,"9683":1,"9684":2,"9685":2,"9686":2,"9687":2,"9688":2,"9689":2,"9690":2,"9691":2,"9692":2,"9693":2,"9694":2,"9695":2,"9696":2,"9697":2,"9698":1,"9699":2,"9700":1,"9701":2,"9702":1,"9703":2,"9704":2,"9705":1,"9706":1,"9707":2,"9708":2,"9709":1,"9710":1,"9711":2,"9712":1,"9713":1,"9714":2,"9715":1,"9716":2,"9717":1,"9718":1,"9719":1,"9720":2,"9721":1,"9722":1,"9723":2,"9724":1,"9725":2,"9726":2,"9727":2,"9728":2,"9729":1,"9730":2,"9731":2,"9732":2,"9733":2,"9734":2,"9735":1,"9736":2,"9737":1,"9738":2,"9739":2,"9740":2,"9741":1,"9742":1,"9743":1,"9744":2,"9745":2,"9746":1,"9747":2,"9748":1,"9749":2,"9750":2,"9751":1,"9752":1,"9753":2,"9754":2,"9755":2,"9756":1,"9757":2,"9758":1,"9759":2,"9760":1,"9761":1,"9762":1,"9763":2,"9764":1,"9765":1,"9766":1,"9767":2,"9768":2,"9769":2,"9770":2,"9771":2,"9772":2,"9773":2,"9774":2,"9775":2,"9776":1,"9777":1,"9778":2,"9779":1,"9780":1,"9781":2,"9782":2,"9783":1,"9784":1,"9785":1,"9786":1,"9787":1,"9788":1,"9789":2,"9790":1,"9791":2,"9792":1,"9793":2,"9794":2,"9795":1,"9796":2,"9797":1,"9798":1,"9799":2,"9800":1,"9801":1,"9802":1,"9803":1,"9804":2,"9805":2,"9806":1,"9807":1,"9808":1,"9809":1,"9810":2,"9811":1,"9812":1,"9813":2,"9814":2,"9815":1,"9816":2,"9817":1,"9818":2,"9819":2,"9820":1,"9821":1,"9822":1,"9823":1,"9824":1,"9825":1,"9826":2,"9827":1,"9828":1,"9829":2,"9830":1,"9831":1,"9832":1,"9833":1,"9834":1,"9835":1,"9836":1,"9837":1,"9838":1,"9839":2,"9840":2,"9841":2,"9842":1,"9843":1,"9844":1,"9845":1,"9846":2,"9847":2,"9848":1,"9849":1,"9850":2,"9851":1,"9852":2,"9853":1,"9854":2,"9855":1,"9856":2,"9857":2,"9858":2,"9859":1,"9860":2,"9861":1,"9862":1,"9863":2,"9864":1,"9865":1,"9866":2,"9867":2,"9868":2,"9869":2,"9870":2,"9871":2,"9872":2,"9873":1,"9874":2,"9875":1,"9876":2,"9877":2,"9878":2,"9879":2,"9880":2,"9881":1,"9882":1,"9883":2,"9884":2,"9885":1,"9886":1,"9887":1,"9888":1,"9889":2,"9890":2,"9891":2,"9892":2,"9893":2,"9894":2,"9895":1,"9896":1,"9897":2,"9898":1,"9899":2,"9900":1,"9901":1,"9902":2,"9903":2,"9904":2,"9905":1,"9906":2,"9907":1,"9908":2,"9909":2,"9910":2,"9911":2,"9912":2,"9913":1,"9914":1,"9915":1,"9916":2,"9917":1,"9918":2,"9919":2,"9920":1,"9921":1,"9922":1,"9923":1,"9924":2,"9925":2,"9926":1,"9927":1,"9928":2,"9929":2,"9930":1,"9931":2,"9932":2,"9933":1,"9934":2,"9935":1,"9936":2,"9937":1,"9938":2,"9939":2,"9940":2,"9941":1,"9942":2,"9943":1,"9944":2,"9945":1,"9946":2,"9947":1,"9948":2,"9949":1,"9950":1,"9951":1,"9952":2,"9953":2,"9954":2,"9955":2,"9956":2,"9957":1,"9958":1,"9959":2,"9960":2,"9961":2,"9962":2,"9963":2,"9964":1,"9965":1,"9966":2,"9967":2,"9968":1,"9969":1,"9970":1,"9971":2,"9972":2,"9973":1,"9974":1,"9975":1,"9976":1,"9977":2,"9978":2,"9979":2,"9980":2,"9981":1,"9982":2,"9983":1,"9984":2,"9985":1,"9986":1,"9987":1,"9988":2,"9989":2,"9990":1,"9991":1,"9992":1,"9993":2,"9994":2,"9995":1,"9996":1,"9997":2,"9998":1,"9999":2,"10000":2,"10001":2,"10002":1,"10003":2,"10004":2,"10005":2,"10006":1,"10007":2,"10008":2,"10009":2,"10010":2,"10011":1,"10012":2,"10013":1,"10014":1,"10015":2,"10016":1,"10017":2,"10018":1,"10019":2,"10020":1,"10021":1,"10022":1,"10023":2,"10024":1,"10025":2,"10026":1,"10027":1,"10028":1,"10029":1,"10030":2,"10031":1,"10032":2,"10033":1,"10034":1,"10035":2,"10036":2,"10037":2,"10038":1,"10039":2,"10040":2,"10041":1,"10042":1,"10043":1,"10044":1,"10045":2,"10046":2,"10047":1,"10048":1,"10049":1,"10050":2,"10051":2,"10052":1,"10053":1,"10054":2,"10055":2,"10056":2,"10057":1,"10058":2,"10059":2,"10060":1,"10061":1,"10062":2,"10063":1,"10064":2,"10065":2,"10066":2,"10067":2,"10068":2,"10069":1,"10070":1,"10071":2,"10072":2,"10073":1,"10074":1,"10075":2,"10076":2,"10077":1,"10078":1,"10079":2,"10080":1,"10081":1,"10082":1,"10083":1,"10084":2,"10085":2,"10086":2,"10087":2,"10088":1,"10089":2,"10090":2,"10091":2,"10092":1,"10093":2,"10094":2,"10095":1,"10096":1,"10097":2,"10098":2,"10099":1,"10100":2,"10101":1,"10102":1,"10103":2,"10104":1,"10105":2,"10106":1,"10107":2,"10108":1,"10109":1,"10110":2,"10111":1,"10112":2,"10113":1,"10114":2,"10115":2,"10116":1,"10117":1,"10118":1,"10119":1,"10120":2,"10121":1,"10122":1,"10123":2,"10124":2,"10125":1,"10126":2,"10127":1,"10128":2,"10129":1,"10130":2,"10131":1,"10132":2,"10133":1,"10134":2,"10135":2,"10136":1,"10137":1,"10138":1,"10139":2,"10140":2,"10141":2,"10142":2,"10143":2,"10144":1,"10145":2,"10146":1,"10147":1,"10148":1,"10149":2,"10150":2,"10151":2,"10152":2,"10153":2,"10154":2,"10155":2,"10156":2,"10157":1,"10158":2,"10159":1,"10160":2,"10161":1,"10162":2,"10163":2,"10164":1,"10165":2,"10166":2,"10167":1,"10168":2,"10169":2,"10170":1,"10171":2,"10172":1,"10173":2,"10174":1,"10175":1,"10176":2,"10177":2,"10178":2,"10179":1,"10180":1,"10181":2,"10182":2,"10183":2,"10184":2,"10185":2,"10186":1,"10187":1,"10188":2,"10189":1,"10190":2,"10191":1,"10192":1,"10193":1,"10194":2,"10195":2,"10196":1,"10197":1,"10198":1,"10199":2,"10200":2,"10201":2,"10202":2,"10203":2,"10204":1,"10205":1,"10206":1,"10207":1,"10208":1,"10209":2,"10210":1,"10211":1,"10212":1,"10213":2,"10214":2,"10215":2,"10216":1,"10217":2,"10218":2,"10219":2,"10220":2,"10221":1,"10222":1,"10223":2,"10224":1,"10225":1,"10226":2,"10227":2,"10228":2,"10229":1,"10230":1,"10231":1,"10232":1,"10233":2,"10234":1,"10235":2,"10236":2,"10237":2,"10238":1,"10239":1,"10240":2,"10241":1,"10242":1,"10243":2,"10244":1,"10245":2,"10246":2,"10247":2,"10248":1,"10249":1,"10250":1,"10251":1,"10252":2,"10253":1,"10254":2,"10255":2,"10256":2,"10257":1,"10258":1,"10259":1,"10260":2,"10261":1,"10262":2,"10263":1,"10264":2,"10265":1,"10266":1,"10267":2,"10268":1,"10269":2,"10270":2,"10271":1,"10272":2,"10273":2,"10274":2,"10275":2,"10276":2,"10277":2,"10278":2,"10279":2,"10280":2,"10281":1,"10282":2,"10283":1,"10284":1,"10285":2,"10286":2,"10287":2,"10288":1,"10289":2,"10290":2,"10291":2,"10292":1,"10293":1,"10294":1,"10295":2,"10296":2,"10297":1,"10298":1,"10299":1,"10300":1,"10301":2,"10302":2,"10303":2,"10304":1,"10305":1,"10306":2,"10307":1,"10308":2,"10309":2,"10310":2,"10311":2,"10312":2,"10313":1,"10314":1,"10315":1,"10316":1,"10317":1,"10318":1,"10319":2,"10320":1,"10321":2,"10322":1,"10323":2,"10324":1,"10325":1,"10326":2,"10327":1,"10328":2,"10329":2,"10330":1,"10331":2,"10332":2,"10333":2,"10334":2,"10335":2,"10336":2,"10337":1,"10338":2,"10339":2,"10340":1,"10341":1,"10342":2,"10343":2,"10344":2,"10345":1,"10346":1,"10347":1,"10348":1,"10349":2,"10350":1,"10351":2,"10352":2,"10353":1,"10354":2,"10355":1,"10356":2,"10357":2,"10358":2,"10359":2,"10360":1,"10361":1,"10362":2,"10363":2,"10364":1,"10365":1,"10366":2,"10367":1,"10368":2,"10369":2,"10370":2,"10371":1,"10372":2,"10373":1,"10374":1,"10375":1,"10376":1,"10377":2,"10378":2,"10379":1,"10380":1,"10381":2,"10382":1,"10383":1,"10384":2,"10385":2,"10386":1,"10387":1,"10388":2,"10389":2,"10390":1,"10391":2,"10392":1,"10393":2,"10394":1,"10395":1,"10396":2,"10397":1,"10398":1,"10399":1,"10400":1,"10401":2,"10402":2,"10403":2,"10404":1,"10405":2,"10406":2,"10407":2,"10408":1,"10409":1,"10410":2,"10411":1,"10412":1,"10413":1,"10414":1,"10415":1,"10416":1,"10417":1,"10418":1,"10419":2,"10420":1,"10421":1,"10422":2,"10423":2,"10424":1,"10425":1,"10426":2,"10427":1,"10428":1,"10429":2,"10430":1,"10431":1,"10432":1,"10433":2,"10434":2,"10435":2,"10436":2,"10437":2,"10438":2,"10439":2,"10440":2,"10441":1,"10442":1,"10443":2,"10444":1,"10445":2,"10446":1,"10447":1,"10448":2,"10449":2,"10450":2,"10451":1,"10452":1,"10453":2,"10454":2,"10455":2,"10456":1,"10457":2,"10458":1,"10459":2,"10460":2,"10461":1,"10462":1,"10463":2,"10464":2,"10465":1,"10466":2,"10467":2,"10468":1,"10469":2,"10470":2,"10471":2,"10472":2,"10473":2,"10474":1,"10475":1,"10476":1,"10477":2,"10478":1,"10479":1,"10480":2,"10481":1,"10482":1,"10483":2,"10484":2,"10485":1,"10486":2,"10487":1,"10488":2,"10489":2,"10490":1,"10491":2,"10492":1,"10493":2,"10494":2,"10495":1,"10496":1,"10497":1,"10498":1,"10499":1,"10500":1,"10501":2,"10502":2,"10503":1,"10504":2,"10505":2,"10506":1,"10507":1,"10508":1,"10509":1,"10510":2,"10511":1,"10512":1,"10513":1,"10514":1,"10515":2,"10516":2,"10517":2,"10518":1,"10519":1,"10520":1,"10521":2,"10522":1,"10523":2,"10524":2,"10525":2,"10526":2,"10527":1,"10528":1,"10529":1,"10530":2,"10531":1,"10532":2,"10533":2,"10534":1,"10535":2,"10536":1,"10537":1,"10538":1,"10539":1,"10540":2,"10541":2,"10542":2,"10543":1,"10544":1,"10545":1,"10546":1,"10547":2,"10548":2,"10549":1,"10550":2,"10551":1,"10552":1,"10553":2,"10554":2,"10555":1,"10556":1,"10557":1,"10558":1,"10559":1,"10560":1,"10561":2,"10562":2,"10563":2,"10564":1,"10565":1,"10566":2,"10567":1,"10568":1,"10569":2,"10570":1,"10571":2,"10572":1,"10573":2,"10574":1,"10575":2,"10576":2,"10577":1,"10578":1,"10579":2,"10580":1,"10581":1,"10582":2,"10583":1,"10584":2,"10585":2,"10586":2,"10587":2,"10588":1,"10589":1,"10590":1,"10591":2,"10592":2,"10593":2,"10594":1,"10595":2,"10596":2,"10597":2,"10598":1,"10599":1,"10600":1,"10601":2,"10602":1,"10603":1,"10604":2,"10605":1,"10606":2,"10607":1,"10608":2,"10609":1,"10610":1,"10611":1,"10612":2,"10613":1,"10614":2,"10615":2,"10616":2,"10617":1,"10618":1,"10619":2,"10620":1,"10621":2,"10622":1,"10623":1,"10624":1,"10625":1,"10626":1,"10627":2,"10628":1,"10629":2,"10630":2,"10631":2,"10632":2,"10633":1,"10634":2,"10635":2,"10636":2,"10637":2,"10638":2,"10639":2,"10640":1,"10641":2,"10642":2,"10643":1,"10644":1,"10645":1,"10646":1,"10647":1,"10648":2,"10649":2,"10650":1,"10651":2,"10652":2,"10653":1,"10654":2,"10655":1,"10656":1,"10657":2,"10658":2,"10659":2,"10660":1,"10661":2,"10662":1,"10663":1,"10664":1,"10665":1,"10666":2,"10667":1,"10668":2,"10669":2,"10670":2,"10671":1,"10672":2,"10673":1,"10674":1,"10675":1,"10676":1,"10677":1,"10678":2,"10679":1,"10680":1,"10681":2,"10682":1,"10683":1,"10684":1,"10685":1,"10686":1,"10687":2,"10688":1,"10689":2,"10690":1,"10691":1,"10692":2,"10693":2,"10694":1,"10695":1,"10696":2,"10697":1,"10698":2,"10699":1,"10700":1,"10701":2,"10702":2,"10703":2,"10704":2,"10705":2,"10706":1,"10707":2,"10708":2,"10709":2,"10710":2,"10711":1,"10712":2,"10713":2,"10714":2,"10715":1,"10716":1,"10717":2,"10718":2,"10719":1,"10720":1,"10721":1,"10722":1,"10723":2,"10724":1,"10725":2,"10726":1,"10727":1,"10728":1,"10729":1,"10730":1,"10731":1,"10732":1,"10733":2,"10734":2,"10735":1,"10736":2,"10737":2,"10738":2,"10739":2,"10740":2,"10741":2,"10742":1,"10743":2,"10744":2,"10745":1,"10746":2,"10747":1,"10748":1,"10749":1,"10750":1,"10751":2,"10752":2,"10753":2,"10754":2,"10755":1,"10756":2,"10757":1,"10758":2,"10759":2,"10760":2,"10761":1,"10762":2,"10763":2,"10764":1,"10765":2,"10766":2,"10767":1,"10768":1,"10769":2,"10770":2,"10771":2,"10772":2,"10773":1,"10774":2,"10775":1,"10776":2,"10777":1,"10778":2,"10779":1,"10780":1,"10781":2,"10782":2,"10783":1,"10784":1,"10785":1,"10786":1,"10787":2,"10788":1,"10789":1,"10790":2,"10791":1,"10792":2,"10793":2,"10794":1,"10795":2,"10796":2,"10797":2,"10798":1,"10799":2,"10800":2,"10801":2,"10802":1,"10803":2,"10804":2,"10805":1,"10806":2,"10807":2,"10808":2,"10809":1,"10810":1,"10811":2,"10812":2,"10813":1,"10814":2,"10815":1,"10816":2,"10817":1,"10818":1,"10819":1,"10820":2,"10821":1,"10822":1,"10823":2,"10824":1,"10825":2,"10826":2,"10827":1,"10828":2,"10829":2,"10830":1,"10831":1,"10832":2,"10833":1,"10834":2,"10835":1,"10836":2,"10837":1,"10838":2,"10839":2,"10840":1,"10841":2,"10842":1,"10843":1,"10844":2,"10845":1,"10846":2,"10847":1,"10848":2,"10849":1,"10850":2,"10851":1,"10852":1,"10853":1,"10854":1,"10855":1,"10856":2,"10857":2,"10858":2,"10859":2,"10860":2,"10861":2,"10862":1,"10863":1,"10864":1,"10865":2,"10866":1,"10867":2,"10868":2,"10869":2,"10870":1,"10871":1,"10872":1,"10873":1,"10874":1,"10875":1,"10876":1,"10877":2,"10878":1,"10879":2,"10880":2,"10881":2,"10882":2,"10883":1,"10884":2,"10885":1,"10886":1,"10887":1,"10888":2,"10889":2,"10890":2,"10891":2,"10892":2,"10893":1,"10894":2,"10895":1,"10896":2,"10897":2,"10898":1,"10899":1,"10900":2,"10901":1,"10902":1,"10903":2,"10904":1,"10905":1,"10906":2,"10907":2,"10908":2,"10909":2,"10910":2,"10911":2,"10912":1,"10913":2,"10914":2,"10915":2,"10916":1,"10917":1,"10918":2,"10919":1,"10920":2,"10921":1,"10922":1,"10923":2,"10924":1,"10925":1,"10926":2,"10927":2,"10928":1,"10929":2,"10930":1,"10931":1,"10932":1,"10933":2,"10934":2,"10935":1,"10936":2,"10937":2,"10938":2,"10939":2,"10940":1,"10941":1,"10942":2,"10943":1,"10944":2,"10945":2,"10946":2,"10947":1,"10948":1,"10949":2,"10950":1,"10951":2,"10952":1,"10953":1,"10954":2,"10955":2,"10956":1,"10957":1,"10958":1,"10959":1,"10960":1,"10961":1,"10962":2,"10963":1,"10964":2,"10965":1,"10966":1,"10967":2,"10968":2,"10969":2,"10970":1,"10971":1,"10972":2,"10973":2,"10974":1,"10975":2,"10976":2,"10977":2,"10978":1,"10979":1,"10980":2,"10981":1,"10982":1,"10983":1,"10984":1,"10985":2,"10986":2,"10987":2,"10988":2,"10989":1,"10990":2,"10991":1,"10992":1,"10993":1,"10994":1,"10995":1,"10996":2,"10997":1,"10998":2,"10999":1,"11000":2,"11001":1,"11002":2,"11003":2,"11004":2,"11005":2,"11006":1,"11007":2,"11008":2,"11009":1,"11010":1,"11011":2,"11012":2,"11013":2,"11014":1,"11015":2,"11016":2,"11017":1,"11018":2,"11019":1,"11020":2,"11021":2,"11022":2,"11023":2,"11024":2,"11025":2,"11026":1,"11027":1,"11028":1,"11029":1,"11030":1,"11031":1,"11032":2,"11033":2,"11034":1,"11035":2,"11036":1,"11037":2,"11038":2,"11039":2,"11040":1,"11041":1,"11042":1,"11043":1,"11044":2,"11045":1,"11046":2,"11047":2,"11048":1,"11049":2,"11050":2,"11051":2,"11052":2,"11053":1,"11054":2,"11055":2,"11056":2,"11057":1,"11058":1,"11059":2,"11060":2,"11061":1,"11062":1,"11063":2,"11064":1,"11065":2,"11066":1,"11067":1,"11068":1,"11069":2,"11070":2,"11071":2,"11072":2,"11073":1,"11074":1,"11075":2,"11076":2,"11077":2,"11078":1,"11079":2,"11080":1,"11081":2,"11082":1,"11083":2,"11084":2,"11085":2,"11086":2,"11087":1,"11088":2,"11089":1,"11090":2,"11091":2,"11092":1,"11093":1,"11094":1,"11095":2,"11096":2,"11097":2,"11098":1,"11099":1,"11100":1,"11101":2,"11102":2,"11103":1,"11104":1,"11105":2,"11106":2,"11107":2,"11108":1,"11109":1,"11110":2,"11111":1,"11112":1,"11113":2,"11114":1,"11115":2,"11116":2,"11117":2,"11118":1,"11119":1,"11120":1,"11121":2,"11122":1,"11123":1,"11124":1,"11125":2,"11126":2,"11127":1,"11128":2,"11129":1,"11130":2,"11131":2,"11132":2,"11133":1,"11134":1,"11135":2,"11136":1,"11137":1,"11138":1,"11139":1,"11140":2,"11141":1,"11142":2,"11143":2,"11144":2,"11145":1,"11146":1,"11147":1,"11148":1,"11149":1,"11150":1,"11151":1,"11152":1,"11153":2,"11154":2,"11155":2,"11156":1,"11157":2,"11158":1,"11159":1,"11160":2,"11161":1,"11162":1,"11163":2,"11164":2,"11165":1,"11166":1,"11167":1,"11168":2,"11169":1,"11170":1,"11171":1,"11172":2,"11173":2,"11174":1,"11175":1,"11176":1,"11177":2,"11178":1,"11179":2,"11180":1,"11181":1,"11182":2,"11183":1,"11184":2,"11185":1,"11186":1,"11187":2,"11188":2,"11189":2,"11190":1,"11191":1,"11192":2,"11193":2,"11194":2,"11195":2,"11196":1,"11197":1,"11198":2,"11199":1,"11200":1,"11201":2,"11202":2,"11203":2,"11204":1,"11205":1,"11206":2,"11207":2,"11208":2,"11209":1,"11210":1,"11211":1,"11212":1,"11213":1,"11214":1,"11215":1,"11216":2,"11217":1,"11218":2,"11219":1,"11220":2,"11221":2,"11222":1,"11223":1,"11224":1,"11225":1,"11226":2,"11227":1,"11228":2,"11229":2,"11230":1,"11231":1,"11232":2,"11233":2,"11234":1,"11235":2,"11236":1,"11237":2,"11238":1,"11239":1,"11240":2,"11241":1,"11242":1,"11243":1,"11244":2,"11245":2,"11246":1,"11247":1,"11248":2,"11249":1,"11250":1,"11251":2,"11252":2,"11253":1,"11254":1,"11255":2,"11256":1,"11257":2,"11258":2,"11259":2,"11260":1,"11261":2,"11262":1,"11263":2,"11264":2,"11265":2,"11266":2,"11267":2,"11268":1,"11269":2,"11270":2,"11271":2,"11272":2,"11273":2,"11274":2,"11275":1,"11276":2,"11277":2,"11278":2,"11279":1,"11280":1,"11281":1,"11282":1,"11283":2,"11284":2,"11285":1,"11286":2,"11287":1,"11288":2,"11289":2,"11290":1,"11291":2,"11292":1,"11293":1,"11294":1,"11295":2,"11296":2,"11297":1,"11298":2,"11299":2,"11300":1,"11301":2,"11302":2,"11303":1,"11304":1,"11305":2,"11306":1,"11307":2,"11308":1,"11309":1,"11310":1,"11311":2,"11312":1,"11313":2,"11314":2,"11315":1,"11316":1,"11317":1,"11318":2,"11319":1,"11320":1,"11321":2,"11322":2,"11323":2,"11324":2,"11325":1,"11326":2,"11327":2,"11328":1,"11329":2,"11330":1,"11331":2,"11332":1,"11333":2,"11334":2,"11335":2,"11336":1,"11337":1,"11338":2,"11339":1,"11340":2,"11341":2,"11342":1,"11343":1,"11344":2,"11345":1,"11346":1,"11347":2,"11348":1,"11349":2,"11350":1,"11351":1,"11352":1,"11353":1,"11354":2,"11355":2,"11356":2,"11357":1,"11358":1,"11359":1,"11360":1,"11361":1,"11362":1,"11363":2,"11364":1,"11365":1,"11366":1,"11367":1,"11368":1,"11369":1,"11370":1,"11371":1,"11372":1,"11373":2,"11374":2,"11375":1,"11376":1,"11377":2,"11378":2,"11379":2,"11380":2,"11381":2,"11382":2,"11383":1,"11384":2,"11385":1,"11386":1,"11387":2,"11388":1,"11389":2,"11390":1,"11391":2,"11392":2,"11393":2,"11394":2,"11395":1,"11396":1,"11397":2,"11398":1,"11399":1,"11400":1,"11401":1,"11402":1,"11403":2,"11404":1,"11405":2,"11406":2,"11407":1,"11408":2,"11409":1,"11410":2,"11411":1,"11412":2,"11413":2,"11414":1,"11415":1,"11416":1,"11417":1,"11418":2,"11419":1,"11420":2,"11421":1,"11422":1,"11423":1,"11424":1,"11425":1,"11426":2,"11427":1,"11428":2,"11429":1,"11430":2,"11431":2,"11432":2,"11433":1,"11434":2,"11435":1,"11436":1,"11437":1,"11438":2,"11439":1,"11440":1,"11441":1,"11442":2,"11443":1,"11444":1,"11445":2,"11446":2,"11447":1,"11448":1,"11449":1,"11450":2,"11451":1,"11452":2,"11453":2,"11454":2,"11455":2,"11456":1,"11457":2,"11458":2,"11459":2,"11460":1,"11461":2,"11462":2,"11463":2,"11464":2,"11465":1,"11466":2,"11467":2,"11468":2,"11469":1,"11470":2,"11471":1,"11472":2,"11473":1,"11474":2,"11475":2,"11476":2,"11477":2,"11478":2,"11479":2,"11480":1,"11481":1,"11482":2,"11483":1,"11484":2,"11485":1,"11486":2,"11487":1,"11488":1,"11489":2,"11490":2,"11491":1,"11492":2,"11493":1,"11494":1,"11495":1,"11496":2,"11497":2,"11498":1,"11499":1,"11500":1,"11501":2,"11502":1,"11503":2,"11504":1,"11505":1,"11506":2,"11507":2,"11508":2,"11509":1,"11510":2,"11511":2,"11512":2,"11513":1,"11514":2,"11515":2,"11516":1,"11517":2,"11518":2,"11519":2,"11520":1,"11521":1,"11522":2,"11523":2,"11524":1,"11525":1,"11526":1,"11527":2,"11528":2,"11529":2,"11530":1,"11531":1,"11532":2,"11533":2,"11534":1,"11535":2,"11536":2,"11537":2,"11538":2,"11539":1,"11540":2,"11541":1,"11542":2,"11543":2,"11544":2,"11545":2,"11546":2,"11547":2,"11548":2,"11549":2,"11550":2,"11551":1,"11552":1,"11553":2,"11554":1,"11555":1,"11556":2,"11557":1,"11558":2,"11559":2,"11560":2,"11561":2,"11562":2,"11563":2,"11564":2,"11565":2,"11566":2,"11567":2,"11568":2,"11569":2,"11570":1,"11571":1,"11572":1,"11573":1,"11574":2,"11575":1,"11576":1,"11577":2,"11578":2,"11579":1,"11580":2,"11581":1,"11582":2,"11583":2,"11584":1,"11585":1,"11586":1,"11587":1,"11588":2,"11589":2,"11590":1,"11591":2,"11592":2,"11593":1,"11594":2,"11595":2,"11596":2,"11597":2,"11598":1,"11599":1,"11600":2,"11601":1,"11602":1,"11603":1,"11604":2,"11605":1,"11606":1,"11607":1,"11608":2,"11609":1,"11610":1,"11611":2,"11612":1,"11613":1,"11614":2,"11615":1,"11616":1,"11617":1,"11618":1,"11619":1,"11620":1,"11621":2,"11622":1,"11623":1,"11624":1,"11625":2,"11626":2,"11627":1,"11628":1,"11629":1,"11630":2,"11631":1,"11632":2,"11633":2,"11634":1,"11635":2,"11636":1,"11637":2,"11638":2,"11639":2,"11640":1,"11641":2,"11642":1,"11643":2,"11644":1,"11645":2,"11646":1,"11647":1,"11648":2,"11649":1,"11650":1,"11651":1,"11652":2,"11653":1,"11654":1,"11655":1,"11656":2,"11657":2,"11658":1,"11659":2,"11660":1,"11661":1,"11662":2,"11663":1,"11664":1,"11665":2,"11666":1,"11667":1,"11668":2,"11669":1,"11670":2,"11671":1,"11672":1,"11673":2,"11674":2,"11675":1,"11676":1,"11677":1,"11678":2,"11679":1,"11680":2,"11681":1,"11682":1,"11683":2,"11684":2,"11685":2,"11686":1,"11687":1,"11688":1,"11689":1,"11690":1,"11691":1,"11692":1,"11693":1,"11694":1,"11695":2,"11696":1,"11697":2,"11698":1,"11699":2,"11700":2,"11701":1,"11702":1,"11703":1,"11704":2,"11705":1,"11706":2,"11707":1,"11708":1,"11709":2,"11710":2,"11711":2,"11712":2,"11713":2,"11714":1,"11715":1,"11716":1,"11717":1,"11718":2,"11719":2,"11720":2,"11721":1,"11722":1,"11723":1,"11724":1,"11725":1,"11726":1,"11727":1,"11728":2,"11729":1,"11730":1,"11731":2,"11732":1,"11733":1,"11734":2,"11735":2,"11736":1,"11737":1,"11738":1,"11739":2,"11740":2,"11741":2,"11742":2,"11743":2,"11744":1,"11745":2,"11746":1,"11747":2,"11748":1,"11749":1,"11750":1,"11751":2,"11752":1,"11753":2,"11754":1,"11755":2,"11756":2,"11757":1,"11758":2,"11759":1,"11760":1,"11761":1,"11762":1,"11763":1,"11764":2,"11765":2,"11766":2,"11767":2,"11768":1,"11769":1,"11770":1,"11771":2,"11772":1,"11773":2,"11774":2,"11775":1,"11776":1,"11777":2,"11778":2,"11779":1,"11780":2,"11781":2,"11782":1,"11783":1,"11784":2,"11785":1,"11786":1,"11787":1,"11788":1,"11789":2,"11790":2,"11791":2,"11792":1,"11793":1,"11794":2,"11795":1,"11796":1,"11797":1,"11798":2,"11799":2,"11800":2,"11801":2,"11802":2,"11803":1,"11804":2,"11805":1,"11806":2,"11807":1,"11808":1,"11809":2,"11810":2,"11811":1,"11812":1,"11813":1,"11814":2,"11815":1,"11816":2,"11817":2,"11818":1,"11819":2,"11820":1,"11821":2,"11822":1,"11823":2,"11824":1,"11825":1,"11826":1,"11827":1,"11828":1,"11829":1,"11830":2,"11831":1,"11832":2,"11833":1,"11834":2,"11835":1,"11836":1,"11837":2,"11838":2,"11839":2,"11840":2,"11841":1,"11842":2,"11843":2,"11844":1,"11845":1,"11846":2,"11847":2,"11848":2,"11849":2,"11850":2,"11851":2,"11852":1,"11853":1,"11854":2,"11855":1,"11856":2,"11857":2,"11858":2,"11859":1,"11860":1,"11861":2,"11862":1,"11863":2,"11864":1,"11865":1,"11866":2,"11867":2,"11868":1,"11869":1,"11870":1,"11871":2,"11872":2,"11873":2,"11874":1,"11875":1,"11876":1,"11877":1,"11878":2,"11879":2,"11880":1,"11881":2,"11882":1,"11883":2,"11884":2,"11885":1,"11886":1,"11887":1,"11888":1,"11889":2,"11890":2,"11891":1,"11892":2,"11893":2,"11894":2,"11895":2,"11896":2,"11897":2,"11898":1,"11899":2,"11900":1,"11901":1,"11902":2,"11903":1,"11904":1,"11905":1,"11906":1,"11907":2,"11908":2,"11909":1,"11910":2,"11911":1,"11912":2,"11913":1,"11914":1,"11915":1,"11916":1,"11917":2,"11918":1,"11919":2,"11920":2,"11921":2,"11922":1,"11923":2,"11924":2,"11925":2,"11926":1,"11927":1,"11928":1,"11929":1,"11930":1,"11931":1,"11932":1,"11933":2,"11934":2,"11935":1,"11936":2,"11937":1,"11938":1,"11939":1,"11940":1,"11941":1,"11942":1,"11943":2,"11944":2,"11945":2,"11946":1,"11947":2,"11948":2,"11949":2,"11950":2,"11951":1,"11952":1,"11953":2,"11954":2,"11955":2,"11956":1,"11957":1,"11958":1,"11959":1,"11960":1,"11961":1,"11962":2,"11963":2,"11964":1,"11965":2,"11966":2,"11967":1,"11968":1,"11969":2,"11970":2,"11971":1,"11972":1,"11973":1,"11974":1,"11975":1,"11976":2,"11977":2,"11978":1,"11979":1,"11980":2,"11981":1,"11982":2,"11983":2,"11984":1,"11985":2,"11986":1,"11987":1,"11988":1,"11989":2,"11990":1,"11991":2,"11992":2,"11993":2,"11994":2,"11995":1,"11996":1,"11997":1,"11998":1,"11999":2,"12000":2,"12001":2,"12002":1,"12003":2,"12004":2,"12005":1,"12006":1,"12007":1,"12008":1,"12009":2,"12010":2,"12011":2,"12012":1,"12013":1,"12014":1,"12015":2,"12016":1,"12017":1,"12018":2,"12019":2,"12020":1,"12021":2,"12022":1,"12023":2,"12024":1,"12025":1,"12026":1,"12027":2,"12028":2,"12029":1,"12030":2,"12031":1,"12032":1,"12033":1,"12034":1,"12035":1,"12036":1,"12037":2,"12038":2,"12039":2,"12040":1,"12041":1,"12042":1,"12043":2,"12044":1,"12045":1,"12046":1,"12047":2,"12048":2,"12049":2,"12050":2,"12051":2,"12052":2,"12053":2,"12054":2,"12055":1,"12056":2,"12057":2,"12058":2,"12059":2,"12060":2,"12061":1,"12062":2,"12063":1,"12064":1,"12065":2,"12066":1,"12067":1,"12068":1,"12069":2,"12070":1,"12071":2,"12072":2,"12073":2,"12074":1,"12075":1,"12076":1,"12077":1,"12078":2,"12079":1,"12080":2,"12081":2,"12082":1,"12083":2,"12084":2,"12085":1,"12086":1,"12087":1,"12088":2,"12089":1,"12090":1,"12091":1,"12092":2,"12093":2,"12094":2,"12095":2,"12096":1,"12097":1,"12098":1,"12099":1,"12100":2,"12101":1,"12102":1,"12103":2,"12104":2,"12105":2,"12106":2,"12107":1,"12108":2,"12109":1,"12110":2,"12111":2,"12112":2,"12113":2,"12114":1,"12115":2,"12116":2,"12117":2,"12118":1,"12119":2,"12120":1,"12121":2,"12122":1,"12123":2,"12124":1,"12125":2,"12126":1,"12127":1,"12128":2,"12129":1,"12130":1,"12131":1,"12132":2,"12133":1,"12134":1,"12135":1,"12136":1,"12137":1,"12138":1,"12139":1,"12140":1,"12141":2,"12142":2,"12143":1,"12144":2,"12145":2,"12146":1,"12147":2,"12148":1,"12149":1,"12150":2,"12151":1,"12152":2,"12153":1,"12154":1,"12155":1,"12156":1,"12157":1,"12158":2,"12159":2,"12160":2,"12161":1,"12162":2,"12163":1,"12164":2,"12165":1,"12166":1,"12167":1,"12168":2,"12169":2,"12170":2,"12171":1,"12172":1,"12173":1,"12174":1,"12175":2,"12176":2,"12177":2,"12178":1,"12179":1,"12180":2,"12181":2,"12182":1,"12183":1,"12184":2,"12185":2,"12186":1,"12187":2,"12188":2,"12189":2,"12190":1,"12191":2,"12192":1,"12193":1,"12194":1,"12195":1,"12196":2,"12197":2,"12198":2,"12199":1,"12200":1,"12201":1,"12202":1,"12203":1,"12204":2,"12205":1,"12206":1,"12207":1,"12208":1,"12209":2,"12210":1,"12211":1,"12212":2,"12213":1,"12214":1,"12215":2,"12216":2,"12217":2,"12218":2,"12219":1,"12220":1,"12221":2,"12222":1,"12223":2,"12224":2,"12225":1,"12226":2,"12227":1,"12228":2,"12229":2,"12230":1,"12231":1,"12232":2,"12233":2,"12234":1,"12235":1,"12236":1,"12237":1,"12238":1,"12239":2,"12240":2,"12241":1,"12242":1,"12243":2,"12244":1,"12245":1,"12246":1,"12247":1,"12248":1,"12249":2,"12250":1,"12251":2,"12252":2,"12253":1,"12254":1,"12255":2,"12256":2,"12257":2,"12258":2,"12259":2,"12260":2,"12261":2,"12262":2,"12263":1,"12264":2,"12265":1,"12266":1,"12267":1,"12268":1,"12269":2,"12270":2,"12271":2,"12272":1,"12273":1,"12274":1,"12275":1,"12276":1,"12277":2,"12278":1,"12279":1,"12280":1,"12281":1,"12282":1,"12283":2,"12284":1,"12285":2,"12286":1,"12287":1,"12288":1,"12289":2,"12290":2,"12291":1,"12292":2,"12293":1,"12294":2,"12295":2,"12296":1,"12297":1,"12298":2,"12299":2,"12300":2,"12301":1,"12302":2,"12303":1,"12304":2,"12305":1,"12306":2,"12307":1,"12308":2,"12309":2,"12310":2,"12311":1,"12312":2,"12313":2,"12314":1,"12315":2,"12316":1,"12317":1,"12318":2,"12319":2,"12320":2,"12321":1,"12322":1,"12323":2,"12324":1,"12325":2,"12326":2,"12327":2,"12328":2,"12329":2,"12330":2,"12331":2,"12332":1,"12333":1,"12334":1,"12335":1,"12336":2,"12337":1,"12338":2,"12339":1,"12340":2,"12341":1,"12342":1,"12343":1,"12344":1,"12345":2,"12346":1,"12347":1,"12348":2,"12349":2,"12350":1,"12351":2,"12352":2,"12353":1,"12354":2,"12355":2,"12356":1,"12357":2,"12358":1,"12359":2,"12360":1,"12361":1,"12362":2,"12363":2,"12364":2,"12365":1,"12366":2,"12367":1,"12368":2,"12369":1,"12370":1,"12371":1,"12372":1,"12373":1,"12374":2,"12375":2,"12376":2,"12377":2,"12378":2,"12379":1,"12380":1,"12381":2,"12382":1,"12383":1,"12384":2,"12385":2,"12386":1,"12387":2,"12388":2,"12389":2,"12390":2,"12391":2,"12392":2,"12393":2,"12394":2,"12395":2,"12396":1,"12397":1,"12398":2,"12399":1,"12400":2,"12401":1,"12402":1,"12403":2,"12404":2,"12405":1,"12406":2,"12407":2,"12408":2,"12409":2,"12410":2,"12411":1,"12412":2,"12413":1,"12414":1,"12415":1,"12416":2,"12417":2,"12418":1,"12419":1,"12420":1,"12421":2,"12422":1,"12423":2,"12424":2,"12425":1,"12426":2,"12427":2,"12428":1,"12429":1,"12430":2,"12431":1,"12432":2,"12433":2,"12434":1,"12435":1,"12436":1,"12437":2,"12438":1,"12439":1,"12440":2,"12441":1,"12442":2,"12443":2,"12444":2,"12445":2,"12446":1,"12447":2,"12448":1,"12449":1,"12450":1,"12451":1,"12452":2,"12453":1,"12454":1,"12455":2,"12456":2,"12457":1,"12458":2,"12459":1,"12460":2,"12461":2,"12462":2,"12463":1,"12464":2,"12465":1,"12466":2,"12467":1,"12468":1,"12469":2,"12470":1,"12471":2,"12472":2,"12473":1,"12474":1,"12475":1,"12476":2,"12477":1,"12478":1,"12479":2,"12480":2,"12481":1,"12482":1,"12483":2,"12484":1,"12485":1,"12486":2,"12487":2,"12488":2,"12489":2,"12490":1,"12491":2,"12492":2,"12493":1,"12494":1,"12495":1,"12496":1,"12497":1,"12498":1,"12499":2,"12500":1,"12501":2,"12502":1,"12503":1,"12504":2,"12505":2,"12506":2,"12507":1,"12508":1,"12509":1,"12510":1,"12511":1,"12512":2,"12513":1,"12514":2,"12515":2,"12516":1,"12517":1,"12518":2,"12519":2,"12520":1,"12521":2,"12522":1,"12523":1,"12524":2,"12525":1,"12526":2,"12527":1,"12528":1,"12529":2,"12530":2,"12531":2,"12532":2,"12533":2,"12534":2,"12535":2,"12536":1,"12537":2,"12538":2,"12539":2,"12540":1,"12541":2,"12542":2,"12543":2,"12544":1,"12545":1,"12546":2,"12547":1,"12548":1,"12549":1,"12550":2,"12551":2,"12552":1,"12553":1,"12554":2,"12555":2,"12556":2,"12557":1,"12558":2,"12559":2,"12560":2,"12561":1,"12562":1,"12563":2,"12564":2,"12565":2,"12566":2,"12567":2,"12568":2,"12569":2,"12570":1,"12571":1,"12572":1,"12573":1,"12574":1,"12575":1,"12576":1,"12577":2,"12578":1,"12579":1,"12580":2,"12581":2,"12582":2,"12583":1,"12584":1,"12585":1,"12586":2,"12587":2,"12588":1,"12589":2,"12590":2,"12591":2,"12592":2,"12593":1,"12594":1,"12595":2,"12596":2,"12597":1,"12598":1,"12599":2,"12600":2,"12601":2,"12602":1,"12603":2,"12604":2,"12605":2,"12606":1,"12607":2,"12608":2,"12609":1,"12610":2,"12611":1,"12612":1,"12613":1,"12614":1,"12615":1,"12616":2,"12617":1,"12618":2,"12619":1,"12620":1,"12621":2,"12622":2,"12623":2,"12624":2,"12625":2,"12626":2,"12627":1,"12628":2,"12629":2,"12630":2,"12631":2,"12632":1,"12633":1,"12634":1,"12635":1,"12636":2,"12637":2,"12638":2,"12639":2,"12640":2,"12641":2,"12642":1,"12643":2,"12644":2,"12645":2,"12646":1,"12647":2,"12648":2,"12649":2,"12650":1,"12651":1,"12652":1,"12653":1,"12654":1,"12655":1,"12656":2,"12657":2,"12658":1,"12659":2,"12660":2,"12661":1,"12662":1,"12663":1,"12664":2,"12665":2,"12666":2,"12667":1,"12668":1,"12669":2,"12670":2,"12671":2,"12672":1,"12673":2,"12674":1,"12675":2,"12676":1,"12677":1,"12678":1,"12679":1,"12680":2,"12681":2,"12682":2,"12683":2,"12684":1,"12685":2,"12686":2,"12687":2,"12688":2,"12689":1,"12690":1,"12691":1,"12692":2,"12693":1,"12694":1,"12695":1,"12696":2,"12697":1,"12698":1,"12699":1,"12700":2,"12701":2,"12702":1,"12703":2,"12704":2,"12705":2,"12706":2,"12707":2,"12708":1,"12709":1,"12710":1,"12711":1,"12712":1,"12713":1,"12714":2,"12715":1,"12716":1,"12717":1,"12718":1,"12719":2,"12720":2,"12721":2,"12722":1,"12723":2,"12724":1,"12725":2,"12726":1,"12727":2,"12728":2,"12729":1,"12730":2,"12731":1,"12732":1,"12733":1,"12734":2,"12735":2,"12736":2,"12737":1,"12738":2,"12739":2,"12740":2,"12741":1,"12742":2,"12743":1,"12744":2,"12745":2,"12746":1,"12747":1,"12748":1,"12749":1,"12750":1,"12751":1,"12752":2,"12753":1,"12754":2,"12755":1,"12756":2,"12757":1,"12758":2,"12759":1,"12760":1,"12761":2,"12762":1,"12763":1,"12764":2,"12765":1,"12766":2,"12767":1,"12768":2,"12769":2,"12770":1,"12771":2,"12772":1,"12773":2,"12774":1,"12775":2,"12776":2,"12777":2,"12778":2,"12779":1,"12780":1,"12781":2,"12782":2,"12783":2,"12784":2,"12785":1,"12786":2,"12787":1,"12788":2,"12789":1,"12790":2,"12791":2,"12792":1,"12793":1,"12794":1,"12795":2,"12796":2,"12797":1,"12798":2,"12799":1,"12800":2,"12801":2,"12802":1,"12803":1,"12804":2,"12805":2,"12806":2,"12807":2,"12808":1,"12809":1,"12810":2,"12811":2,"12812":1,"12813":2,"12814":1,"12815":2,"12816":1,"12817":2,"12818":1,"12819":2,"12820":1,"12821":2,"12822":1,"12823":1,"12824":2,"12825":1,"12826":1,"12827":1,"12828":1,"12829":1,"12830":1,"12831":1,"12832":2,"12833":1,"12834":1,"12835":1,"12836":2,"12837":1,"12838":1,"12839":1,"12840":1,"12841":2,"12842":1,"12843":1,"12844":2,"12845":2,"12846":1,"12847":2,"12848":2,"12849":2,"12850":2,"12851":2,"12852":1,"12853":1,"12854":1,"12855":1,"12856":2,"12857":2,"12858":1,"12859":1,"12860":1,"12861":2,"12862":1,"12863":1,"12864":1,"12865":2,"12866":2,"12867":2,"12868":2,"12869":2,"12870":2,"12871":1,"12872":2,"12873":1,"12874":1,"12875":1,"12876":1,"12877":2,"12878":1,"12879":1,"12880":1,"12881":2,"12882":2,"12883":1,"12884":2,"12885":2,"12886":1,"12887":2,"12888":2,"12889":2,"12890":1,"12891":2,"12892":2,"12893":2,"12894":1,"12895":1,"12896":1,"12897":1,"12898":1,"12899":2,"12900":2,"12901":1,"12902":2,"12903":2,"12904":2,"12905":1,"12906":2,"12907":2,"12908":1,"12909":2,"12910":1,"12911":2,"12912":1,"12913":2,"12914":2,"12915":1,"12916":2,"12917":1,"12918":1,"12919":1,"12920":1,"12921":1,"12922":2,"12923":1,"12924":2,"12925":1,"12926":2,"12927":2,"12928":1,"12929":2,"12930":1,"12931":1,"12932":1,"12933":1,"12934":1,"12935":2,"12936":1,"12937":2,"12938":2,"12939":2,"12940":2,"12941":1,"12942":1,"12943":2,"12944":1,"12945":1,"12946":2,"12947":2,"12948":2,"12949":1,"12950":2,"12951":2,"12952":1,"12953":2,"12954":1,"12955":1,"12956":1,"12957":2,"12958":1,"12959":2,"12960":1,"12961":1,"12962":2,"12963":1,"12964":1,"12965":2,"12966":1,"12967":1,"12968":2,"12969":2,"12970":1,"12971":2,"12972":1,"12973":2,"12974":1,"12975":2,"12976":1,"12977":2,"12978":2,"12979":1,"12980":2,"12981":1,"12982":1,"12983":2,"12984":2,"12985":2,"12986":2,"12987":1,"12988":1,"12989":2,"12990":1,"12991":1,"12992":1,"12993":2,"12994":2,"12995":1,"12996":2,"12997":2,"12998":1,"12999":1,"13000":1,"13001":2,"13002":1,"13003":1,"13004":2,"13005":2,"13006":2,"13007":1,"13008":1,"13009":2,"13010":2,"13011":1,"13012":1,"13013":1,"13014":1,"13015":1,"13016":1,"13017":2,"13018":1,"13019":1,"13020":1,"13021":1,"13022":2,"13023":2,"13024":2,"13025":2,"13026":2,"13027":1,"13028":1,"13029":1,"13030":2,"13031":2,"13032":1,"13033":1,"13034":1,"13035":1,"13036":1,"13037":1,"13038":1,"13039":2,"13040":1,"13041":1,"13042":1,"13043":2,"13044":1,"13045":1,"13046":2,"13047":2,"13048":1,"13049":1,"13050":1,"13051":1,"13052":2,"13053":1,"13054":2,"13055":1,"13056":1,"13057":1,"13058":2,"13059":1,"13060":1,"13061":1,"13062":1,"13063":2,"13064":1,"13065":2,"13066":1,"13067":2,"13068":1,"13069":1,"13070":2,"13071":2,"13072":2,"13073":1,"13074":1,"13075":1,"13076":2,"13077":2,"13078":2,"13079":1,"13080":1,"13081":2,"13082":1,"13083":1,"13084":1,"13085":2,"13086":2,"13087":2,"13088":2,"13089":2,"13090":1,"13091":2,"13092":2,"13093":1,"13094":2,"13095":1,"13096":2,"13097":1,"13098":1,"13099":1,"13100":2,"13101":2,"13102":2,"13103":2,"13104":2,"13105":1,"13106":1,"13107":2,"13108":2,"13109":1,"13110":1,"13111":2,"13112":2,"13113":1,"13114":1,"13115":2,"13116":2,"13117":2,"13118":1,"13119":2,"13120":2,"13121":1,"13122":2,"13123":1,"13124":2,"13125":2,"13126":2,"13127":1,"13128":1,"13129":2,"13130":2,"13131":1,"13132":1,"13133":2,"13134":2,"13135":1,"13136":1,"13137":2,"13138":1,"13139":1,"13140":2,"13141":1,"13142":2,"13143":1,"13144":2,"13145":2,"13146":2,"13147":2,"13148":2,"13149":2,"13150":1,"13151":1,"13152":1,"13153":1,"13154":1,"13155":2,"13156":1,"13157":2,"13158":1,"13159":1,"13160":2,"13161":2,"13162":2,"13163":1,"13164":2,"13165":2,"13166":2,"13167":1,"13168":1,"13169":2,"13170":1,"13171":2,"13172":2,"13173":2,"13174":1,"13175":1,"13176":2,"13177":1,"13178":1,"13179":1,"13180":2,"13181":1,"13182":2,"13183":2,"13184":2,"13185":1,"13186":1,"13187":2,"13188":1,"13189":2,"13190":2,"13191":1,"13192":2,"13193":2,"13194":2,"13195":2,"13196":1,"13197":2,"13198":1,"13199":1,"13200":2,"13201":1,"13202":1,"13203":2,"13204":1,"13205":1,"13206":2,"13207":2,"13208":2,"13209":2,"13210":1,"13211":2,"13212":2,"13213":2,"13214":2,"13215":2,"13216":1,"13217":1,"13218":1,"13219":2,"13220":1,"13221":1,"13222":2,"13223":2,"13224":2,"13225":2,"13226":1,"13227":2,"13228":2,"13229":2,"13230":2,"13231":1,"13232":1,"13233":2,"13234":1,"13235":1,"13236":1,"13237":1,"13238":1,"13239":1,"13240":1,"13241":2,"13242":1,"13243":2,"13244":1,"13245":2,"13246":2,"13247":2,"13248":1,"13249":1,"13250":2,"13251":1,"13252":2,"13253":1,"13254":2,"13255":2,"13256":2,"13257":1,"13258":1,"13259":2,"13260":1,"13261":2,"13262":1,"13263":1,"13264":2,"13265":2,"13266":1,"13267":1,"13268":2,"13269":1,"13270":2,"13271":2,"13272":1,"13273":2,"13274":1,"13275":2,"13276":1,"13277":2,"13278":2,"13279":1,"13280":2,"13281":2,"13282":1,"13283":1,"13284":1,"13285":1,"13286":2,"13287":1,"13288":2,"13289":2,"13290":1,"13291":2,"13292":1,"13293":2,"13294":2,"13295":1,"13296":1,"13297":1,"13298":1,"13299":1,"13300":1,"13301":2,"13302":2,"13303":1,"13304":2,"13305":2,"13306":2,"13307":1,"13308":1,"13309":2,"13310":2,"13311":2,"13312":2,"13313":1,"13314":1,"13315":1,"13316":1,"13317":2,"13318":2,"13319":1,"13320":1,"13321":1,"13322":2,"13323":1,"13324":1,"13325":2,"13326":1,"13327":1,"13328":2,"13329":1,"13330":1,"13331":2,"13332":2,"13333":1,"13334":1,"13335":2,"13336":1,"13337":2,"13338":1,"13339":1,"13340":1,"13341":2,"13342":2,"13343":2,"13344":2,"13345":2,"13346":2,"13347":1,"13348":2,"13349":2,"13350":2,"13351":1,"13352":2,"13353":1,"13354":2,"13355":1,"13356":1,"13357":2,"13358":1,"13359":2,"13360":1,"13361":2,"13362":2,"13363":2,"13364":1,"13365":2,"13366":2,"13367":2,"13368":1,"13369":2,"13370":1,"13371":1,"13372":2,"13373":1,"13374":1,"13375":1,"13376":1,"13377":2,"13378":1,"13379":2,"13380":1,"13381":2,"13382":1,"13383":2,"13384":1,"13385":1,"13386":2,"13387":1,"13388":2,"13389":1,"13390":1,"13391":2,"13392":1,"13393":2,"13394":2,"13395":1,"13396":1,"13397":1,"13398":1,"13399":2,"13400":1,"13401":1,"13402":2,"13403":2,"13404":1,"13405":2,"13406":1,"13407":2,"13408":2,"13409":1,"13410":2,"13411":1,"13412":2,"13413":1,"13414":2,"13415":1,"13416":1,"13417":2,"13418":1,"13419":2,"13420":1,"13421":2,"13422":1,"13423":2,"13424":1,"13425":1,"13426":2,"13427":1,"13428":1,"13429":1,"13430":1,"13431":2,"13432":1,"13433":2,"13434":1,"13435":1,"13436":1,"13437":2,"13438":2,"13439":1,"13440":2,"13441":1,"13442":2,"13443":1,"13444":1,"13445":1,"13446":1,"13447":2,"13448":1,"13449":2,"13450":2,"13451":2,"13452":2,"13453":1,"13454":2,"13455":2,"13456":1,"13457":2,"13458":1,"13459":1,"13460":1,"13461":1,"13462":1,"13463":1,"13464":1,"13465":2,"13466":2,"13467":1,"13468":1,"13469":2,"13470":1,"13471":1,"13472":1,"13473":1,"13474":1,"13475":2,"13476":2,"13477":1,"13478":1,"13479":1,"13480":1,"13481":2,"13482":2,"13483":1,"13484":2,"13485":2,"13486":1,"13487":2,"13488":1,"13489":1,"13490":2,"13491":2,"13492":1,"13493":1,"13494":1,"13495":1,"13496":1,"13497":1,"13498":1,"13499":1,"13500":1,"13501":1,"13502":1,"13503":2,"13504":2,"13505":2,"13506":1,"13507":1,"13508":2,"13509":2,"13510":2,"13511":2,"13512":1,"13513":2,"13514":1,"13515":1,"13516":2,"13517":1,"13518":2,"13519":1,"13520":1,"13521":1,"13522":2,"13523":2,"13524":1,"13525":1,"13526":1,"13527":2,"13528":1,"13529":2,"13530":2,"13531":1,"13532":2,"13533":1,"13534":1,"13535":1,"13536":1,"13537":2,"13538":2,"13539":1,"13540":2,"13541":2,"13542":2,"13543":1,"13544":2,"13545":1,"13546":2,"13547":1,"13548":2,"13549":2,"13550":1,"13551":1,"13552":1,"13553":1,"13554":2,"13555":2,"13556":2,"13557":2,"13558":1,"13559":2,"13560":2,"13561":1,"13562":2,"13563":1,"13564":1,"13565":1,"13566":2,"13567":2,"13568":1,"13569":1,"13570":2,"13571":2,"13572":2,"13573":2,"13574":1,"13575":1,"13576":2,"13577":1,"13578":1,"13579":2,"13580":1,"13581":2,"13582":2,"13583":2,"13584":2,"13585":2,"13586":1,"13587":1,"13588":2,"13589":2,"13590":2,"13591":1,"13592":1,"13593":1,"13594":1,"13595":1,"13596":2,"13597":2,"13598":1,"13599":2,"13600":1,"13601":1,"13602":2,"13603":2,"13604":1,"13605":2,"13606":2,"13607":2,"13608":2,"13609":2,"13610":2,"13611":2,"13612":1,"13613":2,"13614":2,"13615":1,"13616":1,"13617":1,"13618":2,"13619":2,"13620":2,"13621":2,"13622":2,"13623":1,"13624":1,"13625":2,"13626":2,"13627":1,"13628":1,"13629":2,"13630":2,"13631":1,"13632":1,"13633":2,"13634":2,"13635":2,"13636":1,"13637":2,"13638":2,"13639":1,"13640":2,"13641":2,"13642":1,"13643":1,"13644":1,"13645":1,"13646":2,"13647":1,"13648":2,"13649":2,"13650":1,"13651":1,"13652":1,"13653":1,"13654":1,"13655":2,"13656":2,"13657":2,"13658":1,"13659":1,"13660":2,"13661":2,"13662":1,"13663":1,"13664":2,"13665":1,"13666":2,"13667":1,"13668":1,"13669":2,"13670":1,"13671":2,"13672":2,"13673":1,"13674":1,"13675":2,"13676":1,"13677":1,"13678":1,"13679":2,"13680":2,"13681":1,"13682":1,"13683":1,"13684":2,"13685":2,"13686":2,"13687":2,"13688":1,"13689":1,"13690":1,"13691":1,"13692":1,"13693":2,"13694":1,"13695":1,"13696":2,"13697":2,"13698":1,"13699":2,"13700":1,"13701":2,"13702":1,"13703":1,"13704":1,"13705":1,"13706":2,"13707":1,"13708":1,"13709":2,"13710":1,"13711":1,"13712":1,"13713":2,"13714":1,"13715":1,"13716":2,"13717":2,"13718":1,"13719":2,"13720":1,"13721":1,"13722":2,"13723":2,"13724":1,"13725":2,"13726":1,"13727":2,"13728":2,"13729":2,"13730":2,"13731":1,"13732":2,"13733":2,"13734":2,"13735":2,"13736":1,"13737":2,"13738":2,"13739":2,"13740":1,"13741":2,"13742":1,"13743":1,"13744":2,"13745":2,"13746":1,"13747":2,"13748":1,"13749":1,"13750":2,"13751":2,"13752":1,"13753":1,"13754":2,"13755":1,"13756":1,"13757":2,"13758":2,"13759":2,"13760":1,"13761":1,"13762":1,"13763":1,"13764":1,"13765":2,"13766":2,"13767":2,"13768":2,"13769":1,"13770":2,"13771":1,"13772":2,"13773":2,"13774":2,"13775":1,"13776":2,"13777":2,"13778":1,"13779":2,"13780":2,"13781":1,"13782":1,"13783":1,"13784":2,"13785":2,"13786":1,"13787":2,"13788":1,"13789":2,"13790":1,"13791":1,"13792":2,"13793":1,"13794":1,"13795":2,"13796":2,"13797":2,"13798":2,"13799":1,"13800":2,"13801":1,"13802":1,"13803":2,"13804":2,"13805":1,"13806":1,"13807":1,"13808":1,"13809":2,"13810":1,"13811":1,"13812":2,"13813":1,"13814":2,"13815":2,"13816":1,"13817":1,"13818":1,"13819":1,"13820":2,"13821":1,"13822":1,"13823":2,"13824":2,"13825":1,"13826":1,"13827":2,"13828":1,"13829":2,"13830":1,"13831":2,"13832":2,"13833":2,"13834":2,"13835":1,"13836":2,"13837":2,"13838":1,"13839":2,"13840":2,"13841":1,"13842":1,"13843":1,"13844":2,"13845":1,"13846":1,"13847":2,"13848":2,"13849":1,"13850":2,"13851":1,"13852":1,"13853":1,"13854":2,"13855":2,"13856":2,"13857":1,"13858":1,"13859":2,"13860":2,"13861":2,"13862":2,"13863":1,"13864":2,"13865":2,"13866":2,"13867":2,"13868":1,"13869":1,"13870":2,"13871":2,"13872":1,"13873":1,"13874":2,"13875":2,"13876":1,"13877":1,"13878":1,"13879":2,"13880":1,"13881":2,"13882":1,"13883":1,"13884":2,"13885":2,"13886":2,"13887":2,"13888":1,"13889":2,"13890":1,"13891":2,"13892":1,"13893":2,"13894":1,"13895":1,"13896":1,"13897":1,"13898":2,"13899":1,"13900":1,"13901":2,"13902":2,"13903":1,"13904":2,"13905":1,"13906":2,"13907":1,"13908":2,"13909":1,"13910":1,"13911":2,"13912":2,"13913":2,"13914":1,"13915":2,"13916":1,"13917":1,"13918":2,"13919":2,"13920":2,"13921":2,"13922":1,"13923":2,"13924":2,"13925":2,"13926":1,"13927":2,"13928":1,"13929":1,"13930":2,"13931":1,"13932":1,"13933":2,"13934":2,"13935":2,"13936":2,"13937":2,"13938":1,"13939":1,"13940":1,"13941":2,"13942":2,"13943":1,"13944":2,"13945":1,"13946":2,"13947":1,"13948":1,"13949":2,"13950":2,"13951":1,"13952":1,"13953":1,"13954":2,"13955":2,"13956":2,"13957":2,"13958":2,"13959":1,"13960":2,"13961":1,"13962":2,"13963":2,"13964":1,"13965":1,"13966":2,"13967":1,"13968":2,"13969":1,"13970":1,"13971":2,"13972":1,"13973":1,"13974":1,"13975":1,"13976":2,"13977":1,"13978":2,"13979":2,"13980":1,"13981":1,"13982":2,"13983":2,"13984":1,"13985":1,"13986":2,"13987":1,"13988":2,"13989":2,"13990":1,"13991":1,"13992":1,"13993":2,"13994":1,"13995":1,"13996":1,"13997":2,"13998":2,"13999":2,"14000":2,"14001":1,"14002":1,"14003":1,"14004":2,"14005":2,"14006":2,"14007":1,"14008":2,"14009":1,"14010":1,"14011":1,"14012":1,"14013":1,"14014":2,"14015":1,"14016":1,"14017":2,"14018":1,"14019":1,"14020":1,"14021":1,"14022":2,"14023":1,"14024":2,"14025":2,"14026":1,"14027":1,"14028":2,"14029":2,"14030":1,"14031":1,"14032":1,"14033":1,"14034":2,"14035":2,"14036":1,"14037":2,"14038":1,"14039":2,"14040":2,"14041":2,"14042":1,"14043":2,"14044":2,"14045":1,"14046":2,"14047":2,"14048":2,"14049":1,"14050":1,"14051":2,"14052":1,"14053":1,"14054":1,"14055":2,"14056":1,"14057":2,"14058":2,"14059":2,"14060":1,"14061":1,"14062":2,"14063":2,"14064":2,"14065":1,"14066":1,"14067":2,"14068":1,"14069":2,"14070":2,"14071":2,"14072":1,"14073":1,"14074":1,"14075":2,"14076":1,"14077":2,"14078":2,"14079":2,"14080":1,"14081":1,"14082":2,"14083":1,"14084":2,"14085":2,"14086":2,"14087":1,"14088":1,"14089":2,"14090":2,"14091":2,"14092":2,"14093":2,"14094":2,"14095":1,"14096":2,"14097":2,"14098":1,"14099":2,"14100":1,"14101":1,"14102":2,"14103":2,"14104":1,"14105":1,"14106":1,"14107":1,"14108":1,"14109":1,"14110":2,"14111":1,"14112":1,"14113":1,"14114":1,"14115":2,"14116":1,"14117":2,"14118":2,"14119":2,"14120":1,"14121":2,"14122":2,"14123":2,"14124":2,"14125":2,"14126":2,"14127":2,"14128":2,"14129":2,"14130":2,"14131":1,"14132":1,"14133":2,"14134":1,"14135":2,"14136":2,"14137":1,"14138":1,"14139":1,"14140":1,"14141":1,"14142":1,"14143":1,"14144":2,"14145":2,"14146":1,"14147":1,"14148":2,"14149":2,"14150":1,"14151":1,"14152":1,"14153":2,"14154":1,"14155":2,"14156":1,"14157":1,"14158":2,"14159":1,"14160":2,"14161":2,"14162":1,"14163":1,"14164":2,"14165":1,"14166":2,"14167":1,"14168":2,"14169":1,"14170":2,"14171":2,"14172":1,"14173":1,"14174":1,"14175":1,"14176":1,"14177":1,"14178":1,"14179":2,"14180":1,"14181":2,"14182":2,"14183":2,"14184":2,"14185":2,"14186":1,"14187":1,"14188":2,"14189":2,"14190":2,"14191":2,"14192":1,"14193":2,"14194":1,"14195":2,"14196":2,"14197":1,"14198":1,"14199":2,"14200":1,"14201":2,"14202":1,"14203":1,"14204":2,"14205":1,"14206":1,"14207":2,"14208":1,"14209":2,"14210":2,"14211":1,"14212":1,"14213":1,"14214":1,"14215":1,"14216":1,"14217":2,"14218":2,"14219":2,"14220":2,"14221":2,"14222":1,"14223":2,"14224":1,"14225":1,"14226":2,"14227":2,"14228":2,"14229":1,"14230":1,"14231":2,"14232":2,"14233":1,"14234":2,"14235":2,"14236":2,"14237":2,"14238":1,"14239":2,"14240":1,"14241":1,"14242":2,"14243":2,"14244":2,"14245":2,"14246":2,"14247":2,"14248":2,"14249":1,"14250":1,"14251":2,"14252":1,"14253":2,"14254":2,"14255":2,"14256":1,"14257":1,"14258":2,"14259":1,"14260":1,"14261":2,"14262":1,"14263":2,"14264":2,"14265":1,"14266":2,"14267":1,"14268":1,"14269":2,"14270":2,"14271":2,"14272":2,"14273":1,"14274":1,"14275":1,"14276":2,"14277":2,"14278":2,"14279":2,"14280":2,"14281":1,"14282":1,"14283":1,"14284":2,"14285":2,"14286":2,"14287":1,"14288":1,"14289":1,"14290":2,"14291":1,"14292":2,"14293":1,"14294":2,"14295":2,"14296":1,"14297":2,"14298":2,"14299":2,"14300":2,"14301":2,"14302":2,"14303":1,"14304":1,"14305":1,"14306":1,"14307":1,"14308":1,"14309":2,"14310":2,"14311":1,"14312":2,"14313":2,"14314":2,"14315":2,"14316":2,"14317":1,"14318":1,"14319":2,"14320":1,"14321":1,"14322":2,"14323":2,"14324":2,"14325":1,"14326":1,"14327":2,"14328":1,"14329":1,"14330":1,"14331":1,"14332":2,"14333":1,"14334":2,"14335":1,"14336":2,"14337":1,"14338":1,"14339":1,"14340":2,"14341":1,"14342":1,"14343":1,"14344":1,"14345":1,"14346":1,"14347":2,"14348":2,"14349":2,"14350":1,"14351":1,"14352":2,"14353":1,"14354":1,"14355":1,"14356":2,"14357":2,"14358":2,"14359":1,"14360":1,"14361":2,"14362":2,"14363":1,"14364":2,"14365":2,"14366":1,"14367":2,"14368":1,"14369":2,"14370":1,"14371":1,"14372":2,"14373":2,"14374":1,"14375":2,"14376":1,"14377":1,"14378":2,"14379":1,"14380":2,"14381":2,"14382":2,"14383":1,"14384":2,"14385":1,"14386":2,"14387":2,"14388":1,"14389":2,"14390":2,"14391":1,"14392":1,"14393":1,"14394":2,"14395":1,"14396":2,"14397":1,"14398":2,"14399":2,"14400":2,"14401":1,"14402":2,"14403":1,"14404":2,"14405":1,"14406":2,"14407":1,"14408":2,"14409":2,"14410":2,"14411":1,"14412":1,"14413":1,"14414":2,"14415":1,"14416":1,"14417":2,"14418":1,"14419":2,"14420":1,"14421":1,"14422":1,"14423":1,"14424":2,"14425":1,"14426":1,"14427":1,"14428":2,"14429":2,"14430":1,"14431":2,"14432":2,"14433":2,"14434":2,"14435":1,"14436":2,"14437":2,"14438":2,"14439":2,"14440":2,"14441":1,"14442":2,"14443":2,"14444":1,"14445":2,"14446":1,"14447":1,"14448":1,"14449":1,"14450":1,"14451":2,"14452":1,"14453":2,"14454":2,"14455":2,"14456":1,"14457":2,"14458":2,"14459":2,"14460":1,"14461":1,"14462":1,"14463":1,"14464":1,"14465":2,"14466":1,"14467":2,"14468":1,"14469":1,"14470":1,"14471":2,"14472":1,"14473":2,"14474":1,"14475":1,"14476":2,"14477":2,"14478":2,"14479":2,"14480":1,"14481":1,"14482":1,"14483":1,"14484":1,"14485":1,"14486":1,"14487":2,"14488":1,"14489":2,"14490":2,"14491":1,"14492":1,"14493":2,"14494":2,"14495":1,"14496":1,"14497":1,"14498":2,"14499":1,"14500":2,"14501":1,"14502":1,"14503":2,"14504":1,"14505":2,"14506":1,"14507":2,"14508":2,"14509":2,"14510":1,"14511":2,"14512":1,"14513":2,"14514":1,"14515":1,"14516":2,"14517":2,"14518":2,"14519":1,"14520":2,"14521":2,"14522":1,"14523":1,"14524":1,"14525":2,"14526":1,"14527":2,"14528":1,"14529":2,"14530":2,"14531":1,"14532":2,"14533":1,"14534":1,"14535":1,"14536":1,"14537":2,"14538":2,"14539":2,"14540":1,"14541":1,"14542":2,"14543":2,"14544":1,"14545":2,"14546":1,"14547":1,"14548":1,"14549":2,"14550":2,"14551":2,"14552":2,"14553":2,"14554":1,"14555":1,"14556":1,"14557":1,"14558":2,"14559":1,"14560":1,"14561":2,"14562":1,"14563":1,"14564":1,"14565":1,"14566":2,"14567":1,"14568":2,"14569":2,"14570":2,"14571":1,"14572":2,"14573":1,"14574":1,"14575":1,"14576":2,"14577":1,"14578":2,"14579":2,"14580":1,"14581":1,"14582":1,"14583":1,"14584":1,"14585":1,"14586":2,"14587":1,"14588":1,"14589":1,"14590":2,"14591":2,"14592":1,"14593":1,"14594":1,"14595":1,"14596":2,"14597":1,"14598":2,"14599":1,"14600":1,"14601":2,"14602":1,"14603":1,"14604":2,"14605":2,"14606":2,"14607":1,"14608":2,"14609":1,"14610":1,"14611":1,"14612":2,"14613":2,"14614":1,"14615":2,"14616":1,"14617":2,"14618":2,"14619":2,"14620":1,"14621":2,"14622":1,"14623":1,"14624":1,"14625":2,"14626":2,"14627":2,"14628":2,"14629":1,"14630":1,"14631":1,"14632":2,"14633":2,"14634":2,"14635":2,"14636":1,"14637":2,"14638":1,"14639":1,"14640":1,"14641":1,"14642":1,"14643":1,"14644":1,"14645":1,"14646":1,"14647":2,"14648":2,"14649":2,"14650":1,"14651":1,"14652":2,"14653":2,"14654":2,"14655":2,"14656":2,"14657":1,"14658":1,"14659":1,"14660":1,"14661":2,"14662":2,"14663":2,"14664":2,"14665":1,"14666":2,"14667":2,"14668":2,"14669":2,"14670":1,"14671":1,"14672":1,"14673":1,"14674":1,"14675":1,"14676":2,"14677":2,"14678":1,"14679":1,"14680":1,"14681":1,"14682":1,"14683":2,"14684":1,"14685":2,"14686":1,"14687":1,"14688":1,"14689":1,"14690":2,"14691":2,"14692":2,"14693":2,"14694":2,"14695":2,"14696":1,"14697":1,"14698":2,"14699":1,"14700":2,"14701":1,"14702":2,"14703":1,"14704":2,"14705":2,"14706":2,"14707":2,"14708":2,"14709":2,"14710":1,"14711":2,"14712":1,"14713":1,"14714":1,"14715":1,"14716":2,"14717":1,"14718":2,"14719":1,"14720":2,"14721":1,"14722":1,"14723":1,"14724":1,"14725":2,"14726":1,"14727":1,"14728":1,"14729":1,"14730":1,"14731":2,"14732":1,"14733":2,"14734":1,"14735":1,"14736":1,"14737":2,"14738":2,"14739":2,"14740":2,"14741":2,"14742":1,"14743":1,"14744":2,"14745":2,"14746":1,"14747":1,"14748":1,"14749":2,"14750":2,"14751":1,"14752":1,"14753":1,"14754":2,"14755":1,"14756":2,"14757":1,"14758":1,"14759":2,"14760":1,"14761":1,"14762":1,"14763":1,"14764":1,"14765":1,"14766":2,"14767":1,"14768":2,"14769":2,"14770":2,"14771":1,"14772":2,"14773":2,"14774":2,"14775":2,"14776":2,"14777":1,"14778":2,"14779":2,"14780":2,"14781":2,"14782":2,"14783":2,"14784":1,"14785":1,"14786":2,"14787":2,"14788":1,"14789":2,"14790":2,"14791":1,"14792":1,"14793":2,"14794":1,"14795":2,"14796":1,"14797":1,"14798":2,"14799":1,"14800":1,"14801":1,"14802":2,"14803":2,"14804":2,"14805":2,"14806":2,"14807":1,"14808":1,"14809":2,"14810":1,"14811":1,"14812":1,"14813":2,"14814":2,"14815":2,"14816":1,"14817":1,"14818":1,"14819":2,"14820":2,"14821":2,"14822":1,"14823":1,"14824":1,"14825":2,"14826":1,"14827":2,"14828":1,"14829":1,"14830":2,"14831":2,"14832":2,"14833":1,"14834":2,"14835":1,"14836":1,"14837":2,"14838":1,"14839":2,"14840":1,"14841":2,"14842":1,"14843":2,"14844":1,"14845":1,"14846":1,"14847":2,"14848":1,"14849":2,"14850":2,"14851":1,"14852":2,"14853":1,"14854":2,"14855":1,"14856":2,"14857":2,"14858":2,"14859":2,"14860":1,"14861":2,"14862":2,"14863":1,"14864":1,"14865":2,"14866":2,"14867":1,"14868":2,"14869":1,"14870":1,"14871":1,"14872":2,"14873":1,"14874":2,"14875":2,"14876":2,"14877":1,"14878":2,"14879":1,"14880":1,"14881":2,"14882":2,"14883":1,"14884":1,"14885":1,"14886":2,"14887":1,"14888":2,"14889":2,"14890":1,"14891":1,"14892":1,"14893":2,"14894":2,"14895":1,"14896":2,"14897":2,"14898":1,"14899":2,"14900":2,"14901":1,"14902":1,"14903":2,"14904":1,"14905":2,"14906":1,"14907":1,"14908":2,"14909":1,"14910":1,"14911":2,"14912":1,"14913":2,"14914":2,"14915":1,"14916":2,"14917":1,"14918":1,"14919":2,"14920":2,"14921":1,"14922":1,"14923":1,"14924":2,"14925":1,"14926":2,"14927":1,"14928":2,"14929":2,"14930":1,"14931":2,"14932":2,"14933":1,"14934":1,"14935":2,"14936":2,"14937":2,"14938":1,"14939":1,"14940":1,"14941":2,"14942":1,"14943":1,"14944":1,"14945":2,"14946":2,"14947":2,"14948":2,"14949":1,"14950":1,"14951":1,"14952":2,"14953":2,"14954":2,"14955":2,"14956":1,"14957":1,"14958":2,"14959":1,"14960":2,"14961":1,"14962":2,"14963":2,"14964":1,"14965":1,"14966":1,"14967":1,"14968":2,"14969":1,"14970":1,"14971":2,"14972":2,"14973":2,"14974":1,"14975":2,"14976":1,"14977":1,"14978":2,"14979":1,"14980":1,"14981":2,"14982":2,"14983":2,"14984":2,"14985":2,"14986":2,"14987":1,"14988":1,"14989":2,"14990":2,"14991":2,"14992":1,"14993":1,"14994":1,"14995":2,"14996":1,"14997":1,"14998":2,"14999":2,"15000":1,"15001":2,"15002":1,"15003":2,"15004":1,"15005":1,"15006":2,"15007":1,"15008":1,"15009":1,"15010":1,"15011":2,"15012":1,"15013":2,"15014":2,"15015":1,"15016":1,"15017":1,"15018":1,"15019":1,"15020":1,"15021":1,"15022":2,"15023":2,"15024":2,"15025":1,"15026":2,"15027":1,"15028":2,"15029":1,"15030":1,"15031":1,"15032":2,"15033":2,"15034":2,"15035":2,"15036":1,"15037":1,"15038":2,"15039":1,"15040":1,"15041":2,"15042":2,"15043":2,"15044":2,"15045":1,"15046":1,"15047":2,"15048":1,"15049":2,"15050":2,"15051":1,"15052":2,"15053":2,"15054":2,"15055":2,"15056":1,"15057":2,"15058":2,"15059":2,"15060":2,"15061":2,"15062":1,"15063":1,"15064":1,"15065":1,"15066":1,"15067":1,"15068":1,"15069":1,"15070":2,"15071":1,"15072":2,"15073":2,"15074":2,"15075":1,"15076":1,"15077":2,"15078":2,"15079":2,"15080":2,"15081":1,"15082":2,"15083":2,"15084":2,"15085":2,"15086":1,"15087":1,"15088":2,"15089":2,"15090":2,"15091":1,"15092":1,"15093":2,"15094":2,"15095":2,"15096":2,"15097":1,"15098":1,"15099":1,"15100":2,"15101":2,"15102":2,"15103":1,"15104":2,"15105":2,"15106":2,"15107":1,"15108":2,"15109":1,"15110":1,"15111":2,"15112":1,"15113":2,"15114":1,"15115":1,"15116":1,"15117":2,"15118":2,"15119":2,"15120":2,"15121":2,"15122":1,"15123":2,"15124":1,"15125":2,"15126":2,"15127":1,"15128":2,"15129":2,"15130":2,"15131":2,"15132":2,"15133":1,"15134":2,"15135":1,"15136":2,"15137":2,"15138":2,"15139":1,"15140":2,"15141":1,"15142":1,"15143":1,"15144":2,"15145":2,"15146":1,"15147":1,"15148":1,"15149":2,"15150":1,"15151":1,"15152":2,"15153":2,"15154":2,"15155":2,"15156":2,"15157":1,"15158":2,"15159":2,"15160":2,"15161":1,"15162":1,"15163":2,"15164":1,"15165":1,"15166":1,"15167":2,"15168":2,"15169":1,"15170":2,"15171":1,"15172":2,"15173":2,"15174":2,"15175":1,"15176":1,"15177":2,"15178":1,"15179":2,"15180":1,"15181":2,"15182":1,"15183":1,"15184":2,"15185":1,"15186":2,"15187":1,"15188":2,"15189":1,"15190":1,"15191":2,"15192":1,"15193":2,"15194":1,"15195":1,"15196":1,"15197":1,"15198":1,"15199":2,"15200":2,"15201":1,"15202":2,"15203":2,"15204":1,"15205":1,"15206":2,"15207":2,"15208":1,"15209":1,"15210":1,"15211":1,"15212":2,"15213":2,"15214":1,"15215":1,"15216":2,"15217":1,"15218":2,"15219":1,"15220":1,"15221":2,"15222":2,"15223":2,"15224":2,"15225":1,"15226":2,"15227":1,"15228":2,"15229":1,"15230":2,"15231":1,"15232":2,"15233":1,"15234":1,"15235":1,"15236":1,"15237":2,"15238":1,"15239":2,"15240":2,"15241":2,"15242":2,"15243":2,"15244":2,"15245":2,"15246":2,"15247":1,"15248":1,"15249":1,"15250":2,"15251":1,"15252":1,"15253":1,"15254":1,"15255":2,"15256":1,"15257":1,"15258":1,"15259":2,"15260":2,"15261":1,"15262":2,"15263":1,"15264":2,"15265":1,"15266":2,"15267":1,"15268":1,"15269":1,"15270":2,"15271":2,"15272":2,"15273":1,"15274":1,"15275":2,"15276":1,"15277":1,"15278":1,"15279":2,"15280":2,"15281":2,"15282":2,"15283":2,"15284":2,"15285":1,"15286":2,"15287":1,"15288":1,"15289":1,"15290":1,"15291":2,"15292":2,"15293":2,"15294":2,"15295":2,"15296":1,"15297":1,"15298":1,"15299":2,"15300":1,"15301":2,"15302":2,"15303":2,"15304":2,"15305":2,"15306":2,"15307":2,"15308":1,"15309":1,"15310":1,"15311":2,"15312":1,"15313":1,"15314":1,"15315":1,"15316":1,"15317":1,"15318":1,"15319":1,"15320":1,"15321":2,"15322":1,"15323":2,"15324":1,"15325":1,"15326":2,"15327":2,"15328":2,"15329":1,"15330":2,"15331":2,"15332":2,"15333":1,"15334":2,"15335":1,"15336":1,"15337":2,"15338":1,"15339":1,"15340":1,"15341":2,"15342":2,"15343":2,"15344":2,"15345":1,"15346":1,"15347":1,"15348":2,"15349":2,"15350":2,"15351":1,"15352":2,"15353":1,"15354":1,"15355":2,"15356":2,"15357":2,"15358":2,"15359":1,"15360":1,"15361":2,"15362":1,"15363":1,"15364":1,"15365":1,"15366":1,"15367":2,"15368":1,"15369":2,"15370":2,"15371":1,"15372":2,"15373":2,"15374":1,"15375":2,"15376":2,"15377":1,"15378":2,"15379":1,"15380":2,"15381":1,"15382":2,"15383":2,"15384":1,"15385":1,"15386":2,"15387":1,"15388":1,"15389":1,"15390":1,"15391":1,"15392":1,"15393":2,"15394":1,"15395":2,"15396":2,"15397":2,"15398":2,"15399":2,"15400":2,"15401":1,"15402":1,"15403":1,"15404":2,"15405":2,"15406":2,"15407":2,"15408":2,"15409":1,"15410":1,"15411":1,"15412":2,"15413":1,"15414":1,"15415":2,"15416":1,"15417":1,"15418":2,"15419":1,"15420":2,"15421":2,"15422":1,"15423":1,"15424":1,"15425":2,"15426":1,"15427":2,"15428":1,"15429":1,"15430":2,"15431":1,"15432":2,"15433":1,"15434":2,"15435":1,"15436":2,"15437":1,"15438":2,"15439":2,"15440":2,"15441":1,"15442":1,"15443":2,"15444":2,"15445":2,"15446":2,"15447":2,"15448":1,"15449":1,"15450":1,"15451":2,"15452":1,"15453":2,"15454":2,"15455":1,"15456":1,"15457":1,"15458":2,"15459":2,"15460":2,"15461":2,"15462":2,"15463":2,"15464":2,"15465":2,"15466":2,"15467":1,"15468":2,"15469":1,"15470":1,"15471":1,"15472":1,"15473":1,"15474":1,"15475":2,"15476":1,"15477":1,"15478":1,"15479":2,"15480":2,"15481":2,"15482":1,"15483":1,"15484":2,"15485":2,"15486":2,"15487":2,"15488":2,"15489":1,"15490":1,"15491":2,"15492":1,"15493":2,"15494":1,"15495":2,"15496":1,"15497":2,"15498":1,"15499":2,"15500":1,"15501":2,"15502":2,"15503":2,"15504":2,"15505":2,"15506":1,"15507":2,"15508":1,"15509":1,"15510":2,"15511":2,"15512":1,"15513":1,"15514":2,"15515":2,"15516":1,"15517":1,"15518":1,"15519":1,"15520":2,"15521":2,"15522":1,"15523":1,"15524":2,"15525":2,"15526":1,"15527":1,"15528":2,"15529":1,"15530":2,"15531":2,"15532":1,"15533":1,"15534":1,"15535":1,"15536":2,"15537":2,"15538":2,"15539":2,"15540":2,"15541":2,"15542":2,"15543":1,"15544":2,"15545":1,"15546":2,"15547":1,"15548":2,"15549":2,"15550":1,"15551":2,"15552":1,"15553":2,"15554":2,"15555":2,"15556":1,"15557":2,"15558":1,"15559":1,"15560":1,"15561":2,"15562":1,"15563":1,"15564":1,"15565":2,"15566":1,"15567":1,"15568":2,"15569":2,"15570":1,"15571":1,"15572":2,"15573":2,"15574":2,"15575":2,"15576":2,"15577":2,"15578":2,"15579":1,"15580":2,"15581":2,"15582":1,"15583":2,"15584":2,"15585":1,"15586":2,"15587":2,"15588":1,"15589":1,"15590":2,"15591":1,"15592":2,"15593":2,"15594":2,"15595":1,"15596":2,"15597":2,"15598":2,"15599":2,"15600":2,"15601":1,"15602":1,"15603":1,"15604":1,"15605":2,"15606":2,"15607":2,"15608":2,"15609":1,"15610":1,"15611":1,"15612":2,"15613":2,"15614":2,"15615":1,"15616":1,"15617":1,"15618":1,"15619":1,"15620":2,"15621":1,"15622":2,"15623":1,"15624":2,"15625":1,"15626":1,"15627":2,"15628":1,"15629":2,"15630":2,"15631":1,"15632":1,"15633":2,"15634":1,"15635":1,"15636":1,"15637":2,"15638":1,"15639":1,"15640":1,"15641":1,"15642":1,"15643":1,"15644":2,"15645":2,"15646":1,"15647":1,"15648":1,"15649":1,"15650":2,"15651":2,"15652":1,"15653":2,"15654":1,"15655":1,"15656":2,"15657":2,"15658":2,"15659":1,"15660":2,"15661":1,"15662":2,"15663":1,"15664":1,"15665":2,"15666":1,"15667":2,"15668":2,"15669":2,"15670":2,"15671":1,"15672":1,"15673":2,"15674":2,"15675":1,"15676":1,"15677":2,"15678":2,"15679":1,"15680":2,"15681":2,"15682":2,"15683":1,"15684":2,"15685":1,"15686":1,"15687":1,"15688":1,"15689":1,"15690":1,"15691":1,"15692":1,"15693":1,"15694":1,"15695":1,"15696":2,"15697":1,"15698":1,"15699":1,"15700":1,"15701":2,"15702":1,"15703":1,"15704":1,"15705":2,"15706":2,"15707":2,"15708":2,"15709":1,"15710":1,"15711":1,"15712":2,"15713":1,"15714":2,"15715":1,"15716":1,"15717":2,"15718":1,"15719":2,"15720":2,"15721":2,"15722":2,"15723":1,"15724":2,"15725":2,"15726":1,"15727":2,"15728":2,"15729":1,"15730":1,"15731":1,"15732":1,"15733":1,"15734":1,"15735":2,"15736":1,"15737":1,"15738":2,"15739":1,"15740":2,"15741":1,"15742":2,"15743":1,"15744":1,"15745":2,"15746":2,"15747":1,"15748":2,"15749":2,"15750":1,"15751":1,"15752":1,"15753":1,"15754":2,"15755":1,"15756":1,"15757":1,"15758":1,"15759":1,"15760":1,"15761":2,"15762":2,"15763":2,"15764":2,"15765":2,"15766":2,"15767":1,"15768":1,"15769":1,"15770":2,"15771":2,"15772":1,"15773":2,"15774":1,"15775":2,"15776":1,"15777":2,"15778":2,"15779":2,"15780":1,"15781":1,"15782":1,"15783":2,"15784":2,"15785":1,"15786":2,"15787":2,"15788":2,"15789":2,"15790":2,"15791":2,"15792":1,"15793":2,"15794":2,"15795":1,"15796":2,"15797":2,"15798":1,"15799":2,"15800":2,"15801":1,"15802":1,"15803":2,"15804":2,"15805":2,"15806":2,"15807":1,"15808":1,"15809":1,"15810":2,"15811":2,"15812":2,"15813":2,"15814":2,"15815":1,"15816":2,"15817":1,"15818":2,"15819":1,"15820":2,"15821":2,"15822":1,"15823":2,"15824":1,"15825":2,"15826":1,"15827":2,"15828":1,"15829":2,"15830":1,"15831":2,"15832":1,"15833":2,"15834":1,"15835":1,"15836":1,"15837":2,"15838":1,"15839":2,"15840":2,"15841":2,"15842":2,"15843":2,"15844":1,"15845":2,"15846":2,"15847":1,"15848":1,"15849":2,"15850":2,"15851":1,"15852":2,"15853":1,"15854":2,"15855":2,"15856":2,"15857":2,"15858":1,"15859":2,"15860":1,"15861":2,"15862":2,"15863":1,"15864":2,"15865":2,"15866":2,"15867":1,"15868":2,"15869":1,"15870":1,"15871":2,"15872":2,"15873":2,"15874":2,"15875":1,"15876":1,"15877":1,"15878":2,"15879":2,"15880":1,"15881":2,"15882":1,"15883":1,"15884":2,"15885":2,"15886":1,"15887":2,"15888":2,"15889":1,"15890":2,"15891":1,"15892":2,"15893":2,"15894":1,"15895":1,"15896":2,"15897":2,"15898":1,"15899":1,"15900":2,"15901":2,"15902":1,"15903":1,"15904":1,"15905":1,"15906":2,"15907":2,"15908":1,"15909":1,"15910":2,"15911":2,"15912":1,"15913":1,"15914":1,"15915":2,"15916":1,"15917":1,"15918":2,"15919":1,"15920":1,"15921":1,"15922":2,"15923":2,"15924":2,"15925":2,"15926":1,"15927":2,"15928":2,"15929":2,"15930":2,"15931":2,"15932":2,"15933":2,"15934":1,"15935":1,"15936":1,"15937":2,"15938":1,"15939":2,"15940":1,"15941":2,"15942":1,"15943":2,"15944":1,"15945":2,"15946":1,"15947":2,"15948":2,"15949":2,"15950":1,"15951":1,"15952":2,"15953":2,"15954":1,"15955":1,"15956":1,"15957":1,"15958":1,"15959":1,"15960":2,"15961":2,"15962":2,"15963":2,"15964":1,"15965":1,"15966":1,"15967":1,"15968":1,"15969":1,"15970":2,"15971":1,"15972":2,"15973":1,"15974":1,"15975":1,"15976":1,"15977":1,"15978":2,"15979":1,"15980":1,"15981":1,"15982":2,"15983":1,"15984":1,"15985":2,"15986":2,"15987":2,"15988":2,"15989":1,"15990":1,"15991":1,"15992":1,"15993":1,"15994":1,"15995":2,"15996":2,"15997":2,"15998":1,"15999":2,"16000":2,"16001":2,"16002":2,"16003":1,"16004":2,"16005":1,"16006":2,"16007":1,"16008":2,"16009":2,"16010":1,"16011":1,"16012":1,"16013":2,"16014":1,"16015":2,"16016":2,"16017":2,"16018":1,"16019":1,"16020":2,"16021":1,"16022":1,"16023":2,"16024":1,"16025":2,"16026":1,"16027":1,"16028":1,"16029":1,"16030":2,"16031":1,"16032":2,"16033":2,"16034":1,"16035":1,"16036":2,"16037":1,"16038":2,"16039":1,"16040":1,"16041":1,"16042":1,"16043":2,"16044":2,"16045":1,"16046":2,"16047":1,"16048":2,"16049":2,"16050":1,"16051":1,"16052":2,"16053":2,"16054":1,"16055":2,"16056":2,"16057":1,"16058":1,"16059":2,"16060":2,"16061":1,"16062":1,"16063":2,"16064":2,"16065":1,"16066":2,"16067":2,"16068":2,"16069":1,"16070":1,"16071":2,"16072":1,"16073":2,"16074":2,"16075":2,"16076":1,"16077":2,"16078":1,"16079":2,"16080":1,"16081":1,"16082":1,"16083":2,"16084":2,"16085":2,"16086":1,"16087":1,"16088":1,"16089":1,"16090":1,"16091":2,"16092":2,"16093":1,"16094":2,"16095":2,"16096":1,"16097":1,"16098":1,"16099":2,"16100":2,"16101":1,"16102":2,"16103":2,"16104":1,"16105":1,"16106":1,"16107":2,"16108":1,"16109":2,"16110":1,"16111":2,"16112":1,"16113":2,"16114":2,"16115":2,"16116":2,"16117":1,"16118":1,"16119":2,"16120":1,"16121":2,"16122":1,"16123":1,"16124":2,"16125":1,"16126":1,"16127":2,"16128":1,"16129":1,"16130":2,"16131":1,"16132":2,"16133":2,"16134":2,"16135":2,"16136":1,"16137":2,"16138":1,"16139":1,"16140":2,"16141":2,"16142":2,"16143":2,"16144":2,"16145":1,"16146":2,"16147":1,"16148":2,"16149":2,"16150":2,"16151":1,"16152":1,"16153":1,"16154":1,"16155":2,"16156":1,"16157":2,"16158":1,"16159":1,"16160":1,"16161":2,"16162":2,"16163":2,"16164":2,"16165":1,"16166":2,"16167":2,"16168":2,"16169":1,"16170":1,"16171":1,"16172":1,"16173":1,"16174":2,"16175":2,"16176":1,"16177":2,"16178":1,"16179":2,"16180":2,"16181":1,"16182":1,"16183":2,"16184":1,"16185":1,"16186":2,"16187":1,"16188":1,"16189":1,"16190":2,"16191":2,"16192":1,"16193":1,"16194":2,"16195":1,"16196":1,"16197":1,"16198":1,"16199":1,"16200":2,"16201":1,"16202":1,"16203":1,"16204":1,"16205":1,"16206":2,"16207":2,"16208":1,"16209":1,"16210":1,"16211":1,"16212":2,"16213":2,"16214":1,"16215":2,"16216":1,"16217":1,"16218":1,"16219":2,"16220":1,"16221":2,"16222":2,"16223":1,"16224":2,"16225":2,"16226":2,"16227":1,"16228":2,"16229":1,"16230":2,"16231":2,"16232":2,"16233":1,"16234":2,"16235":1,"16236":1,"16237":2,"16238":1,"16239":2,"16240":2,"16241":1,"16242":2,"16243":1,"16244":2,"16245":2,"16246":1,"16247":1,"16248":1,"16249":1,"16250":2,"16251":2,"16252":1,"16253":1,"16254":1,"16255":2,"16256":2,"16257":1,"16258":1,"16259":1,"16260":1,"16261":2,"16262":1,"16263":1,"16264":2,"16265":2,"16266":1,"16267":2,"16268":1,"16269":2,"16270":2,"16271":2,"16272":1,"16273":1,"16274":2,"16275":1,"16276":2,"16277":1,"16278":2,"16279":1,"16280":2,"16281":2,"16282":1,"16283":2,"16284":2,"16285":1,"16286":1,"16287":2,"16288":2,"16289":2,"16290":2,"16291":2,"16292":2,"16293":1,"16294":1,"16295":2,"16296":1,"16297":2,"16298":1,"16299":1,"16300":1,"16301":1,"16302":1,"16303":1,"16304":1,"16305":1,"16306":2,"16307":1,"16308":1,"16309":2,"16310":2,"16311":2,"16312":2,"16313":2,"16314":2,"16315":1,"16316":1,"16317":2,"16318":1,"16319":1,"16320":1,"16321":2,"16322":2,"16323":2,"16324":1,"16325":2,"16326":2,"16327":2,"16328":2,"16329":2,"16330":2,"16331":1,"16332":2,"16333":2,"16334":1,"16335":1,"16336":1,"16337":1,"16338":2,"16339":1,"16340":2,"16341":1,"16342":1,"16343":2,"16344":1,"16345":1,"16346":1,"16347":1,"16348":2,"16349":2,"16350":1,"16351":1,"16352":2,"16353":1,"16354":2,"16355":2,"16356":1,"16357":1,"16358":1,"16359":2,"16360":1,"16361":2,"16362":1,"16363":1,"16364":2,"16365":1,"16366":2,"16367":1,"16368":2,"16369":2,"16370":1,"16371":2,"16372":1,"16373":1,"16374":2,"16375":1,"16376":1,"16377":2,"16378":1,"16379":2,"16380":1,"16381":2,"16382":1,"16383":1,"16384":2,"16385":1,"16386":1,"16387":2,"16388":2,"16389":1,"16390":2,"16391":2,"16392":2,"16393":2,"16394":2,"16395":2,"16396":2,"16397":1,"16398":2,"16399":2,"16400":1,"16401":1,"16402":1,"16403":2,"16404":2,"16405":1,"16406":2,"16407":1,"16408":1,"16409":1,"16410":1,"16411":1,"16412":1,"16413":1,"16414":2,"16415":2,"16416":1,"16417":2,"16418":2,"16419":1,"16420":2,"16421":1,"16422":1,"16423":2,"16424":1,"16425":2,"16426":1,"16427":1,"16428":1,"16429":1,"16430":1,"16431":1,"16432":1,"16433":1,"16434":2,"16435":2,"16436":1,"16437":1,"16438":1,"16439":1,"16440":2,"16441":2,"16442":2,"16443":1,"16444":2,"16445":2,"16446":2,"16447":2,"16448":2,"16449":2,"16450":1,"16451":2,"16452":2,"16453":2,"16454":1,"16455":2,"16456":2,"16457":1,"16458":1,"16459":1,"16460":2,"16461":2,"16462":2,"16463":1,"16464":1,"16465":2,"16466":2,"16467":2,"16468":1,"16469":1,"16470":1,"16471":2,"16472":2,"16473":2,"16474":1,"16475":2,"16476":1,"16477":2,"16478":2,"16479":2,"16480":2,"16481":1,"16482":1,"16483":1,"16484":2,"16485":2,"16486":1,"16487":1,"16488":1,"16489":1,"16490":2,"16491":2,"16492":1,"16493":1,"16494":2,"16495":2,"16496":2,"16497":2,"16498":2,"16499":2,"16500":2,"16501":1,"16502":1,"16503":2,"16504":2,"16505":1,"16506":2,"16507":1,"16508":2,"16509":2,"16510":1,"16511":1,"16512":2,"16513":2,"16514":2,"16515":1,"16516":1,"16517":1,"16518":2,"16519":1,"16520":2,"16521":2,"16522":2,"16523":2,"16524":1,"16525":1,"16526":2,"16527":2,"16528":2,"16529":1,"16530":1,"16531":1,"16532":2,"16533":2,"16534":1,"16535":2,"16536":2,"16537":2,"16538":1,"16539":2,"16540":1,"16541":1,"16542":2,"16543":2,"16544":1,"16545":2,"16546":2,"16547":2,"16548":1,"16549":2,"16550":2,"16551":2,"16552":2,"16553":2,"16554":2,"16555":2,"16556":2,"16557":2,"16558":2,"16559":1,"16560":1,"16561":2,"16562":1,"16563":1,"16564":2,"16565":2,"16566":2,"16567":1,"16568":1,"16569":1,"16570":2,"16571":1,"16572":1,"16573":2,"16574":1,"16575":2,"16576":1,"16577":2,"16578":2,"16579":2,"16580":2,"16581":1,"16582":1,"16583":2,"16584":2,"16585":1,"16586":1,"16587":1,"16588":2,"16589":1,"16590":1,"16591":2,"16592":1,"16593":2,"16594":2,"16595":1,"16596":1,"16597":1,"16598":2,"16599":1,"16600":1,"16601":2,"16602":1,"16603":2,"16604":1,"16605":2,"16606":1,"16607":1,"16608":2,"16609":1,"16610":2,"16611":2,"16612":1,"16613":1,"16614":2,"16615":2,"16616":2,"16617":1,"16618":2,"16619":2,"16620":2,"16621":1,"16622":1,"16623":1,"16624":1,"16625":1,"16626":2,"16627":2,"16628":1,"16629":1,"16630":1,"16631":1,"16632":1,"16633":1,"16634":1,"16635":2,"16636":1,"16637":1,"16638":2,"16639":2,"16640":2,"16641":2,"16642":1,"16643":2,"16644":2,"16645":2,"16646":1,"16647":2,"16648":2,"16649":1,"16650":2,"16651":1,"16652":2,"16653":2,"16654":2,"16655":2,"16656":1,"16657":1,"16658":1,"16659":2,"16660":1,"16661":1,"16662":1,"16663":2,"16664":2,"16665":2,"16666":2,"16667":2,"16668":1,"16669":2,"16670":2,"16671":1,"16672":1,"16673":1,"16674":2,"16675":2,"16676":2,"16677":1,"16678":1,"16679":1,"16680":2,"16681":1,"16682":1,"16683":1,"16684":2,"16685":2,"16686":1,"16687":1,"16688":2,"16689":2,"16690":2,"16691":1,"16692":2,"16693":1,"16694":2,"16695":1,"16696":2,"16697":1,"16698":2,"16699":2,"16700":1,"16701":2,"16702":2,"16703":1,"16704":2,"16705":2,"16706":1,"16707":2,"16708":2,"16709":2,"16710":1,"16711":1,"16712":1,"16713":2,"16714":1,"16715":2,"16716":2,"16717":2,"16718":2,"16719":1,"16720":1,"16721":2,"16722":2,"16723":2,"16724":2,"16725":1,"16726":2,"16727":2,"16728":1,"16729":1,"16730":2,"16731":2,"16732":2,"16733":2,"16734":2,"16735":1,"16736":1,"16737":2,"16738":1,"16739":1,"16740":2,"16741":2,"16742":2,"16743":1,"16744":1,"16745":2,"16746":2,"16747":1,"16748":1,"16749":1,"16750":2,"16751":2,"16752":2,"16753":2,"16754":2,"16755":1,"16756":1,"16757":1,"16758":2,"16759":1,"16760":2,"16761":1,"16762":1,"16763":1,"16764":2,"16765":2,"16766":2,"16767":1,"16768":1,"16769":2,"16770":1,"16771":1,"16772":1,"16773":2,"16774":1,"16775":2,"16776":1,"16777":2,"16778":2,"16779":2,"16780":1,"16781":1,"16782":1,"16783":1,"16784":1,"16785":2,"16786":2,"16787":2,"16788":2,"16789":2,"16790":2,"16791":1,"16792":1,"16793":1,"16794":2,"16795":2,"16796":1,"16797":2,"16798":2,"16799":1,"16800":2,"16801":1,"16802":2,"16803":2,"16804":2,"16805":1,"16806":2,"16807":1,"16808":2,"16809":2,"16810":1,"16811":1,"16812":2,"16813":2,"16814":1,"16815":1,"16816":2,"16817":2,"16818":2,"16819":1,"16820":2,"16821":2,"16822":2,"16823":2,"16824":1,"16825":2,"16826":1,"16827":1,"16828":1,"16829":2,"16830":1,"16831":1,"16832":1,"16833":2,"16834":1,"16835":1,"16836":2,"16837":2,"16838":1,"16839":2,"16840":2,"16841":1,"16842":2,"16843":1,"16844":2,"16845":2,"16846":1,"16847":2,"16848":1,"16849":2,"16850":2,"16851":2,"16852":2,"16853":1,"16854":2,"16855":1,"16856":2,"16857":1,"16858":1,"16859":2,"16860":1,"16861":2,"16862":2,"16863":1,"16864":1,"16865":1,"16866":2,"16867":2,"16868":1,"16869":2,"16870":2,"16871":1,"16872":2,"16873":2,"16874":1,"16875":2,"16876":2,"16877":2,"16878":2,"16879":2,"16880":2,"16881":2,"16882":1,"16883":1,"16884":1,"16885":2,"16886":2,"16887":1,"16888":2,"16889":2,"16890":1,"16891":2,"16892":1,"16893":2,"16894":1,"16895":1,"16896":2,"16897":1,"16898":1,"16899":1,"16900":1,"16901":2,"16902":2,"16903":2,"16904":2,"16905":1,"16906":2,"16907":1,"16908":2,"16909":2,"16910":2,"16911":1,"16912":1,"16913":2,"16914":1,"16915":1,"16916":1,"16917":2,"16918":2,"16919":2,"16920":2,"16921":2,"16922":1,"16923":1,"16924":1,"16925":1,"16926":2,"16927":2,"16928":2,"16929":1,"16930":1,"16931":1,"16932":1,"16933":2,"16934":1,"16935":2,"16936":2,"16937":2,"16938":2,"16939":1,"16940":2,"16941":1,"16942":1,"16943":2,"16944":1,"16945":2,"16946":2,"16947":1,"16948":2,"16949":1,"16950":2,"16951":2,"16952":1,"16953":1,"16954":1,"16955":2,"16956":2,"16957":2,"16958":2,"16959":2,"16960":1,"16961":1,"16962":1,"16963":1,"16964":1,"16965":1,"16966":2,"16967":2,"16968":2,"16969":1,"16970":1,"16971":2,"16972":2,"16973":1,"16974":1,"16975":2,"16976":2,"16977":2,"16978":2,"16979":1,"16980":2,"16981":1,"16982":1,"16983":1,"16984":1,"16985":2,"16986":2,"16987":1,"16988":1,"16989":2,"16990":1,"16991":2,"16992":1,"16993":1,"16994":1,"16995":1,"16996":1,"16997":1,"16998":1,"16999":1,"17000":2,"17001":2,"17002":1,"17003":2,"17004":1,"17005":2,"17006":1,"17007":2,"17008":1,"17009":1,"17010":1,"17011":1,"17012":2,"17013":1,"17014":2,"17015":2,"17016":2,"17017":2,"17018":2,"17019":1,"17020":2,"17021":2,"17022":2,"17023":2,"17024":1,"17025":2,"17026":1,"17027":1,"17028":2,"17029":1,"17030":2,"17031":1,"17032":1,"17033":2,"17034":2,"17035":1,"17036":2,"17037":1,"17038":1,"17039":1,"17040":1,"17041":2,"17042":2,"17043":2,"17044":2,"17045":1,"17046":1,"17047":2,"17048":2,"17049":2,"17050":1,"17051":2,"17052":1,"17053":2,"17054":1,"17055":2,"17056":1,"17057":2,"17058":2,"17059":2,"17060":2,"17061":2,"17062":2,"17063":2,"17064":1,"17065":1,"17066":1,"17067":2,"17068":1,"17069":2,"17070":1,"17071":1,"17072":2,"17073":2,"17074":1,"17075":1,"17076":1,"17077":1,"17078":2,"17079":2,"17080":1,"17081":1,"17082":2,"17083":2,"17084":1,"17085":2,"17086":2,"17087":1,"17088":1,"17089":1,"17090":1,"17091":2,"17092":2,"17093":2,"17094":2,"17095":1,"17096":2,"17097":2,"17098":2,"17099":1,"17100":1,"17101":2,"17102":2,"17103":2,"17104":2,"17105":2,"17106":2,"17107":1,"17108":2,"17109":2,"17110":1,"17111":2,"17112":1,"17113":1,"17114":1,"17115":2,"17116":1,"17117":2,"17118":2,"17119":2,"17120":2,"17121":2,"17122":2,"17123":1,"17124":2,"17125":2,"17126":2,"17127":1,"17128":2,"17129":2,"17130":2,"17131":1,"17132":2,"17133":1,"17134":1,"17135":2,"17136":1,"17137":2,"17138":2,"17139":2,"17140":2,"17141":2,"17142":1,"17143":2,"17144":2,"17145":2,"17146":2,"17147":1,"17148":1,"17149":2,"17150":1,"17151":2,"17152":1,"17153":2,"17154":1,"17155":2,"17156":2,"17157":1,"17158":2,"17159":2,"17160":1,"17161":2,"17162":2,"17163":2,"17164":1,"17165":2,"17166":1,"17167":2,"17168":2,"17169":2,"17170":1,"17171":1,"17172":2,"17173":1,"17174":2,"17175":2,"17176":2,"17177":2,"17178":1,"17179":2,"17180":1,"17181":1,"17182":2,"17183":2,"17184":1,"17185":2,"17186":2,"17187":1,"17188":2,"17189":1,"17190":2,"17191":2,"17192":2,"17193":2,"17194":2,"17195":1,"17196":1,"17197":1,"17198":2,"17199":1,"17200":2,"17201":2,"17202":1,"17203":2,"17204":1,"17205":2,"17206":1,"17207":1,"17208":2,"17209":1,"17210":2,"17211":1,"17212":1,"17213":1,"17214":2,"17215":1,"17216":1,"17217":1,"17218":1,"17219":2,"17220":1,"17221":1,"17222":1,"17223":1,"17224":1,"17225":1,"17226":1,"17227":2,"17228":1,"17229":1,"17230":2,"17231":2,"17232":2,"17233":1,"17234":1,"17235":1,"17236":1,"17237":1,"17238":1,"17239":1,"17240":1,"17241":2,"17242":2,"17243":1,"17244":2,"17245":2,"17246":1,"17247":1,"17248":2,"17249":1,"17250":2,"17251":1,"17252":1,"17253":2,"17254":2,"17255":1,"17256":2,"17257":1,"17258":1,"17259":2,"17260":2,"17261":2,"17262":2,"17263":1,"17264":1,"17265":2,"17266":2,"17267":1,"17268":1,"17269":1,"17270":1,"17271":1,"17272":1,"17273":1,"17274":1,"17275":2,"17276":2,"17277":1,"17278":1,"17279":2,"17280":1,"17281":2,"17282":1,"17283":2,"17284":2,"17285":1,"17286":2,"17287":1,"17288":2,"17289":2,"17290":1,"17291":1,"17292":1,"17293":1,"17294":1,"17295":1,"17296":1,"17297":1,"17298":2,"17299":1,"17300":2,"17301":2,"17302":2,"17303":2,"17304":2,"17305":1,"17306":2,"17307":1,"17308":1,"17309":1,"17310":2,"17311":2,"17312":1,"17313":2,"17314":2,"17315":2,"17316":2,"17317":2,"17318":2,"17319":1,"17320":1,"17321":2,"17322":1,"17323":1,"17324":1,"17325":2,"17326":1,"17327":2,"17328":2,"17329":2,"17330":2,"17331":2,"17332":2,"17333":2,"17334":1,"17335":1,"17336":1,"17337":2,"17338":1,"17339":1,"17340":2,"17341":1,"17342":1,"17343":2,"17344":2,"17345":1,"17346":1,"17347":2,"17348":2,"17349":2,"17350":1,"17351":2,"17352":2,"17353":2,"17354":1,"17355":2,"17356":1,"17357":1,"17358":2,"17359":1,"17360":1,"17361":2,"17362":1,"17363":1,"17364":1,"17365":1,"17366":2,"17367":2,"17368":2,"17369":1,"17370":1,"17371":2,"17372":1,"17373":1,"17374":2,"17375":2,"17376":2,"17377":1,"17378":2,"17379":2,"17380":2,"17381":1,"17382":1,"17383":1,"17384":2,"17385":2,"17386":2,"17387":2,"17388":2,"17389":2,"17390":2,"17391":1,"17392":2,"17393":1,"17394":2,"17395":2,"17396":1,"17397":2,"17398":2,"17399":1,"17400":2,"17401":1,"17402":1,"17403":1,"17404":1,"17405":1,"17406":1,"17407":2,"17408":2,"17409":1,"17410":2,"17411":2,"17412":2,"17413":2,"17414":1,"17415":2,"17416":2,"17417":2,"17418":1,"17419":1,"17420":2,"17421":1,"17422":2,"17423":1,"17424":2,"17425":2,"17426":2,"17427":1,"17428":2,"17429":1,"17430":1,"17431":1,"17432":2,"17433":1,"17434":1,"17435":2,"17436":2,"17437":1,"17438":1,"17439":2,"17440":1,"17441":1,"17442":1,"17443":2,"17444":1,"17445":1,"17446":2,"17447":1,"17448":2,"17449":2,"17450":1,"17451":2,"17452":2,"17453":1,"17454":2,"17455":1,"17456":1,"17457":1,"17458":2,"17459":1,"17460":1,"17461":1,"17462":1,"17463":2,"17464":1,"17465":1,"17466":2,"17467":2,"17468":1,"17469":2,"17470":1,"17471":2,"17472":1,"17473":1,"17474":1,"17475":2,"17476":1,"17477":2,"17478":1,"17479":1,"17480":1,"17481":1,"17482":2,"17483":1,"17484":2,"17485":1,"17486":1,"17487":2,"17488":1,"17489":2,"17490":1,"17491":1,"17492":1,"17493":2,"17494":1,"17495":1,"17496":1,"17497":2,"17498":1,"17499":2,"17500":1,"17501":2,"17502":1,"17503":1,"17504":2,"17505":1,"17506":1,"17507":2,"17508":1,"17509":2,"17510":2,"17511":1,"17512":1,"17513":2,"17514":1,"17515":1,"17516":2,"17517":1,"17518":1,"17519":1,"17520":1,"17521":1,"17522":2,"17523":2,"17524":1,"17525":2,"17526":1,"17527":2,"17528":1,"17529":1,"17530":1,"17531":2,"17532":1,"17533":1,"17534":1,"17535":1,"17536":1,"17537":2,"17538":2,"17539":2,"17540":1,"17541":1,"17542":2,"17543":1,"17544":1,"17545":1,"17546":1,"17547":2,"17548":2,"17549":1,"17550":1,"17551":2,"17552":2,"17553":1,"17554":1,"17555":1,"17556":2,"17557":2,"17558":2,"17559":2,"17560":1,"17561":1,"17562":2,"17563":1,"17564":2,"17565":2,"17566":1,"17567":2,"17568":1,"17569":2,"17570":1,"17571":2,"17572":1,"17573":1,"17574":2,"17575":1,"17576":1,"17577":2,"17578":2,"17579":1,"17580":2,"17581":1,"17582":1,"17583":1,"17584":2,"17585":2,"17586":1,"17587":2,"17588":2,"17589":1,"17590":1,"17591":1,"17592":1,"17593":1,"17594":2,"17595":2,"17596":2,"17597":2,"17598":1,"17599":2,"17600":1,"17601":2,"17602":1,"17603":1,"17604":1,"17605":1,"17606":1,"17607":1,"17608":1,"17609":2,"17610":1,"17611":2,"17612":2,"17613":2,"17614":2,"17615":1,"17616":2,"17617":1,"17618":1,"17619":1,"17620":1,"17621":1,"17622":1,"17623":2,"17624":1,"17625":1,"17626":2,"17627":1,"17628":2,"17629":1,"17630":1,"17631":1,"17632":2,"17633":1,"17634":1,"17635":1,"17636":1,"17637":1,"17638":2,"17639":2,"17640":1,"17641":2,"17642":2,"17643":2,"17644":2,"17645":1,"17646":2,"17647":2,"17648":2,"17649":1,"17650":1,"17651":2,"17652":1,"17653":2,"17654":1,"17655":1,"17656":2,"17657":2,"17658":1,"17659":2,"17660":2,"17661":2,"17662":1,"17663":1,"17664":1,"17665":2,"17666":2,"17667":2,"17668":1,"17669":1,"17670":2,"17671":2,"17672":2,"17673":1,"17674":1,"17675":1,"17676":1,"17677":1,"17678":2,"17679":1,"17680":2,"17681":1,"17682":1,"17683":1,"17684":2,"17685":1,"17686":1,"17687":1,"17688":1,"17689":1,"17690":1,"17691":2,"17692":1,"17693":1,"17694":1,"17695":2,"17696":2,"17697":1,"17698":1,"17699":2,"17700":1,"17701":2,"17702":1,"17703":1,"17704":2,"17705":1,"17706":1,"17707":2,"17708":1,"17709":2,"17710":2,"17711":2,"17712":2,"17713":2,"17714":1,"17715":2,"17716":2,"17717":1,"17718":1,"17719":1,"17720":2,"17721":1,"17722":2,"17723":2,"17724":2,"17725":1,"17726":2,"17727":1,"17728":1,"17729":2,"17730":1,"17731":2,"17732":1,"17733":2,"17734":2,"17735":2,"17736":1,"17737":1,"17738":1,"17739":2,"17740":1,"17741":1,"17742":2,"17743":2,"17744":1,"17745":1,"17746":1,"17747":2,"17748":1,"17749":2,"17750":1,"17751":2,"17752":2,"17753":1,"17754":2,"17755":2,"17756":2,"17757":1,"17758":2,"17759":2,"17760":1,"17761":1,"17762":2,"17763":1,"17764":1,"17765":1,"17766":1,"17767":2,"17768":1,"17769":1,"17770":2,"17771":2,"17772":1,"17773":2,"17774":1,"17775":2,"17776":1,"17777":2,"17778":2,"17779":1,"17780":2,"17781":2,"17782":1,"17783":1,"17784":1,"17785":2,"17786":2,"17787":1,"17788":1,"17789":1,"17790":1,"17791":2,"17792":2,"17793":2,"17794":1,"17795":2,"17796":2,"17797":1,"17798":2,"17799":1,"17800":2,"17801":1,"17802":2,"17803":1,"17804":1,"17805":2,"17806":2,"17807":2,"17808":2,"17809":1,"17810":2,"17811":2,"17812":1,"17813":2,"17814":2,"17815":1,"17816":1,"17817":1,"17818":1,"17819":1,"17820":2,"17821":2,"17822":2,"17823":1,"17824":1,"17825":2,"17826":1,"17827":2,"17828":2,"17829":2,"17830":2,"17831":2,"17832":2,"17833":1,"17834":2,"17835":2,"17836":1,"17837":2,"17838":1,"17839":1,"17840":1,"17841":1,"17842":2,"17843":2,"17844":2,"17845":2,"17846":2,"17847":2,"17848":1,"17849":2,"17850":2,"17851":1,"17852":1,"17853":2,"17854":2,"17855":2,"17856":2,"17857":1,"17858":2,"17859":2,"17860":2,"17861":2,"17862":1,"17863":1,"17864":1,"17865":2,"17866":1,"17867":2,"17868":1,"17869":1,"17870":2,"17871":1,"17872":2,"17873":2,"17874":1,"17875":2,"17876":2,"17877":2,"17878":1,"17879":2,"17880":2,"17881":1,"17882":1,"17883":1,"17884":1,"17885":2,"17886":1,"17887":1,"17888":1,"17889":2,"17890":1,"17891":1,"17892":2,"17893":2,"17894":1,"17895":2,"17896":2,"17897":2,"17898":2,"17899":1,"17900":1,"17901":2,"17902":2,"17903":1,"17904":1,"17905":2,"17906":1,"17907":1,"17908":2,"17909":1,"17910":2,"17911":2,"17912":1,"17913":2,"17914":1,"17915":2,"17916":2,"17917":2,"17918":1,"17919":1,"17920":2,"17921":1,"17922":2,"17923":1,"17924":2,"17925":2,"17926":2,"17927":2,"17928":2,"17929":1,"17930":1,"17931":1,"17932":2,"17933":1,"17934":1,"17935":2,"17936":1,"17937":2,"17938":2,"17939":1,"17940":1,"17941":2,"17942":1,"17943":2,"17944":2,"17945":1,"17946":2,"17947":1,"17948":2,"17949":2,"17950":1,"17951":2,"17952":2,"17953":2,"17954":1,"17955":1,"17956":2,"17957":1,"17958":1,"17959":2,"17960":2,"17961":1,"17962":1,"17963":2,"17964":2,"17965":1,"17966":2,"17967":2,"17968":1,"17969":1,"17970":2,"17971":1,"17972":1,"17973":1,"17974":2,"17975":1,"17976":2,"17977":1,"17978":1,"17979":1,"17980":2,"17981":2,"17982":2,"17983":2,"17984":1,"17985":2,"17986":1,"17987":1,"17988":1,"17989":2,"17990":2,"17991":2,"17992":2,"17993":2,"17994":1,"17995":2,"17996":2,"17997":1,"17998":1,"17999":1,"18000":2,"18001":1,"18002":2,"18003":1,"18004":2,"18005":2,"18006":1,"18007":1,"18008":2,"18009":1,"18010":1,"18011":1,"18012":1,"18013":2,"18014":2,"18015":2,"18016":1,"18017":1,"18018":1,"18019":1,"18020":2,"18021":2,"18022":1,"18023":2,"18024":2,"18025":1,"18026":2,"18027":2,"18028":2,"18029":2,"18030":1,"18031":2,"18032":1,"18033":1,"18034":1,"18035":1,"18036":2,"18037":1,"18038":2,"18039":1,"18040":2,"18041":1,"18042":1,"18043":1,"18044":1,"18045":1,"18046":1,"18047":1,"18048":2,"18049":2,"18050":1,"18051":2,"18052":1,"18053":1,"18054":1,"18055":2,"18056":2,"18057":2,"18058":2,"18059":1,"18060":2,"18061":1,"18062":2,"18063":1,"18064":2,"18065":2,"18066":2,"18067":1,"18068":2,"18069":2,"18070":2,"18071":1,"18072":2,"18073":2,"18074":2,"18075":2,"18076":2,"18077":2,"18078":2,"18079":1,"18080":1,"18081":2,"18082":2,"18083":2,"18084":2,"18085":1,"18086":1,"18087":2,"18088":2,"18089":1,"18090":1,"18091":1,"18092":1,"18093":2,"18094":2,"18095":2,"18096":2,"18097":1,"18098":2,"18099":1,"18100":2,"18101":1,"18102":1,"18103":1,"18104":1,"18105":2,"18106":1,"18107":2,"18108":2,"18109":2,"18110":1,"18111":2,"18112":1,"18113":2,"18114":1,"18115":1,"18116":2,"18117":2,"18118":2,"18119":1,"18120":1,"18121":1,"18122":1,"18123":1,"18124":2,"18125":1,"18126":2,"18127":2,"18128":2,"18129":2,"18130":1,"18131":1,"18132":1,"18133":1,"18134":2,"18135":2,"18136":2,"18137":2,"18138":1,"18139":1,"18140":1,"18141":1,"18142":2,"18143":1,"18144":2,"18145":2,"18146":1,"18147":1,"18148":2,"18149":1,"18150":2,"18151":1,"18152":1,"18153":1,"18154":1,"18155":2,"18156":2,"18157":1,"18158":2,"18159":1,"18160":2,"18161":2,"18162":2,"18163":2,"18164":1,"18165":2,"18166":2,"18167":2,"18168":1,"18169":1,"18170":2,"18171":2,"18172":2,"18173":2,"18174":1,"18175":1,"18176":2,"18177":1,"18178":2,"18179":2,"18180":2,"18181":2,"18182":1,"18183":2,"18184":1,"18185":1,"18186":1,"18187":2,"18188":1,"18189":2,"18190":2,"18191":1,"18192":2,"18193":1,"18194":1,"18195":2,"18196":1,"18197":1,"18198":1,"18199":1,"18200":1,"18201":1,"18202":2,"18203":1,"18204":2,"18205":1,"18206":1,"18207":1,"18208":1,"18209":1,"18210":2,"18211":2,"18212":1,"18213":1,"18214":2,"18215":2,"18216":2,"18217":2,"18218":1,"18219":2,"18220":1,"18221":1,"18222":1,"18223":2,"18224":1,"18225":2,"18226":1,"18227":1,"18228":1,"18229":2,"18230":2,"18231":1,"18232":2,"18233":1,"18234":2,"18235":2,"18236":1,"18237":2,"18238":1,"18239":1,"18240":1,"18241":1,"18242":2,"18243":1,"18244":2,"18245":1,"18246":2,"18247":1,"18248":1,"18249":2,"18250":1,"18251":1,"18252":2,"18253":1,"18254":2,"18255":1,"18256":2,"18257":1,"18258":2,"18259":1,"18260":2,"18261":2,"18262":2,"18263":1,"18264":1,"18265":2,"18266":2,"18267":1,"18268":1,"18269":1,"18270":1,"18271":1,"18272":2,"18273":1,"18274":1,"18275":1,"18276":1,"18277":1,"18278":1,"18279":2,"18280":1,"18281":1,"18282":1,"18283":1,"18284":2,"18285":2,"18286":1,"18287":1,"18288":1,"18289":1,"18290":2,"18291":1,"18292":2,"18293":1,"18294":1,"18295":1,"18296":1,"18297":2,"18298":2,"18299":2,"18300":2,"18301":2,"18302":2,"18303":1,"18304":1,"18305":1,"18306":2,"18307":2,"18308":2,"18309":1,"18310":1,"18311":1,"18312":1,"18313":2,"18314":1,"18315":2,"18316":1,"18317":2,"18318":1,"18319":2,"18320":1,"18321":1,"18322":2,"18323":2,"18324":1,"18325":1,"18326":2,"18327":1,"18328":2,"18329":1,"18330":1,"18331":2,"18332":1,"18333":2,"18334":1,"18335":2,"18336":1,"18337":1,"18338":2,"18339":2,"18340":2,"18341":1,"18342":1,"18343":2,"18344":2,"18345":1,"18346":2,"18347":1,"18348":1,"18349":2,"18350":1,"18351":1,"18352":1,"18353":1,"18354":2,"18355":1,"18356":2,"18357":1,"18358":2,"18359":1,"18360":2,"18361":2,"18362":2,"18363":2,"18364":1,"18365":2,"18366":2,"18367":1,"18368":1,"18369":2,"18370":1,"18371":1,"18372":2,"18373":1,"18374":1,"18375":1,"18376":1,"18377":1,"18378":1,"18379":2,"18380":2,"18381":2,"18382":2,"18383":2,"18384":1,"18385":1,"18386":2,"18387":2,"18388":2,"18389":2,"18390":1,"18391":2,"18392":1,"18393":2,"18394":1,"18395":1,"18396":1,"18397":2,"18398":2,"18399":2,"18400":1,"18401":1,"18402":2,"18403":2,"18404":1,"18405":2,"18406":1,"18407":2,"18408":1,"18409":1,"18410":2,"18411":1,"18412":2,"18413":1,"18414":2,"18415":1,"18416":2,"18417":1,"18418":2,"18419":1,"18420":2,"18421":1,"18422":2,"18423":1,"18424":2,"18425":1,"18426":1,"18427":1,"18428":2,"18429":2,"18430":1,"18431":1,"18432":1,"18433":2,"18434":1,"18435":2,"18436":1,"18437":2,"18438":1,"18439":2,"18440":1,"18441":1,"18442":2,"18443":1,"18444":1,"18445":1,"18446":1,"18447":1,"18448":2,"18449":2,"18450":1,"18451":1,"18452":2,"18453":2,"18454":1,"18455":1,"18456":2,"18457":2,"18458":1,"18459":1,"18460":2,"18461":1,"18462":2,"18463":2,"18464":1,"18465":2,"18466":2,"18467":1,"18468":2,"18469":1,"18470":2,"18471":2,"18472":2,"18473":1,"18474":2,"18475":1,"18476":2,"18477":1,"18478":1,"18479":2,"18480":2,"18481":1,"18482":1,"18483":1,"18484":2,"18485":2,"18486":2,"18487":1,"18488":2,"18489":1,"18490":1,"18491":2,"18492":1,"18493":1,"18494":2,"18495":1,"18496":2,"18497":1,"18498":1,"18499":2,"18500":2,"18501":1,"18502":1,"18503":2,"18504":2,"18505":1,"18506":2,"18507":1,"18508":1,"18509":2,"18510":2,"18511":1,"18512":1,"18513":2,"18514":1,"18515":1,"18516":2,"18517":1,"18518":2,"18519":2,"18520":1,"18521":2,"18522":1,"18523":1,"18524":1,"18525":2,"18526":2,"18527":2,"18528":2,"18529":2,"18530":2,"18531":1,"18532":2,"18533":1,"18534":2,"18535":1,"18536":2,"18537":2,"18538":2,"18539":1,"18540":2,"18541":1,"18542":2,"18543":1,"18544":1,"18545":1,"18546":2,"18547":2,"18548":2,"18549":2,"18550":2,"18551":1,"18552":2,"18553":2,"18554":2,"18555":2,"18556":2,"18557":2,"18558":1,"18559":1,"18560":2,"18561":2,"18562":1,"18563":1,"18564":1,"18565":1,"18566":1,"18567":2,"18568":1,"18569":1,"18570":1,"18571":2,"18572":2,"18573":2,"18574":1,"18575":1,"18576":1,"18577":1,"18578":1,"18579":1,"18580":1,"18581":2,"18582":2,"18583":2,"18584":1,"18585":1,"18586":1,"18587":2,"18588":1,"18589":2,"18590":1,"18591":1,"18592":2,"18593":1,"18594":2,"18595":1,"18596":1,"18597":1,"18598":2,"18599":1,"18600":1,"18601":1,"18602":1,"18603":2,"18604":1,"18605":2,"18606":1,"18607":2,"18608":2,"18609":2,"18610":2,"18611":2,"18612":2,"18613":1,"18614":2,"18615":1,"18616":2,"18617":2,"18618":1,"18619":1,"18620":2,"18621":2,"18622":2,"18623":2,"18624":1,"18625":1,"18626":2,"18627":1,"18628":1,"18629":1,"18630":2,"18631":2,"18632":2,"18633":2,"18634":2,"18635":2,"18636":2,"18637":2,"18638":1,"18639":2,"18640":1,"18641":2,"18642":2,"18643":1,"18644":1,"18645":2,"18646":1,"18647":2,"18648":2,"18649":1,"18650":2,"18651":1,"18652":1,"18653":2,"18654":1,"18655":2,"18656":1,"18657":2,"18658":1,"18659":2,"18660":1,"18661":1,"18662":1,"18663":1,"18664":1,"18665":1,"18666":2,"18667":2,"18668":1,"18669":2,"18670":2,"18671":2,"18672":1,"18673":2,"18674":2,"18675":1,"18676":1,"18677":1,"18678":2,"18679":1,"18680":2,"18681":2,"18682":1,"18683":1,"18684":1,"18685":2,"18686":2,"18687":2,"18688":2,"18689":2,"18690":2,"18691":2,"18692":1,"18693":1,"18694":2,"18695":2,"18696":1,"18697":1,"18698":1,"18699":1,"18700":1,"18701":1,"18702":1,"18703":2,"18704":2,"18705":1,"18706":1,"18707":1,"18708":2,"18709":2,"18710":2,"18711":2,"18712":2,"18713":2,"18714":1,"18715":1,"18716":1,"18717":2,"18718":2,"18719":2,"18720":2,"18721":1,"18722":1,"18723":1,"18724":1,"18725":1,"18726":2,"18727":1,"18728":1,"18729":1,"18730":1,"18731":2,"18732":1,"18733":2,"18734":2,"18735":2,"18736":1,"18737":1,"18738":2,"18739":1,"18740":1,"18741":2,"18742":1,"18743":2,"18744":1,"18745":2,"18746":1,"18747":1,"18748":2,"18749":2,"18750":2,"18751":2,"18752":2,"18753":1,"18754":1,"18755":1,"18756":1,"18757":2,"18758":1,"18759":1,"18760":2,"18761":1,"18762":2,"18763":1,"18764":2,"18765":1,"18766":1,"18767":1,"18768":1,"18769":1,"18770":2,"18771":2,"18772":2,"18773":2,"18774":2,"18775":2,"18776":2,"18777":1,"18778":1,"18779":2,"18780":1,"18781":1,"18782":2,"18783":2,"18784":2,"18785":2,"18786":2,"18787":1,"18788":1,"18789":1,"18790":2,"18791":2,"18792":1,"18793":2,"18794":1,"18795":1,"18796":2,"18797":2,"18798":1,"18799":2,"18800":1,"18801":1,"18802":2,"18803":2,"18804":2,"18805":1,"18806":2,"18807":2,"18808":2,"18809":1,"18810":1,"18811":2,"18812":2,"18813":1,"18814":2,"18815":1,"18816":2,"18817":1,"18818":1,"18819":1,"18820":1,"18821":1,"18822":2,"18823":2,"18824":2,"18825":1,"18826":2,"18827":2,"18828":2,"18829":1,"18830":1,"18831":1,"18832":2,"18833":1,"18834":1,"18835":2,"18836":1,"18837":1,"18838":1,"18839":1,"18840":2,"18841":2,"18842":1,"18843":1,"18844":2,"18845":2,"18846":1,"18847":1,"18848":1,"18849":1,"18850":1,"18851":2,"18852":1,"18853":2,"18854":2,"18855":2,"18856":1,"18857":2,"18858":2,"18859":1,"18860":1,"18861":1,"18862":1,"18863":2,"18864":1,"18865":1,"18866":1,"18867":1,"18868":1,"18869":2,"18870":1,"18871":1,"18872":1,"18873":1,"18874":2,"18875":2,"18876":2,"18877":2,"18878":1,"18879":1,"18880":2,"18881":1,"18882":1,"18883":2,"18884":1,"18885":2,"18886":2,"18887":1,"18888":2,"18889":2,"18890":2,"18891":1,"18892":1,"18893":2,"18894":2,"18895":2,"18896":2,"18897":2,"18898":1,"18899":2,"18900":2,"18901":1,"18902":1,"18903":2,"18904":2,"18905":2,"18906":2,"18907":1,"18908":1,"18909":2,"18910":1,"18911":1,"18912":1,"18913":2,"18914":1,"18915":1,"18916":2,"18917":2,"18918":2,"18919":1,"18920":2,"18921":2,"18922":2,"18923":2,"18924":2,"18925":2,"18926":2,"18927":1,"18928":2,"18929":2,"18930":2,"18931":1,"18932":2,"18933":2,"18934":2,"18935":2,"18936":1,"18937":2,"18938":1,"18939":2,"18940":2,"18941":2,"18942":2,"18943":2,"18944":2,"18945":2,"18946":2,"18947":2,"18948":2,"18949":1,"18950":1,"18951":1,"18952":2,"18953":1,"18954":1,"18955":1,"18956":1,"18957":2,"18958":1,"18959":2,"18960":1,"18961":1,"18962":2,"18963":2,"18964":2,"18965":1,"18966":2,"18967":2,"18968":1,"18969":1,"18970":1,"18971":1,"18972":1,"18973":1,"18974":1,"18975":1,"18976":1,"18977":1,"18978":2,"18979":2,"18980":1,"18981":2,"18982":1,"18983":2,"18984":2,"18985":2,"18986":2,"18987":1,"18988":1,"18989":2,"18990":2,"18991":1,"18992":1,"18993":1,"18994":2,"18995":1,"18996":1,"18997":1,"18998":2,"18999":2,"19000":2,"19001":2,"19002":2,"19003":1,"19004":2,"19005":1,"19006":2,"19007":2,"19008":1,"19009":1,"19010":2,"19011":1,"19012":2,"19013":1,"19014":2,"19015":1,"19016":1,"19017":2,"19018":2,"19019":2,"19020":1,"19021":2,"19022":1,"19023":1,"19024":1,"19025":2,"19026":2,"19027":2,"19028":1,"19029":2,"19030":2,"19031":2,"19032":1,"19033":1,"19034":2,"19035":1,"19036":2,"19037":2,"19038":2,"19039":1,"19040":1,"19041":2,"19042":1,"19043":1,"19044":1,"19045":1,"19046":2,"19047":1,"19048":2,"19049":2,"19050":2,"19051":2,"19052":2,"19053":1,"19054":2,"19055":1,"19056":1,"19057":1,"19058":1,"19059":2,"19060":1,"19061":1,"19062":2,"19063":1,"19064":2,"19065":2,"19066":2,"19067":1,"19068":1,"19069":1,"19070":1,"19071":1,"19072":2,"19073":1,"19074":2,"19075":1,"19076":1,"19077":2,"19078":2,"19079":1,"19080":1,"19081":1,"19082":1,"19083":1,"19084":2,"19085":1,"19086":2,"19087":2,"19088":1,"19089":2,"19090":1,"19091":2,"19092":1,"19093":1,"19094":1,"19095":2,"19096":1,"19097":2,"19098":2,"19099":2,"19100":2,"19101":1,"19102":1,"19103":1,"19104":1,"19105":1,"19106":1,"19107":2,"19108":2,"19109":1,"19110":1,"19111":2,"19112":1,"19113":2,"19114":1,"19115":1,"19116":2,"19117":1,"19118":2,"19119":1,"19120":2,"19121":2,"19122":2,"19123":2,"19124":2,"19125":1,"19126":2,"19127":2,"19128":2,"19129":1,"19130":2,"19131":1,"19132":1,"19133":1,"19134":1,"19135":2,"19136":1,"19137":1,"19138":2,"19139":1,"19140":1,"19141":1,"19142":2,"19143":1,"19144":1,"19145":2,"19146":2,"19147":2,"19148":2,"19149":1,"19150":2,"19151":1,"19152":2,"19153":2,"19154":1,"19155":2,"19156":2,"19157":1,"19158":1,"19159":2,"19160":2,"19161":1,"19162":1,"19163":1,"19164":2,"19165":1,"19166":1,"19167":2,"19168":2,"19169":2,"19170":2,"19171":1,"19172":2,"19173":2,"19174":1,"19175":2,"19176":2,"19177":1,"19178":1,"19179":1,"19180":1,"19181":2,"19182":1,"19183":2,"19184":1,"19185":1,"19186":2,"19187":2,"19188":1,"19189":1,"19190":2,"19191":2,"19192":2,"19193":2,"19194":2,"19195":2,"19196":1,"19197":2,"19198":2,"19199":2,"19200":2,"19201":2,"19202":1,"19203":2,"19204":2,"19205":2,"19206":1,"19207":1,"19208":1,"19209":1,"19210":2,"19211":2,"19212":2,"19213":1,"19214":1,"19215":1,"19216":1,"19217":1,"19218":2,"19219":2,"19220":2,"19221":1,"19222":2,"19223":2,"19224":2,"19225":1,"19226":2,"19227":2,"19228":2,"19229":2,"19230":2,"19231":2,"19232":1,"19233":2,"19234":1,"19235":2,"19236":1,"19237":2,"19238":2,"19239":1,"19240":2,"19241":1,"19242":1,"19243":2,"19244":1,"19245":2,"19246":1,"19247":1,"19248":1,"19249":2,"19250":2,"19251":1,"19252":2,"19253":1,"19254":1,"19255":1,"19256":2,"19257":1,"19258":1,"19259":2,"19260":1,"19261":1,"19262":1,"19263":2,"19264":2,"19265":2,"19266":1,"19267":2,"19268":1,"19269":1,"19270":2,"19271":1,"19272":2,"19273":1,"19274":2,"19275":2,"19276":2,"19277":1,"19278":1,"19279":1,"19280":2,"19281":2,"19282":2,"19283":2,"19284":2,"19285":2,"19286":1,"19287":2,"19288":1,"19289":2,"19290":1,"19291":2,"19292":1,"19293":2,"19294":1,"19295":2,"19296":2,"19297":2,"19298":2,"19299":2,"19300":2,"19301":2,"19302":2,"19303":2,"19304":1,"19305":1,"19306":2,"19307":2,"19308":1,"19309":2,"19310":1,"19311":1,"19312":2,"19313":1,"19314":2,"19315":1,"19316":1,"19317":1,"19318":2,"19319":2,"19320":1,"19321":2,"19322":1,"19323":2,"19324":2,"19325":2,"19326":1,"19327":1,"19328":1,"19329":1,"19330":2,"19331":1,"19332":1,"19333":1,"19334":1,"19335":1,"19336":1,"19337":2,"19338":2,"19339":1,"19340":1,"19341":2,"19342":2,"19343":1,"19344":1,"19345":1,"19346":2,"19347":2,"19348":1,"19349":1,"19350":1,"19351":2,"19352":1,"19353":2,"19354":1,"19355":2,"19356":1,"19357":2,"19358":2,"19359":2,"19360":1,"19361":2,"19362":1,"19363":2,"19364":1,"19365":1,"19366":1,"19367":1,"19368":2,"19369":2,"19370":2,"19371":1,"19372":2,"19373":2,"19374":2,"19375":1,"19376":1,"19377":2,"19378":2,"19379":2,"19380":2,"19381":1,"19382":2,"19383":1,"19384":1,"19385":2,"19386":2,"19387":2,"19388":2,"19389":1,"19390":2,"19391":2,"19392":2,"19393":1,"19394":1,"19395":2,"19396":1,"19397":1,"19398":1,"19399":1,"19400":2,"19401":2,"19402":1,"19403":2,"19404":2,"19405":1,"19406":2,"19407":1,"19408":2,"19409":1,"19410":2,"19411":1,"19412":2,"19413":2,"19414":2,"19415":1,"19416":1,"19417":1,"19418":1,"19419":2,"19420":2,"19421":2,"19422":2,"19423":1,"19424":2,"19425":1,"19426":1,"19427":1,"19428":2,"19429":2,"19430":1,"19431":1,"19432":1,"19433":2,"19434":2,"19435":1,"19436":1,"19437":1,"19438":2,"19439":1,"19440":1,"19441":2,"19442":2,"19443":2,"19444":1,"19445":2,"19446":1,"19447":2,"19448":1,"19449":2,"19450":1,"19451":1,"19452":2,"19453":2,"19454":1,"19455":2,"19456":1,"19457":2,"19458":2,"19459":1,"19460":1,"19461":1,"19462":1,"19463":2,"19464":1,"19465":2,"19466":2,"19467":1,"19468":1,"19469":1,"19470":2,"19471":2,"19472":2,"19473":2,"19474":1,"19475":1,"19476":2,"19477":1,"19478":1,"19479":1,"19480":2,"19481":2,"19482":2,"19483":1,"19484":2,"19485":1,"19486":1,"19487":1,"19488":2,"19489":1,"19490":2,"19491":1,"19492":1,"19493":1,"19494":1,"19495":1,"19496":2,"19497":2,"19498":1,"19499":1,"19500":1,"19501":2,"19502":2,"19503":2,"19504":1,"19505":2,"19506":1,"19507":1,"19508":1,"19509":2,"19510":2,"19511":1,"19512":1,"19513":1,"19514":2,"19515":1,"19516":1,"19517":1,"19518":1,"19519":2,"19520":1,"19521":2,"19522":1,"19523":1,"19524":1,"19525":2,"19526":2,"19527":1,"19528":1,"19529":1,"19530":2,"19531":1,"19532":2,"19533":1,"19534":1,"19535":1,"19536":1,"19537":2,"19538":2,"19539":1,"19540":1,"19541":1,"19542":2,"19543":2,"19544":2,"19545":2,"19546":1,"19547":1,"19548":2,"19549":1,"19550":1,"19551":2,"19552":2,"19553":1,"19554":1,"19555":1,"19556":1,"19557":2,"19558":1,"19559":1,"19560":2,"19561":2,"19562":1,"19563":2,"19564":2,"19565":1,"19566":2,"19567":1,"19568":2,"19569":1,"19570":1,"19571":2,"19572":2,"19573":2,"19574":1,"19575":1,"19576":1,"19577":1,"19578":1,"19579":1,"19580":1,"19581":1,"19582":1,"19583":2,"19584":1,"19585":1,"19586":1,"19587":2,"19588":1,"19589":1,"19590":1,"19591":1,"19592":2,"19593":2,"19594":1,"19595":2,"19596":1,"19597":1,"19598":2,"19599":1,"19600":2,"19601":2,"19602":1,"19603":2,"19604":1,"19605":1,"19606":1,"19607":2,"19608":2,"19609":2,"19610":1,"19611":1,"19612":2,"19613":2,"19614":2,"19615":2,"19616":1,"19617":2,"19618":2,"19619":2,"19620":1,"19621":2,"19622":2,"19623":1,"19624":1,"19625":1,"19626":2,"19627":2,"19628":2,"19629":2,"19630":2,"19631":1,"19632":2,"19633":2,"19634":2,"19635":1,"19636":1,"19637":2,"19638":2,"19639":1,"19640":1,"19641":1,"19642":1,"19643":1,"19644":1,"19645":1,"19646":1,"19647":1,"19648":2,"19649":1,"19650":1,"19651":1,"19652":1,"19653":2,"19654":2,"19655":1,"19656":2,"19657":2,"19658":2,"19659":2,"19660":1,"19661":2,"19662":1,"19663":1,"19664":2,"19665":2,"19666":2,"19667":1,"19668":2,"19669":1,"19670":1,"19671":2,"19672":2,"19673":2,"19674":2,"19675":2,"19676":1,"19677":2,"19678":2,"19679":2,"19680":1,"19681":2,"19682":1,"19683":2,"19684":1,"19685":1,"19686":2,"19687":2,"19688":1,"19689":2,"19690":1,"19691":2,"19692":1,"19693":1,"19694":2,"19695":2,"19696":2,"19697":2,"19698":1,"19699":2,"19700":2,"19701":2,"19702":1,"19703":1,"19704":1,"19705":2,"19706":1,"19707":1,"19708":2,"19709":2,"19710":1,"19711":2,"19712":2,"19713":2,"19714":2,"19715":2,"19716":1,"19717":1,"19718":1,"19719":2,"19720":2,"19721":2,"19722":1,"19723":1,"19724":1,"19725":2,"19726":2,"19727":1,"19728":1,"19729":2,"19730":1,"19731":1,"19732":2,"19733":1,"19734":1,"19735":2,"19736":2,"19737":1,"19738":1,"19739":2,"19740":2,"19741":2,"19742":2,"19743":1,"19744":1,"19745":2,"19746":1,"19747":1,"19748":2,"19749":1,"19750":1,"19751":1,"19752":2,"19753":1,"19754":2,"19755":2,"19756":1,"19757":2,"19758":1,"19759":1,"19760":2,"19761":2,"19762":1,"19763":2,"19764":1,"19765":1,"19766":1,"19767":1,"19768":2,"19769":2,"19770":1,"19771":1,"19772":1,"19773":1,"19774":1,"19775":2,"19776":2,"19777":2,"19778":1,"19779":2,"19780":1,"19781":2,"19782":2,"19783":2,"19784":1,"19785":2,"19786":1,"19787":2,"19788":1,"19789":2,"19790":1,"19791":2,"19792":1,"19793":2,"19794":2,"19795":1,"19796":2,"19797":2,"19798":2,"19799":1,"19800":2,"19801":1,"19802":1,"19803":2,"19804":1,"19805":2,"19806":2,"19807":1,"19808":1,"19809":2,"19810":2,"19811":2,"19812":1,"19813":2,"19814":2,"19815":2,"19816":1,"19817":1,"19818":1,"19819":1,"19820":2,"19821":1,"19822":1,"19823":1,"19824":1,"19825":1,"19826":1,"19827":2,"19828":2,"19829":1,"19830":1,"19831":1,"19832":1,"19833":2,"19834":2,"19835":1,"19836":2,"19837":1,"19838":2,"19839":2,"19840":1,"19841":2,"19842":2,"19843":1,"19844":1,"19845":1,"19846":1,"19847":2,"19848":1,"19849":1,"19850":1,"19851":2,"19852":1,"19853":2,"19854":1,"19855":1,"19856":1,"19857":2,"19858":1,"19859":1,"19860":1,"19861":2,"19862":1,"19863":1,"19864":1,"19865":2,"19866":2,"19867":2,"19868":2,"19869":2,"19870":1,"19871":2,"19872":2,"19873":1,"19874":1,"19875":1,"19876":2,"19877":1,"19878":2,"19879":1,"19880":2,"19881":1,"19882":1,"19883":1,"19884":2,"19885":2,"19886":2,"19887":2,"19888":1,"19889":2,"19890":2,"19891":2,"19892":2,"19893":1,"19894":2,"19895":1,"19896":1,"19897":1,"19898":1,"19899":1,"19900":2,"19901":1,"19902":2,"19903":2,"19904":2,"19905":1,"19906":2,"19907":2,"19908":2,"19909":1,"19910":2,"19911":2,"19912":2,"19913":1,"19914":2,"19915":1,"19916":2,"19917":2,"19918":1,"19919":2,"19920":2,"19921":1,"19922":1,"19923":1,"19924":1,"19925":2,"19926":1,"19927":1,"19928":2,"19929":2,"19930":1,"19931":1,"19932":1,"19933":2,"19934":2,"19935":2,"19936":2,"19937":1,"19938":1,"19939":2,"19940":1,"19941":2,"19942":1,"19943":1,"19944":2,"19945":1,"19946":1,"19947":2,"19948":2,"19949":2,"19950":1,"19951":1,"19952":2,"19953":1,"19954":1,"19955":1,"19956":2,"19957":1,"19958":2,"19959":2,"19960":1,"19961":1,"19962":2,"19963":2,"19964":1,"19965":2,"19966":1,"19967":1,"19968":2,"19969":1,"19970":2,"19971":1,"19972":1,"19973":2,"19974":2,"19975":1,"19976":1,"19977":1,"19978":1,"19979":1,"19980":2,"19981":1,"19982":1,"19983":1,"19984":1,"19985":2,"19986":1,"19987":1,"19988":2,"19989":1,"19990":1,"19991":2,"19992":1,"19993":2,"19994":2,"19995":1,"19996":1,"19997":1,"19998":2,"19999":2,"20000":1,"20001":2,"20002":1,"20003":2,"20004":2,"20005":1,"20006":1,"20007":2,"20008":1,"20009":2,"20010":1,"20011":2,"20012":1,"20013":1,"20014":2,"20015":2,"20016":2,"20017":1,"20018":1,"20019":1,"20020":2,"20021":1,"20022":2,"20023":1,"20024":1,"20025":2,"20026":2,"20027":2,"20028":2,"20029":2,"20030":2,"20031":2,"20032":2,"20033":1,"20034":2,"20035":2,"20036":1,"20037":2,"20038":2,"20039":2,"20040":1,"20041":2,"20042":2,"20043":2,"20044":1,"20045":1,"20046":2,"20047":1,"20048":1,"20049":2,"20050":1,"20051":2,"20052":1,"20053":1,"20054":1,"20055":1,"20056":1,"20057":1,"20058":2,"20059":1,"20060":2,"20061":2,"20062":1,"20063":2,"20064":1,"20065":2,"20066":1,"20067":2,"20068":2,"20069":2,"20070":2,"20071":1,"20072":1,"20073":2,"20074":1,"20075":1,"20076":1,"20077":2,"20078":2,"20079":1,"20080":1,"20081":2,"20082":2,"20083":1,"20084":2,"20085":2,"20086":1,"20087":1,"20088":1,"20089":2,"20090":2,"20091":2,"20092":2,"20093":2,"20094":1,"20095":2,"20096":2,"20097":2,"20098":1,"20099":1,"20100":2,"20101":1,"20102":1,"20103":2,"20104":1,"20105":2,"20106":1,"20107":2,"20108":2,"20109":1,"20110":1,"20111":2,"20112":2,"20113":1,"20114":2,"20115":1,"20116":1,"20117":1,"20118":2,"20119":1,"20120":2,"20121":1,"20122":1,"20123":2,"20124":2,"20125":2,"20126":2,"20127":2,"20128":2,"20129":2,"20130":2,"20131":1,"20132":1,"20133":2,"20134":1,"20135":1,"20136":1,"20137":2,"20138":2,"20139":2,"20140":1,"20141":2,"20142":2,"20143":2,"20144":1,"20145":1,"20146":2,"20147":1,"20148":1,"20149":1,"20150":1,"20151":2,"20152":1,"20153":2,"20154":2,"20155":2,"20156":1,"20157":2,"20158":2,"20159":2,"20160":1,"20161":1,"20162":2,"20163":1,"20164":1,"20165":1,"20166":2,"20167":1,"20168":1,"20169":2,"20170":2,"20171":1,"20172":1,"20173":2,"20174":2,"20175":2,"20176":1,"20177":1,"20178":1,"20179":1,"20180":2,"20181":1,"20182":2,"20183":2,"20184":2,"20185":2,"20186":1,"20187":2,"20188":1,"20189":1,"20190":2,"20191":2,"20192":2,"20193":1,"20194":1,"20195":2,"20196":2,"20197":2,"20198":2,"20199":1,"20200":2,"20201":1,"20202":1,"20203":2,"20204":1,"20205":1,"20206":1,"20207":2,"20208":1,"20209":2,"20210":2,"20211":2,"20212":1,"20213":2,"20214":2,"20215":1,"20216":1,"20217":2,"20218":2,"20219":2,"20220":2,"20221":2,"20222":1,"20223":2,"20224":1,"20225":2,"20226":1,"20227":2,"20228":1,"20229":1,"20230":1,"20231":2,"20232":1,"20233":2,"20234":2,"20235":2,"20236":2,"20237":1,"20238":2,"20239":1,"20240":2,"20241":2,"20242":2,"20243":2,"20244":2,"20245":2,"20246":1,"20247":1,"20248":1,"20249":2,"20250":1,"20251":2,"20252":1,"20253":2,"20254":2,"20255":1,"20256":1,"20257":2,"20258":2,"20259":1,"20260":1,"20261":1,"20262":1,"20263":2,"20264":1,"20265":1,"20266":2,"20267":2,"20268":2,"20269":2,"20270":2,"20271":1,"20272":1,"20273":2,"20274":1,"20275":1,"20276":2,"20277":1,"20278":2,"20279":2,"20280":2,"20281":2,"20282":2,"20283":1,"20284":2,"20285":1,"20286":1,"20287":1,"20288":2,"20289":2,"20290":2,"20291":1,"20292":2,"20293":1,"20294":2,"20295":1,"20296":1,"20297":2,"20298":1,"20299":2,"20300":2,"20301":1,"20302":1,"20303":2,"20304":1,"20305":1,"20306":2,"20307":2,"20308":1,"20309":2,"20310":1,"20311":1,"20312":2,"20313":1,"20314":1,"20315":1,"20316":2,"20317":2,"20318":2,"20319":1,"20320":1,"20321":2,"20322":1,"20323":2,"20324":2,"20325":1,"20326":1,"20327":2,"20328":1,"20329":2,"20330":2,"20331":2,"20332":2,"20333":1,"20334":2,"20335":1,"20336":2,"20337":1,"20338":2,"20339":2,"20340":2,"20341":1,"20342":2,"20343":1,"20344":2,"20345":2,"20346":2,"20347":2,"20348":2,"20349":2,"20350":1,"20351":1,"20352":1,"20353":2,"20354":1,"20355":2,"20356":2,"20357":2,"20358":2,"20359":1,"20360":2,"20361":1,"20362":1,"20363":2,"20364":1,"20365":1,"20366":2,"20367":1,"20368":2,"20369":2,"20370":1,"20371":2,"20372":1,"20373":2,"20374":2,"20375":1,"20376":1,"20377":2,"20378":1,"20379":2,"20380":1,"20381":2,"20382":1,"20383":2,"20384":1,"20385":1,"20386":2,"20387":2,"20388":2,"20389":1,"20390":1,"20391":2,"20392":1,"20393":1,"20394":1,"20395":2,"20396":1,"20397":2,"20398":2,"20399":2,"20400":2,"20401":2,"20402":1,"20403":2,"20404":1,"20405":2,"20406":1,"20407":1,"20408":1,"20409":1,"20410":1,"20411":1,"20412":2,"20413":2,"20414":1,"20415":1,"20416":2,"20417":2,"20418":2,"20419":2,"20420":2,"20421":1,"20422":2,"20423":2,"20424":1,"20425":1,"20426":2,"20427":1,"20428":2,"20429":1,"20430":1,"20431":2,"20432":1,"20433":1,"20434":2,"20435":2,"20436":1,"20437":2,"20438":2,"20439":2,"20440":2,"20441":1,"20442":2,"20443":1,"20444":1,"20445":1,"20446":2,"20447":1,"20448":1,"20449":1,"20450":1,"20451":1,"20452":1,"20453":2,"20454":1,"20455":2,"20456":2,"20457":2,"20458":1,"20459":2,"20460":1,"20461":2,"20462":2,"20463":1,"20464":1,"20465":1,"20466":2,"20467":1,"20468":1,"20469":1,"20470":1,"20471":1,"20472":2,"20473":2,"20474":1,"20475":1,"20476":1,"20477":2,"20478":1,"20479":2,"20480":1,"20481":2,"20482":2,"20483":1,"20484":1,"20485":1,"20486":2,"20487":2,"20488":1,"20489":1,"20490":1,"20491":2,"20492":1,"20493":1,"20494":2,"20495":2,"20496":2,"20497":2,"20498":2,"20499":1,"20500":1,"20501":1,"20502":2,"20503":2,"20504":2,"20505":2,"20506":2,"20507":1,"20508":1,"20509":1,"20510":1,"20511":1,"20512":2,"20513":2,"20514":2,"20515":1,"20516":2,"20517":2,"20518":2,"20519":1,"20520":2,"20521":1,"20522":2,"20523":1,"20524":1,"20525":2,"20526":2,"20527":1,"20528":2,"20529":2,"20530":2,"20531":1,"20532":2,"20533":2,"20534":2,"20535":1,"20536":1,"20537":1,"20538":1,"20539":2,"20540":2,"20541":2,"20542":1,"20543":1,"20544":2,"20545":1,"20546":1,"20547":2,"20548":2,"20549":1,"20550":2,"20551":1,"20552":2,"20553":1,"20554":2,"20555":1,"20556":1,"20557":2,"20558":2,"20559":1,"20560":2,"20561":2,"20562":1,"20563":1,"20564":2,"20565":2,"20566":2,"20567":1,"20568":2,"20569":2,"20570":1,"20571":2,"20572":2,"20573":2,"20574":2,"20575":2,"20576":1,"20577":2,"20578":1,"20579":1,"20580":2,"20581":2,"20582":1,"20583":1,"20584":2,"20585":1,"20586":2,"20587":1,"20588":2,"20589":1,"20590":2,"20591":1,"20592":1,"20593":1,"20594":1,"20595":1,"20596":1,"20597":2,"20598":2,"20599":2,"20600":1,"20601":2,"20602":2,"20603":2,"20604":1,"20605":1,"20606":1,"20607":2,"20608":1,"20609":1,"20610":2,"20611":2,"20612":2,"20613":1,"20614":1,"20615":2,"20616":2,"20617":1,"20618":2,"20619":1,"20620":1,"20621":2,"20622":1,"20623":2,"20624":2,"20625":1,"20626":2,"20627":1,"20628":1,"20629":1,"20630":2,"20631":2,"20632":1,"20633":1,"20634":2,"20635":2,"20636":2,"20637":1,"20638":1,"20639":2,"20640":2,"20641":2,"20642":2,"20643":1,"20644":2,"20645":1,"20646":2,"20647":1,"20648":2,"20649":2,"20650":1,"20651":1,"20652":1,"20653":2,"20654":2,"20655":1,"20656":1,"20657":1,"20658":2,"20659":1,"20660":1,"20661":2,"20662":1,"20663":2,"20664":1,"20665":1,"20666":2,"20667":2,"20668":2,"20669":1,"20670":1,"20671":1,"20672":2,"20673":2,"20674":2,"20675":2,"20676":2,"20677":1,"20678":2,"20679":2,"20680":1,"20681":2,"20682":2,"20683":2,"20684":2,"20685":1,"20686":2,"20687":1,"20688":1,"20689":2,"20690":1,"20691":1,"20692":1,"20693":1,"20694":1,"20695":1,"20696":2,"20697":2,"20698":1,"20699":1,"20700":2,"20701":2,"20702":2,"20703":2,"20704":2,"20705":2,"20706":1,"20707":2,"20708":1,"20709":2,"20710":1,"20711":2,"20712":1,"20713":1,"20714":1,"20715":2,"20716":2,"20717":2,"20718":1,"20719":2,"20720":1,"20721":2,"20722":2,"20723":1,"20724":2,"20725":1,"20726":2,"20727":2,"20728":1,"20729":2,"20730":2,"20731":1,"20732":2,"20733":2,"20734":1,"20735":1,"20736":2,"20737":2,"20738":2,"20739":1,"20740":2,"20741":2,"20742":2,"20743":1,"20744":1,"20745":1,"20746":2,"20747":1,"20748":1,"20749":2,"20750":1,"20751":2,"20752":2,"20753":1,"20754":2,"20755":2,"20756":2,"20757":1,"20758":1,"20759":2,"20760":2,"20761":2,"20762":1,"20763":2,"20764":1,"20765":1,"20766":1,"20767":1,"20768":1,"20769":1,"20770":1,"20771":2,"20772":1,"20773":2,"20774":1,"20775":1,"20776":1,"20777":2,"20778":1,"20779":1,"20780":1,"20781":1,"20782":2,"20783":2,"20784":1,"20785":1,"20786":1,"20787":1,"20788":2,"20789":2,"20790":1,"20791":1,"20792":1,"20793":2,"20794":2,"20795":1,"20796":1,"20797":2,"20798":1,"20799":2,"20800":2,"20801":1,"20802":2,"20803":2,"20804":2,"20805":1,"20806":1,"20807":1,"20808":1,"20809":2,"20810":1,"20811":2,"20812":1,"20813":2,"20814":2,"20815":1,"20816":1,"20817":2,"20818":1,"20819":2,"20820":1,"20821":1,"20822":1,"20823":1,"20824":2,"20825":2,"20826":2,"20827":2,"20828":1,"20829":2,"20830":1,"20831":2,"20832":1,"20833":2,"20834":2,"20835":2,"20836":1,"20837":2,"20838":2,"20839":2,"20840":1,"20841":1,"20842":2,"20843":1,"20844":2,"20845":2,"20846":1,"20847":2,"20848":1,"20849":1,"20850":2,"20851":2,"20852":1,"20853":1,"20854":1,"20855":2,"20856":2,"20857":2,"20858":2,"20859":1,"20860":1,"20861":2,"20862":2,"20863":1,"20864":2,"20865":2,"20866":2,"20867":2,"20868":2,"20869":1,"20870":1,"20871":1,"20872":1,"20873":2,"20874":1,"20875":2,"20876":1,"20877":1,"20878":1,"20879":2,"20880":2,"20881":2,"20882":1,"20883":2,"20884":2,"20885":1,"20886":1,"20887":2,"20888":1,"20889":1,"20890":2,"20891":1,"20892":1,"20893":2,"20894":2,"20895":1,"20896":2,"20897":2,"20898":1,"20899":2,"20900":1,"20901":1,"20902":2,"20903":2,"20904":2,"20905":2,"20906":1,"20907":1,"20908":2,"20909":1,"20910":2,"20911":2,"20912":2,"20913":2,"20914":2,"20915":2,"20916":2,"20917":1,"20918":2,"20919":1,"20920":1,"20921":1,"20922":2,"20923":1,"20924":1,"20925":2,"20926":1,"20927":1,"20928":1,"20929":1,"20930":2,"20931":2,"20932":2,"20933":1,"20934":2,"20935":1,"20936":1,"20937":2,"20938":1,"20939":1,"20940":1,"20941":2,"20942":1,"20943":1,"20944":2,"20945":1,"20946":1,"20947":2,"20948":1,"20949":1,"20950":1,"20951":1,"20952":2,"20953":1,"20954":1,"20955":2,"20956":1,"20957":1,"20958":2,"20959":2,"20960":1,"20961":2,"20962":2,"20963":2,"20964":1,"20965":1,"20966":1,"20967":1,"20968":2,"20969":1,"20970":1,"20971":2,"20972":1,"20973":1,"20974":2,"20975":1,"20976":1,"20977":1,"20978":2,"20979":1,"20980":1,"20981":2,"20982":2,"20983":1,"20984":2,"20985":1,"20986":2,"20987":1,"20988":2,"20989":1,"20990":2,"20991":1,"20992":2,"20993":2,"20994":2,"20995":2,"20996":2,"20997":2,"20998":1,"20999":2,"21000":1,"21001":1,"21002":2,"21003":2,"21004":1,"21005":1,"21006":1,"21007":2,"21008":2,"21009":1,"21010":2,"21011":1,"21012":2,"21013":1,"21014":1,"21015":2,"21016":1,"21017":1,"21018":1,"21019":2,"21020":1,"21021":1,"21022":1,"21023":2,"21024":2,"21025":1,"21026":2,"21027":1,"21028":1,"21029":1,"21030":1,"21031":2,"21032":2,"21033":1,"21034":1,"21035":1,"21036":1,"21037":2,"21038":2,"21039":2,"21040":1,"21041":2,"21042":2,"21043":2,"21044":1,"21045":2,"21046":2,"21047":1,"21048":1,"21049":2,"21050":1,"21051":1,"21052":2,"21053":1,"21054":2,"21055":1,"21056":2,"21057":2,"21058":1,"21059":2,"21060":1,"21061":1,"21062":1,"21063":2,"21064":2,"21065":2,"21066":1,"21067":1,"21068":2,"21069":1,"21070":1,"21071":2,"21072":2,"21073":2,"21074":2,"21075":1,"21076":2,"21077":2,"21078":1,"21079":1,"21080":1,"21081":2,"21082":2,"21083":2,"21084":2,"21085":2,"21086":1,"21087":1,"21088":1,"21089":1,"21090":2,"21091":1,"21092":1,"21093":1,"21094":2,"21095":1,"21096":2,"21097":1,"21098":2,"21099":2,"21100":2,"21101":2,"21102":2,"21103":2,"21104":1,"21105":2,"21106":2,"21107":1,"21108":1,"21109":2,"21110":1,"21111":1,"21112":1,"21113":2,"21114":1,"21115":1,"21116":1,"21117":1,"21118":1,"21119":2,"21120":2,"21121":2,"21122":2,"21123":1,"21124":2,"21125":1,"21126":2,"21127":1,"21128":1,"21129":2,"21130":2,"21131":2,"21132":1,"21133":1,"21134":1,"21135":2,"21136":2,"21137":2,"21138":2,"21139":1,"21140":2,"21141":1,"21142":1,"21143":2,"21144":1,"21145":1,"21146":2,"21147":1,"21148":2,"21149":1,"21150":1,"21151":2,"21152":1,"21153":2,"21154":1,"21155":2,"21156":2,"21157":2,"21158":2,"21159":1,"21160":2,"21161":2,"21162":2,"21163":1,"21164":1,"21165":2,"21166":2,"21167":2,"21168":2,"21169":2,"21170":2,"21171":2,"21172":1,"21173":1,"21174":1,"21175":1,"21176":2,"21177":2,"21178":2,"21179":2,"21180":2,"21181":2,"21182":1,"21183":2,"21184":1,"21185":1,"21186":2,"21187":2,"21188":2,"21189":1,"21190":2,"21191":1,"21192":1,"21193":1,"21194":2,"21195":2,"21196":1,"21197":1,"21198":2,"21199":1,"21200":2,"21201":2,"21202":1,"21203":1,"21204":2,"21205":2,"21206":1,"21207":2,"21208":2,"21209":2,"21210":1,"21211":2,"21212":1,"21213":1,"21214":1,"21215":2,"21216":2,"21217":1,"21218":1,"21219":1,"21220":2,"21221":2,"21222":1,"21223":2,"21224":1,"21225":2,"21226":1,"21227":2,"21228":1,"21229":2,"21230":2,"21231":2,"21232":2,"21233":1,"21234":1,"21235":1,"21236":1,"21237":1,"21238":2,"21239":2,"21240":1,"21241":1,"21242":1,"21243":2,"21244":1,"21245":2,"21246":1,"21247":1,"21248":1,"21249":1,"21250":2,"21251":2,"21252":2,"21253":2,"21254":1,"21255":2,"21256":2,"21257":1,"21258":1,"21259":2,"21260":1,"21261":1,"21262":2,"21263":2,"21264":2,"21265":1,"21266":2,"21267":1,"21268":1,"21269":2,"21270":2,"21271":1,"21272":2,"21273":2,"21274":1,"21275":1,"21276":1,"21277":2,"21278":2,"21279":2,"21280":1,"21281":2,"21282":2,"21283":2,"21284":1,"21285":2,"21286":1,"21287":2,"21288":1,"21289":2,"21290":1,"21291":2,"21292":1,"21293":1,"21294":1,"21295":2,"21296":2,"21297":2,"21298":2,"21299":1,"21300":2,"21301":2,"21302":2,"21303":2,"21304":1,"21305":2,"21306":1,"21307":2,"21308":2,"21309":1,"21310":1,"21311":2,"21312":1,"21313":2,"21314":1,"21315":2,"21316":2,"21317":2,"21318":2,"21319":1,"21320":1,"21321":2,"21322":1,"21323":1,"21324":2,"21325":1,"21326":1,"21327":1,"21328":2,"21329":2,"21330":1,"21331":2,"21332":2,"21333":2,"21334":1,"21335":1,"21336":2,"21337":1,"21338":1,"21339":2,"21340":1,"21341":2,"21342":2,"21343":1,"21344":2,"21345":1,"21346":2,"21347":1,"21348":2,"21349":1,"21350":1,"21351":1,"21352":1,"21353":1,"21354":1,"21355":1,"21356":1,"21357":1,"21358":2,"21359":1,"21360":1,"21361":1,"21362":1,"21363":2,"21364":2,"21365":2,"21366":2,"21367":1,"21368":1,"21369":2,"21370":2,"21371":1,"21372":2,"21373":2,"21374":1,"21375":2,"21376":2,"21377":2,"21378":2,"21379":1,"21380":1,"21381":2,"21382":1,"21383":1,"21384":1,"21385":1,"21386":2,"21387":1,"21388":1,"21389":1,"21390":1,"21391":1,"21392":2,"21393":2,"21394":2,"21395":1,"21396":2,"21397":1,"21398":2,"21399":2,"21400":2,"21401":2,"21402":1,"21403":1,"21404":2,"21405":2,"21406":2,"21407":2,"21408":1,"21409":2,"21410":2,"21411":2,"21412":1,"21413":2,"21414":2,"21415":2,"21416":2,"21417":1,"21418":1,"21419":2,"21420":1,"21421":2,"21422":2,"21423":1,"21424":1,"21425":2,"21426":2,"21427":1,"21428":2,"21429":2,"21430":2,"21431":2,"21432":2,"21433":2,"21434":2,"21435":2,"21436":1,"21437":1,"21438":2,"21439":1,"21440":1,"21441":2,"21442":1,"21443":2,"21444":2,"21445":2,"21446":2,"21447":1,"21448":2,"21449":1,"21450":2,"21451":1,"21452":1,"21453":1,"21454":1,"21455":2,"21456":1,"21457":2,"21458":1,"21459":2,"21460":1,"21461":1,"21462":1,"21463":1,"21464":2,"21465":1,"21466":1,"21467":2,"21468":1,"21469":2,"21470":2,"21471":2,"21472":2,"21473":1,"21474":2,"21475":2,"21476":2,"21477":2,"21478":2,"21479":2,"21480":2,"21481":1,"21482":1,"21483":1,"21484":1,"21485":2,"21486":1,"21487":1,"21488":1,"21489":2,"21490":1,"21491":1,"21492":1,"21493":2,"21494":2,"21495":1,"21496":1,"21497":2,"21498":1,"21499":1,"21500":1,"21501":1,"21502":2,"21503":2,"21504":1,"21505":2,"21506":2,"21507":2,"21508":2,"21509":1,"21510":2,"21511":1,"21512":1,"21513":2,"21514":2,"21515":1,"21516":2,"21517":2,"21518":1,"21519":1,"21520":2,"21521":1,"21522":2,"21523":2,"21524":1,"21525":2,"21526":2,"21527":1,"21528":2,"21529":1,"21530":1,"21531":1,"21532":1,"21533":1,"21534":2,"21535":2,"21536":2,"21537":1,"21538":1,"21539":2,"21540":1,"21541":1,"21542":1,"21543":1,"21544":2,"21545":2,"21546":1,"21547":2,"21548":1,"21549":2,"21550":1,"21551":2,"21552":1,"21553":1,"21554":1,"21555":2,"21556":1,"21557":1,"21558":1,"21559":2,"21560":2,"21561":2,"21562":2,"21563":1,"21564":2,"21565":1,"21566":1,"21567":2,"21568":2,"21569":1,"21570":1,"21571":2,"21572":2,"21573":1,"21574":2,"21575":2,"21576":2,"21577":1,"21578":2,"21579":1,"21580":1,"21581":1,"21582":1,"21583":1,"21584":1,"21585":2,"21586":2,"21587":2,"21588":1,"21589":1,"21590":1,"21591":2,"21592":1,"21593":2,"21594":2,"21595":2,"21596":2,"21597":2,"21598":1,"21599":2,"21600":1,"21601":2,"21602":1,"21603":2,"21604":2,"21605":1,"21606":1,"21607":1,"21608":2,"21609":2,"21610":1,"21611":2,"21612":1,"21613":2,"21614":1,"21615":2,"21616":2,"21617":1,"21618":1,"21619":2,"21620":2,"21621":2,"21622":2,"21623":2,"21624":2,"21625":2,"21626":2,"21627":2,"21628":2,"21629":2,"21630":1,"21631":1,"21632":1,"21633":2,"21634":1,"21635":1,"21636":1,"21637":2,"21638":1,"21639":2,"21640":1,"21641":2,"21642":1,"21643":2,"21644":1,"21645":1,"21646":1,"21647":1,"21648":1,"21649":1,"21650":2,"21651":1,"21652":1,"21653":1,"21654":1,"21655":2,"21656":1,"21657":1,"21658":1,"21659":1,"21660":1,"21661":1,"21662":2,"21663":2,"21664":2,"21665":1,"21666":1,"21667":2,"21668":2,"21669":1,"21670":2,"21671":1,"21672":1,"21673":2,"21674":1,"21675":1,"21676":2,"21677":2,"21678":1,"21679":2,"21680":1,"21681":1,"21682":1,"21683":1,"21684":2,"21685":1,"21686":2,"21687":2,"21688":2,"21689":1,"21690":1,"21691":1,"21692":2,"21693":1,"21694":2,"21695":1,"21696":1,"21697":1,"21698":2,"21699":1,"21700":1,"21701":2,"21702":2,"21703":2,"21704":1,"21705":1,"21706":2,"21707":1,"21708":1,"21709":1,"21710":2,"21711":2,"21712":1,"21713":2,"21714":1,"21715":2,"21716":2,"21717":2,"21718":1,"21719":1,"21720":1,"21721":2,"21722":2,"21723":1,"21724":1,"21725":2,"21726":2,"21727":2,"21728":2,"21729":2,"21730":2,"21731":2,"21732":2,"21733":1,"21734":1,"21735":2,"21736":1,"21737":2,"21738":1,"21739":2,"21740":2,"21741":1,"21742":1,"21743":2,"21744":2,"21745":2,"21746":1,"21747":1,"21748":1,"21749":2,"21750":1,"21751":1,"21752":2,"21753":1,"21754":1,"21755":1,"21756":1,"21757":1,"21758":2,"21759":2,"21760":1,"21761":2,"21762":1,"21763":1,"21764":1,"21765":1,"21766":1,"21767":2,"21768":1,"21769":2,"21770":1,"21771":1,"21772":1,"21773":1,"21774":2,"21775":1,"21776":1,"21777":2,"21778":2,"21779":2,"21780":2,"21781":2,"21782":2,"21783":2,"21784":2,"21785":1,"21786":2,"21787":2,"21788":2,"21789":1,"21790":1,"21791":1,"21792":2,"21793":1,"21794":1,"21795":1,"21796":2,"21797":1,"21798":2,"21799":2,"21800":1,"21801":2,"21802":1,"21803":1,"21804":1,"21805":2,"21806":1,"21807":1,"21808":2,"21809":1,"21810":2,"21811":2,"21812":1,"21813":1,"21814":1,"21815":1,"21816":2,"21817":2,"21818":1,"21819":1,"21820":1,"21821":2,"21822":1,"21823":1,"21824":2,"21825":2,"21826":1,"21827":1,"21828":1,"21829":1,"21830":2,"21831":1,"21832":2,"21833":1,"21834":1,"21835":2,"21836":2,"21837":1,"21838":2,"21839":1,"21840":1,"21841":2,"21842":2,"21843":1,"21844":2,"21845":1,"21846":2,"21847":1,"21848":2,"21849":2,"21850":1,"21851":2,"21852":1,"21853":1,"21854":1,"21855":1,"21856":2,"21857":2,"21858":2,"21859":2,"21860":1,"21861":1,"21862":1,"21863":2,"21864":1,"21865":2,"21866":2,"21867":2,"21868":2,"21869":1,"21870":2,"21871":2,"21872":1,"21873":2,"21874":2,"21875":1,"21876":1,"21877":1,"21878":1,"21879":1,"21880":1,"21881":1,"21882":1,"21883":1,"21884":2,"21885":1,"21886":2,"21887":2,"21888":2,"21889":1,"21890":2,"21891":1,"21892":2,"21893":2,"21894":2,"21895":1,"21896":1,"21897":1,"21898":2,"21899":1,"21900":2,"21901":2,"21902":1,"21903":1,"21904":2,"21905":1,"21906":2,"21907":1,"21908":1,"21909":1,"21910":2,"21911":2,"21912":1,"21913":2,"21914":1,"21915":1,"21916":2,"21917":1,"21918":1,"21919":1,"21920":1,"21921":1,"21922":2,"21923":1,"21924":2,"21925":1,"21926":1,"21927":1,"21928":1,"21929":1,"21930":1,"21931":1,"21932":2,"21933":1,"21934":2,"21935":1,"21936":2,"21937":1,"21938":1,"21939":2,"21940":2,"21941":1,"21942":2,"21943":1,"21944":2,"21945":1,"21946":2,"21947":1,"21948":2,"21949":1,"21950":1,"21951":1,"21952":1,"21953":1,"21954":2,"21955":1,"21956":2,"21957":1,"21958":2,"21959":2,"21960":2,"21961":1,"21962":2,"21963":1,"21964":2,"21965":2,"21966":1,"21967":2,"21968":1,"21969":1,"21970":1,"21971":1,"21972":1,"21973":1,"21974":1,"21975":2,"21976":2,"21977":1,"21978":2,"21979":1,"21980":2,"21981":1,"21982":1,"21983":1,"21984":1,"21985":1,"21986":1,"21987":2,"21988":2,"21989":2,"21990":1,"21991":2,"21992":2,"21993":2,"21994":1,"21995":1,"21996":1,"21997":1,"21998":1,"21999":2,"22000":2,"22001":2,"22002":2,"22003":1,"22004":1,"22005":2,"22006":1,"22007":2,"22008":2,"22009":2,"22010":2,"22011":2,"22012":1,"22013":2,"22014":1,"22015":1,"22016":2,"22017":2,"22018":1,"22019":1,"22020":2,"22021":1,"22022":1,"22023":1,"22024":1,"22025":1,"22026":1,"22027":2,"22028":1,"22029":2,"22030":2,"22031":1,"22032":2,"22033":1,"22034":1,"22035":2,"22036":2,"22037":2,"22038":2,"22039":2,"22040":2,"22041":1,"22042":2,"22043":2,"22044":1,"22045":2,"22046":2,"22047":1,"22048":1,"22049":1,"22050":2,"22051":2,"22052":2,"22053":2,"22054":1,"22055":1,"22056":2,"22057":2,"22058":2,"22059":2,"22060":2,"22061":1,"22062":2,"22063":2,"22064":2,"22065":1,"22066":1,"22067":1,"22068":2,"22069":1,"22070":2,"22071":1,"22072":2,"22073":2,"22074":1,"22075":2,"22076":2,"22077":1,"22078":1,"22079":2,"22080":2,"22081":2,"22082":1,"22083":1,"22084":1,"22085":2,"22086":1,"22087":2,"22088":1,"22089":1,"22090":2,"22091":1,"22092":2,"22093":1,"22094":1,"22095":2,"22096":2,"22097":2,"22098":2,"22099":2,"22100":1,"22101":2,"22102":1,"22103":1,"22104":2,"22105":1,"22106":1,"22107":2,"22108":1,"22109":1,"22110":1,"22111":1,"22112":2,"22113":1,"22114":1,"22115":1,"22116":2,"22117":1,"22118":2,"22119":1,"22120":2,"22121":2,"22122":1,"22123":1,"22124":1,"22125":1,"22126":1,"22127":1,"22128":2,"22129":1,"22130":2,"22131":1,"22132":1,"22133":2,"22134":2,"22135":1,"22136":2,"22137":1,"22138":2,"22139":2,"22140":2,"22141":1,"22142":1,"22143":2,"22144":1,"22145":2,"22146":1,"22147":1,"22148":1,"22149":1,"22150":1,"22151":1,"22152":2,"22153":1,"22154":2,"22155":1,"22156":1,"22157":2,"22158":2,"22159":1,"22160":2,"22161":1,"22162":2,"22163":1,"22164":2,"22165":2,"22166":2,"22167":1,"22168":2,"22169":1,"22170":2,"22171":1,"22172":1,"22173":1,"22174":1,"22175":1,"22176":2,"22177":2,"22178":1,"22179":1,"22180":2,"22181":2,"22182":1,"22183":1,"22184":2,"22185":1,"22186":2,"22187":1,"22188":1,"22189":1,"22190":2,"22191":2,"22192":2,"22193":1,"22194":1,"22195":2,"22196":1,"22197":2,"22198":1,"22199":2,"22200":1,"22201":2,"22202":1,"22203":1,"22204":2,"22205":2,"22206":2,"22207":2,"22208":1,"22209":1,"22210":1,"22211":2,"22212":1,"22213":1,"22214":1,"22215":1,"22216":2,"22217":1,"22218":1,"22219":2,"22220":2,"22221":1,"22222":1,"22223":1,"22224":2,"22225":1,"22226":1,"22227":2,"22228":2,"22229":2,"22230":2,"22231":1,"22232":2,"22233":2,"22234":2,"22235":1,"22236":2,"22237":1,"22238":2,"22239":1,"22240":1,"22241":1,"22242":2,"22243":2,"22244":2,"22245":1,"22246":2,"22247":1,"22248":1,"22249":2,"22250":1,"22251":1,"22252":2,"22253":1,"22254":2,"22255":1,"22256":1,"22257":1,"22258":2,"22259":2,"22260":2,"22261":2,"22262":2,"22263":1,"22264":1,"22265":2,"22266":1,"22267":1,"22268":2,"22269":2,"22270":1,"22271":1,"22272":2,"22273":1,"22274":1,"22275":2,"22276":2,"22277":2,"22278":2,"22279":1,"22280":2,"22281":1,"22282":1,"22283":2,"22284":2,"22285":2,"22286":2,"22287":2,"22288":2,"22289":1,"22290":1,"22291":1,"22292":1,"22293":2,"22294":2,"22295":1,"22296":2,"22297":1,"22298":1,"22299":1,"22300":2,"22301":2,"22302":2,"22303":2,"22304":1,"22305":2,"22306":1,"22307":2,"22308":2,"22309":1,"22310":2,"22311":2,"22312":2,"22313":1,"22314":1,"22315":2,"22316":1,"22317":2,"22318":2,"22319":1,"22320":1,"22321":1,"22322":2,"22323":2,"22324":1,"22325":2,"22326":2,"22327":1,"22328":1,"22329":2,"22330":1,"22331":2,"22332":2,"22333":1,"22334":1,"22335":2,"22336":1,"22337":2,"22338":2,"22339":1,"22340":1,"22341":1,"22342":1,"22343":2,"22344":1,"22345":2,"22346":2,"22347":2,"22348":2,"22349":2,"22350":2,"22351":1,"22352":1,"22353":2,"22354":1,"22355":2,"22356":1,"22357":1,"22358":2,"22359":2,"22360":1,"22361":1,"22362":1,"22363":2,"22364":1,"22365":2,"22366":2,"22367":2,"22368":2,"22369":2,"22370":2,"22371":1,"22372":2,"22373":1,"22374":2,"22375":1,"22376":1,"22377":1,"22378":1,"22379":1,"22380":2,"22381":1,"22382":1,"22383":2,"22384":2,"22385":2,"22386":2,"22387":1,"22388":1,"22389":2,"22390":2,"22391":2,"22392":1,"22393":1,"22394":2,"22395":2,"22396":2,"22397":2,"22398":2,"22399":2,"22400":2,"22401":1,"22402":1,"22403":2,"22404":1,"22405":2,"22406":2,"22407":2,"22408":2,"22409":1,"22410":1,"22411":1,"22412":1,"22413":1,"22414":1,"22415":1,"22416":2,"22417":1,"22418":1,"22419":1,"22420":2,"22421":1,"22422":1,"22423":1,"22424":2,"22425":2,"22426":2,"22427":1,"22428":1,"22429":2,"22430":1,"22431":1,"22432":2,"22433":2,"22434":2,"22435":1,"22436":2,"22437":1,"22438":2,"22439":2,"22440":2,"22441":1,"22442":1,"22443":1,"22444":1,"22445":1,"22446":2,"22447":2,"22448":1,"22449":2,"22450":2,"22451":1,"22452":1,"22453":2,"22454":2,"22455":1,"22456":1,"22457":1,"22458":2,"22459":1,"22460":1,"22461":2,"22462":2,"22463":2,"22464":1,"22465":1,"22466":2,"22467":1,"22468":2,"22469":1,"22470":1,"22471":1,"22472":1,"22473":2,"22474":2,"22475":1,"22476":2,"22477":2,"22478":2,"22479":2,"22480":2,"22481":2,"22482":2,"22483":2,"22484":1,"22485":1,"22486":1,"22487":1,"22488":1,"22489":1,"22490":2,"22491":2,"22492":2,"22493":1,"22494":1,"22495":2,"22496":1,"22497":1,"22498":2,"22499":1,"22500":1,"22501":1,"22502":1,"22503":1,"22504":1,"22505":2,"22506":2,"22507":1,"22508":1,"22509":2,"22510":2,"22511":2,"22512":2,"22513":1,"22514":2,"22515":2,"22516":2,"22517":2,"22518":1,"22519":2,"22520":1,"22521":2,"22522":1,"22523":2,"22524":1,"22525":1,"22526":1,"22527":1,"22528":2,"22529":2,"22530":2,"22531":1,"22532":1,"22533":2,"22534":1,"22535":1,"22536":2,"22537":1,"22538":2,"22539":1,"22540":1,"22541":2,"22542":2,"22543":1,"22544":2,"22545":2,"22546":2,"22547":2,"22548":2,"22549":1,"22550":2,"22551":1,"22552":1,"22553":1,"22554":1,"22555":1,"22556":2,"22557":2,"22558":1,"22559":2,"22560":1,"22561":1,"22562":1,"22563":2,"22564":1,"22565":2,"22566":1,"22567":1,"22568":2,"22569":2,"22570":1,"22571":1,"22572":2,"22573":2,"22574":1,"22575":2,"22576":1,"22577":2,"22578":1,"22579":2,"22580":2,"22581":2,"22582":2,"22583":2,"22584":1,"22585":1,"22586":2,"22587":1,"22588":1,"22589":1,"22590":2,"22591":2,"22592":2,"22593":2,"22594":1,"22595":2,"22596":2,"22597":2,"22598":2,"22599":2,"22600":2,"22601":1,"22602":2,"22603":1,"22604":1,"22605":2,"22606":1,"22607":1,"22608":2,"22609":2,"22610":2,"22611":2,"22612":1,"22613":2,"22614":2,"22615":1,"22616":1,"22617":2,"22618":2,"22619":2,"22620":1,"22621":2,"22622":2,"22623":2,"22624":1,"22625":1,"22626":2,"22627":2,"22628":1,"22629":2,"22630":1,"22631":1,"22632":2,"22633":2,"22634":2,"22635":2,"22636":1,"22637":1,"22638":1,"22639":1,"22640":1,"22641":2,"22642":2,"22643":1,"22644":1,"22645":1,"22646":1,"22647":2,"22648":2,"22649":1,"22650":2,"22651":1,"22652":2,"22653":2,"22654":2,"22655":1,"22656":2,"22657":2,"22658":1,"22659":1,"22660":1,"22661":2,"22662":2,"22663":1,"22664":1,"22665":2,"22666":2,"22667":2,"22668":2,"22669":1,"22670":1,"22671":2,"22672":2,"22673":2,"22674":2,"22675":2,"22676":2,"22677":1,"22678":1,"22679":2,"22680":2,"22681":1,"22682":1,"22683":2,"22684":1,"22685":1,"22686":2,"22687":1,"22688":1,"22689":1,"22690":2,"22691":2,"22692":1,"22693":1,"22694":2,"22695":2,"22696":1,"22697":2,"22698":2,"22699":1,"22700":2,"22701":2,"22702":2,"22703":2,"22704":2,"22705":2,"22706":1,"22707":1,"22708":1,"22709":2,"22710":1,"22711":1,"22712":1,"22713":1,"22714":1,"22715":2,"22716":2,"22717":1,"22718":2,"22719":2,"22720":2,"22721":2,"22722":1,"22723":1,"22724":2,"22725":1,"22726":2,"22727":2,"22728":1,"22729":1,"22730":2,"22731":2,"22732":1,"22733":1,"22734":1,"22735":1,"22736":1,"22737":1,"22738":2,"22739":1,"22740":1,"22741":1,"22742":1,"22743":1,"22744":1,"22745":2,"22746":2,"22747":1,"22748":1,"22749":2,"22750":1,"22751":1,"22752":2,"22753":2,"22754":1,"22755":2,"22756":1,"22757":2,"22758":1,"22759":1,"22760":2,"22761":1,"22762":2,"22763":1,"22764":2,"22765":2,"22766":2,"22767":1,"22768":1,"22769":2,"22770":1,"22771":2,"22772":2,"22773":1,"22774":2,"22775":1,"22776":1,"22777":1,"22778":2,"22779":2,"22780":1,"22781":1,"22782":2,"22783":1,"22784":2,"22785":1,"22786":1,"22787":1,"22788":1,"22789":2,"22790":2,"22791":1,"22792":1,"22793":2,"22794":1,"22795":1,"22796":1,"22797":1,"22798":1,"22799":1,"22800":2,"22801":2,"22802":2,"22803":1,"22804":1,"22805":1,"22806":2,"22807":1,"22808":2,"22809":2,"22810":1,"22811":2,"22812":1,"22813":1,"22814":2,"22815":2,"22816":2,"22817":1,"22818":1,"22819":2,"22820":1,"22821":1,"22822":1,"22823":2,"22824":1,"22825":2,"22826":1,"22827":1,"22828":2,"22829":1,"22830":2,"22831":1,"22832":1,"22833":1,"22834":2,"22835":1,"22836":1,"22837":1,"22838":1,"22839":2,"22840":2,"22841":1,"22842":1,"22843":2,"22844":1,"22845":2,"22846":2,"22847":1,"22848":1,"22849":2,"22850":2,"22851":2,"22852":2,"22853":1,"22854":1,"22855":2,"22856":2,"22857":2,"22858":1,"22859":1,"22860":2,"22861":1,"22862":2,"22863":1,"22864":2,"22865":1,"22866":1,"22867":1,"22868":1,"22869":1,"22870":1,"22871":2,"22872":2,"22873":1,"22874":2,"22875":2,"22876":2,"22877":1,"22878":1,"22879":1,"22880":2,"22881":1,"22882":1,"22883":1,"22884":2,"22885":1,"22886":1,"22887":1,"22888":2,"22889":2,"22890":2,"22891":1,"22892":1,"22893":1,"22894":1,"22895":2,"22896":2,"22897":2,"22898":2,"22899":1,"22900":2,"22901":2,"22902":1,"22903":1,"22904":1,"22905":2,"22906":1,"22907":2,"22908":2,"22909":1,"22910":2,"22911":1,"22912":2,"22913":2,"22914":1,"22915":1,"22916":1,"22917":2,"22918":1,"22919":1,"22920":2,"22921":1,"22922":2,"22923":1,"22924":1,"22925":2,"22926":2,"22927":1,"22928":1,"22929":1,"22930":2,"22931":1,"22932":1,"22933":1,"22934":1,"22935":2,"22936":1,"22937":2,"22938":1,"22939":1,"22940":2,"22941":2,"22942":1,"22943":1,"22944":2,"22945":1,"22946":1,"22947":1,"22948":1,"22949":2,"22950":1,"22951":1,"22952":1,"22953":2,"22954":1,"22955":2,"22956":2,"22957":2,"22958":2,"22959":2,"22960":1,"22961":2,"22962":2,"22963":1,"22964":2,"22965":1,"22966":2,"22967":2,"22968":1,"22969":2,"22970":1,"22971":1,"22972":2,"22973":2,"22974":1,"22975":2,"22976":1,"22977":2,"22978":2,"22979":2,"22980":2,"22981":2,"22982":2,"22983":1,"22984":1,"22985":1,"22986":2,"22987":2,"22988":1,"22989":1,"22990":2,"22991":1,"22992":1,"22993":2,"22994":1,"22995":1,"22996":2,"22997":1,"22998":2,"22999":2,"23000":2,"23001":1,"23002":1,"23003":2,"23004":1,"23005":1,"23006":1,"23007":2,"23008":1,"23009":2,"23010":1,"23011":2,"23012":2,"23013":1,"23014":2,"23015":1,"23016":2,"23017":1,"23018":2,"23019":1,"23020":1,"23021":1,"23022":1,"23023":2,"23024":2,"23025":2,"23026":2,"23027":1,"23028":2,"23029":2,"23030":2,"23031":2,"23032":2,"23033":1,"23034":2,"23035":1,"23036":1,"23037":1,"23038":2,"23039":1,"23040":1,"23041":2,"23042":2,"23043":1,"23044":1,"23045":2,"23046":1,"23047":2,"23048":2,"23049":2,"23050":1,"23051":1,"23052":2,"23053":1,"23054":2,"23055":1,"23056":1,"23057":1,"23058":2,"23059":2,"23060":1,"23061":1,"23062":1,"23063":1,"23064":1,"23065":1,"23066":2,"23067":2,"23068":2,"23069":1,"23070":2,"23071":1,"23072":2,"23073":2,"23074":2,"23075":1,"23076":2,"23077":2,"23078":2,"23079":2,"23080":1,"23081":1,"23082":1,"23083":2,"23084":2,"23085":2,"23086":1,"23087":2,"23088":2,"23089":2,"23090":1,"23091":1,"23092":2,"23093":2,"23094":1,"23095":2,"23096":2,"23097":1,"23098":1,"23099":1,"23100":1,"23101":2,"23102":2,"23103":1,"23104":2,"23105":1,"23106":1,"23107":2,"23108":2,"23109":1,"23110":2,"23111":1,"23112":2,"23113":1,"23114":1,"23115":1,"23116":2,"23117":2,"23118":1,"23119":1,"23120":2,"23121":1,"23122":1,"23123":2,"23124":2,"23125":1,"23126":2,"23127":2,"23128":2,"23129":2,"23130":1,"23131":1,"23132":2,"23133":2,"23134":2,"23135":2,"23136":2,"23137":2,"23138":1,"23139":1,"23140":1,"23141":1,"23142":1,"23143":2,"23144":1,"23145":2,"23146":2,"23147":2,"23148":1,"23149":2,"23150":2,"23151":2,"23152":1,"23153":2,"23154":2,"23155":1,"23156":1,"23157":2,"23158":2,"23159":1,"23160":1,"23161":1,"23162":1,"23163":2,"23164":1,"23165":2,"23166":2,"23167":1,"23168":1,"23169":1,"23170":2,"23171":2,"23172":2,"23173":2,"23174":1,"23175":1,"23176":2,"23177":1,"23178":2,"23179":2,"23180":2,"23181":2,"23182":2,"23183":2,"23184":2,"23185":2,"23186":2,"23187":1,"23188":2,"23189":1,"23190":1,"23191":1,"23192":2,"23193":1,"23194":1,"23195":1,"23196":2,"23197":2,"23198":2,"23199":1,"23200":2,"23201":1,"23202":1,"23203":1,"23204":1,"23205":1,"23206":1,"23207":1,"23208":1,"23209":2,"23210":2,"23211":1,"23212":2,"23213":2,"23214":1,"23215":1,"23216":2,"23217":1,"23218":2,"23219":2,"23220":2,"23221":1,"23222":2,"23223":2,"23224":2,"23225":2,"23226":2,"23227":1,"23228":2,"23229":2,"23230":1,"23231":2,"23232":1,"23233":2,"23234":2,"23235":1,"23236":2,"23237":2,"23238":1,"23239":2,"23240":1,"23241":1,"23242":1,"23243":2,"23244":1,"23245":2,"23246":1,"23247":2,"23248":1,"23249":2,"23250":1,"23251":1,"23252":1,"23253":1,"23254":2,"23255":2,"23256":1,"23257":1,"23258":2,"23259":1,"23260":1,"23261":1,"23262":1,"23263":1,"23264":1,"23265":2,"23266":1,"23267":2,"23268":2,"23269":1,"23270":1,"23271":2,"23272":2,"23273":2,"23274":1,"23275":2,"23276":2,"23277":2,"23278":1,"23279":1,"23280":2,"23281":2,"23282":1,"23283":1,"23284":2,"23285":1,"23286":2,"23287":2,"23288":1,"23289":2,"23290":1,"23291":1,"23292":1,"23293":1,"23294":2,"23295":2,"23296":2,"23297":2,"23298":1,"23299":2,"23300":1,"23301":1,"23302":1,"23303":1,"23304":2,"23305":1,"23306":2,"23307":2,"23308":1,"23309":2,"23310":1,"23311":1,"23312":2,"23313":2,"23314":1,"23315":2,"23316":2,"23317":2,"23318":1,"23319":2,"23320":1,"23321":1,"23322":1,"23323":2,"23324":2,"23325":1,"23326":2,"23327":1,"23328":1,"23329":1,"23330":1,"23331":2,"23332":2,"23333":1,"23334":1,"23335":2,"23336":1,"23337":1,"23338":2,"23339":1,"23340":2,"23341":1,"23342":2,"23343":2,"23344":2,"23345":2,"23346":2,"23347":2,"23348":2,"23349":1,"23350":1,"23351":1,"23352":1,"23353":1,"23354":2,"23355":1,"23356":2,"23357":2,"23358":2,"23359":2,"23360":1,"23361":2,"23362":2,"23363":2,"23364":1,"23365":2,"23366":2,"23367":1,"23368":1,"23369":2,"23370":2,"23371":2,"23372":1,"23373":1,"23374":2,"23375":2,"23376":2,"23377":2,"23378":2,"23379":2,"23380":1,"23381":2,"23382":1,"23383":2,"23384":2,"23385":1,"23386":2,"23387":1,"23388":2,"23389":2,"23390":2,"23391":1,"23392":1,"23393":2,"23394":1,"23395":1,"23396":2,"23397":2,"23398":2,"23399":2,"23400":2,"23401":1,"23402":1,"23403":2,"23404":1,"23405":2,"23406":2,"23407":2,"23408":2,"23409":2,"23410":2,"23411":2,"23412":2,"23413":1,"23414":1,"23415":1,"23416":2,"23417":2,"23418":1,"23419":2,"23420":2,"23421":1,"23422":2,"23423":2,"23424":2,"23425":1,"23426":2,"23427":2,"23428":2,"23429":1,"23430":1,"23431":2,"23432":2,"23433":1,"23434":2,"23435":2,"23436":1,"23437":2,"23438":2,"23439":2,"23440":1,"23441":1,"23442":1,"23443":2,"23444":2,"23445":2,"23446":2,"23447":1,"23448":2,"23449":1,"23450":2,"23451":1,"23452":1,"23453":2,"23454":2,"23455":2,"23456":2,"23457":2,"23458":2,"23459":2,"23460":1,"23461":1,"23462":1,"23463":2,"23464":2,"23465":2,"23466":2,"23467":2,"23468":1,"23469":1,"23470":2,"23471":2,"23472":2,"23473":1,"23474":1,"23475":1,"23476":2,"23477":1,"23478":2,"23479":1,"23480":2,"23481":2,"23482":1,"23483":2,"23484":1,"23485":2,"23486":2,"23487":2,"23488":2,"23489":1,"23490":1,"23491":1,"23492":2,"23493":1,"23494":1,"23495":1,"23496":2,"23497":2,"23498":1,"23499":2,"23500":1,"23501":1,"23502":2,"23503":2,"23504":2,"23505":1,"23506":1,"23507":2,"23508":2,"23509":1,"23510":1,"23511":1,"23512":1,"23513":1,"23514":2,"23515":1,"23516":1,"23517":2,"23518":2,"23519":2,"23520":1,"23521":1,"23522":1,"23523":1,"23524":2,"23525":1,"23526":2,"23527":2,"23528":1,"23529":2,"23530":2,"23531":2,"23532":1,"23533":2,"23534":1,"23535":1,"23536":1,"23537":1,"23538":1,"23539":2,"23540":2,"23541":2,"23542":2,"23543":1,"23544":1,"23545":1,"23546":1,"23547":1,"23548":1,"23549":2,"23550":2,"23551":1,"23552":1,"23553":2,"23554":2,"23555":2,"23556":2,"23557":1,"23558":1,"23559":1,"23560":1,"23561":1,"23562":1,"23563":1,"23564":1,"23565":1,"23566":1,"23567":2,"23568":1,"23569":1,"23570":1,"23571":1,"23572":1,"23573":1,"23574":2,"23575":2,"23576":2,"23577":1,"23578":2,"23579":1,"23580":1,"23581":1,"23582":2,"23583":2,"23584":2,"23585":2,"23586":2,"23587":1,"23588":1,"23589":2,"23590":2,"23591":2,"23592":1,"23593":1,"23594":2,"23595":1,"23596":1,"23597":2,"23598":2,"23599":2,"23600":1,"23601":1,"23602":1,"23603":2,"23604":2,"23605":1,"23606":1,"23607":1,"23608":2,"23609":2,"23610":2,"23611":2,"23612":2,"23613":2,"23614":2,"23615":1,"23616":2,"23617":2,"23618":2,"23619":1,"23620":1,"23621":2,"23622":1,"23623":2,"23624":1,"23625":1,"23626":2,"23627":1,"23628":2,"23629":1,"23630":2,"23631":1,"23632":1,"23633":2,"23634":2,"23635":1,"23636":1,"23637":1,"23638":2,"23639":1,"23640":1,"23641":1,"23642":1,"23643":1,"23644":1,"23645":2,"23646":2,"23647":1,"23648":2,"23649":1,"23650":1,"23651":2,"23652":2,"23653":1,"23654":2,"23655":2,"23656":1,"23657":1,"23658":1,"23659":1,"23660":2,"23661":2,"23662":1,"23663":2,"23664":1,"23665":2,"23666":2,"23667":2,"23668":1,"23669":1,"23670":2,"23671":2,"23672":1,"23673":1,"23674":1,"23675":1,"23676":2,"23677":1,"23678":2,"23679":2,"23680":2,"23681":2,"23682":1,"23683":2,"23684":2,"23685":1,"23686":1,"23687":1,"23688":2,"23689":2,"23690":1,"23691":1,"23692":2,"23693":1,"23694":1,"23695":1,"23696":1,"23697":2,"23698":1,"23699":1,"23700":2,"23701":1,"23702":1,"23703":1,"23704":2,"23705":2,"23706":2,"23707":2,"23708":2,"23709":2,"23710":1,"23711":1,"23712":1,"23713":2,"23714":2,"23715":1,"23716":1,"23717":1,"23718":1,"23719":2,"23720":1,"23721":1,"23722":2,"23723":2,"23724":2,"23725":1,"23726":1,"23727":2,"23728":1,"23729":1,"23730":1,"23731":2,"23732":1,"23733":2,"23734":1,"23735":1,"23736":2,"23737":2,"23738":1,"23739":1,"23740":2,"23741":1,"23742":2,"23743":1,"23744":1,"23745":2,"23746":1,"23747":1,"23748":1,"23749":1,"23750":2,"23751":2,"23752":2,"23753":2,"23754":2,"23755":1,"23756":1,"23757":1,"23758":2,"23759":2,"23760":1,"23761":2,"23762":2,"23763":2,"23764":2,"23765":1,"23766":2,"23767":2,"23768":1,"23769":1,"23770":1,"23771":2,"23772":1,"23773":2,"23774":2,"23775":2,"23776":2,"23777":1,"23778":1,"23779":2,"23780":2,"23781":2,"23782":1,"23783":1,"23784":2,"23785":2,"23786":2,"23787":2,"23788":1,"23789":1,"23790":1,"23791":1,"23792":2,"23793":2,"23794":1,"23795":2,"23796":2,"23797":2,"23798":1,"23799":2,"23800":1,"23801":1,"23802":2,"23803":1,"23804":2,"23805":2,"23806":1,"23807":1,"23808":2,"23809":1,"23810":1,"23811":2,"23812":2,"23813":1,"23814":1,"23815":1,"23816":2,"23817":2,"23818":2,"23819":2,"23820":1,"23821":2,"23822":1,"23823":2,"23824":1,"23825":2,"23826":2,"23827":2,"23828":2,"23829":2,"23830":2,"23831":1,"23832":2,"23833":2,"23834":1,"23835":2,"23836":1,"23837":1,"23838":1,"23839":2,"23840":2,"23841":2,"23842":1,"23843":2,"23844":2,"23845":1,"23846":1,"23847":2,"23848":2,"23849":2,"23850":2,"23851":2,"23852":2,"23853":1,"23854":2,"23855":2,"23856":1,"23857":1,"23858":2,"23859":1,"23860":2,"23861":2,"23862":1,"23863":1,"23864":2,"23865":2,"23866":2,"23867":2,"23868":2,"23869":1,"23870":1,"23871":1,"23872":2,"23873":1,"23874":1,"23875":2,"23876":1,"23877":1,"23878":1,"23879":2,"23880":2,"23881":2,"23882":2,"23883":2,"23884":1,"23885":1,"23886":1,"23887":2,"23888":1,"23889":1,"23890":1,"23891":2,"23892":1,"23893":1,"23894":1,"23895":1,"23896":2,"23897":2,"23898":1,"23899":1,"23900":2,"23901":2,"23902":1,"23903":2,"23904":1,"23905":2,"23906":2,"23907":2,"23908":2,"23909":2,"23910":1,"23911":2,"23912":2,"23913":1,"23914":1,"23915":1,"23916":1,"23917":1,"23918":2,"23919":1,"23920":1,"23921":1,"23922":2,"23923":1,"23924":2,"23925":2,"23926":2,"23927":1,"23928":1,"23929":1,"23930":2,"23931":1,"23932":1,"23933":1,"23934":1,"23935":2,"23936":2,"23937":2,"23938":2,"23939":1,"23940":2,"23941":1,"23942":2,"23943":1,"23944":2,"23945":2,"23946":2,"23947":2,"23948":1,"23949":1,"23950":1,"23951":1,"23952":1,"23953":2,"23954":2,"23955":1,"23956":1,"23957":2,"23958":1,"23959":2,"23960":2,"23961":2,"23962":2,"23963":1,"23964":2,"23965":1,"23966":2,"23967":2,"23968":2,"23969":2,"23970":2,"23971":1,"23972":1,"23973":1,"23974":2,"23975":1,"23976":1,"23977":1,"23978":2,"23979":2,"23980":1,"23981":2,"23982":2,"23983":1,"23984":1,"23985":1,"23986":2,"23987":1,"23988":2,"23989":2,"23990":2,"23991":1,"23992":1,"23993":1,"23994":1,"23995":1,"23996":2,"23997":2,"23998":2,"23999":1,"24000":1,"24001":2,"24002":2,"24003":2,"24004":1,"24005":1,"24006":2,"24007":2,"24008":1,"24009":2,"24010":2,"24011":1,"24012":1,"24013":2,"24014":1,"24015":2,"24016":1,"24017":1,"24018":2,"24019":1,"24020":1,"24021":1,"24022":1,"24023":2,"24024":2,"24025":1,"24026":2,"24027":2,"24028":2,"24029":1,"24030":2,"24031":2,"24032":1,"24033":1,"24034":2,"24035":2,"24036":2,"24037":1,"24038":1,"24039":1,"24040":1,"24041":1,"24042":2,"24043":2,"24044":2,"24045":1,"24046":2,"24047":1,"24048":1,"24049":1,"24050":1,"24051":1,"24052":1,"24053":2,"24054":2,"24055":1,"24056":2,"24057":1,"24058":2,"24059":1,"24060":2,"24061":1,"24062":2,"24063":1,"24064":1,"24065":2,"24066":2,"24067":2,"24068":1,"24069":1,"24070":1,"24071":1,"24072":2,"24073":2,"24074":1,"24075":1,"24076":1,"24077":1,"24078":2,"24079":2,"24080":1,"24081":2,"24082":2,"24083":1,"24084":1,"24085":2,"24086":1,"24087":1,"24088":1,"24089":2,"24090":2,"24091":2,"24092":1,"24093":1,"24094":2,"24095":2,"24096":2,"24097":2,"24098":1,"24099":1,"24100":1,"24101":1,"24102":1,"24103":2,"24104":2,"24105":2,"24106":1,"24107":2,"24108":1,"24109":1,"24110":2,"24111":2,"24112":1,"24113":1,"24114":2,"24115":1,"24116":2,"24117":2,"24118":2,"24119":1,"24120":2,"24121":2,"24122":1,"24123":1,"24124":1,"24125":1,"24126":1,"24127":2,"24128":2,"24129":1,"24130":2,"24131":2,"24132":2,"24133":1,"24134":1,"24135":1,"24136":1,"24137":2,"24138":1,"24139":1,"24140":1,"24141":2,"24142":1,"24143":2,"24144":2,"24145":1,"24146":2,"24147":1,"24148":2,"24149":1,"24150":1,"24151":2,"24152":2,"24153":2,"24154":1,"24155":2,"24156":1,"24157":2,"24158":1,"24159":1,"24160":2,"24161":1,"24162":1,"24163":1,"24164":1,"24165":1,"24166":2,"24167":1,"24168":2,"24169":1,"24170":1,"24171":2,"24172":1,"24173":2,"24174":1,"24175":1,"24176":1,"24177":2,"24178":2,"24179":1,"24180":1,"24181":2,"24182":2,"24183":2,"24184":1,"24185":1,"24186":1,"24187":2,"24188":2,"24189":2,"24190":1,"24191":1,"24192":2,"24193":2,"24194":2,"24195":2,"24196":2,"24197":2,"24198":2,"24199":1,"24200":2,"24201":2,"24202":2,"24203":1,"24204":1,"24205":2,"24206":1,"24207":1,"24208":2,"24209":1,"24210":2,"24211":1,"24212":2,"24213":1,"24214":1,"24215":2,"24216":2,"24217":1,"24218":2,"24219":2,"24220":2,"24221":1,"24222":2,"24223":1,"24224":2,"24225":2,"24226":2,"24227":1,"24228":2,"24229":2,"24230":1,"24231":1,"24232":2,"24233":2,"24234":1,"24235":2,"24236":2,"24237":1,"24238":1,"24239":2,"24240":2,"24241":2,"24242":1,"24243":2,"24244":1,"24245":1,"24246":2,"24247":2,"24248":2,"24249":2,"24250":2,"24251":2,"24252":1,"24253":1,"24254":1,"24255":1,"24256":2,"24257":1,"24258":1,"24259":2,"24260":2,"24261":2,"24262":1,"24263":1,"24264":1,"24265":2,"24266":1,"24267":2,"24268":2,"24269":1,"24270":1,"24271":2,"24272":2,"24273":1,"24274":1,"24275":2,"24276":1,"24277":1,"24278":2,"24279":2,"24280":1,"24281":2,"24282":2,"24283":2,"24284":1,"24285":1,"24286":2,"24287":2,"24288":1,"24289":1,"24290":2,"24291":2,"24292":2,"24293":1,"24294":2,"24295":1,"24296":2,"24297":1,"24298":1,"24299":1,"24300":2,"24301":2,"24302":1,"24303":1,"24304":1,"24305":2,"24306":2,"24307":1,"24308":2,"24309":2,"24310":2,"24311":1,"24312":1,"24313":1,"24314":1,"24315":2,"24316":2,"24317":2,"24318":1,"24319":2,"24320":2,"24321":1,"24322":1,"24323":2,"24324":1,"24325":1,"24326":1,"24327":2,"24328":2,"24329":1,"24330":2,"24331":1,"24332":1,"24333":2,"24334":2,"24335":1,"24336":2,"24337":2,"24338":1,"24339":2,"24340":2,"24341":1,"24342":2,"24343":1,"24344":2,"24345":1,"24346":1,"24347":1,"24348":2,"24349":1,"24350":1,"24351":2,"24352":2,"24353":2,"24354":1,"24355":1,"24356":2,"24357":2,"24358":1,"24359":1,"24360":2,"24361":2,"24362":2,"24363":1,"24364":1,"24365":2,"24366":1,"24367":1,"24368":1,"24369":2,"24370":1,"24371":2,"24372":2,"24373":1,"24374":2,"24375":1,"24376":1,"24377":2,"24378":2,"24379":2,"24380":1,"24381":1,"24382":1,"24383":2,"24384":2,"24385":1,"24386":2,"24387":2,"24388":2,"24389":2,"24390":1,"24391":1,"24392":1,"24393":1,"24394":1,"24395":2,"24396":1,"24397":2,"24398":1,"24399":2,"24400":1,"24401":1,"24402":2,"24403":1,"24404":1,"24405":1,"24406":2,"24407":2,"24408":2,"24409":2,"24410":2,"24411":1,"24412":2,"24413":2,"24414":1,"24415":1,"24416":2,"24417":1,"24418":1,"24419":2,"24420":2,"24421":1,"24422":2,"24423":1,"24424":1,"24425":1,"24426":2,"24427":1,"24428":1,"24429":2,"24430":2,"24431":1,"24432":2,"24433":2,"24434":1,"24435":2,"24436":2,"24437":1,"24438":1,"24439":1,"24440":1,"24441":2,"24442":2,"24443":2,"24444":1,"24445":2,"24446":1,"24447":2,"24448":1,"24449":1,"24450":1,"24451":2,"24452":2,"24453":2,"24454":2,"24455":1,"24456":2,"24457":1,"24458":2,"24459":1,"24460":2,"24461":1,"24462":2,"24463":1,"24464":2,"24465":1,"24466":2,"24467":2,"24468":2,"24469":2,"24470":1,"24471":2,"24472":2,"24473":2,"24474":2,"24475":2,"24476":2,"24477":1,"24478":2,"24479":1,"24480":1,"24481":1,"24482":2,"24483":1,"24484":1,"24485":2,"24486":1,"24487":1,"24488":1,"24489":1,"24490":1,"24491":1,"24492":1,"24493":2,"24494":2,"24495":1,"24496":1,"24497":1,"24498":2,"24499":2,"24500":1,"24501":1,"24502":1,"24503":1,"24504":2,"24505":2,"24506":2,"24507":2,"24508":1,"24509":1,"24510":2,"24511":1,"24512":1,"24513":1,"24514":2,"24515":1,"24516":2,"24517":2,"24518":2,"24519":1,"24520":1,"24521":1,"24522":2,"24523":1,"24524":1,"24525":2,"24526":1,"24527":1,"24528":2,"24529":1,"24530":2,"24531":1,"24532":1,"24533":2,"24534":1,"24535":1,"24536":2,"24537":1,"24538":2,"24539":1,"24540":2,"24541":1,"24542":2,"24543":1,"24544":1,"24545":2,"24546":2,"24547":2,"24548":1,"24549":1,"24550":2,"24551":1,"24552":1,"24553":1,"24554":1,"24555":2,"24556":2,"24557":1,"24558":1,"24559":1,"24560":1,"24561":2,"24562":1,"24563":1,"24564":2,"24565":1,"24566":2,"24567":2,"24568":2,"24569":1,"24570":1,"24571":1,"24572":2,"24573":2,"24574":1,"24575":2,"24576":2,"24577":1,"24578":1,"24579":1,"24580":2,"24581":2,"24582":1,"24583":1,"24584":1,"24585":2,"24586":1,"24587":1,"24588":1,"24589":2,"24590":2,"24591":2,"24592":1,"24593":1,"24594":1,"24595":1,"24596":1,"24597":2,"24598":2,"24599":1,"24600":2,"24601":2,"24602":2,"24603":1,"24604":1,"24605":1,"24606":1,"24607":1,"24608":1,"24609":2,"24610":1,"24611":2,"24612":1,"24613":2,"24614":1,"24615":1,"24616":1,"24617":2,"24618":1,"24619":2,"24620":1,"24621":2,"24622":2,"24623":1,"24624":1,"24625":1,"24626":1,"24627":1,"24628":2,"24629":1,"24630":2,"24631":1,"24632":2,"24633":1,"24634":2,"24635":2,"24636":1,"24637":2,"24638":1,"24639":1,"24640":2,"24641":2,"24642":1,"24643":2,"24644":1,"24645":2,"24646":1,"24647":2,"24648":1,"24649":2,"24650":2,"24651":2,"24652":1,"24653":2,"24654":2,"24655":2,"24656":1,"24657":2,"24658":1,"24659":2,"24660":2,"24661":1,"24662":1,"24663":2,"24664":2,"24665":2,"24666":1,"24667":1,"24668":1,"24669":1,"24670":2,"24671":1,"24672":1,"24673":1,"24674":1,"24675":1,"24676":2,"24677":2,"24678":2,"24679":2,"24680":2,"24681":1,"24682":1,"24683":1,"24684":1,"24685":1,"24686":1,"24687":2,"24688":1,"24689":1,"24690":1,"24691":2,"24692":2,"24693":2,"24694":1,"24695":1,"24696":1,"24697":2,"24698":2,"24699":2,"24700":1,"24701":1,"24702":1,"24703":2,"24704":2,"24705":2,"24706":1,"24707":1,"24708":2,"24709":2,"24710":2,"24711":1,"24712":1,"24713":1,"24714":1,"24715":2,"24716":1,"24717":1,"24718":2,"24719":1,"24720":1,"24721":2,"24722":1,"24723":1,"24724":2,"24725":2,"24726":2,"24727":1,"24728":1,"24729":2,"24730":1,"24731":2,"24732":2,"24733":1,"24734":1,"24735":1,"24736":2,"24737":2,"24738":1,"24739":2,"24740":2,"24741":2,"24742":1,"24743":2,"24744":1,"24745":1,"24746":2,"24747":1,"24748":1,"24749":2,"24750":2,"24751":2,"24752":2,"24753":2,"24754":1,"24755":1,"24756":1,"24757":2,"24758":2,"24759":2,"24760":1,"24761":1,"24762":2,"24763":2,"24764":2,"24765":1,"24766":2,"24767":1,"24768":1,"24769":2,"24770":2,"24771":1,"24772":1,"24773":1,"24774":2,"24775":1,"24776":1,"24777":2,"24778":2,"24779":1,"24780":2,"24781":2,"24782":1,"24783":1,"24784":2,"24785":1,"24786":1,"24787":1,"24788":1,"24789":1,"24790":2,"24791":2,"24792":1,"24793":1,"24794":1,"24795":1,"24796":2,"24797":2,"24798":2,"24799":1,"24800":2,"24801":1,"24802":2,"24803":2,"24804":2,"24805":2,"24806":1,"24807":2,"24808":2,"24809":2,"24810":1,"24811":1,"24812":1,"24813":2,"24814":2,"24815":2,"24816":1,"24817":2,"24818":2,"24819":1,"24820":2,"24821":2,"24822":1,"24823":1,"24824":1,"24825":2,"24826":1,"24827":1,"24828":1,"24829":1,"24830":1,"24831":1,"24832":1,"24833":1,"24834":2,"24835":2,"24836":2,"24837":2,"24838":1,"24839":2,"24840":2,"24841":1,"24842":1,"24843":1,"24844":2,"24845":2,"24846":1,"24847":2,"24848":1,"24849":2,"24850":1,"24851":2,"24852":1,"24853":1,"24854":1,"24855":2,"24856":2,"24857":2,"24858":1,"24859":2,"24860":2,"24861":1,"24862":1,"24863":1,"24864":2,"24865":1,"24866":2,"24867":1,"24868":2,"24869":2,"24870":2,"24871":2,"24872":2,"24873":1,"24874":2,"24875":1,"24876":2,"24877":1,"24878":1,"24879":2,"24880":2,"24881":1,"24882":1,"24883":1,"24884":2,"24885":2,"24886":1,"24887":2,"24888":2,"24889":2,"24890":2,"24891":2,"24892":1,"24893":2,"24894":1,"24895":2,"24896":1,"24897":2,"24898":2,"24899":1,"24900":1,"24901":1,"24902":2,"24903":2,"24904":2,"24905":2,"24906":2,"24907":1,"24908":1,"24909":1,"24910":1,"24911":1,"24912":2,"24913":1,"24914":2,"24915":2,"24916":1,"24917":2,"24918":2,"24919":1,"24920":2,"24921":1,"24922":2,"24923":2,"24924":2,"24925":2,"24926":2,"24927":1,"24928":2,"24929":2,"24930":2,"24931":2,"24932":1,"24933":2,"24934":1,"24935":1,"24936":2,"24937":1,"24938":2,"24939":1,"24940":2,"24941":1,"24942":2,"24943":1,"24944":2,"24945":1,"24946":2,"24947":2,"24948":2,"24949":1,"24950":1,"24951":1,"24952":2,"24953":2,"24954":2,"24955":1,"24956":2,"24957":1,"24958":1,"24959":1,"24960":1,"24961":2,"24962":2,"24963":1,"24964":1,"24965":1,"24966":1,"24967":2,"24968":1,"24969":1,"24970":1,"24971":1,"24972":2,"24973":1,"24974":2,"24975":1,"24976":1,"24977":2,"24978":1,"24979":1,"24980":2,"24981":2,"24982":2,"24983":1,"24984":2,"24985":1,"24986":2,"24987":2,"24988":1,"24989":1,"24990":1,"24991":2,"24992":2,"24993":2,"24994":1,"24995":1,"24996":2,"24997":1,"24998":2,"24999":2,"25000":1,"25001":2,"25002":1,"25003":1,"25004":2,"25005":2,"25006":1,"25007":1,"25008":2,"25009":1,"25010":1,"25011":2,"25012":1,"25013":2,"25014":2,"25015":1,"25016":1,"25017":1,"25018":2,"25019":2,"25020":1,"25021":2,"25022":2,"25023":1,"25024":1,"25025":1,"25026":1,"25027":1,"25028":1,"25029":2,"25030":2,"25031":1,"25032":1,"25033":1,"25034":1,"25035":2,"25036":1,"25037":2,"25038":2,"25039":2,"25040":2,"25041":2,"25042":2,"25043":1,"25044":2,"25045":1,"25046":2,"25047":2,"25048":2,"25049":2,"25050":2,"25051":1,"25052":1,"25053":1,"25054":2,"25055":2,"25056":2,"25057":1,"25058":2,"25059":1,"25060":2,"25061":1,"25062":1,"25063":2,"25064":1,"25065":2,"25066":1,"25067":2,"25068":2,"25069":2,"25070":1,"25071":1,"25072":2,"25073":2,"25074":1,"25075":1,"25076":2,"25077":1,"25078":2,"25079":1,"25080":1,"25081":2,"25082":2,"25083":1,"25084":2,"25085":2,"25086":2,"25087":1,"25088":1,"25089":2,"25090":1,"25091":2,"25092":1,"25093":2,"25094":2,"25095":2,"25096":2,"25097":2,"25098":1,"25099":1,"25100":2,"25101":2,"25102":1,"25103":1,"25104":2,"25105":1,"25106":2,"25107":1,"25108":2,"25109":2,"25110":1,"25111":1,"25112":1,"25113":1,"25114":2,"25115":1,"25116":1,"25117":2,"25118":2,"25119":2,"25120":2,"25121":2,"25122":1,"25123":2,"25124":1,"25125":1,"25126":2,"25127":1,"25128":2,"25129":1,"25130":1,"25131":2,"25132":2,"25133":2,"25134":1,"25135":2,"25136":2,"25137":2,"25138":1,"25139":1,"25140":1,"25141":1,"25142":2,"25143":2,"25144":1,"25145":2,"25146":2,"25147":2,"25148":1,"25149":2,"25150":2,"25151":1,"25152":2,"25153":1,"25154":1,"25155":2,"25156":2,"25157":1,"25158":1,"25159":2,"25160":1,"25161":1,"25162":1,"25163":2,"25164":1,"25165":1,"25166":2,"25167":2,"25168":2,"25169":1,"25170":2,"25171":1,"25172":2,"25173":1,"25174":2,"25175":2,"25176":2,"25177":1,"25178":1,"25179":1,"25180":2,"25181":1,"25182":2,"25183":2,"25184":1,"25185":2,"25186":1,"25187":1,"25188":1,"25189":1,"25190":1,"25191":2,"25192":1,"25193":1,"25194":2,"25195":2,"25196":2,"25197":2,"25198":2,"25199":1,"25200":1,"25201":1,"25202":1,"25203":2,"25204":2,"25205":1,"25206":2,"25207":1,"25208":2,"25209":2,"25210":1,"25211":1,"25212":1,"25213":2,"25214":1,"25215":1,"25216":1,"25217":1,"25218":1,"25219":2,"25220":2,"25221":2,"25222":2,"25223":2,"25224":2,"25225":1,"25226":1,"25227":1,"25228":2,"25229":1,"25230":1,"25231":1,"25232":1,"25233":2,"25234":2,"25235":1,"25236":1,"25237":2,"25238":2,"25239":2,"25240":2,"25241":2,"25242":2,"25243":1,"25244":2,"25245":1,"25246":1,"25247":1,"25248":2,"25249":1,"25250":1,"25251":2,"25252":1,"25253":1,"25254":1,"25255":2,"25256":1,"25257":1,"25258":2,"25259":2,"25260":2,"25261":1,"25262":2,"25263":1,"25264":1,"25265":1,"25266":1,"25267":1,"25268":1,"25269":1,"25270":2,"25271":1,"25272":1,"25273":2,"25274":1,"25275":1,"25276":1,"25277":2,"25278":1,"25279":1,"25280":2,"25281":2,"25282":1,"25283":1,"25284":1,"25285":2,"25286":1,"25287":1,"25288":2,"25289":1,"25290":2,"25291":2,"25292":1,"25293":1,"25294":2,"25295":1,"25296":1,"25297":2,"25298":2,"25299":1,"25300":2,"25301":1,"25302":1,"25303":2,"25304":1,"25305":2,"25306":1,"25307":1,"25308":2,"25309":1,"25310":2,"25311":2,"25312":2,"25313":2,"25314":2,"25315":1,"25316":2,"25317":1,"25318":2,"25319":1,"25320":2,"25321":2,"25322":1,"25323":1,"25324":1,"25325":2,"25326":1,"25327":2,"25328":2,"25329":2,"25330":1,"25331":1,"25332":2,"25333":2,"25334":2,"25335":1,"25336":2,"25337":2,"25338":1,"25339":1,"25340":2,"25341":1,"25342":2,"25343":1,"25344":1,"25345":1,"25346":1,"25347":2,"25348":2,"25349":2,"25350":1,"25351":1,"25352":2,"25353":2,"25354":2,"25355":1,"25356":1,"25357":1,"25358":2,"25359":1,"25360":2,"25361":1,"25362":1,"25363":1,"25364":2,"25365":2,"25366":2,"25367":1,"25368":2,"25369":1,"25370":2,"25371":2,"25372":2,"25373":1,"25374":2,"25375":2,"25376":2,"25377":1,"25378":2,"25379":2,"25380":2,"25381":2,"25382":1,"25383":1,"25384":2,"25385":2,"25386":2,"25387":1,"25388":1,"25389":1,"25390":1,"25391":2,"25392":1,"25393":2,"25394":2,"25395":2,"25396":2,"25397":1,"25398":1,"25399":2,"25400":1,"25401":1,"25402":2,"25403":2,"25404":1,"25405":1,"25406":1,"25407":1,"25408":1,"25409":1,"25410":2,"25411":2,"25412":2,"25413":1,"25414":2,"25415":2,"25416":1,"25417":2,"25418":1,"25419":1,"25420":2,"25421":1,"25422":2,"25423":2,"25424":1,"25425":1,"25426":1,"25427":2,"25428":2,"25429":2,"25430":1,"25431":1,"25432":2,"25433":1,"25434":2,"25435":1,"25436":2,"25437":1,"25438":2,"25439":1,"25440":1,"25441":1,"25442":2,"25443":1,"25444":1,"25445":1,"25446":1,"25447":1,"25448":1,"25449":1,"25450":2,"25451":2,"25452":1,"25453":1,"25454":2,"25455":2,"25456":2,"25457":2,"25458":1,"25459":1,"25460":2,"25461":2,"25462":2,"25463":1,"25464":2,"25465":1,"25466":2,"25467":2,"25468":1,"25469":2,"25470":2,"25471":1,"25472":1,"25473":1,"25474":2,"25475":1,"25476":2,"25477":2,"25478":1,"25479":2,"25480":1,"25481":2,"25482":1,"25483":2,"25484":1,"25485":2,"25486":1,"25487":1,"25488":1,"25489":2,"25490":1,"25491":1,"25492":1,"25493":2,"25494":2,"25495":2,"25496":1,"25497":2,"25498":1,"25499":2,"25500":1,"25501":2,"25502":2,"25503":2,"25504":1,"25505":1,"25506":1,"25507":2,"25508":1,"25509":2,"25510":1,"25511":1,"25512":1,"25513":2,"25514":2,"25515":2,"25516":2,"25517":2,"25518":1,"25519":2,"25520":1,"25521":1,"25522":2,"25523":1,"25524":2,"25525":2,"25526":2,"25527":1,"25528":1,"25529":1,"25530":1,"25531":2,"25532":1,"25533":1,"25534":1,"25535":1,"25536":1,"25537":1,"25538":1,"25539":1,"25540":2,"25541":2,"25542":1,"25543":1,"25544":2,"25545":2,"25546":1,"25547":1,"25548":1,"25549":1,"25550":2,"25551":2,"25552":2,"25553":2,"25554":2,"25555":2,"25556":1,"25557":2,"25558":2,"25559":1,"25560":2,"25561":1,"25562":2,"25563":2,"25564":2,"25565":1,"25566":1,"25567":1,"25568":2,"25569":1,"25570":1,"25571":2,"25572":1,"25573":1,"25574":1,"25575":2,"25576":1,"25577":1,"25578":1,"25579":1,"25580":2,"25581":2,"25582":2,"25583":2,"25584":2,"25585":2,"25586":2,"25587":2,"25588":2,"25589":1,"25590":2,"25591":1,"25592":1,"25593":1,"25594":1,"25595":2,"25596":2,"25597":2,"25598":1,"25599":1,"25600":1,"25601":1,"25602":1,"25603":2,"25604":1,"25605":1,"25606":2,"25607":2,"25608":1,"25609":1,"25610":1,"25611":1,"25612":1,"25613":1,"25614":2,"25615":1,"25616":2,"25617":1,"25618":1,"25619":1,"25620":2,"25621":1,"25622":1,"25623":1,"25624":2,"25625":2,"25626":1,"25627":2,"25628":1,"25629":1,"25630":1,"25631":1,"25632":1,"25633":1,"25634":1,"25635":1,"25636":2,"25637":1,"25638":2,"25639":1,"25640":2,"25641":1,"25642":1,"25643":1,"25644":1,"25645":1,"25646":2,"25647":1,"25648":2,"25649":1,"25650":2,"25651":2,"25652":2,"25653":1,"25654":1,"25655":1,"25656":2,"25657":2,"25658":2,"25659":2,"25660":1,"25661":2,"25662":1,"25663":1,"25664":2,"25665":1,"25666":1,"25667":1,"25668":2,"25669":1,"25670":2,"25671":2,"25672":1,"25673":1,"25674":2,"25675":1,"25676":1,"25677":1,"25678":2,"25679":1,"25680":1,"25681":2,"25682":1,"25683":2,"25684":1,"25685":2,"25686":1,"25687":2,"25688":2,"25689":2,"25690":1,"25691":2,"25692":1,"25693":1,"25694":2,"25695":2,"25696":1,"25697":1,"25698":1,"25699":2,"25700":2,"25701":1,"25702":2,"25703":2,"25704":1,"25705":1,"25706":2,"25707":2,"25708":1,"25709":1,"25710":2,"25711":1,"25712":1,"25713":1,"25714":1,"25715":2,"25716":1,"25717":1,"25718":2,"25719":1,"25720":1,"25721":1,"25722":1,"25723":1,"25724":2,"25725":1,"25726":2,"25727":1,"25728":2,"25729":2,"25730":1,"25731":2,"25732":2,"25733":2,"25734":2,"25735":2,"25736":2,"25737":1,"25738":1,"25739":1,"25740":1,"25741":1,"25742":2,"25743":2,"25744":2,"25745":2,"25746":1,"25747":1,"25748":2,"25749":2,"25750":2,"25751":2,"25752":1,"25753":2,"25754":1,"25755":2,"25756":1,"25757":1,"25758":2,"25759":1,"25760":1,"25761":2,"25762":1,"25763":1,"25764":1,"25765":2,"25766":2,"25767":1,"25768":2,"25769":1,"25770":2,"25771":1,"25772":2,"25773":2,"25774":1,"25775":2,"25776":2,"25777":2,"25778":2,"25779":1,"25780":1,"25781":2,"25782":2,"25783":2,"25784":2,"25785":1,"25786":2,"25787":1,"25788":1,"25789":2,"25790":1,"25791":1,"25792":2,"25793":1,"25794":2,"25795":2,"25796":2,"25797":2,"25798":2,"25799":1,"25800":2,"25801":1,"25802":2,"25803":1,"25804":2,"25805":1,"25806":1,"25807":2,"25808":2,"25809":2,"25810":1,"25811":2,"25812":1,"25813":2,"25814":1,"25815":1,"25816":1,"25817":2,"25818":1,"25819":2,"25820":1,"25821":2,"25822":2,"25823":1,"25824":2,"25825":2,"25826":1,"25827":1,"25828":1,"25829":1,"25830":2,"25831":2,"25832":2,"25833":2,"25834":2,"25835":1,"25836":1,"25837":2,"25838":2,"25839":1,"25840":2,"25841":2,"25842":1,"25843":2,"25844":2,"25845":1,"25846":2,"25847":1,"25848":1,"25849":2,"25850":1,"25851":2,"25852":2,"25853":2,"25854":1,"25855":1,"25856":2,"25857":1,"25858":2,"25859":2,"25860":1,"25861":1,"25862":2,"25863":2,"25864":1,"25865":2,"25866":2,"25867":2,"25868":1,"25869":1,"25870":2,"25871":1,"25872":2,"25873":1,"25874":2,"25875":2,"25876":2,"25877":2,"25878":1,"25879":2,"25880":1,"25881":1,"25882":2,"25883":1,"25884":1,"25885":1,"25886":1,"25887":2,"25888":1,"25889":2,"25890":2,"25891":2,"25892":2,"25893":1,"25894":2,"25895":2,"25896":2,"25897":1,"25898":2,"25899":2,"25900":1,"25901":2,"25902":1,"25903":2,"25904":1,"25905":1,"25906":2,"25907":2,"25908":2,"25909":2,"25910":2,"25911":1,"25912":1,"25913":2,"25914":2,"25915":1,"25916":1,"25917":1,"25918":2,"25919":1,"25920":2,"25921":1,"25922":2,"25923":2,"25924":2,"25925":1,"25926":1,"25927":2,"25928":2,"25929":1,"25930":2,"25931":1,"25932":2,"25933":2,"25934":1,"25935":2,"25936":1,"25937":2,"25938":2,"25939":1,"25940":2,"25941":1,"25942":2,"25943":2,"25944":2,"25945":2,"25946":2,"25947":2,"25948":1,"25949":2,"25950":1,"25951":1,"25952":1,"25953":1,"25954":1,"25955":1,"25956":1,"25957":2,"25958":1,"25959":1,"25960":2,"25961":2,"25962":1,"25963":1,"25964":2,"25965":1,"25966":2,"25967":1,"25968":2,"25969":1,"25970":1,"25971":1,"25972":1,"25973":2,"25974":1,"25975":2,"25976":2,"25977":1,"25978":2,"25979":1,"25980":2,"25981":2,"25982":1,"25983":2,"25984":2,"25985":2,"25986":2,"25987":1,"25988":1,"25989":2,"25990":1,"25991":2,"25992":2,"25993":2,"25994":1,"25995":1,"25996":1,"25997":2,"25998":1,"25999":2,"26000":2,"26001":2,"26002":1,"26003":1,"26004":1,"26005":2,"26006":1,"26007":1,"26008":1,"26009":2,"26010":1,"26011":1,"26012":2,"26013":2,"26014":1,"26015":1,"26016":2,"26017":1,"26018":2,"26019":1,"26020":1,"26021":2,"26022":2,"26023":2,"26024":2,"26025":1,"26026":2,"26027":1,"26028":1,"26029":2,"26030":2,"26031":2,"26032":2,"26033":1,"26034":2,"26035":2,"26036":1,"26037":1,"26038":2,"26039":2,"26040":2,"26041":2,"26042":1,"26043":2,"26044":1,"26045":2,"26046":1,"26047":1,"26048":2,"26049":1,"26050":1,"26051":2,"26052":1,"26053":1,"26054":2,"26055":1,"26056":1,"26057":1,"26058":2,"26059":2,"26060":1,"26061":1,"26062":2,"26063":1,"26064":1,"26065":2,"26066":1,"26067":2,"26068":1,"26069":2,"26070":2,"26071":2,"26072":1,"26073":1,"26074":1,"26075":2,"26076":1,"26077":1,"26078":1,"26079":1,"26080":2,"26081":1,"26082":2,"26083":1,"26084":1,"26085":2,"26086":2,"26087":2,"26088":2,"26089":2,"26090":1,"26091":1,"26092":2,"26093":1,"26094":1,"26095":1,"26096":1,"26097":2,"26098":1,"26099":1,"26100":2,"26101":1,"26102":2,"26103":1,"26104":1,"26105":1,"26106":2,"26107":2,"26108":2,"26109":2,"26110":2,"26111":2,"26112":1,"26113":2,"26114":2,"26115":2,"26116":1,"26117":1,"26118":1,"26119":2,"26120":2,"26121":1,"26122":1,"26123":1,"26124":1,"26125":1,"26126":1,"26127":1,"26128":2,"26129":1,"26130":2,"26131":2,"26132":2,"26133":2,"26134":1,"26135":2,"26136":2,"26137":2,"26138":2,"26139":1,"26140":1,"26141":1,"26142":1,"26143":2,"26144":2,"26145":2,"26146":1,"26147":1,"26148":2,"26149":2,"26150":1,"26151":1,"26152":2,"26153":2,"26154":1,"26155":1,"26156":2,"26157":2,"26158":1,"26159":2,"26160":2,"26161":1,"26162":2,"26163":2,"26164":1,"26165":1,"26166":2,"26167":1,"26168":2,"26169":1,"26170":1,"26171":1,"26172":1,"26173":2,"26174":1,"26175":1,"26176":2,"26177":1,"26178":1,"26179":1,"26180":2,"26181":2,"26182":1,"26183":1,"26184":1,"26185":2,"26186":1,"26187":2,"26188":1,"26189":1,"26190":2,"26191":2,"26192":1,"26193":2,"26194":2,"26195":1,"26196":2,"26197":2,"26198":1,"26199":1,"26200":2,"26201":2,"26202":1,"26203":1,"26204":1,"26205":1,"26206":1,"26207":1,"26208":1,"26209":1,"26210":1,"26211":2,"26212":1,"26213":2,"26214":1,"26215":1,"26216":1,"26217":2,"26218":1,"26219":2,"26220":1,"26221":2,"26222":2,"26223":1,"26224":2,"26225":1,"26226":2,"26227":2,"26228":1,"26229":2,"26230":1,"26231":2,"26232":1,"26233":2,"26234":1,"26235":1,"26236":2,"26237":2,"26238":1,"26239":1,"26240":2,"26241":1,"26242":1,"26243":2,"26244":1,"26245":1,"26246":1,"26247":2,"26248":1,"26249":1,"26250":1,"26251":1,"26252":2,"26253":2,"26254":2,"26255":1,"26256":2,"26257":2,"26258":1,"26259":2,"26260":2,"26261":2,"26262":1,"26263":2,"26264":2,"26265":1,"26266":1,"26267":1,"26268":2,"26269":1,"26270":1,"26271":2,"26272":1,"26273":2,"26274":2,"26275":1,"26276":2,"26277":2,"26278":2,"26279":1,"26280":2,"26281":1,"26282":2,"26283":2,"26284":1,"26285":2,"26286":2,"26287":1,"26288":1,"26289":2,"26290":1,"26291":2,"26292":1,"26293":2,"26294":2,"26295":1,"26296":2,"26297":2,"26298":1,"26299":2,"26300":1,"26301":1,"26302":1,"26303":2,"26304":1,"26305":2,"26306":2,"26307":2,"26308":1,"26309":1,"26310":1,"26311":1,"26312":1,"26313":2,"26314":2,"26315":1,"26316":1,"26317":1,"26318":2,"26319":2,"26320":1,"26321":1,"26322":1,"26323":1,"26324":2,"26325":2,"26326":2,"26327":1,"26328":1,"26329":2,"26330":1,"26331":1,"26332":2,"26333":2,"26334":1,"26335":1,"26336":2,"26337":2,"26338":2,"26339":2,"26340":2,"26341":1,"26342":1,"26343":1,"26344":1,"26345":2,"26346":1,"26347":1,"26348":1,"26349":2,"26350":1,"26351":1,"26352":1,"26353":1,"26354":1,"26355":2,"26356":1,"26357":1,"26358":1,"26359":1,"26360":2,"26361":2,"26362":2,"26363":2,"26364":1,"26365":1,"26366":2,"26367":2,"26368":2,"26369":2,"26370":2,"26371":2,"26372":1,"26373":1,"26374":1,"26375":1,"26376":1,"26377":2,"26378":1,"26379":1,"26380":1,"26381":1,"26382":1,"26383":2,"26384":2,"26385":2,"26386":1,"26387":1,"26388":1,"26389":2,"26390":1,"26391":2,"26392":1,"26393":2,"26394":2,"26395":2,"26396":2,"26397":2,"26398":2,"26399":2,"26400":2,"26401":2,"26402":2,"26403":1,"26404":2,"26405":1,"26406":1,"26407":1,"26408":1,"26409":1,"26410":2,"26411":2,"26412":1,"26413":1,"26414":2,"26415":2,"26416":1,"26417":2,"26418":1,"26419":2,"26420":1,"26421":2,"26422":1,"26423":2,"26424":1,"26425":2,"26426":1,"26427":1,"26428":1,"26429":2,"26430":1,"26431":2,"26432":2,"26433":1,"26434":2,"26435":1,"26436":2,"26437":2,"26438":1,"26439":2,"26440":1,"26441":1,"26442":2,"26443":1,"26444":2,"26445":1,"26446":1,"26447":1,"26448":2,"26449":1,"26450":2,"26451":2,"26452":2,"26453":2,"26454":1,"26455":2,"26456":2,"26457":1,"26458":1,"26459":2,"26460":2,"26461":1,"26462":2,"26463":1,"26464":2,"26465":2,"26466":2,"26467":2,"26468":2,"26469":2,"26470":2,"26471":1,"26472":2,"26473":2,"26474":2,"26475":2,"26476":1,"26477":2,"26478":2,"26479":2,"26480":1,"26481":1,"26482":2,"26483":1,"26484":2,"26485":1,"26486":2,"26487":2,"26488":2,"26489":2,"26490":1,"26491":1,"26492":2,"26493":1,"26494":2,"26495":1,"26496":1,"26497":1,"26498":1,"26499":2,"26500":2,"26501":1,"26502":1,"26503":1,"26504":1,"26505":2,"26506":2,"26507":1,"26508":2,"26509":2,"26510":2,"26511":1,"26512":1,"26513":1,"26514":2,"26515":2,"26516":1,"26517":1,"26518":2,"26519":2,"26520":2,"26521":2,"26522":1,"26523":2,"26524":1,"26525":1,"26526":1,"26527":2,"26528":1,"26529":2,"26530":1,"26531":2,"26532":2,"26533":1,"26534":2,"26535":2,"26536":1,"26537":1,"26538":2,"26539":1,"26540":2,"26541":1,"26542":2,"26543":1,"26544":2,"26545":2,"26546":1,"26547":1,"26548":2,"26549":1,"26550":1,"26551":1,"26552":2,"26553":2,"26554":2,"26555":2,"26556":2,"26557":1,"26558":2,"26559":2,"26560":1,"26561":1,"26562":1,"26563":1,"26564":1,"26565":2,"26566":2,"26567":2,"26568":2,"26569":2,"26570":2,"26571":2,"26572":2,"26573":1,"26574":2,"26575":1,"26576":1,"26577":1,"26578":2,"26579":2,"26580":1,"26581":1,"26582":1,"26583":2,"26584":2,"26585":1,"26586":1,"26587":2,"26588":1,"26589":2,"26590":1,"26591":2,"26592":2,"26593":2,"26594":1,"26595":1,"26596":1,"26597":1,"26598":1,"26599":2,"26600":1,"26601":2,"26602":1,"26603":2,"26604":2,"26605":1,"26606":1,"26607":2,"26608":2,"26609":1,"26610":2,"26611":1,"26612":1,"26613":2,"26614":2,"26615":2,"26616":1,"26617":2,"26618":1,"26619":1,"26620":1,"26621":1,"26622":2,"26623":1,"26624":2,"26625":1,"26626":2,"26627":1,"26628":2,"26629":1,"26630":1,"26631":1,"26632":1,"26633":2,"26634":2,"26635":2,"26636":1,"26637":2,"26638":1,"26639":1,"26640":1,"26641":2,"26642":1,"26643":1,"26644":2,"26645":2,"26646":1,"26647":2,"26648":1,"26649":2,"26650":2,"26651":2,"26652":1,"26653":2,"26654":1,"26655":1,"26656":1,"26657":2,"26658":1,"26659":1,"26660":2,"26661":2,"26662":2,"26663":2,"26664":1,"26665":1,"26666":1,"26667":1,"26668":1,"26669":2,"26670":1,"26671":1,"26672":1,"26673":2,"26674":2,"26675":2,"26676":1,"26677":1,"26678":2,"26679":1,"26680":1,"26681":1,"26682":2,"26683":1,"26684":1,"26685":1,"26686":2,"26687":2,"26688":2,"26689":2,"26690":1,"26691":1,"26692":1,"26693":2,"26694":1,"26695":1,"26696":1,"26697":1,"26698":2,"26699":2,"26700":2,"26701":2,"26702":1,"26703":1,"26704":1,"26705":2,"26706":2,"26707":1,"26708":2,"26709":2,"26710":2,"26711":1,"26712":2,"26713":1,"26714":2,"26715":1,"26716":1,"26717":2,"26718":2,"26719":2,"26720":1,"26721":1,"26722":2,"26723":2,"26724":2,"26725":1,"26726":2,"26727":1,"26728":2,"26729":1,"26730":1,"26731":2,"26732":1,"26733":2,"26734":2,"26735":2,"26736":1,"26737":2,"26738":1,"26739":2,"26740":2,"26741":2,"26742":2,"26743":1,"26744":1,"26745":2,"26746":2,"26747":2,"26748":2,"26749":2,"26750":2,"26751":2,"26752":2,"26753":1,"26754":1,"26755":2,"26756":2,"26757":2,"26758":2,"26759":2,"26760":1,"26761":2,"26762":2,"26763":1,"26764":2,"26765":1,"26766":2,"26767":1,"26768":1,"26769":2,"26770":1,"26771":1,"26772":2,"26773":2,"26774":1,"26775":1,"26776":2,"26777":1,"26778":2,"26779":1,"26780":1,"26781":2,"26782":2,"26783":2,"26784":2,"26785":1,"26786":1,"26787":2,"26788":2,"26789":1,"26790":1,"26791":2,"26792":2,"26793":2,"26794":1,"26795":2,"26796":1,"26797":1,"26798":2,"26799":1,"26800":2,"26801":1,"26802":2,"26803":2,"26804":2,"26805":2,"26806":1,"26807":2,"26808":2,"26809":2,"26810":2,"26811":1,"26812":1,"26813":2,"26814":1,"26815":2,"26816":1,"26817":1,"26818":2,"26819":2,"26820":2,"26821":1,"26822":2,"26823":1,"26824":1,"26825":1,"26826":1,"26827":2,"26828":2,"26829":1,"26830":2,"26831":1,"26832":2,"26833":1,"26834":2,"26835":1,"26836":1,"26837":2,"26838":2,"26839":2,"26840":2,"26841":1,"26842":2,"26843":1,"26844":2,"26845":1,"26846":1,"26847":1,"26848":1,"26849":2,"26850":1,"26851":2,"26852":2,"26853":1,"26854":2,"26855":1,"26856":1,"26857":2,"26858":1,"26859":1,"26860":2,"26861":1,"26862":1,"26863":2,"26864":2,"26865":2,"26866":2,"26867":2,"26868":2,"26869":1,"26870":1,"26871":2,"26872":2,"26873":2,"26874":1,"26875":2,"26876":2,"26877":1,"26878":1,"26879":1,"26880":1,"26881":1,"26882":2,"26883":1,"26884":1,"26885":1,"26886":2,"26887":1,"26888":1,"26889":1,"26890":1,"26891":2,"26892":2,"26893":2,"26894":2,"26895":2,"26896":1,"26897":2,"26898":2,"26899":2,"26900":2,"26901":1,"26902":1,"26903":2,"26904":1,"26905":1,"26906":1,"26907":1,"26908":2,"26909":1,"26910":2,"26911":2,"26912":1,"26913":2,"26914":1,"26915":2,"26916":1,"26917":2,"26918":1,"26919":2,"26920":2,"26921":2,"26922":2,"26923":2,"26924":1,"26925":1,"26926":1,"26927":2,"26928":1,"26929":2,"26930":1,"26931":1,"26932":2,"26933":1,"26934":1,"26935":1,"26936":1,"26937":1,"26938":2,"26939":2,"26940":2,"26941":2,"26942":1,"26943":1,"26944":1,"26945":1,"26946":2,"26947":1,"26948":1,"26949":1,"26950":2,"26951":2,"26952":1,"26953":2,"26954":1,"26955":2,"26956":1,"26957":1,"26958":1,"26959":2,"26960":2,"26961":2,"26962":1,"26963":1,"26964":1,"26965":1,"26966":1,"26967":2,"26968":2,"26969":1,"26970":1,"26971":2,"26972":2,"26973":1,"26974":1,"26975":1,"26976":2,"26977":1,"26978":2,"26979":2,"26980":1,"26981":1,"26982":2,"26983":1,"26984":2,"26985":2,"26986":1,"26987":1,"26988":2,"26989":1,"26990":1,"26991":2,"26992":2,"26993":2,"26994":1,"26995":2,"26996":2,"26997":2,"26998":2,"26999":2,"27000":1,"27001":2,"27002":1,"27003":1,"27004":1,"27005":2,"27006":2,"27007":2,"27008":2,"27009":2,"27010":2,"27011":2,"27012":2,"27013":1,"27014":1,"27015":1,"27016":2,"27017":1,"27018":2,"27019":1,"27020":2,"27021":1,"27022":2,"27023":1,"27024":1,"27025":2,"27026":2,"27027":2,"27028":1,"27029":2,"27030":2,"27031":2,"27032":1,"27033":2,"27034":1,"27035":1,"27036":1,"27037":2,"27038":1,"27039":1,"27040":1,"27041":1,"27042":2,"27043":2,"27044":2,"27045":2,"27046":1,"27047":2,"27048":2,"27049":2,"27050":1,"27051":2,"27052":2,"27053":2,"27054":2,"27055":1,"27056":2,"27057":2,"27058":1,"27059":2,"27060":2,"27061":1,"27062":1,"27063":2,"27064":2,"27065":1,"27066":2,"27067":2,"27068":1,"27069":1,"27070":1,"27071":2,"27072":2,"27073":1,"27074":1,"27075":2,"27076":1,"27077":2,"27078":2,"27079":1,"27080":2,"27081":2,"27082":2,"27083":2,"27084":1,"27085":2,"27086":1,"27087":1,"27088":1,"27089":1,"27090":1,"27091":2,"27092":2,"27093":1,"27094":1,"27095":2,"27096":1,"27097":1,"27098":2,"27099":2,"27100":2,"27101":2,"27102":1,"27103":2,"27104":2,"27105":2,"27106":1,"27107":1,"27108":1,"27109":1,"27110":2,"27111":2,"27112":1,"27113":2,"27114":2,"27115":2,"27116":2,"27117":2,"27118":1,"27119":1,"27120":1,"27121":2,"27122":2,"27123":2,"27124":1,"27125":1,"27126":2,"27127":1,"27128":2,"27129":1,"27130":2,"27131":1,"27132":2,"27133":2,"27134":2,"27135":1,"27136":1,"27137":2,"27138":1,"27139":2,"27140":1,"27141":1,"27142":2,"27143":1,"27144":1,"27145":2,"27146":1,"27147":1,"27148":1,"27149":1,"27150":2,"27151":1,"27152":1,"27153":2,"27154":2,"27155":1,"27156":2,"27157":2,"27158":1,"27159":1,"27160":1,"27161":1,"27162":2,"27163":1,"27164":1,"27165":1,"27166":2,"27167":1,"27168":1,"27169":2,"27170":2,"27171":2,"27172":2,"27173":1,"27174":1,"27175":1,"27176":1,"27177":1,"27178":1,"27179":1,"27180":1,"27181":1,"27182":2,"27183":1,"27184":2,"27185":2,"27186":1,"27187":1,"27188":2,"27189":1,"27190":2,"27191":2,"27192":1,"27193":1,"27194":1,"27195":2,"27196":2,"27197":1,"27198":2,"27199":2,"27200":2,"27201":1,"27202":2,"27203":2,"27204":1,"27205":1,"27206":1,"27207":1,"27208":2,"27209":1,"27210":2,"27211":2,"27212":2,"27213":1,"27214":2,"27215":2,"27216":2,"27217":2,"27218":1,"27219":1,"27220":2,"27221":1,"27222":2,"27223":1,"27224":1,"27225":2,"27226":2,"27227":1,"27228":1,"27229":2,"27230":1,"27231":2,"27232":1,"27233":2,"27234":2,"27235":1,"27236":2,"27237":1,"27238":2,"27239":1,"27240":2,"27241":2,"27242":1,"27243":1,"27244":1,"27245":2,"27246":2,"27247":2,"27248":2,"27249":1,"27250":2,"27251":1,"27252":2,"27253":1,"27254":1,"27255":2,"27256":2,"27257":2,"27258":1,"27259":2,"27260":1,"27261":2,"27262":1,"27263":2,"27264":1,"27265":2,"27266":2,"27267":1,"27268":2,"27269":2,"27270":1,"27271":2,"27272":1,"27273":2,"27274":1,"27275":2,"27276":1,"27277":2,"27278":1,"27279":2,"27280":1,"27281":1,"27282":2,"27283":2,"27284":2,"27285":1,"27286":1,"27287":2,"27288":2,"27289":2,"27290":2,"27291":2,"27292":1,"27293":2,"27294":2,"27295":2,"27296":1,"27297":1,"27298":1,"27299":2,"27300":2,"27301":2,"27302":2,"27303":1,"27304":1,"27305":1,"27306":2,"27307":2,"27308":2,"27309":2,"27310":2,"27311":2,"27312":2,"27313":2,"27314":2,"27315":2,"27316":1,"27317":1,"27318":2,"27319":1,"27320":1,"27321":1,"27322":1,"27323":2,"27324":1,"27325":2,"27326":2,"27327":1,"27328":1,"27329":1,"27330":1,"27331":1,"27332":2,"27333":2,"27334":1,"27335":2,"27336":1,"27337":2,"27338":2,"27339":1,"27340":1,"27341":2,"27342":2,"27343":1,"27344":1,"27345":2,"27346":1,"27347":1,"27348":1,"27349":1,"27350":1,"27351":1,"27352":1,"27353":1,"27354":1,"27355":1,"27356":2,"27357":1,"27358":1,"27359":2,"27360":2,"27361":2,"27362":2,"27363":1,"27364":2,"27365":2,"27366":1,"27367":1,"27368":1,"27369":2,"27370":2,"27371":2,"27372":2,"27373":2,"27374":1,"27375":2,"27376":2,"27377":1,"27378":1,"27379":2,"27380":2,"27381":2,"27382":2,"27383":2,"27384":2,"27385":2,"27386":1,"27387":2,"27388":1,"27389":2,"27390":1,"27391":2,"27392":2,"27393":1,"27394":2,"27395":2,"27396":1,"27397":2,"27398":2,"27399":2,"27400":2,"27401":2,"27402":1,"27403":2,"27404":2,"27405":1,"27406":2,"27407":1,"27408":2,"27409":1,"27410":1,"27411":2,"27412":2,"27413":1,"27414":2,"27415":1,"27416":1,"27417":2,"27418":2,"27419":1,"27420":1,"27421":1,"27422":2,"27423":2,"27424":2,"27425":1,"27426":2,"27427":1,"27428":2,"27429":1,"27430":1,"27431":1,"27432":1,"27433":1,"27434":2,"27435":2,"27436":2,"27437":2,"27438":1,"27439":2,"27440":2,"27441":2,"27442":2,"27443":2,"27444":2,"27445":2,"27446":2,"27447":2,"27448":2,"27449":1,"27450":2,"27451":2,"27452":2,"27453":2,"27454":1,"27455":1,"27456":2,"27457":1,"27458":2,"27459":2,"27460":1,"27461":1,"27462":2,"27463":1,"27464":2,"27465":1,"27466":1,"27467":2,"27468":1,"27469":2,"27470":1,"27471":2,"27472":1,"27473":2,"27474":1,"27475":1,"27476":2,"27477":1,"27478":1,"27479":1,"27480":1,"27481":2,"27482":2,"27483":1,"27484":1,"27485":2,"27486":2,"27487":1,"27488":2,"27489":1,"27490":2,"27491":1,"27492":2,"27493":2,"27494":1,"27495":2,"27496":1,"27497":1,"27498":2,"27499":1,"27500":2,"27501":1,"27502":1,"27503":2,"27504":1,"27505":2,"27506":1,"27507":1,"27508":1,"27509":2,"27510":2,"27511":1,"27512":2,"27513":1,"27514":1,"27515":2,"27516":2,"27517":2,"27518":2,"27519":2,"27520":2,"27521":1,"27522":2,"27523":2,"27524":2,"27525":2,"27526":1,"27527":1,"27528":1,"27529":2,"27530":1,"27531":2,"27532":2,"27533":2,"27534":2,"27535":2,"27536":1,"27537":2,"27538":1,"27539":1,"27540":2,"27541":1,"27542":1,"27543":2,"27544":2,"27545":1,"27546":1,"27547":2,"27548":1,"27549":1,"27550":1,"27551":2,"27552":2,"27553":1,"27554":2,"27555":1,"27556":1,"27557":2,"27558":1,"27559":1,"27560":2,"27561":1,"27562":1,"27563":1,"27564":2,"27565":1,"27566":1,"27567":1,"27568":1,"27569":1,"27570":2,"27571":1,"27572":2,"27573":1,"27574":1,"27575":1,"27576":1,"27577":2,"27578":1,"27579":1,"27580":2,"27581":2,"27582":2,"27583":1,"27584":1,"27585":2,"27586":1,"27587":2,"27588":1,"27589":1,"27590":1,"27591":1,"27592":2,"27593":2,"27594":2,"27595":1,"27596":1,"27597":1,"27598":2,"27599":1,"27600":1,"27601":2,"27602":1,"27603":2,"27604":1,"27605":2,"27606":2,"27607":1,"27608":2,"27609":1,"27610":2,"27611":2,"27612":2,"27613":1,"27614":1,"27615":2,"27616":1,"27617":1,"27618":2,"27619":1,"27620":2,"27621":1,"27622":1,"27623":1,"27624":1,"27625":1,"27626":2,"27627":1,"27628":2,"27629":1,"27630":2,"27631":1,"27632":1,"27633":2,"27634":2,"27635":1,"27636":1,"27637":2,"27638":1,"27639":1,"27640":2,"27641":2,"27642":1,"27643":2,"27644":1,"27645":1,"27646":1,"27647":1,"27648":2,"27649":2,"27650":2,"27651":2,"27652":1,"27653":1,"27654":2,"27655":1,"27656":2,"27657":1,"27658":2,"27659":1,"27660":1,"27661":2,"27662":1,"27663":1,"27664":2,"27665":2,"27666":1,"27667":2,"27668":1,"27669":1,"27670":2,"27671":2,"27672":2,"27673":2,"27674":1,"27675":1,"27676":1,"27677":2,"27678":2,"27679":1,"27680":2,"27681":2,"27682":2,"27683":2,"27684":1,"27685":1,"27686":2,"27687":2,"27688":1,"27689":2,"27690":2,"27691":2,"27692":2,"27693":2,"27694":2,"27695":1,"27696":1,"27697":1,"27698":2,"27699":1,"27700":1,"27701":2,"27702":2,"27703":1,"27704":2,"27705":1,"27706":1,"27707":2,"27708":1,"27709":2,"27710":2,"27711":2,"27712":1,"27713":1,"27714":1,"27715":1,"27716":1,"27717":1,"27718":2,"27719":1,"27720":2,"27721":2,"27722":2,"27723":1,"27724":1,"27725":1,"27726":2,"27727":1,"27728":2,"27729":1,"27730":1,"27731":2,"27732":2,"27733":1,"27734":1,"27735":2,"27736":1,"27737":2,"27738":1,"27739":1,"27740":2,"27741":1,"27742":2,"27743":1,"27744":2,"27745":1,"27746":1,"27747":2,"27748":1,"27749":2,"27750":1,"27751":2,"27752":1,"27753":2,"27754":2,"27755":2,"27756":1,"27757":2,"27758":2,"27759":2,"27760":1,"27761":1,"27762":1,"27763":2,"27764":1,"27765":2,"27766":1,"27767":1,"27768":1,"27769":2,"27770":2,"27771":1,"27772":2,"27773":2,"27774":1,"27775":1,"27776":1,"27777":2,"27778":2,"27779":1,"27780":2,"27781":2,"27782":2,"27783":2,"27784":2,"27785":2,"27786":1,"27787":1,"27788":2,"27789":2,"27790":1,"27791":2,"27792":2,"27793":1,"27794":2,"27795":1,"27796":2,"27797":1,"27798":2,"27799":2,"27800":2,"27801":2,"27802":1,"27803":2,"27804":2,"27805":2,"27806":1,"27807":2,"27808":1,"27809":2,"27810":2,"27811":1,"27812":2,"27813":1,"27814":2,"27815":2,"27816":1,"27817":1,"27818":2,"27819":1,"27820":1,"27821":1,"27822":2,"27823":1,"27824":2,"27825":2,"27826":2,"27827":2,"27828":1,"27829":1,"27830":2,"27831":1,"27832":1,"27833":2,"27834":2,"27835":1,"27836":2,"27837":1,"27838":2,"27839":2,"27840":1,"27841":2,"27842":2,"27843":2,"27844":1,"27845":2,"27846":2,"27847":2,"27848":2,"27849":1,"27850":1,"27851":2,"27852":2,"27853":1,"27854":2,"27855":2,"27856":1,"27857":1,"27858":1,"27859":2,"27860":2,"27861":1,"27862":2,"27863":2,"27864":1,"27865":1,"27866":2,"27867":1,"27868":2,"27869":2,"27870":1,"27871":2,"27872":1,"27873":1,"27874":1,"27875":2,"27876":2,"27877":2,"27878":2,"27879":2,"27880":2,"27881":1,"27882":2,"27883":2,"27884":1,"27885":1,"27886":1,"27887":2,"27888":1,"27889":1,"27890":1,"27891":1,"27892":1,"27893":1,"27894":1,"27895":1,"27896":2,"27897":2,"27898":1,"27899":2,"27900":2,"27901":2,"27902":1,"27903":2,"27904":2,"27905":2,"27906":2,"27907":2,"27908":2,"27909":1,"27910":2,"27911":2,"27912":1,"27913":2,"27914":1,"27915":1,"27916":1,"27917":1,"27918":2,"27919":2,"27920":2,"27921":2,"27922":1,"27923":1,"27924":1,"27925":1,"27926":1,"27927":1,"27928":1,"27929":2,"27930":2,"27931":1,"27932":1,"27933":1,"27934":2,"27935":2,"27936":2,"27937":1,"27938":1,"27939":2,"27940":1,"27941":2,"27942":2,"27943":1,"27944":1,"27945":2,"27946":2,"27947":2,"27948":2,"27949":1,"27950":2,"27951":1,"27952":2,"27953":1,"27954":1,"27955":1,"27956":2,"27957":2,"27958":1,"27959":2,"27960":1,"27961":1,"27962":1,"27963":2,"27964":1,"27965":1,"27966":1,"27967":1,"27968":2,"27969":2,"27970":1,"27971":1,"27972":1,"27973":2,"27974":2,"27975":2,"27976":2,"27977":2,"27978":1,"27979":1,"27980":2,"27981":2,"27982":2,"27983":2,"27984":2,"27985":1,"27986":1,"27987":1,"27988":2,"27989":2,"27990":2,"27991":2,"27992":1,"27993":1,"27994":1,"27995":1,"27996":1,"27997":1,"27998":1,"27999":2,"28000":1,"28001":1,"28002":2,"28003":1,"28004":2,"28005":2,"28006":2,"28007":2,"28008":1,"28009":2,"28010":2,"28011":1,"28012":1,"28013":2,"28014":1,"28015":1,"28016":2,"28017":1,"28018":2,"28019":1,"28020":1,"28021":2,"28022":2,"28023":1,"28024":2,"28025":1,"28026":2,"28027":2,"28028":1,"28029":1,"28030":1,"28031":1,"28032":2,"28033":1,"28034":1,"28035":2,"28036":2,"28037":2,"28038":1,"28039":2,"28040":2,"28041":2,"28042":1,"28043":1,"28044":1,"28045":1,"28046":2,"28047":2,"28048":1,"28049":1,"28050":1,"28051":1,"28052":1,"28053":2,"28054":1,"28055":2,"28056":2,"28057":2,"28058":1,"28059":2,"28060":1,"28061":1,"28062":2,"28063":1,"28064":2,"28065":2,"28066":1,"28067":2,"28068":1,"28069":2,"28070":1,"28071":2,"28072":2,"28073":1,"28074":1,"28075":1,"28076":1,"28077":2,"28078":1,"28079":1,"28080":2,"28081":2,"28082":1,"28083":1,"28084":1,"28085":1,"28086":2,"28087":2,"28088":1,"28089":1,"28090":1,"28091":1,"28092":1,"28093":1,"28094":2,"28095":2,"28096":1,"28097":2,"28098":2,"28099":1,"28100":1,"28101":1,"28102":1,"28103":1,"28104":1,"28105":2,"28106":2,"28107":1,"28108":2,"28109":2,"28110":2,"28111":2,"28112":1,"28113":1,"28114":2,"28115":1,"28116":2,"28117":1,"28118":1,"28119":2,"28120":1,"28121":1,"28122":2,"28123":1,"28124":1,"28125":1,"28126":2,"28127":2,"28128":1,"28129":2,"28130":2,"28131":2,"28132":1,"28133":1,"28134":2,"28135":1,"28136":1,"28137":1,"28138":2,"28139":2,"28140":2,"28141":2,"28142":1,"28143":1,"28144":2,"28145":2,"28146":1,"28147":1,"28148":2,"28149":2,"28150":1,"28151":1,"28152":2,"28153":2,"28154":2,"28155":1,"28156":2,"28157":1,"28158":2,"28159":2,"28160":2,"28161":1,"28162":1,"28163":2,"28164":2,"28165":2,"28166":2,"28167":2,"28168":1,"28169":2,"28170":1,"28171":1,"28172":2,"28173":2,"28174":1,"28175":1,"28176":2,"28177":2,"28178":1,"28179":2,"28180":2,"28181":1,"28182":1,"28183":1,"28184":2,"28185":1,"28186":1,"28187":1,"28188":2,"28189":2,"28190":1,"28191":2,"28192":2,"28193":1,"28194":2,"28195":2,"28196":1,"28197":1,"28198":2,"28199":2,"28200":1,"28201":2,"28202":1,"28203":1,"28204":1,"28205":1,"28206":2,"28207":1,"28208":1,"28209":2,"28210":1,"28211":2,"28212":2,"28213":2,"28214":1,"28215":2,"28216":2,"28217":2,"28218":2,"28219":1,"28220":2,"28221":1,"28222":1,"28223":2,"28224":1,"28225":1,"28226":1,"28227":1,"28228":2,"28229":2,"28230":1,"28231":2,"28232":2,"28233":2,"28234":2,"28235":2,"28236":2,"28237":1,"28238":1,"28239":2,"28240":2,"28241":2,"28242":1,"28243":2,"28244":2,"28245":1,"28246":2,"28247":2,"28248":1,"28249":1,"28250":1,"28251":2,"28252":2,"28253":2,"28254":2,"28255":1,"28256":1,"28257":2,"28258":1,"28259":2,"28260":1,"28261":2,"28262":2,"28263":1,"28264":2,"28265":2,"28266":2,"28267":2,"28268":2,"28269":1,"28270":2,"28271":2,"28272":1,"28273":2,"28274":2,"28275":1,"28276":1,"28277":2,"28278":1,"28279":2,"28280":2,"28281":2,"28282":2,"28283":2,"28284":2,"28285":2,"28286":2,"28287":1,"28288":1,"28289":1,"28290":2,"28291":1,"28292":2,"28293":2,"28294":2,"28295":1,"28296":1,"28297":1,"28298":2,"28299":2,"28300":2,"28301":2,"28302":2,"28303":2,"28304":2,"28305":2,"28306":1,"28307":1,"28308":2,"28309":1,"28310":1,"28311":1,"28312":1,"28313":2,"28314":2,"28315":2,"28316":2,"28317":1,"28318":1,"28319":2,"28320":1,"28321":2,"28322":1,"28323":2,"28324":1,"28325":1,"28326":2,"28327":2,"28328":2,"28329":2,"28330":2,"28331":1,"28332":2,"28333":1,"28334":2,"28335":2,"28336":2,"28337":1,"28338":2,"28339":1,"28340":1,"28341":1,"28342":1,"28343":1,"28344":2,"28345":2,"28346":1,"28347":2,"28348":2,"28349":2,"28350":2,"28351":2,"28352":2,"28353":1,"28354":2,"28355":2,"28356":2,"28357":1,"28358":1,"28359":1,"28360":2,"28361":1,"28362":1,"28363":1,"28364":2,"28365":1,"28366":2,"28367":2,"28368":2,"28369":2,"28370":1,"28371":2,"28372":2,"28373":1,"28374":2,"28375":2,"28376":2,"28377":2,"28378":1,"28379":2,"28380":2,"28381":1,"28382":1,"28383":2,"28384":2,"28385":2,"28386":1,"28387":1,"28388":1,"28389":1,"28390":2,"28391":2,"28392":2,"28393":1,"28394":1,"28395":2,"28396":1,"28397":1,"28398":1,"28399":1,"28400":2,"28401":1,"28402":2,"28403":1,"28404":1,"28405":2,"28406":1,"28407":1,"28408":1,"28409":1,"28410":1,"28411":1,"28412":1,"28413":1,"28414":2,"28415":1,"28416":1,"28417":1,"28418":2,"28419":1,"28420":2,"28421":2,"28422":2,"28423":1,"28424":1,"28425":2,"28426":2,"28427":1,"28428":2,"28429":1,"28430":2,"28431":1,"28432":1,"28433":1,"28434":2,"28435":2,"28436":2,"28437":2,"28438":1,"28439":1,"28440":2,"28441":1,"28442":1,"28443":2,"28444":2,"28445":2,"28446":2,"28447":2,"28448":2,"28449":1,"28450":2,"28451":1,"28452":1,"28453":1,"28454":1,"28455":2,"28456":1,"28457":1,"28458":2,"28459":1,"28460":1,"28461":2,"28462":1,"28463":2,"28464":2,"28465":1,"28466":1,"28467":1,"28468":2,"28469":2,"28470":1,"28471":1,"28472":1,"28473":2,"28474":2,"28475":2,"28476":1,"28477":2,"28478":2,"28479":2,"28480":1,"28481":2,"28482":1,"28483":2,"28484":2,"28485":2,"28486":2,"28487":1,"28488":1,"28489":1,"28490":1,"28491":1,"28492":1,"28493":2,"28494":1,"28495":1,"28496":2,"28497":1,"28498":2,"28499":2,"28500":1,"28501":2,"28502":2,"28503":2,"28504":1,"28505":1,"28506":1,"28507":1,"28508":1,"28509":1,"28510":2,"28511":1,"28512":2,"28513":2,"28514":2,"28515":1,"28516":2,"28517":1,"28518":1,"28519":1,"28520":1,"28521":2,"28522":1,"28523":2,"28524":1,"28525":1,"28526":1,"28527":2,"28528":2,"28529":1,"28530":1,"28531":2,"28532":1,"28533":2,"28534":2,"28535":2,"28536":2,"28537":2,"28538":1,"28539":1,"28540":1,"28541":1,"28542":2,"28543":2,"28544":2,"28545":2,"28546":2,"28547":1,"28548":2,"28549":1,"28550":1,"28551":2,"28552":1,"28553":2,"28554":2,"28555":2,"28556":1,"28557":2,"28558":1,"28559":2,"28560":2,"28561":1,"28562":1,"28563":1,"28564":2,"28565":1,"28566":2,"28567":2,"28568":2,"28569":2,"28570":2,"28571":1,"28572":2,"28573":1,"28574":2,"28575":1,"28576":1,"28577":2,"28578":1,"28579":2,"28580":1,"28581":1,"28582":2,"28583":2,"28584":2,"28585":1,"28586":1,"28587":1,"28588":2,"28589":1,"28590":2,"28591":2,"28592":1,"28593":1,"28594":1,"28595":1,"28596":2,"28597":2,"28598":1,"28599":2,"28600":2,"28601":1,"28602":2,"28603":2,"28604":2,"28605":2,"28606":2,"28607":1,"28608":1,"28609":1,"28610":1,"28611":1,"28612":2,"28613":2,"28614":2,"28615":1,"28616":2,"28617":1,"28618":1,"28619":2,"28620":1,"28621":1,"28622":2,"28623":2,"28624":2,"28625":2,"28626":1,"28627":1,"28628":2,"28629":1,"28630":2,"28631":2,"28632":2,"28633":1,"28634":1,"28635":2,"28636":1,"28637":1,"28638":2,"28639":1,"28640":2,"28641":2,"28642":1,"28643":2,"28644":1,"28645":2,"28646":2,"28647":1,"28648":2,"28649":1,"28650":1,"28651":1,"28652":2,"28653":2,"28654":1,"28655":2,"28656":1,"28657":2,"28658":1,"28659":1,"28660":1,"28661":2,"28662":2,"28663":2,"28664":1,"28665":1,"28666":1,"28667":1,"28668":1,"28669":1,"28670":1,"28671":2,"28672":1,"28673":1,"28674":1,"28675":2,"28676":1,"28677":1,"28678":2,"28679":1,"28680":1,"28681":1,"28682":2,"28683":1,"28684":1,"28685":2,"28686":1,"28687":2,"28688":2,"28689":1,"28690":2,"28691":2,"28692":2,"28693":1,"28694":2,"28695":1,"28696":1,"28697":2,"28698":1,"28699":1,"28700":1,"28701":1,"28702":1,"28703":2,"28704":1,"28705":2,"28706":2,"28707":1,"28708":2,"28709":2,"28710":2,"28711":1,"28712":2,"28713":1,"28714":2,"28715":2,"28716":1,"28717":1,"28718":2,"28719":1,"28720":2,"28721":1,"28722":1,"28723":1,"28724":2,"28725":2,"28726":2,"28727":1,"28728":2,"28729":2,"28730":1,"28731":1,"28732":1,"28733":1,"28734":1,"28735":1,"28736":2,"28737":1,"28738":2,"28739":2,"28740":2,"28741":2,"28742":1,"28743":2,"28744":2,"28745":1,"28746":2,"28747":1,"28748":1,"28749":2,"28750":1,"28751":2,"28752":2,"28753":1,"28754":2,"28755":2,"28756":1,"28757":2,"28758":2,"28759":1,"28760":1,"28761":2,"28762":1,"28763":2,"28764":2,"28765":1,"28766":2,"28767":1,"28768":2,"28769":1,"28770":2,"28771":2,"28772":1,"28773":1,"28774":2,"28775":2,"28776":1,"28777":1,"28778":2,"28779":2,"28780":2,"28781":2,"28782":1,"28783":2,"28784":2,"28785":2,"28786":2,"28787":2,"28788":2,"28789":1,"28790":1,"28791":2,"28792":1,"28793":2,"28794":2,"28795":2,"28796":2,"28797":2,"28798":2,"28799":1,"28800":2,"28801":1,"28802":2,"28803":1,"28804":1,"28805":1,"28806":2,"28807":1,"28808":2,"28809":2,"28810":2,"28811":2,"28812":1,"28813":1,"28814":1,"28815":2,"28816":1,"28817":1,"28818":2,"28819":1,"28820":2,"28821":2,"28822":2,"28823":1,"28824":1,"28825":2,"28826":2,"28827":2,"28828":1,"28829":2,"28830":1,"28831":2,"28832":1,"28833":2,"28834":2,"28835":1,"28836":1,"28837":2,"28838":2,"28839":2,"28840":2,"28841":1,"28842":2,"28843":1,"28844":2,"28845":1,"28846":2,"28847":1,"28848":1,"28849":1,"28850":2,"28851":1,"28852":1,"28853":1,"28854":1,"28855":1,"28856":1,"28857":2,"28858":2,"28859":1,"28860":2,"28861":2,"28862":2,"28863":2,"28864":1,"28865":2,"28866":2,"28867":1,"28868":2,"28869":2,"28870":1,"28871":2,"28872":1,"28873":2,"28874":2,"28875":1,"28876":2,"28877":1,"28878":2,"28879":2,"28880":1,"28881":2,"28882":2,"28883":1,"28884":1,"28885":2,"28886":2,"28887":1,"28888":2,"28889":2,"28890":2,"28891":2,"28892":2,"28893":2,"28894":1,"28895":1,"28896":2,"28897":1,"28898":1,"28899":2,"28900":2,"28901":1,"28902":2,"28903":1,"28904":1,"28905":2,"28906":1,"28907":1,"28908":2,"28909":2,"28910":2,"28911":2,"28912":1,"28913":2,"28914":1,"28915":1,"28916":1,"28917":2,"28918":2,"28919":1,"28920":1,"28921":2,"28922":2,"28923":1,"28924":1,"28925":1,"28926":1,"28927":2,"28928":2,"28929":1,"28930":1,"28931":2,"28932":2,"28933":1,"28934":2,"28935":1,"28936":2,"28937":2,"28938":1,"28939":1,"28940":1,"28941":1,"28942":1,"28943":1,"28944":1,"28945":1,"28946":2,"28947":2,"28948":1,"28949":1,"28950":1,"28951":2,"28952":2,"28953":1,"28954":1,"28955":1,"28956":2,"28957":1,"28958":2,"28959":1,"28960":2,"28961":2,"28962":2,"28963":1,"28964":2,"28965":2,"28966":2,"28967":2,"28968":2,"28969":2,"28970":2,"28971":1,"28972":1,"28973":1,"28974":2,"28975":2,"28976":1,"28977":2,"28978":2,"28979":2,"28980":1,"28981":2,"28982":1,"28983":2,"28984":2,"28985":1,"28986":2,"28987":2,"28988":2,"28989":1,"28990":2,"28991":1,"28992":1,"28993":1,"28994":2,"28995":2,"28996":2,"28997":2,"28998":2,"28999":1,"29000":2,"29001":1,"29002":1,"29003":2,"29004":1,"29005":2,"29006":2,"29007":1,"29008":1,"29009":1,"29010":1,"29011":2,"29012":1,"29013":2,"29014":2,"29015":1,"29016":1,"29017":2,"29018":2,"29019":1,"29020":1,"29021":2,"29022":2,"29023":2,"29024":1,"29025":2,"29026":1,"29027":1,"29028":2,"29029":1,"29030":2,"29031":2,"29032":2,"29033":1,"29034":2,"29035":1,"29036":1,"29037":1,"29038":1,"29039":1,"29040":2,"29041":1,"29042":2,"29043":2,"29044":1,"29045":2,"29046":1,"29047":1,"29048":1,"29049":1,"29050":2,"29051":2,"29052":2,"29053":2,"29054":2,"29055":2,"29056":1,"29057":1,"29058":1,"29059":1,"29060":2,"29061":1,"29062":1,"29063":1,"29064":2,"29065":1,"29066":1,"29067":2,"29068":2,"29069":1,"29070":1,"29071":1,"29072":2,"29073":2,"29074":1,"29075":1,"29076":2,"29077":2,"29078":1,"29079":1,"29080":1,"29081":2,"29082":2,"29083":1,"29084":1,"29085":2,"29086":1,"29087":1,"29088":1,"29089":1,"29090":1,"29091":1,"29092":2,"29093":2,"29094":2,"29095":2,"29096":2,"29097":1,"29098":2,"29099":1,"29100":2,"29101":1,"29102":2,"29103":1,"29104":2,"29105":2,"29106":2,"29107":1,"29108":1,"29109":2,"29110":2,"29111":1,"29112":1,"29113":1,"29114":2,"29115":1,"29116":2,"29117":1,"29118":2,"29119":2,"29120":2,"29121":2,"29122":1,"29123":1,"29124":1,"29125":2,"29126":2,"29127":2,"29128":2,"29129":1,"29130":1,"29131":1,"29132":1,"29133":2,"29134":2,"29135":2,"29136":2,"29137":1,"29138":2,"29139":1,"29140":2,"29141":2,"29142":2,"29143":1,"29144":1,"29145":2,"29146":1,"29147":2,"29148":1,"29149":2,"29150":2,"29151":1,"29152":1,"29153":2,"29154":1,"29155":1,"29156":2,"29157":1,"29158":1,"29159":2,"29160":2,"29161":1,"29162":2,"29163":1,"29164":2,"29165":2,"29166":1,"29167":1,"29168":2,"29169":1,"29170":2,"29171":2,"29172":1,"29173":1,"29174":2,"29175":1,"29176":1,"29177":2,"29178":1,"29179":2,"29180":2,"29181":1,"29182":2,"29183":1,"29184":2,"29185":2,"29186":1,"29187":1,"29188":1,"29189":1,"29190":1,"29191":1,"29192":2,"29193":2,"29194":2,"29195":2,"29196":2,"29197":1,"29198":2,"29199":1,"29200":2,"29201":2,"29202":2,"29203":2,"29204":1,"29205":2,"29206":2,"29207":2,"29208":2,"29209":2,"29210":1,"29211":2,"29212":2,"29213":2,"29214":2,"29215":2,"29216":2,"29217":1,"29218":1,"29219":1,"29220":2,"29221":2,"29222":1,"29223":2,"29224":2,"29225":1,"29226":2,"29227":2,"29228":2,"29229":2,"29230":1,"29231":1,"29232":1,"29233":1,"29234":2,"29235":2,"29236":1,"29237":1,"29238":2,"29239":2,"29240":2,"29241":1,"29242":2,"29243":1,"29244":2,"29245":2,"29246":2,"29247":1,"29248":1,"29249":1,"29250":1,"29251":2,"29252":2,"29253":1,"29254":1,"29255":2,"29256":1,"29257":2,"29258":2,"29259":1,"29260":2,"29261":1,"29262":2,"29263":2,"29264":1,"29265":2,"29266":2,"29267":1,"29268":2,"29269":1,"29270":2,"29271":1,"29272":2,"29273":2,"29274":1,"29275":1,"29276":2,"29277":2,"29278":2,"29279":1,"29280":1,"29281":1,"29282":2,"29283":1,"29284":2,"29285":2,"29286":2,"29287":1,"29288":2,"29289":1,"29290":2,"29291":1,"29292":1,"29293":1,"29294":2,"29295":2,"29296":2,"29297":2,"29298":1,"29299":2,"29300":2,"29301":1,"29302":1,"29303":2,"29304":1,"29305":1,"29306":2,"29307":2,"29308":1,"29309":2,"29310":2,"29311":1,"29312":2,"29313":2,"29314":1,"29315":2,"29316":2,"29317":1,"29318":1,"29319":2,"29320":1,"29321":1,"29322":2,"29323":1,"29324":1,"29325":2,"29326":2,"29327":2,"29328":2,"29329":2,"29330":2,"29331":2,"29332":1,"29333":2,"29334":1,"29335":1,"29336":1,"29337":1,"29338":1,"29339":1,"29340":2,"29341":2,"29342":2,"29343":2,"29344":1,"29345":1,"29346":2,"29347":1,"29348":2,"29349":2,"29350":1,"29351":1,"29352":1,"29353":2,"29354":2,"29355":2,"29356":1,"29357":1,"29358":2,"29359":1,"29360":2,"29361":2,"29362":2,"29363":1,"29364":2,"29365":1,"29366":2,"29367":2,"29368":1,"29369":2,"29370":1,"29371":1,"29372":2,"29373":2,"29374":2,"29375":1,"29376":1,"29377":1,"29378":1,"29379":1,"29380":2,"29381":2,"29382":2,"29383":1,"29384":2,"29385":2,"29386":2,"29387":1,"29388":2,"29389":2,"29390":2,"29391":2,"29392":2,"29393":2,"29394":2,"29395":2,"29396":1,"29397":1,"29398":2,"29399":1,"29400":1,"29401":2,"29402":1,"29403":1,"29404":2,"29405":2,"29406":2,"29407":1,"29408":1,"29409":1,"29410":2,"29411":1,"29412":2,"29413":1,"29414":1,"29415":2,"29416":1,"29417":1,"29418":1,"29419":1,"29420":2,"29421":2,"29422":1,"29423":1,"29424":2,"29425":2,"29426":2,"29427":1,"29428":2,"29429":1,"29430":1,"29431":2,"29432":1,"29433":1,"29434":1,"29435":2,"29436":2,"29437":1,"29438":2,"29439":2,"29440":2,"29441":2,"29442":1,"29443":2,"29444":1,"29445":1,"29446":2,"29447":1,"29448":2,"29449":2,"29450":1,"29451":1,"29452":2,"29453":2,"29454":1,"29455":2,"29456":1,"29457":1,"29458":1,"29459":2,"29460":2,"29461":1,"29462":2,"29463":1,"29464":2,"29465":2,"29466":2,"29467":2,"29468":1,"29469":2,"29470":2,"29471":1,"29472":2,"29473":1,"29474":2,"29475":1,"29476":2,"29477":2,"29478":2,"29479":2,"29480":2,"29481":2,"29482":2,"29483":1,"29484":2,"29485":2,"29486":2,"29487":1,"29488":2,"29489":1,"29490":1,"29491":2,"29492":1,"29493":1,"29494":2,"29495":1,"29496":2,"29497":1,"29498":1,"29499":2,"29500":1,"29501":1,"29502":2,"29503":2,"29504":1,"29505":2,"29506":2,"29507":2,"29508":2,"29509":1,"29510":2,"29511":1,"29512":2,"29513":2,"29514":2,"29515":2,"29516":2,"29517":1,"29518":2,"29519":1,"29520":2,"29521":1,"29522":2,"29523":2,"29524":2,"29525":2,"29526":2,"29527":1,"29528":1,"29529":2,"29530":2,"29531":2,"29532":1,"29533":1,"29534":1,"29535":1,"29536":2,"29537":2,"29538":2,"29539":2,"29540":1,"29541":1,"29542":1,"29543":2,"29544":2,"29545":1,"29546":2,"29547":2,"29548":2,"29549":1,"29550":1,"29551":2,"29552":1,"29553":2,"29554":1,"29555":2,"29556":2,"29557":1,"29558":2,"29559":2,"29560":1,"29561":1,"29562":1,"29563":2,"29564":2,"29565":2,"29566":1,"29567":2,"29568":2,"29569":1,"29570":1,"29571":2,"29572":2,"29573":1,"29574":1,"29575":2,"29576":2,"29577":1,"29578":1,"29579":2,"29580":1,"29581":2,"29582":1,"29583":1,"29584":2,"29585":1,"29586":1,"29587":1,"29588":2,"29589":1,"29590":2,"29591":1,"29592":1,"29593":1,"29594":2,"29595":2,"29596":2,"29597":2,"29598":1,"29599":1,"29600":2,"29601":1,"29602":1,"29603":2,"29604":1,"29605":1,"29606":1,"29607":1,"29608":1,"29609":2,"29610":1,"29611":2,"29612":2,"29613":2,"29614":1,"29615":1,"29616":2,"29617":1,"29618":1,"29619":1,"29620":1,"29621":2,"29622":1,"29623":1,"29624":2,"29625":1,"29626":2,"29627":2,"29628":1,"29629":2,"29630":2,"29631":2,"29632":2,"29633":1,"29634":1,"29635":1,"29636":2,"29637":2,"29638":1,"29639":2,"29640":1,"29641":1,"29642":1,"29643":1,"29644":2,"29645":1,"29646":2,"29647":1,"29648":1,"29649":1,"29650":2,"29651":1,"29652":1,"29653":1,"29654":2,"29655":2,"29656":1,"29657":2,"29658":1,"29659":1,"29660":2,"29661":1,"29662":2,"29663":2,"29664":2,"29665":2,"29666":2,"29667":1,"29668":1,"29669":2,"29670":1,"29671":1,"29672":2,"29673":2,"29674":2,"29675":1,"29676":1,"29677":2,"29678":1,"29679":2,"29680":2,"29681":1,"29682":1,"29683":2,"29684":2,"29685":1,"29686":2,"29687":1,"29688":1,"29689":1,"29690":1,"29691":2,"29692":1,"29693":2,"29694":2,"29695":2,"29696":1,"29697":2,"29698":1,"29699":1,"29700":1,"29701":2,"29702":2,"29703":2,"29704":2,"29705":2,"29706":1,"29707":1,"29708":1,"29709":2,"29710":1,"29711":1,"29712":2,"29713":2,"29714":1,"29715":1,"29716":1,"29717":1,"29718":2,"29719":1,"29720":1,"29721":1,"29722":2,"29723":2,"29724":2,"29725":1,"29726":1,"29727":1,"29728":1,"29729":1,"29730":2,"29731":1,"29732":1,"29733":1,"29734":2,"29735":2,"29736":2,"29737":2,"29738":1,"29739":1,"29740":1,"29741":2,"29742":2,"29743":1,"29744":2,"29745":1,"29746":2,"29747":1,"29748":2,"29749":2,"29750":2,"29751":1,"29752":2,"29753":2,"29754":2,"29755":2,"29756":1,"29757":1,"29758":2,"29759":2,"29760":2,"29761":1,"29762":1,"29763":1,"29764":2,"29765":2,"29766":1,"29767":2,"29768":2,"29769":2,"29770":2,"29771":1,"29772":2,"29773":2,"29774":1,"29775":2,"29776":1,"29777":1,"29778":2,"29779":2,"29780":2,"29781":2,"29782":2,"29783":1,"29784":2,"29785":2,"29786":2,"29787":2,"29788":1,"29789":1,"29790":1,"29791":1,"29792":1,"29793":2,"29794":1,"29795":2,"29796":2,"29797":2,"29798":1,"29799":2,"29800":2,"29801":2,"29802":2,"29803":1,"29804":2,"29805":2,"29806":1,"29807":1,"29808":2,"29809":2,"29810":2,"29811":1,"29812":1,"29813":2,"29814":2,"29815":2,"29816":1,"29817":1,"29818":2,"29819":1,"29820":2,"29821":2,"29822":2,"29823":1,"29824":1,"29825":2,"29826":2,"29827":1,"29828":1,"29829":2,"29830":1,"29831":2,"29832":2,"29833":1,"29834":1,"29835":2,"29836":2,"29837":1,"29838":2,"29839":1,"29840":1,"29841":1,"29842":1,"29843":2,"29844":1,"29845":2,"29846":1,"29847":1,"29848":2,"29849":1,"29850":1,"29851":2,"29852":1,"29853":1,"29854":2,"29855":2,"29856":2,"29857":1,"29858":1,"29859":2,"29860":1,"29861":2,"29862":2,"29863":2,"29864":2,"29865":2,"29866":1,"29867":1,"29868":2,"29869":2,"29870":1,"29871":2,"29872":1,"29873":1,"29874":2,"29875":2,"29876":2,"29877":2,"29878":2,"29879":1,"29880":2,"29881":1,"29882":2,"29883":1,"29884":1,"29885":1,"29886":1,"29887":2,"29888":1,"29889":1,"29890":1,"29891":1,"29892":2,"29893":1,"29894":1,"29895":2,"29896":1,"29897":2,"29898":1,"29899":2,"29900":1,"29901":2,"29902":1,"29903":2,"29904":1,"29905":2,"29906":2,"29907":1,"29908":1,"29909":2,"29910":1,"29911":1,"29912":2,"29913":2,"29914":1,"29915":2,"29916":1,"29917":1,"29918":2,"29919":1,"29920":1,"29921":1,"29922":2,"29923":1,"29924":2,"29925":1,"29926":2,"29927":1,"29928":1,"29929":1,"29930":2,"29931":1,"29932":2,"29933":1,"29934":1,"29935":1,"29936":2,"29937":2,"29938":1,"29939":2,"29940":2,"29941":2,"29942":1,"29943":1,"29944":1,"29945":1,"29946":2,"29947":2,"29948":1,"29949":2,"29950":2,"29951":1,"29952":1,"29953":2,"29954":2,"29955":2,"29956":2,"29957":1,"29958":2,"29959":2,"29960":1,"29961":2,"29962":2,"29963":1,"29964":2,"29965":2,"29966":2,"29967":2,"29968":2,"29969":1,"29970":2,"29971":2,"29972":2,"29973":1,"29974":1,"29975":1,"29976":1,"29977":2,"29978":2,"29979":1,"29980":2,"29981":1,"29982":1,"29983":1,"29984":1,"29985":2,"29986":1,"29987":2,"29988":2,"29989":1,"29990":1,"29991":2,"29992":1,"29993":2,"29994":1,"29995":2,"29996":1,"29997":2,"29998":1,"29999":1,"30000":1,"30001":1,"30002":2,"30003":1,"30004":2,"30005":2,"30006":1,"30007":1,"30008":1,"30009":2,"30010":2,"30011":1,"30012":2,"30013":1,"30014":1,"30015":1,"30016":1,"30017":2,"30018":1,"30019":1,"30020":2,"30021":2,"30022":2,"30023":1,"30024":1,"30025":1,"30026":2,"30027":1,"30028":2,"30029":2,"30030":2,"30031":1,"30032":2,"30033":1,"30034":1,"30035":2,"30036":1,"30037":2,"30038":1,"30039":1,"30040":1,"30041":2,"30042":2,"30043":2,"30044":2,"30045":1,"30046":2,"30047":1,"30048":1,"30049":1,"30050":2,"30051":1,"30052":1,"30053":2,"30054":1,"30055":2,"30056":2,"30057":2,"30058":2,"30059":2,"30060":2,"30061":1,"30062":2,"30063":2,"30064":1,"30065":2,"30066":1,"30067":2,"30068":2,"30069":2,"30070":2,"30071":2,"30072":2,"30073":1,"30074":2,"30075":2,"30076":2,"30077":2,"30078":2,"30079":2,"30080":2,"30081":1,"30082":1,"30083":2,"30084":1,"30085":2,"30086":2,"30087":2,"30088":2,"30089":2,"30090":2,"30091":2,"30092":1,"30093":2,"30094":2,"30095":1,"30096":2,"30097":1,"30098":2,"30099":2,"30100":1,"30101":1,"30102":1,"30103":2,"30104":1,"30105":2,"30106":2,"30107":1,"30108":2,"30109":2,"30110":1,"30111":2,"30112":1,"30113":1,"30114":1,"30115":1,"30116":2,"30117":2,"30118":1,"30119":1,"30120":2,"30121":1,"30122":1,"30123":1,"30124":1,"30125":2,"30126":1,"30127":2,"30128":1,"30129":2,"30130":1,"30131":2,"30132":2,"30133":2,"30134":2,"30135":2,"30136":1,"30137":1,"30138":2,"30139":1,"30140":2,"30141":1,"30142":2,"30143":2,"30144":2,"30145":1,"30146":1,"30147":2,"30148":2,"30149":1,"30150":2,"30151":2,"30152":2,"30153":1,"30154":1,"30155":2,"30156":2,"30157":1,"30158":1,"30159":1,"30160":2,"30161":1,"30162":1,"30163":1,"30164":1,"30165":1,"30166":1,"30167":2,"30168":1,"30169":1,"30170":2,"30171":2,"30172":2,"30173":2,"30174":2,"30175":2,"30176":2,"30177":2,"30178":2,"30179":1,"30180":2,"30181":1,"30182":2,"30183":2,"30184":2,"30185":1,"30186":1,"30187":2,"30188":1,"30189":1,"30190":2,"30191":2,"30192":1,"30193":1,"30194":2,"30195":2,"30196":2,"30197":2,"30198":2,"30199":1,"30200":1,"30201":1,"30202":2,"30203":1,"30204":2,"30205":1,"30206":1,"30207":1,"30208":2,"30209":2,"30210":1,"30211":1,"30212":2,"30213":2,"30214":1,"30215":1,"30216":1,"30217":2,"30218":1,"30219":1,"30220":2,"30221":2,"30222":2,"30223":2,"30224":1,"30225":2,"30226":2,"30227":1,"30228":2,"30229":1,"30230":1,"30231":1,"30232":1,"30233":2,"30234":2,"30235":1,"30236":2,"30237":2,"30238":2,"30239":2,"30240":2,"30241":2,"30242":2,"30243":1,"30244":2,"30245":2,"30246":1,"30247":2,"30248":2,"30249":2,"30250":1,"30251":1,"30252":1,"30253":1,"30254":1,"30255":2,"30256":1,"30257":1,"30258":2,"30259":1,"30260":1,"30261":2,"30262":1,"30263":1,"30264":1,"30265":2,"30266":1,"30267":2,"30268":1,"30269":2,"30270":2,"30271":1,"30272":1,"30273":1,"30274":1,"30275":1,"30276":1,"30277":1,"30278":1,"30279":1,"30280":2,"30281":1,"30282":1,"30283":1,"30284":2,"30285":2,"30286":1,"30287":1,"30288":2,"30289":1,"30290":2,"30291":1,"30292":2,"30293":1,"30294":2,"30295":1,"30296":2,"30297":1,"30298":1,"30299":1,"30300":1,"30301":2,"30302":2,"30303":2,"30304":1,"30305":1,"30306":2,"30307":2,"30308":1,"30309":1,"30310":2,"30311":1,"30312":2,"30313":2,"30314":2,"30315":1,"30316":2,"30317":2,"30318":2,"30319":1,"30320":2,"30321":1,"30322":1,"30323":2,"30324":2,"30325":2,"30326":2,"30327":2,"30328":1,"30329":1,"30330":1,"30331":2,"30332":2,"30333":2,"30334":2,"30335":1,"30336":1,"30337":1,"30338":1,"30339":1,"30340":1,"30341":2,"30342":1,"30343":2,"30344":2,"30345":1,"30346":1,"30347":2,"30348":1,"30349":2,"30350":2,"30351":1,"30352":1,"30353":2,"30354":2,"30355":2,"30356":2,"30357":1,"30358":1,"30359":2,"30360":1,"30361":1,"30362":2,"30363":2,"30364":2,"30365":2,"30366":1,"30367":2,"30368":1,"30369":2,"30370":1,"30371":1,"30372":2,"30373":2,"30374":1,"30375":2,"30376":2,"30377":2,"30378":2,"30379":2,"30380":2,"30381":2,"30382":2,"30383":1,"30384":2,"30385":1,"30386":2,"30387":1,"30388":1,"30389":2,"30390":2,"30391":2,"30392":1,"30393":1,"30394":1,"30395":1,"30396":1,"30397":2,"30398":2,"30399":2,"30400":2,"30401":2,"30402":1,"30403":1,"30404":2,"30405":1,"30406":1,"30407":2,"30408":1,"30409":2,"30410":1,"30411":2,"30412":2,"30413":2,"30414":1,"30415":1,"30416":1,"30417":2,"30418":2,"30419":1,"30420":1,"30421":1,"30422":2,"30423":2,"30424":2,"30425":1,"30426":1,"30427":2,"30428":1,"30429":2,"30430":1,"30431":1,"30432":2,"30433":1,"30434":1,"30435":2,"30436":1,"30437":1,"30438":1,"30439":1,"30440":2,"30441":2,"30442":1,"30443":2,"30444":2,"30445":2,"30446":1,"30447":2,"30448":2,"30449":1,"30450":2,"30451":2,"30452":1,"30453":2,"30454":2,"30455":1,"30456":2,"30457":2,"30458":1,"30459":2,"30460":2,"30461":1,"30462":1,"30463":1,"30464":2,"30465":1,"30466":2,"30467":2,"30468":2,"30469":1,"30470":1,"30471":2,"30472":2,"30473":2,"30474":1,"30475":1,"30476":1,"30477":1,"30478":1,"30479":2,"30480":1,"30481":1,"30482":2,"30483":2,"30484":2,"30485":2,"30486":1,"30487":1,"30488":1,"30489":1,"30490":2,"30491":1,"30492":1,"30493":1,"30494":2,"30495":2,"30496":2,"30497":1,"30498":1,"30499":1,"30500":1,"30501":1,"30502":1,"30503":2,"30504":2,"30505":1,"30506":1,"30507":2,"30508":1,"30509":1,"30510":2,"30511":2,"30512":2,"30513":2,"30514":1,"30515":1,"30516":1,"30517":2,"30518":1,"30519":2,"30520":2,"30521":2,"30522":1,"30523":1,"30524":1,"30525":1,"30526":2,"30527":1,"30528":1,"30529":1,"30530":1,"30531":2,"30532":1,"30533":1,"30534":1,"30535":1,"30536":2,"30537":2,"30538":1,"30539":2,"30540":1,"30541":2,"30542":2,"30543":1,"30544":1,"30545":2,"30546":1,"30547":2,"30548":2,"30549":2,"30550":2,"30551":1,"30552":2,"30553":1,"30554":1,"30555":1,"30556":2,"30557":2,"30558":1,"30559":1,"30560":2,"30561":2,"30562":2,"30563":1,"30564":2,"30565":1,"30566":1,"30567":1,"30568":2,"30569":2,"30570":1,"30571":2,"30572":2,"30573":1,"30574":1,"30575":1,"30576":2,"30577":2,"30578":1,"30579":1,"30580":2,"30581":2,"30582":1,"30583":1,"30584":2,"30585":2,"30586":2,"30587":1,"30588":2,"30589":2,"30590":2,"30591":2,"30592":1,"30593":2,"30594":1,"30595":2,"30596":2,"30597":2,"30598":1,"30599":1,"30600":1,"30601":2,"30602":1,"30603":2,"30604":2,"30605":2,"30606":2,"30607":1,"30608":1,"30609":2,"30610":2,"30611":1,"30612":1,"30613":2,"30614":2,"30615":1,"30616":2,"30617":1,"30618":2,"30619":2,"30620":2,"30621":2,"30622":1,"30623":1,"30624":2,"30625":2,"30626":2,"30627":2,"30628":1,"30629":1,"30630":1,"30631":1,"30632":2,"30633":2,"30634":2,"30635":2,"30636":1,"30637":1,"30638":2,"30639":2,"30640":2,"30641":1,"30642":1,"30643":1,"30644":1,"30645":1,"30646":2,"30647":2,"30648":2,"30649":2,"30650":1,"30651":1,"30652":2,"30653":2,"30654":2,"30655":2,"30656":1,"30657":1,"30658":1,"30659":1,"30660":2,"30661":2,"30662":1,"30663":1,"30664":2,"30665":2,"30666":1,"30667":1,"30668":2,"30669":2,"30670":2,"30671":2,"30672":1,"30673":1,"30674":2,"30675":2,"30676":2,"30677":2,"30678":1,"30679":1,"30680":1,"30681":1,"30682":1,"30683":1,"30684":2,"30685":1,"30686":1,"30687":1,"30688":1,"30689":1,"30690":1,"30691":1,"30692":2,"30693":1,"30694":2,"30695":2,"30696":2,"30697":2,"30698":1,"30699":2,"30700":1,"30701":2,"30702":1,"30703":1,"30704":2,"30705":1,"30706":2,"30707":2,"30708":1,"30709":1,"30710":1,"30711":1,"30712":2,"30713":1,"30714":2,"30715":1,"30716":1,"30717":2,"30718":2,"30719":1,"30720":1,"30721":1,"30722":2,"30723":1,"30724":2,"30725":1,"30726":1,"30727":1,"30728":2,"30729":2,"30730":2,"30731":2,"30732":2,"30733":1,"30734":2,"30735":1,"30736":2,"30737":1,"30738":1,"30739":2,"30740":1,"30741":2,"30742":2,"30743":2,"30744":1,"30745":2,"30746":2,"30747":2,"30748":1,"30749":2,"30750":2,"30751":1,"30752":1,"30753":2,"30754":2,"30755":2,"30756":2,"30757":2,"30758":2,"30759":1,"30760":2,"30761":2,"30762":2,"30763":1,"30764":2,"30765":1,"30766":2,"30767":1,"30768":1,"30769":1,"30770":1,"30771":1,"30772":2,"30773":2,"30774":1,"30775":1,"30776":1,"30777":1,"30778":1,"30779":2,"30780":1,"30781":1,"30782":1,"30783":2,"30784":1,"30785":2,"30786":2,"30787":1,"30788":2,"30789":1,"30790":2,"30791":1,"30792":2,"30793":2,"30794":1,"30795":1,"30796":1,"30797":2,"30798":2,"30799":2,"30800":1,"30801":2,"30802":2,"30803":1,"30804":1,"30805":2,"30806":2,"30807":2,"30808":1,"30809":1,"30810":2,"30811":1,"30812":1,"30813":1,"30814":1,"30815":1,"30816":2,"30817":2,"30818":2,"30819":2,"30820":1,"30821":2,"30822":1,"30823":2,"30824":2,"30825":2,"30826":2,"30827":1,"30828":1,"30829":2,"30830":2,"30831":1,"30832":2,"30833":2,"30834":2,"30835":1,"30836":2,"30837":1,"30838":2,"30839":1,"30840":1,"30841":2,"30842":2,"30843":2,"30844":2,"30845":1,"30846":2,"30847":2,"30848":1,"30849":2,"30850":1,"30851":2,"30852":1,"30853":1,"30854":2,"30855":2,"30856":2,"30857":1,"30858":1,"30859":2,"30860":1,"30861":2,"30862":2,"30863":1,"30864":1,"30865":2,"30866":2,"30867":2,"30868":2,"30869":2,"30870":1,"30871":1,"30872":1,"30873":2,"30874":2,"30875":2,"30876":2,"30877":2,"30878":2,"30879":2,"30880":2,"30881":2,"30882":1,"30883":2,"30884":2,"30885":2,"30886":1,"30887":1,"30888":1,"30889":1,"30890":1,"30891":2,"30892":2,"30893":1,"30894":2,"30895":1,"30896":1,"30897":1,"30898":1,"30899":2,"30900":1,"30901":2,"30902":2,"30903":2,"30904":2,"30905":2,"30906":1,"30907":2,"30908":1,"30909":1,"30910":2,"30911":1,"30912":1,"30913":1,"30914":2,"30915":2,"30916":1,"30917":2,"30918":2,"30919":2,"30920":2,"30921":2,"30922":2,"30923":1,"30924":2,"30925":2,"30926":1,"30927":1,"30928":2,"30929":2,"30930":2,"30931":1,"30932":2,"30933":1,"30934":2,"30935":1,"30936":2,"30937":1,"30938":2,"30939":2,"30940":1,"30941":1,"30942":2,"30943":2,"30944":2,"30945":2,"30946":1,"30947":2,"30948":1,"30949":1,"30950":2,"30951":1,"30952":1,"30953":1,"30954":1,"30955":1,"30956":1,"30957":1,"30958":1,"30959":2,"30960":1,"30961":2,"30962":2,"30963":1,"30964":2,"30965":1,"30966":2,"30967":1,"30968":1,"30969":1,"30970":1,"30971":1,"30972":2,"30973":1,"30974":2,"30975":1,"30976":1,"30977":1,"30978":1,"30979":2,"30980":2,"30981":2,"30982":2,"30983":1,"30984":2,"30985":2,"30986":2,"30987":2,"30988":2,"30989":1,"30990":1,"30991":1,"30992":2,"30993":1,"30994":1,"30995":2,"30996":2,"30997":2,"30998":1,"30999":2,"31000":2,"31001":2,"31002":2,"31003":1,"31004":2,"31005":2,"31006":1,"31007":1,"31008":1,"31009":2,"31010":2,"31011":1,"31012":1,"31013":1,"31014":1,"31015":1,"31016":1,"31017":1,"31018":1,"31019":1,"31020":1,"31021":1,"31022":1,"31023":2,"31024":2,"31025":2,"31026":2,"31027":2,"31028":2,"31029":2,"31030":2,"31031":1,"31032":1,"31033":2,"31034":2,"31035":1,"31036":1,"31037":2,"31038":1,"31039":2,"31040":1,"31041":1,"31042":2,"31043":2,"31044":2,"31045":1,"31046":1,"31047":2,"31048":1,"31049":1,"31050":1,"31051":1,"31052":1,"31053":2,"31054":1,"31055":2,"31056":1,"31057":2,"31058":1,"31059":1,"31060":2,"31061":2,"31062":2,"31063":1,"31064":1,"31065":2,"31066":1,"31067":1,"31068":2,"31069":2,"31070":2,"31071":2,"31072":2,"31073":2,"31074":1,"31075":1,"31076":2,"31077":2,"31078":2,"31079":2,"31080":2,"31081":1,"31082":2,"31083":2,"31084":1,"31085":2,"31086":2,"31087":2,"31088":1,"31089":1,"31090":2,"31091":1,"31092":2,"31093":2,"31094":1,"31095":2,"31096":1,"31097":1,"31098":2,"31099":1,"31100":1,"31101":2,"31102":1,"31103":1,"31104":1,"31105":2,"31106":2,"31107":1,"31108":1,"31109":2,"31110":1,"31111":2,"31112":1,"31113":2,"31114":1,"31115":1,"31116":2,"31117":2,"31118":1,"31119":2,"31120":2,"31121":2,"31122":2,"31123":1,"31124":2,"31125":1,"31126":1,"31127":2,"31128":2,"31129":2,"31130":1,"31131":1,"31132":1,"31133":1,"31134":2,"31135":2,"31136":1,"31137":1,"31138":1,"31139":2,"31140":1,"31141":1,"31142":1,"31143":2,"31144":1,"31145":2,"31146":1,"31147":1,"31148":1,"31149":1,"31150":1,"31151":2,"31152":2,"31153":2,"31154":2,"31155":2,"31156":1,"31157":2,"31158":1,"31159":1,"31160":1,"31161":1,"31162":1,"31163":2,"31164":1,"31165":1,"31166":1,"31167":1,"31168":2,"31169":1,"31170":2,"31171":1,"31172":1,"31173":1,"31174":2,"31175":1,"31176":2,"31177":2,"31178":1,"31179":1,"31180":2,"31181":2,"31182":2,"31183":1,"31184":2,"31185":1,"31186":1,"31187":2,"31188":2,"31189":2,"31190":1,"31191":2,"31192":1,"31193":1,"31194":2,"31195":1,"31196":1,"31197":2,"31198":1,"31199":1,"31200":2,"31201":2,"31202":2,"31203":1,"31204":2,"31205":1,"31206":2,"31207":1,"31208":2,"31209":2,"31210":1,"31211":1,"31212":2,"31213":2,"31214":1,"31215":1,"31216":2,"31217":1,"31218":1,"31219":2,"31220":2,"31221":1,"31222":2,"31223":2,"31224":1,"31225":1,"31226":2,"31227":2,"31228":2,"31229":2,"31230":1,"31231":2,"31232":2,"31233":1,"31234":2,"31235":2,"31236":2,"31237":1,"31238":1,"31239":1,"31240":2,"31241":2,"31242":2,"31243":1,"31244":1,"31245":1,"31246":2,"31247":2,"31248":2,"31249":1,"31250":1,"31251":1,"31252":2,"31253":1,"31254":1,"31255":2,"31256":2,"31257":1,"31258":1,"31259":2,"31260":1,"31261":2,"31262":2,"31263":2,"31264":1,"31265":1,"31266":1,"31267":2,"31268":2,"31269":2,"31270":1,"31271":2,"31272":2,"31273":2,"31274":2,"31275":1,"31276":2,"31277":2,"31278":2,"31279":1,"31280":1,"31281":2,"31282":2,"31283":1,"31284":2,"31285":2,"31286":2,"31287":2,"31288":2,"31289":2,"31290":1,"31291":2,"31292":2,"31293":2,"31294":2,"31295":1,"31296":1,"31297":2,"31298":2,"31299":2,"31300":1,"31301":2,"31302":1,"31303":1,"31304":2,"31305":1,"31306":1,"31307":1,"31308":2,"31309":1,"31310":2,"31311":2,"31312":1,"31313":1,"31314":2,"31315":1,"31316":2,"31317":2,"31318":1,"31319":1,"31320":1,"31321":2,"31322":1,"31323":1,"31324":2,"31325":2,"31326":1,"31327":1,"31328":2,"31329":2,"31330":2,"31331":2,"31332":1,"31333":1,"31334":1,"31335":2,"31336":2,"31337":2,"31338":1,"31339":1,"31340":2,"31341":2,"31342":2,"31343":2,"31344":2,"31345":2,"31346":2,"31347":1,"31348":1,"31349":2,"31350":2,"31351":2,"31352":2,"31353":2,"31354":2,"31355":2,"31356":1,"31357":1,"31358":2,"31359":2,"31360":2,"31361":1,"31362":2,"31363":2,"31364":1,"31365":1,"31366":1,"31367":2,"31368":2,"31369":2,"31370":2,"31371":1,"31372":1,"31373":1,"31374":1,"31375":1,"31376":2,"31377":1,"31378":2,"31379":2,"31380":1,"31381":1,"31382":1,"31383":2,"31384":1,"31385":1,"31386":1,"31387":1,"31388":1,"31389":2,"31390":2,"31391":2,"31392":2,"31393":1,"31394":2,"31395":2,"31396":1,"31397":1,"31398":2,"31399":2,"31400":2,"31401":1,"31402":1,"31403":1,"31404":1,"31405":1,"31406":2,"31407":2,"31408":1,"31409":2,"31410":2,"31411":2,"31412":2,"31413":2,"31414":1,"31415":2,"31416":1,"31417":1,"31418":1,"31419":2,"31420":2,"31421":1,"31422":2,"31423":1,"31424":2,"31425":2,"31426":1,"31427":2,"31428":2,"31429":1,"31430":2,"31431":2,"31432":1,"31433":2,"31434":2,"31435":2,"31436":2,"31437":1,"31438":1,"31439":2,"31440":1,"31441":1,"31442":1,"31443":1,"31444":1,"31445":1,"31446":1,"31447":1,"31448":1,"31449":1,"31450":1,"31451":2,"31452":1,"31453":2,"31454":2,"31455":2,"31456":2,"31457":2,"31458":1,"31459":2,"31460":2,"31461":2,"31462":1,"31463":2,"31464":2,"31465":2,"31466":1,"31467":2,"31468":2,"31469":1,"31470":1,"31471":1,"31472":1,"31473":1,"31474":2,"31475":2,"31476":1,"31477":2,"31478":1,"31479":1,"31480":1,"31481":2,"31482":2,"31483":2,"31484":2,"31485":1,"31486":2,"31487":1,"31488":2,"31489":1,"31490":2,"31491":1,"31492":2,"31493":1,"31494":2,"31495":1,"31496":2,"31497":2,"31498":1,"31499":2,"31500":2,"31501":1,"31502":2,"31503":1,"31504":1,"31505":1,"31506":2,"31507":2,"31508":1,"31509":1,"31510":2,"31511":1,"31512":1,"31513":2,"31514":2,"31515":1,"31516":1,"31517":1,"31518":1,"31519":1,"31520":2,"31521":2,"31522":1,"31523":2,"31524":2,"31525":1,"31526":2,"31527":1,"31528":1,"31529":2,"31530":2,"31531":2,"31532":1,"31533":2,"31534":2,"31535":2,"31536":1,"31537":2,"31538":2,"31539":1,"31540":1,"31541":1,"31542":2,"31543":2,"31544":2,"31545":2,"31546":1,"31547":1,"31548":1,"31549":1,"31550":2,"31551":2,"31552":1,"31553":1,"31554":2,"31555":2,"31556":1,"31557":2,"31558":2,"31559":1,"31560":1,"31561":2,"31562":1,"31563":1,"31564":1,"31565":2,"31566":1,"31567":2,"31568":1,"31569":2,"31570":1,"31571":1,"31572":2,"31573":1,"31574":1,"31575":1,"31576":1,"31577":2,"31578":2,"31579":1,"31580":1,"31581":2,"31582":2,"31583":2,"31584":1,"31585":1,"31586":1,"31587":2,"31588":1,"31589":2,"31590":1,"31591":1,"31592":1,"31593":2,"31594":2,"31595":2,"31596":2,"31597":1,"31598":1,"31599":2,"31600":1,"31601":1,"31602":1,"31603":2,"31604":2,"31605":2,"31606":1,"31607":1,"31608":2,"31609":2,"31610":1,"31611":1,"31612":1,"31613":2,"31614":1,"31615":1,"31616":1,"31617":1,"31618":1,"31619":2,"31620":1,"31621":2,"31622":2,"31623":2,"31624":1,"31625":2,"31626":1,"31627":2,"31628":1,"31629":2,"31630":1,"31631":1,"31632":1,"31633":2,"31634":2,"31635":1,"31636":1,"31637":2,"31638":1,"31639":1,"31640":2,"31641":1,"31642":1,"31643":1,"31644":1,"31645":1,"31646":2,"31647":1,"31648":1,"31649":2,"31650":1,"31651":1,"31652":1,"31653":1,"31654":1,"31655":2,"31656":1,"31657":1,"31658":1,"31659":1,"31660":2,"31661":2,"31662":2,"31663":1,"31664":2,"31665":1,"31666":1,"31667":1,"31668":1,"31669":1,"31670":1,"31671":1,"31672":1,"31673":1,"31674":2,"31675":1,"31676":1,"31677":1,"31678":2,"31679":1,"31680":2,"31681":2,"31682":1,"31683":2,"31684":1,"31685":2,"31686":1,"31687":1,"31688":2,"31689":2,"31690":2,"31691":2,"31692":1,"31693":1,"31694":2,"31695":1,"31696":2,"31697":2,"31698":2,"31699":2,"31700":2,"31701":2,"31702":2,"31703":1,"31704":1,"31705":2,"31706":2,"31707":1,"31708":2,"31709":2,"31710":1,"31711":1,"31712":1,"31713":1,"31714":1,"31715":2,"31716":2,"31717":2,"31718":1,"31719":1,"31720":1,"31721":2,"31722":2,"31723":1,"31724":1,"31725":1,"31726":1,"31727":2,"31728":1,"31729":1,"31730":2,"31731":1,"31732":2,"31733":2,"31734":2,"31735":1,"31736":2,"31737":1,"31738":2,"31739":1,"31740":2,"31741":2,"31742":1,"31743":1,"31744":1,"31745":2,"31746":1,"31747":1,"31748":1,"31749":1,"31750":1,"31751":2,"31752":2,"31753":1,"31754":1,"31755":1,"31756":1,"31757":1,"31758":1,"31759":2,"31760":1,"31761":1,"31762":2,"31763":1,"31764":1,"31765":2,"31766":1,"31767":2,"31768":1,"31769":2,"31770":2,"31771":1,"31772":1,"31773":2,"31774":1,"31775":2,"31776":1,"31777":1,"31778":1,"31779":1,"31780":1,"31781":2,"31782":2,"31783":2,"31784":1,"31785":1,"31786":2,"31787":1,"31788":1,"31789":1,"31790":2,"31791":2,"31792":2,"31793":1,"31794":1,"31795":2,"31796":1,"31797":2,"31798":1,"31799":2,"31800":2,"31801":2,"31802":2,"31803":2,"31804":1,"31805":2,"31806":2,"31807":2,"31808":2,"31809":2,"31810":1,"31811":2,"31812":2,"31813":2,"31814":2,"31815":1,"31816":2,"31817":1,"31818":1,"31819":2,"31820":1,"31821":2,"31822":1,"31823":1,"31824":1,"31825":2,"31826":1,"31827":2,"31828":1,"31829":2,"31830":2,"31831":1,"31832":2,"31833":2,"31834":1,"31835":2,"31836":1,"31837":2,"31838":1,"31839":1,"31840":2,"31841":1,"31842":2,"31843":1,"31844":2,"31845":2,"31846":1,"31847":2,"31848":2,"31849":2,"31850":1,"31851":1,"31852":1,"31853":2,"31854":1,"31855":2,"31856":1,"31857":1,"31858":2,"31859":2,"31860":1,"31861":2,"31862":1,"31863":2,"31864":1,"31865":1,"31866":1,"31867":2,"31868":2,"31869":2,"31870":2,"31871":1,"31872":1,"31873":2,"31874":2,"31875":2,"31876":2,"31877":1,"31878":1,"31879":1,"31880":2,"31881":2,"31882":2,"31883":1,"31884":2,"31885":1,"31886":2,"31887":1,"31888":2,"31889":1,"31890":1,"31891":2,"31892":1,"31893":2,"31894":2,"31895":1,"31896":2,"31897":2,"31898":1,"31899":1,"31900":1,"31901":2,"31902":2,"31903":1,"31904":2,"31905":1,"31906":2,"31907":2,"31908":2,"31909":1,"31910":2,"31911":1,"31912":2,"31913":1,"31914":2,"31915":1,"31916":2,"31917":1,"31918":1,"31919":1,"31920":1,"31921":2,"31922":2,"31923":1,"31924":1,"31925":1,"31926":2,"31927":2,"31928":1,"31929":1,"31930":1,"31931":1,"31932":2,"31933":1,"31934":1,"31935":2,"31936":2,"31937":2,"31938":1,"31939":1,"31940":1,"31941":2,"31942":1,"31943":2,"31944":1,"31945":1,"31946":2,"31947":2,"31948":1,"31949":1,"31950":2,"31951":2,"31952":1,"31953":2,"31954":1,"31955":1,"31956":1,"31957":1,"31958":1,"31959":2,"31960":1,"31961":1,"31962":1,"31963":1,"31964":2,"31965":1,"31966":2,"31967":2,"31968":2,"31969":1,"31970":2,"31971":2,"31972":2,"31973":1,"31974":1,"31975":1,"31976":2,"31977":1,"31978":1,"31979":2,"31980":2,"31981":1,"31982":2,"31983":1,"31984":2,"31985":1,"31986":1,"31987":2,"31988":1,"31989":2,"31990":2,"31991":2,"31992":2,"31993":1,"31994":2,"31995":2,"31996":2,"31997":1,"31998":1,"31999":1,"32000":2,"32001":2,"32002":1,"32003":2,"32004":1,"32005":2,"32006":1,"32007":1,"32008":2,"32009":1,"32010":2,"32011":2,"32012":2,"32013":2,"32014":2,"32015":2,"32016":1,"32017":2,"32018":2,"32019":2,"32020":1,"32021":1,"32022":1,"32023":2,"32024":2,"32025":2,"32026":2,"32027":2,"32028":1,"32029":2,"32030":1,"32031":2,"32032":1,"32033":2,"32034":1,"32035":2,"32036":2,"32037":1,"32038":2,"32039":2,"32040":1,"32041":2,"32042":1,"32043":2,"32044":1,"32045":1,"32046":1,"32047":1,"32048":2,"32049":1,"32050":1,"32051":2,"32052":1,"32053":1,"32054":2,"32055":1,"32056":2,"32057":2,"32058":2,"32059":1,"32060":1,"32061":1,"32062":1,"32063":2,"32064":1,"32065":2,"32066":2,"32067":2,"32068":2,"32069":1,"32070":1,"32071":2,"32072":1,"32073":2,"32074":2,"32075":2,"32076":1,"32077":2,"32078":2,"32079":2,"32080":1,"32081":1,"32082":2,"32083":1,"32084":1,"32085":2,"32086":1,"32087":2,"32088":2,"32089":2,"32090":2,"32091":1,"32092":1,"32093":1,"32094":1,"32095":2,"32096":1,"32097":1,"32098":2,"32099":2,"32100":1,"32101":2,"32102":1,"32103":1,"32104":1,"32105":1,"32106":2,"32107":1,"32108":1,"32109":1,"32110":2,"32111":1,"32112":1,"32113":2,"32114":2,"32115":2,"32116":2,"32117":1,"32118":1,"32119":1,"32120":1,"32121":1,"32122":1,"32123":2,"32124":2,"32125":2,"32126":1,"32127":1,"32128":2,"32129":1,"32130":2,"32131":2,"32132":1,"32133":1,"32134":2,"32135":2,"32136":2,"32137":2,"32138":1,"32139":2,"32140":1,"32141":2,"32142":2,"32143":1,"32144":1,"32145":2,"32146":2,"32147":1,"32148":1,"32149":2,"32150":1,"32151":2,"32152":1,"32153":1,"32154":2,"32155":2,"32156":1,"32157":2,"32158":1,"32159":1,"32160":2,"32161":2,"32162":1,"32163":2,"32164":2,"32165":1,"32166":2,"32167":2,"32168":1,"32169":1,"32170":2,"32171":1,"32172":1,"32173":2,"32174":2,"32175":1,"32176":1,"32177":2,"32178":2,"32179":2,"32180":2,"32181":2,"32182":2,"32183":2,"32184":2,"32185":2,"32186":2,"32187":2,"32188":1,"32189":1,"32190":1,"32191":2,"32192":2,"32193":2,"32194":2,"32195":1,"32196":1,"32197":2,"32198":1,"32199":2,"32200":1,"32201":2,"32202":2,"32203":2,"32204":1,"32205":2,"32206":2,"32207":1,"32208":2,"32209":2,"32210":2,"32211":1,"32212":2,"32213":2,"32214":2,"32215":2,"32216":2,"32217":2,"32218":1,"32219":2,"32220":2,"32221":1,"32222":2,"32223":2,"32224":1,"32225":2,"32226":2,"32227":2,"32228":1,"32229":1,"32230":2,"32231":1,"32232":2,"32233":1,"32234":1,"32235":1,"32236":1,"32237":1,"32238":2,"32239":1,"32240":1,"32241":1,"32242":2,"32243":2,"32244":2,"32245":2,"32246":2,"32247":2,"32248":2,"32249":2,"32250":2,"32251":2,"32252":2,"32253":1,"32254":2,"32255":1,"32256":2,"32257":2,"32258":2,"32259":2,"32260":1,"32261":1,"32262":2,"32263":2,"32264":1,"32265":1,"32266":2,"32267":1,"32268":1,"32269":1,"32270":2,"32271":1,"32272":1,"32273":2,"32274":2,"32275":1,"32276":1,"32277":2,"32278":1,"32279":2,"32280":1,"32281":2,"32282":2,"32283":2,"32284":2,"32285":1,"32286":1,"32287":1,"32288":1,"32289":2,"32290":1,"32291":1,"32292":2,"32293":1,"32294":2,"32295":2,"32296":2,"32297":1,"32298":2,"32299":1,"32300":2,"32301":2,"32302":2,"32303":2,"32304":1,"32305":2,"32306":1,"32307":2,"32308":2,"32309":1,"32310":1,"32311":2,"32312":1,"32313":1,"32314":2,"32315":2,"32316":1,"32317":2,"32318":1,"32319":2,"32320":2,"32321":1,"32322":1,"32323":2,"32324":2,"32325":2,"32326":2,"32327":2,"32328":2,"32329":1,"32330":1,"32331":1,"32332":2,"32333":1,"32334":1,"32335":1,"32336":1,"32337":1,"32338":2,"32339":2,"32340":1,"32341":1,"32342":2,"32343":1,"32344":2,"32345":2,"32346":1,"32347":1,"32348":1,"32349":2,"32350":2,"32351":1,"32352":1,"32353":2,"32354":1,"32355":2,"32356":2,"32357":2,"32358":2,"32359":1,"32360":1,"32361":2,"32362":2,"32363":2,"32364":1,"32365":1,"32366":1,"32367":1,"32368":2,"32369":2,"32370":2,"32371":1,"32372":1,"32373":2,"32374":1,"32375":1,"32376":1,"32377":2,"32378":1,"32379":2,"32380":2,"32381":2,"32382":1,"32383":1,"32384":2,"32385":2,"32386":2,"32387":1,"32388":2,"32389":1,"32390":1,"32391":2,"32392":1,"32393":2,"32394":2,"32395":1,"32396":2,"32397":2,"32398":1,"32399":1,"32400":1,"32401":1,"32402":1,"32403":1,"32404":2,"32405":1,"32406":1,"32407":2,"32408":2,"32409":1,"32410":2,"32411":2,"32412":1,"32413":1,"32414":2,"32415":1,"32416":2,"32417":1,"32418":2,"32419":1,"32420":1,"32421":2,"32422":1,"32423":2,"32424":2,"32425":2,"32426":1,"32427":1,"32428":2,"32429":2,"32430":1,"32431":1,"32432":1,"32433":2,"32434":1,"32435":1,"32436":2,"32437":1,"32438":1,"32439":2,"32440":1,"32441":1,"32442":1,"32443":1,"32444":1,"32445":2,"32446":2,"32447":2,"32448":2,"32449":2,"32450":2,"32451":1,"32452":2,"32453":1,"32454":1,"32455":2,"32456":2,"32457":2,"32458":1,"32459":2,"32460":2,"32461":2,"32462":2,"32463":1,"32464":1,"32465":2,"32466":2,"32467":2,"32468":1,"32469":2,"32470":2,"32471":2,"32472":2,"32473":2,"32474":1,"32475":1,"32476":1,"32477":2,"32478":2,"32479":1,"32480":2,"32481":2,"32482":1,"32483":1,"32484":1,"32485":1,"32486":2,"32487":1,"32488":1,"32489":1,"32490":2,"32491":2,"32492":2,"32493":2,"32494":2,"32495":1,"32496":2,"32497":2,"32498":1,"32499":2,"32500":2,"32501":1,"32502":1,"32503":1,"32504":1,"32505":1,"32506":1,"32507":2,"32508":2,"32509":1,"32510":2,"32511":2,"32512":1,"32513":2,"32514":1,"32515":2,"32516":1,"32517":1,"32518":1,"32519":2,"32520":2,"32521":2,"32522":2,"32523":2,"32524":2,"32525":1,"32526":1,"32527":1,"32528":2,"32529":2,"32530":1,"32531":2,"32532":1,"32533":2,"32534":2,"32535":2,"32536":2,"32537":2,"32538":2,"32539":2,"32540":1,"32541":2,"32542":2,"32543":1,"32544":2,"32545":2,"32546":1,"32547":1,"32548":1,"32549":1,"32550":1,"32551":1,"32552":2,"32553":1,"32554":1,"32555":1,"32556":2,"32557":2,"32558":2,"32559":1,"32560":2,"32561":2,"32562":2,"32563":2,"32564":2,"32565":1,"32566":1,"32567":1,"32568":2,"32569":2,"32570":2,"32571":1,"32572":1,"32573":2,"32574":1,"32575":1,"32576":1,"32577":1,"32578":2,"32579":2,"32580":1,"32581":1,"32582":2,"32583":1,"32584":1,"32585":2,"32586":1,"32587":2,"32588":1,"32589":1,"32590":1,"32591":2,"32592":1,"32593":1,"32594":1,"32595":2,"32596":1,"32597":2,"32598":1,"32599":1,"32600":2,"32601":1,"32602":2,"32603":2,"32604":2,"32605":2,"32606":2,"32607":1,"32608":1,"32609":1,"32610":2,"32611":1,"32612":2,"32613":2,"32614":2,"32615":2,"32616":2,"32617":2,"32618":2,"32619":1,"32620":2,"32621":2,"32622":1,"32623":1,"32624":1,"32625":1,"32626":2,"32627":1,"32628":2,"32629":1,"32630":1,"32631":1,"32632":2,"32633":2,"32634":2,"32635":2,"32636":1,"32637":1,"32638":2,"32639":1,"32640":1,"32641":1,"32642":1,"32643":1,"32644":2,"32645":1,"32646":2,"32647":1,"32648":1,"32649":1,"32650":1,"32651":1,"32652":2,"32653":2,"32654":2,"32655":2,"32656":1,"32657":2,"32658":2,"32659":1,"32660":1,"32661":2,"32662":2,"32663":2,"32664":1,"32665":2,"32666":2,"32667":1,"32668":1,"32669":1,"32670":2,"32671":2,"32672":2,"32673":2,"32674":1,"32675":2,"32676":2,"32677":1,"32678":2,"32679":1,"32680":1,"32681":1,"32682":1,"32683":2,"32684":2,"32685":1,"32686":1,"32687":2,"32688":2,"32689":1,"32690":2,"32691":2,"32692":2,"32693":1,"32694":1,"32695":1,"32696":2,"32697":2,"32698":2,"32699":1,"32700":2,"32701":1,"32702":2,"32703":1,"32704":2,"32705":2,"32706":2,"32707":2,"32708":1,"32709":2,"32710":1,"32711":2,"32712":2,"32713":1,"32714":2,"32715":1,"32716":2,"32717":2,"32718":2,"32719":1,"32720":1,"32721":2,"32722":2,"32723":2,"32724":1,"32725":1,"32726":2,"32727":1,"32728":1,"32729":1,"32730":2,"32731":2,"32732":1,"32733":2,"32734":2,"32735":2,"32736":2,"32737":2,"32738":2,"32739":1,"32740":2,"32741":1,"32742":1,"32743":2,"32744":1,"32745":2,"32746":1,"32747":1,"32748":2,"32749":2,"32750":1,"32751":2,"32752":2,"32753":2,"32754":1,"32755":1,"32756":1,"32757":2,"32758":1,"32759":2,"32760":2,"32761":1,"32762":2,"32763":2,"32764":2,"32765":2,"32766":2,"32767":2,"32768":2,"32769":2,"32770":1,"32771":1,"32772":1,"32773":2,"32774":2,"32775":2,"32776":1,"32777":1,"32778":2,"32779":2,"32780":1,"32781":1,"32782":2,"32783":1,"32784":1,"32785":2,"32786":2,"32787":1,"32788":1,"32789":2,"32790":1,"32791":2,"32792":1,"32793":1,"32794":2,"32795":1,"32796":1,"32797":2,"32798":2,"32799":1,"32800":1,"32801":2,"32802":2,"32803":1,"32804":1,"32805":1,"32806":2,"32807":2,"32808":1,"32809":2,"32810":2,"32811":1,"32812":1,"32813":2,"32814":1,"32815":2,"32816":1,"32817":2,"32818":2,"32819":1,"32820":2,"32821":2,"32822":1,"32823":2,"32824":2,"32825":2,"32826":2,"32827":1,"32828":1,"32829":2,"32830":1,"32831":1,"32832":1,"32833":1,"32834":1,"32835":2,"32836":2,"32837":1,"32838":2,"32839":2,"32840":2,"32841":2,"32842":2,"32843":2,"32844":1,"32845":1,"32846":2,"32847":2,"32848":1,"32849":1,"32850":1,"32851":2,"32852":2,"32853":2,"32854":1,"32855":1,"32856":1,"32857":1,"32858":1,"32859":1,"32860":2,"32861":2,"32862":2,"32863":1,"32864":1,"32865":1,"32866":2,"32867":1,"32868":2,"32869":1,"32870":2,"32871":2,"32872":2,"32873":1,"32874":1,"32875":1,"32876":1,"32877":2,"32878":2,"32879":1,"32880":1,"32881":1,"32882":1,"32883":2,"32884":1,"32885":1,"32886":1,"32887":2,"32888":2,"32889":1,"32890":1,"32891":2,"32892":1,"32893":2,"32894":2,"32895":1,"32896":2,"32897":1,"32898":1,"32899":2,"32900":1,"32901":2,"32902":1,"32903":2,"32904":1,"32905":2,"32906":2,"32907":1,"32908":2,"32909":1,"32910":1,"32911":2,"32912":2,"32913":2,"32914":2,"32915":2,"32916":2,"32917":2,"32918":2,"32919":1,"32920":1,"32921":2,"32922":2,"32923":1,"32924":1,"32925":1,"32926":1,"32927":1,"32928":1,"32929":2,"32930":1,"32931":1,"32932":2,"32933":1,"32934":1,"32935":1,"32936":2,"32937":2,"32938":1,"32939":2,"32940":1,"32941":2,"32942":2,"32943":2,"32944":2,"32945":1,"32946":1,"32947":1,"32948":1,"32949":2,"32950":1,"32951":1,"32952":2,"32953":2,"32954":2,"32955":1,"32956":1,"32957":1,"32958":1,"32959":1,"32960":1,"32961":1,"32962":2,"32963":2,"32964":2,"32965":2,"32966":2,"32967":1,"32968":2,"32969":2,"32970":2,"32971":2,"32972":2,"32973":1,"32974":1,"32975":2,"32976":1,"32977":1,"32978":2,"32979":1,"32980":1,"32981":1,"32982":2,"32983":2,"32984":1,"32985":2,"32986":1,"32987":1,"32988":1,"32989":1,"32990":2,"32991":2,"32992":2,"32993":2,"32994":1,"32995":2,"32996":2,"32997":2,"32998":1,"32999":1,"33000":1,"33001":2,"33002":1,"33003":2,"33004":1,"33005":2,"33006":2,"33007":2,"33008":2,"33009":2,"33010":1,"33011":1,"33012":1,"33013":2,"33014":2,"33015":1,"33016":2,"33017":1,"33018":2,"33019":2,"33020":2,"33021":1,"33022":1,"33023":2,"33024":2,"33025":1,"33026":2,"33027":1,"33028":1,"33029":2,"33030":1,"33031":2,"33032":1,"33033":1,"33034":1,"33035":1,"33036":1,"33037":1,"33038":2,"33039":2,"33040":1,"33041":1,"33042":2,"33043":1,"33044":1,"33045":2,"33046":1,"33047":2,"33048":2,"33049":2,"33050":1,"33051":1,"33052":1,"33053":2,"33054":2,"33055":1,"33056":2,"33057":1,"33058":2,"33059":1,"33060":1,"33061":1,"33062":2,"33063":2,"33064":1,"33065":1,"33066":1,"33067":1,"33068":1,"33069":1,"33070":2,"33071":1,"33072":1,"33073":2,"33074":2,"33075":2,"33076":2,"33077":1,"33078":1,"33079":1,"33080":1,"33081":2,"33082":2,"33083":1,"33084":2,"33085":1,"33086":2,"33087":1,"33088":2,"33089":1,"33090":2,"33091":2,"33092":1,"33093":1,"33094":2,"33095":1,"33096":1,"33097":2,"33098":1,"33099":1,"33100":2,"33101":1,"33102":1,"33103":1,"33104":2,"33105":2,"33106":1,"33107":1,"33108":2,"33109":2,"33110":2,"33111":1,"33112":1,"33113":1,"33114":1,"33115":2,"33116":1,"33117":1,"33118":2,"33119":2,"33120":2,"33121":2,"33122":2,"33123":1,"33124":2,"33125":2,"33126":1,"33127":2,"33128":2,"33129":1,"33130":2,"33131":2,"33132":2,"33133":1,"33134":2,"33135":2,"33136":2,"33137":2,"33138":1,"33139":2,"33140":1,"33141":2,"33142":1,"33143":2,"33144":2,"33145":1,"33146":1,"33147":1,"33148":1,"33149":1,"33150":2,"33151":2,"33152":1,"33153":1,"33154":1,"33155":2,"33156":1,"33157":1,"33158":1,"33159":1,"33160":2,"33161":1,"33162":2,"33163":2,"33164":1,"33165":1,"33166":2,"33167":2,"33168":1,"33169":1,"33170":1,"33171":1,"33172":2,"33173":1,"33174":1,"33175":2,"33176":2,"33177":1,"33178":1,"33179":2,"33180":1,"33181":2,"33182":1,"33183":2,"33184":2,"33185":1,"33186":1,"33187":2,"33188":1,"33189":2,"33190":2,"33191":2,"33192":2,"33193":1,"33194":2,"33195":1,"33196":2,"33197":2,"33198":2,"33199":1,"33200":1,"33201":2,"33202":2,"33203":2,"33204":2,"33205":2,"33206":2,"33207":1,"33208":1,"33209":1,"33210":1,"33211":2,"33212":1,"33213":2,"33214":1,"33215":1,"33216":2,"33217":2,"33218":1,"33219":2,"33220":2,"33221":2,"33222":2,"33223":1,"33224":2,"33225":2,"33226":1,"33227":1,"33228":1,"33229":2,"33230":1,"33231":2,"33232":2,"33233":1,"33234":1,"33235":1,"33236":1,"33237":2,"33238":2,"33239":2,"33240":2,"33241":1,"33242":1,"33243":2,"33244":1,"33245":2,"33246":1,"33247":1,"33248":2,"33249":1,"33250":2,"33251":1,"33252":1,"33253":2,"33254":1,"33255":1,"33256":2,"33257":1,"33258":2,"33259":1,"33260":1,"33261":1,"33262":1,"33263":2,"33264":2,"33265":1,"33266":1,"33267":1,"33268":1,"33269":2,"33270":1,"33271":1,"33272":1,"33273":1,"33274":1,"33275":1,"33276":1,"33277":2,"33278":2,"33279":2,"33280":1,"33281":1,"33282":1,"33283":1,"33284":1,"33285":2,"33286":1,"33287":2,"33288":2,"33289":1,"33290":2,"33291":1,"33292":1,"33293":2,"33294":1,"33295":2,"33296":1,"33297":2,"33298":1,"33299":2,"33300":2,"33301":2,"33302":1,"33303":1,"33304":1,"33305":2,"33306":2,"33307":1,"33308":1,"33309":2,"33310":2,"33311":2,"33312":1,"33313":1,"33314":1,"33315":1,"33316":1,"33317":2,"33318":1,"33319":1,"33320":2,"33321":2,"33322":1,"33323":1,"33324":1,"33325":2,"33326":1,"33327":2,"33328":2,"33329":1,"33330":2,"33331":1,"33332":1,"33333":2,"33334":2,"33335":1,"33336":1,"33337":2,"33338":1,"33339":1,"33340":1,"33341":1,"33342":2,"33343":1,"33344":2,"33345":1,"33346":1,"33347":1,"33348":1,"33349":1,"33350":1,"33351":2,"33352":2,"33353":1,"33354":1,"33355":2,"33356":1,"33357":1,"33358":2,"33359":2,"33360":2,"33361":1,"33362":1,"33363":2,"33364":2,"33365":2,"33366":1,"33367":1,"33368":2,"33369":2,"33370":2,"33371":1,"33372":1,"33373":2,"33374":2,"33375":1,"33376":2,"33377":2,"33378":1,"33379":2,"33380":1,"33381":1,"33382":1,"33383":2,"33384":1,"33385":2,"33386":1,"33387":2,"33388":2,"33389":1,"33390":2,"33391":1,"33392":1,"33393":2,"33394":1,"33395":1,"33396":2,"33397":1,"33398":1,"33399":1,"33400":1,"33401":1,"33402":2,"33403":2,"33404":2,"33405":2,"33406":2,"33407":1,"33408":1,"33409":2,"33410":1,"33411":1,"33412":1,"33413":1,"33414":1,"33415":1,"33416":2,"33417":2,"33418":2,"33419":2,"33420":1,"33421":1,"33422":1,"33423":2,"33424":2,"33425":2,"33426":2,"33427":1,"33428":2,"33429":1,"33430":2,"33431":1,"33432":1,"33433":2,"33434":2,"33435":1,"33436":1,"33437":1,"33438":1,"33439":1,"33440":1,"33441":2,"33442":2,"33443":1,"33444":1,"33445":1,"33446":1,"33447":1,"33448":2,"33449":1,"33450":1,"33451":2,"33452":2,"33453":1,"33454":2,"33455":2,"33456":2,"33457":2,"33458":1,"33459":1,"33460":1,"33461":2,"33462":2,"33463":1,"33464":2,"33465":2,"33466":2,"33467":1,"33468":2,"33469":1,"33470":1,"33471":2,"33472":2,"33473":1,"33474":1,"33475":2,"33476":1,"33477":2,"33478":1,"33479":1,"33480":2,"33481":1,"33482":1,"33483":2,"33484":1,"33485":1,"33486":1,"33487":1,"33488":2,"33489":2,"33490":1,"33491":1,"33492":1,"33493":2,"33494":1,"33495":2,"33496":2,"33497":1,"33498":1,"33499":1,"33500":1,"33501":1,"33502":1,"33503":1,"33504":1,"33505":2,"33506":1,"33507":2,"33508":2,"33509":1,"33510":2,"33511":2,"33512":1,"33513":2,"33514":1,"33515":2,"33516":1,"33517":2,"33518":2,"33519":1,"33520":1,"33521":2,"33522":2,"33523":1,"33524":1,"33525":2,"33526":2,"33527":2,"33528":2,"33529":2,"33530":1,"33531":1,"33532":1,"33533":2,"33534":1,"33535":2,"33536":1,"33537":2,"33538":2,"33539":2,"33540":2,"33541":2,"33542":1,"33543":2,"33544":1,"33545":2,"33546":1,"33547":1,"33548":2,"33549":1,"33550":1,"33551":2,"33552":2,"33553":1,"33554":2,"33555":1,"33556":1,"33557":2,"33558":2,"33559":2,"33560":2,"33561":1,"33562":2,"33563":2,"33564":1,"33565":1,"33566":2,"33567":1,"33568":2,"33569":1,"33570":1,"33571":2,"33572":2,"33573":2,"33574":1,"33575":1,"33576":1,"33577":1,"33578":2,"33579":1,"33580":2,"33581":2,"33582":1,"33583":1,"33584":1,"33585":1,"33586":1,"33587":2,"33588":1,"33589":2,"33590":2,"33591":2,"33592":1,"33593":1,"33594":1,"33595":2,"33596":1,"33597":2,"33598":2,"33599":1,"33600":2,"33601":2,"33602":1,"33603":2,"33604":1,"33605":2,"33606":1,"33607":1,"33608":1,"33609":2,"33610":1,"33611":1,"33612":2,"33613":1,"33614":1,"33615":2,"33616":2,"33617":2,"33618":1,"33619":2,"33620":1,"33621":2,"33622":1,"33623":1,"33624":2,"33625":1,"33626":2,"33627":1,"33628":2,"33629":1,"33630":1,"33631":1,"33632":2,"33633":1,"33634":1,"33635":1,"33636":1,"33637":2,"33638":2,"33639":2,"33640":2,"33641":2,"33642":2,"33643":1,"33644":2,"33645":1,"33646":2,"33647":2,"33648":1,"33649":2,"33650":2,"33651":1,"33652":2,"33653":1,"33654":2,"33655":2,"33656":1,"33657":2,"33658":2,"33659":2,"33660":2,"33661":1,"33662":2,"33663":2,"33664":2,"33665":2,"33666":1,"33667":1,"33668":1,"33669":2,"33670":2,"33671":2,"33672":2,"33673":2,"33674":1,"33675":2,"33676":2,"33677":2,"33678":2,"33679":1,"33680":2,"33681":2,"33682":2,"33683":2,"33684":1,"33685":1,"33686":2,"33687":2,"33688":2,"33689":2,"33690":2,"33691":1,"33692":2,"33693":2,"33694":2,"33695":2,"33696":1,"33697":1,"33698":1,"33699":1,"33700":2,"33701":2,"33702":1,"33703":2,"33704":1,"33705":2,"33706":1,"33707":2,"33708":2,"33709":1,"33710":2,"33711":2,"33712":2,"33713":2,"33714":1,"33715":2,"33716":1,"33717":2,"33718":2,"33719":2,"33720":1,"33721":1,"33722":2,"33723":1,"33724":2,"33725":1,"33726":2,"33727":2,"33728":1,"33729":2,"33730":1,"33731":2,"33732":2,"33733":2,"33734":2,"33735":1,"33736":2,"33737":2,"33738":2,"33739":2,"33740":2,"33741":2,"33742":2,"33743":2,"33744":1,"33745":1,"33746":1,"33747":2,"33748":1,"33749":1,"33750":1,"33751":1,"33752":2,"33753":2,"33754":1,"33755":2,"33756":1,"33757":2,"33758":1,"33759":1,"33760":1,"33761":2,"33762":1,"33763":2,"33764":1,"33765":1,"33766":2,"33767":1,"33768":1,"33769":2,"33770":1,"33771":2,"33772":2,"33773":2,"33774":1,"33775":1,"33776":1,"33777":1,"33778":1,"33779":2,"33780":2,"33781":1,"33782":2,"33783":1,"33784":1,"33785":2,"33786":2,"33787":1,"33788":2,"33789":1,"33790":2,"33791":1,"33792":2,"33793":1,"33794":1,"33795":1,"33796":2,"33797":1,"33798":1,"33799":2,"33800":2,"33801":1,"33802":2,"33803":2,"33804":2,"33805":1,"33806":2,"33807":1,"33808":1,"33809":1,"33810":1,"33811":1,"33812":2,"33813":1,"33814":1,"33815":2,"33816":2,"33817":2,"33818":1,"33819":2,"33820":2,"33821":1,"33822":1,"33823":2,"33824":2,"33825":2,"33826":2,"33827":1,"33828":2,"33829":1,"33830":1,"33831":1,"33832":1,"33833":2,"33834":1,"33835":2,"33836":2,"33837":1,"33838":1,"33839":2,"33840":2,"33841":1,"33842":1,"33843":1,"33844":1,"33845":1,"33846":1,"33847":1,"33848":1,"33849":1,"33850":1,"33851":1,"33852":1,"33853":1,"33854":2,"33855":1,"33856":2,"33857":2,"33858":1,"33859":1,"33860":1,"33861":1,"33862":2,"33863":2,"33864":1,"33865":1,"33866":1,"33867":2,"33868":2,"33869":1,"33870":1,"33871":2,"33872":1,"33873":1,"33874":1,"33875":1,"33876":2,"33877":2,"33878":1,"33879":1,"33880":1,"33881":2,"33882":2,"33883":1,"33884":2,"33885":1,"33886":1,"33887":2,"33888":2,"33889":2,"33890":2,"33891":2,"33892":1,"33893":2,"33894":2,"33895":2,"33896":1,"33897":1,"33898":2,"33899":1,"33900":1,"33901":1,"33902":2,"33903":1,"33904":2,"33905":1,"33906":1,"33907":2,"33908":2,"33909":1,"33910":1,"33911":2,"33912":1,"33913":2,"33914":1,"33915":2,"33916":1,"33917":1,"33918":1,"33919":2,"33920":2,"33921":2,"33922":2,"33923":1,"33924":2,"33925":2,"33926":1,"33927":2,"33928":2,"33929":2,"33930":2,"33931":1,"33932":1,"33933":2,"33934":1,"33935":1,"33936":1,"33937":1,"33938":2,"33939":1,"33940":1,"33941":1,"33942":1,"33943":1,"33944":2,"33945":1,"33946":1,"33947":1,"33948":1,"33949":2,"33950":2,"33951":2,"33952":1,"33953":2,"33954":1,"33955":1,"33956":2,"33957":1,"33958":2,"33959":1,"33960":1,"33961":2,"33962":2,"33963":1,"33964":2,"33965":1,"33966":1,"33967":2,"33968":1,"33969":1,"33970":2,"33971":2,"33972":2,"33973":1,"33974":2,"33975":1,"33976":2,"33977":2,"33978":2,"33979":1,"33980":2,"33981":1,"33982":1,"33983":1,"33984":1,"33985":2,"33986":1,"33987":1,"33988":1,"33989":1,"33990":1,"33991":2,"33992":2,"33993":2,"33994":2,"33995":1,"33996":2,"33997":1,"33998":1,"33999":1,"34000":2,"34001":1,"34002":1,"34003":2,"34004":1,"34005":2,"34006":1,"34007":1,"34008":1,"34009":2,"34010":2,"34011":1,"34012":2,"34013":1,"34014":1,"34015":2,"34016":2,"34017":2,"34018":1,"34019":2,"34020":2,"34021":1,"34022":2,"34023":1,"34024":1,"34025":1,"34026":1,"34027":1,"34028":1,"34029":1,"34030":1,"34031":2,"34032":1,"34033":1,"34034":2,"34035":2,"34036":2,"34037":2,"34038":1,"34039":2,"34040":1,"34041":1,"34042":1,"34043":1,"34044":2,"34045":1,"34046":2,"34047":1,"34048":1,"34049":1,"34050":2,"34051":1,"34052":2,"34053":1,"34054":1,"34055":1,"34056":1,"34057":1,"34058":1,"34059":1,"34060":1,"34061":2,"34062":2,"34063":1,"34064":1,"34065":2,"34066":2,"34067":2,"34068":2,"34069":2,"34070":1,"34071":1,"34072":2,"34073":1,"34074":1,"34075":2,"34076":2,"34077":1,"34078":2,"34079":1,"34080":2,"34081":1,"34082":1,"34083":2,"34084":2,"34085":2,"34086":2,"34087":2,"34088":2,"34089":1,"34090":1,"34091":2,"34092":1,"34093":1,"34094":2,"34095":2,"34096":1,"34097":2,"34098":1,"34099":1,"34100":2,"34101":1,"34102":2,"34103":2,"34104":2,"34105":1,"34106":1,"34107":2,"34108":1,"34109":1,"34110":2,"34111":2,"34112":2,"34113":2,"34114":2,"34115":1,"34116":1,"34117":1,"34118":2,"34119":2,"34120":1,"34121":2,"34122":1,"34123":2,"34124":2,"34125":1,"34126":1,"34127":1,"34128":1,"34129":1,"34130":2,"34131":1,"34132":2,"34133":1,"34134":2,"34135":1,"34136":2,"34137":2,"34138":1,"34139":2,"34140":1,"34141":2,"34142":1,"34143":2,"34144":1,"34145":1,"34146":1,"34147":2,"34148":1,"34149":1,"34150":1,"34151":1,"34152":2,"34153":1,"34154":2,"34155":1,"34156":1,"34157":1,"34158":2,"34159":2,"34160":2,"34161":1,"34162":2,"34163":1,"34164":1,"34165":2,"34166":1,"34167":2,"34168":1,"34169":2,"34170":1,"34171":2,"34172":1,"34173":2,"34174":1,"34175":2,"34176":1,"34177":1,"34178":1,"34179":2,"34180":1,"34181":2,"34182":2,"34183":2,"34184":1,"34185":2,"34186":1,"34187":2,"34188":1,"34189":1,"34190":2,"34191":1,"34192":1,"34193":1,"34194":1,"34195":1,"34196":1,"34197":2,"34198":2,"34199":2,"34200":2,"34201":1,"34202":1,"34203":2,"34204":2,"34205":1,"34206":1,"34207":1,"34208":1,"34209":1,"34210":2,"34211":2,"34212":1,"34213":2,"34214":2,"34215":2,"34216":2,"34217":1,"34218":1,"34219":1,"34220":2,"34221":1,"34222":1,"34223":2,"34224":1,"34225":2,"34226":2,"34227":1,"34228":2,"34229":2,"34230":2,"34231":1,"34232":1,"34233":1,"34234":2,"34235":2,"34236":2,"34237":2,"34238":1,"34239":2,"34240":2,"34241":1,"34242":1,"34243":2,"34244":1,"34245":2,"34246":1,"34247":1,"34248":2,"34249":2,"34250":2,"34251":1,"34252":2,"34253":2,"34254":1,"34255":1,"34256":1,"34257":2,"34258":2,"34259":2,"34260":1,"34261":2,"34262":2,"34263":2,"34264":1,"34265":1,"34266":2,"34267":1,"34268":2,"34269":1,"34270":1,"34271":1,"34272":2,"34273":1,"34274":2,"34275":1,"34276":2,"34277":1,"34278":2,"34279":2,"34280":1,"34281":2,"34282":1,"34283":1,"34284":2,"34285":1,"34286":1,"34287":2,"34288":1,"34289":1,"34290":1,"34291":1,"34292":2,"34293":1,"34294":2,"34295":1,"34296":2,"34297":1,"34298":1,"34299":1,"34300":1,"34301":1,"34302":2,"34303":1,"34304":1,"34305":1,"34306":1,"34307":2,"34308":2,"34309":1,"34310":1,"34311":2,"34312":2,"34313":2,"34314":2,"34315":2,"34316":1,"34317":1,"34318":1,"34319":1,"34320":2,"34321":1,"34322":2,"34323":2,"34324":1,"34325":2,"34326":1,"34327":2,"34328":1,"34329":2,"34330":2,"34331":1,"34332":2,"34333":1,"34334":1,"34335":2,"34336":2,"34337":1,"34338":1,"34339":1,"34340":2,"34341":1,"34342":2,"34343":2,"34344":1,"34345":2,"34346":1,"34347":2,"34348":1,"34349":2,"34350":2,"34351":1,"34352":1,"34353":1,"34354":2,"34355":2,"34356":1,"34357":2,"34358":1,"34359":2,"34360":2,"34361":1,"34362":1,"34363":2,"34364":2,"34365":2,"34366":1,"34367":2,"34368":2,"34369":1,"34370":1,"34371":1,"34372":1,"34373":1,"34374":2,"34375":2,"34376":1,"34377":1,"34378":1,"34379":1,"34380":2,"34381":2,"34382":1,"34383":1,"34384":1,"34385":2,"34386":1,"34387":1,"34388":1,"34389":2,"34390":2,"34391":2,"34392":2,"34393":1,"34394":1,"34395":2,"34396":1,"34397":2,"34398":2,"34399":2,"34400":1,"34401":1,"34402":1,"34403":1,"34404":1,"34405":1,"34406":1,"34407":1,"34408":1,"34409":2,"34410":1,"34411":1,"34412":2,"34413":1,"34414":2,"34415":2,"34416":1,"34417":1,"34418":2,"34419":2,"34420":2,"34421":2,"34422":2,"34423":1,"34424":2,"34425":2,"34426":2,"34427":1,"34428":2,"34429":1,"34430":2,"34431":2,"34432":1,"34433":2,"34434":2,"34435":2,"34436":1,"34437":1,"34438":1,"34439":2,"34440":1,"34441":2,"34442":2,"34443":2,"34444":2,"34445":2,"34446":2,"34447":2,"34448":1,"34449":2,"34450":1,"34451":1,"34452":1,"34453":2,"34454":2,"34455":1,"34456":1,"34457":1,"34458":2,"34459":1,"34460":2,"34461":1,"34462":1,"34463":1,"34464":2,"34465":1,"34466":2,"34467":2,"34468":2,"34469":2,"34470":1,"34471":2,"34472":2,"34473":2,"34474":2,"34475":1,"34476":1,"34477":2,"34478":1,"34479":2,"34480":2,"34481":2,"34482":1,"34483":2,"34484":2,"34485":2,"34486":1,"34487":1,"34488":1,"34489":1,"34490":2,"34491":1,"34492":2,"34493":1,"34494":2,"34495":2,"34496":2,"34497":1,"34498":2,"34499":2,"34500":2,"34501":2,"34502":1,"34503":1,"34504":1,"34505":2,"34506":1,"34507":2,"34508":1,"34509":1,"34510":2,"34511":2,"34512":2,"34513":1,"34514":2,"34515":2,"34516":2,"34517":1,"34518":2,"34519":1,"34520":1,"34521":2,"34522":1,"34523":2,"34524":1,"34525":1,"34526":1,"34527":1,"34528":2,"34529":2,"34530":2,"34531":2,"34532":1,"34533":1,"34534":2,"34535":1,"34536":2,"34537":2,"34538":1,"34539":2,"34540":2,"34541":1,"34542":2,"34543":2,"34544":2,"34545":2,"34546":1,"34547":2,"34548":1,"34549":2,"34550":1,"34551":1,"34552":1,"34553":2,"34554":1,"34555":1,"34556":2,"34557":1,"34558":2,"34559":2,"34560":2,"34561":1,"34562":1,"34563":1,"34564":1,"34565":2,"34566":2,"34567":2,"34568":1,"34569":2,"34570":2,"34571":1,"34572":2,"34573":1,"34574":2,"34575":2,"34576":1,"34577":1,"34578":2,"34579":2,"34580":1,"34581":1,"34582":2,"34583":1,"34584":2,"34585":1,"34586":2,"34587":1,"34588":1,"34589":2,"34590":1,"34591":2,"34592":1,"34593":1,"34594":2,"34595":1,"34596":1,"34597":2,"34598":2,"34599":2,"34600":2,"34601":2,"34602":2,"34603":2,"34604":2,"34605":2,"34606":1,"34607":1,"34608":1,"34609":1,"34610":1,"34611":1,"34612":1,"34613":2,"34614":2,"34615":2,"34616":2,"34617":1,"34618":1,"34619":2,"34620":1,"34621":1,"34622":1,"34623":1,"34624":2,"34625":1,"34626":2,"34627":1,"34628":1,"34629":1,"34630":2,"34631":1,"34632":2,"34633":1,"34634":1,"34635":2,"34636":1,"34637":2,"34638":2,"34639":1,"34640":2,"34641":1,"34642":1,"34643":1,"34644":1,"34645":1,"34646":1,"34647":2,"34648":1,"34649":2,"34650":1,"34651":2,"34652":1,"34653":2,"34654":1,"34655":1,"34656":1,"34657":2,"34658":2,"34659":1,"34660":1,"34661":2,"34662":1,"34663":2,"34664":2,"34665":2,"34666":1,"34667":2,"34668":2,"34669":2,"34670":1,"34671":2,"34672":2,"34673":1,"34674":2,"34675":1,"34676":2,"34677":1,"34678":2,"34679":1,"34680":2,"34681":2,"34682":1,"34683":2,"34684":1,"34685":2,"34686":2,"34687":1,"34688":1,"34689":2,"34690":1,"34691":2,"34692":2,"34693":2,"34694":1,"34695":2,"34696":2,"34697":1,"34698":2,"34699":2,"34700":1,"34701":1,"34702":2,"34703":2,"34704":2,"34705":1,"34706":1,"34707":1,"34708":2,"34709":2,"34710":1,"34711":2,"34712":1,"34713":1,"34714":2,"34715":2,"34716":2,"34717":1,"34718":1,"34719":2,"34720":1,"34721":2,"34722":2,"34723":2,"34724":1,"34725":2,"34726":2,"34727":2,"34728":1,"34729":1,"34730":2,"34731":1,"34732":2,"34733":2,"34734":1,"34735":1,"34736":1,"34737":2,"34738":1,"34739":2,"34740":2,"34741":2,"34742":1,"34743":2,"34744":1,"34745":1,"34746":1,"34747":2,"34748":1,"34749":1,"34750":2,"34751":1,"34752":2,"34753":1,"34754":2,"34755":2,"34756":1,"34757":2,"34758":2,"34759":2,"34760":1,"34761":2,"34762":1,"34763":1,"34764":1,"34765":1,"34766":2,"34767":1,"34768":1,"34769":1,"34770":2,"34771":2,"34772":1,"34773":2,"34774":1,"34775":2,"34776":2,"34777":2,"34778":1,"34779":2,"34780":2,"34781":2,"34782":1,"34783":1,"34784":1,"34785":2,"34786":2,"34787":2,"34788":1,"34789":1,"34790":2,"34791":2,"34792":2,"34793":2,"34794":1,"34795":2,"34796":1,"34797":1,"34798":2,"34799":2,"34800":2,"34801":1,"34802":2,"34803":1,"34804":1,"34805":1,"34806":2,"34807":2,"34808":2,"34809":2,"34810":2,"34811":1,"34812":1,"34813":2,"34814":1,"34815":2,"34816":2,"34817":1,"34818":2,"34819":2,"34820":2,"34821":2,"34822":1,"34823":2,"34824":1,"34825":2,"34826":1,"34827":1,"34828":2,"34829":1,"34830":1,"34831":1,"34832":1,"34833":2,"34834":1,"34835":2,"34836":2,"34837":1,"34838":2,"34839":2,"34840":2,"34841":1,"34842":2,"34843":1,"34844":1,"34845":2,"34846":1,"34847":2,"34848":1,"34849":1,"34850":2,"34851":2,"34852":1,"34853":2,"34854":2,"34855":2,"34856":1,"34857":2,"34858":1,"34859":1,"34860":1,"34861":1,"34862":1,"34863":2,"34864":2,"34865":1,"34866":2,"34867":1,"34868":1,"34869":2,"34870":1,"34871":1,"34872":1,"34873":2,"34874":1,"34875":1,"34876":2,"34877":2,"34878":1,"34879":2,"34880":2,"34881":1,"34882":1,"34883":2,"34884":2,"34885":1,"34886":2,"34887":1,"34888":1,"34889":1,"34890":1,"34891":2,"34892":2,"34893":2,"34894":1,"34895":2,"34896":2,"34897":2,"34898":2,"34899":1,"34900":1,"34901":2,"34902":2,"34903":2,"34904":2,"34905":2,"34906":2,"34907":1,"34908":2,"34909":1,"34910":2,"34911":1,"34912":2,"34913":1,"34914":2,"34915":1,"34916":1,"34917":1,"34918":1,"34919":1,"34920":1,"34921":1,"34922":2,"34923":1,"34924":1,"34925":1,"34926":2,"34927":2,"34928":2,"34929":2,"34930":2,"34931":2,"34932":2,"34933":1,"34934":1,"34935":2,"34936":2,"34937":2,"34938":2,"34939":1,"34940":2,"34941":2,"34942":2,"34943":1,"34944":2,"34945":2,"34946":1,"34947":2,"34948":2,"34949":2,"34950":1,"34951":1,"34952":1,"34953":1,"34954":2,"34955":1,"34956":2,"34957":2,"34958":2,"34959":1,"34960":1,"34961":1,"34962":2,"34963":2,"34964":1,"34965":2,"34966":1,"34967":2,"34968":1,"34969":1,"34970":1,"34971":1,"34972":2,"34973":1,"34974":2,"34975":2,"34976":2,"34977":1,"34978":2,"34979":1,"34980":2,"34981":2,"34982":2,"34983":2,"34984":2,"34985":2,"34986":1,"34987":1,"34988":1,"34989":1,"34990":2,"34991":1,"34992":1,"34993":1,"34994":2,"34995":1,"34996":2,"34997":1,"34998":1,"34999":2,"35000":2,"35001":2,"35002":2,"35003":1,"35004":2,"35005":1,"35006":2,"35007":1,"35008":2,"35009":1,"35010":1,"35011":1,"35012":1,"35013":2,"35014":2,"35015":2,"35016":1,"35017":2,"35018":1,"35019":2,"35020":1,"35021":1,"35022":1,"35023":2,"35024":2,"35025":1,"35026":2,"35027":2,"35028":1,"35029":1,"35030":1,"35031":1,"35032":1,"35033":2,"35034":1,"35035":1,"35036":2,"35037":1,"35038":2,"35039":1,"35040":1,"35041":2,"35042":2,"35043":2,"35044":2,"35045":2,"35046":2,"35047":2,"35048":2,"35049":1,"35050":2,"35051":2,"35052":1,"35053":1,"35054":2,"35055":1,"35056":1,"35057":1,"35058":2,"35059":2,"35060":2,"35061":2,"35062":1,"35063":1,"35064":1,"35065":2,"35066":2,"35067":1,"35068":1,"35069":2,"35070":1,"35071":1,"35072":2,"35073":2,"35074":2,"35075":2,"35076":2,"35077":2,"35078":2,"35079":1,"35080":2,"35081":2,"35082":1,"35083":1,"35084":1,"35085":1,"35086":1,"35087":2,"35088":1,"35089":2,"35090":2,"35091":2,"35092":2,"35093":1,"35094":2,"35095":1,"35096":2,"35097":2,"35098":1,"35099":1,"35100":2,"35101":2,"35102":1,"35103":2,"35104":2,"35105":2,"35106":2,"35107":2,"35108":2,"35109":2,"35110":1,"35111":2,"35112":1,"35113":1,"35114":2,"35115":2,"35116":2,"35117":1,"35118":2,"35119":1,"35120":1,"35121":2,"35122":2,"35123":1,"35124":2,"35125":1,"35126":2,"35127":1,"35128":2,"35129":2,"35130":1,"35131":1,"35132":1,"35133":1,"35134":2,"35135":2,"35136":1,"35137":2,"35138":2,"35139":1,"35140":1,"35141":2,"35142":2,"35143":2,"35144":1,"35145":2,"35146":1,"35147":2,"35148":2,"35149":2,"35150":1,"35151":2,"35152":2,"35153":2,"35154":1,"35155":1,"35156":1,"35157":1,"35158":2,"35159":2,"35160":2,"35161":2,"35162":2,"35163":2,"35164":1,"35165":1,"35166":1,"35167":1,"35168":1,"35169":2,"35170":1,"35171":1,"35172":2,"35173":2,"35174":1,"35175":2,"35176":1,"35177":2,"35178":1,"35179":2,"35180":2,"35181":2,"35182":1,"35183":1,"35184":1,"35185":2,"35186":2,"35187":2,"35188":2,"35189":2,"35190":2,"35191":2,"35192":2,"35193":1,"35194":1,"35195":2,"35196":2,"35197":2,"35198":1,"35199":1,"35200":1,"35201":2,"35202":2,"35203":1,"35204":1,"35205":1,"35206":2,"35207":2,"35208":1,"35209":1,"35210":2,"35211":2,"35212":2,"35213":1,"35214":1,"35215":2,"35216":1,"35217":2,"35218":1,"35219":1,"35220":1,"35221":2,"35222":2,"35223":1,"35224":2,"35225":2,"35226":1,"35227":1,"35228":1,"35229":2,"35230":1,"35231":2,"35232":2,"35233":2,"35234":1,"35235":2,"35236":2,"35237":1,"35238":1,"35239":2,"35240":1,"35241":1,"35242":2,"35243":2,"35244":1,"35245":1,"35246":2,"35247":1,"35248":1,"35249":2,"35250":2,"35251":2,"35252":2,"35253":2,"35254":2,"35255":2,"35256":1,"35257":1,"35258":1,"35259":1,"35260":1,"35261":1,"35262":2,"35263":2,"35264":2,"35265":2,"35266":2,"35267":2,"35268":1,"35269":2,"35270":2,"35271":1,"35272":1,"35273":1,"35274":2,"35275":2,"35276":1,"35277":2,"35278":2,"35279":2,"35280":1,"35281":2,"35282":2,"35283":2,"35284":1,"35285":1,"35286":1,"35287":2,"35288":2,"35289":2,"35290":2,"35291":2,"35292":1,"35293":2,"35294":1,"35295":1,"35296":2,"35297":2,"35298":1,"35299":2,"35300":1,"35301":1,"35302":1,"35303":1,"35304":2,"35305":1,"35306":2,"35307":2,"35308":2,"35309":2,"35310":2,"35311":1,"35312":2,"35313":1,"35314":1,"35315":2,"35316":2,"35317":2,"35318":2,"35319":2,"35320":1,"35321":2,"35322":1,"35323":1,"35324":2,"35325":1,"35326":1,"35327":2,"35328":1,"35329":2,"35330":2,"35331":2,"35332":2,"35333":2,"35334":2,"35335":2,"35336":2,"35337":1,"35338":1,"35339":2,"35340":1,"35341":2,"35342":1,"35343":1,"35344":2,"35345":1,"35346":2,"35347":2,"35348":2,"35349":2,"35350":1,"35351":1,"35352":1,"35353":1,"35354":2,"35355":1,"35356":1,"35357":2,"35358":2,"35359":1,"35360":1,"35361":1,"35362":1,"35363":2,"35364":1,"35365":2,"35366":2,"35367":1,"35368":2,"35369":2,"35370":1,"35371":1,"35372":2,"35373":2,"35374":2,"35375":1,"35376":1,"35377":1,"35378":1,"35379":1,"35380":2,"35381":2,"35382":2,"35383":1,"35384":1,"35385":1,"35386":2,"35387":1,"35388":1,"35389":2,"35390":2,"35391":2,"35392":2,"35393":2,"35394":1,"35395":1,"35396":2,"35397":2,"35398":1,"35399":1,"35400":1,"35401":1,"35402":2,"35403":2,"35404":1,"35405":1,"35406":2,"35407":2,"35408":2,"35409":2,"35410":1,"35411":2,"35412":1,"35413":1,"35414":2,"35415":2,"35416":1,"35417":1,"35418":1,"35419":2,"35420":1,"35421":2,"35422":2,"35423":1,"35424":1,"35425":2,"35426":1,"35427":2,"35428":1,"35429":1,"35430":2,"35431":2,"35432":1,"35433":1,"35434":2,"35435":2,"35436":1,"35437":1,"35438":1,"35439":2,"35440":1,"35441":1,"35442":2,"35443":2,"35444":1,"35445":1,"35446":1,"35447":1,"35448":2,"35449":2,"35450":1,"35451":2,"35452":2,"35453":1,"35454":1,"35455":2,"35456":2,"35457":1,"35458":2,"35459":2,"35460":2,"35461":1,"35462":2,"35463":2,"35464":2,"35465":1,"35466":1,"35467":1,"35468":1,"35469":2,"35470":1,"35471":1,"35472":1,"35473":1,"35474":1,"35475":2,"35476":2,"35477":2,"35478":2,"35479":1,"35480":1,"35481":1,"35482":1,"35483":2,"35484":2,"35485":1,"35486":2,"35487":2,"35488":1,"35489":1,"35490":1,"35491":2,"35492":2,"35493":2,"35494":2,"35495":1,"35496":2,"35497":1,"35498":1,"35499":2,"35500":1,"35501":2,"35502":2,"35503":2,"35504":1,"35505":1,"35506":1,"35507":1,"35508":2,"35509":2,"35510":2,"35511":2,"35512":1,"35513":1,"35514":2,"35515":2,"35516":1,"35517":2,"35518":2,"35519":1,"35520":1,"35521":1,"35522":2,"35523":1,"35524":1,"35525":1,"35526":1,"35527":1,"35528":2,"35529":2,"35530":1,"35531":2,"35532":1,"35533":2,"35534":2,"35535":1,"35536":1,"35537":1,"35538":1,"35539":1,"35540":2,"35541":2,"35542":2,"35543":1,"35544":1,"35545":1,"35546":1,"35547":1,"35548":2,"35549":2,"35550":1,"35551":1,"35552":1,"35553":1,"35554":2,"35555":1,"35556":2,"35557":2,"35558":2,"35559":2,"35560":1,"35561":2,"35562":2,"35563":2,"35564":1,"35565":2,"35566":1,"35567":2,"35568":1,"35569":1,"35570":2,"35571":1,"35572":1,"35573":2,"35574":2,"35575":1,"35576":2,"35577":1,"35578":2,"35579":2,"35580":2,"35581":2,"35582":1,"35583":2,"35584":1,"35585":2,"35586":1,"35587":2,"35588":2,"35589":2,"35590":1,"35591":2,"35592":2,"35593":2,"35594":1,"35595":1,"35596":1,"35597":2,"35598":1,"35599":1,"35600":1,"35601":1,"35602":2,"35603":2,"35604":2,"35605":1,"35606":2,"35607":1,"35608":2,"35609":1,"35610":1,"35611":1,"35612":1,"35613":1,"35614":1,"35615":2,"35616":2,"35617":2,"35618":1,"35619":2,"35620":2,"35621":2,"35622":1,"35623":2,"35624":1,"35625":1,"35626":1,"35627":1,"35628":1,"35629":1,"35630":2,"35631":2,"35632":2,"35633":2,"35634":1,"35635":2,"35636":1,"35637":2,"35638":1,"35639":1,"35640":2,"35641":1,"35642":1,"35643":1,"35644":1,"35645":1,"35646":2,"35647":1,"35648":1,"35649":1,"35650":2,"35651":1,"35652":1,"35653":1,"35654":1,"35655":1,"35656":1,"35657":2,"35658":1,"35659":1,"35660":2,"35661":1,"35662":1,"35663":2,"35664":2,"35665":2,"35666":2,"35667":1,"35668":1,"35669":2,"35670":2,"35671":1,"35672":1,"35673":2,"35674":1,"35675":1,"35676":2,"35677":1,"35678":2,"35679":2,"35680":1,"35681":2,"35682":2,"35683":1,"35684":1,"35685":1,"35686":1,"35687":2,"35688":2,"35689":2,"35690":1,"35691":1,"35692":2,"35693":1,"35694":2,"35695":2,"35696":2,"35697":1,"35698":1,"35699":1,"35700":1,"35701":2,"35702":2,"35703":2,"35704":2,"35705":2,"35706":2,"35707":1,"35708":2,"35709":2,"35710":2,"35711":2,"35712":2,"35713":2,"35714":1,"35715":2,"35716":1,"35717":2,"35718":2,"35719":2,"35720":1,"35721":1,"35722":1,"35723":1,"35724":2,"35725":1,"35726":1,"35727":1,"35728":1,"35729":1,"35730":2,"35731":1,"35732":1,"35733":2,"35734":1,"35735":1,"35736":1,"35737":1,"35738":2,"35739":1,"35740":1,"35741":2,"35742":2,"35743":1,"35744":1,"35745":1,"35746":2,"35747":1,"35748":2,"35749":2,"35750":2,"35751":1,"35752":1,"35753":2,"35754":1,"35755":1,"35756":2,"35757":1,"35758":1,"35759":2,"35760":1,"35761":2,"35762":2,"35763":1,"35764":1,"35765":2,"35766":2,"35767":2,"35768":1,"35769":1,"35770":2,"35771":1,"35772":2,"35773":1,"35774":2,"35775":2,"35776":2,"35777":2,"35778":1,"35779":1,"35780":1,"35781":2,"35782":1,"35783":1,"35784":2,"35785":1,"35786":1,"35787":2,"35788":2,"35789":1,"35790":2,"35791":1,"35792":1,"35793":2,"35794":1,"35795":1,"35796":1,"35797":2,"35798":1,"35799":1,"35800":1,"35801":1,"35802":2,"35803":2,"35804":1,"35805":2,"35806":2,"35807":1,"35808":1,"35809":1,"35810":1,"35811":2,"35812":2,"35813":1,"35814":1,"35815":1,"35816":1,"35817":2,"35818":1,"35819":2,"35820":2,"35821":1,"35822":1,"35823":1,"35824":1,"35825":1,"35826":2,"35827":1,"35828":2,"35829":2,"35830":2,"35831":2,"35832":1,"35833":2,"35834":1,"35835":2,"35836":1,"35837":2,"35838":2,"35839":1,"35840":1,"35841":2,"35842":2,"35843":2,"35844":2,"35845":1,"35846":2,"35847":2,"35848":1,"35849":2,"35850":1,"35851":2,"35852":1,"35853":1,"35854":2,"35855":1,"35856":2,"35857":1,"35858":2,"35859":2,"35860":2,"35861":2,"35862":1,"35863":1,"35864":2,"35865":2,"35866":1,"35867":1,"35868":1,"35869":2,"35870":1,"35871":2,"35872":2,"35873":2,"35874":1,"35875":2,"35876":2,"35877":1,"35878":1,"35879":1,"35880":2,"35881":2,"35882":1,"35883":1,"35884":1,"35885":1,"35886":2,"35887":2,"35888":1,"35889":1,"35890":2,"35891":1,"35892":2,"35893":1,"35894":1,"35895":1,"35896":2,"35897":1,"35898":2,"35899":1,"35900":2,"35901":2,"35902":2,"35903":2,"35904":1,"35905":1,"35906":2,"35907":2,"35908":1,"35909":2,"35910":1,"35911":2,"35912":1,"35913":2,"35914":1,"35915":2,"35916":2,"35917":1,"35918":2,"35919":2,"35920":2,"35921":1,"35922":2,"35923":2,"35924":2,"35925":2,"35926":1,"35927":2,"35928":2,"35929":2,"35930":1,"35931":2,"35932":2,"35933":2,"35934":1,"35935":2,"35936":2,"35937":2,"35938":2,"35939":1,"35940":1,"35941":1,"35942":2,"35943":2,"35944":2,"35945":1,"35946":2,"35947":1,"35948":2,"35949":1,"35950":1,"35951":1,"35952":1,"35953":1,"35954":1,"35955":2,"35956":1,"35957":2,"35958":2,"35959":2,"35960":1,"35961":1,"35962":1,"35963":2,"35964":2,"35965":2,"35966":1,"35967":1,"35968":1,"35969":1,"35970":2,"35971":2,"35972":2,"35973":2,"35974":2,"35975":2,"35976":2,"35977":2,"35978":2,"35979":2,"35980":2,"35981":2,"35982":1,"35983":2,"35984":2,"35985":1,"35986":1,"35987":2,"35988":2,"35989":1,"35990":2,"35991":1,"35992":1,"35993":1,"35994":2,"35995":2,"35996":2,"35997":2,"35998":2,"35999":2,"36000":2,"36001":1,"36002":2,"36003":1,"36004":2,"36005":2,"36006":2,"36007":1,"36008":2,"36009":1,"36010":1,"36011":2,"36012":2,"36013":2,"36014":1,"36015":1,"36016":1,"36017":2,"36018":2,"36019":2,"36020":1,"36021":2,"36022":2,"36023":1,"36024":1,"36025":2,"36026":1,"36027":2,"36028":1,"36029":2,"36030":1,"36031":1,"36032":2,"36033":1,"36034":1,"36035":2,"36036":1,"36037":1,"36038":2,"36039":1,"36040":2,"36041":1,"36042":1,"36043":2,"36044":2,"36045":2,"36046":1,"36047":2,"36048":1,"36049":1,"36050":2,"36051":2,"36052":2,"36053":1,"36054":1,"36055":2,"36056":1,"36057":2,"36058":1,"36059":2,"36060":2,"36061":1,"36062":2,"36063":2,"36064":1,"36065":1,"36066":2,"36067":1,"36068":2,"36069":1,"36070":1,"36071":2,"36072":2,"36073":2,"36074":1,"36075":2,"36076":2,"36077":1,"36078":2,"36079":2,"36080":2,"36081":1,"36082":1,"36083":2,"36084":1,"36085":1,"36086":2,"36087":2,"36088":2,"36089":1,"36090":1,"36091":2,"36092":2,"36093":1,"36094":2,"36095":2,"36096":1,"36097":1,"36098":1,"36099":2,"36100":2,"36101":2,"36102":2,"36103":1,"36104":2,"36105":1,"36106":1,"36107":1,"36108":2,"36109":2,"36110":1,"36111":2,"36112":1,"36113":1,"36114":1,"36115":1,"36116":2,"36117":1,"36118":1,"36119":2,"36120":1,"36121":2,"36122":2,"36123":1,"36124":2,"36125":2,"36126":2,"36127":1,"36128":1,"36129":1,"36130":2,"36131":2,"36132":1,"36133":2,"36134":2,"36135":2,"36136":2,"36137":2,"36138":2,"36139":1,"36140":2,"36141":2,"36142":1,"36143":1,"36144":2,"36145":1,"36146":2,"36147":1,"36148":2,"36149":1,"36150":2,"36151":2,"36152":1,"36153":1,"36154":2,"36155":1,"36156":2,"36157":2,"36158":2,"36159":1,"36160":1,"36161":2,"36162":2,"36163":2,"36164":1,"36165":1,"36166":2,"36167":1,"36168":1,"36169":1,"36170":1,"36171":1,"36172":1,"36173":1,"36174":1,"36175":1,"36176":2,"36177":1,"36178":2,"36179":2,"36180":1,"36181":1,"36182":1,"36183":2,"36184":1,"36185":2,"36186":2,"36187":2,"36188":2,"36189":2,"36190":2,"36191":1,"36192":1,"36193":1,"36194":2,"36195":1,"36196":1,"36197":1,"36198":1,"36199":2,"36200":2,"36201":1,"36202":2,"36203":1,"36204":2,"36205":1,"36206":2,"36207":2,"36208":2,"36209":2,"36210":2,"36211":2,"36212":1,"36213":1,"36214":2,"36215":2,"36216":2,"36217":1,"36218":1,"36219":2,"36220":2,"36221":1,"36222":1,"36223":1,"36224":2,"36225":1,"36226":1,"36227":1,"36228":2,"36229":1,"36230":2,"36231":1,"36232":2,"36233":2,"36234":1,"36235":1,"36236":1,"36237":1,"36238":2,"36239":2,"36240":1,"36241":1,"36242":2,"36243":2,"36244":2,"36245":1,"36246":2,"36247":2,"36248":1,"36249":2,"36250":1,"36251":1,"36252":1,"36253":1,"36254":1,"36255":2,"36256":2,"36257":2,"36258":2,"36259":1,"36260":2,"36261":1,"36262":1,"36263":2,"36264":1,"36265":1,"36266":2,"36267":2,"36268":2,"36269":2,"36270":2,"36271":1,"36272":2,"36273":2,"36274":1,"36275":2,"36276":1,"36277":1,"36278":2,"36279":1,"36280":1,"36281":1,"36282":2,"36283":2,"36284":2,"36285":1,"36286":1,"36287":1,"36288":1,"36289":2,"36290":1,"36291":1,"36292":2,"36293":2,"36294":1,"36295":1,"36296":2,"36297":1,"36298":2,"36299":2,"36300":2,"36301":1,"36302":1,"36303":2,"36304":2,"36305":1,"36306":1,"36307":2,"36308":2,"36309":2,"36310":2,"36311":1,"36312":2,"36313":2,"36314":1,"36315":1,"36316":2,"36317":2,"36318":2,"36319":2,"36320":2,"36321":1,"36322":2,"36323":2,"36324":2,"36325":1,"36326":2,"36327":1,"36328":1,"36329":2,"36330":1,"36331":2,"36332":2,"36333":1,"36334":1,"36335":1,"36336":1,"36337":1,"36338":2,"36339":2,"36340":2,"36341":2,"36342":1,"36343":1,"36344":2,"36345":1,"36346":1,"36347":2,"36348":2,"36349":1,"36350":2,"36351":1,"36352":2,"36353":1,"36354":1,"36355":2,"36356":1,"36357":1,"36358":1,"36359":2,"36360":2,"36361":2,"36362":2,"36363":2,"36364":2,"36365":2,"36366":2,"36367":2,"36368":2,"36369":1,"36370":2,"36371":2,"36372":1,"36373":2,"36374":2,"36375":2,"36376":1,"36377":1,"36378":1,"36379":1,"36380":2,"36381":1,"36382":2,"36383":1,"36384":2,"36385":1,"36386":2,"36387":1,"36388":2,"36389":2,"36390":1,"36391":1,"36392":1,"36393":1,"36394":2,"36395":1,"36396":2,"36397":2,"36398":1,"36399":1,"36400":2,"36401":1,"36402":2,"36403":1,"36404":2,"36405":1,"36406":1,"36407":1,"36408":1,"36409":1,"36410":2,"36411":2,"36412":1,"36413":1,"36414":1,"36415":2,"36416":2,"36417":2,"36418":1,"36419":2,"36420":2,"36421":1,"36422":1,"36423":1,"36424":1,"36425":2,"36426":1,"36427":1,"36428":1,"36429":1,"36430":1,"36431":2,"36432":2,"36433":2,"36434":1,"36435":1,"36436":2,"36437":1,"36438":1,"36439":2,"36440":1,"36441":1,"36442":1,"36443":1,"36444":2,"36445":1,"36446":2,"36447":1,"36448":1,"36449":1,"36450":1,"36451":1,"36452":1,"36453":1,"36454":1,"36455":2,"36456":1,"36457":1,"36458":2,"36459":1,"36460":1,"36461":1,"36462":1,"36463":1,"36464":2,"36465":1,"36466":1,"36467":1,"36468":2,"36469":1,"36470":1,"36471":2,"36472":2,"36473":1,"36474":1,"36475":2,"36476":2,"36477":2,"36478":1,"36479":2,"36480":1,"36481":1,"36482":1,"36483":2,"36484":1,"36485":1,"36486":1,"36487":1,"36488":2,"36489":1,"36490":2,"36491":1,"36492":1,"36493":2,"36494":1,"36495":1,"36496":1,"36497":1,"36498":1,"36499":1,"36500":2,"36501":2,"36502":2,"36503":1,"36504":1,"36505":1,"36506":2,"36507":1,"36508":1,"36509":2,"36510":1,"36511":1,"36512":2,"36513":2,"36514":1,"36515":1,"36516":2,"36517":2,"36518":2,"36519":1,"36520":1,"36521":2,"36522":2,"36523":2,"36524":1,"36525":1,"36526":1,"36527":1,"36528":1,"36529":2,"36530":2,"36531":2,"36532":2,"36533":2,"36534":2,"36535":1,"36536":2,"36537":1,"36538":2,"36539":2,"36540":1,"36541":1,"36542":1,"36543":2,"36544":1,"36545":2,"36546":2,"36547":1,"36548":1,"36549":2,"36550":2,"36551":2,"36552":1,"36553":2,"36554":2,"36555":2,"36556":1,"36557":1,"36558":1,"36559":2,"36560":1,"36561":1,"36562":2,"36563":2,"36564":2,"36565":1,"36566":2,"36567":1,"36568":2,"36569":1,"36570":1,"36571":1,"36572":2,"36573":1,"36574":2,"36575":2,"36576":1,"36577":2,"36578":2,"36579":2,"36580":2,"36581":1,"36582":2,"36583":2,"36584":2,"36585":1,"36586":1,"36587":2,"36588":1,"36589":1,"36590":2,"36591":2,"36592":2,"36593":2,"36594":1,"36595":2,"36596":2,"36597":2,"36598":1,"36599":2,"36600":1,"36601":1,"36602":2,"36603":2,"36604":2,"36605":2,"36606":1,"36607":2,"36608":1,"36609":1,"36610":1,"36611":1,"36612":1,"36613":1,"36614":1,"36615":2,"36616":1,"36617":1,"36618":1,"36619":1,"36620":2,"36621":1,"36622":1,"36623":2,"36624":1,"36625":2,"36626":1,"36627":2,"36628":2,"36629":2,"36630":2,"36631":1,"36632":2,"36633":2,"36634":1,"36635":2,"36636":2,"36637":2,"36638":1,"36639":2,"36640":2,"36641":2,"36642":1,"36643":2,"36644":1,"36645":2,"36646":1,"36647":2,"36648":2,"36649":2,"36650":2,"36651":1,"36652":1,"36653":2,"36654":2,"36655":1,"36656":1,"36657":1,"36658":1,"36659":1,"36660":1,"36661":2,"36662":1,"36663":1,"36664":2,"36665":2,"36666":2,"36667":1,"36668":1,"36669":2,"36670":2,"36671":1,"36672":1,"36673":1,"36674":1,"36675":2,"36676":1,"36677":1,"36678":2,"36679":2,"36680":2,"36681":1,"36682":1,"36683":1,"36684":1,"36685":1,"36686":2,"36687":1,"36688":1,"36689":2,"36690":2,"36691":2,"36692":1,"36693":1,"36694":1,"36695":1,"36696":2,"36697":1,"36698":1,"36699":1,"36700":2,"36701":2,"36702":1,"36703":1,"36704":1,"36705":2,"36706":1,"36707":2,"36708":1,"36709":1,"36710":1,"36711":1,"36712":1,"36713":2,"36714":2,"36715":1,"36716":1,"36717":2,"36718":1,"36719":2,"36720":2,"36721":2,"36722":1,"36723":2,"36724":2,"36725":1,"36726":1,"36727":1,"36728":1,"36729":1,"36730":2,"36731":1,"36732":1,"36733":1,"36734":1,"36735":1,"36736":1,"36737":2,"36738":1,"36739":1,"36740":2,"36741":1,"36742":2,"36743":2,"36744":2,"36745":1,"36746":2,"36747":2,"36748":1,"36749":2,"36750":2,"36751":2,"36752":1,"36753":1,"36754":1,"36755":2,"36756":2,"36757":2,"36758":2,"36759":2,"36760":1,"36761":2,"36762":2,"36763":2,"36764":2,"36765":1,"36766":2,"36767":2,"36768":2,"36769":2,"36770":2,"36771":1,"36772":2,"36773":2,"36774":1,"36775":2,"36776":2,"36777":1,"36778":1,"36779":2,"36780":2,"36781":2,"36782":1,"36783":1,"36784":2,"36785":2,"36786":2,"36787":1,"36788":1,"36789":1,"36790":2,"36791":1,"36792":1,"36793":2,"36794":1,"36795":1,"36796":1,"36797":2,"36798":1,"36799":2,"36800":1,"36801":1,"36802":2,"36803":2,"36804":1,"36805":2,"36806":1,"36807":2,"36808":1,"36809":1,"36810":2,"36811":2,"36812":2,"36813":1,"36814":2,"36815":1,"36816":2,"36817":1,"36818":1,"36819":2,"36820":2,"36821":2,"36822":1,"36823":2,"36824":1,"36825":2,"36826":2,"36827":1,"36828":2,"36829":1,"36830":1,"36831":1,"36832":2,"36833":2,"36834":1,"36835":2,"36836":1,"36837":2,"36838":1,"36839":1,"36840":2,"36841":2,"36842":2,"36843":1,"36844":2,"36845":1,"36846":1,"36847":1,"36848":2,"36849":2,"36850":1,"36851":2,"36852":1,"36853":2,"36854":2,"36855":2,"36856":1,"36857":1,"36858":2,"36859":1,"36860":2,"36861":1,"36862":2,"36863":2,"36864":1,"36865":2,"36866":2,"36867":2,"36868":2,"36869":1,"36870":1,"36871":1,"36872":2,"36873":1,"36874":2,"36875":1,"36876":1,"36877":1,"36878":1,"36879":1,"36880":1,"36881":1,"36882":2,"36883":1,"36884":2,"36885":2,"36886":2,"36887":2,"36888":1,"36889":1,"36890":2,"36891":1,"36892":2,"36893":2,"36894":1,"36895":2,"36896":1,"36897":2,"36898":1,"36899":1,"36900":1,"36901":2,"36902":1,"36903":1,"36904":1,"36905":2,"36906":2,"36907":2,"36908":1,"36909":2,"36910":1,"36911":1,"36912":1,"36913":1,"36914":1,"36915":1,"36916":2,"36917":1,"36918":1,"36919":1,"36920":1,"36921":2,"36922":2,"36923":1,"36924":1,"36925":2,"36926":1,"36927":2,"36928":2,"36929":2,"36930":1,"36931":2,"36932":2,"36933":2,"36934":2,"36935":2,"36936":2,"36937":1,"36938":2,"36939":2,"36940":1,"36941":2,"36942":1,"36943":2,"36944":2,"36945":1,"36946":1,"36947":2,"36948":2,"36949":1,"36950":2,"36951":1,"36952":2,"36953":2,"36954":2,"36955":2,"36956":1,"36957":1,"36958":2,"36959":2,"36960":2,"36961":2,"36962":2,"36963":2,"36964":2,"36965":2,"36966":1,"36967":2,"36968":2,"36969":2,"36970":2,"36971":1,"36972":2,"36973":1,"36974":2,"36975":2,"36976":2,"36977":1,"36978":1,"36979":1,"36980":2,"36981":1,"36982":2,"36983":2,"36984":1,"36985":1,"36986":1,"36987":1,"36988":2,"36989":1,"36990":2,"36991":2,"36992":2,"36993":1,"36994":1,"36995":1,"36996":1,"36997":1,"36998":1,"36999":1,"37000":2,"37001":2,"37002":1,"37003":2,"37004":1,"37005":1,"37006":1,"37007":2,"37008":2,"37009":2,"37010":1,"37011":1,"37012":1,"37013":2,"37014":2,"37015":1,"37016":2,"37017":2,"37018":2,"37019":2,"37020":2,"37021":1,"37022":1,"37023":1,"37024":1,"37025":1,"37026":2,"37027":1,"37028":1,"37029":1,"37030":2,"37031":2,"37032":2,"37033":1,"37034":1,"37035":1,"37036":2,"37037":2,"37038":1,"37039":1,"37040":2,"37041":1,"37042":1,"37043":1,"37044":1,"37045":2,"37046":2,"37047":1,"37048":2,"37049":2,"37050":1,"37051":1,"37052":2,"37053":1,"37054":2,"37055":1,"37056":2,"37057":2,"37058":1,"37059":1,"37060":2,"37061":2,"37062":1,"37063":1,"37064":2,"37065":2,"37066":1,"37067":1,"37068":1,"37069":2,"37070":1,"37071":2,"37072":2,"37073":2,"37074":2,"37075":1,"37076":2,"37077":2,"37078":1,"37079":2,"37080":1,"37081":2,"37082":1,"37083":2,"37084":2,"37085":2,"37086":1,"37087":1,"37088":1,"37089":1,"37090":1,"37091":1,"37092":1,"37093":2,"37094":1,"37095":1,"37096":1,"37097":1,"37098":2,"37099":1,"37100":2,"37101":2,"37102":2,"37103":2,"37104":1,"37105":2,"37106":1,"37107":2,"37108":2,"37109":2,"37110":1,"37111":2,"37112":2,"37113":1,"37114":2,"37115":1,"37116":2,"37117":1,"37118":2,"37119":2,"37120":2,"37121":1,"37122":1,"37123":2,"37124":2,"37125":1,"37126":2,"37127":2,"37128":1,"37129":2,"37130":2,"37131":2,"37132":1,"37133":1,"37134":2,"37135":1,"37136":1,"37137":2,"37138":2,"37139":2,"37140":2,"37141":2,"37142":2,"37143":2,"37144":1,"37145":1,"37146":1,"37147":1,"37148":2,"37149":1,"37150":1,"37151":1,"37152":2,"37153":2,"37154":2,"37155":1,"37156":2,"37157":2,"37158":2,"37159":2,"37160":1,"37161":1,"37162":1,"37163":1,"37164":1,"37165":1,"37166":2,"37167":2,"37168":1,"37169":1,"37170":1,"37171":2,"37172":1,"37173":2,"37174":2,"37175":1,"37176":2,"37177":2,"37178":1,"37179":2,"37180":2,"37181":2,"37182":2,"37183":2,"37184":1,"37185":2,"37186":2,"37187":2,"37188":2,"37189":1,"37190":2,"37191":2,"37192":2,"37193":2,"37194":1,"37195":2,"37196":2,"37197":2,"37198":2,"37199":1,"37200":2,"37201":2,"37202":1,"37203":2,"37204":1,"37205":2,"37206":1,"37207":2,"37208":1,"37209":2,"37210":2,"37211":2,"37212":2,"37213":1,"37214":2,"37215":2,"37216":1,"37217":1,"37218":1,"37219":2,"37220":1,"37221":1,"37222":2,"37223":1,"37224":2,"37225":1,"37226":2,"37227":1,"37228":2,"37229":2,"37230":1,"37231":1,"37232":2,"37233":2,"37234":2,"37235":2,"37236":2,"37237":2,"37238":2,"37239":2,"37240":1,"37241":2,"37242":1,"37243":2,"37244":1,"37245":2,"37246":1,"37247":2,"37248":2,"37249":2,"37250":2,"37251":1,"37252":2,"37253":1,"37254":1,"37255":1,"37256":1,"37257":2,"37258":2,"37259":2,"37260":1,"37261":1,"37262":1,"37263":2,"37264":1,"37265":1,"37266":1,"37267":1,"37268":2,"37269":1,"37270":1,"37271":1,"37272":2,"37273":1,"37274":2,"37275":2,"37276":1,"37277":2,"37278":2,"37279":2,"37280":2,"37281":2,"37282":1,"37283":1,"37284":2,"37285":1,"37286":2,"37287":2,"37288":2,"37289":2,"37290":2,"37291":1,"37292":1,"37293":2,"37294":1,"37295":2,"37296":2,"37297":1,"37298":1,"37299":1,"37300":2,"37301":2,"37302":2,"37303":2,"37304":2,"37305":1,"37306":1,"37307":2,"37308":2,"37309":1,"37310":1,"37311":1,"37312":1,"37313":1,"37314":2,"37315":1,"37316":1,"37317":2,"37318":1,"37319":2,"37320":2,"37321":1,"37322":2,"37323":1,"37324":1,"37325":1,"37326":1,"37327":2,"37328":1,"37329":1,"37330":2,"37331":1,"37332":2,"37333":2,"37334":2,"37335":2,"37336":2,"37337":1,"37338":1,"37339":1,"37340":1,"37341":1,"37342":1,"37343":1,"37344":2,"37345":1,"37346":1,"37347":2,"37348":2,"37349":1,"37350":2,"37351":1,"37352":2,"37353":2,"37354":2,"37355":2,"37356":1,"37357":2,"37358":2,"37359":2,"37360":1,"37361":2,"37362":1,"37363":1,"37364":2,"37365":1,"37366":2,"37367":2,"37368":1,"37369":2,"37370":1,"37371":1,"37372":1,"37373":2,"37374":2,"37375":1,"37376":2,"37377":1,"37378":1,"37379":2,"37380":1,"37381":2,"37382":1,"37383":1,"37384":1,"37385":1,"37386":1,"37387":2,"37388":2,"37389":2,"37390":2,"37391":1,"37392":2,"37393":2,"37394":2,"37395":1,"37396":1,"37397":1,"37398":2,"37399":2,"37400":2,"37401":1,"37402":1,"37403":2,"37404":1,"37405":1,"37406":2,"37407":2,"37408":2,"37409":1,"37410":2,"37411":1,"37412":2,"37413":1,"37414":1,"37415":2,"37416":1,"37417":2,"37418":2,"37419":1,"37420":2,"37421":1,"37422":2,"37423":1,"37424":1,"37425":1,"37426":2,"37427":1,"37428":2,"37429":2,"37430":1,"37431":2,"37432":2,"37433":1,"37434":1,"37435":1,"37436":2,"37437":1,"37438":1,"37439":1,"37440":2,"37441":1,"37442":2,"37443":2,"37444":2,"37445":2,"37446":1,"37447":2,"37448":2,"37449":2,"37450":1,"37451":1,"37452":1,"37453":2,"37454":1,"37455":1,"37456":1,"37457":2,"37458":1,"37459":2,"37460":1,"37461":2,"37462":1,"37463":2,"37464":2,"37465":1,"37466":2,"37467":1,"37468":1,"37469":1,"37470":1,"37471":2,"37472":2,"37473":2,"37474":2,"37475":2,"37476":1,"37477":1,"37478":1,"37479":1,"37480":1,"37481":2,"37482":1,"37483":1,"37484":2,"37485":2,"37486":2,"37487":1,"37488":1,"37489":2,"37490":1,"37491":1,"37492":1,"37493":2,"37494":1,"37495":2,"37496":1,"37497":1,"37498":2,"37499":2,"37500":1,"37501":2,"37502":1,"37503":2,"37504":2,"37505":2,"37506":1,"37507":2,"37508":1,"37509":1,"37510":1,"37511":2,"37512":2,"37513":2,"37514":1,"37515":1,"37516":1,"37517":2,"37518":2,"37519":2,"37520":1,"37521":1,"37522":1,"37523":2,"37524":2,"37525":2,"37526":1,"37527":2,"37528":2,"37529":2,"37530":2,"37531":1,"37532":1,"37533":1,"37534":2,"37535":1,"37536":2,"37537":2,"37538":2,"37539":2,"37540":1,"37541":1,"37542":2,"37543":2,"37544":2,"37545":2,"37546":1,"37547":1,"37548":2,"37549":1,"37550":2,"37551":1,"37552":2,"37553":2,"37554":2,"37555":2,"37556":1,"37557":2,"37558":1,"37559":2,"37560":1,"37561":1,"37562":2,"37563":1,"37564":2,"37565":2,"37566":2,"37567":2,"37568":2,"37569":1,"37570":2,"37571":2,"37572":1,"37573":2,"37574":1,"37575":2,"37576":1,"37577":1,"37578":2,"37579":2,"37580":1,"37581":1,"37582":2,"37583":2,"37584":2,"37585":1,"37586":2,"37587":2,"37588":1,"37589":2,"37590":1,"37591":1,"37592":2,"37593":1,"37594":1,"37595":2,"37596":2,"37597":2,"37598":2,"37599":2,"37600":1,"37601":1,"37602":1,"37603":1,"37604":2,"37605":1,"37606":1,"37607":1,"37608":2,"37609":1,"37610":2,"37611":1,"37612":1,"37613":1,"37614":2,"37615":1,"37616":2,"37617":1,"37618":2,"37619":2,"37620":1,"37621":2,"37622":1,"37623":1,"37624":2,"37625":1,"37626":1,"37627":1,"37628":2,"37629":2,"37630":2,"37631":2,"37632":2,"37633":1,"37634":2,"37635":1,"37636":2,"37637":2,"37638":2,"37639":1,"37640":1,"37641":1,"37642":2,"37643":2,"37644":2,"37645":2,"37646":2,"37647":1,"37648":1,"37649":2,"37650":2,"37651":2,"37652":1,"37653":1,"37654":2,"37655":2,"37656":1,"37657":2,"37658":1,"37659":2,"37660":2,"37661":2,"37662":1,"37663":1,"37664":2,"37665":1,"37666":2,"37667":2,"37668":1,"37669":2,"37670":1,"37671":1,"37672":2,"37673":1,"37674":2,"37675":2,"37676":1,"37677":1,"37678":1,"37679":1,"37680":2,"37681":1,"37682":1,"37683":1,"37684":2,"37685":1,"37686":1,"37687":2,"37688":1,"37689":2,"37690":2,"37691":1,"37692":2,"37693":1,"37694":1,"37695":2,"37696":2,"37697":2,"37698":2,"37699":1,"37700":2,"37701":2,"37702":1,"37703":1,"37704":2,"37705":1,"37706":2,"37707":1,"37708":1,"37709":2,"37710":2,"37711":1,"37712":2,"37713":2,"37714":2,"37715":2,"37716":1,"37717":2,"37718":2,"37719":2,"37720":1,"37721":1,"37722":2,"37723":1,"37724":1,"37725":2,"37726":1,"37727":1,"37728":1,"37729":2,"37730":1,"37731":1,"37732":2,"37733":2,"37734":2,"37735":1,"37736":2,"37737":2,"37738":2,"37739":1,"37740":2,"37741":1,"37742":2,"37743":1,"37744":2,"37745":2,"37746":2,"37747":1,"37748":1,"37749":2,"37750":2,"37751":1,"37752":1,"37753":1,"37754":1,"37755":1,"37756":1,"37757":1,"37758":2,"37759":2,"37760":1,"37761":1,"37762":2,"37763":2,"37764":2,"37765":2,"37766":2,"37767":1,"37768":2,"37769":1,"37770":2,"37771":2,"37772":1,"37773":1,"37774":2,"37775":2,"37776":2,"37777":2,"37778":1,"37779":2,"37780":2,"37781":2,"37782":1,"37783":2,"37784":1,"37785":2,"37786":1,"37787":2,"37788":1,"37789":1,"37790":1,"37791":1,"37792":2,"37793":2,"37794":1,"37795":1,"37796":2,"37797":1,"37798":1,"37799":2,"37800":1,"37801":2,"37802":1,"37803":1,"37804":2,"37805":2,"37806":1,"37807":1,"37808":2,"37809":2,"37810":1,"37811":2,"37812":1,"37813":2,"37814":2,"37815":2,"37816":1,"37817":2,"37818":1,"37819":2,"37820":1,"37821":2,"37822":2,"37823":2,"37824":2,"37825":2,"37826":1,"37827":2,"37828":2,"37829":1,"37830":1,"37831":2,"37832":2,"37833":2,"37834":1,"37835":1,"37836":2,"37837":1,"37838":2,"37839":2,"37840":2,"37841":2,"37842":2,"37843":1,"37844":1,"37845":1,"37846":1,"37847":2,"37848":1,"37849":1,"37850":2,"37851":1,"37852":1,"37853":1,"37854":2,"37855":1,"37856":1,"37857":2,"37858":2,"37859":2,"37860":1,"37861":2,"37862":1,"37863":1,"37864":2,"37865":1,"37866":1,"37867":1,"37868":1,"37869":2,"37870":2,"37871":2,"37872":1,"37873":1,"37874":2,"37875":2,"37876":1,"37877":2,"37878":1,"37879":1,"37880":1,"37881":2,"37882":2,"37883":2,"37884":1,"37885":1,"37886":2,"37887":1,"37888":1,"37889":2,"37890":1,"37891":1,"37892":2,"37893":2,"37894":1,"37895":2,"37896":2,"37897":2,"37898":2,"37899":1,"37900":1,"37901":2,"37902":2,"37903":1,"37904":1,"37905":1,"37906":1,"37907":2,"37908":1,"37909":2,"37910":1,"37911":2,"37912":2,"37913":1,"37914":1,"37915":2,"37916":2,"37917":1,"37918":1,"37919":2,"37920":1,"37921":2,"37922":1,"37923":2,"37924":2,"37925":2,"37926":2,"37927":2,"37928":2,"37929":1,"37930":1,"37931":1,"37932":2,"37933":2,"37934":1,"37935":2,"37936":1,"37937":1,"37938":2,"37939":1,"37940":2,"37941":1,"37942":1,"37943":1,"37944":2,"37945":2,"37946":2,"37947":2,"37948":2,"37949":2,"37950":1,"37951":1,"37952":1,"37953":1,"37954":2,"37955":2,"37956":1,"37957":2,"37958":1,"37959":2,"37960":2,"37961":1,"37962":2,"37963":2,"37964":1,"37965":2,"37966":2,"37967":1,"37968":2,"37969":1,"37970":2,"37971":2,"37972":2,"37973":1,"37974":2,"37975":1,"37976":2,"37977":1,"37978":1,"37979":1,"37980":2,"37981":1,"37982":2,"37983":2,"37984":2,"37985":1,"37986":2,"37987":1,"37988":2,"37989":2,"37990":1,"37991":1,"37992":1,"37993":1,"37994":1,"37995":2,"37996":2,"37997":1,"37998":2,"37999":1,"38000":1,"38001":1,"38002":2,"38003":1,"38004":2,"38005":1,"38006":2,"38007":2,"38008":2,"38009":2,"38010":2,"38011":1,"38012":2,"38013":2,"38014":2,"38015":2,"38016":2,"38017":2,"38018":2,"38019":2,"38020":1,"38021":1,"38022":2,"38023":1,"38024":2,"38025":2,"38026":2,"38027":2,"38028":1,"38029":2,"38030":2,"38031":2,"38032":1,"38033":1,"38034":1,"38035":2,"38036":2,"38037":2,"38038":1,"38039":2,"38040":2,"38041":2,"38042":2,"38043":1,"38044":1,"38045":2,"38046":1,"38047":2,"38048":2,"38049":1,"38050":2,"38051":1,"38052":1,"38053":2,"38054":2,"38055":2,"38056":2,"38057":1,"38058":1,"38059":1,"38060":1,"38061":2,"38062":2,"38063":2,"38064":2,"38065":1,"38066":1,"38067":2,"38068":2,"38069":1,"38070":2,"38071":1,"38072":2,"38073":1,"38074":1,"38075":1,"38076":1,"38077":2,"38078":2,"38079":2,"38080":2,"38081":1,"38082":1,"38083":1,"38084":2,"38085":2,"38086":1,"38087":1,"38088":1,"38089":1,"38090":2,"38091":1,"38092":2,"38093":2,"38094":1,"38095":2,"38096":2,"38097":1,"38098":1,"38099":2,"38100":1,"38101":2,"38102":2,"38103":2,"38104":2,"38105":2,"38106":1,"38107":1,"38108":1,"38109":2,"38110":2,"38111":2,"38112":1,"38113":2,"38114":2,"38115":1,"38116":2,"38117":2,"38118":1,"38119":2,"38120":1,"38121":1,"38122":1,"38123":1,"38124":2,"38125":2,"38126":2,"38127":1,"38128":2,"38129":1,"38130":1,"38131":1,"38132":1,"38133":1,"38134":1,"38135":1,"38136":2,"38137":2,"38138":1,"38139":1,"38140":1,"38141":2,"38142":2,"38143":2,"38144":2,"38145":1,"38146":2,"38147":1,"38148":1,"38149":1,"38150":1,"38151":1,"38152":2,"38153":2,"38154":2,"38155":2,"38156":1,"38157":1,"38158":1,"38159":1,"38160":2,"38161":2,"38162":2,"38163":2,"38164":1,"38165":2,"38166":1,"38167":2,"38168":2,"38169":2,"38170":2,"38171":1,"38172":1,"38173":1,"38174":2,"38175":1,"38176":1,"38177":2,"38178":1,"38179":1,"38180":1,"38181":2,"38182":2,"38183":2,"38184":2,"38185":1,"38186":2,"38187":1,"38188":1,"38189":2,"38190":2,"38191":1,"38192":1,"38193":1,"38194":2,"38195":1,"38196":1,"38197":1,"38198":1,"38199":1,"38200":2,"38201":1,"38202":2,"38203":2,"38204":2,"38205":2,"38206":2,"38207":1,"38208":1,"38209":1,"38210":1,"38211":1,"38212":1,"38213":2,"38214":2,"38215":1,"38216":2,"38217":2,"38218":2,"38219":2,"38220":2,"38221":1,"38222":2,"38223":2,"38224":2,"38225":2,"38226":2,"38227":1,"38228":1,"38229":1,"38230":2,"38231":1,"38232":2,"38233":1,"38234":1,"38235":2,"38236":2,"38237":1,"38238":1,"38239":1,"38240":1,"38241":1,"38242":1,"38243":1,"38244":1,"38245":1,"38246":1,"38247":1,"38248":2,"38249":2,"38250":2,"38251":2,"38252":1,"38253":2,"38254":1,"38255":1,"38256":2,"38257":2,"38258":1,"38259":1,"38260":2,"38261":2,"38262":1,"38263":2,"38264":2,"38265":2,"38266":1,"38267":2,"38268":1,"38269":2,"38270":1,"38271":2,"38272":2,"38273":2,"38274":1,"38275":1,"38276":2,"38277":1,"38278":2,"38279":2,"38280":1,"38281":2,"38282":2,"38283":2,"38284":1,"38285":2,"38286":1,"38287":2,"38288":2,"38289":2,"38290":1,"38291":2,"38292":1,"38293":2,"38294":1,"38295":1,"38296":1,"38297":1,"38298":1,"38299":1,"38300":1,"38301":1,"38302":1,"38303":2,"38304":2,"38305":2,"38306":1,"38307":1,"38308":2,"38309":2,"38310":2,"38311":2,"38312":2,"38313":1,"38314":1,"38315":2,"38316":1,"38317":2,"38318":1,"38319":1,"38320":1,"38321":1,"38322":1,"38323":1,"38324":1,"38325":2,"38326":1,"38327":1,"38328":1,"38329":2,"38330":2,"38331":1,"38332":2,"38333":2,"38334":2,"38335":2,"38336":1,"38337":2,"38338":2,"38339":1,"38340":2,"38341":2,"38342":1,"38343":2,"38344":1,"38345":1,"38346":2,"38347":2,"38348":2,"38349":2,"38350":2,"38351":2,"38352":1,"38353":1,"38354":2,"38355":2,"38356":1,"38357":2,"38358":1,"38359":1,"38360":2,"38361":2,"38362":2,"38363":1,"38364":2,"38365":1,"38366":1,"38367":1,"38368":1,"38369":1,"38370":2,"38371":2,"38372":2,"38373":1,"38374":2,"38375":2,"38376":1,"38377":1,"38378":1,"38379":2,"38380":2,"38381":1,"38382":1,"38383":1,"38384":2,"38385":1,"38386":2,"38387":1,"38388":2,"38389":1,"38390":2,"38391":1,"38392":1,"38393":2,"38394":2,"38395":1,"38396":2,"38397":1,"38398":2,"38399":1,"38400":1,"38401":1,"38402":1,"38403":2,"38404":1,"38405":1,"38406":2,"38407":1,"38408":2,"38409":1,"38410":2,"38411":2,"38412":2,"38413":2,"38414":1,"38415":1,"38416":2,"38417":2,"38418":2,"38419":1,"38420":1,"38421":2,"38422":1,"38423":1,"38424":2,"38425":1,"38426":1,"38427":1,"38428":2,"38429":1,"38430":1,"38431":1,"38432":1,"38433":2,"38434":2,"38435":1,"38436":2,"38437":1,"38438":2,"38439":1,"38440":1,"38441":1,"38442":2,"38443":2,"38444":1,"38445":1,"38446":2,"38447":1,"38448":2,"38449":1,"38450":2,"38451":1,"38452":1,"38453":1,"38454":2,"38455":1,"38456":2,"38457":1,"38458":1,"38459":1,"38460":2,"38461":2,"38462":2,"38463":1,"38464":1,"38465":1,"38466":2,"38467":1,"38468":2,"38469":2,"38470":2,"38471":2,"38472":2,"38473":2,"38474":2,"38475":1,"38476":1,"38477":2,"38478":1,"38479":2,"38480":1,"38481":2,"38482":2,"38483":2,"38484":1,"38485":1,"38486":2,"38487":2,"38488":1,"38489":2,"38490":2,"38491":1,"38492":2,"38493":1,"38494":1,"38495":1,"38496":1,"38497":1,"38498":1,"38499":2,"38500":2,"38501":1,"38502":1,"38503":1,"38504":2,"38505":2,"38506":2,"38507":2,"38508":2,"38509":1,"38510":2,"38511":2,"38512":2,"38513":1,"38514":2,"38515":1,"38516":2,"38517":1,"38518":1,"38519":2,"38520":2,"38521":1,"38522":1,"38523":2,"38524":1,"38525":2,"38526":2,"38527":2,"38528":1,"38529":2,"38530":1,"38531":2,"38532":2,"38533":2,"38534":1,"38535":1,"38536":2,"38537":2,"38538":1,"38539":2,"38540":2,"38541":1,"38542":2,"38543":2,"38544":1,"38545":1,"38546":2,"38547":2,"38548":1,"38549":2,"38550":1,"38551":1,"38552":2,"38553":1,"38554":2,"38555":1,"38556":1,"38557":1,"38558":1,"38559":2,"38560":2,"38561":1,"38562":2,"38563":1,"38564":2,"38565":1,"38566":2,"38567":1,"38568":1,"38569":1,"38570":1,"38571":1,"38572":1,"38573":2,"38574":1,"38575":1,"38576":2,"38577":2,"38578":2,"38579":1,"38580":2,"38581":2,"38582":2,"38583":1,"38584":1,"38585":2,"38586":1,"38587":1,"38588":1,"38589":1,"38590":2,"38591":1,"38592":1,"38593":1,"38594":1,"38595":1,"38596":2,"38597":1,"38598":1,"38599":2,"38600":1,"38601":1,"38602":2,"38603":2,"38604":1,"38605":2,"38606":2,"38607":1,"38608":1,"38609":2,"38610":2,"38611":2,"38612":1,"38613":1,"38614":2,"38615":2,"38616":1,"38617":2,"38618":1,"38619":1,"38620":1,"38621":2,"38622":1,"38623":1,"38624":2,"38625":2,"38626":1,"38627":1,"38628":1,"38629":1,"38630":2,"38631":2,"38632":2,"38633":2,"38634":2,"38635":1,"38636":1,"38637":1,"38638":2,"38639":1,"38640":1,"38641":1,"38642":1,"38643":2,"38644":2,"38645":1,"38646":2,"38647":2,"38648":1,"38649":1,"38650":2,"38651":1,"38652":1,"38653":1,"38654":1,"38655":2,"38656":2,"38657":2,"38658":1,"38659":2,"38660":1,"38661":1,"38662":1,"38663":2,"38664":1,"38665":2,"38666":2,"38667":1,"38668":1,"38669":2,"38670":2,"38671":2,"38672":2,"38673":1,"38674":1,"38675":1,"38676":1,"38677":2,"38678":1,"38679":2,"38680":2,"38681":2,"38682":2,"38683":1,"38684":1,"38685":2,"38686":2,"38687":1,"38688":1,"38689":1,"38690":2,"38691":1,"38692":1,"38693":2,"38694":1,"38695":1,"38696":1,"38697":2,"38698":2,"38699":2,"38700":2,"38701":2,"38702":1,"38703":1,"38704":2,"38705":2,"38706":2,"38707":2,"38708":2,"38709":2,"38710":1,"38711":1,"38712":1,"38713":2,"38714":2,"38715":1,"38716":2,"38717":1,"38718":2,"38719":2,"38720":1,"38721":1,"38722":2,"38723":1,"38724":2,"38725":2,"38726":1,"38727":2,"38728":2,"38729":2,"38730":2,"38731":2,"38732":2,"38733":1,"38734":1,"38735":2,"38736":2,"38737":1,"38738":1,"38739":2,"38740":2,"38741":1,"38742":2,"38743":1,"38744":2,"38745":2,"38746":2,"38747":2,"38748":2,"38749":2,"38750":1,"38751":1,"38752":1,"38753":1,"38754":2,"38755":1,"38756":1,"38757":2,"38758":2,"38759":2,"38760":2,"38761":1,"38762":1,"38763":1,"38764":1,"38765":1,"38766":1,"38767":1,"38768":2,"38769":1,"38770":1,"38771":1,"38772":1,"38773":1,"38774":1,"38775":1,"38776":1,"38777":1,"38778":2,"38779":1,"38780":1,"38781":2,"38782":2,"38783":2,"38784":2,"38785":2,"38786":2,"38787":1,"38788":1,"38789":2,"38790":2,"38791":1,"38792":2,"38793":1,"38794":2,"38795":1,"38796":2,"38797":1,"38798":2,"38799":2,"38800":2,"38801":2,"38802":1,"38803":2,"38804":2,"38805":2,"38806":1,"38807":2,"38808":1,"38809":1,"38810":2,"38811":2,"38812":2,"38813":1,"38814":2,"38815":2,"38816":2,"38817":1,"38818":1,"38819":2,"38820":2,"38821":2,"38822":2,"38823":2,"38824":1,"38825":1,"38826":1,"38827":2,"38828":2,"38829":2,"38830":1,"38831":2,"38832":1,"38833":1,"38834":2,"38835":1,"38836":2,"38837":1,"38838":2,"38839":1,"38840":2,"38841":2,"38842":1,"38843":2,"38844":1,"38845":2,"38846":2,"38847":2,"38848":1,"38849":1,"38850":2,"38851":1,"38852":2,"38853":2,"38854":1,"38855":2,"38856":1,"38857":2,"38858":1,"38859":1,"38860":1,"38861":2,"38862":2,"38863":1,"38864":1,"38865":1,"38866":2,"38867":1,"38868":2,"38869":2,"38870":1,"38871":2,"38872":1,"38873":2,"38874":2,"38875":2,"38876":1,"38877":1,"38878":2,"38879":2,"38880":1,"38881":1,"38882":2,"38883":2,"38884":1,"38885":2,"38886":1,"38887":1,"38888":2,"38889":2,"38890":1,"38891":2,"38892":2,"38893":2,"38894":1,"38895":2,"38896":2,"38897":1,"38898":1,"38899":2,"38900":2,"38901":1,"38902":1,"38903":2,"38904":1,"38905":2,"38906":1,"38907":1,"38908":2,"38909":2,"38910":2,"38911":1,"38912":1,"38913":1,"38914":2,"38915":2,"38916":1,"38917":2,"38918":1,"38919":2,"38920":2,"38921":2,"38922":2,"38923":1,"38924":2,"38925":2,"38926":1,"38927":2,"38928":1,"38929":1,"38930":1,"38931":2,"38932":2,"38933":1,"38934":1,"38935":1,"38936":2,"38937":1,"38938":2,"38939":2,"38940":2,"38941":1,"38942":2,"38943":1,"38944":2,"38945":2,"38946":1,"38947":1,"38948":2,"38949":1,"38950":2,"38951":1,"38952":1,"38953":1,"38954":2,"38955":1,"38956":2,"38957":1,"38958":1,"38959":2,"38960":2,"38961":1,"38962":2,"38963":2,"38964":2,"38965":2,"38966":2,"38967":1,"38968":1,"38969":2,"38970":1,"38971":1,"38972":1,"38973":1,"38974":1,"38975":2,"38976":1,"38977":1,"38978":1,"38979":1,"38980":2,"38981":2,"38982":1,"38983":2,"38984":2,"38985":1,"38986":2,"38987":2,"38988":2,"38989":1,"38990":1,"38991":2,"38992":1,"38993":1,"38994":2,"38995":1,"38996":1,"38997":1,"38998":1,"38999":2,"39000":1,"39001":1,"39002":2,"39003":2,"39004":2,"39005":2,"39006":1,"39007":1,"39008":2,"39009":1,"39010":2,"39011":1,"39012":1,"39013":1,"39014":1,"39015":2,"39016":2,"39017":1,"39018":2,"39019":2,"39020":2,"39021":1,"39022":1,"39023":1,"39024":2,"39025":2,"39026":2,"39027":1,"39028":1,"39029":1,"39030":1,"39031":2,"39032":2,"39033":2,"39034":1,"39035":2,"39036":1,"39037":1,"39038":2,"39039":1,"39040":2,"39041":2,"39042":2,"39043":2,"39044":1,"39045":2,"39046":1,"39047":1,"39048":1,"39049":1,"39050":2,"39051":2,"39052":1,"39053":1,"39054":1,"39055":1,"39056":2,"39057":1,"39058":1,"39059":1,"39060":1,"39061":1,"39062":2,"39063":1,"39064":1,"39065":1,"39066":1,"39067":1,"39068":2,"39069":2,"39070":1,"39071":1,"39072":1,"39073":1,"39074":2,"39075":2,"39076":2,"39077":2,"39078":2,"39079":2,"39080":2,"39081":2,"39082":1,"39083":2,"39084":1,"39085":1,"39086":2,"39087":2,"39088":1,"39089":2,"39090":2,"39091":1,"39092":1,"39093":1,"39094":2,"39095":1,"39096":1,"39097":1,"39098":1,"39099":1,"39100":2,"39101":1,"39102":2,"39103":1,"39104":1,"39105":2,"39106":1,"39107":2,"39108":2,"39109":2,"39110":1,"39111":1,"39112":2,"39113":1,"39114":1,"39115":2,"39116":1,"39117":1,"39118":2,"39119":2,"39120":1,"39121":1,"39122":2,"39123":2,"39124":1,"39125":1,"39126":2,"39127":1,"39128":2,"39129":2,"39130":1,"39131":1,"39132":2,"39133":1,"39134":1,"39135":2,"39136":1,"39137":1,"39138":1,"39139":2,"39140":2,"39141":1,"39142":2,"39143":1,"39144":1,"39145":1,"39146":1,"39147":1,"39148":2,"39149":1,"39150":1,"39151":2,"39152":1,"39153":2,"39154":2,"39155":2,"39156":1,"39157":1,"39158":1,"39159":2,"39160":1,"39161":1,"39162":1,"39163":1,"39164":2,"39165":2,"39166":1,"39167":2,"39168":2,"39169":2,"39170":1,"39171":2,"39172":1,"39173":2,"39174":1,"39175":1,"39176":2,"39177":1,"39178":1,"39179":2,"39180":1,"39181":2,"39182":1,"39183":2,"39184":1,"39185":1,"39186":2,"39187":2,"39188":1,"39189":1,"39190":1,"39191":1,"39192":1,"39193":2,"39194":1,"39195":2,"39196":2,"39197":2,"39198":1,"39199":1,"39200":2,"39201":1,"39202":2,"39203":1,"39204":2,"39205":2,"39206":2,"39207":2,"39208":2,"39209":2,"39210":1,"39211":1,"39212":2,"39213":2,"39214":1,"39215":2,"39216":2,"39217":1,"39218":1,"39219":1,"39220":2,"39221":1,"39222":1,"39223":2,"39224":2,"39225":1,"39226":1,"39227":2,"39228":1,"39229":2,"39230":2,"39231":1,"39232":1,"39233":2,"39234":1,"39235":2,"39236":2,"39237":1,"39238":2,"39239":1,"39240":2,"39241":2,"39242":1,"39243":2,"39244":2,"39245":2,"39246":1,"39247":2,"39248":2,"39249":1,"39250":2,"39251":2,"39252":2,"39253":2,"39254":2,"39255":1,"39256":1,"39257":1,"39258":2,"39259":2,"39260":1,"39261":1,"39262":1,"39263":1,"39264":2,"39265":1,"39266":1,"39267":2,"39268":2,"39269":2,"39270":1,"39271":1,"39272":2,"39273":1,"39274":1,"39275":2,"39276":1,"39277":1,"39278":2,"39279":1,"39280":2,"39281":1,"39282":2,"39283":2,"39284":2,"39285":2,"39286":2,"39287":1,"39288":1,"39289":1,"39290":2,"39291":1,"39292":2,"39293":1,"39294":1,"39295":2,"39296":2,"39297":2,"39298":2,"39299":2,"39300":2,"39301":2,"39302":1,"39303":2,"39304":1,"39305":1,"39306":2,"39307":2,"39308":2,"39309":2,"39310":1,"39311":1,"39312":1,"39313":1,"39314":2,"39315":1,"39316":1,"39317":1,"39318":1,"39319":2,"39320":2,"39321":1,"39322":1,"39323":1,"39324":1,"39325":1,"39326":2,"39327":1,"39328":1,"39329":2,"39330":2,"39331":1,"39332":2,"39333":2,"39334":1,"39335":2,"39336":2,"39337":1,"39338":1,"39339":2,"39340":2,"39341":1,"39342":2,"39343":1,"39344":2,"39345":2,"39346":2,"39347":1,"39348":2,"39349":2,"39350":1,"39351":2,"39352":1,"39353":1,"39354":2,"39355":1,"39356":2,"39357":1,"39358":1,"39359":2,"39360":2,"39361":1,"39362":2,"39363":1,"39364":1,"39365":1,"39366":2,"39367":1,"39368":1,"39369":2,"39370":1,"39371":1,"39372":1,"39373":1,"39374":1,"39375":2,"39376":2,"39377":1,"39378":2,"39379":1,"39380":1,"39381":1,"39382":2,"39383":1,"39384":1,"39385":2,"39386":2,"39387":1,"39388":2,"39389":2,"39390":2,"39391":2,"39392":1,"39393":1,"39394":2,"39395":1,"39396":1,"39397":2,"39398":1,"39399":2,"39400":1,"39401":2,"39402":1,"39403":1,"39404":2,"39405":2,"39406":1,"39407":2,"39408":2,"39409":1,"39410":2,"39411":1,"39412":2,"39413":2,"39414":2,"39415":1,"39416":2,"39417":1,"39418":1,"39419":1,"39420":2,"39421":1,"39422":2,"39423":1,"39424":1,"39425":2,"39426":1,"39427":2,"39428":2,"39429":1,"39430":2,"39431":1,"39432":2,"39433":1,"39434":1,"39435":2,"39436":2,"39437":2,"39438":1,"39439":1,"39440":2,"39441":1,"39442":1,"39443":1,"39444":1,"39445":2,"39446":1,"39447":1,"39448":2,"39449":1,"39450":1,"39451":1,"39452":1,"39453":1,"39454":1,"39455":2,"39456":2,"39457":1,"39458":1,"39459":1,"39460":2,"39461":2,"39462":2,"39463":2,"39464":2,"39465":1,"39466":2,"39467":1,"39468":1,"39469":1,"39470":2,"39471":1,"39472":2,"39473":1,"39474":2,"39475":2,"39476":2,"39477":2,"39478":1,"39479":1,"39480":2,"39481":1,"39482":1,"39483":2,"39484":2,"39485":1,"39486":2,"39487":1,"39488":2,"39489":1,"39490":1,"39491":1,"39492":1,"39493":2,"39494":1,"39495":2,"39496":1,"39497":2,"39498":2,"39499":2,"39500":2,"39501":1,"39502":1,"39503":2,"39504":2,"39505":2,"39506":1,"39507":1,"39508":1,"39509":1,"39510":1,"39511":2,"39512":1,"39513":1,"39514":2,"39515":1,"39516":2,"39517":2,"39518":1,"39519":2,"39520":1,"39521":2,"39522":1,"39523":1,"39524":2,"39525":2,"39526":1,"39527":2,"39528":2,"39529":2,"39530":2,"39531":2,"39532":1,"39533":2,"39534":2,"39535":1,"39536":1,"39537":1,"39538":2,"39539":1,"39540":2,"39541":1,"39542":1,"39543":1,"39544":2,"39545":2,"39546":1,"39547":1,"39548":1,"39549":1,"39550":1,"39551":1,"39552":2,"39553":1,"39554":2,"39555":2,"39556":2,"39557":1,"39558":2,"39559":1,"39560":2,"39561":1,"39562":2,"39563":1,"39564":2,"39565":2,"39566":2,"39567":1,"39568":1,"39569":2,"39570":1,"39571":1,"39572":2,"39573":2,"39574":1,"39575":1,"39576":1,"39577":1,"39578":2,"39579":1,"39580":1,"39581":1,"39582":2,"39583":1,"39584":1,"39585":2,"39586":1,"39587":1,"39588":1,"39589":1,"39590":1,"39591":1,"39592":1,"39593":2,"39594":2,"39595":1,"39596":1,"39597":1,"39598":1,"39599":1,"39600":1,"39601":1,"39602":2,"39603":2,"39604":2,"39605":1,"39606":1,"39607":1,"39608":2,"39609":1,"39610":1,"39611":1,"39612":2,"39613":1,"39614":1,"39615":2,"39616":1,"39617":2,"39618":2,"39619":1,"39620":2,"39621":2,"39622":2,"39623":1,"39624":1,"39625":1,"39626":1,"39627":1,"39628":2,"39629":2,"39630":2,"39631":2,"39632":1,"39633":1,"39634":2,"39635":1,"39636":2,"39637":1,"39638":1,"39639":2,"39640":1,"39641":1,"39642":1,"39643":2,"39644":2,"39645":1,"39646":2,"39647":1,"39648":1,"39649":1,"39650":1,"39651":1,"39652":1,"39653":1,"39654":2,"39655":2,"39656":1,"39657":2,"39658":1,"39659":1,"39660":1,"39661":2,"39662":2,"39663":1,"39664":2,"39665":2,"39666":1,"39667":1,"39668":2,"39669":1,"39670":1,"39671":2,"39672":1,"39673":1,"39674":2,"39675":2,"39676":1,"39677":1,"39678":2,"39679":2,"39680":1,"39681":1,"39682":1,"39683":2,"39684":2,"39685":2,"39686":2,"39687":2,"39688":2,"39689":2,"39690":2,"39691":1,"39692":1,"39693":1,"39694":1,"39695":1,"39696":2,"39697":1,"39698":2,"39699":1,"39700":2,"39701":1,"39702":2,"39703":2,"39704":1,"39705":2,"39706":1,"39707":1,"39708":1,"39709":2,"39710":2,"39711":1,"39712":1,"39713":2,"39714":2,"39715":2,"39716":1,"39717":1,"39718":1,"39719":1,"39720":2,"39721":1,"39722":1,"39723":1,"39724":1,"39725":2,"39726":2,"39727":1,"39728":2,"39729":1,"39730":2,"39731":2,"39732":1,"39733":1,"39734":2,"39735":1,"39736":1,"39737":2,"39738":1,"39739":2,"39740":2,"39741":1,"39742":2,"39743":2,"39744":1,"39745":2,"39746":1,"39747":2,"39748":1,"39749":2,"39750":2,"39751":1,"39752":2,"39753":2,"39754":1,"39755":2,"39756":2,"39757":2,"39758":2,"39759":2,"39760":1,"39761":1,"39762":2,"39763":2,"39764":2,"39765":2,"39766":2,"39767":1,"39768":2,"39769":1,"39770":1,"39771":1,"39772":1,"39773":1,"39774":1,"39775":1,"39776":1,"39777":1,"39778":1,"39779":2,"39780":2,"39781":2,"39782":1,"39783":1,"39784":1,"39785":2,"39786":2,"39787":2,"39788":1,"39789":1,"39790":1,"39791":1,"39792":1,"39793":2,"39794":1,"39795":2,"39796":1,"39797":1,"39798":2,"39799":1,"39800":1,"39801":1,"39802":2,"39803":2,"39804":1,"39805":2,"39806":1,"39807":2,"39808":1,"39809":1,"39810":1,"39811":2,"39812":2,"39813":1,"39814":1,"39815":2,"39816":2,"39817":2,"39818":2,"39819":2,"39820":1,"39821":2,"39822":2,"39823":2,"39824":1,"39825":1,"39826":1,"39827":1,"39828":2,"39829":2,"39830":1,"39831":1,"39832":1,"39833":1,"39834":2,"39835":2,"39836":2,"39837":2,"39838":2,"39839":2,"39840":2,"39841":1,"39842":2,"39843":1,"39844":1,"39845":1,"39846":1,"39847":1,"39848":2,"39849":1,"39850":1,"39851":1,"39852":2,"39853":2,"39854":1,"39855":1,"39856":1,"39857":1,"39858":2,"39859":2,"39860":2,"39861":1,"39862":1,"39863":1,"39864":2,"39865":2,"39866":2,"39867":2,"39868":2,"39869":1,"39870":2,"39871":1,"39872":2,"39873":1,"39874":1,"39875":2,"39876":2,"39877":2,"39878":1,"39879":2,"39880":1,"39881":1,"39882":1,"39883":1,"39884":1,"39885":1,"39886":2,"39887":2,"39888":2,"39889":2,"39890":1,"39891":2,"39892":1,"39893":1,"39894":2,"39895":2,"39896":1,"39897":2,"39898":1,"39899":2,"39900":2,"39901":2,"39902":2,"39903":1,"39904":2,"39905":1,"39906":2,"39907":1,"39908":1,"39909":2,"39910":2,"39911":1,"39912":1,"39913":1,"39914":2,"39915":1,"39916":2,"39917":2,"39918":1,"39919":2,"39920":1,"39921":1,"39922":1,"39923":1,"39924":1,"39925":2,"39926":2,"39927":1,"39928":2,"39929":1,"39930":1,"39931":1,"39932":2,"39933":2,"39934":1,"39935":2,"39936":2,"39937":1,"39938":2,"39939":1,"39940":2,"39941":2,"39942":2,"39943":2,"39944":1,"39945":1,"39946":2,"39947":1,"39948":1,"39949":1,"39950":1,"39951":1,"39952":2,"39953":1,"39954":2,"39955":2,"39956":2,"39957":2,"39958":1,"39959":2,"39960":1,"39961":2,"39962":1,"39963":2,"39964":2,"39965":2,"39966":2,"39967":2,"39968":1,"39969":1,"39970":1,"39971":1,"39972":2,"39973":2,"39974":1,"39975":2,"39976":2,"39977":1,"39978":1,"39979":2,"39980":1,"39981":1,"39982":2,"39983":1,"39984":2,"39985":2,"39986":2,"39987":2,"39988":2,"39989":1,"39990":2,"39991":2,"39992":1,"39993":1,"39994":1,"39995":1,"39996":1,"39997":2,"39998":1,"39999":2,"40000":2,"40001":2,"40002":1,"40003":2,"40004":2,"40005":1,"40006":2,"40007":2,"40008":2,"40009":2,"40010":1,"40011":1,"40012":1,"40013":2,"40014":2,"40015":2,"40016":1,"40017":1,"40018":2,"40019":2,"40020":2,"40021":1,"40022":1,"40023":1,"40024":1,"40025":2,"40026":1,"40027":1,"40028":1,"40029":1,"40030":1,"40031":2,"40032":1,"40033":2,"40034":1,"40035":2,"40036":1,"40037":1,"40038":2,"40039":2,"40040":2,"40041":1,"40042":2,"40043":2,"40044":1,"40045":2,"40046":1,"40047":1,"40048":1,"40049":2,"40050":1,"40051":2,"40052":2,"40053":2,"40054":1,"40055":1,"40056":2,"40057":1,"40058":1,"40059":1,"40060":1,"40061":1,"40062":1,"40063":1,"40064":1,"40065":1,"40066":2,"40067":1,"40068":1,"40069":2,"40070":2,"40071":1,"40072":2,"40073":2,"40074":2,"40075":1,"40076":1,"40077":2,"40078":1,"40079":1,"40080":1,"40081":2,"40082":1,"40083":1,"40084":2,"40085":1,"40086":2,"40087":2,"40088":2,"40089":1,"40090":2,"40091":1,"40092":1,"40093":2,"40094":1,"40095":2,"40096":1,"40097":1,"40098":1,"40099":1,"40100":2,"40101":1,"40102":2,"40103":2,"40104":2,"40105":2,"40106":1,"40107":2,"40108":2,"40109":2,"40110":1,"40111":2,"40112":2,"40113":2,"40114":1,"40115":1,"40116":1,"40117":2,"40118":1,"40119":2,"40120":2,"40121":1,"40122":1,"40123":2,"40124":1,"40125":2,"40126":1,"40127":1,"40128":1,"40129":1,"40130":2,"40131":2,"40132":1,"40133":1,"40134":1,"40135":1,"40136":1,"40137":1,"40138":2,"40139":2,"40140":1,"40141":2,"40142":2,"40143":1,"40144":1,"40145":2,"40146":1,"40147":2,"40148":1,"40149":2,"40150":1,"40151":1,"40152":2,"40153":1,"40154":1,"40155":2,"40156":1,"40157":1,"40158":1,"40159":2,"40160":1,"40161":1,"40162":1,"40163":2,"40164":2,"40165":1,"40166":2,"40167":2,"40168":2,"40169":2,"40170":2,"40171":2,"40172":2,"40173":1,"40174":1,"40175":2,"40176":1,"40177":1,"40178":2,"40179":1,"40180":1,"40181":2,"40182":1,"40183":1,"40184":1,"40185":1,"40186":2,"40187":1,"40188":2,"40189":2,"40190":2,"40191":1,"40192":2,"40193":2,"40194":1,"40195":1,"40196":2,"40197":2,"40198":1,"40199":1,"40200":2,"40201":1,"40202":2,"40203":2,"40204":1,"40205":2,"40206":2,"40207":2,"40208":2,"40209":1,"40210":2,"40211":1,"40212":1,"40213":2,"40214":1,"40215":2,"40216":2,"40217":1,"40218":1,"40219":1,"40220":2,"40221":2,"40222":1,"40223":2,"40224":1,"40225":2,"40226":2,"40227":2,"40228":2,"40229":2,"40230":1,"40231":1,"40232":1,"40233":1,"40234":2,"40235":2,"40236":1,"40237":2,"40238":1,"40239":1,"40240":2,"40241":1,"40242":1,"40243":2,"40244":2,"40245":1,"40246":2,"40247":1,"40248":2,"40249":1,"40250":1,"40251":1,"40252":2,"40253":1,"40254":1,"40255":2,"40256":2,"40257":1,"40258":1,"40259":2,"40260":2,"40261":1,"40262":2,"40263":2,"40264":1,"40265":2,"40266":1,"40267":2,"40268":1,"40269":1,"40270":1,"40271":2,"40272":2,"40273":2,"40274":2,"40275":1,"40276":1,"40277":1,"40278":2,"40279":1,"40280":2,"40281":1,"40282":1,"40283":1,"40284":2,"40285":1,"40286":1,"40287":1,"40288":1,"40289":2,"40290":2,"40291":1,"40292":2,"40293":2,"40294":1,"40295":1,"40296":2,"40297":1,"40298":2,"40299":1,"40300":2,"40301":1,"40302":2,"40303":2,"40304":2,"40305":1,"40306":1,"40307":1,"40308":1,"40309":2,"40310":2,"40311":1,"40312":1,"40313":2,"40314":1,"40315":1,"40316":1,"40317":1,"40318":2,"40319":1,"40320":1,"40321":2,"40322":2,"40323":2,"40324":2,"40325":1,"40326":2,"40327":2,"40328":2,"40329":2,"40330":1,"40331":1,"40332":1,"40333":2,"40334":2,"40335":1,"40336":2,"40337":1,"40338":1,"40339":1,"40340":1,"40341":2,"40342":2,"40343":2,"40344":2,"40345":2,"40346":2,"40347":2,"40348":1,"40349":1,"40350":2,"40351":2,"40352":1,"40353":1,"40354":1,"40355":2,"40356":1,"40357":2,"40358":1,"40359":2,"40360":2,"40361":2,"40362":2,"40363":1,"40364":1,"40365":2,"40366":2,"40367":1,"40368":1,"40369":1,"40370":2,"40371":1,"40372":2,"40373":2,"40374":1,"40375":2,"40376":1,"40377":2,"40378":1,"40379":1,"40380":1,"40381":1,"40382":2,"40383":1,"40384":2,"40385":1,"40386":1,"40387":2,"40388":1,"40389":1,"40390":1,"40391":2,"40392":1,"40393":2,"40394":2,"40395":2,"40396":1,"40397":1,"40398":2,"40399":1,"40400":1,"40401":1,"40402":1,"40403":2,"40404":2,"40405":1,"40406":1,"40407":1,"40408":2,"40409":2,"40410":2,"40411":1,"40412":2,"40413":2,"40414":1,"40415":2,"40416":2,"40417":1,"40418":1,"40419":1,"40420":2,"40421":1,"40422":2,"40423":1,"40424":1,"40425":2,"40426":2,"40427":2,"40428":1,"40429":1,"40430":1,"40431":2,"40432":2,"40433":2,"40434":2,"40435":1,"40436":2,"40437":1,"40438":2,"40439":1,"40440":2,"40441":2,"40442":1,"40443":1,"40444":2,"40445":1,"40446":2,"40447":2,"40448":2,"40449":1,"40450":2,"40451":2,"40452":1,"40453":1,"40454":1,"40455":1,"40456":1,"40457":1,"40458":1,"40459":1,"40460":1,"40461":2,"40462":2,"40463":1,"40464":2,"40465":2,"40466":2,"40467":1,"40468":1,"40469":2,"40470":1,"40471":1,"40472":1,"40473":2,"40474":1,"40475":1,"40476":1,"40477":2,"40478":1,"40479":2,"40480":1,"40481":2,"40482":2,"40483":1,"40484":1,"40485":1,"40486":1,"40487":1,"40488":1,"40489":2,"40490":2,"40491":2,"40492":1,"40493":2,"40494":2,"40495":2,"40496":2,"40497":1,"40498":2,"40499":2,"40500":1,"40501":1,"40502":2,"40503":1,"40504":2,"40505":2,"40506":1,"40507":2,"40508":1,"40509":2,"40510":1,"40511":2,"40512":1,"40513":2,"40514":2,"40515":1,"40516":1,"40517":1,"40518":1,"40519":1,"40520":2,"40521":1,"40522":1,"40523":1,"40524":1,"40525":1,"40526":2,"40527":2,"40528":2,"40529":1,"40530":1,"40531":1,"40532":1,"40533":1,"40534":2,"40535":1,"40536":1,"40537":1,"40538":2,"40539":2,"40540":2,"40541":2,"40542":1,"40543":2,"40544":1,"40545":2,"40546":2,"40547":1,"40548":1,"40549":1,"40550":1,"40551":1,"40552":1,"40553":1,"40554":1,"40555":1,"40556":1,"40557":1,"40558":1,"40559":1,"40560":1,"40561":1,"40562":1,"40563":1,"40564":1,"40565":2,"40566":1,"40567":1,"40568":1,"40569":1,"40570":1,"40571":1,"40572":1,"40573":2,"40574":2,"40575":2,"40576":1,"40577":1,"40578":2,"40579":1,"40580":1,"40581":2,"40582":2,"40583":1,"40584":1,"40585":2,"40586":2,"40587":1,"40588":2,"40589":2,"40590":1,"40591":1,"40592":1,"40593":1,"40594":2,"40595":1,"40596":1,"40597":1,"40598":1,"40599":2,"40600":2,"40601":1,"40602":2,"40603":2,"40604":1,"40605":1,"40606":1,"40607":2,"40608":2,"40609":1,"40610":1,"40611":1,"40612":2,"40613":2,"40614":2,"40615":1,"40616":2,"40617":2,"40618":2,"40619":2,"40620":1,"40621":1,"40622":1,"40623":2,"40624":1,"40625":2,"40626":2,"40627":2,"40628":2,"40629":1,"40630":1,"40631":2,"40632":2,"40633":1,"40634":2,"40635":1,"40636":1,"40637":2,"40638":2,"40639":1,"40640":2,"40641":2,"40642":1,"40643":1,"40644":1,"40645":1,"40646":2,"40647":2,"40648":2,"40649":1,"40650":2,"40651":1,"40652":2,"40653":2,"40654":2,"40655":1,"40656":1,"40657":2,"40658":1,"40659":2,"40660":2,"40661":2,"40662":1,"40663":2,"40664":1,"40665":2,"40666":2,"40667":1,"40668":1,"40669":2,"40670":2,"40671":2,"40672":1,"40673":2,"40674":1,"40675":1,"40676":2,"40677":2,"40678":1,"40679":1,"40680":2,"40681":2,"40682":1,"40683":2,"40684":1,"40685":2,"40686":1,"40687":1,"40688":2,"40689":1,"40690":2,"40691":2,"40692":1,"40693":2,"40694":1,"40695":2,"40696":1,"40697":1,"40698":1,"40699":2,"40700":2,"40701":1,"40702":1,"40703":2,"40704":2,"40705":1,"40706":2,"40707":1,"40708":2,"40709":2,"40710":2,"40711":1,"40712":2,"40713":2,"40714":1,"40715":1,"40716":2,"40717":1,"40718":1,"40719":2,"40720":2,"40721":1,"40722":2,"40723":2,"40724":1,"40725":1,"40726":2,"40727":1,"40728":1,"40729":1,"40730":2,"40731":2,"40732":1,"40733":1,"40734":2,"40735":1,"40736":1,"40737":2,"40738":1,"40739":1,"40740":2,"40741":2,"40742":1,"40743":1,"40744":2,"40745":2,"40746":2,"40747":2,"40748":2,"40749":2,"40750":1,"40751":2,"40752":2,"40753":2,"40754":2,"40755":1,"40756":2,"40757":1,"40758":2,"40759":1,"40760":1,"40761":1,"40762":1,"40763":1,"40764":1,"40765":1,"40766":1,"40767":2,"40768":2,"40769":2,"40770":1,"40771":1,"40772":1,"40773":1,"40774":1,"40775":1,"40776":1,"40777":2,"40778":2,"40779":1,"40780":2,"40781":1,"40782":2,"40783":2,"40784":1,"40785":1,"40786":1,"40787":1,"40788":1,"40789":2,"40790":1,"40791":2,"40792":2,"40793":2,"40794":1,"40795":1,"40796":2,"40797":2,"40798":2,"40799":1,"40800":2,"40801":1,"40802":1,"40803":1,"40804":1,"40805":2,"40806":1,"40807":1,"40808":1,"40809":1,"40810":2,"40811":1,"40812":2,"40813":1,"40814":2,"40815":1,"40816":2,"40817":2,"40818":2,"40819":1,"40820":1,"40821":1,"40822":2,"40823":1,"40824":1,"40825":2,"40826":1,"40827":2,"40828":2,"40829":2,"40830":2,"40831":1,"40832":1,"40833":1,"40834":2,"40835":1,"40836":2,"40837":2,"40838":2,"40839":2,"40840":1,"40841":1,"40842":2,"40843":1,"40844":2,"40845":2,"40846":2,"40847":2,"40848":2,"40849":2,"40850":1,"40851":1,"40852":1,"40853":2,"40854":1,"40855":1,"40856":1,"40857":1,"40858":2,"40859":2,"40860":2,"40861":2,"40862":2,"40863":1,"40864":1,"40865":1,"40866":1,"40867":1,"40868":2,"40869":2,"40870":2,"40871":1,"40872":1,"40873":2,"40874":1,"40875":2,"40876":1,"40877":2,"40878":1,"40879":1,"40880":1,"40881":2,"40882":1,"40883":1,"40884":2,"40885":2,"40886":2,"40887":1,"40888":1,"40889":1,"40890":2,"40891":2,"40892":1,"40893":1,"40894":1,"40895":2,"40896":1,"40897":1,"40898":2,"40899":2,"40900":2,"40901":2,"40902":1,"40903":2,"40904":2,"40905":2,"40906":1,"40907":2,"40908":1,"40909":2,"40910":2,"40911":2,"40912":2,"40913":2,"40914":2,"40915":2,"40916":2,"40917":1,"40918":1,"40919":2,"40920":2,"40921":2,"40922":2,"40923":1,"40924":2,"40925":1,"40926":2,"40927":2,"40928":2,"40929":2,"40930":1,"40931":1,"40932":1,"40933":2,"40934":1,"40935":1,"40936":1,"40937":1,"40938":2,"40939":2,"40940":2,"40941":2,"40942":1,"40943":1,"40944":2,"40945":1,"40946":1,"40947":1,"40948":1,"40949":2,"40950":1,"40951":1,"40952":1,"40953":1,"40954":1,"40955":1,"40956":2,"40957":1,"40958":2,"40959":2,"40960":1,"40961":2,"40962":1,"40963":2,"40964":1,"40965":2,"40966":1,"40967":1,"40968":2,"40969":2,"40970":1,"40971":1,"40972":1,"40973":1,"40974":1,"40975":1,"40976":1,"40977":2,"40978":1,"40979":2,"40980":1,"40981":1,"40982":2,"40983":2,"40984":2,"40985":2,"40986":1,"40987":1,"40988":2,"40989":1,"40990":2,"40991":2,"40992":2,"40993":1,"40994":1,"40995":2,"40996":2,"40997":2,"40998":1,"40999":1,"41000":1,"41001":1,"41002":1,"41003":1,"41004":1,"41005":2,"41006":1,"41007":1,"41008":1,"41009":1,"41010":1,"41011":1,"41012":1,"41013":2,"41014":2,"41015":1,"41016":1,"41017":2,"41018":1,"41019":1,"41020":2,"41021":1,"41022":2,"41023":1,"41024":1,"41025":1,"41026":1,"41027":1,"41028":2,"41029":1,"41030":2,"41031":2,"41032":2,"41033":1,"41034":2,"41035":1,"41036":2,"41037":1,"41038":1,"41039":1,"41040":1,"41041":1,"41042":2,"41043":1,"41044":2,"41045":1,"41046":2,"41047":1,"41048":1,"41049":1,"41050":2,"41051":1,"41052":1,"41053":1,"41054":1,"41055":2,"41056":2,"41057":1,"41058":1,"41059":2,"41060":2,"41061":1,"41062":1,"41063":2,"41064":2,"41065":1,"41066":2,"41067":2,"41068":2,"41069":2,"41070":1,"41071":2,"41072":2,"41073":1,"41074":2,"41075":1,"41076":1,"41077":1,"41078":1,"41079":2,"41080":1,"41081":1,"41082":1,"41083":1,"41084":2,"41085":2,"41086":1,"41087":2,"41088":2,"41089":2,"41090":1,"41091":2,"41092":2,"41093":2,"41094":2,"41095":1,"41096":1,"41097":1,"41098":1,"41099":1,"41100":1,"41101":1,"41102":1,"41103":2,"41104":2,"41105":2,"41106":1,"41107":2,"41108":2,"41109":1,"41110":1,"41111":2,"41112":1,"41113":2,"41114":2,"41115":1,"41116":1,"41117":1,"41118":1,"41119":2,"41120":1,"41121":2,"41122":1,"41123":2,"41124":2,"41125":1,"41126":2,"41127":2,"41128":1,"41129":2,"41130":1,"41131":1,"41132":1,"41133":2,"41134":2,"41135":2,"41136":1,"41137":2,"41138":1,"41139":1,"41140":1,"41141":1,"41142":1,"41143":2,"41144":1,"41145":2,"41146":1,"41147":1,"41148":2,"41149":1,"41150":2,"41151":2,"41152":2,"41153":1,"41154":1,"41155":2,"41156":1,"41157":1,"41158":1,"41159":1,"41160":1,"41161":2,"41162":1,"41163":1,"41164":1,"41165":2,"41166":2,"41167":2,"41168":1,"41169":2,"41170":1,"41171":1,"41172":1,"41173":2,"41174":2,"41175":2,"41176":1,"41177":2,"41178":1,"41179":2,"41180":1,"41181":1,"41182":1,"41183":2,"41184":2,"41185":1,"41186":2,"41187":1,"41188":1,"41189":1,"41190":1,"41191":2,"41192":1,"41193":1,"41194":2,"41195":1,"41196":1,"41197":1,"41198":1,"41199":2,"41200":2,"41201":1,"41202":2,"41203":1,"41204":1,"41205":2,"41206":2,"41207":1,"41208":1,"41209":1,"41210":1,"41211":2,"41212":2,"41213":1,"41214":2,"41215":1,"41216":1,"41217":2,"41218":1,"41219":1,"41220":2,"41221":1,"41222":2,"41223":1,"41224":2,"41225":1,"41226":2,"41227":2,"41228":1,"41229":2,"41230":1,"41231":1,"41232":2,"41233":1,"41234":1,"41235":2,"41236":2,"41237":1,"41238":1,"41239":2,"41240":1,"41241":2,"41242":2,"41243":1,"41244":2,"41245":1,"41246":1,"41247":1,"41248":2,"41249":2,"41250":1,"41251":1,"41252":1,"41253":1,"41254":2,"41255":2,"41256":1,"41257":1,"41258":2,"41259":2,"41260":1,"41261":2,"41262":2,"41263":1,"41264":2,"41265":1,"41266":2,"41267":2,"41268":1,"41269":1,"41270":2,"41271":2,"41272":1,"41273":1,"41274":1,"41275":1,"41276":1,"41277":2,"41278":2,"41279":1,"41280":2,"41281":2,"41282":1,"41283":2,"41284":1,"41285":1,"41286":2,"41287":2,"41288":1,"41289":1,"41290":1,"41291":1,"41292":2,"41293":2,"41294":2,"41295":1,"41296":1,"41297":1,"41298":1,"41299":2,"41300":1,"41301":2,"41302":2,"41303":2,"41304":2,"41305":1,"41306":2,"41307":2,"41308":2,"41309":1,"41310":2,"41311":2,"41312":1,"41313":2,"41314":1,"41315":1,"41316":2,"41317":1,"41318":1,"41319":1,"41320":2,"41321":1,"41322":1,"41323":1,"41324":1,"41325":1,"41326":1,"41327":1,"41328":1,"41329":1,"41330":1,"41331":2,"41332":1,"41333":2,"41334":1,"41335":1,"41336":1,"41337":2,"41338":1,"41339":1,"41340":2,"41341":2,"41342":2,"41343":1,"41344":2,"41345":2,"41346":2,"41347":2,"41348":2,"41349":2,"41350":2,"41351":1,"41352":1,"41353":2,"41354":1,"41355":2,"41356":2,"41357":1,"41358":2,"41359":2,"41360":2,"41361":1,"41362":2,"41363":2,"41364":2,"41365":2,"41366":1,"41367":2,"41368":1,"41369":2,"41370":1,"41371":1,"41372":2,"41373":1,"41374":1,"41375":2,"41376":1,"41377":1,"41378":2,"41379":2,"41380":2,"41381":1,"41382":2,"41383":1,"41384":2,"41385":2,"41386":1,"41387":1,"41388":1,"41389":2,"41390":2,"41391":1,"41392":1,"41393":1,"41394":1,"41395":1,"41396":2,"41397":1,"41398":1,"41399":1,"41400":2,"41401":2,"41402":1,"41403":2,"41404":2,"41405":1,"41406":1,"41407":1,"41408":2,"41409":2,"41410":2,"41411":1,"41412":2,"41413":2,"41414":2,"41415":2,"41416":2,"41417":1,"41418":1,"41419":2,"41420":2,"41421":2,"41422":1,"41423":2,"41424":2,"41425":1,"41426":2,"41427":2,"41428":2,"41429":1,"41430":1,"41431":2,"41432":2,"41433":1,"41434":2,"41435":1,"41436":1,"41437":1,"41438":2,"41439":2,"41440":1,"41441":2,"41442":1,"41443":1,"41444":1,"41445":2,"41446":2,"41447":1,"41448":1,"41449":1,"41450":2,"41451":1,"41452":1,"41453":1,"41454":2,"41455":1,"41456":2,"41457":1,"41458":2,"41459":2,"41460":1,"41461":2,"41462":1,"41463":2,"41464":2,"41465":1,"41466":2,"41467":1,"41468":2,"41469":1,"41470":2,"41471":1,"41472":2,"41473":2,"41474":2,"41475":2,"41476":1,"41477":2,"41478":1,"41479":2,"41480":1,"41481":1,"41482":2,"41483":1,"41484":1,"41485":2,"41486":2,"41487":1,"41488":1,"41489":2,"41490":2,"41491":1,"41492":2,"41493":1,"41494":1,"41495":2,"41496":1,"41497":1,"41498":1,"41499":1,"41500":2,"41501":1,"41502":2,"41503":2,"41504":1,"41505":1,"41506":2,"41507":2,"41508":1,"41509":2,"41510":1,"41511":2,"41512":2,"41513":1,"41514":1,"41515":1,"41516":2,"41517":1,"41518":2,"41519":1,"41520":2,"41521":2,"41522":1,"41523":1,"41524":1,"41525":2,"41526":2,"41527":1,"41528":2,"41529":1,"41530":2,"41531":1,"41532":1,"41533":2,"41534":2,"41535":1,"41536":1,"41537":1,"41538":1,"41539":1,"41540":1,"41541":1,"41542":2,"41543":2,"41544":1,"41545":2,"41546":2,"41547":2,"41548":2,"41549":2,"41550":1,"41551":1,"41552":1,"41553":2,"41554":2,"41555":1,"41556":2,"41557":1,"41558":1,"41559":1,"41560":2,"41561":1,"41562":2,"41563":1,"41564":2,"41565":2,"41566":2,"41567":1,"41568":1,"41569":2,"41570":1,"41571":2,"41572":1,"41573":1,"41574":1,"41575":1,"41576":2,"41577":2,"41578":2,"41579":1,"41580":2,"41581":1,"41582":1,"41583":1,"41584":1,"41585":1,"41586":2,"41587":2,"41588":1,"41589":2,"41590":2,"41591":2,"41592":1,"41593":2,"41594":1,"41595":1,"41596":1,"41597":1,"41598":2,"41599":2,"41600":1,"41601":2,"41602":2,"41603":1,"41604":1,"41605":1,"41606":1,"41607":2,"41608":1,"41609":1,"41610":1,"41611":1,"41612":1,"41613":2,"41614":1,"41615":2,"41616":1,"41617":1,"41618":2,"41619":2,"41620":2,"41621":2,"41622":1,"41623":1,"41624":1,"41625":1,"41626":1,"41627":2,"41628":2,"41629":2,"41630":1,"41631":2,"41632":2,"41633":2,"41634":2,"41635":1,"41636":2,"41637":2,"41638":1,"41639":1,"41640":1,"41641":2,"41642":1,"41643":1,"41644":1,"41645":1,"41646":1,"41647":2,"41648":2,"41649":1,"41650":2,"41651":2,"41652":2,"41653":1,"41654":1,"41655":1,"41656":2,"41657":1,"41658":1,"41659":1,"41660":2,"41661":2,"41662":1,"41663":2,"41664":2,"41665":1,"41666":1,"41667":2,"41668":1,"41669":2,"41670":2,"41671":1,"41672":2,"41673":1,"41674":1,"41675":2,"41676":2,"41677":1,"41678":1,"41679":1,"41680":2,"41681":1,"41682":1,"41683":2,"41684":2,"41685":2,"41686":1,"41687":1,"41688":2,"41689":1,"41690":1,"41691":1,"41692":1,"41693":2,"41694":1,"41695":2,"41696":1,"41697":2,"41698":2,"41699":2,"41700":2,"41701":2,"41702":1,"41703":1,"41704":1,"41705":1,"41706":2,"41707":1,"41708":1,"41709":1,"41710":2,"41711":1,"41712":2,"41713":2,"41714":2,"41715":1,"41716":1,"41717":2,"41718":2,"41719":2,"41720":2,"41721":2,"41722":1,"41723":1,"41724":2,"41725":1,"41726":2,"41727":2,"41728":2,"41729":1,"41730":1,"41731":1,"41732":1,"41733":1,"41734":1,"41735":2,"41736":1,"41737":1,"41738":1,"41739":2,"41740":2,"41741":2,"41742":1,"41743":2,"41744":2,"41745":1,"41746":1,"41747":2,"41748":2,"41749":1,"41750":1,"41751":2,"41752":1,"41753":2,"41754":1,"41755":2,"41756":1,"41757":2,"41758":2,"41759":1,"41760":2,"41761":1,"41762":2,"41763":1,"41764":2,"41765":2,"41766":1,"41767":1,"41768":1,"41769":2,"41770":2,"41771":2,"41772":2,"41773":1,"41774":2,"41775":1,"41776":1,"41777":1,"41778":2,"41779":2,"41780":1,"41781":1,"41782":2,"41783":1,"41784":1,"41785":2,"41786":1,"41787":2,"41788":1,"41789":1,"41790":1,"41791":1,"41792":2,"41793":1,"41794":2,"41795":2,"41796":1,"41797":1,"41798":2,"41799":2,"41800":1,"41801":1,"41802":2,"41803":2,"41804":1,"41805":2,"41806":1,"41807":1,"41808":2,"41809":1,"41810":1,"41811":1,"41812":1,"41813":1,"41814":2,"41815":1,"41816":2,"41817":2,"41818":2,"41819":2,"41820":2,"41821":1,"41822":2,"41823":2,"41824":2,"41825":1,"41826":1,"41827":2,"41828":2,"41829":1,"41830":2,"41831":1,"41832":2,"41833":2,"41834":1,"41835":1,"41836":1,"41837":2,"41838":2,"41839":1,"41840":2,"41841":1,"41842":1,"41843":2,"41844":2,"41845":1,"41846":2,"41847":1,"41848":1,"41849":1,"41850":2,"41851":1,"41852":1,"41853":1,"41854":2,"41855":1,"41856":1,"41857":2,"41858":1,"41859":1,"41860":2,"41861":1,"41862":2,"41863":2,"41864":1,"41865":2,"41866":2,"41867":2,"41868":1,"41869":2,"41870":1,"41871":2,"41872":1,"41873":2,"41874":1,"41875":1,"41876":1,"41877":2,"41878":2,"41879":2,"41880":2,"41881":1,"41882":2,"41883":1,"41884":2,"41885":2,"41886":2,"41887":1,"41888":2,"41889":1,"41890":2,"41891":2,"41892":2,"41893":1,"41894":2,"41895":2,"41896":1,"41897":2,"41898":2,"41899":2,"41900":2,"41901":2,"41902":1,"41903":2,"41904":1,"41905":2,"41906":1,"41907":2,"41908":2,"41909":2,"41910":2,"41911":1,"41912":2,"41913":1,"41914":2,"41915":2,"41916":1,"41917":2,"41918":2,"41919":2,"41920":1,"41921":1,"41922":2,"41923":2,"41924":1,"41925":1,"41926":1,"41927":2,"41928":2,"41929":2,"41930":2,"41931":2,"41932":1,"41933":1,"41934":1,"41935":2,"41936":1,"41937":1,"41938":1,"41939":1,"41940":1,"41941":1,"41942":1,"41943":2,"41944":1,"41945":2,"41946":1,"41947":1,"41948":2,"41949":1,"41950":2,"41951":1,"41952":2,"41953":1,"41954":1,"41955":2,"41956":1,"41957":1,"41958":1,"41959":2,"41960":2,"41961":2,"41962":1,"41963":1,"41964":1,"41965":2,"41966":1,"41967":1,"41968":2,"41969":2,"41970":2,"41971":2,"41972":1,"41973":1,"41974":1,"41975":1,"41976":2,"41977":1,"41978":2,"41979":2,"41980":1,"41981":2,"41982":1,"41983":1,"41984":2,"41985":1,"41986":2,"41987":1,"41988":1,"41989":1,"41990":1,"41991":2,"41992":2,"41993":1,"41994":2,"41995":1,"41996":1,"41997":1,"41998":2,"41999":1,"42000":2,"42001":1,"42002":2,"42003":1,"42004":2,"42005":1,"42006":1,"42007":2,"42008":1,"42009":1,"42010":1,"42011":2,"42012":2,"42013":2,"42014":2,"42015":2,"42016":1,"42017":2,"42018":1,"42019":1,"42020":1,"42021":2,"42022":1,"42023":1,"42024":2,"42025":1,"42026":2,"42027":1,"42028":2,"42029":1,"42030":2,"42031":2,"42032":1,"42033":1,"42034":2,"42035":1,"42036":2,"42037":2,"42038":2,"42039":2,"42040":2,"42041":1,"42042":2,"42043":2,"42044":1,"42045":2,"42046":1,"42047":1,"42048":1,"42049":1,"42050":1,"42051":2,"42052":1,"42053":1,"42054":2,"42055":2,"42056":1,"42057":2,"42058":2,"42059":1,"42060":1,"42061":2,"42062":1,"42063":1,"42064":1,"42065":1,"42066":1,"42067":2,"42068":1,"42069":1,"42070":2,"42071":2,"42072":2,"42073":2,"42074":1,"42075":1,"42076":1,"42077":1,"42078":2,"42079":2,"42080":1,"42081":1,"42082":1,"42083":1,"42084":2,"42085":2,"42086":2,"42087":2,"42088":2,"42089":2,"42090":1,"42091":1,"42092":1,"42093":2,"42094":1,"42095":1,"42096":2,"42097":2,"42098":2,"42099":2,"42100":1,"42101":2,"42102":2,"42103":2,"42104":1,"42105":1,"42106":2,"42107":1,"42108":1,"42109":1,"42110":2,"42111":2,"42112":1,"42113":1,"42114":2,"42115":2,"42116":2,"42117":2,"42118":2,"42119":1,"42120":1,"42121":2,"42122":1,"42123":2,"42124":1,"42125":1,"42126":2,"42127":2,"42128":1,"42129":1,"42130":2,"42131":2,"42132":1,"42133":2,"42134":2,"42135":1,"42136":2,"42137":2,"42138":1,"42139":2,"42140":1,"42141":1,"42142":2,"42143":2,"42144":2,"42145":1,"42146":1,"42147":2,"42148":1,"42149":1,"42150":2,"42151":1,"42152":2,"42153":1,"42154":1,"42155":1,"42156":2,"42157":2,"42158":1,"42159":1,"42160":1,"42161":2,"42162":1,"42163":1,"42164":1,"42165":1,"42166":1,"42167":2,"42168":2,"42169":2,"42170":2,"42171":1,"42172":2,"42173":1,"42174":1,"42175":2,"42176":1,"42177":1,"42178":2,"42179":2,"42180":1,"42181":2,"42182":1,"42183":1,"42184":2,"42185":2,"42186":1,"42187":2,"42188":1,"42189":2,"42190":1,"42191":2,"42192":2,"42193":1,"42194":2,"42195":2,"42196":2,"42197":1,"42198":1,"42199":1,"42200":2,"42201":2,"42202":1,"42203":1,"42204":1,"42205":1,"42206":2,"42207":1,"42208":2,"42209":2,"42210":1,"42211":1,"42212":1,"42213":1,"42214":1,"42215":2,"42216":2,"42217":1,"42218":2,"42219":2,"42220":1,"42221":2,"42222":1,"42223":2,"42224":1,"42225":1,"42226":2,"42227":1,"42228":2,"42229":1,"42230":1,"42231":2,"42232":2,"42233":1,"42234":2,"42235":2,"42236":2,"42237":1,"42238":2,"42239":1,"42240":2,"42241":1,"42242":2,"42243":1,"42244":2,"42245":1,"42246":1,"42247":1,"42248":1,"42249":2,"42250":2,"42251":1,"42252":1,"42253":1,"42254":2,"42255":1,"42256":1,"42257":1,"42258":1,"42259":1,"42260":1,"42261":2,"42262":1,"42263":2,"42264":1,"42265":1,"42266":2,"42267":1,"42268":1,"42269":2,"42270":1,"42271":1,"42272":2,"42273":2,"42274":1,"42275":2,"42276":2,"42277":1,"42278":2,"42279":1,"42280":1,"42281":2,"42282":1,"42283":1,"42284":2,"42285":1,"42286":2,"42287":2,"42288":2,"42289":1,"42290":1,"42291":2,"42292":1,"42293":2,"42294":1,"42295":2,"42296":1,"42297":2,"42298":1,"42299":1,"42300":2,"42301":1,"42302":1,"42303":2,"42304":2,"42305":1,"42306":1,"42307":1,"42308":1,"42309":2,"42310":2,"42311":1,"42312":2,"42313":1,"42314":2,"42315":2,"42316":2,"42317":1,"42318":2,"42319":2,"42320":2,"42321":1,"42322":1,"42323":1,"42324":1,"42325":1,"42326":2,"42327":1,"42328":2,"42329":1,"42330":1,"42331":1,"42332":1,"42333":1,"42334":1,"42335":1,"42336":1,"42337":1,"42338":2,"42339":2,"42340":1,"42341":1,"42342":2,"42343":1,"42344":2,"42345":2,"42346":1,"42347":1,"42348":2,"42349":2,"42350":1,"42351":2,"42352":1,"42353":2,"42354":1,"42355":2,"42356":2,"42357":1,"42358":2,"42359":2,"42360":1,"42361":1,"42362":1,"42363":1,"42364":1,"42365":2,"42366":1,"42367":2,"42368":2,"42369":1,"42370":1,"42371":2,"42372":1,"42373":1,"42374":1,"42375":1,"42376":2,"42377":1,"42378":2,"42379":1,"42380":2,"42381":2,"42382":1,"42383":2,"42384":1,"42385":2,"42386":1,"42387":1,"42388":2,"42389":1,"42390":2,"42391":1,"42392":2,"42393":1,"42394":2,"42395":1,"42396":1,"42397":1,"42398":2,"42399":1,"42400":1,"42401":2,"42402":1,"42403":1,"42404":1,"42405":2,"42406":2,"42407":2,"42408":2,"42409":2,"42410":2,"42411":1,"42412":2,"42413":1,"42414":1,"42415":2,"42416":2,"42417":1,"42418":1,"42419":1,"42420":2,"42421":2,"42422":2,"42423":2,"42424":2,"42425":2,"42426":1,"42427":2,"42428":2,"42429":2,"42430":2,"42431":1,"42432":1,"42433":2,"42434":1,"42435":2,"42436":2,"42437":2,"42438":2,"42439":2,"42440":1,"42441":2,"42442":1,"42443":2,"42444":2,"42445":2,"42446":2,"42447":2,"42448":1,"42449":2,"42450":2,"42451":1,"42452":1,"42453":2,"42454":2,"42455":1,"42456":1,"42457":1,"42458":1,"42459":2,"42460":1,"42461":1,"42462":1,"42463":1,"42464":2,"42465":1,"42466":2,"42467":2,"42468":2,"42469":2,"42470":1,"42471":1,"42472":1,"42473":2,"42474":2,"42475":2,"42476":2,"42477":1,"42478":2,"42479":2,"42480":1,"42481":1,"42482":1,"42483":2,"42484":2,"42485":1,"42486":1,"42487":1,"42488":1,"42489":1,"42490":2,"42491":1,"42492":2,"42493":2,"42494":1,"42495":1,"42496":1,"42497":2,"42498":1,"42499":1,"42500":2,"42501":2,"42502":2,"42503":1,"42504":1,"42505":2,"42506":2,"42507":2,"42508":1,"42509":2,"42510":2,"42511":2,"42512":1,"42513":2,"42514":2,"42515":2,"42516":2,"42517":1,"42518":2,"42519":1,"42520":1,"42521":1,"42522":2,"42523":2,"42524":2,"42525":2,"42526":2,"42527":1,"42528":1,"42529":1,"42530":2,"42531":2,"42532":2,"42533":1,"42534":1,"42535":2,"42536":2,"42537":1,"42538":2,"42539":2,"42540":1,"42541":1,"42542":1,"42543":1,"42544":1,"42545":1,"42546":2,"42547":1,"42548":2,"42549":2,"42550":1,"42551":2,"42552":2,"42553":1,"42554":1,"42555":1,"42556":2,"42557":2,"42558":1,"42559":1,"42560":1,"42561":1,"42562":2,"42563":1,"42564":1,"42565":1,"42566":2,"42567":2,"42568":2,"42569":2,"42570":2,"42571":2,"42572":1,"42573":2,"42574":2,"42575":1,"42576":2,"42577":1,"42578":2,"42579":1,"42580":2,"42581":1,"42582":1,"42583":2,"42584":2,"42585":1,"42586":2,"42587":2,"42588":1,"42589":1,"42590":1,"42591":1,"42592":2,"42593":2,"42594":2,"42595":1,"42596":2,"42597":1,"42598":2,"42599":2,"42600":2,"42601":1,"42602":1,"42603":1,"42604":1,"42605":1,"42606":2,"42607":2,"42608":2,"42609":1,"42610":1,"42611":2,"42612":1,"42613":1,"42614":2,"42615":1,"42616":1,"42617":2,"42618":2,"42619":1,"42620":2,"42621":2,"42622":2,"42623":1,"42624":2,"42625":1,"42626":2,"42627":2,"42628":1,"42629":1,"42630":1,"42631":2,"42632":1,"42633":2,"42634":1,"42635":2,"42636":1,"42637":2,"42638":2,"42639":2,"42640":2,"42641":2,"42642":2,"42643":2,"42644":2,"42645":1,"42646":1,"42647":1,"42648":1,"42649":1,"42650":1,"42651":1,"42652":1,"42653":2,"42654":2,"42655":1,"42656":1,"42657":2,"42658":2,"42659":2,"42660":1,"42661":2,"42662":1,"42663":1,"42664":2,"42665":1,"42666":1,"42667":2,"42668":1,"42669":2,"42670":2,"42671":2,"42672":2,"42673":1,"42674":2,"42675":1,"42676":2,"42677":2,"42678":2,"42679":2,"42680":2,"42681":1,"42682":1,"42683":2,"42684":1,"42685":1,"42686":2,"42687":2,"42688":1,"42689":2,"42690":1,"42691":1,"42692":2,"42693":1,"42694":2,"42695":2,"42696":2,"42697":2,"42698":1,"42699":1,"42700":1,"42701":2,"42702":2,"42703":2,"42704":2,"42705":2,"42706":1,"42707":2,"42708":1,"42709":2,"42710":1,"42711":1,"42712":1,"42713":1,"42714":2,"42715":2,"42716":1,"42717":2,"42718":1,"42719":2,"42720":1,"42721":2,"42722":2,"42723":1,"42724":2,"42725":2,"42726":2,"42727":1,"42728":2,"42729":1,"42730":2,"42731":1,"42732":1,"42733":2,"42734":2,"42735":2,"42736":1,"42737":2,"42738":1,"42739":1,"42740":1,"42741":1,"42742":1,"42743":2,"42744":1,"42745":2,"42746":1,"42747":2,"42748":1,"42749":2,"42750":1,"42751":1,"42752":2,"42753":1,"42754":2,"42755":2,"42756":1,"42757":2,"42758":2,"42759":2,"42760":1,"42761":1,"42762":1,"42763":1,"42764":2,"42765":1,"42766":1,"42767":1,"42768":2,"42769":2,"42770":1,"42771":1,"42772":1,"42773":2,"42774":1,"42775":1,"42776":2,"42777":1,"42778":2,"42779":1,"42780":1,"42781":2,"42782":2,"42783":1,"42784":1,"42785":1,"42786":2,"42787":2,"42788":1,"42789":1,"42790":2,"42791":2,"42792":2,"42793":2,"42794":2,"42795":1,"42796":1,"42797":2,"42798":1,"42799":1,"42800":1,"42801":2,"42802":1,"42803":2,"42804":1,"42805":2,"42806":1,"42807":1,"42808":1,"42809":1,"42810":1,"42811":1,"42812":1,"42813":2,"42814":2,"42815":2,"42816":2,"42817":1,"42818":1,"42819":2,"42820":2,"42821":1,"42822":2,"42823":1,"42824":1,"42825":2,"42826":2,"42827":2,"42828":1,"42829":2,"42830":1,"42831":2,"42832":1,"42833":2,"42834":2,"42835":2,"42836":1,"42837":1,"42838":2,"42839":1,"42840":1,"42841":2,"42842":1,"42843":2,"42844":1,"42845":1,"42846":2,"42847":1,"42848":1,"42849":2,"42850":1,"42851":1,"42852":1,"42853":2,"42854":2,"42855":1,"42856":2,"42857":1,"42858":1,"42859":1,"42860":1,"42861":1,"42862":2,"42863":2,"42864":2,"42865":2,"42866":1,"42867":1,"42868":1,"42869":1,"42870":1,"42871":2,"42872":2,"42873":1,"42874":1,"42875":2,"42876":2,"42877":2,"42878":2,"42879":2,"42880":2,"42881":2,"42882":1,"42883":2,"42884":1,"42885":2,"42886":2,"42887":2,"42888":1,"42889":1,"42890":1,"42891":1,"42892":1,"42893":1,"42894":2,"42895":2,"42896":1,"42897":2,"42898":1,"42899":2,"42900":2,"42901":1,"42902":2,"42903":2,"42904":2,"42905":1,"42906":1,"42907":2,"42908":2,"42909":2,"42910":2,"42911":2,"42912":1,"42913":1,"42914":2,"42915":2,"42916":1,"42917":1,"42918":1,"42919":1,"42920":2,"42921":2,"42922":2,"42923":2,"42924":2,"42925":2,"42926":1,"42927":2,"42928":2,"42929":1,"42930":1,"42931":2,"42932":2,"42933":2,"42934":2,"42935":2,"42936":1,"42937":1,"42938":1,"42939":2,"42940":2,"42941":2,"42942":1,"42943":1,"42944":1,"42945":1,"42946":2,"42947":2,"42948":2,"42949":2,"42950":2,"42951":2,"42952":1,"42953":2,"42954":1,"42955":1,"42956":1,"42957":1,"42958":1,"42959":2,"42960":2,"42961":1,"42962":2,"42963":1,"42964":1,"42965":2,"42966":1,"42967":2,"42968":1,"42969":1,"42970":2,"42971":1,"42972":2,"42973":1,"42974":1,"42975":2,"42976":2,"42977":1,"42978":1,"42979":1,"42980":2,"42981":1,"42982":1,"42983":2,"42984":1,"42985":1,"42986":1,"42987":2,"42988":2,"42989":2,"42990":1,"42991":2,"42992":2,"42993":2,"42994":1,"42995":1,"42996":1,"42997":1,"42998":2,"42999":2,"43000":2,"43001":1,"43002":1,"43003":2,"43004":1,"43005":2,"43006":2,"43007":2,"43008":1,"43009":1,"43010":1,"43011":2,"43012":1,"43013":2,"43014":1,"43015":2,"43016":1,"43017":1,"43018":1,"43019":1,"43020":2,"43021":2,"43022":2,"43023":2,"43024":1,"43025":1,"43026":1,"43027":1,"43028":2,"43029":2,"43030":2,"43031":2,"43032":1,"43033":2,"43034":2,"43035":1,"43036":1,"43037":1,"43038":1,"43039":1,"43040":1,"43041":1,"43042":1,"43043":1,"43044":2,"43045":2,"43046":2,"43047":2,"43048":1,"43049":1,"43050":2,"43051":2,"43052":2,"43053":1,"43054":1,"43055":1,"43056":1,"43057":2,"43058":1,"43059":1,"43060":2,"43061":2,"43062":1,"43063":2,"43064":2,"43065":2,"43066":2,"43067":1,"43068":1,"43069":1,"43070":1,"43071":1,"43072":1,"43073":1,"43074":2,"43075":1,"43076":2,"43077":2,"43078":1,"43079":1,"43080":1,"43081":2,"43082":1,"43083":2,"43084":2,"43085":2,"43086":1,"43087":2,"43088":1,"43089":2,"43090":2,"43091":2,"43092":2,"43093":2,"43094":2,"43095":1,"43096":2,"43097":2,"43098":2,"43099":1,"43100":2,"43101":2,"43102":2,"43103":1,"43104":2,"43105":1,"43106":1,"43107":2,"43108":2,"43109":1,"43110":1,"43111":2,"43112":2,"43113":2,"43114":2,"43115":1,"43116":1,"43117":2,"43118":1,"43119":1,"43120":1,"43121":2,"43122":2,"43123":2,"43124":1,"43125":2,"43126":1,"43127":1,"43128":2,"43129":1,"43130":2,"43131":2,"43132":1,"43133":2,"43134":2,"43135":1,"43136":2,"43137":1,"43138":2,"43139":1,"43140":1,"43141":1,"43142":1,"43143":1,"43144":2,"43145":1,"43146":1,"43147":1,"43148":1,"43149":2,"43150":2,"43151":1,"43152":1,"43153":2,"43154":1,"43155":1,"43156":2,"43157":2,"43158":1,"43159":2,"43160":2,"43161":2,"43162":1,"43163":1,"43164":1,"43165":1,"43166":1,"43167":2,"43168":1,"43169":2,"43170":1,"43171":1,"43172":2,"43173":2,"43174":1,"43175":2,"43176":2,"43177":2,"43178":2,"43179":1,"43180":2,"43181":2,"43182":2,"43183":1,"43184":1,"43185":2,"43186":2,"43187":1,"43188":2,"43189":1,"43190":1,"43191":1,"43192":2,"43193":1,"43194":1,"43195":2,"43196":2,"43197":1,"43198":2,"43199":1,"43200":1,"43201":2,"43202":2,"43203":2,"43204":2,"43205":1,"43206":2,"43207":1,"43208":2,"43209":1,"43210":1,"43211":2,"43212":1,"43213":2,"43214":1,"43215":1,"43216":2,"43217":2,"43218":1,"43219":2,"43220":1,"43221":2,"43222":1,"43223":1,"43224":1,"43225":1,"43226":1,"43227":1,"43228":1,"43229":2,"43230":2,"43231":2,"43232":2,"43233":2,"43234":2,"43235":2,"43236":1,"43237":1,"43238":2,"43239":1,"43240":2,"43241":2,"43242":2,"43243":1,"43244":2,"43245":2,"43246":1,"43247":1,"43248":2,"43249":1,"43250":2,"43251":2,"43252":2,"43253":2,"43254":1,"43255":1,"43256":1,"43257":2,"43258":1,"43259":1,"43260":1,"43261":2,"43262":1,"43263":1,"43264":2,"43265":1,"43266":1,"43267":1,"43268":2,"43269":2,"43270":1,"43271":1,"43272":2,"43273":1,"43274":1,"43275":1,"43276":1,"43277":2,"43278":1,"43279":2,"43280":2,"43281":2,"43282":1,"43283":1,"43284":1,"43285":2,"43286":2,"43287":2,"43288":1,"43289":2,"43290":1,"43291":2,"43292":2,"43293":1,"43294":2,"43295":2,"43296":1,"43297":1,"43298":2,"43299":2,"43300":1,"43301":1,"43302":2,"43303":2,"43304":2,"43305":1,"43306":2,"43307":1,"43308":1,"43309":1,"43310":1,"43311":2,"43312":1,"43313":2,"43314":1,"43315":2,"43316":2,"43317":1,"43318":1,"43319":2,"43320":1,"43321":1,"43322":2,"43323":1,"43324":1,"43325":1,"43326":1,"43327":2,"43328":2,"43329":1,"43330":2,"43331":1,"43332":2,"43333":1,"43334":1,"43335":1,"43336":2,"43337":2,"43338":1,"43339":2,"43340":1,"43341":1,"43342":1,"43343":2,"43344":1,"43345":2,"43346":1,"43347":1,"43348":2,"43349":2,"43350":1,"43351":1,"43352":2,"43353":1,"43354":1,"43355":1,"43356":1,"43357":2,"43358":1,"43359":1,"43360":2,"43361":2,"43362":2,"43363":2,"43364":1,"43365":2,"43366":2,"43367":1,"43368":1,"43369":1,"43370":2,"43371":2,"43372":2,"43373":1,"43374":2,"43375":2,"43376":2,"43377":2,"43378":1,"43379":2,"43380":2,"43381":2,"43382":1,"43383":1,"43384":2,"43385":1,"43386":1,"43387":1,"43388":2,"43389":2,"43390":1,"43391":1,"43392":2,"43393":2,"43394":2,"43395":2,"43396":1,"43397":1,"43398":2,"43399":1,"43400":1,"43401":1,"43402":1,"43403":2,"43404":1,"43405":2,"43406":2,"43407":1,"43408":2,"43409":2,"43410":2,"43411":2,"43412":2,"43413":1,"43414":1,"43415":2,"43416":1,"43417":1,"43418":2,"43419":2,"43420":2,"43421":2,"43422":2,"43423":1,"43424":2,"43425":2,"43426":1,"43427":2,"43428":1,"43429":2,"43430":1,"43431":2,"43432":1,"43433":2,"43434":2,"43435":2,"43436":2,"43437":2,"43438":2,"43439":1,"43440":1,"43441":2,"43442":2,"43443":2,"43444":1,"43445":1,"43446":2,"43447":2,"43448":2,"43449":1,"43450":1,"43451":1,"43452":1,"43453":2,"43454":2,"43455":1,"43456":1,"43457":1,"43458":2,"43459":2,"43460":1,"43461":1,"43462":1,"43463":1,"43464":2,"43465":2,"43466":1,"43467":1,"43468":2,"43469":2,"43470":1,"43471":2,"43472":1,"43473":2,"43474":1,"43475":1,"43476":1,"43477":1,"43478":1,"43479":2,"43480":2,"43481":1,"43482":2,"43483":1,"43484":1,"43485":1,"43486":1,"43487":1,"43488":2,"43489":2,"43490":1,"43491":2,"43492":1,"43493":1,"43494":1,"43495":1,"43496":1,"43497":2,"43498":1,"43499":1,"43500":2,"43501":1,"43502":1,"43503":2,"43504":2,"43505":2,"43506":2,"43507":2,"43508":2,"43509":2,"43510":2,"43511":1,"43512":2,"43513":1,"43514":2,"43515":2,"43516":1,"43517":1,"43518":1,"43519":2,"43520":2,"43521":2,"43522":1,"43523":2,"43524":1,"43525":2,"43526":1,"43527":2,"43528":2,"43529":2,"43530":2,"43531":2,"43532":2,"43533":2,"43534":2,"43535":1,"43536":1,"43537":2,"43538":2,"43539":1,"43540":1,"43541":2,"43542":1,"43543":1,"43544":1,"43545":1,"43546":2,"43547":2,"43548":2,"43549":2,"43550":1,"43551":1,"43552":2,"43553":2,"43554":2,"43555":2,"43556":1,"43557":2,"43558":2,"43559":2,"43560":2,"43561":2,"43562":1,"43563":2,"43564":1,"43565":2,"43566":1,"43567":1,"43568":2,"43569":2,"43570":2,"43571":2,"43572":1,"43573":1,"43574":1,"43575":2,"43576":1,"43577":2,"43578":1,"43579":2,"43580":1,"43581":1,"43582":1,"43583":2,"43584":1,"43585":1,"43586":1,"43587":2,"43588":1,"43589":2,"43590":2,"43591":2,"43592":2,"43593":2,"43594":1,"43595":1,"43596":1,"43597":2,"43598":1,"43599":2,"43600":2,"43601":1,"43602":2,"43603":2,"43604":2,"43605":2,"43606":1,"43607":2,"43608":1,"43609":1,"43610":1,"43611":1,"43612":2,"43613":1,"43614":1,"43615":2,"43616":2,"43617":2,"43618":1,"43619":1,"43620":1,"43621":1,"43622":1,"43623":2,"43624":1,"43625":1,"43626":2,"43627":2,"43628":2,"43629":1,"43630":2,"43631":2,"43632":1,"43633":2,"43634":1,"43635":1,"43636":1,"43637":2,"43638":2,"43639":1,"43640":1,"43641":2,"43642":2,"43643":1,"43644":1,"43645":1,"43646":2,"43647":2,"43648":2,"43649":2,"43650":1,"43651":1,"43652":2,"43653":1,"43654":1,"43655":1,"43656":2,"43657":2,"43658":1,"43659":1,"43660":1,"43661":1,"43662":2,"43663":2,"43664":2,"43665":1,"43666":2,"43667":2,"43668":1,"43669":2,"43670":1,"43671":1,"43672":2,"43673":2,"43674":2,"43675":2,"43676":2,"43677":1,"43678":1,"43679":2,"43680":2,"43681":2,"43682":1,"43683":1,"43684":1,"43685":2,"43686":2,"43687":2,"43688":1,"43689":1,"43690":1,"43691":1,"43692":1,"43693":2,"43694":2,"43695":1,"43696":1,"43697":1,"43698":2,"43699":1,"43700":2,"43701":1,"43702":1,"43703":2,"43704":1,"43705":2,"43706":2,"43707":2,"43708":1,"43709":2,"43710":2,"43711":2,"43712":2,"43713":1,"43714":1,"43715":2,"43716":2,"43717":1,"43718":1,"43719":2,"43720":1,"43721":2,"43722":2,"43723":2,"43724":2,"43725":2,"43726":2,"43727":2,"43728":1,"43729":1,"43730":1,"43731":2,"43732":1,"43733":2,"43734":2,"43735":1,"43736":1,"43737":2,"43738":1,"43739":2,"43740":1,"43741":2,"43742":1,"43743":1,"43744":2,"43745":1,"43746":2,"43747":1,"43748":1,"43749":1,"43750":2,"43751":1,"43752":2,"43753":2,"43754":2,"43755":1,"43756":2,"43757":2,"43758":2,"43759":2,"43760":2,"43761":1,"43762":1,"43763":1,"43764":2,"43765":2,"43766":2,"43767":1,"43768":1,"43769":2,"43770":1,"43771":1,"43772":2,"43773":1,"43774":1,"43775":1,"43776":2,"43777":1,"43778":2,"43779":2,"43780":2,"43781":1,"43782":2,"43783":1,"43784":2,"43785":1,"43786":1,"43787":2,"43788":2,"43789":2,"43790":1,"43791":2,"43792":1,"43793":2,"43794":2,"43795":2,"43796":1,"43797":2,"43798":2,"43799":2,"43800":1,"43801":2,"43802":1,"43803":1,"43804":2,"43805":2,"43806":2,"43807":1,"43808":2,"43809":2,"43810":1,"43811":1,"43812":2,"43813":1,"43814":2,"43815":1,"43816":2,"43817":1,"43818":1,"43819":1,"43820":1,"43821":2,"43822":2,"43823":1,"43824":2,"43825":2,"43826":1,"43827":1,"43828":1,"43829":2,"43830":2,"43831":1,"43832":1,"43833":1,"43834":2,"43835":1,"43836":2,"43837":2,"43838":2,"43839":2,"43840":2,"43841":2,"43842":2,"43843":2,"43844":1,"43845":2,"43846":1,"43847":2,"43848":2,"43849":2,"43850":2,"43851":1,"43852":2,"43853":2,"43854":2,"43855":2,"43856":2,"43857":2,"43858":2,"43859":2,"43860":1,"43861":1,"43862":1,"43863":2,"43864":1,"43865":1,"43866":2,"43867":2,"43868":1,"43869":1,"43870":2,"43871":1,"43872":1,"43873":2,"43874":2,"43875":1,"43876":1,"43877":1,"43878":1,"43879":2,"43880":1,"43881":1,"43882":2,"43883":2,"43884":2,"43885":1,"43886":2,"43887":1,"43888":1,"43889":2,"43890":2,"43891":2,"43892":1,"43893":1,"43894":2,"43895":1,"43896":2,"43897":2,"43898":1,"43899":2,"43900":1,"43901":1,"43902":2,"43903":1,"43904":2,"43905":1,"43906":1,"43907":1,"43908":2,"43909":2,"43910":2,"43911":2,"43912":1,"43913":2,"43914":1,"43915":2,"43916":2,"43917":1,"43918":2,"43919":2,"43920":2,"43921":1,"43922":1,"43923":1,"43924":1,"43925":1,"43926":1,"43927":2,"43928":2,"43929":2,"43930":2,"43931":2,"43932":2,"43933":2,"43934":1,"43935":2,"43936":2,"43937":2,"43938":2,"43939":2,"43940":2,"43941":1,"43942":2,"43943":1,"43944":1,"43945":2,"43946":2,"43947":1,"43948":1,"43949":1,"43950":1,"43951":1,"43952":2,"43953":2,"43954":2,"43955":2,"43956":1,"43957":2,"43958":1,"43959":1,"43960":2,"43961":2,"43962":2,"43963":2,"43964":1,"43965":2,"43966":2,"43967":1,"43968":2,"43969":2,"43970":2,"43971":2,"43972":1,"43973":1,"43974":2,"43975":1,"43976":2,"43977":1,"43978":2,"43979":1,"43980":2,"43981":1,"43982":2,"43983":1,"43984":2,"43985":1,"43986":1,"43987":1,"43988":1,"43989":2,"43990":2,"43991":1,"43992":1,"43993":1,"43994":1,"43995":1,"43996":2,"43997":1,"43998":1,"43999":1,"44000":1,"44001":2,"44002":2,"44003":2,"44004":2,"44005":1,"44006":1,"44007":2,"44008":1,"44009":2,"44010":1,"44011":1,"44012":1,"44013":1,"44014":2,"44015":1,"44016":1,"44017":2,"44018":2,"44019":2,"44020":2,"44021":1,"44022":1,"44023":1,"44024":1,"44025":1,"44026":2,"44027":2,"44028":2,"44029":2,"44030":1,"44031":2,"44032":1,"44033":1,"44034":2,"44035":2,"44036":2,"44037":1,"44038":2,"44039":2,"44040":1,"44041":1,"44042":2,"44043":1,"44044":1,"44045":2,"44046":1,"44047":1,"44048":2,"44049":2,"44050":1,"44051":2,"44052":1,"44053":1,"44054":2,"44055":1,"44056":1,"44057":2,"44058":1,"44059":1,"44060":2,"44061":1,"44062":2,"44063":2,"44064":1,"44065":1,"44066":2,"44067":2,"44068":1,"44069":1,"44070":1,"44071":2,"44072":2,"44073":2,"44074":2,"44075":2,"44076":1,"44077":2,"44078":1,"44079":1,"44080":1,"44081":2,"44082":2,"44083":1,"44084":1,"44085":1,"44086":1,"44087":2,"44088":2,"44089":1,"44090":2,"44091":1,"44092":1,"44093":1,"44094":2,"44095":1,"44096":2,"44097":1,"44098":1,"44099":1,"44100":1,"44101":1,"44102":2,"44103":1,"44104":2,"44105":1,"44106":2,"44107":2,"44108":2,"44109":2,"44110":2,"44111":1,"44112":2,"44113":1,"44114":2,"44115":2,"44116":1,"44117":2,"44118":2,"44119":1,"44120":2,"44121":1,"44122":1,"44123":1,"44124":1,"44125":1,"44126":2,"44127":2,"44128":1,"44129":2,"44130":2,"44131":1,"44132":2,"44133":1,"44134":1,"44135":1,"44136":1,"44137":1,"44138":2,"44139":1,"44140":1,"44141":2,"44142":1,"44143":2,"44144":1,"44145":2,"44146":2,"44147":2,"44148":2,"44149":2,"44150":1,"44151":2,"44152":1,"44153":2,"44154":1,"44155":2,"44156":1,"44157":1,"44158":2,"44159":1,"44160":1,"44161":1,"44162":1,"44163":1,"44164":2,"44165":1,"44166":2,"44167":2,"44168":1,"44169":1,"44170":2,"44171":2,"44172":2,"44173":1,"44174":2,"44175":1,"44176":2,"44177":2,"44178":1,"44179":1,"44180":2,"44181":2,"44182":2,"44183":1,"44184":2,"44185":1,"44186":1,"44187":2,"44188":1,"44189":2,"44190":2,"44191":2,"44192":1,"44193":1,"44194":1,"44195":2,"44196":2,"44197":1,"44198":1,"44199":2,"44200":1,"44201":1,"44202":2},"age":{"0":6,"1":7,"2":10,"3":1,"4":2,"5":7,"6":7,"7":8,"8":7,"9":9,"10":2,"11":2,"12":2,"13":3,"14":5,"15":8,"16":6,"17":5,"18":2,"19":4,"20":10,"21":8,"22":5,"23":2,"24":9,"25":8,"26":7,"27":8,"28":8,"29":1,"30":8,"31":8,"32":8,"33":7,"34":9,"35":9,"36":7,"37":1,"38":2,"39":1,"40":1,"41":2,"42":7,"43":3,"44":7,"45":4,"46":9,"47":10,"48":8,"49":10,"50":9,"51":8,"52":8,"53":2,"54":4,"55":8,"56":9,"57":9,"58":8,"59":7,"60":4,"61":9,"62":8,"63":7,"64":5,"65":8,"66":8,"67":7,"68":8,"69":9,"70":8,"71":3,"72":3,"73":7,"74":3,"75":1,"76":2,"77":4,"78":4,"79":5,"80":9,"81":8,"82":4,"83":8,"84":7,"85":7,"86":4,"87":7,"88":8,"89":9,"90":8,"91":8,"92":5,"93":1,"94":1,"95":3,"96":8,"97":9,"98":10,"99":2,"100":7,"101":7,"102":9,"103":7,"104":8,"105":8,"106":10,"107":2,"108":6,"109":7,"110":8,"111":8,"112":9,"113":8,"114":3,"115":3,"116":10,"117":8,"118":7,"119":7,"120":8,"121":7,"122":1,"123":1,"124":7,"125":4,"126":9,"127":2,"128":7,"129":3,"130":7,"131":8,"132":7,"133":5,"134":3,"135":6,"136":7,"137":4,"138":8,"139":7,"140":7,"141":1,"142":8,"143":9,"144":7,"145":7,"146":8,"147":5,"148":9,"149":6,"150":8,"151":8,"152":8,"153":1,"154":2,"155":2,"156":9,"157":4,"158":5,"159":7,"160":7,"161":10,"162":6,"163":9,"164":7,"165":6,"166":7,"167":7,"168":2,"169":5,"170":7,"171":9,"172":1,"173":8,"174":8,"175":6,"176":8,"177":8,"178":10,"179":7,"180":8,"181":7,"182":9,"183":8,"184":8,"185":9,"186":7,"187":7,"188":8,"189":2,"190":7,"191":7,"192":8,"193":2,"194":5,"195":9,"196":6,"197":4,"198":5,"199":8,"200":9,"201":9,"202":5,"203":2,"204":7,"205":7,"206":5,"207":8,"208":6,"209":8,"210":1,"211":9,"212":2,"213":2,"214":8,"215":8,"216":9,"217":2,"218":9,"219":9,"220":8,"221":9,"222":4,"223":7,"224":8,"225":4,"226":9,"227":2,"228":7,"229":2,"230":7,"231":3,"232":8,"233":2,"234":8,"235":1,"236":10,"237":7,"238":8,"239":3,"240":4,"241":3,"242":2,"243":1,"244":5,"245":1,"246":7,"247":2,"248":8,"249":1,"250":9,"251":8,"252":9,"253":9,"254":9,"255":7,"256":8,"257":9,"258":10,"259":7,"260":10,"261":7,"262":2,"263":10,"264":8,"265":8,"266":6,"267":2,"268":7,"269":7,"270":8,"271":3,"272":8,"273":9,"274":5,"275":7,"276":7,"277":2,"278":7,"279":5,"280":8,"281":9,"282":9,"283":9,"284":9,"285":4,"286":9,"287":10,"288":8,"289":8,"290":7,"291":2,"292":6,"293":2,"294":9,"295":7,"296":6,"297":1,"298":10,"299":6,"300":1,"301":9,"302":5,"303":8,"304":9,"305":5,"306":9,"307":8,"308":5,"309":8,"310":3,"311":9,"312":2,"313":8,"314":8,"315":8,"316":7,"317":9,"318":2,"319":6,"320":9,"321":4,"322":2,"323":7,"324":9,"325":8,"326":4,"327":7,"328":7,"329":10,"330":9,"331":7,"332":7,"333":8,"334":7,"335":6,"336":8,"337":6,"338":8,"339":7,"340":6,"341":9,"342":8,"343":2,"344":9,"345":2,"346":10,"347":1,"348":9,"349":8,"350":9,"351":2,"352":9,"353":8,"354":9,"355":9,"356":4,"357":8,"358":8,"359":8,"360":10,"361":8,"362":8,"363":5,"364":5,"365":8,"366":5,"367":4,"368":8,"369":6,"370":6,"371":4,"372":9,"373":2,"374":2,"375":8,"376":1,"377":8,"378":7,"379":5,"380":8,"381":8,"382":8,"383":2,"384":2,"385":7,"386":2,"387":6,"388":3,"389":8,"390":1,"391":2,"392":9,"393":8,"394":7,"395":7,"396":2,"397":8,"398":1,"399":9,"400":9,"401":7,"402":9,"403":8,"404":7,"405":9,"406":10,"407":9,"408":5,"409":7,"410":8,"411":8,"412":7,"413":9,"414":6,"415":2,"416":7,"417":3,"418":9,"419":8,"420":5,"421":7,"422":5,"423":7,"424":7,"425":7,"426":6,"427":10,"428":2,"429":6,"430":2,"431":2,"432":9,"433":5,"434":7,"435":2,"436":8,"437":5,"438":7,"439":7,"440":8,"441":9,"442":2,"443":3,"444":8,"445":10,"446":9,"447":2,"448":8,"449":8,"450":1,"451":4,"452":8,"453":3,"454":8,"455":8,"456":8,"457":7,"458":7,"459":9,"460":7,"461":5,"462":4,"463":8,"464":2,"465":2,"466":8,"467":3,"468":9,"469":5,"470":7,"471":8,"472":8,"473":6,"474":5,"475":6,"476":7,"477":6,"478":7,"479":9,"480":5,"481":3,"482":9,"483":3,"484":6,"485":6,"486":8,"487":8,"488":6,"489":7,"490":6,"491":1,"492":7,"493":5,"494":2,"495":2,"496":8,"497":1,"498":8,"499":5,"500":9,"501":5,"502":2,"503":8,"504":8,"505":8,"506":7,"507":7,"508":7,"509":3,"510":2,"511":8,"512":8,"513":9,"514":4,"515":10,"516":8,"517":1,"518":7,"519":7,"520":2,"521":10,"522":7,"523":2,"524":7,"525":5,"526":6,"527":8,"528":5,"529":5,"530":6,"531":8,"532":2,"533":1,"534":8,"535":4,"536":8,"537":7,"538":5,"539":7,"540":8,"541":6,"542":2,"543":8,"544":7,"545":9,"546":6,"547":8,"548":9,"549":5,"550":8,"551":10,"552":7,"553":8,"554":5,"555":5,"556":8,"557":7,"558":6,"559":3,"560":9,"561":4,"562":1,"563":1,"564":8,"565":3,"566":4,"567":8,"568":1,"569":5,"570":8,"571":8,"572":1,"573":3,"574":3,"575":9,"576":9,"577":10,"578":7,"579":2,"580":7,"581":7,"582":10,"583":7,"584":2,"585":10,"586":7,"587":1,"588":8,"589":9,"590":9,"591":7,"592":7,"593":5,"594":7,"595":4,"596":9,"597":7,"598":2,"599":6,"600":5,"601":1,"602":2,"603":5,"604":3,"605":4,"606":8,"607":3,"608":7,"609":7,"610":6,"611":3,"612":6,"613":9,"614":2,"615":2,"616":7,"617":1,"618":3,"619":8,"620":7,"621":2,"622":8,"623":3,"624":9,"625":5,"626":7,"627":3,"628":2,"629":8,"630":4,"631":3,"632":8,"633":3,"634":6,"635":9,"636":7,"637":3,"638":9,"639":7,"640":2,"641":2,"642":7,"643":8,"644":2,"645":8,"646":8,"647":10,"648":1,"649":5,"650":2,"651":7,"652":1,"653":7,"654":7,"655":7,"656":5,"657":6,"658":9,"659":9,"660":7,"661":6,"662":9,"663":9,"664":9,"665":9,"666":9,"667":7,"668":2,"669":7,"670":7,"671":5,"672":1,"673":9,"674":10,"675":5,"676":8,"677":8,"678":6,"679":2,"680":10,"681":2,"682":2,"683":5,"684":7,"685":9,"686":4,"687":9,"688":2,"689":10,"690":1,"691":9,"692":9,"693":8,"694":10,"695":8,"696":8,"697":8,"698":6,"699":9,"700":2,"701":6,"702":7,"703":3,"704":8,"705":1,"706":9,"707":7,"708":8,"709":7,"710":7,"711":3,"712":4,"713":8,"714":8,"715":7,"716":7,"717":2,"718":4,"719":7,"720":10,"721":7,"722":9,"723":8,"724":7,"725":9,"726":4,"727":5,"728":5,"729":1,"730":8,"731":9,"732":2,"733":9,"734":8,"735":6,"736":8,"737":8,"738":1,"739":10,"740":8,"741":9,"742":8,"743":9,"744":9,"745":7,"746":3,"747":9,"748":3,"749":1,"750":4,"751":8,"752":9,"753":10,"754":7,"755":7,"756":2,"757":10,"758":9,"759":3,"760":9,"761":8,"762":8,"763":9,"764":7,"765":3,"766":10,"767":2,"768":5,"769":2,"770":9,"771":8,"772":10,"773":7,"774":9,"775":5,"776":8,"777":8,"778":9,"779":7,"780":5,"781":8,"782":8,"783":2,"784":5,"785":8,"786":9,"787":10,"788":5,"789":2,"790":2,"791":4,"792":7,"793":10,"794":9,"795":1,"796":8,"797":8,"798":8,"799":5,"800":2,"801":3,"802":8,"803":2,"804":7,"805":7,"806":9,"807":7,"808":1,"809":7,"810":9,"811":2,"812":5,"813":7,"814":2,"815":8,"816":8,"817":7,"818":5,"819":5,"820":8,"821":7,"822":2,"823":8,"824":8,"825":8,"826":8,"827":1,"828":7,"829":6,"830":8,"831":9,"832":8,"833":9,"834":8,"835":7,"836":6,"837":8,"838":1,"839":7,"840":7,"841":4,"842":7,"843":7,"844":8,"845":7,"846":7,"847":2,"848":8,"849":9,"850":8,"851":5,"852":8,"853":4,"854":2,"855":5,"856":9,"857":10,"858":5,"859":8,"860":7,"861":9,"862":7,"863":7,"864":2,"865":7,"866":8,"867":5,"868":7,"869":7,"870":6,"871":8,"872":9,"873":7,"874":7,"875":3,"876":7,"877":8,"878":7,"879":2,"880":8,"881":9,"882":7,"883":7,"884":1,"885":5,"886":4,"887":7,"888":3,"889":7,"890":3,"891":7,"892":9,"893":9,"894":7,"895":3,"896":7,"897":8,"898":7,"899":10,"900":6,"901":5,"902":9,"903":2,"904":4,"905":10,"906":2,"907":8,"908":7,"909":2,"910":7,"911":6,"912":9,"913":9,"914":5,"915":8,"916":7,"917":8,"918":8,"919":1,"920":1,"921":8,"922":2,"923":9,"924":10,"925":7,"926":7,"927":4,"928":9,"929":9,"930":8,"931":6,"932":5,"933":9,"934":5,"935":2,"936":3,"937":5,"938":10,"939":8,"940":5,"941":8,"942":2,"943":4,"944":7,"945":8,"946":6,"947":6,"948":8,"949":9,"950":7,"951":2,"952":5,"953":9,"954":9,"955":8,"956":2,"957":3,"958":7,"959":9,"960":8,"961":8,"962":8,"963":7,"964":3,"965":1,"966":7,"967":4,"968":7,"969":8,"970":9,"971":7,"972":2,"973":9,"974":10,"975":10,"976":8,"977":4,"978":6,"979":9,"980":1,"981":8,"982":2,"983":2,"984":8,"985":2,"986":8,"987":2,"988":8,"989":9,"990":7,"991":1,"992":8,"993":9,"994":10,"995":8,"996":2,"997":1,"998":5,"999":5,"1000":8,"1001":7,"1002":1,"1003":7,"1004":2,"1005":7,"1006":8,"1007":9,"1008":2,"1009":6,"1010":8,"1011":8,"1012":1,"1013":7,"1014":1,"1015":10,"1016":2,"1017":9,"1018":7,"1019":5,"1020":7,"1021":5,"1022":9,"1023":6,"1024":1,"1025":8,"1026":9,"1027":2,"1028":8,"1029":2,"1030":5,"1031":2,"1032":1,"1033":4,"1034":9,"1035":8,"1036":7,"1037":7,"1038":4,"1039":2,"1040":6,"1041":8,"1042":10,"1043":4,"1044":7,"1045":8,"1046":8,"1047":7,"1048":8,"1049":2,"1050":5,"1051":7,"1052":9,"1053":7,"1054":7,"1055":2,"1056":8,"1057":8,"1058":7,"1059":9,"1060":1,"1061":7,"1062":2,"1063":5,"1064":8,"1065":9,"1066":2,"1067":10,"1068":7,"1069":8,"1070":5,"1071":4,"1072":7,"1073":1,"1074":5,"1075":7,"1076":2,"1077":1,"1078":2,"1079":7,"1080":7,"1081":5,"1082":7,"1083":5,"1084":6,"1085":4,"1086":8,"1087":7,"1088":7,"1089":8,"1090":9,"1091":5,"1092":2,"1093":5,"1094":2,"1095":6,"1096":5,"1097":7,"1098":7,"1099":2,"1100":4,"1101":2,"1102":7,"1103":5,"1104":9,"1105":8,"1106":10,"1107":5,"1108":6,"1109":2,"1110":8,"1111":10,"1112":10,"1113":8,"1114":7,"1115":9,"1116":5,"1117":9,"1118":2,"1119":1,"1120":1,"1121":9,"1122":3,"1123":7,"1124":5,"1125":10,"1126":7,"1127":1,"1128":9,"1129":2,"1130":6,"1131":9,"1132":10,"1133":8,"1134":8,"1135":8,"1136":7,"1137":2,"1138":3,"1139":5,"1140":8,"1141":9,"1142":7,"1143":2,"1144":7,"1145":9,"1146":8,"1147":7,"1148":7,"1149":8,"1150":9,"1151":10,"1152":7,"1153":3,"1154":8,"1155":5,"1156":5,"1157":10,"1158":10,"1159":7,"1160":8,"1161":7,"1162":7,"1163":1,"1164":2,"1165":2,"1166":2,"1167":8,"1168":7,"1169":7,"1170":5,"1171":2,"1172":6,"1173":8,"1174":4,"1175":2,"1176":10,"1177":3,"1178":6,"1179":8,"1180":5,"1181":9,"1182":1,"1183":8,"1184":6,"1185":8,"1186":7,"1187":5,"1188":6,"1189":10,"1190":2,"1191":7,"1192":5,"1193":2,"1194":9,"1195":2,"1196":9,"1197":5,"1198":2,"1199":6,"1200":8,"1201":3,"1202":8,"1203":9,"1204":4,"1205":4,"1206":7,"1207":9,"1208":6,"1209":9,"1210":7,"1211":5,"1212":4,"1213":8,"1214":2,"1215":7,"1216":6,"1217":4,"1218":3,"1219":7,"1220":8,"1221":8,"1222":8,"1223":9,"1224":7,"1225":4,"1226":3,"1227":9,"1228":7,"1229":7,"1230":3,"1231":3,"1232":3,"1233":9,"1234":8,"1235":8,"1236":7,"1237":9,"1238":5,"1239":5,"1240":2,"1241":5,"1242":4,"1243":6,"1244":8,"1245":5,"1246":9,"1247":5,"1248":10,"1249":5,"1250":6,"1251":7,"1252":2,"1253":9,"1254":9,"1255":4,"1256":1,"1257":9,"1258":9,"1259":9,"1260":9,"1261":8,"1262":9,"1263":7,"1264":9,"1265":6,"1266":9,"1267":9,"1268":2,"1269":2,"1270":2,"1271":3,"1272":3,"1273":2,"1274":8,"1275":9,"1276":7,"1277":7,"1278":9,"1279":8,"1280":8,"1281":7,"1282":7,"1283":9,"1284":9,"1285":1,"1286":7,"1287":8,"1288":5,"1289":7,"1290":2,"1291":1,"1292":8,"1293":9,"1294":5,"1295":3,"1296":4,"1297":6,"1298":9,"1299":6,"1300":10,"1301":8,"1302":7,"1303":7,"1304":8,"1305":10,"1306":3,"1307":9,"1308":3,"1309":2,"1310":5,"1311":9,"1312":7,"1313":9,"1314":7,"1315":2,"1316":2,"1317":8,"1318":6,"1319":7,"1320":9,"1321":4,"1322":1,"1323":7,"1324":6,"1325":5,"1326":2,"1327":2,"1328":8,"1329":2,"1330":5,"1331":4,"1332":10,"1333":8,"1334":8,"1335":9,"1336":8,"1337":2,"1338":7,"1339":9,"1340":3,"1341":8,"1342":7,"1343":7,"1344":3,"1345":10,"1346":7,"1347":6,"1348":8,"1349":7,"1350":9,"1351":10,"1352":7,"1353":6,"1354":8,"1355":7,"1356":2,"1357":6,"1358":9,"1359":7,"1360":8,"1361":8,"1362":1,"1363":8,"1364":8,"1365":1,"1366":2,"1367":8,"1368":8,"1369":1,"1370":7,"1371":9,"1372":2,"1373":6,"1374":8,"1375":8,"1376":4,"1377":2,"1378":7,"1379":7,"1380":7,"1381":3,"1382":3,"1383":9,"1384":8,"1385":8,"1386":5,"1387":9,"1388":2,"1389":8,"1390":7,"1391":4,"1392":4,"1393":1,"1394":2,"1395":2,"1396":7,"1397":7,"1398":5,"1399":9,"1400":9,"1401":3,"1402":7,"1403":9,"1404":9,"1405":9,"1406":9,"1407":8,"1408":6,"1409":9,"1410":7,"1411":5,"1412":8,"1413":7,"1414":8,"1415":5,"1416":7,"1417":4,"1418":1,"1419":8,"1420":1,"1421":9,"1422":9,"1423":8,"1424":2,"1425":8,"1426":7,"1427":8,"1428":2,"1429":3,"1430":8,"1431":8,"1432":1,"1433":4,"1434":5,"1435":8,"1436":3,"1437":8,"1438":9,"1439":7,"1440":9,"1441":6,"1442":5,"1443":7,"1444":5,"1445":5,"1446":8,"1447":2,"1448":3,"1449":9,"1450":2,"1451":7,"1452":7,"1453":8,"1454":7,"1455":8,"1456":3,"1457":7,"1458":7,"1459":8,"1460":3,"1461":9,"1462":8,"1463":7,"1464":7,"1465":1,"1466":7,"1467":6,"1468":2,"1469":2,"1470":9,"1471":7,"1472":2,"1473":8,"1474":6,"1475":8,"1476":10,"1477":8,"1478":8,"1479":7,"1480":7,"1481":7,"1482":4,"1483":9,"1484":10,"1485":9,"1486":6,"1487":5,"1488":8,"1489":4,"1490":8,"1491":8,"1492":6,"1493":9,"1494":3,"1495":3,"1496":3,"1497":7,"1498":2,"1499":7,"1500":6,"1501":3,"1502":5,"1503":2,"1504":1,"1505":7,"1506":9,"1507":9,"1508":9,"1509":9,"1510":9,"1511":10,"1512":7,"1513":7,"1514":4,"1515":8,"1516":8,"1517":8,"1518":7,"1519":9,"1520":6,"1521":5,"1522":8,"1523":9,"1524":8,"1525":5,"1526":10,"1527":3,"1528":6,"1529":1,"1530":7,"1531":1,"1532":4,"1533":8,"1534":8,"1535":4,"1536":8,"1537":7,"1538":9,"1539":2,"1540":6,"1541":9,"1542":9,"1543":9,"1544":5,"1545":10,"1546":8,"1547":5,"1548":1,"1549":8,"1550":10,"1551":7,"1552":5,"1553":5,"1554":7,"1555":3,"1556":9,"1557":8,"1558":9,"1559":2,"1560":8,"1561":4,"1562":7,"1563":7,"1564":10,"1565":8,"1566":6,"1567":5,"1568":3,"1569":7,"1570":7,"1571":7,"1572":10,"1573":8,"1574":8,"1575":2,"1576":7,"1577":10,"1578":8,"1579":8,"1580":9,"1581":3,"1582":9,"1583":9,"1584":1,"1585":7,"1586":7,"1587":2,"1588":8,"1589":3,"1590":7,"1591":7,"1592":7,"1593":8,"1594":3,"1595":9,"1596":4,"1597":8,"1598":2,"1599":8,"1600":10,"1601":2,"1602":7,"1603":6,"1604":7,"1605":8,"1606":9,"1607":8,"1608":7,"1609":6,"1610":3,"1611":3,"1612":2,"1613":5,"1614":8,"1615":2,"1616":8,"1617":4,"1618":4,"1619":1,"1620":1,"1621":10,"1622":10,"1623":2,"1624":8,"1625":8,"1626":8,"1627":5,"1628":7,"1629":2,"1630":5,"1631":9,"1632":2,"1633":7,"1634":3,"1635":8,"1636":2,"1637":3,"1638":8,"1639":8,"1640":7,"1641":9,"1642":5,"1643":5,"1644":1,"1645":7,"1646":8,"1647":7,"1648":2,"1649":6,"1650":8,"1651":9,"1652":6,"1653":2,"1654":1,"1655":8,"1656":9,"1657":8,"1658":8,"1659":9,"1660":10,"1661":2,"1662":8,"1663":8,"1664":8,"1665":2,"1666":9,"1667":5,"1668":8,"1669":5,"1670":10,"1671":8,"1672":8,"1673":7,"1674":7,"1675":7,"1676":5,"1677":6,"1678":4,"1679":8,"1680":8,"1681":6,"1682":9,"1683":7,"1684":10,"1685":8,"1686":8,"1687":2,"1688":4,"1689":1,"1690":5,"1691":9,"1692":8,"1693":5,"1694":4,"1695":1,"1696":7,"1697":3,"1698":4,"1699":8,"1700":4,"1701":4,"1702":8,"1703":8,"1704":6,"1705":5,"1706":9,"1707":9,"1708":4,"1709":9,"1710":8,"1711":5,"1712":7,"1713":6,"1714":5,"1715":2,"1716":7,"1717":2,"1718":8,"1719":5,"1720":8,"1721":7,"1722":6,"1723":8,"1724":7,"1725":8,"1726":5,"1727":6,"1728":5,"1729":7,"1730":5,"1731":9,"1732":9,"1733":7,"1734":8,"1735":9,"1736":9,"1737":5,"1738":4,"1739":7,"1740":7,"1741":6,"1742":4,"1743":2,"1744":9,"1745":7,"1746":7,"1747":8,"1748":7,"1749":5,"1750":7,"1751":7,"1752":8,"1753":5,"1754":9,"1755":8,"1756":7,"1757":5,"1758":8,"1759":7,"1760":7,"1761":1,"1762":7,"1763":9,"1764":2,"1765":9,"1766":9,"1767":8,"1768":1,"1769":7,"1770":3,"1771":8,"1772":10,"1773":8,"1774":7,"1775":9,"1776":8,"1777":9,"1778":5,"1779":3,"1780":5,"1781":3,"1782":3,"1783":9,"1784":2,"1785":5,"1786":2,"1787":8,"1788":6,"1789":9,"1790":8,"1791":8,"1792":2,"1793":10,"1794":1,"1795":8,"1796":8,"1797":8,"1798":9,"1799":7,"1800":7,"1801":3,"1802":8,"1803":3,"1804":9,"1805":9,"1806":7,"1807":5,"1808":9,"1809":1,"1810":5,"1811":7,"1812":5,"1813":7,"1814":8,"1815":7,"1816":3,"1817":6,"1818":10,"1819":9,"1820":6,"1821":4,"1822":8,"1823":5,"1824":2,"1825":3,"1826":1,"1827":2,"1828":8,"1829":7,"1830":4,"1831":5,"1832":7,"1833":7,"1834":1,"1835":2,"1836":9,"1837":8,"1838":2,"1839":9,"1840":2,"1841":5,"1842":8,"1843":7,"1844":8,"1845":5,"1846":7,"1847":1,"1848":4,"1849":6,"1850":8,"1851":7,"1852":4,"1853":5,"1854":8,"1855":9,"1856":8,"1857":1,"1858":8,"1859":2,"1860":8,"1861":7,"1862":7,"1863":9,"1864":8,"1865":2,"1866":9,"1867":9,"1868":5,"1869":6,"1870":7,"1871":8,"1872":9,"1873":7,"1874":9,"1875":9,"1876":6,"1877":7,"1878":2,"1879":8,"1880":7,"1881":5,"1882":2,"1883":8,"1884":5,"1885":9,"1886":7,"1887":3,"1888":4,"1889":7,"1890":5,"1891":7,"1892":8,"1893":3,"1894":6,"1895":8,"1896":8,"1897":9,"1898":7,"1899":2,"1900":8,"1901":7,"1902":9,"1903":8,"1904":2,"1905":10,"1906":8,"1907":3,"1908":10,"1909":7,"1910":8,"1911":7,"1912":9,"1913":7,"1914":8,"1915":4,"1916":7,"1917":5,"1918":7,"1919":7,"1920":4,"1921":8,"1922":9,"1923":2,"1924":8,"1925":8,"1926":8,"1927":10,"1928":9,"1929":7,"1930":5,"1931":5,"1932":8,"1933":7,"1934":5,"1935":7,"1936":2,"1937":9,"1938":8,"1939":10,"1940":8,"1941":7,"1942":2,"1943":10,"1944":3,"1945":8,"1946":8,"1947":9,"1948":7,"1949":8,"1950":8,"1951":8,"1952":8,"1953":8,"1954":10,"1955":9,"1956":2,"1957":10,"1958":8,"1959":4,"1960":9,"1961":7,"1962":2,"1963":9,"1964":6,"1965":7,"1966":7,"1967":6,"1968":8,"1969":1,"1970":8,"1971":4,"1972":7,"1973":5,"1974":7,"1975":9,"1976":8,"1977":6,"1978":2,"1979":8,"1980":7,"1981":8,"1982":10,"1983":5,"1984":2,"1985":2,"1986":5,"1987":2,"1988":8,"1989":5,"1990":2,"1991":8,"1992":7,"1993":7,"1994":8,"1995":2,"1996":7,"1997":9,"1998":2,"1999":7,"2000":2,"2001":8,"2002":7,"2003":9,"2004":5,"2005":8,"2006":1,"2007":8,"2008":7,"2009":7,"2010":9,"2011":8,"2012":7,"2013":8,"2014":7,"2015":10,"2016":7,"2017":5,"2018":8,"2019":8,"2020":9,"2021":7,"2022":3,"2023":5,"2024":9,"2025":8,"2026":9,"2027":7,"2028":1,"2029":7,"2030":7,"2031":1,"2032":7,"2033":6,"2034":5,"2035":8,"2036":7,"2037":7,"2038":8,"2039":8,"2040":4,"2041":7,"2042":4,"2043":5,"2044":3,"2045":7,"2046":5,"2047":5,"2048":4,"2049":7,"2050":2,"2051":8,"2052":7,"2053":7,"2054":2,"2055":7,"2056":8,"2057":7,"2058":1,"2059":4,"2060":5,"2061":8,"2062":9,"2063":7,"2064":4,"2065":6,"2066":9,"2067":2,"2068":5,"2069":1,"2070":5,"2071":5,"2072":9,"2073":2,"2074":7,"2075":9,"2076":2,"2077":1,"2078":7,"2079":8,"2080":10,"2081":5,"2082":5,"2083":5,"2084":7,"2085":8,"2086":9,"2087":10,"2088":5,"2089":8,"2090":2,"2091":10,"2092":8,"2093":7,"2094":5,"2095":6,"2096":9,"2097":7,"2098":5,"2099":8,"2100":9,"2101":4,"2102":7,"2103":9,"2104":2,"2105":7,"2106":8,"2107":1,"2108":9,"2109":2,"2110":3,"2111":6,"2112":5,"2113":3,"2114":7,"2115":7,"2116":1,"2117":3,"2118":7,"2119":7,"2120":9,"2121":5,"2122":10,"2123":9,"2124":8,"2125":9,"2126":1,"2127":9,"2128":8,"2129":10,"2130":7,"2131":8,"2132":8,"2133":9,"2134":8,"2135":8,"2136":8,"2137":9,"2138":8,"2139":5,"2140":9,"2141":7,"2142":5,"2143":6,"2144":10,"2145":9,"2146":3,"2147":4,"2148":8,"2149":9,"2150":9,"2151":8,"2152":8,"2153":8,"2154":8,"2155":7,"2156":2,"2157":7,"2158":7,"2159":9,"2160":1,"2161":8,"2162":7,"2163":3,"2164":7,"2165":6,"2166":5,"2167":9,"2168":8,"2169":7,"2170":10,"2171":7,"2172":9,"2173":4,"2174":7,"2175":7,"2176":8,"2177":2,"2178":6,"2179":8,"2180":8,"2181":3,"2182":2,"2183":9,"2184":9,"2185":3,"2186":10,"2187":9,"2188":10,"2189":4,"2190":2,"2191":8,"2192":8,"2193":4,"2194":5,"2195":2,"2196":3,"2197":2,"2198":8,"2199":8,"2200":7,"2201":2,"2202":9,"2203":6,"2204":8,"2205":10,"2206":7,"2207":5,"2208":7,"2209":1,"2210":9,"2211":5,"2212":7,"2213":8,"2214":7,"2215":2,"2216":5,"2217":9,"2218":5,"2219":8,"2220":9,"2221":9,"2222":1,"2223":7,"2224":7,"2225":9,"2226":8,"2227":5,"2228":7,"2229":3,"2230":6,"2231":7,"2232":8,"2233":5,"2234":2,"2235":8,"2236":10,"2237":7,"2238":3,"2239":2,"2240":4,"2241":7,"2242":3,"2243":9,"2244":9,"2245":9,"2246":9,"2247":6,"2248":8,"2249":7,"2250":7,"2251":2,"2252":7,"2253":2,"2254":8,"2255":7,"2256":8,"2257":5,"2258":2,"2259":7,"2260":1,"2261":8,"2262":8,"2263":4,"2264":7,"2265":8,"2266":5,"2267":5,"2268":8,"2269":4,"2270":3,"2271":6,"2272":7,"2273":7,"2274":3,"2275":7,"2276":7,"2277":9,"2278":10,"2279":9,"2280":4,"2281":9,"2282":9,"2283":7,"2284":7,"2285":2,"2286":9,"2287":7,"2288":8,"2289":9,"2290":9,"2291":8,"2292":7,"2293":4,"2294":10,"2295":7,"2296":8,"2297":2,"2298":7,"2299":7,"2300":1,"2301":1,"2302":2,"2303":9,"2304":7,"2305":9,"2306":8,"2307":2,"2308":5,"2309":5,"2310":8,"2311":9,"2312":5,"2313":10,"2314":8,"2315":4,"2316":5,"2317":2,"2318":9,"2319":6,"2320":2,"2321":9,"2322":9,"2323":8,"2324":8,"2325":7,"2326":7,"2327":7,"2328":7,"2329":4,"2330":6,"2331":7,"2332":7,"2333":1,"2334":7,"2335":6,"2336":1,"2337":7,"2338":5,"2339":5,"2340":8,"2341":2,"2342":8,"2343":7,"2344":5,"2345":8,"2346":8,"2347":9,"2348":7,"2349":7,"2350":3,"2351":2,"2352":7,"2353":2,"2354":7,"2355":7,"2356":2,"2357":4,"2358":8,"2359":7,"2360":5,"2361":7,"2362":10,"2363":1,"2364":7,"2365":6,"2366":9,"2367":8,"2368":6,"2369":9,"2370":8,"2371":7,"2372":9,"2373":9,"2374":1,"2375":7,"2376":9,"2377":3,"2378":7,"2379":4,"2380":7,"2381":8,"2382":2,"2383":9,"2384":7,"2385":5,"2386":9,"2387":2,"2388":10,"2389":3,"2390":8,"2391":9,"2392":8,"2393":8,"2394":8,"2395":9,"2396":5,"2397":7,"2398":10,"2399":7,"2400":2,"2401":5,"2402":7,"2403":9,"2404":7,"2405":9,"2406":6,"2407":5,"2408":8,"2409":8,"2410":9,"2411":7,"2412":10,"2413":1,"2414":8,"2415":5,"2416":10,"2417":10,"2418":9,"2419":7,"2420":7,"2421":3,"2422":8,"2423":5,"2424":10,"2425":5,"2426":4,"2427":1,"2428":10,"2429":10,"2430":7,"2431":1,"2432":4,"2433":7,"2434":8,"2435":6,"2436":7,"2437":9,"2438":10,"2439":10,"2440":7,"2441":8,"2442":7,"2443":2,"2444":7,"2445":7,"2446":2,"2447":8,"2448":2,"2449":9,"2450":5,"2451":5,"2452":2,"2453":6,"2454":8,"2455":4,"2456":8,"2457":6,"2458":7,"2459":8,"2460":8,"2461":9,"2462":9,"2463":1,"2464":7,"2465":5,"2466":7,"2467":9,"2468":1,"2469":7,"2470":8,"2471":9,"2472":10,"2473":9,"2474":7,"2475":2,"2476":9,"2477":2,"2478":9,"2479":9,"2480":5,"2481":7,"2482":10,"2483":3,"2484":10,"2485":6,"2486":8,"2487":5,"2488":7,"2489":6,"2490":7,"2491":9,"2492":1,"2493":6,"2494":8,"2495":9,"2496":9,"2497":8,"2498":7,"2499":2,"2500":1,"2501":7,"2502":1,"2503":4,"2504":8,"2505":8,"2506":9,"2507":5,"2508":2,"2509":8,"2510":9,"2511":7,"2512":5,"2513":1,"2514":8,"2515":8,"2516":9,"2517":3,"2518":2,"2519":6,"2520":8,"2521":4,"2522":10,"2523":7,"2524":1,"2525":5,"2526":9,"2527":7,"2528":4,"2529":4,"2530":7,"2531":8,"2532":9,"2533":7,"2534":10,"2535":10,"2536":3,"2537":5,"2538":7,"2539":1,"2540":10,"2541":7,"2542":7,"2543":8,"2544":4,"2545":1,"2546":8,"2547":1,"2548":8,"2549":7,"2550":9,"2551":8,"2552":9,"2553":9,"2554":9,"2555":9,"2556":8,"2557":6,"2558":9,"2559":7,"2560":5,"2561":7,"2562":5,"2563":5,"2564":9,"2565":3,"2566":3,"2567":8,"2568":5,"2569":10,"2570":2,"2571":7,"2572":8,"2573":9,"2574":5,"2575":6,"2576":8,"2577":9,"2578":7,"2579":5,"2580":6,"2581":4,"2582":9,"2583":3,"2584":2,"2585":8,"2586":7,"2587":7,"2588":6,"2589":8,"2590":7,"2591":6,"2592":8,"2593":8,"2594":9,"2595":7,"2596":8,"2597":9,"2598":7,"2599":5,"2600":6,"2601":3,"2602":5,"2603":7,"2604":8,"2605":7,"2606":4,"2607":9,"2608":7,"2609":7,"2610":2,"2611":2,"2612":6,"2613":6,"2614":4,"2615":8,"2616":4,"2617":2,"2618":2,"2619":9,"2620":4,"2621":2,"2622":9,"2623":7,"2624":5,"2625":8,"2626":7,"2627":2,"2628":8,"2629":9,"2630":7,"2631":1,"2632":8,"2633":8,"2634":6,"2635":4,"2636":10,"2637":6,"2638":2,"2639":10,"2640":8,"2641":3,"2642":7,"2643":8,"2644":4,"2645":7,"2646":9,"2647":6,"2648":8,"2649":8,"2650":5,"2651":7,"2652":2,"2653":8,"2654":9,"2655":4,"2656":9,"2657":2,"2658":4,"2659":8,"2660":3,"2661":8,"2662":5,"2663":8,"2664":10,"2665":9,"2666":8,"2667":7,"2668":3,"2669":7,"2670":1,"2671":9,"2672":5,"2673":3,"2674":2,"2675":9,"2676":8,"2677":10,"2678":7,"2679":9,"2680":7,"2681":7,"2682":6,"2683":2,"2684":2,"2685":2,"2686":5,"2687":8,"2688":5,"2689":7,"2690":2,"2691":7,"2692":5,"2693":10,"2694":8,"2695":5,"2696":7,"2697":9,"2698":9,"2699":10,"2700":7,"2701":7,"2702":7,"2703":2,"2704":7,"2705":7,"2706":7,"2707":7,"2708":5,"2709":5,"2710":4,"2711":5,"2712":5,"2713":7,"2714":8,"2715":9,"2716":7,"2717":9,"2718":2,"2719":1,"2720":1,"2721":7,"2722":8,"2723":7,"2724":7,"2725":9,"2726":8,"2727":2,"2728":6,"2729":9,"2730":7,"2731":3,"2732":9,"2733":7,"2734":1,"2735":5,"2736":9,"2737":7,"2738":2,"2739":8,"2740":9,"2741":9,"2742":7,"2743":7,"2744":9,"2745":2,"2746":7,"2747":5,"2748":5,"2749":2,"2750":1,"2751":2,"2752":7,"2753":8,"2754":1,"2755":10,"2756":9,"2757":8,"2758":7,"2759":5,"2760":1,"2761":6,"2762":8,"2763":6,"2764":1,"2765":7,"2766":7,"2767":3,"2768":5,"2769":9,"2770":5,"2771":10,"2772":7,"2773":8,"2774":8,"2775":9,"2776":6,"2777":2,"2778":9,"2779":1,"2780":6,"2781":8,"2782":4,"2783":7,"2784":2,"2785":8,"2786":9,"2787":8,"2788":4,"2789":6,"2790":2,"2791":5,"2792":10,"2793":7,"2794":5,"2795":5,"2796":9,"2797":3,"2798":7,"2799":4,"2800":9,"2801":9,"2802":1,"2803":8,"2804":2,"2805":8,"2806":10,"2807":10,"2808":1,"2809":9,"2810":7,"2811":2,"2812":5,"2813":9,"2814":3,"2815":9,"2816":9,"2817":3,"2818":8,"2819":2,"2820":9,"2821":7,"2822":4,"2823":7,"2824":2,"2825":4,"2826":8,"2827":7,"2828":9,"2829":8,"2830":10,"2831":2,"2832":4,"2833":8,"2834":7,"2835":9,"2836":9,"2837":6,"2838":8,"2839":10,"2840":1,"2841":2,"2842":9,"2843":5,"2844":1,"2845":8,"2846":7,"2847":9,"2848":9,"2849":3,"2850":3,"2851":7,"2852":10,"2853":7,"2854":7,"2855":9,"2856":2,"2857":1,"2858":1,"2859":7,"2860":8,"2861":8,"2862":5,"2863":6,"2864":9,"2865":8,"2866":10,"2867":1,"2868":9,"2869":3,"2870":9,"2871":8,"2872":7,"2873":8,"2874":8,"2875":7,"2876":8,"2877":7,"2878":7,"2879":4,"2880":1,"2881":9,"2882":9,"2883":7,"2884":9,"2885":3,"2886":8,"2887":7,"2888":7,"2889":2,"2890":2,"2891":9,"2892":8,"2893":3,"2894":7,"2895":2,"2896":8,"2897":1,"2898":10,"2899":2,"2900":4,"2901":3,"2902":4,"2903":8,"2904":8,"2905":9,"2906":2,"2907":1,"2908":9,"2909":3,"2910":5,"2911":10,"2912":8,"2913":8,"2914":8,"2915":9,"2916":9,"2917":4,"2918":5,"2919":7,"2920":9,"2921":9,"2922":8,"2923":6,"2924":8,"2925":9,"2926":8,"2927":10,"2928":9,"2929":6,"2930":9,"2931":8,"2932":8,"2933":5,"2934":9,"2935":3,"2936":9,"2937":8,"2938":8,"2939":5,"2940":6,"2941":7,"2942":9,"2943":3,"2944":7,"2945":5,"2946":4,"2947":7,"2948":8,"2949":8,"2950":8,"2951":8,"2952":9,"2953":8,"2954":3,"2955":7,"2956":8,"2957":9,"2958":7,"2959":7,"2960":1,"2961":7,"2962":9,"2963":10,"2964":7,"2965":2,"2966":4,"2967":7,"2968":9,"2969":5,"2970":8,"2971":8,"2972":8,"2973":9,"2974":9,"2975":7,"2976":9,"2977":3,"2978":9,"2979":7,"2980":10,"2981":9,"2982":5,"2983":5,"2984":5,"2985":2,"2986":9,"2987":10,"2988":7,"2989":5,"2990":7,"2991":7,"2992":7,"2993":4,"2994":5,"2995":9,"2996":2,"2997":8,"2998":7,"2999":5,"3000":8,"3001":7,"3002":8,"3003":1,"3004":9,"3005":7,"3006":7,"3007":2,"3008":7,"3009":4,"3010":8,"3011":9,"3012":9,"3013":7,"3014":1,"3015":1,"3016":9,"3017":4,"3018":8,"3019":5,"3020":9,"3021":1,"3022":4,"3023":8,"3024":10,"3025":2,"3026":7,"3027":2,"3028":5,"3029":2,"3030":2,"3031":7,"3032":8,"3033":10,"3034":4,"3035":4,"3036":9,"3037":3,"3038":7,"3039":2,"3040":1,"3041":8,"3042":7,"3043":7,"3044":9,"3045":8,"3046":7,"3047":5,"3048":1,"3049":1,"3050":5,"3051":8,"3052":3,"3053":2,"3054":7,"3055":7,"3056":7,"3057":7,"3058":2,"3059":6,"3060":2,"3061":7,"3062":9,"3063":8,"3064":2,"3065":7,"3066":8,"3067":9,"3068":6,"3069":9,"3070":7,"3071":9,"3072":9,"3073":8,"3074":9,"3075":5,"3076":2,"3077":2,"3078":10,"3079":8,"3080":1,"3081":2,"3082":9,"3083":2,"3084":9,"3085":5,"3086":5,"3087":2,"3088":5,"3089":7,"3090":8,"3091":6,"3092":9,"3093":8,"3094":1,"3095":8,"3096":2,"3097":10,"3098":8,"3099":7,"3100":2,"3101":7,"3102":8,"3103":9,"3104":4,"3105":10,"3106":1,"3107":9,"3108":2,"3109":7,"3110":9,"3111":5,"3112":8,"3113":4,"3114":2,"3115":8,"3116":7,"3117":8,"3118":2,"3119":7,"3120":7,"3121":4,"3122":9,"3123":2,"3124":8,"3125":5,"3126":5,"3127":7,"3128":2,"3129":8,"3130":8,"3131":3,"3132":9,"3133":8,"3134":7,"3135":6,"3136":1,"3137":3,"3138":5,"3139":7,"3140":7,"3141":7,"3142":4,"3143":4,"3144":5,"3145":8,"3146":9,"3147":7,"3148":2,"3149":5,"3150":2,"3151":4,"3152":9,"3153":5,"3154":7,"3155":2,"3156":1,"3157":4,"3158":1,"3159":7,"3160":8,"3161":4,"3162":6,"3163":7,"3164":9,"3165":6,"3166":7,"3167":2,"3168":7,"3169":9,"3170":10,"3171":3,"3172":8,"3173":2,"3174":8,"3175":8,"3176":7,"3177":3,"3178":8,"3179":7,"3180":4,"3181":8,"3182":5,"3183":8,"3184":9,"3185":2,"3186":6,"3187":8,"3188":5,"3189":8,"3190":5,"3191":4,"3192":9,"3193":8,"3194":8,"3195":4,"3196":3,"3197":2,"3198":6,"3199":5,"3200":7,"3201":1,"3202":5,"3203":2,"3204":7,"3205":2,"3206":8,"3207":1,"3208":3,"3209":7,"3210":8,"3211":7,"3212":1,"3213":9,"3214":7,"3215":7,"3216":2,"3217":5,"3218":8,"3219":3,"3220":7,"3221":5,"3222":2,"3223":6,"3224":7,"3225":8,"3226":3,"3227":5,"3228":5,"3229":9,"3230":9,"3231":1,"3232":4,"3233":2,"3234":9,"3235":5,"3236":8,"3237":6,"3238":9,"3239":4,"3240":8,"3241":8,"3242":6,"3243":1,"3244":8,"3245":1,"3246":9,"3247":5,"3248":9,"3249":2,"3250":7,"3251":8,"3252":8,"3253":8,"3254":3,"3255":9,"3256":7,"3257":3,"3258":8,"3259":9,"3260":7,"3261":1,"3262":1,"3263":3,"3264":6,"3265":9,"3266":6,"3267":7,"3268":5,"3269":2,"3270":8,"3271":7,"3272":8,"3273":5,"3274":2,"3275":2,"3276":3,"3277":5,"3278":7,"3279":9,"3280":7,"3281":8,"3282":8,"3283":7,"3284":5,"3285":7,"3286":8,"3287":6,"3288":7,"3289":8,"3290":1,"3291":7,"3292":3,"3293":6,"3294":9,"3295":5,"3296":2,"3297":4,"3298":4,"3299":3,"3300":4,"3301":2,"3302":9,"3303":9,"3304":7,"3305":7,"3306":5,"3307":10,"3308":4,"3309":9,"3310":8,"3311":7,"3312":8,"3313":7,"3314":5,"3315":5,"3316":8,"3317":9,"3318":7,"3319":5,"3320":5,"3321":7,"3322":9,"3323":8,"3324":5,"3325":9,"3326":9,"3327":1,"3328":9,"3329":9,"3330":5,"3331":2,"3332":8,"3333":7,"3334":8,"3335":9,"3336":6,"3337":9,"3338":2,"3339":3,"3340":9,"3341":10,"3342":3,"3343":8,"3344":10,"3345":8,"3346":2,"3347":5,"3348":3,"3349":1,"3350":9,"3351":8,"3352":2,"3353":1,"3354":8,"3355":3,"3356":8,"3357":8,"3358":6,"3359":8,"3360":1,"3361":3,"3362":9,"3363":8,"3364":10,"3365":4,"3366":5,"3367":5,"3368":7,"3369":10,"3370":8,"3371":3,"3372":8,"3373":9,"3374":6,"3375":10,"3376":9,"3377":9,"3378":8,"3379":5,"3380":7,"3381":10,"3382":8,"3383":4,"3384":10,"3385":3,"3386":9,"3387":8,"3388":1,"3389":3,"3390":2,"3391":8,"3392":4,"3393":4,"3394":8,"3395":4,"3396":8,"3397":8,"3398":5,"3399":5,"3400":7,"3401":8,"3402":1,"3403":3,"3404":6,"3405":10,"3406":8,"3407":3,"3408":8,"3409":5,"3410":4,"3411":7,"3412":2,"3413":7,"3414":9,"3415":3,"3416":4,"3417":3,"3418":9,"3419":7,"3420":4,"3421":1,"3422":8,"3423":7,"3424":8,"3425":2,"3426":3,"3427":10,"3428":8,"3429":10,"3430":1,"3431":8,"3432":8,"3433":7,"3434":2,"3435":7,"3436":2,"3437":4,"3438":8,"3439":4,"3440":7,"3441":9,"3442":7,"3443":9,"3444":9,"3445":5,"3446":9,"3447":10,"3448":5,"3449":8,"3450":7,"3451":6,"3452":7,"3453":9,"3454":6,"3455":5,"3456":7,"3457":7,"3458":8,"3459":9,"3460":7,"3461":8,"3462":10,"3463":5,"3464":10,"3465":5,"3466":9,"3467":7,"3468":7,"3469":8,"3470":7,"3471":7,"3472":6,"3473":7,"3474":7,"3475":8,"3476":8,"3477":3,"3478":5,"3479":8,"3480":1,"3481":10,"3482":8,"3483":7,"3484":3,"3485":8,"3486":3,"3487":10,"3488":7,"3489":10,"3490":9,"3491":2,"3492":2,"3493":6,"3494":8,"3495":5,"3496":1,"3497":3,"3498":2,"3499":8,"3500":7,"3501":10,"3502":8,"3503":7,"3504":8,"3505":8,"3506":9,"3507":9,"3508":1,"3509":10,"3510":4,"3511":7,"3512":9,"3513":9,"3514":8,"3515":6,"3516":5,"3517":2,"3518":10,"3519":7,"3520":9,"3521":7,"3522":9,"3523":1,"3524":8,"3525":7,"3526":8,"3527":8,"3528":8,"3529":9,"3530":9,"3531":7,"3532":1,"3533":7,"3534":7,"3535":5,"3536":2,"3537":8,"3538":2,"3539":7,"3540":8,"3541":9,"3542":9,"3543":7,"3544":7,"3545":2,"3546":7,"3547":9,"3548":3,"3549":8,"3550":7,"3551":8,"3552":8,"3553":5,"3554":7,"3555":8,"3556":2,"3557":5,"3558":2,"3559":7,"3560":5,"3561":5,"3562":8,"3563":10,"3564":8,"3565":9,"3566":8,"3567":6,"3568":4,"3569":6,"3570":3,"3571":2,"3572":2,"3573":2,"3574":8,"3575":6,"3576":3,"3577":7,"3578":10,"3579":8,"3580":10,"3581":7,"3582":8,"3583":9,"3584":2,"3585":7,"3586":6,"3587":7,"3588":5,"3589":2,"3590":8,"3591":8,"3592":8,"3593":2,"3594":7,"3595":3,"3596":7,"3597":9,"3598":9,"3599":8,"3600":7,"3601":7,"3602":8,"3603":1,"3604":4,"3605":3,"3606":2,"3607":6,"3608":7,"3609":2,"3610":9,"3611":10,"3612":8,"3613":8,"3614":9,"3615":2,"3616":7,"3617":1,"3618":5,"3619":1,"3620":7,"3621":10,"3622":7,"3623":5,"3624":7,"3625":8,"3626":5,"3627":10,"3628":2,"3629":2,"3630":9,"3631":2,"3632":8,"3633":2,"3634":6,"3635":2,"3636":6,"3637":8,"3638":7,"3639":2,"3640":1,"3641":2,"3642":5,"3643":5,"3644":8,"3645":7,"3646":2,"3647":9,"3648":1,"3649":9,"3650":6,"3651":3,"3652":6,"3653":5,"3654":9,"3655":8,"3656":5,"3657":5,"3658":8,"3659":2,"3660":9,"3661":9,"3662":9,"3663":5,"3664":4,"3665":9,"3666":9,"3667":5,"3668":2,"3669":7,"3670":1,"3671":2,"3672":7,"3673":1,"3674":5,"3675":5,"3676":7,"3677":5,"3678":5,"3679":7,"3680":2,"3681":8,"3682":8,"3683":8,"3684":3,"3685":8,"3686":2,"3687":7,"3688":10,"3689":10,"3690":8,"3691":7,"3692":7,"3693":7,"3694":8,"3695":7,"3696":6,"3697":1,"3698":7,"3699":3,"3700":7,"3701":3,"3702":7,"3703":9,"3704":2,"3705":2,"3706":8,"3707":9,"3708":7,"3709":8,"3710":2,"3711":5,"3712":8,"3713":8,"3714":8,"3715":1,"3716":7,"3717":1,"3718":8,"3719":3,"3720":9,"3721":7,"3722":7,"3723":2,"3724":9,"3725":2,"3726":4,"3727":9,"3728":5,"3729":10,"3730":5,"3731":2,"3732":10,"3733":7,"3734":2,"3735":9,"3736":7,"3737":8,"3738":7,"3739":1,"3740":9,"3741":8,"3742":5,"3743":7,"3744":7,"3745":2,"3746":8,"3747":5,"3748":7,"3749":7,"3750":2,"3751":7,"3752":4,"3753":5,"3754":7,"3755":6,"3756":7,"3757":2,"3758":2,"3759":2,"3760":8,"3761":7,"3762":5,"3763":8,"3764":4,"3765":6,"3766":8,"3767":7,"3768":9,"3769":8,"3770":8,"3771":2,"3772":5,"3773":4,"3774":8,"3775":8,"3776":5,"3777":9,"3778":4,"3779":1,"3780":9,"3781":7,"3782":7,"3783":7,"3784":2,"3785":1,"3786":8,"3787":3,"3788":4,"3789":7,"3790":9,"3791":7,"3792":7,"3793":9,"3794":2,"3795":7,"3796":1,"3797":9,"3798":8,"3799":7,"3800":7,"3801":5,"3802":6,"3803":1,"3804":8,"3805":8,"3806":8,"3807":5,"3808":5,"3809":9,"3810":10,"3811":8,"3812":1,"3813":7,"3814":2,"3815":10,"3816":5,"3817":9,"3818":2,"3819":6,"3820":9,"3821":8,"3822":2,"3823":7,"3824":6,"3825":7,"3826":7,"3827":4,"3828":5,"3829":4,"3830":7,"3831":5,"3832":8,"3833":8,"3834":7,"3835":6,"3836":9,"3837":3,"3838":8,"3839":2,"3840":6,"3841":8,"3842":9,"3843":2,"3844":7,"3845":2,"3846":6,"3847":2,"3848":9,"3849":6,"3850":7,"3851":6,"3852":5,"3853":1,"3854":4,"3855":8,"3856":3,"3857":4,"3858":5,"3859":9,"3860":7,"3861":7,"3862":9,"3863":3,"3864":7,"3865":1,"3866":8,"3867":9,"3868":6,"3869":8,"3870":1,"3871":8,"3872":7,"3873":7,"3874":10,"3875":9,"3876":8,"3877":8,"3878":8,"3879":7,"3880":9,"3881":8,"3882":10,"3883":8,"3884":2,"3885":5,"3886":8,"3887":9,"3888":5,"3889":9,"3890":7,"3891":3,"3892":9,"3893":7,"3894":7,"3895":6,"3896":7,"3897":2,"3898":9,"3899":8,"3900":7,"3901":9,"3902":1,"3903":2,"3904":3,"3905":9,"3906":9,"3907":10,"3908":2,"3909":4,"3910":2,"3911":9,"3912":6,"3913":9,"3914":7,"3915":7,"3916":4,"3917":3,"3918":8,"3919":5,"3920":5,"3921":9,"3922":6,"3923":2,"3924":6,"3925":7,"3926":5,"3927":8,"3928":4,"3929":2,"3930":1,"3931":1,"3932":1,"3933":9,"3934":7,"3935":8,"3936":8,"3937":8,"3938":7,"3939":7,"3940":6,"3941":5,"3942":6,"3943":9,"3944":8,"3945":7,"3946":8,"3947":8,"3948":6,"3949":7,"3950":8,"3951":10,"3952":7,"3953":9,"3954":2,"3955":2,"3956":2,"3957":5,"3958":8,"3959":9,"3960":7,"3961":9,"3962":2,"3963":10,"3964":9,"3965":5,"3966":8,"3967":5,"3968":7,"3969":8,"3970":4,"3971":1,"3972":5,"3973":8,"3974":8,"3975":5,"3976":7,"3977":7,"3978":9,"3979":10,"3980":9,"3981":3,"3982":8,"3983":2,"3984":8,"3985":5,"3986":3,"3987":5,"3988":8,"3989":2,"3990":1,"3991":9,"3992":4,"3993":9,"3994":8,"3995":2,"3996":3,"3997":9,"3998":7,"3999":8,"4000":9,"4001":3,"4002":10,"4003":1,"4004":9,"4005":7,"4006":9,"4007":1,"4008":8,"4009":8,"4010":7,"4011":9,"4012":8,"4013":7,"4014":8,"4015":5,"4016":2,"4017":8,"4018":2,"4019":1,"4020":6,"4021":1,"4022":8,"4023":7,"4024":6,"4025":7,"4026":9,"4027":10,"4028":9,"4029":1,"4030":5,"4031":2,"4032":2,"4033":8,"4034":9,"4035":5,"4036":9,"4037":7,"4038":6,"4039":6,"4040":7,"4041":4,"4042":5,"4043":7,"4044":7,"4045":1,"4046":9,"4047":6,"4048":7,"4049":2,"4050":9,"4051":3,"4052":2,"4053":9,"4054":5,"4055":8,"4056":7,"4057":7,"4058":2,"4059":9,"4060":6,"4061":2,"4062":7,"4063":9,"4064":9,"4065":1,"4066":1,"4067":5,"4068":5,"4069":9,"4070":1,"4071":8,"4072":8,"4073":6,"4074":3,"4075":6,"4076":6,"4077":5,"4078":3,"4079":7,"4080":7,"4081":9,"4082":2,"4083":8,"4084":5,"4085":2,"4086":8,"4087":6,"4088":3,"4089":2,"4090":10,"4091":7,"4092":9,"4093":9,"4094":7,"4095":8,"4096":2,"4097":8,"4098":2,"4099":9,"4100":9,"4101":8,"4102":9,"4103":4,"4104":7,"4105":7,"4106":7,"4107":4,"4108":5,"4109":8,"4110":7,"4111":8,"4112":3,"4113":7,"4114":9,"4115":2,"4116":2,"4117":5,"4118":7,"4119":8,"4120":7,"4121":1,"4122":1,"4123":8,"4124":9,"4125":7,"4126":8,"4127":8,"4128":9,"4129":9,"4130":8,"4131":7,"4132":9,"4133":7,"4134":5,"4135":5,"4136":2,"4137":2,"4138":8,"4139":10,"4140":7,"4141":8,"4142":5,"4143":7,"4144":7,"4145":7,"4146":8,"4147":9,"4148":7,"4149":4,"4150":9,"4151":7,"4152":7,"4153":8,"4154":9,"4155":8,"4156":6,"4157":7,"4158":8,"4159":7,"4160":8,"4161":9,"4162":9,"4163":8,"4164":2,"4165":2,"4166":5,"4167":8,"4168":1,"4169":4,"4170":4,"4171":2,"4172":1,"4173":8,"4174":9,"4175":9,"4176":7,"4177":5,"4178":8,"4179":9,"4180":8,"4181":8,"4182":8,"4183":8,"4184":1,"4185":7,"4186":8,"4187":5,"4188":8,"4189":1,"4190":7,"4191":8,"4192":5,"4193":8,"4194":8,"4195":5,"4196":5,"4197":7,"4198":5,"4199":6,"4200":1,"4201":10,"4202":8,"4203":6,"4204":4,"4205":7,"4206":2,"4207":2,"4208":1,"4209":10,"4210":3,"4211":5,"4212":5,"4213":9,"4214":10,"4215":8,"4216":3,"4217":6,"4218":8,"4219":2,"4220":1,"4221":1,"4222":7,"4223":4,"4224":6,"4225":9,"4226":7,"4227":8,"4228":10,"4229":8,"4230":9,"4231":4,"4232":6,"4233":7,"4234":5,"4235":7,"4236":6,"4237":7,"4238":3,"4239":2,"4240":8,"4241":8,"4242":6,"4243":8,"4244":7,"4245":2,"4246":7,"4247":9,"4248":8,"4249":6,"4250":9,"4251":9,"4252":9,"4253":5,"4254":2,"4255":8,"4256":7,"4257":8,"4258":9,"4259":2,"4260":8,"4261":7,"4262":10,"4263":7,"4264":9,"4265":5,"4266":2,"4267":9,"4268":7,"4269":8,"4270":8,"4271":7,"4272":5,"4273":2,"4274":5,"4275":6,"4276":9,"4277":2,"4278":8,"4279":8,"4280":9,"4281":2,"4282":2,"4283":7,"4284":5,"4285":3,"4286":10,"4287":7,"4288":5,"4289":7,"4290":5,"4291":7,"4292":7,"4293":3,"4294":7,"4295":9,"4296":6,"4297":6,"4298":9,"4299":7,"4300":7,"4301":9,"4302":5,"4303":9,"4304":9,"4305":7,"4306":6,"4307":8,"4308":8,"4309":8,"4310":4,"4311":7,"4312":8,"4313":9,"4314":6,"4315":8,"4316":8,"4317":4,"4318":3,"4319":7,"4320":9,"4321":10,"4322":5,"4323":5,"4324":10,"4325":7,"4326":7,"4327":7,"4328":9,"4329":7,"4330":8,"4331":9,"4332":7,"4333":8,"4334":7,"4335":9,"4336":10,"4337":9,"4338":9,"4339":6,"4340":4,"4341":7,"4342":9,"4343":2,"4344":5,"4345":9,"4346":6,"4347":8,"4348":7,"4349":8,"4350":5,"4351":6,"4352":2,"4353":8,"4354":7,"4355":3,"4356":2,"4357":2,"4358":8,"4359":5,"4360":2,"4361":7,"4362":10,"4363":8,"4364":8,"4365":8,"4366":5,"4367":8,"4368":8,"4369":5,"4370":9,"4371":1,"4372":8,"4373":1,"4374":8,"4375":6,"4376":2,"4377":1,"4378":4,"4379":1,"4380":9,"4381":2,"4382":2,"4383":9,"4384":8,"4385":7,"4386":7,"4387":1,"4388":8,"4389":5,"4390":2,"4391":6,"4392":10,"4393":7,"4394":1,"4395":9,"4396":7,"4397":9,"4398":6,"4399":8,"4400":8,"4401":3,"4402":3,"4403":6,"4404":10,"4405":3,"4406":7,"4407":10,"4408":8,"4409":5,"4410":5,"4411":1,"4412":6,"4413":2,"4414":10,"4415":5,"4416":6,"4417":7,"4418":9,"4419":8,"4420":5,"4421":5,"4422":10,"4423":9,"4424":9,"4425":8,"4426":7,"4427":7,"4428":3,"4429":9,"4430":9,"4431":5,"4432":5,"4433":7,"4434":8,"4435":3,"4436":9,"4437":1,"4438":9,"4439":9,"4440":6,"4441":8,"4442":7,"4443":7,"4444":3,"4445":9,"4446":9,"4447":3,"4448":2,"4449":8,"4450":1,"4451":9,"4452":6,"4453":9,"4454":5,"4455":4,"4456":7,"4457":8,"4458":5,"4459":5,"4460":7,"4461":2,"4462":5,"4463":9,"4464":8,"4465":3,"4466":2,"4467":5,"4468":9,"4469":3,"4470":2,"4471":7,"4472":4,"4473":6,"4474":8,"4475":2,"4476":10,"4477":9,"4478":9,"4479":1,"4480":6,"4481":9,"4482":10,"4483":9,"4484":3,"4485":8,"4486":9,"4487":8,"4488":7,"4489":9,"4490":8,"4491":7,"4492":7,"4493":9,"4494":5,"4495":5,"4496":8,"4497":9,"4498":8,"4499":10,"4500":2,"4501":7,"4502":10,"4503":5,"4504":8,"4505":8,"4506":2,"4507":7,"4508":7,"4509":8,"4510":4,"4511":7,"4512":7,"4513":9,"4514":10,"4515":8,"4516":8,"4517":10,"4518":2,"4519":10,"4520":9,"4521":7,"4522":8,"4523":10,"4524":5,"4525":5,"4526":4,"4527":7,"4528":8,"4529":10,"4530":3,"4531":9,"4532":2,"4533":8,"4534":5,"4535":7,"4536":6,"4537":2,"4538":9,"4539":8,"4540":8,"4541":8,"4542":7,"4543":2,"4544":2,"4545":8,"4546":9,"4547":2,"4548":7,"4549":8,"4550":7,"4551":8,"4552":9,"4553":8,"4554":8,"4555":9,"4556":7,"4557":5,"4558":8,"4559":10,"4560":8,"4561":10,"4562":9,"4563":10,"4564":4,"4565":2,"4566":2,"4567":6,"4568":8,"4569":7,"4570":7,"4571":3,"4572":8,"4573":2,"4574":7,"4575":7,"4576":7,"4577":6,"4578":9,"4579":4,"4580":9,"4581":7,"4582":2,"4583":7,"4584":7,"4585":4,"4586":4,"4587":2,"4588":7,"4589":8,"4590":1,"4591":8,"4592":5,"4593":7,"4594":3,"4595":10,"4596":5,"4597":8,"4598":7,"4599":7,"4600":6,"4601":2,"4602":7,"4603":7,"4604":7,"4605":8,"4606":8,"4607":2,"4608":2,"4609":2,"4610":5,"4611":5,"4612":7,"4613":7,"4614":10,"4615":6,"4616":10,"4617":9,"4618":4,"4619":5,"4620":2,"4621":8,"4622":5,"4623":1,"4624":3,"4625":9,"4626":3,"4627":3,"4628":9,"4629":7,"4630":3,"4631":8,"4632":8,"4633":8,"4634":5,"4635":8,"4636":5,"4637":7,"4638":9,"4639":9,"4640":7,"4641":9,"4642":8,"4643":7,"4644":5,"4645":5,"4646":5,"4647":5,"4648":7,"4649":8,"4650":9,"4651":5,"4652":8,"4653":7,"4654":9,"4655":7,"4656":9,"4657":7,"4658":5,"4659":1,"4660":2,"4661":6,"4662":8,"4663":9,"4664":2,"4665":9,"4666":9,"4667":9,"4668":7,"4669":5,"4670":5,"4671":9,"4672":9,"4673":7,"4674":3,"4675":2,"4676":2,"4677":10,"4678":7,"4679":8,"4680":7,"4681":8,"4682":2,"4683":8,"4684":2,"4685":8,"4686":1,"4687":8,"4688":8,"4689":7,"4690":2,"4691":9,"4692":8,"4693":8,"4694":6,"4695":5,"4696":5,"4697":8,"4698":5,"4699":8,"4700":8,"4701":3,"4702":3,"4703":7,"4704":8,"4705":7,"4706":8,"4707":8,"4708":7,"4709":7,"4710":5,"4711":8,"4712":9,"4713":2,"4714":7,"4715":2,"4716":9,"4717":9,"4718":10,"4719":2,"4720":5,"4721":2,"4722":8,"4723":5,"4724":2,"4725":9,"4726":8,"4727":7,"4728":2,"4729":9,"4730":7,"4731":5,"4732":9,"4733":10,"4734":2,"4735":7,"4736":7,"4737":3,"4738":7,"4739":7,"4740":5,"4741":2,"4742":2,"4743":8,"4744":6,"4745":5,"4746":7,"4747":8,"4748":9,"4749":9,"4750":8,"4751":3,"4752":8,"4753":1,"4754":5,"4755":2,"4756":4,"4757":7,"4758":9,"4759":5,"4760":5,"4761":7,"4762":5,"4763":4,"4764":8,"4765":4,"4766":9,"4767":7,"4768":7,"4769":7,"4770":6,"4771":9,"4772":5,"4773":4,"4774":4,"4775":9,"4776":9,"4777":3,"4778":8,"4779":6,"4780":1,"4781":7,"4782":1,"4783":8,"4784":5,"4785":7,"4786":10,"4787":8,"4788":10,"4789":2,"4790":7,"4791":3,"4792":5,"4793":9,"4794":9,"4795":9,"4796":5,"4797":7,"4798":4,"4799":8,"4800":7,"4801":2,"4802":2,"4803":5,"4804":9,"4805":8,"4806":8,"4807":5,"4808":6,"4809":7,"4810":7,"4811":10,"4812":5,"4813":6,"4814":10,"4815":8,"4816":3,"4817":6,"4818":8,"4819":3,"4820":3,"4821":7,"4822":5,"4823":7,"4824":2,"4825":7,"4826":8,"4827":7,"4828":8,"4829":9,"4830":8,"4831":7,"4832":2,"4833":1,"4834":8,"4835":8,"4836":8,"4837":7,"4838":8,"4839":1,"4840":8,"4841":8,"4842":8,"4843":7,"4844":8,"4845":1,"4846":5,"4847":4,"4848":2,"4849":5,"4850":7,"4851":8,"4852":9,"4853":9,"4854":5,"4855":5,"4856":9,"4857":4,"4858":7,"4859":6,"4860":8,"4861":7,"4862":9,"4863":10,"4864":8,"4865":9,"4866":8,"4867":8,"4868":2,"4869":3,"4870":4,"4871":7,"4872":9,"4873":8,"4874":10,"4875":4,"4876":6,"4877":3,"4878":9,"4879":8,"4880":4,"4881":7,"4882":7,"4883":8,"4884":10,"4885":9,"4886":9,"4887":8,"4888":8,"4889":5,"4890":7,"4891":9,"4892":8,"4893":8,"4894":8,"4895":9,"4896":9,"4897":8,"4898":6,"4899":7,"4900":4,"4901":7,"4902":2,"4903":9,"4904":7,"4905":2,"4906":8,"4907":5,"4908":8,"4909":9,"4910":9,"4911":7,"4912":2,"4913":1,"4914":9,"4915":2,"4916":1,"4917":9,"4918":8,"4919":7,"4920":7,"4921":8,"4922":5,"4923":3,"4924":3,"4925":10,"4926":8,"4927":4,"4928":9,"4929":9,"4930":7,"4931":8,"4932":5,"4933":5,"4934":7,"4935":8,"4936":5,"4937":3,"4938":7,"4939":8,"4940":3,"4941":9,"4942":8,"4943":8,"4944":2,"4945":2,"4946":8,"4947":8,"4948":1,"4949":8,"4950":3,"4951":8,"4952":5,"4953":2,"4954":2,"4955":5,"4956":7,"4957":4,"4958":8,"4959":1,"4960":7,"4961":2,"4962":10,"4963":9,"4964":10,"4965":8,"4966":8,"4967":5,"4968":8,"4969":4,"4970":5,"4971":8,"4972":6,"4973":9,"4974":2,"4975":7,"4976":7,"4977":1,"4978":7,"4979":7,"4980":7,"4981":8,"4982":3,"4983":8,"4984":8,"4985":5,"4986":9,"4987":7,"4988":7,"4989":6,"4990":4,"4991":6,"4992":9,"4993":5,"4994":8,"4995":7,"4996":1,"4997":7,"4998":9,"4999":10,"5000":9,"5001":7,"5002":7,"5003":3,"5004":8,"5005":7,"5006":1,"5007":7,"5008":7,"5009":4,"5010":9,"5011":5,"5012":8,"5013":7,"5014":3,"5015":9,"5016":7,"5017":1,"5018":4,"5019":8,"5020":8,"5021":7,"5022":8,"5023":4,"5024":10,"5025":9,"5026":9,"5027":2,"5028":7,"5029":9,"5030":3,"5031":7,"5032":6,"5033":3,"5034":5,"5035":8,"5036":1,"5037":4,"5038":7,"5039":7,"5040":5,"5041":5,"5042":3,"5043":6,"5044":2,"5045":6,"5046":2,"5047":7,"5048":8,"5049":1,"5050":7,"5051":5,"5052":9,"5053":4,"5054":9,"5055":7,"5056":8,"5057":2,"5058":8,"5059":7,"5060":3,"5061":5,"5062":1,"5063":8,"5064":10,"5065":7,"5066":8,"5067":3,"5068":3,"5069":4,"5070":9,"5071":10,"5072":2,"5073":1,"5074":7,"5075":7,"5076":8,"5077":7,"5078":7,"5079":7,"5080":9,"5081":7,"5082":4,"5083":2,"5084":9,"5085":7,"5086":6,"5087":5,"5088":9,"5089":9,"5090":8,"5091":1,"5092":8,"5093":3,"5094":2,"5095":5,"5096":3,"5097":2,"5098":5,"5099":8,"5100":6,"5101":5,"5102":5,"5103":9,"5104":9,"5105":3,"5106":6,"5107":6,"5108":8,"5109":9,"5110":5,"5111":6,"5112":10,"5113":4,"5114":7,"5115":8,"5116":8,"5117":9,"5118":10,"5119":9,"5120":7,"5121":9,"5122":5,"5123":2,"5124":7,"5125":9,"5126":8,"5127":2,"5128":10,"5129":9,"5130":1,"5131":7,"5132":8,"5133":1,"5134":8,"5135":8,"5136":4,"5137":7,"5138":6,"5139":4,"5140":4,"5141":5,"5142":8,"5143":1,"5144":7,"5145":2,"5146":7,"5147":7,"5148":2,"5149":2,"5150":7,"5151":8,"5152":7,"5153":3,"5154":8,"5155":1,"5156":8,"5157":7,"5158":9,"5159":7,"5160":9,"5161":5,"5162":10,"5163":10,"5164":9,"5165":7,"5166":7,"5167":4,"5168":6,"5169":9,"5170":5,"5171":5,"5172":9,"5173":8,"5174":1,"5175":9,"5176":9,"5177":6,"5178":10,"5179":9,"5180":3,"5181":9,"5182":7,"5183":8,"5184":9,"5185":8,"5186":8,"5187":4,"5188":10,"5189":2,"5190":2,"5191":8,"5192":2,"5193":1,"5194":7,"5195":4,"5196":9,"5197":7,"5198":9,"5199":5,"5200":2,"5201":1,"5202":6,"5203":10,"5204":8,"5205":9,"5206":8,"5207":6,"5208":7,"5209":8,"5210":6,"5211":5,"5212":8,"5213":7,"5214":2,"5215":8,"5216":3,"5217":9,"5218":8,"5219":7,"5220":9,"5221":5,"5222":2,"5223":1,"5224":6,"5225":10,"5226":4,"5227":9,"5228":4,"5229":3,"5230":8,"5231":5,"5232":9,"5233":4,"5234":2,"5235":2,"5236":5,"5237":7,"5238":2,"5239":5,"5240":4,"5241":5,"5242":8,"5243":9,"5244":5,"5245":7,"5246":2,"5247":9,"5248":2,"5249":5,"5250":9,"5251":9,"5252":3,"5253":4,"5254":8,"5255":9,"5256":7,"5257":3,"5258":7,"5259":1,"5260":4,"5261":8,"5262":9,"5263":9,"5264":6,"5265":7,"5266":9,"5267":1,"5268":8,"5269":9,"5270":7,"5271":7,"5272":8,"5273":4,"5274":9,"5275":7,"5276":5,"5277":5,"5278":7,"5279":4,"5280":8,"5281":2,"5282":10,"5283":7,"5284":9,"5285":9,"5286":9,"5287":5,"5288":9,"5289":8,"5290":8,"5291":8,"5292":9,"5293":2,"5294":6,"5295":9,"5296":3,"5297":8,"5298":3,"5299":8,"5300":9,"5301":2,"5302":8,"5303":2,"5304":3,"5305":9,"5306":9,"5307":8,"5308":4,"5309":7,"5310":8,"5311":9,"5312":10,"5313":7,"5314":7,"5315":8,"5316":5,"5317":7,"5318":8,"5319":4,"5320":1,"5321":10,"5322":1,"5323":1,"5324":7,"5325":9,"5326":7,"5327":7,"5328":9,"5329":1,"5330":3,"5331":8,"5332":9,"5333":7,"5334":2,"5335":3,"5336":5,"5337":6,"5338":5,"5339":7,"5340":2,"5341":9,"5342":9,"5343":7,"5344":9,"5345":10,"5346":5,"5347":7,"5348":3,"5349":2,"5350":7,"5351":7,"5352":9,"5353":9,"5354":1,"5355":7,"5356":7,"5357":7,"5358":5,"5359":7,"5360":8,"5361":7,"5362":8,"5363":5,"5364":8,"5365":5,"5366":2,"5367":9,"5368":8,"5369":5,"5370":10,"5371":2,"5372":9,"5373":7,"5374":7,"5375":9,"5376":9,"5377":9,"5378":2,"5379":10,"5380":7,"5381":7,"5382":5,"5383":9,"5384":8,"5385":7,"5386":7,"5387":7,"5388":3,"5389":7,"5390":9,"5391":7,"5392":9,"5393":7,"5394":4,"5395":5,"5396":3,"5397":9,"5398":5,"5399":7,"5400":9,"5401":8,"5402":5,"5403":8,"5404":8,"5405":10,"5406":2,"5407":9,"5408":10,"5409":3,"5410":4,"5411":8,"5412":6,"5413":2,"5414":1,"5415":7,"5416":7,"5417":2,"5418":4,"5419":3,"5420":7,"5421":1,"5422":3,"5423":5,"5424":8,"5425":9,"5426":6,"5427":8,"5428":1,"5429":6,"5430":5,"5431":7,"5432":7,"5433":7,"5434":9,"5435":9,"5436":2,"5437":3,"5438":1,"5439":1,"5440":3,"5441":8,"5442":8,"5443":7,"5444":10,"5445":8,"5446":3,"5447":7,"5448":8,"5449":8,"5450":7,"5451":9,"5452":4,"5453":3,"5454":8,"5455":8,"5456":3,"5457":9,"5458":7,"5459":8,"5460":9,"5461":8,"5462":7,"5463":8,"5464":3,"5465":10,"5466":3,"5467":2,"5468":8,"5469":5,"5470":4,"5471":4,"5472":8,"5473":3,"5474":8,"5475":1,"5476":5,"5477":5,"5478":7,"5479":9,"5480":10,"5481":2,"5482":7,"5483":8,"5484":9,"5485":8,"5486":10,"5487":10,"5488":9,"5489":8,"5490":3,"5491":9,"5492":8,"5493":2,"5494":8,"5495":7,"5496":9,"5497":10,"5498":9,"5499":4,"5500":1,"5501":2,"5502":7,"5503":5,"5504":9,"5505":7,"5506":8,"5507":2,"5508":7,"5509":9,"5510":7,"5511":2,"5512":2,"5513":4,"5514":9,"5515":7,"5516":5,"5517":7,"5518":8,"5519":5,"5520":5,"5521":9,"5522":1,"5523":8,"5524":5,"5525":5,"5526":5,"5527":8,"5528":3,"5529":8,"5530":8,"5531":2,"5532":7,"5533":7,"5534":7,"5535":8,"5536":8,"5537":7,"5538":3,"5539":8,"5540":9,"5541":10,"5542":8,"5543":8,"5544":6,"5545":7,"5546":8,"5547":3,"5548":8,"5549":4,"5550":10,"5551":10,"5552":8,"5553":9,"5554":7,"5555":9,"5556":10,"5557":7,"5558":7,"5559":2,"5560":6,"5561":9,"5562":8,"5563":5,"5564":8,"5565":9,"5566":8,"5567":4,"5568":9,"5569":8,"5570":7,"5571":3,"5572":3,"5573":9,"5574":2,"5575":9,"5576":7,"5577":9,"5578":6,"5579":5,"5580":5,"5581":8,"5582":9,"5583":9,"5584":6,"5585":7,"5586":7,"5587":6,"5588":6,"5589":7,"5590":5,"5591":7,"5592":2,"5593":5,"5594":8,"5595":7,"5596":8,"5597":2,"5598":10,"5599":8,"5600":8,"5601":5,"5602":8,"5603":8,"5604":7,"5605":2,"5606":7,"5607":5,"5608":4,"5609":9,"5610":9,"5611":9,"5612":7,"5613":9,"5614":1,"5615":2,"5616":8,"5617":7,"5618":7,"5619":3,"5620":7,"5621":5,"5622":9,"5623":8,"5624":8,"5625":8,"5626":2,"5627":1,"5628":10,"5629":9,"5630":3,"5631":8,"5632":5,"5633":10,"5634":9,"5635":7,"5636":2,"5637":9,"5638":9,"5639":9,"5640":5,"5641":5,"5642":10,"5643":9,"5644":3,"5645":6,"5646":7,"5647":5,"5648":8,"5649":4,"5650":4,"5651":2,"5652":2,"5653":3,"5654":7,"5655":7,"5656":8,"5657":8,"5658":9,"5659":7,"5660":7,"5661":8,"5662":3,"5663":7,"5664":6,"5665":7,"5666":4,"5667":7,"5668":8,"5669":3,"5670":7,"5671":8,"5672":4,"5673":9,"5674":6,"5675":2,"5676":5,"5677":5,"5678":6,"5679":2,"5680":5,"5681":7,"5682":7,"5683":8,"5684":9,"5685":7,"5686":7,"5687":8,"5688":5,"5689":7,"5690":7,"5691":4,"5692":5,"5693":7,"5694":5,"5695":2,"5696":6,"5697":9,"5698":8,"5699":6,"5700":3,"5701":9,"5702":3,"5703":8,"5704":8,"5705":8,"5706":7,"5707":5,"5708":10,"5709":7,"5710":8,"5711":8,"5712":4,"5713":4,"5714":7,"5715":9,"5716":9,"5717":8,"5718":2,"5719":9,"5720":6,"5721":7,"5722":2,"5723":7,"5724":7,"5725":6,"5726":8,"5727":4,"5728":7,"5729":2,"5730":5,"5731":7,"5732":5,"5733":8,"5734":8,"5735":5,"5736":7,"5737":7,"5738":7,"5739":7,"5740":6,"5741":7,"5742":5,"5743":10,"5744":7,"5745":2,"5746":8,"5747":7,"5748":7,"5749":1,"5750":8,"5751":7,"5752":5,"5753":3,"5754":2,"5755":8,"5756":7,"5757":5,"5758":9,"5759":4,"5760":5,"5761":8,"5762":8,"5763":7,"5764":7,"5765":8,"5766":10,"5767":7,"5768":1,"5769":5,"5770":9,"5771":6,"5772":6,"5773":1,"5774":7,"5775":7,"5776":8,"5777":3,"5778":9,"5779":8,"5780":10,"5781":7,"5782":8,"5783":9,"5784":9,"5785":5,"5786":7,"5787":5,"5788":9,"5789":9,"5790":9,"5791":7,"5792":7,"5793":4,"5794":8,"5795":8,"5796":10,"5797":3,"5798":1,"5799":8,"5800":5,"5801":2,"5802":4,"5803":7,"5804":7,"5805":8,"5806":6,"5807":8,"5808":3,"5809":7,"5810":6,"5811":4,"5812":2,"5813":7,"5814":8,"5815":7,"5816":8,"5817":5,"5818":2,"5819":3,"5820":6,"5821":6,"5822":7,"5823":7,"5824":2,"5825":8,"5826":7,"5827":8,"5828":8,"5829":2,"5830":8,"5831":2,"5832":8,"5833":5,"5834":6,"5835":7,"5836":7,"5837":8,"5838":9,"5839":5,"5840":4,"5841":6,"5842":6,"5843":5,"5844":7,"5845":1,"5846":2,"5847":6,"5848":8,"5849":9,"5850":8,"5851":1,"5852":8,"5853":9,"5854":9,"5855":5,"5856":8,"5857":10,"5858":7,"5859":7,"5860":1,"5861":4,"5862":10,"5863":9,"5864":2,"5865":5,"5866":5,"5867":5,"5868":3,"5869":2,"5870":5,"5871":2,"5872":1,"5873":2,"5874":8,"5875":8,"5876":6,"5877":3,"5878":2,"5879":9,"5880":8,"5881":9,"5882":4,"5883":7,"5884":7,"5885":2,"5886":7,"5887":8,"5888":7,"5889":5,"5890":2,"5891":2,"5892":5,"5893":9,"5894":8,"5895":5,"5896":7,"5897":5,"5898":10,"5899":5,"5900":5,"5901":7,"5902":10,"5903":2,"5904":9,"5905":5,"5906":8,"5907":7,"5908":7,"5909":1,"5910":7,"5911":9,"5912":2,"5913":9,"5914":8,"5915":8,"5916":2,"5917":3,"5918":7,"5919":4,"5920":8,"5921":10,"5922":8,"5923":8,"5924":2,"5925":2,"5926":4,"5927":8,"5928":9,"5929":1,"5930":7,"5931":2,"5932":7,"5933":7,"5934":9,"5935":9,"5936":5,"5937":2,"5938":5,"5939":3,"5940":7,"5941":5,"5942":9,"5943":7,"5944":5,"5945":6,"5946":7,"5947":7,"5948":9,"5949":7,"5950":4,"5951":8,"5952":8,"5953":10,"5954":5,"5955":9,"5956":9,"5957":8,"5958":8,"5959":7,"5960":1,"5961":4,"5962":7,"5963":4,"5964":7,"5965":1,"5966":2,"5967":9,"5968":8,"5969":1,"5970":7,"5971":7,"5972":7,"5973":2,"5974":8,"5975":9,"5976":9,"5977":7,"5978":8,"5979":8,"5980":8,"5981":1,"5982":8,"5983":5,"5984":8,"5985":7,"5986":5,"5987":8,"5988":8,"5989":4,"5990":9,"5991":6,"5992":2,"5993":4,"5994":6,"5995":8,"5996":1,"5997":5,"5998":2,"5999":4,"6000":10,"6001":2,"6002":9,"6003":9,"6004":2,"6005":6,"6006":2,"6007":6,"6008":8,"6009":7,"6010":7,"6011":4,"6012":2,"6013":5,"6014":2,"6015":8,"6016":8,"6017":8,"6018":4,"6019":9,"6020":8,"6021":1,"6022":10,"6023":4,"6024":5,"6025":4,"6026":6,"6027":7,"6028":10,"6029":7,"6030":7,"6031":7,"6032":9,"6033":6,"6034":9,"6035":2,"6036":8,"6037":8,"6038":7,"6039":7,"6040":7,"6041":9,"6042":8,"6043":5,"6044":10,"6045":6,"6046":8,"6047":5,"6048":10,"6049":4,"6050":1,"6051":8,"6052":6,"6053":9,"6054":1,"6055":9,"6056":7,"6057":2,"6058":9,"6059":2,"6060":9,"6061":10,"6062":5,"6063":8,"6064":6,"6065":7,"6066":10,"6067":7,"6068":8,"6069":5,"6070":9,"6071":7,"6072":5,"6073":10,"6074":1,"6075":8,"6076":7,"6077":6,"6078":5,"6079":8,"6080":8,"6081":1,"6082":9,"6083":1,"6084":9,"6085":7,"6086":8,"6087":8,"6088":6,"6089":3,"6090":1,"6091":9,"6092":1,"6093":2,"6094":6,"6095":7,"6096":9,"6097":7,"6098":5,"6099":10,"6100":8,"6101":9,"6102":8,"6103":8,"6104":7,"6105":9,"6106":8,"6107":2,"6108":9,"6109":5,"6110":3,"6111":9,"6112":4,"6113":4,"6114":5,"6115":6,"6116":7,"6117":8,"6118":5,"6119":7,"6120":8,"6121":8,"6122":5,"6123":9,"6124":4,"6125":2,"6126":8,"6127":8,"6128":2,"6129":9,"6130":7,"6131":8,"6132":8,"6133":5,"6134":5,"6135":9,"6136":10,"6137":10,"6138":7,"6139":2,"6140":9,"6141":7,"6142":9,"6143":5,"6144":5,"6145":10,"6146":8,"6147":8,"6148":2,"6149":2,"6150":8,"6151":10,"6152":9,"6153":9,"6154":7,"6155":10,"6156":1,"6157":7,"6158":6,"6159":4,"6160":4,"6161":4,"6162":7,"6163":7,"6164":8,"6165":8,"6166":8,"6167":7,"6168":8,"6169":7,"6170":4,"6171":4,"6172":8,"6173":7,"6174":5,"6175":2,"6176":1,"6177":9,"6178":2,"6179":5,"6180":7,"6181":7,"6182":9,"6183":9,"6184":9,"6185":8,"6186":4,"6187":8,"6188":7,"6189":9,"6190":8,"6191":5,"6192":9,"6193":5,"6194":10,"6195":2,"6196":8,"6197":3,"6198":9,"6199":7,"6200":9,"6201":5,"6202":9,"6203":10,"6204":7,"6205":6,"6206":8,"6207":5,"6208":7,"6209":6,"6210":2,"6211":9,"6212":8,"6213":5,"6214":9,"6215":9,"6216":4,"6217":2,"6218":10,"6219":9,"6220":8,"6221":8,"6222":7,"6223":9,"6224":10,"6225":6,"6226":7,"6227":7,"6228":3,"6229":8,"6230":1,"6231":7,"6232":8,"6233":5,"6234":3,"6235":3,"6236":7,"6237":5,"6238":5,"6239":9,"6240":9,"6241":2,"6242":10,"6243":2,"6244":5,"6245":10,"6246":9,"6247":5,"6248":4,"6249":2,"6250":1,"6251":9,"6252":2,"6253":4,"6254":8,"6255":8,"6256":9,"6257":7,"6258":5,"6259":4,"6260":5,"6261":8,"6262":9,"6263":5,"6264":7,"6265":6,"6266":8,"6267":4,"6268":9,"6269":1,"6270":7,"6271":7,"6272":9,"6273":9,"6274":5,"6275":9,"6276":3,"6277":8,"6278":9,"6279":5,"6280":2,"6281":1,"6282":9,"6283":8,"6284":5,"6285":10,"6286":2,"6287":9,"6288":7,"6289":8,"6290":7,"6291":8,"6292":3,"6293":7,"6294":9,"6295":7,"6296":8,"6297":2,"6298":9,"6299":8,"6300":7,"6301":8,"6302":2,"6303":7,"6304":9,"6305":8,"6306":4,"6307":6,"6308":7,"6309":8,"6310":7,"6311":5,"6312":7,"6313":9,"6314":7,"6315":9,"6316":6,"6317":2,"6318":4,"6319":8,"6320":7,"6321":8,"6322":9,"6323":8,"6324":2,"6325":1,"6326":7,"6327":3,"6328":3,"6329":4,"6330":2,"6331":2,"6332":9,"6333":7,"6334":5,"6335":9,"6336":8,"6337":9,"6338":8,"6339":2,"6340":4,"6341":6,"6342":7,"6343":7,"6344":8,"6345":5,"6346":8,"6347":8,"6348":9,"6349":2,"6350":2,"6351":9,"6352":7,"6353":6,"6354":6,"6355":8,"6356":3,"6357":5,"6358":8,"6359":7,"6360":9,"6361":8,"6362":7,"6363":2,"6364":8,"6365":9,"6366":2,"6367":9,"6368":9,"6369":7,"6370":7,"6371":8,"6372":5,"6373":7,"6374":9,"6375":6,"6376":9,"6377":10,"6378":6,"6379":8,"6380":7,"6381":5,"6382":2,"6383":10,"6384":7,"6385":5,"6386":4,"6387":2,"6388":1,"6389":4,"6390":1,"6391":7,"6392":8,"6393":8,"6394":3,"6395":8,"6396":8,"6397":3,"6398":5,"6399":6,"6400":7,"6401":5,"6402":7,"6403":6,"6404":9,"6405":2,"6406":9,"6407":9,"6408":9,"6409":4,"6410":7,"6411":7,"6412":5,"6413":8,"6414":7,"6415":7,"6416":8,"6417":2,"6418":2,"6419":7,"6420":5,"6421":9,"6422":2,"6423":7,"6424":1,"6425":7,"6426":7,"6427":9,"6428":2,"6429":7,"6430":8,"6431":8,"6432":2,"6433":10,"6434":4,"6435":10,"6436":1,"6437":6,"6438":1,"6439":1,"6440":1,"6441":7,"6442":8,"6443":5,"6444":7,"6445":2,"6446":8,"6447":9,"6448":7,"6449":7,"6450":9,"6451":8,"6452":8,"6453":7,"6454":1,"6455":7,"6456":3,"6457":9,"6458":8,"6459":4,"6460":1,"6461":2,"6462":9,"6463":7,"6464":2,"6465":6,"6466":9,"6467":2,"6468":5,"6469":5,"6470":2,"6471":6,"6472":8,"6473":4,"6474":7,"6475":5,"6476":10,"6477":7,"6478":7,"6479":8,"6480":9,"6481":5,"6482":9,"6483":10,"6484":8,"6485":3,"6486":5,"6487":9,"6488":2,"6489":5,"6490":10,"6491":8,"6492":2,"6493":9,"6494":7,"6495":5,"6496":8,"6497":4,"6498":7,"6499":6,"6500":8,"6501":9,"6502":5,"6503":7,"6504":2,"6505":8,"6506":2,"6507":3,"6508":2,"6509":10,"6510":8,"6511":9,"6512":9,"6513":1,"6514":2,"6515":8,"6516":8,"6517":9,"6518":7,"6519":10,"6520":2,"6521":8,"6522":9,"6523":2,"6524":2,"6525":5,"6526":7,"6527":2,"6528":7,"6529":8,"6530":9,"6531":4,"6532":2,"6533":7,"6534":9,"6535":10,"6536":7,"6537":7,"6538":7,"6539":8,"6540":4,"6541":2,"6542":3,"6543":2,"6544":8,"6545":9,"6546":8,"6547":5,"6548":9,"6549":2,"6550":7,"6551":1,"6552":5,"6553":2,"6554":9,"6555":7,"6556":9,"6557":10,"6558":8,"6559":7,"6560":9,"6561":8,"6562":10,"6563":7,"6564":2,"6565":4,"6566":1,"6567":6,"6568":9,"6569":8,"6570":3,"6571":8,"6572":9,"6573":9,"6574":8,"6575":5,"6576":2,"6577":1,"6578":2,"6579":7,"6580":1,"6581":5,"6582":8,"6583":5,"6584":7,"6585":10,"6586":8,"6587":8,"6588":8,"6589":7,"6590":8,"6591":1,"6592":8,"6593":1,"6594":9,"6595":1,"6596":5,"6597":9,"6598":2,"6599":6,"6600":5,"6601":9,"6602":1,"6603":7,"6604":4,"6605":9,"6606":2,"6607":10,"6608":7,"6609":7,"6610":8,"6611":7,"6612":8,"6613":2,"6614":9,"6615":3,"6616":4,"6617":7,"6618":7,"6619":2,"6620":3,"6621":2,"6622":8,"6623":10,"6624":8,"6625":7,"6626":5,"6627":2,"6628":2,"6629":9,"6630":9,"6631":8,"6632":9,"6633":10,"6634":9,"6635":8,"6636":1,"6637":7,"6638":5,"6639":9,"6640":2,"6641":8,"6642":7,"6643":8,"6644":8,"6645":2,"6646":7,"6647":7,"6648":7,"6649":9,"6650":8,"6651":9,"6652":7,"6653":7,"6654":9,"6655":8,"6656":9,"6657":2,"6658":2,"6659":7,"6660":10,"6661":3,"6662":5,"6663":10,"6664":7,"6665":7,"6666":5,"6667":9,"6668":3,"6669":8,"6670":1,"6671":5,"6672":1,"6673":7,"6674":8,"6675":9,"6676":3,"6677":7,"6678":3,"6679":9,"6680":8,"6681":9,"6682":7,"6683":7,"6684":7,"6685":8,"6686":8,"6687":4,"6688":3,"6689":8,"6690":8,"6691":2,"6692":10,"6693":9,"6694":7,"6695":10,"6696":7,"6697":8,"6698":6,"6699":10,"6700":2,"6701":9,"6702":9,"6703":7,"6704":9,"6705":5,"6706":6,"6707":4,"6708":8,"6709":9,"6710":8,"6711":5,"6712":2,"6713":9,"6714":1,"6715":8,"6716":8,"6717":2,"6718":8,"6719":8,"6720":8,"6721":2,"6722":6,"6723":6,"6724":9,"6725":2,"6726":3,"6727":8,"6728":8,"6729":10,"6730":8,"6731":1,"6732":4,"6733":7,"6734":8,"6735":7,"6736":4,"6737":7,"6738":7,"6739":4,"6740":8,"6741":9,"6742":8,"6743":9,"6744":5,"6745":9,"6746":4,"6747":10,"6748":2,"6749":8,"6750":8,"6751":7,"6752":8,"6753":9,"6754":5,"6755":7,"6756":9,"6757":1,"6758":5,"6759":4,"6760":5,"6761":4,"6762":7,"6763":8,"6764":9,"6765":7,"6766":8,"6767":7,"6768":10,"6769":10,"6770":7,"6771":7,"6772":8,"6773":5,"6774":9,"6775":10,"6776":8,"6777":5,"6778":5,"6779":9,"6780":9,"6781":3,"6782":4,"6783":8,"6784":9,"6785":2,"6786":9,"6787":8,"6788":8,"6789":7,"6790":3,"6791":3,"6792":7,"6793":7,"6794":8,"6795":8,"6796":8,"6797":5,"6798":4,"6799":6,"6800":10,"6801":7,"6802":6,"6803":8,"6804":7,"6805":5,"6806":6,"6807":6,"6808":7,"6809":2,"6810":5,"6811":5,"6812":6,"6813":7,"6814":8,"6815":5,"6816":8,"6817":8,"6818":8,"6819":2,"6820":9,"6821":7,"6822":9,"6823":8,"6824":8,"6825":9,"6826":3,"6827":5,"6828":9,"6829":2,"6830":5,"6831":7,"6832":8,"6833":7,"6834":9,"6835":3,"6836":8,"6837":8,"6838":5,"6839":4,"6840":2,"6841":1,"6842":2,"6843":7,"6844":5,"6845":1,"6846":4,"6847":1,"6848":7,"6849":7,"6850":10,"6851":5,"6852":6,"6853":8,"6854":9,"6855":2,"6856":7,"6857":2,"6858":3,"6859":8,"6860":8,"6861":6,"6862":2,"6863":8,"6864":8,"6865":8,"6866":2,"6867":9,"6868":6,"6869":8,"6870":9,"6871":4,"6872":6,"6873":7,"6874":8,"6875":6,"6876":4,"6877":8,"6878":8,"6879":8,"6880":10,"6881":8,"6882":9,"6883":8,"6884":7,"6885":7,"6886":7,"6887":7,"6888":9,"6889":9,"6890":1,"6891":7,"6892":9,"6893":10,"6894":8,"6895":5,"6896":7,"6897":8,"6898":7,"6899":5,"6900":3,"6901":9,"6902":5,"6903":9,"6904":1,"6905":10,"6906":7,"6907":8,"6908":8,"6909":8,"6910":8,"6911":8,"6912":9,"6913":8,"6914":5,"6915":10,"6916":9,"6917":9,"6918":10,"6919":7,"6920":7,"6921":8,"6922":5,"6923":8,"6924":8,"6925":9,"6926":9,"6927":7,"6928":7,"6929":9,"6930":9,"6931":8,"6932":9,"6933":2,"6934":4,"6935":8,"6936":7,"6937":3,"6938":8,"6939":9,"6940":8,"6941":7,"6942":5,"6943":3,"6944":2,"6945":9,"6946":4,"6947":9,"6948":2,"6949":6,"6950":8,"6951":5,"6952":5,"6953":9,"6954":3,"6955":1,"6956":10,"6957":5,"6958":8,"6959":1,"6960":10,"6961":9,"6962":7,"6963":7,"6964":6,"6965":6,"6966":2,"6967":7,"6968":8,"6969":8,"6970":7,"6971":2,"6972":7,"6973":7,"6974":2,"6975":7,"6976":3,"6977":8,"6978":8,"6979":8,"6980":2,"6981":2,"6982":2,"6983":5,"6984":2,"6985":2,"6986":9,"6987":4,"6988":8,"6989":9,"6990":7,"6991":8,"6992":8,"6993":8,"6994":7,"6995":1,"6996":7,"6997":8,"6998":1,"6999":8,"7000":8,"7001":9,"7002":2,"7003":10,"7004":4,"7005":8,"7006":6,"7007":7,"7008":2,"7009":9,"7010":1,"7011":9,"7012":3,"7013":6,"7014":9,"7015":7,"7016":8,"7017":8,"7018":7,"7019":8,"7020":9,"7021":3,"7022":9,"7023":8,"7024":8,"7025":2,"7026":4,"7027":8,"7028":5,"7029":9,"7030":9,"7031":3,"7032":9,"7033":7,"7034":9,"7035":6,"7036":8,"7037":5,"7038":2,"7039":8,"7040":7,"7041":9,"7042":8,"7043":8,"7044":9,"7045":5,"7046":2,"7047":5,"7048":7,"7049":10,"7050":7,"7051":8,"7052":2,"7053":7,"7054":5,"7055":10,"7056":2,"7057":7,"7058":6,"7059":8,"7060":1,"7061":5,"7062":8,"7063":4,"7064":8,"7065":9,"7066":8,"7067":2,"7068":5,"7069":9,"7070":7,"7071":9,"7072":8,"7073":2,"7074":8,"7075":1,"7076":5,"7077":9,"7078":7,"7079":7,"7080":9,"7081":6,"7082":8,"7083":5,"7084":5,"7085":9,"7086":8,"7087":7,"7088":9,"7089":8,"7090":9,"7091":4,"7092":8,"7093":8,"7094":10,"7095":5,"7096":7,"7097":7,"7098":7,"7099":3,"7100":6,"7101":8,"7102":8,"7103":2,"7104":1,"7105":8,"7106":2,"7107":3,"7108":1,"7109":7,"7110":9,"7111":9,"7112":10,"7113":9,"7114":9,"7115":2,"7116":7,"7117":8,"7118":9,"7119":8,"7120":7,"7121":5,"7122":1,"7123":7,"7124":8,"7125":2,"7126":2,"7127":9,"7128":8,"7129":3,"7130":5,"7131":8,"7132":8,"7133":8,"7134":5,"7135":4,"7136":8,"7137":7,"7138":7,"7139":8,"7140":2,"7141":2,"7142":8,"7143":7,"7144":8,"7145":9,"7146":9,"7147":3,"7148":5,"7149":9,"7150":10,"7151":8,"7152":4,"7153":7,"7154":1,"7155":3,"7156":8,"7157":7,"7158":2,"7159":9,"7160":2,"7161":7,"7162":8,"7163":8,"7164":4,"7165":10,"7166":9,"7167":7,"7168":9,"7169":3,"7170":4,"7171":2,"7172":5,"7173":7,"7174":1,"7175":9,"7176":7,"7177":9,"7178":7,"7179":4,"7180":2,"7181":8,"7182":8,"7183":5,"7184":4,"7185":5,"7186":10,"7187":2,"7188":9,"7189":8,"7190":7,"7191":4,"7192":8,"7193":5,"7194":9,"7195":2,"7196":10,"7197":9,"7198":2,"7199":8,"7200":8,"7201":8,"7202":8,"7203":8,"7204":3,"7205":4,"7206":8,"7207":8,"7208":2,"7209":8,"7210":8,"7211":6,"7212":8,"7213":9,"7214":8,"7215":9,"7216":6,"7217":2,"7218":3,"7219":7,"7220":9,"7221":5,"7222":7,"7223":2,"7224":7,"7225":9,"7226":8,"7227":8,"7228":9,"7229":8,"7230":1,"7231":6,"7232":1,"7233":8,"7234":5,"7235":9,"7236":6,"7237":7,"7238":4,"7239":7,"7240":7,"7241":6,"7242":7,"7243":7,"7244":9,"7245":3,"7246":7,"7247":7,"7248":9,"7249":4,"7250":3,"7251":7,"7252":1,"7253":2,"7254":2,"7255":10,"7256":7,"7257":7,"7258":10,"7259":7,"7260":7,"7261":9,"7262":8,"7263":1,"7264":7,"7265":1,"7266":5,"7267":8,"7268":7,"7269":9,"7270":7,"7271":7,"7272":9,"7273":5,"7274":9,"7275":2,"7276":2,"7277":8,"7278":9,"7279":9,"7280":6,"7281":8,"7282":8,"7283":5,"7284":9,"7285":7,"7286":7,"7287":2,"7288":7,"7289":3,"7290":3,"7291":7,"7292":8,"7293":9,"7294":1,"7295":5,"7296":5,"7297":7,"7298":4,"7299":8,"7300":10,"7301":2,"7302":9,"7303":8,"7304":8,"7305":3,"7306":5,"7307":9,"7308":7,"7309":2,"7310":1,"7311":5,"7312":8,"7313":7,"7314":2,"7315":10,"7316":7,"7317":4,"7318":2,"7319":9,"7320":5,"7321":5,"7322":9,"7323":10,"7324":5,"7325":7,"7326":1,"7327":9,"7328":7,"7329":8,"7330":3,"7331":6,"7332":2,"7333":8,"7334":9,"7335":3,"7336":10,"7337":7,"7338":8,"7339":9,"7340":9,"7341":2,"7342":9,"7343":2,"7344":10,"7345":7,"7346":2,"7347":8,"7348":9,"7349":8,"7350":5,"7351":7,"7352":2,"7353":9,"7354":9,"7355":2,"7356":2,"7357":9,"7358":7,"7359":4,"7360":3,"7361":9,"7362":5,"7363":7,"7364":5,"7365":7,"7366":10,"7367":2,"7368":9,"7369":5,"7370":9,"7371":1,"7372":9,"7373":4,"7374":9,"7375":7,"7376":8,"7377":2,"7378":5,"7379":5,"7380":8,"7381":9,"7382":8,"7383":6,"7384":8,"7385":9,"7386":8,"7387":5,"7388":5,"7389":10,"7390":10,"7391":5,"7392":7,"7393":5,"7394":2,"7395":9,"7396":8,"7397":2,"7398":8,"7399":8,"7400":1,"7401":7,"7402":9,"7403":7,"7404":5,"7405":7,"7406":8,"7407":7,"7408":8,"7409":8,"7410":3,"7411":7,"7412":8,"7413":9,"7414":8,"7415":8,"7416":10,"7417":1,"7418":9,"7419":8,"7420":4,"7421":8,"7422":9,"7423":8,"7424":5,"7425":7,"7426":2,"7427":8,"7428":6,"7429":7,"7430":1,"7431":7,"7432":7,"7433":8,"7434":9,"7435":5,"7436":8,"7437":7,"7438":10,"7439":5,"7440":7,"7441":4,"7442":7,"7443":4,"7444":4,"7445":8,"7446":7,"7447":9,"7448":7,"7449":2,"7450":2,"7451":7,"7452":7,"7453":9,"7454":2,"7455":9,"7456":5,"7457":8,"7458":2,"7459":8,"7460":3,"7461":7,"7462":9,"7463":6,"7464":6,"7465":7,"7466":9,"7467":6,"7468":9,"7469":7,"7470":8,"7471":5,"7472":7,"7473":9,"7474":8,"7475":7,"7476":8,"7477":7,"7478":8,"7479":9,"7480":3,"7481":7,"7482":7,"7483":9,"7484":10,"7485":4,"7486":5,"7487":3,"7488":7,"7489":5,"7490":8,"7491":2,"7492":5,"7493":4,"7494":5,"7495":10,"7496":10,"7497":10,"7498":7,"7499":3,"7500":9,"7501":8,"7502":9,"7503":9,"7504":1,"7505":1,"7506":7,"7507":10,"7508":7,"7509":7,"7510":8,"7511":1,"7512":1,"7513":8,"7514":8,"7515":7,"7516":8,"7517":1,"7518":3,"7519":7,"7520":7,"7521":1,"7522":9,"7523":8,"7524":9,"7525":8,"7526":9,"7527":10,"7528":7,"7529":9,"7530":3,"7531":4,"7532":2,"7533":2,"7534":8,"7535":7,"7536":8,"7537":4,"7538":8,"7539":8,"7540":6,"7541":7,"7542":3,"7543":8,"7544":7,"7545":9,"7546":8,"7547":2,"7548":8,"7549":8,"7550":1,"7551":8,"7552":9,"7553":9,"7554":9,"7555":7,"7556":8,"7557":1,"7558":8,"7559":8,"7560":9,"7561":3,"7562":8,"7563":9,"7564":5,"7565":8,"7566":8,"7567":3,"7568":2,"7569":2,"7570":4,"7571":10,"7572":5,"7573":8,"7574":9,"7575":9,"7576":4,"7577":8,"7578":7,"7579":9,"7580":2,"7581":9,"7582":8,"7583":8,"7584":9,"7585":8,"7586":10,"7587":1,"7588":7,"7589":9,"7590":9,"7591":5,"7592":2,"7593":7,"7594":9,"7595":4,"7596":1,"7597":7,"7598":7,"7599":7,"7600":5,"7601":10,"7602":9,"7603":2,"7604":9,"7605":2,"7606":2,"7607":9,"7608":7,"7609":3,"7610":2,"7611":5,"7612":8,"7613":9,"7614":9,"7615":9,"7616":6,"7617":10,"7618":7,"7619":2,"7620":4,"7621":4,"7622":7,"7623":6,"7624":5,"7625":9,"7626":7,"7627":7,"7628":7,"7629":8,"7630":10,"7631":8,"7632":5,"7633":4,"7634":7,"7635":9,"7636":7,"7637":10,"7638":7,"7639":3,"7640":8,"7641":4,"7642":9,"7643":10,"7644":8,"7645":2,"7646":7,"7647":7,"7648":8,"7649":8,"7650":7,"7651":7,"7652":2,"7653":2,"7654":9,"7655":8,"7656":8,"7657":8,"7658":5,"7659":7,"7660":7,"7661":8,"7662":9,"7663":1,"7664":7,"7665":9,"7666":9,"7667":7,"7668":5,"7669":9,"7670":8,"7671":6,"7672":9,"7673":8,"7674":9,"7675":5,"7676":7,"7677":8,"7678":7,"7679":9,"7680":1,"7681":2,"7682":9,"7683":2,"7684":4,"7685":5,"7686":9,"7687":4,"7688":3,"7689":8,"7690":4,"7691":8,"7692":5,"7693":3,"7694":6,"7695":7,"7696":9,"7697":8,"7698":10,"7699":2,"7700":9,"7701":7,"7702":9,"7703":5,"7704":7,"7705":2,"7706":8,"7707":1,"7708":8,"7709":6,"7710":5,"7711":8,"7712":1,"7713":8,"7714":7,"7715":7,"7716":7,"7717":8,"7718":5,"7719":3,"7720":7,"7721":7,"7722":7,"7723":7,"7724":10,"7725":4,"7726":4,"7727":7,"7728":9,"7729":7,"7730":8,"7731":7,"7732":5,"7733":7,"7734":2,"7735":9,"7736":4,"7737":2,"7738":2,"7739":2,"7740":7,"7741":5,"7742":7,"7743":9,"7744":7,"7745":8,"7746":8,"7747":10,"7748":2,"7749":10,"7750":9,"7751":2,"7752":5,"7753":1,"7754":7,"7755":7,"7756":7,"7757":7,"7758":2,"7759":9,"7760":7,"7761":10,"7762":10,"7763":7,"7764":5,"7765":7,"7766":5,"7767":8,"7768":3,"7769":8,"7770":10,"7771":7,"7772":7,"7773":10,"7774":5,"7775":2,"7776":9,"7777":9,"7778":5,"7779":3,"7780":10,"7781":7,"7782":6,"7783":6,"7784":5,"7785":9,"7786":2,"7787":5,"7788":7,"7789":4,"7790":2,"7791":2,"7792":9,"7793":4,"7794":7,"7795":9,"7796":8,"7797":8,"7798":8,"7799":8,"7800":7,"7801":2,"7802":7,"7803":4,"7804":1,"7805":10,"7806":5,"7807":9,"7808":2,"7809":6,"7810":9,"7811":2,"7812":5,"7813":9,"7814":9,"7815":7,"7816":8,"7817":7,"7818":7,"7819":1,"7820":10,"7821":7,"7822":1,"7823":4,"7824":9,"7825":10,"7826":5,"7827":9,"7828":7,"7829":8,"7830":10,"7831":8,"7832":6,"7833":1,"7834":8,"7835":8,"7836":9,"7837":7,"7838":8,"7839":8,"7840":4,"7841":8,"7842":7,"7843":8,"7844":3,"7845":4,"7846":8,"7847":8,"7848":9,"7849":8,"7850":3,"7851":3,"7852":9,"7853":6,"7854":7,"7855":4,"7856":1,"7857":8,"7858":1,"7859":8,"7860":9,"7861":7,"7862":7,"7863":5,"7864":7,"7865":8,"7866":7,"7867":5,"7868":5,"7869":7,"7870":9,"7871":5,"7872":9,"7873":8,"7874":3,"7875":9,"7876":2,"7877":7,"7878":3,"7879":4,"7880":8,"7881":7,"7882":1,"7883":2,"7884":4,"7885":10,"7886":6,"7887":7,"7888":8,"7889":7,"7890":5,"7891":7,"7892":10,"7893":7,"7894":4,"7895":9,"7896":10,"7897":7,"7898":7,"7899":9,"7900":9,"7901":5,"7902":9,"7903":8,"7904":7,"7905":3,"7906":7,"7907":7,"7908":1,"7909":8,"7910":6,"7911":9,"7912":3,"7913":3,"7914":7,"7915":1,"7916":7,"7917":8,"7918":7,"7919":7,"7920":6,"7921":6,"7922":8,"7923":8,"7924":2,"7925":9,"7926":7,"7927":9,"7928":9,"7929":2,"7930":7,"7931":9,"7932":7,"7933":4,"7934":4,"7935":1,"7936":8,"7937":8,"7938":7,"7939":3,"7940":9,"7941":3,"7942":10,"7943":8,"7944":8,"7945":2,"7946":7,"7947":3,"7948":5,"7949":4,"7950":4,"7951":8,"7952":6,"7953":7,"7954":7,"7955":9,"7956":8,"7957":9,"7958":7,"7959":9,"7960":5,"7961":3,"7962":7,"7963":8,"7964":9,"7965":7,"7966":9,"7967":4,"7968":2,"7969":4,"7970":3,"7971":7,"7972":4,"7973":5,"7974":7,"7975":7,"7976":8,"7977":8,"7978":2,"7979":5,"7980":8,"7981":8,"7982":3,"7983":7,"7984":6,"7985":8,"7986":10,"7987":7,"7988":7,"7989":2,"7990":2,"7991":2,"7992":7,"7993":7,"7994":9,"7995":5,"7996":8,"7997":4,"7998":1,"7999":7,"8000":8,"8001":8,"8002":3,"8003":7,"8004":2,"8005":4,"8006":7,"8007":5,"8008":5,"8009":7,"8010":2,"8011":4,"8012":8,"8013":8,"8014":2,"8015":5,"8016":5,"8017":2,"8018":6,"8019":10,"8020":8,"8021":2,"8022":8,"8023":9,"8024":5,"8025":8,"8026":3,"8027":7,"8028":8,"8029":10,"8030":7,"8031":8,"8032":6,"8033":2,"8034":7,"8035":8,"8036":6,"8037":2,"8038":7,"8039":8,"8040":1,"8041":2,"8042":5,"8043":7,"8044":10,"8045":8,"8046":3,"8047":1,"8048":6,"8049":2,"8050":4,"8051":5,"8052":7,"8053":6,"8054":5,"8055":8,"8056":8,"8057":7,"8058":9,"8059":7,"8060":4,"8061":1,"8062":7,"8063":8,"8064":9,"8065":8,"8066":9,"8067":1,"8068":2,"8069":7,"8070":7,"8071":7,"8072":1,"8073":1,"8074":10,"8075":8,"8076":8,"8077":1,"8078":6,"8079":3,"8080":8,"8081":6,"8082":7,"8083":9,"8084":7,"8085":8,"8086":5,"8087":2,"8088":1,"8089":7,"8090":2,"8091":9,"8092":7,"8093":10,"8094":8,"8095":5,"8096":10,"8097":6,"8098":8,"8099":5,"8100":2,"8101":1,"8102":9,"8103":9,"8104":7,"8105":9,"8106":5,"8107":3,"8108":4,"8109":6,"8110":9,"8111":8,"8112":7,"8113":10,"8114":10,"8115":2,"8116":2,"8117":6,"8118":5,"8119":6,"8120":3,"8121":7,"8122":10,"8123":7,"8124":5,"8125":5,"8126":4,"8127":6,"8128":7,"8129":6,"8130":6,"8131":7,"8132":8,"8133":5,"8134":8,"8135":2,"8136":8,"8137":7,"8138":10,"8139":8,"8140":1,"8141":2,"8142":9,"8143":7,"8144":2,"8145":8,"8146":1,"8147":7,"8148":8,"8149":8,"8150":9,"8151":9,"8152":10,"8153":5,"8154":3,"8155":5,"8156":6,"8157":8,"8158":7,"8159":2,"8160":2,"8161":6,"8162":1,"8163":2,"8164":2,"8165":7,"8166":2,"8167":6,"8168":10,"8169":5,"8170":8,"8171":6,"8172":2,"8173":10,"8174":9,"8175":6,"8176":8,"8177":1,"8178":7,"8179":8,"8180":6,"8181":7,"8182":10,"8183":7,"8184":2,"8185":7,"8186":5,"8187":8,"8188":7,"8189":6,"8190":3,"8191":5,"8192":8,"8193":7,"8194":4,"8195":8,"8196":8,"8197":9,"8198":7,"8199":8,"8200":6,"8201":5,"8202":7,"8203":4,"8204":8,"8205":9,"8206":7,"8207":1,"8208":9,"8209":7,"8210":7,"8211":6,"8212":4,"8213":10,"8214":2,"8215":5,"8216":1,"8217":1,"8218":5,"8219":9,"8220":7,"8221":8,"8222":8,"8223":2,"8224":7,"8225":2,"8226":8,"8227":2,"8228":5,"8229":7,"8230":1,"8231":7,"8232":8,"8233":8,"8234":7,"8235":3,"8236":9,"8237":5,"8238":5,"8239":9,"8240":7,"8241":7,"8242":6,"8243":7,"8244":1,"8245":7,"8246":8,"8247":3,"8248":6,"8249":7,"8250":6,"8251":3,"8252":7,"8253":10,"8254":5,"8255":9,"8256":4,"8257":5,"8258":9,"8259":3,"8260":8,"8261":7,"8262":10,"8263":9,"8264":9,"8265":8,"8266":9,"8267":6,"8268":7,"8269":2,"8270":9,"8271":4,"8272":8,"8273":3,"8274":9,"8275":2,"8276":9,"8277":1,"8278":1,"8279":7,"8280":7,"8281":8,"8282":7,"8283":7,"8284":10,"8285":8,"8286":9,"8287":2,"8288":6,"8289":2,"8290":6,"8291":8,"8292":7,"8293":7,"8294":10,"8295":6,"8296":8,"8297":1,"8298":2,"8299":5,"8300":6,"8301":9,"8302":1,"8303":7,"8304":6,"8305":9,"8306":3,"8307":1,"8308":3,"8309":9,"8310":2,"8311":7,"8312":10,"8313":6,"8314":8,"8315":5,"8316":7,"8317":6,"8318":8,"8319":5,"8320":7,"8321":6,"8322":2,"8323":2,"8324":1,"8325":8,"8326":7,"8327":8,"8328":7,"8329":8,"8330":10,"8331":8,"8332":5,"8333":1,"8334":2,"8335":3,"8336":7,"8337":8,"8338":5,"8339":7,"8340":5,"8341":9,"8342":8,"8343":8,"8344":9,"8345":5,"8346":8,"8347":9,"8348":2,"8349":3,"8350":8,"8351":10,"8352":8,"8353":5,"8354":7,"8355":8,"8356":8,"8357":5,"8358":7,"8359":9,"8360":5,"8361":6,"8362":9,"8363":9,"8364":9,"8365":1,"8366":8,"8367":6,"8368":2,"8369":2,"8370":9,"8371":8,"8372":7,"8373":7,"8374":9,"8375":9,"8376":4,"8377":9,"8378":8,"8379":8,"8380":7,"8381":7,"8382":6,"8383":8,"8384":7,"8385":7,"8386":5,"8387":9,"8388":7,"8389":7,"8390":7,"8391":10,"8392":7,"8393":1,"8394":10,"8395":8,"8396":8,"8397":2,"8398":7,"8399":7,"8400":8,"8401":9,"8402":7,"8403":5,"8404":8,"8405":4,"8406":8,"8407":4,"8408":2,"8409":10,"8410":7,"8411":3,"8412":9,"8413":7,"8414":7,"8415":8,"8416":4,"8417":8,"8418":5,"8419":10,"8420":7,"8421":6,"8422":7,"8423":8,"8424":8,"8425":9,"8426":9,"8427":2,"8428":7,"8429":10,"8430":1,"8431":5,"8432":7,"8433":8,"8434":1,"8435":9,"8436":9,"8437":8,"8438":2,"8439":2,"8440":9,"8441":5,"8442":8,"8443":3,"8444":5,"8445":9,"8446":2,"8447":4,"8448":9,"8449":2,"8450":8,"8451":8,"8452":5,"8453":7,"8454":3,"8455":6,"8456":10,"8457":7,"8458":3,"8459":9,"8460":1,"8461":9,"8462":8,"8463":9,"8464":2,"8465":10,"8466":8,"8467":9,"8468":8,"8469":4,"8470":8,"8471":9,"8472":7,"8473":7,"8474":2,"8475":8,"8476":1,"8477":6,"8478":8,"8479":4,"8480":8,"8481":8,"8482":1,"8483":7,"8484":3,"8485":8,"8486":1,"8487":4,"8488":7,"8489":9,"8490":9,"8491":5,"8492":7,"8493":7,"8494":6,"8495":5,"8496":5,"8497":5,"8498":2,"8499":8,"8500":7,"8501":8,"8502":5,"8503":9,"8504":3,"8505":7,"8506":9,"8507":2,"8508":7,"8509":7,"8510":5,"8511":7,"8512":9,"8513":9,"8514":2,"8515":5,"8516":9,"8517":2,"8518":4,"8519":8,"8520":7,"8521":7,"8522":4,"8523":4,"8524":4,"8525":9,"8526":9,"8527":8,"8528":7,"8529":2,"8530":5,"8531":8,"8532":7,"8533":1,"8534":8,"8535":10,"8536":8,"8537":8,"8538":9,"8539":1,"8540":8,"8541":4,"8542":8,"8543":10,"8544":2,"8545":9,"8546":7,"8547":7,"8548":8,"8549":2,"8550":9,"8551":9,"8552":4,"8553":8,"8554":7,"8555":2,"8556":7,"8557":8,"8558":7,"8559":8,"8560":8,"8561":7,"8562":7,"8563":8,"8564":5,"8565":6,"8566":8,"8567":9,"8568":5,"8569":9,"8570":9,"8571":7,"8572":7,"8573":3,"8574":8,"8575":2,"8576":5,"8577":8,"8578":5,"8579":7,"8580":6,"8581":5,"8582":7,"8583":9,"8584":9,"8585":9,"8586":2,"8587":2,"8588":3,"8589":10,"8590":5,"8591":10,"8592":8,"8593":8,"8594":5,"8595":7,"8596":10,"8597":7,"8598":5,"8599":10,"8600":9,"8601":5,"8602":8,"8603":8,"8604":9,"8605":5,"8606":9,"8607":8,"8608":9,"8609":1,"8610":10,"8611":3,"8612":1,"8613":10,"8614":1,"8615":6,"8616":8,"8617":2,"8618":7,"8619":2,"8620":7,"8621":5,"8622":9,"8623":8,"8624":5,"8625":7,"8626":3,"8627":8,"8628":5,"8629":10,"8630":9,"8631":10,"8632":6,"8633":9,"8634":3,"8635":3,"8636":6,"8637":9,"8638":7,"8639":5,"8640":3,"8641":4,"8642":9,"8643":5,"8644":1,"8645":2,"8646":7,"8647":9,"8648":9,"8649":7,"8650":7,"8651":2,"8652":2,"8653":10,"8654":8,"8655":7,"8656":7,"8657":7,"8658":4,"8659":7,"8660":7,"8661":2,"8662":7,"8663":7,"8664":9,"8665":7,"8666":4,"8667":10,"8668":6,"8669":9,"8670":7,"8671":2,"8672":2,"8673":5,"8674":2,"8675":7,"8676":5,"8677":1,"8678":7,"8679":6,"8680":10,"8681":7,"8682":7,"8683":7,"8684":8,"8685":2,"8686":5,"8687":5,"8688":8,"8689":2,"8690":7,"8691":5,"8692":9,"8693":7,"8694":2,"8695":5,"8696":8,"8697":9,"8698":10,"8699":7,"8700":7,"8701":7,"8702":7,"8703":2,"8704":4,"8705":8,"8706":8,"8707":3,"8708":5,"8709":6,"8710":7,"8711":7,"8712":7,"8713":5,"8714":9,"8715":5,"8716":8,"8717":9,"8718":7,"8719":5,"8720":5,"8721":2,"8722":9,"8723":8,"8724":5,"8725":7,"8726":2,"8727":9,"8728":7,"8729":8,"8730":7,"8731":7,"8732":1,"8733":8,"8734":7,"8735":8,"8736":7,"8737":8,"8738":10,"8739":6,"8740":9,"8741":3,"8742":6,"8743":9,"8744":9,"8745":2,"8746":7,"8747":7,"8748":8,"8749":7,"8750":7,"8751":4,"8752":5,"8753":5,"8754":7,"8755":1,"8756":5,"8757":2,"8758":7,"8759":4,"8760":8,"8761":9,"8762":5,"8763":7,"8764":4,"8765":8,"8766":5,"8767":8,"8768":8,"8769":7,"8770":7,"8771":3,"8772":7,"8773":4,"8774":7,"8775":7,"8776":2,"8777":8,"8778":2,"8779":8,"8780":6,"8781":7,"8782":2,"8783":9,"8784":8,"8785":2,"8786":7,"8787":7,"8788":2,"8789":5,"8790":7,"8791":7,"8792":9,"8793":2,"8794":3,"8795":5,"8796":5,"8797":8,"8798":7,"8799":9,"8800":7,"8801":9,"8802":3,"8803":7,"8804":9,"8805":5,"8806":7,"8807":7,"8808":8,"8809":4,"8810":4,"8811":9,"8812":7,"8813":3,"8814":7,"8815":7,"8816":8,"8817":3,"8818":5,"8819":8,"8820":8,"8821":9,"8822":5,"8823":1,"8824":5,"8825":2,"8826":7,"8827":8,"8828":2,"8829":4,"8830":7,"8831":4,"8832":8,"8833":5,"8834":8,"8835":3,"8836":4,"8837":7,"8838":8,"8839":8,"8840":1,"8841":7,"8842":7,"8843":3,"8844":2,"8845":3,"8846":8,"8847":10,"8848":7,"8849":2,"8850":5,"8851":10,"8852":3,"8853":8,"8854":7,"8855":8,"8856":9,"8857":6,"8858":1,"8859":7,"8860":9,"8861":5,"8862":8,"8863":7,"8864":7,"8865":3,"8866":6,"8867":7,"8868":10,"8869":8,"8870":8,"8871":9,"8872":6,"8873":10,"8874":7,"8875":8,"8876":1,"8877":7,"8878":7,"8879":3,"8880":10,"8881":8,"8882":5,"8883":1,"8884":1,"8885":8,"8886":10,"8887":9,"8888":8,"8889":8,"8890":4,"8891":8,"8892":9,"8893":10,"8894":7,"8895":5,"8896":9,"8897":7,"8898":7,"8899":2,"8900":7,"8901":2,"8902":10,"8903":8,"8904":9,"8905":2,"8906":7,"8907":6,"8908":7,"8909":7,"8910":8,"8911":5,"8912":9,"8913":2,"8914":7,"8915":2,"8916":10,"8917":7,"8918":10,"8919":8,"8920":8,"8921":8,"8922":9,"8923":5,"8924":5,"8925":10,"8926":7,"8927":2,"8928":7,"8929":4,"8930":8,"8931":9,"8932":3,"8933":8,"8934":1,"8935":2,"8936":10,"8937":5,"8938":8,"8939":7,"8940":9,"8941":9,"8942":9,"8943":6,"8944":7,"8945":7,"8946":7,"8947":8,"8948":2,"8949":7,"8950":8,"8951":4,"8952":1,"8953":8,"8954":5,"8955":2,"8956":7,"8957":7,"8958":9,"8959":8,"8960":8,"8961":3,"8962":8,"8963":3,"8964":10,"8965":7,"8966":8,"8967":1,"8968":6,"8969":8,"8970":7,"8971":7,"8972":9,"8973":6,"8974":2,"8975":9,"8976":3,"8977":7,"8978":7,"8979":7,"8980":7,"8981":9,"8982":5,"8983":2,"8984":4,"8985":7,"8986":9,"8987":9,"8988":9,"8989":8,"8990":2,"8991":10,"8992":6,"8993":9,"8994":7,"8995":9,"8996":8,"8997":7,"8998":9,"8999":7,"9000":8,"9001":9,"9002":7,"9003":7,"9004":8,"9005":10,"9006":8,"9007":8,"9008":2,"9009":8,"9010":10,"9011":7,"9012":7,"9013":1,"9014":9,"9015":4,"9016":9,"9017":7,"9018":10,"9019":5,"9020":7,"9021":7,"9022":8,"9023":8,"9024":4,"9025":7,"9026":9,"9027":7,"9028":10,"9029":9,"9030":8,"9031":1,"9032":3,"9033":9,"9034":7,"9035":9,"9036":9,"9037":7,"9038":7,"9039":9,"9040":7,"9041":10,"9042":9,"9043":7,"9044":7,"9045":8,"9046":8,"9047":2,"9048":4,"9049":7,"9050":7,"9051":7,"9052":9,"9053":9,"9054":7,"9055":7,"9056":3,"9057":5,"9058":9,"9059":7,"9060":5,"9061":4,"9062":7,"9063":2,"9064":1,"9065":8,"9066":9,"9067":7,"9068":2,"9069":8,"9070":6,"9071":7,"9072":5,"9073":5,"9074":2,"9075":8,"9076":8,"9077":2,"9078":3,"9079":3,"9080":8,"9081":8,"9082":7,"9083":4,"9084":2,"9085":2,"9086":9,"9087":1,"9088":2,"9089":4,"9090":8,"9091":9,"9092":10,"9093":4,"9094":1,"9095":6,"9096":3,"9097":4,"9098":7,"9099":7,"9100":9,"9101":9,"9102":2,"9103":8,"9104":9,"9105":8,"9106":9,"9107":9,"9108":5,"9109":8,"9110":5,"9111":8,"9112":2,"9113":4,"9114":3,"9115":8,"9116":8,"9117":7,"9118":7,"9119":4,"9120":2,"9121":7,"9122":9,"9123":2,"9124":7,"9125":4,"9126":9,"9127":9,"9128":8,"9129":8,"9130":9,"9131":8,"9132":5,"9133":9,"9134":5,"9135":8,"9136":8,"9137":4,"9138":8,"9139":3,"9140":10,"9141":8,"9142":2,"9143":1,"9144":5,"9145":8,"9146":7,"9147":8,"9148":5,"9149":8,"9150":7,"9151":9,"9152":9,"9153":5,"9154":9,"9155":5,"9156":7,"9157":1,"9158":1,"9159":8,"9160":3,"9161":3,"9162":7,"9163":8,"9164":5,"9165":5,"9166":7,"9167":8,"9168":1,"9169":4,"9170":7,"9171":1,"9172":10,"9173":7,"9174":8,"9175":9,"9176":7,"9177":5,"9178":7,"9179":4,"9180":7,"9181":8,"9182":9,"9183":5,"9184":8,"9185":2,"9186":5,"9187":7,"9188":2,"9189":8,"9190":3,"9191":1,"9192":6,"9193":9,"9194":7,"9195":8,"9196":6,"9197":7,"9198":9,"9199":7,"9200":7,"9201":2,"9202":8,"9203":9,"9204":9,"9205":9,"9206":9,"9207":3,"9208":6,"9209":7,"9210":9,"9211":3,"9212":9,"9213":9,"9214":8,"9215":7,"9216":5,"9217":7,"9218":7,"9219":5,"9220":7,"9221":2,"9222":7,"9223":10,"9224":3,"9225":7,"9226":1,"9227":7,"9228":8,"9229":8,"9230":10,"9231":8,"9232":5,"9233":7,"9234":9,"9235":4,"9236":8,"9237":2,"9238":7,"9239":2,"9240":8,"9241":6,"9242":2,"9243":2,"9244":6,"9245":7,"9246":8,"9247":7,"9248":2,"9249":9,"9250":4,"9251":1,"9252":7,"9253":5,"9254":8,"9255":7,"9256":8,"9257":9,"9258":7,"9259":5,"9260":8,"9261":9,"9262":2,"9263":7,"9264":6,"9265":7,"9266":3,"9267":2,"9268":7,"9269":5,"9270":4,"9271":8,"9272":7,"9273":7,"9274":8,"9275":8,"9276":9,"9277":8,"9278":8,"9279":6,"9280":10,"9281":7,"9282":8,"9283":2,"9284":5,"9285":5,"9286":2,"9287":7,"9288":5,"9289":6,"9290":8,"9291":7,"9292":7,"9293":2,"9294":9,"9295":2,"9296":7,"9297":3,"9298":9,"9299":8,"9300":7,"9301":2,"9302":2,"9303":10,"9304":10,"9305":2,"9306":6,"9307":8,"9308":2,"9309":8,"9310":8,"9311":8,"9312":1,"9313":8,"9314":2,"9315":8,"9316":5,"9317":6,"9318":1,"9319":2,"9320":2,"9321":4,"9322":2,"9323":8,"9324":8,"9325":7,"9326":9,"9327":4,"9328":5,"9329":1,"9330":8,"9331":1,"9332":1,"9333":4,"9334":4,"9335":1,"9336":8,"9337":2,"9338":2,"9339":2,"9340":3,"9341":3,"9342":5,"9343":4,"9344":7,"9345":7,"9346":10,"9347":7,"9348":7,"9349":7,"9350":5,"9351":7,"9352":5,"9353":4,"9354":8,"9355":3,"9356":3,"9357":7,"9358":8,"9359":4,"9360":7,"9361":2,"9362":9,"9363":2,"9364":8,"9365":2,"9366":5,"9367":4,"9368":1,"9369":9,"9370":8,"9371":7,"9372":8,"9373":5,"9374":7,"9375":2,"9376":8,"9377":9,"9378":10,"9379":8,"9380":7,"9381":2,"9382":2,"9383":3,"9384":7,"9385":10,"9386":8,"9387":1,"9388":9,"9389":10,"9390":2,"9391":5,"9392":4,"9393":9,"9394":10,"9395":7,"9396":5,"9397":10,"9398":8,"9399":7,"9400":2,"9401":2,"9402":7,"9403":5,"9404":6,"9405":3,"9406":8,"9407":9,"9408":2,"9409":8,"9410":2,"9411":3,"9412":9,"9413":8,"9414":8,"9415":7,"9416":7,"9417":3,"9418":2,"9419":8,"9420":10,"9421":9,"9422":3,"9423":8,"9424":9,"9425":1,"9426":7,"9427":3,"9428":8,"9429":2,"9430":8,"9431":2,"9432":6,"9433":8,"9434":7,"9435":5,"9436":7,"9437":2,"9438":7,"9439":7,"9440":2,"9441":7,"9442":5,"9443":1,"9444":8,"9445":5,"9446":6,"9447":6,"9448":4,"9449":7,"9450":4,"9451":9,"9452":8,"9453":2,"9454":3,"9455":7,"9456":7,"9457":7,"9458":7,"9459":9,"9460":10,"9461":9,"9462":8,"9463":5,"9464":5,"9465":1,"9466":1,"9467":10,"9468":1,"9469":7,"9470":3,"9471":3,"9472":9,"9473":7,"9474":8,"9475":3,"9476":9,"9477":8,"9478":9,"9479":8,"9480":2,"9481":3,"9482":5,"9483":9,"9484":9,"9485":8,"9486":8,"9487":10,"9488":5,"9489":8,"9490":7,"9491":8,"9492":2,"9493":7,"9494":2,"9495":1,"9496":9,"9497":8,"9498":9,"9499":5,"9500":5,"9501":10,"9502":8,"9503":6,"9504":5,"9505":8,"9506":3,"9507":10,"9508":8,"9509":9,"9510":5,"9511":2,"9512":9,"9513":6,"9514":5,"9515":9,"9516":5,"9517":4,"9518":9,"9519":5,"9520":5,"9521":3,"9522":7,"9523":8,"9524":8,"9525":6,"9526":4,"9527":8,"9528":9,"9529":7,"9530":1,"9531":7,"9532":8,"9533":1,"9534":2,"9535":3,"9536":9,"9537":4,"9538":2,"9539":5,"9540":7,"9541":7,"9542":3,"9543":10,"9544":4,"9545":7,"9546":7,"9547":7,"9548":1,"9549":7,"9550":8,"9551":7,"9552":10,"9553":10,"9554":6,"9555":9,"9556":2,"9557":7,"9558":2,"9559":2,"9560":5,"9561":1,"9562":5,"9563":7,"9564":8,"9565":8,"9566":9,"9567":8,"9568":8,"9569":4,"9570":8,"9571":8,"9572":9,"9573":9,"9574":8,"9575":2,"9576":4,"9577":5,"9578":10,"9579":5,"9580":9,"9581":9,"9582":8,"9583":8,"9584":2,"9585":4,"9586":10,"9587":4,"9588":8,"9589":8,"9590":8,"9591":8,"9592":9,"9593":2,"9594":9,"9595":6,"9596":9,"9597":9,"9598":7,"9599":3,"9600":9,"9601":3,"9602":5,"9603":3,"9604":7,"9605":1,"9606":9,"9607":10,"9608":7,"9609":9,"9610":7,"9611":9,"9612":8,"9613":5,"9614":1,"9615":3,"9616":7,"9617":4,"9618":8,"9619":9,"9620":5,"9621":10,"9622":5,"9623":9,"9624":2,"9625":5,"9626":9,"9627":5,"9628":6,"9629":7,"9630":8,"9631":5,"9632":9,"9633":8,"9634":9,"9635":8,"9636":1,"9637":2,"9638":5,"9639":9,"9640":7,"9641":9,"9642":9,"9643":8,"9644":4,"9645":7,"9646":7,"9647":8,"9648":7,"9649":4,"9650":7,"9651":8,"9652":7,"9653":7,"9654":3,"9655":7,"9656":7,"9657":2,"9658":7,"9659":7,"9660":1,"9661":8,"9662":2,"9663":5,"9664":8,"9665":2,"9666":3,"9667":7,"9668":9,"9669":7,"9670":7,"9671":7,"9672":4,"9673":6,"9674":9,"9675":2,"9676":10,"9677":8,"9678":8,"9679":9,"9680":7,"9681":5,"9682":9,"9683":4,"9684":2,"9685":7,"9686":8,"9687":7,"9688":8,"9689":7,"9690":6,"9691":5,"9692":1,"9693":5,"9694":9,"9695":5,"9696":8,"9697":9,"9698":8,"9699":6,"9700":5,"9701":9,"9702":8,"9703":9,"9704":5,"9705":7,"9706":7,"9707":8,"9708":10,"9709":2,"9710":5,"9711":9,"9712":6,"9713":7,"9714":6,"9715":2,"9716":2,"9717":8,"9718":7,"9719":7,"9720":2,"9721":8,"9722":8,"9723":7,"9724":5,"9725":8,"9726":7,"9727":2,"9728":7,"9729":5,"9730":5,"9731":2,"9732":3,"9733":1,"9734":7,"9735":7,"9736":5,"9737":8,"9738":7,"9739":5,"9740":5,"9741":7,"9742":8,"9743":8,"9744":9,"9745":9,"9746":6,"9747":6,"9748":8,"9749":5,"9750":7,"9751":8,"9752":7,"9753":1,"9754":3,"9755":6,"9756":2,"9757":9,"9758":9,"9759":7,"9760":9,"9761":8,"9762":9,"9763":9,"9764":4,"9765":4,"9766":9,"9767":6,"9768":7,"9769":9,"9770":4,"9771":7,"9772":1,"9773":8,"9774":7,"9775":7,"9776":3,"9777":8,"9778":2,"9779":7,"9780":8,"9781":3,"9782":10,"9783":5,"9784":10,"9785":7,"9786":8,"9787":9,"9788":7,"9789":6,"9790":9,"9791":5,"9792":5,"9793":3,"9794":5,"9795":4,"9796":8,"9797":5,"9798":8,"9799":9,"9800":1,"9801":2,"9802":7,"9803":8,"9804":5,"9805":5,"9806":5,"9807":8,"9808":10,"9809":7,"9810":8,"9811":7,"9812":7,"9813":6,"9814":2,"9815":7,"9816":7,"9817":2,"9818":5,"9819":10,"9820":8,"9821":9,"9822":2,"9823":7,"9824":9,"9825":1,"9826":5,"9827":2,"9828":7,"9829":10,"9830":4,"9831":2,"9832":2,"9833":7,"9834":9,"9835":2,"9836":2,"9837":2,"9838":7,"9839":9,"9840":9,"9841":3,"9842":10,"9843":8,"9844":2,"9845":2,"9846":5,"9847":9,"9848":8,"9849":8,"9850":8,"9851":7,"9852":1,"9853":3,"9854":9,"9855":9,"9856":2,"9857":9,"9858":1,"9859":8,"9860":5,"9861":8,"9862":3,"9863":3,"9864":8,"9865":8,"9866":7,"9867":7,"9868":8,"9869":2,"9870":8,"9871":2,"9872":8,"9873":6,"9874":8,"9875":8,"9876":3,"9877":4,"9878":5,"9879":5,"9880":9,"9881":5,"9882":7,"9883":9,"9884":4,"9885":6,"9886":10,"9887":5,"9888":6,"9889":8,"9890":8,"9891":7,"9892":7,"9893":9,"9894":5,"9895":8,"9896":9,"9897":8,"9898":8,"9899":2,"9900":9,"9901":1,"9902":7,"9903":5,"9904":5,"9905":8,"9906":5,"9907":7,"9908":7,"9909":8,"9910":7,"9911":5,"9912":7,"9913":10,"9914":7,"9915":8,"9916":9,"9917":8,"9918":8,"9919":8,"9920":4,"9921":7,"9922":7,"9923":7,"9924":5,"9925":4,"9926":5,"9927":4,"9928":4,"9929":8,"9930":4,"9931":5,"9932":5,"9933":7,"9934":8,"9935":8,"9936":9,"9937":7,"9938":2,"9939":3,"9940":7,"9941":8,"9942":7,"9943":5,"9944":10,"9945":10,"9946":8,"9947":5,"9948":6,"9949":4,"9950":2,"9951":5,"9952":9,"9953":5,"9954":6,"9955":5,"9956":7,"9957":7,"9958":6,"9959":6,"9960":7,"9961":6,"9962":7,"9963":9,"9964":7,"9965":7,"9966":4,"9967":7,"9968":6,"9969":7,"9970":8,"9971":8,"9972":8,"9973":8,"9974":5,"9975":7,"9976":7,"9977":8,"9978":7,"9979":2,"9980":8,"9981":2,"9982":3,"9983":8,"9984":7,"9985":8,"9986":8,"9987":2,"9988":8,"9989":8,"9990":6,"9991":3,"9992":2,"9993":8,"9994":8,"9995":4,"9996":7,"9997":10,"9998":8,"9999":3,"10000":3,"10001":8,"10002":8,"10003":10,"10004":9,"10005":7,"10006":8,"10007":9,"10008":9,"10009":8,"10010":6,"10011":3,"10012":2,"10013":8,"10014":6,"10015":5,"10016":7,"10017":8,"10018":6,"10019":6,"10020":10,"10021":8,"10022":8,"10023":7,"10024":5,"10025":1,"10026":2,"10027":9,"10028":7,"10029":2,"10030":8,"10031":9,"10032":5,"10033":4,"10034":5,"10035":7,"10036":8,"10037":7,"10038":5,"10039":3,"10040":8,"10041":7,"10042":9,"10043":7,"10044":5,"10045":3,"10046":5,"10047":9,"10048":10,"10049":1,"10050":7,"10051":3,"10052":2,"10053":5,"10054":7,"10055":4,"10056":9,"10057":6,"10058":8,"10059":8,"10060":7,"10061":6,"10062":8,"10063":2,"10064":9,"10065":4,"10066":7,"10067":1,"10068":9,"10069":8,"10070":5,"10071":6,"10072":10,"10073":2,"10074":7,"10075":9,"10076":7,"10077":3,"10078":8,"10079":8,"10080":9,"10081":7,"10082":9,"10083":5,"10084":7,"10085":9,"10086":7,"10087":9,"10088":8,"10089":10,"10090":7,"10091":9,"10092":9,"10093":2,"10094":8,"10095":6,"10096":7,"10097":2,"10098":8,"10099":8,"10100":8,"10101":2,"10102":7,"10103":7,"10104":9,"10105":8,"10106":7,"10107":9,"10108":10,"10109":8,"10110":2,"10111":8,"10112":9,"10113":9,"10114":8,"10115":5,"10116":7,"10117":8,"10118":8,"10119":1,"10120":1,"10121":4,"10122":8,"10123":1,"10124":9,"10125":7,"10126":8,"10127":7,"10128":8,"10129":3,"10130":2,"10131":9,"10132":8,"10133":6,"10134":5,"10135":7,"10136":5,"10137":8,"10138":8,"10139":9,"10140":5,"10141":2,"10142":3,"10143":10,"10144":7,"10145":9,"10146":9,"10147":7,"10148":8,"10149":9,"10150":3,"10151":8,"10152":8,"10153":8,"10154":5,"10155":8,"10156":2,"10157":9,"10158":8,"10159":2,"10160":7,"10161":9,"10162":10,"10163":4,"10164":7,"10165":7,"10166":7,"10167":3,"10168":9,"10169":10,"10170":8,"10171":8,"10172":9,"10173":5,"10174":7,"10175":9,"10176":2,"10177":8,"10178":8,"10179":8,"10180":5,"10181":6,"10182":9,"10183":9,"10184":7,"10185":3,"10186":7,"10187":9,"10188":7,"10189":7,"10190":8,"10191":9,"10192":2,"10193":4,"10194":2,"10195":8,"10196":6,"10197":7,"10198":2,"10199":5,"10200":1,"10201":6,"10202":7,"10203":5,"10204":9,"10205":6,"10206":7,"10207":1,"10208":7,"10209":7,"10210":5,"10211":10,"10212":2,"10213":5,"10214":7,"10215":7,"10216":3,"10217":7,"10218":7,"10219":7,"10220":9,"10221":4,"10222":5,"10223":7,"10224":7,"10225":8,"10226":5,"10227":9,"10228":7,"10229":8,"10230":5,"10231":7,"10232":4,"10233":2,"10234":9,"10235":8,"10236":7,"10237":8,"10238":6,"10239":5,"10240":7,"10241":8,"10242":5,"10243":8,"10244":8,"10245":5,"10246":5,"10247":10,"10248":8,"10249":9,"10250":8,"10251":8,"10252":4,"10253":4,"10254":9,"10255":7,"10256":1,"10257":8,"10258":5,"10259":9,"10260":8,"10261":1,"10262":9,"10263":7,"10264":2,"10265":7,"10266":7,"10267":7,"10268":3,"10269":8,"10270":8,"10271":7,"10272":7,"10273":7,"10274":7,"10275":2,"10276":7,"10277":9,"10278":2,"10279":1,"10280":5,"10281":9,"10282":9,"10283":9,"10284":4,"10285":9,"10286":8,"10287":2,"10288":7,"10289":2,"10290":9,"10291":5,"10292":8,"10293":4,"10294":7,"10295":10,"10296":8,"10297":4,"10298":7,"10299":2,"10300":3,"10301":2,"10302":8,"10303":3,"10304":9,"10305":7,"10306":5,"10307":9,"10308":5,"10309":5,"10310":5,"10311":8,"10312":8,"10313":10,"10314":9,"10315":3,"10316":8,"10317":3,"10318":4,"10319":7,"10320":4,"10321":5,"10322":9,"10323":8,"10324":8,"10325":7,"10326":10,"10327":4,"10328":2,"10329":7,"10330":9,"10331":2,"10332":3,"10333":7,"10334":7,"10335":9,"10336":2,"10337":2,"10338":10,"10339":9,"10340":2,"10341":5,"10342":9,"10343":7,"10344":7,"10345":9,"10346":7,"10347":7,"10348":2,"10349":9,"10350":6,"10351":6,"10352":6,"10353":6,"10354":5,"10355":7,"10356":8,"10357":2,"10358":8,"10359":9,"10360":8,"10361":7,"10362":8,"10363":9,"10364":10,"10365":7,"10366":8,"10367":7,"10368":9,"10369":8,"10370":7,"10371":2,"10372":7,"10373":4,"10374":4,"10375":6,"10376":7,"10377":9,"10378":9,"10379":8,"10380":3,"10381":5,"10382":4,"10383":8,"10384":3,"10385":10,"10386":7,"10387":3,"10388":8,"10389":8,"10390":9,"10391":8,"10392":8,"10393":9,"10394":7,"10395":10,"10396":7,"10397":7,"10398":9,"10399":9,"10400":6,"10401":5,"10402":4,"10403":4,"10404":8,"10405":3,"10406":10,"10407":2,"10408":1,"10409":7,"10410":8,"10411":7,"10412":8,"10413":7,"10414":6,"10415":8,"10416":5,"10417":6,"10418":7,"10419":7,"10420":8,"10421":8,"10422":3,"10423":9,"10424":10,"10425":7,"10426":2,"10427":3,"10428":9,"10429":7,"10430":1,"10431":9,"10432":10,"10433":8,"10434":3,"10435":4,"10436":4,"10437":6,"10438":3,"10439":8,"10440":7,"10441":5,"10442":1,"10443":7,"10444":7,"10445":8,"10446":9,"10447":9,"10448":7,"10449":5,"10450":7,"10451":7,"10452":2,"10453":4,"10454":9,"10455":8,"10456":5,"10457":7,"10458":2,"10459":2,"10460":5,"10461":2,"10462":2,"10463":7,"10464":7,"10465":4,"10466":6,"10467":8,"10468":9,"10469":5,"10470":7,"10471":9,"10472":8,"10473":6,"10474":4,"10475":1,"10476":9,"10477":9,"10478":9,"10479":7,"10480":3,"10481":5,"10482":8,"10483":8,"10484":4,"10485":8,"10486":9,"10487":6,"10488":9,"10489":6,"10490":7,"10491":5,"10492":2,"10493":6,"10494":3,"10495":8,"10496":7,"10497":10,"10498":7,"10499":6,"10500":5,"10501":9,"10502":5,"10503":4,"10504":3,"10505":2,"10506":8,"10507":1,"10508":8,"10509":2,"10510":9,"10511":8,"10512":8,"10513":4,"10514":2,"10515":9,"10516":8,"10517":8,"10518":3,"10519":5,"10520":3,"10521":7,"10522":2,"10523":7,"10524":7,"10525":1,"10526":8,"10527":7,"10528":6,"10529":5,"10530":10,"10531":7,"10532":8,"10533":5,"10534":7,"10535":7,"10536":7,"10537":8,"10538":4,"10539":10,"10540":4,"10541":2,"10542":7,"10543":7,"10544":7,"10545":8,"10546":8,"10547":8,"10548":7,"10549":8,"10550":7,"10551":8,"10552":2,"10553":7,"10554":8,"10555":9,"10556":2,"10557":8,"10558":5,"10559":5,"10560":6,"10561":8,"10562":7,"10563":6,"10564":9,"10565":5,"10566":7,"10567":7,"10568":7,"10569":9,"10570":5,"10571":8,"10572":5,"10573":2,"10574":1,"10575":8,"10576":8,"10577":7,"10578":6,"10579":8,"10580":8,"10581":5,"10582":8,"10583":8,"10584":8,"10585":1,"10586":6,"10587":9,"10588":3,"10589":7,"10590":5,"10591":4,"10592":7,"10593":6,"10594":10,"10595":7,"10596":7,"10597":8,"10598":2,"10599":10,"10600":2,"10601":2,"10602":2,"10603":8,"10604":5,"10605":8,"10606":4,"10607":3,"10608":8,"10609":6,"10610":8,"10611":9,"10612":1,"10613":2,"10614":2,"10615":8,"10616":9,"10617":9,"10618":9,"10619":9,"10620":1,"10621":3,"10622":4,"10623":5,"10624":9,"10625":9,"10626":7,"10627":9,"10628":8,"10629":2,"10630":9,"10631":9,"10632":9,"10633":7,"10634":8,"10635":8,"10636":9,"10637":9,"10638":7,"10639":4,"10640":8,"10641":3,"10642":7,"10643":5,"10644":5,"10645":7,"10646":4,"10647":9,"10648":2,"10649":9,"10650":2,"10651":4,"10652":8,"10653":9,"10654":7,"10655":5,"10656":2,"10657":7,"10658":5,"10659":2,"10660":4,"10661":8,"10662":7,"10663":3,"10664":7,"10665":9,"10666":2,"10667":10,"10668":5,"10669":6,"10670":10,"10671":8,"10672":3,"10673":7,"10674":6,"10675":7,"10676":9,"10677":4,"10678":2,"10679":2,"10680":5,"10681":1,"10682":7,"10683":2,"10684":9,"10685":9,"10686":2,"10687":7,"10688":6,"10689":2,"10690":6,"10691":8,"10692":8,"10693":7,"10694":3,"10695":10,"10696":7,"10697":8,"10698":3,"10699":4,"10700":10,"10701":8,"10702":5,"10703":4,"10704":7,"10705":9,"10706":7,"10707":7,"10708":2,"10709":7,"10710":7,"10711":5,"10712":2,"10713":10,"10714":2,"10715":9,"10716":8,"10717":6,"10718":2,"10719":7,"10720":7,"10721":2,"10722":2,"10723":7,"10724":7,"10725":10,"10726":8,"10727":1,"10728":4,"10729":9,"10730":2,"10731":7,"10732":2,"10733":6,"10734":9,"10735":5,"10736":3,"10737":7,"10738":7,"10739":7,"10740":8,"10741":8,"10742":8,"10743":5,"10744":6,"10745":7,"10746":5,"10747":9,"10748":7,"10749":7,"10750":2,"10751":4,"10752":5,"10753":9,"10754":8,"10755":4,"10756":9,"10757":8,"10758":8,"10759":9,"10760":7,"10761":9,"10762":7,"10763":5,"10764":6,"10765":3,"10766":3,"10767":7,"10768":6,"10769":4,"10770":8,"10771":5,"10772":8,"10773":7,"10774":9,"10775":8,"10776":6,"10777":9,"10778":1,"10779":3,"10780":7,"10781":2,"10782":8,"10783":8,"10784":9,"10785":9,"10786":8,"10787":8,"10788":8,"10789":8,"10790":2,"10791":8,"10792":5,"10793":8,"10794":9,"10795":10,"10796":3,"10797":7,"10798":9,"10799":3,"10800":8,"10801":9,"10802":2,"10803":10,"10804":5,"10805":10,"10806":4,"10807":8,"10808":8,"10809":9,"10810":8,"10811":6,"10812":5,"10813":7,"10814":8,"10815":8,"10816":7,"10817":9,"10818":8,"10819":6,"10820":7,"10821":9,"10822":4,"10823":3,"10824":8,"10825":8,"10826":2,"10827":7,"10828":6,"10829":2,"10830":2,"10831":2,"10832":9,"10833":5,"10834":7,"10835":5,"10836":6,"10837":1,"10838":7,"10839":9,"10840":8,"10841":5,"10842":7,"10843":2,"10844":8,"10845":7,"10846":7,"10847":9,"10848":8,"10849":1,"10850":7,"10851":7,"10852":2,"10853":7,"10854":9,"10855":8,"10856":5,"10857":9,"10858":2,"10859":3,"10860":8,"10861":9,"10862":8,"10863":5,"10864":9,"10865":5,"10866":9,"10867":10,"10868":2,"10869":3,"10870":7,"10871":7,"10872":7,"10873":9,"10874":4,"10875":7,"10876":7,"10877":7,"10878":9,"10879":7,"10880":5,"10881":3,"10882":10,"10883":9,"10884":1,"10885":7,"10886":8,"10887":1,"10888":10,"10889":7,"10890":8,"10891":9,"10892":5,"10893":6,"10894":9,"10895":3,"10896":6,"10897":7,"10898":1,"10899":9,"10900":8,"10901":5,"10902":9,"10903":1,"10904":4,"10905":8,"10906":6,"10907":8,"10908":2,"10909":7,"10910":7,"10911":8,"10912":6,"10913":3,"10914":9,"10915":7,"10916":3,"10917":8,"10918":9,"10919":6,"10920":1,"10921":5,"10922":5,"10923":9,"10924":8,"10925":8,"10926":3,"10927":7,"10928":5,"10929":9,"10930":9,"10931":8,"10932":4,"10933":7,"10934":8,"10935":10,"10936":7,"10937":9,"10938":9,"10939":1,"10940":5,"10941":8,"10942":8,"10943":5,"10944":3,"10945":8,"10946":2,"10947":3,"10948":10,"10949":10,"10950":6,"10951":8,"10952":9,"10953":7,"10954":5,"10955":7,"10956":1,"10957":7,"10958":2,"10959":9,"10960":7,"10961":9,"10962":10,"10963":7,"10964":1,"10965":4,"10966":3,"10967":5,"10968":9,"10969":2,"10970":7,"10971":7,"10972":7,"10973":5,"10974":7,"10975":7,"10976":5,"10977":4,"10978":8,"10979":7,"10980":3,"10981":1,"10982":8,"10983":8,"10984":4,"10985":1,"10986":5,"10987":7,"10988":5,"10989":3,"10990":7,"10991":10,"10992":5,"10993":6,"10994":9,"10995":3,"10996":5,"10997":7,"10998":3,"10999":4,"11000":5,"11001":3,"11002":5,"11003":8,"11004":3,"11005":5,"11006":10,"11007":7,"11008":7,"11009":2,"11010":4,"11011":7,"11012":7,"11013":2,"11014":8,"11015":5,"11016":8,"11017":5,"11018":3,"11019":10,"11020":7,"11021":5,"11022":2,"11023":6,"11024":6,"11025":5,"11026":2,"11027":9,"11028":9,"11029":7,"11030":9,"11031":6,"11032":8,"11033":4,"11034":8,"11035":9,"11036":3,"11037":6,"11038":2,"11039":7,"11040":2,"11041":7,"11042":8,"11043":4,"11044":6,"11045":7,"11046":7,"11047":7,"11048":2,"11049":2,"11050":9,"11051":7,"11052":9,"11053":7,"11054":3,"11055":7,"11056":3,"11057":5,"11058":6,"11059":7,"11060":10,"11061":8,"11062":9,"11063":4,"11064":8,"11065":6,"11066":7,"11067":3,"11068":7,"11069":8,"11070":4,"11071":9,"11072":1,"11073":8,"11074":7,"11075":5,"11076":1,"11077":7,"11078":8,"11079":7,"11080":8,"11081":5,"11082":5,"11083":8,"11084":9,"11085":7,"11086":9,"11087":8,"11088":9,"11089":7,"11090":7,"11091":8,"11092":4,"11093":8,"11094":7,"11095":4,"11096":3,"11097":1,"11098":5,"11099":5,"11100":9,"11101":8,"11102":6,"11103":10,"11104":5,"11105":2,"11106":7,"11107":5,"11108":3,"11109":7,"11110":5,"11111":9,"11112":2,"11113":9,"11114":7,"11115":2,"11116":7,"11117":7,"11118":10,"11119":7,"11120":8,"11121":8,"11122":3,"11123":8,"11124":3,"11125":8,"11126":5,"11127":8,"11128":1,"11129":3,"11130":8,"11131":6,"11132":2,"11133":8,"11134":2,"11135":9,"11136":2,"11137":7,"11138":5,"11139":10,"11140":3,"11141":4,"11142":7,"11143":2,"11144":3,"11145":7,"11146":7,"11147":7,"11148":8,"11149":7,"11150":8,"11151":4,"11152":7,"11153":6,"11154":8,"11155":10,"11156":9,"11157":7,"11158":4,"11159":9,"11160":4,"11161":3,"11162":5,"11163":8,"11164":8,"11165":5,"11166":7,"11167":8,"11168":7,"11169":8,"11170":4,"11171":9,"11172":5,"11173":5,"11174":5,"11175":8,"11176":8,"11177":3,"11178":8,"11179":8,"11180":8,"11181":1,"11182":8,"11183":8,"11184":9,"11185":10,"11186":9,"11187":4,"11188":2,"11189":1,"11190":6,"11191":9,"11192":1,"11193":10,"11194":3,"11195":4,"11196":8,"11197":5,"11198":8,"11199":2,"11200":8,"11201":8,"11202":2,"11203":9,"11204":7,"11205":8,"11206":2,"11207":10,"11208":10,"11209":9,"11210":8,"11211":2,"11212":4,"11213":9,"11214":3,"11215":9,"11216":6,"11217":6,"11218":7,"11219":7,"11220":8,"11221":7,"11222":2,"11223":2,"11224":5,"11225":7,"11226":7,"11227":9,"11228":3,"11229":8,"11230":8,"11231":3,"11232":7,"11233":7,"11234":7,"11235":7,"11236":10,"11237":2,"11238":4,"11239":8,"11240":9,"11241":9,"11242":8,"11243":7,"11244":2,"11245":8,"11246":6,"11247":2,"11248":1,"11249":8,"11250":3,"11251":7,"11252":9,"11253":4,"11254":9,"11255":2,"11256":9,"11257":1,"11258":2,"11259":2,"11260":4,"11261":8,"11262":8,"11263":5,"11264":3,"11265":7,"11266":8,"11267":8,"11268":5,"11269":9,"11270":2,"11271":2,"11272":9,"11273":8,"11274":8,"11275":2,"11276":5,"11277":8,"11278":6,"11279":7,"11280":8,"11281":8,"11282":8,"11283":9,"11284":7,"11285":10,"11286":6,"11287":8,"11288":7,"11289":4,"11290":7,"11291":2,"11292":9,"11293":3,"11294":2,"11295":9,"11296":2,"11297":5,"11298":10,"11299":4,"11300":5,"11301":5,"11302":9,"11303":9,"11304":5,"11305":6,"11306":10,"11307":8,"11308":9,"11309":3,"11310":5,"11311":5,"11312":5,"11313":7,"11314":4,"11315":5,"11316":7,"11317":6,"11318":7,"11319":2,"11320":1,"11321":5,"11322":9,"11323":7,"11324":9,"11325":8,"11326":10,"11327":5,"11328":7,"11329":9,"11330":5,"11331":7,"11332":8,"11333":9,"11334":8,"11335":7,"11336":9,"11337":8,"11338":1,"11339":7,"11340":7,"11341":10,"11342":8,"11343":4,"11344":9,"11345":7,"11346":8,"11347":10,"11348":5,"11349":7,"11350":8,"11351":9,"11352":7,"11353":7,"11354":9,"11355":2,"11356":8,"11357":8,"11358":9,"11359":3,"11360":9,"11361":6,"11362":9,"11363":8,"11364":7,"11365":7,"11366":9,"11367":8,"11368":4,"11369":7,"11370":8,"11371":9,"11372":4,"11373":7,"11374":3,"11375":9,"11376":5,"11377":3,"11378":7,"11379":5,"11380":3,"11381":4,"11382":8,"11383":9,"11384":7,"11385":1,"11386":9,"11387":8,"11388":1,"11389":7,"11390":8,"11391":8,"11392":8,"11393":3,"11394":9,"11395":7,"11396":6,"11397":8,"11398":7,"11399":4,"11400":2,"11401":9,"11402":8,"11403":9,"11404":9,"11405":6,"11406":5,"11407":2,"11408":10,"11409":3,"11410":7,"11411":8,"11412":1,"11413":9,"11414":7,"11415":8,"11416":7,"11417":7,"11418":10,"11419":8,"11420":7,"11421":7,"11422":4,"11423":8,"11424":9,"11425":10,"11426":8,"11427":2,"11428":4,"11429":8,"11430":7,"11431":1,"11432":8,"11433":7,"11434":7,"11435":5,"11436":5,"11437":7,"11438":7,"11439":8,"11440":8,"11441":7,"11442":2,"11443":2,"11444":9,"11445":9,"11446":7,"11447":10,"11448":4,"11449":6,"11450":8,"11451":6,"11452":7,"11453":4,"11454":8,"11455":9,"11456":10,"11457":1,"11458":8,"11459":9,"11460":2,"11461":2,"11462":7,"11463":2,"11464":7,"11465":9,"11466":8,"11467":9,"11468":9,"11469":6,"11470":7,"11471":10,"11472":9,"11473":8,"11474":9,"11475":7,"11476":3,"11477":8,"11478":7,"11479":2,"11480":8,"11481":8,"11482":9,"11483":7,"11484":8,"11485":3,"11486":8,"11487":7,"11488":9,"11489":4,"11490":6,"11491":7,"11492":8,"11493":8,"11494":7,"11495":8,"11496":10,"11497":2,"11498":7,"11499":8,"11500":8,"11501":6,"11502":5,"11503":2,"11504":10,"11505":9,"11506":5,"11507":8,"11508":9,"11509":9,"11510":2,"11511":7,"11512":4,"11513":7,"11514":4,"11515":5,"11516":8,"11517":10,"11518":9,"11519":3,"11520":9,"11521":9,"11522":2,"11523":7,"11524":8,"11525":4,"11526":5,"11527":5,"11528":7,"11529":9,"11530":3,"11531":7,"11532":5,"11533":8,"11534":5,"11535":7,"11536":9,"11537":5,"11538":3,"11539":6,"11540":9,"11541":9,"11542":3,"11543":7,"11544":8,"11545":6,"11546":8,"11547":7,"11548":7,"11549":2,"11550":8,"11551":3,"11552":2,"11553":9,"11554":7,"11555":8,"11556":3,"11557":5,"11558":9,"11559":5,"11560":9,"11561":8,"11562":7,"11563":7,"11564":7,"11565":7,"11566":7,"11567":2,"11568":7,"11569":5,"11570":6,"11571":7,"11572":7,"11573":4,"11574":1,"11575":2,"11576":8,"11577":7,"11578":8,"11579":2,"11580":1,"11581":1,"11582":3,"11583":7,"11584":8,"11585":9,"11586":9,"11587":8,"11588":1,"11589":5,"11590":7,"11591":5,"11592":2,"11593":5,"11594":3,"11595":7,"11596":10,"11597":1,"11598":5,"11599":2,"11600":1,"11601":8,"11602":9,"11603":4,"11604":6,"11605":7,"11606":7,"11607":7,"11608":5,"11609":2,"11610":2,"11611":6,"11612":2,"11613":8,"11614":3,"11615":8,"11616":5,"11617":2,"11618":6,"11619":8,"11620":6,"11621":5,"11622":10,"11623":2,"11624":8,"11625":8,"11626":7,"11627":7,"11628":8,"11629":8,"11630":9,"11631":8,"11632":7,"11633":8,"11634":2,"11635":6,"11636":7,"11637":8,"11638":6,"11639":9,"11640":4,"11641":10,"11642":9,"11643":1,"11644":7,"11645":7,"11646":2,"11647":8,"11648":9,"11649":5,"11650":8,"11651":9,"11652":6,"11653":2,"11654":9,"11655":5,"11656":2,"11657":2,"11658":2,"11659":7,"11660":7,"11661":8,"11662":5,"11663":8,"11664":8,"11665":8,"11666":4,"11667":10,"11668":5,"11669":5,"11670":2,"11671":9,"11672":1,"11673":1,"11674":9,"11675":8,"11676":7,"11677":8,"11678":4,"11679":8,"11680":7,"11681":9,"11682":10,"11683":5,"11684":9,"11685":9,"11686":4,"11687":5,"11688":7,"11689":9,"11690":3,"11691":5,"11692":2,"11693":6,"11694":3,"11695":3,"11696":2,"11697":6,"11698":9,"11699":4,"11700":7,"11701":9,"11702":9,"11703":6,"11704":9,"11705":4,"11706":9,"11707":7,"11708":7,"11709":2,"11710":6,"11711":2,"11712":2,"11713":9,"11714":7,"11715":5,"11716":1,"11717":8,"11718":6,"11719":2,"11720":8,"11721":9,"11722":4,"11723":6,"11724":7,"11725":10,"11726":7,"11727":7,"11728":6,"11729":6,"11730":3,"11731":5,"11732":7,"11733":6,"11734":7,"11735":3,"11736":9,"11737":10,"11738":5,"11739":9,"11740":8,"11741":1,"11742":7,"11743":4,"11744":8,"11745":8,"11746":9,"11747":3,"11748":2,"11749":7,"11750":8,"11751":7,"11752":8,"11753":10,"11754":7,"11755":8,"11756":9,"11757":9,"11758":5,"11759":8,"11760":9,"11761":7,"11762":7,"11763":9,"11764":7,"11765":7,"11766":9,"11767":7,"11768":8,"11769":9,"11770":3,"11771":6,"11772":9,"11773":10,"11774":5,"11775":4,"11776":5,"11777":8,"11778":8,"11779":8,"11780":2,"11781":3,"11782":4,"11783":3,"11784":9,"11785":7,"11786":3,"11787":10,"11788":4,"11789":4,"11790":7,"11791":8,"11792":2,"11793":8,"11794":5,"11795":3,"11796":2,"11797":7,"11798":2,"11799":4,"11800":2,"11801":9,"11802":7,"11803":5,"11804":7,"11805":8,"11806":2,"11807":8,"11808":8,"11809":7,"11810":6,"11811":9,"11812":9,"11813":4,"11814":7,"11815":4,"11816":8,"11817":8,"11818":10,"11819":3,"11820":10,"11821":9,"11822":9,"11823":1,"11824":7,"11825":10,"11826":4,"11827":5,"11828":2,"11829":2,"11830":8,"11831":3,"11832":2,"11833":3,"11834":8,"11835":6,"11836":5,"11837":8,"11838":8,"11839":8,"11840":7,"11841":2,"11842":8,"11843":4,"11844":3,"11845":5,"11846":1,"11847":4,"11848":8,"11849":5,"11850":9,"11851":1,"11852":8,"11853":6,"11854":9,"11855":8,"11856":7,"11857":9,"11858":7,"11859":2,"11860":8,"11861":7,"11862":9,"11863":8,"11864":2,"11865":8,"11866":5,"11867":5,"11868":7,"11869":9,"11870":8,"11871":5,"11872":8,"11873":3,"11874":2,"11875":8,"11876":2,"11877":8,"11878":4,"11879":8,"11880":9,"11881":8,"11882":8,"11883":7,"11884":3,"11885":5,"11886":10,"11887":7,"11888":7,"11889":7,"11890":7,"11891":3,"11892":2,"11893":2,"11894":8,"11895":9,"11896":5,"11897":9,"11898":1,"11899":9,"11900":2,"11901":1,"11902":1,"11903":8,"11904":2,"11905":8,"11906":3,"11907":9,"11908":8,"11909":1,"11910":7,"11911":4,"11912":8,"11913":9,"11914":8,"11915":7,"11916":4,"11917":1,"11918":2,"11919":4,"11920":1,"11921":2,"11922":2,"11923":9,"11924":9,"11925":4,"11926":7,"11927":2,"11928":8,"11929":8,"11930":8,"11931":8,"11932":8,"11933":10,"11934":8,"11935":9,"11936":1,"11937":3,"11938":10,"11939":9,"11940":1,"11941":2,"11942":8,"11943":7,"11944":8,"11945":1,"11946":2,"11947":3,"11948":8,"11949":7,"11950":10,"11951":2,"11952":7,"11953":7,"11954":8,"11955":10,"11956":5,"11957":2,"11958":10,"11959":6,"11960":7,"11961":6,"11962":7,"11963":8,"11964":5,"11965":9,"11966":7,"11967":8,"11968":7,"11969":8,"11970":3,"11971":5,"11972":10,"11973":5,"11974":3,"11975":5,"11976":7,"11977":8,"11978":3,"11979":6,"11980":8,"11981":5,"11982":8,"11983":3,"11984":6,"11985":7,"11986":4,"11987":10,"11988":7,"11989":7,"11990":7,"11991":9,"11992":9,"11993":5,"11994":5,"11995":8,"11996":8,"11997":5,"11998":8,"11999":6,"12000":1,"12001":8,"12002":8,"12003":3,"12004":7,"12005":4,"12006":8,"12007":7,"12008":10,"12009":10,"12010":4,"12011":1,"12012":8,"12013":10,"12014":5,"12015":2,"12016":9,"12017":8,"12018":7,"12019":9,"12020":6,"12021":9,"12022":7,"12023":3,"12024":7,"12025":5,"12026":8,"12027":1,"12028":9,"12029":7,"12030":7,"12031":4,"12032":8,"12033":2,"12034":5,"12035":8,"12036":1,"12037":9,"12038":9,"12039":1,"12040":10,"12041":10,"12042":1,"12043":9,"12044":7,"12045":7,"12046":6,"12047":7,"12048":5,"12049":7,"12050":7,"12051":5,"12052":2,"12053":1,"12054":6,"12055":5,"12056":7,"12057":10,"12058":8,"12059":7,"12060":7,"12061":10,"12062":8,"12063":8,"12064":10,"12065":7,"12066":5,"12067":4,"12068":1,"12069":1,"12070":9,"12071":8,"12072":6,"12073":8,"12074":7,"12075":8,"12076":9,"12077":10,"12078":5,"12079":2,"12080":8,"12081":5,"12082":5,"12083":8,"12084":2,"12085":4,"12086":2,"12087":5,"12088":3,"12089":8,"12090":5,"12091":5,"12092":8,"12093":4,"12094":8,"12095":8,"12096":8,"12097":8,"12098":7,"12099":3,"12100":3,"12101":9,"12102":2,"12103":5,"12104":9,"12105":7,"12106":7,"12107":2,"12108":3,"12109":7,"12110":9,"12111":8,"12112":8,"12113":4,"12114":3,"12115":9,"12116":7,"12117":8,"12118":1,"12119":7,"12120":5,"12121":3,"12122":7,"12123":7,"12124":8,"12125":8,"12126":2,"12127":6,"12128":7,"12129":8,"12130":3,"12131":8,"12132":7,"12133":2,"12134":9,"12135":6,"12136":2,"12137":8,"12138":2,"12139":9,"12140":7,"12141":10,"12142":6,"12143":9,"12144":7,"12145":9,"12146":8,"12147":9,"12148":9,"12149":1,"12150":7,"12151":1,"12152":4,"12153":6,"12154":5,"12155":7,"12156":1,"12157":5,"12158":7,"12159":5,"12160":10,"12161":1,"12162":7,"12163":6,"12164":7,"12165":1,"12166":5,"12167":8,"12168":7,"12169":9,"12170":9,"12171":7,"12172":3,"12173":2,"12174":7,"12175":7,"12176":5,"12177":7,"12178":8,"12179":6,"12180":1,"12181":5,"12182":2,"12183":9,"12184":8,"12185":9,"12186":9,"12187":6,"12188":9,"12189":8,"12190":10,"12191":5,"12192":6,"12193":5,"12194":8,"12195":5,"12196":4,"12197":7,"12198":6,"12199":10,"12200":7,"12201":7,"12202":7,"12203":8,"12204":7,"12205":10,"12206":9,"12207":5,"12208":2,"12209":6,"12210":9,"12211":3,"12212":2,"12213":3,"12214":1,"12215":6,"12216":8,"12217":8,"12218":9,"12219":5,"12220":9,"12221":5,"12222":9,"12223":8,"12224":2,"12225":2,"12226":9,"12227":8,"12228":7,"12229":9,"12230":9,"12231":8,"12232":5,"12233":9,"12234":2,"12235":7,"12236":7,"12237":8,"12238":8,"12239":7,"12240":5,"12241":7,"12242":8,"12243":4,"12244":3,"12245":7,"12246":9,"12247":6,"12248":9,"12249":8,"12250":10,"12251":4,"12252":9,"12253":7,"12254":3,"12255":7,"12256":4,"12257":7,"12258":8,"12259":8,"12260":7,"12261":7,"12262":9,"12263":3,"12264":10,"12265":1,"12266":8,"12267":9,"12268":8,"12269":2,"12270":7,"12271":7,"12272":9,"12273":5,"12274":9,"12275":1,"12276":3,"12277":1,"12278":4,"12279":7,"12280":8,"12281":7,"12282":7,"12283":5,"12284":10,"12285":8,"12286":2,"12287":4,"12288":3,"12289":4,"12290":8,"12291":3,"12292":2,"12293":6,"12294":10,"12295":3,"12296":7,"12297":5,"12298":3,"12299":5,"12300":7,"12301":8,"12302":8,"12303":9,"12304":6,"12305":4,"12306":7,"12307":1,"12308":4,"12309":2,"12310":8,"12311":7,"12312":9,"12313":4,"12314":6,"12315":8,"12316":1,"12317":6,"12318":2,"12319":2,"12320":3,"12321":3,"12322":7,"12323":4,"12324":2,"12325":7,"12326":9,"12327":5,"12328":4,"12329":8,"12330":9,"12331":3,"12332":9,"12333":8,"12334":10,"12335":1,"12336":9,"12337":5,"12338":4,"12339":7,"12340":10,"12341":7,"12342":6,"12343":7,"12344":8,"12345":10,"12346":7,"12347":8,"12348":2,"12349":8,"12350":2,"12351":7,"12352":9,"12353":2,"12354":2,"12355":5,"12356":7,"12357":5,"12358":8,"12359":9,"12360":9,"12361":7,"12362":7,"12363":3,"12364":9,"12365":6,"12366":9,"12367":3,"12368":8,"12369":8,"12370":3,"12371":10,"12372":2,"12373":6,"12374":2,"12375":9,"12376":10,"12377":5,"12378":7,"12379":8,"12380":7,"12381":8,"12382":7,"12383":7,"12384":7,"12385":3,"12386":5,"12387":8,"12388":5,"12389":9,"12390":9,"12391":8,"12392":8,"12393":8,"12394":5,"12395":5,"12396":2,"12397":5,"12398":3,"12399":5,"12400":5,"12401":8,"12402":9,"12403":3,"12404":10,"12405":8,"12406":7,"12407":9,"12408":7,"12409":10,"12410":9,"12411":8,"12412":7,"12413":8,"12414":5,"12415":6,"12416":7,"12417":7,"12418":2,"12419":2,"12420":6,"12421":2,"12422":7,"12423":7,"12424":5,"12425":1,"12426":1,"12427":3,"12428":9,"12429":6,"12430":8,"12431":3,"12432":8,"12433":7,"12434":5,"12435":7,"12436":5,"12437":9,"12438":9,"12439":6,"12440":7,"12441":1,"12442":9,"12443":4,"12444":9,"12445":5,"12446":10,"12447":1,"12448":5,"12449":6,"12450":7,"12451":3,"12452":7,"12453":7,"12454":8,"12455":2,"12456":5,"12457":9,"12458":6,"12459":4,"12460":5,"12461":7,"12462":9,"12463":1,"12464":2,"12465":5,"12466":1,"12467":6,"12468":8,"12469":8,"12470":7,"12471":2,"12472":8,"12473":1,"12474":6,"12475":7,"12476":7,"12477":2,"12478":9,"12479":8,"12480":8,"12481":3,"12482":8,"12483":4,"12484":3,"12485":9,"12486":2,"12487":7,"12488":4,"12489":2,"12490":7,"12491":7,"12492":8,"12493":1,"12494":3,"12495":9,"12496":2,"12497":9,"12498":3,"12499":7,"12500":4,"12501":2,"12502":8,"12503":10,"12504":2,"12505":7,"12506":7,"12507":5,"12508":8,"12509":2,"12510":2,"12511":9,"12512":9,"12513":8,"12514":9,"12515":2,"12516":7,"12517":8,"12518":7,"12519":7,"12520":5,"12521":1,"12522":3,"12523":8,"12524":3,"12525":9,"12526":10,"12527":7,"12528":5,"12529":8,"12530":8,"12531":8,"12532":2,"12533":7,"12534":5,"12535":8,"12536":8,"12537":10,"12538":9,"12539":5,"12540":6,"12541":5,"12542":5,"12543":9,"12544":9,"12545":7,"12546":8,"12547":1,"12548":8,"12549":9,"12550":9,"12551":8,"12552":9,"12553":7,"12554":9,"12555":8,"12556":5,"12557":2,"12558":4,"12559":10,"12560":7,"12561":7,"12562":8,"12563":10,"12564":8,"12565":7,"12566":4,"12567":3,"12568":9,"12569":2,"12570":4,"12571":7,"12572":5,"12573":2,"12574":6,"12575":8,"12576":2,"12577":8,"12578":8,"12579":7,"12580":8,"12581":7,"12582":5,"12583":2,"12584":9,"12585":2,"12586":8,"12587":9,"12588":7,"12589":5,"12590":3,"12591":8,"12592":8,"12593":9,"12594":4,"12595":10,"12596":7,"12597":7,"12598":8,"12599":5,"12600":9,"12601":1,"12602":9,"12603":4,"12604":7,"12605":9,"12606":7,"12607":1,"12608":5,"12609":8,"12610":8,"12611":7,"12612":3,"12613":3,"12614":7,"12615":7,"12616":7,"12617":2,"12618":2,"12619":8,"12620":7,"12621":7,"12622":5,"12623":8,"12624":9,"12625":3,"12626":8,"12627":2,"12628":8,"12629":8,"12630":8,"12631":5,"12632":9,"12633":1,"12634":2,"12635":8,"12636":7,"12637":4,"12638":5,"12639":1,"12640":3,"12641":7,"12642":2,"12643":10,"12644":2,"12645":7,"12646":4,"12647":8,"12648":8,"12649":5,"12650":9,"12651":7,"12652":8,"12653":9,"12654":1,"12655":7,"12656":7,"12657":7,"12658":3,"12659":7,"12660":2,"12661":9,"12662":8,"12663":2,"12664":9,"12665":2,"12666":9,"12667":2,"12668":3,"12669":4,"12670":4,"12671":10,"12672":7,"12673":9,"12674":4,"12675":1,"12676":7,"12677":9,"12678":8,"12679":10,"12680":4,"12681":10,"12682":8,"12683":2,"12684":9,"12685":7,"12686":8,"12687":10,"12688":7,"12689":8,"12690":7,"12691":1,"12692":7,"12693":5,"12694":7,"12695":6,"12696":7,"12697":9,"12698":9,"12699":6,"12700":9,"12701":2,"12702":7,"12703":7,"12704":8,"12705":5,"12706":6,"12707":2,"12708":9,"12709":2,"12710":4,"12711":4,"12712":7,"12713":9,"12714":7,"12715":1,"12716":9,"12717":1,"12718":1,"12719":9,"12720":10,"12721":7,"12722":6,"12723":8,"12724":8,"12725":9,"12726":2,"12727":8,"12728":9,"12729":8,"12730":10,"12731":8,"12732":1,"12733":8,"12734":10,"12735":5,"12736":4,"12737":4,"12738":7,"12739":3,"12740":7,"12741":2,"12742":6,"12743":7,"12744":2,"12745":2,"12746":1,"12747":8,"12748":9,"12749":4,"12750":8,"12751":8,"12752":4,"12753":2,"12754":2,"12755":7,"12756":9,"12757":2,"12758":9,"12759":4,"12760":10,"12761":5,"12762":6,"12763":7,"12764":7,"12765":8,"12766":8,"12767":7,"12768":7,"12769":3,"12770":9,"12771":8,"12772":7,"12773":4,"12774":5,"12775":8,"12776":5,"12777":2,"12778":10,"12779":1,"12780":8,"12781":8,"12782":8,"12783":9,"12784":4,"12785":3,"12786":6,"12787":8,"12788":8,"12789":9,"12790":1,"12791":3,"12792":9,"12793":1,"12794":5,"12795":5,"12796":5,"12797":3,"12798":1,"12799":8,"12800":10,"12801":9,"12802":5,"12803":2,"12804":10,"12805":7,"12806":8,"12807":7,"12808":7,"12809":7,"12810":9,"12811":7,"12812":2,"12813":5,"12814":6,"12815":7,"12816":8,"12817":2,"12818":7,"12819":4,"12820":9,"12821":7,"12822":10,"12823":6,"12824":1,"12825":7,"12826":10,"12827":8,"12828":8,"12829":2,"12830":4,"12831":3,"12832":1,"12833":5,"12834":2,"12835":7,"12836":4,"12837":4,"12838":1,"12839":3,"12840":7,"12841":10,"12842":1,"12843":7,"12844":8,"12845":3,"12846":2,"12847":4,"12848":7,"12849":3,"12850":2,"12851":7,"12852":6,"12853":7,"12854":3,"12855":5,"12856":3,"12857":4,"12858":3,"12859":7,"12860":3,"12861":3,"12862":5,"12863":7,"12864":5,"12865":9,"12866":8,"12867":7,"12868":2,"12869":8,"12870":3,"12871":10,"12872":10,"12873":4,"12874":7,"12875":4,"12876":5,"12877":7,"12878":5,"12879":10,"12880":1,"12881":5,"12882":2,"12883":2,"12884":9,"12885":8,"12886":2,"12887":3,"12888":8,"12889":8,"12890":1,"12891":9,"12892":7,"12893":8,"12894":7,"12895":7,"12896":2,"12897":5,"12898":7,"12899":9,"12900":7,"12901":8,"12902":8,"12903":8,"12904":1,"12905":5,"12906":8,"12907":8,"12908":5,"12909":7,"12910":7,"12911":7,"12912":8,"12913":5,"12914":8,"12915":5,"12916":9,"12917":1,"12918":3,"12919":7,"12920":7,"12921":9,"12922":3,"12923":7,"12924":7,"12925":7,"12926":5,"12927":10,"12928":9,"12929":3,"12930":7,"12931":3,"12932":9,"12933":9,"12934":7,"12935":8,"12936":8,"12937":1,"12938":8,"12939":10,"12940":8,"12941":4,"12942":9,"12943":8,"12944":9,"12945":5,"12946":6,"12947":4,"12948":8,"12949":8,"12950":7,"12951":8,"12952":9,"12953":9,"12954":9,"12955":8,"12956":7,"12957":5,"12958":7,"12959":1,"12960":5,"12961":7,"12962":7,"12963":10,"12964":2,"12965":4,"12966":6,"12967":8,"12968":7,"12969":10,"12970":9,"12971":8,"12972":2,"12973":9,"12974":1,"12975":7,"12976":4,"12977":8,"12978":6,"12979":4,"12980":2,"12981":5,"12982":8,"12983":8,"12984":8,"12985":9,"12986":3,"12987":5,"12988":7,"12989":8,"12990":9,"12991":2,"12992":6,"12993":9,"12994":5,"12995":7,"12996":8,"12997":7,"12998":8,"12999":8,"13000":7,"13001":7,"13002":5,"13003":5,"13004":4,"13005":7,"13006":2,"13007":8,"13008":9,"13009":2,"13010":9,"13011":9,"13012":7,"13013":2,"13014":6,"13015":8,"13016":10,"13017":7,"13018":9,"13019":7,"13020":5,"13021":8,"13022":7,"13023":8,"13024":9,"13025":5,"13026":9,"13027":8,"13028":8,"13029":7,"13030":5,"13031":2,"13032":7,"13033":9,"13034":7,"13035":1,"13036":2,"13037":10,"13038":5,"13039":1,"13040":4,"13041":7,"13042":9,"13043":10,"13044":6,"13045":9,"13046":8,"13047":2,"13048":7,"13049":2,"13050":9,"13051":10,"13052":5,"13053":2,"13054":5,"13055":1,"13056":1,"13057":7,"13058":4,"13059":7,"13060":9,"13061":4,"13062":9,"13063":8,"13064":8,"13065":8,"13066":7,"13067":8,"13068":8,"13069":10,"13070":2,"13071":4,"13072":10,"13073":7,"13074":4,"13075":8,"13076":8,"13077":7,"13078":5,"13079":2,"13080":6,"13081":8,"13082":2,"13083":5,"13084":3,"13085":9,"13086":9,"13087":9,"13088":6,"13089":10,"13090":5,"13091":2,"13092":2,"13093":7,"13094":2,"13095":8,"13096":8,"13097":7,"13098":4,"13099":2,"13100":7,"13101":9,"13102":7,"13103":8,"13104":5,"13105":8,"13106":8,"13107":8,"13108":8,"13109":8,"13110":10,"13111":8,"13112":3,"13113":4,"13114":3,"13115":8,"13116":10,"13117":4,"13118":4,"13119":5,"13120":9,"13121":8,"13122":5,"13123":4,"13124":1,"13125":10,"13126":8,"13127":2,"13128":9,"13129":7,"13130":3,"13131":7,"13132":4,"13133":9,"13134":7,"13135":5,"13136":1,"13137":9,"13138":7,"13139":7,"13140":7,"13141":2,"13142":7,"13143":8,"13144":8,"13145":6,"13146":8,"13147":9,"13148":8,"13149":1,"13150":1,"13151":7,"13152":7,"13153":7,"13154":7,"13155":4,"13156":4,"13157":2,"13158":3,"13159":7,"13160":1,"13161":2,"13162":4,"13163":10,"13164":4,"13165":8,"13166":8,"13167":7,"13168":5,"13169":7,"13170":7,"13171":8,"13172":8,"13173":2,"13174":10,"13175":6,"13176":6,"13177":9,"13178":7,"13179":8,"13180":7,"13181":8,"13182":7,"13183":7,"13184":6,"13185":7,"13186":2,"13187":2,"13188":7,"13189":2,"13190":8,"13191":7,"13192":8,"13193":7,"13194":5,"13195":9,"13196":10,"13197":3,"13198":6,"13199":7,"13200":9,"13201":1,"13202":4,"13203":8,"13204":8,"13205":8,"13206":9,"13207":8,"13208":8,"13209":2,"13210":7,"13211":7,"13212":8,"13213":2,"13214":5,"13215":8,"13216":8,"13217":9,"13218":7,"13219":1,"13220":2,"13221":9,"13222":9,"13223":4,"13224":9,"13225":5,"13226":5,"13227":8,"13228":7,"13229":4,"13230":5,"13231":4,"13232":7,"13233":9,"13234":4,"13235":1,"13236":9,"13237":3,"13238":5,"13239":6,"13240":2,"13241":10,"13242":9,"13243":7,"13244":8,"13245":8,"13246":7,"13247":6,"13248":8,"13249":8,"13250":8,"13251":7,"13252":9,"13253":9,"13254":5,"13255":3,"13256":5,"13257":3,"13258":8,"13259":5,"13260":4,"13261":7,"13262":4,"13263":8,"13264":9,"13265":4,"13266":7,"13267":7,"13268":8,"13269":9,"13270":8,"13271":3,"13272":8,"13273":5,"13274":10,"13275":5,"13276":7,"13277":5,"13278":8,"13279":9,"13280":9,"13281":6,"13282":9,"13283":9,"13284":7,"13285":8,"13286":1,"13287":6,"13288":3,"13289":8,"13290":8,"13291":4,"13292":8,"13293":2,"13294":9,"13295":6,"13296":9,"13297":8,"13298":5,"13299":8,"13300":7,"13301":3,"13302":9,"13303":9,"13304":8,"13305":10,"13306":8,"13307":5,"13308":4,"13309":9,"13310":7,"13311":10,"13312":3,"13313":9,"13314":7,"13315":9,"13316":8,"13317":9,"13318":1,"13319":9,"13320":10,"13321":9,"13322":7,"13323":8,"13324":6,"13325":6,"13326":9,"13327":1,"13328":2,"13329":3,"13330":7,"13331":8,"13332":8,"13333":8,"13334":2,"13335":2,"13336":7,"13337":9,"13338":9,"13339":2,"13340":8,"13341":9,"13342":8,"13343":7,"13344":8,"13345":8,"13346":8,"13347":7,"13348":9,"13349":9,"13350":3,"13351":3,"13352":3,"13353":7,"13354":3,"13355":9,"13356":8,"13357":5,"13358":4,"13359":10,"13360":2,"13361":8,"13362":2,"13363":7,"13364":7,"13365":4,"13366":8,"13367":8,"13368":7,"13369":8,"13370":1,"13371":10,"13372":9,"13373":7,"13374":7,"13375":1,"13376":1,"13377":7,"13378":5,"13379":9,"13380":8,"13381":7,"13382":2,"13383":8,"13384":4,"13385":7,"13386":5,"13387":4,"13388":6,"13389":9,"13390":9,"13391":5,"13392":9,"13393":9,"13394":5,"13395":1,"13396":10,"13397":8,"13398":9,"13399":7,"13400":1,"13401":7,"13402":9,"13403":9,"13404":7,"13405":7,"13406":1,"13407":7,"13408":3,"13409":9,"13410":6,"13411":8,"13412":8,"13413":5,"13414":7,"13415":7,"13416":1,"13417":2,"13418":4,"13419":8,"13420":7,"13421":7,"13422":5,"13423":7,"13424":7,"13425":8,"13426":8,"13427":2,"13428":8,"13429":7,"13430":8,"13431":4,"13432":1,"13433":7,"13434":9,"13435":8,"13436":9,"13437":9,"13438":8,"13439":7,"13440":2,"13441":9,"13442":9,"13443":3,"13444":3,"13445":5,"13446":2,"13447":2,"13448":5,"13449":1,"13450":9,"13451":7,"13452":9,"13453":6,"13454":2,"13455":8,"13456":2,"13457":2,"13458":3,"13459":3,"13460":7,"13461":9,"13462":8,"13463":5,"13464":1,"13465":2,"13466":8,"13467":10,"13468":3,"13469":9,"13470":9,"13471":7,"13472":8,"13473":7,"13474":9,"13475":5,"13476":9,"13477":9,"13478":9,"13479":5,"13480":3,"13481":8,"13482":7,"13483":10,"13484":4,"13485":9,"13486":8,"13487":6,"13488":7,"13489":4,"13490":9,"13491":5,"13492":5,"13493":7,"13494":5,"13495":8,"13496":1,"13497":10,"13498":7,"13499":9,"13500":9,"13501":5,"13502":9,"13503":7,"13504":8,"13505":7,"13506":8,"13507":1,"13508":3,"13509":7,"13510":4,"13511":9,"13512":7,"13513":9,"13514":7,"13515":7,"13516":7,"13517":8,"13518":1,"13519":8,"13520":7,"13521":7,"13522":8,"13523":9,"13524":2,"13525":9,"13526":8,"13527":2,"13528":2,"13529":4,"13530":8,"13531":10,"13532":8,"13533":7,"13534":5,"13535":9,"13536":10,"13537":8,"13538":7,"13539":8,"13540":9,"13541":7,"13542":5,"13543":7,"13544":9,"13545":9,"13546":7,"13547":8,"13548":5,"13549":5,"13550":7,"13551":8,"13552":7,"13553":7,"13554":8,"13555":3,"13556":8,"13557":7,"13558":7,"13559":4,"13560":8,"13561":9,"13562":8,"13563":7,"13564":7,"13565":2,"13566":8,"13567":9,"13568":2,"13569":9,"13570":8,"13571":2,"13572":4,"13573":4,"13574":9,"13575":9,"13576":2,"13577":3,"13578":6,"13579":7,"13580":7,"13581":5,"13582":5,"13583":1,"13584":3,"13585":3,"13586":5,"13587":8,"13588":5,"13589":1,"13590":8,"13591":8,"13592":2,"13593":2,"13594":9,"13595":8,"13596":5,"13597":7,"13598":7,"13599":8,"13600":7,"13601":7,"13602":7,"13603":1,"13604":6,"13605":8,"13606":9,"13607":6,"13608":8,"13609":4,"13610":7,"13611":10,"13612":7,"13613":5,"13614":5,"13615":5,"13616":7,"13617":7,"13618":1,"13619":4,"13620":4,"13621":10,"13622":5,"13623":2,"13624":9,"13625":8,"13626":3,"13627":5,"13628":2,"13629":5,"13630":10,"13631":5,"13632":7,"13633":7,"13634":4,"13635":2,"13636":7,"13637":8,"13638":4,"13639":1,"13640":9,"13641":8,"13642":5,"13643":9,"13644":6,"13645":7,"13646":9,"13647":7,"13648":7,"13649":7,"13650":9,"13651":5,"13652":5,"13653":1,"13654":2,"13655":8,"13656":1,"13657":8,"13658":5,"13659":7,"13660":3,"13661":8,"13662":7,"13663":5,"13664":4,"13665":7,"13666":8,"13667":8,"13668":7,"13669":2,"13670":7,"13671":8,"13672":2,"13673":7,"13674":4,"13675":9,"13676":7,"13677":5,"13678":7,"13679":6,"13680":7,"13681":6,"13682":4,"13683":8,"13684":3,"13685":10,"13686":7,"13687":10,"13688":7,"13689":1,"13690":8,"13691":2,"13692":9,"13693":9,"13694":7,"13695":7,"13696":7,"13697":2,"13698":9,"13699":2,"13700":8,"13701":8,"13702":9,"13703":7,"13704":8,"13705":7,"13706":7,"13707":2,"13708":7,"13709":8,"13710":9,"13711":1,"13712":10,"13713":9,"13714":8,"13715":5,"13716":8,"13717":5,"13718":8,"13719":5,"13720":7,"13721":5,"13722":4,"13723":3,"13724":2,"13725":2,"13726":1,"13727":7,"13728":10,"13729":6,"13730":3,"13731":5,"13732":5,"13733":7,"13734":8,"13735":8,"13736":8,"13737":5,"13738":8,"13739":8,"13740":8,"13741":8,"13742":7,"13743":8,"13744":4,"13745":7,"13746":8,"13747":7,"13748":7,"13749":6,"13750":2,"13751":7,"13752":7,"13753":2,"13754":1,"13755":8,"13756":5,"13757":7,"13758":8,"13759":9,"13760":2,"13761":8,"13762":7,"13763":7,"13764":4,"13765":8,"13766":5,"13767":5,"13768":9,"13769":2,"13770":5,"13771":5,"13772":10,"13773":5,"13774":1,"13775":8,"13776":6,"13777":5,"13778":8,"13779":1,"13780":7,"13781":8,"13782":9,"13783":7,"13784":9,"13785":7,"13786":8,"13787":9,"13788":7,"13789":2,"13790":6,"13791":8,"13792":9,"13793":4,"13794":1,"13795":5,"13796":8,"13797":7,"13798":10,"13799":8,"13800":5,"13801":8,"13802":9,"13803":1,"13804":8,"13805":8,"13806":10,"13807":8,"13808":1,"13809":8,"13810":7,"13811":2,"13812":8,"13813":8,"13814":3,"13815":9,"13816":5,"13817":9,"13818":8,"13819":3,"13820":6,"13821":2,"13822":9,"13823":9,"13824":8,"13825":5,"13826":1,"13827":9,"13828":9,"13829":9,"13830":9,"13831":8,"13832":10,"13833":5,"13834":9,"13835":5,"13836":9,"13837":9,"13838":6,"13839":6,"13840":7,"13841":1,"13842":1,"13843":8,"13844":4,"13845":7,"13846":8,"13847":2,"13848":10,"13849":7,"13850":9,"13851":2,"13852":5,"13853":7,"13854":8,"13855":5,"13856":5,"13857":8,"13858":2,"13859":9,"13860":9,"13861":6,"13862":5,"13863":2,"13864":7,"13865":2,"13866":8,"13867":8,"13868":7,"13869":7,"13870":10,"13871":9,"13872":9,"13873":1,"13874":9,"13875":7,"13876":9,"13877":1,"13878":9,"13879":1,"13880":5,"13881":7,"13882":9,"13883":9,"13884":8,"13885":5,"13886":2,"13887":8,"13888":8,"13889":1,"13890":10,"13891":6,"13892":9,"13893":7,"13894":4,"13895":1,"13896":6,"13897":8,"13898":8,"13899":8,"13900":1,"13901":8,"13902":6,"13903":8,"13904":2,"13905":8,"13906":2,"13907":7,"13908":7,"13909":6,"13910":8,"13911":2,"13912":8,"13913":7,"13914":7,"13915":9,"13916":8,"13917":2,"13918":9,"13919":2,"13920":6,"13921":8,"13922":5,"13923":8,"13924":7,"13925":3,"13926":9,"13927":9,"13928":8,"13929":1,"13930":8,"13931":1,"13932":7,"13933":6,"13934":1,"13935":10,"13936":7,"13937":10,"13938":9,"13939":9,"13940":9,"13941":3,"13942":9,"13943":2,"13944":7,"13945":1,"13946":2,"13947":7,"13948":8,"13949":8,"13950":5,"13951":8,"13952":1,"13953":7,"13954":5,"13955":8,"13956":9,"13957":4,"13958":5,"13959":2,"13960":5,"13961":9,"13962":8,"13963":7,"13964":6,"13965":9,"13966":8,"13967":1,"13968":2,"13969":9,"13970":5,"13971":9,"13972":8,"13973":8,"13974":5,"13975":7,"13976":8,"13977":9,"13978":9,"13979":7,"13980":8,"13981":2,"13982":8,"13983":8,"13984":4,"13985":7,"13986":7,"13987":7,"13988":10,"13989":7,"13990":7,"13991":6,"13992":5,"13993":7,"13994":7,"13995":8,"13996":7,"13997":5,"13998":9,"13999":6,"14000":8,"14001":7,"14002":9,"14003":10,"14004":5,"14005":7,"14006":8,"14007":5,"14008":7,"14009":5,"14010":7,"14011":5,"14012":6,"14013":6,"14014":2,"14015":7,"14016":4,"14017":9,"14018":10,"14019":5,"14020":8,"14021":7,"14022":8,"14023":5,"14024":4,"14025":7,"14026":7,"14027":5,"14028":9,"14029":7,"14030":1,"14031":8,"14032":8,"14033":8,"14034":8,"14035":7,"14036":2,"14037":3,"14038":10,"14039":8,"14040":9,"14041":7,"14042":5,"14043":6,"14044":4,"14045":5,"14046":7,"14047":3,"14048":2,"14049":8,"14050":9,"14051":10,"14052":7,"14053":9,"14054":7,"14055":9,"14056":9,"14057":7,"14058":7,"14059":8,"14060":9,"14061":7,"14062":2,"14063":1,"14064":9,"14065":7,"14066":8,"14067":7,"14068":3,"14069":1,"14070":9,"14071":7,"14072":5,"14073":7,"14074":8,"14075":7,"14076":4,"14077":9,"14078":8,"14079":6,"14080":7,"14081":2,"14082":2,"14083":7,"14084":1,"14085":2,"14086":4,"14087":2,"14088":9,"14089":7,"14090":8,"14091":9,"14092":1,"14093":9,"14094":4,"14095":7,"14096":8,"14097":1,"14098":5,"14099":7,"14100":6,"14101":7,"14102":10,"14103":8,"14104":8,"14105":4,"14106":2,"14107":8,"14108":4,"14109":9,"14110":7,"14111":3,"14112":6,"14113":6,"14114":8,"14115":8,"14116":7,"14117":8,"14118":8,"14119":6,"14120":2,"14121":4,"14122":8,"14123":2,"14124":10,"14125":5,"14126":8,"14127":4,"14128":7,"14129":10,"14130":7,"14131":5,"14132":7,"14133":2,"14134":7,"14135":2,"14136":7,"14137":9,"14138":9,"14139":2,"14140":6,"14141":2,"14142":5,"14143":7,"14144":7,"14145":1,"14146":7,"14147":9,"14148":7,"14149":8,"14150":4,"14151":2,"14152":9,"14153":6,"14154":9,"14155":7,"14156":8,"14157":7,"14158":1,"14159":7,"14160":7,"14161":7,"14162":3,"14163":9,"14164":6,"14165":7,"14166":8,"14167":7,"14168":7,"14169":4,"14170":7,"14171":8,"14172":2,"14173":8,"14174":2,"14175":6,"14176":8,"14177":2,"14178":5,"14179":3,"14180":4,"14181":5,"14182":8,"14183":3,"14184":7,"14185":4,"14186":7,"14187":5,"14188":10,"14189":7,"14190":5,"14191":8,"14192":5,"14193":10,"14194":5,"14195":8,"14196":9,"14197":7,"14198":10,"14199":9,"14200":5,"14201":8,"14202":10,"14203":10,"14204":5,"14205":8,"14206":9,"14207":7,"14208":4,"14209":9,"14210":1,"14211":1,"14212":10,"14213":8,"14214":7,"14215":8,"14216":2,"14217":9,"14218":8,"14219":7,"14220":5,"14221":9,"14222":1,"14223":5,"14224":8,"14225":3,"14226":3,"14227":9,"14228":8,"14229":6,"14230":6,"14231":5,"14232":7,"14233":7,"14234":10,"14235":5,"14236":2,"14237":3,"14238":8,"14239":8,"14240":2,"14241":7,"14242":5,"14243":8,"14244":9,"14245":5,"14246":7,"14247":5,"14248":8,"14249":8,"14250":2,"14251":2,"14252":8,"14253":8,"14254":7,"14255":2,"14256":4,"14257":8,"14258":8,"14259":10,"14260":5,"14261":7,"14262":5,"14263":9,"14264":7,"14265":9,"14266":9,"14267":7,"14268":5,"14269":5,"14270":7,"14271":9,"14272":10,"14273":9,"14274":10,"14275":9,"14276":2,"14277":7,"14278":7,"14279":1,"14280":5,"14281":8,"14282":5,"14283":10,"14284":7,"14285":5,"14286":8,"14287":5,"14288":7,"14289":8,"14290":3,"14291":8,"14292":5,"14293":7,"14294":8,"14295":9,"14296":9,"14297":6,"14298":5,"14299":2,"14300":9,"14301":3,"14302":5,"14303":5,"14304":7,"14305":6,"14306":9,"14307":9,"14308":5,"14309":9,"14310":8,"14311":7,"14312":4,"14313":8,"14314":5,"14315":7,"14316":8,"14317":7,"14318":10,"14319":9,"14320":4,"14321":6,"14322":4,"14323":9,"14324":7,"14325":8,"14326":8,"14327":4,"14328":2,"14329":5,"14330":10,"14331":8,"14332":9,"14333":6,"14334":7,"14335":10,"14336":9,"14337":7,"14338":7,"14339":3,"14340":8,"14341":8,"14342":9,"14343":9,"14344":8,"14345":7,"14346":9,"14347":7,"14348":9,"14349":5,"14350":7,"14351":8,"14352":5,"14353":9,"14354":8,"14355":8,"14356":2,"14357":10,"14358":8,"14359":7,"14360":1,"14361":9,"14362":8,"14363":10,"14364":2,"14365":7,"14366":10,"14367":9,"14368":7,"14369":5,"14370":8,"14371":8,"14372":7,"14373":1,"14374":7,"14375":1,"14376":1,"14377":9,"14378":9,"14379":6,"14380":6,"14381":10,"14382":6,"14383":8,"14384":10,"14385":3,"14386":2,"14387":8,"14388":7,"14389":7,"14390":3,"14391":9,"14392":7,"14393":8,"14394":8,"14395":5,"14396":7,"14397":9,"14398":8,"14399":8,"14400":5,"14401":8,"14402":4,"14403":5,"14404":6,"14405":9,"14406":8,"14407":8,"14408":7,"14409":8,"14410":3,"14411":4,"14412":9,"14413":9,"14414":9,"14415":7,"14416":9,"14417":8,"14418":8,"14419":9,"14420":5,"14421":3,"14422":8,"14423":6,"14424":9,"14425":5,"14426":4,"14427":8,"14428":7,"14429":7,"14430":9,"14431":8,"14432":7,"14433":7,"14434":2,"14435":10,"14436":3,"14437":5,"14438":7,"14439":7,"14440":9,"14441":4,"14442":3,"14443":7,"14444":8,"14445":8,"14446":8,"14447":2,"14448":3,"14449":7,"14450":8,"14451":7,"14452":7,"14453":7,"14454":2,"14455":8,"14456":9,"14457":3,"14458":2,"14459":1,"14460":9,"14461":5,"14462":8,"14463":5,"14464":6,"14465":8,"14466":7,"14467":5,"14468":8,"14469":6,"14470":5,"14471":9,"14472":4,"14473":8,"14474":5,"14475":7,"14476":9,"14477":7,"14478":5,"14479":8,"14480":8,"14481":3,"14482":7,"14483":7,"14484":5,"14485":4,"14486":8,"14487":8,"14488":9,"14489":7,"14490":3,"14491":6,"14492":1,"14493":5,"14494":3,"14495":9,"14496":9,"14497":10,"14498":4,"14499":10,"14500":7,"14501":5,"14502":2,"14503":5,"14504":2,"14505":4,"14506":9,"14507":4,"14508":6,"14509":1,"14510":7,"14511":3,"14512":7,"14513":10,"14514":7,"14515":10,"14516":3,"14517":7,"14518":5,"14519":10,"14520":2,"14521":3,"14522":8,"14523":6,"14524":8,"14525":8,"14526":7,"14527":6,"14528":7,"14529":8,"14530":2,"14531":8,"14532":5,"14533":3,"14534":6,"14535":5,"14536":7,"14537":7,"14538":7,"14539":6,"14540":8,"14541":7,"14542":7,"14543":9,"14544":8,"14545":9,"14546":9,"14547":7,"14548":10,"14549":9,"14550":10,"14551":8,"14552":8,"14553":9,"14554":8,"14555":3,"14556":5,"14557":9,"14558":7,"14559":9,"14560":9,"14561":8,"14562":5,"14563":4,"14564":7,"14565":6,"14566":9,"14567":9,"14568":9,"14569":1,"14570":5,"14571":7,"14572":4,"14573":10,"14574":2,"14575":10,"14576":7,"14577":2,"14578":7,"14579":3,"14580":1,"14581":9,"14582":8,"14583":7,"14584":7,"14585":1,"14586":8,"14587":8,"14588":5,"14589":3,"14590":8,"14591":8,"14592":7,"14593":7,"14594":4,"14595":9,"14596":7,"14597":10,"14598":5,"14599":8,"14600":5,"14601":9,"14602":2,"14603":8,"14604":6,"14605":4,"14606":2,"14607":10,"14608":4,"14609":1,"14610":1,"14611":4,"14612":7,"14613":8,"14614":9,"14615":7,"14616":5,"14617":2,"14618":2,"14619":8,"14620":4,"14621":7,"14622":1,"14623":8,"14624":3,"14625":8,"14626":7,"14627":8,"14628":2,"14629":6,"14630":6,"14631":7,"14632":1,"14633":10,"14634":2,"14635":7,"14636":7,"14637":8,"14638":8,"14639":6,"14640":6,"14641":8,"14642":10,"14643":8,"14644":7,"14645":7,"14646":6,"14647":9,"14648":7,"14649":8,"14650":5,"14651":9,"14652":3,"14653":9,"14654":2,"14655":7,"14656":7,"14657":9,"14658":2,"14659":9,"14660":2,"14661":7,"14662":8,"14663":3,"14664":10,"14665":5,"14666":3,"14667":8,"14668":2,"14669":1,"14670":7,"14671":8,"14672":2,"14673":8,"14674":10,"14675":5,"14676":1,"14677":7,"14678":9,"14679":5,"14680":8,"14681":5,"14682":7,"14683":8,"14684":9,"14685":7,"14686":5,"14687":8,"14688":7,"14689":7,"14690":7,"14691":9,"14692":9,"14693":2,"14694":7,"14695":1,"14696":7,"14697":5,"14698":7,"14699":1,"14700":1,"14701":9,"14702":9,"14703":8,"14704":3,"14705":8,"14706":4,"14707":8,"14708":8,"14709":9,"14710":3,"14711":5,"14712":6,"14713":8,"14714":5,"14715":2,"14716":7,"14717":1,"14718":7,"14719":9,"14720":7,"14721":8,"14722":5,"14723":6,"14724":9,"14725":7,"14726":7,"14727":8,"14728":2,"14729":7,"14730":5,"14731":7,"14732":2,"14733":4,"14734":7,"14735":2,"14736":8,"14737":8,"14738":3,"14739":8,"14740":2,"14741":8,"14742":8,"14743":8,"14744":7,"14745":8,"14746":7,"14747":2,"14748":2,"14749":7,"14750":7,"14751":5,"14752":1,"14753":9,"14754":3,"14755":4,"14756":2,"14757":10,"14758":3,"14759":8,"14760":9,"14761":7,"14762":1,"14763":7,"14764":5,"14765":9,"14766":7,"14767":4,"14768":9,"14769":9,"14770":9,"14771":1,"14772":2,"14773":7,"14774":7,"14775":2,"14776":7,"14777":4,"14778":5,"14779":9,"14780":7,"14781":7,"14782":2,"14783":7,"14784":5,"14785":2,"14786":7,"14787":5,"14788":8,"14789":2,"14790":7,"14791":6,"14792":9,"14793":8,"14794":4,"14795":9,"14796":9,"14797":6,"14798":10,"14799":8,"14800":8,"14801":8,"14802":10,"14803":9,"14804":7,"14805":7,"14806":6,"14807":10,"14808":9,"14809":6,"14810":8,"14811":7,"14812":10,"14813":7,"14814":1,"14815":8,"14816":3,"14817":7,"14818":8,"14819":9,"14820":9,"14821":2,"14822":1,"14823":7,"14824":8,"14825":8,"14826":4,"14827":8,"14828":8,"14829":2,"14830":7,"14831":7,"14832":4,"14833":9,"14834":8,"14835":3,"14836":3,"14837":6,"14838":3,"14839":8,"14840":8,"14841":6,"14842":8,"14843":9,"14844":3,"14845":7,"14846":7,"14847":7,"14848":4,"14849":9,"14850":9,"14851":5,"14852":8,"14853":8,"14854":7,"14855":9,"14856":5,"14857":8,"14858":7,"14859":7,"14860":8,"14861":7,"14862":8,"14863":5,"14864":7,"14865":5,"14866":9,"14867":8,"14868":9,"14869":6,"14870":2,"14871":5,"14872":8,"14873":9,"14874":6,"14875":8,"14876":5,"14877":2,"14878":7,"14879":8,"14880":6,"14881":3,"14882":5,"14883":8,"14884":10,"14885":2,"14886":10,"14887":5,"14888":7,"14889":10,"14890":4,"14891":7,"14892":3,"14893":5,"14894":7,"14895":2,"14896":5,"14897":4,"14898":7,"14899":8,"14900":7,"14901":9,"14902":8,"14903":9,"14904":10,"14905":10,"14906":8,"14907":9,"14908":8,"14909":7,"14910":5,"14911":5,"14912":5,"14913":3,"14914":7,"14915":8,"14916":8,"14917":3,"14918":1,"14919":9,"14920":6,"14921":8,"14922":9,"14923":8,"14924":1,"14925":4,"14926":5,"14927":8,"14928":8,"14929":9,"14930":4,"14931":2,"14932":2,"14933":9,"14934":7,"14935":8,"14936":8,"14937":8,"14938":8,"14939":8,"14940":8,"14941":6,"14942":7,"14943":1,"14944":1,"14945":8,"14946":8,"14947":5,"14948":1,"14949":8,"14950":8,"14951":7,"14952":8,"14953":7,"14954":9,"14955":1,"14956":2,"14957":7,"14958":7,"14959":10,"14960":2,"14961":9,"14962":7,"14963":7,"14964":7,"14965":9,"14966":4,"14967":2,"14968":3,"14969":7,"14970":10,"14971":8,"14972":1,"14973":1,"14974":1,"14975":7,"14976":7,"14977":6,"14978":3,"14979":8,"14980":6,"14981":8,"14982":7,"14983":8,"14984":5,"14985":5,"14986":7,"14987":4,"14988":1,"14989":3,"14990":9,"14991":7,"14992":1,"14993":2,"14994":8,"14995":4,"14996":2,"14997":7,"14998":9,"14999":3,"15000":7,"15001":2,"15002":7,"15003":8,"15004":5,"15005":7,"15006":1,"15007":7,"15008":10,"15009":9,"15010":6,"15011":8,"15012":3,"15013":8,"15014":9,"15015":8,"15016":7,"15017":9,"15018":9,"15019":8,"15020":8,"15021":3,"15022":8,"15023":5,"15024":7,"15025":2,"15026":2,"15027":9,"15028":10,"15029":4,"15030":9,"15031":2,"15032":7,"15033":8,"15034":7,"15035":9,"15036":7,"15037":7,"15038":5,"15039":9,"15040":9,"15041":3,"15042":1,"15043":5,"15044":5,"15045":7,"15046":6,"15047":8,"15048":8,"15049":2,"15050":9,"15051":10,"15052":2,"15053":4,"15054":5,"15055":8,"15056":5,"15057":2,"15058":7,"15059":10,"15060":2,"15061":7,"15062":2,"15063":5,"15064":8,"15065":10,"15066":9,"15067":7,"15068":7,"15069":7,"15070":6,"15071":6,"15072":4,"15073":7,"15074":7,"15075":10,"15076":4,"15077":7,"15078":7,"15079":4,"15080":7,"15081":7,"15082":8,"15083":7,"15084":5,"15085":1,"15086":8,"15087":7,"15088":1,"15089":8,"15090":8,"15091":7,"15092":5,"15093":9,"15094":2,"15095":7,"15096":4,"15097":5,"15098":5,"15099":4,"15100":4,"15101":7,"15102":8,"15103":7,"15104":9,"15105":8,"15106":2,"15107":2,"15108":7,"15109":7,"15110":2,"15111":8,"15112":8,"15113":4,"15114":5,"15115":9,"15116":10,"15117":2,"15118":7,"15119":2,"15120":8,"15121":2,"15122":5,"15123":10,"15124":8,"15125":2,"15126":7,"15127":5,"15128":7,"15129":2,"15130":9,"15131":8,"15132":7,"15133":9,"15134":5,"15135":8,"15136":8,"15137":5,"15138":9,"15139":7,"15140":5,"15141":7,"15142":8,"15143":4,"15144":9,"15145":7,"15146":8,"15147":10,"15148":8,"15149":2,"15150":7,"15151":8,"15152":7,"15153":6,"15154":1,"15155":3,"15156":3,"15157":1,"15158":4,"15159":7,"15160":2,"15161":9,"15162":1,"15163":6,"15164":7,"15165":3,"15166":8,"15167":9,"15168":7,"15169":7,"15170":1,"15171":2,"15172":7,"15173":6,"15174":8,"15175":8,"15176":7,"15177":8,"15178":9,"15179":5,"15180":7,"15181":8,"15182":9,"15183":6,"15184":8,"15185":8,"15186":5,"15187":5,"15188":5,"15189":9,"15190":7,"15191":1,"15192":4,"15193":8,"15194":6,"15195":5,"15196":5,"15197":2,"15198":6,"15199":10,"15200":8,"15201":8,"15202":4,"15203":8,"15204":2,"15205":9,"15206":1,"15207":6,"15208":9,"15209":2,"15210":9,"15211":2,"15212":7,"15213":8,"15214":2,"15215":5,"15216":1,"15217":9,"15218":1,"15219":2,"15220":2,"15221":9,"15222":7,"15223":2,"15224":2,"15225":4,"15226":1,"15227":9,"15228":7,"15229":8,"15230":7,"15231":7,"15232":2,"15233":4,"15234":9,"15235":8,"15236":1,"15237":3,"15238":3,"15239":6,"15240":10,"15241":10,"15242":10,"15243":8,"15244":1,"15245":8,"15246":8,"15247":6,"15248":8,"15249":2,"15250":2,"15251":10,"15252":6,"15253":9,"15254":8,"15255":9,"15256":8,"15257":9,"15258":1,"15259":8,"15260":4,"15261":1,"15262":9,"15263":7,"15264":8,"15265":6,"15266":1,"15267":7,"15268":7,"15269":3,"15270":8,"15271":4,"15272":2,"15273":3,"15274":1,"15275":5,"15276":3,"15277":8,"15278":2,"15279":7,"15280":4,"15281":4,"15282":10,"15283":7,"15284":10,"15285":3,"15286":6,"15287":8,"15288":7,"15289":9,"15290":8,"15291":9,"15292":9,"15293":9,"15294":8,"15295":8,"15296":9,"15297":5,"15298":7,"15299":10,"15300":2,"15301":10,"15302":7,"15303":2,"15304":7,"15305":8,"15306":1,"15307":1,"15308":7,"15309":5,"15310":9,"15311":9,"15312":5,"15313":8,"15314":8,"15315":2,"15316":9,"15317":7,"15318":7,"15319":6,"15320":8,"15321":7,"15322":8,"15323":4,"15324":2,"15325":2,"15326":9,"15327":8,"15328":5,"15329":7,"15330":8,"15331":7,"15332":7,"15333":2,"15334":2,"15335":9,"15336":9,"15337":7,"15338":8,"15339":7,"15340":8,"15341":9,"15342":1,"15343":9,"15344":1,"15345":7,"15346":6,"15347":3,"15348":3,"15349":8,"15350":9,"15351":7,"15352":2,"15353":3,"15354":5,"15355":6,"15356":9,"15357":5,"15358":1,"15359":8,"15360":3,"15361":3,"15362":7,"15363":4,"15364":2,"15365":1,"15366":3,"15367":1,"15368":7,"15369":10,"15370":3,"15371":8,"15372":7,"15373":8,"15374":7,"15375":10,"15376":8,"15377":8,"15378":8,"15379":2,"15380":9,"15381":8,"15382":5,"15383":7,"15384":7,"15385":3,"15386":3,"15387":3,"15388":8,"15389":1,"15390":5,"15391":5,"15392":2,"15393":2,"15394":8,"15395":7,"15396":7,"15397":5,"15398":7,"15399":3,"15400":5,"15401":7,"15402":8,"15403":10,"15404":7,"15405":7,"15406":5,"15407":7,"15408":5,"15409":8,"15410":7,"15411":4,"15412":9,"15413":8,"15414":8,"15415":3,"15416":4,"15417":2,"15418":8,"15419":8,"15420":5,"15421":8,"15422":7,"15423":8,"15424":7,"15425":2,"15426":7,"15427":3,"15428":5,"15429":7,"15430":8,"15431":8,"15432":7,"15433":8,"15434":8,"15435":8,"15436":8,"15437":9,"15438":7,"15439":7,"15440":8,"15441":7,"15442":1,"15443":6,"15444":9,"15445":7,"15446":7,"15447":3,"15448":10,"15449":10,"15450":7,"15451":3,"15452":9,"15453":10,"15454":7,"15455":7,"15456":8,"15457":8,"15458":9,"15459":6,"15460":9,"15461":8,"15462":8,"15463":7,"15464":9,"15465":2,"15466":7,"15467":5,"15468":7,"15469":9,"15470":5,"15471":5,"15472":2,"15473":8,"15474":8,"15475":5,"15476":3,"15477":10,"15478":2,"15479":5,"15480":8,"15481":8,"15482":8,"15483":10,"15484":5,"15485":8,"15486":5,"15487":7,"15488":6,"15489":6,"15490":1,"15491":6,"15492":2,"15493":7,"15494":8,"15495":8,"15496":5,"15497":8,"15498":2,"15499":3,"15500":9,"15501":3,"15502":8,"15503":7,"15504":7,"15505":8,"15506":10,"15507":9,"15508":8,"15509":7,"15510":2,"15511":8,"15512":2,"15513":7,"15514":9,"15515":1,"15516":9,"15517":3,"15518":2,"15519":9,"15520":8,"15521":7,"15522":9,"15523":7,"15524":8,"15525":4,"15526":8,"15527":8,"15528":7,"15529":3,"15530":5,"15531":8,"15532":9,"15533":8,"15534":7,"15535":7,"15536":8,"15537":8,"15538":2,"15539":7,"15540":9,"15541":9,"15542":5,"15543":2,"15544":7,"15545":8,"15546":8,"15547":9,"15548":9,"15549":7,"15550":2,"15551":9,"15552":2,"15553":2,"15554":4,"15555":7,"15556":9,"15557":8,"15558":6,"15559":3,"15560":8,"15561":5,"15562":1,"15563":7,"15564":1,"15565":9,"15566":8,"15567":1,"15568":10,"15569":8,"15570":5,"15571":5,"15572":2,"15573":9,"15574":7,"15575":5,"15576":9,"15577":9,"15578":7,"15579":9,"15580":4,"15581":4,"15582":7,"15583":7,"15584":5,"15585":1,"15586":9,"15587":8,"15588":2,"15589":8,"15590":5,"15591":7,"15592":9,"15593":9,"15594":8,"15595":7,"15596":3,"15597":9,"15598":7,"15599":3,"15600":1,"15601":4,"15602":6,"15603":8,"15604":9,"15605":8,"15606":9,"15607":8,"15608":8,"15609":7,"15610":2,"15611":5,"15612":9,"15613":1,"15614":5,"15615":2,"15616":10,"15617":7,"15618":8,"15619":8,"15620":5,"15621":8,"15622":5,"15623":9,"15624":7,"15625":8,"15626":8,"15627":4,"15628":2,"15629":2,"15630":1,"15631":1,"15632":9,"15633":3,"15634":8,"15635":5,"15636":1,"15637":8,"15638":8,"15639":7,"15640":2,"15641":7,"15642":2,"15643":8,"15644":9,"15645":2,"15646":9,"15647":9,"15648":8,"15649":7,"15650":2,"15651":2,"15652":7,"15653":9,"15654":7,"15655":8,"15656":9,"15657":4,"15658":9,"15659":7,"15660":1,"15661":2,"15662":7,"15663":7,"15664":3,"15665":2,"15666":8,"15667":10,"15668":2,"15669":8,"15670":8,"15671":8,"15672":8,"15673":2,"15674":1,"15675":9,"15676":9,"15677":7,"15678":5,"15679":6,"15680":3,"15681":7,"15682":1,"15683":8,"15684":7,"15685":6,"15686":7,"15687":3,"15688":7,"15689":2,"15690":5,"15691":8,"15692":9,"15693":8,"15694":8,"15695":9,"15696":5,"15697":9,"15698":3,"15699":5,"15700":9,"15701":2,"15702":9,"15703":8,"15704":3,"15705":3,"15706":7,"15707":8,"15708":1,"15709":7,"15710":8,"15711":10,"15712":7,"15713":6,"15714":9,"15715":8,"15716":9,"15717":8,"15718":5,"15719":9,"15720":8,"15721":4,"15722":7,"15723":1,"15724":3,"15725":8,"15726":9,"15727":9,"15728":7,"15729":9,"15730":7,"15731":9,"15732":8,"15733":2,"15734":1,"15735":8,"15736":4,"15737":8,"15738":8,"15739":8,"15740":7,"15741":8,"15742":9,"15743":8,"15744":2,"15745":8,"15746":7,"15747":5,"15748":9,"15749":4,"15750":8,"15751":8,"15752":1,"15753":8,"15754":8,"15755":5,"15756":7,"15757":3,"15758":8,"15759":8,"15760":8,"15761":5,"15762":2,"15763":10,"15764":5,"15765":10,"15766":2,"15767":5,"15768":4,"15769":7,"15770":2,"15771":5,"15772":3,"15773":2,"15774":5,"15775":5,"15776":9,"15777":2,"15778":2,"15779":9,"15780":4,"15781":8,"15782":3,"15783":9,"15784":4,"15785":7,"15786":9,"15787":7,"15788":10,"15789":5,"15790":3,"15791":7,"15792":5,"15793":8,"15794":7,"15795":8,"15796":8,"15797":1,"15798":9,"15799":9,"15800":8,"15801":8,"15802":7,"15803":7,"15804":8,"15805":3,"15806":7,"15807":8,"15808":4,"15809":8,"15810":8,"15811":7,"15812":9,"15813":2,"15814":9,"15815":6,"15816":2,"15817":8,"15818":6,"15819":7,"15820":7,"15821":1,"15822":9,"15823":1,"15824":10,"15825":8,"15826":2,"15827":8,"15828":6,"15829":5,"15830":7,"15831":10,"15832":7,"15833":5,"15834":3,"15835":5,"15836":7,"15837":8,"15838":10,"15839":7,"15840":7,"15841":10,"15842":7,"15843":3,"15844":8,"15845":10,"15846":5,"15847":10,"15848":1,"15849":10,"15850":9,"15851":7,"15852":2,"15853":2,"15854":7,"15855":8,"15856":6,"15857":2,"15858":1,"15859":1,"15860":5,"15861":7,"15862":8,"15863":9,"15864":7,"15865":8,"15866":7,"15867":1,"15868":5,"15869":1,"15870":7,"15871":5,"15872":10,"15873":10,"15874":5,"15875":2,"15876":9,"15877":8,"15878":5,"15879":2,"15880":3,"15881":7,"15882":9,"15883":7,"15884":5,"15885":6,"15886":1,"15887":7,"15888":2,"15889":7,"15890":8,"15891":3,"15892":1,"15893":6,"15894":9,"15895":10,"15896":6,"15897":2,"15898":6,"15899":7,"15900":1,"15901":5,"15902":9,"15903":9,"15904":4,"15905":2,"15906":5,"15907":3,"15908":8,"15909":6,"15910":8,"15911":7,"15912":9,"15913":9,"15914":2,"15915":1,"15916":8,"15917":7,"15918":9,"15919":6,"15920":8,"15921":6,"15922":5,"15923":10,"15924":6,"15925":5,"15926":7,"15927":4,"15928":9,"15929":5,"15930":8,"15931":8,"15932":7,"15933":2,"15934":9,"15935":8,"15936":5,"15937":2,"15938":6,"15939":2,"15940":10,"15941":2,"15942":7,"15943":2,"15944":9,"15945":9,"15946":8,"15947":8,"15948":1,"15949":4,"15950":5,"15951":9,"15952":3,"15953":5,"15954":5,"15955":8,"15956":8,"15957":8,"15958":8,"15959":9,"15960":8,"15961":5,"15962":8,"15963":1,"15964":7,"15965":8,"15966":8,"15967":8,"15968":7,"15969":8,"15970":7,"15971":8,"15972":8,"15973":5,"15974":2,"15975":9,"15976":7,"15977":9,"15978":10,"15979":2,"15980":5,"15981":9,"15982":9,"15983":7,"15984":8,"15985":4,"15986":4,"15987":9,"15988":8,"15989":10,"15990":6,"15991":7,"15992":8,"15993":7,"15994":6,"15995":1,"15996":8,"15997":8,"15998":8,"15999":8,"16000":5,"16001":5,"16002":7,"16003":8,"16004":9,"16005":9,"16006":10,"16007":8,"16008":7,"16009":8,"16010":8,"16011":7,"16012":1,"16013":10,"16014":3,"16015":5,"16016":1,"16017":1,"16018":1,"16019":3,"16020":8,"16021":9,"16022":7,"16023":2,"16024":3,"16025":10,"16026":2,"16027":5,"16028":9,"16029":2,"16030":8,"16031":7,"16032":8,"16033":5,"16034":8,"16035":10,"16036":2,"16037":4,"16038":7,"16039":5,"16040":5,"16041":5,"16042":8,"16043":9,"16044":9,"16045":8,"16046":7,"16047":5,"16048":5,"16049":7,"16050":8,"16051":7,"16052":1,"16053":9,"16054":8,"16055":9,"16056":4,"16057":7,"16058":7,"16059":9,"16060":7,"16061":5,"16062":9,"16063":9,"16064":8,"16065":7,"16066":5,"16067":7,"16068":9,"16069":5,"16070":4,"16071":5,"16072":3,"16073":6,"16074":2,"16075":6,"16076":5,"16077":8,"16078":1,"16079":7,"16080":6,"16081":7,"16082":3,"16083":8,"16084":5,"16085":8,"16086":2,"16087":9,"16088":2,"16089":6,"16090":9,"16091":8,"16092":7,"16093":9,"16094":9,"16095":5,"16096":9,"16097":6,"16098":7,"16099":9,"16100":5,"16101":3,"16102":10,"16103":4,"16104":6,"16105":9,"16106":5,"16107":7,"16108":3,"16109":10,"16110":9,"16111":7,"16112":9,"16113":3,"16114":5,"16115":8,"16116":7,"16117":3,"16118":8,"16119":6,"16120":9,"16121":3,"16122":2,"16123":8,"16124":7,"16125":4,"16126":1,"16127":9,"16128":8,"16129":10,"16130":8,"16131":8,"16132":8,"16133":1,"16134":3,"16135":9,"16136":3,"16137":5,"16138":7,"16139":7,"16140":9,"16141":8,"16142":8,"16143":8,"16144":4,"16145":4,"16146":6,"16147":8,"16148":8,"16149":4,"16150":9,"16151":6,"16152":7,"16153":5,"16154":3,"16155":7,"16156":10,"16157":7,"16158":7,"16159":10,"16160":7,"16161":5,"16162":2,"16163":10,"16164":9,"16165":6,"16166":9,"16167":9,"16168":8,"16169":1,"16170":4,"16171":8,"16172":2,"16173":7,"16174":10,"16175":1,"16176":8,"16177":7,"16178":2,"16179":10,"16180":8,"16181":7,"16182":7,"16183":8,"16184":7,"16185":7,"16186":8,"16187":3,"16188":7,"16189":2,"16190":8,"16191":8,"16192":7,"16193":7,"16194":7,"16195":7,"16196":3,"16197":7,"16198":8,"16199":10,"16200":7,"16201":7,"16202":8,"16203":8,"16204":7,"16205":2,"16206":7,"16207":6,"16208":8,"16209":8,"16210":2,"16211":4,"16212":4,"16213":4,"16214":1,"16215":2,"16216":1,"16217":2,"16218":8,"16219":8,"16220":8,"16221":5,"16222":7,"16223":8,"16224":6,"16225":6,"16226":9,"16227":8,"16228":9,"16229":3,"16230":1,"16231":4,"16232":3,"16233":8,"16234":7,"16235":5,"16236":7,"16237":2,"16238":5,"16239":2,"16240":5,"16241":5,"16242":7,"16243":7,"16244":7,"16245":9,"16246":9,"16247":4,"16248":8,"16249":8,"16250":7,"16251":8,"16252":8,"16253":9,"16254":8,"16255":2,"16256":1,"16257":6,"16258":9,"16259":8,"16260":2,"16261":8,"16262":8,"16263":4,"16264":3,"16265":9,"16266":5,"16267":5,"16268":8,"16269":7,"16270":1,"16271":7,"16272":7,"16273":7,"16274":8,"16275":8,"16276":9,"16277":8,"16278":6,"16279":8,"16280":8,"16281":8,"16282":7,"16283":5,"16284":7,"16285":2,"16286":9,"16287":4,"16288":8,"16289":7,"16290":9,"16291":7,"16292":9,"16293":5,"16294":8,"16295":1,"16296":2,"16297":7,"16298":2,"16299":2,"16300":8,"16301":8,"16302":6,"16303":7,"16304":7,"16305":2,"16306":7,"16307":4,"16308":8,"16309":6,"16310":9,"16311":9,"16312":9,"16313":4,"16314":2,"16315":7,"16316":8,"16317":6,"16318":5,"16319":5,"16320":8,"16321":8,"16322":6,"16323":5,"16324":8,"16325":5,"16326":9,"16327":9,"16328":8,"16329":5,"16330":9,"16331":9,"16332":5,"16333":2,"16334":8,"16335":8,"16336":2,"16337":8,"16338":8,"16339":7,"16340":8,"16341":9,"16342":6,"16343":10,"16344":8,"16345":2,"16346":9,"16347":7,"16348":6,"16349":8,"16350":8,"16351":9,"16352":8,"16353":10,"16354":7,"16355":7,"16356":2,"16357":2,"16358":7,"16359":7,"16360":8,"16361":9,"16362":7,"16363":2,"16364":2,"16365":9,"16366":7,"16367":9,"16368":4,"16369":7,"16370":8,"16371":6,"16372":5,"16373":8,"16374":7,"16375":10,"16376":7,"16377":7,"16378":10,"16379":2,"16380":5,"16381":7,"16382":9,"16383":9,"16384":5,"16385":5,"16386":9,"16387":6,"16388":5,"16389":9,"16390":9,"16391":6,"16392":5,"16393":9,"16394":9,"16395":5,"16396":2,"16397":4,"16398":5,"16399":3,"16400":9,"16401":9,"16402":10,"16403":8,"16404":2,"16405":9,"16406":6,"16407":5,"16408":2,"16409":7,"16410":5,"16411":3,"16412":5,"16413":7,"16414":7,"16415":4,"16416":2,"16417":9,"16418":5,"16419":1,"16420":10,"16421":8,"16422":7,"16423":5,"16424":1,"16425":2,"16426":9,"16427":6,"16428":2,"16429":9,"16430":8,"16431":10,"16432":8,"16433":5,"16434":10,"16435":5,"16436":8,"16437":8,"16438":7,"16439":8,"16440":9,"16441":9,"16442":8,"16443":9,"16444":8,"16445":5,"16446":8,"16447":5,"16448":8,"16449":9,"16450":8,"16451":10,"16452":8,"16453":10,"16454":7,"16455":8,"16456":9,"16457":5,"16458":1,"16459":9,"16460":1,"16461":9,"16462":8,"16463":7,"16464":8,"16465":9,"16466":5,"16467":6,"16468":6,"16469":9,"16470":7,"16471":9,"16472":1,"16473":5,"16474":5,"16475":8,"16476":9,"16477":9,"16478":8,"16479":7,"16480":10,"16481":9,"16482":7,"16483":5,"16484":10,"16485":8,"16486":10,"16487":8,"16488":10,"16489":9,"16490":9,"16491":2,"16492":8,"16493":7,"16494":8,"16495":2,"16496":6,"16497":3,"16498":2,"16499":6,"16500":1,"16501":8,"16502":8,"16503":2,"16504":1,"16505":5,"16506":8,"16507":4,"16508":4,"16509":8,"16510":8,"16511":10,"16512":8,"16513":10,"16514":2,"16515":8,"16516":5,"16517":8,"16518":1,"16519":7,"16520":4,"16521":7,"16522":8,"16523":7,"16524":7,"16525":9,"16526":3,"16527":3,"16528":7,"16529":8,"16530":5,"16531":7,"16532":8,"16533":1,"16534":8,"16535":3,"16536":8,"16537":9,"16538":4,"16539":7,"16540":9,"16541":7,"16542":7,"16543":9,"16544":8,"16545":8,"16546":7,"16547":6,"16548":7,"16549":7,"16550":3,"16551":7,"16552":9,"16553":9,"16554":7,"16555":9,"16556":5,"16557":5,"16558":10,"16559":8,"16560":8,"16561":2,"16562":5,"16563":5,"16564":5,"16565":7,"16566":10,"16567":5,"16568":7,"16569":6,"16570":2,"16571":7,"16572":7,"16573":7,"16574":7,"16575":5,"16576":7,"16577":8,"16578":9,"16579":8,"16580":8,"16581":6,"16582":6,"16583":8,"16584":6,"16585":2,"16586":8,"16587":1,"16588":7,"16589":9,"16590":2,"16591":8,"16592":8,"16593":2,"16594":10,"16595":9,"16596":6,"16597":7,"16598":2,"16599":8,"16600":9,"16601":9,"16602":8,"16603":8,"16604":5,"16605":2,"16606":5,"16607":1,"16608":9,"16609":4,"16610":10,"16611":3,"16612":9,"16613":8,"16614":4,"16615":7,"16616":9,"16617":7,"16618":2,"16619":5,"16620":10,"16621":9,"16622":8,"16623":7,"16624":10,"16625":5,"16626":2,"16627":9,"16628":7,"16629":8,"16630":3,"16631":8,"16632":7,"16633":10,"16634":5,"16635":6,"16636":6,"16637":5,"16638":7,"16639":7,"16640":7,"16641":9,"16642":9,"16643":9,"16644":7,"16645":8,"16646":8,"16647":2,"16648":10,"16649":8,"16650":4,"16651":7,"16652":7,"16653":7,"16654":5,"16655":8,"16656":5,"16657":5,"16658":5,"16659":9,"16660":8,"16661":1,"16662":8,"16663":2,"16664":8,"16665":2,"16666":2,"16667":7,"16668":9,"16669":7,"16670":9,"16671":9,"16672":5,"16673":4,"16674":7,"16675":7,"16676":7,"16677":6,"16678":3,"16679":7,"16680":6,"16681":8,"16682":5,"16683":10,"16684":9,"16685":5,"16686":4,"16687":8,"16688":2,"16689":6,"16690":9,"16691":9,"16692":8,"16693":6,"16694":8,"16695":2,"16696":8,"16697":8,"16698":2,"16699":4,"16700":8,"16701":9,"16702":2,"16703":9,"16704":3,"16705":10,"16706":2,"16707":9,"16708":3,"16709":6,"16710":7,"16711":6,"16712":10,"16713":7,"16714":4,"16715":2,"16716":7,"16717":3,"16718":5,"16719":7,"16720":5,"16721":7,"16722":9,"16723":7,"16724":4,"16725":8,"16726":8,"16727":2,"16728":7,"16729":8,"16730":9,"16731":8,"16732":10,"16733":7,"16734":8,"16735":7,"16736":7,"16737":2,"16738":2,"16739":9,"16740":9,"16741":7,"16742":10,"16743":7,"16744":8,"16745":9,"16746":8,"16747":7,"16748":9,"16749":8,"16750":8,"16751":7,"16752":7,"16753":8,"16754":7,"16755":8,"16756":3,"16757":9,"16758":9,"16759":7,"16760":9,"16761":8,"16762":7,"16763":7,"16764":9,"16765":5,"16766":5,"16767":9,"16768":1,"16769":6,"16770":7,"16771":7,"16772":7,"16773":7,"16774":5,"16775":9,"16776":6,"16777":6,"16778":7,"16779":9,"16780":8,"16781":7,"16782":8,"16783":8,"16784":8,"16785":9,"16786":2,"16787":5,"16788":2,"16789":7,"16790":10,"16791":4,"16792":9,"16793":4,"16794":5,"16795":7,"16796":4,"16797":2,"16798":2,"16799":8,"16800":7,"16801":7,"16802":7,"16803":7,"16804":8,"16805":9,"16806":9,"16807":8,"16808":5,"16809":7,"16810":2,"16811":4,"16812":8,"16813":7,"16814":9,"16815":7,"16816":9,"16817":6,"16818":8,"16819":8,"16820":9,"16821":6,"16822":10,"16823":7,"16824":5,"16825":7,"16826":1,"16827":7,"16828":6,"16829":3,"16830":9,"16831":7,"16832":7,"16833":8,"16834":7,"16835":7,"16836":9,"16837":5,"16838":8,"16839":1,"16840":3,"16841":9,"16842":2,"16843":1,"16844":9,"16845":7,"16846":9,"16847":2,"16848":1,"16849":8,"16850":9,"16851":7,"16852":9,"16853":9,"16854":7,"16855":9,"16856":7,"16857":4,"16858":8,"16859":1,"16860":7,"16861":10,"16862":6,"16863":1,"16864":8,"16865":2,"16866":8,"16867":8,"16868":5,"16869":7,"16870":7,"16871":8,"16872":7,"16873":4,"16874":5,"16875":10,"16876":7,"16877":5,"16878":9,"16879":8,"16880":8,"16881":2,"16882":9,"16883":4,"16884":8,"16885":7,"16886":8,"16887":2,"16888":7,"16889":5,"16890":8,"16891":1,"16892":4,"16893":8,"16894":9,"16895":8,"16896":9,"16897":7,"16898":7,"16899":6,"16900":9,"16901":7,"16902":3,"16903":9,"16904":5,"16905":3,"16906":7,"16907":8,"16908":6,"16909":8,"16910":4,"16911":7,"16912":9,"16913":9,"16914":1,"16915":6,"16916":6,"16917":2,"16918":4,"16919":8,"16920":6,"16921":9,"16922":9,"16923":3,"16924":9,"16925":9,"16926":8,"16927":4,"16928":9,"16929":8,"16930":5,"16931":4,"16932":8,"16933":5,"16934":1,"16935":1,"16936":6,"16937":5,"16938":9,"16939":8,"16940":9,"16941":9,"16942":7,"16943":5,"16944":6,"16945":2,"16946":9,"16947":7,"16948":9,"16949":3,"16950":3,"16951":2,"16952":9,"16953":10,"16954":9,"16955":2,"16956":2,"16957":9,"16958":4,"16959":7,"16960":9,"16961":3,"16962":9,"16963":10,"16964":1,"16965":8,"16966":8,"16967":10,"16968":7,"16969":7,"16970":8,"16971":4,"16972":7,"16973":4,"16974":10,"16975":10,"16976":8,"16977":7,"16978":6,"16979":10,"16980":2,"16981":7,"16982":7,"16983":9,"16984":7,"16985":4,"16986":9,"16987":8,"16988":8,"16989":7,"16990":2,"16991":7,"16992":6,"16993":4,"16994":3,"16995":1,"16996":8,"16997":7,"16998":9,"16999":1,"17000":6,"17001":1,"17002":9,"17003":2,"17004":6,"17005":5,"17006":6,"17007":7,"17008":2,"17009":4,"17010":8,"17011":5,"17012":7,"17013":1,"17014":8,"17015":7,"17016":3,"17017":8,"17018":1,"17019":4,"17020":7,"17021":9,"17022":9,"17023":7,"17024":5,"17025":9,"17026":9,"17027":9,"17028":9,"17029":6,"17030":5,"17031":6,"17032":7,"17033":7,"17034":7,"17035":9,"17036":7,"17037":3,"17038":8,"17039":10,"17040":8,"17041":8,"17042":7,"17043":7,"17044":1,"17045":9,"17046":3,"17047":5,"17048":8,"17049":2,"17050":8,"17051":2,"17052":10,"17053":8,"17054":8,"17055":10,"17056":10,"17057":9,"17058":1,"17059":5,"17060":6,"17061":9,"17062":3,"17063":7,"17064":7,"17065":5,"17066":5,"17067":7,"17068":10,"17069":8,"17070":2,"17071":8,"17072":7,"17073":7,"17074":9,"17075":1,"17076":9,"17077":8,"17078":2,"17079":7,"17080":1,"17081":9,"17082":8,"17083":10,"17084":7,"17085":10,"17086":7,"17087":10,"17088":9,"17089":5,"17090":8,"17091":9,"17092":7,"17093":5,"17094":8,"17095":7,"17096":10,"17097":8,"17098":9,"17099":9,"17100":9,"17101":5,"17102":5,"17103":2,"17104":7,"17105":7,"17106":9,"17107":5,"17108":10,"17109":5,"17110":8,"17111":7,"17112":7,"17113":3,"17114":3,"17115":1,"17116":8,"17117":4,"17118":8,"17119":8,"17120":5,"17121":10,"17122":10,"17123":5,"17124":5,"17125":7,"17126":3,"17127":6,"17128":5,"17129":2,"17130":8,"17131":3,"17132":9,"17133":7,"17134":5,"17135":2,"17136":1,"17137":5,"17138":7,"17139":8,"17140":7,"17141":8,"17142":8,"17143":8,"17144":9,"17145":6,"17146":5,"17147":7,"17148":10,"17149":5,"17150":8,"17151":6,"17152":7,"17153":5,"17154":8,"17155":5,"17156":2,"17157":9,"17158":9,"17159":5,"17160":8,"17161":7,"17162":9,"17163":7,"17164":6,"17165":8,"17166":7,"17167":2,"17168":7,"17169":7,"17170":8,"17171":5,"17172":10,"17173":4,"17174":9,"17175":5,"17176":2,"17177":5,"17178":9,"17179":5,"17180":3,"17181":2,"17182":5,"17183":10,"17184":1,"17185":8,"17186":9,"17187":9,"17188":10,"17189":9,"17190":9,"17191":9,"17192":9,"17193":8,"17194":9,"17195":1,"17196":2,"17197":8,"17198":2,"17199":10,"17200":4,"17201":8,"17202":3,"17203":4,"17204":8,"17205":8,"17206":5,"17207":8,"17208":8,"17209":7,"17210":5,"17211":7,"17212":8,"17213":8,"17214":5,"17215":9,"17216":9,"17217":5,"17218":7,"17219":9,"17220":2,"17221":10,"17222":8,"17223":9,"17224":2,"17225":8,"17226":5,"17227":8,"17228":4,"17229":7,"17230":2,"17231":6,"17232":10,"17233":8,"17234":8,"17235":8,"17236":9,"17237":7,"17238":5,"17239":8,"17240":2,"17241":8,"17242":2,"17243":2,"17244":7,"17245":5,"17246":6,"17247":8,"17248":1,"17249":9,"17250":4,"17251":9,"17252":10,"17253":9,"17254":8,"17255":8,"17256":7,"17257":8,"17258":8,"17259":2,"17260":9,"17261":7,"17262":6,"17263":9,"17264":9,"17265":7,"17266":7,"17267":7,"17268":8,"17269":7,"17270":8,"17271":6,"17272":7,"17273":7,"17274":9,"17275":3,"17276":9,"17277":10,"17278":5,"17279":8,"17280":7,"17281":7,"17282":8,"17283":3,"17284":5,"17285":1,"17286":7,"17287":2,"17288":7,"17289":9,"17290":2,"17291":4,"17292":5,"17293":2,"17294":9,"17295":1,"17296":9,"17297":4,"17298":1,"17299":7,"17300":9,"17301":7,"17302":3,"17303":5,"17304":7,"17305":1,"17306":8,"17307":7,"17308":9,"17309":10,"17310":7,"17311":3,"17312":2,"17313":8,"17314":9,"17315":5,"17316":8,"17317":5,"17318":7,"17319":8,"17320":5,"17321":5,"17322":1,"17323":8,"17324":10,"17325":8,"17326":5,"17327":7,"17328":2,"17329":7,"17330":2,"17331":2,"17332":2,"17333":8,"17334":8,"17335":8,"17336":9,"17337":7,"17338":8,"17339":9,"17340":2,"17341":9,"17342":8,"17343":7,"17344":10,"17345":1,"17346":8,"17347":4,"17348":3,"17349":10,"17350":9,"17351":8,"17352":8,"17353":4,"17354":10,"17355":1,"17356":9,"17357":9,"17358":7,"17359":7,"17360":8,"17361":5,"17362":2,"17363":8,"17364":5,"17365":9,"17366":5,"17367":5,"17368":4,"17369":9,"17370":9,"17371":2,"17372":4,"17373":2,"17374":3,"17375":10,"17376":4,"17377":10,"17378":8,"17379":2,"17380":8,"17381":6,"17382":7,"17383":8,"17384":1,"17385":2,"17386":8,"17387":10,"17388":9,"17389":9,"17390":2,"17391":2,"17392":1,"17393":2,"17394":9,"17395":7,"17396":9,"17397":3,"17398":6,"17399":7,"17400":2,"17401":8,"17402":10,"17403":5,"17404":7,"17405":3,"17406":1,"17407":8,"17408":1,"17409":5,"17410":9,"17411":8,"17412":7,"17413":9,"17414":6,"17415":4,"17416":10,"17417":7,"17418":9,"17419":2,"17420":7,"17421":1,"17422":7,"17423":7,"17424":7,"17425":2,"17426":9,"17427":7,"17428":2,"17429":7,"17430":8,"17431":5,"17432":9,"17433":2,"17434":5,"17435":6,"17436":8,"17437":10,"17438":7,"17439":8,"17440":2,"17441":8,"17442":7,"17443":10,"17444":3,"17445":8,"17446":9,"17447":6,"17448":1,"17449":6,"17450":7,"17451":4,"17452":5,"17453":7,"17454":8,"17455":8,"17456":3,"17457":8,"17458":7,"17459":7,"17460":2,"17461":7,"17462":7,"17463":6,"17464":5,"17465":2,"17466":8,"17467":5,"17468":8,"17469":10,"17470":1,"17471":5,"17472":10,"17473":1,"17474":8,"17475":8,"17476":7,"17477":8,"17478":1,"17479":8,"17480":2,"17481":7,"17482":8,"17483":7,"17484":9,"17485":5,"17486":8,"17487":2,"17488":9,"17489":9,"17490":5,"17491":7,"17492":7,"17493":4,"17494":10,"17495":10,"17496":6,"17497":7,"17498":9,"17499":5,"17500":8,"17501":10,"17502":8,"17503":9,"17504":8,"17505":9,"17506":6,"17507":1,"17508":4,"17509":9,"17510":2,"17511":5,"17512":6,"17513":10,"17514":5,"17515":1,"17516":8,"17517":2,"17518":1,"17519":7,"17520":7,"17521":5,"17522":2,"17523":5,"17524":7,"17525":1,"17526":10,"17527":8,"17528":7,"17529":7,"17530":9,"17531":8,"17532":3,"17533":7,"17534":4,"17535":7,"17536":9,"17537":5,"17538":6,"17539":7,"17540":9,"17541":4,"17542":7,"17543":9,"17544":3,"17545":3,"17546":5,"17547":10,"17548":1,"17549":5,"17550":7,"17551":7,"17552":8,"17553":8,"17554":2,"17555":1,"17556":5,"17557":8,"17558":6,"17559":2,"17560":6,"17561":2,"17562":1,"17563":7,"17564":5,"17565":9,"17566":8,"17567":5,"17568":6,"17569":3,"17570":9,"17571":1,"17572":8,"17573":1,"17574":3,"17575":8,"17576":7,"17577":5,"17578":7,"17579":7,"17580":9,"17581":8,"17582":8,"17583":5,"17584":6,"17585":5,"17586":6,"17587":5,"17588":4,"17589":8,"17590":7,"17591":9,"17592":4,"17593":3,"17594":8,"17595":9,"17596":5,"17597":8,"17598":10,"17599":9,"17600":7,"17601":2,"17602":8,"17603":9,"17604":2,"17605":7,"17606":8,"17607":9,"17608":8,"17609":2,"17610":9,"17611":1,"17612":7,"17613":8,"17614":8,"17615":8,"17616":7,"17617":2,"17618":2,"17619":7,"17620":7,"17621":7,"17622":9,"17623":8,"17624":7,"17625":9,"17626":1,"17627":7,"17628":8,"17629":7,"17630":7,"17631":4,"17632":7,"17633":9,"17634":4,"17635":8,"17636":2,"17637":9,"17638":10,"17639":9,"17640":9,"17641":7,"17642":1,"17643":5,"17644":10,"17645":8,"17646":8,"17647":5,"17648":7,"17649":7,"17650":2,"17651":3,"17652":5,"17653":8,"17654":2,"17655":2,"17656":7,"17657":7,"17658":4,"17659":8,"17660":3,"17661":7,"17662":7,"17663":1,"17664":9,"17665":8,"17666":9,"17667":7,"17668":9,"17669":2,"17670":7,"17671":9,"17672":5,"17673":5,"17674":7,"17675":7,"17676":8,"17677":5,"17678":2,"17679":8,"17680":7,"17681":8,"17682":7,"17683":8,"17684":1,"17685":3,"17686":6,"17687":1,"17688":9,"17689":2,"17690":2,"17691":7,"17692":7,"17693":8,"17694":6,"17695":5,"17696":8,"17697":8,"17698":9,"17699":9,"17700":8,"17701":8,"17702":3,"17703":8,"17704":8,"17705":10,"17706":9,"17707":8,"17708":7,"17709":6,"17710":5,"17711":5,"17712":9,"17713":9,"17714":7,"17715":5,"17716":8,"17717":9,"17718":9,"17719":8,"17720":4,"17721":2,"17722":1,"17723":7,"17724":6,"17725":7,"17726":2,"17727":5,"17728":2,"17729":2,"17730":1,"17731":7,"17732":10,"17733":4,"17734":8,"17735":7,"17736":9,"17737":8,"17738":5,"17739":2,"17740":9,"17741":8,"17742":7,"17743":8,"17744":8,"17745":8,"17746":10,"17747":9,"17748":9,"17749":8,"17750":1,"17751":8,"17752":4,"17753":9,"17754":9,"17755":4,"17756":7,"17757":7,"17758":5,"17759":5,"17760":10,"17761":8,"17762":7,"17763":7,"17764":4,"17765":8,"17766":9,"17767":10,"17768":2,"17769":3,"17770":5,"17771":5,"17772":9,"17773":7,"17774":4,"17775":8,"17776":8,"17777":8,"17778":9,"17779":7,"17780":8,"17781":9,"17782":7,"17783":7,"17784":4,"17785":6,"17786":9,"17787":2,"17788":7,"17789":8,"17790":8,"17791":9,"17792":7,"17793":7,"17794":9,"17795":7,"17796":6,"17797":8,"17798":9,"17799":8,"17800":3,"17801":8,"17802":7,"17803":10,"17804":9,"17805":8,"17806":5,"17807":8,"17808":2,"17809":7,"17810":8,"17811":4,"17812":2,"17813":3,"17814":10,"17815":2,"17816":7,"17817":5,"17818":8,"17819":4,"17820":5,"17821":7,"17822":4,"17823":9,"17824":1,"17825":3,"17826":8,"17827":5,"17828":10,"17829":7,"17830":5,"17831":6,"17832":4,"17833":2,"17834":5,"17835":6,"17836":8,"17837":5,"17838":8,"17839":6,"17840":9,"17841":3,"17842":10,"17843":6,"17844":10,"17845":8,"17846":4,"17847":10,"17848":9,"17849":6,"17850":7,"17851":10,"17852":9,"17853":7,"17854":1,"17855":2,"17856":7,"17857":10,"17858":8,"17859":6,"17860":2,"17861":2,"17862":1,"17863":7,"17864":8,"17865":6,"17866":9,"17867":5,"17868":5,"17869":2,"17870":7,"17871":5,"17872":7,"17873":2,"17874":5,"17875":2,"17876":7,"17877":4,"17878":2,"17879":5,"17880":2,"17881":8,"17882":7,"17883":7,"17884":2,"17885":8,"17886":2,"17887":7,"17888":2,"17889":8,"17890":8,"17891":4,"17892":8,"17893":7,"17894":7,"17895":7,"17896":7,"17897":8,"17898":8,"17899":6,"17900":9,"17901":8,"17902":7,"17903":8,"17904":8,"17905":4,"17906":3,"17907":5,"17908":7,"17909":5,"17910":7,"17911":2,"17912":8,"17913":7,"17914":9,"17915":9,"17916":8,"17917":7,"17918":7,"17919":2,"17920":7,"17921":2,"17922":5,"17923":7,"17924":6,"17925":8,"17926":8,"17927":1,"17928":10,"17929":2,"17930":7,"17931":8,"17932":7,"17933":2,"17934":8,"17935":2,"17936":8,"17937":6,"17938":6,"17939":8,"17940":9,"17941":2,"17942":3,"17943":7,"17944":8,"17945":8,"17946":8,"17947":9,"17948":9,"17949":3,"17950":9,"17951":7,"17952":7,"17953":10,"17954":7,"17955":7,"17956":7,"17957":10,"17958":5,"17959":8,"17960":7,"17961":8,"17962":7,"17963":6,"17964":2,"17965":8,"17966":8,"17967":1,"17968":9,"17969":9,"17970":7,"17971":5,"17972":5,"17973":7,"17974":4,"17975":5,"17976":8,"17977":7,"17978":8,"17979":2,"17980":9,"17981":8,"17982":3,"17983":5,"17984":8,"17985":7,"17986":8,"17987":7,"17988":5,"17989":2,"17990":9,"17991":9,"17992":7,"17993":8,"17994":8,"17995":8,"17996":2,"17997":8,"17998":5,"17999":9,"18000":8,"18001":9,"18002":7,"18003":7,"18004":5,"18005":1,"18006":9,"18007":5,"18008":7,"18009":9,"18010":6,"18011":8,"18012":7,"18013":8,"18014":6,"18015":5,"18016":5,"18017":7,"18018":1,"18019":1,"18020":7,"18021":5,"18022":9,"18023":7,"18024":7,"18025":1,"18026":10,"18027":9,"18028":6,"18029":1,"18030":4,"18031":9,"18032":7,"18033":9,"18034":1,"18035":7,"18036":7,"18037":9,"18038":5,"18039":3,"18040":8,"18041":9,"18042":2,"18043":2,"18044":4,"18045":8,"18046":2,"18047":6,"18048":4,"18049":10,"18050":8,"18051":7,"18052":10,"18053":9,"18054":10,"18055":7,"18056":9,"18057":3,"18058":5,"18059":8,"18060":10,"18061":7,"18062":4,"18063":3,"18064":2,"18065":5,"18066":9,"18067":6,"18068":9,"18069":7,"18070":6,"18071":9,"18072":5,"18073":5,"18074":7,"18075":1,"18076":7,"18077":1,"18078":7,"18079":9,"18080":7,"18081":7,"18082":6,"18083":8,"18084":5,"18085":3,"18086":7,"18087":9,"18088":7,"18089":7,"18090":8,"18091":2,"18092":9,"18093":7,"18094":3,"18095":8,"18096":9,"18097":5,"18098":9,"18099":7,"18100":9,"18101":8,"18102":2,"18103":9,"18104":7,"18105":9,"18106":5,"18107":7,"18108":4,"18109":5,"18110":7,"18111":9,"18112":4,"18113":9,"18114":8,"18115":8,"18116":7,"18117":3,"18118":3,"18119":3,"18120":2,"18121":8,"18122":7,"18123":2,"18124":2,"18125":1,"18126":6,"18127":8,"18128":6,"18129":9,"18130":7,"18131":8,"18132":9,"18133":7,"18134":1,"18135":7,"18136":7,"18137":8,"18138":8,"18139":9,"18140":1,"18141":3,"18142":6,"18143":1,"18144":8,"18145":7,"18146":7,"18147":1,"18148":5,"18149":8,"18150":7,"18151":2,"18152":8,"18153":5,"18154":9,"18155":7,"18156":3,"18157":2,"18158":1,"18159":1,"18160":1,"18161":9,"18162":7,"18163":8,"18164":7,"18165":5,"18166":5,"18167":1,"18168":10,"18169":3,"18170":6,"18171":2,"18172":7,"18173":6,"18174":6,"18175":7,"18176":9,"18177":7,"18178":2,"18179":3,"18180":9,"18181":6,"18182":3,"18183":8,"18184":10,"18185":2,"18186":5,"18187":9,"18188":8,"18189":6,"18190":9,"18191":5,"18192":2,"18193":3,"18194":8,"18195":8,"18196":7,"18197":7,"18198":7,"18199":7,"18200":9,"18201":8,"18202":4,"18203":3,"18204":1,"18205":7,"18206":5,"18207":7,"18208":8,"18209":4,"18210":9,"18211":9,"18212":4,"18213":9,"18214":9,"18215":5,"18216":9,"18217":7,"18218":8,"18219":8,"18220":9,"18221":2,"18222":5,"18223":7,"18224":7,"18225":5,"18226":4,"18227":9,"18228":3,"18229":7,"18230":2,"18231":1,"18232":7,"18233":3,"18234":5,"18235":9,"18236":7,"18237":9,"18238":8,"18239":7,"18240":9,"18241":9,"18242":9,"18243":7,"18244":9,"18245":7,"18246":7,"18247":7,"18248":9,"18249":5,"18250":9,"18251":2,"18252":2,"18253":6,"18254":6,"18255":4,"18256":2,"18257":10,"18258":10,"18259":10,"18260":9,"18261":2,"18262":7,"18263":8,"18264":8,"18265":8,"18266":1,"18267":7,"18268":9,"18269":4,"18270":7,"18271":5,"18272":7,"18273":5,"18274":7,"18275":6,"18276":7,"18277":1,"18278":2,"18279":10,"18280":6,"18281":7,"18282":7,"18283":3,"18284":3,"18285":7,"18286":7,"18287":9,"18288":1,"18289":9,"18290":10,"18291":5,"18292":8,"18293":7,"18294":9,"18295":9,"18296":9,"18297":4,"18298":5,"18299":4,"18300":9,"18301":3,"18302":7,"18303":6,"18304":8,"18305":8,"18306":9,"18307":7,"18308":3,"18309":1,"18310":2,"18311":1,"18312":5,"18313":2,"18314":5,"18315":8,"18316":9,"18317":5,"18318":9,"18319":9,"18320":4,"18321":8,"18322":5,"18323":8,"18324":9,"18325":10,"18326":7,"18327":8,"18328":3,"18329":5,"18330":4,"18331":2,"18332":5,"18333":7,"18334":8,"18335":9,"18336":3,"18337":3,"18338":8,"18339":4,"18340":2,"18341":2,"18342":9,"18343":9,"18344":7,"18345":9,"18346":1,"18347":2,"18348":8,"18349":1,"18350":1,"18351":7,"18352":6,"18353":6,"18354":5,"18355":8,"18356":7,"18357":8,"18358":9,"18359":9,"18360":7,"18361":9,"18362":8,"18363":9,"18364":4,"18365":8,"18366":9,"18367":7,"18368":7,"18369":2,"18370":6,"18371":8,"18372":7,"18373":5,"18374":7,"18375":7,"18376":7,"18377":5,"18378":7,"18379":7,"18380":5,"18381":3,"18382":2,"18383":2,"18384":8,"18385":4,"18386":9,"18387":10,"18388":9,"18389":9,"18390":7,"18391":10,"18392":5,"18393":1,"18394":8,"18395":5,"18396":4,"18397":8,"18398":6,"18399":7,"18400":8,"18401":8,"18402":6,"18403":1,"18404":2,"18405":9,"18406":7,"18407":7,"18408":2,"18409":8,"18410":2,"18411":2,"18412":8,"18413":5,"18414":7,"18415":7,"18416":5,"18417":7,"18418":7,"18419":3,"18420":9,"18421":6,"18422":7,"18423":7,"18424":2,"18425":8,"18426":9,"18427":10,"18428":8,"18429":3,"18430":7,"18431":5,"18432":5,"18433":8,"18434":7,"18435":8,"18436":8,"18437":8,"18438":9,"18439":4,"18440":7,"18441":7,"18442":7,"18443":7,"18444":8,"18445":4,"18446":8,"18447":8,"18448":8,"18449":5,"18450":9,"18451":5,"18452":7,"18453":9,"18454":8,"18455":10,"18456":7,"18457":7,"18458":9,"18459":2,"18460":5,"18461":6,"18462":9,"18463":10,"18464":6,"18465":2,"18466":1,"18467":7,"18468":9,"18469":10,"18470":3,"18471":8,"18472":7,"18473":7,"18474":9,"18475":9,"18476":5,"18477":2,"18478":8,"18479":1,"18480":8,"18481":9,"18482":2,"18483":7,"18484":9,"18485":10,"18486":2,"18487":5,"18488":2,"18489":5,"18490":7,"18491":7,"18492":7,"18493":9,"18494":7,"18495":4,"18496":2,"18497":2,"18498":1,"18499":9,"18500":9,"18501":9,"18502":5,"18503":7,"18504":9,"18505":9,"18506":6,"18507":7,"18508":10,"18509":3,"18510":6,"18511":4,"18512":7,"18513":9,"18514":8,"18515":9,"18516":2,"18517":4,"18518":9,"18519":8,"18520":2,"18521":3,"18522":5,"18523":7,"18524":7,"18525":7,"18526":7,"18527":10,"18528":4,"18529":4,"18530":2,"18531":9,"18532":5,"18533":3,"18534":7,"18535":1,"18536":2,"18537":1,"18538":1,"18539":7,"18540":7,"18541":7,"18542":2,"18543":9,"18544":9,"18545":1,"18546":5,"18547":7,"18548":7,"18549":2,"18550":7,"18551":5,"18552":9,"18553":8,"18554":8,"18555":5,"18556":8,"18557":1,"18558":4,"18559":8,"18560":9,"18561":4,"18562":9,"18563":8,"18564":3,"18565":1,"18566":9,"18567":2,"18568":4,"18569":8,"18570":9,"18571":8,"18572":9,"18573":2,"18574":8,"18575":7,"18576":7,"18577":9,"18578":6,"18579":9,"18580":10,"18581":9,"18582":10,"18583":3,"18584":9,"18585":9,"18586":7,"18587":8,"18588":2,"18589":7,"18590":1,"18591":5,"18592":7,"18593":2,"18594":3,"18595":3,"18596":2,"18597":5,"18598":7,"18599":8,"18600":10,"18601":1,"18602":1,"18603":8,"18604":1,"18605":7,"18606":9,"18607":10,"18608":7,"18609":7,"18610":2,"18611":6,"18612":8,"18613":4,"18614":3,"18615":7,"18616":8,"18617":7,"18618":8,"18619":8,"18620":9,"18621":3,"18622":4,"18623":1,"18624":8,"18625":1,"18626":3,"18627":2,"18628":8,"18629":8,"18630":2,"18631":2,"18632":8,"18633":4,"18634":7,"18635":3,"18636":10,"18637":8,"18638":9,"18639":8,"18640":3,"18641":10,"18642":3,"18643":7,"18644":7,"18645":4,"18646":4,"18647":8,"18648":10,"18649":2,"18650":1,"18651":7,"18652":8,"18653":8,"18654":6,"18655":8,"18656":8,"18657":6,"18658":8,"18659":8,"18660":7,"18661":7,"18662":6,"18663":4,"18664":8,"18665":5,"18666":7,"18667":7,"18668":8,"18669":9,"18670":8,"18671":5,"18672":9,"18673":2,"18674":9,"18675":2,"18676":3,"18677":7,"18678":3,"18679":8,"18680":7,"18681":7,"18682":3,"18683":8,"18684":8,"18685":8,"18686":5,"18687":5,"18688":7,"18689":6,"18690":8,"18691":9,"18692":9,"18693":7,"18694":7,"18695":8,"18696":2,"18697":7,"18698":8,"18699":2,"18700":7,"18701":8,"18702":8,"18703":7,"18704":7,"18705":9,"18706":7,"18707":10,"18708":4,"18709":7,"18710":5,"18711":3,"18712":4,"18713":9,"18714":2,"18715":7,"18716":3,"18717":7,"18718":7,"18719":1,"18720":4,"18721":6,"18722":8,"18723":5,"18724":5,"18725":1,"18726":2,"18727":7,"18728":8,"18729":9,"18730":7,"18731":8,"18732":7,"18733":5,"18734":9,"18735":10,"18736":4,"18737":4,"18738":7,"18739":6,"18740":8,"18741":1,"18742":1,"18743":8,"18744":2,"18745":10,"18746":7,"18747":7,"18748":4,"18749":8,"18750":8,"18751":7,"18752":3,"18753":2,"18754":8,"18755":9,"18756":2,"18757":1,"18758":7,"18759":10,"18760":8,"18761":2,"18762":3,"18763":8,"18764":8,"18765":2,"18766":2,"18767":9,"18768":8,"18769":1,"18770":8,"18771":9,"18772":8,"18773":9,"18774":8,"18775":5,"18776":9,"18777":9,"18778":6,"18779":8,"18780":4,"18781":7,"18782":8,"18783":8,"18784":4,"18785":7,"18786":5,"18787":8,"18788":10,"18789":2,"18790":2,"18791":7,"18792":6,"18793":2,"18794":10,"18795":2,"18796":10,"18797":8,"18798":10,"18799":7,"18800":10,"18801":8,"18802":2,"18803":10,"18804":9,"18805":7,"18806":7,"18807":9,"18808":4,"18809":9,"18810":5,"18811":9,"18812":5,"18813":10,"18814":9,"18815":9,"18816":7,"18817":5,"18818":7,"18819":9,"18820":9,"18821":8,"18822":8,"18823":8,"18824":8,"18825":4,"18826":8,"18827":4,"18828":2,"18829":9,"18830":7,"18831":8,"18832":7,"18833":1,"18834":8,"18835":10,"18836":8,"18837":2,"18838":8,"18839":9,"18840":9,"18841":8,"18842":8,"18843":5,"18844":9,"18845":7,"18846":9,"18847":8,"18848":6,"18849":8,"18850":9,"18851":8,"18852":7,"18853":7,"18854":8,"18855":2,"18856":5,"18857":7,"18858":7,"18859":5,"18860":7,"18861":8,"18862":9,"18863":7,"18864":7,"18865":7,"18866":10,"18867":8,"18868":9,"18869":4,"18870":6,"18871":7,"18872":7,"18873":7,"18874":3,"18875":3,"18876":3,"18877":9,"18878":7,"18879":1,"18880":2,"18881":2,"18882":7,"18883":2,"18884":1,"18885":8,"18886":8,"18887":1,"18888":6,"18889":10,"18890":2,"18891":8,"18892":9,"18893":2,"18894":8,"18895":2,"18896":2,"18897":10,"18898":2,"18899":8,"18900":7,"18901":4,"18902":7,"18903":5,"18904":7,"18905":8,"18906":8,"18907":6,"18908":2,"18909":4,"18910":9,"18911":7,"18912":9,"18913":5,"18914":5,"18915":8,"18916":3,"18917":9,"18918":2,"18919":9,"18920":9,"18921":8,"18922":7,"18923":8,"18924":2,"18925":7,"18926":8,"18927":4,"18928":8,"18929":8,"18930":7,"18931":7,"18932":9,"18933":7,"18934":9,"18935":10,"18936":5,"18937":5,"18938":9,"18939":7,"18940":3,"18941":7,"18942":8,"18943":2,"18944":8,"18945":1,"18946":8,"18947":9,"18948":7,"18949":7,"18950":5,"18951":6,"18952":10,"18953":6,"18954":9,"18955":5,"18956":9,"18957":7,"18958":9,"18959":8,"18960":3,"18961":9,"18962":6,"18963":2,"18964":4,"18965":4,"18966":5,"18967":3,"18968":4,"18969":7,"18970":6,"18971":5,"18972":6,"18973":7,"18974":7,"18975":8,"18976":8,"18977":8,"18978":4,"18979":6,"18980":7,"18981":3,"18982":5,"18983":8,"18984":2,"18985":5,"18986":7,"18987":6,"18988":1,"18989":2,"18990":8,"18991":5,"18992":6,"18993":5,"18994":9,"18995":10,"18996":8,"18997":6,"18998":7,"18999":7,"19000":8,"19001":2,"19002":7,"19003":2,"19004":7,"19005":7,"19006":8,"19007":8,"19008":9,"19009":8,"19010":1,"19011":8,"19012":1,"19013":5,"19014":7,"19015":7,"19016":2,"19017":7,"19018":8,"19019":9,"19020":7,"19021":9,"19022":9,"19023":7,"19024":5,"19025":10,"19026":8,"19027":5,"19028":9,"19029":7,"19030":3,"19031":8,"19032":7,"19033":9,"19034":7,"19035":9,"19036":6,"19037":8,"19038":2,"19039":4,"19040":5,"19041":3,"19042":8,"19043":3,"19044":8,"19045":8,"19046":9,"19047":5,"19048":9,"19049":9,"19050":8,"19051":5,"19052":10,"19053":7,"19054":7,"19055":2,"19056":9,"19057":8,"19058":7,"19059":1,"19060":4,"19061":7,"19062":2,"19063":2,"19064":7,"19065":9,"19066":6,"19067":2,"19068":9,"19069":9,"19070":7,"19071":5,"19072":7,"19073":5,"19074":7,"19075":9,"19076":4,"19077":7,"19078":6,"19079":2,"19080":8,"19081":7,"19082":5,"19083":10,"19084":7,"19085":7,"19086":7,"19087":6,"19088":10,"19089":9,"19090":10,"19091":8,"19092":7,"19093":10,"19094":2,"19095":8,"19096":6,"19097":7,"19098":7,"19099":7,"19100":8,"19101":9,"19102":2,"19103":4,"19104":10,"19105":8,"19106":5,"19107":8,"19108":9,"19109":7,"19110":10,"19111":5,"19112":8,"19113":9,"19114":5,"19115":9,"19116":7,"19117":2,"19118":8,"19119":7,"19120":8,"19121":9,"19122":2,"19123":7,"19124":6,"19125":7,"19126":10,"19127":5,"19128":7,"19129":9,"19130":8,"19131":8,"19132":9,"19133":2,"19134":7,"19135":9,"19136":8,"19137":9,"19138":7,"19139":1,"19140":8,"19141":7,"19142":8,"19143":2,"19144":7,"19145":2,"19146":8,"19147":9,"19148":1,"19149":5,"19150":8,"19151":5,"19152":4,"19153":4,"19154":2,"19155":3,"19156":8,"19157":2,"19158":10,"19159":2,"19160":6,"19161":8,"19162":9,"19163":2,"19164":5,"19165":4,"19166":7,"19167":2,"19168":4,"19169":8,"19170":6,"19171":4,"19172":8,"19173":6,"19174":8,"19175":1,"19176":7,"19177":7,"19178":10,"19179":3,"19180":9,"19181":8,"19182":3,"19183":7,"19184":8,"19185":8,"19186":8,"19187":6,"19188":8,"19189":9,"19190":8,"19191":7,"19192":9,"19193":1,"19194":7,"19195":9,"19196":8,"19197":9,"19198":7,"19199":2,"19200":2,"19201":9,"19202":2,"19203":7,"19204":10,"19205":3,"19206":8,"19207":7,"19208":7,"19209":2,"19210":1,"19211":8,"19212":5,"19213":5,"19214":2,"19215":7,"19216":7,"19217":7,"19218":5,"19219":5,"19220":2,"19221":6,"19222":8,"19223":9,"19224":7,"19225":2,"19226":7,"19227":8,"19228":9,"19229":8,"19230":9,"19231":2,"19232":7,"19233":8,"19234":3,"19235":2,"19236":5,"19237":7,"19238":6,"19239":8,"19240":8,"19241":8,"19242":7,"19243":7,"19244":2,"19245":5,"19246":4,"19247":8,"19248":5,"19249":10,"19250":6,"19251":7,"19252":2,"19253":9,"19254":6,"19255":7,"19256":8,"19257":5,"19258":8,"19259":8,"19260":9,"19261":8,"19262":7,"19263":6,"19264":1,"19265":6,"19266":9,"19267":5,"19268":6,"19269":9,"19270":3,"19271":9,"19272":8,"19273":3,"19274":8,"19275":2,"19276":9,"19277":4,"19278":9,"19279":7,"19280":9,"19281":7,"19282":7,"19283":10,"19284":1,"19285":10,"19286":7,"19287":7,"19288":7,"19289":9,"19290":9,"19291":2,"19292":1,"19293":9,"19294":8,"19295":7,"19296":5,"19297":7,"19298":5,"19299":7,"19300":9,"19301":8,"19302":7,"19303":7,"19304":9,"19305":9,"19306":7,"19307":7,"19308":7,"19309":10,"19310":3,"19311":6,"19312":6,"19313":7,"19314":5,"19315":7,"19316":7,"19317":8,"19318":8,"19319":4,"19320":2,"19321":9,"19322":4,"19323":9,"19324":8,"19325":8,"19326":7,"19327":6,"19328":7,"19329":8,"19330":10,"19331":7,"19332":6,"19333":9,"19334":1,"19335":9,"19336":1,"19337":7,"19338":7,"19339":4,"19340":7,"19341":9,"19342":8,"19343":7,"19344":2,"19345":6,"19346":9,"19347":4,"19348":4,"19349":8,"19350":8,"19351":1,"19352":10,"19353":9,"19354":7,"19355":7,"19356":6,"19357":3,"19358":8,"19359":8,"19360":2,"19361":5,"19362":1,"19363":7,"19364":2,"19365":2,"19366":6,"19367":8,"19368":8,"19369":4,"19370":7,"19371":10,"19372":9,"19373":1,"19374":9,"19375":8,"19376":2,"19377":7,"19378":9,"19379":9,"19380":8,"19381":1,"19382":7,"19383":4,"19384":7,"19385":6,"19386":2,"19387":7,"19388":5,"19389":7,"19390":5,"19391":7,"19392":1,"19393":7,"19394":7,"19395":7,"19396":8,"19397":5,"19398":5,"19399":8,"19400":7,"19401":4,"19402":4,"19403":9,"19404":5,"19405":7,"19406":7,"19407":9,"19408":8,"19409":7,"19410":7,"19411":5,"19412":8,"19413":9,"19414":2,"19415":2,"19416":9,"19417":8,"19418":2,"19419":7,"19420":6,"19421":10,"19422":4,"19423":9,"19424":8,"19425":8,"19426":9,"19427":8,"19428":9,"19429":7,"19430":2,"19431":1,"19432":1,"19433":7,"19434":3,"19435":2,"19436":8,"19437":5,"19438":7,"19439":8,"19440":7,"19441":8,"19442":1,"19443":8,"19444":3,"19445":8,"19446":2,"19447":8,"19448":5,"19449":4,"19450":10,"19451":1,"19452":8,"19453":2,"19454":5,"19455":2,"19456":2,"19457":3,"19458":5,"19459":7,"19460":8,"19461":9,"19462":8,"19463":8,"19464":9,"19465":2,"19466":7,"19467":8,"19468":3,"19469":7,"19470":7,"19471":7,"19472":10,"19473":9,"19474":6,"19475":5,"19476":6,"19477":8,"19478":8,"19479":7,"19480":9,"19481":3,"19482":6,"19483":7,"19484":5,"19485":5,"19486":7,"19487":7,"19488":8,"19489":4,"19490":8,"19491":2,"19492":5,"19493":7,"19494":5,"19495":3,"19496":9,"19497":8,"19498":9,"19499":5,"19500":10,"19501":7,"19502":9,"19503":4,"19504":9,"19505":5,"19506":2,"19507":7,"19508":3,"19509":5,"19510":7,"19511":5,"19512":8,"19513":3,"19514":4,"19515":7,"19516":2,"19517":2,"19518":3,"19519":9,"19520":9,"19521":7,"19522":10,"19523":2,"19524":5,"19525":6,"19526":9,"19527":10,"19528":1,"19529":8,"19530":8,"19531":7,"19532":8,"19533":8,"19534":6,"19535":5,"19536":7,"19537":8,"19538":5,"19539":2,"19540":1,"19541":2,"19542":5,"19543":7,"19544":7,"19545":8,"19546":2,"19547":7,"19548":7,"19549":2,"19550":7,"19551":7,"19552":7,"19553":9,"19554":3,"19555":5,"19556":8,"19557":10,"19558":2,"19559":6,"19560":5,"19561":9,"19562":5,"19563":7,"19564":4,"19565":7,"19566":7,"19567":10,"19568":4,"19569":7,"19570":7,"19571":6,"19572":8,"19573":6,"19574":8,"19575":8,"19576":7,"19577":5,"19578":5,"19579":4,"19580":2,"19581":9,"19582":2,"19583":9,"19584":3,"19585":8,"19586":1,"19587":9,"19588":7,"19589":1,"19590":7,"19591":7,"19592":7,"19593":6,"19594":8,"19595":5,"19596":8,"19597":8,"19598":10,"19599":7,"19600":4,"19601":9,"19602":2,"19603":8,"19604":4,"19605":2,"19606":2,"19607":3,"19608":5,"19609":7,"19610":5,"19611":8,"19612":7,"19613":7,"19614":8,"19615":9,"19616":2,"19617":8,"19618":9,"19619":7,"19620":8,"19621":2,"19622":7,"19623":2,"19624":5,"19625":7,"19626":4,"19627":4,"19628":3,"19629":1,"19630":4,"19631":2,"19632":10,"19633":9,"19634":8,"19635":7,"19636":2,"19637":9,"19638":2,"19639":7,"19640":1,"19641":7,"19642":10,"19643":7,"19644":7,"19645":4,"19646":1,"19647":2,"19648":9,"19649":4,"19650":7,"19651":7,"19652":5,"19653":6,"19654":7,"19655":8,"19656":9,"19657":4,"19658":6,"19659":8,"19660":2,"19661":2,"19662":6,"19663":5,"19664":7,"19665":5,"19666":1,"19667":5,"19668":7,"19669":7,"19670":5,"19671":7,"19672":9,"19673":5,"19674":9,"19675":7,"19676":2,"19677":7,"19678":8,"19679":3,"19680":7,"19681":2,"19682":9,"19683":10,"19684":6,"19685":2,"19686":8,"19687":5,"19688":7,"19689":9,"19690":2,"19691":8,"19692":1,"19693":6,"19694":7,"19695":9,"19696":5,"19697":7,"19698":7,"19699":9,"19700":2,"19701":7,"19702":8,"19703":7,"19704":7,"19705":6,"19706":7,"19707":9,"19708":8,"19709":7,"19710":8,"19711":1,"19712":8,"19713":4,"19714":8,"19715":9,"19716":6,"19717":7,"19718":10,"19719":9,"19720":8,"19721":9,"19722":2,"19723":7,"19724":10,"19725":10,"19726":7,"19727":9,"19728":9,"19729":7,"19730":10,"19731":9,"19732":8,"19733":8,"19734":9,"19735":9,"19736":10,"19737":9,"19738":9,"19739":8,"19740":10,"19741":7,"19742":9,"19743":6,"19744":8,"19745":7,"19746":9,"19747":8,"19748":8,"19749":9,"19750":9,"19751":8,"19752":7,"19753":4,"19754":8,"19755":8,"19756":3,"19757":4,"19758":4,"19759":7,"19760":7,"19761":4,"19762":9,"19763":7,"19764":8,"19765":3,"19766":8,"19767":3,"19768":8,"19769":6,"19770":8,"19771":7,"19772":7,"19773":7,"19774":2,"19775":2,"19776":8,"19777":9,"19778":3,"19779":8,"19780":4,"19781":7,"19782":7,"19783":4,"19784":9,"19785":1,"19786":7,"19787":9,"19788":7,"19789":7,"19790":7,"19791":5,"19792":9,"19793":7,"19794":8,"19795":1,"19796":7,"19797":7,"19798":7,"19799":9,"19800":9,"19801":9,"19802":8,"19803":2,"19804":1,"19805":6,"19806":7,"19807":2,"19808":7,"19809":7,"19810":5,"19811":7,"19812":3,"19813":9,"19814":8,"19815":9,"19816":9,"19817":2,"19818":8,"19819":8,"19820":9,"19821":4,"19822":8,"19823":7,"19824":8,"19825":10,"19826":5,"19827":5,"19828":4,"19829":8,"19830":9,"19831":8,"19832":8,"19833":2,"19834":5,"19835":7,"19836":7,"19837":7,"19838":7,"19839":7,"19840":4,"19841":5,"19842":8,"19843":4,"19844":7,"19845":8,"19846":2,"19847":7,"19848":9,"19849":9,"19850":5,"19851":8,"19852":1,"19853":5,"19854":3,"19855":5,"19856":2,"19857":9,"19858":8,"19859":8,"19860":8,"19861":7,"19862":7,"19863":7,"19864":7,"19865":9,"19866":8,"19867":7,"19868":4,"19869":7,"19870":2,"19871":5,"19872":5,"19873":9,"19874":5,"19875":5,"19876":9,"19877":10,"19878":8,"19879":9,"19880":7,"19881":2,"19882":2,"19883":6,"19884":7,"19885":10,"19886":8,"19887":8,"19888":8,"19889":3,"19890":9,"19891":5,"19892":8,"19893":6,"19894":8,"19895":10,"19896":10,"19897":9,"19898":9,"19899":1,"19900":10,"19901":8,"19902":2,"19903":7,"19904":7,"19905":9,"19906":7,"19907":7,"19908":2,"19909":9,"19910":6,"19911":9,"19912":4,"19913":8,"19914":7,"19915":6,"19916":4,"19917":7,"19918":7,"19919":7,"19920":5,"19921":6,"19922":5,"19923":5,"19924":8,"19925":9,"19926":6,"19927":10,"19928":1,"19929":2,"19930":10,"19931":1,"19932":7,"19933":2,"19934":2,"19935":2,"19936":9,"19937":8,"19938":2,"19939":7,"19940":2,"19941":7,"19942":8,"19943":7,"19944":7,"19945":10,"19946":2,"19947":8,"19948":9,"19949":8,"19950":2,"19951":7,"19952":1,"19953":5,"19954":3,"19955":9,"19956":4,"19957":1,"19958":5,"19959":7,"19960":4,"19961":7,"19962":6,"19963":9,"19964":6,"19965":8,"19966":5,"19967":9,"19968":3,"19969":8,"19970":7,"19971":4,"19972":10,"19973":2,"19974":8,"19975":8,"19976":8,"19977":8,"19978":7,"19979":3,"19980":8,"19981":7,"19982":4,"19983":9,"19984":8,"19985":8,"19986":7,"19987":4,"19988":8,"19989":9,"19990":8,"19991":3,"19992":8,"19993":1,"19994":8,"19995":1,"19996":8,"19997":2,"19998":10,"19999":9,"20000":2,"20001":8,"20002":7,"20003":9,"20004":6,"20005":7,"20006":9,"20007":7,"20008":7,"20009":5,"20010":3,"20011":7,"20012":7,"20013":10,"20014":9,"20015":10,"20016":6,"20017":3,"20018":5,"20019":9,"20020":9,"20021":7,"20022":9,"20023":7,"20024":4,"20025":4,"20026":7,"20027":8,"20028":1,"20029":10,"20030":6,"20031":8,"20032":2,"20033":8,"20034":8,"20035":5,"20036":7,"20037":9,"20038":4,"20039":9,"20040":8,"20041":5,"20042":3,"20043":3,"20044":2,"20045":8,"20046":8,"20047":8,"20048":9,"20049":9,"20050":9,"20051":9,"20052":9,"20053":9,"20054":4,"20055":7,"20056":4,"20057":7,"20058":2,"20059":9,"20060":7,"20061":7,"20062":6,"20063":8,"20064":9,"20065":4,"20066":8,"20067":3,"20068":2,"20069":5,"20070":8,"20071":7,"20072":2,"20073":7,"20074":2,"20075":7,"20076":2,"20077":4,"20078":7,"20079":3,"20080":3,"20081":9,"20082":2,"20083":5,"20084":7,"20085":9,"20086":7,"20087":8,"20088":2,"20089":9,"20090":7,"20091":9,"20092":1,"20093":5,"20094":8,"20095":5,"20096":9,"20097":8,"20098":1,"20099":8,"20100":7,"20101":8,"20102":7,"20103":7,"20104":4,"20105":6,"20106":9,"20107":8,"20108":4,"20109":7,"20110":10,"20111":7,"20112":3,"20113":2,"20114":2,"20115":9,"20116":9,"20117":4,"20118":8,"20119":5,"20120":8,"20121":1,"20122":8,"20123":2,"20124":7,"20125":1,"20126":7,"20127":9,"20128":2,"20129":8,"20130":1,"20131":2,"20132":1,"20133":9,"20134":4,"20135":8,"20136":6,"20137":9,"20138":4,"20139":7,"20140":1,"20141":1,"20142":3,"20143":2,"20144":10,"20145":9,"20146":7,"20147":7,"20148":9,"20149":5,"20150":9,"20151":7,"20152":4,"20153":5,"20154":6,"20155":3,"20156":5,"20157":7,"20158":7,"20159":10,"20160":9,"20161":8,"20162":5,"20163":9,"20164":5,"20165":10,"20166":9,"20167":8,"20168":8,"20169":4,"20170":5,"20171":5,"20172":8,"20173":7,"20174":8,"20175":9,"20176":8,"20177":3,"20178":8,"20179":7,"20180":9,"20181":7,"20182":8,"20183":10,"20184":1,"20185":7,"20186":7,"20187":8,"20188":8,"20189":5,"20190":8,"20191":5,"20192":7,"20193":6,"20194":5,"20195":7,"20196":3,"20197":7,"20198":7,"20199":2,"20200":8,"20201":9,"20202":5,"20203":5,"20204":9,"20205":10,"20206":10,"20207":5,"20208":9,"20209":9,"20210":9,"20211":8,"20212":5,"20213":8,"20214":9,"20215":8,"20216":4,"20217":8,"20218":1,"20219":3,"20220":9,"20221":8,"20222":1,"20223":5,"20224":8,"20225":9,"20226":5,"20227":1,"20228":8,"20229":9,"20230":7,"20231":8,"20232":6,"20233":8,"20234":9,"20235":8,"20236":3,"20237":9,"20238":4,"20239":9,"20240":4,"20241":9,"20242":8,"20243":9,"20244":8,"20245":2,"20246":8,"20247":6,"20248":8,"20249":8,"20250":5,"20251":2,"20252":5,"20253":5,"20254":6,"20255":6,"20256":7,"20257":5,"20258":5,"20259":2,"20260":8,"20261":8,"20262":6,"20263":9,"20264":2,"20265":7,"20266":7,"20267":9,"20268":9,"20269":8,"20270":5,"20271":7,"20272":8,"20273":1,"20274":7,"20275":8,"20276":4,"20277":2,"20278":6,"20279":9,"20280":10,"20281":8,"20282":8,"20283":8,"20284":2,"20285":3,"20286":8,"20287":8,"20288":10,"20289":8,"20290":9,"20291":9,"20292":2,"20293":8,"20294":3,"20295":10,"20296":7,"20297":7,"20298":7,"20299":10,"20300":9,"20301":9,"20302":1,"20303":5,"20304":7,"20305":10,"20306":3,"20307":2,"20308":10,"20309":7,"20310":10,"20311":5,"20312":5,"20313":1,"20314":8,"20315":3,"20316":8,"20317":9,"20318":10,"20319":8,"20320":9,"20321":8,"20322":10,"20323":5,"20324":6,"20325":9,"20326":8,"20327":8,"20328":5,"20329":6,"20330":9,"20331":10,"20332":8,"20333":9,"20334":5,"20335":4,"20336":7,"20337":8,"20338":5,"20339":5,"20340":4,"20341":8,"20342":2,"20343":9,"20344":6,"20345":5,"20346":7,"20347":2,"20348":9,"20349":5,"20350":1,"20351":9,"20352":2,"20353":7,"20354":2,"20355":8,"20356":3,"20357":7,"20358":8,"20359":8,"20360":9,"20361":4,"20362":2,"20363":9,"20364":9,"20365":8,"20366":10,"20367":9,"20368":2,"20369":7,"20370":8,"20371":8,"20372":8,"20373":4,"20374":7,"20375":9,"20376":8,"20377":7,"20378":7,"20379":2,"20380":2,"20381":7,"20382":2,"20383":4,"20384":8,"20385":7,"20386":8,"20387":8,"20388":8,"20389":2,"20390":7,"20391":2,"20392":4,"20393":9,"20394":9,"20395":2,"20396":7,"20397":8,"20398":9,"20399":2,"20400":10,"20401":7,"20402":7,"20403":8,"20404":8,"20405":8,"20406":2,"20407":9,"20408":2,"20409":7,"20410":9,"20411":5,"20412":3,"20413":9,"20414":2,"20415":8,"20416":4,"20417":5,"20418":6,"20419":8,"20420":9,"20421":3,"20422":9,"20423":8,"20424":9,"20425":5,"20426":7,"20427":7,"20428":4,"20429":9,"20430":7,"20431":5,"20432":8,"20433":5,"20434":8,"20435":7,"20436":4,"20437":5,"20438":8,"20439":6,"20440":8,"20441":5,"20442":1,"20443":9,"20444":7,"20445":9,"20446":7,"20447":8,"20448":9,"20449":1,"20450":1,"20451":8,"20452":2,"20453":8,"20454":8,"20455":2,"20456":8,"20457":3,"20458":10,"20459":8,"20460":7,"20461":2,"20462":7,"20463":7,"20464":8,"20465":9,"20466":2,"20467":5,"20468":5,"20469":7,"20470":5,"20471":5,"20472":7,"20473":3,"20474":9,"20475":4,"20476":5,"20477":9,"20478":9,"20479":6,"20480":2,"20481":7,"20482":8,"20483":9,"20484":10,"20485":1,"20486":7,"20487":5,"20488":3,"20489":7,"20490":8,"20491":7,"20492":9,"20493":9,"20494":7,"20495":2,"20496":9,"20497":8,"20498":1,"20499":8,"20500":9,"20501":2,"20502":10,"20503":9,"20504":8,"20505":2,"20506":4,"20507":5,"20508":5,"20509":2,"20510":3,"20511":9,"20512":9,"20513":7,"20514":7,"20515":6,"20516":2,"20517":8,"20518":9,"20519":8,"20520":3,"20521":5,"20522":8,"20523":7,"20524":2,"20525":9,"20526":9,"20527":7,"20528":2,"20529":8,"20530":9,"20531":9,"20532":4,"20533":7,"20534":10,"20535":10,"20536":3,"20537":9,"20538":8,"20539":5,"20540":7,"20541":1,"20542":9,"20543":2,"20544":5,"20545":9,"20546":7,"20547":4,"20548":9,"20549":2,"20550":10,"20551":7,"20552":10,"20553":8,"20554":2,"20555":7,"20556":2,"20557":8,"20558":10,"20559":7,"20560":9,"20561":9,"20562":8,"20563":4,"20564":2,"20565":8,"20566":1,"20567":9,"20568":8,"20569":3,"20570":8,"20571":2,"20572":1,"20573":7,"20574":7,"20575":6,"20576":2,"20577":1,"20578":7,"20579":8,"20580":7,"20581":9,"20582":7,"20583":9,"20584":9,"20585":7,"20586":5,"20587":9,"20588":5,"20589":1,"20590":8,"20591":7,"20592":8,"20593":5,"20594":8,"20595":2,"20596":3,"20597":4,"20598":9,"20599":9,"20600":9,"20601":10,"20602":7,"20603":5,"20604":7,"20605":2,"20606":7,"20607":7,"20608":7,"20609":9,"20610":9,"20611":8,"20612":2,"20613":7,"20614":2,"20615":9,"20616":1,"20617":3,"20618":2,"20619":2,"20620":9,"20621":5,"20622":9,"20623":3,"20624":8,"20625":10,"20626":9,"20627":4,"20628":7,"20629":8,"20630":3,"20631":4,"20632":4,"20633":2,"20634":7,"20635":8,"20636":3,"20637":4,"20638":5,"20639":3,"20640":9,"20641":7,"20642":7,"20643":2,"20644":9,"20645":2,"20646":3,"20647":10,"20648":9,"20649":7,"20650":8,"20651":2,"20652":4,"20653":2,"20654":7,"20655":2,"20656":10,"20657":7,"20658":9,"20659":5,"20660":5,"20661":8,"20662":7,"20663":9,"20664":2,"20665":4,"20666":8,"20667":8,"20668":7,"20669":8,"20670":9,"20671":7,"20672":6,"20673":1,"20674":6,"20675":9,"20676":3,"20677":7,"20678":2,"20679":7,"20680":9,"20681":9,"20682":7,"20683":7,"20684":8,"20685":10,"20686":2,"20687":6,"20688":7,"20689":2,"20690":5,"20691":7,"20692":8,"20693":5,"20694":7,"20695":9,"20696":7,"20697":7,"20698":8,"20699":8,"20700":8,"20701":7,"20702":7,"20703":6,"20704":8,"20705":6,"20706":9,"20707":8,"20708":7,"20709":8,"20710":8,"20711":8,"20712":10,"20713":8,"20714":8,"20715":8,"20716":2,"20717":5,"20718":8,"20719":6,"20720":10,"20721":7,"20722":7,"20723":2,"20724":3,"20725":2,"20726":3,"20727":7,"20728":7,"20729":8,"20730":7,"20731":9,"20732":2,"20733":2,"20734":8,"20735":10,"20736":2,"20737":8,"20738":9,"20739":7,"20740":8,"20741":8,"20742":9,"20743":8,"20744":4,"20745":7,"20746":3,"20747":7,"20748":7,"20749":8,"20750":3,"20751":7,"20752":9,"20753":7,"20754":8,"20755":10,"20756":9,"20757":8,"20758":6,"20759":5,"20760":2,"20761":3,"20762":8,"20763":9,"20764":6,"20765":2,"20766":8,"20767":7,"20768":2,"20769":10,"20770":8,"20771":5,"20772":8,"20773":3,"20774":6,"20775":9,"20776":4,"20777":8,"20778":9,"20779":8,"20780":5,"20781":2,"20782":2,"20783":5,"20784":3,"20785":4,"20786":9,"20787":5,"20788":9,"20789":8,"20790":8,"20791":8,"20792":2,"20793":7,"20794":8,"20795":7,"20796":9,"20797":7,"20798":7,"20799":7,"20800":7,"20801":7,"20802":2,"20803":7,"20804":5,"20805":8,"20806":1,"20807":7,"20808":2,"20809":9,"20810":8,"20811":5,"20812":4,"20813":2,"20814":9,"20815":7,"20816":8,"20817":10,"20818":7,"20819":8,"20820":3,"20821":9,"20822":7,"20823":2,"20824":2,"20825":7,"20826":3,"20827":9,"20828":4,"20829":8,"20830":9,"20831":5,"20832":1,"20833":6,"20834":9,"20835":8,"20836":1,"20837":7,"20838":9,"20839":6,"20840":5,"20841":3,"20842":9,"20843":9,"20844":1,"20845":7,"20846":7,"20847":7,"20848":5,"20849":8,"20850":7,"20851":5,"20852":5,"20853":2,"20854":2,"20855":7,"20856":1,"20857":2,"20858":4,"20859":8,"20860":6,"20861":7,"20862":9,"20863":9,"20864":3,"20865":7,"20866":9,"20867":3,"20868":2,"20869":7,"20870":8,"20871":7,"20872":8,"20873":7,"20874":2,"20875":8,"20876":7,"20877":10,"20878":9,"20879":6,"20880":8,"20881":5,"20882":8,"20883":7,"20884":2,"20885":5,"20886":8,"20887":2,"20888":2,"20889":10,"20890":6,"20891":4,"20892":9,"20893":8,"20894":7,"20895":2,"20896":8,"20897":2,"20898":8,"20899":7,"20900":7,"20901":9,"20902":9,"20903":9,"20904":8,"20905":5,"20906":6,"20907":3,"20908":2,"20909":7,"20910":7,"20911":9,"20912":10,"20913":9,"20914":8,"20915":5,"20916":7,"20917":7,"20918":4,"20919":8,"20920":8,"20921":5,"20922":7,"20923":9,"20924":9,"20925":9,"20926":9,"20927":7,"20928":9,"20929":3,"20930":7,"20931":7,"20932":1,"20933":6,"20934":7,"20935":8,"20936":5,"20937":8,"20938":8,"20939":4,"20940":2,"20941":3,"20942":2,"20943":8,"20944":2,"20945":2,"20946":1,"20947":9,"20948":8,"20949":7,"20950":2,"20951":7,"20952":1,"20953":6,"20954":5,"20955":2,"20956":8,"20957":10,"20958":3,"20959":5,"20960":2,"20961":10,"20962":5,"20963":10,"20964":2,"20965":7,"20966":2,"20967":10,"20968":5,"20969":3,"20970":7,"20971":9,"20972":3,"20973":8,"20974":1,"20975":6,"20976":2,"20977":7,"20978":8,"20979":8,"20980":2,"20981":8,"20982":8,"20983":9,"20984":9,"20985":2,"20986":7,"20987":3,"20988":5,"20989":7,"20990":9,"20991":1,"20992":8,"20993":8,"20994":2,"20995":5,"20996":2,"20997":2,"20998":8,"20999":2,"21000":2,"21001":1,"21002":9,"21003":4,"21004":8,"21005":5,"21006":3,"21007":8,"21008":5,"21009":9,"21010":2,"21011":2,"21012":8,"21013":7,"21014":9,"21015":10,"21016":8,"21017":2,"21018":9,"21019":7,"21020":7,"21021":10,"21022":8,"21023":8,"21024":6,"21025":2,"21026":9,"21027":5,"21028":8,"21029":5,"21030":7,"21031":5,"21032":9,"21033":5,"21034":8,"21035":5,"21036":5,"21037":8,"21038":9,"21039":8,"21040":3,"21041":2,"21042":2,"21043":1,"21044":7,"21045":4,"21046":6,"21047":7,"21048":5,"21049":5,"21050":7,"21051":3,"21052":3,"21053":8,"21054":9,"21055":8,"21056":7,"21057":8,"21058":7,"21059":8,"21060":9,"21061":9,"21062":10,"21063":6,"21064":8,"21065":5,"21066":4,"21067":1,"21068":1,"21069":6,"21070":6,"21071":4,"21072":9,"21073":7,"21074":8,"21075":2,"21076":8,"21077":2,"21078":7,"21079":10,"21080":5,"21081":4,"21082":8,"21083":2,"21084":5,"21085":7,"21086":7,"21087":3,"21088":10,"21089":8,"21090":9,"21091":7,"21092":5,"21093":8,"21094":6,"21095":8,"21096":2,"21097":2,"21098":8,"21099":9,"21100":7,"21101":9,"21102":4,"21103":9,"21104":4,"21105":1,"21106":7,"21107":7,"21108":8,"21109":8,"21110":3,"21111":7,"21112":9,"21113":2,"21114":4,"21115":5,"21116":10,"21117":1,"21118":1,"21119":1,"21120":2,"21121":7,"21122":10,"21123":6,"21124":4,"21125":8,"21126":2,"21127":5,"21128":7,"21129":9,"21130":8,"21131":7,"21132":8,"21133":2,"21134":2,"21135":1,"21136":5,"21137":9,"21138":3,"21139":7,"21140":10,"21141":1,"21142":1,"21143":7,"21144":3,"21145":9,"21146":9,"21147":3,"21148":2,"21149":7,"21150":8,"21151":5,"21152":8,"21153":8,"21154":2,"21155":8,"21156":8,"21157":9,"21158":9,"21159":2,"21160":8,"21161":8,"21162":8,"21163":8,"21164":9,"21165":7,"21166":9,"21167":7,"21168":7,"21169":7,"21170":4,"21171":3,"21172":7,"21173":8,"21174":1,"21175":9,"21176":2,"21177":5,"21178":8,"21179":9,"21180":7,"21181":8,"21182":2,"21183":8,"21184":9,"21185":3,"21186":7,"21187":4,"21188":2,"21189":7,"21190":8,"21191":3,"21192":1,"21193":4,"21194":10,"21195":3,"21196":7,"21197":9,"21198":1,"21199":1,"21200":7,"21201":2,"21202":8,"21203":8,"21204":8,"21205":8,"21206":10,"21207":9,"21208":7,"21209":2,"21210":5,"21211":5,"21212":5,"21213":4,"21214":9,"21215":9,"21216":2,"21217":7,"21218":7,"21219":7,"21220":10,"21221":9,"21222":9,"21223":9,"21224":7,"21225":2,"21226":9,"21227":7,"21228":8,"21229":1,"21230":1,"21231":8,"21232":10,"21233":1,"21234":3,"21235":2,"21236":3,"21237":3,"21238":9,"21239":7,"21240":3,"21241":8,"21242":6,"21243":10,"21244":4,"21245":1,"21246":8,"21247":9,"21248":7,"21249":7,"21250":5,"21251":8,"21252":5,"21253":9,"21254":10,"21255":6,"21256":3,"21257":8,"21258":8,"21259":5,"21260":9,"21261":2,"21262":9,"21263":1,"21264":7,"21265":5,"21266":7,"21267":1,"21268":2,"21269":3,"21270":7,"21271":7,"21272":7,"21273":7,"21274":8,"21275":4,"21276":7,"21277":10,"21278":4,"21279":8,"21280":2,"21281":6,"21282":6,"21283":2,"21284":9,"21285":7,"21286":2,"21287":7,"21288":8,"21289":2,"21290":4,"21291":3,"21292":3,"21293":8,"21294":8,"21295":8,"21296":9,"21297":1,"21298":8,"21299":7,"21300":8,"21301":3,"21302":9,"21303":8,"21304":7,"21305":4,"21306":4,"21307":7,"21308":7,"21309":2,"21310":8,"21311":8,"21312":8,"21313":1,"21314":4,"21315":9,"21316":8,"21317":9,"21318":6,"21319":4,"21320":9,"21321":8,"21322":9,"21323":4,"21324":8,"21325":1,"21326":5,"21327":7,"21328":6,"21329":9,"21330":2,"21331":8,"21332":8,"21333":7,"21334":6,"21335":7,"21336":7,"21337":7,"21338":8,"21339":5,"21340":9,"21341":2,"21342":10,"21343":2,"21344":5,"21345":8,"21346":2,"21347":6,"21348":1,"21349":10,"21350":7,"21351":8,"21352":9,"21353":7,"21354":7,"21355":8,"21356":5,"21357":10,"21358":9,"21359":5,"21360":3,"21361":5,"21362":4,"21363":8,"21364":2,"21365":8,"21366":9,"21367":10,"21368":8,"21369":5,"21370":9,"21371":10,"21372":7,"21373":7,"21374":4,"21375":4,"21376":7,"21377":8,"21378":6,"21379":7,"21380":8,"21381":9,"21382":5,"21383":7,"21384":2,"21385":1,"21386":8,"21387":9,"21388":7,"21389":3,"21390":7,"21391":8,"21392":9,"21393":8,"21394":6,"21395":1,"21396":9,"21397":2,"21398":9,"21399":1,"21400":10,"21401":7,"21402":8,"21403":7,"21404":2,"21405":8,"21406":5,"21407":9,"21408":9,"21409":5,"21410":9,"21411":9,"21412":5,"21413":7,"21414":4,"21415":9,"21416":2,"21417":7,"21418":8,"21419":5,"21420":5,"21421":2,"21422":1,"21423":7,"21424":1,"21425":6,"21426":9,"21427":10,"21428":9,"21429":4,"21430":5,"21431":1,"21432":5,"21433":10,"21434":8,"21435":5,"21436":9,"21437":5,"21438":7,"21439":5,"21440":7,"21441":8,"21442":8,"21443":4,"21444":8,"21445":2,"21446":9,"21447":7,"21448":8,"21449":3,"21450":5,"21451":9,"21452":6,"21453":7,"21454":9,"21455":10,"21456":2,"21457":9,"21458":8,"21459":7,"21460":10,"21461":7,"21462":7,"21463":2,"21464":2,"21465":1,"21466":5,"21467":7,"21468":5,"21469":9,"21470":9,"21471":9,"21472":3,"21473":9,"21474":8,"21475":3,"21476":3,"21477":6,"21478":8,"21479":3,"21480":7,"21481":9,"21482":7,"21483":4,"21484":6,"21485":4,"21486":9,"21487":2,"21488":7,"21489":2,"21490":5,"21491":2,"21492":5,"21493":10,"21494":8,"21495":4,"21496":1,"21497":8,"21498":8,"21499":8,"21500":8,"21501":10,"21502":4,"21503":9,"21504":7,"21505":8,"21506":1,"21507":10,"21508":8,"21509":3,"21510":2,"21511":9,"21512":8,"21513":9,"21514":3,"21515":3,"21516":8,"21517":9,"21518":9,"21519":6,"21520":6,"21521":3,"21522":2,"21523":1,"21524":7,"21525":5,"21526":3,"21527":8,"21528":8,"21529":9,"21530":8,"21531":6,"21532":8,"21533":2,"21534":2,"21535":4,"21536":7,"21537":2,"21538":9,"21539":8,"21540":4,"21541":8,"21542":2,"21543":10,"21544":8,"21545":9,"21546":8,"21547":7,"21548":7,"21549":3,"21550":9,"21551":9,"21552":4,"21553":9,"21554":8,"21555":6,"21556":9,"21557":8,"21558":5,"21559":8,"21560":2,"21561":6,"21562":3,"21563":8,"21564":5,"21565":2,"21566":6,"21567":2,"21568":9,"21569":8,"21570":9,"21571":6,"21572":6,"21573":7,"21574":2,"21575":7,"21576":4,"21577":9,"21578":8,"21579":2,"21580":7,"21581":7,"21582":2,"21583":5,"21584":7,"21585":8,"21586":7,"21587":5,"21588":8,"21589":10,"21590":8,"21591":2,"21592":9,"21593":7,"21594":5,"21595":5,"21596":2,"21597":9,"21598":8,"21599":2,"21600":6,"21601":8,"21602":9,"21603":2,"21604":8,"21605":9,"21606":9,"21607":8,"21608":8,"21609":9,"21610":8,"21611":1,"21612":10,"21613":7,"21614":7,"21615":5,"21616":3,"21617":8,"21618":9,"21619":9,"21620":8,"21621":5,"21622":8,"21623":8,"21624":8,"21625":10,"21626":9,"21627":1,"21628":8,"21629":4,"21630":6,"21631":9,"21632":7,"21633":7,"21634":3,"21635":5,"21636":4,"21637":5,"21638":3,"21639":7,"21640":4,"21641":7,"21642":8,"21643":2,"21644":6,"21645":8,"21646":1,"21647":4,"21648":8,"21649":3,"21650":6,"21651":7,"21652":8,"21653":2,"21654":9,"21655":6,"21656":9,"21657":8,"21658":6,"21659":9,"21660":2,"21661":9,"21662":7,"21663":5,"21664":9,"21665":6,"21666":9,"21667":6,"21668":8,"21669":8,"21670":8,"21671":8,"21672":5,"21673":4,"21674":6,"21675":4,"21676":8,"21677":7,"21678":9,"21679":7,"21680":7,"21681":7,"21682":4,"21683":2,"21684":7,"21685":7,"21686":9,"21687":8,"21688":9,"21689":7,"21690":8,"21691":7,"21692":8,"21693":10,"21694":3,"21695":8,"21696":9,"21697":10,"21698":8,"21699":5,"21700":2,"21701":2,"21702":2,"21703":8,"21704":2,"21705":10,"21706":3,"21707":5,"21708":3,"21709":8,"21710":2,"21711":2,"21712":9,"21713":7,"21714":10,"21715":8,"21716":7,"21717":3,"21718":1,"21719":10,"21720":7,"21721":5,"21722":7,"21723":9,"21724":7,"21725":7,"21726":10,"21727":6,"21728":8,"21729":9,"21730":7,"21731":2,"21732":7,"21733":8,"21734":9,"21735":9,"21736":9,"21737":8,"21738":2,"21739":9,"21740":6,"21741":7,"21742":1,"21743":6,"21744":8,"21745":9,"21746":9,"21747":5,"21748":1,"21749":6,"21750":7,"21751":8,"21752":5,"21753":9,"21754":7,"21755":7,"21756":8,"21757":4,"21758":2,"21759":7,"21760":9,"21761":7,"21762":9,"21763":7,"21764":7,"21765":2,"21766":7,"21767":8,"21768":8,"21769":5,"21770":1,"21771":9,"21772":5,"21773":7,"21774":7,"21775":9,"21776":7,"21777":7,"21778":8,"21779":8,"21780":8,"21781":9,"21782":3,"21783":8,"21784":2,"21785":8,"21786":2,"21787":9,"21788":9,"21789":6,"21790":8,"21791":6,"21792":8,"21793":7,"21794":3,"21795":9,"21796":8,"21797":3,"21798":7,"21799":8,"21800":7,"21801":7,"21802":8,"21803":5,"21804":2,"21805":8,"21806":7,"21807":1,"21808":8,"21809":3,"21810":6,"21811":2,"21812":9,"21813":8,"21814":7,"21815":7,"21816":5,"21817":4,"21818":5,"21819":1,"21820":7,"21821":9,"21822":8,"21823":8,"21824":2,"21825":8,"21826":8,"21827":5,"21828":7,"21829":2,"21830":9,"21831":8,"21832":8,"21833":7,"21834":9,"21835":4,"21836":8,"21837":9,"21838":8,"21839":8,"21840":10,"21841":1,"21842":9,"21843":1,"21844":10,"21845":7,"21846":8,"21847":1,"21848":8,"21849":8,"21850":2,"21851":8,"21852":7,"21853":9,"21854":6,"21855":5,"21856":5,"21857":7,"21858":8,"21859":5,"21860":3,"21861":3,"21862":8,"21863":2,"21864":7,"21865":5,"21866":2,"21867":9,"21868":3,"21869":10,"21870":10,"21871":9,"21872":9,"21873":2,"21874":10,"21875":9,"21876":8,"21877":5,"21878":7,"21879":7,"21880":8,"21881":7,"21882":7,"21883":4,"21884":5,"21885":1,"21886":7,"21887":7,"21888":9,"21889":7,"21890":2,"21891":7,"21892":9,"21893":8,"21894":2,"21895":3,"21896":3,"21897":6,"21898":7,"21899":9,"21900":4,"21901":1,"21902":8,"21903":3,"21904":9,"21905":8,"21906":5,"21907":6,"21908":9,"21909":7,"21910":1,"21911":5,"21912":8,"21913":7,"21914":3,"21915":9,"21916":8,"21917":8,"21918":5,"21919":8,"21920":5,"21921":7,"21922":8,"21923":10,"21924":7,"21925":8,"21926":7,"21927":10,"21928":7,"21929":8,"21930":10,"21931":8,"21932":8,"21933":7,"21934":4,"21935":6,"21936":8,"21937":8,"21938":8,"21939":8,"21940":2,"21941":5,"21942":2,"21943":7,"21944":7,"21945":9,"21946":4,"21947":7,"21948":8,"21949":9,"21950":2,"21951":4,"21952":5,"21953":5,"21954":9,"21955":9,"21956":4,"21957":1,"21958":8,"21959":8,"21960":2,"21961":8,"21962":6,"21963":9,"21964":6,"21965":10,"21966":8,"21967":8,"21968":7,"21969":7,"21970":9,"21971":8,"21972":2,"21973":7,"21974":8,"21975":8,"21976":8,"21977":6,"21978":1,"21979":1,"21980":8,"21981":9,"21982":7,"21983":8,"21984":7,"21985":5,"21986":10,"21987":2,"21988":2,"21989":1,"21990":4,"21991":2,"21992":7,"21993":8,"21994":9,"21995":4,"21996":9,"21997":8,"21998":5,"21999":7,"22000":9,"22001":8,"22002":6,"22003":9,"22004":9,"22005":9,"22006":7,"22007":7,"22008":9,"22009":4,"22010":4,"22011":4,"22012":3,"22013":9,"22014":7,"22015":8,"22016":6,"22017":9,"22018":10,"22019":2,"22020":6,"22021":2,"22022":8,"22023":6,"22024":9,"22025":7,"22026":2,"22027":4,"22028":8,"22029":8,"22030":9,"22031":8,"22032":7,"22033":4,"22034":1,"22035":9,"22036":6,"22037":9,"22038":2,"22039":7,"22040":5,"22041":5,"22042":9,"22043":3,"22044":7,"22045":2,"22046":6,"22047":10,"22048":8,"22049":3,"22050":8,"22051":4,"22052":10,"22053":10,"22054":8,"22055":7,"22056":8,"22057":7,"22058":7,"22059":7,"22060":2,"22061":8,"22062":5,"22063":2,"22064":9,"22065":7,"22066":1,"22067":6,"22068":5,"22069":9,"22070":5,"22071":7,"22072":8,"22073":9,"22074":8,"22075":2,"22076":4,"22077":7,"22078":6,"22079":8,"22080":2,"22081":9,"22082":5,"22083":7,"22084":7,"22085":8,"22086":9,"22087":5,"22088":8,"22089":6,"22090":10,"22091":5,"22092":3,"22093":7,"22094":5,"22095":7,"22096":8,"22097":7,"22098":8,"22099":3,"22100":2,"22101":2,"22102":9,"22103":6,"22104":5,"22105":8,"22106":2,"22107":6,"22108":8,"22109":7,"22110":4,"22111":9,"22112":7,"22113":7,"22114":1,"22115":6,"22116":2,"22117":7,"22118":4,"22119":5,"22120":1,"22121":5,"22122":1,"22123":8,"22124":9,"22125":4,"22126":8,"22127":2,"22128":8,"22129":7,"22130":1,"22131":8,"22132":8,"22133":7,"22134":7,"22135":7,"22136":9,"22137":9,"22138":8,"22139":8,"22140":8,"22141":7,"22142":6,"22143":6,"22144":8,"22145":9,"22146":8,"22147":9,"22148":5,"22149":8,"22150":8,"22151":1,"22152":4,"22153":9,"22154":7,"22155":5,"22156":9,"22157":8,"22158":8,"22159":7,"22160":8,"22161":2,"22162":7,"22163":2,"22164":3,"22165":8,"22166":5,"22167":4,"22168":7,"22169":4,"22170":6,"22171":9,"22172":9,"22173":8,"22174":8,"22175":1,"22176":7,"22177":7,"22178":10,"22179":7,"22180":8,"22181":7,"22182":8,"22183":10,"22184":10,"22185":10,"22186":9,"22187":7,"22188":5,"22189":7,"22190":1,"22191":8,"22192":7,"22193":8,"22194":7,"22195":6,"22196":2,"22197":9,"22198":8,"22199":5,"22200":1,"22201":2,"22202":9,"22203":2,"22204":8,"22205":8,"22206":4,"22207":7,"22208":7,"22209":7,"22210":7,"22211":7,"22212":5,"22213":9,"22214":7,"22215":9,"22216":6,"22217":7,"22218":2,"22219":6,"22220":8,"22221":2,"22222":9,"22223":9,"22224":8,"22225":3,"22226":2,"22227":8,"22228":2,"22229":7,"22230":2,"22231":7,"22232":8,"22233":8,"22234":2,"22235":7,"22236":9,"22237":7,"22238":8,"22239":5,"22240":4,"22241":3,"22242":5,"22243":10,"22244":8,"22245":2,"22246":7,"22247":2,"22248":3,"22249":8,"22250":9,"22251":2,"22252":4,"22253":5,"22254":7,"22255":8,"22256":10,"22257":2,"22258":3,"22259":9,"22260":7,"22261":9,"22262":8,"22263":4,"22264":9,"22265":8,"22266":9,"22267":7,"22268":7,"22269":6,"22270":9,"22271":8,"22272":9,"22273":1,"22274":9,"22275":9,"22276":8,"22277":5,"22278":10,"22279":9,"22280":7,"22281":5,"22282":8,"22283":10,"22284":8,"22285":8,"22286":8,"22287":6,"22288":8,"22289":8,"22290":4,"22291":7,"22292":7,"22293":7,"22294":2,"22295":1,"22296":7,"22297":2,"22298":5,"22299":5,"22300":7,"22301":5,"22302":6,"22303":9,"22304":8,"22305":10,"22306":8,"22307":2,"22308":8,"22309":7,"22310":8,"22311":7,"22312":8,"22313":9,"22314":4,"22315":9,"22316":8,"22317":7,"22318":8,"22319":8,"22320":7,"22321":9,"22322":9,"22323":2,"22324":9,"22325":1,"22326":9,"22327":5,"22328":2,"22329":6,"22330":8,"22331":10,"22332":7,"22333":9,"22334":2,"22335":9,"22336":5,"22337":7,"22338":7,"22339":8,"22340":7,"22341":5,"22342":7,"22343":1,"22344":7,"22345":9,"22346":8,"22347":1,"22348":9,"22349":8,"22350":5,"22351":7,"22352":1,"22353":9,"22354":8,"22355":4,"22356":8,"22357":8,"22358":8,"22359":8,"22360":5,"22361":1,"22362":7,"22363":8,"22364":1,"22365":7,"22366":9,"22367":8,"22368":9,"22369":7,"22370":7,"22371":9,"22372":9,"22373":8,"22374":6,"22375":1,"22376":10,"22377":4,"22378":1,"22379":7,"22380":9,"22381":1,"22382":7,"22383":10,"22384":9,"22385":9,"22386":2,"22387":5,"22388":8,"22389":6,"22390":4,"22391":9,"22392":3,"22393":5,"22394":7,"22395":4,"22396":5,"22397":2,"22398":4,"22399":7,"22400":8,"22401":6,"22402":1,"22403":7,"22404":8,"22405":3,"22406":1,"22407":8,"22408":7,"22409":7,"22410":2,"22411":1,"22412":1,"22413":8,"22414":8,"22415":9,"22416":3,"22417":6,"22418":8,"22419":5,"22420":5,"22421":8,"22422":6,"22423":7,"22424":9,"22425":7,"22426":3,"22427":9,"22428":8,"22429":7,"22430":7,"22431":9,"22432":5,"22433":7,"22434":8,"22435":8,"22436":3,"22437":8,"22438":8,"22439":7,"22440":8,"22441":7,"22442":2,"22443":8,"22444":5,"22445":2,"22446":2,"22447":9,"22448":2,"22449":7,"22450":4,"22451":5,"22452":7,"22453":9,"22454":5,"22455":7,"22456":7,"22457":9,"22458":9,"22459":7,"22460":7,"22461":1,"22462":7,"22463":5,"22464":10,"22465":8,"22466":5,"22467":8,"22468":9,"22469":3,"22470":8,"22471":2,"22472":7,"22473":2,"22474":2,"22475":5,"22476":8,"22477":7,"22478":2,"22479":9,"22480":7,"22481":8,"22482":9,"22483":10,"22484":2,"22485":6,"22486":5,"22487":2,"22488":8,"22489":3,"22490":8,"22491":6,"22492":4,"22493":7,"22494":1,"22495":7,"22496":8,"22497":2,"22498":9,"22499":8,"22500":2,"22501":7,"22502":8,"22503":10,"22504":7,"22505":9,"22506":5,"22507":7,"22508":4,"22509":8,"22510":8,"22511":5,"22512":7,"22513":2,"22514":9,"22515":9,"22516":9,"22517":7,"22518":1,"22519":9,"22520":8,"22521":10,"22522":10,"22523":7,"22524":9,"22525":5,"22526":5,"22527":4,"22528":5,"22529":3,"22530":10,"22531":9,"22532":8,"22533":2,"22534":9,"22535":3,"22536":1,"22537":5,"22538":1,"22539":8,"22540":5,"22541":1,"22542":8,"22543":5,"22544":9,"22545":1,"22546":8,"22547":8,"22548":1,"22549":9,"22550":8,"22551":8,"22552":8,"22553":9,"22554":8,"22555":7,"22556":7,"22557":2,"22558":10,"22559":9,"22560":5,"22561":2,"22562":8,"22563":7,"22564":8,"22565":8,"22566":8,"22567":5,"22568":5,"22569":1,"22570":5,"22571":5,"22572":2,"22573":2,"22574":7,"22575":8,"22576":9,"22577":8,"22578":3,"22579":9,"22580":10,"22581":4,"22582":6,"22583":6,"22584":7,"22585":5,"22586":2,"22587":8,"22588":8,"22589":8,"22590":8,"22591":8,"22592":7,"22593":8,"22594":7,"22595":2,"22596":3,"22597":3,"22598":7,"22599":9,"22600":2,"22601":6,"22602":8,"22603":5,"22604":5,"22605":4,"22606":8,"22607":8,"22608":9,"22609":5,"22610":8,"22611":8,"22612":8,"22613":8,"22614":8,"22615":9,"22616":8,"22617":7,"22618":9,"22619":5,"22620":1,"22621":4,"22622":9,"22623":5,"22624":6,"22625":6,"22626":7,"22627":5,"22628":9,"22629":3,"22630":4,"22631":3,"22632":8,"22633":1,"22634":7,"22635":7,"22636":7,"22637":5,"22638":8,"22639":10,"22640":3,"22641":8,"22642":9,"22643":5,"22644":6,"22645":7,"22646":3,"22647":5,"22648":8,"22649":7,"22650":8,"22651":7,"22652":9,"22653":7,"22654":8,"22655":2,"22656":9,"22657":6,"22658":9,"22659":7,"22660":7,"22661":7,"22662":5,"22663":8,"22664":9,"22665":10,"22666":2,"22667":2,"22668":9,"22669":8,"22670":5,"22671":6,"22672":7,"22673":7,"22674":10,"22675":8,"22676":9,"22677":9,"22678":1,"22679":7,"22680":8,"22681":9,"22682":6,"22683":4,"22684":5,"22685":4,"22686":2,"22687":2,"22688":10,"22689":5,"22690":8,"22691":7,"22692":9,"22693":4,"22694":5,"22695":9,"22696":10,"22697":3,"22698":7,"22699":7,"22700":3,"22701":9,"22702":6,"22703":3,"22704":2,"22705":9,"22706":4,"22707":2,"22708":8,"22709":7,"22710":10,"22711":8,"22712":2,"22713":8,"22714":8,"22715":9,"22716":5,"22717":9,"22718":7,"22719":1,"22720":1,"22721":7,"22722":2,"22723":3,"22724":9,"22725":2,"22726":3,"22727":7,"22728":9,"22729":9,"22730":7,"22731":9,"22732":9,"22733":8,"22734":4,"22735":5,"22736":5,"22737":2,"22738":4,"22739":5,"22740":4,"22741":1,"22742":8,"22743":9,"22744":5,"22745":7,"22746":7,"22747":3,"22748":8,"22749":10,"22750":8,"22751":8,"22752":9,"22753":9,"22754":4,"22755":5,"22756":8,"22757":2,"22758":8,"22759":7,"22760":8,"22761":6,"22762":7,"22763":3,"22764":9,"22765":8,"22766":9,"22767":5,"22768":8,"22769":1,"22770":10,"22771":10,"22772":4,"22773":8,"22774":5,"22775":5,"22776":9,"22777":9,"22778":4,"22779":7,"22780":7,"22781":5,"22782":7,"22783":2,"22784":7,"22785":10,"22786":8,"22787":6,"22788":8,"22789":3,"22790":7,"22791":2,"22792":5,"22793":3,"22794":9,"22795":7,"22796":8,"22797":7,"22798":7,"22799":9,"22800":9,"22801":8,"22802":7,"22803":8,"22804":2,"22805":7,"22806":6,"22807":5,"22808":3,"22809":2,"22810":7,"22811":9,"22812":6,"22813":8,"22814":9,"22815":7,"22816":9,"22817":9,"22818":6,"22819":9,"22820":8,"22821":9,"22822":10,"22823":7,"22824":7,"22825":8,"22826":8,"22827":2,"22828":4,"22829":6,"22830":7,"22831":5,"22832":3,"22833":7,"22834":3,"22835":4,"22836":8,"22837":1,"22838":9,"22839":4,"22840":8,"22841":1,"22842":1,"22843":7,"22844":8,"22845":2,"22846":8,"22847":6,"22848":5,"22849":2,"22850":2,"22851":9,"22852":7,"22853":9,"22854":4,"22855":6,"22856":3,"22857":1,"22858":2,"22859":8,"22860":2,"22861":8,"22862":6,"22863":8,"22864":3,"22865":5,"22866":7,"22867":9,"22868":6,"22869":3,"22870":10,"22871":6,"22872":9,"22873":8,"22874":2,"22875":6,"22876":9,"22877":9,"22878":3,"22879":10,"22880":7,"22881":7,"22882":8,"22883":9,"22884":9,"22885":4,"22886":8,"22887":3,"22888":9,"22889":7,"22890":9,"22891":1,"22892":8,"22893":8,"22894":7,"22895":2,"22896":10,"22897":7,"22898":9,"22899":2,"22900":9,"22901":9,"22902":4,"22903":7,"22904":9,"22905":8,"22906":7,"22907":2,"22908":8,"22909":7,"22910":3,"22911":4,"22912":8,"22913":7,"22914":8,"22915":1,"22916":3,"22917":8,"22918":10,"22919":7,"22920":4,"22921":1,"22922":8,"22923":5,"22924":9,"22925":7,"22926":1,"22927":9,"22928":7,"22929":3,"22930":7,"22931":9,"22932":7,"22933":1,"22934":10,"22935":7,"22936":7,"22937":8,"22938":4,"22939":8,"22940":10,"22941":3,"22942":2,"22943":6,"22944":7,"22945":1,"22946":8,"22947":2,"22948":10,"22949":5,"22950":9,"22951":9,"22952":8,"22953":7,"22954":8,"22955":7,"22956":10,"22957":7,"22958":7,"22959":6,"22960":9,"22961":2,"22962":2,"22963":8,"22964":8,"22965":3,"22966":6,"22967":7,"22968":2,"22969":8,"22970":7,"22971":5,"22972":4,"22973":2,"22974":3,"22975":9,"22976":5,"22977":9,"22978":4,"22979":6,"22980":8,"22981":5,"22982":7,"22983":7,"22984":9,"22985":6,"22986":4,"22987":9,"22988":9,"22989":8,"22990":10,"22991":7,"22992":8,"22993":5,"22994":7,"22995":9,"22996":2,"22997":9,"22998":6,"22999":4,"23000":2,"23001":9,"23002":7,"23003":3,"23004":9,"23005":7,"23006":8,"23007":2,"23008":7,"23009":9,"23010":2,"23011":8,"23012":1,"23013":5,"23014":8,"23015":10,"23016":1,"23017":8,"23018":10,"23019":8,"23020":8,"23021":3,"23022":8,"23023":5,"23024":1,"23025":7,"23026":9,"23027":4,"23028":8,"23029":7,"23030":10,"23031":9,"23032":1,"23033":4,"23034":4,"23035":7,"23036":5,"23037":4,"23038":8,"23039":10,"23040":7,"23041":3,"23042":5,"23043":7,"23044":3,"23045":8,"23046":9,"23047":8,"23048":7,"23049":8,"23050":10,"23051":7,"23052":7,"23053":10,"23054":6,"23055":7,"23056":8,"23057":2,"23058":8,"23059":5,"23060":5,"23061":8,"23062":7,"23063":10,"23064":7,"23065":6,"23066":7,"23067":4,"23068":8,"23069":5,"23070":8,"23071":3,"23072":9,"23073":9,"23074":9,"23075":10,"23076":8,"23077":6,"23078":5,"23079":3,"23080":9,"23081":3,"23082":9,"23083":8,"23084":8,"23085":6,"23086":8,"23087":9,"23088":8,"23089":10,"23090":7,"23091":10,"23092":8,"23093":2,"23094":9,"23095":2,"23096":7,"23097":2,"23098":8,"23099":4,"23100":8,"23101":1,"23102":8,"23103":5,"23104":9,"23105":8,"23106":5,"23107":7,"23108":4,"23109":2,"23110":7,"23111":8,"23112":2,"23113":1,"23114":7,"23115":9,"23116":8,"23117":8,"23118":5,"23119":7,"23120":7,"23121":5,"23122":8,"23123":8,"23124":7,"23125":8,"23126":5,"23127":6,"23128":8,"23129":8,"23130":2,"23131":7,"23132":8,"23133":7,"23134":3,"23135":3,"23136":4,"23137":1,"23138":6,"23139":8,"23140":5,"23141":8,"23142":5,"23143":8,"23144":8,"23145":1,"23146":8,"23147":8,"23148":1,"23149":2,"23150":2,"23151":7,"23152":5,"23153":3,"23154":9,"23155":9,"23156":8,"23157":7,"23158":2,"23159":7,"23160":8,"23161":7,"23162":8,"23163":7,"23164":8,"23165":7,"23166":7,"23167":10,"23168":6,"23169":7,"23170":7,"23171":4,"23172":3,"23173":7,"23174":2,"23175":1,"23176":8,"23177":9,"23178":8,"23179":3,"23180":5,"23181":7,"23182":9,"23183":2,"23184":9,"23185":1,"23186":8,"23187":9,"23188":2,"23189":4,"23190":10,"23191":9,"23192":8,"23193":6,"23194":8,"23195":10,"23196":8,"23197":7,"23198":2,"23199":5,"23200":8,"23201":8,"23202":9,"23203":10,"23204":9,"23205":3,"23206":2,"23207":9,"23208":8,"23209":5,"23210":7,"23211":5,"23212":9,"23213":7,"23214":1,"23215":10,"23216":8,"23217":6,"23218":9,"23219":5,"23220":1,"23221":8,"23222":7,"23223":9,"23224":3,"23225":4,"23226":8,"23227":7,"23228":5,"23229":5,"23230":8,"23231":7,"23232":8,"23233":7,"23234":5,"23235":3,"23236":9,"23237":8,"23238":6,"23239":9,"23240":7,"23241":9,"23242":5,"23243":10,"23244":7,"23245":5,"23246":8,"23247":5,"23248":8,"23249":10,"23250":8,"23251":4,"23252":8,"23253":8,"23254":6,"23255":7,"23256":2,"23257":2,"23258":4,"23259":7,"23260":4,"23261":8,"23262":8,"23263":3,"23264":4,"23265":9,"23266":9,"23267":7,"23268":8,"23269":2,"23270":6,"23271":8,"23272":8,"23273":3,"23274":4,"23275":9,"23276":7,"23277":10,"23278":9,"23279":6,"23280":8,"23281":9,"23282":3,"23283":3,"23284":4,"23285":4,"23286":5,"23287":2,"23288":8,"23289":5,"23290":9,"23291":10,"23292":7,"23293":8,"23294":9,"23295":10,"23296":7,"23297":5,"23298":7,"23299":6,"23300":5,"23301":9,"23302":8,"23303":4,"23304":9,"23305":8,"23306":7,"23307":2,"23308":2,"23309":10,"23310":9,"23311":8,"23312":6,"23313":7,"23314":3,"23315":9,"23316":2,"23317":7,"23318":5,"23319":7,"23320":7,"23321":4,"23322":6,"23323":1,"23324":9,"23325":9,"23326":10,"23327":1,"23328":8,"23329":9,"23330":4,"23331":2,"23332":1,"23333":5,"23334":7,"23335":8,"23336":8,"23337":2,"23338":4,"23339":9,"23340":5,"23341":4,"23342":7,"23343":9,"23344":8,"23345":3,"23346":8,"23347":8,"23348":1,"23349":9,"23350":4,"23351":6,"23352":7,"23353":1,"23354":5,"23355":9,"23356":7,"23357":8,"23358":8,"23359":8,"23360":9,"23361":1,"23362":7,"23363":10,"23364":7,"23365":8,"23366":8,"23367":8,"23368":10,"23369":1,"23370":9,"23371":5,"23372":6,"23373":4,"23374":3,"23375":2,"23376":9,"23377":8,"23378":7,"23379":8,"23380":5,"23381":3,"23382":6,"23383":5,"23384":8,"23385":10,"23386":10,"23387":2,"23388":4,"23389":1,"23390":8,"23391":8,"23392":5,"23393":9,"23394":6,"23395":7,"23396":1,"23397":9,"23398":7,"23399":5,"23400":4,"23401":9,"23402":7,"23403":7,"23404":9,"23405":4,"23406":9,"23407":2,"23408":10,"23409":9,"23410":9,"23411":9,"23412":9,"23413":6,"23414":6,"23415":7,"23416":8,"23417":6,"23418":7,"23419":10,"23420":9,"23421":9,"23422":7,"23423":10,"23424":6,"23425":7,"23426":9,"23427":8,"23428":7,"23429":9,"23430":8,"23431":1,"23432":7,"23433":8,"23434":1,"23435":8,"23436":8,"23437":9,"23438":1,"23439":5,"23440":6,"23441":5,"23442":9,"23443":9,"23444":3,"23445":10,"23446":1,"23447":8,"23448":7,"23449":7,"23450":7,"23451":10,"23452":7,"23453":8,"23454":9,"23455":8,"23456":9,"23457":2,"23458":4,"23459":9,"23460":7,"23461":8,"23462":7,"23463":7,"23464":10,"23465":7,"23466":8,"23467":7,"23468":4,"23469":2,"23470":1,"23471":8,"23472":9,"23473":7,"23474":10,"23475":9,"23476":7,"23477":9,"23478":8,"23479":3,"23480":7,"23481":6,"23482":9,"23483":10,"23484":3,"23485":2,"23486":6,"23487":7,"23488":9,"23489":9,"23490":1,"23491":7,"23492":5,"23493":5,"23494":3,"23495":10,"23496":5,"23497":7,"23498":1,"23499":4,"23500":6,"23501":8,"23502":8,"23503":3,"23504":4,"23505":7,"23506":7,"23507":9,"23508":7,"23509":5,"23510":7,"23511":2,"23512":10,"23513":8,"23514":3,"23515":7,"23516":9,"23517":7,"23518":4,"23519":8,"23520":8,"23521":7,"23522":9,"23523":9,"23524":7,"23525":6,"23526":2,"23527":7,"23528":8,"23529":7,"23530":9,"23531":10,"23532":10,"23533":7,"23534":5,"23535":3,"23536":3,"23537":9,"23538":9,"23539":9,"23540":2,"23541":8,"23542":10,"23543":9,"23544":9,"23545":9,"23546":8,"23547":5,"23548":10,"23549":10,"23550":8,"23551":9,"23552":9,"23553":8,"23554":5,"23555":7,"23556":2,"23557":10,"23558":2,"23559":8,"23560":2,"23561":3,"23562":1,"23563":8,"23564":10,"23565":7,"23566":8,"23567":10,"23568":9,"23569":9,"23570":9,"23571":8,"23572":1,"23573":7,"23574":5,"23575":7,"23576":4,"23577":2,"23578":7,"23579":4,"23580":9,"23581":7,"23582":7,"23583":9,"23584":7,"23585":3,"23586":1,"23587":3,"23588":6,"23589":7,"23590":9,"23591":6,"23592":8,"23593":6,"23594":6,"23595":6,"23596":3,"23597":7,"23598":2,"23599":7,"23600":7,"23601":7,"23602":4,"23603":7,"23604":7,"23605":7,"23606":4,"23607":3,"23608":7,"23609":2,"23610":2,"23611":10,"23612":2,"23613":1,"23614":9,"23615":1,"23616":4,"23617":7,"23618":7,"23619":1,"23620":7,"23621":9,"23622":3,"23623":8,"23624":2,"23625":9,"23626":9,"23627":9,"23628":1,"23629":7,"23630":1,"23631":6,"23632":7,"23633":6,"23634":7,"23635":7,"23636":1,"23637":8,"23638":5,"23639":9,"23640":2,"23641":9,"23642":9,"23643":6,"23644":2,"23645":7,"23646":5,"23647":8,"23648":5,"23649":7,"23650":8,"23651":7,"23652":7,"23653":5,"23654":2,"23655":2,"23656":2,"23657":8,"23658":7,"23659":4,"23660":7,"23661":7,"23662":7,"23663":9,"23664":2,"23665":2,"23666":2,"23667":7,"23668":3,"23669":2,"23670":2,"23671":8,"23672":1,"23673":2,"23674":10,"23675":8,"23676":1,"23677":4,"23678":8,"23679":5,"23680":7,"23681":2,"23682":9,"23683":9,"23684":10,"23685":2,"23686":8,"23687":1,"23688":7,"23689":9,"23690":9,"23691":8,"23692":9,"23693":8,"23694":9,"23695":5,"23696":6,"23697":7,"23698":10,"23699":1,"23700":8,"23701":9,"23702":7,"23703":6,"23704":9,"23705":8,"23706":7,"23707":9,"23708":2,"23709":1,"23710":8,"23711":2,"23712":5,"23713":7,"23714":8,"23715":8,"23716":7,"23717":6,"23718":5,"23719":7,"23720":5,"23721":10,"23722":4,"23723":3,"23724":4,"23725":8,"23726":3,"23727":8,"23728":5,"23729":7,"23730":7,"23731":7,"23732":3,"23733":2,"23734":7,"23735":7,"23736":2,"23737":10,"23738":10,"23739":8,"23740":8,"23741":8,"23742":9,"23743":7,"23744":8,"23745":5,"23746":6,"23747":9,"23748":7,"23749":4,"23750":7,"23751":9,"23752":1,"23753":9,"23754":5,"23755":8,"23756":9,"23757":8,"23758":4,"23759":4,"23760":4,"23761":7,"23762":5,"23763":8,"23764":9,"23765":6,"23766":2,"23767":9,"23768":7,"23769":8,"23770":8,"23771":8,"23772":4,"23773":9,"23774":7,"23775":5,"23776":4,"23777":5,"23778":8,"23779":10,"23780":10,"23781":4,"23782":7,"23783":1,"23784":5,"23785":9,"23786":7,"23787":9,"23788":9,"23789":2,"23790":8,"23791":9,"23792":9,"23793":6,"23794":3,"23795":2,"23796":5,"23797":6,"23798":8,"23799":1,"23800":10,"23801":7,"23802":1,"23803":2,"23804":5,"23805":8,"23806":9,"23807":8,"23808":3,"23809":3,"23810":8,"23811":6,"23812":4,"23813":2,"23814":2,"23815":7,"23816":8,"23817":9,"23818":10,"23819":8,"23820":3,"23821":3,"23822":8,"23823":2,"23824":7,"23825":4,"23826":10,"23827":3,"23828":5,"23829":8,"23830":2,"23831":7,"23832":1,"23833":7,"23834":10,"23835":7,"23836":2,"23837":8,"23838":9,"23839":5,"23840":9,"23841":9,"23842":5,"23843":8,"23844":1,"23845":9,"23846":9,"23847":7,"23848":9,"23849":4,"23850":3,"23851":7,"23852":9,"23853":9,"23854":9,"23855":6,"23856":9,"23857":8,"23858":4,"23859":8,"23860":7,"23861":2,"23862":8,"23863":8,"23864":9,"23865":8,"23866":2,"23867":2,"23868":2,"23869":8,"23870":2,"23871":9,"23872":6,"23873":1,"23874":9,"23875":9,"23876":9,"23877":7,"23878":3,"23879":8,"23880":2,"23881":7,"23882":5,"23883":5,"23884":9,"23885":4,"23886":8,"23887":2,"23888":9,"23889":1,"23890":8,"23891":10,"23892":1,"23893":7,"23894":8,"23895":8,"23896":7,"23897":5,"23898":2,"23899":9,"23900":10,"23901":7,"23902":9,"23903":3,"23904":1,"23905":9,"23906":9,"23907":7,"23908":9,"23909":10,"23910":8,"23911":2,"23912":9,"23913":3,"23914":2,"23915":2,"23916":8,"23917":9,"23918":2,"23919":8,"23920":8,"23921":7,"23922":1,"23923":8,"23924":9,"23925":9,"23926":8,"23927":8,"23928":2,"23929":5,"23930":8,"23931":4,"23932":8,"23933":9,"23934":8,"23935":1,"23936":2,"23937":7,"23938":7,"23939":8,"23940":9,"23941":7,"23942":3,"23943":9,"23944":10,"23945":8,"23946":9,"23947":7,"23948":8,"23949":8,"23950":8,"23951":9,"23952":2,"23953":7,"23954":8,"23955":8,"23956":7,"23957":5,"23958":4,"23959":1,"23960":7,"23961":5,"23962":2,"23963":8,"23964":1,"23965":8,"23966":5,"23967":8,"23968":8,"23969":4,"23970":2,"23971":5,"23972":4,"23973":8,"23974":9,"23975":5,"23976":7,"23977":7,"23978":7,"23979":1,"23980":7,"23981":9,"23982":7,"23983":7,"23984":7,"23985":9,"23986":7,"23987":10,"23988":9,"23989":8,"23990":2,"23991":9,"23992":2,"23993":10,"23994":6,"23995":5,"23996":8,"23997":6,"23998":10,"23999":7,"24000":8,"24001":5,"24002":9,"24003":8,"24004":10,"24005":3,"24006":5,"24007":2,"24008":7,"24009":8,"24010":3,"24011":7,"24012":5,"24013":9,"24014":10,"24015":3,"24016":9,"24017":10,"24018":8,"24019":7,"24020":5,"24021":5,"24022":2,"24023":8,"24024":7,"24025":8,"24026":3,"24027":5,"24028":7,"24029":4,"24030":2,"24031":2,"24032":1,"24033":7,"24034":9,"24035":7,"24036":9,"24037":7,"24038":1,"24039":9,"24040":4,"24041":8,"24042":1,"24043":3,"24044":7,"24045":7,"24046":1,"24047":7,"24048":6,"24049":2,"24050":6,"24051":7,"24052":8,"24053":7,"24054":9,"24055":2,"24056":4,"24057":5,"24058":8,"24059":7,"24060":8,"24061":7,"24062":5,"24063":7,"24064":7,"24065":10,"24066":5,"24067":1,"24068":9,"24069":5,"24070":5,"24071":7,"24072":7,"24073":7,"24074":5,"24075":5,"24076":10,"24077":7,"24078":7,"24079":3,"24080":7,"24081":3,"24082":5,"24083":9,"24084":7,"24085":5,"24086":10,"24087":5,"24088":2,"24089":9,"24090":7,"24091":2,"24092":2,"24093":7,"24094":8,"24095":7,"24096":7,"24097":3,"24098":8,"24099":5,"24100":5,"24101":2,"24102":9,"24103":2,"24104":8,"24105":5,"24106":2,"24107":7,"24108":8,"24109":2,"24110":7,"24111":9,"24112":7,"24113":7,"24114":7,"24115":8,"24116":10,"24117":1,"24118":2,"24119":9,"24120":10,"24121":9,"24122":9,"24123":7,"24124":10,"24125":4,"24126":7,"24127":2,"24128":2,"24129":10,"24130":8,"24131":5,"24132":7,"24133":7,"24134":3,"24135":2,"24136":2,"24137":2,"24138":9,"24139":1,"24140":3,"24141":8,"24142":2,"24143":7,"24144":2,"24145":4,"24146":9,"24147":8,"24148":5,"24149":2,"24150":8,"24151":8,"24152":2,"24153":2,"24154":8,"24155":8,"24156":1,"24157":8,"24158":7,"24159":6,"24160":5,"24161":8,"24162":5,"24163":2,"24164":9,"24165":9,"24166":2,"24167":8,"24168":7,"24169":7,"24170":4,"24171":3,"24172":1,"24173":9,"24174":2,"24175":7,"24176":8,"24177":1,"24178":7,"24179":2,"24180":2,"24181":8,"24182":5,"24183":6,"24184":3,"24185":7,"24186":8,"24187":7,"24188":2,"24189":7,"24190":5,"24191":10,"24192":6,"24193":8,"24194":3,"24195":9,"24196":8,"24197":2,"24198":1,"24199":7,"24200":8,"24201":8,"24202":8,"24203":7,"24204":8,"24205":7,"24206":5,"24207":10,"24208":8,"24209":2,"24210":7,"24211":3,"24212":6,"24213":6,"24214":4,"24215":7,"24216":2,"24217":2,"24218":7,"24219":2,"24220":5,"24221":7,"24222":2,"24223":8,"24224":9,"24225":6,"24226":7,"24227":3,"24228":3,"24229":9,"24230":3,"24231":8,"24232":8,"24233":8,"24234":9,"24235":1,"24236":2,"24237":8,"24238":4,"24239":5,"24240":9,"24241":5,"24242":7,"24243":9,"24244":10,"24245":9,"24246":3,"24247":9,"24248":6,"24249":9,"24250":2,"24251":7,"24252":7,"24253":6,"24254":5,"24255":7,"24256":8,"24257":4,"24258":8,"24259":2,"24260":8,"24261":10,"24262":8,"24263":6,"24264":2,"24265":4,"24266":9,"24267":8,"24268":8,"24269":6,"24270":7,"24271":9,"24272":2,"24273":2,"24274":5,"24275":8,"24276":7,"24277":7,"24278":6,"24279":9,"24280":9,"24281":9,"24282":5,"24283":5,"24284":7,"24285":7,"24286":2,"24287":5,"24288":8,"24289":4,"24290":7,"24291":7,"24292":6,"24293":7,"24294":9,"24295":9,"24296":9,"24297":6,"24298":7,"24299":5,"24300":2,"24301":2,"24302":9,"24303":10,"24304":7,"24305":8,"24306":8,"24307":8,"24308":8,"24309":4,"24310":8,"24311":8,"24312":9,"24313":8,"24314":7,"24315":3,"24316":9,"24317":8,"24318":9,"24319":9,"24320":1,"24321":3,"24322":9,"24323":5,"24324":7,"24325":3,"24326":7,"24327":8,"24328":8,"24329":7,"24330":7,"24331":8,"24332":7,"24333":7,"24334":5,"24335":2,"24336":6,"24337":8,"24338":8,"24339":7,"24340":4,"24341":4,"24342":5,"24343":4,"24344":3,"24345":7,"24346":2,"24347":8,"24348":7,"24349":8,"24350":8,"24351":8,"24352":1,"24353":8,"24354":8,"24355":2,"24356":6,"24357":8,"24358":2,"24359":7,"24360":5,"24361":3,"24362":9,"24363":9,"24364":7,"24365":6,"24366":8,"24367":9,"24368":6,"24369":8,"24370":8,"24371":5,"24372":7,"24373":2,"24374":9,"24375":9,"24376":4,"24377":1,"24378":8,"24379":9,"24380":7,"24381":8,"24382":7,"24383":2,"24384":1,"24385":7,"24386":10,"24387":9,"24388":7,"24389":4,"24390":2,"24391":5,"24392":7,"24393":8,"24394":7,"24395":6,"24396":8,"24397":2,"24398":7,"24399":7,"24400":9,"24401":2,"24402":9,"24403":8,"24404":3,"24405":9,"24406":3,"24407":1,"24408":3,"24409":7,"24410":5,"24411":9,"24412":2,"24413":5,"24414":7,"24415":8,"24416":8,"24417":6,"24418":5,"24419":9,"24420":8,"24421":6,"24422":6,"24423":5,"24424":8,"24425":8,"24426":7,"24427":2,"24428":9,"24429":8,"24430":3,"24431":7,"24432":8,"24433":7,"24434":10,"24435":8,"24436":9,"24437":4,"24438":8,"24439":9,"24440":2,"24441":7,"24442":7,"24443":10,"24444":3,"24445":3,"24446":2,"24447":2,"24448":2,"24449":7,"24450":5,"24451":6,"24452":5,"24453":7,"24454":2,"24455":8,"24456":7,"24457":2,"24458":5,"24459":7,"24460":9,"24461":2,"24462":7,"24463":9,"24464":3,"24465":8,"24466":2,"24467":5,"24468":9,"24469":9,"24470":5,"24471":6,"24472":9,"24473":8,"24474":3,"24475":3,"24476":4,"24477":2,"24478":7,"24479":9,"24480":8,"24481":7,"24482":5,"24483":9,"24484":1,"24485":8,"24486":7,"24487":4,"24488":7,"24489":9,"24490":9,"24491":5,"24492":2,"24493":8,"24494":7,"24495":9,"24496":2,"24497":8,"24498":8,"24499":7,"24500":7,"24501":1,"24502":9,"24503":9,"24504":9,"24505":6,"24506":8,"24507":6,"24508":5,"24509":9,"24510":9,"24511":5,"24512":6,"24513":2,"24514":10,"24515":7,"24516":6,"24517":9,"24518":4,"24519":7,"24520":9,"24521":8,"24522":9,"24523":10,"24524":7,"24525":9,"24526":1,"24527":10,"24528":9,"24529":7,"24530":9,"24531":5,"24532":8,"24533":8,"24534":9,"24535":5,"24536":7,"24537":2,"24538":8,"24539":7,"24540":7,"24541":9,"24542":8,"24543":6,"24544":3,"24545":7,"24546":6,"24547":3,"24548":7,"24549":8,"24550":2,"24551":3,"24552":3,"24553":8,"24554":3,"24555":6,"24556":1,"24557":6,"24558":9,"24559":8,"24560":5,"24561":8,"24562":1,"24563":5,"24564":10,"24565":3,"24566":9,"24567":3,"24568":9,"24569":2,"24570":6,"24571":1,"24572":1,"24573":9,"24574":7,"24575":3,"24576":8,"24577":4,"24578":8,"24579":6,"24580":7,"24581":5,"24582":8,"24583":2,"24584":9,"24585":3,"24586":9,"24587":5,"24588":8,"24589":9,"24590":2,"24591":8,"24592":6,"24593":1,"24594":7,"24595":2,"24596":10,"24597":10,"24598":8,"24599":8,"24600":8,"24601":10,"24602":8,"24603":1,"24604":9,"24605":7,"24606":6,"24607":1,"24608":7,"24609":8,"24610":5,"24611":1,"24612":2,"24613":8,"24614":8,"24615":6,"24616":1,"24617":8,"24618":7,"24619":8,"24620":8,"24621":8,"24622":1,"24623":5,"24624":7,"24625":8,"24626":7,"24627":9,"24628":6,"24629":6,"24630":4,"24631":4,"24632":2,"24633":8,"24634":5,"24635":1,"24636":3,"24637":4,"24638":2,"24639":9,"24640":2,"24641":6,"24642":3,"24643":7,"24644":7,"24645":7,"24646":8,"24647":9,"24648":7,"24649":7,"24650":10,"24651":7,"24652":10,"24653":9,"24654":8,"24655":7,"24656":9,"24657":9,"24658":6,"24659":2,"24660":9,"24661":5,"24662":6,"24663":9,"24664":5,"24665":9,"24666":5,"24667":5,"24668":9,"24669":8,"24670":10,"24671":4,"24672":8,"24673":2,"24674":3,"24675":3,"24676":9,"24677":5,"24678":7,"24679":7,"24680":7,"24681":9,"24682":9,"24683":3,"24684":2,"24685":7,"24686":10,"24687":8,"24688":9,"24689":2,"24690":10,"24691":7,"24692":5,"24693":7,"24694":5,"24695":7,"24696":1,"24697":5,"24698":7,"24699":9,"24700":7,"24701":7,"24702":1,"24703":5,"24704":8,"24705":8,"24706":9,"24707":2,"24708":2,"24709":10,"24710":5,"24711":9,"24712":3,"24713":3,"24714":9,"24715":9,"24716":5,"24717":9,"24718":8,"24719":10,"24720":8,"24721":8,"24722":4,"24723":7,"24724":6,"24725":6,"24726":5,"24727":2,"24728":7,"24729":8,"24730":10,"24731":8,"24732":7,"24733":5,"24734":8,"24735":7,"24736":2,"24737":7,"24738":1,"24739":5,"24740":1,"24741":6,"24742":7,"24743":6,"24744":8,"24745":3,"24746":8,"24747":5,"24748":3,"24749":6,"24750":2,"24751":9,"24752":7,"24753":7,"24754":8,"24755":7,"24756":2,"24757":7,"24758":5,"24759":8,"24760":9,"24761":5,"24762":8,"24763":8,"24764":9,"24765":1,"24766":7,"24767":4,"24768":7,"24769":9,"24770":8,"24771":3,"24772":7,"24773":10,"24774":8,"24775":5,"24776":7,"24777":10,"24778":9,"24779":6,"24780":2,"24781":3,"24782":7,"24783":3,"24784":5,"24785":7,"24786":2,"24787":9,"24788":7,"24789":8,"24790":8,"24791":7,"24792":5,"24793":9,"24794":7,"24795":8,"24796":9,"24797":9,"24798":7,"24799":8,"24800":5,"24801":5,"24802":1,"24803":2,"24804":9,"24805":8,"24806":7,"24807":9,"24808":7,"24809":4,"24810":7,"24811":8,"24812":1,"24813":8,"24814":5,"24815":3,"24816":9,"24817":7,"24818":1,"24819":5,"24820":9,"24821":9,"24822":7,"24823":7,"24824":8,"24825":8,"24826":2,"24827":5,"24828":5,"24829":7,"24830":3,"24831":9,"24832":4,"24833":7,"24834":5,"24835":10,"24836":8,"24837":9,"24838":10,"24839":7,"24840":3,"24841":8,"24842":10,"24843":8,"24844":2,"24845":10,"24846":7,"24847":10,"24848":7,"24849":7,"24850":9,"24851":10,"24852":8,"24853":9,"24854":8,"24855":9,"24856":7,"24857":6,"24858":7,"24859":3,"24860":5,"24861":5,"24862":9,"24863":5,"24864":2,"24865":5,"24866":2,"24867":8,"24868":2,"24869":2,"24870":9,"24871":8,"24872":7,"24873":8,"24874":9,"24875":8,"24876":4,"24877":8,"24878":9,"24879":7,"24880":9,"24881":9,"24882":8,"24883":8,"24884":9,"24885":5,"24886":8,"24887":10,"24888":2,"24889":8,"24890":5,"24891":3,"24892":9,"24893":3,"24894":9,"24895":5,"24896":2,"24897":4,"24898":8,"24899":2,"24900":8,"24901":5,"24902":7,"24903":5,"24904":8,"24905":6,"24906":2,"24907":7,"24908":10,"24909":5,"24910":9,"24911":7,"24912":5,"24913":1,"24914":7,"24915":3,"24916":9,"24917":4,"24918":7,"24919":8,"24920":9,"24921":7,"24922":4,"24923":2,"24924":7,"24925":5,"24926":8,"24927":9,"24928":1,"24929":4,"24930":2,"24931":5,"24932":4,"24933":8,"24934":3,"24935":7,"24936":7,"24937":8,"24938":9,"24939":7,"24940":9,"24941":2,"24942":1,"24943":8,"24944":8,"24945":7,"24946":7,"24947":8,"24948":4,"24949":5,"24950":2,"24951":8,"24952":7,"24953":5,"24954":4,"24955":2,"24956":5,"24957":4,"24958":10,"24959":1,"24960":5,"24961":9,"24962":8,"24963":8,"24964":9,"24965":9,"24966":2,"24967":6,"24968":9,"24969":3,"24970":5,"24971":3,"24972":4,"24973":9,"24974":7,"24975":2,"24976":7,"24977":9,"24978":2,"24979":9,"24980":5,"24981":7,"24982":5,"24983":8,"24984":8,"24985":3,"24986":5,"24987":9,"24988":10,"24989":7,"24990":10,"24991":8,"24992":8,"24993":1,"24994":7,"24995":8,"24996":9,"24997":5,"24998":6,"24999":5,"25000":6,"25001":8,"25002":4,"25003":4,"25004":8,"25005":7,"25006":8,"25007":1,"25008":5,"25009":9,"25010":4,"25011":8,"25012":5,"25013":9,"25014":9,"25015":5,"25016":4,"25017":2,"25018":5,"25019":9,"25020":9,"25021":10,"25022":7,"25023":7,"25024":6,"25025":8,"25026":5,"25027":2,"25028":10,"25029":7,"25030":3,"25031":5,"25032":7,"25033":7,"25034":5,"25035":3,"25036":5,"25037":3,"25038":8,"25039":8,"25040":3,"25041":5,"25042":8,"25043":7,"25044":7,"25045":3,"25046":9,"25047":7,"25048":2,"25049":7,"25050":9,"25051":4,"25052":3,"25053":9,"25054":10,"25055":8,"25056":5,"25057":8,"25058":9,"25059":2,"25060":8,"25061":3,"25062":7,"25063":9,"25064":8,"25065":6,"25066":2,"25067":1,"25068":9,"25069":7,"25070":5,"25071":8,"25072":7,"25073":3,"25074":4,"25075":7,"25076":8,"25077":8,"25078":4,"25079":7,"25080":1,"25081":8,"25082":9,"25083":7,"25084":9,"25085":3,"25086":6,"25087":1,"25088":2,"25089":8,"25090":6,"25091":8,"25092":4,"25093":7,"25094":10,"25095":2,"25096":7,"25097":5,"25098":1,"25099":2,"25100":10,"25101":1,"25102":7,"25103":5,"25104":1,"25105":9,"25106":8,"25107":7,"25108":7,"25109":1,"25110":4,"25111":2,"25112":9,"25113":2,"25114":6,"25115":7,"25116":7,"25117":4,"25118":5,"25119":2,"25120":8,"25121":8,"25122":5,"25123":8,"25124":8,"25125":8,"25126":9,"25127":8,"25128":5,"25129":8,"25130":6,"25131":4,"25132":2,"25133":9,"25134":5,"25135":9,"25136":8,"25137":9,"25138":9,"25139":7,"25140":4,"25141":7,"25142":2,"25143":8,"25144":6,"25145":8,"25146":10,"25147":8,"25148":6,"25149":4,"25150":3,"25151":3,"25152":7,"25153":8,"25154":9,"25155":5,"25156":5,"25157":6,"25158":8,"25159":6,"25160":7,"25161":2,"25162":8,"25163":6,"25164":5,"25165":2,"25166":8,"25167":7,"25168":7,"25169":9,"25170":5,"25171":8,"25172":2,"25173":9,"25174":7,"25175":7,"25176":7,"25177":9,"25178":7,"25179":9,"25180":5,"25181":5,"25182":8,"25183":2,"25184":9,"25185":5,"25186":9,"25187":2,"25188":2,"25189":10,"25190":10,"25191":7,"25192":9,"25193":7,"25194":2,"25195":3,"25196":5,"25197":8,"25198":7,"25199":4,"25200":7,"25201":7,"25202":2,"25203":9,"25204":7,"25205":3,"25206":7,"25207":8,"25208":7,"25209":5,"25210":2,"25211":2,"25212":10,"25213":10,"25214":9,"25215":7,"25216":1,"25217":5,"25218":2,"25219":8,"25220":2,"25221":2,"25222":8,"25223":7,"25224":7,"25225":8,"25226":7,"25227":8,"25228":9,"25229":7,"25230":7,"25231":1,"25232":8,"25233":5,"25234":8,"25235":5,"25236":8,"25237":7,"25238":1,"25239":7,"25240":7,"25241":8,"25242":1,"25243":6,"25244":2,"25245":8,"25246":9,"25247":7,"25248":3,"25249":2,"25250":5,"25251":2,"25252":7,"25253":5,"25254":5,"25255":5,"25256":9,"25257":3,"25258":8,"25259":4,"25260":5,"25261":9,"25262":5,"25263":7,"25264":10,"25265":2,"25266":9,"25267":3,"25268":8,"25269":2,"25270":4,"25271":6,"25272":8,"25273":2,"25274":7,"25275":2,"25276":2,"25277":8,"25278":7,"25279":3,"25280":9,"25281":9,"25282":4,"25283":6,"25284":5,"25285":8,"25286":7,"25287":5,"25288":9,"25289":7,"25290":3,"25291":9,"25292":8,"25293":9,"25294":5,"25295":9,"25296":2,"25297":9,"25298":10,"25299":7,"25300":7,"25301":1,"25302":8,"25303":5,"25304":8,"25305":5,"25306":10,"25307":9,"25308":2,"25309":7,"25310":9,"25311":4,"25312":2,"25313":7,"25314":8,"25315":3,"25316":7,"25317":7,"25318":9,"25319":8,"25320":6,"25321":3,"25322":8,"25323":7,"25324":5,"25325":8,"25326":7,"25327":9,"25328":8,"25329":8,"25330":8,"25331":8,"25332":9,"25333":9,"25334":10,"25335":8,"25336":8,"25337":4,"25338":10,"25339":8,"25340":7,"25341":8,"25342":10,"25343":9,"25344":7,"25345":9,"25346":10,"25347":8,"25348":9,"25349":9,"25350":9,"25351":7,"25352":8,"25353":7,"25354":1,"25355":5,"25356":2,"25357":7,"25358":7,"25359":7,"25360":2,"25361":7,"25362":5,"25363":3,"25364":3,"25365":9,"25366":9,"25367":1,"25368":4,"25369":7,"25370":7,"25371":8,"25372":7,"25373":9,"25374":3,"25375":8,"25376":7,"25377":8,"25378":8,"25379":2,"25380":8,"25381":7,"25382":8,"25383":6,"25384":7,"25385":1,"25386":7,"25387":9,"25388":8,"25389":8,"25390":9,"25391":9,"25392":6,"25393":4,"25394":5,"25395":2,"25396":4,"25397":9,"25398":5,"25399":8,"25400":8,"25401":3,"25402":8,"25403":10,"25404":10,"25405":8,"25406":8,"25407":5,"25408":2,"25409":6,"25410":5,"25411":10,"25412":9,"25413":6,"25414":1,"25415":1,"25416":7,"25417":7,"25418":2,"25419":6,"25420":1,"25421":8,"25422":7,"25423":7,"25424":7,"25425":9,"25426":1,"25427":1,"25428":5,"25429":8,"25430":5,"25431":5,"25432":5,"25433":9,"25434":8,"25435":9,"25436":7,"25437":9,"25438":4,"25439":9,"25440":8,"25441":8,"25442":8,"25443":8,"25444":9,"25445":7,"25446":3,"25447":7,"25448":5,"25449":1,"25450":9,"25451":2,"25452":6,"25453":7,"25454":8,"25455":1,"25456":7,"25457":9,"25458":5,"25459":5,"25460":10,"25461":7,"25462":8,"25463":8,"25464":5,"25465":1,"25466":7,"25467":3,"25468":9,"25469":8,"25470":7,"25471":8,"25472":5,"25473":7,"25474":7,"25475":2,"25476":7,"25477":2,"25478":8,"25479":2,"25480":7,"25481":3,"25482":8,"25483":8,"25484":3,"25485":7,"25486":8,"25487":10,"25488":7,"25489":8,"25490":5,"25491":1,"25492":6,"25493":8,"25494":9,"25495":7,"25496":8,"25497":6,"25498":10,"25499":8,"25500":2,"25501":8,"25502":5,"25503":8,"25504":7,"25505":8,"25506":2,"25507":2,"25508":8,"25509":7,"25510":7,"25511":7,"25512":9,"25513":4,"25514":7,"25515":7,"25516":5,"25517":8,"25518":6,"25519":7,"25520":8,"25521":8,"25522":1,"25523":7,"25524":9,"25525":9,"25526":10,"25527":5,"25528":9,"25529":3,"25530":9,"25531":7,"25532":7,"25533":9,"25534":5,"25535":2,"25536":6,"25537":1,"25538":7,"25539":10,"25540":2,"25541":5,"25542":7,"25543":8,"25544":5,"25545":8,"25546":8,"25547":9,"25548":5,"25549":5,"25550":5,"25551":6,"25552":2,"25553":6,"25554":2,"25555":8,"25556":5,"25557":3,"25558":3,"25559":4,"25560":8,"25561":7,"25562":4,"25563":8,"25564":9,"25565":3,"25566":2,"25567":7,"25568":8,"25569":8,"25570":3,"25571":7,"25572":9,"25573":7,"25574":5,"25575":9,"25576":8,"25577":2,"25578":7,"25579":7,"25580":2,"25581":7,"25582":2,"25583":10,"25584":8,"25585":2,"25586":7,"25587":3,"25588":4,"25589":8,"25590":7,"25591":5,"25592":4,"25593":5,"25594":5,"25595":8,"25596":8,"25597":5,"25598":4,"25599":9,"25600":7,"25601":9,"25602":9,"25603":2,"25604":3,"25605":8,"25606":5,"25607":8,"25608":1,"25609":9,"25610":7,"25611":9,"25612":5,"25613":6,"25614":8,"25615":2,"25616":8,"25617":9,"25618":7,"25619":8,"25620":9,"25621":5,"25622":5,"25623":8,"25624":7,"25625":5,"25626":8,"25627":2,"25628":8,"25629":8,"25630":2,"25631":7,"25632":8,"25633":8,"25634":2,"25635":9,"25636":7,"25637":9,"25638":7,"25639":8,"25640":3,"25641":8,"25642":7,"25643":6,"25644":9,"25645":8,"25646":8,"25647":8,"25648":7,"25649":9,"25650":5,"25651":6,"25652":9,"25653":5,"25654":7,"25655":9,"25656":9,"25657":8,"25658":4,"25659":9,"25660":9,"25661":1,"25662":8,"25663":2,"25664":7,"25665":5,"25666":7,"25667":4,"25668":9,"25669":7,"25670":9,"25671":1,"25672":1,"25673":10,"25674":9,"25675":8,"25676":5,"25677":7,"25678":2,"25679":9,"25680":10,"25681":7,"25682":8,"25683":5,"25684":5,"25685":2,"25686":8,"25687":7,"25688":5,"25689":5,"25690":7,"25691":8,"25692":10,"25693":10,"25694":6,"25695":8,"25696":8,"25697":5,"25698":7,"25699":8,"25700":7,"25701":9,"25702":3,"25703":9,"25704":8,"25705":9,"25706":7,"25707":7,"25708":8,"25709":8,"25710":9,"25711":8,"25712":8,"25713":7,"25714":2,"25715":8,"25716":1,"25717":8,"25718":1,"25719":5,"25720":7,"25721":7,"25722":6,"25723":7,"25724":8,"25725":9,"25726":7,"25727":4,"25728":5,"25729":9,"25730":6,"25731":8,"25732":9,"25733":1,"25734":9,"25735":9,"25736":9,"25737":8,"25738":7,"25739":5,"25740":2,"25741":8,"25742":7,"25743":7,"25744":1,"25745":10,"25746":2,"25747":10,"25748":8,"25749":9,"25750":10,"25751":8,"25752":8,"25753":8,"25754":9,"25755":5,"25756":8,"25757":9,"25758":2,"25759":5,"25760":2,"25761":9,"25762":9,"25763":5,"25764":2,"25765":10,"25766":9,"25767":9,"25768":7,"25769":9,"25770":7,"25771":3,"25772":9,"25773":9,"25774":1,"25775":9,"25776":1,"25777":5,"25778":9,"25779":8,"25780":2,"25781":5,"25782":1,"25783":5,"25784":8,"25785":7,"25786":8,"25787":6,"25788":9,"25789":8,"25790":10,"25791":3,"25792":4,"25793":8,"25794":8,"25795":7,"25796":2,"25797":9,"25798":9,"25799":8,"25800":7,"25801":10,"25802":8,"25803":9,"25804":8,"25805":7,"25806":9,"25807":8,"25808":9,"25809":3,"25810":10,"25811":9,"25812":4,"25813":8,"25814":8,"25815":2,"25816":7,"25817":10,"25818":5,"25819":7,"25820":2,"25821":1,"25822":8,"25823":2,"25824":8,"25825":10,"25826":9,"25827":4,"25828":2,"25829":7,"25830":8,"25831":9,"25832":5,"25833":2,"25834":7,"25835":3,"25836":3,"25837":8,"25838":8,"25839":7,"25840":8,"25841":8,"25842":8,"25843":7,"25844":8,"25845":4,"25846":6,"25847":5,"25848":5,"25849":2,"25850":6,"25851":1,"25852":8,"25853":6,"25854":2,"25855":5,"25856":6,"25857":3,"25858":1,"25859":7,"25860":6,"25861":2,"25862":4,"25863":7,"25864":8,"25865":7,"25866":7,"25867":6,"25868":8,"25869":8,"25870":2,"25871":7,"25872":5,"25873":4,"25874":7,"25875":6,"25876":2,"25877":5,"25878":4,"25879":9,"25880":2,"25881":7,"25882":6,"25883":8,"25884":5,"25885":8,"25886":7,"25887":5,"25888":8,"25889":10,"25890":2,"25891":7,"25892":3,"25893":8,"25894":7,"25895":1,"25896":8,"25897":5,"25898":8,"25899":2,"25900":2,"25901":9,"25902":6,"25903":4,"25904":6,"25905":10,"25906":8,"25907":8,"25908":8,"25909":5,"25910":6,"25911":5,"25912":9,"25913":5,"25914":4,"25915":9,"25916":9,"25917":10,"25918":3,"25919":8,"25920":8,"25921":7,"25922":2,"25923":1,"25924":7,"25925":8,"25926":10,"25927":8,"25928":2,"25929":7,"25930":1,"25931":7,"25932":7,"25933":7,"25934":8,"25935":7,"25936":7,"25937":3,"25938":8,"25939":8,"25940":9,"25941":8,"25942":1,"25943":8,"25944":8,"25945":9,"25946":2,"25947":5,"25948":9,"25949":6,"25950":9,"25951":2,"25952":1,"25953":7,"25954":1,"25955":9,"25956":7,"25957":8,"25958":7,"25959":9,"25960":8,"25961":3,"25962":9,"25963":7,"25964":9,"25965":10,"25966":3,"25967":2,"25968":5,"25969":10,"25970":3,"25971":6,"25972":7,"25973":8,"25974":7,"25975":8,"25976":9,"25977":8,"25978":8,"25979":2,"25980":6,"25981":2,"25982":8,"25983":7,"25984":7,"25985":8,"25986":2,"25987":7,"25988":5,"25989":8,"25990":6,"25991":7,"25992":9,"25993":8,"25994":9,"25995":9,"25996":7,"25997":10,"25998":5,"25999":7,"26000":10,"26001":9,"26002":8,"26003":2,"26004":9,"26005":8,"26006":7,"26007":8,"26008":10,"26009":10,"26010":7,"26011":8,"26012":8,"26013":8,"26014":10,"26015":2,"26016":10,"26017":3,"26018":2,"26019":8,"26020":8,"26021":5,"26022":8,"26023":7,"26024":8,"26025":8,"26026":3,"26027":9,"26028":2,"26029":5,"26030":10,"26031":8,"26032":10,"26033":3,"26034":2,"26035":3,"26036":7,"26037":8,"26038":2,"26039":5,"26040":8,"26041":6,"26042":2,"26043":9,"26044":4,"26045":7,"26046":4,"26047":6,"26048":3,"26049":8,"26050":9,"26051":9,"26052":10,"26053":6,"26054":8,"26055":5,"26056":8,"26057":2,"26058":7,"26059":7,"26060":9,"26061":10,"26062":3,"26063":5,"26064":8,"26065":4,"26066":4,"26067":9,"26068":6,"26069":7,"26070":2,"26071":7,"26072":8,"26073":7,"26074":8,"26075":10,"26076":8,"26077":5,"26078":9,"26079":9,"26080":4,"26081":8,"26082":9,"26083":1,"26084":5,"26085":2,"26086":8,"26087":3,"26088":2,"26089":9,"26090":6,"26091":1,"26092":8,"26093":5,"26094":1,"26095":9,"26096":5,"26097":7,"26098":5,"26099":7,"26100":9,"26101":9,"26102":7,"26103":9,"26104":7,"26105":8,"26106":4,"26107":9,"26108":8,"26109":10,"26110":7,"26111":10,"26112":4,"26113":9,"26114":10,"26115":8,"26116":9,"26117":2,"26118":9,"26119":7,"26120":10,"26121":7,"26122":7,"26123":8,"26124":7,"26125":6,"26126":5,"26127":7,"26128":9,"26129":10,"26130":9,"26131":6,"26132":9,"26133":2,"26134":9,"26135":7,"26136":7,"26137":8,"26138":9,"26139":7,"26140":8,"26141":5,"26142":7,"26143":2,"26144":8,"26145":8,"26146":7,"26147":8,"26148":8,"26149":2,"26150":7,"26151":3,"26152":9,"26153":10,"26154":9,"26155":8,"26156":7,"26157":5,"26158":8,"26159":8,"26160":8,"26161":7,"26162":3,"26163":5,"26164":7,"26165":7,"26166":3,"26167":5,"26168":8,"26169":5,"26170":5,"26171":2,"26172":8,"26173":1,"26174":2,"26175":8,"26176":7,"26177":3,"26178":7,"26179":8,"26180":8,"26181":5,"26182":2,"26183":9,"26184":8,"26185":5,"26186":7,"26187":8,"26188":10,"26189":8,"26190":6,"26191":9,"26192":2,"26193":3,"26194":8,"26195":8,"26196":8,"26197":8,"26198":8,"26199":2,"26200":9,"26201":8,"26202":7,"26203":7,"26204":7,"26205":5,"26206":6,"26207":7,"26208":5,"26209":9,"26210":2,"26211":7,"26212":9,"26213":7,"26214":7,"26215":7,"26216":8,"26217":8,"26218":9,"26219":7,"26220":5,"26221":10,"26222":8,"26223":9,"26224":2,"26225":2,"26226":8,"26227":8,"26228":7,"26229":1,"26230":7,"26231":3,"26232":7,"26233":8,"26234":8,"26235":6,"26236":5,"26237":2,"26238":10,"26239":9,"26240":8,"26241":7,"26242":7,"26243":9,"26244":6,"26245":2,"26246":3,"26247":5,"26248":3,"26249":9,"26250":5,"26251":9,"26252":7,"26253":2,"26254":10,"26255":7,"26256":2,"26257":4,"26258":1,"26259":8,"26260":2,"26261":4,"26262":4,"26263":7,"26264":4,"26265":7,"26266":8,"26267":5,"26268":1,"26269":8,"26270":9,"26271":3,"26272":4,"26273":6,"26274":4,"26275":2,"26276":9,"26277":5,"26278":9,"26279":2,"26280":5,"26281":7,"26282":7,"26283":8,"26284":2,"26285":3,"26286":9,"26287":9,"26288":7,"26289":8,"26290":8,"26291":5,"26292":2,"26293":3,"26294":9,"26295":7,"26296":7,"26297":9,"26298":7,"26299":5,"26300":8,"26301":3,"26302":1,"26303":9,"26304":10,"26305":9,"26306":3,"26307":8,"26308":8,"26309":4,"26310":5,"26311":8,"26312":9,"26313":8,"26314":2,"26315":8,"26316":7,"26317":5,"26318":7,"26319":9,"26320":8,"26321":9,"26322":6,"26323":8,"26324":8,"26325":7,"26326":7,"26327":10,"26328":8,"26329":9,"26330":7,"26331":2,"26332":4,"26333":7,"26334":2,"26335":2,"26336":8,"26337":8,"26338":8,"26339":4,"26340":7,"26341":3,"26342":10,"26343":3,"26344":1,"26345":5,"26346":8,"26347":9,"26348":3,"26349":6,"26350":7,"26351":4,"26352":9,"26353":8,"26354":2,"26355":9,"26356":8,"26357":9,"26358":4,"26359":9,"26360":7,"26361":8,"26362":8,"26363":8,"26364":8,"26365":7,"26366":7,"26367":8,"26368":10,"26369":6,"26370":7,"26371":8,"26372":5,"26373":8,"26374":9,"26375":8,"26376":8,"26377":7,"26378":5,"26379":8,"26380":9,"26381":3,"26382":1,"26383":2,"26384":5,"26385":5,"26386":5,"26387":8,"26388":9,"26389":2,"26390":8,"26391":9,"26392":7,"26393":1,"26394":5,"26395":7,"26396":4,"26397":8,"26398":8,"26399":7,"26400":1,"26401":8,"26402":7,"26403":7,"26404":9,"26405":8,"26406":7,"26407":7,"26408":2,"26409":8,"26410":5,"26411":10,"26412":4,"26413":9,"26414":7,"26415":8,"26416":9,"26417":7,"26418":2,"26419":8,"26420":4,"26421":8,"26422":3,"26423":2,"26424":7,"26425":3,"26426":10,"26427":2,"26428":9,"26429":4,"26430":6,"26431":9,"26432":7,"26433":3,"26434":7,"26435":8,"26436":9,"26437":9,"26438":4,"26439":8,"26440":7,"26441":1,"26442":9,"26443":9,"26444":10,"26445":9,"26446":5,"26447":5,"26448":9,"26449":7,"26450":5,"26451":5,"26452":9,"26453":9,"26454":7,"26455":8,"26456":7,"26457":8,"26458":8,"26459":1,"26460":9,"26461":7,"26462":8,"26463":9,"26464":8,"26465":8,"26466":1,"26467":7,"26468":8,"26469":2,"26470":7,"26471":8,"26472":2,"26473":5,"26474":3,"26475":8,"26476":9,"26477":8,"26478":8,"26479":2,"26480":2,"26481":1,"26482":2,"26483":3,"26484":10,"26485":6,"26486":4,"26487":7,"26488":9,"26489":2,"26490":8,"26491":3,"26492":2,"26493":8,"26494":10,"26495":7,"26496":1,"26497":2,"26498":6,"26499":5,"26500":2,"26501":6,"26502":4,"26503":7,"26504":5,"26505":5,"26506":7,"26507":9,"26508":8,"26509":2,"26510":7,"26511":5,"26512":5,"26513":9,"26514":8,"26515":8,"26516":9,"26517":1,"26518":5,"26519":7,"26520":6,"26521":1,"26522":7,"26523":3,"26524":2,"26525":8,"26526":1,"26527":5,"26528":8,"26529":2,"26530":7,"26531":8,"26532":7,"26533":1,"26534":7,"26535":9,"26536":8,"26537":8,"26538":1,"26539":8,"26540":2,"26541":7,"26542":8,"26543":1,"26544":2,"26545":7,"26546":8,"26547":5,"26548":9,"26549":1,"26550":8,"26551":7,"26552":2,"26553":5,"26554":7,"26555":9,"26556":6,"26557":8,"26558":8,"26559":8,"26560":8,"26561":1,"26562":10,"26563":6,"26564":3,"26565":1,"26566":2,"26567":5,"26568":10,"26569":7,"26570":9,"26571":2,"26572":5,"26573":10,"26574":5,"26575":6,"26576":9,"26577":6,"26578":7,"26579":5,"26580":8,"26581":4,"26582":8,"26583":8,"26584":3,"26585":5,"26586":10,"26587":10,"26588":7,"26589":1,"26590":9,"26591":7,"26592":9,"26593":5,"26594":2,"26595":8,"26596":7,"26597":7,"26598":9,"26599":8,"26600":9,"26601":2,"26602":5,"26603":9,"26604":8,"26605":2,"26606":3,"26607":10,"26608":2,"26609":5,"26610":10,"26611":7,"26612":4,"26613":5,"26614":7,"26615":9,"26616":9,"26617":9,"26618":8,"26619":1,"26620":2,"26621":2,"26622":7,"26623":2,"26624":2,"26625":8,"26626":10,"26627":7,"26628":8,"26629":7,"26630":4,"26631":7,"26632":5,"26633":9,"26634":9,"26635":5,"26636":8,"26637":5,"26638":2,"26639":5,"26640":10,"26641":2,"26642":9,"26643":7,"26644":8,"26645":6,"26646":9,"26647":1,"26648":6,"26649":4,"26650":9,"26651":8,"26652":9,"26653":3,"26654":8,"26655":6,"26656":9,"26657":4,"26658":7,"26659":8,"26660":1,"26661":4,"26662":1,"26663":8,"26664":7,"26665":5,"26666":7,"26667":10,"26668":7,"26669":2,"26670":9,"26671":8,"26672":10,"26673":4,"26674":8,"26675":3,"26676":7,"26677":7,"26678":7,"26679":1,"26680":9,"26681":9,"26682":9,"26683":7,"26684":8,"26685":8,"26686":8,"26687":7,"26688":7,"26689":9,"26690":7,"26691":5,"26692":8,"26693":6,"26694":7,"26695":5,"26696":5,"26697":6,"26698":8,"26699":4,"26700":9,"26701":7,"26702":6,"26703":8,"26704":3,"26705":5,"26706":9,"26707":5,"26708":8,"26709":9,"26710":7,"26711":5,"26712":2,"26713":9,"26714":8,"26715":4,"26716":7,"26717":9,"26718":8,"26719":7,"26720":3,"26721":8,"26722":7,"26723":5,"26724":8,"26725":9,"26726":4,"26727":9,"26728":7,"26729":8,"26730":8,"26731":8,"26732":2,"26733":7,"26734":7,"26735":1,"26736":3,"26737":2,"26738":5,"26739":6,"26740":4,"26741":8,"26742":4,"26743":2,"26744":9,"26745":7,"26746":4,"26747":2,"26748":5,"26749":8,"26750":8,"26751":3,"26752":7,"26753":1,"26754":9,"26755":9,"26756":9,"26757":4,"26758":6,"26759":8,"26760":4,"26761":1,"26762":9,"26763":10,"26764":9,"26765":10,"26766":3,"26767":3,"26768":5,"26769":5,"26770":2,"26771":7,"26772":9,"26773":8,"26774":8,"26775":3,"26776":8,"26777":8,"26778":2,"26779":1,"26780":5,"26781":5,"26782":7,"26783":1,"26784":9,"26785":8,"26786":8,"26787":7,"26788":8,"26789":2,"26790":10,"26791":8,"26792":6,"26793":1,"26794":5,"26795":7,"26796":8,"26797":1,"26798":10,"26799":5,"26800":9,"26801":8,"26802":7,"26803":7,"26804":2,"26805":7,"26806":7,"26807":4,"26808":8,"26809":10,"26810":9,"26811":4,"26812":8,"26813":10,"26814":8,"26815":6,"26816":3,"26817":9,"26818":4,"26819":1,"26820":3,"26821":8,"26822":8,"26823":5,"26824":9,"26825":9,"26826":6,"26827":6,"26828":9,"26829":6,"26830":4,"26831":3,"26832":9,"26833":10,"26834":8,"26835":8,"26836":8,"26837":9,"26838":4,"26839":8,"26840":7,"26841":5,"26842":5,"26843":7,"26844":8,"26845":6,"26846":7,"26847":8,"26848":7,"26849":7,"26850":2,"26851":5,"26852":6,"26853":5,"26854":5,"26855":7,"26856":1,"26857":4,"26858":1,"26859":7,"26860":9,"26861":7,"26862":4,"26863":5,"26864":8,"26865":3,"26866":2,"26867":8,"26868":7,"26869":9,"26870":4,"26871":5,"26872":2,"26873":8,"26874":3,"26875":8,"26876":7,"26877":7,"26878":10,"26879":7,"26880":5,"26881":2,"26882":5,"26883":9,"26884":5,"26885":9,"26886":4,"26887":9,"26888":3,"26889":7,"26890":1,"26891":8,"26892":8,"26893":8,"26894":9,"26895":7,"26896":8,"26897":7,"26898":9,"26899":5,"26900":7,"26901":1,"26902":1,"26903":4,"26904":7,"26905":7,"26906":2,"26907":8,"26908":8,"26909":5,"26910":9,"26911":8,"26912":7,"26913":1,"26914":5,"26915":2,"26916":9,"26917":9,"26918":9,"26919":8,"26920":6,"26921":8,"26922":2,"26923":3,"26924":5,"26925":2,"26926":2,"26927":10,"26928":8,"26929":7,"26930":3,"26931":7,"26932":8,"26933":8,"26934":9,"26935":2,"26936":8,"26937":3,"26938":9,"26939":7,"26940":3,"26941":2,"26942":8,"26943":9,"26944":2,"26945":9,"26946":10,"26947":8,"26948":9,"26949":8,"26950":8,"26951":8,"26952":4,"26953":1,"26954":8,"26955":3,"26956":5,"26957":7,"26958":7,"26959":9,"26960":9,"26961":5,"26962":8,"26963":7,"26964":2,"26965":7,"26966":2,"26967":8,"26968":8,"26969":5,"26970":9,"26971":8,"26972":8,"26973":5,"26974":9,"26975":9,"26976":4,"26977":5,"26978":9,"26979":7,"26980":2,"26981":8,"26982":10,"26983":2,"26984":5,"26985":3,"26986":5,"26987":9,"26988":8,"26989":8,"26990":5,"26991":7,"26992":5,"26993":10,"26994":10,"26995":2,"26996":8,"26997":2,"26998":9,"26999":5,"27000":8,"27001":9,"27002":9,"27003":10,"27004":5,"27005":4,"27006":7,"27007":1,"27008":2,"27009":2,"27010":1,"27011":4,"27012":7,"27013":8,"27014":3,"27015":2,"27016":9,"27017":9,"27018":5,"27019":6,"27020":9,"27021":7,"27022":8,"27023":9,"27024":4,"27025":2,"27026":7,"27027":2,"27028":6,"27029":5,"27030":8,"27031":8,"27032":7,"27033":2,"27034":6,"27035":4,"27036":1,"27037":7,"27038":5,"27039":4,"27040":9,"27041":8,"27042":5,"27043":4,"27044":7,"27045":7,"27046":5,"27047":4,"27048":2,"27049":2,"27050":8,"27051":6,"27052":3,"27053":7,"27054":8,"27055":9,"27056":8,"27057":10,"27058":8,"27059":8,"27060":8,"27061":7,"27062":7,"27063":5,"27064":8,"27065":1,"27066":9,"27067":5,"27068":8,"27069":4,"27070":7,"27071":5,"27072":7,"27073":7,"27074":2,"27075":9,"27076":9,"27077":2,"27078":4,"27079":2,"27080":9,"27081":8,"27082":1,"27083":3,"27084":7,"27085":8,"27086":4,"27087":5,"27088":8,"27089":7,"27090":7,"27091":5,"27092":8,"27093":9,"27094":2,"27095":9,"27096":10,"27097":10,"27098":8,"27099":9,"27100":7,"27101":7,"27102":4,"27103":2,"27104":2,"27105":3,"27106":2,"27107":8,"27108":8,"27109":8,"27110":7,"27111":2,"27112":8,"27113":7,"27114":10,"27115":3,"27116":9,"27117":6,"27118":5,"27119":9,"27120":6,"27121":10,"27122":10,"27123":7,"27124":1,"27125":9,"27126":10,"27127":1,"27128":8,"27129":7,"27130":10,"27131":5,"27132":7,"27133":7,"27134":8,"27135":7,"27136":5,"27137":9,"27138":9,"27139":8,"27140":8,"27141":6,"27142":9,"27143":10,"27144":7,"27145":7,"27146":5,"27147":2,"27148":5,"27149":9,"27150":7,"27151":5,"27152":2,"27153":2,"27154":9,"27155":8,"27156":8,"27157":6,"27158":2,"27159":7,"27160":1,"27161":8,"27162":4,"27163":5,"27164":7,"27165":8,"27166":8,"27167":10,"27168":4,"27169":10,"27170":8,"27171":10,"27172":3,"27173":8,"27174":7,"27175":8,"27176":8,"27177":9,"27178":8,"27179":9,"27180":7,"27181":7,"27182":9,"27183":5,"27184":9,"27185":8,"27186":9,"27187":7,"27188":8,"27189":6,"27190":7,"27191":8,"27192":2,"27193":9,"27194":9,"27195":5,"27196":8,"27197":9,"27198":6,"27199":2,"27200":1,"27201":6,"27202":6,"27203":2,"27204":9,"27205":3,"27206":7,"27207":4,"27208":4,"27209":4,"27210":9,"27211":6,"27212":3,"27213":7,"27214":6,"27215":5,"27216":5,"27217":9,"27218":9,"27219":6,"27220":7,"27221":7,"27222":7,"27223":10,"27224":7,"27225":7,"27226":8,"27227":2,"27228":6,"27229":3,"27230":7,"27231":8,"27232":6,"27233":8,"27234":3,"27235":8,"27236":8,"27237":5,"27238":4,"27239":7,"27240":7,"27241":7,"27242":5,"27243":7,"27244":6,"27245":9,"27246":4,"27247":10,"27248":7,"27249":3,"27250":5,"27251":9,"27252":8,"27253":7,"27254":5,"27255":5,"27256":8,"27257":9,"27258":2,"27259":7,"27260":6,"27261":10,"27262":8,"27263":5,"27264":1,"27265":8,"27266":8,"27267":1,"27268":8,"27269":8,"27270":8,"27271":8,"27272":7,"27273":7,"27274":5,"27275":7,"27276":7,"27277":5,"27278":5,"27279":8,"27280":8,"27281":5,"27282":7,"27283":9,"27284":8,"27285":7,"27286":7,"27287":9,"27288":2,"27289":8,"27290":8,"27291":5,"27292":7,"27293":9,"27294":9,"27295":5,"27296":9,"27297":7,"27298":6,"27299":8,"27300":7,"27301":8,"27302":9,"27303":6,"27304":3,"27305":2,"27306":1,"27307":8,"27308":5,"27309":2,"27310":10,"27311":9,"27312":7,"27313":9,"27314":8,"27315":1,"27316":6,"27317":9,"27318":9,"27319":8,"27320":7,"27321":4,"27322":8,"27323":7,"27324":5,"27325":7,"27326":8,"27327":7,"27328":6,"27329":5,"27330":5,"27331":7,"27332":9,"27333":9,"27334":10,"27335":2,"27336":5,"27337":5,"27338":7,"27339":8,"27340":9,"27341":8,"27342":9,"27343":7,"27344":7,"27345":1,"27346":10,"27347":8,"27348":7,"27349":9,"27350":9,"27351":8,"27352":8,"27353":7,"27354":5,"27355":7,"27356":2,"27357":9,"27358":5,"27359":6,"27360":7,"27361":2,"27362":2,"27363":10,"27364":9,"27365":7,"27366":3,"27367":9,"27368":7,"27369":7,"27370":5,"27371":10,"27372":9,"27373":5,"27374":8,"27375":7,"27376":2,"27377":3,"27378":2,"27379":3,"27380":5,"27381":8,"27382":6,"27383":3,"27384":9,"27385":8,"27386":9,"27387":5,"27388":8,"27389":8,"27390":9,"27391":7,"27392":8,"27393":2,"27394":7,"27395":7,"27396":6,"27397":6,"27398":9,"27399":9,"27400":2,"27401":9,"27402":7,"27403":9,"27404":3,"27405":1,"27406":5,"27407":9,"27408":7,"27409":7,"27410":9,"27411":5,"27412":2,"27413":7,"27414":2,"27415":3,"27416":8,"27417":8,"27418":6,"27419":8,"27420":2,"27421":4,"27422":5,"27423":8,"27424":8,"27425":8,"27426":7,"27427":8,"27428":7,"27429":5,"27430":3,"27431":5,"27432":7,"27433":4,"27434":8,"27435":8,"27436":5,"27437":1,"27438":4,"27439":5,"27440":7,"27441":8,"27442":1,"27443":7,"27444":2,"27445":10,"27446":2,"27447":2,"27448":9,"27449":9,"27450":2,"27451":1,"27452":2,"27453":9,"27454":9,"27455":4,"27456":8,"27457":2,"27458":9,"27459":2,"27460":7,"27461":8,"27462":9,"27463":10,"27464":9,"27465":2,"27466":8,"27467":4,"27468":7,"27469":8,"27470":6,"27471":8,"27472":3,"27473":8,"27474":8,"27475":10,"27476":9,"27477":1,"27478":8,"27479":8,"27480":7,"27481":8,"27482":7,"27483":8,"27484":7,"27485":2,"27486":7,"27487":7,"27488":8,"27489":7,"27490":8,"27491":10,"27492":2,"27493":7,"27494":7,"27495":8,"27496":3,"27497":8,"27498":1,"27499":5,"27500":2,"27501":6,"27502":10,"27503":2,"27504":4,"27505":9,"27506":9,"27507":9,"27508":9,"27509":5,"27510":8,"27511":3,"27512":1,"27513":8,"27514":1,"27515":8,"27516":4,"27517":4,"27518":7,"27519":2,"27520":8,"27521":9,"27522":4,"27523":7,"27524":9,"27525":4,"27526":8,"27527":4,"27528":8,"27529":7,"27530":9,"27531":5,"27532":10,"27533":7,"27534":8,"27535":1,"27536":7,"27537":7,"27538":8,"27539":7,"27540":9,"27541":10,"27542":7,"27543":7,"27544":9,"27545":7,"27546":8,"27547":7,"27548":2,"27549":7,"27550":2,"27551":2,"27552":7,"27553":9,"27554":2,"27555":8,"27556":8,"27557":7,"27558":5,"27559":1,"27560":9,"27561":5,"27562":8,"27563":5,"27564":5,"27565":9,"27566":5,"27567":2,"27568":8,"27569":6,"27570":8,"27571":7,"27572":8,"27573":7,"27574":9,"27575":4,"27576":8,"27577":5,"27578":2,"27579":8,"27580":8,"27581":7,"27582":9,"27583":10,"27584":8,"27585":3,"27586":5,"27587":5,"27588":9,"27589":1,"27590":8,"27591":2,"27592":5,"27593":9,"27594":9,"27595":7,"27596":1,"27597":9,"27598":8,"27599":9,"27600":1,"27601":8,"27602":7,"27603":8,"27604":7,"27605":2,"27606":5,"27607":8,"27608":9,"27609":8,"27610":7,"27611":5,"27612":1,"27613":8,"27614":10,"27615":2,"27616":4,"27617":3,"27618":7,"27619":5,"27620":4,"27621":8,"27622":7,"27623":2,"27624":8,"27625":7,"27626":8,"27627":6,"27628":10,"27629":6,"27630":9,"27631":7,"27632":1,"27633":9,"27634":7,"27635":3,"27636":8,"27637":5,"27638":8,"27639":8,"27640":8,"27641":7,"27642":9,"27643":8,"27644":3,"27645":5,"27646":8,"27647":4,"27648":7,"27649":3,"27650":4,"27651":2,"27652":5,"27653":8,"27654":9,"27655":5,"27656":6,"27657":9,"27658":8,"27659":2,"27660":9,"27661":9,"27662":8,"27663":10,"27664":7,"27665":1,"27666":5,"27667":5,"27668":8,"27669":3,"27670":5,"27671":4,"27672":7,"27673":9,"27674":7,"27675":7,"27676":2,"27677":8,"27678":1,"27679":5,"27680":8,"27681":3,"27682":8,"27683":7,"27684":8,"27685":4,"27686":9,"27687":10,"27688":8,"27689":2,"27690":3,"27691":1,"27692":6,"27693":8,"27694":7,"27695":8,"27696":5,"27697":9,"27698":9,"27699":8,"27700":7,"27701":8,"27702":5,"27703":9,"27704":3,"27705":1,"27706":7,"27707":4,"27708":3,"27709":8,"27710":5,"27711":1,"27712":8,"27713":7,"27714":8,"27715":5,"27716":8,"27717":9,"27718":2,"27719":8,"27720":5,"27721":1,"27722":7,"27723":1,"27724":9,"27725":7,"27726":8,"27727":9,"27728":5,"27729":5,"27730":7,"27731":7,"27732":7,"27733":8,"27734":8,"27735":8,"27736":4,"27737":2,"27738":9,"27739":6,"27740":5,"27741":5,"27742":9,"27743":7,"27744":8,"27745":8,"27746":8,"27747":5,"27748":7,"27749":8,"27750":7,"27751":8,"27752":8,"27753":5,"27754":9,"27755":7,"27756":7,"27757":8,"27758":9,"27759":9,"27760":4,"27761":6,"27762":5,"27763":6,"27764":7,"27765":7,"27766":8,"27767":1,"27768":9,"27769":10,"27770":7,"27771":9,"27772":7,"27773":8,"27774":7,"27775":4,"27776":10,"27777":5,"27778":2,"27779":6,"27780":7,"27781":9,"27782":9,"27783":8,"27784":1,"27785":8,"27786":2,"27787":9,"27788":9,"27789":10,"27790":7,"27791":9,"27792":5,"27793":3,"27794":8,"27795":9,"27796":8,"27797":3,"27798":7,"27799":8,"27800":2,"27801":9,"27802":8,"27803":6,"27804":8,"27805":7,"27806":8,"27807":2,"27808":5,"27809":8,"27810":5,"27811":1,"27812":9,"27813":9,"27814":9,"27815":2,"27816":7,"27817":10,"27818":8,"27819":2,"27820":7,"27821":9,"27822":1,"27823":8,"27824":7,"27825":2,"27826":8,"27827":9,"27828":4,"27829":2,"27830":7,"27831":8,"27832":4,"27833":2,"27834":9,"27835":8,"27836":8,"27837":8,"27838":4,"27839":4,"27840":2,"27841":7,"27842":8,"27843":5,"27844":7,"27845":7,"27846":7,"27847":9,"27848":9,"27849":1,"27850":10,"27851":4,"27852":7,"27853":8,"27854":7,"27855":7,"27856":5,"27857":5,"27858":8,"27859":3,"27860":7,"27861":8,"27862":3,"27863":1,"27864":2,"27865":8,"27866":7,"27867":8,"27868":5,"27869":8,"27870":7,"27871":9,"27872":8,"27873":5,"27874":9,"27875":10,"27876":2,"27877":9,"27878":9,"27879":8,"27880":9,"27881":8,"27882":2,"27883":8,"27884":6,"27885":8,"27886":3,"27887":7,"27888":9,"27889":5,"27890":7,"27891":4,"27892":3,"27893":7,"27894":7,"27895":5,"27896":9,"27897":1,"27898":7,"27899":9,"27900":9,"27901":7,"27902":7,"27903":5,"27904":6,"27905":9,"27906":7,"27907":2,"27908":5,"27909":9,"27910":10,"27911":3,"27912":2,"27913":1,"27914":2,"27915":1,"27916":7,"27917":6,"27918":2,"27919":5,"27920":5,"27921":7,"27922":8,"27923":8,"27924":8,"27925":8,"27926":2,"27927":9,"27928":9,"27929":9,"27930":10,"27931":7,"27932":7,"27933":1,"27934":7,"27935":9,"27936":2,"27937":8,"27938":6,"27939":8,"27940":9,"27941":7,"27942":9,"27943":6,"27944":5,"27945":9,"27946":10,"27947":5,"27948":2,"27949":5,"27950":8,"27951":3,"27952":4,"27953":7,"27954":9,"27955":7,"27956":5,"27957":2,"27958":7,"27959":8,"27960":5,"27961":2,"27962":6,"27963":9,"27964":7,"27965":8,"27966":10,"27967":4,"27968":2,"27969":2,"27970":7,"27971":8,"27972":4,"27973":6,"27974":9,"27975":8,"27976":7,"27977":9,"27978":7,"27979":8,"27980":9,"27981":8,"27982":9,"27983":8,"27984":8,"27985":2,"27986":9,"27987":8,"27988":2,"27989":8,"27990":7,"27991":9,"27992":4,"27993":8,"27994":5,"27995":5,"27996":7,"27997":5,"27998":3,"27999":7,"28000":9,"28001":8,"28002":1,"28003":7,"28004":8,"28005":8,"28006":9,"28007":1,"28008":10,"28009":8,"28010":5,"28011":9,"28012":5,"28013":2,"28014":7,"28015":3,"28016":9,"28017":5,"28018":3,"28019":7,"28020":10,"28021":1,"28022":4,"28023":9,"28024":7,"28025":7,"28026":2,"28027":6,"28028":10,"28029":2,"28030":9,"28031":7,"28032":7,"28033":7,"28034":2,"28035":9,"28036":6,"28037":4,"28038":8,"28039":9,"28040":9,"28041":3,"28042":8,"28043":7,"28044":8,"28045":7,"28046":7,"28047":7,"28048":2,"28049":8,"28050":7,"28051":8,"28052":2,"28053":1,"28054":9,"28055":7,"28056":7,"28057":8,"28058":8,"28059":7,"28060":8,"28061":9,"28062":1,"28063":7,"28064":7,"28065":7,"28066":1,"28067":7,"28068":3,"28069":2,"28070":4,"28071":9,"28072":1,"28073":7,"28074":8,"28075":10,"28076":6,"28077":4,"28078":7,"28079":7,"28080":3,"28081":7,"28082":8,"28083":5,"28084":8,"28085":7,"28086":9,"28087":8,"28088":10,"28089":5,"28090":8,"28091":5,"28092":7,"28093":2,"28094":9,"28095":2,"28096":8,"28097":10,"28098":7,"28099":9,"28100":1,"28101":8,"28102":7,"28103":8,"28104":7,"28105":10,"28106":2,"28107":8,"28108":8,"28109":6,"28110":2,"28111":2,"28112":2,"28113":9,"28114":5,"28115":4,"28116":8,"28117":7,"28118":5,"28119":10,"28120":3,"28121":4,"28122":9,"28123":7,"28124":9,"28125":10,"28126":2,"28127":9,"28128":1,"28129":8,"28130":9,"28131":5,"28132":7,"28133":7,"28134":9,"28135":4,"28136":2,"28137":8,"28138":3,"28139":3,"28140":8,"28141":8,"28142":2,"28143":8,"28144":7,"28145":4,"28146":8,"28147":2,"28148":7,"28149":8,"28150":7,"28151":2,"28152":3,"28153":2,"28154":7,"28155":7,"28156":10,"28157":9,"28158":8,"28159":7,"28160":2,"28161":9,"28162":8,"28163":7,"28164":7,"28165":5,"28166":5,"28167":2,"28168":5,"28169":8,"28170":8,"28171":7,"28172":7,"28173":8,"28174":10,"28175":2,"28176":8,"28177":5,"28178":4,"28179":10,"28180":3,"28181":4,"28182":8,"28183":7,"28184":2,"28185":9,"28186":5,"28187":4,"28188":4,"28189":7,"28190":2,"28191":7,"28192":2,"28193":8,"28194":7,"28195":10,"28196":4,"28197":2,"28198":9,"28199":7,"28200":8,"28201":2,"28202":2,"28203":9,"28204":7,"28205":1,"28206":7,"28207":7,"28208":9,"28209":2,"28210":4,"28211":7,"28212":7,"28213":3,"28214":2,"28215":7,"28216":7,"28217":10,"28218":9,"28219":7,"28220":5,"28221":9,"28222":5,"28223":7,"28224":3,"28225":7,"28226":7,"28227":2,"28228":4,"28229":9,"28230":8,"28231":8,"28232":3,"28233":9,"28234":9,"28235":9,"28236":8,"28237":2,"28238":9,"28239":6,"28240":9,"28241":3,"28242":4,"28243":8,"28244":6,"28245":1,"28246":7,"28247":2,"28248":5,"28249":8,"28250":9,"28251":10,"28252":5,"28253":4,"28254":8,"28255":8,"28256":7,"28257":7,"28258":4,"28259":8,"28260":10,"28261":9,"28262":8,"28263":1,"28264":4,"28265":8,"28266":9,"28267":4,"28268":1,"28269":7,"28270":9,"28271":8,"28272":9,"28273":3,"28274":9,"28275":2,"28276":6,"28277":9,"28278":8,"28279":7,"28280":3,"28281":2,"28282":9,"28283":7,"28284":7,"28285":5,"28286":3,"28287":1,"28288":5,"28289":4,"28290":7,"28291":2,"28292":8,"28293":7,"28294":8,"28295":10,"28296":4,"28297":2,"28298":10,"28299":5,"28300":6,"28301":3,"28302":5,"28303":9,"28304":10,"28305":5,"28306":8,"28307":7,"28308":7,"28309":8,"28310":10,"28311":2,"28312":3,"28313":8,"28314":7,"28315":5,"28316":6,"28317":9,"28318":8,"28319":7,"28320":8,"28321":8,"28322":7,"28323":2,"28324":5,"28325":9,"28326":1,"28327":9,"28328":5,"28329":9,"28330":1,"28331":2,"28332":5,"28333":8,"28334":4,"28335":5,"28336":5,"28337":9,"28338":7,"28339":7,"28340":8,"28341":7,"28342":2,"28343":6,"28344":8,"28345":4,"28346":6,"28347":2,"28348":5,"28349":2,"28350":5,"28351":7,"28352":6,"28353":9,"28354":9,"28355":7,"28356":2,"28357":2,"28358":7,"28359":7,"28360":8,"28361":5,"28362":1,"28363":8,"28364":8,"28365":5,"28366":7,"28367":5,"28368":3,"28369":6,"28370":9,"28371":5,"28372":8,"28373":8,"28374":2,"28375":7,"28376":2,"28377":9,"28378":5,"28379":8,"28380":8,"28381":7,"28382":7,"28383":8,"28384":2,"28385":7,"28386":9,"28387":7,"28388":6,"28389":7,"28390":8,"28391":7,"28392":7,"28393":2,"28394":8,"28395":8,"28396":8,"28397":7,"28398":8,"28399":5,"28400":6,"28401":1,"28402":7,"28403":6,"28404":2,"28405":4,"28406":5,"28407":8,"28408":7,"28409":8,"28410":8,"28411":4,"28412":7,"28413":7,"28414":7,"28415":6,"28416":8,"28417":7,"28418":7,"28419":5,"28420":2,"28421":5,"28422":2,"28423":5,"28424":7,"28425":4,"28426":7,"28427":5,"28428":7,"28429":3,"28430":6,"28431":2,"28432":8,"28433":7,"28434":4,"28435":9,"28436":2,"28437":2,"28438":5,"28439":4,"28440":9,"28441":4,"28442":6,"28443":5,"28444":10,"28445":4,"28446":2,"28447":9,"28448":6,"28449":8,"28450":7,"28451":10,"28452":7,"28453":5,"28454":2,"28455":10,"28456":7,"28457":8,"28458":1,"28459":10,"28460":8,"28461":5,"28462":8,"28463":8,"28464":5,"28465":9,"28466":7,"28467":8,"28468":9,"28469":8,"28470":5,"28471":2,"28472":8,"28473":5,"28474":8,"28475":1,"28476":5,"28477":7,"28478":6,"28479":4,"28480":9,"28481":10,"28482":9,"28483":10,"28484":5,"28485":8,"28486":9,"28487":8,"28488":8,"28489":5,"28490":5,"28491":9,"28492":2,"28493":7,"28494":1,"28495":8,"28496":8,"28497":5,"28498":7,"28499":7,"28500":8,"28501":9,"28502":8,"28503":5,"28504":4,"28505":2,"28506":8,"28507":7,"28508":1,"28509":5,"28510":7,"28511":5,"28512":2,"28513":9,"28514":10,"28515":7,"28516":7,"28517":7,"28518":9,"28519":1,"28520":9,"28521":8,"28522":7,"28523":7,"28524":7,"28525":2,"28526":9,"28527":8,"28528":8,"28529":7,"28530":8,"28531":9,"28532":7,"28533":8,"28534":10,"28535":8,"28536":8,"28537":2,"28538":7,"28539":3,"28540":7,"28541":8,"28542":7,"28543":7,"28544":8,"28545":7,"28546":7,"28547":10,"28548":8,"28549":7,"28550":2,"28551":4,"28552":9,"28553":7,"28554":8,"28555":3,"28556":5,"28557":8,"28558":7,"28559":7,"28560":8,"28561":9,"28562":8,"28563":9,"28564":7,"28565":8,"28566":7,"28567":9,"28568":3,"28569":2,"28570":8,"28571":7,"28572":3,"28573":8,"28574":7,"28575":4,"28576":9,"28577":9,"28578":8,"28579":5,"28580":9,"28581":7,"28582":2,"28583":9,"28584":8,"28585":8,"28586":9,"28587":8,"28588":2,"28589":7,"28590":7,"28591":8,"28592":7,"28593":7,"28594":6,"28595":7,"28596":9,"28597":8,"28598":4,"28599":7,"28600":2,"28601":10,"28602":8,"28603":2,"28604":8,"28605":1,"28606":2,"28607":2,"28608":5,"28609":8,"28610":8,"28611":9,"28612":9,"28613":8,"28614":7,"28615":9,"28616":1,"28617":10,"28618":5,"28619":8,"28620":9,"28621":10,"28622":7,"28623":8,"28624":3,"28625":2,"28626":1,"28627":7,"28628":8,"28629":3,"28630":1,"28631":10,"28632":2,"28633":7,"28634":7,"28635":8,"28636":2,"28637":1,"28638":8,"28639":8,"28640":4,"28641":2,"28642":9,"28643":5,"28644":3,"28645":10,"28646":10,"28647":6,"28648":8,"28649":8,"28650":4,"28651":5,"28652":8,"28653":5,"28654":5,"28655":6,"28656":9,"28657":1,"28658":8,"28659":4,"28660":2,"28661":5,"28662":9,"28663":8,"28664":7,"28665":10,"28666":7,"28667":3,"28668":8,"28669":10,"28670":3,"28671":5,"28672":7,"28673":8,"28674":5,"28675":9,"28676":8,"28677":10,"28678":2,"28679":7,"28680":8,"28681":4,"28682":1,"28683":7,"28684":4,"28685":9,"28686":6,"28687":2,"28688":7,"28689":6,"28690":7,"28691":6,"28692":1,"28693":8,"28694":10,"28695":8,"28696":9,"28697":9,"28698":5,"28699":9,"28700":7,"28701":8,"28702":7,"28703":8,"28704":8,"28705":2,"28706":2,"28707":3,"28708":7,"28709":6,"28710":8,"28711":8,"28712":5,"28713":7,"28714":9,"28715":6,"28716":9,"28717":10,"28718":6,"28719":7,"28720":7,"28721":2,"28722":8,"28723":1,"28724":7,"28725":1,"28726":7,"28727":5,"28728":10,"28729":5,"28730":2,"28731":9,"28732":8,"28733":5,"28734":1,"28735":6,"28736":7,"28737":8,"28738":5,"28739":7,"28740":9,"28741":1,"28742":6,"28743":5,"28744":6,"28745":9,"28746":5,"28747":7,"28748":8,"28749":8,"28750":3,"28751":8,"28752":7,"28753":7,"28754":9,"28755":10,"28756":7,"28757":2,"28758":8,"28759":5,"28760":8,"28761":8,"28762":5,"28763":8,"28764":7,"28765":7,"28766":10,"28767":8,"28768":9,"28769":9,"28770":8,"28771":8,"28772":8,"28773":9,"28774":2,"28775":3,"28776":5,"28777":3,"28778":5,"28779":3,"28780":5,"28781":10,"28782":8,"28783":5,"28784":9,"28785":8,"28786":4,"28787":2,"28788":2,"28789":8,"28790":9,"28791":8,"28792":5,"28793":7,"28794":6,"28795":5,"28796":7,"28797":10,"28798":2,"28799":7,"28800":1,"28801":8,"28802":6,"28803":7,"28804":8,"28805":1,"28806":5,"28807":10,"28808":8,"28809":5,"28810":8,"28811":3,"28812":2,"28813":8,"28814":7,"28815":5,"28816":8,"28817":7,"28818":7,"28819":2,"28820":7,"28821":2,"28822":1,"28823":7,"28824":2,"28825":8,"28826":7,"28827":5,"28828":8,"28829":7,"28830":9,"28831":9,"28832":4,"28833":3,"28834":8,"28835":7,"28836":10,"28837":9,"28838":2,"28839":5,"28840":8,"28841":2,"28842":7,"28843":7,"28844":7,"28845":7,"28846":2,"28847":9,"28848":3,"28849":5,"28850":7,"28851":9,"28852":9,"28853":8,"28854":5,"28855":2,"28856":4,"28857":10,"28858":8,"28859":9,"28860":10,"28861":7,"28862":6,"28863":2,"28864":8,"28865":7,"28866":8,"28867":8,"28868":7,"28869":2,"28870":9,"28871":9,"28872":8,"28873":8,"28874":4,"28875":7,"28876":5,"28877":9,"28878":2,"28879":9,"28880":1,"28881":8,"28882":5,"28883":7,"28884":3,"28885":9,"28886":9,"28887":7,"28888":5,"28889":8,"28890":10,"28891":9,"28892":7,"28893":8,"28894":9,"28895":7,"28896":5,"28897":7,"28898":7,"28899":3,"28900":7,"28901":8,"28902":6,"28903":2,"28904":9,"28905":5,"28906":7,"28907":7,"28908":4,"28909":8,"28910":7,"28911":2,"28912":1,"28913":8,"28914":2,"28915":8,"28916":5,"28917":7,"28918":5,"28919":8,"28920":9,"28921":5,"28922":7,"28923":1,"28924":7,"28925":6,"28926":7,"28927":7,"28928":9,"28929":8,"28930":5,"28931":8,"28932":8,"28933":7,"28934":7,"28935":8,"28936":3,"28937":8,"28938":8,"28939":5,"28940":8,"28941":2,"28942":2,"28943":7,"28944":3,"28945":4,"28946":7,"28947":5,"28948":2,"28949":7,"28950":10,"28951":9,"28952":8,"28953":2,"28954":8,"28955":8,"28956":10,"28957":8,"28958":8,"28959":5,"28960":3,"28961":3,"28962":7,"28963":3,"28964":8,"28965":3,"28966":6,"28967":9,"28968":3,"28969":7,"28970":7,"28971":8,"28972":8,"28973":5,"28974":7,"28975":8,"28976":5,"28977":2,"28978":10,"28979":8,"28980":8,"28981":10,"28982":4,"28983":4,"28984":1,"28985":9,"28986":7,"28987":5,"28988":3,"28989":8,"28990":10,"28991":10,"28992":7,"28993":10,"28994":8,"28995":6,"28996":6,"28997":8,"28998":6,"28999":2,"29000":6,"29001":5,"29002":8,"29003":8,"29004":5,"29005":7,"29006":4,"29007":8,"29008":4,"29009":2,"29010":4,"29011":4,"29012":2,"29013":1,"29014":7,"29015":7,"29016":8,"29017":8,"29018":8,"29019":4,"29020":9,"29021":5,"29022":7,"29023":4,"29024":5,"29025":6,"29026":4,"29027":8,"29028":9,"29029":2,"29030":8,"29031":10,"29032":8,"29033":4,"29034":7,"29035":7,"29036":7,"29037":9,"29038":8,"29039":9,"29040":9,"29041":7,"29042":9,"29043":7,"29044":2,"29045":10,"29046":7,"29047":8,"29048":7,"29049":5,"29050":1,"29051":8,"29052":9,"29053":10,"29054":7,"29055":8,"29056":7,"29057":4,"29058":3,"29059":9,"29060":8,"29061":9,"29062":8,"29063":5,"29064":3,"29065":6,"29066":2,"29067":5,"29068":8,"29069":8,"29070":1,"29071":8,"29072":9,"29073":8,"29074":7,"29075":3,"29076":8,"29077":8,"29078":9,"29079":9,"29080":8,"29081":3,"29082":2,"29083":9,"29084":7,"29085":5,"29086":1,"29087":5,"29088":7,"29089":8,"29090":4,"29091":1,"29092":9,"29093":7,"29094":9,"29095":9,"29096":3,"29097":8,"29098":9,"29099":6,"29100":8,"29101":9,"29102":8,"29103":8,"29104":7,"29105":7,"29106":8,"29107":6,"29108":7,"29109":7,"29110":8,"29111":9,"29112":2,"29113":10,"29114":9,"29115":9,"29116":8,"29117":3,"29118":8,"29119":1,"29120":9,"29121":5,"29122":8,"29123":10,"29124":2,"29125":7,"29126":8,"29127":10,"29128":8,"29129":5,"29130":7,"29131":8,"29132":7,"29133":8,"29134":7,"29135":1,"29136":9,"29137":7,"29138":9,"29139":9,"29140":8,"29141":7,"29142":6,"29143":8,"29144":7,"29145":7,"29146":7,"29147":5,"29148":2,"29149":10,"29150":7,"29151":2,"29152":5,"29153":9,"29154":8,"29155":2,"29156":1,"29157":10,"29158":7,"29159":8,"29160":5,"29161":8,"29162":5,"29163":8,"29164":6,"29165":9,"29166":9,"29167":6,"29168":9,"29169":9,"29170":4,"29171":7,"29172":8,"29173":5,"29174":9,"29175":4,"29176":7,"29177":7,"29178":9,"29179":1,"29180":7,"29181":9,"29182":9,"29183":5,"29184":9,"29185":5,"29186":2,"29187":8,"29188":2,"29189":7,"29190":8,"29191":5,"29192":4,"29193":4,"29194":3,"29195":7,"29196":3,"29197":2,"29198":7,"29199":7,"29200":10,"29201":6,"29202":7,"29203":6,"29204":3,"29205":7,"29206":9,"29207":2,"29208":3,"29209":6,"29210":2,"29211":8,"29212":8,"29213":9,"29214":8,"29215":9,"29216":5,"29217":8,"29218":5,"29219":5,"29220":7,"29221":9,"29222":3,"29223":2,"29224":10,"29225":2,"29226":5,"29227":2,"29228":5,"29229":6,"29230":8,"29231":8,"29232":8,"29233":7,"29234":2,"29235":2,"29236":3,"29237":3,"29238":10,"29239":3,"29240":8,"29241":7,"29242":7,"29243":10,"29244":7,"29245":2,"29246":8,"29247":3,"29248":8,"29249":9,"29250":2,"29251":8,"29252":8,"29253":8,"29254":8,"29255":2,"29256":9,"29257":9,"29258":8,"29259":10,"29260":8,"29261":5,"29262":3,"29263":8,"29264":9,"29265":9,"29266":3,"29267":9,"29268":9,"29269":8,"29270":9,"29271":10,"29272":7,"29273":7,"29274":3,"29275":9,"29276":3,"29277":2,"29278":8,"29279":3,"29280":7,"29281":10,"29282":7,"29283":7,"29284":3,"29285":2,"29286":5,"29287":5,"29288":9,"29289":6,"29290":8,"29291":7,"29292":9,"29293":5,"29294":4,"29295":8,"29296":7,"29297":9,"29298":5,"29299":8,"29300":1,"29301":9,"29302":6,"29303":8,"29304":7,"29305":4,"29306":10,"29307":2,"29308":7,"29309":9,"29310":9,"29311":7,"29312":8,"29313":7,"29314":2,"29315":7,"29316":10,"29317":7,"29318":10,"29319":9,"29320":8,"29321":2,"29322":2,"29323":2,"29324":8,"29325":9,"29326":4,"29327":5,"29328":3,"29329":8,"29330":7,"29331":2,"29332":3,"29333":7,"29334":8,"29335":5,"29336":9,"29337":7,"29338":5,"29339":1,"29340":8,"29341":9,"29342":8,"29343":10,"29344":9,"29345":1,"29346":1,"29347":7,"29348":8,"29349":7,"29350":9,"29351":1,"29352":9,"29353":5,"29354":8,"29355":9,"29356":7,"29357":8,"29358":6,"29359":2,"29360":7,"29361":7,"29362":7,"29363":5,"29364":9,"29365":9,"29366":8,"29367":7,"29368":7,"29369":9,"29370":9,"29371":10,"29372":8,"29373":8,"29374":10,"29375":5,"29376":7,"29377":7,"29378":8,"29379":8,"29380":9,"29381":8,"29382":8,"29383":6,"29384":7,"29385":4,"29386":1,"29387":7,"29388":7,"29389":7,"29390":1,"29391":5,"29392":1,"29393":10,"29394":3,"29395":6,"29396":5,"29397":9,"29398":7,"29399":2,"29400":6,"29401":9,"29402":8,"29403":9,"29404":5,"29405":9,"29406":8,"29407":1,"29408":1,"29409":1,"29410":9,"29411":9,"29412":4,"29413":9,"29414":8,"29415":4,"29416":7,"29417":7,"29418":3,"29419":7,"29420":3,"29421":7,"29422":8,"29423":6,"29424":3,"29425":5,"29426":7,"29427":6,"29428":8,"29429":2,"29430":9,"29431":9,"29432":7,"29433":7,"29434":7,"29435":2,"29436":2,"29437":2,"29438":8,"29439":10,"29440":8,"29441":9,"29442":5,"29443":9,"29444":3,"29445":2,"29446":6,"29447":8,"29448":8,"29449":9,"29450":7,"29451":2,"29452":10,"29453":6,"29454":2,"29455":9,"29456":10,"29457":7,"29458":6,"29459":10,"29460":9,"29461":8,"29462":3,"29463":8,"29464":3,"29465":9,"29466":5,"29467":7,"29468":2,"29469":5,"29470":7,"29471":7,"29472":3,"29473":8,"29474":7,"29475":7,"29476":5,"29477":8,"29478":5,"29479":8,"29480":2,"29481":2,"29482":8,"29483":1,"29484":8,"29485":9,"29486":2,"29487":4,"29488":8,"29489":5,"29490":5,"29491":8,"29492":3,"29493":1,"29494":1,"29495":7,"29496":2,"29497":2,"29498":8,"29499":7,"29500":8,"29501":8,"29502":9,"29503":5,"29504":10,"29505":2,"29506":4,"29507":10,"29508":7,"29509":8,"29510":2,"29511":7,"29512":9,"29513":1,"29514":7,"29515":5,"29516":8,"29517":7,"29518":2,"29519":10,"29520":4,"29521":4,"29522":7,"29523":5,"29524":4,"29525":2,"29526":8,"29527":7,"29528":7,"29529":9,"29530":4,"29531":2,"29532":8,"29533":8,"29534":8,"29535":9,"29536":10,"29537":9,"29538":9,"29539":8,"29540":9,"29541":3,"29542":6,"29543":9,"29544":2,"29545":9,"29546":9,"29547":8,"29548":5,"29549":10,"29550":1,"29551":5,"29552":1,"29553":7,"29554":9,"29555":8,"29556":2,"29557":7,"29558":8,"29559":10,"29560":1,"29561":8,"29562":5,"29563":2,"29564":5,"29565":2,"29566":8,"29567":8,"29568":9,"29569":5,"29570":8,"29571":9,"29572":10,"29573":7,"29574":7,"29575":8,"29576":7,"29577":5,"29578":2,"29579":7,"29580":9,"29581":5,"29582":8,"29583":8,"29584":8,"29585":9,"29586":7,"29587":5,"29588":9,"29589":5,"29590":6,"29591":5,"29592":3,"29593":10,"29594":5,"29595":2,"29596":1,"29597":6,"29598":7,"29599":8,"29600":7,"29601":5,"29602":9,"29603":10,"29604":9,"29605":7,"29606":5,"29607":7,"29608":5,"29609":1,"29610":7,"29611":7,"29612":1,"29613":10,"29614":8,"29615":9,"29616":8,"29617":3,"29618":5,"29619":7,"29620":1,"29621":7,"29622":7,"29623":8,"29624":9,"29625":5,"29626":7,"29627":7,"29628":7,"29629":3,"29630":8,"29631":7,"29632":7,"29633":8,"29634":5,"29635":3,"29636":9,"29637":9,"29638":5,"29639":7,"29640":8,"29641":8,"29642":10,"29643":2,"29644":3,"29645":4,"29646":7,"29647":9,"29648":7,"29649":6,"29650":2,"29651":2,"29652":9,"29653":9,"29654":7,"29655":7,"29656":8,"29657":8,"29658":5,"29659":5,"29660":1,"29661":8,"29662":8,"29663":5,"29664":1,"29665":7,"29666":9,"29667":7,"29668":10,"29669":7,"29670":8,"29671":5,"29672":10,"29673":5,"29674":7,"29675":5,"29676":9,"29677":7,"29678":7,"29679":8,"29680":7,"29681":1,"29682":5,"29683":9,"29684":7,"29685":2,"29686":6,"29687":7,"29688":7,"29689":10,"29690":7,"29691":2,"29692":7,"29693":8,"29694":5,"29695":8,"29696":7,"29697":5,"29698":5,"29699":6,"29700":10,"29701":7,"29702":5,"29703":8,"29704":10,"29705":5,"29706":7,"29707":3,"29708":10,"29709":8,"29710":9,"29711":2,"29712":5,"29713":8,"29714":8,"29715":9,"29716":7,"29717":5,"29718":4,"29719":3,"29720":7,"29721":2,"29722":7,"29723":2,"29724":8,"29725":10,"29726":5,"29727":10,"29728":9,"29729":8,"29730":2,"29731":5,"29732":7,"29733":7,"29734":4,"29735":7,"29736":10,"29737":9,"29738":2,"29739":7,"29740":9,"29741":9,"29742":6,"29743":6,"29744":9,"29745":10,"29746":9,"29747":8,"29748":1,"29749":5,"29750":7,"29751":7,"29752":10,"29753":4,"29754":3,"29755":4,"29756":7,"29757":7,"29758":8,"29759":6,"29760":7,"29761":7,"29762":9,"29763":5,"29764":4,"29765":8,"29766":9,"29767":10,"29768":8,"29769":8,"29770":3,"29771":8,"29772":9,"29773":9,"29774":4,"29775":8,"29776":9,"29777":9,"29778":9,"29779":9,"29780":8,"29781":10,"29782":1,"29783":3,"29784":7,"29785":8,"29786":2,"29787":7,"29788":7,"29789":2,"29790":8,"29791":5,"29792":8,"29793":8,"29794":5,"29795":5,"29796":8,"29797":10,"29798":10,"29799":9,"29800":2,"29801":9,"29802":2,"29803":10,"29804":2,"29805":9,"29806":8,"29807":3,"29808":4,"29809":9,"29810":8,"29811":10,"29812":9,"29813":6,"29814":7,"29815":1,"29816":6,"29817":9,"29818":4,"29819":9,"29820":8,"29821":9,"29822":5,"29823":7,"29824":2,"29825":8,"29826":8,"29827":10,"29828":3,"29829":10,"29830":1,"29831":3,"29832":5,"29833":8,"29834":2,"29835":6,"29836":8,"29837":9,"29838":2,"29839":2,"29840":4,"29841":7,"29842":2,"29843":5,"29844":7,"29845":10,"29846":2,"29847":5,"29848":8,"29849":8,"29850":8,"29851":7,"29852":3,"29853":9,"29854":10,"29855":3,"29856":4,"29857":8,"29858":6,"29859":1,"29860":8,"29861":5,"29862":10,"29863":1,"29864":8,"29865":1,"29866":7,"29867":3,"29868":3,"29869":2,"29870":7,"29871":7,"29872":8,"29873":7,"29874":5,"29875":2,"29876":5,"29877":4,"29878":8,"29879":8,"29880":9,"29881":8,"29882":8,"29883":8,"29884":8,"29885":3,"29886":8,"29887":9,"29888":8,"29889":6,"29890":8,"29891":4,"29892":9,"29893":7,"29894":2,"29895":8,"29896":5,"29897":3,"29898":4,"29899":8,"29900":9,"29901":3,"29902":8,"29903":2,"29904":7,"29905":9,"29906":9,"29907":7,"29908":5,"29909":7,"29910":7,"29911":2,"29912":1,"29913":8,"29914":6,"29915":4,"29916":7,"29917":8,"29918":4,"29919":8,"29920":8,"29921":1,"29922":8,"29923":2,"29924":2,"29925":10,"29926":8,"29927":7,"29928":7,"29929":9,"29930":9,"29931":8,"29932":8,"29933":8,"29934":5,"29935":2,"29936":7,"29937":4,"29938":2,"29939":8,"29940":2,"29941":4,"29942":2,"29943":7,"29944":7,"29945":3,"29946":6,"29947":7,"29948":4,"29949":7,"29950":4,"29951":7,"29952":7,"29953":7,"29954":7,"29955":8,"29956":7,"29957":7,"29958":1,"29959":9,"29960":4,"29961":10,"29962":10,"29963":10,"29964":8,"29965":3,"29966":1,"29967":2,"29968":9,"29969":7,"29970":2,"29971":9,"29972":2,"29973":8,"29974":6,"29975":3,"29976":8,"29977":9,"29978":7,"29979":10,"29980":8,"29981":10,"29982":1,"29983":4,"29984":5,"29985":7,"29986":7,"29987":7,"29988":8,"29989":2,"29990":1,"29991":7,"29992":5,"29993":9,"29994":8,"29995":7,"29996":7,"29997":10,"29998":5,"29999":7,"30000":5,"30001":4,"30002":8,"30003":1,"30004":9,"30005":8,"30006":2,"30007":8,"30008":1,"30009":7,"30010":7,"30011":4,"30012":9,"30013":9,"30014":7,"30015":10,"30016":8,"30017":7,"30018":5,"30019":8,"30020":5,"30021":5,"30022":9,"30023":7,"30024":9,"30025":6,"30026":5,"30027":1,"30028":7,"30029":6,"30030":5,"30031":5,"30032":7,"30033":8,"30034":8,"30035":5,"30036":1,"30037":8,"30038":8,"30039":5,"30040":8,"30041":4,"30042":9,"30043":5,"30044":9,"30045":7,"30046":5,"30047":10,"30048":7,"30049":9,"30050":5,"30051":7,"30052":8,"30053":7,"30054":5,"30055":4,"30056":9,"30057":9,"30058":8,"30059":8,"30060":5,"30061":8,"30062":7,"30063":7,"30064":8,"30065":7,"30066":9,"30067":7,"30068":7,"30069":8,"30070":7,"30071":8,"30072":4,"30073":3,"30074":3,"30075":5,"30076":6,"30077":6,"30078":2,"30079":9,"30080":8,"30081":8,"30082":1,"30083":9,"30084":2,"30085":10,"30086":7,"30087":7,"30088":8,"30089":5,"30090":8,"30091":10,"30092":8,"30093":8,"30094":9,"30095":7,"30096":2,"30097":9,"30098":7,"30099":8,"30100":9,"30101":8,"30102":9,"30103":7,"30104":8,"30105":9,"30106":10,"30107":8,"30108":5,"30109":5,"30110":6,"30111":5,"30112":6,"30113":7,"30114":10,"30115":8,"30116":7,"30117":10,"30118":7,"30119":5,"30120":5,"30121":5,"30122":7,"30123":1,"30124":3,"30125":3,"30126":9,"30127":8,"30128":2,"30129":9,"30130":10,"30131":6,"30132":9,"30133":7,"30134":1,"30135":10,"30136":7,"30137":3,"30138":10,"30139":7,"30140":2,"30141":8,"30142":9,"30143":7,"30144":4,"30145":9,"30146":8,"30147":8,"30148":6,"30149":2,"30150":1,"30151":4,"30152":1,"30153":7,"30154":7,"30155":3,"30156":6,"30157":5,"30158":9,"30159":9,"30160":6,"30161":10,"30162":5,"30163":5,"30164":7,"30165":5,"30166":10,"30167":8,"30168":8,"30169":7,"30170":2,"30171":3,"30172":10,"30173":6,"30174":3,"30175":7,"30176":7,"30177":9,"30178":9,"30179":5,"30180":8,"30181":6,"30182":4,"30183":7,"30184":1,"30185":1,"30186":9,"30187":8,"30188":5,"30189":2,"30190":7,"30191":9,"30192":7,"30193":5,"30194":10,"30195":9,"30196":10,"30197":7,"30198":9,"30199":8,"30200":5,"30201":2,"30202":9,"30203":7,"30204":9,"30205":9,"30206":7,"30207":9,"30208":8,"30209":2,"30210":4,"30211":9,"30212":7,"30213":5,"30214":10,"30215":4,"30216":2,"30217":8,"30218":8,"30219":9,"30220":4,"30221":2,"30222":7,"30223":10,"30224":7,"30225":4,"30226":6,"30227":7,"30228":10,"30229":4,"30230":2,"30231":9,"30232":7,"30233":6,"30234":7,"30235":8,"30236":10,"30237":6,"30238":6,"30239":6,"30240":8,"30241":9,"30242":5,"30243":9,"30244":6,"30245":4,"30246":8,"30247":8,"30248":2,"30249":9,"30250":9,"30251":9,"30252":9,"30253":8,"30254":7,"30255":8,"30256":7,"30257":8,"30258":7,"30259":9,"30260":5,"30261":7,"30262":1,"30263":10,"30264":2,"30265":9,"30266":10,"30267":5,"30268":5,"30269":6,"30270":2,"30271":8,"30272":7,"30273":2,"30274":10,"30275":9,"30276":5,"30277":7,"30278":5,"30279":8,"30280":4,"30281":7,"30282":7,"30283":1,"30284":2,"30285":1,"30286":3,"30287":8,"30288":5,"30289":8,"30290":8,"30291":2,"30292":6,"30293":4,"30294":10,"30295":5,"30296":10,"30297":3,"30298":5,"30299":3,"30300":7,"30301":4,"30302":9,"30303":10,"30304":8,"30305":10,"30306":3,"30307":7,"30308":8,"30309":9,"30310":7,"30311":9,"30312":3,"30313":7,"30314":8,"30315":1,"30316":2,"30317":9,"30318":8,"30319":9,"30320":7,"30321":7,"30322":7,"30323":2,"30324":7,"30325":8,"30326":7,"30327":8,"30328":8,"30329":9,"30330":6,"30331":7,"30332":7,"30333":8,"30334":9,"30335":3,"30336":7,"30337":4,"30338":6,"30339":8,"30340":7,"30341":8,"30342":9,"30343":5,"30344":5,"30345":5,"30346":8,"30347":9,"30348":8,"30349":7,"30350":7,"30351":8,"30352":7,"30353":10,"30354":10,"30355":2,"30356":7,"30357":9,"30358":8,"30359":6,"30360":3,"30361":1,"30362":8,"30363":4,"30364":8,"30365":2,"30366":8,"30367":3,"30368":3,"30369":8,"30370":5,"30371":2,"30372":4,"30373":8,"30374":5,"30375":7,"30376":7,"30377":6,"30378":3,"30379":5,"30380":6,"30381":8,"30382":8,"30383":7,"30384":3,"30385":4,"30386":10,"30387":2,"30388":5,"30389":8,"30390":8,"30391":7,"30392":8,"30393":7,"30394":6,"30395":4,"30396":7,"30397":7,"30398":7,"30399":9,"30400":6,"30401":2,"30402":7,"30403":8,"30404":8,"30405":7,"30406":8,"30407":3,"30408":8,"30409":3,"30410":8,"30411":7,"30412":5,"30413":4,"30414":8,"30415":1,"30416":2,"30417":10,"30418":10,"30419":10,"30420":8,"30421":8,"30422":8,"30423":8,"30424":6,"30425":8,"30426":9,"30427":9,"30428":8,"30429":10,"30430":9,"30431":6,"30432":7,"30433":2,"30434":1,"30435":8,"30436":7,"30437":9,"30438":6,"30439":9,"30440":10,"30441":10,"30442":7,"30443":10,"30444":7,"30445":7,"30446":7,"30447":4,"30448":5,"30449":3,"30450":8,"30451":7,"30452":8,"30453":5,"30454":3,"30455":7,"30456":7,"30457":5,"30458":5,"30459":5,"30460":7,"30461":7,"30462":8,"30463":8,"30464":8,"30465":7,"30466":5,"30467":3,"30468":6,"30469":5,"30470":10,"30471":8,"30472":3,"30473":1,"30474":1,"30475":8,"30476":8,"30477":7,"30478":3,"30479":5,"30480":10,"30481":10,"30482":5,"30483":3,"30484":4,"30485":8,"30486":9,"30487":9,"30488":4,"30489":4,"30490":9,"30491":8,"30492":5,"30493":1,"30494":3,"30495":3,"30496":5,"30497":5,"30498":8,"30499":7,"30500":7,"30501":7,"30502":3,"30503":7,"30504":3,"30505":2,"30506":7,"30507":10,"30508":5,"30509":2,"30510":9,"30511":8,"30512":2,"30513":9,"30514":1,"30515":4,"30516":9,"30517":5,"30518":8,"30519":6,"30520":2,"30521":9,"30522":8,"30523":2,"30524":2,"30525":9,"30526":2,"30527":9,"30528":4,"30529":7,"30530":8,"30531":8,"30532":8,"30533":9,"30534":6,"30535":2,"30536":8,"30537":7,"30538":8,"30539":2,"30540":8,"30541":7,"30542":7,"30543":9,"30544":5,"30545":4,"30546":8,"30547":5,"30548":5,"30549":8,"30550":2,"30551":9,"30552":7,"30553":3,"30554":5,"30555":9,"30556":6,"30557":10,"30558":2,"30559":8,"30560":10,"30561":3,"30562":9,"30563":2,"30564":1,"30565":5,"30566":2,"30567":10,"30568":2,"30569":10,"30570":3,"30571":8,"30572":2,"30573":4,"30574":5,"30575":9,"30576":9,"30577":7,"30578":8,"30579":4,"30580":5,"30581":5,"30582":8,"30583":9,"30584":8,"30585":10,"30586":7,"30587":4,"30588":6,"30589":7,"30590":2,"30591":9,"30592":1,"30593":4,"30594":8,"30595":9,"30596":9,"30597":7,"30598":2,"30599":2,"30600":1,"30601":1,"30602":2,"30603":8,"30604":2,"30605":8,"30606":5,"30607":2,"30608":4,"30609":7,"30610":9,"30611":9,"30612":3,"30613":3,"30614":2,"30615":8,"30616":7,"30617":5,"30618":8,"30619":7,"30620":2,"30621":9,"30622":7,"30623":8,"30624":6,"30625":2,"30626":7,"30627":8,"30628":8,"30629":6,"30630":7,"30631":6,"30632":7,"30633":7,"30634":9,"30635":9,"30636":5,"30637":8,"30638":5,"30639":3,"30640":7,"30641":9,"30642":7,"30643":8,"30644":5,"30645":8,"30646":7,"30647":6,"30648":4,"30649":7,"30650":9,"30651":8,"30652":8,"30653":8,"30654":7,"30655":3,"30656":8,"30657":2,"30658":8,"30659":8,"30660":7,"30661":7,"30662":4,"30663":7,"30664":8,"30665":9,"30666":8,"30667":9,"30668":10,"30669":10,"30670":9,"30671":7,"30672":8,"30673":8,"30674":8,"30675":6,"30676":9,"30677":5,"30678":5,"30679":3,"30680":9,"30681":7,"30682":7,"30683":7,"30684":2,"30685":9,"30686":3,"30687":8,"30688":9,"30689":8,"30690":7,"30691":8,"30692":2,"30693":7,"30694":8,"30695":9,"30696":8,"30697":7,"30698":5,"30699":7,"30700":8,"30701":5,"30702":1,"30703":6,"30704":9,"30705":3,"30706":7,"30707":8,"30708":6,"30709":4,"30710":7,"30711":5,"30712":7,"30713":7,"30714":4,"30715":1,"30716":9,"30717":2,"30718":8,"30719":7,"30720":6,"30721":7,"30722":1,"30723":5,"30724":7,"30725":9,"30726":4,"30727":4,"30728":9,"30729":2,"30730":8,"30731":2,"30732":6,"30733":7,"30734":7,"30735":8,"30736":9,"30737":1,"30738":4,"30739":10,"30740":5,"30741":6,"30742":3,"30743":6,"30744":6,"30745":6,"30746":7,"30747":9,"30748":8,"30749":10,"30750":1,"30751":5,"30752":10,"30753":9,"30754":5,"30755":8,"30756":9,"30757":5,"30758":9,"30759":9,"30760":8,"30761":9,"30762":9,"30763":8,"30764":4,"30765":5,"30766":2,"30767":6,"30768":5,"30769":1,"30770":7,"30771":9,"30772":6,"30773":1,"30774":9,"30775":7,"30776":8,"30777":1,"30778":5,"30779":9,"30780":4,"30781":7,"30782":8,"30783":6,"30784":10,"30785":5,"30786":4,"30787":8,"30788":5,"30789":7,"30790":5,"30791":9,"30792":2,"30793":7,"30794":2,"30795":9,"30796":7,"30797":9,"30798":9,"30799":7,"30800":1,"30801":7,"30802":7,"30803":9,"30804":7,"30805":1,"30806":8,"30807":6,"30808":9,"30809":9,"30810":8,"30811":8,"30812":7,"30813":6,"30814":6,"30815":8,"30816":8,"30817":7,"30818":8,"30819":8,"30820":8,"30821":9,"30822":6,"30823":1,"30824":9,"30825":9,"30826":8,"30827":8,"30828":8,"30829":8,"30830":9,"30831":2,"30832":8,"30833":3,"30834":2,"30835":6,"30836":8,"30837":8,"30838":5,"30839":7,"30840":9,"30841":9,"30842":9,"30843":8,"30844":4,"30845":2,"30846":7,"30847":8,"30848":5,"30849":4,"30850":8,"30851":9,"30852":7,"30853":9,"30854":1,"30855":2,"30856":5,"30857":7,"30858":8,"30859":2,"30860":7,"30861":7,"30862":8,"30863":9,"30864":10,"30865":2,"30866":7,"30867":8,"30868":7,"30869":8,"30870":8,"30871":7,"30872":1,"30873":2,"30874":8,"30875":2,"30876":7,"30877":8,"30878":10,"30879":9,"30880":5,"30881":10,"30882":1,"30883":2,"30884":2,"30885":8,"30886":10,"30887":7,"30888":10,"30889":9,"30890":2,"30891":1,"30892":6,"30893":6,"30894":2,"30895":1,"30896":9,"30897":8,"30898":8,"30899":7,"30900":8,"30901":6,"30902":7,"30903":7,"30904":9,"30905":8,"30906":8,"30907":9,"30908":2,"30909":6,"30910":6,"30911":7,"30912":5,"30913":4,"30914":10,"30915":8,"30916":9,"30917":9,"30918":7,"30919":8,"30920":5,"30921":2,"30922":9,"30923":2,"30924":8,"30925":5,"30926":1,"30927":3,"30928":1,"30929":7,"30930":5,"30931":2,"30932":2,"30933":1,"30934":2,"30935":7,"30936":5,"30937":8,"30938":7,"30939":6,"30940":1,"30941":8,"30942":7,"30943":4,"30944":8,"30945":9,"30946":8,"30947":7,"30948":10,"30949":8,"30950":7,"30951":9,"30952":5,"30953":7,"30954":1,"30955":3,"30956":10,"30957":9,"30958":9,"30959":2,"30960":5,"30961":8,"30962":9,"30963":7,"30964":7,"30965":9,"30966":7,"30967":1,"30968":7,"30969":5,"30970":8,"30971":7,"30972":7,"30973":9,"30974":10,"30975":9,"30976":8,"30977":9,"30978":7,"30979":8,"30980":6,"30981":9,"30982":3,"30983":7,"30984":7,"30985":8,"30986":2,"30987":4,"30988":2,"30989":10,"30990":9,"30991":7,"30992":4,"30993":1,"30994":6,"30995":7,"30996":2,"30997":5,"30998":7,"30999":8,"31000":9,"31001":2,"31002":4,"31003":9,"31004":7,"31005":10,"31006":4,"31007":7,"31008":2,"31009":5,"31010":7,"31011":1,"31012":10,"31013":7,"31014":5,"31015":7,"31016":8,"31017":4,"31018":2,"31019":2,"31020":8,"31021":8,"31022":7,"31023":7,"31024":6,"31025":7,"31026":8,"31027":7,"31028":8,"31029":8,"31030":8,"31031":3,"31032":9,"31033":4,"31034":5,"31035":10,"31036":2,"31037":9,"31038":1,"31039":9,"31040":9,"31041":1,"31042":9,"31043":2,"31044":7,"31045":8,"31046":9,"31047":7,"31048":8,"31049":5,"31050":9,"31051":5,"31052":9,"31053":2,"31054":4,"31055":7,"31056":9,"31057":9,"31058":2,"31059":8,"31060":3,"31061":7,"31062":9,"31063":2,"31064":8,"31065":7,"31066":7,"31067":7,"31068":7,"31069":3,"31070":2,"31071":7,"31072":5,"31073":2,"31074":5,"31075":1,"31076":7,"31077":7,"31078":8,"31079":6,"31080":7,"31081":5,"31082":9,"31083":8,"31084":2,"31085":2,"31086":8,"31087":8,"31088":8,"31089":5,"31090":6,"31091":8,"31092":8,"31093":7,"31094":7,"31095":2,"31096":9,"31097":4,"31098":5,"31099":2,"31100":9,"31101":8,"31102":1,"31103":2,"31104":1,"31105":7,"31106":7,"31107":5,"31108":8,"31109":7,"31110":9,"31111":7,"31112":7,"31113":7,"31114":3,"31115":7,"31116":8,"31117":7,"31118":8,"31119":3,"31120":6,"31121":10,"31122":9,"31123":7,"31124":2,"31125":8,"31126":7,"31127":5,"31128":9,"31129":5,"31130":7,"31131":5,"31132":3,"31133":5,"31134":4,"31135":10,"31136":9,"31137":10,"31138":9,"31139":3,"31140":5,"31141":9,"31142":9,"31143":3,"31144":6,"31145":3,"31146":7,"31147":8,"31148":5,"31149":2,"31150":7,"31151":7,"31152":1,"31153":8,"31154":2,"31155":8,"31156":8,"31157":7,"31158":5,"31159":4,"31160":7,"31161":8,"31162":7,"31163":8,"31164":1,"31165":8,"31166":5,"31167":6,"31168":2,"31169":7,"31170":8,"31171":7,"31172":9,"31173":4,"31174":9,"31175":5,"31176":5,"31177":7,"31178":9,"31179":3,"31180":10,"31181":7,"31182":4,"31183":9,"31184":9,"31185":8,"31186":5,"31187":7,"31188":9,"31189":2,"31190":8,"31191":1,"31192":4,"31193":8,"31194":8,"31195":9,"31196":8,"31197":7,"31198":8,"31199":10,"31200":8,"31201":7,"31202":1,"31203":8,"31204":4,"31205":3,"31206":8,"31207":7,"31208":8,"31209":8,"31210":6,"31211":8,"31212":8,"31213":10,"31214":7,"31215":7,"31216":6,"31217":2,"31218":2,"31219":7,"31220":6,"31221":7,"31222":9,"31223":8,"31224":9,"31225":7,"31226":9,"31227":7,"31228":8,"31229":3,"31230":7,"31231":9,"31232":10,"31233":7,"31234":9,"31235":1,"31236":1,"31237":9,"31238":4,"31239":9,"31240":3,"31241":2,"31242":8,"31243":1,"31244":8,"31245":9,"31246":5,"31247":3,"31248":5,"31249":2,"31250":10,"31251":6,"31252":4,"31253":9,"31254":7,"31255":5,"31256":7,"31257":7,"31258":7,"31259":8,"31260":1,"31261":7,"31262":5,"31263":7,"31264":9,"31265":1,"31266":1,"31267":2,"31268":8,"31269":1,"31270":7,"31271":8,"31272":5,"31273":9,"31274":2,"31275":9,"31276":8,"31277":8,"31278":7,"31279":2,"31280":5,"31281":2,"31282":5,"31283":8,"31284":2,"31285":9,"31286":2,"31287":7,"31288":8,"31289":8,"31290":9,"31291":7,"31292":2,"31293":7,"31294":8,"31295":2,"31296":7,"31297":9,"31298":5,"31299":7,"31300":6,"31301":7,"31302":2,"31303":10,"31304":8,"31305":7,"31306":2,"31307":7,"31308":8,"31309":6,"31310":9,"31311":9,"31312":10,"31313":6,"31314":2,"31315":10,"31316":7,"31317":9,"31318":6,"31319":5,"31320":7,"31321":7,"31322":8,"31323":8,"31324":8,"31325":4,"31326":7,"31327":9,"31328":7,"31329":9,"31330":3,"31331":3,"31332":9,"31333":7,"31334":9,"31335":7,"31336":4,"31337":6,"31338":9,"31339":4,"31340":8,"31341":9,"31342":2,"31343":10,"31344":9,"31345":4,"31346":1,"31347":4,"31348":9,"31349":7,"31350":8,"31351":5,"31352":8,"31353":5,"31354":2,"31355":1,"31356":5,"31357":9,"31358":8,"31359":10,"31360":9,"31361":7,"31362":2,"31363":5,"31364":8,"31365":10,"31366":9,"31367":8,"31368":5,"31369":3,"31370":5,"31371":8,"31372":5,"31373":8,"31374":1,"31375":8,"31376":8,"31377":9,"31378":7,"31379":10,"31380":5,"31381":2,"31382":7,"31383":7,"31384":2,"31385":8,"31386":1,"31387":8,"31388":7,"31389":4,"31390":1,"31391":7,"31392":6,"31393":7,"31394":5,"31395":9,"31396":7,"31397":8,"31398":5,"31399":4,"31400":7,"31401":7,"31402":2,"31403":2,"31404":8,"31405":9,"31406":8,"31407":2,"31408":9,"31409":1,"31410":5,"31411":9,"31412":6,"31413":8,"31414":8,"31415":1,"31416":5,"31417":8,"31418":7,"31419":8,"31420":9,"31421":7,"31422":7,"31423":8,"31424":5,"31425":2,"31426":6,"31427":1,"31428":3,"31429":8,"31430":8,"31431":2,"31432":5,"31433":9,"31434":9,"31435":8,"31436":5,"31437":6,"31438":5,"31439":8,"31440":3,"31441":7,"31442":7,"31443":8,"31444":8,"31445":4,"31446":9,"31447":7,"31448":6,"31449":8,"31450":2,"31451":8,"31452":8,"31453":8,"31454":8,"31455":8,"31456":7,"31457":3,"31458":6,"31459":8,"31460":9,"31461":1,"31462":8,"31463":2,"31464":6,"31465":8,"31466":9,"31467":2,"31468":4,"31469":7,"31470":2,"31471":9,"31472":7,"31473":3,"31474":5,"31475":2,"31476":7,"31477":8,"31478":1,"31479":3,"31480":3,"31481":9,"31482":9,"31483":5,"31484":7,"31485":10,"31486":7,"31487":8,"31488":1,"31489":5,"31490":6,"31491":7,"31492":1,"31493":7,"31494":7,"31495":9,"31496":8,"31497":8,"31498":10,"31499":2,"31500":6,"31501":8,"31502":7,"31503":3,"31504":7,"31505":2,"31506":2,"31507":2,"31508":9,"31509":9,"31510":10,"31511":5,"31512":2,"31513":9,"31514":9,"31515":2,"31516":5,"31517":2,"31518":9,"31519":9,"31520":5,"31521":2,"31522":9,"31523":5,"31524":9,"31525":8,"31526":7,"31527":2,"31528":7,"31529":4,"31530":2,"31531":6,"31532":5,"31533":1,"31534":9,"31535":8,"31536":7,"31537":8,"31538":2,"31539":7,"31540":7,"31541":7,"31542":7,"31543":2,"31544":8,"31545":9,"31546":7,"31547":2,"31548":7,"31549":8,"31550":9,"31551":1,"31552":2,"31553":8,"31554":4,"31555":8,"31556":9,"31557":3,"31558":8,"31559":9,"31560":2,"31561":5,"31562":3,"31563":8,"31564":9,"31565":2,"31566":4,"31567":2,"31568":9,"31569":6,"31570":8,"31571":6,"31572":9,"31573":9,"31574":8,"31575":2,"31576":5,"31577":5,"31578":2,"31579":8,"31580":2,"31581":2,"31582":1,"31583":8,"31584":7,"31585":8,"31586":9,"31587":9,"31588":2,"31589":8,"31590":9,"31591":8,"31592":9,"31593":4,"31594":8,"31595":8,"31596":5,"31597":9,"31598":9,"31599":10,"31600":5,"31601":7,"31602":7,"31603":8,"31604":7,"31605":4,"31606":5,"31607":3,"31608":8,"31609":8,"31610":8,"31611":7,"31612":2,"31613":7,"31614":7,"31615":8,"31616":9,"31617":2,"31618":1,"31619":3,"31620":8,"31621":7,"31622":7,"31623":7,"31624":5,"31625":4,"31626":7,"31627":2,"31628":5,"31629":7,"31630":9,"31631":2,"31632":7,"31633":7,"31634":8,"31635":9,"31636":1,"31637":2,"31638":2,"31639":6,"31640":9,"31641":9,"31642":8,"31643":9,"31644":10,"31645":9,"31646":2,"31647":2,"31648":6,"31649":2,"31650":2,"31651":7,"31652":4,"31653":7,"31654":9,"31655":7,"31656":7,"31657":8,"31658":9,"31659":1,"31660":8,"31661":9,"31662":10,"31663":1,"31664":7,"31665":9,"31666":6,"31667":9,"31668":10,"31669":7,"31670":8,"31671":10,"31672":6,"31673":8,"31674":7,"31675":8,"31676":5,"31677":7,"31678":4,"31679":4,"31680":5,"31681":7,"31682":8,"31683":1,"31684":2,"31685":8,"31686":6,"31687":2,"31688":4,"31689":7,"31690":7,"31691":8,"31692":2,"31693":7,"31694":7,"31695":1,"31696":10,"31697":1,"31698":8,"31699":3,"31700":7,"31701":2,"31702":8,"31703":8,"31704":10,"31705":7,"31706":9,"31707":9,"31708":6,"31709":2,"31710":7,"31711":9,"31712":5,"31713":9,"31714":7,"31715":6,"31716":7,"31717":2,"31718":4,"31719":8,"31720":7,"31721":8,"31722":9,"31723":9,"31724":7,"31725":5,"31726":5,"31727":6,"31728":8,"31729":5,"31730":8,"31731":4,"31732":9,"31733":8,"31734":9,"31735":7,"31736":7,"31737":7,"31738":5,"31739":2,"31740":8,"31741":9,"31742":8,"31743":9,"31744":2,"31745":3,"31746":8,"31747":7,"31748":5,"31749":8,"31750":2,"31751":2,"31752":8,"31753":4,"31754":7,"31755":9,"31756":1,"31757":3,"31758":7,"31759":7,"31760":7,"31761":7,"31762":10,"31763":3,"31764":9,"31765":8,"31766":7,"31767":9,"31768":7,"31769":5,"31770":5,"31771":4,"31772":7,"31773":7,"31774":7,"31775":9,"31776":2,"31777":9,"31778":8,"31779":4,"31780":7,"31781":8,"31782":8,"31783":9,"31784":5,"31785":2,"31786":9,"31787":9,"31788":9,"31789":7,"31790":7,"31791":8,"31792":6,"31793":5,"31794":5,"31795":2,"31796":9,"31797":6,"31798":7,"31799":2,"31800":9,"31801":3,"31802":7,"31803":4,"31804":6,"31805":7,"31806":8,"31807":4,"31808":5,"31809":9,"31810":9,"31811":4,"31812":9,"31813":8,"31814":1,"31815":8,"31816":7,"31817":5,"31818":2,"31819":7,"31820":2,"31821":9,"31822":9,"31823":9,"31824":8,"31825":4,"31826":6,"31827":9,"31828":2,"31829":9,"31830":8,"31831":4,"31832":8,"31833":7,"31834":8,"31835":7,"31836":2,"31837":7,"31838":9,"31839":8,"31840":9,"31841":2,"31842":7,"31843":6,"31844":7,"31845":9,"31846":1,"31847":8,"31848":5,"31849":8,"31850":7,"31851":9,"31852":8,"31853":7,"31854":7,"31855":2,"31856":8,"31857":10,"31858":7,"31859":5,"31860":7,"31861":7,"31862":5,"31863":1,"31864":9,"31865":8,"31866":4,"31867":7,"31868":6,"31869":4,"31870":8,"31871":2,"31872":9,"31873":7,"31874":10,"31875":8,"31876":2,"31877":9,"31878":2,"31879":1,"31880":3,"31881":5,"31882":2,"31883":2,"31884":6,"31885":1,"31886":6,"31887":9,"31888":7,"31889":5,"31890":8,"31891":8,"31892":5,"31893":5,"31894":9,"31895":5,"31896":7,"31897":3,"31898":1,"31899":2,"31900":8,"31901":8,"31902":4,"31903":1,"31904":8,"31905":4,"31906":10,"31907":9,"31908":5,"31909":8,"31910":8,"31911":9,"31912":7,"31913":10,"31914":1,"31915":2,"31916":2,"31917":4,"31918":10,"31919":2,"31920":3,"31921":5,"31922":9,"31923":3,"31924":7,"31925":2,"31926":7,"31927":2,"31928":9,"31929":7,"31930":4,"31931":8,"31932":3,"31933":9,"31934":2,"31935":7,"31936":3,"31937":8,"31938":9,"31939":9,"31940":8,"31941":8,"31942":7,"31943":8,"31944":8,"31945":7,"31946":7,"31947":9,"31948":3,"31949":5,"31950":7,"31951":5,"31952":9,"31953":9,"31954":1,"31955":8,"31956":7,"31957":7,"31958":9,"31959":2,"31960":9,"31961":9,"31962":7,"31963":8,"31964":7,"31965":7,"31966":1,"31967":7,"31968":5,"31969":2,"31970":5,"31971":10,"31972":7,"31973":2,"31974":5,"31975":7,"31976":8,"31977":7,"31978":8,"31979":7,"31980":9,"31981":8,"31982":2,"31983":7,"31984":8,"31985":4,"31986":5,"31987":8,"31988":8,"31989":8,"31990":8,"31991":9,"31992":2,"31993":8,"31994":2,"31995":5,"31996":2,"31997":8,"31998":10,"31999":8,"32000":7,"32001":9,"32002":10,"32003":6,"32004":8,"32005":3,"32006":2,"32007":5,"32008":1,"32009":5,"32010":8,"32011":7,"32012":9,"32013":8,"32014":8,"32015":7,"32016":1,"32017":7,"32018":6,"32019":8,"32020":8,"32021":7,"32022":9,"32023":8,"32024":8,"32025":8,"32026":6,"32027":8,"32028":3,"32029":10,"32030":3,"32031":7,"32032":2,"32033":9,"32034":7,"32035":1,"32036":8,"32037":7,"32038":6,"32039":6,"32040":8,"32041":9,"32042":7,"32043":9,"32044":6,"32045":4,"32046":3,"32047":10,"32048":9,"32049":3,"32050":10,"32051":6,"32052":7,"32053":2,"32054":7,"32055":8,"32056":5,"32057":4,"32058":9,"32059":9,"32060":7,"32061":1,"32062":8,"32063":9,"32064":4,"32065":9,"32066":3,"32067":7,"32068":5,"32069":8,"32070":3,"32071":7,"32072":9,"32073":1,"32074":7,"32075":9,"32076":1,"32077":8,"32078":2,"32079":8,"32080":3,"32081":9,"32082":9,"32083":2,"32084":5,"32085":4,"32086":6,"32087":4,"32088":9,"32089":7,"32090":8,"32091":8,"32092":1,"32093":7,"32094":1,"32095":7,"32096":9,"32097":9,"32098":3,"32099":3,"32100":7,"32101":5,"32102":3,"32103":10,"32104":3,"32105":2,"32106":1,"32107":7,"32108":10,"32109":9,"32110":5,"32111":6,"32112":8,"32113":5,"32114":7,"32115":7,"32116":7,"32117":5,"32118":7,"32119":7,"32120":7,"32121":10,"32122":9,"32123":2,"32124":5,"32125":7,"32126":6,"32127":3,"32128":3,"32129":7,"32130":9,"32131":8,"32132":7,"32133":9,"32134":5,"32135":8,"32136":4,"32137":5,"32138":9,"32139":7,"32140":9,"32141":7,"32142":9,"32143":9,"32144":6,"32145":7,"32146":3,"32147":1,"32148":4,"32149":2,"32150":8,"32151":8,"32152":4,"32153":7,"32154":7,"32155":5,"32156":2,"32157":5,"32158":1,"32159":9,"32160":8,"32161":5,"32162":10,"32163":7,"32164":9,"32165":7,"32166":9,"32167":8,"32168":5,"32169":4,"32170":7,"32171":8,"32172":9,"32173":8,"32174":7,"32175":8,"32176":9,"32177":5,"32178":7,"32179":10,"32180":8,"32181":2,"32182":8,"32183":7,"32184":2,"32185":4,"32186":7,"32187":7,"32188":2,"32189":7,"32190":2,"32191":2,"32192":8,"32193":8,"32194":7,"32195":10,"32196":8,"32197":9,"32198":8,"32199":5,"32200":8,"32201":6,"32202":8,"32203":9,"32204":9,"32205":9,"32206":2,"32207":9,"32208":8,"32209":2,"32210":7,"32211":8,"32212":10,"32213":7,"32214":8,"32215":9,"32216":8,"32217":9,"32218":8,"32219":2,"32220":7,"32221":8,"32222":7,"32223":7,"32224":5,"32225":6,"32226":2,"32227":9,"32228":8,"32229":8,"32230":2,"32231":3,"32232":8,"32233":8,"32234":7,"32235":2,"32236":2,"32237":5,"32238":7,"32239":10,"32240":9,"32241":8,"32242":3,"32243":8,"32244":7,"32245":9,"32246":3,"32247":8,"32248":10,"32249":9,"32250":5,"32251":7,"32252":9,"32253":8,"32254":8,"32255":2,"32256":7,"32257":7,"32258":7,"32259":7,"32260":8,"32261":3,"32262":1,"32263":3,"32264":10,"32265":9,"32266":10,"32267":9,"32268":8,"32269":3,"32270":5,"32271":3,"32272":1,"32273":8,"32274":10,"32275":1,"32276":5,"32277":2,"32278":2,"32279":7,"32280":3,"32281":3,"32282":5,"32283":5,"32284":5,"32285":8,"32286":6,"32287":8,"32288":2,"32289":5,"32290":7,"32291":9,"32292":3,"32293":1,"32294":2,"32295":8,"32296":8,"32297":5,"32298":5,"32299":6,"32300":9,"32301":5,"32302":7,"32303":9,"32304":9,"32305":2,"32306":8,"32307":6,"32308":6,"32309":9,"32310":7,"32311":8,"32312":8,"32313":7,"32314":5,"32315":9,"32316":6,"32317":8,"32318":5,"32319":6,"32320":5,"32321":9,"32322":2,"32323":8,"32324":7,"32325":4,"32326":7,"32327":2,"32328":8,"32329":7,"32330":7,"32331":8,"32332":8,"32333":9,"32334":5,"32335":9,"32336":8,"32337":2,"32338":4,"32339":7,"32340":5,"32341":6,"32342":9,"32343":7,"32344":9,"32345":8,"32346":6,"32347":9,"32348":8,"32349":7,"32350":5,"32351":9,"32352":2,"32353":9,"32354":2,"32355":8,"32356":3,"32357":9,"32358":7,"32359":10,"32360":2,"32361":7,"32362":9,"32363":2,"32364":1,"32365":1,"32366":2,"32367":6,"32368":8,"32369":8,"32370":8,"32371":9,"32372":8,"32373":7,"32374":9,"32375":8,"32376":3,"32377":6,"32378":7,"32379":7,"32380":5,"32381":5,"32382":7,"32383":4,"32384":10,"32385":9,"32386":8,"32387":3,"32388":10,"32389":10,"32390":7,"32391":1,"32392":2,"32393":10,"32394":3,"32395":5,"32396":4,"32397":5,"32398":5,"32399":7,"32400":8,"32401":7,"32402":8,"32403":8,"32404":8,"32405":3,"32406":5,"32407":10,"32408":6,"32409":3,"32410":7,"32411":7,"32412":9,"32413":2,"32414":9,"32415":7,"32416":3,"32417":7,"32418":9,"32419":8,"32420":9,"32421":8,"32422":10,"32423":1,"32424":9,"32425":8,"32426":8,"32427":5,"32428":7,"32429":3,"32430":5,"32431":8,"32432":6,"32433":7,"32434":8,"32435":5,"32436":3,"32437":9,"32438":8,"32439":4,"32440":9,"32441":2,"32442":6,"32443":9,"32444":10,"32445":5,"32446":7,"32447":7,"32448":8,"32449":9,"32450":2,"32451":7,"32452":2,"32453":9,"32454":5,"32455":7,"32456":10,"32457":7,"32458":8,"32459":2,"32460":9,"32461":9,"32462":5,"32463":6,"32464":7,"32465":9,"32466":8,"32467":7,"32468":5,"32469":7,"32470":10,"32471":2,"32472":7,"32473":10,"32474":5,"32475":3,"32476":4,"32477":8,"32478":7,"32479":8,"32480":7,"32481":8,"32482":7,"32483":8,"32484":2,"32485":7,"32486":4,"32487":9,"32488":3,"32489":10,"32490":8,"32491":5,"32492":5,"32493":7,"32494":10,"32495":7,"32496":8,"32497":7,"32498":5,"32499":10,"32500":4,"32501":7,"32502":7,"32503":8,"32504":3,"32505":5,"32506":3,"32507":3,"32508":8,"32509":8,"32510":9,"32511":5,"32512":9,"32513":9,"32514":10,"32515":5,"32516":8,"32517":9,"32518":2,"32519":8,"32520":8,"32521":9,"32522":2,"32523":6,"32524":9,"32525":9,"32526":3,"32527":9,"32528":3,"32529":7,"32530":8,"32531":10,"32532":3,"32533":3,"32534":8,"32535":5,"32536":9,"32537":7,"32538":2,"32539":9,"32540":2,"32541":9,"32542":7,"32543":7,"32544":8,"32545":9,"32546":8,"32547":7,"32548":2,"32549":10,"32550":8,"32551":3,"32552":7,"32553":10,"32554":8,"32555":9,"32556":7,"32557":9,"32558":2,"32559":8,"32560":8,"32561":8,"32562":7,"32563":8,"32564":8,"32565":10,"32566":7,"32567":3,"32568":7,"32569":8,"32570":7,"32571":7,"32572":7,"32573":9,"32574":5,"32575":7,"32576":1,"32577":1,"32578":2,"32579":2,"32580":4,"32581":8,"32582":2,"32583":7,"32584":3,"32585":9,"32586":1,"32587":2,"32588":6,"32589":2,"32590":9,"32591":9,"32592":5,"32593":8,"32594":2,"32595":7,"32596":5,"32597":8,"32598":6,"32599":5,"32600":2,"32601":2,"32602":3,"32603":8,"32604":6,"32605":9,"32606":3,"32607":1,"32608":8,"32609":2,"32610":8,"32611":9,"32612":10,"32613":8,"32614":9,"32615":5,"32616":9,"32617":7,"32618":10,"32619":2,"32620":8,"32621":9,"32622":5,"32623":8,"32624":7,"32625":8,"32626":5,"32627":2,"32628":8,"32629":5,"32630":8,"32631":3,"32632":8,"32633":9,"32634":7,"32635":8,"32636":7,"32637":1,"32638":9,"32639":2,"32640":5,"32641":8,"32642":6,"32643":6,"32644":5,"32645":7,"32646":7,"32647":9,"32648":9,"32649":7,"32650":4,"32651":6,"32652":7,"32653":5,"32654":9,"32655":8,"32656":9,"32657":7,"32658":7,"32659":8,"32660":7,"32661":8,"32662":7,"32663":1,"32664":8,"32665":7,"32666":8,"32667":4,"32668":2,"32669":2,"32670":9,"32671":3,"32672":4,"32673":4,"32674":1,"32675":5,"32676":2,"32677":4,"32678":1,"32679":3,"32680":8,"32681":5,"32682":2,"32683":8,"32684":1,"32685":5,"32686":9,"32687":2,"32688":5,"32689":8,"32690":2,"32691":5,"32692":7,"32693":8,"32694":2,"32695":2,"32696":8,"32697":8,"32698":4,"32699":8,"32700":4,"32701":8,"32702":8,"32703":7,"32704":9,"32705":10,"32706":9,"32707":7,"32708":10,"32709":4,"32710":2,"32711":2,"32712":4,"32713":2,"32714":9,"32715":2,"32716":7,"32717":9,"32718":8,"32719":7,"32720":5,"32721":7,"32722":9,"32723":3,"32724":7,"32725":7,"32726":7,"32727":6,"32728":9,"32729":7,"32730":2,"32731":7,"32732":3,"32733":3,"32734":1,"32735":9,"32736":5,"32737":2,"32738":1,"32739":6,"32740":8,"32741":8,"32742":4,"32743":5,"32744":6,"32745":7,"32746":8,"32747":8,"32748":5,"32749":5,"32750":8,"32751":2,"32752":7,"32753":2,"32754":4,"32755":6,"32756":9,"32757":1,"32758":5,"32759":9,"32760":7,"32761":7,"32762":10,"32763":9,"32764":5,"32765":9,"32766":7,"32767":1,"32768":4,"32769":8,"32770":8,"32771":2,"32772":9,"32773":3,"32774":8,"32775":3,"32776":7,"32777":10,"32778":7,"32779":9,"32780":6,"32781":7,"32782":8,"32783":7,"32784":8,"32785":9,"32786":2,"32787":8,"32788":8,"32789":2,"32790":8,"32791":8,"32792":3,"32793":2,"32794":7,"32795":7,"32796":7,"32797":8,"32798":7,"32799":5,"32800":2,"32801":5,"32802":3,"32803":7,"32804":9,"32805":4,"32806":6,"32807":8,"32808":2,"32809":7,"32810":5,"32811":1,"32812":8,"32813":10,"32814":7,"32815":9,"32816":7,"32817":7,"32818":7,"32819":6,"32820":5,"32821":1,"32822":2,"32823":4,"32824":5,"32825":1,"32826":9,"32827":8,"32828":2,"32829":8,"32830":7,"32831":7,"32832":8,"32833":7,"32834":9,"32835":4,"32836":8,"32837":8,"32838":9,"32839":5,"32840":7,"32841":8,"32842":9,"32843":7,"32844":2,"32845":2,"32846":9,"32847":4,"32848":3,"32849":9,"32850":5,"32851":2,"32852":5,"32853":2,"32854":7,"32855":6,"32856":5,"32857":5,"32858":1,"32859":8,"32860":8,"32861":8,"32862":6,"32863":5,"32864":9,"32865":2,"32866":8,"32867":4,"32868":4,"32869":6,"32870":8,"32871":5,"32872":5,"32873":5,"32874":5,"32875":5,"32876":3,"32877":5,"32878":2,"32879":7,"32880":2,"32881":2,"32882":4,"32883":8,"32884":2,"32885":8,"32886":5,"32887":8,"32888":8,"32889":1,"32890":9,"32891":7,"32892":8,"32893":9,"32894":7,"32895":2,"32896":7,"32897":8,"32898":7,"32899":7,"32900":2,"32901":2,"32902":10,"32903":3,"32904":9,"32905":1,"32906":2,"32907":9,"32908":9,"32909":8,"32910":1,"32911":2,"32912":8,"32913":8,"32914":9,"32915":10,"32916":7,"32917":2,"32918":5,"32919":10,"32920":5,"32921":10,"32922":8,"32923":4,"32924":7,"32925":7,"32926":9,"32927":7,"32928":7,"32929":1,"32930":4,"32931":7,"32932":7,"32933":7,"32934":9,"32935":5,"32936":6,"32937":7,"32938":2,"32939":6,"32940":5,"32941":9,"32942":6,"32943":5,"32944":7,"32945":9,"32946":8,"32947":8,"32948":10,"32949":9,"32950":4,"32951":5,"32952":3,"32953":7,"32954":6,"32955":7,"32956":6,"32957":10,"32958":3,"32959":2,"32960":9,"32961":7,"32962":7,"32963":8,"32964":6,"32965":8,"32966":1,"32967":8,"32968":2,"32969":1,"32970":7,"32971":7,"32972":9,"32973":3,"32974":7,"32975":7,"32976":9,"32977":8,"32978":6,"32979":6,"32980":8,"32981":7,"32982":1,"32983":2,"32984":5,"32985":7,"32986":9,"32987":7,"32988":8,"32989":4,"32990":6,"32991":10,"32992":10,"32993":5,"32994":9,"32995":5,"32996":8,"32997":7,"32998":5,"32999":2,"33000":7,"33001":5,"33002":2,"33003":10,"33004":7,"33005":9,"33006":5,"33007":5,"33008":7,"33009":7,"33010":9,"33011":2,"33012":10,"33013":4,"33014":7,"33015":8,"33016":2,"33017":5,"33018":4,"33019":8,"33020":10,"33021":7,"33022":8,"33023":2,"33024":7,"33025":9,"33026":3,"33027":8,"33028":6,"33029":2,"33030":9,"33031":1,"33032":6,"33033":8,"33034":5,"33035":9,"33036":6,"33037":7,"33038":8,"33039":2,"33040":1,"33041":7,"33042":2,"33043":4,"33044":3,"33045":9,"33046":8,"33047":8,"33048":7,"33049":5,"33050":8,"33051":2,"33052":8,"33053":2,"33054":8,"33055":9,"33056":4,"33057":8,"33058":4,"33059":9,"33060":7,"33061":7,"33062":8,"33063":10,"33064":5,"33065":2,"33066":9,"33067":7,"33068":6,"33069":1,"33070":7,"33071":9,"33072":2,"33073":7,"33074":9,"33075":8,"33076":8,"33077":8,"33078":9,"33079":9,"33080":7,"33081":8,"33082":7,"33083":9,"33084":8,"33085":8,"33086":7,"33087":2,"33088":7,"33089":6,"33090":3,"33091":5,"33092":3,"33093":9,"33094":8,"33095":3,"33096":7,"33097":8,"33098":8,"33099":7,"33100":8,"33101":5,"33102":5,"33103":4,"33104":9,"33105":4,"33106":7,"33107":7,"33108":5,"33109":3,"33110":8,"33111":1,"33112":6,"33113":7,"33114":9,"33115":6,"33116":5,"33117":3,"33118":8,"33119":7,"33120":9,"33121":3,"33122":5,"33123":8,"33124":7,"33125":6,"33126":8,"33127":7,"33128":9,"33129":9,"33130":6,"33131":7,"33132":4,"33133":7,"33134":8,"33135":2,"33136":9,"33137":10,"33138":1,"33139":4,"33140":10,"33141":7,"33142":2,"33143":8,"33144":9,"33145":7,"33146":8,"33147":8,"33148":2,"33149":6,"33150":8,"33151":1,"33152":8,"33153":1,"33154":8,"33155":9,"33156":1,"33157":6,"33158":2,"33159":4,"33160":1,"33161":7,"33162":9,"33163":2,"33164":5,"33165":4,"33166":2,"33167":1,"33168":2,"33169":2,"33170":2,"33171":6,"33172":7,"33173":5,"33174":9,"33175":8,"33176":7,"33177":7,"33178":8,"33179":5,"33180":7,"33181":7,"33182":7,"33183":8,"33184":9,"33185":8,"33186":7,"33187":1,"33188":3,"33189":5,"33190":7,"33191":7,"33192":7,"33193":7,"33194":5,"33195":3,"33196":5,"33197":9,"33198":8,"33199":7,"33200":1,"33201":8,"33202":9,"33203":10,"33204":5,"33205":2,"33206":5,"33207":8,"33208":8,"33209":1,"33210":7,"33211":7,"33212":8,"33213":8,"33214":2,"33215":8,"33216":7,"33217":10,"33218":7,"33219":9,"33220":2,"33221":9,"33222":7,"33223":2,"33224":7,"33225":7,"33226":5,"33227":9,"33228":2,"33229":10,"33230":3,"33231":1,"33232":5,"33233":2,"33234":5,"33235":9,"33236":8,"33237":8,"33238":8,"33239":3,"33240":9,"33241":1,"33242":4,"33243":9,"33244":9,"33245":8,"33246":6,"33247":2,"33248":8,"33249":3,"33250":2,"33251":1,"33252":2,"33253":8,"33254":7,"33255":8,"33256":6,"33257":2,"33258":2,"33259":4,"33260":9,"33261":2,"33262":9,"33263":7,"33264":8,"33265":7,"33266":5,"33267":6,"33268":8,"33269":10,"33270":7,"33271":5,"33272":10,"33273":9,"33274":9,"33275":1,"33276":6,"33277":7,"33278":8,"33279":8,"33280":10,"33281":5,"33282":7,"33283":3,"33284":2,"33285":6,"33286":9,"33287":2,"33288":8,"33289":7,"33290":7,"33291":7,"33292":9,"33293":8,"33294":1,"33295":4,"33296":8,"33297":9,"33298":7,"33299":7,"33300":7,"33301":5,"33302":2,"33303":8,"33304":2,"33305":10,"33306":1,"33307":7,"33308":7,"33309":9,"33310":6,"33311":1,"33312":8,"33313":9,"33314":9,"33315":7,"33316":7,"33317":10,"33318":3,"33319":7,"33320":8,"33321":2,"33322":7,"33323":10,"33324":3,"33325":6,"33326":8,"33327":2,"33328":7,"33329":7,"33330":6,"33331":3,"33332":7,"33333":7,"33334":8,"33335":8,"33336":2,"33337":7,"33338":8,"33339":2,"33340":2,"33341":2,"33342":3,"33343":6,"33344":5,"33345":2,"33346":1,"33347":8,"33348":9,"33349":9,"33350":8,"33351":7,"33352":9,"33353":3,"33354":7,"33355":10,"33356":9,"33357":4,"33358":9,"33359":4,"33360":5,"33361":9,"33362":8,"33363":1,"33364":8,"33365":1,"33366":2,"33367":5,"33368":7,"33369":8,"33370":2,"33371":3,"33372":2,"33373":5,"33374":7,"33375":5,"33376":7,"33377":5,"33378":8,"33379":9,"33380":3,"33381":9,"33382":10,"33383":7,"33384":7,"33385":1,"33386":5,"33387":9,"33388":8,"33389":1,"33390":8,"33391":2,"33392":9,"33393":1,"33394":2,"33395":7,"33396":8,"33397":6,"33398":2,"33399":8,"33400":9,"33401":8,"33402":2,"33403":1,"33404":2,"33405":8,"33406":1,"33407":7,"33408":9,"33409":7,"33410":1,"33411":8,"33412":8,"33413":7,"33414":7,"33415":9,"33416":7,"33417":9,"33418":7,"33419":9,"33420":8,"33421":2,"33422":9,"33423":2,"33424":10,"33425":8,"33426":9,"33427":2,"33428":9,"33429":5,"33430":3,"33431":5,"33432":7,"33433":8,"33434":9,"33435":8,"33436":5,"33437":4,"33438":5,"33439":9,"33440":7,"33441":6,"33442":2,"33443":7,"33444":9,"33445":9,"33446":5,"33447":2,"33448":9,"33449":9,"33450":9,"33451":9,"33452":6,"33453":2,"33454":4,"33455":3,"33456":8,"33457":2,"33458":10,"33459":9,"33460":2,"33461":5,"33462":8,"33463":5,"33464":7,"33465":8,"33466":6,"33467":8,"33468":7,"33469":5,"33470":2,"33471":7,"33472":9,"33473":8,"33474":8,"33475":9,"33476":10,"33477":5,"33478":6,"33479":6,"33480":8,"33481":9,"33482":6,"33483":7,"33484":7,"33485":5,"33486":10,"33487":7,"33488":8,"33489":2,"33490":9,"33491":3,"33492":2,"33493":8,"33494":10,"33495":7,"33496":8,"33497":7,"33498":3,"33499":8,"33500":3,"33501":3,"33502":6,"33503":5,"33504":5,"33505":7,"33506":9,"33507":10,"33508":8,"33509":9,"33510":6,"33511":8,"33512":4,"33513":5,"33514":4,"33515":6,"33516":9,"33517":7,"33518":8,"33519":9,"33520":9,"33521":8,"33522":2,"33523":4,"33524":8,"33525":8,"33526":6,"33527":5,"33528":7,"33529":3,"33530":8,"33531":2,"33532":8,"33533":6,"33534":9,"33535":8,"33536":4,"33537":7,"33538":3,"33539":7,"33540":5,"33541":8,"33542":7,"33543":10,"33544":2,"33545":1,"33546":9,"33547":7,"33548":4,"33549":1,"33550":8,"33551":8,"33552":10,"33553":10,"33554":4,"33555":9,"33556":8,"33557":7,"33558":7,"33559":2,"33560":1,"33561":7,"33562":8,"33563":9,"33564":8,"33565":9,"33566":2,"33567":9,"33568":8,"33569":10,"33570":7,"33571":3,"33572":7,"33573":8,"33574":9,"33575":8,"33576":2,"33577":4,"33578":5,"33579":9,"33580":7,"33581":7,"33582":9,"33583":8,"33584":7,"33585":7,"33586":3,"33587":9,"33588":10,"33589":8,"33590":5,"33591":7,"33592":10,"33593":5,"33594":9,"33595":8,"33596":7,"33597":8,"33598":4,"33599":8,"33600":4,"33601":7,"33602":7,"33603":7,"33604":6,"33605":6,"33606":7,"33607":5,"33608":8,"33609":10,"33610":7,"33611":10,"33612":9,"33613":7,"33614":5,"33615":7,"33616":10,"33617":1,"33618":10,"33619":8,"33620":9,"33621":4,"33622":5,"33623":9,"33624":5,"33625":9,"33626":2,"33627":7,"33628":3,"33629":8,"33630":9,"33631":8,"33632":8,"33633":8,"33634":7,"33635":4,"33636":7,"33637":4,"33638":5,"33639":5,"33640":10,"33641":7,"33642":5,"33643":8,"33644":8,"33645":10,"33646":9,"33647":8,"33648":6,"33649":6,"33650":8,"33651":6,"33652":1,"33653":8,"33654":2,"33655":10,"33656":9,"33657":8,"33658":7,"33659":4,"33660":10,"33661":7,"33662":2,"33663":9,"33664":7,"33665":9,"33666":7,"33667":9,"33668":7,"33669":8,"33670":9,"33671":6,"33672":7,"33673":8,"33674":2,"33675":6,"33676":1,"33677":8,"33678":3,"33679":5,"33680":3,"33681":7,"33682":7,"33683":7,"33684":5,"33685":7,"33686":8,"33687":6,"33688":5,"33689":5,"33690":7,"33691":7,"33692":6,"33693":9,"33694":7,"33695":2,"33696":2,"33697":9,"33698":4,"33699":1,"33700":2,"33701":3,"33702":7,"33703":8,"33704":8,"33705":8,"33706":3,"33707":3,"33708":8,"33709":7,"33710":8,"33711":8,"33712":7,"33713":9,"33714":7,"33715":4,"33716":3,"33717":5,"33718":8,"33719":1,"33720":8,"33721":7,"33722":3,"33723":8,"33724":2,"33725":7,"33726":8,"33727":1,"33728":9,"33729":3,"33730":7,"33731":8,"33732":8,"33733":7,"33734":2,"33735":8,"33736":9,"33737":3,"33738":7,"33739":9,"33740":2,"33741":8,"33742":9,"33743":8,"33744":5,"33745":5,"33746":8,"33747":9,"33748":3,"33749":8,"33750":8,"33751":2,"33752":8,"33753":8,"33754":9,"33755":7,"33756":7,"33757":8,"33758":9,"33759":7,"33760":2,"33761":4,"33762":3,"33763":1,"33764":2,"33765":6,"33766":9,"33767":8,"33768":2,"33769":8,"33770":8,"33771":7,"33772":5,"33773":8,"33774":8,"33775":3,"33776":7,"33777":9,"33778":9,"33779":10,"33780":2,"33781":2,"33782":10,"33783":8,"33784":7,"33785":10,"33786":5,"33787":9,"33788":5,"33789":4,"33790":8,"33791":7,"33792":2,"33793":9,"33794":8,"33795":7,"33796":7,"33797":9,"33798":8,"33799":4,"33800":9,"33801":8,"33802":5,"33803":9,"33804":10,"33805":7,"33806":9,"33807":8,"33808":7,"33809":7,"33810":9,"33811":9,"33812":7,"33813":7,"33814":8,"33815":8,"33816":8,"33817":10,"33818":9,"33819":7,"33820":9,"33821":6,"33822":7,"33823":9,"33824":7,"33825":8,"33826":5,"33827":9,"33828":8,"33829":5,"33830":9,"33831":9,"33832":9,"33833":8,"33834":8,"33835":7,"33836":7,"33837":4,"33838":5,"33839":7,"33840":7,"33841":7,"33842":8,"33843":6,"33844":7,"33845":4,"33846":7,"33847":3,"33848":9,"33849":6,"33850":7,"33851":7,"33852":2,"33853":3,"33854":8,"33855":6,"33856":7,"33857":7,"33858":7,"33859":7,"33860":7,"33861":8,"33862":8,"33863":2,"33864":8,"33865":7,"33866":4,"33867":4,"33868":2,"33869":9,"33870":7,"33871":8,"33872":8,"33873":9,"33874":7,"33875":7,"33876":9,"33877":5,"33878":2,"33879":9,"33880":1,"33881":7,"33882":8,"33883":4,"33884":8,"33885":2,"33886":9,"33887":3,"33888":6,"33889":7,"33890":2,"33891":7,"33892":9,"33893":5,"33894":7,"33895":5,"33896":7,"33897":9,"33898":7,"33899":3,"33900":4,"33901":7,"33902":1,"33903":5,"33904":4,"33905":2,"33906":5,"33907":9,"33908":8,"33909":7,"33910":5,"33911":9,"33912":1,"33913":5,"33914":7,"33915":8,"33916":8,"33917":8,"33918":4,"33919":8,"33920":7,"33921":8,"33922":7,"33923":7,"33924":1,"33925":10,"33926":10,"33927":7,"33928":8,"33929":6,"33930":7,"33931":5,"33932":8,"33933":6,"33934":8,"33935":7,"33936":8,"33937":7,"33938":5,"33939":7,"33940":8,"33941":7,"33942":8,"33943":4,"33944":9,"33945":9,"33946":7,"33947":9,"33948":5,"33949":8,"33950":8,"33951":7,"33952":7,"33953":6,"33954":8,"33955":4,"33956":7,"33957":5,"33958":1,"33959":7,"33960":8,"33961":7,"33962":5,"33963":6,"33964":5,"33965":2,"33966":8,"33967":4,"33968":9,"33969":7,"33970":2,"33971":2,"33972":7,"33973":5,"33974":4,"33975":8,"33976":7,"33977":8,"33978":10,"33979":10,"33980":9,"33981":8,"33982":3,"33983":6,"33984":2,"33985":4,"33986":3,"33987":5,"33988":3,"33989":2,"33990":7,"33991":1,"33992":5,"33993":9,"33994":7,"33995":7,"33996":8,"33997":7,"33998":10,"33999":5,"34000":7,"34001":3,"34002":8,"34003":5,"34004":4,"34005":9,"34006":9,"34007":9,"34008":6,"34009":8,"34010":7,"34011":5,"34012":5,"34013":1,"34014":4,"34015":8,"34016":6,"34017":2,"34018":1,"34019":9,"34020":2,"34021":2,"34022":1,"34023":8,"34024":5,"34025":6,"34026":6,"34027":9,"34028":7,"34029":8,"34030":8,"34031":1,"34032":7,"34033":9,"34034":2,"34035":9,"34036":5,"34037":5,"34038":6,"34039":10,"34040":7,"34041":8,"34042":9,"34043":8,"34044":1,"34045":5,"34046":8,"34047":8,"34048":8,"34049":6,"34050":9,"34051":5,"34052":1,"34053":1,"34054":9,"34055":2,"34056":4,"34057":8,"34058":5,"34059":7,"34060":4,"34061":5,"34062":2,"34063":3,"34064":7,"34065":10,"34066":7,"34067":1,"34068":5,"34069":10,"34070":5,"34071":5,"34072":7,"34073":8,"34074":2,"34075":6,"34076":7,"34077":7,"34078":9,"34079":2,"34080":1,"34081":4,"34082":2,"34083":5,"34084":7,"34085":9,"34086":9,"34087":8,"34088":10,"34089":7,"34090":9,"34091":9,"34092":8,"34093":10,"34094":5,"34095":7,"34096":9,"34097":2,"34098":7,"34099":1,"34100":4,"34101":2,"34102":10,"34103":8,"34104":7,"34105":7,"34106":4,"34107":4,"34108":8,"34109":2,"34110":1,"34111":2,"34112":7,"34113":8,"34114":2,"34115":1,"34116":1,"34117":9,"34118":10,"34119":8,"34120":5,"34121":8,"34122":9,"34123":5,"34124":9,"34125":2,"34126":9,"34127":7,"34128":8,"34129":9,"34130":3,"34131":8,"34132":9,"34133":8,"34134":7,"34135":6,"34136":5,"34137":2,"34138":6,"34139":9,"34140":5,"34141":4,"34142":8,"34143":5,"34144":7,"34145":10,"34146":8,"34147":2,"34148":7,"34149":3,"34150":7,"34151":2,"34152":5,"34153":9,"34154":8,"34155":8,"34156":5,"34157":4,"34158":2,"34159":5,"34160":9,"34161":5,"34162":9,"34163":9,"34164":2,"34165":7,"34166":7,"34167":10,"34168":8,"34169":7,"34170":5,"34171":7,"34172":1,"34173":3,"34174":3,"34175":7,"34176":1,"34177":7,"34178":10,"34179":1,"34180":8,"34181":2,"34182":2,"34183":1,"34184":7,"34185":7,"34186":8,"34187":8,"34188":7,"34189":2,"34190":8,"34191":9,"34192":8,"34193":9,"34194":4,"34195":2,"34196":9,"34197":7,"34198":10,"34199":10,"34200":8,"34201":5,"34202":10,"34203":9,"34204":5,"34205":7,"34206":3,"34207":7,"34208":2,"34209":9,"34210":9,"34211":7,"34212":9,"34213":9,"34214":9,"34215":2,"34216":1,"34217":8,"34218":9,"34219":10,"34220":8,"34221":9,"34222":8,"34223":7,"34224":2,"34225":5,"34226":5,"34227":7,"34228":9,"34229":8,"34230":8,"34231":7,"34232":8,"34233":7,"34234":6,"34235":5,"34236":1,"34237":2,"34238":9,"34239":7,"34240":7,"34241":7,"34242":9,"34243":7,"34244":2,"34245":9,"34246":7,"34247":4,"34248":7,"34249":9,"34250":7,"34251":2,"34252":2,"34253":5,"34254":3,"34255":2,"34256":1,"34257":3,"34258":7,"34259":9,"34260":2,"34261":5,"34262":2,"34263":2,"34264":7,"34265":5,"34266":5,"34267":2,"34268":9,"34269":7,"34270":5,"34271":2,"34272":9,"34273":9,"34274":5,"34275":8,"34276":2,"34277":8,"34278":8,"34279":7,"34280":9,"34281":8,"34282":5,"34283":6,"34284":5,"34285":5,"34286":4,"34287":1,"34288":7,"34289":8,"34290":3,"34291":8,"34292":2,"34293":2,"34294":7,"34295":5,"34296":7,"34297":7,"34298":6,"34299":3,"34300":7,"34301":5,"34302":6,"34303":9,"34304":7,"34305":8,"34306":6,"34307":6,"34308":9,"34309":6,"34310":7,"34311":8,"34312":3,"34313":7,"34314":7,"34315":3,"34316":2,"34317":9,"34318":7,"34319":4,"34320":5,"34321":8,"34322":7,"34323":8,"34324":1,"34325":8,"34326":5,"34327":8,"34328":8,"34329":1,"34330":7,"34331":3,"34332":2,"34333":5,"34334":8,"34335":9,"34336":5,"34337":7,"34338":4,"34339":1,"34340":2,"34341":5,"34342":7,"34343":7,"34344":8,"34345":7,"34346":5,"34347":7,"34348":2,"34349":4,"34350":3,"34351":5,"34352":9,"34353":8,"34354":7,"34355":4,"34356":2,"34357":1,"34358":7,"34359":5,"34360":2,"34361":7,"34362":5,"34363":2,"34364":8,"34365":8,"34366":7,"34367":3,"34368":7,"34369":8,"34370":9,"34371":7,"34372":2,"34373":2,"34374":1,"34375":9,"34376":9,"34377":7,"34378":7,"34379":4,"34380":2,"34381":6,"34382":7,"34383":5,"34384":7,"34385":4,"34386":3,"34387":4,"34388":3,"34389":9,"34390":4,"34391":1,"34392":8,"34393":10,"34394":6,"34395":4,"34396":10,"34397":1,"34398":9,"34399":5,"34400":7,"34401":5,"34402":9,"34403":6,"34404":2,"34405":3,"34406":7,"34407":7,"34408":7,"34409":8,"34410":9,"34411":5,"34412":8,"34413":7,"34414":8,"34415":10,"34416":5,"34417":5,"34418":7,"34419":2,"34420":5,"34421":7,"34422":8,"34423":9,"34424":9,"34425":7,"34426":8,"34427":6,"34428":8,"34429":7,"34430":7,"34431":7,"34432":5,"34433":6,"34434":7,"34435":7,"34436":8,"34437":9,"34438":5,"34439":2,"34440":7,"34441":9,"34442":8,"34443":2,"34444":2,"34445":7,"34446":6,"34447":5,"34448":7,"34449":8,"34450":8,"34451":7,"34452":8,"34453":7,"34454":9,"34455":9,"34456":5,"34457":9,"34458":8,"34459":6,"34460":5,"34461":7,"34462":4,"34463":10,"34464":4,"34465":7,"34466":1,"34467":8,"34468":8,"34469":9,"34470":7,"34471":8,"34472":2,"34473":7,"34474":7,"34475":5,"34476":1,"34477":8,"34478":6,"34479":10,"34480":9,"34481":7,"34482":7,"34483":3,"34484":9,"34485":1,"34486":4,"34487":7,"34488":9,"34489":8,"34490":1,"34491":4,"34492":9,"34493":7,"34494":2,"34495":5,"34496":5,"34497":7,"34498":10,"34499":10,"34500":10,"34501":9,"34502":8,"34503":8,"34504":9,"34505":1,"34506":8,"34507":8,"34508":8,"34509":9,"34510":7,"34511":3,"34512":3,"34513":2,"34514":5,"34515":5,"34516":8,"34517":10,"34518":2,"34519":2,"34520":5,"34521":1,"34522":7,"34523":7,"34524":8,"34525":8,"34526":7,"34527":9,"34528":7,"34529":5,"34530":2,"34531":2,"34532":2,"34533":7,"34534":7,"34535":9,"34536":7,"34537":5,"34538":4,"34539":10,"34540":5,"34541":9,"34542":10,"34543":2,"34544":8,"34545":7,"34546":1,"34547":8,"34548":9,"34549":4,"34550":5,"34551":9,"34552":2,"34553":8,"34554":7,"34555":10,"34556":7,"34557":3,"34558":2,"34559":7,"34560":3,"34561":3,"34562":9,"34563":2,"34564":6,"34565":8,"34566":7,"34567":3,"34568":7,"34569":2,"34570":8,"34571":7,"34572":8,"34573":8,"34574":7,"34575":9,"34576":3,"34577":4,"34578":1,"34579":7,"34580":7,"34581":3,"34582":9,"34583":2,"34584":9,"34585":6,"34586":5,"34587":8,"34588":5,"34589":2,"34590":2,"34591":5,"34592":7,"34593":8,"34594":7,"34595":7,"34596":3,"34597":4,"34598":1,"34599":4,"34600":2,"34601":1,"34602":10,"34603":9,"34604":7,"34605":8,"34606":5,"34607":8,"34608":8,"34609":7,"34610":8,"34611":5,"34612":9,"34613":9,"34614":4,"34615":3,"34616":2,"34617":10,"34618":6,"34619":5,"34620":9,"34621":8,"34622":5,"34623":8,"34624":5,"34625":5,"34626":1,"34627":9,"34628":7,"34629":9,"34630":9,"34631":1,"34632":7,"34633":5,"34634":8,"34635":9,"34636":7,"34637":3,"34638":7,"34639":2,"34640":3,"34641":9,"34642":5,"34643":1,"34644":5,"34645":8,"34646":8,"34647":7,"34648":4,"34649":7,"34650":8,"34651":6,"34652":6,"34653":8,"34654":8,"34655":2,"34656":7,"34657":9,"34658":2,"34659":9,"34660":8,"34661":8,"34662":8,"34663":10,"34664":8,"34665":10,"34666":8,"34667":6,"34668":4,"34669":7,"34670":5,"34671":4,"34672":2,"34673":2,"34674":10,"34675":9,"34676":7,"34677":4,"34678":9,"34679":5,"34680":6,"34681":9,"34682":8,"34683":8,"34684":8,"34685":3,"34686":4,"34687":7,"34688":7,"34689":8,"34690":9,"34691":1,"34692":4,"34693":7,"34694":8,"34695":2,"34696":6,"34697":5,"34698":5,"34699":7,"34700":6,"34701":7,"34702":10,"34703":7,"34704":7,"34705":8,"34706":4,"34707":7,"34708":9,"34709":7,"34710":7,"34711":2,"34712":2,"34713":9,"34714":8,"34715":1,"34716":8,"34717":3,"34718":7,"34719":8,"34720":7,"34721":10,"34722":8,"34723":2,"34724":5,"34725":6,"34726":6,"34727":2,"34728":8,"34729":6,"34730":7,"34731":2,"34732":9,"34733":10,"34734":2,"34735":6,"34736":3,"34737":7,"34738":5,"34739":7,"34740":10,"34741":4,"34742":1,"34743":2,"34744":1,"34745":1,"34746":2,"34747":7,"34748":7,"34749":10,"34750":6,"34751":2,"34752":4,"34753":5,"34754":5,"34755":7,"34756":9,"34757":1,"34758":8,"34759":4,"34760":6,"34761":9,"34762":7,"34763":5,"34764":8,"34765":7,"34766":10,"34767":5,"34768":3,"34769":3,"34770":8,"34771":3,"34772":2,"34773":5,"34774":7,"34775":8,"34776":3,"34777":2,"34778":2,"34779":1,"34780":5,"34781":2,"34782":7,"34783":7,"34784":7,"34785":7,"34786":5,"34787":10,"34788":8,"34789":9,"34790":7,"34791":7,"34792":7,"34793":7,"34794":4,"34795":8,"34796":1,"34797":8,"34798":5,"34799":2,"34800":5,"34801":10,"34802":8,"34803":4,"34804":8,"34805":5,"34806":7,"34807":7,"34808":9,"34809":9,"34810":8,"34811":8,"34812":9,"34813":9,"34814":8,"34815":6,"34816":9,"34817":1,"34818":7,"34819":9,"34820":2,"34821":8,"34822":7,"34823":7,"34824":6,"34825":2,"34826":2,"34827":8,"34828":1,"34829":4,"34830":8,"34831":7,"34832":8,"34833":7,"34834":8,"34835":3,"34836":5,"34837":8,"34838":1,"34839":7,"34840":9,"34841":5,"34842":4,"34843":8,"34844":8,"34845":9,"34846":7,"34847":9,"34848":7,"34849":4,"34850":4,"34851":9,"34852":5,"34853":1,"34854":9,"34855":6,"34856":7,"34857":2,"34858":10,"34859":10,"34860":3,"34861":2,"34862":9,"34863":2,"34864":3,"34865":8,"34866":7,"34867":7,"34868":9,"34869":7,"34870":4,"34871":1,"34872":4,"34873":6,"34874":7,"34875":7,"34876":5,"34877":8,"34878":7,"34879":7,"34880":10,"34881":7,"34882":10,"34883":7,"34884":4,"34885":7,"34886":2,"34887":4,"34888":6,"34889":5,"34890":9,"34891":2,"34892":1,"34893":7,"34894":1,"34895":9,"34896":4,"34897":9,"34898":7,"34899":6,"34900":5,"34901":7,"34902":6,"34903":6,"34904":7,"34905":7,"34906":1,"34907":7,"34908":1,"34909":4,"34910":9,"34911":9,"34912":8,"34913":7,"34914":8,"34915":4,"34916":8,"34917":9,"34918":10,"34919":7,"34920":8,"34921":7,"34922":8,"34923":7,"34924":8,"34925":2,"34926":6,"34927":2,"34928":7,"34929":8,"34930":10,"34931":5,"34932":8,"34933":1,"34934":5,"34935":8,"34936":7,"34937":2,"34938":5,"34939":8,"34940":8,"34941":5,"34942":9,"34943":8,"34944":2,"34945":4,"34946":9,"34947":7,"34948":7,"34949":8,"34950":8,"34951":8,"34952":10,"34953":7,"34954":8,"34955":9,"34956":8,"34957":9,"34958":9,"34959":8,"34960":9,"34961":7,"34962":6,"34963":8,"34964":9,"34965":7,"34966":7,"34967":8,"34968":2,"34969":7,"34970":7,"34971":3,"34972":7,"34973":7,"34974":5,"34975":7,"34976":7,"34977":10,"34978":7,"34979":8,"34980":10,"34981":8,"34982":7,"34983":8,"34984":8,"34985":7,"34986":7,"34987":3,"34988":8,"34989":10,"34990":4,"34991":1,"34992":9,"34993":8,"34994":7,"34995":6,"34996":1,"34997":8,"34998":2,"34999":6,"35000":8,"35001":2,"35002":8,"35003":8,"35004":1,"35005":9,"35006":7,"35007":5,"35008":3,"35009":6,"35010":8,"35011":9,"35012":7,"35013":1,"35014":6,"35015":7,"35016":3,"35017":2,"35018":10,"35019":8,"35020":5,"35021":6,"35022":8,"35023":5,"35024":9,"35025":8,"35026":8,"35027":7,"35028":7,"35029":7,"35030":5,"35031":8,"35032":5,"35033":8,"35034":6,"35035":9,"35036":8,"35037":8,"35038":7,"35039":8,"35040":7,"35041":8,"35042":5,"35043":8,"35044":9,"35045":9,"35046":10,"35047":10,"35048":8,"35049":1,"35050":2,"35051":8,"35052":7,"35053":7,"35054":1,"35055":5,"35056":5,"35057":8,"35058":8,"35059":8,"35060":8,"35061":8,"35062":2,"35063":2,"35064":9,"35065":6,"35066":2,"35067":5,"35068":7,"35069":9,"35070":9,"35071":4,"35072":7,"35073":7,"35074":5,"35075":5,"35076":8,"35077":9,"35078":5,"35079":7,"35080":7,"35081":7,"35082":7,"35083":9,"35084":10,"35085":7,"35086":7,"35087":7,"35088":8,"35089":3,"35090":5,"35091":5,"35092":8,"35093":7,"35094":9,"35095":5,"35096":3,"35097":10,"35098":1,"35099":9,"35100":8,"35101":9,"35102":7,"35103":8,"35104":7,"35105":2,"35106":7,"35107":2,"35108":8,"35109":9,"35110":9,"35111":2,"35112":9,"35113":2,"35114":9,"35115":5,"35116":5,"35117":9,"35118":8,"35119":5,"35120":8,"35121":4,"35122":3,"35123":8,"35124":3,"35125":8,"35126":7,"35127":7,"35128":8,"35129":9,"35130":9,"35131":1,"35132":5,"35133":8,"35134":8,"35135":9,"35136":1,"35137":9,"35138":8,"35139":9,"35140":7,"35141":8,"35142":9,"35143":8,"35144":8,"35145":8,"35146":2,"35147":9,"35148":9,"35149":7,"35150":3,"35151":2,"35152":5,"35153":9,"35154":7,"35155":7,"35156":4,"35157":7,"35158":8,"35159":9,"35160":9,"35161":8,"35162":10,"35163":3,"35164":8,"35165":9,"35166":8,"35167":7,"35168":3,"35169":5,"35170":1,"35171":8,"35172":7,"35173":1,"35174":8,"35175":7,"35176":8,"35177":7,"35178":10,"35179":7,"35180":10,"35181":7,"35182":7,"35183":7,"35184":8,"35185":4,"35186":3,"35187":9,"35188":7,"35189":1,"35190":4,"35191":8,"35192":2,"35193":7,"35194":9,"35195":2,"35196":7,"35197":10,"35198":5,"35199":4,"35200":5,"35201":9,"35202":5,"35203":8,"35204":9,"35205":10,"35206":4,"35207":8,"35208":2,"35209":3,"35210":7,"35211":2,"35212":7,"35213":8,"35214":7,"35215":7,"35216":8,"35217":3,"35218":9,"35219":9,"35220":9,"35221":7,"35222":4,"35223":7,"35224":9,"35225":8,"35226":4,"35227":6,"35228":5,"35229":6,"35230":6,"35231":7,"35232":9,"35233":9,"35234":7,"35235":7,"35236":7,"35237":8,"35238":7,"35239":2,"35240":7,"35241":7,"35242":2,"35243":7,"35244":7,"35245":5,"35246":7,"35247":4,"35248":8,"35249":9,"35250":8,"35251":6,"35252":7,"35253":8,"35254":10,"35255":1,"35256":3,"35257":7,"35258":9,"35259":9,"35260":8,"35261":7,"35262":8,"35263":8,"35264":9,"35265":7,"35266":8,"35267":2,"35268":3,"35269":10,"35270":4,"35271":7,"35272":1,"35273":9,"35274":7,"35275":10,"35276":9,"35277":8,"35278":5,"35279":10,"35280":7,"35281":8,"35282":3,"35283":3,"35284":1,"35285":1,"35286":2,"35287":5,"35288":10,"35289":8,"35290":2,"35291":9,"35292":7,"35293":4,"35294":2,"35295":8,"35296":8,"35297":2,"35298":4,"35299":2,"35300":9,"35301":5,"35302":9,"35303":7,"35304":4,"35305":7,"35306":2,"35307":2,"35308":5,"35309":9,"35310":6,"35311":3,"35312":8,"35313":3,"35314":9,"35315":8,"35316":1,"35317":10,"35318":9,"35319":2,"35320":8,"35321":9,"35322":8,"35323":2,"35324":4,"35325":8,"35326":7,"35327":7,"35328":10,"35329":2,"35330":3,"35331":5,"35332":8,"35333":2,"35334":4,"35335":8,"35336":5,"35337":2,"35338":7,"35339":7,"35340":8,"35341":1,"35342":8,"35343":2,"35344":6,"35345":2,"35346":5,"35347":8,"35348":7,"35349":8,"35350":4,"35351":1,"35352":6,"35353":2,"35354":8,"35355":7,"35356":2,"35357":9,"35358":10,"35359":9,"35360":8,"35361":2,"35362":2,"35363":8,"35364":9,"35365":10,"35366":9,"35367":9,"35368":6,"35369":7,"35370":2,"35371":2,"35372":1,"35373":7,"35374":7,"35375":7,"35376":7,"35377":6,"35378":4,"35379":7,"35380":7,"35381":8,"35382":2,"35383":10,"35384":3,"35385":7,"35386":5,"35387":6,"35388":8,"35389":10,"35390":1,"35391":10,"35392":8,"35393":8,"35394":6,"35395":6,"35396":5,"35397":7,"35398":1,"35399":10,"35400":10,"35401":8,"35402":8,"35403":7,"35404":5,"35405":7,"35406":7,"35407":8,"35408":9,"35409":4,"35410":7,"35411":7,"35412":9,"35413":9,"35414":10,"35415":9,"35416":9,"35417":8,"35418":5,"35419":8,"35420":8,"35421":5,"35422":6,"35423":7,"35424":3,"35425":7,"35426":7,"35427":6,"35428":9,"35429":9,"35430":8,"35431":9,"35432":8,"35433":2,"35434":7,"35435":8,"35436":7,"35437":3,"35438":8,"35439":7,"35440":5,"35441":9,"35442":8,"35443":1,"35444":10,"35445":8,"35446":2,"35447":2,"35448":2,"35449":3,"35450":10,"35451":3,"35452":10,"35453":8,"35454":7,"35455":5,"35456":8,"35457":10,"35458":4,"35459":7,"35460":3,"35461":3,"35462":2,"35463":3,"35464":2,"35465":9,"35466":4,"35467":4,"35468":7,"35469":7,"35470":8,"35471":8,"35472":5,"35473":9,"35474":7,"35475":6,"35476":6,"35477":3,"35478":8,"35479":8,"35480":9,"35481":6,"35482":8,"35483":8,"35484":8,"35485":7,"35486":5,"35487":9,"35488":5,"35489":7,"35490":9,"35491":7,"35492":10,"35493":2,"35494":1,"35495":8,"35496":8,"35497":8,"35498":7,"35499":7,"35500":7,"35501":7,"35502":7,"35503":2,"35504":8,"35505":3,"35506":9,"35507":5,"35508":5,"35509":9,"35510":9,"35511":7,"35512":6,"35513":7,"35514":3,"35515":4,"35516":1,"35517":3,"35518":2,"35519":8,"35520":2,"35521":9,"35522":8,"35523":7,"35524":9,"35525":8,"35526":7,"35527":8,"35528":6,"35529":7,"35530":7,"35531":10,"35532":2,"35533":7,"35534":10,"35535":3,"35536":1,"35537":8,"35538":2,"35539":7,"35540":8,"35541":7,"35542":2,"35543":8,"35544":9,"35545":9,"35546":1,"35547":7,"35548":2,"35549":8,"35550":8,"35551":10,"35552":4,"35553":7,"35554":9,"35555":6,"35556":9,"35557":5,"35558":7,"35559":7,"35560":5,"35561":9,"35562":9,"35563":9,"35564":1,"35565":8,"35566":9,"35567":1,"35568":2,"35569":2,"35570":6,"35571":8,"35572":8,"35573":6,"35574":8,"35575":5,"35576":2,"35577":9,"35578":9,"35579":9,"35580":8,"35581":4,"35582":9,"35583":2,"35584":7,"35585":1,"35586":7,"35587":8,"35588":7,"35589":9,"35590":8,"35591":8,"35592":7,"35593":2,"35594":9,"35595":5,"35596":8,"35597":9,"35598":7,"35599":7,"35600":7,"35601":7,"35602":5,"35603":7,"35604":4,"35605":8,"35606":8,"35607":9,"35608":8,"35609":8,"35610":7,"35611":3,"35612":4,"35613":9,"35614":3,"35615":5,"35616":2,"35617":9,"35618":2,"35619":4,"35620":1,"35621":9,"35622":8,"35623":8,"35624":9,"35625":7,"35626":7,"35627":9,"35628":9,"35629":2,"35630":7,"35631":6,"35632":1,"35633":8,"35634":6,"35635":9,"35636":1,"35637":5,"35638":9,"35639":9,"35640":2,"35641":2,"35642":7,"35643":8,"35644":5,"35645":9,"35646":7,"35647":9,"35648":6,"35649":4,"35650":10,"35651":8,"35652":8,"35653":9,"35654":1,"35655":9,"35656":9,"35657":5,"35658":9,"35659":4,"35660":7,"35661":10,"35662":7,"35663":1,"35664":7,"35665":8,"35666":10,"35667":9,"35668":5,"35669":9,"35670":10,"35671":8,"35672":8,"35673":8,"35674":5,"35675":7,"35676":7,"35677":10,"35678":4,"35679":2,"35680":3,"35681":6,"35682":7,"35683":8,"35684":8,"35685":2,"35686":5,"35687":1,"35688":9,"35689":7,"35690":2,"35691":7,"35692":8,"35693":5,"35694":8,"35695":8,"35696":4,"35697":3,"35698":7,"35699":9,"35700":8,"35701":7,"35702":2,"35703":9,"35704":4,"35705":7,"35706":6,"35707":8,"35708":2,"35709":5,"35710":7,"35711":1,"35712":5,"35713":6,"35714":9,"35715":8,"35716":2,"35717":6,"35718":7,"35719":1,"35720":4,"35721":9,"35722":5,"35723":7,"35724":10,"35725":7,"35726":7,"35727":8,"35728":9,"35729":7,"35730":7,"35731":9,"35732":5,"35733":8,"35734":7,"35735":4,"35736":7,"35737":8,"35738":2,"35739":4,"35740":8,"35741":2,"35742":8,"35743":3,"35744":7,"35745":5,"35746":5,"35747":7,"35748":8,"35749":1,"35750":7,"35751":2,"35752":8,"35753":9,"35754":8,"35755":8,"35756":2,"35757":9,"35758":9,"35759":4,"35760":8,"35761":5,"35762":1,"35763":8,"35764":3,"35765":2,"35766":7,"35767":6,"35768":7,"35769":10,"35770":7,"35771":7,"35772":7,"35773":3,"35774":5,"35775":8,"35776":8,"35777":9,"35778":8,"35779":5,"35780":7,"35781":8,"35782":5,"35783":5,"35784":1,"35785":10,"35786":5,"35787":4,"35788":5,"35789":8,"35790":9,"35791":8,"35792":8,"35793":8,"35794":10,"35795":4,"35796":10,"35797":7,"35798":5,"35799":6,"35800":10,"35801":7,"35802":8,"35803":9,"35804":1,"35805":7,"35806":10,"35807":3,"35808":5,"35809":7,"35810":7,"35811":9,"35812":7,"35813":7,"35814":2,"35815":9,"35816":8,"35817":1,"35818":6,"35819":7,"35820":5,"35821":9,"35822":8,"35823":9,"35824":1,"35825":9,"35826":1,"35827":9,"35828":8,"35829":7,"35830":7,"35831":8,"35832":2,"35833":8,"35834":7,"35835":7,"35836":3,"35837":4,"35838":7,"35839":8,"35840":5,"35841":9,"35842":8,"35843":5,"35844":9,"35845":3,"35846":7,"35847":8,"35848":8,"35849":7,"35850":8,"35851":2,"35852":9,"35853":9,"35854":7,"35855":3,"35856":9,"35857":8,"35858":6,"35859":7,"35860":5,"35861":8,"35862":9,"35863":5,"35864":5,"35865":2,"35866":1,"35867":9,"35868":8,"35869":1,"35870":7,"35871":3,"35872":7,"35873":9,"35874":7,"35875":1,"35876":7,"35877":2,"35878":8,"35879":10,"35880":9,"35881":2,"35882":6,"35883":2,"35884":9,"35885":7,"35886":1,"35887":7,"35888":8,"35889":2,"35890":10,"35891":9,"35892":8,"35893":7,"35894":8,"35895":9,"35896":9,"35897":7,"35898":7,"35899":7,"35900":3,"35901":7,"35902":5,"35903":7,"35904":7,"35905":3,"35906":7,"35907":9,"35908":5,"35909":5,"35910":5,"35911":7,"35912":2,"35913":7,"35914":2,"35915":7,"35916":7,"35917":8,"35918":7,"35919":9,"35920":1,"35921":7,"35922":9,"35923":5,"35924":9,"35925":2,"35926":5,"35927":3,"35928":2,"35929":1,"35930":2,"35931":3,"35932":1,"35933":6,"35934":1,"35935":8,"35936":8,"35937":8,"35938":7,"35939":9,"35940":7,"35941":2,"35942":9,"35943":9,"35944":2,"35945":2,"35946":8,"35947":8,"35948":9,"35949":7,"35950":5,"35951":2,"35952":9,"35953":5,"35954":4,"35955":3,"35956":9,"35957":5,"35958":8,"35959":8,"35960":8,"35961":7,"35962":5,"35963":7,"35964":7,"35965":9,"35966":8,"35967":10,"35968":8,"35969":5,"35970":7,"35971":2,"35972":7,"35973":6,"35974":8,"35975":8,"35976":3,"35977":5,"35978":2,"35979":6,"35980":8,"35981":6,"35982":3,"35983":3,"35984":4,"35985":6,"35986":7,"35987":4,"35988":8,"35989":9,"35990":7,"35991":3,"35992":7,"35993":1,"35994":3,"35995":8,"35996":6,"35997":7,"35998":2,"35999":7,"36000":2,"36001":8,"36002":8,"36003":7,"36004":9,"36005":7,"36006":7,"36007":5,"36008":6,"36009":7,"36010":3,"36011":1,"36012":9,"36013":9,"36014":5,"36015":2,"36016":8,"36017":1,"36018":4,"36019":6,"36020":7,"36021":6,"36022":10,"36023":3,"36024":8,"36025":2,"36026":4,"36027":2,"36028":7,"36029":10,"36030":7,"36031":1,"36032":9,"36033":7,"36034":9,"36035":5,"36036":7,"36037":7,"36038":9,"36039":8,"36040":8,"36041":3,"36042":7,"36043":2,"36044":9,"36045":7,"36046":2,"36047":7,"36048":7,"36049":2,"36050":9,"36051":4,"36052":7,"36053":2,"36054":5,"36055":7,"36056":8,"36057":7,"36058":8,"36059":8,"36060":8,"36061":8,"36062":7,"36063":8,"36064":7,"36065":5,"36066":8,"36067":8,"36068":8,"36069":7,"36070":5,"36071":6,"36072":2,"36073":10,"36074":2,"36075":7,"36076":9,"36077":9,"36078":5,"36079":9,"36080":1,"36081":1,"36082":7,"36083":6,"36084":8,"36085":5,"36086":2,"36087":2,"36088":8,"36089":8,"36090":9,"36091":2,"36092":10,"36093":2,"36094":5,"36095":1,"36096":3,"36097":4,"36098":8,"36099":2,"36100":1,"36101":7,"36102":10,"36103":7,"36104":1,"36105":3,"36106":5,"36107":6,"36108":7,"36109":7,"36110":3,"36111":7,"36112":2,"36113":2,"36114":10,"36115":7,"36116":2,"36117":4,"36118":7,"36119":7,"36120":2,"36121":7,"36122":2,"36123":7,"36124":8,"36125":2,"36126":7,"36127":8,"36128":1,"36129":5,"36130":9,"36131":7,"36132":1,"36133":8,"36134":1,"36135":8,"36136":7,"36137":5,"36138":9,"36139":8,"36140":7,"36141":1,"36142":6,"36143":7,"36144":7,"36145":5,"36146":10,"36147":6,"36148":2,"36149":5,"36150":5,"36151":4,"36152":1,"36153":8,"36154":7,"36155":7,"36156":7,"36157":7,"36158":10,"36159":7,"36160":7,"36161":1,"36162":7,"36163":5,"36164":1,"36165":7,"36166":9,"36167":8,"36168":8,"36169":10,"36170":7,"36171":9,"36172":8,"36173":4,"36174":9,"36175":8,"36176":4,"36177":6,"36178":9,"36179":4,"36180":8,"36181":2,"36182":8,"36183":9,"36184":2,"36185":10,"36186":4,"36187":9,"36188":2,"36189":7,"36190":8,"36191":8,"36192":7,"36193":7,"36194":5,"36195":7,"36196":9,"36197":5,"36198":7,"36199":1,"36200":9,"36201":9,"36202":7,"36203":2,"36204":8,"36205":5,"36206":7,"36207":1,"36208":10,"36209":9,"36210":5,"36211":8,"36212":8,"36213":8,"36214":2,"36215":7,"36216":5,"36217":7,"36218":5,"36219":8,"36220":9,"36221":3,"36222":8,"36223":6,"36224":9,"36225":5,"36226":8,"36227":9,"36228":8,"36229":9,"36230":8,"36231":8,"36232":8,"36233":7,"36234":8,"36235":8,"36236":9,"36237":7,"36238":9,"36239":4,"36240":9,"36241":5,"36242":8,"36243":9,"36244":10,"36245":9,"36246":7,"36247":2,"36248":2,"36249":4,"36250":7,"36251":9,"36252":8,"36253":10,"36254":5,"36255":7,"36256":9,"36257":2,"36258":7,"36259":10,"36260":7,"36261":1,"36262":7,"36263":8,"36264":8,"36265":7,"36266":4,"36267":8,"36268":7,"36269":9,"36270":10,"36271":4,"36272":8,"36273":7,"36274":7,"36275":7,"36276":8,"36277":8,"36278":1,"36279":9,"36280":7,"36281":8,"36282":4,"36283":1,"36284":1,"36285":2,"36286":6,"36287":6,"36288":6,"36289":5,"36290":5,"36291":8,"36292":5,"36293":6,"36294":2,"36295":10,"36296":7,"36297":8,"36298":8,"36299":7,"36300":2,"36301":7,"36302":6,"36303":7,"36304":7,"36305":1,"36306":7,"36307":9,"36308":7,"36309":8,"36310":2,"36311":6,"36312":3,"36313":7,"36314":7,"36315":1,"36316":7,"36317":1,"36318":2,"36319":10,"36320":4,"36321":9,"36322":7,"36323":5,"36324":8,"36325":9,"36326":5,"36327":8,"36328":9,"36329":7,"36330":7,"36331":5,"36332":6,"36333":1,"36334":8,"36335":7,"36336":9,"36337":9,"36338":10,"36339":6,"36340":2,"36341":8,"36342":5,"36343":2,"36344":2,"36345":7,"36346":8,"36347":9,"36348":8,"36349":7,"36350":7,"36351":2,"36352":8,"36353":7,"36354":5,"36355":10,"36356":5,"36357":8,"36358":9,"36359":10,"36360":9,"36361":9,"36362":9,"36363":5,"36364":6,"36365":7,"36366":4,"36367":5,"36368":5,"36369":3,"36370":2,"36371":3,"36372":8,"36373":2,"36374":8,"36375":4,"36376":8,"36377":5,"36378":8,"36379":4,"36380":4,"36381":7,"36382":8,"36383":7,"36384":9,"36385":5,"36386":10,"36387":8,"36388":8,"36389":7,"36390":2,"36391":4,"36392":7,"36393":4,"36394":2,"36395":8,"36396":7,"36397":8,"36398":9,"36399":1,"36400":7,"36401":9,"36402":8,"36403":7,"36404":7,"36405":8,"36406":5,"36407":7,"36408":1,"36409":7,"36410":7,"36411":7,"36412":8,"36413":9,"36414":7,"36415":7,"36416":10,"36417":8,"36418":3,"36419":7,"36420":7,"36421":9,"36422":4,"36423":5,"36424":1,"36425":10,"36426":5,"36427":2,"36428":8,"36429":7,"36430":3,"36431":8,"36432":7,"36433":4,"36434":8,"36435":9,"36436":2,"36437":7,"36438":7,"36439":5,"36440":2,"36441":1,"36442":8,"36443":8,"36444":1,"36445":8,"36446":2,"36447":5,"36448":7,"36449":5,"36450":6,"36451":8,"36452":7,"36453":4,"36454":8,"36455":10,"36456":8,"36457":8,"36458":7,"36459":8,"36460":4,"36461":1,"36462":7,"36463":9,"36464":5,"36465":4,"36466":9,"36467":8,"36468":2,"36469":8,"36470":7,"36471":8,"36472":9,"36473":2,"36474":5,"36475":8,"36476":5,"36477":9,"36478":8,"36479":3,"36480":7,"36481":7,"36482":3,"36483":3,"36484":8,"36485":8,"36486":5,"36487":8,"36488":2,"36489":7,"36490":6,"36491":5,"36492":7,"36493":8,"36494":9,"36495":9,"36496":8,"36497":3,"36498":8,"36499":8,"36500":7,"36501":1,"36502":9,"36503":7,"36504":7,"36505":8,"36506":8,"36507":7,"36508":5,"36509":5,"36510":8,"36511":9,"36512":3,"36513":9,"36514":5,"36515":6,"36516":5,"36517":6,"36518":3,"36519":8,"36520":8,"36521":8,"36522":9,"36523":8,"36524":2,"36525":6,"36526":8,"36527":4,"36528":3,"36529":9,"36530":2,"36531":6,"36532":9,"36533":7,"36534":5,"36535":5,"36536":10,"36537":5,"36538":3,"36539":8,"36540":10,"36541":7,"36542":5,"36543":6,"36544":9,"36545":7,"36546":5,"36547":2,"36548":7,"36549":2,"36550":1,"36551":7,"36552":9,"36553":8,"36554":7,"36555":3,"36556":9,"36557":1,"36558":4,"36559":2,"36560":7,"36561":2,"36562":9,"36563":9,"36564":9,"36565":7,"36566":9,"36567":4,"36568":2,"36569":3,"36570":7,"36571":7,"36572":8,"36573":2,"36574":2,"36575":4,"36576":5,"36577":5,"36578":10,"36579":8,"36580":9,"36581":2,"36582":8,"36583":9,"36584":2,"36585":8,"36586":2,"36587":7,"36588":7,"36589":8,"36590":9,"36591":6,"36592":7,"36593":8,"36594":2,"36595":7,"36596":3,"36597":2,"36598":7,"36599":4,"36600":8,"36601":6,"36602":4,"36603":7,"36604":1,"36605":6,"36606":6,"36607":6,"36608":8,"36609":8,"36610":2,"36611":5,"36612":7,"36613":9,"36614":8,"36615":10,"36616":10,"36617":2,"36618":7,"36619":7,"36620":6,"36621":5,"36622":7,"36623":7,"36624":4,"36625":7,"36626":3,"36627":6,"36628":7,"36629":2,"36630":7,"36631":8,"36632":7,"36633":8,"36634":7,"36635":8,"36636":8,"36637":7,"36638":8,"36639":9,"36640":10,"36641":8,"36642":8,"36643":7,"36644":8,"36645":3,"36646":2,"36647":10,"36648":2,"36649":6,"36650":4,"36651":6,"36652":8,"36653":5,"36654":10,"36655":1,"36656":9,"36657":4,"36658":2,"36659":8,"36660":4,"36661":4,"36662":5,"36663":8,"36664":3,"36665":7,"36666":9,"36667":8,"36668":7,"36669":10,"36670":3,"36671":9,"36672":9,"36673":7,"36674":5,"36675":3,"36676":7,"36677":8,"36678":2,"36679":1,"36680":1,"36681":9,"36682":7,"36683":1,"36684":7,"36685":2,"36686":8,"36687":5,"36688":7,"36689":9,"36690":10,"36691":5,"36692":8,"36693":5,"36694":5,"36695":8,"36696":9,"36697":9,"36698":9,"36699":1,"36700":4,"36701":8,"36702":9,"36703":1,"36704":7,"36705":10,"36706":8,"36707":7,"36708":5,"36709":9,"36710":7,"36711":7,"36712":9,"36713":9,"36714":5,"36715":2,"36716":1,"36717":8,"36718":5,"36719":7,"36720":7,"36721":9,"36722":7,"36723":6,"36724":2,"36725":9,"36726":9,"36727":2,"36728":4,"36729":7,"36730":8,"36731":8,"36732":8,"36733":9,"36734":7,"36735":9,"36736":7,"36737":2,"36738":7,"36739":4,"36740":2,"36741":7,"36742":2,"36743":7,"36744":9,"36745":5,"36746":1,"36747":6,"36748":8,"36749":8,"36750":2,"36751":7,"36752":9,"36753":8,"36754":8,"36755":9,"36756":3,"36757":7,"36758":7,"36759":6,"36760":4,"36761":1,"36762":8,"36763":9,"36764":9,"36765":7,"36766":8,"36767":9,"36768":8,"36769":9,"36770":2,"36771":9,"36772":2,"36773":6,"36774":7,"36775":1,"36776":9,"36777":5,"36778":10,"36779":8,"36780":2,"36781":5,"36782":3,"36783":9,"36784":7,"36785":10,"36786":7,"36787":1,"36788":7,"36789":7,"36790":4,"36791":9,"36792":9,"36793":3,"36794":9,"36795":4,"36796":2,"36797":9,"36798":8,"36799":8,"36800":10,"36801":6,"36802":2,"36803":2,"36804":5,"36805":8,"36806":9,"36807":1,"36808":7,"36809":7,"36810":2,"36811":7,"36812":2,"36813":5,"36814":9,"36815":1,"36816":3,"36817":7,"36818":8,"36819":8,"36820":3,"36821":5,"36822":8,"36823":9,"36824":5,"36825":9,"36826":7,"36827":5,"36828":5,"36829":8,"36830":8,"36831":3,"36832":7,"36833":9,"36834":9,"36835":8,"36836":2,"36837":10,"36838":9,"36839":7,"36840":8,"36841":8,"36842":10,"36843":9,"36844":8,"36845":8,"36846":8,"36847":7,"36848":7,"36849":4,"36850":7,"36851":8,"36852":3,"36853":5,"36854":6,"36855":8,"36856":9,"36857":9,"36858":10,"36859":3,"36860":9,"36861":9,"36862":3,"36863":1,"36864":9,"36865":3,"36866":7,"36867":4,"36868":8,"36869":1,"36870":4,"36871":2,"36872":7,"36873":5,"36874":6,"36875":4,"36876":7,"36877":9,"36878":7,"36879":10,"36880":8,"36881":4,"36882":3,"36883":7,"36884":7,"36885":9,"36886":4,"36887":5,"36888":10,"36889":7,"36890":6,"36891":10,"36892":3,"36893":5,"36894":7,"36895":7,"36896":8,"36897":1,"36898":8,"36899":9,"36900":8,"36901":6,"36902":7,"36903":9,"36904":7,"36905":8,"36906":8,"36907":6,"36908":9,"36909":7,"36910":7,"36911":8,"36912":2,"36913":9,"36914":5,"36915":9,"36916":8,"36917":2,"36918":5,"36919":5,"36920":9,"36921":6,"36922":4,"36923":4,"36924":10,"36925":8,"36926":8,"36927":8,"36928":8,"36929":6,"36930":6,"36931":7,"36932":5,"36933":1,"36934":2,"36935":4,"36936":2,"36937":9,"36938":2,"36939":2,"36940":8,"36941":7,"36942":5,"36943":9,"36944":7,"36945":7,"36946":9,"36947":10,"36948":2,"36949":8,"36950":2,"36951":7,"36952":9,"36953":10,"36954":10,"36955":7,"36956":8,"36957":7,"36958":9,"36959":9,"36960":8,"36961":8,"36962":7,"36963":8,"36964":8,"36965":7,"36966":7,"36967":9,"36968":4,"36969":8,"36970":3,"36971":8,"36972":8,"36973":4,"36974":7,"36975":1,"36976":5,"36977":9,"36978":1,"36979":5,"36980":7,"36981":3,"36982":7,"36983":10,"36984":5,"36985":8,"36986":5,"36987":8,"36988":2,"36989":8,"36990":10,"36991":5,"36992":1,"36993":3,"36994":7,"36995":8,"36996":8,"36997":3,"36998":1,"36999":10,"37000":9,"37001":7,"37002":7,"37003":7,"37004":8,"37005":5,"37006":7,"37007":7,"37008":8,"37009":7,"37010":2,"37011":6,"37012":7,"37013":2,"37014":9,"37015":8,"37016":8,"37017":9,"37018":9,"37019":9,"37020":2,"37021":4,"37022":9,"37023":4,"37024":7,"37025":3,"37026":1,"37027":7,"37028":3,"37029":7,"37030":6,"37031":8,"37032":3,"37033":8,"37034":7,"37035":8,"37036":5,"37037":7,"37038":7,"37039":6,"37040":9,"37041":1,"37042":9,"37043":9,"37044":8,"37045":4,"37046":8,"37047":7,"37048":8,"37049":9,"37050":9,"37051":4,"37052":2,"37053":3,"37054":7,"37055":7,"37056":9,"37057":9,"37058":7,"37059":8,"37060":5,"37061":4,"37062":9,"37063":4,"37064":8,"37065":4,"37066":3,"37067":9,"37068":7,"37069":7,"37070":8,"37071":7,"37072":6,"37073":9,"37074":2,"37075":2,"37076":5,"37077":7,"37078":8,"37079":2,"37080":7,"37081":7,"37082":5,"37083":8,"37084":9,"37085":7,"37086":7,"37087":3,"37088":5,"37089":7,"37090":5,"37091":8,"37092":8,"37093":4,"37094":4,"37095":2,"37096":5,"37097":2,"37098":8,"37099":10,"37100":9,"37101":5,"37102":2,"37103":7,"37104":5,"37105":2,"37106":5,"37107":9,"37108":7,"37109":10,"37110":8,"37111":4,"37112":6,"37113":9,"37114":7,"37115":2,"37116":10,"37117":2,"37118":5,"37119":5,"37120":9,"37121":5,"37122":7,"37123":4,"37124":9,"37125":8,"37126":5,"37127":5,"37128":1,"37129":2,"37130":10,"37131":4,"37132":4,"37133":7,"37134":2,"37135":9,"37136":8,"37137":1,"37138":7,"37139":8,"37140":4,"37141":7,"37142":5,"37143":6,"37144":9,"37145":8,"37146":6,"37147":8,"37148":7,"37149":10,"37150":8,"37151":9,"37152":8,"37153":8,"37154":3,"37155":7,"37156":8,"37157":7,"37158":9,"37159":9,"37160":7,"37161":8,"37162":8,"37163":8,"37164":9,"37165":9,"37166":3,"37167":9,"37168":8,"37169":4,"37170":3,"37171":2,"37172":4,"37173":9,"37174":5,"37175":9,"37176":7,"37177":3,"37178":8,"37179":2,"37180":7,"37181":7,"37182":8,"37183":8,"37184":7,"37185":8,"37186":9,"37187":8,"37188":2,"37189":8,"37190":7,"37191":8,"37192":2,"37193":9,"37194":8,"37195":7,"37196":6,"37197":5,"37198":8,"37199":3,"37200":2,"37201":8,"37202":9,"37203":9,"37204":8,"37205":3,"37206":9,"37207":4,"37208":5,"37209":2,"37210":8,"37211":3,"37212":5,"37213":5,"37214":8,"37215":1,"37216":1,"37217":7,"37218":9,"37219":5,"37220":10,"37221":2,"37222":1,"37223":8,"37224":2,"37225":10,"37226":8,"37227":2,"37228":7,"37229":9,"37230":8,"37231":6,"37232":9,"37233":8,"37234":6,"37235":7,"37236":7,"37237":4,"37238":1,"37239":9,"37240":1,"37241":5,"37242":2,"37243":7,"37244":9,"37245":1,"37246":4,"37247":8,"37248":8,"37249":4,"37250":5,"37251":5,"37252":7,"37253":8,"37254":3,"37255":8,"37256":5,"37257":5,"37258":3,"37259":4,"37260":3,"37261":10,"37262":4,"37263":9,"37264":4,"37265":7,"37266":2,"37267":7,"37268":5,"37269":1,"37270":8,"37271":6,"37272":8,"37273":2,"37274":7,"37275":8,"37276":8,"37277":8,"37278":9,"37279":9,"37280":7,"37281":4,"37282":2,"37283":5,"37284":8,"37285":3,"37286":7,"37287":10,"37288":8,"37289":4,"37290":7,"37291":8,"37292":8,"37293":7,"37294":10,"37295":8,"37296":5,"37297":7,"37298":6,"37299":8,"37300":7,"37301":8,"37302":8,"37303":1,"37304":4,"37305":9,"37306":9,"37307":8,"37308":9,"37309":10,"37310":7,"37311":8,"37312":1,"37313":7,"37314":8,"37315":7,"37316":8,"37317":3,"37318":8,"37319":5,"37320":9,"37321":8,"37322":6,"37323":8,"37324":8,"37325":5,"37326":9,"37327":7,"37328":3,"37329":2,"37330":8,"37331":7,"37332":5,"37333":8,"37334":8,"37335":9,"37336":2,"37337":2,"37338":7,"37339":2,"37340":2,"37341":8,"37342":4,"37343":2,"37344":9,"37345":2,"37346":2,"37347":7,"37348":8,"37349":8,"37350":9,"37351":8,"37352":2,"37353":5,"37354":9,"37355":9,"37356":8,"37357":1,"37358":10,"37359":4,"37360":5,"37361":2,"37362":9,"37363":9,"37364":7,"37365":2,"37366":10,"37367":8,"37368":8,"37369":8,"37370":1,"37371":6,"37372":8,"37373":2,"37374":10,"37375":8,"37376":7,"37377":3,"37378":5,"37379":2,"37380":8,"37381":8,"37382":8,"37383":5,"37384":7,"37385":8,"37386":3,"37387":7,"37388":6,"37389":8,"37390":5,"37391":7,"37392":7,"37393":9,"37394":1,"37395":9,"37396":4,"37397":2,"37398":9,"37399":9,"37400":9,"37401":7,"37402":9,"37403":5,"37404":7,"37405":9,"37406":1,"37407":7,"37408":2,"37409":10,"37410":2,"37411":3,"37412":5,"37413":6,"37414":9,"37415":2,"37416":3,"37417":5,"37418":2,"37419":2,"37420":8,"37421":7,"37422":9,"37423":7,"37424":8,"37425":1,"37426":9,"37427":9,"37428":2,"37429":9,"37430":7,"37431":9,"37432":9,"37433":4,"37434":4,"37435":7,"37436":3,"37437":9,"37438":8,"37439":9,"37440":7,"37441":7,"37442":2,"37443":7,"37444":8,"37445":10,"37446":9,"37447":4,"37448":2,"37449":2,"37450":6,"37451":10,"37452":7,"37453":5,"37454":7,"37455":9,"37456":2,"37457":8,"37458":8,"37459":9,"37460":5,"37461":4,"37462":5,"37463":10,"37464":5,"37465":3,"37466":7,"37467":7,"37468":2,"37469":9,"37470":9,"37471":8,"37472":10,"37473":10,"37474":6,"37475":10,"37476":8,"37477":10,"37478":7,"37479":8,"37480":5,"37481":9,"37482":4,"37483":1,"37484":8,"37485":3,"37486":8,"37487":4,"37488":6,"37489":7,"37490":7,"37491":8,"37492":8,"37493":8,"37494":2,"37495":7,"37496":8,"37497":10,"37498":8,"37499":4,"37500":7,"37501":1,"37502":8,"37503":8,"37504":10,"37505":5,"37506":7,"37507":10,"37508":2,"37509":9,"37510":8,"37511":8,"37512":3,"37513":5,"37514":8,"37515":5,"37516":9,"37517":4,"37518":9,"37519":9,"37520":2,"37521":9,"37522":7,"37523":1,"37524":3,"37525":8,"37526":6,"37527":8,"37528":7,"37529":4,"37530":9,"37531":7,"37532":5,"37533":8,"37534":6,"37535":8,"37536":10,"37537":2,"37538":1,"37539":6,"37540":6,"37541":3,"37542":8,"37543":5,"37544":9,"37545":9,"37546":9,"37547":10,"37548":2,"37549":9,"37550":8,"37551":2,"37552":6,"37553":8,"37554":5,"37555":2,"37556":7,"37557":8,"37558":5,"37559":9,"37560":1,"37561":9,"37562":10,"37563":2,"37564":5,"37565":5,"37566":1,"37567":2,"37568":10,"37569":2,"37570":5,"37571":9,"37572":9,"37573":1,"37574":2,"37575":8,"37576":1,"37577":7,"37578":8,"37579":10,"37580":1,"37581":1,"37582":7,"37583":7,"37584":3,"37585":10,"37586":7,"37587":1,"37588":5,"37589":1,"37590":7,"37591":8,"37592":4,"37593":5,"37594":1,"37595":8,"37596":9,"37597":7,"37598":8,"37599":6,"37600":6,"37601":10,"37602":9,"37603":7,"37604":8,"37605":7,"37606":2,"37607":9,"37608":5,"37609":8,"37610":5,"37611":3,"37612":2,"37613":1,"37614":7,"37615":10,"37616":5,"37617":7,"37618":6,"37619":2,"37620":7,"37621":8,"37622":2,"37623":8,"37624":8,"37625":9,"37626":10,"37627":1,"37628":9,"37629":6,"37630":2,"37631":3,"37632":9,"37633":10,"37634":5,"37635":6,"37636":2,"37637":9,"37638":10,"37639":4,"37640":10,"37641":10,"37642":10,"37643":9,"37644":7,"37645":9,"37646":1,"37647":2,"37648":9,"37649":9,"37650":7,"37651":5,"37652":7,"37653":2,"37654":8,"37655":4,"37656":9,"37657":5,"37658":7,"37659":5,"37660":7,"37661":9,"37662":7,"37663":2,"37664":8,"37665":7,"37666":7,"37667":8,"37668":8,"37669":1,"37670":9,"37671":8,"37672":7,"37673":7,"37674":8,"37675":9,"37676":3,"37677":1,"37678":7,"37679":7,"37680":4,"37681":1,"37682":7,"37683":7,"37684":8,"37685":7,"37686":7,"37687":8,"37688":5,"37689":7,"37690":8,"37691":7,"37692":7,"37693":10,"37694":4,"37695":2,"37696":7,"37697":7,"37698":4,"37699":1,"37700":7,"37701":9,"37702":5,"37703":7,"37704":4,"37705":10,"37706":1,"37707":1,"37708":2,"37709":6,"37710":8,"37711":7,"37712":7,"37713":2,"37714":9,"37715":2,"37716":8,"37717":9,"37718":5,"37719":2,"37720":2,"37721":7,"37722":9,"37723":9,"37724":5,"37725":7,"37726":2,"37727":5,"37728":5,"37729":7,"37730":1,"37731":10,"37732":8,"37733":8,"37734":7,"37735":2,"37736":7,"37737":8,"37738":9,"37739":2,"37740":8,"37741":8,"37742":10,"37743":8,"37744":7,"37745":9,"37746":8,"37747":8,"37748":5,"37749":2,"37750":8,"37751":5,"37752":2,"37753":2,"37754":2,"37755":2,"37756":7,"37757":8,"37758":7,"37759":9,"37760":5,"37761":6,"37762":7,"37763":4,"37764":10,"37765":6,"37766":7,"37767":7,"37768":2,"37769":7,"37770":9,"37771":9,"37772":2,"37773":7,"37774":1,"37775":8,"37776":9,"37777":6,"37778":5,"37779":6,"37780":9,"37781":8,"37782":8,"37783":2,"37784":4,"37785":1,"37786":8,"37787":7,"37788":5,"37789":2,"37790":7,"37791":2,"37792":3,"37793":9,"37794":2,"37795":3,"37796":7,"37797":10,"37798":8,"37799":5,"37800":9,"37801":3,"37802":7,"37803":6,"37804":7,"37805":5,"37806":8,"37807":8,"37808":7,"37809":10,"37810":8,"37811":9,"37812":2,"37813":7,"37814":6,"37815":6,"37816":8,"37817":3,"37818":5,"37819":8,"37820":1,"37821":9,"37822":4,"37823":4,"37824":9,"37825":4,"37826":2,"37827":5,"37828":2,"37829":1,"37830":2,"37831":4,"37832":4,"37833":2,"37834":1,"37835":8,"37836":10,"37837":8,"37838":8,"37839":1,"37840":9,"37841":8,"37842":8,"37843":4,"37844":1,"37845":4,"37846":5,"37847":8,"37848":9,"37849":3,"37850":2,"37851":7,"37852":9,"37853":8,"37854":7,"37855":7,"37856":8,"37857":8,"37858":8,"37859":2,"37860":8,"37861":2,"37862":8,"37863":7,"37864":8,"37865":7,"37866":9,"37867":8,"37868":8,"37869":5,"37870":2,"37871":4,"37872":7,"37873":7,"37874":2,"37875":3,"37876":5,"37877":7,"37878":8,"37879":8,"37880":7,"37881":9,"37882":9,"37883":3,"37884":7,"37885":6,"37886":5,"37887":1,"37888":7,"37889":5,"37890":7,"37891":8,"37892":4,"37893":7,"37894":2,"37895":10,"37896":10,"37897":9,"37898":7,"37899":3,"37900":7,"37901":2,"37902":8,"37903":8,"37904":1,"37905":9,"37906":10,"37907":7,"37908":8,"37909":8,"37910":2,"37911":8,"37912":7,"37913":7,"37914":9,"37915":10,"37916":9,"37917":9,"37918":4,"37919":9,"37920":3,"37921":5,"37922":7,"37923":7,"37924":9,"37925":2,"37926":5,"37927":4,"37928":1,"37929":2,"37930":7,"37931":7,"37932":3,"37933":7,"37934":1,"37935":8,"37936":9,"37937":7,"37938":3,"37939":10,"37940":5,"37941":9,"37942":9,"37943":9,"37944":9,"37945":5,"37946":10,"37947":9,"37948":5,"37949":7,"37950":7,"37951":9,"37952":8,"37953":3,"37954":7,"37955":8,"37956":7,"37957":7,"37958":2,"37959":3,"37960":6,"37961":2,"37962":1,"37963":5,"37964":7,"37965":4,"37966":9,"37967":9,"37968":6,"37969":8,"37970":2,"37971":7,"37972":9,"37973":8,"37974":4,"37975":3,"37976":7,"37977":2,"37978":8,"37979":7,"37980":2,"37981":2,"37982":2,"37983":9,"37984":7,"37985":7,"37986":7,"37987":9,"37988":7,"37989":2,"37990":9,"37991":7,"37992":8,"37993":2,"37994":7,"37995":6,"37996":3,"37997":9,"37998":8,"37999":1,"38000":8,"38001":9,"38002":9,"38003":9,"38004":7,"38005":8,"38006":10,"38007":8,"38008":8,"38009":7,"38010":8,"38011":9,"38012":8,"38013":7,"38014":1,"38015":2,"38016":8,"38017":5,"38018":2,"38019":2,"38020":8,"38021":9,"38022":7,"38023":2,"38024":9,"38025":7,"38026":8,"38027":8,"38028":9,"38029":6,"38030":8,"38031":5,"38032":3,"38033":7,"38034":3,"38035":8,"38036":8,"38037":7,"38038":2,"38039":7,"38040":6,"38041":7,"38042":8,"38043":7,"38044":8,"38045":9,"38046":5,"38047":1,"38048":8,"38049":1,"38050":8,"38051":8,"38052":10,"38053":5,"38054":10,"38055":7,"38056":3,"38057":3,"38058":1,"38059":10,"38060":9,"38061":7,"38062":9,"38063":7,"38064":1,"38065":7,"38066":5,"38067":2,"38068":5,"38069":8,"38070":6,"38071":9,"38072":9,"38073":1,"38074":1,"38075":2,"38076":9,"38077":7,"38078":3,"38079":8,"38080":8,"38081":4,"38082":10,"38083":8,"38084":2,"38085":9,"38086":10,"38087":2,"38088":7,"38089":7,"38090":10,"38091":7,"38092":2,"38093":1,"38094":5,"38095":10,"38096":7,"38097":9,"38098":9,"38099":9,"38100":5,"38101":3,"38102":5,"38103":8,"38104":7,"38105":9,"38106":1,"38107":2,"38108":7,"38109":8,"38110":5,"38111":9,"38112":2,"38113":10,"38114":5,"38115":2,"38116":5,"38117":8,"38118":9,"38119":2,"38120":8,"38121":8,"38122":7,"38123":7,"38124":10,"38125":8,"38126":2,"38127":8,"38128":9,"38129":7,"38130":7,"38131":8,"38132":8,"38133":7,"38134":1,"38135":10,"38136":7,"38137":8,"38138":7,"38139":1,"38140":8,"38141":9,"38142":4,"38143":9,"38144":7,"38145":7,"38146":4,"38147":8,"38148":8,"38149":5,"38150":6,"38151":6,"38152":7,"38153":8,"38154":9,"38155":9,"38156":9,"38157":4,"38158":7,"38159":1,"38160":8,"38161":7,"38162":9,"38163":9,"38164":3,"38165":4,"38166":10,"38167":3,"38168":7,"38169":7,"38170":4,"38171":2,"38172":8,"38173":1,"38174":6,"38175":8,"38176":5,"38177":5,"38178":9,"38179":7,"38180":1,"38181":8,"38182":7,"38183":5,"38184":4,"38185":9,"38186":2,"38187":5,"38188":4,"38189":2,"38190":9,"38191":8,"38192":8,"38193":2,"38194":10,"38195":3,"38196":8,"38197":9,"38198":7,"38199":7,"38200":7,"38201":5,"38202":5,"38203":3,"38204":2,"38205":8,"38206":4,"38207":5,"38208":4,"38209":5,"38210":5,"38211":8,"38212":8,"38213":2,"38214":5,"38215":5,"38216":7,"38217":1,"38218":5,"38219":5,"38220":8,"38221":9,"38222":6,"38223":5,"38224":8,"38225":2,"38226":8,"38227":5,"38228":8,"38229":10,"38230":7,"38231":7,"38232":7,"38233":8,"38234":8,"38235":9,"38236":1,"38237":8,"38238":10,"38239":7,"38240":8,"38241":10,"38242":7,"38243":9,"38244":7,"38245":9,"38246":5,"38247":9,"38248":7,"38249":7,"38250":7,"38251":2,"38252":8,"38253":4,"38254":8,"38255":1,"38256":9,"38257":7,"38258":7,"38259":9,"38260":7,"38261":9,"38262":7,"38263":7,"38264":8,"38265":9,"38266":7,"38267":7,"38268":7,"38269":7,"38270":9,"38271":7,"38272":9,"38273":8,"38274":7,"38275":9,"38276":7,"38277":9,"38278":1,"38279":8,"38280":7,"38281":8,"38282":9,"38283":8,"38284":4,"38285":7,"38286":7,"38287":9,"38288":8,"38289":7,"38290":8,"38291":9,"38292":7,"38293":7,"38294":9,"38295":7,"38296":7,"38297":8,"38298":10,"38299":4,"38300":9,"38301":7,"38302":8,"38303":6,"38304":2,"38305":9,"38306":4,"38307":4,"38308":6,"38309":1,"38310":2,"38311":2,"38312":5,"38313":5,"38314":3,"38315":7,"38316":2,"38317":5,"38318":7,"38319":9,"38320":5,"38321":2,"38322":2,"38323":2,"38324":8,"38325":9,"38326":3,"38327":7,"38328":7,"38329":7,"38330":5,"38331":9,"38332":7,"38333":7,"38334":9,"38335":7,"38336":10,"38337":10,"38338":9,"38339":7,"38340":5,"38341":6,"38342":5,"38343":2,"38344":10,"38345":7,"38346":9,"38347":9,"38348":6,"38349":8,"38350":1,"38351":9,"38352":9,"38353":8,"38354":5,"38355":8,"38356":4,"38357":8,"38358":8,"38359":1,"38360":7,"38361":9,"38362":6,"38363":4,"38364":7,"38365":2,"38366":7,"38367":7,"38368":8,"38369":2,"38370":8,"38371":10,"38372":8,"38373":1,"38374":8,"38375":5,"38376":8,"38377":8,"38378":7,"38379":8,"38380":3,"38381":2,"38382":10,"38383":7,"38384":7,"38385":7,"38386":9,"38387":1,"38388":4,"38389":7,"38390":2,"38391":8,"38392":9,"38393":4,"38394":2,"38395":8,"38396":8,"38397":8,"38398":2,"38399":6,"38400":1,"38401":8,"38402":9,"38403":9,"38404":10,"38405":7,"38406":9,"38407":3,"38408":9,"38409":7,"38410":8,"38411":9,"38412":2,"38413":8,"38414":9,"38415":9,"38416":9,"38417":7,"38418":5,"38419":9,"38420":2,"38421":9,"38422":9,"38423":5,"38424":8,"38425":8,"38426":9,"38427":7,"38428":9,"38429":2,"38430":4,"38431":5,"38432":3,"38433":9,"38434":8,"38435":9,"38436":2,"38437":3,"38438":8,"38439":2,"38440":7,"38441":8,"38442":8,"38443":5,"38444":9,"38445":6,"38446":9,"38447":4,"38448":5,"38449":8,"38450":10,"38451":8,"38452":9,"38453":5,"38454":10,"38455":8,"38456":9,"38457":7,"38458":7,"38459":5,"38460":8,"38461":9,"38462":9,"38463":2,"38464":2,"38465":9,"38466":4,"38467":8,"38468":9,"38469":7,"38470":2,"38471":8,"38472":9,"38473":4,"38474":1,"38475":1,"38476":9,"38477":7,"38478":8,"38479":7,"38480":10,"38481":7,"38482":9,"38483":8,"38484":2,"38485":2,"38486":7,"38487":9,"38488":10,"38489":9,"38490":10,"38491":9,"38492":3,"38493":8,"38494":9,"38495":7,"38496":7,"38497":4,"38498":8,"38499":8,"38500":6,"38501":7,"38502":8,"38503":7,"38504":9,"38505":1,"38506":9,"38507":3,"38508":6,"38509":7,"38510":10,"38511":8,"38512":1,"38513":9,"38514":8,"38515":2,"38516":7,"38517":9,"38518":9,"38519":8,"38520":7,"38521":3,"38522":8,"38523":9,"38524":7,"38525":7,"38526":8,"38527":8,"38528":3,"38529":7,"38530":8,"38531":3,"38532":2,"38533":1,"38534":9,"38535":10,"38536":4,"38537":7,"38538":9,"38539":8,"38540":2,"38541":6,"38542":8,"38543":5,"38544":8,"38545":7,"38546":2,"38547":7,"38548":5,"38549":7,"38550":7,"38551":8,"38552":7,"38553":2,"38554":7,"38555":4,"38556":2,"38557":5,"38558":2,"38559":3,"38560":9,"38561":5,"38562":7,"38563":9,"38564":6,"38565":1,"38566":8,"38567":9,"38568":5,"38569":8,"38570":9,"38571":5,"38572":3,"38573":1,"38574":4,"38575":9,"38576":10,"38577":4,"38578":9,"38579":2,"38580":9,"38581":7,"38582":10,"38583":3,"38584":10,"38585":8,"38586":10,"38587":8,"38588":8,"38589":9,"38590":7,"38591":8,"38592":1,"38593":5,"38594":7,"38595":4,"38596":2,"38597":2,"38598":6,"38599":9,"38600":8,"38601":7,"38602":9,"38603":8,"38604":5,"38605":3,"38606":8,"38607":5,"38608":8,"38609":8,"38610":8,"38611":3,"38612":2,"38613":8,"38614":7,"38615":10,"38616":7,"38617":7,"38618":4,"38619":9,"38620":7,"38621":10,"38622":4,"38623":2,"38624":3,"38625":8,"38626":4,"38627":3,"38628":2,"38629":4,"38630":5,"38631":8,"38632":3,"38633":4,"38634":8,"38635":3,"38636":3,"38637":4,"38638":8,"38639":3,"38640":6,"38641":2,"38642":5,"38643":3,"38644":7,"38645":9,"38646":7,"38647":5,"38648":5,"38649":2,"38650":3,"38651":8,"38652":9,"38653":9,"38654":9,"38655":5,"38656":7,"38657":5,"38658":7,"38659":2,"38660":2,"38661":5,"38662":6,"38663":8,"38664":7,"38665":7,"38666":9,"38667":9,"38668":7,"38669":5,"38670":7,"38671":9,"38672":8,"38673":8,"38674":9,"38675":9,"38676":2,"38677":7,"38678":2,"38679":9,"38680":7,"38681":7,"38682":8,"38683":2,"38684":2,"38685":8,"38686":8,"38687":8,"38688":9,"38689":2,"38690":1,"38691":8,"38692":8,"38693":9,"38694":9,"38695":9,"38696":4,"38697":9,"38698":7,"38699":1,"38700":7,"38701":8,"38702":8,"38703":7,"38704":3,"38705":5,"38706":4,"38707":7,"38708":8,"38709":8,"38710":4,"38711":7,"38712":6,"38713":4,"38714":1,"38715":7,"38716":7,"38717":8,"38718":5,"38719":6,"38720":9,"38721":7,"38722":5,"38723":8,"38724":3,"38725":9,"38726":5,"38727":8,"38728":8,"38729":2,"38730":5,"38731":8,"38732":2,"38733":2,"38734":10,"38735":4,"38736":5,"38737":6,"38738":7,"38739":9,"38740":8,"38741":7,"38742":6,"38743":7,"38744":2,"38745":8,"38746":8,"38747":8,"38748":8,"38749":9,"38750":8,"38751":8,"38752":2,"38753":9,"38754":6,"38755":9,"38756":2,"38757":3,"38758":2,"38759":2,"38760":8,"38761":4,"38762":7,"38763":5,"38764":8,"38765":8,"38766":9,"38767":4,"38768":4,"38769":9,"38770":7,"38771":9,"38772":6,"38773":8,"38774":9,"38775":1,"38776":1,"38777":5,"38778":7,"38779":2,"38780":8,"38781":3,"38782":8,"38783":8,"38784":5,"38785":6,"38786":9,"38787":1,"38788":8,"38789":9,"38790":9,"38791":2,"38792":4,"38793":8,"38794":5,"38795":9,"38796":9,"38797":2,"38798":8,"38799":1,"38800":7,"38801":8,"38802":10,"38803":10,"38804":3,"38805":2,"38806":1,"38807":9,"38808":7,"38809":7,"38810":9,"38811":7,"38812":7,"38813":9,"38814":7,"38815":1,"38816":8,"38817":7,"38818":6,"38819":3,"38820":3,"38821":5,"38822":2,"38823":7,"38824":2,"38825":8,"38826":2,"38827":8,"38828":3,"38829":8,"38830":8,"38831":6,"38832":10,"38833":8,"38834":1,"38835":9,"38836":9,"38837":2,"38838":8,"38839":4,"38840":7,"38841":6,"38842":7,"38843":1,"38844":7,"38845":9,"38846":4,"38847":5,"38848":2,"38849":5,"38850":6,"38851":7,"38852":7,"38853":1,"38854":7,"38855":7,"38856":7,"38857":7,"38858":1,"38859":10,"38860":7,"38861":2,"38862":6,"38863":8,"38864":7,"38865":7,"38866":5,"38867":5,"38868":6,"38869":2,"38870":2,"38871":8,"38872":9,"38873":7,"38874":6,"38875":1,"38876":7,"38877":8,"38878":7,"38879":9,"38880":6,"38881":7,"38882":8,"38883":8,"38884":8,"38885":9,"38886":2,"38887":6,"38888":5,"38889":4,"38890":5,"38891":7,"38892":2,"38893":10,"38894":4,"38895":5,"38896":7,"38897":5,"38898":4,"38899":6,"38900":10,"38901":7,"38902":6,"38903":9,"38904":9,"38905":3,"38906":9,"38907":5,"38908":2,"38909":8,"38910":8,"38911":7,"38912":2,"38913":9,"38914":7,"38915":7,"38916":5,"38917":8,"38918":8,"38919":9,"38920":5,"38921":9,"38922":7,"38923":8,"38924":10,"38925":8,"38926":9,"38927":8,"38928":5,"38929":9,"38930":9,"38931":8,"38932":7,"38933":5,"38934":6,"38935":8,"38936":2,"38937":5,"38938":8,"38939":6,"38940":2,"38941":3,"38942":7,"38943":9,"38944":7,"38945":9,"38946":8,"38947":7,"38948":1,"38949":3,"38950":7,"38951":1,"38952":8,"38953":9,"38954":1,"38955":7,"38956":8,"38957":1,"38958":8,"38959":5,"38960":9,"38961":4,"38962":9,"38963":10,"38964":7,"38965":2,"38966":1,"38967":6,"38968":8,"38969":4,"38970":3,"38971":9,"38972":3,"38973":8,"38974":6,"38975":5,"38976":7,"38977":2,"38978":3,"38979":9,"38980":4,"38981":3,"38982":9,"38983":2,"38984":7,"38985":8,"38986":5,"38987":2,"38988":9,"38989":9,"38990":10,"38991":7,"38992":4,"38993":5,"38994":9,"38995":7,"38996":5,"38997":1,"38998":7,"38999":7,"39000":7,"39001":9,"39002":2,"39003":7,"39004":9,"39005":5,"39006":8,"39007":5,"39008":9,"39009":6,"39010":7,"39011":2,"39012":7,"39013":9,"39014":4,"39015":5,"39016":2,"39017":7,"39018":5,"39019":8,"39020":5,"39021":9,"39022":8,"39023":8,"39024":3,"39025":10,"39026":1,"39027":2,"39028":7,"39029":2,"39030":8,"39031":8,"39032":7,"39033":8,"39034":10,"39035":5,"39036":1,"39037":8,"39038":8,"39039":4,"39040":8,"39041":8,"39042":4,"39043":9,"39044":10,"39045":9,"39046":5,"39047":9,"39048":7,"39049":2,"39050":8,"39051":8,"39052":5,"39053":8,"39054":10,"39055":4,"39056":2,"39057":5,"39058":7,"39059":8,"39060":8,"39061":8,"39062":4,"39063":7,"39064":7,"39065":9,"39066":8,"39067":8,"39068":9,"39069":6,"39070":8,"39071":10,"39072":7,"39073":9,"39074":8,"39075":3,"39076":7,"39077":4,"39078":7,"39079":7,"39080":7,"39081":2,"39082":9,"39083":8,"39084":3,"39085":8,"39086":2,"39087":7,"39088":8,"39089":7,"39090":9,"39091":1,"39092":7,"39093":4,"39094":8,"39095":1,"39096":5,"39097":9,"39098":9,"39099":5,"39100":3,"39101":7,"39102":1,"39103":9,"39104":1,"39105":6,"39106":8,"39107":8,"39108":6,"39109":8,"39110":7,"39111":8,"39112":7,"39113":1,"39114":7,"39115":8,"39116":8,"39117":7,"39118":5,"39119":8,"39120":7,"39121":3,"39122":9,"39123":9,"39124":3,"39125":9,"39126":2,"39127":7,"39128":2,"39129":4,"39130":7,"39131":9,"39132":8,"39133":1,"39134":7,"39135":9,"39136":5,"39137":7,"39138":8,"39139":2,"39140":5,"39141":7,"39142":4,"39143":9,"39144":9,"39145":10,"39146":5,"39147":9,"39148":4,"39149":8,"39150":9,"39151":7,"39152":7,"39153":1,"39154":2,"39155":4,"39156":7,"39157":2,"39158":9,"39159":8,"39160":10,"39161":7,"39162":4,"39163":9,"39164":2,"39165":7,"39166":3,"39167":9,"39168":6,"39169":8,"39170":7,"39171":7,"39172":3,"39173":8,"39174":3,"39175":9,"39176":9,"39177":9,"39178":3,"39179":9,"39180":1,"39181":2,"39182":1,"39183":7,"39184":1,"39185":7,"39186":2,"39187":5,"39188":9,"39189":2,"39190":5,"39191":8,"39192":7,"39193":5,"39194":6,"39195":2,"39196":2,"39197":7,"39198":9,"39199":8,"39200":5,"39201":5,"39202":8,"39203":6,"39204":7,"39205":7,"39206":5,"39207":5,"39208":9,"39209":6,"39210":9,"39211":8,"39212":10,"39213":2,"39214":10,"39215":9,"39216":3,"39217":8,"39218":8,"39219":4,"39220":1,"39221":2,"39222":7,"39223":5,"39224":7,"39225":7,"39226":2,"39227":7,"39228":7,"39229":5,"39230":7,"39231":7,"39232":5,"39233":2,"39234":8,"39235":4,"39236":8,"39237":1,"39238":9,"39239":5,"39240":7,"39241":8,"39242":5,"39243":7,"39244":3,"39245":8,"39246":8,"39247":8,"39248":9,"39249":7,"39250":9,"39251":7,"39252":7,"39253":7,"39254":7,"39255":3,"39256":7,"39257":8,"39258":6,"39259":4,"39260":5,"39261":2,"39262":8,"39263":8,"39264":7,"39265":1,"39266":6,"39267":5,"39268":8,"39269":8,"39270":2,"39271":7,"39272":2,"39273":8,"39274":10,"39275":1,"39276":2,"39277":8,"39278":6,"39279":2,"39280":6,"39281":7,"39282":2,"39283":1,"39284":8,"39285":10,"39286":6,"39287":7,"39288":8,"39289":9,"39290":7,"39291":9,"39292":1,"39293":9,"39294":7,"39295":8,"39296":8,"39297":7,"39298":9,"39299":8,"39300":3,"39301":5,"39302":7,"39303":9,"39304":5,"39305":9,"39306":8,"39307":9,"39308":9,"39309":6,"39310":8,"39311":10,"39312":1,"39313":2,"39314":3,"39315":7,"39316":5,"39317":8,"39318":7,"39319":10,"39320":8,"39321":7,"39322":7,"39323":7,"39324":9,"39325":8,"39326":9,"39327":7,"39328":8,"39329":1,"39330":7,"39331":1,"39332":7,"39333":7,"39334":7,"39335":4,"39336":1,"39337":8,"39338":2,"39339":2,"39340":8,"39341":9,"39342":3,"39343":7,"39344":4,"39345":1,"39346":2,"39347":8,"39348":5,"39349":5,"39350":7,"39351":2,"39352":7,"39353":8,"39354":4,"39355":5,"39356":3,"39357":8,"39358":7,"39359":5,"39360":1,"39361":8,"39362":9,"39363":8,"39364":4,"39365":3,"39366":3,"39367":7,"39368":8,"39369":1,"39370":2,"39371":9,"39372":5,"39373":9,"39374":9,"39375":9,"39376":8,"39377":3,"39378":7,"39379":5,"39380":8,"39381":7,"39382":6,"39383":3,"39384":5,"39385":9,"39386":8,"39387":5,"39388":5,"39389":8,"39390":5,"39391":8,"39392":8,"39393":8,"39394":2,"39395":7,"39396":8,"39397":7,"39398":7,"39399":3,"39400":9,"39401":2,"39402":5,"39403":9,"39404":5,"39405":9,"39406":7,"39407":4,"39408":3,"39409":5,"39410":10,"39411":7,"39412":5,"39413":7,"39414":3,"39415":7,"39416":5,"39417":7,"39418":9,"39419":8,"39420":8,"39421":7,"39422":7,"39423":7,"39424":8,"39425":7,"39426":1,"39427":8,"39428":2,"39429":6,"39430":9,"39431":8,"39432":3,"39433":9,"39434":9,"39435":8,"39436":3,"39437":8,"39438":8,"39439":7,"39440":10,"39441":5,"39442":1,"39443":4,"39444":3,"39445":8,"39446":7,"39447":6,"39448":5,"39449":7,"39450":8,"39451":3,"39452":8,"39453":1,"39454":4,"39455":7,"39456":8,"39457":8,"39458":8,"39459":5,"39460":2,"39461":8,"39462":5,"39463":5,"39464":10,"39465":8,"39466":3,"39467":7,"39468":10,"39469":8,"39470":2,"39471":6,"39472":7,"39473":7,"39474":2,"39475":8,"39476":8,"39477":7,"39478":4,"39479":10,"39480":9,"39481":10,"39482":8,"39483":2,"39484":7,"39485":8,"39486":6,"39487":5,"39488":8,"39489":5,"39490":7,"39491":1,"39492":4,"39493":4,"39494":9,"39495":9,"39496":10,"39497":5,"39498":8,"39499":1,"39500":9,"39501":2,"39502":2,"39503":9,"39504":4,"39505":8,"39506":7,"39507":5,"39508":2,"39509":8,"39510":3,"39511":2,"39512":8,"39513":10,"39514":10,"39515":8,"39516":6,"39517":9,"39518":7,"39519":6,"39520":9,"39521":2,"39522":2,"39523":8,"39524":9,"39525":6,"39526":7,"39527":5,"39528":7,"39529":2,"39530":8,"39531":7,"39532":8,"39533":9,"39534":4,"39535":5,"39536":5,"39537":8,"39538":7,"39539":9,"39540":7,"39541":3,"39542":2,"39543":2,"39544":8,"39545":9,"39546":9,"39547":10,"39548":7,"39549":7,"39550":2,"39551":7,"39552":8,"39553":7,"39554":2,"39555":8,"39556":2,"39557":2,"39558":3,"39559":5,"39560":3,"39561":7,"39562":5,"39563":7,"39564":5,"39565":7,"39566":3,"39567":5,"39568":5,"39569":2,"39570":6,"39571":2,"39572":1,"39573":6,"39574":5,"39575":9,"39576":7,"39577":1,"39578":8,"39579":6,"39580":9,"39581":7,"39582":7,"39583":9,"39584":9,"39585":10,"39586":2,"39587":7,"39588":5,"39589":7,"39590":5,"39591":10,"39592":3,"39593":9,"39594":6,"39595":8,"39596":10,"39597":7,"39598":5,"39599":7,"39600":7,"39601":2,"39602":5,"39603":1,"39604":7,"39605":5,"39606":7,"39607":7,"39608":1,"39609":8,"39610":10,"39611":8,"39612":1,"39613":2,"39614":8,"39615":8,"39616":8,"39617":7,"39618":2,"39619":5,"39620":8,"39621":7,"39622":7,"39623":5,"39624":8,"39625":1,"39626":7,"39627":8,"39628":9,"39629":5,"39630":7,"39631":2,"39632":8,"39633":5,"39634":7,"39635":4,"39636":5,"39637":1,"39638":1,"39639":8,"39640":8,"39641":7,"39642":9,"39643":7,"39644":8,"39645":5,"39646":8,"39647":7,"39648":7,"39649":9,"39650":9,"39651":9,"39652":8,"39653":6,"39654":2,"39655":5,"39656":1,"39657":5,"39658":1,"39659":10,"39660":9,"39661":9,"39662":8,"39663":8,"39664":2,"39665":8,"39666":9,"39667":10,"39668":7,"39669":8,"39670":7,"39671":4,"39672":7,"39673":8,"39674":9,"39675":9,"39676":4,"39677":7,"39678":7,"39679":2,"39680":2,"39681":4,"39682":9,"39683":5,"39684":9,"39685":10,"39686":9,"39687":4,"39688":7,"39689":9,"39690":2,"39691":2,"39692":7,"39693":2,"39694":7,"39695":5,"39696":1,"39697":10,"39698":8,"39699":7,"39700":9,"39701":7,"39702":8,"39703":7,"39704":5,"39705":6,"39706":8,"39707":4,"39708":4,"39709":2,"39710":5,"39711":2,"39712":8,"39713":2,"39714":9,"39715":9,"39716":8,"39717":2,"39718":10,"39719":9,"39720":1,"39721":7,"39722":5,"39723":2,"39724":1,"39725":7,"39726":1,"39727":2,"39728":10,"39729":7,"39730":6,"39731":7,"39732":4,"39733":3,"39734":9,"39735":5,"39736":4,"39737":7,"39738":8,"39739":2,"39740":7,"39741":9,"39742":2,"39743":7,"39744":1,"39745":1,"39746":5,"39747":9,"39748":8,"39749":8,"39750":5,"39751":8,"39752":8,"39753":9,"39754":5,"39755":7,"39756":7,"39757":3,"39758":5,"39759":9,"39760":9,"39761":6,"39762":9,"39763":10,"39764":4,"39765":8,"39766":1,"39767":8,"39768":7,"39769":8,"39770":10,"39771":10,"39772":9,"39773":3,"39774":9,"39775":2,"39776":7,"39777":9,"39778":8,"39779":1,"39780":7,"39781":3,"39782":7,"39783":9,"39784":8,"39785":9,"39786":8,"39787":8,"39788":7,"39789":4,"39790":9,"39791":3,"39792":3,"39793":5,"39794":9,"39795":1,"39796":9,"39797":8,"39798":9,"39799":1,"39800":2,"39801":6,"39802":9,"39803":8,"39804":5,"39805":7,"39806":3,"39807":10,"39808":4,"39809":5,"39810":10,"39811":9,"39812":8,"39813":8,"39814":8,"39815":6,"39816":9,"39817":5,"39818":10,"39819":10,"39820":9,"39821":9,"39822":10,"39823":2,"39824":7,"39825":8,"39826":3,"39827":2,"39828":5,"39829":2,"39830":2,"39831":9,"39832":8,"39833":2,"39834":8,"39835":5,"39836":5,"39837":3,"39838":9,"39839":8,"39840":10,"39841":6,"39842":2,"39843":1,"39844":2,"39845":10,"39846":7,"39847":8,"39848":10,"39849":5,"39850":5,"39851":6,"39852":5,"39853":4,"39854":3,"39855":8,"39856":7,"39857":5,"39858":5,"39859":8,"39860":2,"39861":9,"39862":9,"39863":2,"39864":9,"39865":7,"39866":9,"39867":7,"39868":6,"39869":8,"39870":2,"39871":9,"39872":2,"39873":4,"39874":5,"39875":9,"39876":2,"39877":9,"39878":8,"39879":8,"39880":9,"39881":1,"39882":9,"39883":6,"39884":2,"39885":8,"39886":5,"39887":7,"39888":8,"39889":8,"39890":5,"39891":1,"39892":8,"39893":8,"39894":9,"39895":8,"39896":10,"39897":9,"39898":5,"39899":7,"39900":2,"39901":9,"39902":8,"39903":9,"39904":1,"39905":1,"39906":4,"39907":2,"39908":9,"39909":5,"39910":8,"39911":3,"39912":7,"39913":7,"39914":2,"39915":8,"39916":3,"39917":6,"39918":6,"39919":8,"39920":4,"39921":7,"39922":7,"39923":5,"39924":9,"39925":9,"39926":9,"39927":7,"39928":2,"39929":5,"39930":9,"39931":8,"39932":9,"39933":7,"39934":7,"39935":7,"39936":9,"39937":7,"39938":3,"39939":7,"39940":6,"39941":7,"39942":3,"39943":8,"39944":8,"39945":9,"39946":9,"39947":7,"39948":5,"39949":3,"39950":7,"39951":7,"39952":7,"39953":6,"39954":7,"39955":7,"39956":5,"39957":2,"39958":7,"39959":9,"39960":10,"39961":9,"39962":7,"39963":7,"39964":6,"39965":5,"39966":4,"39967":10,"39968":6,"39969":8,"39970":9,"39971":4,"39972":7,"39973":7,"39974":8,"39975":8,"39976":6,"39977":6,"39978":8,"39979":7,"39980":5,"39981":6,"39982":8,"39983":8,"39984":10,"39985":5,"39986":7,"39987":6,"39988":10,"39989":8,"39990":2,"39991":8,"39992":9,"39993":8,"39994":5,"39995":1,"39996":5,"39997":4,"39998":7,"39999":4,"40000":7,"40001":9,"40002":2,"40003":8,"40004":9,"40005":9,"40006":9,"40007":9,"40008":6,"40009":7,"40010":7,"40011":6,"40012":8,"40013":2,"40014":7,"40015":8,"40016":3,"40017":9,"40018":9,"40019":10,"40020":7,"40021":2,"40022":9,"40023":7,"40024":6,"40025":7,"40026":10,"40027":9,"40028":7,"40029":7,"40030":6,"40031":8,"40032":8,"40033":9,"40034":8,"40035":6,"40036":8,"40037":9,"40038":9,"40039":7,"40040":8,"40041":1,"40042":5,"40043":2,"40044":3,"40045":2,"40046":10,"40047":2,"40048":8,"40049":4,"40050":8,"40051":9,"40052":7,"40053":8,"40054":4,"40055":2,"40056":6,"40057":8,"40058":8,"40059":7,"40060":4,"40061":6,"40062":8,"40063":7,"40064":7,"40065":8,"40066":7,"40067":7,"40068":8,"40069":3,"40070":1,"40071":7,"40072":2,"40073":8,"40074":6,"40075":9,"40076":10,"40077":7,"40078":6,"40079":10,"40080":4,"40081":5,"40082":3,"40083":6,"40084":9,"40085":2,"40086":10,"40087":9,"40088":9,"40089":2,"40090":8,"40091":5,"40092":3,"40093":8,"40094":7,"40095":7,"40096":3,"40097":9,"40098":8,"40099":9,"40100":8,"40101":7,"40102":8,"40103":6,"40104":2,"40105":7,"40106":7,"40107":10,"40108":5,"40109":8,"40110":2,"40111":8,"40112":7,"40113":8,"40114":5,"40115":5,"40116":2,"40117":8,"40118":9,"40119":7,"40120":7,"40121":4,"40122":1,"40123":9,"40124":10,"40125":9,"40126":2,"40127":8,"40128":8,"40129":10,"40130":8,"40131":2,"40132":10,"40133":9,"40134":8,"40135":10,"40136":7,"40137":6,"40138":2,"40139":7,"40140":7,"40141":6,"40142":7,"40143":3,"40144":8,"40145":7,"40146":8,"40147":5,"40148":3,"40149":8,"40150":4,"40151":2,"40152":7,"40153":8,"40154":2,"40155":1,"40156":9,"40157":3,"40158":7,"40159":8,"40160":3,"40161":6,"40162":8,"40163":8,"40164":2,"40165":3,"40166":8,"40167":4,"40168":9,"40169":9,"40170":8,"40171":10,"40172":5,"40173":9,"40174":5,"40175":2,"40176":7,"40177":10,"40178":9,"40179":1,"40180":7,"40181":7,"40182":5,"40183":5,"40184":7,"40185":8,"40186":10,"40187":7,"40188":9,"40189":9,"40190":1,"40191":8,"40192":10,"40193":7,"40194":9,"40195":8,"40196":8,"40197":2,"40198":9,"40199":9,"40200":8,"40201":10,"40202":5,"40203":8,"40204":8,"40205":8,"40206":5,"40207":7,"40208":7,"40209":6,"40210":9,"40211":5,"40212":2,"40213":8,"40214":8,"40215":5,"40216":5,"40217":5,"40218":7,"40219":1,"40220":8,"40221":6,"40222":8,"40223":7,"40224":8,"40225":8,"40226":5,"40227":9,"40228":2,"40229":1,"40230":9,"40231":3,"40232":8,"40233":3,"40234":9,"40235":7,"40236":1,"40237":7,"40238":4,"40239":1,"40240":9,"40241":7,"40242":5,"40243":5,"40244":6,"40245":5,"40246":7,"40247":6,"40248":2,"40249":9,"40250":8,"40251":8,"40252":7,"40253":9,"40254":8,"40255":8,"40256":1,"40257":6,"40258":5,"40259":3,"40260":4,"40261":3,"40262":8,"40263":7,"40264":4,"40265":7,"40266":9,"40267":5,"40268":8,"40269":1,"40270":2,"40271":8,"40272":7,"40273":7,"40274":5,"40275":8,"40276":5,"40277":5,"40278":10,"40279":8,"40280":8,"40281":7,"40282":9,"40283":9,"40284":9,"40285":5,"40286":9,"40287":10,"40288":9,"40289":7,"40290":9,"40291":1,"40292":2,"40293":9,"40294":7,"40295":7,"40296":7,"40297":9,"40298":4,"40299":9,"40300":8,"40301":1,"40302":7,"40303":1,"40304":5,"40305":4,"40306":7,"40307":5,"40308":7,"40309":10,"40310":5,"40311":10,"40312":2,"40313":3,"40314":7,"40315":7,"40316":4,"40317":10,"40318":5,"40319":8,"40320":8,"40321":8,"40322":7,"40323":8,"40324":9,"40325":5,"40326":4,"40327":6,"40328":7,"40329":10,"40330":10,"40331":2,"40332":7,"40333":7,"40334":5,"40335":5,"40336":9,"40337":7,"40338":2,"40339":7,"40340":8,"40341":2,"40342":5,"40343":8,"40344":9,"40345":2,"40346":8,"40347":9,"40348":6,"40349":8,"40350":3,"40351":6,"40352":2,"40353":2,"40354":1,"40355":3,"40356":3,"40357":7,"40358":7,"40359":9,"40360":2,"40361":8,"40362":7,"40363":7,"40364":3,"40365":8,"40366":9,"40367":8,"40368":8,"40369":4,"40370":9,"40371":9,"40372":7,"40373":10,"40374":7,"40375":2,"40376":2,"40377":2,"40378":1,"40379":2,"40380":7,"40381":8,"40382":8,"40383":8,"40384":8,"40385":9,"40386":9,"40387":4,"40388":5,"40389":8,"40390":8,"40391":6,"40392":8,"40393":7,"40394":7,"40395":7,"40396":7,"40397":3,"40398":7,"40399":1,"40400":9,"40401":9,"40402":7,"40403":7,"40404":2,"40405":6,"40406":9,"40407":9,"40408":9,"40409":7,"40410":7,"40411":7,"40412":7,"40413":4,"40414":5,"40415":9,"40416":2,"40417":7,"40418":8,"40419":8,"40420":7,"40421":8,"40422":6,"40423":7,"40424":8,"40425":2,"40426":2,"40427":1,"40428":7,"40429":3,"40430":6,"40431":8,"40432":5,"40433":7,"40434":2,"40435":10,"40436":7,"40437":2,"40438":8,"40439":8,"40440":7,"40441":9,"40442":2,"40443":5,"40444":9,"40445":7,"40446":7,"40447":9,"40448":1,"40449":10,"40450":8,"40451":2,"40452":4,"40453":3,"40454":8,"40455":3,"40456":2,"40457":8,"40458":9,"40459":7,"40460":1,"40461":10,"40462":10,"40463":7,"40464":2,"40465":8,"40466":9,"40467":7,"40468":9,"40469":2,"40470":5,"40471":5,"40472":3,"40473":8,"40474":8,"40475":6,"40476":5,"40477":7,"40478":9,"40479":5,"40480":8,"40481":8,"40482":7,"40483":8,"40484":9,"40485":9,"40486":9,"40487":8,"40488":2,"40489":2,"40490":8,"40491":5,"40492":8,"40493":8,"40494":9,"40495":7,"40496":2,"40497":6,"40498":2,"40499":7,"40500":9,"40501":8,"40502":9,"40503":10,"40504":10,"40505":7,"40506":8,"40507":5,"40508":6,"40509":3,"40510":5,"40511":3,"40512":7,"40513":8,"40514":8,"40515":7,"40516":7,"40517":9,"40518":8,"40519":1,"40520":3,"40521":3,"40522":8,"40523":8,"40524":8,"40525":9,"40526":7,"40527":7,"40528":10,"40529":8,"40530":5,"40531":1,"40532":8,"40533":9,"40534":2,"40535":4,"40536":9,"40537":8,"40538":8,"40539":9,"40540":7,"40541":7,"40542":6,"40543":3,"40544":7,"40545":7,"40546":8,"40547":9,"40548":5,"40549":4,"40550":1,"40551":6,"40552":10,"40553":1,"40554":2,"40555":2,"40556":7,"40557":7,"40558":2,"40559":6,"40560":1,"40561":7,"40562":3,"40563":7,"40564":8,"40565":5,"40566":4,"40567":5,"40568":5,"40569":3,"40570":9,"40571":2,"40572":1,"40573":2,"40574":5,"40575":7,"40576":7,"40577":6,"40578":3,"40579":6,"40580":9,"40581":7,"40582":9,"40583":9,"40584":9,"40585":9,"40586":5,"40587":5,"40588":7,"40589":7,"40590":5,"40591":5,"40592":5,"40593":1,"40594":2,"40595":3,"40596":3,"40597":9,"40598":5,"40599":5,"40600":7,"40601":2,"40602":10,"40603":8,"40604":8,"40605":9,"40606":7,"40607":9,"40608":9,"40609":6,"40610":8,"40611":8,"40612":5,"40613":9,"40614":7,"40615":9,"40616":7,"40617":8,"40618":9,"40619":9,"40620":7,"40621":10,"40622":7,"40623":4,"40624":5,"40625":2,"40626":1,"40627":8,"40628":8,"40629":10,"40630":9,"40631":2,"40632":2,"40633":7,"40634":1,"40635":8,"40636":8,"40637":9,"40638":6,"40639":2,"40640":8,"40641":6,"40642":8,"40643":4,"40644":7,"40645":7,"40646":7,"40647":2,"40648":3,"40649":2,"40650":5,"40651":5,"40652":7,"40653":9,"40654":1,"40655":7,"40656":8,"40657":7,"40658":10,"40659":7,"40660":9,"40661":8,"40662":8,"40663":8,"40664":8,"40665":8,"40666":3,"40667":3,"40668":6,"40669":9,"40670":8,"40671":7,"40672":7,"40673":9,"40674":2,"40675":8,"40676":1,"40677":5,"40678":1,"40679":9,"40680":5,"40681":3,"40682":8,"40683":2,"40684":4,"40685":1,"40686":4,"40687":4,"40688":8,"40689":5,"40690":1,"40691":4,"40692":7,"40693":9,"40694":7,"40695":5,"40696":1,"40697":6,"40698":5,"40699":8,"40700":8,"40701":7,"40702":6,"40703":2,"40704":7,"40705":3,"40706":8,"40707":9,"40708":9,"40709":5,"40710":4,"40711":2,"40712":7,"40713":7,"40714":8,"40715":7,"40716":3,"40717":4,"40718":10,"40719":10,"40720":5,"40721":8,"40722":7,"40723":8,"40724":3,"40725":7,"40726":5,"40727":8,"40728":7,"40729":8,"40730":9,"40731":8,"40732":7,"40733":8,"40734":8,"40735":5,"40736":9,"40737":5,"40738":2,"40739":8,"40740":7,"40741":1,"40742":1,"40743":9,"40744":8,"40745":9,"40746":3,"40747":10,"40748":3,"40749":6,"40750":10,"40751":9,"40752":8,"40753":9,"40754":7,"40755":7,"40756":10,"40757":8,"40758":10,"40759":7,"40760":4,"40761":7,"40762":1,"40763":9,"40764":9,"40765":8,"40766":9,"40767":5,"40768":1,"40769":9,"40770":10,"40771":8,"40772":4,"40773":7,"40774":7,"40775":8,"40776":10,"40777":4,"40778":9,"40779":9,"40780":8,"40781":3,"40782":7,"40783":2,"40784":9,"40785":1,"40786":10,"40787":5,"40788":7,"40789":7,"40790":8,"40791":7,"40792":6,"40793":6,"40794":2,"40795":9,"40796":1,"40797":7,"40798":8,"40799":8,"40800":2,"40801":7,"40802":5,"40803":8,"40804":7,"40805":10,"40806":8,"40807":7,"40808":9,"40809":7,"40810":9,"40811":7,"40812":2,"40813":7,"40814":10,"40815":7,"40816":8,"40817":9,"40818":1,"40819":4,"40820":9,"40821":1,"40822":9,"40823":8,"40824":9,"40825":6,"40826":2,"40827":7,"40828":8,"40829":2,"40830":7,"40831":7,"40832":8,"40833":6,"40834":3,"40835":2,"40836":1,"40837":2,"40838":1,"40839":9,"40840":1,"40841":5,"40842":7,"40843":8,"40844":9,"40845":7,"40846":8,"40847":7,"40848":7,"40849":5,"40850":4,"40851":8,"40852":7,"40853":5,"40854":7,"40855":4,"40856":3,"40857":9,"40858":5,"40859":8,"40860":2,"40861":8,"40862":5,"40863":2,"40864":7,"40865":10,"40866":1,"40867":10,"40868":2,"40869":7,"40870":2,"40871":8,"40872":6,"40873":7,"40874":7,"40875":4,"40876":9,"40877":5,"40878":4,"40879":4,"40880":6,"40881":9,"40882":3,"40883":2,"40884":8,"40885":7,"40886":9,"40887":9,"40888":5,"40889":10,"40890":1,"40891":7,"40892":9,"40893":7,"40894":8,"40895":4,"40896":6,"40897":4,"40898":8,"40899":1,"40900":8,"40901":7,"40902":6,"40903":7,"40904":2,"40905":7,"40906":10,"40907":3,"40908":7,"40909":9,"40910":7,"40911":7,"40912":7,"40913":1,"40914":7,"40915":2,"40916":7,"40917":8,"40918":8,"40919":8,"40920":2,"40921":9,"40922":6,"40923":7,"40924":7,"40925":9,"40926":8,"40927":2,"40928":2,"40929":9,"40930":2,"40931":8,"40932":1,"40933":9,"40934":4,"40935":5,"40936":8,"40937":9,"40938":8,"40939":2,"40940":9,"40941":9,"40942":6,"40943":4,"40944":5,"40945":7,"40946":9,"40947":9,"40948":9,"40949":7,"40950":10,"40951":5,"40952":3,"40953":9,"40954":1,"40955":8,"40956":4,"40957":6,"40958":3,"40959":9,"40960":7,"40961":8,"40962":8,"40963":8,"40964":8,"40965":8,"40966":10,"40967":9,"40968":2,"40969":6,"40970":7,"40971":2,"40972":2,"40973":9,"40974":7,"40975":8,"40976":3,"40977":2,"40978":7,"40979":8,"40980":5,"40981":3,"40982":6,"40983":2,"40984":9,"40985":7,"40986":8,"40987":7,"40988":2,"40989":6,"40990":6,"40991":8,"40992":9,"40993":7,"40994":9,"40995":1,"40996":7,"40997":3,"40998":8,"40999":2,"41000":8,"41001":5,"41002":7,"41003":2,"41004":9,"41005":2,"41006":9,"41007":2,"41008":2,"41009":5,"41010":8,"41011":6,"41012":5,"41013":2,"41014":8,"41015":10,"41016":8,"41017":2,"41018":5,"41019":7,"41020":10,"41021":9,"41022":7,"41023":6,"41024":8,"41025":7,"41026":7,"41027":8,"41028":8,"41029":8,"41030":5,"41031":3,"41032":2,"41033":3,"41034":8,"41035":7,"41036":7,"41037":9,"41038":5,"41039":10,"41040":9,"41041":5,"41042":3,"41043":2,"41044":10,"41045":8,"41046":9,"41047":5,"41048":2,"41049":5,"41050":8,"41051":7,"41052":1,"41053":8,"41054":7,"41055":8,"41056":9,"41057":7,"41058":8,"41059":8,"41060":9,"41061":5,"41062":4,"41063":2,"41064":8,"41065":8,"41066":2,"41067":6,"41068":3,"41069":8,"41070":10,"41071":8,"41072":8,"41073":6,"41074":3,"41075":8,"41076":10,"41077":8,"41078":8,"41079":5,"41080":8,"41081":2,"41082":7,"41083":10,"41084":8,"41085":7,"41086":5,"41087":8,"41088":9,"41089":1,"41090":7,"41091":8,"41092":8,"41093":8,"41094":8,"41095":10,"41096":7,"41097":2,"41098":2,"41099":7,"41100":2,"41101":9,"41102":6,"41103":5,"41104":5,"41105":7,"41106":8,"41107":5,"41108":6,"41109":7,"41110":7,"41111":6,"41112":7,"41113":3,"41114":9,"41115":9,"41116":6,"41117":2,"41118":2,"41119":7,"41120":7,"41121":5,"41122":8,"41123":2,"41124":8,"41125":8,"41126":6,"41127":7,"41128":9,"41129":9,"41130":9,"41131":2,"41132":1,"41133":10,"41134":8,"41135":7,"41136":7,"41137":2,"41138":9,"41139":8,"41140":7,"41141":8,"41142":4,"41143":7,"41144":5,"41145":10,"41146":3,"41147":9,"41148":8,"41149":7,"41150":9,"41151":7,"41152":7,"41153":6,"41154":1,"41155":1,"41156":8,"41157":7,"41158":7,"41159":8,"41160":8,"41161":8,"41162":8,"41163":9,"41164":7,"41165":10,"41166":2,"41167":7,"41168":9,"41169":7,"41170":8,"41171":2,"41172":7,"41173":7,"41174":9,"41175":5,"41176":7,"41177":6,"41178":9,"41179":8,"41180":2,"41181":10,"41182":2,"41183":1,"41184":1,"41185":5,"41186":7,"41187":2,"41188":9,"41189":7,"41190":6,"41191":7,"41192":7,"41193":4,"41194":10,"41195":7,"41196":8,"41197":6,"41198":6,"41199":1,"41200":1,"41201":1,"41202":8,"41203":7,"41204":5,"41205":3,"41206":7,"41207":5,"41208":7,"41209":8,"41210":1,"41211":10,"41212":7,"41213":9,"41214":8,"41215":10,"41216":7,"41217":4,"41218":4,"41219":2,"41220":5,"41221":9,"41222":8,"41223":4,"41224":1,"41225":9,"41226":2,"41227":5,"41228":8,"41229":10,"41230":8,"41231":4,"41232":7,"41233":7,"41234":1,"41235":8,"41236":2,"41237":8,"41238":8,"41239":6,"41240":7,"41241":10,"41242":7,"41243":7,"41244":7,"41245":7,"41246":7,"41247":7,"41248":8,"41249":5,"41250":7,"41251":7,"41252":7,"41253":1,"41254":1,"41255":2,"41256":10,"41257":8,"41258":2,"41259":5,"41260":8,"41261":8,"41262":8,"41263":2,"41264":8,"41265":2,"41266":10,"41267":8,"41268":9,"41269":6,"41270":8,"41271":9,"41272":8,"41273":7,"41274":9,"41275":9,"41276":8,"41277":7,"41278":7,"41279":2,"41280":5,"41281":1,"41282":9,"41283":9,"41284":7,"41285":8,"41286":9,"41287":10,"41288":6,"41289":2,"41290":7,"41291":10,"41292":4,"41293":10,"41294":2,"41295":3,"41296":7,"41297":5,"41298":2,"41299":7,"41300":6,"41301":7,"41302":8,"41303":8,"41304":5,"41305":2,"41306":8,"41307":2,"41308":7,"41309":10,"41310":9,"41311":2,"41312":6,"41313":7,"41314":8,"41315":7,"41316":7,"41317":3,"41318":9,"41319":7,"41320":2,"41321":9,"41322":7,"41323":8,"41324":2,"41325":2,"41326":3,"41327":7,"41328":5,"41329":1,"41330":8,"41331":2,"41332":8,"41333":5,"41334":1,"41335":4,"41336":2,"41337":4,"41338":7,"41339":3,"41340":10,"41341":10,"41342":5,"41343":8,"41344":7,"41345":5,"41346":9,"41347":7,"41348":2,"41349":4,"41350":9,"41351":8,"41352":3,"41353":5,"41354":7,"41355":6,"41356":4,"41357":5,"41358":8,"41359":1,"41360":7,"41361":6,"41362":5,"41363":9,"41364":5,"41365":6,"41366":2,"41367":10,"41368":9,"41369":7,"41370":7,"41371":2,"41372":1,"41373":2,"41374":6,"41375":7,"41376":7,"41377":7,"41378":1,"41379":8,"41380":7,"41381":2,"41382":8,"41383":7,"41384":6,"41385":7,"41386":5,"41387":8,"41388":1,"41389":5,"41390":4,"41391":8,"41392":6,"41393":7,"41394":10,"41395":5,"41396":7,"41397":8,"41398":7,"41399":2,"41400":7,"41401":9,"41402":8,"41403":7,"41404":6,"41405":2,"41406":1,"41407":9,"41408":7,"41409":6,"41410":8,"41411":9,"41412":7,"41413":2,"41414":9,"41415":7,"41416":9,"41417":10,"41418":8,"41419":1,"41420":7,"41421":10,"41422":9,"41423":8,"41424":2,"41425":5,"41426":5,"41427":5,"41428":9,"41429":7,"41430":8,"41431":2,"41432":6,"41433":9,"41434":5,"41435":8,"41436":8,"41437":8,"41438":6,"41439":8,"41440":8,"41441":8,"41442":5,"41443":4,"41444":1,"41445":8,"41446":7,"41447":3,"41448":7,"41449":7,"41450":8,"41451":2,"41452":8,"41453":5,"41454":8,"41455":8,"41456":4,"41457":9,"41458":8,"41459":4,"41460":9,"41461":5,"41462":4,"41463":6,"41464":7,"41465":6,"41466":10,"41467":9,"41468":7,"41469":9,"41470":10,"41471":7,"41472":5,"41473":1,"41474":9,"41475":9,"41476":6,"41477":5,"41478":9,"41479":5,"41480":9,"41481":7,"41482":1,"41483":7,"41484":10,"41485":8,"41486":5,"41487":6,"41488":5,"41489":7,"41490":2,"41491":4,"41492":7,"41493":7,"41494":3,"41495":8,"41496":6,"41497":8,"41498":5,"41499":3,"41500":7,"41501":2,"41502":8,"41503":7,"41504":8,"41505":7,"41506":4,"41507":8,"41508":10,"41509":10,"41510":1,"41511":4,"41512":5,"41513":7,"41514":7,"41515":7,"41516":1,"41517":8,"41518":8,"41519":1,"41520":9,"41521":8,"41522":10,"41523":5,"41524":7,"41525":8,"41526":9,"41527":1,"41528":8,"41529":10,"41530":6,"41531":8,"41532":5,"41533":4,"41534":2,"41535":7,"41536":2,"41537":9,"41538":5,"41539":5,"41540":7,"41541":7,"41542":9,"41543":8,"41544":9,"41545":8,"41546":7,"41547":7,"41548":6,"41549":9,"41550":2,"41551":7,"41552":2,"41553":8,"41554":6,"41555":8,"41556":7,"41557":7,"41558":6,"41559":7,"41560":3,"41561":6,"41562":8,"41563":8,"41564":10,"41565":9,"41566":5,"41567":2,"41568":8,"41569":4,"41570":8,"41571":9,"41572":8,"41573":1,"41574":10,"41575":7,"41576":8,"41577":9,"41578":5,"41579":8,"41580":5,"41581":8,"41582":6,"41583":9,"41584":7,"41585":6,"41586":8,"41587":8,"41588":8,"41589":3,"41590":4,"41591":9,"41592":5,"41593":9,"41594":1,"41595":9,"41596":5,"41597":7,"41598":3,"41599":8,"41600":2,"41601":8,"41602":8,"41603":9,"41604":8,"41605":9,"41606":7,"41607":9,"41608":7,"41609":5,"41610":7,"41611":7,"41612":8,"41613":5,"41614":8,"41615":9,"41616":2,"41617":2,"41618":10,"41619":7,"41620":2,"41621":8,"41622":7,"41623":8,"41624":1,"41625":9,"41626":1,"41627":5,"41628":9,"41629":4,"41630":6,"41631":8,"41632":2,"41633":8,"41634":2,"41635":9,"41636":9,"41637":5,"41638":4,"41639":6,"41640":7,"41641":7,"41642":2,"41643":7,"41644":2,"41645":7,"41646":5,"41647":7,"41648":7,"41649":7,"41650":9,"41651":7,"41652":7,"41653":7,"41654":9,"41655":9,"41656":9,"41657":6,"41658":5,"41659":8,"41660":8,"41661":7,"41662":8,"41663":2,"41664":9,"41665":10,"41666":6,"41667":3,"41668":8,"41669":1,"41670":4,"41671":9,"41672":4,"41673":9,"41674":7,"41675":7,"41676":4,"41677":2,"41678":7,"41679":8,"41680":8,"41681":4,"41682":2,"41683":9,"41684":7,"41685":8,"41686":9,"41687":4,"41688":5,"41689":6,"41690":2,"41691":5,"41692":8,"41693":8,"41694":7,"41695":5,"41696":3,"41697":8,"41698":8,"41699":7,"41700":5,"41701":4,"41702":7,"41703":5,"41704":5,"41705":2,"41706":2,"41707":7,"41708":6,"41709":7,"41710":7,"41711":4,"41712":5,"41713":8,"41714":1,"41715":9,"41716":8,"41717":3,"41718":9,"41719":3,"41720":2,"41721":3,"41722":8,"41723":9,"41724":7,"41725":9,"41726":8,"41727":8,"41728":1,"41729":3,"41730":7,"41731":2,"41732":7,"41733":7,"41734":9,"41735":7,"41736":5,"41737":9,"41738":6,"41739":9,"41740":7,"41741":10,"41742":8,"41743":8,"41744":4,"41745":9,"41746":5,"41747":4,"41748":2,"41749":1,"41750":7,"41751":1,"41752":7,"41753":8,"41754":5,"41755":3,"41756":2,"41757":3,"41758":8,"41759":2,"41760":5,"41761":4,"41762":7,"41763":2,"41764":8,"41765":9,"41766":5,"41767":2,"41768":7,"41769":8,"41770":4,"41771":3,"41772":9,"41773":7,"41774":7,"41775":5,"41776":1,"41777":8,"41778":2,"41779":1,"41780":1,"41781":8,"41782":5,"41783":6,"41784":8,"41785":5,"41786":8,"41787":10,"41788":2,"41789":8,"41790":2,"41791":8,"41792":8,"41793":3,"41794":7,"41795":8,"41796":1,"41797":5,"41798":7,"41799":7,"41800":5,"41801":6,"41802":5,"41803":3,"41804":7,"41805":5,"41806":9,"41807":4,"41808":5,"41809":5,"41810":10,"41811":7,"41812":8,"41813":8,"41814":5,"41815":7,"41816":6,"41817":6,"41818":9,"41819":9,"41820":5,"41821":7,"41822":2,"41823":9,"41824":7,"41825":7,"41826":10,"41827":5,"41828":7,"41829":9,"41830":8,"41831":5,"41832":9,"41833":2,"41834":2,"41835":4,"41836":8,"41837":8,"41838":7,"41839":1,"41840":2,"41841":4,"41842":7,"41843":3,"41844":9,"41845":9,"41846":8,"41847":3,"41848":10,"41849":7,"41850":7,"41851":7,"41852":8,"41853":5,"41854":8,"41855":7,"41856":8,"41857":6,"41858":4,"41859":7,"41860":7,"41861":5,"41862":2,"41863":8,"41864":7,"41865":7,"41866":9,"41867":8,"41868":7,"41869":7,"41870":7,"41871":10,"41872":5,"41873":6,"41874":8,"41875":7,"41876":5,"41877":10,"41878":7,"41879":8,"41880":10,"41881":7,"41882":9,"41883":9,"41884":8,"41885":9,"41886":7,"41887":8,"41888":5,"41889":5,"41890":8,"41891":3,"41892":9,"41893":8,"41894":2,"41895":8,"41896":5,"41897":9,"41898":10,"41899":8,"41900":2,"41901":10,"41902":5,"41903":8,"41904":7,"41905":8,"41906":2,"41907":2,"41908":2,"41909":9,"41910":10,"41911":2,"41912":3,"41913":9,"41914":6,"41915":7,"41916":7,"41917":9,"41918":8,"41919":9,"41920":10,"41921":7,"41922":8,"41923":7,"41924":7,"41925":2,"41926":7,"41927":5,"41928":8,"41929":1,"41930":4,"41931":4,"41932":7,"41933":8,"41934":10,"41935":9,"41936":1,"41937":10,"41938":1,"41939":1,"41940":8,"41941":3,"41942":8,"41943":1,"41944":6,"41945":9,"41946":9,"41947":2,"41948":8,"41949":9,"41950":9,"41951":5,"41952":7,"41953":4,"41954":2,"41955":4,"41956":10,"41957":5,"41958":2,"41959":9,"41960":8,"41961":5,"41962":9,"41963":9,"41964":7,"41965":1,"41966":7,"41967":1,"41968":2,"41969":2,"41970":7,"41971":4,"41972":4,"41973":3,"41974":2,"41975":9,"41976":7,"41977":2,"41978":5,"41979":8,"41980":6,"41981":5,"41982":8,"41983":2,"41984":7,"41985":8,"41986":9,"41987":1,"41988":2,"41989":1,"41990":8,"41991":2,"41992":9,"41993":7,"41994":8,"41995":9,"41996":8,"41997":8,"41998":6,"41999":8,"42000":9,"42001":5,"42002":7,"42003":10,"42004":5,"42005":9,"42006":7,"42007":8,"42008":7,"42009":9,"42010":2,"42011":8,"42012":6,"42013":7,"42014":9,"42015":8,"42016":7,"42017":1,"42018":8,"42019":9,"42020":1,"42021":8,"42022":9,"42023":8,"42024":2,"42025":5,"42026":4,"42027":4,"42028":2,"42029":8,"42030":8,"42031":8,"42032":2,"42033":3,"42034":8,"42035":7,"42036":8,"42037":9,"42038":8,"42039":8,"42040":9,"42041":8,"42042":8,"42043":6,"42044":8,"42045":10,"42046":4,"42047":8,"42048":8,"42049":9,"42050":8,"42051":2,"42052":9,"42053":6,"42054":9,"42055":8,"42056":9,"42057":9,"42058":1,"42059":8,"42060":8,"42061":8,"42062":8,"42063":9,"42064":3,"42065":7,"42066":9,"42067":7,"42068":4,"42069":9,"42070":7,"42071":7,"42072":6,"42073":8,"42074":9,"42075":9,"42076":10,"42077":7,"42078":1,"42079":10,"42080":10,"42081":8,"42082":8,"42083":3,"42084":4,"42085":4,"42086":7,"42087":9,"42088":7,"42089":5,"42090":2,"42091":8,"42092":1,"42093":8,"42094":8,"42095":5,"42096":5,"42097":7,"42098":5,"42099":8,"42100":6,"42101":9,"42102":8,"42103":4,"42104":8,"42105":2,"42106":5,"42107":6,"42108":1,"42109":7,"42110":7,"42111":4,"42112":1,"42113":9,"42114":7,"42115":7,"42116":7,"42117":8,"42118":1,"42119":2,"42120":5,"42121":5,"42122":9,"42123":7,"42124":5,"42125":9,"42126":5,"42127":8,"42128":2,"42129":7,"42130":8,"42131":2,"42132":8,"42133":7,"42134":6,"42135":8,"42136":5,"42137":7,"42138":7,"42139":8,"42140":1,"42141":2,"42142":7,"42143":2,"42144":7,"42145":7,"42146":9,"42147":7,"42148":8,"42149":1,"42150":6,"42151":3,"42152":5,"42153":6,"42154":7,"42155":3,"42156":9,"42157":9,"42158":9,"42159":8,"42160":8,"42161":8,"42162":10,"42163":6,"42164":7,"42165":8,"42166":7,"42167":10,"42168":4,"42169":5,"42170":4,"42171":7,"42172":9,"42173":2,"42174":2,"42175":2,"42176":1,"42177":8,"42178":5,"42179":7,"42180":9,"42181":10,"42182":6,"42183":8,"42184":2,"42185":6,"42186":6,"42187":9,"42188":4,"42189":1,"42190":2,"42191":8,"42192":2,"42193":5,"42194":5,"42195":7,"42196":5,"42197":7,"42198":8,"42199":7,"42200":7,"42201":9,"42202":8,"42203":5,"42204":7,"42205":7,"42206":4,"42207":3,"42208":9,"42209":2,"42210":9,"42211":4,"42212":6,"42213":4,"42214":7,"42215":7,"42216":2,"42217":7,"42218":9,"42219":7,"42220":7,"42221":8,"42222":5,"42223":3,"42224":10,"42225":10,"42226":10,"42227":5,"42228":2,"42229":6,"42230":7,"42231":6,"42232":7,"42233":7,"42234":4,"42235":8,"42236":7,"42237":5,"42238":6,"42239":4,"42240":7,"42241":8,"42242":8,"42243":2,"42244":8,"42245":9,"42246":8,"42247":2,"42248":8,"42249":7,"42250":3,"42251":8,"42252":8,"42253":3,"42254":8,"42255":8,"42256":5,"42257":7,"42258":7,"42259":8,"42260":9,"42261":4,"42262":9,"42263":8,"42264":8,"42265":8,"42266":6,"42267":8,"42268":5,"42269":3,"42270":5,"42271":9,"42272":2,"42273":1,"42274":8,"42275":1,"42276":8,"42277":7,"42278":4,"42279":7,"42280":9,"42281":2,"42282":9,"42283":1,"42284":7,"42285":9,"42286":8,"42287":8,"42288":9,"42289":9,"42290":8,"42291":1,"42292":6,"42293":10,"42294":2,"42295":5,"42296":2,"42297":9,"42298":9,"42299":8,"42300":6,"42301":7,"42302":10,"42303":8,"42304":9,"42305":9,"42306":9,"42307":10,"42308":9,"42309":6,"42310":9,"42311":3,"42312":7,"42313":8,"42314":7,"42315":7,"42316":6,"42317":1,"42318":8,"42319":6,"42320":5,"42321":1,"42322":8,"42323":9,"42324":8,"42325":8,"42326":9,"42327":6,"42328":6,"42329":9,"42330":2,"42331":9,"42332":7,"42333":7,"42334":10,"42335":9,"42336":2,"42337":3,"42338":8,"42339":1,"42340":8,"42341":4,"42342":7,"42343":6,"42344":7,"42345":8,"42346":5,"42347":3,"42348":2,"42349":9,"42350":7,"42351":8,"42352":7,"42353":8,"42354":5,"42355":6,"42356":9,"42357":3,"42358":7,"42359":9,"42360":5,"42361":10,"42362":4,"42363":7,"42364":7,"42365":8,"42366":4,"42367":8,"42368":8,"42369":7,"42370":10,"42371":2,"42372":4,"42373":7,"42374":7,"42375":1,"42376":5,"42377":8,"42378":8,"42379":7,"42380":1,"42381":7,"42382":9,"42383":8,"42384":9,"42385":1,"42386":6,"42387":8,"42388":5,"42389":7,"42390":7,"42391":7,"42392":1,"42393":6,"42394":3,"42395":2,"42396":9,"42397":2,"42398":9,"42399":8,"42400":8,"42401":6,"42402":8,"42403":8,"42404":5,"42405":7,"42406":6,"42407":7,"42408":7,"42409":7,"42410":2,"42411":2,"42412":8,"42413":2,"42414":7,"42415":4,"42416":9,"42417":1,"42418":9,"42419":8,"42420":3,"42421":1,"42422":8,"42423":9,"42424":8,"42425":7,"42426":10,"42427":2,"42428":8,"42429":5,"42430":7,"42431":8,"42432":10,"42433":4,"42434":2,"42435":7,"42436":4,"42437":1,"42438":7,"42439":5,"42440":6,"42441":3,"42442":2,"42443":9,"42444":8,"42445":7,"42446":9,"42447":9,"42448":10,"42449":7,"42450":3,"42451":2,"42452":4,"42453":5,"42454":3,"42455":7,"42456":7,"42457":8,"42458":5,"42459":9,"42460":8,"42461":2,"42462":7,"42463":8,"42464":8,"42465":8,"42466":9,"42467":7,"42468":8,"42469":8,"42470":5,"42471":5,"42472":5,"42473":9,"42474":8,"42475":2,"42476":5,"42477":9,"42478":8,"42479":7,"42480":7,"42481":5,"42482":9,"42483":9,"42484":8,"42485":8,"42486":7,"42487":7,"42488":9,"42489":9,"42490":8,"42491":9,"42492":7,"42493":6,"42494":7,"42495":8,"42496":8,"42497":8,"42498":8,"42499":8,"42500":8,"42501":7,"42502":1,"42503":3,"42504":6,"42505":5,"42506":7,"42507":5,"42508":9,"42509":5,"42510":8,"42511":7,"42512":9,"42513":2,"42514":8,"42515":2,"42516":2,"42517":8,"42518":8,"42519":8,"42520":8,"42521":10,"42522":1,"42523":10,"42524":9,"42525":7,"42526":9,"42527":2,"42528":9,"42529":7,"42530":2,"42531":6,"42532":7,"42533":9,"42534":9,"42535":8,"42536":2,"42537":1,"42538":8,"42539":9,"42540":9,"42541":7,"42542":3,"42543":8,"42544":10,"42545":8,"42546":6,"42547":6,"42548":9,"42549":1,"42550":2,"42551":7,"42552":5,"42553":3,"42554":7,"42555":10,"42556":8,"42557":5,"42558":9,"42559":3,"42560":8,"42561":2,"42562":9,"42563":9,"42564":6,"42565":6,"42566":7,"42567":9,"42568":8,"42569":7,"42570":7,"42571":2,"42572":5,"42573":7,"42574":8,"42575":6,"42576":7,"42577":5,"42578":1,"42579":7,"42580":9,"42581":2,"42582":1,"42583":6,"42584":8,"42585":2,"42586":6,"42587":1,"42588":7,"42589":6,"42590":5,"42591":4,"42592":7,"42593":6,"42594":5,"42595":7,"42596":7,"42597":8,"42598":9,"42599":8,"42600":6,"42601":10,"42602":7,"42603":8,"42604":7,"42605":7,"42606":2,"42607":7,"42608":2,"42609":8,"42610":2,"42611":6,"42612":8,"42613":8,"42614":5,"42615":2,"42616":1,"42617":7,"42618":7,"42619":10,"42620":2,"42621":2,"42622":6,"42623":9,"42624":2,"42625":6,"42626":10,"42627":3,"42628":7,"42629":9,"42630":7,"42631":3,"42632":7,"42633":7,"42634":8,"42635":6,"42636":5,"42637":8,"42638":8,"42639":8,"42640":7,"42641":8,"42642":7,"42643":2,"42644":8,"42645":4,"42646":5,"42647":7,"42648":7,"42649":4,"42650":8,"42651":7,"42652":5,"42653":8,"42654":1,"42655":7,"42656":6,"42657":7,"42658":1,"42659":3,"42660":5,"42661":1,"42662":9,"42663":7,"42664":9,"42665":7,"42666":9,"42667":2,"42668":5,"42669":4,"42670":5,"42671":9,"42672":3,"42673":2,"42674":6,"42675":8,"42676":2,"42677":5,"42678":8,"42679":8,"42680":1,"42681":9,"42682":1,"42683":9,"42684":10,"42685":9,"42686":8,"42687":9,"42688":2,"42689":8,"42690":8,"42691":2,"42692":8,"42693":7,"42694":7,"42695":3,"42696":6,"42697":7,"42698":2,"42699":2,"42700":9,"42701":8,"42702":2,"42703":2,"42704":7,"42705":4,"42706":3,"42707":5,"42708":5,"42709":7,"42710":3,"42711":2,"42712":8,"42713":8,"42714":7,"42715":5,"42716":4,"42717":6,"42718":5,"42719":7,"42720":9,"42721":8,"42722":5,"42723":7,"42724":5,"42725":9,"42726":8,"42727":2,"42728":8,"42729":8,"42730":8,"42731":7,"42732":2,"42733":5,"42734":5,"42735":7,"42736":7,"42737":6,"42738":8,"42739":3,"42740":7,"42741":9,"42742":1,"42743":9,"42744":9,"42745":8,"42746":9,"42747":3,"42748":7,"42749":7,"42750":7,"42751":8,"42752":2,"42753":8,"42754":2,"42755":9,"42756":8,"42757":8,"42758":2,"42759":8,"42760":9,"42761":2,"42762":9,"42763":9,"42764":3,"42765":9,"42766":1,"42767":9,"42768":3,"42769":6,"42770":4,"42771":5,"42772":7,"42773":8,"42774":8,"42775":8,"42776":9,"42777":8,"42778":2,"42779":2,"42780":5,"42781":3,"42782":7,"42783":6,"42784":2,"42785":6,"42786":1,"42787":2,"42788":1,"42789":5,"42790":3,"42791":9,"42792":9,"42793":7,"42794":9,"42795":7,"42796":3,"42797":5,"42798":8,"42799":7,"42800":2,"42801":7,"42802":9,"42803":7,"42804":9,"42805":2,"42806":1,"42807":7,"42808":9,"42809":7,"42810":2,"42811":7,"42812":8,"42813":7,"42814":2,"42815":10,"42816":3,"42817":8,"42818":8,"42819":7,"42820":7,"42821":5,"42822":4,"42823":9,"42824":5,"42825":2,"42826":1,"42827":9,"42828":7,"42829":9,"42830":9,"42831":7,"42832":6,"42833":5,"42834":10,"42835":8,"42836":5,"42837":3,"42838":2,"42839":5,"42840":4,"42841":8,"42842":2,"42843":8,"42844":5,"42845":5,"42846":7,"42847":9,"42848":5,"42849":7,"42850":5,"42851":2,"42852":3,"42853":3,"42854":4,"42855":8,"42856":9,"42857":10,"42858":8,"42859":5,"42860":6,"42861":6,"42862":6,"42863":5,"42864":2,"42865":3,"42866":10,"42867":7,"42868":7,"42869":7,"42870":6,"42871":9,"42872":7,"42873":9,"42874":8,"42875":5,"42876":8,"42877":8,"42878":7,"42879":5,"42880":8,"42881":9,"42882":4,"42883":7,"42884":8,"42885":7,"42886":7,"42887":8,"42888":8,"42889":7,"42890":8,"42891":1,"42892":7,"42893":9,"42894":7,"42895":7,"42896":8,"42897":8,"42898":2,"42899":9,"42900":8,"42901":9,"42902":9,"42903":4,"42904":8,"42905":9,"42906":1,"42907":6,"42908":8,"42909":8,"42910":2,"42911":2,"42912":10,"42913":3,"42914":5,"42915":4,"42916":8,"42917":1,"42918":3,"42919":9,"42920":8,"42921":8,"42922":5,"42923":2,"42924":9,"42925":9,"42926":8,"42927":7,"42928":8,"42929":8,"42930":7,"42931":5,"42932":8,"42933":2,"42934":5,"42935":9,"42936":9,"42937":8,"42938":8,"42939":2,"42940":8,"42941":10,"42942":8,"42943":8,"42944":5,"42945":4,"42946":4,"42947":6,"42948":8,"42949":7,"42950":9,"42951":10,"42952":7,"42953":8,"42954":7,"42955":6,"42956":8,"42957":7,"42958":7,"42959":9,"42960":3,"42961":3,"42962":9,"42963":8,"42964":9,"42965":1,"42966":5,"42967":7,"42968":7,"42969":7,"42970":10,"42971":9,"42972":5,"42973":7,"42974":7,"42975":6,"42976":1,"42977":10,"42978":8,"42979":8,"42980":3,"42981":8,"42982":6,"42983":2,"42984":2,"42985":8,"42986":9,"42987":3,"42988":5,"42989":2,"42990":7,"42991":9,"42992":3,"42993":7,"42994":7,"42995":7,"42996":9,"42997":2,"42998":5,"42999":10,"43000":7,"43001":8,"43002":5,"43003":8,"43004":8,"43005":8,"43006":9,"43007":7,"43008":7,"43009":8,"43010":8,"43011":8,"43012":9,"43013":6,"43014":8,"43015":5,"43016":8,"43017":7,"43018":8,"43019":8,"43020":6,"43021":8,"43022":7,"43023":8,"43024":7,"43025":9,"43026":7,"43027":9,"43028":7,"43029":7,"43030":8,"43031":1,"43032":6,"43033":3,"43034":3,"43035":10,"43036":2,"43037":7,"43038":7,"43039":8,"43040":7,"43041":7,"43042":8,"43043":9,"43044":7,"43045":4,"43046":2,"43047":7,"43048":8,"43049":9,"43050":6,"43051":8,"43052":1,"43053":7,"43054":2,"43055":2,"43056":7,"43057":8,"43058":8,"43059":9,"43060":7,"43061":5,"43062":1,"43063":9,"43064":7,"43065":8,"43066":2,"43067":1,"43068":8,"43069":8,"43070":2,"43071":2,"43072":7,"43073":6,"43074":5,"43075":4,"43076":8,"43077":2,"43078":9,"43079":8,"43080":10,"43081":7,"43082":7,"43083":6,"43084":8,"43085":9,"43086":10,"43087":1,"43088":9,"43089":9,"43090":7,"43091":9,"43092":7,"43093":7,"43094":5,"43095":4,"43096":5,"43097":4,"43098":8,"43099":6,"43100":6,"43101":5,"43102":9,"43103":10,"43104":7,"43105":1,"43106":4,"43107":9,"43108":9,"43109":7,"43110":4,"43111":8,"43112":8,"43113":8,"43114":2,"43115":8,"43116":7,"43117":8,"43118":3,"43119":2,"43120":3,"43121":7,"43122":6,"43123":4,"43124":8,"43125":7,"43126":1,"43127":7,"43128":9,"43129":2,"43130":1,"43131":7,"43132":5,"43133":10,"43134":2,"43135":7,"43136":5,"43137":6,"43138":5,"43139":10,"43140":8,"43141":10,"43142":5,"43143":8,"43144":8,"43145":1,"43146":5,"43147":2,"43148":6,"43149":7,"43150":8,"43151":7,"43152":8,"43153":7,"43154":9,"43155":9,"43156":5,"43157":1,"43158":6,"43159":5,"43160":2,"43161":9,"43162":8,"43163":8,"43164":7,"43165":2,"43166":8,"43167":8,"43168":7,"43169":9,"43170":2,"43171":8,"43172":7,"43173":2,"43174":10,"43175":8,"43176":2,"43177":10,"43178":8,"43179":3,"43180":9,"43181":7,"43182":5,"43183":5,"43184":8,"43185":5,"43186":2,"43187":2,"43188":7,"43189":9,"43190":5,"43191":2,"43192":5,"43193":9,"43194":8,"43195":4,"43196":1,"43197":5,"43198":10,"43199":7,"43200":8,"43201":7,"43202":10,"43203":8,"43204":9,"43205":8,"43206":1,"43207":8,"43208":10,"43209":2,"43210":4,"43211":6,"43212":9,"43213":8,"43214":1,"43215":6,"43216":7,"43217":9,"43218":1,"43219":2,"43220":8,"43221":8,"43222":3,"43223":5,"43224":4,"43225":5,"43226":8,"43227":8,"43228":9,"43229":7,"43230":9,"43231":8,"43232":2,"43233":8,"43234":5,"43235":7,"43236":7,"43237":9,"43238":5,"43239":8,"43240":2,"43241":9,"43242":2,"43243":2,"43244":8,"43245":8,"43246":4,"43247":9,"43248":8,"43249":10,"43250":3,"43251":1,"43252":8,"43253":7,"43254":4,"43255":2,"43256":7,"43257":4,"43258":9,"43259":1,"43260":7,"43261":2,"43262":5,"43263":4,"43264":5,"43265":9,"43266":8,"43267":9,"43268":9,"43269":10,"43270":8,"43271":9,"43272":9,"43273":5,"43274":2,"43275":8,"43276":6,"43277":10,"43278":8,"43279":2,"43280":7,"43281":7,"43282":9,"43283":2,"43284":7,"43285":2,"43286":4,"43287":8,"43288":3,"43289":2,"43290":5,"43291":6,"43292":8,"43293":8,"43294":5,"43295":8,"43296":5,"43297":1,"43298":10,"43299":1,"43300":3,"43301":2,"43302":5,"43303":8,"43304":5,"43305":9,"43306":4,"43307":7,"43308":3,"43309":8,"43310":7,"43311":7,"43312":5,"43313":2,"43314":5,"43315":10,"43316":5,"43317":8,"43318":8,"43319":8,"43320":4,"43321":7,"43322":8,"43323":5,"43324":7,"43325":2,"43326":9,"43327":9,"43328":9,"43329":10,"43330":7,"43331":7,"43332":7,"43333":10,"43334":8,"43335":1,"43336":7,"43337":10,"43338":6,"43339":7,"43340":10,"43341":8,"43342":10,"43343":9,"43344":3,"43345":8,"43346":2,"43347":8,"43348":8,"43349":5,"43350":9,"43351":8,"43352":8,"43353":7,"43354":8,"43355":5,"43356":8,"43357":1,"43358":9,"43359":1,"43360":8,"43361":8,"43362":9,"43363":8,"43364":7,"43365":7,"43366":3,"43367":2,"43368":7,"43369":8,"43370":7,"43371":10,"43372":10,"43373":7,"43374":8,"43375":9,"43376":2,"43377":3,"43378":7,"43379":8,"43380":7,"43381":8,"43382":8,"43383":3,"43384":1,"43385":7,"43386":6,"43387":7,"43388":1,"43389":9,"43390":7,"43391":3,"43392":2,"43393":7,"43394":6,"43395":5,"43396":8,"43397":7,"43398":7,"43399":2,"43400":5,"43401":9,"43402":5,"43403":8,"43404":8,"43405":8,"43406":5,"43407":7,"43408":9,"43409":8,"43410":8,"43411":1,"43412":4,"43413":9,"43414":4,"43415":9,"43416":9,"43417":8,"43418":8,"43419":7,"43420":9,"43421":10,"43422":5,"43423":8,"43424":3,"43425":8,"43426":7,"43427":6,"43428":9,"43429":9,"43430":4,"43431":2,"43432":8,"43433":10,"43434":3,"43435":8,"43436":4,"43437":9,"43438":7,"43439":2,"43440":5,"43441":4,"43442":9,"43443":7,"43444":2,"43445":9,"43446":7,"43447":3,"43448":7,"43449":8,"43450":2,"43451":8,"43452":1,"43453":1,"43454":8,"43455":6,"43456":9,"43457":9,"43458":7,"43459":2,"43460":8,"43461":7,"43462":10,"43463":9,"43464":8,"43465":7,"43466":8,"43467":8,"43468":8,"43469":7,"43470":6,"43471":9,"43472":2,"43473":4,"43474":6,"43475":9,"43476":1,"43477":2,"43478":1,"43479":9,"43480":9,"43481":2,"43482":8,"43483":7,"43484":10,"43485":5,"43486":7,"43487":7,"43488":8,"43489":8,"43490":5,"43491":6,"43492":9,"43493":7,"43494":1,"43495":9,"43496":2,"43497":7,"43498":8,"43499":9,"43500":8,"43501":7,"43502":8,"43503":5,"43504":2,"43505":2,"43506":2,"43507":7,"43508":9,"43509":2,"43510":7,"43511":5,"43512":5,"43513":9,"43514":6,"43515":2,"43516":3,"43517":1,"43518":2,"43519":1,"43520":7,"43521":1,"43522":1,"43523":8,"43524":8,"43525":9,"43526":2,"43527":8,"43528":8,"43529":7,"43530":5,"43531":8,"43532":8,"43533":1,"43534":7,"43535":8,"43536":3,"43537":8,"43538":7,"43539":7,"43540":5,"43541":5,"43542":7,"43543":10,"43544":8,"43545":1,"43546":8,"43547":6,"43548":1,"43549":9,"43550":1,"43551":7,"43552":5,"43553":6,"43554":1,"43555":7,"43556":8,"43557":10,"43558":8,"43559":8,"43560":9,"43561":1,"43562":8,"43563":3,"43564":9,"43565":8,"43566":5,"43567":7,"43568":7,"43569":7,"43570":10,"43571":8,"43572":7,"43573":3,"43574":7,"43575":2,"43576":7,"43577":9,"43578":9,"43579":9,"43580":2,"43581":4,"43582":6,"43583":8,"43584":8,"43585":7,"43586":5,"43587":2,"43588":9,"43589":5,"43590":8,"43591":2,"43592":8,"43593":8,"43594":7,"43595":1,"43596":4,"43597":8,"43598":5,"43599":2,"43600":10,"43601":10,"43602":9,"43603":6,"43604":6,"43605":2,"43606":4,"43607":7,"43608":8,"43609":9,"43610":8,"43611":8,"43612":3,"43613":8,"43614":1,"43615":10,"43616":9,"43617":8,"43618":1,"43619":7,"43620":9,"43621":6,"43622":8,"43623":3,"43624":9,"43625":5,"43626":9,"43627":1,"43628":5,"43629":8,"43630":8,"43631":5,"43632":7,"43633":4,"43634":5,"43635":7,"43636":9,"43637":1,"43638":8,"43639":4,"43640":8,"43641":7,"43642":7,"43643":5,"43644":3,"43645":1,"43646":5,"43647":7,"43648":3,"43649":10,"43650":5,"43651":8,"43652":1,"43653":7,"43654":5,"43655":9,"43656":7,"43657":2,"43658":6,"43659":10,"43660":9,"43661":7,"43662":2,"43663":6,"43664":4,"43665":4,"43666":7,"43667":7,"43668":8,"43669":5,"43670":1,"43671":9,"43672":2,"43673":2,"43674":3,"43675":10,"43676":9,"43677":8,"43678":5,"43679":9,"43680":5,"43681":3,"43682":1,"43683":9,"43684":8,"43685":2,"43686":7,"43687":7,"43688":10,"43689":9,"43690":2,"43691":5,"43692":10,"43693":6,"43694":7,"43695":5,"43696":7,"43697":3,"43698":7,"43699":5,"43700":10,"43701":2,"43702":7,"43703":2,"43704":2,"43705":6,"43706":5,"43707":5,"43708":3,"43709":2,"43710":6,"43711":2,"43712":9,"43713":6,"43714":6,"43715":5,"43716":8,"43717":7,"43718":1,"43719":4,"43720":8,"43721":8,"43722":2,"43723":8,"43724":8,"43725":7,"43726":4,"43727":5,"43728":7,"43729":8,"43730":8,"43731":6,"43732":8,"43733":4,"43734":5,"43735":7,"43736":7,"43737":2,"43738":3,"43739":8,"43740":4,"43741":8,"43742":9,"43743":5,"43744":6,"43745":8,"43746":7,"43747":7,"43748":9,"43749":8,"43750":10,"43751":2,"43752":8,"43753":9,"43754":9,"43755":8,"43756":2,"43757":7,"43758":10,"43759":1,"43760":5,"43761":9,"43762":8,"43763":9,"43764":9,"43765":4,"43766":7,"43767":9,"43768":8,"43769":8,"43770":9,"43771":1,"43772":5,"43773":7,"43774":1,"43775":8,"43776":5,"43777":5,"43778":4,"43779":5,"43780":8,"43781":2,"43782":4,"43783":9,"43784":2,"43785":9,"43786":9,"43787":9,"43788":7,"43789":7,"43790":1,"43791":8,"43792":5,"43793":8,"43794":8,"43795":9,"43796":8,"43797":8,"43798":9,"43799":2,"43800":2,"43801":8,"43802":7,"43803":9,"43804":5,"43805":1,"43806":9,"43807":9,"43808":10,"43809":8,"43810":2,"43811":7,"43812":7,"43813":8,"43814":9,"43815":5,"43816":5,"43817":9,"43818":8,"43819":8,"43820":4,"43821":7,"43822":8,"43823":7,"43824":9,"43825":2,"43826":8,"43827":9,"43828":10,"43829":9,"43830":7,"43831":8,"43832":8,"43833":9,"43834":7,"43835":7,"43836":7,"43837":4,"43838":1,"43839":7,"43840":8,"43841":9,"43842":7,"43843":9,"43844":7,"43845":8,"43846":2,"43847":5,"43848":5,"43849":10,"43850":7,"43851":7,"43852":2,"43853":6,"43854":5,"43855":4,"43856":7,"43857":3,"43858":8,"43859":7,"43860":8,"43861":2,"43862":9,"43863":4,"43864":9,"43865":8,"43866":7,"43867":10,"43868":9,"43869":9,"43870":10,"43871":8,"43872":3,"43873":9,"43874":5,"43875":7,"43876":3,"43877":7,"43878":9,"43879":4,"43880":5,"43881":7,"43882":1,"43883":7,"43884":8,"43885":4,"43886":8,"43887":8,"43888":10,"43889":8,"43890":9,"43891":6,"43892":10,"43893":5,"43894":4,"43895":1,"43896":7,"43897":8,"43898":10,"43899":10,"43900":5,"43901":9,"43902":9,"43903":9,"43904":6,"43905":5,"43906":2,"43907":2,"43908":3,"43909":8,"43910":7,"43911":2,"43912":9,"43913":7,"43914":1,"43915":9,"43916":8,"43917":8,"43918":3,"43919":7,"43920":5,"43921":7,"43922":2,"43923":8,"43924":5,"43925":9,"43926":1,"43927":7,"43928":6,"43929":4,"43930":9,"43931":1,"43932":8,"43933":8,"43934":5,"43935":2,"43936":7,"43937":8,"43938":8,"43939":5,"43940":6,"43941":6,"43942":8,"43943":10,"43944":3,"43945":5,"43946":3,"43947":7,"43948":6,"43949":5,"43950":5,"43951":8,"43952":2,"43953":2,"43954":7,"43955":7,"43956":5,"43957":8,"43958":4,"43959":7,"43960":8,"43961":7,"43962":8,"43963":7,"43964":9,"43965":5,"43966":7,"43967":5,"43968":8,"43969":5,"43970":9,"43971":9,"43972":4,"43973":6,"43974":7,"43975":3,"43976":2,"43977":7,"43978":8,"43979":5,"43980":9,"43981":8,"43982":6,"43983":8,"43984":5,"43985":9,"43986":7,"43987":3,"43988":8,"43989":10,"43990":2,"43991":2,"43992":5,"43993":2,"43994":7,"43995":7,"43996":5,"43997":1,"43998":8,"43999":5,"44000":7,"44001":10,"44002":8,"44003":10,"44004":5,"44005":2,"44006":8,"44007":7,"44008":5,"44009":9,"44010":1,"44011":10,"44012":7,"44013":9,"44014":7,"44015":2,"44016":5,"44017":8,"44018":10,"44019":9,"44020":5,"44021":9,"44022":7,"44023":10,"44024":7,"44025":7,"44026":8,"44027":7,"44028":7,"44029":9,"44030":1,"44031":9,"44032":8,"44033":9,"44034":5,"44035":2,"44036":8,"44037":3,"44038":7,"44039":5,"44040":7,"44041":9,"44042":8,"44043":9,"44044":3,"44045":7,"44046":9,"44047":2,"44048":8,"44049":2,"44050":9,"44051":9,"44052":5,"44053":8,"44054":7,"44055":8,"44056":2,"44057":9,"44058":6,"44059":1,"44060":8,"44061":6,"44062":3,"44063":7,"44064":5,"44065":5,"44066":3,"44067":8,"44068":10,"44069":6,"44070":6,"44071":7,"44072":9,"44073":9,"44074":2,"44075":7,"44076":1,"44077":1,"44078":10,"44079":2,"44080":9,"44081":8,"44082":2,"44083":7,"44084":7,"44085":8,"44086":5,"44087":8,"44088":8,"44089":2,"44090":8,"44091":8,"44092":2,"44093":10,"44094":5,"44095":2,"44096":2,"44097":7,"44098":10,"44099":7,"44100":4,"44101":3,"44102":8,"44103":9,"44104":7,"44105":4,"44106":10,"44107":3,"44108":9,"44109":4,"44110":7,"44111":2,"44112":2,"44113":3,"44114":7,"44115":7,"44116":8,"44117":7,"44118":9,"44119":8,"44120":9,"44121":9,"44122":5,"44123":7,"44124":2,"44125":8,"44126":7,"44127":8,"44128":3,"44129":2,"44130":5,"44131":5,"44132":10,"44133":9,"44134":5,"44135":7,"44136":9,"44137":4,"44138":5,"44139":9,"44140":8,"44141":8,"44142":2,"44143":8,"44144":8,"44145":7,"44146":1,"44147":2,"44148":10,"44149":3,"44150":9,"44151":2,"44152":9,"44153":9,"44154":4,"44155":7,"44156":2,"44157":5,"44158":9,"44159":9,"44160":9,"44161":8,"44162":4,"44163":8,"44164":6,"44165":5,"44166":8,"44167":8,"44168":9,"44169":7,"44170":8,"44171":8,"44172":8,"44173":2,"44174":8,"44175":7,"44176":4,"44177":5,"44178":5,"44179":2,"44180":9,"44181":6,"44182":4,"44183":9,"44184":8,"44185":1,"44186":4,"44187":2,"44188":8,"44189":1,"44190":7,"44191":2,"44192":9,"44193":7,"44194":9,"44195":9,"44196":5,"44197":6,"44198":4,"44199":2,"44200":8,"44201":8,"44202":5},"eduattstat":{"0":3,"1":2,"2":3,"3":2,"4":3,"5":4,"6":4,"7":5,"8":1,"9":1,"10":4,"11":3,"12":5,"13":4,"14":4,"15":1,"16":2,"17":2,"18":3,"19":1,"20":3,"21":3,"22":4,"23":5,"24":4,"25":2,"26":3,"27":3,"28":4,"29":4,"30":3,"31":5,"32":1,"33":2,"34":3,"35":3,"36":3,"37":2,"38":2,"39":2,"40":3,"41":1,"42":4,"43":4,"44":2,"45":2,"46":4,"47":1,"48":3,"49":3,"50":4,"51":5,"52":3,"53":3,"54":4,"55":3,"56":3,"57":5,"58":3,"59":4,"60":4,"61":3,"62":4,"63":4,"64":5,"65":3,"66":1,"67":4,"68":4,"69":3,"70":3,"71":1,"72":2,"73":3,"74":3,"75":2,"76":3,"77":3,"78":3,"79":4,"80":3,"81":1,"82":1,"83":3,"84":3,"85":2,"86":3,"87":2,"88":4,"89":2,"90":3,"91":4,"92":2,"93":2,"94":2,"95":3,"96":3,"97":4,"98":5,"99":1,"100":1,"101":1,"102":2,"103":4,"104":2,"105":5,"106":2,"107":4,"108":3,"109":4,"110":4,"111":3,"112":4,"113":3,"114":1,"115":3,"116":5,"117":2,"118":4,"119":2,"120":4,"121":4,"122":4,"123":3,"124":3,"125":5,"126":3,"127":4,"128":3,"129":4,"130":4,"131":2,"132":3,"133":3,"134":2,"135":3,"136":3,"137":3,"138":1,"139":3,"140":4,"141":2,"142":3,"143":3,"144":3,"145":1,"146":3,"147":3,"148":3,"149":5,"150":3,"151":2,"152":3,"153":2,"154":4,"155":2,"156":2,"157":3,"158":4,"159":2,"160":2,"161":4,"162":5,"163":3,"164":4,"165":2,"166":3,"167":4,"168":2,"169":2,"170":4,"171":3,"172":4,"173":3,"174":3,"175":1,"176":3,"177":4,"178":3,"179":4,"180":5,"181":5,"182":2,"183":3,"184":1,"185":4,"186":4,"187":4,"188":4,"189":2,"190":3,"191":3,"192":5,"193":2,"194":2,"195":3,"196":3,"197":4,"198":2,"199":4,"200":4,"201":3,"202":4,"203":2,"204":3,"205":3,"206":4,"207":1,"208":4,"209":1,"210":3,"211":4,"212":4,"213":3,"214":4,"215":4,"216":3,"217":1,"218":2,"219":5,"220":5,"221":2,"222":3,"223":2,"224":2,"225":4,"226":3,"227":2,"228":3,"229":1,"230":3,"231":4,"232":4,"233":4,"234":3,"235":2,"236":1,"237":2,"238":4,"239":3,"240":3,"241":3,"242":5,"243":4,"244":3,"245":3,"246":1,"247":3,"248":3,"249":2,"250":3,"251":5,"252":3,"253":3,"254":3,"255":3,"256":4,"257":5,"258":4,"259":4,"260":4,"261":3,"262":3,"263":5,"264":3,"265":2,"266":1,"267":3,"268":5,"269":3,"270":1,"271":4,"272":4,"273":3,"274":2,"275":2,"276":4,"277":3,"278":2,"279":3,"280":2,"281":2,"282":2,"283":4,"284":5,"285":4,"286":2,"287":3,"288":4,"289":2,"290":3,"291":3,"292":2,"293":4,"294":4,"295":4,"296":2,"297":3,"298":3,"299":1,"300":3,"301":3,"302":3,"303":3,"304":4,"305":2,"306":1,"307":4,"308":2,"309":3,"310":2,"311":2,"312":4,"313":1,"314":3,"315":4,"316":3,"317":2,"318":3,"319":1,"320":2,"321":1,"322":1,"323":4,"324":2,"325":3,"326":1,"327":4,"328":3,"329":4,"330":4,"331":3,"332":2,"333":3,"334":1,"335":5,"336":3,"337":3,"338":4,"339":5,"340":3,"341":3,"342":3,"343":4,"344":4,"345":2,"346":1,"347":4,"348":2,"349":4,"350":2,"351":5,"352":1,"353":3,"354":3,"355":1,"356":4,"357":2,"358":3,"359":3,"360":3,"361":4,"362":3,"363":4,"364":3,"365":2,"366":3,"367":5,"368":4,"369":3,"370":4,"371":2,"372":3,"373":4,"374":3,"375":4,"376":5,"377":4,"378":3,"379":3,"380":3,"381":5,"382":4,"383":4,"384":3,"385":4,"386":3,"387":1,"388":4,"389":2,"390":2,"391":5,"392":4,"393":3,"394":3,"395":4,"396":4,"397":2,"398":3,"399":5,"400":3,"401":3,"402":3,"403":3,"404":3,"405":3,"406":1,"407":3,"408":3,"409":4,"410":4,"411":5,"412":4,"413":3,"414":3,"415":4,"416":1,"417":3,"418":4,"419":2,"420":3,"421":4,"422":3,"423":4,"424":2,"425":4,"426":5,"427":1,"428":2,"429":2,"430":3,"431":4,"432":2,"433":2,"434":4,"435":3,"436":2,"437":3,"438":4,"439":2,"440":3,"441":2,"442":4,"443":5,"444":5,"445":1,"446":5,"447":4,"448":2,"449":3,"450":4,"451":2,"452":3,"453":4,"454":4,"455":3,"456":4,"457":3,"458":2,"459":4,"460":4,"461":3,"462":3,"463":2,"464":3,"465":2,"466":2,"467":2,"468":2,"469":3,"470":4,"471":2,"472":3,"473":1,"474":3,"475":4,"476":3,"477":2,"478":3,"479":1,"480":3,"481":3,"482":3,"483":5,"484":2,"485":3,"486":5,"487":3,"488":3,"489":4,"490":3,"491":3,"492":3,"493":1,"494":2,"495":3,"496":1,"497":4,"498":1,"499":4,"500":2,"501":4,"502":3,"503":4,"504":3,"505":3,"506":3,"507":3,"508":4,"509":3,"510":4,"511":3,"512":4,"513":1,"514":3,"515":3,"516":5,"517":5,"518":1,"519":3,"520":4,"521":3,"522":4,"523":3,"524":1,"525":1,"526":4,"527":2,"528":2,"529":2,"530":4,"531":3,"532":3,"533":2,"534":4,"535":3,"536":3,"537":3,"538":3,"539":4,"540":4,"541":2,"542":2,"543":3,"544":4,"545":2,"546":2,"547":3,"548":3,"549":4,"550":1,"551":3,"552":3,"553":4,"554":2,"555":1,"556":5,"557":4,"558":3,"559":1,"560":4,"561":2,"562":4,"563":3,"564":5,"565":4,"566":3,"567":2,"568":3,"569":2,"570":4,"571":3,"572":2,"573":4,"574":1,"575":2,"576":1,"577":2,"578":2,"579":3,"580":3,"581":2,"582":3,"583":3,"584":1,"585":3,"586":5,"587":3,"588":4,"589":3,"590":1,"591":1,"592":4,"593":4,"594":4,"595":3,"596":4,"597":3,"598":2,"599":2,"600":3,"601":2,"602":1,"603":4,"604":3,"605":4,"606":3,"607":4,"608":3,"609":3,"610":4,"611":5,"612":3,"613":2,"614":4,"615":4,"616":4,"617":4,"618":2,"619":4,"620":2,"621":3,"622":3,"623":2,"624":5,"625":3,"626":2,"627":2,"628":3,"629":2,"630":5,"631":2,"632":3,"633":1,"634":1,"635":2,"636":3,"637":4,"638":4,"639":5,"640":4,"641":5,"642":4,"643":3,"644":3,"645":4,"646":4,"647":2,"648":4,"649":4,"650":4,"651":3,"652":2,"653":2,"654":4,"655":2,"656":2,"657":2,"658":5,"659":3,"660":2,"661":3,"662":3,"663":1,"664":2,"665":4,"666":2,"667":3,"668":3,"669":3,"670":3,"671":4,"672":4,"673":2,"674":3,"675":3,"676":2,"677":3,"678":2,"679":3,"680":5,"681":1,"682":4,"683":4,"684":2,"685":2,"686":4,"687":3,"688":2,"689":3,"690":3,"691":3,"692":3,"693":4,"694":5,"695":4,"696":2,"697":2,"698":4,"699":4,"700":2,"701":3,"702":2,"703":4,"704":4,"705":2,"706":1,"707":2,"708":2,"709":5,"710":3,"711":4,"712":2,"713":5,"714":3,"715":1,"716":3,"717":1,"718":2,"719":4,"720":3,"721":2,"722":2,"723":3,"724":4,"725":2,"726":2,"727":3,"728":2,"729":2,"730":3,"731":2,"732":5,"733":2,"734":4,"735":4,"736":3,"737":4,"738":3,"739":2,"740":3,"741":3,"742":2,"743":2,"744":2,"745":2,"746":4,"747":3,"748":2,"749":3,"750":3,"751":3,"752":3,"753":2,"754":4,"755":3,"756":4,"757":2,"758":1,"759":2,"760":1,"761":3,"762":2,"763":3,"764":3,"765":4,"766":4,"767":4,"768":3,"769":4,"770":5,"771":3,"772":4,"773":2,"774":4,"775":3,"776":2,"777":3,"778":2,"779":2,"780":2,"781":4,"782":1,"783":3,"784":3,"785":4,"786":3,"787":1,"788":2,"789":3,"790":2,"791":4,"792":4,"793":3,"794":5,"795":2,"796":2,"797":4,"798":4,"799":3,"800":5,"801":2,"802":3,"803":4,"804":3,"805":2,"806":4,"807":2,"808":5,"809":4,"810":2,"811":2,"812":3,"813":4,"814":2,"815":4,"816":2,"817":3,"818":3,"819":5,"820":4,"821":4,"822":2,"823":5,"824":3,"825":3,"826":3,"827":3,"828":4,"829":3,"830":4,"831":1,"832":2,"833":3,"834":2,"835":3,"836":3,"837":4,"838":4,"839":5,"840":3,"841":2,"842":2,"843":4,"844":4,"845":5,"846":2,"847":2,"848":3,"849":2,"850":5,"851":3,"852":4,"853":4,"854":3,"855":3,"856":4,"857":4,"858":2,"859":4,"860":3,"861":2,"862":3,"863":3,"864":3,"865":3,"866":1,"867":1,"868":4,"869":1,"870":1,"871":3,"872":3,"873":1,"874":2,"875":3,"876":4,"877":3,"878":2,"879":2,"880":4,"881":2,"882":3,"883":3,"884":2,"885":3,"886":3,"887":2,"888":3,"889":1,"890":5,"891":4,"892":2,"893":3,"894":4,"895":2,"896":4,"897":5,"898":3,"899":4,"900":5,"901":2,"902":3,"903":3,"904":3,"905":3,"906":3,"907":4,"908":4,"909":2,"910":1,"911":1,"912":2,"913":2,"914":4,"915":1,"916":3,"917":4,"918":1,"919":3,"920":4,"921":2,"922":2,"923":3,"924":2,"925":3,"926":3,"927":4,"928":1,"929":4,"930":2,"931":1,"932":2,"933":4,"934":3,"935":3,"936":3,"937":3,"938":1,"939":4,"940":5,"941":5,"942":4,"943":4,"944":2,"945":5,"946":2,"947":3,"948":4,"949":4,"950":2,"951":3,"952":4,"953":3,"954":4,"955":2,"956":3,"957":2,"958":3,"959":5,"960":4,"961":4,"962":1,"963":3,"964":3,"965":4,"966":1,"967":3,"968":3,"969":3,"970":4,"971":3,"972":4,"973":5,"974":4,"975":4,"976":2,"977":3,"978":4,"979":4,"980":1,"981":1,"982":5,"983":2,"984":3,"985":4,"986":3,"987":2,"988":3,"989":3,"990":2,"991":5,"992":2,"993":3,"994":3,"995":2,"996":3,"997":2,"998":1,"999":3,"1000":3,"1001":3,"1002":3,"1003":3,"1004":3,"1005":2,"1006":4,"1007":5,"1008":2,"1009":2,"1010":3,"1011":3,"1012":3,"1013":4,"1014":4,"1015":3,"1016":2,"1017":3,"1018":3,"1019":4,"1020":4,"1021":4,"1022":2,"1023":3,"1024":4,"1025":4,"1026":5,"1027":4,"1028":2,"1029":3,"1030":2,"1031":5,"1032":4,"1033":3,"1034":2,"1035":5,"1036":2,"1037":2,"1038":2,"1039":5,"1040":4,"1041":4,"1042":4,"1043":3,"1044":2,"1045":2,"1046":3,"1047":2,"1048":4,"1049":4,"1050":2,"1051":3,"1052":5,"1053":1,"1054":4,"1055":3,"1056":4,"1057":3,"1058":4,"1059":1,"1060":2,"1061":2,"1062":2,"1063":3,"1064":2,"1065":4,"1066":2,"1067":2,"1068":1,"1069":4,"1070":2,"1071":5,"1072":4,"1073":2,"1074":2,"1075":2,"1076":3,"1077":4,"1078":4,"1079":4,"1080":3,"1081":4,"1082":3,"1083":1,"1084":4,"1085":1,"1086":1,"1087":4,"1088":3,"1089":3,"1090":4,"1091":3,"1092":3,"1093":2,"1094":3,"1095":1,"1096":2,"1097":4,"1098":2,"1099":1,"1100":3,"1101":3,"1102":3,"1103":1,"1104":4,"1105":4,"1106":2,"1107":3,"1108":3,"1109":4,"1110":4,"1111":2,"1112":2,"1113":2,"1114":4,"1115":3,"1116":2,"1117":1,"1118":4,"1119":4,"1120":3,"1121":2,"1122":5,"1123":4,"1124":3,"1125":2,"1126":4,"1127":4,"1128":2,"1129":4,"1130":2,"1131":4,"1132":4,"1133":4,"1134":2,"1135":3,"1136":3,"1137":2,"1138":3,"1139":4,"1140":1,"1141":4,"1142":4,"1143":2,"1144":4,"1145":3,"1146":4,"1147":4,"1148":4,"1149":1,"1150":2,"1151":2,"1152":4,"1153":4,"1154":4,"1155":3,"1156":2,"1157":2,"1158":3,"1159":2,"1160":2,"1161":3,"1162":3,"1163":4,"1164":3,"1165":4,"1166":2,"1167":3,"1168":3,"1169":4,"1170":3,"1171":1,"1172":4,"1173":2,"1174":2,"1175":2,"1176":3,"1177":2,"1178":1,"1179":2,"1180":4,"1181":3,"1182":1,"1183":1,"1184":3,"1185":2,"1186":3,"1187":3,"1188":2,"1189":3,"1190":4,"1191":4,"1192":2,"1193":2,"1194":3,"1195":4,"1196":4,"1197":3,"1198":3,"1199":3,"1200":5,"1201":4,"1202":2,"1203":3,"1204":1,"1205":5,"1206":1,"1207":2,"1208":3,"1209":3,"1210":4,"1211":3,"1212":4,"1213":2,"1214":1,"1215":4,"1216":5,"1217":4,"1218":3,"1219":2,"1220":3,"1221":3,"1222":2,"1223":3,"1224":4,"1225":2,"1226":5,"1227":4,"1228":3,"1229":3,"1230":4,"1231":1,"1232":3,"1233":2,"1234":4,"1235":3,"1236":5,"1237":3,"1238":3,"1239":2,"1240":2,"1241":4,"1242":3,"1243":2,"1244":4,"1245":3,"1246":3,"1247":2,"1248":4,"1249":2,"1250":3,"1251":3,"1252":2,"1253":4,"1254":2,"1255":2,"1256":2,"1257":1,"1258":4,"1259":4,"1260":3,"1261":2,"1262":1,"1263":2,"1264":4,"1265":4,"1266":4,"1267":4,"1268":3,"1269":1,"1270":5,"1271":2,"1272":3,"1273":3,"1274":5,"1275":2,"1276":2,"1277":5,"1278":4,"1279":3,"1280":2,"1281":5,"1282":3,"1283":1,"1284":4,"1285":1,"1286":2,"1287":1,"1288":1,"1289":5,"1290":5,"1291":2,"1292":4,"1293":1,"1294":3,"1295":3,"1296":2,"1297":2,"1298":2,"1299":2,"1300":3,"1301":2,"1302":1,"1303":2,"1304":5,"1305":2,"1306":1,"1307":3,"1308":4,"1309":3,"1310":1,"1311":2,"1312":1,"1313":4,"1314":4,"1315":3,"1316":2,"1317":2,"1318":4,"1319":3,"1320":2,"1321":2,"1322":4,"1323":4,"1324":5,"1325":2,"1326":4,"1327":2,"1328":2,"1329":3,"1330":5,"1331":4,"1332":2,"1333":3,"1334":1,"1335":2,"1336":4,"1337":1,"1338":1,"1339":3,"1340":2,"1341":2,"1342":4,"1343":3,"1344":2,"1345":2,"1346":4,"1347":4,"1348":2,"1349":3,"1350":4,"1351":2,"1352":3,"1353":1,"1354":3,"1355":3,"1356":3,"1357":2,"1358":3,"1359":3,"1360":4,"1361":3,"1362":2,"1363":3,"1364":2,"1365":5,"1366":1,"1367":3,"1368":1,"1369":3,"1370":5,"1371":3,"1372":3,"1373":3,"1374":4,"1375":3,"1376":4,"1377":4,"1378":4,"1379":4,"1380":2,"1381":3,"1382":3,"1383":4,"1384":3,"1385":4,"1386":2,"1387":2,"1388":1,"1389":4,"1390":3,"1391":3,"1392":2,"1393":3,"1394":3,"1395":2,"1396":4,"1397":3,"1398":5,"1399":4,"1400":2,"1401":2,"1402":4,"1403":3,"1404":2,"1405":2,"1406":4,"1407":3,"1408":2,"1409":3,"1410":2,"1411":3,"1412":4,"1413":2,"1414":3,"1415":1,"1416":1,"1417":5,"1418":3,"1419":4,"1420":4,"1421":4,"1422":5,"1423":2,"1424":3,"1425":2,"1426":1,"1427":4,"1428":3,"1429":3,"1430":4,"1431":1,"1432":4,"1433":3,"1434":1,"1435":3,"1436":3,"1437":2,"1438":2,"1439":2,"1440":4,"1441":4,"1442":2,"1443":3,"1444":3,"1445":2,"1446":2,"1447":3,"1448":3,"1449":5,"1450":2,"1451":2,"1452":2,"1453":1,"1454":3,"1455":5,"1456":3,"1457":3,"1458":4,"1459":5,"1460":1,"1461":3,"1462":3,"1463":4,"1464":1,"1465":3,"1466":1,"1467":4,"1468":3,"1469":2,"1470":2,"1471":3,"1472":4,"1473":3,"1474":1,"1475":3,"1476":3,"1477":3,"1478":3,"1479":1,"1480":1,"1481":2,"1482":2,"1483":1,"1484":2,"1485":2,"1486":4,"1487":1,"1488":2,"1489":3,"1490":4,"1491":4,"1492":3,"1493":1,"1494":4,"1495":3,"1496":5,"1497":4,"1498":3,"1499":4,"1500":2,"1501":4,"1502":2,"1503":3,"1504":4,"1505":4,"1506":4,"1507":5,"1508":3,"1509":3,"1510":3,"1511":3,"1512":3,"1513":4,"1514":5,"1515":4,"1516":1,"1517":3,"1518":3,"1519":2,"1520":1,"1521":1,"1522":5,"1523":2,"1524":2,"1525":3,"1526":2,"1527":3,"1528":4,"1529":3,"1530":3,"1531":3,"1532":4,"1533":2,"1534":1,"1535":3,"1536":2,"1537":3,"1538":2,"1539":3,"1540":1,"1541":3,"1542":2,"1543":3,"1544":3,"1545":4,"1546":3,"1547":2,"1548":3,"1549":2,"1550":5,"1551":3,"1552":5,"1553":5,"1554":4,"1555":4,"1556":3,"1557":2,"1558":4,"1559":3,"1560":3,"1561":2,"1562":4,"1563":3,"1564":4,"1565":2,"1566":2,"1567":3,"1568":4,"1569":4,"1570":4,"1571":5,"1572":4,"1573":5,"1574":5,"1575":2,"1576":3,"1577":3,"1578":1,"1579":1,"1580":2,"1581":3,"1582":4,"1583":3,"1584":3,"1585":2,"1586":3,"1587":3,"1588":3,"1589":3,"1590":3,"1591":3,"1592":4,"1593":4,"1594":4,"1595":2,"1596":3,"1597":2,"1598":2,"1599":4,"1600":3,"1601":3,"1602":2,"1603":4,"1604":4,"1605":2,"1606":2,"1607":2,"1608":4,"1609":4,"1610":4,"1611":4,"1612":2,"1613":2,"1614":2,"1615":5,"1616":2,"1617":3,"1618":3,"1619":2,"1620":3,"1621":2,"1622":1,"1623":5,"1624":4,"1625":2,"1626":4,"1627":2,"1628":5,"1629":3,"1630":3,"1631":2,"1632":4,"1633":4,"1634":2,"1635":3,"1636":3,"1637":3,"1638":1,"1639":2,"1640":4,"1641":2,"1642":3,"1643":4,"1644":2,"1645":5,"1646":3,"1647":1,"1648":3,"1649":4,"1650":4,"1651":3,"1652":2,"1653":4,"1654":3,"1655":4,"1656":3,"1657":4,"1658":2,"1659":2,"1660":2,"1661":4,"1662":2,"1663":1,"1664":5,"1665":3,"1666":4,"1667":2,"1668":4,"1669":3,"1670":3,"1671":2,"1672":3,"1673":4,"1674":4,"1675":3,"1676":3,"1677":2,"1678":4,"1679":2,"1680":2,"1681":5,"1682":4,"1683":5,"1684":4,"1685":3,"1686":3,"1687":3,"1688":5,"1689":2,"1690":3,"1691":3,"1692":4,"1693":2,"1694":3,"1695":2,"1696":3,"1697":3,"1698":3,"1699":4,"1700":2,"1701":2,"1702":3,"1703":3,"1704":4,"1705":2,"1706":2,"1707":3,"1708":3,"1709":2,"1710":2,"1711":4,"1712":5,"1713":2,"1714":5,"1715":3,"1716":2,"1717":2,"1718":1,"1719":5,"1720":4,"1721":3,"1722":3,"1723":5,"1724":4,"1725":1,"1726":1,"1727":4,"1728":3,"1729":1,"1730":3,"1731":4,"1732":4,"1733":3,"1734":3,"1735":4,"1736":2,"1737":3,"1738":4,"1739":4,"1740":2,"1741":3,"1742":1,"1743":4,"1744":4,"1745":2,"1746":2,"1747":3,"1748":5,"1749":5,"1750":4,"1751":3,"1752":3,"1753":2,"1754":1,"1755":1,"1756":2,"1757":2,"1758":2,"1759":3,"1760":2,"1761":3,"1762":4,"1763":3,"1764":3,"1765":3,"1766":3,"1767":2,"1768":2,"1769":3,"1770":2,"1771":1,"1772":4,"1773":5,"1774":3,"1775":4,"1776":3,"1777":4,"1778":4,"1779":4,"1780":5,"1781":4,"1782":2,"1783":2,"1784":3,"1785":1,"1786":2,"1787":5,"1788":1,"1789":4,"1790":2,"1791":3,"1792":3,"1793":2,"1794":4,"1795":3,"1796":1,"1797":2,"1798":5,"1799":2,"1800":4,"1801":3,"1802":3,"1803":4,"1804":4,"1805":2,"1806":3,"1807":3,"1808":3,"1809":4,"1810":3,"1811":2,"1812":2,"1813":4,"1814":3,"1815":2,"1816":2,"1817":3,"1818":3,"1819":2,"1820":4,"1821":4,"1822":4,"1823":5,"1824":5,"1825":3,"1826":4,"1827":2,"1828":5,"1829":3,"1830":1,"1831":4,"1832":5,"1833":1,"1834":3,"1835":1,"1836":3,"1837":2,"1838":5,"1839":4,"1840":3,"1841":3,"1842":2,"1843":4,"1844":2,"1845":2,"1846":3,"1847":2,"1848":4,"1849":3,"1850":2,"1851":5,"1852":3,"1853":4,"1854":2,"1855":3,"1856":3,"1857":3,"1858":2,"1859":2,"1860":3,"1861":3,"1862":5,"1863":2,"1864":2,"1865":4,"1866":2,"1867":2,"1868":2,"1869":4,"1870":5,"1871":5,"1872":3,"1873":2,"1874":5,"1875":1,"1876":2,"1877":4,"1878":3,"1879":4,"1880":2,"1881":5,"1882":4,"1883":3,"1884":3,"1885":4,"1886":4,"1887":3,"1888":3,"1889":4,"1890":3,"1891":3,"1892":2,"1893":3,"1894":2,"1895":3,"1896":3,"1897":3,"1898":3,"1899":3,"1900":1,"1901":3,"1902":4,"1903":4,"1904":4,"1905":2,"1906":4,"1907":3,"1908":4,"1909":1,"1910":4,"1911":2,"1912":2,"1913":2,"1914":2,"1915":3,"1916":4,"1917":3,"1918":3,"1919":4,"1920":3,"1921":1,"1922":4,"1923":2,"1924":3,"1925":2,"1926":3,"1927":2,"1928":4,"1929":5,"1930":3,"1931":1,"1932":3,"1933":4,"1934":3,"1935":4,"1936":1,"1937":3,"1938":1,"1939":4,"1940":4,"1941":3,"1942":1,"1943":4,"1944":2,"1945":2,"1946":3,"1947":3,"1948":2,"1949":2,"1950":2,"1951":3,"1952":2,"1953":4,"1954":2,"1955":2,"1956":4,"1957":4,"1958":4,"1959":4,"1960":4,"1961":4,"1962":5,"1963":3,"1964":2,"1965":3,"1966":3,"1967":3,"1968":3,"1969":2,"1970":3,"1971":3,"1972":3,"1973":4,"1974":5,"1975":3,"1976":2,"1977":2,"1978":3,"1979":2,"1980":3,"1981":2,"1982":5,"1983":1,"1984":4,"1985":3,"1986":3,"1987":2,"1988":1,"1989":4,"1990":5,"1991":2,"1992":5,"1993":4,"1994":2,"1995":1,"1996":3,"1997":1,"1998":4,"1999":2,"2000":3,"2001":3,"2002":4,"2003":2,"2004":5,"2005":1,"2006":1,"2007":3,"2008":2,"2009":2,"2010":3,"2011":5,"2012":5,"2013":3,"2014":3,"2015":3,"2016":1,"2017":1,"2018":2,"2019":5,"2020":2,"2021":3,"2022":3,"2023":1,"2024":2,"2025":3,"2026":2,"2027":2,"2028":5,"2029":1,"2030":2,"2031":3,"2032":1,"2033":1,"2034":5,"2035":3,"2036":3,"2037":3,"2038":3,"2039":2,"2040":4,"2041":3,"2042":3,"2043":4,"2044":3,"2045":1,"2046":1,"2047":5,"2048":3,"2049":2,"2050":4,"2051":2,"2052":3,"2053":3,"2054":2,"2055":3,"2056":5,"2057":3,"2058":3,"2059":4,"2060":3,"2061":3,"2062":2,"2063":3,"2064":4,"2065":1,"2066":4,"2067":4,"2068":2,"2069":5,"2070":3,"2071":3,"2072":3,"2073":4,"2074":4,"2075":4,"2076":3,"2077":1,"2078":1,"2079":3,"2080":4,"2081":4,"2082":4,"2083":3,"2084":2,"2085":4,"2086":4,"2087":2,"2088":2,"2089":4,"2090":3,"2091":2,"2092":3,"2093":2,"2094":3,"2095":4,"2096":1,"2097":4,"2098":3,"2099":4,"2100":2,"2101":4,"2102":4,"2103":2,"2104":5,"2105":3,"2106":4,"2107":3,"2108":3,"2109":4,"2110":3,"2111":2,"2112":5,"2113":2,"2114":3,"2115":4,"2116":4,"2117":3,"2118":2,"2119":5,"2120":3,"2121":3,"2122":2,"2123":3,"2124":3,"2125":2,"2126":2,"2127":4,"2128":2,"2129":3,"2130":4,"2131":4,"2132":2,"2133":2,"2134":3,"2135":3,"2136":3,"2137":2,"2138":4,"2139":2,"2140":3,"2141":2,"2142":3,"2143":2,"2144":4,"2145":3,"2146":1,"2147":1,"2148":1,"2149":2,"2150":2,"2151":4,"2152":3,"2153":1,"2154":2,"2155":3,"2156":3,"2157":4,"2158":1,"2159":3,"2160":3,"2161":3,"2162":4,"2163":4,"2164":2,"2165":3,"2166":3,"2167":3,"2168":3,"2169":4,"2170":2,"2171":3,"2172":1,"2173":4,"2174":5,"2175":1,"2176":3,"2177":1,"2178":3,"2179":3,"2180":1,"2181":2,"2182":5,"2183":4,"2184":3,"2185":3,"2186":2,"2187":4,"2188":4,"2189":3,"2190":2,"2191":5,"2192":3,"2193":2,"2194":4,"2195":4,"2196":1,"2197":1,"2198":5,"2199":3,"2200":4,"2201":5,"2202":3,"2203":2,"2204":2,"2205":3,"2206":3,"2207":4,"2208":3,"2209":4,"2210":2,"2211":3,"2212":3,"2213":4,"2214":3,"2215":5,"2216":3,"2217":2,"2218":4,"2219":3,"2220":3,"2221":4,"2222":5,"2223":3,"2224":4,"2225":4,"2226":4,"2227":3,"2228":3,"2229":3,"2230":4,"2231":3,"2232":3,"2233":4,"2234":1,"2235":3,"2236":3,"2237":2,"2238":2,"2239":3,"2240":4,"2241":3,"2242":4,"2243":3,"2244":3,"2245":4,"2246":4,"2247":4,"2248":4,"2249":3,"2250":5,"2251":3,"2252":1,"2253":3,"2254":3,"2255":2,"2256":3,"2257":3,"2258":1,"2259":2,"2260":4,"2261":2,"2262":3,"2263":4,"2264":4,"2265":5,"2266":4,"2267":4,"2268":3,"2269":2,"2270":2,"2271":3,"2272":1,"2273":3,"2274":3,"2275":4,"2276":2,"2277":2,"2278":4,"2279":5,"2280":5,"2281":3,"2282":5,"2283":4,"2284":3,"2285":4,"2286":2,"2287":4,"2288":4,"2289":4,"2290":4,"2291":2,"2292":5,"2293":4,"2294":3,"2295":3,"2296":2,"2297":3,"2298":2,"2299":3,"2300":4,"2301":2,"2302":3,"2303":5,"2304":2,"2305":4,"2306":5,"2307":4,"2308":4,"2309":3,"2310":4,"2311":2,"2312":4,"2313":4,"2314":4,"2315":3,"2316":3,"2317":2,"2318":3,"2319":1,"2320":2,"2321":3,"2322":4,"2323":4,"2324":3,"2325":3,"2326":2,"2327":5,"2328":3,"2329":5,"2330":1,"2331":3,"2332":3,"2333":5,"2334":2,"2335":3,"2336":3,"2337":3,"2338":4,"2339":4,"2340":3,"2341":4,"2342":3,"2343":1,"2344":5,"2345":4,"2346":3,"2347":3,"2348":2,"2349":4,"2350":2,"2351":2,"2352":3,"2353":5,"2354":5,"2355":4,"2356":3,"2357":3,"2358":3,"2359":3,"2360":4,"2361":1,"2362":2,"2363":2,"2364":3,"2365":4,"2366":5,"2367":3,"2368":3,"2369":2,"2370":3,"2371":3,"2372":3,"2373":4,"2374":4,"2375":2,"2376":2,"2377":2,"2378":4,"2379":4,"2380":2,"2381":3,"2382":4,"2383":2,"2384":2,"2385":2,"2386":2,"2387":3,"2388":4,"2389":2,"2390":2,"2391":4,"2392":3,"2393":3,"2394":5,"2395":2,"2396":4,"2397":4,"2398":3,"2399":4,"2400":2,"2401":3,"2402":2,"2403":3,"2404":3,"2405":4,"2406":3,"2407":3,"2408":5,"2409":3,"2410":2,"2411":3,"2412":3,"2413":2,"2414":5,"2415":5,"2416":3,"2417":2,"2418":4,"2419":1,"2420":4,"2421":2,"2422":1,"2423":4,"2424":3,"2425":1,"2426":4,"2427":2,"2428":3,"2429":1,"2430":3,"2431":4,"2432":3,"2433":2,"2434":5,"2435":3,"2436":5,"2437":2,"2438":3,"2439":2,"2440":3,"2441":3,"2442":4,"2443":1,"2444":4,"2445":3,"2446":3,"2447":2,"2448":3,"2449":2,"2450":3,"2451":4,"2452":4,"2453":4,"2454":2,"2455":3,"2456":2,"2457":3,"2458":2,"2459":2,"2460":2,"2461":1,"2462":3,"2463":5,"2464":4,"2465":4,"2466":5,"2467":3,"2468":4,"2469":2,"2470":4,"2471":4,"2472":3,"2473":3,"2474":4,"2475":1,"2476":4,"2477":1,"2478":1,"2479":3,"2480":1,"2481":5,"2482":3,"2483":3,"2484":5,"2485":3,"2486":5,"2487":3,"2488":3,"2489":4,"2490":3,"2491":3,"2492":3,"2493":2,"2494":1,"2495":3,"2496":2,"2497":3,"2498":3,"2499":4,"2500":4,"2501":3,"2502":4,"2503":5,"2504":2,"2505":5,"2506":3,"2507":3,"2508":4,"2509":3,"2510":5,"2511":5,"2512":1,"2513":3,"2514":3,"2515":4,"2516":3,"2517":2,"2518":2,"2519":2,"2520":3,"2521":3,"2522":2,"2523":3,"2524":4,"2525":2,"2526":4,"2527":3,"2528":2,"2529":2,"2530":4,"2531":2,"2532":3,"2533":3,"2534":1,"2535":3,"2536":5,"2537":4,"2538":5,"2539":4,"2540":4,"2541":5,"2542":3,"2543":3,"2544":4,"2545":5,"2546":3,"2547":2,"2548":2,"2549":3,"2550":2,"2551":2,"2552":2,"2553":4,"2554":3,"2555":4,"2556":3,"2557":3,"2558":2,"2559":2,"2560":3,"2561":3,"2562":4,"2563":2,"2564":3,"2565":3,"2566":3,"2567":4,"2568":5,"2569":4,"2570":4,"2571":4,"2572":2,"2573":3,"2574":3,"2575":4,"2576":3,"2577":4,"2578":4,"2579":2,"2580":3,"2581":4,"2582":3,"2583":3,"2584":4,"2585":4,"2586":4,"2587":2,"2588":2,"2589":4,"2590":3,"2591":3,"2592":4,"2593":5,"2594":1,"2595":4,"2596":4,"2597":3,"2598":2,"2599":3,"2600":3,"2601":1,"2602":2,"2603":1,"2604":4,"2605":4,"2606":4,"2607":4,"2608":4,"2609":4,"2610":4,"2611":3,"2612":4,"2613":2,"2614":4,"2615":4,"2616":1,"2617":3,"2618":4,"2619":4,"2620":4,"2621":2,"2622":3,"2623":3,"2624":4,"2625":3,"2626":2,"2627":2,"2628":1,"2629":4,"2630":2,"2631":3,"2632":3,"2633":3,"2634":3,"2635":3,"2636":3,"2637":2,"2638":4,"2639":3,"2640":4,"2641":1,"2642":4,"2643":3,"2644":2,"2645":4,"2646":3,"2647":2,"2648":1,"2649":1,"2650":4,"2651":4,"2652":3,"2653":1,"2654":1,"2655":3,"2656":4,"2657":4,"2658":2,"2659":4,"2660":1,"2661":1,"2662":3,"2663":4,"2664":5,"2665":3,"2666":3,"2667":1,"2668":3,"2669":3,"2670":4,"2671":3,"2672":2,"2673":5,"2674":3,"2675":2,"2676":4,"2677":1,"2678":3,"2679":3,"2680":3,"2681":5,"2682":4,"2683":5,"2684":2,"2685":3,"2686":4,"2687":2,"2688":4,"2689":2,"2690":1,"2691":4,"2692":2,"2693":2,"2694":5,"2695":3,"2696":2,"2697":3,"2698":3,"2699":1,"2700":3,"2701":4,"2702":4,"2703":2,"2704":3,"2705":4,"2706":3,"2707":3,"2708":3,"2709":2,"2710":3,"2711":3,"2712":2,"2713":1,"2714":4,"2715":2,"2716":5,"2717":1,"2718":3,"2719":3,"2720":3,"2721":4,"2722":4,"2723":3,"2724":2,"2725":1,"2726":4,"2727":4,"2728":3,"2729":5,"2730":4,"2731":1,"2732":2,"2733":1,"2734":4,"2735":4,"2736":2,"2737":4,"2738":5,"2739":3,"2740":4,"2741":1,"2742":1,"2743":4,"2744":2,"2745":3,"2746":4,"2747":2,"2748":4,"2749":4,"2750":3,"2751":3,"2752":3,"2753":3,"2754":3,"2755":3,"2756":3,"2757":1,"2758":3,"2759":2,"2760":4,"2761":3,"2762":4,"2763":3,"2764":2,"2765":2,"2766":3,"2767":3,"2768":3,"2769":3,"2770":1,"2771":4,"2772":3,"2773":2,"2774":4,"2775":1,"2776":2,"2777":2,"2778":3,"2779":3,"2780":1,"2781":2,"2782":2,"2783":3,"2784":3,"2785":2,"2786":1,"2787":2,"2788":1,"2789":1,"2790":3,"2791":4,"2792":3,"2793":2,"2794":2,"2795":2,"2796":2,"2797":4,"2798":2,"2799":4,"2800":4,"2801":2,"2802":2,"2803":3,"2804":4,"2805":2,"2806":4,"2807":3,"2808":4,"2809":3,"2810":3,"2811":3,"2812":3,"2813":3,"2814":3,"2815":2,"2816":2,"2817":4,"2818":5,"2819":4,"2820":2,"2821":3,"2822":3,"2823":4,"2824":2,"2825":3,"2826":3,"2827":5,"2828":4,"2829":5,"2830":3,"2831":2,"2832":2,"2833":4,"2834":2,"2835":2,"2836":4,"2837":1,"2838":4,"2839":5,"2840":2,"2841":3,"2842":4,"2843":4,"2844":2,"2845":1,"2846":4,"2847":3,"2848":1,"2849":1,"2850":5,"2851":3,"2852":5,"2853":4,"2854":4,"2855":3,"2856":2,"2857":2,"2858":3,"2859":2,"2860":4,"2861":4,"2862":4,"2863":5,"2864":3,"2865":3,"2866":5,"2867":2,"2868":2,"2869":3,"2870":1,"2871":5,"2872":4,"2873":2,"2874":2,"2875":3,"2876":2,"2877":4,"2878":4,"2879":4,"2880":5,"2881":2,"2882":3,"2883":3,"2884":4,"2885":4,"2886":4,"2887":4,"2888":2,"2889":3,"2890":3,"2891":2,"2892":3,"2893":4,"2894":1,"2895":4,"2896":2,"2897":2,"2898":3,"2899":4,"2900":4,"2901":3,"2902":2,"2903":4,"2904":4,"2905":2,"2906":4,"2907":3,"2908":3,"2909":4,"2910":3,"2911":3,"2912":5,"2913":3,"2914":3,"2915":3,"2916":3,"2917":2,"2918":2,"2919":3,"2920":4,"2921":3,"2922":4,"2923":1,"2924":3,"2925":4,"2926":3,"2927":3,"2928":4,"2929":2,"2930":3,"2931":3,"2932":3,"2933":1,"2934":4,"2935":4,"2936":3,"2937":2,"2938":4,"2939":3,"2940":3,"2941":3,"2942":3,"2943":3,"2944":4,"2945":3,"2946":1,"2947":2,"2948":3,"2949":2,"2950":3,"2951":1,"2952":3,"2953":4,"2954":2,"2955":1,"2956":4,"2957":4,"2958":4,"2959":3,"2960":4,"2961":4,"2962":3,"2963":4,"2964":3,"2965":4,"2966":2,"2967":4,"2968":2,"2969":2,"2970":2,"2971":3,"2972":3,"2973":4,"2974":1,"2975":4,"2976":4,"2977":2,"2978":4,"2979":3,"2980":2,"2981":5,"2982":4,"2983":2,"2984":4,"2985":3,"2986":2,"2987":2,"2988":1,"2989":3,"2990":3,"2991":4,"2992":3,"2993":3,"2994":4,"2995":3,"2996":4,"2997":2,"2998":1,"2999":4,"3000":3,"3001":4,"3002":2,"3003":3,"3004":4,"3005":5,"3006":2,"3007":4,"3008":5,"3009":4,"3010":1,"3011":2,"3012":3,"3013":3,"3014":3,"3015":3,"3016":1,"3017":3,"3018":1,"3019":2,"3020":3,"3021":1,"3022":2,"3023":2,"3024":4,"3025":1,"3026":2,"3027":4,"3028":2,"3029":4,"3030":2,"3031":3,"3032":3,"3033":4,"3034":4,"3035":4,"3036":4,"3037":1,"3038":4,"3039":1,"3040":2,"3041":3,"3042":4,"3043":4,"3044":3,"3045":2,"3046":2,"3047":4,"3048":3,"3049":4,"3050":2,"3051":3,"3052":4,"3053":3,"3054":3,"3055":4,"3056":4,"3057":5,"3058":3,"3059":3,"3060":3,"3061":3,"3062":3,"3063":2,"3064":4,"3065":3,"3066":4,"3067":2,"3068":4,"3069":3,"3070":3,"3071":1,"3072":3,"3073":5,"3074":4,"3075":4,"3076":5,"3077":3,"3078":4,"3079":1,"3080":2,"3081":4,"3082":5,"3083":1,"3084":1,"3085":1,"3086":3,"3087":3,"3088":1,"3089":3,"3090":3,"3091":4,"3092":4,"3093":4,"3094":4,"3095":3,"3096":1,"3097":4,"3098":3,"3099":4,"3100":3,"3101":3,"3102":4,"3103":3,"3104":3,"3105":5,"3106":3,"3107":2,"3108":3,"3109":2,"3110":3,"3111":2,"3112":3,"3113":4,"3114":1,"3115":4,"3116":4,"3117":5,"3118":5,"3119":4,"3120":3,"3121":3,"3122":1,"3123":4,"3124":3,"3125":4,"3126":4,"3127":3,"3128":1,"3129":1,"3130":1,"3131":4,"3132":2,"3133":4,"3134":3,"3135":2,"3136":2,"3137":4,"3138":3,"3139":5,"3140":3,"3141":3,"3142":4,"3143":2,"3144":3,"3145":3,"3146":4,"3147":1,"3148":3,"3149":1,"3150":3,"3151":4,"3152":3,"3153":4,"3154":2,"3155":3,"3156":3,"3157":3,"3158":4,"3159":3,"3160":4,"3161":3,"3162":2,"3163":4,"3164":3,"3165":3,"3166":4,"3167":3,"3168":5,"3169":4,"3170":3,"3171":4,"3172":3,"3173":4,"3174":1,"3175":2,"3176":3,"3177":3,"3178":5,"3179":4,"3180":3,"3181":1,"3182":4,"3183":3,"3184":5,"3185":4,"3186":3,"3187":4,"3188":3,"3189":4,"3190":3,"3191":4,"3192":3,"3193":3,"3194":1,"3195":4,"3196":1,"3197":4,"3198":3,"3199":3,"3200":5,"3201":1,"3202":4,"3203":2,"3204":3,"3205":4,"3206":2,"3207":3,"3208":1,"3209":3,"3210":4,"3211":5,"3212":3,"3213":5,"3214":3,"3215":4,"3216":3,"3217":3,"3218":2,"3219":4,"3220":2,"3221":4,"3222":5,"3223":4,"3224":3,"3225":3,"3226":2,"3227":4,"3228":2,"3229":4,"3230":2,"3231":2,"3232":3,"3233":4,"3234":1,"3235":3,"3236":2,"3237":3,"3238":1,"3239":3,"3240":3,"3241":4,"3242":3,"3243":4,"3244":3,"3245":4,"3246":2,"3247":5,"3248":3,"3249":4,"3250":3,"3251":5,"3252":3,"3253":3,"3254":2,"3255":2,"3256":3,"3257":2,"3258":3,"3259":2,"3260":2,"3261":3,"3262":4,"3263":5,"3264":2,"3265":4,"3266":3,"3267":2,"3268":5,"3269":3,"3270":2,"3271":3,"3272":4,"3273":3,"3274":5,"3275":3,"3276":4,"3277":4,"3278":3,"3279":2,"3280":3,"3281":2,"3282":3,"3283":4,"3284":4,"3285":3,"3286":4,"3287":2,"3288":3,"3289":3,"3290":1,"3291":5,"3292":2,"3293":1,"3294":2,"3295":1,"3296":2,"3297":4,"3298":2,"3299":3,"3300":5,"3301":3,"3302":3,"3303":4,"3304":3,"3305":5,"3306":3,"3307":3,"3308":2,"3309":4,"3310":3,"3311":2,"3312":1,"3313":3,"3314":3,"3315":4,"3316":2,"3317":4,"3318":3,"3319":4,"3320":1,"3321":3,"3322":3,"3323":5,"3324":3,"3325":3,"3326":3,"3327":4,"3328":4,"3329":3,"3330":2,"3331":3,"3332":1,"3333":3,"3334":4,"3335":4,"3336":3,"3337":3,"3338":5,"3339":3,"3340":3,"3341":3,"3342":4,"3343":3,"3344":3,"3345":3,"3346":4,"3347":4,"3348":4,"3349":3,"3350":1,"3351":3,"3352":3,"3353":3,"3354":5,"3355":3,"3356":2,"3357":5,"3358":2,"3359":1,"3360":4,"3361":4,"3362":1,"3363":3,"3364":3,"3365":4,"3366":1,"3367":4,"3368":3,"3369":4,"3370":4,"3371":4,"3372":2,"3373":3,"3374":3,"3375":2,"3376":2,"3377":3,"3378":5,"3379":3,"3380":4,"3381":3,"3382":3,"3383":2,"3384":3,"3385":2,"3386":4,"3387":4,"3388":2,"3389":1,"3390":2,"3391":4,"3392":3,"3393":3,"3394":4,"3395":5,"3396":2,"3397":3,"3398":2,"3399":4,"3400":5,"3401":4,"3402":4,"3403":4,"3404":5,"3405":4,"3406":2,"3407":4,"3408":5,"3409":2,"3410":2,"3411":3,"3412":4,"3413":3,"3414":3,"3415":4,"3416":4,"3417":2,"3418":2,"3419":4,"3420":2,"3421":1,"3422":4,"3423":4,"3424":4,"3425":3,"3426":4,"3427":3,"3428":2,"3429":2,"3430":2,"3431":2,"3432":2,"3433":4,"3434":1,"3435":3,"3436":2,"3437":2,"3438":4,"3439":4,"3440":4,"3441":1,"3442":4,"3443":3,"3444":3,"3445":3,"3446":3,"3447":3,"3448":1,"3449":3,"3450":3,"3451":3,"3452":3,"3453":3,"3454":1,"3455":2,"3456":1,"3457":3,"3458":2,"3459":4,"3460":3,"3461":1,"3462":3,"3463":3,"3464":5,"3465":3,"3466":3,"3467":5,"3468":1,"3469":4,"3470":2,"3471":3,"3472":2,"3473":3,"3474":2,"3475":2,"3476":2,"3477":3,"3478":3,"3479":2,"3480":3,"3481":3,"3482":5,"3483":2,"3484":2,"3485":3,"3486":3,"3487":2,"3488":2,"3489":2,"3490":4,"3491":2,"3492":3,"3493":2,"3494":4,"3495":3,"3496":3,"3497":3,"3498":1,"3499":2,"3500":3,"3501":5,"3502":3,"3503":4,"3504":3,"3505":2,"3506":1,"3507":1,"3508":3,"3509":4,"3510":3,"3511":3,"3512":3,"3513":5,"3514":3,"3515":2,"3516":3,"3517":4,"3518":4,"3519":4,"3520":1,"3521":2,"3522":3,"3523":1,"3524":3,"3525":3,"3526":3,"3527":2,"3528":3,"3529":3,"3530":4,"3531":1,"3532":2,"3533":3,"3534":1,"3535":5,"3536":3,"3537":1,"3538":2,"3539":3,"3540":4,"3541":3,"3542":3,"3543":3,"3544":4,"3545":3,"3546":4,"3547":5,"3548":3,"3549":2,"3550":4,"3551":3,"3552":1,"3553":4,"3554":2,"3555":2,"3556":2,"3557":1,"3558":1,"3559":3,"3560":3,"3561":2,"3562":2,"3563":3,"3564":3,"3565":2,"3566":3,"3567":1,"3568":3,"3569":3,"3570":3,"3571":1,"3572":4,"3573":3,"3574":2,"3575":2,"3576":3,"3577":1,"3578":2,"3579":3,"3580":2,"3581":2,"3582":5,"3583":5,"3584":4,"3585":4,"3586":3,"3587":3,"3588":4,"3589":3,"3590":3,"3591":3,"3592":1,"3593":3,"3594":1,"3595":4,"3596":3,"3597":2,"3598":3,"3599":3,"3600":1,"3601":1,"3602":3,"3603":1,"3604":2,"3605":4,"3606":4,"3607":3,"3608":3,"3609":3,"3610":1,"3611":1,"3612":1,"3613":5,"3614":5,"3615":3,"3616":4,"3617":3,"3618":3,"3619":2,"3620":2,"3621":4,"3622":4,"3623":2,"3624":3,"3625":2,"3626":1,"3627":1,"3628":4,"3629":2,"3630":4,"3631":2,"3632":4,"3633":3,"3634":3,"3635":2,"3636":4,"3637":2,"3638":5,"3639":1,"3640":3,"3641":2,"3642":2,"3643":4,"3644":2,"3645":2,"3646":3,"3647":1,"3648":2,"3649":3,"3650":3,"3651":2,"3652":3,"3653":3,"3654":2,"3655":2,"3656":5,"3657":4,"3658":2,"3659":4,"3660":3,"3661":3,"3662":4,"3663":5,"3664":5,"3665":2,"3666":3,"3667":3,"3668":4,"3669":4,"3670":3,"3671":4,"3672":4,"3673":3,"3674":3,"3675":2,"3676":3,"3677":3,"3678":3,"3679":4,"3680":2,"3681":3,"3682":4,"3683":2,"3684":3,"3685":4,"3686":5,"3687":1,"3688":2,"3689":2,"3690":4,"3691":3,"3692":5,"3693":5,"3694":1,"3695":2,"3696":3,"3697":5,"3698":1,"3699":4,"3700":3,"3701":3,"3702":1,"3703":4,"3704":5,"3705":1,"3706":4,"3707":2,"3708":5,"3709":1,"3710":3,"3711":3,"3712":4,"3713":4,"3714":3,"3715":5,"3716":4,"3717":4,"3718":2,"3719":3,"3720":3,"3721":1,"3722":3,"3723":3,"3724":4,"3725":4,"3726":3,"3727":3,"3728":4,"3729":2,"3730":5,"3731":2,"3732":5,"3733":4,"3734":5,"3735":2,"3736":2,"3737":5,"3738":3,"3739":2,"3740":2,"3741":3,"3742":3,"3743":2,"3744":2,"3745":3,"3746":3,"3747":1,"3748":3,"3749":1,"3750":3,"3751":4,"3752":3,"3753":3,"3754":5,"3755":4,"3756":4,"3757":3,"3758":2,"3759":3,"3760":4,"3761":3,"3762":2,"3763":2,"3764":2,"3765":1,"3766":3,"3767":3,"3768":5,"3769":4,"3770":1,"3771":4,"3772":4,"3773":3,"3774":5,"3775":1,"3776":4,"3777":3,"3778":2,"3779":1,"3780":3,"3781":2,"3782":3,"3783":2,"3784":2,"3785":2,"3786":4,"3787":2,"3788":3,"3789":4,"3790":1,"3791":2,"3792":4,"3793":4,"3794":4,"3795":2,"3796":4,"3797":3,"3798":5,"3799":3,"3800":2,"3801":3,"3802":1,"3803":3,"3804":4,"3805":1,"3806":3,"3807":1,"3808":4,"3809":3,"3810":5,"3811":4,"3812":3,"3813":2,"3814":3,"3815":2,"3816":1,"3817":2,"3818":1,"3819":3,"3820":4,"3821":3,"3822":5,"3823":4,"3824":4,"3825":3,"3826":3,"3827":2,"3828":3,"3829":2,"3830":2,"3831":1,"3832":5,"3833":3,"3834":3,"3835":4,"3836":4,"3837":4,"3838":2,"3839":1,"3840":4,"3841":3,"3842":4,"3843":4,"3844":3,"3845":4,"3846":2,"3847":3,"3848":5,"3849":2,"3850":4,"3851":4,"3852":2,"3853":3,"3854":4,"3855":4,"3856":3,"3857":4,"3858":3,"3859":4,"3860":3,"3861":4,"3862":4,"3863":5,"3864":3,"3865":3,"3866":3,"3867":4,"3868":4,"3869":1,"3870":2,"3871":4,"3872":5,"3873":4,"3874":3,"3875":4,"3876":4,"3877":3,"3878":3,"3879":3,"3880":3,"3881":3,"3882":2,"3883":4,"3884":3,"3885":2,"3886":4,"3887":4,"3888":4,"3889":2,"3890":3,"3891":2,"3892":4,"3893":3,"3894":3,"3895":4,"3896":3,"3897":2,"3898":4,"3899":5,"3900":4,"3901":1,"3902":4,"3903":4,"3904":4,"3905":3,"3906":4,"3907":1,"3908":1,"3909":3,"3910":4,"3911":1,"3912":2,"3913":1,"3914":3,"3915":4,"3916":2,"3917":3,"3918":4,"3919":2,"3920":4,"3921":2,"3922":3,"3923":4,"3924":2,"3925":3,"3926":4,"3927":3,"3928":2,"3929":3,"3930":4,"3931":5,"3932":4,"3933":4,"3934":3,"3935":1,"3936":3,"3937":4,"3938":5,"3939":3,"3940":3,"3941":3,"3942":1,"3943":3,"3944":1,"3945":4,"3946":2,"3947":4,"3948":2,"3949":3,"3950":3,"3951":3,"3952":3,"3953":3,"3954":2,"3955":4,"3956":3,"3957":3,"3958":5,"3959":3,"3960":3,"3961":3,"3962":3,"3963":4,"3964":5,"3965":2,"3966":4,"3967":1,"3968":4,"3969":3,"3970":2,"3971":2,"3972":5,"3973":3,"3974":3,"3975":4,"3976":5,"3977":4,"3978":3,"3979":2,"3980":4,"3981":4,"3982":3,"3983":1,"3984":3,"3985":3,"3986":2,"3987":2,"3988":5,"3989":2,"3990":3,"3991":3,"3992":3,"3993":3,"3994":3,"3995":2,"3996":1,"3997":5,"3998":3,"3999":1,"4000":1,"4001":3,"4002":3,"4003":3,"4004":3,"4005":4,"4006":5,"4007":4,"4008":3,"4009":3,"4010":4,"4011":3,"4012":4,"4013":4,"4014":3,"4015":2,"4016":4,"4017":3,"4018":4,"4019":2,"4020":1,"4021":4,"4022":2,"4023":2,"4024":5,"4025":1,"4026":3,"4027":3,"4028":4,"4029":3,"4030":5,"4031":4,"4032":2,"4033":3,"4034":5,"4035":3,"4036":4,"4037":3,"4038":4,"4039":2,"4040":3,"4041":3,"4042":4,"4043":4,"4044":4,"4045":3,"4046":2,"4047":3,"4048":4,"4049":5,"4050":4,"4051":3,"4052":3,"4053":2,"4054":3,"4055":4,"4056":3,"4057":3,"4058":1,"4059":2,"4060":4,"4061":3,"4062":3,"4063":2,"4064":2,"4065":2,"4066":4,"4067":4,"4068":4,"4069":3,"4070":4,"4071":2,"4072":3,"4073":4,"4074":3,"4075":2,"4076":2,"4077":3,"4078":5,"4079":4,"4080":2,"4081":3,"4082":3,"4083":4,"4084":2,"4085":3,"4086":2,"4087":2,"4088":3,"4089":2,"4090":4,"4091":3,"4092":2,"4093":3,"4094":4,"4095":4,"4096":2,"4097":5,"4098":4,"4099":3,"4100":1,"4101":2,"4102":3,"4103":2,"4104":3,"4105":1,"4106":3,"4107":2,"4108":3,"4109":4,"4110":3,"4111":4,"4112":1,"4113":2,"4114":3,"4115":4,"4116":4,"4117":3,"4118":3,"4119":1,"4120":4,"4121":5,"4122":4,"4123":3,"4124":5,"4125":1,"4126":3,"4127":4,"4128":2,"4129":1,"4130":4,"4131":1,"4132":1,"4133":2,"4134":4,"4135":3,"4136":4,"4137":5,"4138":5,"4139":1,"4140":2,"4141":2,"4142":5,"4143":5,"4144":2,"4145":2,"4146":4,"4147":2,"4148":4,"4149":3,"4150":4,"4151":3,"4152":2,"4153":2,"4154":4,"4155":4,"4156":3,"4157":4,"4158":2,"4159":4,"4160":1,"4161":2,"4162":5,"4163":4,"4164":4,"4165":5,"4166":2,"4167":3,"4168":5,"4169":2,"4170":3,"4171":4,"4172":3,"4173":3,"4174":4,"4175":3,"4176":4,"4177":4,"4178":3,"4179":1,"4180":4,"4181":2,"4182":4,"4183":3,"4184":5,"4185":3,"4186":4,"4187":3,"4188":2,"4189":4,"4190":2,"4191":3,"4192":2,"4193":5,"4194":5,"4195":3,"4196":4,"4197":3,"4198":5,"4199":5,"4200":2,"4201":4,"4202":2,"4203":3,"4204":3,"4205":3,"4206":3,"4207":3,"4208":1,"4209":1,"4210":3,"4211":3,"4212":1,"4213":2,"4214":2,"4215":2,"4216":2,"4217":1,"4218":3,"4219":1,"4220":4,"4221":4,"4222":4,"4223":2,"4224":1,"4225":3,"4226":1,"4227":3,"4228":3,"4229":3,"4230":3,"4231":4,"4232":3,"4233":3,"4234":4,"4235":3,"4236":5,"4237":2,"4238":4,"4239":2,"4240":2,"4241":3,"4242":4,"4243":1,"4244":3,"4245":3,"4246":4,"4247":1,"4248":3,"4249":5,"4250":2,"4251":2,"4252":3,"4253":5,"4254":3,"4255":3,"4256":3,"4257":4,"4258":4,"4259":4,"4260":4,"4261":4,"4262":4,"4263":2,"4264":1,"4265":5,"4266":3,"4267":5,"4268":3,"4269":2,"4270":5,"4271":3,"4272":1,"4273":4,"4274":5,"4275":3,"4276":4,"4277":2,"4278":2,"4279":2,"4280":5,"4281":4,"4282":2,"4283":3,"4284":1,"4285":2,"4286":2,"4287":5,"4288":3,"4289":4,"4290":3,"4291":3,"4292":4,"4293":3,"4294":3,"4295":1,"4296":3,"4297":2,"4298":5,"4299":2,"4300":3,"4301":3,"4302":5,"4303":3,"4304":4,"4305":2,"4306":4,"4307":3,"4308":4,"4309":4,"4310":1,"4311":3,"4312":1,"4313":3,"4314":3,"4315":3,"4316":5,"4317":2,"4318":3,"4319":4,"4320":3,"4321":2,"4322":3,"4323":5,"4324":1,"4325":4,"4326":4,"4327":3,"4328":5,"4329":4,"4330":3,"4331":2,"4332":5,"4333":2,"4334":2,"4335":1,"4336":4,"4337":5,"4338":3,"4339":4,"4340":2,"4341":4,"4342":2,"4343":4,"4344":3,"4345":4,"4346":4,"4347":2,"4348":2,"4349":4,"4350":4,"4351":4,"4352":5,"4353":4,"4354":2,"4355":4,"4356":4,"4357":4,"4358":3,"4359":2,"4360":3,"4361":4,"4362":2,"4363":5,"4364":1,"4365":4,"4366":4,"4367":2,"4368":1,"4369":2,"4370":3,"4371":4,"4372":3,"4373":1,"4374":4,"4375":3,"4376":4,"4377":2,"4378":5,"4379":3,"4380":3,"4381":4,"4382":2,"4383":3,"4384":4,"4385":4,"4386":4,"4387":5,"4388":2,"4389":2,"4390":5,"4391":3,"4392":3,"4393":4,"4394":3,"4395":4,"4396":4,"4397":4,"4398":4,"4399":3,"4400":2,"4401":2,"4402":3,"4403":3,"4404":4,"4405":3,"4406":5,"4407":3,"4408":4,"4409":3,"4410":3,"4411":4,"4412":3,"4413":4,"4414":3,"4415":4,"4416":3,"4417":1,"4418":3,"4419":2,"4420":4,"4421":3,"4422":1,"4423":1,"4424":3,"4425":2,"4426":4,"4427":3,"4428":2,"4429":2,"4430":4,"4431":3,"4432":5,"4433":5,"4434":4,"4435":3,"4436":2,"4437":3,"4438":3,"4439":2,"4440":5,"4441":1,"4442":3,"4443":3,"4444":3,"4445":3,"4446":4,"4447":3,"4448":2,"4449":4,"4450":3,"4451":2,"4452":3,"4453":3,"4454":2,"4455":2,"4456":2,"4457":3,"4458":3,"4459":4,"4460":3,"4461":3,"4462":3,"4463":4,"4464":3,"4465":3,"4466":4,"4467":5,"4468":3,"4469":3,"4470":4,"4471":3,"4472":5,"4473":4,"4474":5,"4475":3,"4476":2,"4477":3,"4478":2,"4479":3,"4480":3,"4481":1,"4482":4,"4483":3,"4484":4,"4485":4,"4486":4,"4487":1,"4488":3,"4489":5,"4490":2,"4491":3,"4492":3,"4493":4,"4494":3,"4495":1,"4496":1,"4497":4,"4498":3,"4499":4,"4500":3,"4501":3,"4502":5,"4503":2,"4504":4,"4505":4,"4506":3,"4507":4,"4508":3,"4509":4,"4510":3,"4511":2,"4512":2,"4513":2,"4514":4,"4515":2,"4516":2,"4517":4,"4518":2,"4519":4,"4520":5,"4521":3,"4522":5,"4523":4,"4524":5,"4525":3,"4526":2,"4527":4,"4528":3,"4529":2,"4530":3,"4531":4,"4532":4,"4533":2,"4534":3,"4535":3,"4536":4,"4537":1,"4538":5,"4539":3,"4540":2,"4541":4,"4542":3,"4543":1,"4544":3,"4545":3,"4546":2,"4547":3,"4548":5,"4549":3,"4550":1,"4551":2,"4552":4,"4553":2,"4554":3,"4555":3,"4556":3,"4557":4,"4558":3,"4559":3,"4560":4,"4561":3,"4562":3,"4563":4,"4564":4,"4565":2,"4566":3,"4567":2,"4568":2,"4569":3,"4570":3,"4571":3,"4572":3,"4573":3,"4574":4,"4575":2,"4576":3,"4577":3,"4578":3,"4579":5,"4580":4,"4581":5,"4582":4,"4583":2,"4584":2,"4585":3,"4586":3,"4587":1,"4588":5,"4589":3,"4590":4,"4591":4,"4592":1,"4593":4,"4594":4,"4595":3,"4596":5,"4597":4,"4598":1,"4599":2,"4600":3,"4601":2,"4602":4,"4603":4,"4604":5,"4605":2,"4606":5,"4607":3,"4608":2,"4609":3,"4610":4,"4611":5,"4612":3,"4613":4,"4614":4,"4615":1,"4616":5,"4617":4,"4618":5,"4619":1,"4620":2,"4621":1,"4622":4,"4623":4,"4624":4,"4625":4,"4626":4,"4627":3,"4628":3,"4629":4,"4630":4,"4631":3,"4632":4,"4633":2,"4634":2,"4635":3,"4636":5,"4637":2,"4638":5,"4639":4,"4640":2,"4641":4,"4642":3,"4643":4,"4644":1,"4645":1,"4646":4,"4647":4,"4648":2,"4649":4,"4650":4,"4651":4,"4652":3,"4653":2,"4654":3,"4655":3,"4656":3,"4657":3,"4658":3,"4659":1,"4660":5,"4661":1,"4662":1,"4663":1,"4664":4,"4665":2,"4666":5,"4667":1,"4668":5,"4669":3,"4670":2,"4671":4,"4672":1,"4673":4,"4674":2,"4675":1,"4676":5,"4677":1,"4678":2,"4679":2,"4680":2,"4681":1,"4682":4,"4683":2,"4684":5,"4685":1,"4686":5,"4687":2,"4688":2,"4689":2,"4690":2,"4691":4,"4692":2,"4693":5,"4694":3,"4695":2,"4696":3,"4697":4,"4698":3,"4699":5,"4700":1,"4701":3,"4702":2,"4703":3,"4704":3,"4705":4,"4706":4,"4707":2,"4708":2,"4709":2,"4710":2,"4711":4,"4712":3,"4713":4,"4714":1,"4715":4,"4716":2,"4717":3,"4718":3,"4719":3,"4720":4,"4721":2,"4722":2,"4723":3,"4724":1,"4725":1,"4726":3,"4727":3,"4728":5,"4729":3,"4730":4,"4731":5,"4732":2,"4733":4,"4734":4,"4735":4,"4736":4,"4737":1,"4738":3,"4739":3,"4740":4,"4741":3,"4742":2,"4743":3,"4744":5,"4745":2,"4746":2,"4747":3,"4748":1,"4749":3,"4750":3,"4751":2,"4752":5,"4753":2,"4754":4,"4755":2,"4756":3,"4757":3,"4758":3,"4759":2,"4760":1,"4761":3,"4762":2,"4763":4,"4764":2,"4765":3,"4766":3,"4767":3,"4768":3,"4769":3,"4770":2,"4771":3,"4772":5,"4773":2,"4774":3,"4775":4,"4776":2,"4777":4,"4778":1,"4779":4,"4780":2,"4781":4,"4782":3,"4783":2,"4784":4,"4785":4,"4786":4,"4787":3,"4788":3,"4789":3,"4790":3,"4791":4,"4792":2,"4793":2,"4794":4,"4795":3,"4796":1,"4797":2,"4798":2,"4799":4,"4800":1,"4801":1,"4802":2,"4803":5,"4804":4,"4805":2,"4806":3,"4807":3,"4808":3,"4809":2,"4810":5,"4811":2,"4812":4,"4813":2,"4814":1,"4815":2,"4816":2,"4817":4,"4818":3,"4819":2,"4820":2,"4821":3,"4822":3,"4823":3,"4824":3,"4825":4,"4826":4,"4827":4,"4828":4,"4829":1,"4830":3,"4831":2,"4832":2,"4833":4,"4834":3,"4835":4,"4836":1,"4837":3,"4838":3,"4839":2,"4840":3,"4841":4,"4842":3,"4843":5,"4844":2,"4845":3,"4846":3,"4847":5,"4848":1,"4849":2,"4850":3,"4851":3,"4852":2,"4853":1,"4854":2,"4855":4,"4856":4,"4857":3,"4858":4,"4859":3,"4860":2,"4861":2,"4862":3,"4863":2,"4864":5,"4865":4,"4866":3,"4867":4,"4868":2,"4869":2,"4870":3,"4871":2,"4872":3,"4873":2,"4874":2,"4875":3,"4876":2,"4877":3,"4878":2,"4879":4,"4880":4,"4881":1,"4882":4,"4883":4,"4884":2,"4885":2,"4886":3,"4887":1,"4888":5,"4889":1,"4890":5,"4891":2,"4892":4,"4893":3,"4894":2,"4895":3,"4896":3,"4897":2,"4898":3,"4899":2,"4900":4,"4901":2,"4902":3,"4903":4,"4904":3,"4905":2,"4906":3,"4907":5,"4908":4,"4909":4,"4910":1,"4911":4,"4912":3,"4913":4,"4914":5,"4915":2,"4916":2,"4917":2,"4918":2,"4919":4,"4920":2,"4921":5,"4922":2,"4923":3,"4924":5,"4925":2,"4926":3,"4927":2,"4928":3,"4929":3,"4930":3,"4931":4,"4932":3,"4933":3,"4934":4,"4935":2,"4936":2,"4937":1,"4938":5,"4939":4,"4940":4,"4941":1,"4942":2,"4943":2,"4944":5,"4945":4,"4946":3,"4947":4,"4948":3,"4949":4,"4950":3,"4951":1,"4952":4,"4953":4,"4954":3,"4955":3,"4956":3,"4957":3,"4958":3,"4959":3,"4960":1,"4961":3,"4962":3,"4963":4,"4964":3,"4965":2,"4966":3,"4967":4,"4968":4,"4969":4,"4970":5,"4971":3,"4972":2,"4973":5,"4974":3,"4975":3,"4976":1,"4977":3,"4978":3,"4979":4,"4980":1,"4981":2,"4982":2,"4983":3,"4984":3,"4985":5,"4986":3,"4987":2,"4988":4,"4989":4,"4990":4,"4991":3,"4992":1,"4993":1,"4994":2,"4995":2,"4996":2,"4997":2,"4998":3,"4999":2,"5000":2,"5001":5,"5002":3,"5003":3,"5004":4,"5005":3,"5006":4,"5007":1,"5008":2,"5009":2,"5010":2,"5011":3,"5012":1,"5013":4,"5014":2,"5015":4,"5016":4,"5017":1,"5018":3,"5019":3,"5020":3,"5021":1,"5022":2,"5023":2,"5024":2,"5025":4,"5026":4,"5027":3,"5028":2,"5029":5,"5030":3,"5031":4,"5032":2,"5033":3,"5034":4,"5035":3,"5036":4,"5037":2,"5038":4,"5039":3,"5040":4,"5041":4,"5042":3,"5043":3,"5044":2,"5045":2,"5046":3,"5047":2,"5048":2,"5049":3,"5050":5,"5051":2,"5052":4,"5053":4,"5054":2,"5055":4,"5056":3,"5057":3,"5058":3,"5059":5,"5060":3,"5061":2,"5062":2,"5063":4,"5064":3,"5065":3,"5066":4,"5067":2,"5068":4,"5069":4,"5070":2,"5071":4,"5072":3,"5073":1,"5074":2,"5075":3,"5076":3,"5077":3,"5078":5,"5079":2,"5080":2,"5081":4,"5082":3,"5083":1,"5084":3,"5085":3,"5086":5,"5087":2,"5088":2,"5089":3,"5090":4,"5091":4,"5092":3,"5093":2,"5094":4,"5095":2,"5096":2,"5097":3,"5098":1,"5099":3,"5100":3,"5101":5,"5102":1,"5103":4,"5104":3,"5105":4,"5106":2,"5107":3,"5108":3,"5109":4,"5110":2,"5111":1,"5112":4,"5113":2,"5114":3,"5115":3,"5116":2,"5117":2,"5118":5,"5119":3,"5120":2,"5121":5,"5122":2,"5123":4,"5124":3,"5125":2,"5126":3,"5127":1,"5128":5,"5129":4,"5130":3,"5131":3,"5132":3,"5133":2,"5134":1,"5135":4,"5136":4,"5137":2,"5138":2,"5139":3,"5140":2,"5141":2,"5142":2,"5143":4,"5144":1,"5145":4,"5146":3,"5147":1,"5148":4,"5149":2,"5150":2,"5151":4,"5152":3,"5153":3,"5154":4,"5155":4,"5156":3,"5157":4,"5158":4,"5159":1,"5160":4,"5161":2,"5162":2,"5163":3,"5164":2,"5165":4,"5166":2,"5167":4,"5168":2,"5169":3,"5170":2,"5171":3,"5172":3,"5173":4,"5174":2,"5175":5,"5176":4,"5177":3,"5178":3,"5179":3,"5180":4,"5181":4,"5182":2,"5183":1,"5184":2,"5185":1,"5186":1,"5187":3,"5188":4,"5189":4,"5190":4,"5191":3,"5192":3,"5193":3,"5194":3,"5195":2,"5196":1,"5197":4,"5198":3,"5199":2,"5200":2,"5201":3,"5202":4,"5203":1,"5204":2,"5205":1,"5206":3,"5207":2,"5208":1,"5209":3,"5210":4,"5211":3,"5212":1,"5213":4,"5214":2,"5215":3,"5216":2,"5217":3,"5218":3,"5219":3,"5220":3,"5221":3,"5222":2,"5223":2,"5224":3,"5225":4,"5226":2,"5227":3,"5228":2,"5229":1,"5230":2,"5231":4,"5232":3,"5233":4,"5234":3,"5235":2,"5236":4,"5237":3,"5238":3,"5239":3,"5240":2,"5241":3,"5242":5,"5243":2,"5244":3,"5245":3,"5246":3,"5247":4,"5248":2,"5249":2,"5250":2,"5251":3,"5252":3,"5253":5,"5254":3,"5255":1,"5256":1,"5257":2,"5258":4,"5259":4,"5260":3,"5261":5,"5262":4,"5263":3,"5264":3,"5265":4,"5266":3,"5267":1,"5268":1,"5269":4,"5270":3,"5271":3,"5272":3,"5273":2,"5274":1,"5275":4,"5276":2,"5277":4,"5278":3,"5279":4,"5280":2,"5281":1,"5282":5,"5283":2,"5284":4,"5285":1,"5286":4,"5287":3,"5288":2,"5289":1,"5290":2,"5291":4,"5292":1,"5293":1,"5294":5,"5295":4,"5296":4,"5297":1,"5298":3,"5299":3,"5300":4,"5301":3,"5302":3,"5303":4,"5304":5,"5305":2,"5306":4,"5307":3,"5308":3,"5309":4,"5310":3,"5311":1,"5312":3,"5313":2,"5314":3,"5315":2,"5316":3,"5317":3,"5318":4,"5319":4,"5320":1,"5321":2,"5322":2,"5323":5,"5324":2,"5325":4,"5326":2,"5327":3,"5328":4,"5329":2,"5330":4,"5331":3,"5332":2,"5333":3,"5334":2,"5335":4,"5336":2,"5337":4,"5338":3,"5339":4,"5340":4,"5341":4,"5342":3,"5343":3,"5344":4,"5345":4,"5346":5,"5347":3,"5348":5,"5349":3,"5350":4,"5351":4,"5352":3,"5353":4,"5354":2,"5355":1,"5356":4,"5357":4,"5358":4,"5359":3,"5360":2,"5361":4,"5362":1,"5363":3,"5364":4,"5365":2,"5366":2,"5367":3,"5368":1,"5369":3,"5370":3,"5371":4,"5372":3,"5373":2,"5374":3,"5375":3,"5376":3,"5377":4,"5378":4,"5379":1,"5380":3,"5381":2,"5382":2,"5383":2,"5384":3,"5385":3,"5386":2,"5387":3,"5388":2,"5389":2,"5390":3,"5391":3,"5392":4,"5393":3,"5394":3,"5395":4,"5396":3,"5397":2,"5398":2,"5399":4,"5400":3,"5401":4,"5402":3,"5403":5,"5404":3,"5405":2,"5406":2,"5407":1,"5408":4,"5409":4,"5410":1,"5411":4,"5412":3,"5413":3,"5414":3,"5415":1,"5416":5,"5417":3,"5418":3,"5419":2,"5420":3,"5421":3,"5422":4,"5423":5,"5424":2,"5425":3,"5426":3,"5427":2,"5428":5,"5429":1,"5430":1,"5431":2,"5432":3,"5433":3,"5434":3,"5435":4,"5436":3,"5437":4,"5438":4,"5439":3,"5440":1,"5441":2,"5442":4,"5443":4,"5444":4,"5445":5,"5446":5,"5447":4,"5448":3,"5449":2,"5450":2,"5451":3,"5452":3,"5453":3,"5454":2,"5455":2,"5456":1,"5457":3,"5458":3,"5459":3,"5460":3,"5461":2,"5462":3,"5463":4,"5464":3,"5465":2,"5466":3,"5467":4,"5468":4,"5469":3,"5470":2,"5471":4,"5472":1,"5473":2,"5474":4,"5475":3,"5476":3,"5477":4,"5478":2,"5479":4,"5480":4,"5481":4,"5482":3,"5483":3,"5484":1,"5485":1,"5486":3,"5487":3,"5488":3,"5489":5,"5490":4,"5491":5,"5492":5,"5493":3,"5494":3,"5495":3,"5496":2,"5497":2,"5498":2,"5499":4,"5500":2,"5501":5,"5502":3,"5503":2,"5504":3,"5505":1,"5506":3,"5507":3,"5508":4,"5509":2,"5510":4,"5511":3,"5512":4,"5513":2,"5514":3,"5515":3,"5516":4,"5517":4,"5518":2,"5519":1,"5520":2,"5521":5,"5522":5,"5523":3,"5524":5,"5525":4,"5526":1,"5527":5,"5528":5,"5529":1,"5530":4,"5531":2,"5532":3,"5533":2,"5534":4,"5535":4,"5536":3,"5537":4,"5538":4,"5539":2,"5540":4,"5541":4,"5542":1,"5543":2,"5544":3,"5545":4,"5546":2,"5547":3,"5548":3,"5549":3,"5550":4,"5551":5,"5552":1,"5553":2,"5554":4,"5555":3,"5556":2,"5557":5,"5558":1,"5559":4,"5560":2,"5561":4,"5562":5,"5563":4,"5564":2,"5565":3,"5566":5,"5567":4,"5568":3,"5569":4,"5570":2,"5571":5,"5572":3,"5573":5,"5574":3,"5575":4,"5576":3,"5577":1,"5578":5,"5579":3,"5580":1,"5581":2,"5582":3,"5583":2,"5584":2,"5585":3,"5586":4,"5587":2,"5588":2,"5589":1,"5590":3,"5591":2,"5592":5,"5593":3,"5594":4,"5595":5,"5596":4,"5597":4,"5598":4,"5599":3,"5600":3,"5601":3,"5602":3,"5603":1,"5604":2,"5605":1,"5606":3,"5607":1,"5608":3,"5609":2,"5610":2,"5611":4,"5612":1,"5613":3,"5614":3,"5615":3,"5616":4,"5617":2,"5618":3,"5619":2,"5620":2,"5621":5,"5622":4,"5623":3,"5624":1,"5625":5,"5626":1,"5627":3,"5628":3,"5629":2,"5630":4,"5631":2,"5632":2,"5633":3,"5634":2,"5635":3,"5636":5,"5637":4,"5638":4,"5639":2,"5640":4,"5641":1,"5642":3,"5643":4,"5644":2,"5645":3,"5646":5,"5647":3,"5648":3,"5649":3,"5650":2,"5651":3,"5652":5,"5653":5,"5654":4,"5655":3,"5656":4,"5657":2,"5658":4,"5659":3,"5660":3,"5661":4,"5662":3,"5663":1,"5664":2,"5665":2,"5666":3,"5667":3,"5668":4,"5669":2,"5670":4,"5671":3,"5672":4,"5673":4,"5674":2,"5675":5,"5676":1,"5677":3,"5678":2,"5679":3,"5680":3,"5681":3,"5682":3,"5683":3,"5684":1,"5685":3,"5686":2,"5687":5,"5688":3,"5689":4,"5690":3,"5691":3,"5692":4,"5693":4,"5694":3,"5695":4,"5696":2,"5697":2,"5698":4,"5699":4,"5700":5,"5701":2,"5702":4,"5703":2,"5704":5,"5705":3,"5706":3,"5707":3,"5708":4,"5709":2,"5710":2,"5711":1,"5712":2,"5713":3,"5714":4,"5715":1,"5716":4,"5717":3,"5718":2,"5719":3,"5720":2,"5721":3,"5722":4,"5723":3,"5724":4,"5725":5,"5726":3,"5727":3,"5728":3,"5729":4,"5730":4,"5731":5,"5732":2,"5733":5,"5734":3,"5735":3,"5736":3,"5737":3,"5738":5,"5739":5,"5740":3,"5741":4,"5742":3,"5743":3,"5744":2,"5745":5,"5746":5,"5747":3,"5748":5,"5749":1,"5750":1,"5751":4,"5752":3,"5753":4,"5754":4,"5755":3,"5756":4,"5757":2,"5758":2,"5759":1,"5760":2,"5761":2,"5762":2,"5763":3,"5764":5,"5765":4,"5766":3,"5767":3,"5768":1,"5769":3,"5770":3,"5771":3,"5772":2,"5773":2,"5774":3,"5775":5,"5776":3,"5777":4,"5778":2,"5779":4,"5780":4,"5781":5,"5782":2,"5783":4,"5784":2,"5785":4,"5786":4,"5787":2,"5788":3,"5789":4,"5790":2,"5791":2,"5792":1,"5793":2,"5794":2,"5795":3,"5796":2,"5797":4,"5798":3,"5799":4,"5800":1,"5801":4,"5802":2,"5803":1,"5804":4,"5805":3,"5806":3,"5807":3,"5808":3,"5809":3,"5810":3,"5811":3,"5812":3,"5813":4,"5814":5,"5815":3,"5816":2,"5817":2,"5818":4,"5819":2,"5820":3,"5821":4,"5822":5,"5823":4,"5824":2,"5825":2,"5826":3,"5827":3,"5828":3,"5829":2,"5830":4,"5831":3,"5832":3,"5833":3,"5834":2,"5835":1,"5836":4,"5837":3,"5838":1,"5839":4,"5840":4,"5841":4,"5842":3,"5843":2,"5844":2,"5845":2,"5846":3,"5847":2,"5848":3,"5849":3,"5850":2,"5851":2,"5852":1,"5853":2,"5854":4,"5855":4,"5856":1,"5857":1,"5858":3,"5859":3,"5860":3,"5861":2,"5862":3,"5863":3,"5864":2,"5865":2,"5866":3,"5867":3,"5868":4,"5869":1,"5870":2,"5871":1,"5872":4,"5873":3,"5874":4,"5875":2,"5876":1,"5877":3,"5878":3,"5879":2,"5880":5,"5881":1,"5882":3,"5883":4,"5884":4,"5885":3,"5886":3,"5887":3,"5888":4,"5889":2,"5890":2,"5891":2,"5892":3,"5893":4,"5894":3,"5895":2,"5896":4,"5897":4,"5898":2,"5899":4,"5900":3,"5901":5,"5902":4,"5903":1,"5904":5,"5905":3,"5906":3,"5907":4,"5908":5,"5909":2,"5910":3,"5911":3,"5912":5,"5913":4,"5914":4,"5915":4,"5916":2,"5917":2,"5918":3,"5919":5,"5920":3,"5921":4,"5922":1,"5923":4,"5924":1,"5925":3,"5926":4,"5927":2,"5928":2,"5929":2,"5930":4,"5931":5,"5932":3,"5933":4,"5934":4,"5935":2,"5936":2,"5937":3,"5938":3,"5939":2,"5940":2,"5941":4,"5942":1,"5943":4,"5944":4,"5945":3,"5946":4,"5947":3,"5948":1,"5949":1,"5950":2,"5951":4,"5952":1,"5953":3,"5954":2,"5955":4,"5956":2,"5957":4,"5958":5,"5959":3,"5960":3,"5961":4,"5962":4,"5963":3,"5964":2,"5965":3,"5966":4,"5967":2,"5968":2,"5969":3,"5970":2,"5971":4,"5972":3,"5973":2,"5974":1,"5975":3,"5976":3,"5977":2,"5978":2,"5979":1,"5980":3,"5981":4,"5982":4,"5983":1,"5984":3,"5985":5,"5986":1,"5987":2,"5988":2,"5989":3,"5990":4,"5991":3,"5992":4,"5993":3,"5994":2,"5995":3,"5996":3,"5997":3,"5998":5,"5999":3,"6000":1,"6001":1,"6002":5,"6003":5,"6004":4,"6005":3,"6006":3,"6007":2,"6008":3,"6009":2,"6010":3,"6011":2,"6012":3,"6013":1,"6014":3,"6015":4,"6016":4,"6017":3,"6018":3,"6019":3,"6020":3,"6021":5,"6022":5,"6023":1,"6024":4,"6025":4,"6026":4,"6027":5,"6028":3,"6029":4,"6030":3,"6031":4,"6032":5,"6033":4,"6034":2,"6035":2,"6036":4,"6037":3,"6038":4,"6039":1,"6040":4,"6041":4,"6042":3,"6043":1,"6044":3,"6045":2,"6046":1,"6047":3,"6048":3,"6049":4,"6050":2,"6051":3,"6052":1,"6053":3,"6054":3,"6055":1,"6056":3,"6057":3,"6058":3,"6059":5,"6060":2,"6061":4,"6062":1,"6063":4,"6064":3,"6065":1,"6066":3,"6067":4,"6068":3,"6069":4,"6070":3,"6071":5,"6072":3,"6073":4,"6074":2,"6075":4,"6076":4,"6077":2,"6078":4,"6079":3,"6080":3,"6081":4,"6082":4,"6083":3,"6084":1,"6085":1,"6086":3,"6087":4,"6088":2,"6089":4,"6090":3,"6091":2,"6092":1,"6093":2,"6094":4,"6095":2,"6096":3,"6097":4,"6098":4,"6099":3,"6100":4,"6101":5,"6102":2,"6103":3,"6104":2,"6105":5,"6106":4,"6107":2,"6108":3,"6109":3,"6110":3,"6111":1,"6112":1,"6113":3,"6114":2,"6115":3,"6116":5,"6117":2,"6118":2,"6119":5,"6120":3,"6121":2,"6122":1,"6123":4,"6124":3,"6125":5,"6126":4,"6127":4,"6128":3,"6129":4,"6130":3,"6131":5,"6132":5,"6133":4,"6134":2,"6135":1,"6136":4,"6137":5,"6138":4,"6139":5,"6140":4,"6141":3,"6142":2,"6143":1,"6144":3,"6145":5,"6146":4,"6147":1,"6148":4,"6149":3,"6150":3,"6151":3,"6152":4,"6153":4,"6154":4,"6155":4,"6156":2,"6157":1,"6158":4,"6159":3,"6160":5,"6161":3,"6162":2,"6163":3,"6164":5,"6165":2,"6166":2,"6167":3,"6168":3,"6169":2,"6170":1,"6171":3,"6172":3,"6173":3,"6174":4,"6175":3,"6176":5,"6177":1,"6178":4,"6179":4,"6180":4,"6181":1,"6182":3,"6183":1,"6184":3,"6185":2,"6186":4,"6187":3,"6188":3,"6189":3,"6190":3,"6191":4,"6192":1,"6193":4,"6194":1,"6195":1,"6196":3,"6197":4,"6198":2,"6199":4,"6200":2,"6201":4,"6202":2,"6203":3,"6204":2,"6205":2,"6206":5,"6207":3,"6208":1,"6209":3,"6210":4,"6211":2,"6212":4,"6213":2,"6214":3,"6215":3,"6216":2,"6217":5,"6218":4,"6219":4,"6220":3,"6221":2,"6222":3,"6223":4,"6224":4,"6225":3,"6226":3,"6227":1,"6228":5,"6229":3,"6230":2,"6231":1,"6232":3,"6233":4,"6234":3,"6235":1,"6236":4,"6237":4,"6238":3,"6239":4,"6240":3,"6241":5,"6242":3,"6243":3,"6244":3,"6245":2,"6246":4,"6247":1,"6248":4,"6249":3,"6250":4,"6251":4,"6252":3,"6253":3,"6254":2,"6255":3,"6256":1,"6257":4,"6258":1,"6259":4,"6260":3,"6261":4,"6262":4,"6263":3,"6264":2,"6265":2,"6266":4,"6267":4,"6268":1,"6269":5,"6270":4,"6271":3,"6272":4,"6273":3,"6274":3,"6275":4,"6276":5,"6277":2,"6278":3,"6279":3,"6280":2,"6281":4,"6282":4,"6283":2,"6284":2,"6285":5,"6286":3,"6287":4,"6288":3,"6289":2,"6290":3,"6291":4,"6292":1,"6293":3,"6294":2,"6295":3,"6296":2,"6297":1,"6298":2,"6299":2,"6300":4,"6301":5,"6302":3,"6303":4,"6304":2,"6305":3,"6306":4,"6307":2,"6308":3,"6309":4,"6310":2,"6311":3,"6312":1,"6313":2,"6314":2,"6315":1,"6316":3,"6317":2,"6318":3,"6319":2,"6320":3,"6321":2,"6322":1,"6323":2,"6324":3,"6325":1,"6326":3,"6327":1,"6328":4,"6329":3,"6330":3,"6331":5,"6332":2,"6333":3,"6334":1,"6335":5,"6336":3,"6337":3,"6338":5,"6339":3,"6340":2,"6341":3,"6342":3,"6343":2,"6344":4,"6345":3,"6346":3,"6347":3,"6348":2,"6349":2,"6350":3,"6351":1,"6352":3,"6353":3,"6354":1,"6355":4,"6356":3,"6357":3,"6358":4,"6359":2,"6360":2,"6361":4,"6362":3,"6363":4,"6364":4,"6365":1,"6366":1,"6367":4,"6368":4,"6369":3,"6370":4,"6371":3,"6372":1,"6373":1,"6374":3,"6375":1,"6376":4,"6377":1,"6378":4,"6379":2,"6380":2,"6381":5,"6382":3,"6383":4,"6384":4,"6385":3,"6386":2,"6387":4,"6388":4,"6389":4,"6390":4,"6391":3,"6392":1,"6393":4,"6394":4,"6395":3,"6396":2,"6397":2,"6398":3,"6399":3,"6400":2,"6401":3,"6402":4,"6403":3,"6404":3,"6405":4,"6406":3,"6407":2,"6408":3,"6409":3,"6410":3,"6411":3,"6412":4,"6413":3,"6414":3,"6415":3,"6416":1,"6417":5,"6418":4,"6419":3,"6420":3,"6421":1,"6422":4,"6423":2,"6424":2,"6425":3,"6426":2,"6427":2,"6428":4,"6429":3,"6430":2,"6431":1,"6432":4,"6433":2,"6434":1,"6435":4,"6436":4,"6437":3,"6438":4,"6439":4,"6440":3,"6441":4,"6442":2,"6443":4,"6444":4,"6445":4,"6446":2,"6447":2,"6448":2,"6449":2,"6450":4,"6451":4,"6452":1,"6453":1,"6454":3,"6455":4,"6456":2,"6457":5,"6458":4,"6459":4,"6460":3,"6461":3,"6462":3,"6463":1,"6464":3,"6465":3,"6466":4,"6467":3,"6468":2,"6469":2,"6470":2,"6471":4,"6472":2,"6473":3,"6474":3,"6475":3,"6476":4,"6477":2,"6478":3,"6479":2,"6480":4,"6481":2,"6482":3,"6483":2,"6484":3,"6485":4,"6486":3,"6487":3,"6488":4,"6489":1,"6490":4,"6491":2,"6492":3,"6493":2,"6494":4,"6495":3,"6496":5,"6497":4,"6498":1,"6499":3,"6500":4,"6501":1,"6502":3,"6503":4,"6504":3,"6505":3,"6506":3,"6507":3,"6508":3,"6509":3,"6510":4,"6511":1,"6512":3,"6513":3,"6514":2,"6515":3,"6516":2,"6517":3,"6518":3,"6519":3,"6520":3,"6521":1,"6522":4,"6523":5,"6524":4,"6525":2,"6526":2,"6527":3,"6528":4,"6529":3,"6530":5,"6531":3,"6532":4,"6533":4,"6534":3,"6535":3,"6536":3,"6537":3,"6538":2,"6539":4,"6540":2,"6541":3,"6542":2,"6543":2,"6544":4,"6545":3,"6546":3,"6547":3,"6548":3,"6549":4,"6550":3,"6551":4,"6552":3,"6553":2,"6554":5,"6555":3,"6556":4,"6557":4,"6558":2,"6559":2,"6560":2,"6561":4,"6562":2,"6563":3,"6564":3,"6565":2,"6566":3,"6567":3,"6568":4,"6569":2,"6570":4,"6571":5,"6572":1,"6573":2,"6574":1,"6575":2,"6576":2,"6577":2,"6578":4,"6579":3,"6580":4,"6581":3,"6582":3,"6583":4,"6584":4,"6585":3,"6586":3,"6587":2,"6588":1,"6589":4,"6590":3,"6591":1,"6592":1,"6593":3,"6594":3,"6595":2,"6596":2,"6597":3,"6598":3,"6599":4,"6600":4,"6601":2,"6602":4,"6603":3,"6604":1,"6605":4,"6606":5,"6607":3,"6608":3,"6609":1,"6610":2,"6611":4,"6612":1,"6613":3,"6614":4,"6615":3,"6616":5,"6617":4,"6618":3,"6619":1,"6620":2,"6621":2,"6622":2,"6623":3,"6624":2,"6625":3,"6626":4,"6627":1,"6628":5,"6629":1,"6630":2,"6631":1,"6632":2,"6633":1,"6634":3,"6635":4,"6636":3,"6637":3,"6638":2,"6639":3,"6640":3,"6641":4,"6642":3,"6643":4,"6644":5,"6645":3,"6646":3,"6647":3,"6648":3,"6649":3,"6650":4,"6651":3,"6652":4,"6653":3,"6654":1,"6655":4,"6656":4,"6657":3,"6658":4,"6659":2,"6660":3,"6661":4,"6662":1,"6663":4,"6664":3,"6665":3,"6666":4,"6667":2,"6668":4,"6669":1,"6670":3,"6671":2,"6672":3,"6673":3,"6674":1,"6675":4,"6676":3,"6677":3,"6678":3,"6679":3,"6680":3,"6681":3,"6682":3,"6683":5,"6684":3,"6685":4,"6686":5,"6687":3,"6688":4,"6689":5,"6690":1,"6691":4,"6692":3,"6693":3,"6694":4,"6695":3,"6696":3,"6697":4,"6698":3,"6699":4,"6700":4,"6701":2,"6702":4,"6703":4,"6704":4,"6705":1,"6706":3,"6707":5,"6708":4,"6709":5,"6710":5,"6711":4,"6712":2,"6713":5,"6714":4,"6715":3,"6716":2,"6717":5,"6718":3,"6719":2,"6720":5,"6721":4,"6722":2,"6723":4,"6724":3,"6725":4,"6726":3,"6727":3,"6728":4,"6729":1,"6730":4,"6731":4,"6732":4,"6733":4,"6734":3,"6735":4,"6736":3,"6737":4,"6738":3,"6739":1,"6740":3,"6741":3,"6742":3,"6743":1,"6744":4,"6745":4,"6746":3,"6747":4,"6748":2,"6749":2,"6750":4,"6751":1,"6752":2,"6753":3,"6754":3,"6755":4,"6756":3,"6757":4,"6758":5,"6759":3,"6760":3,"6761":1,"6762":1,"6763":2,"6764":4,"6765":5,"6766":4,"6767":1,"6768":2,"6769":4,"6770":3,"6771":3,"6772":2,"6773":3,"6774":2,"6775":3,"6776":2,"6777":1,"6778":3,"6779":3,"6780":3,"6781":1,"6782":4,"6783":3,"6784":3,"6785":4,"6786":2,"6787":5,"6788":2,"6789":2,"6790":4,"6791":2,"6792":3,"6793":3,"6794":4,"6795":3,"6796":4,"6797":5,"6798":3,"6799":4,"6800":5,"6801":2,"6802":5,"6803":2,"6804":4,"6805":2,"6806":2,"6807":2,"6808":1,"6809":5,"6810":3,"6811":4,"6812":2,"6813":4,"6814":4,"6815":3,"6816":3,"6817":4,"6818":4,"6819":4,"6820":4,"6821":2,"6822":4,"6823":3,"6824":2,"6825":4,"6826":3,"6827":2,"6828":4,"6829":2,"6830":5,"6831":1,"6832":3,"6833":2,"6834":3,"6835":4,"6836":2,"6837":3,"6838":1,"6839":3,"6840":3,"6841":3,"6842":4,"6843":2,"6844":3,"6845":4,"6846":4,"6847":3,"6848":3,"6849":3,"6850":3,"6851":3,"6852":3,"6853":2,"6854":2,"6855":5,"6856":4,"6857":3,"6858":2,"6859":4,"6860":5,"6861":1,"6862":2,"6863":1,"6864":2,"6865":5,"6866":3,"6867":4,"6868":5,"6869":2,"6870":1,"6871":4,"6872":3,"6873":4,"6874":2,"6875":3,"6876":3,"6877":3,"6878":4,"6879":2,"6880":1,"6881":4,"6882":3,"6883":2,"6884":4,"6885":3,"6886":5,"6887":2,"6888":3,"6889":4,"6890":4,"6891":2,"6892":3,"6893":4,"6894":4,"6895":3,"6896":1,"6897":2,"6898":3,"6899":2,"6900":4,"6901":3,"6902":2,"6903":3,"6904":3,"6905":3,"6906":3,"6907":2,"6908":4,"6909":4,"6910":3,"6911":3,"6912":1,"6913":1,"6914":3,"6915":2,"6916":3,"6917":3,"6918":1,"6919":3,"6920":1,"6921":4,"6922":4,"6923":3,"6924":3,"6925":1,"6926":1,"6927":3,"6928":2,"6929":2,"6930":2,"6931":3,"6932":2,"6933":2,"6934":2,"6935":4,"6936":2,"6937":3,"6938":1,"6939":2,"6940":2,"6941":3,"6942":3,"6943":4,"6944":3,"6945":3,"6946":5,"6947":3,"6948":2,"6949":4,"6950":3,"6951":3,"6952":4,"6953":3,"6954":3,"6955":3,"6956":3,"6957":3,"6958":3,"6959":4,"6960":1,"6961":5,"6962":2,"6963":3,"6964":5,"6965":5,"6966":2,"6967":4,"6968":3,"6969":3,"6970":5,"6971":4,"6972":4,"6973":3,"6974":4,"6975":1,"6976":2,"6977":4,"6978":3,"6979":3,"6980":4,"6981":3,"6982":2,"6983":5,"6984":4,"6985":3,"6986":3,"6987":3,"6988":4,"6989":3,"6990":2,"6991":3,"6992":3,"6993":2,"6994":1,"6995":3,"6996":3,"6997":3,"6998":3,"6999":3,"7000":1,"7001":4,"7002":2,"7003":3,"7004":3,"7005":4,"7006":3,"7007":3,"7008":2,"7009":4,"7010":3,"7011":4,"7012":3,"7013":3,"7014":2,"7015":3,"7016":3,"7017":2,"7018":2,"7019":2,"7020":2,"7021":4,"7022":2,"7023":3,"7024":4,"7025":2,"7026":4,"7027":3,"7028":3,"7029":3,"7030":2,"7031":3,"7032":3,"7033":2,"7034":3,"7035":3,"7036":3,"7037":3,"7038":3,"7039":4,"7040":3,"7041":2,"7042":3,"7043":3,"7044":5,"7045":3,"7046":4,"7047":4,"7048":2,"7049":4,"7050":4,"7051":4,"7052":3,"7053":4,"7054":1,"7055":2,"7056":3,"7057":1,"7058":2,"7059":2,"7060":3,"7061":3,"7062":5,"7063":2,"7064":2,"7065":4,"7066":4,"7067":5,"7068":4,"7069":3,"7070":3,"7071":3,"7072":5,"7073":5,"7074":2,"7075":4,"7076":3,"7077":5,"7078":4,"7079":2,"7080":2,"7081":2,"7082":3,"7083":3,"7084":5,"7085":3,"7086":1,"7087":3,"7088":1,"7089":4,"7090":2,"7091":4,"7092":1,"7093":4,"7094":3,"7095":4,"7096":2,"7097":4,"7098":3,"7099":4,"7100":3,"7101":5,"7102":4,"7103":4,"7104":3,"7105":3,"7106":4,"7107":3,"7108":3,"7109":3,"7110":3,"7111":1,"7112":5,"7113":3,"7114":3,"7115":2,"7116":4,"7117":4,"7118":2,"7119":3,"7120":3,"7121":1,"7122":3,"7123":4,"7124":3,"7125":3,"7126":2,"7127":2,"7128":4,"7129":4,"7130":3,"7131":1,"7132":3,"7133":3,"7134":2,"7135":2,"7136":4,"7137":2,"7138":3,"7139":2,"7140":5,"7141":4,"7142":3,"7143":1,"7144":2,"7145":3,"7146":2,"7147":2,"7148":4,"7149":4,"7150":4,"7151":5,"7152":3,"7153":4,"7154":1,"7155":4,"7156":2,"7157":4,"7158":5,"7159":4,"7160":3,"7161":1,"7162":1,"7163":2,"7164":4,"7165":1,"7166":5,"7167":3,"7168":3,"7169":1,"7170":5,"7171":2,"7172":2,"7173":3,"7174":3,"7175":2,"7176":4,"7177":1,"7178":3,"7179":1,"7180":2,"7181":3,"7182":4,"7183":2,"7184":2,"7185":3,"7186":4,"7187":4,"7188":5,"7189":2,"7190":4,"7191":2,"7192":3,"7193":3,"7194":4,"7195":3,"7196":2,"7197":2,"7198":4,"7199":3,"7200":2,"7201":3,"7202":3,"7203":3,"7204":4,"7205":2,"7206":4,"7207":3,"7208":2,"7209":2,"7210":3,"7211":1,"7212":2,"7213":2,"7214":1,"7215":4,"7216":4,"7217":3,"7218":3,"7219":3,"7220":3,"7221":2,"7222":2,"7223":4,"7224":2,"7225":5,"7226":4,"7227":5,"7228":4,"7229":4,"7230":2,"7231":4,"7232":4,"7233":4,"7234":3,"7235":4,"7236":3,"7237":3,"7238":3,"7239":4,"7240":1,"7241":1,"7242":3,"7243":1,"7244":3,"7245":1,"7246":2,"7247":3,"7248":2,"7249":5,"7250":3,"7251":3,"7252":2,"7253":2,"7254":5,"7255":4,"7256":2,"7257":2,"7258":1,"7259":2,"7260":5,"7261":2,"7262":2,"7263":3,"7264":4,"7265":4,"7266":3,"7267":1,"7268":3,"7269":3,"7270":2,"7271":4,"7272":3,"7273":4,"7274":3,"7275":2,"7276":5,"7277":5,"7278":2,"7279":5,"7280":4,"7281":3,"7282":1,"7283":1,"7284":2,"7285":5,"7286":5,"7287":3,"7288":2,"7289":3,"7290":1,"7291":2,"7292":3,"7293":5,"7294":2,"7295":3,"7296":3,"7297":2,"7298":1,"7299":3,"7300":5,"7301":4,"7302":1,"7303":2,"7304":4,"7305":1,"7306":3,"7307":2,"7308":4,"7309":2,"7310":2,"7311":3,"7312":3,"7313":3,"7314":2,"7315":4,"7316":3,"7317":3,"7318":2,"7319":2,"7320":3,"7321":5,"7322":2,"7323":3,"7324":4,"7325":2,"7326":1,"7327":2,"7328":4,"7329":2,"7330":5,"7331":3,"7332":3,"7333":4,"7334":2,"7335":3,"7336":1,"7337":3,"7338":4,"7339":5,"7340":3,"7341":3,"7342":5,"7343":2,"7344":3,"7345":2,"7346":1,"7347":2,"7348":2,"7349":2,"7350":3,"7351":4,"7352":5,"7353":4,"7354":3,"7355":2,"7356":3,"7357":4,"7358":1,"7359":3,"7360":3,"7361":2,"7362":2,"7363":3,"7364":4,"7365":5,"7366":3,"7367":2,"7368":2,"7369":4,"7370":2,"7371":3,"7372":4,"7373":4,"7374":1,"7375":2,"7376":2,"7377":2,"7378":2,"7379":3,"7380":3,"7381":2,"7382":4,"7383":4,"7384":2,"7385":2,"7386":3,"7387":3,"7388":1,"7389":3,"7390":2,"7391":3,"7392":2,"7393":2,"7394":3,"7395":1,"7396":4,"7397":2,"7398":2,"7399":2,"7400":3,"7401":4,"7402":2,"7403":1,"7404":4,"7405":5,"7406":3,"7407":2,"7408":4,"7409":3,"7410":1,"7411":5,"7412":2,"7413":2,"7414":3,"7415":2,"7416":2,"7417":4,"7418":3,"7419":2,"7420":3,"7421":3,"7422":4,"7423":3,"7424":4,"7425":3,"7426":3,"7427":4,"7428":3,"7429":2,"7430":4,"7431":3,"7432":2,"7433":4,"7434":3,"7435":2,"7436":3,"7437":4,"7438":4,"7439":3,"7440":4,"7441":3,"7442":5,"7443":4,"7444":3,"7445":3,"7446":3,"7447":5,"7448":2,"7449":1,"7450":3,"7451":4,"7452":2,"7453":4,"7454":2,"7455":3,"7456":4,"7457":3,"7458":4,"7459":3,"7460":5,"7461":5,"7462":5,"7463":4,"7464":2,"7465":2,"7466":3,"7467":4,"7468":4,"7469":1,"7470":3,"7471":4,"7472":4,"7473":3,"7474":4,"7475":4,"7476":5,"7477":3,"7478":2,"7479":3,"7480":2,"7481":2,"7482":3,"7483":3,"7484":2,"7485":1,"7486":3,"7487":2,"7488":4,"7489":4,"7490":4,"7491":3,"7492":3,"7493":3,"7494":3,"7495":4,"7496":4,"7497":5,"7498":3,"7499":4,"7500":3,"7501":1,"7502":5,"7503":2,"7504":2,"7505":3,"7506":2,"7507":4,"7508":3,"7509":2,"7510":2,"7511":4,"7512":3,"7513":4,"7514":2,"7515":2,"7516":2,"7517":2,"7518":1,"7519":3,"7520":4,"7521":3,"7522":2,"7523":3,"7524":3,"7525":3,"7526":1,"7527":3,"7528":3,"7529":3,"7530":5,"7531":1,"7532":2,"7533":4,"7534":3,"7535":3,"7536":4,"7537":3,"7538":4,"7539":3,"7540":3,"7541":2,"7542":4,"7543":2,"7544":2,"7545":2,"7546":3,"7547":4,"7548":3,"7549":3,"7550":4,"7551":3,"7552":2,"7553":1,"7554":4,"7555":3,"7556":2,"7557":4,"7558":4,"7559":4,"7560":1,"7561":1,"7562":5,"7563":2,"7564":3,"7565":3,"7566":2,"7567":4,"7568":2,"7569":3,"7570":3,"7571":1,"7572":4,"7573":2,"7574":4,"7575":2,"7576":2,"7577":3,"7578":1,"7579":2,"7580":5,"7581":3,"7582":4,"7583":2,"7584":4,"7585":1,"7586":4,"7587":1,"7588":4,"7589":4,"7590":3,"7591":3,"7592":3,"7593":1,"7594":4,"7595":1,"7596":1,"7597":4,"7598":4,"7599":3,"7600":4,"7601":5,"7602":2,"7603":3,"7604":2,"7605":3,"7606":3,"7607":4,"7608":3,"7609":1,"7610":4,"7611":4,"7612":3,"7613":5,"7614":4,"7615":2,"7616":4,"7617":4,"7618":2,"7619":4,"7620":3,"7621":2,"7622":3,"7623":4,"7624":3,"7625":4,"7626":4,"7627":2,"7628":3,"7629":4,"7630":4,"7631":1,"7632":4,"7633":1,"7634":1,"7635":4,"7636":3,"7637":3,"7638":3,"7639":3,"7640":1,"7641":4,"7642":3,"7643":4,"7644":2,"7645":3,"7646":3,"7647":4,"7648":3,"7649":4,"7650":3,"7651":4,"7652":3,"7653":2,"7654":1,"7655":3,"7656":4,"7657":3,"7658":5,"7659":3,"7660":1,"7661":2,"7662":2,"7663":3,"7664":2,"7665":5,"7666":3,"7667":3,"7668":4,"7669":4,"7670":4,"7671":3,"7672":3,"7673":3,"7674":3,"7675":3,"7676":3,"7677":4,"7678":3,"7679":4,"7680":3,"7681":2,"7682":2,"7683":2,"7684":3,"7685":4,"7686":4,"7687":1,"7688":1,"7689":4,"7690":3,"7691":5,"7692":2,"7693":2,"7694":2,"7695":3,"7696":4,"7697":2,"7698":4,"7699":3,"7700":5,"7701":1,"7702":4,"7703":1,"7704":4,"7705":2,"7706":4,"7707":4,"7708":2,"7709":2,"7710":4,"7711":1,"7712":2,"7713":2,"7714":5,"7715":4,"7716":3,"7717":4,"7718":4,"7719":1,"7720":2,"7721":2,"7722":4,"7723":3,"7724":4,"7725":3,"7726":2,"7727":5,"7728":2,"7729":5,"7730":5,"7731":4,"7732":3,"7733":5,"7734":4,"7735":3,"7736":3,"7737":3,"7738":5,"7739":3,"7740":3,"7741":4,"7742":3,"7743":2,"7744":2,"7745":2,"7746":1,"7747":2,"7748":2,"7749":4,"7750":5,"7751":3,"7752":4,"7753":3,"7754":4,"7755":4,"7756":4,"7757":4,"7758":2,"7759":1,"7760":3,"7761":2,"7762":3,"7763":4,"7764":2,"7765":2,"7766":2,"7767":3,"7768":1,"7769":1,"7770":3,"7771":3,"7772":2,"7773":4,"7774":1,"7775":3,"7776":2,"7777":4,"7778":2,"7779":4,"7780":5,"7781":4,"7782":4,"7783":2,"7784":4,"7785":3,"7786":2,"7787":2,"7788":2,"7789":2,"7790":5,"7791":2,"7792":4,"7793":4,"7794":3,"7795":3,"7796":5,"7797":4,"7798":3,"7799":3,"7800":3,"7801":4,"7802":4,"7803":2,"7804":3,"7805":4,"7806":3,"7807":4,"7808":2,"7809":3,"7810":4,"7811":4,"7812":2,"7813":1,"7814":3,"7815":1,"7816":3,"7817":1,"7818":3,"7819":3,"7820":1,"7821":1,"7822":4,"7823":5,"7824":3,"7825":1,"7826":2,"7827":4,"7828":1,"7829":3,"7830":3,"7831":5,"7832":2,"7833":3,"7834":2,"7835":2,"7836":2,"7837":3,"7838":3,"7839":3,"7840":2,"7841":3,"7842":3,"7843":3,"7844":4,"7845":4,"7846":4,"7847":5,"7848":2,"7849":4,"7850":2,"7851":3,"7852":4,"7853":4,"7854":1,"7855":5,"7856":2,"7857":2,"7858":4,"7859":4,"7860":3,"7861":1,"7862":3,"7863":4,"7864":5,"7865":3,"7866":3,"7867":2,"7868":3,"7869":4,"7870":1,"7871":2,"7872":3,"7873":4,"7874":3,"7875":3,"7876":3,"7877":4,"7878":5,"7879":5,"7880":4,"7881":3,"7882":1,"7883":1,"7884":4,"7885":3,"7886":4,"7887":3,"7888":1,"7889":4,"7890":2,"7891":4,"7892":2,"7893":2,"7894":4,"7895":3,"7896":3,"7897":2,"7898":3,"7899":1,"7900":2,"7901":2,"7902":2,"7903":3,"7904":3,"7905":3,"7906":4,"7907":4,"7908":2,"7909":3,"7910":1,"7911":2,"7912":3,"7913":2,"7914":5,"7915":1,"7916":3,"7917":5,"7918":4,"7919":3,"7920":4,"7921":2,"7922":2,"7923":2,"7924":3,"7925":3,"7926":3,"7927":1,"7928":4,"7929":2,"7930":2,"7931":3,"7932":2,"7933":4,"7934":4,"7935":3,"7936":4,"7937":3,"7938":1,"7939":3,"7940":4,"7941":2,"7942":4,"7943":4,"7944":3,"7945":3,"7946":4,"7947":4,"7948":3,"7949":4,"7950":2,"7951":3,"7952":2,"7953":4,"7954":4,"7955":3,"7956":4,"7957":2,"7958":4,"7959":4,"7960":4,"7961":4,"7962":3,"7963":3,"7964":4,"7965":3,"7966":3,"7967":4,"7968":4,"7969":3,"7970":3,"7971":3,"7972":3,"7973":3,"7974":1,"7975":3,"7976":5,"7977":5,"7978":4,"7979":4,"7980":4,"7981":2,"7982":3,"7983":4,"7984":3,"7985":2,"7986":1,"7987":3,"7988":4,"7989":1,"7990":1,"7991":3,"7992":3,"7993":2,"7994":3,"7995":3,"7996":3,"7997":1,"7998":4,"7999":1,"8000":3,"8001":4,"8002":3,"8003":3,"8004":3,"8005":1,"8006":5,"8007":1,"8008":4,"8009":3,"8010":3,"8011":2,"8012":2,"8013":4,"8014":3,"8015":1,"8016":1,"8017":1,"8018":5,"8019":4,"8020":2,"8021":4,"8022":4,"8023":3,"8024":4,"8025":4,"8026":2,"8027":4,"8028":4,"8029":1,"8030":2,"8031":3,"8032":2,"8033":4,"8034":3,"8035":3,"8036":3,"8037":3,"8038":2,"8039":2,"8040":3,"8041":2,"8042":2,"8043":2,"8044":2,"8045":3,"8046":4,"8047":3,"8048":4,"8049":2,"8050":4,"8051":2,"8052":2,"8053":4,"8054":2,"8055":3,"8056":1,"8057":4,"8058":2,"8059":2,"8060":5,"8061":4,"8062":3,"8063":4,"8064":1,"8065":2,"8066":3,"8067":4,"8068":2,"8069":3,"8070":4,"8071":4,"8072":2,"8073":5,"8074":2,"8075":2,"8076":3,"8077":3,"8078":2,"8079":1,"8080":5,"8081":4,"8082":3,"8083":2,"8084":3,"8085":3,"8086":4,"8087":3,"8088":3,"8089":4,"8090":1,"8091":3,"8092":4,"8093":5,"8094":3,"8095":2,"8096":2,"8097":4,"8098":3,"8099":3,"8100":4,"8101":3,"8102":4,"8103":2,"8104":3,"8105":3,"8106":4,"8107":1,"8108":3,"8109":4,"8110":3,"8111":3,"8112":4,"8113":2,"8114":4,"8115":1,"8116":2,"8117":2,"8118":3,"8119":4,"8120":4,"8121":5,"8122":4,"8123":3,"8124":3,"8125":3,"8126":5,"8127":1,"8128":2,"8129":5,"8130":3,"8131":1,"8132":3,"8133":3,"8134":2,"8135":2,"8136":1,"8137":4,"8138":3,"8139":3,"8140":3,"8141":4,"8142":3,"8143":4,"8144":2,"8145":3,"8146":4,"8147":3,"8148":3,"8149":3,"8150":4,"8151":1,"8152":3,"8153":3,"8154":3,"8155":3,"8156":3,"8157":4,"8158":4,"8159":3,"8160":4,"8161":3,"8162":3,"8163":3,"8164":5,"8165":3,"8166":2,"8167":4,"8168":3,"8169":5,"8170":1,"8171":4,"8172":3,"8173":4,"8174":2,"8175":2,"8176":2,"8177":2,"8178":1,"8179":3,"8180":3,"8181":3,"8182":1,"8183":1,"8184":1,"8185":5,"8186":4,"8187":4,"8188":2,"8189":3,"8190":3,"8191":1,"8192":1,"8193":3,"8194":4,"8195":2,"8196":3,"8197":3,"8198":2,"8199":3,"8200":1,"8201":4,"8202":3,"8203":2,"8204":3,"8205":2,"8206":2,"8207":4,"8208":4,"8209":3,"8210":3,"8211":5,"8212":3,"8213":5,"8214":2,"8215":2,"8216":2,"8217":4,"8218":3,"8219":3,"8220":2,"8221":4,"8222":4,"8223":3,"8224":1,"8225":4,"8226":2,"8227":5,"8228":2,"8229":3,"8230":1,"8231":5,"8232":2,"8233":4,"8234":3,"8235":1,"8236":3,"8237":2,"8238":4,"8239":3,"8240":4,"8241":3,"8242":4,"8243":4,"8244":1,"8245":5,"8246":4,"8247":5,"8248":2,"8249":4,"8250":1,"8251":3,"8252":4,"8253":4,"8254":3,"8255":3,"8256":4,"8257":2,"8258":3,"8259":4,"8260":3,"8261":4,"8262":1,"8263":3,"8264":1,"8265":2,"8266":4,"8267":3,"8268":3,"8269":3,"8270":5,"8271":1,"8272":5,"8273":2,"8274":3,"8275":5,"8276":2,"8277":3,"8278":4,"8279":1,"8280":3,"8281":4,"8282":5,"8283":3,"8284":2,"8285":3,"8286":1,"8287":4,"8288":3,"8289":4,"8290":3,"8291":5,"8292":2,"8293":2,"8294":2,"8295":2,"8296":2,"8297":3,"8298":3,"8299":4,"8300":3,"8301":2,"8302":2,"8303":3,"8304":4,"8305":4,"8306":2,"8307":2,"8308":2,"8309":4,"8310":2,"8311":2,"8312":2,"8313":3,"8314":4,"8315":3,"8316":1,"8317":3,"8318":2,"8319":4,"8320":1,"8321":2,"8322":4,"8323":5,"8324":3,"8325":4,"8326":2,"8327":2,"8328":3,"8329":2,"8330":3,"8331":4,"8332":3,"8333":2,"8334":2,"8335":4,"8336":3,"8337":2,"8338":4,"8339":3,"8340":5,"8341":3,"8342":4,"8343":3,"8344":3,"8345":2,"8346":3,"8347":3,"8348":1,"8349":3,"8350":1,"8351":3,"8352":5,"8353":3,"8354":1,"8355":2,"8356":2,"8357":4,"8358":5,"8359":4,"8360":3,"8361":2,"8362":2,"8363":4,"8364":2,"8365":4,"8366":4,"8367":3,"8368":2,"8369":1,"8370":5,"8371":1,"8372":4,"8373":1,"8374":3,"8375":3,"8376":3,"8377":3,"8378":3,"8379":4,"8380":4,"8381":3,"8382":3,"8383":2,"8384":3,"8385":5,"8386":5,"8387":4,"8388":3,"8389":3,"8390":2,"8391":3,"8392":2,"8393":4,"8394":1,"8395":5,"8396":3,"8397":4,"8398":4,"8399":4,"8400":4,"8401":2,"8402":4,"8403":4,"8404":4,"8405":4,"8406":1,"8407":4,"8408":4,"8409":4,"8410":3,"8411":2,"8412":3,"8413":3,"8414":3,"8415":3,"8416":1,"8417":3,"8418":4,"8419":3,"8420":4,"8421":3,"8422":4,"8423":3,"8424":3,"8425":3,"8426":3,"8427":3,"8428":2,"8429":1,"8430":4,"8431":2,"8432":2,"8433":5,"8434":3,"8435":3,"8436":2,"8437":5,"8438":1,"8439":4,"8440":2,"8441":3,"8442":4,"8443":3,"8444":4,"8445":3,"8446":5,"8447":3,"8448":2,"8449":3,"8450":5,"8451":1,"8452":4,"8453":2,"8454":3,"8455":3,"8456":3,"8457":4,"8458":3,"8459":3,"8460":2,"8461":2,"8462":1,"8463":3,"8464":4,"8465":3,"8466":4,"8467":1,"8468":3,"8469":1,"8470":3,"8471":2,"8472":1,"8473":4,"8474":3,"8475":5,"8476":3,"8477":3,"8478":3,"8479":4,"8480":4,"8481":3,"8482":5,"8483":4,"8484":2,"8485":3,"8486":4,"8487":2,"8488":4,"8489":3,"8490":4,"8491":3,"8492":4,"8493":2,"8494":3,"8495":1,"8496":3,"8497":3,"8498":5,"8499":4,"8500":2,"8501":4,"8502":5,"8503":4,"8504":3,"8505":4,"8506":3,"8507":4,"8508":3,"8509":2,"8510":4,"8511":3,"8512":3,"8513":3,"8514":2,"8515":4,"8516":3,"8517":3,"8518":3,"8519":2,"8520":3,"8521":3,"8522":5,"8523":5,"8524":3,"8525":2,"8526":2,"8527":4,"8528":1,"8529":3,"8530":3,"8531":2,"8532":3,"8533":4,"8534":3,"8535":4,"8536":3,"8537":5,"8538":3,"8539":3,"8540":2,"8541":3,"8542":4,"8543":2,"8544":4,"8545":3,"8546":4,"8547":3,"8548":4,"8549":3,"8550":3,"8551":3,"8552":3,"8553":3,"8554":3,"8555":3,"8556":5,"8557":3,"8558":4,"8559":4,"8560":3,"8561":3,"8562":2,"8563":3,"8564":5,"8565":4,"8566":3,"8567":3,"8568":3,"8569":4,"8570":2,"8571":3,"8572":3,"8573":5,"8574":4,"8575":1,"8576":4,"8577":5,"8578":2,"8579":3,"8580":3,"8581":4,"8582":5,"8583":3,"8584":1,"8585":4,"8586":4,"8587":3,"8588":3,"8589":1,"8590":4,"8591":5,"8592":1,"8593":3,"8594":5,"8595":2,"8596":3,"8597":1,"8598":3,"8599":2,"8600":3,"8601":1,"8602":1,"8603":2,"8604":4,"8605":4,"8606":2,"8607":4,"8608":3,"8609":2,"8610":4,"8611":4,"8612":2,"8613":3,"8614":2,"8615":3,"8616":3,"8617":2,"8618":4,"8619":3,"8620":1,"8621":2,"8622":4,"8623":4,"8624":4,"8625":3,"8626":2,"8627":2,"8628":5,"8629":2,"8630":5,"8631":2,"8632":4,"8633":4,"8634":3,"8635":3,"8636":3,"8637":1,"8638":4,"8639":4,"8640":3,"8641":2,"8642":3,"8643":2,"8644":2,"8645":5,"8646":2,"8647":4,"8648":3,"8649":4,"8650":5,"8651":3,"8652":2,"8653":3,"8654":3,"8655":4,"8656":2,"8657":3,"8658":2,"8659":2,"8660":4,"8661":2,"8662":2,"8663":3,"8664":4,"8665":4,"8666":2,"8667":1,"8668":2,"8669":3,"8670":3,"8671":2,"8672":4,"8673":1,"8674":4,"8675":4,"8676":1,"8677":4,"8678":2,"8679":4,"8680":3,"8681":1,"8682":2,"8683":3,"8684":3,"8685":2,"8686":1,"8687":2,"8688":4,"8689":3,"8690":2,"8691":1,"8692":3,"8693":2,"8694":2,"8695":5,"8696":4,"8697":4,"8698":3,"8699":2,"8700":2,"8701":5,"8702":5,"8703":3,"8704":2,"8705":3,"8706":3,"8707":1,"8708":4,"8709":3,"8710":3,"8711":4,"8712":3,"8713":2,"8714":2,"8715":4,"8716":3,"8717":2,"8718":3,"8719":3,"8720":4,"8721":3,"8722":2,"8723":4,"8724":2,"8725":4,"8726":4,"8727":5,"8728":4,"8729":1,"8730":1,"8731":3,"8732":4,"8733":2,"8734":1,"8735":3,"8736":2,"8737":5,"8738":3,"8739":4,"8740":4,"8741":1,"8742":1,"8743":3,"8744":4,"8745":3,"8746":3,"8747":4,"8748":3,"8749":5,"8750":3,"8751":3,"8752":4,"8753":4,"8754":2,"8755":3,"8756":5,"8757":4,"8758":4,"8759":3,"8760":1,"8761":4,"8762":3,"8763":3,"8764":5,"8765":4,"8766":3,"8767":4,"8768":4,"8769":2,"8770":3,"8771":2,"8772":2,"8773":3,"8774":3,"8775":3,"8776":3,"8777":4,"8778":1,"8779":2,"8780":2,"8781":4,"8782":1,"8783":3,"8784":3,"8785":3,"8786":4,"8787":3,"8788":3,"8789":5,"8790":2,"8791":3,"8792":3,"8793":4,"8794":3,"8795":3,"8796":4,"8797":5,"8798":2,"8799":3,"8800":2,"8801":3,"8802":2,"8803":3,"8804":3,"8805":5,"8806":2,"8807":4,"8808":5,"8809":4,"8810":3,"8811":2,"8812":3,"8813":3,"8814":3,"8815":3,"8816":2,"8817":2,"8818":4,"8819":3,"8820":1,"8821":3,"8822":2,"8823":3,"8824":3,"8825":4,"8826":3,"8827":2,"8828":3,"8829":1,"8830":2,"8831":2,"8832":2,"8833":1,"8834":2,"8835":3,"8836":2,"8837":2,"8838":4,"8839":3,"8840":2,"8841":3,"8842":4,"8843":4,"8844":3,"8845":1,"8846":1,"8847":2,"8848":3,"8849":2,"8850":1,"8851":2,"8852":1,"8853":2,"8854":3,"8855":2,"8856":5,"8857":3,"8858":3,"8859":3,"8860":3,"8861":5,"8862":1,"8863":3,"8864":3,"8865":2,"8866":3,"8867":2,"8868":1,"8869":3,"8870":1,"8871":2,"8872":4,"8873":4,"8874":2,"8875":3,"8876":5,"8877":3,"8878":3,"8879":2,"8880":1,"8881":1,"8882":4,"8883":3,"8884":2,"8885":1,"8886":3,"8887":1,"8888":3,"8889":2,"8890":4,"8891":1,"8892":1,"8893":1,"8894":2,"8895":4,"8896":3,"8897":4,"8898":4,"8899":1,"8900":4,"8901":1,"8902":5,"8903":1,"8904":3,"8905":4,"8906":4,"8907":1,"8908":1,"8909":2,"8910":2,"8911":4,"8912":2,"8913":4,"8914":3,"8915":2,"8916":4,"8917":3,"8918":3,"8919":3,"8920":4,"8921":5,"8922":2,"8923":3,"8924":4,"8925":4,"8926":4,"8927":3,"8928":3,"8929":2,"8930":2,"8931":4,"8932":5,"8933":4,"8934":3,"8935":2,"8936":2,"8937":3,"8938":3,"8939":3,"8940":5,"8941":1,"8942":3,"8943":1,"8944":4,"8945":2,"8946":3,"8947":5,"8948":1,"8949":3,"8950":2,"8951":4,"8952":3,"8953":3,"8954":2,"8955":4,"8956":3,"8957":1,"8958":3,"8959":3,"8960":4,"8961":4,"8962":3,"8963":2,"8964":2,"8965":2,"8966":3,"8967":2,"8968":3,"8969":4,"8970":3,"8971":3,"8972":4,"8973":2,"8974":4,"8975":5,"8976":2,"8977":3,"8978":2,"8979":5,"8980":1,"8981":2,"8982":4,"8983":3,"8984":4,"8985":2,"8986":2,"8987":2,"8988":2,"8989":3,"8990":2,"8991":4,"8992":1,"8993":4,"8994":3,"8995":3,"8996":5,"8997":4,"8998":3,"8999":4,"9000":3,"9001":2,"9002":2,"9003":3,"9004":5,"9005":3,"9006":4,"9007":3,"9008":4,"9009":5,"9010":3,"9011":3,"9012":4,"9013":3,"9014":5,"9015":4,"9016":3,"9017":4,"9018":3,"9019":3,"9020":2,"9021":4,"9022":2,"9023":3,"9024":4,"9025":3,"9026":5,"9027":4,"9028":2,"9029":4,"9030":2,"9031":2,"9032":3,"9033":1,"9034":3,"9035":4,"9036":3,"9037":4,"9038":3,"9039":3,"9040":2,"9041":5,"9042":4,"9043":3,"9044":3,"9045":5,"9046":3,"9047":4,"9048":4,"9049":3,"9050":2,"9051":4,"9052":3,"9053":1,"9054":3,"9055":3,"9056":3,"9057":3,"9058":2,"9059":1,"9060":1,"9061":3,"9062":4,"9063":1,"9064":4,"9065":3,"9066":3,"9067":5,"9068":3,"9069":3,"9070":3,"9071":5,"9072":4,"9073":3,"9074":3,"9075":2,"9076":3,"9077":1,"9078":5,"9079":2,"9080":1,"9081":2,"9082":5,"9083":3,"9084":3,"9085":3,"9086":2,"9087":3,"9088":3,"9089":2,"9090":4,"9091":2,"9092":2,"9093":3,"9094":2,"9095":2,"9096":3,"9097":4,"9098":4,"9099":4,"9100":3,"9101":1,"9102":5,"9103":1,"9104":3,"9105":3,"9106":5,"9107":1,"9108":4,"9109":3,"9110":4,"9111":3,"9112":3,"9113":3,"9114":2,"9115":3,"9116":1,"9117":2,"9118":5,"9119":3,"9120":2,"9121":2,"9122":2,"9123":3,"9124":4,"9125":3,"9126":2,"9127":3,"9128":3,"9129":3,"9130":3,"9131":4,"9132":2,"9133":3,"9134":3,"9135":2,"9136":3,"9137":4,"9138":1,"9139":4,"9140":4,"9141":5,"9142":3,"9143":1,"9144":2,"9145":4,"9146":4,"9147":3,"9148":1,"9149":3,"9150":4,"9151":2,"9152":4,"9153":2,"9154":3,"9155":5,"9156":3,"9157":3,"9158":2,"9159":3,"9160":4,"9161":3,"9162":4,"9163":1,"9164":2,"9165":3,"9166":4,"9167":3,"9168":2,"9169":3,"9170":5,"9171":2,"9172":5,"9173":4,"9174":4,"9175":3,"9176":3,"9177":1,"9178":3,"9179":3,"9180":4,"9181":1,"9182":3,"9183":2,"9184":3,"9185":3,"9186":4,"9187":3,"9188":2,"9189":3,"9190":2,"9191":4,"9192":4,"9193":2,"9194":4,"9195":3,"9196":5,"9197":3,"9198":2,"9199":3,"9200":3,"9201":3,"9202":3,"9203":2,"9204":3,"9205":3,"9206":2,"9207":4,"9208":3,"9209":1,"9210":5,"9211":4,"9212":5,"9213":4,"9214":5,"9215":5,"9216":3,"9217":1,"9218":3,"9219":4,"9220":3,"9221":4,"9222":3,"9223":4,"9224":4,"9225":2,"9226":2,"9227":2,"9228":3,"9229":1,"9230":4,"9231":3,"9232":2,"9233":4,"9234":2,"9235":2,"9236":4,"9237":3,"9238":3,"9239":4,"9240":2,"9241":3,"9242":3,"9243":4,"9244":2,"9245":2,"9246":4,"9247":3,"9248":1,"9249":5,"9250":5,"9251":1,"9252":3,"9253":3,"9254":3,"9255":2,"9256":3,"9257":2,"9258":4,"9259":3,"9260":2,"9261":5,"9262":4,"9263":4,"9264":3,"9265":3,"9266":3,"9267":2,"9268":5,"9269":1,"9270":1,"9271":1,"9272":4,"9273":3,"9274":4,"9275":4,"9276":3,"9277":3,"9278":3,"9279":3,"9280":4,"9281":1,"9282":3,"9283":3,"9284":1,"9285":3,"9286":4,"9287":2,"9288":3,"9289":3,"9290":2,"9291":4,"9292":4,"9293":2,"9294":3,"9295":3,"9296":4,"9297":4,"9298":3,"9299":4,"9300":3,"9301":2,"9302":4,"9303":3,"9304":4,"9305":3,"9306":4,"9307":3,"9308":2,"9309":3,"9310":1,"9311":2,"9312":3,"9313":2,"9314":4,"9315":2,"9316":1,"9317":3,"9318":4,"9319":4,"9320":5,"9321":3,"9322":2,"9323":1,"9324":1,"9325":3,"9326":4,"9327":4,"9328":3,"9329":3,"9330":3,"9331":3,"9332":3,"9333":3,"9334":1,"9335":3,"9336":4,"9337":2,"9338":3,"9339":2,"9340":2,"9341":4,"9342":3,"9343":3,"9344":3,"9345":4,"9346":3,"9347":3,"9348":1,"9349":1,"9350":1,"9351":5,"9352":2,"9353":4,"9354":4,"9355":3,"9356":4,"9357":4,"9358":2,"9359":4,"9360":3,"9361":3,"9362":3,"9363":5,"9364":3,"9365":1,"9366":2,"9367":4,"9368":3,"9369":2,"9370":4,"9371":2,"9372":2,"9373":2,"9374":2,"9375":4,"9376":4,"9377":3,"9378":4,"9379":4,"9380":3,"9381":3,"9382":4,"9383":3,"9384":3,"9385":2,"9386":3,"9387":4,"9388":4,"9389":2,"9390":1,"9391":3,"9392":3,"9393":3,"9394":4,"9395":3,"9396":3,"9397":1,"9398":3,"9399":4,"9400":3,"9401":3,"9402":4,"9403":4,"9404":1,"9405":4,"9406":5,"9407":3,"9408":4,"9409":3,"9410":4,"9411":4,"9412":3,"9413":2,"9414":5,"9415":2,"9416":2,"9417":5,"9418":4,"9419":2,"9420":5,"9421":3,"9422":1,"9423":5,"9424":3,"9425":3,"9426":1,"9427":4,"9428":4,"9429":1,"9430":2,"9431":4,"9432":3,"9433":4,"9434":3,"9435":4,"9436":3,"9437":2,"9438":2,"9439":3,"9440":2,"9441":4,"9442":3,"9443":2,"9444":3,"9445":2,"9446":2,"9447":3,"9448":3,"9449":5,"9450":3,"9451":1,"9452":4,"9453":3,"9454":3,"9455":2,"9456":4,"9457":2,"9458":3,"9459":2,"9460":3,"9461":4,"9462":3,"9463":3,"9464":3,"9465":1,"9466":2,"9467":5,"9468":4,"9469":2,"9470":5,"9471":3,"9472":4,"9473":3,"9474":4,"9475":2,"9476":3,"9477":3,"9478":3,"9479":4,"9480":3,"9481":4,"9482":4,"9483":1,"9484":1,"9485":3,"9486":3,"9487":2,"9488":5,"9489":2,"9490":4,"9491":2,"9492":4,"9493":5,"9494":2,"9495":2,"9496":2,"9497":1,"9498":3,"9499":4,"9500":4,"9501":4,"9502":4,"9503":3,"9504":3,"9505":4,"9506":3,"9507":3,"9508":4,"9509":3,"9510":2,"9511":2,"9512":1,"9513":4,"9514":4,"9515":2,"9516":4,"9517":4,"9518":4,"9519":4,"9520":4,"9521":5,"9522":4,"9523":2,"9524":5,"9525":4,"9526":3,"9527":3,"9528":3,"9529":2,"9530":1,"9531":1,"9532":3,"9533":3,"9534":2,"9535":2,"9536":2,"9537":4,"9538":3,"9539":2,"9540":2,"9541":1,"9542":3,"9543":2,"9544":3,"9545":3,"9546":2,"9547":3,"9548":3,"9549":3,"9550":4,"9551":3,"9552":3,"9553":3,"9554":3,"9555":3,"9556":3,"9557":3,"9558":3,"9559":2,"9560":3,"9561":3,"9562":2,"9563":4,"9564":1,"9565":5,"9566":3,"9567":4,"9568":3,"9569":3,"9570":4,"9571":4,"9572":2,"9573":3,"9574":2,"9575":4,"9576":2,"9577":2,"9578":2,"9579":3,"9580":4,"9581":4,"9582":5,"9583":3,"9584":2,"9585":4,"9586":2,"9587":4,"9588":2,"9589":3,"9590":3,"9591":3,"9592":3,"9593":2,"9594":4,"9595":2,"9596":3,"9597":3,"9598":4,"9599":3,"9600":1,"9601":2,"9602":3,"9603":5,"9604":3,"9605":4,"9606":3,"9607":4,"9608":3,"9609":3,"9610":4,"9611":3,"9612":3,"9613":3,"9614":2,"9615":3,"9616":3,"9617":1,"9618":1,"9619":3,"9620":3,"9621":4,"9622":3,"9623":3,"9624":2,"9625":2,"9626":4,"9627":2,"9628":5,"9629":2,"9630":5,"9631":3,"9632":3,"9633":4,"9634":4,"9635":4,"9636":2,"9637":3,"9638":3,"9639":2,"9640":3,"9641":2,"9642":3,"9643":1,"9644":4,"9645":4,"9646":3,"9647":4,"9648":2,"9649":3,"9650":1,"9651":5,"9652":2,"9653":1,"9654":2,"9655":5,"9656":2,"9657":4,"9658":2,"9659":2,"9660":3,"9661":4,"9662":3,"9663":2,"9664":4,"9665":2,"9666":3,"9667":3,"9668":3,"9669":4,"9670":2,"9671":3,"9672":2,"9673":3,"9674":3,"9675":2,"9676":5,"9677":5,"9678":5,"9679":4,"9680":3,"9681":5,"9682":1,"9683":1,"9684":4,"9685":5,"9686":3,"9687":2,"9688":2,"9689":4,"9690":1,"9691":1,"9692":2,"9693":4,"9694":1,"9695":2,"9696":5,"9697":3,"9698":4,"9699":2,"9700":2,"9701":4,"9702":4,"9703":1,"9704":2,"9705":2,"9706":3,"9707":3,"9708":2,"9709":4,"9710":2,"9711":3,"9712":3,"9713":3,"9714":3,"9715":4,"9716":4,"9717":4,"9718":3,"9719":2,"9720":2,"9721":2,"9722":3,"9723":3,"9724":2,"9725":5,"9726":1,"9727":1,"9728":3,"9729":1,"9730":2,"9731":4,"9732":5,"9733":1,"9734":3,"9735":3,"9736":5,"9737":2,"9738":1,"9739":4,"9740":4,"9741":1,"9742":3,"9743":4,"9744":2,"9745":3,"9746":4,"9747":5,"9748":3,"9749":4,"9750":4,"9751":4,"9752":2,"9753":5,"9754":3,"9755":3,"9756":4,"9757":1,"9758":3,"9759":4,"9760":4,"9761":3,"9762":3,"9763":4,"9764":2,"9765":4,"9766":3,"9767":2,"9768":1,"9769":2,"9770":4,"9771":1,"9772":5,"9773":3,"9774":3,"9775":3,"9776":3,"9777":4,"9778":4,"9779":4,"9780":2,"9781":4,"9782":4,"9783":2,"9784":2,"9785":3,"9786":2,"9787":3,"9788":2,"9789":3,"9790":4,"9791":1,"9792":3,"9793":3,"9794":5,"9795":3,"9796":2,"9797":4,"9798":3,"9799":4,"9800":1,"9801":4,"9802":1,"9803":4,"9804":2,"9805":3,"9806":4,"9807":3,"9808":4,"9809":2,"9810":2,"9811":2,"9812":4,"9813":3,"9814":1,"9815":3,"9816":2,"9817":3,"9818":1,"9819":4,"9820":4,"9821":3,"9822":1,"9823":4,"9824":1,"9825":2,"9826":1,"9827":2,"9828":2,"9829":2,"9830":2,"9831":3,"9832":2,"9833":2,"9834":2,"9835":3,"9836":2,"9837":2,"9838":3,"9839":2,"9840":3,"9841":3,"9842":3,"9843":4,"9844":3,"9845":3,"9846":2,"9847":5,"9848":3,"9849":2,"9850":4,"9851":3,"9852":1,"9853":1,"9854":3,"9855":4,"9856":2,"9857":3,"9858":4,"9859":3,"9860":4,"9861":4,"9862":5,"9863":2,"9864":3,"9865":2,"9866":2,"9867":4,"9868":2,"9869":3,"9870":4,"9871":1,"9872":5,"9873":3,"9874":3,"9875":3,"9876":4,"9877":2,"9878":1,"9879":4,"9880":3,"9881":4,"9882":4,"9883":5,"9884":5,"9885":4,"9886":2,"9887":2,"9888":3,"9889":3,"9890":4,"9891":2,"9892":2,"9893":2,"9894":3,"9895":4,"9896":1,"9897":5,"9898":3,"9899":4,"9900":2,"9901":3,"9902":5,"9903":4,"9904":3,"9905":2,"9906":3,"9907":2,"9908":4,"9909":1,"9910":4,"9911":1,"9912":4,"9913":1,"9914":4,"9915":1,"9916":4,"9917":1,"9918":2,"9919":4,"9920":2,"9921":2,"9922":2,"9923":3,"9924":3,"9925":4,"9926":4,"9927":3,"9928":3,"9929":4,"9930":2,"9931":5,"9932":4,"9933":2,"9934":4,"9935":3,"9936":4,"9937":3,"9938":5,"9939":5,"9940":4,"9941":4,"9942":4,"9943":2,"9944":4,"9945":1,"9946":4,"9947":3,"9948":5,"9949":4,"9950":2,"9951":2,"9952":3,"9953":5,"9954":1,"9955":2,"9956":5,"9957":4,"9958":2,"9959":2,"9960":2,"9961":3,"9962":5,"9963":3,"9964":4,"9965":4,"9966":4,"9967":1,"9968":2,"9969":5,"9970":4,"9971":3,"9972":1,"9973":4,"9974":3,"9975":1,"9976":1,"9977":4,"9978":3,"9979":2,"9980":2,"9981":3,"9982":3,"9983":3,"9984":2,"9985":2,"9986":3,"9987":3,"9988":3,"9989":4,"9990":4,"9991":2,"9992":3,"9993":4,"9994":3,"9995":4,"9996":1,"9997":3,"9998":3,"9999":3,"10000":4,"10001":2,"10002":3,"10003":3,"10004":2,"10005":1,"10006":4,"10007":2,"10008":3,"10009":5,"10010":3,"10011":2,"10012":3,"10013":3,"10014":1,"10015":2,"10016":2,"10017":4,"10018":2,"10019":4,"10020":3,"10021":3,"10022":3,"10023":4,"10024":2,"10025":3,"10026":3,"10027":4,"10028":3,"10029":3,"10030":3,"10031":3,"10032":2,"10033":4,"10034":3,"10035":3,"10036":3,"10037":2,"10038":1,"10039":1,"10040":3,"10041":2,"10042":3,"10043":3,"10044":3,"10045":3,"10046":1,"10047":1,"10048":2,"10049":4,"10050":5,"10051":3,"10052":3,"10053":3,"10054":2,"10055":2,"10056":4,"10057":2,"10058":4,"10059":3,"10060":3,"10061":3,"10062":3,"10063":1,"10064":2,"10065":2,"10066":2,"10067":5,"10068":4,"10069":3,"10070":2,"10071":3,"10072":5,"10073":3,"10074":3,"10075":1,"10076":1,"10077":1,"10078":4,"10079":3,"10080":5,"10081":4,"10082":2,"10083":4,"10084":4,"10085":5,"10086":3,"10087":3,"10088":3,"10089":2,"10090":5,"10091":4,"10092":1,"10093":4,"10094":4,"10095":3,"10096":4,"10097":3,"10098":1,"10099":3,"10100":4,"10101":2,"10102":3,"10103":5,"10104":4,"10105":3,"10106":3,"10107":3,"10108":3,"10109":2,"10110":1,"10111":3,"10112":2,"10113":3,"10114":4,"10115":1,"10116":3,"10117":3,"10118":4,"10119":2,"10120":4,"10121":4,"10122":2,"10123":1,"10124":4,"10125":4,"10126":2,"10127":2,"10128":1,"10129":3,"10130":3,"10131":3,"10132":1,"10133":3,"10134":5,"10135":2,"10136":2,"10137":2,"10138":4,"10139":3,"10140":4,"10141":5,"10142":3,"10143":4,"10144":2,"10145":4,"10146":4,"10147":1,"10148":4,"10149":2,"10150":3,"10151":3,"10152":3,"10153":4,"10154":3,"10155":4,"10156":3,"10157":4,"10158":3,"10159":2,"10160":1,"10161":3,"10162":2,"10163":4,"10164":2,"10165":2,"10166":4,"10167":2,"10168":5,"10169":3,"10170":1,"10171":3,"10172":5,"10173":3,"10174":1,"10175":3,"10176":3,"10177":3,"10178":1,"10179":3,"10180":2,"10181":3,"10182":3,"10183":4,"10184":4,"10185":4,"10186":4,"10187":1,"10188":2,"10189":3,"10190":4,"10191":2,"10192":4,"10193":2,"10194":3,"10195":5,"10196":4,"10197":4,"10198":5,"10199":2,"10200":3,"10201":4,"10202":4,"10203":2,"10204":3,"10205":2,"10206":3,"10207":5,"10208":3,"10209":1,"10210":2,"10211":3,"10212":3,"10213":3,"10214":3,"10215":2,"10216":2,"10217":4,"10218":2,"10219":2,"10220":3,"10221":1,"10222":2,"10223":4,"10224":4,"10225":4,"10226":1,"10227":5,"10228":4,"10229":3,"10230":2,"10231":4,"10232":4,"10233":3,"10234":4,"10235":3,"10236":3,"10237":1,"10238":1,"10239":3,"10240":2,"10241":4,"10242":3,"10243":2,"10244":1,"10245":3,"10246":5,"10247":5,"10248":1,"10249":4,"10250":3,"10251":3,"10252":4,"10253":3,"10254":2,"10255":4,"10256":3,"10257":3,"10258":3,"10259":3,"10260":4,"10261":2,"10262":4,"10263":3,"10264":2,"10265":2,"10266":2,"10267":4,"10268":5,"10269":4,"10270":4,"10271":2,"10272":2,"10273":2,"10274":5,"10275":1,"10276":4,"10277":4,"10278":3,"10279":2,"10280":4,"10281":4,"10282":4,"10283":3,"10284":3,"10285":4,"10286":3,"10287":3,"10288":1,"10289":4,"10290":3,"10291":5,"10292":3,"10293":3,"10294":3,"10295":2,"10296":1,"10297":4,"10298":2,"10299":3,"10300":3,"10301":3,"10302":4,"10303":4,"10304":4,"10305":3,"10306":4,"10307":3,"10308":2,"10309":5,"10310":3,"10311":3,"10312":2,"10313":4,"10314":3,"10315":3,"10316":4,"10317":3,"10318":2,"10319":4,"10320":5,"10321":3,"10322":2,"10323":3,"10324":3,"10325":2,"10326":2,"10327":3,"10328":2,"10329":4,"10330":3,"10331":5,"10332":3,"10333":1,"10334":3,"10335":2,"10336":3,"10337":4,"10338":4,"10339":4,"10340":4,"10341":4,"10342":1,"10343":2,"10344":3,"10345":3,"10346":3,"10347":4,"10348":3,"10349":3,"10350":3,"10351":4,"10352":3,"10353":2,"10354":3,"10355":4,"10356":1,"10357":3,"10358":5,"10359":4,"10360":4,"10361":3,"10362":3,"10363":3,"10364":3,"10365":3,"10366":1,"10367":2,"10368":4,"10369":4,"10370":2,"10371":2,"10372":1,"10373":2,"10374":2,"10375":3,"10376":3,"10377":4,"10378":4,"10379":2,"10380":3,"10381":5,"10382":5,"10383":3,"10384":1,"10385":5,"10386":2,"10387":4,"10388":2,"10389":3,"10390":3,"10391":1,"10392":2,"10393":4,"10394":3,"10395":2,"10396":5,"10397":2,"10398":3,"10399":2,"10400":4,"10401":1,"10402":3,"10403":1,"10404":2,"10405":3,"10406":2,"10407":3,"10408":2,"10409":3,"10410":2,"10411":2,"10412":3,"10413":3,"10414":2,"10415":2,"10416":3,"10417":4,"10418":3,"10419":4,"10420":3,"10421":4,"10422":2,"10423":4,"10424":1,"10425":5,"10426":4,"10427":2,"10428":1,"10429":3,"10430":3,"10431":4,"10432":2,"10433":1,"10434":4,"10435":3,"10436":5,"10437":3,"10438":2,"10439":3,"10440":3,"10441":2,"10442":3,"10443":4,"10444":2,"10445":1,"10446":2,"10447":3,"10448":3,"10449":5,"10450":2,"10451":2,"10452":2,"10453":2,"10454":4,"10455":4,"10456":2,"10457":4,"10458":2,"10459":4,"10460":2,"10461":5,"10462":3,"10463":3,"10464":2,"10465":3,"10466":4,"10467":3,"10468":2,"10469":3,"10470":3,"10471":4,"10472":5,"10473":1,"10474":2,"10475":1,"10476":4,"10477":1,"10478":3,"10479":2,"10480":3,"10481":3,"10482":4,"10483":2,"10484":4,"10485":2,"10486":5,"10487":5,"10488":2,"10489":1,"10490":3,"10491":3,"10492":3,"10493":2,"10494":2,"10495":5,"10496":3,"10497":1,"10498":2,"10499":2,"10500":3,"10501":4,"10502":4,"10503":3,"10504":4,"10505":2,"10506":3,"10507":3,"10508":4,"10509":3,"10510":3,"10511":3,"10512":4,"10513":5,"10514":2,"10515":4,"10516":4,"10517":3,"10518":3,"10519":3,"10520":4,"10521":4,"10522":3,"10523":3,"10524":3,"10525":3,"10526":3,"10527":1,"10528":3,"10529":4,"10530":3,"10531":1,"10532":4,"10533":4,"10534":3,"10535":4,"10536":4,"10537":4,"10538":3,"10539":1,"10540":1,"10541":1,"10542":3,"10543":2,"10544":2,"10545":3,"10546":4,"10547":3,"10548":4,"10549":3,"10550":5,"10551":3,"10552":4,"10553":2,"10554":4,"10555":1,"10556":4,"10557":3,"10558":4,"10559":4,"10560":4,"10561":2,"10562":4,"10563":4,"10564":3,"10565":3,"10566":4,"10567":4,"10568":3,"10569":1,"10570":3,"10571":2,"10572":3,"10573":1,"10574":2,"10575":2,"10576":4,"10577":3,"10578":2,"10579":2,"10580":2,"10581":4,"10582":4,"10583":3,"10584":4,"10585":1,"10586":2,"10587":4,"10588":3,"10589":4,"10590":3,"10591":3,"10592":1,"10593":5,"10594":3,"10595":2,"10596":2,"10597":3,"10598":3,"10599":2,"10600":1,"10601":1,"10602":3,"10603":3,"10604":3,"10605":2,"10606":2,"10607":1,"10608":4,"10609":5,"10610":3,"10611":3,"10612":1,"10613":2,"10614":4,"10615":4,"10616":2,"10617":1,"10618":3,"10619":2,"10620":2,"10621":3,"10622":3,"10623":1,"10624":1,"10625":2,"10626":3,"10627":4,"10628":3,"10629":1,"10630":2,"10631":2,"10632":3,"10633":4,"10634":2,"10635":3,"10636":2,"10637":1,"10638":3,"10639":4,"10640":3,"10641":3,"10642":3,"10643":3,"10644":4,"10645":3,"10646":3,"10647":4,"10648":5,"10649":3,"10650":4,"10651":3,"10652":5,"10653":4,"10654":4,"10655":3,"10656":2,"10657":2,"10658":3,"10659":4,"10660":3,"10661":4,"10662":3,"10663":2,"10664":4,"10665":3,"10666":5,"10667":3,"10668":1,"10669":3,"10670":3,"10671":4,"10672":2,"10673":2,"10674":4,"10675":3,"10676":3,"10677":2,"10678":3,"10679":5,"10680":3,"10681":4,"10682":3,"10683":3,"10684":3,"10685":4,"10686":2,"10687":3,"10688":2,"10689":1,"10690":3,"10691":4,"10692":4,"10693":4,"10694":3,"10695":3,"10696":3,"10697":3,"10698":4,"10699":4,"10700":1,"10701":4,"10702":4,"10703":3,"10704":4,"10705":5,"10706":4,"10707":4,"10708":3,"10709":3,"10710":3,"10711":3,"10712":4,"10713":3,"10714":2,"10715":3,"10716":5,"10717":4,"10718":4,"10719":3,"10720":1,"10721":4,"10722":4,"10723":5,"10724":4,"10725":3,"10726":3,"10727":4,"10728":3,"10729":3,"10730":4,"10731":3,"10732":3,"10733":3,"10734":3,"10735":2,"10736":3,"10737":3,"10738":1,"10739":2,"10740":3,"10741":2,"10742":4,"10743":3,"10744":4,"10745":2,"10746":3,"10747":3,"10748":4,"10749":1,"10750":4,"10751":3,"10752":3,"10753":1,"10754":4,"10755":2,"10756":2,"10757":3,"10758":2,"10759":4,"10760":5,"10761":5,"10762":3,"10763":3,"10764":2,"10765":5,"10766":3,"10767":3,"10768":3,"10769":3,"10770":4,"10771":3,"10772":3,"10773":4,"10774":3,"10775":3,"10776":4,"10777":3,"10778":3,"10779":3,"10780":5,"10781":4,"10782":4,"10783":1,"10784":3,"10785":3,"10786":2,"10787":5,"10788":2,"10789":4,"10790":3,"10791":2,"10792":5,"10793":3,"10794":5,"10795":3,"10796":3,"10797":3,"10798":4,"10799":4,"10800":3,"10801":3,"10802":2,"10803":3,"10804":4,"10805":4,"10806":4,"10807":4,"10808":4,"10809":3,"10810":2,"10811":5,"10812":2,"10813":3,"10814":2,"10815":4,"10816":4,"10817":2,"10818":2,"10819":3,"10820":1,"10821":2,"10822":1,"10823":3,"10824":3,"10825":5,"10826":2,"10827":3,"10828":3,"10829":2,"10830":2,"10831":3,"10832":4,"10833":2,"10834":4,"10835":3,"10836":5,"10837":3,"10838":3,"10839":2,"10840":2,"10841":2,"10842":1,"10843":4,"10844":4,"10845":3,"10846":4,"10847":2,"10848":3,"10849":1,"10850":2,"10851":3,"10852":1,"10853":2,"10854":3,"10855":3,"10856":3,"10857":3,"10858":4,"10859":3,"10860":1,"10861":4,"10862":1,"10863":4,"10864":3,"10865":2,"10866":3,"10867":2,"10868":1,"10869":2,"10870":2,"10871":3,"10872":3,"10873":3,"10874":3,"10875":3,"10876":3,"10877":4,"10878":2,"10879":4,"10880":1,"10881":3,"10882":2,"10883":3,"10884":3,"10885":3,"10886":2,"10887":1,"10888":3,"10889":4,"10890":4,"10891":1,"10892":4,"10893":2,"10894":4,"10895":2,"10896":3,"10897":5,"10898":3,"10899":1,"10900":3,"10901":4,"10902":1,"10903":1,"10904":3,"10905":1,"10906":3,"10907":4,"10908":4,"10909":1,"10910":5,"10911":5,"10912":2,"10913":2,"10914":3,"10915":4,"10916":1,"10917":1,"10918":3,"10919":2,"10920":2,"10921":4,"10922":3,"10923":3,"10924":3,"10925":5,"10926":4,"10927":4,"10928":1,"10929":4,"10930":5,"10931":4,"10932":2,"10933":4,"10934":4,"10935":2,"10936":3,"10937":4,"10938":4,"10939":4,"10940":2,"10941":3,"10942":2,"10943":2,"10944":2,"10945":3,"10946":2,"10947":2,"10948":3,"10949":4,"10950":5,"10951":4,"10952":4,"10953":2,"10954":2,"10955":4,"10956":5,"10957":3,"10958":4,"10959":2,"10960":1,"10961":2,"10962":3,"10963":2,"10964":5,"10965":4,"10966":2,"10967":3,"10968":4,"10969":4,"10970":3,"10971":3,"10972":4,"10973":4,"10974":3,"10975":2,"10976":4,"10977":4,"10978":2,"10979":2,"10980":4,"10981":2,"10982":3,"10983":3,"10984":3,"10985":5,"10986":4,"10987":5,"10988":3,"10989":3,"10990":4,"10991":4,"10992":2,"10993":2,"10994":3,"10995":1,"10996":4,"10997":3,"10998":3,"10999":5,"11000":1,"11001":3,"11002":3,"11003":3,"11004":3,"11005":1,"11006":2,"11007":2,"11008":4,"11009":3,"11010":2,"11011":2,"11012":2,"11013":4,"11014":3,"11015":4,"11016":2,"11017":1,"11018":3,"11019":3,"11020":2,"11021":4,"11022":4,"11023":4,"11024":2,"11025":3,"11026":4,"11027":2,"11028":3,"11029":3,"11030":2,"11031":2,"11032":1,"11033":1,"11034":2,"11035":1,"11036":5,"11037":2,"11038":2,"11039":3,"11040":1,"11041":2,"11042":4,"11043":4,"11044":4,"11045":3,"11046":4,"11047":4,"11048":1,"11049":3,"11050":2,"11051":5,"11052":4,"11053":3,"11054":5,"11055":2,"11056":4,"11057":2,"11058":4,"11059":2,"11060":3,"11061":4,"11062":4,"11063":3,"11064":3,"11065":3,"11066":1,"11067":2,"11068":3,"11069":2,"11070":1,"11071":3,"11072":4,"11073":4,"11074":2,"11075":3,"11076":5,"11077":4,"11078":3,"11079":3,"11080":2,"11081":4,"11082":4,"11083":4,"11084":1,"11085":3,"11086":4,"11087":2,"11088":3,"11089":1,"11090":2,"11091":3,"11092":2,"11093":2,"11094":2,"11095":3,"11096":2,"11097":4,"11098":3,"11099":3,"11100":2,"11101":2,"11102":5,"11103":2,"11104":3,"11105":1,"11106":2,"11107":2,"11108":3,"11109":4,"11110":2,"11111":5,"11112":4,"11113":3,"11114":3,"11115":1,"11116":3,"11117":2,"11118":2,"11119":3,"11120":3,"11121":2,"11122":4,"11123":2,"11124":3,"11125":3,"11126":4,"11127":4,"11128":2,"11129":1,"11130":1,"11131":4,"11132":4,"11133":3,"11134":1,"11135":5,"11136":3,"11137":4,"11138":4,"11139":5,"11140":5,"11141":4,"11142":1,"11143":4,"11144":3,"11145":4,"11146":3,"11147":2,"11148":3,"11149":4,"11150":2,"11151":3,"11152":3,"11153":3,"11154":4,"11155":3,"11156":3,"11157":2,"11158":3,"11159":3,"11160":4,"11161":3,"11162":4,"11163":3,"11164":3,"11165":3,"11166":2,"11167":2,"11168":3,"11169":3,"11170":4,"11171":2,"11172":4,"11173":2,"11174":4,"11175":4,"11176":3,"11177":4,"11178":2,"11179":3,"11180":4,"11181":2,"11182":4,"11183":3,"11184":3,"11185":1,"11186":4,"11187":1,"11188":2,"11189":2,"11190":1,"11191":4,"11192":3,"11193":5,"11194":4,"11195":4,"11196":2,"11197":3,"11198":2,"11199":5,"11200":4,"11201":4,"11202":4,"11203":4,"11204":2,"11205":4,"11206":1,"11207":3,"11208":2,"11209":4,"11210":3,"11211":3,"11212":4,"11213":2,"11214":4,"11215":2,"11216":1,"11217":1,"11218":4,"11219":3,"11220":1,"11221":4,"11222":4,"11223":4,"11224":3,"11225":2,"11226":4,"11227":2,"11228":4,"11229":2,"11230":2,"11231":3,"11232":2,"11233":3,"11234":3,"11235":1,"11236":4,"11237":3,"11238":3,"11239":3,"11240":3,"11241":3,"11242":1,"11243":3,"11244":3,"11245":3,"11246":4,"11247":2,"11248":3,"11249":3,"11250":3,"11251":3,"11252":4,"11253":2,"11254":4,"11255":5,"11256":3,"11257":4,"11258":2,"11259":3,"11260":3,"11261":4,"11262":5,"11263":1,"11264":2,"11265":4,"11266":1,"11267":4,"11268":3,"11269":2,"11270":3,"11271":4,"11272":4,"11273":4,"11274":3,"11275":4,"11276":2,"11277":1,"11278":5,"11279":1,"11280":2,"11281":3,"11282":3,"11283":4,"11284":4,"11285":3,"11286":3,"11287":1,"11288":3,"11289":3,"11290":1,"11291":2,"11292":3,"11293":1,"11294":4,"11295":4,"11296":4,"11297":2,"11298":2,"11299":4,"11300":3,"11301":3,"11302":4,"11303":3,"11304":4,"11305":4,"11306":3,"11307":2,"11308":4,"11309":4,"11310":1,"11311":2,"11312":3,"11313":4,"11314":3,"11315":3,"11316":3,"11317":4,"11318":1,"11319":4,"11320":4,"11321":3,"11322":4,"11323":4,"11324":4,"11325":1,"11326":3,"11327":2,"11328":3,"11329":4,"11330":2,"11331":5,"11332":3,"11333":2,"11334":4,"11335":3,"11336":3,"11337":3,"11338":3,"11339":2,"11340":3,"11341":4,"11342":3,"11343":2,"11344":4,"11345":2,"11346":3,"11347":3,"11348":3,"11349":3,"11350":3,"11351":2,"11352":3,"11353":5,"11354":3,"11355":3,"11356":4,"11357":2,"11358":3,"11359":3,"11360":3,"11361":3,"11362":3,"11363":3,"11364":3,"11365":3,"11366":2,"11367":2,"11368":3,"11369":3,"11370":3,"11371":2,"11372":3,"11373":1,"11374":3,"11375":2,"11376":3,"11377":1,"11378":3,"11379":5,"11380":4,"11381":2,"11382":3,"11383":3,"11384":5,"11385":3,"11386":1,"11387":4,"11388":3,"11389":4,"11390":3,"11391":4,"11392":3,"11393":3,"11394":3,"11395":3,"11396":3,"11397":5,"11398":2,"11399":3,"11400":1,"11401":4,"11402":2,"11403":4,"11404":3,"11405":4,"11406":3,"11407":4,"11408":3,"11409":3,"11410":4,"11411":4,"11412":4,"11413":2,"11414":4,"11415":2,"11416":1,"11417":3,"11418":1,"11419":3,"11420":3,"11421":2,"11422":3,"11423":1,"11424":4,"11425":2,"11426":4,"11427":3,"11428":2,"11429":3,"11430":3,"11431":4,"11432":5,"11433":3,"11434":4,"11435":3,"11436":3,"11437":4,"11438":1,"11439":2,"11440":3,"11441":4,"11442":5,"11443":1,"11444":4,"11445":2,"11446":4,"11447":1,"11448":2,"11449":2,"11450":2,"11451":3,"11452":3,"11453":1,"11454":4,"11455":4,"11456":2,"11457":3,"11458":2,"11459":4,"11460":3,"11461":3,"11462":3,"11463":4,"11464":3,"11465":3,"11466":4,"11467":3,"11468":4,"11469":2,"11470":3,"11471":3,"11472":1,"11473":3,"11474":1,"11475":1,"11476":2,"11477":3,"11478":1,"11479":4,"11480":3,"11481":3,"11482":3,"11483":1,"11484":4,"11485":2,"11486":1,"11487":1,"11488":4,"11489":1,"11490":3,"11491":3,"11492":2,"11493":1,"11494":4,"11495":4,"11496":3,"11497":4,"11498":3,"11499":3,"11500":3,"11501":2,"11502":1,"11503":4,"11504":3,"11505":3,"11506":4,"11507":3,"11508":5,"11509":2,"11510":4,"11511":3,"11512":3,"11513":4,"11514":4,"11515":4,"11516":2,"11517":3,"11518":2,"11519":4,"11520":2,"11521":3,"11522":2,"11523":2,"11524":2,"11525":3,"11526":2,"11527":4,"11528":4,"11529":2,"11530":5,"11531":3,"11532":5,"11533":4,"11534":3,"11535":3,"11536":3,"11537":3,"11538":3,"11539":3,"11540":3,"11541":5,"11542":3,"11543":2,"11544":4,"11545":4,"11546":2,"11547":2,"11548":2,"11549":5,"11550":4,"11551":2,"11552":4,"11553":4,"11554":4,"11555":1,"11556":1,"11557":4,"11558":2,"11559":4,"11560":1,"11561":2,"11562":2,"11563":2,"11564":4,"11565":4,"11566":1,"11567":3,"11568":5,"11569":4,"11570":3,"11571":4,"11572":2,"11573":5,"11574":3,"11575":2,"11576":3,"11577":3,"11578":1,"11579":4,"11580":1,"11581":3,"11582":3,"11583":4,"11584":4,"11585":3,"11586":4,"11587":3,"11588":3,"11589":2,"11590":3,"11591":2,"11592":5,"11593":3,"11594":3,"11595":2,"11596":4,"11597":4,"11598":4,"11599":4,"11600":1,"11601":2,"11602":2,"11603":3,"11604":5,"11605":2,"11606":3,"11607":4,"11608":5,"11609":5,"11610":2,"11611":5,"11612":3,"11613":3,"11614":3,"11615":4,"11616":3,"11617":5,"11618":3,"11619":2,"11620":4,"11621":4,"11622":1,"11623":2,"11624":3,"11625":3,"11626":2,"11627":3,"11628":1,"11629":2,"11630":3,"11631":1,"11632":5,"11633":2,"11634":3,"11635":3,"11636":3,"11637":2,"11638":4,"11639":1,"11640":2,"11641":5,"11642":3,"11643":4,"11644":4,"11645":2,"11646":1,"11647":3,"11648":4,"11649":4,"11650":3,"11651":4,"11652":3,"11653":3,"11654":4,"11655":2,"11656":4,"11657":2,"11658":2,"11659":2,"11660":4,"11661":2,"11662":2,"11663":3,"11664":3,"11665":2,"11666":3,"11667":2,"11668":4,"11669":3,"11670":3,"11671":4,"11672":2,"11673":4,"11674":3,"11675":4,"11676":4,"11677":5,"11678":4,"11679":3,"11680":3,"11681":3,"11682":3,"11683":4,"11684":3,"11685":4,"11686":3,"11687":2,"11688":1,"11689":1,"11690":2,"11691":4,"11692":2,"11693":3,"11694":4,"11695":1,"11696":2,"11697":3,"11698":5,"11699":4,"11700":2,"11701":3,"11702":3,"11703":4,"11704":1,"11705":2,"11706":3,"11707":4,"11708":3,"11709":2,"11710":1,"11711":4,"11712":3,"11713":2,"11714":5,"11715":3,"11716":3,"11717":3,"11718":1,"11719":5,"11720":4,"11721":3,"11722":4,"11723":2,"11724":2,"11725":3,"11726":3,"11727":4,"11728":3,"11729":3,"11730":1,"11731":1,"11732":1,"11733":3,"11734":4,"11735":3,"11736":3,"11737":4,"11738":3,"11739":2,"11740":3,"11741":1,"11742":1,"11743":4,"11744":2,"11745":3,"11746":3,"11747":3,"11748":2,"11749":5,"11750":2,"11751":4,"11752":4,"11753":4,"11754":4,"11755":3,"11756":4,"11757":4,"11758":4,"11759":2,"11760":4,"11761":3,"11762":3,"11763":3,"11764":3,"11765":5,"11766":3,"11767":4,"11768":4,"11769":2,"11770":5,"11771":5,"11772":4,"11773":3,"11774":2,"11775":5,"11776":3,"11777":4,"11778":2,"11779":3,"11780":5,"11781":5,"11782":3,"11783":5,"11784":4,"11785":4,"11786":2,"11787":3,"11788":2,"11789":4,"11790":3,"11791":4,"11792":1,"11793":2,"11794":4,"11795":5,"11796":4,"11797":3,"11798":3,"11799":3,"11800":3,"11801":2,"11802":2,"11803":2,"11804":2,"11805":3,"11806":2,"11807":4,"11808":3,"11809":2,"11810":1,"11811":3,"11812":3,"11813":4,"11814":2,"11815":2,"11816":5,"11817":3,"11818":2,"11819":2,"11820":3,"11821":5,"11822":2,"11823":3,"11824":2,"11825":4,"11826":2,"11827":3,"11828":3,"11829":4,"11830":3,"11831":3,"11832":4,"11833":2,"11834":4,"11835":3,"11836":4,"11837":3,"11838":5,"11839":5,"11840":3,"11841":2,"11842":4,"11843":2,"11844":2,"11845":2,"11846":3,"11847":3,"11848":3,"11849":3,"11850":1,"11851":2,"11852":3,"11853":1,"11854":1,"11855":3,"11856":3,"11857":2,"11858":4,"11859":4,"11860":3,"11861":1,"11862":2,"11863":4,"11864":5,"11865":2,"11866":4,"11867":3,"11868":4,"11869":4,"11870":3,"11871":4,"11872":2,"11873":2,"11874":3,"11875":3,"11876":2,"11877":3,"11878":3,"11879":2,"11880":3,"11881":2,"11882":3,"11883":2,"11884":3,"11885":1,"11886":4,"11887":2,"11888":5,"11889":2,"11890":5,"11891":3,"11892":4,"11893":2,"11894":4,"11895":2,"11896":3,"11897":4,"11898":2,"11899":2,"11900":3,"11901":3,"11902":3,"11903":4,"11904":2,"11905":3,"11906":4,"11907":4,"11908":3,"11909":2,"11910":2,"11911":2,"11912":3,"11913":2,"11914":2,"11915":2,"11916":3,"11917":4,"11918":2,"11919":3,"11920":4,"11921":2,"11922":4,"11923":3,"11924":2,"11925":2,"11926":3,"11927":3,"11928":3,"11929":2,"11930":4,"11931":4,"11932":3,"11933":4,"11934":4,"11935":3,"11936":4,"11937":3,"11938":2,"11939":3,"11940":3,"11941":3,"11942":4,"11943":1,"11944":2,"11945":4,"11946":2,"11947":3,"11948":5,"11949":1,"11950":4,"11951":1,"11952":2,"11953":4,"11954":4,"11955":4,"11956":3,"11957":2,"11958":3,"11959":4,"11960":3,"11961":1,"11962":3,"11963":3,"11964":1,"11965":3,"11966":5,"11967":4,"11968":4,"11969":3,"11970":3,"11971":4,"11972":4,"11973":2,"11974":4,"11975":4,"11976":4,"11977":4,"11978":3,"11979":4,"11980":4,"11981":1,"11982":2,"11983":3,"11984":3,"11985":4,"11986":2,"11987":2,"11988":4,"11989":3,"11990":2,"11991":2,"11992":4,"11993":4,"11994":4,"11995":4,"11996":1,"11997":3,"11998":3,"11999":2,"12000":4,"12001":1,"12002":3,"12003":4,"12004":5,"12005":2,"12006":5,"12007":2,"12008":4,"12009":4,"12010":4,"12011":5,"12012":2,"12013":3,"12014":1,"12015":1,"12016":3,"12017":2,"12018":4,"12019":2,"12020":4,"12021":3,"12022":4,"12023":2,"12024":3,"12025":4,"12026":3,"12027":2,"12028":2,"12029":2,"12030":3,"12031":5,"12032":2,"12033":2,"12034":4,"12035":3,"12036":4,"12037":5,"12038":4,"12039":4,"12040":2,"12041":2,"12042":1,"12043":1,"12044":4,"12045":4,"12046":2,"12047":2,"12048":4,"12049":3,"12050":3,"12051":4,"12052":3,"12053":2,"12054":2,"12055":3,"12056":2,"12057":5,"12058":4,"12059":5,"12060":3,"12061":3,"12062":2,"12063":3,"12064":3,"12065":4,"12066":1,"12067":2,"12068":3,"12069":3,"12070":2,"12071":3,"12072":4,"12073":3,"12074":2,"12075":3,"12076":4,"12077":2,"12078":3,"12079":1,"12080":5,"12081":3,"12082":3,"12083":4,"12084":3,"12085":3,"12086":3,"12087":3,"12088":5,"12089":1,"12090":4,"12091":2,"12092":3,"12093":4,"12094":4,"12095":2,"12096":3,"12097":4,"12098":3,"12099":2,"12100":2,"12101":3,"12102":4,"12103":2,"12104":4,"12105":3,"12106":4,"12107":2,"12108":3,"12109":4,"12110":1,"12111":1,"12112":1,"12113":3,"12114":2,"12115":4,"12116":4,"12117":3,"12118":4,"12119":3,"12120":3,"12121":4,"12122":3,"12123":5,"12124":1,"12125":2,"12126":4,"12127":2,"12128":2,"12129":2,"12130":2,"12131":1,"12132":4,"12133":3,"12134":3,"12135":5,"12136":3,"12137":3,"12138":3,"12139":3,"12140":4,"12141":2,"12142":4,"12143":2,"12144":4,"12145":4,"12146":3,"12147":2,"12148":1,"12149":1,"12150":3,"12151":3,"12152":4,"12153":4,"12154":2,"12155":4,"12156":3,"12157":2,"12158":3,"12159":3,"12160":2,"12161":2,"12162":1,"12163":2,"12164":3,"12165":2,"12166":2,"12167":3,"12168":2,"12169":1,"12170":3,"12171":2,"12172":2,"12173":4,"12174":3,"12175":4,"12176":4,"12177":5,"12178":3,"12179":2,"12180":4,"12181":3,"12182":2,"12183":2,"12184":1,"12185":4,"12186":3,"12187":5,"12188":3,"12189":1,"12190":2,"12191":3,"12192":4,"12193":4,"12194":1,"12195":3,"12196":4,"12197":4,"12198":3,"12199":3,"12200":2,"12201":5,"12202":3,"12203":2,"12204":4,"12205":2,"12206":1,"12207":4,"12208":3,"12209":4,"12210":3,"12211":5,"12212":3,"12213":2,"12214":3,"12215":3,"12216":5,"12217":3,"12218":4,"12219":4,"12220":4,"12221":4,"12222":3,"12223":4,"12224":3,"12225":4,"12226":5,"12227":2,"12228":5,"12229":3,"12230":3,"12231":3,"12232":4,"12233":3,"12234":3,"12235":3,"12236":4,"12237":4,"12238":3,"12239":5,"12240":3,"12241":3,"12242":1,"12243":1,"12244":5,"12245":1,"12246":2,"12247":3,"12248":4,"12249":4,"12250":2,"12251":3,"12252":2,"12253":3,"12254":2,"12255":4,"12256":2,"12257":3,"12258":5,"12259":4,"12260":4,"12261":4,"12262":2,"12263":2,"12264":2,"12265":4,"12266":4,"12267":3,"12268":2,"12269":5,"12270":3,"12271":3,"12272":3,"12273":3,"12274":2,"12275":3,"12276":3,"12277":2,"12278":4,"12279":3,"12280":3,"12281":3,"12282":3,"12283":3,"12284":2,"12285":4,"12286":2,"12287":1,"12288":1,"12289":3,"12290":2,"12291":3,"12292":3,"12293":3,"12294":4,"12295":2,"12296":3,"12297":4,"12298":1,"12299":3,"12300":2,"12301":1,"12302":3,"12303":4,"12304":2,"12305":3,"12306":2,"12307":3,"12308":3,"12309":1,"12310":1,"12311":2,"12312":5,"12313":2,"12314":1,"12315":2,"12316":2,"12317":4,"12318":3,"12319":4,"12320":4,"12321":3,"12322":2,"12323":4,"12324":4,"12325":3,"12326":3,"12327":3,"12328":5,"12329":1,"12330":4,"12331":3,"12332":3,"12333":3,"12334":3,"12335":5,"12336":3,"12337":2,"12338":2,"12339":3,"12340":2,"12341":2,"12342":1,"12343":3,"12344":3,"12345":3,"12346":4,"12347":2,"12348":2,"12349":2,"12350":3,"12351":1,"12352":4,"12353":4,"12354":3,"12355":3,"12356":3,"12357":2,"12358":4,"12359":5,"12360":3,"12361":3,"12362":4,"12363":3,"12364":4,"12365":3,"12366":2,"12367":1,"12368":4,"12369":5,"12370":3,"12371":1,"12372":3,"12373":1,"12374":1,"12375":4,"12376":5,"12377":2,"12378":3,"12379":1,"12380":2,"12381":1,"12382":1,"12383":4,"12384":4,"12385":4,"12386":3,"12387":5,"12388":4,"12389":1,"12390":3,"12391":2,"12392":2,"12393":3,"12394":3,"12395":4,"12396":1,"12397":4,"12398":3,"12399":2,"12400":3,"12401":4,"12402":4,"12403":3,"12404":4,"12405":3,"12406":1,"12407":4,"12408":4,"12409":2,"12410":2,"12411":3,"12412":1,"12413":2,"12414":3,"12415":3,"12416":3,"12417":3,"12418":3,"12419":3,"12420":2,"12421":1,"12422":2,"12423":5,"12424":4,"12425":2,"12426":5,"12427":5,"12428":5,"12429":2,"12430":2,"12431":3,"12432":2,"12433":3,"12434":2,"12435":2,"12436":2,"12437":1,"12438":4,"12439":2,"12440":4,"12441":5,"12442":4,"12443":3,"12444":1,"12445":1,"12446":3,"12447":1,"12448":4,"12449":3,"12450":2,"12451":5,"12452":1,"12453":4,"12454":2,"12455":2,"12456":2,"12457":2,"12458":2,"12459":4,"12460":2,"12461":2,"12462":1,"12463":3,"12464":3,"12465":3,"12466":5,"12467":3,"12468":3,"12469":3,"12470":2,"12471":1,"12472":3,"12473":2,"12474":3,"12475":3,"12476":4,"12477":2,"12478":3,"12479":5,"12480":2,"12481":4,"12482":2,"12483":4,"12484":4,"12485":3,"12486":2,"12487":5,"12488":4,"12489":2,"12490":5,"12491":3,"12492":2,"12493":2,"12494":2,"12495":4,"12496":1,"12497":2,"12498":1,"12499":4,"12500":2,"12501":3,"12502":3,"12503":1,"12504":3,"12505":5,"12506":5,"12507":3,"12508":2,"12509":5,"12510":2,"12511":3,"12512":5,"12513":3,"12514":2,"12515":2,"12516":4,"12517":4,"12518":5,"12519":4,"12520":3,"12521":4,"12522":3,"12523":3,"12524":4,"12525":2,"12526":3,"12527":2,"12528":2,"12529":3,"12530":4,"12531":1,"12532":3,"12533":4,"12534":2,"12535":4,"12536":3,"12537":3,"12538":4,"12539":2,"12540":3,"12541":4,"12542":2,"12543":2,"12544":2,"12545":4,"12546":3,"12547":2,"12548":4,"12549":2,"12550":1,"12551":1,"12552":5,"12553":4,"12554":2,"12555":4,"12556":2,"12557":4,"12558":2,"12559":1,"12560":2,"12561":2,"12562":3,"12563":4,"12564":2,"12565":3,"12566":1,"12567":1,"12568":4,"12569":4,"12570":1,"12571":4,"12572":2,"12573":4,"12574":1,"12575":3,"12576":2,"12577":4,"12578":3,"12579":4,"12580":2,"12581":4,"12582":1,"12583":3,"12584":5,"12585":4,"12586":3,"12587":3,"12588":4,"12589":4,"12590":3,"12591":2,"12592":5,"12593":4,"12594":4,"12595":1,"12596":3,"12597":2,"12598":2,"12599":4,"12600":3,"12601":4,"12602":3,"12603":3,"12604":3,"12605":4,"12606":4,"12607":3,"12608":2,"12609":4,"12610":4,"12611":2,"12612":4,"12613":2,"12614":1,"12615":3,"12616":5,"12617":3,"12618":3,"12619":3,"12620":3,"12621":2,"12622":4,"12623":3,"12624":4,"12625":5,"12626":5,"12627":2,"12628":4,"12629":3,"12630":3,"12631":3,"12632":3,"12633":4,"12634":2,"12635":2,"12636":4,"12637":1,"12638":4,"12639":2,"12640":3,"12641":4,"12642":4,"12643":1,"12644":5,"12645":3,"12646":2,"12647":4,"12648":2,"12649":4,"12650":3,"12651":1,"12652":3,"12653":4,"12654":4,"12655":3,"12656":4,"12657":4,"12658":1,"12659":4,"12660":5,"12661":3,"12662":4,"12663":3,"12664":3,"12665":3,"12666":4,"12667":4,"12668":1,"12669":2,"12670":4,"12671":3,"12672":3,"12673":2,"12674":4,"12675":2,"12676":4,"12677":4,"12678":2,"12679":4,"12680":2,"12681":4,"12682":3,"12683":4,"12684":2,"12685":2,"12686":5,"12687":2,"12688":1,"12689":2,"12690":2,"12691":3,"12692":3,"12693":2,"12694":3,"12695":5,"12696":5,"12697":3,"12698":4,"12699":3,"12700":2,"12701":2,"12702":4,"12703":2,"12704":4,"12705":3,"12706":3,"12707":5,"12708":3,"12709":3,"12710":3,"12711":4,"12712":3,"12713":1,"12714":4,"12715":2,"12716":2,"12717":3,"12718":2,"12719":1,"12720":4,"12721":4,"12722":2,"12723":3,"12724":1,"12725":4,"12726":1,"12727":2,"12728":2,"12729":3,"12730":2,"12731":3,"12732":2,"12733":4,"12734":4,"12735":1,"12736":1,"12737":3,"12738":4,"12739":2,"12740":1,"12741":3,"12742":2,"12743":3,"12744":4,"12745":4,"12746":4,"12747":3,"12748":2,"12749":3,"12750":3,"12751":3,"12752":4,"12753":4,"12754":3,"12755":5,"12756":3,"12757":3,"12758":4,"12759":3,"12760":2,"12761":5,"12762":4,"12763":2,"12764":3,"12765":2,"12766":4,"12767":3,"12768":5,"12769":5,"12770":3,"12771":4,"12772":3,"12773":5,"12774":4,"12775":2,"12776":4,"12777":1,"12778":4,"12779":2,"12780":3,"12781":4,"12782":3,"12783":5,"12784":4,"12785":3,"12786":4,"12787":3,"12788":2,"12789":3,"12790":2,"12791":2,"12792":3,"12793":1,"12794":2,"12795":3,"12796":4,"12797":4,"12798":3,"12799":2,"12800":4,"12801":1,"12802":3,"12803":2,"12804":3,"12805":5,"12806":2,"12807":3,"12808":3,"12809":2,"12810":3,"12811":5,"12812":2,"12813":2,"12814":3,"12815":4,"12816":1,"12817":5,"12818":4,"12819":2,"12820":2,"12821":5,"12822":3,"12823":3,"12824":5,"12825":3,"12826":2,"12827":3,"12828":3,"12829":2,"12830":3,"12831":4,"12832":3,"12833":3,"12834":1,"12835":3,"12836":4,"12837":3,"12838":3,"12839":4,"12840":3,"12841":1,"12842":2,"12843":3,"12844":4,"12845":1,"12846":3,"12847":4,"12848":2,"12849":3,"12850":4,"12851":1,"12852":2,"12853":1,"12854":3,"12855":3,"12856":3,"12857":2,"12858":3,"12859":3,"12860":3,"12861":3,"12862":4,"12863":3,"12864":4,"12865":4,"12866":2,"12867":3,"12868":2,"12869":3,"12870":3,"12871":4,"12872":4,"12873":2,"12874":3,"12875":4,"12876":2,"12877":2,"12878":5,"12879":3,"12880":4,"12881":3,"12882":3,"12883":2,"12884":4,"12885":3,"12886":3,"12887":3,"12888":2,"12889":5,"12890":4,"12891":1,"12892":3,"12893":3,"12894":2,"12895":3,"12896":3,"12897":3,"12898":3,"12899":3,"12900":3,"12901":3,"12902":4,"12903":2,"12904":2,"12905":2,"12906":4,"12907":4,"12908":3,"12909":4,"12910":2,"12911":5,"12912":1,"12913":3,"12914":2,"12915":3,"12916":4,"12917":3,"12918":3,"12919":4,"12920":4,"12921":2,"12922":4,"12923":5,"12924":4,"12925":3,"12926":3,"12927":2,"12928":4,"12929":4,"12930":4,"12931":2,"12932":1,"12933":1,"12934":2,"12935":1,"12936":1,"12937":4,"12938":4,"12939":2,"12940":5,"12941":1,"12942":2,"12943":3,"12944":2,"12945":4,"12946":4,"12947":5,"12948":3,"12949":4,"12950":3,"12951":1,"12952":3,"12953":1,"12954":3,"12955":2,"12956":1,"12957":2,"12958":3,"12959":2,"12960":3,"12961":3,"12962":3,"12963":3,"12964":2,"12965":3,"12966":3,"12967":5,"12968":4,"12969":4,"12970":4,"12971":4,"12972":3,"12973":5,"12974":2,"12975":4,"12976":3,"12977":2,"12978":2,"12979":2,"12980":3,"12981":2,"12982":3,"12983":2,"12984":5,"12985":4,"12986":1,"12987":4,"12988":3,"12989":4,"12990":3,"12991":3,"12992":3,"12993":3,"12994":3,"12995":4,"12996":4,"12997":3,"12998":3,"12999":5,"13000":3,"13001":1,"13002":1,"13003":2,"13004":2,"13005":5,"13006":4,"13007":2,"13008":2,"13009":4,"13010":4,"13011":1,"13012":2,"13013":3,"13014":3,"13015":2,"13016":2,"13017":5,"13018":3,"13019":3,"13020":3,"13021":4,"13022":4,"13023":3,"13024":2,"13025":2,"13026":4,"13027":3,"13028":4,"13029":1,"13030":3,"13031":4,"13032":3,"13033":3,"13034":3,"13035":3,"13036":2,"13037":2,"13038":2,"13039":3,"13040":3,"13041":3,"13042":4,"13043":1,"13044":3,"13045":2,"13046":1,"13047":2,"13048":3,"13049":3,"13050":2,"13051":3,"13052":1,"13053":3,"13054":1,"13055":4,"13056":2,"13057":2,"13058":2,"13059":3,"13060":3,"13061":3,"13062":5,"13063":4,"13064":4,"13065":2,"13066":5,"13067":5,"13068":2,"13069":3,"13070":3,"13071":2,"13072":5,"13073":4,"13074":4,"13075":4,"13076":3,"13077":4,"13078":3,"13079":3,"13080":4,"13081":4,"13082":4,"13083":3,"13084":3,"13085":2,"13086":3,"13087":4,"13088":4,"13089":2,"13090":3,"13091":4,"13092":5,"13093":3,"13094":3,"13095":3,"13096":4,"13097":3,"13098":4,"13099":4,"13100":3,"13101":3,"13102":4,"13103":4,"13104":4,"13105":3,"13106":1,"13107":4,"13108":5,"13109":3,"13110":5,"13111":3,"13112":3,"13113":4,"13114":4,"13115":4,"13116":4,"13117":5,"13118":3,"13119":4,"13120":2,"13121":4,"13122":5,"13123":4,"13124":4,"13125":3,"13126":5,"13127":2,"13128":2,"13129":5,"13130":4,"13131":2,"13132":4,"13133":5,"13134":3,"13135":2,"13136":1,"13137":1,"13138":4,"13139":4,"13140":2,"13141":4,"13142":1,"13143":1,"13144":3,"13145":2,"13146":4,"13147":4,"13148":2,"13149":4,"13150":5,"13151":2,"13152":2,"13153":1,"13154":2,"13155":3,"13156":3,"13157":4,"13158":3,"13159":2,"13160":4,"13161":4,"13162":3,"13163":4,"13164":4,"13165":4,"13166":3,"13167":3,"13168":4,"13169":3,"13170":3,"13171":3,"13172":4,"13173":3,"13174":3,"13175":4,"13176":2,"13177":4,"13178":2,"13179":4,"13180":1,"13181":2,"13182":5,"13183":4,"13184":3,"13185":3,"13186":1,"13187":3,"13188":2,"13189":3,"13190":2,"13191":3,"13192":4,"13193":3,"13194":3,"13195":4,"13196":3,"13197":3,"13198":3,"13199":4,"13200":3,"13201":2,"13202":5,"13203":2,"13204":2,"13205":4,"13206":2,"13207":5,"13208":5,"13209":3,"13210":2,"13211":2,"13212":3,"13213":3,"13214":4,"13215":3,"13216":3,"13217":2,"13218":1,"13219":4,"13220":3,"13221":3,"13222":1,"13223":3,"13224":2,"13225":4,"13226":1,"13227":2,"13228":5,"13229":1,"13230":1,"13231":2,"13232":2,"13233":4,"13234":2,"13235":4,"13236":3,"13237":2,"13238":4,"13239":2,"13240":3,"13241":4,"13242":3,"13243":4,"13244":3,"13245":2,"13246":3,"13247":2,"13248":3,"13249":3,"13250":4,"13251":4,"13252":3,"13253":4,"13254":1,"13255":5,"13256":2,"13257":3,"13258":1,"13259":3,"13260":3,"13261":4,"13262":2,"13263":3,"13264":4,"13265":5,"13266":3,"13267":3,"13268":3,"13269":1,"13270":3,"13271":4,"13272":4,"13273":3,"13274":3,"13275":3,"13276":4,"13277":3,"13278":3,"13279":1,"13280":1,"13281":4,"13282":3,"13283":3,"13284":4,"13285":3,"13286":3,"13287":4,"13288":4,"13289":5,"13290":4,"13291":5,"13292":3,"13293":1,"13294":3,"13295":3,"13296":3,"13297":1,"13298":3,"13299":3,"13300":3,"13301":4,"13302":3,"13303":4,"13304":3,"13305":1,"13306":4,"13307":3,"13308":3,"13309":2,"13310":1,"13311":1,"13312":3,"13313":3,"13314":2,"13315":3,"13316":2,"13317":4,"13318":3,"13319":3,"13320":3,"13321":5,"13322":4,"13323":2,"13324":4,"13325":4,"13326":3,"13327":2,"13328":3,"13329":3,"13330":2,"13331":4,"13332":5,"13333":3,"13334":2,"13335":2,"13336":2,"13337":2,"13338":5,"13339":2,"13340":1,"13341":1,"13342":3,"13343":3,"13344":3,"13345":4,"13346":2,"13347":1,"13348":4,"13349":2,"13350":2,"13351":4,"13352":2,"13353":3,"13354":3,"13355":2,"13356":3,"13357":3,"13358":4,"13359":4,"13360":4,"13361":2,"13362":3,"13363":3,"13364":2,"13365":1,"13366":4,"13367":2,"13368":2,"13369":1,"13370":3,"13371":2,"13372":4,"13373":2,"13374":2,"13375":2,"13376":3,"13377":4,"13378":3,"13379":4,"13380":4,"13381":2,"13382":3,"13383":4,"13384":5,"13385":3,"13386":4,"13387":3,"13388":3,"13389":2,"13390":3,"13391":3,"13392":2,"13393":1,"13394":3,"13395":2,"13396":1,"13397":4,"13398":3,"13399":5,"13400":3,"13401":2,"13402":2,"13403":5,"13404":1,"13405":4,"13406":4,"13407":2,"13408":4,"13409":3,"13410":4,"13411":3,"13412":3,"13413":4,"13414":4,"13415":5,"13416":3,"13417":3,"13418":3,"13419":3,"13420":1,"13421":2,"13422":1,"13423":2,"13424":4,"13425":4,"13426":2,"13427":2,"13428":2,"13429":2,"13430":4,"13431":4,"13432":4,"13433":2,"13434":2,"13435":4,"13436":3,"13437":2,"13438":4,"13439":2,"13440":3,"13441":4,"13442":2,"13443":3,"13444":4,"13445":3,"13446":1,"13447":4,"13448":4,"13449":1,"13450":3,"13451":4,"13452":2,"13453":2,"13454":4,"13455":2,"13456":2,"13457":4,"13458":2,"13459":3,"13460":4,"13461":3,"13462":3,"13463":2,"13464":3,"13465":2,"13466":3,"13467":4,"13468":3,"13469":2,"13470":1,"13471":4,"13472":3,"13473":3,"13474":3,"13475":5,"13476":4,"13477":1,"13478":3,"13479":4,"13480":4,"13481":5,"13482":3,"13483":3,"13484":1,"13485":4,"13486":4,"13487":3,"13488":2,"13489":2,"13490":2,"13491":4,"13492":1,"13493":5,"13494":3,"13495":4,"13496":2,"13497":1,"13498":4,"13499":4,"13500":5,"13501":3,"13502":4,"13503":4,"13504":1,"13505":4,"13506":1,"13507":2,"13508":4,"13509":4,"13510":2,"13511":2,"13512":2,"13513":4,"13514":4,"13515":4,"13516":4,"13517":4,"13518":5,"13519":2,"13520":4,"13521":3,"13522":1,"13523":2,"13524":3,"13525":2,"13526":4,"13527":4,"13528":3,"13529":2,"13530":2,"13531":4,"13532":2,"13533":2,"13534":3,"13535":3,"13536":4,"13537":4,"13538":4,"13539":3,"13540":3,"13541":4,"13542":5,"13543":5,"13544":4,"13545":3,"13546":2,"13547":3,"13548":1,"13549":2,"13550":3,"13551":2,"13552":1,"13553":2,"13554":3,"13555":3,"13556":5,"13557":3,"13558":2,"13559":3,"13560":1,"13561":4,"13562":2,"13563":5,"13564":2,"13565":3,"13566":3,"13567":4,"13568":3,"13569":3,"13570":1,"13571":2,"13572":4,"13573":2,"13574":5,"13575":3,"13576":5,"13577":2,"13578":3,"13579":4,"13580":3,"13581":5,"13582":3,"13583":4,"13584":2,"13585":3,"13586":3,"13587":1,"13588":3,"13589":1,"13590":4,"13591":3,"13592":5,"13593":4,"13594":3,"13595":4,"13596":3,"13597":4,"13598":3,"13599":4,"13600":3,"13601":3,"13602":2,"13603":2,"13604":3,"13605":2,"13606":2,"13607":2,"13608":5,"13609":4,"13610":3,"13611":5,"13612":3,"13613":4,"13614":1,"13615":3,"13616":3,"13617":4,"13618":2,"13619":2,"13620":3,"13621":5,"13622":5,"13623":4,"13624":3,"13625":4,"13626":4,"13627":5,"13628":5,"13629":1,"13630":3,"13631":3,"13632":3,"13633":4,"13634":3,"13635":2,"13636":3,"13637":3,"13638":5,"13639":4,"13640":3,"13641":2,"13642":4,"13643":3,"13644":4,"13645":3,"13646":4,"13647":3,"13648":4,"13649":3,"13650":2,"13651":5,"13652":3,"13653":5,"13654":3,"13655":5,"13656":3,"13657":3,"13658":3,"13659":3,"13660":3,"13661":4,"13662":3,"13663":3,"13664":3,"13665":2,"13666":4,"13667":4,"13668":1,"13669":3,"13670":1,"13671":5,"13672":2,"13673":4,"13674":3,"13675":2,"13676":4,"13677":2,"13678":2,"13679":3,"13680":3,"13681":4,"13682":4,"13683":3,"13684":2,"13685":3,"13686":4,"13687":1,"13688":3,"13689":2,"13690":2,"13691":3,"13692":1,"13693":2,"13694":1,"13695":3,"13696":3,"13697":5,"13698":2,"13699":4,"13700":3,"13701":3,"13702":3,"13703":3,"13704":3,"13705":3,"13706":2,"13707":2,"13708":4,"13709":2,"13710":3,"13711":3,"13712":2,"13713":4,"13714":3,"13715":2,"13716":3,"13717":4,"13718":2,"13719":1,"13720":5,"13721":2,"13722":1,"13723":4,"13724":4,"13725":4,"13726":2,"13727":2,"13728":1,"13729":2,"13730":3,"13731":4,"13732":5,"13733":1,"13734":2,"13735":5,"13736":3,"13737":2,"13738":3,"13739":4,"13740":2,"13741":3,"13742":4,"13743":1,"13744":3,"13745":4,"13746":3,"13747":4,"13748":1,"13749":2,"13750":5,"13751":2,"13752":2,"13753":4,"13754":3,"13755":2,"13756":4,"13757":4,"13758":3,"13759":3,"13760":3,"13761":2,"13762":2,"13763":3,"13764":3,"13765":3,"13766":4,"13767":3,"13768":4,"13769":3,"13770":4,"13771":3,"13772":4,"13773":3,"13774":4,"13775":3,"13776":4,"13777":3,"13778":3,"13779":3,"13780":3,"13781":1,"13782":3,"13783":1,"13784":3,"13785":2,"13786":1,"13787":4,"13788":3,"13789":4,"13790":3,"13791":5,"13792":4,"13793":4,"13794":4,"13795":4,"13796":4,"13797":1,"13798":4,"13799":2,"13800":3,"13801":4,"13802":3,"13803":2,"13804":3,"13805":5,"13806":3,"13807":1,"13808":1,"13809":3,"13810":4,"13811":2,"13812":1,"13813":1,"13814":3,"13815":2,"13816":5,"13817":4,"13818":2,"13819":4,"13820":3,"13821":4,"13822":2,"13823":3,"13824":2,"13825":4,"13826":3,"13827":2,"13828":1,"13829":4,"13830":1,"13831":3,"13832":1,"13833":3,"13834":5,"13835":3,"13836":3,"13837":2,"13838":4,"13839":1,"13840":3,"13841":3,"13842":2,"13843":1,"13844":3,"13845":2,"13846":4,"13847":5,"13848":3,"13849":1,"13850":1,"13851":3,"13852":3,"13853":1,"13854":4,"13855":3,"13856":4,"13857":4,"13858":4,"13859":3,"13860":1,"13861":1,"13862":2,"13863":3,"13864":1,"13865":5,"13866":2,"13867":4,"13868":2,"13869":2,"13870":2,"13871":4,"13872":4,"13873":4,"13874":3,"13875":4,"13876":3,"13877":3,"13878":3,"13879":3,"13880":5,"13881":4,"13882":4,"13883":3,"13884":3,"13885":3,"13886":4,"13887":5,"13888":2,"13889":4,"13890":2,"13891":3,"13892":3,"13893":1,"13894":2,"13895":3,"13896":3,"13897":3,"13898":4,"13899":4,"13900":4,"13901":3,"13902":5,"13903":4,"13904":2,"13905":3,"13906":2,"13907":3,"13908":3,"13909":4,"13910":2,"13911":2,"13912":4,"13913":1,"13914":3,"13915":3,"13916":1,"13917":2,"13918":5,"13919":4,"13920":2,"13921":1,"13922":4,"13923":3,"13924":4,"13925":4,"13926":2,"13927":4,"13928":2,"13929":3,"13930":3,"13931":4,"13932":3,"13933":4,"13934":4,"13935":1,"13936":5,"13937":1,"13938":3,"13939":3,"13940":3,"13941":3,"13942":4,"13943":5,"13944":4,"13945":3,"13946":1,"13947":4,"13948":4,"13949":1,"13950":2,"13951":3,"13952":2,"13953":3,"13954":2,"13955":5,"13956":4,"13957":4,"13958":1,"13959":3,"13960":2,"13961":3,"13962":4,"13963":5,"13964":2,"13965":3,"13966":1,"13967":3,"13968":3,"13969":2,"13970":3,"13971":3,"13972":2,"13973":2,"13974":3,"13975":4,"13976":3,"13977":2,"13978":3,"13979":4,"13980":2,"13981":5,"13982":1,"13983":4,"13984":2,"13985":3,"13986":2,"13987":3,"13988":3,"13989":3,"13990":2,"13991":3,"13992":3,"13993":4,"13994":3,"13995":2,"13996":4,"13997":2,"13998":1,"13999":4,"14000":2,"14001":3,"14002":2,"14003":1,"14004":3,"14005":2,"14006":4,"14007":2,"14008":4,"14009":3,"14010":3,"14011":4,"14012":3,"14013":3,"14014":3,"14015":2,"14016":3,"14017":3,"14018":3,"14019":4,"14020":3,"14021":1,"14022":3,"14023":3,"14024":2,"14025":5,"14026":4,"14027":2,"14028":1,"14029":5,"14030":3,"14031":2,"14032":2,"14033":3,"14034":4,"14035":3,"14036":5,"14037":4,"14038":3,"14039":1,"14040":3,"14041":1,"14042":2,"14043":4,"14044":4,"14045":4,"14046":1,"14047":3,"14048":4,"14049":2,"14050":2,"14051":2,"14052":2,"14053":3,"14054":2,"14055":4,"14056":4,"14057":3,"14058":4,"14059":1,"14060":2,"14061":5,"14062":5,"14063":4,"14064":3,"14065":4,"14066":5,"14067":4,"14068":4,"14069":3,"14070":2,"14071":5,"14072":3,"14073":3,"14074":4,"14075":4,"14076":2,"14077":2,"14078":3,"14079":1,"14080":3,"14081":3,"14082":3,"14083":5,"14084":1,"14085":2,"14086":1,"14087":2,"14088":3,"14089":4,"14090":2,"14091":1,"14092":3,"14093":3,"14094":3,"14095":3,"14096":3,"14097":4,"14098":4,"14099":3,"14100":1,"14101":4,"14102":1,"14103":3,"14104":3,"14105":4,"14106":2,"14107":3,"14108":4,"14109":3,"14110":3,"14111":2,"14112":3,"14113":3,"14114":3,"14115":4,"14116":4,"14117":4,"14118":1,"14119":3,"14120":3,"14121":4,"14122":5,"14123":2,"14124":3,"14125":2,"14126":5,"14127":4,"14128":3,"14129":2,"14130":2,"14131":4,"14132":3,"14133":2,"14134":2,"14135":3,"14136":1,"14137":3,"14138":4,"14139":3,"14140":3,"14141":3,"14142":3,"14143":1,"14144":1,"14145":3,"14146":2,"14147":3,"14148":3,"14149":4,"14150":3,"14151":3,"14152":3,"14153":2,"14154":4,"14155":2,"14156":3,"14157":2,"14158":3,"14159":5,"14160":3,"14161":3,"14162":4,"14163":3,"14164":2,"14165":4,"14166":2,"14167":2,"14168":5,"14169":2,"14170":3,"14171":2,"14172":1,"14173":2,"14174":4,"14175":3,"14176":3,"14177":2,"14178":4,"14179":4,"14180":3,"14181":5,"14182":1,"14183":4,"14184":4,"14185":3,"14186":3,"14187":4,"14188":4,"14189":1,"14190":4,"14191":4,"14192":4,"14193":4,"14194":1,"14195":5,"14196":2,"14197":3,"14198":3,"14199":2,"14200":3,"14201":4,"14202":4,"14203":2,"14204":3,"14205":2,"14206":2,"14207":1,"14208":3,"14209":2,"14210":3,"14211":3,"14212":1,"14213":2,"14214":1,"14215":4,"14216":2,"14217":5,"14218":2,"14219":1,"14220":4,"14221":3,"14222":4,"14223":3,"14224":3,"14225":3,"14226":4,"14227":4,"14228":4,"14229":5,"14230":3,"14231":2,"14232":4,"14233":2,"14234":4,"14235":1,"14236":3,"14237":1,"14238":2,"14239":2,"14240":2,"14241":2,"14242":2,"14243":3,"14244":3,"14245":2,"14246":2,"14247":4,"14248":4,"14249":3,"14250":1,"14251":3,"14252":4,"14253":3,"14254":3,"14255":4,"14256":3,"14257":1,"14258":2,"14259":2,"14260":3,"14261":4,"14262":3,"14263":2,"14264":1,"14265":3,"14266":3,"14267":3,"14268":3,"14269":4,"14270":2,"14271":1,"14272":2,"14273":3,"14274":3,"14275":2,"14276":2,"14277":4,"14278":2,"14279":4,"14280":1,"14281":2,"14282":2,"14283":2,"14284":4,"14285":4,"14286":3,"14287":3,"14288":3,"14289":3,"14290":1,"14291":1,"14292":4,"14293":4,"14294":3,"14295":3,"14296":5,"14297":2,"14298":4,"14299":1,"14300":4,"14301":4,"14302":3,"14303":3,"14304":1,"14305":2,"14306":1,"14307":1,"14308":1,"14309":2,"14310":4,"14311":2,"14312":2,"14313":2,"14314":4,"14315":2,"14316":4,"14317":3,"14318":4,"14319":4,"14320":3,"14321":4,"14322":2,"14323":3,"14324":1,"14325":2,"14326":3,"14327":4,"14328":2,"14329":2,"14330":2,"14331":2,"14332":3,"14333":3,"14334":2,"14335":3,"14336":3,"14337":2,"14338":1,"14339":2,"14340":1,"14341":3,"14342":3,"14343":3,"14344":5,"14345":3,"14346":2,"14347":4,"14348":4,"14349":5,"14350":3,"14351":5,"14352":3,"14353":3,"14354":4,"14355":3,"14356":3,"14357":3,"14358":2,"14359":4,"14360":3,"14361":1,"14362":4,"14363":4,"14364":5,"14365":2,"14366":3,"14367":3,"14368":3,"14369":3,"14370":3,"14371":2,"14372":2,"14373":2,"14374":3,"14375":3,"14376":3,"14377":4,"14378":3,"14379":2,"14380":5,"14381":4,"14382":3,"14383":3,"14384":3,"14385":2,"14386":3,"14387":2,"14388":4,"14389":5,"14390":4,"14391":3,"14392":3,"14393":2,"14394":1,"14395":3,"14396":4,"14397":4,"14398":3,"14399":3,"14400":3,"14401":5,"14402":4,"14403":4,"14404":4,"14405":3,"14406":4,"14407":2,"14408":2,"14409":2,"14410":2,"14411":4,"14412":3,"14413":2,"14414":5,"14415":2,"14416":4,"14417":4,"14418":3,"14419":1,"14420":3,"14421":3,"14422":3,"14423":4,"14424":2,"14425":2,"14426":4,"14427":3,"14428":5,"14429":4,"14430":3,"14431":4,"14432":3,"14433":4,"14434":3,"14435":3,"14436":2,"14437":3,"14438":4,"14439":2,"14440":2,"14441":3,"14442":5,"14443":5,"14444":3,"14445":1,"14446":3,"14447":1,"14448":1,"14449":4,"14450":2,"14451":4,"14452":3,"14453":3,"14454":5,"14455":4,"14456":3,"14457":2,"14458":5,"14459":2,"14460":2,"14461":4,"14462":4,"14463":2,"14464":2,"14465":5,"14466":3,"14467":3,"14468":5,"14469":4,"14470":4,"14471":2,"14472":1,"14473":2,"14474":3,"14475":1,"14476":2,"14477":5,"14478":4,"14479":2,"14480":3,"14481":2,"14482":3,"14483":3,"14484":2,"14485":2,"14486":2,"14487":3,"14488":4,"14489":3,"14490":3,"14491":3,"14492":2,"14493":4,"14494":5,"14495":3,"14496":3,"14497":3,"14498":4,"14499":4,"14500":4,"14501":1,"14502":3,"14503":3,"14504":5,"14505":2,"14506":3,"14507":2,"14508":4,"14509":4,"14510":2,"14511":5,"14512":4,"14513":5,"14514":5,"14515":3,"14516":2,"14517":5,"14518":2,"14519":3,"14520":4,"14521":1,"14522":3,"14523":4,"14524":2,"14525":5,"14526":3,"14527":2,"14528":4,"14529":4,"14530":2,"14531":2,"14532":1,"14533":1,"14534":3,"14535":1,"14536":3,"14537":3,"14538":5,"14539":5,"14540":2,"14541":3,"14542":5,"14543":4,"14544":3,"14545":3,"14546":3,"14547":4,"14548":4,"14549":4,"14550":3,"14551":4,"14552":3,"14553":4,"14554":4,"14555":3,"14556":2,"14557":2,"14558":5,"14559":3,"14560":2,"14561":3,"14562":2,"14563":2,"14564":1,"14565":4,"14566":2,"14567":4,"14568":3,"14569":4,"14570":2,"14571":3,"14572":3,"14573":4,"14574":2,"14575":2,"14576":2,"14577":2,"14578":5,"14579":2,"14580":1,"14581":2,"14582":5,"14583":4,"14584":4,"14585":2,"14586":5,"14587":5,"14588":5,"14589":3,"14590":2,"14591":4,"14592":3,"14593":4,"14594":3,"14595":3,"14596":4,"14597":2,"14598":2,"14599":3,"14600":4,"14601":4,"14602":2,"14603":3,"14604":3,"14605":4,"14606":4,"14607":4,"14608":4,"14609":3,"14610":1,"14611":1,"14612":3,"14613":2,"14614":4,"14615":5,"14616":5,"14617":2,"14618":2,"14619":2,"14620":2,"14621":5,"14622":3,"14623":2,"14624":3,"14625":3,"14626":5,"14627":3,"14628":2,"14629":2,"14630":1,"14631":3,"14632":4,"14633":3,"14634":3,"14635":3,"14636":2,"14637":3,"14638":3,"14639":3,"14640":3,"14641":4,"14642":2,"14643":2,"14644":3,"14645":3,"14646":5,"14647":3,"14648":2,"14649":3,"14650":4,"14651":3,"14652":1,"14653":1,"14654":3,"14655":3,"14656":4,"14657":2,"14658":3,"14659":3,"14660":2,"14661":3,"14662":4,"14663":4,"14664":3,"14665":1,"14666":2,"14667":4,"14668":3,"14669":4,"14670":5,"14671":5,"14672":1,"14673":4,"14674":1,"14675":1,"14676":4,"14677":4,"14678":2,"14679":2,"14680":3,"14681":3,"14682":3,"14683":5,"14684":4,"14685":3,"14686":4,"14687":2,"14688":1,"14689":1,"14690":3,"14691":4,"14692":2,"14693":3,"14694":2,"14695":3,"14696":4,"14697":5,"14698":4,"14699":3,"14700":4,"14701":3,"14702":5,"14703":2,"14704":3,"14705":1,"14706":3,"14707":3,"14708":2,"14709":1,"14710":2,"14711":4,"14712":4,"14713":3,"14714":3,"14715":2,"14716":2,"14717":2,"14718":5,"14719":4,"14720":1,"14721":4,"14722":3,"14723":3,"14724":4,"14725":4,"14726":2,"14727":2,"14728":3,"14729":4,"14730":1,"14731":4,"14732":2,"14733":4,"14734":1,"14735":4,"14736":3,"14737":3,"14738":4,"14739":3,"14740":1,"14741":4,"14742":3,"14743":3,"14744":3,"14745":3,"14746":3,"14747":2,"14748":3,"14749":4,"14750":3,"14751":4,"14752":3,"14753":5,"14754":3,"14755":4,"14756":4,"14757":4,"14758":3,"14759":2,"14760":4,"14761":1,"14762":2,"14763":2,"14764":3,"14765":3,"14766":5,"14767":3,"14768":3,"14769":4,"14770":5,"14771":3,"14772":3,"14773":3,"14774":2,"14775":3,"14776":2,"14777":1,"14778":4,"14779":3,"14780":3,"14781":4,"14782":4,"14783":3,"14784":4,"14785":3,"14786":4,"14787":3,"14788":2,"14789":2,"14790":4,"14791":2,"14792":3,"14793":3,"14794":5,"14795":4,"14796":4,"14797":3,"14798":3,"14799":3,"14800":3,"14801":1,"14802":5,"14803":5,"14804":4,"14805":4,"14806":5,"14807":3,"14808":2,"14809":4,"14810":4,"14811":3,"14812":1,"14813":4,"14814":4,"14815":3,"14816":5,"14817":1,"14818":3,"14819":4,"14820":3,"14821":2,"14822":2,"14823":5,"14824":2,"14825":4,"14826":3,"14827":2,"14828":3,"14829":4,"14830":3,"14831":3,"14832":4,"14833":3,"14834":2,"14835":3,"14836":1,"14837":1,"14838":5,"14839":4,"14840":4,"14841":2,"14842":3,"14843":5,"14844":3,"14845":3,"14846":1,"14847":3,"14848":3,"14849":1,"14850":2,"14851":3,"14852":2,"14853":1,"14854":3,"14855":1,"14856":4,"14857":1,"14858":2,"14859":3,"14860":3,"14861":3,"14862":4,"14863":2,"14864":3,"14865":3,"14866":3,"14867":4,"14868":3,"14869":5,"14870":3,"14871":3,"14872":3,"14873":3,"14874":4,"14875":4,"14876":3,"14877":4,"14878":2,"14879":3,"14880":2,"14881":5,"14882":3,"14883":2,"14884":2,"14885":3,"14886":2,"14887":3,"14888":4,"14889":3,"14890":3,"14891":1,"14892":3,"14893":3,"14894":4,"14895":2,"14896":2,"14897":5,"14898":2,"14899":5,"14900":2,"14901":4,"14902":2,"14903":1,"14904":4,"14905":1,"14906":3,"14907":3,"14908":2,"14909":1,"14910":2,"14911":5,"14912":3,"14913":1,"14914":4,"14915":4,"14916":3,"14917":3,"14918":3,"14919":3,"14920":3,"14921":3,"14922":3,"14923":4,"14924":4,"14925":2,"14926":3,"14927":4,"14928":5,"14929":3,"14930":3,"14931":1,"14932":4,"14933":2,"14934":1,"14935":4,"14936":2,"14937":4,"14938":4,"14939":3,"14940":2,"14941":5,"14942":3,"14943":4,"14944":3,"14945":4,"14946":3,"14947":3,"14948":3,"14949":2,"14950":5,"14951":4,"14952":4,"14953":4,"14954":3,"14955":4,"14956":4,"14957":4,"14958":3,"14959":3,"14960":4,"14961":2,"14962":3,"14963":2,"14964":4,"14965":4,"14966":2,"14967":5,"14968":4,"14969":2,"14970":2,"14971":1,"14972":4,"14973":4,"14974":3,"14975":3,"14976":4,"14977":2,"14978":5,"14979":4,"14980":4,"14981":4,"14982":3,"14983":4,"14984":4,"14985":3,"14986":4,"14987":2,"14988":4,"14989":2,"14990":5,"14991":4,"14992":2,"14993":3,"14994":3,"14995":4,"14996":4,"14997":4,"14998":5,"14999":1,"15000":4,"15001":4,"15002":2,"15003":4,"15004":4,"15005":3,"15006":4,"15007":3,"15008":3,"15009":3,"15010":2,"15011":3,"15012":3,"15013":4,"15014":1,"15015":4,"15016":3,"15017":2,"15018":4,"15019":3,"15020":4,"15021":3,"15022":1,"15023":3,"15024":1,"15025":2,"15026":3,"15027":4,"15028":3,"15029":1,"15030":4,"15031":3,"15032":4,"15033":4,"15034":2,"15035":2,"15036":2,"15037":2,"15038":3,"15039":2,"15040":3,"15041":4,"15042":2,"15043":5,"15044":2,"15045":5,"15046":3,"15047":2,"15048":4,"15049":3,"15050":1,"15051":4,"15052":2,"15053":4,"15054":3,"15055":4,"15056":4,"15057":4,"15058":5,"15059":2,"15060":3,"15061":3,"15062":2,"15063":2,"15064":4,"15065":4,"15066":2,"15067":3,"15068":2,"15069":3,"15070":4,"15071":4,"15072":4,"15073":4,"15074":4,"15075":3,"15076":4,"15077":3,"15078":3,"15079":4,"15080":4,"15081":4,"15082":5,"15083":2,"15084":5,"15085":3,"15086":3,"15087":4,"15088":4,"15089":3,"15090":3,"15091":3,"15092":3,"15093":3,"15094":3,"15095":3,"15096":1,"15097":3,"15098":4,"15099":3,"15100":5,"15101":2,"15102":5,"15103":5,"15104":3,"15105":2,"15106":2,"15107":1,"15108":4,"15109":1,"15110":2,"15111":4,"15112":2,"15113":3,"15114":3,"15115":4,"15116":3,"15117":3,"15118":1,"15119":2,"15120":3,"15121":3,"15122":3,"15123":2,"15124":2,"15125":3,"15126":4,"15127":2,"15128":4,"15129":4,"15130":4,"15131":2,"15132":5,"15133":3,"15134":3,"15135":4,"15136":1,"15137":5,"15138":2,"15139":3,"15140":5,"15141":3,"15142":4,"15143":4,"15144":2,"15145":2,"15146":3,"15147":2,"15148":1,"15149":4,"15150":3,"15151":2,"15152":2,"15153":5,"15154":2,"15155":2,"15156":4,"15157":1,"15158":4,"15159":4,"15160":3,"15161":3,"15162":4,"15163":2,"15164":4,"15165":3,"15166":3,"15167":1,"15168":2,"15169":4,"15170":2,"15171":3,"15172":4,"15173":4,"15174":4,"15175":3,"15176":3,"15177":5,"15178":4,"15179":3,"15180":4,"15181":2,"15182":4,"15183":4,"15184":4,"15185":3,"15186":1,"15187":3,"15188":3,"15189":3,"15190":3,"15191":4,"15192":3,"15193":4,"15194":3,"15195":2,"15196":2,"15197":3,"15198":1,"15199":1,"15200":3,"15201":3,"15202":5,"15203":1,"15204":2,"15205":4,"15206":1,"15207":2,"15208":3,"15209":3,"15210":1,"15211":4,"15212":3,"15213":3,"15214":4,"15215":3,"15216":4,"15217":3,"15218":5,"15219":2,"15220":3,"15221":2,"15222":3,"15223":2,"15224":2,"15225":3,"15226":2,"15227":3,"15228":2,"15229":4,"15230":4,"15231":1,"15232":3,"15233":1,"15234":4,"15235":1,"15236":4,"15237":1,"15238":2,"15239":5,"15240":3,"15241":4,"15242":4,"15243":4,"15244":3,"15245":4,"15246":2,"15247":2,"15248":4,"15249":4,"15250":2,"15251":3,"15252":2,"15253":2,"15254":2,"15255":3,"15256":4,"15257":2,"15258":4,"15259":5,"15260":1,"15261":2,"15262":4,"15263":2,"15264":4,"15265":3,"15266":3,"15267":4,"15268":2,"15269":3,"15270":5,"15271":3,"15272":4,"15273":1,"15274":4,"15275":4,"15276":3,"15277":3,"15278":2,"15279":4,"15280":3,"15281":2,"15282":4,"15283":3,"15284":1,"15285":1,"15286":2,"15287":3,"15288":4,"15289":1,"15290":3,"15291":3,"15292":2,"15293":3,"15294":1,"15295":4,"15296":4,"15297":2,"15298":3,"15299":3,"15300":3,"15301":3,"15302":4,"15303":1,"15304":4,"15305":2,"15306":4,"15307":5,"15308":5,"15309":4,"15310":3,"15311":3,"15312":4,"15313":4,"15314":2,"15315":1,"15316":2,"15317":4,"15318":3,"15319":3,"15320":4,"15321":4,"15322":4,"15323":3,"15324":4,"15325":2,"15326":2,"15327":3,"15328":2,"15329":4,"15330":4,"15331":3,"15332":4,"15333":3,"15334":3,"15335":5,"15336":2,"15337":3,"15338":4,"15339":5,"15340":5,"15341":5,"15342":5,"15343":2,"15344":4,"15345":3,"15346":3,"15347":3,"15348":5,"15349":4,"15350":4,"15351":4,"15352":4,"15353":2,"15354":4,"15355":3,"15356":4,"15357":1,"15358":4,"15359":3,"15360":3,"15361":4,"15362":3,"15363":4,"15364":4,"15365":3,"15366":1,"15367":3,"15368":2,"15369":4,"15370":2,"15371":3,"15372":4,"15373":4,"15374":4,"15375":1,"15376":3,"15377":4,"15378":4,"15379":3,"15380":4,"15381":3,"15382":2,"15383":1,"15384":2,"15385":2,"15386":3,"15387":2,"15388":4,"15389":3,"15390":5,"15391":3,"15392":3,"15393":3,"15394":5,"15395":3,"15396":3,"15397":4,"15398":3,"15399":4,"15400":1,"15401":3,"15402":2,"15403":2,"15404":4,"15405":1,"15406":2,"15407":5,"15408":4,"15409":3,"15410":3,"15411":2,"15412":3,"15413":3,"15414":3,"15415":3,"15416":1,"15417":4,"15418":3,"15419":4,"15420":4,"15421":1,"15422":2,"15423":3,"15424":3,"15425":1,"15426":3,"15427":3,"15428":3,"15429":4,"15430":5,"15431":2,"15432":5,"15433":5,"15434":4,"15435":3,"15436":3,"15437":3,"15438":1,"15439":4,"15440":4,"15441":4,"15442":4,"15443":3,"15444":1,"15445":4,"15446":2,"15447":3,"15448":3,"15449":5,"15450":2,"15451":5,"15452":2,"15453":4,"15454":4,"15455":2,"15456":3,"15457":2,"15458":5,"15459":3,"15460":1,"15461":3,"15462":3,"15463":3,"15464":4,"15465":2,"15466":2,"15467":4,"15468":4,"15469":4,"15470":1,"15471":5,"15472":3,"15473":2,"15474":4,"15475":2,"15476":4,"15477":5,"15478":4,"15479":4,"15480":3,"15481":4,"15482":4,"15483":4,"15484":4,"15485":4,"15486":3,"15487":4,"15488":5,"15489":3,"15490":2,"15491":3,"15492":3,"15493":3,"15494":1,"15495":3,"15496":4,"15497":2,"15498":1,"15499":4,"15500":4,"15501":2,"15502":1,"15503":2,"15504":2,"15505":2,"15506":3,"15507":5,"15508":4,"15509":5,"15510":5,"15511":3,"15512":4,"15513":4,"15514":3,"15515":4,"15516":4,"15517":1,"15518":4,"15519":1,"15520":4,"15521":2,"15522":4,"15523":2,"15524":3,"15525":3,"15526":3,"15527":1,"15528":1,"15529":3,"15530":5,"15531":4,"15532":3,"15533":4,"15534":3,"15535":3,"15536":3,"15537":2,"15538":2,"15539":2,"15540":2,"15541":4,"15542":2,"15543":3,"15544":4,"15545":2,"15546":5,"15547":2,"15548":3,"15549":3,"15550":1,"15551":3,"15552":2,"15553":4,"15554":4,"15555":4,"15556":5,"15557":5,"15558":1,"15559":4,"15560":3,"15561":4,"15562":4,"15563":3,"15564":1,"15565":3,"15566":2,"15567":2,"15568":4,"15569":1,"15570":3,"15571":3,"15572":3,"15573":3,"15574":2,"15575":4,"15576":4,"15577":3,"15578":3,"15579":3,"15580":1,"15581":3,"15582":3,"15583":3,"15584":1,"15585":2,"15586":4,"15587":1,"15588":2,"15589":4,"15590":3,"15591":4,"15592":4,"15593":2,"15594":2,"15595":1,"15596":1,"15597":2,"15598":4,"15599":2,"15600":2,"15601":2,"15602":3,"15603":2,"15604":4,"15605":4,"15606":1,"15607":5,"15608":2,"15609":3,"15610":3,"15611":2,"15612":4,"15613":2,"15614":5,"15615":5,"15616":4,"15617":3,"15618":1,"15619":1,"15620":4,"15621":2,"15622":4,"15623":4,"15624":4,"15625":4,"15626":4,"15627":2,"15628":1,"15629":4,"15630":1,"15631":3,"15632":3,"15633":4,"15634":3,"15635":5,"15636":3,"15637":4,"15638":2,"15639":4,"15640":3,"15641":3,"15642":4,"15643":4,"15644":3,"15645":3,"15646":1,"15647":4,"15648":1,"15649":2,"15650":3,"15651":1,"15652":2,"15653":3,"15654":2,"15655":3,"15656":4,"15657":4,"15658":3,"15659":4,"15660":1,"15661":5,"15662":2,"15663":3,"15664":4,"15665":4,"15666":5,"15667":4,"15668":2,"15669":3,"15670":3,"15671":2,"15672":3,"15673":3,"15674":3,"15675":3,"15676":2,"15677":1,"15678":1,"15679":3,"15680":3,"15681":4,"15682":5,"15683":3,"15684":4,"15685":3,"15686":3,"15687":3,"15688":2,"15689":3,"15690":2,"15691":3,"15692":2,"15693":4,"15694":3,"15695":4,"15696":4,"15697":1,"15698":3,"15699":3,"15700":3,"15701":1,"15702":3,"15703":2,"15704":2,"15705":4,"15706":2,"15707":2,"15708":3,"15709":3,"15710":4,"15711":3,"15712":3,"15713":2,"15714":3,"15715":4,"15716":3,"15717":4,"15718":3,"15719":3,"15720":2,"15721":4,"15722":2,"15723":3,"15724":2,"15725":3,"15726":4,"15727":4,"15728":1,"15729":1,"15730":3,"15731":2,"15732":2,"15733":5,"15734":3,"15735":4,"15736":4,"15737":3,"15738":3,"15739":3,"15740":1,"15741":1,"15742":3,"15743":3,"15744":2,"15745":4,"15746":4,"15747":4,"15748":4,"15749":3,"15750":3,"15751":2,"15752":3,"15753":3,"15754":3,"15755":4,"15756":4,"15757":4,"15758":2,"15759":5,"15760":2,"15761":4,"15762":4,"15763":4,"15764":1,"15765":3,"15766":2,"15767":5,"15768":4,"15769":3,"15770":2,"15771":1,"15772":1,"15773":2,"15774":3,"15775":2,"15776":2,"15777":2,"15778":1,"15779":4,"15780":3,"15781":2,"15782":4,"15783":1,"15784":4,"15785":5,"15786":4,"15787":1,"15788":4,"15789":3,"15790":1,"15791":1,"15792":3,"15793":4,"15794":3,"15795":3,"15796":2,"15797":2,"15798":1,"15799":4,"15800":3,"15801":3,"15802":3,"15803":1,"15804":2,"15805":3,"15806":2,"15807":2,"15808":3,"15809":1,"15810":3,"15811":2,"15812":4,"15813":3,"15814":3,"15815":2,"15816":3,"15817":5,"15818":3,"15819":4,"15820":1,"15821":3,"15822":3,"15823":1,"15824":5,"15825":2,"15826":4,"15827":5,"15828":4,"15829":3,"15830":1,"15831":1,"15832":2,"15833":3,"15834":3,"15835":3,"15836":1,"15837":2,"15838":1,"15839":1,"15840":4,"15841":4,"15842":5,"15843":1,"15844":2,"15845":3,"15846":3,"15847":3,"15848":3,"15849":4,"15850":3,"15851":1,"15852":3,"15853":1,"15854":3,"15855":2,"15856":4,"15857":2,"15858":4,"15859":2,"15860":2,"15861":2,"15862":2,"15863":4,"15864":3,"15865":3,"15866":2,"15867":4,"15868":3,"15869":4,"15870":3,"15871":3,"15872":4,"15873":3,"15874":5,"15875":4,"15876":2,"15877":3,"15878":2,"15879":4,"15880":2,"15881":4,"15882":2,"15883":4,"15884":3,"15885":3,"15886":4,"15887":3,"15888":4,"15889":3,"15890":3,"15891":2,"15892":4,"15893":3,"15894":2,"15895":4,"15896":1,"15897":5,"15898":5,"15899":2,"15900":3,"15901":4,"15902":3,"15903":3,"15904":3,"15905":2,"15906":5,"15907":3,"15908":3,"15909":3,"15910":5,"15911":4,"15912":3,"15913":1,"15914":2,"15915":2,"15916":1,"15917":3,"15918":3,"15919":2,"15920":3,"15921":3,"15922":2,"15923":4,"15924":5,"15925":3,"15926":4,"15927":3,"15928":4,"15929":3,"15930":3,"15931":2,"15932":4,"15933":4,"15934":4,"15935":5,"15936":3,"15937":4,"15938":3,"15939":4,"15940":1,"15941":3,"15942":4,"15943":4,"15944":1,"15945":4,"15946":3,"15947":1,"15948":3,"15949":2,"15950":2,"15951":3,"15952":1,"15953":2,"15954":1,"15955":4,"15956":4,"15957":5,"15958":3,"15959":4,"15960":2,"15961":4,"15962":3,"15963":1,"15964":1,"15965":3,"15966":2,"15967":3,"15968":3,"15969":2,"15970":4,"15971":3,"15972":3,"15973":3,"15974":3,"15975":3,"15976":3,"15977":3,"15978":5,"15979":3,"15980":2,"15981":2,"15982":2,"15983":4,"15984":5,"15985":3,"15986":3,"15987":3,"15988":2,"15989":3,"15990":2,"15991":3,"15992":2,"15993":3,"15994":4,"15995":3,"15996":2,"15997":3,"15998":1,"15999":2,"16000":3,"16001":3,"16002":4,"16003":5,"16004":3,"16005":3,"16006":3,"16007":4,"16008":4,"16009":3,"16010":4,"16011":2,"16012":3,"16013":4,"16014":1,"16015":1,"16016":2,"16017":4,"16018":3,"16019":3,"16020":2,"16021":4,"16022":1,"16023":4,"16024":3,"16025":4,"16026":1,"16027":4,"16028":1,"16029":3,"16030":2,"16031":3,"16032":2,"16033":2,"16034":3,"16035":3,"16036":5,"16037":2,"16038":3,"16039":1,"16040":2,"16041":3,"16042":3,"16043":5,"16044":3,"16045":4,"16046":5,"16047":3,"16048":2,"16049":3,"16050":4,"16051":3,"16052":4,"16053":4,"16054":3,"16055":4,"16056":4,"16057":3,"16058":3,"16059":2,"16060":4,"16061":2,"16062":3,"16063":1,"16064":5,"16065":3,"16066":3,"16067":5,"16068":4,"16069":5,"16070":3,"16071":2,"16072":4,"16073":4,"16074":3,"16075":3,"16076":2,"16077":2,"16078":3,"16079":4,"16080":2,"16081":3,"16082":2,"16083":4,"16084":4,"16085":1,"16086":2,"16087":1,"16088":2,"16089":2,"16090":2,"16091":4,"16092":3,"16093":1,"16094":5,"16095":2,"16096":3,"16097":3,"16098":4,"16099":5,"16100":4,"16101":3,"16102":2,"16103":3,"16104":4,"16105":2,"16106":4,"16107":4,"16108":2,"16109":2,"16110":4,"16111":4,"16112":3,"16113":4,"16114":3,"16115":1,"16116":3,"16117":1,"16118":4,"16119":3,"16120":1,"16121":3,"16122":2,"16123":1,"16124":4,"16125":3,"16126":1,"16127":1,"16128":1,"16129":4,"16130":2,"16131":3,"16132":5,"16133":2,"16134":4,"16135":5,"16136":5,"16137":4,"16138":2,"16139":3,"16140":3,"16141":5,"16142":5,"16143":1,"16144":5,"16145":4,"16146":1,"16147":3,"16148":3,"16149":2,"16150":4,"16151":3,"16152":2,"16153":3,"16154":5,"16155":2,"16156":4,"16157":5,"16158":2,"16159":3,"16160":4,"16161":4,"16162":3,"16163":2,"16164":4,"16165":3,"16166":2,"16167":4,"16168":4,"16169":2,"16170":3,"16171":2,"16172":4,"16173":4,"16174":4,"16175":4,"16176":2,"16177":3,"16178":3,"16179":2,"16180":3,"16181":4,"16182":1,"16183":3,"16184":2,"16185":3,"16186":5,"16187":1,"16188":4,"16189":3,"16190":3,"16191":3,"16192":3,"16193":2,"16194":5,"16195":2,"16196":2,"16197":2,"16198":2,"16199":2,"16200":5,"16201":4,"16202":3,"16203":1,"16204":3,"16205":2,"16206":1,"16207":2,"16208":2,"16209":1,"16210":3,"16211":3,"16212":2,"16213":4,"16214":3,"16215":4,"16216":2,"16217":4,"16218":3,"16219":1,"16220":3,"16221":5,"16222":2,"16223":1,"16224":3,"16225":3,"16226":3,"16227":2,"16228":4,"16229":2,"16230":1,"16231":2,"16232":2,"16233":3,"16234":4,"16235":3,"16236":1,"16237":2,"16238":4,"16239":1,"16240":3,"16241":3,"16242":4,"16243":3,"16244":4,"16245":4,"16246":3,"16247":3,"16248":3,"16249":1,"16250":3,"16251":4,"16252":3,"16253":2,"16254":2,"16255":3,"16256":5,"16257":2,"16258":3,"16259":3,"16260":4,"16261":4,"16262":3,"16263":3,"16264":4,"16265":2,"16266":3,"16267":1,"16268":3,"16269":3,"16270":5,"16271":4,"16272":3,"16273":3,"16274":4,"16275":2,"16276":2,"16277":2,"16278":5,"16279":2,"16280":4,"16281":5,"16282":2,"16283":2,"16284":3,"16285":2,"16286":1,"16287":3,"16288":2,"16289":3,"16290":3,"16291":2,"16292":1,"16293":3,"16294":3,"16295":4,"16296":1,"16297":2,"16298":4,"16299":1,"16300":3,"16301":3,"16302":1,"16303":2,"16304":2,"16305":3,"16306":4,"16307":3,"16308":3,"16309":5,"16310":2,"16311":1,"16312":2,"16313":3,"16314":2,"16315":5,"16316":1,"16317":3,"16318":4,"16319":2,"16320":4,"16321":4,"16322":3,"16323":4,"16324":4,"16325":2,"16326":4,"16327":2,"16328":2,"16329":2,"16330":5,"16331":4,"16332":4,"16333":3,"16334":4,"16335":1,"16336":4,"16337":3,"16338":4,"16339":3,"16340":4,"16341":2,"16342":4,"16343":3,"16344":5,"16345":4,"16346":3,"16347":4,"16348":3,"16349":2,"16350":4,"16351":2,"16352":3,"16353":2,"16354":2,"16355":1,"16356":3,"16357":2,"16358":4,"16359":4,"16360":3,"16361":4,"16362":4,"16363":3,"16364":4,"16365":3,"16366":3,"16367":5,"16368":4,"16369":5,"16370":2,"16371":3,"16372":3,"16373":3,"16374":2,"16375":4,"16376":3,"16377":5,"16378":2,"16379":4,"16380":2,"16381":4,"16382":5,"16383":3,"16384":4,"16385":3,"16386":3,"16387":4,"16388":3,"16389":3,"16390":3,"16391":3,"16392":1,"16393":3,"16394":1,"16395":4,"16396":2,"16397":2,"16398":4,"16399":3,"16400":2,"16401":3,"16402":1,"16403":4,"16404":3,"16405":2,"16406":3,"16407":3,"16408":4,"16409":3,"16410":2,"16411":2,"16412":3,"16413":3,"16414":5,"16415":3,"16416":4,"16417":4,"16418":2,"16419":4,"16420":2,"16421":3,"16422":3,"16423":3,"16424":3,"16425":4,"16426":1,"16427":2,"16428":4,"16429":3,"16430":3,"16431":4,"16432":1,"16433":3,"16434":4,"16435":4,"16436":3,"16437":2,"16438":3,"16439":3,"16440":4,"16441":4,"16442":1,"16443":1,"16444":4,"16445":2,"16446":3,"16447":4,"16448":1,"16449":5,"16450":4,"16451":1,"16452":5,"16453":3,"16454":3,"16455":5,"16456":3,"16457":5,"16458":3,"16459":2,"16460":3,"16461":3,"16462":4,"16463":3,"16464":3,"16465":4,"16466":5,"16467":1,"16468":4,"16469":5,"16470":3,"16471":3,"16472":3,"16473":3,"16474":1,"16475":5,"16476":3,"16477":1,"16478":3,"16479":3,"16480":2,"16481":2,"16482":3,"16483":4,"16484":3,"16485":5,"16486":4,"16487":2,"16488":2,"16489":4,"16490":2,"16491":3,"16492":4,"16493":3,"16494":2,"16495":4,"16496":3,"16497":4,"16498":4,"16499":5,"16500":3,"16501":3,"16502":2,"16503":3,"16504":2,"16505":2,"16506":4,"16507":4,"16508":5,"16509":4,"16510":3,"16511":3,"16512":4,"16513":2,"16514":1,"16515":3,"16516":4,"16517":4,"16518":5,"16519":3,"16520":1,"16521":3,"16522":4,"16523":4,"16524":3,"16525":2,"16526":1,"16527":5,"16528":4,"16529":3,"16530":2,"16531":3,"16532":1,"16533":4,"16534":3,"16535":4,"16536":3,"16537":4,"16538":2,"16539":3,"16540":3,"16541":5,"16542":4,"16543":4,"16544":3,"16545":2,"16546":3,"16547":4,"16548":3,"16549":4,"16550":1,"16551":4,"16552":5,"16553":3,"16554":3,"16555":1,"16556":4,"16557":3,"16558":3,"16559":3,"16560":2,"16561":3,"16562":1,"16563":3,"16564":5,"16565":5,"16566":1,"16567":2,"16568":4,"16569":2,"16570":4,"16571":3,"16572":3,"16573":5,"16574":3,"16575":5,"16576":3,"16577":5,"16578":2,"16579":2,"16580":1,"16581":3,"16582":2,"16583":5,"16584":4,"16585":3,"16586":3,"16587":3,"16588":1,"16589":3,"16590":3,"16591":5,"16592":4,"16593":2,"16594":3,"16595":3,"16596":4,"16597":3,"16598":5,"16599":4,"16600":3,"16601":2,"16602":3,"16603":5,"16604":3,"16605":4,"16606":2,"16607":2,"16608":1,"16609":2,"16610":2,"16611":3,"16612":2,"16613":4,"16614":3,"16615":4,"16616":5,"16617":2,"16618":3,"16619":5,"16620":2,"16621":3,"16622":2,"16623":1,"16624":2,"16625":2,"16626":4,"16627":2,"16628":3,"16629":1,"16630":2,"16631":2,"16632":2,"16633":4,"16634":3,"16635":2,"16636":3,"16637":3,"16638":1,"16639":1,"16640":3,"16641":3,"16642":4,"16643":4,"16644":2,"16645":1,"16646":2,"16647":2,"16648":5,"16649":2,"16650":5,"16651":4,"16652":2,"16653":3,"16654":4,"16655":2,"16656":3,"16657":2,"16658":4,"16659":2,"16660":3,"16661":2,"16662":3,"16663":2,"16664":3,"16665":4,"16666":4,"16667":3,"16668":3,"16669":4,"16670":3,"16671":1,"16672":3,"16673":1,"16674":2,"16675":3,"16676":4,"16677":3,"16678":2,"16679":3,"16680":3,"16681":3,"16682":2,"16683":4,"16684":5,"16685":2,"16686":4,"16687":3,"16688":2,"16689":3,"16690":3,"16691":3,"16692":3,"16693":4,"16694":3,"16695":3,"16696":3,"16697":3,"16698":2,"16699":2,"16700":3,"16701":1,"16702":3,"16703":3,"16704":3,"16705":3,"16706":3,"16707":2,"16708":4,"16709":4,"16710":3,"16711":4,"16712":5,"16713":3,"16714":4,"16715":3,"16716":4,"16717":4,"16718":2,"16719":3,"16720":3,"16721":3,"16722":3,"16723":2,"16724":1,"16725":3,"16726":4,"16727":3,"16728":3,"16729":4,"16730":3,"16731":2,"16732":4,"16733":3,"16734":2,"16735":3,"16736":4,"16737":3,"16738":3,"16739":3,"16740":3,"16741":4,"16742":4,"16743":5,"16744":3,"16745":3,"16746":4,"16747":2,"16748":3,"16749":3,"16750":2,"16751":4,"16752":2,"16753":4,"16754":2,"16755":3,"16756":3,"16757":1,"16758":2,"16759":3,"16760":2,"16761":3,"16762":5,"16763":4,"16764":3,"16765":1,"16766":3,"16767":1,"16768":3,"16769":1,"16770":3,"16771":3,"16772":3,"16773":4,"16774":3,"16775":3,"16776":3,"16777":2,"16778":3,"16779":4,"16780":3,"16781":3,"16782":4,"16783":3,"16784":3,"16785":4,"16786":4,"16787":4,"16788":3,"16789":3,"16790":3,"16791":3,"16792":3,"16793":1,"16794":4,"16795":3,"16796":2,"16797":2,"16798":3,"16799":4,"16800":4,"16801":2,"16802":5,"16803":2,"16804":5,"16805":2,"16806":4,"16807":4,"16808":4,"16809":5,"16810":4,"16811":3,"16812":1,"16813":1,"16814":4,"16815":4,"16816":5,"16817":3,"16818":4,"16819":2,"16820":2,"16821":3,"16822":4,"16823":2,"16824":3,"16825":4,"16826":3,"16827":3,"16828":3,"16829":4,"16830":2,"16831":3,"16832":4,"16833":4,"16834":5,"16835":1,"16836":3,"16837":3,"16838":3,"16839":3,"16840":1,"16841":3,"16842":3,"16843":2,"16844":4,"16845":3,"16846":4,"16847":5,"16848":3,"16849":4,"16850":2,"16851":3,"16852":3,"16853":1,"16854":1,"16855":2,"16856":4,"16857":3,"16858":4,"16859":2,"16860":3,"16861":2,"16862":5,"16863":2,"16864":3,"16865":3,"16866":2,"16867":3,"16868":3,"16869":2,"16870":5,"16871":3,"16872":4,"16873":5,"16874":4,"16875":3,"16876":3,"16877":3,"16878":4,"16879":2,"16880":4,"16881":2,"16882":5,"16883":3,"16884":5,"16885":2,"16886":5,"16887":4,"16888":2,"16889":4,"16890":2,"16891":5,"16892":2,"16893":2,"16894":1,"16895":1,"16896":3,"16897":3,"16898":3,"16899":4,"16900":3,"16901":4,"16902":1,"16903":4,"16904":4,"16905":2,"16906":3,"16907":3,"16908":3,"16909":3,"16910":3,"16911":1,"16912":4,"16913":3,"16914":3,"16915":2,"16916":2,"16917":3,"16918":2,"16919":4,"16920":3,"16921":3,"16922":3,"16923":1,"16924":1,"16925":1,"16926":2,"16927":4,"16928":3,"16929":3,"16930":1,"16931":3,"16932":3,"16933":4,"16934":3,"16935":4,"16936":3,"16937":3,"16938":1,"16939":5,"16940":4,"16941":3,"16942":4,"16943":3,"16944":2,"16945":5,"16946":3,"16947":2,"16948":4,"16949":3,"16950":5,"16951":4,"16952":2,"16953":4,"16954":3,"16955":3,"16956":2,"16957":3,"16958":3,"16959":4,"16960":4,"16961":4,"16962":2,"16963":2,"16964":3,"16965":3,"16966":3,"16967":3,"16968":1,"16969":4,"16970":3,"16971":2,"16972":2,"16973":1,"16974":4,"16975":4,"16976":3,"16977":2,"16978":3,"16979":3,"16980":4,"16981":3,"16982":3,"16983":4,"16984":4,"16985":5,"16986":2,"16987":2,"16988":2,"16989":1,"16990":2,"16991":5,"16992":3,"16993":3,"16994":3,"16995":2,"16996":3,"16997":3,"16998":1,"16999":2,"17000":3,"17001":3,"17002":3,"17003":5,"17004":3,"17005":4,"17006":4,"17007":3,"17008":2,"17009":2,"17010":4,"17011":1,"17012":2,"17013":3,"17014":2,"17015":3,"17016":1,"17017":4,"17018":5,"17019":1,"17020":4,"17021":4,"17022":4,"17023":2,"17024":3,"17025":4,"17026":3,"17027":3,"17028":3,"17029":2,"17030":5,"17031":2,"17032":4,"17033":2,"17034":5,"17035":3,"17036":4,"17037":2,"17038":4,"17039":3,"17040":3,"17041":2,"17042":3,"17043":4,"17044":4,"17045":3,"17046":1,"17047":4,"17048":4,"17049":4,"17050":4,"17051":3,"17052":1,"17053":2,"17054":2,"17055":4,"17056":2,"17057":2,"17058":4,"17059":1,"17060":4,"17061":3,"17062":2,"17063":3,"17064":5,"17065":3,"17066":2,"17067":5,"17068":3,"17069":3,"17070":3,"17071":4,"17072":3,"17073":4,"17074":4,"17075":3,"17076":3,"17077":4,"17078":4,"17079":4,"17080":3,"17081":3,"17082":2,"17083":3,"17084":1,"17085":2,"17086":1,"17087":4,"17088":3,"17089":5,"17090":2,"17091":4,"17092":2,"17093":5,"17094":2,"17095":4,"17096":4,"17097":5,"17098":5,"17099":1,"17100":2,"17101":5,"17102":4,"17103":5,"17104":2,"17105":3,"17106":5,"17107":2,"17108":3,"17109":2,"17110":2,"17111":1,"17112":3,"17113":3,"17114":4,"17115":4,"17116":2,"17117":3,"17118":2,"17119":4,"17120":5,"17121":2,"17122":3,"17123":2,"17124":3,"17125":3,"17126":2,"17127":2,"17128":2,"17129":4,"17130":4,"17131":2,"17132":3,"17133":3,"17134":2,"17135":2,"17136":4,"17137":4,"17138":2,"17139":4,"17140":3,"17141":4,"17142":3,"17143":2,"17144":2,"17145":4,"17146":2,"17147":3,"17148":2,"17149":4,"17150":4,"17151":5,"17152":3,"17153":2,"17154":2,"17155":4,"17156":3,"17157":2,"17158":4,"17159":2,"17160":2,"17161":3,"17162":3,"17163":1,"17164":3,"17165":4,"17166":1,"17167":1,"17168":3,"17169":4,"17170":3,"17171":3,"17172":4,"17173":2,"17174":3,"17175":4,"17176":5,"17177":3,"17178":3,"17179":3,"17180":3,"17181":2,"17182":4,"17183":4,"17184":3,"17185":2,"17186":3,"17187":4,"17188":4,"17189":2,"17190":5,"17191":4,"17192":2,"17193":4,"17194":4,"17195":4,"17196":4,"17197":3,"17198":5,"17199":3,"17200":3,"17201":1,"17202":3,"17203":5,"17204":3,"17205":1,"17206":4,"17207":3,"17208":2,"17209":3,"17210":3,"17211":1,"17212":3,"17213":3,"17214":4,"17215":4,"17216":3,"17217":5,"17218":4,"17219":3,"17220":3,"17221":2,"17222":1,"17223":4,"17224":1,"17225":3,"17226":1,"17227":3,"17228":3,"17229":3,"17230":4,"17231":2,"17232":3,"17233":5,"17234":3,"17235":4,"17236":4,"17237":3,"17238":2,"17239":4,"17240":3,"17241":5,"17242":3,"17243":2,"17244":5,"17245":5,"17246":4,"17247":3,"17248":1,"17249":3,"17250":4,"17251":4,"17252":3,"17253":3,"17254":1,"17255":2,"17256":3,"17257":2,"17258":2,"17259":4,"17260":3,"17261":5,"17262":3,"17263":4,"17264":2,"17265":3,"17266":5,"17267":4,"17268":3,"17269":4,"17270":2,"17271":3,"17272":2,"17273":3,"17274":3,"17275":4,"17276":2,"17277":2,"17278":3,"17279":4,"17280":2,"17281":3,"17282":4,"17283":3,"17284":3,"17285":3,"17286":5,"17287":3,"17288":4,"17289":4,"17290":3,"17291":3,"17292":3,"17293":1,"17294":4,"17295":4,"17296":3,"17297":3,"17298":2,"17299":2,"17300":2,"17301":2,"17302":4,"17303":4,"17304":5,"17305":5,"17306":4,"17307":2,"17308":3,"17309":3,"17310":1,"17311":4,"17312":3,"17313":2,"17314":2,"17315":3,"17316":5,"17317":3,"17318":3,"17319":2,"17320":3,"17321":2,"17322":2,"17323":4,"17324":4,"17325":3,"17326":2,"17327":4,"17328":3,"17329":3,"17330":3,"17331":3,"17332":5,"17333":2,"17334":2,"17335":2,"17336":3,"17337":4,"17338":2,"17339":3,"17340":4,"17341":3,"17342":3,"17343":3,"17344":2,"17345":2,"17346":5,"17347":3,"17348":4,"17349":3,"17350":4,"17351":4,"17352":2,"17353":1,"17354":4,"17355":5,"17356":3,"17357":4,"17358":1,"17359":2,"17360":3,"17361":3,"17362":5,"17363":3,"17364":2,"17365":2,"17366":5,"17367":4,"17368":5,"17369":3,"17370":3,"17371":3,"17372":2,"17373":4,"17374":3,"17375":3,"17376":3,"17377":2,"17378":5,"17379":3,"17380":3,"17381":1,"17382":5,"17383":2,"17384":3,"17385":3,"17386":4,"17387":1,"17388":5,"17389":2,"17390":1,"17391":2,"17392":2,"17393":3,"17394":4,"17395":3,"17396":4,"17397":5,"17398":3,"17399":2,"17400":3,"17401":3,"17402":3,"17403":5,"17404":3,"17405":3,"17406":3,"17407":5,"17408":1,"17409":4,"17410":3,"17411":4,"17412":4,"17413":2,"17414":3,"17415":1,"17416":4,"17417":4,"17418":1,"17419":3,"17420":2,"17421":4,"17422":4,"17423":4,"17424":3,"17425":2,"17426":1,"17427":5,"17428":4,"17429":4,"17430":3,"17431":2,"17432":2,"17433":1,"17434":3,"17435":3,"17436":2,"17437":3,"17438":4,"17439":5,"17440":4,"17441":3,"17442":5,"17443":2,"17444":1,"17445":4,"17446":2,"17447":3,"17448":3,"17449":5,"17450":3,"17451":4,"17452":3,"17453":4,"17454":4,"17455":4,"17456":2,"17457":2,"17458":3,"17459":2,"17460":3,"17461":3,"17462":3,"17463":3,"17464":2,"17465":3,"17466":4,"17467":3,"17468":2,"17469":2,"17470":3,"17471":2,"17472":3,"17473":4,"17474":3,"17475":2,"17476":3,"17477":4,"17478":3,"17479":3,"17480":3,"17481":3,"17482":4,"17483":1,"17484":4,"17485":3,"17486":5,"17487":3,"17488":5,"17489":3,"17490":3,"17491":3,"17492":2,"17493":3,"17494":2,"17495":3,"17496":5,"17497":4,"17498":3,"17499":3,"17500":3,"17501":4,"17502":1,"17503":2,"17504":2,"17505":4,"17506":3,"17507":3,"17508":2,"17509":4,"17510":2,"17511":1,"17512":2,"17513":4,"17514":4,"17515":2,"17516":3,"17517":4,"17518":3,"17519":5,"17520":1,"17521":3,"17522":3,"17523":5,"17524":4,"17525":1,"17526":4,"17527":4,"17528":5,"17529":4,"17530":4,"17531":3,"17532":3,"17533":3,"17534":1,"17535":3,"17536":2,"17537":5,"17538":2,"17539":3,"17540":3,"17541":5,"17542":4,"17543":3,"17544":2,"17545":1,"17546":2,"17547":4,"17548":3,"17549":4,"17550":3,"17551":5,"17552":4,"17553":5,"17554":2,"17555":2,"17556":1,"17557":2,"17558":4,"17559":4,"17560":2,"17561":1,"17562":2,"17563":3,"17564":4,"17565":2,"17566":1,"17567":2,"17568":1,"17569":3,"17570":2,"17571":4,"17572":3,"17573":3,"17574":3,"17575":4,"17576":2,"17577":4,"17578":1,"17579":4,"17580":5,"17581":3,"17582":3,"17583":3,"17584":2,"17585":5,"17586":3,"17587":4,"17588":3,"17589":3,"17590":1,"17591":2,"17592":3,"17593":3,"17594":4,"17595":1,"17596":2,"17597":4,"17598":2,"17599":4,"17600":1,"17601":3,"17602":3,"17603":3,"17604":3,"17605":3,"17606":3,"17607":3,"17608":3,"17609":4,"17610":2,"17611":1,"17612":2,"17613":2,"17614":3,"17615":2,"17616":4,"17617":2,"17618":1,"17619":3,"17620":2,"17621":1,"17622":3,"17623":4,"17624":4,"17625":3,"17626":3,"17627":3,"17628":3,"17629":4,"17630":3,"17631":3,"17632":2,"17633":3,"17634":2,"17635":3,"17636":3,"17637":3,"17638":2,"17639":4,"17640":2,"17641":2,"17642":4,"17643":4,"17644":4,"17645":5,"17646":3,"17647":3,"17648":5,"17649":3,"17650":4,"17651":1,"17652":1,"17653":5,"17654":5,"17655":1,"17656":4,"17657":3,"17658":3,"17659":3,"17660":2,"17661":3,"17662":4,"17663":2,"17664":3,"17665":1,"17666":4,"17667":3,"17668":3,"17669":2,"17670":3,"17671":2,"17672":4,"17673":3,"17674":4,"17675":1,"17676":3,"17677":2,"17678":4,"17679":2,"17680":4,"17681":3,"17682":4,"17683":5,"17684":2,"17685":3,"17686":4,"17687":1,"17688":2,"17689":4,"17690":2,"17691":2,"17692":4,"17693":1,"17694":3,"17695":3,"17696":5,"17697":2,"17698":4,"17699":5,"17700":3,"17701":2,"17702":3,"17703":4,"17704":4,"17705":3,"17706":4,"17707":4,"17708":4,"17709":3,"17710":1,"17711":2,"17712":4,"17713":3,"17714":3,"17715":1,"17716":2,"17717":2,"17718":4,"17719":2,"17720":2,"17721":2,"17722":2,"17723":5,"17724":3,"17725":2,"17726":2,"17727":3,"17728":5,"17729":2,"17730":4,"17731":2,"17732":3,"17733":2,"17734":5,"17735":1,"17736":4,"17737":3,"17738":4,"17739":4,"17740":1,"17741":3,"17742":3,"17743":2,"17744":4,"17745":2,"17746":4,"17747":3,"17748":2,"17749":3,"17750":3,"17751":3,"17752":5,"17753":3,"17754":4,"17755":4,"17756":3,"17757":3,"17758":3,"17759":3,"17760":1,"17761":1,"17762":4,"17763":3,"17764":5,"17765":4,"17766":4,"17767":4,"17768":3,"17769":1,"17770":3,"17771":4,"17772":3,"17773":1,"17774":3,"17775":1,"17776":3,"17777":2,"17778":3,"17779":2,"17780":2,"17781":2,"17782":3,"17783":3,"17784":2,"17785":2,"17786":5,"17787":3,"17788":4,"17789":2,"17790":1,"17791":3,"17792":4,"17793":1,"17794":3,"17795":5,"17796":4,"17797":4,"17798":5,"17799":3,"17800":2,"17801":3,"17802":5,"17803":3,"17804":2,"17805":3,"17806":4,"17807":5,"17808":4,"17809":2,"17810":2,"17811":4,"17812":2,"17813":3,"17814":2,"17815":3,"17816":3,"17817":4,"17818":5,"17819":2,"17820":1,"17821":3,"17822":3,"17823":3,"17824":3,"17825":4,"17826":3,"17827":4,"17828":1,"17829":3,"17830":1,"17831":3,"17832":4,"17833":5,"17834":3,"17835":5,"17836":3,"17837":4,"17838":3,"17839":5,"17840":2,"17841":3,"17842":3,"17843":4,"17844":4,"17845":5,"17846":4,"17847":3,"17848":3,"17849":3,"17850":4,"17851":2,"17852":3,"17853":3,"17854":2,"17855":4,"17856":2,"17857":5,"17858":4,"17859":3,"17860":3,"17861":3,"17862":2,"17863":1,"17864":3,"17865":5,"17866":3,"17867":1,"17868":2,"17869":3,"17870":2,"17871":4,"17872":3,"17873":2,"17874":3,"17875":3,"17876":3,"17877":4,"17878":3,"17879":3,"17880":3,"17881":4,"17882":5,"17883":4,"17884":2,"17885":4,"17886":4,"17887":2,"17888":2,"17889":4,"17890":4,"17891":5,"17892":4,"17893":2,"17894":1,"17895":2,"17896":3,"17897":2,"17898":3,"17899":2,"17900":2,"17901":3,"17902":4,"17903":1,"17904":2,"17905":4,"17906":2,"17907":4,"17908":2,"17909":2,"17910":2,"17911":4,"17912":4,"17913":2,"17914":3,"17915":4,"17916":4,"17917":2,"17918":3,"17919":3,"17920":2,"17921":1,"17922":3,"17923":2,"17924":4,"17925":4,"17926":5,"17927":3,"17928":3,"17929":4,"17930":4,"17931":2,"17932":2,"17933":1,"17934":4,"17935":3,"17936":1,"17937":2,"17938":4,"17939":4,"17940":4,"17941":5,"17942":2,"17943":3,"17944":2,"17945":3,"17946":4,"17947":2,"17948":2,"17949":3,"17950":3,"17951":3,"17952":4,"17953":3,"17954":2,"17955":5,"17956":3,"17957":2,"17958":2,"17959":3,"17960":4,"17961":4,"17962":1,"17963":5,"17964":3,"17965":3,"17966":1,"17967":4,"17968":3,"17969":1,"17970":4,"17971":3,"17972":4,"17973":4,"17974":2,"17975":3,"17976":5,"17977":3,"17978":3,"17979":3,"17980":5,"17981":2,"17982":1,"17983":3,"17984":3,"17985":2,"17986":3,"17987":3,"17988":2,"17989":3,"17990":5,"17991":3,"17992":1,"17993":3,"17994":3,"17995":2,"17996":3,"17997":4,"17998":2,"17999":1,"18000":4,"18001":3,"18002":3,"18003":5,"18004":3,"18005":2,"18006":2,"18007":3,"18008":5,"18009":2,"18010":3,"18011":2,"18012":2,"18013":4,"18014":3,"18015":3,"18016":3,"18017":2,"18018":2,"18019":2,"18020":2,"18021":3,"18022":5,"18023":3,"18024":4,"18025":2,"18026":3,"18027":2,"18028":3,"18029":4,"18030":2,"18031":3,"18032":4,"18033":4,"18034":3,"18035":4,"18036":5,"18037":3,"18038":3,"18039":3,"18040":3,"18041":4,"18042":3,"18043":3,"18044":4,"18045":3,"18046":3,"18047":2,"18048":2,"18049":2,"18050":2,"18051":4,"18052":3,"18053":4,"18054":3,"18055":4,"18056":3,"18057":3,"18058":4,"18059":4,"18060":3,"18061":3,"18062":3,"18063":2,"18064":4,"18065":2,"18066":3,"18067":1,"18068":4,"18069":5,"18070":2,"18071":3,"18072":3,"18073":4,"18074":4,"18075":3,"18076":4,"18077":4,"18078":3,"18079":3,"18080":3,"18081":4,"18082":3,"18083":2,"18084":3,"18085":2,"18086":2,"18087":2,"18088":3,"18089":3,"18090":4,"18091":3,"18092":1,"18093":5,"18094":4,"18095":1,"18096":1,"18097":1,"18098":4,"18099":2,"18100":3,"18101":1,"18102":4,"18103":2,"18104":2,"18105":4,"18106":4,"18107":4,"18108":5,"18109":1,"18110":3,"18111":4,"18112":3,"18113":2,"18114":3,"18115":4,"18116":1,"18117":4,"18118":3,"18119":3,"18120":3,"18121":3,"18122":3,"18123":2,"18124":2,"18125":2,"18126":3,"18127":1,"18128":4,"18129":3,"18130":2,"18131":2,"18132":5,"18133":4,"18134":5,"18135":4,"18136":1,"18137":4,"18138":4,"18139":2,"18140":5,"18141":4,"18142":4,"18143":3,"18144":4,"18145":2,"18146":3,"18147":4,"18148":4,"18149":3,"18150":2,"18151":3,"18152":3,"18153":3,"18154":2,"18155":2,"18156":4,"18157":4,"18158":3,"18159":4,"18160":3,"18161":3,"18162":3,"18163":2,"18164":4,"18165":3,"18166":1,"18167":1,"18168":2,"18169":3,"18170":3,"18171":4,"18172":4,"18173":4,"18174":4,"18175":2,"18176":2,"18177":3,"18178":4,"18179":4,"18180":4,"18181":2,"18182":3,"18183":5,"18184":4,"18185":5,"18186":2,"18187":4,"18188":3,"18189":5,"18190":3,"18191":2,"18192":4,"18193":3,"18194":1,"18195":5,"18196":1,"18197":1,"18198":2,"18199":3,"18200":1,"18201":3,"18202":4,"18203":3,"18204":2,"18205":1,"18206":1,"18207":1,"18208":2,"18209":5,"18210":4,"18211":1,"18212":1,"18213":4,"18214":4,"18215":3,"18216":3,"18217":5,"18218":3,"18219":2,"18220":2,"18221":2,"18222":5,"18223":1,"18224":2,"18225":4,"18226":3,"18227":2,"18228":3,"18229":4,"18230":3,"18231":2,"18232":4,"18233":2,"18234":3,"18235":4,"18236":2,"18237":4,"18238":4,"18239":2,"18240":1,"18241":3,"18242":4,"18243":1,"18244":2,"18245":3,"18246":4,"18247":3,"18248":2,"18249":4,"18250":4,"18251":2,"18252":5,"18253":1,"18254":5,"18255":3,"18256":3,"18257":1,"18258":3,"18259":2,"18260":4,"18261":3,"18262":3,"18263":1,"18264":3,"18265":3,"18266":1,"18267":3,"18268":2,"18269":4,"18270":3,"18271":2,"18272":4,"18273":3,"18274":3,"18275":2,"18276":4,"18277":4,"18278":4,"18279":4,"18280":2,"18281":3,"18282":4,"18283":1,"18284":3,"18285":4,"18286":1,"18287":3,"18288":4,"18289":2,"18290":3,"18291":3,"18292":4,"18293":2,"18294":3,"18295":2,"18296":3,"18297":1,"18298":3,"18299":2,"18300":5,"18301":3,"18302":4,"18303":3,"18304":3,"18305":3,"18306":3,"18307":1,"18308":3,"18309":3,"18310":2,"18311":3,"18312":2,"18313":2,"18314":2,"18315":1,"18316":3,"18317":3,"18318":3,"18319":3,"18320":2,"18321":3,"18322":1,"18323":4,"18324":3,"18325":3,"18326":3,"18327":2,"18328":3,"18329":3,"18330":3,"18331":4,"18332":4,"18333":2,"18334":1,"18335":3,"18336":2,"18337":3,"18338":3,"18339":4,"18340":4,"18341":3,"18342":1,"18343":4,"18344":4,"18345":3,"18346":3,"18347":3,"18348":2,"18349":4,"18350":4,"18351":5,"18352":3,"18353":3,"18354":2,"18355":2,"18356":3,"18357":3,"18358":4,"18359":3,"18360":4,"18361":3,"18362":3,"18363":2,"18364":1,"18365":2,"18366":3,"18367":3,"18368":4,"18369":4,"18370":3,"18371":4,"18372":4,"18373":4,"18374":2,"18375":3,"18376":2,"18377":2,"18378":3,"18379":2,"18380":4,"18381":2,"18382":5,"18383":4,"18384":2,"18385":1,"18386":4,"18387":1,"18388":2,"18389":3,"18390":4,"18391":4,"18392":2,"18393":2,"18394":2,"18395":2,"18396":3,"18397":4,"18398":3,"18399":3,"18400":5,"18401":3,"18402":3,"18403":1,"18404":4,"18405":2,"18406":4,"18407":2,"18408":2,"18409":2,"18410":4,"18411":3,"18412":2,"18413":4,"18414":4,"18415":4,"18416":5,"18417":2,"18418":5,"18419":2,"18420":3,"18421":5,"18422":4,"18423":3,"18424":3,"18425":2,"18426":2,"18427":1,"18428":4,"18429":1,"18430":4,"18431":4,"18432":2,"18433":4,"18434":2,"18435":2,"18436":3,"18437":4,"18438":2,"18439":2,"18440":3,"18441":3,"18442":4,"18443":2,"18444":3,"18445":5,"18446":2,"18447":2,"18448":3,"18449":4,"18450":4,"18451":4,"18452":2,"18453":4,"18454":2,"18455":4,"18456":1,"18457":5,"18458":4,"18459":5,"18460":2,"18461":3,"18462":5,"18463":3,"18464":3,"18465":3,"18466":4,"18467":4,"18468":2,"18469":3,"18470":2,"18471":4,"18472":5,"18473":1,"18474":1,"18475":3,"18476":3,"18477":4,"18478":3,"18479":3,"18480":1,"18481":3,"18482":3,"18483":2,"18484":3,"18485":3,"18486":4,"18487":3,"18488":3,"18489":2,"18490":3,"18491":4,"18492":3,"18493":3,"18494":4,"18495":2,"18496":3,"18497":2,"18498":2,"18499":5,"18500":1,"18501":4,"18502":3,"18503":4,"18504":2,"18505":3,"18506":3,"18507":4,"18508":2,"18509":5,"18510":3,"18511":4,"18512":1,"18513":5,"18514":3,"18515":3,"18516":3,"18517":2,"18518":4,"18519":3,"18520":3,"18521":4,"18522":3,"18523":2,"18524":4,"18525":1,"18526":5,"18527":2,"18528":1,"18529":4,"18530":4,"18531":4,"18532":5,"18533":2,"18534":3,"18535":4,"18536":4,"18537":2,"18538":4,"18539":3,"18540":3,"18541":3,"18542":2,"18543":4,"18544":3,"18545":1,"18546":4,"18547":4,"18548":3,"18549":2,"18550":4,"18551":5,"18552":2,"18553":4,"18554":3,"18555":1,"18556":1,"18557":2,"18558":3,"18559":5,"18560":1,"18561":5,"18562":3,"18563":3,"18564":4,"18565":2,"18566":2,"18567":4,"18568":2,"18569":3,"18570":3,"18571":3,"18572":3,"18573":3,"18574":3,"18575":2,"18576":3,"18577":3,"18578":2,"18579":2,"18580":2,"18581":3,"18582":3,"18583":3,"18584":1,"18585":4,"18586":3,"18587":4,"18588":4,"18589":3,"18590":5,"18591":2,"18592":5,"18593":3,"18594":5,"18595":1,"18596":1,"18597":3,"18598":5,"18599":2,"18600":1,"18601":2,"18602":3,"18603":2,"18604":3,"18605":2,"18606":4,"18607":1,"18608":2,"18609":2,"18610":1,"18611":4,"18612":3,"18613":3,"18614":4,"18615":1,"18616":2,"18617":2,"18618":4,"18619":3,"18620":3,"18621":5,"18622":1,"18623":5,"18624":4,"18625":2,"18626":4,"18627":1,"18628":3,"18629":2,"18630":3,"18631":3,"18632":1,"18633":4,"18634":5,"18635":4,"18636":2,"18637":4,"18638":3,"18639":5,"18640":3,"18641":3,"18642":1,"18643":2,"18644":3,"18645":2,"18646":3,"18647":3,"18648":3,"18649":3,"18650":3,"18651":3,"18652":1,"18653":4,"18654":4,"18655":3,"18656":2,"18657":2,"18658":3,"18659":2,"18660":1,"18661":2,"18662":4,"18663":4,"18664":3,"18665":4,"18666":3,"18667":3,"18668":4,"18669":3,"18670":4,"18671":2,"18672":4,"18673":4,"18674":3,"18675":4,"18676":4,"18677":5,"18678":5,"18679":3,"18680":2,"18681":2,"18682":2,"18683":3,"18684":4,"18685":5,"18686":1,"18687":3,"18688":4,"18689":3,"18690":4,"18691":1,"18692":3,"18693":3,"18694":4,"18695":3,"18696":5,"18697":1,"18698":5,"18699":3,"18700":2,"18701":2,"18702":2,"18703":4,"18704":5,"18705":3,"18706":3,"18707":2,"18708":3,"18709":2,"18710":3,"18711":3,"18712":3,"18713":4,"18714":1,"18715":3,"18716":2,"18717":3,"18718":3,"18719":3,"18720":2,"18721":3,"18722":3,"18723":4,"18724":4,"18725":3,"18726":3,"18727":2,"18728":3,"18729":3,"18730":4,"18731":3,"18732":3,"18733":3,"18734":4,"18735":3,"18736":3,"18737":3,"18738":3,"18739":2,"18740":3,"18741":4,"18742":4,"18743":4,"18744":3,"18745":3,"18746":3,"18747":4,"18748":5,"18749":1,"18750":3,"18751":3,"18752":3,"18753":3,"18754":2,"18755":3,"18756":3,"18757":4,"18758":3,"18759":3,"18760":2,"18761":2,"18762":3,"18763":4,"18764":3,"18765":2,"18766":3,"18767":3,"18768":2,"18769":3,"18770":2,"18771":4,"18772":3,"18773":2,"18774":4,"18775":4,"18776":3,"18777":1,"18778":1,"18779":4,"18780":3,"18781":3,"18782":3,"18783":5,"18784":2,"18785":5,"18786":3,"18787":3,"18788":1,"18789":1,"18790":5,"18791":3,"18792":2,"18793":4,"18794":3,"18795":3,"18796":3,"18797":3,"18798":5,"18799":3,"18800":3,"18801":3,"18802":4,"18803":2,"18804":3,"18805":4,"18806":3,"18807":3,"18808":3,"18809":2,"18810":4,"18811":1,"18812":3,"18813":3,"18814":3,"18815":2,"18816":4,"18817":3,"18818":2,"18819":3,"18820":5,"18821":1,"18822":2,"18823":3,"18824":3,"18825":3,"18826":2,"18827":1,"18828":2,"18829":3,"18830":3,"18831":1,"18832":3,"18833":2,"18834":2,"18835":3,"18836":3,"18837":4,"18838":1,"18839":3,"18840":4,"18841":4,"18842":1,"18843":3,"18844":3,"18845":1,"18846":4,"18847":3,"18848":4,"18849":2,"18850":3,"18851":3,"18852":3,"18853":3,"18854":3,"18855":3,"18856":3,"18857":3,"18858":2,"18859":3,"18860":4,"18861":5,"18862":3,"18863":3,"18864":5,"18865":3,"18866":2,"18867":3,"18868":3,"18869":1,"18870":3,"18871":3,"18872":3,"18873":3,"18874":4,"18875":3,"18876":4,"18877":5,"18878":2,"18879":1,"18880":3,"18881":3,"18882":1,"18883":5,"18884":1,"18885":3,"18886":3,"18887":3,"18888":3,"18889":3,"18890":5,"18891":2,"18892":2,"18893":2,"18894":3,"18895":3,"18896":4,"18897":3,"18898":3,"18899":1,"18900":4,"18901":3,"18902":2,"18903":2,"18904":3,"18905":2,"18906":4,"18907":3,"18908":2,"18909":3,"18910":5,"18911":2,"18912":4,"18913":2,"18914":2,"18915":4,"18916":1,"18917":4,"18918":3,"18919":5,"18920":2,"18921":4,"18922":3,"18923":3,"18924":4,"18925":4,"18926":4,"18927":3,"18928":2,"18929":3,"18930":4,"18931":2,"18932":2,"18933":3,"18934":1,"18935":3,"18936":1,"18937":3,"18938":3,"18939":4,"18940":3,"18941":5,"18942":3,"18943":2,"18944":4,"18945":2,"18946":3,"18947":4,"18948":4,"18949":4,"18950":4,"18951":4,"18952":4,"18953":1,"18954":3,"18955":3,"18956":3,"18957":4,"18958":5,"18959":4,"18960":2,"18961":1,"18962":4,"18963":2,"18964":4,"18965":1,"18966":2,"18967":3,"18968":3,"18969":4,"18970":2,"18971":3,"18972":3,"18973":3,"18974":3,"18975":4,"18976":2,"18977":2,"18978":3,"18979":2,"18980":2,"18981":3,"18982":5,"18983":3,"18984":2,"18985":3,"18986":4,"18987":3,"18988":4,"18989":3,"18990":4,"18991":2,"18992":2,"18993":5,"18994":2,"18995":4,"18996":4,"18997":4,"18998":1,"18999":3,"19000":2,"19001":3,"19002":4,"19003":3,"19004":3,"19005":4,"19006":1,"19007":2,"19008":3,"19009":3,"19010":3,"19011":3,"19012":3,"19013":4,"19014":3,"19015":4,"19016":2,"19017":4,"19018":4,"19019":5,"19020":4,"19021":3,"19022":3,"19023":5,"19024":5,"19025":2,"19026":4,"19027":4,"19028":1,"19029":3,"19030":4,"19031":3,"19032":3,"19033":2,"19034":4,"19035":2,"19036":3,"19037":3,"19038":2,"19039":2,"19040":1,"19041":3,"19042":5,"19043":4,"19044":1,"19045":2,"19046":3,"19047":3,"19048":1,"19049":2,"19050":3,"19051":3,"19052":3,"19053":3,"19054":4,"19055":2,"19056":2,"19057":3,"19058":1,"19059":2,"19060":2,"19061":3,"19062":4,"19063":4,"19064":4,"19065":3,"19066":3,"19067":3,"19068":1,"19069":4,"19070":1,"19071":3,"19072":4,"19073":4,"19074":4,"19075":3,"19076":2,"19077":2,"19078":1,"19079":3,"19080":3,"19081":3,"19082":4,"19083":3,"19084":1,"19085":4,"19086":3,"19087":3,"19088":3,"19089":4,"19090":3,"19091":3,"19092":3,"19093":4,"19094":1,"19095":3,"19096":4,"19097":1,"19098":2,"19099":3,"19100":1,"19101":3,"19102":3,"19103":2,"19104":3,"19105":3,"19106":3,"19107":4,"19108":2,"19109":2,"19110":3,"19111":2,"19112":1,"19113":4,"19114":3,"19115":2,"19116":2,"19117":2,"19118":1,"19119":2,"19120":5,"19121":1,"19122":3,"19123":3,"19124":1,"19125":5,"19126":1,"19127":1,"19128":1,"19129":3,"19130":3,"19131":3,"19132":4,"19133":3,"19134":3,"19135":5,"19136":3,"19137":5,"19138":3,"19139":3,"19140":1,"19141":1,"19142":3,"19143":3,"19144":2,"19145":5,"19146":5,"19147":2,"19148":2,"19149":1,"19150":2,"19151":3,"19152":1,"19153":3,"19154":3,"19155":4,"19156":4,"19157":3,"19158":3,"19159":4,"19160":4,"19161":4,"19162":1,"19163":2,"19164":2,"19165":1,"19166":2,"19167":4,"19168":4,"19169":4,"19170":3,"19171":3,"19172":1,"19173":1,"19174":5,"19175":2,"19176":3,"19177":1,"19178":2,"19179":4,"19180":3,"19181":2,"19182":3,"19183":1,"19184":3,"19185":3,"19186":3,"19187":3,"19188":3,"19189":1,"19190":2,"19191":4,"19192":3,"19193":4,"19194":1,"19195":4,"19196":1,"19197":4,"19198":1,"19199":3,"19200":3,"19201":3,"19202":3,"19203":4,"19204":3,"19205":2,"19206":2,"19207":2,"19208":5,"19209":3,"19210":3,"19211":4,"19212":4,"19213":3,"19214":1,"19215":2,"19216":4,"19217":3,"19218":1,"19219":3,"19220":4,"19221":2,"19222":2,"19223":5,"19224":3,"19225":2,"19226":3,"19227":3,"19228":2,"19229":3,"19230":2,"19231":3,"19232":3,"19233":3,"19234":1,"19235":3,"19236":4,"19237":2,"19238":4,"19239":4,"19240":4,"19241":3,"19242":4,"19243":4,"19244":1,"19245":1,"19246":3,"19247":1,"19248":2,"19249":4,"19250":2,"19251":4,"19252":3,"19253":3,"19254":1,"19255":2,"19256":4,"19257":3,"19258":4,"19259":4,"19260":3,"19261":3,"19262":2,"19263":2,"19264":4,"19265":4,"19266":2,"19267":1,"19268":2,"19269":2,"19270":4,"19271":3,"19272":4,"19273":3,"19274":2,"19275":3,"19276":2,"19277":2,"19278":3,"19279":4,"19280":3,"19281":2,"19282":2,"19283":5,"19284":2,"19285":4,"19286":2,"19287":4,"19288":2,"19289":4,"19290":2,"19291":3,"19292":3,"19293":4,"19294":2,"19295":3,"19296":2,"19297":2,"19298":2,"19299":1,"19300":3,"19301":3,"19302":2,"19303":1,"19304":2,"19305":2,"19306":3,"19307":3,"19308":3,"19309":4,"19310":2,"19311":4,"19312":3,"19313":1,"19314":4,"19315":3,"19316":2,"19317":2,"19318":3,"19319":3,"19320":3,"19321":4,"19322":3,"19323":3,"19324":5,"19325":3,"19326":5,"19327":3,"19328":4,"19329":3,"19330":2,"19331":3,"19332":3,"19333":2,"19334":2,"19335":4,"19336":2,"19337":3,"19338":3,"19339":2,"19340":3,"19341":2,"19342":5,"19343":2,"19344":3,"19345":3,"19346":3,"19347":3,"19348":4,"19349":4,"19350":3,"19351":4,"19352":4,"19353":2,"19354":3,"19355":3,"19356":1,"19357":1,"19358":2,"19359":2,"19360":3,"19361":1,"19362":2,"19363":3,"19364":4,"19365":4,"19366":1,"19367":3,"19368":2,"19369":4,"19370":1,"19371":4,"19372":3,"19373":3,"19374":4,"19375":2,"19376":2,"19377":3,"19378":3,"19379":3,"19380":2,"19381":4,"19382":2,"19383":2,"19384":2,"19385":2,"19386":3,"19387":4,"19388":4,"19389":1,"19390":3,"19391":4,"19392":4,"19393":3,"19394":1,"19395":3,"19396":2,"19397":3,"19398":2,"19399":3,"19400":2,"19401":4,"19402":3,"19403":4,"19404":3,"19405":1,"19406":5,"19407":2,"19408":4,"19409":3,"19410":4,"19411":3,"19412":3,"19413":4,"19414":3,"19415":2,"19416":2,"19417":4,"19418":1,"19419":1,"19420":1,"19421":4,"19422":2,"19423":3,"19424":1,"19425":4,"19426":3,"19427":3,"19428":1,"19429":3,"19430":3,"19431":4,"19432":1,"19433":4,"19434":5,"19435":3,"19436":2,"19437":4,"19438":1,"19439":2,"19440":2,"19441":4,"19442":4,"19443":2,"19444":1,"19445":5,"19446":2,"19447":4,"19448":5,"19449":1,"19450":3,"19451":3,"19452":4,"19453":2,"19454":4,"19455":3,"19456":3,"19457":3,"19458":3,"19459":1,"19460":3,"19461":3,"19462":3,"19463":4,"19464":2,"19465":1,"19466":5,"19467":4,"19468":5,"19469":4,"19470":4,"19471":3,"19472":2,"19473":3,"19474":3,"19475":3,"19476":4,"19477":1,"19478":3,"19479":3,"19480":4,"19481":2,"19482":5,"19483":4,"19484":1,"19485":3,"19486":3,"19487":3,"19488":4,"19489":4,"19490":3,"19491":4,"19492":1,"19493":3,"19494":1,"19495":3,"19496":3,"19497":2,"19498":5,"19499":4,"19500":2,"19501":3,"19502":2,"19503":4,"19504":3,"19505":4,"19506":3,"19507":4,"19508":3,"19509":2,"19510":1,"19511":3,"19512":3,"19513":3,"19514":3,"19515":4,"19516":3,"19517":3,"19518":3,"19519":4,"19520":3,"19521":2,"19522":1,"19523":2,"19524":2,"19525":5,"19526":4,"19527":5,"19528":3,"19529":1,"19530":1,"19531":5,"19532":4,"19533":2,"19534":3,"19535":4,"19536":3,"19537":3,"19538":4,"19539":2,"19540":3,"19541":3,"19542":3,"19543":3,"19544":3,"19545":4,"19546":3,"19547":3,"19548":1,"19549":2,"19550":3,"19551":3,"19552":3,"19553":3,"19554":3,"19555":3,"19556":3,"19557":3,"19558":3,"19559":3,"19560":3,"19561":3,"19562":1,"19563":3,"19564":4,"19565":3,"19566":2,"19567":3,"19568":4,"19569":3,"19570":2,"19571":2,"19572":5,"19573":2,"19574":1,"19575":2,"19576":4,"19577":4,"19578":3,"19579":2,"19580":4,"19581":3,"19582":3,"19583":2,"19584":2,"19585":2,"19586":2,"19587":3,"19588":2,"19589":3,"19590":3,"19591":2,"19592":3,"19593":4,"19594":1,"19595":1,"19596":1,"19597":3,"19598":1,"19599":5,"19600":4,"19601":4,"19602":3,"19603":4,"19604":3,"19605":4,"19606":2,"19607":4,"19608":2,"19609":4,"19610":2,"19611":2,"19612":2,"19613":4,"19614":2,"19615":3,"19616":1,"19617":4,"19618":4,"19619":5,"19620":3,"19621":1,"19622":2,"19623":4,"19624":3,"19625":3,"19626":5,"19627":2,"19628":4,"19629":1,"19630":2,"19631":1,"19632":3,"19633":2,"19634":5,"19635":1,"19636":2,"19637":4,"19638":3,"19639":2,"19640":3,"19641":3,"19642":3,"19643":5,"19644":1,"19645":3,"19646":3,"19647":3,"19648":1,"19649":3,"19650":3,"19651":3,"19652":2,"19653":2,"19654":5,"19655":3,"19656":3,"19657":5,"19658":4,"19659":2,"19660":2,"19661":2,"19662":2,"19663":2,"19664":4,"19665":4,"19666":4,"19667":3,"19668":3,"19669":3,"19670":4,"19671":5,"19672":3,"19673":3,"19674":2,"19675":4,"19676":2,"19677":1,"19678":5,"19679":2,"19680":3,"19681":2,"19682":4,"19683":1,"19684":2,"19685":3,"19686":2,"19687":2,"19688":3,"19689":3,"19690":2,"19691":1,"19692":2,"19693":2,"19694":2,"19695":1,"19696":4,"19697":4,"19698":4,"19699":1,"19700":4,"19701":5,"19702":3,"19703":3,"19704":3,"19705":4,"19706":1,"19707":3,"19708":3,"19709":5,"19710":3,"19711":2,"19712":3,"19713":3,"19714":3,"19715":1,"19716":3,"19717":3,"19718":3,"19719":4,"19720":4,"19721":4,"19722":2,"19723":5,"19724":3,"19725":3,"19726":4,"19727":3,"19728":3,"19729":4,"19730":3,"19731":3,"19732":4,"19733":3,"19734":4,"19735":1,"19736":4,"19737":3,"19738":1,"19739":3,"19740":3,"19741":1,"19742":3,"19743":2,"19744":2,"19745":1,"19746":3,"19747":3,"19748":3,"19749":2,"19750":3,"19751":5,"19752":5,"19753":3,"19754":2,"19755":2,"19756":3,"19757":4,"19758":4,"19759":4,"19760":4,"19761":4,"19762":3,"19763":5,"19764":3,"19765":2,"19766":2,"19767":4,"19768":3,"19769":4,"19770":3,"19771":4,"19772":2,"19773":3,"19774":2,"19775":4,"19776":4,"19777":3,"19778":2,"19779":4,"19780":3,"19781":4,"19782":3,"19783":3,"19784":1,"19785":2,"19786":4,"19787":3,"19788":1,"19789":5,"19790":3,"19791":4,"19792":3,"19793":4,"19794":3,"19795":3,"19796":3,"19797":3,"19798":3,"19799":1,"19800":4,"19801":3,"19802":5,"19803":4,"19804":3,"19805":5,"19806":1,"19807":2,"19808":3,"19809":2,"19810":5,"19811":4,"19812":2,"19813":4,"19814":3,"19815":4,"19816":2,"19817":2,"19818":4,"19819":2,"19820":3,"19821":3,"19822":3,"19823":1,"19824":3,"19825":4,"19826":4,"19827":4,"19828":2,"19829":3,"19830":1,"19831":2,"19832":3,"19833":2,"19834":4,"19835":2,"19836":1,"19837":2,"19838":3,"19839":4,"19840":3,"19841":4,"19842":3,"19843":2,"19844":2,"19845":3,"19846":1,"19847":3,"19848":3,"19849":3,"19850":3,"19851":4,"19852":3,"19853":4,"19854":3,"19855":4,"19856":2,"19857":2,"19858":2,"19859":2,"19860":3,"19861":3,"19862":5,"19863":3,"19864":1,"19865":2,"19866":4,"19867":3,"19868":4,"19869":5,"19870":3,"19871":5,"19872":3,"19873":4,"19874":1,"19875":4,"19876":4,"19877":1,"19878":1,"19879":5,"19880":2,"19881":3,"19882":4,"19883":3,"19884":3,"19885":3,"19886":2,"19887":2,"19888":2,"19889":4,"19890":4,"19891":4,"19892":4,"19893":5,"19894":4,"19895":2,"19896":2,"19897":3,"19898":1,"19899":3,"19900":4,"19901":2,"19902":4,"19903":3,"19904":3,"19905":4,"19906":2,"19907":3,"19908":3,"19909":1,"19910":2,"19911":3,"19912":5,"19913":4,"19914":4,"19915":3,"19916":2,"19917":4,"19918":1,"19919":4,"19920":4,"19921":4,"19922":1,"19923":2,"19924":4,"19925":4,"19926":3,"19927":3,"19928":2,"19929":4,"19930":3,"19931":4,"19932":3,"19933":5,"19934":5,"19935":3,"19936":3,"19937":2,"19938":2,"19939":4,"19940":2,"19941":3,"19942":4,"19943":4,"19944":2,"19945":4,"19946":4,"19947":3,"19948":2,"19949":3,"19950":2,"19951":3,"19952":4,"19953":2,"19954":2,"19955":2,"19956":3,"19957":2,"19958":4,"19959":4,"19960":3,"19961":3,"19962":5,"19963":5,"19964":3,"19965":2,"19966":2,"19967":3,"19968":4,"19969":1,"19970":4,"19971":3,"19972":4,"19973":4,"19974":5,"19975":4,"19976":4,"19977":3,"19978":2,"19979":5,"19980":2,"19981":3,"19982":3,"19983":3,"19984":2,"19985":5,"19986":2,"19987":3,"19988":4,"19989":4,"19990":2,"19991":4,"19992":2,"19993":1,"19994":3,"19995":3,"19996":5,"19997":1,"19998":2,"19999":3,"20000":1,"20001":4,"20002":3,"20003":4,"20004":4,"20005":3,"20006":2,"20007":2,"20008":2,"20009":4,"20010":3,"20011":3,"20012":2,"20013":3,"20014":3,"20015":1,"20016":3,"20017":2,"20018":3,"20019":3,"20020":3,"20021":2,"20022":3,"20023":3,"20024":1,"20025":4,"20026":4,"20027":4,"20028":3,"20029":3,"20030":3,"20031":2,"20032":3,"20033":4,"20034":1,"20035":1,"20036":3,"20037":1,"20038":2,"20039":3,"20040":2,"20041":2,"20042":3,"20043":3,"20044":3,"20045":3,"20046":4,"20047":1,"20048":5,"20049":2,"20050":3,"20051":3,"20052":4,"20053":3,"20054":5,"20055":2,"20056":3,"20057":2,"20058":4,"20059":5,"20060":4,"20061":3,"20062":3,"20063":3,"20064":1,"20065":3,"20066":2,"20067":2,"20068":2,"20069":2,"20070":1,"20071":1,"20072":3,"20073":5,"20074":4,"20075":2,"20076":2,"20077":3,"20078":4,"20079":3,"20080":3,"20081":2,"20082":4,"20083":3,"20084":4,"20085":3,"20086":3,"20087":1,"20088":3,"20089":4,"20090":1,"20091":4,"20092":4,"20093":4,"20094":4,"20095":3,"20096":1,"20097":1,"20098":3,"20099":2,"20100":2,"20101":3,"20102":4,"20103":4,"20104":1,"20105":2,"20106":2,"20107":3,"20108":1,"20109":3,"20110":2,"20111":3,"20112":3,"20113":4,"20114":3,"20115":3,"20116":3,"20117":3,"20118":3,"20119":4,"20120":5,"20121":2,"20122":3,"20123":4,"20124":2,"20125":3,"20126":5,"20127":2,"20128":3,"20129":4,"20130":3,"20131":3,"20132":3,"20133":4,"20134":4,"20135":1,"20136":3,"20137":5,"20138":4,"20139":3,"20140":1,"20141":4,"20142":4,"20143":3,"20144":3,"20145":4,"20146":3,"20147":4,"20148":3,"20149":3,"20150":3,"20151":3,"20152":3,"20153":1,"20154":3,"20155":2,"20156":2,"20157":3,"20158":2,"20159":3,"20160":1,"20161":3,"20162":3,"20163":4,"20164":3,"20165":3,"20166":1,"20167":3,"20168":5,"20169":2,"20170":3,"20171":3,"20172":2,"20173":4,"20174":2,"20175":2,"20176":4,"20177":3,"20178":5,"20179":4,"20180":1,"20181":3,"20182":4,"20183":4,"20184":3,"20185":4,"20186":1,"20187":3,"20188":4,"20189":3,"20190":3,"20191":4,"20192":4,"20193":3,"20194":3,"20195":3,"20196":2,"20197":3,"20198":4,"20199":2,"20200":3,"20201":2,"20202":4,"20203":4,"20204":3,"20205":5,"20206":4,"20207":4,"20208":2,"20209":3,"20210":2,"20211":2,"20212":3,"20213":5,"20214":4,"20215":3,"20216":3,"20217":3,"20218":4,"20219":4,"20220":3,"20221":4,"20222":3,"20223":1,"20224":3,"20225":3,"20226":3,"20227":1,"20228":3,"20229":3,"20230":3,"20231":1,"20232":3,"20233":4,"20234":2,"20235":2,"20236":4,"20237":3,"20238":4,"20239":3,"20240":2,"20241":4,"20242":4,"20243":5,"20244":3,"20245":4,"20246":3,"20247":4,"20248":2,"20249":3,"20250":2,"20251":3,"20252":2,"20253":3,"20254":3,"20255":4,"20256":3,"20257":4,"20258":1,"20259":4,"20260":2,"20261":3,"20262":1,"20263":5,"20264":2,"20265":3,"20266":3,"20267":1,"20268":2,"20269":3,"20270":4,"20271":1,"20272":3,"20273":4,"20274":4,"20275":4,"20276":2,"20277":3,"20278":1,"20279":3,"20280":3,"20281":3,"20282":4,"20283":2,"20284":3,"20285":4,"20286":2,"20287":3,"20288":2,"20289":4,"20290":3,"20291":1,"20292":2,"20293":1,"20294":2,"20295":3,"20296":2,"20297":2,"20298":3,"20299":4,"20300":3,"20301":4,"20302":4,"20303":4,"20304":5,"20305":1,"20306":2,"20307":5,"20308":5,"20309":3,"20310":4,"20311":3,"20312":3,"20313":1,"20314":2,"20315":3,"20316":4,"20317":4,"20318":3,"20319":5,"20320":1,"20321":2,"20322":2,"20323":3,"20324":4,"20325":3,"20326":3,"20327":3,"20328":2,"20329":5,"20330":4,"20331":2,"20332":3,"20333":2,"20334":2,"20335":1,"20336":4,"20337":4,"20338":3,"20339":1,"20340":4,"20341":5,"20342":4,"20343":3,"20344":5,"20345":4,"20346":2,"20347":4,"20348":3,"20349":2,"20350":4,"20351":1,"20352":2,"20353":4,"20354":4,"20355":3,"20356":5,"20357":2,"20358":3,"20359":1,"20360":4,"20361":1,"20362":3,"20363":1,"20364":4,"20365":2,"20366":3,"20367":2,"20368":3,"20369":3,"20370":2,"20371":3,"20372":3,"20373":4,"20374":3,"20375":4,"20376":2,"20377":2,"20378":3,"20379":4,"20380":3,"20381":3,"20382":3,"20383":3,"20384":3,"20385":3,"20386":4,"20387":2,"20388":5,"20389":3,"20390":3,"20391":5,"20392":3,"20393":3,"20394":1,"20395":2,"20396":1,"20397":2,"20398":4,"20399":3,"20400":3,"20401":4,"20402":2,"20403":4,"20404":3,"20405":5,"20406":1,"20407":2,"20408":3,"20409":3,"20410":5,"20411":4,"20412":4,"20413":1,"20414":4,"20415":2,"20416":4,"20417":4,"20418":3,"20419":4,"20420":4,"20421":3,"20422":4,"20423":2,"20424":2,"20425":2,"20426":3,"20427":3,"20428":4,"20429":3,"20430":1,"20431":3,"20432":4,"20433":3,"20434":5,"20435":1,"20436":3,"20437":4,"20438":3,"20439":5,"20440":1,"20441":3,"20442":3,"20443":4,"20444":2,"20445":3,"20446":2,"20447":3,"20448":3,"20449":1,"20450":2,"20451":3,"20452":2,"20453":2,"20454":3,"20455":3,"20456":4,"20457":3,"20458":3,"20459":4,"20460":2,"20461":1,"20462":5,"20463":1,"20464":3,"20465":3,"20466":4,"20467":1,"20468":4,"20469":2,"20470":2,"20471":4,"20472":5,"20473":4,"20474":1,"20475":3,"20476":2,"20477":3,"20478":3,"20479":5,"20480":1,"20481":3,"20482":5,"20483":1,"20484":2,"20485":3,"20486":3,"20487":2,"20488":3,"20489":4,"20490":2,"20491":4,"20492":3,"20493":2,"20494":2,"20495":2,"20496":3,"20497":5,"20498":3,"20499":3,"20500":2,"20501":3,"20502":2,"20503":1,"20504":3,"20505":3,"20506":2,"20507":4,"20508":1,"20509":3,"20510":3,"20511":3,"20512":3,"20513":4,"20514":3,"20515":2,"20516":5,"20517":1,"20518":1,"20519":4,"20520":3,"20521":2,"20522":2,"20523":4,"20524":1,"20525":3,"20526":3,"20527":3,"20528":1,"20529":3,"20530":4,"20531":3,"20532":2,"20533":4,"20534":4,"20535":2,"20536":2,"20537":2,"20538":2,"20539":3,"20540":3,"20541":5,"20542":4,"20543":2,"20544":3,"20545":1,"20546":5,"20547":2,"20548":3,"20549":4,"20550":4,"20551":2,"20552":3,"20553":2,"20554":2,"20555":2,"20556":3,"20557":2,"20558":2,"20559":3,"20560":4,"20561":3,"20562":3,"20563":4,"20564":2,"20565":2,"20566":3,"20567":1,"20568":5,"20569":5,"20570":3,"20571":2,"20572":3,"20573":4,"20574":2,"20575":3,"20576":3,"20577":4,"20578":3,"20579":3,"20580":4,"20581":3,"20582":3,"20583":4,"20584":2,"20585":2,"20586":4,"20587":4,"20588":3,"20589":1,"20590":1,"20591":3,"20592":2,"20593":4,"20594":2,"20595":3,"20596":4,"20597":4,"20598":3,"20599":4,"20600":3,"20601":3,"20602":4,"20603":1,"20604":3,"20605":4,"20606":5,"20607":4,"20608":2,"20609":5,"20610":2,"20611":5,"20612":3,"20613":3,"20614":5,"20615":4,"20616":2,"20617":3,"20618":2,"20619":2,"20620":3,"20621":4,"20622":4,"20623":4,"20624":2,"20625":3,"20626":4,"20627":4,"20628":3,"20629":3,"20630":2,"20631":3,"20632":2,"20633":2,"20634":5,"20635":2,"20636":5,"20637":2,"20638":2,"20639":3,"20640":5,"20641":4,"20642":3,"20643":3,"20644":4,"20645":3,"20646":4,"20647":4,"20648":2,"20649":4,"20650":4,"20651":3,"20652":5,"20653":3,"20654":3,"20655":3,"20656":3,"20657":2,"20658":5,"20659":2,"20660":3,"20661":1,"20662":3,"20663":3,"20664":3,"20665":3,"20666":3,"20667":4,"20668":4,"20669":3,"20670":4,"20671":3,"20672":3,"20673":3,"20674":2,"20675":3,"20676":1,"20677":4,"20678":1,"20679":4,"20680":5,"20681":3,"20682":3,"20683":4,"20684":3,"20685":1,"20686":4,"20687":3,"20688":3,"20689":1,"20690":3,"20691":2,"20692":3,"20693":3,"20694":3,"20695":4,"20696":4,"20697":1,"20698":2,"20699":2,"20700":4,"20701":1,"20702":3,"20703":2,"20704":1,"20705":1,"20706":2,"20707":4,"20708":2,"20709":4,"20710":2,"20711":5,"20712":4,"20713":3,"20714":2,"20715":1,"20716":3,"20717":1,"20718":3,"20719":4,"20720":2,"20721":3,"20722":2,"20723":3,"20724":2,"20725":2,"20726":2,"20727":1,"20728":3,"20729":3,"20730":4,"20731":2,"20732":4,"20733":4,"20734":2,"20735":1,"20736":4,"20737":2,"20738":4,"20739":5,"20740":3,"20741":2,"20742":4,"20743":4,"20744":2,"20745":4,"20746":3,"20747":1,"20748":2,"20749":4,"20750":1,"20751":4,"20752":3,"20753":4,"20754":3,"20755":4,"20756":3,"20757":3,"20758":2,"20759":2,"20760":3,"20761":4,"20762":2,"20763":2,"20764":2,"20765":1,"20766":3,"20767":5,"20768":3,"20769":4,"20770":3,"20771":1,"20772":1,"20773":2,"20774":4,"20775":3,"20776":1,"20777":5,"20778":4,"20779":2,"20780":1,"20781":2,"20782":2,"20783":2,"20784":4,"20785":2,"20786":5,"20787":3,"20788":4,"20789":3,"20790":4,"20791":2,"20792":3,"20793":4,"20794":3,"20795":1,"20796":5,"20797":2,"20798":2,"20799":3,"20800":2,"20801":4,"20802":3,"20803":3,"20804":3,"20805":2,"20806":3,"20807":3,"20808":2,"20809":1,"20810":3,"20811":4,"20812":3,"20813":5,"20814":3,"20815":5,"20816":2,"20817":2,"20818":2,"20819":5,"20820":3,"20821":4,"20822":3,"20823":1,"20824":3,"20825":2,"20826":2,"20827":4,"20828":2,"20829":4,"20830":2,"20831":4,"20832":3,"20833":3,"20834":4,"20835":3,"20836":3,"20837":4,"20838":2,"20839":4,"20840":1,"20841":4,"20842":3,"20843":3,"20844":3,"20845":3,"20846":2,"20847":5,"20848":1,"20849":4,"20850":4,"20851":4,"20852":3,"20853":4,"20854":3,"20855":3,"20856":4,"20857":4,"20858":4,"20859":3,"20860":3,"20861":2,"20862":4,"20863":3,"20864":4,"20865":3,"20866":3,"20867":2,"20868":4,"20869":3,"20870":4,"20871":4,"20872":5,"20873":3,"20874":2,"20875":4,"20876":3,"20877":2,"20878":1,"20879":2,"20880":4,"20881":4,"20882":2,"20883":3,"20884":5,"20885":3,"20886":2,"20887":4,"20888":3,"20889":2,"20890":2,"20891":3,"20892":3,"20893":2,"20894":2,"20895":3,"20896":3,"20897":3,"20898":3,"20899":1,"20900":2,"20901":4,"20902":2,"20903":4,"20904":4,"20905":4,"20906":3,"20907":5,"20908":4,"20909":2,"20910":1,"20911":2,"20912":2,"20913":5,"20914":4,"20915":3,"20916":4,"20917":1,"20918":4,"20919":2,"20920":4,"20921":5,"20922":3,"20923":3,"20924":3,"20925":4,"20926":3,"20927":1,"20928":1,"20929":4,"20930":3,"20931":4,"20932":2,"20933":5,"20934":3,"20935":3,"20936":3,"20937":5,"20938":1,"20939":2,"20940":3,"20941":2,"20942":1,"20943":3,"20944":4,"20945":2,"20946":2,"20947":4,"20948":2,"20949":2,"20950":5,"20951":3,"20952":3,"20953":4,"20954":3,"20955":4,"20956":2,"20957":2,"20958":3,"20959":4,"20960":4,"20961":2,"20962":5,"20963":3,"20964":3,"20965":3,"20966":3,"20967":2,"20968":4,"20969":3,"20970":3,"20971":1,"20972":4,"20973":4,"20974":2,"20975":4,"20976":5,"20977":3,"20978":2,"20979":1,"20980":3,"20981":2,"20982":3,"20983":3,"20984":2,"20985":2,"20986":4,"20987":1,"20988":4,"20989":2,"20990":2,"20991":3,"20992":4,"20993":4,"20994":5,"20995":3,"20996":4,"20997":4,"20998":2,"20999":5,"21000":2,"21001":5,"21002":2,"21003":4,"21004":2,"21005":1,"21006":3,"21007":5,"21008":3,"21009":3,"21010":3,"21011":4,"21012":4,"21013":3,"21014":1,"21015":2,"21016":5,"21017":4,"21018":1,"21019":3,"21020":3,"21021":2,"21022":3,"21023":3,"21024":2,"21025":2,"21026":2,"21027":3,"21028":3,"21029":2,"21030":4,"21031":1,"21032":2,"21033":2,"21034":2,"21035":1,"21036":4,"21037":3,"21038":3,"21039":3,"21040":4,"21041":4,"21042":3,"21043":1,"21044":1,"21045":2,"21046":5,"21047":3,"21048":3,"21049":4,"21050":2,"21051":3,"21052":4,"21053":2,"21054":1,"21055":4,"21056":3,"21057":2,"21058":3,"21059":3,"21060":4,"21061":4,"21062":3,"21063":3,"21064":4,"21065":5,"21066":1,"21067":4,"21068":1,"21069":1,"21070":2,"21071":4,"21072":5,"21073":2,"21074":3,"21075":5,"21076":4,"21077":2,"21078":3,"21079":4,"21080":3,"21081":3,"21082":3,"21083":5,"21084":3,"21085":4,"21086":3,"21087":3,"21088":1,"21089":2,"21090":4,"21091":3,"21092":4,"21093":3,"21094":5,"21095":3,"21096":3,"21097":4,"21098":4,"21099":4,"21100":4,"21101":3,"21102":5,"21103":5,"21104":2,"21105":3,"21106":3,"21107":3,"21108":2,"21109":2,"21110":3,"21111":2,"21112":1,"21113":4,"21114":5,"21115":3,"21116":3,"21117":2,"21118":4,"21119":1,"21120":2,"21121":2,"21122":4,"21123":2,"21124":4,"21125":4,"21126":3,"21127":4,"21128":2,"21129":5,"21130":3,"21131":5,"21132":4,"21133":4,"21134":4,"21135":1,"21136":4,"21137":3,"21138":3,"21139":2,"21140":4,"21141":3,"21142":4,"21143":4,"21144":4,"21145":4,"21146":2,"21147":3,"21148":2,"21149":2,"21150":2,"21151":4,"21152":4,"21153":4,"21154":2,"21155":4,"21156":3,"21157":4,"21158":2,"21159":1,"21160":4,"21161":3,"21162":2,"21163":3,"21164":3,"21165":1,"21166":3,"21167":5,"21168":2,"21169":3,"21170":3,"21171":4,"21172":3,"21173":1,"21174":4,"21175":3,"21176":1,"21177":1,"21178":3,"21179":5,"21180":2,"21181":4,"21182":3,"21183":2,"21184":3,"21185":3,"21186":4,"21187":4,"21188":4,"21189":2,"21190":4,"21191":3,"21192":1,"21193":3,"21194":5,"21195":3,"21196":3,"21197":4,"21198":3,"21199":2,"21200":1,"21201":4,"21202":3,"21203":1,"21204":3,"21205":4,"21206":2,"21207":3,"21208":3,"21209":3,"21210":1,"21211":4,"21212":3,"21213":3,"21214":3,"21215":1,"21216":4,"21217":3,"21218":3,"21219":1,"21220":3,"21221":5,"21222":3,"21223":2,"21224":2,"21225":4,"21226":3,"21227":1,"21228":4,"21229":4,"21230":3,"21231":3,"21232":4,"21233":3,"21234":5,"21235":4,"21236":2,"21237":3,"21238":3,"21239":2,"21240":2,"21241":3,"21242":3,"21243":3,"21244":4,"21245":4,"21246":3,"21247":3,"21248":5,"21249":3,"21250":3,"21251":4,"21252":2,"21253":4,"21254":1,"21255":1,"21256":3,"21257":3,"21258":3,"21259":3,"21260":1,"21261":1,"21262":2,"21263":3,"21264":2,"21265":3,"21266":3,"21267":2,"21268":4,"21269":3,"21270":5,"21271":3,"21272":2,"21273":3,"21274":2,"21275":4,"21276":2,"21277":4,"21278":3,"21279":5,"21280":3,"21281":5,"21282":2,"21283":3,"21284":3,"21285":4,"21286":2,"21287":3,"21288":5,"21289":4,"21290":2,"21291":1,"21292":4,"21293":3,"21294":4,"21295":4,"21296":2,"21297":3,"21298":3,"21299":4,"21300":2,"21301":5,"21302":4,"21303":2,"21304":4,"21305":3,"21306":3,"21307":3,"21308":3,"21309":5,"21310":4,"21311":4,"21312":3,"21313":3,"21314":4,"21315":3,"21316":3,"21317":3,"21318":3,"21319":3,"21320":2,"21321":3,"21322":3,"21323":4,"21324":2,"21325":4,"21326":4,"21327":3,"21328":3,"21329":4,"21330":3,"21331":3,"21332":4,"21333":4,"21334":3,"21335":3,"21336":2,"21337":1,"21338":4,"21339":2,"21340":2,"21341":3,"21342":3,"21343":2,"21344":1,"21345":2,"21346":3,"21347":4,"21348":3,"21349":2,"21350":2,"21351":2,"21352":3,"21353":1,"21354":1,"21355":1,"21356":3,"21357":4,"21358":2,"21359":4,"21360":1,"21361":2,"21362":3,"21363":1,"21364":4,"21365":4,"21366":3,"21367":1,"21368":1,"21369":4,"21370":4,"21371":3,"21372":2,"21373":5,"21374":4,"21375":4,"21376":3,"21377":5,"21378":3,"21379":3,"21380":2,"21381":5,"21382":3,"21383":4,"21384":4,"21385":2,"21386":4,"21387":2,"21388":2,"21389":2,"21390":4,"21391":3,"21392":3,"21393":2,"21394":1,"21395":5,"21396":2,"21397":3,"21398":4,"21399":5,"21400":4,"21401":1,"21402":5,"21403":2,"21404":2,"21405":1,"21406":2,"21407":3,"21408":4,"21409":3,"21410":3,"21411":1,"21412":2,"21413":2,"21414":3,"21415":3,"21416":4,"21417":2,"21418":3,"21419":2,"21420":1,"21421":1,"21422":1,"21423":2,"21424":4,"21425":1,"21426":3,"21427":4,"21428":1,"21429":2,"21430":3,"21431":4,"21432":1,"21433":1,"21434":2,"21435":3,"21436":2,"21437":3,"21438":4,"21439":2,"21440":3,"21441":3,"21442":1,"21443":4,"21444":4,"21445":4,"21446":3,"21447":3,"21448":3,"21449":3,"21450":2,"21451":2,"21452":1,"21453":2,"21454":2,"21455":3,"21456":1,"21457":5,"21458":3,"21459":3,"21460":3,"21461":3,"21462":4,"21463":3,"21464":4,"21465":3,"21466":4,"21467":5,"21468":3,"21469":5,"21470":4,"21471":4,"21472":5,"21473":2,"21474":2,"21475":4,"21476":3,"21477":2,"21478":1,"21479":4,"21480":4,"21481":3,"21482":3,"21483":1,"21484":3,"21485":3,"21486":1,"21487":2,"21488":3,"21489":1,"21490":3,"21491":4,"21492":2,"21493":3,"21494":5,"21495":3,"21496":2,"21497":4,"21498":4,"21499":3,"21500":3,"21501":3,"21502":2,"21503":3,"21504":4,"21505":4,"21506":4,"21507":4,"21508":4,"21509":4,"21510":3,"21511":3,"21512":2,"21513":3,"21514":3,"21515":2,"21516":2,"21517":3,"21518":4,"21519":2,"21520":2,"21521":2,"21522":4,"21523":1,"21524":2,"21525":3,"21526":3,"21527":2,"21528":3,"21529":2,"21530":4,"21531":4,"21532":2,"21533":1,"21534":4,"21535":4,"21536":5,"21537":3,"21538":3,"21539":3,"21540":4,"21541":2,"21542":3,"21543":2,"21544":4,"21545":2,"21546":2,"21547":2,"21548":3,"21549":3,"21550":4,"21551":5,"21552":2,"21553":2,"21554":2,"21555":2,"21556":2,"21557":3,"21558":2,"21559":1,"21560":2,"21561":1,"21562":5,"21563":3,"21564":4,"21565":3,"21566":1,"21567":1,"21568":2,"21569":4,"21570":3,"21571":1,"21572":3,"21573":2,"21574":3,"21575":5,"21576":4,"21577":2,"21578":3,"21579":4,"21580":3,"21581":3,"21582":3,"21583":3,"21584":3,"21585":3,"21586":3,"21587":2,"21588":3,"21589":3,"21590":4,"21591":1,"21592":3,"21593":4,"21594":3,"21595":4,"21596":2,"21597":3,"21598":2,"21599":4,"21600":2,"21601":4,"21602":1,"21603":4,"21604":2,"21605":3,"21606":2,"21607":3,"21608":1,"21609":3,"21610":4,"21611":3,"21612":3,"21613":2,"21614":3,"21615":3,"21616":2,"21617":2,"21618":4,"21619":4,"21620":4,"21621":2,"21622":4,"21623":1,"21624":1,"21625":3,"21626":4,"21627":2,"21628":2,"21629":3,"21630":2,"21631":3,"21632":3,"21633":5,"21634":5,"21635":2,"21636":2,"21637":4,"21638":3,"21639":3,"21640":2,"21641":3,"21642":3,"21643":1,"21644":5,"21645":3,"21646":2,"21647":5,"21648":2,"21649":2,"21650":5,"21651":1,"21652":4,"21653":3,"21654":1,"21655":1,"21656":3,"21657":4,"21658":3,"21659":1,"21660":2,"21661":2,"21662":1,"21663":3,"21664":4,"21665":2,"21666":3,"21667":2,"21668":2,"21669":3,"21670":3,"21671":3,"21672":3,"21673":1,"21674":3,"21675":3,"21676":2,"21677":3,"21678":2,"21679":1,"21680":4,"21681":1,"21682":3,"21683":2,"21684":2,"21685":4,"21686":4,"21687":2,"21688":2,"21689":3,"21690":3,"21691":2,"21692":1,"21693":4,"21694":1,"21695":2,"21696":4,"21697":2,"21698":5,"21699":3,"21700":2,"21701":2,"21702":5,"21703":4,"21704":4,"21705":3,"21706":3,"21707":3,"21708":3,"21709":3,"21710":5,"21711":3,"21712":1,"21713":4,"21714":2,"21715":2,"21716":4,"21717":1,"21718":3,"21719":4,"21720":5,"21721":5,"21722":5,"21723":4,"21724":2,"21725":5,"21726":4,"21727":3,"21728":2,"21729":4,"21730":1,"21731":4,"21732":1,"21733":3,"21734":3,"21735":1,"21736":3,"21737":2,"21738":2,"21739":2,"21740":3,"21741":5,"21742":4,"21743":2,"21744":3,"21745":4,"21746":3,"21747":1,"21748":3,"21749":4,"21750":1,"21751":3,"21752":4,"21753":4,"21754":3,"21755":1,"21756":2,"21757":3,"21758":3,"21759":3,"21760":3,"21761":3,"21762":3,"21763":4,"21764":4,"21765":3,"21766":2,"21767":3,"21768":5,"21769":1,"21770":3,"21771":3,"21772":4,"21773":2,"21774":4,"21775":3,"21776":4,"21777":5,"21778":4,"21779":4,"21780":4,"21781":4,"21782":4,"21783":4,"21784":4,"21785":5,"21786":3,"21787":4,"21788":2,"21789":3,"21790":4,"21791":3,"21792":5,"21793":3,"21794":3,"21795":3,"21796":5,"21797":4,"21798":5,"21799":1,"21800":2,"21801":3,"21802":3,"21803":3,"21804":1,"21805":1,"21806":4,"21807":4,"21808":2,"21809":3,"21810":4,"21811":4,"21812":2,"21813":5,"21814":3,"21815":5,"21816":3,"21817":5,"21818":4,"21819":1,"21820":5,"21821":3,"21822":3,"21823":3,"21824":2,"21825":1,"21826":4,"21827":4,"21828":2,"21829":2,"21830":4,"21831":3,"21832":3,"21833":3,"21834":2,"21835":2,"21836":1,"21837":2,"21838":5,"21839":2,"21840":3,"21841":3,"21842":2,"21843":4,"21844":2,"21845":4,"21846":4,"21847":3,"21848":3,"21849":4,"21850":4,"21851":4,"21852":2,"21853":1,"21854":3,"21855":2,"21856":5,"21857":4,"21858":4,"21859":4,"21860":5,"21861":3,"21862":2,"21863":1,"21864":2,"21865":3,"21866":3,"21867":4,"21868":3,"21869":3,"21870":4,"21871":4,"21872":3,"21873":4,"21874":3,"21875":2,"21876":3,"21877":4,"21878":3,"21879":2,"21880":1,"21881":3,"21882":2,"21883":3,"21884":2,"21885":2,"21886":1,"21887":3,"21888":2,"21889":4,"21890":1,"21891":4,"21892":3,"21893":5,"21894":3,"21895":2,"21896":1,"21897":1,"21898":2,"21899":2,"21900":2,"21901":2,"21902":4,"21903":4,"21904":1,"21905":4,"21906":2,"21907":3,"21908":3,"21909":4,"21910":5,"21911":2,"21912":2,"21913":1,"21914":3,"21915":2,"21916":3,"21917":2,"21918":4,"21919":2,"21920":2,"21921":3,"21922":4,"21923":2,"21924":3,"21925":5,"21926":4,"21927":3,"21928":1,"21929":3,"21930":4,"21931":2,"21932":4,"21933":3,"21934":4,"21935":2,"21936":2,"21937":1,"21938":2,"21939":4,"21940":4,"21941":4,"21942":2,"21943":2,"21944":3,"21945":2,"21946":3,"21947":3,"21948":4,"21949":2,"21950":3,"21951":3,"21952":4,"21953":3,"21954":3,"21955":2,"21956":3,"21957":4,"21958":2,"21959":5,"21960":1,"21961":4,"21962":3,"21963":3,"21964":3,"21965":2,"21966":4,"21967":2,"21968":5,"21969":2,"21970":3,"21971":1,"21972":2,"21973":2,"21974":2,"21975":4,"21976":3,"21977":1,"21978":5,"21979":3,"21980":1,"21981":2,"21982":4,"21983":1,"21984":3,"21985":4,"21986":3,"21987":4,"21988":3,"21989":5,"21990":2,"21991":3,"21992":3,"21993":2,"21994":3,"21995":3,"21996":4,"21997":3,"21998":4,"21999":1,"22000":3,"22001":3,"22002":2,"22003":4,"22004":2,"22005":3,"22006":2,"22007":4,"22008":4,"22009":1,"22010":5,"22011":1,"22012":3,"22013":4,"22014":2,"22015":4,"22016":5,"22017":3,"22018":3,"22019":4,"22020":3,"22021":3,"22022":2,"22023":3,"22024":2,"22025":3,"22026":2,"22027":4,"22028":2,"22029":3,"22030":5,"22031":1,"22032":2,"22033":3,"22034":3,"22035":5,"22036":5,"22037":2,"22038":4,"22039":2,"22040":4,"22041":2,"22042":3,"22043":1,"22044":3,"22045":4,"22046":3,"22047":4,"22048":1,"22049":3,"22050":3,"22051":1,"22052":3,"22053":3,"22054":2,"22055":2,"22056":2,"22057":1,"22058":3,"22059":3,"22060":2,"22061":3,"22062":3,"22063":3,"22064":1,"22065":2,"22066":1,"22067":2,"22068":3,"22069":3,"22070":3,"22071":3,"22072":3,"22073":2,"22074":4,"22075":4,"22076":3,"22077":1,"22078":3,"22079":4,"22080":4,"22081":4,"22082":3,"22083":3,"22084":1,"22085":4,"22086":3,"22087":4,"22088":4,"22089":3,"22090":4,"22091":2,"22092":2,"22093":3,"22094":2,"22095":1,"22096":2,"22097":3,"22098":4,"22099":5,"22100":4,"22101":1,"22102":2,"22103":1,"22104":4,"22105":3,"22106":1,"22107":4,"22108":3,"22109":4,"22110":1,"22111":5,"22112":3,"22113":4,"22114":1,"22115":3,"22116":3,"22117":2,"22118":2,"22119":1,"22120":1,"22121":3,"22122":3,"22123":3,"22124":3,"22125":1,"22126":3,"22127":2,"22128":3,"22129":3,"22130":1,"22131":3,"22132":3,"22133":4,"22134":4,"22135":2,"22136":3,"22137":3,"22138":3,"22139":3,"22140":4,"22141":2,"22142":2,"22143":4,"22144":3,"22145":2,"22146":3,"22147":4,"22148":2,"22149":5,"22150":3,"22151":3,"22152":3,"22153":3,"22154":4,"22155":3,"22156":5,"22157":5,"22158":2,"22159":3,"22160":2,"22161":1,"22162":2,"22163":3,"22164":2,"22165":4,"22166":4,"22167":4,"22168":4,"22169":4,"22170":3,"22171":3,"22172":3,"22173":5,"22174":4,"22175":2,"22176":2,"22177":1,"22178":3,"22179":2,"22180":5,"22181":2,"22182":2,"22183":2,"22184":3,"22185":4,"22186":3,"22187":2,"22188":3,"22189":3,"22190":3,"22191":4,"22192":2,"22193":4,"22194":2,"22195":5,"22196":2,"22197":2,"22198":2,"22199":4,"22200":2,"22201":3,"22202":3,"22203":2,"22204":4,"22205":4,"22206":4,"22207":3,"22208":4,"22209":2,"22210":2,"22211":2,"22212":5,"22213":5,"22214":3,"22215":2,"22216":3,"22217":3,"22218":2,"22219":5,"22220":2,"22221":2,"22222":4,"22223":3,"22224":3,"22225":4,"22226":2,"22227":1,"22228":3,"22229":3,"22230":3,"22231":2,"22232":2,"22233":4,"22234":3,"22235":3,"22236":4,"22237":3,"22238":1,"22239":4,"22240":5,"22241":4,"22242":3,"22243":2,"22244":4,"22245":3,"22246":4,"22247":2,"22248":3,"22249":3,"22250":3,"22251":1,"22252":3,"22253":4,"22254":1,"22255":1,"22256":3,"22257":4,"22258":4,"22259":2,"22260":3,"22261":3,"22262":1,"22263":3,"22264":1,"22265":3,"22266":2,"22267":3,"22268":4,"22269":2,"22270":2,"22271":2,"22272":5,"22273":4,"22274":3,"22275":4,"22276":2,"22277":2,"22278":3,"22279":3,"22280":3,"22281":4,"22282":2,"22283":5,"22284":1,"22285":2,"22286":2,"22287":2,"22288":2,"22289":1,"22290":4,"22291":2,"22292":3,"22293":3,"22294":2,"22295":2,"22296":2,"22297":1,"22298":2,"22299":2,"22300":4,"22301":4,"22302":3,"22303":2,"22304":2,"22305":2,"22306":4,"22307":4,"22308":4,"22309":5,"22310":3,"22311":3,"22312":5,"22313":1,"22314":3,"22315":2,"22316":4,"22317":2,"22318":4,"22319":4,"22320":3,"22321":4,"22322":3,"22323":3,"22324":3,"22325":4,"22326":3,"22327":1,"22328":2,"22329":5,"22330":2,"22331":2,"22332":4,"22333":3,"22334":2,"22335":4,"22336":2,"22337":2,"22338":3,"22339":4,"22340":5,"22341":3,"22342":5,"22343":3,"22344":4,"22345":2,"22346":4,"22347":4,"22348":3,"22349":2,"22350":3,"22351":5,"22352":1,"22353":3,"22354":3,"22355":4,"22356":3,"22357":3,"22358":1,"22359":3,"22360":3,"22361":4,"22362":3,"22363":3,"22364":3,"22365":3,"22366":3,"22367":5,"22368":4,"22369":4,"22370":2,"22371":4,"22372":4,"22373":2,"22374":2,"22375":2,"22376":4,"22377":3,"22378":4,"22379":5,"22380":4,"22381":4,"22382":3,"22383":2,"22384":3,"22385":2,"22386":2,"22387":3,"22388":3,"22389":4,"22390":5,"22391":5,"22392":3,"22393":1,"22394":3,"22395":2,"22396":3,"22397":5,"22398":3,"22399":4,"22400":2,"22401":3,"22402":3,"22403":3,"22404":3,"22405":1,"22406":1,"22407":2,"22408":5,"22409":3,"22410":5,"22411":3,"22412":1,"22413":3,"22414":4,"22415":2,"22416":5,"22417":3,"22418":2,"22419":2,"22420":3,"22421":1,"22422":3,"22423":3,"22424":3,"22425":3,"22426":3,"22427":3,"22428":3,"22429":4,"22430":3,"22431":2,"22432":4,"22433":2,"22434":5,"22435":3,"22436":1,"22437":4,"22438":4,"22439":4,"22440":4,"22441":4,"22442":3,"22443":3,"22444":3,"22445":3,"22446":4,"22447":2,"22448":4,"22449":3,"22450":4,"22451":2,"22452":3,"22453":5,"22454":3,"22455":1,"22456":3,"22457":2,"22458":3,"22459":3,"22460":3,"22461":5,"22462":3,"22463":5,"22464":3,"22465":3,"22466":2,"22467":3,"22468":2,"22469":2,"22470":3,"22471":1,"22472":3,"22473":4,"22474":5,"22475":3,"22476":4,"22477":3,"22478":4,"22479":4,"22480":3,"22481":2,"22482":2,"22483":3,"22484":4,"22485":2,"22486":3,"22487":4,"22488":2,"22489":4,"22490":4,"22491":5,"22492":4,"22493":3,"22494":3,"22495":1,"22496":3,"22497":3,"22498":4,"22499":3,"22500":4,"22501":3,"22502":3,"22503":3,"22504":1,"22505":3,"22506":4,"22507":3,"22508":2,"22509":2,"22510":3,"22511":2,"22512":4,"22513":2,"22514":1,"22515":3,"22516":4,"22517":3,"22518":3,"22519":3,"22520":1,"22521":3,"22522":3,"22523":2,"22524":2,"22525":2,"22526":1,"22527":2,"22528":4,"22529":3,"22530":4,"22531":4,"22532":1,"22533":4,"22534":4,"22535":2,"22536":2,"22537":3,"22538":5,"22539":3,"22540":3,"22541":5,"22542":3,"22543":1,"22544":3,"22545":5,"22546":4,"22547":1,"22548":4,"22549":1,"22550":3,"22551":1,"22552":2,"22553":2,"22554":2,"22555":5,"22556":3,"22557":4,"22558":3,"22559":4,"22560":3,"22561":5,"22562":2,"22563":3,"22564":3,"22565":2,"22566":3,"22567":2,"22568":2,"22569":3,"22570":2,"22571":1,"22572":4,"22573":3,"22574":3,"22575":3,"22576":1,"22577":3,"22578":4,"22579":3,"22580":4,"22581":3,"22582":3,"22583":4,"22584":3,"22585":1,"22586":2,"22587":4,"22588":3,"22589":2,"22590":3,"22591":2,"22592":2,"22593":2,"22594":3,"22595":4,"22596":3,"22597":5,"22598":3,"22599":3,"22600":3,"22601":2,"22602":4,"22603":3,"22604":4,"22605":4,"22606":2,"22607":3,"22608":3,"22609":3,"22610":3,"22611":5,"22612":3,"22613":5,"22614":2,"22615":2,"22616":5,"22617":4,"22618":1,"22619":3,"22620":5,"22621":5,"22622":3,"22623":2,"22624":1,"22625":2,"22626":3,"22627":4,"22628":3,"22629":3,"22630":4,"22631":3,"22632":3,"22633":3,"22634":2,"22635":4,"22636":4,"22637":2,"22638":3,"22639":4,"22640":4,"22641":4,"22642":3,"22643":2,"22644":4,"22645":4,"22646":4,"22647":1,"22648":3,"22649":2,"22650":5,"22651":3,"22652":3,"22653":3,"22654":3,"22655":4,"22656":3,"22657":3,"22658":5,"22659":3,"22660":3,"22661":1,"22662":1,"22663":3,"22664":3,"22665":3,"22666":5,"22667":2,"22668":3,"22669":3,"22670":1,"22671":3,"22672":3,"22673":3,"22674":4,"22675":5,"22676":3,"22677":3,"22678":2,"22679":2,"22680":1,"22681":2,"22682":2,"22683":2,"22684":4,"22685":3,"22686":1,"22687":2,"22688":3,"22689":1,"22690":1,"22691":5,"22692":2,"22693":3,"22694":4,"22695":3,"22696":3,"22697":3,"22698":2,"22699":1,"22700":3,"22701":4,"22702":1,"22703":2,"22704":3,"22705":2,"22706":3,"22707":3,"22708":3,"22709":4,"22710":5,"22711":2,"22712":3,"22713":3,"22714":2,"22715":2,"22716":4,"22717":4,"22718":4,"22719":5,"22720":4,"22721":4,"22722":4,"22723":1,"22724":2,"22725":3,"22726":3,"22727":4,"22728":1,"22729":1,"22730":4,"22731":2,"22732":3,"22733":4,"22734":2,"22735":3,"22736":5,"22737":3,"22738":3,"22739":3,"22740":2,"22741":1,"22742":1,"22743":3,"22744":2,"22745":2,"22746":4,"22747":1,"22748":3,"22749":1,"22750":4,"22751":4,"22752":3,"22753":4,"22754":3,"22755":3,"22756":2,"22757":4,"22758":4,"22759":3,"22760":3,"22761":5,"22762":4,"22763":2,"22764":2,"22765":2,"22766":3,"22767":1,"22768":2,"22769":3,"22770":2,"22771":3,"22772":3,"22773":5,"22774":2,"22775":3,"22776":1,"22777":2,"22778":1,"22779":3,"22780":4,"22781":4,"22782":1,"22783":2,"22784":2,"22785":5,"22786":2,"22787":3,"22788":2,"22789":2,"22790":4,"22791":3,"22792":5,"22793":4,"22794":4,"22795":2,"22796":5,"22797":5,"22798":4,"22799":2,"22800":4,"22801":1,"22802":3,"22803":3,"22804":2,"22805":4,"22806":2,"22807":4,"22808":5,"22809":4,"22810":3,"22811":3,"22812":4,"22813":3,"22814":4,"22815":4,"22816":5,"22817":2,"22818":4,"22819":4,"22820":3,"22821":3,"22822":4,"22823":3,"22824":3,"22825":2,"22826":2,"22827":2,"22828":1,"22829":3,"22830":2,"22831":2,"22832":3,"22833":4,"22834":4,"22835":1,"22836":2,"22837":3,"22838":3,"22839":3,"22840":4,"22841":2,"22842":1,"22843":3,"22844":4,"22845":5,"22846":3,"22847":5,"22848":2,"22849":4,"22850":5,"22851":4,"22852":4,"22853":4,"22854":5,"22855":2,"22856":3,"22857":5,"22858":2,"22859":4,"22860":2,"22861":1,"22862":2,"22863":1,"22864":1,"22865":3,"22866":3,"22867":4,"22868":3,"22869":4,"22870":2,"22871":1,"22872":1,"22873":3,"22874":3,"22875":5,"22876":2,"22877":4,"22878":2,"22879":2,"22880":4,"22881":3,"22882":2,"22883":2,"22884":3,"22885":4,"22886":3,"22887":2,"22888":4,"22889":3,"22890":4,"22891":2,"22892":4,"22893":2,"22894":4,"22895":5,"22896":3,"22897":3,"22898":4,"22899":2,"22900":4,"22901":4,"22902":4,"22903":1,"22904":4,"22905":1,"22906":3,"22907":5,"22908":3,"22909":4,"22910":4,"22911":2,"22912":3,"22913":4,"22914":3,"22915":5,"22916":3,"22917":2,"22918":3,"22919":1,"22920":4,"22921":2,"22922":3,"22923":3,"22924":2,"22925":2,"22926":5,"22927":4,"22928":3,"22929":5,"22930":3,"22931":4,"22932":2,"22933":2,"22934":3,"22935":5,"22936":4,"22937":4,"22938":3,"22939":5,"22940":5,"22941":4,"22942":1,"22943":4,"22944":5,"22945":5,"22946":1,"22947":4,"22948":4,"22949":2,"22950":3,"22951":3,"22952":3,"22953":4,"22954":3,"22955":4,"22956":5,"22957":3,"22958":2,"22959":3,"22960":2,"22961":1,"22962":2,"22963":2,"22964":1,"22965":3,"22966":3,"22967":4,"22968":4,"22969":5,"22970":3,"22971":4,"22972":4,"22973":5,"22974":3,"22975":2,"22976":5,"22977":5,"22978":4,"22979":2,"22980":4,"22981":3,"22982":4,"22983":3,"22984":3,"22985":3,"22986":4,"22987":3,"22988":3,"22989":3,"22990":3,"22991":3,"22992":2,"22993":3,"22994":2,"22995":3,"22996":5,"22997":4,"22998":3,"22999":5,"23000":2,"23001":2,"23002":2,"23003":3,"23004":3,"23005":3,"23006":2,"23007":4,"23008":3,"23009":2,"23010":3,"23011":4,"23012":3,"23013":3,"23014":2,"23015":1,"23016":2,"23017":3,"23018":4,"23019":2,"23020":2,"23021":4,"23022":2,"23023":4,"23024":3,"23025":4,"23026":4,"23027":3,"23028":4,"23029":4,"23030":5,"23031":1,"23032":2,"23033":5,"23034":2,"23035":4,"23036":3,"23037":3,"23038":2,"23039":3,"23040":4,"23041":2,"23042":3,"23043":3,"23044":3,"23045":1,"23046":3,"23047":2,"23048":5,"23049":3,"23050":3,"23051":3,"23052":4,"23053":4,"23054":4,"23055":3,"23056":4,"23057":3,"23058":4,"23059":4,"23060":2,"23061":3,"23062":4,"23063":3,"23064":1,"23065":4,"23066":4,"23067":3,"23068":3,"23069":3,"23070":3,"23071":3,"23072":4,"23073":2,"23074":5,"23075":3,"23076":1,"23077":2,"23078":3,"23079":3,"23080":2,"23081":2,"23082":3,"23083":1,"23084":3,"23085":3,"23086":3,"23087":4,"23088":4,"23089":4,"23090":2,"23091":3,"23092":2,"23093":3,"23094":5,"23095":3,"23096":2,"23097":3,"23098":3,"23099":2,"23100":1,"23101":3,"23102":3,"23103":3,"23104":3,"23105":2,"23106":2,"23107":3,"23108":3,"23109":3,"23110":3,"23111":3,"23112":1,"23113":4,"23114":4,"23115":3,"23116":3,"23117":2,"23118":5,"23119":2,"23120":1,"23121":1,"23122":1,"23123":5,"23124":3,"23125":4,"23126":3,"23127":4,"23128":4,"23129":4,"23130":1,"23131":3,"23132":1,"23133":3,"23134":3,"23135":3,"23136":1,"23137":5,"23138":4,"23139":3,"23140":4,"23141":3,"23142":1,"23143":2,"23144":1,"23145":3,"23146":2,"23147":4,"23148":2,"23149":3,"23150":4,"23151":3,"23152":3,"23153":5,"23154":4,"23155":2,"23156":3,"23157":2,"23158":3,"23159":3,"23160":2,"23161":5,"23162":4,"23163":3,"23164":4,"23165":3,"23166":1,"23167":1,"23168":2,"23169":3,"23170":3,"23171":1,"23172":5,"23173":3,"23174":2,"23175":3,"23176":1,"23177":3,"23178":3,"23179":4,"23180":2,"23181":2,"23182":5,"23183":4,"23184":2,"23185":2,"23186":2,"23187":3,"23188":4,"23189":3,"23190":3,"23191":3,"23192":4,"23193":5,"23194":2,"23195":4,"23196":3,"23197":4,"23198":3,"23199":1,"23200":2,"23201":1,"23202":2,"23203":2,"23204":2,"23205":3,"23206":3,"23207":2,"23208":3,"23209":1,"23210":3,"23211":3,"23212":5,"23213":1,"23214":3,"23215":4,"23216":2,"23217":2,"23218":3,"23219":1,"23220":2,"23221":3,"23222":4,"23223":4,"23224":4,"23225":3,"23226":1,"23227":2,"23228":5,"23229":5,"23230":2,"23231":5,"23232":4,"23233":3,"23234":5,"23235":4,"23236":5,"23237":2,"23238":3,"23239":5,"23240":3,"23241":3,"23242":4,"23243":4,"23244":4,"23245":2,"23246":5,"23247":2,"23248":2,"23249":1,"23250":2,"23251":3,"23252":2,"23253":4,"23254":4,"23255":5,"23256":3,"23257":4,"23258":1,"23259":1,"23260":4,"23261":3,"23262":3,"23263":4,"23264":3,"23265":4,"23266":2,"23267":3,"23268":1,"23269":2,"23270":3,"23271":2,"23272":2,"23273":4,"23274":3,"23275":4,"23276":2,"23277":4,"23278":3,"23279":3,"23280":4,"23281":5,"23282":4,"23283":3,"23284":4,"23285":2,"23286":4,"23287":4,"23288":3,"23289":4,"23290":3,"23291":2,"23292":2,"23293":3,"23294":1,"23295":2,"23296":4,"23297":1,"23298":2,"23299":4,"23300":3,"23301":3,"23302":1,"23303":1,"23304":5,"23305":1,"23306":1,"23307":5,"23308":4,"23309":5,"23310":2,"23311":3,"23312":2,"23313":4,"23314":4,"23315":2,"23316":2,"23317":2,"23318":1,"23319":3,"23320":3,"23321":1,"23322":4,"23323":4,"23324":4,"23325":3,"23326":3,"23327":2,"23328":2,"23329":3,"23330":4,"23331":4,"23332":4,"23333":4,"23334":3,"23335":3,"23336":3,"23337":4,"23338":4,"23339":4,"23340":2,"23341":1,"23342":2,"23343":1,"23344":2,"23345":1,"23346":3,"23347":3,"23348":5,"23349":2,"23350":3,"23351":2,"23352":3,"23353":2,"23354":4,"23355":2,"23356":2,"23357":3,"23358":3,"23359":3,"23360":1,"23361":4,"23362":4,"23363":3,"23364":2,"23365":2,"23366":1,"23367":2,"23368":2,"23369":2,"23370":3,"23371":1,"23372":3,"23373":4,"23374":3,"23375":3,"23376":4,"23377":3,"23378":3,"23379":3,"23380":3,"23381":2,"23382":3,"23383":4,"23384":4,"23385":2,"23386":2,"23387":3,"23388":1,"23389":4,"23390":3,"23391":4,"23392":3,"23393":3,"23394":3,"23395":2,"23396":4,"23397":2,"23398":1,"23399":3,"23400":3,"23401":3,"23402":1,"23403":5,"23404":3,"23405":5,"23406":3,"23407":1,"23408":2,"23409":2,"23410":2,"23411":4,"23412":3,"23413":3,"23414":2,"23415":3,"23416":3,"23417":2,"23418":2,"23419":2,"23420":3,"23421":2,"23422":3,"23423":5,"23424":3,"23425":3,"23426":1,"23427":4,"23428":4,"23429":4,"23430":3,"23431":2,"23432":4,"23433":4,"23434":2,"23435":4,"23436":2,"23437":3,"23438":4,"23439":4,"23440":2,"23441":3,"23442":1,"23443":3,"23444":4,"23445":5,"23446":4,"23447":3,"23448":3,"23449":2,"23450":2,"23451":5,"23452":3,"23453":4,"23454":1,"23455":2,"23456":2,"23457":4,"23458":3,"23459":1,"23460":2,"23461":3,"23462":4,"23463":5,"23464":3,"23465":3,"23466":3,"23467":3,"23468":2,"23469":2,"23470":4,"23471":2,"23472":1,"23473":3,"23474":3,"23475":2,"23476":5,"23477":2,"23478":3,"23479":3,"23480":1,"23481":5,"23482":3,"23483":4,"23484":4,"23485":5,"23486":2,"23487":2,"23488":4,"23489":3,"23490":1,"23491":3,"23492":3,"23493":4,"23494":3,"23495":3,"23496":3,"23497":3,"23498":4,"23499":2,"23500":3,"23501":4,"23502":4,"23503":2,"23504":4,"23505":1,"23506":2,"23507":4,"23508":4,"23509":3,"23510":2,"23511":3,"23512":3,"23513":2,"23514":3,"23515":3,"23516":3,"23517":1,"23518":4,"23519":4,"23520":1,"23521":3,"23522":2,"23523":2,"23524":4,"23525":4,"23526":2,"23527":4,"23528":1,"23529":5,"23530":2,"23531":3,"23532":2,"23533":1,"23534":3,"23535":2,"23536":3,"23537":2,"23538":1,"23539":2,"23540":2,"23541":3,"23542":4,"23543":3,"23544":3,"23545":2,"23546":4,"23547":3,"23548":2,"23549":2,"23550":2,"23551":3,"23552":5,"23553":4,"23554":2,"23555":3,"23556":3,"23557":4,"23558":3,"23559":3,"23560":3,"23561":3,"23562":2,"23563":3,"23564":4,"23565":2,"23566":4,"23567":4,"23568":4,"23569":1,"23570":2,"23571":2,"23572":3,"23573":3,"23574":3,"23575":5,"23576":2,"23577":3,"23578":2,"23579":3,"23580":4,"23581":1,"23582":2,"23583":5,"23584":3,"23585":4,"23586":5,"23587":2,"23588":4,"23589":3,"23590":1,"23591":3,"23592":3,"23593":2,"23594":3,"23595":4,"23596":2,"23597":3,"23598":2,"23599":4,"23600":4,"23601":1,"23602":2,"23603":4,"23604":2,"23605":2,"23606":2,"23607":4,"23608":3,"23609":3,"23610":3,"23611":2,"23612":3,"23613":1,"23614":3,"23615":5,"23616":5,"23617":4,"23618":3,"23619":4,"23620":2,"23621":4,"23622":4,"23623":4,"23624":2,"23625":3,"23626":3,"23627":2,"23628":4,"23629":2,"23630":2,"23631":3,"23632":3,"23633":3,"23634":2,"23635":2,"23636":2,"23637":2,"23638":4,"23639":1,"23640":2,"23641":3,"23642":4,"23643":2,"23644":4,"23645":4,"23646":4,"23647":3,"23648":1,"23649":4,"23650":4,"23651":4,"23652":3,"23653":3,"23654":3,"23655":2,"23656":3,"23657":4,"23658":4,"23659":3,"23660":2,"23661":4,"23662":3,"23663":3,"23664":4,"23665":2,"23666":4,"23667":4,"23668":3,"23669":5,"23670":3,"23671":3,"23672":3,"23673":4,"23674":3,"23675":3,"23676":4,"23677":2,"23678":1,"23679":3,"23680":1,"23681":5,"23682":4,"23683":4,"23684":4,"23685":2,"23686":3,"23687":2,"23688":3,"23689":5,"23690":3,"23691":3,"23692":3,"23693":2,"23694":5,"23695":3,"23696":3,"23697":5,"23698":5,"23699":2,"23700":3,"23701":2,"23702":2,"23703":2,"23704":4,"23705":4,"23706":4,"23707":4,"23708":5,"23709":3,"23710":2,"23711":4,"23712":2,"23713":1,"23714":1,"23715":1,"23716":2,"23717":2,"23718":3,"23719":2,"23720":2,"23721":2,"23722":5,"23723":1,"23724":2,"23725":3,"23726":3,"23727":4,"23728":3,"23729":1,"23730":4,"23731":2,"23732":2,"23733":2,"23734":1,"23735":3,"23736":2,"23737":3,"23738":1,"23739":1,"23740":4,"23741":1,"23742":5,"23743":3,"23744":4,"23745":2,"23746":3,"23747":3,"23748":3,"23749":4,"23750":2,"23751":3,"23752":4,"23753":1,"23754":2,"23755":4,"23756":3,"23757":3,"23758":4,"23759":4,"23760":4,"23761":4,"23762":3,"23763":1,"23764":5,"23765":2,"23766":4,"23767":4,"23768":3,"23769":2,"23770":3,"23771":3,"23772":4,"23773":3,"23774":5,"23775":3,"23776":4,"23777":2,"23778":3,"23779":2,"23780":3,"23781":2,"23782":3,"23783":3,"23784":1,"23785":4,"23786":4,"23787":4,"23788":2,"23789":4,"23790":4,"23791":2,"23792":3,"23793":2,"23794":5,"23795":2,"23796":4,"23797":1,"23798":3,"23799":3,"23800":4,"23801":4,"23802":2,"23803":3,"23804":4,"23805":3,"23806":3,"23807":2,"23808":3,"23809":2,"23810":2,"23811":4,"23812":3,"23813":3,"23814":2,"23815":1,"23816":2,"23817":4,"23818":2,"23819":3,"23820":3,"23821":2,"23822":2,"23823":4,"23824":3,"23825":4,"23826":5,"23827":1,"23828":2,"23829":4,"23830":3,"23831":2,"23832":3,"23833":5,"23834":2,"23835":2,"23836":2,"23837":3,"23838":2,"23839":4,"23840":5,"23841":4,"23842":1,"23843":2,"23844":4,"23845":5,"23846":2,"23847":2,"23848":4,"23849":2,"23850":4,"23851":5,"23852":1,"23853":2,"23854":2,"23855":5,"23856":3,"23857":4,"23858":4,"23859":2,"23860":4,"23861":4,"23862":2,"23863":4,"23864":4,"23865":2,"23866":3,"23867":3,"23868":2,"23869":3,"23870":3,"23871":5,"23872":4,"23873":5,"23874":2,"23875":1,"23876":2,"23877":1,"23878":1,"23879":2,"23880":4,"23881":4,"23882":4,"23883":4,"23884":2,"23885":3,"23886":1,"23887":5,"23888":5,"23889":4,"23890":3,"23891":2,"23892":4,"23893":3,"23894":1,"23895":2,"23896":4,"23897":4,"23898":3,"23899":3,"23900":4,"23901":3,"23902":2,"23903":2,"23904":1,"23905":5,"23906":4,"23907":3,"23908":4,"23909":2,"23910":2,"23911":2,"23912":2,"23913":2,"23914":2,"23915":3,"23916":2,"23917":5,"23918":4,"23919":3,"23920":1,"23921":3,"23922":5,"23923":3,"23924":3,"23925":4,"23926":3,"23927":3,"23928":3,"23929":4,"23930":3,"23931":4,"23932":3,"23933":2,"23934":4,"23935":2,"23936":3,"23937":4,"23938":4,"23939":3,"23940":4,"23941":4,"23942":4,"23943":2,"23944":1,"23945":2,"23946":3,"23947":2,"23948":2,"23949":2,"23950":3,"23951":2,"23952":3,"23953":4,"23954":1,"23955":4,"23956":3,"23957":3,"23958":3,"23959":3,"23960":4,"23961":3,"23962":1,"23963":4,"23964":2,"23965":2,"23966":3,"23967":4,"23968":4,"23969":3,"23970":4,"23971":1,"23972":1,"23973":3,"23974":4,"23975":3,"23976":3,"23977":5,"23978":5,"23979":4,"23980":2,"23981":3,"23982":3,"23983":2,"23984":4,"23985":2,"23986":4,"23987":1,"23988":3,"23989":5,"23990":1,"23991":1,"23992":3,"23993":4,"23994":2,"23995":3,"23996":3,"23997":3,"23998":4,"23999":3,"24000":3,"24001":4,"24002":4,"24003":4,"24004":4,"24005":2,"24006":4,"24007":1,"24008":4,"24009":4,"24010":2,"24011":4,"24012":4,"24013":3,"24014":3,"24015":4,"24016":3,"24017":3,"24018":3,"24019":3,"24020":1,"24021":3,"24022":2,"24023":5,"24024":4,"24025":3,"24026":2,"24027":4,"24028":4,"24029":4,"24030":5,"24031":4,"24032":3,"24033":2,"24034":4,"24035":2,"24036":2,"24037":3,"24038":2,"24039":3,"24040":4,"24041":3,"24042":2,"24043":3,"24044":5,"24045":3,"24046":3,"24047":3,"24048":2,"24049":4,"24050":2,"24051":2,"24052":2,"24053":2,"24054":3,"24055":5,"24056":3,"24057":2,"24058":2,"24059":3,"24060":2,"24061":4,"24062":4,"24063":3,"24064":3,"24065":3,"24066":3,"24067":2,"24068":2,"24069":2,"24070":2,"24071":4,"24072":5,"24073":4,"24074":3,"24075":2,"24076":2,"24077":2,"24078":2,"24079":5,"24080":3,"24081":5,"24082":4,"24083":2,"24084":3,"24085":2,"24086":2,"24087":2,"24088":1,"24089":3,"24090":3,"24091":4,"24092":4,"24093":3,"24094":2,"24095":3,"24096":5,"24097":4,"24098":1,"24099":2,"24100":3,"24101":4,"24102":3,"24103":4,"24104":2,"24105":4,"24106":3,"24107":5,"24108":1,"24109":4,"24110":5,"24111":5,"24112":4,"24113":4,"24114":4,"24115":3,"24116":3,"24117":1,"24118":4,"24119":3,"24120":3,"24121":1,"24122":3,"24123":1,"24124":3,"24125":2,"24126":2,"24127":4,"24128":3,"24129":3,"24130":4,"24131":3,"24132":5,"24133":3,"24134":1,"24135":3,"24136":4,"24137":4,"24138":1,"24139":2,"24140":3,"24141":4,"24142":3,"24143":3,"24144":5,"24145":2,"24146":3,"24147":1,"24148":3,"24149":3,"24150":3,"24151":5,"24152":3,"24153":4,"24154":3,"24155":1,"24156":4,"24157":4,"24158":2,"24159":3,"24160":2,"24161":2,"24162":1,"24163":2,"24164":3,"24165":1,"24166":2,"24167":1,"24168":3,"24169":3,"24170":2,"24171":4,"24172":3,"24173":3,"24174":3,"24175":3,"24176":3,"24177":2,"24178":3,"24179":2,"24180":3,"24181":4,"24182":5,"24183":3,"24184":4,"24185":5,"24186":4,"24187":3,"24188":4,"24189":3,"24190":3,"24191":2,"24192":3,"24193":3,"24194":2,"24195":3,"24196":4,"24197":4,"24198":1,"24199":4,"24200":4,"24201":3,"24202":5,"24203":3,"24204":3,"24205":1,"24206":3,"24207":3,"24208":4,"24209":2,"24210":3,"24211":2,"24212":2,"24213":4,"24214":3,"24215":4,"24216":3,"24217":5,"24218":2,"24219":1,"24220":3,"24221":3,"24222":1,"24223":2,"24224":3,"24225":1,"24226":3,"24227":5,"24228":3,"24229":2,"24230":4,"24231":3,"24232":4,"24233":3,"24234":3,"24235":2,"24236":4,"24237":4,"24238":2,"24239":4,"24240":4,"24241":3,"24242":3,"24243":3,"24244":3,"24245":2,"24246":3,"24247":3,"24248":3,"24249":4,"24250":2,"24251":1,"24252":3,"24253":1,"24254":1,"24255":3,"24256":3,"24257":5,"24258":4,"24259":1,"24260":4,"24261":2,"24262":3,"24263":1,"24264":2,"24265":1,"24266":3,"24267":3,"24268":3,"24269":1,"24270":2,"24271":4,"24272":4,"24273":3,"24274":2,"24275":4,"24276":2,"24277":2,"24278":1,"24279":3,"24280":1,"24281":2,"24282":4,"24283":5,"24284":3,"24285":3,"24286":4,"24287":2,"24288":2,"24289":3,"24290":4,"24291":2,"24292":5,"24293":4,"24294":5,"24295":3,"24296":3,"24297":2,"24298":4,"24299":3,"24300":2,"24301":3,"24302":3,"24303":4,"24304":3,"24305":1,"24306":3,"24307":4,"24308":2,"24309":3,"24310":4,"24311":1,"24312":3,"24313":3,"24314":5,"24315":3,"24316":4,"24317":3,"24318":3,"24319":5,"24320":4,"24321":3,"24322":3,"24323":3,"24324":3,"24325":1,"24326":3,"24327":2,"24328":4,"24329":4,"24330":3,"24331":4,"24332":3,"24333":2,"24334":2,"24335":3,"24336":1,"24337":3,"24338":4,"24339":2,"24340":3,"24341":3,"24342":2,"24343":3,"24344":5,"24345":2,"24346":4,"24347":2,"24348":5,"24349":4,"24350":1,"24351":1,"24352":3,"24353":2,"24354":3,"24355":2,"24356":4,"24357":3,"24358":2,"24359":3,"24360":3,"24361":4,"24362":3,"24363":3,"24364":3,"24365":3,"24366":3,"24367":3,"24368":2,"24369":4,"24370":3,"24371":3,"24372":1,"24373":3,"24374":3,"24375":2,"24376":3,"24377":3,"24378":3,"24379":5,"24380":1,"24381":3,"24382":3,"24383":5,"24384":4,"24385":3,"24386":4,"24387":3,"24388":3,"24389":2,"24390":3,"24391":3,"24392":3,"24393":2,"24394":2,"24395":4,"24396":3,"24397":4,"24398":1,"24399":4,"24400":2,"24401":4,"24402":2,"24403":1,"24404":3,"24405":2,"24406":3,"24407":4,"24408":2,"24409":4,"24410":2,"24411":3,"24412":4,"24413":4,"24414":1,"24415":3,"24416":2,"24417":4,"24418":2,"24419":3,"24420":4,"24421":3,"24422":3,"24423":1,"24424":5,"24425":3,"24426":4,"24427":1,"24428":4,"24429":4,"24430":3,"24431":2,"24432":1,"24433":1,"24434":4,"24435":4,"24436":1,"24437":3,"24438":3,"24439":2,"24440":2,"24441":5,"24442":4,"24443":4,"24444":3,"24445":1,"24446":3,"24447":5,"24448":3,"24449":3,"24450":4,"24451":3,"24452":3,"24453":2,"24454":1,"24455":4,"24456":2,"24457":3,"24458":4,"24459":4,"24460":3,"24461":3,"24462":1,"24463":3,"24464":2,"24465":2,"24466":4,"24467":3,"24468":3,"24469":2,"24470":3,"24471":4,"24472":3,"24473":2,"24474":4,"24475":4,"24476":2,"24477":3,"24478":4,"24479":4,"24480":2,"24481":1,"24482":1,"24483":2,"24484":2,"24485":3,"24486":5,"24487":2,"24488":3,"24489":2,"24490":1,"24491":1,"24492":2,"24493":2,"24494":5,"24495":3,"24496":2,"24497":2,"24498":3,"24499":3,"24500":3,"24501":2,"24502":3,"24503":4,"24504":5,"24505":1,"24506":4,"24507":2,"24508":3,"24509":2,"24510":3,"24511":3,"24512":2,"24513":3,"24514":1,"24515":3,"24516":4,"24517":4,"24518":4,"24519":4,"24520":3,"24521":2,"24522":4,"24523":4,"24524":3,"24525":4,"24526":5,"24527":4,"24528":3,"24529":4,"24530":4,"24531":2,"24532":3,"24533":4,"24534":4,"24535":4,"24536":4,"24537":3,"24538":2,"24539":1,"24540":3,"24541":3,"24542":5,"24543":4,"24544":2,"24545":2,"24546":2,"24547":4,"24548":2,"24549":4,"24550":3,"24551":3,"24552":3,"24553":3,"24554":3,"24555":2,"24556":4,"24557":2,"24558":2,"24559":3,"24560":3,"24561":2,"24562":2,"24563":3,"24564":5,"24565":3,"24566":5,"24567":3,"24568":2,"24569":3,"24570":2,"24571":2,"24572":1,"24573":1,"24574":3,"24575":4,"24576":3,"24577":2,"24578":1,"24579":3,"24580":3,"24581":4,"24582":3,"24583":3,"24584":5,"24585":3,"24586":3,"24587":1,"24588":2,"24589":2,"24590":4,"24591":4,"24592":5,"24593":3,"24594":4,"24595":4,"24596":4,"24597":2,"24598":4,"24599":5,"24600":1,"24601":2,"24602":4,"24603":4,"24604":3,"24605":3,"24606":3,"24607":4,"24608":2,"24609":3,"24610":3,"24611":4,"24612":4,"24613":4,"24614":3,"24615":3,"24616":2,"24617":2,"24618":2,"24619":3,"24620":3,"24621":3,"24622":2,"24623":2,"24624":3,"24625":3,"24626":3,"24627":3,"24628":5,"24629":2,"24630":1,"24631":2,"24632":3,"24633":3,"24634":3,"24635":2,"24636":4,"24637":3,"24638":4,"24639":2,"24640":1,"24641":5,"24642":1,"24643":4,"24644":4,"24645":3,"24646":2,"24647":2,"24648":4,"24649":3,"24650":5,"24651":1,"24652":3,"24653":4,"24654":3,"24655":3,"24656":4,"24657":4,"24658":2,"24659":5,"24660":2,"24661":3,"24662":4,"24663":4,"24664":2,"24665":2,"24666":1,"24667":3,"24668":3,"24669":3,"24670":4,"24671":2,"24672":4,"24673":3,"24674":3,"24675":2,"24676":2,"24677":4,"24678":3,"24679":5,"24680":3,"24681":3,"24682":3,"24683":3,"24684":3,"24685":5,"24686":3,"24687":4,"24688":3,"24689":4,"24690":4,"24691":5,"24692":1,"24693":5,"24694":3,"24695":2,"24696":3,"24697":2,"24698":4,"24699":2,"24700":2,"24701":4,"24702":2,"24703":4,"24704":3,"24705":3,"24706":2,"24707":3,"24708":4,"24709":4,"24710":3,"24711":2,"24712":4,"24713":3,"24714":3,"24715":4,"24716":3,"24717":2,"24718":1,"24719":3,"24720":1,"24721":4,"24722":3,"24723":3,"24724":3,"24725":3,"24726":3,"24727":3,"24728":2,"24729":5,"24730":3,"24731":5,"24732":4,"24733":3,"24734":4,"24735":2,"24736":3,"24737":2,"24738":4,"24739":3,"24740":2,"24741":2,"24742":2,"24743":4,"24744":3,"24745":1,"24746":3,"24747":2,"24748":4,"24749":4,"24750":5,"24751":3,"24752":4,"24753":3,"24754":3,"24755":3,"24756":2,"24757":4,"24758":3,"24759":4,"24760":2,"24761":4,"24762":3,"24763":3,"24764":3,"24765":3,"24766":3,"24767":1,"24768":3,"24769":4,"24770":2,"24771":2,"24772":3,"24773":3,"24774":3,"24775":2,"24776":2,"24777":3,"24778":2,"24779":2,"24780":2,"24781":3,"24782":3,"24783":2,"24784":3,"24785":1,"24786":3,"24787":2,"24788":3,"24789":3,"24790":4,"24791":4,"24792":2,"24793":4,"24794":4,"24795":3,"24796":2,"24797":4,"24798":4,"24799":5,"24800":3,"24801":4,"24802":4,"24803":3,"24804":3,"24805":4,"24806":2,"24807":5,"24808":2,"24809":2,"24810":3,"24811":3,"24812":3,"24813":4,"24814":5,"24815":2,"24816":2,"24817":3,"24818":4,"24819":3,"24820":5,"24821":5,"24822":3,"24823":3,"24824":4,"24825":4,"24826":3,"24827":1,"24828":2,"24829":2,"24830":4,"24831":1,"24832":3,"24833":2,"24834":2,"24835":3,"24836":5,"24837":1,"24838":2,"24839":3,"24840":4,"24841":3,"24842":3,"24843":2,"24844":2,"24845":3,"24846":3,"24847":2,"24848":3,"24849":4,"24850":4,"24851":2,"24852":1,"24853":4,"24854":3,"24855":4,"24856":5,"24857":3,"24858":3,"24859":3,"24860":2,"24861":4,"24862":4,"24863":5,"24864":2,"24865":3,"24866":2,"24867":3,"24868":3,"24869":5,"24870":3,"24871":3,"24872":2,"24873":2,"24874":5,"24875":2,"24876":1,"24877":4,"24878":4,"24879":4,"24880":3,"24881":4,"24882":3,"24883":3,"24884":3,"24885":4,"24886":4,"24887":1,"24888":3,"24889":4,"24890":4,"24891":1,"24892":3,"24893":3,"24894":3,"24895":3,"24896":2,"24897":1,"24898":3,"24899":3,"24900":1,"24901":2,"24902":3,"24903":3,"24904":4,"24905":2,"24906":4,"24907":4,"24908":4,"24909":4,"24910":4,"24911":3,"24912":4,"24913":3,"24914":4,"24915":3,"24916":4,"24917":4,"24918":2,"24919":1,"24920":3,"24921":5,"24922":4,"24923":4,"24924":4,"24925":2,"24926":4,"24927":4,"24928":1,"24929":4,"24930":3,"24931":4,"24932":3,"24933":4,"24934":2,"24935":3,"24936":4,"24937":1,"24938":1,"24939":4,"24940":4,"24941":3,"24942":4,"24943":2,"24944":3,"24945":5,"24946":3,"24947":1,"24948":3,"24949":4,"24950":3,"24951":3,"24952":3,"24953":2,"24954":5,"24955":4,"24956":3,"24957":3,"24958":3,"24959":3,"24960":3,"24961":3,"24962":5,"24963":3,"24964":2,"24965":3,"24966":4,"24967":1,"24968":3,"24969":3,"24970":3,"24971":2,"24972":3,"24973":3,"24974":3,"24975":4,"24976":3,"24977":3,"24978":2,"24979":3,"24980":4,"24981":4,"24982":3,"24983":2,"24984":4,"24985":3,"24986":4,"24987":3,"24988":3,"24989":1,"24990":2,"24991":4,"24992":4,"24993":4,"24994":3,"24995":3,"24996":2,"24997":3,"24998":2,"24999":4,"25000":3,"25001":2,"25002":2,"25003":3,"25004":2,"25005":4,"25006":3,"25007":4,"25008":3,"25009":1,"25010":4,"25011":3,"25012":3,"25013":3,"25014":3,"25015":2,"25016":3,"25017":5,"25018":3,"25019":4,"25020":2,"25021":2,"25022":3,"25023":2,"25024":3,"25025":3,"25026":3,"25027":4,"25028":3,"25029":4,"25030":3,"25031":2,"25032":3,"25033":3,"25034":1,"25035":3,"25036":1,"25037":4,"25038":2,"25039":4,"25040":3,"25041":4,"25042":4,"25043":5,"25044":1,"25045":2,"25046":3,"25047":4,"25048":4,"25049":5,"25050":5,"25051":4,"25052":3,"25053":4,"25054":5,"25055":2,"25056":4,"25057":3,"25058":4,"25059":4,"25060":3,"25061":3,"25062":3,"25063":3,"25064":2,"25065":2,"25066":4,"25067":3,"25068":3,"25069":5,"25070":3,"25071":2,"25072":5,"25073":4,"25074":1,"25075":3,"25076":3,"25077":2,"25078":4,"25079":2,"25080":3,"25081":4,"25082":1,"25083":3,"25084":3,"25085":3,"25086":4,"25087":3,"25088":2,"25089":4,"25090":3,"25091":5,"25092":3,"25093":3,"25094":3,"25095":3,"25096":4,"25097":2,"25098":1,"25099":3,"25100":4,"25101":5,"25102":2,"25103":2,"25104":5,"25105":3,"25106":5,"25107":2,"25108":5,"25109":3,"25110":2,"25111":1,"25112":2,"25113":4,"25114":3,"25115":3,"25116":2,"25117":2,"25118":1,"25119":3,"25120":3,"25121":2,"25122":5,"25123":4,"25124":3,"25125":3,"25126":3,"25127":5,"25128":1,"25129":2,"25130":3,"25131":3,"25132":3,"25133":1,"25134":3,"25135":3,"25136":2,"25137":5,"25138":4,"25139":1,"25140":2,"25141":2,"25142":3,"25143":3,"25144":4,"25145":1,"25146":1,"25147":3,"25148":4,"25149":1,"25150":3,"25151":1,"25152":2,"25153":2,"25154":2,"25155":5,"25156":4,"25157":1,"25158":4,"25159":5,"25160":4,"25161":3,"25162":4,"25163":5,"25164":4,"25165":2,"25166":5,"25167":2,"25168":4,"25169":3,"25170":2,"25171":3,"25172":2,"25173":2,"25174":5,"25175":1,"25176":4,"25177":4,"25178":3,"25179":1,"25180":2,"25181":3,"25182":2,"25183":3,"25184":2,"25185":3,"25186":3,"25187":2,"25188":2,"25189":3,"25190":5,"25191":5,"25192":1,"25193":3,"25194":1,"25195":3,"25196":2,"25197":3,"25198":4,"25199":3,"25200":4,"25201":3,"25202":2,"25203":3,"25204":4,"25205":4,"25206":1,"25207":3,"25208":3,"25209":3,"25210":1,"25211":3,"25212":1,"25213":2,"25214":3,"25215":4,"25216":1,"25217":3,"25218":1,"25219":3,"25220":3,"25221":2,"25222":2,"25223":2,"25224":3,"25225":3,"25226":3,"25227":3,"25228":3,"25229":3,"25230":4,"25231":3,"25232":2,"25233":2,"25234":4,"25235":2,"25236":3,"25237":5,"25238":2,"25239":4,"25240":3,"25241":4,"25242":3,"25243":4,"25244":3,"25245":3,"25246":3,"25247":5,"25248":2,"25249":2,"25250":1,"25251":3,"25252":1,"25253":4,"25254":3,"25255":3,"25256":5,"25257":3,"25258":3,"25259":2,"25260":1,"25261":1,"25262":4,"25263":2,"25264":3,"25265":4,"25266":3,"25267":3,"25268":3,"25269":3,"25270":1,"25271":1,"25272":3,"25273":2,"25274":3,"25275":2,"25276":1,"25277":2,"25278":4,"25279":4,"25280":2,"25281":4,"25282":2,"25283":2,"25284":3,"25285":3,"25286":3,"25287":3,"25288":3,"25289":2,"25290":4,"25291":3,"25292":2,"25293":3,"25294":1,"25295":4,"25296":3,"25297":1,"25298":3,"25299":3,"25300":3,"25301":3,"25302":5,"25303":3,"25304":4,"25305":4,"25306":5,"25307":3,"25308":3,"25309":2,"25310":5,"25311":2,"25312":4,"25313":1,"25314":1,"25315":2,"25316":4,"25317":5,"25318":4,"25319":3,"25320":4,"25321":2,"25322":4,"25323":2,"25324":2,"25325":4,"25326":3,"25327":3,"25328":1,"25329":2,"25330":2,"25331":2,"25332":1,"25333":4,"25334":4,"25335":1,"25336":3,"25337":2,"25338":1,"25339":3,"25340":4,"25341":5,"25342":5,"25343":5,"25344":3,"25345":2,"25346":4,"25347":4,"25348":3,"25349":2,"25350":3,"25351":1,"25352":4,"25353":3,"25354":2,"25355":4,"25356":5,"25357":4,"25358":1,"25359":3,"25360":3,"25361":3,"25362":3,"25363":3,"25364":3,"25365":4,"25366":1,"25367":3,"25368":4,"25369":3,"25370":2,"25371":1,"25372":4,"25373":3,"25374":2,"25375":4,"25376":3,"25377":4,"25378":1,"25379":4,"25380":3,"25381":2,"25382":3,"25383":2,"25384":5,"25385":2,"25386":3,"25387":1,"25388":1,"25389":3,"25390":2,"25391":5,"25392":2,"25393":3,"25394":5,"25395":4,"25396":1,"25397":2,"25398":1,"25399":4,"25400":3,"25401":3,"25402":3,"25403":4,"25404":4,"25405":3,"25406":3,"25407":2,"25408":5,"25409":3,"25410":3,"25411":3,"25412":2,"25413":3,"25414":2,"25415":3,"25416":3,"25417":3,"25418":3,"25419":2,"25420":2,"25421":3,"25422":4,"25423":5,"25424":3,"25425":1,"25426":4,"25427":2,"25428":4,"25429":4,"25430":3,"25431":4,"25432":3,"25433":3,"25434":3,"25435":3,"25436":4,"25437":3,"25438":3,"25439":5,"25440":2,"25441":2,"25442":2,"25443":4,"25444":3,"25445":3,"25446":2,"25447":1,"25448":3,"25449":3,"25450":3,"25451":2,"25452":4,"25453":5,"25454":5,"25455":4,"25456":1,"25457":4,"25458":4,"25459":1,"25460":4,"25461":1,"25462":1,"25463":3,"25464":3,"25465":3,"25466":3,"25467":2,"25468":2,"25469":1,"25470":1,"25471":2,"25472":2,"25473":2,"25474":4,"25475":2,"25476":3,"25477":5,"25478":2,"25479":2,"25480":3,"25481":4,"25482":4,"25483":1,"25484":4,"25485":4,"25486":4,"25487":2,"25488":4,"25489":5,"25490":1,"25491":4,"25492":2,"25493":2,"25494":2,"25495":3,"25496":3,"25497":3,"25498":4,"25499":4,"25500":3,"25501":3,"25502":4,"25503":4,"25504":2,"25505":4,"25506":3,"25507":2,"25508":1,"25509":5,"25510":4,"25511":2,"25512":3,"25513":2,"25514":2,"25515":4,"25516":4,"25517":3,"25518":3,"25519":4,"25520":3,"25521":1,"25522":4,"25523":2,"25524":3,"25525":1,"25526":4,"25527":3,"25528":2,"25529":4,"25530":4,"25531":2,"25532":2,"25533":2,"25534":3,"25535":3,"25536":3,"25537":1,"25538":3,"25539":2,"25540":4,"25541":3,"25542":3,"25543":3,"25544":5,"25545":3,"25546":3,"25547":3,"25548":3,"25549":3,"25550":3,"25551":1,"25552":4,"25553":3,"25554":3,"25555":4,"25556":3,"25557":3,"25558":3,"25559":1,"25560":4,"25561":2,"25562":2,"25563":5,"25564":1,"25565":4,"25566":2,"25567":2,"25568":3,"25569":2,"25570":4,"25571":3,"25572":4,"25573":4,"25574":3,"25575":3,"25576":3,"25577":3,"25578":3,"25579":2,"25580":3,"25581":4,"25582":4,"25583":2,"25584":3,"25585":3,"25586":2,"25587":4,"25588":2,"25589":3,"25590":3,"25591":2,"25592":3,"25593":3,"25594":2,"25595":3,"25596":1,"25597":4,"25598":4,"25599":4,"25600":4,"25601":2,"25602":5,"25603":5,"25604":3,"25605":3,"25606":2,"25607":4,"25608":3,"25609":2,"25610":3,"25611":1,"25612":3,"25613":4,"25614":4,"25615":4,"25616":3,"25617":3,"25618":1,"25619":3,"25620":4,"25621":2,"25622":2,"25623":3,"25624":2,"25625":4,"25626":2,"25627":2,"25628":3,"25629":2,"25630":2,"25631":2,"25632":3,"25633":3,"25634":4,"25635":3,"25636":1,"25637":3,"25638":2,"25639":4,"25640":2,"25641":2,"25642":2,"25643":2,"25644":3,"25645":3,"25646":3,"25647":4,"25648":3,"25649":2,"25650":4,"25651":3,"25652":3,"25653":2,"25654":3,"25655":1,"25656":3,"25657":3,"25658":2,"25659":3,"25660":3,"25661":4,"25662":3,"25663":4,"25664":5,"25665":3,"25666":3,"25667":3,"25668":3,"25669":3,"25670":2,"25671":3,"25672":5,"25673":2,"25674":3,"25675":1,"25676":3,"25677":2,"25678":3,"25679":3,"25680":3,"25681":3,"25682":1,"25683":3,"25684":3,"25685":4,"25686":3,"25687":1,"25688":1,"25689":4,"25690":3,"25691":4,"25692":4,"25693":2,"25694":2,"25695":2,"25696":2,"25697":3,"25698":3,"25699":3,"25700":2,"25701":1,"25702":4,"25703":2,"25704":4,"25705":5,"25706":2,"25707":1,"25708":3,"25709":4,"25710":3,"25711":2,"25712":5,"25713":2,"25714":4,"25715":2,"25716":2,"25717":1,"25718":3,"25719":3,"25720":3,"25721":3,"25722":2,"25723":3,"25724":4,"25725":3,"25726":2,"25727":3,"25728":1,"25729":4,"25730":3,"25731":4,"25732":4,"25733":2,"25734":2,"25735":3,"25736":5,"25737":4,"25738":3,"25739":3,"25740":3,"25741":5,"25742":2,"25743":1,"25744":4,"25745":2,"25746":1,"25747":3,"25748":1,"25749":2,"25750":4,"25751":3,"25752":5,"25753":2,"25754":2,"25755":2,"25756":2,"25757":2,"25758":3,"25759":3,"25760":3,"25761":4,"25762":4,"25763":2,"25764":2,"25765":1,"25766":4,"25767":2,"25768":1,"25769":4,"25770":2,"25771":3,"25772":2,"25773":1,"25774":3,"25775":2,"25776":4,"25777":4,"25778":3,"25779":1,"25780":2,"25781":3,"25782":1,"25783":3,"25784":4,"25785":4,"25786":4,"25787":4,"25788":2,"25789":4,"25790":1,"25791":3,"25792":3,"25793":3,"25794":4,"25795":5,"25796":2,"25797":4,"25798":4,"25799":3,"25800":4,"25801":2,"25802":3,"25803":3,"25804":2,"25805":3,"25806":3,"25807":5,"25808":4,"25809":3,"25810":2,"25811":1,"25812":2,"25813":3,"25814":3,"25815":3,"25816":2,"25817":2,"25818":1,"25819":5,"25820":2,"25821":1,"25822":1,"25823":3,"25824":2,"25825":4,"25826":2,"25827":3,"25828":3,"25829":3,"25830":5,"25831":4,"25832":4,"25833":4,"25834":3,"25835":1,"25836":3,"25837":2,"25838":2,"25839":3,"25840":2,"25841":3,"25842":3,"25843":3,"25844":3,"25845":2,"25846":4,"25847":4,"25848":5,"25849":3,"25850":3,"25851":3,"25852":1,"25853":3,"25854":2,"25855":1,"25856":1,"25857":2,"25858":3,"25859":2,"25860":3,"25861":3,"25862":3,"25863":3,"25864":4,"25865":4,"25866":3,"25867":4,"25868":3,"25869":4,"25870":4,"25871":2,"25872":4,"25873":3,"25874":3,"25875":1,"25876":3,"25877":2,"25878":2,"25879":4,"25880":3,"25881":5,"25882":2,"25883":1,"25884":5,"25885":2,"25886":3,"25887":1,"25888":3,"25889":1,"25890":3,"25891":3,"25892":3,"25893":2,"25894":1,"25895":4,"25896":4,"25897":4,"25898":3,"25899":3,"25900":3,"25901":4,"25902":2,"25903":2,"25904":3,"25905":3,"25906":4,"25907":2,"25908":4,"25909":3,"25910":2,"25911":4,"25912":4,"25913":5,"25914":5,"25915":2,"25916":4,"25917":5,"25918":5,"25919":2,"25920":3,"25921":3,"25922":2,"25923":2,"25924":3,"25925":2,"25926":5,"25927":3,"25928":1,"25929":3,"25930":3,"25931":4,"25932":4,"25933":5,"25934":1,"25935":3,"25936":2,"25937":4,"25938":4,"25939":4,"25940":3,"25941":3,"25942":5,"25943":4,"25944":4,"25945":1,"25946":4,"25947":5,"25948":2,"25949":2,"25950":3,"25951":2,"25952":3,"25953":3,"25954":4,"25955":5,"25956":5,"25957":3,"25958":3,"25959":2,"25960":1,"25961":4,"25962":2,"25963":3,"25964":4,"25965":4,"25966":1,"25967":4,"25968":3,"25969":3,"25970":5,"25971":3,"25972":4,"25973":2,"25974":3,"25975":1,"25976":2,"25977":2,"25978":4,"25979":4,"25980":4,"25981":1,"25982":2,"25983":3,"25984":4,"25985":2,"25986":3,"25987":3,"25988":3,"25989":3,"25990":3,"25991":3,"25992":4,"25993":3,"25994":4,"25995":4,"25996":2,"25997":3,"25998":2,"25999":3,"26000":2,"26001":3,"26002":2,"26003":2,"26004":4,"26005":5,"26006":1,"26007":4,"26008":5,"26009":3,"26010":3,"26011":2,"26012":2,"26013":3,"26014":2,"26015":3,"26016":1,"26017":5,"26018":2,"26019":3,"26020":3,"26021":4,"26022":4,"26023":3,"26024":3,"26025":4,"26026":2,"26027":3,"26028":3,"26029":3,"26030":3,"26031":3,"26032":1,"26033":4,"26034":4,"26035":3,"26036":4,"26037":3,"26038":2,"26039":3,"26040":2,"26041":3,"26042":2,"26043":3,"26044":2,"26045":4,"26046":2,"26047":1,"26048":3,"26049":3,"26050":4,"26051":1,"26052":3,"26053":2,"26054":3,"26055":2,"26056":4,"26057":3,"26058":4,"26059":2,"26060":3,"26061":5,"26062":5,"26063":1,"26064":2,"26065":2,"26066":2,"26067":2,"26068":1,"26069":2,"26070":3,"26071":2,"26072":4,"26073":3,"26074":2,"26075":4,"26076":2,"26077":1,"26078":4,"26079":3,"26080":3,"26081":3,"26082":3,"26083":3,"26084":2,"26085":5,"26086":2,"26087":4,"26088":3,"26089":2,"26090":3,"26091":2,"26092":2,"26093":2,"26094":2,"26095":3,"26096":3,"26097":5,"26098":1,"26099":2,"26100":4,"26101":4,"26102":4,"26103":4,"26104":3,"26105":3,"26106":3,"26107":5,"26108":2,"26109":4,"26110":4,"26111":1,"26112":3,"26113":2,"26114":1,"26115":1,"26116":4,"26117":3,"26118":3,"26119":4,"26120":3,"26121":2,"26122":3,"26123":4,"26124":4,"26125":2,"26126":1,"26127":2,"26128":2,"26129":5,"26130":3,"26131":2,"26132":4,"26133":4,"26134":4,"26135":3,"26136":2,"26137":2,"26138":4,"26139":4,"26140":2,"26141":2,"26142":3,"26143":3,"26144":2,"26145":5,"26146":2,"26147":2,"26148":3,"26149":5,"26150":3,"26151":3,"26152":4,"26153":4,"26154":4,"26155":3,"26156":4,"26157":1,"26158":3,"26159":2,"26160":5,"26161":2,"26162":4,"26163":1,"26164":3,"26165":2,"26166":3,"26167":4,"26168":4,"26169":3,"26170":4,"26171":1,"26172":3,"26173":1,"26174":2,"26175":2,"26176":4,"26177":4,"26178":2,"26179":2,"26180":4,"26181":5,"26182":3,"26183":2,"26184":3,"26185":4,"26186":1,"26187":4,"26188":3,"26189":2,"26190":3,"26191":3,"26192":3,"26193":3,"26194":2,"26195":1,"26196":3,"26197":4,"26198":4,"26199":3,"26200":2,"26201":2,"26202":3,"26203":2,"26204":3,"26205":2,"26206":1,"26207":3,"26208":3,"26209":3,"26210":2,"26211":2,"26212":4,"26213":4,"26214":3,"26215":1,"26216":3,"26217":3,"26218":2,"26219":3,"26220":2,"26221":3,"26222":3,"26223":4,"26224":2,"26225":3,"26226":4,"26227":3,"26228":2,"26229":3,"26230":3,"26231":3,"26232":5,"26233":1,"26234":5,"26235":1,"26236":4,"26237":4,"26238":4,"26239":3,"26240":4,"26241":3,"26242":2,"26243":3,"26244":5,"26245":5,"26246":3,"26247":3,"26248":1,"26249":1,"26250":4,"26251":3,"26252":4,"26253":3,"26254":3,"26255":2,"26256":3,"26257":2,"26258":4,"26259":4,"26260":1,"26261":3,"26262":2,"26263":1,"26264":4,"26265":2,"26266":3,"26267":3,"26268":4,"26269":5,"26270":3,"26271":3,"26272":3,"26273":1,"26274":1,"26275":4,"26276":3,"26277":4,"26278":4,"26279":3,"26280":1,"26281":2,"26282":3,"26283":2,"26284":4,"26285":2,"26286":4,"26287":1,"26288":4,"26289":4,"26290":2,"26291":2,"26292":3,"26293":4,"26294":3,"26295":3,"26296":2,"26297":3,"26298":2,"26299":4,"26300":1,"26301":1,"26302":3,"26303":2,"26304":3,"26305":4,"26306":5,"26307":4,"26308":3,"26309":4,"26310":3,"26311":1,"26312":4,"26313":2,"26314":5,"26315":4,"26316":4,"26317":2,"26318":2,"26319":2,"26320":3,"26321":1,"26322":3,"26323":3,"26324":4,"26325":3,"26326":2,"26327":4,"26328":1,"26329":2,"26330":1,"26331":3,"26332":4,"26333":2,"26334":1,"26335":1,"26336":5,"26337":3,"26338":5,"26339":3,"26340":5,"26341":3,"26342":3,"26343":5,"26344":2,"26345":4,"26346":2,"26347":2,"26348":3,"26349":2,"26350":4,"26351":3,"26352":3,"26353":2,"26354":3,"26355":3,"26356":3,"26357":3,"26358":3,"26359":5,"26360":4,"26361":3,"26362":2,"26363":1,"26364":4,"26365":1,"26366":1,"26367":3,"26368":3,"26369":1,"26370":4,"26371":3,"26372":2,"26373":3,"26374":2,"26375":3,"26376":4,"26377":3,"26378":4,"26379":4,"26380":2,"26381":4,"26382":2,"26383":3,"26384":3,"26385":4,"26386":4,"26387":3,"26388":3,"26389":3,"26390":2,"26391":2,"26392":3,"26393":2,"26394":3,"26395":3,"26396":3,"26397":3,"26398":2,"26399":4,"26400":2,"26401":1,"26402":2,"26403":3,"26404":3,"26405":4,"26406":4,"26407":3,"26408":4,"26409":4,"26410":4,"26411":1,"26412":4,"26413":4,"26414":3,"26415":4,"26416":3,"26417":3,"26418":3,"26419":5,"26420":2,"26421":2,"26422":4,"26423":5,"26424":3,"26425":4,"26426":3,"26427":3,"26428":1,"26429":3,"26430":1,"26431":4,"26432":4,"26433":2,"26434":2,"26435":4,"26436":4,"26437":5,"26438":3,"26439":4,"26440":4,"26441":1,"26442":1,"26443":1,"26444":1,"26445":2,"26446":4,"26447":3,"26448":3,"26449":4,"26450":4,"26451":3,"26452":3,"26453":4,"26454":2,"26455":2,"26456":5,"26457":2,"26458":4,"26459":4,"26460":3,"26461":4,"26462":3,"26463":3,"26464":3,"26465":2,"26466":5,"26467":4,"26468":3,"26469":4,"26470":3,"26471":4,"26472":1,"26473":4,"26474":3,"26475":5,"26476":4,"26477":4,"26478":4,"26479":3,"26480":4,"26481":3,"26482":5,"26483":2,"26484":2,"26485":4,"26486":2,"26487":3,"26488":3,"26489":3,"26490":2,"26491":3,"26492":2,"26493":4,"26494":3,"26495":1,"26496":1,"26497":3,"26498":2,"26499":1,"26500":4,"26501":1,"26502":2,"26503":4,"26504":4,"26505":4,"26506":5,"26507":3,"26508":1,"26509":2,"26510":5,"26511":2,"26512":3,"26513":2,"26514":2,"26515":4,"26516":5,"26517":2,"26518":2,"26519":5,"26520":1,"26521":4,"26522":3,"26523":2,"26524":4,"26525":3,"26526":2,"26527":5,"26528":3,"26529":4,"26530":4,"26531":1,"26532":3,"26533":3,"26534":4,"26535":1,"26536":4,"26537":4,"26538":4,"26539":4,"26540":4,"26541":3,"26542":4,"26543":2,"26544":2,"26545":1,"26546":3,"26547":1,"26548":5,"26549":1,"26550":3,"26551":2,"26552":3,"26553":5,"26554":1,"26555":3,"26556":3,"26557":1,"26558":4,"26559":2,"26560":4,"26561":3,"26562":3,"26563":3,"26564":5,"26565":2,"26566":3,"26567":3,"26568":2,"26569":2,"26570":3,"26571":1,"26572":2,"26573":3,"26574":4,"26575":5,"26576":3,"26577":3,"26578":4,"26579":4,"26580":4,"26581":3,"26582":3,"26583":1,"26584":2,"26585":3,"26586":3,"26587":4,"26588":4,"26589":4,"26590":2,"26591":4,"26592":2,"26593":4,"26594":3,"26595":4,"26596":2,"26597":5,"26598":2,"26599":3,"26600":1,"26601":3,"26602":2,"26603":1,"26604":3,"26605":4,"26606":3,"26607":2,"26608":3,"26609":3,"26610":4,"26611":2,"26612":2,"26613":3,"26614":3,"26615":2,"26616":4,"26617":2,"26618":3,"26619":2,"26620":2,"26621":2,"26622":3,"26623":3,"26624":5,"26625":1,"26626":2,"26627":2,"26628":4,"26629":4,"26630":3,"26631":1,"26632":4,"26633":4,"26634":1,"26635":3,"26636":2,"26637":4,"26638":4,"26639":3,"26640":3,"26641":4,"26642":4,"26643":4,"26644":3,"26645":3,"26646":4,"26647":4,"26648":3,"26649":3,"26650":4,"26651":1,"26652":1,"26653":4,"26654":3,"26655":1,"26656":3,"26657":2,"26658":3,"26659":4,"26660":4,"26661":3,"26662":3,"26663":3,"26664":3,"26665":5,"26666":1,"26667":2,"26668":5,"26669":5,"26670":3,"26671":2,"26672":2,"26673":5,"26674":2,"26675":4,"26676":3,"26677":1,"26678":2,"26679":3,"26680":3,"26681":1,"26682":3,"26683":3,"26684":2,"26685":3,"26686":4,"26687":3,"26688":2,"26689":1,"26690":2,"26691":4,"26692":3,"26693":4,"26694":4,"26695":3,"26696":3,"26697":2,"26698":4,"26699":2,"26700":4,"26701":3,"26702":2,"26703":3,"26704":2,"26705":4,"26706":1,"26707":2,"26708":3,"26709":3,"26710":2,"26711":3,"26712":4,"26713":5,"26714":4,"26715":5,"26716":1,"26717":1,"26718":4,"26719":3,"26720":3,"26721":3,"26722":4,"26723":2,"26724":4,"26725":4,"26726":3,"26727":3,"26728":4,"26729":2,"26730":3,"26731":4,"26732":4,"26733":4,"26734":3,"26735":4,"26736":3,"26737":2,"26738":3,"26739":2,"26740":2,"26741":4,"26742":4,"26743":2,"26744":3,"26745":4,"26746":3,"26747":1,"26748":4,"26749":2,"26750":4,"26751":4,"26752":1,"26753":4,"26754":2,"26755":4,"26756":3,"26757":2,"26758":2,"26759":4,"26760":3,"26761":2,"26762":2,"26763":3,"26764":3,"26765":3,"26766":5,"26767":3,"26768":1,"26769":4,"26770":3,"26771":4,"26772":4,"26773":2,"26774":2,"26775":4,"26776":3,"26777":2,"26778":4,"26779":4,"26780":2,"26781":3,"26782":2,"26783":4,"26784":4,"26785":5,"26786":2,"26787":3,"26788":3,"26789":4,"26790":3,"26791":4,"26792":4,"26793":2,"26794":3,"26795":5,"26796":4,"26797":3,"26798":4,"26799":3,"26800":2,"26801":2,"26802":2,"26803":3,"26804":4,"26805":2,"26806":3,"26807":5,"26808":4,"26809":4,"26810":3,"26811":3,"26812":3,"26813":1,"26814":2,"26815":3,"26816":4,"26817":3,"26818":3,"26819":4,"26820":5,"26821":5,"26822":2,"26823":1,"26824":3,"26825":2,"26826":1,"26827":4,"26828":1,"26829":4,"26830":5,"26831":4,"26832":3,"26833":3,"26834":4,"26835":2,"26836":2,"26837":4,"26838":4,"26839":4,"26840":4,"26841":3,"26842":2,"26843":3,"26844":4,"26845":3,"26846":3,"26847":3,"26848":4,"26849":3,"26850":2,"26851":2,"26852":1,"26853":4,"26854":3,"26855":4,"26856":4,"26857":2,"26858":1,"26859":2,"26860":4,"26861":1,"26862":1,"26863":1,"26864":1,"26865":3,"26866":4,"26867":2,"26868":2,"26869":2,"26870":5,"26871":3,"26872":3,"26873":2,"26874":3,"26875":3,"26876":2,"26877":2,"26878":3,"26879":3,"26880":2,"26881":1,"26882":4,"26883":3,"26884":3,"26885":2,"26886":3,"26887":3,"26888":2,"26889":2,"26890":3,"26891":2,"26892":1,"26893":4,"26894":2,"26895":3,"26896":5,"26897":3,"26898":3,"26899":3,"26900":2,"26901":2,"26902":4,"26903":3,"26904":3,"26905":3,"26906":2,"26907":4,"26908":3,"26909":3,"26910":4,"26911":4,"26912":1,"26913":3,"26914":2,"26915":4,"26916":3,"26917":4,"26918":1,"26919":2,"26920":3,"26921":3,"26922":4,"26923":4,"26924":4,"26925":2,"26926":4,"26927":4,"26928":3,"26929":3,"26930":2,"26931":4,"26932":5,"26933":3,"26934":1,"26935":3,"26936":2,"26937":3,"26938":3,"26939":4,"26940":3,"26941":3,"26942":5,"26943":3,"26944":3,"26945":2,"26946":3,"26947":2,"26948":3,"26949":3,"26950":2,"26951":4,"26952":1,"26953":3,"26954":4,"26955":4,"26956":2,"26957":4,"26958":4,"26959":4,"26960":1,"26961":4,"26962":3,"26963":1,"26964":2,"26965":3,"26966":3,"26967":1,"26968":2,"26969":5,"26970":3,"26971":4,"26972":4,"26973":4,"26974":5,"26975":5,"26976":4,"26977":3,"26978":1,"26979":5,"26980":2,"26981":2,"26982":4,"26983":3,"26984":5,"26985":5,"26986":3,"26987":2,"26988":3,"26989":1,"26990":2,"26991":2,"26992":4,"26993":4,"26994":4,"26995":2,"26996":5,"26997":1,"26998":1,"26999":3,"27000":1,"27001":4,"27002":2,"27003":3,"27004":3,"27005":3,"27006":3,"27007":5,"27008":4,"27009":3,"27010":4,"27011":1,"27012":5,"27013":2,"27014":1,"27015":3,"27016":2,"27017":4,"27018":2,"27019":3,"27020":2,"27021":5,"27022":3,"27023":3,"27024":4,"27025":3,"27026":3,"27027":4,"27028":1,"27029":3,"27030":4,"27031":4,"27032":3,"27033":1,"27034":5,"27035":4,"27036":3,"27037":5,"27038":3,"27039":3,"27040":3,"27041":2,"27042":2,"27043":2,"27044":5,"27045":3,"27046":2,"27047":3,"27048":4,"27049":4,"27050":3,"27051":2,"27052":2,"27053":5,"27054":2,"27055":2,"27056":1,"27057":2,"27058":3,"27059":4,"27060":2,"27061":3,"27062":4,"27063":2,"27064":2,"27065":3,"27066":3,"27067":4,"27068":2,"27069":4,"27070":3,"27071":1,"27072":3,"27073":2,"27074":1,"27075":2,"27076":3,"27077":3,"27078":2,"27079":3,"27080":4,"27081":2,"27082":4,"27083":4,"27084":4,"27085":4,"27086":2,"27087":3,"27088":3,"27089":3,"27090":2,"27091":5,"27092":4,"27093":2,"27094":2,"27095":3,"27096":2,"27097":4,"27098":4,"27099":3,"27100":4,"27101":4,"27102":2,"27103":1,"27104":4,"27105":4,"27106":3,"27107":3,"27108":2,"27109":3,"27110":3,"27111":3,"27112":4,"27113":5,"27114":4,"27115":3,"27116":4,"27117":2,"27118":3,"27119":3,"27120":3,"27121":4,"27122":4,"27123":2,"27124":3,"27125":4,"27126":3,"27127":3,"27128":4,"27129":1,"27130":5,"27131":5,"27132":4,"27133":3,"27134":3,"27135":4,"27136":4,"27137":2,"27138":3,"27139":2,"27140":3,"27141":3,"27142":2,"27143":5,"27144":5,"27145":4,"27146":2,"27147":1,"27148":3,"27149":1,"27150":2,"27151":1,"27152":4,"27153":4,"27154":4,"27155":1,"27156":2,"27157":1,"27158":3,"27159":2,"27160":3,"27161":3,"27162":1,"27163":3,"27164":3,"27165":3,"27166":2,"27167":4,"27168":2,"27169":4,"27170":4,"27171":4,"27172":2,"27173":4,"27174":5,"27175":3,"27176":3,"27177":3,"27178":3,"27179":2,"27180":3,"27181":4,"27182":4,"27183":2,"27184":1,"27185":1,"27186":3,"27187":3,"27188":2,"27189":4,"27190":3,"27191":2,"27192":2,"27193":3,"27194":2,"27195":4,"27196":3,"27197":2,"27198":4,"27199":2,"27200":1,"27201":3,"27202":3,"27203":1,"27204":3,"27205":3,"27206":4,"27207":2,"27208":2,"27209":1,"27210":3,"27211":2,"27212":2,"27213":3,"27214":2,"27215":4,"27216":2,"27217":4,"27218":3,"27219":4,"27220":2,"27221":2,"27222":4,"27223":4,"27224":2,"27225":5,"27226":4,"27227":3,"27228":4,"27229":3,"27230":4,"27231":4,"27232":1,"27233":4,"27234":2,"27235":3,"27236":2,"27237":3,"27238":3,"27239":3,"27240":5,"27241":3,"27242":4,"27243":3,"27244":1,"27245":2,"27246":3,"27247":2,"27248":2,"27249":2,"27250":3,"27251":3,"27252":1,"27253":2,"27254":3,"27255":4,"27256":4,"27257":5,"27258":3,"27259":2,"27260":1,"27261":4,"27262":3,"27263":4,"27264":2,"27265":2,"27266":1,"27267":3,"27268":3,"27269":2,"27270":4,"27271":4,"27272":4,"27273":2,"27274":2,"27275":3,"27276":1,"27277":4,"27278":5,"27279":4,"27280":2,"27281":3,"27282":4,"27283":4,"27284":4,"27285":5,"27286":2,"27287":3,"27288":2,"27289":4,"27290":3,"27291":4,"27292":4,"27293":5,"27294":3,"27295":2,"27296":1,"27297":3,"27298":2,"27299":4,"27300":1,"27301":5,"27302":2,"27303":4,"27304":2,"27305":2,"27306":2,"27307":3,"27308":3,"27309":5,"27310":2,"27311":4,"27312":3,"27313":3,"27314":1,"27315":3,"27316":2,"27317":4,"27318":3,"27319":2,"27320":5,"27321":2,"27322":2,"27323":2,"27324":3,"27325":4,"27326":4,"27327":2,"27328":3,"27329":5,"27330":3,"27331":2,"27332":4,"27333":2,"27334":5,"27335":4,"27336":3,"27337":3,"27338":4,"27339":3,"27340":3,"27341":3,"27342":2,"27343":5,"27344":4,"27345":5,"27346":3,"27347":3,"27348":4,"27349":3,"27350":3,"27351":2,"27352":2,"27353":2,"27354":3,"27355":4,"27356":2,"27357":3,"27358":1,"27359":2,"27360":3,"27361":3,"27362":2,"27363":2,"27364":3,"27365":4,"27366":1,"27367":3,"27368":4,"27369":4,"27370":1,"27371":3,"27372":1,"27373":3,"27374":3,"27375":4,"27376":3,"27377":3,"27378":4,"27379":2,"27380":4,"27381":3,"27382":3,"27383":3,"27384":3,"27385":4,"27386":1,"27387":4,"27388":4,"27389":4,"27390":2,"27391":2,"27392":3,"27393":1,"27394":4,"27395":3,"27396":4,"27397":2,"27398":3,"27399":5,"27400":2,"27401":5,"27402":5,"27403":2,"27404":4,"27405":1,"27406":1,"27407":3,"27408":4,"27409":4,"27410":2,"27411":1,"27412":5,"27413":3,"27414":3,"27415":2,"27416":4,"27417":4,"27418":2,"27419":3,"27420":1,"27421":3,"27422":1,"27423":4,"27424":3,"27425":3,"27426":4,"27427":5,"27428":4,"27429":4,"27430":3,"27431":2,"27432":4,"27433":4,"27434":3,"27435":4,"27436":4,"27437":5,"27438":5,"27439":3,"27440":5,"27441":2,"27442":3,"27443":4,"27444":4,"27445":5,"27446":3,"27447":5,"27448":2,"27449":5,"27450":3,"27451":4,"27452":3,"27453":3,"27454":2,"27455":2,"27456":4,"27457":2,"27458":4,"27459":4,"27460":2,"27461":4,"27462":3,"27463":2,"27464":1,"27465":4,"27466":3,"27467":3,"27468":3,"27469":3,"27470":4,"27471":4,"27472":5,"27473":3,"27474":3,"27475":3,"27476":4,"27477":3,"27478":1,"27479":2,"27480":3,"27481":3,"27482":5,"27483":5,"27484":5,"27485":4,"27486":3,"27487":3,"27488":3,"27489":2,"27490":1,"27491":2,"27492":5,"27493":4,"27494":2,"27495":2,"27496":4,"27497":4,"27498":2,"27499":2,"27500":4,"27501":2,"27502":2,"27503":4,"27504":2,"27505":4,"27506":4,"27507":2,"27508":2,"27509":3,"27510":4,"27511":1,"27512":3,"27513":3,"27514":3,"27515":4,"27516":3,"27517":3,"27518":3,"27519":2,"27520":4,"27521":2,"27522":1,"27523":3,"27524":1,"27525":2,"27526":2,"27527":4,"27528":3,"27529":3,"27530":2,"27531":4,"27532":2,"27533":2,"27534":4,"27535":2,"27536":3,"27537":4,"27538":2,"27539":3,"27540":4,"27541":2,"27542":4,"27543":3,"27544":4,"27545":3,"27546":4,"27547":4,"27548":4,"27549":2,"27550":3,"27551":3,"27552":4,"27553":2,"27554":4,"27555":3,"27556":2,"27557":5,"27558":2,"27559":2,"27560":4,"27561":3,"27562":5,"27563":2,"27564":4,"27565":4,"27566":3,"27567":2,"27568":3,"27569":3,"27570":2,"27571":5,"27572":3,"27573":4,"27574":3,"27575":2,"27576":4,"27577":2,"27578":3,"27579":1,"27580":3,"27581":4,"27582":3,"27583":5,"27584":3,"27585":3,"27586":3,"27587":4,"27588":3,"27589":1,"27590":4,"27591":4,"27592":1,"27593":2,"27594":4,"27595":2,"27596":2,"27597":3,"27598":2,"27599":1,"27600":3,"27601":3,"27602":1,"27603":2,"27604":3,"27605":3,"27606":3,"27607":4,"27608":5,"27609":3,"27610":3,"27611":3,"27612":2,"27613":2,"27614":2,"27615":5,"27616":3,"27617":4,"27618":3,"27619":3,"27620":3,"27621":4,"27622":3,"27623":3,"27624":3,"27625":3,"27626":5,"27627":2,"27628":3,"27629":5,"27630":4,"27631":3,"27632":5,"27633":1,"27634":5,"27635":1,"27636":4,"27637":4,"27638":2,"27639":2,"27640":1,"27641":2,"27642":4,"27643":3,"27644":3,"27645":2,"27646":4,"27647":3,"27648":5,"27649":3,"27650":4,"27651":4,"27652":2,"27653":5,"27654":3,"27655":2,"27656":2,"27657":3,"27658":3,"27659":2,"27660":1,"27661":3,"27662":3,"27663":3,"27664":4,"27665":3,"27666":3,"27667":4,"27668":3,"27669":2,"27670":2,"27671":2,"27672":4,"27673":4,"27674":2,"27675":3,"27676":2,"27677":4,"27678":1,"27679":2,"27680":3,"27681":4,"27682":4,"27683":2,"27684":1,"27685":2,"27686":5,"27687":5,"27688":1,"27689":4,"27690":5,"27691":2,"27692":2,"27693":4,"27694":2,"27695":2,"27696":2,"27697":3,"27698":4,"27699":4,"27700":3,"27701":4,"27702":3,"27703":2,"27704":1,"27705":2,"27706":2,"27707":4,"27708":3,"27709":4,"27710":1,"27711":4,"27712":3,"27713":3,"27714":4,"27715":3,"27716":4,"27717":4,"27718":1,"27719":2,"27720":2,"27721":3,"27722":3,"27723":3,"27724":5,"27725":2,"27726":1,"27727":3,"27728":4,"27729":3,"27730":2,"27731":2,"27732":3,"27733":3,"27734":4,"27735":4,"27736":3,"27737":3,"27738":2,"27739":4,"27740":2,"27741":4,"27742":4,"27743":3,"27744":2,"27745":2,"27746":3,"27747":5,"27748":3,"27749":3,"27750":3,"27751":4,"27752":4,"27753":3,"27754":5,"27755":2,"27756":1,"27757":3,"27758":4,"27759":3,"27760":2,"27761":1,"27762":3,"27763":4,"27764":4,"27765":3,"27766":4,"27767":4,"27768":1,"27769":4,"27770":3,"27771":3,"27772":4,"27773":2,"27774":4,"27775":2,"27776":5,"27777":4,"27778":5,"27779":3,"27780":4,"27781":2,"27782":4,"27783":4,"27784":3,"27785":4,"27786":1,"27787":3,"27788":4,"27789":4,"27790":2,"27791":1,"27792":4,"27793":5,"27794":4,"27795":3,"27796":4,"27797":3,"27798":3,"27799":5,"27800":2,"27801":4,"27802":3,"27803":3,"27804":5,"27805":3,"27806":3,"27807":1,"27808":2,"27809":4,"27810":4,"27811":1,"27812":1,"27813":3,"27814":1,"27815":4,"27816":2,"27817":3,"27818":1,"27819":3,"27820":2,"27821":1,"27822":3,"27823":4,"27824":2,"27825":2,"27826":3,"27827":2,"27828":2,"27829":1,"27830":4,"27831":3,"27832":4,"27833":4,"27834":3,"27835":3,"27836":3,"27837":2,"27838":4,"27839":1,"27840":2,"27841":2,"27842":3,"27843":3,"27844":2,"27845":4,"27846":2,"27847":3,"27848":1,"27849":4,"27850":4,"27851":1,"27852":3,"27853":2,"27854":3,"27855":2,"27856":3,"27857":3,"27858":2,"27859":4,"27860":2,"27861":4,"27862":4,"27863":3,"27864":4,"27865":2,"27866":2,"27867":2,"27868":3,"27869":4,"27870":3,"27871":3,"27872":5,"27873":3,"27874":2,"27875":3,"27876":4,"27877":2,"27878":2,"27879":1,"27880":4,"27881":3,"27882":2,"27883":1,"27884":2,"27885":1,"27886":2,"27887":3,"27888":4,"27889":2,"27890":3,"27891":3,"27892":2,"27893":3,"27894":2,"27895":3,"27896":3,"27897":4,"27898":3,"27899":1,"27900":4,"27901":3,"27902":1,"27903":2,"27904":2,"27905":3,"27906":4,"27907":2,"27908":5,"27909":1,"27910":4,"27911":3,"27912":3,"27913":2,"27914":1,"27915":3,"27916":1,"27917":2,"27918":2,"27919":5,"27920":3,"27921":3,"27922":4,"27923":3,"27924":3,"27925":1,"27926":3,"27927":2,"27928":3,"27929":4,"27930":2,"27931":3,"27932":4,"27933":3,"27934":2,"27935":3,"27936":5,"27937":4,"27938":4,"27939":4,"27940":4,"27941":3,"27942":3,"27943":4,"27944":1,"27945":3,"27946":3,"27947":3,"27948":3,"27949":2,"27950":4,"27951":2,"27952":3,"27953":3,"27954":4,"27955":2,"27956":3,"27957":4,"27958":3,"27959":2,"27960":4,"27961":4,"27962":3,"27963":1,"27964":3,"27965":2,"27966":1,"27967":4,"27968":2,"27969":4,"27970":3,"27971":2,"27972":3,"27973":3,"27974":3,"27975":1,"27976":3,"27977":3,"27978":1,"27979":3,"27980":3,"27981":4,"27982":3,"27983":3,"27984":4,"27985":4,"27986":3,"27987":3,"27988":2,"27989":5,"27990":2,"27991":3,"27992":2,"27993":5,"27994":3,"27995":5,"27996":2,"27997":4,"27998":2,"27999":4,"28000":4,"28001":4,"28002":4,"28003":1,"28004":2,"28005":4,"28006":3,"28007":5,"28008":3,"28009":4,"28010":3,"28011":3,"28012":3,"28013":2,"28014":3,"28015":3,"28016":4,"28017":2,"28018":5,"28019":2,"28020":4,"28021":4,"28022":4,"28023":4,"28024":5,"28025":4,"28026":4,"28027":5,"28028":3,"28029":1,"28030":4,"28031":4,"28032":4,"28033":2,"28034":2,"28035":4,"28036":3,"28037":1,"28038":4,"28039":4,"28040":3,"28041":1,"28042":2,"28043":2,"28044":3,"28045":3,"28046":1,"28047":4,"28048":1,"28049":2,"28050":3,"28051":2,"28052":4,"28053":2,"28054":4,"28055":1,"28056":1,"28057":4,"28058":3,"28059":3,"28060":3,"28061":2,"28062":4,"28063":3,"28064":2,"28065":2,"28066":3,"28067":3,"28068":2,"28069":4,"28070":1,"28071":2,"28072":5,"28073":4,"28074":3,"28075":2,"28076":4,"28077":2,"28078":2,"28079":4,"28080":1,"28081":3,"28082":3,"28083":3,"28084":3,"28085":4,"28086":3,"28087":3,"28088":4,"28089":1,"28090":3,"28091":3,"28092":2,"28093":2,"28094":2,"28095":2,"28096":4,"28097":1,"28098":3,"28099":4,"28100":4,"28101":2,"28102":3,"28103":4,"28104":4,"28105":3,"28106":4,"28107":4,"28108":4,"28109":3,"28110":4,"28111":1,"28112":3,"28113":4,"28114":4,"28115":3,"28116":1,"28117":3,"28118":4,"28119":2,"28120":5,"28121":3,"28122":5,"28123":3,"28124":5,"28125":2,"28126":4,"28127":4,"28128":1,"28129":3,"28130":3,"28131":4,"28132":5,"28133":2,"28134":2,"28135":3,"28136":1,"28137":3,"28138":4,"28139":3,"28140":3,"28141":3,"28142":3,"28143":3,"28144":4,"28145":3,"28146":3,"28147":3,"28148":3,"28149":4,"28150":3,"28151":3,"28152":5,"28153":2,"28154":5,"28155":4,"28156":4,"28157":3,"28158":2,"28159":4,"28160":5,"28161":1,"28162":2,"28163":4,"28164":2,"28165":4,"28166":3,"28167":4,"28168":2,"28169":2,"28170":5,"28171":3,"28172":3,"28173":3,"28174":4,"28175":3,"28176":2,"28177":5,"28178":3,"28179":2,"28180":3,"28181":4,"28182":4,"28183":3,"28184":3,"28185":1,"28186":2,"28187":3,"28188":2,"28189":4,"28190":2,"28191":2,"28192":2,"28193":2,"28194":4,"28195":4,"28196":2,"28197":3,"28198":5,"28199":3,"28200":3,"28201":4,"28202":3,"28203":3,"28204":2,"28205":2,"28206":5,"28207":3,"28208":3,"28209":3,"28210":2,"28211":1,"28212":2,"28213":4,"28214":3,"28215":4,"28216":3,"28217":4,"28218":4,"28219":4,"28220":2,"28221":2,"28222":3,"28223":4,"28224":4,"28225":4,"28226":3,"28227":2,"28228":2,"28229":5,"28230":5,"28231":4,"28232":3,"28233":3,"28234":4,"28235":4,"28236":4,"28237":5,"28238":3,"28239":4,"28240":3,"28241":2,"28242":3,"28243":4,"28244":3,"28245":3,"28246":3,"28247":3,"28248":3,"28249":2,"28250":4,"28251":1,"28252":4,"28253":4,"28254":3,"28255":1,"28256":1,"28257":4,"28258":2,"28259":3,"28260":4,"28261":3,"28262":3,"28263":1,"28264":4,"28265":4,"28266":1,"28267":5,"28268":4,"28269":3,"28270":4,"28271":4,"28272":4,"28273":4,"28274":3,"28275":3,"28276":2,"28277":3,"28278":3,"28279":4,"28280":4,"28281":4,"28282":5,"28283":3,"28284":5,"28285":4,"28286":3,"28287":1,"28288":3,"28289":2,"28290":4,"28291":3,"28292":3,"28293":3,"28294":3,"28295":3,"28296":1,"28297":3,"28298":4,"28299":2,"28300":3,"28301":4,"28302":1,"28303":1,"28304":3,"28305":4,"28306":3,"28307":5,"28308":2,"28309":4,"28310":3,"28311":3,"28312":2,"28313":3,"28314":4,"28315":2,"28316":3,"28317":2,"28318":3,"28319":5,"28320":2,"28321":3,"28322":2,"28323":2,"28324":4,"28325":4,"28326":4,"28327":1,"28328":2,"28329":4,"28330":1,"28331":3,"28332":1,"28333":1,"28334":5,"28335":3,"28336":2,"28337":3,"28338":3,"28339":3,"28340":3,"28341":2,"28342":2,"28343":2,"28344":1,"28345":3,"28346":3,"28347":2,"28348":5,"28349":3,"28350":2,"28351":5,"28352":3,"28353":3,"28354":2,"28355":2,"28356":1,"28357":4,"28358":3,"28359":3,"28360":3,"28361":4,"28362":3,"28363":3,"28364":1,"28365":2,"28366":3,"28367":3,"28368":3,"28369":4,"28370":4,"28371":4,"28372":4,"28373":3,"28374":4,"28375":1,"28376":3,"28377":4,"28378":3,"28379":3,"28380":1,"28381":3,"28382":2,"28383":1,"28384":5,"28385":4,"28386":2,"28387":2,"28388":5,"28389":3,"28390":3,"28391":5,"28392":3,"28393":3,"28394":2,"28395":3,"28396":3,"28397":3,"28398":2,"28399":5,"28400":3,"28401":4,"28402":2,"28403":2,"28404":3,"28405":2,"28406":2,"28407":4,"28408":2,"28409":2,"28410":3,"28411":4,"28412":4,"28413":3,"28414":1,"28415":5,"28416":3,"28417":3,"28418":1,"28419":3,"28420":4,"28421":2,"28422":4,"28423":5,"28424":3,"28425":5,"28426":2,"28427":3,"28428":3,"28429":2,"28430":4,"28431":2,"28432":4,"28433":2,"28434":2,"28435":3,"28436":3,"28437":5,"28438":4,"28439":3,"28440":3,"28441":4,"28442":4,"28443":3,"28444":4,"28445":5,"28446":1,"28447":3,"28448":4,"28449":4,"28450":3,"28451":1,"28452":1,"28453":2,"28454":3,"28455":1,"28456":3,"28457":2,"28458":3,"28459":3,"28460":2,"28461":4,"28462":2,"28463":1,"28464":2,"28465":2,"28466":3,"28467":3,"28468":2,"28469":1,"28470":4,"28471":3,"28472":2,"28473":1,"28474":2,"28475":3,"28476":2,"28477":2,"28478":1,"28479":3,"28480":1,"28481":3,"28482":3,"28483":3,"28484":2,"28485":4,"28486":2,"28487":2,"28488":3,"28489":3,"28490":3,"28491":2,"28492":2,"28493":3,"28494":2,"28495":3,"28496":3,"28497":5,"28498":5,"28499":4,"28500":5,"28501":1,"28502":4,"28503":1,"28504":4,"28505":1,"28506":4,"28507":2,"28508":3,"28509":2,"28510":2,"28511":3,"28512":4,"28513":1,"28514":1,"28515":3,"28516":4,"28517":3,"28518":3,"28519":2,"28520":2,"28521":5,"28522":3,"28523":2,"28524":4,"28525":4,"28526":3,"28527":2,"28528":3,"28529":4,"28530":3,"28531":3,"28532":2,"28533":5,"28534":3,"28535":4,"28536":3,"28537":4,"28538":3,"28539":3,"28540":2,"28541":2,"28542":2,"28543":5,"28544":2,"28545":4,"28546":4,"28547":2,"28548":2,"28549":3,"28550":2,"28551":1,"28552":2,"28553":4,"28554":4,"28555":5,"28556":4,"28557":2,"28558":4,"28559":4,"28560":2,"28561":4,"28562":1,"28563":3,"28564":3,"28565":1,"28566":3,"28567":5,"28568":2,"28569":5,"28570":2,"28571":2,"28572":3,"28573":3,"28574":4,"28575":3,"28576":1,"28577":4,"28578":2,"28579":4,"28580":3,"28581":3,"28582":3,"28583":3,"28584":1,"28585":2,"28586":2,"28587":2,"28588":3,"28589":3,"28590":3,"28591":2,"28592":4,"28593":2,"28594":4,"28595":2,"28596":1,"28597":3,"28598":1,"28599":2,"28600":2,"28601":3,"28602":2,"28603":2,"28604":2,"28605":3,"28606":1,"28607":1,"28608":3,"28609":1,"28610":4,"28611":3,"28612":3,"28613":4,"28614":2,"28615":3,"28616":4,"28617":3,"28618":3,"28619":4,"28620":4,"28621":3,"28622":1,"28623":3,"28624":2,"28625":3,"28626":2,"28627":1,"28628":2,"28629":4,"28630":3,"28631":4,"28632":3,"28633":2,"28634":3,"28635":4,"28636":2,"28637":4,"28638":3,"28639":4,"28640":1,"28641":2,"28642":3,"28643":4,"28644":2,"28645":4,"28646":3,"28647":3,"28648":3,"28649":3,"28650":2,"28651":3,"28652":1,"28653":2,"28654":2,"28655":4,"28656":2,"28657":3,"28658":3,"28659":3,"28660":2,"28661":2,"28662":3,"28663":3,"28664":3,"28665":3,"28666":1,"28667":2,"28668":4,"28669":4,"28670":2,"28671":4,"28672":3,"28673":3,"28674":3,"28675":3,"28676":2,"28677":3,"28678":2,"28679":1,"28680":1,"28681":3,"28682":4,"28683":3,"28684":5,"28685":1,"28686":2,"28687":3,"28688":4,"28689":1,"28690":3,"28691":4,"28692":4,"28693":3,"28694":4,"28695":4,"28696":2,"28697":3,"28698":4,"28699":3,"28700":4,"28701":4,"28702":5,"28703":3,"28704":5,"28705":2,"28706":3,"28707":3,"28708":4,"28709":3,"28710":2,"28711":2,"28712":5,"28713":2,"28714":2,"28715":3,"28716":2,"28717":3,"28718":3,"28719":3,"28720":3,"28721":3,"28722":1,"28723":3,"28724":5,"28725":4,"28726":2,"28727":3,"28728":4,"28729":2,"28730":1,"28731":3,"28732":3,"28733":2,"28734":4,"28735":3,"28736":3,"28737":3,"28738":4,"28739":4,"28740":4,"28741":3,"28742":3,"28743":4,"28744":3,"28745":3,"28746":1,"28747":2,"28748":4,"28749":3,"28750":3,"28751":3,"28752":3,"28753":2,"28754":3,"28755":2,"28756":3,"28757":2,"28758":4,"28759":3,"28760":1,"28761":2,"28762":4,"28763":2,"28764":2,"28765":1,"28766":4,"28767":2,"28768":4,"28769":3,"28770":5,"28771":3,"28772":5,"28773":2,"28774":1,"28775":5,"28776":3,"28777":2,"28778":4,"28779":3,"28780":1,"28781":3,"28782":3,"28783":3,"28784":3,"28785":3,"28786":2,"28787":4,"28788":3,"28789":3,"28790":4,"28791":2,"28792":3,"28793":3,"28794":4,"28795":2,"28796":4,"28797":2,"28798":5,"28799":4,"28800":2,"28801":2,"28802":4,"28803":2,"28804":2,"28805":4,"28806":5,"28807":1,"28808":4,"28809":4,"28810":4,"28811":3,"28812":2,"28813":3,"28814":5,"28815":4,"28816":4,"28817":2,"28818":2,"28819":3,"28820":1,"28821":2,"28822":4,"28823":2,"28824":3,"28825":4,"28826":4,"28827":4,"28828":4,"28829":3,"28830":3,"28831":4,"28832":5,"28833":3,"28834":1,"28835":3,"28836":2,"28837":3,"28838":2,"28839":5,"28840":4,"28841":3,"28842":4,"28843":4,"28844":4,"28845":2,"28846":3,"28847":3,"28848":3,"28849":4,"28850":3,"28851":2,"28852":4,"28853":2,"28854":4,"28855":3,"28856":2,"28857":4,"28858":3,"28859":2,"28860":4,"28861":3,"28862":3,"28863":4,"28864":4,"28865":2,"28866":4,"28867":3,"28868":2,"28869":4,"28870":1,"28871":4,"28872":3,"28873":4,"28874":5,"28875":2,"28876":4,"28877":5,"28878":2,"28879":4,"28880":1,"28881":5,"28882":2,"28883":2,"28884":2,"28885":2,"28886":3,"28887":3,"28888":3,"28889":3,"28890":3,"28891":4,"28892":4,"28893":1,"28894":3,"28895":2,"28896":4,"28897":2,"28898":2,"28899":5,"28900":4,"28901":3,"28902":3,"28903":3,"28904":3,"28905":1,"28906":1,"28907":5,"28908":2,"28909":1,"28910":5,"28911":2,"28912":3,"28913":2,"28914":3,"28915":4,"28916":4,"28917":3,"28918":4,"28919":2,"28920":4,"28921":1,"28922":2,"28923":5,"28924":2,"28925":4,"28926":3,"28927":4,"28928":3,"28929":3,"28930":1,"28931":4,"28932":4,"28933":3,"28934":4,"28935":2,"28936":3,"28937":4,"28938":4,"28939":3,"28940":5,"28941":2,"28942":2,"28943":3,"28944":3,"28945":4,"28946":2,"28947":3,"28948":2,"28949":4,"28950":4,"28951":1,"28952":4,"28953":2,"28954":4,"28955":1,"28956":2,"28957":3,"28958":4,"28959":3,"28960":5,"28961":3,"28962":3,"28963":4,"28964":2,"28965":4,"28966":2,"28967":5,"28968":3,"28969":4,"28970":3,"28971":3,"28972":2,"28973":2,"28974":4,"28975":4,"28976":4,"28977":3,"28978":4,"28979":4,"28980":3,"28981":4,"28982":1,"28983":4,"28984":3,"28985":4,"28986":4,"28987":5,"28988":3,"28989":4,"28990":4,"28991":3,"28992":2,"28993":3,"28994":5,"28995":2,"28996":4,"28997":1,"28998":4,"28999":3,"29000":4,"29001":3,"29002":2,"29003":1,"29004":3,"29005":2,"29006":1,"29007":4,"29008":2,"29009":3,"29010":2,"29011":5,"29012":4,"29013":3,"29014":4,"29015":1,"29016":3,"29017":3,"29018":4,"29019":3,"29020":3,"29021":5,"29022":3,"29023":3,"29024":3,"29025":4,"29026":4,"29027":3,"29028":4,"29029":4,"29030":1,"29031":2,"29032":3,"29033":5,"29034":1,"29035":3,"29036":1,"29037":3,"29038":3,"29039":3,"29040":4,"29041":3,"29042":5,"29043":3,"29044":4,"29045":4,"29046":1,"29047":2,"29048":3,"29049":3,"29050":3,"29051":4,"29052":3,"29053":1,"29054":4,"29055":2,"29056":4,"29057":3,"29058":4,"29059":3,"29060":3,"29061":3,"29062":4,"29063":3,"29064":5,"29065":3,"29066":3,"29067":2,"29068":1,"29069":4,"29070":4,"29071":4,"29072":3,"29073":5,"29074":4,"29075":3,"29076":4,"29077":2,"29078":3,"29079":4,"29080":4,"29081":2,"29082":5,"29083":2,"29084":3,"29085":3,"29086":3,"29087":3,"29088":1,"29089":2,"29090":2,"29091":3,"29092":5,"29093":4,"29094":2,"29095":1,"29096":3,"29097":3,"29098":2,"29099":3,"29100":4,"29101":1,"29102":3,"29103":1,"29104":4,"29105":3,"29106":2,"29107":4,"29108":5,"29109":3,"29110":4,"29111":4,"29112":3,"29113":3,"29114":3,"29115":2,"29116":3,"29117":4,"29118":4,"29119":4,"29120":2,"29121":1,"29122":3,"29123":3,"29124":2,"29125":4,"29126":3,"29127":4,"29128":4,"29129":1,"29130":1,"29131":3,"29132":3,"29133":1,"29134":1,"29135":3,"29136":3,"29137":3,"29138":3,"29139":2,"29140":5,"29141":4,"29142":1,"29143":1,"29144":2,"29145":2,"29146":2,"29147":4,"29148":3,"29149":2,"29150":3,"29151":3,"29152":3,"29153":2,"29154":3,"29155":4,"29156":3,"29157":3,"29158":2,"29159":2,"29160":3,"29161":3,"29162":4,"29163":3,"29164":1,"29165":5,"29166":2,"29167":2,"29168":4,"29169":3,"29170":4,"29171":3,"29172":2,"29173":3,"29174":3,"29175":3,"29176":4,"29177":3,"29178":4,"29179":2,"29180":3,"29181":5,"29182":1,"29183":2,"29184":5,"29185":4,"29186":3,"29187":3,"29188":2,"29189":2,"29190":2,"29191":2,"29192":5,"29193":2,"29194":4,"29195":3,"29196":1,"29197":4,"29198":4,"29199":2,"29200":3,"29201":2,"29202":2,"29203":4,"29204":2,"29205":3,"29206":2,"29207":3,"29208":1,"29209":4,"29210":3,"29211":4,"29212":3,"29213":4,"29214":3,"29215":3,"29216":3,"29217":5,"29218":3,"29219":2,"29220":4,"29221":3,"29222":3,"29223":4,"29224":5,"29225":3,"29226":2,"29227":4,"29228":5,"29229":4,"29230":2,"29231":4,"29232":5,"29233":2,"29234":3,"29235":3,"29236":2,"29237":4,"29238":4,"29239":4,"29240":4,"29241":3,"29242":5,"29243":2,"29244":4,"29245":1,"29246":4,"29247":3,"29248":2,"29249":2,"29250":3,"29251":2,"29252":2,"29253":2,"29254":3,"29255":4,"29256":2,"29257":3,"29258":2,"29259":3,"29260":4,"29261":4,"29262":4,"29263":3,"29264":4,"29265":4,"29266":2,"29267":3,"29268":4,"29269":2,"29270":3,"29271":3,"29272":3,"29273":2,"29274":1,"29275":1,"29276":5,"29277":4,"29278":2,"29279":3,"29280":5,"29281":3,"29282":3,"29283":3,"29284":3,"29285":1,"29286":4,"29287":5,"29288":1,"29289":5,"29290":2,"29291":1,"29292":3,"29293":4,"29294":1,"29295":5,"29296":4,"29297":5,"29298":4,"29299":4,"29300":4,"29301":3,"29302":3,"29303":4,"29304":3,"29305":4,"29306":2,"29307":3,"29308":2,"29309":2,"29310":1,"29311":3,"29312":3,"29313":4,"29314":3,"29315":3,"29316":3,"29317":3,"29318":2,"29319":5,"29320":3,"29321":3,"29322":3,"29323":2,"29324":3,"29325":4,"29326":4,"29327":4,"29328":3,"29329":3,"29330":5,"29331":1,"29332":2,"29333":3,"29334":2,"29335":3,"29336":2,"29337":4,"29338":2,"29339":1,"29340":4,"29341":2,"29342":4,"29343":4,"29344":2,"29345":3,"29346":2,"29347":4,"29348":2,"29349":3,"29350":1,"29351":2,"29352":3,"29353":3,"29354":3,"29355":2,"29356":2,"29357":3,"29358":5,"29359":2,"29360":3,"29361":4,"29362":2,"29363":3,"29364":4,"29365":2,"29366":1,"29367":3,"29368":4,"29369":4,"29370":1,"29371":2,"29372":2,"29373":2,"29374":3,"29375":1,"29376":3,"29377":4,"29378":3,"29379":1,"29380":4,"29381":1,"29382":3,"29383":4,"29384":3,"29385":2,"29386":5,"29387":3,"29388":3,"29389":4,"29390":4,"29391":1,"29392":3,"29393":4,"29394":2,"29395":3,"29396":3,"29397":2,"29398":2,"29399":2,"29400":3,"29401":5,"29402":3,"29403":3,"29404":4,"29405":3,"29406":1,"29407":3,"29408":2,"29409":3,"29410":4,"29411":3,"29412":5,"29413":2,"29414":4,"29415":1,"29416":5,"29417":3,"29418":4,"29419":2,"29420":4,"29421":3,"29422":3,"29423":4,"29424":4,"29425":5,"29426":1,"29427":3,"29428":2,"29429":2,"29430":4,"29431":4,"29432":5,"29433":5,"29434":2,"29435":4,"29436":1,"29437":5,"29438":4,"29439":5,"29440":3,"29441":2,"29442":2,"29443":3,"29444":1,"29445":4,"29446":4,"29447":5,"29448":2,"29449":2,"29450":2,"29451":2,"29452":4,"29453":2,"29454":4,"29455":2,"29456":4,"29457":3,"29458":1,"29459":4,"29460":2,"29461":4,"29462":1,"29463":1,"29464":4,"29465":3,"29466":4,"29467":2,"29468":3,"29469":4,"29470":2,"29471":2,"29472":3,"29473":5,"29474":3,"29475":3,"29476":3,"29477":3,"29478":3,"29479":4,"29480":5,"29481":2,"29482":2,"29483":4,"29484":1,"29485":3,"29486":1,"29487":3,"29488":1,"29489":3,"29490":3,"29491":4,"29492":2,"29493":4,"29494":3,"29495":4,"29496":3,"29497":3,"29498":4,"29499":3,"29500":2,"29501":5,"29502":1,"29503":4,"29504":5,"29505":4,"29506":2,"29507":4,"29508":3,"29509":3,"29510":2,"29511":4,"29512":1,"29513":2,"29514":5,"29515":4,"29516":4,"29517":4,"29518":1,"29519":5,"29520":2,"29521":3,"29522":4,"29523":4,"29524":4,"29525":2,"29526":2,"29527":2,"29528":4,"29529":5,"29530":4,"29531":5,"29532":2,"29533":3,"29534":4,"29535":2,"29536":3,"29537":2,"29538":2,"29539":2,"29540":2,"29541":4,"29542":4,"29543":3,"29544":4,"29545":3,"29546":4,"29547":3,"29548":4,"29549":3,"29550":4,"29551":3,"29552":4,"29553":3,"29554":2,"29555":4,"29556":2,"29557":4,"29558":3,"29559":3,"29560":3,"29561":2,"29562":2,"29563":4,"29564":4,"29565":1,"29566":4,"29567":3,"29568":3,"29569":3,"29570":4,"29571":4,"29572":4,"29573":4,"29574":3,"29575":4,"29576":4,"29577":4,"29578":3,"29579":4,"29580":3,"29581":3,"29582":1,"29583":2,"29584":1,"29585":1,"29586":1,"29587":4,"29588":4,"29589":3,"29590":3,"29591":3,"29592":5,"29593":3,"29594":1,"29595":5,"29596":3,"29597":1,"29598":4,"29599":2,"29600":2,"29601":1,"29602":5,"29603":3,"29604":2,"29605":2,"29606":3,"29607":2,"29608":4,"29609":5,"29610":3,"29611":4,"29612":3,"29613":2,"29614":4,"29615":2,"29616":3,"29617":2,"29618":2,"29619":4,"29620":2,"29621":2,"29622":3,"29623":3,"29624":4,"29625":3,"29626":4,"29627":3,"29628":2,"29629":4,"29630":2,"29631":4,"29632":4,"29633":3,"29634":2,"29635":4,"29636":2,"29637":5,"29638":4,"29639":2,"29640":2,"29641":2,"29642":3,"29643":4,"29644":4,"29645":4,"29646":2,"29647":2,"29648":3,"29649":2,"29650":3,"29651":2,"29652":3,"29653":4,"29654":1,"29655":3,"29656":3,"29657":3,"29658":3,"29659":2,"29660":2,"29661":1,"29662":4,"29663":4,"29664":4,"29665":3,"29666":4,"29667":3,"29668":3,"29669":5,"29670":3,"29671":3,"29672":5,"29673":3,"29674":3,"29675":1,"29676":3,"29677":3,"29678":4,"29679":1,"29680":4,"29681":4,"29682":4,"29683":2,"29684":3,"29685":3,"29686":4,"29687":1,"29688":2,"29689":2,"29690":4,"29691":5,"29692":3,"29693":3,"29694":3,"29695":2,"29696":3,"29697":3,"29698":4,"29699":3,"29700":4,"29701":3,"29702":4,"29703":5,"29704":3,"29705":5,"29706":4,"29707":4,"29708":1,"29709":4,"29710":2,"29711":3,"29712":3,"29713":3,"29714":3,"29715":3,"29716":3,"29717":2,"29718":4,"29719":3,"29720":3,"29721":3,"29722":3,"29723":2,"29724":3,"29725":4,"29726":3,"29727":3,"29728":3,"29729":4,"29730":4,"29731":1,"29732":3,"29733":2,"29734":2,"29735":1,"29736":4,"29737":3,"29738":4,"29739":2,"29740":1,"29741":2,"29742":3,"29743":2,"29744":4,"29745":4,"29746":3,"29747":3,"29748":2,"29749":4,"29750":4,"29751":3,"29752":4,"29753":3,"29754":3,"29755":3,"29756":4,"29757":5,"29758":5,"29759":4,"29760":4,"29761":3,"29762":2,"29763":1,"29764":3,"29765":4,"29766":3,"29767":3,"29768":1,"29769":1,"29770":4,"29771":2,"29772":3,"29773":5,"29774":2,"29775":1,"29776":2,"29777":5,"29778":2,"29779":3,"29780":3,"29781":4,"29782":1,"29783":1,"29784":4,"29785":5,"29786":1,"29787":2,"29788":2,"29789":4,"29790":2,"29791":3,"29792":3,"29793":3,"29794":4,"29795":1,"29796":2,"29797":3,"29798":3,"29799":3,"29800":3,"29801":5,"29802":2,"29803":1,"29804":2,"29805":5,"29806":1,"29807":5,"29808":4,"29809":4,"29810":1,"29811":4,"29812":2,"29813":2,"29814":2,"29815":4,"29816":4,"29817":2,"29818":2,"29819":1,"29820":4,"29821":4,"29822":3,"29823":4,"29824":3,"29825":1,"29826":2,"29827":3,"29828":3,"29829":1,"29830":4,"29831":4,"29832":2,"29833":3,"29834":2,"29835":2,"29836":5,"29837":2,"29838":2,"29839":2,"29840":4,"29841":1,"29842":2,"29843":2,"29844":3,"29845":3,"29846":4,"29847":2,"29848":4,"29849":1,"29850":1,"29851":1,"29852":2,"29853":2,"29854":4,"29855":3,"29856":3,"29857":2,"29858":3,"29859":4,"29860":3,"29861":3,"29862":3,"29863":4,"29864":2,"29865":4,"29866":3,"29867":4,"29868":4,"29869":5,"29870":1,"29871":2,"29872":3,"29873":4,"29874":3,"29875":3,"29876":3,"29877":4,"29878":3,"29879":4,"29880":4,"29881":3,"29882":5,"29883":4,"29884":4,"29885":2,"29886":4,"29887":3,"29888":4,"29889":1,"29890":3,"29891":3,"29892":5,"29893":3,"29894":2,"29895":1,"29896":3,"29897":2,"29898":3,"29899":4,"29900":2,"29901":2,"29902":3,"29903":3,"29904":4,"29905":3,"29906":5,"29907":3,"29908":3,"29909":2,"29910":4,"29911":3,"29912":3,"29913":4,"29914":3,"29915":4,"29916":3,"29917":4,"29918":5,"29919":1,"29920":3,"29921":3,"29922":4,"29923":2,"29924":1,"29925":3,"29926":1,"29927":2,"29928":2,"29929":4,"29930":4,"29931":3,"29932":5,"29933":3,"29934":2,"29935":2,"29936":1,"29937":2,"29938":1,"29939":3,"29940":4,"29941":3,"29942":2,"29943":1,"29944":4,"29945":2,"29946":3,"29947":2,"29948":3,"29949":4,"29950":1,"29951":3,"29952":3,"29953":4,"29954":1,"29955":3,"29956":4,"29957":3,"29958":4,"29959":3,"29960":1,"29961":1,"29962":3,"29963":2,"29964":1,"29965":4,"29966":1,"29967":3,"29968":4,"29969":2,"29970":4,"29971":3,"29972":4,"29973":3,"29974":3,"29975":3,"29976":4,"29977":4,"29978":3,"29979":3,"29980":1,"29981":4,"29982":4,"29983":3,"29984":3,"29985":4,"29986":1,"29987":1,"29988":2,"29989":3,"29990":5,"29991":3,"29992":3,"29993":1,"29994":4,"29995":1,"29996":2,"29997":4,"29998":2,"29999":3,"30000":4,"30001":3,"30002":5,"30003":1,"30004":2,"30005":3,"30006":3,"30007":3,"30008":3,"30009":2,"30010":4,"30011":2,"30012":4,"30013":5,"30014":1,"30015":3,"30016":3,"30017":2,"30018":2,"30019":2,"30020":4,"30021":3,"30022":4,"30023":3,"30024":2,"30025":1,"30026":4,"30027":3,"30028":3,"30029":3,"30030":1,"30031":3,"30032":3,"30033":4,"30034":2,"30035":4,"30036":4,"30037":4,"30038":5,"30039":3,"30040":2,"30041":2,"30042":3,"30043":4,"30044":1,"30045":2,"30046":4,"30047":2,"30048":4,"30049":3,"30050":2,"30051":3,"30052":3,"30053":3,"30054":2,"30055":1,"30056":4,"30057":3,"30058":2,"30059":4,"30060":5,"30061":2,"30062":4,"30063":5,"30064":2,"30065":4,"30066":3,"30067":1,"30068":2,"30069":2,"30070":3,"30071":3,"30072":4,"30073":1,"30074":4,"30075":4,"30076":3,"30077":3,"30078":5,"30079":3,"30080":4,"30081":2,"30082":2,"30083":2,"30084":5,"30085":4,"30086":3,"30087":1,"30088":5,"30089":2,"30090":3,"30091":3,"30092":3,"30093":1,"30094":2,"30095":4,"30096":4,"30097":3,"30098":5,"30099":2,"30100":2,"30101":4,"30102":2,"30103":2,"30104":4,"30105":4,"30106":3,"30107":3,"30108":2,"30109":1,"30110":3,"30111":3,"30112":3,"30113":4,"30114":2,"30115":1,"30116":4,"30117":5,"30118":1,"30119":2,"30120":4,"30121":2,"30122":2,"30123":4,"30124":5,"30125":4,"30126":3,"30127":2,"30128":3,"30129":2,"30130":4,"30131":4,"30132":4,"30133":4,"30134":2,"30135":3,"30136":3,"30137":4,"30138":5,"30139":3,"30140":2,"30141":3,"30142":1,"30143":5,"30144":2,"30145":3,"30146":3,"30147":5,"30148":4,"30149":4,"30150":4,"30151":3,"30152":4,"30153":3,"30154":3,"30155":1,"30156":4,"30157":4,"30158":4,"30159":3,"30160":2,"30161":3,"30162":5,"30163":3,"30164":3,"30165":2,"30166":4,"30167":1,"30168":4,"30169":4,"30170":4,"30171":3,"30172":1,"30173":2,"30174":1,"30175":1,"30176":4,"30177":4,"30178":2,"30179":4,"30180":3,"30181":1,"30182":3,"30183":3,"30184":2,"30185":4,"30186":3,"30187":2,"30188":3,"30189":4,"30190":4,"30191":2,"30192":4,"30193":2,"30194":3,"30195":2,"30196":3,"30197":2,"30198":4,"30199":3,"30200":2,"30201":3,"30202":3,"30203":3,"30204":3,"30205":4,"30206":3,"30207":3,"30208":3,"30209":3,"30210":4,"30211":3,"30212":4,"30213":1,"30214":3,"30215":4,"30216":3,"30217":4,"30218":2,"30219":5,"30220":4,"30221":5,"30222":3,"30223":4,"30224":3,"30225":5,"30226":4,"30227":4,"30228":3,"30229":3,"30230":3,"30231":4,"30232":4,"30233":5,"30234":3,"30235":4,"30236":3,"30237":2,"30238":1,"30239":3,"30240":3,"30241":3,"30242":4,"30243":5,"30244":4,"30245":5,"30246":4,"30247":4,"30248":1,"30249":4,"30250":3,"30251":2,"30252":3,"30253":4,"30254":1,"30255":3,"30256":5,"30257":2,"30258":2,"30259":2,"30260":3,"30261":1,"30262":2,"30263":1,"30264":3,"30265":2,"30266":3,"30267":4,"30268":4,"30269":2,"30270":4,"30271":2,"30272":3,"30273":4,"30274":4,"30275":2,"30276":4,"30277":2,"30278":2,"30279":2,"30280":3,"30281":3,"30282":2,"30283":1,"30284":5,"30285":5,"30286":1,"30287":5,"30288":1,"30289":2,"30290":1,"30291":3,"30292":4,"30293":3,"30294":3,"30295":4,"30296":2,"30297":2,"30298":3,"30299":4,"30300":3,"30301":3,"30302":2,"30303":2,"30304":2,"30305":3,"30306":4,"30307":3,"30308":2,"30309":3,"30310":4,"30311":5,"30312":3,"30313":2,"30314":4,"30315":2,"30316":2,"30317":1,"30318":4,"30319":1,"30320":4,"30321":4,"30322":4,"30323":2,"30324":3,"30325":4,"30326":3,"30327":1,"30328":1,"30329":5,"30330":3,"30331":3,"30332":4,"30333":5,"30334":4,"30335":4,"30336":5,"30337":3,"30338":1,"30339":3,"30340":3,"30341":3,"30342":3,"30343":5,"30344":4,"30345":1,"30346":3,"30347":4,"30348":2,"30349":1,"30350":3,"30351":4,"30352":2,"30353":3,"30354":3,"30355":4,"30356":5,"30357":2,"30358":2,"30359":3,"30360":1,"30361":3,"30362":3,"30363":4,"30364":4,"30365":5,"30366":1,"30367":2,"30368":2,"30369":5,"30370":2,"30371":2,"30372":3,"30373":1,"30374":2,"30375":3,"30376":3,"30377":4,"30378":4,"30379":3,"30380":2,"30381":1,"30382":1,"30383":3,"30384":4,"30385":2,"30386":4,"30387":3,"30388":4,"30389":3,"30390":3,"30391":5,"30392":4,"30393":3,"30394":3,"30395":2,"30396":2,"30397":5,"30398":1,"30399":1,"30400":3,"30401":3,"30402":4,"30403":2,"30404":2,"30405":4,"30406":2,"30407":1,"30408":4,"30409":2,"30410":1,"30411":3,"30412":1,"30413":3,"30414":3,"30415":3,"30416":2,"30417":3,"30418":3,"30419":2,"30420":4,"30421":1,"30422":5,"30423":5,"30424":5,"30425":3,"30426":4,"30427":2,"30428":4,"30429":4,"30430":4,"30431":1,"30432":1,"30433":3,"30434":3,"30435":4,"30436":4,"30437":4,"30438":2,"30439":3,"30440":4,"30441":3,"30442":2,"30443":1,"30444":3,"30445":3,"30446":1,"30447":4,"30448":3,"30449":2,"30450":2,"30451":2,"30452":4,"30453":2,"30454":4,"30455":4,"30456":2,"30457":2,"30458":3,"30459":4,"30460":3,"30461":2,"30462":3,"30463":3,"30464":1,"30465":3,"30466":3,"30467":3,"30468":3,"30469":3,"30470":3,"30471":2,"30472":3,"30473":4,"30474":4,"30475":4,"30476":4,"30477":4,"30478":1,"30479":4,"30480":2,"30481":3,"30482":3,"30483":1,"30484":3,"30485":5,"30486":3,"30487":3,"30488":3,"30489":4,"30490":5,"30491":3,"30492":4,"30493":3,"30494":2,"30495":3,"30496":3,"30497":2,"30498":3,"30499":2,"30500":2,"30501":3,"30502":3,"30503":3,"30504":4,"30505":2,"30506":3,"30507":1,"30508":2,"30509":2,"30510":4,"30511":3,"30512":5,"30513":3,"30514":4,"30515":3,"30516":4,"30517":5,"30518":1,"30519":4,"30520":4,"30521":2,"30522":5,"30523":3,"30524":3,"30525":2,"30526":3,"30527":3,"30528":3,"30529":1,"30530":3,"30531":3,"30532":3,"30533":1,"30534":4,"30535":3,"30536":4,"30537":4,"30538":3,"30539":1,"30540":3,"30541":3,"30542":3,"30543":3,"30544":2,"30545":4,"30546":4,"30547":3,"30548":3,"30549":2,"30550":5,"30551":2,"30552":2,"30553":2,"30554":4,"30555":4,"30556":1,"30557":4,"30558":1,"30559":4,"30560":4,"30561":3,"30562":5,"30563":4,"30564":3,"30565":3,"30566":3,"30567":4,"30568":3,"30569":3,"30570":3,"30571":2,"30572":1,"30573":4,"30574":3,"30575":3,"30576":3,"30577":4,"30578":2,"30579":2,"30580":1,"30581":3,"30582":2,"30583":3,"30584":3,"30585":4,"30586":3,"30587":4,"30588":4,"30589":4,"30590":1,"30591":2,"30592":2,"30593":3,"30594":3,"30595":5,"30596":2,"30597":3,"30598":3,"30599":3,"30600":2,"30601":4,"30602":2,"30603":2,"30604":3,"30605":2,"30606":5,"30607":3,"30608":2,"30609":4,"30610":5,"30611":5,"30612":3,"30613":2,"30614":5,"30615":3,"30616":3,"30617":2,"30618":5,"30619":4,"30620":1,"30621":4,"30622":4,"30623":2,"30624":3,"30625":3,"30626":1,"30627":4,"30628":5,"30629":1,"30630":1,"30631":1,"30632":1,"30633":5,"30634":3,"30635":4,"30636":4,"30637":2,"30638":3,"30639":3,"30640":4,"30641":3,"30642":4,"30643":3,"30644":3,"30645":3,"30646":3,"30647":1,"30648":4,"30649":3,"30650":3,"30651":2,"30652":5,"30653":2,"30654":2,"30655":2,"30656":4,"30657":1,"30658":3,"30659":3,"30660":1,"30661":2,"30662":2,"30663":1,"30664":2,"30665":4,"30666":2,"30667":4,"30668":5,"30669":2,"30670":3,"30671":3,"30672":2,"30673":3,"30674":1,"30675":4,"30676":3,"30677":4,"30678":3,"30679":4,"30680":2,"30681":2,"30682":3,"30683":1,"30684":3,"30685":3,"30686":3,"30687":5,"30688":2,"30689":4,"30690":3,"30691":4,"30692":3,"30693":2,"30694":4,"30695":4,"30696":2,"30697":2,"30698":1,"30699":3,"30700":4,"30701":1,"30702":2,"30703":3,"30704":4,"30705":3,"30706":2,"30707":3,"30708":3,"30709":3,"30710":5,"30711":2,"30712":3,"30713":2,"30714":4,"30715":3,"30716":3,"30717":2,"30718":3,"30719":2,"30720":4,"30721":3,"30722":4,"30723":2,"30724":4,"30725":2,"30726":1,"30727":2,"30728":2,"30729":2,"30730":4,"30731":5,"30732":2,"30733":3,"30734":3,"30735":3,"30736":3,"30737":5,"30738":2,"30739":3,"30740":3,"30741":2,"30742":4,"30743":3,"30744":4,"30745":2,"30746":3,"30747":4,"30748":2,"30749":2,"30750":4,"30751":3,"30752":4,"30753":1,"30754":4,"30755":4,"30756":1,"30757":3,"30758":5,"30759":3,"30760":1,"30761":5,"30762":3,"30763":2,"30764":2,"30765":5,"30766":1,"30767":3,"30768":3,"30769":4,"30770":3,"30771":1,"30772":4,"30773":3,"30774":4,"30775":4,"30776":2,"30777":2,"30778":5,"30779":4,"30780":3,"30781":2,"30782":4,"30783":4,"30784":2,"30785":2,"30786":4,"30787":2,"30788":1,"30789":3,"30790":3,"30791":3,"30792":3,"30793":3,"30794":3,"30795":3,"30796":5,"30797":3,"30798":5,"30799":4,"30800":3,"30801":3,"30802":3,"30803":3,"30804":3,"30805":2,"30806":4,"30807":2,"30808":2,"30809":3,"30810":1,"30811":2,"30812":4,"30813":3,"30814":3,"30815":2,"30816":2,"30817":3,"30818":1,"30819":4,"30820":4,"30821":4,"30822":3,"30823":4,"30824":4,"30825":2,"30826":1,"30827":2,"30828":3,"30829":3,"30830":1,"30831":3,"30832":4,"30833":3,"30834":4,"30835":5,"30836":3,"30837":3,"30838":4,"30839":2,"30840":4,"30841":4,"30842":3,"30843":2,"30844":4,"30845":2,"30846":3,"30847":5,"30848":5,"30849":4,"30850":3,"30851":3,"30852":1,"30853":5,"30854":4,"30855":3,"30856":2,"30857":2,"30858":3,"30859":4,"30860":3,"30861":5,"30862":2,"30863":3,"30864":2,"30865":2,"30866":3,"30867":2,"30868":2,"30869":2,"30870":3,"30871":3,"30872":4,"30873":4,"30874":3,"30875":2,"30876":2,"30877":1,"30878":4,"30879":4,"30880":5,"30881":5,"30882":2,"30883":1,"30884":2,"30885":3,"30886":4,"30887":3,"30888":4,"30889":3,"30890":2,"30891":3,"30892":2,"30893":3,"30894":3,"30895":3,"30896":3,"30897":3,"30898":2,"30899":4,"30900":2,"30901":4,"30902":3,"30903":4,"30904":3,"30905":5,"30906":4,"30907":4,"30908":4,"30909":3,"30910":3,"30911":2,"30912":4,"30913":1,"30914":4,"30915":2,"30916":3,"30917":4,"30918":2,"30919":2,"30920":2,"30921":3,"30922":2,"30923":3,"30924":2,"30925":4,"30926":3,"30927":2,"30928":2,"30929":2,"30930":3,"30931":1,"30932":3,"30933":3,"30934":2,"30935":3,"30936":3,"30937":2,"30938":4,"30939":4,"30940":4,"30941":3,"30942":3,"30943":1,"30944":3,"30945":2,"30946":4,"30947":4,"30948":2,"30949":5,"30950":5,"30951":3,"30952":3,"30953":2,"30954":4,"30955":5,"30956":2,"30957":2,"30958":3,"30959":2,"30960":4,"30961":3,"30962":4,"30963":3,"30964":2,"30965":4,"30966":4,"30967":4,"30968":4,"30969":2,"30970":3,"30971":1,"30972":1,"30973":4,"30974":4,"30975":2,"30976":3,"30977":1,"30978":2,"30979":3,"30980":3,"30981":3,"30982":4,"30983":1,"30984":4,"30985":2,"30986":4,"30987":4,"30988":3,"30989":1,"30990":2,"30991":2,"30992":1,"30993":3,"30994":1,"30995":3,"30996":4,"30997":3,"30998":3,"30999":3,"31000":3,"31001":2,"31002":4,"31003":1,"31004":4,"31005":4,"31006":3,"31007":3,"31008":1,"31009":5,"31010":3,"31011":4,"31012":3,"31013":3,"31014":3,"31015":2,"31016":3,"31017":1,"31018":5,"31019":2,"31020":4,"31021":1,"31022":2,"31023":4,"31024":3,"31025":4,"31026":4,"31027":2,"31028":3,"31029":2,"31030":4,"31031":2,"31032":3,"31033":3,"31034":4,"31035":3,"31036":2,"31037":2,"31038":3,"31039":5,"31040":3,"31041":3,"31042":4,"31043":4,"31044":4,"31045":5,"31046":3,"31047":4,"31048":3,"31049":4,"31050":4,"31051":2,"31052":3,"31053":5,"31054":2,"31055":2,"31056":3,"31057":5,"31058":3,"31059":3,"31060":4,"31061":3,"31062":4,"31063":3,"31064":3,"31065":4,"31066":1,"31067":4,"31068":5,"31069":3,"31070":2,"31071":3,"31072":3,"31073":3,"31074":3,"31075":1,"31076":2,"31077":4,"31078":2,"31079":3,"31080":2,"31081":1,"31082":2,"31083":2,"31084":4,"31085":5,"31086":4,"31087":2,"31088":2,"31089":3,"31090":4,"31091":2,"31092":4,"31093":2,"31094":3,"31095":5,"31096":3,"31097":4,"31098":1,"31099":2,"31100":3,"31101":4,"31102":2,"31103":2,"31104":3,"31105":3,"31106":3,"31107":3,"31108":3,"31109":5,"31110":4,"31111":1,"31112":1,"31113":2,"31114":2,"31115":4,"31116":4,"31117":4,"31118":5,"31119":1,"31120":3,"31121":5,"31122":5,"31123":2,"31124":3,"31125":4,"31126":3,"31127":4,"31128":5,"31129":4,"31130":3,"31131":5,"31132":2,"31133":3,"31134":4,"31135":2,"31136":2,"31137":5,"31138":3,"31139":4,"31140":5,"31141":3,"31142":3,"31143":1,"31144":3,"31145":5,"31146":3,"31147":4,"31148":3,"31149":3,"31150":4,"31151":2,"31152":3,"31153":3,"31154":3,"31155":2,"31156":4,"31157":3,"31158":4,"31159":3,"31160":3,"31161":5,"31162":4,"31163":5,"31164":2,"31165":5,"31166":3,"31167":3,"31168":4,"31169":5,"31170":3,"31171":2,"31172":1,"31173":3,"31174":3,"31175":2,"31176":2,"31177":4,"31178":3,"31179":4,"31180":2,"31181":2,"31182":3,"31183":5,"31184":3,"31185":4,"31186":5,"31187":5,"31188":2,"31189":2,"31190":3,"31191":2,"31192":2,"31193":4,"31194":1,"31195":3,"31196":5,"31197":2,"31198":2,"31199":3,"31200":2,"31201":1,"31202":4,"31203":3,"31204":2,"31205":4,"31206":4,"31207":4,"31208":2,"31209":2,"31210":5,"31211":4,"31212":1,"31213":5,"31214":2,"31215":2,"31216":5,"31217":3,"31218":3,"31219":2,"31220":4,"31221":4,"31222":2,"31223":2,"31224":5,"31225":3,"31226":4,"31227":4,"31228":3,"31229":3,"31230":3,"31231":3,"31232":4,"31233":2,"31234":3,"31235":2,"31236":4,"31237":2,"31238":1,"31239":3,"31240":2,"31241":2,"31242":3,"31243":4,"31244":3,"31245":4,"31246":4,"31247":4,"31248":3,"31249":4,"31250":4,"31251":3,"31252":1,"31253":4,"31254":3,"31255":4,"31256":4,"31257":4,"31258":3,"31259":4,"31260":2,"31261":4,"31262":2,"31263":2,"31264":4,"31265":2,"31266":1,"31267":4,"31268":2,"31269":3,"31270":2,"31271":4,"31272":1,"31273":4,"31274":4,"31275":2,"31276":3,"31277":5,"31278":2,"31279":3,"31280":2,"31281":4,"31282":3,"31283":2,"31284":2,"31285":4,"31286":4,"31287":5,"31288":5,"31289":4,"31290":5,"31291":4,"31292":3,"31293":3,"31294":4,"31295":2,"31296":3,"31297":4,"31298":4,"31299":3,"31300":1,"31301":1,"31302":4,"31303":3,"31304":5,"31305":2,"31306":2,"31307":4,"31308":4,"31309":3,"31310":3,"31311":3,"31312":1,"31313":1,"31314":1,"31315":3,"31316":4,"31317":1,"31318":4,"31319":2,"31320":4,"31321":1,"31322":3,"31323":3,"31324":2,"31325":5,"31326":2,"31327":1,"31328":3,"31329":2,"31330":4,"31331":4,"31332":3,"31333":1,"31334":2,"31335":4,"31336":1,"31337":3,"31338":3,"31339":2,"31340":3,"31341":2,"31342":3,"31343":4,"31344":4,"31345":1,"31346":3,"31347":2,"31348":3,"31349":5,"31350":2,"31351":4,"31352":5,"31353":3,"31354":2,"31355":3,"31356":3,"31357":3,"31358":1,"31359":3,"31360":3,"31361":3,"31362":2,"31363":4,"31364":2,"31365":3,"31366":3,"31367":1,"31368":3,"31369":3,"31370":2,"31371":1,"31372":3,"31373":3,"31374":3,"31375":4,"31376":3,"31377":2,"31378":2,"31379":5,"31380":3,"31381":3,"31382":4,"31383":3,"31384":1,"31385":2,"31386":2,"31387":2,"31388":2,"31389":3,"31390":3,"31391":1,"31392":5,"31393":3,"31394":2,"31395":4,"31396":3,"31397":4,"31398":3,"31399":5,"31400":4,"31401":3,"31402":4,"31403":2,"31404":4,"31405":3,"31406":4,"31407":4,"31408":2,"31409":4,"31410":4,"31411":4,"31412":2,"31413":2,"31414":2,"31415":3,"31416":4,"31417":1,"31418":2,"31419":3,"31420":1,"31421":3,"31422":3,"31423":3,"31424":3,"31425":4,"31426":3,"31427":3,"31428":5,"31429":3,"31430":4,"31431":4,"31432":3,"31433":3,"31434":3,"31435":3,"31436":4,"31437":5,"31438":3,"31439":2,"31440":3,"31441":1,"31442":3,"31443":2,"31444":4,"31445":2,"31446":2,"31447":2,"31448":4,"31449":4,"31450":3,"31451":2,"31452":4,"31453":1,"31454":4,"31455":2,"31456":3,"31457":2,"31458":4,"31459":4,"31460":3,"31461":2,"31462":3,"31463":2,"31464":3,"31465":2,"31466":2,"31467":4,"31468":4,"31469":3,"31470":1,"31471":2,"31472":4,"31473":4,"31474":3,"31475":1,"31476":4,"31477":4,"31478":2,"31479":4,"31480":3,"31481":3,"31482":3,"31483":2,"31484":3,"31485":1,"31486":4,"31487":3,"31488":5,"31489":3,"31490":3,"31491":3,"31492":3,"31493":3,"31494":3,"31495":4,"31496":3,"31497":4,"31498":4,"31499":4,"31500":3,"31501":2,"31502":4,"31503":1,"31504":1,"31505":1,"31506":3,"31507":5,"31508":2,"31509":2,"31510":3,"31511":3,"31512":2,"31513":2,"31514":4,"31515":3,"31516":3,"31517":3,"31518":2,"31519":2,"31520":1,"31521":2,"31522":2,"31523":3,"31524":3,"31525":4,"31526":1,"31527":2,"31528":2,"31529":4,"31530":4,"31531":2,"31532":3,"31533":3,"31534":1,"31535":3,"31536":1,"31537":2,"31538":4,"31539":5,"31540":1,"31541":4,"31542":2,"31543":4,"31544":3,"31545":2,"31546":2,"31547":1,"31548":1,"31549":5,"31550":2,"31551":2,"31552":3,"31553":1,"31554":2,"31555":4,"31556":2,"31557":5,"31558":3,"31559":1,"31560":4,"31561":2,"31562":3,"31563":4,"31564":3,"31565":1,"31566":2,"31567":3,"31568":5,"31569":4,"31570":2,"31571":2,"31572":2,"31573":3,"31574":3,"31575":3,"31576":4,"31577":1,"31578":2,"31579":3,"31580":4,"31581":4,"31582":2,"31583":3,"31584":3,"31585":4,"31586":4,"31587":3,"31588":2,"31589":4,"31590":1,"31591":3,"31592":2,"31593":3,"31594":4,"31595":2,"31596":4,"31597":4,"31598":3,"31599":3,"31600":4,"31601":2,"31602":3,"31603":2,"31604":5,"31605":4,"31606":3,"31607":3,"31608":4,"31609":1,"31610":5,"31611":3,"31612":4,"31613":3,"31614":1,"31615":2,"31616":3,"31617":4,"31618":1,"31619":5,"31620":3,"31621":4,"31622":3,"31623":4,"31624":5,"31625":4,"31626":2,"31627":1,"31628":4,"31629":3,"31630":3,"31631":3,"31632":4,"31633":4,"31634":4,"31635":3,"31636":4,"31637":3,"31638":3,"31639":4,"31640":3,"31641":4,"31642":2,"31643":2,"31644":3,"31645":2,"31646":3,"31647":2,"31648":5,"31649":3,"31650":2,"31651":3,"31652":3,"31653":2,"31654":4,"31655":5,"31656":3,"31657":3,"31658":1,"31659":2,"31660":2,"31661":1,"31662":3,"31663":3,"31664":2,"31665":3,"31666":3,"31667":5,"31668":2,"31669":4,"31670":2,"31671":4,"31672":4,"31673":4,"31674":2,"31675":1,"31676":3,"31677":4,"31678":3,"31679":4,"31680":4,"31681":5,"31682":1,"31683":4,"31684":3,"31685":4,"31686":3,"31687":3,"31688":3,"31689":2,"31690":4,"31691":4,"31692":4,"31693":3,"31694":5,"31695":4,"31696":5,"31697":1,"31698":3,"31699":3,"31700":4,"31701":2,"31702":3,"31703":3,"31704":2,"31705":3,"31706":2,"31707":3,"31708":5,"31709":3,"31710":2,"31711":3,"31712":3,"31713":3,"31714":4,"31715":4,"31716":3,"31717":5,"31718":2,"31719":3,"31720":3,"31721":3,"31722":3,"31723":2,"31724":2,"31725":1,"31726":3,"31727":4,"31728":3,"31729":3,"31730":5,"31731":2,"31732":3,"31733":1,"31734":3,"31735":2,"31736":3,"31737":2,"31738":4,"31739":1,"31740":3,"31741":2,"31742":3,"31743":3,"31744":2,"31745":3,"31746":3,"31747":2,"31748":3,"31749":5,"31750":3,"31751":3,"31752":2,"31753":2,"31754":3,"31755":3,"31756":1,"31757":2,"31758":4,"31759":1,"31760":2,"31761":3,"31762":3,"31763":3,"31764":3,"31765":4,"31766":3,"31767":4,"31768":3,"31769":4,"31770":4,"31771":5,"31772":2,"31773":3,"31774":3,"31775":5,"31776":1,"31777":2,"31778":2,"31779":3,"31780":4,"31781":5,"31782":5,"31783":2,"31784":2,"31785":2,"31786":4,"31787":2,"31788":2,"31789":1,"31790":3,"31791":3,"31792":5,"31793":2,"31794":1,"31795":3,"31796":3,"31797":4,"31798":2,"31799":3,"31800":2,"31801":4,"31802":2,"31803":4,"31804":3,"31805":2,"31806":4,"31807":1,"31808":2,"31809":2,"31810":3,"31811":3,"31812":3,"31813":3,"31814":3,"31815":3,"31816":3,"31817":2,"31818":1,"31819":1,"31820":3,"31821":5,"31822":4,"31823":4,"31824":4,"31825":3,"31826":1,"31827":5,"31828":3,"31829":4,"31830":2,"31831":3,"31832":4,"31833":3,"31834":3,"31835":3,"31836":3,"31837":4,"31838":1,"31839":3,"31840":3,"31841":4,"31842":4,"31843":3,"31844":5,"31845":4,"31846":1,"31847":1,"31848":2,"31849":3,"31850":4,"31851":2,"31852":3,"31853":4,"31854":4,"31855":3,"31856":4,"31857":3,"31858":2,"31859":2,"31860":2,"31861":1,"31862":3,"31863":2,"31864":1,"31865":3,"31866":3,"31867":4,"31868":2,"31869":3,"31870":4,"31871":4,"31872":1,"31873":4,"31874":3,"31875":4,"31876":4,"31877":3,"31878":4,"31879":3,"31880":1,"31881":3,"31882":1,"31883":2,"31884":3,"31885":3,"31886":4,"31887":1,"31888":5,"31889":2,"31890":2,"31891":3,"31892":3,"31893":5,"31894":3,"31895":2,"31896":3,"31897":4,"31898":3,"31899":3,"31900":1,"31901":4,"31902":2,"31903":3,"31904":3,"31905":2,"31906":4,"31907":2,"31908":2,"31909":4,"31910":5,"31911":4,"31912":4,"31913":2,"31914":2,"31915":4,"31916":4,"31917":2,"31918":5,"31919":4,"31920":2,"31921":1,"31922":3,"31923":3,"31924":2,"31925":1,"31926":3,"31927":3,"31928":5,"31929":3,"31930":2,"31931":3,"31932":1,"31933":4,"31934":3,"31935":2,"31936":4,"31937":4,"31938":2,"31939":3,"31940":2,"31941":5,"31942":4,"31943":2,"31944":2,"31945":3,"31946":3,"31947":2,"31948":1,"31949":2,"31950":3,"31951":3,"31952":2,"31953":4,"31954":3,"31955":4,"31956":3,"31957":3,"31958":3,"31959":3,"31960":2,"31961":2,"31962":3,"31963":4,"31964":2,"31965":4,"31966":4,"31967":2,"31968":3,"31969":2,"31970":2,"31971":2,"31972":4,"31973":1,"31974":2,"31975":3,"31976":4,"31977":4,"31978":5,"31979":4,"31980":4,"31981":4,"31982":4,"31983":2,"31984":4,"31985":3,"31986":1,"31987":4,"31988":3,"31989":3,"31990":2,"31991":2,"31992":4,"31993":3,"31994":3,"31995":3,"31996":4,"31997":3,"31998":2,"31999":4,"32000":5,"32001":5,"32002":5,"32003":3,"32004":5,"32005":4,"32006":2,"32007":4,"32008":2,"32009":4,"32010":5,"32011":4,"32012":5,"32013":5,"32014":3,"32015":4,"32016":3,"32017":5,"32018":2,"32019":4,"32020":3,"32021":2,"32022":3,"32023":3,"32024":1,"32025":3,"32026":4,"32027":2,"32028":1,"32029":3,"32030":2,"32031":1,"32032":4,"32033":4,"32034":3,"32035":4,"32036":3,"32037":3,"32038":3,"32039":4,"32040":2,"32041":5,"32042":1,"32043":2,"32044":4,"32045":1,"32046":3,"32047":3,"32048":3,"32049":3,"32050":2,"32051":4,"32052":4,"32053":3,"32054":3,"32055":5,"32056":4,"32057":2,"32058":3,"32059":3,"32060":4,"32061":1,"32062":3,"32063":4,"32064":1,"32065":4,"32066":2,"32067":2,"32068":4,"32069":2,"32070":3,"32071":4,"32072":3,"32073":5,"32074":4,"32075":1,"32076":4,"32077":3,"32078":3,"32079":2,"32080":4,"32081":4,"32082":2,"32083":4,"32084":3,"32085":4,"32086":4,"32087":4,"32088":4,"32089":2,"32090":4,"32091":3,"32092":2,"32093":1,"32094":4,"32095":5,"32096":4,"32097":3,"32098":1,"32099":3,"32100":3,"32101":5,"32102":2,"32103":3,"32104":2,"32105":4,"32106":3,"32107":2,"32108":2,"32109":1,"32110":5,"32111":3,"32112":4,"32113":4,"32114":4,"32115":2,"32116":4,"32117":3,"32118":3,"32119":3,"32120":1,"32121":3,"32122":4,"32123":2,"32124":5,"32125":4,"32126":2,"32127":2,"32128":3,"32129":4,"32130":3,"32131":5,"32132":1,"32133":3,"32134":1,"32135":1,"32136":2,"32137":3,"32138":3,"32139":5,"32140":3,"32141":4,"32142":2,"32143":1,"32144":1,"32145":3,"32146":2,"32147":4,"32148":3,"32149":2,"32150":3,"32151":4,"32152":1,"32153":1,"32154":3,"32155":2,"32156":3,"32157":4,"32158":3,"32159":3,"32160":3,"32161":1,"32162":2,"32163":3,"32164":4,"32165":3,"32166":3,"32167":2,"32168":5,"32169":1,"32170":3,"32171":2,"32172":2,"32173":5,"32174":3,"32175":4,"32176":2,"32177":3,"32178":5,"32179":2,"32180":2,"32181":3,"32182":4,"32183":3,"32184":2,"32185":4,"32186":1,"32187":4,"32188":3,"32189":3,"32190":4,"32191":3,"32192":3,"32193":2,"32194":5,"32195":4,"32196":1,"32197":3,"32198":2,"32199":3,"32200":5,"32201":5,"32202":4,"32203":4,"32204":3,"32205":3,"32206":3,"32207":3,"32208":3,"32209":4,"32210":5,"32211":2,"32212":5,"32213":5,"32214":4,"32215":4,"32216":5,"32217":4,"32218":2,"32219":4,"32220":5,"32221":3,"32222":2,"32223":2,"32224":5,"32225":3,"32226":1,"32227":3,"32228":4,"32229":3,"32230":3,"32231":1,"32232":4,"32233":1,"32234":3,"32235":3,"32236":4,"32237":2,"32238":2,"32239":1,"32240":2,"32241":5,"32242":2,"32243":1,"32244":4,"32245":3,"32246":4,"32247":4,"32248":4,"32249":5,"32250":3,"32251":4,"32252":3,"32253":3,"32254":3,"32255":3,"32256":3,"32257":2,"32258":5,"32259":3,"32260":2,"32261":3,"32262":2,"32263":4,"32264":3,"32265":3,"32266":4,"32267":1,"32268":2,"32269":4,"32270":4,"32271":2,"32272":3,"32273":4,"32274":4,"32275":2,"32276":1,"32277":5,"32278":4,"32279":4,"32280":1,"32281":3,"32282":5,"32283":3,"32284":3,"32285":3,"32286":4,"32287":2,"32288":3,"32289":4,"32290":4,"32291":3,"32292":3,"32293":2,"32294":2,"32295":3,"32296":1,"32297":4,"32298":4,"32299":4,"32300":3,"32301":4,"32302":2,"32303":5,"32304":2,"32305":3,"32306":2,"32307":2,"32308":1,"32309":3,"32310":1,"32311":2,"32312":1,"32313":4,"32314":4,"32315":2,"32316":3,"32317":1,"32318":3,"32319":4,"32320":2,"32321":2,"32322":3,"32323":3,"32324":4,"32325":5,"32326":3,"32327":3,"32328":3,"32329":2,"32330":2,"32331":4,"32332":5,"32333":3,"32334":3,"32335":2,"32336":4,"32337":4,"32338":1,"32339":3,"32340":3,"32341":3,"32342":1,"32343":2,"32344":3,"32345":4,"32346":2,"32347":2,"32348":3,"32349":1,"32350":2,"32351":3,"32352":3,"32353":3,"32354":4,"32355":4,"32356":2,"32357":1,"32358":3,"32359":5,"32360":3,"32361":2,"32362":3,"32363":2,"32364":1,"32365":3,"32366":3,"32367":5,"32368":5,"32369":2,"32370":3,"32371":1,"32372":3,"32373":5,"32374":3,"32375":2,"32376":3,"32377":1,"32378":2,"32379":2,"32380":4,"32381":2,"32382":3,"32383":3,"32384":5,"32385":3,"32386":3,"32387":4,"32388":2,"32389":2,"32390":3,"32391":3,"32392":5,"32393":2,"32394":4,"32395":4,"32396":2,"32397":2,"32398":2,"32399":3,"32400":3,"32401":4,"32402":5,"32403":2,"32404":4,"32405":3,"32406":4,"32407":4,"32408":3,"32409":3,"32410":2,"32411":4,"32412":1,"32413":2,"32414":4,"32415":5,"32416":1,"32417":2,"32418":4,"32419":3,"32420":3,"32421":1,"32422":3,"32423":5,"32424":1,"32425":1,"32426":3,"32427":1,"32428":3,"32429":3,"32430":4,"32431":3,"32432":1,"32433":4,"32434":3,"32435":3,"32436":3,"32437":5,"32438":3,"32439":3,"32440":2,"32441":3,"32442":2,"32443":4,"32444":4,"32445":2,"32446":3,"32447":1,"32448":4,"32449":2,"32450":4,"32451":1,"32452":1,"32453":2,"32454":1,"32455":4,"32456":2,"32457":2,"32458":5,"32459":3,"32460":4,"32461":3,"32462":3,"32463":2,"32464":3,"32465":1,"32466":5,"32467":1,"32468":3,"32469":4,"32470":2,"32471":4,"32472":4,"32473":4,"32474":3,"32475":3,"32476":4,"32477":3,"32478":2,"32479":2,"32480":2,"32481":4,"32482":5,"32483":3,"32484":2,"32485":4,"32486":4,"32487":3,"32488":2,"32489":3,"32490":1,"32491":1,"32492":4,"32493":4,"32494":3,"32495":3,"32496":2,"32497":2,"32498":2,"32499":5,"32500":4,"32501":1,"32502":1,"32503":2,"32504":4,"32505":1,"32506":2,"32507":4,"32508":2,"32509":3,"32510":2,"32511":4,"32512":3,"32513":4,"32514":4,"32515":2,"32516":3,"32517":1,"32518":1,"32519":3,"32520":1,"32521":5,"32522":4,"32523":2,"32524":2,"32525":2,"32526":3,"32527":1,"32528":3,"32529":4,"32530":4,"32531":2,"32532":2,"32533":1,"32534":3,"32535":5,"32536":2,"32537":1,"32538":3,"32539":2,"32540":4,"32541":4,"32542":4,"32543":3,"32544":3,"32545":4,"32546":2,"32547":3,"32548":3,"32549":2,"32550":1,"32551":4,"32552":3,"32553":2,"32554":2,"32555":4,"32556":3,"32557":3,"32558":2,"32559":3,"32560":2,"32561":4,"32562":3,"32563":3,"32564":3,"32565":4,"32566":5,"32567":1,"32568":2,"32569":3,"32570":2,"32571":2,"32572":3,"32573":5,"32574":3,"32575":1,"32576":3,"32577":2,"32578":4,"32579":4,"32580":2,"32581":3,"32582":2,"32583":2,"32584":1,"32585":1,"32586":3,"32587":3,"32588":2,"32589":3,"32590":4,"32591":4,"32592":3,"32593":3,"32594":2,"32595":4,"32596":4,"32597":1,"32598":5,"32599":3,"32600":4,"32601":2,"32602":3,"32603":3,"32604":3,"32605":3,"32606":1,"32607":4,"32608":2,"32609":3,"32610":2,"32611":4,"32612":2,"32613":4,"32614":4,"32615":3,"32616":3,"32617":3,"32618":2,"32619":1,"32620":1,"32621":3,"32622":2,"32623":3,"32624":3,"32625":2,"32626":4,"32627":1,"32628":4,"32629":3,"32630":1,"32631":4,"32632":1,"32633":3,"32634":3,"32635":2,"32636":3,"32637":2,"32638":3,"32639":2,"32640":3,"32641":1,"32642":3,"32643":3,"32644":4,"32645":2,"32646":2,"32647":4,"32648":3,"32649":4,"32650":3,"32651":2,"32652":1,"32653":1,"32654":4,"32655":3,"32656":4,"32657":2,"32658":4,"32659":4,"32660":1,"32661":3,"32662":5,"32663":1,"32664":5,"32665":5,"32666":2,"32667":1,"32668":4,"32669":3,"32670":4,"32671":2,"32672":3,"32673":2,"32674":2,"32675":5,"32676":4,"32677":2,"32678":2,"32679":4,"32680":2,"32681":3,"32682":2,"32683":4,"32684":3,"32685":3,"32686":1,"32687":4,"32688":2,"32689":4,"32690":1,"32691":1,"32692":3,"32693":4,"32694":4,"32695":2,"32696":3,"32697":4,"32698":4,"32699":2,"32700":4,"32701":3,"32702":4,"32703":5,"32704":4,"32705":2,"32706":3,"32707":4,"32708":1,"32709":5,"32710":2,"32711":2,"32712":3,"32713":3,"32714":2,"32715":2,"32716":4,"32717":4,"32718":5,"32719":3,"32720":2,"32721":2,"32722":3,"32723":3,"32724":3,"32725":1,"32726":4,"32727":2,"32728":1,"32729":2,"32730":2,"32731":3,"32732":3,"32733":1,"32734":2,"32735":3,"32736":4,"32737":1,"32738":2,"32739":4,"32740":3,"32741":2,"32742":3,"32743":4,"32744":2,"32745":2,"32746":4,"32747":2,"32748":5,"32749":3,"32750":4,"32751":4,"32752":4,"32753":4,"32754":3,"32755":3,"32756":4,"32757":4,"32758":2,"32759":3,"32760":3,"32761":4,"32762":3,"32763":3,"32764":3,"32765":1,"32766":5,"32767":2,"32768":3,"32769":1,"32770":3,"32771":1,"32772":2,"32773":2,"32774":5,"32775":3,"32776":2,"32777":3,"32778":5,"32779":3,"32780":2,"32781":2,"32782":4,"32783":3,"32784":2,"32785":4,"32786":2,"32787":2,"32788":2,"32789":5,"32790":2,"32791":4,"32792":2,"32793":4,"32794":2,"32795":3,"32796":2,"32797":3,"32798":1,"32799":3,"32800":1,"32801":5,"32802":3,"32803":3,"32804":3,"32805":5,"32806":3,"32807":4,"32808":1,"32809":5,"32810":2,"32811":4,"32812":4,"32813":4,"32814":4,"32815":2,"32816":3,"32817":1,"32818":4,"32819":3,"32820":3,"32821":2,"32822":2,"32823":4,"32824":2,"32825":3,"32826":4,"32827":1,"32828":1,"32829":5,"32830":3,"32831":3,"32832":3,"32833":2,"32834":3,"32835":5,"32836":4,"32837":1,"32838":3,"32839":5,"32840":3,"32841":3,"32842":4,"32843":4,"32844":3,"32845":2,"32846":3,"32847":2,"32848":4,"32849":3,"32850":4,"32851":4,"32852":3,"32853":4,"32854":3,"32855":3,"32856":2,"32857":2,"32858":5,"32859":2,"32860":3,"32861":4,"32862":3,"32863":2,"32864":2,"32865":1,"32866":1,"32867":3,"32868":4,"32869":2,"32870":2,"32871":1,"32872":4,"32873":4,"32874":2,"32875":2,"32876":2,"32877":3,"32878":5,"32879":3,"32880":3,"32881":4,"32882":3,"32883":3,"32884":1,"32885":5,"32886":2,"32887":3,"32888":1,"32889":4,"32890":3,"32891":3,"32892":2,"32893":4,"32894":5,"32895":3,"32896":2,"32897":1,"32898":3,"32899":5,"32900":3,"32901":3,"32902":2,"32903":2,"32904":5,"32905":4,"32906":3,"32907":4,"32908":3,"32909":3,"32910":2,"32911":4,"32912":3,"32913":3,"32914":3,"32915":4,"32916":3,"32917":3,"32918":3,"32919":4,"32920":3,"32921":3,"32922":2,"32923":2,"32924":2,"32925":3,"32926":5,"32927":4,"32928":4,"32929":4,"32930":1,"32931":3,"32932":5,"32933":3,"32934":3,"32935":5,"32936":3,"32937":5,"32938":3,"32939":3,"32940":3,"32941":3,"32942":2,"32943":2,"32944":3,"32945":3,"32946":3,"32947":3,"32948":3,"32949":2,"32950":3,"32951":2,"32952":5,"32953":3,"32954":4,"32955":4,"32956":3,"32957":3,"32958":4,"32959":1,"32960":3,"32961":1,"32962":3,"32963":2,"32964":4,"32965":3,"32966":3,"32967":3,"32968":5,"32969":1,"32970":5,"32971":5,"32972":3,"32973":2,"32974":5,"32975":4,"32976":3,"32977":3,"32978":4,"32979":3,"32980":2,"32981":3,"32982":3,"32983":1,"32984":5,"32985":4,"32986":2,"32987":4,"32988":2,"32989":3,"32990":5,"32991":2,"32992":1,"32993":4,"32994":3,"32995":5,"32996":4,"32997":4,"32998":3,"32999":3,"33000":3,"33001":2,"33002":4,"33003":2,"33004":3,"33005":5,"33006":3,"33007":2,"33008":2,"33009":2,"33010":2,"33011":4,"33012":3,"33013":4,"33014":3,"33015":5,"33016":4,"33017":4,"33018":4,"33019":4,"33020":4,"33021":4,"33022":2,"33023":3,"33024":3,"33025":2,"33026":3,"33027":4,"33028":2,"33029":3,"33030":3,"33031":3,"33032":3,"33033":4,"33034":2,"33035":3,"33036":1,"33037":4,"33038":4,"33039":1,"33040":2,"33041":3,"33042":2,"33043":3,"33044":2,"33045":4,"33046":2,"33047":1,"33048":3,"33049":4,"33050":3,"33051":4,"33052":4,"33053":3,"33054":4,"33055":3,"33056":4,"33057":2,"33058":3,"33059":1,"33060":2,"33061":2,"33062":5,"33063":4,"33064":3,"33065":3,"33066":3,"33067":3,"33068":1,"33069":3,"33070":4,"33071":1,"33072":4,"33073":4,"33074":1,"33075":2,"33076":4,"33077":1,"33078":4,"33079":2,"33080":4,"33081":4,"33082":3,"33083":3,"33084":2,"33085":2,"33086":4,"33087":3,"33088":1,"33089":3,"33090":1,"33091":1,"33092":3,"33093":2,"33094":4,"33095":2,"33096":3,"33097":4,"33098":3,"33099":5,"33100":4,"33101":3,"33102":3,"33103":4,"33104":3,"33105":5,"33106":3,"33107":2,"33108":1,"33109":2,"33110":2,"33111":3,"33112":3,"33113":3,"33114":2,"33115":2,"33116":3,"33117":1,"33118":1,"33119":3,"33120":2,"33121":4,"33122":2,"33123":3,"33124":3,"33125":4,"33126":1,"33127":1,"33128":4,"33129":1,"33130":3,"33131":4,"33132":4,"33133":4,"33134":1,"33135":3,"33136":5,"33137":4,"33138":3,"33139":5,"33140":3,"33141":2,"33142":1,"33143":3,"33144":3,"33145":3,"33146":2,"33147":3,"33148":3,"33149":3,"33150":3,"33151":1,"33152":3,"33153":3,"33154":2,"33155":4,"33156":2,"33157":4,"33158":1,"33159":3,"33160":2,"33161":2,"33162":5,"33163":4,"33164":1,"33165":1,"33166":4,"33167":3,"33168":4,"33169":2,"33170":2,"33171":1,"33172":3,"33173":1,"33174":2,"33175":2,"33176":3,"33177":4,"33178":1,"33179":4,"33180":3,"33181":2,"33182":3,"33183":2,"33184":4,"33185":3,"33186":3,"33187":4,"33188":4,"33189":4,"33190":2,"33191":4,"33192":4,"33193":3,"33194":2,"33195":2,"33196":3,"33197":2,"33198":4,"33199":3,"33200":4,"33201":3,"33202":2,"33203":5,"33204":5,"33205":2,"33206":3,"33207":2,"33208":4,"33209":2,"33210":4,"33211":4,"33212":4,"33213":1,"33214":4,"33215":4,"33216":1,"33217":3,"33218":3,"33219":2,"33220":3,"33221":3,"33222":2,"33223":4,"33224":4,"33225":3,"33226":3,"33227":4,"33228":1,"33229":4,"33230":3,"33231":5,"33232":4,"33233":2,"33234":5,"33235":3,"33236":2,"33237":2,"33238":3,"33239":3,"33240":3,"33241":3,"33242":4,"33243":4,"33244":3,"33245":3,"33246":3,"33247":2,"33248":1,"33249":5,"33250":4,"33251":3,"33252":2,"33253":2,"33254":1,"33255":5,"33256":4,"33257":2,"33258":2,"33259":2,"33260":3,"33261":4,"33262":3,"33263":3,"33264":4,"33265":3,"33266":4,"33267":5,"33268":4,"33269":2,"33270":3,"33271":4,"33272":4,"33273":2,"33274":2,"33275":4,"33276":4,"33277":3,"33278":1,"33279":1,"33280":4,"33281":2,"33282":5,"33283":3,"33284":3,"33285":4,"33286":2,"33287":4,"33288":3,"33289":4,"33290":5,"33291":2,"33292":4,"33293":3,"33294":3,"33295":4,"33296":3,"33297":3,"33298":4,"33299":3,"33300":4,"33301":4,"33302":2,"33303":3,"33304":2,"33305":4,"33306":4,"33307":2,"33308":3,"33309":1,"33310":4,"33311":5,"33312":2,"33313":3,"33314":4,"33315":3,"33316":2,"33317":4,"33318":3,"33319":3,"33320":4,"33321":5,"33322":5,"33323":3,"33324":5,"33325":2,"33326":2,"33327":2,"33328":3,"33329":3,"33330":4,"33331":3,"33332":4,"33333":3,"33334":4,"33335":5,"33336":3,"33337":3,"33338":3,"33339":4,"33340":4,"33341":4,"33342":4,"33343":2,"33344":2,"33345":5,"33346":4,"33347":3,"33348":3,"33349":3,"33350":1,"33351":2,"33352":4,"33353":1,"33354":3,"33355":1,"33356":4,"33357":1,"33358":4,"33359":1,"33360":5,"33361":3,"33362":1,"33363":5,"33364":4,"33365":4,"33366":4,"33367":2,"33368":4,"33369":4,"33370":3,"33371":3,"33372":3,"33373":4,"33374":4,"33375":3,"33376":3,"33377":3,"33378":2,"33379":3,"33380":1,"33381":2,"33382":3,"33383":4,"33384":4,"33385":4,"33386":4,"33387":4,"33388":2,"33389":3,"33390":3,"33391":3,"33392":1,"33393":1,"33394":3,"33395":2,"33396":4,"33397":1,"33398":4,"33399":4,"33400":3,"33401":3,"33402":4,"33403":1,"33404":2,"33405":2,"33406":3,"33407":3,"33408":2,"33409":4,"33410":2,"33411":3,"33412":2,"33413":5,"33414":1,"33415":2,"33416":2,"33417":3,"33418":4,"33419":4,"33420":2,"33421":3,"33422":3,"33423":3,"33424":3,"33425":3,"33426":4,"33427":2,"33428":3,"33429":2,"33430":4,"33431":4,"33432":2,"33433":4,"33434":4,"33435":4,"33436":4,"33437":1,"33438":3,"33439":4,"33440":3,"33441":4,"33442":1,"33443":3,"33444":3,"33445":4,"33446":1,"33447":3,"33448":2,"33449":3,"33450":3,"33451":3,"33452":2,"33453":5,"33454":3,"33455":3,"33456":3,"33457":2,"33458":3,"33459":3,"33460":3,"33461":3,"33462":3,"33463":2,"33464":4,"33465":4,"33466":3,"33467":2,"33468":3,"33469":1,"33470":3,"33471":4,"33472":5,"33473":1,"33474":2,"33475":2,"33476":3,"33477":3,"33478":5,"33479":2,"33480":3,"33481":3,"33482":4,"33483":4,"33484":3,"33485":2,"33486":4,"33487":2,"33488":4,"33489":4,"33490":3,"33491":2,"33492":3,"33493":4,"33494":4,"33495":5,"33496":3,"33497":4,"33498":2,"33499":2,"33500":2,"33501":4,"33502":5,"33503":3,"33504":2,"33505":3,"33506":4,"33507":3,"33508":3,"33509":2,"33510":5,"33511":5,"33512":4,"33513":3,"33514":2,"33515":4,"33516":2,"33517":2,"33518":4,"33519":3,"33520":3,"33521":4,"33522":2,"33523":2,"33524":4,"33525":2,"33526":3,"33527":3,"33528":5,"33529":4,"33530":3,"33531":4,"33532":2,"33533":3,"33534":3,"33535":4,"33536":1,"33537":4,"33538":4,"33539":3,"33540":1,"33541":4,"33542":5,"33543":4,"33544":2,"33545":1,"33546":2,"33547":4,"33548":3,"33549":5,"33550":3,"33551":3,"33552":5,"33553":2,"33554":3,"33555":4,"33556":3,"33557":2,"33558":4,"33559":4,"33560":4,"33561":3,"33562":4,"33563":3,"33564":1,"33565":1,"33566":4,"33567":3,"33568":3,"33569":2,"33570":1,"33571":3,"33572":3,"33573":2,"33574":3,"33575":3,"33576":3,"33577":2,"33578":4,"33579":2,"33580":1,"33581":5,"33582":2,"33583":4,"33584":3,"33585":3,"33586":1,"33587":4,"33588":4,"33589":5,"33590":4,"33591":2,"33592":3,"33593":4,"33594":4,"33595":5,"33596":4,"33597":4,"33598":5,"33599":2,"33600":2,"33601":2,"33602":2,"33603":3,"33604":1,"33605":4,"33606":2,"33607":3,"33608":3,"33609":3,"33610":4,"33611":4,"33612":4,"33613":2,"33614":3,"33615":1,"33616":1,"33617":3,"33618":2,"33619":4,"33620":3,"33621":5,"33622":2,"33623":4,"33624":2,"33625":1,"33626":4,"33627":3,"33628":2,"33629":3,"33630":2,"33631":5,"33632":1,"33633":2,"33634":2,"33635":3,"33636":2,"33637":5,"33638":3,"33639":2,"33640":3,"33641":3,"33642":4,"33643":2,"33644":4,"33645":3,"33646":3,"33647":4,"33648":3,"33649":3,"33650":4,"33651":4,"33652":4,"33653":3,"33654":5,"33655":4,"33656":1,"33657":3,"33658":3,"33659":4,"33660":2,"33661":4,"33662":3,"33663":3,"33664":1,"33665":3,"33666":2,"33667":4,"33668":3,"33669":3,"33670":5,"33671":2,"33672":4,"33673":5,"33674":3,"33675":2,"33676":2,"33677":3,"33678":4,"33679":2,"33680":4,"33681":5,"33682":2,"33683":4,"33684":4,"33685":3,"33686":2,"33687":2,"33688":4,"33689":4,"33690":3,"33691":3,"33692":1,"33693":3,"33694":3,"33695":3,"33696":2,"33697":3,"33698":4,"33699":4,"33700":5,"33701":5,"33702":4,"33703":3,"33704":4,"33705":2,"33706":3,"33707":4,"33708":5,"33709":4,"33710":3,"33711":4,"33712":3,"33713":3,"33714":3,"33715":4,"33716":2,"33717":4,"33718":1,"33719":4,"33720":2,"33721":5,"33722":2,"33723":1,"33724":3,"33725":1,"33726":2,"33727":3,"33728":4,"33729":3,"33730":4,"33731":3,"33732":3,"33733":3,"33734":5,"33735":2,"33736":5,"33737":3,"33738":1,"33739":4,"33740":3,"33741":3,"33742":2,"33743":4,"33744":2,"33745":3,"33746":3,"33747":4,"33748":4,"33749":5,"33750":4,"33751":3,"33752":3,"33753":4,"33754":3,"33755":2,"33756":5,"33757":2,"33758":4,"33759":4,"33760":4,"33761":4,"33762":3,"33763":5,"33764":3,"33765":2,"33766":4,"33767":2,"33768":3,"33769":4,"33770":4,"33771":5,"33772":3,"33773":3,"33774":4,"33775":4,"33776":3,"33777":2,"33778":2,"33779":2,"33780":2,"33781":1,"33782":3,"33783":3,"33784":3,"33785":4,"33786":3,"33787":5,"33788":4,"33789":3,"33790":3,"33791":1,"33792":2,"33793":3,"33794":2,"33795":1,"33796":2,"33797":2,"33798":3,"33799":3,"33800":2,"33801":3,"33802":3,"33803":4,"33804":4,"33805":3,"33806":2,"33807":2,"33808":1,"33809":2,"33810":2,"33811":1,"33812":5,"33813":1,"33814":3,"33815":4,"33816":3,"33817":4,"33818":1,"33819":4,"33820":4,"33821":2,"33822":3,"33823":4,"33824":4,"33825":4,"33826":5,"33827":1,"33828":3,"33829":3,"33830":3,"33831":2,"33832":3,"33833":3,"33834":2,"33835":2,"33836":3,"33837":2,"33838":3,"33839":5,"33840":2,"33841":2,"33842":4,"33843":3,"33844":2,"33845":4,"33846":1,"33847":1,"33848":2,"33849":4,"33850":2,"33851":2,"33852":2,"33853":2,"33854":4,"33855":4,"33856":5,"33857":1,"33858":3,"33859":3,"33860":4,"33861":1,"33862":4,"33863":4,"33864":3,"33865":3,"33866":3,"33867":5,"33868":3,"33869":1,"33870":2,"33871":3,"33872":2,"33873":3,"33874":4,"33875":2,"33876":3,"33877":4,"33878":5,"33879":4,"33880":4,"33881":2,"33882":2,"33883":4,"33884":3,"33885":3,"33886":3,"33887":3,"33888":2,"33889":5,"33890":4,"33891":4,"33892":3,"33893":2,"33894":1,"33895":1,"33896":2,"33897":2,"33898":3,"33899":2,"33900":5,"33901":3,"33902":3,"33903":3,"33904":2,"33905":5,"33906":2,"33907":4,"33908":1,"33909":3,"33910":3,"33911":4,"33912":3,"33913":4,"33914":4,"33915":4,"33916":5,"33917":2,"33918":3,"33919":2,"33920":3,"33921":4,"33922":1,"33923":1,"33924":3,"33925":2,"33926":4,"33927":4,"33928":4,"33929":3,"33930":5,"33931":5,"33932":2,"33933":2,"33934":1,"33935":3,"33936":2,"33937":4,"33938":2,"33939":2,"33940":2,"33941":3,"33942":1,"33943":2,"33944":5,"33945":1,"33946":3,"33947":3,"33948":3,"33949":4,"33950":2,"33951":4,"33952":4,"33953":2,"33954":2,"33955":4,"33956":2,"33957":1,"33958":2,"33959":2,"33960":3,"33961":1,"33962":1,"33963":2,"33964":4,"33965":3,"33966":3,"33967":2,"33968":4,"33969":2,"33970":3,"33971":5,"33972":4,"33973":2,"33974":3,"33975":2,"33976":3,"33977":3,"33978":2,"33979":3,"33980":4,"33981":5,"33982":2,"33983":4,"33984":2,"33985":4,"33986":3,"33987":4,"33988":3,"33989":4,"33990":3,"33991":4,"33992":2,"33993":2,"33994":4,"33995":4,"33996":3,"33997":3,"33998":3,"33999":3,"34000":4,"34001":5,"34002":1,"34003":4,"34004":1,"34005":3,"34006":2,"34007":3,"34008":2,"34009":2,"34010":4,"34011":4,"34012":5,"34013":3,"34014":4,"34015":5,"34016":3,"34017":2,"34018":4,"34019":1,"34020":2,"34021":1,"34022":4,"34023":4,"34024":3,"34025":3,"34026":3,"34027":2,"34028":4,"34029":3,"34030":3,"34031":3,"34032":2,"34033":1,"34034":4,"34035":4,"34036":2,"34037":5,"34038":3,"34039":3,"34040":3,"34041":3,"34042":4,"34043":2,"34044":5,"34045":2,"34046":4,"34047":3,"34048":3,"34049":2,"34050":5,"34051":1,"34052":1,"34053":3,"34054":3,"34055":4,"34056":2,"34057":4,"34058":3,"34059":2,"34060":4,"34061":4,"34062":3,"34063":3,"34064":3,"34065":3,"34066":4,"34067":3,"34068":2,"34069":2,"34070":3,"34071":2,"34072":3,"34073":4,"34074":1,"34075":4,"34076":1,"34077":2,"34078":5,"34079":2,"34080":3,"34081":3,"34082":3,"34083":4,"34084":4,"34085":3,"34086":3,"34087":2,"34088":4,"34089":3,"34090":3,"34091":2,"34092":2,"34093":3,"34094":2,"34095":2,"34096":3,"34097":2,"34098":2,"34099":4,"34100":3,"34101":3,"34102":2,"34103":4,"34104":2,"34105":4,"34106":2,"34107":4,"34108":3,"34109":3,"34110":4,"34111":5,"34112":3,"34113":3,"34114":2,"34115":3,"34116":2,"34117":2,"34118":2,"34119":4,"34120":3,"34121":1,"34122":4,"34123":2,"34124":4,"34125":1,"34126":4,"34127":2,"34128":3,"34129":4,"34130":4,"34131":4,"34132":1,"34133":2,"34134":4,"34135":2,"34136":2,"34137":3,"34138":3,"34139":4,"34140":2,"34141":5,"34142":3,"34143":2,"34144":4,"34145":4,"34146":5,"34147":2,"34148":3,"34149":1,"34150":3,"34151":2,"34152":4,"34153":3,"34154":5,"34155":3,"34156":3,"34157":3,"34158":4,"34159":4,"34160":2,"34161":4,"34162":2,"34163":1,"34164":3,"34165":3,"34166":3,"34167":4,"34168":2,"34169":4,"34170":3,"34171":3,"34172":4,"34173":5,"34174":5,"34175":4,"34176":4,"34177":4,"34178":3,"34179":3,"34180":4,"34181":2,"34182":4,"34183":1,"34184":4,"34185":4,"34186":3,"34187":2,"34188":3,"34189":4,"34190":3,"34191":4,"34192":2,"34193":1,"34194":4,"34195":2,"34196":4,"34197":3,"34198":5,"34199":5,"34200":2,"34201":3,"34202":3,"34203":4,"34204":4,"34205":1,"34206":5,"34207":3,"34208":4,"34209":1,"34210":5,"34211":3,"34212":2,"34213":2,"34214":3,"34215":3,"34216":2,"34217":1,"34218":3,"34219":2,"34220":2,"34221":2,"34222":5,"34223":2,"34224":4,"34225":2,"34226":1,"34227":3,"34228":2,"34229":2,"34230":2,"34231":3,"34232":3,"34233":1,"34234":2,"34235":4,"34236":5,"34237":3,"34238":1,"34239":2,"34240":3,"34241":3,"34242":4,"34243":2,"34244":2,"34245":5,"34246":3,"34247":2,"34248":2,"34249":5,"34250":2,"34251":3,"34252":5,"34253":4,"34254":1,"34255":3,"34256":3,"34257":5,"34258":1,"34259":2,"34260":2,"34261":4,"34262":2,"34263":3,"34264":4,"34265":2,"34266":4,"34267":3,"34268":4,"34269":4,"34270":3,"34271":3,"34272":4,"34273":3,"34274":4,"34275":2,"34276":4,"34277":5,"34278":4,"34279":3,"34280":3,"34281":4,"34282":3,"34283":3,"34284":1,"34285":3,"34286":3,"34287":1,"34288":3,"34289":3,"34290":1,"34291":2,"34292":4,"34293":4,"34294":4,"34295":2,"34296":1,"34297":3,"34298":1,"34299":3,"34300":3,"34301":1,"34302":2,"34303":4,"34304":4,"34305":2,"34306":3,"34307":4,"34308":1,"34309":3,"34310":3,"34311":1,"34312":2,"34313":1,"34314":4,"34315":2,"34316":3,"34317":1,"34318":5,"34319":4,"34320":3,"34321":3,"34322":2,"34323":4,"34324":5,"34325":1,"34326":3,"34327":5,"34328":3,"34329":4,"34330":2,"34331":3,"34332":3,"34333":3,"34334":3,"34335":3,"34336":3,"34337":3,"34338":2,"34339":2,"34340":3,"34341":3,"34342":4,"34343":4,"34344":1,"34345":3,"34346":3,"34347":3,"34348":5,"34349":3,"34350":3,"34351":1,"34352":5,"34353":3,"34354":1,"34355":3,"34356":4,"34357":4,"34358":3,"34359":3,"34360":5,"34361":3,"34362":2,"34363":2,"34364":3,"34365":2,"34366":4,"34367":3,"34368":4,"34369":2,"34370":2,"34371":3,"34372":3,"34373":2,"34374":3,"34375":3,"34376":3,"34377":3,"34378":3,"34379":2,"34380":3,"34381":2,"34382":5,"34383":1,"34384":2,"34385":1,"34386":2,"34387":4,"34388":3,"34389":3,"34390":1,"34391":5,"34392":3,"34393":3,"34394":3,"34395":4,"34396":3,"34397":4,"34398":2,"34399":2,"34400":3,"34401":2,"34402":4,"34403":1,"34404":3,"34405":2,"34406":2,"34407":3,"34408":3,"34409":3,"34410":3,"34411":4,"34412":4,"34413":4,"34414":3,"34415":4,"34416":3,"34417":4,"34418":3,"34419":3,"34420":3,"34421":2,"34422":2,"34423":3,"34424":4,"34425":3,"34426":2,"34427":3,"34428":2,"34429":3,"34430":2,"34431":4,"34432":2,"34433":4,"34434":3,"34435":5,"34436":2,"34437":2,"34438":2,"34439":4,"34440":3,"34441":1,"34442":3,"34443":3,"34444":2,"34445":5,"34446":4,"34447":2,"34448":3,"34449":4,"34450":2,"34451":3,"34452":4,"34453":1,"34454":4,"34455":5,"34456":1,"34457":4,"34458":4,"34459":3,"34460":3,"34461":2,"34462":3,"34463":1,"34464":3,"34465":3,"34466":5,"34467":5,"34468":4,"34469":3,"34470":3,"34471":5,"34472":3,"34473":4,"34474":2,"34475":3,"34476":3,"34477":2,"34478":2,"34479":5,"34480":3,"34481":2,"34482":3,"34483":4,"34484":1,"34485":4,"34486":2,"34487":2,"34488":3,"34489":2,"34490":2,"34491":3,"34492":3,"34493":3,"34494":3,"34495":3,"34496":3,"34497":4,"34498":3,"34499":3,"34500":2,"34501":2,"34502":3,"34503":2,"34504":4,"34505":2,"34506":3,"34507":4,"34508":3,"34509":2,"34510":1,"34511":3,"34512":2,"34513":2,"34514":2,"34515":3,"34516":2,"34517":2,"34518":4,"34519":1,"34520":4,"34521":2,"34522":2,"34523":2,"34524":3,"34525":3,"34526":5,"34527":4,"34528":2,"34529":3,"34530":4,"34531":3,"34532":2,"34533":2,"34534":4,"34535":2,"34536":5,"34537":4,"34538":2,"34539":4,"34540":3,"34541":3,"34542":3,"34543":5,"34544":1,"34545":2,"34546":1,"34547":4,"34548":3,"34549":1,"34550":3,"34551":2,"34552":2,"34553":4,"34554":3,"34555":4,"34556":4,"34557":3,"34558":5,"34559":4,"34560":4,"34561":4,"34562":2,"34563":1,"34564":2,"34565":2,"34566":3,"34567":3,"34568":3,"34569":3,"34570":4,"34571":2,"34572":3,"34573":3,"34574":4,"34575":5,"34576":3,"34577":2,"34578":5,"34579":4,"34580":3,"34581":2,"34582":3,"34583":2,"34584":2,"34585":5,"34586":4,"34587":5,"34588":1,"34589":4,"34590":3,"34591":4,"34592":2,"34593":3,"34594":1,"34595":3,"34596":3,"34597":4,"34598":1,"34599":4,"34600":2,"34601":2,"34602":3,"34603":4,"34604":2,"34605":3,"34606":4,"34607":2,"34608":4,"34609":4,"34610":2,"34611":2,"34612":3,"34613":4,"34614":4,"34615":2,"34616":3,"34617":4,"34618":2,"34619":3,"34620":4,"34621":2,"34622":5,"34623":2,"34624":5,"34625":3,"34626":2,"34627":3,"34628":2,"34629":4,"34630":2,"34631":3,"34632":5,"34633":3,"34634":3,"34635":3,"34636":4,"34637":2,"34638":3,"34639":4,"34640":4,"34641":3,"34642":3,"34643":2,"34644":4,"34645":2,"34646":3,"34647":4,"34648":3,"34649":3,"34650":4,"34651":1,"34652":4,"34653":3,"34654":3,"34655":3,"34656":2,"34657":3,"34658":1,"34659":2,"34660":4,"34661":4,"34662":4,"34663":1,"34664":4,"34665":3,"34666":3,"34667":2,"34668":3,"34669":2,"34670":4,"34671":3,"34672":3,"34673":2,"34674":3,"34675":2,"34676":4,"34677":4,"34678":2,"34679":3,"34680":4,"34681":5,"34682":4,"34683":4,"34684":2,"34685":1,"34686":1,"34687":2,"34688":4,"34689":1,"34690":3,"34691":4,"34692":2,"34693":1,"34694":2,"34695":1,"34696":5,"34697":3,"34698":1,"34699":1,"34700":2,"34701":2,"34702":2,"34703":4,"34704":3,"34705":3,"34706":3,"34707":2,"34708":4,"34709":4,"34710":1,"34711":3,"34712":2,"34713":4,"34714":3,"34715":4,"34716":3,"34717":4,"34718":5,"34719":4,"34720":5,"34721":3,"34722":4,"34723":2,"34724":2,"34725":1,"34726":1,"34727":2,"34728":4,"34729":4,"34730":5,"34731":3,"34732":4,"34733":1,"34734":4,"34735":2,"34736":3,"34737":3,"34738":3,"34739":4,"34740":4,"34741":2,"34742":3,"34743":2,"34744":4,"34745":4,"34746":1,"34747":4,"34748":3,"34749":3,"34750":4,"34751":3,"34752":3,"34753":4,"34754":3,"34755":3,"34756":2,"34757":2,"34758":4,"34759":4,"34760":5,"34761":1,"34762":3,"34763":3,"34764":3,"34765":5,"34766":4,"34767":2,"34768":3,"34769":3,"34770":2,"34771":5,"34772":2,"34773":5,"34774":3,"34775":4,"34776":3,"34777":3,"34778":4,"34779":3,"34780":5,"34781":4,"34782":4,"34783":1,"34784":4,"34785":3,"34786":4,"34787":5,"34788":2,"34789":2,"34790":2,"34791":2,"34792":3,"34793":1,"34794":3,"34795":4,"34796":4,"34797":3,"34798":4,"34799":4,"34800":4,"34801":2,"34802":5,"34803":4,"34804":2,"34805":2,"34806":1,"34807":3,"34808":4,"34809":3,"34810":4,"34811":3,"34812":4,"34813":3,"34814":4,"34815":2,"34816":3,"34817":3,"34818":4,"34819":3,"34820":3,"34821":4,"34822":2,"34823":3,"34824":4,"34825":3,"34826":2,"34827":4,"34828":2,"34829":3,"34830":1,"34831":2,"34832":2,"34833":3,"34834":1,"34835":4,"34836":4,"34837":1,"34838":3,"34839":2,"34840":4,"34841":2,"34842":2,"34843":3,"34844":3,"34845":2,"34846":2,"34847":3,"34848":2,"34849":3,"34850":5,"34851":4,"34852":2,"34853":3,"34854":3,"34855":3,"34856":4,"34857":4,"34858":4,"34859":3,"34860":3,"34861":3,"34862":2,"34863":2,"34864":2,"34865":1,"34866":4,"34867":4,"34868":3,"34869":3,"34870":4,"34871":4,"34872":4,"34873":5,"34874":3,"34875":2,"34876":2,"34877":3,"34878":3,"34879":3,"34880":2,"34881":3,"34882":3,"34883":3,"34884":5,"34885":2,"34886":4,"34887":3,"34888":1,"34889":1,"34890":3,"34891":3,"34892":4,"34893":2,"34894":4,"34895":3,"34896":4,"34897":4,"34898":4,"34899":2,"34900":1,"34901":3,"34902":2,"34903":2,"34904":3,"34905":4,"34906":2,"34907":4,"34908":1,"34909":3,"34910":1,"34911":1,"34912":1,"34913":2,"34914":5,"34915":5,"34916":4,"34917":3,"34918":3,"34919":3,"34920":2,"34921":4,"34922":2,"34923":2,"34924":2,"34925":2,"34926":5,"34927":4,"34928":4,"34929":3,"34930":4,"34931":4,"34932":3,"34933":2,"34934":4,"34935":4,"34936":2,"34937":2,"34938":4,"34939":1,"34940":4,"34941":4,"34942":3,"34943":3,"34944":4,"34945":3,"34946":2,"34947":3,"34948":3,"34949":4,"34950":4,"34951":4,"34952":3,"34953":2,"34954":4,"34955":3,"34956":4,"34957":3,"34958":4,"34959":5,"34960":4,"34961":4,"34962":1,"34963":2,"34964":3,"34965":1,"34966":3,"34967":5,"34968":3,"34969":3,"34970":2,"34971":3,"34972":3,"34973":3,"34974":1,"34975":3,"34976":4,"34977":2,"34978":3,"34979":4,"34980":3,"34981":3,"34982":2,"34983":3,"34984":3,"34985":4,"34986":4,"34987":3,"34988":3,"34989":3,"34990":5,"34991":4,"34992":1,"34993":4,"34994":2,"34995":5,"34996":5,"34997":2,"34998":4,"34999":2,"35000":1,"35001":1,"35002":4,"35003":1,"35004":4,"35005":2,"35006":3,"35007":3,"35008":4,"35009":4,"35010":3,"35011":4,"35012":3,"35013":3,"35014":3,"35015":4,"35016":3,"35017":2,"35018":2,"35019":4,"35020":4,"35021":1,"35022":3,"35023":2,"35024":1,"35025":3,"35026":4,"35027":5,"35028":2,"35029":5,"35030":1,"35031":4,"35032":3,"35033":1,"35034":1,"35035":2,"35036":3,"35037":4,"35038":2,"35039":5,"35040":2,"35041":4,"35042":1,"35043":3,"35044":4,"35045":4,"35046":2,"35047":1,"35048":1,"35049":1,"35050":3,"35051":4,"35052":4,"35053":5,"35054":4,"35055":3,"35056":1,"35057":3,"35058":3,"35059":4,"35060":1,"35061":3,"35062":4,"35063":4,"35064":2,"35065":1,"35066":1,"35067":3,"35068":2,"35069":4,"35070":4,"35071":3,"35072":5,"35073":1,"35074":3,"35075":3,"35076":3,"35077":4,"35078":3,"35079":4,"35080":1,"35081":3,"35082":1,"35083":4,"35084":1,"35085":1,"35086":3,"35087":3,"35088":3,"35089":3,"35090":4,"35091":4,"35092":4,"35093":3,"35094":5,"35095":2,"35096":2,"35097":3,"35098":3,"35099":3,"35100":4,"35101":3,"35102":3,"35103":3,"35104":1,"35105":3,"35106":3,"35107":4,"35108":3,"35109":4,"35110":1,"35111":3,"35112":2,"35113":3,"35114":2,"35115":4,"35116":3,"35117":1,"35118":3,"35119":4,"35120":4,"35121":4,"35122":5,"35123":3,"35124":3,"35125":3,"35126":2,"35127":3,"35128":3,"35129":4,"35130":2,"35131":1,"35132":5,"35133":2,"35134":4,"35135":2,"35136":3,"35137":4,"35138":3,"35139":5,"35140":2,"35141":1,"35142":3,"35143":3,"35144":4,"35145":3,"35146":4,"35147":2,"35148":2,"35149":3,"35150":4,"35151":4,"35152":2,"35153":4,"35154":1,"35155":3,"35156":1,"35157":2,"35158":2,"35159":5,"35160":3,"35161":2,"35162":4,"35163":4,"35164":3,"35165":2,"35166":3,"35167":2,"35168":3,"35169":2,"35170":4,"35171":2,"35172":3,"35173":2,"35174":2,"35175":4,"35176":2,"35177":3,"35178":4,"35179":4,"35180":1,"35181":2,"35182":2,"35183":2,"35184":3,"35185":5,"35186":3,"35187":2,"35188":5,"35189":4,"35190":2,"35191":4,"35192":2,"35193":1,"35194":2,"35195":3,"35196":1,"35197":3,"35198":3,"35199":4,"35200":3,"35201":3,"35202":2,"35203":1,"35204":4,"35205":2,"35206":3,"35207":3,"35208":3,"35209":3,"35210":3,"35211":2,"35212":4,"35213":4,"35214":3,"35215":4,"35216":3,"35217":3,"35218":3,"35219":3,"35220":4,"35221":4,"35222":1,"35223":2,"35224":3,"35225":3,"35226":3,"35227":1,"35228":2,"35229":3,"35230":2,"35231":2,"35232":2,"35233":2,"35234":2,"35235":2,"35236":4,"35237":3,"35238":3,"35239":2,"35240":3,"35241":4,"35242":2,"35243":4,"35244":5,"35245":1,"35246":2,"35247":4,"35248":2,"35249":2,"35250":2,"35251":4,"35252":4,"35253":1,"35254":2,"35255":5,"35256":1,"35257":3,"35258":3,"35259":3,"35260":3,"35261":2,"35262":4,"35263":2,"35264":2,"35265":2,"35266":4,"35267":4,"35268":3,"35269":3,"35270":5,"35271":4,"35272":5,"35273":2,"35274":1,"35275":3,"35276":3,"35277":1,"35278":2,"35279":4,"35280":5,"35281":5,"35282":5,"35283":5,"35284":4,"35285":4,"35286":3,"35287":3,"35288":1,"35289":4,"35290":4,"35291":4,"35292":2,"35293":5,"35294":2,"35295":3,"35296":5,"35297":3,"35298":1,"35299":5,"35300":3,"35301":5,"35302":1,"35303":4,"35304":3,"35305":4,"35306":1,"35307":3,"35308":3,"35309":3,"35310":4,"35311":3,"35312":5,"35313":1,"35314":2,"35315":5,"35316":4,"35317":2,"35318":2,"35319":5,"35320":2,"35321":4,"35322":3,"35323":3,"35324":3,"35325":4,"35326":2,"35327":5,"35328":3,"35329":4,"35330":3,"35331":2,"35332":1,"35333":3,"35334":2,"35335":3,"35336":3,"35337":3,"35338":3,"35339":4,"35340":2,"35341":5,"35342":4,"35343":2,"35344":3,"35345":3,"35346":3,"35347":1,"35348":1,"35349":4,"35350":2,"35351":3,"35352":2,"35353":5,"35354":3,"35355":3,"35356":3,"35357":4,"35358":5,"35359":1,"35360":1,"35361":2,"35362":5,"35363":4,"35364":4,"35365":4,"35366":3,"35367":2,"35368":3,"35369":3,"35370":4,"35371":3,"35372":3,"35373":4,"35374":4,"35375":2,"35376":3,"35377":3,"35378":5,"35379":2,"35380":2,"35381":4,"35382":4,"35383":3,"35384":1,"35385":3,"35386":4,"35387":2,"35388":3,"35389":3,"35390":3,"35391":3,"35392":5,"35393":4,"35394":3,"35395":4,"35396":2,"35397":3,"35398":2,"35399":4,"35400":1,"35401":2,"35402":2,"35403":4,"35404":3,"35405":2,"35406":5,"35407":1,"35408":1,"35409":3,"35410":3,"35411":2,"35412":3,"35413":3,"35414":3,"35415":5,"35416":4,"35417":3,"35418":1,"35419":2,"35420":4,"35421":1,"35422":5,"35423":3,"35424":3,"35425":5,"35426":2,"35427":4,"35428":2,"35429":2,"35430":4,"35431":3,"35432":3,"35433":2,"35434":4,"35435":3,"35436":3,"35437":2,"35438":3,"35439":4,"35440":2,"35441":3,"35442":4,"35443":4,"35444":3,"35445":3,"35446":2,"35447":4,"35448":3,"35449":5,"35450":4,"35451":4,"35452":3,"35453":1,"35454":2,"35455":3,"35456":3,"35457":1,"35458":5,"35459":4,"35460":2,"35461":4,"35462":2,"35463":3,"35464":1,"35465":5,"35466":3,"35467":3,"35468":2,"35469":3,"35470":4,"35471":5,"35472":2,"35473":3,"35474":3,"35475":4,"35476":3,"35477":4,"35478":4,"35479":2,"35480":3,"35481":3,"35482":3,"35483":2,"35484":3,"35485":3,"35486":4,"35487":3,"35488":3,"35489":3,"35490":2,"35491":3,"35492":4,"35493":4,"35494":4,"35495":1,"35496":3,"35497":5,"35498":3,"35499":4,"35500":5,"35501":1,"35502":3,"35503":1,"35504":2,"35505":3,"35506":4,"35507":3,"35508":1,"35509":2,"35510":4,"35511":2,"35512":3,"35513":3,"35514":2,"35515":2,"35516":3,"35517":3,"35518":4,"35519":4,"35520":2,"35521":3,"35522":3,"35523":1,"35524":4,"35525":2,"35526":4,"35527":3,"35528":4,"35529":4,"35530":1,"35531":3,"35532":3,"35533":2,"35534":4,"35535":1,"35536":3,"35537":4,"35538":4,"35539":2,"35540":1,"35541":4,"35542":4,"35543":3,"35544":4,"35545":4,"35546":2,"35547":2,"35548":1,"35549":3,"35550":5,"35551":4,"35552":2,"35553":2,"35554":3,"35555":2,"35556":4,"35557":3,"35558":2,"35559":4,"35560":3,"35561":2,"35562":3,"35563":4,"35564":2,"35565":5,"35566":4,"35567":5,"35568":2,"35569":4,"35570":3,"35571":5,"35572":4,"35573":4,"35574":5,"35575":5,"35576":2,"35577":3,"35578":4,"35579":2,"35580":2,"35581":3,"35582":3,"35583":3,"35584":4,"35585":1,"35586":4,"35587":2,"35588":3,"35589":3,"35590":4,"35591":2,"35592":4,"35593":5,"35594":3,"35595":1,"35596":2,"35597":3,"35598":3,"35599":3,"35600":2,"35601":4,"35602":2,"35603":5,"35604":4,"35605":4,"35606":3,"35607":2,"35608":4,"35609":3,"35610":2,"35611":3,"35612":2,"35613":3,"35614":3,"35615":1,"35616":2,"35617":2,"35618":3,"35619":3,"35620":4,"35621":1,"35622":2,"35623":4,"35624":3,"35625":5,"35626":5,"35627":4,"35628":1,"35629":2,"35630":2,"35631":4,"35632":1,"35633":4,"35634":3,"35635":2,"35636":4,"35637":2,"35638":3,"35639":1,"35640":1,"35641":5,"35642":1,"35643":3,"35644":2,"35645":3,"35646":4,"35647":3,"35648":2,"35649":1,"35650":4,"35651":3,"35652":3,"35653":2,"35654":3,"35655":2,"35656":2,"35657":4,"35658":3,"35659":3,"35660":4,"35661":4,"35662":2,"35663":2,"35664":3,"35665":2,"35666":5,"35667":2,"35668":2,"35669":5,"35670":1,"35671":3,"35672":5,"35673":1,"35674":3,"35675":3,"35676":1,"35677":2,"35678":2,"35679":1,"35680":4,"35681":3,"35682":3,"35683":4,"35684":4,"35685":1,"35686":3,"35687":2,"35688":1,"35689":5,"35690":3,"35691":3,"35692":4,"35693":2,"35694":2,"35695":1,"35696":3,"35697":2,"35698":4,"35699":2,"35700":2,"35701":5,"35702":4,"35703":3,"35704":5,"35705":3,"35706":3,"35707":3,"35708":4,"35709":2,"35710":4,"35711":2,"35712":4,"35713":1,"35714":1,"35715":1,"35716":3,"35717":4,"35718":2,"35719":3,"35720":4,"35721":3,"35722":2,"35723":3,"35724":3,"35725":4,"35726":2,"35727":3,"35728":2,"35729":1,"35730":3,"35731":3,"35732":3,"35733":2,"35734":4,"35735":2,"35736":3,"35737":4,"35738":3,"35739":2,"35740":3,"35741":3,"35742":5,"35743":5,"35744":5,"35745":3,"35746":5,"35747":3,"35748":5,"35749":2,"35750":3,"35751":2,"35752":3,"35753":3,"35754":4,"35755":3,"35756":2,"35757":3,"35758":3,"35759":2,"35760":4,"35761":4,"35762":2,"35763":2,"35764":4,"35765":2,"35766":3,"35767":2,"35768":1,"35769":1,"35770":3,"35771":3,"35772":3,"35773":2,"35774":5,"35775":3,"35776":2,"35777":4,"35778":1,"35779":3,"35780":2,"35781":3,"35782":3,"35783":5,"35784":3,"35785":4,"35786":2,"35787":2,"35788":1,"35789":3,"35790":4,"35791":3,"35792":3,"35793":3,"35794":3,"35795":3,"35796":1,"35797":5,"35798":3,"35799":4,"35800":3,"35801":4,"35802":4,"35803":4,"35804":4,"35805":2,"35806":1,"35807":4,"35808":3,"35809":2,"35810":3,"35811":4,"35812":4,"35813":4,"35814":1,"35815":3,"35816":3,"35817":1,"35818":2,"35819":4,"35820":1,"35821":3,"35822":1,"35823":2,"35824":5,"35825":3,"35826":4,"35827":4,"35828":3,"35829":4,"35830":3,"35831":4,"35832":3,"35833":4,"35834":4,"35835":4,"35836":3,"35837":2,"35838":4,"35839":1,"35840":5,"35841":2,"35842":3,"35843":1,"35844":3,"35845":3,"35846":2,"35847":4,"35848":3,"35849":5,"35850":3,"35851":4,"35852":2,"35853":3,"35854":4,"35855":4,"35856":4,"35857":4,"35858":5,"35859":2,"35860":5,"35861":4,"35862":3,"35863":3,"35864":2,"35865":4,"35866":3,"35867":3,"35868":3,"35869":4,"35870":1,"35871":2,"35872":3,"35873":2,"35874":3,"35875":4,"35876":2,"35877":5,"35878":3,"35879":4,"35880":3,"35881":2,"35882":3,"35883":3,"35884":4,"35885":2,"35886":4,"35887":3,"35888":4,"35889":3,"35890":1,"35891":2,"35892":5,"35893":3,"35894":3,"35895":2,"35896":3,"35897":4,"35898":4,"35899":1,"35900":4,"35901":3,"35902":3,"35903":4,"35904":1,"35905":2,"35906":3,"35907":3,"35908":3,"35909":2,"35910":3,"35911":2,"35912":1,"35913":3,"35914":2,"35915":4,"35916":2,"35917":2,"35918":1,"35919":2,"35920":2,"35921":2,"35922":1,"35923":3,"35924":4,"35925":5,"35926":2,"35927":3,"35928":2,"35929":4,"35930":2,"35931":4,"35932":4,"35933":3,"35934":3,"35935":3,"35936":2,"35937":2,"35938":4,"35939":2,"35940":4,"35941":2,"35942":1,"35943":1,"35944":3,"35945":4,"35946":3,"35947":5,"35948":2,"35949":4,"35950":1,"35951":1,"35952":2,"35953":4,"35954":1,"35955":2,"35956":3,"35957":2,"35958":4,"35959":1,"35960":3,"35961":3,"35962":3,"35963":5,"35964":3,"35965":3,"35966":2,"35967":4,"35968":2,"35969":4,"35970":3,"35971":4,"35972":1,"35973":3,"35974":5,"35975":3,"35976":4,"35977":2,"35978":2,"35979":4,"35980":2,"35981":5,"35982":3,"35983":2,"35984":3,"35985":2,"35986":5,"35987":4,"35988":4,"35989":2,"35990":4,"35991":2,"35992":2,"35993":3,"35994":4,"35995":3,"35996":2,"35997":2,"35998":4,"35999":3,"36000":4,"36001":3,"36002":1,"36003":3,"36004":3,"36005":2,"36006":3,"36007":3,"36008":1,"36009":4,"36010":3,"36011":3,"36012":4,"36013":2,"36014":3,"36015":2,"36016":3,"36017":3,"36018":2,"36019":3,"36020":3,"36021":3,"36022":3,"36023":4,"36024":4,"36025":3,"36026":3,"36027":5,"36028":3,"36029":4,"36030":1,"36031":3,"36032":3,"36033":4,"36034":4,"36035":3,"36036":3,"36037":2,"36038":4,"36039":2,"36040":2,"36041":2,"36042":2,"36043":1,"36044":3,"36045":3,"36046":2,"36047":1,"36048":3,"36049":4,"36050":4,"36051":2,"36052":1,"36053":5,"36054":1,"36055":3,"36056":2,"36057":5,"36058":5,"36059":2,"36060":2,"36061":3,"36062":2,"36063":3,"36064":5,"36065":4,"36066":4,"36067":4,"36068":3,"36069":3,"36070":2,"36071":2,"36072":2,"36073":5,"36074":3,"36075":3,"36076":4,"36077":3,"36078":3,"36079":3,"36080":3,"36081":3,"36082":2,"36083":5,"36084":3,"36085":2,"36086":4,"36087":2,"36088":3,"36089":3,"36090":2,"36091":3,"36092":2,"36093":3,"36094":3,"36095":3,"36096":3,"36097":3,"36098":4,"36099":4,"36100":4,"36101":2,"36102":2,"36103":3,"36104":4,"36105":2,"36106":1,"36107":3,"36108":2,"36109":4,"36110":3,"36111":4,"36112":3,"36113":3,"36114":2,"36115":3,"36116":3,"36117":3,"36118":1,"36119":2,"36120":2,"36121":5,"36122":2,"36123":3,"36124":4,"36125":2,"36126":4,"36127":3,"36128":5,"36129":2,"36130":3,"36131":3,"36132":4,"36133":2,"36134":3,"36135":3,"36136":1,"36137":3,"36138":3,"36139":3,"36140":4,"36141":4,"36142":4,"36143":3,"36144":1,"36145":4,"36146":3,"36147":3,"36148":3,"36149":5,"36150":3,"36151":2,"36152":3,"36153":2,"36154":4,"36155":3,"36156":4,"36157":2,"36158":4,"36159":3,"36160":3,"36161":5,"36162":4,"36163":3,"36164":4,"36165":3,"36166":4,"36167":4,"36168":4,"36169":2,"36170":5,"36171":3,"36172":1,"36173":3,"36174":3,"36175":2,"36176":2,"36177":4,"36178":3,"36179":1,"36180":1,"36181":3,"36182":1,"36183":4,"36184":5,"36185":3,"36186":1,"36187":1,"36188":3,"36189":3,"36190":2,"36191":4,"36192":2,"36193":2,"36194":3,"36195":2,"36196":3,"36197":3,"36198":2,"36199":3,"36200":3,"36201":2,"36202":4,"36203":3,"36204":1,"36205":4,"36206":3,"36207":5,"36208":4,"36209":2,"36210":4,"36211":3,"36212":3,"36213":2,"36214":4,"36215":1,"36216":2,"36217":4,"36218":5,"36219":3,"36220":1,"36221":3,"36222":3,"36223":3,"36224":4,"36225":3,"36226":3,"36227":5,"36228":3,"36229":3,"36230":5,"36231":4,"36232":1,"36233":3,"36234":3,"36235":3,"36236":1,"36237":4,"36238":4,"36239":3,"36240":3,"36241":3,"36242":2,"36243":2,"36244":4,"36245":2,"36246":4,"36247":1,"36248":3,"36249":2,"36250":3,"36251":2,"36252":1,"36253":2,"36254":2,"36255":4,"36256":2,"36257":3,"36258":1,"36259":3,"36260":3,"36261":2,"36262":5,"36263":4,"36264":4,"36265":1,"36266":3,"36267":3,"36268":2,"36269":3,"36270":3,"36271":2,"36272":4,"36273":4,"36274":3,"36275":5,"36276":2,"36277":1,"36278":4,"36279":4,"36280":4,"36281":1,"36282":3,"36283":3,"36284":4,"36285":3,"36286":3,"36287":4,"36288":3,"36289":2,"36290":4,"36291":2,"36292":2,"36293":3,"36294":3,"36295":4,"36296":2,"36297":3,"36298":5,"36299":3,"36300":2,"36301":5,"36302":2,"36303":5,"36304":2,"36305":3,"36306":3,"36307":5,"36308":4,"36309":4,"36310":3,"36311":4,"36312":5,"36313":1,"36314":3,"36315":2,"36316":3,"36317":4,"36318":4,"36319":3,"36320":2,"36321":4,"36322":1,"36323":4,"36324":3,"36325":2,"36326":2,"36327":3,"36328":2,"36329":3,"36330":2,"36331":3,"36332":4,"36333":4,"36334":2,"36335":2,"36336":3,"36337":2,"36338":4,"36339":4,"36340":4,"36341":4,"36342":2,"36343":4,"36344":3,"36345":2,"36346":3,"36347":4,"36348":4,"36349":4,"36350":4,"36351":3,"36352":1,"36353":3,"36354":3,"36355":2,"36356":1,"36357":3,"36358":5,"36359":4,"36360":2,"36361":5,"36362":4,"36363":5,"36364":2,"36365":4,"36366":4,"36367":4,"36368":4,"36369":2,"36370":3,"36371":4,"36372":4,"36373":5,"36374":2,"36375":4,"36376":2,"36377":2,"36378":2,"36379":3,"36380":5,"36381":3,"36382":3,"36383":2,"36384":2,"36385":5,"36386":1,"36387":1,"36388":5,"36389":5,"36390":1,"36391":4,"36392":4,"36393":4,"36394":2,"36395":4,"36396":4,"36397":3,"36398":3,"36399":3,"36400":3,"36401":3,"36402":3,"36403":2,"36404":4,"36405":3,"36406":3,"36407":2,"36408":4,"36409":3,"36410":3,"36411":4,"36412":3,"36413":3,"36414":2,"36415":4,"36416":2,"36417":3,"36418":4,"36419":3,"36420":3,"36421":1,"36422":5,"36423":3,"36424":4,"36425":4,"36426":2,"36427":4,"36428":1,"36429":2,"36430":3,"36431":2,"36432":4,"36433":4,"36434":3,"36435":4,"36436":4,"36437":4,"36438":2,"36439":3,"36440":3,"36441":4,"36442":3,"36443":2,"36444":3,"36445":2,"36446":3,"36447":5,"36448":1,"36449":3,"36450":2,"36451":3,"36452":3,"36453":4,"36454":3,"36455":2,"36456":3,"36457":2,"36458":3,"36459":4,"36460":4,"36461":2,"36462":2,"36463":3,"36464":3,"36465":3,"36466":1,"36467":3,"36468":3,"36469":2,"36470":3,"36471":2,"36472":1,"36473":4,"36474":4,"36475":1,"36476":4,"36477":2,"36478":2,"36479":4,"36480":4,"36481":3,"36482":3,"36483":3,"36484":4,"36485":4,"36486":5,"36487":2,"36488":4,"36489":3,"36490":3,"36491":3,"36492":3,"36493":2,"36494":2,"36495":4,"36496":3,"36497":2,"36498":2,"36499":2,"36500":2,"36501":4,"36502":1,"36503":2,"36504":5,"36505":3,"36506":3,"36507":1,"36508":2,"36509":2,"36510":2,"36511":3,"36512":2,"36513":4,"36514":3,"36515":3,"36516":4,"36517":4,"36518":3,"36519":2,"36520":3,"36521":3,"36522":3,"36523":5,"36524":4,"36525":3,"36526":3,"36527":5,"36528":3,"36529":1,"36530":3,"36531":1,"36532":2,"36533":5,"36534":4,"36535":2,"36536":3,"36537":5,"36538":3,"36539":5,"36540":3,"36541":3,"36542":2,"36543":4,"36544":4,"36545":4,"36546":3,"36547":3,"36548":2,"36549":3,"36550":5,"36551":2,"36552":2,"36553":4,"36554":4,"36555":2,"36556":3,"36557":3,"36558":3,"36559":3,"36560":3,"36561":2,"36562":3,"36563":3,"36564":3,"36565":3,"36566":5,"36567":3,"36568":2,"36569":2,"36570":3,"36571":3,"36572":2,"36573":3,"36574":5,"36575":1,"36576":3,"36577":3,"36578":4,"36579":2,"36580":4,"36581":3,"36582":1,"36583":1,"36584":3,"36585":4,"36586":4,"36587":4,"36588":2,"36589":2,"36590":4,"36591":3,"36592":4,"36593":3,"36594":1,"36595":2,"36596":4,"36597":2,"36598":3,"36599":3,"36600":2,"36601":1,"36602":3,"36603":3,"36604":2,"36605":5,"36606":2,"36607":3,"36608":3,"36609":3,"36610":2,"36611":3,"36612":4,"36613":1,"36614":2,"36615":5,"36616":4,"36617":3,"36618":4,"36619":3,"36620":3,"36621":5,"36622":2,"36623":4,"36624":3,"36625":4,"36626":2,"36627":3,"36628":3,"36629":3,"36630":2,"36631":5,"36632":5,"36633":4,"36634":3,"36635":4,"36636":4,"36637":4,"36638":3,"36639":2,"36640":2,"36641":5,"36642":1,"36643":1,"36644":2,"36645":4,"36646":1,"36647":2,"36648":3,"36649":4,"36650":2,"36651":3,"36652":3,"36653":4,"36654":4,"36655":1,"36656":3,"36657":4,"36658":3,"36659":3,"36660":4,"36661":3,"36662":3,"36663":2,"36664":3,"36665":5,"36666":3,"36667":4,"36668":3,"36669":3,"36670":4,"36671":3,"36672":4,"36673":2,"36674":2,"36675":5,"36676":4,"36677":1,"36678":5,"36679":3,"36680":2,"36681":1,"36682":2,"36683":3,"36684":3,"36685":3,"36686":4,"36687":3,"36688":3,"36689":3,"36690":4,"36691":3,"36692":3,"36693":4,"36694":3,"36695":3,"36696":4,"36697":4,"36698":3,"36699":4,"36700":5,"36701":5,"36702":3,"36703":2,"36704":1,"36705":4,"36706":4,"36707":1,"36708":1,"36709":3,"36710":3,"36711":2,"36712":2,"36713":3,"36714":4,"36715":2,"36716":1,"36717":4,"36718":2,"36719":4,"36720":5,"36721":3,"36722":3,"36723":3,"36724":5,"36725":3,"36726":1,"36727":2,"36728":4,"36729":4,"36730":3,"36731":3,"36732":1,"36733":4,"36734":4,"36735":2,"36736":2,"36737":2,"36738":2,"36739":4,"36740":3,"36741":3,"36742":5,"36743":2,"36744":4,"36745":1,"36746":3,"36747":5,"36748":3,"36749":2,"36750":4,"36751":2,"36752":4,"36753":1,"36754":4,"36755":2,"36756":5,"36757":2,"36758":3,"36759":2,"36760":3,"36761":2,"36762":3,"36763":4,"36764":2,"36765":4,"36766":1,"36767":4,"36768":5,"36769":4,"36770":3,"36771":2,"36772":4,"36773":1,"36774":1,"36775":4,"36776":3,"36777":4,"36778":3,"36779":3,"36780":4,"36781":2,"36782":4,"36783":3,"36784":3,"36785":2,"36786":3,"36787":4,"36788":4,"36789":2,"36790":3,"36791":3,"36792":3,"36793":2,"36794":5,"36795":5,"36796":3,"36797":4,"36798":3,"36799":4,"36800":3,"36801":3,"36802":3,"36803":4,"36804":3,"36805":4,"36806":2,"36807":3,"36808":4,"36809":3,"36810":3,"36811":4,"36812":4,"36813":5,"36814":1,"36815":3,"36816":3,"36817":3,"36818":3,"36819":4,"36820":2,"36821":2,"36822":3,"36823":2,"36824":1,"36825":5,"36826":4,"36827":3,"36828":5,"36829":2,"36830":4,"36831":3,"36832":3,"36833":3,"36834":2,"36835":1,"36836":3,"36837":4,"36838":1,"36839":2,"36840":2,"36841":4,"36842":3,"36843":3,"36844":3,"36845":2,"36846":1,"36847":4,"36848":3,"36849":5,"36850":5,"36851":3,"36852":4,"36853":1,"36854":5,"36855":4,"36856":3,"36857":2,"36858":4,"36859":3,"36860":3,"36861":4,"36862":5,"36863":4,"36864":4,"36865":4,"36866":2,"36867":4,"36868":2,"36869":3,"36870":2,"36871":3,"36872":4,"36873":1,"36874":4,"36875":3,"36876":4,"36877":3,"36878":4,"36879":2,"36880":4,"36881":3,"36882":3,"36883":3,"36884":3,"36885":5,"36886":4,"36887":3,"36888":3,"36889":2,"36890":5,"36891":2,"36892":4,"36893":3,"36894":2,"36895":4,"36896":3,"36897":5,"36898":3,"36899":3,"36900":3,"36901":4,"36902":2,"36903":3,"36904":1,"36905":4,"36906":4,"36907":3,"36908":2,"36909":2,"36910":3,"36911":2,"36912":3,"36913":4,"36914":4,"36915":2,"36916":2,"36917":2,"36918":3,"36919":2,"36920":3,"36921":1,"36922":1,"36923":2,"36924":3,"36925":3,"36926":4,"36927":2,"36928":2,"36929":3,"36930":4,"36931":3,"36932":3,"36933":2,"36934":4,"36935":4,"36936":2,"36937":2,"36938":4,"36939":3,"36940":3,"36941":2,"36942":3,"36943":3,"36944":3,"36945":1,"36946":5,"36947":4,"36948":2,"36949":3,"36950":3,"36951":2,"36952":3,"36953":4,"36954":2,"36955":1,"36956":3,"36957":3,"36958":2,"36959":1,"36960":3,"36961":3,"36962":2,"36963":5,"36964":4,"36965":5,"36966":3,"36967":2,"36968":2,"36969":4,"36970":3,"36971":3,"36972":1,"36973":3,"36974":1,"36975":1,"36976":1,"36977":3,"36978":4,"36979":1,"36980":3,"36981":1,"36982":2,"36983":3,"36984":2,"36985":2,"36986":1,"36987":3,"36988":3,"36989":4,"36990":4,"36991":4,"36992":4,"36993":3,"36994":3,"36995":3,"36996":2,"36997":2,"36998":4,"36999":4,"37000":3,"37001":3,"37002":2,"37003":2,"37004":4,"37005":3,"37006":2,"37007":3,"37008":2,"37009":3,"37010":5,"37011":2,"37012":3,"37013":5,"37014":3,"37015":3,"37016":2,"37017":5,"37018":5,"37019":4,"37020":4,"37021":2,"37022":3,"37023":2,"37024":2,"37025":2,"37026":1,"37027":2,"37028":1,"37029":2,"37030":3,"37031":4,"37032":3,"37033":3,"37034":4,"37035":3,"37036":4,"37037":4,"37038":1,"37039":4,"37040":4,"37041":2,"37042":4,"37043":3,"37044":3,"37045":4,"37046":4,"37047":3,"37048":4,"37049":2,"37050":1,"37051":3,"37052":5,"37053":3,"37054":2,"37055":4,"37056":4,"37057":2,"37058":4,"37059":2,"37060":1,"37061":5,"37062":4,"37063":1,"37064":4,"37065":4,"37066":4,"37067":1,"37068":4,"37069":2,"37070":3,"37071":5,"37072":2,"37073":4,"37074":4,"37075":3,"37076":4,"37077":2,"37078":4,"37079":3,"37080":3,"37081":5,"37082":4,"37083":5,"37084":2,"37085":3,"37086":3,"37087":4,"37088":3,"37089":3,"37090":3,"37091":2,"37092":2,"37093":3,"37094":4,"37095":4,"37096":3,"37097":3,"37098":4,"37099":3,"37100":2,"37101":5,"37102":5,"37103":2,"37104":4,"37105":3,"37106":2,"37107":2,"37108":4,"37109":3,"37110":3,"37111":4,"37112":2,"37113":5,"37114":3,"37115":2,"37116":3,"37117":2,"37118":3,"37119":4,"37120":4,"37121":3,"37122":3,"37123":2,"37124":1,"37125":3,"37126":5,"37127":2,"37128":4,"37129":1,"37130":1,"37131":4,"37132":3,"37133":2,"37134":1,"37135":4,"37136":3,"37137":3,"37138":5,"37139":3,"37140":4,"37141":3,"37142":3,"37143":2,"37144":5,"37145":3,"37146":3,"37147":3,"37148":4,"37149":2,"37150":4,"37151":3,"37152":4,"37153":2,"37154":1,"37155":4,"37156":3,"37157":4,"37158":2,"37159":2,"37160":2,"37161":4,"37162":3,"37163":3,"37164":2,"37165":4,"37166":5,"37167":5,"37168":2,"37169":4,"37170":3,"37171":1,"37172":4,"37173":3,"37174":2,"37175":3,"37176":4,"37177":3,"37178":3,"37179":4,"37180":2,"37181":4,"37182":3,"37183":2,"37184":2,"37185":3,"37186":5,"37187":2,"37188":2,"37189":4,"37190":4,"37191":2,"37192":2,"37193":4,"37194":4,"37195":3,"37196":3,"37197":4,"37198":1,"37199":1,"37200":2,"37201":3,"37202":2,"37203":3,"37204":4,"37205":2,"37206":4,"37207":3,"37208":2,"37209":3,"37210":1,"37211":3,"37212":4,"37213":3,"37214":5,"37215":3,"37216":2,"37217":3,"37218":5,"37219":3,"37220":2,"37221":3,"37222":1,"37223":3,"37224":4,"37225":3,"37226":3,"37227":3,"37228":2,"37229":3,"37230":3,"37231":2,"37232":2,"37233":2,"37234":5,"37235":1,"37236":4,"37237":4,"37238":4,"37239":4,"37240":4,"37241":4,"37242":4,"37243":2,"37244":2,"37245":5,"37246":1,"37247":4,"37248":4,"37249":4,"37250":2,"37251":1,"37252":4,"37253":2,"37254":4,"37255":1,"37256":1,"37257":5,"37258":3,"37259":3,"37260":5,"37261":2,"37262":3,"37263":3,"37264":3,"37265":4,"37266":2,"37267":4,"37268":2,"37269":3,"37270":4,"37271":3,"37272":4,"37273":2,"37274":1,"37275":3,"37276":2,"37277":2,"37278":5,"37279":5,"37280":4,"37281":2,"37282":3,"37283":4,"37284":5,"37285":3,"37286":2,"37287":3,"37288":4,"37289":5,"37290":2,"37291":2,"37292":5,"37293":3,"37294":3,"37295":1,"37296":3,"37297":2,"37298":2,"37299":1,"37300":4,"37301":3,"37302":3,"37303":4,"37304":3,"37305":3,"37306":5,"37307":3,"37308":3,"37309":2,"37310":1,"37311":3,"37312":4,"37313":4,"37314":4,"37315":4,"37316":1,"37317":5,"37318":2,"37319":2,"37320":2,"37321":1,"37322":3,"37323":3,"37324":4,"37325":3,"37326":3,"37327":2,"37328":4,"37329":3,"37330":3,"37331":3,"37332":4,"37333":3,"37334":1,"37335":2,"37336":4,"37337":3,"37338":3,"37339":2,"37340":3,"37341":1,"37342":1,"37343":2,"37344":3,"37345":2,"37346":4,"37347":3,"37348":3,"37349":3,"37350":4,"37351":5,"37352":5,"37353":4,"37354":5,"37355":2,"37356":2,"37357":4,"37358":3,"37359":4,"37360":3,"37361":4,"37362":2,"37363":3,"37364":3,"37365":2,"37366":3,"37367":2,"37368":4,"37369":4,"37370":3,"37371":5,"37372":4,"37373":2,"37374":5,"37375":4,"37376":1,"37377":2,"37378":3,"37379":1,"37380":4,"37381":4,"37382":3,"37383":3,"37384":3,"37385":5,"37386":3,"37387":5,"37388":3,"37389":5,"37390":4,"37391":2,"37392":4,"37393":1,"37394":2,"37395":2,"37396":3,"37397":4,"37398":1,"37399":4,"37400":2,"37401":3,"37402":2,"37403":4,"37404":4,"37405":1,"37406":4,"37407":2,"37408":2,"37409":3,"37410":3,"37411":1,"37412":3,"37413":4,"37414":2,"37415":4,"37416":1,"37417":2,"37418":4,"37419":3,"37420":4,"37421":2,"37422":4,"37423":2,"37424":2,"37425":3,"37426":3,"37427":4,"37428":1,"37429":4,"37430":3,"37431":1,"37432":2,"37433":3,"37434":1,"37435":5,"37436":4,"37437":2,"37438":4,"37439":2,"37440":2,"37441":3,"37442":1,"37443":3,"37444":4,"37445":2,"37446":2,"37447":3,"37448":3,"37449":3,"37450":4,"37451":3,"37452":3,"37453":4,"37454":3,"37455":4,"37456":2,"37457":4,"37458":3,"37459":5,"37460":2,"37461":1,"37462":3,"37463":4,"37464":4,"37465":3,"37466":3,"37467":3,"37468":3,"37469":4,"37470":1,"37471":1,"37472":4,"37473":3,"37474":2,"37475":3,"37476":2,"37477":4,"37478":3,"37479":4,"37480":3,"37481":4,"37482":4,"37483":4,"37484":3,"37485":4,"37486":1,"37487":4,"37488":4,"37489":4,"37490":3,"37491":3,"37492":2,"37493":1,"37494":4,"37495":5,"37496":4,"37497":2,"37498":4,"37499":3,"37500":2,"37501":4,"37502":1,"37503":4,"37504":3,"37505":2,"37506":2,"37507":3,"37508":2,"37509":3,"37510":5,"37511":2,"37512":4,"37513":2,"37514":3,"37515":3,"37516":2,"37517":4,"37518":4,"37519":3,"37520":3,"37521":4,"37522":3,"37523":1,"37524":4,"37525":3,"37526":3,"37527":2,"37528":4,"37529":5,"37530":2,"37531":3,"37532":4,"37533":4,"37534":4,"37535":4,"37536":3,"37537":3,"37538":3,"37539":4,"37540":3,"37541":3,"37542":3,"37543":4,"37544":4,"37545":3,"37546":3,"37547":2,"37548":1,"37549":3,"37550":4,"37551":4,"37552":5,"37553":2,"37554":4,"37555":3,"37556":4,"37557":2,"37558":4,"37559":3,"37560":1,"37561":4,"37562":3,"37563":4,"37564":1,"37565":4,"37566":1,"37567":3,"37568":3,"37569":3,"37570":4,"37571":3,"37572":3,"37573":2,"37574":3,"37575":4,"37576":4,"37577":2,"37578":3,"37579":2,"37580":2,"37581":5,"37582":1,"37583":1,"37584":4,"37585":3,"37586":3,"37587":4,"37588":3,"37589":2,"37590":2,"37591":3,"37592":3,"37593":4,"37594":4,"37595":3,"37596":4,"37597":5,"37598":1,"37599":4,"37600":3,"37601":4,"37602":3,"37603":1,"37604":4,"37605":1,"37606":4,"37607":2,"37608":1,"37609":4,"37610":3,"37611":3,"37612":3,"37613":5,"37614":5,"37615":2,"37616":5,"37617":4,"37618":3,"37619":5,"37620":3,"37621":3,"37622":4,"37623":2,"37624":1,"37625":2,"37626":1,"37627":3,"37628":5,"37629":2,"37630":5,"37631":2,"37632":4,"37633":2,"37634":4,"37635":4,"37636":1,"37637":5,"37638":3,"37639":4,"37640":1,"37641":3,"37642":3,"37643":5,"37644":4,"37645":4,"37646":4,"37647":4,"37648":5,"37649":2,"37650":4,"37651":3,"37652":3,"37653":2,"37654":3,"37655":5,"37656":3,"37657":4,"37658":4,"37659":2,"37660":4,"37661":3,"37662":4,"37663":4,"37664":3,"37665":4,"37666":5,"37667":1,"37668":4,"37669":5,"37670":4,"37671":1,"37672":4,"37673":4,"37674":1,"37675":4,"37676":2,"37677":3,"37678":4,"37679":2,"37680":4,"37681":3,"37682":2,"37683":1,"37684":2,"37685":4,"37686":4,"37687":4,"37688":3,"37689":3,"37690":4,"37691":4,"37692":2,"37693":2,"37694":3,"37695":5,"37696":4,"37697":2,"37698":2,"37699":4,"37700":3,"37701":4,"37702":3,"37703":1,"37704":4,"37705":3,"37706":5,"37707":3,"37708":2,"37709":3,"37710":4,"37711":2,"37712":2,"37713":3,"37714":1,"37715":4,"37716":2,"37717":2,"37718":4,"37719":4,"37720":5,"37721":4,"37722":3,"37723":1,"37724":1,"37725":3,"37726":2,"37727":3,"37728":2,"37729":2,"37730":4,"37731":3,"37732":3,"37733":5,"37734":3,"37735":3,"37736":2,"37737":5,"37738":3,"37739":3,"37740":3,"37741":2,"37742":3,"37743":3,"37744":4,"37745":1,"37746":2,"37747":3,"37748":4,"37749":4,"37750":5,"37751":3,"37752":4,"37753":5,"37754":3,"37755":4,"37756":4,"37757":3,"37758":3,"37759":3,"37760":4,"37761":4,"37762":3,"37763":5,"37764":5,"37765":5,"37766":3,"37767":3,"37768":1,"37769":2,"37770":3,"37771":2,"37772":2,"37773":3,"37774":4,"37775":4,"37776":3,"37777":3,"37778":3,"37779":4,"37780":3,"37781":2,"37782":2,"37783":2,"37784":3,"37785":1,"37786":1,"37787":2,"37788":1,"37789":3,"37790":4,"37791":5,"37792":1,"37793":3,"37794":4,"37795":2,"37796":2,"37797":4,"37798":3,"37799":1,"37800":1,"37801":3,"37802":2,"37803":3,"37804":2,"37805":2,"37806":3,"37807":1,"37808":3,"37809":4,"37810":4,"37811":4,"37812":4,"37813":2,"37814":2,"37815":2,"37816":5,"37817":3,"37818":5,"37819":2,"37820":3,"37821":3,"37822":3,"37823":1,"37824":3,"37825":4,"37826":5,"37827":4,"37828":2,"37829":3,"37830":2,"37831":3,"37832":4,"37833":3,"37834":3,"37835":2,"37836":2,"37837":2,"37838":5,"37839":4,"37840":1,"37841":5,"37842":4,"37843":4,"37844":3,"37845":3,"37846":3,"37847":4,"37848":2,"37849":2,"37850":2,"37851":3,"37852":4,"37853":5,"37854":3,"37855":3,"37856":3,"37857":3,"37858":3,"37859":1,"37860":2,"37861":2,"37862":2,"37863":3,"37864":2,"37865":3,"37866":3,"37867":2,"37868":4,"37869":4,"37870":3,"37871":4,"37872":2,"37873":3,"37874":3,"37875":3,"37876":2,"37877":2,"37878":2,"37879":1,"37880":2,"37881":3,"37882":4,"37883":4,"37884":3,"37885":2,"37886":5,"37887":3,"37888":4,"37889":4,"37890":2,"37891":2,"37892":2,"37893":3,"37894":1,"37895":3,"37896":4,"37897":4,"37898":3,"37899":2,"37900":2,"37901":3,"37902":3,"37903":2,"37904":2,"37905":2,"37906":3,"37907":4,"37908":3,"37909":5,"37910":4,"37911":1,"37912":1,"37913":3,"37914":3,"37915":4,"37916":3,"37917":4,"37918":2,"37919":4,"37920":3,"37921":3,"37922":3,"37923":2,"37924":4,"37925":3,"37926":4,"37927":4,"37928":5,"37929":5,"37930":4,"37931":3,"37932":3,"37933":2,"37934":3,"37935":2,"37936":3,"37937":2,"37938":3,"37939":2,"37940":3,"37941":4,"37942":3,"37943":2,"37944":3,"37945":2,"37946":4,"37947":1,"37948":4,"37949":2,"37950":1,"37951":3,"37952":3,"37953":2,"37954":1,"37955":2,"37956":2,"37957":4,"37958":4,"37959":2,"37960":4,"37961":3,"37962":5,"37963":5,"37964":3,"37965":4,"37966":3,"37967":3,"37968":4,"37969":4,"37970":5,"37971":4,"37972":3,"37973":2,"37974":3,"37975":4,"37976":3,"37977":3,"37978":3,"37979":3,"37980":4,"37981":3,"37982":3,"37983":4,"37984":3,"37985":3,"37986":5,"37987":4,"37988":5,"37989":2,"37990":1,"37991":1,"37992":3,"37993":4,"37994":3,"37995":3,"37996":4,"37997":2,"37998":4,"37999":4,"38000":3,"38001":3,"38002":1,"38003":3,"38004":4,"38005":1,"38006":4,"38007":3,"38008":4,"38009":3,"38010":3,"38011":2,"38012":4,"38013":3,"38014":2,"38015":1,"38016":4,"38017":3,"38018":3,"38019":3,"38020":3,"38021":4,"38022":4,"38023":2,"38024":3,"38025":4,"38026":1,"38027":3,"38028":3,"38029":4,"38030":1,"38031":3,"38032":2,"38033":2,"38034":2,"38035":3,"38036":4,"38037":2,"38038":5,"38039":3,"38040":5,"38041":5,"38042":5,"38043":1,"38044":3,"38045":4,"38046":4,"38047":1,"38048":3,"38049":2,"38050":2,"38051":5,"38052":3,"38053":1,"38054":4,"38055":5,"38056":4,"38057":4,"38058":5,"38059":3,"38060":4,"38061":3,"38062":2,"38063":4,"38064":1,"38065":4,"38066":3,"38067":2,"38068":3,"38069":2,"38070":5,"38071":3,"38072":5,"38073":3,"38074":4,"38075":2,"38076":5,"38077":3,"38078":4,"38079":5,"38080":1,"38081":3,"38082":1,"38083":3,"38084":2,"38085":3,"38086":2,"38087":3,"38088":3,"38089":3,"38090":3,"38091":2,"38092":1,"38093":1,"38094":3,"38095":1,"38096":3,"38097":1,"38098":3,"38099":1,"38100":1,"38101":4,"38102":3,"38103":3,"38104":3,"38105":4,"38106":4,"38107":3,"38108":2,"38109":3,"38110":3,"38111":1,"38112":5,"38113":4,"38114":3,"38115":3,"38116":2,"38117":4,"38118":3,"38119":2,"38120":3,"38121":3,"38122":3,"38123":3,"38124":3,"38125":2,"38126":4,"38127":3,"38128":2,"38129":2,"38130":1,"38131":4,"38132":4,"38133":3,"38134":3,"38135":3,"38136":3,"38137":3,"38138":2,"38139":1,"38140":2,"38141":2,"38142":3,"38143":3,"38144":2,"38145":3,"38146":2,"38147":3,"38148":2,"38149":3,"38150":1,"38151":4,"38152":4,"38153":3,"38154":5,"38155":2,"38156":3,"38157":3,"38158":2,"38159":3,"38160":1,"38161":2,"38162":2,"38163":4,"38164":3,"38165":4,"38166":4,"38167":2,"38168":1,"38169":4,"38170":4,"38171":4,"38172":3,"38173":4,"38174":3,"38175":5,"38176":3,"38177":3,"38178":3,"38179":2,"38180":4,"38181":2,"38182":2,"38183":4,"38184":3,"38185":1,"38186":2,"38187":3,"38188":1,"38189":3,"38190":3,"38191":2,"38192":4,"38193":3,"38194":3,"38195":5,"38196":2,"38197":3,"38198":4,"38199":3,"38200":4,"38201":2,"38202":2,"38203":4,"38204":4,"38205":1,"38206":2,"38207":3,"38208":4,"38209":4,"38210":3,"38211":3,"38212":4,"38213":5,"38214":1,"38215":4,"38216":3,"38217":4,"38218":4,"38219":4,"38220":5,"38221":3,"38222":4,"38223":4,"38224":5,"38225":3,"38226":4,"38227":2,"38228":3,"38229":4,"38230":4,"38231":3,"38232":5,"38233":1,"38234":3,"38235":5,"38236":4,"38237":4,"38238":5,"38239":2,"38240":3,"38241":2,"38242":4,"38243":4,"38244":1,"38245":4,"38246":3,"38247":3,"38248":4,"38249":4,"38250":2,"38251":3,"38252":3,"38253":3,"38254":2,"38255":4,"38256":4,"38257":5,"38258":4,"38259":3,"38260":3,"38261":4,"38262":3,"38263":3,"38264":4,"38265":3,"38266":2,"38267":3,"38268":3,"38269":2,"38270":2,"38271":2,"38272":2,"38273":2,"38274":3,"38275":3,"38276":4,"38277":5,"38278":1,"38279":2,"38280":2,"38281":4,"38282":4,"38283":3,"38284":3,"38285":5,"38286":2,"38287":5,"38288":4,"38289":2,"38290":4,"38291":4,"38292":2,"38293":2,"38294":2,"38295":2,"38296":1,"38297":2,"38298":3,"38299":1,"38300":2,"38301":4,"38302":2,"38303":4,"38304":4,"38305":1,"38306":3,"38307":3,"38308":4,"38309":3,"38310":2,"38311":4,"38312":1,"38313":2,"38314":4,"38315":3,"38316":5,"38317":2,"38318":3,"38319":2,"38320":3,"38321":4,"38322":2,"38323":1,"38324":3,"38325":4,"38326":2,"38327":2,"38328":3,"38329":4,"38330":2,"38331":2,"38332":4,"38333":3,"38334":2,"38335":3,"38336":1,"38337":2,"38338":3,"38339":3,"38340":4,"38341":3,"38342":2,"38343":3,"38344":3,"38345":2,"38346":3,"38347":2,"38348":3,"38349":4,"38350":4,"38351":4,"38352":3,"38353":3,"38354":1,"38355":1,"38356":5,"38357":5,"38358":4,"38359":4,"38360":4,"38361":4,"38362":1,"38363":3,"38364":3,"38365":3,"38366":4,"38367":4,"38368":4,"38369":1,"38370":4,"38371":2,"38372":2,"38373":2,"38374":2,"38375":2,"38376":2,"38377":3,"38378":4,"38379":4,"38380":4,"38381":2,"38382":3,"38383":4,"38384":1,"38385":1,"38386":5,"38387":4,"38388":4,"38389":4,"38390":3,"38391":3,"38392":5,"38393":4,"38394":3,"38395":4,"38396":2,"38397":2,"38398":1,"38399":4,"38400":3,"38401":2,"38402":2,"38403":3,"38404":3,"38405":4,"38406":4,"38407":2,"38408":3,"38409":2,"38410":3,"38411":3,"38412":4,"38413":4,"38414":2,"38415":3,"38416":2,"38417":3,"38418":4,"38419":3,"38420":2,"38421":1,"38422":3,"38423":4,"38424":4,"38425":4,"38426":2,"38427":3,"38428":3,"38429":4,"38430":3,"38431":3,"38432":1,"38433":3,"38434":3,"38435":3,"38436":2,"38437":3,"38438":3,"38439":3,"38440":5,"38441":3,"38442":4,"38443":4,"38444":4,"38445":3,"38446":4,"38447":4,"38448":2,"38449":4,"38450":3,"38451":2,"38452":3,"38453":3,"38454":1,"38455":3,"38456":3,"38457":2,"38458":4,"38459":3,"38460":3,"38461":4,"38462":4,"38463":2,"38464":4,"38465":3,"38466":3,"38467":2,"38468":5,"38469":2,"38470":2,"38471":2,"38472":2,"38473":2,"38474":3,"38475":4,"38476":4,"38477":3,"38478":3,"38479":3,"38480":3,"38481":3,"38482":4,"38483":3,"38484":3,"38485":2,"38486":3,"38487":3,"38488":4,"38489":2,"38490":4,"38491":3,"38492":5,"38493":2,"38494":2,"38495":2,"38496":3,"38497":3,"38498":3,"38499":5,"38500":3,"38501":1,"38502":3,"38503":3,"38504":3,"38505":4,"38506":1,"38507":1,"38508":4,"38509":3,"38510":5,"38511":2,"38512":3,"38513":2,"38514":2,"38515":2,"38516":3,"38517":4,"38518":3,"38519":3,"38520":2,"38521":3,"38522":3,"38523":5,"38524":3,"38525":2,"38526":2,"38527":2,"38528":3,"38529":4,"38530":3,"38531":3,"38532":4,"38533":2,"38534":2,"38535":5,"38536":1,"38537":4,"38538":2,"38539":2,"38540":2,"38541":4,"38542":5,"38543":1,"38544":3,"38545":3,"38546":4,"38547":2,"38548":3,"38549":3,"38550":2,"38551":1,"38552":3,"38553":1,"38554":2,"38555":2,"38556":3,"38557":3,"38558":3,"38559":4,"38560":3,"38561":3,"38562":1,"38563":3,"38564":3,"38565":3,"38566":3,"38567":4,"38568":4,"38569":4,"38570":5,"38571":5,"38572":2,"38573":4,"38574":4,"38575":3,"38576":4,"38577":4,"38578":4,"38579":3,"38580":3,"38581":2,"38582":2,"38583":1,"38584":3,"38585":3,"38586":3,"38587":3,"38588":3,"38589":5,"38590":3,"38591":1,"38592":3,"38593":4,"38594":2,"38595":2,"38596":2,"38597":1,"38598":1,"38599":3,"38600":3,"38601":2,"38602":5,"38603":4,"38604":4,"38605":2,"38606":5,"38607":1,"38608":1,"38609":3,"38610":3,"38611":3,"38612":4,"38613":3,"38614":4,"38615":3,"38616":4,"38617":3,"38618":4,"38619":5,"38620":4,"38621":3,"38622":5,"38623":3,"38624":1,"38625":3,"38626":3,"38627":3,"38628":3,"38629":1,"38630":5,"38631":3,"38632":5,"38633":5,"38634":2,"38635":3,"38636":3,"38637":3,"38638":1,"38639":3,"38640":1,"38641":3,"38642":3,"38643":2,"38644":5,"38645":3,"38646":4,"38647":4,"38648":3,"38649":4,"38650":1,"38651":3,"38652":2,"38653":4,"38654":2,"38655":2,"38656":3,"38657":2,"38658":3,"38659":2,"38660":4,"38661":2,"38662":1,"38663":4,"38664":1,"38665":2,"38666":4,"38667":3,"38668":4,"38669":3,"38670":4,"38671":4,"38672":4,"38673":2,"38674":4,"38675":2,"38676":3,"38677":5,"38678":5,"38679":5,"38680":1,"38681":4,"38682":3,"38683":3,"38684":2,"38685":3,"38686":4,"38687":2,"38688":4,"38689":3,"38690":4,"38691":2,"38692":2,"38693":3,"38694":2,"38695":2,"38696":4,"38697":4,"38698":3,"38699":5,"38700":3,"38701":3,"38702":3,"38703":4,"38704":4,"38705":3,"38706":2,"38707":3,"38708":5,"38709":2,"38710":4,"38711":3,"38712":2,"38713":1,"38714":4,"38715":2,"38716":3,"38717":4,"38718":5,"38719":3,"38720":1,"38721":3,"38722":4,"38723":3,"38724":2,"38725":3,"38726":2,"38727":2,"38728":2,"38729":3,"38730":4,"38731":4,"38732":3,"38733":3,"38734":1,"38735":3,"38736":1,"38737":1,"38738":3,"38739":4,"38740":3,"38741":1,"38742":1,"38743":3,"38744":2,"38745":4,"38746":3,"38747":2,"38748":2,"38749":3,"38750":1,"38751":1,"38752":5,"38753":4,"38754":2,"38755":2,"38756":1,"38757":2,"38758":3,"38759":4,"38760":3,"38761":3,"38762":3,"38763":3,"38764":2,"38765":3,"38766":3,"38767":3,"38768":3,"38769":2,"38770":2,"38771":3,"38772":4,"38773":3,"38774":3,"38775":4,"38776":3,"38777":3,"38778":4,"38779":3,"38780":1,"38781":4,"38782":5,"38783":3,"38784":3,"38785":4,"38786":4,"38787":1,"38788":4,"38789":4,"38790":2,"38791":4,"38792":1,"38793":3,"38794":5,"38795":4,"38796":4,"38797":3,"38798":3,"38799":3,"38800":4,"38801":4,"38802":1,"38803":2,"38804":5,"38805":3,"38806":2,"38807":3,"38808":2,"38809":3,"38810":3,"38811":3,"38812":3,"38813":4,"38814":4,"38815":3,"38816":4,"38817":4,"38818":1,"38819":4,"38820":3,"38821":4,"38822":3,"38823":3,"38824":4,"38825":1,"38826":4,"38827":3,"38828":1,"38829":4,"38830":3,"38831":3,"38832":2,"38833":3,"38834":4,"38835":3,"38836":3,"38837":4,"38838":3,"38839":3,"38840":3,"38841":2,"38842":3,"38843":3,"38844":3,"38845":3,"38846":3,"38847":4,"38848":3,"38849":2,"38850":1,"38851":3,"38852":4,"38853":4,"38854":1,"38855":4,"38856":4,"38857":4,"38858":3,"38859":2,"38860":1,"38861":1,"38862":4,"38863":3,"38864":2,"38865":3,"38866":4,"38867":3,"38868":3,"38869":3,"38870":2,"38871":3,"38872":2,"38873":4,"38874":4,"38875":2,"38876":2,"38877":3,"38878":1,"38879":4,"38880":3,"38881":2,"38882":2,"38883":3,"38884":3,"38885":4,"38886":4,"38887":3,"38888":2,"38889":1,"38890":2,"38891":3,"38892":4,"38893":2,"38894":1,"38895":4,"38896":3,"38897":2,"38898":3,"38899":4,"38900":2,"38901":1,"38902":2,"38903":1,"38904":2,"38905":4,"38906":2,"38907":3,"38908":4,"38909":2,"38910":2,"38911":4,"38912":3,"38913":3,"38914":3,"38915":3,"38916":3,"38917":3,"38918":3,"38919":1,"38920":4,"38921":2,"38922":3,"38923":3,"38924":4,"38925":4,"38926":4,"38927":2,"38928":1,"38929":3,"38930":3,"38931":2,"38932":3,"38933":3,"38934":4,"38935":1,"38936":2,"38937":2,"38938":4,"38939":4,"38940":2,"38941":2,"38942":4,"38943":3,"38944":3,"38945":4,"38946":2,"38947":1,"38948":4,"38949":4,"38950":4,"38951":3,"38952":1,"38953":4,"38954":4,"38955":1,"38956":2,"38957":3,"38958":3,"38959":1,"38960":4,"38961":3,"38962":3,"38963":3,"38964":3,"38965":2,"38966":1,"38967":3,"38968":4,"38969":4,"38970":3,"38971":3,"38972":5,"38973":4,"38974":3,"38975":3,"38976":2,"38977":3,"38978":3,"38979":3,"38980":2,"38981":3,"38982":3,"38983":5,"38984":3,"38985":3,"38986":2,"38987":4,"38988":2,"38989":3,"38990":3,"38991":4,"38992":2,"38993":4,"38994":2,"38995":3,"38996":2,"38997":3,"38998":4,"38999":3,"39000":3,"39001":4,"39002":4,"39003":4,"39004":4,"39005":4,"39006":4,"39007":2,"39008":5,"39009":4,"39010":3,"39011":4,"39012":3,"39013":3,"39014":4,"39015":4,"39016":3,"39017":3,"39018":3,"39019":1,"39020":5,"39021":4,"39022":4,"39023":3,"39024":1,"39025":2,"39026":4,"39027":5,"39028":3,"39029":3,"39030":3,"39031":3,"39032":2,"39033":3,"39034":2,"39035":3,"39036":3,"39037":4,"39038":1,"39039":3,"39040":2,"39041":4,"39042":2,"39043":1,"39044":2,"39045":5,"39046":3,"39047":3,"39048":3,"39049":3,"39050":3,"39051":1,"39052":4,"39053":2,"39054":3,"39055":2,"39056":4,"39057":4,"39058":5,"39059":5,"39060":3,"39061":4,"39062":4,"39063":4,"39064":2,"39065":4,"39066":3,"39067":3,"39068":2,"39069":2,"39070":3,"39071":3,"39072":2,"39073":3,"39074":2,"39075":3,"39076":2,"39077":5,"39078":3,"39079":3,"39080":4,"39081":4,"39082":2,"39083":3,"39084":4,"39085":4,"39086":3,"39087":3,"39088":2,"39089":4,"39090":3,"39091":3,"39092":4,"39093":3,"39094":2,"39095":1,"39096":3,"39097":4,"39098":3,"39099":3,"39100":4,"39101":3,"39102":4,"39103":1,"39104":3,"39105":1,"39106":3,"39107":1,"39108":1,"39109":3,"39110":5,"39111":3,"39112":3,"39113":3,"39114":3,"39115":4,"39116":2,"39117":1,"39118":4,"39119":4,"39120":5,"39121":3,"39122":4,"39123":3,"39124":1,"39125":4,"39126":4,"39127":3,"39128":5,"39129":1,"39130":2,"39131":4,"39132":5,"39133":3,"39134":2,"39135":1,"39136":2,"39137":3,"39138":4,"39139":3,"39140":2,"39141":4,"39142":3,"39143":3,"39144":3,"39145":2,"39146":2,"39147":3,"39148":2,"39149":4,"39150":2,"39151":5,"39152":3,"39153":5,"39154":4,"39155":3,"39156":3,"39157":1,"39158":2,"39159":5,"39160":4,"39161":3,"39162":3,"39163":3,"39164":3,"39165":1,"39166":5,"39167":1,"39168":4,"39169":3,"39170":1,"39171":4,"39172":3,"39173":4,"39174":3,"39175":1,"39176":1,"39177":3,"39178":1,"39179":4,"39180":3,"39181":4,"39182":2,"39183":3,"39184":2,"39185":4,"39186":1,"39187":2,"39188":4,"39189":5,"39190":1,"39191":3,"39192":3,"39193":3,"39194":2,"39195":4,"39196":5,"39197":3,"39198":1,"39199":4,"39200":5,"39201":2,"39202":4,"39203":4,"39204":4,"39205":4,"39206":3,"39207":1,"39208":5,"39209":3,"39210":3,"39211":4,"39212":4,"39213":3,"39214":3,"39215":4,"39216":2,"39217":5,"39218":3,"39219":3,"39220":5,"39221":1,"39222":4,"39223":4,"39224":3,"39225":3,"39226":3,"39227":3,"39228":4,"39229":4,"39230":3,"39231":3,"39232":3,"39233":3,"39234":5,"39235":4,"39236":1,"39237":1,"39238":3,"39239":2,"39240":4,"39241":3,"39242":3,"39243":3,"39244":5,"39245":1,"39246":3,"39247":3,"39248":3,"39249":3,"39250":4,"39251":1,"39252":4,"39253":4,"39254":2,"39255":3,"39256":3,"39257":2,"39258":3,"39259":3,"39260":5,"39261":3,"39262":4,"39263":3,"39264":1,"39265":1,"39266":3,"39267":4,"39268":4,"39269":2,"39270":2,"39271":2,"39272":2,"39273":4,"39274":3,"39275":4,"39276":3,"39277":4,"39278":5,"39279":2,"39280":3,"39281":1,"39282":1,"39283":3,"39284":2,"39285":4,"39286":2,"39287":2,"39288":2,"39289":5,"39290":5,"39291":2,"39292":4,"39293":2,"39294":4,"39295":4,"39296":3,"39297":2,"39298":5,"39299":3,"39300":4,"39301":5,"39302":3,"39303":4,"39304":1,"39305":2,"39306":4,"39307":4,"39308":5,"39309":4,"39310":1,"39311":3,"39312":2,"39313":3,"39314":1,"39315":2,"39316":3,"39317":2,"39318":5,"39319":3,"39320":1,"39321":3,"39322":3,"39323":2,"39324":3,"39325":2,"39326":1,"39327":2,"39328":2,"39329":1,"39330":3,"39331":3,"39332":3,"39333":4,"39334":1,"39335":4,"39336":5,"39337":4,"39338":3,"39339":3,"39340":1,"39341":1,"39342":2,"39343":2,"39344":3,"39345":1,"39346":4,"39347":3,"39348":1,"39349":3,"39350":4,"39351":2,"39352":3,"39353":4,"39354":2,"39355":4,"39356":1,"39357":4,"39358":2,"39359":4,"39360":1,"39361":4,"39362":4,"39363":3,"39364":2,"39365":3,"39366":2,"39367":2,"39368":3,"39369":4,"39370":3,"39371":5,"39372":3,"39373":4,"39374":1,"39375":3,"39376":3,"39377":4,"39378":3,"39379":3,"39380":3,"39381":1,"39382":3,"39383":4,"39384":2,"39385":5,"39386":3,"39387":3,"39388":4,"39389":4,"39390":2,"39391":4,"39392":2,"39393":4,"39394":3,"39395":2,"39396":3,"39397":2,"39398":4,"39399":2,"39400":5,"39401":2,"39402":3,"39403":2,"39404":4,"39405":3,"39406":3,"39407":2,"39408":1,"39409":3,"39410":3,"39411":2,"39412":2,"39413":3,"39414":4,"39415":2,"39416":3,"39417":2,"39418":4,"39419":3,"39420":3,"39421":1,"39422":4,"39423":2,"39424":3,"39425":4,"39426":2,"39427":1,"39428":3,"39429":3,"39430":2,"39431":4,"39432":4,"39433":5,"39434":3,"39435":2,"39436":1,"39437":2,"39438":1,"39439":2,"39440":3,"39441":3,"39442":2,"39443":5,"39444":4,"39445":2,"39446":3,"39447":2,"39448":4,"39449":3,"39450":2,"39451":3,"39452":3,"39453":5,"39454":3,"39455":3,"39456":4,"39457":3,"39458":3,"39459":3,"39460":1,"39461":3,"39462":4,"39463":3,"39464":4,"39465":1,"39466":4,"39467":4,"39468":3,"39469":2,"39470":4,"39471":2,"39472":2,"39473":1,"39474":4,"39475":3,"39476":2,"39477":3,"39478":4,"39479":3,"39480":2,"39481":1,"39482":2,"39483":3,"39484":4,"39485":2,"39486":2,"39487":3,"39488":3,"39489":2,"39490":5,"39491":3,"39492":3,"39493":3,"39494":4,"39495":3,"39496":3,"39497":4,"39498":4,"39499":3,"39500":4,"39501":3,"39502":3,"39503":2,"39504":4,"39505":4,"39506":2,"39507":4,"39508":2,"39509":2,"39510":2,"39511":4,"39512":1,"39513":4,"39514":3,"39515":4,"39516":2,"39517":4,"39518":2,"39519":4,"39520":3,"39521":4,"39522":3,"39523":3,"39524":4,"39525":3,"39526":3,"39527":2,"39528":5,"39529":3,"39530":3,"39531":4,"39532":4,"39533":2,"39534":3,"39535":4,"39536":3,"39537":2,"39538":4,"39539":3,"39540":3,"39541":2,"39542":3,"39543":3,"39544":3,"39545":3,"39546":5,"39547":5,"39548":3,"39549":3,"39550":1,"39551":3,"39552":4,"39553":2,"39554":3,"39555":1,"39556":4,"39557":3,"39558":4,"39559":5,"39560":4,"39561":2,"39562":2,"39563":2,"39564":3,"39565":4,"39566":3,"39567":2,"39568":3,"39569":3,"39570":2,"39571":2,"39572":3,"39573":2,"39574":3,"39575":2,"39576":3,"39577":2,"39578":2,"39579":2,"39580":1,"39581":3,"39582":3,"39583":3,"39584":4,"39585":2,"39586":3,"39587":3,"39588":4,"39589":3,"39590":4,"39591":3,"39592":3,"39593":3,"39594":1,"39595":3,"39596":1,"39597":2,"39598":3,"39599":1,"39600":3,"39601":4,"39602":1,"39603":3,"39604":3,"39605":3,"39606":3,"39607":3,"39608":3,"39609":3,"39610":2,"39611":3,"39612":3,"39613":2,"39614":3,"39615":3,"39616":2,"39617":4,"39618":3,"39619":5,"39620":3,"39621":2,"39622":5,"39623":4,"39624":4,"39625":3,"39626":4,"39627":5,"39628":2,"39629":1,"39630":3,"39631":5,"39632":3,"39633":3,"39634":4,"39635":2,"39636":2,"39637":1,"39638":3,"39639":2,"39640":3,"39641":4,"39642":1,"39643":1,"39644":4,"39645":2,"39646":4,"39647":3,"39648":4,"39649":2,"39650":4,"39651":4,"39652":2,"39653":3,"39654":2,"39655":5,"39656":3,"39657":4,"39658":3,"39659":2,"39660":3,"39661":2,"39662":3,"39663":4,"39664":3,"39665":4,"39666":4,"39667":3,"39668":1,"39669":4,"39670":3,"39671":3,"39672":3,"39673":3,"39674":4,"39675":1,"39676":3,"39677":4,"39678":1,"39679":2,"39680":3,"39681":2,"39682":3,"39683":3,"39684":4,"39685":4,"39686":1,"39687":4,"39688":3,"39689":3,"39690":1,"39691":2,"39692":4,"39693":2,"39694":3,"39695":3,"39696":1,"39697":3,"39698":3,"39699":3,"39700":4,"39701":2,"39702":3,"39703":2,"39704":5,"39705":3,"39706":4,"39707":3,"39708":4,"39709":3,"39710":2,"39711":3,"39712":3,"39713":4,"39714":2,"39715":2,"39716":4,"39717":2,"39718":3,"39719":2,"39720":4,"39721":3,"39722":3,"39723":3,"39724":4,"39725":3,"39726":4,"39727":4,"39728":3,"39729":4,"39730":5,"39731":2,"39732":5,"39733":3,"39734":4,"39735":4,"39736":3,"39737":3,"39738":1,"39739":3,"39740":5,"39741":3,"39742":3,"39743":3,"39744":2,"39745":5,"39746":3,"39747":3,"39748":3,"39749":3,"39750":3,"39751":5,"39752":4,"39753":3,"39754":3,"39755":2,"39756":2,"39757":2,"39758":2,"39759":2,"39760":4,"39761":5,"39762":5,"39763":5,"39764":5,"39765":4,"39766":1,"39767":3,"39768":2,"39769":3,"39770":3,"39771":5,"39772":3,"39773":1,"39774":2,"39775":5,"39776":4,"39777":2,"39778":3,"39779":4,"39780":4,"39781":2,"39782":4,"39783":4,"39784":3,"39785":5,"39786":3,"39787":3,"39788":3,"39789":2,"39790":2,"39791":1,"39792":3,"39793":2,"39794":3,"39795":2,"39796":4,"39797":4,"39798":4,"39799":4,"39800":3,"39801":3,"39802":4,"39803":3,"39804":1,"39805":1,"39806":2,"39807":4,"39808":3,"39809":1,"39810":1,"39811":4,"39812":5,"39813":3,"39814":3,"39815":3,"39816":3,"39817":3,"39818":3,"39819":4,"39820":1,"39821":4,"39822":4,"39823":4,"39824":2,"39825":4,"39826":2,"39827":3,"39828":5,"39829":4,"39830":4,"39831":3,"39832":4,"39833":5,"39834":1,"39835":4,"39836":3,"39837":3,"39838":2,"39839":2,"39840":5,"39841":2,"39842":2,"39843":2,"39844":4,"39845":4,"39846":3,"39847":4,"39848":3,"39849":2,"39850":4,"39851":2,"39852":2,"39853":3,"39854":3,"39855":2,"39856":4,"39857":1,"39858":5,"39859":3,"39860":5,"39861":5,"39862":2,"39863":3,"39864":2,"39865":1,"39866":3,"39867":5,"39868":3,"39869":2,"39870":5,"39871":3,"39872":2,"39873":3,"39874":4,"39875":4,"39876":5,"39877":4,"39878":3,"39879":2,"39880":1,"39881":3,"39882":2,"39883":3,"39884":2,"39885":2,"39886":3,"39887":2,"39888":5,"39889":3,"39890":3,"39891":4,"39892":2,"39893":2,"39894":4,"39895":3,"39896":4,"39897":2,"39898":3,"39899":3,"39900":2,"39901":5,"39902":4,"39903":3,"39904":3,"39905":3,"39906":4,"39907":3,"39908":2,"39909":2,"39910":3,"39911":3,"39912":3,"39913":3,"39914":3,"39915":4,"39916":4,"39917":5,"39918":3,"39919":4,"39920":4,"39921":1,"39922":4,"39923":2,"39924":3,"39925":3,"39926":4,"39927":2,"39928":2,"39929":5,"39930":1,"39931":3,"39932":4,"39933":2,"39934":3,"39935":2,"39936":4,"39937":3,"39938":4,"39939":3,"39940":4,"39941":3,"39942":4,"39943":2,"39944":2,"39945":3,"39946":1,"39947":4,"39948":4,"39949":4,"39950":2,"39951":3,"39952":5,"39953":3,"39954":3,"39955":3,"39956":1,"39957":3,"39958":3,"39959":4,"39960":2,"39961":2,"39962":3,"39963":3,"39964":3,"39965":3,"39966":4,"39967":3,"39968":3,"39969":3,"39970":2,"39971":2,"39972":2,"39973":3,"39974":4,"39975":1,"39976":2,"39977":1,"39978":3,"39979":4,"39980":4,"39981":2,"39982":5,"39983":2,"39984":3,"39985":5,"39986":1,"39987":2,"39988":3,"39989":5,"39990":3,"39991":4,"39992":1,"39993":3,"39994":3,"39995":4,"39996":2,"39997":3,"39998":2,"39999":5,"40000":4,"40001":5,"40002":3,"40003":1,"40004":3,"40005":5,"40006":2,"40007":4,"40008":5,"40009":5,"40010":3,"40011":3,"40012":3,"40013":3,"40014":2,"40015":4,"40016":3,"40017":4,"40018":3,"40019":3,"40020":2,"40021":3,"40022":3,"40023":2,"40024":4,"40025":1,"40026":3,"40027":3,"40028":3,"40029":4,"40030":1,"40031":2,"40032":2,"40033":4,"40034":3,"40035":3,"40036":3,"40037":2,"40038":2,"40039":2,"40040":4,"40041":4,"40042":4,"40043":3,"40044":3,"40045":1,"40046":2,"40047":4,"40048":1,"40049":2,"40050":3,"40051":4,"40052":4,"40053":4,"40054":1,"40055":1,"40056":1,"40057":4,"40058":3,"40059":2,"40060":4,"40061":2,"40062":2,"40063":1,"40064":2,"40065":3,"40066":4,"40067":3,"40068":3,"40069":2,"40070":4,"40071":3,"40072":2,"40073":4,"40074":4,"40075":3,"40076":2,"40077":4,"40078":2,"40079":3,"40080":3,"40081":3,"40082":2,"40083":3,"40084":1,"40085":3,"40086":4,"40087":4,"40088":3,"40089":4,"40090":3,"40091":3,"40092":4,"40093":3,"40094":3,"40095":2,"40096":2,"40097":4,"40098":3,"40099":2,"40100":4,"40101":4,"40102":2,"40103":4,"40104":1,"40105":4,"40106":4,"40107":4,"40108":1,"40109":4,"40110":3,"40111":2,"40112":3,"40113":2,"40114":3,"40115":2,"40116":4,"40117":2,"40118":4,"40119":2,"40120":1,"40121":3,"40122":3,"40123":4,"40124":4,"40125":2,"40126":2,"40127":3,"40128":3,"40129":1,"40130":2,"40131":4,"40132":3,"40133":4,"40134":2,"40135":2,"40136":3,"40137":2,"40138":5,"40139":1,"40140":3,"40141":4,"40142":4,"40143":3,"40144":2,"40145":4,"40146":4,"40147":3,"40148":3,"40149":4,"40150":2,"40151":3,"40152":5,"40153":2,"40154":3,"40155":3,"40156":2,"40157":4,"40158":1,"40159":5,"40160":1,"40161":2,"40162":4,"40163":4,"40164":3,"40165":3,"40166":3,"40167":3,"40168":3,"40169":5,"40170":1,"40171":2,"40172":4,"40173":2,"40174":3,"40175":3,"40176":4,"40177":2,"40178":2,"40179":2,"40180":2,"40181":3,"40182":5,"40183":4,"40184":2,"40185":3,"40186":3,"40187":3,"40188":3,"40189":3,"40190":4,"40191":3,"40192":4,"40193":3,"40194":1,"40195":2,"40196":4,"40197":5,"40198":4,"40199":3,"40200":1,"40201":4,"40202":3,"40203":4,"40204":4,"40205":2,"40206":2,"40207":3,"40208":3,"40209":3,"40210":3,"40211":3,"40212":3,"40213":2,"40214":3,"40215":4,"40216":1,"40217":3,"40218":4,"40219":4,"40220":4,"40221":4,"40222":5,"40223":3,"40224":2,"40225":1,"40226":2,"40227":3,"40228":3,"40229":4,"40230":3,"40231":5,"40232":3,"40233":2,"40234":4,"40235":3,"40236":3,"40237":3,"40238":5,"40239":3,"40240":2,"40241":3,"40242":2,"40243":3,"40244":1,"40245":1,"40246":5,"40247":4,"40248":3,"40249":2,"40250":5,"40251":2,"40252":3,"40253":3,"40254":3,"40255":3,"40256":3,"40257":5,"40258":4,"40259":3,"40260":2,"40261":3,"40262":4,"40263":3,"40264":1,"40265":3,"40266":2,"40267":3,"40268":3,"40269":3,"40270":3,"40271":2,"40272":3,"40273":5,"40274":3,"40275":3,"40276":4,"40277":5,"40278":3,"40279":2,"40280":3,"40281":3,"40282":3,"40283":4,"40284":4,"40285":3,"40286":4,"40287":4,"40288":3,"40289":4,"40290":3,"40291":3,"40292":3,"40293":1,"40294":2,"40295":1,"40296":5,"40297":3,"40298":3,"40299":3,"40300":3,"40301":2,"40302":4,"40303":4,"40304":5,"40305":4,"40306":1,"40307":4,"40308":3,"40309":2,"40310":2,"40311":2,"40312":4,"40313":3,"40314":3,"40315":3,"40316":4,"40317":3,"40318":2,"40319":4,"40320":3,"40321":4,"40322":4,"40323":1,"40324":4,"40325":2,"40326":5,"40327":1,"40328":4,"40329":2,"40330":2,"40331":4,"40332":3,"40333":3,"40334":3,"40335":3,"40336":1,"40337":3,"40338":3,"40339":3,"40340":3,"40341":2,"40342":4,"40343":3,"40344":4,"40345":3,"40346":5,"40347":1,"40348":3,"40349":1,"40350":5,"40351":4,"40352":4,"40353":3,"40354":3,"40355":4,"40356":2,"40357":5,"40358":3,"40359":2,"40360":3,"40361":3,"40362":3,"40363":4,"40364":4,"40365":3,"40366":3,"40367":2,"40368":4,"40369":4,"40370":4,"40371":4,"40372":3,"40373":4,"40374":2,"40375":3,"40376":1,"40377":4,"40378":5,"40379":2,"40380":3,"40381":2,"40382":2,"40383":3,"40384":3,"40385":3,"40386":2,"40387":4,"40388":3,"40389":3,"40390":3,"40391":2,"40392":4,"40393":4,"40394":1,"40395":2,"40396":2,"40397":3,"40398":2,"40399":3,"40400":1,"40401":3,"40402":2,"40403":4,"40404":3,"40405":3,"40406":3,"40407":2,"40408":1,"40409":2,"40410":3,"40411":2,"40412":4,"40413":3,"40414":5,"40415":4,"40416":1,"40417":1,"40418":2,"40419":2,"40420":2,"40421":3,"40422":4,"40423":4,"40424":2,"40425":5,"40426":3,"40427":2,"40428":4,"40429":1,"40430":4,"40431":4,"40432":2,"40433":4,"40434":4,"40435":2,"40436":5,"40437":2,"40438":3,"40439":3,"40440":5,"40441":4,"40442":3,"40443":2,"40444":4,"40445":2,"40446":1,"40447":3,"40448":1,"40449":4,"40450":4,"40451":2,"40452":4,"40453":3,"40454":1,"40455":2,"40456":3,"40457":3,"40458":2,"40459":3,"40460":2,"40461":4,"40462":4,"40463":3,"40464":2,"40465":3,"40466":4,"40467":4,"40468":3,"40469":3,"40470":2,"40471":3,"40472":4,"40473":3,"40474":2,"40475":3,"40476":1,"40477":3,"40478":4,"40479":1,"40480":3,"40481":3,"40482":4,"40483":2,"40484":2,"40485":2,"40486":3,"40487":3,"40488":2,"40489":4,"40490":5,"40491":2,"40492":4,"40493":2,"40494":2,"40495":4,"40496":4,"40497":4,"40498":1,"40499":3,"40500":3,"40501":3,"40502":3,"40503":4,"40504":2,"40505":3,"40506":4,"40507":5,"40508":3,"40509":3,"40510":4,"40511":2,"40512":2,"40513":4,"40514":1,"40515":5,"40516":3,"40517":3,"40518":3,"40519":1,"40520":4,"40521":1,"40522":1,"40523":3,"40524":3,"40525":4,"40526":4,"40527":3,"40528":4,"40529":3,"40530":4,"40531":4,"40532":4,"40533":1,"40534":4,"40535":4,"40536":3,"40537":2,"40538":2,"40539":3,"40540":5,"40541":3,"40542":3,"40543":2,"40544":2,"40545":1,"40546":4,"40547":4,"40548":2,"40549":5,"40550":4,"40551":1,"40552":3,"40553":2,"40554":2,"40555":2,"40556":4,"40557":4,"40558":4,"40559":2,"40560":3,"40561":1,"40562":1,"40563":2,"40564":1,"40565":5,"40566":3,"40567":3,"40568":4,"40569":3,"40570":2,"40571":2,"40572":2,"40573":2,"40574":2,"40575":4,"40576":3,"40577":2,"40578":3,"40579":4,"40580":1,"40581":1,"40582":3,"40583":3,"40584":3,"40585":1,"40586":3,"40587":3,"40588":5,"40589":3,"40590":5,"40591":4,"40592":3,"40593":1,"40594":4,"40595":3,"40596":3,"40597":3,"40598":4,"40599":5,"40600":2,"40601":2,"40602":5,"40603":4,"40604":2,"40605":3,"40606":5,"40607":2,"40608":3,"40609":3,"40610":3,"40611":1,"40612":4,"40613":4,"40614":5,"40615":3,"40616":3,"40617":2,"40618":1,"40619":1,"40620":3,"40621":2,"40622":1,"40623":4,"40624":4,"40625":2,"40626":3,"40627":3,"40628":4,"40629":4,"40630":4,"40631":2,"40632":3,"40633":2,"40634":4,"40635":5,"40636":1,"40637":4,"40638":3,"40639":3,"40640":1,"40641":3,"40642":3,"40643":3,"40644":4,"40645":3,"40646":2,"40647":4,"40648":1,"40649":1,"40650":5,"40651":3,"40652":5,"40653":4,"40654":2,"40655":3,"40656":2,"40657":2,"40658":4,"40659":1,"40660":3,"40661":4,"40662":3,"40663":2,"40664":2,"40665":4,"40666":2,"40667":2,"40668":3,"40669":3,"40670":3,"40671":5,"40672":2,"40673":4,"40674":3,"40675":4,"40676":4,"40677":3,"40678":5,"40679":5,"40680":4,"40681":4,"40682":2,"40683":4,"40684":3,"40685":5,"40686":4,"40687":2,"40688":3,"40689":2,"40690":1,"40691":2,"40692":3,"40693":3,"40694":2,"40695":3,"40696":3,"40697":1,"40698":4,"40699":3,"40700":2,"40701":3,"40702":3,"40703":3,"40704":3,"40705":3,"40706":3,"40707":2,"40708":4,"40709":3,"40710":5,"40711":3,"40712":4,"40713":3,"40714":3,"40715":3,"40716":4,"40717":3,"40718":3,"40719":4,"40720":3,"40721":1,"40722":4,"40723":3,"40724":3,"40725":3,"40726":3,"40727":4,"40728":3,"40729":2,"40730":2,"40731":4,"40732":4,"40733":3,"40734":2,"40735":4,"40736":3,"40737":1,"40738":2,"40739":1,"40740":3,"40741":3,"40742":4,"40743":2,"40744":3,"40745":3,"40746":2,"40747":3,"40748":4,"40749":3,"40750":3,"40751":5,"40752":3,"40753":2,"40754":3,"40755":4,"40756":2,"40757":2,"40758":3,"40759":3,"40760":2,"40761":3,"40762":3,"40763":3,"40764":3,"40765":3,"40766":5,"40767":4,"40768":4,"40769":4,"40770":3,"40771":2,"40772":3,"40773":3,"40774":5,"40775":4,"40776":2,"40777":4,"40778":2,"40779":2,"40780":2,"40781":3,"40782":3,"40783":3,"40784":2,"40785":4,"40786":4,"40787":2,"40788":3,"40789":4,"40790":4,"40791":2,"40792":1,"40793":5,"40794":2,"40795":2,"40796":2,"40797":4,"40798":2,"40799":3,"40800":2,"40801":2,"40802":3,"40803":3,"40804":3,"40805":3,"40806":1,"40807":3,"40808":3,"40809":2,"40810":3,"40811":2,"40812":5,"40813":4,"40814":4,"40815":2,"40816":2,"40817":4,"40818":2,"40819":3,"40820":3,"40821":3,"40822":2,"40823":4,"40824":2,"40825":3,"40826":5,"40827":5,"40828":5,"40829":4,"40830":3,"40831":4,"40832":2,"40833":4,"40834":1,"40835":3,"40836":2,"40837":4,"40838":2,"40839":4,"40840":3,"40841":2,"40842":2,"40843":5,"40844":4,"40845":1,"40846":2,"40847":3,"40848":5,"40849":2,"40850":2,"40851":4,"40852":3,"40853":4,"40854":3,"40855":2,"40856":3,"40857":2,"40858":2,"40859":2,"40860":3,"40861":4,"40862":4,"40863":3,"40864":2,"40865":3,"40866":3,"40867":2,"40868":4,"40869":4,"40870":2,"40871":4,"40872":1,"40873":3,"40874":4,"40875":4,"40876":3,"40877":2,"40878":4,"40879":2,"40880":3,"40881":4,"40882":1,"40883":2,"40884":1,"40885":4,"40886":3,"40887":5,"40888":4,"40889":4,"40890":3,"40891":2,"40892":3,"40893":3,"40894":3,"40895":2,"40896":4,"40897":3,"40898":1,"40899":4,"40900":4,"40901":1,"40902":4,"40903":2,"40904":5,"40905":4,"40906":2,"40907":4,"40908":3,"40909":4,"40910":3,"40911":5,"40912":2,"40913":4,"40914":2,"40915":2,"40916":1,"40917":2,"40918":1,"40919":3,"40920":4,"40921":4,"40922":1,"40923":3,"40924":3,"40925":3,"40926":3,"40927":4,"40928":5,"40929":4,"40930":4,"40931":3,"40932":2,"40933":3,"40934":3,"40935":2,"40936":2,"40937":3,"40938":3,"40939":3,"40940":2,"40941":4,"40942":3,"40943":4,"40944":1,"40945":3,"40946":2,"40947":2,"40948":1,"40949":3,"40950":4,"40951":2,"40952":2,"40953":2,"40954":3,"40955":2,"40956":3,"40957":3,"40958":3,"40959":2,"40960":2,"40961":3,"40962":1,"40963":3,"40964":2,"40965":2,"40966":3,"40967":3,"40968":3,"40969":3,"40970":4,"40971":3,"40972":3,"40973":4,"40974":4,"40975":3,"40976":3,"40977":2,"40978":2,"40979":4,"40980":3,"40981":4,"40982":2,"40983":1,"40984":5,"40985":5,"40986":4,"40987":4,"40988":3,"40989":2,"40990":3,"40991":4,"40992":2,"40993":4,"40994":2,"40995":4,"40996":5,"40997":3,"40998":1,"40999":3,"41000":2,"41001":2,"41002":3,"41003":3,"41004":4,"41005":3,"41006":5,"41007":1,"41008":4,"41009":2,"41010":2,"41011":3,"41012":4,"41013":3,"41014":2,"41015":4,"41016":2,"41017":5,"41018":4,"41019":3,"41020":2,"41021":2,"41022":1,"41023":5,"41024":3,"41025":4,"41026":3,"41027":1,"41028":1,"41029":2,"41030":5,"41031":3,"41032":1,"41033":3,"41034":3,"41035":3,"41036":2,"41037":2,"41038":1,"41039":1,"41040":4,"41041":5,"41042":2,"41043":2,"41044":2,"41045":3,"41046":5,"41047":2,"41048":1,"41049":3,"41050":4,"41051":4,"41052":5,"41053":2,"41054":2,"41055":3,"41056":2,"41057":2,"41058":3,"41059":1,"41060":3,"41061":2,"41062":2,"41063":4,"41064":2,"41065":1,"41066":4,"41067":4,"41068":4,"41069":2,"41070":4,"41071":4,"41072":4,"41073":4,"41074":2,"41075":1,"41076":3,"41077":3,"41078":3,"41079":4,"41080":3,"41081":3,"41082":1,"41083":5,"41084":3,"41085":4,"41086":2,"41087":3,"41088":1,"41089":3,"41090":3,"41091":3,"41092":1,"41093":2,"41094":4,"41095":5,"41096":2,"41097":4,"41098":2,"41099":3,"41100":3,"41101":4,"41102":3,"41103":4,"41104":1,"41105":2,"41106":3,"41107":3,"41108":4,"41109":2,"41110":3,"41111":1,"41112":3,"41113":2,"41114":2,"41115":4,"41116":3,"41117":2,"41118":2,"41119":2,"41120":4,"41121":2,"41122":3,"41123":4,"41124":4,"41125":3,"41126":2,"41127":2,"41128":3,"41129":4,"41130":2,"41131":2,"41132":1,"41133":4,"41134":2,"41135":2,"41136":3,"41137":2,"41138":2,"41139":4,"41140":1,"41141":3,"41142":3,"41143":5,"41144":4,"41145":2,"41146":3,"41147":3,"41148":2,"41149":3,"41150":2,"41151":4,"41152":3,"41153":1,"41154":2,"41155":2,"41156":3,"41157":3,"41158":3,"41159":4,"41160":4,"41161":3,"41162":3,"41163":3,"41164":3,"41165":4,"41166":3,"41167":4,"41168":2,"41169":1,"41170":4,"41171":3,"41172":2,"41173":4,"41174":1,"41175":4,"41176":3,"41177":3,"41178":3,"41179":2,"41180":5,"41181":2,"41182":4,"41183":2,"41184":1,"41185":3,"41186":4,"41187":4,"41188":2,"41189":4,"41190":3,"41191":1,"41192":1,"41193":2,"41194":5,"41195":2,"41196":3,"41197":1,"41198":3,"41199":4,"41200":3,"41201":4,"41202":3,"41203":2,"41204":2,"41205":5,"41206":4,"41207":1,"41208":3,"41209":2,"41210":3,"41211":3,"41212":4,"41213":2,"41214":2,"41215":5,"41216":3,"41217":2,"41218":2,"41219":2,"41220":3,"41221":2,"41222":3,"41223":3,"41224":1,"41225":3,"41226":5,"41227":3,"41228":3,"41229":3,"41230":1,"41231":4,"41232":2,"41233":3,"41234":1,"41235":5,"41236":1,"41237":3,"41238":3,"41239":4,"41240":5,"41241":4,"41242":4,"41243":2,"41244":3,"41245":3,"41246":2,"41247":4,"41248":4,"41249":3,"41250":3,"41251":1,"41252":3,"41253":4,"41254":1,"41255":2,"41256":4,"41257":3,"41258":3,"41259":2,"41260":3,"41261":3,"41262":1,"41263":2,"41264":4,"41265":3,"41266":4,"41267":2,"41268":3,"41269":1,"41270":5,"41271":4,"41272":2,"41273":3,"41274":1,"41275":1,"41276":2,"41277":4,"41278":4,"41279":3,"41280":4,"41281":4,"41282":3,"41283":3,"41284":4,"41285":1,"41286":3,"41287":3,"41288":5,"41289":4,"41290":3,"41291":2,"41292":5,"41293":4,"41294":1,"41295":4,"41296":3,"41297":2,"41298":3,"41299":1,"41300":3,"41301":2,"41302":2,"41303":2,"41304":3,"41305":4,"41306":1,"41307":2,"41308":1,"41309":4,"41310":3,"41311":3,"41312":3,"41313":4,"41314":1,"41315":4,"41316":3,"41317":3,"41318":2,"41319":3,"41320":3,"41321":2,"41322":2,"41323":4,"41324":1,"41325":2,"41326":4,"41327":2,"41328":2,"41329":3,"41330":4,"41331":4,"41332":3,"41333":3,"41334":3,"41335":5,"41336":5,"41337":1,"41338":2,"41339":3,"41340":4,"41341":2,"41342":4,"41343":2,"41344":4,"41345":3,"41346":2,"41347":4,"41348":5,"41349":1,"41350":5,"41351":3,"41352":2,"41353":2,"41354":3,"41355":5,"41356":4,"41357":3,"41358":3,"41359":3,"41360":2,"41361":2,"41362":2,"41363":2,"41364":4,"41365":4,"41366":4,"41367":4,"41368":1,"41369":3,"41370":4,"41371":3,"41372":1,"41373":4,"41374":2,"41375":4,"41376":4,"41377":4,"41378":3,"41379":3,"41380":3,"41381":3,"41382":2,"41383":3,"41384":3,"41385":3,"41386":1,"41387":2,"41388":3,"41389":3,"41390":3,"41391":3,"41392":3,"41393":3,"41394":2,"41395":4,"41396":2,"41397":3,"41398":2,"41399":4,"41400":4,"41401":3,"41402":3,"41403":4,"41404":3,"41405":4,"41406":3,"41407":3,"41408":3,"41409":4,"41410":4,"41411":4,"41412":1,"41413":4,"41414":3,"41415":2,"41416":1,"41417":4,"41418":2,"41419":4,"41420":3,"41421":4,"41422":3,"41423":5,"41424":4,"41425":3,"41426":3,"41427":2,"41428":4,"41429":3,"41430":3,"41431":4,"41432":2,"41433":2,"41434":3,"41435":4,"41436":3,"41437":3,"41438":4,"41439":2,"41440":4,"41441":1,"41442":1,"41443":5,"41444":2,"41445":1,"41446":4,"41447":2,"41448":4,"41449":3,"41450":3,"41451":3,"41452":3,"41453":3,"41454":4,"41455":3,"41456":3,"41457":3,"41458":3,"41459":4,"41460":4,"41461":4,"41462":3,"41463":3,"41464":3,"41465":3,"41466":3,"41467":2,"41468":4,"41469":4,"41470":2,"41471":3,"41472":3,"41473":3,"41474":1,"41475":4,"41476":4,"41477":3,"41478":3,"41479":3,"41480":4,"41481":4,"41482":5,"41483":2,"41484":4,"41485":2,"41486":4,"41487":3,"41488":3,"41489":2,"41490":4,"41491":3,"41492":4,"41493":5,"41494":1,"41495":5,"41496":4,"41497":2,"41498":3,"41499":1,"41500":4,"41501":4,"41502":3,"41503":5,"41504":1,"41505":2,"41506":3,"41507":3,"41508":4,"41509":5,"41510":3,"41511":3,"41512":3,"41513":2,"41514":3,"41515":3,"41516":3,"41517":4,"41518":3,"41519":1,"41520":3,"41521":4,"41522":3,"41523":2,"41524":3,"41525":2,"41526":4,"41527":2,"41528":3,"41529":4,"41530":2,"41531":2,"41532":3,"41533":1,"41534":2,"41535":3,"41536":3,"41537":2,"41538":3,"41539":3,"41540":4,"41541":5,"41542":2,"41543":3,"41544":2,"41545":2,"41546":2,"41547":5,"41548":3,"41549":4,"41550":3,"41551":3,"41552":3,"41553":5,"41554":4,"41555":3,"41556":2,"41557":1,"41558":3,"41559":2,"41560":3,"41561":1,"41562":4,"41563":3,"41564":2,"41565":1,"41566":3,"41567":1,"41568":3,"41569":5,"41570":5,"41571":3,"41572":2,"41573":2,"41574":4,"41575":1,"41576":4,"41577":4,"41578":4,"41579":2,"41580":3,"41581":3,"41582":3,"41583":5,"41584":3,"41585":3,"41586":2,"41587":4,"41588":4,"41589":4,"41590":5,"41591":2,"41592":5,"41593":3,"41594":3,"41595":3,"41596":3,"41597":1,"41598":2,"41599":4,"41600":4,"41601":4,"41602":4,"41603":5,"41604":4,"41605":4,"41606":1,"41607":4,"41608":4,"41609":2,"41610":2,"41611":3,"41612":1,"41613":4,"41614":1,"41615":4,"41616":2,"41617":1,"41618":3,"41619":4,"41620":3,"41621":3,"41622":1,"41623":3,"41624":1,"41625":3,"41626":3,"41627":3,"41628":3,"41629":3,"41630":3,"41631":4,"41632":3,"41633":1,"41634":4,"41635":2,"41636":4,"41637":3,"41638":4,"41639":3,"41640":3,"41641":2,"41642":2,"41643":3,"41644":3,"41645":4,"41646":5,"41647":2,"41648":2,"41649":3,"41650":1,"41651":4,"41652":4,"41653":3,"41654":3,"41655":2,"41656":3,"41657":3,"41658":3,"41659":5,"41660":5,"41661":4,"41662":2,"41663":4,"41664":3,"41665":5,"41666":3,"41667":3,"41668":4,"41669":3,"41670":4,"41671":2,"41672":5,"41673":2,"41674":3,"41675":3,"41676":3,"41677":3,"41678":3,"41679":5,"41680":4,"41681":3,"41682":1,"41683":4,"41684":4,"41685":3,"41686":3,"41687":2,"41688":2,"41689":2,"41690":3,"41691":4,"41692":4,"41693":3,"41694":2,"41695":4,"41696":3,"41697":5,"41698":4,"41699":4,"41700":3,"41701":1,"41702":3,"41703":2,"41704":5,"41705":3,"41706":2,"41707":3,"41708":1,"41709":2,"41710":4,"41711":2,"41712":3,"41713":3,"41714":4,"41715":3,"41716":3,"41717":4,"41718":3,"41719":4,"41720":2,"41721":2,"41722":5,"41723":4,"41724":4,"41725":1,"41726":3,"41727":2,"41728":1,"41729":4,"41730":3,"41731":3,"41732":3,"41733":3,"41734":3,"41735":4,"41736":4,"41737":5,"41738":1,"41739":2,"41740":4,"41741":3,"41742":3,"41743":1,"41744":4,"41745":1,"41746":3,"41747":3,"41748":3,"41749":3,"41750":5,"41751":4,"41752":3,"41753":2,"41754":2,"41755":5,"41756":3,"41757":3,"41758":2,"41759":3,"41760":5,"41761":2,"41762":1,"41763":3,"41764":4,"41765":5,"41766":2,"41767":5,"41768":5,"41769":2,"41770":3,"41771":3,"41772":3,"41773":2,"41774":4,"41775":3,"41776":2,"41777":3,"41778":2,"41779":4,"41780":3,"41781":2,"41782":3,"41783":3,"41784":3,"41785":2,"41786":3,"41787":4,"41788":1,"41789":5,"41790":4,"41791":2,"41792":3,"41793":1,"41794":3,"41795":2,"41796":3,"41797":2,"41798":1,"41799":4,"41800":5,"41801":3,"41802":2,"41803":2,"41804":4,"41805":3,"41806":3,"41807":3,"41808":3,"41809":3,"41810":3,"41811":3,"41812":2,"41813":4,"41814":2,"41815":2,"41816":5,"41817":4,"41818":4,"41819":3,"41820":3,"41821":4,"41822":3,"41823":2,"41824":4,"41825":3,"41826":3,"41827":3,"41828":5,"41829":3,"41830":3,"41831":3,"41832":4,"41833":4,"41834":2,"41835":3,"41836":3,"41837":2,"41838":4,"41839":3,"41840":3,"41841":5,"41842":2,"41843":3,"41844":2,"41845":3,"41846":3,"41847":5,"41848":3,"41849":3,"41850":4,"41851":3,"41852":4,"41853":4,"41854":2,"41855":3,"41856":4,"41857":2,"41858":2,"41859":4,"41860":4,"41861":5,"41862":4,"41863":3,"41864":1,"41865":3,"41866":3,"41867":4,"41868":4,"41869":3,"41870":4,"41871":4,"41872":4,"41873":2,"41874":3,"41875":3,"41876":3,"41877":4,"41878":3,"41879":4,"41880":2,"41881":3,"41882":2,"41883":1,"41884":4,"41885":2,"41886":1,"41887":1,"41888":4,"41889":2,"41890":4,"41891":4,"41892":4,"41893":4,"41894":3,"41895":1,"41896":4,"41897":1,"41898":4,"41899":1,"41900":2,"41901":4,"41902":3,"41903":2,"41904":3,"41905":3,"41906":3,"41907":4,"41908":2,"41909":3,"41910":4,"41911":3,"41912":5,"41913":3,"41914":2,"41915":3,"41916":4,"41917":3,"41918":4,"41919":5,"41920":3,"41921":3,"41922":4,"41923":3,"41924":2,"41925":3,"41926":3,"41927":1,"41928":4,"41929":3,"41930":1,"41931":3,"41932":2,"41933":3,"41934":1,"41935":4,"41936":2,"41937":4,"41938":1,"41939":2,"41940":1,"41941":3,"41942":1,"41943":4,"41944":3,"41945":3,"41946":4,"41947":3,"41948":3,"41949":3,"41950":3,"41951":2,"41952":3,"41953":3,"41954":4,"41955":4,"41956":4,"41957":4,"41958":2,"41959":5,"41960":1,"41961":3,"41962":4,"41963":1,"41964":3,"41965":3,"41966":2,"41967":3,"41968":2,"41969":3,"41970":2,"41971":4,"41972":3,"41973":4,"41974":1,"41975":2,"41976":4,"41977":3,"41978":2,"41979":5,"41980":2,"41981":3,"41982":1,"41983":3,"41984":2,"41985":4,"41986":3,"41987":1,"41988":4,"41989":3,"41990":1,"41991":2,"41992":1,"41993":1,"41994":3,"41995":3,"41996":3,"41997":4,"41998":5,"41999":4,"42000":2,"42001":2,"42002":2,"42003":1,"42004":4,"42005":3,"42006":3,"42007":4,"42008":3,"42009":4,"42010":4,"42011":4,"42012":4,"42013":3,"42014":2,"42015":3,"42016":3,"42017":2,"42018":3,"42019":3,"42020":2,"42021":1,"42022":4,"42023":3,"42024":2,"42025":2,"42026":3,"42027":3,"42028":2,"42029":2,"42030":3,"42031":3,"42032":3,"42033":5,"42034":5,"42035":2,"42036":3,"42037":2,"42038":5,"42039":3,"42040":4,"42041":2,"42042":4,"42043":2,"42044":2,"42045":4,"42046":2,"42047":4,"42048":3,"42049":5,"42050":3,"42051":1,"42052":1,"42053":2,"42054":1,"42055":3,"42056":2,"42057":3,"42058":3,"42059":3,"42060":4,"42061":1,"42062":2,"42063":3,"42064":3,"42065":2,"42066":2,"42067":3,"42068":1,"42069":3,"42070":3,"42071":1,"42072":5,"42073":3,"42074":2,"42075":4,"42076":3,"42077":4,"42078":3,"42079":1,"42080":3,"42081":3,"42082":2,"42083":5,"42084":3,"42085":5,"42086":3,"42087":4,"42088":4,"42089":4,"42090":2,"42091":1,"42092":1,"42093":4,"42094":3,"42095":3,"42096":4,"42097":1,"42098":4,"42099":2,"42100":4,"42101":5,"42102":4,"42103":2,"42104":2,"42105":4,"42106":4,"42107":3,"42108":2,"42109":3,"42110":4,"42111":3,"42112":3,"42113":3,"42114":4,"42115":1,"42116":2,"42117":4,"42118":2,"42119":2,"42120":3,"42121":2,"42122":3,"42123":3,"42124":4,"42125":4,"42126":3,"42127":3,"42128":2,"42129":4,"42130":3,"42131":5,"42132":1,"42133":3,"42134":3,"42135":1,"42136":2,"42137":3,"42138":3,"42139":4,"42140":3,"42141":2,"42142":5,"42143":3,"42144":2,"42145":3,"42146":2,"42147":2,"42148":4,"42149":2,"42150":3,"42151":2,"42152":1,"42153":3,"42154":3,"42155":1,"42156":3,"42157":1,"42158":2,"42159":2,"42160":1,"42161":1,"42162":3,"42163":1,"42164":2,"42165":3,"42166":3,"42167":3,"42168":4,"42169":2,"42170":3,"42171":2,"42172":3,"42173":2,"42174":4,"42175":2,"42176":3,"42177":2,"42178":5,"42179":2,"42180":4,"42181":2,"42182":1,"42183":3,"42184":1,"42185":2,"42186":3,"42187":3,"42188":3,"42189":1,"42190":5,"42191":3,"42192":2,"42193":2,"42194":1,"42195":4,"42196":3,"42197":2,"42198":4,"42199":3,"42200":3,"42201":5,"42202":3,"42203":3,"42204":4,"42205":2,"42206":2,"42207":2,"42208":1,"42209":3,"42210":2,"42211":2,"42212":2,"42213":3,"42214":2,"42215":2,"42216":1,"42217":3,"42218":3,"42219":2,"42220":2,"42221":2,"42222":3,"42223":1,"42224":3,"42225":1,"42226":4,"42227":2,"42228":4,"42229":4,"42230":3,"42231":3,"42232":5,"42233":4,"42234":4,"42235":4,"42236":2,"42237":3,"42238":3,"42239":3,"42240":4,"42241":2,"42242":4,"42243":2,"42244":3,"42245":1,"42246":2,"42247":1,"42248":3,"42249":1,"42250":1,"42251":4,"42252":3,"42253":5,"42254":3,"42255":3,"42256":3,"42257":4,"42258":1,"42259":3,"42260":2,"42261":3,"42262":2,"42263":4,"42264":3,"42265":3,"42266":4,"42267":3,"42268":1,"42269":2,"42270":4,"42271":2,"42272":1,"42273":5,"42274":4,"42275":3,"42276":3,"42277":4,"42278":2,"42279":4,"42280":4,"42281":2,"42282":3,"42283":3,"42284":3,"42285":2,"42286":1,"42287":1,"42288":1,"42289":4,"42290":3,"42291":3,"42292":2,"42293":5,"42294":2,"42295":1,"42296":3,"42297":3,"42298":3,"42299":3,"42300":4,"42301":3,"42302":5,"42303":5,"42304":3,"42305":4,"42306":3,"42307":2,"42308":4,"42309":3,"42310":2,"42311":4,"42312":4,"42313":2,"42314":2,"42315":3,"42316":3,"42317":4,"42318":4,"42319":4,"42320":4,"42321":3,"42322":3,"42323":3,"42324":3,"42325":1,"42326":4,"42327":4,"42328":3,"42329":3,"42330":3,"42331":2,"42332":4,"42333":4,"42334":4,"42335":3,"42336":4,"42337":3,"42338":5,"42339":4,"42340":3,"42341":4,"42342":4,"42343":3,"42344":3,"42345":4,"42346":4,"42347":1,"42348":4,"42349":3,"42350":5,"42351":4,"42352":3,"42353":5,"42354":3,"42355":4,"42356":3,"42357":4,"42358":2,"42359":3,"42360":2,"42361":3,"42362":3,"42363":3,"42364":4,"42365":4,"42366":1,"42367":3,"42368":4,"42369":3,"42370":4,"42371":5,"42372":2,"42373":2,"42374":2,"42375":4,"42376":4,"42377":4,"42378":5,"42379":4,"42380":2,"42381":2,"42382":2,"42383":4,"42384":3,"42385":4,"42386":2,"42387":4,"42388":4,"42389":2,"42390":4,"42391":3,"42392":4,"42393":1,"42394":4,"42395":3,"42396":1,"42397":3,"42398":4,"42399":3,"42400":3,"42401":4,"42402":3,"42403":2,"42404":2,"42405":2,"42406":4,"42407":3,"42408":5,"42409":5,"42410":3,"42411":1,"42412":2,"42413":2,"42414":3,"42415":4,"42416":4,"42417":3,"42418":4,"42419":5,"42420":4,"42421":3,"42422":3,"42423":3,"42424":4,"42425":3,"42426":4,"42427":2,"42428":3,"42429":1,"42430":2,"42431":2,"42432":2,"42433":3,"42434":5,"42435":4,"42436":3,"42437":4,"42438":1,"42439":1,"42440":5,"42441":4,"42442":2,"42443":4,"42444":3,"42445":3,"42446":2,"42447":3,"42448":3,"42449":2,"42450":4,"42451":1,"42452":4,"42453":3,"42454":2,"42455":3,"42456":2,"42457":4,"42458":5,"42459":2,"42460":3,"42461":4,"42462":3,"42463":2,"42464":5,"42465":3,"42466":4,"42467":3,"42468":1,"42469":5,"42470":2,"42471":3,"42472":3,"42473":3,"42474":2,"42475":3,"42476":5,"42477":4,"42478":2,"42479":4,"42480":1,"42481":4,"42482":3,"42483":4,"42484":3,"42485":2,"42486":3,"42487":3,"42488":2,"42489":3,"42490":2,"42491":2,"42492":2,"42493":2,"42494":3,"42495":2,"42496":3,"42497":2,"42498":4,"42499":1,"42500":1,"42501":2,"42502":1,"42503":3,"42504":3,"42505":4,"42506":4,"42507":4,"42508":2,"42509":3,"42510":3,"42511":3,"42512":1,"42513":2,"42514":4,"42515":4,"42516":2,"42517":3,"42518":5,"42519":2,"42520":4,"42521":4,"42522":1,"42523":2,"42524":2,"42525":5,"42526":3,"42527":1,"42528":1,"42529":4,"42530":2,"42531":3,"42532":4,"42533":2,"42534":2,"42535":3,"42536":3,"42537":3,"42538":3,"42539":2,"42540":4,"42541":4,"42542":3,"42543":1,"42544":3,"42545":2,"42546":1,"42547":1,"42548":3,"42549":3,"42550":3,"42551":3,"42552":2,"42553":3,"42554":2,"42555":4,"42556":2,"42557":3,"42558":3,"42559":3,"42560":4,"42561":3,"42562":1,"42563":2,"42564":3,"42565":3,"42566":4,"42567":4,"42568":3,"42569":4,"42570":2,"42571":2,"42572":3,"42573":2,"42574":4,"42575":1,"42576":3,"42577":4,"42578":5,"42579":1,"42580":2,"42581":5,"42582":4,"42583":4,"42584":3,"42585":3,"42586":3,"42587":2,"42588":3,"42589":3,"42590":3,"42591":2,"42592":2,"42593":4,"42594":2,"42595":3,"42596":2,"42597":1,"42598":4,"42599":4,"42600":3,"42601":4,"42602":3,"42603":4,"42604":2,"42605":1,"42606":2,"42607":4,"42608":4,"42609":4,"42610":2,"42611":2,"42612":1,"42613":2,"42614":3,"42615":3,"42616":2,"42617":1,"42618":5,"42619":4,"42620":5,"42621":3,"42622":3,"42623":5,"42624":3,"42625":3,"42626":2,"42627":3,"42628":2,"42629":4,"42630":3,"42631":3,"42632":4,"42633":4,"42634":3,"42635":2,"42636":3,"42637":4,"42638":5,"42639":3,"42640":3,"42641":3,"42642":2,"42643":4,"42644":4,"42645":3,"42646":3,"42647":3,"42648":2,"42649":2,"42650":3,"42651":2,"42652":2,"42653":3,"42654":4,"42655":2,"42656":2,"42657":5,"42658":2,"42659":3,"42660":4,"42661":4,"42662":3,"42663":3,"42664":4,"42665":4,"42666":1,"42667":2,"42668":3,"42669":3,"42670":4,"42671":1,"42672":5,"42673":5,"42674":5,"42675":2,"42676":4,"42677":4,"42678":5,"42679":1,"42680":1,"42681":4,"42682":4,"42683":4,"42684":3,"42685":3,"42686":4,"42687":2,"42688":3,"42689":3,"42690":5,"42691":3,"42692":3,"42693":3,"42694":4,"42695":2,"42696":4,"42697":4,"42698":3,"42699":3,"42700":3,"42701":3,"42702":3,"42703":4,"42704":4,"42705":3,"42706":3,"42707":5,"42708":3,"42709":2,"42710":3,"42711":3,"42712":2,"42713":3,"42714":4,"42715":4,"42716":2,"42717":4,"42718":3,"42719":1,"42720":3,"42721":4,"42722":4,"42723":3,"42724":3,"42725":4,"42726":3,"42727":3,"42728":5,"42729":3,"42730":2,"42731":3,"42732":4,"42733":1,"42734":3,"42735":3,"42736":4,"42737":4,"42738":3,"42739":3,"42740":3,"42741":1,"42742":3,"42743":3,"42744":3,"42745":3,"42746":2,"42747":3,"42748":3,"42749":5,"42750":3,"42751":1,"42752":3,"42753":3,"42754":2,"42755":5,"42756":3,"42757":3,"42758":4,"42759":3,"42760":4,"42761":5,"42762":3,"42763":3,"42764":1,"42765":4,"42766":2,"42767":5,"42768":4,"42769":2,"42770":4,"42771":2,"42772":2,"42773":5,"42774":2,"42775":1,"42776":2,"42777":4,"42778":1,"42779":3,"42780":2,"42781":2,"42782":2,"42783":3,"42784":3,"42785":2,"42786":3,"42787":3,"42788":3,"42789":3,"42790":2,"42791":2,"42792":4,"42793":3,"42794":4,"42795":3,"42796":1,"42797":5,"42798":2,"42799":4,"42800":1,"42801":5,"42802":3,"42803":3,"42804":3,"42805":5,"42806":4,"42807":2,"42808":1,"42809":4,"42810":3,"42811":3,"42812":3,"42813":3,"42814":4,"42815":3,"42816":3,"42817":3,"42818":2,"42819":2,"42820":2,"42821":3,"42822":5,"42823":4,"42824":1,"42825":3,"42826":4,"42827":5,"42828":2,"42829":1,"42830":1,"42831":4,"42832":2,"42833":3,"42834":5,"42835":3,"42836":4,"42837":3,"42838":2,"42839":1,"42840":2,"42841":3,"42842":2,"42843":3,"42844":3,"42845":4,"42846":5,"42847":4,"42848":5,"42849":5,"42850":4,"42851":3,"42852":4,"42853":4,"42854":4,"42855":4,"42856":4,"42857":4,"42858":4,"42859":3,"42860":3,"42861":3,"42862":2,"42863":3,"42864":3,"42865":1,"42866":2,"42867":3,"42868":4,"42869":5,"42870":3,"42871":1,"42872":3,"42873":4,"42874":3,"42875":1,"42876":2,"42877":2,"42878":2,"42879":1,"42880":4,"42881":2,"42882":3,"42883":2,"42884":1,"42885":2,"42886":3,"42887":4,"42888":3,"42889":3,"42890":3,"42891":3,"42892":2,"42893":1,"42894":3,"42895":2,"42896":5,"42897":3,"42898":5,"42899":3,"42900":2,"42901":3,"42902":4,"42903":2,"42904":2,"42905":2,"42906":5,"42907":3,"42908":2,"42909":4,"42910":2,"42911":2,"42912":1,"42913":4,"42914":3,"42915":2,"42916":3,"42917":2,"42918":4,"42919":3,"42920":5,"42921":4,"42922":3,"42923":3,"42924":2,"42925":2,"42926":3,"42927":3,"42928":3,"42929":3,"42930":4,"42931":1,"42932":4,"42933":4,"42934":1,"42935":3,"42936":2,"42937":3,"42938":3,"42939":2,"42940":3,"42941":4,"42942":2,"42943":3,"42944":3,"42945":4,"42946":1,"42947":2,"42948":3,"42949":4,"42950":3,"42951":2,"42952":2,"42953":4,"42954":3,"42955":4,"42956":1,"42957":2,"42958":3,"42959":3,"42960":1,"42961":4,"42962":4,"42963":3,"42964":3,"42965":5,"42966":3,"42967":4,"42968":4,"42969":3,"42970":2,"42971":3,"42972":4,"42973":4,"42974":4,"42975":5,"42976":4,"42977":4,"42978":1,"42979":4,"42980":5,"42981":3,"42982":3,"42983":3,"42984":5,"42985":3,"42986":1,"42987":4,"42988":4,"42989":3,"42990":3,"42991":3,"42992":1,"42993":3,"42994":2,"42995":4,"42996":2,"42997":3,"42998":5,"42999":5,"43000":3,"43001":2,"43002":2,"43003":5,"43004":5,"43005":3,"43006":3,"43007":3,"43008":3,"43009":4,"43010":2,"43011":1,"43012":3,"43013":4,"43014":1,"43015":5,"43016":5,"43017":3,"43018":3,"43019":2,"43020":2,"43021":2,"43022":3,"43023":2,"43024":2,"43025":4,"43026":3,"43027":4,"43028":1,"43029":1,"43030":3,"43031":3,"43032":2,"43033":2,"43034":3,"43035":2,"43036":3,"43037":3,"43038":4,"43039":1,"43040":3,"43041":4,"43042":2,"43043":2,"43044":1,"43045":1,"43046":4,"43047":2,"43048":4,"43049":2,"43050":4,"43051":3,"43052":3,"43053":2,"43054":4,"43055":3,"43056":3,"43057":5,"43058":4,"43059":1,"43060":3,"43061":3,"43062":4,"43063":2,"43064":2,"43065":2,"43066":4,"43067":1,"43068":1,"43069":3,"43070":1,"43071":1,"43072":2,"43073":5,"43074":4,"43075":3,"43076":4,"43077":3,"43078":3,"43079":3,"43080":4,"43081":1,"43082":3,"43083":4,"43084":5,"43085":2,"43086":4,"43087":2,"43088":3,"43089":4,"43090":4,"43091":3,"43092":4,"43093":2,"43094":4,"43095":3,"43096":3,"43097":2,"43098":3,"43099":3,"43100":4,"43101":3,"43102":4,"43103":5,"43104":1,"43105":3,"43106":1,"43107":5,"43108":4,"43109":1,"43110":2,"43111":3,"43112":2,"43113":2,"43114":3,"43115":3,"43116":2,"43117":2,"43118":1,"43119":3,"43120":4,"43121":4,"43122":2,"43123":4,"43124":4,"43125":5,"43126":3,"43127":2,"43128":3,"43129":2,"43130":4,"43131":4,"43132":2,"43133":2,"43134":3,"43135":5,"43136":3,"43137":2,"43138":4,"43139":3,"43140":2,"43141":4,"43142":1,"43143":2,"43144":2,"43145":4,"43146":2,"43147":3,"43148":2,"43149":1,"43150":4,"43151":4,"43152":4,"43153":2,"43154":4,"43155":2,"43156":3,"43157":5,"43158":2,"43159":5,"43160":3,"43161":4,"43162":3,"43163":3,"43164":5,"43165":3,"43166":3,"43167":5,"43168":2,"43169":2,"43170":2,"43171":3,"43172":1,"43173":5,"43174":2,"43175":3,"43176":3,"43177":4,"43178":4,"43179":3,"43180":4,"43181":2,"43182":4,"43183":2,"43184":3,"43185":3,"43186":5,"43187":3,"43188":5,"43189":1,"43190":1,"43191":4,"43192":3,"43193":4,"43194":4,"43195":1,"43196":1,"43197":3,"43198":3,"43199":1,"43200":2,"43201":2,"43202":4,"43203":1,"43204":3,"43205":4,"43206":3,"43207":1,"43208":3,"43209":2,"43210":2,"43211":5,"43212":1,"43213":2,"43214":4,"43215":2,"43216":3,"43217":3,"43218":4,"43219":3,"43220":3,"43221":2,"43222":2,"43223":3,"43224":4,"43225":3,"43226":3,"43227":2,"43228":3,"43229":4,"43230":3,"43231":4,"43232":2,"43233":5,"43234":5,"43235":3,"43236":1,"43237":3,"43238":4,"43239":5,"43240":3,"43241":4,"43242":2,"43243":3,"43244":1,"43245":5,"43246":4,"43247":3,"43248":4,"43249":4,"43250":3,"43251":3,"43252":3,"43253":3,"43254":4,"43255":3,"43256":5,"43257":5,"43258":3,"43259":3,"43260":1,"43261":3,"43262":1,"43263":1,"43264":3,"43265":5,"43266":4,"43267":2,"43268":2,"43269":4,"43270":3,"43271":4,"43272":2,"43273":2,"43274":1,"43275":3,"43276":3,"43277":3,"43278":3,"43279":4,"43280":3,"43281":3,"43282":4,"43283":3,"43284":4,"43285":5,"43286":2,"43287":4,"43288":1,"43289":2,"43290":4,"43291":3,"43292":4,"43293":4,"43294":4,"43295":3,"43296":2,"43297":1,"43298":4,"43299":4,"43300":4,"43301":3,"43302":4,"43303":5,"43304":1,"43305":2,"43306":5,"43307":4,"43308":2,"43309":2,"43310":3,"43311":4,"43312":3,"43313":3,"43314":3,"43315":2,"43316":2,"43317":3,"43318":5,"43319":4,"43320":1,"43321":3,"43322":4,"43323":3,"43324":2,"43325":4,"43326":3,"43327":5,"43328":4,"43329":2,"43330":2,"43331":4,"43332":1,"43333":3,"43334":3,"43335":2,"43336":2,"43337":3,"43338":3,"43339":4,"43340":2,"43341":4,"43342":3,"43343":4,"43344":4,"43345":1,"43346":3,"43347":4,"43348":1,"43349":4,"43350":2,"43351":3,"43352":5,"43353":4,"43354":2,"43355":4,"43356":4,"43357":5,"43358":3,"43359":2,"43360":4,"43361":3,"43362":2,"43363":3,"43364":3,"43365":5,"43366":1,"43367":3,"43368":3,"43369":3,"43370":3,"43371":4,"43372":5,"43373":2,"43374":3,"43375":1,"43376":4,"43377":3,"43378":4,"43379":3,"43380":4,"43381":4,"43382":2,"43383":4,"43384":4,"43385":2,"43386":2,"43387":1,"43388":3,"43389":5,"43390":1,"43391":2,"43392":1,"43393":2,"43394":1,"43395":1,"43396":2,"43397":2,"43398":1,"43399":4,"43400":3,"43401":1,"43402":4,"43403":3,"43404":2,"43405":3,"43406":3,"43407":3,"43408":1,"43409":2,"43410":3,"43411":4,"43412":4,"43413":3,"43414":2,"43415":4,"43416":3,"43417":4,"43418":4,"43419":2,"43420":2,"43421":2,"43422":4,"43423":3,"43424":1,"43425":3,"43426":3,"43427":1,"43428":1,"43429":4,"43430":4,"43431":2,"43432":4,"43433":5,"43434":3,"43435":3,"43436":3,"43437":4,"43438":4,"43439":2,"43440":2,"43441":4,"43442":4,"43443":4,"43444":2,"43445":3,"43446":5,"43447":1,"43448":1,"43449":4,"43450":5,"43451":2,"43452":3,"43453":2,"43454":4,"43455":1,"43456":3,"43457":3,"43458":1,"43459":4,"43460":3,"43461":3,"43462":3,"43463":2,"43464":1,"43465":3,"43466":3,"43467":2,"43468":2,"43469":4,"43470":1,"43471":4,"43472":3,"43473":2,"43474":2,"43475":3,"43476":4,"43477":1,"43478":2,"43479":4,"43480":4,"43481":5,"43482":3,"43483":4,"43484":4,"43485":3,"43486":4,"43487":4,"43488":3,"43489":2,"43490":3,"43491":4,"43492":2,"43493":3,"43494":5,"43495":3,"43496":1,"43497":2,"43498":5,"43499":4,"43500":3,"43501":4,"43502":4,"43503":4,"43504":3,"43505":3,"43506":4,"43507":1,"43508":1,"43509":4,"43510":2,"43511":2,"43512":3,"43513":4,"43514":5,"43515":4,"43516":4,"43517":3,"43518":3,"43519":3,"43520":3,"43521":2,"43522":3,"43523":5,"43524":2,"43525":1,"43526":1,"43527":3,"43528":2,"43529":4,"43530":4,"43531":4,"43532":3,"43533":4,"43534":4,"43535":3,"43536":2,"43537":5,"43538":3,"43539":3,"43540":4,"43541":4,"43542":2,"43543":3,"43544":2,"43545":2,"43546":3,"43547":1,"43548":3,"43549":3,"43550":4,"43551":4,"43552":3,"43553":3,"43554":4,"43555":3,"43556":5,"43557":3,"43558":5,"43559":5,"43560":1,"43561":4,"43562":2,"43563":2,"43564":3,"43565":4,"43566":4,"43567":4,"43568":3,"43569":4,"43570":2,"43571":5,"43572":2,"43573":4,"43574":5,"43575":4,"43576":3,"43577":4,"43578":1,"43579":1,"43580":4,"43581":2,"43582":3,"43583":2,"43584":3,"43585":3,"43586":3,"43587":1,"43588":2,"43589":3,"43590":3,"43591":3,"43592":3,"43593":3,"43594":3,"43595":2,"43596":4,"43597":4,"43598":1,"43599":4,"43600":4,"43601":3,"43602":3,"43603":2,"43604":3,"43605":4,"43606":3,"43607":3,"43608":2,"43609":2,"43610":3,"43611":1,"43612":3,"43613":2,"43614":4,"43615":3,"43616":2,"43617":2,"43618":1,"43619":2,"43620":2,"43621":2,"43622":2,"43623":4,"43624":2,"43625":1,"43626":2,"43627":3,"43628":4,"43629":3,"43630":2,"43631":1,"43632":3,"43633":2,"43634":2,"43635":1,"43636":2,"43637":2,"43638":4,"43639":3,"43640":3,"43641":3,"43642":2,"43643":2,"43644":4,"43645":4,"43646":5,"43647":4,"43648":4,"43649":2,"43650":2,"43651":4,"43652":1,"43653":3,"43654":3,"43655":2,"43656":4,"43657":4,"43658":2,"43659":2,"43660":2,"43661":2,"43662":4,"43663":4,"43664":3,"43665":4,"43666":3,"43667":3,"43668":2,"43669":4,"43670":4,"43671":4,"43672":3,"43673":1,"43674":1,"43675":4,"43676":3,"43677":1,"43678":3,"43679":4,"43680":4,"43681":2,"43682":4,"43683":4,"43684":2,"43685":3,"43686":2,"43687":2,"43688":3,"43689":3,"43690":4,"43691":3,"43692":3,"43693":2,"43694":4,"43695":3,"43696":2,"43697":3,"43698":3,"43699":4,"43700":4,"43701":2,"43702":3,"43703":5,"43704":4,"43705":5,"43706":4,"43707":5,"43708":3,"43709":1,"43710":5,"43711":4,"43712":3,"43713":2,"43714":4,"43715":2,"43716":4,"43717":3,"43718":3,"43719":3,"43720":2,"43721":3,"43722":1,"43723":1,"43724":3,"43725":4,"43726":3,"43727":4,"43728":3,"43729":2,"43730":3,"43731":4,"43732":3,"43733":3,"43734":2,"43735":3,"43736":3,"43737":5,"43738":5,"43739":2,"43740":4,"43741":2,"43742":3,"43743":4,"43744":3,"43745":2,"43746":5,"43747":1,"43748":3,"43749":3,"43750":5,"43751":2,"43752":1,"43753":1,"43754":3,"43755":3,"43756":1,"43757":4,"43758":4,"43759":3,"43760":5,"43761":3,"43762":2,"43763":3,"43764":2,"43765":3,"43766":5,"43767":3,"43768":1,"43769":4,"43770":1,"43771":5,"43772":4,"43773":2,"43774":3,"43775":1,"43776":2,"43777":2,"43778":3,"43779":4,"43780":4,"43781":1,"43782":3,"43783":4,"43784":4,"43785":3,"43786":3,"43787":5,"43788":3,"43789":4,"43790":3,"43791":1,"43792":4,"43793":4,"43794":3,"43795":3,"43796":2,"43797":3,"43798":4,"43799":4,"43800":3,"43801":3,"43802":4,"43803":2,"43804":4,"43805":3,"43806":2,"43807":4,"43808":4,"43809":4,"43810":4,"43811":2,"43812":4,"43813":3,"43814":5,"43815":1,"43816":3,"43817":3,"43818":3,"43819":3,"43820":3,"43821":5,"43822":4,"43823":2,"43824":4,"43825":4,"43826":2,"43827":2,"43828":2,"43829":3,"43830":2,"43831":3,"43832":3,"43833":1,"43834":4,"43835":4,"43836":2,"43837":4,"43838":2,"43839":4,"43840":3,"43841":4,"43842":4,"43843":2,"43844":3,"43845":3,"43846":3,"43847":2,"43848":3,"43849":3,"43850":4,"43851":1,"43852":3,"43853":3,"43854":5,"43855":3,"43856":5,"43857":3,"43858":4,"43859":3,"43860":4,"43861":3,"43862":2,"43863":1,"43864":3,"43865":1,"43866":3,"43867":3,"43868":1,"43869":2,"43870":4,"43871":2,"43872":5,"43873":4,"43874":1,"43875":4,"43876":3,"43877":1,"43878":3,"43879":4,"43880":4,"43881":3,"43882":2,"43883":4,"43884":3,"43885":3,"43886":3,"43887":3,"43888":3,"43889":3,"43890":3,"43891":3,"43892":5,"43893":3,"43894":2,"43895":4,"43896":3,"43897":4,"43898":3,"43899":3,"43900":3,"43901":3,"43902":4,"43903":1,"43904":4,"43905":2,"43906":3,"43907":3,"43908":4,"43909":3,"43910":3,"43911":3,"43912":2,"43913":3,"43914":5,"43915":3,"43916":4,"43917":3,"43918":3,"43919":3,"43920":5,"43921":1,"43922":2,"43923":5,"43924":2,"43925":3,"43926":2,"43927":5,"43928":3,"43929":1,"43930":4,"43931":5,"43932":5,"43933":2,"43934":4,"43935":4,"43936":4,"43937":2,"43938":3,"43939":3,"43940":5,"43941":3,"43942":4,"43943":4,"43944":2,"43945":3,"43946":3,"43947":3,"43948":5,"43949":2,"43950":1,"43951":4,"43952":4,"43953":3,"43954":3,"43955":4,"43956":2,"43957":2,"43958":3,"43959":2,"43960":4,"43961":4,"43962":3,"43963":3,"43964":3,"43965":4,"43966":4,"43967":3,"43968":4,"43969":2,"43970":1,"43971":5,"43972":4,"43973":3,"43974":1,"43975":2,"43976":3,"43977":2,"43978":4,"43979":1,"43980":4,"43981":2,"43982":4,"43983":4,"43984":3,"43985":3,"43986":4,"43987":2,"43988":4,"43989":2,"43990":2,"43991":1,"43992":3,"43993":2,"43994":3,"43995":2,"43996":1,"43997":3,"43998":2,"43999":3,"44000":2,"44001":4,"44002":2,"44003":4,"44004":2,"44005":2,"44006":2,"44007":1,"44008":4,"44009":3,"44010":4,"44011":1,"44012":3,"44013":4,"44014":4,"44015":3,"44016":2,"44017":2,"44018":4,"44019":2,"44020":2,"44021":3,"44022":2,"44023":3,"44024":2,"44025":4,"44026":2,"44027":3,"44028":3,"44029":3,"44030":3,"44031":5,"44032":3,"44033":3,"44034":3,"44035":2,"44036":2,"44037":4,"44038":4,"44039":3,"44040":2,"44041":2,"44042":5,"44043":1,"44044":3,"44045":2,"44046":4,"44047":2,"44048":4,"44049":4,"44050":3,"44051":4,"44052":3,"44053":3,"44054":1,"44055":1,"44056":1,"44057":1,"44058":4,"44059":2,"44060":1,"44061":3,"44062":5,"44063":4,"44064":4,"44065":2,"44066":5,"44067":5,"44068":3,"44069":3,"44070":4,"44071":3,"44072":3,"44073":4,"44074":1,"44075":5,"44076":4,"44077":5,"44078":1,"44079":3,"44080":5,"44081":4,"44082":2,"44083":3,"44084":5,"44085":2,"44086":2,"44087":5,"44088":3,"44089":2,"44090":3,"44091":3,"44092":2,"44093":3,"44094":2,"44095":1,"44096":4,"44097":2,"44098":4,"44099":3,"44100":3,"44101":3,"44102":2,"44103":1,"44104":3,"44105":4,"44106":5,"44107":4,"44108":5,"44109":4,"44110":3,"44111":2,"44112":4,"44113":4,"44114":1,"44115":3,"44116":3,"44117":1,"44118":5,"44119":3,"44120":3,"44121":3,"44122":5,"44123":2,"44124":2,"44125":4,"44126":4,"44127":3,"44128":4,"44129":3,"44130":3,"44131":2,"44132":4,"44133":2,"44134":3,"44135":4,"44136":3,"44137":1,"44138":2,"44139":3,"44140":2,"44141":3,"44142":3,"44143":3,"44144":3,"44145":2,"44146":1,"44147":3,"44148":4,"44149":2,"44150":2,"44151":3,"44152":3,"44153":3,"44154":3,"44155":3,"44156":4,"44157":4,"44158":1,"44159":1,"44160":1,"44161":4,"44162":3,"44163":3,"44164":2,"44165":2,"44166":3,"44167":3,"44168":3,"44169":3,"44170":3,"44171":3,"44172":1,"44173":3,"44174":3,"44175":2,"44176":2,"44177":3,"44178":4,"44179":1,"44180":4,"44181":4,"44182":2,"44183":2,"44184":1,"44185":3,"44186":4,"44187":4,"44188":3,"44189":4,"44190":3,"44191":5,"44192":2,"44193":4,"44194":1,"44195":3,"44196":3,"44197":1,"44198":3,"44199":4,"44200":2,"44201":4,"44202":1},"head":{"0":0,"1":0,"2":1,"3":0,"4":0,"5":0,"6":1,"7":1,"8":1,"9":0,"10":0,"11":0,"12":0,"13":0,"14":1,"15":0,"16":0,"17":1,"18":0,"19":0,"20":1,"21":0,"22":0,"23":0,"24":1,"25":1,"26":1,"27":0,"28":1,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":1,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":1,"47":0,"48":0,"49":0,"50":0,"51":0,"52":1,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":1,"62":1,"63":1,"64":0,"65":0,"66":1,"67":1,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":1,"80":1,"81":1,"82":0,"83":1,"84":1,"85":1,"86":0,"87":0,"88":0,"89":0,"90":0,"91":1,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":1,"99":0,"100":1,"101":0,"102":0,"103":1,"104":0,"105":0,"106":0,"107":0,"108":0,"109":1,"110":0,"111":0,"112":0,"113":1,"114":0,"115":0,"116":1,"117":0,"118":1,"119":0,"120":0,"121":1,"122":0,"123":0,"124":0,"125":0,"126":0,"127":0,"128":0,"129":0,"130":0,"131":0,"132":0,"133":1,"134":0,"135":1,"136":1,"137":0,"138":0,"139":0,"140":0,"141":0,"142":0,"143":0,"144":0,"145":0,"146":0,"147":0,"148":0,"149":0,"150":0,"151":0,"152":1,"153":0,"154":0,"155":0,"156":0,"157":0,"158":1,"159":0,"160":0,"161":0,"162":0,"163":0,"164":0,"165":0,"166":1,"167":0,"168":0,"169":0,"170":0,"171":1,"172":0,"173":1,"174":0,"175":1,"176":0,"177":0,"178":0,"179":0,"180":0,"181":0,"182":0,"183":1,"184":0,"185":0,"186":1,"187":0,"188":0,"189":0,"190":0,"191":1,"192":0,"193":0,"194":0,"195":1,"196":1,"197":0,"198":1,"199":1,"200":0,"201":1,"202":1,"203":0,"204":0,"205":1,"206":0,"207":0,"208":0,"209":0,"210":0,"211":0,"212":0,"213":0,"214":0,"215":0,"216":1,"217":0,"218":1,"219":0,"220":0,"221":0,"222":0,"223":1,"224":0,"225":0,"226":0,"227":0,"228":0,"229":0,"230":1,"231":0,"232":0,"233":0,"234":0,"235":0,"236":0,"237":0,"238":1,"239":0,"240":0,"241":0,"242":0,"243":0,"244":1,"245":0,"246":1,"247":0,"248":1,"249":0,"250":0,"251":0,"252":0,"253":1,"254":0,"255":0,"256":0,"257":0,"258":0,"259":0,"260":0,"261":0,"262":0,"263":0,"264":0,"265":0,"266":0,"267":0,"268":0,"269":1,"270":0,"271":0,"272":0,"273":0,"274":0,"275":1,"276":1,"277":0,"278":0,"279":0,"280":0,"281":1,"282":0,"283":0,"284":1,"285":0,"286":0,"287":0,"288":1,"289":1,"290":0,"291":0,"292":0,"293":0,"294":1,"295":0,"296":0,"297":0,"298":0,"299":0,"300":0,"301":0,"302":0,"303":0,"304":0,"305":0,"306":1,"307":0,"308":0,"309":0,"310":0,"311":0,"312":0,"313":0,"314":1,"315":0,"316":0,"317":1,"318":0,"319":0,"320":0,"321":0,"322":0,"323":1,"324":1,"325":1,"326":0,"327":0,"328":0,"329":0,"330":0,"331":0,"332":1,"333":0,"334":1,"335":0,"336":0,"337":1,"338":0,"339":1,"340":1,"341":0,"342":1,"343":0,"344":0,"345":0,"346":1,"347":0,"348":1,"349":0,"350":0,"351":0,"352":1,"353":1,"354":1,"355":1,"356":0,"357":1,"358":0,"359":1,"360":0,"361":0,"362":1,"363":0,"364":0,"365":0,"366":0,"367":0,"368":0,"369":0,"370":1,"371":0,"372":0,"373":0,"374":0,"375":1,"376":0,"377":0,"378":0,"379":0,"380":0,"381":0,"382":0,"383":0,"384":0,"385":0,"386":0,"387":0,"388":0,"389":1,"390":0,"391":0,"392":1,"393":0,"394":0,"395":0,"396":0,"397":0,"398":0,"399":0,"400":1,"401":0,"402":1,"403":0,"404":0,"405":0,"406":0,"407":0,"408":1,"409":0,"410":1,"411":1,"412":0,"413":0,"414":1,"415":0,"416":1,"417":0,"418":0,"419":0,"420":0,"421":1,"422":1,"423":0,"424":1,"425":0,"426":1,"427":0,"428":0,"429":1,"430":0,"431":0,"432":1,"433":0,"434":0,"435":0,"436":0,"437":0,"438":1,"439":0,"440":0,"441":1,"442":0,"443":0,"444":1,"445":0,"446":1,"447":0,"448":0,"449":1,"450":0,"451":0,"452":0,"453":0,"454":0,"455":0,"456":1,"457":1,"458":1,"459":1,"460":1,"461":0,"462":0,"463":0,"464":0,"465":0,"466":0,"467":0,"468":0,"469":0,"470":1,"471":0,"472":0,"473":0,"474":1,"475":0,"476":1,"477":0,"478":0,"479":0,"480":0,"481":0,"482":1,"483":0,"484":0,"485":0,"486":0,"487":0,"488":1,"489":1,"490":1,"491":0,"492":0,"493":0,"494":0,"495":0,"496":0,"497":0,"498":1,"499":0,"500":1,"501":0,"502":0,"503":1,"504":0,"505":0,"506":1,"507":1,"508":1,"509":0,"510":0,"511":0,"512":0,"513":0,"514":0,"515":1,"516":0,"517":0,"518":0,"519":1,"520":0,"521":0,"522":1,"523":0,"524":0,"525":0,"526":0,"527":1,"528":0,"529":0,"530":1,"531":0,"532":0,"533":0,"534":1,"535":0,"536":0,"537":0,"538":1,"539":1,"540":0,"541":0,"542":0,"543":0,"544":1,"545":0,"546":0,"547":0,"548":1,"549":0,"550":0,"551":0,"552":0,"553":0,"554":0,"555":1,"556":1,"557":0,"558":0,"559":0,"560":0,"561":0,"562":0,"563":0,"564":0,"565":0,"566":0,"567":0,"568":0,"569":1,"570":0,"571":1,"572":0,"573":0,"574":0,"575":0,"576":0,"577":0,"578":0,"579":0,"580":1,"581":1,"582":0,"583":0,"584":0,"585":0,"586":0,"587":0,"588":0,"589":0,"590":0,"591":0,"592":0,"593":0,"594":0,"595":0,"596":0,"597":1,"598":0,"599":0,"600":1,"601":0,"602":0,"603":1,"604":0,"605":0,"606":0,"607":0,"608":0,"609":0,"610":0,"611":0,"612":1,"613":1,"614":0,"615":0,"616":0,"617":0,"618":0,"619":0,"620":0,"621":0,"622":0,"623":0,"624":1,"625":0,"626":0,"627":0,"628":0,"629":1,"630":0,"631":0,"632":0,"633":0,"634":1,"635":0,"636":0,"637":0,"638":0,"639":0,"640":0,"641":0,"642":0,"643":0,"644":0,"645":1,"646":0,"647":0,"648":0,"649":1,"650":0,"651":0,"652":0,"653":0,"654":0,"655":0,"656":0,"657":1,"658":0,"659":1,"660":0,"661":0,"662":1,"663":1,"664":0,"665":0,"666":0,"667":0,"668":0,"669":0,"670":0,"671":1,"672":0,"673":0,"674":0,"675":1,"676":0,"677":0,"678":0,"679":0,"680":0,"681":0,"682":0,"683":0,"684":0,"685":1,"686":0,"687":0,"688":0,"689":0,"690":0,"691":0,"692":0,"693":0,"694":1,"695":0,"696":1,"697":0,"698":0,"699":1,"700":0,"701":1,"702":0,"703":0,"704":1,"705":0,"706":0,"707":1,"708":1,"709":1,"710":1,"711":0,"712":0,"713":1,"714":1,"715":0,"716":0,"717":0,"718":0,"719":1,"720":0,"721":0,"722":0,"723":0,"724":1,"725":0,"726":0,"727":0,"728":0,"729":0,"730":0,"731":1,"732":0,"733":0,"734":0,"735":1,"736":0,"737":1,"738":0,"739":0,"740":0,"741":0,"742":0,"743":1,"744":1,"745":1,"746":0,"747":0,"748":0,"749":0,"750":0,"751":0,"752":1,"753":1,"754":0,"755":0,"756":0,"757":0,"758":1,"759":0,"760":0,"761":0,"762":1,"763":0,"764":1,"765":0,"766":0,"767":0,"768":1,"769":0,"770":1,"771":0,"772":0,"773":0,"774":0,"775":1,"776":0,"777":0,"778":0,"779":1,"780":1,"781":0,"782":0,"783":0,"784":0,"785":1,"786":0,"787":1,"788":0,"789":0,"790":0,"791":0,"792":0,"793":1,"794":1,"795":0,"796":0,"797":1,"798":0,"799":0,"800":0,"801":0,"802":0,"803":0,"804":0,"805":0,"806":0,"807":0,"808":0,"809":1,"810":0,"811":0,"812":0,"813":1,"814":0,"815":1,"816":1,"817":0,"818":0,"819":0,"820":0,"821":1,"822":0,"823":0,"824":0,"825":0,"826":0,"827":0,"828":0,"829":0,"830":1,"831":1,"832":0,"833":0,"834":0,"835":0,"836":0,"837":1,"838":0,"839":0,"840":1,"841":0,"842":0,"843":1,"844":0,"845":1,"846":1,"847":0,"848":0,"849":0,"850":1,"851":0,"852":0,"853":0,"854":0,"855":1,"856":0,"857":0,"858":1,"859":0,"860":0,"861":1,"862":0,"863":0,"864":0,"865":0,"866":0,"867":0,"868":0,"869":0,"870":1,"871":0,"872":0,"873":0,"874":0,"875":0,"876":1,"877":1,"878":1,"879":0,"880":0,"881":0,"882":0,"883":0,"884":0,"885":0,"886":0,"887":0,"888":0,"889":0,"890":0,"891":0,"892":0,"893":0,"894":0,"895":0,"896":1,"897":1,"898":1,"899":1,"900":1,"901":0,"902":0,"903":0,"904":0,"905":0,"906":0,"907":0,"908":1,"909":0,"910":1,"911":0,"912":0,"913":0,"914":0,"915":1,"916":1,"917":0,"918":0,"919":0,"920":0,"921":0,"922":0,"923":1,"924":0,"925":1,"926":1,"927":0,"928":0,"929":1,"930":0,"931":1,"932":1,"933":0,"934":0,"935":0,"936":0,"937":0,"938":0,"939":0,"940":0,"941":1,"942":0,"943":0,"944":1,"945":0,"946":1,"947":1,"948":1,"949":0,"950":0,"951":0,"952":1,"953":1,"954":1,"955":1,"956":0,"957":0,"958":0,"959":1,"960":1,"961":0,"962":1,"963":1,"964":0,"965":0,"966":0,"967":0,"968":0,"969":1,"970":1,"971":0,"972":0,"973":1,"974":1,"975":1,"976":0,"977":0,"978":0,"979":0,"980":0,"981":1,"982":0,"983":0,"984":0,"985":0,"986":0,"987":0,"988":0,"989":0,"990":0,"991":0,"992":1,"993":0,"994":0,"995":0,"996":0,"997":0,"998":0,"999":0,"1000":0,"1001":0,"1002":0,"1003":0,"1004":0,"1005":0,"1006":1,"1007":0,"1008":0,"1009":1,"1010":0,"1011":1,"1012":0,"1013":1,"1014":0,"1015":0,"1016":0,"1017":0,"1018":0,"1019":0,"1020":0,"1021":1,"1022":1,"1023":0,"1024":0,"1025":1,"1026":1,"1027":0,"1028":0,"1029":0,"1030":0,"1031":0,"1032":0,"1033":0,"1034":0,"1035":1,"1036":1,"1037":0,"1038":0,"1039":0,"1040":0,"1041":1,"1042":1,"1043":0,"1044":1,"1045":1,"1046":0,"1047":0,"1048":0,"1049":0,"1050":0,"1051":1,"1052":1,"1053":0,"1054":0,"1055":0,"1056":0,"1057":0,"1058":1,"1059":0,"1060":0,"1061":1,"1062":0,"1063":1,"1064":0,"1065":0,"1066":0,"1067":1,"1068":0,"1069":1,"1070":1,"1071":0,"1072":0,"1073":0,"1074":0,"1075":0,"1076":0,"1077":0,"1078":0,"1079":1,"1080":1,"1081":0,"1082":0,"1083":0,"1084":0,"1085":0,"1086":0,"1087":0,"1088":0,"1089":1,"1090":0,"1091":1,"1092":0,"1093":1,"1094":0,"1095":1,"1096":0,"1097":0,"1098":0,"1099":0,"1100":0,"1101":0,"1102":1,"1103":0,"1104":0,"1105":0,"1106":0,"1107":0,"1108":0,"1109":0,"1110":1,"1111":0,"1112":1,"1113":0,"1114":0,"1115":1,"1116":0,"1117":0,"1118":0,"1119":0,"1120":0,"1121":0,"1122":0,"1123":1,"1124":0,"1125":0,"1126":1,"1127":0,"1128":0,"1129":0,"1130":1,"1131":1,"1132":1,"1133":1,"1134":0,"1135":0,"1136":0,"1137":0,"1138":0,"1139":0,"1140":1,"1141":0,"1142":0,"1143":0,"1144":1,"1145":1,"1146":0,"1147":0,"1148":1,"1149":0,"1150":1,"1151":0,"1152":0,"1153":0,"1154":0,"1155":0,"1156":0,"1157":0,"1158":1,"1159":0,"1160":0,"1161":0,"1162":0,"1163":0,"1164":0,"1165":0,"1166":0,"1167":1,"1168":1,"1169":0,"1170":0,"1171":0,"1172":0,"1173":0,"1174":0,"1175":0,"1176":1,"1177":0,"1178":0,"1179":0,"1180":0,"1181":0,"1182":0,"1183":0,"1184":1,"1185":1,"1186":0,"1187":0,"1188":0,"1189":1,"1190":0,"1191":0,"1192":0,"1193":0,"1194":0,"1195":0,"1196":0,"1197":0,"1198":0,"1199":0,"1200":1,"1201":0,"1202":0,"1203":0,"1204":0,"1205":0,"1206":1,"1207":0,"1208":0,"1209":0,"1210":0,"1211":1,"1212":0,"1213":0,"1214":0,"1215":0,"1216":1,"1217":0,"1218":0,"1219":0,"1220":1,"1221":0,"1222":0,"1223":0,"1224":1,"1225":0,"1226":0,"1227":0,"1228":0,"1229":0,"1230":0,"1231":0,"1232":0,"1233":0,"1234":0,"1235":0,"1236":1,"1237":1,"1238":1,"1239":0,"1240":0,"1241":0,"1242":0,"1243":0,"1244":0,"1245":0,"1246":1,"1247":1,"1248":1,"1249":0,"1250":0,"1251":1,"1252":0,"1253":0,"1254":0,"1255":0,"1256":0,"1257":1,"1258":0,"1259":1,"1260":0,"1261":0,"1262":0,"1263":0,"1264":0,"1265":1,"1266":0,"1267":1,"1268":0,"1269":0,"1270":0,"1271":0,"1272":0,"1273":0,"1274":0,"1275":1,"1276":0,"1277":0,"1278":0,"1279":0,"1280":0,"1281":0,"1282":0,"1283":1,"1284":0,"1285":0,"1286":0,"1287":1,"1288":0,"1289":0,"1290":0,"1291":0,"1292":0,"1293":1,"1294":0,"1295":0,"1296":0,"1297":0,"1298":1,"1299":0,"1300":0,"1301":0,"1302":1,"1303":0,"1304":0,"1305":0,"1306":0,"1307":1,"1308":0,"1309":0,"1310":1,"1311":0,"1312":0,"1313":1,"1314":0,"1315":0,"1316":0,"1317":0,"1318":0,"1319":0,"1320":1,"1321":0,"1322":0,"1323":0,"1324":1,"1325":0,"1326":0,"1327":0,"1328":0,"1329":0,"1330":1,"1331":0,"1332":0,"1333":0,"1334":1,"1335":1,"1336":1,"1337":0,"1338":0,"1339":1,"1340":0,"1341":0,"1342":1,"1343":0,"1344":0,"1345":0,"1346":0,"1347":0,"1348":1,"1349":0,"1350":1,"1351":0,"1352":1,"1353":1,"1354":0,"1355":1,"1356":0,"1357":0,"1358":1,"1359":0,"1360":1,"1361":1,"1362":0,"1363":1,"1364":0,"1365":0,"1366":0,"1367":0,"1368":0,"1369":0,"1370":1,"1371":0,"1372":0,"1373":1,"1374":0,"1375":1,"1376":0,"1377":0,"1378":0,"1379":0,"1380":0,"1381":0,"1382":0,"1383":0,"1384":0,"1385":1,"1386":1,"1387":0,"1388":0,"1389":1,"1390":0,"1391":0,"1392":0,"1393":0,"1394":0,"1395":0,"1396":1,"1397":1,"1398":1,"1399":1,"1400":1,"1401":0,"1402":0,"1403":0,"1404":0,"1405":1,"1406":0,"1407":0,"1408":0,"1409":1,"1410":1,"1411":1,"1412":0,"1413":0,"1414":1,"1415":0,"1416":0,"1417":0,"1418":0,"1419":1,"1420":0,"1421":0,"1422":1,"1423":0,"1424":0,"1425":0,"1426":0,"1427":1,"1428":0,"1429":0,"1430":0,"1431":0,"1432":0,"1433":0,"1434":1,"1435":0,"1436":0,"1437":0,"1438":1,"1439":1,"1440":0,"1441":1,"1442":1,"1443":1,"1444":1,"1445":0,"1446":1,"1447":0,"1448":0,"1449":0,"1450":0,"1451":0,"1452":1,"1453":0,"1454":1,"1455":1,"1456":0,"1457":0,"1458":1,"1459":0,"1460":0,"1461":0,"1462":1,"1463":1,"1464":0,"1465":0,"1466":0,"1467":0,"1468":0,"1469":0,"1470":0,"1471":0,"1472":0,"1473":0,"1474":0,"1475":0,"1476":1,"1477":1,"1478":1,"1479":0,"1480":1,"1481":1,"1482":0,"1483":0,"1484":0,"1485":0,"1486":0,"1487":0,"1488":1,"1489":0,"1490":0,"1491":0,"1492":0,"1493":0,"1494":0,"1495":0,"1496":0,"1497":0,"1498":0,"1499":0,"1500":1,"1501":0,"1502":0,"1503":0,"1504":0,"1505":1,"1506":0,"1507":0,"1508":1,"1509":0,"1510":0,"1511":1,"1512":1,"1513":1,"1514":0,"1515":1,"1516":0,"1517":0,"1518":0,"1519":0,"1520":0,"1521":1,"1522":1,"1523":0,"1524":0,"1525":0,"1526":0,"1527":0,"1528":0,"1529":0,"1530":1,"1531":0,"1532":0,"1533":0,"1534":0,"1535":0,"1536":0,"1537":0,"1538":0,"1539":0,"1540":0,"1541":1,"1542":0,"1543":0,"1544":0,"1545":0,"1546":0,"1547":1,"1548":0,"1549":1,"1550":0,"1551":0,"1552":0,"1553":0,"1554":0,"1555":0,"1556":1,"1557":0,"1558":0,"1559":0,"1560":0,"1561":0,"1562":1,"1563":0,"1564":0,"1565":1,"1566":1,"1567":0,"1568":0,"1569":1,"1570":0,"1571":1,"1572":1,"1573":0,"1574":0,"1575":0,"1576":0,"1577":1,"1578":0,"1579":1,"1580":0,"1581":0,"1582":1,"1583":0,"1584":0,"1585":0,"1586":0,"1587":0,"1588":0,"1589":0,"1590":1,"1591":0,"1592":0,"1593":0,"1594":0,"1595":1,"1596":0,"1597":0,"1598":0,"1599":0,"1600":0,"1601":0,"1602":0,"1603":1,"1604":1,"1605":0,"1606":0,"1607":0,"1608":0,"1609":0,"1610":0,"1611":0,"1612":0,"1613":0,"1614":1,"1615":0,"1616":0,"1617":0,"1618":0,"1619":0,"1620":0,"1621":0,"1622":0,"1623":0,"1624":1,"1625":0,"1626":0,"1627":0,"1628":1,"1629":0,"1630":0,"1631":1,"1632":0,"1633":0,"1634":0,"1635":0,"1636":0,"1637":0,"1638":0,"1639":1,"1640":1,"1641":0,"1642":1,"1643":1,"1644":0,"1645":1,"1646":0,"1647":0,"1648":0,"1649":0,"1650":0,"1651":1,"1652":0,"1653":0,"1654":0,"1655":0,"1656":0,"1657":0,"1658":0,"1659":1,"1660":0,"1661":0,"1662":0,"1663":0,"1664":0,"1665":0,"1666":0,"1667":1,"1668":0,"1669":1,"1670":0,"1671":0,"1672":0,"1673":1,"1674":0,"1675":0,"1676":1,"1677":1,"1678":0,"1679":0,"1680":0,"1681":0,"1682":0,"1683":1,"1684":0,"1685":0,"1686":0,"1687":0,"1688":0,"1689":0,"1690":0,"1691":1,"1692":0,"1693":1,"1694":0,"1695":0,"1696":1,"1697":0,"1698":0,"1699":0,"1700":0,"1701":0,"1702":0,"1703":0,"1704":0,"1705":1,"1706":0,"1707":0,"1708":0,"1709":0,"1710":1,"1711":1,"1712":1,"1713":0,"1714":0,"1715":0,"1716":1,"1717":0,"1718":0,"1719":0,"1720":1,"1721":0,"1722":1,"1723":0,"1724":1,"1725":0,"1726":0,"1727":0,"1728":1,"1729":0,"1730":0,"1731":0,"1732":1,"1733":0,"1734":1,"1735":0,"1736":1,"1737":0,"1738":0,"1739":1,"1740":1,"1741":0,"1742":0,"1743":0,"1744":0,"1745":0,"1746":1,"1747":0,"1748":1,"1749":1,"1750":1,"1751":0,"1752":0,"1753":0,"1754":1,"1755":0,"1756":0,"1757":0,"1758":0,"1759":0,"1760":0,"1761":0,"1762":0,"1763":0,"1764":0,"1765":0,"1766":0,"1767":1,"1768":0,"1769":1,"1770":0,"1771":1,"1772":0,"1773":0,"1774":0,"1775":1,"1776":0,"1777":0,"1778":0,"1779":0,"1780":1,"1781":0,"1782":0,"1783":0,"1784":0,"1785":0,"1786":0,"1787":0,"1788":1,"1789":0,"1790":0,"1791":0,"1792":0,"1793":1,"1794":0,"1795":1,"1796":0,"1797":0,"1798":0,"1799":1,"1800":1,"1801":0,"1802":0,"1803":0,"1804":1,"1805":0,"1806":1,"1807":1,"1808":0,"1809":0,"1810":0,"1811":0,"1812":0,"1813":1,"1814":0,"1815":0,"1816":0,"1817":0,"1818":1,"1819":0,"1820":1,"1821":0,"1822":0,"1823":0,"1824":0,"1825":0,"1826":0,"1827":0,"1828":0,"1829":1,"1830":0,"1831":1,"1832":1,"1833":0,"1834":0,"1835":0,"1836":0,"1837":0,"1838":0,"1839":1,"1840":0,"1841":0,"1842":0,"1843":0,"1844":0,"1845":1,"1846":1,"1847":0,"1848":0,"1849":0,"1850":0,"1851":0,"1852":0,"1853":1,"1854":1,"1855":0,"1856":1,"1857":0,"1858":1,"1859":0,"1860":0,"1861":0,"1862":1,"1863":0,"1864":1,"1865":0,"1866":0,"1867":0,"1868":0,"1869":0,"1870":0,"1871":0,"1872":0,"1873":0,"1874":0,"1875":0,"1876":0,"1877":0,"1878":0,"1879":1,"1880":1,"1881":1,"1882":0,"1883":0,"1884":1,"1885":1,"1886":0,"1887":0,"1888":0,"1889":0,"1890":0,"1891":0,"1892":1,"1893":0,"1894":0,"1895":0,"1896":1,"1897":0,"1898":1,"1899":0,"1900":0,"1901":0,"1902":0,"1903":0,"1904":0,"1905":1,"1906":0,"1907":0,"1908":0,"1909":1,"1910":0,"1911":1,"1912":0,"1913":0,"1914":1,"1915":0,"1916":0,"1917":0,"1918":0,"1919":0,"1920":0,"1921":0,"1922":0,"1923":0,"1924":0,"1925":0,"1926":0,"1927":0,"1928":0,"1929":0,"1930":0,"1931":0,"1932":1,"1933":0,"1934":0,"1935":0,"1936":0,"1937":0,"1938":0,"1939":1,"1940":0,"1941":0,"1942":0,"1943":0,"1944":0,"1945":1,"1946":1,"1947":0,"1948":1,"1949":0,"1950":1,"1951":0,"1952":0,"1953":0,"1954":0,"1955":1,"1956":0,"1957":0,"1958":0,"1959":0,"1960":0,"1961":1,"1962":0,"1963":0,"1964":0,"1965":1,"1966":0,"1967":0,"1968":0,"1969":0,"1970":0,"1971":0,"1972":1,"1973":1,"1974":0,"1975":1,"1976":0,"1977":0,"1978":0,"1979":0,"1980":1,"1981":0,"1982":1,"1983":0,"1984":0,"1985":0,"1986":0,"1987":0,"1988":1,"1989":0,"1990":0,"1991":1,"1992":1,"1993":1,"1994":1,"1995":0,"1996":0,"1997":0,"1998":0,"1999":0,"2000":0,"2001":0,"2002":0,"2003":0,"2004":1,"2005":1,"2006":0,"2007":0,"2008":0,"2009":0,"2010":0,"2011":0,"2012":1,"2013":1,"2014":0,"2015":1,"2016":0,"2017":0,"2018":0,"2019":1,"2020":0,"2021":0,"2022":0,"2023":0,"2024":0,"2025":0,"2026":0,"2027":0,"2028":0,"2029":1,"2030":0,"2031":0,"2032":1,"2033":0,"2034":0,"2035":0,"2036":1,"2037":0,"2038":0,"2039":0,"2040":0,"2041":0,"2042":0,"2043":0,"2044":0,"2045":1,"2046":0,"2047":0,"2048":0,"2049":0,"2050":0,"2051":0,"2052":0,"2053":0,"2054":0,"2055":0,"2056":0,"2057":1,"2058":0,"2059":0,"2060":1,"2061":1,"2062":1,"2063":0,"2064":0,"2065":0,"2066":0,"2067":0,"2068":1,"2069":0,"2070":0,"2071":0,"2072":1,"2073":0,"2074":0,"2075":0,"2076":0,"2077":0,"2078":0,"2079":0,"2080":0,"2081":0,"2082":0,"2083":0,"2084":0,"2085":1,"2086":0,"2087":1,"2088":0,"2089":1,"2090":0,"2091":0,"2092":0,"2093":0,"2094":0,"2095":0,"2096":1,"2097":1,"2098":1,"2099":0,"2100":0,"2101":0,"2102":0,"2103":0,"2104":0,"2105":0,"2106":0,"2107":0,"2108":1,"2109":0,"2110":0,"2111":0,"2112":0,"2113":0,"2114":0,"2115":0,"2116":0,"2117":0,"2118":0,"2119":0,"2120":1,"2121":0,"2122":0,"2123":0,"2124":0,"2125":1,"2126":0,"2127":1,"2128":0,"2129":0,"2130":0,"2131":0,"2132":1,"2133":0,"2134":0,"2135":0,"2136":0,"2137":0,"2138":0,"2139":0,"2140":1,"2141":1,"2142":0,"2143":0,"2144":1,"2145":0,"2146":0,"2147":0,"2148":0,"2149":0,"2150":0,"2151":0,"2152":0,"2153":1,"2154":1,"2155":0,"2156":0,"2157":0,"2158":0,"2159":0,"2160":0,"2161":0,"2162":0,"2163":0,"2164":0,"2165":0,"2166":1,"2167":1,"2168":0,"2169":1,"2170":1,"2171":1,"2172":0,"2173":0,"2174":0,"2175":0,"2176":0,"2177":0,"2178":0,"2179":0,"2180":0,"2181":0,"2182":0,"2183":1,"2184":0,"2185":0,"2186":0,"2187":1,"2188":1,"2189":0,"2190":0,"2191":1,"2192":1,"2193":0,"2194":1,"2195":0,"2196":0,"2197":0,"2198":0,"2199":1,"2200":0,"2201":0,"2202":1,"2203":1,"2204":1,"2205":0,"2206":0,"2207":0,"2208":0,"2209":0,"2210":1,"2211":0,"2212":0,"2213":0,"2214":1,"2215":0,"2216":0,"2217":1,"2218":0,"2219":1,"2220":0,"2221":0,"2222":0,"2223":0,"2224":0,"2225":0,"2226":0,"2227":1,"2228":1,"2229":0,"2230":1,"2231":1,"2232":0,"2233":1,"2234":0,"2235":0,"2236":0,"2237":1,"2238":0,"2239":0,"2240":0,"2241":1,"2242":0,"2243":1,"2244":1,"2245":1,"2246":0,"2247":0,"2248":1,"2249":1,"2250":0,"2251":0,"2252":0,"2253":0,"2254":1,"2255":0,"2256":0,"2257":1,"2258":0,"2259":1,"2260":0,"2261":0,"2262":1,"2263":0,"2264":0,"2265":1,"2266":0,"2267":1,"2268":0,"2269":0,"2270":0,"2271":0,"2272":0,"2273":1,"2274":0,"2275":1,"2276":0,"2277":1,"2278":1,"2279":0,"2280":0,"2281":0,"2282":0,"2283":1,"2284":1,"2285":0,"2286":0,"2287":1,"2288":1,"2289":1,"2290":1,"2291":0,"2292":0,"2293":0,"2294":0,"2295":0,"2296":0,"2297":0,"2298":1,"2299":0,"2300":0,"2301":0,"2302":0,"2303":1,"2304":1,"2305":0,"2306":0,"2307":0,"2308":0,"2309":0,"2310":1,"2311":1,"2312":0,"2313":0,"2314":0,"2315":0,"2316":0,"2317":0,"2318":1,"2319":1,"2320":0,"2321":1,"2322":0,"2323":0,"2324":0,"2325":0,"2326":0,"2327":1,"2328":0,"2329":0,"2330":1,"2331":0,"2332":1,"2333":0,"2334":0,"2335":1,"2336":0,"2337":0,"2338":1,"2339":0,"2340":0,"2341":0,"2342":0,"2343":0,"2344":1,"2345":0,"2346":0,"2347":0,"2348":0,"2349":1,"2350":0,"2351":0,"2352":0,"2353":0,"2354":0,"2355":1,"2356":0,"2357":0,"2358":0,"2359":0,"2360":0,"2361":0,"2362":1,"2363":0,"2364":1,"2365":0,"2366":1,"2367":1,"2368":1,"2369":0,"2370":0,"2371":0,"2372":0,"2373":0,"2374":0,"2375":0,"2376":0,"2377":0,"2378":0,"2379":0,"2380":0,"2381":0,"2382":0,"2383":0,"2384":0,"2385":0,"2386":0,"2387":0,"2388":1,"2389":0,"2390":1,"2391":1,"2392":0,"2393":0,"2394":0,"2395":0,"2396":0,"2397":1,"2398":0,"2399":1,"2400":0,"2401":1,"2402":0,"2403":0,"2404":1,"2405":1,"2406":1,"2407":0,"2408":0,"2409":0,"2410":0,"2411":0,"2412":0,"2413":0,"2414":0,"2415":0,"2416":1,"2417":0,"2418":0,"2419":0,"2420":1,"2421":0,"2422":0,"2423":0,"2424":1,"2425":0,"2426":0,"2427":0,"2428":1,"2429":1,"2430":0,"2431":0,"2432":0,"2433":0,"2434":1,"2435":1,"2436":0,"2437":1,"2438":0,"2439":1,"2440":1,"2441":1,"2442":0,"2443":0,"2444":0,"2445":0,"2446":0,"2447":0,"2448":0,"2449":0,"2450":0,"2451":1,"2452":0,"2453":0,"2454":0,"2455":0,"2456":0,"2457":0,"2458":0,"2459":0,"2460":0,"2461":0,"2462":1,"2463":0,"2464":0,"2465":0,"2466":0,"2467":0,"2468":0,"2469":1,"2470":0,"2471":1,"2472":0,"2473":0,"2474":0,"2475":0,"2476":0,"2477":0,"2478":0,"2479":0,"2480":0,"2481":0,"2482":1,"2483":0,"2484":1,"2485":0,"2486":1,"2487":1,"2488":0,"2489":0,"2490":0,"2491":0,"2492":0,"2493":0,"2494":0,"2495":0,"2496":0,"2497":1,"2498":0,"2499":0,"2500":0,"2501":0,"2502":0,"2503":0,"2504":0,"2505":0,"2506":1,"2507":1,"2508":0,"2509":0,"2510":0,"2511":0,"2512":0,"2513":0,"2514":0,"2515":0,"2516":1,"2517":0,"2518":0,"2519":0,"2520":0,"2521":0,"2522":0,"2523":0,"2524":0,"2525":0,"2526":0,"2527":0,"2528":0,"2529":0,"2530":1,"2531":1,"2532":1,"2533":0,"2534":0,"2535":0,"2536":0,"2537":1,"2538":0,"2539":0,"2540":0,"2541":0,"2542":1,"2543":1,"2544":0,"2545":0,"2546":0,"2547":0,"2548":0,"2549":0,"2550":0,"2551":0,"2552":0,"2553":0,"2554":1,"2555":0,"2556":0,"2557":0,"2558":0,"2559":1,"2560":0,"2561":1,"2562":1,"2563":1,"2564":1,"2565":0,"2566":0,"2567":0,"2568":1,"2569":0,"2570":0,"2571":0,"2572":0,"2573":0,"2574":1,"2575":0,"2576":1,"2577":1,"2578":0,"2579":0,"2580":0,"2581":0,"2582":0,"2583":0,"2584":0,"2585":1,"2586":0,"2587":0,"2588":0,"2589":1,"2590":1,"2591":0,"2592":0,"2593":1,"2594":0,"2595":1,"2596":0,"2597":0,"2598":0,"2599":0,"2600":1,"2601":0,"2602":0,"2603":0,"2604":0,"2605":0,"2606":0,"2607":0,"2608":1,"2609":0,"2610":0,"2611":0,"2612":1,"2613":0,"2614":0,"2615":0,"2616":0,"2617":0,"2618":0,"2619":1,"2620":0,"2621":0,"2622":0,"2623":0,"2624":0,"2625":0,"2626":1,"2627":0,"2628":1,"2629":1,"2630":0,"2631":0,"2632":0,"2633":0,"2634":1,"2635":0,"2636":0,"2637":1,"2638":0,"2639":1,"2640":0,"2641":0,"2642":1,"2643":0,"2644":0,"2645":0,"2646":0,"2647":0,"2648":1,"2649":1,"2650":0,"2651":1,"2652":0,"2653":0,"2654":1,"2655":0,"2656":0,"2657":0,"2658":0,"2659":0,"2660":0,"2661":1,"2662":0,"2663":0,"2664":1,"2665":0,"2666":0,"2667":0,"2668":0,"2669":0,"2670":0,"2671":1,"2672":0,"2673":0,"2674":0,"2675":0,"2676":1,"2677":0,"2678":1,"2679":1,"2680":0,"2681":0,"2682":1,"2683":0,"2684":0,"2685":0,"2686":0,"2687":0,"2688":0,"2689":1,"2690":0,"2691":0,"2692":0,"2693":1,"2694":1,"2695":0,"2696":0,"2697":1,"2698":0,"2699":1,"2700":1,"2701":0,"2702":1,"2703":0,"2704":0,"2705":0,"2706":0,"2707":0,"2708":0,"2709":1,"2710":0,"2711":0,"2712":0,"2713":1,"2714":0,"2715":0,"2716":1,"2717":0,"2718":0,"2719":0,"2720":0,"2721":0,"2722":0,"2723":0,"2724":0,"2725":0,"2726":0,"2727":0,"2728":1,"2729":0,"2730":0,"2731":0,"2732":1,"2733":0,"2734":0,"2735":0,"2736":1,"2737":0,"2738":0,"2739":1,"2740":0,"2741":0,"2742":1,"2743":1,"2744":1,"2745":0,"2746":1,"2747":1,"2748":0,"2749":0,"2750":0,"2751":0,"2752":0,"2753":0,"2754":0,"2755":0,"2756":0,"2757":1,"2758":0,"2759":0,"2760":0,"2761":0,"2762":0,"2763":0,"2764":0,"2765":0,"2766":0,"2767":0,"2768":0,"2769":0,"2770":0,"2771":0,"2772":0,"2773":1,"2774":0,"2775":0,"2776":0,"2777":0,"2778":0,"2779":0,"2780":0,"2781":0,"2782":0,"2783":0,"2784":0,"2785":0,"2786":0,"2787":0,"2788":0,"2789":1,"2790":0,"2791":1,"2792":1,"2793":0,"2794":0,"2795":0,"2796":0,"2797":0,"2798":0,"2799":0,"2800":0,"2801":0,"2802":0,"2803":0,"2804":0,"2805":0,"2806":1,"2807":0,"2808":0,"2809":0,"2810":1,"2811":0,"2812":0,"2813":0,"2814":0,"2815":0,"2816":0,"2817":0,"2818":0,"2819":0,"2820":1,"2821":0,"2822":0,"2823":0,"2824":0,"2825":0,"2826":1,"2827":1,"2828":1,"2829":0,"2830":0,"2831":0,"2832":0,"2833":1,"2834":1,"2835":0,"2836":0,"2837":0,"2838":0,"2839":0,"2840":0,"2841":0,"2842":1,"2843":1,"2844":0,"2845":0,"2846":0,"2847":0,"2848":0,"2849":0,"2850":0,"2851":0,"2852":0,"2853":1,"2854":1,"2855":1,"2856":0,"2857":0,"2858":0,"2859":0,"2860":0,"2861":0,"2862":0,"2863":0,"2864":0,"2865":0,"2866":1,"2867":0,"2868":0,"2869":0,"2870":0,"2871":0,"2872":0,"2873":0,"2874":0,"2875":0,"2876":1,"2877":0,"2878":0,"2879":0,"2880":0,"2881":1,"2882":0,"2883":1,"2884":0,"2885":0,"2886":1,"2887":0,"2888":0,"2889":0,"2890":0,"2891":1,"2892":0,"2893":0,"2894":0,"2895":0,"2896":1,"2897":0,"2898":0,"2899":0,"2900":0,"2901":0,"2902":0,"2903":1,"2904":0,"2905":0,"2906":0,"2907":0,"2908":0,"2909":0,"2910":1,"2911":0,"2912":1,"2913":1,"2914":1,"2915":0,"2916":0,"2917":0,"2918":0,"2919":0,"2920":1,"2921":1,"2922":0,"2923":0,"2924":0,"2925":1,"2926":1,"2927":1,"2928":0,"2929":1,"2930":1,"2931":0,"2932":0,"2933":1,"2934":1,"2935":0,"2936":1,"2937":0,"2938":1,"2939":0,"2940":0,"2941":0,"2942":0,"2943":0,"2944":0,"2945":0,"2946":0,"2947":0,"2948":1,"2949":1,"2950":0,"2951":1,"2952":0,"2953":0,"2954":0,"2955":0,"2956":0,"2957":0,"2958":0,"2959":1,"2960":0,"2961":0,"2962":0,"2963":0,"2964":1,"2965":0,"2966":0,"2967":1,"2968":0,"2969":1,"2970":1,"2971":0,"2972":1,"2973":1,"2974":0,"2975":1,"2976":0,"2977":0,"2978":0,"2979":0,"2980":0,"2981":0,"2982":0,"2983":0,"2984":0,"2985":0,"2986":1,"2987":0,"2988":1,"2989":0,"2990":0,"2991":1,"2992":0,"2993":0,"2994":0,"2995":0,"2996":0,"2997":0,"2998":0,"2999":0,"3000":0,"3001":0,"3002":0,"3003":0,"3004":0,"3005":0,"3006":0,"3007":0,"3008":0,"3009":0,"3010":1,"3011":0,"3012":0,"3013":1,"3014":0,"3015":0,"3016":1,"3017":0,"3018":0,"3019":0,"3020":1,"3021":0,"3022":0,"3023":1,"3024":0,"3025":0,"3026":0,"3027":0,"3028":0,"3029":0,"3030":0,"3031":0,"3032":1,"3033":1,"3034":0,"3035":0,"3036":0,"3037":0,"3038":0,"3039":0,"3040":0,"3041":0,"3042":0,"3043":1,"3044":0,"3045":0,"3046":0,"3047":0,"3048":0,"3049":0,"3050":1,"3051":1,"3052":0,"3053":0,"3054":1,"3055":0,"3056":0,"3057":0,"3058":0,"3059":0,"3060":0,"3061":0,"3062":0,"3063":0,"3064":0,"3065":1,"3066":1,"3067":1,"3068":0,"3069":0,"3070":1,"3071":1,"3072":1,"3073":1,"3074":1,"3075":0,"3076":0,"3077":0,"3078":0,"3079":0,"3080":0,"3081":0,"3082":0,"3083":0,"3084":0,"3085":0,"3086":1,"3087":0,"3088":0,"3089":1,"3090":1,"3091":1,"3092":0,"3093":1,"3094":0,"3095":0,"3096":0,"3097":0,"3098":0,"3099":1,"3100":0,"3101":0,"3102":1,"3103":1,"3104":0,"3105":0,"3106":0,"3107":0,"3108":0,"3109":1,"3110":1,"3111":0,"3112":0,"3113":0,"3114":0,"3115":1,"3116":1,"3117":0,"3118":0,"3119":0,"3120":1,"3121":0,"3122":1,"3123":0,"3124":0,"3125":1,"3126":0,"3127":0,"3128":0,"3129":0,"3130":1,"3131":0,"3132":1,"3133":0,"3134":0,"3135":1,"3136":0,"3137":0,"3138":0,"3139":0,"3140":0,"3141":0,"3142":0,"3143":0,"3144":1,"3145":1,"3146":0,"3147":0,"3148":0,"3149":0,"3150":0,"3151":0,"3152":0,"3153":1,"3154":0,"3155":0,"3156":0,"3157":0,"3158":0,"3159":0,"3160":0,"3161":0,"3162":0,"3163":0,"3164":1,"3165":0,"3166":0,"3167":0,"3168":0,"3169":1,"3170":0,"3171":0,"3172":0,"3173":0,"3174":0,"3175":0,"3176":0,"3177":0,"3178":1,"3179":0,"3180":0,"3181":0,"3182":0,"3183":0,"3184":1,"3185":0,"3186":0,"3187":0,"3188":0,"3189":1,"3190":0,"3191":0,"3192":0,"3193":0,"3194":0,"3195":0,"3196":0,"3197":0,"3198":1,"3199":1,"3200":1,"3201":0,"3202":1,"3203":0,"3204":0,"3205":0,"3206":0,"3207":0,"3208":0,"3209":0,"3210":1,"3211":1,"3212":0,"3213":0,"3214":0,"3215":0,"3216":0,"3217":0,"3218":0,"3219":0,"3220":1,"3221":0,"3222":0,"3223":0,"3224":0,"3225":0,"3226":0,"3227":1,"3228":0,"3229":0,"3230":1,"3231":0,"3232":0,"3233":0,"3234":0,"3235":0,"3236":0,"3237":1,"3238":0,"3239":0,"3240":1,"3241":0,"3242":1,"3243":0,"3244":0,"3245":0,"3246":0,"3247":0,"3248":0,"3249":0,"3250":0,"3251":0,"3252":0,"3253":0,"3254":0,"3255":0,"3256":0,"3257":0,"3258":1,"3259":0,"3260":1,"3261":0,"3262":0,"3263":0,"3264":1,"3265":1,"3266":0,"3267":0,"3268":1,"3269":0,"3270":0,"3271":1,"3272":1,"3273":0,"3274":0,"3275":0,"3276":0,"3277":0,"3278":0,"3279":1,"3280":0,"3281":0,"3282":1,"3283":0,"3284":0,"3285":1,"3286":0,"3287":0,"3288":0,"3289":1,"3290":0,"3291":1,"3292":0,"3293":1,"3294":0,"3295":0,"3296":0,"3297":0,"3298":0,"3299":0,"3300":0,"3301":0,"3302":0,"3303":0,"3304":0,"3305":0,"3306":0,"3307":0,"3308":0,"3309":0,"3310":1,"3311":0,"3312":0,"3313":0,"3314":1,"3315":1,"3316":0,"3317":0,"3318":0,"3319":1,"3320":0,"3321":1,"3322":1,"3323":0,"3324":1,"3325":0,"3326":0,"3327":0,"3328":0,"3329":1,"3330":1,"3331":0,"3332":0,"3333":0,"3334":0,"3335":0,"3336":0,"3337":1,"3338":0,"3339":0,"3340":1,"3341":1,"3342":0,"3343":0,"3344":1,"3345":1,"3346":0,"3347":1,"3348":0,"3349":0,"3350":0,"3351":0,"3352":0,"3353":0,"3354":1,"3355":0,"3356":1,"3357":1,"3358":0,"3359":1,"3360":0,"3361":0,"3362":0,"3363":0,"3364":0,"3365":0,"3366":0,"3367":0,"3368":1,"3369":0,"3370":1,"3371":0,"3372":0,"3373":1,"3374":0,"3375":0,"3376":1,"3377":1,"3378":0,"3379":0,"3380":0,"3381":0,"3382":1,"3383":0,"3384":0,"3385":0,"3386":1,"3387":1,"3388":0,"3389":0,"3390":0,"3391":1,"3392":0,"3393":0,"3394":0,"3395":0,"3396":0,"3397":0,"3398":0,"3399":1,"3400":0,"3401":0,"3402":0,"3403":0,"3404":1,"3405":1,"3406":1,"3407":0,"3408":0,"3409":0,"3410":0,"3411":0,"3412":0,"3413":1,"3414":1,"3415":0,"3416":0,"3417":0,"3418":0,"3419":1,"3420":0,"3421":0,"3422":1,"3423":0,"3424":0,"3425":0,"3426":0,"3427":0,"3428":1,"3429":0,"3430":0,"3431":0,"3432":0,"3433":0,"3434":0,"3435":0,"3436":0,"3437":0,"3438":0,"3439":0,"3440":1,"3441":1,"3442":0,"3443":0,"3444":0,"3445":0,"3446":0,"3447":0,"3448":1,"3449":1,"3450":0,"3451":0,"3452":1,"3453":1,"3454":0,"3455":0,"3456":0,"3457":1,"3458":1,"3459":1,"3460":0,"3461":0,"3462":0,"3463":0,"3464":0,"3465":1,"3466":0,"3467":0,"3468":0,"3469":1,"3470":0,"3471":0,"3472":1,"3473":1,"3474":0,"3475":0,"3476":0,"3477":0,"3478":0,"3479":0,"3480":0,"3481":1,"3482":1,"3483":0,"3484":0,"3485":0,"3486":0,"3487":1,"3488":0,"3489":0,"3490":0,"3491":0,"3492":0,"3493":0,"3494":1,"3495":1,"3496":0,"3497":0,"3498":0,"3499":1,"3500":0,"3501":0,"3502":0,"3503":0,"3504":1,"3505":1,"3506":0,"3507":0,"3508":0,"3509":1,"3510":0,"3511":0,"3512":0,"3513":0,"3514":0,"3515":0,"3516":1,"3517":0,"3518":0,"3519":0,"3520":1,"3521":1,"3522":0,"3523":0,"3524":0,"3525":0,"3526":1,"3527":0,"3528":0,"3529":0,"3530":0,"3531":0,"3532":0,"3533":0,"3534":1,"3535":0,"3536":0,"3537":1,"3538":0,"3539":0,"3540":0,"3541":0,"3542":0,"3543":0,"3544":0,"3545":0,"3546":0,"3547":1,"3548":0,"3549":1,"3550":1,"3551":0,"3552":1,"3553":0,"3554":1,"3555":0,"3556":0,"3557":0,"3558":0,"3559":1,"3560":1,"3561":1,"3562":1,"3563":0,"3564":0,"3565":0,"3566":0,"3567":0,"3568":0,"3569":1,"3570":0,"3571":0,"3572":0,"3573":0,"3574":0,"3575":1,"3576":0,"3577":0,"3578":0,"3579":1,"3580":0,"3581":0,"3582":0,"3583":1,"3584":0,"3585":0,"3586":1,"3587":0,"3588":1,"3589":0,"3590":0,"3591":0,"3592":0,"3593":0,"3594":0,"3595":0,"3596":0,"3597":0,"3598":1,"3599":0,"3600":0,"3601":0,"3602":0,"3603":0,"3604":0,"3605":0,"3606":0,"3607":0,"3608":0,"3609":0,"3610":0,"3611":0,"3612":0,"3613":1,"3614":0,"3615":0,"3616":0,"3617":0,"3618":0,"3619":0,"3620":0,"3621":1,"3622":0,"3623":0,"3624":1,"3625":1,"3626":1,"3627":1,"3628":0,"3629":0,"3630":0,"3631":0,"3632":0,"3633":0,"3634":0,"3635":0,"3636":0,"3637":0,"3638":1,"3639":0,"3640":0,"3641":0,"3642":1,"3643":0,"3644":0,"3645":0,"3646":0,"3647":1,"3648":0,"3649":0,"3650":0,"3651":0,"3652":0,"3653":1,"3654":1,"3655":0,"3656":0,"3657":1,"3658":1,"3659":0,"3660":0,"3661":0,"3662":0,"3663":0,"3664":0,"3665":0,"3666":0,"3667":1,"3668":0,"3669":0,"3670":0,"3671":0,"3672":0,"3673":0,"3674":0,"3675":1,"3676":0,"3677":1,"3678":0,"3679":1,"3680":0,"3681":0,"3682":0,"3683":0,"3684":0,"3685":1,"3686":0,"3687":0,"3688":0,"3689":1,"3690":0,"3691":0,"3692":0,"3693":0,"3694":0,"3695":0,"3696":1,"3697":0,"3698":1,"3699":0,"3700":0,"3701":0,"3702":0,"3703":0,"3704":0,"3705":0,"3706":0,"3707":0,"3708":0,"3709":0,"3710":0,"3711":1,"3712":0,"3713":1,"3714":0,"3715":0,"3716":0,"3717":0,"3718":1,"3719":0,"3720":1,"3721":0,"3722":0,"3723":0,"3724":0,"3725":0,"3726":0,"3727":1,"3728":1,"3729":0,"3730":0,"3731":0,"3732":0,"3733":0,"3734":0,"3735":0,"3736":1,"3737":1,"3738":1,"3739":0,"3740":0,"3741":0,"3742":0,"3743":1,"3744":1,"3745":0,"3746":0,"3747":0,"3748":0,"3749":1,"3750":0,"3751":0,"3752":0,"3753":0,"3754":0,"3755":1,"3756":1,"3757":0,"3758":0,"3759":0,"3760":1,"3761":0,"3762":0,"3763":0,"3764":0,"3765":1,"3766":0,"3767":0,"3768":1,"3769":0,"3770":1,"3771":0,"3772":0,"3773":0,"3774":0,"3775":1,"3776":0,"3777":0,"3778":0,"3779":0,"3780":1,"3781":0,"3782":0,"3783":0,"3784":0,"3785":0,"3786":0,"3787":0,"3788":0,"3789":1,"3790":0,"3791":0,"3792":0,"3793":0,"3794":0,"3795":1,"3796":0,"3797":0,"3798":1,"3799":0,"3800":0,"3801":1,"3802":0,"3803":0,"3804":1,"3805":0,"3806":0,"3807":0,"3808":1,"3809":1,"3810":0,"3811":1,"3812":0,"3813":0,"3814":0,"3815":0,"3816":0,"3817":0,"3818":0,"3819":0,"3820":0,"3821":1,"3822":0,"3823":0,"3824":0,"3825":0,"3826":0,"3827":0,"3828":0,"3829":0,"3830":0,"3831":0,"3832":0,"3833":0,"3834":0,"3835":0,"3836":0,"3837":0,"3838":0,"3839":0,"3840":0,"3841":0,"3842":0,"3843":0,"3844":0,"3845":0,"3846":1,"3847":0,"3848":1,"3849":1,"3850":0,"3851":0,"3852":0,"3853":0,"3854":0,"3855":0,"3856":0,"3857":0,"3858":0,"3859":0,"3860":1,"3861":0,"3862":1,"3863":0,"3864":0,"3865":0,"3866":1,"3867":0,"3868":1,"3869":1,"3870":0,"3871":0,"3872":0,"3873":1,"3874":0,"3875":1,"3876":1,"3877":0,"3878":1,"3879":0,"3880":0,"3881":0,"3882":1,"3883":0,"3884":0,"3885":1,"3886":1,"3887":0,"3888":1,"3889":0,"3890":0,"3891":0,"3892":0,"3893":0,"3894":0,"3895":0,"3896":0,"3897":0,"3898":1,"3899":1,"3900":0,"3901":0,"3902":0,"3903":0,"3904":0,"3905":1,"3906":0,"3907":1,"3908":0,"3909":0,"3910":0,"3911":0,"3912":0,"3913":0,"3914":0,"3915":0,"3916":0,"3917":0,"3918":1,"3919":0,"3920":0,"3921":0,"3922":0,"3923":0,"3924":0,"3925":1,"3926":0,"3927":0,"3928":0,"3929":0,"3930":0,"3931":0,"3932":0,"3933":0,"3934":0,"3935":0,"3936":1,"3937":0,"3938":1,"3939":1,"3940":0,"3941":0,"3942":0,"3943":0,"3944":0,"3945":0,"3946":0,"3947":1,"3948":1,"3949":1,"3950":1,"3951":0,"3952":1,"3953":0,"3954":0,"3955":0,"3956":0,"3957":1,"3958":1,"3959":0,"3960":0,"3961":0,"3962":0,"3963":1,"3964":0,"3965":1,"3966":0,"3967":0,"3968":0,"3969":0,"3970":0,"3971":0,"3972":0,"3973":0,"3974":1,"3975":0,"3976":0,"3977":1,"3978":0,"3979":0,"3980":1,"3981":0,"3982":0,"3983":0,"3984":0,"3985":0,"3986":0,"3987":0,"3988":1,"3989":0,"3990":0,"3991":1,"3992":0,"3993":0,"3994":0,"3995":0,"3996":0,"3997":1,"3998":0,"3999":0,"4000":1,"4001":0,"4002":0,"4003":0,"4004":1,"4005":0,"4006":0,"4007":0,"4008":1,"4009":0,"4010":0,"4011":1,"4012":1,"4013":1,"4014":0,"4015":0,"4016":0,"4017":0,"4018":0,"4019":0,"4020":1,"4021":0,"4022":0,"4023":0,"4024":1,"4025":0,"4026":1,"4027":0,"4028":0,"4029":0,"4030":0,"4031":0,"4032":0,"4033":0,"4034":0,"4035":0,"4036":1,"4037":0,"4038":0,"4039":0,"4040":0,"4041":0,"4042":1,"4043":1,"4044":0,"4045":0,"4046":0,"4047":0,"4048":1,"4049":0,"4050":1,"4051":0,"4052":0,"4053":0,"4054":1,"4055":1,"4056":0,"4057":0,"4058":0,"4059":0,"4060":0,"4061":0,"4062":0,"4063":1,"4064":1,"4065":0,"4066":0,"4067":1,"4068":0,"4069":1,"4070":0,"4071":0,"4072":0,"4073":1,"4074":0,"4075":1,"4076":1,"4077":0,"4078":0,"4079":0,"4080":0,"4081":0,"4082":0,"4083":0,"4084":0,"4085":0,"4086":1,"4087":1,"4088":0,"4089":0,"4090":0,"4091":0,"4092":0,"4093":0,"4094":1,"4095":0,"4096":0,"4097":1,"4098":0,"4099":0,"4100":0,"4101":1,"4102":0,"4103":0,"4104":0,"4105":0,"4106":0,"4107":0,"4108":0,"4109":1,"4110":1,"4111":0,"4112":0,"4113":0,"4114":1,"4115":0,"4116":0,"4117":0,"4118":0,"4119":0,"4120":0,"4121":0,"4122":0,"4123":0,"4124":0,"4125":0,"4126":1,"4127":1,"4128":0,"4129":1,"4130":1,"4131":0,"4132":0,"4133":1,"4134":1,"4135":1,"4136":0,"4137":0,"4138":0,"4139":0,"4140":1,"4141":0,"4142":0,"4143":0,"4144":0,"4145":0,"4146":1,"4147":0,"4148":0,"4149":0,"4150":0,"4151":1,"4152":1,"4153":0,"4154":1,"4155":0,"4156":0,"4157":1,"4158":0,"4159":1,"4160":0,"4161":0,"4162":1,"4163":0,"4164":0,"4165":0,"4166":0,"4167":1,"4168":0,"4169":0,"4170":0,"4171":0,"4172":0,"4173":1,"4174":0,"4175":0,"4176":1,"4177":0,"4178":0,"4179":1,"4180":0,"4181":0,"4182":0,"4183":0,"4184":0,"4185":1,"4186":0,"4187":1,"4188":0,"4189":0,"4190":0,"4191":0,"4192":0,"4193":0,"4194":0,"4195":0,"4196":1,"4197":1,"4198":0,"4199":0,"4200":0,"4201":1,"4202":0,"4203":0,"4204":0,"4205":0,"4206":0,"4207":0,"4208":0,"4209":0,"4210":0,"4211":1,"4212":0,"4213":0,"4214":0,"4215":1,"4216":0,"4217":1,"4218":0,"4219":0,"4220":0,"4221":0,"4222":0,"4223":0,"4224":0,"4225":0,"4226":1,"4227":1,"4228":0,"4229":1,"4230":0,"4231":0,"4232":1,"4233":0,"4234":1,"4235":0,"4236":0,"4237":0,"4238":0,"4239":0,"4240":0,"4241":0,"4242":1,"4243":1,"4244":0,"4245":0,"4246":0,"4247":0,"4248":0,"4249":0,"4250":0,"4251":0,"4252":0,"4253":0,"4254":0,"4255":0,"4256":0,"4257":0,"4258":1,"4259":0,"4260":0,"4261":1,"4262":0,"4263":0,"4264":0,"4265":0,"4266":0,"4267":0,"4268":0,"4269":1,"4270":1,"4271":0,"4272":0,"4273":0,"4274":1,"4275":0,"4276":0,"4277":0,"4278":1,"4279":1,"4280":0,"4281":0,"4282":0,"4283":0,"4284":1,"4285":0,"4286":0,"4287":0,"4288":0,"4289":1,"4290":0,"4291":0,"4292":0,"4293":0,"4294":1,"4295":0,"4296":0,"4297":0,"4298":1,"4299":0,"4300":0,"4301":1,"4302":0,"4303":1,"4304":1,"4305":1,"4306":0,"4307":1,"4308":0,"4309":1,"4310":0,"4311":0,"4312":0,"4313":0,"4314":0,"4315":0,"4316":0,"4317":0,"4318":0,"4319":0,"4320":0,"4321":0,"4322":1,"4323":0,"4324":0,"4325":1,"4326":0,"4327":0,"4328":0,"4329":0,"4330":1,"4331":0,"4332":1,"4333":0,"4334":0,"4335":0,"4336":0,"4337":0,"4338":0,"4339":1,"4340":0,"4341":0,"4342":0,"4343":0,"4344":0,"4345":1,"4346":1,"4347":0,"4348":0,"4349":1,"4350":1,"4351":1,"4352":0,"4353":1,"4354":0,"4355":0,"4356":0,"4357":0,"4358":0,"4359":0,"4360":0,"4361":1,"4362":0,"4363":1,"4364":0,"4365":0,"4366":0,"4367":0,"4368":0,"4369":1,"4370":0,"4371":0,"4372":0,"4373":0,"4374":0,"4375":1,"4376":0,"4377":0,"4378":0,"4379":0,"4380":0,"4381":0,"4382":0,"4383":1,"4384":0,"4385":0,"4386":0,"4387":0,"4388":0,"4389":0,"4390":0,"4391":0,"4392":0,"4393":0,"4394":0,"4395":0,"4396":0,"4397":0,"4398":1,"4399":0,"4400":1,"4401":0,"4402":0,"4403":0,"4404":0,"4405":0,"4406":0,"4407":0,"4408":0,"4409":1,"4410":0,"4411":0,"4412":1,"4413":0,"4414":0,"4415":1,"4416":0,"4417":0,"4418":0,"4419":0,"4420":0,"4421":0,"4422":1,"4423":1,"4424":1,"4425":0,"4426":1,"4427":0,"4428":0,"4429":0,"4430":1,"4431":0,"4432":0,"4433":0,"4434":0,"4435":0,"4436":1,"4437":0,"4438":0,"4439":1,"4440":0,"4441":0,"4442":0,"4443":0,"4444":0,"4445":0,"4446":1,"4447":0,"4448":0,"4449":0,"4450":0,"4451":0,"4452":0,"4453":1,"4454":0,"4455":0,"4456":0,"4457":0,"4458":1,"4459":1,"4460":1,"4461":0,"4462":0,"4463":0,"4464":0,"4465":0,"4466":0,"4467":0,"4468":0,"4469":0,"4470":0,"4471":0,"4472":0,"4473":0,"4474":0,"4475":0,"4476":0,"4477":0,"4478":0,"4479":0,"4480":0,"4481":0,"4482":0,"4483":0,"4484":0,"4485":1,"4486":1,"4487":1,"4488":0,"4489":1,"4490":0,"4491":1,"4492":0,"4493":0,"4494":1,"4495":1,"4496":0,"4497":1,"4498":0,"4499":1,"4500":0,"4501":0,"4502":0,"4503":0,"4504":1,"4505":0,"4506":0,"4507":0,"4508":0,"4509":0,"4510":0,"4511":0,"4512":0,"4513":0,"4514":0,"4515":0,"4516":1,"4517":1,"4518":0,"4519":0,"4520":0,"4521":1,"4522":0,"4523":0,"4524":1,"4525":0,"4526":0,"4527":0,"4528":0,"4529":0,"4530":0,"4531":0,"4532":0,"4533":1,"4534":0,"4535":0,"4536":0,"4537":0,"4538":1,"4539":1,"4540":0,"4541":0,"4542":0,"4543":0,"4544":0,"4545":0,"4546":0,"4547":0,"4548":0,"4549":0,"4550":0,"4551":0,"4552":1,"4553":0,"4554":1,"4555":1,"4556":0,"4557":0,"4558":1,"4559":0,"4560":0,"4561":0,"4562":1,"4563":0,"4564":0,"4565":0,"4566":0,"4567":1,"4568":0,"4569":0,"4570":0,"4571":0,"4572":0,"4573":0,"4574":1,"4575":0,"4576":0,"4577":1,"4578":0,"4579":0,"4580":0,"4581":0,"4582":0,"4583":0,"4584":0,"4585":0,"4586":0,"4587":0,"4588":0,"4589":0,"4590":0,"4591":1,"4592":0,"4593":1,"4594":0,"4595":0,"4596":0,"4597":0,"4598":1,"4599":0,"4600":0,"4601":0,"4602":0,"4603":0,"4604":1,"4605":1,"4606":0,"4607":0,"4608":0,"4609":0,"4610":1,"4611":0,"4612":0,"4613":0,"4614":0,"4615":0,"4616":1,"4617":1,"4618":0,"4619":0,"4620":0,"4621":0,"4622":1,"4623":0,"4624":0,"4625":1,"4626":0,"4627":0,"4628":0,"4629":1,"4630":0,"4631":0,"4632":1,"4633":0,"4634":0,"4635":0,"4636":0,"4637":0,"4638":0,"4639":0,"4640":1,"4641":1,"4642":0,"4643":1,"4644":1,"4645":0,"4646":1,"4647":0,"4648":0,"4649":0,"4650":0,"4651":0,"4652":0,"4653":0,"4654":0,"4655":1,"4656":0,"4657":0,"4658":0,"4659":0,"4660":0,"4661":0,"4662":0,"4663":0,"4664":0,"4665":0,"4666":1,"4667":0,"4668":1,"4669":1,"4670":1,"4671":1,"4672":0,"4673":0,"4674":0,"4675":0,"4676":0,"4677":0,"4678":0,"4679":0,"4680":1,"4681":1,"4682":0,"4683":0,"4684":0,"4685":0,"4686":0,"4687":1,"4688":0,"4689":0,"4690":0,"4691":0,"4692":1,"4693":0,"4694":1,"4695":0,"4696":0,"4697":0,"4698":1,"4699":0,"4700":0,"4701":0,"4702":0,"4703":0,"4704":0,"4705":0,"4706":0,"4707":0,"4708":0,"4709":0,"4710":1,"4711":0,"4712":0,"4713":0,"4714":1,"4715":0,"4716":0,"4717":0,"4718":1,"4719":0,"4720":0,"4721":0,"4722":1,"4723":1,"4724":0,"4725":0,"4726":0,"4727":0,"4728":0,"4729":0,"4730":1,"4731":0,"4732":1,"4733":0,"4734":0,"4735":1,"4736":1,"4737":0,"4738":0,"4739":1,"4740":1,"4741":0,"4742":0,"4743":1,"4744":1,"4745":0,"4746":0,"4747":0,"4748":1,"4749":0,"4750":0,"4751":0,"4752":1,"4753":0,"4754":1,"4755":0,"4756":0,"4757":0,"4758":0,"4759":1,"4760":0,"4761":0,"4762":0,"4763":0,"4764":0,"4765":0,"4766":0,"4767":1,"4768":0,"4769":1,"4770":0,"4771":0,"4772":1,"4773":0,"4774":0,"4775":0,"4776":0,"4777":0,"4778":0,"4779":1,"4780":0,"4781":0,"4782":0,"4783":0,"4784":0,"4785":0,"4786":1,"4787":1,"4788":0,"4789":0,"4790":0,"4791":0,"4792":0,"4793":0,"4794":0,"4795":1,"4796":1,"4797":0,"4798":0,"4799":1,"4800":1,"4801":0,"4802":0,"4803":1,"4804":0,"4805":0,"4806":0,"4807":0,"4808":0,"4809":0,"4810":0,"4811":1,"4812":1,"4813":0,"4814":0,"4815":0,"4816":0,"4817":0,"4818":0,"4819":0,"4820":0,"4821":0,"4822":0,"4823":0,"4824":0,"4825":1,"4826":1,"4827":0,"4828":0,"4829":0,"4830":0,"4831":1,"4832":0,"4833":0,"4834":0,"4835":0,"4836":1,"4837":0,"4838":0,"4839":0,"4840":0,"4841":0,"4842":0,"4843":1,"4844":0,"4845":0,"4846":1,"4847":0,"4848":0,"4849":0,"4850":0,"4851":0,"4852":1,"4853":1,"4854":1,"4855":0,"4856":0,"4857":0,"4858":0,"4859":1,"4860":0,"4861":0,"4862":0,"4863":0,"4864":0,"4865":0,"4866":1,"4867":0,"4868":0,"4869":0,"4870":0,"4871":0,"4872":1,"4873":0,"4874":0,"4875":0,"4876":1,"4877":0,"4878":0,"4879":0,"4880":0,"4881":1,"4882":1,"4883":0,"4884":0,"4885":1,"4886":0,"4887":0,"4888":0,"4889":0,"4890":0,"4891":0,"4892":1,"4893":1,"4894":0,"4895":0,"4896":0,"4897":1,"4898":1,"4899":1,"4900":0,"4901":0,"4902":0,"4903":0,"4904":0,"4905":0,"4906":1,"4907":0,"4908":0,"4909":1,"4910":0,"4911":0,"4912":0,"4913":0,"4914":0,"4915":0,"4916":0,"4917":1,"4918":1,"4919":0,"4920":1,"4921":0,"4922":0,"4923":0,"4924":0,"4925":1,"4926":1,"4927":0,"4928":0,"4929":1,"4930":0,"4931":0,"4932":0,"4933":0,"4934":1,"4935":0,"4936":1,"4937":0,"4938":1,"4939":0,"4940":0,"4941":0,"4942":0,"4943":0,"4944":0,"4945":0,"4946":0,"4947":1,"4948":0,"4949":1,"4950":0,"4951":1,"4952":0,"4953":0,"4954":0,"4955":1,"4956":0,"4957":0,"4958":0,"4959":0,"4960":0,"4961":0,"4962":0,"4963":1,"4964":0,"4965":0,"4966":0,"4967":1,"4968":0,"4969":0,"4970":0,"4971":0,"4972":1,"4973":1,"4974":0,"4975":0,"4976":0,"4977":0,"4978":0,"4979":0,"4980":0,"4981":0,"4982":0,"4983":0,"4984":0,"4985":1,"4986":0,"4987":0,"4988":1,"4989":1,"4990":0,"4991":0,"4992":1,"4993":1,"4994":0,"4995":1,"4996":0,"4997":1,"4998":0,"4999":0,"5000":0,"5001":0,"5002":0,"5003":0,"5004":0,"5005":1,"5006":0,"5007":0,"5008":0,"5009":0,"5010":0,"5011":0,"5012":0,"5013":1,"5014":0,"5015":0,"5016":0,"5017":0,"5018":0,"5019":0,"5020":0,"5021":0,"5022":1,"5023":0,"5024":0,"5025":1,"5026":0,"5027":0,"5028":0,"5029":0,"5030":0,"5031":1,"5032":0,"5033":0,"5034":0,"5035":0,"5036":0,"5037":0,"5038":0,"5039":1,"5040":1,"5041":0,"5042":0,"5043":0,"5044":0,"5045":1,"5046":0,"5047":0,"5048":1,"5049":0,"5050":1,"5051":0,"5052":1,"5053":0,"5054":1,"5055":0,"5056":0,"5057":0,"5058":0,"5059":0,"5060":0,"5061":0,"5062":0,"5063":0,"5064":1,"5065":0,"5066":0,"5067":0,"5068":0,"5069":0,"5070":0,"5071":0,"5072":0,"5073":0,"5074":1,"5075":0,"5076":0,"5077":0,"5078":1,"5079":0,"5080":1,"5081":0,"5082":0,"5083":0,"5084":0,"5085":0,"5086":0,"5087":0,"5088":0,"5089":0,"5090":1,"5091":0,"5092":0,"5093":0,"5094":0,"5095":1,"5096":0,"5097":0,"5098":1,"5099":0,"5100":1,"5101":0,"5102":1,"5103":0,"5104":0,"5105":0,"5106":0,"5107":1,"5108":0,"5109":0,"5110":0,"5111":0,"5112":0,"5113":0,"5114":0,"5115":0,"5116":0,"5117":0,"5118":0,"5119":0,"5120":1,"5121":0,"5122":1,"5123":0,"5124":0,"5125":0,"5126":1,"5127":0,"5128":0,"5129":1,"5130":0,"5131":0,"5132":1,"5133":0,"5134":0,"5135":0,"5136":0,"5137":0,"5138":0,"5139":0,"5140":0,"5141":1,"5142":1,"5143":0,"5144":0,"5145":0,"5146":0,"5147":0,"5148":0,"5149":0,"5150":1,"5151":0,"5152":0,"5153":0,"5154":1,"5155":0,"5156":1,"5157":0,"5158":0,"5159":1,"5160":0,"5161":0,"5162":0,"5163":0,"5164":1,"5165":0,"5166":0,"5167":0,"5168":0,"5169":1,"5170":1,"5171":0,"5172":0,"5173":0,"5174":0,"5175":0,"5176":1,"5177":0,"5178":0,"5179":1,"5180":0,"5181":1,"5182":1,"5183":0,"5184":0,"5185":0,"5186":0,"5187":0,"5188":1,"5189":0,"5190":0,"5191":0,"5192":0,"5193":0,"5194":1,"5195":0,"5196":0,"5197":0,"5198":0,"5199":0,"5200":0,"5201":0,"5202":0,"5203":1,"5204":0,"5205":0,"5206":0,"5207":0,"5208":0,"5209":1,"5210":1,"5211":0,"5212":0,"5213":0,"5214":0,"5215":1,"5216":0,"5217":0,"5218":0,"5219":1,"5220":1,"5221":0,"5222":0,"5223":0,"5224":0,"5225":1,"5226":0,"5227":0,"5228":0,"5229":0,"5230":0,"5231":0,"5232":0,"5233":0,"5234":0,"5235":0,"5236":0,"5237":1,"5238":0,"5239":0,"5240":0,"5241":0,"5242":1,"5243":1,"5244":1,"5245":1,"5246":0,"5247":1,"5248":0,"5249":0,"5250":1,"5251":0,"5252":0,"5253":0,"5254":0,"5255":1,"5256":0,"5257":0,"5258":0,"5259":0,"5260":0,"5261":0,"5262":0,"5263":0,"5264":0,"5265":0,"5266":1,"5267":0,"5268":0,"5269":1,"5270":1,"5271":1,"5272":0,"5273":0,"5274":0,"5275":0,"5276":0,"5277":0,"5278":1,"5279":0,"5280":0,"5281":0,"5282":1,"5283":1,"5284":1,"5285":0,"5286":0,"5287":0,"5288":0,"5289":0,"5290":0,"5291":0,"5292":1,"5293":0,"5294":1,"5295":0,"5296":0,"5297":1,"5298":0,"5299":0,"5300":0,"5301":0,"5302":0,"5303":0,"5304":0,"5305":0,"5306":1,"5307":1,"5308":0,"5309":0,"5310":0,"5311":0,"5312":0,"5313":0,"5314":0,"5315":0,"5316":0,"5317":1,"5318":0,"5319":0,"5320":0,"5321":1,"5322":0,"5323":0,"5324":1,"5325":1,"5326":1,"5327":1,"5328":0,"5329":0,"5330":0,"5331":1,"5332":1,"5333":0,"5334":0,"5335":0,"5336":1,"5337":0,"5338":1,"5339":0,"5340":0,"5341":1,"5342":0,"5343":0,"5344":1,"5345":1,"5346":1,"5347":1,"5348":0,"5349":0,"5350":0,"5351":1,"5352":0,"5353":0,"5354":0,"5355":0,"5356":0,"5357":1,"5358":1,"5359":1,"5360":0,"5361":0,"5362":1,"5363":0,"5364":1,"5365":0,"5366":0,"5367":0,"5368":1,"5369":0,"5370":0,"5371":0,"5372":0,"5373":1,"5374":0,"5375":0,"5376":0,"5377":0,"5378":0,"5379":0,"5380":0,"5381":0,"5382":0,"5383":1,"5384":1,"5385":0,"5386":0,"5387":1,"5388":0,"5389":0,"5390":0,"5391":1,"5392":0,"5393":0,"5394":0,"5395":0,"5396":0,"5397":1,"5398":1,"5399":1,"5400":0,"5401":0,"5402":0,"5403":0,"5404":1,"5405":0,"5406":0,"5407":1,"5408":0,"5409":0,"5410":0,"5411":1,"5412":1,"5413":0,"5414":0,"5415":0,"5416":0,"5417":0,"5418":0,"5419":0,"5420":0,"5421":0,"5422":0,"5423":0,"5424":0,"5425":1,"5426":0,"5427":0,"5428":0,"5429":0,"5430":0,"5431":0,"5432":0,"5433":1,"5434":0,"5435":0,"5436":0,"5437":0,"5438":0,"5439":0,"5440":0,"5441":0,"5442":0,"5443":0,"5444":1,"5445":0,"5446":0,"5447":0,"5448":0,"5449":0,"5450":0,"5451":1,"5452":0,"5453":0,"5454":0,"5455":0,"5456":0,"5457":0,"5458":0,"5459":0,"5460":0,"5461":0,"5462":0,"5463":0,"5464":0,"5465":1,"5466":0,"5467":0,"5468":1,"5469":0,"5470":0,"5471":0,"5472":1,"5473":0,"5474":0,"5475":0,"5476":0,"5477":1,"5478":0,"5479":1,"5480":1,"5481":0,"5482":0,"5483":0,"5484":0,"5485":0,"5486":1,"5487":0,"5488":0,"5489":0,"5490":0,"5491":0,"5492":0,"5493":0,"5494":0,"5495":0,"5496":0,"5497":0,"5498":0,"5499":0,"5500":0,"5501":0,"5502":0,"5503":0,"5504":0,"5505":1,"5506":0,"5507":0,"5508":0,"5509":0,"5510":1,"5511":0,"5512":0,"5513":0,"5514":0,"5515":0,"5516":0,"5517":0,"5518":0,"5519":1,"5520":0,"5521":0,"5522":0,"5523":0,"5524":0,"5525":0,"5526":0,"5527":0,"5528":0,"5529":1,"5530":0,"5531":0,"5532":0,"5533":1,"5534":0,"5535":1,"5536":1,"5537":1,"5538":0,"5539":0,"5540":0,"5541":1,"5542":1,"5543":0,"5544":0,"5545":0,"5546":0,"5547":0,"5548":0,"5549":0,"5550":0,"5551":0,"5552":0,"5553":1,"5554":1,"5555":0,"5556":1,"5557":1,"5558":0,"5559":0,"5560":0,"5561":0,"5562":1,"5563":0,"5564":0,"5565":1,"5566":0,"5567":0,"5568":1,"5569":1,"5570":1,"5571":0,"5572":0,"5573":0,"5574":0,"5575":0,"5576":0,"5577":1,"5578":0,"5579":0,"5580":0,"5581":0,"5582":0,"5583":0,"5584":0,"5585":1,"5586":0,"5587":1,"5588":0,"5589":0,"5590":1,"5591":1,"5592":0,"5593":1,"5594":0,"5595":0,"5596":0,"5597":0,"5598":1,"5599":1,"5600":0,"5601":0,"5602":0,"5603":0,"5604":1,"5605":0,"5606":0,"5607":0,"5608":0,"5609":1,"5610":0,"5611":0,"5612":0,"5613":0,"5614":0,"5615":0,"5616":0,"5617":0,"5618":0,"5619":0,"5620":0,"5621":0,"5622":1,"5623":0,"5624":1,"5625":0,"5626":0,"5627":0,"5628":1,"5629":1,"5630":0,"5631":0,"5632":0,"5633":1,"5634":0,"5635":0,"5636":0,"5637":0,"5638":0,"5639":0,"5640":0,"5641":0,"5642":0,"5643":1,"5644":0,"5645":0,"5646":1,"5647":1,"5648":0,"5649":0,"5650":0,"5651":0,"5652":0,"5653":0,"5654":0,"5655":0,"5656":1,"5657":1,"5658":0,"5659":0,"5660":0,"5661":1,"5662":0,"5663":0,"5664":0,"5665":1,"5666":0,"5667":0,"5668":1,"5669":0,"5670":0,"5671":0,"5672":0,"5673":0,"5674":0,"5675":0,"5676":0,"5677":1,"5678":1,"5679":0,"5680":0,"5681":1,"5682":0,"5683":0,"5684":0,"5685":0,"5686":1,"5687":0,"5688":0,"5689":0,"5690":0,"5691":0,"5692":0,"5693":1,"5694":0,"5695":0,"5696":0,"5697":0,"5698":1,"5699":1,"5700":0,"5701":0,"5702":0,"5703":0,"5704":1,"5705":0,"5706":0,"5707":0,"5708":1,"5709":0,"5710":0,"5711":0,"5712":0,"5713":0,"5714":1,"5715":0,"5716":0,"5717":1,"5718":0,"5719":1,"5720":1,"5721":0,"5722":0,"5723":1,"5724":1,"5725":0,"5726":0,"5727":0,"5728":1,"5729":0,"5730":0,"5731":0,"5732":0,"5733":1,"5734":0,"5735":0,"5736":0,"5737":0,"5738":0,"5739":0,"5740":1,"5741":1,"5742":0,"5743":0,"5744":0,"5745":0,"5746":0,"5747":1,"5748":1,"5749":0,"5750":0,"5751":0,"5752":0,"5753":0,"5754":0,"5755":0,"5756":0,"5757":0,"5758":0,"5759":0,"5760":1,"5761":0,"5762":0,"5763":0,"5764":0,"5765":0,"5766":0,"5767":0,"5768":0,"5769":0,"5770":0,"5771":0,"5772":0,"5773":0,"5774":0,"5775":0,"5776":0,"5777":0,"5778":1,"5779":0,"5780":1,"5781":1,"5782":1,"5783":0,"5784":0,"5785":0,"5786":1,"5787":0,"5788":1,"5789":0,"5790":0,"5791":0,"5792":0,"5793":0,"5794":0,"5795":1,"5796":0,"5797":0,"5798":0,"5799":0,"5800":0,"5801":0,"5802":0,"5803":0,"5804":0,"5805":0,"5806":0,"5807":1,"5808":0,"5809":0,"5810":0,"5811":0,"5812":0,"5813":1,"5814":0,"5815":0,"5816":0,"5817":1,"5818":0,"5819":0,"5820":0,"5821":1,"5822":0,"5823":1,"5824":0,"5825":1,"5826":0,"5827":0,"5828":1,"5829":0,"5830":1,"5831":0,"5832":0,"5833":0,"5834":0,"5835":0,"5836":1,"5837":0,"5838":0,"5839":0,"5840":0,"5841":1,"5842":0,"5843":0,"5844":0,"5845":0,"5846":0,"5847":0,"5848":0,"5849":0,"5850":0,"5851":0,"5852":0,"5853":0,"5854":0,"5855":0,"5856":0,"5857":0,"5858":0,"5859":1,"5860":0,"5861":0,"5862":1,"5863":0,"5864":0,"5865":1,"5866":1,"5867":0,"5868":0,"5869":0,"5870":0,"5871":0,"5872":0,"5873":0,"5874":0,"5875":0,"5876":0,"5877":0,"5878":0,"5879":1,"5880":0,"5881":0,"5882":0,"5883":1,"5884":0,"5885":0,"5886":1,"5887":0,"5888":0,"5889":1,"5890":0,"5891":0,"5892":1,"5893":0,"5894":0,"5895":0,"5896":1,"5897":0,"5898":1,"5899":1,"5900":0,"5901":0,"5902":0,"5903":0,"5904":0,"5905":1,"5906":0,"5907":0,"5908":0,"5909":0,"5910":1,"5911":1,"5912":0,"5913":1,"5914":1,"5915":0,"5916":0,"5917":0,"5918":0,"5919":0,"5920":1,"5921":0,"5922":0,"5923":0,"5924":0,"5925":0,"5926":0,"5927":0,"5928":0,"5929":0,"5930":0,"5931":0,"5932":0,"5933":0,"5934":1,"5935":1,"5936":1,"5937":0,"5938":0,"5939":0,"5940":0,"5941":1,"5942":0,"5943":0,"5944":1,"5945":0,"5946":1,"5947":0,"5948":0,"5949":0,"5950":0,"5951":0,"5952":1,"5953":1,"5954":0,"5955":1,"5956":0,"5957":0,"5958":0,"5959":0,"5960":0,"5961":0,"5962":0,"5963":0,"5964":0,"5965":0,"5966":0,"5967":0,"5968":0,"5969":0,"5970":0,"5971":1,"5972":0,"5973":0,"5974":1,"5975":0,"5976":1,"5977":0,"5978":1,"5979":0,"5980":0,"5981":0,"5982":1,"5983":0,"5984":0,"5985":1,"5986":1,"5987":0,"5988":0,"5989":0,"5990":0,"5991":0,"5992":0,"5993":0,"5994":0,"5995":1,"5996":0,"5997":0,"5998":0,"5999":0,"6000":0,"6001":0,"6002":1,"6003":1,"6004":0,"6005":0,"6006":0,"6007":0,"6008":0,"6009":1,"6010":0,"6011":0,"6012":0,"6013":0,"6014":0,"6015":0,"6016":1,"6017":0,"6018":0,"6019":0,"6020":0,"6021":0,"6022":0,"6023":0,"6024":0,"6025":0,"6026":0,"6027":1,"6028":0,"6029":0,"6030":0,"6031":1,"6032":1,"6033":1,"6034":1,"6035":0,"6036":0,"6037":0,"6038":0,"6039":1,"6040":0,"6041":0,"6042":0,"6043":1,"6044":1,"6045":0,"6046":0,"6047":0,"6048":1,"6049":0,"6050":0,"6051":1,"6052":0,"6053":0,"6054":0,"6055":0,"6056":0,"6057":0,"6058":0,"6059":0,"6060":0,"6061":0,"6062":0,"6063":0,"6064":1,"6065":1,"6066":0,"6067":0,"6068":1,"6069":0,"6070":1,"6071":0,"6072":1,"6073":0,"6074":0,"6075":0,"6076":1,"6077":0,"6078":0,"6079":1,"6080":0,"6081":0,"6082":0,"6083":0,"6084":0,"6085":0,"6086":0,"6087":1,"6088":0,"6089":0,"6090":0,"6091":1,"6092":0,"6093":0,"6094":0,"6095":0,"6096":0,"6097":0,"6098":0,"6099":0,"6100":0,"6101":0,"6102":0,"6103":0,"6104":0,"6105":0,"6106":1,"6107":0,"6108":0,"6109":0,"6110":0,"6111":0,"6112":0,"6113":0,"6114":0,"6115":1,"6116":0,"6117":0,"6118":1,"6119":1,"6120":0,"6121":0,"6122":0,"6123":1,"6124":0,"6125":0,"6126":0,"6127":0,"6128":0,"6129":0,"6130":0,"6131":1,"6132":0,"6133":1,"6134":0,"6135":0,"6136":0,"6137":1,"6138":0,"6139":0,"6140":1,"6141":0,"6142":0,"6143":1,"6144":1,"6145":0,"6146":0,"6147":0,"6148":0,"6149":0,"6150":1,"6151":0,"6152":1,"6153":1,"6154":0,"6155":0,"6156":0,"6157":0,"6158":0,"6159":0,"6160":0,"6161":0,"6162":0,"6163":0,"6164":0,"6165":0,"6166":1,"6167":1,"6168":0,"6169":0,"6170":0,"6171":0,"6172":0,"6173":0,"6174":0,"6175":0,"6176":0,"6177":1,"6178":0,"6179":1,"6180":1,"6181":0,"6182":0,"6183":1,"6184":1,"6185":1,"6186":0,"6187":0,"6188":1,"6189":0,"6190":1,"6191":1,"6192":0,"6193":0,"6194":1,"6195":0,"6196":0,"6197":0,"6198":0,"6199":1,"6200":1,"6201":1,"6202":0,"6203":1,"6204":1,"6205":0,"6206":0,"6207":0,"6208":1,"6209":0,"6210":0,"6211":0,"6212":1,"6213":0,"6214":1,"6215":1,"6216":0,"6217":0,"6218":0,"6219":0,"6220":1,"6221":0,"6222":0,"6223":0,"6224":1,"6225":1,"6226":1,"6227":1,"6228":0,"6229":0,"6230":0,"6231":1,"6232":0,"6233":1,"6234":0,"6235":0,"6236":0,"6237":1,"6238":1,"6239":0,"6240":0,"6241":0,"6242":0,"6243":0,"6244":0,"6245":1,"6246":1,"6247":1,"6248":0,"6249":0,"6250":0,"6251":1,"6252":0,"6253":0,"6254":0,"6255":1,"6256":1,"6257":1,"6258":0,"6259":0,"6260":1,"6261":1,"6262":1,"6263":0,"6264":1,"6265":0,"6266":1,"6267":0,"6268":0,"6269":0,"6270":1,"6271":1,"6272":1,"6273":0,"6274":1,"6275":1,"6276":0,"6277":0,"6278":0,"6279":1,"6280":0,"6281":0,"6282":0,"6283":1,"6284":0,"6285":0,"6286":0,"6287":0,"6288":0,"6289":0,"6290":0,"6291":1,"6292":0,"6293":0,"6294":1,"6295":0,"6296":0,"6297":0,"6298":0,"6299":1,"6300":0,"6301":1,"6302":0,"6303":0,"6304":0,"6305":0,"6306":0,"6307":0,"6308":1,"6309":1,"6310":0,"6311":0,"6312":0,"6313":0,"6314":0,"6315":1,"6316":0,"6317":0,"6318":0,"6319":0,"6320":1,"6321":0,"6322":0,"6323":1,"6324":0,"6325":0,"6326":0,"6327":0,"6328":0,"6329":0,"6330":0,"6331":0,"6332":0,"6333":0,"6334":0,"6335":0,"6336":0,"6337":1,"6338":1,"6339":0,"6340":0,"6341":1,"6342":0,"6343":0,"6344":0,"6345":1,"6346":1,"6347":0,"6348":0,"6349":0,"6350":0,"6351":1,"6352":1,"6353":0,"6354":1,"6355":1,"6356":0,"6357":0,"6358":0,"6359":0,"6360":0,"6361":0,"6362":0,"6363":0,"6364":0,"6365":1,"6366":0,"6367":1,"6368":0,"6369":0,"6370":0,"6371":1,"6372":1,"6373":0,"6374":1,"6375":0,"6376":0,"6377":1,"6378":0,"6379":0,"6380":1,"6381":0,"6382":0,"6383":0,"6384":1,"6385":1,"6386":0,"6387":0,"6388":0,"6389":0,"6390":0,"6391":0,"6392":0,"6393":0,"6394":0,"6395":0,"6396":0,"6397":0,"6398":0,"6399":1,"6400":1,"6401":1,"6402":1,"6403":0,"6404":0,"6405":0,"6406":1,"6407":0,"6408":1,"6409":0,"6410":1,"6411":1,"6412":1,"6413":0,"6414":0,"6415":0,"6416":1,"6417":0,"6418":0,"6419":1,"6420":0,"6421":1,"6422":0,"6423":1,"6424":0,"6425":0,"6426":0,"6427":0,"6428":0,"6429":0,"6430":0,"6431":1,"6432":0,"6433":0,"6434":0,"6435":1,"6436":0,"6437":0,"6438":0,"6439":0,"6440":0,"6441":0,"6442":1,"6443":0,"6444":0,"6445":0,"6446":0,"6447":1,"6448":1,"6449":0,"6450":1,"6451":1,"6452":1,"6453":1,"6454":0,"6455":0,"6456":0,"6457":0,"6458":0,"6459":0,"6460":0,"6461":0,"6462":0,"6463":1,"6464":0,"6465":0,"6466":1,"6467":0,"6468":0,"6469":0,"6470":0,"6471":0,"6472":0,"6473":0,"6474":1,"6475":0,"6476":0,"6477":0,"6478":0,"6479":1,"6480":0,"6481":0,"6482":1,"6483":0,"6484":0,"6485":0,"6486":0,"6487":0,"6488":0,"6489":0,"6490":1,"6491":0,"6492":0,"6493":1,"6494":1,"6495":1,"6496":1,"6497":0,"6498":0,"6499":0,"6500":1,"6501":0,"6502":0,"6503":0,"6504":0,"6505":0,"6506":0,"6507":0,"6508":0,"6509":0,"6510":1,"6511":1,"6512":1,"6513":0,"6514":0,"6515":0,"6516":0,"6517":1,"6518":0,"6519":0,"6520":0,"6521":0,"6522":1,"6523":0,"6524":0,"6525":0,"6526":0,"6527":0,"6528":1,"6529":0,"6530":0,"6531":0,"6532":0,"6533":0,"6534":1,"6535":1,"6536":1,"6537":0,"6538":0,"6539":1,"6540":0,"6541":0,"6542":0,"6543":0,"6544":1,"6545":0,"6546":0,"6547":0,"6548":1,"6549":0,"6550":1,"6551":0,"6552":1,"6553":0,"6554":0,"6555":0,"6556":1,"6557":0,"6558":0,"6559":0,"6560":1,"6561":0,"6562":0,"6563":0,"6564":0,"6565":0,"6566":0,"6567":1,"6568":0,"6569":0,"6570":0,"6571":1,"6572":0,"6573":1,"6574":1,"6575":0,"6576":0,"6577":0,"6578":0,"6579":0,"6580":0,"6581":1,"6582":1,"6583":1,"6584":1,"6585":1,"6586":1,"6587":1,"6588":0,"6589":0,"6590":1,"6591":0,"6592":1,"6593":0,"6594":0,"6595":0,"6596":1,"6597":1,"6598":0,"6599":0,"6600":0,"6601":0,"6602":0,"6603":0,"6604":0,"6605":1,"6606":0,"6607":1,"6608":0,"6609":1,"6610":0,"6611":0,"6612":0,"6613":0,"6614":1,"6615":0,"6616":0,"6617":0,"6618":0,"6619":0,"6620":0,"6621":0,"6622":0,"6623":1,"6624":1,"6625":0,"6626":0,"6627":0,"6628":0,"6629":0,"6630":0,"6631":0,"6632":1,"6633":0,"6634":1,"6635":0,"6636":0,"6637":0,"6638":0,"6639":1,"6640":0,"6641":1,"6642":1,"6643":1,"6644":0,"6645":0,"6646":1,"6647":1,"6648":0,"6649":0,"6650":0,"6651":0,"6652":0,"6653":1,"6654":0,"6655":0,"6656":1,"6657":0,"6658":0,"6659":0,"6660":0,"6661":0,"6662":1,"6663":0,"6664":0,"6665":0,"6666":1,"6667":0,"6668":0,"6669":0,"6670":0,"6671":0,"6672":0,"6673":0,"6674":0,"6675":0,"6676":0,"6677":0,"6678":0,"6679":0,"6680":0,"6681":0,"6682":0,"6683":0,"6684":1,"6685":0,"6686":0,"6687":0,"6688":0,"6689":0,"6690":0,"6691":0,"6692":0,"6693":0,"6694":0,"6695":0,"6696":0,"6697":0,"6698":1,"6699":1,"6700":0,"6701":0,"6702":1,"6703":0,"6704":1,"6705":0,"6706":0,"6707":0,"6708":0,"6709":1,"6710":1,"6711":0,"6712":0,"6713":0,"6714":0,"6715":0,"6716":0,"6717":0,"6718":0,"6719":1,"6720":1,"6721":0,"6722":0,"6723":0,"6724":1,"6725":0,"6726":0,"6727":0,"6728":1,"6729":1,"6730":0,"6731":0,"6732":0,"6733":1,"6734":1,"6735":1,"6736":0,"6737":0,"6738":0,"6739":0,"6740":0,"6741":0,"6742":0,"6743":1,"6744":0,"6745":0,"6746":0,"6747":0,"6748":0,"6749":0,"6750":0,"6751":0,"6752":0,"6753":0,"6754":0,"6755":1,"6756":1,"6757":0,"6758":1,"6759":0,"6760":0,"6761":0,"6762":0,"6763":0,"6764":1,"6765":0,"6766":0,"6767":0,"6768":0,"6769":1,"6770":0,"6771":0,"6772":1,"6773":0,"6774":0,"6775":1,"6776":0,"6777":0,"6778":1,"6779":0,"6780":0,"6781":0,"6782":0,"6783":0,"6784":0,"6785":0,"6786":0,"6787":0,"6788":1,"6789":0,"6790":0,"6791":0,"6792":0,"6793":0,"6794":1,"6795":0,"6796":1,"6797":0,"6798":0,"6799":1,"6800":0,"6801":0,"6802":1,"6803":1,"6804":0,"6805":0,"6806":0,"6807":0,"6808":0,"6809":0,"6810":0,"6811":1,"6812":1,"6813":1,"6814":1,"6815":1,"6816":0,"6817":1,"6818":0,"6819":0,"6820":0,"6821":0,"6822":0,"6823":1,"6824":1,"6825":0,"6826":0,"6827":0,"6828":0,"6829":0,"6830":0,"6831":1,"6832":0,"6833":0,"6834":1,"6835":0,"6836":0,"6837":1,"6838":1,"6839":0,"6840":0,"6841":0,"6842":0,"6843":0,"6844":0,"6845":0,"6846":0,"6847":0,"6848":0,"6849":0,"6850":1,"6851":0,"6852":0,"6853":0,"6854":0,"6855":0,"6856":1,"6857":0,"6858":0,"6859":0,"6860":1,"6861":1,"6862":0,"6863":0,"6864":0,"6865":0,"6866":0,"6867":0,"6868":0,"6869":0,"6870":0,"6871":0,"6872":0,"6873":1,"6874":0,"6875":1,"6876":0,"6877":0,"6878":0,"6879":0,"6880":0,"6881":0,"6882":0,"6883":0,"6884":1,"6885":1,"6886":0,"6887":0,"6888":0,"6889":0,"6890":0,"6891":1,"6892":1,"6893":1,"6894":0,"6895":1,"6896":1,"6897":0,"6898":0,"6899":0,"6900":0,"6901":0,"6902":0,"6903":0,"6904":0,"6905":0,"6906":0,"6907":0,"6908":0,"6909":1,"6910":0,"6911":0,"6912":1,"6913":0,"6914":1,"6915":1,"6916":1,"6917":1,"6918":0,"6919":0,"6920":0,"6921":0,"6922":0,"6923":1,"6924":0,"6925":0,"6926":0,"6927":0,"6928":0,"6929":0,"6930":1,"6931":0,"6932":1,"6933":0,"6934":0,"6935":0,"6936":1,"6937":0,"6938":0,"6939":0,"6940":1,"6941":0,"6942":0,"6943":0,"6944":0,"6945":0,"6946":0,"6947":0,"6948":0,"6949":0,"6950":0,"6951":0,"6952":0,"6953":1,"6954":0,"6955":0,"6956":0,"6957":0,"6958":1,"6959":0,"6960":0,"6961":0,"6962":0,"6963":0,"6964":1,"6965":1,"6966":0,"6967":1,"6968":0,"6969":1,"6970":0,"6971":0,"6972":0,"6973":1,"6974":0,"6975":0,"6976":0,"6977":1,"6978":1,"6979":1,"6980":0,"6981":0,"6982":0,"6983":0,"6984":0,"6985":0,"6986":1,"6987":0,"6988":0,"6989":0,"6990":0,"6991":0,"6992":0,"6993":0,"6994":0,"6995":0,"6996":0,"6997":0,"6998":0,"6999":0,"7000":0,"7001":0,"7002":0,"7003":0,"7004":0,"7005":0,"7006":0,"7007":1,"7008":0,"7009":0,"7010":0,"7011":1,"7012":0,"7013":1,"7014":0,"7015":1,"7016":1,"7017":0,"7018":0,"7019":0,"7020":0,"7021":0,"7022":0,"7023":0,"7024":1,"7025":0,"7026":0,"7027":0,"7028":1,"7029":1,"7030":1,"7031":0,"7032":0,"7033":0,"7034":1,"7035":0,"7036":0,"7037":0,"7038":0,"7039":0,"7040":0,"7041":0,"7042":0,"7043":0,"7044":1,"7045":0,"7046":0,"7047":0,"7048":1,"7049":1,"7050":0,"7051":1,"7052":0,"7053":0,"7054":1,"7055":0,"7056":0,"7057":0,"7058":0,"7059":0,"7060":0,"7061":0,"7062":0,"7063":0,"7064":0,"7065":1,"7066":0,"7067":0,"7068":1,"7069":1,"7070":0,"7071":0,"7072":0,"7073":0,"7074":1,"7075":0,"7076":1,"7077":1,"7078":0,"7079":1,"7080":0,"7081":0,"7082":0,"7083":0,"7084":0,"7085":0,"7086":1,"7087":0,"7088":0,"7089":0,"7090":0,"7091":0,"7092":1,"7093":0,"7094":0,"7095":1,"7096":0,"7097":0,"7098":0,"7099":0,"7100":1,"7101":1,"7102":1,"7103":0,"7104":0,"7105":0,"7106":0,"7107":0,"7108":0,"7109":0,"7110":1,"7111":1,"7112":1,"7113":0,"7114":0,"7115":0,"7116":0,"7117":1,"7118":0,"7119":1,"7120":0,"7121":1,"7122":0,"7123":1,"7124":0,"7125":0,"7126":0,"7127":0,"7128":1,"7129":0,"7130":1,"7131":0,"7132":0,"7133":0,"7134":0,"7135":0,"7136":1,"7137":1,"7138":1,"7139":0,"7140":0,"7141":0,"7142":0,"7143":1,"7144":0,"7145":0,"7146":0,"7147":0,"7148":1,"7149":0,"7150":0,"7151":0,"7152":0,"7153":1,"7154":0,"7155":0,"7156":0,"7157":1,"7158":0,"7159":0,"7160":0,"7161":0,"7162":0,"7163":0,"7164":0,"7165":0,"7166":1,"7167":0,"7168":0,"7169":0,"7170":0,"7171":0,"7172":0,"7173":0,"7174":0,"7175":1,"7176":0,"7177":1,"7178":0,"7179":0,"7180":0,"7181":0,"7182":1,"7183":0,"7184":0,"7185":0,"7186":0,"7187":0,"7188":0,"7189":0,"7190":0,"7191":0,"7192":0,"7193":0,"7194":0,"7195":0,"7196":0,"7197":0,"7198":0,"7199":1,"7200":0,"7201":0,"7202":0,"7203":1,"7204":0,"7205":0,"7206":1,"7207":0,"7208":0,"7209":0,"7210":0,"7211":1,"7212":0,"7213":0,"7214":0,"7215":1,"7216":0,"7217":0,"7218":0,"7219":0,"7220":0,"7221":0,"7222":0,"7223":0,"7224":1,"7225":0,"7226":0,"7227":0,"7228":0,"7229":0,"7230":0,"7231":0,"7232":0,"7233":0,"7234":1,"7235":1,"7236":0,"7237":1,"7238":0,"7239":0,"7240":1,"7241":0,"7242":0,"7243":1,"7244":0,"7245":0,"7246":0,"7247":0,"7248":1,"7249":0,"7250":0,"7251":0,"7252":0,"7253":0,"7254":0,"7255":0,"7256":1,"7257":0,"7258":0,"7259":1,"7260":1,"7261":0,"7262":0,"7263":0,"7264":0,"7265":0,"7266":0,"7267":0,"7268":1,"7269":1,"7270":1,"7271":1,"7272":0,"7273":1,"7274":0,"7275":0,"7276":0,"7277":1,"7278":0,"7279":1,"7280":1,"7281":0,"7282":0,"7283":1,"7284":1,"7285":0,"7286":0,"7287":0,"7288":1,"7289":0,"7290":0,"7291":0,"7292":0,"7293":0,"7294":0,"7295":0,"7296":0,"7297":1,"7298":0,"7299":0,"7300":1,"7301":0,"7302":0,"7303":0,"7304":1,"7305":0,"7306":0,"7307":0,"7308":0,"7309":0,"7310":0,"7311":0,"7312":0,"7313":1,"7314":0,"7315":0,"7316":0,"7317":0,"7318":0,"7319":0,"7320":0,"7321":1,"7322":0,"7323":1,"7324":0,"7325":0,"7326":0,"7327":1,"7328":1,"7329":0,"7330":0,"7331":0,"7332":0,"7333":0,"7334":0,"7335":0,"7336":0,"7337":1,"7338":0,"7339":0,"7340":0,"7341":0,"7342":0,"7343":0,"7344":0,"7345":1,"7346":0,"7347":1,"7348":1,"7349":0,"7350":0,"7351":1,"7352":0,"7353":1,"7354":0,"7355":0,"7356":0,"7357":1,"7358":1,"7359":0,"7360":0,"7361":1,"7362":0,"7363":0,"7364":1,"7365":0,"7366":0,"7367":0,"7368":0,"7369":0,"7370":0,"7371":0,"7372":0,"7373":0,"7374":1,"7375":0,"7376":0,"7377":0,"7378":1,"7379":0,"7380":0,"7381":1,"7382":0,"7383":1,"7384":0,"7385":1,"7386":0,"7387":0,"7388":1,"7389":0,"7390":0,"7391":0,"7392":0,"7393":0,"7394":0,"7395":1,"7396":1,"7397":0,"7398":0,"7399":1,"7400":0,"7401":1,"7402":0,"7403":0,"7404":0,"7405":0,"7406":0,"7407":0,"7408":1,"7409":1,"7410":0,"7411":0,"7412":0,"7413":1,"7414":0,"7415":0,"7416":0,"7417":0,"7418":0,"7419":0,"7420":0,"7421":0,"7422":1,"7423":1,"7424":0,"7425":0,"7426":0,"7427":1,"7428":0,"7429":0,"7430":0,"7431":1,"7432":0,"7433":0,"7434":0,"7435":0,"7436":0,"7437":0,"7438":1,"7439":0,"7440":0,"7441":0,"7442":1,"7443":0,"7444":0,"7445":1,"7446":1,"7447":1,"7448":0,"7449":0,"7450":0,"7451":1,"7452":0,"7453":1,"7454":0,"7455":1,"7456":0,"7457":0,"7458":0,"7459":0,"7460":0,"7461":0,"7462":1,"7463":0,"7464":1,"7465":0,"7466":0,"7467":1,"7468":0,"7469":0,"7470":0,"7471":0,"7472":0,"7473":1,"7474":0,"7475":0,"7476":0,"7477":0,"7478":0,"7479":1,"7480":0,"7481":0,"7482":0,"7483":0,"7484":0,"7485":0,"7486":0,"7487":0,"7488":0,"7489":0,"7490":0,"7491":0,"7492":0,"7493":0,"7494":1,"7495":0,"7496":0,"7497":0,"7498":0,"7499":0,"7500":0,"7501":0,"7502":0,"7503":0,"7504":0,"7505":0,"7506":1,"7507":1,"7508":0,"7509":0,"7510":1,"7511":0,"7512":0,"7513":1,"7514":1,"7515":1,"7516":1,"7517":0,"7518":0,"7519":1,"7520":1,"7521":0,"7522":1,"7523":0,"7524":0,"7525":0,"7526":0,"7527":0,"7528":1,"7529":0,"7530":0,"7531":0,"7532":0,"7533":0,"7534":1,"7535":0,"7536":1,"7537":0,"7538":0,"7539":1,"7540":0,"7541":0,"7542":0,"7543":0,"7544":0,"7545":1,"7546":0,"7547":0,"7548":0,"7549":0,"7550":0,"7551":0,"7552":0,"7553":0,"7554":0,"7555":0,"7556":0,"7557":0,"7558":1,"7559":0,"7560":1,"7561":0,"7562":1,"7563":0,"7564":1,"7565":0,"7566":0,"7567":0,"7568":0,"7569":0,"7570":0,"7571":0,"7572":0,"7573":0,"7574":0,"7575":1,"7576":0,"7577":1,"7578":1,"7579":0,"7580":0,"7581":0,"7582":0,"7583":0,"7584":0,"7585":0,"7586":0,"7587":0,"7588":1,"7589":0,"7590":0,"7591":0,"7592":0,"7593":0,"7594":0,"7595":0,"7596":0,"7597":0,"7598":1,"7599":1,"7600":1,"7601":0,"7602":0,"7603":0,"7604":0,"7605":0,"7606":0,"7607":1,"7608":0,"7609":0,"7610":0,"7611":0,"7612":0,"7613":1,"7614":0,"7615":1,"7616":0,"7617":0,"7618":1,"7619":0,"7620":0,"7621":0,"7622":1,"7623":0,"7624":0,"7625":1,"7626":1,"7627":0,"7628":0,"7629":0,"7630":0,"7631":0,"7632":0,"7633":0,"7634":0,"7635":1,"7636":1,"7637":1,"7638":0,"7639":0,"7640":1,"7641":0,"7642":0,"7643":1,"7644":0,"7645":0,"7646":0,"7647":0,"7648":0,"7649":0,"7650":0,"7651":1,"7652":0,"7653":0,"7654":0,"7655":1,"7656":1,"7657":0,"7658":0,"7659":0,"7660":0,"7661":0,"7662":0,"7663":0,"7664":0,"7665":1,"7666":1,"7667":0,"7668":0,"7669":0,"7670":1,"7671":0,"7672":0,"7673":0,"7674":0,"7675":0,"7676":1,"7677":0,"7678":1,"7679":0,"7680":0,"7681":0,"7682":0,"7683":0,"7684":0,"7685":0,"7686":0,"7687":0,"7688":0,"7689":0,"7690":0,"7691":1,"7692":1,"7693":0,"7694":0,"7695":0,"7696":1,"7697":1,"7698":0,"7699":0,"7700":1,"7701":0,"7702":0,"7703":1,"7704":0,"7705":0,"7706":0,"7707":0,"7708":0,"7709":0,"7710":0,"7711":0,"7712":0,"7713":0,"7714":0,"7715":1,"7716":0,"7717":0,"7718":0,"7719":0,"7720":0,"7721":0,"7722":1,"7723":1,"7724":0,"7725":0,"7726":0,"7727":0,"7728":1,"7729":0,"7730":0,"7731":1,"7732":0,"7733":0,"7734":0,"7735":0,"7736":0,"7737":0,"7738":0,"7739":0,"7740":0,"7741":0,"7742":1,"7743":1,"7744":0,"7745":0,"7746":0,"7747":1,"7748":0,"7749":0,"7750":0,"7751":0,"7752":0,"7753":0,"7754":0,"7755":0,"7756":0,"7757":0,"7758":0,"7759":0,"7760":0,"7761":0,"7762":0,"7763":0,"7764":1,"7765":1,"7766":0,"7767":0,"7768":0,"7769":1,"7770":1,"7771":0,"7772":0,"7773":1,"7774":1,"7775":0,"7776":0,"7777":1,"7778":1,"7779":0,"7780":0,"7781":1,"7782":0,"7783":1,"7784":0,"7785":0,"7786":0,"7787":0,"7788":0,"7789":0,"7790":0,"7791":0,"7792":0,"7793":0,"7794":0,"7795":1,"7796":1,"7797":0,"7798":0,"7799":0,"7800":0,"7801":0,"7802":1,"7803":0,"7804":0,"7805":0,"7806":0,"7807":0,"7808":0,"7809":0,"7810":1,"7811":0,"7812":0,"7813":0,"7814":0,"7815":0,"7816":1,"7817":0,"7818":0,"7819":0,"7820":0,"7821":0,"7822":0,"7823":0,"7824":0,"7825":1,"7826":0,"7827":1,"7828":1,"7829":0,"7830":0,"7831":0,"7832":0,"7833":0,"7834":1,"7835":0,"7836":0,"7837":0,"7838":0,"7839":0,"7840":0,"7841":0,"7842":1,"7843":1,"7844":0,"7845":0,"7846":0,"7847":1,"7848":0,"7849":0,"7850":0,"7851":0,"7852":0,"7853":0,"7854":0,"7855":0,"7856":0,"7857":0,"7858":0,"7859":0,"7860":0,"7861":0,"7862":0,"7863":0,"7864":0,"7865":0,"7866":1,"7867":0,"7868":0,"7869":1,"7870":1,"7871":0,"7872":0,"7873":1,"7874":0,"7875":1,"7876":0,"7877":0,"7878":0,"7879":0,"7880":1,"7881":0,"7882":0,"7883":0,"7884":0,"7885":0,"7886":1,"7887":0,"7888":0,"7889":1,"7890":1,"7891":1,"7892":1,"7893":0,"7894":0,"7895":0,"7896":0,"7897":0,"7898":0,"7899":0,"7900":1,"7901":1,"7902":0,"7903":1,"7904":0,"7905":0,"7906":1,"7907":1,"7908":0,"7909":0,"7910":0,"7911":1,"7912":0,"7913":0,"7914":1,"7915":0,"7916":0,"7917":0,"7918":0,"7919":1,"7920":0,"7921":0,"7922":1,"7923":0,"7924":0,"7925":0,"7926":0,"7927":0,"7928":1,"7929":0,"7930":0,"7931":0,"7932":1,"7933":0,"7934":0,"7935":0,"7936":0,"7937":0,"7938":0,"7939":0,"7940":1,"7941":0,"7942":1,"7943":0,"7944":1,"7945":0,"7946":0,"7947":0,"7948":0,"7949":0,"7950":0,"7951":1,"7952":1,"7953":1,"7954":0,"7955":1,"7956":0,"7957":1,"7958":1,"7959":1,"7960":1,"7961":0,"7962":0,"7963":0,"7964":0,"7965":0,"7966":0,"7967":0,"7968":0,"7969":0,"7970":0,"7971":0,"7972":0,"7973":1,"7974":0,"7975":0,"7976":1,"7977":0,"7978":0,"7979":1,"7980":1,"7981":0,"7982":0,"7983":0,"7984":1,"7985":0,"7986":0,"7987":0,"7988":0,"7989":0,"7990":0,"7991":0,"7992":0,"7993":0,"7994":0,"7995":0,"7996":0,"7997":0,"7998":0,"7999":0,"8000":1,"8001":1,"8002":0,"8003":0,"8004":0,"8005":0,"8006":0,"8007":1,"8008":0,"8009":1,"8010":0,"8011":0,"8012":1,"8013":0,"8014":0,"8015":0,"8016":1,"8017":0,"8018":0,"8019":1,"8020":1,"8021":0,"8022":0,"8023":0,"8024":1,"8025":0,"8026":0,"8027":0,"8028":1,"8029":0,"8030":1,"8031":0,"8032":0,"8033":0,"8034":0,"8035":0,"8036":1,"8037":0,"8038":0,"8039":0,"8040":0,"8041":0,"8042":1,"8043":1,"8044":0,"8045":0,"8046":0,"8047":0,"8048":0,"8049":0,"8050":0,"8051":0,"8052":0,"8053":1,"8054":0,"8055":0,"8056":0,"8057":1,"8058":1,"8059":0,"8060":0,"8061":0,"8062":0,"8063":0,"8064":0,"8065":0,"8066":0,"8067":0,"8068":0,"8069":1,"8070":0,"8071":0,"8072":0,"8073":0,"8074":1,"8075":0,"8076":0,"8077":0,"8078":1,"8079":0,"8080":0,"8081":0,"8082":0,"8083":0,"8084":0,"8085":0,"8086":1,"8087":0,"8088":0,"8089":1,"8090":0,"8091":0,"8092":1,"8093":0,"8094":1,"8095":0,"8096":0,"8097":0,"8098":0,"8099":0,"8100":0,"8101":0,"8102":0,"8103":0,"8104":0,"8105":1,"8106":0,"8107":0,"8108":0,"8109":1,"8110":0,"8111":0,"8112":1,"8113":0,"8114":1,"8115":0,"8116":0,"8117":0,"8118":0,"8119":0,"8120":0,"8121":1,"8122":0,"8123":1,"8124":0,"8125":0,"8126":0,"8127":1,"8128":1,"8129":0,"8130":0,"8131":0,"8132":1,"8133":0,"8134":0,"8135":0,"8136":1,"8137":0,"8138":0,"8139":1,"8140":0,"8141":0,"8142":0,"8143":0,"8144":0,"8145":0,"8146":0,"8147":0,"8148":0,"8149":0,"8150":0,"8151":0,"8152":0,"8153":1,"8154":0,"8155":0,"8156":0,"8157":0,"8158":0,"8159":0,"8160":0,"8161":0,"8162":0,"8163":0,"8164":0,"8165":1,"8166":0,"8167":0,"8168":0,"8169":1,"8170":0,"8171":0,"8172":0,"8173":1,"8174":0,"8175":0,"8176":1,"8177":0,"8178":0,"8179":1,"8180":0,"8181":0,"8182":0,"8183":1,"8184":0,"8185":1,"8186":0,"8187":0,"8188":1,"8189":1,"8190":0,"8191":0,"8192":1,"8193":1,"8194":0,"8195":1,"8196":0,"8197":0,"8198":1,"8199":0,"8200":0,"8201":0,"8202":0,"8203":0,"8204":0,"8205":0,"8206":0,"8207":0,"8208":0,"8209":1,"8210":1,"8211":0,"8212":0,"8213":1,"8214":0,"8215":0,"8216":0,"8217":0,"8218":1,"8219":0,"8220":0,"8221":1,"8222":0,"8223":0,"8224":0,"8225":0,"8226":1,"8227":0,"8228":0,"8229":0,"8230":0,"8231":1,"8232":0,"8233":1,"8234":0,"8235":0,"8236":1,"8237":0,"8238":0,"8239":1,"8240":1,"8241":0,"8242":0,"8243":0,"8244":0,"8245":0,"8246":0,"8247":0,"8248":1,"8249":1,"8250":0,"8251":0,"8252":0,"8253":0,"8254":0,"8255":0,"8256":0,"8257":0,"8258":0,"8259":0,"8260":0,"8261":1,"8262":1,"8263":0,"8264":1,"8265":0,"8266":0,"8267":0,"8268":0,"8269":0,"8270":1,"8271":0,"8272":1,"8273":0,"8274":0,"8275":0,"8276":1,"8277":0,"8278":0,"8279":1,"8280":1,"8281":0,"8282":0,"8283":0,"8284":0,"8285":1,"8286":0,"8287":0,"8288":1,"8289":0,"8290":0,"8291":1,"8292":0,"8293":0,"8294":0,"8295":0,"8296":1,"8297":0,"8298":0,"8299":0,"8300":0,"8301":0,"8302":0,"8303":1,"8304":1,"8305":0,"8306":0,"8307":0,"8308":0,"8309":0,"8310":0,"8311":0,"8312":0,"8313":1,"8314":0,"8315":0,"8316":0,"8317":0,"8318":1,"8319":0,"8320":1,"8321":0,"8322":0,"8323":0,"8324":0,"8325":1,"8326":0,"8327":0,"8328":0,"8329":1,"8330":0,"8331":1,"8332":0,"8333":0,"8334":0,"8335":0,"8336":0,"8337":0,"8338":1,"8339":0,"8340":0,"8341":0,"8342":1,"8343":1,"8344":0,"8345":1,"8346":0,"8347":1,"8348":0,"8349":0,"8350":0,"8351":0,"8352":0,"8353":1,"8354":0,"8355":0,"8356":1,"8357":0,"8358":0,"8359":1,"8360":0,"8361":0,"8362":1,"8363":1,"8364":1,"8365":0,"8366":0,"8367":0,"8368":0,"8369":0,"8370":0,"8371":1,"8372":0,"8373":1,"8374":0,"8375":0,"8376":0,"8377":0,"8378":0,"8379":0,"8380":0,"8381":0,"8382":1,"8383":1,"8384":0,"8385":1,"8386":1,"8387":0,"8388":0,"8389":0,"8390":0,"8391":0,"8392":0,"8393":0,"8394":0,"8395":0,"8396":0,"8397":0,"8398":0,"8399":1,"8400":1,"8401":1,"8402":1,"8403":1,"8404":0,"8405":0,"8406":0,"8407":0,"8408":0,"8409":1,"8410":0,"8411":0,"8412":0,"8413":0,"8414":1,"8415":0,"8416":0,"8417":1,"8418":0,"8419":0,"8420":1,"8421":0,"8422":0,"8423":1,"8424":1,"8425":0,"8426":0,"8427":0,"8428":1,"8429":0,"8430":0,"8431":0,"8432":1,"8433":1,"8434":0,"8435":0,"8436":1,"8437":1,"8438":0,"8439":0,"8440":0,"8441":0,"8442":1,"8443":0,"8444":0,"8445":1,"8446":0,"8447":0,"8448":0,"8449":0,"8450":0,"8451":1,"8452":0,"8453":0,"8454":0,"8455":0,"8456":0,"8457":1,"8458":0,"8459":0,"8460":0,"8461":1,"8462":1,"8463":0,"8464":0,"8465":1,"8466":1,"8467":1,"8468":0,"8469":0,"8470":0,"8471":1,"8472":1,"8473":0,"8474":0,"8475":1,"8476":0,"8477":0,"8478":0,"8479":0,"8480":1,"8481":0,"8482":0,"8483":0,"8484":0,"8485":0,"8486":0,"8487":0,"8488":1,"8489":0,"8490":0,"8491":0,"8492":0,"8493":1,"8494":0,"8495":0,"8496":1,"8497":1,"8498":0,"8499":1,"8500":0,"8501":1,"8502":1,"8503":0,"8504":0,"8505":1,"8506":1,"8507":0,"8508":0,"8509":0,"8510":1,"8511":0,"8512":0,"8513":0,"8514":0,"8515":0,"8516":0,"8517":0,"8518":0,"8519":0,"8520":1,"8521":0,"8522":0,"8523":0,"8524":0,"8525":1,"8526":1,"8527":0,"8528":1,"8529":0,"8530":0,"8531":0,"8532":0,"8533":0,"8534":0,"8535":1,"8536":0,"8537":1,"8538":0,"8539":0,"8540":0,"8541":0,"8542":0,"8543":1,"8544":0,"8545":0,"8546":1,"8547":0,"8548":0,"8549":0,"8550":0,"8551":0,"8552":0,"8553":0,"8554":0,"8555":0,"8556":0,"8557":0,"8558":0,"8559":1,"8560":0,"8561":0,"8562":1,"8563":1,"8564":1,"8565":0,"8566":0,"8567":0,"8568":0,"8569":0,"8570":0,"8571":1,"8572":0,"8573":0,"8574":1,"8575":0,"8576":0,"8577":0,"8578":1,"8579":1,"8580":0,"8581":0,"8582":0,"8583":1,"8584":1,"8585":0,"8586":0,"8587":0,"8588":0,"8589":0,"8590":0,"8591":0,"8592":0,"8593":1,"8594":1,"8595":1,"8596":1,"8597":0,"8598":1,"8599":1,"8600":0,"8601":0,"8602":1,"8603":0,"8604":0,"8605":0,"8606":0,"8607":0,"8608":0,"8609":0,"8610":0,"8611":0,"8612":0,"8613":0,"8614":0,"8615":0,"8616":1,"8617":0,"8618":1,"8619":0,"8620":1,"8621":0,"8622":0,"8623":1,"8624":0,"8625":0,"8626":0,"8627":0,"8628":1,"8629":0,"8630":0,"8631":0,"8632":1,"8633":0,"8634":0,"8635":0,"8636":0,"8637":1,"8638":0,"8639":0,"8640":0,"8641":0,"8642":0,"8643":0,"8644":0,"8645":0,"8646":0,"8647":1,"8648":0,"8649":0,"8650":1,"8651":0,"8652":0,"8653":0,"8654":1,"8655":1,"8656":0,"8657":0,"8658":0,"8659":0,"8660":0,"8661":0,"8662":0,"8663":0,"8664":0,"8665":0,"8666":0,"8667":0,"8668":0,"8669":0,"8670":0,"8671":0,"8672":0,"8673":0,"8674":0,"8675":1,"8676":0,"8677":0,"8678":0,"8679":0,"8680":0,"8681":1,"8682":0,"8683":1,"8684":0,"8685":0,"8686":1,"8687":0,"8688":0,"8689":0,"8690":0,"8691":0,"8692":0,"8693":1,"8694":0,"8695":1,"8696":0,"8697":1,"8698":0,"8699":0,"8700":1,"8701":0,"8702":0,"8703":0,"8704":0,"8705":0,"8706":0,"8707":0,"8708":1,"8709":0,"8710":1,"8711":0,"8712":0,"8713":1,"8714":0,"8715":0,"8716":1,"8717":0,"8718":0,"8719":1,"8720":0,"8721":0,"8722":0,"8723":0,"8724":1,"8725":0,"8726":0,"8727":0,"8728":0,"8729":0,"8730":0,"8731":0,"8732":0,"8733":0,"8734":0,"8735":0,"8736":0,"8737":0,"8738":0,"8739":0,"8740":1,"8741":0,"8742":0,"8743":1,"8744":1,"8745":0,"8746":0,"8747":0,"8748":0,"8749":0,"8750":0,"8751":0,"8752":1,"8753":0,"8754":1,"8755":0,"8756":1,"8757":0,"8758":0,"8759":0,"8760":0,"8761":0,"8762":0,"8763":0,"8764":0,"8765":0,"8766":0,"8767":0,"8768":1,"8769":1,"8770":0,"8771":0,"8772":0,"8773":0,"8774":0,"8775":0,"8776":0,"8777":0,"8778":0,"8779":0,"8780":0,"8781":0,"8782":0,"8783":0,"8784":0,"8785":0,"8786":1,"8787":1,"8788":0,"8789":1,"8790":0,"8791":0,"8792":0,"8793":0,"8794":0,"8795":1,"8796":0,"8797":0,"8798":0,"8799":1,"8800":0,"8801":0,"8802":0,"8803":0,"8804":0,"8805":0,"8806":1,"8807":1,"8808":0,"8809":0,"8810":0,"8811":0,"8812":0,"8813":0,"8814":0,"8815":0,"8816":1,"8817":0,"8818":1,"8819":0,"8820":1,"8821":1,"8822":0,"8823":0,"8824":0,"8825":0,"8826":0,"8827":1,"8828":0,"8829":0,"8830":0,"8831":0,"8832":0,"8833":1,"8834":0,"8835":0,"8836":0,"8837":0,"8838":1,"8839":0,"8840":0,"8841":0,"8842":0,"8843":0,"8844":0,"8845":0,"8846":0,"8847":0,"8848":1,"8849":0,"8850":0,"8851":0,"8852":0,"8853":1,"8854":1,"8855":1,"8856":1,"8857":1,"8858":0,"8859":0,"8860":0,"8861":0,"8862":0,"8863":0,"8864":0,"8865":0,"8866":0,"8867":0,"8868":0,"8869":1,"8870":0,"8871":0,"8872":1,"8873":0,"8874":1,"8875":0,"8876":0,"8877":0,"8878":0,"8879":0,"8880":0,"8881":0,"8882":1,"8883":0,"8884":0,"8885":1,"8886":0,"8887":1,"8888":1,"8889":0,"8890":0,"8891":0,"8892":0,"8893":0,"8894":0,"8895":0,"8896":1,"8897":1,"8898":0,"8899":0,"8900":0,"8901":0,"8902":0,"8903":0,"8904":0,"8905":0,"8906":0,"8907":0,"8908":0,"8909":0,"8910":0,"8911":0,"8912":0,"8913":0,"8914":1,"8915":0,"8916":0,"8917":0,"8918":0,"8919":1,"8920":0,"8921":0,"8922":0,"8923":0,"8924":0,"8925":0,"8926":0,"8927":0,"8928":0,"8929":0,"8930":1,"8931":1,"8932":0,"8933":1,"8934":0,"8935":0,"8936":0,"8937":0,"8938":0,"8939":0,"8940":0,"8941":0,"8942":0,"8943":0,"8944":1,"8945":0,"8946":0,"8947":0,"8948":0,"8949":0,"8950":0,"8951":0,"8952":0,"8953":0,"8954":0,"8955":0,"8956":1,"8957":0,"8958":0,"8959":0,"8960":1,"8961":0,"8962":0,"8963":0,"8964":0,"8965":0,"8966":1,"8967":0,"8968":0,"8969":0,"8970":1,"8971":1,"8972":1,"8973":1,"8974":0,"8975":1,"8976":0,"8977":1,"8978":0,"8979":1,"8980":0,"8981":0,"8982":0,"8983":0,"8984":0,"8985":0,"8986":0,"8987":1,"8988":1,"8989":1,"8990":0,"8991":0,"8992":0,"8993":1,"8994":0,"8995":0,"8996":0,"8997":0,"8998":1,"8999":0,"9000":1,"9001":1,"9002":1,"9003":0,"9004":0,"9005":0,"9006":0,"9007":0,"9008":0,"9009":0,"9010":0,"9011":1,"9012":1,"9013":0,"9014":1,"9015":0,"9016":0,"9017":1,"9018":1,"9019":0,"9020":0,"9021":0,"9022":0,"9023":0,"9024":0,"9025":0,"9026":0,"9027":0,"9028":0,"9029":0,"9030":0,"9031":0,"9032":0,"9033":1,"9034":0,"9035":1,"9036":0,"9037":1,"9038":0,"9039":1,"9040":0,"9041":1,"9042":1,"9043":0,"9044":0,"9045":0,"9046":0,"9047":0,"9048":0,"9049":0,"9050":0,"9051":0,"9052":0,"9053":0,"9054":0,"9055":0,"9056":0,"9057":1,"9058":0,"9059":1,"9060":0,"9061":0,"9062":1,"9063":0,"9064":0,"9065":0,"9066":1,"9067":1,"9068":0,"9069":0,"9070":0,"9071":1,"9072":0,"9073":0,"9074":0,"9075":0,"9076":1,"9077":0,"9078":0,"9079":0,"9080":0,"9081":1,"9082":1,"9083":0,"9084":0,"9085":0,"9086":1,"9087":0,"9088":0,"9089":0,"9090":1,"9091":0,"9092":1,"9093":0,"9094":0,"9095":1,"9096":0,"9097":0,"9098":0,"9099":0,"9100":1,"9101":0,"9102":0,"9103":0,"9104":0,"9105":0,"9106":0,"9107":0,"9108":0,"9109":0,"9110":0,"9111":0,"9112":0,"9113":0,"9114":0,"9115":1,"9116":1,"9117":0,"9118":1,"9119":0,"9120":0,"9121":1,"9122":0,"9123":0,"9124":0,"9125":0,"9126":1,"9127":0,"9128":0,"9129":1,"9130":0,"9131":0,"9132":1,"9133":0,"9134":0,"9135":0,"9136":0,"9137":0,"9138":1,"9139":0,"9140":1,"9141":1,"9142":0,"9143":0,"9144":0,"9145":0,"9146":1,"9147":0,"9148":0,"9149":1,"9150":0,"9151":0,"9152":1,"9153":1,"9154":0,"9155":0,"9156":0,"9157":0,"9158":0,"9159":1,"9160":0,"9161":0,"9162":0,"9163":0,"9164":0,"9165":1,"9166":0,"9167":0,"9168":0,"9169":0,"9170":1,"9171":0,"9172":0,"9173":1,"9174":0,"9175":0,"9176":0,"9177":1,"9178":0,"9179":0,"9180":1,"9181":0,"9182":1,"9183":0,"9184":0,"9185":0,"9186":1,"9187":1,"9188":0,"9189":0,"9190":0,"9191":0,"9192":0,"9193":0,"9194":1,"9195":1,"9196":1,"9197":0,"9198":0,"9199":0,"9200":1,"9201":0,"9202":0,"9203":1,"9204":0,"9205":1,"9206":0,"9207":0,"9208":1,"9209":0,"9210":0,"9211":0,"9212":1,"9213":0,"9214":1,"9215":1,"9216":0,"9217":0,"9218":0,"9219":0,"9220":1,"9221":0,"9222":0,"9223":0,"9224":0,"9225":1,"9226":0,"9227":0,"9228":0,"9229":0,"9230":0,"9231":0,"9232":0,"9233":0,"9234":0,"9235":0,"9236":0,"9237":0,"9238":0,"9239":0,"9240":0,"9241":0,"9242":0,"9243":0,"9244":0,"9245":0,"9246":1,"9247":0,"9248":0,"9249":0,"9250":0,"9251":0,"9252":0,"9253":0,"9254":1,"9255":1,"9256":0,"9257":0,"9258":0,"9259":0,"9260":0,"9261":0,"9262":0,"9263":0,"9264":0,"9265":0,"9266":0,"9267":0,"9268":0,"9269":0,"9270":0,"9271":0,"9272":1,"9273":0,"9274":1,"9275":0,"9276":1,"9277":0,"9278":1,"9279":1,"9280":1,"9281":0,"9282":1,"9283":0,"9284":1,"9285":0,"9286":0,"9287":0,"9288":1,"9289":0,"9290":0,"9291":1,"9292":0,"9293":0,"9294":0,"9295":0,"9296":1,"9297":0,"9298":1,"9299":0,"9300":0,"9301":0,"9302":0,"9303":1,"9304":0,"9305":0,"9306":0,"9307":0,"9308":0,"9309":1,"9310":1,"9311":1,"9312":0,"9313":0,"9314":0,"9315":0,"9316":0,"9317":1,"9318":0,"9319":0,"9320":0,"9321":0,"9322":0,"9323":0,"9324":0,"9325":0,"9326":0,"9327":0,"9328":1,"9329":0,"9330":1,"9331":0,"9332":0,"9333":0,"9334":0,"9335":0,"9336":1,"9337":0,"9338":0,"9339":0,"9340":0,"9341":0,"9342":1,"9343":0,"9344":0,"9345":1,"9346":1,"9347":0,"9348":1,"9349":0,"9350":1,"9351":0,"9352":0,"9353":0,"9354":0,"9355":0,"9356":0,"9357":1,"9358":1,"9359":0,"9360":0,"9361":0,"9362":1,"9363":0,"9364":1,"9365":0,"9366":0,"9367":0,"9368":0,"9369":0,"9370":0,"9371":0,"9372":0,"9373":1,"9374":0,"9375":0,"9376":0,"9377":1,"9378":0,"9379":0,"9380":0,"9381":0,"9382":0,"9383":0,"9384":0,"9385":0,"9386":0,"9387":0,"9388":0,"9389":0,"9390":0,"9391":0,"9392":0,"9393":0,"9394":1,"9395":1,"9396":1,"9397":0,"9398":0,"9399":1,"9400":0,"9401":0,"9402":0,"9403":0,"9404":0,"9405":0,"9406":0,"9407":0,"9408":0,"9409":0,"9410":0,"9411":0,"9412":1,"9413":1,"9414":1,"9415":1,"9416":0,"9417":0,"9418":0,"9419":0,"9420":1,"9421":0,"9422":0,"9423":1,"9424":1,"9425":0,"9426":0,"9427":0,"9428":1,"9429":0,"9430":1,"9431":0,"9432":0,"9433":1,"9434":0,"9435":0,"9436":1,"9437":0,"9438":1,"9439":0,"9440":0,"9441":1,"9442":0,"9443":0,"9444":0,"9445":0,"9446":0,"9447":0,"9448":0,"9449":1,"9450":0,"9451":1,"9452":0,"9453":0,"9454":0,"9455":0,"9456":0,"9457":1,"9458":0,"9459":1,"9460":1,"9461":0,"9462":1,"9463":0,"9464":1,"9465":0,"9466":0,"9467":1,"9468":0,"9469":1,"9470":0,"9471":0,"9472":1,"9473":0,"9474":0,"9475":0,"9476":0,"9477":0,"9478":0,"9479":0,"9480":0,"9481":0,"9482":0,"9483":0,"9484":0,"9485":1,"9486":0,"9487":0,"9488":0,"9489":0,"9490":1,"9491":0,"9492":0,"9493":0,"9494":0,"9495":0,"9496":0,"9497":0,"9498":0,"9499":1,"9500":0,"9501":0,"9502":1,"9503":0,"9504":0,"9505":0,"9506":0,"9507":1,"9508":0,"9509":1,"9510":0,"9511":0,"9512":0,"9513":1,"9514":1,"9515":0,"9516":0,"9517":0,"9518":1,"9519":0,"9520":1,"9521":0,"9522":0,"9523":1,"9524":0,"9525":0,"9526":0,"9527":0,"9528":0,"9529":0,"9530":0,"9531":0,"9532":1,"9533":0,"9534":0,"9535":0,"9536":0,"9537":0,"9538":0,"9539":1,"9540":0,"9541":1,"9542":0,"9543":0,"9544":0,"9545":1,"9546":0,"9547":0,"9548":0,"9549":0,"9550":0,"9551":0,"9552":0,"9553":0,"9554":0,"9555":0,"9556":0,"9557":1,"9558":0,"9559":0,"9560":1,"9561":0,"9562":0,"9563":0,"9564":0,"9565":1,"9566":1,"9567":1,"9568":0,"9569":0,"9570":1,"9571":0,"9572":1,"9573":0,"9574":0,"9575":0,"9576":0,"9577":0,"9578":0,"9579":0,"9580":1,"9581":1,"9582":0,"9583":0,"9584":0,"9585":0,"9586":1,"9587":0,"9588":1,"9589":1,"9590":1,"9591":0,"9592":0,"9593":0,"9594":0,"9595":1,"9596":1,"9597":0,"9598":0,"9599":0,"9600":0,"9601":0,"9602":1,"9603":0,"9604":0,"9605":0,"9606":0,"9607":0,"9608":1,"9609":0,"9610":0,"9611":0,"9612":1,"9613":0,"9614":0,"9615":0,"9616":1,"9617":0,"9618":0,"9619":0,"9620":0,"9621":0,"9622":1,"9623":0,"9624":0,"9625":0,"9626":0,"9627":0,"9628":0,"9629":0,"9630":0,"9631":0,"9632":0,"9633":0,"9634":0,"9635":1,"9636":0,"9637":0,"9638":0,"9639":0,"9640":0,"9641":1,"9642":0,"9643":0,"9644":0,"9645":0,"9646":0,"9647":0,"9648":0,"9649":0,"9650":1,"9651":0,"9652":0,"9653":0,"9654":0,"9655":0,"9656":0,"9657":0,"9658":1,"9659":0,"9660":0,"9661":0,"9662":0,"9663":0,"9664":0,"9665":0,"9666":0,"9667":1,"9668":0,"9669":0,"9670":0,"9671":0,"9672":0,"9673":0,"9674":0,"9675":0,"9676":0,"9677":1,"9678":1,"9679":1,"9680":1,"9681":0,"9682":0,"9683":0,"9684":0,"9685":1,"9686":1,"9687":0,"9688":0,"9689":0,"9690":1,"9691":1,"9692":0,"9693":1,"9694":0,"9695":1,"9696":0,"9697":1,"9698":1,"9699":0,"9700":1,"9701":0,"9702":1,"9703":1,"9704":1,"9705":1,"9706":0,"9707":0,"9708":1,"9709":0,"9710":0,"9711":0,"9712":1,"9713":0,"9714":0,"9715":0,"9716":0,"9717":0,"9718":0,"9719":1,"9720":0,"9721":1,"9722":0,"9723":1,"9724":0,"9725":0,"9726":1,"9727":0,"9728":1,"9729":0,"9730":1,"9731":0,"9732":0,"9733":0,"9734":1,"9735":1,"9736":1,"9737":0,"9738":0,"9739":0,"9740":1,"9741":0,"9742":0,"9743":0,"9744":0,"9745":1,"9746":1,"9747":1,"9748":0,"9749":0,"9750":0,"9751":0,"9752":0,"9753":0,"9754":0,"9755":1,"9756":0,"9757":0,"9758":0,"9759":1,"9760":0,"9761":0,"9762":0,"9763":1,"9764":0,"9765":0,"9766":0,"9767":1,"9768":1,"9769":1,"9770":0,"9771":0,"9772":0,"9773":0,"9774":1,"9775":1,"9776":0,"9777":0,"9778":0,"9779":0,"9780":0,"9781":0,"9782":0,"9783":1,"9784":0,"9785":0,"9786":1,"9787":0,"9788":0,"9789":0,"9790":0,"9791":1,"9792":0,"9793":0,"9794":1,"9795":0,"9796":1,"9797":0,"9798":0,"9799":0,"9800":0,"9801":0,"9802":0,"9803":0,"9804":1,"9805":1,"9806":0,"9807":0,"9808":0,"9809":0,"9810":0,"9811":1,"9812":0,"9813":0,"9814":0,"9815":0,"9816":1,"9817":0,"9818":0,"9819":0,"9820":0,"9821":0,"9822":0,"9823":0,"9824":0,"9825":0,"9826":1,"9827":0,"9828":0,"9829":1,"9830":0,"9831":0,"9832":0,"9833":0,"9834":0,"9835":0,"9836":0,"9837":0,"9838":0,"9839":1,"9840":1,"9841":0,"9842":0,"9843":0,"9844":0,"9845":0,"9846":1,"9847":1,"9848":0,"9849":0,"9850":1,"9851":0,"9852":0,"9853":0,"9854":1,"9855":1,"9856":0,"9857":0,"9858":0,"9859":0,"9860":1,"9861":0,"9862":0,"9863":0,"9864":0,"9865":0,"9866":1,"9867":0,"9868":1,"9869":0,"9870":1,"9871":0,"9872":1,"9873":0,"9874":1,"9875":1,"9876":0,"9877":0,"9878":1,"9879":0,"9880":1,"9881":0,"9882":0,"9883":0,"9884":0,"9885":0,"9886":0,"9887":0,"9888":1,"9889":0,"9890":1,"9891":0,"9892":0,"9893":1,"9894":0,"9895":0,"9896":0,"9897":1,"9898":0,"9899":0,"9900":1,"9901":0,"9902":1,"9903":0,"9904":1,"9905":0,"9906":0,"9907":0,"9908":0,"9909":0,"9910":0,"9911":0,"9912":0,"9913":0,"9914":0,"9915":0,"9916":1,"9917":0,"9918":0,"9919":0,"9920":0,"9921":0,"9922":0,"9923":0,"9924":1,"9925":0,"9926":0,"9927":0,"9928":0,"9929":1,"9930":0,"9931":0,"9932":1,"9933":0,"9934":1,"9935":0,"9936":1,"9937":1,"9938":0,"9939":0,"9940":0,"9941":0,"9942":1,"9943":0,"9944":1,"9945":0,"9946":0,"9947":0,"9948":1,"9949":0,"9950":0,"9951":0,"9952":1,"9953":1,"9954":1,"9955":0,"9956":1,"9957":0,"9958":0,"9959":1,"9960":0,"9961":1,"9962":1,"9963":0,"9964":0,"9965":0,"9966":0,"9967":0,"9968":1,"9969":0,"9970":0,"9971":1,"9972":0,"9973":0,"9974":0,"9975":0,"9976":0,"9977":1,"9978":0,"9979":0,"9980":0,"9981":0,"9982":0,"9983":0,"9984":0,"9985":0,"9986":1,"9987":0,"9988":0,"9989":0,"9990":1,"9991":0,"9992":0,"9993":0,"9994":0,"9995":0,"9996":0,"9997":1,"9998":0,"9999":0,"10000":0,"10001":1,"10002":0,"10003":0,"10004":1,"10005":1,"10006":1,"10007":0,"10008":1,"10009":1,"10010":1,"10011":0,"10012":0,"10013":0,"10014":0,"10015":0,"10016":0,"10017":0,"10018":0,"10019":1,"10020":1,"10021":0,"10022":0,"10023":0,"10024":0,"10025":0,"10026":0,"10027":0,"10028":0,"10029":0,"10030":0,"10031":0,"10032":0,"10033":0,"10034":0,"10035":0,"10036":1,"10037":0,"10038":0,"10039":0,"10040":0,"10041":0,"10042":0,"10043":0,"10044":0,"10045":0,"10046":1,"10047":1,"10048":0,"10049":0,"10050":1,"10051":0,"10052":0,"10053":0,"10054":0,"10055":0,"10056":1,"10057":0,"10058":1,"10059":1,"10060":0,"10061":0,"10062":0,"10063":0,"10064":1,"10065":0,"10066":1,"10067":0,"10068":0,"10069":0,"10070":0,"10071":1,"10072":1,"10073":0,"10074":0,"10075":0,"10076":1,"10077":0,"10078":0,"10079":0,"10080":0,"10081":0,"10082":0,"10083":0,"10084":1,"10085":1,"10086":0,"10087":1,"10088":0,"10089":1,"10090":1,"10091":0,"10092":0,"10093":0,"10094":0,"10095":1,"10096":1,"10097":0,"10098":1,"10099":0,"10100":0,"10101":0,"10102":1,"10103":0,"10104":1,"10105":1,"10106":0,"10107":1,"10108":0,"10109":0,"10110":0,"10111":0,"10112":1,"10113":0,"10114":1,"10115":1,"10116":0,"10117":1,"10118":0,"10119":0,"10120":0,"10121":0,"10122":0,"10123":0,"10124":0,"10125":0,"10126":1,"10127":0,"10128":0,"10129":0,"10130":0,"10131":0,"10132":1,"10133":0,"10134":0,"10135":0,"10136":0,"10137":0,"10138":0,"10139":1,"10140":1,"10141":0,"10142":0,"10143":0,"10144":0,"10145":1,"10146":0,"10147":0,"10148":0,"10149":0,"10150":0,"10151":1,"10152":0,"10153":0,"10154":0,"10155":0,"10156":0,"10157":0,"10158":1,"10159":0,"10160":0,"10161":0,"10162":1,"10163":0,"10164":1,"10165":1,"10166":1,"10167":0,"10168":0,"10169":1,"10170":0,"10171":1,"10172":0,"10173":1,"10174":0,"10175":0,"10176":0,"10177":1,"10178":0,"10179":0,"10180":0,"10181":1,"10182":0,"10183":1,"10184":0,"10185":0,"10186":0,"10187":0,"10188":1,"10189":1,"10190":1,"10191":0,"10192":0,"10193":0,"10194":0,"10195":1,"10196":0,"10197":0,"10198":0,"10199":1,"10200":0,"10201":1,"10202":0,"10203":0,"10204":0,"10205":0,"10206":0,"10207":0,"10208":0,"10209":1,"10210":0,"10211":0,"10212":0,"10213":1,"10214":0,"10215":1,"10216":0,"10217":0,"10218":0,"10219":1,"10220":1,"10221":0,"10222":0,"10223":0,"10224":0,"10225":1,"10226":0,"10227":1,"10228":1,"10229":0,"10230":0,"10231":0,"10232":0,"10233":0,"10234":0,"10235":1,"10236":0,"10237":0,"10238":0,"10239":0,"10240":0,"10241":0,"10242":1,"10243":0,"10244":0,"10245":1,"10246":0,"10247":1,"10248":1,"10249":0,"10250":0,"10251":0,"10252":0,"10253":0,"10254":0,"10255":1,"10256":0,"10257":0,"10258":0,"10259":0,"10260":1,"10261":0,"10262":1,"10263":0,"10264":0,"10265":0,"10266":0,"10267":0,"10268":0,"10269":1,"10270":1,"10271":0,"10272":0,"10273":0,"10274":0,"10275":0,"10276":1,"10277":1,"10278":0,"10279":0,"10280":0,"10281":0,"10282":1,"10283":0,"10284":0,"10285":1,"10286":1,"10287":0,"10288":0,"10289":0,"10290":1,"10291":1,"10292":0,"10293":0,"10294":0,"10295":1,"10296":1,"10297":0,"10298":0,"10299":0,"10300":0,"10301":0,"10302":0,"10303":0,"10304":0,"10305":0,"10306":0,"10307":0,"10308":0,"10309":0,"10310":1,"10311":0,"10312":1,"10313":0,"10314":1,"10315":0,"10316":0,"10317":0,"10318":0,"10319":1,"10320":0,"10321":0,"10322":0,"10323":0,"10324":0,"10325":0,"10326":1,"10327":0,"10328":0,"10329":1,"10330":0,"10331":0,"10332":0,"10333":0,"10334":1,"10335":1,"10336":0,"10337":0,"10338":1,"10339":0,"10340":0,"10341":1,"10342":1,"10343":0,"10344":0,"10345":0,"10346":0,"10347":0,"10348":0,"10349":1,"10350":0,"10351":0,"10352":0,"10353":1,"10354":0,"10355":0,"10356":0,"10357":0,"10358":0,"10359":1,"10360":0,"10361":1,"10362":0,"10363":1,"10364":0,"10365":0,"10366":0,"10367":0,"10368":1,"10369":0,"10370":1,"10371":0,"10372":1,"10373":0,"10374":0,"10375":0,"10376":0,"10377":1,"10378":0,"10379":0,"10380":0,"10381":0,"10382":0,"10383":0,"10384":0,"10385":0,"10386":0,"10387":0,"10388":1,"10389":0,"10390":0,"10391":1,"10392":0,"10393":0,"10394":0,"10395":0,"10396":1,"10397":0,"10398":0,"10399":0,"10400":0,"10401":0,"10402":0,"10403":0,"10404":0,"10405":0,"10406":0,"10407":0,"10408":0,"10409":1,"10410":1,"10411":1,"10412":0,"10413":1,"10414":0,"10415":0,"10416":0,"10417":0,"10418":0,"10419":1,"10420":0,"10421":0,"10422":0,"10423":1,"10424":0,"10425":0,"10426":0,"10427":0,"10428":1,"10429":0,"10430":0,"10431":1,"10432":0,"10433":0,"10434":0,"10435":0,"10436":0,"10437":1,"10438":0,"10439":0,"10440":0,"10441":0,"10442":0,"10443":0,"10444":0,"10445":0,"10446":0,"10447":0,"10448":1,"10449":1,"10450":1,"10451":0,"10452":0,"10453":0,"10454":1,"10455":0,"10456":0,"10457":0,"10458":0,"10459":0,"10460":1,"10461":0,"10462":0,"10463":0,"10464":1,"10465":0,"10466":1,"10467":0,"10468":1,"10469":0,"10470":0,"10471":1,"10472":1,"10473":1,"10474":0,"10475":0,"10476":0,"10477":0,"10478":0,"10479":0,"10480":0,"10481":0,"10482":0,"10483":1,"10484":0,"10485":1,"10486":0,"10487":0,"10488":1,"10489":0,"10490":0,"10491":1,"10492":0,"10493":1,"10494":0,"10495":0,"10496":1,"10497":0,"10498":0,"10499":1,"10500":0,"10501":0,"10502":0,"10503":0,"10504":0,"10505":0,"10506":0,"10507":0,"10508":1,"10509":0,"10510":1,"10511":1,"10512":0,"10513":0,"10514":0,"10515":1,"10516":1,"10517":0,"10518":0,"10519":1,"10520":0,"10521":0,"10522":0,"10523":1,"10524":0,"10525":0,"10526":1,"10527":0,"10528":0,"10529":0,"10530":0,"10531":1,"10532":1,"10533":1,"10534":0,"10535":1,"10536":0,"10537":0,"10538":0,"10539":0,"10540":0,"10541":0,"10542":1,"10543":0,"10544":0,"10545":0,"10546":0,"10547":0,"10548":0,"10549":0,"10550":0,"10551":0,"10552":0,"10553":0,"10554":1,"10555":1,"10556":0,"10557":0,"10558":0,"10559":0,"10560":0,"10561":0,"10562":1,"10563":1,"10564":1,"10565":0,"10566":1,"10567":1,"10568":0,"10569":1,"10570":1,"10571":0,"10572":0,"10573":0,"10574":0,"10575":1,"10576":1,"10577":0,"10578":0,"10579":1,"10580":0,"10581":0,"10582":0,"10583":0,"10584":1,"10585":0,"10586":1,"10587":1,"10588":0,"10589":0,"10590":0,"10591":0,"10592":1,"10593":1,"10594":0,"10595":1,"10596":1,"10597":0,"10598":0,"10599":0,"10600":0,"10601":0,"10602":0,"10603":1,"10604":0,"10605":0,"10606":0,"10607":0,"10608":1,"10609":0,"10610":0,"10611":0,"10612":0,"10613":0,"10614":0,"10615":1,"10616":0,"10617":0,"10618":0,"10619":0,"10620":0,"10621":0,"10622":0,"10623":0,"10624":0,"10625":0,"10626":0,"10627":1,"10628":0,"10629":0,"10630":1,"10631":1,"10632":1,"10633":0,"10634":1,"10635":1,"10636":0,"10637":1,"10638":0,"10639":0,"10640":0,"10641":0,"10642":1,"10643":0,"10644":0,"10645":0,"10646":0,"10647":0,"10648":0,"10649":1,"10650":0,"10651":0,"10652":0,"10653":0,"10654":0,"10655":0,"10656":0,"10657":0,"10658":1,"10659":0,"10660":0,"10661":0,"10662":0,"10663":0,"10664":0,"10665":0,"10666":0,"10667":0,"10668":0,"10669":1,"10670":0,"10671":0,"10672":0,"10673":0,"10674":0,"10675":1,"10676":1,"10677":0,"10678":0,"10679":0,"10680":0,"10681":0,"10682":1,"10683":0,"10684":0,"10685":0,"10686":0,"10687":1,"10688":0,"10689":0,"10690":1,"10691":0,"10692":0,"10693":1,"10694":0,"10695":1,"10696":1,"10697":1,"10698":0,"10699":0,"10700":0,"10701":0,"10702":1,"10703":0,"10704":0,"10705":1,"10706":0,"10707":1,"10708":0,"10709":1,"10710":1,"10711":0,"10712":0,"10713":1,"10714":0,"10715":0,"10716":1,"10717":1,"10718":0,"10719":0,"10720":0,"10721":0,"10722":0,"10723":1,"10724":0,"10725":0,"10726":0,"10727":0,"10728":0,"10729":0,"10730":0,"10731":0,"10732":0,"10733":0,"10734":0,"10735":0,"10736":0,"10737":0,"10738":0,"10739":1,"10740":1,"10741":1,"10742":0,"10743":0,"10744":1,"10745":0,"10746":1,"10747":0,"10748":0,"10749":0,"10750":0,"10751":0,"10752":1,"10753":1,"10754":1,"10755":0,"10756":1,"10757":0,"10758":1,"10759":1,"10760":0,"10761":0,"10762":1,"10763":0,"10764":0,"10765":0,"10766":0,"10767":0,"10768":0,"10769":0,"10770":0,"10771":0,"10772":1,"10773":0,"10774":0,"10775":0,"10776":0,"10777":0,"10778":0,"10779":0,"10780":0,"10781":0,"10782":1,"10783":1,"10784":0,"10785":1,"10786":0,"10787":1,"10788":1,"10789":0,"10790":0,"10791":0,"10792":0,"10793":1,"10794":0,"10795":1,"10796":0,"10797":0,"10798":0,"10799":0,"10800":1,"10801":1,"10802":0,"10803":0,"10804":0,"10805":0,"10806":0,"10807":1,"10808":0,"10809":1,"10810":0,"10811":0,"10812":1,"10813":0,"10814":0,"10815":0,"10816":0,"10817":0,"10818":0,"10819":0,"10820":1,"10821":1,"10822":0,"10823":0,"10824":0,"10825":0,"10826":0,"10827":1,"10828":1,"10829":0,"10830":0,"10831":0,"10832":0,"10833":0,"10834":1,"10835":0,"10836":0,"10837":0,"10838":1,"10839":0,"10840":0,"10841":1,"10842":1,"10843":0,"10844":1,"10845":0,"10846":0,"10847":0,"10848":1,"10849":0,"10850":0,"10851":0,"10852":0,"10853":0,"10854":1,"10855":0,"10856":1,"10857":0,"10858":0,"10859":0,"10860":0,"10861":0,"10862":0,"10863":0,"10864":0,"10865":1,"10866":0,"10867":1,"10868":0,"10869":0,"10870":1,"10871":0,"10872":0,"10873":0,"10874":0,"10875":1,"10876":0,"10877":0,"10878":0,"10879":1,"10880":0,"10881":0,"10882":1,"10883":0,"10884":0,"10885":0,"10886":0,"10887":0,"10888":1,"10889":1,"10890":1,"10891":0,"10892":1,"10893":0,"10894":1,"10895":0,"10896":1,"10897":0,"10898":0,"10899":1,"10900":1,"10901":0,"10902":0,"10903":0,"10904":0,"10905":0,"10906":1,"10907":0,"10908":0,"10909":1,"10910":0,"10911":0,"10912":0,"10913":0,"10914":0,"10915":1,"10916":0,"10917":0,"10918":1,"10919":0,"10920":0,"10921":0,"10922":0,"10923":0,"10924":0,"10925":0,"10926":0,"10927":0,"10928":0,"10929":0,"10930":0,"10931":0,"10932":0,"10933":1,"10934":0,"10935":0,"10936":1,"10937":0,"10938":1,"10939":0,"10940":0,"10941":0,"10942":1,"10943":1,"10944":0,"10945":0,"10946":0,"10947":0,"10948":0,"10949":0,"10950":0,"10951":0,"10952":0,"10953":0,"10954":1,"10955":1,"10956":0,"10957":0,"10958":0,"10959":0,"10960":0,"10961":0,"10962":1,"10963":0,"10964":0,"10965":0,"10966":0,"10967":1,"10968":1,"10969":0,"10970":0,"10971":0,"10972":0,"10973":1,"10974":0,"10975":1,"10976":1,"10977":0,"10978":0,"10979":0,"10980":0,"10981":0,"10982":0,"10983":0,"10984":0,"10985":0,"10986":0,"10987":1,"10988":1,"10989":0,"10990":1,"10991":0,"10992":0,"10993":0,"10994":0,"10995":0,"10996":0,"10997":0,"10998":0,"10999":0,"11000":1,"11001":0,"11002":0,"11003":0,"11004":0,"11005":1,"11006":0,"11007":0,"11008":1,"11009":0,"11010":0,"11011":1,"11012":0,"11013":0,"11014":0,"11015":1,"11016":0,"11017":1,"11018":0,"11019":0,"11020":1,"11021":1,"11022":0,"11023":0,"11024":1,"11025":1,"11026":0,"11027":0,"11028":0,"11029":0,"11030":0,"11031":0,"11032":1,"11033":0,"11034":0,"11035":1,"11036":0,"11037":1,"11038":0,"11039":1,"11040":0,"11041":0,"11042":0,"11043":0,"11044":0,"11045":0,"11046":1,"11047":1,"11048":0,"11049":0,"11050":1,"11051":0,"11052":0,"11053":0,"11054":0,"11055":1,"11056":0,"11057":1,"11058":1,"11059":1,"11060":1,"11061":0,"11062":0,"11063":0,"11064":0,"11065":0,"11066":1,"11067":0,"11068":0,"11069":1,"11070":0,"11071":0,"11072":0,"11073":0,"11074":0,"11075":1,"11076":0,"11077":0,"11078":0,"11079":1,"11080":0,"11081":1,"11082":0,"11083":1,"11084":1,"11085":1,"11086":1,"11087":0,"11088":0,"11089":0,"11090":1,"11091":0,"11092":0,"11093":0,"11094":0,"11095":0,"11096":0,"11097":0,"11098":0,"11099":0,"11100":0,"11101":0,"11102":1,"11103":0,"11104":0,"11105":0,"11106":1,"11107":1,"11108":0,"11109":0,"11110":0,"11111":0,"11112":0,"11113":1,"11114":0,"11115":0,"11116":0,"11117":1,"11118":1,"11119":0,"11120":0,"11121":0,"11122":0,"11123":0,"11124":0,"11125":1,"11126":1,"11127":0,"11128":0,"11129":0,"11130":1,"11131":1,"11132":0,"11133":0,"11134":0,"11135":1,"11136":0,"11137":0,"11138":1,"11139":0,"11140":0,"11141":0,"11142":0,"11143":0,"11144":0,"11145":1,"11146":0,"11147":0,"11148":0,"11149":0,"11150":0,"11151":0,"11152":0,"11153":1,"11154":1,"11155":0,"11156":0,"11157":0,"11158":0,"11159":0,"11160":0,"11161":0,"11162":0,"11163":1,"11164":0,"11165":0,"11166":0,"11167":0,"11168":0,"11169":0,"11170":0,"11171":0,"11172":1,"11173":0,"11174":0,"11175":0,"11176":0,"11177":0,"11178":1,"11179":0,"11180":0,"11181":0,"11182":0,"11183":0,"11184":0,"11185":0,"11186":0,"11187":0,"11188":0,"11189":0,"11190":0,"11191":1,"11192":0,"11193":1,"11194":0,"11195":0,"11196":0,"11197":0,"11198":0,"11199":0,"11200":0,"11201":0,"11202":0,"11203":0,"11204":0,"11205":0,"11206":0,"11207":0,"11208":0,"11209":0,"11210":0,"11211":0,"11212":0,"11213":0,"11214":0,"11215":0,"11216":1,"11217":0,"11218":1,"11219":0,"11220":1,"11221":1,"11222":0,"11223":0,"11224":1,"11225":1,"11226":0,"11227":0,"11228":0,"11229":1,"11230":0,"11231":0,"11232":1,"11233":1,"11234":1,"11235":0,"11236":1,"11237":0,"11238":0,"11239":0,"11240":1,"11241":0,"11242":1,"11243":0,"11244":0,"11245":1,"11246":0,"11247":0,"11248":0,"11249":0,"11250":0,"11251":0,"11252":1,"11253":0,"11254":0,"11255":0,"11256":0,"11257":0,"11258":0,"11259":0,"11260":0,"11261":0,"11262":1,"11263":0,"11264":0,"11265":1,"11266":1,"11267":1,"11268":0,"11269":0,"11270":0,"11271":0,"11272":0,"11273":1,"11274":1,"11275":0,"11276":1,"11277":0,"11278":1,"11279":1,"11280":0,"11281":0,"11282":0,"11283":1,"11284":0,"11285":0,"11286":0,"11287":0,"11288":0,"11289":0,"11290":0,"11291":0,"11292":0,"11293":0,"11294":0,"11295":0,"11296":0,"11297":0,"11298":0,"11299":0,"11300":1,"11301":1,"11302":1,"11303":0,"11304":0,"11305":1,"11306":1,"11307":1,"11308":0,"11309":0,"11310":0,"11311":1,"11312":0,"11313":1,"11314":0,"11315":0,"11316":1,"11317":0,"11318":0,"11319":0,"11320":0,"11321":1,"11322":0,"11323":0,"11324":1,"11325":1,"11326":1,"11327":0,"11328":0,"11329":0,"11330":0,"11331":0,"11332":0,"11333":0,"11334":1,"11335":1,"11336":1,"11337":0,"11338":0,"11339":0,"11340":0,"11341":0,"11342":0,"11343":0,"11344":1,"11345":0,"11346":0,"11347":0,"11348":0,"11349":0,"11350":1,"11351":0,"11352":0,"11353":0,"11354":0,"11355":0,"11356":1,"11357":0,"11358":1,"11359":0,"11360":0,"11361":0,"11362":0,"11363":0,"11364":0,"11365":0,"11366":0,"11367":0,"11368":0,"11369":0,"11370":1,"11371":1,"11372":0,"11373":0,"11374":0,"11375":0,"11376":0,"11377":0,"11378":1,"11379":1,"11380":0,"11381":0,"11382":1,"11383":0,"11384":1,"11385":0,"11386":0,"11387":1,"11388":0,"11389":1,"11390":0,"11391":0,"11392":0,"11393":0,"11394":0,"11395":1,"11396":0,"11397":1,"11398":0,"11399":0,"11400":0,"11401":0,"11402":0,"11403":0,"11404":0,"11405":1,"11406":1,"11407":0,"11408":0,"11409":0,"11410":0,"11411":1,"11412":0,"11413":0,"11414":0,"11415":0,"11416":0,"11417":0,"11418":1,"11419":0,"11420":0,"11421":0,"11422":0,"11423":0,"11424":0,"11425":0,"11426":0,"11427":0,"11428":0,"11429":0,"11430":0,"11431":0,"11432":0,"11433":0,"11434":0,"11435":0,"11436":0,"11437":0,"11438":1,"11439":0,"11440":0,"11441":1,"11442":0,"11443":0,"11444":0,"11445":1,"11446":1,"11447":0,"11448":0,"11449":0,"11450":1,"11451":0,"11452":0,"11453":0,"11454":0,"11455":0,"11456":0,"11457":0,"11458":1,"11459":0,"11460":0,"11461":0,"11462":0,"11463":0,"11464":1,"11465":0,"11466":1,"11467":0,"11468":1,"11469":1,"11470":0,"11471":0,"11472":0,"11473":0,"11474":1,"11475":0,"11476":0,"11477":1,"11478":1,"11479":0,"11480":0,"11481":0,"11482":1,"11483":0,"11484":1,"11485":0,"11486":0,"11487":0,"11488":0,"11489":0,"11490":1,"11491":0,"11492":0,"11493":0,"11494":0,"11495":0,"11496":1,"11497":0,"11498":0,"11499":0,"11500":0,"11501":1,"11502":0,"11503":0,"11504":0,"11505":0,"11506":1,"11507":0,"11508":1,"11509":1,"11510":0,"11511":1,"11512":0,"11513":0,"11514":0,"11515":0,"11516":0,"11517":0,"11518":0,"11519":0,"11520":0,"11521":0,"11522":0,"11523":0,"11524":0,"11525":0,"11526":0,"11527":1,"11528":0,"11529":0,"11530":0,"11531":0,"11532":1,"11533":1,"11534":0,"11535":0,"11536":1,"11537":1,"11538":0,"11539":0,"11540":1,"11541":0,"11542":0,"11543":1,"11544":1,"11545":0,"11546":1,"11547":1,"11548":0,"11549":0,"11550":0,"11551":0,"11552":0,"11553":0,"11554":0,"11555":0,"11556":0,"11557":1,"11558":1,"11559":0,"11560":0,"11561":0,"11562":1,"11563":1,"11564":1,"11565":1,"11566":0,"11567":0,"11568":0,"11569":1,"11570":0,"11571":0,"11572":0,"11573":0,"11574":0,"11575":0,"11576":0,"11577":1,"11578":0,"11579":0,"11580":0,"11581":0,"11582":0,"11583":1,"11584":0,"11585":0,"11586":0,"11587":0,"11588":0,"11589":0,"11590":1,"11591":0,"11592":0,"11593":0,"11594":0,"11595":1,"11596":0,"11597":0,"11598":1,"11599":0,"11600":0,"11601":0,"11602":0,"11603":0,"11604":0,"11605":0,"11606":0,"11607":0,"11608":1,"11609":0,"11610":0,"11611":1,"11612":0,"11613":0,"11614":0,"11615":0,"11616":0,"11617":0,"11618":0,"11619":0,"11620":0,"11621":1,"11622":0,"11623":0,"11624":0,"11625":1,"11626":0,"11627":0,"11628":0,"11629":0,"11630":0,"11631":0,"11632":0,"11633":0,"11634":0,"11635":1,"11636":0,"11637":0,"11638":0,"11639":1,"11640":0,"11641":1,"11642":0,"11643":0,"11644":0,"11645":1,"11646":0,"11647":0,"11648":0,"11649":0,"11650":0,"11651":0,"11652":1,"11653":0,"11654":0,"11655":0,"11656":0,"11657":0,"11658":0,"11659":1,"11660":0,"11661":0,"11662":0,"11663":0,"11664":1,"11665":0,"11666":0,"11667":0,"11668":1,"11669":0,"11670":0,"11671":0,"11672":0,"11673":0,"11674":1,"11675":0,"11676":1,"11677":0,"11678":0,"11679":0,"11680":1,"11681":0,"11682":0,"11683":0,"11684":0,"11685":0,"11686":0,"11687":1,"11688":0,"11689":0,"11690":0,"11691":0,"11692":0,"11693":0,"11694":0,"11695":0,"11696":0,"11697":1,"11698":0,"11699":0,"11700":0,"11701":0,"11702":1,"11703":1,"11704":1,"11705":0,"11706":0,"11707":0,"11708":0,"11709":0,"11710":1,"11711":0,"11712":0,"11713":1,"11714":0,"11715":0,"11716":0,"11717":0,"11718":0,"11719":0,"11720":1,"11721":0,"11722":0,"11723":0,"11724":0,"11725":0,"11726":0,"11727":0,"11728":1,"11729":0,"11730":0,"11731":1,"11732":0,"11733":0,"11734":0,"11735":0,"11736":1,"11737":0,"11738":0,"11739":1,"11740":0,"11741":0,"11742":1,"11743":0,"11744":0,"11745":1,"11746":0,"11747":0,"11748":0,"11749":0,"11750":0,"11751":1,"11752":0,"11753":0,"11754":0,"11755":1,"11756":1,"11757":0,"11758":0,"11759":0,"11760":0,"11761":1,"11762":1,"11763":0,"11764":1,"11765":0,"11766":1,"11767":1,"11768":0,"11769":0,"11770":0,"11771":1,"11772":0,"11773":1,"11774":0,"11775":0,"11776":0,"11777":0,"11778":1,"11779":0,"11780":0,"11781":0,"11782":0,"11783":0,"11784":1,"11785":0,"11786":0,"11787":1,"11788":0,"11789":0,"11790":0,"11791":1,"11792":0,"11793":1,"11794":1,"11795":0,"11796":0,"11797":0,"11798":0,"11799":0,"11800":0,"11801":0,"11802":0,"11803":0,"11804":0,"11805":0,"11806":0,"11807":1,"11808":0,"11809":0,"11810":0,"11811":1,"11812":0,"11813":0,"11814":0,"11815":0,"11816":1,"11817":0,"11818":0,"11819":0,"11820":0,"11821":0,"11822":1,"11823":0,"11824":0,"11825":0,"11826":0,"11827":0,"11828":0,"11829":0,"11830":1,"11831":0,"11832":0,"11833":0,"11834":1,"11835":1,"11836":0,"11837":1,"11838":1,"11839":1,"11840":1,"11841":0,"11842":1,"11843":0,"11844":0,"11845":0,"11846":0,"11847":0,"11848":1,"11849":1,"11850":1,"11851":0,"11852":0,"11853":0,"11854":0,"11855":0,"11856":1,"11857":1,"11858":0,"11859":0,"11860":0,"11861":1,"11862":0,"11863":0,"11864":0,"11865":0,"11866":0,"11867":1,"11868":0,"11869":0,"11870":0,"11871":0,"11872":0,"11873":0,"11874":0,"11875":0,"11876":0,"11877":0,"11878":0,"11879":1,"11880":0,"11881":0,"11882":0,"11883":0,"11884":0,"11885":0,"11886":0,"11887":1,"11888":1,"11889":0,"11890":0,"11891":0,"11892":0,"11893":0,"11894":1,"11895":0,"11896":0,"11897":0,"11898":0,"11899":0,"11900":0,"11901":0,"11902":0,"11903":0,"11904":0,"11905":0,"11906":0,"11907":1,"11908":1,"11909":0,"11910":0,"11911":0,"11912":0,"11913":0,"11914":0,"11915":1,"11916":0,"11917":0,"11918":0,"11919":0,"11920":0,"11921":0,"11922":0,"11923":0,"11924":1,"11925":0,"11926":0,"11927":0,"11928":0,"11929":1,"11930":0,"11931":0,"11932":0,"11933":0,"11934":1,"11935":0,"11936":0,"11937":0,"11938":1,"11939":0,"11940":0,"11941":0,"11942":1,"11943":1,"11944":1,"11945":0,"11946":0,"11947":0,"11948":1,"11949":0,"11950":1,"11951":0,"11952":0,"11953":1,"11954":1,"11955":0,"11956":1,"11957":0,"11958":0,"11959":0,"11960":0,"11961":0,"11962":1,"11963":1,"11964":0,"11965":1,"11966":0,"11967":0,"11968":0,"11969":1,"11970":0,"11971":1,"11972":1,"11973":0,"11974":0,"11975":0,"11976":1,"11977":1,"11978":0,"11979":0,"11980":0,"11981":1,"11982":1,"11983":0,"11984":0,"11985":1,"11986":0,"11987":0,"11988":0,"11989":1,"11990":0,"11991":0,"11992":1,"11993":0,"11994":1,"11995":0,"11996":0,"11997":0,"11998":0,"11999":1,"12000":0,"12001":0,"12002":0,"12003":0,"12004":0,"12005":0,"12006":0,"12007":0,"12008":0,"12009":1,"12010":0,"12011":0,"12012":0,"12013":1,"12014":0,"12015":0,"12016":0,"12017":1,"12018":1,"12019":0,"12020":0,"12021":1,"12022":1,"12023":0,"12024":0,"12025":0,"12026":0,"12027":0,"12028":0,"12029":0,"12030":1,"12031":0,"12032":0,"12033":0,"12034":1,"12035":0,"12036":0,"12037":0,"12038":1,"12039":0,"12040":1,"12041":0,"12042":0,"12043":0,"12044":0,"12045":0,"12046":1,"12047":1,"12048":1,"12049":0,"12050":1,"12051":0,"12052":0,"12053":0,"12054":0,"12055":0,"12056":1,"12057":1,"12058":0,"12059":0,"12060":0,"12061":0,"12062":1,"12063":0,"12064":0,"12065":0,"12066":0,"12067":0,"12068":0,"12069":0,"12070":0,"12071":1,"12072":1,"12073":1,"12074":0,"12075":0,"12076":0,"12077":0,"12078":1,"12079":0,"12080":0,"12081":1,"12082":0,"12083":0,"12084":0,"12085":0,"12086":0,"12087":1,"12088":0,"12089":0,"12090":1,"12091":0,"12092":0,"12093":0,"12094":1,"12095":1,"12096":0,"12097":0,"12098":0,"12099":0,"12100":0,"12101":0,"12102":0,"12103":1,"12104":1,"12105":1,"12106":0,"12107":0,"12108":0,"12109":0,"12110":0,"12111":1,"12112":1,"12113":0,"12114":0,"12115":1,"12116":0,"12117":1,"12118":0,"12119":1,"12120":1,"12121":0,"12122":0,"12123":0,"12124":0,"12125":1,"12126":0,"12127":0,"12128":1,"12129":0,"12130":0,"12131":0,"12132":1,"12133":0,"12134":0,"12135":0,"12136":0,"12137":0,"12138":0,"12139":0,"12140":0,"12141":0,"12142":1,"12143":0,"12144":0,"12145":0,"12146":0,"12147":1,"12148":0,"12149":0,"12150":0,"12151":0,"12152":0,"12153":0,"12154":0,"12155":0,"12156":0,"12157":1,"12158":0,"12159":0,"12160":0,"12161":0,"12162":0,"12163":0,"12164":1,"12165":0,"12166":0,"12167":0,"12168":1,"12169":1,"12170":0,"12171":0,"12172":0,"12173":0,"12174":0,"12175":1,"12176":1,"12177":0,"12178":1,"12179":0,"12180":0,"12181":1,"12182":0,"12183":0,"12184":1,"12185":1,"12186":0,"12187":1,"12188":0,"12189":1,"12190":0,"12191":1,"12192":0,"12193":0,"12194":1,"12195":0,"12196":0,"12197":1,"12198":1,"12199":0,"12200":1,"12201":0,"12202":0,"12203":0,"12204":0,"12205":0,"12206":1,"12207":0,"12208":0,"12209":0,"12210":0,"12211":0,"12212":0,"12213":0,"12214":0,"12215":1,"12216":0,"12217":0,"12218":1,"12219":0,"12220":0,"12221":1,"12222":0,"12223":0,"12224":0,"12225":0,"12226":1,"12227":0,"12228":1,"12229":1,"12230":1,"12231":0,"12232":0,"12233":1,"12234":0,"12235":0,"12236":0,"12237":0,"12238":0,"12239":1,"12240":1,"12241":0,"12242":0,"12243":0,"12244":0,"12245":0,"12246":0,"12247":0,"12248":0,"12249":0,"12250":0,"12251":0,"12252":0,"12253":0,"12254":0,"12255":0,"12256":0,"12257":1,"12258":1,"12259":0,"12260":0,"12261":0,"12262":1,"12263":0,"12264":0,"12265":0,"12266":0,"12267":0,"12268":0,"12269":0,"12270":0,"12271":1,"12272":0,"12273":0,"12274":1,"12275":0,"12276":0,"12277":0,"12278":0,"12279":1,"12280":0,"12281":0,"12282":0,"12283":1,"12284":0,"12285":1,"12286":0,"12287":0,"12288":0,"12289":0,"12290":1,"12291":0,"12292":0,"12293":0,"12294":0,"12295":0,"12296":0,"12297":0,"12298":0,"12299":1,"12300":0,"12301":1,"12302":0,"12303":1,"12304":0,"12305":0,"12306":1,"12307":0,"12308":0,"12309":0,"12310":1,"12311":0,"12312":0,"12313":0,"12314":0,"12315":1,"12316":0,"12317":1,"12318":0,"12319":0,"12320":0,"12321":0,"12322":0,"12323":0,"12324":0,"12325":0,"12326":1,"12327":1,"12328":0,"12329":1,"12330":0,"12331":0,"12332":0,"12333":0,"12334":0,"12335":0,"12336":1,"12337":0,"12338":0,"12339":0,"12340":0,"12341":0,"12342":0,"12343":0,"12344":0,"12345":1,"12346":0,"12347":0,"12348":0,"12349":1,"12350":0,"12351":0,"12352":1,"12353":0,"12354":0,"12355":1,"12356":0,"12357":0,"12358":1,"12359":0,"12360":0,"12361":0,"12362":1,"12363":0,"12364":0,"12365":0,"12366":1,"12367":0,"12368":1,"12369":1,"12370":0,"12371":0,"12372":0,"12373":0,"12374":0,"12375":0,"12376":0,"12377":1,"12378":0,"12379":1,"12380":0,"12381":0,"12382":1,"12383":0,"12384":0,"12385":0,"12386":0,"12387":1,"12388":1,"12389":1,"12390":0,"12391":0,"12392":1,"12393":1,"12394":1,"12395":1,"12396":0,"12397":0,"12398":0,"12399":0,"12400":1,"12401":0,"12402":0,"12403":0,"12404":0,"12405":0,"12406":1,"12407":1,"12408":1,"12409":1,"12410":0,"12411":0,"12412":1,"12413":1,"12414":0,"12415":0,"12416":0,"12417":1,"12418":0,"12419":0,"12420":1,"12421":0,"12422":1,"12423":0,"12424":1,"12425":0,"12426":0,"12427":0,"12428":0,"12429":0,"12430":1,"12431":0,"12432":1,"12433":0,"12434":0,"12435":0,"12436":0,"12437":1,"12438":0,"12439":0,"12440":0,"12441":0,"12442":1,"12443":0,"12444":0,"12445":0,"12446":0,"12447":0,"12448":0,"12449":0,"12450":0,"12451":0,"12452":0,"12453":0,"12454":1,"12455":0,"12456":0,"12457":0,"12458":0,"12459":0,"12460":1,"12461":1,"12462":0,"12463":0,"12464":0,"12465":0,"12466":0,"12467":0,"12468":1,"12469":0,"12470":0,"12471":0,"12472":1,"12473":0,"12474":0,"12475":0,"12476":0,"12477":0,"12478":0,"12479":1,"12480":0,"12481":0,"12482":0,"12483":0,"12484":0,"12485":0,"12486":0,"12487":0,"12488":0,"12489":0,"12490":0,"12491":1,"12492":1,"12493":0,"12494":0,"12495":0,"12496":0,"12497":0,"12498":0,"12499":0,"12500":0,"12501":0,"12502":0,"12503":0,"12504":0,"12505":1,"12506":0,"12507":0,"12508":0,"12509":0,"12510":0,"12511":0,"12512":1,"12513":0,"12514":1,"12515":0,"12516":0,"12517":0,"12518":0,"12519":0,"12520":0,"12521":0,"12522":0,"12523":0,"12524":0,"12525":0,"12526":0,"12527":0,"12528":0,"12529":1,"12530":0,"12531":0,"12532":0,"12533":0,"12534":0,"12535":0,"12536":0,"12537":0,"12538":0,"12539":0,"12540":0,"12541":1,"12542":0,"12543":1,"12544":0,"12545":0,"12546":1,"12547":0,"12548":0,"12549":0,"12550":1,"12551":1,"12552":0,"12553":0,"12554":0,"12555":1,"12556":0,"12557":0,"12558":0,"12559":1,"12560":0,"12561":0,"12562":0,"12563":1,"12564":1,"12565":1,"12566":0,"12567":0,"12568":0,"12569":0,"12570":0,"12571":0,"12572":1,"12573":0,"12574":1,"12575":0,"12576":0,"12577":1,"12578":0,"12579":0,"12580":1,"12581":1,"12582":0,"12583":0,"12584":0,"12585":0,"12586":0,"12587":1,"12588":0,"12589":1,"12590":0,"12591":1,"12592":1,"12593":0,"12594":0,"12595":1,"12596":1,"12597":0,"12598":0,"12599":0,"12600":0,"12601":0,"12602":0,"12603":0,"12604":0,"12605":1,"12606":0,"12607":0,"12608":1,"12609":0,"12610":1,"12611":0,"12612":0,"12613":0,"12614":0,"12615":0,"12616":1,"12617":0,"12618":0,"12619":0,"12620":0,"12621":1,"12622":0,"12623":1,"12624":1,"12625":0,"12626":1,"12627":0,"12628":1,"12629":1,"12630":0,"12631":0,"12632":0,"12633":0,"12634":0,"12635":0,"12636":0,"12637":0,"12638":1,"12639":0,"12640":0,"12641":1,"12642":0,"12643":1,"12644":0,"12645":1,"12646":0,"12647":0,"12648":0,"12649":0,"12650":0,"12651":0,"12652":0,"12653":0,"12654":0,"12655":0,"12656":1,"12657":1,"12658":0,"12659":1,"12660":0,"12661":0,"12662":0,"12663":0,"12664":0,"12665":0,"12666":0,"12667":0,"12668":0,"12669":0,"12670":0,"12671":0,"12672":0,"12673":0,"12674":0,"12675":0,"12676":0,"12677":0,"12678":1,"12679":0,"12680":0,"12681":0,"12682":1,"12683":0,"12684":1,"12685":0,"12686":1,"12687":0,"12688":0,"12689":0,"12690":0,"12691":0,"12692":1,"12693":0,"12694":0,"12695":1,"12696":1,"12697":0,"12698":0,"12699":0,"12700":1,"12701":0,"12702":1,"12703":1,"12704":0,"12705":1,"12706":0,"12707":0,"12708":0,"12709":0,"12710":0,"12711":0,"12712":0,"12713":0,"12714":1,"12715":0,"12716":0,"12717":0,"12718":0,"12719":0,"12720":1,"12721":1,"12722":0,"12723":1,"12724":0,"12725":1,"12726":0,"12727":1,"12728":0,"12729":0,"12730":0,"12731":0,"12732":0,"12733":0,"12734":0,"12735":0,"12736":0,"12737":0,"12738":0,"12739":0,"12740":0,"12741":0,"12742":1,"12743":0,"12744":0,"12745":0,"12746":0,"12747":1,"12748":0,"12749":0,"12750":0,"12751":0,"12752":0,"12753":0,"12754":0,"12755":0,"12756":0,"12757":0,"12758":1,"12759":0,"12760":0,"12761":1,"12762":0,"12763":0,"12764":0,"12765":0,"12766":1,"12767":0,"12768":0,"12769":0,"12770":0,"12771":0,"12772":1,"12773":0,"12774":0,"12775":0,"12776":1,"12777":0,"12778":1,"12779":0,"12780":1,"12781":1,"12782":1,"12783":0,"12784":0,"12785":0,"12786":1,"12787":0,"12788":0,"12789":0,"12790":0,"12791":0,"12792":0,"12793":0,"12794":0,"12795":1,"12796":0,"12797":0,"12798":0,"12799":1,"12800":0,"12801":1,"12802":0,"12803":0,"12804":0,"12805":1,"12806":1,"12807":0,"12808":0,"12809":0,"12810":1,"12811":0,"12812":0,"12813":0,"12814":0,"12815":1,"12816":0,"12817":0,"12818":0,"12819":0,"12820":0,"12821":1,"12822":0,"12823":0,"12824":0,"12825":0,"12826":0,"12827":0,"12828":0,"12829":0,"12830":0,"12831":0,"12832":0,"12833":0,"12834":0,"12835":0,"12836":0,"12837":0,"12838":0,"12839":0,"12840":0,"12841":1,"12842":0,"12843":0,"12844":0,"12845":0,"12846":0,"12847":0,"12848":0,"12849":0,"12850":0,"12851":0,"12852":0,"12853":0,"12854":0,"12855":0,"12856":0,"12857":0,"12858":0,"12859":0,"12860":0,"12861":0,"12862":0,"12863":0,"12864":0,"12865":0,"12866":0,"12867":0,"12868":0,"12869":1,"12870":0,"12871":0,"12872":1,"12873":0,"12874":0,"12875":0,"12876":0,"12877":0,"12878":0,"12879":0,"12880":0,"12881":1,"12882":0,"12883":0,"12884":1,"12885":1,"12886":0,"12887":0,"12888":0,"12889":0,"12890":0,"12891":1,"12892":0,"12893":0,"12894":0,"12895":0,"12896":0,"12897":0,"12898":0,"12899":0,"12900":0,"12901":0,"12902":0,"12903":1,"12904":0,"12905":0,"12906":0,"12907":0,"12908":0,"12909":0,"12910":0,"12911":1,"12912":1,"12913":1,"12914":1,"12915":1,"12916":0,"12917":0,"12918":0,"12919":0,"12920":0,"12921":1,"12922":0,"12923":0,"12924":1,"12925":0,"12926":1,"12927":0,"12928":0,"12929":0,"12930":0,"12931":0,"12932":0,"12933":0,"12934":0,"12935":1,"12936":0,"12937":0,"12938":1,"12939":1,"12940":1,"12941":0,"12942":0,"12943":1,"12944":0,"12945":0,"12946":1,"12947":0,"12948":1,"12949":0,"12950":1,"12951":1,"12952":0,"12953":1,"12954":0,"12955":0,"12956":0,"12957":1,"12958":0,"12959":0,"12960":0,"12961":0,"12962":1,"12963":0,"12964":0,"12965":0,"12966":0,"12967":0,"12968":1,"12969":1,"12970":0,"12971":0,"12972":0,"12973":1,"12974":0,"12975":1,"12976":0,"12977":0,"12978":1,"12979":0,"12980":0,"12981":0,"12982":0,"12983":0,"12984":1,"12985":0,"12986":0,"12987":0,"12988":0,"12989":0,"12990":0,"12991":0,"12992":0,"12993":1,"12994":0,"12995":1,"12996":1,"12997":1,"12998":0,"12999":0,"13000":0,"13001":1,"13002":0,"13003":0,"13004":0,"13005":0,"13006":0,"13007":0,"13008":0,"13009":0,"13010":1,"13011":0,"13012":0,"13013":0,"13014":0,"13015":1,"13016":0,"13017":0,"13018":0,"13019":0,"13020":0,"13021":0,"13022":0,"13023":0,"13024":1,"13025":0,"13026":1,"13027":1,"13028":0,"13029":0,"13030":0,"13031":0,"13032":0,"13033":0,"13034":0,"13035":0,"13036":0,"13037":0,"13038":0,"13039":0,"13040":0,"13041":0,"13042":0,"13043":0,"13044":0,"13045":0,"13046":0,"13047":0,"13048":0,"13049":0,"13050":0,"13051":1,"13052":1,"13053":0,"13054":1,"13055":0,"13056":0,"13057":0,"13058":0,"13059":1,"13060":0,"13061":0,"13062":1,"13063":0,"13064":0,"13065":0,"13066":0,"13067":1,"13068":0,"13069":0,"13070":0,"13071":0,"13072":1,"13073":0,"13074":0,"13075":0,"13076":1,"13077":0,"13078":0,"13079":0,"13080":0,"13081":1,"13082":0,"13083":0,"13084":0,"13085":1,"13086":0,"13087":1,"13088":0,"13089":1,"13090":0,"13091":0,"13092":0,"13093":0,"13094":0,"13095":0,"13096":0,"13097":0,"13098":0,"13099":0,"13100":1,"13101":0,"13102":1,"13103":1,"13104":0,"13105":0,"13106":0,"13107":0,"13108":1,"13109":1,"13110":0,"13111":1,"13112":0,"13113":0,"13114":0,"13115":0,"13116":1,"13117":0,"13118":0,"13119":1,"13120":1,"13121":0,"13122":0,"13123":0,"13124":0,"13125":0,"13126":1,"13127":0,"13128":0,"13129":0,"13130":0,"13131":0,"13132":0,"13133":1,"13134":1,"13135":0,"13136":0,"13137":1,"13138":0,"13139":0,"13140":0,"13141":0,"13142":1,"13143":0,"13144":0,"13145":1,"13146":0,"13147":0,"13148":1,"13149":0,"13150":0,"13151":0,"13152":0,"13153":0,"13154":0,"13155":0,"13156":0,"13157":0,"13158":0,"13159":0,"13160":0,"13161":0,"13162":0,"13163":0,"13164":0,"13165":0,"13166":1,"13167":0,"13168":0,"13169":1,"13170":0,"13171":0,"13172":1,"13173":0,"13174":0,"13175":0,"13176":1,"13177":0,"13178":0,"13179":0,"13180":0,"13181":0,"13182":0,"13183":1,"13184":0,"13185":0,"13186":0,"13187":0,"13188":0,"13189":0,"13190":1,"13191":1,"13192":1,"13193":1,"13194":0,"13195":1,"13196":0,"13197":0,"13198":0,"13199":0,"13200":0,"13201":0,"13202":0,"13203":0,"13204":0,"13205":0,"13206":1,"13207":0,"13208":1,"13209":0,"13210":1,"13211":1,"13212":0,"13213":0,"13214":0,"13215":0,"13216":0,"13217":1,"13218":1,"13219":0,"13220":0,"13221":0,"13222":1,"13223":0,"13224":1,"13225":0,"13226":0,"13227":0,"13228":0,"13229":0,"13230":0,"13231":0,"13232":0,"13233":0,"13234":0,"13235":0,"13236":0,"13237":0,"13238":0,"13239":0,"13240":0,"13241":0,"13242":0,"13243":0,"13244":1,"13245":1,"13246":1,"13247":0,"13248":0,"13249":0,"13250":0,"13251":0,"13252":0,"13253":1,"13254":1,"13255":0,"13256":1,"13257":0,"13258":0,"13259":1,"13260":0,"13261":0,"13262":0,"13263":0,"13264":1,"13265":0,"13266":0,"13267":0,"13268":0,"13269":0,"13270":1,"13271":0,"13272":0,"13273":0,"13274":0,"13275":0,"13276":0,"13277":1,"13278":1,"13279":0,"13280":1,"13281":0,"13282":0,"13283":0,"13284":0,"13285":0,"13286":0,"13287":0,"13288":0,"13289":0,"13290":0,"13291":0,"13292":1,"13293":0,"13294":0,"13295":0,"13296":0,"13297":0,"13298":0,"13299":0,"13300":0,"13301":0,"13302":1,"13303":0,"13304":1,"13305":0,"13306":0,"13307":0,"13308":0,"13309":1,"13310":1,"13311":0,"13312":0,"13313":0,"13314":0,"13315":0,"13316":1,"13317":0,"13318":0,"13319":0,"13320":1,"13321":0,"13322":0,"13323":0,"13324":0,"13325":1,"13326":0,"13327":0,"13328":0,"13329":0,"13330":0,"13331":1,"13332":0,"13333":0,"13334":0,"13335":0,"13336":0,"13337":0,"13338":0,"13339":0,"13340":0,"13341":1,"13342":0,"13343":0,"13344":1,"13345":0,"13346":1,"13347":0,"13348":0,"13349":1,"13350":0,"13351":0,"13352":0,"13353":0,"13354":0,"13355":0,"13356":0,"13357":0,"13358":0,"13359":1,"13360":0,"13361":1,"13362":0,"13363":1,"13364":0,"13365":0,"13366":0,"13367":0,"13368":0,"13369":0,"13370":0,"13371":0,"13372":1,"13373":0,"13374":0,"13375":0,"13376":0,"13377":0,"13378":0,"13379":1,"13380":0,"13381":1,"13382":0,"13383":1,"13384":0,"13385":0,"13386":0,"13387":0,"13388":1,"13389":0,"13390":0,"13391":0,"13392":0,"13393":0,"13394":0,"13395":0,"13396":0,"13397":0,"13398":1,"13399":0,"13400":0,"13401":0,"13402":1,"13403":0,"13404":0,"13405":1,"13406":0,"13407":1,"13408":0,"13409":0,"13410":1,"13411":0,"13412":1,"13413":0,"13414":1,"13415":0,"13416":0,"13417":0,"13418":0,"13419":0,"13420":0,"13421":0,"13422":0,"13423":0,"13424":1,"13425":0,"13426":1,"13427":0,"13428":0,"13429":0,"13430":0,"13431":0,"13432":0,"13433":1,"13434":0,"13435":1,"13436":0,"13437":0,"13438":1,"13439":0,"13440":0,"13441":0,"13442":1,"13443":0,"13444":0,"13445":0,"13446":0,"13447":0,"13448":0,"13449":0,"13450":0,"13451":1,"13452":0,"13453":1,"13454":0,"13455":0,"13456":0,"13457":0,"13458":0,"13459":0,"13460":0,"13461":0,"13462":0,"13463":0,"13464":0,"13465":0,"13466":1,"13467":0,"13468":0,"13469":0,"13470":1,"13471":0,"13472":1,"13473":0,"13474":0,"13475":0,"13476":0,"13477":0,"13478":1,"13479":0,"13480":0,"13481":0,"13482":1,"13483":0,"13484":0,"13485":1,"13486":0,"13487":1,"13488":0,"13489":0,"13490":1,"13491":0,"13492":0,"13493":0,"13494":0,"13495":0,"13496":0,"13497":0,"13498":0,"13499":0,"13500":0,"13501":0,"13502":0,"13503":1,"13504":0,"13505":1,"13506":0,"13507":0,"13508":0,"13509":1,"13510":0,"13511":0,"13512":0,"13513":1,"13514":1,"13515":0,"13516":1,"13517":1,"13518":0,"13519":0,"13520":0,"13521":0,"13522":1,"13523":1,"13524":0,"13525":1,"13526":0,"13527":0,"13528":0,"13529":0,"13530":1,"13531":1,"13532":0,"13533":0,"13534":0,"13535":0,"13536":0,"13537":1,"13538":0,"13539":0,"13540":0,"13541":0,"13542":0,"13543":0,"13544":1,"13545":0,"13546":0,"13547":0,"13548":0,"13549":1,"13550":0,"13551":0,"13552":0,"13553":0,"13554":0,"13555":0,"13556":0,"13557":1,"13558":0,"13559":0,"13560":1,"13561":1,"13562":1,"13563":0,"13564":0,"13565":0,"13566":0,"13567":0,"13568":0,"13569":0,"13570":0,"13571":0,"13572":0,"13573":0,"13574":0,"13575":0,"13576":0,"13577":0,"13578":1,"13579":0,"13580":0,"13581":0,"13582":0,"13583":0,"13584":0,"13585":0,"13586":1,"13587":0,"13588":1,"13589":0,"13590":0,"13591":1,"13592":0,"13593":0,"13594":0,"13595":0,"13596":0,"13597":1,"13598":0,"13599":0,"13600":0,"13601":0,"13602":1,"13603":0,"13604":0,"13605":0,"13606":1,"13607":0,"13608":1,"13609":0,"13610":1,"13611":1,"13612":0,"13613":0,"13614":1,"13615":0,"13616":0,"13617":0,"13618":0,"13619":0,"13620":0,"13621":1,"13622":1,"13623":0,"13624":1,"13625":1,"13626":0,"13627":0,"13628":0,"13629":1,"13630":0,"13631":0,"13632":0,"13633":1,"13634":0,"13635":0,"13636":1,"13637":1,"13638":0,"13639":0,"13640":1,"13641":0,"13642":0,"13643":0,"13644":0,"13645":0,"13646":0,"13647":1,"13648":1,"13649":1,"13650":0,"13651":0,"13652":0,"13653":0,"13654":0,"13655":0,"13656":0,"13657":0,"13658":1,"13659":0,"13660":0,"13661":0,"13662":1,"13663":0,"13664":0,"13665":0,"13666":0,"13667":0,"13668":0,"13669":0,"13670":0,"13671":0,"13672":0,"13673":0,"13674":0,"13675":1,"13676":0,"13677":0,"13678":0,"13679":0,"13680":0,"13681":0,"13682":0,"13683":0,"13684":0,"13685":1,"13686":1,"13687":0,"13688":0,"13689":0,"13690":0,"13691":0,"13692":0,"13693":0,"13694":0,"13695":1,"13696":0,"13697":0,"13698":0,"13699":0,"13700":0,"13701":1,"13702":0,"13703":0,"13704":0,"13705":0,"13706":0,"13707":0,"13708":1,"13709":0,"13710":0,"13711":0,"13712":0,"13713":1,"13714":0,"13715":0,"13716":1,"13717":1,"13718":0,"13719":0,"13720":1,"13721":0,"13722":0,"13723":0,"13724":0,"13725":0,"13726":0,"13727":0,"13728":0,"13729":1,"13730":0,"13731":0,"13732":0,"13733":1,"13734":1,"13735":1,"13736":1,"13737":0,"13738":1,"13739":1,"13740":0,"13741":0,"13742":0,"13743":0,"13744":0,"13745":1,"13746":0,"13747":0,"13748":0,"13749":0,"13750":0,"13751":1,"13752":0,"13753":0,"13754":0,"13755":0,"13756":0,"13757":1,"13758":0,"13759":1,"13760":0,"13761":0,"13762":0,"13763":0,"13764":0,"13765":0,"13766":1,"13767":1,"13768":1,"13769":0,"13770":0,"13771":1,"13772":1,"13773":1,"13774":0,"13775":0,"13776":1,"13777":0,"13778":0,"13779":0,"13780":0,"13781":0,"13782":0,"13783":0,"13784":0,"13785":1,"13786":0,"13787":1,"13788":0,"13789":0,"13790":0,"13791":0,"13792":0,"13793":0,"13794":0,"13795":0,"13796":1,"13797":0,"13798":0,"13799":1,"13800":0,"13801":0,"13802":0,"13803":0,"13804":1,"13805":0,"13806":0,"13807":0,"13808":0,"13809":0,"13810":0,"13811":0,"13812":0,"13813":1,"13814":0,"13815":1,"13816":0,"13817":0,"13818":0,"13819":0,"13820":0,"13821":0,"13822":0,"13823":0,"13824":1,"13825":0,"13826":0,"13827":0,"13828":0,"13829":0,"13830":0,"13831":0,"13832":0,"13833":0,"13834":1,"13835":0,"13836":0,"13837":0,"13838":0,"13839":1,"13840":0,"13841":0,"13842":0,"13843":0,"13844":0,"13845":0,"13846":0,"13847":0,"13848":0,"13849":0,"13850":0,"13851":0,"13852":0,"13853":0,"13854":1,"13855":1,"13856":1,"13857":0,"13858":0,"13859":0,"13860":1,"13861":1,"13862":0,"13863":0,"13864":1,"13865":0,"13866":0,"13867":1,"13868":0,"13869":0,"13870":1,"13871":0,"13872":0,"13873":0,"13874":1,"13875":0,"13876":0,"13877":0,"13878":0,"13879":0,"13880":0,"13881":0,"13882":0,"13883":0,"13884":0,"13885":0,"13886":0,"13887":1,"13888":0,"13889":0,"13890":0,"13891":0,"13892":1,"13893":0,"13894":0,"13895":0,"13896":0,"13897":0,"13898":0,"13899":1,"13900":0,"13901":0,"13902":0,"13903":0,"13904":0,"13905":1,"13906":0,"13907":0,"13908":1,"13909":0,"13910":0,"13911":0,"13912":0,"13913":1,"13914":0,"13915":0,"13916":1,"13917":0,"13918":1,"13919":0,"13920":0,"13921":1,"13922":0,"13923":1,"13924":1,"13925":0,"13926":0,"13927":0,"13928":0,"13929":0,"13930":0,"13931":0,"13932":0,"13933":1,"13934":0,"13935":0,"13936":1,"13937":1,"13938":0,"13939":0,"13940":0,"13941":0,"13942":0,"13943":0,"13944":1,"13945":0,"13946":0,"13947":0,"13948":0,"13949":1,"13950":0,"13951":0,"13952":0,"13953":0,"13954":1,"13955":1,"13956":1,"13957":0,"13958":0,"13959":0,"13960":1,"13961":0,"13962":1,"13963":1,"13964":0,"13965":0,"13966":0,"13967":0,"13968":0,"13969":0,"13970":0,"13971":1,"13972":1,"13973":0,"13974":0,"13975":0,"13976":1,"13977":0,"13978":0,"13979":0,"13980":0,"13981":0,"13982":1,"13983":0,"13984":0,"13985":0,"13986":1,"13987":0,"13988":1,"13989":1,"13990":0,"13991":0,"13992":0,"13993":1,"13994":0,"13995":0,"13996":0,"13997":0,"13998":1,"13999":0,"14000":1,"14001":0,"14002":0,"14003":1,"14004":0,"14005":0,"14006":1,"14007":1,"14008":1,"14009":0,"14010":1,"14011":0,"14012":0,"14013":0,"14014":0,"14015":1,"14016":0,"14017":1,"14018":0,"14019":0,"14020":0,"14021":1,"14022":1,"14023":0,"14024":0,"14025":1,"14026":0,"14027":0,"14028":0,"14029":1,"14030":0,"14031":0,"14032":0,"14033":0,"14034":0,"14035":0,"14036":0,"14037":0,"14038":0,"14039":1,"14040":1,"14041":0,"14042":0,"14043":0,"14044":0,"14045":0,"14046":1,"14047":0,"14048":0,"14049":0,"14050":0,"14051":0,"14052":0,"14053":0,"14054":0,"14055":1,"14056":0,"14057":0,"14058":0,"14059":1,"14060":0,"14061":0,"14062":0,"14063":0,"14064":1,"14065":0,"14066":0,"14067":0,"14068":0,"14069":0,"14070":1,"14071":1,"14072":0,"14073":0,"14074":0,"14075":1,"14076":0,"14077":0,"14078":1,"14079":0,"14080":0,"14081":0,"14082":0,"14083":0,"14084":0,"14085":0,"14086":0,"14087":0,"14088":0,"14089":1,"14090":1,"14091":1,"14092":0,"14093":0,"14094":0,"14095":1,"14096":0,"14097":0,"14098":1,"14099":1,"14100":0,"14101":0,"14102":1,"14103":1,"14104":0,"14105":0,"14106":0,"14107":0,"14108":0,"14109":0,"14110":1,"14111":0,"14112":0,"14113":0,"14114":0,"14115":1,"14116":1,"14117":0,"14118":0,"14119":1,"14120":0,"14121":0,"14122":0,"14123":0,"14124":1,"14125":0,"14126":1,"14127":0,"14128":0,"14129":0,"14130":1,"14131":0,"14132":0,"14133":0,"14134":1,"14135":0,"14136":0,"14137":0,"14138":0,"14139":0,"14140":0,"14141":0,"14142":1,"14143":0,"14144":1,"14145":0,"14146":1,"14147":0,"14148":0,"14149":0,"14150":0,"14151":0,"14152":0,"14153":0,"14154":0,"14155":0,"14156":0,"14157":0,"14158":0,"14159":0,"14160":1,"14161":1,"14162":0,"14163":0,"14164":0,"14165":0,"14166":0,"14167":0,"14168":0,"14169":0,"14170":1,"14171":1,"14172":0,"14173":1,"14174":0,"14175":0,"14176":1,"14177":0,"14178":0,"14179":0,"14180":0,"14181":1,"14182":0,"14183":0,"14184":1,"14185":0,"14186":0,"14187":0,"14188":1,"14189":1,"14190":0,"14191":1,"14192":1,"14193":0,"14194":0,"14195":1,"14196":1,"14197":0,"14198":0,"14199":1,"14200":1,"14201":1,"14202":0,"14203":0,"14204":1,"14205":0,"14206":0,"14207":0,"14208":0,"14209":0,"14210":0,"14211":0,"14212":0,"14213":0,"14214":0,"14215":0,"14216":0,"14217":0,"14218":1,"14219":0,"14220":1,"14221":0,"14222":0,"14223":1,"14224":1,"14225":0,"14226":0,"14227":0,"14228":0,"14229":0,"14230":0,"14231":0,"14232":1,"14233":0,"14234":0,"14235":1,"14236":0,"14237":0,"14238":0,"14239":1,"14240":0,"14241":0,"14242":0,"14243":0,"14244":1,"14245":1,"14246":1,"14247":0,"14248":1,"14249":0,"14250":0,"14251":0,"14252":0,"14253":0,"14254":0,"14255":0,"14256":0,"14257":0,"14258":0,"14259":0,"14260":0,"14261":1,"14262":0,"14263":0,"14264":1,"14265":0,"14266":1,"14267":0,"14268":0,"14269":1,"14270":0,"14271":1,"14272":0,"14273":0,"14274":0,"14275":0,"14276":0,"14277":1,"14278":0,"14279":0,"14280":1,"14281":0,"14282":0,"14283":0,"14284":0,"14285":1,"14286":1,"14287":0,"14288":0,"14289":0,"14290":0,"14291":1,"14292":1,"14293":0,"14294":1,"14295":0,"14296":0,"14297":0,"14298":1,"14299":0,"14300":0,"14301":0,"14302":0,"14303":0,"14304":1,"14305":0,"14306":0,"14307":0,"14308":0,"14309":0,"14310":0,"14311":0,"14312":0,"14313":1,"14314":1,"14315":0,"14316":0,"14317":0,"14318":0,"14319":1,"14320":0,"14321":0,"14322":0,"14323":1,"14324":1,"14325":0,"14326":0,"14327":0,"14328":0,"14329":1,"14330":0,"14331":0,"14332":1,"14333":0,"14334":1,"14335":0,"14336":1,"14337":0,"14338":0,"14339":0,"14340":1,"14341":0,"14342":0,"14343":0,"14344":0,"14345":0,"14346":0,"14347":1,"14348":1,"14349":1,"14350":0,"14351":0,"14352":0,"14353":0,"14354":1,"14355":0,"14356":0,"14357":1,"14358":0,"14359":0,"14360":0,"14361":1,"14362":1,"14363":0,"14364":0,"14365":1,"14366":0,"14367":1,"14368":0,"14369":0,"14370":0,"14371":0,"14372":0,"14373":0,"14374":1,"14375":0,"14376":0,"14377":0,"14378":1,"14379":0,"14380":1,"14381":1,"14382":1,"14383":0,"14384":1,"14385":0,"14386":0,"14387":1,"14388":0,"14389":1,"14390":0,"14391":0,"14392":0,"14393":0,"14394":1,"14395":0,"14396":1,"14397":0,"14398":1,"14399":0,"14400":1,"14401":0,"14402":0,"14403":0,"14404":0,"14405":0,"14406":1,"14407":0,"14408":0,"14409":1,"14410":0,"14411":0,"14412":0,"14413":0,"14414":0,"14415":0,"14416":0,"14417":0,"14418":0,"14419":0,"14420":0,"14421":0,"14422":0,"14423":0,"14424":1,"14425":0,"14426":0,"14427":1,"14428":0,"14429":0,"14430":0,"14431":1,"14432":0,"14433":0,"14434":0,"14435":0,"14436":0,"14437":1,"14438":1,"14439":0,"14440":1,"14441":0,"14442":0,"14443":0,"14444":0,"14445":1,"14446":0,"14447":0,"14448":0,"14449":0,"14450":1,"14451":0,"14452":0,"14453":0,"14454":0,"14455":0,"14456":0,"14457":0,"14458":0,"14459":0,"14460":0,"14461":0,"14462":0,"14463":1,"14464":0,"14465":0,"14466":0,"14467":1,"14468":0,"14469":0,"14470":0,"14471":1,"14472":0,"14473":0,"14474":0,"14475":0,"14476":0,"14477":1,"14478":0,"14479":1,"14480":0,"14481":0,"14482":0,"14483":0,"14484":0,"14485":0,"14486":0,"14487":0,"14488":0,"14489":0,"14490":0,"14491":0,"14492":0,"14493":0,"14494":0,"14495":0,"14496":0,"14497":0,"14498":0,"14499":0,"14500":0,"14501":0,"14502":0,"14503":1,"14504":0,"14505":0,"14506":0,"14507":0,"14508":1,"14509":0,"14510":0,"14511":0,"14512":0,"14513":0,"14514":1,"14515":0,"14516":0,"14517":0,"14518":0,"14519":0,"14520":0,"14521":0,"14522":1,"14523":0,"14524":1,"14525":0,"14526":0,"14527":1,"14528":0,"14529":1,"14530":0,"14531":0,"14532":0,"14533":0,"14534":0,"14535":0,"14536":0,"14537":1,"14538":1,"14539":1,"14540":0,"14541":0,"14542":0,"14543":0,"14544":0,"14545":0,"14546":1,"14547":0,"14548":0,"14549":1,"14550":1,"14551":1,"14552":0,"14553":1,"14554":0,"14555":0,"14556":0,"14557":0,"14558":0,"14559":0,"14560":0,"14561":0,"14562":0,"14563":0,"14564":1,"14565":0,"14566":1,"14567":0,"14568":0,"14569":0,"14570":1,"14571":0,"14572":0,"14573":0,"14574":0,"14575":0,"14576":0,"14577":0,"14578":1,"14579":0,"14580":0,"14581":1,"14582":1,"14583":0,"14584":0,"14585":0,"14586":1,"14587":1,"14588":0,"14589":0,"14590":0,"14591":0,"14592":0,"14593":0,"14594":0,"14595":1,"14596":0,"14597":0,"14598":0,"14599":0,"14600":0,"14601":0,"14602":0,"14603":0,"14604":1,"14605":0,"14606":0,"14607":0,"14608":0,"14609":0,"14610":0,"14611":0,"14612":0,"14613":0,"14614":0,"14615":1,"14616":0,"14617":0,"14618":0,"14619":1,"14620":0,"14621":1,"14622":0,"14623":0,"14624":0,"14625":0,"14626":0,"14627":1,"14628":0,"14629":0,"14630":0,"14631":1,"14632":0,"14633":1,"14634":0,"14635":1,"14636":0,"14637":0,"14638":0,"14639":0,"14640":0,"14641":0,"14642":0,"14643":0,"14644":1,"14645":0,"14646":0,"14647":1,"14648":1,"14649":0,"14650":0,"14651":1,"14652":0,"14653":0,"14654":0,"14655":0,"14656":1,"14657":1,"14658":0,"14659":0,"14660":0,"14661":1,"14662":1,"14663":0,"14664":0,"14665":0,"14666":0,"14667":0,"14668":0,"14669":0,"14670":0,"14671":0,"14672":0,"14673":0,"14674":0,"14675":1,"14676":0,"14677":1,"14678":0,"14679":0,"14680":0,"14681":0,"14682":0,"14683":1,"14684":0,"14685":1,"14686":0,"14687":0,"14688":0,"14689":0,"14690":0,"14691":1,"14692":0,"14693":0,"14694":0,"14695":0,"14696":0,"14697":0,"14698":0,"14699":0,"14700":0,"14701":0,"14702":1,"14703":0,"14704":0,"14705":1,"14706":0,"14707":1,"14708":1,"14709":0,"14710":0,"14711":1,"14712":0,"14713":1,"14714":0,"14715":0,"14716":0,"14717":0,"14718":0,"14719":0,"14720":0,"14721":0,"14722":0,"14723":0,"14724":1,"14725":0,"14726":0,"14727":0,"14728":0,"14729":0,"14730":0,"14731":1,"14732":0,"14733":0,"14734":0,"14735":0,"14736":0,"14737":1,"14738":0,"14739":0,"14740":0,"14741":1,"14742":0,"14743":0,"14744":0,"14745":1,"14746":1,"14747":0,"14748":0,"14749":1,"14750":1,"14751":0,"14752":0,"14753":0,"14754":0,"14755":0,"14756":0,"14757":1,"14758":0,"14759":0,"14760":1,"14761":0,"14762":0,"14763":0,"14764":0,"14765":0,"14766":1,"14767":0,"14768":0,"14769":0,"14770":0,"14771":0,"14772":0,"14773":1,"14774":1,"14775":0,"14776":1,"14777":0,"14778":0,"14779":1,"14780":1,"14781":1,"14782":0,"14783":0,"14784":0,"14785":0,"14786":0,"14787":1,"14788":0,"14789":0,"14790":1,"14791":0,"14792":0,"14793":1,"14794":0,"14795":0,"14796":0,"14797":0,"14798":1,"14799":0,"14800":0,"14801":0,"14802":1,"14803":0,"14804":0,"14805":1,"14806":1,"14807":0,"14808":0,"14809":1,"14810":0,"14811":1,"14812":0,"14813":1,"14814":0,"14815":0,"14816":0,"14817":0,"14818":0,"14819":0,"14820":0,"14821":0,"14822":0,"14823":0,"14824":1,"14825":1,"14826":0,"14827":1,"14828":0,"14829":0,"14830":0,"14831":0,"14832":0,"14833":0,"14834":0,"14835":0,"14836":0,"14837":1,"14838":0,"14839":1,"14840":1,"14841":1,"14842":0,"14843":1,"14844":0,"14845":0,"14846":0,"14847":1,"14848":0,"14849":1,"14850":0,"14851":0,"14852":0,"14853":0,"14854":0,"14855":0,"14856":1,"14857":1,"14858":1,"14859":0,"14860":0,"14861":0,"14862":0,"14863":0,"14864":0,"14865":1,"14866":0,"14867":0,"14868":1,"14869":0,"14870":0,"14871":0,"14872":0,"14873":0,"14874":0,"14875":1,"14876":1,"14877":0,"14878":1,"14879":0,"14880":0,"14881":0,"14882":0,"14883":0,"14884":0,"14885":0,"14886":0,"14887":0,"14888":0,"14889":1,"14890":0,"14891":0,"14892":0,"14893":1,"14894":0,"14895":0,"14896":0,"14897":0,"14898":0,"14899":1,"14900":1,"14901":0,"14902":0,"14903":0,"14904":0,"14905":0,"14906":0,"14907":1,"14908":0,"14909":0,"14910":0,"14911":1,"14912":0,"14913":0,"14914":0,"14915":0,"14916":0,"14917":0,"14918":0,"14919":0,"14920":1,"14921":0,"14922":1,"14923":0,"14924":0,"14925":0,"14926":0,"14927":0,"14928":0,"14929":1,"14930":0,"14931":0,"14932":0,"14933":0,"14934":0,"14935":0,"14936":0,"14937":0,"14938":1,"14939":1,"14940":0,"14941":1,"14942":0,"14943":0,"14944":0,"14945":1,"14946":1,"14947":1,"14948":0,"14949":0,"14950":0,"14951":1,"14952":1,"14953":1,"14954":1,"14955":0,"14956":0,"14957":0,"14958":0,"14959":0,"14960":0,"14961":0,"14962":0,"14963":0,"14964":0,"14965":1,"14966":0,"14967":0,"14968":0,"14969":0,"14970":1,"14971":0,"14972":0,"14973":0,"14974":0,"14975":1,"14976":0,"14977":0,"14978":0,"14979":1,"14980":0,"14981":1,"14982":0,"14983":0,"14984":1,"14985":1,"14986":1,"14987":0,"14988":0,"14989":0,"14990":0,"14991":1,"14992":0,"14993":0,"14994":0,"14995":0,"14996":0,"14997":0,"14998":1,"14999":0,"15000":0,"15001":0,"15002":0,"15003":1,"15004":0,"15005":0,"15006":0,"15007":0,"15008":0,"15009":0,"15010":0,"15011":1,"15012":0,"15013":0,"15014":0,"15015":0,"15016":0,"15017":0,"15018":0,"15019":0,"15020":0,"15021":0,"15022":1,"15023":1,"15024":0,"15025":0,"15026":0,"15027":0,"15028":0,"15029":0,"15030":0,"15031":0,"15032":0,"15033":1,"15034":1,"15035":0,"15036":1,"15037":0,"15038":1,"15039":0,"15040":0,"15041":0,"15042":0,"15043":0,"15044":0,"15045":1,"15046":0,"15047":1,"15048":1,"15049":0,"15050":1,"15051":0,"15052":0,"15053":0,"15054":1,"15055":1,"15056":0,"15057":0,"15058":1,"15059":1,"15060":0,"15061":0,"15062":0,"15063":0,"15064":0,"15065":0,"15066":0,"15067":0,"15068":0,"15069":0,"15070":0,"15071":0,"15072":0,"15073":0,"15074":0,"15075":0,"15076":0,"15077":1,"15078":1,"15079":0,"15080":0,"15081":0,"15082":0,"15083":1,"15084":0,"15085":0,"15086":0,"15087":1,"15088":0,"15089":1,"15090":1,"15091":0,"15092":0,"15093":1,"15094":0,"15095":1,"15096":0,"15097":1,"15098":1,"15099":0,"15100":0,"15101":1,"15102":1,"15103":0,"15104":1,"15105":1,"15106":0,"15107":0,"15108":0,"15109":0,"15110":0,"15111":1,"15112":0,"15113":0,"15114":0,"15115":0,"15116":1,"15117":0,"15118":1,"15119":0,"15120":0,"15121":0,"15122":1,"15123":0,"15124":1,"15125":0,"15126":0,"15127":0,"15128":1,"15129":0,"15130":0,"15131":1,"15132":0,"15133":1,"15134":0,"15135":0,"15136":1,"15137":1,"15138":0,"15139":0,"15140":1,"15141":0,"15142":0,"15143":0,"15144":1,"15145":1,"15146":0,"15147":0,"15148":0,"15149":0,"15150":1,"15151":0,"15152":0,"15153":1,"15154":0,"15155":0,"15156":0,"15157":0,"15158":0,"15159":1,"15160":0,"15161":0,"15162":0,"15163":0,"15164":0,"15165":0,"15166":0,"15167":0,"15168":1,"15169":0,"15170":0,"15171":0,"15172":0,"15173":1,"15174":1,"15175":1,"15176":0,"15177":0,"15178":0,"15179":0,"15180":0,"15181":0,"15182":1,"15183":0,"15184":1,"15185":0,"15186":1,"15187":0,"15188":1,"15189":1,"15190":0,"15191":0,"15192":0,"15193":1,"15194":1,"15195":0,"15196":0,"15197":0,"15198":1,"15199":0,"15200":1,"15201":0,"15202":0,"15203":0,"15204":0,"15205":0,"15206":0,"15207":1,"15208":0,"15209":0,"15210":0,"15211":0,"15212":0,"15213":1,"15214":0,"15215":0,"15216":0,"15217":1,"15218":0,"15219":0,"15220":0,"15221":0,"15222":0,"15223":0,"15224":0,"15225":0,"15226":0,"15227":0,"15228":1,"15229":0,"15230":1,"15231":0,"15232":0,"15233":0,"15234":0,"15235":0,"15236":0,"15237":0,"15238":0,"15239":1,"15240":1,"15241":1,"15242":0,"15243":0,"15244":0,"15245":0,"15246":1,"15247":0,"15248":0,"15249":0,"15250":0,"15251":0,"15252":1,"15253":0,"15254":0,"15255":0,"15256":0,"15257":0,"15258":0,"15259":1,"15260":0,"15261":0,"15262":0,"15263":1,"15264":0,"15265":0,"15266":0,"15267":0,"15268":0,"15269":0,"15270":0,"15271":0,"15272":0,"15273":0,"15274":0,"15275":1,"15276":0,"15277":0,"15278":0,"15279":1,"15280":0,"15281":0,"15282":0,"15283":1,"15284":0,"15285":0,"15286":1,"15287":0,"15288":0,"15289":0,"15290":0,"15291":0,"15292":0,"15293":1,"15294":0,"15295":0,"15296":0,"15297":0,"15298":0,"15299":1,"15300":0,"15301":0,"15302":1,"15303":0,"15304":0,"15305":0,"15306":0,"15307":0,"15308":0,"15309":0,"15310":1,"15311":1,"15312":0,"15313":0,"15314":1,"15315":0,"15316":0,"15317":0,"15318":0,"15319":0,"15320":0,"15321":0,"15322":0,"15323":0,"15324":0,"15325":0,"15326":0,"15327":1,"15328":1,"15329":0,"15330":1,"15331":1,"15332":1,"15333":0,"15334":0,"15335":0,"15336":0,"15337":1,"15338":0,"15339":0,"15340":1,"15341":1,"15342":0,"15343":0,"15344":0,"15345":0,"15346":0,"15347":0,"15348":0,"15349":1,"15350":0,"15351":0,"15352":0,"15353":0,"15354":0,"15355":0,"15356":0,"15357":1,"15358":0,"15359":0,"15360":0,"15361":0,"15362":0,"15363":0,"15364":0,"15365":0,"15366":0,"15367":0,"15368":0,"15369":1,"15370":0,"15371":1,"15372":1,"15373":1,"15374":0,"15375":1,"15376":1,"15377":0,"15378":1,"15379":0,"15380":1,"15381":0,"15382":0,"15383":0,"15384":0,"15385":0,"15386":0,"15387":0,"15388":0,"15389":0,"15390":0,"15391":0,"15392":0,"15393":0,"15394":0,"15395":0,"15396":1,"15397":1,"15398":0,"15399":0,"15400":0,"15401":1,"15402":0,"15403":1,"15404":1,"15405":0,"15406":1,"15407":1,"15408":1,"15409":0,"15410":0,"15411":0,"15412":0,"15413":0,"15414":0,"15415":0,"15416":0,"15417":0,"15418":0,"15419":0,"15420":0,"15421":1,"15422":0,"15423":1,"15424":0,"15425":0,"15426":0,"15427":0,"15428":0,"15429":0,"15430":0,"15431":0,"15432":1,"15433":0,"15434":0,"15435":0,"15436":0,"15437":0,"15438":0,"15439":1,"15440":0,"15441":0,"15442":0,"15443":0,"15444":1,"15445":1,"15446":1,"15447":0,"15448":0,"15449":0,"15450":0,"15451":0,"15452":0,"15453":0,"15454":0,"15455":0,"15456":0,"15457":0,"15458":1,"15459":1,"15460":0,"15461":1,"15462":0,"15463":0,"15464":0,"15465":0,"15466":1,"15467":0,"15468":0,"15469":0,"15470":0,"15471":0,"15472":0,"15473":0,"15474":0,"15475":0,"15476":0,"15477":0,"15478":0,"15479":1,"15480":0,"15481":0,"15482":0,"15483":1,"15484":1,"15485":1,"15486":1,"15487":1,"15488":0,"15489":1,"15490":0,"15491":0,"15492":0,"15493":1,"15494":0,"15495":1,"15496":0,"15497":0,"15498":0,"15499":0,"15500":0,"15501":0,"15502":1,"15503":0,"15504":0,"15505":0,"15506":0,"15507":0,"15508":1,"15509":0,"15510":0,"15511":1,"15512":0,"15513":0,"15514":0,"15515":0,"15516":0,"15517":0,"15518":0,"15519":0,"15520":0,"15521":0,"15522":0,"15523":0,"15524":0,"15525":0,"15526":0,"15527":0,"15528":1,"15529":0,"15530":1,"15531":0,"15532":0,"15533":0,"15534":0,"15535":0,"15536":1,"15537":1,"15538":0,"15539":0,"15540":1,"15541":1,"15542":1,"15543":0,"15544":0,"15545":0,"15546":1,"15547":0,"15548":0,"15549":0,"15550":0,"15551":0,"15552":0,"15553":0,"15554":0,"15555":1,"15556":0,"15557":1,"15558":1,"15559":0,"15560":0,"15561":1,"15562":0,"15563":0,"15564":0,"15565":0,"15566":0,"15567":0,"15568":1,"15569":0,"15570":0,"15571":1,"15572":0,"15573":0,"15574":1,"15575":1,"15576":1,"15577":0,"15578":0,"15579":0,"15580":0,"15581":0,"15582":0,"15583":1,"15584":0,"15585":0,"15586":1,"15587":0,"15588":0,"15589":0,"15590":1,"15591":0,"15592":0,"15593":0,"15594":0,"15595":0,"15596":0,"15597":1,"15598":0,"15599":0,"15600":0,"15601":0,"15602":0,"15603":0,"15604":0,"15605":1,"15606":1,"15607":0,"15608":0,"15609":0,"15610":0,"15611":0,"15612":0,"15613":0,"15614":0,"15615":0,"15616":0,"15617":0,"15618":0,"15619":0,"15620":1,"15621":0,"15622":1,"15623":0,"15624":1,"15625":0,"15626":0,"15627":0,"15628":0,"15629":0,"15630":0,"15631":0,"15632":0,"15633":0,"15634":0,"15635":0,"15636":0,"15637":0,"15638":0,"15639":0,"15640":0,"15641":0,"15642":0,"15643":0,"15644":1,"15645":0,"15646":0,"15647":0,"15648":0,"15649":0,"15650":0,"15651":0,"15652":0,"15653":0,"15654":0,"15655":0,"15656":0,"15657":0,"15658":1,"15659":0,"15660":0,"15661":0,"15662":1,"15663":0,"15664":0,"15665":0,"15666":0,"15667":1,"15668":0,"15669":0,"15670":1,"15671":1,"15672":0,"15673":0,"15674":0,"15675":0,"15676":0,"15677":1,"15678":0,"15679":0,"15680":0,"15681":1,"15682":0,"15683":0,"15684":1,"15685":0,"15686":0,"15687":0,"15688":0,"15689":0,"15690":0,"15691":0,"15692":1,"15693":0,"15694":0,"15695":0,"15696":1,"15697":0,"15698":0,"15699":0,"15700":0,"15701":0,"15702":0,"15703":0,"15704":0,"15705":0,"15706":1,"15707":0,"15708":0,"15709":0,"15710":0,"15711":1,"15712":0,"15713":0,"15714":1,"15715":0,"15716":0,"15717":1,"15718":1,"15719":1,"15720":0,"15721":0,"15722":1,"15723":0,"15724":0,"15725":1,"15726":0,"15727":1,"15728":0,"15729":0,"15730":0,"15731":0,"15732":1,"15733":0,"15734":0,"15735":1,"15736":0,"15737":0,"15738":0,"15739":1,"15740":0,"15741":0,"15742":0,"15743":0,"15744":0,"15745":1,"15746":0,"15747":0,"15748":1,"15749":0,"15750":0,"15751":0,"15752":0,"15753":0,"15754":1,"15755":0,"15756":0,"15757":0,"15758":0,"15759":0,"15760":0,"15761":0,"15762":0,"15763":0,"15764":1,"15765":1,"15766":0,"15767":1,"15768":0,"15769":1,"15770":0,"15771":1,"15772":0,"15773":0,"15774":0,"15775":1,"15776":0,"15777":0,"15778":0,"15779":1,"15780":0,"15781":0,"15782":0,"15783":1,"15784":0,"15785":0,"15786":0,"15787":1,"15788":1,"15789":0,"15790":0,"15791":1,"15792":0,"15793":0,"15794":1,"15795":0,"15796":0,"15797":0,"15798":0,"15799":0,"15800":1,"15801":0,"15802":0,"15803":1,"15804":1,"15805":0,"15806":0,"15807":0,"15808":0,"15809":0,"15810":0,"15811":0,"15812":1,"15813":0,"15814":0,"15815":0,"15816":0,"15817":0,"15818":1,"15819":0,"15820":1,"15821":0,"15822":0,"15823":0,"15824":0,"15825":0,"15826":0,"15827":1,"15828":0,"15829":0,"15830":0,"15831":1,"15832":0,"15833":1,"15834":0,"15835":0,"15836":0,"15837":0,"15838":0,"15839":1,"15840":0,"15841":1,"15842":0,"15843":0,"15844":0,"15845":1,"15846":0,"15847":1,"15848":0,"15849":1,"15850":0,"15851":0,"15852":0,"15853":0,"15854":0,"15855":1,"15856":0,"15857":0,"15858":0,"15859":0,"15860":0,"15861":1,"15862":0,"15863":0,"15864":0,"15865":1,"15866":1,"15867":0,"15868":0,"15869":0,"15870":0,"15871":0,"15872":0,"15873":1,"15874":0,"15875":0,"15876":0,"15877":0,"15878":1,"15879":0,"15880":0,"15881":1,"15882":0,"15883":0,"15884":0,"15885":1,"15886":0,"15887":1,"15888":0,"15889":0,"15890":1,"15891":0,"15892":0,"15893":0,"15894":0,"15895":0,"15896":0,"15897":0,"15898":0,"15899":0,"15900":0,"15901":0,"15902":0,"15903":1,"15904":0,"15905":0,"15906":0,"15907":0,"15908":0,"15909":0,"15910":1,"15911":1,"15912":0,"15913":0,"15914":0,"15915":0,"15916":0,"15917":0,"15918":0,"15919":1,"15920":0,"15921":0,"15922":0,"15923":0,"15924":0,"15925":1,"15926":0,"15927":0,"15928":0,"15929":0,"15930":0,"15931":0,"15932":0,"15933":0,"15934":0,"15935":0,"15936":0,"15937":0,"15938":0,"15939":0,"15940":0,"15941":0,"15942":0,"15943":0,"15944":0,"15945":0,"15946":0,"15947":1,"15948":0,"15949":0,"15950":0,"15951":0,"15952":0,"15953":1,"15954":0,"15955":0,"15956":0,"15957":0,"15958":1,"15959":0,"15960":0,"15961":1,"15962":0,"15963":0,"15964":0,"15965":0,"15966":0,"15967":0,"15968":0,"15969":0,"15970":0,"15971":0,"15972":0,"15973":0,"15974":0,"15975":0,"15976":0,"15977":0,"15978":0,"15979":0,"15980":0,"15981":0,"15982":1,"15983":0,"15984":1,"15985":0,"15986":0,"15987":0,"15988":1,"15989":1,"15990":0,"15991":1,"15992":0,"15993":0,"15994":0,"15995":0,"15996":1,"15997":0,"15998":1,"15999":1,"16000":1,"16001":1,"16002":0,"16003":1,"16004":1,"16005":0,"16006":0,"16007":0,"16008":0,"16009":1,"16010":0,"16011":0,"16012":0,"16013":1,"16014":0,"16015":1,"16016":0,"16017":0,"16018":0,"16019":0,"16020":1,"16021":0,"16022":0,"16023":0,"16024":0,"16025":1,"16026":0,"16027":0,"16028":0,"16029":0,"16030":0,"16031":0,"16032":1,"16033":1,"16034":0,"16035":0,"16036":0,"16037":0,"16038":1,"16039":0,"16040":0,"16041":0,"16042":0,"16043":0,"16044":0,"16045":1,"16046":0,"16047":0,"16048":1,"16049":0,"16050":0,"16051":0,"16052":0,"16053":1,"16054":0,"16055":1,"16056":0,"16057":1,"16058":0,"16059":0,"16060":0,"16061":0,"16062":0,"16063":0,"16064":0,"16065":0,"16066":1,"16067":1,"16068":0,"16069":0,"16070":0,"16071":0,"16072":0,"16073":1,"16074":0,"16075":1,"16076":0,"16077":0,"16078":0,"16079":0,"16080":0,"16081":0,"16082":0,"16083":1,"16084":1,"16085":1,"16086":0,"16087":1,"16088":0,"16089":0,"16090":0,"16091":0,"16092":0,"16093":0,"16094":1,"16095":0,"16096":0,"16097":0,"16098":1,"16099":0,"16100":1,"16101":0,"16102":0,"16103":0,"16104":0,"16105":0,"16106":0,"16107":1,"16108":0,"16109":1,"16110":0,"16111":0,"16112":1,"16113":0,"16114":1,"16115":0,"16116":1,"16117":0,"16118":0,"16119":0,"16120":0,"16121":0,"16122":0,"16123":0,"16124":0,"16125":0,"16126":0,"16127":1,"16128":1,"16129":0,"16130":0,"16131":0,"16132":1,"16133":0,"16134":0,"16135":1,"16136":0,"16137":0,"16138":0,"16139":0,"16140":0,"16141":0,"16142":0,"16143":1,"16144":0,"16145":0,"16146":1,"16147":1,"16148":1,"16149":0,"16150":0,"16151":0,"16152":0,"16153":1,"16154":0,"16155":1,"16156":0,"16157":0,"16158":0,"16159":0,"16160":0,"16161":1,"16162":0,"16163":0,"16164":0,"16165":0,"16166":0,"16167":1,"16168":0,"16169":0,"16170":0,"16171":0,"16172":0,"16173":0,"16174":0,"16175":0,"16176":0,"16177":0,"16178":0,"16179":0,"16180":1,"16181":0,"16182":0,"16183":1,"16184":0,"16185":0,"16186":1,"16187":0,"16188":0,"16189":0,"16190":0,"16191":0,"16192":0,"16193":0,"16194":0,"16195":1,"16196":0,"16197":0,"16198":0,"16199":0,"16200":0,"16201":0,"16202":0,"16203":0,"16204":0,"16205":0,"16206":1,"16207":0,"16208":0,"16209":0,"16210":0,"16211":0,"16212":0,"16213":0,"16214":0,"16215":0,"16216":0,"16217":0,"16218":0,"16219":0,"16220":0,"16221":1,"16222":0,"16223":0,"16224":0,"16225":1,"16226":0,"16227":1,"16228":1,"16229":0,"16230":0,"16231":0,"16232":0,"16233":0,"16234":0,"16235":1,"16236":0,"16237":0,"16238":0,"16239":0,"16240":0,"16241":0,"16242":1,"16243":0,"16244":1,"16245":0,"16246":0,"16247":0,"16248":0,"16249":0,"16250":0,"16251":0,"16252":0,"16253":0,"16254":0,"16255":0,"16256":0,"16257":1,"16258":0,"16259":0,"16260":0,"16261":1,"16262":1,"16263":0,"16264":0,"16265":0,"16266":0,"16267":0,"16268":0,"16269":1,"16270":0,"16271":0,"16272":0,"16273":0,"16274":1,"16275":0,"16276":1,"16277":1,"16278":1,"16279":0,"16280":0,"16281":0,"16282":0,"16283":0,"16284":1,"16285":0,"16286":0,"16287":0,"16288":1,"16289":0,"16290":1,"16291":0,"16292":0,"16293":0,"16294":0,"16295":0,"16296":0,"16297":1,"16298":0,"16299":0,"16300":0,"16301":0,"16302":0,"16303":0,"16304":0,"16305":0,"16306":1,"16307":0,"16308":0,"16309":1,"16310":1,"16311":0,"16312":0,"16313":0,"16314":0,"16315":0,"16316":0,"16317":0,"16318":0,"16319":0,"16320":1,"16321":1,"16322":1,"16323":1,"16324":0,"16325":1,"16326":0,"16327":1,"16328":0,"16329":1,"16330":1,"16331":0,"16332":0,"16333":0,"16334":0,"16335":0,"16336":0,"16337":0,"16338":1,"16339":0,"16340":1,"16341":0,"16342":0,"16343":0,"16344":0,"16345":0,"16346":0,"16347":0,"16348":0,"16349":0,"16350":0,"16351":0,"16352":1,"16353":0,"16354":1,"16355":1,"16356":0,"16357":0,"16358":0,"16359":0,"16360":0,"16361":0,"16362":0,"16363":0,"16364":0,"16365":1,"16366":0,"16367":0,"16368":0,"16369":1,"16370":0,"16371":0,"16372":0,"16373":0,"16374":0,"16375":0,"16376":0,"16377":1,"16378":0,"16379":0,"16380":0,"16381":1,"16382":0,"16383":0,"16384":0,"16385":0,"16386":0,"16387":0,"16388":1,"16389":0,"16390":1,"16391":0,"16392":1,"16393":1,"16394":0,"16395":0,"16396":0,"16397":0,"16398":1,"16399":0,"16400":0,"16401":0,"16402":0,"16403":1,"16404":0,"16405":0,"16406":1,"16407":0,"16408":0,"16409":0,"16410":0,"16411":0,"16412":0,"16413":0,"16414":1,"16415":0,"16416":0,"16417":1,"16418":1,"16419":0,"16420":0,"16421":0,"16422":0,"16423":1,"16424":0,"16425":0,"16426":1,"16427":1,"16428":0,"16429":0,"16430":0,"16431":0,"16432":0,"16433":0,"16434":1,"16435":0,"16436":0,"16437":0,"16438":0,"16439":1,"16440":0,"16441":1,"16442":0,"16443":0,"16444":1,"16445":0,"16446":0,"16447":0,"16448":0,"16449":0,"16450":0,"16451":1,"16452":1,"16453":1,"16454":0,"16455":1,"16456":0,"16457":0,"16458":0,"16459":0,"16460":0,"16461":1,"16462":0,"16463":0,"16464":0,"16465":0,"16466":0,"16467":1,"16468":1,"16469":1,"16470":1,"16471":0,"16472":0,"16473":1,"16474":0,"16475":1,"16476":0,"16477":1,"16478":1,"16479":1,"16480":1,"16481":0,"16482":1,"16483":0,"16484":1,"16485":0,"16486":1,"16487":0,"16488":0,"16489":0,"16490":1,"16491":0,"16492":0,"16493":0,"16494":0,"16495":0,"16496":1,"16497":0,"16498":0,"16499":1,"16500":0,"16501":1,"16502":0,"16503":0,"16504":0,"16505":1,"16506":1,"16507":0,"16508":0,"16509":1,"16510":0,"16511":0,"16512":0,"16513":1,"16514":0,"16515":0,"16516":0,"16517":0,"16518":0,"16519":0,"16520":0,"16521":1,"16522":0,"16523":0,"16524":0,"16525":0,"16526":0,"16527":0,"16528":0,"16529":0,"16530":0,"16531":0,"16532":0,"16533":0,"16534":0,"16535":0,"16536":1,"16537":0,"16538":0,"16539":1,"16540":0,"16541":0,"16542":0,"16543":1,"16544":0,"16545":0,"16546":1,"16547":0,"16548":0,"16549":0,"16550":0,"16551":0,"16552":0,"16553":1,"16554":0,"16555":1,"16556":1,"16557":0,"16558":1,"16559":0,"16560":0,"16561":0,"16562":0,"16563":0,"16564":1,"16565":0,"16566":0,"16567":0,"16568":0,"16569":0,"16570":0,"16571":0,"16572":0,"16573":0,"16574":0,"16575":1,"16576":0,"16577":0,"16578":1,"16579":0,"16580":1,"16581":0,"16582":0,"16583":1,"16584":1,"16585":0,"16586":0,"16587":0,"16588":1,"16589":0,"16590":0,"16591":1,"16592":1,"16593":0,"16594":1,"16595":0,"16596":1,"16597":0,"16598":0,"16599":1,"16600":0,"16601":1,"16602":0,"16603":1,"16604":0,"16605":0,"16606":0,"16607":0,"16608":1,"16609":0,"16610":0,"16611":0,"16612":0,"16613":0,"16614":0,"16615":0,"16616":0,"16617":0,"16618":0,"16619":0,"16620":1,"16621":0,"16622":1,"16623":0,"16624":0,"16625":0,"16626":0,"16627":1,"16628":0,"16629":0,"16630":0,"16631":0,"16632":0,"16633":0,"16634":0,"16635":1,"16636":0,"16637":0,"16638":1,"16639":1,"16640":1,"16641":1,"16642":0,"16643":1,"16644":0,"16645":0,"16646":1,"16647":0,"16648":0,"16649":0,"16650":0,"16651":0,"16652":1,"16653":1,"16654":0,"16655":1,"16656":0,"16657":0,"16658":0,"16659":0,"16660":0,"16661":0,"16662":0,"16663":0,"16664":1,"16665":0,"16666":0,"16667":1,"16668":0,"16669":0,"16670":0,"16671":0,"16672":0,"16673":0,"16674":0,"16675":1,"16676":0,"16677":1,"16678":0,"16679":0,"16680":1,"16681":0,"16682":1,"16683":0,"16684":0,"16685":1,"16686":0,"16687":0,"16688":0,"16689":1,"16690":1,"16691":0,"16692":1,"16693":0,"16694":1,"16695":0,"16696":0,"16697":0,"16698":0,"16699":0,"16700":0,"16701":0,"16702":0,"16703":0,"16704":0,"16705":0,"16706":0,"16707":0,"16708":0,"16709":1,"16710":0,"16711":0,"16712":0,"16713":0,"16714":0,"16715":0,"16716":1,"16717":0,"16718":1,"16719":0,"16720":0,"16721":0,"16722":1,"16723":1,"16724":0,"16725":0,"16726":1,"16727":0,"16728":0,"16729":0,"16730":1,"16731":0,"16732":1,"16733":0,"16734":1,"16735":0,"16736":0,"16737":0,"16738":0,"16739":0,"16740":0,"16741":1,"16742":1,"16743":0,"16744":0,"16745":1,"16746":0,"16747":0,"16748":1,"16749":0,"16750":0,"16751":0,"16752":0,"16753":0,"16754":1,"16755":0,"16756":0,"16757":1,"16758":1,"16759":0,"16760":0,"16761":1,"16762":0,"16763":0,"16764":0,"16765":1,"16766":0,"16767":0,"16768":0,"16769":1,"16770":0,"16771":0,"16772":1,"16773":0,"16774":0,"16775":0,"16776":0,"16777":0,"16778":1,"16779":0,"16780":0,"16781":0,"16782":0,"16783":0,"16784":0,"16785":1,"16786":0,"16787":1,"16788":0,"16789":0,"16790":0,"16791":0,"16792":0,"16793":0,"16794":1,"16795":1,"16796":0,"16797":0,"16798":0,"16799":0,"16800":1,"16801":0,"16802":0,"16803":0,"16804":0,"16805":0,"16806":0,"16807":0,"16808":0,"16809":1,"16810":0,"16811":0,"16812":1,"16813":0,"16814":0,"16815":0,"16816":0,"16817":1,"16818":1,"16819":0,"16820":0,"16821":0,"16822":1,"16823":0,"16824":1,"16825":1,"16826":0,"16827":1,"16828":0,"16829":0,"16830":0,"16831":0,"16832":0,"16833":1,"16834":0,"16835":0,"16836":1,"16837":1,"16838":0,"16839":0,"16840":0,"16841":0,"16842":0,"16843":0,"16844":1,"16845":0,"16846":0,"16847":0,"16848":0,"16849":1,"16850":0,"16851":1,"16852":0,"16853":1,"16854":1,"16855":0,"16856":1,"16857":0,"16858":1,"16859":0,"16860":0,"16861":0,"16862":0,"16863":0,"16864":0,"16865":0,"16866":0,"16867":0,"16868":0,"16869":1,"16870":1,"16871":0,"16872":0,"16873":0,"16874":0,"16875":0,"16876":0,"16877":1,"16878":1,"16879":1,"16880":0,"16881":0,"16882":0,"16883":0,"16884":0,"16885":0,"16886":1,"16887":0,"16888":1,"16889":1,"16890":0,"16891":0,"16892":0,"16893":1,"16894":0,"16895":1,"16896":0,"16897":1,"16898":0,"16899":0,"16900":0,"16901":1,"16902":0,"16903":0,"16904":1,"16905":0,"16906":0,"16907":0,"16908":1,"16909":1,"16910":0,"16911":0,"16912":0,"16913":1,"16914":0,"16915":0,"16916":0,"16917":0,"16918":0,"16919":0,"16920":0,"16921":1,"16922":0,"16923":0,"16924":0,"16925":0,"16926":1,"16927":0,"16928":0,"16929":0,"16930":0,"16931":0,"16932":0,"16933":0,"16934":0,"16935":0,"16936":1,"16937":0,"16938":0,"16939":0,"16940":1,"16941":1,"16942":0,"16943":0,"16944":1,"16945":0,"16946":0,"16947":0,"16948":1,"16949":0,"16950":0,"16951":0,"16952":1,"16953":0,"16954":1,"16955":0,"16956":0,"16957":0,"16958":0,"16959":1,"16960":1,"16961":0,"16962":0,"16963":0,"16964":0,"16965":0,"16966":0,"16967":0,"16968":0,"16969":0,"16970":0,"16971":0,"16972":1,"16973":0,"16974":0,"16975":1,"16976":0,"16977":0,"16978":1,"16979":0,"16980":0,"16981":0,"16982":0,"16983":0,"16984":0,"16985":0,"16986":1,"16987":1,"16988":0,"16989":0,"16990":0,"16991":0,"16992":1,"16993":0,"16994":0,"16995":0,"16996":0,"16997":0,"16998":0,"16999":0,"17000":1,"17001":0,"17002":0,"17003":0,"17004":1,"17005":1,"17006":0,"17007":1,"17008":0,"17009":0,"17010":0,"17011":1,"17012":1,"17013":0,"17014":1,"17015":0,"17016":0,"17017":1,"17018":0,"17019":0,"17020":0,"17021":0,"17022":1,"17023":1,"17024":1,"17025":0,"17026":0,"17027":0,"17028":1,"17029":1,"17030":1,"17031":1,"17032":1,"17033":1,"17034":0,"17035":0,"17036":1,"17037":0,"17038":0,"17039":0,"17040":1,"17041":0,"17042":1,"17043":1,"17044":0,"17045":1,"17046":0,"17047":1,"17048":1,"17049":0,"17050":0,"17051":0,"17052":0,"17053":0,"17054":0,"17055":0,"17056":1,"17057":0,"17058":0,"17059":0,"17060":0,"17061":1,"17062":0,"17063":0,"17064":0,"17065":0,"17066":0,"17067":0,"17068":1,"17069":1,"17070":0,"17071":0,"17072":0,"17073":0,"17074":0,"17075":0,"17076":1,"17077":0,"17078":0,"17079":0,"17080":0,"17081":0,"17082":0,"17083":1,"17084":0,"17085":1,"17086":1,"17087":0,"17088":0,"17089":0,"17090":0,"17091":1,"17092":1,"17093":1,"17094":1,"17095":0,"17096":1,"17097":1,"17098":0,"17099":0,"17100":1,"17101":1,"17102":1,"17103":0,"17104":1,"17105":0,"17106":0,"17107":0,"17108":1,"17109":0,"17110":0,"17111":1,"17112":0,"17113":0,"17114":0,"17115":0,"17116":0,"17117":0,"17118":1,"17119":1,"17120":0,"17121":1,"17122":0,"17123":0,"17124":1,"17125":0,"17126":0,"17127":0,"17128":0,"17129":0,"17130":0,"17131":0,"17132":1,"17133":0,"17134":0,"17135":0,"17136":0,"17137":1,"17138":1,"17139":1,"17140":1,"17141":0,"17142":0,"17143":0,"17144":1,"17145":1,"17146":0,"17147":0,"17148":1,"17149":0,"17150":0,"17151":1,"17152":0,"17153":1,"17154":0,"17155":0,"17156":0,"17157":0,"17158":0,"17159":0,"17160":0,"17161":0,"17162":1,"17163":1,"17164":0,"17165":1,"17166":0,"17167":0,"17168":1,"17169":0,"17170":0,"17171":0,"17172":1,"17173":0,"17174":1,"17175":0,"17176":0,"17177":1,"17178":0,"17179":0,"17180":0,"17181":0,"17182":1,"17183":1,"17184":0,"17185":0,"17186":1,"17187":0,"17188":0,"17189":0,"17190":0,"17191":0,"17192":1,"17193":1,"17194":1,"17195":0,"17196":0,"17197":0,"17198":0,"17199":0,"17200":0,"17201":0,"17202":0,"17203":0,"17204":0,"17205":1,"17206":1,"17207":0,"17208":1,"17209":0,"17210":0,"17211":0,"17212":1,"17213":0,"17214":0,"17215":0,"17216":0,"17217":0,"17218":0,"17219":1,"17220":0,"17221":1,"17222":0,"17223":0,"17224":0,"17225":0,"17226":0,"17227":0,"17228":0,"17229":0,"17230":0,"17231":1,"17232":1,"17233":0,"17234":0,"17235":0,"17236":1,"17237":0,"17238":0,"17239":0,"17240":0,"17241":1,"17242":0,"17243":0,"17244":1,"17245":1,"17246":1,"17247":0,"17248":0,"17249":0,"17250":0,"17251":1,"17252":0,"17253":0,"17254":1,"17255":1,"17256":0,"17257":0,"17258":0,"17259":0,"17260":1,"17261":0,"17262":0,"17263":0,"17264":0,"17265":0,"17266":0,"17267":0,"17268":1,"17269":0,"17270":0,"17271":0,"17272":0,"17273":0,"17274":0,"17275":0,"17276":0,"17277":0,"17278":0,"17279":1,"17280":0,"17281":1,"17282":0,"17283":0,"17284":1,"17285":0,"17286":1,"17287":0,"17288":1,"17289":0,"17290":0,"17291":0,"17292":0,"17293":0,"17294":0,"17295":0,"17296":0,"17297":0,"17298":0,"17299":1,"17300":0,"17301":0,"17302":0,"17303":0,"17304":0,"17305":0,"17306":0,"17307":0,"17308":0,"17309":0,"17310":0,"17311":0,"17312":0,"17313":0,"17314":1,"17315":1,"17316":1,"17317":0,"17318":0,"17319":0,"17320":0,"17321":0,"17322":0,"17323":0,"17324":0,"17325":0,"17326":1,"17327":0,"17328":0,"17329":1,"17330":0,"17331":0,"17332":0,"17333":1,"17334":0,"17335":0,"17336":0,"17337":0,"17338":0,"17339":0,"17340":0,"17341":1,"17342":0,"17343":1,"17344":1,"17345":0,"17346":0,"17347":0,"17348":0,"17349":1,"17350":0,"17351":0,"17352":1,"17353":0,"17354":0,"17355":0,"17356":0,"17357":0,"17358":1,"17359":0,"17360":1,"17361":0,"17362":0,"17363":0,"17364":0,"17365":0,"17366":1,"17367":1,"17368":0,"17369":0,"17370":0,"17371":0,"17372":0,"17373":0,"17374":0,"17375":1,"17376":0,"17377":0,"17378":0,"17379":0,"17380":0,"17381":0,"17382":0,"17383":0,"17384":0,"17385":0,"17386":1,"17387":0,"17388":0,"17389":1,"17390":0,"17391":0,"17392":0,"17393":0,"17394":0,"17395":0,"17396":0,"17397":0,"17398":0,"17399":0,"17400":0,"17401":0,"17402":0,"17403":0,"17404":0,"17405":0,"17406":0,"17407":1,"17408":0,"17409":0,"17410":1,"17411":0,"17412":0,"17413":1,"17414":0,"17415":0,"17416":1,"17417":0,"17418":1,"17419":0,"17420":1,"17421":0,"17422":1,"17423":0,"17424":0,"17425":0,"17426":1,"17427":0,"17428":0,"17429":1,"17430":0,"17431":0,"17432":0,"17433":0,"17434":0,"17435":1,"17436":0,"17437":0,"17438":0,"17439":1,"17440":0,"17441":0,"17442":0,"17443":1,"17444":0,"17445":0,"17446":1,"17447":0,"17448":0,"17449":1,"17450":0,"17451":0,"17452":0,"17453":0,"17454":0,"17455":1,"17456":0,"17457":0,"17458":0,"17459":0,"17460":0,"17461":0,"17462":1,"17463":1,"17464":1,"17465":0,"17466":0,"17467":0,"17468":0,"17469":0,"17470":0,"17471":0,"17472":0,"17473":0,"17474":0,"17475":1,"17476":0,"17477":1,"17478":0,"17479":0,"17480":0,"17481":1,"17482":1,"17483":0,"17484":0,"17485":1,"17486":0,"17487":0,"17488":0,"17489":1,"17490":1,"17491":1,"17492":0,"17493":0,"17494":0,"17495":0,"17496":0,"17497":0,"17498":0,"17499":1,"17500":0,"17501":1,"17502":0,"17503":0,"17504":1,"17505":0,"17506":1,"17507":0,"17508":0,"17509":0,"17510":0,"17511":0,"17512":0,"17513":1,"17514":0,"17515":0,"17516":1,"17517":0,"17518":0,"17519":1,"17520":1,"17521":0,"17522":0,"17523":1,"17524":1,"17525":0,"17526":0,"17527":0,"17528":0,"17529":0,"17530":0,"17531":1,"17532":0,"17533":0,"17534":0,"17535":0,"17536":0,"17537":1,"17538":1,"17539":0,"17540":0,"17541":0,"17542":1,"17543":0,"17544":0,"17545":0,"17546":0,"17547":0,"17548":0,"17549":0,"17550":0,"17551":0,"17552":0,"17553":1,"17554":0,"17555":0,"17556":1,"17557":1,"17558":0,"17559":0,"17560":0,"17561":0,"17562":0,"17563":0,"17564":0,"17565":0,"17566":0,"17567":1,"17568":0,"17569":0,"17570":1,"17571":0,"17572":0,"17573":0,"17574":0,"17575":0,"17576":0,"17577":0,"17578":0,"17579":0,"17580":1,"17581":0,"17582":0,"17583":0,"17584":1,"17585":1,"17586":0,"17587":0,"17588":0,"17589":0,"17590":0,"17591":0,"17592":0,"17593":0,"17594":0,"17595":1,"17596":0,"17597":1,"17598":0,"17599":1,"17600":0,"17601":0,"17602":0,"17603":0,"17604":0,"17605":0,"17606":0,"17607":0,"17608":0,"17609":0,"17610":0,"17611":0,"17612":1,"17613":1,"17614":1,"17615":0,"17616":1,"17617":0,"17618":0,"17619":0,"17620":0,"17621":0,"17622":1,"17623":1,"17624":0,"17625":0,"17626":0,"17627":0,"17628":1,"17629":0,"17630":0,"17631":0,"17632":0,"17633":0,"17634":0,"17635":0,"17636":0,"17637":0,"17638":1,"17639":1,"17640":0,"17641":1,"17642":0,"17643":0,"17644":1,"17645":0,"17646":0,"17647":0,"17648":1,"17649":0,"17650":0,"17651":0,"17652":0,"17653":1,"17654":0,"17655":0,"17656":1,"17657":0,"17658":0,"17659":0,"17660":0,"17661":1,"17662":0,"17663":0,"17664":0,"17665":0,"17666":1,"17667":0,"17668":1,"17669":0,"17670":0,"17671":0,"17672":1,"17673":0,"17674":0,"17675":0,"17676":0,"17677":0,"17678":0,"17679":0,"17680":1,"17681":0,"17682":0,"17683":0,"17684":0,"17685":0,"17686":0,"17687":0,"17688":0,"17689":0,"17690":0,"17691":0,"17692":1,"17693":0,"17694":0,"17695":1,"17696":1,"17697":0,"17698":0,"17699":1,"17700":1,"17701":0,"17702":0,"17703":0,"17704":1,"17705":0,"17706":0,"17707":1,"17708":0,"17709":0,"17710":0,"17711":1,"17712":0,"17713":0,"17714":0,"17715":0,"17716":0,"17717":0,"17718":1,"17719":0,"17720":0,"17721":0,"17722":0,"17723":0,"17724":1,"17725":0,"17726":0,"17727":0,"17728":0,"17729":0,"17730":0,"17731":0,"17732":0,"17733":0,"17734":0,"17735":1,"17736":1,"17737":0,"17738":1,"17739":0,"17740":0,"17741":0,"17742":1,"17743":1,"17744":1,"17745":0,"17746":0,"17747":1,"17748":0,"17749":1,"17750":0,"17751":0,"17752":0,"17753":0,"17754":1,"17755":0,"17756":0,"17757":1,"17758":0,"17759":0,"17760":0,"17761":0,"17762":1,"17763":0,"17764":0,"17765":0,"17766":1,"17767":0,"17768":0,"17769":0,"17770":0,"17771":0,"17772":0,"17773":1,"17774":0,"17775":1,"17776":1,"17777":1,"17778":1,"17779":0,"17780":0,"17781":1,"17782":0,"17783":0,"17784":0,"17785":0,"17786":0,"17787":0,"17788":0,"17789":0,"17790":0,"17791":1,"17792":0,"17793":1,"17794":0,"17795":1,"17796":1,"17797":0,"17798":0,"17799":0,"17800":0,"17801":0,"17802":1,"17803":0,"17804":0,"17805":0,"17806":1,"17807":1,"17808":0,"17809":0,"17810":0,"17811":0,"17812":0,"17813":0,"17814":0,"17815":0,"17816":0,"17817":0,"17818":0,"17819":0,"17820":0,"17821":1,"17822":0,"17823":0,"17824":0,"17825":0,"17826":0,"17827":1,"17828":1,"17829":0,"17830":0,"17831":0,"17832":0,"17833":0,"17834":1,"17835":0,"17836":0,"17837":1,"17838":0,"17839":0,"17840":0,"17841":0,"17842":1,"17843":0,"17844":0,"17845":0,"17846":0,"17847":1,"17848":0,"17849":1,"17850":0,"17851":0,"17852":0,"17853":0,"17854":0,"17855":0,"17856":0,"17857":0,"17858":1,"17859":0,"17860":0,"17861":0,"17862":0,"17863":0,"17864":1,"17865":1,"17866":0,"17867":1,"17868":0,"17869":0,"17870":1,"17871":1,"17872":1,"17873":0,"17874":0,"17875":0,"17876":0,"17877":0,"17878":0,"17879":0,"17880":0,"17881":0,"17882":0,"17883":0,"17884":0,"17885":1,"17886":0,"17887":0,"17888":0,"17889":1,"17890":0,"17891":0,"17892":1,"17893":1,"17894":0,"17895":1,"17896":0,"17897":0,"17898":0,"17899":0,"17900":1,"17901":0,"17902":1,"17903":0,"17904":0,"17905":0,"17906":0,"17907":1,"17908":1,"17909":0,"17910":0,"17911":0,"17912":0,"17913":1,"17914":1,"17915":0,"17916":0,"17917":1,"17918":0,"17919":0,"17920":1,"17921":0,"17922":1,"17923":0,"17924":1,"17925":1,"17926":1,"17927":0,"17928":1,"17929":0,"17930":0,"17931":0,"17932":0,"17933":0,"17934":0,"17935":0,"17936":0,"17937":1,"17938":0,"17939":0,"17940":1,"17941":0,"17942":0,"17943":0,"17944":0,"17945":0,"17946":1,"17947":1,"17948":1,"17949":0,"17950":0,"17951":0,"17952":0,"17953":1,"17954":0,"17955":0,"17956":0,"17957":0,"17958":0,"17959":0,"17960":0,"17961":0,"17962":0,"17963":1,"17964":0,"17965":0,"17966":0,"17967":0,"17968":0,"17969":1,"17970":0,"17971":0,"17972":0,"17973":1,"17974":0,"17975":0,"17976":0,"17977":0,"17978":0,"17979":0,"17980":1,"17981":1,"17982":0,"17983":1,"17984":0,"17985":1,"17986":0,"17987":0,"17988":0,"17989":0,"17990":0,"17991":1,"17992":1,"17993":1,"17994":0,"17995":1,"17996":0,"17997":0,"17998":0,"17999":1,"18000":0,"18001":0,"18002":0,"18003":0,"18004":0,"18005":0,"18006":0,"18007":0,"18008":1,"18009":0,"18010":0,"18011":0,"18012":0,"18013":0,"18014":1,"18015":0,"18016":0,"18017":0,"18018":0,"18019":0,"18020":0,"18021":0,"18022":0,"18023":0,"18024":1,"18025":0,"18026":0,"18027":1,"18028":1,"18029":0,"18030":0,"18031":0,"18032":0,"18033":0,"18034":0,"18035":0,"18036":1,"18037":1,"18038":1,"18039":0,"18040":1,"18041":0,"18042":0,"18043":0,"18044":0,"18045":0,"18046":0,"18047":1,"18048":0,"18049":0,"18050":0,"18051":0,"18052":0,"18053":0,"18054":0,"18055":1,"18056":1,"18057":0,"18058":1,"18059":0,"18060":0,"18061":0,"18062":0,"18063":0,"18064":0,"18065":1,"18066":0,"18067":0,"18068":1,"18069":1,"18070":1,"18071":1,"18072":0,"18073":1,"18074":0,"18075":0,"18076":1,"18077":0,"18078":0,"18079":0,"18080":0,"18081":0,"18082":1,"18083":1,"18084":1,"18085":0,"18086":0,"18087":1,"18088":1,"18089":0,"18090":0,"18091":0,"18092":0,"18093":1,"18094":0,"18095":0,"18096":1,"18097":0,"18098":1,"18099":0,"18100":0,"18101":1,"18102":0,"18103":0,"18104":0,"18105":1,"18106":0,"18107":1,"18108":0,"18109":0,"18110":0,"18111":1,"18112":0,"18113":1,"18114":0,"18115":0,"18116":0,"18117":0,"18118":0,"18119":0,"18120":0,"18121":0,"18122":0,"18123":0,"18124":0,"18125":0,"18126":1,"18127":0,"18128":1,"18129":0,"18130":0,"18131":0,"18132":1,"18133":0,"18134":0,"18135":1,"18136":1,"18137":0,"18138":0,"18139":0,"18140":0,"18141":0,"18142":0,"18143":0,"18144":0,"18145":1,"18146":0,"18147":0,"18148":1,"18149":0,"18150":1,"18151":0,"18152":0,"18153":0,"18154":0,"18155":0,"18156":0,"18157":0,"18158":0,"18159":0,"18160":0,"18161":0,"18162":0,"18163":1,"18164":1,"18165":1,"18166":1,"18167":0,"18168":0,"18169":0,"18170":0,"18171":0,"18172":1,"18173":0,"18174":1,"18175":0,"18176":1,"18177":0,"18178":0,"18179":0,"18180":0,"18181":0,"18182":0,"18183":1,"18184":0,"18185":0,"18186":1,"18187":0,"18188":1,"18189":1,"18190":1,"18191":1,"18192":0,"18193":0,"18194":1,"18195":1,"18196":0,"18197":0,"18198":0,"18199":0,"18200":0,"18201":0,"18202":0,"18203":0,"18204":0,"18205":0,"18206":0,"18207":0,"18208":0,"18209":0,"18210":0,"18211":1,"18212":0,"18213":1,"18214":1,"18215":1,"18216":1,"18217":0,"18218":0,"18219":0,"18220":0,"18221":0,"18222":0,"18223":0,"18224":0,"18225":1,"18226":0,"18227":1,"18228":0,"18229":1,"18230":0,"18231":0,"18232":1,"18233":0,"18234":1,"18235":0,"18236":0,"18237":0,"18238":0,"18239":0,"18240":0,"18241":0,"18242":0,"18243":0,"18244":1,"18245":0,"18246":0,"18247":0,"18248":0,"18249":0,"18250":1,"18251":0,"18252":0,"18253":0,"18254":0,"18255":0,"18256":0,"18257":0,"18258":0,"18259":1,"18260":0,"18261":0,"18262":0,"18263":0,"18264":0,"18265":0,"18266":0,"18267":0,"18268":0,"18269":0,"18270":0,"18271":0,"18272":0,"18273":0,"18274":1,"18275":0,"18276":0,"18277":0,"18278":0,"18279":0,"18280":0,"18281":0,"18282":0,"18283":0,"18284":0,"18285":1,"18286":0,"18287":0,"18288":0,"18289":0,"18290":0,"18291":0,"18292":0,"18293":0,"18294":0,"18295":0,"18296":0,"18297":0,"18298":1,"18299":0,"18300":0,"18301":0,"18302":1,"18303":0,"18304":0,"18305":0,"18306":1,"18307":1,"18308":0,"18309":0,"18310":0,"18311":0,"18312":0,"18313":0,"18314":0,"18315":1,"18316":1,"18317":0,"18318":1,"18319":1,"18320":0,"18321":0,"18322":1,"18323":0,"18324":0,"18325":0,"18326":1,"18327":0,"18328":0,"18329":1,"18330":0,"18331":0,"18332":0,"18333":1,"18334":0,"18335":0,"18336":0,"18337":0,"18338":0,"18339":0,"18340":0,"18341":0,"18342":0,"18343":0,"18344":1,"18345":0,"18346":0,"18347":0,"18348":0,"18349":0,"18350":0,"18351":0,"18352":0,"18353":1,"18354":0,"18355":0,"18356":0,"18357":0,"18358":0,"18359":0,"18360":1,"18361":0,"18362":0,"18363":0,"18364":0,"18365":1,"18366":1,"18367":1,"18368":0,"18369":0,"18370":0,"18371":0,"18372":1,"18373":1,"18374":0,"18375":0,"18376":1,"18377":0,"18378":0,"18379":1,"18380":1,"18381":0,"18382":0,"18383":0,"18384":0,"18385":0,"18386":1,"18387":1,"18388":0,"18389":0,"18390":0,"18391":0,"18392":0,"18393":0,"18394":0,"18395":0,"18396":0,"18397":1,"18398":1,"18399":0,"18400":0,"18401":0,"18402":1,"18403":0,"18404":0,"18405":1,"18406":0,"18407":1,"18408":0,"18409":1,"18410":0,"18411":0,"18412":0,"18413":0,"18414":1,"18415":0,"18416":0,"18417":0,"18418":1,"18419":0,"18420":0,"18421":0,"18422":0,"18423":0,"18424":0,"18425":0,"18426":0,"18427":0,"18428":1,"18429":0,"18430":0,"18431":0,"18432":0,"18433":0,"18434":0,"18435":0,"18436":0,"18437":1,"18438":0,"18439":0,"18440":0,"18441":0,"18442":1,"18443":0,"18444":0,"18445":0,"18446":0,"18447":0,"18448":1,"18449":0,"18450":0,"18451":0,"18452":0,"18453":1,"18454":0,"18455":0,"18456":1,"18457":1,"18458":0,"18459":0,"18460":1,"18461":0,"18462":1,"18463":1,"18464":0,"18465":0,"18466":0,"18467":1,"18468":0,"18469":0,"18470":0,"18471":0,"18472":1,"18473":0,"18474":0,"18475":0,"18476":0,"18477":0,"18478":0,"18479":0,"18480":0,"18481":0,"18482":0,"18483":0,"18484":1,"18485":1,"18486":0,"18487":0,"18488":0,"18489":0,"18490":0,"18491":0,"18492":0,"18493":0,"18494":1,"18495":0,"18496":0,"18497":0,"18498":0,"18499":0,"18500":0,"18501":0,"18502":0,"18503":1,"18504":0,"18505":0,"18506":1,"18507":0,"18508":0,"18509":0,"18510":0,"18511":0,"18512":0,"18513":0,"18514":1,"18515":0,"18516":0,"18517":0,"18518":1,"18519":0,"18520":0,"18521":0,"18522":0,"18523":0,"18524":0,"18525":1,"18526":0,"18527":1,"18528":0,"18529":0,"18530":0,"18531":0,"18532":0,"18533":0,"18534":0,"18535":0,"18536":0,"18537":0,"18538":0,"18539":0,"18540":1,"18541":0,"18542":0,"18543":1,"18544":0,"18545":0,"18546":0,"18547":1,"18548":0,"18549":0,"18550":1,"18551":0,"18552":1,"18553":1,"18554":1,"18555":0,"18556":1,"18557":0,"18558":0,"18559":1,"18560":0,"18561":0,"18562":0,"18563":0,"18564":0,"18565":0,"18566":0,"18567":0,"18568":0,"18569":0,"18570":0,"18571":1,"18572":0,"18573":0,"18574":0,"18575":0,"18576":0,"18577":1,"18578":0,"18579":1,"18580":0,"18581":1,"18582":1,"18583":0,"18584":0,"18585":0,"18586":1,"18587":0,"18588":0,"18589":1,"18590":0,"18591":0,"18592":1,"18593":0,"18594":0,"18595":0,"18596":0,"18597":0,"18598":0,"18599":1,"18600":0,"18601":0,"18602":0,"18603":1,"18604":0,"18605":1,"18606":0,"18607":0,"18608":1,"18609":1,"18610":0,"18611":1,"18612":1,"18613":0,"18614":0,"18615":0,"18616":0,"18617":0,"18618":1,"18619":0,"18620":1,"18621":0,"18622":0,"18623":0,"18624":1,"18625":0,"18626":0,"18627":0,"18628":0,"18629":0,"18630":0,"18631":0,"18632":1,"18633":0,"18634":1,"18635":0,"18636":1,"18637":1,"18638":0,"18639":0,"18640":0,"18641":1,"18642":0,"18643":0,"18644":0,"18645":0,"18646":0,"18647":0,"18648":1,"18649":0,"18650":0,"18651":0,"18652":0,"18653":1,"18654":1,"18655":0,"18656":0,"18657":0,"18658":0,"18659":1,"18660":0,"18661":0,"18662":1,"18663":0,"18664":0,"18665":0,"18666":1,"18667":0,"18668":1,"18669":0,"18670":0,"18671":0,"18672":0,"18673":0,"18674":0,"18675":0,"18676":0,"18677":0,"18678":0,"18679":0,"18680":1,"18681":1,"18682":0,"18683":0,"18684":1,"18685":1,"18686":1,"18687":0,"18688":1,"18689":1,"18690":1,"18691":0,"18692":1,"18693":0,"18694":1,"18695":1,"18696":0,"18697":1,"18698":0,"18699":0,"18700":0,"18701":0,"18702":0,"18703":0,"18704":0,"18705":0,"18706":0,"18707":0,"18708":0,"18709":0,"18710":1,"18711":0,"18712":0,"18713":0,"18714":0,"18715":0,"18716":0,"18717":1,"18718":0,"18719":0,"18720":0,"18721":0,"18722":0,"18723":1,"18724":1,"18725":0,"18726":0,"18727":0,"18728":0,"18729":1,"18730":0,"18731":1,"18732":0,"18733":0,"18734":1,"18735":0,"18736":0,"18737":0,"18738":1,"18739":0,"18740":0,"18741":0,"18742":0,"18743":0,"18744":0,"18745":0,"18746":0,"18747":0,"18748":0,"18749":1,"18750":0,"18751":0,"18752":0,"18753":0,"18754":0,"18755":0,"18756":0,"18757":0,"18758":0,"18759":0,"18760":0,"18761":0,"18762":0,"18763":0,"18764":0,"18765":0,"18766":0,"18767":0,"18768":1,"18769":0,"18770":1,"18771":0,"18772":0,"18773":1,"18774":0,"18775":1,"18776":0,"18777":1,"18778":0,"18779":0,"18780":0,"18781":0,"18782":0,"18783":1,"18784":0,"18785":1,"18786":0,"18787":0,"18788":0,"18789":0,"18790":0,"18791":0,"18792":0,"18793":0,"18794":0,"18795":0,"18796":0,"18797":1,"18798":0,"18799":0,"18800":0,"18801":0,"18802":0,"18803":0,"18804":0,"18805":0,"18806":0,"18807":0,"18808":0,"18809":0,"18810":0,"18811":1,"18812":1,"18813":0,"18814":0,"18815":0,"18816":1,"18817":0,"18818":1,"18819":0,"18820":0,"18821":0,"18822":1,"18823":1,"18824":1,"18825":0,"18826":0,"18827":0,"18828":0,"18829":0,"18830":0,"18831":0,"18832":0,"18833":0,"18834":0,"18835":0,"18836":0,"18837":0,"18838":0,"18839":0,"18840":0,"18841":0,"18842":0,"18843":0,"18844":0,"18845":0,"18846":0,"18847":0,"18848":0,"18849":0,"18850":0,"18851":1,"18852":0,"18853":0,"18854":1,"18855":0,"18856":1,"18857":0,"18858":1,"18859":0,"18860":0,"18861":0,"18862":1,"18863":0,"18864":0,"18865":0,"18866":0,"18867":0,"18868":0,"18869":0,"18870":0,"18871":0,"18872":0,"18873":1,"18874":0,"18875":0,"18876":0,"18877":1,"18878":0,"18879":0,"18880":0,"18881":0,"18882":0,"18883":0,"18884":0,"18885":0,"18886":1,"18887":0,"18888":1,"18889":1,"18890":0,"18891":0,"18892":0,"18893":0,"18894":0,"18895":0,"18896":0,"18897":0,"18898":0,"18899":0,"18900":1,"18901":0,"18902":0,"18903":0,"18904":1,"18905":0,"18906":0,"18907":0,"18908":0,"18909":0,"18910":0,"18911":0,"18912":0,"18913":1,"18914":0,"18915":0,"18916":0,"18917":0,"18918":0,"18919":0,"18920":1,"18921":1,"18922":1,"18923":0,"18924":0,"18925":1,"18926":0,"18927":0,"18928":1,"18929":0,"18930":1,"18931":0,"18932":0,"18933":0,"18934":1,"18935":1,"18936":0,"18937":1,"18938":0,"18939":1,"18940":0,"18941":1,"18942":1,"18943":0,"18944":1,"18945":0,"18946":0,"18947":1,"18948":1,"18949":1,"18950":0,"18951":1,"18952":1,"18953":1,"18954":1,"18955":0,"18956":0,"18957":1,"18958":0,"18959":0,"18960":0,"18961":0,"18962":0,"18963":0,"18964":0,"18965":0,"18966":0,"18967":0,"18968":0,"18969":0,"18970":0,"18971":0,"18972":0,"18973":0,"18974":0,"18975":1,"18976":0,"18977":0,"18978":0,"18979":1,"18980":0,"18981":0,"18982":1,"18983":0,"18984":0,"18985":0,"18986":1,"18987":0,"18988":0,"18989":0,"18990":0,"18991":0,"18992":0,"18993":0,"18994":1,"18995":0,"18996":0,"18997":0,"18998":1,"18999":1,"19000":1,"19001":0,"19002":0,"19003":0,"19004":1,"19005":0,"19006":0,"19007":1,"19008":0,"19009":0,"19010":0,"19011":0,"19012":0,"19013":0,"19014":1,"19015":0,"19016":0,"19017":1,"19018":0,"19019":0,"19020":0,"19021":1,"19022":0,"19023":0,"19024":0,"19025":1,"19026":1,"19027":0,"19028":0,"19029":0,"19030":0,"19031":0,"19032":0,"19033":0,"19034":1,"19035":1,"19036":0,"19037":1,"19038":0,"19039":0,"19040":0,"19041":0,"19042":0,"19043":0,"19044":1,"19045":1,"19046":0,"19047":0,"19048":1,"19049":0,"19050":0,"19051":1,"19052":1,"19053":0,"19054":1,"19055":0,"19056":0,"19057":0,"19058":0,"19059":0,"19060":0,"19061":0,"19062":0,"19063":0,"19064":1,"19065":1,"19066":1,"19067":0,"19068":0,"19069":0,"19070":0,"19071":0,"19072":1,"19073":1,"19074":0,"19075":0,"19076":0,"19077":0,"19078":0,"19079":0,"19080":0,"19081":0,"19082":0,"19083":0,"19084":0,"19085":0,"19086":1,"19087":0,"19088":0,"19089":1,"19090":0,"19091":0,"19092":1,"19093":0,"19094":0,"19095":0,"19096":0,"19097":0,"19098":1,"19099":1,"19100":0,"19101":0,"19102":0,"19103":0,"19104":0,"19105":0,"19106":0,"19107":1,"19108":0,"19109":0,"19110":0,"19111":1,"19112":0,"19113":0,"19114":0,"19115":0,"19116":1,"19117":0,"19118":0,"19119":0,"19120":0,"19121":1,"19122":0,"19123":1,"19124":0,"19125":0,"19126":0,"19127":0,"19128":0,"19129":0,"19130":1,"19131":0,"19132":0,"19133":0,"19134":1,"19135":0,"19136":0,"19137":0,"19138":1,"19139":0,"19140":0,"19141":0,"19142":1,"19143":0,"19144":0,"19145":0,"19146":1,"19147":0,"19148":0,"19149":0,"19150":1,"19151":0,"19152":0,"19153":0,"19154":0,"19155":0,"19156":0,"19157":0,"19158":0,"19159":0,"19160":1,"19161":0,"19162":0,"19163":0,"19164":0,"19165":0,"19166":0,"19167":0,"19168":0,"19169":1,"19170":0,"19171":0,"19172":0,"19173":0,"19174":0,"19175":0,"19176":0,"19177":1,"19178":0,"19179":0,"19180":0,"19181":1,"19182":0,"19183":1,"19184":0,"19185":0,"19186":1,"19187":1,"19188":0,"19189":1,"19190":0,"19191":0,"19192":0,"19193":0,"19194":1,"19195":1,"19196":0,"19197":1,"19198":0,"19199":0,"19200":0,"19201":0,"19202":0,"19203":0,"19204":0,"19205":0,"19206":0,"19207":0,"19208":0,"19209":0,"19210":0,"19211":1,"19212":1,"19213":0,"19214":0,"19215":0,"19216":0,"19217":0,"19218":0,"19219":1,"19220":0,"19221":0,"19222":1,"19223":1,"19224":0,"19225":0,"19226":0,"19227":0,"19228":0,"19229":0,"19230":0,"19231":0,"19232":1,"19233":0,"19234":0,"19235":0,"19236":0,"19237":0,"19238":0,"19239":0,"19240":0,"19241":0,"19242":0,"19243":1,"19244":0,"19245":0,"19246":0,"19247":0,"19248":0,"19249":1,"19250":0,"19251":0,"19252":0,"19253":0,"19254":0,"19255":0,"19256":0,"19257":0,"19258":0,"19259":0,"19260":0,"19261":0,"19262":1,"19263":1,"19264":0,"19265":0,"19266":0,"19267":0,"19268":0,"19269":0,"19270":0,"19271":0,"19272":1,"19273":0,"19274":0,"19275":0,"19276":0,"19277":0,"19278":0,"19279":0,"19280":0,"19281":0,"19282":1,"19283":1,"19284":0,"19285":1,"19286":0,"19287":1,"19288":0,"19289":1,"19290":0,"19291":0,"19292":0,"19293":1,"19294":0,"19295":0,"19296":0,"19297":0,"19298":0,"19299":0,"19300":0,"19301":0,"19302":0,"19303":1,"19304":0,"19305":0,"19306":1,"19307":1,"19308":0,"19309":0,"19310":0,"19311":1,"19312":1,"19313":0,"19314":1,"19315":0,"19316":0,"19317":0,"19318":1,"19319":0,"19320":0,"19321":1,"19322":0,"19323":1,"19324":1,"19325":1,"19326":0,"19327":0,"19328":0,"19329":1,"19330":1,"19331":0,"19332":1,"19333":0,"19334":0,"19335":0,"19336":0,"19337":1,"19338":1,"19339":0,"19340":0,"19341":1,"19342":1,"19343":0,"19344":0,"19345":1,"19346":0,"19347":0,"19348":0,"19349":0,"19350":0,"19351":0,"19352":0,"19353":0,"19354":0,"19355":1,"19356":1,"19357":0,"19358":0,"19359":0,"19360":0,"19361":0,"19362":0,"19363":1,"19364":0,"19365":0,"19366":0,"19367":1,"19368":1,"19369":0,"19370":0,"19371":0,"19372":0,"19373":0,"19374":1,"19375":0,"19376":0,"19377":1,"19378":1,"19379":0,"19380":1,"19381":0,"19382":0,"19383":0,"19384":0,"19385":0,"19386":0,"19387":0,"19388":0,"19389":0,"19390":1,"19391":0,"19392":0,"19393":0,"19394":1,"19395":1,"19396":0,"19397":0,"19398":0,"19399":0,"19400":0,"19401":0,"19402":0,"19403":0,"19404":1,"19405":0,"19406":1,"19407":0,"19408":1,"19409":1,"19410":1,"19411":1,"19412":0,"19413":0,"19414":0,"19415":0,"19416":0,"19417":0,"19418":0,"19419":0,"19420":0,"19421":1,"19422":0,"19423":0,"19424":0,"19425":0,"19426":0,"19427":0,"19428":1,"19429":0,"19430":0,"19431":0,"19432":0,"19433":1,"19434":0,"19435":0,"19436":0,"19437":0,"19438":0,"19439":0,"19440":0,"19441":1,"19442":0,"19443":0,"19444":0,"19445":0,"19446":0,"19447":1,"19448":0,"19449":0,"19450":0,"19451":0,"19452":0,"19453":0,"19454":0,"19455":0,"19456":0,"19457":0,"19458":0,"19459":0,"19460":0,"19461":0,"19462":1,"19463":1,"19464":1,"19465":0,"19466":1,"19467":0,"19468":0,"19469":0,"19470":1,"19471":1,"19472":0,"19473":1,"19474":0,"19475":0,"19476":0,"19477":0,"19478":0,"19479":1,"19480":1,"19481":0,"19482":0,"19483":0,"19484":0,"19485":0,"19486":0,"19487":0,"19488":1,"19489":0,"19490":0,"19491":0,"19492":1,"19493":0,"19494":0,"19495":0,"19496":0,"19497":1,"19498":0,"19499":0,"19500":0,"19501":0,"19502":0,"19503":0,"19504":0,"19505":1,"19506":0,"19507":0,"19508":0,"19509":0,"19510":1,"19511":1,"19512":0,"19513":0,"19514":0,"19515":0,"19516":0,"19517":0,"19518":0,"19519":0,"19520":0,"19521":0,"19522":0,"19523":0,"19524":0,"19525":1,"19526":0,"19527":0,"19528":0,"19529":0,"19530":0,"19531":0,"19532":1,"19533":0,"19534":0,"19535":0,"19536":0,"19537":0,"19538":0,"19539":0,"19540":0,"19541":0,"19542":0,"19543":0,"19544":0,"19545":0,"19546":0,"19547":0,"19548":1,"19549":0,"19550":0,"19551":0,"19552":1,"19553":0,"19554":0,"19555":1,"19556":0,"19557":1,"19558":0,"19559":0,"19560":1,"19561":1,"19562":1,"19563":0,"19564":0,"19565":0,"19566":1,"19567":1,"19568":0,"19569":1,"19570":0,"19571":0,"19572":1,"19573":0,"19574":0,"19575":0,"19576":0,"19577":0,"19578":0,"19579":0,"19580":0,"19581":0,"19582":0,"19583":1,"19584":0,"19585":0,"19586":0,"19587":0,"19588":1,"19589":0,"19590":1,"19591":1,"19592":1,"19593":0,"19594":0,"19595":1,"19596":0,"19597":0,"19598":0,"19599":0,"19600":0,"19601":1,"19602":0,"19603":1,"19604":0,"19605":0,"19606":0,"19607":0,"19608":1,"19609":0,"19610":1,"19611":0,"19612":0,"19613":0,"19614":0,"19615":0,"19616":0,"19617":1,"19618":1,"19619":0,"19620":0,"19621":0,"19622":0,"19623":0,"19624":0,"19625":0,"19626":0,"19627":0,"19628":0,"19629":0,"19630":0,"19631":0,"19632":1,"19633":0,"19634":1,"19635":0,"19636":0,"19637":0,"19638":0,"19639":0,"19640":0,"19641":0,"19642":0,"19643":0,"19644":0,"19645":0,"19646":0,"19647":0,"19648":1,"19649":0,"19650":0,"19651":0,"19652":0,"19653":1,"19654":1,"19655":0,"19656":1,"19657":0,"19658":0,"19659":1,"19660":0,"19661":0,"19662":0,"19663":0,"19664":0,"19665":0,"19666":0,"19667":0,"19668":1,"19669":0,"19670":0,"19671":0,"19672":0,"19673":1,"19674":0,"19675":1,"19676":0,"19677":0,"19678":1,"19679":0,"19680":1,"19681":0,"19682":0,"19683":0,"19684":0,"19685":0,"19686":0,"19687":0,"19688":0,"19689":1,"19690":0,"19691":1,"19692":0,"19693":0,"19694":0,"19695":0,"19696":0,"19697":1,"19698":0,"19699":1,"19700":0,"19701":1,"19702":0,"19703":0,"19704":1,"19705":0,"19706":0,"19707":0,"19708":1,"19709":0,"19710":0,"19711":0,"19712":1,"19713":0,"19714":0,"19715":0,"19716":0,"19717":0,"19718":0,"19719":0,"19720":0,"19721":0,"19722":0,"19723":0,"19724":1,"19725":1,"19726":0,"19727":1,"19728":0,"19729":0,"19730":0,"19731":0,"19732":1,"19733":0,"19734":0,"19735":1,"19736":0,"19737":0,"19738":1,"19739":1,"19740":0,"19741":1,"19742":1,"19743":0,"19744":0,"19745":1,"19746":0,"19747":0,"19748":1,"19749":0,"19750":0,"19751":0,"19752":0,"19753":0,"19754":1,"19755":1,"19756":0,"19757":0,"19758":0,"19759":0,"19760":1,"19761":0,"19762":0,"19763":0,"19764":0,"19765":0,"19766":0,"19767":0,"19768":0,"19769":0,"19770":0,"19771":0,"19772":0,"19773":0,"19774":0,"19775":0,"19776":0,"19777":1,"19778":0,"19779":1,"19780":0,"19781":0,"19782":0,"19783":0,"19784":0,"19785":0,"19786":0,"19787":0,"19788":0,"19789":1,"19790":0,"19791":0,"19792":0,"19793":0,"19794":0,"19795":0,"19796":0,"19797":1,"19798":1,"19799":1,"19800":0,"19801":0,"19802":0,"19803":0,"19804":0,"19805":1,"19806":1,"19807":0,"19808":0,"19809":0,"19810":0,"19811":1,"19812":0,"19813":0,"19814":1,"19815":1,"19816":0,"19817":0,"19818":0,"19819":0,"19820":1,"19821":0,"19822":0,"19823":0,"19824":0,"19825":0,"19826":0,"19827":1,"19828":0,"19829":0,"19830":0,"19831":0,"19832":0,"19833":0,"19834":0,"19835":0,"19836":1,"19837":0,"19838":1,"19839":1,"19840":0,"19841":0,"19842":1,"19843":0,"19844":0,"19845":0,"19846":0,"19847":0,"19848":0,"19849":0,"19850":0,"19851":1,"19852":0,"19853":1,"19854":0,"19855":1,"19856":0,"19857":1,"19858":1,"19859":0,"19860":0,"19861":0,"19862":0,"19863":0,"19864":0,"19865":1,"19866":0,"19867":1,"19868":0,"19869":0,"19870":0,"19871":0,"19872":1,"19873":0,"19874":0,"19875":0,"19876":0,"19877":0,"19878":0,"19879":0,"19880":0,"19881":0,"19882":0,"19883":0,"19884":1,"19885":0,"19886":1,"19887":0,"19888":0,"19889":0,"19890":0,"19891":1,"19892":1,"19893":0,"19894":0,"19895":0,"19896":0,"19897":0,"19898":0,"19899":0,"19900":1,"19901":0,"19902":0,"19903":1,"19904":1,"19905":0,"19906":1,"19907":1,"19908":0,"19909":0,"19910":0,"19911":0,"19912":0,"19913":0,"19914":0,"19915":0,"19916":0,"19917":1,"19918":0,"19919":0,"19920":1,"19921":0,"19922":0,"19923":0,"19924":0,"19925":0,"19926":0,"19927":1,"19928":0,"19929":0,"19930":0,"19931":0,"19932":0,"19933":0,"19934":0,"19935":0,"19936":1,"19937":0,"19938":0,"19939":1,"19940":0,"19941":1,"19942":0,"19943":0,"19944":1,"19945":0,"19946":0,"19947":1,"19948":1,"19949":0,"19950":0,"19951":0,"19952":0,"19953":0,"19954":0,"19955":0,"19956":0,"19957":0,"19958":0,"19959":0,"19960":0,"19961":0,"19962":0,"19963":1,"19964":0,"19965":1,"19966":1,"19967":0,"19968":0,"19969":0,"19970":1,"19971":0,"19972":1,"19973":0,"19974":0,"19975":0,"19976":0,"19977":0,"19978":1,"19979":0,"19980":0,"19981":0,"19982":0,"19983":0,"19984":0,"19985":1,"19986":0,"19987":0,"19988":1,"19989":0,"19990":0,"19991":0,"19992":0,"19993":0,"19994":1,"19995":0,"19996":1,"19997":0,"19998":0,"19999":1,"20000":0,"20001":1,"20002":0,"20003":1,"20004":1,"20005":0,"20006":0,"20007":0,"20008":0,"20009":0,"20010":0,"20011":0,"20012":0,"20013":1,"20014":1,"20015":1,"20016":0,"20017":0,"20018":0,"20019":0,"20020":1,"20021":0,"20022":0,"20023":0,"20024":0,"20025":0,"20026":1,"20027":1,"20028":0,"20029":1,"20030":0,"20031":1,"20032":0,"20033":0,"20034":1,"20035":1,"20036":0,"20037":0,"20038":0,"20039":1,"20040":0,"20041":1,"20042":0,"20043":0,"20044":0,"20045":1,"20046":0,"20047":0,"20048":0,"20049":1,"20050":0,"20051":0,"20052":0,"20053":0,"20054":0,"20055":0,"20056":0,"20057":1,"20058":0,"20059":1,"20060":0,"20061":1,"20062":0,"20063":1,"20064":0,"20065":0,"20066":0,"20067":0,"20068":0,"20069":1,"20070":0,"20071":0,"20072":0,"20073":1,"20074":0,"20075":1,"20076":0,"20077":0,"20078":0,"20079":0,"20080":0,"20081":1,"20082":0,"20083":0,"20084":0,"20085":1,"20086":0,"20087":0,"20088":0,"20089":1,"20090":0,"20091":0,"20092":0,"20093":0,"20094":0,"20095":0,"20096":1,"20097":1,"20098":0,"20099":0,"20100":0,"20101":0,"20102":0,"20103":1,"20104":0,"20105":1,"20106":0,"20107":1,"20108":0,"20109":0,"20110":0,"20111":0,"20112":0,"20113":0,"20114":0,"20115":0,"20116":0,"20117":0,"20118":1,"20119":0,"20120":1,"20121":0,"20122":0,"20123":0,"20124":1,"20125":0,"20126":1,"20127":1,"20128":0,"20129":1,"20130":0,"20131":0,"20132":0,"20133":0,"20134":0,"20135":0,"20136":1,"20137":1,"20138":0,"20139":1,"20140":0,"20141":0,"20142":0,"20143":0,"20144":0,"20145":0,"20146":0,"20147":0,"20148":1,"20149":1,"20150":0,"20151":0,"20152":0,"20153":1,"20154":0,"20155":0,"20156":0,"20157":0,"20158":0,"20159":1,"20160":0,"20161":0,"20162":1,"20163":0,"20164":0,"20165":0,"20166":0,"20167":0,"20168":0,"20169":0,"20170":0,"20171":0,"20172":0,"20173":0,"20174":1,"20175":1,"20176":0,"20177":0,"20178":0,"20179":1,"20180":0,"20181":0,"20182":1,"20183":0,"20184":0,"20185":0,"20186":0,"20187":0,"20188":1,"20189":0,"20190":0,"20191":1,"20192":1,"20193":0,"20194":0,"20195":0,"20196":0,"20197":0,"20198":1,"20199":0,"20200":0,"20201":0,"20202":0,"20203":0,"20204":0,"20205":0,"20206":0,"20207":1,"20208":0,"20209":0,"20210":0,"20211":0,"20212":0,"20213":1,"20214":0,"20215":0,"20216":0,"20217":0,"20218":0,"20219":0,"20220":1,"20221":1,"20222":0,"20223":0,"20224":0,"20225":0,"20226":0,"20227":0,"20228":0,"20229":0,"20230":0,"20231":0,"20232":1,"20233":0,"20234":1,"20235":1,"20236":0,"20237":0,"20238":0,"20239":0,"20240":0,"20241":1,"20242":0,"20243":1,"20244":1,"20245":0,"20246":0,"20247":0,"20248":0,"20249":1,"20250":1,"20251":0,"20252":0,"20253":0,"20254":0,"20255":1,"20256":1,"20257":1,"20258":1,"20259":0,"20260":0,"20261":0,"20262":0,"20263":1,"20264":0,"20265":0,"20266":1,"20267":1,"20268":1,"20269":0,"20270":1,"20271":0,"20272":0,"20273":0,"20274":0,"20275":0,"20276":0,"20277":0,"20278":1,"20279":1,"20280":1,"20281":0,"20282":0,"20283":1,"20284":0,"20285":0,"20286":0,"20287":0,"20288":0,"20289":1,"20290":0,"20291":0,"20292":0,"20293":0,"20294":0,"20295":0,"20296":0,"20297":0,"20298":0,"20299":1,"20300":1,"20301":0,"20302":0,"20303":1,"20304":0,"20305":0,"20306":0,"20307":0,"20308":0,"20309":0,"20310":1,"20311":0,"20312":1,"20313":0,"20314":0,"20315":0,"20316":0,"20317":1,"20318":1,"20319":0,"20320":0,"20321":0,"20322":0,"20323":1,"20324":1,"20325":0,"20326":1,"20327":1,"20328":0,"20329":1,"20330":0,"20331":0,"20332":1,"20333":0,"20334":1,"20335":0,"20336":0,"20337":0,"20338":1,"20339":0,"20340":0,"20341":0,"20342":0,"20343":0,"20344":1,"20345":1,"20346":1,"20347":0,"20348":0,"20349":1,"20350":0,"20351":0,"20352":0,"20353":0,"20354":0,"20355":0,"20356":0,"20357":0,"20358":1,"20359":0,"20360":0,"20361":0,"20362":0,"20363":0,"20364":0,"20365":1,"20366":1,"20367":0,"20368":0,"20369":0,"20370":0,"20371":0,"20372":0,"20373":0,"20374":0,"20375":0,"20376":0,"20377":1,"20378":0,"20379":0,"20380":0,"20381":1,"20382":0,"20383":0,"20384":0,"20385":0,"20386":0,"20387":1,"20388":1,"20389":0,"20390":0,"20391":0,"20392":0,"20393":0,"20394":0,"20395":0,"20396":0,"20397":1,"20398":1,"20399":0,"20400":0,"20401":0,"20402":0,"20403":1,"20404":0,"20405":0,"20406":0,"20407":0,"20408":0,"20409":0,"20410":0,"20411":0,"20412":0,"20413":1,"20414":0,"20415":0,"20416":0,"20417":1,"20418":1,"20419":0,"20420":1,"20421":0,"20422":1,"20423":1,"20424":0,"20425":0,"20426":1,"20427":0,"20428":0,"20429":0,"20430":0,"20431":1,"20432":0,"20433":0,"20434":0,"20435":1,"20436":0,"20437":1,"20438":1,"20439":1,"20440":1,"20441":0,"20442":0,"20443":0,"20444":0,"20445":1,"20446":0,"20447":0,"20448":0,"20449":0,"20450":0,"20451":0,"20452":0,"20453":1,"20454":0,"20455":0,"20456":0,"20457":0,"20458":0,"20459":1,"20460":0,"20461":0,"20462":1,"20463":1,"20464":0,"20465":0,"20466":0,"20467":0,"20468":0,"20469":0,"20470":0,"20471":1,"20472":0,"20473":0,"20474":0,"20475":0,"20476":0,"20477":0,"20478":0,"20479":1,"20480":0,"20481":1,"20482":0,"20483":0,"20484":1,"20485":0,"20486":0,"20487":1,"20488":0,"20489":0,"20490":0,"20491":1,"20492":0,"20493":0,"20494":1,"20495":0,"20496":1,"20497":1,"20498":0,"20499":0,"20500":0,"20501":0,"20502":1,"20503":1,"20504":0,"20505":0,"20506":0,"20507":0,"20508":0,"20509":0,"20510":0,"20511":0,"20512":0,"20513":1,"20514":0,"20515":0,"20516":0,"20517":0,"20518":1,"20519":0,"20520":0,"20521":0,"20522":1,"20523":0,"20524":0,"20525":1,"20526":0,"20527":0,"20528":0,"20529":0,"20530":0,"20531":0,"20532":0,"20533":0,"20534":0,"20535":0,"20536":0,"20537":0,"20538":0,"20539":1,"20540":1,"20541":0,"20542":0,"20543":0,"20544":0,"20545":0,"20546":0,"20547":0,"20548":0,"20549":0,"20550":0,"20551":0,"20552":1,"20553":1,"20554":0,"20555":0,"20556":0,"20557":1,"20558":1,"20559":0,"20560":1,"20561":0,"20562":1,"20563":0,"20564":0,"20565":0,"20566":0,"20567":1,"20568":1,"20569":0,"20570":0,"20571":0,"20572":0,"20573":1,"20574":0,"20575":0,"20576":0,"20577":0,"20578":0,"20579":0,"20580":0,"20581":0,"20582":0,"20583":1,"20584":1,"20585":0,"20586":0,"20587":0,"20588":0,"20589":0,"20590":0,"20591":0,"20592":0,"20593":1,"20594":0,"20595":0,"20596":0,"20597":0,"20598":0,"20599":1,"20600":0,"20601":0,"20602":0,"20603":1,"20604":0,"20605":0,"20606":0,"20607":0,"20608":0,"20609":0,"20610":0,"20611":0,"20612":0,"20613":0,"20614":0,"20615":1,"20616":0,"20617":0,"20618":0,"20619":0,"20620":0,"20621":1,"20622":0,"20623":0,"20624":1,"20625":0,"20626":1,"20627":0,"20628":1,"20629":0,"20630":0,"20631":0,"20632":0,"20633":0,"20634":1,"20635":1,"20636":0,"20637":0,"20638":0,"20639":0,"20640":0,"20641":0,"20642":1,"20643":0,"20644":1,"20645":0,"20646":0,"20647":0,"20648":0,"20649":1,"20650":0,"20651":0,"20652":0,"20653":0,"20654":1,"20655":0,"20656":0,"20657":0,"20658":1,"20659":1,"20660":0,"20661":0,"20662":1,"20663":0,"20664":0,"20665":0,"20666":0,"20667":1,"20668":1,"20669":0,"20670":0,"20671":1,"20672":0,"20673":0,"20674":0,"20675":1,"20676":0,"20677":0,"20678":0,"20679":0,"20680":1,"20681":0,"20682":1,"20683":1,"20684":1,"20685":0,"20686":0,"20687":0,"20688":0,"20689":0,"20690":0,"20691":0,"20692":0,"20693":0,"20694":0,"20695":0,"20696":1,"20697":0,"20698":0,"20699":1,"20700":1,"20701":1,"20702":0,"20703":1,"20704":0,"20705":0,"20706":0,"20707":0,"20708":0,"20709":0,"20710":0,"20711":0,"20712":0,"20713":0,"20714":0,"20715":1,"20716":0,"20717":0,"20718":0,"20719":0,"20720":0,"20721":0,"20722":0,"20723":0,"20724":0,"20725":0,"20726":0,"20727":1,"20728":1,"20729":1,"20730":1,"20731":0,"20732":0,"20733":0,"20734":0,"20735":0,"20736":0,"20737":0,"20738":1,"20739":0,"20740":1,"20741":1,"20742":0,"20743":0,"20744":0,"20745":1,"20746":0,"20747":0,"20748":0,"20749":0,"20750":0,"20751":1,"20752":1,"20753":1,"20754":0,"20755":1,"20756":1,"20757":0,"20758":0,"20759":0,"20760":0,"20761":0,"20762":0,"20763":1,"20764":0,"20765":0,"20766":0,"20767":0,"20768":0,"20769":1,"20770":0,"20771":1,"20772":0,"20773":0,"20774":0,"20775":0,"20776":0,"20777":1,"20778":0,"20779":0,"20780":0,"20781":0,"20782":0,"20783":0,"20784":0,"20785":0,"20786":0,"20787":0,"20788":0,"20789":1,"20790":0,"20791":1,"20792":0,"20793":0,"20794":1,"20795":0,"20796":0,"20797":1,"20798":1,"20799":0,"20800":1,"20801":0,"20802":0,"20803":1,"20804":1,"20805":0,"20806":0,"20807":0,"20808":0,"20809":0,"20810":0,"20811":0,"20812":0,"20813":0,"20814":0,"20815":0,"20816":0,"20817":1,"20818":0,"20819":1,"20820":0,"20821":0,"20822":0,"20823":0,"20824":0,"20825":0,"20826":0,"20827":1,"20828":0,"20829":1,"20830":0,"20831":0,"20832":0,"20833":0,"20834":1,"20835":1,"20836":0,"20837":0,"20838":0,"20839":0,"20840":0,"20841":0,"20842":1,"20843":0,"20844":0,"20845":1,"20846":0,"20847":0,"20848":0,"20849":0,"20850":0,"20851":0,"20852":0,"20853":0,"20854":0,"20855":0,"20856":0,"20857":0,"20858":0,"20859":0,"20860":0,"20861":0,"20862":0,"20863":1,"20864":0,"20865":1,"20866":1,"20867":0,"20868":0,"20869":0,"20870":0,"20871":0,"20872":1,"20873":1,"20874":0,"20875":1,"20876":0,"20877":0,"20878":0,"20879":0,"20880":1,"20881":1,"20882":0,"20883":1,"20884":0,"20885":0,"20886":0,"20887":0,"20888":0,"20889":0,"20890":0,"20891":0,"20892":0,"20893":0,"20894":1,"20895":0,"20896":1,"20897":0,"20898":0,"20899":1,"20900":0,"20901":0,"20902":0,"20903":1,"20904":0,"20905":0,"20906":1,"20907":0,"20908":0,"20909":0,"20910":0,"20911":1,"20912":0,"20913":0,"20914":1,"20915":1,"20916":0,"20917":0,"20918":0,"20919":0,"20920":0,"20921":0,"20922":1,"20923":0,"20924":0,"20925":1,"20926":0,"20927":0,"20928":0,"20929":0,"20930":1,"20931":1,"20932":0,"20933":0,"20934":0,"20935":0,"20936":0,"20937":0,"20938":0,"20939":0,"20940":0,"20941":0,"20942":0,"20943":0,"20944":0,"20945":0,"20946":0,"20947":1,"20948":0,"20949":0,"20950":0,"20951":0,"20952":0,"20953":1,"20954":1,"20955":0,"20956":0,"20957":0,"20958":0,"20959":1,"20960":0,"20961":1,"20962":0,"20963":0,"20964":0,"20965":0,"20966":0,"20967":0,"20968":1,"20969":0,"20970":0,"20971":1,"20972":0,"20973":0,"20974":0,"20975":0,"20976":0,"20977":0,"20978":0,"20979":1,"20980":0,"20981":0,"20982":1,"20983":0,"20984":0,"20985":0,"20986":0,"20987":0,"20988":0,"20989":0,"20990":1,"20991":0,"20992":0,"20993":0,"20994":0,"20995":1,"20996":0,"20997":0,"20998":0,"20999":0,"21000":0,"21001":0,"21002":0,"21003":0,"21004":0,"21005":0,"21006":0,"21007":0,"21008":1,"21009":0,"21010":0,"21011":0,"21012":1,"21013":0,"21014":0,"21015":1,"21016":1,"21017":0,"21018":0,"21019":0,"21020":0,"21021":0,"21022":0,"21023":0,"21024":1,"21025":0,"21026":1,"21027":0,"21028":0,"21029":0,"21030":0,"21031":0,"21032":1,"21033":0,"21034":0,"21035":0,"21036":0,"21037":0,"21038":1,"21039":0,"21040":0,"21041":0,"21042":0,"21043":0,"21044":0,"21045":0,"21046":1,"21047":0,"21048":0,"21049":0,"21050":0,"21051":0,"21052":0,"21053":0,"21054":0,"21055":0,"21056":1,"21057":0,"21058":0,"21059":0,"21060":0,"21061":0,"21062":0,"21063":1,"21064":1,"21065":1,"21066":0,"21067":0,"21068":0,"21069":0,"21070":0,"21071":0,"21072":0,"21073":0,"21074":0,"21075":0,"21076":1,"21077":0,"21078":0,"21079":0,"21080":0,"21081":0,"21082":0,"21083":0,"21084":0,"21085":0,"21086":0,"21087":0,"21088":0,"21089":0,"21090":1,"21091":1,"21092":0,"21093":0,"21094":1,"21095":0,"21096":0,"21097":0,"21098":0,"21099":0,"21100":0,"21101":1,"21102":0,"21103":1,"21104":0,"21105":0,"21106":0,"21107":1,"21108":0,"21109":1,"21110":0,"21111":0,"21112":0,"21113":0,"21114":0,"21115":0,"21116":0,"21117":0,"21118":0,"21119":0,"21120":0,"21121":0,"21122":1,"21123":0,"21124":0,"21125":0,"21126":0,"21127":0,"21128":1,"21129":1,"21130":1,"21131":1,"21132":0,"21133":0,"21134":0,"21135":0,"21136":1,"21137":0,"21138":0,"21139":0,"21140":1,"21141":0,"21142":0,"21143":0,"21144":0,"21145":1,"21146":0,"21147":0,"21148":0,"21149":0,"21150":1,"21151":1,"21152":1,"21153":1,"21154":0,"21155":0,"21156":0,"21157":1,"21158":1,"21159":0,"21160":0,"21161":0,"21162":0,"21163":0,"21164":0,"21165":0,"21166":1,"21167":0,"21168":1,"21169":1,"21170":0,"21171":0,"21172":0,"21173":0,"21174":0,"21175":0,"21176":0,"21177":0,"21178":1,"21179":0,"21180":0,"21181":1,"21182":0,"21183":1,"21184":0,"21185":0,"21186":0,"21187":0,"21188":0,"21189":0,"21190":1,"21191":0,"21192":0,"21193":0,"21194":1,"21195":0,"21196":0,"21197":0,"21198":0,"21199":0,"21200":1,"21201":0,"21202":0,"21203":0,"21204":0,"21205":1,"21206":0,"21207":1,"21208":1,"21209":0,"21210":0,"21211":1,"21212":1,"21213":0,"21214":0,"21215":1,"21216":0,"21217":0,"21218":0,"21219":0,"21220":0,"21221":1,"21222":0,"21223":1,"21224":0,"21225":0,"21226":0,"21227":1,"21228":1,"21229":0,"21230":0,"21231":1,"21232":0,"21233":0,"21234":0,"21235":0,"21236":0,"21237":0,"21238":0,"21239":0,"21240":0,"21241":0,"21242":0,"21243":1,"21244":0,"21245":0,"21246":0,"21247":0,"21248":0,"21249":0,"21250":0,"21251":0,"21252":0,"21253":1,"21254":0,"21255":0,"21256":0,"21257":1,"21258":0,"21259":1,"21260":0,"21261":0,"21262":0,"21263":0,"21264":0,"21265":0,"21266":1,"21267":0,"21268":0,"21269":0,"21270":1,"21271":0,"21272":1,"21273":0,"21274":0,"21275":0,"21276":0,"21277":0,"21278":0,"21279":0,"21280":0,"21281":0,"21282":1,"21283":0,"21284":0,"21285":1,"21286":0,"21287":1,"21288":0,"21289":0,"21290":0,"21291":0,"21292":0,"21293":0,"21294":0,"21295":1,"21296":0,"21297":0,"21298":1,"21299":0,"21300":1,"21301":0,"21302":0,"21303":1,"21304":1,"21305":0,"21306":0,"21307":1,"21308":0,"21309":0,"21310":0,"21311":0,"21312":0,"21313":0,"21314":0,"21315":1,"21316":1,"21317":1,"21318":0,"21319":0,"21320":0,"21321":0,"21322":0,"21323":0,"21324":0,"21325":0,"21326":1,"21327":0,"21328":1,"21329":0,"21330":0,"21331":1,"21332":1,"21333":1,"21334":0,"21335":0,"21336":1,"21337":0,"21338":0,"21339":1,"21340":0,"21341":0,"21342":1,"21343":0,"21344":0,"21345":0,"21346":0,"21347":0,"21348":0,"21349":0,"21350":0,"21351":0,"21352":0,"21353":1,"21354":0,"21355":0,"21356":0,"21357":0,"21358":0,"21359":0,"21360":0,"21361":0,"21362":0,"21363":0,"21364":0,"21365":0,"21366":1,"21367":0,"21368":0,"21369":1,"21370":1,"21371":0,"21372":1,"21373":0,"21374":0,"21375":0,"21376":0,"21377":1,"21378":1,"21379":0,"21380":0,"21381":0,"21382":0,"21383":0,"21384":0,"21385":0,"21386":1,"21387":0,"21388":0,"21389":0,"21390":0,"21391":0,"21392":1,"21393":1,"21394":1,"21395":0,"21396":1,"21397":0,"21398":1,"21399":0,"21400":1,"21401":1,"21402":0,"21403":0,"21404":0,"21405":1,"21406":0,"21407":1,"21408":0,"21409":1,"21410":1,"21411":1,"21412":0,"21413":1,"21414":0,"21415":1,"21416":0,"21417":1,"21418":0,"21419":0,"21420":0,"21421":0,"21422":0,"21423":1,"21424":0,"21425":0,"21426":1,"21427":0,"21428":0,"21429":0,"21430":1,"21431":0,"21432":1,"21433":1,"21434":0,"21435":1,"21436":0,"21437":0,"21438":1,"21439":0,"21440":0,"21441":1,"21442":1,"21443":0,"21444":0,"21445":0,"21446":0,"21447":0,"21448":0,"21449":0,"21450":0,"21451":0,"21452":0,"21453":1,"21454":0,"21455":0,"21456":0,"21457":1,"21458":0,"21459":1,"21460":0,"21461":0,"21462":0,"21463":0,"21464":0,"21465":0,"21466":0,"21467":1,"21468":0,"21469":1,"21470":0,"21471":1,"21472":0,"21473":0,"21474":1,"21475":0,"21476":0,"21477":1,"21478":1,"21479":0,"21480":0,"21481":1,"21482":0,"21483":0,"21484":0,"21485":0,"21486":0,"21487":0,"21488":0,"21489":0,"21490":0,"21491":0,"21492":0,"21493":1,"21494":1,"21495":0,"21496":0,"21497":0,"21498":0,"21499":0,"21500":0,"21501":0,"21502":0,"21503":0,"21504":0,"21505":1,"21506":0,"21507":1,"21508":0,"21509":0,"21510":0,"21511":0,"21512":0,"21513":1,"21514":0,"21515":0,"21516":1,"21517":1,"21518":0,"21519":0,"21520":1,"21521":0,"21522":0,"21523":0,"21524":0,"21525":0,"21526":0,"21527":0,"21528":0,"21529":0,"21530":0,"21531":0,"21532":0,"21533":0,"21534":0,"21535":0,"21536":1,"21537":0,"21538":1,"21539":1,"21540":0,"21541":0,"21542":0,"21543":0,"21544":0,"21545":0,"21546":0,"21547":0,"21548":0,"21549":0,"21550":0,"21551":1,"21552":0,"21553":0,"21554":0,"21555":0,"21556":0,"21557":0,"21558":1,"21559":1,"21560":0,"21561":1,"21562":0,"21563":0,"21564":1,"21565":0,"21566":0,"21567":0,"21568":0,"21569":1,"21570":0,"21571":1,"21572":1,"21573":0,"21574":0,"21575":0,"21576":0,"21577":0,"21578":0,"21579":0,"21580":0,"21581":0,"21582":0,"21583":0,"21584":0,"21585":0,"21586":1,"21587":1,"21588":0,"21589":1,"21590":0,"21591":0,"21592":1,"21593":1,"21594":0,"21595":0,"21596":0,"21597":1,"21598":0,"21599":0,"21600":0,"21601":1,"21602":0,"21603":0,"21604":1,"21605":0,"21606":0,"21607":0,"21608":0,"21609":0,"21610":0,"21611":0,"21612":0,"21613":0,"21614":0,"21615":1,"21616":0,"21617":0,"21618":0,"21619":1,"21620":0,"21621":1,"21622":1,"21623":1,"21624":1,"21625":0,"21626":1,"21627":0,"21628":0,"21629":0,"21630":0,"21631":0,"21632":0,"21633":0,"21634":0,"21635":0,"21636":0,"21637":1,"21638":0,"21639":0,"21640":0,"21641":1,"21642":0,"21643":0,"21644":0,"21645":0,"21646":0,"21647":0,"21648":1,"21649":0,"21650":0,"21651":1,"21652":0,"21653":0,"21654":0,"21655":1,"21656":0,"21657":0,"21658":0,"21659":0,"21660":0,"21661":0,"21662":0,"21663":1,"21664":1,"21665":0,"21666":0,"21667":1,"21668":0,"21669":0,"21670":0,"21671":0,"21672":0,"21673":0,"21674":0,"21675":0,"21676":1,"21677":1,"21678":0,"21679":1,"21680":0,"21681":0,"21682":0,"21683":0,"21684":1,"21685":0,"21686":0,"21687":1,"21688":0,"21689":0,"21690":0,"21691":0,"21692":1,"21693":0,"21694":0,"21695":0,"21696":0,"21697":0,"21698":1,"21699":0,"21700":0,"21701":0,"21702":0,"21703":1,"21704":0,"21705":0,"21706":0,"21707":1,"21708":0,"21709":0,"21710":0,"21711":0,"21712":0,"21713":1,"21714":0,"21715":1,"21716":1,"21717":0,"21718":0,"21719":0,"21720":0,"21721":0,"21722":1,"21723":0,"21724":1,"21725":1,"21726":0,"21727":0,"21728":1,"21729":0,"21730":0,"21731":0,"21732":1,"21733":0,"21734":0,"21735":1,"21736":0,"21737":1,"21738":0,"21739":1,"21740":0,"21741":0,"21742":0,"21743":1,"21744":1,"21745":1,"21746":0,"21747":0,"21748":0,"21749":1,"21750":0,"21751":0,"21752":1,"21753":0,"21754":0,"21755":0,"21756":0,"21757":0,"21758":0,"21759":1,"21760":1,"21761":0,"21762":0,"21763":0,"21764":0,"21765":0,"21766":0,"21767":1,"21768":0,"21769":1,"21770":0,"21771":0,"21772":0,"21773":0,"21774":1,"21775":0,"21776":0,"21777":1,"21778":0,"21779":0,"21780":0,"21781":1,"21782":0,"21783":0,"21784":0,"21785":0,"21786":0,"21787":0,"21788":1,"21789":0,"21790":0,"21791":0,"21792":1,"21793":0,"21794":0,"21795":0,"21796":0,"21797":0,"21798":1,"21799":1,"21800":0,"21801":0,"21802":0,"21803":0,"21804":0,"21805":1,"21806":0,"21807":0,"21808":0,"21809":0,"21810":0,"21811":0,"21812":0,"21813":0,"21814":0,"21815":0,"21816":1,"21817":0,"21818":0,"21819":0,"21820":0,"21821":0,"21822":0,"21823":0,"21824":0,"21825":0,"21826":0,"21827":0,"21828":0,"21829":0,"21830":1,"21831":0,"21832":1,"21833":0,"21834":0,"21835":0,"21836":1,"21837":0,"21838":0,"21839":0,"21840":0,"21841":0,"21842":0,"21843":0,"21844":1,"21845":0,"21846":1,"21847":0,"21848":1,"21849":1,"21850":0,"21851":1,"21852":0,"21853":0,"21854":0,"21855":0,"21856":1,"21857":1,"21858":1,"21859":1,"21860":0,"21861":0,"21862":0,"21863":0,"21864":1,"21865":1,"21866":0,"21867":1,"21868":0,"21869":0,"21870":1,"21871":1,"21872":0,"21873":0,"21874":0,"21875":0,"21876":0,"21877":0,"21878":0,"21879":0,"21880":0,"21881":0,"21882":0,"21883":0,"21884":1,"21885":0,"21886":1,"21887":0,"21888":1,"21889":0,"21890":0,"21891":0,"21892":0,"21893":1,"21894":0,"21895":0,"21896":0,"21897":0,"21898":1,"21899":0,"21900":0,"21901":0,"21902":0,"21903":0,"21904":0,"21905":0,"21906":0,"21907":0,"21908":0,"21909":0,"21910":0,"21911":0,"21912":0,"21913":0,"21914":0,"21915":0,"21916":0,"21917":0,"21918":0,"21919":0,"21920":1,"21921":0,"21922":0,"21923":0,"21924":0,"21925":0,"21926":0,"21927":0,"21928":0,"21929":0,"21930":1,"21931":0,"21932":1,"21933":0,"21934":0,"21935":0,"21936":0,"21937":0,"21938":0,"21939":0,"21940":0,"21941":0,"21942":0,"21943":0,"21944":0,"21945":0,"21946":0,"21947":0,"21948":0,"21949":0,"21950":0,"21951":0,"21952":0,"21953":0,"21954":1,"21955":0,"21956":0,"21957":0,"21958":1,"21959":0,"21960":0,"21961":0,"21962":0,"21963":1,"21964":1,"21965":1,"21966":0,"21967":0,"21968":0,"21969":0,"21970":1,"21971":0,"21972":0,"21973":0,"21974":0,"21975":1,"21976":1,"21977":0,"21978":0,"21979":0,"21980":0,"21981":0,"21982":0,"21983":0,"21984":0,"21985":0,"21986":1,"21987":0,"21988":0,"21989":0,"21990":0,"21991":0,"21992":1,"21993":0,"21994":0,"21995":0,"21996":0,"21997":0,"21998":0,"21999":1,"22000":0,"22001":0,"22002":0,"22003":0,"22004":0,"22005":1,"22006":0,"22007":1,"22008":1,"22009":0,"22010":0,"22011":0,"22012":0,"22013":0,"22014":0,"22015":1,"22016":0,"22017":0,"22018":0,"22019":0,"22020":0,"22021":0,"22022":1,"22023":0,"22024":0,"22025":0,"22026":0,"22027":0,"22028":0,"22029":0,"22030":0,"22031":1,"22032":1,"22033":0,"22034":0,"22035":0,"22036":0,"22037":0,"22038":0,"22039":1,"22040":0,"22041":0,"22042":0,"22043":0,"22044":0,"22045":0,"22046":1,"22047":1,"22048":0,"22049":0,"22050":1,"22051":0,"22052":0,"22053":1,"22054":1,"22055":1,"22056":0,"22057":0,"22058":1,"22059":0,"22060":0,"22061":0,"22062":0,"22063":0,"22064":1,"22065":0,"22066":0,"22067":0,"22068":1,"22069":0,"22070":0,"22071":1,"22072":1,"22073":0,"22074":0,"22075":0,"22076":0,"22077":0,"22078":0,"22079":0,"22080":0,"22081":1,"22082":0,"22083":0,"22084":1,"22085":0,"22086":1,"22087":1,"22088":0,"22089":0,"22090":0,"22091":0,"22092":0,"22093":0,"22094":0,"22095":0,"22096":1,"22097":0,"22098":1,"22099":0,"22100":0,"22101":0,"22102":0,"22103":0,"22104":0,"22105":0,"22106":0,"22107":0,"22108":0,"22109":1,"22110":0,"22111":1,"22112":0,"22113":0,"22114":0,"22115":0,"22116":0,"22117":0,"22118":0,"22119":0,"22120":0,"22121":1,"22122":0,"22123":0,"22124":0,"22125":0,"22126":0,"22127":0,"22128":0,"22129":0,"22130":0,"22131":1,"22132":0,"22133":1,"22134":1,"22135":0,"22136":1,"22137":0,"22138":0,"22139":0,"22140":1,"22141":0,"22142":0,"22143":1,"22144":0,"22145":1,"22146":0,"22147":0,"22148":0,"22149":0,"22150":0,"22151":0,"22152":0,"22153":0,"22154":0,"22155":0,"22156":1,"22157":1,"22158":0,"22159":0,"22160":0,"22161":0,"22162":0,"22163":0,"22164":0,"22165":1,"22166":1,"22167":0,"22168":1,"22169":0,"22170":0,"22171":0,"22172":0,"22173":0,"22174":0,"22175":0,"22176":1,"22177":1,"22178":0,"22179":1,"22180":1,"22181":0,"22182":0,"22183":0,"22184":1,"22185":0,"22186":0,"22187":0,"22188":0,"22189":0,"22190":0,"22191":1,"22192":0,"22193":0,"22194":0,"22195":1,"22196":0,"22197":0,"22198":0,"22199":1,"22200":0,"22201":0,"22202":0,"22203":0,"22204":1,"22205":1,"22206":0,"22207":1,"22208":0,"22209":0,"22210":0,"22211":1,"22212":0,"22213":0,"22214":0,"22215":0,"22216":0,"22217":0,"22218":0,"22219":0,"22220":0,"22221":0,"22222":0,"22223":0,"22224":0,"22225":0,"22226":0,"22227":1,"22228":0,"22229":1,"22230":0,"22231":1,"22232":0,"22233":1,"22234":0,"22235":0,"22236":0,"22237":0,"22238":0,"22239":0,"22240":0,"22241":0,"22242":0,"22243":1,"22244":1,"22245":0,"22246":1,"22247":0,"22248":0,"22249":0,"22250":0,"22251":0,"22252":0,"22253":0,"22254":1,"22255":0,"22256":1,"22257":0,"22258":0,"22259":1,"22260":1,"22261":0,"22262":1,"22263":0,"22264":0,"22265":1,"22266":1,"22267":0,"22268":1,"22269":1,"22270":0,"22271":0,"22272":0,"22273":0,"22274":1,"22275":1,"22276":0,"22277":0,"22278":1,"22279":0,"22280":1,"22281":0,"22282":0,"22283":0,"22284":1,"22285":1,"22286":1,"22287":0,"22288":1,"22289":0,"22290":0,"22291":1,"22292":0,"22293":1,"22294":0,"22295":0,"22296":0,"22297":0,"22298":0,"22299":0,"22300":1,"22301":1,"22302":0,"22303":0,"22304":0,"22305":1,"22306":0,"22307":0,"22308":1,"22309":0,"22310":0,"22311":0,"22312":0,"22313":0,"22314":0,"22315":0,"22316":0,"22317":0,"22318":0,"22319":0,"22320":0,"22321":0,"22322":1,"22323":0,"22324":1,"22325":0,"22326":0,"22327":0,"22328":0,"22329":0,"22330":0,"22331":0,"22332":0,"22333":0,"22334":0,"22335":1,"22336":0,"22337":1,"22338":0,"22339":0,"22340":0,"22341":0,"22342":0,"22343":0,"22344":0,"22345":0,"22346":1,"22347":0,"22348":1,"22349":0,"22350":1,"22351":1,"22352":0,"22353":0,"22354":0,"22355":0,"22356":0,"22357":0,"22358":1,"22359":0,"22360":0,"22361":0,"22362":1,"22363":0,"22364":0,"22365":1,"22366":0,"22367":1,"22368":0,"22369":0,"22370":0,"22371":0,"22372":1,"22373":0,"22374":0,"22375":0,"22376":0,"22377":0,"22378":0,"22379":0,"22380":1,"22381":0,"22382":0,"22383":1,"22384":1,"22385":1,"22386":0,"22387":0,"22388":0,"22389":0,"22390":0,"22391":1,"22392":0,"22393":0,"22394":0,"22395":0,"22396":1,"22397":0,"22398":0,"22399":0,"22400":1,"22401":0,"22402":0,"22403":0,"22404":0,"22405":0,"22406":0,"22407":0,"22408":1,"22409":0,"22410":0,"22411":0,"22412":0,"22413":0,"22414":0,"22415":0,"22416":0,"22417":0,"22418":0,"22419":0,"22420":0,"22421":0,"22422":0,"22423":0,"22424":0,"22425":0,"22426":0,"22427":0,"22428":0,"22429":1,"22430":1,"22431":0,"22432":0,"22433":0,"22434":1,"22435":0,"22436":0,"22437":1,"22438":0,"22439":1,"22440":1,"22441":0,"22442":0,"22443":0,"22444":0,"22445":0,"22446":0,"22447":0,"22448":0,"22449":1,"22450":0,"22451":0,"22452":0,"22453":1,"22454":1,"22455":0,"22456":0,"22457":1,"22458":0,"22459":0,"22460":0,"22461":0,"22462":0,"22463":1,"22464":0,"22465":0,"22466":0,"22467":1,"22468":1,"22469":0,"22470":0,"22471":0,"22472":1,"22473":0,"22474":0,"22475":0,"22476":1,"22477":0,"22478":0,"22479":1,"22480":1,"22481":1,"22482":0,"22483":0,"22484":0,"22485":1,"22486":0,"22487":0,"22488":0,"22489":0,"22490":1,"22491":0,"22492":0,"22493":0,"22494":0,"22495":0,"22496":0,"22497":0,"22498":0,"22499":0,"22500":0,"22501":0,"22502":0,"22503":0,"22504":0,"22505":0,"22506":1,"22507":1,"22508":0,"22509":1,"22510":1,"22511":0,"22512":0,"22513":0,"22514":1,"22515":1,"22516":0,"22517":1,"22518":0,"22519":0,"22520":0,"22521":0,"22522":0,"22523":1,"22524":0,"22525":1,"22526":0,"22527":0,"22528":0,"22529":0,"22530":0,"22531":0,"22532":1,"22533":0,"22534":0,"22535":0,"22536":0,"22537":0,"22538":0,"22539":0,"22540":0,"22541":0,"22542":0,"22543":0,"22544":0,"22545":0,"22546":1,"22547":1,"22548":0,"22549":0,"22550":1,"22551":0,"22552":0,"22553":0,"22554":0,"22555":0,"22556":1,"22557":0,"22558":0,"22559":0,"22560":1,"22561":0,"22562":1,"22563":1,"22564":1,"22565":0,"22566":0,"22567":0,"22568":0,"22569":0,"22570":1,"22571":1,"22572":0,"22573":0,"22574":1,"22575":0,"22576":0,"22577":0,"22578":0,"22579":1,"22580":1,"22581":0,"22582":1,"22583":0,"22584":0,"22585":0,"22586":0,"22587":0,"22588":0,"22589":0,"22590":1,"22591":0,"22592":1,"22593":0,"22594":1,"22595":0,"22596":0,"22597":0,"22598":0,"22599":0,"22600":0,"22601":1,"22602":0,"22603":0,"22604":0,"22605":0,"22606":0,"22607":0,"22608":0,"22609":0,"22610":0,"22611":1,"22612":0,"22613":0,"22614":0,"22615":0,"22616":0,"22617":1,"22618":0,"22619":1,"22620":0,"22621":0,"22622":1,"22623":1,"22624":0,"22625":0,"22626":0,"22627":1,"22628":0,"22629":0,"22630":0,"22631":0,"22632":0,"22633":0,"22634":0,"22635":0,"22636":1,"22637":0,"22638":0,"22639":0,"22640":0,"22641":0,"22642":1,"22643":0,"22644":0,"22645":0,"22646":0,"22647":0,"22648":1,"22649":0,"22650":1,"22651":0,"22652":1,"22653":1,"22654":1,"22655":0,"22656":0,"22657":1,"22658":0,"22659":0,"22660":0,"22661":1,"22662":0,"22663":0,"22664":0,"22665":1,"22666":0,"22667":0,"22668":1,"22669":0,"22670":0,"22671":0,"22672":1,"22673":1,"22674":1,"22675":0,"22676":1,"22677":0,"22678":0,"22679":1,"22680":0,"22681":0,"22682":1,"22683":0,"22684":0,"22685":0,"22686":0,"22687":0,"22688":0,"22689":0,"22690":1,"22691":1,"22692":0,"22693":0,"22694":1,"22695":1,"22696":0,"22697":0,"22698":1,"22699":0,"22700":0,"22701":0,"22702":1,"22703":0,"22704":0,"22705":0,"22706":0,"22707":0,"22708":0,"22709":1,"22710":0,"22711":0,"22712":0,"22713":1,"22714":0,"22715":1,"22716":1,"22717":0,"22718":0,"22719":0,"22720":0,"22721":0,"22722":0,"22723":0,"22724":1,"22725":0,"22726":0,"22727":1,"22728":0,"22729":0,"22730":0,"22731":0,"22732":0,"22733":0,"22734":0,"22735":1,"22736":0,"22737":0,"22738":0,"22739":0,"22740":0,"22741":0,"22742":0,"22743":0,"22744":0,"22745":1,"22746":0,"22747":0,"22748":1,"22749":0,"22750":0,"22751":0,"22752":1,"22753":0,"22754":0,"22755":1,"22756":1,"22757":0,"22758":0,"22759":0,"22760":1,"22761":0,"22762":1,"22763":0,"22764":1,"22765":1,"22766":0,"22767":0,"22768":0,"22769":0,"22770":0,"22771":0,"22772":0,"22773":0,"22774":1,"22775":0,"22776":0,"22777":0,"22778":0,"22779":0,"22780":0,"22781":0,"22782":1,"22783":0,"22784":0,"22785":0,"22786":0,"22787":0,"22788":0,"22789":0,"22790":1,"22791":0,"22792":0,"22793":0,"22794":0,"22795":0,"22796":0,"22797":0,"22798":0,"22799":0,"22800":0,"22801":0,"22802":0,"22803":0,"22804":0,"22805":0,"22806":0,"22807":0,"22808":0,"22809":0,"22810":0,"22811":1,"22812":0,"22813":1,"22814":1,"22815":1,"22816":1,"22817":1,"22818":0,"22819":1,"22820":0,"22821":0,"22822":0,"22823":1,"22824":0,"22825":0,"22826":0,"22827":0,"22828":0,"22829":1,"22830":0,"22831":0,"22832":0,"22833":0,"22834":0,"22835":0,"22836":0,"22837":0,"22838":0,"22839":0,"22840":0,"22841":0,"22842":0,"22843":1,"22844":0,"22845":0,"22846":0,"22847":0,"22848":0,"22849":0,"22850":0,"22851":1,"22852":0,"22853":1,"22854":0,"22855":1,"22856":0,"22857":0,"22858":0,"22859":0,"22860":0,"22861":0,"22862":1,"22863":0,"22864":0,"22865":0,"22866":1,"22867":0,"22868":0,"22869":0,"22870":0,"22871":0,"22872":0,"22873":0,"22874":0,"22875":1,"22876":1,"22877":0,"22878":0,"22879":0,"22880":1,"22881":0,"22882":1,"22883":0,"22884":0,"22885":0,"22886":0,"22887":0,"22888":0,"22889":1,"22890":1,"22891":0,"22892":0,"22893":1,"22894":0,"22895":0,"22896":0,"22897":0,"22898":0,"22899":0,"22900":0,"22901":1,"22902":0,"22903":0,"22904":0,"22905":1,"22906":0,"22907":0,"22908":0,"22909":0,"22910":0,"22911":0,"22912":1,"22913":0,"22914":0,"22915":0,"22916":0,"22917":1,"22918":0,"22919":0,"22920":0,"22921":0,"22922":0,"22923":0,"22924":0,"22925":0,"22926":0,"22927":0,"22928":0,"22929":0,"22930":0,"22931":0,"22932":0,"22933":0,"22934":0,"22935":1,"22936":0,"22937":1,"22938":0,"22939":0,"22940":1,"22941":0,"22942":0,"22943":0,"22944":1,"22945":0,"22946":1,"22947":0,"22948":0,"22949":1,"22950":0,"22951":0,"22952":0,"22953":0,"22954":0,"22955":0,"22956":0,"22957":1,"22958":0,"22959":0,"22960":0,"22961":0,"22962":0,"22963":0,"22964":0,"22965":0,"22966":1,"22967":1,"22968":0,"22969":1,"22970":1,"22971":0,"22972":0,"22973":0,"22974":0,"22975":0,"22976":0,"22977":0,"22978":0,"22979":1,"22980":1,"22981":1,"22982":0,"22983":0,"22984":0,"22985":0,"22986":0,"22987":1,"22988":0,"22989":0,"22990":1,"22991":0,"22992":0,"22993":1,"22994":0,"22995":0,"22996":0,"22997":0,"22998":0,"22999":0,"23000":0,"23001":0,"23002":0,"23003":0,"23004":0,"23005":0,"23006":0,"23007":0,"23008":0,"23009":1,"23010":0,"23011":0,"23012":0,"23013":0,"23014":1,"23015":0,"23016":0,"23017":0,"23018":1,"23019":0,"23020":0,"23021":0,"23022":1,"23023":0,"23024":0,"23025":0,"23026":0,"23027":0,"23028":1,"23029":1,"23030":0,"23031":1,"23032":0,"23033":0,"23034":0,"23035":1,"23036":0,"23037":0,"23038":1,"23039":0,"23040":0,"23041":0,"23042":0,"23043":0,"23044":0,"23045":0,"23046":0,"23047":1,"23048":1,"23049":0,"23050":0,"23051":0,"23052":0,"23053":0,"23054":1,"23055":0,"23056":0,"23057":0,"23058":0,"23059":1,"23060":0,"23061":0,"23062":1,"23063":0,"23064":0,"23065":0,"23066":1,"23067":0,"23068":0,"23069":0,"23070":1,"23071":0,"23072":0,"23073":0,"23074":0,"23075":0,"23076":1,"23077":0,"23078":1,"23079":0,"23080":0,"23081":0,"23082":0,"23083":1,"23084":1,"23085":1,"23086":0,"23087":1,"23088":1,"23089":1,"23090":0,"23091":1,"23092":0,"23093":0,"23094":0,"23095":0,"23096":1,"23097":0,"23098":1,"23099":0,"23100":0,"23101":0,"23102":1,"23103":0,"23104":0,"23105":0,"23106":0,"23107":0,"23108":0,"23109":0,"23110":1,"23111":0,"23112":0,"23113":0,"23114":0,"23115":0,"23116":1,"23117":0,"23118":0,"23119":0,"23120":0,"23121":0,"23122":1,"23123":0,"23124":1,"23125":0,"23126":1,"23127":1,"23128":0,"23129":1,"23130":0,"23131":0,"23132":1,"23133":1,"23134":0,"23135":0,"23136":0,"23137":0,"23138":0,"23139":0,"23140":0,"23141":0,"23142":0,"23143":0,"23144":1,"23145":0,"23146":0,"23147":0,"23148":0,"23149":0,"23150":0,"23151":1,"23152":0,"23153":0,"23154":0,"23155":0,"23156":0,"23157":1,"23158":0,"23159":0,"23160":0,"23161":0,"23162":0,"23163":1,"23164":0,"23165":0,"23166":0,"23167":0,"23168":1,"23169":0,"23170":0,"23171":0,"23172":0,"23173":1,"23174":0,"23175":0,"23176":0,"23177":0,"23178":1,"23179":0,"23180":0,"23181":0,"23182":0,"23183":0,"23184":1,"23185":0,"23186":1,"23187":0,"23188":0,"23189":0,"23190":1,"23191":0,"23192":0,"23193":0,"23194":0,"23195":1,"23196":0,"23197":1,"23198":0,"23199":0,"23200":0,"23201":0,"23202":0,"23203":0,"23204":0,"23205":0,"23206":0,"23207":1,"23208":0,"23209":0,"23210":1,"23211":1,"23212":1,"23213":0,"23214":0,"23215":0,"23216":1,"23217":0,"23218":0,"23219":1,"23220":0,"23221":0,"23222":1,"23223":1,"23224":0,"23225":0,"23226":1,"23227":0,"23228":0,"23229":0,"23230":0,"23231":1,"23232":0,"23233":0,"23234":0,"23235":0,"23236":0,"23237":0,"23238":1,"23239":1,"23240":0,"23241":0,"23242":1,"23243":0,"23244":0,"23245":0,"23246":0,"23247":1,"23248":0,"23249":0,"23250":0,"23251":0,"23252":1,"23253":0,"23254":1,"23255":1,"23256":0,"23257":0,"23258":0,"23259":0,"23260":0,"23261":0,"23262":0,"23263":0,"23264":0,"23265":1,"23266":0,"23267":0,"23268":1,"23269":0,"23270":0,"23271":1,"23272":0,"23273":0,"23274":0,"23275":1,"23276":0,"23277":0,"23278":0,"23279":0,"23280":1,"23281":1,"23282":0,"23283":0,"23284":0,"23285":0,"23286":1,"23287":0,"23288":0,"23289":1,"23290":0,"23291":0,"23292":0,"23293":0,"23294":0,"23295":0,"23296":0,"23297":0,"23298":1,"23299":1,"23300":0,"23301":1,"23302":0,"23303":0,"23304":1,"23305":0,"23306":1,"23307":0,"23308":0,"23309":1,"23310":0,"23311":0,"23312":1,"23313":1,"23314":0,"23315":0,"23316":0,"23317":0,"23318":0,"23319":0,"23320":0,"23321":0,"23322":0,"23323":0,"23324":0,"23325":0,"23326":0,"23327":0,"23328":0,"23329":0,"23330":0,"23331":0,"23332":0,"23333":1,"23334":0,"23335":0,"23336":0,"23337":0,"23338":0,"23339":0,"23340":1,"23341":0,"23342":1,"23343":0,"23344":1,"23345":0,"23346":0,"23347":1,"23348":0,"23349":0,"23350":0,"23351":0,"23352":0,"23353":0,"23354":1,"23355":0,"23356":0,"23357":1,"23358":1,"23359":0,"23360":0,"23361":0,"23362":1,"23363":1,"23364":1,"23365":1,"23366":0,"23367":0,"23368":1,"23369":0,"23370":1,"23371":0,"23372":0,"23373":0,"23374":0,"23375":0,"23376":0,"23377":1,"23378":1,"23379":1,"23380":0,"23381":0,"23382":0,"23383":1,"23384":1,"23385":1,"23386":1,"23387":0,"23388":0,"23389":0,"23390":0,"23391":0,"23392":0,"23393":1,"23394":0,"23395":0,"23396":0,"23397":0,"23398":1,"23399":1,"23400":0,"23401":0,"23402":1,"23403":1,"23404":0,"23405":0,"23406":1,"23407":0,"23408":0,"23409":0,"23410":1,"23411":1,"23412":0,"23413":0,"23414":0,"23415":0,"23416":1,"23417":1,"23418":1,"23419":1,"23420":0,"23421":1,"23422":1,"23423":0,"23424":0,"23425":0,"23426":1,"23427":1,"23428":0,"23429":0,"23430":0,"23431":0,"23432":0,"23433":0,"23434":0,"23435":0,"23436":0,"23437":0,"23438":0,"23439":0,"23440":0,"23441":0,"23442":0,"23443":0,"23444":0,"23445":1,"23446":0,"23447":0,"23448":1,"23449":0,"23450":0,"23451":0,"23452":0,"23453":1,"23454":0,"23455":0,"23456":0,"23457":0,"23458":0,"23459":1,"23460":0,"23461":0,"23462":0,"23463":1,"23464":0,"23465":1,"23466":1,"23467":0,"23468":0,"23469":0,"23470":0,"23471":1,"23472":0,"23473":0,"23474":0,"23475":1,"23476":1,"23477":0,"23478":0,"23479":0,"23480":1,"23481":0,"23482":0,"23483":1,"23484":0,"23485":0,"23486":0,"23487":1,"23488":0,"23489":0,"23490":0,"23491":0,"23492":0,"23493":0,"23494":0,"23495":1,"23496":0,"23497":0,"23498":0,"23499":0,"23500":1,"23501":0,"23502":1,"23503":0,"23504":0,"23505":0,"23506":0,"23507":0,"23508":1,"23509":0,"23510":0,"23511":0,"23512":1,"23513":1,"23514":0,"23515":0,"23516":0,"23517":1,"23518":0,"23519":0,"23520":1,"23521":0,"23522":0,"23523":0,"23524":0,"23525":0,"23526":0,"23527":1,"23528":0,"23529":0,"23530":0,"23531":1,"23532":0,"23533":1,"23534":0,"23535":0,"23536":0,"23537":0,"23538":0,"23539":1,"23540":0,"23541":1,"23542":1,"23543":1,"23544":0,"23545":1,"23546":1,"23547":1,"23548":0,"23549":1,"23550":1,"23551":0,"23552":0,"23553":0,"23554":0,"23555":1,"23556":0,"23557":0,"23558":0,"23559":0,"23560":0,"23561":0,"23562":0,"23563":1,"23564":0,"23565":0,"23566":0,"23567":1,"23568":0,"23569":0,"23570":0,"23571":0,"23572":0,"23573":0,"23574":1,"23575":0,"23576":0,"23577":0,"23578":1,"23579":0,"23580":0,"23581":0,"23582":0,"23583":0,"23584":1,"23585":0,"23586":0,"23587":0,"23588":0,"23589":1,"23590":1,"23591":0,"23592":0,"23593":0,"23594":0,"23595":0,"23596":0,"23597":1,"23598":0,"23599":1,"23600":0,"23601":0,"23602":0,"23603":0,"23604":0,"23605":0,"23606":0,"23607":0,"23608":1,"23609":0,"23610":0,"23611":0,"23612":0,"23613":0,"23614":1,"23615":0,"23616":0,"23617":1,"23618":0,"23619":0,"23620":0,"23621":0,"23622":0,"23623":0,"23624":0,"23625":0,"23626":0,"23627":1,"23628":0,"23629":1,"23630":0,"23631":1,"23632":0,"23633":1,"23634":0,"23635":0,"23636":0,"23637":0,"23638":0,"23639":0,"23640":0,"23641":0,"23642":1,"23643":0,"23644":0,"23645":1,"23646":1,"23647":0,"23648":1,"23649":1,"23650":1,"23651":1,"23652":0,"23653":0,"23654":0,"23655":0,"23656":0,"23657":0,"23658":0,"23659":0,"23660":1,"23661":0,"23662":0,"23663":0,"23664":0,"23665":0,"23666":0,"23667":1,"23668":0,"23669":0,"23670":0,"23671":1,"23672":0,"23673":0,"23674":1,"23675":0,"23676":0,"23677":0,"23678":1,"23679":0,"23680":1,"23681":0,"23682":0,"23683":1,"23684":0,"23685":0,"23686":0,"23687":0,"23688":1,"23689":1,"23690":0,"23691":0,"23692":0,"23693":0,"23694":0,"23695":1,"23696":0,"23697":1,"23698":0,"23699":0,"23700":0,"23701":0,"23702":0,"23703":0,"23704":1,"23705":0,"23706":0,"23707":1,"23708":0,"23709":0,"23710":1,"23711":0,"23712":0,"23713":0,"23714":0,"23715":0,"23716":1,"23717":0,"23718":0,"23719":1,"23720":1,"23721":0,"23722":0,"23723":0,"23724":0,"23725":0,"23726":0,"23727":1,"23728":1,"23729":0,"23730":0,"23731":1,"23732":0,"23733":0,"23734":0,"23735":0,"23736":0,"23737":1,"23738":0,"23739":1,"23740":1,"23741":1,"23742":0,"23743":0,"23744":0,"23745":0,"23746":1,"23747":0,"23748":0,"23749":0,"23750":1,"23751":1,"23752":0,"23753":1,"23754":1,"23755":0,"23756":0,"23757":0,"23758":0,"23759":0,"23760":0,"23761":1,"23762":0,"23763":1,"23764":1,"23765":0,"23766":0,"23767":1,"23768":0,"23769":1,"23770":0,"23771":0,"23772":0,"23773":0,"23774":1,"23775":0,"23776":0,"23777":0,"23778":0,"23779":0,"23780":0,"23781":0,"23782":0,"23783":0,"23784":1,"23785":0,"23786":0,"23787":1,"23788":0,"23789":0,"23790":0,"23791":1,"23792":0,"23793":1,"23794":0,"23795":0,"23796":1,"23797":0,"23798":0,"23799":0,"23800":0,"23801":0,"23802":0,"23803":0,"23804":1,"23805":1,"23806":0,"23807":0,"23808":0,"23809":0,"23810":0,"23811":1,"23812":0,"23813":0,"23814":0,"23815":0,"23816":0,"23817":0,"23818":0,"23819":1,"23820":0,"23821":0,"23822":0,"23823":0,"23824":1,"23825":0,"23826":0,"23827":0,"23828":0,"23829":1,"23830":0,"23831":0,"23832":0,"23833":1,"23834":1,"23835":0,"23836":0,"23837":1,"23838":0,"23839":0,"23840":0,"23841":0,"23842":0,"23843":1,"23844":0,"23845":0,"23846":1,"23847":1,"23848":1,"23849":0,"23850":0,"23851":0,"23852":1,"23853":0,"23854":1,"23855":0,"23856":0,"23857":0,"23858":0,"23859":0,"23860":1,"23861":0,"23862":0,"23863":0,"23864":1,"23865":1,"23866":0,"23867":0,"23868":0,"23869":0,"23870":0,"23871":1,"23872":0,"23873":0,"23874":1,"23875":1,"23876":0,"23877":0,"23878":0,"23879":0,"23880":0,"23881":0,"23882":1,"23883":0,"23884":0,"23885":0,"23886":0,"23887":0,"23888":0,"23889":0,"23890":0,"23891":0,"23892":0,"23893":0,"23894":0,"23895":0,"23896":1,"23897":1,"23898":0,"23899":0,"23900":1,"23901":1,"23902":0,"23903":0,"23904":0,"23905":1,"23906":0,"23907":0,"23908":1,"23909":1,"23910":0,"23911":0,"23912":0,"23913":0,"23914":0,"23915":0,"23916":1,"23917":0,"23918":0,"23919":0,"23920":0,"23921":0,"23922":0,"23923":0,"23924":1,"23925":1,"23926":1,"23927":0,"23928":0,"23929":1,"23930":1,"23931":0,"23932":1,"23933":0,"23934":0,"23935":0,"23936":0,"23937":0,"23938":1,"23939":1,"23940":0,"23941":0,"23942":0,"23943":0,"23944":1,"23945":1,"23946":0,"23947":1,"23948":0,"23949":0,"23950":0,"23951":0,"23952":0,"23953":1,"23954":1,"23955":0,"23956":0,"23957":0,"23958":0,"23959":0,"23960":1,"23961":1,"23962":0,"23963":0,"23964":0,"23965":0,"23966":1,"23967":0,"23968":0,"23969":0,"23970":0,"23971":0,"23972":0,"23973":0,"23974":1,"23975":1,"23976":0,"23977":0,"23978":0,"23979":0,"23980":0,"23981":1,"23982":1,"23983":1,"23984":0,"23985":0,"23986":1,"23987":0,"23988":0,"23989":0,"23990":0,"23991":1,"23992":0,"23993":0,"23994":0,"23995":0,"23996":1,"23997":1,"23998":1,"23999":0,"24000":0,"24001":1,"24002":1,"24003":1,"24004":0,"24005":0,"24006":1,"24007":0,"24008":0,"24009":1,"24010":0,"24011":0,"24012":0,"24013":0,"24014":0,"24015":0,"24016":1,"24017":1,"24018":1,"24019":1,"24020":0,"24021":0,"24022":0,"24023":1,"24024":1,"24025":0,"24026":0,"24027":1,"24028":1,"24029":0,"24030":0,"24031":0,"24032":0,"24033":0,"24034":1,"24035":0,"24036":1,"24037":0,"24038":0,"24039":1,"24040":0,"24041":0,"24042":0,"24043":0,"24044":1,"24045":1,"24046":0,"24047":0,"24048":0,"24049":0,"24050":0,"24051":0,"24052":0,"24053":1,"24054":1,"24055":0,"24056":0,"24057":1,"24058":0,"24059":0,"24060":1,"24061":0,"24062":0,"24063":0,"24064":0,"24065":0,"24066":1,"24067":0,"24068":0,"24069":0,"24070":0,"24071":0,"24072":1,"24073":0,"24074":0,"24075":0,"24076":0,"24077":0,"24078":0,"24079":0,"24080":1,"24081":0,"24082":0,"24083":0,"24084":0,"24085":1,"24086":0,"24087":1,"24088":0,"24089":1,"24090":0,"24091":0,"24092":0,"24093":0,"24094":1,"24095":0,"24096":1,"24097":0,"24098":0,"24099":1,"24100":0,"24101":0,"24102":0,"24103":0,"24104":1,"24105":0,"24106":0,"24107":0,"24108":1,"24109":0,"24110":1,"24111":0,"24112":0,"24113":0,"24114":1,"24115":0,"24116":0,"24117":0,"24118":0,"24119":0,"24120":0,"24121":0,"24122":1,"24123":1,"24124":0,"24125":0,"24126":0,"24127":0,"24128":0,"24129":0,"24130":1,"24131":0,"24132":1,"24133":0,"24134":0,"24135":0,"24136":0,"24137":0,"24138":0,"24139":0,"24140":0,"24141":1,"24142":0,"24143":0,"24144":0,"24145":0,"24146":1,"24147":0,"24148":1,"24149":0,"24150":1,"24151":1,"24152":0,"24153":0,"24154":0,"24155":0,"24156":0,"24157":0,"24158":1,"24159":0,"24160":1,"24161":0,"24162":0,"24163":0,"24164":0,"24165":1,"24166":0,"24167":0,"24168":1,"24169":0,"24170":0,"24171":0,"24172":0,"24173":0,"24174":0,"24175":1,"24176":1,"24177":0,"24178":1,"24179":0,"24180":0,"24181":1,"24182":1,"24183":0,"24184":0,"24185":0,"24186":0,"24187":1,"24188":0,"24189":0,"24190":1,"24191":1,"24192":1,"24193":1,"24194":0,"24195":1,"24196":0,"24197":0,"24198":0,"24199":0,"24200":0,"24201":0,"24202":0,"24203":1,"24204":0,"24205":1,"24206":1,"24207":0,"24208":0,"24209":0,"24210":0,"24211":0,"24212":0,"24213":0,"24214":0,"24215":0,"24216":0,"24217":0,"24218":0,"24219":0,"24220":0,"24221":0,"24222":0,"24223":0,"24224":1,"24225":1,"24226":0,"24227":0,"24228":0,"24229":1,"24230":0,"24231":0,"24232":1,"24233":1,"24234":0,"24235":0,"24236":0,"24237":1,"24238":0,"24239":1,"24240":0,"24241":1,"24242":0,"24243":0,"24244":0,"24245":0,"24246":0,"24247":1,"24248":1,"24249":0,"24250":0,"24251":0,"24252":0,"24253":0,"24254":0,"24255":0,"24256":1,"24257":0,"24258":0,"24259":0,"24260":1,"24261":0,"24262":0,"24263":1,"24264":0,"24265":0,"24266":0,"24267":1,"24268":0,"24269":0,"24270":0,"24271":1,"24272":0,"24273":0,"24274":0,"24275":1,"24276":0,"24277":0,"24278":1,"24279":0,"24280":0,"24281":0,"24282":1,"24283":0,"24284":0,"24285":0,"24286":0,"24287":1,"24288":0,"24289":0,"24290":1,"24291":1,"24292":1,"24293":0,"24294":0,"24295":0,"24296":1,"24297":0,"24298":0,"24299":1,"24300":0,"24301":0,"24302":0,"24303":1,"24304":0,"24305":0,"24306":1,"24307":0,"24308":0,"24309":0,"24310":1,"24311":0,"24312":0,"24313":1,"24314":0,"24315":0,"24316":0,"24317":0,"24318":0,"24319":0,"24320":0,"24321":0,"24322":0,"24323":1,"24324":0,"24325":0,"24326":0,"24327":0,"24328":1,"24329":0,"24330":1,"24331":1,"24332":0,"24333":1,"24334":1,"24335":0,"24336":0,"24337":1,"24338":0,"24339":0,"24340":0,"24341":0,"24342":1,"24343":0,"24344":0,"24345":0,"24346":0,"24347":0,"24348":1,"24349":0,"24350":0,"24351":1,"24352":0,"24353":1,"24354":1,"24355":0,"24356":0,"24357":1,"24358":0,"24359":0,"24360":1,"24361":0,"24362":0,"24363":0,"24364":0,"24365":0,"24366":1,"24367":0,"24368":0,"24369":0,"24370":0,"24371":1,"24372":0,"24373":0,"24374":0,"24375":0,"24376":0,"24377":0,"24378":0,"24379":1,"24380":0,"24381":0,"24382":0,"24383":0,"24384":0,"24385":0,"24386":0,"24387":1,"24388":0,"24389":0,"24390":0,"24391":0,"24392":0,"24393":0,"24394":0,"24395":1,"24396":0,"24397":0,"24398":1,"24399":0,"24400":0,"24401":0,"24402":1,"24403":1,"24404":0,"24405":0,"24406":0,"24407":0,"24408":0,"24409":1,"24410":1,"24411":0,"24412":0,"24413":1,"24414":0,"24415":0,"24416":0,"24417":0,"24418":0,"24419":0,"24420":1,"24421":0,"24422":1,"24423":0,"24424":0,"24425":0,"24426":1,"24427":0,"24428":0,"24429":0,"24430":0,"24431":0,"24432":1,"24433":0,"24434":0,"24435":1,"24436":0,"24437":0,"24438":0,"24439":0,"24440":0,"24441":1,"24442":0,"24443":1,"24444":0,"24445":0,"24446":0,"24447":0,"24448":0,"24449":0,"24450":0,"24451":1,"24452":1,"24453":0,"24454":0,"24455":0,"24456":0,"24457":0,"24458":1,"24459":0,"24460":0,"24461":0,"24462":0,"24463":0,"24464":0,"24465":0,"24466":0,"24467":0,"24468":1,"24469":1,"24470":1,"24471":0,"24472":0,"24473":1,"24474":0,"24475":0,"24476":0,"24477":0,"24478":1,"24479":0,"24480":0,"24481":0,"24482":0,"24483":0,"24484":0,"24485":0,"24486":0,"24487":0,"24488":0,"24489":0,"24490":0,"24491":0,"24492":0,"24493":1,"24494":0,"24495":0,"24496":0,"24497":0,"24498":0,"24499":1,"24500":0,"24501":0,"24502":1,"24503":1,"24504":0,"24505":1,"24506":1,"24507":1,"24508":0,"24509":0,"24510":0,"24511":0,"24512":1,"24513":0,"24514":0,"24515":0,"24516":0,"24517":0,"24518":0,"24519":0,"24520":0,"24521":0,"24522":1,"24523":1,"24524":0,"24525":1,"24526":0,"24527":0,"24528":1,"24529":0,"24530":1,"24531":0,"24532":1,"24533":1,"24534":0,"24535":0,"24536":1,"24537":0,"24538":0,"24539":0,"24540":0,"24541":0,"24542":0,"24543":0,"24544":0,"24545":0,"24546":1,"24547":0,"24548":0,"24549":0,"24550":0,"24551":0,"24552":0,"24553":0,"24554":0,"24555":0,"24556":0,"24557":0,"24558":0,"24559":0,"24560":1,"24561":0,"24562":0,"24563":0,"24564":0,"24565":0,"24566":0,"24567":0,"24568":0,"24569":0,"24570":0,"24571":0,"24572":0,"24573":1,"24574":0,"24575":0,"24576":0,"24577":0,"24578":0,"24579":0,"24580":0,"24581":1,"24582":1,"24583":0,"24584":1,"24585":0,"24586":1,"24587":0,"24588":0,"24589":1,"24590":0,"24591":0,"24592":1,"24593":0,"24594":0,"24595":0,"24596":0,"24597":1,"24598":1,"24599":0,"24600":1,"24601":0,"24602":0,"24603":0,"24604":0,"24605":1,"24606":0,"24607":0,"24608":0,"24609":1,"24610":0,"24611":0,"24612":0,"24613":0,"24614":0,"24615":0,"24616":0,"24617":1,"24618":0,"24619":1,"24620":0,"24621":1,"24622":0,"24623":0,"24624":1,"24625":0,"24626":0,"24627":0,"24628":0,"24629":0,"24630":0,"24631":0,"24632":0,"24633":1,"24634":1,"24635":0,"24636":0,"24637":0,"24638":0,"24639":0,"24640":0,"24641":1,"24642":0,"24643":1,"24644":0,"24645":1,"24646":0,"24647":1,"24648":0,"24649":1,"24650":1,"24651":1,"24652":0,"24653":1,"24654":1,"24655":1,"24656":0,"24657":0,"24658":0,"24659":0,"24660":1,"24661":0,"24662":0,"24663":1,"24664":0,"24665":1,"24666":0,"24667":0,"24668":0,"24669":0,"24670":1,"24671":0,"24672":0,"24673":0,"24674":0,"24675":0,"24676":1,"24677":1,"24678":0,"24679":1,"24680":0,"24681":0,"24682":0,"24683":0,"24684":0,"24685":0,"24686":0,"24687":1,"24688":0,"24689":0,"24690":0,"24691":1,"24692":0,"24693":1,"24694":1,"24695":0,"24696":0,"24697":1,"24698":0,"24699":1,"24700":0,"24701":0,"24702":0,"24703":0,"24704":0,"24705":0,"24706":0,"24707":0,"24708":0,"24709":1,"24710":0,"24711":0,"24712":0,"24713":0,"24714":0,"24715":1,"24716":1,"24717":0,"24718":1,"24719":0,"24720":1,"24721":1,"24722":0,"24723":0,"24724":0,"24725":1,"24726":0,"24727":0,"24728":0,"24729":1,"24730":0,"24731":1,"24732":0,"24733":0,"24734":0,"24735":0,"24736":0,"24737":1,"24738":0,"24739":0,"24740":0,"24741":1,"24742":0,"24743":1,"24744":0,"24745":0,"24746":1,"24747":0,"24748":0,"24749":1,"24750":0,"24751":1,"24752":1,"24753":1,"24754":0,"24755":1,"24756":0,"24757":1,"24758":0,"24759":1,"24760":1,"24761":0,"24762":1,"24763":0,"24764":0,"24765":0,"24766":0,"24767":0,"24768":0,"24769":1,"24770":0,"24771":0,"24772":0,"24773":0,"24774":1,"24775":0,"24776":0,"24777":1,"24778":0,"24779":0,"24780":0,"24781":0,"24782":0,"24783":0,"24784":0,"24785":0,"24786":0,"24787":0,"24788":1,"24789":0,"24790":1,"24791":1,"24792":0,"24793":0,"24794":0,"24795":0,"24796":1,"24797":1,"24798":1,"24799":0,"24800":0,"24801":0,"24802":0,"24803":0,"24804":0,"24805":0,"24806":0,"24807":1,"24808":1,"24809":0,"24810":0,"24811":0,"24812":0,"24813":0,"24814":1,"24815":0,"24816":0,"24817":1,"24818":0,"24819":0,"24820":1,"24821":1,"24822":0,"24823":0,"24824":0,"24825":0,"24826":0,"24827":1,"24828":0,"24829":0,"24830":0,"24831":0,"24832":0,"24833":0,"24834":1,"24835":0,"24836":0,"24837":1,"24838":1,"24839":0,"24840":0,"24841":0,"24842":0,"24843":0,"24844":0,"24845":0,"24846":0,"24847":0,"24848":0,"24849":1,"24850":0,"24851":1,"24852":0,"24853":0,"24854":0,"24855":0,"24856":1,"24857":1,"24858":0,"24859":0,"24860":1,"24861":0,"24862":0,"24863":0,"24864":0,"24865":0,"24866":0,"24867":0,"24868":0,"24869":0,"24870":1,"24871":1,"24872":0,"24873":0,"24874":0,"24875":0,"24876":0,"24877":0,"24878":0,"24879":1,"24880":1,"24881":1,"24882":0,"24883":0,"24884":0,"24885":0,"24886":0,"24887":0,"24888":0,"24889":1,"24890":1,"24891":0,"24892":0,"24893":0,"24894":0,"24895":1,"24896":0,"24897":0,"24898":0,"24899":0,"24900":0,"24901":0,"24902":1,"24903":0,"24904":0,"24905":0,"24906":0,"24907":0,"24908":0,"24909":0,"24910":0,"24911":0,"24912":0,"24913":0,"24914":1,"24915":0,"24916":0,"24917":0,"24918":1,"24919":1,"24920":0,"24921":0,"24922":0,"24923":0,"24924":0,"24925":1,"24926":0,"24927":1,"24928":0,"24929":0,"24930":0,"24931":1,"24932":0,"24933":0,"24934":0,"24935":0,"24936":0,"24937":0,"24938":0,"24939":0,"24940":1,"24941":0,"24942":0,"24943":0,"24944":0,"24945":0,"24946":1,"24947":0,"24948":0,"24949":0,"24950":0,"24951":0,"24952":0,"24953":1,"24954":0,"24955":0,"24956":0,"24957":0,"24958":1,"24959":0,"24960":0,"24961":0,"24962":1,"24963":0,"24964":0,"24965":0,"24966":0,"24967":1,"24968":0,"24969":0,"24970":0,"24971":0,"24972":0,"24973":0,"24974":0,"24975":0,"24976":0,"24977":0,"24978":0,"24979":0,"24980":0,"24981":0,"24982":1,"24983":0,"24984":0,"24985":0,"24986":0,"24987":0,"24988":0,"24989":0,"24990":0,"24991":0,"24992":1,"24993":0,"24994":0,"24995":0,"24996":1,"24997":0,"24998":1,"24999":0,"25000":0,"25001":1,"25002":0,"25003":0,"25004":1,"25005":0,"25006":0,"25007":0,"25008":1,"25009":0,"25010":0,"25011":1,"25012":0,"25013":1,"25014":1,"25015":0,"25016":0,"25017":0,"25018":1,"25019":1,"25020":0,"25021":1,"25022":0,"25023":0,"25024":0,"25025":0,"25026":0,"25027":0,"25028":0,"25029":1,"25030":0,"25031":1,"25032":0,"25033":1,"25034":0,"25035":0,"25036":0,"25037":0,"25038":1,"25039":0,"25040":0,"25041":1,"25042":0,"25043":0,"25044":0,"25045":0,"25046":1,"25047":1,"25048":0,"25049":1,"25050":1,"25051":0,"25052":0,"25053":0,"25054":1,"25055":1,"25056":0,"25057":0,"25058":1,"25059":0,"25060":1,"25061":0,"25062":0,"25063":0,"25064":0,"25065":0,"25066":0,"25067":0,"25068":1,"25069":1,"25070":0,"25071":0,"25072":0,"25073":0,"25074":0,"25075":0,"25076":1,"25077":0,"25078":0,"25079":1,"25080":0,"25081":0,"25082":0,"25083":0,"25084":0,"25085":0,"25086":0,"25087":0,"25088":0,"25089":1,"25090":0,"25091":1,"25092":0,"25093":0,"25094":1,"25095":0,"25096":0,"25097":0,"25098":0,"25099":0,"25100":1,"25101":0,"25102":0,"25103":0,"25104":0,"25105":0,"25106":1,"25107":0,"25108":1,"25109":0,"25110":0,"25111":0,"25112":1,"25113":0,"25114":0,"25115":0,"25116":0,"25117":0,"25118":0,"25119":0,"25120":0,"25121":0,"25122":0,"25123":1,"25124":0,"25125":0,"25126":0,"25127":0,"25128":0,"25129":0,"25130":1,"25131":0,"25132":0,"25133":1,"25134":0,"25135":0,"25136":1,"25137":0,"25138":0,"25139":0,"25140":0,"25141":1,"25142":0,"25143":0,"25144":1,"25145":0,"25146":0,"25147":0,"25148":0,"25149":0,"25150":0,"25151":0,"25152":1,"25153":0,"25154":0,"25155":1,"25156":1,"25157":0,"25158":0,"25159":1,"25160":0,"25161":0,"25162":0,"25163":0,"25164":0,"25165":0,"25166":1,"25167":1,"25168":0,"25169":1,"25170":0,"25171":0,"25172":0,"25173":0,"25174":1,"25175":1,"25176":0,"25177":1,"25178":0,"25179":1,"25180":1,"25181":0,"25182":1,"25183":0,"25184":0,"25185":0,"25186":0,"25187":0,"25188":0,"25189":0,"25190":0,"25191":1,"25192":0,"25193":0,"25194":0,"25195":0,"25196":0,"25197":1,"25198":1,"25199":0,"25200":0,"25201":0,"25202":0,"25203":1,"25204":0,"25205":0,"25206":0,"25207":0,"25208":1,"25209":1,"25210":0,"25211":0,"25212":0,"25213":0,"25214":0,"25215":1,"25216":0,"25217":0,"25218":0,"25219":0,"25220":0,"25221":0,"25222":0,"25223":1,"25224":1,"25225":1,"25226":1,"25227":1,"25228":1,"25229":0,"25230":0,"25231":0,"25232":0,"25233":1,"25234":0,"25235":0,"25236":0,"25237":0,"25238":0,"25239":0,"25240":1,"25241":1,"25242":0,"25243":0,"25244":0,"25245":0,"25246":0,"25247":0,"25248":0,"25249":0,"25250":0,"25251":0,"25252":0,"25253":0,"25254":0,"25255":0,"25256":1,"25257":0,"25258":1,"25259":0,"25260":1,"25261":0,"25262":1,"25263":0,"25264":0,"25265":0,"25266":0,"25267":0,"25268":0,"25269":0,"25270":0,"25271":0,"25272":0,"25273":0,"25274":0,"25275":0,"25276":0,"25277":1,"25278":0,"25279":0,"25280":1,"25281":1,"25282":0,"25283":0,"25284":0,"25285":0,"25286":0,"25287":0,"25288":1,"25289":0,"25290":0,"25291":1,"25292":0,"25293":0,"25294":1,"25295":0,"25296":0,"25297":1,"25298":0,"25299":0,"25300":0,"25301":0,"25302":0,"25303":0,"25304":0,"25305":1,"25306":0,"25307":0,"25308":0,"25309":0,"25310":0,"25311":0,"25312":0,"25313":1,"25314":1,"25315":0,"25316":0,"25317":0,"25318":0,"25319":0,"25320":0,"25321":0,"25322":0,"25323":0,"25324":0,"25325":1,"25326":0,"25327":0,"25328":1,"25329":1,"25330":0,"25331":0,"25332":1,"25333":0,"25334":0,"25335":1,"25336":0,"25337":0,"25338":0,"25339":0,"25340":1,"25341":0,"25342":0,"25343":0,"25344":0,"25345":0,"25346":0,"25347":0,"25348":0,"25349":1,"25350":0,"25351":0,"25352":0,"25353":0,"25354":0,"25355":0,"25356":0,"25357":0,"25358":1,"25359":0,"25360":0,"25361":0,"25362":0,"25363":0,"25364":0,"25365":1,"25366":0,"25367":0,"25368":0,"25369":0,"25370":1,"25371":1,"25372":0,"25373":0,"25374":0,"25375":1,"25376":1,"25377":0,"25378":0,"25379":0,"25380":1,"25381":1,"25382":0,"25383":0,"25384":0,"25385":0,"25386":0,"25387":1,"25388":0,"25389":0,"25390":0,"25391":0,"25392":0,"25393":0,"25394":1,"25395":0,"25396":0,"25397":0,"25398":0,"25399":1,"25400":0,"25401":0,"25402":0,"25403":0,"25404":0,"25405":0,"25406":0,"25407":0,"25408":0,"25409":0,"25410":0,"25411":1,"25412":1,"25413":0,"25414":0,"25415":0,"25416":0,"25417":0,"25418":0,"25419":1,"25420":0,"25421":0,"25422":1,"25423":1,"25424":0,"25425":0,"25426":0,"25427":0,"25428":0,"25429":1,"25430":0,"25431":0,"25432":0,"25433":0,"25434":1,"25435":0,"25436":0,"25437":0,"25438":0,"25439":0,"25440":0,"25441":0,"25442":1,"25443":0,"25444":0,"25445":0,"25446":0,"25447":1,"25448":0,"25449":0,"25450":1,"25451":0,"25452":0,"25453":1,"25454":1,"25455":0,"25456":0,"25457":1,"25458":0,"25459":0,"25460":1,"25461":1,"25462":1,"25463":0,"25464":0,"25465":0,"25466":0,"25467":0,"25468":0,"25469":0,"25470":1,"25471":0,"25472":0,"25473":0,"25474":1,"25475":0,"25476":1,"25477":0,"25478":0,"25479":0,"25480":0,"25481":0,"25482":0,"25483":1,"25484":0,"25485":1,"25486":0,"25487":0,"25488":0,"25489":1,"25490":0,"25491":0,"25492":0,"25493":0,"25494":1,"25495":0,"25496":0,"25497":1,"25498":0,"25499":1,"25500":0,"25501":0,"25502":1,"25503":1,"25504":0,"25505":0,"25506":0,"25507":0,"25508":0,"25509":1,"25510":0,"25511":0,"25512":1,"25513":0,"25514":1,"25515":1,"25516":1,"25517":0,"25518":0,"25519":0,"25520":1,"25521":0,"25522":0,"25523":0,"25524":0,"25525":1,"25526":1,"25527":0,"25528":0,"25529":0,"25530":0,"25531":0,"25532":0,"25533":0,"25534":0,"25535":0,"25536":0,"25537":0,"25538":1,"25539":0,"25540":0,"25541":0,"25542":0,"25543":0,"25544":0,"25545":0,"25546":0,"25547":0,"25548":0,"25549":0,"25550":0,"25551":0,"25552":0,"25553":0,"25554":0,"25555":1,"25556":0,"25557":0,"25558":0,"25559":0,"25560":1,"25561":0,"25562":0,"25563":1,"25564":1,"25565":0,"25566":0,"25567":0,"25568":1,"25569":0,"25570":0,"25571":1,"25572":0,"25573":0,"25574":0,"25575":1,"25576":0,"25577":0,"25578":0,"25579":0,"25580":0,"25581":0,"25582":0,"25583":0,"25584":1,"25585":0,"25586":1,"25587":0,"25588":0,"25589":0,"25590":1,"25591":0,"25592":0,"25593":0,"25594":0,"25595":0,"25596":1,"25597":0,"25598":0,"25599":0,"25600":0,"25601":0,"25602":0,"25603":0,"25604":0,"25605":0,"25606":0,"25607":1,"25608":0,"25609":0,"25610":1,"25611":0,"25612":0,"25613":0,"25614":0,"25615":0,"25616":1,"25617":0,"25618":0,"25619":0,"25620":0,"25621":1,"25622":1,"25623":0,"25624":1,"25625":1,"25626":0,"25627":0,"25628":0,"25629":0,"25630":0,"25631":0,"25632":0,"25633":0,"25634":0,"25635":0,"25636":1,"25637":0,"25638":1,"25639":1,"25640":0,"25641":1,"25642":0,"25643":0,"25644":0,"25645":0,"25646":0,"25647":1,"25648":1,"25649":0,"25650":0,"25651":1,"25652":1,"25653":0,"25654":0,"25655":0,"25656":0,"25657":1,"25658":0,"25659":1,"25660":0,"25661":0,"25662":0,"25663":0,"25664":1,"25665":1,"25666":0,"25667":0,"25668":0,"25669":0,"25670":1,"25671":0,"25672":0,"25673":1,"25674":1,"25675":0,"25676":0,"25677":0,"25678":0,"25679":0,"25680":0,"25681":1,"25682":0,"25683":0,"25684":0,"25685":0,"25686":0,"25687":0,"25688":1,"25689":0,"25690":0,"25691":1,"25692":0,"25693":0,"25694":0,"25695":0,"25696":1,"25697":1,"25698":0,"25699":1,"25700":0,"25701":0,"25702":0,"25703":1,"25704":0,"25705":1,"25706":0,"25707":0,"25708":0,"25709":0,"25710":1,"25711":0,"25712":0,"25713":0,"25714":0,"25715":0,"25716":0,"25717":0,"25718":0,"25719":0,"25720":0,"25721":0,"25722":0,"25723":0,"25724":0,"25725":0,"25726":0,"25727":0,"25728":0,"25729":1,"25730":0,"25731":1,"25732":1,"25733":0,"25734":0,"25735":1,"25736":1,"25737":0,"25738":0,"25739":0,"25740":0,"25741":0,"25742":0,"25743":1,"25744":0,"25745":1,"25746":0,"25747":0,"25748":0,"25749":1,"25750":0,"25751":0,"25752":0,"25753":1,"25754":1,"25755":1,"25756":0,"25757":0,"25758":0,"25759":0,"25760":0,"25761":0,"25762":0,"25763":0,"25764":0,"25765":0,"25766":1,"25767":0,"25768":1,"25769":1,"25770":1,"25771":0,"25772":0,"25773":1,"25774":0,"25775":0,"25776":0,"25777":0,"25778":1,"25779":0,"25780":0,"25781":1,"25782":0,"25783":0,"25784":1,"25785":0,"25786":1,"25787":0,"25788":0,"25789":0,"25790":0,"25791":0,"25792":0,"25793":1,"25794":0,"25795":1,"25796":0,"25797":0,"25798":1,"25799":0,"25800":0,"25801":0,"25802":0,"25803":0,"25804":1,"25805":0,"25806":0,"25807":0,"25808":0,"25809":0,"25810":1,"25811":0,"25812":0,"25813":0,"25814":0,"25815":0,"25816":0,"25817":1,"25818":1,"25819":1,"25820":0,"25821":0,"25822":1,"25823":0,"25824":0,"25825":1,"25826":0,"25827":0,"25828":0,"25829":0,"25830":0,"25831":1,"25832":1,"25833":0,"25834":0,"25835":0,"25836":0,"25837":1,"25838":0,"25839":0,"25840":1,"25841":0,"25842":0,"25843":1,"25844":0,"25845":0,"25846":0,"25847":0,"25848":0,"25849":0,"25850":1,"25851":0,"25852":1,"25853":1,"25854":0,"25855":0,"25856":0,"25857":0,"25858":0,"25859":0,"25860":0,"25861":0,"25862":0,"25863":1,"25864":0,"25865":1,"25866":1,"25867":1,"25868":1,"25869":0,"25870":0,"25871":0,"25872":0,"25873":0,"25874":1,"25875":0,"25876":0,"25877":1,"25878":0,"25879":0,"25880":0,"25881":1,"25882":0,"25883":1,"25884":0,"25885":0,"25886":0,"25887":1,"25888":0,"25889":0,"25890":0,"25891":0,"25892":0,"25893":0,"25894":1,"25895":0,"25896":1,"25897":0,"25898":1,"25899":0,"25900":0,"25901":1,"25902":0,"25903":0,"25904":0,"25905":0,"25906":1,"25907":0,"25908":1,"25909":1,"25910":0,"25911":1,"25912":0,"25913":1,"25914":0,"25915":1,"25916":0,"25917":0,"25918":0,"25919":0,"25920":0,"25921":1,"25922":0,"25923":0,"25924":0,"25925":1,"25926":0,"25927":1,"25928":0,"25929":0,"25930":0,"25931":0,"25932":1,"25933":0,"25934":0,"25935":1,"25936":0,"25937":0,"25938":0,"25939":0,"25940":0,"25941":0,"25942":0,"25943":1,"25944":0,"25945":0,"25946":0,"25947":1,"25948":0,"25949":1,"25950":0,"25951":0,"25952":0,"25953":0,"25954":0,"25955":0,"25956":0,"25957":0,"25958":0,"25959":0,"25960":1,"25961":0,"25962":0,"25963":1,"25964":1,"25965":0,"25966":0,"25967":0,"25968":1,"25969":0,"25970":0,"25971":0,"25972":0,"25973":0,"25974":0,"25975":1,"25976":1,"25977":0,"25978":0,"25979":0,"25980":1,"25981":0,"25982":0,"25983":1,"25984":1,"25985":0,"25986":0,"25987":0,"25988":0,"25989":1,"25990":0,"25991":1,"25992":0,"25993":1,"25994":0,"25995":0,"25996":0,"25997":0,"25998":0,"25999":1,"26000":0,"26001":1,"26002":1,"26003":0,"26004":0,"26005":1,"26006":0,"26007":0,"26008":0,"26009":1,"26010":0,"26011":0,"26012":1,"26013":1,"26014":0,"26015":0,"26016":1,"26017":0,"26018":0,"26019":1,"26020":0,"26021":1,"26022":1,"26023":0,"26024":1,"26025":0,"26026":0,"26027":0,"26028":0,"26029":1,"26030":1,"26031":0,"26032":1,"26033":0,"26034":0,"26035":0,"26036":1,"26037":0,"26038":0,"26039":1,"26040":1,"26041":0,"26042":0,"26043":1,"26044":0,"26045":0,"26046":0,"26047":0,"26048":0,"26049":0,"26050":0,"26051":0,"26052":0,"26053":0,"26054":0,"26055":0,"26056":0,"26057":0,"26058":0,"26059":0,"26060":0,"26061":0,"26062":0,"26063":0,"26064":0,"26065":0,"26066":0,"26067":0,"26068":0,"26069":0,"26070":0,"26071":1,"26072":0,"26073":0,"26074":0,"26075":0,"26076":0,"26077":0,"26078":0,"26079":0,"26080":0,"26081":0,"26082":0,"26083":0,"26084":0,"26085":0,"26086":1,"26087":0,"26088":0,"26089":0,"26090":0,"26091":0,"26092":1,"26093":0,"26094":0,"26095":1,"26096":0,"26097":0,"26098":0,"26099":0,"26100":0,"26101":0,"26102":0,"26103":0,"26104":0,"26105":0,"26106":0,"26107":0,"26108":1,"26109":1,"26110":0,"26111":0,"26112":0,"26113":0,"26114":1,"26115":0,"26116":0,"26117":0,"26118":0,"26119":0,"26120":1,"26121":0,"26122":0,"26123":0,"26124":0,"26125":0,"26126":0,"26127":0,"26128":1,"26129":0,"26130":1,"26131":0,"26132":0,"26133":0,"26134":0,"26135":0,"26136":1,"26137":1,"26138":1,"26139":0,"26140":0,"26141":0,"26142":0,"26143":0,"26144":0,"26145":0,"26146":0,"26147":0,"26148":1,"26149":0,"26150":1,"26151":0,"26152":0,"26153":0,"26154":1,"26155":0,"26156":1,"26157":1,"26158":0,"26159":1,"26160":1,"26161":0,"26162":0,"26163":1,"26164":0,"26165":0,"26166":0,"26167":0,"26168":1,"26169":0,"26170":0,"26171":0,"26172":0,"26173":0,"26174":0,"26175":1,"26176":1,"26177":0,"26178":0,"26179":0,"26180":1,"26181":1,"26182":0,"26183":1,"26184":0,"26185":1,"26186":0,"26187":0,"26188":0,"26189":0,"26190":1,"26191":1,"26192":0,"26193":0,"26194":1,"26195":0,"26196":1,"26197":0,"26198":1,"26199":0,"26200":1,"26201":1,"26202":0,"26203":0,"26204":0,"26205":0,"26206":0,"26207":0,"26208":0,"26209":0,"26210":0,"26211":1,"26212":0,"26213":1,"26214":0,"26215":0,"26216":0,"26217":0,"26218":0,"26219":1,"26220":0,"26221":1,"26222":0,"26223":0,"26224":0,"26225":0,"26226":0,"26227":0,"26228":0,"26229":0,"26230":0,"26231":0,"26232":0,"26233":0,"26234":0,"26235":0,"26236":1,"26237":0,"26238":0,"26239":0,"26240":0,"26241":0,"26242":0,"26243":1,"26244":1,"26245":0,"26246":0,"26247":0,"26248":0,"26249":0,"26250":1,"26251":0,"26252":1,"26253":0,"26254":1,"26255":0,"26256":0,"26257":0,"26258":0,"26259":1,"26260":0,"26261":0,"26262":0,"26263":1,"26264":0,"26265":0,"26266":0,"26267":0,"26268":0,"26269":0,"26270":0,"26271":0,"26272":0,"26273":1,"26274":0,"26275":0,"26276":1,"26277":1,"26278":1,"26279":0,"26280":1,"26281":1,"26282":1,"26283":0,"26284":0,"26285":0,"26286":0,"26287":1,"26288":0,"26289":1,"26290":0,"26291":1,"26292":0,"26293":0,"26294":1,"26295":1,"26296":1,"26297":1,"26298":0,"26299":1,"26300":0,"26301":0,"26302":0,"26303":0,"26304":0,"26305":0,"26306":0,"26307":1,"26308":0,"26309":0,"26310":0,"26311":0,"26312":0,"26313":0,"26314":0,"26315":0,"26316":1,"26317":0,"26318":1,"26319":1,"26320":0,"26321":0,"26322":0,"26323":0,"26324":1,"26325":1,"26326":0,"26327":0,"26328":0,"26329":0,"26330":0,"26331":0,"26332":0,"26333":1,"26334":0,"26335":0,"26336":1,"26337":1,"26338":1,"26339":0,"26340":0,"26341":0,"26342":0,"26343":0,"26344":0,"26345":1,"26346":0,"26347":0,"26348":0,"26349":1,"26350":0,"26351":0,"26352":0,"26353":0,"26354":0,"26355":1,"26356":0,"26357":1,"26358":0,"26359":0,"26360":0,"26361":1,"26362":1,"26363":1,"26364":0,"26365":0,"26366":1,"26367":0,"26368":0,"26369":1,"26370":1,"26371":1,"26372":0,"26373":0,"26374":0,"26375":0,"26376":0,"26377":1,"26378":0,"26379":0,"26380":0,"26381":0,"26382":0,"26383":0,"26384":1,"26385":1,"26386":0,"26387":0,"26388":0,"26389":0,"26390":0,"26391":1,"26392":0,"26393":0,"26394":1,"26395":1,"26396":0,"26397":1,"26398":0,"26399":0,"26400":0,"26401":1,"26402":1,"26403":0,"26404":1,"26405":0,"26406":0,"26407":0,"26408":0,"26409":0,"26410":1,"26411":1,"26412":0,"26413":1,"26414":1,"26415":1,"26416":0,"26417":0,"26418":0,"26419":1,"26420":0,"26421":1,"26422":0,"26423":0,"26424":0,"26425":0,"26426":0,"26427":0,"26428":0,"26429":0,"26430":0,"26431":0,"26432":0,"26433":0,"26434":0,"26435":0,"26436":0,"26437":1,"26438":0,"26439":0,"26440":0,"26441":0,"26442":0,"26443":0,"26444":0,"26445":0,"26446":0,"26447":0,"26448":0,"26449":0,"26450":0,"26451":0,"26452":0,"26453":1,"26454":0,"26455":0,"26456":1,"26457":0,"26458":0,"26459":0,"26460":0,"26461":1,"26462":0,"26463":0,"26464":1,"26465":1,"26466":0,"26467":1,"26468":1,"26469":0,"26470":1,"26471":0,"26472":0,"26473":1,"26474":0,"26475":0,"26476":1,"26477":0,"26478":0,"26479":0,"26480":0,"26481":0,"26482":0,"26483":0,"26484":0,"26485":0,"26486":0,"26487":1,"26488":0,"26489":0,"26490":0,"26491":0,"26492":0,"26493":0,"26494":0,"26495":0,"26496":0,"26497":0,"26498":0,"26499":1,"26500":0,"26501":0,"26502":0,"26503":1,"26504":1,"26505":0,"26506":1,"26507":0,"26508":1,"26509":0,"26510":1,"26511":1,"26512":0,"26513":0,"26514":0,"26515":1,"26516":0,"26517":0,"26518":0,"26519":0,"26520":1,"26521":0,"26522":0,"26523":0,"26524":0,"26525":0,"26526":0,"26527":0,"26528":0,"26529":0,"26530":1,"26531":0,"26532":1,"26533":0,"26534":1,"26535":0,"26536":0,"26537":1,"26538":0,"26539":0,"26540":0,"26541":0,"26542":1,"26543":0,"26544":0,"26545":0,"26546":0,"26547":0,"26548":0,"26549":0,"26550":0,"26551":0,"26552":0,"26553":0,"26554":1,"26555":0,"26556":0,"26557":0,"26558":0,"26559":1,"26560":0,"26561":0,"26562":0,"26563":0,"26564":0,"26565":0,"26566":0,"26567":1,"26568":0,"26569":1,"26570":1,"26571":0,"26572":1,"26573":0,"26574":0,"26575":0,"26576":0,"26577":0,"26578":0,"26579":1,"26580":0,"26581":0,"26582":0,"26583":1,"26584":0,"26585":0,"26586":0,"26587":0,"26588":0,"26589":0,"26590":1,"26591":1,"26592":0,"26593":1,"26594":0,"26595":0,"26596":0,"26597":0,"26598":0,"26599":1,"26600":0,"26601":0,"26602":0,"26603":1,"26604":0,"26605":0,"26606":0,"26607":0,"26608":0,"26609":0,"26610":1,"26611":0,"26612":0,"26613":1,"26614":1,"26615":1,"26616":1,"26617":1,"26618":0,"26619":0,"26620":0,"26621":0,"26622":0,"26623":0,"26624":0,"26625":1,"26626":1,"26627":1,"26628":0,"26629":1,"26630":0,"26631":0,"26632":0,"26633":1,"26634":1,"26635":1,"26636":1,"26637":1,"26638":0,"26639":0,"26640":0,"26641":0,"26642":0,"26643":0,"26644":0,"26645":1,"26646":0,"26647":0,"26648":0,"26649":0,"26650":0,"26651":1,"26652":0,"26653":0,"26654":0,"26655":0,"26656":0,"26657":0,"26658":0,"26659":0,"26660":0,"26661":0,"26662":0,"26663":1,"26664":0,"26665":1,"26666":0,"26667":1,"26668":0,"26669":0,"26670":0,"26671":0,"26672":0,"26673":0,"26674":1,"26675":0,"26676":0,"26677":0,"26678":0,"26679":0,"26680":0,"26681":0,"26682":0,"26683":0,"26684":0,"26685":0,"26686":1,"26687":0,"26688":1,"26689":1,"26690":0,"26691":0,"26692":0,"26693":1,"26694":0,"26695":0,"26696":0,"26697":0,"26698":0,"26699":0,"26700":1,"26701":0,"26702":0,"26703":0,"26704":0,"26705":0,"26706":0,"26707":0,"26708":0,"26709":0,"26710":1,"26711":0,"26712":0,"26713":0,"26714":1,"26715":0,"26716":1,"26717":1,"26718":0,"26719":0,"26720":0,"26721":1,"26722":1,"26723":1,"26724":1,"26725":0,"26726":0,"26727":0,"26728":0,"26729":0,"26730":0,"26731":0,"26732":0,"26733":0,"26734":1,"26735":0,"26736":0,"26737":0,"26738":0,"26739":1,"26740":0,"26741":0,"26742":0,"26743":0,"26744":0,"26745":1,"26746":0,"26747":0,"26748":0,"26749":0,"26750":1,"26751":0,"26752":1,"26753":0,"26754":0,"26755":0,"26756":0,"26757":0,"26758":1,"26759":1,"26760":0,"26761":0,"26762":0,"26763":0,"26764":0,"26765":1,"26766":0,"26767":0,"26768":0,"26769":0,"26770":0,"26771":0,"26772":1,"26773":0,"26774":1,"26775":0,"26776":1,"26777":0,"26778":0,"26779":0,"26780":0,"26781":1,"26782":0,"26783":0,"26784":0,"26785":0,"26786":1,"26787":0,"26788":0,"26789":0,"26790":0,"26791":0,"26792":0,"26793":0,"26794":0,"26795":0,"26796":0,"26797":0,"26798":1,"26799":0,"26800":0,"26801":0,"26802":0,"26803":1,"26804":0,"26805":0,"26806":0,"26807":0,"26808":0,"26809":1,"26810":1,"26811":0,"26812":0,"26813":1,"26814":0,"26815":0,"26816":0,"26817":0,"26818":0,"26819":0,"26820":0,"26821":0,"26822":1,"26823":0,"26824":0,"26825":1,"26826":1,"26827":1,"26828":0,"26829":1,"26830":0,"26831":0,"26832":0,"26833":0,"26834":1,"26835":0,"26836":0,"26837":1,"26838":0,"26839":1,"26840":1,"26841":1,"26842":0,"26843":0,"26844":1,"26845":0,"26846":1,"26847":1,"26848":0,"26849":1,"26850":0,"26851":0,"26852":0,"26853":0,"26854":1,"26855":0,"26856":0,"26857":0,"26858":0,"26859":0,"26860":1,"26861":0,"26862":0,"26863":1,"26864":0,"26865":0,"26866":0,"26867":0,"26868":0,"26869":0,"26870":0,"26871":0,"26872":0,"26873":0,"26874":0,"26875":1,"26876":0,"26877":0,"26878":0,"26879":0,"26880":0,"26881":0,"26882":1,"26883":0,"26884":0,"26885":0,"26886":0,"26887":0,"26888":0,"26889":0,"26890":0,"26891":1,"26892":0,"26893":0,"26894":0,"26895":0,"26896":0,"26897":0,"26898":0,"26899":0,"26900":1,"26901":0,"26902":0,"26903":0,"26904":0,"26905":0,"26906":0,"26907":0,"26908":0,"26909":0,"26910":0,"26911":1,"26912":0,"26913":0,"26914":0,"26915":0,"26916":0,"26917":0,"26918":0,"26919":0,"26920":1,"26921":1,"26922":0,"26923":0,"26924":1,"26925":0,"26926":0,"26927":1,"26928":0,"26929":0,"26930":0,"26931":0,"26932":0,"26933":1,"26934":0,"26935":0,"26936":0,"26937":0,"26938":1,"26939":1,"26940":0,"26941":0,"26942":0,"26943":0,"26944":0,"26945":0,"26946":0,"26947":0,"26948":0,"26949":0,"26950":1,"26951":0,"26952":0,"26953":0,"26954":0,"26955":0,"26956":0,"26957":0,"26958":1,"26959":1,"26960":0,"26961":0,"26962":0,"26963":0,"26964":0,"26965":0,"26966":0,"26967":1,"26968":1,"26969":0,"26970":0,"26971":0,"26972":0,"26973":0,"26974":0,"26975":0,"26976":0,"26977":1,"26978":0,"26979":0,"26980":0,"26981":1,"26982":1,"26983":0,"26984":1,"26985":0,"26986":0,"26987":1,"26988":1,"26989":0,"26990":1,"26991":1,"26992":0,"26993":1,"26994":0,"26995":0,"26996":1,"26997":0,"26998":0,"26999":0,"27000":0,"27001":0,"27002":0,"27003":1,"27004":0,"27005":0,"27006":0,"27007":0,"27008":0,"27009":0,"27010":0,"27011":0,"27012":1,"27013":0,"27014":0,"27015":0,"27016":0,"27017":1,"27018":1,"27019":0,"27020":1,"27021":0,"27022":1,"27023":1,"27024":0,"27025":0,"27026":0,"27027":0,"27028":0,"27029":1,"27030":1,"27031":0,"27032":1,"27033":0,"27034":0,"27035":0,"27036":0,"27037":0,"27038":0,"27039":0,"27040":0,"27041":0,"27042":0,"27043":0,"27044":0,"27045":1,"27046":0,"27047":0,"27048":0,"27049":0,"27050":0,"27051":1,"27052":0,"27053":1,"27054":1,"27055":0,"27056":0,"27057":0,"27058":0,"27059":0,"27060":0,"27061":0,"27062":0,"27063":1,"27064":0,"27065":0,"27066":1,"27067":0,"27068":1,"27069":0,"27070":0,"27071":0,"27072":1,"27073":0,"27074":0,"27075":0,"27076":0,"27077":0,"27078":0,"27079":0,"27080":1,"27081":0,"27082":0,"27083":0,"27084":0,"27085":0,"27086":0,"27087":0,"27088":1,"27089":0,"27090":0,"27091":0,"27092":0,"27093":0,"27094":0,"27095":1,"27096":1,"27097":0,"27098":0,"27099":0,"27100":1,"27101":1,"27102":0,"27103":0,"27104":0,"27105":0,"27106":0,"27107":0,"27108":0,"27109":0,"27110":1,"27111":0,"27112":0,"27113":1,"27114":0,"27115":0,"27116":1,"27117":0,"27118":1,"27119":0,"27120":0,"27121":0,"27122":0,"27123":1,"27124":0,"27125":0,"27126":1,"27127":0,"27128":0,"27129":0,"27130":0,"27131":0,"27132":0,"27133":0,"27134":1,"27135":0,"27136":0,"27137":1,"27138":0,"27139":1,"27140":0,"27141":0,"27142":1,"27143":0,"27144":0,"27145":1,"27146":0,"27147":0,"27148":0,"27149":0,"27150":0,"27151":0,"27152":0,"27153":0,"27154":1,"27155":1,"27156":0,"27157":1,"27158":0,"27159":0,"27160":0,"27161":1,"27162":0,"27163":0,"27164":0,"27165":0,"27166":0,"27167":0,"27168":0,"27169":1,"27170":0,"27171":1,"27172":0,"27173":0,"27174":0,"27175":0,"27176":0,"27177":0,"27178":0,"27179":0,"27180":0,"27181":0,"27182":0,"27183":0,"27184":1,"27185":0,"27186":0,"27187":0,"27188":0,"27189":0,"27190":1,"27191":1,"27192":0,"27193":0,"27194":0,"27195":1,"27196":1,"27197":1,"27198":0,"27199":0,"27200":0,"27201":0,"27202":1,"27203":0,"27204":0,"27205":0,"27206":0,"27207":0,"27208":0,"27209":0,"27210":1,"27211":1,"27212":0,"27213":0,"27214":1,"27215":0,"27216":1,"27217":0,"27218":0,"27219":0,"27220":0,"27221":0,"27222":1,"27223":0,"27224":0,"27225":0,"27226":0,"27227":0,"27228":0,"27229":0,"27230":0,"27231":1,"27232":0,"27233":1,"27234":0,"27235":0,"27236":0,"27237":0,"27238":0,"27239":0,"27240":0,"27241":1,"27242":0,"27243":1,"27244":1,"27245":1,"27246":0,"27247":0,"27248":0,"27249":0,"27250":1,"27251":0,"27252":0,"27253":0,"27254":0,"27255":0,"27256":1,"27257":0,"27258":0,"27259":0,"27260":0,"27261":1,"27262":0,"27263":1,"27264":0,"27265":1,"27266":1,"27267":0,"27268":1,"27269":1,"27270":0,"27271":1,"27272":0,"27273":1,"27274":0,"27275":0,"27276":0,"27277":0,"27278":0,"27279":1,"27280":0,"27281":1,"27282":1,"27283":1,"27284":1,"27285":0,"27286":0,"27287":1,"27288":0,"27289":1,"27290":0,"27291":0,"27292":0,"27293":0,"27294":1,"27295":0,"27296":0,"27297":0,"27298":1,"27299":0,"27300":1,"27301":0,"27302":1,"27303":0,"27304":0,"27305":0,"27306":0,"27307":1,"27308":0,"27309":0,"27310":0,"27311":1,"27312":0,"27313":0,"27314":1,"27315":0,"27316":0,"27317":0,"27318":0,"27319":0,"27320":0,"27321":0,"27322":0,"27323":0,"27324":0,"27325":1,"27326":1,"27327":0,"27328":0,"27329":0,"27330":0,"27331":0,"27332":1,"27333":1,"27334":0,"27335":0,"27336":0,"27337":1,"27338":1,"27339":0,"27340":0,"27341":0,"27342":0,"27343":0,"27344":0,"27345":0,"27346":0,"27347":0,"27348":0,"27349":0,"27350":0,"27351":0,"27352":0,"27353":0,"27354":1,"27355":0,"27356":0,"27357":0,"27358":0,"27359":1,"27360":0,"27361":0,"27362":0,"27363":1,"27364":1,"27365":0,"27366":0,"27367":0,"27368":0,"27369":0,"27370":1,"27371":1,"27372":0,"27373":0,"27374":0,"27375":0,"27376":0,"27377":0,"27378":0,"27379":0,"27380":1,"27381":0,"27382":0,"27383":0,"27384":1,"27385":1,"27386":0,"27387":1,"27388":0,"27389":0,"27390":0,"27391":1,"27392":0,"27393":0,"27394":0,"27395":1,"27396":0,"27397":0,"27398":1,"27399":0,"27400":0,"27401":1,"27402":0,"27403":1,"27404":0,"27405":0,"27406":1,"27407":0,"27408":1,"27409":0,"27410":0,"27411":1,"27412":0,"27413":0,"27414":0,"27415":0,"27416":1,"27417":1,"27418":0,"27419":0,"27420":0,"27421":0,"27422":0,"27423":1,"27424":1,"27425":0,"27426":1,"27427":0,"27428":0,"27429":1,"27430":0,"27431":0,"27432":0,"27433":0,"27434":1,"27435":0,"27436":0,"27437":0,"27438":0,"27439":1,"27440":1,"27441":0,"27442":0,"27443":0,"27444":0,"27445":1,"27446":0,"27447":0,"27448":0,"27449":0,"27450":0,"27451":0,"27452":0,"27453":0,"27454":0,"27455":0,"27456":1,"27457":0,"27458":1,"27459":0,"27460":0,"27461":0,"27462":0,"27463":0,"27464":1,"27465":0,"27466":0,"27467":0,"27468":0,"27469":1,"27470":0,"27471":0,"27472":0,"27473":0,"27474":0,"27475":0,"27476":1,"27477":0,"27478":0,"27479":0,"27480":1,"27481":0,"27482":0,"27483":1,"27484":0,"27485":0,"27486":1,"27487":1,"27488":1,"27489":0,"27490":1,"27491":1,"27492":0,"27493":0,"27494":0,"27495":0,"27496":0,"27497":0,"27498":0,"27499":0,"27500":0,"27501":0,"27502":0,"27503":0,"27504":0,"27505":1,"27506":0,"27507":0,"27508":0,"27509":1,"27510":1,"27511":0,"27512":0,"27513":0,"27514":0,"27515":0,"27516":0,"27517":0,"27518":0,"27519":0,"27520":0,"27521":1,"27522":0,"27523":0,"27524":0,"27525":0,"27526":0,"27527":0,"27528":0,"27529":1,"27530":0,"27531":0,"27532":1,"27533":0,"27534":1,"27535":0,"27536":1,"27537":0,"27538":0,"27539":0,"27540":1,"27541":0,"27542":0,"27543":0,"27544":1,"27545":0,"27546":0,"27547":0,"27548":0,"27549":0,"27550":0,"27551":0,"27552":1,"27553":0,"27554":0,"27555":0,"27556":0,"27557":1,"27558":0,"27559":0,"27560":1,"27561":0,"27562":0,"27563":0,"27564":1,"27565":0,"27566":0,"27567":0,"27568":0,"27569":0,"27570":1,"27571":0,"27572":0,"27573":0,"27574":1,"27575":0,"27576":0,"27577":0,"27578":0,"27579":0,"27580":1,"27581":1,"27582":1,"27583":1,"27584":0,"27585":0,"27586":0,"27587":1,"27588":1,"27589":0,"27590":0,"27591":0,"27592":0,"27593":0,"27594":0,"27595":0,"27596":0,"27597":0,"27598":0,"27599":0,"27600":0,"27601":1,"27602":0,"27603":1,"27604":0,"27605":0,"27606":1,"27607":1,"27608":1,"27609":0,"27610":1,"27611":1,"27612":0,"27613":0,"27614":0,"27615":0,"27616":0,"27617":0,"27618":0,"27619":0,"27620":0,"27621":0,"27622":0,"27623":0,"27624":0,"27625":0,"27626":1,"27627":0,"27628":0,"27629":1,"27630":1,"27631":0,"27632":0,"27633":1,"27634":0,"27635":0,"27636":0,"27637":1,"27638":0,"27639":0,"27640":1,"27641":1,"27642":0,"27643":0,"27644":0,"27645":0,"27646":0,"27647":0,"27648":1,"27649":0,"27650":0,"27651":0,"27652":0,"27653":0,"27654":1,"27655":1,"27656":0,"27657":0,"27658":1,"27659":0,"27660":0,"27661":0,"27662":1,"27663":0,"27664":0,"27665":0,"27666":0,"27667":0,"27668":0,"27669":0,"27670":0,"27671":0,"27672":0,"27673":0,"27674":0,"27675":0,"27676":0,"27677":0,"27678":0,"27679":0,"27680":0,"27681":0,"27682":1,"27683":1,"27684":0,"27685":0,"27686":0,"27687":0,"27688":0,"27689":0,"27690":0,"27691":0,"27692":0,"27693":0,"27694":0,"27695":0,"27696":0,"27697":0,"27698":1,"27699":1,"27700":1,"27701":0,"27702":1,"27703":0,"27704":0,"27705":0,"27706":0,"27707":0,"27708":0,"27709":1,"27710":0,"27711":0,"27712":0,"27713":1,"27714":0,"27715":0,"27716":0,"27717":0,"27718":0,"27719":0,"27720":0,"27721":0,"27722":0,"27723":0,"27724":1,"27725":0,"27726":1,"27727":0,"27728":1,"27729":1,"27730":1,"27731":1,"27732":1,"27733":0,"27734":0,"27735":1,"27736":0,"27737":0,"27738":0,"27739":0,"27740":1,"27741":0,"27742":0,"27743":0,"27744":1,"27745":0,"27746":0,"27747":0,"27748":0,"27749":1,"27750":0,"27751":1,"27752":0,"27753":1,"27754":1,"27755":1,"27756":0,"27757":1,"27758":1,"27759":1,"27760":0,"27761":0,"27762":0,"27763":1,"27764":0,"27765":1,"27766":0,"27767":0,"27768":0,"27769":1,"27770":0,"27771":0,"27772":0,"27773":1,"27774":1,"27775":0,"27776":0,"27777":1,"27778":0,"27779":0,"27780":0,"27781":1,"27782":0,"27783":0,"27784":0,"27785":0,"27786":0,"27787":0,"27788":0,"27789":0,"27790":0,"27791":1,"27792":1,"27793":0,"27794":0,"27795":0,"27796":1,"27797":0,"27798":1,"27799":1,"27800":0,"27801":1,"27802":1,"27803":0,"27804":1,"27805":0,"27806":1,"27807":0,"27808":0,"27809":1,"27810":0,"27811":0,"27812":1,"27813":0,"27814":1,"27815":0,"27816":0,"27817":1,"27818":1,"27819":0,"27820":0,"27821":1,"27822":0,"27823":0,"27824":0,"27825":0,"27826":0,"27827":0,"27828":0,"27829":0,"27830":1,"27831":0,"27832":0,"27833":0,"27834":1,"27835":0,"27836":0,"27837":0,"27838":0,"27839":0,"27840":0,"27841":0,"27842":1,"27843":1,"27844":0,"27845":0,"27846":1,"27847":0,"27848":0,"27849":0,"27850":0,"27851":0,"27852":0,"27853":0,"27854":0,"27855":0,"27856":0,"27857":0,"27858":0,"27859":0,"27860":1,"27861":0,"27862":0,"27863":0,"27864":0,"27865":0,"27866":0,"27867":0,"27868":0,"27869":1,"27870":0,"27871":0,"27872":0,"27873":0,"27874":1,"27875":1,"27876":0,"27877":1,"27878":0,"27879":0,"27880":1,"27881":0,"27882":0,"27883":1,"27884":0,"27885":0,"27886":0,"27887":0,"27888":0,"27889":0,"27890":1,"27891":0,"27892":0,"27893":0,"27894":0,"27895":0,"27896":0,"27897":0,"27898":0,"27899":0,"27900":1,"27901":1,"27902":0,"27903":0,"27904":1,"27905":0,"27906":0,"27907":0,"27908":1,"27909":0,"27910":0,"27911":0,"27912":0,"27913":0,"27914":0,"27915":0,"27916":0,"27917":1,"27918":0,"27919":1,"27920":0,"27921":1,"27922":0,"27923":0,"27924":1,"27925":1,"27926":0,"27927":0,"27928":0,"27929":0,"27930":0,"27931":0,"27932":0,"27933":0,"27934":1,"27935":1,"27936":0,"27937":0,"27938":0,"27939":0,"27940":1,"27941":0,"27942":1,"27943":0,"27944":0,"27945":1,"27946":1,"27947":0,"27948":0,"27949":0,"27950":1,"27951":0,"27952":0,"27953":0,"27954":0,"27955":0,"27956":1,"27957":0,"27958":0,"27959":0,"27960":0,"27961":0,"27962":0,"27963":0,"27964":0,"27965":0,"27966":0,"27967":0,"27968":0,"27969":0,"27970":1,"27971":1,"27972":0,"27973":0,"27974":1,"27975":0,"27976":1,"27977":0,"27978":0,"27979":0,"27980":1,"27981":1,"27982":0,"27983":0,"27984":0,"27985":0,"27986":0,"27987":1,"27988":0,"27989":0,"27990":0,"27991":0,"27992":0,"27993":0,"27994":1,"27995":0,"27996":0,"27997":0,"27998":0,"27999":1,"28000":0,"28001":0,"28002":0,"28003":0,"28004":1,"28005":0,"28006":1,"28007":0,"28008":0,"28009":1,"28010":1,"28011":1,"28012":1,"28013":0,"28014":0,"28015":0,"28016":1,"28017":0,"28018":0,"28019":0,"28020":0,"28021":0,"28022":0,"28023":1,"28024":0,"28025":0,"28026":0,"28027":0,"28028":0,"28029":0,"28030":0,"28031":0,"28032":0,"28033":1,"28034":0,"28035":1,"28036":1,"28037":0,"28038":0,"28039":0,"28040":1,"28041":0,"28042":0,"28043":0,"28044":0,"28045":0,"28046":0,"28047":1,"28048":0,"28049":0,"28050":0,"28051":0,"28052":0,"28053":0,"28054":1,"28055":1,"28056":0,"28057":1,"28058":0,"28059":0,"28060":0,"28061":0,"28062":0,"28063":0,"28064":1,"28065":0,"28066":0,"28067":1,"28068":0,"28069":0,"28070":0,"28071":0,"28072":0,"28073":0,"28074":0,"28075":0,"28076":0,"28077":0,"28078":0,"28079":0,"28080":0,"28081":1,"28082":1,"28083":0,"28084":0,"28085":0,"28086":0,"28087":0,"28088":0,"28089":0,"28090":0,"28091":0,"28092":0,"28093":0,"28094":0,"28095":0,"28096":0,"28097":1,"28098":1,"28099":0,"28100":0,"28101":0,"28102":0,"28103":0,"28104":0,"28105":0,"28106":0,"28107":0,"28108":1,"28109":1,"28110":0,"28111":0,"28112":0,"28113":0,"28114":1,"28115":0,"28116":1,"28117":0,"28118":0,"28119":0,"28120":0,"28121":0,"28122":0,"28123":0,"28124":0,"28125":0,"28126":0,"28127":0,"28128":0,"28129":1,"28130":1,"28131":0,"28132":0,"28133":0,"28134":0,"28135":0,"28136":0,"28137":0,"28138":0,"28139":0,"28140":0,"28141":0,"28142":0,"28143":0,"28144":0,"28145":0,"28146":0,"28147":0,"28148":0,"28149":1,"28150":0,"28151":0,"28152":0,"28153":0,"28154":1,"28155":0,"28156":1,"28157":0,"28158":0,"28159":1,"28160":0,"28161":0,"28162":0,"28163":1,"28164":1,"28165":0,"28166":1,"28167":0,"28168":1,"28169":1,"28170":0,"28171":0,"28172":0,"28173":1,"28174":0,"28175":0,"28176":0,"28177":0,"28178":0,"28179":1,"28180":0,"28181":0,"28182":0,"28183":0,"28184":0,"28185":0,"28186":0,"28187":0,"28188":0,"28189":0,"28190":0,"28191":1,"28192":0,"28193":0,"28194":1,"28195":1,"28196":0,"28197":0,"28198":0,"28199":1,"28200":0,"28201":0,"28202":0,"28203":0,"28204":0,"28205":0,"28206":0,"28207":0,"28208":0,"28209":0,"28210":0,"28211":0,"28212":1,"28213":0,"28214":0,"28215":0,"28216":1,"28217":0,"28218":1,"28219":0,"28220":1,"28221":0,"28222":0,"28223":0,"28224":0,"28225":0,"28226":0,"28227":0,"28228":0,"28229":0,"28230":0,"28231":1,"28232":0,"28233":1,"28234":1,"28235":1,"28236":0,"28237":0,"28238":0,"28239":0,"28240":1,"28241":0,"28242":0,"28243":0,"28244":1,"28245":0,"28246":0,"28247":0,"28248":0,"28249":1,"28250":0,"28251":0,"28252":1,"28253":0,"28254":0,"28255":0,"28256":0,"28257":0,"28258":0,"28259":1,"28260":0,"28261":1,"28262":1,"28263":0,"28264":0,"28265":0,"28266":1,"28267":0,"28268":0,"28269":0,"28270":1,"28271":1,"28272":0,"28273":0,"28274":1,"28275":0,"28276":0,"28277":0,"28278":0,"28279":0,"28280":0,"28281":0,"28282":1,"28283":1,"28284":1,"28285":0,"28286":0,"28287":0,"28288":0,"28289":0,"28290":1,"28291":0,"28292":1,"28293":0,"28294":0,"28295":0,"28296":0,"28297":0,"28298":1,"28299":1,"28300":0,"28301":0,"28302":1,"28303":1,"28304":1,"28305":1,"28306":0,"28307":0,"28308":0,"28309":0,"28310":0,"28311":0,"28312":0,"28313":0,"28314":1,"28315":1,"28316":0,"28317":0,"28318":0,"28319":1,"28320":1,"28321":1,"28322":0,"28323":0,"28324":0,"28325":1,"28326":0,"28327":0,"28328":0,"28329":1,"28330":0,"28331":0,"28332":1,"28333":0,"28334":0,"28335":1,"28336":0,"28337":0,"28338":1,"28339":0,"28340":1,"28341":0,"28342":0,"28343":0,"28344":1,"28345":0,"28346":0,"28347":0,"28348":0,"28349":0,"28350":1,"28351":0,"28352":0,"28353":0,"28354":0,"28355":0,"28356":0,"28357":0,"28358":0,"28359":0,"28360":0,"28361":0,"28362":0,"28363":0,"28364":1,"28365":0,"28366":1,"28367":1,"28368":0,"28369":1,"28370":0,"28371":0,"28372":0,"28373":0,"28374":0,"28375":0,"28376":0,"28377":0,"28378":0,"28379":1,"28380":1,"28381":0,"28382":0,"28383":1,"28384":0,"28385":0,"28386":0,"28387":1,"28388":0,"28389":0,"28390":1,"28391":1,"28392":1,"28393":0,"28394":1,"28395":0,"28396":0,"28397":0,"28398":0,"28399":0,"28400":0,"28401":0,"28402":0,"28403":0,"28404":0,"28405":0,"28406":0,"28407":0,"28408":1,"28409":0,"28410":0,"28411":0,"28412":0,"28413":0,"28414":0,"28415":1,"28416":0,"28417":0,"28418":0,"28419":0,"28420":0,"28421":0,"28422":0,"28423":0,"28424":0,"28425":0,"28426":1,"28427":0,"28428":0,"28429":0,"28430":0,"28431":0,"28432":0,"28433":0,"28434":0,"28435":0,"28436":0,"28437":0,"28438":0,"28439":0,"28440":1,"28441":0,"28442":0,"28443":0,"28444":1,"28445":0,"28446":0,"28447":0,"28448":0,"28449":0,"28450":1,"28451":0,"28452":0,"28453":0,"28454":0,"28455":0,"28456":0,"28457":0,"28458":0,"28459":0,"28460":0,"28461":0,"28462":0,"28463":1,"28464":0,"28465":0,"28466":0,"28467":0,"28468":1,"28469":1,"28470":0,"28471":0,"28472":0,"28473":0,"28474":0,"28475":0,"28476":0,"28477":1,"28478":1,"28479":0,"28480":0,"28481":1,"28482":0,"28483":0,"28484":1,"28485":1,"28486":1,"28487":0,"28488":0,"28489":0,"28490":0,"28491":0,"28492":0,"28493":0,"28494":0,"28495":0,"28496":0,"28497":0,"28498":0,"28499":0,"28500":0,"28501":0,"28502":0,"28503":1,"28504":0,"28505":0,"28506":0,"28507":0,"28508":0,"28509":0,"28510":1,"28511":0,"28512":0,"28513":0,"28514":0,"28515":0,"28516":1,"28517":1,"28518":0,"28519":0,"28520":0,"28521":0,"28522":0,"28523":0,"28524":0,"28525":0,"28526":0,"28527":1,"28528":0,"28529":0,"28530":0,"28531":1,"28532":0,"28533":0,"28534":1,"28535":1,"28536":0,"28537":0,"28538":0,"28539":0,"28540":0,"28541":0,"28542":0,"28543":1,"28544":0,"28545":1,"28546":0,"28547":0,"28548":1,"28549":0,"28550":0,"28551":0,"28552":0,"28553":0,"28554":1,"28555":0,"28556":0,"28557":0,"28558":0,"28559":1,"28560":1,"28561":0,"28562":0,"28563":0,"28564":1,"28565":0,"28566":0,"28567":1,"28568":0,"28569":0,"28570":0,"28571":0,"28572":0,"28573":0,"28574":1,"28575":0,"28576":0,"28577":1,"28578":0,"28579":1,"28580":0,"28581":0,"28582":0,"28583":0,"28584":0,"28585":0,"28586":1,"28587":0,"28588":0,"28589":0,"28590":0,"28591":1,"28592":0,"28593":0,"28594":0,"28595":0,"28596":0,"28597":1,"28598":0,"28599":0,"28600":0,"28601":0,"28602":0,"28603":0,"28604":1,"28605":0,"28606":0,"28607":0,"28608":0,"28609":1,"28610":0,"28611":0,"28612":0,"28613":0,"28614":0,"28615":0,"28616":0,"28617":0,"28618":0,"28619":1,"28620":0,"28621":0,"28622":1,"28623":1,"28624":0,"28625":0,"28626":0,"28627":0,"28628":0,"28629":0,"28630":0,"28631":1,"28632":0,"28633":1,"28634":1,"28635":1,"28636":0,"28637":0,"28638":0,"28639":0,"28640":0,"28641":0,"28642":0,"28643":1,"28644":0,"28645":0,"28646":1,"28647":0,"28648":1,"28649":0,"28650":0,"28651":0,"28652":0,"28653":0,"28654":0,"28655":0,"28656":1,"28657":0,"28658":0,"28659":0,"28660":0,"28661":1,"28662":1,"28663":1,"28664":0,"28665":1,"28666":0,"28667":0,"28668":0,"28669":0,"28670":0,"28671":1,"28672":0,"28673":0,"28674":0,"28675":1,"28676":1,"28677":0,"28678":0,"28679":0,"28680":0,"28681":0,"28682":0,"28683":1,"28684":0,"28685":0,"28686":0,"28687":0,"28688":0,"28689":1,"28690":0,"28691":0,"28692":0,"28693":1,"28694":0,"28695":0,"28696":0,"28697":1,"28698":0,"28699":0,"28700":0,"28701":0,"28702":0,"28703":0,"28704":0,"28705":0,"28706":0,"28707":0,"28708":0,"28709":1,"28710":0,"28711":0,"28712":0,"28713":0,"28714":1,"28715":1,"28716":0,"28717":0,"28718":0,"28719":0,"28720":1,"28721":0,"28722":0,"28723":0,"28724":0,"28725":0,"28726":1,"28727":0,"28728":0,"28729":0,"28730":0,"28731":0,"28732":0,"28733":0,"28734":0,"28735":0,"28736":1,"28737":0,"28738":0,"28739":1,"28740":0,"28741":0,"28742":0,"28743":1,"28744":1,"28745":0,"28746":0,"28747":1,"28748":0,"28749":0,"28750":0,"28751":1,"28752":1,"28753":0,"28754":1,"28755":1,"28756":0,"28757":0,"28758":0,"28759":1,"28760":0,"28761":1,"28762":1,"28763":1,"28764":0,"28765":0,"28766":0,"28767":0,"28768":1,"28769":0,"28770":1,"28771":1,"28772":0,"28773":0,"28774":0,"28775":0,"28776":0,"28777":0,"28778":1,"28779":0,"28780":0,"28781":1,"28782":0,"28783":1,"28784":0,"28785":0,"28786":0,"28787":0,"28788":0,"28789":1,"28790":0,"28791":0,"28792":0,"28793":1,"28794":0,"28795":0,"28796":1,"28797":0,"28798":0,"28799":0,"28800":0,"28801":0,"28802":1,"28803":0,"28804":1,"28805":0,"28806":1,"28807":0,"28808":0,"28809":0,"28810":1,"28811":0,"28812":0,"28813":1,"28814":0,"28815":1,"28816":0,"28817":0,"28818":0,"28819":0,"28820":0,"28821":0,"28822":0,"28823":0,"28824":0,"28825":0,"28826":1,"28827":0,"28828":0,"28829":1,"28830":1,"28831":0,"28832":0,"28833":0,"28834":1,"28835":1,"28836":0,"28837":0,"28838":0,"28839":1,"28840":1,"28841":0,"28842":0,"28843":0,"28844":0,"28845":1,"28846":0,"28847":0,"28848":0,"28849":0,"28850":1,"28851":0,"28852":0,"28853":0,"28854":0,"28855":0,"28856":0,"28857":1,"28858":0,"28859":0,"28860":0,"28861":1,"28862":1,"28863":0,"28864":1,"28865":0,"28866":0,"28867":0,"28868":1,"28869":0,"28870":1,"28871":0,"28872":0,"28873":0,"28874":0,"28875":0,"28876":1,"28877":0,"28878":0,"28879":1,"28880":0,"28881":1,"28882":1,"28883":0,"28884":0,"28885":1,"28886":1,"28887":0,"28888":1,"28889":0,"28890":0,"28891":0,"28892":0,"28893":1,"28894":0,"28895":0,"28896":0,"28897":1,"28898":0,"28899":0,"28900":1,"28901":0,"28902":0,"28903":0,"28904":1,"28905":1,"28906":0,"28907":0,"28908":0,"28909":0,"28910":0,"28911":0,"28912":0,"28913":0,"28914":0,"28915":0,"28916":0,"28917":0,"28918":1,"28919":0,"28920":0,"28921":0,"28922":1,"28923":0,"28924":0,"28925":1,"28926":0,"28927":0,"28928":1,"28929":0,"28930":0,"28931":1,"28932":1,"28933":1,"28934":0,"28935":0,"28936":0,"28937":1,"28938":0,"28939":0,"28940":1,"28941":0,"28942":0,"28943":0,"28944":0,"28945":0,"28946":0,"28947":1,"28948":0,"28949":0,"28950":0,"28951":0,"28952":1,"28953":0,"28954":1,"28955":0,"28956":1,"28957":0,"28958":1,"28959":0,"28960":0,"28961":0,"28962":1,"28963":0,"28964":0,"28965":0,"28966":1,"28967":1,"28968":0,"28969":0,"28970":0,"28971":0,"28972":0,"28973":0,"28974":1,"28975":0,"28976":1,"28977":0,"28978":1,"28979":1,"28980":1,"28981":0,"28982":0,"28983":0,"28984":0,"28985":0,"28986":1,"28987":1,"28988":0,"28989":0,"28990":0,"28991":0,"28992":0,"28993":0,"28994":0,"28995":0,"28996":0,"28997":1,"28998":1,"28999":0,"29000":0,"29001":0,"29002":0,"29003":1,"29004":0,"29005":0,"29006":0,"29007":0,"29008":0,"29009":0,"29010":0,"29011":0,"29012":0,"29013":0,"29014":0,"29015":0,"29016":0,"29017":1,"29018":1,"29019":0,"29020":0,"29021":0,"29022":1,"29023":0,"29024":1,"29025":0,"29026":0,"29027":0,"29028":0,"29029":0,"29030":1,"29031":1,"29032":0,"29033":0,"29034":0,"29035":0,"29036":0,"29037":0,"29038":0,"29039":0,"29040":0,"29041":0,"29042":0,"29043":0,"29044":0,"29045":0,"29046":0,"29047":0,"29048":1,"29049":0,"29050":0,"29051":1,"29052":0,"29053":1,"29054":0,"29055":0,"29056":0,"29057":0,"29058":0,"29059":0,"29060":0,"29061":0,"29062":0,"29063":0,"29064":0,"29065":0,"29066":0,"29067":0,"29068":1,"29069":0,"29070":0,"29071":0,"29072":1,"29073":1,"29074":0,"29075":0,"29076":0,"29077":0,"29078":0,"29079":0,"29080":0,"29081":0,"29082":0,"29083":0,"29084":0,"29085":0,"29086":0,"29087":0,"29088":0,"29089":0,"29090":0,"29091":0,"29092":1,"29093":0,"29094":1,"29095":1,"29096":0,"29097":0,"29098":0,"29099":0,"29100":1,"29101":0,"29102":1,"29103":0,"29104":1,"29105":0,"29106":1,"29107":0,"29108":0,"29109":0,"29110":0,"29111":0,"29112":0,"29113":0,"29114":1,"29115":0,"29116":1,"29117":0,"29118":1,"29119":0,"29120":0,"29121":0,"29122":0,"29123":0,"29124":0,"29125":0,"29126":1,"29127":1,"29128":0,"29129":0,"29130":0,"29131":0,"29132":0,"29133":0,"29134":1,"29135":0,"29136":1,"29137":1,"29138":1,"29139":0,"29140":1,"29141":0,"29142":1,"29143":0,"29144":0,"29145":1,"29146":0,"29147":1,"29148":0,"29149":1,"29150":0,"29151":0,"29152":1,"29153":1,"29154":0,"29155":0,"29156":0,"29157":1,"29158":0,"29159":0,"29160":0,"29161":0,"29162":0,"29163":1,"29164":1,"29165":1,"29166":0,"29167":0,"29168":0,"29169":0,"29170":0,"29171":0,"29172":0,"29173":0,"29174":1,"29175":0,"29176":0,"29177":1,"29178":0,"29179":0,"29180":1,"29181":0,"29182":1,"29183":0,"29184":1,"29185":0,"29186":0,"29187":0,"29188":0,"29189":0,"29190":0,"29191":0,"29192":0,"29193":0,"29194":0,"29195":1,"29196":0,"29197":0,"29198":0,"29199":0,"29200":0,"29201":1,"29202":0,"29203":0,"29204":0,"29205":0,"29206":1,"29207":0,"29208":0,"29209":1,"29210":0,"29211":1,"29212":0,"29213":0,"29214":1,"29215":1,"29216":1,"29217":0,"29218":0,"29219":0,"29220":0,"29221":1,"29222":0,"29223":0,"29224":1,"29225":0,"29226":0,"29227":0,"29228":1,"29229":0,"29230":0,"29231":0,"29232":0,"29233":0,"29234":0,"29235":0,"29236":0,"29237":0,"29238":1,"29239":0,"29240":1,"29241":0,"29242":0,"29243":0,"29244":1,"29245":0,"29246":1,"29247":0,"29248":0,"29249":1,"29250":0,"29251":0,"29252":1,"29253":1,"29254":0,"29255":0,"29256":0,"29257":0,"29258":0,"29259":0,"29260":0,"29261":0,"29262":0,"29263":0,"29264":0,"29265":1,"29266":0,"29267":0,"29268":0,"29269":0,"29270":0,"29271":0,"29272":0,"29273":1,"29274":0,"29275":1,"29276":0,"29277":0,"29278":0,"29279":0,"29280":0,"29281":0,"29282":0,"29283":0,"29284":0,"29285":0,"29286":0,"29287":0,"29288":0,"29289":0,"29290":1,"29291":0,"29292":0,"29293":0,"29294":0,"29295":1,"29296":1,"29297":0,"29298":0,"29299":1,"29300":0,"29301":0,"29302":0,"29303":0,"29304":0,"29305":0,"29306":0,"29307":0,"29308":0,"29309":1,"29310":0,"29311":0,"29312":0,"29313":0,"29314":0,"29315":0,"29316":1,"29317":1,"29318":0,"29319":0,"29320":0,"29321":0,"29322":0,"29323":0,"29324":0,"29325":0,"29326":0,"29327":1,"29328":0,"29329":1,"29330":1,"29331":0,"29332":0,"29333":0,"29334":0,"29335":0,"29336":1,"29337":0,"29338":1,"29339":0,"29340":1,"29341":1,"29342":0,"29343":1,"29344":0,"29345":0,"29346":0,"29347":0,"29348":0,"29349":0,"29350":0,"29351":0,"29352":0,"29353":0,"29354":0,"29355":1,"29356":0,"29357":0,"29358":0,"29359":0,"29360":0,"29361":0,"29362":1,"29363":0,"29364":1,"29365":0,"29366":0,"29367":0,"29368":0,"29369":0,"29370":0,"29371":0,"29372":1,"29373":1,"29374":0,"29375":0,"29376":0,"29377":0,"29378":0,"29379":0,"29380":0,"29381":1,"29382":0,"29383":0,"29384":1,"29385":0,"29386":0,"29387":1,"29388":0,"29389":1,"29390":0,"29391":1,"29392":0,"29393":1,"29394":0,"29395":1,"29396":0,"29397":0,"29398":0,"29399":0,"29400":0,"29401":0,"29402":0,"29403":0,"29404":1,"29405":1,"29406":1,"29407":0,"29408":0,"29409":0,"29410":0,"29411":0,"29412":0,"29413":0,"29414":0,"29415":0,"29416":0,"29417":0,"29418":0,"29419":0,"29420":0,"29421":1,"29422":1,"29423":0,"29424":0,"29425":1,"29426":0,"29427":0,"29428":0,"29429":0,"29430":0,"29431":0,"29432":1,"29433":0,"29434":0,"29435":0,"29436":0,"29437":0,"29438":1,"29439":0,"29440":1,"29441":0,"29442":1,"29443":1,"29444":0,"29445":0,"29446":1,"29447":0,"29448":1,"29449":1,"29450":0,"29451":0,"29452":1,"29453":1,"29454":0,"29455":0,"29456":0,"29457":0,"29458":0,"29459":1,"29460":1,"29461":0,"29462":0,"29463":0,"29464":0,"29465":1,"29466":1,"29467":1,"29468":0,"29469":0,"29470":0,"29471":0,"29472":0,"29473":0,"29474":1,"29475":0,"29476":1,"29477":0,"29478":0,"29479":1,"29480":0,"29481":0,"29482":1,"29483":0,"29484":0,"29485":1,"29486":0,"29487":0,"29488":0,"29489":1,"29490":0,"29491":1,"29492":0,"29493":0,"29494":0,"29495":1,"29496":0,"29497":0,"29498":1,"29499":1,"29500":0,"29501":0,"29502":1,"29503":0,"29504":0,"29505":0,"29506":0,"29507":1,"29508":1,"29509":0,"29510":0,"29511":0,"29512":0,"29513":0,"29514":1,"29515":1,"29516":1,"29517":0,"29518":0,"29519":0,"29520":0,"29521":0,"29522":0,"29523":0,"29524":0,"29525":0,"29526":1,"29527":0,"29528":0,"29529":0,"29530":0,"29531":0,"29532":0,"29533":0,"29534":0,"29535":0,"29536":0,"29537":1,"29538":1,"29539":0,"29540":0,"29541":0,"29542":0,"29543":1,"29544":0,"29545":1,"29546":1,"29547":0,"29548":0,"29549":1,"29550":0,"29551":0,"29552":0,"29553":1,"29554":0,"29555":1,"29556":0,"29557":0,"29558":1,"29559":0,"29560":0,"29561":0,"29562":0,"29563":0,"29564":1,"29565":0,"29566":0,"29567":1,"29568":1,"29569":0,"29570":0,"29571":1,"29572":1,"29573":1,"29574":0,"29575":0,"29576":1,"29577":0,"29578":0,"29579":1,"29580":1,"29581":1,"29582":0,"29583":0,"29584":0,"29585":0,"29586":0,"29587":0,"29588":1,"29589":0,"29590":0,"29591":0,"29592":0,"29593":0,"29594":0,"29595":0,"29596":0,"29597":1,"29598":0,"29599":0,"29600":0,"29601":0,"29602":0,"29603":1,"29604":0,"29605":0,"29606":1,"29607":0,"29608":0,"29609":0,"29610":0,"29611":0,"29612":0,"29613":1,"29614":0,"29615":0,"29616":0,"29617":0,"29618":0,"29619":0,"29620":0,"29621":1,"29622":0,"29623":0,"29624":0,"29625":0,"29626":1,"29627":1,"29628":0,"29629":0,"29630":1,"29631":1,"29632":1,"29633":0,"29634":0,"29635":0,"29636":1,"29637":0,"29638":0,"29639":1,"29640":0,"29641":0,"29642":0,"29643":0,"29644":0,"29645":0,"29646":1,"29647":0,"29648":0,"29649":0,"29650":0,"29651":0,"29652":1,"29653":0,"29654":1,"29655":1,"29656":0,"29657":0,"29658":0,"29659":0,"29660":0,"29661":0,"29662":1,"29663":0,"29664":0,"29665":1,"29666":1,"29667":0,"29668":0,"29669":1,"29670":0,"29671":0,"29672":0,"29673":0,"29674":0,"29675":0,"29676":0,"29677":1,"29678":0,"29679":0,"29680":1,"29681":0,"29682":0,"29683":0,"29684":1,"29685":0,"29686":1,"29687":0,"29688":0,"29689":0,"29690":0,"29691":0,"29692":0,"29693":0,"29694":1,"29695":1,"29696":0,"29697":0,"29698":0,"29699":0,"29700":0,"29701":0,"29702":0,"29703":0,"29704":1,"29705":0,"29706":0,"29707":0,"29708":1,"29709":0,"29710":0,"29711":0,"29712":0,"29713":0,"29714":0,"29715":1,"29716":0,"29717":0,"29718":0,"29719":0,"29720":0,"29721":0,"29722":0,"29723":0,"29724":0,"29725":0,"29726":0,"29727":0,"29728":0,"29729":0,"29730":0,"29731":0,"29732":0,"29733":0,"29734":0,"29735":1,"29736":1,"29737":1,"29738":0,"29739":0,"29740":0,"29741":1,"29742":1,"29743":0,"29744":0,"29745":0,"29746":0,"29747":0,"29748":0,"29749":1,"29750":0,"29751":0,"29752":0,"29753":0,"29754":0,"29755":0,"29756":1,"29757":0,"29758":1,"29759":0,"29760":0,"29761":1,"29762":1,"29763":0,"29764":0,"29765":0,"29766":1,"29767":0,"29768":0,"29769":1,"29770":0,"29771":0,"29772":1,"29773":1,"29774":0,"29775":0,"29776":0,"29777":0,"29778":0,"29779":0,"29780":0,"29781":1,"29782":0,"29783":0,"29784":1,"29785":1,"29786":0,"29787":1,"29788":0,"29789":0,"29790":0,"29791":1,"29792":0,"29793":0,"29794":0,"29795":0,"29796":0,"29797":0,"29798":0,"29799":1,"29800":0,"29801":1,"29802":0,"29803":0,"29804":0,"29805":1,"29806":0,"29807":0,"29808":0,"29809":1,"29810":1,"29811":0,"29812":0,"29813":0,"29814":1,"29815":0,"29816":0,"29817":0,"29818":0,"29819":1,"29820":1,"29821":1,"29822":0,"29823":0,"29824":0,"29825":1,"29826":1,"29827":0,"29828":0,"29829":1,"29830":0,"29831":0,"29832":1,"29833":0,"29834":0,"29835":1,"29836":1,"29837":0,"29838":0,"29839":0,"29840":0,"29841":0,"29842":0,"29843":1,"29844":0,"29845":1,"29846":0,"29847":0,"29848":1,"29849":0,"29850":0,"29851":1,"29852":0,"29853":0,"29854":1,"29855":0,"29856":0,"29857":0,"29858":0,"29859":0,"29860":0,"29861":1,"29862":0,"29863":0,"29864":0,"29865":0,"29866":1,"29867":0,"29868":0,"29869":0,"29870":0,"29871":0,"29872":0,"29873":0,"29874":1,"29875":0,"29876":0,"29877":0,"29878":0,"29879":0,"29880":1,"29881":1,"29882":1,"29883":0,"29884":0,"29885":0,"29886":1,"29887":0,"29888":0,"29889":0,"29890":0,"29891":0,"29892":0,"29893":1,"29894":0,"29895":0,"29896":0,"29897":0,"29898":0,"29899":0,"29900":0,"29901":0,"29902":0,"29903":0,"29904":0,"29905":0,"29906":0,"29907":0,"29908":0,"29909":0,"29910":0,"29911":0,"29912":0,"29913":0,"29914":0,"29915":0,"29916":0,"29917":0,"29918":0,"29919":0,"29920":0,"29921":0,"29922":0,"29923":0,"29924":0,"29925":0,"29926":0,"29927":0,"29928":0,"29929":0,"29930":1,"29931":0,"29932":1,"29933":1,"29934":0,"29935":0,"29936":1,"29937":0,"29938":0,"29939":0,"29940":0,"29941":0,"29942":0,"29943":1,"29944":0,"29945":0,"29946":1,"29947":0,"29948":0,"29949":0,"29950":0,"29951":0,"29952":1,"29953":1,"29954":1,"29955":0,"29956":1,"29957":0,"29958":0,"29959":1,"29960":0,"29961":1,"29962":1,"29963":0,"29964":1,"29965":0,"29966":0,"29967":0,"29968":1,"29969":0,"29970":0,"29971":1,"29972":0,"29973":0,"29974":0,"29975":0,"29976":0,"29977":1,"29978":1,"29979":0,"29980":1,"29981":0,"29982":0,"29983":0,"29984":0,"29985":0,"29986":0,"29987":0,"29988":1,"29989":0,"29990":0,"29991":0,"29992":0,"29993":1,"29994":0,"29995":1,"29996":1,"29997":1,"29998":0,"29999":0,"30000":1,"30001":0,"30002":0,"30003":0,"30004":1,"30005":0,"30006":0,"30007":0,"30008":0,"30009":0,"30010":1,"30011":0,"30012":0,"30013":0,"30014":0,"30015":0,"30016":0,"30017":1,"30018":0,"30019":0,"30020":0,"30021":1,"30022":0,"30023":0,"30024":0,"30025":0,"30026":0,"30027":0,"30028":1,"30029":0,"30030":1,"30031":0,"30032":0,"30033":0,"30034":0,"30035":0,"30036":0,"30037":1,"30038":0,"30039":0,"30040":0,"30041":0,"30042":1,"30043":0,"30044":1,"30045":0,"30046":0,"30047":0,"30048":0,"30049":0,"30050":0,"30051":0,"30052":0,"30053":1,"30054":0,"30055":0,"30056":0,"30057":0,"30058":1,"30059":0,"30060":0,"30061":0,"30062":0,"30063":1,"30064":0,"30065":1,"30066":1,"30067":1,"30068":1,"30069":0,"30070":1,"30071":0,"30072":0,"30073":0,"30074":0,"30075":1,"30076":1,"30077":1,"30078":0,"30079":0,"30080":0,"30081":0,"30082":0,"30083":1,"30084":0,"30085":1,"30086":1,"30087":1,"30088":0,"30089":1,"30090":1,"30091":1,"30092":0,"30093":1,"30094":0,"30095":0,"30096":0,"30097":0,"30098":1,"30099":1,"30100":0,"30101":0,"30102":0,"30103":1,"30104":0,"30105":1,"30106":0,"30107":1,"30108":1,"30109":0,"30110":0,"30111":1,"30112":0,"30113":0,"30114":0,"30115":0,"30116":1,"30117":1,"30118":0,"30119":0,"30120":0,"30121":0,"30122":0,"30123":0,"30124":0,"30125":0,"30126":1,"30127":1,"30128":0,"30129":0,"30130":0,"30131":0,"30132":0,"30133":1,"30134":0,"30135":1,"30136":0,"30137":0,"30138":0,"30139":0,"30140":0,"30141":0,"30142":1,"30143":1,"30144":0,"30145":0,"30146":0,"30147":1,"30148":0,"30149":0,"30150":0,"30151":0,"30152":0,"30153":0,"30154":0,"30155":0,"30156":1,"30157":1,"30158":1,"30159":0,"30160":0,"30161":0,"30162":0,"30163":0,"30164":0,"30165":0,"30166":0,"30167":1,"30168":0,"30169":0,"30170":0,"30171":0,"30172":0,"30173":0,"30174":0,"30175":0,"30176":0,"30177":1,"30178":1,"30179":0,"30180":1,"30181":0,"30182":0,"30183":1,"30184":0,"30185":0,"30186":0,"30187":1,"30188":0,"30189":0,"30190":1,"30191":0,"30192":0,"30193":0,"30194":0,"30195":0,"30196":1,"30197":0,"30198":1,"30199":0,"30200":0,"30201":0,"30202":0,"30203":0,"30204":1,"30205":0,"30206":0,"30207":0,"30208":1,"30209":0,"30210":0,"30211":0,"30212":0,"30213":1,"30214":0,"30215":0,"30216":0,"30217":1,"30218":0,"30219":0,"30220":0,"30221":0,"30222":0,"30223":0,"30224":0,"30225":0,"30226":0,"30227":0,"30228":0,"30229":0,"30230":0,"30231":0,"30232":0,"30233":1,"30234":0,"30235":0,"30236":0,"30237":0,"30238":0,"30239":1,"30240":1,"30241":0,"30242":1,"30243":1,"30244":1,"30245":0,"30246":0,"30247":1,"30248":0,"30249":1,"30250":0,"30251":0,"30252":0,"30253":0,"30254":0,"30255":1,"30256":0,"30257":0,"30258":0,"30259":0,"30260":0,"30261":0,"30262":0,"30263":0,"30264":0,"30265":1,"30266":0,"30267":1,"30268":0,"30269":0,"30270":0,"30271":0,"30272":0,"30273":0,"30274":0,"30275":0,"30276":0,"30277":1,"30278":0,"30279":0,"30280":0,"30281":1,"30282":0,"30283":0,"30284":0,"30285":0,"30286":0,"30287":0,"30288":0,"30289":0,"30290":1,"30291":0,"30292":1,"30293":0,"30294":1,"30295":0,"30296":0,"30297":0,"30298":0,"30299":0,"30300":0,"30301":0,"30302":0,"30303":0,"30304":0,"30305":0,"30306":0,"30307":0,"30308":0,"30309":0,"30310":0,"30311":0,"30312":0,"30313":0,"30314":0,"30315":0,"30316":0,"30317":1,"30318":1,"30319":0,"30320":1,"30321":1,"30322":0,"30323":0,"30324":1,"30325":1,"30326":1,"30327":0,"30328":0,"30329":0,"30330":0,"30331":0,"30332":1,"30333":1,"30334":1,"30335":0,"30336":0,"30337":0,"30338":0,"30339":0,"30340":0,"30341":0,"30342":0,"30343":1,"30344":1,"30345":1,"30346":0,"30347":0,"30348":0,"30349":0,"30350":1,"30351":0,"30352":0,"30353":0,"30354":1,"30355":0,"30356":0,"30357":0,"30358":0,"30359":0,"30360":0,"30361":0,"30362":0,"30363":0,"30364":1,"30365":0,"30366":0,"30367":0,"30368":0,"30369":0,"30370":0,"30371":0,"30372":0,"30373":1,"30374":0,"30375":0,"30376":1,"30377":0,"30378":0,"30379":1,"30380":1,"30381":0,"30382":1,"30383":0,"30384":0,"30385":0,"30386":0,"30387":0,"30388":0,"30389":0,"30390":1,"30391":1,"30392":0,"30393":0,"30394":0,"30395":0,"30396":0,"30397":1,"30398":0,"30399":0,"30400":1,"30401":0,"30402":0,"30403":0,"30404":1,"30405":0,"30406":0,"30407":0,"30408":0,"30409":0,"30410":0,"30411":0,"30412":1,"30413":0,"30414":0,"30415":0,"30416":0,"30417":0,"30418":0,"30419":0,"30420":0,"30421":0,"30422":0,"30423":1,"30424":0,"30425":0,"30426":0,"30427":1,"30428":1,"30429":0,"30430":0,"30431":0,"30432":1,"30433":0,"30434":0,"30435":1,"30436":0,"30437":0,"30438":0,"30439":0,"30440":0,"30441":1,"30442":0,"30443":1,"30444":0,"30445":1,"30446":1,"30447":0,"30448":1,"30449":0,"30450":1,"30451":0,"30452":0,"30453":1,"30454":0,"30455":1,"30456":1,"30457":1,"30458":0,"30459":1,"30460":0,"30461":0,"30462":0,"30463":0,"30464":1,"30465":0,"30466":1,"30467":0,"30468":1,"30469":0,"30470":0,"30471":1,"30472":0,"30473":0,"30474":0,"30475":0,"30476":0,"30477":1,"30478":0,"30479":0,"30480":0,"30481":0,"30482":1,"30483":0,"30484":0,"30485":1,"30486":0,"30487":0,"30488":0,"30489":0,"30490":0,"30491":1,"30492":0,"30493":0,"30494":0,"30495":0,"30496":1,"30497":0,"30498":0,"30499":0,"30500":0,"30501":0,"30502":0,"30503":1,"30504":0,"30505":0,"30506":0,"30507":1,"30508":0,"30509":0,"30510":1,"30511":1,"30512":0,"30513":0,"30514":0,"30515":0,"30516":0,"30517":0,"30518":0,"30519":1,"30520":0,"30521":0,"30522":0,"30523":0,"30524":0,"30525":0,"30526":0,"30527":0,"30528":0,"30529":0,"30530":1,"30531":0,"30532":0,"30533":0,"30534":0,"30535":0,"30536":1,"30537":1,"30538":0,"30539":0,"30540":1,"30541":0,"30542":0,"30543":0,"30544":0,"30545":0,"30546":1,"30547":1,"30548":0,"30549":0,"30550":0,"30551":0,"30552":1,"30553":0,"30554":1,"30555":0,"30556":0,"30557":0,"30558":0,"30559":0,"30560":0,"30561":0,"30562":1,"30563":0,"30564":0,"30565":1,"30566":0,"30567":0,"30568":0,"30569":0,"30570":0,"30571":0,"30572":0,"30573":0,"30574":0,"30575":0,"30576":0,"30577":1,"30578":0,"30579":0,"30580":0,"30581":0,"30582":0,"30583":0,"30584":0,"30585":1,"30586":0,"30587":0,"30588":1,"30589":1,"30590":0,"30591":0,"30592":0,"30593":0,"30594":0,"30595":1,"30596":0,"30597":1,"30598":0,"30599":0,"30600":0,"30601":0,"30602":0,"30603":0,"30604":0,"30605":0,"30606":1,"30607":0,"30608":0,"30609":1,"30610":0,"30611":0,"30612":0,"30613":0,"30614":0,"30615":0,"30616":1,"30617":1,"30618":0,"30619":1,"30620":0,"30621":0,"30622":1,"30623":0,"30624":1,"30625":0,"30626":0,"30627":1,"30628":0,"30629":1,"30630":1,"30631":0,"30632":1,"30633":1,"30634":0,"30635":1,"30636":0,"30637":0,"30638":0,"30639":0,"30640":1,"30641":0,"30642":0,"30643":0,"30644":0,"30645":0,"30646":0,"30647":0,"30648":0,"30649":1,"30650":0,"30651":0,"30652":0,"30653":0,"30654":1,"30655":0,"30656":0,"30657":0,"30658":0,"30659":0,"30660":0,"30661":0,"30662":0,"30663":0,"30664":0,"30665":1,"30666":0,"30667":0,"30668":1,"30669":1,"30670":1,"30671":1,"30672":0,"30673":0,"30674":1,"30675":0,"30676":1,"30677":1,"30678":0,"30679":0,"30680":0,"30681":0,"30682":0,"30683":0,"30684":0,"30685":0,"30686":0,"30687":0,"30688":0,"30689":0,"30690":0,"30691":0,"30692":0,"30693":0,"30694":1,"30695":0,"30696":0,"30697":1,"30698":0,"30699":0,"30700":0,"30701":1,"30702":0,"30703":0,"30704":1,"30705":0,"30706":0,"30707":0,"30708":0,"30709":0,"30710":0,"30711":0,"30712":0,"30713":0,"30714":0,"30715":0,"30716":0,"30717":0,"30718":0,"30719":1,"30720":0,"30721":0,"30722":0,"30723":1,"30724":0,"30725":0,"30726":0,"30727":0,"30728":0,"30729":0,"30730":0,"30731":0,"30732":0,"30733":0,"30734":0,"30735":0,"30736":1,"30737":0,"30738":0,"30739":0,"30740":0,"30741":1,"30742":0,"30743":0,"30744":0,"30745":0,"30746":0,"30747":0,"30748":1,"30749":0,"30750":0,"30751":0,"30752":0,"30753":1,"30754":0,"30755":1,"30756":1,"30757":0,"30758":0,"30759":0,"30760":0,"30761":1,"30762":1,"30763":0,"30764":0,"30765":0,"30766":0,"30767":0,"30768":0,"30769":0,"30770":1,"30771":1,"30772":0,"30773":0,"30774":0,"30775":0,"30776":1,"30777":0,"30778":0,"30779":0,"30780":0,"30781":0,"30782":0,"30783":0,"30784":0,"30785":0,"30786":0,"30787":1,"30788":0,"30789":0,"30790":1,"30791":0,"30792":0,"30793":1,"30794":0,"30795":0,"30796":0,"30797":1,"30798":0,"30799":1,"30800":0,"30801":1,"30802":1,"30803":0,"30804":0,"30805":0,"30806":1,"30807":1,"30808":1,"30809":0,"30810":1,"30811":0,"30812":0,"30813":0,"30814":0,"30815":0,"30816":1,"30817":0,"30818":0,"30819":1,"30820":1,"30821":1,"30822":0,"30823":0,"30824":1,"30825":0,"30826":1,"30827":0,"30828":0,"30829":1,"30830":0,"30831":0,"30832":1,"30833":0,"30834":0,"30835":0,"30836":1,"30837":0,"30838":0,"30839":0,"30840":1,"30841":1,"30842":0,"30843":1,"30844":0,"30845":0,"30846":1,"30847":0,"30848":0,"30849":0,"30850":0,"30851":0,"30852":0,"30853":0,"30854":0,"30855":0,"30856":0,"30857":0,"30858":0,"30859":0,"30860":0,"30861":0,"30862":0,"30863":1,"30864":0,"30865":0,"30866":1,"30867":1,"30868":0,"30869":1,"30870":0,"30871":0,"30872":0,"30873":0,"30874":0,"30875":0,"30876":0,"30877":1,"30878":1,"30879":0,"30880":1,"30881":1,"30882":0,"30883":0,"30884":0,"30885":1,"30886":0,"30887":0,"30888":0,"30889":0,"30890":0,"30891":0,"30892":0,"30893":0,"30894":0,"30895":0,"30896":0,"30897":0,"30898":0,"30899":1,"30900":0,"30901":1,"30902":1,"30903":0,"30904":0,"30905":1,"30906":0,"30907":0,"30908":0,"30909":0,"30910":0,"30911":0,"30912":1,"30913":0,"30914":1,"30915":0,"30916":0,"30917":1,"30918":1,"30919":1,"30920":0,"30921":0,"30922":1,"30923":0,"30924":0,"30925":1,"30926":0,"30927":0,"30928":0,"30929":1,"30930":0,"30931":0,"30932":0,"30933":0,"30934":0,"30935":0,"30936":1,"30937":0,"30938":1,"30939":1,"30940":0,"30941":0,"30942":1,"30943":0,"30944":0,"30945":0,"30946":0,"30947":0,"30948":1,"30949":0,"30950":0,"30951":0,"30952":0,"30953":0,"30954":0,"30955":0,"30956":1,"30957":0,"30958":0,"30959":0,"30960":0,"30961":0,"30962":0,"30963":1,"30964":0,"30965":0,"30966":1,"30967":0,"30968":0,"30969":1,"30970":0,"30971":0,"30972":0,"30973":0,"30974":1,"30975":0,"30976":0,"30977":0,"30978":0,"30979":0,"30980":1,"30981":0,"30982":0,"30983":0,"30984":1,"30985":0,"30986":0,"30987":0,"30988":0,"30989":0,"30990":0,"30991":0,"30992":0,"30993":0,"30994":0,"30995":1,"30996":0,"30997":0,"30998":0,"30999":1,"31000":1,"31001":0,"31002":0,"31003":0,"31004":1,"31005":1,"31006":0,"31007":0,"31008":0,"31009":0,"31010":1,"31011":0,"31012":0,"31013":0,"31014":0,"31015":0,"31016":0,"31017":0,"31018":0,"31019":0,"31020":0,"31021":0,"31022":0,"31023":0,"31024":0,"31025":1,"31026":0,"31027":0,"31028":0,"31029":1,"31030":0,"31031":0,"31032":0,"31033":0,"31034":0,"31035":0,"31036":0,"31037":0,"31038":0,"31039":0,"31040":0,"31041":0,"31042":1,"31043":0,"31044":0,"31045":0,"31046":0,"31047":1,"31048":0,"31049":0,"31050":0,"31051":0,"31052":1,"31053":0,"31054":0,"31055":1,"31056":0,"31057":1,"31058":0,"31059":1,"31060":0,"31061":0,"31062":1,"31063":0,"31064":0,"31065":0,"31066":0,"31067":0,"31068":1,"31069":0,"31070":0,"31071":0,"31072":1,"31073":0,"31074":0,"31075":0,"31076":0,"31077":1,"31078":0,"31079":0,"31080":0,"31081":0,"31082":1,"31083":0,"31084":0,"31085":0,"31086":0,"31087":1,"31088":0,"31089":0,"31090":1,"31091":0,"31092":1,"31093":0,"31094":0,"31095":0,"31096":0,"31097":0,"31098":1,"31099":0,"31100":0,"31101":0,"31102":0,"31103":0,"31104":0,"31105":0,"31106":0,"31107":1,"31108":0,"31109":1,"31110":1,"31111":1,"31112":1,"31113":1,"31114":0,"31115":0,"31116":0,"31117":0,"31118":0,"31119":0,"31120":0,"31121":0,"31122":1,"31123":0,"31124":0,"31125":0,"31126":0,"31127":1,"31128":0,"31129":1,"31130":1,"31131":0,"31132":0,"31133":0,"31134":0,"31135":1,"31136":0,"31137":0,"31138":0,"31139":0,"31140":1,"31141":0,"31142":0,"31143":0,"31144":0,"31145":0,"31146":0,"31147":0,"31148":0,"31149":0,"31150":1,"31151":0,"31152":0,"31153":1,"31154":0,"31155":1,"31156":0,"31157":0,"31158":0,"31159":0,"31160":1,"31161":0,"31162":0,"31163":0,"31164":0,"31165":0,"31166":0,"31167":0,"31168":0,"31169":0,"31170":1,"31171":0,"31172":0,"31173":0,"31174":0,"31175":0,"31176":0,"31177":1,"31178":0,"31179":0,"31180":0,"31181":1,"31182":0,"31183":0,"31184":1,"31185":0,"31186":0,"31187":1,"31188":1,"31189":0,"31190":0,"31191":0,"31192":0,"31193":0,"31194":0,"31195":1,"31196":0,"31197":0,"31198":0,"31199":0,"31200":1,"31201":0,"31202":0,"31203":0,"31204":0,"31205":0,"31206":1,"31207":0,"31208":0,"31209":0,"31210":0,"31211":1,"31212":0,"31213":0,"31214":1,"31215":0,"31216":0,"31217":0,"31218":0,"31219":0,"31220":0,"31221":0,"31222":1,"31223":0,"31224":1,"31225":0,"31226":1,"31227":1,"31228":1,"31229":0,"31230":0,"31231":0,"31232":0,"31233":0,"31234":1,"31235":0,"31236":0,"31237":0,"31238":0,"31239":0,"31240":0,"31241":0,"31242":0,"31243":0,"31244":1,"31245":0,"31246":0,"31247":0,"31248":1,"31249":0,"31250":0,"31251":0,"31252":0,"31253":0,"31254":1,"31255":1,"31256":0,"31257":0,"31258":0,"31259":0,"31260":0,"31261":0,"31262":0,"31263":0,"31264":0,"31265":0,"31266":0,"31267":0,"31268":0,"31269":0,"31270":0,"31271":1,"31272":0,"31273":1,"31274":0,"31275":1,"31276":1,"31277":1,"31278":0,"31279":0,"31280":0,"31281":0,"31282":0,"31283":0,"31284":0,"31285":0,"31286":0,"31287":1,"31288":1,"31289":0,"31290":0,"31291":0,"31292":0,"31293":0,"31294":1,"31295":0,"31296":0,"31297":1,"31298":1,"31299":1,"31300":0,"31301":0,"31302":0,"31303":1,"31304":0,"31305":0,"31306":0,"31307":0,"31308":0,"31309":0,"31310":1,"31311":0,"31312":0,"31313":0,"31314":0,"31315":0,"31316":1,"31317":1,"31318":1,"31319":0,"31320":0,"31321":0,"31322":0,"31323":1,"31324":1,"31325":0,"31326":0,"31327":0,"31328":0,"31329":1,"31330":0,"31331":0,"31332":0,"31333":1,"31334":1,"31335":1,"31336":0,"31337":0,"31338":0,"31339":0,"31340":1,"31341":1,"31342":0,"31343":1,"31344":1,"31345":0,"31346":0,"31347":0,"31348":0,"31349":1,"31350":1,"31351":0,"31352":0,"31353":0,"31354":0,"31355":0,"31356":1,"31357":0,"31358":0,"31359":0,"31360":1,"31361":1,"31362":0,"31363":1,"31364":0,"31365":0,"31366":1,"31367":0,"31368":1,"31369":0,"31370":0,"31371":0,"31372":0,"31373":0,"31374":0,"31375":0,"31376":0,"31377":0,"31378":1,"31379":1,"31380":0,"31381":0,"31382":0,"31383":1,"31384":0,"31385":0,"31386":0,"31387":0,"31388":0,"31389":0,"31390":0,"31391":1,"31392":1,"31393":0,"31394":0,"31395":0,"31396":0,"31397":0,"31398":1,"31399":0,"31400":0,"31401":0,"31402":0,"31403":0,"31404":0,"31405":0,"31406":0,"31407":0,"31408":0,"31409":0,"31410":1,"31411":0,"31412":0,"31413":1,"31414":0,"31415":0,"31416":1,"31417":0,"31418":0,"31419":1,"31420":1,"31421":0,"31422":1,"31423":0,"31424":0,"31425":0,"31426":0,"31427":0,"31428":0,"31429":1,"31430":1,"31431":0,"31432":0,"31433":0,"31434":0,"31435":1,"31436":1,"31437":0,"31438":0,"31439":1,"31440":0,"31441":0,"31442":0,"31443":0,"31444":0,"31445":0,"31446":1,"31447":1,"31448":0,"31449":0,"31450":0,"31451":1,"31452":1,"31453":0,"31454":0,"31455":1,"31456":0,"31457":0,"31458":1,"31459":1,"31460":1,"31461":0,"31462":0,"31463":0,"31464":1,"31465":1,"31466":0,"31467":0,"31468":0,"31469":1,"31470":0,"31471":1,"31472":0,"31473":0,"31474":1,"31475":0,"31476":0,"31477":1,"31478":0,"31479":0,"31480":0,"31481":1,"31482":1,"31483":0,"31484":1,"31485":1,"31486":0,"31487":0,"31488":0,"31489":0,"31490":1,"31491":0,"31492":0,"31493":0,"31494":0,"31495":0,"31496":0,"31497":1,"31498":1,"31499":0,"31500":0,"31501":0,"31502":1,"31503":0,"31504":1,"31505":0,"31506":0,"31507":0,"31508":0,"31509":0,"31510":0,"31511":0,"31512":0,"31513":1,"31514":0,"31515":0,"31516":1,"31517":0,"31518":0,"31519":0,"31520":0,"31521":0,"31522":0,"31523":1,"31524":1,"31525":0,"31526":1,"31527":0,"31528":0,"31529":0,"31530":0,"31531":1,"31532":0,"31533":0,"31534":1,"31535":1,"31536":0,"31537":0,"31538":0,"31539":0,"31540":0,"31541":0,"31542":0,"31543":0,"31544":0,"31545":0,"31546":1,"31547":0,"31548":0,"31549":0,"31550":1,"31551":0,"31552":0,"31553":0,"31554":0,"31555":1,"31556":0,"31557":0,"31558":1,"31559":0,"31560":0,"31561":1,"31562":0,"31563":0,"31564":0,"31565":0,"31566":0,"31567":0,"31568":0,"31569":1,"31570":0,"31571":1,"31572":0,"31573":1,"31574":0,"31575":0,"31576":0,"31577":1,"31578":0,"31579":0,"31580":0,"31581":0,"31582":0,"31583":1,"31584":1,"31585":0,"31586":0,"31587":0,"31588":0,"31589":1,"31590":0,"31591":0,"31592":0,"31593":0,"31594":0,"31595":0,"31596":1,"31597":0,"31598":0,"31599":0,"31600":0,"31601":1,"31602":0,"31603":0,"31604":0,"31605":0,"31606":0,"31607":0,"31608":0,"31609":0,"31610":0,"31611":1,"31612":0,"31613":1,"31614":0,"31615":0,"31616":0,"31617":0,"31618":0,"31619":0,"31620":0,"31621":1,"31622":0,"31623":1,"31624":0,"31625":0,"31626":0,"31627":0,"31628":0,"31629":1,"31630":0,"31631":0,"31632":1,"31633":1,"31634":0,"31635":0,"31636":0,"31637":0,"31638":0,"31639":0,"31640":0,"31641":0,"31642":0,"31643":0,"31644":0,"31645":1,"31646":0,"31647":0,"31648":0,"31649":0,"31650":0,"31651":0,"31652":0,"31653":1,"31654":0,"31655":1,"31656":0,"31657":0,"31658":0,"31659":0,"31660":0,"31661":0,"31662":1,"31663":0,"31664":1,"31665":0,"31666":0,"31667":0,"31668":0,"31669":0,"31670":0,"31671":1,"31672":0,"31673":1,"31674":0,"31675":1,"31676":1,"31677":0,"31678":0,"31679":0,"31680":0,"31681":0,"31682":0,"31683":0,"31684":0,"31685":0,"31686":0,"31687":0,"31688":0,"31689":1,"31690":1,"31691":0,"31692":0,"31693":0,"31694":0,"31695":0,"31696":1,"31697":0,"31698":0,"31699":0,"31700":0,"31701":0,"31702":1,"31703":0,"31704":1,"31705":1,"31706":0,"31707":0,"31708":1,"31709":0,"31710":0,"31711":0,"31712":0,"31713":0,"31714":0,"31715":0,"31716":1,"31717":0,"31718":0,"31719":0,"31720":0,"31721":0,"31722":1,"31723":0,"31724":0,"31725":0,"31726":0,"31727":1,"31728":1,"31729":0,"31730":0,"31731":0,"31732":1,"31733":0,"31734":1,"31735":0,"31736":1,"31737":0,"31738":1,"31739":0,"31740":1,"31741":1,"31742":0,"31743":1,"31744":0,"31745":0,"31746":0,"31747":0,"31748":0,"31749":0,"31750":0,"31751":0,"31752":1,"31753":0,"31754":0,"31755":0,"31756":0,"31757":0,"31758":0,"31759":1,"31760":0,"31761":0,"31762":0,"31763":0,"31764":0,"31765":1,"31766":1,"31767":0,"31768":0,"31769":1,"31770":1,"31771":0,"31772":0,"31773":0,"31774":0,"31775":0,"31776":0,"31777":1,"31778":0,"31779":0,"31780":0,"31781":1,"31782":1,"31783":1,"31784":0,"31785":0,"31786":1,"31787":0,"31788":0,"31789":0,"31790":1,"31791":0,"31792":1,"31793":0,"31794":0,"31795":0,"31796":0,"31797":0,"31798":1,"31799":0,"31800":0,"31801":0,"31802":0,"31803":0,"31804":0,"31805":0,"31806":1,"31807":0,"31808":1,"31809":0,"31810":0,"31811":0,"31812":1,"31813":1,"31814":0,"31815":0,"31816":1,"31817":0,"31818":0,"31819":0,"31820":0,"31821":0,"31822":0,"31823":0,"31824":0,"31825":0,"31826":0,"31827":1,"31828":0,"31829":1,"31830":0,"31831":0,"31832":1,"31833":0,"31834":1,"31835":1,"31836":0,"31837":0,"31838":0,"31839":0,"31840":1,"31841":0,"31842":1,"31843":0,"31844":0,"31845":1,"31846":0,"31847":1,"31848":0,"31849":1,"31850":0,"31851":0,"31852":1,"31853":0,"31854":0,"31855":0,"31856":0,"31857":0,"31858":0,"31859":1,"31860":0,"31861":1,"31862":0,"31863":0,"31864":0,"31865":1,"31866":0,"31867":0,"31868":1,"31869":0,"31870":0,"31871":0,"31872":0,"31873":1,"31874":1,"31875":0,"31876":0,"31877":0,"31878":0,"31879":0,"31880":0,"31881":1,"31882":0,"31883":0,"31884":1,"31885":0,"31886":0,"31887":0,"31888":0,"31889":0,"31890":0,"31891":0,"31892":0,"31893":1,"31894":1,"31895":0,"31896":0,"31897":0,"31898":0,"31899":0,"31900":0,"31901":0,"31902":0,"31903":0,"31904":1,"31905":0,"31906":1,"31907":0,"31908":1,"31909":0,"31910":1,"31911":0,"31912":0,"31913":0,"31914":0,"31915":0,"31916":0,"31917":0,"31918":0,"31919":0,"31920":0,"31921":0,"31922":1,"31923":0,"31924":0,"31925":0,"31926":1,"31927":0,"31928":0,"31929":0,"31930":0,"31931":0,"31932":0,"31933":0,"31934":0,"31935":1,"31936":0,"31937":1,"31938":0,"31939":0,"31940":0,"31941":0,"31942":0,"31943":1,"31944":0,"31945":0,"31946":0,"31947":0,"31948":0,"31949":0,"31950":1,"31951":1,"31952":0,"31953":1,"31954":0,"31955":0,"31956":1,"31957":0,"31958":0,"31959":0,"31960":0,"31961":0,"31962":0,"31963":0,"31964":0,"31965":0,"31966":0,"31967":0,"31968":0,"31969":0,"31970":0,"31971":1,"31972":0,"31973":0,"31974":0,"31975":0,"31976":0,"31977":0,"31978":0,"31979":1,"31980":1,"31981":0,"31982":0,"31983":0,"31984":1,"31985":0,"31986":0,"31987":1,"31988":1,"31989":0,"31990":1,"31991":1,"31992":0,"31993":0,"31994":0,"31995":0,"31996":0,"31997":0,"31998":0,"31999":0,"32000":0,"32001":1,"32002":0,"32003":1,"32004":1,"32005":0,"32006":0,"32007":0,"32008":0,"32009":1,"32010":1,"32011":1,"32012":0,"32013":0,"32014":1,"32015":1,"32016":0,"32017":0,"32018":0,"32019":1,"32020":0,"32021":0,"32022":0,"32023":0,"32024":1,"32025":1,"32026":0,"32027":0,"32028":0,"32029":1,"32030":0,"32031":1,"32032":0,"32033":1,"32034":0,"32035":0,"32036":0,"32037":0,"32038":0,"32039":1,"32040":0,"32041":1,"32042":0,"32043":1,"32044":0,"32045":0,"32046":0,"32047":0,"32048":1,"32049":0,"32050":1,"32051":0,"32052":0,"32053":0,"32054":1,"32055":0,"32056":1,"32057":0,"32058":0,"32059":0,"32060":0,"32061":0,"32062":0,"32063":0,"32064":0,"32065":1,"32066":0,"32067":1,"32068":1,"32069":0,"32070":0,"32071":0,"32072":0,"32073":0,"32074":0,"32075":1,"32076":0,"32077":1,"32078":0,"32079":1,"32080":0,"32081":0,"32082":1,"32083":0,"32084":0,"32085":0,"32086":0,"32087":0,"32088":0,"32089":1,"32090":0,"32091":0,"32092":0,"32093":0,"32094":0,"32095":0,"32096":0,"32097":0,"32098":0,"32099":0,"32100":0,"32101":1,"32102":0,"32103":0,"32104":0,"32105":0,"32106":0,"32107":0,"32108":0,"32109":0,"32110":1,"32111":1,"32112":0,"32113":1,"32114":1,"32115":1,"32116":0,"32117":0,"32118":0,"32119":0,"32120":0,"32121":0,"32122":0,"32123":0,"32124":1,"32125":1,"32126":0,"32127":0,"32128":0,"32129":0,"32130":1,"32131":1,"32132":0,"32133":0,"32134":0,"32135":0,"32136":0,"32137":0,"32138":0,"32139":0,"32140":0,"32141":0,"32142":1,"32143":0,"32144":0,"32145":1,"32146":0,"32147":0,"32148":0,"32149":0,"32150":0,"32151":1,"32152":0,"32153":0,"32154":1,"32155":1,"32156":0,"32157":1,"32158":0,"32159":0,"32160":0,"32161":0,"32162":0,"32163":0,"32164":0,"32165":1,"32166":0,"32167":0,"32168":0,"32169":0,"32170":0,"32171":0,"32172":0,"32173":0,"32174":0,"32175":1,"32176":0,"32177":0,"32178":0,"32179":1,"32180":0,"32181":0,"32182":1,"32183":1,"32184":0,"32185":0,"32186":1,"32187":1,"32188":0,"32189":0,"32190":0,"32191":0,"32192":1,"32193":1,"32194":1,"32195":0,"32196":0,"32197":1,"32198":0,"32199":0,"32200":1,"32201":1,"32202":1,"32203":0,"32204":0,"32205":1,"32206":0,"32207":0,"32208":1,"32209":0,"32210":1,"32211":0,"32212":0,"32213":1,"32214":0,"32215":0,"32216":1,"32217":1,"32218":0,"32219":0,"32220":0,"32221":0,"32222":0,"32223":1,"32224":0,"32225":0,"32226":0,"32227":0,"32228":0,"32229":0,"32230":0,"32231":0,"32232":1,"32233":0,"32234":0,"32235":0,"32236":0,"32237":0,"32238":0,"32239":0,"32240":1,"32241":0,"32242":0,"32243":0,"32244":0,"32245":0,"32246":0,"32247":1,"32248":0,"32249":0,"32250":1,"32251":0,"32252":1,"32253":0,"32254":1,"32255":0,"32256":1,"32257":0,"32258":1,"32259":0,"32260":0,"32261":0,"32262":0,"32263":0,"32264":0,"32265":0,"32266":0,"32267":0,"32268":1,"32269":0,"32270":1,"32271":0,"32272":0,"32273":1,"32274":0,"32275":0,"32276":0,"32277":0,"32278":0,"32279":1,"32280":0,"32281":0,"32282":0,"32283":0,"32284":1,"32285":0,"32286":0,"32287":0,"32288":0,"32289":0,"32290":0,"32291":0,"32292":0,"32293":0,"32294":0,"32295":1,"32296":1,"32297":0,"32298":0,"32299":1,"32300":1,"32301":1,"32302":0,"32303":0,"32304":1,"32305":0,"32306":0,"32307":1,"32308":1,"32309":1,"32310":0,"32311":1,"32312":0,"32313":0,"32314":1,"32315":1,"32316":0,"32317":0,"32318":0,"32319":1,"32320":1,"32321":0,"32322":0,"32323":1,"32324":0,"32325":0,"32326":0,"32327":0,"32328":1,"32329":0,"32330":0,"32331":0,"32332":0,"32333":0,"32334":1,"32335":0,"32336":0,"32337":0,"32338":0,"32339":0,"32340":0,"32341":1,"32342":0,"32343":0,"32344":1,"32345":1,"32346":0,"32347":0,"32348":0,"32349":0,"32350":1,"32351":1,"32352":0,"32353":1,"32354":0,"32355":0,"32356":0,"32357":0,"32358":0,"32359":0,"32360":0,"32361":1,"32362":0,"32363":0,"32364":0,"32365":0,"32366":0,"32367":0,"32368":1,"32369":0,"32370":0,"32371":0,"32372":0,"32373":1,"32374":0,"32375":0,"32376":0,"32377":1,"32378":0,"32379":0,"32380":1,"32381":1,"32382":0,"32383":0,"32384":0,"32385":1,"32386":0,"32387":0,"32388":0,"32389":0,"32390":1,"32391":0,"32392":0,"32393":1,"32394":0,"32395":0,"32396":0,"32397":1,"32398":0,"32399":1,"32400":0,"32401":0,"32402":1,"32403":0,"32404":1,"32405":0,"32406":0,"32407":0,"32408":1,"32409":0,"32410":0,"32411":0,"32412":0,"32413":0,"32414":0,"32415":0,"32416":0,"32417":0,"32418":0,"32419":1,"32420":0,"32421":0,"32422":0,"32423":0,"32424":1,"32425":0,"32426":0,"32427":0,"32428":1,"32429":0,"32430":0,"32431":0,"32432":0,"32433":0,"32434":0,"32435":0,"32436":0,"32437":0,"32438":0,"32439":0,"32440":0,"32441":0,"32442":0,"32443":0,"32444":0,"32445":1,"32446":1,"32447":1,"32448":0,"32449":1,"32450":0,"32451":0,"32452":0,"32453":0,"32454":0,"32455":0,"32456":1,"32457":1,"32458":0,"32459":0,"32460":0,"32461":0,"32462":1,"32463":0,"32464":0,"32465":1,"32466":0,"32467":0,"32468":0,"32469":0,"32470":1,"32471":0,"32472":1,"32473":1,"32474":0,"32475":0,"32476":0,"32477":1,"32478":1,"32479":0,"32480":0,"32481":1,"32482":1,"32483":1,"32484":0,"32485":0,"32486":0,"32487":0,"32488":0,"32489":0,"32490":0,"32491":1,"32492":0,"32493":0,"32494":1,"32495":0,"32496":0,"32497":1,"32498":0,"32499":0,"32500":0,"32501":1,"32502":0,"32503":0,"32504":0,"32505":0,"32506":0,"32507":0,"32508":1,"32509":0,"32510":1,"32511":1,"32512":1,"32513":0,"32514":1,"32515":1,"32516":0,"32517":1,"32518":0,"32519":0,"32520":1,"32521":0,"32522":0,"32523":1,"32524":1,"32525":1,"32526":0,"32527":0,"32528":0,"32529":0,"32530":0,"32531":0,"32532":0,"32533":0,"32534":0,"32535":1,"32536":0,"32537":1,"32538":0,"32539":0,"32540":0,"32541":0,"32542":0,"32543":0,"32544":1,"32545":1,"32546":0,"32547":0,"32548":0,"32549":0,"32550":0,"32551":0,"32552":1,"32553":0,"32554":0,"32555":0,"32556":1,"32557":1,"32558":0,"32559":0,"32560":0,"32561":1,"32562":0,"32563":1,"32564":0,"32565":0,"32566":0,"32567":0,"32568":1,"32569":1,"32570":1,"32571":0,"32572":0,"32573":1,"32574":0,"32575":1,"32576":0,"32577":0,"32578":0,"32579":0,"32580":0,"32581":0,"32582":0,"32583":0,"32584":0,"32585":1,"32586":0,"32587":0,"32588":0,"32589":0,"32590":0,"32591":1,"32592":0,"32593":0,"32594":0,"32595":0,"32596":0,"32597":1,"32598":0,"32599":0,"32600":0,"32601":0,"32602":0,"32603":1,"32604":1,"32605":1,"32606":0,"32607":0,"32608":0,"32609":0,"32610":1,"32611":0,"32612":0,"32613":1,"32614":0,"32615":1,"32616":1,"32617":0,"32618":1,"32619":0,"32620":1,"32621":0,"32622":0,"32623":0,"32624":0,"32625":0,"32626":1,"32627":0,"32628":0,"32629":0,"32630":0,"32631":0,"32632":1,"32633":1,"32634":1,"32635":0,"32636":0,"32637":0,"32638":0,"32639":0,"32640":0,"32641":1,"32642":0,"32643":0,"32644":0,"32645":0,"32646":1,"32647":0,"32648":0,"32649":0,"32650":0,"32651":0,"32652":1,"32653":1,"32654":0,"32655":0,"32656":0,"32657":0,"32658":1,"32659":0,"32660":0,"32661":1,"32662":0,"32663":0,"32664":0,"32665":1,"32666":0,"32667":0,"32668":0,"32669":0,"32670":1,"32671":0,"32672":0,"32673":0,"32674":0,"32675":1,"32676":0,"32677":0,"32678":0,"32679":0,"32680":1,"32681":0,"32682":0,"32683":1,"32684":0,"32685":1,"32686":0,"32687":0,"32688":1,"32689":0,"32690":0,"32691":0,"32692":1,"32693":1,"32694":0,"32695":0,"32696":1,"32697":1,"32698":0,"32699":0,"32700":0,"32701":0,"32702":0,"32703":0,"32704":0,"32705":1,"32706":1,"32707":0,"32708":0,"32709":0,"32710":0,"32711":0,"32712":0,"32713":0,"32714":0,"32715":0,"32716":1,"32717":1,"32718":0,"32719":0,"32720":0,"32721":0,"32722":0,"32723":0,"32724":1,"32725":0,"32726":0,"32727":0,"32728":0,"32729":1,"32730":0,"32731":0,"32732":0,"32733":0,"32734":0,"32735":0,"32736":1,"32737":0,"32738":0,"32739":1,"32740":0,"32741":0,"32742":0,"32743":1,"32744":0,"32745":0,"32746":0,"32747":0,"32748":0,"32749":0,"32750":0,"32751":0,"32752":0,"32753":0,"32754":0,"32755":0,"32756":0,"32757":0,"32758":0,"32759":0,"32760":0,"32761":0,"32762":1,"32763":0,"32764":1,"32765":0,"32766":0,"32767":0,"32768":0,"32769":0,"32770":0,"32771":0,"32772":0,"32773":0,"32774":0,"32775":0,"32776":0,"32777":0,"32778":1,"32779":1,"32780":1,"32781":0,"32782":0,"32783":0,"32784":0,"32785":0,"32786":0,"32787":1,"32788":0,"32789":0,"32790":0,"32791":0,"32792":0,"32793":0,"32794":1,"32795":0,"32796":0,"32797":1,"32798":0,"32799":0,"32800":0,"32801":1,"32802":0,"32803":0,"32804":0,"32805":0,"32806":1,"32807":1,"32808":0,"32809":1,"32810":0,"32811":0,"32812":0,"32813":1,"32814":0,"32815":0,"32816":0,"32817":1,"32818":1,"32819":0,"32820":1,"32821":0,"32822":0,"32823":0,"32824":0,"32825":0,"32826":1,"32827":0,"32828":0,"32829":1,"32830":1,"32831":0,"32832":1,"32833":0,"32834":0,"32835":0,"32836":0,"32837":0,"32838":0,"32839":0,"32840":1,"32841":0,"32842":1,"32843":1,"32844":0,"32845":0,"32846":0,"32847":0,"32848":0,"32849":1,"32850":0,"32851":0,"32852":0,"32853":0,"32854":0,"32855":0,"32856":0,"32857":0,"32858":0,"32859":0,"32860":0,"32861":0,"32862":1,"32863":0,"32864":1,"32865":0,"32866":0,"32867":0,"32868":0,"32869":0,"32870":0,"32871":0,"32872":0,"32873":0,"32874":0,"32875":1,"32876":0,"32877":0,"32878":0,"32879":0,"32880":0,"32881":0,"32882":0,"32883":0,"32884":0,"32885":0,"32886":0,"32887":0,"32888":0,"32889":0,"32890":0,"32891":0,"32892":0,"32893":1,"32894":1,"32895":0,"32896":0,"32897":0,"32898":0,"32899":0,"32900":0,"32901":0,"32902":0,"32903":0,"32904":0,"32905":0,"32906":0,"32907":0,"32908":0,"32909":0,"32910":0,"32911":0,"32912":0,"32913":0,"32914":1,"32915":1,"32916":1,"32917":0,"32918":1,"32919":1,"32920":0,"32921":0,"32922":0,"32923":0,"32924":0,"32925":0,"32926":0,"32927":1,"32928":0,"32929":0,"32930":0,"32931":0,"32932":0,"32933":0,"32934":0,"32935":0,"32936":1,"32937":1,"32938":0,"32939":1,"32940":0,"32941":1,"32942":1,"32943":0,"32944":1,"32945":0,"32946":1,"32947":0,"32948":1,"32949":0,"32950":0,"32951":0,"32952":0,"32953":1,"32954":1,"32955":0,"32956":0,"32957":0,"32958":0,"32959":0,"32960":0,"32961":0,"32962":0,"32963":1,"32964":0,"32965":0,"32966":0,"32967":0,"32968":0,"32969":0,"32970":1,"32971":1,"32972":1,"32973":0,"32974":0,"32975":1,"32976":0,"32977":0,"32978":0,"32979":0,"32980":0,"32981":1,"32982":0,"32983":0,"32984":0,"32985":1,"32986":0,"32987":0,"32988":0,"32989":0,"32990":1,"32991":1,"32992":0,"32993":0,"32994":0,"32995":1,"32996":0,"32997":1,"32998":0,"32999":0,"33000":0,"33001":0,"33002":0,"33003":1,"33004":0,"33005":1,"33006":0,"33007":0,"33008":0,"33009":0,"33010":0,"33011":0,"33012":0,"33013":0,"33014":1,"33015":0,"33016":0,"33017":1,"33018":0,"33019":1,"33020":0,"33021":0,"33022":0,"33023":0,"33024":0,"33025":0,"33026":0,"33027":0,"33028":0,"33029":0,"33030":0,"33031":0,"33032":0,"33033":0,"33034":1,"33035":0,"33036":0,"33037":0,"33038":0,"33039":0,"33040":0,"33041":0,"33042":0,"33043":0,"33044":0,"33045":1,"33046":0,"33047":1,"33048":1,"33049":1,"33050":0,"33051":0,"33052":0,"33053":0,"33054":1,"33055":0,"33056":0,"33057":0,"33058":0,"33059":0,"33060":0,"33061":0,"33062":0,"33063":1,"33064":0,"33065":0,"33066":1,"33067":1,"33068":0,"33069":0,"33070":1,"33071":0,"33072":0,"33073":1,"33074":0,"33075":1,"33076":0,"33077":0,"33078":0,"33079":0,"33080":0,"33081":0,"33082":1,"33083":0,"33084":1,"33085":0,"33086":1,"33087":0,"33088":0,"33089":0,"33090":0,"33091":1,"33092":0,"33093":0,"33094":1,"33095":0,"33096":0,"33097":1,"33098":0,"33099":0,"33100":0,"33101":0,"33102":0,"33103":0,"33104":1,"33105":0,"33106":0,"33107":1,"33108":0,"33109":0,"33110":1,"33111":0,"33112":0,"33113":0,"33114":1,"33115":0,"33116":0,"33117":0,"33118":0,"33119":1,"33120":1,"33121":0,"33122":0,"33123":0,"33124":1,"33125":1,"33126":1,"33127":0,"33128":0,"33129":0,"33130":1,"33131":1,"33132":0,"33133":0,"33134":0,"33135":0,"33136":0,"33137":0,"33138":0,"33139":0,"33140":1,"33141":0,"33142":0,"33143":1,"33144":0,"33145":0,"33146":0,"33147":0,"33148":0,"33149":0,"33150":1,"33151":0,"33152":0,"33153":0,"33154":0,"33155":1,"33156":0,"33157":1,"33158":0,"33159":0,"33160":0,"33161":0,"33162":0,"33163":0,"33164":0,"33165":0,"33166":0,"33167":0,"33168":0,"33169":0,"33170":0,"33171":0,"33172":1,"33173":0,"33174":1,"33175":1,"33176":0,"33177":0,"33178":0,"33179":0,"33180":0,"33181":0,"33182":0,"33183":0,"33184":0,"33185":0,"33186":0,"33187":0,"33188":0,"33189":0,"33190":0,"33191":0,"33192":1,"33193":1,"33194":1,"33195":0,"33196":0,"33197":0,"33198":1,"33199":0,"33200":0,"33201":0,"33202":0,"33203":1,"33204":0,"33205":0,"33206":1,"33207":0,"33208":0,"33209":0,"33210":1,"33211":0,"33212":0,"33213":0,"33214":0,"33215":0,"33216":0,"33217":0,"33218":0,"33219":1,"33220":0,"33221":0,"33222":1,"33223":0,"33224":0,"33225":0,"33226":0,"33227":0,"33228":0,"33229":1,"33230":0,"33231":0,"33232":0,"33233":0,"33234":0,"33235":0,"33236":0,"33237":1,"33238":1,"33239":0,"33240":1,"33241":0,"33242":0,"33243":1,"33244":0,"33245":1,"33246":0,"33247":0,"33248":0,"33249":0,"33250":0,"33251":0,"33252":0,"33253":1,"33254":0,"33255":0,"33256":0,"33257":0,"33258":0,"33259":0,"33260":0,"33261":0,"33262":1,"33263":1,"33264":1,"33265":1,"33266":1,"33267":0,"33268":0,"33269":0,"33270":0,"33271":0,"33272":0,"33273":0,"33274":0,"33275":0,"33276":0,"33277":1,"33278":0,"33279":1,"33280":0,"33281":0,"33282":0,"33283":0,"33284":0,"33285":1,"33286":0,"33287":0,"33288":1,"33289":0,"33290":0,"33291":0,"33292":1,"33293":0,"33294":0,"33295":0,"33296":1,"33297":0,"33298":0,"33299":1,"33300":1,"33301":0,"33302":0,"33303":0,"33304":0,"33305":0,"33306":0,"33307":0,"33308":0,"33309":1,"33310":1,"33311":0,"33312":0,"33313":0,"33314":0,"33315":0,"33316":0,"33317":0,"33318":0,"33319":0,"33320":0,"33321":0,"33322":0,"33323":0,"33324":0,"33325":1,"33326":0,"33327":0,"33328":0,"33329":0,"33330":1,"33331":0,"33332":0,"33333":1,"33334":1,"33335":0,"33336":0,"33337":0,"33338":0,"33339":0,"33340":0,"33341":0,"33342":0,"33343":0,"33344":1,"33345":0,"33346":0,"33347":0,"33348":0,"33349":0,"33350":0,"33351":0,"33352":1,"33353":0,"33354":0,"33355":1,"33356":0,"33357":0,"33358":0,"33359":0,"33360":1,"33361":0,"33362":0,"33363":0,"33364":1,"33365":0,"33366":0,"33367":0,"33368":1,"33369":0,"33370":0,"33371":0,"33372":0,"33373":0,"33374":0,"33375":0,"33376":0,"33377":0,"33378":0,"33379":1,"33380":0,"33381":1,"33382":0,"33383":1,"33384":0,"33385":0,"33386":0,"33387":1,"33388":0,"33389":0,"33390":0,"33391":0,"33392":0,"33393":0,"33394":0,"33395":0,"33396":0,"33397":1,"33398":0,"33399":1,"33400":0,"33401":1,"33402":0,"33403":0,"33404":0,"33405":0,"33406":0,"33407":0,"33408":0,"33409":0,"33410":0,"33411":0,"33412":1,"33413":0,"33414":0,"33415":0,"33416":0,"33417":1,"33418":1,"33419":0,"33420":0,"33421":0,"33422":1,"33423":0,"33424":0,"33425":1,"33426":0,"33427":0,"33428":0,"33429":0,"33430":0,"33431":0,"33432":0,"33433":1,"33434":0,"33435":0,"33436":0,"33437":0,"33438":0,"33439":0,"33440":0,"33441":0,"33442":0,"33443":0,"33444":0,"33445":0,"33446":0,"33447":0,"33448":1,"33449":0,"33450":0,"33451":0,"33452":1,"33453":0,"33454":0,"33455":0,"33456":0,"33457":0,"33458":0,"33459":0,"33460":0,"33461":0,"33462":0,"33463":0,"33464":0,"33465":1,"33466":0,"33467":1,"33468":1,"33469":0,"33470":0,"33471":1,"33472":1,"33473":0,"33474":0,"33475":1,"33476":0,"33477":1,"33478":0,"33479":0,"33480":1,"33481":0,"33482":0,"33483":1,"33484":0,"33485":0,"33486":0,"33487":0,"33488":0,"33489":0,"33490":0,"33491":0,"33492":0,"33493":1,"33494":1,"33495":1,"33496":0,"33497":0,"33498":0,"33499":0,"33500":0,"33501":0,"33502":0,"33503":0,"33504":0,"33505":1,"33506":0,"33507":0,"33508":0,"33509":0,"33510":1,"33511":1,"33512":0,"33513":0,"33514":0,"33515":1,"33516":0,"33517":1,"33518":1,"33519":0,"33520":0,"33521":0,"33522":0,"33523":0,"33524":0,"33525":0,"33526":1,"33527":1,"33528":1,"33529":0,"33530":0,"33531":0,"33532":1,"33533":1,"33534":0,"33535":0,"33536":0,"33537":1,"33538":0,"33539":0,"33540":1,"33541":0,"33542":0,"33543":0,"33544":0,"33545":0,"33546":0,"33547":0,"33548":0,"33549":0,"33550":0,"33551":1,"33552":0,"33553":1,"33554":0,"33555":0,"33556":1,"33557":1,"33558":0,"33559":0,"33560":0,"33561":0,"33562":0,"33563":0,"33564":0,"33565":0,"33566":0,"33567":0,"33568":0,"33569":0,"33570":0,"33571":0,"33572":1,"33573":1,"33574":0,"33575":0,"33576":0,"33577":0,"33578":0,"33579":0,"33580":1,"33581":1,"33582":0,"33583":0,"33584":0,"33585":0,"33586":0,"33587":1,"33588":0,"33589":1,"33590":0,"33591":1,"33592":0,"33593":0,"33594":0,"33595":1,"33596":0,"33597":0,"33598":0,"33599":0,"33600":0,"33601":0,"33602":0,"33603":1,"33604":0,"33605":1,"33606":1,"33607":0,"33608":0,"33609":1,"33610":1,"33611":0,"33612":1,"33613":0,"33614":0,"33615":1,"33616":1,"33617":0,"33618":1,"33619":0,"33620":0,"33621":0,"33622":0,"33623":0,"33624":0,"33625":0,"33626":0,"33627":0,"33628":0,"33629":0,"33630":1,"33631":0,"33632":0,"33633":1,"33634":1,"33635":0,"33636":0,"33637":0,"33638":0,"33639":1,"33640":0,"33641":1,"33642":0,"33643":1,"33644":1,"33645":1,"33646":0,"33647":1,"33648":0,"33649":0,"33650":0,"33651":0,"33652":0,"33653":0,"33654":0,"33655":1,"33656":0,"33657":1,"33658":0,"33659":0,"33660":0,"33661":0,"33662":0,"33663":1,"33664":0,"33665":1,"33666":0,"33667":0,"33668":1,"33669":1,"33670":1,"33671":0,"33672":1,"33673":1,"33674":0,"33675":0,"33676":0,"33677":0,"33678":0,"33679":0,"33680":0,"33681":0,"33682":0,"33683":0,"33684":0,"33685":0,"33686":0,"33687":1,"33688":1,"33689":1,"33690":1,"33691":0,"33692":1,"33693":1,"33694":0,"33695":0,"33696":0,"33697":0,"33698":0,"33699":0,"33700":0,"33701":0,"33702":0,"33703":1,"33704":0,"33705":1,"33706":0,"33707":0,"33708":1,"33709":0,"33710":0,"33711":0,"33712":1,"33713":0,"33714":0,"33715":0,"33716":0,"33717":0,"33718":1,"33719":0,"33720":0,"33721":1,"33722":0,"33723":0,"33724":0,"33725":0,"33726":0,"33727":0,"33728":0,"33729":0,"33730":0,"33731":0,"33732":0,"33733":1,"33734":0,"33735":0,"33736":0,"33737":0,"33738":0,"33739":0,"33740":0,"33741":1,"33742":0,"33743":0,"33744":0,"33745":0,"33746":0,"33747":0,"33748":0,"33749":1,"33750":0,"33751":0,"33752":0,"33753":0,"33754":0,"33755":0,"33756":0,"33757":0,"33758":0,"33759":0,"33760":0,"33761":0,"33762":0,"33763":0,"33764":0,"33765":1,"33766":0,"33767":0,"33768":0,"33769":1,"33770":1,"33771":1,"33772":1,"33773":0,"33774":0,"33775":0,"33776":0,"33777":0,"33778":0,"33779":0,"33780":0,"33781":0,"33782":1,"33783":0,"33784":0,"33785":0,"33786":1,"33787":0,"33788":0,"33789":0,"33790":1,"33791":0,"33792":0,"33793":0,"33794":0,"33795":0,"33796":1,"33797":0,"33798":0,"33799":0,"33800":1,"33801":0,"33802":0,"33803":1,"33804":1,"33805":0,"33806":0,"33807":0,"33808":0,"33809":1,"33810":0,"33811":0,"33812":0,"33813":0,"33814":0,"33815":1,"33816":1,"33817":0,"33818":0,"33819":1,"33820":1,"33821":0,"33822":0,"33823":0,"33824":0,"33825":0,"33826":1,"33827":0,"33828":1,"33829":1,"33830":0,"33831":0,"33832":0,"33833":1,"33834":0,"33835":1,"33836":0,"33837":0,"33838":0,"33839":0,"33840":0,"33841":0,"33842":0,"33843":0,"33844":0,"33845":0,"33846":0,"33847":0,"33848":0,"33849":0,"33850":0,"33851":0,"33852":0,"33853":0,"33854":0,"33855":1,"33856":0,"33857":1,"33858":0,"33859":0,"33860":0,"33861":0,"33862":1,"33863":0,"33864":0,"33865":0,"33866":0,"33867":0,"33868":0,"33869":0,"33870":0,"33871":0,"33872":0,"33873":0,"33874":0,"33875":0,"33876":0,"33877":1,"33878":0,"33879":0,"33880":0,"33881":1,"33882":1,"33883":0,"33884":0,"33885":0,"33886":0,"33887":0,"33888":0,"33889":0,"33890":0,"33891":0,"33892":0,"33893":1,"33894":0,"33895":1,"33896":1,"33897":0,"33898":1,"33899":0,"33900":0,"33901":0,"33902":0,"33903":0,"33904":0,"33905":0,"33906":0,"33907":1,"33908":1,"33909":1,"33910":0,"33911":1,"33912":0,"33913":0,"33914":0,"33915":0,"33916":0,"33917":1,"33918":0,"33919":1,"33920":1,"33921":0,"33922":0,"33923":0,"33924":0,"33925":0,"33926":0,"33927":1,"33928":1,"33929":1,"33930":1,"33931":0,"33932":0,"33933":1,"33934":0,"33935":0,"33936":0,"33937":0,"33938":0,"33939":0,"33940":1,"33941":0,"33942":0,"33943":0,"33944":1,"33945":0,"33946":0,"33947":1,"33948":0,"33949":1,"33950":0,"33951":1,"33952":0,"33953":1,"33954":0,"33955":0,"33956":1,"33957":0,"33958":0,"33959":0,"33960":0,"33961":0,"33962":0,"33963":0,"33964":0,"33965":0,"33966":0,"33967":0,"33968":1,"33969":0,"33970":0,"33971":0,"33972":0,"33973":1,"33974":0,"33975":0,"33976":0,"33977":0,"33978":0,"33979":0,"33980":0,"33981":0,"33982":0,"33983":0,"33984":0,"33985":0,"33986":0,"33987":0,"33988":0,"33989":0,"33990":0,"33991":0,"33992":1,"33993":1,"33994":1,"33995":0,"33996":1,"33997":0,"33998":0,"33999":0,"34000":0,"34001":0,"34002":0,"34003":0,"34004":0,"34005":0,"34006":0,"34007":0,"34008":0,"34009":1,"34010":1,"34011":0,"34012":0,"34013":0,"34014":0,"34015":1,"34016":1,"34017":0,"34018":0,"34019":0,"34020":0,"34021":0,"34022":0,"34023":0,"34024":0,"34025":0,"34026":0,"34027":0,"34028":0,"34029":0,"34030":0,"34031":0,"34032":0,"34033":0,"34034":0,"34035":0,"34036":0,"34037":0,"34038":0,"34039":1,"34040":0,"34041":0,"34042":0,"34043":0,"34044":0,"34045":0,"34046":1,"34047":0,"34048":0,"34049":0,"34050":1,"34051":0,"34052":0,"34053":0,"34054":1,"34055":0,"34056":0,"34057":1,"34058":1,"34059":0,"34060":0,"34061":0,"34062":0,"34063":0,"34064":0,"34065":0,"34066":1,"34067":0,"34068":0,"34069":1,"34070":0,"34071":1,"34072":0,"34073":0,"34074":0,"34075":1,"34076":1,"34077":0,"34078":1,"34079":0,"34080":0,"34081":0,"34082":0,"34083":0,"34084":1,"34085":0,"34086":1,"34087":0,"34088":1,"34089":0,"34090":0,"34091":0,"34092":0,"34093":0,"34094":0,"34095":0,"34096":0,"34097":0,"34098":0,"34099":0,"34100":0,"34101":0,"34102":1,"34103":1,"34104":0,"34105":0,"34106":0,"34107":0,"34108":1,"34109":0,"34110":0,"34111":0,"34112":1,"34113":0,"34114":0,"34115":0,"34116":0,"34117":0,"34118":1,"34119":1,"34120":0,"34121":1,"34122":0,"34123":1,"34124":1,"34125":0,"34126":0,"34127":1,"34128":0,"34129":0,"34130":0,"34131":0,"34132":1,"34133":0,"34134":0,"34135":0,"34136":0,"34137":0,"34138":0,"34139":1,"34140":0,"34141":0,"34142":0,"34143":1,"34144":0,"34145":0,"34146":0,"34147":0,"34148":0,"34149":0,"34150":0,"34151":0,"34152":1,"34153":0,"34154":0,"34155":0,"34156":0,"34157":0,"34158":0,"34159":1,"34160":1,"34161":0,"34162":0,"34163":1,"34164":0,"34165":0,"34166":0,"34167":0,"34168":0,"34169":1,"34170":1,"34171":0,"34172":0,"34173":0,"34174":0,"34175":0,"34176":0,"34177":0,"34178":0,"34179":0,"34180":1,"34181":0,"34182":0,"34183":0,"34184":0,"34185":0,"34186":0,"34187":0,"34188":0,"34189":0,"34190":0,"34191":1,"34192":0,"34193":0,"34194":0,"34195":0,"34196":0,"34197":0,"34198":1,"34199":1,"34200":1,"34201":0,"34202":1,"34203":1,"34204":1,"34205":0,"34206":0,"34207":0,"34208":0,"34209":0,"34210":0,"34211":0,"34212":0,"34213":1,"34214":0,"34215":0,"34216":0,"34217":0,"34218":1,"34219":0,"34220":0,"34221":0,"34222":0,"34223":1,"34224":0,"34225":0,"34226":0,"34227":0,"34228":0,"34229":1,"34230":0,"34231":0,"34232":0,"34233":0,"34234":0,"34235":0,"34236":0,"34237":0,"34238":0,"34239":0,"34240":0,"34241":0,"34242":0,"34243":1,"34244":0,"34245":0,"34246":0,"34247":0,"34248":0,"34249":0,"34250":1,"34251":0,"34252":0,"34253":0,"34254":0,"34255":0,"34256":0,"34257":0,"34258":1,"34259":0,"34260":0,"34261":0,"34262":0,"34263":0,"34264":1,"34265":0,"34266":0,"34267":0,"34268":1,"34269":0,"34270":1,"34271":0,"34272":1,"34273":1,"34274":0,"34275":0,"34276":0,"34277":0,"34278":1,"34279":0,"34280":0,"34281":1,"34282":0,"34283":0,"34284":1,"34285":0,"34286":0,"34287":0,"34288":0,"34289":0,"34290":0,"34291":1,"34292":0,"34293":0,"34294":1,"34295":0,"34296":0,"34297":0,"34298":0,"34299":0,"34300":0,"34301":0,"34302":1,"34303":0,"34304":0,"34305":0,"34306":0,"34307":0,"34308":1,"34309":0,"34310":0,"34311":1,"34312":0,"34313":1,"34314":0,"34315":0,"34316":0,"34317":1,"34318":0,"34319":0,"34320":0,"34321":0,"34322":0,"34323":1,"34324":0,"34325":1,"34326":0,"34327":0,"34328":0,"34329":0,"34330":0,"34331":0,"34332":0,"34333":1,"34334":0,"34335":0,"34336":1,"34337":0,"34338":0,"34339":0,"34340":0,"34341":0,"34342":1,"34343":1,"34344":0,"34345":1,"34346":0,"34347":0,"34348":0,"34349":0,"34350":0,"34351":0,"34352":0,"34353":1,"34354":0,"34355":0,"34356":0,"34357":0,"34358":0,"34359":0,"34360":0,"34361":0,"34362":0,"34363":0,"34364":0,"34365":0,"34366":0,"34367":0,"34368":1,"34369":0,"34370":0,"34371":0,"34372":0,"34373":0,"34374":0,"34375":1,"34376":0,"34377":1,"34378":0,"34379":0,"34380":0,"34381":1,"34382":0,"34383":0,"34384":0,"34385":0,"34386":0,"34387":0,"34388":0,"34389":0,"34390":0,"34391":0,"34392":0,"34393":0,"34394":0,"34395":0,"34396":0,"34397":0,"34398":1,"34399":1,"34400":0,"34401":0,"34402":0,"34403":0,"34404":0,"34405":0,"34406":0,"34407":0,"34408":0,"34409":0,"34410":0,"34411":0,"34412":1,"34413":0,"34414":1,"34415":0,"34416":0,"34417":0,"34418":1,"34419":0,"34420":0,"34421":1,"34422":1,"34423":0,"34424":0,"34425":0,"34426":0,"34427":0,"34428":1,"34429":0,"34430":0,"34431":0,"34432":0,"34433":1,"34434":1,"34435":0,"34436":0,"34437":0,"34438":0,"34439":0,"34440":0,"34441":0,"34442":1,"34443":0,"34444":0,"34445":1,"34446":1,"34447":1,"34448":0,"34449":1,"34450":0,"34451":0,"34452":0,"34453":1,"34454":1,"34455":1,"34456":0,"34457":0,"34458":0,"34459":0,"34460":1,"34461":0,"34462":0,"34463":0,"34464":0,"34465":0,"34466":0,"34467":1,"34468":1,"34469":1,"34470":0,"34471":0,"34472":0,"34473":1,"34474":0,"34475":0,"34476":0,"34477":0,"34478":0,"34479":1,"34480":1,"34481":1,"34482":0,"34483":0,"34484":1,"34485":0,"34486":0,"34487":0,"34488":0,"34489":0,"34490":0,"34491":0,"34492":1,"34493":0,"34494":0,"34495":0,"34496":1,"34497":0,"34498":0,"34499":1,"34500":1,"34501":0,"34502":0,"34503":0,"34504":0,"34505":0,"34506":0,"34507":1,"34508":0,"34509":0,"34510":1,"34511":0,"34512":0,"34513":0,"34514":1,"34515":1,"34516":1,"34517":0,"34518":0,"34519":0,"34520":0,"34521":0,"34522":1,"34523":1,"34524":1,"34525":0,"34526":0,"34527":0,"34528":0,"34529":1,"34530":0,"34531":0,"34532":0,"34533":0,"34534":1,"34535":0,"34536":0,"34537":0,"34538":0,"34539":1,"34540":1,"34541":0,"34542":1,"34543":0,"34544":1,"34545":0,"34546":0,"34547":0,"34548":0,"34549":0,"34550":0,"34551":0,"34552":0,"34553":0,"34554":0,"34555":0,"34556":1,"34557":0,"34558":0,"34559":0,"34560":0,"34561":0,"34562":0,"34563":0,"34564":0,"34565":1,"34566":1,"34567":0,"34568":0,"34569":0,"34570":1,"34571":0,"34572":0,"34573":0,"34574":0,"34575":1,"34576":0,"34577":0,"34578":0,"34579":0,"34580":0,"34581":0,"34582":1,"34583":0,"34584":1,"34585":0,"34586":1,"34587":0,"34588":1,"34589":0,"34590":0,"34591":1,"34592":0,"34593":0,"34594":0,"34595":0,"34596":0,"34597":0,"34598":0,"34599":0,"34600":0,"34601":0,"34602":1,"34603":0,"34604":1,"34605":0,"34606":0,"34607":0,"34608":1,"34609":0,"34610":1,"34611":0,"34612":0,"34613":0,"34614":0,"34615":0,"34616":0,"34617":0,"34618":0,"34619":0,"34620":0,"34621":0,"34622":0,"34623":0,"34624":1,"34625":0,"34626":0,"34627":0,"34628":0,"34629":0,"34630":1,"34631":0,"34632":1,"34633":1,"34634":0,"34635":0,"34636":0,"34637":0,"34638":1,"34639":0,"34640":0,"34641":1,"34642":0,"34643":0,"34644":0,"34645":0,"34646":0,"34647":0,"34648":0,"34649":0,"34650":1,"34651":1,"34652":0,"34653":1,"34654":0,"34655":0,"34656":0,"34657":0,"34658":0,"34659":0,"34660":0,"34661":0,"34662":0,"34663":0,"34664":0,"34665":1,"34666":0,"34667":1,"34668":0,"34669":0,"34670":0,"34671":0,"34672":0,"34673":0,"34674":0,"34675":0,"34676":1,"34677":0,"34678":0,"34679":0,"34680":0,"34681":1,"34682":0,"34683":0,"34684":0,"34685":0,"34686":0,"34687":0,"34688":0,"34689":1,"34690":1,"34691":0,"34692":0,"34693":1,"34694":0,"34695":0,"34696":0,"34697":0,"34698":1,"34699":1,"34700":0,"34701":0,"34702":1,"34703":1,"34704":1,"34705":0,"34706":0,"34707":0,"34708":1,"34709":0,"34710":0,"34711":0,"34712":0,"34713":0,"34714":1,"34715":0,"34716":1,"34717":0,"34718":0,"34719":0,"34720":0,"34721":0,"34722":1,"34723":0,"34724":0,"34725":0,"34726":1,"34727":0,"34728":0,"34729":1,"34730":1,"34731":0,"34732":1,"34733":0,"34734":0,"34735":0,"34736":0,"34737":0,"34738":0,"34739":0,"34740":0,"34741":0,"34742":0,"34743":0,"34744":0,"34745":0,"34746":0,"34747":0,"34748":0,"34749":0,"34750":0,"34751":0,"34752":0,"34753":0,"34754":0,"34755":1,"34756":0,"34757":0,"34758":0,"34759":0,"34760":0,"34761":1,"34762":0,"34763":1,"34764":1,"34765":0,"34766":1,"34767":0,"34768":0,"34769":0,"34770":1,"34771":0,"34772":0,"34773":0,"34774":0,"34775":0,"34776":0,"34777":0,"34778":0,"34779":0,"34780":1,"34781":0,"34782":0,"34783":0,"34784":0,"34785":0,"34786":0,"34787":1,"34788":0,"34789":0,"34790":1,"34791":0,"34792":0,"34793":0,"34794":0,"34795":1,"34796":0,"34797":1,"34798":1,"34799":0,"34800":1,"34801":0,"34802":0,"34803":0,"34804":0,"34805":0,"34806":1,"34807":0,"34808":1,"34809":1,"34810":1,"34811":0,"34812":0,"34813":1,"34814":0,"34815":0,"34816":0,"34817":0,"34818":1,"34819":1,"34820":0,"34821":1,"34822":0,"34823":1,"34824":0,"34825":0,"34826":0,"34827":0,"34828":0,"34829":0,"34830":0,"34831":0,"34832":1,"34833":1,"34834":0,"34835":0,"34836":1,"34837":0,"34838":0,"34839":0,"34840":0,"34841":0,"34842":0,"34843":0,"34844":0,"34845":1,"34846":0,"34847":0,"34848":0,"34849":0,"34850":0,"34851":1,"34852":0,"34853":0,"34854":0,"34855":0,"34856":0,"34857":0,"34858":0,"34859":0,"34860":0,"34861":0,"34862":0,"34863":0,"34864":0,"34865":1,"34866":1,"34867":0,"34868":0,"34869":0,"34870":0,"34871":0,"34872":0,"34873":1,"34874":0,"34875":0,"34876":0,"34877":0,"34878":1,"34879":0,"34880":1,"34881":0,"34882":0,"34883":1,"34884":0,"34885":1,"34886":0,"34887":0,"34888":0,"34889":0,"34890":0,"34891":0,"34892":0,"34893":1,"34894":0,"34895":1,"34896":0,"34897":0,"34898":0,"34899":0,"34900":0,"34901":1,"34902":0,"34903":1,"34904":1,"34905":1,"34906":0,"34907":0,"34908":0,"34909":0,"34910":0,"34911":0,"34912":1,"34913":0,"34914":1,"34915":0,"34916":0,"34917":0,"34918":0,"34919":1,"34920":0,"34921":0,"34922":1,"34923":0,"34924":0,"34925":0,"34926":0,"34927":0,"34928":0,"34929":1,"34930":0,"34931":1,"34932":1,"34933":0,"34934":0,"34935":1,"34936":0,"34937":0,"34938":0,"34939":0,"34940":0,"34941":0,"34942":0,"34943":0,"34944":0,"34945":0,"34946":0,"34947":1,"34948":0,"34949":1,"34950":0,"34951":0,"34952":0,"34953":0,"34954":1,"34955":0,"34956":1,"34957":1,"34958":1,"34959":0,"34960":0,"34961":0,"34962":0,"34963":1,"34964":0,"34965":0,"34966":0,"34967":0,"34968":0,"34969":0,"34970":1,"34971":0,"34972":1,"34973":1,"34974":1,"34975":1,"34976":1,"34977":0,"34978":1,"34979":1,"34980":1,"34981":1,"34982":1,"34983":0,"34984":0,"34985":1,"34986":0,"34987":0,"34988":0,"34989":0,"34990":0,"34991":0,"34992":0,"34993":1,"34994":1,"34995":0,"34996":0,"34997":0,"34998":0,"34999":1,"35000":0,"35001":0,"35002":1,"35003":0,"35004":0,"35005":1,"35006":1,"35007":0,"35008":0,"35009":0,"35010":0,"35011":0,"35012":0,"35013":0,"35014":0,"35015":1,"35016":0,"35017":0,"35018":0,"35019":0,"35020":0,"35021":0,"35022":0,"35023":1,"35024":1,"35025":0,"35026":0,"35027":1,"35028":0,"35029":0,"35030":0,"35031":0,"35032":0,"35033":0,"35034":0,"35035":1,"35036":1,"35037":0,"35038":0,"35039":0,"35040":0,"35041":0,"35042":0,"35043":0,"35044":0,"35045":0,"35046":1,"35047":0,"35048":1,"35049":0,"35050":0,"35051":1,"35052":1,"35053":0,"35054":0,"35055":0,"35056":0,"35057":0,"35058":1,"35059":1,"35060":1,"35061":1,"35062":0,"35063":0,"35064":0,"35065":0,"35066":0,"35067":0,"35068":1,"35069":0,"35070":0,"35071":0,"35072":1,"35073":1,"35074":0,"35075":1,"35076":0,"35077":1,"35078":0,"35079":0,"35080":0,"35081":1,"35082":0,"35083":0,"35084":0,"35085":0,"35086":0,"35087":0,"35088":0,"35089":0,"35090":0,"35091":0,"35092":1,"35093":1,"35094":1,"35095":0,"35096":0,"35097":1,"35098":0,"35099":0,"35100":1,"35101":0,"35102":0,"35103":0,"35104":1,"35105":0,"35106":0,"35107":0,"35108":1,"35109":1,"35110":1,"35111":0,"35112":0,"35113":0,"35114":1,"35115":1,"35116":0,"35117":1,"35118":0,"35119":0,"35120":0,"35121":0,"35122":0,"35123":0,"35124":0,"35125":0,"35126":0,"35127":0,"35128":0,"35129":0,"35130":0,"35131":0,"35132":0,"35133":0,"35134":1,"35135":1,"35136":0,"35137":0,"35138":0,"35139":0,"35140":0,"35141":0,"35142":0,"35143":1,"35144":1,"35145":1,"35146":0,"35147":1,"35148":0,"35149":1,"35150":0,"35151":0,"35152":0,"35153":1,"35154":0,"35155":0,"35156":0,"35157":0,"35158":0,"35159":0,"35160":1,"35161":0,"35162":0,"35163":0,"35164":0,"35165":0,"35166":0,"35167":0,"35168":0,"35169":0,"35170":0,"35171":0,"35172":1,"35173":0,"35174":1,"35175":1,"35176":0,"35177":1,"35178":0,"35179":1,"35180":1,"35181":0,"35182":0,"35183":0,"35184":0,"35185":0,"35186":0,"35187":1,"35188":0,"35189":0,"35190":0,"35191":0,"35192":0,"35193":0,"35194":0,"35195":0,"35196":1,"35197":1,"35198":0,"35199":0,"35200":0,"35201":0,"35202":1,"35203":0,"35204":0,"35205":0,"35206":0,"35207":1,"35208":0,"35209":0,"35210":0,"35211":0,"35212":1,"35213":0,"35214":0,"35215":1,"35216":0,"35217":0,"35218":1,"35219":0,"35220":1,"35221":1,"35222":0,"35223":0,"35224":0,"35225":1,"35226":0,"35227":0,"35228":0,"35229":1,"35230":1,"35231":1,"35232":0,"35233":0,"35234":0,"35235":0,"35236":1,"35237":0,"35238":0,"35239":0,"35240":0,"35241":0,"35242":0,"35243":1,"35244":0,"35245":0,"35246":0,"35247":0,"35248":0,"35249":1,"35250":1,"35251":0,"35252":1,"35253":1,"35254":0,"35255":0,"35256":0,"35257":1,"35258":0,"35259":0,"35260":0,"35261":0,"35262":1,"35263":0,"35264":0,"35265":0,"35266":1,"35267":0,"35268":0,"35269":0,"35270":0,"35271":0,"35272":0,"35273":0,"35274":1,"35275":0,"35276":0,"35277":0,"35278":1,"35279":0,"35280":0,"35281":1,"35282":0,"35283":0,"35284":0,"35285":0,"35286":0,"35287":0,"35288":1,"35289":0,"35290":0,"35291":0,"35292":0,"35293":0,"35294":0,"35295":0,"35296":0,"35297":0,"35298":0,"35299":0,"35300":1,"35301":0,"35302":0,"35303":0,"35304":0,"35305":0,"35306":0,"35307":0,"35308":1,"35309":1,"35310":0,"35311":0,"35312":0,"35313":0,"35314":1,"35315":1,"35316":0,"35317":1,"35318":0,"35319":0,"35320":0,"35321":0,"35322":0,"35323":0,"35324":0,"35325":0,"35326":1,"35327":1,"35328":0,"35329":0,"35330":0,"35331":0,"35332":1,"35333":0,"35334":0,"35335":0,"35336":1,"35337":0,"35338":0,"35339":1,"35340":0,"35341":0,"35342":0,"35343":0,"35344":1,"35345":0,"35346":1,"35347":0,"35348":1,"35349":1,"35350":0,"35351":0,"35352":0,"35353":0,"35354":0,"35355":0,"35356":0,"35357":1,"35358":1,"35359":0,"35360":0,"35361":0,"35362":0,"35363":0,"35364":0,"35365":1,"35366":1,"35367":0,"35368":1,"35369":0,"35370":0,"35371":0,"35372":0,"35373":0,"35374":0,"35375":0,"35376":0,"35377":0,"35378":0,"35379":0,"35380":0,"35381":0,"35382":0,"35383":0,"35384":0,"35385":0,"35386":0,"35387":0,"35388":0,"35389":1,"35390":0,"35391":0,"35392":1,"35393":0,"35394":0,"35395":0,"35396":1,"35397":1,"35398":0,"35399":0,"35400":0,"35401":0,"35402":1,"35403":1,"35404":0,"35405":0,"35406":1,"35407":1,"35408":1,"35409":0,"35410":1,"35411":0,"35412":0,"35413":0,"35414":0,"35415":0,"35416":0,"35417":1,"35418":0,"35419":1,"35420":0,"35421":1,"35422":0,"35423":0,"35424":0,"35425":0,"35426":0,"35427":1,"35428":0,"35429":0,"35430":1,"35431":1,"35432":1,"35433":0,"35434":1,"35435":0,"35436":0,"35437":0,"35438":0,"35439":1,"35440":0,"35441":1,"35442":1,"35443":0,"35444":0,"35445":0,"35446":0,"35447":0,"35448":0,"35449":0,"35450":0,"35451":0,"35452":0,"35453":0,"35454":0,"35455":0,"35456":1,"35457":0,"35458":0,"35459":1,"35460":0,"35461":0,"35462":0,"35463":0,"35464":0,"35465":0,"35466":0,"35467":0,"35468":0,"35469":0,"35470":0,"35471":0,"35472":0,"35473":0,"35474":1,"35475":0,"35476":0,"35477":0,"35478":0,"35479":0,"35480":0,"35481":0,"35482":0,"35483":1,"35484":1,"35485":0,"35486":0,"35487":1,"35488":0,"35489":0,"35490":0,"35491":0,"35492":1,"35493":0,"35494":0,"35495":0,"35496":1,"35497":0,"35498":1,"35499":1,"35500":1,"35501":0,"35502":0,"35503":0,"35504":0,"35505":0,"35506":0,"35507":0,"35508":1,"35509":0,"35510":1,"35511":0,"35512":0,"35513":0,"35514":0,"35515":0,"35516":0,"35517":0,"35518":0,"35519":0,"35520":0,"35521":0,"35522":0,"35523":0,"35524":0,"35525":0,"35526":0,"35527":1,"35528":1,"35529":1,"35530":0,"35531":0,"35532":0,"35533":1,"35534":1,"35535":0,"35536":0,"35537":0,"35538":0,"35539":0,"35540":1,"35541":1,"35542":0,"35543":0,"35544":0,"35545":1,"35546":0,"35547":0,"35548":0,"35549":0,"35550":1,"35551":0,"35552":0,"35553":0,"35554":1,"35555":0,"35556":0,"35557":1,"35558":1,"35559":1,"35560":0,"35561":0,"35562":1,"35563":1,"35564":0,"35565":0,"35566":0,"35567":0,"35568":0,"35569":0,"35570":1,"35571":0,"35572":0,"35573":0,"35574":0,"35575":0,"35576":0,"35577":1,"35578":1,"35579":1,"35580":0,"35581":0,"35582":0,"35583":0,"35584":1,"35585":0,"35586":1,"35587":0,"35588":0,"35589":0,"35590":0,"35591":1,"35592":1,"35593":0,"35594":0,"35595":0,"35596":0,"35597":0,"35598":0,"35599":1,"35600":1,"35601":0,"35602":1,"35603":1,"35604":0,"35605":0,"35606":0,"35607":0,"35608":0,"35609":0,"35610":0,"35611":0,"35612":0,"35613":0,"35614":0,"35615":0,"35616":0,"35617":1,"35618":0,"35619":0,"35620":0,"35621":0,"35622":0,"35623":0,"35624":0,"35625":0,"35626":0,"35627":0,"35628":0,"35629":0,"35630":0,"35631":0,"35632":0,"35633":1,"35634":0,"35635":1,"35636":0,"35637":1,"35638":0,"35639":0,"35640":0,"35641":0,"35642":0,"35643":0,"35644":0,"35645":0,"35646":0,"35647":1,"35648":0,"35649":0,"35650":1,"35651":0,"35652":0,"35653":0,"35654":0,"35655":1,"35656":0,"35657":1,"35658":0,"35659":0,"35660":1,"35661":0,"35662":0,"35663":0,"35664":0,"35665":1,"35666":0,"35667":0,"35668":0,"35669":1,"35670":0,"35671":0,"35672":0,"35673":1,"35674":0,"35675":0,"35676":1,"35677":0,"35678":0,"35679":0,"35680":0,"35681":1,"35682":0,"35683":0,"35684":0,"35685":0,"35686":0,"35687":0,"35688":1,"35689":0,"35690":0,"35691":0,"35692":0,"35693":0,"35694":1,"35695":1,"35696":0,"35697":0,"35698":0,"35699":1,"35700":0,"35701":0,"35702":0,"35703":1,"35704":0,"35705":0,"35706":1,"35707":0,"35708":0,"35709":1,"35710":1,"35711":0,"35712":0,"35713":1,"35714":0,"35715":1,"35716":0,"35717":0,"35718":0,"35719":0,"35720":0,"35721":1,"35722":0,"35723":0,"35724":0,"35725":1,"35726":1,"35727":0,"35728":0,"35729":0,"35730":0,"35731":0,"35732":1,"35733":0,"35734":0,"35735":0,"35736":0,"35737":0,"35738":0,"35739":0,"35740":0,"35741":0,"35742":0,"35743":0,"35744":0,"35745":0,"35746":0,"35747":0,"35748":0,"35749":0,"35750":1,"35751":0,"35752":0,"35753":0,"35754":0,"35755":0,"35756":0,"35757":0,"35758":0,"35759":0,"35760":1,"35761":1,"35762":0,"35763":1,"35764":0,"35765":0,"35766":1,"35767":0,"35768":0,"35769":0,"35770":1,"35771":1,"35772":1,"35773":0,"35774":1,"35775":1,"35776":1,"35777":0,"35778":0,"35779":0,"35780":0,"35781":1,"35782":0,"35783":0,"35784":0,"35785":0,"35786":0,"35787":0,"35788":0,"35789":0,"35790":0,"35791":0,"35792":0,"35793":1,"35794":0,"35795":0,"35796":0,"35797":1,"35798":1,"35799":0,"35800":1,"35801":0,"35802":1,"35803":1,"35804":0,"35805":1,"35806":0,"35807":0,"35808":0,"35809":0,"35810":0,"35811":0,"35812":1,"35813":0,"35814":0,"35815":0,"35816":0,"35817":0,"35818":1,"35819":1,"35820":1,"35821":0,"35822":1,"35823":0,"35824":0,"35825":1,"35826":0,"35827":0,"35828":0,"35829":1,"35830":0,"35831":1,"35832":0,"35833":0,"35834":0,"35835":1,"35836":0,"35837":0,"35838":0,"35839":0,"35840":0,"35841":1,"35842":1,"35843":1,"35844":1,"35845":0,"35846":0,"35847":1,"35848":0,"35849":0,"35850":0,"35851":0,"35852":0,"35853":0,"35854":0,"35855":0,"35856":0,"35857":0,"35858":1,"35859":0,"35860":0,"35861":1,"35862":0,"35863":0,"35864":1,"35865":0,"35866":0,"35867":1,"35868":0,"35869":0,"35870":1,"35871":0,"35872":0,"35873":0,"35874":0,"35875":0,"35876":1,"35877":0,"35878":1,"35879":0,"35880":1,"35881":0,"35882":0,"35883":0,"35884":0,"35885":0,"35886":0,"35887":1,"35888":0,"35889":0,"35890":1,"35891":1,"35892":1,"35893":0,"35894":1,"35895":0,"35896":0,"35897":0,"35898":1,"35899":0,"35900":0,"35901":1,"35902":1,"35903":1,"35904":0,"35905":0,"35906":0,"35907":0,"35908":0,"35909":0,"35910":0,"35911":0,"35912":0,"35913":0,"35914":0,"35915":0,"35916":0,"35917":1,"35918":1,"35919":0,"35920":0,"35921":1,"35922":1,"35923":0,"35924":0,"35925":0,"35926":0,"35927":0,"35928":0,"35929":0,"35930":0,"35931":0,"35932":0,"35933":1,"35934":0,"35935":0,"35936":1,"35937":1,"35938":0,"35939":0,"35940":0,"35941":0,"35942":0,"35943":1,"35944":0,"35945":0,"35946":1,"35947":0,"35948":1,"35949":0,"35950":0,"35951":0,"35952":0,"35953":0,"35954":0,"35955":0,"35956":0,"35957":0,"35958":1,"35959":0,"35960":0,"35961":0,"35962":1,"35963":0,"35964":0,"35965":0,"35966":0,"35967":0,"35968":0,"35969":0,"35970":1,"35971":0,"35972":0,"35973":1,"35974":1,"35975":0,"35976":0,"35977":0,"35978":0,"35979":1,"35980":1,"35981":0,"35982":0,"35983":0,"35984":0,"35985":0,"35986":0,"35987":0,"35988":1,"35989":1,"35990":0,"35991":0,"35992":0,"35993":0,"35994":0,"35995":1,"35996":1,"35997":1,"35998":0,"35999":1,"36000":0,"36001":0,"36002":1,"36003":0,"36004":0,"36005":1,"36006":1,"36007":0,"36008":0,"36009":0,"36010":0,"36011":0,"36012":0,"36013":1,"36014":0,"36015":0,"36016":0,"36017":0,"36018":0,"36019":1,"36020":0,"36021":1,"36022":1,"36023":0,"36024":0,"36025":0,"36026":0,"36027":0,"36028":0,"36029":1,"36030":0,"36031":0,"36032":1,"36033":0,"36034":0,"36035":1,"36036":0,"36037":0,"36038":0,"36039":0,"36040":0,"36041":0,"36042":1,"36043":0,"36044":1,"36045":1,"36046":0,"36047":1,"36048":0,"36049":0,"36050":0,"36051":0,"36052":1,"36053":0,"36054":0,"36055":1,"36056":0,"36057":1,"36058":1,"36059":1,"36060":1,"36061":0,"36062":0,"36063":1,"36064":0,"36065":0,"36066":0,"36067":0,"36068":0,"36069":1,"36070":0,"36071":1,"36072":0,"36073":1,"36074":0,"36075":1,"36076":1,"36077":0,"36078":1,"36079":0,"36080":0,"36081":0,"36082":0,"36083":1,"36084":0,"36085":0,"36086":0,"36087":0,"36088":1,"36089":0,"36090":0,"36091":0,"36092":1,"36093":0,"36094":1,"36095":0,"36096":0,"36097":0,"36098":1,"36099":0,"36100":0,"36101":1,"36102":0,"36103":0,"36104":0,"36105":0,"36106":0,"36107":0,"36108":0,"36109":1,"36110":0,"36111":0,"36112":0,"36113":0,"36114":0,"36115":0,"36116":0,"36117":0,"36118":0,"36119":1,"36120":0,"36121":0,"36122":0,"36123":0,"36124":1,"36125":0,"36126":1,"36127":1,"36128":0,"36129":1,"36130":1,"36131":1,"36132":0,"36133":1,"36134":0,"36135":0,"36136":0,"36137":0,"36138":1,"36139":0,"36140":1,"36141":0,"36142":0,"36143":0,"36144":1,"36145":0,"36146":0,"36147":0,"36148":0,"36149":0,"36150":0,"36151":0,"36152":0,"36153":0,"36154":0,"36155":0,"36156":0,"36157":1,"36158":0,"36159":0,"36160":0,"36161":0,"36162":0,"36163":0,"36164":0,"36165":0,"36166":0,"36167":0,"36168":0,"36169":0,"36170":0,"36171":1,"36172":0,"36173":0,"36174":0,"36175":0,"36176":0,"36177":0,"36178":0,"36179":0,"36180":0,"36181":0,"36182":0,"36183":1,"36184":0,"36185":1,"36186":0,"36187":1,"36188":0,"36189":1,"36190":1,"36191":0,"36192":1,"36193":1,"36194":0,"36195":1,"36196":0,"36197":0,"36198":0,"36199":0,"36200":1,"36201":1,"36202":0,"36203":0,"36204":0,"36205":0,"36206":1,"36207":0,"36208":0,"36209":0,"36210":0,"36211":1,"36212":0,"36213":0,"36214":0,"36215":0,"36216":1,"36217":1,"36218":0,"36219":0,"36220":1,"36221":0,"36222":0,"36223":0,"36224":0,"36225":0,"36226":0,"36227":0,"36228":1,"36229":0,"36230":1,"36231":0,"36232":1,"36233":0,"36234":0,"36235":0,"36236":0,"36237":0,"36238":0,"36239":0,"36240":0,"36241":0,"36242":1,"36243":1,"36244":1,"36245":1,"36246":0,"36247":0,"36248":0,"36249":0,"36250":0,"36251":0,"36252":0,"36253":1,"36254":0,"36255":1,"36256":1,"36257":0,"36258":0,"36259":0,"36260":1,"36261":0,"36262":0,"36263":0,"36264":0,"36265":0,"36266":0,"36267":0,"36268":1,"36269":1,"36270":1,"36271":0,"36272":1,"36273":0,"36274":0,"36275":1,"36276":0,"36277":0,"36278":0,"36279":0,"36280":0,"36281":0,"36282":0,"36283":0,"36284":0,"36285":0,"36286":0,"36287":0,"36288":0,"36289":1,"36290":0,"36291":0,"36292":0,"36293":1,"36294":0,"36295":0,"36296":1,"36297":0,"36298":0,"36299":0,"36300":0,"36301":0,"36302":0,"36303":1,"36304":1,"36305":0,"36306":0,"36307":0,"36308":1,"36309":0,"36310":0,"36311":0,"36312":0,"36313":1,"36314":0,"36315":0,"36316":1,"36317":0,"36318":0,"36319":0,"36320":0,"36321":0,"36322":1,"36323":1,"36324":1,"36325":0,"36326":0,"36327":0,"36328":1,"36329":1,"36330":0,"36331":1,"36332":1,"36333":0,"36334":0,"36335":0,"36336":0,"36337":0,"36338":1,"36339":0,"36340":0,"36341":1,"36342":0,"36343":0,"36344":0,"36345":1,"36346":0,"36347":0,"36348":0,"36349":0,"36350":0,"36351":0,"36352":1,"36353":0,"36354":0,"36355":0,"36356":0,"36357":0,"36358":0,"36359":0,"36360":1,"36361":1,"36362":1,"36363":0,"36364":1,"36365":1,"36366":0,"36367":1,"36368":1,"36369":0,"36370":0,"36371":0,"36372":1,"36373":0,"36374":1,"36375":0,"36376":0,"36377":0,"36378":0,"36379":0,"36380":0,"36381":0,"36382":1,"36383":0,"36384":0,"36385":0,"36386":1,"36387":0,"36388":1,"36389":1,"36390":0,"36391":0,"36392":0,"36393":0,"36394":0,"36395":0,"36396":1,"36397":0,"36398":0,"36399":0,"36400":1,"36401":0,"36402":1,"36403":0,"36404":0,"36405":0,"36406":0,"36407":0,"36408":0,"36409":0,"36410":1,"36411":1,"36412":0,"36413":0,"36414":0,"36415":1,"36416":1,"36417":1,"36418":0,"36419":1,"36420":1,"36421":0,"36422":0,"36423":0,"36424":0,"36425":0,"36426":0,"36427":0,"36428":0,"36429":0,"36430":0,"36431":0,"36432":0,"36433":0,"36434":0,"36435":0,"36436":0,"36437":0,"36438":0,"36439":1,"36440":0,"36441":0,"36442":1,"36443":0,"36444":0,"36445":0,"36446":0,"36447":0,"36448":0,"36449":0,"36450":0,"36451":0,"36452":0,"36453":0,"36454":0,"36455":0,"36456":0,"36457":0,"36458":1,"36459":0,"36460":0,"36461":0,"36462":1,"36463":0,"36464":0,"36465":0,"36466":1,"36467":0,"36468":0,"36469":0,"36470":0,"36471":1,"36472":0,"36473":0,"36474":0,"36475":1,"36476":1,"36477":1,"36478":0,"36479":0,"36480":0,"36481":0,"36482":0,"36483":0,"36484":0,"36485":1,"36486":0,"36487":0,"36488":0,"36489":0,"36490":1,"36491":0,"36492":0,"36493":0,"36494":1,"36495":0,"36496":0,"36497":0,"36498":0,"36499":0,"36500":1,"36501":0,"36502":1,"36503":0,"36504":0,"36505":0,"36506":0,"36507":0,"36508":0,"36509":0,"36510":0,"36511":0,"36512":0,"36513":0,"36514":0,"36515":0,"36516":0,"36517":1,"36518":0,"36519":0,"36520":0,"36521":1,"36522":0,"36523":0,"36524":0,"36525":0,"36526":0,"36527":0,"36528":0,"36529":1,"36530":0,"36531":1,"36532":1,"36533":0,"36534":0,"36535":0,"36536":0,"36537":0,"36538":0,"36539":0,"36540":0,"36541":0,"36542":0,"36543":1,"36544":0,"36545":1,"36546":0,"36547":0,"36548":0,"36549":0,"36550":0,"36551":0,"36552":0,"36553":0,"36554":0,"36555":0,"36556":0,"36557":0,"36558":0,"36559":0,"36560":1,"36561":0,"36562":1,"36563":0,"36564":1,"36565":0,"36566":0,"36567":0,"36568":0,"36569":0,"36570":1,"36571":0,"36572":1,"36573":0,"36574":0,"36575":0,"36576":0,"36577":1,"36578":1,"36579":1,"36580":0,"36581":0,"36582":1,"36583":1,"36584":0,"36585":0,"36586":0,"36587":0,"36588":0,"36589":0,"36590":1,"36591":0,"36592":1,"36593":1,"36594":0,"36595":1,"36596":0,"36597":0,"36598":0,"36599":0,"36600":1,"36601":0,"36602":0,"36603":0,"36604":0,"36605":0,"36606":0,"36607":0,"36608":0,"36609":0,"36610":0,"36611":0,"36612":0,"36613":0,"36614":0,"36615":0,"36616":0,"36617":0,"36618":0,"36619":0,"36620":0,"36621":0,"36622":0,"36623":1,"36624":0,"36625":0,"36626":0,"36627":1,"36628":0,"36629":0,"36630":1,"36631":0,"36632":0,"36633":1,"36634":0,"36635":1,"36636":0,"36637":1,"36638":0,"36639":1,"36640":0,"36641":0,"36642":0,"36643":0,"36644":0,"36645":0,"36646":0,"36647":0,"36648":0,"36649":1,"36650":0,"36651":1,"36652":0,"36653":1,"36654":1,"36655":0,"36656":0,"36657":0,"36658":0,"36659":0,"36660":0,"36661":0,"36662":0,"36663":0,"36664":0,"36665":1,"36666":0,"36667":1,"36668":0,"36669":1,"36670":0,"36671":0,"36672":0,"36673":0,"36674":0,"36675":0,"36676":0,"36677":0,"36678":0,"36679":0,"36680":0,"36681":0,"36682":0,"36683":0,"36684":0,"36685":0,"36686":1,"36687":0,"36688":1,"36689":0,"36690":0,"36691":0,"36692":0,"36693":0,"36694":0,"36695":0,"36696":1,"36697":0,"36698":0,"36699":0,"36700":0,"36701":0,"36702":0,"36703":0,"36704":0,"36705":0,"36706":1,"36707":0,"36708":0,"36709":0,"36710":0,"36711":1,"36712":0,"36713":0,"36714":1,"36715":0,"36716":0,"36717":1,"36718":0,"36719":1,"36720":1,"36721":0,"36722":1,"36723":1,"36724":0,"36725":0,"36726":1,"36727":0,"36728":0,"36729":0,"36730":0,"36731":0,"36732":0,"36733":0,"36734":0,"36735":1,"36736":0,"36737":0,"36738":0,"36739":0,"36740":0,"36741":0,"36742":0,"36743":0,"36744":0,"36745":0,"36746":0,"36747":0,"36748":0,"36749":1,"36750":0,"36751":0,"36752":0,"36753":0,"36754":0,"36755":1,"36756":0,"36757":0,"36758":0,"36759":1,"36760":0,"36761":0,"36762":1,"36763":1,"36764":1,"36765":0,"36766":0,"36767":0,"36768":1,"36769":0,"36770":0,"36771":0,"36772":0,"36773":0,"36774":1,"36775":0,"36776":0,"36777":0,"36778":1,"36779":0,"36780":0,"36781":0,"36782":0,"36783":0,"36784":1,"36785":1,"36786":1,"36787":0,"36788":0,"36789":0,"36790":0,"36791":0,"36792":0,"36793":0,"36794":0,"36795":0,"36796":0,"36797":1,"36798":0,"36799":0,"36800":0,"36801":0,"36802":0,"36803":0,"36804":0,"36805":1,"36806":0,"36807":0,"36808":0,"36809":0,"36810":0,"36811":0,"36812":0,"36813":0,"36814":0,"36815":0,"36816":0,"36817":0,"36818":0,"36819":0,"36820":0,"36821":0,"36822":0,"36823":1,"36824":0,"36825":0,"36826":0,"36827":0,"36828":1,"36829":0,"36830":0,"36831":0,"36832":1,"36833":0,"36834":0,"36835":0,"36836":0,"36837":1,"36838":0,"36839":0,"36840":1,"36841":0,"36842":1,"36843":1,"36844":0,"36845":0,"36846":0,"36847":0,"36848":1,"36849":0,"36850":0,"36851":0,"36852":0,"36853":1,"36854":0,"36855":0,"36856":1,"36857":0,"36858":0,"36859":0,"36860":0,"36861":0,"36862":0,"36863":0,"36864":0,"36865":0,"36866":0,"36867":0,"36868":1,"36869":0,"36870":0,"36871":0,"36872":1,"36873":0,"36874":0,"36875":0,"36876":0,"36877":1,"36878":0,"36879":0,"36880":0,"36881":0,"36882":0,"36883":0,"36884":0,"36885":1,"36886":0,"36887":0,"36888":1,"36889":0,"36890":1,"36891":0,"36892":0,"36893":0,"36894":0,"36895":1,"36896":0,"36897":0,"36898":0,"36899":0,"36900":0,"36901":0,"36902":0,"36903":0,"36904":0,"36905":0,"36906":0,"36907":1,"36908":0,"36909":0,"36910":0,"36911":0,"36912":0,"36913":0,"36914":0,"36915":0,"36916":0,"36917":0,"36918":0,"36919":0,"36920":0,"36921":0,"36922":0,"36923":0,"36924":0,"36925":1,"36926":0,"36927":0,"36928":0,"36929":1,"36930":0,"36931":0,"36932":0,"36933":0,"36934":0,"36935":0,"36936":0,"36937":0,"36938":0,"36939":0,"36940":0,"36941":1,"36942":0,"36943":1,"36944":1,"36945":0,"36946":0,"36947":0,"36948":0,"36949":0,"36950":0,"36951":0,"36952":0,"36953":1,"36954":0,"36955":0,"36956":0,"36957":0,"36958":1,"36959":0,"36960":1,"36961":0,"36962":0,"36963":1,"36964":1,"36965":0,"36966":0,"36967":0,"36968":0,"36969":1,"36970":0,"36971":0,"36972":1,"36973":0,"36974":0,"36975":0,"36976":0,"36977":1,"36978":0,"36979":1,"36980":1,"36981":0,"36982":0,"36983":1,"36984":0,"36985":0,"36986":0,"36987":0,"36988":0,"36989":0,"36990":1,"36991":1,"36992":0,"36993":0,"36994":0,"36995":0,"36996":0,"36997":0,"36998":0,"36999":0,"37000":0,"37001":1,"37002":0,"37003":0,"37004":0,"37005":0,"37006":0,"37007":1,"37008":0,"37009":1,"37010":0,"37011":1,"37012":1,"37013":0,"37014":1,"37015":0,"37016":0,"37017":1,"37018":1,"37019":0,"37020":0,"37021":0,"37022":0,"37023":0,"37024":0,"37025":0,"37026":0,"37027":0,"37028":0,"37029":0,"37030":1,"37031":0,"37032":0,"37033":0,"37034":0,"37035":1,"37036":0,"37037":0,"37038":0,"37039":0,"37040":1,"37041":0,"37042":1,"37043":0,"37044":0,"37045":0,"37046":1,"37047":0,"37048":0,"37049":1,"37050":0,"37051":0,"37052":0,"37053":0,"37054":0,"37055":0,"37056":1,"37057":0,"37058":0,"37059":0,"37060":1,"37061":0,"37062":0,"37063":0,"37064":1,"37065":0,"37066":0,"37067":0,"37068":0,"37069":1,"37070":0,"37071":1,"37072":0,"37073":0,"37074":0,"37075":0,"37076":1,"37077":0,"37078":0,"37079":0,"37080":0,"37081":0,"37082":0,"37083":1,"37084":1,"37085":0,"37086":0,"37087":0,"37088":1,"37089":1,"37090":0,"37091":0,"37092":0,"37093":0,"37094":0,"37095":0,"37096":0,"37097":0,"37098":0,"37099":1,"37100":0,"37101":1,"37102":0,"37103":0,"37104":0,"37105":0,"37106":0,"37107":0,"37108":0,"37109":1,"37110":0,"37111":0,"37112":1,"37113":0,"37114":0,"37115":0,"37116":1,"37117":0,"37118":1,"37119":0,"37120":0,"37121":0,"37122":0,"37123":0,"37124":1,"37125":0,"37126":0,"37127":0,"37128":0,"37129":0,"37130":1,"37131":0,"37132":0,"37133":0,"37134":0,"37135":0,"37136":0,"37137":0,"37138":0,"37139":0,"37140":0,"37141":0,"37142":1,"37143":0,"37144":0,"37145":0,"37146":0,"37147":0,"37148":1,"37149":0,"37150":0,"37151":0,"37152":0,"37153":1,"37154":0,"37155":0,"37156":0,"37157":0,"37158":1,"37159":1,"37160":0,"37161":0,"37162":0,"37163":0,"37164":0,"37165":0,"37166":0,"37167":1,"37168":0,"37169":0,"37170":0,"37171":0,"37172":0,"37173":0,"37174":1,"37175":1,"37176":1,"37177":0,"37178":1,"37179":0,"37180":0,"37181":1,"37182":1,"37183":0,"37184":0,"37185":1,"37186":0,"37187":0,"37188":0,"37189":1,"37190":1,"37191":1,"37192":0,"37193":0,"37194":1,"37195":1,"37196":1,"37197":0,"37198":1,"37199":0,"37200":0,"37201":0,"37202":0,"37203":1,"37204":0,"37205":0,"37206":0,"37207":0,"37208":0,"37209":0,"37210":1,"37211":0,"37212":1,"37213":0,"37214":1,"37215":0,"37216":0,"37217":0,"37218":1,"37219":0,"37220":0,"37221":0,"37222":0,"37223":0,"37224":0,"37225":0,"37226":1,"37227":0,"37228":1,"37229":1,"37230":0,"37231":1,"37232":0,"37233":0,"37234":0,"37235":0,"37236":1,"37237":0,"37238":0,"37239":1,"37240":0,"37241":1,"37242":0,"37243":0,"37244":1,"37245":0,"37246":0,"37247":1,"37248":1,"37249":0,"37250":0,"37251":1,"37252":0,"37253":0,"37254":0,"37255":0,"37256":0,"37257":0,"37258":0,"37259":0,"37260":0,"37261":0,"37262":0,"37263":0,"37264":0,"37265":0,"37266":0,"37267":0,"37268":0,"37269":0,"37270":0,"37271":1,"37272":0,"37273":0,"37274":1,"37275":0,"37276":0,"37277":0,"37278":1,"37279":1,"37280":1,"37281":0,"37282":0,"37283":0,"37284":0,"37285":0,"37286":1,"37287":0,"37288":0,"37289":0,"37290":0,"37291":0,"37292":0,"37293":1,"37294":0,"37295":1,"37296":1,"37297":0,"37298":0,"37299":0,"37300":0,"37301":1,"37302":0,"37303":0,"37304":0,"37305":1,"37306":0,"37307":0,"37308":0,"37309":0,"37310":0,"37311":1,"37312":0,"37313":0,"37314":0,"37315":0,"37316":0,"37317":0,"37318":0,"37319":1,"37320":1,"37321":0,"37322":0,"37323":0,"37324":0,"37325":0,"37326":0,"37327":1,"37328":0,"37329":0,"37330":1,"37331":0,"37332":1,"37333":1,"37334":1,"37335":1,"37336":0,"37337":0,"37338":0,"37339":0,"37340":0,"37341":0,"37342":0,"37343":0,"37344":1,"37345":0,"37346":0,"37347":1,"37348":0,"37349":0,"37350":0,"37351":0,"37352":0,"37353":0,"37354":1,"37355":1,"37356":0,"37357":0,"37358":0,"37359":0,"37360":0,"37361":0,"37362":1,"37363":0,"37364":1,"37365":0,"37366":0,"37367":1,"37368":1,"37369":1,"37370":0,"37371":0,"37372":0,"37373":0,"37374":1,"37375":1,"37376":0,"37377":0,"37378":0,"37379":0,"37380":0,"37381":1,"37382":0,"37383":0,"37384":0,"37385":1,"37386":0,"37387":1,"37388":1,"37389":1,"37390":1,"37391":0,"37392":0,"37393":1,"37394":0,"37395":0,"37396":0,"37397":0,"37398":1,"37399":1,"37400":1,"37401":0,"37402":0,"37403":1,"37404":0,"37405":0,"37406":0,"37407":1,"37408":0,"37409":0,"37410":0,"37411":0,"37412":1,"37413":0,"37414":0,"37415":0,"37416":0,"37417":0,"37418":0,"37419":0,"37420":0,"37421":0,"37422":0,"37423":0,"37424":0,"37425":0,"37426":1,"37427":0,"37428":0,"37429":1,"37430":0,"37431":1,"37432":0,"37433":0,"37434":0,"37435":0,"37436":0,"37437":1,"37438":0,"37439":0,"37440":1,"37441":0,"37442":0,"37443":1,"37444":0,"37445":0,"37446":0,"37447":0,"37448":0,"37449":0,"37450":0,"37451":1,"37452":0,"37453":1,"37454":0,"37455":0,"37456":0,"37457":1,"37458":0,"37459":1,"37460":0,"37461":0,"37462":0,"37463":0,"37464":1,"37465":0,"37466":1,"37467":0,"37468":0,"37469":0,"37470":0,"37471":1,"37472":0,"37473":1,"37474":1,"37475":1,"37476":0,"37477":0,"37478":0,"37479":1,"37480":0,"37481":1,"37482":0,"37483":0,"37484":1,"37485":0,"37486":1,"37487":0,"37488":0,"37489":1,"37490":1,"37491":1,"37492":0,"37493":0,"37494":0,"37495":1,"37496":0,"37497":0,"37498":1,"37499":0,"37500":0,"37501":0,"37502":0,"37503":1,"37504":1,"37505":0,"37506":0,"37507":0,"37508":0,"37509":0,"37510":0,"37511":1,"37512":0,"37513":1,"37514":0,"37515":0,"37516":0,"37517":0,"37518":0,"37519":1,"37520":0,"37521":0,"37522":0,"37523":0,"37524":0,"37525":0,"37526":0,"37527":1,"37528":1,"37529":0,"37530":0,"37531":0,"37532":0,"37533":0,"37534":1,"37535":0,"37536":1,"37537":0,"37538":0,"37539":0,"37540":1,"37541":0,"37542":1,"37543":0,"37544":1,"37545":1,"37546":0,"37547":0,"37548":0,"37549":0,"37550":1,"37551":0,"37552":0,"37553":0,"37554":1,"37555":0,"37556":0,"37557":0,"37558":0,"37559":0,"37560":0,"37561":0,"37562":0,"37563":0,"37564":1,"37565":1,"37566":0,"37567":0,"37568":1,"37569":0,"37570":1,"37571":0,"37572":0,"37573":0,"37574":0,"37575":1,"37576":0,"37577":0,"37578":0,"37579":1,"37580":0,"37581":0,"37582":0,"37583":0,"37584":0,"37585":0,"37586":0,"37587":0,"37588":0,"37589":0,"37590":0,"37591":0,"37592":0,"37593":0,"37594":0,"37595":0,"37596":1,"37597":0,"37598":1,"37599":1,"37600":1,"37601":0,"37602":0,"37603":0,"37604":1,"37605":0,"37606":0,"37607":0,"37608":1,"37609":0,"37610":0,"37611":0,"37612":0,"37613":0,"37614":1,"37615":0,"37616":1,"37617":0,"37618":0,"37619":0,"37620":0,"37621":1,"37622":0,"37623":0,"37624":1,"37625":0,"37626":0,"37627":0,"37628":0,"37629":0,"37630":0,"37631":0,"37632":0,"37633":0,"37634":1,"37635":0,"37636":0,"37637":1,"37638":1,"37639":0,"37640":0,"37641":0,"37642":0,"37643":0,"37644":0,"37645":1,"37646":0,"37647":0,"37648":1,"37649":1,"37650":1,"37651":0,"37652":0,"37653":0,"37654":0,"37655":0,"37656":0,"37657":0,"37658":0,"37659":1,"37660":0,"37661":0,"37662":0,"37663":0,"37664":1,"37665":0,"37666":0,"37667":0,"37668":0,"37669":0,"37670":0,"37671":0,"37672":0,"37673":0,"37674":0,"37675":1,"37676":0,"37677":0,"37678":0,"37679":0,"37680":0,"37681":0,"37682":0,"37683":0,"37684":0,"37685":1,"37686":0,"37687":1,"37688":1,"37689":0,"37690":1,"37691":0,"37692":1,"37693":0,"37694":0,"37695":0,"37696":0,"37697":0,"37698":0,"37699":0,"37700":1,"37701":0,"37702":0,"37703":0,"37704":0,"37705":0,"37706":0,"37707":0,"37708":0,"37709":0,"37710":0,"37711":0,"37712":0,"37713":0,"37714":1,"37715":0,"37716":0,"37717":0,"37718":0,"37719":0,"37720":0,"37721":1,"37722":0,"37723":0,"37724":0,"37725":1,"37726":0,"37727":0,"37728":0,"37729":0,"37730":0,"37731":0,"37732":1,"37733":0,"37734":0,"37735":0,"37736":0,"37737":1,"37738":1,"37739":0,"37740":1,"37741":0,"37742":1,"37743":0,"37744":1,"37745":0,"37746":0,"37747":0,"37748":0,"37749":0,"37750":1,"37751":0,"37752":0,"37753":0,"37754":0,"37755":0,"37756":0,"37757":0,"37758":1,"37759":0,"37760":0,"37761":0,"37762":1,"37763":0,"37764":1,"37765":1,"37766":0,"37767":0,"37768":0,"37769":0,"37770":0,"37771":0,"37772":0,"37773":0,"37774":0,"37775":1,"37776":1,"37777":0,"37778":0,"37779":0,"37780":0,"37781":1,"37782":0,"37783":0,"37784":0,"37785":0,"37786":0,"37787":0,"37788":0,"37789":0,"37790":0,"37791":0,"37792":0,"37793":0,"37794":0,"37795":0,"37796":0,"37797":0,"37798":0,"37799":0,"37800":0,"37801":0,"37802":0,"37803":0,"37804":1,"37805":0,"37806":1,"37807":0,"37808":1,"37809":1,"37810":1,"37811":1,"37812":0,"37813":0,"37814":1,"37815":1,"37816":0,"37817":0,"37818":0,"37819":0,"37820":0,"37821":1,"37822":0,"37823":0,"37824":1,"37825":0,"37826":0,"37827":0,"37828":0,"37829":0,"37830":0,"37831":0,"37832":0,"37833":0,"37834":0,"37835":0,"37836":1,"37837":1,"37838":1,"37839":0,"37840":0,"37841":1,"37842":1,"37843":0,"37844":0,"37845":0,"37846":0,"37847":0,"37848":0,"37849":0,"37850":0,"37851":0,"37852":0,"37853":0,"37854":0,"37855":0,"37856":0,"37857":0,"37858":1,"37859":0,"37860":0,"37861":0,"37862":0,"37863":1,"37864":1,"37865":0,"37866":0,"37867":0,"37868":0,"37869":1,"37870":0,"37871":0,"37872":0,"37873":0,"37874":0,"37875":0,"37876":0,"37877":1,"37878":0,"37879":0,"37880":0,"37881":1,"37882":1,"37883":0,"37884":0,"37885":0,"37886":0,"37887":0,"37888":0,"37889":0,"37890":1,"37891":0,"37892":0,"37893":1,"37894":0,"37895":0,"37896":1,"37897":1,"37898":0,"37899":0,"37900":0,"37901":0,"37902":1,"37903":0,"37904":0,"37905":0,"37906":0,"37907":0,"37908":0,"37909":1,"37910":0,"37911":0,"37912":1,"37913":0,"37914":0,"37915":1,"37916":1,"37917":1,"37918":0,"37919":1,"37920":0,"37921":1,"37922":0,"37923":1,"37924":1,"37925":0,"37926":0,"37927":0,"37928":0,"37929":0,"37930":0,"37931":1,"37932":0,"37933":0,"37934":0,"37935":1,"37936":0,"37937":1,"37938":0,"37939":0,"37940":1,"37941":0,"37942":0,"37943":1,"37944":1,"37945":1,"37946":0,"37947":0,"37948":0,"37949":1,"37950":0,"37951":0,"37952":0,"37953":0,"37954":1,"37955":1,"37956":0,"37957":0,"37958":0,"37959":0,"37960":0,"37961":0,"37962":0,"37963":1,"37964":0,"37965":0,"37966":1,"37967":1,"37968":1,"37969":0,"37970":0,"37971":1,"37972":1,"37973":0,"37974":0,"37975":0,"37976":0,"37977":0,"37978":0,"37979":0,"37980":0,"37981":0,"37982":0,"37983":0,"37984":0,"37985":0,"37986":1,"37987":0,"37988":1,"37989":0,"37990":0,"37991":0,"37992":0,"37993":0,"37994":0,"37995":0,"37996":0,"37997":0,"37998":0,"37999":0,"38000":0,"38001":0,"38002":0,"38003":1,"38004":1,"38005":0,"38006":0,"38007":0,"38008":1,"38009":1,"38010":0,"38011":0,"38012":1,"38013":1,"38014":0,"38015":0,"38016":0,"38017":1,"38018":0,"38019":0,"38020":0,"38021":0,"38022":1,"38023":0,"38024":1,"38025":1,"38026":1,"38027":1,"38028":0,"38029":0,"38030":1,"38031":0,"38032":0,"38033":0,"38034":0,"38035":1,"38036":1,"38037":0,"38038":0,"38039":0,"38040":0,"38041":0,"38042":0,"38043":0,"38044":0,"38045":1,"38046":0,"38047":0,"38048":0,"38049":0,"38050":0,"38051":0,"38052":0,"38053":1,"38054":1,"38055":0,"38056":0,"38057":0,"38058":0,"38059":0,"38060":0,"38061":1,"38062":0,"38063":1,"38064":0,"38065":0,"38066":0,"38067":0,"38068":1,"38069":0,"38070":0,"38071":0,"38072":0,"38073":0,"38074":0,"38075":0,"38076":0,"38077":0,"38078":0,"38079":0,"38080":0,"38081":0,"38082":0,"38083":0,"38084":0,"38085":0,"38086":0,"38087":0,"38088":0,"38089":0,"38090":0,"38091":0,"38092":0,"38093":0,"38094":0,"38095":1,"38096":0,"38097":0,"38098":1,"38099":0,"38100":0,"38101":0,"38102":0,"38103":0,"38104":0,"38105":1,"38106":0,"38107":0,"38108":0,"38109":0,"38110":1,"38111":0,"38112":0,"38113":1,"38114":1,"38115":0,"38116":1,"38117":1,"38118":0,"38119":0,"38120":0,"38121":0,"38122":0,"38123":0,"38124":0,"38125":1,"38126":0,"38127":0,"38128":1,"38129":1,"38130":0,"38131":0,"38132":0,"38133":0,"38134":0,"38135":0,"38136":0,"38137":0,"38138":0,"38139":0,"38140":0,"38141":0,"38142":0,"38143":1,"38144":0,"38145":0,"38146":0,"38147":0,"38148":0,"38149":1,"38150":0,"38151":0,"38152":1,"38153":1,"38154":0,"38155":1,"38156":0,"38157":0,"38158":0,"38159":0,"38160":0,"38161":0,"38162":1,"38163":0,"38164":0,"38165":0,"38166":0,"38167":0,"38168":0,"38169":1,"38170":0,"38171":0,"38172":0,"38173":0,"38174":0,"38175":1,"38176":0,"38177":1,"38178":0,"38179":0,"38180":0,"38181":0,"38182":1,"38183":1,"38184":0,"38185":0,"38186":0,"38187":0,"38188":0,"38189":0,"38190":0,"38191":0,"38192":1,"38193":0,"38194":1,"38195":0,"38196":0,"38197":0,"38198":0,"38199":0,"38200":0,"38201":0,"38202":1,"38203":0,"38204":0,"38205":0,"38206":0,"38207":1,"38208":0,"38209":0,"38210":1,"38211":0,"38212":0,"38213":0,"38214":1,"38215":0,"38216":0,"38217":0,"38218":1,"38219":0,"38220":0,"38221":1,"38222":0,"38223":1,"38224":1,"38225":0,"38226":1,"38227":0,"38228":1,"38229":0,"38230":1,"38231":0,"38232":0,"38233":0,"38234":0,"38235":1,"38236":0,"38237":0,"38238":0,"38239":0,"38240":0,"38241":0,"38242":0,"38243":0,"38244":0,"38245":0,"38246":0,"38247":0,"38248":1,"38249":1,"38250":1,"38251":0,"38252":0,"38253":0,"38254":0,"38255":0,"38256":1,"38257":0,"38258":0,"38259":0,"38260":0,"38261":1,"38262":0,"38263":0,"38264":1,"38265":0,"38266":0,"38267":1,"38268":0,"38269":1,"38270":1,"38271":0,"38272":1,"38273":1,"38274":1,"38275":0,"38276":0,"38277":0,"38278":0,"38279":0,"38280":0,"38281":1,"38282":1,"38283":0,"38284":0,"38285":1,"38286":0,"38287":0,"38288":1,"38289":0,"38290":0,"38291":0,"38292":0,"38293":0,"38294":0,"38295":0,"38296":0,"38297":0,"38298":1,"38299":0,"38300":0,"38301":0,"38302":0,"38303":1,"38304":0,"38305":1,"38306":0,"38307":0,"38308":0,"38309":0,"38310":0,"38311":0,"38312":1,"38313":0,"38314":0,"38315":0,"38316":0,"38317":1,"38318":0,"38319":0,"38320":0,"38321":0,"38322":0,"38323":0,"38324":0,"38325":0,"38326":0,"38327":0,"38328":0,"38329":1,"38330":0,"38331":0,"38332":0,"38333":0,"38334":0,"38335":0,"38336":0,"38337":1,"38338":1,"38339":0,"38340":1,"38341":1,"38342":0,"38343":0,"38344":1,"38345":0,"38346":1,"38347":0,"38348":0,"38349":1,"38350":0,"38351":1,"38352":0,"38353":1,"38354":0,"38355":1,"38356":0,"38357":1,"38358":0,"38359":0,"38360":1,"38361":0,"38362":1,"38363":0,"38364":1,"38365":0,"38366":0,"38367":0,"38368":0,"38369":0,"38370":1,"38371":1,"38372":0,"38373":0,"38374":1,"38375":0,"38376":0,"38377":0,"38378":0,"38379":0,"38380":0,"38381":0,"38382":0,"38383":0,"38384":0,"38385":0,"38386":0,"38387":0,"38388":0,"38389":0,"38390":0,"38391":0,"38392":0,"38393":0,"38394":0,"38395":1,"38396":0,"38397":0,"38398":0,"38399":0,"38400":0,"38401":0,"38402":1,"38403":0,"38404":0,"38405":0,"38406":1,"38407":0,"38408":0,"38409":0,"38410":1,"38411":1,"38412":0,"38413":1,"38414":0,"38415":0,"38416":0,"38417":1,"38418":0,"38419":0,"38420":0,"38421":0,"38422":0,"38423":0,"38424":1,"38425":0,"38426":0,"38427":0,"38428":0,"38429":0,"38430":0,"38431":0,"38432":0,"38433":0,"38434":0,"38435":0,"38436":0,"38437":0,"38438":0,"38439":0,"38440":0,"38441":0,"38442":0,"38443":0,"38444":0,"38445":1,"38446":1,"38447":0,"38448":0,"38449":0,"38450":1,"38451":1,"38452":0,"38453":0,"38454":1,"38455":0,"38456":0,"38457":0,"38458":0,"38459":0,"38460":1,"38461":1,"38462":0,"38463":0,"38464":0,"38465":0,"38466":0,"38467":0,"38468":1,"38469":1,"38470":0,"38471":0,"38472":0,"38473":0,"38474":0,"38475":0,"38476":0,"38477":1,"38478":0,"38479":1,"38480":0,"38481":1,"38482":1,"38483":0,"38484":0,"38485":0,"38486":0,"38487":1,"38488":1,"38489":0,"38490":1,"38491":0,"38492":0,"38493":0,"38494":0,"38495":0,"38496":0,"38497":0,"38498":0,"38499":0,"38500":0,"38501":0,"38502":0,"38503":0,"38504":1,"38505":0,"38506":1,"38507":0,"38508":1,"38509":0,"38510":1,"38511":1,"38512":0,"38513":0,"38514":0,"38515":0,"38516":1,"38517":0,"38518":0,"38519":0,"38520":1,"38521":0,"38522":0,"38523":1,"38524":0,"38525":0,"38526":1,"38527":0,"38528":0,"38529":1,"38530":1,"38531":0,"38532":0,"38533":0,"38534":0,"38535":1,"38536":0,"38537":1,"38538":0,"38539":1,"38540":0,"38541":0,"38542":1,"38543":0,"38544":0,"38545":0,"38546":0,"38547":0,"38548":0,"38549":1,"38550":0,"38551":1,"38552":1,"38553":0,"38554":0,"38555":0,"38556":0,"38557":0,"38558":0,"38559":0,"38560":1,"38561":0,"38562":0,"38563":1,"38564":1,"38565":0,"38566":1,"38567":0,"38568":0,"38569":1,"38570":0,"38571":0,"38572":0,"38573":0,"38574":0,"38575":0,"38576":1,"38577":0,"38578":0,"38579":0,"38580":0,"38581":0,"38582":0,"38583":0,"38584":0,"38585":1,"38586":0,"38587":0,"38588":0,"38589":0,"38590":0,"38591":0,"38592":0,"38593":0,"38594":0,"38595":0,"38596":0,"38597":0,"38598":0,"38599":1,"38600":1,"38601":0,"38602":1,"38603":0,"38604":0,"38605":0,"38606":1,"38607":0,"38608":0,"38609":0,"38610":0,"38611":0,"38612":0,"38613":0,"38614":0,"38615":0,"38616":0,"38617":1,"38618":0,"38619":0,"38620":0,"38621":1,"38622":0,"38623":0,"38624":0,"38625":0,"38626":0,"38627":0,"38628":0,"38629":0,"38630":0,"38631":0,"38632":0,"38633":0,"38634":1,"38635":0,"38636":0,"38637":0,"38638":1,"38639":0,"38640":0,"38641":0,"38642":0,"38643":0,"38644":1,"38645":0,"38646":0,"38647":0,"38648":0,"38649":0,"38650":0,"38651":0,"38652":0,"38653":0,"38654":0,"38655":1,"38656":1,"38657":1,"38658":0,"38659":0,"38660":0,"38661":0,"38662":0,"38663":0,"38664":0,"38665":1,"38666":1,"38667":0,"38668":0,"38669":1,"38670":0,"38671":0,"38672":1,"38673":0,"38674":0,"38675":1,"38676":0,"38677":1,"38678":0,"38679":1,"38680":0,"38681":1,"38682":1,"38683":0,"38684":0,"38685":1,"38686":0,"38687":0,"38688":1,"38689":0,"38690":0,"38691":1,"38692":0,"38693":1,"38694":0,"38695":0,"38696":0,"38697":1,"38698":0,"38699":0,"38700":0,"38701":1,"38702":0,"38703":0,"38704":0,"38705":0,"38706":0,"38707":0,"38708":1,"38709":1,"38710":0,"38711":0,"38712":1,"38713":0,"38714":0,"38715":0,"38716":0,"38717":0,"38718":1,"38719":1,"38720":0,"38721":0,"38722":0,"38723":0,"38724":0,"38725":0,"38726":0,"38727":1,"38728":1,"38729":0,"38730":0,"38731":0,"38732":0,"38733":0,"38734":0,"38735":0,"38736":1,"38737":0,"38738":0,"38739":1,"38740":0,"38741":0,"38742":0,"38743":0,"38744":0,"38745":1,"38746":0,"38747":0,"38748":0,"38749":0,"38750":0,"38751":0,"38752":0,"38753":0,"38754":0,"38755":1,"38756":0,"38757":0,"38758":0,"38759":0,"38760":0,"38761":0,"38762":0,"38763":0,"38764":0,"38765":0,"38766":1,"38767":0,"38768":0,"38769":1,"38770":0,"38771":1,"38772":0,"38773":0,"38774":0,"38775":0,"38776":0,"38777":0,"38778":0,"38779":0,"38780":0,"38781":0,"38782":0,"38783":1,"38784":0,"38785":1,"38786":0,"38787":0,"38788":0,"38789":0,"38790":1,"38791":0,"38792":0,"38793":0,"38794":1,"38795":0,"38796":0,"38797":0,"38798":0,"38799":0,"38800":1,"38801":1,"38802":0,"38803":0,"38804":0,"38805":0,"38806":0,"38807":1,"38808":0,"38809":0,"38810":0,"38811":1,"38812":1,"38813":0,"38814":1,"38815":0,"38816":1,"38817":0,"38818":0,"38819":0,"38820":0,"38821":0,"38822":0,"38823":0,"38824":0,"38825":0,"38826":0,"38827":0,"38828":0,"38829":1,"38830":0,"38831":0,"38832":0,"38833":0,"38834":0,"38835":1,"38836":1,"38837":0,"38838":0,"38839":0,"38840":0,"38841":1,"38842":1,"38843":0,"38844":1,"38845":1,"38846":0,"38847":1,"38848":0,"38849":0,"38850":1,"38851":0,"38852":0,"38853":0,"38854":0,"38855":1,"38856":0,"38857":0,"38858":0,"38859":0,"38860":1,"38861":0,"38862":1,"38863":0,"38864":0,"38865":0,"38866":1,"38867":0,"38868":1,"38869":0,"38870":0,"38871":0,"38872":0,"38873":1,"38874":0,"38875":0,"38876":0,"38877":0,"38878":0,"38879":0,"38880":0,"38881":0,"38882":0,"38883":0,"38884":0,"38885":1,"38886":0,"38887":0,"38888":0,"38889":0,"38890":0,"38891":1,"38892":0,"38893":1,"38894":0,"38895":1,"38896":1,"38897":1,"38898":0,"38899":1,"38900":1,"38901":0,"38902":0,"38903":0,"38904":0,"38905":0,"38906":0,"38907":0,"38908":0,"38909":1,"38910":0,"38911":1,"38912":0,"38913":0,"38914":1,"38915":0,"38916":0,"38917":1,"38918":0,"38919":1,"38920":1,"38921":0,"38922":0,"38923":0,"38924":0,"38925":1,"38926":0,"38927":0,"38928":0,"38929":0,"38930":0,"38931":1,"38932":0,"38933":1,"38934":0,"38935":0,"38936":0,"38937":0,"38938":1,"38939":1,"38940":0,"38941":0,"38942":0,"38943":0,"38944":0,"38945":0,"38946":0,"38947":0,"38948":0,"38949":0,"38950":0,"38951":0,"38952":0,"38953":0,"38954":0,"38955":0,"38956":0,"38957":0,"38958":1,"38959":0,"38960":0,"38961":0,"38962":0,"38963":1,"38964":1,"38965":0,"38966":0,"38967":0,"38968":0,"38969":0,"38970":0,"38971":1,"38972":0,"38973":0,"38974":0,"38975":0,"38976":0,"38977":0,"38978":0,"38979":0,"38980":0,"38981":0,"38982":0,"38983":0,"38984":0,"38985":1,"38986":1,"38987":0,"38988":0,"38989":0,"38990":0,"38991":0,"38992":0,"38993":0,"38994":1,"38995":0,"38996":0,"38997":0,"38998":0,"38999":0,"39000":0,"39001":0,"39002":0,"39003":0,"39004":0,"39005":0,"39006":0,"39007":0,"39008":1,"39009":0,"39010":0,"39011":0,"39012":0,"39013":0,"39014":0,"39015":0,"39016":0,"39017":0,"39018":1,"39019":1,"39020":1,"39021":0,"39022":0,"39023":0,"39024":0,"39025":1,"39026":0,"39027":0,"39028":0,"39029":0,"39030":1,"39031":0,"39032":1,"39033":1,"39034":0,"39035":1,"39036":0,"39037":0,"39038":1,"39039":0,"39040":0,"39041":1,"39042":0,"39043":0,"39044":0,"39045":0,"39046":0,"39047":0,"39048":0,"39049":0,"39050":0,"39051":0,"39052":0,"39053":0,"39054":0,"39055":0,"39056":0,"39057":0,"39058":0,"39059":0,"39060":0,"39061":0,"39062":0,"39063":0,"39064":0,"39065":0,"39066":0,"39067":0,"39068":0,"39069":0,"39070":0,"39071":0,"39072":1,"39073":0,"39074":1,"39075":0,"39076":1,"39077":0,"39078":1,"39079":0,"39080":1,"39081":0,"39082":0,"39083":1,"39084":0,"39085":1,"39086":0,"39087":1,"39088":1,"39089":0,"39090":0,"39091":0,"39092":0,"39093":0,"39094":0,"39095":0,"39096":0,"39097":0,"39098":0,"39099":0,"39100":0,"39101":0,"39102":0,"39103":0,"39104":0,"39105":1,"39106":0,"39107":1,"39108":0,"39109":0,"39110":1,"39111":0,"39112":0,"39113":0,"39114":0,"39115":0,"39116":0,"39117":0,"39118":1,"39119":0,"39120":0,"39121":0,"39122":0,"39123":0,"39124":0,"39125":0,"39126":0,"39127":0,"39128":0,"39129":0,"39130":0,"39131":0,"39132":0,"39133":0,"39134":0,"39135":0,"39136":1,"39137":1,"39138":0,"39139":0,"39140":1,"39141":0,"39142":0,"39143":0,"39144":0,"39145":0,"39146":0,"39147":0,"39148":0,"39149":0,"39150":0,"39151":1,"39152":0,"39153":0,"39154":0,"39155":0,"39156":0,"39157":0,"39158":0,"39159":0,"39160":0,"39161":0,"39162":0,"39163":0,"39164":0,"39165":1,"39166":0,"39167":1,"39168":0,"39169":1,"39170":0,"39171":0,"39172":0,"39173":0,"39174":0,"39175":0,"39176":1,"39177":0,"39178":0,"39179":0,"39180":0,"39181":0,"39182":0,"39183":1,"39184":0,"39185":0,"39186":0,"39187":0,"39188":0,"39189":0,"39190":0,"39191":0,"39192":0,"39193":0,"39194":0,"39195":0,"39196":0,"39197":1,"39198":0,"39199":0,"39200":1,"39201":0,"39202":1,"39203":0,"39204":0,"39205":1,"39206":1,"39207":0,"39208":0,"39209":1,"39210":0,"39211":1,"39212":0,"39213":0,"39214":0,"39215":0,"39216":0,"39217":0,"39218":0,"39219":0,"39220":0,"39221":0,"39222":0,"39223":1,"39224":0,"39225":0,"39226":0,"39227":1,"39228":0,"39229":0,"39230":1,"39231":0,"39232":0,"39233":0,"39234":0,"39235":0,"39236":1,"39237":0,"39238":0,"39239":0,"39240":0,"39241":1,"39242":0,"39243":0,"39244":0,"39245":0,"39246":0,"39247":1,"39248":0,"39249":1,"39250":0,"39251":1,"39252":0,"39253":1,"39254":1,"39255":0,"39256":0,"39257":0,"39258":1,"39259":0,"39260":0,"39261":0,"39262":0,"39263":0,"39264":0,"39265":0,"39266":0,"39267":1,"39268":1,"39269":1,"39270":0,"39271":0,"39272":0,"39273":0,"39274":0,"39275":0,"39276":0,"39277":0,"39278":1,"39279":0,"39280":1,"39281":0,"39282":0,"39283":0,"39284":0,"39285":1,"39286":1,"39287":0,"39288":0,"39289":1,"39290":1,"39291":0,"39292":0,"39293":0,"39294":0,"39295":0,"39296":0,"39297":1,"39298":1,"39299":0,"39300":0,"39301":0,"39302":0,"39303":0,"39304":0,"39305":0,"39306":1,"39307":1,"39308":0,"39309":0,"39310":0,"39311":0,"39312":0,"39313":0,"39314":0,"39315":0,"39316":1,"39317":0,"39318":0,"39319":1,"39320":0,"39321":1,"39322":1,"39323":0,"39324":0,"39325":0,"39326":0,"39327":0,"39328":0,"39329":0,"39330":1,"39331":0,"39332":0,"39333":0,"39334":1,"39335":0,"39336":0,"39337":0,"39338":0,"39339":0,"39340":0,"39341":0,"39342":0,"39343":0,"39344":0,"39345":0,"39346":0,"39347":0,"39348":0,"39349":1,"39350":0,"39351":0,"39352":0,"39353":0,"39354":0,"39355":0,"39356":0,"39357":0,"39358":0,"39359":1,"39360":0,"39361":0,"39362":1,"39363":0,"39364":0,"39365":0,"39366":0,"39367":0,"39368":0,"39369":0,"39370":0,"39371":1,"39372":0,"39373":0,"39374":0,"39375":1,"39376":0,"39377":0,"39378":0,"39379":0,"39380":0,"39381":0,"39382":1,"39383":0,"39384":0,"39385":1,"39386":1,"39387":1,"39388":1,"39389":0,"39390":1,"39391":1,"39392":0,"39393":0,"39394":0,"39395":0,"39396":1,"39397":1,"39398":0,"39399":0,"39400":0,"39401":0,"39402":0,"39403":0,"39404":0,"39405":1,"39406":0,"39407":0,"39408":0,"39409":1,"39410":1,"39411":0,"39412":0,"39413":1,"39414":0,"39415":0,"39416":1,"39417":0,"39418":0,"39419":0,"39420":0,"39421":0,"39422":0,"39423":0,"39424":1,"39425":1,"39426":0,"39427":0,"39428":0,"39429":0,"39430":1,"39431":0,"39432":0,"39433":1,"39434":0,"39435":1,"39436":0,"39437":0,"39438":0,"39439":0,"39440":1,"39441":0,"39442":0,"39443":0,"39444":0,"39445":0,"39446":0,"39447":0,"39448":1,"39449":0,"39450":0,"39451":0,"39452":0,"39453":0,"39454":0,"39455":0,"39456":0,"39457":0,"39458":0,"39459":0,"39460":0,"39461":1,"39462":1,"39463":1,"39464":0,"39465":0,"39466":0,"39467":0,"39468":0,"39469":0,"39470":0,"39471":0,"39472":1,"39473":0,"39474":0,"39475":1,"39476":1,"39477":1,"39478":0,"39479":0,"39480":0,"39481":0,"39482":0,"39483":0,"39484":1,"39485":0,"39486":0,"39487":0,"39488":1,"39489":1,"39490":0,"39491":0,"39492":0,"39493":0,"39494":0,"39495":1,"39496":0,"39497":0,"39498":1,"39499":0,"39500":1,"39501":0,"39502":0,"39503":1,"39504":0,"39505":0,"39506":0,"39507":0,"39508":0,"39509":0,"39510":0,"39511":0,"39512":0,"39513":0,"39514":0,"39515":1,"39516":0,"39517":0,"39518":0,"39519":0,"39520":0,"39521":0,"39522":0,"39523":0,"39524":1,"39525":0,"39526":0,"39527":1,"39528":1,"39529":0,"39530":1,"39531":1,"39532":0,"39533":1,"39534":0,"39535":0,"39536":0,"39537":0,"39538":1,"39539":1,"39540":1,"39541":0,"39542":0,"39543":0,"39544":1,"39545":1,"39546":1,"39547":0,"39548":0,"39549":0,"39550":0,"39551":0,"39552":1,"39553":0,"39554":0,"39555":0,"39556":0,"39557":0,"39558":0,"39559":0,"39560":0,"39561":0,"39562":1,"39563":0,"39564":0,"39565":1,"39566":0,"39567":0,"39568":0,"39569":0,"39570":0,"39571":0,"39572":0,"39573":1,"39574":0,"39575":0,"39576":0,"39577":0,"39578":0,"39579":0,"39580":0,"39581":0,"39582":0,"39583":0,"39584":0,"39585":1,"39586":0,"39587":0,"39588":0,"39589":0,"39590":0,"39591":0,"39592":0,"39593":1,"39594":1,"39595":0,"39596":0,"39597":1,"39598":0,"39599":0,"39600":0,"39601":0,"39602":0,"39603":0,"39604":0,"39605":1,"39606":1,"39607":0,"39608":0,"39609":0,"39610":0,"39611":0,"39612":0,"39613":0,"39614":0,"39615":1,"39616":0,"39617":1,"39618":0,"39619":0,"39620":1,"39621":1,"39622":1,"39623":0,"39624":0,"39625":0,"39626":0,"39627":1,"39628":0,"39629":0,"39630":0,"39631":0,"39632":0,"39633":0,"39634":1,"39635":0,"39636":1,"39637":0,"39638":0,"39639":1,"39640":0,"39641":1,"39642":0,"39643":1,"39644":1,"39645":0,"39646":1,"39647":0,"39648":0,"39649":0,"39650":0,"39651":1,"39652":0,"39653":0,"39654":0,"39655":0,"39656":0,"39657":0,"39658":0,"39659":0,"39660":0,"39661":1,"39662":1,"39663":0,"39664":0,"39665":1,"39666":0,"39667":0,"39668":0,"39669":0,"39670":0,"39671":0,"39672":0,"39673":0,"39674":0,"39675":0,"39676":0,"39677":1,"39678":1,"39679":0,"39680":0,"39681":0,"39682":0,"39683":1,"39684":0,"39685":0,"39686":0,"39687":0,"39688":0,"39689":1,"39690":0,"39691":0,"39692":0,"39693":0,"39694":0,"39695":0,"39696":0,"39697":1,"39698":0,"39699":1,"39700":0,"39701":0,"39702":0,"39703":0,"39704":0,"39705":1,"39706":0,"39707":0,"39708":0,"39709":0,"39710":0,"39711":0,"39712":0,"39713":0,"39714":0,"39715":1,"39716":0,"39717":0,"39718":0,"39719":0,"39720":0,"39721":0,"39722":0,"39723":0,"39724":0,"39725":0,"39726":0,"39727":0,"39728":0,"39729":0,"39730":0,"39731":0,"39732":0,"39733":0,"39734":1,"39735":0,"39736":0,"39737":1,"39738":0,"39739":0,"39740":1,"39741":0,"39742":0,"39743":1,"39744":0,"39745":0,"39746":0,"39747":1,"39748":0,"39749":1,"39750":0,"39751":0,"39752":1,"39753":1,"39754":1,"39755":1,"39756":0,"39757":0,"39758":1,"39759":0,"39760":0,"39761":0,"39762":1,"39763":0,"39764":0,"39765":1,"39766":0,"39767":0,"39768":1,"39769":1,"39770":0,"39771":0,"39772":0,"39773":0,"39774":1,"39775":0,"39776":1,"39777":0,"39778":0,"39779":0,"39780":0,"39781":0,"39782":0,"39783":0,"39784":0,"39785":0,"39786":1,"39787":0,"39788":0,"39789":0,"39790":0,"39791":0,"39792":0,"39793":1,"39794":0,"39795":0,"39796":0,"39797":0,"39798":0,"39799":0,"39800":0,"39801":0,"39802":1,"39803":1,"39804":0,"39805":1,"39806":0,"39807":0,"39808":0,"39809":1,"39810":0,"39811":0,"39812":1,"39813":0,"39814":0,"39815":0,"39816":1,"39817":0,"39818":0,"39819":1,"39820":1,"39821":1,"39822":0,"39823":0,"39824":0,"39825":0,"39826":0,"39827":0,"39828":1,"39829":0,"39830":0,"39831":0,"39832":0,"39833":0,"39834":0,"39835":0,"39836":0,"39837":0,"39838":1,"39839":1,"39840":1,"39841":0,"39842":0,"39843":0,"39844":0,"39845":0,"39846":0,"39847":0,"39848":1,"39849":0,"39850":0,"39851":0,"39852":1,"39853":0,"39854":0,"39855":0,"39856":0,"39857":0,"39858":1,"39859":0,"39860":0,"39861":0,"39862":1,"39863":0,"39864":1,"39865":1,"39866":0,"39867":0,"39868":1,"39869":0,"39870":0,"39871":0,"39872":0,"39873":0,"39874":0,"39875":0,"39876":0,"39877":1,"39878":0,"39879":0,"39880":0,"39881":0,"39882":1,"39883":0,"39884":0,"39885":0,"39886":1,"39887":1,"39888":1,"39889":0,"39890":0,"39891":0,"39892":0,"39893":0,"39894":0,"39895":1,"39896":0,"39897":1,"39898":0,"39899":0,"39900":0,"39901":1,"39902":1,"39903":0,"39904":0,"39905":0,"39906":0,"39907":0,"39908":0,"39909":0,"39910":1,"39911":0,"39912":0,"39913":0,"39914":0,"39915":1,"39916":0,"39917":0,"39918":1,"39919":0,"39920":0,"39921":0,"39922":0,"39923":0,"39924":1,"39925":1,"39926":0,"39927":1,"39928":0,"39929":0,"39930":0,"39931":0,"39932":0,"39933":0,"39934":0,"39935":0,"39936":1,"39937":0,"39938":0,"39939":0,"39940":1,"39941":1,"39942":0,"39943":1,"39944":0,"39945":0,"39946":0,"39947":1,"39948":0,"39949":0,"39950":0,"39951":0,"39952":0,"39953":0,"39954":0,"39955":0,"39956":0,"39957":0,"39958":0,"39959":0,"39960":0,"39961":0,"39962":0,"39963":1,"39964":0,"39965":1,"39966":0,"39967":1,"39968":1,"39969":0,"39970":0,"39971":0,"39972":1,"39973":1,"39974":0,"39975":0,"39976":1,"39977":0,"39978":0,"39979":0,"39980":0,"39981":0,"39982":1,"39983":1,"39984":1,"39985":1,"39986":1,"39987":0,"39988":0,"39989":0,"39990":0,"39991":1,"39992":0,"39993":0,"39994":0,"39995":0,"39996":0,"39997":0,"39998":0,"39999":0,"40000":0,"40001":0,"40002":0,"40003":1,"40004":0,"40005":0,"40006":0,"40007":1,"40008":0,"40009":1,"40010":0,"40011":0,"40012":1,"40013":0,"40014":1,"40015":1,"40016":0,"40017":0,"40018":0,"40019":0,"40020":1,"40021":0,"40022":1,"40023":0,"40024":0,"40025":1,"40026":0,"40027":0,"40028":0,"40029":0,"40030":0,"40031":1,"40032":0,"40033":1,"40034":0,"40035":0,"40036":0,"40037":1,"40038":0,"40039":0,"40040":0,"40041":0,"40042":1,"40043":0,"40044":0,"40045":0,"40046":0,"40047":0,"40048":0,"40049":0,"40050":1,"40051":0,"40052":1,"40053":0,"40054":0,"40055":0,"40056":0,"40057":0,"40058":0,"40059":0,"40060":0,"40061":1,"40062":0,"40063":0,"40064":0,"40065":0,"40066":0,"40067":0,"40068":0,"40069":0,"40070":0,"40071":1,"40072":0,"40073":1,"40074":0,"40075":0,"40076":0,"40077":0,"40078":1,"40079":0,"40080":0,"40081":1,"40082":0,"40083":0,"40084":1,"40085":0,"40086":0,"40087":0,"40088":0,"40089":0,"40090":0,"40091":0,"40092":0,"40093":1,"40094":0,"40095":1,"40096":0,"40097":0,"40098":0,"40099":0,"40100":0,"40101":0,"40102":1,"40103":0,"40104":0,"40105":0,"40106":0,"40107":1,"40108":1,"40109":0,"40110":0,"40111":1,"40112":1,"40113":1,"40114":0,"40115":0,"40116":0,"40117":1,"40118":1,"40119":1,"40120":1,"40121":0,"40122":0,"40123":0,"40124":0,"40125":1,"40126":0,"40127":0,"40128":0,"40129":0,"40130":0,"40131":0,"40132":0,"40133":0,"40134":0,"40135":0,"40136":0,"40137":0,"40138":0,"40139":1,"40140":0,"40141":1,"40142":0,"40143":0,"40144":0,"40145":1,"40146":0,"40147":1,"40148":0,"40149":1,"40150":0,"40151":0,"40152":0,"40153":0,"40154":0,"40155":0,"40156":0,"40157":0,"40158":0,"40159":1,"40160":0,"40161":0,"40162":0,"40163":1,"40164":0,"40165":0,"40166":1,"40167":0,"40168":1,"40169":1,"40170":1,"40171":1,"40172":0,"40173":0,"40174":0,"40175":0,"40176":0,"40177":0,"40178":0,"40179":0,"40180":0,"40181":0,"40182":0,"40183":0,"40184":0,"40185":0,"40186":0,"40187":0,"40188":0,"40189":1,"40190":0,"40191":0,"40192":1,"40193":1,"40194":0,"40195":0,"40196":1,"40197":0,"40198":0,"40199":0,"40200":0,"40201":0,"40202":1,"40203":1,"40204":0,"40205":1,"40206":1,"40207":1,"40208":1,"40209":0,"40210":0,"40211":1,"40212":0,"40213":0,"40214":0,"40215":1,"40216":0,"40217":0,"40218":0,"40219":0,"40220":1,"40221":1,"40222":1,"40223":1,"40224":0,"40225":0,"40226":0,"40227":0,"40228":0,"40229":0,"40230":0,"40231":0,"40232":0,"40233":0,"40234":1,"40235":0,"40236":0,"40237":0,"40238":0,"40239":0,"40240":0,"40241":0,"40242":1,"40243":1,"40244":1,"40245":1,"40246":0,"40247":0,"40248":0,"40249":1,"40250":1,"40251":0,"40252":0,"40253":0,"40254":0,"40255":1,"40256":0,"40257":0,"40258":0,"40259":0,"40260":0,"40261":0,"40262":0,"40263":0,"40264":0,"40265":0,"40266":0,"40267":1,"40268":0,"40269":0,"40270":0,"40271":0,"40272":1,"40273":1,"40274":0,"40275":0,"40276":0,"40277":0,"40278":1,"40279":0,"40280":1,"40281":0,"40282":0,"40283":1,"40284":0,"40285":0,"40286":0,"40287":0,"40288":0,"40289":1,"40290":0,"40291":0,"40292":0,"40293":0,"40294":0,"40295":1,"40296":1,"40297":0,"40298":0,"40299":0,"40300":1,"40301":0,"40302":0,"40303":0,"40304":0,"40305":0,"40306":0,"40307":0,"40308":0,"40309":1,"40310":0,"40311":0,"40312":0,"40313":0,"40314":0,"40315":0,"40316":0,"40317":0,"40318":0,"40319":0,"40320":1,"40321":0,"40322":0,"40323":1,"40324":0,"40325":0,"40326":0,"40327":1,"40328":0,"40329":1,"40330":0,"40331":0,"40332":0,"40333":0,"40334":1,"40335":0,"40336":0,"40337":0,"40338":0,"40339":0,"40340":0,"40341":0,"40342":0,"40343":1,"40344":1,"40345":0,"40346":1,"40347":0,"40348":0,"40349":0,"40350":0,"40351":1,"40352":0,"40353":0,"40354":0,"40355":0,"40356":0,"40357":0,"40358":0,"40359":0,"40360":0,"40361":0,"40362":1,"40363":0,"40364":0,"40365":1,"40366":1,"40367":0,"40368":0,"40369":0,"40370":0,"40371":0,"40372":1,"40373":0,"40374":0,"40375":0,"40376":0,"40377":0,"40378":0,"40379":0,"40380":0,"40381":0,"40382":1,"40383":0,"40384":0,"40385":0,"40386":0,"40387":0,"40388":1,"40389":1,"40390":0,"40391":1,"40392":0,"40393":1,"40394":1,"40395":1,"40396":0,"40397":0,"40398":0,"40399":0,"40400":0,"40401":0,"40402":0,"40403":1,"40404":0,"40405":0,"40406":0,"40407":0,"40408":1,"40409":1,"40410":1,"40411":0,"40412":0,"40413":0,"40414":0,"40415":0,"40416":0,"40417":0,"40418":0,"40419":0,"40420":0,"40421":0,"40422":1,"40423":0,"40424":0,"40425":0,"40426":0,"40427":0,"40428":0,"40429":0,"40430":0,"40431":0,"40432":1,"40433":1,"40434":0,"40435":0,"40436":1,"40437":0,"40438":0,"40439":0,"40440":1,"40441":1,"40442":0,"40443":1,"40444":1,"40445":0,"40446":1,"40447":0,"40448":0,"40449":1,"40450":0,"40451":0,"40452":0,"40453":0,"40454":0,"40455":0,"40456":0,"40457":0,"40458":0,"40459":0,"40460":0,"40461":0,"40462":0,"40463":0,"40464":0,"40465":0,"40466":1,"40467":0,"40468":0,"40469":0,"40470":0,"40471":0,"40472":0,"40473":0,"40474":0,"40475":0,"40476":0,"40477":1,"40478":0,"40479":0,"40480":0,"40481":1,"40482":0,"40483":0,"40484":0,"40485":0,"40486":0,"40487":0,"40488":0,"40489":0,"40490":1,"40491":1,"40492":0,"40493":1,"40494":0,"40495":0,"40496":0,"40497":0,"40498":0,"40499":0,"40500":0,"40501":0,"40502":1,"40503":0,"40504":0,"40505":1,"40506":0,"40507":0,"40508":0,"40509":0,"40510":0,"40511":0,"40512":0,"40513":0,"40514":1,"40515":0,"40516":0,"40517":0,"40518":0,"40519":0,"40520":0,"40521":0,"40522":1,"40523":0,"40524":0,"40525":0,"40526":1,"40527":1,"40528":1,"40529":0,"40530":0,"40531":0,"40532":0,"40533":0,"40534":0,"40535":0,"40536":0,"40537":0,"40538":0,"40539":0,"40540":1,"40541":1,"40542":0,"40543":0,"40544":0,"40545":1,"40546":0,"40547":0,"40548":1,"40549":0,"40550":0,"40551":1,"40552":1,"40553":0,"40554":0,"40555":0,"40556":1,"40557":0,"40558":0,"40559":0,"40560":0,"40561":0,"40562":0,"40563":0,"40564":0,"40565":0,"40566":0,"40567":1,"40568":0,"40569":0,"40570":0,"40571":0,"40572":0,"40573":0,"40574":0,"40575":1,"40576":0,"40577":1,"40578":0,"40579":0,"40580":0,"40581":1,"40582":1,"40583":0,"40584":0,"40585":0,"40586":1,"40587":0,"40588":1,"40589":1,"40590":0,"40591":1,"40592":0,"40593":0,"40594":0,"40595":0,"40596":0,"40597":1,"40598":0,"40599":0,"40600":1,"40601":0,"40602":1,"40603":0,"40604":0,"40605":0,"40606":0,"40607":1,"40608":1,"40609":0,"40610":0,"40611":0,"40612":1,"40613":1,"40614":0,"40615":0,"40616":0,"40617":1,"40618":0,"40619":0,"40620":0,"40621":0,"40622":0,"40623":0,"40624":0,"40625":0,"40626":0,"40627":0,"40628":0,"40629":0,"40630":1,"40631":0,"40632":0,"40633":0,"40634":0,"40635":0,"40636":0,"40637":0,"40638":0,"40639":0,"40640":0,"40641":0,"40642":0,"40643":0,"40644":0,"40645":0,"40646":1,"40647":0,"40648":0,"40649":0,"40650":1,"40651":0,"40652":1,"40653":1,"40654":0,"40655":0,"40656":0,"40657":1,"40658":0,"40659":0,"40660":0,"40661":1,"40662":0,"40663":1,"40664":0,"40665":1,"40666":0,"40667":0,"40668":0,"40669":0,"40670":1,"40671":1,"40672":0,"40673":0,"40674":0,"40675":1,"40676":0,"40677":0,"40678":0,"40679":1,"40680":1,"40681":0,"40682":1,"40683":0,"40684":0,"40685":0,"40686":0,"40687":0,"40688":0,"40689":0,"40690":0,"40691":0,"40692":0,"40693":0,"40694":0,"40695":1,"40696":0,"40697":0,"40698":0,"40699":1,"40700":1,"40701":0,"40702":0,"40703":0,"40704":1,"40705":0,"40706":0,"40707":1,"40708":0,"40709":1,"40710":0,"40711":0,"40712":1,"40713":1,"40714":0,"40715":0,"40716":0,"40717":0,"40718":0,"40719":1,"40720":0,"40721":0,"40722":1,"40723":0,"40724":0,"40725":0,"40726":0,"40727":1,"40728":1,"40729":0,"40730":1,"40731":0,"40732":0,"40733":0,"40734":0,"40735":1,"40736":0,"40737":1,"40738":0,"40739":0,"40740":0,"40741":0,"40742":0,"40743":0,"40744":1,"40745":1,"40746":0,"40747":1,"40748":0,"40749":0,"40750":0,"40751":1,"40752":0,"40753":1,"40754":1,"40755":1,"40756":1,"40757":0,"40758":1,"40759":0,"40760":0,"40761":0,"40762":0,"40763":0,"40764":0,"40765":0,"40766":0,"40767":0,"40768":0,"40769":0,"40770":0,"40771":0,"40772":0,"40773":1,"40774":0,"40775":0,"40776":0,"40777":0,"40778":1,"40779":0,"40780":0,"40781":0,"40782":1,"40783":0,"40784":1,"40785":0,"40786":0,"40787":0,"40788":0,"40789":0,"40790":1,"40791":1,"40792":1,"40793":0,"40794":0,"40795":0,"40796":0,"40797":1,"40798":0,"40799":0,"40800":0,"40801":0,"40802":1,"40803":0,"40804":0,"40805":0,"40806":0,"40807":0,"40808":0,"40809":0,"40810":1,"40811":1,"40812":0,"40813":0,"40814":0,"40815":0,"40816":0,"40817":1,"40818":0,"40819":0,"40820":0,"40821":0,"40822":0,"40823":0,"40824":0,"40825":0,"40826":0,"40827":1,"40828":0,"40829":0,"40830":1,"40831":0,"40832":0,"40833":0,"40834":0,"40835":0,"40836":0,"40837":0,"40838":0,"40839":1,"40840":0,"40841":0,"40842":0,"40843":0,"40844":1,"40845":0,"40846":1,"40847":0,"40848":1,"40849":1,"40850":0,"40851":0,"40852":0,"40853":0,"40854":0,"40855":0,"40856":0,"40857":0,"40858":1,"40859":1,"40860":0,"40861":1,"40862":1,"40863":0,"40864":1,"40865":0,"40866":0,"40867":0,"40868":0,"40869":0,"40870":0,"40871":0,"40872":0,"40873":0,"40874":0,"40875":0,"40876":0,"40877":1,"40878":0,"40879":0,"40880":0,"40881":1,"40882":0,"40883":0,"40884":0,"40885":0,"40886":0,"40887":0,"40888":0,"40889":0,"40890":0,"40891":1,"40892":0,"40893":0,"40894":1,"40895":0,"40896":0,"40897":0,"40898":0,"40899":0,"40900":1,"40901":1,"40902":1,"40903":0,"40904":0,"40905":0,"40906":0,"40907":0,"40908":0,"40909":1,"40910":0,"40911":0,"40912":1,"40913":0,"40914":1,"40915":0,"40916":0,"40917":0,"40918":0,"40919":0,"40920":0,"40921":1,"40922":0,"40923":0,"40924":0,"40925":0,"40926":1,"40927":0,"40928":0,"40929":0,"40930":0,"40931":0,"40932":0,"40933":0,"40934":0,"40935":0,"40936":1,"40937":0,"40938":0,"40939":0,"40940":1,"40941":0,"40942":0,"40943":0,"40944":1,"40945":0,"40946":0,"40947":0,"40948":1,"40949":0,"40950":0,"40951":0,"40952":0,"40953":0,"40954":0,"40955":0,"40956":0,"40957":0,"40958":0,"40959":1,"40960":0,"40961":1,"40962":0,"40963":0,"40964":0,"40965":0,"40966":0,"40967":1,"40968":0,"40969":1,"40970":0,"40971":0,"40972":0,"40973":0,"40974":0,"40975":0,"40976":0,"40977":0,"40978":0,"40979":1,"40980":0,"40981":0,"40982":1,"40983":0,"40984":1,"40985":0,"40986":0,"40987":0,"40988":0,"40989":0,"40990":1,"40991":0,"40992":0,"40993":0,"40994":0,"40995":0,"40996":0,"40997":0,"40998":0,"40999":0,"41000":1,"41001":0,"41002":0,"41003":0,"41004":0,"41005":0,"41006":0,"41007":0,"41008":0,"41009":0,"41010":0,"41011":0,"41012":0,"41013":0,"41014":0,"41015":0,"41016":0,"41017":0,"41018":0,"41019":0,"41020":0,"41021":1,"41022":0,"41023":0,"41024":0,"41025":0,"41026":0,"41027":0,"41028":1,"41029":0,"41030":0,"41031":0,"41032":0,"41033":0,"41034":0,"41035":0,"41036":1,"41037":1,"41038":0,"41039":1,"41040":0,"41041":0,"41042":0,"41043":0,"41044":0,"41045":0,"41046":1,"41047":0,"41048":0,"41049":0,"41050":1,"41051":0,"41052":0,"41053":0,"41054":0,"41055":0,"41056":0,"41057":0,"41058":0,"41059":1,"41060":0,"41061":1,"41062":0,"41063":0,"41064":1,"41065":0,"41066":0,"41067":1,"41068":0,"41069":1,"41070":1,"41071":0,"41072":0,"41073":1,"41074":0,"41075":0,"41076":0,"41077":0,"41078":0,"41079":0,"41080":0,"41081":0,"41082":0,"41083":0,"41084":0,"41085":1,"41086":0,"41087":1,"41088":0,"41089":0,"41090":0,"41091":0,"41092":0,"41093":0,"41094":0,"41095":1,"41096":0,"41097":0,"41098":0,"41099":0,"41100":0,"41101":0,"41102":0,"41103":0,"41104":1,"41105":0,"41106":0,"41107":1,"41108":1,"41109":0,"41110":0,"41111":0,"41112":0,"41113":0,"41114":0,"41115":0,"41116":0,"41117":0,"41118":0,"41119":0,"41120":0,"41121":1,"41122":0,"41123":0,"41124":1,"41125":0,"41126":1,"41127":1,"41128":0,"41129":1,"41130":0,"41131":0,"41132":0,"41133":1,"41134":0,"41135":0,"41136":0,"41137":0,"41138":1,"41139":0,"41140":0,"41141":1,"41142":0,"41143":1,"41144":0,"41145":0,"41146":0,"41147":0,"41148":1,"41149":0,"41150":0,"41151":1,"41152":1,"41153":0,"41154":0,"41155":0,"41156":0,"41157":1,"41158":0,"41159":0,"41160":0,"41161":0,"41162":0,"41163":0,"41164":0,"41165":0,"41166":0,"41167":1,"41168":0,"41169":0,"41170":0,"41171":0,"41172":0,"41173":0,"41174":1,"41175":0,"41176":1,"41177":1,"41178":0,"41179":0,"41180":0,"41181":0,"41182":0,"41183":0,"41184":0,"41185":0,"41186":1,"41187":0,"41188":0,"41189":0,"41190":0,"41191":1,"41192":0,"41193":0,"41194":1,"41195":0,"41196":0,"41197":0,"41198":0,"41199":0,"41200":0,"41201":0,"41202":1,"41203":1,"41204":0,"41205":0,"41206":1,"41207":1,"41208":0,"41209":1,"41210":0,"41211":1,"41212":1,"41213":0,"41214":0,"41215":0,"41216":0,"41217":0,"41218":0,"41219":0,"41220":1,"41221":0,"41222":0,"41223":0,"41224":0,"41225":1,"41226":0,"41227":0,"41228":0,"41229":1,"41230":0,"41231":0,"41232":0,"41233":1,"41234":0,"41235":0,"41236":0,"41237":0,"41238":0,"41239":0,"41240":0,"41241":1,"41242":1,"41243":0,"41244":1,"41245":0,"41246":0,"41247":0,"41248":1,"41249":1,"41250":1,"41251":1,"41252":0,"41253":0,"41254":0,"41255":0,"41256":1,"41257":0,"41258":0,"41259":0,"41260":0,"41261":1,"41262":0,"41263":0,"41264":1,"41265":0,"41266":0,"41267":1,"41268":0,"41269":0,"41270":0,"41271":1,"41272":0,"41273":0,"41274":0,"41275":0,"41276":0,"41277":0,"41278":0,"41279":0,"41280":1,"41281":0,"41282":0,"41283":0,"41284":1,"41285":0,"41286":1,"41287":0,"41288":0,"41289":0,"41290":0,"41291":0,"41292":0,"41293":1,"41294":0,"41295":0,"41296":0,"41297":0,"41298":0,"41299":0,"41300":0,"41301":1,"41302":0,"41303":0,"41304":1,"41305":0,"41306":1,"41307":0,"41308":0,"41309":0,"41310":1,"41311":0,"41312":0,"41313":0,"41314":0,"41315":1,"41316":1,"41317":0,"41318":0,"41319":0,"41320":0,"41321":0,"41322":1,"41323":0,"41324":0,"41325":0,"41326":0,"41327":0,"41328":0,"41329":0,"41330":0,"41331":0,"41332":0,"41333":1,"41334":0,"41335":0,"41336":0,"41337":0,"41338":1,"41339":0,"41340":1,"41341":0,"41342":1,"41343":0,"41344":0,"41345":0,"41346":1,"41347":1,"41348":0,"41349":0,"41350":0,"41351":0,"41352":0,"41353":1,"41354":0,"41355":0,"41356":0,"41357":0,"41358":0,"41359":0,"41360":0,"41361":1,"41362":0,"41363":0,"41364":0,"41365":1,"41366":0,"41367":1,"41368":0,"41369":1,"41370":0,"41371":0,"41372":0,"41373":0,"41374":0,"41375":1,"41376":1,"41377":0,"41378":0,"41379":0,"41380":1,"41381":0,"41382":1,"41383":0,"41384":1,"41385":1,"41386":0,"41387":0,"41388":0,"41389":0,"41390":0,"41391":1,"41392":0,"41393":0,"41394":0,"41395":0,"41396":0,"41397":0,"41398":1,"41399":0,"41400":1,"41401":1,"41402":0,"41403":0,"41404":0,"41405":0,"41406":0,"41407":0,"41408":1,"41409":0,"41410":0,"41411":0,"41412":1,"41413":0,"41414":1,"41415":0,"41416":1,"41417":0,"41418":0,"41419":0,"41420":1,"41421":0,"41422":0,"41423":1,"41424":0,"41425":1,"41426":1,"41427":1,"41428":0,"41429":0,"41430":0,"41431":0,"41432":0,"41433":0,"41434":0,"41435":0,"41436":0,"41437":0,"41438":1,"41439":0,"41440":0,"41441":1,"41442":0,"41443":0,"41444":0,"41445":0,"41446":1,"41447":0,"41448":0,"41449":1,"41450":1,"41451":0,"41452":0,"41453":1,"41454":0,"41455":0,"41456":0,"41457":1,"41458":0,"41459":0,"41460":0,"41461":0,"41462":0,"41463":0,"41464":1,"41465":0,"41466":1,"41467":1,"41468":1,"41469":0,"41470":0,"41471":1,"41472":0,"41473":0,"41474":1,"41475":0,"41476":0,"41477":1,"41478":0,"41479":0,"41480":0,"41481":1,"41482":0,"41483":0,"41484":1,"41485":0,"41486":1,"41487":1,"41488":0,"41489":0,"41490":0,"41491":0,"41492":0,"41493":0,"41494":0,"41495":0,"41496":0,"41497":0,"41498":0,"41499":0,"41500":1,"41501":0,"41502":0,"41503":0,"41504":0,"41505":1,"41506":0,"41507":1,"41508":0,"41509":1,"41510":0,"41511":0,"41512":0,"41513":0,"41514":0,"41515":0,"41516":0,"41517":1,"41518":0,"41519":0,"41520":1,"41521":0,"41522":0,"41523":0,"41524":0,"41525":1,"41526":1,"41527":0,"41528":0,"41529":0,"41530":1,"41531":0,"41532":0,"41533":0,"41534":0,"41535":0,"41536":0,"41537":0,"41538":0,"41539":0,"41540":0,"41541":0,"41542":1,"41543":0,"41544":0,"41545":1,"41546":0,"41547":1,"41548":0,"41549":1,"41550":0,"41551":0,"41552":0,"41553":1,"41554":0,"41555":0,"41556":1,"41557":0,"41558":0,"41559":1,"41560":0,"41561":0,"41562":0,"41563":0,"41564":0,"41565":1,"41566":0,"41567":0,"41568":0,"41569":0,"41570":0,"41571":0,"41572":0,"41573":0,"41574":0,"41575":0,"41576":1,"41577":1,"41578":1,"41579":0,"41580":0,"41581":0,"41582":0,"41583":0,"41584":0,"41585":0,"41586":1,"41587":0,"41588":0,"41589":0,"41590":0,"41591":0,"41592":0,"41593":1,"41594":0,"41595":0,"41596":0,"41597":0,"41598":0,"41599":1,"41600":0,"41601":0,"41602":1,"41603":0,"41604":0,"41605":0,"41606":0,"41607":0,"41608":1,"41609":0,"41610":0,"41611":0,"41612":1,"41613":0,"41614":0,"41615":1,"41616":0,"41617":0,"41618":0,"41619":1,"41620":0,"41621":0,"41622":0,"41623":0,"41624":0,"41625":0,"41626":0,"41627":0,"41628":0,"41629":0,"41630":0,"41631":1,"41632":0,"41633":0,"41634":0,"41635":0,"41636":1,"41637":1,"41638":0,"41639":0,"41640":0,"41641":1,"41642":0,"41643":1,"41644":0,"41645":0,"41646":0,"41647":1,"41648":1,"41649":0,"41650":0,"41651":0,"41652":0,"41653":0,"41654":0,"41655":0,"41656":1,"41657":0,"41658":0,"41659":0,"41660":0,"41661":1,"41662":0,"41663":0,"41664":1,"41665":0,"41666":1,"41667":0,"41668":0,"41669":0,"41670":0,"41671":0,"41672":0,"41673":0,"41674":1,"41675":1,"41676":0,"41677":0,"41678":0,"41679":0,"41680":0,"41681":0,"41682":0,"41683":1,"41684":0,"41685":1,"41686":0,"41687":0,"41688":0,"41689":0,"41690":0,"41691":1,"41692":0,"41693":1,"41694":1,"41695":0,"41696":0,"41697":1,"41698":1,"41699":0,"41700":1,"41701":0,"41702":0,"41703":0,"41704":0,"41705":0,"41706":0,"41707":0,"41708":0,"41709":1,"41710":0,"41711":0,"41712":1,"41713":1,"41714":0,"41715":0,"41716":0,"41717":0,"41718":1,"41719":0,"41720":0,"41721":0,"41722":0,"41723":0,"41724":0,"41725":1,"41726":0,"41727":0,"41728":0,"41729":0,"41730":0,"41731":0,"41732":0,"41733":0,"41734":0,"41735":0,"41736":0,"41737":0,"41738":0,"41739":1,"41740":1,"41741":1,"41742":0,"41743":0,"41744":0,"41745":0,"41746":0,"41747":0,"41748":0,"41749":0,"41750":0,"41751":0,"41752":0,"41753":1,"41754":0,"41755":0,"41756":0,"41757":0,"41758":1,"41759":0,"41760":0,"41761":0,"41762":1,"41763":0,"41764":0,"41765":1,"41766":0,"41767":0,"41768":0,"41769":1,"41770":0,"41771":0,"41772":0,"41773":0,"41774":0,"41775":0,"41776":0,"41777":0,"41778":0,"41779":0,"41780":0,"41781":0,"41782":1,"41783":0,"41784":0,"41785":1,"41786":0,"41787":0,"41788":0,"41789":0,"41790":0,"41791":1,"41792":1,"41793":0,"41794":0,"41795":0,"41796":0,"41797":0,"41798":1,"41799":1,"41800":0,"41801":0,"41802":1,"41803":0,"41804":0,"41805":1,"41806":0,"41807":0,"41808":1,"41809":0,"41810":0,"41811":1,"41812":0,"41813":0,"41814":1,"41815":0,"41816":0,"41817":0,"41818":0,"41819":1,"41820":0,"41821":0,"41822":0,"41823":1,"41824":0,"41825":0,"41826":0,"41827":1,"41828":1,"41829":0,"41830":1,"41831":0,"41832":0,"41833":0,"41834":0,"41835":0,"41836":0,"41837":1,"41838":0,"41839":0,"41840":0,"41841":0,"41842":0,"41843":0,"41844":0,"41845":0,"41846":0,"41847":0,"41848":0,"41849":0,"41850":0,"41851":0,"41852":0,"41853":0,"41854":0,"41855":0,"41856":0,"41857":0,"41858":0,"41859":0,"41860":1,"41861":0,"41862":0,"41863":0,"41864":0,"41865":1,"41866":0,"41867":1,"41868":0,"41869":0,"41870":0,"41871":1,"41872":0,"41873":0,"41874":0,"41875":0,"41876":0,"41877":1,"41878":0,"41879":0,"41880":0,"41881":0,"41882":0,"41883":0,"41884":0,"41885":0,"41886":0,"41887":0,"41888":1,"41889":1,"41890":1,"41891":0,"41892":1,"41893":1,"41894":0,"41895":0,"41896":0,"41897":1,"41898":1,"41899":1,"41900":0,"41901":1,"41902":0,"41903":0,"41904":0,"41905":0,"41906":0,"41907":0,"41908":0,"41909":0,"41910":1,"41911":0,"41912":0,"41913":0,"41914":0,"41915":0,"41916":1,"41917":0,"41918":1,"41919":0,"41920":0,"41921":0,"41922":1,"41923":0,"41924":0,"41925":0,"41926":1,"41927":0,"41928":0,"41929":0,"41930":0,"41931":0,"41932":0,"41933":0,"41934":0,"41935":0,"41936":0,"41937":0,"41938":0,"41939":0,"41940":0,"41941":0,"41942":0,"41943":0,"41944":0,"41945":1,"41946":0,"41947":0,"41948":0,"41949":0,"41950":1,"41951":0,"41952":1,"41953":0,"41954":0,"41955":0,"41956":0,"41957":0,"41958":0,"41959":1,"41960":1,"41961":1,"41962":0,"41963":0,"41964":0,"41965":0,"41966":0,"41967":0,"41968":0,"41969":0,"41970":1,"41971":0,"41972":0,"41973":0,"41974":0,"41975":0,"41976":1,"41977":0,"41978":1,"41979":0,"41980":1,"41981":0,"41982":0,"41983":0,"41984":0,"41985":1,"41986":0,"41987":0,"41988":0,"41989":0,"41990":0,"41991":0,"41992":0,"41993":0,"41994":1,"41995":0,"41996":0,"41997":0,"41998":0,"41999":0,"42000":1,"42001":0,"42002":1,"42003":0,"42004":1,"42005":0,"42006":1,"42007":1,"42008":0,"42009":0,"42010":0,"42011":1,"42012":0,"42013":0,"42014":1,"42015":0,"42016":0,"42017":0,"42018":1,"42019":0,"42020":0,"42021":1,"42022":0,"42023":1,"42024":0,"42025":0,"42026":0,"42027":0,"42028":0,"42029":0,"42030":1,"42031":1,"42032":0,"42033":0,"42034":0,"42035":0,"42036":1,"42037":1,"42038":0,"42039":1,"42040":0,"42041":0,"42042":1,"42043":1,"42044":0,"42045":0,"42046":0,"42047":0,"42048":0,"42049":1,"42050":0,"42051":0,"42052":0,"42053":0,"42054":0,"42055":1,"42056":0,"42057":0,"42058":0,"42059":0,"42060":0,"42061":0,"42062":0,"42063":1,"42064":0,"42065":0,"42066":0,"42067":1,"42068":0,"42069":0,"42070":1,"42071":0,"42072":0,"42073":0,"42074":0,"42075":0,"42076":0,"42077":1,"42078":0,"42079":1,"42080":0,"42081":0,"42082":0,"42083":0,"42084":0,"42085":0,"42086":1,"42087":0,"42088":0,"42089":0,"42090":0,"42091":0,"42092":0,"42093":1,"42094":0,"42095":0,"42096":0,"42097":1,"42098":1,"42099":1,"42100":0,"42101":1,"42102":0,"42103":0,"42104":0,"42105":0,"42106":0,"42107":0,"42108":0,"42109":0,"42110":0,"42111":0,"42112":0,"42113":0,"42114":0,"42115":0,"42116":1,"42117":1,"42118":0,"42119":0,"42120":0,"42121":1,"42122":0,"42123":1,"42124":0,"42125":0,"42126":1,"42127":0,"42128":0,"42129":1,"42130":1,"42131":0,"42132":0,"42133":1,"42134":1,"42135":0,"42136":1,"42137":1,"42138":0,"42139":0,"42140":0,"42141":0,"42142":1,"42143":0,"42144":0,"42145":0,"42146":0,"42147":1,"42148":0,"42149":0,"42150":1,"42151":0,"42152":1,"42153":0,"42154":0,"42155":0,"42156":0,"42157":1,"42158":0,"42159":0,"42160":0,"42161":1,"42162":0,"42163":0,"42164":0,"42165":1,"42166":1,"42167":1,"42168":0,"42169":1,"42170":0,"42171":0,"42172":1,"42173":0,"42174":0,"42175":0,"42176":0,"42177":0,"42178":1,"42179":0,"42180":0,"42181":0,"42182":0,"42183":1,"42184":0,"42185":1,"42186":0,"42187":0,"42188":0,"42189":0,"42190":0,"42191":1,"42192":0,"42193":0,"42194":0,"42195":1,"42196":1,"42197":0,"42198":0,"42199":0,"42200":1,"42201":1,"42202":0,"42203":0,"42204":0,"42205":0,"42206":0,"42207":0,"42208":0,"42209":0,"42210":0,"42211":0,"42212":0,"42213":0,"42214":0,"42215":1,"42216":0,"42217":0,"42218":0,"42219":1,"42220":0,"42221":0,"42222":0,"42223":0,"42224":0,"42225":0,"42226":0,"42227":0,"42228":0,"42229":0,"42230":0,"42231":1,"42232":0,"42233":0,"42234":0,"42235":0,"42236":0,"42237":0,"42238":0,"42239":0,"42240":1,"42241":0,"42242":0,"42243":0,"42244":0,"42245":1,"42246":0,"42247":0,"42248":0,"42249":1,"42250":0,"42251":0,"42252":0,"42253":0,"42254":0,"42255":0,"42256":0,"42257":0,"42258":0,"42259":0,"42260":0,"42261":0,"42262":0,"42263":0,"42264":0,"42265":1,"42266":0,"42267":0,"42268":0,"42269":0,"42270":0,"42271":0,"42272":0,"42273":0,"42274":0,"42275":0,"42276":1,"42277":0,"42278":0,"42279":0,"42280":0,"42281":0,"42282":0,"42283":0,"42284":0,"42285":0,"42286":0,"42287":0,"42288":1,"42289":0,"42290":0,"42291":0,"42292":1,"42293":0,"42294":0,"42295":0,"42296":0,"42297":1,"42298":0,"42299":1,"42300":1,"42301":0,"42302":0,"42303":0,"42304":0,"42305":0,"42306":0,"42307":0,"42308":0,"42309":0,"42310":0,"42311":0,"42312":1,"42313":0,"42314":1,"42315":0,"42316":0,"42317":0,"42318":0,"42319":1,"42320":0,"42321":0,"42322":1,"42323":0,"42324":1,"42325":0,"42326":1,"42327":1,"42328":0,"42329":0,"42330":0,"42331":0,"42332":0,"42333":0,"42334":0,"42335":0,"42336":0,"42337":0,"42338":0,"42339":0,"42340":1,"42341":0,"42342":1,"42343":0,"42344":1,"42345":0,"42346":0,"42347":0,"42348":0,"42349":1,"42350":0,"42351":1,"42352":0,"42353":1,"42354":0,"42355":0,"42356":0,"42357":0,"42358":1,"42359":0,"42360":1,"42361":0,"42362":0,"42363":0,"42364":0,"42365":1,"42366":0,"42367":1,"42368":0,"42369":1,"42370":0,"42371":0,"42372":0,"42373":0,"42374":1,"42375":0,"42376":1,"42377":0,"42378":0,"42379":0,"42380":0,"42381":1,"42382":0,"42383":1,"42384":0,"42385":0,"42386":0,"42387":0,"42388":1,"42389":0,"42390":1,"42391":0,"42392":0,"42393":0,"42394":0,"42395":0,"42396":0,"42397":0,"42398":0,"42399":0,"42400":0,"42401":1,"42402":0,"42403":0,"42404":0,"42405":1,"42406":0,"42407":1,"42408":0,"42409":1,"42410":0,"42411":0,"42412":1,"42413":0,"42414":0,"42415":0,"42416":1,"42417":0,"42418":0,"42419":1,"42420":0,"42421":0,"42422":0,"42423":1,"42424":0,"42425":1,"42426":0,"42427":0,"42428":1,"42429":1,"42430":0,"42431":0,"42432":0,"42433":0,"42434":0,"42435":0,"42436":0,"42437":0,"42438":1,"42439":0,"42440":0,"42441":0,"42442":0,"42443":0,"42444":0,"42445":1,"42446":1,"42447":0,"42448":0,"42449":0,"42450":0,"42451":0,"42452":0,"42453":1,"42454":0,"42455":0,"42456":0,"42457":0,"42458":1,"42459":0,"42460":0,"42461":0,"42462":1,"42463":0,"42464":1,"42465":0,"42466":0,"42467":1,"42468":1,"42469":0,"42470":0,"42471":0,"42472":0,"42473":0,"42474":0,"42475":0,"42476":0,"42477":0,"42478":1,"42479":0,"42480":0,"42481":0,"42482":0,"42483":0,"42484":1,"42485":0,"42486":0,"42487":1,"42488":0,"42489":0,"42490":1,"42491":1,"42492":1,"42493":1,"42494":0,"42495":0,"42496":0,"42497":0,"42498":0,"42499":0,"42500":1,"42501":1,"42502":0,"42503":0,"42504":0,"42505":1,"42506":0,"42507":0,"42508":0,"42509":1,"42510":1,"42511":0,"42512":0,"42513":0,"42514":1,"42515":0,"42516":0,"42517":0,"42518":1,"42519":1,"42520":1,"42521":1,"42522":0,"42523":1,"42524":1,"42525":1,"42526":0,"42527":0,"42528":0,"42529":0,"42530":0,"42531":1,"42532":0,"42533":0,"42534":0,"42535":1,"42536":0,"42537":0,"42538":1,"42539":1,"42540":0,"42541":0,"42542":0,"42543":0,"42544":0,"42545":0,"42546":1,"42547":0,"42548":1,"42549":0,"42550":0,"42551":0,"42552":1,"42553":0,"42554":0,"42555":0,"42556":0,"42557":0,"42558":0,"42559":0,"42560":1,"42561":0,"42562":0,"42563":0,"42564":1,"42565":0,"42566":0,"42567":0,"42568":0,"42569":0,"42570":1,"42571":0,"42572":0,"42573":1,"42574":0,"42575":0,"42576":0,"42577":0,"42578":0,"42579":0,"42580":1,"42581":0,"42582":0,"42583":0,"42584":0,"42585":0,"42586":1,"42587":0,"42588":0,"42589":0,"42590":0,"42591":0,"42592":1,"42593":0,"42594":1,"42595":0,"42596":0,"42597":0,"42598":1,"42599":0,"42600":1,"42601":0,"42602":0,"42603":0,"42604":0,"42605":0,"42606":0,"42607":1,"42608":0,"42609":0,"42610":0,"42611":1,"42612":0,"42613":0,"42614":1,"42615":0,"42616":0,"42617":0,"42618":1,"42619":0,"42620":0,"42621":0,"42622":0,"42623":0,"42624":0,"42625":0,"42626":0,"42627":0,"42628":0,"42629":1,"42630":0,"42631":0,"42632":0,"42633":1,"42634":0,"42635":0,"42636":0,"42637":0,"42638":0,"42639":1,"42640":1,"42641":0,"42642":1,"42643":0,"42644":1,"42645":0,"42646":0,"42647":0,"42648":0,"42649":0,"42650":0,"42651":0,"42652":0,"42653":1,"42654":0,"42655":0,"42656":0,"42657":1,"42658":0,"42659":0,"42660":1,"42661":0,"42662":0,"42663":0,"42664":1,"42665":0,"42666":0,"42667":0,"42668":0,"42669":0,"42670":0,"42671":1,"42672":0,"42673":0,"42674":0,"42675":0,"42676":0,"42677":1,"42678":1,"42679":1,"42680":0,"42681":1,"42682":0,"42683":0,"42684":0,"42685":0,"42686":1,"42687":0,"42688":0,"42689":1,"42690":0,"42691":0,"42692":0,"42693":0,"42694":0,"42695":0,"42696":1,"42697":0,"42698":0,"42699":0,"42700":0,"42701":1,"42702":0,"42703":0,"42704":1,"42705":0,"42706":0,"42707":1,"42708":0,"42709":0,"42710":0,"42711":0,"42712":0,"42713":0,"42714":0,"42715":1,"42716":0,"42717":0,"42718":0,"42719":1,"42720":0,"42721":1,"42722":1,"42723":0,"42724":0,"42725":0,"42726":0,"42727":0,"42728":0,"42729":0,"42730":0,"42731":0,"42732":0,"42733":1,"42734":0,"42735":0,"42736":0,"42737":1,"42738":0,"42739":0,"42740":0,"42741":0,"42742":0,"42743":0,"42744":1,"42745":1,"42746":0,"42747":0,"42748":0,"42749":1,"42750":1,"42751":0,"42752":0,"42753":0,"42754":0,"42755":0,"42756":0,"42757":1,"42758":0,"42759":0,"42760":0,"42761":0,"42762":0,"42763":1,"42764":0,"42765":1,"42766":0,"42767":0,"42768":0,"42769":1,"42770":0,"42771":1,"42772":0,"42773":0,"42774":0,"42775":0,"42776":1,"42777":0,"42778":0,"42779":0,"42780":0,"42781":0,"42782":1,"42783":0,"42784":0,"42785":0,"42786":0,"42787":0,"42788":0,"42789":0,"42790":0,"42791":0,"42792":1,"42793":0,"42794":0,"42795":0,"42796":0,"42797":0,"42798":0,"42799":0,"42800":0,"42801":0,"42802":0,"42803":1,"42804":0,"42805":0,"42806":0,"42807":0,"42808":0,"42809":0,"42810":0,"42811":0,"42812":0,"42813":1,"42814":0,"42815":0,"42816":0,"42817":0,"42818":0,"42819":1,"42820":1,"42821":0,"42822":0,"42823":0,"42824":0,"42825":0,"42826":0,"42827":1,"42828":0,"42829":1,"42830":0,"42831":1,"42832":0,"42833":1,"42834":1,"42835":0,"42836":0,"42837":0,"42838":0,"42839":0,"42840":0,"42841":0,"42842":0,"42843":1,"42844":0,"42845":0,"42846":1,"42847":1,"42848":1,"42849":1,"42850":0,"42851":0,"42852":0,"42853":0,"42854":0,"42855":0,"42856":1,"42857":0,"42858":0,"42859":0,"42860":0,"42861":0,"42862":1,"42863":0,"42864":0,"42865":0,"42866":0,"42867":0,"42868":0,"42869":0,"42870":0,"42871":0,"42872":1,"42873":0,"42874":1,"42875":0,"42876":0,"42877":1,"42878":1,"42879":0,"42880":0,"42881":0,"42882":0,"42883":0,"42884":0,"42885":1,"42886":1,"42887":1,"42888":1,"42889":0,"42890":1,"42891":0,"42892":1,"42893":0,"42894":1,"42895":1,"42896":0,"42897":0,"42898":0,"42899":1,"42900":0,"42901":0,"42902":0,"42903":0,"42904":0,"42905":0,"42906":0,"42907":0,"42908":0,"42909":1,"42910":0,"42911":0,"42912":0,"42913":0,"42914":0,"42915":0,"42916":0,"42917":0,"42918":0,"42919":0,"42920":1,"42921":1,"42922":0,"42923":0,"42924":1,"42925":1,"42926":0,"42927":0,"42928":0,"42929":0,"42930":1,"42931":0,"42932":0,"42933":0,"42934":1,"42935":0,"42936":0,"42937":0,"42938":0,"42939":0,"42940":1,"42941":1,"42942":0,"42943":0,"42944":1,"42945":0,"42946":0,"42947":1,"42948":0,"42949":1,"42950":1,"42951":0,"42952":0,"42953":1,"42954":0,"42955":1,"42956":0,"42957":0,"42958":0,"42959":1,"42960":0,"42961":0,"42962":1,"42963":0,"42964":0,"42965":0,"42966":0,"42967":1,"42968":1,"42969":0,"42970":1,"42971":0,"42972":0,"42973":0,"42974":1,"42975":1,"42976":0,"42977":0,"42978":0,"42979":0,"42980":0,"42981":0,"42982":0,"42983":0,"42984":0,"42985":0,"42986":0,"42987":0,"42988":1,"42989":0,"42990":1,"42991":1,"42992":0,"42993":1,"42994":0,"42995":0,"42996":0,"42997":0,"42998":1,"42999":1,"43000":0,"43001":0,"43002":0,"43003":0,"43004":0,"43005":0,"43006":1,"43007":1,"43008":0,"43009":0,"43010":1,"43011":1,"43012":0,"43013":0,"43014":0,"43015":0,"43016":0,"43017":0,"43018":0,"43019":0,"43020":1,"43021":0,"43022":1,"43023":0,"43024":0,"43025":1,"43026":0,"43027":0,"43028":0,"43029":0,"43030":0,"43031":0,"43032":0,"43033":0,"43034":0,"43035":0,"43036":0,"43037":0,"43038":1,"43039":0,"43040":0,"43041":0,"43042":0,"43043":0,"43044":1,"43045":0,"43046":0,"43047":0,"43048":1,"43049":1,"43050":0,"43051":0,"43052":0,"43053":0,"43054":0,"43055":0,"43056":0,"43057":0,"43058":0,"43059":1,"43060":0,"43061":0,"43062":0,"43063":1,"43064":0,"43065":0,"43066":0,"43067":0,"43068":0,"43069":0,"43070":0,"43071":0,"43072":0,"43073":1,"43074":1,"43075":0,"43076":1,"43077":0,"43078":0,"43079":0,"43080":0,"43081":0,"43082":0,"43083":1,"43084":1,"43085":1,"43086":0,"43087":0,"43088":0,"43089":0,"43090":1,"43091":1,"43092":0,"43093":1,"43094":1,"43095":0,"43096":1,"43097":0,"43098":1,"43099":0,"43100":0,"43101":0,"43102":0,"43103":0,"43104":1,"43105":0,"43106":0,"43107":1,"43108":1,"43109":0,"43110":0,"43111":1,"43112":1,"43113":0,"43114":0,"43115":0,"43116":0,"43117":1,"43118":0,"43119":0,"43120":0,"43121":1,"43122":1,"43123":0,"43124":1,"43125":0,"43126":0,"43127":1,"43128":1,"43129":0,"43130":0,"43131":0,"43132":0,"43133":1,"43134":0,"43135":0,"43136":0,"43137":0,"43138":0,"43139":1,"43140":0,"43141":1,"43142":0,"43143":0,"43144":1,"43145":0,"43146":1,"43147":0,"43148":0,"43149":0,"43150":0,"43151":0,"43152":0,"43153":1,"43154":0,"43155":0,"43156":0,"43157":0,"43158":1,"43159":1,"43160":0,"43161":1,"43162":0,"43163":0,"43164":0,"43165":0,"43166":0,"43167":1,"43168":0,"43169":1,"43170":0,"43171":0,"43172":1,"43173":0,"43174":0,"43175":0,"43176":0,"43177":1,"43178":0,"43179":0,"43180":0,"43181":0,"43182":0,"43183":0,"43184":0,"43185":1,"43186":0,"43187":0,"43188":0,"43189":0,"43190":0,"43191":0,"43192":0,"43193":1,"43194":1,"43195":0,"43196":0,"43197":0,"43198":0,"43199":0,"43200":0,"43201":0,"43202":0,"43203":1,"43204":0,"43205":0,"43206":0,"43207":1,"43208":1,"43209":0,"43210":0,"43211":1,"43212":1,"43213":1,"43214":0,"43215":0,"43216":1,"43217":0,"43218":0,"43219":0,"43220":0,"43221":1,"43222":0,"43223":0,"43224":0,"43225":0,"43226":0,"43227":0,"43228":0,"43229":1,"43230":0,"43231":1,"43232":0,"43233":1,"43234":0,"43235":1,"43236":0,"43237":0,"43238":1,"43239":0,"43240":0,"43241":0,"43242":0,"43243":0,"43244":0,"43245":0,"43246":0,"43247":0,"43248":0,"43249":0,"43250":0,"43251":0,"43252":0,"43253":0,"43254":0,"43255":0,"43256":0,"43257":0,"43258":0,"43259":0,"43260":0,"43261":0,"43262":1,"43263":0,"43264":1,"43265":0,"43266":0,"43267":0,"43268":0,"43269":0,"43270":0,"43271":0,"43272":0,"43273":0,"43274":0,"43275":0,"43276":0,"43277":0,"43278":1,"43279":0,"43280":1,"43281":1,"43282":0,"43283":0,"43284":0,"43285":0,"43286":0,"43287":1,"43288":0,"43289":0,"43290":0,"43291":0,"43292":0,"43293":1,"43294":1,"43295":1,"43296":0,"43297":0,"43298":0,"43299":0,"43300":0,"43301":0,"43302":1,"43303":0,"43304":1,"43305":0,"43306":0,"43307":0,"43308":0,"43309":0,"43310":1,"43311":1,"43312":0,"43313":0,"43314":1,"43315":0,"43316":1,"43317":0,"43318":0,"43319":1,"43320":0,"43321":0,"43322":1,"43323":0,"43324":0,"43325":0,"43326":0,"43327":1,"43328":0,"43329":0,"43330":0,"43331":0,"43332":0,"43333":0,"43334":0,"43335":0,"43336":0,"43337":0,"43338":0,"43339":0,"43340":0,"43341":0,"43342":0,"43343":1,"43344":0,"43345":0,"43346":0,"43347":0,"43348":1,"43349":0,"43350":0,"43351":0,"43352":1,"43353":0,"43354":0,"43355":0,"43356":0,"43357":0,"43358":0,"43359":0,"43360":1,"43361":0,"43362":0,"43363":0,"43364":0,"43365":1,"43366":0,"43367":0,"43368":0,"43369":0,"43370":0,"43371":0,"43372":0,"43373":0,"43374":0,"43375":1,"43376":0,"43377":0,"43378":0,"43379":1,"43380":0,"43381":1,"43382":0,"43383":0,"43384":0,"43385":0,"43386":0,"43387":0,"43388":0,"43389":1,"43390":0,"43391":0,"43392":0,"43393":1,"43394":1,"43395":0,"43396":1,"43397":0,"43398":1,"43399":0,"43400":0,"43401":0,"43402":0,"43403":0,"43404":0,"43405":0,"43406":0,"43407":1,"43408":1,"43409":0,"43410":0,"43411":0,"43412":0,"43413":0,"43414":0,"43415":1,"43416":0,"43417":0,"43418":0,"43419":0,"43420":1,"43421":0,"43422":1,"43423":0,"43424":0,"43425":0,"43426":0,"43427":1,"43428":0,"43429":0,"43430":0,"43431":0,"43432":0,"43433":1,"43434":0,"43435":1,"43436":0,"43437":1,"43438":0,"43439":0,"43440":0,"43441":0,"43442":0,"43443":1,"43444":0,"43445":0,"43446":0,"43447":0,"43448":1,"43449":0,"43450":0,"43451":0,"43452":0,"43453":0,"43454":1,"43455":0,"43456":0,"43457":0,"43458":0,"43459":0,"43460":0,"43461":0,"43462":0,"43463":0,"43464":1,"43465":0,"43466":0,"43467":0,"43468":1,"43469":0,"43470":0,"43471":0,"43472":0,"43473":0,"43474":0,"43475":0,"43476":0,"43477":0,"43478":0,"43479":0,"43480":0,"43481":0,"43482":1,"43483":0,"43484":0,"43485":1,"43486":0,"43487":0,"43488":1,"43489":0,"43490":0,"43491":1,"43492":0,"43493":0,"43494":0,"43495":1,"43496":0,"43497":1,"43498":0,"43499":0,"43500":1,"43501":0,"43502":0,"43503":1,"43504":0,"43505":0,"43506":0,"43507":0,"43508":1,"43509":0,"43510":0,"43511":0,"43512":0,"43513":0,"43514":0,"43515":0,"43516":0,"43517":0,"43518":0,"43519":0,"43520":1,"43521":0,"43522":0,"43523":1,"43524":0,"43525":0,"43526":0,"43527":0,"43528":0,"43529":0,"43530":0,"43531":0,"43532":0,"43533":0,"43534":0,"43535":1,"43536":0,"43537":0,"43538":0,"43539":0,"43540":0,"43541":1,"43542":0,"43543":0,"43544":0,"43545":0,"43546":0,"43547":0,"43548":0,"43549":0,"43550":0,"43551":0,"43552":1,"43553":1,"43554":0,"43555":0,"43556":0,"43557":1,"43558":1,"43559":0,"43560":0,"43561":0,"43562":1,"43563":0,"43564":0,"43565":1,"43566":0,"43567":0,"43568":1,"43569":1,"43570":1,"43571":1,"43572":0,"43573":0,"43574":1,"43575":0,"43576":0,"43577":1,"43578":0,"43579":0,"43580":0,"43581":0,"43582":0,"43583":1,"43584":0,"43585":0,"43586":0,"43587":0,"43588":0,"43589":1,"43590":0,"43591":0,"43592":1,"43593":1,"43594":0,"43595":0,"43596":0,"43597":0,"43598":0,"43599":0,"43600":0,"43601":0,"43602":0,"43603":1,"43604":0,"43605":0,"43606":0,"43607":0,"43608":0,"43609":0,"43610":0,"43611":1,"43612":0,"43613":0,"43614":0,"43615":0,"43616":0,"43617":0,"43618":0,"43619":0,"43620":0,"43621":0,"43622":0,"43623":0,"43624":1,"43625":1,"43626":0,"43627":0,"43628":1,"43629":0,"43630":1,"43631":0,"43632":1,"43633":0,"43634":1,"43635":0,"43636":0,"43637":0,"43638":0,"43639":0,"43640":0,"43641":0,"43642":0,"43643":1,"43644":0,"43645":0,"43646":1,"43647":1,"43648":0,"43649":1,"43650":1,"43651":0,"43652":0,"43653":0,"43654":0,"43655":0,"43656":0,"43657":0,"43658":0,"43659":0,"43660":1,"43661":0,"43662":0,"43663":1,"43664":0,"43665":0,"43666":0,"43667":1,"43668":0,"43669":1,"43670":0,"43671":0,"43672":0,"43673":0,"43674":0,"43675":0,"43676":0,"43677":0,"43678":0,"43679":0,"43680":1,"43681":0,"43682":0,"43683":0,"43684":0,"43685":0,"43686":1,"43687":1,"43688":1,"43689":0,"43690":0,"43691":0,"43692":0,"43693":1,"43694":0,"43695":0,"43696":0,"43697":0,"43698":1,"43699":0,"43700":1,"43701":0,"43702":0,"43703":0,"43704":0,"43705":1,"43706":0,"43707":1,"43708":0,"43709":0,"43710":0,"43711":0,"43712":0,"43713":1,"43714":0,"43715":1,"43716":0,"43717":0,"43718":0,"43719":0,"43720":0,"43721":0,"43722":0,"43723":1,"43724":1,"43725":1,"43726":0,"43727":0,"43728":0,"43729":1,"43730":1,"43731":1,"43732":0,"43733":0,"43734":1,"43735":0,"43736":0,"43737":0,"43738":0,"43739":1,"43740":0,"43741":1,"43742":0,"43743":1,"43744":0,"43745":0,"43746":1,"43747":0,"43748":1,"43749":0,"43750":0,"43751":0,"43752":0,"43753":1,"43754":1,"43755":0,"43756":0,"43757":1,"43758":1,"43759":0,"43760":1,"43761":1,"43762":0,"43763":0,"43764":0,"43765":0,"43766":1,"43767":0,"43768":0,"43769":0,"43770":0,"43771":0,"43772":0,"43773":0,"43774":0,"43775":0,"43776":0,"43777":0,"43778":0,"43779":1,"43780":0,"43781":0,"43782":0,"43783":1,"43784":0,"43785":0,"43786":0,"43787":0,"43788":1,"43789":1,"43790":0,"43791":0,"43792":0,"43793":0,"43794":1,"43795":1,"43796":0,"43797":1,"43798":1,"43799":0,"43800":0,"43801":1,"43802":0,"43803":0,"43804":1,"43805":0,"43806":0,"43807":0,"43808":0,"43809":1,"43810":0,"43811":0,"43812":1,"43813":0,"43814":0,"43815":0,"43816":1,"43817":0,"43818":0,"43819":0,"43820":0,"43821":1,"43822":0,"43823":0,"43824":0,"43825":0,"43826":0,"43827":0,"43828":0,"43829":0,"43830":1,"43831":0,"43832":0,"43833":1,"43834":1,"43835":0,"43836":0,"43837":0,"43838":0,"43839":0,"43840":1,"43841":0,"43842":1,"43843":0,"43844":1,"43845":1,"43846":0,"43847":1,"43848":0,"43849":1,"43850":0,"43851":0,"43852":0,"43853":0,"43854":1,"43855":0,"43856":0,"43857":0,"43858":0,"43859":0,"43860":0,"43861":0,"43862":0,"43863":0,"43864":0,"43865":0,"43866":1,"43867":1,"43868":0,"43869":0,"43870":1,"43871":0,"43872":0,"43873":1,"43874":0,"43875":0,"43876":0,"43877":0,"43878":0,"43879":0,"43880":0,"43881":0,"43882":0,"43883":0,"43884":1,"43885":0,"43886":0,"43887":0,"43888":0,"43889":0,"43890":1,"43891":1,"43892":0,"43893":0,"43894":0,"43895":0,"43896":1,"43897":0,"43898":0,"43899":0,"43900":0,"43901":0,"43902":1,"43903":0,"43904":1,"43905":1,"43906":0,"43907":0,"43908":0,"43909":1,"43910":1,"43911":0,"43912":0,"43913":0,"43914":0,"43915":0,"43916":0,"43917":0,"43918":0,"43919":1,"43920":1,"43921":0,"43922":0,"43923":1,"43924":0,"43925":0,"43926":0,"43927":0,"43928":1,"43929":0,"43930":0,"43931":0,"43932":1,"43933":0,"43934":0,"43935":0,"43936":0,"43937":1,"43938":0,"43939":0,"43940":1,"43941":0,"43942":0,"43943":0,"43944":0,"43945":1,"43946":0,"43947":0,"43948":0,"43949":0,"43950":1,"43951":0,"43952":0,"43953":0,"43954":1,"43955":1,"43956":0,"43957":1,"43958":0,"43959":0,"43960":0,"43961":1,"43962":1,"43963":0,"43964":0,"43965":1,"43966":1,"43967":0,"43968":1,"43969":1,"43970":0,"43971":1,"43972":0,"43973":0,"43974":1,"43975":0,"43976":0,"43977":0,"43978":1,"43979":0,"43980":1,"43981":0,"43982":1,"43983":0,"43984":1,"43985":0,"43986":0,"43987":0,"43988":1,"43989":0,"43990":0,"43991":0,"43992":0,"43993":0,"43994":0,"43995":0,"43996":1,"43997":0,"43998":0,"43999":0,"44000":0,"44001":0,"44002":1,"44003":0,"44004":0,"44005":0,"44006":0,"44007":0,"44008":0,"44009":0,"44010":0,"44011":0,"44012":0,"44013":0,"44014":1,"44015":0,"44016":0,"44017":0,"44018":1,"44019":1,"44020":0,"44021":1,"44022":0,"44023":0,"44024":0,"44025":0,"44026":0,"44027":0,"44028":1,"44029":0,"44030":0,"44031":1,"44032":0,"44033":1,"44034":0,"44035":0,"44036":0,"44037":0,"44038":1,"44039":1,"44040":0,"44041":0,"44042":1,"44043":0,"44044":0,"44045":1,"44046":1,"44047":0,"44048":1,"44049":0,"44050":0,"44051":1,"44052":0,"44053":0,"44054":0,"44055":1,"44056":0,"44057":0,"44058":0,"44059":0,"44060":1,"44061":0,"44062":0,"44063":1,"44064":0,"44065":0,"44066":0,"44067":0,"44068":0,"44069":0,"44070":0,"44071":0,"44072":0,"44073":1,"44074":0,"44075":1,"44076":0,"44077":0,"44078":1,"44079":0,"44080":0,"44081":0,"44082":0,"44083":0,"44084":0,"44085":0,"44086":0,"44087":1,"44088":1,"44089":0,"44090":1,"44091":0,"44092":0,"44093":0,"44094":1,"44095":0,"44096":0,"44097":1,"44098":0,"44099":0,"44100":0,"44101":0,"44102":1,"44103":0,"44104":1,"44105":0,"44106":0,"44107":0,"44108":0,"44109":0,"44110":0,"44111":0,"44112":0,"44113":0,"44114":1,"44115":0,"44116":0,"44117":1,"44118":0,"44119":0,"44120":1,"44121":0,"44122":0,"44123":0,"44124":0,"44125":0,"44126":1,"44127":0,"44128":0,"44129":0,"44130":1,"44131":0,"44132":0,"44133":0,"44134":1,"44135":0,"44136":1,"44137":0,"44138":1,"44139":0,"44140":1,"44141":0,"44142":0,"44143":1,"44144":0,"44145":0,"44146":0,"44147":0,"44148":1,"44149":0,"44150":1,"44151":0,"44152":0,"44153":1,"44154":0,"44155":1,"44156":0,"44157":0,"44158":0,"44159":1,"44160":0,"44161":0,"44162":0,"44163":0,"44164":0,"44165":0,"44166":1,"44167":0,"44168":0,"44169":0,"44170":0,"44171":1,"44172":0,"44173":0,"44174":0,"44175":0,"44176":0,"44177":1,"44178":0,"44179":0,"44180":0,"44181":0,"44182":0,"44183":0,"44184":1,"44185":0,"44186":0,"44187":0,"44188":0,"44189":0,"44190":1,"44191":0,"44192":0,"44193":1,"44194":0,"44195":1,"44196":1,"44197":1,"44198":0,"44199":0,"44200":0,"44201":0,"44202":0},"indivfacid_1":{"0":-1,"1":-1,"2":-1,"3":-1,"4":1587,"5":-1,"6":-1,"7":-1,"8":-1,"9":-1,"10":0,"11":1587,"12":0,"13":1587,"14":-1,"15":-1,"16":-1,"17":-1,"18":1589,"19":-1,"20":-1,"21":-1,"22":-1,"23":1589,"24":-1,"25":-1,"26":-1,"27":-1,"28":-1,"29":-1,"30":-1,"31":-1,"32":-1,"33":-1,"34":-1,"35":-1,"36":-1,"37":-1,"38":1587,"39":-1,"40":-1,"41":1588,"42":-1,"43":1587,"44":-1,"45":-1,"46":-1,"47":-1,"48":-1,"49":-1,"50":-1,"51":-1,"52":-1,"53":1588,"54":-1,"55":-1,"56":-1,"57":-1,"58":-1,"59":-1,"60":-1,"61":-1,"62":-1,"63":-1,"64":-1,"65":-1,"66":-1,"67":-1,"68":-1,"69":-1,"70":-1,"71":1586,"72":1587,"73":-1,"74":0,"75":-1,"76":1587,"77":-1,"78":-1,"79":-1,"80":-1,"81":-1,"82":-1,"83":-1,"84":-1,"85":-1,"86":-1,"87":-1,"88":-1,"89":-1,"90":-1,"91":-1,"92":-1,"93":-1,"94":-1,"95":1589,"96":-1,"97":-1,"98":-1,"99":1589,"100":-1,"101":-1,"102":-1,"103":-1,"104":-1,"105":-1,"106":-1,"107":1587,"108":-1,"109":-1,"110":-1,"111":-1,"112":-1,"113":-1,"114":1589,"115":1587,"116":-1,"117":-1,"118":-1,"119":-1,"120":-1,"121":-1,"122":-1,"123":-1,"124":-1,"125":-1,"126":-1,"127":1586,"128":-1,"129":1587,"130":-1,"131":-1,"132":-1,"133":-1,"134":1588,"135":-1,"136":-1,"137":-1,"138":-1,"139":-1,"140":-1,"141":-1,"142":-1,"143":-1,"144":-1,"145":-1,"146":-1,"147":-1,"148":-1,"149":-1,"150":-1,"151":-1,"152":-1,"153":-1,"154":1588,"155":1588,"156":-1,"157":-1,"158":-1,"159":-1,"160":-1,"161":-1,"162":-1,"163":-1,"164":-1,"165":-1,"166":-1,"167":-1,"168":1588,"169":-1,"170":-1,"171":-1,"172":-1,"173":-1,"174":-1,"175":-1,"176":-1,"177":-1,"178":-1,"179":-1,"180":-1,"181":-1,"182":-1,"183":-1,"184":-1,"185":-1,"186":-1,"187":-1,"188":-1,"189":1587,"190":-1,"191":-1,"192":-1,"193":1588,"194":-1,"195":-1,"196":-1,"197":-1,"198":-1,"199":-1,"200":-1,"201":-1,"202":-1,"203":1587,"204":-1,"205":-1,"206":-1,"207":-1,"208":-1,"209":-1,"210":-1,"211":-1,"212":1587,"213":1589,"214":-1,"215":-1,"216":-1,"217":1586,"218":-1,"219":-1,"220":-1,"221":-1,"222":-1,"223":-1,"224":-1,"225":-1,"226":-1,"227":1588,"228":-1,"229":1587,"230":-1,"231":1588,"232":-1,"233":1589,"234":-1,"235":-1,"236":-1,"237":-1,"238":-1,"239":1588,"240":-1,"241":0,"242":1587,"243":-1,"244":-1,"245":-1,"246":-1,"247":1588,"248":-1,"249":-1,"250":-1,"251":-1,"252":-1,"253":-1,"254":-1,"255":-1,"256":-1,"257":-1,"258":-1,"259":-1,"260":-1,"261":-1,"262":0,"263":-1,"264":-1,"265":-1,"266":-1,"267":1588,"268":-1,"269":-1,"270":-1,"271":1586,"272":-1,"273":-1,"274":-1,"275":-1,"276":-1,"277":1589,"278":-1,"279":-1,"280":-1,"281":-1,"282":-1,"283":-1,"284":-1,"285":-1,"286":-1,"287":-1,"288":-1,"289":-1,"290":-1,"291":1587,"292":-1,"293":1587,"294":-1,"295":-1,"296":-1,"297":-1,"298":-1,"299":-1,"300":-1,"301":-1,"302":-1,"303":-1,"304":-1,"305":-1,"306":-1,"307":-1,"308":-1,"309":-1,"310":1587,"311":-1,"312":0,"313":-1,"314":-1,"315":-1,"316":-1,"317":-1,"318":1588,"319":-1,"320":-1,"321":-1,"322":1588,"323":-1,"324":-1,"325":-1,"326":-1,"327":-1,"328":-1,"329":-1,"330":-1,"331":-1,"332":-1,"333":-1,"334":-1,"335":-1,"336":-1,"337":-1,"338":-1,"339":-1,"340":-1,"341":-1,"342":-1,"343":1587,"344":-1,"345":1589,"346":-1,"347":-1,"348":-1,"349":-1,"350":-1,"351":1587,"352":-1,"353":-1,"354":-1,"355":-1,"356":-1,"357":-1,"358":-1,"359":-1,"360":-1,"361":-1,"362":-1,"363":-1,"364":-1,"365":-1,"366":-1,"367":-1,"368":-1,"369":-1,"370":-1,"371":-1,"372":-1,"373":0,"374":1587,"375":-1,"376":-1,"377":-1,"378":-1,"379":-1,"380":-1,"381":-1,"382":-1,"383":1589,"384":1589,"385":-1,"386":1588,"387":-1,"388":1588,"389":-1,"390":-1,"391":1589,"392":-1,"393":-1,"394":-1,"395":-1,"396":1589,"397":-1,"398":-1,"399":-1,"400":-1,"401":-1,"402":-1,"403":-1,"404":-1,"405":-1,"406":-1,"407":-1,"408":-1,"409":-1,"410":-1,"411":-1,"412":-1,"413":-1,"414":-1,"415":1586,"416":-1,"417":1587,"418":-1,"419":-1,"420":-1,"421":-1,"422":-1,"423":-1,"424":-1,"425":-1,"426":-1,"427":-1,"428":1588,"429":-1,"430":1587,"431":0,"432":-1,"433":-1,"434":-1,"435":1589,"436":-1,"437":-1,"438":-1,"439":-1,"440":-1,"441":-1,"442":0,"443":1588,"444":-1,"445":-1,"446":-1,"447":1587,"448":-1,"449":-1,"450":-1,"451":-1,"452":-1,"453":1588,"454":-1,"455":-1,"456":-1,"457":-1,"458":-1,"459":-1,"460":-1,"461":-1,"462":-1,"463":-1,"464":1587,"465":1588,"466":-1,"467":1589,"468":-1,"469":-1,"470":-1,"471":-1,"472":-1,"473":-1,"474":-1,"475":-1,"476":-1,"477":-1,"478":-1,"479":-1,"480":-1,"481":1587,"482":-1,"483":1587,"484":-1,"485":-1,"486":-1,"487":-1,"488":-1,"489":-1,"490":-1,"491":-1,"492":-1,"493":-1,"494":1588,"495":1587,"496":-1,"497":-1,"498":-1,"499":-1,"500":-1,"501":-1,"502":1588,"503":-1,"504":-1,"505":-1,"506":-1,"507":-1,"508":-1,"509":1586,"510":1587,"511":-1,"512":-1,"513":-1,"514":-1,"515":-1,"516":-1,"517":-1,"518":-1,"519":-1,"520":1588,"521":-1,"522":-1,"523":1587,"524":-1,"525":-1,"526":-1,"527":-1,"528":-1,"529":-1,"530":-1,"531":-1,"532":0,"533":-1,"534":-1,"535":-1,"536":-1,"537":-1,"538":-1,"539":-1,"540":-1,"541":-1,"542":1588,"543":-1,"544":-1,"545":-1,"546":-1,"547":-1,"548":-1,"549":-1,"550":-1,"551":-1,"552":-1,"553":-1,"554":-1,"555":-1,"556":-1,"557":-1,"558":-1,"559":1588,"560":-1,"561":-1,"562":-1,"563":-1,"564":-1,"565":0,"566":-1,"567":-1,"568":-1,"569":-1,"570":-1,"571":-1,"572":-1,"573":1587,"574":1588,"575":-1,"576":-1,"577":-1,"578":-1,"579":1587,"580":-1,"581":-1,"582":-1,"583":-1,"584":1586,"585":-1,"586":-1,"587":-1,"588":-1,"589":-1,"590":-1,"591":-1,"592":-1,"593":-1,"594":-1,"595":-1,"596":-1,"597":-1,"598":1586,"599":-1,"600":-1,"601":-1,"602":1588,"603":-1,"604":1586,"605":-1,"606":-1,"607":1588,"608":-1,"609":-1,"610":-1,"611":1588,"612":-1,"613":-1,"614":1587,"615":1587,"616":-1,"617":-1,"618":0,"619":-1,"620":-1,"621":1589,"622":-1,"623":0,"624":-1,"625":-1,"626":-1,"627":1587,"628":0,"629":-1,"630":-1,"631":1586,"632":-1,"633":1587,"634":-1,"635":-1,"636":-1,"637":1587,"638":-1,"639":-1,"640":1588,"641":1587,"642":-1,"643":-1,"644":1588,"645":-1,"646":-1,"647":-1,"648":-1,"649":-1,"650":1588,"651":-1,"652":-1,"653":-1,"654":-1,"655":-1,"656":-1,"657":-1,"658":-1,"659":-1,"660":-1,"661":-1,"662":-1,"663":-1,"664":-1,"665":-1,"666":-1,"667":-1,"668":1589,"669":-1,"670":-1,"671":-1,"672":-1,"673":-1,"674":-1,"675":-1,"676":-1,"677":-1,"678":-1,"679":1588,"680":-1,"681":1589,"682":0,"683":-1,"684":-1,"685":-1,"686":-1,"687":-1,"688":1586,"689":-1,"690":-1,"691":-1,"692":-1,"693":-1,"694":-1,"695":-1,"696":-1,"697":-1,"698":-1,"699":-1,"700":1586,"701":-1,"702":-1,"703":1586,"704":-1,"705":-1,"706":-1,"707":-1,"708":-1,"709":-1,"710":-1,"711":1588,"712":-1,"713":-1,"714":-1,"715":-1,"716":-1,"717":1587,"718":-1,"719":-1,"720":-1,"721":-1,"722":-1,"723":-1,"724":-1,"725":-1,"726":-1,"727":-1,"728":-1,"729":-1,"730":-1,"731":-1,"732":0,"733":-1,"734":-1,"735":-1,"736":-1,"737":-1,"738":-1,"739":-1,"740":-1,"741":-1,"742":-1,"743":-1,"744":-1,"745":-1,"746":0,"747":-1,"748":1586,"749":-1,"750":-1,"751":-1,"752":-1,"753":-1,"754":-1,"755":-1,"756":1586,"757":-1,"758":-1,"759":1587,"760":-1,"761":-1,"762":-1,"763":-1,"764":-1,"765":1587,"766":-1,"767":0,"768":-1,"769":0,"770":-1,"771":-1,"772":-1,"773":-1,"774":-1,"775":-1,"776":-1,"777":-1,"778":-1,"779":-1,"780":-1,"781":-1,"782":-1,"783":0,"784":-1,"785":-1,"786":-1,"787":-1,"788":-1,"789":0,"790":1586,"791":-1,"792":-1,"793":-1,"794":-1,"795":-1,"796":-1,"797":-1,"798":-1,"799":-1,"800":0,"801":1587,"802":-1,"803":1586,"804":-1,"805":-1,"806":-1,"807":-1,"808":-1,"809":-1,"810":-1,"811":1589,"812":-1,"813":-1,"814":1588,"815":-1,"816":-1,"817":-1,"818":-1,"819":-1,"820":-1,"821":-1,"822":1587,"823":-1,"824":-1,"825":-1,"826":-1,"827":-1,"828":-1,"829":-1,"830":-1,"831":-1,"832":-1,"833":-1,"834":-1,"835":-1,"836":-1,"837":-1,"838":-1,"839":-1,"840":-1,"841":-1,"842":-1,"843":-1,"844":-1,"845":-1,"846":-1,"847":1588,"848":-1,"849":-1,"850":-1,"851":-1,"852":-1,"853":-1,"854":1587,"855":-1,"856":-1,"857":-1,"858":-1,"859":-1,"860":-1,"861":-1,"862":-1,"863":-1,"864":1589,"865":-1,"866":-1,"867":-1,"868":-1,"869":-1,"870":-1,"871":-1,"872":-1,"873":-1,"874":-1,"875":1586,"876":-1,"877":-1,"878":-1,"879":1588,"880":-1,"881":-1,"882":-1,"883":-1,"884":-1,"885":-1,"886":-1,"887":-1,"888":1589,"889":-1,"890":1588,"891":-1,"892":-1,"893":-1,"894":-1,"895":1588,"896":-1,"897":-1,"898":-1,"899":-1,"900":-1,"901":-1,"902":-1,"903":0,"904":-1,"905":-1,"906":1587,"907":-1,"908":-1,"909":0,"910":-1,"911":-1,"912":-1,"913":-1,"914":-1,"915":-1,"916":-1,"917":-1,"918":-1,"919":-1,"920":-1,"921":-1,"922":1586,"923":-1,"924":-1,"925":-1,"926":-1,"927":-1,"928":-1,"929":-1,"930":-1,"931":-1,"932":-1,"933":-1,"934":-1,"935":0,"936":0,"937":-1,"938":-1,"939":-1,"940":-1,"941":-1,"942":1587,"943":-1,"944":-1,"945":-1,"946":-1,"947":-1,"948":-1,"949":-1,"950":-1,"951":1588,"952":-1,"953":-1,"954":-1,"955":-1,"956":1586,"957":1587,"958":-1,"959":-1,"960":-1,"961":-1,"962":-1,"963":-1,"964":0,"965":-1,"966":-1,"967":-1,"968":-1,"969":-1,"970":-1,"971":-1,"972":0,"973":-1,"974":-1,"975":-1,"976":-1,"977":-1,"978":-1,"979":-1,"980":-1,"981":-1,"982":0,"983":1587,"984":-1,"985":1589,"986":-1,"987":1587,"988":-1,"989":-1,"990":-1,"991":-1,"992":-1,"993":-1,"994":-1,"995":-1,"996":1587,"997":-1,"998":-1,"999":-1,"1000":-1,"1001":-1,"1002":-1,"1003":-1,"1004":1587,"1005":-1,"1006":-1,"1007":-1,"1008":1586,"1009":-1,"1010":-1,"1011":-1,"1012":-1,"1013":-1,"1014":-1,"1015":-1,"1016":1586,"1017":-1,"1018":-1,"1019":-1,"1020":-1,"1021":-1,"1022":-1,"1023":-1,"1024":-1,"1025":-1,"1026":-1,"1027":1588,"1028":-1,"1029":0,"1030":-1,"1031":0,"1032":-1,"1033":-1,"1034":-1,"1035":-1,"1036":-1,"1037":-1,"1038":-1,"1039":1587,"1040":-1,"1041":-1,"1042":-1,"1043":-1,"1044":-1,"1045":-1,"1046":-1,"1047":-1,"1048":-1,"1049":1586,"1050":-1,"1051":-1,"1052":-1,"1053":-1,"1054":-1,"1055":1587,"1056":-1,"1057":-1,"1058":-1,"1059":-1,"1060":-1,"1061":-1,"1062":1587,"1063":-1,"1064":-1,"1065":-1,"1066":1587,"1067":-1,"1068":-1,"1069":-1,"1070":-1,"1071":-1,"1072":-1,"1073":-1,"1074":-1,"1075":-1,"1076":1588,"1077":-1,"1078":1587,"1079":-1,"1080":-1,"1081":-1,"1082":-1,"1083":-1,"1084":-1,"1085":-1,"1086":-1,"1087":-1,"1088":-1,"1089":-1,"1090":-1,"1091":-1,"1092":1586,"1093":-1,"1094":0,"1095":-1,"1096":-1,"1097":-1,"1098":-1,"1099":1588,"1100":-1,"1101":0,"1102":-1,"1103":-1,"1104":-1,"1105":-1,"1106":-1,"1107":-1,"1108":-1,"1109":1588,"1110":-1,"1111":-1,"1112":-1,"1113":-1,"1114":-1,"1115":-1,"1116":-1,"1117":-1,"1118":1588,"1119":-1,"1120":-1,"1121":-1,"1122":0,"1123":-1,"1124":-1,"1125":-1,"1126":-1,"1127":-1,"1128":-1,"1129":1587,"1130":-1,"1131":-1,"1132":-1,"1133":-1,"1134":-1,"1135":-1,"1136":-1,"1137":1589,"1138":1588,"1139":-1,"1140":-1,"1141":-1,"1142":-1,"1143":1588,"1144":-1,"1145":-1,"1146":-1,"1147":-1,"1148":-1,"1149":-1,"1150":-1,"1151":-1,"1152":-1,"1153":1587,"1154":-1,"1155":-1,"1156":-1,"1157":-1,"1158":-1,"1159":-1,"1160":-1,"1161":-1,"1162":-1,"1163":-1,"1164":1589,"1165":1587,"1166":1586,"1167":-1,"1168":-1,"1169":-1,"1170":-1,"1171":0,"1172":-1,"1173":-1,"1174":-1,"1175":1587,"1176":-1,"1177":0,"1178":-1,"1179":-1,"1180":-1,"1181":-1,"1182":-1,"1183":-1,"1184":-1,"1185":-1,"1186":-1,"1187":-1,"1188":-1,"1189":-1,"1190":0,"1191":-1,"1192":-1,"1193":1589,"1194":-1,"1195":1588,"1196":-1,"1197":-1,"1198":0,"1199":-1,"1200":-1,"1201":1586,"1202":-1,"1203":-1,"1204":-1,"1205":-1,"1206":-1,"1207":-1,"1208":-1,"1209":-1,"1210":-1,"1211":-1,"1212":-1,"1213":-1,"1214":0,"1215":-1,"1216":-1,"1217":-1,"1218":1586,"1219":-1,"1220":-1,"1221":-1,"1222":-1,"1223":-1,"1224":-1,"1225":-1,"1226":1587,"1227":-1,"1228":-1,"1229":-1,"1230":1586,"1231":1588,"1232":1588,"1233":-1,"1234":-1,"1235":-1,"1236":-1,"1237":-1,"1238":-1,"1239":-1,"1240":1588,"1241":-1,"1242":-1,"1243":-1,"1244":-1,"1245":-1,"1246":-1,"1247":-1,"1248":-1,"1249":-1,"1250":-1,"1251":-1,"1252":1589,"1253":-1,"1254":-1,"1255":-1,"1256":-1,"1257":-1,"1258":-1,"1259":-1,"1260":-1,"1261":-1,"1262":-1,"1263":-1,"1264":-1,"1265":-1,"1266":-1,"1267":-1,"1268":1586,"1269":1587,"1270":1586,"1271":1588,"1272":1588,"1273":1587,"1274":-1,"1275":-1,"1276":-1,"1277":-1,"1278":-1,"1279":-1,"1280":-1,"1281":-1,"1282":-1,"1283":-1,"1284":-1,"1285":-1,"1286":-1,"1287":-1,"1288":-1,"1289":-1,"1290":0,"1291":-1,"1292":-1,"1293":-1,"1294":-1,"1295":1587,"1296":-1,"1297":-1,"1298":-1,"1299":-1,"1300":-1,"1301":-1,"1302":-1,"1303":-1,"1304":-1,"1305":-1,"1306":1588,"1307":-1,"1308":1586,"1309":1588,"1310":-1,"1311":-1,"1312":-1,"1313":-1,"1314":-1,"1315":0,"1316":0,"1317":-1,"1318":-1,"1319":-1,"1320":-1,"1321":-1,"1322":-1,"1323":-1,"1324":-1,"1325":-1,"1326":1589,"1327":0,"1328":-1,"1329":1589,"1330":-1,"1331":-1,"1332":-1,"1333":-1,"1334":-1,"1335":-1,"1336":-1,"1337":1589,"1338":-1,"1339":-1,"1340":1588,"1341":-1,"1342":-1,"1343":-1,"1344":1589,"1345":-1,"1346":-1,"1347":-1,"1348":-1,"1349":-1,"1350":-1,"1351":-1,"1352":-1,"1353":-1,"1354":-1,"1355":-1,"1356":1588,"1357":-1,"1358":-1,"1359":-1,"1360":-1,"1361":-1,"1362":-1,"1363":-1,"1364":-1,"1365":-1,"1366":1588,"1367":-1,"1368":-1,"1369":-1,"1370":-1,"1371":-1,"1372":1589,"1373":-1,"1374":-1,"1375":-1,"1376":-1,"1377":1588,"1378":-1,"1379":-1,"1380":-1,"1381":1586,"1382":1587,"1383":-1,"1384":-1,"1385":-1,"1386":-1,"1387":-1,"1388":1588,"1389":-1,"1390":-1,"1391":-1,"1392":-1,"1393":-1,"1394":0,"1395":1586,"1396":-1,"1397":-1,"1398":-1,"1399":-1,"1400":-1,"1401":0,"1402":-1,"1403":-1,"1404":-1,"1405":-1,"1406":-1,"1407":-1,"1408":-1,"1409":-1,"1410":-1,"1411":-1,"1412":-1,"1413":-1,"1414":-1,"1415":-1,"1416":-1,"1417":-1,"1418":-1,"1419":-1,"1420":-1,"1421":-1,"1422":-1,"1423":-1,"1424":0,"1425":-1,"1426":-1,"1427":-1,"1428":1589,"1429":1587,"1430":-1,"1431":-1,"1432":-1,"1433":-1,"1434":-1,"1435":-1,"1436":1588,"1437":-1,"1438":-1,"1439":-1,"1440":-1,"1441":-1,"1442":-1,"1443":-1,"1444":-1,"1445":-1,"1446":-1,"1447":1588,"1448":1586,"1449":-1,"1450":1586,"1451":-1,"1452":-1,"1453":-1,"1454":-1,"1455":-1,"1456":1587,"1457":-1,"1458":-1,"1459":-1,"1460":1586,"1461":-1,"1462":-1,"1463":-1,"1464":-1,"1465":-1,"1466":-1,"1467":-1,"1468":1589,"1469":1588,"1470":-1,"1471":-1,"1472":1589,"1473":-1,"1474":-1,"1475":-1,"1476":-1,"1477":-1,"1478":-1,"1479":-1,"1480":-1,"1481":-1,"1482":-1,"1483":-1,"1484":-1,"1485":-1,"1486":-1,"1487":-1,"1488":-1,"1489":-1,"1490":-1,"1491":-1,"1492":-1,"1493":-1,"1494":1587,"1495":1588,"1496":1587,"1497":-1,"1498":1587,"1499":-1,"1500":-1,"1501":1587,"1502":-1,"1503":1586,"1504":-1,"1505":-1,"1506":-1,"1507":-1,"1508":-1,"1509":-1,"1510":-1,"1511":-1,"1512":-1,"1513":-1,"1514":-1,"1515":-1,"1516":-1,"1517":-1,"1518":-1,"1519":-1,"1520":-1,"1521":-1,"1522":-1,"1523":-1,"1524":-1,"1525":-1,"1526":-1,"1527":1587,"1528":-1,"1529":-1,"1530":-1,"1531":-1,"1532":-1,"1533":-1,"1534":-1,"1535":-1,"1536":-1,"1537":-1,"1538":-1,"1539":1588,"1540":-1,"1541":-1,"1542":-1,"1543":-1,"1544":-1,"1545":-1,"1546":-1,"1547":-1,"1548":-1,"1549":-1,"1550":-1,"1551":-1,"1552":-1,"1553":-1,"1554":-1,"1555":0,"1556":-1,"1557":-1,"1558":-1,"1559":1588,"1560":-1,"1561":-1,"1562":-1,"1563":-1,"1564":-1,"1565":-1,"1566":-1,"1567":-1,"1568":0,"1569":-1,"1570":-1,"1571":-1,"1572":-1,"1573":-1,"1574":-1,"1575":1587,"1576":-1,"1577":-1,"1578":-1,"1579":-1,"1580":-1,"1581":1587,"1582":-1,"1583":-1,"1584":-1,"1585":-1,"1586":-1,"1587":1587,"1588":-1,"1589":1588,"1590":-1,"1591":-1,"1592":-1,"1593":-1,"1594":0,"1595":-1,"1596":-1,"1597":-1,"1598":1588,"1599":-1,"1600":-1,"1601":0,"1602":-1,"1603":-1,"1604":-1,"1605":-1,"1606":-1,"1607":-1,"1608":-1,"1609":-1,"1610":1587,"1611":1588,"1612":0,"1613":-1,"1614":-1,"1615":1587,"1616":-1,"1617":-1,"1618":-1,"1619":-1,"1620":-1,"1621":-1,"1622":-1,"1623":1588,"1624":-1,"1625":-1,"1626":-1,"1627":-1,"1628":-1,"1629":0,"1630":-1,"1631":-1,"1632":0,"1633":-1,"1634":1588,"1635":-1,"1636":1588,"1637":1586,"1638":-1,"1639":-1,"1640":-1,"1641":-1,"1642":-1,"1643":-1,"1644":-1,"1645":-1,"1646":-1,"1647":-1,"1648":1588,"1649":-1,"1650":-1,"1651":-1,"1652":-1,"1653":1587,"1654":-1,"1655":-1,"1656":-1,"1657":-1,"1658":-1,"1659":-1,"1660":-1,"1661":0,"1662":-1,"1663":-1,"1664":-1,"1665":0,"1666":-1,"1667":-1,"1668":-1,"1669":-1,"1670":-1,"1671":-1,"1672":-1,"1673":-1,"1674":-1,"1675":-1,"1676":-1,"1677":-1,"1678":-1,"1679":-1,"1680":-1,"1681":-1,"1682":-1,"1683":-1,"1684":-1,"1685":-1,"1686":-1,"1687":1586,"1688":-1,"1689":-1,"1690":-1,"1691":-1,"1692":-1,"1693":-1,"1694":-1,"1695":-1,"1696":-1,"1697":1588,"1698":-1,"1699":-1,"1700":-1,"1701":-1,"1702":-1,"1703":-1,"1704":-1,"1705":-1,"1706":-1,"1707":-1,"1708":-1,"1709":-1,"1710":-1,"1711":-1,"1712":-1,"1713":-1,"1714":-1,"1715":0,"1716":-1,"1717":1588,"1718":-1,"1719":-1,"1720":-1,"1721":-1,"1722":-1,"1723":-1,"1724":-1,"1725":-1,"1726":-1,"1727":-1,"1728":-1,"1729":-1,"1730":-1,"1731":-1,"1732":-1,"1733":-1,"1734":-1,"1735":-1,"1736":-1,"1737":-1,"1738":-1,"1739":-1,"1740":-1,"1741":-1,"1742":-1,"1743":1587,"1744":-1,"1745":-1,"1746":-1,"1747":-1,"1748":-1,"1749":-1,"1750":-1,"1751":-1,"1752":-1,"1753":-1,"1754":-1,"1755":-1,"1756":-1,"1757":-1,"1758":-1,"1759":-1,"1760":-1,"1761":-1,"1762":-1,"1763":-1,"1764":0,"1765":-1,"1766":-1,"1767":-1,"1768":-1,"1769":-1,"1770":0,"1771":-1,"1772":-1,"1773":-1,"1774":-1,"1775":-1,"1776":-1,"1777":-1,"1778":-1,"1779":1589,"1780":-1,"1781":0,"1782":1587,"1783":-1,"1784":1588,"1785":-1,"1786":1587,"1787":-1,"1788":-1,"1789":-1,"1790":-1,"1791":-1,"1792":1586,"1793":-1,"1794":-1,"1795":-1,"1796":-1,"1797":-1,"1798":-1,"1799":-1,"1800":-1,"1801":1589,"1802":-1,"1803":1588,"1804":-1,"1805":-1,"1806":-1,"1807":-1,"1808":-1,"1809":-1,"1810":-1,"1811":-1,"1812":-1,"1813":-1,"1814":-1,"1815":-1,"1816":0,"1817":-1,"1818":-1,"1819":-1,"1820":-1,"1821":-1,"1822":-1,"1823":-1,"1824":1588,"1825":1587,"1826":-1,"1827":1588,"1828":-1,"1829":-1,"1830":-1,"1831":-1,"1832":-1,"1833":-1,"1834":-1,"1835":1588,"1836":-1,"1837":-1,"1838":1588,"1839":-1,"1840":0,"1841":-1,"1842":-1,"1843":-1,"1844":-1,"1845":-1,"1846":-1,"1847":-1,"1848":-1,"1849":-1,"1850":-1,"1851":-1,"1852":-1,"1853":-1,"1854":-1,"1855":-1,"1856":-1,"1857":-1,"1858":-1,"1859":1588,"1860":-1,"1861":-1,"1862":-1,"1863":-1,"1864":-1,"1865":1588,"1866":-1,"1867":-1,"1868":-1,"1869":-1,"1870":-1,"1871":-1,"1872":-1,"1873":-1,"1874":-1,"1875":-1,"1876":-1,"1877":-1,"1878":1587,"1879":-1,"1880":-1,"1881":-1,"1882":1587,"1883":-1,"1884":-1,"1885":-1,"1886":-1,"1887":0,"1888":-1,"1889":-1,"1890":-1,"1891":-1,"1892":-1,"1893":1587,"1894":-1,"1895":-1,"1896":-1,"1897":-1,"1898":-1,"1899":1586,"1900":-1,"1901":-1,"1902":-1,"1903":-1,"1904":0,"1905":-1,"1906":-1,"1907":0,"1908":-1,"1909":-1,"1910":-1,"1911":-1,"1912":-1,"1913":-1,"1914":-1,"1915":-1,"1916":-1,"1917":-1,"1918":-1,"1919":-1,"1920":-1,"1921":-1,"1922":-1,"1923":1586,"1924":-1,"1925":-1,"1926":-1,"1927":-1,"1928":-1,"1929":-1,"1930":-1,"1931":-1,"1932":-1,"1933":-1,"1934":-1,"1935":-1,"1936":1588,"1937":-1,"1938":-1,"1939":-1,"1940":-1,"1941":-1,"1942":1589,"1943":-1,"1944":1587,"1945":-1,"1946":-1,"1947":-1,"1948":-1,"1949":-1,"1950":-1,"1951":-1,"1952":-1,"1953":-1,"1954":-1,"1955":-1,"1956":1589,"1957":-1,"1958":-1,"1959":-1,"1960":-1,"1961":-1,"1962":1587,"1963":-1,"1964":-1,"1965":-1,"1966":-1,"1967":-1,"1968":-1,"1969":-1,"1970":-1,"1971":-1,"1972":-1,"1973":-1,"1974":-1,"1975":-1,"1976":-1,"1977":-1,"1978":0,"1979":-1,"1980":-1,"1981":-1,"1982":-1,"1983":-1,"1984":1589,"1985":0,"1986":-1,"1987":1588,"1988":-1,"1989":-1,"1990":1587,"1991":-1,"1992":-1,"1993":-1,"1994":-1,"1995":1588,"1996":-1,"1997":-1,"1998":1587,"1999":-1,"2000":1588,"2001":-1,"2002":-1,"2003":-1,"2004":-1,"2005":-1,"2006":-1,"2007":-1,"2008":-1,"2009":-1,"2010":-1,"2011":-1,"2012":-1,"2013":-1,"2014":-1,"2015":-1,"2016":-1,"2017":-1,"2018":-1,"2019":-1,"2020":-1,"2021":-1,"2022":1589,"2023":-1,"2024":-1,"2025":-1,"2026":-1,"2027":-1,"2028":-1,"2029":-1,"2030":-1,"2031":-1,"2032":-1,"2033":-1,"2034":-1,"2035":-1,"2036":-1,"2037":-1,"2038":-1,"2039":-1,"2040":-1,"2041":-1,"2042":-1,"2043":-1,"2044":1589,"2045":-1,"2046":-1,"2047":-1,"2048":-1,"2049":-1,"2050":0,"2051":-1,"2052":-1,"2053":-1,"2054":1588,"2055":-1,"2056":-1,"2057":-1,"2058":-1,"2059":-1,"2060":-1,"2061":-1,"2062":-1,"2063":-1,"2064":-1,"2065":-1,"2066":-1,"2067":1587,"2068":-1,"2069":-1,"2070":-1,"2071":-1,"2072":-1,"2073":1588,"2074":-1,"2075":-1,"2076":1587,"2077":-1,"2078":-1,"2079":-1,"2080":-1,"2081":-1,"2082":-1,"2083":-1,"2084":-1,"2085":-1,"2086":-1,"2087":-1,"2088":-1,"2089":-1,"2090":1588,"2091":-1,"2092":-1,"2093":-1,"2094":-1,"2095":-1,"2096":-1,"2097":-1,"2098":-1,"2099":-1,"2100":-1,"2101":-1,"2102":-1,"2103":-1,"2104":0,"2105":-1,"2106":-1,"2107":-1,"2108":-1,"2109":1588,"2110":0,"2111":-1,"2112":-1,"2113":1589,"2114":-1,"2115":-1,"2116":-1,"2117":1586,"2118":-1,"2119":-1,"2120":-1,"2121":-1,"2122":-1,"2123":-1,"2124":-1,"2125":-1,"2126":-1,"2127":-1,"2128":-1,"2129":-1,"2130":-1,"2131":-1,"2132":-1,"2133":-1,"2134":-1,"2135":-1,"2136":-1,"2137":-1,"2138":-1,"2139":-1,"2140":-1,"2141":-1,"2142":-1,"2143":-1,"2144":-1,"2145":-1,"2146":1588,"2147":-1,"2148":-1,"2149":-1,"2150":-1,"2151":-1,"2152":-1,"2153":-1,"2154":-1,"2155":-1,"2156":1587,"2157":-1,"2158":-1,"2159":-1,"2160":-1,"2161":-1,"2162":-1,"2163":0,"2164":-1,"2165":-1,"2166":-1,"2167":-1,"2168":-1,"2169":-1,"2170":-1,"2171":-1,"2172":-1,"2173":-1,"2174":-1,"2175":-1,"2176":-1,"2177":1588,"2178":-1,"2179":-1,"2180":-1,"2181":1587,"2182":0,"2183":-1,"2184":-1,"2185":1588,"2186":-1,"2187":-1,"2188":-1,"2189":-1,"2190":1588,"2191":-1,"2192":-1,"2193":-1,"2194":-1,"2195":1586,"2196":0,"2197":1587,"2198":-1,"2199":-1,"2200":-1,"2201":1588,"2202":-1,"2203":-1,"2204":-1,"2205":-1,"2206":-1,"2207":-1,"2208":-1,"2209":-1,"2210":-1,"2211":-1,"2212":-1,"2213":-1,"2214":-1,"2215":1588,"2216":-1,"2217":-1,"2218":-1,"2219":-1,"2220":-1,"2221":-1,"2222":-1,"2223":-1,"2224":-1,"2225":-1,"2226":-1,"2227":-1,"2228":-1,"2229":1587,"2230":-1,"2231":-1,"2232":-1,"2233":-1,"2234":1588,"2235":-1,"2236":-1,"2237":-1,"2238":0,"2239":1587,"2240":-1,"2241":-1,"2242":1587,"2243":-1,"2244":-1,"2245":-1,"2246":-1,"2247":-1,"2248":-1,"2249":-1,"2250":-1,"2251":1586,"2252":-1,"2253":1587,"2254":-1,"2255":-1,"2256":-1,"2257":-1,"2258":1588,"2259":-1,"2260":-1,"2261":-1,"2262":-1,"2263":-1,"2264":-1,"2265":-1,"2266":-1,"2267":-1,"2268":-1,"2269":-1,"2270":1588,"2271":-1,"2272":-1,"2273":-1,"2274":1588,"2275":-1,"2276":-1,"2277":-1,"2278":-1,"2279":-1,"2280":-1,"2281":-1,"2282":-1,"2283":-1,"2284":-1,"2285":0,"2286":-1,"2287":-1,"2288":-1,"2289":-1,"2290":-1,"2291":-1,"2292":-1,"2293":-1,"2294":-1,"2295":-1,"2296":-1,"2297":1586,"2298":-1,"2299":-1,"2300":-1,"2301":-1,"2302":1587,"2303":-1,"2304":-1,"2305":-1,"2306":-1,"2307":1588,"2308":-1,"2309":-1,"2310":-1,"2311":-1,"2312":-1,"2313":-1,"2314":-1,"2315":-1,"2316":-1,"2317":1589,"2318":-1,"2319":-1,"2320":1588,"2321":-1,"2322":-1,"2323":-1,"2324":-1,"2325":-1,"2326":-1,"2327":-1,"2328":-1,"2329":-1,"2330":-1,"2331":-1,"2332":-1,"2333":-1,"2334":-1,"2335":-1,"2336":-1,"2337":-1,"2338":-1,"2339":-1,"2340":-1,"2341":1589,"2342":-1,"2343":-1,"2344":-1,"2345":-1,"2346":-1,"2347":-1,"2348":-1,"2349":-1,"2350":1587,"2351":1589,"2352":-1,"2353":1587,"2354":-1,"2355":-1,"2356":1586,"2357":-1,"2358":-1,"2359":-1,"2360":-1,"2361":-1,"2362":-1,"2363":-1,"2364":-1,"2365":-1,"2366":-1,"2367":-1,"2368":-1,"2369":-1,"2370":-1,"2371":-1,"2372":-1,"2373":-1,"2374":-1,"2375":-1,"2376":-1,"2377":1588,"2378":-1,"2379":-1,"2380":-1,"2381":-1,"2382":1586,"2383":-1,"2384":-1,"2385":-1,"2386":-1,"2387":1587,"2388":-1,"2389":1586,"2390":-1,"2391":-1,"2392":-1,"2393":-1,"2394":-1,"2395":-1,"2396":-1,"2397":-1,"2398":-1,"2399":-1,"2400":1587,"2401":-1,"2402":-1,"2403":-1,"2404":-1,"2405":-1,"2406":-1,"2407":-1,"2408":-1,"2409":-1,"2410":-1,"2411":-1,"2412":-1,"2413":-1,"2414":-1,"2415":-1,"2416":-1,"2417":-1,"2418":-1,"2419":-1,"2420":-1,"2421":1586,"2422":-1,"2423":-1,"2424":-1,"2425":-1,"2426":-1,"2427":-1,"2428":-1,"2429":-1,"2430":-1,"2431":-1,"2432":-1,"2433":-1,"2434":-1,"2435":-1,"2436":-1,"2437":-1,"2438":-1,"2439":-1,"2440":-1,"2441":-1,"2442":-1,"2443":0,"2444":-1,"2445":-1,"2446":0,"2447":-1,"2448":1588,"2449":-1,"2450":-1,"2451":-1,"2452":0,"2453":-1,"2454":-1,"2455":-1,"2456":-1,"2457":-1,"2458":-1,"2459":-1,"2460":-1,"2461":-1,"2462":-1,"2463":-1,"2464":-1,"2465":-1,"2466":-1,"2467":-1,"2468":-1,"2469":-1,"2470":-1,"2471":-1,"2472":-1,"2473":-1,"2474":-1,"2475":1589,"2476":-1,"2477":1588,"2478":-1,"2479":-1,"2480":-1,"2481":-1,"2482":-1,"2483":1586,"2484":-1,"2485":-1,"2486":-1,"2487":-1,"2488":-1,"2489":-1,"2490":-1,"2491":-1,"2492":-1,"2493":-1,"2494":-1,"2495":-1,"2496":-1,"2497":-1,"2498":-1,"2499":0,"2500":-1,"2501":-1,"2502":-1,"2503":-1,"2504":-1,"2505":-1,"2506":-1,"2507":-1,"2508":0,"2509":-1,"2510":-1,"2511":-1,"2512":-1,"2513":-1,"2514":-1,"2515":-1,"2516":-1,"2517":1586,"2518":0,"2519":-1,"2520":-1,"2521":-1,"2522":-1,"2523":-1,"2524":-1,"2525":-1,"2526":-1,"2527":-1,"2528":-1,"2529":-1,"2530":-1,"2531":-1,"2532":-1,"2533":-1,"2534":-1,"2535":-1,"2536":1588,"2537":-1,"2538":-1,"2539":-1,"2540":-1,"2541":-1,"2542":-1,"2543":-1,"2544":-1,"2545":-1,"2546":-1,"2547":-1,"2548":-1,"2549":-1,"2550":-1,"2551":-1,"2552":-1,"2553":-1,"2554":-1,"2555":-1,"2556":-1,"2557":-1,"2558":-1,"2559":-1,"2560":-1,"2561":-1,"2562":-1,"2563":-1,"2564":-1,"2565":1589,"2566":1587,"2567":-1,"2568":-1,"2569":-1,"2570":0,"2571":-1,"2572":-1,"2573":-1,"2574":-1,"2575":-1,"2576":-1,"2577":-1,"2578":-1,"2579":-1,"2580":-1,"2581":-1,"2582":-1,"2583":0,"2584":1588,"2585":-1,"2586":-1,"2587":-1,"2588":-1,"2589":-1,"2590":-1,"2591":-1,"2592":-1,"2593":-1,"2594":-1,"2595":-1,"2596":-1,"2597":-1,"2598":-1,"2599":-1,"2600":-1,"2601":1588,"2602":-1,"2603":-1,"2604":-1,"2605":-1,"2606":-1,"2607":-1,"2608":-1,"2609":-1,"2610":1587,"2611":1587,"2612":-1,"2613":-1,"2614":-1,"2615":-1,"2616":-1,"2617":1587,"2618":1588,"2619":-1,"2620":-1,"2621":1588,"2622":-1,"2623":-1,"2624":-1,"2625":-1,"2626":-1,"2627":0,"2628":-1,"2629":-1,"2630":-1,"2631":-1,"2632":-1,"2633":-1,"2634":-1,"2635":-1,"2636":-1,"2637":-1,"2638":1588,"2639":-1,"2640":-1,"2641":1587,"2642":-1,"2643":-1,"2644":-1,"2645":-1,"2646":-1,"2647":-1,"2648":-1,"2649":-1,"2650":-1,"2651":-1,"2652":1588,"2653":-1,"2654":-1,"2655":-1,"2656":-1,"2657":1589,"2658":-1,"2659":-1,"2660":1588,"2661":-1,"2662":-1,"2663":-1,"2664":-1,"2665":-1,"2666":-1,"2667":-1,"2668":1587,"2669":-1,"2670":-1,"2671":-1,"2672":-1,"2673":1587,"2674":1588,"2675":-1,"2676":-1,"2677":-1,"2678":-1,"2679":-1,"2680":-1,"2681":-1,"2682":-1,"2683":1588,"2684":1589,"2685":1588,"2686":-1,"2687":-1,"2688":-1,"2689":-1,"2690":0,"2691":-1,"2692":-1,"2693":-1,"2694":-1,"2695":-1,"2696":-1,"2697":-1,"2698":-1,"2699":-1,"2700":-1,"2701":-1,"2702":-1,"2703":1587,"2704":-1,"2705":-1,"2706":-1,"2707":-1,"2708":-1,"2709":-1,"2710":-1,"2711":-1,"2712":-1,"2713":-1,"2714":-1,"2715":-1,"2716":-1,"2717":-1,"2718":1589,"2719":-1,"2720":-1,"2721":-1,"2722":-1,"2723":-1,"2724":-1,"2725":-1,"2726":-1,"2727":1588,"2728":-1,"2729":-1,"2730":-1,"2731":1587,"2732":-1,"2733":-1,"2734":-1,"2735":-1,"2736":-1,"2737":-1,"2738":0,"2739":-1,"2740":-1,"2741":-1,"2742":-1,"2743":-1,"2744":-1,"2745":1588,"2746":-1,"2747":-1,"2748":-1,"2749":1587,"2750":-1,"2751":1587,"2752":-1,"2753":-1,"2754":-1,"2755":-1,"2756":-1,"2757":-1,"2758":-1,"2759":-1,"2760":-1,"2761":-1,"2762":-1,"2763":-1,"2764":-1,"2765":-1,"2766":-1,"2767":1587,"2768":-1,"2769":-1,"2770":-1,"2771":-1,"2772":-1,"2773":-1,"2774":-1,"2775":-1,"2776":-1,"2777":1587,"2778":-1,"2779":-1,"2780":-1,"2781":-1,"2782":-1,"2783":-1,"2784":0,"2785":-1,"2786":-1,"2787":-1,"2788":-1,"2789":-1,"2790":1586,"2791":-1,"2792":-1,"2793":-1,"2794":-1,"2795":-1,"2796":-1,"2797":1588,"2798":-1,"2799":-1,"2800":-1,"2801":-1,"2802":-1,"2803":-1,"2804":1587,"2805":-1,"2806":-1,"2807":-1,"2808":-1,"2809":-1,"2810":-1,"2811":1588,"2812":-1,"2813":-1,"2814":1587,"2815":-1,"2816":-1,"2817":1588,"2818":-1,"2819":1588,"2820":-1,"2821":-1,"2822":-1,"2823":-1,"2824":0,"2825":-1,"2826":-1,"2827":-1,"2828":-1,"2829":-1,"2830":-1,"2831":1589,"2832":-1,"2833":-1,"2834":-1,"2835":-1,"2836":-1,"2837":-1,"2838":-1,"2839":-1,"2840":-1,"2841":1587,"2842":-1,"2843":-1,"2844":-1,"2845":-1,"2846":-1,"2847":-1,"2848":-1,"2849":1586,"2850":1588,"2851":-1,"2852":-1,"2853":-1,"2854":-1,"2855":-1,"2856":1588,"2857":-1,"2858":-1,"2859":-1,"2860":-1,"2861":-1,"2862":-1,"2863":-1,"2864":-1,"2865":-1,"2866":-1,"2867":-1,"2868":-1,"2869":0,"2870":-1,"2871":-1,"2872":-1,"2873":-1,"2874":-1,"2875":-1,"2876":-1,"2877":-1,"2878":-1,"2879":-1,"2880":-1,"2881":-1,"2882":-1,"2883":-1,"2884":-1,"2885":1587,"2886":-1,"2887":-1,"2888":-1,"2889":1586,"2890":1588,"2891":-1,"2892":-1,"2893":1588,"2894":-1,"2895":0,"2896":-1,"2897":-1,"2898":-1,"2899":1589,"2900":-1,"2901":1587,"2902":-1,"2903":-1,"2904":-1,"2905":-1,"2906":1588,"2907":-1,"2908":-1,"2909":1586,"2910":-1,"2911":-1,"2912":-1,"2913":-1,"2914":-1,"2915":-1,"2916":-1,"2917":-1,"2918":-1,"2919":-1,"2920":-1,"2921":-1,"2922":-1,"2923":-1,"2924":-1,"2925":-1,"2926":-1,"2927":-1,"2928":-1,"2929":-1,"2930":-1,"2931":-1,"2932":-1,"2933":-1,"2934":-1,"2935":1587,"2936":-1,"2937":-1,"2938":-1,"2939":-1,"2940":-1,"2941":-1,"2942":-1,"2943":0,"2944":-1,"2945":-1,"2946":-1,"2947":-1,"2948":-1,"2949":-1,"2950":-1,"2951":-1,"2952":-1,"2953":-1,"2954":1588,"2955":-1,"2956":-1,"2957":-1,"2958":-1,"2959":-1,"2960":-1,"2961":-1,"2962":-1,"2963":-1,"2964":-1,"2965":1589,"2966":-1,"2967":-1,"2968":-1,"2969":-1,"2970":-1,"2971":-1,"2972":-1,"2973":-1,"2974":-1,"2975":-1,"2976":-1,"2977":1586,"2978":-1,"2979":-1,"2980":-1,"2981":-1,"2982":-1,"2983":-1,"2984":-1,"2985":1587,"2986":-1,"2987":-1,"2988":-1,"2989":-1,"2990":-1,"2991":-1,"2992":-1,"2993":-1,"2994":-1,"2995":-1,"2996":1588,"2997":-1,"2998":-1,"2999":-1,"3000":-1,"3001":-1,"3002":-1,"3003":-1,"3004":-1,"3005":-1,"3006":-1,"3007":1587,"3008":-1,"3009":-1,"3010":-1,"3011":-1,"3012":-1,"3013":-1,"3014":-1,"3015":-1,"3016":-1,"3017":-1,"3018":-1,"3019":-1,"3020":-1,"3021":-1,"3022":-1,"3023":-1,"3024":-1,"3025":1587,"3026":-1,"3027":0,"3028":-1,"3029":1588,"3030":0,"3031":-1,"3032":-1,"3033":-1,"3034":-1,"3035":-1,"3036":-1,"3037":0,"3038":-1,"3039":0,"3040":-1,"3041":-1,"3042":-1,"3043":-1,"3044":-1,"3045":-1,"3046":-1,"3047":-1,"3048":-1,"3049":-1,"3050":-1,"3051":-1,"3052":1587,"3053":1586,"3054":-1,"3055":-1,"3056":-1,"3057":-1,"3058":1587,"3059":-1,"3060":1588,"3061":-1,"3062":-1,"3063":-1,"3064":1589,"3065":-1,"3066":-1,"3067":-1,"3068":-1,"3069":-1,"3070":-1,"3071":-1,"3072":-1,"3073":-1,"3074":-1,"3075":-1,"3076":1589,"3077":1589,"3078":-1,"3079":-1,"3080":-1,"3081":1588,"3082":-1,"3083":1587,"3084":-1,"3085":-1,"3086":-1,"3087":1586,"3088":-1,"3089":-1,"3090":-1,"3091":-1,"3092":-1,"3093":-1,"3094":-1,"3095":-1,"3096":1588,"3097":-1,"3098":-1,"3099":-1,"3100":1587,"3101":-1,"3102":-1,"3103":-1,"3104":-1,"3105":-1,"3106":-1,"3107":-1,"3108":1588,"3109":-1,"3110":-1,"3111":-1,"3112":-1,"3113":-1,"3114":1587,"3115":-1,"3116":-1,"3117":-1,"3118":1589,"3119":-1,"3120":-1,"3121":-1,"3122":-1,"3123":1587,"3124":-1,"3125":-1,"3126":-1,"3127":-1,"3128":1587,"3129":-1,"3130":-1,"3131":0,"3132":-1,"3133":-1,"3134":-1,"3135":-1,"3136":-1,"3137":1586,"3138":-1,"3139":-1,"3140":-1,"3141":-1,"3142":-1,"3143":-1,"3144":-1,"3145":-1,"3146":-1,"3147":-1,"3148":1586,"3149":-1,"3150":0,"3151":-1,"3152":-1,"3153":-1,"3154":-1,"3155":1589,"3156":-1,"3157":-1,"3158":-1,"3159":-1,"3160":-1,"3161":-1,"3162":-1,"3163":-1,"3164":-1,"3165":-1,"3166":-1,"3167":1586,"3168":-1,"3169":-1,"3170":-1,"3171":1586,"3172":-1,"3173":1588,"3174":-1,"3175":-1,"3176":-1,"3177":0,"3178":-1,"3179":-1,"3180":-1,"3181":-1,"3182":-1,"3183":-1,"3184":-1,"3185":1588,"3186":-1,"3187":-1,"3188":-1,"3189":-1,"3190":-1,"3191":-1,"3192":-1,"3193":-1,"3194":-1,"3195":-1,"3196":1587,"3197":1586,"3198":-1,"3199":-1,"3200":-1,"3201":-1,"3202":-1,"3203":1588,"3204":-1,"3205":0,"3206":-1,"3207":-1,"3208":1588,"3209":-1,"3210":-1,"3211":-1,"3212":-1,"3213":-1,"3214":-1,"3215":-1,"3216":1588,"3217":-1,"3218":-1,"3219":1587,"3220":-1,"3221":-1,"3222":1587,"3223":-1,"3224":-1,"3225":-1,"3226":1587,"3227":-1,"3228":-1,"3229":-1,"3230":-1,"3231":-1,"3232":-1,"3233":1589,"3234":-1,"3235":-1,"3236":-1,"3237":-1,"3238":-1,"3239":-1,"3240":-1,"3241":-1,"3242":-1,"3243":-1,"3244":-1,"3245":-1,"3246":-1,"3247":-1,"3248":-1,"3249":0,"3250":-1,"3251":-1,"3252":-1,"3253":-1,"3254":0,"3255":-1,"3256":-1,"3257":0,"3258":-1,"3259":-1,"3260":-1,"3261":-1,"3262":-1,"3263":1587,"3264":-1,"3265":-1,"3266":-1,"3267":-1,"3268":-1,"3269":0,"3270":-1,"3271":-1,"3272":-1,"3273":-1,"3274":1588,"3275":0,"3276":1587,"3277":-1,"3278":-1,"3279":-1,"3280":-1,"3281":-1,"3282":-1,"3283":-1,"3284":-1,"3285":-1,"3286":-1,"3287":-1,"3288":-1,"3289":-1,"3290":-1,"3291":-1,"3292":1587,"3293":-1,"3294":-1,"3295":-1,"3296":1588,"3297":-1,"3298":-1,"3299":1589,"3300":-1,"3301":1587,"3302":-1,"3303":-1,"3304":-1,"3305":-1,"3306":-1,"3307":-1,"3308":-1,"3309":-1,"3310":-1,"3311":-1,"3312":-1,"3313":-1,"3314":-1,"3315":-1,"3316":-1,"3317":-1,"3318":-1,"3319":-1,"3320":-1,"3321":-1,"3322":-1,"3323":-1,"3324":-1,"3325":-1,"3326":-1,"3327":-1,"3328":-1,"3329":-1,"3330":-1,"3331":1587,"3332":-1,"3333":-1,"3334":-1,"3335":-1,"3336":-1,"3337":-1,"3338":1589,"3339":1589,"3340":-1,"3341":-1,"3342":1588,"3343":-1,"3344":-1,"3345":-1,"3346":1589,"3347":-1,"3348":1586,"3349":-1,"3350":-1,"3351":-1,"3352":1587,"3353":-1,"3354":-1,"3355":1586,"3356":-1,"3357":-1,"3358":-1,"3359":-1,"3360":-1,"3361":1587,"3362":-1,"3363":-1,"3364":-1,"3365":-1,"3366":-1,"3367":-1,"3368":-1,"3369":-1,"3370":-1,"3371":1587,"3372":-1,"3373":-1,"3374":-1,"3375":-1,"3376":-1,"3377":-1,"3378":-1,"3379":-1,"3380":-1,"3381":-1,"3382":-1,"3383":-1,"3384":-1,"3385":0,"3386":-1,"3387":-1,"3388":-1,"3389":1588,"3390":1588,"3391":-1,"3392":-1,"3393":-1,"3394":-1,"3395":-1,"3396":-1,"3397":-1,"3398":-1,"3399":-1,"3400":-1,"3401":-1,"3402":-1,"3403":1588,"3404":-1,"3405":-1,"3406":-1,"3407":1588,"3408":-1,"3409":-1,"3410":-1,"3411":-1,"3412":1588,"3413":-1,"3414":-1,"3415":1588,"3416":-1,"3417":1587,"3418":-1,"3419":-1,"3420":-1,"3421":-1,"3422":-1,"3423":-1,"3424":-1,"3425":1588,"3426":1587,"3427":-1,"3428":-1,"3429":-1,"3430":-1,"3431":-1,"3432":-1,"3433":-1,"3434":1588,"3435":-1,"3436":1589,"3437":-1,"3438":-1,"3439":-1,"3440":-1,"3441":-1,"3442":-1,"3443":-1,"3444":-1,"3445":-1,"3446":-1,"3447":-1,"3448":-1,"3449":-1,"3450":-1,"3451":-1,"3452":-1,"3453":-1,"3454":-1,"3455":-1,"3456":-1,"3457":-1,"3458":-1,"3459":-1,"3460":-1,"3461":-1,"3462":-1,"3463":-1,"3464":-1,"3465":-1,"3466":-1,"3467":-1,"3468":-1,"3469":-1,"3470":-1,"3471":-1,"3472":-1,"3473":-1,"3474":-1,"3475":-1,"3476":-1,"3477":1588,"3478":-1,"3479":-1,"3480":-1,"3481":-1,"3482":-1,"3483":-1,"3484":1588,"3485":-1,"3486":1588,"3487":-1,"3488":-1,"3489":-1,"3490":-1,"3491":1587,"3492":1588,"3493":-1,"3494":-1,"3495":-1,"3496":-1,"3497":1586,"3498":1588,"3499":-1,"3500":-1,"3501":-1,"3502":-1,"3503":-1,"3504":-1,"3505":-1,"3506":-1,"3507":-1,"3508":-1,"3509":-1,"3510":-1,"3511":-1,"3512":-1,"3513":-1,"3514":-1,"3515":-1,"3516":-1,"3517":1587,"3518":-1,"3519":-1,"3520":-1,"3521":-1,"3522":-1,"3523":-1,"3524":-1,"3525":-1,"3526":-1,"3527":-1,"3528":-1,"3529":-1,"3530":-1,"3531":-1,"3532":-1,"3533":-1,"3534":-1,"3535":-1,"3536":1587,"3537":-1,"3538":0,"3539":-1,"3540":-1,"3541":-1,"3542":-1,"3543":-1,"3544":-1,"3545":1587,"3546":-1,"3547":-1,"3548":0,"3549":-1,"3550":-1,"3551":-1,"3552":-1,"3553":-1,"3554":-1,"3555":-1,"3556":1587,"3557":-1,"3558":1587,"3559":-1,"3560":-1,"3561":-1,"3562":-1,"3563":-1,"3564":-1,"3565":-1,"3566":-1,"3567":-1,"3568":-1,"3569":-1,"3570":1586,"3571":1588,"3572":1587,"3573":1587,"3574":-1,"3575":-1,"3576":1589,"3577":-1,"3578":-1,"3579":-1,"3580":-1,"3581":-1,"3582":-1,"3583":-1,"3584":1587,"3585":-1,"3586":-1,"3587":-1,"3588":-1,"3589":1586,"3590":-1,"3591":-1,"3592":-1,"3593":1587,"3594":-1,"3595":1588,"3596":-1,"3597":-1,"3598":-1,"3599":-1,"3600":-1,"3601":-1,"3602":-1,"3603":-1,"3604":-1,"3605":1586,"3606":1588,"3607":-1,"3608":-1,"3609":1586,"3610":-1,"3611":-1,"3612":-1,"3613":-1,"3614":-1,"3615":1588,"3616":-1,"3617":-1,"3618":-1,"3619":-1,"3620":-1,"3621":-1,"3622":-1,"3623":-1,"3624":-1,"3625":-1,"3626":-1,"3627":-1,"3628":1588,"3629":1586,"3630":-1,"3631":0,"3632":-1,"3633":1588,"3634":-1,"3635":1588,"3636":-1,"3637":-1,"3638":-1,"3639":0,"3640":-1,"3641":1588,"3642":-1,"3643":-1,"3644":-1,"3645":-1,"3646":1588,"3647":-1,"3648":-1,"3649":-1,"3650":-1,"3651":1588,"3652":-1,"3653":-1,"3654":-1,"3655":-1,"3656":-1,"3657":-1,"3658":-1,"3659":1589,"3660":-1,"3661":-1,"3662":-1,"3663":-1,"3664":-1,"3665":-1,"3666":-1,"3667":-1,"3668":0,"3669":-1,"3670":-1,"3671":0,"3672":-1,"3673":-1,"3674":-1,"3675":-1,"3676":-1,"3677":-1,"3678":-1,"3679":-1,"3680":1587,"3681":-1,"3682":-1,"3683":-1,"3684":1587,"3685":-1,"3686":1587,"3687":-1,"3688":-1,"3689":-1,"3690":-1,"3691":-1,"3692":-1,"3693":-1,"3694":-1,"3695":-1,"3696":-1,"3697":-1,"3698":-1,"3699":0,"3700":-1,"3701":0,"3702":-1,"3703":-1,"3704":1586,"3705":1587,"3706":-1,"3707":-1,"3708":-1,"3709":-1,"3710":1586,"3711":-1,"3712":-1,"3713":-1,"3714":-1,"3715":-1,"3716":-1,"3717":-1,"3718":-1,"3719":1589,"3720":-1,"3721":-1,"3722":-1,"3723":0,"3724":-1,"3725":1588,"3726":-1,"3727":-1,"3728":-1,"3729":-1,"3730":-1,"3731":1587,"3732":-1,"3733":-1,"3734":1587,"3735":-1,"3736":-1,"3737":-1,"3738":-1,"3739":-1,"3740":-1,"3741":-1,"3742":-1,"3743":-1,"3744":-1,"3745":1587,"3746":-1,"3747":-1,"3748":-1,"3749":-1,"3750":1587,"3751":-1,"3752":-1,"3753":-1,"3754":-1,"3755":-1,"3756":-1,"3757":1587,"3758":1587,"3759":1587,"3760":-1,"3761":-1,"3762":-1,"3763":-1,"3764":-1,"3765":-1,"3766":-1,"3767":-1,"3768":-1,"3769":-1,"3770":-1,"3771":1587,"3772":-1,"3773":-1,"3774":-1,"3775":-1,"3776":-1,"3777":-1,"3778":-1,"3779":-1,"3780":-1,"3781":-1,"3782":-1,"3783":-1,"3784":0,"3785":-1,"3786":-1,"3787":1587,"3788":-1,"3789":-1,"3790":-1,"3791":-1,"3792":-1,"3793":-1,"3794":1587,"3795":-1,"3796":-1,"3797":-1,"3798":-1,"3799":-1,"3800":-1,"3801":-1,"3802":-1,"3803":-1,"3804":-1,"3805":-1,"3806":-1,"3807":-1,"3808":-1,"3809":-1,"3810":-1,"3811":-1,"3812":-1,"3813":-1,"3814":0,"3815":-1,"3816":-1,"3817":-1,"3818":1588,"3819":-1,"3820":-1,"3821":-1,"3822":1589,"3823":-1,"3824":-1,"3825":-1,"3826":-1,"3827":-1,"3828":-1,"3829":-1,"3830":-1,"3831":-1,"3832":-1,"3833":-1,"3834":-1,"3835":-1,"3836":-1,"3837":1587,"3838":-1,"3839":1588,"3840":-1,"3841":-1,"3842":-1,"3843":1587,"3844":-1,"3845":1588,"3846":-1,"3847":1588,"3848":-1,"3849":-1,"3850":-1,"3851":-1,"3852":-1,"3853":-1,"3854":-1,"3855":-1,"3856":1589,"3857":-1,"3858":-1,"3859":-1,"3860":-1,"3861":-1,"3862":-1,"3863":1589,"3864":-1,"3865":-1,"3866":-1,"3867":-1,"3868":-1,"3869":-1,"3870":-1,"3871":-1,"3872":-1,"3873":-1,"3874":-1,"3875":-1,"3876":-1,"3877":-1,"3878":-1,"3879":-1,"3880":-1,"3881":-1,"3882":-1,"3883":-1,"3884":1589,"3885":-1,"3886":-1,"3887":-1,"3888":-1,"3889":-1,"3890":-1,"3891":1586,"3892":-1,"3893":-1,"3894":-1,"3895":-1,"3896":-1,"3897":1587,"3898":-1,"3899":-1,"3900":-1,"3901":-1,"3902":-1,"3903":1587,"3904":1589,"3905":-1,"3906":-1,"3907":-1,"3908":1587,"3909":-1,"3910":1587,"3911":-1,"3912":-1,"3913":-1,"3914":-1,"3915":-1,"3916":-1,"3917":0,"3918":-1,"3919":-1,"3920":-1,"3921":-1,"3922":-1,"3923":1589,"3924":-1,"3925":-1,"3926":-1,"3927":-1,"3928":-1,"3929":1588,"3930":-1,"3931":-1,"3932":-1,"3933":-1,"3934":-1,"3935":-1,"3936":-1,"3937":-1,"3938":-1,"3939":-1,"3940":-1,"3941":-1,"3942":-1,"3943":-1,"3944":-1,"3945":-1,"3946":-1,"3947":-1,"3948":-1,"3949":-1,"3950":-1,"3951":-1,"3952":-1,"3953":-1,"3954":0,"3955":0,"3956":1588,"3957":-1,"3958":-1,"3959":-1,"3960":-1,"3961":-1,"3962":0,"3963":-1,"3964":-1,"3965":-1,"3966":-1,"3967":-1,"3968":-1,"3969":-1,"3970":-1,"3971":-1,"3972":-1,"3973":-1,"3974":-1,"3975":-1,"3976":-1,"3977":-1,"3978":-1,"3979":-1,"3980":-1,"3981":1588,"3982":-1,"3983":1588,"3984":-1,"3985":-1,"3986":1587,"3987":-1,"3988":-1,"3989":1586,"3990":-1,"3991":-1,"3992":-1,"3993":-1,"3994":-1,"3995":0,"3996":1586,"3997":-1,"3998":-1,"3999":-1,"4000":-1,"4001":0,"4002":-1,"4003":-1,"4004":-1,"4005":-1,"4006":-1,"4007":-1,"4008":-1,"4009":-1,"4010":-1,"4011":-1,"4012":-1,"4013":-1,"4014":-1,"4015":-1,"4016":1587,"4017":-1,"4018":1586,"4019":-1,"4020":-1,"4021":-1,"4022":-1,"4023":-1,"4024":-1,"4025":-1,"4026":-1,"4027":-1,"4028":-1,"4029":-1,"4030":-1,"4031":1589,"4032":1589,"4033":-1,"4034":-1,"4035":-1,"4036":-1,"4037":-1,"4038":-1,"4039":-1,"4040":-1,"4041":-1,"4042":-1,"4043":-1,"4044":-1,"4045":-1,"4046":-1,"4047":-1,"4048":-1,"4049":0,"4050":-1,"4051":1589,"4052":1587,"4053":-1,"4054":-1,"4055":-1,"4056":-1,"4057":-1,"4058":1586,"4059":-1,"4060":-1,"4061":1589,"4062":-1,"4063":-1,"4064":-1,"4065":-1,"4066":-1,"4067":-1,"4068":-1,"4069":-1,"4070":-1,"4071":-1,"4072":-1,"4073":-1,"4074":0,"4075":-1,"4076":-1,"4077":-1,"4078":1588,"4079":-1,"4080":-1,"4081":-1,"4082":1586,"4083":-1,"4084":-1,"4085":1586,"4086":-1,"4087":-1,"4088":1588,"4089":0,"4090":-1,"4091":-1,"4092":-1,"4093":-1,"4094":-1,"4095":-1,"4096":1587,"4097":-1,"4098":1588,"4099":-1,"4100":-1,"4101":-1,"4102":-1,"4103":-1,"4104":-1,"4105":-1,"4106":-1,"4107":-1,"4108":-1,"4109":-1,"4110":-1,"4111":-1,"4112":1586,"4113":-1,"4114":-1,"4115":1586,"4116":1587,"4117":-1,"4118":-1,"4119":-1,"4120":-1,"4121":-1,"4122":-1,"4123":-1,"4124":-1,"4125":-1,"4126":-1,"4127":-1,"4128":-1,"4129":-1,"4130":-1,"4131":-1,"4132":-1,"4133":-1,"4134":-1,"4135":-1,"4136":1589,"4137":1589,"4138":-1,"4139":-1,"4140":-1,"4141":-1,"4142":-1,"4143":-1,"4144":-1,"4145":-1,"4146":-1,"4147":-1,"4148":-1,"4149":-1,"4150":-1,"4151":-1,"4152":-1,"4153":-1,"4154":-1,"4155":-1,"4156":-1,"4157":-1,"4158":-1,"4159":-1,"4160":-1,"4161":-1,"4162":-1,"4163":-1,"4164":0,"4165":1588,"4166":-1,"4167":-1,"4168":-1,"4169":-1,"4170":-1,"4171":1588,"4172":-1,"4173":-1,"4174":-1,"4175":-1,"4176":-1,"4177":-1,"4178":-1,"4179":-1,"4180":-1,"4181":-1,"4182":-1,"4183":-1,"4184":-1,"4185":-1,"4186":-1,"4187":-1,"4188":-1,"4189":-1,"4190":-1,"4191":-1,"4192":-1,"4193":-1,"4194":-1,"4195":-1,"4196":-1,"4197":-1,"4198":-1,"4199":-1,"4200":-1,"4201":-1,"4202":-1,"4203":-1,"4204":-1,"4205":-1,"4206":1588,"4207":1587,"4208":-1,"4209":-1,"4210":1587,"4211":-1,"4212":-1,"4213":-1,"4214":-1,"4215":-1,"4216":1588,"4217":-1,"4218":-1,"4219":0,"4220":-1,"4221":-1,"4222":-1,"4223":-1,"4224":-1,"4225":-1,"4226":-1,"4227":-1,"4228":-1,"4229":-1,"4230":-1,"4231":-1,"4232":-1,"4233":-1,"4234":-1,"4235":-1,"4236":-1,"4237":-1,"4238":0,"4239":0,"4240":-1,"4241":-1,"4242":-1,"4243":-1,"4244":-1,"4245":1587,"4246":-1,"4247":-1,"4248":-1,"4249":-1,"4250":-1,"4251":-1,"4252":-1,"4253":-1,"4254":0,"4255":-1,"4256":-1,"4257":-1,"4258":-1,"4259":1589,"4260":-1,"4261":-1,"4262":-1,"4263":-1,"4264":-1,"4265":-1,"4266":1588,"4267":-1,"4268":-1,"4269":-1,"4270":-1,"4271":-1,"4272":-1,"4273":1586,"4274":-1,"4275":-1,"4276":-1,"4277":1586,"4278":-1,"4279":-1,"4280":-1,"4281":1588,"4282":1587,"4283":-1,"4284":-1,"4285":1588,"4286":-1,"4287":-1,"4288":-1,"4289":-1,"4290":-1,"4291":-1,"4292":-1,"4293":0,"4294":-1,"4295":-1,"4296":-1,"4297":-1,"4298":-1,"4299":-1,"4300":-1,"4301":-1,"4302":-1,"4303":-1,"4304":-1,"4305":-1,"4306":-1,"4307":-1,"4308":-1,"4309":-1,"4310":-1,"4311":-1,"4312":-1,"4313":-1,"4314":-1,"4315":-1,"4316":-1,"4317":-1,"4318":1588,"4319":-1,"4320":-1,"4321":-1,"4322":-1,"4323":-1,"4324":-1,"4325":-1,"4326":-1,"4327":-1,"4328":-1,"4329":-1,"4330":-1,"4331":-1,"4332":-1,"4333":-1,"4334":-1,"4335":-1,"4336":-1,"4337":-1,"4338":-1,"4339":-1,"4340":-1,"4341":-1,"4342":-1,"4343":1586,"4344":-1,"4345":-1,"4346":-1,"4347":-1,"4348":-1,"4349":-1,"4350":-1,"4351":-1,"4352":1589,"4353":-1,"4354":-1,"4355":1587,"4356":1589,"4357":1587,"4358":-1,"4359":-1,"4360":1588,"4361":-1,"4362":-1,"4363":-1,"4364":-1,"4365":-1,"4366":-1,"4367":-1,"4368":-1,"4369":-1,"4370":-1,"4371":-1,"4372":-1,"4373":-1,"4374":-1,"4375":-1,"4376":1586,"4377":-1,"4378":-1,"4379":-1,"4380":-1,"4381":1587,"4382":1588,"4383":-1,"4384":-1,"4385":-1,"4386":-1,"4387":-1,"4388":-1,"4389":-1,"4390":1589,"4391":-1,"4392":-1,"4393":-1,"4394":-1,"4395":-1,"4396":-1,"4397":-1,"4398":-1,"4399":-1,"4400":-1,"4401":1587,"4402":1586,"4403":-1,"4404":-1,"4405":1587,"4406":-1,"4407":-1,"4408":-1,"4409":-1,"4410":-1,"4411":-1,"4412":-1,"4413":0,"4414":-1,"4415":-1,"4416":-1,"4417":-1,"4418":-1,"4419":-1,"4420":-1,"4421":-1,"4422":-1,"4423":-1,"4424":-1,"4425":-1,"4426":-1,"4427":-1,"4428":1587,"4429":-1,"4430":-1,"4431":-1,"4432":-1,"4433":-1,"4434":-1,"4435":1588,"4436":-1,"4437":-1,"4438":-1,"4439":-1,"4440":-1,"4441":-1,"4442":-1,"4443":-1,"4444":1587,"4445":-1,"4446":-1,"4447":1588,"4448":1588,"4449":-1,"4450":-1,"4451":-1,"4452":-1,"4453":-1,"4454":-1,"4455":-1,"4456":-1,"4457":-1,"4458":-1,"4459":-1,"4460":-1,"4461":0,"4462":-1,"4463":-1,"4464":-1,"4465":1586,"4466":0,"4467":-1,"4468":-1,"4469":0,"4470":1589,"4471":-1,"4472":-1,"4473":-1,"4474":-1,"4475":1587,"4476":-1,"4477":-1,"4478":-1,"4479":-1,"4480":-1,"4481":-1,"4482":-1,"4483":-1,"4484":1587,"4485":-1,"4486":-1,"4487":-1,"4488":-1,"4489":-1,"4490":-1,"4491":-1,"4492":-1,"4493":-1,"4494":-1,"4495":-1,"4496":-1,"4497":-1,"4498":-1,"4499":-1,"4500":1587,"4501":-1,"4502":-1,"4503":-1,"4504":-1,"4505":-1,"4506":0,"4507":-1,"4508":-1,"4509":-1,"4510":-1,"4511":-1,"4512":-1,"4513":-1,"4514":-1,"4515":-1,"4516":-1,"4517":-1,"4518":1586,"4519":-1,"4520":-1,"4521":-1,"4522":-1,"4523":-1,"4524":-1,"4525":-1,"4526":-1,"4527":-1,"4528":-1,"4529":-1,"4530":0,"4531":-1,"4532":0,"4533":-1,"4534":-1,"4535":-1,"4536":-1,"4537":0,"4538":-1,"4539":-1,"4540":-1,"4541":-1,"4542":-1,"4543":0,"4544":1588,"4545":-1,"4546":-1,"4547":1588,"4548":-1,"4549":-1,"4550":-1,"4551":-1,"4552":-1,"4553":-1,"4554":-1,"4555":-1,"4556":-1,"4557":-1,"4558":-1,"4559":-1,"4560":-1,"4561":-1,"4562":-1,"4563":-1,"4564":-1,"4565":1588,"4566":0,"4567":-1,"4568":-1,"4569":-1,"4570":-1,"4571":1587,"4572":-1,"4573":1586,"4574":-1,"4575":-1,"4576":-1,"4577":-1,"4578":-1,"4579":-1,"4580":-1,"4581":-1,"4582":1586,"4583":-1,"4584":-1,"4585":-1,"4586":-1,"4587":0,"4588":-1,"4589":-1,"4590":-1,"4591":-1,"4592":-1,"4593":-1,"4594":1588,"4595":-1,"4596":-1,"4597":-1,"4598":-1,"4599":-1,"4600":-1,"4601":1588,"4602":-1,"4603":-1,"4604":-1,"4605":-1,"4606":-1,"4607":1587,"4608":1589,"4609":1588,"4610":-1,"4611":-1,"4612":-1,"4613":-1,"4614":-1,"4615":-1,"4616":-1,"4617":-1,"4618":-1,"4619":-1,"4620":1589,"4621":-1,"4622":-1,"4623":-1,"4624":1587,"4625":-1,"4626":0,"4627":1586,"4628":-1,"4629":-1,"4630":1588,"4631":-1,"4632":-1,"4633":-1,"4634":-1,"4635":-1,"4636":-1,"4637":-1,"4638":-1,"4639":-1,"4640":-1,"4641":-1,"4642":-1,"4643":-1,"4644":-1,"4645":-1,"4646":-1,"4647":-1,"4648":-1,"4649":-1,"4650":-1,"4651":-1,"4652":-1,"4653":-1,"4654":-1,"4655":-1,"4656":-1,"4657":-1,"4658":-1,"4659":-1,"4660":1587,"4661":-1,"4662":-1,"4663":-1,"4664":1587,"4665":-1,"4666":-1,"4667":-1,"4668":-1,"4669":-1,"4670":-1,"4671":-1,"4672":-1,"4673":-1,"4674":1589,"4675":1587,"4676":1586,"4677":-1,"4678":-1,"4679":-1,"4680":-1,"4681":-1,"4682":0,"4683":-1,"4684":1588,"4685":-1,"4686":-1,"4687":-1,"4688":-1,"4689":-1,"4690":1588,"4691":-1,"4692":-1,"4693":-1,"4694":-1,"4695":-1,"4696":-1,"4697":-1,"4698":-1,"4699":-1,"4700":-1,"4701":0,"4702":1587,"4703":-1,"4704":-1,"4705":-1,"4706":-1,"4707":-1,"4708":-1,"4709":-1,"4710":-1,"4711":-1,"4712":-1,"4713":1589,"4714":-1,"4715":1588,"4716":-1,"4717":-1,"4718":-1,"4719":1587,"4720":-1,"4721":1587,"4722":-1,"4723":-1,"4724":1587,"4725":-1,"4726":-1,"4727":-1,"4728":1587,"4729":-1,"4730":-1,"4731":-1,"4732":-1,"4733":-1,"4734":0,"4735":-1,"4736":-1,"4737":0,"4738":-1,"4739":-1,"4740":-1,"4741":1587,"4742":1586,"4743":-1,"4744":-1,"4745":-1,"4746":-1,"4747":-1,"4748":-1,"4749":-1,"4750":-1,"4751":1586,"4752":-1,"4753":-1,"4754":-1,"4755":1589,"4756":-1,"4757":-1,"4758":-1,"4759":-1,"4760":-1,"4761":-1,"4762":-1,"4763":-1,"4764":-1,"4765":-1,"4766":-1,"4767":-1,"4768":-1,"4769":-1,"4770":-1,"4771":-1,"4772":-1,"4773":-1,"4774":-1,"4775":-1,"4776":-1,"4777":1586,"4778":-1,"4779":-1,"4780":-1,"4781":-1,"4782":-1,"4783":-1,"4784":-1,"4785":-1,"4786":-1,"4787":-1,"4788":-1,"4789":1586,"4790":-1,"4791":1588,"4792":-1,"4793":-1,"4794":-1,"4795":-1,"4796":-1,"4797":-1,"4798":-1,"4799":-1,"4800":-1,"4801":1586,"4802":1586,"4803":-1,"4804":-1,"4805":-1,"4806":-1,"4807":-1,"4808":-1,"4809":-1,"4810":-1,"4811":-1,"4812":-1,"4813":-1,"4814":-1,"4815":-1,"4816":1589,"4817":-1,"4818":-1,"4819":1589,"4820":1588,"4821":-1,"4822":-1,"4823":-1,"4824":1589,"4825":-1,"4826":-1,"4827":-1,"4828":-1,"4829":-1,"4830":-1,"4831":-1,"4832":1588,"4833":-1,"4834":-1,"4835":-1,"4836":-1,"4837":-1,"4838":-1,"4839":-1,"4840":-1,"4841":-1,"4842":-1,"4843":-1,"4844":-1,"4845":-1,"4846":-1,"4847":-1,"4848":1587,"4849":-1,"4850":-1,"4851":-1,"4852":-1,"4853":-1,"4854":-1,"4855":-1,"4856":-1,"4857":-1,"4858":-1,"4859":-1,"4860":-1,"4861":-1,"4862":-1,"4863":-1,"4864":-1,"4865":-1,"4866":-1,"4867":-1,"4868":1588,"4869":1587,"4870":-1,"4871":-1,"4872":-1,"4873":-1,"4874":-1,"4875":-1,"4876":-1,"4877":1586,"4878":-1,"4879":-1,"4880":-1,"4881":-1,"4882":-1,"4883":-1,"4884":-1,"4885":-1,"4886":-1,"4887":-1,"4888":-1,"4889":-1,"4890":-1,"4891":-1,"4892":-1,"4893":-1,"4894":-1,"4895":-1,"4896":-1,"4897":-1,"4898":-1,"4899":-1,"4900":-1,"4901":-1,"4902":1589,"4903":-1,"4904":-1,"4905":1586,"4906":-1,"4907":-1,"4908":-1,"4909":-1,"4910":-1,"4911":-1,"4912":1586,"4913":-1,"4914":-1,"4915":1587,"4916":-1,"4917":-1,"4918":-1,"4919":-1,"4920":-1,"4921":-1,"4922":-1,"4923":0,"4924":1588,"4925":-1,"4926":-1,"4927":-1,"4928":-1,"4929":-1,"4930":-1,"4931":-1,"4932":-1,"4933":-1,"4934":-1,"4935":-1,"4936":-1,"4937":1587,"4938":-1,"4939":-1,"4940":1588,"4941":-1,"4942":-1,"4943":-1,"4944":1588,"4945":1588,"4946":-1,"4947":-1,"4948":-1,"4949":-1,"4950":1587,"4951":-1,"4952":-1,"4953":1588,"4954":0,"4955":-1,"4956":-1,"4957":-1,"4958":-1,"4959":-1,"4960":-1,"4961":0,"4962":-1,"4963":-1,"4964":-1,"4965":-1,"4966":-1,"4967":-1,"4968":-1,"4969":-1,"4970":-1,"4971":-1,"4972":-1,"4973":-1,"4974":1586,"4975":-1,"4976":-1,"4977":-1,"4978":-1,"4979":-1,"4980":-1,"4981":-1,"4982":1588,"4983":-1,"4984":-1,"4985":-1,"4986":-1,"4987":-1,"4988":-1,"4989":-1,"4990":-1,"4991":-1,"4992":-1,"4993":-1,"4994":-1,"4995":-1,"4996":-1,"4997":-1,"4998":-1,"4999":-1,"5000":-1,"5001":-1,"5002":-1,"5003":0,"5004":-1,"5005":-1,"5006":-1,"5007":-1,"5008":-1,"5009":-1,"5010":-1,"5011":-1,"5012":-1,"5013":-1,"5014":1587,"5015":-1,"5016":-1,"5017":-1,"5018":-1,"5019":-1,"5020":-1,"5021":-1,"5022":-1,"5023":-1,"5024":-1,"5025":-1,"5026":-1,"5027":1589,"5028":-1,"5029":-1,"5030":1588,"5031":-1,"5032":-1,"5033":1589,"5034":-1,"5035":-1,"5036":-1,"5037":-1,"5038":-1,"5039":-1,"5040":-1,"5041":-1,"5042":1588,"5043":-1,"5044":1587,"5045":-1,"5046":1588,"5047":-1,"5048":-1,"5049":-1,"5050":-1,"5051":-1,"5052":-1,"5053":-1,"5054":-1,"5055":-1,"5056":-1,"5057":0,"5058":-1,"5059":-1,"5060":1586,"5061":-1,"5062":-1,"5063":-1,"5064":-1,"5065":-1,"5066":-1,"5067":1586,"5068":0,"5069":-1,"5070":-1,"5071":-1,"5072":1587,"5073":-1,"5074":-1,"5075":-1,"5076":-1,"5077":-1,"5078":-1,"5079":-1,"5080":-1,"5081":-1,"5082":-1,"5083":1589,"5084":-1,"5085":-1,"5086":-1,"5087":-1,"5088":-1,"5089":-1,"5090":-1,"5091":-1,"5092":-1,"5093":1586,"5094":1587,"5095":-1,"5096":0,"5097":1587,"5098":-1,"5099":-1,"5100":-1,"5101":-1,"5102":-1,"5103":-1,"5104":-1,"5105":1587,"5106":-1,"5107":-1,"5108":-1,"5109":-1,"5110":-1,"5111":-1,"5112":-1,"5113":-1,"5114":-1,"5115":-1,"5116":-1,"5117":-1,"5118":-1,"5119":-1,"5120":-1,"5121":-1,"5122":-1,"5123":1589,"5124":-1,"5125":-1,"5126":-1,"5127":1588,"5128":-1,"5129":-1,"5130":-1,"5131":-1,"5132":-1,"5133":-1,"5134":-1,"5135":-1,"5136":-1,"5137":-1,"5138":-1,"5139":-1,"5140":-1,"5141":-1,"5142":-1,"5143":-1,"5144":-1,"5145":1586,"5146":-1,"5147":-1,"5148":1587,"5149":1587,"5150":-1,"5151":-1,"5152":-1,"5153":1587,"5154":-1,"5155":-1,"5156":-1,"5157":-1,"5158":-1,"5159":-1,"5160":-1,"5161":-1,"5162":-1,"5163":-1,"5164":-1,"5165":-1,"5166":-1,"5167":-1,"5168":-1,"5169":-1,"5170":-1,"5171":-1,"5172":-1,"5173":-1,"5174":-1,"5175":-1,"5176":-1,"5177":-1,"5178":-1,"5179":-1,"5180":0,"5181":-1,"5182":-1,"5183":-1,"5184":-1,"5185":-1,"5186":-1,"5187":-1,"5188":-1,"5189":1588,"5190":1587,"5191":-1,"5192":1587,"5193":-1,"5194":-1,"5195":-1,"5196":-1,"5197":-1,"5198":-1,"5199":-1,"5200":1588,"5201":-1,"5202":-1,"5203":-1,"5204":-1,"5205":-1,"5206":-1,"5207":-1,"5208":-1,"5209":-1,"5210":-1,"5211":-1,"5212":-1,"5213":-1,"5214":1587,"5215":-1,"5216":1587,"5217":-1,"5218":-1,"5219":-1,"5220":-1,"5221":-1,"5222":1587,"5223":-1,"5224":-1,"5225":-1,"5226":-1,"5227":-1,"5228":-1,"5229":1586,"5230":-1,"5231":-1,"5232":-1,"5233":-1,"5234":1588,"5235":1586,"5236":-1,"5237":-1,"5238":0,"5239":-1,"5240":-1,"5241":-1,"5242":-1,"5243":-1,"5244":-1,"5245":-1,"5246":1589,"5247":-1,"5248":1587,"5249":-1,"5250":-1,"5251":-1,"5252":1589,"5253":-1,"5254":-1,"5255":-1,"5256":-1,"5257":1588,"5258":-1,"5259":-1,"5260":-1,"5261":-1,"5262":-1,"5263":-1,"5264":-1,"5265":-1,"5266":-1,"5267":-1,"5268":-1,"5269":-1,"5270":-1,"5271":-1,"5272":-1,"5273":-1,"5274":-1,"5275":-1,"5276":-1,"5277":-1,"5278":-1,"5279":-1,"5280":-1,"5281":0,"5282":-1,"5283":-1,"5284":-1,"5285":-1,"5286":-1,"5287":-1,"5288":-1,"5289":-1,"5290":-1,"5291":-1,"5292":-1,"5293":1587,"5294":-1,"5295":-1,"5296":0,"5297":-1,"5298":0,"5299":-1,"5300":-1,"5301":1586,"5302":-1,"5303":1587,"5304":1588,"5305":-1,"5306":-1,"5307":-1,"5308":-1,"5309":-1,"5310":-1,"5311":-1,"5312":-1,"5313":-1,"5314":-1,"5315":-1,"5316":-1,"5317":-1,"5318":-1,"5319":-1,"5320":-1,"5321":-1,"5322":-1,"5323":-1,"5324":-1,"5325":-1,"5326":-1,"5327":-1,"5328":-1,"5329":-1,"5330":1586,"5331":-1,"5332":-1,"5333":-1,"5334":1586,"5335":0,"5336":-1,"5337":-1,"5338":-1,"5339":-1,"5340":1588,"5341":-1,"5342":-1,"5343":-1,"5344":-1,"5345":-1,"5346":-1,"5347":-1,"5348":0,"5349":0,"5350":-1,"5351":-1,"5352":-1,"5353":-1,"5354":-1,"5355":-1,"5356":-1,"5357":-1,"5358":-1,"5359":-1,"5360":-1,"5361":-1,"5362":-1,"5363":-1,"5364":-1,"5365":-1,"5366":1588,"5367":-1,"5368":-1,"5369":-1,"5370":-1,"5371":1588,"5372":-1,"5373":-1,"5374":-1,"5375":-1,"5376":-1,"5377":-1,"5378":0,"5379":-1,"5380":-1,"5381":-1,"5382":-1,"5383":-1,"5384":-1,"5385":-1,"5386":-1,"5387":-1,"5388":1586,"5389":-1,"5390":-1,"5391":-1,"5392":-1,"5393":-1,"5394":-1,"5395":-1,"5396":1587,"5397":-1,"5398":-1,"5399":-1,"5400":-1,"5401":-1,"5402":-1,"5403":-1,"5404":-1,"5405":-1,"5406":1589,"5407":-1,"5408":-1,"5409":1588,"5410":-1,"5411":-1,"5412":-1,"5413":1587,"5414":-1,"5415":-1,"5416":-1,"5417":1588,"5418":-1,"5419":1586,"5420":-1,"5421":-1,"5422":1588,"5423":-1,"5424":-1,"5425":-1,"5426":-1,"5427":-1,"5428":-1,"5429":-1,"5430":-1,"5431":-1,"5432":-1,"5433":-1,"5434":-1,"5435":-1,"5436":1588,"5437":1588,"5438":-1,"5439":-1,"5440":1587,"5441":-1,"5442":-1,"5443":-1,"5444":-1,"5445":-1,"5446":0,"5447":-1,"5448":-1,"5449":-1,"5450":-1,"5451":-1,"5452":-1,"5453":1588,"5454":-1,"5455":-1,"5456":1588,"5457":-1,"5458":-1,"5459":-1,"5460":-1,"5461":-1,"5462":-1,"5463":-1,"5464":1587,"5465":-1,"5466":0,"5467":1588,"5468":-1,"5469":-1,"5470":-1,"5471":-1,"5472":-1,"5473":1588,"5474":-1,"5475":-1,"5476":-1,"5477":-1,"5478":-1,"5479":-1,"5480":-1,"5481":1587,"5482":-1,"5483":-1,"5484":-1,"5485":-1,"5486":-1,"5487":-1,"5488":-1,"5489":-1,"5490":1586,"5491":-1,"5492":-1,"5493":0,"5494":-1,"5495":-1,"5496":-1,"5497":-1,"5498":-1,"5499":-1,"5500":-1,"5501":1589,"5502":-1,"5503":-1,"5504":-1,"5505":-1,"5506":-1,"5507":1588,"5508":-1,"5509":-1,"5510":-1,"5511":1589,"5512":1589,"5513":-1,"5514":-1,"5515":-1,"5516":-1,"5517":-1,"5518":-1,"5519":-1,"5520":-1,"5521":-1,"5522":-1,"5523":-1,"5524":-1,"5525":-1,"5526":-1,"5527":-1,"5528":1587,"5529":-1,"5530":-1,"5531":1586,"5532":-1,"5533":-1,"5534":-1,"5535":-1,"5536":-1,"5537":-1,"5538":1586,"5539":-1,"5540":-1,"5541":-1,"5542":-1,"5543":-1,"5544":-1,"5545":-1,"5546":-1,"5547":1588,"5548":-1,"5549":-1,"5550":-1,"5551":-1,"5552":-1,"5553":-1,"5554":-1,"5555":-1,"5556":-1,"5557":-1,"5558":-1,"5559":1588,"5560":-1,"5561":-1,"5562":-1,"5563":-1,"5564":-1,"5565":-1,"5566":-1,"5567":-1,"5568":-1,"5569":-1,"5570":-1,"5571":0,"5572":0,"5573":-1,"5574":0,"5575":-1,"5576":-1,"5577":-1,"5578":-1,"5579":-1,"5580":-1,"5581":-1,"5582":-1,"5583":-1,"5584":-1,"5585":-1,"5586":-1,"5587":-1,"5588":-1,"5589":-1,"5590":-1,"5591":-1,"5592":1586,"5593":-1,"5594":-1,"5595":-1,"5596":-1,"5597":0,"5598":-1,"5599":-1,"5600":-1,"5601":-1,"5602":-1,"5603":-1,"5604":-1,"5605":1586,"5606":-1,"5607":-1,"5608":-1,"5609":-1,"5610":-1,"5611":-1,"5612":-1,"5613":-1,"5614":-1,"5615":1586,"5616":-1,"5617":-1,"5618":-1,"5619":1586,"5620":-1,"5621":-1,"5622":-1,"5623":-1,"5624":-1,"5625":-1,"5626":0,"5627":-1,"5628":-1,"5629":-1,"5630":1587,"5631":-1,"5632":-1,"5633":-1,"5634":-1,"5635":-1,"5636":1586,"5637":-1,"5638":-1,"5639":-1,"5640":-1,"5641":-1,"5642":-1,"5643":-1,"5644":1588,"5645":-1,"5646":-1,"5647":-1,"5648":-1,"5649":-1,"5650":-1,"5651":1588,"5652":0,"5653":0,"5654":-1,"5655":-1,"5656":-1,"5657":-1,"5658":-1,"5659":-1,"5660":-1,"5661":-1,"5662":1588,"5663":-1,"5664":-1,"5665":-1,"5666":-1,"5667":-1,"5668":-1,"5669":0,"5670":-1,"5671":-1,"5672":-1,"5673":-1,"5674":-1,"5675":1587,"5676":-1,"5677":-1,"5678":-1,"5679":1586,"5680":-1,"5681":-1,"5682":-1,"5683":-1,"5684":-1,"5685":-1,"5686":-1,"5687":-1,"5688":-1,"5689":-1,"5690":-1,"5691":-1,"5692":-1,"5693":-1,"5694":-1,"5695":1586,"5696":-1,"5697":-1,"5698":-1,"5699":-1,"5700":1589,"5701":-1,"5702":1587,"5703":-1,"5704":-1,"5705":-1,"5706":-1,"5707":-1,"5708":-1,"5709":-1,"5710":-1,"5711":-1,"5712":-1,"5713":-1,"5714":-1,"5715":-1,"5716":-1,"5717":-1,"5718":1588,"5719":-1,"5720":-1,"5721":-1,"5722":1587,"5723":-1,"5724":-1,"5725":-1,"5726":-1,"5727":-1,"5728":-1,"5729":1588,"5730":-1,"5731":-1,"5732":-1,"5733":-1,"5734":-1,"5735":-1,"5736":-1,"5737":-1,"5738":-1,"5739":-1,"5740":-1,"5741":-1,"5742":-1,"5743":-1,"5744":-1,"5745":1588,"5746":-1,"5747":-1,"5748":-1,"5749":-1,"5750":-1,"5751":-1,"5752":-1,"5753":1586,"5754":1587,"5755":-1,"5756":-1,"5757":-1,"5758":-1,"5759":-1,"5760":-1,"5761":-1,"5762":-1,"5763":-1,"5764":-1,"5765":-1,"5766":-1,"5767":-1,"5768":-1,"5769":-1,"5770":-1,"5771":-1,"5772":-1,"5773":-1,"5774":-1,"5775":-1,"5776":-1,"5777":1588,"5778":-1,"5779":-1,"5780":-1,"5781":-1,"5782":-1,"5783":-1,"5784":-1,"5785":-1,"5786":-1,"5787":-1,"5788":-1,"5789":-1,"5790":-1,"5791":-1,"5792":-1,"5793":-1,"5794":-1,"5795":-1,"5796":-1,"5797":0,"5798":-1,"5799":-1,"5800":-1,"5801":1588,"5802":-1,"5803":-1,"5804":-1,"5805":-1,"5806":-1,"5807":-1,"5808":0,"5809":-1,"5810":-1,"5811":-1,"5812":1587,"5813":-1,"5814":-1,"5815":-1,"5816":-1,"5817":-1,"5818":1588,"5819":0,"5820":-1,"5821":-1,"5822":-1,"5823":-1,"5824":1589,"5825":-1,"5826":-1,"5827":-1,"5828":-1,"5829":0,"5830":-1,"5831":1587,"5832":-1,"5833":-1,"5834":-1,"5835":-1,"5836":-1,"5837":-1,"5838":-1,"5839":-1,"5840":-1,"5841":-1,"5842":-1,"5843":-1,"5844":-1,"5845":-1,"5846":1586,"5847":-1,"5848":-1,"5849":-1,"5850":-1,"5851":-1,"5852":-1,"5853":-1,"5854":-1,"5855":-1,"5856":-1,"5857":-1,"5858":-1,"5859":-1,"5860":-1,"5861":-1,"5862":-1,"5863":-1,"5864":1588,"5865":-1,"5866":-1,"5867":-1,"5868":1588,"5869":1588,"5870":-1,"5871":1587,"5872":-1,"5873":0,"5874":-1,"5875":-1,"5876":-1,"5877":1588,"5878":0,"5879":-1,"5880":-1,"5881":-1,"5882":-1,"5883":-1,"5884":-1,"5885":1587,"5886":-1,"5887":-1,"5888":-1,"5889":-1,"5890":1588,"5891":1588,"5892":-1,"5893":-1,"5894":-1,"5895":-1,"5896":-1,"5897":-1,"5898":-1,"5899":-1,"5900":-1,"5901":-1,"5902":-1,"5903":1587,"5904":-1,"5905":-1,"5906":-1,"5907":-1,"5908":-1,"5909":-1,"5910":-1,"5911":-1,"5912":1589,"5913":-1,"5914":-1,"5915":-1,"5916":1588,"5917":1589,"5918":-1,"5919":-1,"5920":-1,"5921":-1,"5922":-1,"5923":-1,"5924":1588,"5925":1587,"5926":-1,"5927":-1,"5928":-1,"5929":-1,"5930":-1,"5931":1586,"5932":-1,"5933":-1,"5934":-1,"5935":-1,"5936":-1,"5937":1586,"5938":-1,"5939":1587,"5940":-1,"5941":-1,"5942":-1,"5943":-1,"5944":-1,"5945":-1,"5946":-1,"5947":-1,"5948":-1,"5949":-1,"5950":-1,"5951":-1,"5952":-1,"5953":-1,"5954":-1,"5955":-1,"5956":-1,"5957":-1,"5958":-1,"5959":-1,"5960":-1,"5961":-1,"5962":-1,"5963":-1,"5964":-1,"5965":-1,"5966":1588,"5967":-1,"5968":-1,"5969":-1,"5970":-1,"5971":-1,"5972":-1,"5973":0,"5974":-1,"5975":-1,"5976":-1,"5977":-1,"5978":-1,"5979":-1,"5980":-1,"5981":-1,"5982":-1,"5983":-1,"5984":-1,"5985":-1,"5986":-1,"5987":-1,"5988":-1,"5989":-1,"5990":-1,"5991":-1,"5992":0,"5993":-1,"5994":-1,"5995":-1,"5996":-1,"5997":-1,"5998":1587,"5999":-1,"6000":-1,"6001":1587,"6002":-1,"6003":-1,"6004":1586,"6005":-1,"6006":1586,"6007":-1,"6008":-1,"6009":-1,"6010":-1,"6011":-1,"6012":1589,"6013":-1,"6014":1588,"6015":-1,"6016":-1,"6017":-1,"6018":-1,"6019":-1,"6020":-1,"6021":-1,"6022":-1,"6023":-1,"6024":-1,"6025":-1,"6026":-1,"6027":-1,"6028":-1,"6029":-1,"6030":-1,"6031":-1,"6032":-1,"6033":-1,"6034":-1,"6035":1587,"6036":-1,"6037":-1,"6038":-1,"6039":-1,"6040":-1,"6041":-1,"6042":-1,"6043":-1,"6044":-1,"6045":-1,"6046":-1,"6047":-1,"6048":-1,"6049":-1,"6050":-1,"6051":-1,"6052":-1,"6053":-1,"6054":-1,"6055":-1,"6056":-1,"6057":1588,"6058":-1,"6059":0,"6060":-1,"6061":-1,"6062":-1,"6063":-1,"6064":-1,"6065":-1,"6066":-1,"6067":-1,"6068":-1,"6069":-1,"6070":-1,"6071":-1,"6072":-1,"6073":-1,"6074":-1,"6075":-1,"6076":-1,"6077":-1,"6078":-1,"6079":-1,"6080":-1,"6081":-1,"6082":-1,"6083":-1,"6084":-1,"6085":-1,"6086":-1,"6087":-1,"6088":-1,"6089":1588,"6090":-1,"6091":-1,"6092":-1,"6093":1587,"6094":-1,"6095":-1,"6096":-1,"6097":-1,"6098":-1,"6099":-1,"6100":-1,"6101":-1,"6102":-1,"6103":-1,"6104":-1,"6105":-1,"6106":-1,"6107":1587,"6108":-1,"6109":-1,"6110":1589,"6111":-1,"6112":-1,"6113":-1,"6114":-1,"6115":-1,"6116":-1,"6117":-1,"6118":-1,"6119":-1,"6120":-1,"6121":-1,"6122":-1,"6123":-1,"6124":-1,"6125":0,"6126":-1,"6127":-1,"6128":1586,"6129":-1,"6130":-1,"6131":-1,"6132":-1,"6133":-1,"6134":-1,"6135":-1,"6136":-1,"6137":-1,"6138":-1,"6139":1587,"6140":-1,"6141":-1,"6142":-1,"6143":-1,"6144":-1,"6145":-1,"6146":-1,"6147":-1,"6148":1587,"6149":1588,"6150":-1,"6151":-1,"6152":-1,"6153":-1,"6154":-1,"6155":-1,"6156":-1,"6157":-1,"6158":-1,"6159":-1,"6160":-1,"6161":-1,"6162":-1,"6163":-1,"6164":-1,"6165":-1,"6166":-1,"6167":-1,"6168":-1,"6169":-1,"6170":-1,"6171":-1,"6172":-1,"6173":-1,"6174":-1,"6175":1588,"6176":-1,"6177":-1,"6178":1587,"6179":-1,"6180":-1,"6181":-1,"6182":-1,"6183":-1,"6184":-1,"6185":-1,"6186":-1,"6187":-1,"6188":-1,"6189":-1,"6190":-1,"6191":-1,"6192":-1,"6193":-1,"6194":-1,"6195":1588,"6196":-1,"6197":1589,"6198":-1,"6199":-1,"6200":-1,"6201":-1,"6202":-1,"6203":-1,"6204":-1,"6205":-1,"6206":-1,"6207":-1,"6208":-1,"6209":-1,"6210":1588,"6211":-1,"6212":-1,"6213":-1,"6214":-1,"6215":-1,"6216":-1,"6217":0,"6218":-1,"6219":-1,"6220":-1,"6221":-1,"6222":-1,"6223":-1,"6224":-1,"6225":-1,"6226":-1,"6227":-1,"6228":1586,"6229":-1,"6230":-1,"6231":-1,"6232":-1,"6233":-1,"6234":1587,"6235":1587,"6236":-1,"6237":-1,"6238":-1,"6239":-1,"6240":-1,"6241":1587,"6242":-1,"6243":1586,"6244":-1,"6245":-1,"6246":-1,"6247":-1,"6248":-1,"6249":1587,"6250":-1,"6251":-1,"6252":1588,"6253":-1,"6254":-1,"6255":-1,"6256":-1,"6257":-1,"6258":-1,"6259":-1,"6260":-1,"6261":-1,"6262":-1,"6263":-1,"6264":-1,"6265":-1,"6266":-1,"6267":-1,"6268":-1,"6269":-1,"6270":-1,"6271":-1,"6272":-1,"6273":-1,"6274":-1,"6275":-1,"6276":1588,"6277":-1,"6278":-1,"6279":-1,"6280":1589,"6281":-1,"6282":-1,"6283":-1,"6284":-1,"6285":-1,"6286":1588,"6287":-1,"6288":-1,"6289":-1,"6290":-1,"6291":-1,"6292":1588,"6293":-1,"6294":-1,"6295":-1,"6296":-1,"6297":1587,"6298":-1,"6299":-1,"6300":-1,"6301":-1,"6302":0,"6303":-1,"6304":-1,"6305":-1,"6306":-1,"6307":-1,"6308":-1,"6309":-1,"6310":-1,"6311":-1,"6312":-1,"6313":-1,"6314":-1,"6315":-1,"6316":-1,"6317":0,"6318":-1,"6319":-1,"6320":-1,"6321":-1,"6322":-1,"6323":-1,"6324":1589,"6325":-1,"6326":-1,"6327":1588,"6328":1589,"6329":-1,"6330":1589,"6331":0,"6332":-1,"6333":-1,"6334":-1,"6335":-1,"6336":-1,"6337":-1,"6338":-1,"6339":1586,"6340":-1,"6341":-1,"6342":-1,"6343":-1,"6344":-1,"6345":-1,"6346":-1,"6347":-1,"6348":-1,"6349":1588,"6350":1588,"6351":-1,"6352":-1,"6353":-1,"6354":-1,"6355":-1,"6356":1587,"6357":-1,"6358":-1,"6359":-1,"6360":-1,"6361":-1,"6362":-1,"6363":1587,"6364":-1,"6365":-1,"6366":1588,"6367":-1,"6368":-1,"6369":-1,"6370":-1,"6371":-1,"6372":-1,"6373":-1,"6374":-1,"6375":-1,"6376":-1,"6377":-1,"6378":-1,"6379":-1,"6380":-1,"6381":-1,"6382":1589,"6383":-1,"6384":-1,"6385":-1,"6386":-1,"6387":0,"6388":-1,"6389":-1,"6390":-1,"6391":-1,"6392":-1,"6393":-1,"6394":1588,"6395":-1,"6396":-1,"6397":1587,"6398":-1,"6399":-1,"6400":-1,"6401":-1,"6402":-1,"6403":-1,"6404":-1,"6405":1589,"6406":-1,"6407":-1,"6408":-1,"6409":-1,"6410":-1,"6411":-1,"6412":-1,"6413":-1,"6414":-1,"6415":-1,"6416":-1,"6417":1586,"6418":0,"6419":-1,"6420":-1,"6421":-1,"6422":1589,"6423":-1,"6424":-1,"6425":-1,"6426":-1,"6427":-1,"6428":1586,"6429":-1,"6430":-1,"6431":-1,"6432":1587,"6433":-1,"6434":-1,"6435":-1,"6436":-1,"6437":-1,"6438":-1,"6439":-1,"6440":-1,"6441":-1,"6442":-1,"6443":-1,"6444":-1,"6445":1587,"6446":-1,"6447":-1,"6448":-1,"6449":-1,"6450":-1,"6451":-1,"6452":-1,"6453":-1,"6454":-1,"6455":-1,"6456":1586,"6457":-1,"6458":-1,"6459":-1,"6460":-1,"6461":1587,"6462":-1,"6463":-1,"6464":1587,"6465":-1,"6466":-1,"6467":0,"6468":-1,"6469":-1,"6470":1588,"6471":-1,"6472":-1,"6473":-1,"6474":-1,"6475":-1,"6476":-1,"6477":-1,"6478":-1,"6479":-1,"6480":-1,"6481":-1,"6482":-1,"6483":-1,"6484":-1,"6485":1586,"6486":-1,"6487":-1,"6488":1587,"6489":-1,"6490":-1,"6491":-1,"6492":0,"6493":-1,"6494":-1,"6495":-1,"6496":-1,"6497":-1,"6498":-1,"6499":-1,"6500":-1,"6501":-1,"6502":-1,"6503":-1,"6504":0,"6505":-1,"6506":1586,"6507":1588,"6508":1589,"6509":-1,"6510":-1,"6511":-1,"6512":-1,"6513":-1,"6514":1589,"6515":-1,"6516":-1,"6517":-1,"6518":-1,"6519":-1,"6520":1587,"6521":-1,"6522":-1,"6523":1586,"6524":0,"6525":-1,"6526":-1,"6527":1589,"6528":-1,"6529":-1,"6530":-1,"6531":-1,"6532":1588,"6533":-1,"6534":-1,"6535":-1,"6536":-1,"6537":-1,"6538":-1,"6539":-1,"6540":-1,"6541":0,"6542":1587,"6543":0,"6544":-1,"6545":-1,"6546":-1,"6547":-1,"6548":-1,"6549":1587,"6550":-1,"6551":-1,"6552":-1,"6553":1588,"6554":-1,"6555":-1,"6556":-1,"6557":-1,"6558":-1,"6559":-1,"6560":-1,"6561":-1,"6562":-1,"6563":-1,"6564":1587,"6565":-1,"6566":-1,"6567":-1,"6568":-1,"6569":-1,"6570":1587,"6571":-1,"6572":-1,"6573":-1,"6574":-1,"6575":-1,"6576":1588,"6577":-1,"6578":1589,"6579":-1,"6580":-1,"6581":-1,"6582":-1,"6583":-1,"6584":-1,"6585":-1,"6586":-1,"6587":-1,"6588":-1,"6589":-1,"6590":-1,"6591":-1,"6592":-1,"6593":-1,"6594":-1,"6595":-1,"6596":-1,"6597":-1,"6598":0,"6599":-1,"6600":-1,"6601":-1,"6602":-1,"6603":-1,"6604":-1,"6605":-1,"6606":1588,"6607":-1,"6608":-1,"6609":-1,"6610":-1,"6611":-1,"6612":-1,"6613":1587,"6614":-1,"6615":1587,"6616":-1,"6617":-1,"6618":-1,"6619":1588,"6620":0,"6621":1589,"6622":-1,"6623":-1,"6624":-1,"6625":-1,"6626":-1,"6627":1589,"6628":0,"6629":-1,"6630":-1,"6631":-1,"6632":-1,"6633":-1,"6634":-1,"6635":-1,"6636":-1,"6637":-1,"6638":-1,"6639":-1,"6640":1586,"6641":-1,"6642":-1,"6643":-1,"6644":-1,"6645":1587,"6646":-1,"6647":-1,"6648":-1,"6649":-1,"6650":-1,"6651":-1,"6652":-1,"6653":-1,"6654":-1,"6655":-1,"6656":-1,"6657":1587,"6658":0,"6659":-1,"6660":-1,"6661":0,"6662":-1,"6663":-1,"6664":-1,"6665":-1,"6666":-1,"6667":-1,"6668":1589,"6669":-1,"6670":-1,"6671":-1,"6672":-1,"6673":-1,"6674":-1,"6675":-1,"6676":1587,"6677":-1,"6678":1588,"6679":-1,"6680":-1,"6681":-1,"6682":-1,"6683":-1,"6684":-1,"6685":-1,"6686":-1,"6687":-1,"6688":1587,"6689":-1,"6690":-1,"6691":1586,"6692":-1,"6693":-1,"6694":-1,"6695":-1,"6696":-1,"6697":-1,"6698":-1,"6699":-1,"6700":1586,"6701":-1,"6702":-1,"6703":-1,"6704":-1,"6705":-1,"6706":-1,"6707":-1,"6708":-1,"6709":-1,"6710":-1,"6711":-1,"6712":1587,"6713":-1,"6714":-1,"6715":-1,"6716":-1,"6717":1586,"6718":-1,"6719":-1,"6720":-1,"6721":1587,"6722":-1,"6723":-1,"6724":-1,"6725":0,"6726":1588,"6727":-1,"6728":-1,"6729":-1,"6730":-1,"6731":-1,"6732":-1,"6733":-1,"6734":-1,"6735":-1,"6736":-1,"6737":-1,"6738":-1,"6739":-1,"6740":-1,"6741":-1,"6742":-1,"6743":-1,"6744":-1,"6745":-1,"6746":-1,"6747":-1,"6748":1588,"6749":-1,"6750":-1,"6751":-1,"6752":-1,"6753":-1,"6754":-1,"6755":-1,"6756":-1,"6757":-1,"6758":-1,"6759":-1,"6760":-1,"6761":-1,"6762":-1,"6763":-1,"6764":-1,"6765":-1,"6766":-1,"6767":-1,"6768":-1,"6769":-1,"6770":-1,"6771":-1,"6772":-1,"6773":-1,"6774":-1,"6775":-1,"6776":-1,"6777":-1,"6778":-1,"6779":-1,"6780":-1,"6781":0,"6782":-1,"6783":-1,"6784":-1,"6785":1588,"6786":-1,"6787":-1,"6788":-1,"6789":-1,"6790":1587,"6791":1587,"6792":-1,"6793":-1,"6794":-1,"6795":-1,"6796":-1,"6797":-1,"6798":-1,"6799":-1,"6800":-1,"6801":-1,"6802":-1,"6803":-1,"6804":-1,"6805":-1,"6806":-1,"6807":-1,"6808":-1,"6809":1587,"6810":-1,"6811":-1,"6812":-1,"6813":-1,"6814":-1,"6815":-1,"6816":-1,"6817":-1,"6818":-1,"6819":1588,"6820":-1,"6821":-1,"6822":-1,"6823":-1,"6824":-1,"6825":-1,"6826":1586,"6827":-1,"6828":-1,"6829":1588,"6830":-1,"6831":-1,"6832":-1,"6833":-1,"6834":-1,"6835":1588,"6836":-1,"6837":-1,"6838":-1,"6839":-1,"6840":1587,"6841":-1,"6842":0,"6843":-1,"6844":-1,"6845":-1,"6846":-1,"6847":-1,"6848":-1,"6849":-1,"6850":-1,"6851":-1,"6852":-1,"6853":-1,"6854":-1,"6855":1588,"6856":-1,"6857":0,"6858":0,"6859":-1,"6860":-1,"6861":-1,"6862":1588,"6863":-1,"6864":-1,"6865":-1,"6866":1587,"6867":-1,"6868":-1,"6869":-1,"6870":-1,"6871":-1,"6872":-1,"6873":-1,"6874":-1,"6875":-1,"6876":-1,"6877":-1,"6878":-1,"6879":-1,"6880":-1,"6881":-1,"6882":-1,"6883":-1,"6884":-1,"6885":-1,"6886":-1,"6887":-1,"6888":-1,"6889":-1,"6890":-1,"6891":-1,"6892":-1,"6893":-1,"6894":-1,"6895":-1,"6896":-1,"6897":-1,"6898":-1,"6899":-1,"6900":1588,"6901":-1,"6902":-1,"6903":-1,"6904":-1,"6905":-1,"6906":-1,"6907":-1,"6908":-1,"6909":-1,"6910":-1,"6911":-1,"6912":-1,"6913":-1,"6914":-1,"6915":-1,"6916":-1,"6917":-1,"6918":-1,"6919":-1,"6920":-1,"6921":-1,"6922":-1,"6923":-1,"6924":-1,"6925":-1,"6926":-1,"6927":-1,"6928":-1,"6929":-1,"6930":-1,"6931":-1,"6932":-1,"6933":1586,"6934":-1,"6935":-1,"6936":-1,"6937":1589,"6938":-1,"6939":-1,"6940":-1,"6941":-1,"6942":-1,"6943":1589,"6944":1587,"6945":-1,"6946":-1,"6947":-1,"6948":0,"6949":-1,"6950":-1,"6951":-1,"6952":-1,"6953":-1,"6954":0,"6955":-1,"6956":-1,"6957":-1,"6958":-1,"6959":-1,"6960":-1,"6961":-1,"6962":-1,"6963":-1,"6964":-1,"6965":-1,"6966":1589,"6967":-1,"6968":-1,"6969":-1,"6970":-1,"6971":0,"6972":-1,"6973":-1,"6974":1586,"6975":-1,"6976":1587,"6977":-1,"6978":-1,"6979":-1,"6980":1587,"6981":1587,"6982":1588,"6983":-1,"6984":1588,"6985":1589,"6986":-1,"6987":-1,"6988":-1,"6989":-1,"6990":-1,"6991":-1,"6992":-1,"6993":-1,"6994":-1,"6995":-1,"6996":-1,"6997":-1,"6998":-1,"6999":-1,"7000":-1,"7001":-1,"7002":1586,"7003":-1,"7004":-1,"7005":-1,"7006":-1,"7007":-1,"7008":1588,"7009":-1,"7010":-1,"7011":-1,"7012":1586,"7013":-1,"7014":-1,"7015":-1,"7016":-1,"7017":-1,"7018":-1,"7019":-1,"7020":-1,"7021":1589,"7022":-1,"7023":-1,"7024":-1,"7025":0,"7026":-1,"7027":-1,"7028":-1,"7029":-1,"7030":-1,"7031":0,"7032":-1,"7033":-1,"7034":-1,"7035":-1,"7036":-1,"7037":-1,"7038":1588,"7039":-1,"7040":-1,"7041":-1,"7042":-1,"7043":-1,"7044":-1,"7045":-1,"7046":1588,"7047":-1,"7048":-1,"7049":-1,"7050":-1,"7051":-1,"7052":1588,"7053":-1,"7054":-1,"7055":-1,"7056":0,"7057":-1,"7058":-1,"7059":-1,"7060":-1,"7061":-1,"7062":-1,"7063":-1,"7064":-1,"7065":-1,"7066":-1,"7067":1588,"7068":-1,"7069":-1,"7070":-1,"7071":-1,"7072":-1,"7073":0,"7074":-1,"7075":-1,"7076":-1,"7077":-1,"7078":-1,"7079":-1,"7080":-1,"7081":-1,"7082":-1,"7083":-1,"7084":-1,"7085":-1,"7086":-1,"7087":-1,"7088":-1,"7089":-1,"7090":-1,"7091":-1,"7092":-1,"7093":-1,"7094":-1,"7095":-1,"7096":-1,"7097":-1,"7098":-1,"7099":1587,"7100":-1,"7101":-1,"7102":-1,"7103":1589,"7104":-1,"7105":-1,"7106":1588,"7107":1588,"7108":-1,"7109":-1,"7110":-1,"7111":-1,"7112":-1,"7113":-1,"7114":-1,"7115":1588,"7116":-1,"7117":-1,"7118":-1,"7119":-1,"7120":-1,"7121":-1,"7122":-1,"7123":-1,"7124":-1,"7125":1586,"7126":1586,"7127":-1,"7128":-1,"7129":1587,"7130":-1,"7131":-1,"7132":-1,"7133":-1,"7134":-1,"7135":-1,"7136":-1,"7137":-1,"7138":-1,"7139":-1,"7140":1587,"7141":1588,"7142":-1,"7143":-1,"7144":-1,"7145":-1,"7146":-1,"7147":0,"7148":-1,"7149":-1,"7150":-1,"7151":-1,"7152":-1,"7153":-1,"7154":-1,"7155":1587,"7156":-1,"7157":-1,"7158":1588,"7159":-1,"7160":1588,"7161":-1,"7162":-1,"7163":-1,"7164":-1,"7165":-1,"7166":-1,"7167":-1,"7168":-1,"7169":1589,"7170":-1,"7171":1588,"7172":-1,"7173":-1,"7174":-1,"7175":-1,"7176":-1,"7177":-1,"7178":-1,"7179":-1,"7180":0,"7181":-1,"7182":-1,"7183":-1,"7184":-1,"7185":-1,"7186":-1,"7187":1586,"7188":-1,"7189":-1,"7190":-1,"7191":-1,"7192":-1,"7193":-1,"7194":-1,"7195":1589,"7196":-1,"7197":-1,"7198":1589,"7199":-1,"7200":-1,"7201":-1,"7202":-1,"7203":-1,"7204":0,"7205":-1,"7206":-1,"7207":-1,"7208":1589,"7209":-1,"7210":-1,"7211":-1,"7212":-1,"7213":-1,"7214":-1,"7215":-1,"7216":-1,"7217":0,"7218":1589,"7219":-1,"7220":-1,"7221":-1,"7222":-1,"7223":1587,"7224":-1,"7225":-1,"7226":-1,"7227":-1,"7228":-1,"7229":-1,"7230":-1,"7231":-1,"7232":-1,"7233":-1,"7234":-1,"7235":-1,"7236":-1,"7237":-1,"7238":-1,"7239":-1,"7240":-1,"7241":-1,"7242":-1,"7243":-1,"7244":-1,"7245":0,"7246":-1,"7247":-1,"7248":-1,"7249":-1,"7250":1586,"7251":-1,"7252":-1,"7253":1588,"7254":1588,"7255":-1,"7256":-1,"7257":-1,"7258":-1,"7259":-1,"7260":-1,"7261":-1,"7262":-1,"7263":-1,"7264":-1,"7265":-1,"7266":-1,"7267":-1,"7268":-1,"7269":-1,"7270":-1,"7271":-1,"7272":-1,"7273":-1,"7274":-1,"7275":1588,"7276":1587,"7277":-1,"7278":-1,"7279":-1,"7280":-1,"7281":-1,"7282":-1,"7283":-1,"7284":-1,"7285":-1,"7286":-1,"7287":0,"7288":-1,"7289":0,"7290":1587,"7291":-1,"7292":-1,"7293":-1,"7294":-1,"7295":-1,"7296":-1,"7297":-1,"7298":-1,"7299":-1,"7300":-1,"7301":1589,"7302":-1,"7303":-1,"7304":-1,"7305":1589,"7306":-1,"7307":-1,"7308":-1,"7309":1588,"7310":-1,"7311":-1,"7312":-1,"7313":-1,"7314":1588,"7315":-1,"7316":-1,"7317":-1,"7318":1589,"7319":-1,"7320":-1,"7321":-1,"7322":-1,"7323":-1,"7324":-1,"7325":-1,"7326":-1,"7327":-1,"7328":-1,"7329":-1,"7330":1587,"7331":-1,"7332":1587,"7333":-1,"7334":-1,"7335":0,"7336":-1,"7337":-1,"7338":-1,"7339":-1,"7340":-1,"7341":1587,"7342":-1,"7343":1586,"7344":-1,"7345":-1,"7346":1587,"7347":-1,"7348":-1,"7349":-1,"7350":-1,"7351":-1,"7352":0,"7353":-1,"7354":-1,"7355":1587,"7356":1589,"7357":-1,"7358":-1,"7359":-1,"7360":1589,"7361":-1,"7362":-1,"7363":-1,"7364":-1,"7365":-1,"7366":-1,"7367":1588,"7368":-1,"7369":-1,"7370":-1,"7371":-1,"7372":-1,"7373":-1,"7374":-1,"7375":-1,"7376":-1,"7377":1587,"7378":-1,"7379":-1,"7380":-1,"7381":-1,"7382":-1,"7383":-1,"7384":-1,"7385":-1,"7386":-1,"7387":-1,"7388":-1,"7389":-1,"7390":-1,"7391":-1,"7392":-1,"7393":-1,"7394":1588,"7395":-1,"7396":-1,"7397":1587,"7398":-1,"7399":-1,"7400":-1,"7401":-1,"7402":-1,"7403":-1,"7404":-1,"7405":-1,"7406":-1,"7407":-1,"7408":-1,"7409":-1,"7410":0,"7411":-1,"7412":-1,"7413":-1,"7414":-1,"7415":-1,"7416":-1,"7417":-1,"7418":-1,"7419":-1,"7420":-1,"7421":-1,"7422":-1,"7423":-1,"7424":-1,"7425":-1,"7426":1587,"7427":-1,"7428":-1,"7429":-1,"7430":-1,"7431":-1,"7432":-1,"7433":-1,"7434":-1,"7435":-1,"7436":-1,"7437":-1,"7438":-1,"7439":-1,"7440":-1,"7441":-1,"7442":-1,"7443":-1,"7444":-1,"7445":-1,"7446":-1,"7447":-1,"7448":-1,"7449":0,"7450":1586,"7451":-1,"7452":-1,"7453":-1,"7454":1588,"7455":-1,"7456":-1,"7457":-1,"7458":1589,"7459":-1,"7460":1588,"7461":-1,"7462":-1,"7463":-1,"7464":-1,"7465":-1,"7466":-1,"7467":-1,"7468":-1,"7469":-1,"7470":-1,"7471":-1,"7472":-1,"7473":-1,"7474":-1,"7475":-1,"7476":-1,"7477":-1,"7478":-1,"7479":-1,"7480":1587,"7481":-1,"7482":-1,"7483":-1,"7484":-1,"7485":-1,"7486":-1,"7487":1587,"7488":-1,"7489":-1,"7490":-1,"7491":1586,"7492":-1,"7493":-1,"7494":-1,"7495":-1,"7496":-1,"7497":-1,"7498":-1,"7499":1586,"7500":-1,"7501":-1,"7502":-1,"7503":-1,"7504":-1,"7505":-1,"7506":-1,"7507":-1,"7508":-1,"7509":-1,"7510":-1,"7511":-1,"7512":-1,"7513":-1,"7514":-1,"7515":-1,"7516":-1,"7517":-1,"7518":1589,"7519":-1,"7520":-1,"7521":-1,"7522":-1,"7523":-1,"7524":-1,"7525":-1,"7526":-1,"7527":-1,"7528":-1,"7529":-1,"7530":0,"7531":-1,"7532":1589,"7533":1589,"7534":-1,"7535":-1,"7536":-1,"7537":-1,"7538":-1,"7539":-1,"7540":-1,"7541":-1,"7542":1588,"7543":-1,"7544":-1,"7545":-1,"7546":-1,"7547":1588,"7548":-1,"7549":-1,"7550":-1,"7551":-1,"7552":-1,"7553":-1,"7554":-1,"7555":-1,"7556":-1,"7557":-1,"7558":-1,"7559":-1,"7560":-1,"7561":1588,"7562":-1,"7563":-1,"7564":-1,"7565":-1,"7566":-1,"7567":1588,"7568":1588,"7569":1588,"7570":-1,"7571":-1,"7572":-1,"7573":-1,"7574":-1,"7575":-1,"7576":-1,"7577":-1,"7578":-1,"7579":-1,"7580":1589,"7581":-1,"7582":-1,"7583":-1,"7584":-1,"7585":-1,"7586":-1,"7587":-1,"7588":-1,"7589":-1,"7590":-1,"7591":-1,"7592":1586,"7593":-1,"7594":-1,"7595":-1,"7596":-1,"7597":-1,"7598":-1,"7599":-1,"7600":-1,"7601":-1,"7602":-1,"7603":1587,"7604":-1,"7605":1589,"7606":1587,"7607":-1,"7608":-1,"7609":1589,"7610":1587,"7611":-1,"7612":-1,"7613":-1,"7614":-1,"7615":-1,"7616":-1,"7617":-1,"7618":-1,"7619":1587,"7620":-1,"7621":-1,"7622":-1,"7623":-1,"7624":-1,"7625":-1,"7626":-1,"7627":-1,"7628":-1,"7629":-1,"7630":-1,"7631":-1,"7632":-1,"7633":-1,"7634":-1,"7635":-1,"7636":-1,"7637":-1,"7638":-1,"7639":1588,"7640":-1,"7641":-1,"7642":-1,"7643":-1,"7644":-1,"7645":1589,"7646":-1,"7647":-1,"7648":-1,"7649":-1,"7650":-1,"7651":-1,"7652":0,"7653":1587,"7654":-1,"7655":-1,"7656":-1,"7657":-1,"7658":-1,"7659":-1,"7660":-1,"7661":-1,"7662":-1,"7663":-1,"7664":-1,"7665":-1,"7666":-1,"7667":-1,"7668":-1,"7669":-1,"7670":-1,"7671":-1,"7672":-1,"7673":-1,"7674":-1,"7675":-1,"7676":-1,"7677":-1,"7678":-1,"7679":-1,"7680":-1,"7681":1586,"7682":-1,"7683":1587,"7684":-1,"7685":-1,"7686":-1,"7687":-1,"7688":1588,"7689":-1,"7690":-1,"7691":-1,"7692":-1,"7693":1589,"7694":-1,"7695":-1,"7696":-1,"7697":-1,"7698":-1,"7699":1586,"7700":-1,"7701":-1,"7702":-1,"7703":-1,"7704":-1,"7705":1586,"7706":-1,"7707":-1,"7708":-1,"7709":-1,"7710":-1,"7711":-1,"7712":-1,"7713":-1,"7714":-1,"7715":-1,"7716":-1,"7717":-1,"7718":-1,"7719":1588,"7720":-1,"7721":-1,"7722":-1,"7723":-1,"7724":-1,"7725":-1,"7726":-1,"7727":-1,"7728":-1,"7729":-1,"7730":-1,"7731":-1,"7732":-1,"7733":-1,"7734":0,"7735":-1,"7736":-1,"7737":1586,"7738":1587,"7739":1587,"7740":-1,"7741":-1,"7742":-1,"7743":-1,"7744":-1,"7745":-1,"7746":-1,"7747":-1,"7748":1587,"7749":-1,"7750":-1,"7751":1588,"7752":-1,"7753":-1,"7754":-1,"7755":-1,"7756":-1,"7757":-1,"7758":0,"7759":-1,"7760":-1,"7761":-1,"7762":-1,"7763":-1,"7764":-1,"7765":-1,"7766":-1,"7767":-1,"7768":1586,"7769":-1,"7770":-1,"7771":-1,"7772":-1,"7773":-1,"7774":-1,"7775":1589,"7776":-1,"7777":-1,"7778":-1,"7779":1589,"7780":-1,"7781":-1,"7782":-1,"7783":-1,"7784":-1,"7785":-1,"7786":0,"7787":-1,"7788":-1,"7789":-1,"7790":1587,"7791":1586,"7792":-1,"7793":-1,"7794":-1,"7795":-1,"7796":-1,"7797":-1,"7798":-1,"7799":-1,"7800":-1,"7801":0,"7802":-1,"7803":-1,"7804":-1,"7805":-1,"7806":-1,"7807":-1,"7808":1586,"7809":-1,"7810":-1,"7811":1587,"7812":-1,"7813":-1,"7814":-1,"7815":-1,"7816":-1,"7817":-1,"7818":-1,"7819":-1,"7820":-1,"7821":-1,"7822":-1,"7823":-1,"7824":-1,"7825":-1,"7826":-1,"7827":-1,"7828":-1,"7829":-1,"7830":-1,"7831":-1,"7832":-1,"7833":-1,"7834":-1,"7835":-1,"7836":-1,"7837":-1,"7838":-1,"7839":-1,"7840":-1,"7841":-1,"7842":-1,"7843":-1,"7844":1588,"7845":-1,"7846":-1,"7847":-1,"7848":-1,"7849":-1,"7850":1588,"7851":1588,"7852":-1,"7853":-1,"7854":-1,"7855":-1,"7856":-1,"7857":-1,"7858":-1,"7859":-1,"7860":-1,"7861":-1,"7862":-1,"7863":-1,"7864":-1,"7865":-1,"7866":-1,"7867":-1,"7868":-1,"7869":-1,"7870":-1,"7871":-1,"7872":-1,"7873":-1,"7874":0,"7875":-1,"7876":0,"7877":-1,"7878":1586,"7879":-1,"7880":-1,"7881":-1,"7882":-1,"7883":1589,"7884":-1,"7885":-1,"7886":-1,"7887":-1,"7888":-1,"7889":-1,"7890":-1,"7891":-1,"7892":-1,"7893":-1,"7894":-1,"7895":-1,"7896":-1,"7897":-1,"7898":-1,"7899":-1,"7900":-1,"7901":-1,"7902":-1,"7903":-1,"7904":-1,"7905":1587,"7906":-1,"7907":-1,"7908":-1,"7909":-1,"7910":-1,"7911":-1,"7912":0,"7913":0,"7914":-1,"7915":-1,"7916":-1,"7917":-1,"7918":-1,"7919":-1,"7920":-1,"7921":-1,"7922":-1,"7923":-1,"7924":0,"7925":-1,"7926":-1,"7927":-1,"7928":-1,"7929":1586,"7930":-1,"7931":-1,"7932":-1,"7933":-1,"7934":-1,"7935":-1,"7936":-1,"7937":-1,"7938":-1,"7939":1587,"7940":-1,"7941":1588,"7942":-1,"7943":-1,"7944":-1,"7945":1587,"7946":-1,"7947":1588,"7948":-1,"7949":-1,"7950":-1,"7951":-1,"7952":-1,"7953":-1,"7954":-1,"7955":-1,"7956":-1,"7957":-1,"7958":-1,"7959":-1,"7960":-1,"7961":1588,"7962":-1,"7963":-1,"7964":-1,"7965":-1,"7966":-1,"7967":-1,"7968":1586,"7969":-1,"7970":1588,"7971":-1,"7972":-1,"7973":-1,"7974":-1,"7975":-1,"7976":-1,"7977":-1,"7978":1588,"7979":-1,"7980":-1,"7981":-1,"7982":1589,"7983":-1,"7984":-1,"7985":-1,"7986":-1,"7987":-1,"7988":-1,"7989":1589,"7990":1587,"7991":1589,"7992":-1,"7993":-1,"7994":-1,"7995":-1,"7996":-1,"7997":-1,"7998":-1,"7999":-1,"8000":-1,"8001":-1,"8002":1588,"8003":-1,"8004":1586,"8005":-1,"8006":-1,"8007":-1,"8008":-1,"8009":-1,"8010":1586,"8011":-1,"8012":-1,"8013":-1,"8014":1587,"8015":-1,"8016":-1,"8017":1588,"8018":-1,"8019":-1,"8020":-1,"8021":1588,"8022":-1,"8023":-1,"8024":-1,"8025":-1,"8026":1588,"8027":-1,"8028":-1,"8029":-1,"8030":-1,"8031":-1,"8032":-1,"8033":1589,"8034":-1,"8035":-1,"8036":-1,"8037":1587,"8038":-1,"8039":-1,"8040":-1,"8041":1588,"8042":-1,"8043":-1,"8044":-1,"8045":-1,"8046":1589,"8047":-1,"8048":-1,"8049":1588,"8050":-1,"8051":-1,"8052":-1,"8053":-1,"8054":-1,"8055":-1,"8056":-1,"8057":-1,"8058":-1,"8059":-1,"8060":-1,"8061":-1,"8062":-1,"8063":-1,"8064":-1,"8065":-1,"8066":-1,"8067":-1,"8068":1588,"8069":-1,"8070":-1,"8071":-1,"8072":-1,"8073":-1,"8074":-1,"8075":-1,"8076":-1,"8077":-1,"8078":-1,"8079":0,"8080":-1,"8081":-1,"8082":-1,"8083":-1,"8084":-1,"8085":-1,"8086":-1,"8087":1589,"8088":-1,"8089":-1,"8090":1587,"8091":-1,"8092":-1,"8093":-1,"8094":-1,"8095":-1,"8096":-1,"8097":-1,"8098":-1,"8099":-1,"8100":1587,"8101":-1,"8102":-1,"8103":-1,"8104":-1,"8105":-1,"8106":-1,"8107":1588,"8108":-1,"8109":-1,"8110":-1,"8111":-1,"8112":-1,"8113":-1,"8114":-1,"8115":1588,"8116":0,"8117":-1,"8118":-1,"8119":-1,"8120":0,"8121":-1,"8122":-1,"8123":-1,"8124":-1,"8125":-1,"8126":-1,"8127":-1,"8128":-1,"8129":-1,"8130":-1,"8131":-1,"8132":-1,"8133":-1,"8134":-1,"8135":1589,"8136":-1,"8137":-1,"8138":-1,"8139":-1,"8140":-1,"8141":1589,"8142":-1,"8143":-1,"8144":1588,"8145":-1,"8146":-1,"8147":-1,"8148":-1,"8149":-1,"8150":-1,"8151":-1,"8152":-1,"8153":-1,"8154":1587,"8155":-1,"8156":-1,"8157":-1,"8158":-1,"8159":1589,"8160":1586,"8161":-1,"8162":-1,"8163":1588,"8164":1588,"8165":-1,"8166":1587,"8167":-1,"8168":-1,"8169":-1,"8170":-1,"8171":-1,"8172":1589,"8173":-1,"8174":-1,"8175":-1,"8176":-1,"8177":-1,"8178":-1,"8179":-1,"8180":-1,"8181":-1,"8182":-1,"8183":-1,"8184":0,"8185":-1,"8186":-1,"8187":-1,"8188":-1,"8189":-1,"8190":1588,"8191":-1,"8192":-1,"8193":-1,"8194":-1,"8195":-1,"8196":-1,"8197":-1,"8198":-1,"8199":-1,"8200":-1,"8201":-1,"8202":-1,"8203":-1,"8204":-1,"8205":-1,"8206":-1,"8207":-1,"8208":-1,"8209":-1,"8210":-1,"8211":-1,"8212":-1,"8213":-1,"8214":1588,"8215":-1,"8216":-1,"8217":-1,"8218":-1,"8219":-1,"8220":-1,"8221":-1,"8222":-1,"8223":1586,"8224":-1,"8225":1587,"8226":-1,"8227":0,"8228":-1,"8229":-1,"8230":-1,"8231":-1,"8232":-1,"8233":-1,"8234":-1,"8235":1587,"8236":-1,"8237":-1,"8238":-1,"8239":-1,"8240":-1,"8241":-1,"8242":-1,"8243":-1,"8244":-1,"8245":-1,"8246":-1,"8247":0,"8248":-1,"8249":-1,"8250":-1,"8251":1588,"8252":-1,"8253":-1,"8254":-1,"8255":-1,"8256":-1,"8257":-1,"8258":-1,"8259":1589,"8260":-1,"8261":-1,"8262":-1,"8263":-1,"8264":-1,"8265":-1,"8266":-1,"8267":-1,"8268":-1,"8269":1587,"8270":-1,"8271":-1,"8272":-1,"8273":1588,"8274":-1,"8275":1588,"8276":-1,"8277":-1,"8278":-1,"8279":-1,"8280":-1,"8281":-1,"8282":-1,"8283":-1,"8284":-1,"8285":-1,"8286":-1,"8287":0,"8288":-1,"8289":1587,"8290":-1,"8291":-1,"8292":-1,"8293":-1,"8294":-1,"8295":-1,"8296":-1,"8297":-1,"8298":1586,"8299":-1,"8300":-1,"8301":-1,"8302":-1,"8303":-1,"8304":-1,"8305":-1,"8306":1588,"8307":-1,"8308":1587,"8309":-1,"8310":1588,"8311":-1,"8312":-1,"8313":-1,"8314":-1,"8315":-1,"8316":-1,"8317":-1,"8318":-1,"8319":-1,"8320":-1,"8321":-1,"8322":1588,"8323":1587,"8324":-1,"8325":-1,"8326":-1,"8327":-1,"8328":-1,"8329":-1,"8330":-1,"8331":-1,"8332":-1,"8333":-1,"8334":1587,"8335":1587,"8336":-1,"8337":-1,"8338":-1,"8339":-1,"8340":-1,"8341":-1,"8342":-1,"8343":-1,"8344":-1,"8345":-1,"8346":-1,"8347":-1,"8348":1588,"8349":1588,"8350":-1,"8351":-1,"8352":-1,"8353":-1,"8354":-1,"8355":-1,"8356":-1,"8357":-1,"8358":-1,"8359":-1,"8360":-1,"8361":-1,"8362":-1,"8363":-1,"8364":-1,"8365":-1,"8366":-1,"8367":-1,"8368":1588,"8369":1586,"8370":-1,"8371":-1,"8372":-1,"8373":-1,"8374":-1,"8375":-1,"8376":-1,"8377":-1,"8378":-1,"8379":-1,"8380":-1,"8381":-1,"8382":-1,"8383":-1,"8384":-1,"8385":-1,"8386":-1,"8387":-1,"8388":-1,"8389":-1,"8390":-1,"8391":-1,"8392":-1,"8393":-1,"8394":-1,"8395":-1,"8396":-1,"8397":1588,"8398":-1,"8399":-1,"8400":-1,"8401":-1,"8402":-1,"8403":-1,"8404":-1,"8405":-1,"8406":-1,"8407":-1,"8408":1587,"8409":-1,"8410":-1,"8411":1588,"8412":-1,"8413":-1,"8414":-1,"8415":-1,"8416":-1,"8417":-1,"8418":-1,"8419":-1,"8420":-1,"8421":-1,"8422":-1,"8423":-1,"8424":-1,"8425":-1,"8426":-1,"8427":1586,"8428":-1,"8429":-1,"8430":-1,"8431":-1,"8432":-1,"8433":-1,"8434":-1,"8435":-1,"8436":-1,"8437":-1,"8438":1588,"8439":1587,"8440":-1,"8441":-1,"8442":-1,"8443":1587,"8444":-1,"8445":-1,"8446":0,"8447":-1,"8448":-1,"8449":1588,"8450":-1,"8451":-1,"8452":-1,"8453":-1,"8454":1586,"8455":-1,"8456":-1,"8457":-1,"8458":1588,"8459":-1,"8460":-1,"8461":-1,"8462":-1,"8463":-1,"8464":1589,"8465":-1,"8466":-1,"8467":-1,"8468":-1,"8469":-1,"8470":-1,"8471":-1,"8472":-1,"8473":-1,"8474":1588,"8475":-1,"8476":-1,"8477":-1,"8478":-1,"8479":-1,"8480":-1,"8481":-1,"8482":-1,"8483":-1,"8484":1588,"8485":-1,"8486":-1,"8487":-1,"8488":-1,"8489":-1,"8490":-1,"8491":-1,"8492":-1,"8493":-1,"8494":-1,"8495":-1,"8496":-1,"8497":-1,"8498":0,"8499":-1,"8500":-1,"8501":-1,"8502":-1,"8503":-1,"8504":1587,"8505":-1,"8506":-1,"8507":0,"8508":-1,"8509":-1,"8510":-1,"8511":-1,"8512":-1,"8513":-1,"8514":1588,"8515":-1,"8516":-1,"8517":1587,"8518":-1,"8519":-1,"8520":-1,"8521":-1,"8522":-1,"8523":-1,"8524":-1,"8525":-1,"8526":-1,"8527":-1,"8528":-1,"8529":1588,"8530":-1,"8531":-1,"8532":-1,"8533":-1,"8534":-1,"8535":-1,"8536":-1,"8537":-1,"8538":-1,"8539":-1,"8540":-1,"8541":-1,"8542":-1,"8543":-1,"8544":1587,"8545":-1,"8546":-1,"8547":-1,"8548":-1,"8549":1587,"8550":-1,"8551":-1,"8552":-1,"8553":-1,"8554":-1,"8555":1587,"8556":-1,"8557":-1,"8558":-1,"8559":-1,"8560":-1,"8561":-1,"8562":-1,"8563":-1,"8564":-1,"8565":-1,"8566":-1,"8567":-1,"8568":-1,"8569":-1,"8570":-1,"8571":-1,"8572":-1,"8573":1587,"8574":-1,"8575":1589,"8576":-1,"8577":-1,"8578":-1,"8579":-1,"8580":-1,"8581":-1,"8582":-1,"8583":-1,"8584":-1,"8585":-1,"8586":0,"8587":1587,"8588":1589,"8589":-1,"8590":-1,"8591":-1,"8592":-1,"8593":-1,"8594":-1,"8595":-1,"8596":-1,"8597":-1,"8598":-1,"8599":-1,"8600":-1,"8601":-1,"8602":-1,"8603":-1,"8604":-1,"8605":-1,"8606":-1,"8607":-1,"8608":-1,"8609":-1,"8610":-1,"8611":1587,"8612":-1,"8613":-1,"8614":-1,"8615":-1,"8616":-1,"8617":1586,"8618":-1,"8619":1588,"8620":-1,"8621":-1,"8622":-1,"8623":-1,"8624":-1,"8625":-1,"8626":1588,"8627":-1,"8628":-1,"8629":-1,"8630":-1,"8631":-1,"8632":-1,"8633":-1,"8634":1589,"8635":1589,"8636":-1,"8637":-1,"8638":-1,"8639":-1,"8640":1588,"8641":-1,"8642":-1,"8643":-1,"8644":-1,"8645":1588,"8646":-1,"8647":-1,"8648":-1,"8649":-1,"8650":-1,"8651":1588,"8652":0,"8653":-1,"8654":-1,"8655":-1,"8656":-1,"8657":-1,"8658":-1,"8659":-1,"8660":-1,"8661":1587,"8662":-1,"8663":-1,"8664":-1,"8665":-1,"8666":-1,"8667":-1,"8668":-1,"8669":-1,"8670":-1,"8671":0,"8672":1588,"8673":-1,"8674":1587,"8675":-1,"8676":-1,"8677":-1,"8678":-1,"8679":-1,"8680":-1,"8681":-1,"8682":-1,"8683":-1,"8684":-1,"8685":0,"8686":-1,"8687":-1,"8688":-1,"8689":1587,"8690":-1,"8691":-1,"8692":-1,"8693":-1,"8694":1588,"8695":-1,"8696":-1,"8697":-1,"8698":-1,"8699":-1,"8700":-1,"8701":-1,"8702":-1,"8703":1588,"8704":-1,"8705":-1,"8706":-1,"8707":1588,"8708":-1,"8709":-1,"8710":-1,"8711":-1,"8712":-1,"8713":-1,"8714":-1,"8715":-1,"8716":-1,"8717":-1,"8718":-1,"8719":-1,"8720":-1,"8721":1586,"8722":-1,"8723":-1,"8724":-1,"8725":-1,"8726":0,"8727":-1,"8728":-1,"8729":-1,"8730":-1,"8731":-1,"8732":-1,"8733":-1,"8734":-1,"8735":-1,"8736":-1,"8737":-1,"8738":-1,"8739":-1,"8740":-1,"8741":1589,"8742":-1,"8743":-1,"8744":-1,"8745":1587,"8746":-1,"8747":-1,"8748":-1,"8749":-1,"8750":-1,"8751":-1,"8752":-1,"8753":-1,"8754":-1,"8755":-1,"8756":-1,"8757":1588,"8758":-1,"8759":-1,"8760":-1,"8761":-1,"8762":-1,"8763":-1,"8764":-1,"8765":-1,"8766":-1,"8767":-1,"8768":-1,"8769":-1,"8770":-1,"8771":1587,"8772":-1,"8773":-1,"8774":-1,"8775":-1,"8776":0,"8777":-1,"8778":1587,"8779":-1,"8780":-1,"8781":-1,"8782":1588,"8783":-1,"8784":-1,"8785":1587,"8786":-1,"8787":-1,"8788":0,"8789":-1,"8790":-1,"8791":-1,"8792":-1,"8793":1588,"8794":1586,"8795":-1,"8796":-1,"8797":-1,"8798":-1,"8799":-1,"8800":-1,"8801":-1,"8802":1588,"8803":-1,"8804":-1,"8805":-1,"8806":-1,"8807":-1,"8808":-1,"8809":-1,"8810":-1,"8811":-1,"8812":-1,"8813":1587,"8814":-1,"8815":-1,"8816":-1,"8817":1588,"8818":-1,"8819":-1,"8820":-1,"8821":-1,"8822":-1,"8823":-1,"8824":-1,"8825":1587,"8826":-1,"8827":-1,"8828":1588,"8829":-1,"8830":-1,"8831":-1,"8832":-1,"8833":-1,"8834":-1,"8835":1587,"8836":-1,"8837":-1,"8838":-1,"8839":-1,"8840":-1,"8841":-1,"8842":-1,"8843":1587,"8844":1588,"8845":1588,"8846":-1,"8847":-1,"8848":-1,"8849":1586,"8850":-1,"8851":-1,"8852":1587,"8853":-1,"8854":-1,"8855":-1,"8856":-1,"8857":-1,"8858":-1,"8859":-1,"8860":-1,"8861":-1,"8862":-1,"8863":-1,"8864":-1,"8865":1587,"8866":-1,"8867":-1,"8868":-1,"8869":-1,"8870":-1,"8871":-1,"8872":-1,"8873":-1,"8874":-1,"8875":-1,"8876":-1,"8877":-1,"8878":-1,"8879":1587,"8880":-1,"8881":-1,"8882":-1,"8883":-1,"8884":-1,"8885":-1,"8886":-1,"8887":-1,"8888":-1,"8889":-1,"8890":-1,"8891":-1,"8892":-1,"8893":-1,"8894":-1,"8895":-1,"8896":-1,"8897":-1,"8898":-1,"8899":1588,"8900":-1,"8901":1588,"8902":-1,"8903":-1,"8904":-1,"8905":1588,"8906":-1,"8907":-1,"8908":-1,"8909":-1,"8910":-1,"8911":-1,"8912":-1,"8913":1587,"8914":-1,"8915":0,"8916":-1,"8917":-1,"8918":-1,"8919":-1,"8920":-1,"8921":-1,"8922":-1,"8923":-1,"8924":-1,"8925":-1,"8926":-1,"8927":0,"8928":-1,"8929":-1,"8930":-1,"8931":-1,"8932":1588,"8933":-1,"8934":-1,"8935":1587,"8936":-1,"8937":-1,"8938":-1,"8939":-1,"8940":-1,"8941":-1,"8942":-1,"8943":-1,"8944":-1,"8945":-1,"8946":-1,"8947":-1,"8948":1588,"8949":-1,"8950":-1,"8951":-1,"8952":-1,"8953":-1,"8954":-1,"8955":0,"8956":-1,"8957":-1,"8958":-1,"8959":-1,"8960":-1,"8961":0,"8962":-1,"8963":1587,"8964":-1,"8965":-1,"8966":-1,"8967":-1,"8968":-1,"8969":-1,"8970":-1,"8971":-1,"8972":-1,"8973":-1,"8974":0,"8975":-1,"8976":1586,"8977":-1,"8978":-1,"8979":-1,"8980":-1,"8981":-1,"8982":-1,"8983":1589,"8984":-1,"8985":-1,"8986":-1,"8987":-1,"8988":-1,"8989":-1,"8990":1587,"8991":-1,"8992":-1,"8993":-1,"8994":-1,"8995":-1,"8996":-1,"8997":-1,"8998":-1,"8999":-1,"9000":-1,"9001":-1,"9002":-1,"9003":-1,"9004":-1,"9005":-1,"9006":-1,"9007":-1,"9008":1587,"9009":-1,"9010":-1,"9011":-1,"9012":-1,"9013":-1,"9014":-1,"9015":-1,"9016":-1,"9017":-1,"9018":-1,"9019":-1,"9020":-1,"9021":-1,"9022":-1,"9023":-1,"9024":-1,"9025":-1,"9026":-1,"9027":-1,"9028":-1,"9029":-1,"9030":-1,"9031":-1,"9032":1589,"9033":-1,"9034":-1,"9035":-1,"9036":-1,"9037":-1,"9038":-1,"9039":-1,"9040":-1,"9041":-1,"9042":-1,"9043":-1,"9044":-1,"9045":-1,"9046":-1,"9047":1587,"9048":-1,"9049":-1,"9050":-1,"9051":-1,"9052":-1,"9053":-1,"9054":-1,"9055":-1,"9056":1588,"9057":-1,"9058":-1,"9059":-1,"9060":-1,"9061":-1,"9062":-1,"9063":1588,"9064":-1,"9065":-1,"9066":-1,"9067":-1,"9068":1588,"9069":-1,"9070":-1,"9071":-1,"9072":-1,"9073":-1,"9074":1588,"9075":-1,"9076":-1,"9077":1586,"9078":1588,"9079":0,"9080":-1,"9081":-1,"9082":-1,"9083":-1,"9084":1589,"9085":0,"9086":-1,"9087":-1,"9088":0,"9089":-1,"9090":-1,"9091":-1,"9092":-1,"9093":-1,"9094":-1,"9095":-1,"9096":1589,"9097":-1,"9098":-1,"9099":-1,"9100":-1,"9101":-1,"9102":1589,"9103":-1,"9104":-1,"9105":-1,"9106":-1,"9107":-1,"9108":-1,"9109":-1,"9110":-1,"9111":-1,"9112":1587,"9113":-1,"9114":0,"9115":-1,"9116":-1,"9117":-1,"9118":-1,"9119":-1,"9120":1586,"9121":-1,"9122":-1,"9123":1587,"9124":-1,"9125":-1,"9126":-1,"9127":-1,"9128":-1,"9129":-1,"9130":-1,"9131":-1,"9132":-1,"9133":-1,"9134":-1,"9135":-1,"9136":-1,"9137":-1,"9138":-1,"9139":1589,"9140":-1,"9141":-1,"9142":0,"9143":-1,"9144":-1,"9145":-1,"9146":-1,"9147":-1,"9148":-1,"9149":-1,"9150":-1,"9151":-1,"9152":-1,"9153":-1,"9154":-1,"9155":-1,"9156":-1,"9157":-1,"9158":-1,"9159":-1,"9160":0,"9161":1587,"9162":-1,"9163":-1,"9164":-1,"9165":-1,"9166":-1,"9167":-1,"9168":-1,"9169":-1,"9170":-1,"9171":-1,"9172":-1,"9173":-1,"9174":-1,"9175":-1,"9176":-1,"9177":-1,"9178":-1,"9179":-1,"9180":-1,"9181":-1,"9182":-1,"9183":-1,"9184":-1,"9185":1588,"9186":-1,"9187":-1,"9188":1586,"9189":-1,"9190":1588,"9191":-1,"9192":-1,"9193":-1,"9194":-1,"9195":-1,"9196":-1,"9197":-1,"9198":-1,"9199":-1,"9200":-1,"9201":1586,"9202":-1,"9203":-1,"9204":-1,"9205":-1,"9206":-1,"9207":0,"9208":-1,"9209":-1,"9210":-1,"9211":1586,"9212":-1,"9213":-1,"9214":-1,"9215":-1,"9216":-1,"9217":-1,"9218":-1,"9219":-1,"9220":-1,"9221":1589,"9222":-1,"9223":-1,"9224":1586,"9225":-1,"9226":-1,"9227":-1,"9228":-1,"9229":-1,"9230":-1,"9231":-1,"9232":-1,"9233":-1,"9234":-1,"9235":-1,"9236":-1,"9237":1588,"9238":-1,"9239":1587,"9240":-1,"9241":-1,"9242":1586,"9243":1587,"9244":-1,"9245":-1,"9246":-1,"9247":-1,"9248":0,"9249":-1,"9250":-1,"9251":-1,"9252":-1,"9253":-1,"9254":-1,"9255":-1,"9256":-1,"9257":-1,"9258":-1,"9259":-1,"9260":-1,"9261":-1,"9262":0,"9263":-1,"9264":-1,"9265":-1,"9266":1586,"9267":0,"9268":-1,"9269":-1,"9270":-1,"9271":-1,"9272":-1,"9273":-1,"9274":-1,"9275":-1,"9276":-1,"9277":-1,"9278":-1,"9279":-1,"9280":-1,"9281":-1,"9282":-1,"9283":0,"9284":-1,"9285":-1,"9286":1586,"9287":-1,"9288":-1,"9289":-1,"9290":-1,"9291":-1,"9292":-1,"9293":0,"9294":-1,"9295":1588,"9296":-1,"9297":1587,"9298":-1,"9299":-1,"9300":-1,"9301":1586,"9302":1586,"9303":-1,"9304":-1,"9305":0,"9306":-1,"9307":-1,"9308":1588,"9309":-1,"9310":-1,"9311":-1,"9312":-1,"9313":-1,"9314":1588,"9315":-1,"9316":-1,"9317":-1,"9318":-1,"9319":1588,"9320":1587,"9321":-1,"9322":1588,"9323":-1,"9324":-1,"9325":-1,"9326":-1,"9327":-1,"9328":-1,"9329":-1,"9330":-1,"9331":-1,"9332":-1,"9333":-1,"9334":-1,"9335":-1,"9336":-1,"9337":1587,"9338":1588,"9339":1588,"9340":1589,"9341":1587,"9342":-1,"9343":-1,"9344":-1,"9345":-1,"9346":-1,"9347":-1,"9348":-1,"9349":-1,"9350":-1,"9351":-1,"9352":-1,"9353":-1,"9354":-1,"9355":1588,"9356":1586,"9357":-1,"9358":-1,"9359":-1,"9360":-1,"9361":1588,"9362":-1,"9363":1588,"9364":-1,"9365":1588,"9366":-1,"9367":-1,"9368":-1,"9369":-1,"9370":-1,"9371":-1,"9372":-1,"9373":-1,"9374":-1,"9375":1587,"9376":-1,"9377":-1,"9378":-1,"9379":-1,"9380":-1,"9381":1589,"9382":1588,"9383":1588,"9384":-1,"9385":-1,"9386":-1,"9387":-1,"9388":-1,"9389":-1,"9390":0,"9391":-1,"9392":-1,"9393":-1,"9394":-1,"9395":-1,"9396":-1,"9397":-1,"9398":-1,"9399":-1,"9400":1589,"9401":1587,"9402":-1,"9403":-1,"9404":-1,"9405":1587,"9406":-1,"9407":-1,"9408":1586,"9409":-1,"9410":1587,"9411":1587,"9412":-1,"9413":-1,"9414":-1,"9415":-1,"9416":-1,"9417":1588,"9418":1588,"9419":-1,"9420":-1,"9421":-1,"9422":0,"9423":-1,"9424":-1,"9425":-1,"9426":-1,"9427":1588,"9428":-1,"9429":1588,"9430":-1,"9431":1588,"9432":-1,"9433":-1,"9434":-1,"9435":-1,"9436":-1,"9437":0,"9438":-1,"9439":-1,"9440":0,"9441":-1,"9442":-1,"9443":-1,"9444":-1,"9445":-1,"9446":-1,"9447":-1,"9448":-1,"9449":-1,"9450":-1,"9451":-1,"9452":-1,"9453":1588,"9454":1586,"9455":-1,"9456":-1,"9457":-1,"9458":-1,"9459":-1,"9460":-1,"9461":-1,"9462":-1,"9463":-1,"9464":-1,"9465":-1,"9466":-1,"9467":-1,"9468":-1,"9469":-1,"9470":1588,"9471":0,"9472":-1,"9473":-1,"9474":-1,"9475":1589,"9476":-1,"9477":-1,"9478":-1,"9479":-1,"9480":1586,"9481":1586,"9482":-1,"9483":-1,"9484":-1,"9485":-1,"9486":-1,"9487":-1,"9488":-1,"9489":-1,"9490":-1,"9491":-1,"9492":1587,"9493":-1,"9494":0,"9495":-1,"9496":-1,"9497":-1,"9498":-1,"9499":-1,"9500":-1,"9501":-1,"9502":-1,"9503":-1,"9504":-1,"9505":-1,"9506":1587,"9507":-1,"9508":-1,"9509":-1,"9510":-1,"9511":1587,"9512":-1,"9513":-1,"9514":-1,"9515":-1,"9516":-1,"9517":-1,"9518":-1,"9519":-1,"9520":-1,"9521":1587,"9522":-1,"9523":-1,"9524":-1,"9525":-1,"9526":-1,"9527":-1,"9528":-1,"9529":-1,"9530":-1,"9531":-1,"9532":-1,"9533":-1,"9534":0,"9535":1586,"9536":-1,"9537":-1,"9538":1588,"9539":-1,"9540":-1,"9541":-1,"9542":1588,"9543":-1,"9544":-1,"9545":-1,"9546":-1,"9547":-1,"9548":-1,"9549":-1,"9550":-1,"9551":-1,"9552":-1,"9553":-1,"9554":-1,"9555":-1,"9556":0,"9557":-1,"9558":1586,"9559":1588,"9560":-1,"9561":-1,"9562":-1,"9563":-1,"9564":-1,"9565":-1,"9566":-1,"9567":-1,"9568":-1,"9569":-1,"9570":-1,"9571":-1,"9572":-1,"9573":-1,"9574":-1,"9575":0,"9576":-1,"9577":-1,"9578":-1,"9579":-1,"9580":-1,"9581":-1,"9582":-1,"9583":-1,"9584":1588,"9585":-1,"9586":-1,"9587":-1,"9588":-1,"9589":-1,"9590":-1,"9591":-1,"9592":-1,"9593":1587,"9594":-1,"9595":-1,"9596":-1,"9597":-1,"9598":-1,"9599":1589,"9600":-1,"9601":0,"9602":-1,"9603":1587,"9604":-1,"9605":-1,"9606":-1,"9607":-1,"9608":-1,"9609":-1,"9610":-1,"9611":-1,"9612":-1,"9613":-1,"9614":-1,"9615":1588,"9616":-1,"9617":-1,"9618":-1,"9619":-1,"9620":-1,"9621":-1,"9622":-1,"9623":-1,"9624":1589,"9625":-1,"9626":-1,"9627":-1,"9628":-1,"9629":-1,"9630":-1,"9631":-1,"9632":-1,"9633":-1,"9634":-1,"9635":-1,"9636":-1,"9637":1589,"9638":-1,"9639":-1,"9640":-1,"9641":-1,"9642":-1,"9643":-1,"9644":-1,"9645":-1,"9646":-1,"9647":-1,"9648":-1,"9649":-1,"9650":-1,"9651":-1,"9652":-1,"9653":-1,"9654":1589,"9655":-1,"9656":-1,"9657":1589,"9658":-1,"9659":-1,"9660":-1,"9661":-1,"9662":1587,"9663":-1,"9664":-1,"9665":1588,"9666":1588,"9667":-1,"9668":-1,"9669":-1,"9670":-1,"9671":-1,"9672":-1,"9673":-1,"9674":-1,"9675":1586,"9676":-1,"9677":-1,"9678":-1,"9679":-1,"9680":-1,"9681":-1,"9682":-1,"9683":-1,"9684":1587,"9685":-1,"9686":-1,"9687":-1,"9688":-1,"9689":-1,"9690":-1,"9691":-1,"9692":-1,"9693":-1,"9694":-1,"9695":-1,"9696":-1,"9697":-1,"9698":-1,"9699":-1,"9700":-1,"9701":-1,"9702":-1,"9703":-1,"9704":-1,"9705":-1,"9706":-1,"9707":-1,"9708":-1,"9709":1589,"9710":-1,"9711":-1,"9712":-1,"9713":-1,"9714":-1,"9715":1589,"9716":1586,"9717":-1,"9718":-1,"9719":-1,"9720":0,"9721":-1,"9722":-1,"9723":-1,"9724":-1,"9725":-1,"9726":-1,"9727":0,"9728":-1,"9729":-1,"9730":-1,"9731":0,"9732":0,"9733":-1,"9734":-1,"9735":-1,"9736":-1,"9737":-1,"9738":-1,"9739":-1,"9740":-1,"9741":-1,"9742":-1,"9743":-1,"9744":-1,"9745":-1,"9746":-1,"9747":-1,"9748":-1,"9749":-1,"9750":-1,"9751":-1,"9752":-1,"9753":-1,"9754":1587,"9755":-1,"9756":0,"9757":-1,"9758":-1,"9759":-1,"9760":-1,"9761":-1,"9762":-1,"9763":-1,"9764":-1,"9765":-1,"9766":-1,"9767":-1,"9768":-1,"9769":-1,"9770":-1,"9771":-1,"9772":-1,"9773":-1,"9774":-1,"9775":-1,"9776":1586,"9777":-1,"9778":0,"9779":-1,"9780":-1,"9781":1588,"9782":-1,"9783":-1,"9784":-1,"9785":-1,"9786":-1,"9787":-1,"9788":-1,"9789":-1,"9790":-1,"9791":-1,"9792":-1,"9793":0,"9794":-1,"9795":-1,"9796":-1,"9797":-1,"9798":-1,"9799":-1,"9800":-1,"9801":1589,"9802":-1,"9803":-1,"9804":-1,"9805":-1,"9806":-1,"9807":-1,"9808":-1,"9809":-1,"9810":-1,"9811":-1,"9812":-1,"9813":-1,"9814":1587,"9815":-1,"9816":-1,"9817":1587,"9818":-1,"9819":-1,"9820":-1,"9821":-1,"9822":0,"9823":-1,"9824":-1,"9825":-1,"9826":-1,"9827":0,"9828":-1,"9829":-1,"9830":-1,"9831":1589,"9832":1587,"9833":-1,"9834":-1,"9835":1586,"9836":1587,"9837":0,"9838":-1,"9839":-1,"9840":-1,"9841":0,"9842":-1,"9843":-1,"9844":1589,"9845":1588,"9846":-1,"9847":-1,"9848":-1,"9849":-1,"9850":-1,"9851":-1,"9852":-1,"9853":0,"9854":-1,"9855":-1,"9856":1588,"9857":-1,"9858":-1,"9859":-1,"9860":-1,"9861":-1,"9862":1588,"9863":1587,"9864":-1,"9865":-1,"9866":-1,"9867":-1,"9868":-1,"9869":1587,"9870":-1,"9871":1586,"9872":-1,"9873":-1,"9874":-1,"9875":-1,"9876":1587,"9877":-1,"9878":-1,"9879":-1,"9880":-1,"9881":-1,"9882":-1,"9883":-1,"9884":-1,"9885":-1,"9886":-1,"9887":-1,"9888":-1,"9889":-1,"9890":-1,"9891":-1,"9892":-1,"9893":-1,"9894":-1,"9895":-1,"9896":-1,"9897":-1,"9898":-1,"9899":1587,"9900":-1,"9901":-1,"9902":-1,"9903":-1,"9904":-1,"9905":-1,"9906":-1,"9907":-1,"9908":-1,"9909":-1,"9910":-1,"9911":-1,"9912":-1,"9913":-1,"9914":-1,"9915":-1,"9916":-1,"9917":-1,"9918":-1,"9919":-1,"9920":-1,"9921":-1,"9922":-1,"9923":-1,"9924":-1,"9925":-1,"9926":-1,"9927":-1,"9928":-1,"9929":-1,"9930":-1,"9931":-1,"9932":-1,"9933":-1,"9934":-1,"9935":-1,"9936":-1,"9937":-1,"9938":1587,"9939":1587,"9940":-1,"9941":-1,"9942":-1,"9943":-1,"9944":-1,"9945":-1,"9946":-1,"9947":-1,"9948":-1,"9949":-1,"9950":1589,"9951":-1,"9952":-1,"9953":-1,"9954":-1,"9955":-1,"9956":-1,"9957":-1,"9958":-1,"9959":-1,"9960":-1,"9961":-1,"9962":-1,"9963":-1,"9964":-1,"9965":-1,"9966":-1,"9967":-1,"9968":-1,"9969":-1,"9970":-1,"9971":-1,"9972":-1,"9973":-1,"9974":-1,"9975":-1,"9976":-1,"9977":-1,"9978":-1,"9979":1588,"9980":-1,"9981":1588,"9982":1587,"9983":-1,"9984":-1,"9985":-1,"9986":-1,"9987":1588,"9988":-1,"9989":-1,"9990":-1,"9991":1589,"9992":0,"9993":-1,"9994":-1,"9995":-1,"9996":-1,"9997":-1,"9998":-1,"9999":0,"10000":0,"10001":-1,"10002":-1,"10003":-1,"10004":-1,"10005":-1,"10006":-1,"10007":-1,"10008":-1,"10009":-1,"10010":-1,"10011":0,"10012":1588,"10013":-1,"10014":-1,"10015":-1,"10016":-1,"10017":-1,"10018":-1,"10019":-1,"10020":-1,"10021":-1,"10022":-1,"10023":-1,"10024":-1,"10025":-1,"10026":1587,"10027":-1,"10028":-1,"10029":1587,"10030":-1,"10031":-1,"10032":-1,"10033":-1,"10034":-1,"10035":-1,"10036":-1,"10037":-1,"10038":-1,"10039":1587,"10040":-1,"10041":-1,"10042":-1,"10043":-1,"10044":-1,"10045":1587,"10046":-1,"10047":-1,"10048":-1,"10049":-1,"10050":-1,"10051":1588,"10052":1587,"10053":-1,"10054":-1,"10055":-1,"10056":-1,"10057":-1,"10058":-1,"10059":-1,"10060":-1,"10061":-1,"10062":-1,"10063":1587,"10064":-1,"10065":-1,"10066":-1,"10067":-1,"10068":-1,"10069":-1,"10070":-1,"10071":-1,"10072":-1,"10073":0,"10074":-1,"10075":-1,"10076":-1,"10077":0,"10078":-1,"10079":-1,"10080":-1,"10081":-1,"10082":-1,"10083":-1,"10084":-1,"10085":-1,"10086":-1,"10087":-1,"10088":-1,"10089":-1,"10090":-1,"10091":-1,"10092":-1,"10093":1589,"10094":-1,"10095":-1,"10096":-1,"10097":1587,"10098":-1,"10099":-1,"10100":-1,"10101":1586,"10102":-1,"10103":-1,"10104":-1,"10105":-1,"10106":-1,"10107":-1,"10108":-1,"10109":-1,"10110":0,"10111":-1,"10112":-1,"10113":-1,"10114":-1,"10115":-1,"10116":-1,"10117":-1,"10118":-1,"10119":-1,"10120":-1,"10121":-1,"10122":-1,"10123":-1,"10124":-1,"10125":-1,"10126":-1,"10127":-1,"10128":-1,"10129":1589,"10130":1587,"10131":-1,"10132":-1,"10133":-1,"10134":-1,"10135":-1,"10136":-1,"10137":-1,"10138":-1,"10139":-1,"10140":-1,"10141":1588,"10142":1587,"10143":-1,"10144":-1,"10145":-1,"10146":-1,"10147":-1,"10148":-1,"10149":-1,"10150":0,"10151":-1,"10152":-1,"10153":-1,"10154":-1,"10155":-1,"10156":1587,"10157":-1,"10158":-1,"10159":1587,"10160":-1,"10161":-1,"10162":-1,"10163":-1,"10164":-1,"10165":-1,"10166":-1,"10167":1588,"10168":-1,"10169":-1,"10170":-1,"10171":-1,"10172":-1,"10173":-1,"10174":-1,"10175":-1,"10176":1587,"10177":-1,"10178":-1,"10179":-1,"10180":-1,"10181":-1,"10182":-1,"10183":-1,"10184":-1,"10185":0,"10186":-1,"10187":-1,"10188":-1,"10189":-1,"10190":-1,"10191":-1,"10192":0,"10193":-1,"10194":1587,"10195":-1,"10196":-1,"10197":-1,"10198":1586,"10199":-1,"10200":-1,"10201":-1,"10202":-1,"10203":-1,"10204":-1,"10205":-1,"10206":-1,"10207":-1,"10208":-1,"10209":-1,"10210":-1,"10211":-1,"10212":1587,"10213":-1,"10214":-1,"10215":-1,"10216":1587,"10217":-1,"10218":-1,"10219":-1,"10220":-1,"10221":-1,"10222":-1,"10223":-1,"10224":-1,"10225":-1,"10226":-1,"10227":-1,"10228":-1,"10229":-1,"10230":-1,"10231":-1,"10232":-1,"10233":1587,"10234":-1,"10235":-1,"10236":-1,"10237":-1,"10238":-1,"10239":-1,"10240":-1,"10241":-1,"10242":-1,"10243":-1,"10244":-1,"10245":-1,"10246":-1,"10247":-1,"10248":-1,"10249":-1,"10250":-1,"10251":-1,"10252":-1,"10253":-1,"10254":-1,"10255":-1,"10256":-1,"10257":-1,"10258":-1,"10259":-1,"10260":-1,"10261":-1,"10262":-1,"10263":-1,"10264":1589,"10265":-1,"10266":-1,"10267":-1,"10268":1589,"10269":-1,"10270":-1,"10271":-1,"10272":-1,"10273":-1,"10274":-1,"10275":1588,"10276":-1,"10277":-1,"10278":0,"10279":-1,"10280":-1,"10281":-1,"10282":-1,"10283":-1,"10284":-1,"10285":-1,"10286":-1,"10287":1588,"10288":-1,"10289":1588,"10290":-1,"10291":-1,"10292":-1,"10293":-1,"10294":-1,"10295":-1,"10296":-1,"10297":-1,"10298":-1,"10299":0,"10300":0,"10301":1587,"10302":-1,"10303":1589,"10304":-1,"10305":-1,"10306":-1,"10307":-1,"10308":-1,"10309":-1,"10310":-1,"10311":-1,"10312":-1,"10313":-1,"10314":-1,"10315":1587,"10316":-1,"10317":1588,"10318":-1,"10319":-1,"10320":-1,"10321":-1,"10322":-1,"10323":-1,"10324":-1,"10325":-1,"10326":-1,"10327":-1,"10328":1586,"10329":-1,"10330":-1,"10331":1588,"10332":1588,"10333":-1,"10334":-1,"10335":-1,"10336":1586,"10337":1589,"10338":-1,"10339":-1,"10340":1587,"10341":-1,"10342":-1,"10343":-1,"10344":-1,"10345":-1,"10346":-1,"10347":-1,"10348":1589,"10349":-1,"10350":-1,"10351":-1,"10352":-1,"10353":-1,"10354":-1,"10355":-1,"10356":-1,"10357":1586,"10358":-1,"10359":-1,"10360":-1,"10361":-1,"10362":-1,"10363":-1,"10364":-1,"10365":-1,"10366":-1,"10367":-1,"10368":-1,"10369":-1,"10370":-1,"10371":1588,"10372":-1,"10373":-1,"10374":-1,"10375":-1,"10376":-1,"10377":-1,"10378":-1,"10379":-1,"10380":1587,"10381":-1,"10382":-1,"10383":-1,"10384":1588,"10385":-1,"10386":-1,"10387":1586,"10388":-1,"10389":-1,"10390":-1,"10391":-1,"10392":-1,"10393":-1,"10394":-1,"10395":-1,"10396":-1,"10397":-1,"10398":-1,"10399":-1,"10400":-1,"10401":-1,"10402":-1,"10403":-1,"10404":-1,"10405":1587,"10406":-1,"10407":1586,"10408":-1,"10409":-1,"10410":-1,"10411":-1,"10412":-1,"10413":-1,"10414":-1,"10415":-1,"10416":-1,"10417":-1,"10418":-1,"10419":-1,"10420":-1,"10421":-1,"10422":1589,"10423":-1,"10424":-1,"10425":-1,"10426":1587,"10427":1588,"10428":-1,"10429":-1,"10430":-1,"10431":-1,"10432":-1,"10433":-1,"10434":1587,"10435":-1,"10436":-1,"10437":-1,"10438":0,"10439":-1,"10440":-1,"10441":-1,"10442":-1,"10443":-1,"10444":-1,"10445":-1,"10446":-1,"10447":-1,"10448":-1,"10449":-1,"10450":-1,"10451":-1,"10452":1586,"10453":-1,"10454":-1,"10455":-1,"10456":-1,"10457":-1,"10458":1587,"10459":1587,"10460":-1,"10461":1587,"10462":1588,"10463":-1,"10464":-1,"10465":-1,"10466":-1,"10467":-1,"10468":-1,"10469":-1,"10470":-1,"10471":-1,"10472":-1,"10473":-1,"10474":-1,"10475":-1,"10476":-1,"10477":-1,"10478":-1,"10479":-1,"10480":1588,"10481":-1,"10482":-1,"10483":-1,"10484":-1,"10485":-1,"10486":-1,"10487":-1,"10488":-1,"10489":-1,"10490":-1,"10491":-1,"10492":1587,"10493":-1,"10494":0,"10495":-1,"10496":-1,"10497":-1,"10498":-1,"10499":-1,"10500":-1,"10501":-1,"10502":-1,"10503":-1,"10504":1589,"10505":1586,"10506":-1,"10507":-1,"10508":-1,"10509":0,"10510":-1,"10511":-1,"10512":-1,"10513":-1,"10514":0,"10515":-1,"10516":-1,"10517":-1,"10518":1589,"10519":-1,"10520":1589,"10521":-1,"10522":1588,"10523":-1,"10524":-1,"10525":-1,"10526":-1,"10527":-1,"10528":-1,"10529":-1,"10530":-1,"10531":-1,"10532":-1,"10533":-1,"10534":-1,"10535":-1,"10536":-1,"10537":-1,"10538":-1,"10539":-1,"10540":-1,"10541":1586,"10542":-1,"10543":-1,"10544":-1,"10545":-1,"10546":-1,"10547":-1,"10548":-1,"10549":-1,"10550":-1,"10551":-1,"10552":0,"10553":-1,"10554":-1,"10555":-1,"10556":1588,"10557":-1,"10558":-1,"10559":-1,"10560":-1,"10561":-1,"10562":-1,"10563":-1,"10564":-1,"10565":-1,"10566":-1,"10567":-1,"10568":-1,"10569":-1,"10570":-1,"10571":-1,"10572":-1,"10573":0,"10574":-1,"10575":-1,"10576":-1,"10577":-1,"10578":-1,"10579":-1,"10580":-1,"10581":-1,"10582":-1,"10583":-1,"10584":-1,"10585":-1,"10586":-1,"10587":-1,"10588":1589,"10589":-1,"10590":-1,"10591":-1,"10592":-1,"10593":-1,"10594":-1,"10595":-1,"10596":-1,"10597":-1,"10598":0,"10599":-1,"10600":1589,"10601":1587,"10602":1587,"10603":-1,"10604":-1,"10605":-1,"10606":-1,"10607":0,"10608":-1,"10609":-1,"10610":-1,"10611":-1,"10612":-1,"10613":1588,"10614":1588,"10615":-1,"10616":-1,"10617":-1,"10618":-1,"10619":-1,"10620":-1,"10621":1587,"10622":-1,"10623":-1,"10624":-1,"10625":-1,"10626":-1,"10627":-1,"10628":-1,"10629":1587,"10630":-1,"10631":-1,"10632":-1,"10633":-1,"10634":-1,"10635":-1,"10636":-1,"10637":-1,"10638":-1,"10639":-1,"10640":-1,"10641":1589,"10642":-1,"10643":-1,"10644":-1,"10645":-1,"10646":-1,"10647":-1,"10648":1588,"10649":-1,"10650":1587,"10651":-1,"10652":-1,"10653":-1,"10654":-1,"10655":-1,"10656":1589,"10657":-1,"10658":-1,"10659":1587,"10660":-1,"10661":-1,"10662":-1,"10663":1586,"10664":-1,"10665":-1,"10666":0,"10667":-1,"10668":-1,"10669":-1,"10670":-1,"10671":-1,"10672":1587,"10673":-1,"10674":-1,"10675":-1,"10676":-1,"10677":-1,"10678":1587,"10679":1586,"10680":-1,"10681":-1,"10682":-1,"10683":1587,"10684":-1,"10685":-1,"10686":1587,"10687":-1,"10688":-1,"10689":0,"10690":-1,"10691":-1,"10692":-1,"10693":-1,"10694":1588,"10695":-1,"10696":-1,"10697":-1,"10698":0,"10699":-1,"10700":-1,"10701":-1,"10702":-1,"10703":-1,"10704":-1,"10705":-1,"10706":-1,"10707":-1,"10708":1586,"10709":-1,"10710":-1,"10711":-1,"10712":1588,"10713":-1,"10714":1587,"10715":-1,"10716":-1,"10717":-1,"10718":1586,"10719":-1,"10720":-1,"10721":1587,"10722":1586,"10723":-1,"10724":-1,"10725":-1,"10726":-1,"10727":-1,"10728":-1,"10729":-1,"10730":1587,"10731":-1,"10732":1589,"10733":-1,"10734":-1,"10735":-1,"10736":1587,"10737":-1,"10738":-1,"10739":-1,"10740":-1,"10741":-1,"10742":-1,"10743":-1,"10744":-1,"10745":-1,"10746":-1,"10747":-1,"10748":-1,"10749":-1,"10750":1587,"10751":-1,"10752":-1,"10753":-1,"10754":-1,"10755":-1,"10756":-1,"10757":-1,"10758":-1,"10759":-1,"10760":-1,"10761":-1,"10762":-1,"10763":-1,"10764":-1,"10765":0,"10766":1589,"10767":-1,"10768":-1,"10769":-1,"10770":-1,"10771":-1,"10772":-1,"10773":-1,"10774":-1,"10775":-1,"10776":-1,"10777":-1,"10778":-1,"10779":0,"10780":-1,"10781":1587,"10782":-1,"10783":-1,"10784":-1,"10785":-1,"10786":-1,"10787":-1,"10788":-1,"10789":-1,"10790":1588,"10791":-1,"10792":-1,"10793":-1,"10794":-1,"10795":-1,"10796":1588,"10797":-1,"10798":-1,"10799":1589,"10800":-1,"10801":-1,"10802":1587,"10803":-1,"10804":-1,"10805":-1,"10806":-1,"10807":-1,"10808":-1,"10809":-1,"10810":-1,"10811":-1,"10812":-1,"10813":-1,"10814":-1,"10815":-1,"10816":-1,"10817":-1,"10818":-1,"10819":-1,"10820":-1,"10821":-1,"10822":-1,"10823":1588,"10824":-1,"10825":-1,"10826":1589,"10827":-1,"10828":-1,"10829":0,"10830":1588,"10831":1587,"10832":-1,"10833":-1,"10834":-1,"10835":-1,"10836":-1,"10837":-1,"10838":-1,"10839":-1,"10840":-1,"10841":-1,"10842":-1,"10843":0,"10844":-1,"10845":-1,"10846":-1,"10847":-1,"10848":-1,"10849":-1,"10850":-1,"10851":-1,"10852":1587,"10853":-1,"10854":-1,"10855":-1,"10856":-1,"10857":-1,"10858":1586,"10859":1586,"10860":-1,"10861":-1,"10862":-1,"10863":-1,"10864":-1,"10865":-1,"10866":-1,"10867":-1,"10868":1589,"10869":1586,"10870":-1,"10871":-1,"10872":-1,"10873":-1,"10874":-1,"10875":-1,"10876":-1,"10877":-1,"10878":-1,"10879":-1,"10880":-1,"10881":1588,"10882":-1,"10883":-1,"10884":-1,"10885":-1,"10886":-1,"10887":-1,"10888":-1,"10889":-1,"10890":-1,"10891":-1,"10892":-1,"10893":-1,"10894":-1,"10895":1588,"10896":-1,"10897":-1,"10898":-1,"10899":-1,"10900":-1,"10901":-1,"10902":-1,"10903":-1,"10904":-1,"10905":-1,"10906":-1,"10907":-1,"10908":0,"10909":-1,"10910":-1,"10911":-1,"10912":-1,"10913":1589,"10914":-1,"10915":-1,"10916":1589,"10917":-1,"10918":-1,"10919":-1,"10920":-1,"10921":-1,"10922":-1,"10923":-1,"10924":-1,"10925":-1,"10926":0,"10927":-1,"10928":-1,"10929":-1,"10930":-1,"10931":-1,"10932":-1,"10933":-1,"10934":-1,"10935":-1,"10936":-1,"10937":-1,"10938":-1,"10939":-1,"10940":-1,"10941":-1,"10942":-1,"10943":-1,"10944":0,"10945":-1,"10946":1589,"10947":1586,"10948":-1,"10949":-1,"10950":-1,"10951":-1,"10952":-1,"10953":-1,"10954":-1,"10955":-1,"10956":-1,"10957":-1,"10958":1587,"10959":-1,"10960":-1,"10961":-1,"10962":-1,"10963":-1,"10964":-1,"10965":-1,"10966":1587,"10967":-1,"10968":-1,"10969":1589,"10970":-1,"10971":-1,"10972":-1,"10973":-1,"10974":-1,"10975":-1,"10976":-1,"10977":-1,"10978":-1,"10979":-1,"10980":1589,"10981":-1,"10982":-1,"10983":-1,"10984":-1,"10985":-1,"10986":-1,"10987":-1,"10988":-1,"10989":1587,"10990":-1,"10991":-1,"10992":-1,"10993":-1,"10994":-1,"10995":1587,"10996":-1,"10997":-1,"10998":1588,"10999":-1,"11000":-1,"11001":0,"11002":-1,"11003":-1,"11004":1587,"11005":-1,"11006":-1,"11007":-1,"11008":-1,"11009":0,"11010":-1,"11011":-1,"11012":-1,"11013":1589,"11014":-1,"11015":-1,"11016":-1,"11017":-1,"11018":1586,"11019":-1,"11020":-1,"11021":-1,"11022":1589,"11023":-1,"11024":-1,"11025":-1,"11026":0,"11027":-1,"11028":-1,"11029":-1,"11030":-1,"11031":-1,"11032":-1,"11033":-1,"11034":-1,"11035":-1,"11036":0,"11037":-1,"11038":1588,"11039":-1,"11040":1586,"11041":-1,"11042":-1,"11043":-1,"11044":-1,"11045":-1,"11046":-1,"11047":-1,"11048":1588,"11049":1586,"11050":-1,"11051":-1,"11052":-1,"11053":-1,"11054":0,"11055":-1,"11056":0,"11057":-1,"11058":-1,"11059":-1,"11060":-1,"11061":-1,"11062":-1,"11063":-1,"11064":-1,"11065":-1,"11066":-1,"11067":1588,"11068":-1,"11069":-1,"11070":-1,"11071":-1,"11072":-1,"11073":-1,"11074":-1,"11075":-1,"11076":-1,"11077":-1,"11078":-1,"11079":-1,"11080":-1,"11081":-1,"11082":-1,"11083":-1,"11084":-1,"11085":-1,"11086":-1,"11087":-1,"11088":-1,"11089":-1,"11090":-1,"11091":-1,"11092":-1,"11093":-1,"11094":-1,"11095":-1,"11096":1586,"11097":-1,"11098":-1,"11099":-1,"11100":-1,"11101":-1,"11102":-1,"11103":-1,"11104":-1,"11105":1588,"11106":-1,"11107":-1,"11108":1586,"11109":-1,"11110":-1,"11111":-1,"11112":1587,"11113":-1,"11114":-1,"11115":1587,"11116":-1,"11117":-1,"11118":-1,"11119":-1,"11120":-1,"11121":-1,"11122":1587,"11123":-1,"11124":1586,"11125":-1,"11126":-1,"11127":-1,"11128":-1,"11129":1588,"11130":-1,"11131":-1,"11132":1588,"11133":-1,"11134":0,"11135":-1,"11136":1587,"11137":-1,"11138":-1,"11139":-1,"11140":0,"11141":-1,"11142":-1,"11143":1588,"11144":1586,"11145":-1,"11146":-1,"11147":-1,"11148":-1,"11149":-1,"11150":-1,"11151":-1,"11152":-1,"11153":-1,"11154":-1,"11155":-1,"11156":-1,"11157":-1,"11158":-1,"11159":-1,"11160":-1,"11161":1587,"11162":-1,"11163":-1,"11164":-1,"11165":-1,"11166":-1,"11167":-1,"11168":-1,"11169":-1,"11170":-1,"11171":-1,"11172":-1,"11173":-1,"11174":-1,"11175":-1,"11176":-1,"11177":1586,"11178":-1,"11179":-1,"11180":-1,"11181":-1,"11182":-1,"11183":-1,"11184":-1,"11185":-1,"11186":-1,"11187":-1,"11188":1588,"11189":-1,"11190":-1,"11191":-1,"11192":-1,"11193":-1,"11194":1589,"11195":-1,"11196":-1,"11197":-1,"11198":-1,"11199":1587,"11200":-1,"11201":-1,"11202":0,"11203":-1,"11204":-1,"11205":-1,"11206":1589,"11207":-1,"11208":-1,"11209":-1,"11210":-1,"11211":1589,"11212":-1,"11213":-1,"11214":1589,"11215":-1,"11216":-1,"11217":-1,"11218":-1,"11219":-1,"11220":-1,"11221":-1,"11222":1588,"11223":1587,"11224":-1,"11225":-1,"11226":-1,"11227":-1,"11228":1586,"11229":-1,"11230":-1,"11231":1587,"11232":-1,"11233":-1,"11234":-1,"11235":-1,"11236":-1,"11237":1589,"11238":-1,"11239":-1,"11240":-1,"11241":-1,"11242":-1,"11243":-1,"11244":0,"11245":-1,"11246":-1,"11247":1588,"11248":-1,"11249":-1,"11250":1588,"11251":-1,"11252":-1,"11253":-1,"11254":-1,"11255":1588,"11256":-1,"11257":-1,"11258":1588,"11259":1586,"11260":-1,"11261":-1,"11262":-1,"11263":-1,"11264":1586,"11265":-1,"11266":-1,"11267":-1,"11268":-1,"11269":-1,"11270":1588,"11271":1587,"11272":-1,"11273":-1,"11274":-1,"11275":0,"11276":-1,"11277":-1,"11278":-1,"11279":-1,"11280":-1,"11281":-1,"11282":-1,"11283":-1,"11284":-1,"11285":-1,"11286":-1,"11287":-1,"11288":-1,"11289":-1,"11290":-1,"11291":0,"11292":-1,"11293":1587,"11294":1586,"11295":-1,"11296":1586,"11297":-1,"11298":-1,"11299":-1,"11300":-1,"11301":-1,"11302":-1,"11303":-1,"11304":-1,"11305":-1,"11306":-1,"11307":-1,"11308":-1,"11309":1588,"11310":-1,"11311":-1,"11312":-1,"11313":-1,"11314":-1,"11315":-1,"11316":-1,"11317":-1,"11318":-1,"11319":1586,"11320":-1,"11321":-1,"11322":-1,"11323":-1,"11324":-1,"11325":-1,"11326":-1,"11327":-1,"11328":-1,"11329":-1,"11330":-1,"11331":-1,"11332":-1,"11333":-1,"11334":-1,"11335":-1,"11336":-1,"11337":-1,"11338":-1,"11339":-1,"11340":-1,"11341":-1,"11342":-1,"11343":-1,"11344":-1,"11345":-1,"11346":-1,"11347":-1,"11348":-1,"11349":-1,"11350":-1,"11351":-1,"11352":-1,"11353":-1,"11354":-1,"11355":1588,"11356":-1,"11357":-1,"11358":-1,"11359":0,"11360":-1,"11361":-1,"11362":-1,"11363":-1,"11364":-1,"11365":-1,"11366":-1,"11367":-1,"11368":-1,"11369":-1,"11370":-1,"11371":-1,"11372":-1,"11373":-1,"11374":0,"11375":-1,"11376":-1,"11377":1587,"11378":-1,"11379":-1,"11380":0,"11381":-1,"11382":-1,"11383":-1,"11384":-1,"11385":-1,"11386":-1,"11387":-1,"11388":-1,"11389":-1,"11390":-1,"11391":-1,"11392":-1,"11393":1587,"11394":-1,"11395":-1,"11396":-1,"11397":-1,"11398":-1,"11399":-1,"11400":1587,"11401":-1,"11402":-1,"11403":-1,"11404":-1,"11405":-1,"11406":-1,"11407":1586,"11408":-1,"11409":1587,"11410":-1,"11411":-1,"11412":-1,"11413":-1,"11414":-1,"11415":-1,"11416":-1,"11417":-1,"11418":-1,"11419":-1,"11420":-1,"11421":-1,"11422":-1,"11423":-1,"11424":-1,"11425":-1,"11426":-1,"11427":1589,"11428":-1,"11429":-1,"11430":-1,"11431":-1,"11432":-1,"11433":-1,"11434":-1,"11435":-1,"11436":-1,"11437":-1,"11438":-1,"11439":-1,"11440":-1,"11441":-1,"11442":1588,"11443":1586,"11444":-1,"11445":-1,"11446":-1,"11447":-1,"11448":-1,"11449":-1,"11450":-1,"11451":-1,"11452":-1,"11453":-1,"11454":-1,"11455":-1,"11456":-1,"11457":-1,"11458":-1,"11459":-1,"11460":1588,"11461":1587,"11462":-1,"11463":1587,"11464":-1,"11465":-1,"11466":-1,"11467":-1,"11468":-1,"11469":-1,"11470":-1,"11471":-1,"11472":-1,"11473":-1,"11474":-1,"11475":-1,"11476":1588,"11477":-1,"11478":-1,"11479":0,"11480":-1,"11481":-1,"11482":-1,"11483":-1,"11484":-1,"11485":0,"11486":-1,"11487":-1,"11488":-1,"11489":-1,"11490":-1,"11491":-1,"11492":-1,"11493":-1,"11494":-1,"11495":-1,"11496":-1,"11497":1588,"11498":-1,"11499":-1,"11500":-1,"11501":-1,"11502":-1,"11503":0,"11504":-1,"11505":-1,"11506":-1,"11507":-1,"11508":-1,"11509":-1,"11510":0,"11511":-1,"11512":-1,"11513":-1,"11514":-1,"11515":-1,"11516":-1,"11517":-1,"11518":-1,"11519":1587,"11520":-1,"11521":-1,"11522":0,"11523":-1,"11524":-1,"11525":-1,"11526":-1,"11527":-1,"11528":-1,"11529":-1,"11530":0,"11531":-1,"11532":-1,"11533":-1,"11534":-1,"11535":-1,"11536":-1,"11537":-1,"11538":1587,"11539":-1,"11540":-1,"11541":-1,"11542":1588,"11543":-1,"11544":-1,"11545":-1,"11546":-1,"11547":-1,"11548":-1,"11549":1589,"11550":-1,"11551":1586,"11552":1588,"11553":-1,"11554":-1,"11555":-1,"11556":0,"11557":-1,"11558":-1,"11559":-1,"11560":-1,"11561":-1,"11562":-1,"11563":-1,"11564":-1,"11565":-1,"11566":-1,"11567":1588,"11568":-1,"11569":-1,"11570":-1,"11571":-1,"11572":-1,"11573":-1,"11574":-1,"11575":1587,"11576":-1,"11577":-1,"11578":-1,"11579":0,"11580":-1,"11581":-1,"11582":1589,"11583":-1,"11584":-1,"11585":-1,"11586":-1,"11587":-1,"11588":-1,"11589":-1,"11590":-1,"11591":-1,"11592":1588,"11593":-1,"11594":1588,"11595":-1,"11596":-1,"11597":-1,"11598":-1,"11599":1588,"11600":-1,"11601":-1,"11602":-1,"11603":-1,"11604":-1,"11605":-1,"11606":-1,"11607":-1,"11608":-1,"11609":1589,"11610":1589,"11611":-1,"11612":1587,"11613":-1,"11614":0,"11615":-1,"11616":-1,"11617":1588,"11618":-1,"11619":-1,"11620":-1,"11621":-1,"11622":-1,"11623":0,"11624":-1,"11625":-1,"11626":-1,"11627":-1,"11628":-1,"11629":-1,"11630":-1,"11631":-1,"11632":-1,"11633":-1,"11634":1589,"11635":-1,"11636":-1,"11637":-1,"11638":-1,"11639":-1,"11640":-1,"11641":-1,"11642":-1,"11643":-1,"11644":-1,"11645":-1,"11646":1587,"11647":-1,"11648":-1,"11649":-1,"11650":-1,"11651":-1,"11652":-1,"11653":1587,"11654":-1,"11655":-1,"11656":1587,"11657":1588,"11658":1587,"11659":-1,"11660":-1,"11661":-1,"11662":-1,"11663":-1,"11664":-1,"11665":-1,"11666":-1,"11667":-1,"11668":-1,"11669":-1,"11670":1586,"11671":-1,"11672":-1,"11673":-1,"11674":-1,"11675":-1,"11676":-1,"11677":-1,"11678":-1,"11679":-1,"11680":-1,"11681":-1,"11682":-1,"11683":-1,"11684":-1,"11685":-1,"11686":-1,"11687":-1,"11688":-1,"11689":-1,"11690":1587,"11691":-1,"11692":0,"11693":-1,"11694":1589,"11695":1588,"11696":1587,"11697":-1,"11698":-1,"11699":-1,"11700":-1,"11701":-1,"11702":-1,"11703":-1,"11704":-1,"11705":-1,"11706":-1,"11707":-1,"11708":-1,"11709":1587,"11710":-1,"11711":1588,"11712":1587,"11713":-1,"11714":-1,"11715":-1,"11716":-1,"11717":-1,"11718":-1,"11719":1587,"11720":-1,"11721":-1,"11722":-1,"11723":-1,"11724":-1,"11725":-1,"11726":-1,"11727":-1,"11728":-1,"11729":-1,"11730":0,"11731":-1,"11732":-1,"11733":-1,"11734":-1,"11735":1586,"11736":-1,"11737":-1,"11738":-1,"11739":-1,"11740":-1,"11741":-1,"11742":-1,"11743":-1,"11744":-1,"11745":-1,"11746":-1,"11747":1587,"11748":1587,"11749":-1,"11750":-1,"11751":-1,"11752":-1,"11753":-1,"11754":-1,"11755":-1,"11756":-1,"11757":-1,"11758":-1,"11759":-1,"11760":-1,"11761":-1,"11762":-1,"11763":-1,"11764":-1,"11765":-1,"11766":-1,"11767":-1,"11768":-1,"11769":-1,"11770":1589,"11771":-1,"11772":-1,"11773":-1,"11774":-1,"11775":-1,"11776":-1,"11777":-1,"11778":-1,"11779":-1,"11780":1586,"11781":1588,"11782":-1,"11783":1588,"11784":-1,"11785":-1,"11786":1588,"11787":-1,"11788":-1,"11789":-1,"11790":-1,"11791":-1,"11792":1588,"11793":-1,"11794":-1,"11795":1589,"11796":1588,"11797":-1,"11798":1587,"11799":-1,"11800":0,"11801":-1,"11802":-1,"11803":-1,"11804":-1,"11805":-1,"11806":1587,"11807":-1,"11808":-1,"11809":-1,"11810":-1,"11811":-1,"11812":-1,"11813":-1,"11814":-1,"11815":-1,"11816":-1,"11817":-1,"11818":-1,"11819":1589,"11820":-1,"11821":-1,"11822":-1,"11823":-1,"11824":-1,"11825":-1,"11826":-1,"11827":-1,"11828":1588,"11829":1587,"11830":-1,"11831":0,"11832":1588,"11833":1586,"11834":-1,"11835":-1,"11836":-1,"11837":-1,"11838":-1,"11839":-1,"11840":-1,"11841":1586,"11842":-1,"11843":-1,"11844":0,"11845":-1,"11846":-1,"11847":-1,"11848":-1,"11849":-1,"11850":-1,"11851":-1,"11852":-1,"11853":-1,"11854":-1,"11855":-1,"11856":-1,"11857":-1,"11858":-1,"11859":1586,"11860":-1,"11861":-1,"11862":-1,"11863":-1,"11864":1587,"11865":-1,"11866":-1,"11867":-1,"11868":-1,"11869":-1,"11870":-1,"11871":-1,"11872":-1,"11873":0,"11874":1589,"11875":-1,"11876":1587,"11877":-1,"11878":-1,"11879":-1,"11880":-1,"11881":-1,"11882":-1,"11883":-1,"11884":1588,"11885":-1,"11886":-1,"11887":-1,"11888":-1,"11889":-1,"11890":-1,"11891":1587,"11892":0,"11893":0,"11894":-1,"11895":-1,"11896":-1,"11897":-1,"11898":-1,"11899":-1,"11900":1589,"11901":-1,"11902":-1,"11903":-1,"11904":1587,"11905":-1,"11906":1588,"11907":-1,"11908":-1,"11909":-1,"11910":-1,"11911":-1,"11912":-1,"11913":-1,"11914":-1,"11915":-1,"11916":-1,"11917":-1,"11918":1587,"11919":-1,"11920":-1,"11921":0,"11922":1587,"11923":-1,"11924":-1,"11925":-1,"11926":-1,"11927":1588,"11928":-1,"11929":-1,"11930":-1,"11931":-1,"11932":-1,"11933":-1,"11934":-1,"11935":-1,"11936":-1,"11937":1588,"11938":-1,"11939":-1,"11940":-1,"11941":1589,"11942":-1,"11943":-1,"11944":-1,"11945":-1,"11946":1589,"11947":1587,"11948":-1,"11949":-1,"11950":-1,"11951":1588,"11952":-1,"11953":-1,"11954":-1,"11955":-1,"11956":-1,"11957":1589,"11958":-1,"11959":-1,"11960":-1,"11961":-1,"11962":-1,"11963":-1,"11964":-1,"11965":-1,"11966":-1,"11967":-1,"11968":-1,"11969":-1,"11970":1586,"11971":-1,"11972":-1,"11973":-1,"11974":1586,"11975":-1,"11976":-1,"11977":-1,"11978":1588,"11979":-1,"11980":-1,"11981":-1,"11982":-1,"11983":1586,"11984":-1,"11985":-1,"11986":-1,"11987":-1,"11988":-1,"11989":-1,"11990":-1,"11991":-1,"11992":-1,"11993":-1,"11994":-1,"11995":-1,"11996":-1,"11997":-1,"11998":-1,"11999":-1,"12000":-1,"12001":-1,"12002":-1,"12003":1588,"12004":-1,"12005":-1,"12006":-1,"12007":-1,"12008":-1,"12009":-1,"12010":-1,"12011":-1,"12012":-1,"12013":-1,"12014":-1,"12015":1588,"12016":-1,"12017":-1,"12018":-1,"12019":-1,"12020":-1,"12021":-1,"12022":-1,"12023":0,"12024":-1,"12025":-1,"12026":-1,"12027":-1,"12028":-1,"12029":-1,"12030":-1,"12031":-1,"12032":-1,"12033":1586,"12034":-1,"12035":-1,"12036":-1,"12037":-1,"12038":-1,"12039":-1,"12040":-1,"12041":-1,"12042":-1,"12043":-1,"12044":-1,"12045":-1,"12046":-1,"12047":-1,"12048":-1,"12049":-1,"12050":-1,"12051":-1,"12052":1588,"12053":-1,"12054":-1,"12055":-1,"12056":-1,"12057":-1,"12058":-1,"12059":-1,"12060":-1,"12061":-1,"12062":-1,"12063":-1,"12064":-1,"12065":-1,"12066":-1,"12067":-1,"12068":-1,"12069":-1,"12070":-1,"12071":-1,"12072":-1,"12073":-1,"12074":-1,"12075":-1,"12076":-1,"12077":-1,"12078":-1,"12079":1586,"12080":-1,"12081":-1,"12082":-1,"12083":-1,"12084":1588,"12085":-1,"12086":1589,"12087":-1,"12088":1587,"12089":-1,"12090":-1,"12091":-1,"12092":-1,"12093":-1,"12094":-1,"12095":-1,"12096":-1,"12097":-1,"12098":-1,"12099":1586,"12100":1586,"12101":-1,"12102":0,"12103":-1,"12104":-1,"12105":-1,"12106":-1,"12107":1586,"12108":1587,"12109":-1,"12110":-1,"12111":-1,"12112":-1,"12113":-1,"12114":1589,"12115":-1,"12116":-1,"12117":-1,"12118":-1,"12119":-1,"12120":-1,"12121":0,"12122":-1,"12123":-1,"12124":-1,"12125":-1,"12126":1588,"12127":-1,"12128":-1,"12129":-1,"12130":1589,"12131":-1,"12132":-1,"12133":1587,"12134":-1,"12135":-1,"12136":1587,"12137":-1,"12138":1588,"12139":-1,"12140":-1,"12141":-1,"12142":-1,"12143":-1,"12144":-1,"12145":-1,"12146":-1,"12147":-1,"12148":-1,"12149":-1,"12150":-1,"12151":-1,"12152":-1,"12153":-1,"12154":-1,"12155":-1,"12156":-1,"12157":-1,"12158":-1,"12159":-1,"12160":-1,"12161":-1,"12162":-1,"12163":-1,"12164":-1,"12165":-1,"12166":-1,"12167":-1,"12168":-1,"12169":-1,"12170":-1,"12171":-1,"12172":1589,"12173":1587,"12174":-1,"12175":-1,"12176":-1,"12177":-1,"12178":-1,"12179":-1,"12180":-1,"12181":-1,"12182":1588,"12183":-1,"12184":-1,"12185":-1,"12186":-1,"12187":-1,"12188":-1,"12189":-1,"12190":-1,"12191":-1,"12192":-1,"12193":-1,"12194":-1,"12195":-1,"12196":-1,"12197":-1,"12198":-1,"12199":-1,"12200":-1,"12201":-1,"12202":-1,"12203":-1,"12204":-1,"12205":-1,"12206":-1,"12207":-1,"12208":1587,"12209":-1,"12210":-1,"12211":1588,"12212":1586,"12213":1589,"12214":-1,"12215":-1,"12216":-1,"12217":-1,"12218":-1,"12219":-1,"12220":-1,"12221":-1,"12222":-1,"12223":-1,"12224":1587,"12225":1587,"12226":-1,"12227":-1,"12228":-1,"12229":-1,"12230":-1,"12231":-1,"12232":-1,"12233":-1,"12234":1588,"12235":-1,"12236":-1,"12237":-1,"12238":-1,"12239":-1,"12240":-1,"12241":-1,"12242":-1,"12243":-1,"12244":0,"12245":-1,"12246":-1,"12247":-1,"12248":-1,"12249":-1,"12250":-1,"12251":-1,"12252":-1,"12253":-1,"12254":1586,"12255":-1,"12256":-1,"12257":-1,"12258":-1,"12259":-1,"12260":-1,"12261":-1,"12262":-1,"12263":1587,"12264":-1,"12265":-1,"12266":-1,"12267":-1,"12268":-1,"12269":1588,"12270":-1,"12271":-1,"12272":-1,"12273":-1,"12274":-1,"12275":-1,"12276":1587,"12277":-1,"12278":-1,"12279":-1,"12280":-1,"12281":-1,"12282":-1,"12283":-1,"12284":-1,"12285":-1,"12286":1588,"12287":-1,"12288":1588,"12289":-1,"12290":-1,"12291":0,"12292":1588,"12293":-1,"12294":-1,"12295":1589,"12296":-1,"12297":-1,"12298":1587,"12299":-1,"12300":-1,"12301":-1,"12302":-1,"12303":-1,"12304":-1,"12305":-1,"12306":-1,"12307":-1,"12308":-1,"12309":1586,"12310":-1,"12311":-1,"12312":-1,"12313":-1,"12314":-1,"12315":-1,"12316":-1,"12317":-1,"12318":1587,"12319":1587,"12320":1587,"12321":1588,"12322":-1,"12323":-1,"12324":0,"12325":-1,"12326":-1,"12327":-1,"12328":-1,"12329":-1,"12330":-1,"12331":1587,"12332":-1,"12333":-1,"12334":-1,"12335":-1,"12336":-1,"12337":-1,"12338":-1,"12339":-1,"12340":-1,"12341":-1,"12342":-1,"12343":-1,"12344":-1,"12345":-1,"12346":-1,"12347":-1,"12348":1587,"12349":-1,"12350":1587,"12351":-1,"12352":-1,"12353":1587,"12354":1589,"12355":-1,"12356":-1,"12357":-1,"12358":-1,"12359":-1,"12360":-1,"12361":-1,"12362":-1,"12363":1588,"12364":-1,"12365":-1,"12366":-1,"12367":1587,"12368":-1,"12369":-1,"12370":1587,"12371":-1,"12372":1587,"12373":-1,"12374":1588,"12375":-1,"12376":-1,"12377":-1,"12378":-1,"12379":-1,"12380":-1,"12381":-1,"12382":-1,"12383":-1,"12384":-1,"12385":1588,"12386":-1,"12387":-1,"12388":-1,"12389":-1,"12390":-1,"12391":-1,"12392":-1,"12393":-1,"12394":-1,"12395":-1,"12396":1589,"12397":-1,"12398":1587,"12399":-1,"12400":-1,"12401":-1,"12402":-1,"12403":1587,"12404":-1,"12405":-1,"12406":-1,"12407":-1,"12408":-1,"12409":-1,"12410":-1,"12411":-1,"12412":-1,"12413":-1,"12414":-1,"12415":-1,"12416":-1,"12417":-1,"12418":1586,"12419":1586,"12420":-1,"12421":1587,"12422":-1,"12423":-1,"12424":-1,"12425":-1,"12426":-1,"12427":1588,"12428":-1,"12429":-1,"12430":-1,"12431":1588,"12432":-1,"12433":-1,"12434":-1,"12435":-1,"12436":-1,"12437":-1,"12438":-1,"12439":-1,"12440":-1,"12441":-1,"12442":-1,"12443":-1,"12444":-1,"12445":-1,"12446":-1,"12447":-1,"12448":-1,"12449":-1,"12450":-1,"12451":1586,"12452":-1,"12453":-1,"12454":-1,"12455":1587,"12456":-1,"12457":-1,"12458":-1,"12459":-1,"12460":-1,"12461":-1,"12462":-1,"12463":-1,"12464":1587,"12465":-1,"12466":-1,"12467":-1,"12468":-1,"12469":-1,"12470":-1,"12471":0,"12472":-1,"12473":-1,"12474":-1,"12475":-1,"12476":-1,"12477":1587,"12478":-1,"12479":-1,"12480":-1,"12481":0,"12482":-1,"12483":-1,"12484":1586,"12485":-1,"12486":1589,"12487":-1,"12488":-1,"12489":1588,"12490":-1,"12491":-1,"12492":-1,"12493":-1,"12494":1587,"12495":-1,"12496":1588,"12497":-1,"12498":1588,"12499":-1,"12500":-1,"12501":0,"12502":-1,"12503":-1,"12504":1588,"12505":-1,"12506":-1,"12507":-1,"12508":-1,"12509":1588,"12510":1588,"12511":-1,"12512":-1,"12513":-1,"12514":-1,"12515":1589,"12516":-1,"12517":-1,"12518":-1,"12519":-1,"12520":-1,"12521":-1,"12522":0,"12523":-1,"12524":1586,"12525":-1,"12526":-1,"12527":-1,"12528":-1,"12529":-1,"12530":-1,"12531":-1,"12532":0,"12533":-1,"12534":-1,"12535":-1,"12536":-1,"12537":-1,"12538":-1,"12539":-1,"12540":-1,"12541":-1,"12542":-1,"12543":-1,"12544":-1,"12545":-1,"12546":-1,"12547":-1,"12548":-1,"12549":-1,"12550":-1,"12551":-1,"12552":-1,"12553":-1,"12554":-1,"12555":-1,"12556":-1,"12557":1588,"12558":-1,"12559":-1,"12560":-1,"12561":-1,"12562":-1,"12563":-1,"12564":-1,"12565":-1,"12566":-1,"12567":1587,"12568":-1,"12569":1587,"12570":-1,"12571":-1,"12572":-1,"12573":1589,"12574":-1,"12575":-1,"12576":1587,"12577":-1,"12578":-1,"12579":-1,"12580":-1,"12581":-1,"12582":-1,"12583":1588,"12584":-1,"12585":0,"12586":-1,"12587":-1,"12588":-1,"12589":-1,"12590":1587,"12591":-1,"12592":-1,"12593":-1,"12594":-1,"12595":-1,"12596":-1,"12597":-1,"12598":-1,"12599":-1,"12600":-1,"12601":-1,"12602":-1,"12603":-1,"12604":-1,"12605":-1,"12606":-1,"12607":-1,"12608":-1,"12609":-1,"12610":-1,"12611":-1,"12612":1586,"12613":1587,"12614":-1,"12615":-1,"12616":-1,"12617":0,"12618":1587,"12619":-1,"12620":-1,"12621":-1,"12622":-1,"12623":-1,"12624":-1,"12625":1587,"12626":-1,"12627":1588,"12628":-1,"12629":-1,"12630":-1,"12631":-1,"12632":-1,"12633":-1,"12634":1586,"12635":-1,"12636":-1,"12637":-1,"12638":-1,"12639":-1,"12640":1589,"12641":-1,"12642":1586,"12643":-1,"12644":1587,"12645":-1,"12646":-1,"12647":-1,"12648":-1,"12649":-1,"12650":-1,"12651":-1,"12652":-1,"12653":-1,"12654":-1,"12655":-1,"12656":-1,"12657":-1,"12658":1587,"12659":-1,"12660":1586,"12661":-1,"12662":-1,"12663":1589,"12664":-1,"12665":1586,"12666":-1,"12667":1589,"12668":0,"12669":-1,"12670":-1,"12671":-1,"12672":-1,"12673":-1,"12674":-1,"12675":-1,"12676":-1,"12677":-1,"12678":-1,"12679":-1,"12680":-1,"12681":-1,"12682":-1,"12683":1588,"12684":-1,"12685":-1,"12686":-1,"12687":-1,"12688":-1,"12689":-1,"12690":-1,"12691":-1,"12692":-1,"12693":-1,"12694":-1,"12695":-1,"12696":-1,"12697":-1,"12698":-1,"12699":-1,"12700":-1,"12701":1588,"12702":-1,"12703":-1,"12704":-1,"12705":-1,"12706":-1,"12707":1589,"12708":-1,"12709":1588,"12710":-1,"12711":-1,"12712":-1,"12713":-1,"12714":-1,"12715":-1,"12716":-1,"12717":-1,"12718":-1,"12719":-1,"12720":-1,"12721":-1,"12722":-1,"12723":-1,"12724":-1,"12725":-1,"12726":0,"12727":-1,"12728":-1,"12729":-1,"12730":-1,"12731":-1,"12732":-1,"12733":-1,"12734":-1,"12735":-1,"12736":-1,"12737":-1,"12738":-1,"12739":1587,"12740":-1,"12741":0,"12742":-1,"12743":-1,"12744":0,"12745":1586,"12746":-1,"12747":-1,"12748":-1,"12749":-1,"12750":-1,"12751":-1,"12752":-1,"12753":1587,"12754":1587,"12755":-1,"12756":-1,"12757":1587,"12758":-1,"12759":-1,"12760":-1,"12761":-1,"12762":-1,"12763":-1,"12764":-1,"12765":-1,"12766":-1,"12767":-1,"12768":-1,"12769":1589,"12770":-1,"12771":-1,"12772":-1,"12773":-1,"12774":-1,"12775":-1,"12776":-1,"12777":1586,"12778":-1,"12779":-1,"12780":-1,"12781":-1,"12782":-1,"12783":-1,"12784":-1,"12785":1588,"12786":-1,"12787":-1,"12788":-1,"12789":-1,"12790":-1,"12791":1589,"12792":-1,"12793":-1,"12794":-1,"12795":-1,"12796":-1,"12797":1587,"12798":-1,"12799":-1,"12800":-1,"12801":-1,"12802":-1,"12803":1587,"12804":-1,"12805":-1,"12806":-1,"12807":-1,"12808":-1,"12809":-1,"12810":-1,"12811":-1,"12812":1587,"12813":-1,"12814":-1,"12815":-1,"12816":-1,"12817":1586,"12818":-1,"12819":-1,"12820":-1,"12821":-1,"12822":-1,"12823":-1,"12824":-1,"12825":-1,"12826":-1,"12827":-1,"12828":-1,"12829":1587,"12830":-1,"12831":1588,"12832":-1,"12833":-1,"12834":1588,"12835":-1,"12836":-1,"12837":-1,"12838":-1,"12839":1587,"12840":-1,"12841":-1,"12842":-1,"12843":-1,"12844":-1,"12845":1588,"12846":1589,"12847":-1,"12848":-1,"12849":1586,"12850":1587,"12851":-1,"12852":-1,"12853":-1,"12854":0,"12855":-1,"12856":1588,"12857":-1,"12858":1587,"12859":-1,"12860":1587,"12861":1588,"12862":-1,"12863":-1,"12864":-1,"12865":-1,"12866":-1,"12867":-1,"12868":1588,"12869":-1,"12870":1586,"12871":-1,"12872":-1,"12873":-1,"12874":-1,"12875":-1,"12876":-1,"12877":-1,"12878":-1,"12879":-1,"12880":-1,"12881":-1,"12882":1589,"12883":1586,"12884":-1,"12885":-1,"12886":1588,"12887":0,"12888":-1,"12889":-1,"12890":-1,"12891":-1,"12892":-1,"12893":-1,"12894":-1,"12895":-1,"12896":0,"12897":-1,"12898":-1,"12899":-1,"12900":-1,"12901":-1,"12902":-1,"12903":-1,"12904":-1,"12905":-1,"12906":-1,"12907":-1,"12908":-1,"12909":-1,"12910":-1,"12911":-1,"12912":-1,"12913":-1,"12914":-1,"12915":-1,"12916":-1,"12917":-1,"12918":1586,"12919":-1,"12920":-1,"12921":-1,"12922":1589,"12923":-1,"12924":-1,"12925":-1,"12926":-1,"12927":-1,"12928":-1,"12929":1586,"12930":-1,"12931":1587,"12932":-1,"12933":-1,"12934":-1,"12935":-1,"12936":-1,"12937":-1,"12938":-1,"12939":-1,"12940":-1,"12941":-1,"12942":-1,"12943":-1,"12944":-1,"12945":-1,"12946":-1,"12947":-1,"12948":-1,"12949":-1,"12950":-1,"12951":-1,"12952":-1,"12953":-1,"12954":-1,"12955":-1,"12956":-1,"12957":-1,"12958":-1,"12959":-1,"12960":-1,"12961":-1,"12962":-1,"12963":-1,"12964":1586,"12965":-1,"12966":-1,"12967":-1,"12968":-1,"12969":-1,"12970":-1,"12971":-1,"12972":1586,"12973":-1,"12974":-1,"12975":-1,"12976":-1,"12977":-1,"12978":-1,"12979":-1,"12980":1588,"12981":-1,"12982":-1,"12983":-1,"12984":-1,"12985":-1,"12986":1588,"12987":-1,"12988":-1,"12989":-1,"12990":-1,"12991":0,"12992":-1,"12993":-1,"12994":-1,"12995":-1,"12996":-1,"12997":-1,"12998":-1,"12999":-1,"13000":-1,"13001":-1,"13002":-1,"13003":-1,"13004":-1,"13005":-1,"13006":0,"13007":-1,"13008":-1,"13009":1587,"13010":-1,"13011":-1,"13012":-1,"13013":1588,"13014":-1,"13015":-1,"13016":-1,"13017":-1,"13018":-1,"13019":-1,"13020":-1,"13021":-1,"13022":-1,"13023":-1,"13024":-1,"13025":-1,"13026":-1,"13027":-1,"13028":-1,"13029":-1,"13030":-1,"13031":1587,"13032":-1,"13033":-1,"13034":-1,"13035":-1,"13036":1589,"13037":-1,"13038":-1,"13039":-1,"13040":-1,"13041":-1,"13042":-1,"13043":-1,"13044":-1,"13045":-1,"13046":-1,"13047":1589,"13048":-1,"13049":1588,"13050":-1,"13051":-1,"13052":-1,"13053":1587,"13054":-1,"13055":-1,"13056":-1,"13057":-1,"13058":-1,"13059":-1,"13060":-1,"13061":-1,"13062":-1,"13063":-1,"13064":-1,"13065":-1,"13066":-1,"13067":-1,"13068":-1,"13069":-1,"13070":1588,"13071":-1,"13072":-1,"13073":-1,"13074":-1,"13075":-1,"13076":-1,"13077":-1,"13078":-1,"13079":1588,"13080":-1,"13081":-1,"13082":1587,"13083":-1,"13084":1589,"13085":-1,"13086":-1,"13087":-1,"13088":-1,"13089":-1,"13090":-1,"13091":1586,"13092":1588,"13093":-1,"13094":1587,"13095":-1,"13096":-1,"13097":-1,"13098":-1,"13099":1588,"13100":-1,"13101":-1,"13102":-1,"13103":-1,"13104":-1,"13105":-1,"13106":-1,"13107":-1,"13108":-1,"13109":-1,"13110":-1,"13111":-1,"13112":1589,"13113":-1,"13114":0,"13115":-1,"13116":-1,"13117":-1,"13118":-1,"13119":-1,"13120":-1,"13121":-1,"13122":-1,"13123":-1,"13124":-1,"13125":-1,"13126":-1,"13127":1588,"13128":-1,"13129":-1,"13130":0,"13131":-1,"13132":-1,"13133":-1,"13134":-1,"13135":-1,"13136":-1,"13137":-1,"13138":-1,"13139":-1,"13140":-1,"13141":1587,"13142":-1,"13143":-1,"13144":-1,"13145":-1,"13146":-1,"13147":-1,"13148":-1,"13149":-1,"13150":-1,"13151":-1,"13152":-1,"13153":-1,"13154":-1,"13155":-1,"13156":-1,"13157":1589,"13158":1589,"13159":-1,"13160":-1,"13161":0,"13162":-1,"13163":-1,"13164":-1,"13165":-1,"13166":-1,"13167":-1,"13168":-1,"13169":-1,"13170":-1,"13171":-1,"13172":-1,"13173":0,"13174":-1,"13175":-1,"13176":-1,"13177":-1,"13178":-1,"13179":-1,"13180":-1,"13181":-1,"13182":-1,"13183":-1,"13184":-1,"13185":-1,"13186":1586,"13187":1587,"13188":-1,"13189":1588,"13190":-1,"13191":-1,"13192":-1,"13193":-1,"13194":-1,"13195":-1,"13196":-1,"13197":1587,"13198":-1,"13199":-1,"13200":-1,"13201":-1,"13202":-1,"13203":-1,"13204":-1,"13205":-1,"13206":-1,"13207":-1,"13208":-1,"13209":1586,"13210":-1,"13211":-1,"13212":-1,"13213":1587,"13214":-1,"13215":-1,"13216":-1,"13217":-1,"13218":-1,"13219":-1,"13220":1588,"13221":-1,"13222":-1,"13223":-1,"13224":-1,"13225":-1,"13226":-1,"13227":-1,"13228":-1,"13229":-1,"13230":-1,"13231":-1,"13232":-1,"13233":-1,"13234":-1,"13235":-1,"13236":-1,"13237":1589,"13238":-1,"13239":-1,"13240":1589,"13241":-1,"13242":-1,"13243":-1,"13244":-1,"13245":-1,"13246":-1,"13247":-1,"13248":-1,"13249":-1,"13250":-1,"13251":-1,"13252":-1,"13253":-1,"13254":-1,"13255":1586,"13256":-1,"13257":1587,"13258":-1,"13259":-1,"13260":-1,"13261":-1,"13262":-1,"13263":-1,"13264":-1,"13265":-1,"13266":-1,"13267":-1,"13268":-1,"13269":-1,"13270":-1,"13271":1589,"13272":-1,"13273":-1,"13274":-1,"13275":-1,"13276":-1,"13277":-1,"13278":-1,"13279":-1,"13280":-1,"13281":-1,"13282":-1,"13283":-1,"13284":-1,"13285":-1,"13286":-1,"13287":-1,"13288":1587,"13289":-1,"13290":-1,"13291":-1,"13292":-1,"13293":1587,"13294":-1,"13295":-1,"13296":-1,"13297":-1,"13298":-1,"13299":-1,"13300":-1,"13301":1586,"13302":-1,"13303":-1,"13304":-1,"13305":-1,"13306":-1,"13307":-1,"13308":-1,"13309":-1,"13310":-1,"13311":-1,"13312":1587,"13313":-1,"13314":-1,"13315":-1,"13316":-1,"13317":-1,"13318":-1,"13319":-1,"13320":-1,"13321":-1,"13322":-1,"13323":-1,"13324":-1,"13325":-1,"13326":-1,"13327":-1,"13328":1587,"13329":1589,"13330":-1,"13331":-1,"13332":-1,"13333":-1,"13334":1587,"13335":1588,"13336":-1,"13337":-1,"13338":-1,"13339":1586,"13340":-1,"13341":-1,"13342":-1,"13343":-1,"13344":-1,"13345":-1,"13346":-1,"13347":-1,"13348":-1,"13349":-1,"13350":1588,"13351":1588,"13352":1589,"13353":-1,"13354":1588,"13355":-1,"13356":-1,"13357":-1,"13358":-1,"13359":-1,"13360":1587,"13361":-1,"13362":1588,"13363":-1,"13364":-1,"13365":-1,"13366":-1,"13367":-1,"13368":-1,"13369":-1,"13370":-1,"13371":-1,"13372":-1,"13373":-1,"13374":-1,"13375":-1,"13376":-1,"13377":-1,"13378":-1,"13379":-1,"13380":-1,"13381":-1,"13382":1588,"13383":-1,"13384":-1,"13385":-1,"13386":-1,"13387":-1,"13388":-1,"13389":-1,"13390":-1,"13391":-1,"13392":-1,"13393":-1,"13394":-1,"13395":-1,"13396":-1,"13397":-1,"13398":-1,"13399":-1,"13400":-1,"13401":-1,"13402":-1,"13403":-1,"13404":-1,"13405":-1,"13406":-1,"13407":-1,"13408":0,"13409":-1,"13410":-1,"13411":-1,"13412":-1,"13413":-1,"13414":-1,"13415":-1,"13416":-1,"13417":1589,"13418":-1,"13419":-1,"13420":-1,"13421":-1,"13422":-1,"13423":-1,"13424":-1,"13425":-1,"13426":-1,"13427":1587,"13428":-1,"13429":-1,"13430":-1,"13431":-1,"13432":-1,"13433":-1,"13434":-1,"13435":-1,"13436":-1,"13437":-1,"13438":-1,"13439":-1,"13440":1589,"13441":-1,"13442":-1,"13443":1587,"13444":1588,"13445":-1,"13446":1587,"13447":1588,"13448":-1,"13449":-1,"13450":-1,"13451":-1,"13452":-1,"13453":-1,"13454":1587,"13455":-1,"13456":1587,"13457":0,"13458":0,"13459":1588,"13460":-1,"13461":-1,"13462":-1,"13463":-1,"13464":-1,"13465":1587,"13466":-1,"13467":-1,"13468":1589,"13469":-1,"13470":-1,"13471":-1,"13472":-1,"13473":-1,"13474":-1,"13475":-1,"13476":-1,"13477":-1,"13478":-1,"13479":-1,"13480":1589,"13481":-1,"13482":-1,"13483":-1,"13484":-1,"13485":-1,"13486":-1,"13487":-1,"13488":-1,"13489":-1,"13490":-1,"13491":-1,"13492":-1,"13493":-1,"13494":-1,"13495":-1,"13496":-1,"13497":-1,"13498":-1,"13499":-1,"13500":-1,"13501":-1,"13502":-1,"13503":-1,"13504":-1,"13505":-1,"13506":-1,"13507":-1,"13508":1588,"13509":-1,"13510":-1,"13511":-1,"13512":-1,"13513":-1,"13514":-1,"13515":-1,"13516":-1,"13517":-1,"13518":-1,"13519":-1,"13520":-1,"13521":-1,"13522":-1,"13523":-1,"13524":0,"13525":-1,"13526":-1,"13527":0,"13528":0,"13529":-1,"13530":-1,"13531":-1,"13532":-1,"13533":-1,"13534":-1,"13535":-1,"13536":-1,"13537":-1,"13538":-1,"13539":-1,"13540":-1,"13541":-1,"13542":-1,"13543":-1,"13544":-1,"13545":-1,"13546":-1,"13547":-1,"13548":-1,"13549":-1,"13550":-1,"13551":-1,"13552":-1,"13553":-1,"13554":-1,"13555":1588,"13556":-1,"13557":-1,"13558":-1,"13559":-1,"13560":-1,"13561":-1,"13562":-1,"13563":-1,"13564":-1,"13565":1586,"13566":-1,"13567":-1,"13568":0,"13569":-1,"13570":-1,"13571":1588,"13572":-1,"13573":-1,"13574":-1,"13575":-1,"13576":0,"13577":0,"13578":-1,"13579":-1,"13580":-1,"13581":-1,"13582":-1,"13583":-1,"13584":0,"13585":0,"13586":-1,"13587":-1,"13588":-1,"13589":-1,"13590":-1,"13591":-1,"13592":1586,"13593":1587,"13594":-1,"13595":-1,"13596":-1,"13597":-1,"13598":-1,"13599":-1,"13600":-1,"13601":-1,"13602":-1,"13603":-1,"13604":-1,"13605":-1,"13606":-1,"13607":-1,"13608":-1,"13609":-1,"13610":-1,"13611":-1,"13612":-1,"13613":-1,"13614":-1,"13615":-1,"13616":-1,"13617":-1,"13618":-1,"13619":-1,"13620":-1,"13621":-1,"13622":-1,"13623":1587,"13624":-1,"13625":-1,"13626":1588,"13627":-1,"13628":1589,"13629":-1,"13630":-1,"13631":-1,"13632":-1,"13633":-1,"13634":-1,"13635":1587,"13636":-1,"13637":-1,"13638":-1,"13639":-1,"13640":-1,"13641":-1,"13642":-1,"13643":-1,"13644":-1,"13645":-1,"13646":-1,"13647":-1,"13648":-1,"13649":-1,"13650":-1,"13651":-1,"13652":-1,"13653":-1,"13654":0,"13655":-1,"13656":-1,"13657":-1,"13658":-1,"13659":-1,"13660":1588,"13661":-1,"13662":-1,"13663":-1,"13664":-1,"13665":-1,"13666":-1,"13667":-1,"13668":-1,"13669":1586,"13670":-1,"13671":-1,"13672":1587,"13673":-1,"13674":-1,"13675":-1,"13676":-1,"13677":-1,"13678":-1,"13679":-1,"13680":-1,"13681":-1,"13682":-1,"13683":-1,"13684":1589,"13685":-1,"13686":-1,"13687":-1,"13688":-1,"13689":-1,"13690":-1,"13691":1587,"13692":-1,"13693":-1,"13694":-1,"13695":-1,"13696":-1,"13697":1588,"13698":-1,"13699":1587,"13700":-1,"13701":-1,"13702":-1,"13703":-1,"13704":-1,"13705":-1,"13706":-1,"13707":1588,"13708":-1,"13709":-1,"13710":-1,"13711":-1,"13712":-1,"13713":-1,"13714":-1,"13715":-1,"13716":-1,"13717":-1,"13718":-1,"13719":-1,"13720":-1,"13721":-1,"13722":-1,"13723":1587,"13724":1588,"13725":1589,"13726":-1,"13727":-1,"13728":-1,"13729":-1,"13730":1586,"13731":-1,"13732":-1,"13733":-1,"13734":-1,"13735":-1,"13736":-1,"13737":-1,"13738":-1,"13739":-1,"13740":-1,"13741":-1,"13742":-1,"13743":-1,"13744":-1,"13745":-1,"13746":-1,"13747":-1,"13748":-1,"13749":-1,"13750":1586,"13751":-1,"13752":-1,"13753":1588,"13754":-1,"13755":-1,"13756":-1,"13757":-1,"13758":-1,"13759":-1,"13760":1587,"13761":-1,"13762":-1,"13763":-1,"13764":-1,"13765":-1,"13766":-1,"13767":-1,"13768":-1,"13769":1587,"13770":-1,"13771":-1,"13772":-1,"13773":-1,"13774":-1,"13775":-1,"13776":-1,"13777":-1,"13778":-1,"13779":-1,"13780":-1,"13781":-1,"13782":-1,"13783":-1,"13784":-1,"13785":-1,"13786":-1,"13787":-1,"13788":-1,"13789":0,"13790":-1,"13791":-1,"13792":-1,"13793":-1,"13794":-1,"13795":-1,"13796":-1,"13797":-1,"13798":-1,"13799":-1,"13800":-1,"13801":-1,"13802":-1,"13803":-1,"13804":-1,"13805":-1,"13806":-1,"13807":-1,"13808":-1,"13809":-1,"13810":-1,"13811":0,"13812":-1,"13813":-1,"13814":1588,"13815":-1,"13816":-1,"13817":-1,"13818":-1,"13819":1589,"13820":-1,"13821":1589,"13822":-1,"13823":-1,"13824":-1,"13825":-1,"13826":-1,"13827":-1,"13828":-1,"13829":-1,"13830":-1,"13831":-1,"13832":-1,"13833":-1,"13834":-1,"13835":-1,"13836":-1,"13837":-1,"13838":-1,"13839":-1,"13840":-1,"13841":-1,"13842":-1,"13843":-1,"13844":-1,"13845":-1,"13846":-1,"13847":1588,"13848":-1,"13849":-1,"13850":-1,"13851":1589,"13852":-1,"13853":-1,"13854":-1,"13855":-1,"13856":-1,"13857":-1,"13858":1587,"13859":-1,"13860":-1,"13861":-1,"13862":-1,"13863":1587,"13864":-1,"13865":0,"13866":-1,"13867":-1,"13868":-1,"13869":-1,"13870":-1,"13871":-1,"13872":-1,"13873":-1,"13874":-1,"13875":-1,"13876":-1,"13877":-1,"13878":-1,"13879":-1,"13880":-1,"13881":-1,"13882":-1,"13883":-1,"13884":-1,"13885":-1,"13886":1587,"13887":-1,"13888":-1,"13889":-1,"13890":-1,"13891":-1,"13892":-1,"13893":-1,"13894":-1,"13895":-1,"13896":-1,"13897":-1,"13898":-1,"13899":-1,"13900":-1,"13901":-1,"13902":-1,"13903":-1,"13904":1586,"13905":-1,"13906":0,"13907":-1,"13908":-1,"13909":-1,"13910":-1,"13911":1588,"13912":-1,"13913":-1,"13914":-1,"13915":-1,"13916":-1,"13917":1586,"13918":-1,"13919":1588,"13920":-1,"13921":-1,"13922":-1,"13923":-1,"13924":-1,"13925":1586,"13926":-1,"13927":-1,"13928":-1,"13929":-1,"13930":-1,"13931":-1,"13932":-1,"13933":-1,"13934":-1,"13935":-1,"13936":-1,"13937":-1,"13938":-1,"13939":-1,"13940":-1,"13941":0,"13942":-1,"13943":1586,"13944":-1,"13945":-1,"13946":1587,"13947":-1,"13948":-1,"13949":-1,"13950":-1,"13951":-1,"13952":-1,"13953":-1,"13954":-1,"13955":-1,"13956":-1,"13957":-1,"13958":-1,"13959":1587,"13960":-1,"13961":-1,"13962":-1,"13963":-1,"13964":-1,"13965":-1,"13966":-1,"13967":-1,"13968":1587,"13969":-1,"13970":-1,"13971":-1,"13972":-1,"13973":-1,"13974":-1,"13975":-1,"13976":-1,"13977":-1,"13978":-1,"13979":-1,"13980":-1,"13981":1589,"13982":-1,"13983":-1,"13984":-1,"13985":-1,"13986":-1,"13987":-1,"13988":-1,"13989":-1,"13990":-1,"13991":-1,"13992":-1,"13993":-1,"13994":-1,"13995":-1,"13996":-1,"13997":-1,"13998":-1,"13999":-1,"14000":-1,"14001":-1,"14002":-1,"14003":-1,"14004":-1,"14005":-1,"14006":-1,"14007":-1,"14008":-1,"14009":-1,"14010":-1,"14011":-1,"14012":-1,"14013":-1,"14014":1589,"14015":-1,"14016":-1,"14017":-1,"14018":-1,"14019":-1,"14020":-1,"14021":-1,"14022":-1,"14023":-1,"14024":-1,"14025":-1,"14026":-1,"14027":-1,"14028":-1,"14029":-1,"14030":-1,"14031":-1,"14032":-1,"14033":-1,"14034":-1,"14035":-1,"14036":1587,"14037":1588,"14038":-1,"14039":-1,"14040":-1,"14041":-1,"14042":-1,"14043":-1,"14044":-1,"14045":-1,"14046":-1,"14047":1586,"14048":1589,"14049":-1,"14050":-1,"14051":-1,"14052":-1,"14053":-1,"14054":-1,"14055":-1,"14056":-1,"14057":-1,"14058":-1,"14059":-1,"14060":-1,"14061":-1,"14062":1589,"14063":-1,"14064":-1,"14065":-1,"14066":-1,"14067":-1,"14068":1587,"14069":-1,"14070":-1,"14071":-1,"14072":-1,"14073":-1,"14074":-1,"14075":-1,"14076":-1,"14077":-1,"14078":-1,"14079":-1,"14080":-1,"14081":0,"14082":1589,"14083":-1,"14084":-1,"14085":1587,"14086":-1,"14087":1587,"14088":-1,"14089":-1,"14090":-1,"14091":-1,"14092":-1,"14093":-1,"14094":-1,"14095":-1,"14096":-1,"14097":-1,"14098":-1,"14099":-1,"14100":-1,"14101":-1,"14102":-1,"14103":-1,"14104":-1,"14105":-1,"14106":1588,"14107":-1,"14108":-1,"14109":-1,"14110":-1,"14111":0,"14112":-1,"14113":-1,"14114":-1,"14115":-1,"14116":-1,"14117":-1,"14118":-1,"14119":-1,"14120":0,"14121":-1,"14122":-1,"14123":1588,"14124":-1,"14125":-1,"14126":-1,"14127":-1,"14128":-1,"14129":-1,"14130":-1,"14131":-1,"14132":-1,"14133":0,"14134":-1,"14135":1587,"14136":-1,"14137":-1,"14138":-1,"14139":1587,"14140":-1,"14141":1587,"14142":-1,"14143":-1,"14144":-1,"14145":-1,"14146":-1,"14147":-1,"14148":-1,"14149":-1,"14150":-1,"14151":1588,"14152":-1,"14153":-1,"14154":-1,"14155":-1,"14156":-1,"14157":-1,"14158":-1,"14159":-1,"14160":-1,"14161":-1,"14162":1587,"14163":-1,"14164":-1,"14165":-1,"14166":-1,"14167":-1,"14168":-1,"14169":-1,"14170":-1,"14171":-1,"14172":1589,"14173":-1,"14174":1589,"14175":-1,"14176":-1,"14177":1589,"14178":-1,"14179":1588,"14180":-1,"14181":-1,"14182":-1,"14183":1589,"14184":-1,"14185":-1,"14186":-1,"14187":-1,"14188":-1,"14189":-1,"14190":-1,"14191":-1,"14192":-1,"14193":-1,"14194":-1,"14195":-1,"14196":-1,"14197":-1,"14198":-1,"14199":-1,"14200":-1,"14201":-1,"14202":-1,"14203":-1,"14204":-1,"14205":-1,"14206":-1,"14207":-1,"14208":-1,"14209":-1,"14210":-1,"14211":-1,"14212":-1,"14213":-1,"14214":-1,"14215":-1,"14216":1586,"14217":-1,"14218":-1,"14219":-1,"14220":-1,"14221":-1,"14222":-1,"14223":-1,"14224":-1,"14225":1587,"14226":1589,"14227":-1,"14228":-1,"14229":-1,"14230":-1,"14231":-1,"14232":-1,"14233":-1,"14234":-1,"14235":-1,"14236":1586,"14237":0,"14238":-1,"14239":-1,"14240":1586,"14241":-1,"14242":-1,"14243":-1,"14244":-1,"14245":-1,"14246":-1,"14247":-1,"14248":-1,"14249":-1,"14250":0,"14251":1587,"14252":-1,"14253":-1,"14254":-1,"14255":1588,"14256":-1,"14257":-1,"14258":-1,"14259":-1,"14260":-1,"14261":-1,"14262":-1,"14263":-1,"14264":-1,"14265":-1,"14266":-1,"14267":-1,"14268":-1,"14269":-1,"14270":-1,"14271":-1,"14272":-1,"14273":-1,"14274":-1,"14275":-1,"14276":1589,"14277":-1,"14278":-1,"14279":-1,"14280":-1,"14281":-1,"14282":-1,"14283":-1,"14284":-1,"14285":-1,"14286":-1,"14287":-1,"14288":-1,"14289":-1,"14290":1587,"14291":-1,"14292":-1,"14293":-1,"14294":-1,"14295":-1,"14296":-1,"14297":-1,"14298":-1,"14299":1588,"14300":-1,"14301":1588,"14302":-1,"14303":-1,"14304":-1,"14305":-1,"14306":-1,"14307":-1,"14308":-1,"14309":-1,"14310":-1,"14311":-1,"14312":-1,"14313":-1,"14314":-1,"14315":-1,"14316":-1,"14317":-1,"14318":-1,"14319":-1,"14320":-1,"14321":-1,"14322":-1,"14323":-1,"14324":-1,"14325":-1,"14326":-1,"14327":-1,"14328":1588,"14329":-1,"14330":-1,"14331":-1,"14332":-1,"14333":-1,"14334":-1,"14335":-1,"14336":-1,"14337":-1,"14338":-1,"14339":1587,"14340":-1,"14341":-1,"14342":-1,"14343":-1,"14344":-1,"14345":-1,"14346":-1,"14347":-1,"14348":-1,"14349":-1,"14350":-1,"14351":-1,"14352":-1,"14353":-1,"14354":-1,"14355":-1,"14356":1589,"14357":-1,"14358":-1,"14359":-1,"14360":-1,"14361":-1,"14362":-1,"14363":-1,"14364":1589,"14365":-1,"14366":-1,"14367":-1,"14368":-1,"14369":-1,"14370":-1,"14371":-1,"14372":-1,"14373":-1,"14374":-1,"14375":-1,"14376":-1,"14377":-1,"14378":-1,"14379":-1,"14380":-1,"14381":-1,"14382":-1,"14383":-1,"14384":-1,"14385":1589,"14386":0,"14387":-1,"14388":-1,"14389":-1,"14390":1588,"14391":-1,"14392":-1,"14393":-1,"14394":-1,"14395":-1,"14396":-1,"14397":-1,"14398":-1,"14399":-1,"14400":-1,"14401":-1,"14402":-1,"14403":-1,"14404":-1,"14405":-1,"14406":-1,"14407":-1,"14408":-1,"14409":-1,"14410":1587,"14411":-1,"14412":-1,"14413":-1,"14414":-1,"14415":-1,"14416":-1,"14417":-1,"14418":-1,"14419":-1,"14420":-1,"14421":1589,"14422":-1,"14423":-1,"14424":-1,"14425":-1,"14426":-1,"14427":-1,"14428":-1,"14429":-1,"14430":-1,"14431":-1,"14432":-1,"14433":-1,"14434":1588,"14435":-1,"14436":1587,"14437":-1,"14438":-1,"14439":-1,"14440":-1,"14441":-1,"14442":1589,"14443":-1,"14444":-1,"14445":-1,"14446":-1,"14447":1589,"14448":1588,"14449":-1,"14450":-1,"14451":-1,"14452":-1,"14453":-1,"14454":1587,"14455":-1,"14456":-1,"14457":1588,"14458":0,"14459":-1,"14460":-1,"14461":-1,"14462":-1,"14463":-1,"14464":-1,"14465":-1,"14466":-1,"14467":-1,"14468":-1,"14469":-1,"14470":-1,"14471":-1,"14472":-1,"14473":-1,"14474":-1,"14475":-1,"14476":-1,"14477":-1,"14478":-1,"14479":-1,"14480":-1,"14481":1589,"14482":-1,"14483":-1,"14484":-1,"14485":-1,"14486":-1,"14487":-1,"14488":-1,"14489":-1,"14490":1588,"14491":-1,"14492":-1,"14493":-1,"14494":1587,"14495":-1,"14496":-1,"14497":-1,"14498":-1,"14499":-1,"14500":-1,"14501":-1,"14502":1587,"14503":-1,"14504":1587,"14505":-1,"14506":-1,"14507":-1,"14508":-1,"14509":-1,"14510":-1,"14511":1588,"14512":-1,"14513":-1,"14514":-1,"14515":-1,"14516":1586,"14517":-1,"14518":-1,"14519":-1,"14520":1587,"14521":1588,"14522":-1,"14523":-1,"14524":-1,"14525":-1,"14526":-1,"14527":-1,"14528":-1,"14529":-1,"14530":1589,"14531":-1,"14532":-1,"14533":1589,"14534":-1,"14535":-1,"14536":-1,"14537":-1,"14538":-1,"14539":-1,"14540":-1,"14541":-1,"14542":-1,"14543":-1,"14544":-1,"14545":-1,"14546":-1,"14547":-1,"14548":-1,"14549":-1,"14550":-1,"14551":-1,"14552":-1,"14553":-1,"14554":-1,"14555":1587,"14556":-1,"14557":-1,"14558":-1,"14559":-1,"14560":-1,"14561":-1,"14562":-1,"14563":-1,"14564":-1,"14565":-1,"14566":-1,"14567":-1,"14568":-1,"14569":-1,"14570":-1,"14571":-1,"14572":-1,"14573":-1,"14574":0,"14575":-1,"14576":-1,"14577":1589,"14578":-1,"14579":1587,"14580":-1,"14581":-1,"14582":-1,"14583":-1,"14584":-1,"14585":-1,"14586":-1,"14587":-1,"14588":-1,"14589":1589,"14590":-1,"14591":-1,"14592":-1,"14593":-1,"14594":-1,"14595":-1,"14596":-1,"14597":-1,"14598":-1,"14599":-1,"14600":-1,"14601":-1,"14602":1587,"14603":-1,"14604":-1,"14605":-1,"14606":0,"14607":-1,"14608":-1,"14609":-1,"14610":-1,"14611":-1,"14612":-1,"14613":-1,"14614":-1,"14615":-1,"14616":-1,"14617":1587,"14618":1587,"14619":-1,"14620":-1,"14621":-1,"14622":-1,"14623":-1,"14624":1588,"14625":-1,"14626":-1,"14627":-1,"14628":1587,"14629":-1,"14630":-1,"14631":-1,"14632":-1,"14633":-1,"14634":1586,"14635":-1,"14636":-1,"14637":-1,"14638":-1,"14639":-1,"14640":-1,"14641":-1,"14642":-1,"14643":-1,"14644":-1,"14645":-1,"14646":-1,"14647":-1,"14648":-1,"14649":-1,"14650":-1,"14651":-1,"14652":1587,"14653":-1,"14654":1588,"14655":-1,"14656":-1,"14657":-1,"14658":1588,"14659":-1,"14660":1587,"14661":-1,"14662":-1,"14663":1587,"14664":-1,"14665":-1,"14666":1586,"14667":-1,"14668":1586,"14669":-1,"14670":-1,"14671":-1,"14672":1588,"14673":-1,"14674":-1,"14675":-1,"14676":-1,"14677":-1,"14678":-1,"14679":-1,"14680":-1,"14681":-1,"14682":-1,"14683":-1,"14684":-1,"14685":-1,"14686":-1,"14687":-1,"14688":-1,"14689":-1,"14690":-1,"14691":-1,"14692":-1,"14693":1587,"14694":-1,"14695":-1,"14696":-1,"14697":-1,"14698":-1,"14699":-1,"14700":-1,"14701":-1,"14702":-1,"14703":-1,"14704":0,"14705":-1,"14706":-1,"14707":-1,"14708":-1,"14709":-1,"14710":1589,"14711":-1,"14712":-1,"14713":-1,"14714":-1,"14715":1587,"14716":-1,"14717":-1,"14718":-1,"14719":-1,"14720":-1,"14721":-1,"14722":-1,"14723":-1,"14724":-1,"14725":-1,"14726":-1,"14727":-1,"14728":1588,"14729":-1,"14730":-1,"14731":-1,"14732":0,"14733":-1,"14734":-1,"14735":1588,"14736":-1,"14737":-1,"14738":1588,"14739":-1,"14740":1588,"14741":-1,"14742":-1,"14743":-1,"14744":-1,"14745":-1,"14746":-1,"14747":1587,"14748":1587,"14749":-1,"14750":-1,"14751":-1,"14752":-1,"14753":-1,"14754":1587,"14755":-1,"14756":1586,"14757":-1,"14758":0,"14759":-1,"14760":-1,"14761":-1,"14762":-1,"14763":-1,"14764":-1,"14765":-1,"14766":-1,"14767":-1,"14768":-1,"14769":-1,"14770":-1,"14771":-1,"14772":1589,"14773":-1,"14774":-1,"14775":1588,"14776":-1,"14777":-1,"14778":-1,"14779":-1,"14780":-1,"14781":-1,"14782":1588,"14783":-1,"14784":-1,"14785":1588,"14786":-1,"14787":-1,"14788":-1,"14789":1589,"14790":-1,"14791":-1,"14792":-1,"14793":-1,"14794":-1,"14795":-1,"14796":-1,"14797":-1,"14798":-1,"14799":-1,"14800":-1,"14801":-1,"14802":-1,"14803":-1,"14804":-1,"14805":-1,"14806":-1,"14807":-1,"14808":-1,"14809":-1,"14810":-1,"14811":-1,"14812":-1,"14813":-1,"14814":-1,"14815":-1,"14816":1587,"14817":-1,"14818":-1,"14819":-1,"14820":-1,"14821":1588,"14822":-1,"14823":-1,"14824":-1,"14825":-1,"14826":-1,"14827":-1,"14828":-1,"14829":1589,"14830":-1,"14831":-1,"14832":-1,"14833":-1,"14834":-1,"14835":1588,"14836":1588,"14837":-1,"14838":0,"14839":-1,"14840":-1,"14841":-1,"14842":-1,"14843":-1,"14844":1587,"14845":-1,"14846":-1,"14847":-1,"14848":-1,"14849":-1,"14850":-1,"14851":-1,"14852":-1,"14853":-1,"14854":-1,"14855":-1,"14856":-1,"14857":-1,"14858":-1,"14859":-1,"14860":-1,"14861":-1,"14862":-1,"14863":-1,"14864":-1,"14865":-1,"14866":-1,"14867":-1,"14868":-1,"14869":-1,"14870":1588,"14871":-1,"14872":-1,"14873":-1,"14874":-1,"14875":-1,"14876":-1,"14877":1589,"14878":-1,"14879":-1,"14880":-1,"14881":1587,"14882":-1,"14883":-1,"14884":-1,"14885":1587,"14886":-1,"14887":-1,"14888":-1,"14889":-1,"14890":-1,"14891":-1,"14892":1587,"14893":-1,"14894":-1,"14895":1587,"14896":-1,"14897":-1,"14898":-1,"14899":-1,"14900":-1,"14901":-1,"14902":-1,"14903":-1,"14904":-1,"14905":-1,"14906":-1,"14907":-1,"14908":-1,"14909":-1,"14910":-1,"14911":-1,"14912":-1,"14913":1587,"14914":-1,"14915":-1,"14916":-1,"14917":1586,"14918":-1,"14919":-1,"14920":-1,"14921":-1,"14922":-1,"14923":-1,"14924":-1,"14925":-1,"14926":-1,"14927":-1,"14928":-1,"14929":-1,"14930":-1,"14931":1588,"14932":1588,"14933":-1,"14934":-1,"14935":-1,"14936":-1,"14937":-1,"14938":-1,"14939":-1,"14940":-1,"14941":-1,"14942":-1,"14943":-1,"14944":-1,"14945":-1,"14946":-1,"14947":-1,"14948":-1,"14949":-1,"14950":-1,"14951":-1,"14952":-1,"14953":-1,"14954":-1,"14955":-1,"14956":1586,"14957":-1,"14958":-1,"14959":-1,"14960":0,"14961":-1,"14962":-1,"14963":-1,"14964":-1,"14965":-1,"14966":-1,"14967":1588,"14968":1588,"14969":-1,"14970":-1,"14971":-1,"14972":-1,"14973":-1,"14974":-1,"14975":-1,"14976":-1,"14977":-1,"14978":1586,"14979":-1,"14980":-1,"14981":-1,"14982":-1,"14983":-1,"14984":-1,"14985":-1,"14986":-1,"14987":-1,"14988":-1,"14989":1587,"14990":-1,"14991":-1,"14992":-1,"14993":1586,"14994":-1,"14995":-1,"14996":1587,"14997":-1,"14998":-1,"14999":1586,"15000":-1,"15001":0,"15002":-1,"15003":-1,"15004":-1,"15005":-1,"15006":-1,"15007":-1,"15008":-1,"15009":-1,"15010":-1,"15011":-1,"15012":0,"15013":-1,"15014":-1,"15015":-1,"15016":-1,"15017":-1,"15018":-1,"15019":-1,"15020":-1,"15021":1588,"15022":-1,"15023":-1,"15024":-1,"15025":1586,"15026":1589,"15027":-1,"15028":-1,"15029":-1,"15030":-1,"15031":1588,"15032":-1,"15033":-1,"15034":-1,"15035":-1,"15036":-1,"15037":-1,"15038":-1,"15039":-1,"15040":-1,"15041":1589,"15042":-1,"15043":-1,"15044":-1,"15045":-1,"15046":-1,"15047":-1,"15048":-1,"15049":1587,"15050":-1,"15051":-1,"15052":1586,"15053":-1,"15054":-1,"15055":-1,"15056":-1,"15057":1588,"15058":-1,"15059":-1,"15060":1588,"15061":-1,"15062":1588,"15063":-1,"15064":-1,"15065":-1,"15066":-1,"15067":-1,"15068":-1,"15069":-1,"15070":-1,"15071":-1,"15072":-1,"15073":-1,"15074":-1,"15075":-1,"15076":-1,"15077":-1,"15078":-1,"15079":-1,"15080":-1,"15081":-1,"15082":-1,"15083":-1,"15084":-1,"15085":-1,"15086":-1,"15087":-1,"15088":-1,"15089":-1,"15090":-1,"15091":-1,"15092":-1,"15093":-1,"15094":1587,"15095":-1,"15096":-1,"15097":-1,"15098":-1,"15099":-1,"15100":-1,"15101":-1,"15102":-1,"15103":-1,"15104":-1,"15105":-1,"15106":1586,"15107":0,"15108":-1,"15109":-1,"15110":1587,"15111":-1,"15112":-1,"15113":-1,"15114":-1,"15115":-1,"15116":-1,"15117":0,"15118":-1,"15119":0,"15120":-1,"15121":0,"15122":-1,"15123":-1,"15124":-1,"15125":1588,"15126":-1,"15127":-1,"15128":-1,"15129":1589,"15130":-1,"15131":-1,"15132":-1,"15133":-1,"15134":-1,"15135":-1,"15136":-1,"15137":-1,"15138":-1,"15139":-1,"15140":-1,"15141":-1,"15142":-1,"15143":-1,"15144":-1,"15145":-1,"15146":-1,"15147":-1,"15148":-1,"15149":1588,"15150":-1,"15151":-1,"15152":-1,"15153":-1,"15154":-1,"15155":1589,"15156":1589,"15157":-1,"15158":-1,"15159":-1,"15160":1587,"15161":-1,"15162":-1,"15163":-1,"15164":-1,"15165":1588,"15166":-1,"15167":-1,"15168":-1,"15169":-1,"15170":-1,"15171":1589,"15172":-1,"15173":-1,"15174":-1,"15175":-1,"15176":-1,"15177":-1,"15178":-1,"15179":-1,"15180":-1,"15181":-1,"15182":-1,"15183":-1,"15184":-1,"15185":-1,"15186":-1,"15187":-1,"15188":-1,"15189":-1,"15190":-1,"15191":-1,"15192":-1,"15193":-1,"15194":-1,"15195":-1,"15196":-1,"15197":1588,"15198":-1,"15199":-1,"15200":-1,"15201":-1,"15202":-1,"15203":-1,"15204":0,"15205":-1,"15206":-1,"15207":-1,"15208":-1,"15209":0,"15210":-1,"15211":1589,"15212":-1,"15213":-1,"15214":1588,"15215":-1,"15216":-1,"15217":-1,"15218":-1,"15219":1588,"15220":1588,"15221":-1,"15222":-1,"15223":1587,"15224":1586,"15225":-1,"15226":-1,"15227":-1,"15228":-1,"15229":-1,"15230":-1,"15231":-1,"15232":1589,"15233":-1,"15234":-1,"15235":-1,"15236":-1,"15237":0,"15238":1586,"15239":-1,"15240":-1,"15241":-1,"15242":-1,"15243":-1,"15244":-1,"15245":-1,"15246":-1,"15247":-1,"15248":-1,"15249":0,"15250":1586,"15251":-1,"15252":-1,"15253":-1,"15254":-1,"15255":-1,"15256":-1,"15257":-1,"15258":-1,"15259":-1,"15260":-1,"15261":-1,"15262":-1,"15263":-1,"15264":-1,"15265":-1,"15266":-1,"15267":-1,"15268":-1,"15269":1588,"15270":-1,"15271":-1,"15272":1588,"15273":1587,"15274":-1,"15275":-1,"15276":1586,"15277":-1,"15278":1587,"15279":-1,"15280":-1,"15281":-1,"15282":-1,"15283":-1,"15284":-1,"15285":1588,"15286":-1,"15287":-1,"15288":-1,"15289":-1,"15290":-1,"15291":-1,"15292":-1,"15293":-1,"15294":-1,"15295":-1,"15296":-1,"15297":-1,"15298":-1,"15299":-1,"15300":1588,"15301":-1,"15302":-1,"15303":1587,"15304":-1,"15305":-1,"15306":-1,"15307":-1,"15308":-1,"15309":-1,"15310":-1,"15311":-1,"15312":-1,"15313":-1,"15314":-1,"15315":1588,"15316":-1,"15317":-1,"15318":-1,"15319":-1,"15320":-1,"15321":-1,"15322":-1,"15323":-1,"15324":0,"15325":1589,"15326":-1,"15327":-1,"15328":-1,"15329":-1,"15330":-1,"15331":-1,"15332":-1,"15333":1589,"15334":1588,"15335":-1,"15336":-1,"15337":-1,"15338":-1,"15339":-1,"15340":-1,"15341":-1,"15342":-1,"15343":-1,"15344":-1,"15345":-1,"15346":-1,"15347":0,"15348":1587,"15349":-1,"15350":-1,"15351":-1,"15352":1588,"15353":0,"15354":-1,"15355":-1,"15356":-1,"15357":-1,"15358":-1,"15359":-1,"15360":1587,"15361":1589,"15362":-1,"15363":-1,"15364":1586,"15365":-1,"15366":0,"15367":-1,"15368":-1,"15369":-1,"15370":1587,"15371":-1,"15372":-1,"15373":-1,"15374":-1,"15375":-1,"15376":-1,"15377":-1,"15378":-1,"15379":1589,"15380":-1,"15381":-1,"15382":-1,"15383":-1,"15384":-1,"15385":0,"15386":1587,"15387":1586,"15388":-1,"15389":-1,"15390":-1,"15391":-1,"15392":1587,"15393":1587,"15394":-1,"15395":-1,"15396":-1,"15397":-1,"15398":-1,"15399":1587,"15400":-1,"15401":-1,"15402":-1,"15403":-1,"15404":-1,"15405":-1,"15406":-1,"15407":-1,"15408":-1,"15409":-1,"15410":-1,"15411":-1,"15412":-1,"15413":-1,"15414":-1,"15415":0,"15416":-1,"15417":1586,"15418":-1,"15419":-1,"15420":-1,"15421":-1,"15422":-1,"15423":-1,"15424":-1,"15425":1588,"15426":-1,"15427":1586,"15428":-1,"15429":-1,"15430":-1,"15431":-1,"15432":-1,"15433":-1,"15434":-1,"15435":-1,"15436":-1,"15437":-1,"15438":-1,"15439":-1,"15440":-1,"15441":-1,"15442":-1,"15443":-1,"15444":-1,"15445":-1,"15446":-1,"15447":1588,"15448":-1,"15449":-1,"15450":-1,"15451":1586,"15452":-1,"15453":-1,"15454":-1,"15455":-1,"15456":-1,"15457":-1,"15458":-1,"15459":-1,"15460":-1,"15461":-1,"15462":-1,"15463":-1,"15464":-1,"15465":1586,"15466":-1,"15467":-1,"15468":-1,"15469":-1,"15470":-1,"15471":-1,"15472":0,"15473":-1,"15474":-1,"15475":-1,"15476":0,"15477":-1,"15478":1588,"15479":-1,"15480":-1,"15481":-1,"15482":-1,"15483":-1,"15484":-1,"15485":-1,"15486":-1,"15487":-1,"15488":-1,"15489":-1,"15490":-1,"15491":-1,"15492":1588,"15493":-1,"15494":-1,"15495":-1,"15496":-1,"15497":-1,"15498":1587,"15499":1587,"15500":-1,"15501":1589,"15502":-1,"15503":-1,"15504":-1,"15505":-1,"15506":-1,"15507":-1,"15508":-1,"15509":-1,"15510":1587,"15511":-1,"15512":1589,"15513":-1,"15514":-1,"15515":-1,"15516":-1,"15517":1587,"15518":1588,"15519":-1,"15520":-1,"15521":-1,"15522":-1,"15523":-1,"15524":-1,"15525":-1,"15526":-1,"15527":-1,"15528":-1,"15529":1588,"15530":-1,"15531":-1,"15532":-1,"15533":-1,"15534":-1,"15535":-1,"15536":-1,"15537":-1,"15538":1586,"15539":-1,"15540":-1,"15541":-1,"15542":-1,"15543":1587,"15544":-1,"15545":-1,"15546":-1,"15547":-1,"15548":-1,"15549":-1,"15550":1587,"15551":-1,"15552":1588,"15553":0,"15554":-1,"15555":-1,"15556":-1,"15557":-1,"15558":-1,"15559":1586,"15560":-1,"15561":-1,"15562":-1,"15563":-1,"15564":-1,"15565":-1,"15566":-1,"15567":-1,"15568":-1,"15569":-1,"15570":-1,"15571":-1,"15572":1587,"15573":-1,"15574":-1,"15575":-1,"15576":-1,"15577":-1,"15578":-1,"15579":-1,"15580":-1,"15581":-1,"15582":-1,"15583":-1,"15584":-1,"15585":-1,"15586":-1,"15587":-1,"15588":1587,"15589":-1,"15590":-1,"15591":-1,"15592":-1,"15593":-1,"15594":-1,"15595":-1,"15596":1588,"15597":-1,"15598":-1,"15599":1587,"15600":-1,"15601":-1,"15602":-1,"15603":-1,"15604":-1,"15605":-1,"15606":-1,"15607":-1,"15608":-1,"15609":-1,"15610":1589,"15611":-1,"15612":-1,"15613":-1,"15614":-1,"15615":1587,"15616":-1,"15617":-1,"15618":-1,"15619":-1,"15620":-1,"15621":-1,"15622":-1,"15623":-1,"15624":-1,"15625":-1,"15626":-1,"15627":-1,"15628":1588,"15629":1586,"15630":-1,"15631":-1,"15632":-1,"15633":1586,"15634":-1,"15635":-1,"15636":-1,"15637":-1,"15638":-1,"15639":-1,"15640":0,"15641":-1,"15642":1586,"15643":-1,"15644":-1,"15645":1587,"15646":-1,"15647":-1,"15648":-1,"15649":-1,"15650":1587,"15651":1587,"15652":-1,"15653":-1,"15654":-1,"15655":-1,"15656":-1,"15657":-1,"15658":-1,"15659":-1,"15660":-1,"15661":1588,"15662":-1,"15663":-1,"15664":1587,"15665":1587,"15666":-1,"15667":-1,"15668":1588,"15669":-1,"15670":-1,"15671":-1,"15672":-1,"15673":1588,"15674":-1,"15675":-1,"15676":-1,"15677":-1,"15678":-1,"15679":-1,"15680":1587,"15681":-1,"15682":-1,"15683":-1,"15684":-1,"15685":-1,"15686":-1,"15687":1586,"15688":-1,"15689":0,"15690":-1,"15691":-1,"15692":-1,"15693":-1,"15694":-1,"15695":-1,"15696":-1,"15697":-1,"15698":1587,"15699":-1,"15700":-1,"15701":1586,"15702":-1,"15703":-1,"15704":1589,"15705":1586,"15706":-1,"15707":-1,"15708":-1,"15709":-1,"15710":-1,"15711":-1,"15712":-1,"15713":-1,"15714":-1,"15715":-1,"15716":-1,"15717":-1,"15718":-1,"15719":-1,"15720":-1,"15721":-1,"15722":-1,"15723":-1,"15724":1588,"15725":-1,"15726":-1,"15727":-1,"15728":-1,"15729":-1,"15730":-1,"15731":-1,"15732":-1,"15733":1587,"15734":-1,"15735":-1,"15736":-1,"15737":-1,"15738":-1,"15739":-1,"15740":-1,"15741":-1,"15742":-1,"15743":-1,"15744":1588,"15745":-1,"15746":-1,"15747":-1,"15748":-1,"15749":-1,"15750":-1,"15751":-1,"15752":-1,"15753":-1,"15754":-1,"15755":-1,"15756":-1,"15757":1589,"15758":-1,"15759":-1,"15760":-1,"15761":-1,"15762":0,"15763":-1,"15764":-1,"15765":-1,"15766":1586,"15767":-1,"15768":-1,"15769":-1,"15770":1589,"15771":-1,"15772":1588,"15773":1589,"15774":-1,"15775":-1,"15776":-1,"15777":0,"15778":1588,"15779":-1,"15780":-1,"15781":-1,"15782":1588,"15783":-1,"15784":-1,"15785":-1,"15786":-1,"15787":-1,"15788":-1,"15789":-1,"15790":1588,"15791":-1,"15792":-1,"15793":-1,"15794":-1,"15795":-1,"15796":-1,"15797":-1,"15798":-1,"15799":-1,"15800":-1,"15801":-1,"15802":-1,"15803":-1,"15804":-1,"15805":1587,"15806":-1,"15807":-1,"15808":-1,"15809":-1,"15810":-1,"15811":-1,"15812":-1,"15813":1586,"15814":-1,"15815":-1,"15816":0,"15817":-1,"15818":-1,"15819":-1,"15820":-1,"15821":-1,"15822":-1,"15823":-1,"15824":-1,"15825":-1,"15826":1589,"15827":-1,"15828":-1,"15829":-1,"15830":-1,"15831":-1,"15832":-1,"15833":-1,"15834":0,"15835":-1,"15836":-1,"15837":-1,"15838":-1,"15839":-1,"15840":-1,"15841":-1,"15842":-1,"15843":1589,"15844":-1,"15845":-1,"15846":-1,"15847":-1,"15848":-1,"15849":-1,"15850":-1,"15851":-1,"15852":1586,"15853":1588,"15854":-1,"15855":-1,"15856":-1,"15857":1587,"15858":-1,"15859":-1,"15860":-1,"15861":-1,"15862":-1,"15863":-1,"15864":-1,"15865":-1,"15866":-1,"15867":-1,"15868":-1,"15869":-1,"15870":-1,"15871":-1,"15872":-1,"15873":-1,"15874":-1,"15875":1589,"15876":-1,"15877":-1,"15878":-1,"15879":1588,"15880":1588,"15881":-1,"15882":-1,"15883":-1,"15884":-1,"15885":-1,"15886":-1,"15887":-1,"15888":1586,"15889":-1,"15890":-1,"15891":1587,"15892":-1,"15893":-1,"15894":-1,"15895":-1,"15896":-1,"15897":1586,"15898":-1,"15899":-1,"15900":-1,"15901":-1,"15902":-1,"15903":-1,"15904":-1,"15905":1587,"15906":-1,"15907":1587,"15908":-1,"15909":-1,"15910":-1,"15911":-1,"15912":-1,"15913":-1,"15914":0,"15915":-1,"15916":-1,"15917":-1,"15918":-1,"15919":-1,"15920":-1,"15921":-1,"15922":-1,"15923":-1,"15924":-1,"15925":-1,"15926":-1,"15927":-1,"15928":-1,"15929":-1,"15930":-1,"15931":-1,"15932":-1,"15933":0,"15934":-1,"15935":-1,"15936":-1,"15937":0,"15938":-1,"15939":1587,"15940":-1,"15941":1587,"15942":-1,"15943":1586,"15944":-1,"15945":-1,"15946":-1,"15947":-1,"15948":-1,"15949":-1,"15950":-1,"15951":-1,"15952":1586,"15953":-1,"15954":-1,"15955":-1,"15956":-1,"15957":-1,"15958":-1,"15959":-1,"15960":-1,"15961":-1,"15962":-1,"15963":-1,"15964":-1,"15965":-1,"15966":-1,"15967":-1,"15968":-1,"15969":-1,"15970":-1,"15971":-1,"15972":-1,"15973":-1,"15974":1586,"15975":-1,"15976":-1,"15977":-1,"15978":-1,"15979":1588,"15980":-1,"15981":-1,"15982":-1,"15983":-1,"15984":-1,"15985":-1,"15986":-1,"15987":-1,"15988":-1,"15989":-1,"15990":-1,"15991":-1,"15992":-1,"15993":-1,"15994":-1,"15995":-1,"15996":-1,"15997":-1,"15998":-1,"15999":-1,"16000":-1,"16001":-1,"16002":-1,"16003":-1,"16004":-1,"16005":-1,"16006":-1,"16007":-1,"16008":-1,"16009":-1,"16010":-1,"16011":-1,"16012":-1,"16013":-1,"16014":1586,"16015":-1,"16016":-1,"16017":-1,"16018":-1,"16019":0,"16020":-1,"16021":-1,"16022":-1,"16023":1589,"16024":1589,"16025":-1,"16026":1588,"16027":-1,"16028":-1,"16029":0,"16030":-1,"16031":-1,"16032":-1,"16033":-1,"16034":-1,"16035":-1,"16036":0,"16037":-1,"16038":-1,"16039":-1,"16040":-1,"16041":-1,"16042":-1,"16043":-1,"16044":-1,"16045":-1,"16046":-1,"16047":-1,"16048":-1,"16049":-1,"16050":-1,"16051":-1,"16052":-1,"16053":-1,"16054":-1,"16055":-1,"16056":-1,"16057":-1,"16058":-1,"16059":-1,"16060":-1,"16061":-1,"16062":-1,"16063":-1,"16064":-1,"16065":-1,"16066":-1,"16067":-1,"16068":-1,"16069":-1,"16070":-1,"16071":-1,"16072":0,"16073":-1,"16074":1587,"16075":-1,"16076":-1,"16077":-1,"16078":-1,"16079":-1,"16080":-1,"16081":-1,"16082":1589,"16083":-1,"16084":-1,"16085":-1,"16086":1587,"16087":-1,"16088":1588,"16089":-1,"16090":-1,"16091":-1,"16092":-1,"16093":-1,"16094":-1,"16095":-1,"16096":-1,"16097":-1,"16098":-1,"16099":-1,"16100":-1,"16101":0,"16102":-1,"16103":-1,"16104":-1,"16105":-1,"16106":-1,"16107":-1,"16108":1586,"16109":-1,"16110":-1,"16111":-1,"16112":-1,"16113":1586,"16114":-1,"16115":-1,"16116":-1,"16117":1589,"16118":-1,"16119":-1,"16120":-1,"16121":1589,"16122":1586,"16123":-1,"16124":-1,"16125":-1,"16126":-1,"16127":-1,"16128":-1,"16129":-1,"16130":-1,"16131":-1,"16132":-1,"16133":-1,"16134":0,"16135":-1,"16136":1587,"16137":-1,"16138":-1,"16139":-1,"16140":-1,"16141":-1,"16142":-1,"16143":-1,"16144":-1,"16145":-1,"16146":-1,"16147":-1,"16148":-1,"16149":-1,"16150":-1,"16151":-1,"16152":-1,"16153":-1,"16154":1587,"16155":-1,"16156":-1,"16157":-1,"16158":-1,"16159":-1,"16160":-1,"16161":-1,"16162":0,"16163":-1,"16164":-1,"16165":-1,"16166":-1,"16167":-1,"16168":-1,"16169":-1,"16170":-1,"16171":-1,"16172":1587,"16173":-1,"16174":-1,"16175":-1,"16176":-1,"16177":-1,"16178":1587,"16179":-1,"16180":-1,"16181":-1,"16182":-1,"16183":-1,"16184":-1,"16185":-1,"16186":-1,"16187":1588,"16188":-1,"16189":1586,"16190":-1,"16191":-1,"16192":-1,"16193":-1,"16194":-1,"16195":-1,"16196":1587,"16197":-1,"16198":-1,"16199":-1,"16200":-1,"16201":-1,"16202":-1,"16203":-1,"16204":-1,"16205":0,"16206":-1,"16207":-1,"16208":-1,"16209":-1,"16210":1587,"16211":-1,"16212":-1,"16213":-1,"16214":-1,"16215":0,"16216":-1,"16217":1589,"16218":-1,"16219":-1,"16220":-1,"16221":-1,"16222":-1,"16223":-1,"16224":-1,"16225":-1,"16226":-1,"16227":-1,"16228":-1,"16229":1589,"16230":-1,"16231":-1,"16232":0,"16233":-1,"16234":-1,"16235":-1,"16236":-1,"16237":0,"16238":-1,"16239":1588,"16240":-1,"16241":-1,"16242":-1,"16243":-1,"16244":-1,"16245":-1,"16246":-1,"16247":-1,"16248":-1,"16249":-1,"16250":-1,"16251":-1,"16252":-1,"16253":-1,"16254":-1,"16255":1588,"16256":-1,"16257":-1,"16258":-1,"16259":-1,"16260":0,"16261":-1,"16262":-1,"16263":-1,"16264":1587,"16265":-1,"16266":-1,"16267":-1,"16268":-1,"16269":-1,"16270":-1,"16271":-1,"16272":-1,"16273":-1,"16274":-1,"16275":-1,"16276":-1,"16277":-1,"16278":-1,"16279":-1,"16280":-1,"16281":-1,"16282":-1,"16283":-1,"16284":-1,"16285":1586,"16286":-1,"16287":-1,"16288":-1,"16289":-1,"16290":-1,"16291":-1,"16292":-1,"16293":-1,"16294":-1,"16295":-1,"16296":1587,"16297":-1,"16298":1588,"16299":1587,"16300":-1,"16301":-1,"16302":-1,"16303":-1,"16304":-1,"16305":0,"16306":-1,"16307":-1,"16308":-1,"16309":-1,"16310":-1,"16311":-1,"16312":-1,"16313":-1,"16314":1586,"16315":-1,"16316":-1,"16317":-1,"16318":-1,"16319":-1,"16320":-1,"16321":-1,"16322":-1,"16323":-1,"16324":-1,"16325":-1,"16326":-1,"16327":-1,"16328":-1,"16329":-1,"16330":-1,"16331":-1,"16332":-1,"16333":1588,"16334":-1,"16335":-1,"16336":1588,"16337":-1,"16338":-1,"16339":-1,"16340":-1,"16341":-1,"16342":-1,"16343":-1,"16344":-1,"16345":1588,"16346":-1,"16347":-1,"16348":-1,"16349":-1,"16350":-1,"16351":-1,"16352":-1,"16353":-1,"16354":-1,"16355":-1,"16356":1587,"16357":1589,"16358":-1,"16359":-1,"16360":-1,"16361":-1,"16362":-1,"16363":1589,"16364":1586,"16365":-1,"16366":-1,"16367":-1,"16368":-1,"16369":-1,"16370":-1,"16371":-1,"16372":-1,"16373":-1,"16374":-1,"16375":-1,"16376":-1,"16377":-1,"16378":-1,"16379":0,"16380":-1,"16381":-1,"16382":-1,"16383":-1,"16384":-1,"16385":-1,"16386":-1,"16387":-1,"16388":-1,"16389":-1,"16390":-1,"16391":-1,"16392":-1,"16393":-1,"16394":-1,"16395":-1,"16396":1589,"16397":-1,"16398":-1,"16399":1588,"16400":-1,"16401":-1,"16402":-1,"16403":-1,"16404":1587,"16405":-1,"16406":-1,"16407":-1,"16408":1586,"16409":-1,"16410":-1,"16411":1587,"16412":-1,"16413":-1,"16414":-1,"16415":-1,"16416":1588,"16417":-1,"16418":-1,"16419":-1,"16420":-1,"16421":-1,"16422":-1,"16423":-1,"16424":-1,"16425":0,"16426":-1,"16427":-1,"16428":1587,"16429":-1,"16430":-1,"16431":-1,"16432":-1,"16433":-1,"16434":-1,"16435":-1,"16436":-1,"16437":-1,"16438":-1,"16439":-1,"16440":-1,"16441":-1,"16442":-1,"16443":-1,"16444":-1,"16445":-1,"16446":-1,"16447":-1,"16448":-1,"16449":-1,"16450":-1,"16451":-1,"16452":-1,"16453":-1,"16454":-1,"16455":-1,"16456":-1,"16457":-1,"16458":-1,"16459":-1,"16460":-1,"16461":-1,"16462":-1,"16463":-1,"16464":-1,"16465":-1,"16466":-1,"16467":-1,"16468":-1,"16469":-1,"16470":-1,"16471":-1,"16472":-1,"16473":-1,"16474":-1,"16475":-1,"16476":-1,"16477":-1,"16478":-1,"16479":-1,"16480":-1,"16481":-1,"16482":-1,"16483":-1,"16484":-1,"16485":-1,"16486":-1,"16487":-1,"16488":-1,"16489":-1,"16490":-1,"16491":1588,"16492":-1,"16493":-1,"16494":-1,"16495":1588,"16496":-1,"16497":1587,"16498":1587,"16499":-1,"16500":-1,"16501":-1,"16502":-1,"16503":1589,"16504":-1,"16505":-1,"16506":-1,"16507":-1,"16508":-1,"16509":-1,"16510":-1,"16511":-1,"16512":-1,"16513":-1,"16514":1587,"16515":-1,"16516":-1,"16517":-1,"16518":-1,"16519":-1,"16520":-1,"16521":-1,"16522":-1,"16523":-1,"16524":-1,"16525":-1,"16526":0,"16527":1588,"16528":-1,"16529":-1,"16530":-1,"16531":-1,"16532":-1,"16533":-1,"16534":-1,"16535":1587,"16536":-1,"16537":-1,"16538":-1,"16539":-1,"16540":-1,"16541":-1,"16542":-1,"16543":-1,"16544":-1,"16545":-1,"16546":-1,"16547":-1,"16548":-1,"16549":-1,"16550":1589,"16551":-1,"16552":-1,"16553":-1,"16554":-1,"16555":-1,"16556":-1,"16557":-1,"16558":-1,"16559":-1,"16560":-1,"16561":1586,"16562":-1,"16563":-1,"16564":-1,"16565":-1,"16566":-1,"16567":-1,"16568":-1,"16569":-1,"16570":1588,"16571":-1,"16572":-1,"16573":-1,"16574":-1,"16575":-1,"16576":-1,"16577":-1,"16578":-1,"16579":-1,"16580":-1,"16581":-1,"16582":-1,"16583":-1,"16584":-1,"16585":1588,"16586":-1,"16587":-1,"16588":-1,"16589":-1,"16590":1586,"16591":-1,"16592":-1,"16593":1587,"16594":-1,"16595":-1,"16596":-1,"16597":-1,"16598":0,"16599":-1,"16600":-1,"16601":-1,"16602":-1,"16603":-1,"16604":-1,"16605":1588,"16606":-1,"16607":-1,"16608":-1,"16609":-1,"16610":-1,"16611":0,"16612":-1,"16613":-1,"16614":-1,"16615":-1,"16616":-1,"16617":-1,"16618":1587,"16619":-1,"16620":-1,"16621":-1,"16622":-1,"16623":-1,"16624":-1,"16625":-1,"16626":1588,"16627":-1,"16628":-1,"16629":-1,"16630":1587,"16631":-1,"16632":-1,"16633":-1,"16634":-1,"16635":-1,"16636":-1,"16637":-1,"16638":-1,"16639":-1,"16640":-1,"16641":-1,"16642":-1,"16643":-1,"16644":-1,"16645":-1,"16646":-1,"16647":0,"16648":-1,"16649":-1,"16650":-1,"16651":-1,"16652":-1,"16653":-1,"16654":-1,"16655":-1,"16656":-1,"16657":-1,"16658":-1,"16659":-1,"16660":-1,"16661":-1,"16662":-1,"16663":1587,"16664":-1,"16665":1588,"16666":0,"16667":-1,"16668":-1,"16669":-1,"16670":-1,"16671":-1,"16672":-1,"16673":-1,"16674":-1,"16675":-1,"16676":-1,"16677":-1,"16678":1588,"16679":-1,"16680":-1,"16681":-1,"16682":-1,"16683":-1,"16684":-1,"16685":-1,"16686":-1,"16687":-1,"16688":0,"16689":-1,"16690":-1,"16691":-1,"16692":-1,"16693":-1,"16694":-1,"16695":1586,"16696":-1,"16697":-1,"16698":1587,"16699":-1,"16700":-1,"16701":-1,"16702":1589,"16703":-1,"16704":1586,"16705":-1,"16706":1587,"16707":-1,"16708":0,"16709":-1,"16710":-1,"16711":-1,"16712":-1,"16713":-1,"16714":-1,"16715":1588,"16716":-1,"16717":1589,"16718":-1,"16719":-1,"16720":-1,"16721":-1,"16722":-1,"16723":-1,"16724":-1,"16725":-1,"16726":-1,"16727":1586,"16728":-1,"16729":-1,"16730":-1,"16731":-1,"16732":-1,"16733":-1,"16734":-1,"16735":-1,"16736":-1,"16737":1587,"16738":1588,"16739":-1,"16740":-1,"16741":-1,"16742":-1,"16743":-1,"16744":-1,"16745":-1,"16746":-1,"16747":-1,"16748":-1,"16749":-1,"16750":-1,"16751":-1,"16752":-1,"16753":-1,"16754":-1,"16755":-1,"16756":1587,"16757":-1,"16758":-1,"16759":-1,"16760":-1,"16761":-1,"16762":-1,"16763":-1,"16764":-1,"16765":-1,"16766":-1,"16767":-1,"16768":-1,"16769":-1,"16770":-1,"16771":-1,"16772":-1,"16773":-1,"16774":-1,"16775":-1,"16776":-1,"16777":-1,"16778":-1,"16779":-1,"16780":-1,"16781":-1,"16782":-1,"16783":-1,"16784":-1,"16785":-1,"16786":1587,"16787":-1,"16788":1588,"16789":-1,"16790":-1,"16791":-1,"16792":-1,"16793":-1,"16794":-1,"16795":-1,"16796":-1,"16797":1588,"16798":1587,"16799":-1,"16800":-1,"16801":-1,"16802":-1,"16803":-1,"16804":-1,"16805":-1,"16806":-1,"16807":-1,"16808":-1,"16809":-1,"16810":1589,"16811":-1,"16812":-1,"16813":-1,"16814":-1,"16815":-1,"16816":-1,"16817":-1,"16818":-1,"16819":-1,"16820":-1,"16821":-1,"16822":-1,"16823":-1,"16824":-1,"16825":-1,"16826":-1,"16827":-1,"16828":-1,"16829":1589,"16830":-1,"16831":-1,"16832":-1,"16833":-1,"16834":-1,"16835":-1,"16836":-1,"16837":-1,"16838":-1,"16839":-1,"16840":1588,"16841":-1,"16842":1587,"16843":-1,"16844":-1,"16845":-1,"16846":-1,"16847":0,"16848":-1,"16849":-1,"16850":-1,"16851":-1,"16852":-1,"16853":-1,"16854":-1,"16855":-1,"16856":-1,"16857":-1,"16858":-1,"16859":-1,"16860":-1,"16861":-1,"16862":-1,"16863":-1,"16864":-1,"16865":0,"16866":-1,"16867":-1,"16868":-1,"16869":-1,"16870":-1,"16871":-1,"16872":-1,"16873":-1,"16874":-1,"16875":-1,"16876":-1,"16877":-1,"16878":-1,"16879":-1,"16880":-1,"16881":1586,"16882":-1,"16883":-1,"16884":-1,"16885":-1,"16886":-1,"16887":1588,"16888":-1,"16889":-1,"16890":-1,"16891":-1,"16892":-1,"16893":-1,"16894":-1,"16895":-1,"16896":-1,"16897":-1,"16898":-1,"16899":-1,"16900":-1,"16901":-1,"16902":1588,"16903":-1,"16904":-1,"16905":1588,"16906":-1,"16907":-1,"16908":-1,"16909":-1,"16910":-1,"16911":-1,"16912":-1,"16913":-1,"16914":-1,"16915":-1,"16916":-1,"16917":1587,"16918":-1,"16919":-1,"16920":-1,"16921":-1,"16922":-1,"16923":0,"16924":-1,"16925":-1,"16926":-1,"16927":-1,"16928":-1,"16929":-1,"16930":-1,"16931":-1,"16932":-1,"16933":-1,"16934":-1,"16935":-1,"16936":-1,"16937":-1,"16938":-1,"16939":-1,"16940":-1,"16941":-1,"16942":-1,"16943":-1,"16944":-1,"16945":0,"16946":-1,"16947":-1,"16948":-1,"16949":1588,"16950":1587,"16951":1586,"16952":-1,"16953":-1,"16954":-1,"16955":0,"16956":1587,"16957":-1,"16958":-1,"16959":-1,"16960":-1,"16961":1587,"16962":-1,"16963":-1,"16964":-1,"16965":-1,"16966":-1,"16967":-1,"16968":-1,"16969":-1,"16970":-1,"16971":-1,"16972":-1,"16973":-1,"16974":-1,"16975":-1,"16976":-1,"16977":-1,"16978":-1,"16979":-1,"16980":1586,"16981":-1,"16982":-1,"16983":-1,"16984":-1,"16985":-1,"16986":-1,"16987":-1,"16988":-1,"16989":-1,"16990":1587,"16991":-1,"16992":-1,"16993":-1,"16994":1589,"16995":-1,"16996":-1,"16997":-1,"16998":-1,"16999":-1,"17000":-1,"17001":-1,"17002":-1,"17003":1588,"17004":-1,"17005":-1,"17006":-1,"17007":-1,"17008":1589,"17009":-1,"17010":-1,"17011":-1,"17012":-1,"17013":-1,"17014":-1,"17015":-1,"17016":1589,"17017":-1,"17018":-1,"17019":-1,"17020":-1,"17021":-1,"17022":-1,"17023":-1,"17024":-1,"17025":-1,"17026":-1,"17027":-1,"17028":-1,"17029":-1,"17030":-1,"17031":-1,"17032":-1,"17033":-1,"17034":-1,"17035":-1,"17036":-1,"17037":0,"17038":-1,"17039":-1,"17040":-1,"17041":-1,"17042":-1,"17043":-1,"17044":-1,"17045":-1,"17046":0,"17047":-1,"17048":-1,"17049":1586,"17050":-1,"17051":1588,"17052":-1,"17053":-1,"17054":-1,"17055":-1,"17056":-1,"17057":-1,"17058":-1,"17059":-1,"17060":-1,"17061":-1,"17062":1588,"17063":-1,"17064":-1,"17065":-1,"17066":-1,"17067":-1,"17068":-1,"17069":-1,"17070":0,"17071":-1,"17072":-1,"17073":-1,"17074":-1,"17075":-1,"17076":-1,"17077":-1,"17078":1589,"17079":-1,"17080":-1,"17081":-1,"17082":-1,"17083":-1,"17084":-1,"17085":-1,"17086":-1,"17087":-1,"17088":-1,"17089":-1,"17090":-1,"17091":-1,"17092":-1,"17093":-1,"17094":-1,"17095":-1,"17096":-1,"17097":-1,"17098":-1,"17099":-1,"17100":-1,"17101":-1,"17102":-1,"17103":1587,"17104":-1,"17105":-1,"17106":-1,"17107":-1,"17108":-1,"17109":-1,"17110":-1,"17111":-1,"17112":-1,"17113":1587,"17114":1588,"17115":-1,"17116":-1,"17117":-1,"17118":-1,"17119":-1,"17120":-1,"17121":-1,"17122":-1,"17123":-1,"17124":-1,"17125":-1,"17126":1588,"17127":-1,"17128":-1,"17129":1588,"17130":-1,"17131":1587,"17132":-1,"17133":-1,"17134":-1,"17135":0,"17136":-1,"17137":-1,"17138":-1,"17139":-1,"17140":-1,"17141":-1,"17142":-1,"17143":-1,"17144":-1,"17145":-1,"17146":-1,"17147":-1,"17148":-1,"17149":-1,"17150":-1,"17151":-1,"17152":-1,"17153":-1,"17154":-1,"17155":-1,"17156":0,"17157":-1,"17158":-1,"17159":-1,"17160":-1,"17161":-1,"17162":-1,"17163":-1,"17164":-1,"17165":-1,"17166":-1,"17167":0,"17168":-1,"17169":-1,"17170":-1,"17171":-1,"17172":-1,"17173":-1,"17174":-1,"17175":-1,"17176":0,"17177":-1,"17178":-1,"17179":-1,"17180":0,"17181":0,"17182":-1,"17183":-1,"17184":-1,"17185":-1,"17186":-1,"17187":-1,"17188":-1,"17189":-1,"17190":-1,"17191":-1,"17192":-1,"17193":-1,"17194":-1,"17195":-1,"17196":0,"17197":-1,"17198":1587,"17199":-1,"17200":-1,"17201":-1,"17202":1587,"17203":-1,"17204":-1,"17205":-1,"17206":-1,"17207":-1,"17208":-1,"17209":-1,"17210":-1,"17211":-1,"17212":-1,"17213":-1,"17214":-1,"17215":-1,"17216":-1,"17217":-1,"17218":-1,"17219":-1,"17220":1587,"17221":-1,"17222":-1,"17223":-1,"17224":1587,"17225":-1,"17226":-1,"17227":-1,"17228":-1,"17229":-1,"17230":1588,"17231":-1,"17232":-1,"17233":-1,"17234":-1,"17235":-1,"17236":-1,"17237":-1,"17238":-1,"17239":-1,"17240":0,"17241":-1,"17242":1586,"17243":1586,"17244":-1,"17245":-1,"17246":-1,"17247":-1,"17248":-1,"17249":-1,"17250":-1,"17251":-1,"17252":-1,"17253":-1,"17254":-1,"17255":-1,"17256":-1,"17257":-1,"17258":-1,"17259":1586,"17260":-1,"17261":-1,"17262":-1,"17263":-1,"17264":-1,"17265":-1,"17266":-1,"17267":-1,"17268":-1,"17269":-1,"17270":-1,"17271":-1,"17272":-1,"17273":-1,"17274":-1,"17275":1587,"17276":-1,"17277":-1,"17278":-1,"17279":-1,"17280":-1,"17281":-1,"17282":-1,"17283":0,"17284":-1,"17285":-1,"17286":-1,"17287":1587,"17288":-1,"17289":-1,"17290":0,"17291":-1,"17292":-1,"17293":1587,"17294":-1,"17295":-1,"17296":-1,"17297":-1,"17298":-1,"17299":-1,"17300":-1,"17301":-1,"17302":1587,"17303":-1,"17304":-1,"17305":-1,"17306":-1,"17307":-1,"17308":-1,"17309":-1,"17310":-1,"17311":0,"17312":0,"17313":-1,"17314":-1,"17315":-1,"17316":-1,"17317":-1,"17318":-1,"17319":-1,"17320":-1,"17321":-1,"17322":-1,"17323":-1,"17324":-1,"17325":-1,"17326":-1,"17327":-1,"17328":1587,"17329":-1,"17330":0,"17331":1588,"17332":0,"17333":-1,"17334":-1,"17335":-1,"17336":-1,"17337":-1,"17338":-1,"17339":-1,"17340":1587,"17341":-1,"17342":-1,"17343":-1,"17344":-1,"17345":-1,"17346":-1,"17347":-1,"17348":0,"17349":-1,"17350":-1,"17351":-1,"17352":-1,"17353":-1,"17354":-1,"17355":-1,"17356":-1,"17357":-1,"17358":-1,"17359":-1,"17360":-1,"17361":-1,"17362":1589,"17363":-1,"17364":-1,"17365":-1,"17366":-1,"17367":-1,"17368":-1,"17369":-1,"17370":-1,"17371":1589,"17372":-1,"17373":1586,"17374":1589,"17375":-1,"17376":-1,"17377":-1,"17378":-1,"17379":1588,"17380":-1,"17381":-1,"17382":-1,"17383":-1,"17384":-1,"17385":1587,"17386":-1,"17387":-1,"17388":-1,"17389":-1,"17390":1588,"17391":1588,"17392":-1,"17393":0,"17394":-1,"17395":-1,"17396":-1,"17397":1588,"17398":-1,"17399":-1,"17400":1588,"17401":-1,"17402":-1,"17403":-1,"17404":-1,"17405":1586,"17406":-1,"17407":-1,"17408":-1,"17409":-1,"17410":-1,"17411":-1,"17412":-1,"17413":-1,"17414":-1,"17415":-1,"17416":-1,"17417":-1,"17418":-1,"17419":1587,"17420":-1,"17421":-1,"17422":-1,"17423":-1,"17424":-1,"17425":0,"17426":-1,"17427":-1,"17428":1587,"17429":-1,"17430":-1,"17431":-1,"17432":-1,"17433":0,"17434":-1,"17435":-1,"17436":-1,"17437":-1,"17438":-1,"17439":-1,"17440":1588,"17441":-1,"17442":-1,"17443":-1,"17444":0,"17445":-1,"17446":-1,"17447":-1,"17448":-1,"17449":-1,"17450":-1,"17451":-1,"17452":-1,"17453":-1,"17454":-1,"17455":-1,"17456":0,"17457":-1,"17458":-1,"17459":-1,"17460":1587,"17461":-1,"17462":-1,"17463":-1,"17464":-1,"17465":1587,"17466":-1,"17467":-1,"17468":-1,"17469":-1,"17470":-1,"17471":-1,"17472":-1,"17473":-1,"17474":-1,"17475":-1,"17476":-1,"17477":-1,"17478":-1,"17479":-1,"17480":1589,"17481":-1,"17482":-1,"17483":-1,"17484":-1,"17485":-1,"17486":-1,"17487":1588,"17488":-1,"17489":-1,"17490":-1,"17491":-1,"17492":-1,"17493":-1,"17494":-1,"17495":-1,"17496":-1,"17497":-1,"17498":-1,"17499":-1,"17500":-1,"17501":-1,"17502":-1,"17503":-1,"17504":-1,"17505":-1,"17506":-1,"17507":-1,"17508":-1,"17509":-1,"17510":1587,"17511":-1,"17512":-1,"17513":-1,"17514":-1,"17515":-1,"17516":-1,"17517":1588,"17518":-1,"17519":-1,"17520":-1,"17521":-1,"17522":0,"17523":-1,"17524":-1,"17525":-1,"17526":-1,"17527":-1,"17528":-1,"17529":-1,"17530":-1,"17531":-1,"17532":1586,"17533":-1,"17534":-1,"17535":-1,"17536":-1,"17537":-1,"17538":-1,"17539":-1,"17540":-1,"17541":-1,"17542":-1,"17543":-1,"17544":0,"17545":1588,"17546":-1,"17547":-1,"17548":-1,"17549":-1,"17550":-1,"17551":-1,"17552":-1,"17553":-1,"17554":1586,"17555":-1,"17556":-1,"17557":-1,"17558":-1,"17559":1587,"17560":-1,"17561":1587,"17562":-1,"17563":-1,"17564":-1,"17565":-1,"17566":-1,"17567":-1,"17568":-1,"17569":1588,"17570":-1,"17571":-1,"17572":-1,"17573":-1,"17574":1589,"17575":-1,"17576":-1,"17577":-1,"17578":-1,"17579":-1,"17580":-1,"17581":-1,"17582":-1,"17583":-1,"17584":-1,"17585":-1,"17586":-1,"17587":-1,"17588":-1,"17589":-1,"17590":-1,"17591":-1,"17592":-1,"17593":1587,"17594":-1,"17595":-1,"17596":-1,"17597":-1,"17598":-1,"17599":-1,"17600":-1,"17601":1588,"17602":-1,"17603":-1,"17604":1588,"17605":-1,"17606":-1,"17607":-1,"17608":-1,"17609":1587,"17610":-1,"17611":-1,"17612":-1,"17613":-1,"17614":-1,"17615":-1,"17616":-1,"17617":1587,"17618":1586,"17619":-1,"17620":-1,"17621":-1,"17622":-1,"17623":-1,"17624":-1,"17625":-1,"17626":-1,"17627":-1,"17628":-1,"17629":-1,"17630":-1,"17631":-1,"17632":-1,"17633":-1,"17634":-1,"17635":-1,"17636":1587,"17637":-1,"17638":-1,"17639":-1,"17640":-1,"17641":-1,"17642":-1,"17643":-1,"17644":-1,"17645":-1,"17646":-1,"17647":-1,"17648":-1,"17649":-1,"17650":1588,"17651":1586,"17652":-1,"17653":-1,"17654":1589,"17655":1589,"17656":-1,"17657":-1,"17658":-1,"17659":-1,"17660":1588,"17661":-1,"17662":-1,"17663":-1,"17664":-1,"17665":-1,"17666":-1,"17667":-1,"17668":-1,"17669":1586,"17670":-1,"17671":-1,"17672":-1,"17673":-1,"17674":-1,"17675":-1,"17676":-1,"17677":-1,"17678":1588,"17679":-1,"17680":-1,"17681":-1,"17682":-1,"17683":-1,"17684":-1,"17685":1588,"17686":-1,"17687":-1,"17688":-1,"17689":1586,"17690":1587,"17691":-1,"17692":-1,"17693":-1,"17694":-1,"17695":-1,"17696":-1,"17697":-1,"17698":-1,"17699":-1,"17700":-1,"17701":-1,"17702":1589,"17703":-1,"17704":-1,"17705":-1,"17706":-1,"17707":-1,"17708":-1,"17709":-1,"17710":-1,"17711":-1,"17712":-1,"17713":-1,"17714":-1,"17715":-1,"17716":-1,"17717":-1,"17718":-1,"17719":-1,"17720":-1,"17721":1587,"17722":-1,"17723":-1,"17724":-1,"17725":-1,"17726":1587,"17727":-1,"17728":1589,"17729":1587,"17730":-1,"17731":-1,"17732":-1,"17733":-1,"17734":-1,"17735":-1,"17736":-1,"17737":-1,"17738":-1,"17739":1589,"17740":-1,"17741":-1,"17742":-1,"17743":-1,"17744":-1,"17745":-1,"17746":-1,"17747":-1,"17748":-1,"17749":-1,"17750":-1,"17751":-1,"17752":-1,"17753":-1,"17754":-1,"17755":-1,"17756":-1,"17757":-1,"17758":-1,"17759":-1,"17760":-1,"17761":-1,"17762":-1,"17763":-1,"17764":-1,"17765":-1,"17766":-1,"17767":-1,"17768":0,"17769":1588,"17770":-1,"17771":-1,"17772":-1,"17773":-1,"17774":-1,"17775":-1,"17776":-1,"17777":-1,"17778":-1,"17779":-1,"17780":-1,"17781":-1,"17782":-1,"17783":-1,"17784":-1,"17785":-1,"17786":-1,"17787":1586,"17788":-1,"17789":-1,"17790":-1,"17791":-1,"17792":-1,"17793":-1,"17794":-1,"17795":-1,"17796":-1,"17797":-1,"17798":-1,"17799":-1,"17800":1588,"17801":-1,"17802":-1,"17803":-1,"17804":-1,"17805":-1,"17806":-1,"17807":-1,"17808":1586,"17809":-1,"17810":-1,"17811":-1,"17812":0,"17813":1587,"17814":-1,"17815":0,"17816":-1,"17817":-1,"17818":-1,"17819":-1,"17820":-1,"17821":-1,"17822":-1,"17823":-1,"17824":-1,"17825":1589,"17826":-1,"17827":-1,"17828":-1,"17829":-1,"17830":-1,"17831":-1,"17832":-1,"17833":1586,"17834":-1,"17835":-1,"17836":-1,"17837":-1,"17838":-1,"17839":-1,"17840":-1,"17841":1587,"17842":-1,"17843":-1,"17844":-1,"17845":-1,"17846":-1,"17847":-1,"17848":-1,"17849":-1,"17850":-1,"17851":-1,"17852":-1,"17853":-1,"17854":-1,"17855":0,"17856":-1,"17857":-1,"17858":-1,"17859":-1,"17860":1586,"17861":0,"17862":-1,"17863":-1,"17864":-1,"17865":-1,"17866":-1,"17867":-1,"17868":-1,"17869":1586,"17870":-1,"17871":-1,"17872":-1,"17873":0,"17874":-1,"17875":0,"17876":-1,"17877":-1,"17878":0,"17879":-1,"17880":1588,"17881":-1,"17882":-1,"17883":-1,"17884":1588,"17885":-1,"17886":1587,"17887":-1,"17888":1588,"17889":-1,"17890":-1,"17891":-1,"17892":-1,"17893":-1,"17894":-1,"17895":-1,"17896":-1,"17897":-1,"17898":-1,"17899":-1,"17900":-1,"17901":-1,"17902":-1,"17903":-1,"17904":-1,"17905":-1,"17906":1588,"17907":-1,"17908":-1,"17909":-1,"17910":-1,"17911":1587,"17912":-1,"17913":-1,"17914":-1,"17915":-1,"17916":-1,"17917":-1,"17918":-1,"17919":1589,"17920":-1,"17921":1588,"17922":-1,"17923":-1,"17924":-1,"17925":-1,"17926":-1,"17927":-1,"17928":-1,"17929":1588,"17930":-1,"17931":-1,"17932":-1,"17933":1588,"17934":-1,"17935":1587,"17936":-1,"17937":-1,"17938":-1,"17939":-1,"17940":-1,"17941":1589,"17942":1586,"17943":-1,"17944":-1,"17945":-1,"17946":-1,"17947":-1,"17948":-1,"17949":1589,"17950":-1,"17951":-1,"17952":-1,"17953":-1,"17954":-1,"17955":-1,"17956":-1,"17957":-1,"17958":-1,"17959":-1,"17960":-1,"17961":-1,"17962":-1,"17963":-1,"17964":1587,"17965":-1,"17966":-1,"17967":-1,"17968":-1,"17969":-1,"17970":-1,"17971":-1,"17972":-1,"17973":-1,"17974":-1,"17975":-1,"17976":-1,"17977":-1,"17978":-1,"17979":1588,"17980":-1,"17981":-1,"17982":1587,"17983":-1,"17984":-1,"17985":-1,"17986":-1,"17987":-1,"17988":-1,"17989":1588,"17990":-1,"17991":-1,"17992":-1,"17993":-1,"17994":-1,"17995":-1,"17996":1588,"17997":-1,"17998":-1,"17999":-1,"18000":-1,"18001":-1,"18002":-1,"18003":-1,"18004":-1,"18005":-1,"18006":-1,"18007":-1,"18008":-1,"18009":-1,"18010":-1,"18011":-1,"18012":-1,"18013":-1,"18014":-1,"18015":-1,"18016":-1,"18017":-1,"18018":-1,"18019":-1,"18020":-1,"18021":-1,"18022":-1,"18023":-1,"18024":-1,"18025":-1,"18026":-1,"18027":-1,"18028":-1,"18029":-1,"18030":-1,"18031":-1,"18032":-1,"18033":-1,"18034":-1,"18035":-1,"18036":-1,"18037":-1,"18038":-1,"18039":1587,"18040":-1,"18041":-1,"18042":1586,"18043":1587,"18044":-1,"18045":-1,"18046":1586,"18047":-1,"18048":-1,"18049":-1,"18050":-1,"18051":-1,"18052":-1,"18053":-1,"18054":-1,"18055":-1,"18056":-1,"18057":1588,"18058":-1,"18059":-1,"18060":-1,"18061":-1,"18062":-1,"18063":0,"18064":1589,"18065":-1,"18066":-1,"18067":-1,"18068":-1,"18069":-1,"18070":-1,"18071":-1,"18072":-1,"18073":-1,"18074":-1,"18075":-1,"18076":-1,"18077":-1,"18078":-1,"18079":-1,"18080":-1,"18081":-1,"18082":-1,"18083":-1,"18084":-1,"18085":1587,"18086":-1,"18087":-1,"18088":-1,"18089":-1,"18090":-1,"18091":1589,"18092":-1,"18093":-1,"18094":0,"18095":-1,"18096":-1,"18097":-1,"18098":-1,"18099":-1,"18100":-1,"18101":-1,"18102":1587,"18103":-1,"18104":-1,"18105":-1,"18106":-1,"18107":-1,"18108":-1,"18109":-1,"18110":-1,"18111":-1,"18112":-1,"18113":-1,"18114":-1,"18115":-1,"18116":-1,"18117":1587,"18118":1586,"18119":1587,"18120":1588,"18121":-1,"18122":-1,"18123":1587,"18124":1586,"18125":-1,"18126":-1,"18127":-1,"18128":-1,"18129":-1,"18130":-1,"18131":-1,"18132":-1,"18133":-1,"18134":-1,"18135":-1,"18136":-1,"18137":-1,"18138":-1,"18139":-1,"18140":-1,"18141":0,"18142":-1,"18143":-1,"18144":-1,"18145":-1,"18146":-1,"18147":-1,"18148":-1,"18149":-1,"18150":-1,"18151":1588,"18152":-1,"18153":-1,"18154":-1,"18155":-1,"18156":0,"18157":1588,"18158":-1,"18159":-1,"18160":-1,"18161":-1,"18162":-1,"18163":-1,"18164":-1,"18165":-1,"18166":-1,"18167":-1,"18168":-1,"18169":0,"18170":-1,"18171":1588,"18172":-1,"18173":-1,"18174":-1,"18175":-1,"18176":-1,"18177":-1,"18178":1589,"18179":1588,"18180":-1,"18181":-1,"18182":0,"18183":-1,"18184":-1,"18185":1586,"18186":-1,"18187":-1,"18188":-1,"18189":-1,"18190":-1,"18191":-1,"18192":0,"18193":1587,"18194":-1,"18195":-1,"18196":-1,"18197":-1,"18198":-1,"18199":-1,"18200":-1,"18201":-1,"18202":-1,"18203":1589,"18204":-1,"18205":-1,"18206":-1,"18207":-1,"18208":-1,"18209":-1,"18210":-1,"18211":-1,"18212":-1,"18213":-1,"18214":-1,"18215":-1,"18216":-1,"18217":-1,"18218":-1,"18219":-1,"18220":-1,"18221":0,"18222":-1,"18223":-1,"18224":-1,"18225":-1,"18226":-1,"18227":-1,"18228":1588,"18229":-1,"18230":1587,"18231":-1,"18232":-1,"18233":1589,"18234":-1,"18235":-1,"18236":-1,"18237":-1,"18238":-1,"18239":-1,"18240":-1,"18241":-1,"18242":-1,"18243":-1,"18244":-1,"18245":-1,"18246":-1,"18247":-1,"18248":-1,"18249":-1,"18250":-1,"18251":0,"18252":0,"18253":-1,"18254":-1,"18255":-1,"18256":0,"18257":-1,"18258":-1,"18259":-1,"18260":-1,"18261":1587,"18262":-1,"18263":-1,"18264":-1,"18265":-1,"18266":-1,"18267":-1,"18268":-1,"18269":-1,"18270":-1,"18271":-1,"18272":-1,"18273":-1,"18274":-1,"18275":-1,"18276":-1,"18277":-1,"18278":1587,"18279":-1,"18280":-1,"18281":-1,"18282":-1,"18283":1588,"18284":1589,"18285":-1,"18286":-1,"18287":-1,"18288":-1,"18289":-1,"18290":-1,"18291":-1,"18292":-1,"18293":-1,"18294":-1,"18295":-1,"18296":-1,"18297":-1,"18298":-1,"18299":-1,"18300":-1,"18301":1588,"18302":-1,"18303":-1,"18304":-1,"18305":-1,"18306":-1,"18307":-1,"18308":1587,"18309":-1,"18310":1587,"18311":-1,"18312":-1,"18313":1589,"18314":-1,"18315":-1,"18316":-1,"18317":-1,"18318":-1,"18319":-1,"18320":-1,"18321":-1,"18322":-1,"18323":-1,"18324":-1,"18325":-1,"18326":-1,"18327":-1,"18328":1588,"18329":-1,"18330":-1,"18331":1587,"18332":-1,"18333":-1,"18334":-1,"18335":-1,"18336":1588,"18337":1587,"18338":-1,"18339":-1,"18340":1586,"18341":1587,"18342":-1,"18343":-1,"18344":-1,"18345":-1,"18346":-1,"18347":1589,"18348":-1,"18349":-1,"18350":-1,"18351":-1,"18352":-1,"18353":-1,"18354":-1,"18355":-1,"18356":-1,"18357":-1,"18358":-1,"18359":-1,"18360":-1,"18361":-1,"18362":-1,"18363":-1,"18364":-1,"18365":-1,"18366":-1,"18367":-1,"18368":-1,"18369":1589,"18370":-1,"18371":-1,"18372":-1,"18373":-1,"18374":-1,"18375":-1,"18376":-1,"18377":-1,"18378":-1,"18379":-1,"18380":-1,"18381":1588,"18382":1588,"18383":1587,"18384":-1,"18385":-1,"18386":-1,"18387":-1,"18388":-1,"18389":-1,"18390":-1,"18391":-1,"18392":-1,"18393":-1,"18394":-1,"18395":-1,"18396":-1,"18397":-1,"18398":-1,"18399":-1,"18400":-1,"18401":-1,"18402":-1,"18403":-1,"18404":1588,"18405":-1,"18406":-1,"18407":-1,"18408":1588,"18409":-1,"18410":1587,"18411":1587,"18412":-1,"18413":-1,"18414":-1,"18415":-1,"18416":-1,"18417":-1,"18418":-1,"18419":0,"18420":-1,"18421":-1,"18422":-1,"18423":-1,"18424":1588,"18425":-1,"18426":-1,"18427":-1,"18428":-1,"18429":0,"18430":-1,"18431":-1,"18432":-1,"18433":-1,"18434":-1,"18435":-1,"18436":-1,"18437":-1,"18438":-1,"18439":-1,"18440":-1,"18441":-1,"18442":-1,"18443":-1,"18444":-1,"18445":-1,"18446":-1,"18447":-1,"18448":-1,"18449":-1,"18450":-1,"18451":-1,"18452":-1,"18453":-1,"18454":-1,"18455":-1,"18456":-1,"18457":-1,"18458":-1,"18459":1586,"18460":-1,"18461":-1,"18462":-1,"18463":-1,"18464":-1,"18465":1586,"18466":-1,"18467":-1,"18468":-1,"18469":-1,"18470":1587,"18471":-1,"18472":-1,"18473":-1,"18474":-1,"18475":-1,"18476":-1,"18477":1588,"18478":-1,"18479":-1,"18480":-1,"18481":-1,"18482":1588,"18483":-1,"18484":-1,"18485":-1,"18486":1589,"18487":-1,"18488":1587,"18489":-1,"18490":-1,"18491":-1,"18492":-1,"18493":-1,"18494":-1,"18495":-1,"18496":1588,"18497":0,"18498":-1,"18499":-1,"18500":-1,"18501":-1,"18502":-1,"18503":-1,"18504":-1,"18505":-1,"18506":-1,"18507":-1,"18508":-1,"18509":1588,"18510":-1,"18511":-1,"18512":-1,"18513":-1,"18514":-1,"18515":-1,"18516":1588,"18517":-1,"18518":-1,"18519":-1,"18520":1588,"18521":1587,"18522":-1,"18523":-1,"18524":-1,"18525":-1,"18526":-1,"18527":-1,"18528":-1,"18529":-1,"18530":1588,"18531":-1,"18532":-1,"18533":1588,"18534":-1,"18535":-1,"18536":1587,"18537":-1,"18538":-1,"18539":-1,"18540":-1,"18541":-1,"18542":1587,"18543":-1,"18544":-1,"18545":-1,"18546":-1,"18547":-1,"18548":-1,"18549":0,"18550":-1,"18551":-1,"18552":-1,"18553":-1,"18554":-1,"18555":-1,"18556":-1,"18557":-1,"18558":-1,"18559":-1,"18560":-1,"18561":-1,"18562":-1,"18563":-1,"18564":1587,"18565":-1,"18566":-1,"18567":1587,"18568":-1,"18569":-1,"18570":-1,"18571":-1,"18572":-1,"18573":1587,"18574":-1,"18575":-1,"18576":-1,"18577":-1,"18578":-1,"18579":-1,"18580":-1,"18581":-1,"18582":-1,"18583":1588,"18584":-1,"18585":-1,"18586":-1,"18587":-1,"18588":1588,"18589":-1,"18590":-1,"18591":-1,"18592":-1,"18593":1588,"18594":1586,"18595":1587,"18596":1588,"18597":-1,"18598":-1,"18599":-1,"18600":-1,"18601":-1,"18602":-1,"18603":-1,"18604":-1,"18605":-1,"18606":-1,"18607":-1,"18608":-1,"18609":-1,"18610":0,"18611":-1,"18612":-1,"18613":-1,"18614":0,"18615":-1,"18616":-1,"18617":-1,"18618":-1,"18619":-1,"18620":-1,"18621":1589,"18622":-1,"18623":-1,"18624":-1,"18625":-1,"18626":1589,"18627":0,"18628":-1,"18629":-1,"18630":1589,"18631":1588,"18632":-1,"18633":-1,"18634":-1,"18635":1589,"18636":-1,"18637":-1,"18638":-1,"18639":-1,"18640":1587,"18641":-1,"18642":1589,"18643":-1,"18644":-1,"18645":-1,"18646":-1,"18647":-1,"18648":-1,"18649":0,"18650":-1,"18651":-1,"18652":-1,"18653":-1,"18654":-1,"18655":-1,"18656":-1,"18657":-1,"18658":-1,"18659":-1,"18660":-1,"18661":-1,"18662":-1,"18663":-1,"18664":-1,"18665":-1,"18666":-1,"18667":-1,"18668":-1,"18669":-1,"18670":-1,"18671":-1,"18672":-1,"18673":1587,"18674":-1,"18675":1588,"18676":1587,"18677":-1,"18678":1587,"18679":-1,"18680":-1,"18681":-1,"18682":1587,"18683":-1,"18684":-1,"18685":-1,"18686":-1,"18687":-1,"18688":-1,"18689":-1,"18690":-1,"18691":-1,"18692":-1,"18693":-1,"18694":-1,"18695":-1,"18696":1588,"18697":-1,"18698":-1,"18699":1587,"18700":-1,"18701":-1,"18702":-1,"18703":-1,"18704":-1,"18705":-1,"18706":-1,"18707":-1,"18708":-1,"18709":-1,"18710":-1,"18711":0,"18712":-1,"18713":-1,"18714":1587,"18715":-1,"18716":1589,"18717":-1,"18718":-1,"18719":-1,"18720":-1,"18721":-1,"18722":-1,"18723":-1,"18724":-1,"18725":-1,"18726":1587,"18727":-1,"18728":-1,"18729":-1,"18730":-1,"18731":-1,"18732":-1,"18733":-1,"18734":-1,"18735":-1,"18736":-1,"18737":-1,"18738":-1,"18739":-1,"18740":-1,"18741":-1,"18742":-1,"18743":-1,"18744":1586,"18745":-1,"18746":-1,"18747":-1,"18748":-1,"18749":-1,"18750":-1,"18751":-1,"18752":1589,"18753":1588,"18754":-1,"18755":-1,"18756":1586,"18757":-1,"18758":-1,"18759":-1,"18760":-1,"18761":1588,"18762":1587,"18763":-1,"18764":-1,"18765":1586,"18766":0,"18767":-1,"18768":-1,"18769":-1,"18770":-1,"18771":-1,"18772":-1,"18773":-1,"18774":-1,"18775":-1,"18776":-1,"18777":-1,"18778":-1,"18779":-1,"18780":-1,"18781":-1,"18782":-1,"18783":-1,"18784":-1,"18785":-1,"18786":-1,"18787":-1,"18788":-1,"18789":1586,"18790":1587,"18791":-1,"18792":-1,"18793":1588,"18794":-1,"18795":1588,"18796":-1,"18797":-1,"18798":-1,"18799":-1,"18800":-1,"18801":-1,"18802":1586,"18803":-1,"18804":-1,"18805":-1,"18806":-1,"18807":-1,"18808":-1,"18809":-1,"18810":-1,"18811":-1,"18812":-1,"18813":-1,"18814":-1,"18815":-1,"18816":-1,"18817":-1,"18818":-1,"18819":-1,"18820":-1,"18821":-1,"18822":-1,"18823":-1,"18824":-1,"18825":-1,"18826":-1,"18827":-1,"18828":0,"18829":-1,"18830":-1,"18831":-1,"18832":-1,"18833":-1,"18834":-1,"18835":-1,"18836":-1,"18837":1587,"18838":-1,"18839":-1,"18840":-1,"18841":-1,"18842":-1,"18843":-1,"18844":-1,"18845":-1,"18846":-1,"18847":-1,"18848":-1,"18849":-1,"18850":-1,"18851":-1,"18852":-1,"18853":-1,"18854":-1,"18855":1588,"18856":-1,"18857":-1,"18858":-1,"18859":-1,"18860":-1,"18861":-1,"18862":-1,"18863":-1,"18864":-1,"18865":-1,"18866":-1,"18867":-1,"18868":-1,"18869":-1,"18870":-1,"18871":-1,"18872":-1,"18873":-1,"18874":1587,"18875":1586,"18876":1588,"18877":-1,"18878":-1,"18879":-1,"18880":0,"18881":1587,"18882":-1,"18883":1587,"18884":-1,"18885":-1,"18886":-1,"18887":-1,"18888":-1,"18889":-1,"18890":0,"18891":-1,"18892":-1,"18893":1587,"18894":-1,"18895":1587,"18896":1589,"18897":-1,"18898":1588,"18899":-1,"18900":-1,"18901":-1,"18902":-1,"18903":-1,"18904":-1,"18905":-1,"18906":-1,"18907":-1,"18908":1588,"18909":-1,"18910":-1,"18911":-1,"18912":-1,"18913":-1,"18914":-1,"18915":-1,"18916":0,"18917":-1,"18918":1586,"18919":-1,"18920":-1,"18921":-1,"18922":-1,"18923":-1,"18924":1588,"18925":-1,"18926":-1,"18927":-1,"18928":-1,"18929":-1,"18930":-1,"18931":-1,"18932":-1,"18933":-1,"18934":-1,"18935":-1,"18936":-1,"18937":-1,"18938":-1,"18939":-1,"18940":1589,"18941":-1,"18942":-1,"18943":1587,"18944":-1,"18945":-1,"18946":-1,"18947":-1,"18948":-1,"18949":-1,"18950":-1,"18951":-1,"18952":-1,"18953":-1,"18954":-1,"18955":-1,"18956":-1,"18957":-1,"18958":-1,"18959":-1,"18960":1588,"18961":-1,"18962":-1,"18963":1586,"18964":-1,"18965":-1,"18966":-1,"18967":1586,"18968":-1,"18969":-1,"18970":-1,"18971":-1,"18972":-1,"18973":-1,"18974":-1,"18975":-1,"18976":-1,"18977":-1,"18978":-1,"18979":-1,"18980":-1,"18981":1586,"18982":-1,"18983":-1,"18984":1586,"18985":-1,"18986":-1,"18987":-1,"18988":-1,"18989":0,"18990":-1,"18991":-1,"18992":-1,"18993":-1,"18994":-1,"18995":-1,"18996":-1,"18997":-1,"18998":-1,"18999":-1,"19000":-1,"19001":1587,"19002":-1,"19003":1586,"19004":-1,"19005":-1,"19006":-1,"19007":-1,"19008":-1,"19009":-1,"19010":-1,"19011":-1,"19012":-1,"19013":-1,"19014":-1,"19015":-1,"19016":1588,"19017":-1,"19018":-1,"19019":-1,"19020":-1,"19021":-1,"19022":-1,"19023":-1,"19024":-1,"19025":-1,"19026":-1,"19027":-1,"19028":-1,"19029":-1,"19030":1586,"19031":-1,"19032":-1,"19033":-1,"19034":-1,"19035":-1,"19036":-1,"19037":-1,"19038":1587,"19039":-1,"19040":-1,"19041":1588,"19042":-1,"19043":1587,"19044":-1,"19045":-1,"19046":-1,"19047":-1,"19048":-1,"19049":-1,"19050":-1,"19051":-1,"19052":-1,"19053":-1,"19054":-1,"19055":1587,"19056":-1,"19057":-1,"19058":-1,"19059":-1,"19060":-1,"19061":-1,"19062":1587,"19063":1587,"19064":-1,"19065":-1,"19066":-1,"19067":1588,"19068":-1,"19069":-1,"19070":-1,"19071":-1,"19072":-1,"19073":-1,"19074":-1,"19075":-1,"19076":-1,"19077":-1,"19078":-1,"19079":0,"19080":-1,"19081":-1,"19082":-1,"19083":-1,"19084":-1,"19085":-1,"19086":-1,"19087":-1,"19088":-1,"19089":-1,"19090":-1,"19091":-1,"19092":-1,"19093":-1,"19094":1586,"19095":-1,"19096":-1,"19097":-1,"19098":-1,"19099":-1,"19100":-1,"19101":-1,"19102":1586,"19103":-1,"19104":-1,"19105":-1,"19106":-1,"19107":-1,"19108":-1,"19109":-1,"19110":-1,"19111":-1,"19112":-1,"19113":-1,"19114":-1,"19115":-1,"19116":-1,"19117":1589,"19118":-1,"19119":-1,"19120":-1,"19121":-1,"19122":1589,"19123":-1,"19124":-1,"19125":-1,"19126":-1,"19127":-1,"19128":-1,"19129":-1,"19130":-1,"19131":-1,"19132":-1,"19133":0,"19134":-1,"19135":-1,"19136":-1,"19137":-1,"19138":-1,"19139":-1,"19140":-1,"19141":-1,"19142":-1,"19143":1588,"19144":-1,"19145":1589,"19146":-1,"19147":-1,"19148":-1,"19149":-1,"19150":-1,"19151":-1,"19152":-1,"19153":-1,"19154":1588,"19155":1587,"19156":-1,"19157":1589,"19158":-1,"19159":0,"19160":-1,"19161":-1,"19162":-1,"19163":1587,"19164":-1,"19165":-1,"19166":-1,"19167":1587,"19168":-1,"19169":-1,"19170":-1,"19171":-1,"19172":-1,"19173":-1,"19174":-1,"19175":-1,"19176":-1,"19177":-1,"19178":-1,"19179":1589,"19180":-1,"19181":-1,"19182":1587,"19183":-1,"19184":-1,"19185":-1,"19186":-1,"19187":-1,"19188":-1,"19189":-1,"19190":-1,"19191":-1,"19192":-1,"19193":-1,"19194":-1,"19195":-1,"19196":-1,"19197":-1,"19198":-1,"19199":1586,"19200":1587,"19201":-1,"19202":1588,"19203":-1,"19204":-1,"19205":1588,"19206":-1,"19207":-1,"19208":-1,"19209":1589,"19210":-1,"19211":-1,"19212":-1,"19213":-1,"19214":1588,"19215":-1,"19216":-1,"19217":-1,"19218":-1,"19219":-1,"19220":1587,"19221":-1,"19222":-1,"19223":-1,"19224":-1,"19225":1587,"19226":-1,"19227":-1,"19228":-1,"19229":-1,"19230":-1,"19231":1587,"19232":-1,"19233":-1,"19234":0,"19235":1587,"19236":-1,"19237":-1,"19238":-1,"19239":-1,"19240":-1,"19241":-1,"19242":-1,"19243":-1,"19244":1588,"19245":-1,"19246":-1,"19247":-1,"19248":-1,"19249":-1,"19250":-1,"19251":-1,"19252":1587,"19253":-1,"19254":-1,"19255":-1,"19256":-1,"19257":-1,"19258":-1,"19259":-1,"19260":-1,"19261":-1,"19262":-1,"19263":-1,"19264":-1,"19265":-1,"19266":-1,"19267":-1,"19268":-1,"19269":-1,"19270":1587,"19271":-1,"19272":-1,"19273":1588,"19274":-1,"19275":1589,"19276":-1,"19277":-1,"19278":-1,"19279":-1,"19280":-1,"19281":-1,"19282":-1,"19283":-1,"19284":-1,"19285":-1,"19286":-1,"19287":-1,"19288":-1,"19289":-1,"19290":-1,"19291":1588,"19292":-1,"19293":-1,"19294":-1,"19295":-1,"19296":-1,"19297":-1,"19298":-1,"19299":-1,"19300":-1,"19301":-1,"19302":-1,"19303":-1,"19304":-1,"19305":-1,"19306":-1,"19307":-1,"19308":-1,"19309":-1,"19310":0,"19311":-1,"19312":-1,"19313":-1,"19314":-1,"19315":-1,"19316":-1,"19317":-1,"19318":-1,"19319":-1,"19320":1587,"19321":-1,"19322":-1,"19323":-1,"19324":-1,"19325":-1,"19326":-1,"19327":-1,"19328":-1,"19329":-1,"19330":-1,"19331":-1,"19332":-1,"19333":-1,"19334":-1,"19335":-1,"19336":-1,"19337":-1,"19338":-1,"19339":-1,"19340":-1,"19341":-1,"19342":-1,"19343":-1,"19344":1586,"19345":-1,"19346":-1,"19347":-1,"19348":-1,"19349":-1,"19350":-1,"19351":-1,"19352":-1,"19353":-1,"19354":-1,"19355":-1,"19356":-1,"19357":1587,"19358":-1,"19359":-1,"19360":0,"19361":-1,"19362":-1,"19363":-1,"19364":0,"19365":1589,"19366":-1,"19367":-1,"19368":-1,"19369":-1,"19370":-1,"19371":-1,"19372":-1,"19373":-1,"19374":-1,"19375":-1,"19376":1588,"19377":-1,"19378":-1,"19379":-1,"19380":-1,"19381":-1,"19382":-1,"19383":-1,"19384":-1,"19385":-1,"19386":1589,"19387":-1,"19388":-1,"19389":-1,"19390":-1,"19391":-1,"19392":-1,"19393":-1,"19394":-1,"19395":-1,"19396":-1,"19397":-1,"19398":-1,"19399":-1,"19400":-1,"19401":-1,"19402":-1,"19403":-1,"19404":-1,"19405":-1,"19406":-1,"19407":-1,"19408":-1,"19409":-1,"19410":-1,"19411":-1,"19412":-1,"19413":-1,"19414":1587,"19415":1589,"19416":-1,"19417":-1,"19418":1588,"19419":-1,"19420":-1,"19421":-1,"19422":-1,"19423":-1,"19424":-1,"19425":-1,"19426":-1,"19427":-1,"19428":-1,"19429":-1,"19430":1586,"19431":-1,"19432":-1,"19433":-1,"19434":0,"19435":1586,"19436":-1,"19437":-1,"19438":-1,"19439":-1,"19440":-1,"19441":-1,"19442":-1,"19443":-1,"19444":1586,"19445":-1,"19446":1588,"19447":-1,"19448":-1,"19449":-1,"19450":-1,"19451":-1,"19452":-1,"19453":1589,"19454":-1,"19455":1589,"19456":1588,"19457":0,"19458":-1,"19459":-1,"19460":-1,"19461":-1,"19462":-1,"19463":-1,"19464":-1,"19465":1587,"19466":-1,"19467":-1,"19468":1589,"19469":-1,"19470":-1,"19471":-1,"19472":-1,"19473":-1,"19474":-1,"19475":-1,"19476":-1,"19477":-1,"19478":-1,"19479":-1,"19480":-1,"19481":0,"19482":-1,"19483":-1,"19484":-1,"19485":-1,"19486":-1,"19487":-1,"19488":-1,"19489":-1,"19490":-1,"19491":0,"19492":-1,"19493":-1,"19494":-1,"19495":1588,"19496":-1,"19497":-1,"19498":-1,"19499":-1,"19500":-1,"19501":-1,"19502":-1,"19503":-1,"19504":-1,"19505":-1,"19506":1586,"19507":-1,"19508":1587,"19509":-1,"19510":-1,"19511":-1,"19512":-1,"19513":1588,"19514":-1,"19515":-1,"19516":1587,"19517":1588,"19518":0,"19519":-1,"19520":-1,"19521":-1,"19522":-1,"19523":1589,"19524":-1,"19525":-1,"19526":-1,"19527":-1,"19528":-1,"19529":-1,"19530":-1,"19531":-1,"19532":-1,"19533":-1,"19534":-1,"19535":-1,"19536":-1,"19537":-1,"19538":-1,"19539":1588,"19540":-1,"19541":1587,"19542":-1,"19543":-1,"19544":-1,"19545":-1,"19546":1588,"19547":-1,"19548":-1,"19549":1586,"19550":-1,"19551":-1,"19552":-1,"19553":-1,"19554":1588,"19555":-1,"19556":-1,"19557":-1,"19558":0,"19559":-1,"19560":-1,"19561":-1,"19562":-1,"19563":-1,"19564":-1,"19565":-1,"19566":-1,"19567":-1,"19568":-1,"19569":-1,"19570":-1,"19571":-1,"19572":-1,"19573":-1,"19574":-1,"19575":-1,"19576":-1,"19577":-1,"19578":-1,"19579":-1,"19580":0,"19581":-1,"19582":0,"19583":-1,"19584":0,"19585":-1,"19586":-1,"19587":-1,"19588":-1,"19589":-1,"19590":-1,"19591":-1,"19592":-1,"19593":-1,"19594":-1,"19595":-1,"19596":-1,"19597":-1,"19598":-1,"19599":-1,"19600":-1,"19601":-1,"19602":1589,"19603":-1,"19604":-1,"19605":1589,"19606":1587,"19607":1587,"19608":-1,"19609":-1,"19610":-1,"19611":-1,"19612":-1,"19613":-1,"19614":-1,"19615":-1,"19616":1586,"19617":-1,"19618":-1,"19619":-1,"19620":-1,"19621":1587,"19622":-1,"19623":1586,"19624":-1,"19625":-1,"19626":-1,"19627":-1,"19628":1587,"19629":-1,"19630":-1,"19631":1587,"19632":-1,"19633":-1,"19634":-1,"19635":-1,"19636":1587,"19637":-1,"19638":1588,"19639":-1,"19640":-1,"19641":-1,"19642":-1,"19643":-1,"19644":-1,"19645":-1,"19646":-1,"19647":1587,"19648":-1,"19649":-1,"19650":-1,"19651":-1,"19652":-1,"19653":-1,"19654":-1,"19655":-1,"19656":-1,"19657":-1,"19658":-1,"19659":-1,"19660":1589,"19661":1586,"19662":-1,"19663":-1,"19664":-1,"19665":-1,"19666":-1,"19667":-1,"19668":-1,"19669":-1,"19670":-1,"19671":-1,"19672":-1,"19673":-1,"19674":-1,"19675":-1,"19676":1587,"19677":-1,"19678":-1,"19679":1586,"19680":-1,"19681":1587,"19682":-1,"19683":-1,"19684":-1,"19685":1587,"19686":-1,"19687":-1,"19688":-1,"19689":-1,"19690":0,"19691":-1,"19692":-1,"19693":-1,"19694":-1,"19695":-1,"19696":-1,"19697":-1,"19698":-1,"19699":-1,"19700":1587,"19701":-1,"19702":-1,"19703":-1,"19704":-1,"19705":-1,"19706":-1,"19707":-1,"19708":-1,"19709":-1,"19710":-1,"19711":-1,"19712":-1,"19713":-1,"19714":-1,"19715":-1,"19716":-1,"19717":-1,"19718":-1,"19719":-1,"19720":-1,"19721":-1,"19722":1589,"19723":-1,"19724":-1,"19725":-1,"19726":-1,"19727":-1,"19728":-1,"19729":-1,"19730":-1,"19731":-1,"19732":-1,"19733":-1,"19734":-1,"19735":-1,"19736":-1,"19737":-1,"19738":-1,"19739":-1,"19740":-1,"19741":-1,"19742":-1,"19743":-1,"19744":-1,"19745":-1,"19746":-1,"19747":-1,"19748":-1,"19749":-1,"19750":-1,"19751":-1,"19752":-1,"19753":-1,"19754":-1,"19755":-1,"19756":1587,"19757":-1,"19758":-1,"19759":-1,"19760":-1,"19761":-1,"19762":-1,"19763":-1,"19764":-1,"19765":1588,"19766":-1,"19767":1587,"19768":-1,"19769":-1,"19770":-1,"19771":-1,"19772":-1,"19773":-1,"19774":1586,"19775":1588,"19776":-1,"19777":-1,"19778":1586,"19779":-1,"19780":-1,"19781":-1,"19782":-1,"19783":-1,"19784":-1,"19785":-1,"19786":-1,"19787":-1,"19788":-1,"19789":-1,"19790":-1,"19791":-1,"19792":-1,"19793":-1,"19794":-1,"19795":-1,"19796":-1,"19797":-1,"19798":-1,"19799":-1,"19800":-1,"19801":-1,"19802":-1,"19803":1588,"19804":-1,"19805":-1,"19806":-1,"19807":1587,"19808":-1,"19809":-1,"19810":-1,"19811":-1,"19812":1586,"19813":-1,"19814":-1,"19815":-1,"19816":-1,"19817":1588,"19818":-1,"19819":-1,"19820":-1,"19821":-1,"19822":-1,"19823":-1,"19824":-1,"19825":-1,"19826":-1,"19827":-1,"19828":-1,"19829":-1,"19830":-1,"19831":-1,"19832":-1,"19833":1589,"19834":-1,"19835":-1,"19836":-1,"19837":-1,"19838":-1,"19839":-1,"19840":-1,"19841":-1,"19842":-1,"19843":-1,"19844":-1,"19845":-1,"19846":1586,"19847":-1,"19848":-1,"19849":-1,"19850":-1,"19851":-1,"19852":-1,"19853":-1,"19854":1588,"19855":-1,"19856":1587,"19857":-1,"19858":-1,"19859":-1,"19860":-1,"19861":-1,"19862":-1,"19863":-1,"19864":-1,"19865":-1,"19866":-1,"19867":-1,"19868":-1,"19869":-1,"19870":0,"19871":-1,"19872":-1,"19873":-1,"19874":-1,"19875":-1,"19876":-1,"19877":-1,"19878":-1,"19879":-1,"19880":-1,"19881":1588,"19882":1587,"19883":-1,"19884":-1,"19885":-1,"19886":-1,"19887":-1,"19888":-1,"19889":1587,"19890":-1,"19891":-1,"19892":-1,"19893":-1,"19894":-1,"19895":-1,"19896":-1,"19897":-1,"19898":-1,"19899":-1,"19900":-1,"19901":-1,"19902":1588,"19903":-1,"19904":-1,"19905":-1,"19906":-1,"19907":-1,"19908":1588,"19909":-1,"19910":-1,"19911":-1,"19912":-1,"19913":-1,"19914":-1,"19915":-1,"19916":-1,"19917":-1,"19918":-1,"19919":-1,"19920":-1,"19921":-1,"19922":-1,"19923":-1,"19924":-1,"19925":-1,"19926":-1,"19927":-1,"19928":-1,"19929":1586,"19930":-1,"19931":-1,"19932":-1,"19933":1587,"19934":0,"19935":1586,"19936":-1,"19937":-1,"19938":1586,"19939":-1,"19940":1588,"19941":-1,"19942":-1,"19943":-1,"19944":-1,"19945":-1,"19946":0,"19947":-1,"19948":-1,"19949":-1,"19950":1588,"19951":-1,"19952":-1,"19953":-1,"19954":1588,"19955":-1,"19956":-1,"19957":-1,"19958":-1,"19959":-1,"19960":-1,"19961":-1,"19962":-1,"19963":-1,"19964":-1,"19965":-1,"19966":-1,"19967":-1,"19968":0,"19969":-1,"19970":-1,"19971":-1,"19972":-1,"19973":1588,"19974":-1,"19975":-1,"19976":-1,"19977":-1,"19978":-1,"19979":1588,"19980":-1,"19981":-1,"19982":-1,"19983":-1,"19984":-1,"19985":-1,"19986":-1,"19987":-1,"19988":-1,"19989":-1,"19990":-1,"19991":1588,"19992":-1,"19993":-1,"19994":-1,"19995":-1,"19996":-1,"19997":1587,"19998":-1,"19999":-1,"20000":1586,"20001":-1,"20002":-1,"20003":-1,"20004":-1,"20005":-1,"20006":-1,"20007":-1,"20008":-1,"20009":-1,"20010":1587,"20011":-1,"20012":-1,"20013":-1,"20014":-1,"20015":-1,"20016":-1,"20017":1589,"20018":-1,"20019":-1,"20020":-1,"20021":-1,"20022":-1,"20023":-1,"20024":-1,"20025":-1,"20026":-1,"20027":-1,"20028":-1,"20029":-1,"20030":-1,"20031":-1,"20032":0,"20033":-1,"20034":-1,"20035":-1,"20036":-1,"20037":-1,"20038":-1,"20039":-1,"20040":-1,"20041":-1,"20042":1588,"20043":0,"20044":1586,"20045":-1,"20046":-1,"20047":-1,"20048":-1,"20049":-1,"20050":-1,"20051":-1,"20052":-1,"20053":-1,"20054":-1,"20055":-1,"20056":-1,"20057":-1,"20058":0,"20059":-1,"20060":-1,"20061":-1,"20062":-1,"20063":-1,"20064":-1,"20065":-1,"20066":-1,"20067":1588,"20068":1588,"20069":-1,"20070":-1,"20071":-1,"20072":1588,"20073":-1,"20074":1588,"20075":-1,"20076":1587,"20077":-1,"20078":-1,"20079":1588,"20080":0,"20081":-1,"20082":1588,"20083":-1,"20084":-1,"20085":-1,"20086":-1,"20087":-1,"20088":1587,"20089":-1,"20090":-1,"20091":-1,"20092":-1,"20093":-1,"20094":-1,"20095":-1,"20096":-1,"20097":-1,"20098":-1,"20099":-1,"20100":-1,"20101":-1,"20102":-1,"20103":-1,"20104":-1,"20105":-1,"20106":-1,"20107":-1,"20108":-1,"20109":-1,"20110":-1,"20111":-1,"20112":1586,"20113":0,"20114":1588,"20115":-1,"20116":-1,"20117":-1,"20118":-1,"20119":-1,"20120":-1,"20121":-1,"20122":-1,"20123":0,"20124":-1,"20125":-1,"20126":-1,"20127":-1,"20128":1586,"20129":-1,"20130":-1,"20131":1586,"20132":-1,"20133":-1,"20134":-1,"20135":-1,"20136":-1,"20137":-1,"20138":-1,"20139":-1,"20140":-1,"20141":-1,"20142":1589,"20143":1589,"20144":-1,"20145":-1,"20146":-1,"20147":-1,"20148":-1,"20149":-1,"20150":-1,"20151":-1,"20152":-1,"20153":-1,"20154":-1,"20155":1587,"20156":-1,"20157":-1,"20158":-1,"20159":-1,"20160":-1,"20161":-1,"20162":-1,"20163":-1,"20164":-1,"20165":-1,"20166":-1,"20167":-1,"20168":-1,"20169":-1,"20170":-1,"20171":-1,"20172":-1,"20173":-1,"20174":-1,"20175":-1,"20176":-1,"20177":0,"20178":-1,"20179":-1,"20180":-1,"20181":-1,"20182":-1,"20183":-1,"20184":-1,"20185":-1,"20186":-1,"20187":-1,"20188":-1,"20189":-1,"20190":-1,"20191":-1,"20192":-1,"20193":-1,"20194":-1,"20195":-1,"20196":0,"20197":-1,"20198":-1,"20199":0,"20200":-1,"20201":-1,"20202":-1,"20203":-1,"20204":-1,"20205":-1,"20206":-1,"20207":-1,"20208":-1,"20209":-1,"20210":-1,"20211":-1,"20212":-1,"20213":-1,"20214":-1,"20215":-1,"20216":-1,"20217":-1,"20218":-1,"20219":1586,"20220":-1,"20221":-1,"20222":-1,"20223":-1,"20224":-1,"20225":-1,"20226":-1,"20227":-1,"20228":-1,"20229":-1,"20230":-1,"20231":-1,"20232":-1,"20233":-1,"20234":-1,"20235":-1,"20236":1588,"20237":-1,"20238":-1,"20239":-1,"20240":-1,"20241":-1,"20242":-1,"20243":-1,"20244":-1,"20245":1587,"20246":-1,"20247":-1,"20248":-1,"20249":-1,"20250":-1,"20251":1586,"20252":-1,"20253":-1,"20254":-1,"20255":-1,"20256":-1,"20257":-1,"20258":-1,"20259":0,"20260":-1,"20261":-1,"20262":-1,"20263":-1,"20264":1587,"20265":-1,"20266":-1,"20267":-1,"20268":-1,"20269":-1,"20270":-1,"20271":-1,"20272":-1,"20273":-1,"20274":-1,"20275":-1,"20276":-1,"20277":1588,"20278":-1,"20279":-1,"20280":-1,"20281":-1,"20282":-1,"20283":-1,"20284":1586,"20285":1588,"20286":-1,"20287":-1,"20288":-1,"20289":-1,"20290":-1,"20291":-1,"20292":1588,"20293":-1,"20294":1589,"20295":-1,"20296":-1,"20297":-1,"20298":-1,"20299":-1,"20300":-1,"20301":-1,"20302":-1,"20303":-1,"20304":-1,"20305":-1,"20306":1589,"20307":1589,"20308":-1,"20309":-1,"20310":-1,"20311":-1,"20312":-1,"20313":-1,"20314":-1,"20315":1589,"20316":-1,"20317":-1,"20318":-1,"20319":-1,"20320":-1,"20321":-1,"20322":-1,"20323":-1,"20324":-1,"20325":-1,"20326":-1,"20327":-1,"20328":-1,"20329":-1,"20330":-1,"20331":-1,"20332":-1,"20333":-1,"20334":-1,"20335":-1,"20336":-1,"20337":-1,"20338":-1,"20339":-1,"20340":-1,"20341":-1,"20342":0,"20343":-1,"20344":-1,"20345":-1,"20346":-1,"20347":1588,"20348":-1,"20349":-1,"20350":-1,"20351":-1,"20352":1589,"20353":-1,"20354":1589,"20355":-1,"20356":1588,"20357":-1,"20358":-1,"20359":-1,"20360":-1,"20361":-1,"20362":0,"20363":-1,"20364":-1,"20365":-1,"20366":-1,"20367":-1,"20368":1587,"20369":-1,"20370":-1,"20371":-1,"20372":-1,"20373":-1,"20374":-1,"20375":-1,"20376":-1,"20377":-1,"20378":-1,"20379":1589,"20380":1587,"20381":-1,"20382":1588,"20383":-1,"20384":-1,"20385":-1,"20386":-1,"20387":-1,"20388":-1,"20389":0,"20390":-1,"20391":1586,"20392":-1,"20393":-1,"20394":-1,"20395":1586,"20396":-1,"20397":-1,"20398":-1,"20399":1588,"20400":-1,"20401":-1,"20402":-1,"20403":-1,"20404":-1,"20405":-1,"20406":1587,"20407":-1,"20408":1587,"20409":-1,"20410":-1,"20411":-1,"20412":1587,"20413":-1,"20414":1587,"20415":-1,"20416":-1,"20417":-1,"20418":-1,"20419":-1,"20420":-1,"20421":1587,"20422":-1,"20423":-1,"20424":-1,"20425":-1,"20426":-1,"20427":-1,"20428":-1,"20429":-1,"20430":-1,"20431":-1,"20432":-1,"20433":-1,"20434":-1,"20435":-1,"20436":-1,"20437":-1,"20438":-1,"20439":-1,"20440":-1,"20441":-1,"20442":-1,"20443":-1,"20444":-1,"20445":-1,"20446":-1,"20447":-1,"20448":-1,"20449":-1,"20450":-1,"20451":-1,"20452":1587,"20453":-1,"20454":-1,"20455":1586,"20456":-1,"20457":1588,"20458":-1,"20459":-1,"20460":-1,"20461":1588,"20462":-1,"20463":-1,"20464":-1,"20465":-1,"20466":1587,"20467":-1,"20468":-1,"20469":-1,"20470":-1,"20471":-1,"20472":-1,"20473":1587,"20474":-1,"20475":-1,"20476":-1,"20477":-1,"20478":-1,"20479":-1,"20480":0,"20481":-1,"20482":-1,"20483":-1,"20484":-1,"20485":-1,"20486":-1,"20487":-1,"20488":1588,"20489":-1,"20490":-1,"20491":-1,"20492":-1,"20493":-1,"20494":-1,"20495":1587,"20496":-1,"20497":-1,"20498":-1,"20499":-1,"20500":-1,"20501":1588,"20502":-1,"20503":-1,"20504":-1,"20505":1588,"20506":-1,"20507":-1,"20508":-1,"20509":1587,"20510":1589,"20511":-1,"20512":-1,"20513":-1,"20514":-1,"20515":-1,"20516":1589,"20517":-1,"20518":-1,"20519":-1,"20520":1588,"20521":-1,"20522":-1,"20523":-1,"20524":1588,"20525":-1,"20526":-1,"20527":-1,"20528":0,"20529":-1,"20530":-1,"20531":-1,"20532":-1,"20533":-1,"20534":-1,"20535":-1,"20536":1588,"20537":-1,"20538":-1,"20539":-1,"20540":-1,"20541":-1,"20542":-1,"20543":1587,"20544":-1,"20545":-1,"20546":-1,"20547":-1,"20548":-1,"20549":0,"20550":-1,"20551":-1,"20552":-1,"20553":-1,"20554":1586,"20555":-1,"20556":1589,"20557":-1,"20558":-1,"20559":-1,"20560":-1,"20561":-1,"20562":-1,"20563":-1,"20564":1588,"20565":-1,"20566":-1,"20567":-1,"20568":-1,"20569":1587,"20570":-1,"20571":0,"20572":-1,"20573":-1,"20574":-1,"20575":-1,"20576":1587,"20577":-1,"20578":-1,"20579":-1,"20580":-1,"20581":-1,"20582":-1,"20583":-1,"20584":-1,"20585":-1,"20586":-1,"20587":-1,"20588":-1,"20589":-1,"20590":-1,"20591":-1,"20592":-1,"20593":-1,"20594":-1,"20595":1587,"20596":0,"20597":-1,"20598":-1,"20599":-1,"20600":-1,"20601":-1,"20602":-1,"20603":-1,"20604":-1,"20605":1589,"20606":-1,"20607":-1,"20608":-1,"20609":-1,"20610":-1,"20611":-1,"20612":1586,"20613":-1,"20614":1587,"20615":-1,"20616":-1,"20617":0,"20618":0,"20619":1588,"20620":-1,"20621":-1,"20622":-1,"20623":1588,"20624":-1,"20625":-1,"20626":-1,"20627":-1,"20628":-1,"20629":-1,"20630":1587,"20631":-1,"20632":-1,"20633":1588,"20634":-1,"20635":-1,"20636":0,"20637":-1,"20638":-1,"20639":0,"20640":-1,"20641":-1,"20642":-1,"20643":1586,"20644":-1,"20645":1586,"20646":1587,"20647":-1,"20648":-1,"20649":-1,"20650":-1,"20651":1587,"20652":-1,"20653":1587,"20654":-1,"20655":1588,"20656":-1,"20657":-1,"20658":-1,"20659":-1,"20660":-1,"20661":-1,"20662":-1,"20663":-1,"20664":1587,"20665":-1,"20666":-1,"20667":-1,"20668":-1,"20669":-1,"20670":-1,"20671":-1,"20672":-1,"20673":-1,"20674":-1,"20675":-1,"20676":1588,"20677":-1,"20678":0,"20679":-1,"20680":-1,"20681":-1,"20682":-1,"20683":-1,"20684":-1,"20685":-1,"20686":1588,"20687":-1,"20688":-1,"20689":1587,"20690":-1,"20691":-1,"20692":-1,"20693":-1,"20694":-1,"20695":-1,"20696":-1,"20697":-1,"20698":-1,"20699":-1,"20700":-1,"20701":-1,"20702":-1,"20703":-1,"20704":-1,"20705":-1,"20706":-1,"20707":-1,"20708":-1,"20709":-1,"20710":-1,"20711":-1,"20712":-1,"20713":-1,"20714":-1,"20715":-1,"20716":1586,"20717":-1,"20718":-1,"20719":-1,"20720":-1,"20721":-1,"20722":-1,"20723":1587,"20724":1588,"20725":0,"20726":0,"20727":-1,"20728":-1,"20729":-1,"20730":-1,"20731":-1,"20732":1587,"20733":1588,"20734":-1,"20735":-1,"20736":1589,"20737":-1,"20738":-1,"20739":-1,"20740":-1,"20741":-1,"20742":-1,"20743":-1,"20744":-1,"20745":-1,"20746":1586,"20747":-1,"20748":-1,"20749":-1,"20750":1589,"20751":-1,"20752":-1,"20753":-1,"20754":-1,"20755":-1,"20756":-1,"20757":-1,"20758":-1,"20759":-1,"20760":1589,"20761":1587,"20762":-1,"20763":-1,"20764":-1,"20765":0,"20766":-1,"20767":-1,"20768":1587,"20769":-1,"20770":-1,"20771":-1,"20772":-1,"20773":0,"20774":-1,"20775":-1,"20776":-1,"20777":-1,"20778":-1,"20779":-1,"20780":-1,"20781":0,"20782":1588,"20783":-1,"20784":0,"20785":-1,"20786":-1,"20787":-1,"20788":-1,"20789":-1,"20790":-1,"20791":-1,"20792":1588,"20793":-1,"20794":-1,"20795":-1,"20796":-1,"20797":-1,"20798":-1,"20799":-1,"20800":-1,"20801":-1,"20802":1588,"20803":-1,"20804":-1,"20805":-1,"20806":-1,"20807":-1,"20808":1588,"20809":-1,"20810":-1,"20811":-1,"20812":-1,"20813":1588,"20814":-1,"20815":-1,"20816":-1,"20817":-1,"20818":-1,"20819":-1,"20820":1589,"20821":-1,"20822":-1,"20823":1587,"20824":1588,"20825":-1,"20826":0,"20827":-1,"20828":-1,"20829":-1,"20830":-1,"20831":-1,"20832":-1,"20833":-1,"20834":-1,"20835":-1,"20836":-1,"20837":-1,"20838":-1,"20839":-1,"20840":-1,"20841":1587,"20842":-1,"20843":-1,"20844":-1,"20845":-1,"20846":-1,"20847":-1,"20848":-1,"20849":-1,"20850":-1,"20851":-1,"20852":-1,"20853":1588,"20854":1589,"20855":-1,"20856":-1,"20857":1589,"20858":-1,"20859":-1,"20860":-1,"20861":-1,"20862":-1,"20863":-1,"20864":1588,"20865":-1,"20866":-1,"20867":0,"20868":0,"20869":-1,"20870":-1,"20871":-1,"20872":-1,"20873":-1,"20874":0,"20875":-1,"20876":-1,"20877":-1,"20878":-1,"20879":-1,"20880":-1,"20881":-1,"20882":-1,"20883":-1,"20884":1589,"20885":-1,"20886":-1,"20887":0,"20888":0,"20889":-1,"20890":-1,"20891":-1,"20892":-1,"20893":-1,"20894":-1,"20895":1587,"20896":-1,"20897":1587,"20898":-1,"20899":-1,"20900":-1,"20901":-1,"20902":-1,"20903":-1,"20904":-1,"20905":-1,"20906":-1,"20907":1587,"20908":1589,"20909":-1,"20910":-1,"20911":-1,"20912":-1,"20913":-1,"20914":-1,"20915":-1,"20916":-1,"20917":-1,"20918":-1,"20919":-1,"20920":-1,"20921":-1,"20922":-1,"20923":-1,"20924":-1,"20925":-1,"20926":-1,"20927":-1,"20928":-1,"20929":1588,"20930":-1,"20931":-1,"20932":-1,"20933":-1,"20934":-1,"20935":-1,"20936":-1,"20937":-1,"20938":-1,"20939":-1,"20940":1587,"20941":1586,"20942":1589,"20943":-1,"20944":1586,"20945":1586,"20946":-1,"20947":-1,"20948":-1,"20949":-1,"20950":1588,"20951":-1,"20952":-1,"20953":-1,"20954":-1,"20955":0,"20956":-1,"20957":-1,"20958":1588,"20959":-1,"20960":1588,"20961":-1,"20962":-1,"20963":-1,"20964":1587,"20965":-1,"20966":1587,"20967":-1,"20968":-1,"20969":1588,"20970":-1,"20971":-1,"20972":1588,"20973":-1,"20974":-1,"20975":-1,"20976":1588,"20977":-1,"20978":-1,"20979":-1,"20980":1587,"20981":-1,"20982":-1,"20983":-1,"20984":-1,"20985":1587,"20986":-1,"20987":1589,"20988":-1,"20989":-1,"20990":-1,"20991":-1,"20992":-1,"20993":-1,"20994":1588,"20995":-1,"20996":1587,"20997":0,"20998":-1,"20999":1587,"21000":1586,"21001":-1,"21002":-1,"21003":-1,"21004":-1,"21005":-1,"21006":0,"21007":-1,"21008":-1,"21009":-1,"21010":1589,"21011":1588,"21012":-1,"21013":-1,"21014":-1,"21015":-1,"21016":-1,"21017":1589,"21018":-1,"21019":-1,"21020":-1,"21021":-1,"21022":-1,"21023":-1,"21024":-1,"21025":1588,"21026":-1,"21027":-1,"21028":-1,"21029":-1,"21030":-1,"21031":-1,"21032":-1,"21033":-1,"21034":-1,"21035":-1,"21036":-1,"21037":-1,"21038":-1,"21039":-1,"21040":1589,"21041":1589,"21042":1589,"21043":-1,"21044":-1,"21045":-1,"21046":-1,"21047":-1,"21048":-1,"21049":-1,"21050":-1,"21051":1589,"21052":0,"21053":-1,"21054":-1,"21055":-1,"21056":-1,"21057":-1,"21058":-1,"21059":-1,"21060":-1,"21061":-1,"21062":-1,"21063":-1,"21064":-1,"21065":-1,"21066":-1,"21067":-1,"21068":-1,"21069":-1,"21070":-1,"21071":-1,"21072":-1,"21073":-1,"21074":-1,"21075":1586,"21076":-1,"21077":1586,"21078":-1,"21079":-1,"21080":-1,"21081":-1,"21082":-1,"21083":1588,"21084":-1,"21085":-1,"21086":-1,"21087":1588,"21088":-1,"21089":-1,"21090":-1,"21091":-1,"21092":-1,"21093":-1,"21094":-1,"21095":-1,"21096":1588,"21097":1588,"21098":-1,"21099":-1,"21100":-1,"21101":-1,"21102":-1,"21103":-1,"21104":-1,"21105":-1,"21106":-1,"21107":-1,"21108":-1,"21109":-1,"21110":1588,"21111":-1,"21112":-1,"21113":1589,"21114":-1,"21115":-1,"21116":-1,"21117":-1,"21118":-1,"21119":-1,"21120":1587,"21121":-1,"21122":-1,"21123":-1,"21124":-1,"21125":-1,"21126":0,"21127":-1,"21128":-1,"21129":-1,"21130":-1,"21131":-1,"21132":-1,"21133":1588,"21134":0,"21135":-1,"21136":-1,"21137":-1,"21138":1587,"21139":-1,"21140":-1,"21141":-1,"21142":-1,"21143":-1,"21144":1588,"21145":-1,"21146":-1,"21147":1588,"21148":0,"21149":-1,"21150":-1,"21151":-1,"21152":-1,"21153":-1,"21154":1588,"21155":-1,"21156":-1,"21157":-1,"21158":-1,"21159":1588,"21160":-1,"21161":-1,"21162":-1,"21163":-1,"21164":-1,"21165":-1,"21166":-1,"21167":-1,"21168":-1,"21169":-1,"21170":-1,"21171":1589,"21172":-1,"21173":-1,"21174":-1,"21175":-1,"21176":1587,"21177":-1,"21178":-1,"21179":-1,"21180":-1,"21181":-1,"21182":1588,"21183":-1,"21184":-1,"21185":1586,"21186":-1,"21187":-1,"21188":1587,"21189":-1,"21190":-1,"21191":1588,"21192":-1,"21193":-1,"21194":-1,"21195":0,"21196":-1,"21197":-1,"21198":-1,"21199":-1,"21200":-1,"21201":1588,"21202":-1,"21203":-1,"21204":-1,"21205":-1,"21206":-1,"21207":-1,"21208":-1,"21209":0,"21210":-1,"21211":-1,"21212":-1,"21213":-1,"21214":-1,"21215":-1,"21216":0,"21217":-1,"21218":-1,"21219":-1,"21220":-1,"21221":-1,"21222":-1,"21223":-1,"21224":-1,"21225":1586,"21226":-1,"21227":-1,"21228":-1,"21229":-1,"21230":-1,"21231":-1,"21232":-1,"21233":-1,"21234":1587,"21235":1588,"21236":0,"21237":0,"21238":-1,"21239":-1,"21240":0,"21241":-1,"21242":-1,"21243":-1,"21244":-1,"21245":-1,"21246":-1,"21247":-1,"21248":-1,"21249":-1,"21250":-1,"21251":-1,"21252":-1,"21253":-1,"21254":-1,"21255":-1,"21256":1589,"21257":-1,"21258":-1,"21259":-1,"21260":-1,"21261":1587,"21262":-1,"21263":-1,"21264":-1,"21265":-1,"21266":-1,"21267":-1,"21268":1587,"21269":1589,"21270":-1,"21271":-1,"21272":-1,"21273":-1,"21274":-1,"21275":-1,"21276":-1,"21277":-1,"21278":-1,"21279":-1,"21280":1588,"21281":-1,"21282":-1,"21283":0,"21284":-1,"21285":-1,"21286":1587,"21287":-1,"21288":-1,"21289":1586,"21290":-1,"21291":1586,"21292":1587,"21293":-1,"21294":-1,"21295":-1,"21296":-1,"21297":-1,"21298":-1,"21299":-1,"21300":-1,"21301":1586,"21302":-1,"21303":-1,"21304":-1,"21305":-1,"21306":-1,"21307":-1,"21308":-1,"21309":1587,"21310":-1,"21311":-1,"21312":-1,"21313":-1,"21314":-1,"21315":-1,"21316":-1,"21317":-1,"21318":-1,"21319":-1,"21320":-1,"21321":-1,"21322":-1,"21323":-1,"21324":-1,"21325":-1,"21326":-1,"21327":-1,"21328":-1,"21329":-1,"21330":1587,"21331":-1,"21332":-1,"21333":-1,"21334":-1,"21335":-1,"21336":-1,"21337":-1,"21338":-1,"21339":-1,"21340":-1,"21341":1586,"21342":-1,"21343":1588,"21344":-1,"21345":-1,"21346":1588,"21347":-1,"21348":-1,"21349":-1,"21350":-1,"21351":-1,"21352":-1,"21353":-1,"21354":-1,"21355":-1,"21356":-1,"21357":-1,"21358":-1,"21359":-1,"21360":1589,"21361":-1,"21362":-1,"21363":-1,"21364":1587,"21365":-1,"21366":-1,"21367":-1,"21368":-1,"21369":-1,"21370":-1,"21371":-1,"21372":-1,"21373":-1,"21374":-1,"21375":-1,"21376":-1,"21377":-1,"21378":-1,"21379":-1,"21380":-1,"21381":-1,"21382":-1,"21383":-1,"21384":0,"21385":-1,"21386":-1,"21387":-1,"21388":-1,"21389":0,"21390":-1,"21391":-1,"21392":-1,"21393":-1,"21394":-1,"21395":-1,"21396":-1,"21397":0,"21398":-1,"21399":-1,"21400":-1,"21401":-1,"21402":-1,"21403":-1,"21404":1588,"21405":-1,"21406":-1,"21407":-1,"21408":-1,"21409":-1,"21410":-1,"21411":-1,"21412":-1,"21413":-1,"21414":-1,"21415":-1,"21416":1588,"21417":-1,"21418":-1,"21419":-1,"21420":-1,"21421":1587,"21422":-1,"21423":-1,"21424":-1,"21425":-1,"21426":-1,"21427":-1,"21428":-1,"21429":-1,"21430":-1,"21431":-1,"21432":-1,"21433":-1,"21434":-1,"21435":-1,"21436":-1,"21437":-1,"21438":-1,"21439":-1,"21440":-1,"21441":-1,"21442":-1,"21443":-1,"21444":-1,"21445":1588,"21446":-1,"21447":-1,"21448":-1,"21449":1587,"21450":-1,"21451":-1,"21452":-1,"21453":-1,"21454":-1,"21455":-1,"21456":1588,"21457":-1,"21458":-1,"21459":-1,"21460":-1,"21461":-1,"21462":-1,"21463":1587,"21464":1586,"21465":-1,"21466":-1,"21467":-1,"21468":-1,"21469":-1,"21470":-1,"21471":-1,"21472":1587,"21473":-1,"21474":-1,"21475":1589,"21476":1588,"21477":-1,"21478":-1,"21479":1589,"21480":-1,"21481":-1,"21482":-1,"21483":-1,"21484":-1,"21485":-1,"21486":-1,"21487":1587,"21488":-1,"21489":0,"21490":-1,"21491":1587,"21492":-1,"21493":-1,"21494":-1,"21495":-1,"21496":-1,"21497":-1,"21498":-1,"21499":-1,"21500":-1,"21501":-1,"21502":-1,"21503":-1,"21504":-1,"21505":-1,"21506":-1,"21507":-1,"21508":-1,"21509":1588,"21510":1587,"21511":-1,"21512":-1,"21513":-1,"21514":1588,"21515":1586,"21516":-1,"21517":-1,"21518":-1,"21519":-1,"21520":-1,"21521":1588,"21522":1587,"21523":-1,"21524":-1,"21525":-1,"21526":1589,"21527":-1,"21528":-1,"21529":-1,"21530":-1,"21531":-1,"21532":-1,"21533":1587,"21534":1588,"21535":-1,"21536":-1,"21537":1588,"21538":-1,"21539":-1,"21540":-1,"21541":-1,"21542":0,"21543":-1,"21544":-1,"21545":-1,"21546":-1,"21547":-1,"21548":-1,"21549":1588,"21550":-1,"21551":-1,"21552":-1,"21553":-1,"21554":-1,"21555":-1,"21556":-1,"21557":-1,"21558":-1,"21559":-1,"21560":1587,"21561":-1,"21562":1587,"21563":-1,"21564":-1,"21565":1589,"21566":-1,"21567":1589,"21568":-1,"21569":-1,"21570":-1,"21571":-1,"21572":-1,"21573":-1,"21574":1586,"21575":-1,"21576":-1,"21577":-1,"21578":-1,"21579":1588,"21580":-1,"21581":-1,"21582":1589,"21583":-1,"21584":-1,"21585":-1,"21586":-1,"21587":-1,"21588":-1,"21589":-1,"21590":-1,"21591":1587,"21592":-1,"21593":-1,"21594":-1,"21595":-1,"21596":1589,"21597":-1,"21598":-1,"21599":1587,"21600":-1,"21601":-1,"21602":-1,"21603":1588,"21604":-1,"21605":-1,"21606":-1,"21607":-1,"21608":-1,"21609":-1,"21610":-1,"21611":-1,"21612":-1,"21613":-1,"21614":-1,"21615":-1,"21616":1587,"21617":-1,"21618":-1,"21619":-1,"21620":-1,"21621":-1,"21622":-1,"21623":-1,"21624":-1,"21625":-1,"21626":-1,"21627":-1,"21628":-1,"21629":-1,"21630":-1,"21631":-1,"21632":-1,"21633":-1,"21634":1586,"21635":-1,"21636":-1,"21637":-1,"21638":0,"21639":-1,"21640":-1,"21641":-1,"21642":-1,"21643":0,"21644":-1,"21645":-1,"21646":-1,"21647":-1,"21648":-1,"21649":1589,"21650":-1,"21651":-1,"21652":-1,"21653":1586,"21654":-1,"21655":-1,"21656":-1,"21657":-1,"21658":-1,"21659":-1,"21660":1588,"21661":-1,"21662":-1,"21663":-1,"21664":-1,"21665":-1,"21666":-1,"21667":-1,"21668":-1,"21669":-1,"21670":-1,"21671":-1,"21672":-1,"21673":-1,"21674":-1,"21675":-1,"21676":-1,"21677":-1,"21678":-1,"21679":-1,"21680":-1,"21681":-1,"21682":-1,"21683":1586,"21684":-1,"21685":-1,"21686":-1,"21687":-1,"21688":-1,"21689":-1,"21690":-1,"21691":-1,"21692":-1,"21693":-1,"21694":1587,"21695":-1,"21696":-1,"21697":-1,"21698":-1,"21699":-1,"21700":1587,"21701":1589,"21702":1588,"21703":-1,"21704":1588,"21705":-1,"21706":1587,"21707":-1,"21708":1587,"21709":-1,"21710":0,"21711":0,"21712":-1,"21713":-1,"21714":-1,"21715":-1,"21716":-1,"21717":1588,"21718":-1,"21719":-1,"21720":-1,"21721":-1,"21722":-1,"21723":-1,"21724":-1,"21725":-1,"21726":-1,"21727":-1,"21728":-1,"21729":-1,"21730":-1,"21731":1589,"21732":-1,"21733":-1,"21734":-1,"21735":-1,"21736":-1,"21737":-1,"21738":1586,"21739":-1,"21740":-1,"21741":-1,"21742":-1,"21743":-1,"21744":-1,"21745":-1,"21746":-1,"21747":-1,"21748":-1,"21749":-1,"21750":-1,"21751":-1,"21752":-1,"21753":-1,"21754":-1,"21755":-1,"21756":-1,"21757":-1,"21758":1587,"21759":-1,"21760":-1,"21761":-1,"21762":-1,"21763":-1,"21764":-1,"21765":1589,"21766":-1,"21767":-1,"21768":-1,"21769":-1,"21770":-1,"21771":-1,"21772":-1,"21773":-1,"21774":-1,"21775":-1,"21776":-1,"21777":-1,"21778":-1,"21779":-1,"21780":-1,"21781":-1,"21782":1587,"21783":-1,"21784":1588,"21785":-1,"21786":1588,"21787":-1,"21788":-1,"21789":-1,"21790":-1,"21791":-1,"21792":-1,"21793":-1,"21794":1587,"21795":-1,"21796":-1,"21797":1588,"21798":-1,"21799":-1,"21800":-1,"21801":-1,"21802":-1,"21803":-1,"21804":1589,"21805":-1,"21806":-1,"21807":-1,"21808":-1,"21809":1588,"21810":-1,"21811":1587,"21812":-1,"21813":-1,"21814":-1,"21815":-1,"21816":-1,"21817":-1,"21818":-1,"21819":-1,"21820":-1,"21821":-1,"21822":-1,"21823":-1,"21824":0,"21825":-1,"21826":-1,"21827":-1,"21828":-1,"21829":1589,"21830":-1,"21831":-1,"21832":-1,"21833":-1,"21834":-1,"21835":-1,"21836":-1,"21837":-1,"21838":-1,"21839":-1,"21840":-1,"21841":-1,"21842":-1,"21843":-1,"21844":-1,"21845":-1,"21846":-1,"21847":-1,"21848":-1,"21849":-1,"21850":1587,"21851":-1,"21852":-1,"21853":-1,"21854":-1,"21855":-1,"21856":-1,"21857":-1,"21858":-1,"21859":-1,"21860":1589,"21861":1588,"21862":-1,"21863":1587,"21864":-1,"21865":-1,"21866":1586,"21867":-1,"21868":1586,"21869":-1,"21870":-1,"21871":-1,"21872":-1,"21873":1589,"21874":-1,"21875":-1,"21876":-1,"21877":-1,"21878":-1,"21879":-1,"21880":-1,"21881":-1,"21882":-1,"21883":-1,"21884":-1,"21885":-1,"21886":-1,"21887":-1,"21888":-1,"21889":-1,"21890":1586,"21891":-1,"21892":-1,"21893":-1,"21894":1588,"21895":1588,"21896":1588,"21897":-1,"21898":-1,"21899":-1,"21900":-1,"21901":-1,"21902":-1,"21903":0,"21904":-1,"21905":-1,"21906":-1,"21907":-1,"21908":-1,"21909":-1,"21910":-1,"21911":-1,"21912":-1,"21913":-1,"21914":0,"21915":-1,"21916":-1,"21917":-1,"21918":-1,"21919":-1,"21920":-1,"21921":-1,"21922":-1,"21923":-1,"21924":-1,"21925":-1,"21926":-1,"21927":-1,"21928":-1,"21929":-1,"21930":-1,"21931":-1,"21932":-1,"21933":-1,"21934":-1,"21935":-1,"21936":-1,"21937":-1,"21938":-1,"21939":-1,"21940":0,"21941":-1,"21942":1588,"21943":-1,"21944":-1,"21945":-1,"21946":-1,"21947":-1,"21948":-1,"21949":-1,"21950":1587,"21951":-1,"21952":-1,"21953":-1,"21954":-1,"21955":-1,"21956":-1,"21957":-1,"21958":-1,"21959":-1,"21960":0,"21961":-1,"21962":-1,"21963":-1,"21964":-1,"21965":-1,"21966":-1,"21967":-1,"21968":-1,"21969":-1,"21970":-1,"21971":-1,"21972":1588,"21973":-1,"21974":-1,"21975":-1,"21976":-1,"21977":-1,"21978":-1,"21979":-1,"21980":-1,"21981":-1,"21982":-1,"21983":-1,"21984":-1,"21985":-1,"21986":-1,"21987":1589,"21988":1586,"21989":-1,"21990":-1,"21991":0,"21992":-1,"21993":-1,"21994":-1,"21995":-1,"21996":-1,"21997":-1,"21998":-1,"21999":-1,"22000":-1,"22001":-1,"22002":-1,"22003":-1,"22004":-1,"22005":-1,"22006":-1,"22007":-1,"22008":-1,"22009":-1,"22010":-1,"22011":-1,"22012":0,"22013":-1,"22014":-1,"22015":-1,"22016":-1,"22017":-1,"22018":-1,"22019":1587,"22020":-1,"22021":1587,"22022":-1,"22023":-1,"22024":-1,"22025":-1,"22026":0,"22027":-1,"22028":-1,"22029":-1,"22030":-1,"22031":-1,"22032":-1,"22033":-1,"22034":-1,"22035":-1,"22036":-1,"22037":-1,"22038":0,"22039":-1,"22040":-1,"22041":-1,"22042":-1,"22043":1588,"22044":-1,"22045":1588,"22046":-1,"22047":-1,"22048":-1,"22049":1587,"22050":-1,"22051":-1,"22052":-1,"22053":-1,"22054":-1,"22055":-1,"22056":-1,"22057":-1,"22058":-1,"22059":-1,"22060":1588,"22061":-1,"22062":-1,"22063":1589,"22064":-1,"22065":-1,"22066":-1,"22067":-1,"22068":-1,"22069":-1,"22070":-1,"22071":-1,"22072":-1,"22073":-1,"22074":-1,"22075":1587,"22076":-1,"22077":-1,"22078":-1,"22079":-1,"22080":1588,"22081":-1,"22082":-1,"22083":-1,"22084":-1,"22085":-1,"22086":-1,"22087":-1,"22088":-1,"22089":-1,"22090":-1,"22091":-1,"22092":1589,"22093":-1,"22094":-1,"22095":-1,"22096":-1,"22097":-1,"22098":-1,"22099":1586,"22100":1589,"22101":1588,"22102":-1,"22103":-1,"22104":-1,"22105":-1,"22106":1588,"22107":-1,"22108":-1,"22109":-1,"22110":-1,"22111":-1,"22112":-1,"22113":-1,"22114":-1,"22115":-1,"22116":1587,"22117":-1,"22118":-1,"22119":-1,"22120":-1,"22121":-1,"22122":-1,"22123":-1,"22124":-1,"22125":-1,"22126":-1,"22127":1586,"22128":-1,"22129":-1,"22130":-1,"22131":-1,"22132":-1,"22133":-1,"22134":-1,"22135":-1,"22136":-1,"22137":-1,"22138":-1,"22139":-1,"22140":-1,"22141":-1,"22142":-1,"22143":-1,"22144":-1,"22145":-1,"22146":-1,"22147":-1,"22148":-1,"22149":-1,"22150":-1,"22151":-1,"22152":-1,"22153":-1,"22154":-1,"22155":-1,"22156":-1,"22157":-1,"22158":-1,"22159":-1,"22160":-1,"22161":1587,"22162":-1,"22163":1587,"22164":1587,"22165":-1,"22166":-1,"22167":-1,"22168":-1,"22169":-1,"22170":-1,"22171":-1,"22172":-1,"22173":-1,"22174":-1,"22175":-1,"22176":-1,"22177":-1,"22178":-1,"22179":-1,"22180":-1,"22181":-1,"22182":-1,"22183":-1,"22184":-1,"22185":-1,"22186":-1,"22187":-1,"22188":-1,"22189":-1,"22190":-1,"22191":-1,"22192":-1,"22193":-1,"22194":-1,"22195":-1,"22196":0,"22197":-1,"22198":-1,"22199":-1,"22200":-1,"22201":1588,"22202":-1,"22203":1587,"22204":-1,"22205":-1,"22206":-1,"22207":-1,"22208":-1,"22209":-1,"22210":-1,"22211":-1,"22212":-1,"22213":-1,"22214":-1,"22215":-1,"22216":-1,"22217":-1,"22218":1587,"22219":-1,"22220":-1,"22221":1586,"22222":-1,"22223":-1,"22224":-1,"22225":1588,"22226":1588,"22227":-1,"22228":1587,"22229":-1,"22230":1587,"22231":-1,"22232":-1,"22233":-1,"22234":1587,"22235":-1,"22236":-1,"22237":-1,"22238":-1,"22239":-1,"22240":-1,"22241":1588,"22242":-1,"22243":-1,"22244":-1,"22245":1588,"22246":-1,"22247":0,"22248":1588,"22249":-1,"22250":-1,"22251":1588,"22252":-1,"22253":-1,"22254":-1,"22255":-1,"22256":-1,"22257":1588,"22258":1586,"22259":-1,"22260":-1,"22261":-1,"22262":-1,"22263":-1,"22264":-1,"22265":-1,"22266":-1,"22267":-1,"22268":-1,"22269":-1,"22270":-1,"22271":-1,"22272":-1,"22273":-1,"22274":-1,"22275":-1,"22276":-1,"22277":-1,"22278":-1,"22279":-1,"22280":-1,"22281":-1,"22282":-1,"22283":-1,"22284":-1,"22285":-1,"22286":-1,"22287":-1,"22288":-1,"22289":-1,"22290":-1,"22291":-1,"22292":-1,"22293":-1,"22294":1588,"22295":-1,"22296":-1,"22297":1587,"22298":-1,"22299":-1,"22300":-1,"22301":-1,"22302":-1,"22303":-1,"22304":-1,"22305":-1,"22306":-1,"22307":1586,"22308":-1,"22309":-1,"22310":-1,"22311":-1,"22312":-1,"22313":-1,"22314":-1,"22315":-1,"22316":-1,"22317":-1,"22318":-1,"22319":-1,"22320":-1,"22321":-1,"22322":-1,"22323":1587,"22324":-1,"22325":-1,"22326":-1,"22327":-1,"22328":1589,"22329":-1,"22330":-1,"22331":-1,"22332":-1,"22333":-1,"22334":0,"22335":-1,"22336":-1,"22337":-1,"22338":-1,"22339":-1,"22340":-1,"22341":-1,"22342":-1,"22343":-1,"22344":-1,"22345":-1,"22346":-1,"22347":-1,"22348":-1,"22349":-1,"22350":-1,"22351":-1,"22352":-1,"22353":-1,"22354":-1,"22355":-1,"22356":-1,"22357":-1,"22358":-1,"22359":-1,"22360":-1,"22361":-1,"22362":-1,"22363":-1,"22364":-1,"22365":-1,"22366":-1,"22367":-1,"22368":-1,"22369":-1,"22370":-1,"22371":-1,"22372":-1,"22373":-1,"22374":-1,"22375":-1,"22376":-1,"22377":-1,"22378":-1,"22379":-1,"22380":-1,"22381":-1,"22382":-1,"22383":-1,"22384":-1,"22385":-1,"22386":1587,"22387":-1,"22388":-1,"22389":-1,"22390":-1,"22391":-1,"22392":0,"22393":-1,"22394":-1,"22395":-1,"22396":-1,"22397":1587,"22398":-1,"22399":-1,"22400":-1,"22401":-1,"22402":-1,"22403":-1,"22404":-1,"22405":1588,"22406":-1,"22407":-1,"22408":-1,"22409":-1,"22410":0,"22411":-1,"22412":-1,"22413":-1,"22414":-1,"22415":-1,"22416":1588,"22417":-1,"22418":-1,"22419":-1,"22420":-1,"22421":-1,"22422":-1,"22423":-1,"22424":-1,"22425":-1,"22426":1588,"22427":-1,"22428":-1,"22429":-1,"22430":-1,"22431":-1,"22432":-1,"22433":-1,"22434":-1,"22435":-1,"22436":0,"22437":-1,"22438":-1,"22439":-1,"22440":-1,"22441":-1,"22442":1587,"22443":-1,"22444":-1,"22445":1587,"22446":1587,"22447":-1,"22448":1587,"22449":-1,"22450":-1,"22451":-1,"22452":-1,"22453":-1,"22454":-1,"22455":-1,"22456":-1,"22457":-1,"22458":-1,"22459":-1,"22460":-1,"22461":-1,"22462":-1,"22463":-1,"22464":-1,"22465":-1,"22466":-1,"22467":-1,"22468":-1,"22469":1587,"22470":-1,"22471":1588,"22472":-1,"22473":0,"22474":1587,"22475":-1,"22476":-1,"22477":-1,"22478":1587,"22479":-1,"22480":-1,"22481":-1,"22482":-1,"22483":-1,"22484":1588,"22485":-1,"22486":-1,"22487":1588,"22488":-1,"22489":1587,"22490":-1,"22491":-1,"22492":-1,"22493":-1,"22494":-1,"22495":-1,"22496":-1,"22497":1588,"22498":-1,"22499":-1,"22500":1589,"22501":-1,"22502":-1,"22503":-1,"22504":-1,"22505":-1,"22506":-1,"22507":-1,"22508":-1,"22509":-1,"22510":-1,"22511":-1,"22512":-1,"22513":0,"22514":-1,"22515":-1,"22516":-1,"22517":-1,"22518":-1,"22519":-1,"22520":-1,"22521":-1,"22522":-1,"22523":-1,"22524":-1,"22525":-1,"22526":-1,"22527":-1,"22528":-1,"22529":1586,"22530":-1,"22531":-1,"22532":-1,"22533":1588,"22534":-1,"22535":1589,"22536":-1,"22537":-1,"22538":-1,"22539":-1,"22540":-1,"22541":-1,"22542":-1,"22543":-1,"22544":-1,"22545":-1,"22546":-1,"22547":-1,"22548":-1,"22549":-1,"22550":-1,"22551":-1,"22552":-1,"22553":-1,"22554":-1,"22555":-1,"22556":-1,"22557":1589,"22558":-1,"22559":-1,"22560":-1,"22561":0,"22562":-1,"22563":-1,"22564":-1,"22565":-1,"22566":-1,"22567":-1,"22568":-1,"22569":-1,"22570":-1,"22571":-1,"22572":0,"22573":1587,"22574":-1,"22575":-1,"22576":-1,"22577":-1,"22578":1588,"22579":-1,"22580":-1,"22581":-1,"22582":-1,"22583":-1,"22584":-1,"22585":-1,"22586":1587,"22587":-1,"22588":-1,"22589":-1,"22590":-1,"22591":-1,"22592":-1,"22593":-1,"22594":-1,"22595":1588,"22596":1587,"22597":1588,"22598":-1,"22599":-1,"22600":1589,"22601":-1,"22602":-1,"22603":-1,"22604":-1,"22605":-1,"22606":-1,"22607":-1,"22608":-1,"22609":-1,"22610":-1,"22611":-1,"22612":-1,"22613":-1,"22614":-1,"22615":-1,"22616":-1,"22617":-1,"22618":-1,"22619":-1,"22620":-1,"22621":-1,"22622":-1,"22623":-1,"22624":-1,"22625":-1,"22626":-1,"22627":-1,"22628":-1,"22629":1588,"22630":-1,"22631":1586,"22632":-1,"22633":-1,"22634":-1,"22635":-1,"22636":-1,"22637":-1,"22638":-1,"22639":-1,"22640":1589,"22641":-1,"22642":-1,"22643":-1,"22644":-1,"22645":-1,"22646":0,"22647":-1,"22648":-1,"22649":-1,"22650":-1,"22651":-1,"22652":-1,"22653":-1,"22654":-1,"22655":1588,"22656":-1,"22657":-1,"22658":-1,"22659":-1,"22660":-1,"22661":-1,"22662":-1,"22663":-1,"22664":-1,"22665":-1,"22666":1586,"22667":1587,"22668":-1,"22669":-1,"22670":-1,"22671":-1,"22672":-1,"22673":-1,"22674":-1,"22675":-1,"22676":-1,"22677":-1,"22678":-1,"22679":-1,"22680":-1,"22681":-1,"22682":-1,"22683":-1,"22684":-1,"22685":-1,"22686":1588,"22687":1587,"22688":-1,"22689":-1,"22690":-1,"22691":-1,"22692":-1,"22693":-1,"22694":-1,"22695":-1,"22696":-1,"22697":1587,"22698":-1,"22699":-1,"22700":1587,"22701":-1,"22702":-1,"22703":0,"22704":1587,"22705":-1,"22706":-1,"22707":1587,"22708":-1,"22709":-1,"22710":-1,"22711":-1,"22712":0,"22713":-1,"22714":-1,"22715":-1,"22716":-1,"22717":-1,"22718":-1,"22719":-1,"22720":-1,"22721":-1,"22722":1588,"22723":0,"22724":-1,"22725":1589,"22726":0,"22727":-1,"22728":-1,"22729":-1,"22730":-1,"22731":-1,"22732":-1,"22733":-1,"22734":-1,"22735":-1,"22736":-1,"22737":1587,"22738":-1,"22739":-1,"22740":-1,"22741":-1,"22742":-1,"22743":-1,"22744":-1,"22745":-1,"22746":-1,"22747":1589,"22748":-1,"22749":-1,"22750":-1,"22751":-1,"22752":-1,"22753":-1,"22754":-1,"22755":-1,"22756":-1,"22757":1588,"22758":-1,"22759":-1,"22760":-1,"22761":-1,"22762":-1,"22763":1586,"22764":-1,"22765":-1,"22766":-1,"22767":-1,"22768":-1,"22769":-1,"22770":-1,"22771":-1,"22772":-1,"22773":-1,"22774":-1,"22775":-1,"22776":-1,"22777":-1,"22778":-1,"22779":-1,"22780":-1,"22781":-1,"22782":-1,"22783":1588,"22784":-1,"22785":-1,"22786":-1,"22787":-1,"22788":-1,"22789":1587,"22790":-1,"22791":0,"22792":-1,"22793":1588,"22794":-1,"22795":-1,"22796":-1,"22797":-1,"22798":-1,"22799":-1,"22800":-1,"22801":-1,"22802":-1,"22803":-1,"22804":1587,"22805":-1,"22806":-1,"22807":-1,"22808":1587,"22809":1586,"22810":-1,"22811":-1,"22812":-1,"22813":-1,"22814":-1,"22815":-1,"22816":-1,"22817":-1,"22818":-1,"22819":-1,"22820":-1,"22821":-1,"22822":-1,"22823":-1,"22824":-1,"22825":-1,"22826":-1,"22827":1588,"22828":-1,"22829":-1,"22830":-1,"22831":-1,"22832":1589,"22833":-1,"22834":0,"22835":-1,"22836":-1,"22837":-1,"22838":-1,"22839":-1,"22840":-1,"22841":-1,"22842":-1,"22843":-1,"22844":-1,"22845":0,"22846":-1,"22847":-1,"22848":-1,"22849":1586,"22850":1588,"22851":-1,"22852":-1,"22853":-1,"22854":-1,"22855":-1,"22856":1587,"22857":-1,"22858":1587,"22859":-1,"22860":1588,"22861":-1,"22862":-1,"22863":-1,"22864":1589,"22865":-1,"22866":-1,"22867":-1,"22868":-1,"22869":1587,"22870":-1,"22871":-1,"22872":-1,"22873":-1,"22874":0,"22875":-1,"22876":-1,"22877":-1,"22878":1587,"22879":-1,"22880":-1,"22881":-1,"22882":-1,"22883":-1,"22884":-1,"22885":-1,"22886":-1,"22887":0,"22888":-1,"22889":-1,"22890":-1,"22891":-1,"22892":-1,"22893":-1,"22894":-1,"22895":0,"22896":-1,"22897":-1,"22898":-1,"22899":1589,"22900":-1,"22901":-1,"22902":-1,"22903":-1,"22904":-1,"22905":-1,"22906":-1,"22907":1588,"22908":-1,"22909":-1,"22910":1589,"22911":-1,"22912":-1,"22913":-1,"22914":-1,"22915":-1,"22916":1587,"22917":-1,"22918":-1,"22919":-1,"22920":-1,"22921":-1,"22922":-1,"22923":-1,"22924":-1,"22925":-1,"22926":-1,"22927":-1,"22928":-1,"22929":1586,"22930":-1,"22931":-1,"22932":-1,"22933":-1,"22934":-1,"22935":-1,"22936":-1,"22937":-1,"22938":-1,"22939":-1,"22940":-1,"22941":1588,"22942":1587,"22943":-1,"22944":-1,"22945":-1,"22946":-1,"22947":1589,"22948":-1,"22949":-1,"22950":-1,"22951":-1,"22952":-1,"22953":-1,"22954":-1,"22955":-1,"22956":-1,"22957":-1,"22958":-1,"22959":-1,"22960":-1,"22961":1587,"22962":1587,"22963":-1,"22964":-1,"22965":1588,"22966":-1,"22967":-1,"22968":1586,"22969":-1,"22970":-1,"22971":-1,"22972":-1,"22973":0,"22974":1587,"22975":-1,"22976":-1,"22977":-1,"22978":-1,"22979":-1,"22980":-1,"22981":-1,"22982":-1,"22983":-1,"22984":-1,"22985":-1,"22986":-1,"22987":-1,"22988":-1,"22989":-1,"22990":-1,"22991":-1,"22992":-1,"22993":-1,"22994":-1,"22995":-1,"22996":1588,"22997":-1,"22998":-1,"22999":-1,"23000":0,"23001":-1,"23002":-1,"23003":0,"23004":-1,"23005":-1,"23006":-1,"23007":1586,"23008":-1,"23009":-1,"23010":1587,"23011":-1,"23012":-1,"23013":-1,"23014":-1,"23015":-1,"23016":-1,"23017":-1,"23018":-1,"23019":-1,"23020":-1,"23021":0,"23022":-1,"23023":-1,"23024":-1,"23025":-1,"23026":-1,"23027":-1,"23028":-1,"23029":-1,"23030":-1,"23031":-1,"23032":-1,"23033":-1,"23034":-1,"23035":-1,"23036":-1,"23037":-1,"23038":-1,"23039":-1,"23040":-1,"23041":1589,"23042":-1,"23043":-1,"23044":1586,"23045":-1,"23046":-1,"23047":-1,"23048":-1,"23049":-1,"23050":-1,"23051":-1,"23052":-1,"23053":-1,"23054":-1,"23055":-1,"23056":-1,"23057":1587,"23058":-1,"23059":-1,"23060":-1,"23061":-1,"23062":-1,"23063":-1,"23064":-1,"23065":-1,"23066":-1,"23067":-1,"23068":-1,"23069":-1,"23070":-1,"23071":1587,"23072":-1,"23073":-1,"23074":-1,"23075":-1,"23076":-1,"23077":-1,"23078":-1,"23079":0,"23080":-1,"23081":1588,"23082":-1,"23083":-1,"23084":-1,"23085":-1,"23086":-1,"23087":-1,"23088":-1,"23089":-1,"23090":-1,"23091":-1,"23092":-1,"23093":1587,"23094":-1,"23095":1586,"23096":-1,"23097":1587,"23098":-1,"23099":-1,"23100":-1,"23101":-1,"23102":-1,"23103":-1,"23104":-1,"23105":-1,"23106":-1,"23107":-1,"23108":-1,"23109":1587,"23110":-1,"23111":-1,"23112":0,"23113":-1,"23114":-1,"23115":-1,"23116":-1,"23117":-1,"23118":-1,"23119":-1,"23120":-1,"23121":-1,"23122":-1,"23123":-1,"23124":-1,"23125":-1,"23126":-1,"23127":-1,"23128":-1,"23129":-1,"23130":1586,"23131":-1,"23132":-1,"23133":-1,"23134":1587,"23135":1589,"23136":-1,"23137":-1,"23138":-1,"23139":-1,"23140":-1,"23141":-1,"23142":-1,"23143":-1,"23144":-1,"23145":-1,"23146":-1,"23147":-1,"23148":-1,"23149":1587,"23150":1586,"23151":-1,"23152":-1,"23153":1589,"23154":-1,"23155":-1,"23156":-1,"23157":-1,"23158":0,"23159":-1,"23160":-1,"23161":-1,"23162":-1,"23163":-1,"23164":-1,"23165":-1,"23166":-1,"23167":-1,"23168":-1,"23169":-1,"23170":-1,"23171":-1,"23172":1589,"23173":-1,"23174":0,"23175":-1,"23176":-1,"23177":-1,"23178":-1,"23179":0,"23180":-1,"23181":-1,"23182":-1,"23183":1586,"23184":-1,"23185":-1,"23186":-1,"23187":-1,"23188":1588,"23189":-1,"23190":-1,"23191":-1,"23192":-1,"23193":-1,"23194":-1,"23195":-1,"23196":-1,"23197":-1,"23198":1588,"23199":-1,"23200":-1,"23201":-1,"23202":-1,"23203":-1,"23204":-1,"23205":0,"23206":1587,"23207":-1,"23208":-1,"23209":-1,"23210":-1,"23211":-1,"23212":-1,"23213":-1,"23214":-1,"23215":-1,"23216":-1,"23217":-1,"23218":-1,"23219":-1,"23220":-1,"23221":-1,"23222":-1,"23223":-1,"23224":0,"23225":-1,"23226":-1,"23227":-1,"23228":-1,"23229":-1,"23230":-1,"23231":-1,"23232":-1,"23233":-1,"23234":-1,"23235":1587,"23236":-1,"23237":-1,"23238":-1,"23239":-1,"23240":-1,"23241":-1,"23242":-1,"23243":-1,"23244":-1,"23245":-1,"23246":-1,"23247":-1,"23248":-1,"23249":-1,"23250":-1,"23251":-1,"23252":-1,"23253":-1,"23254":-1,"23255":-1,"23256":1586,"23257":1588,"23258":-1,"23259":-1,"23260":-1,"23261":-1,"23262":-1,"23263":1589,"23264":-1,"23265":-1,"23266":-1,"23267":-1,"23268":-1,"23269":1587,"23270":-1,"23271":-1,"23272":-1,"23273":1586,"23274":-1,"23275":-1,"23276":-1,"23277":-1,"23278":-1,"23279":-1,"23280":-1,"23281":-1,"23282":1587,"23283":1588,"23284":-1,"23285":-1,"23286":-1,"23287":1588,"23288":-1,"23289":-1,"23290":-1,"23291":-1,"23292":-1,"23293":-1,"23294":-1,"23295":-1,"23296":-1,"23297":-1,"23298":-1,"23299":-1,"23300":-1,"23301":-1,"23302":-1,"23303":-1,"23304":-1,"23305":-1,"23306":-1,"23307":1589,"23308":1587,"23309":-1,"23310":-1,"23311":-1,"23312":-1,"23313":-1,"23314":1587,"23315":-1,"23316":0,"23317":-1,"23318":-1,"23319":-1,"23320":-1,"23321":-1,"23322":-1,"23323":-1,"23324":-1,"23325":-1,"23326":-1,"23327":-1,"23328":-1,"23329":-1,"23330":-1,"23331":1586,"23332":-1,"23333":-1,"23334":-1,"23335":-1,"23336":-1,"23337":1589,"23338":-1,"23339":-1,"23340":-1,"23341":-1,"23342":-1,"23343":-1,"23344":-1,"23345":1586,"23346":-1,"23347":-1,"23348":-1,"23349":-1,"23350":-1,"23351":-1,"23352":-1,"23353":-1,"23354":-1,"23355":-1,"23356":-1,"23357":-1,"23358":-1,"23359":-1,"23360":-1,"23361":-1,"23362":-1,"23363":-1,"23364":-1,"23365":-1,"23366":-1,"23367":-1,"23368":-1,"23369":-1,"23370":-1,"23371":-1,"23372":-1,"23373":-1,"23374":1588,"23375":1587,"23376":-1,"23377":-1,"23378":-1,"23379":-1,"23380":-1,"23381":1588,"23382":-1,"23383":-1,"23384":-1,"23385":-1,"23386":-1,"23387":0,"23388":-1,"23389":-1,"23390":-1,"23391":-1,"23392":-1,"23393":-1,"23394":-1,"23395":-1,"23396":-1,"23397":-1,"23398":-1,"23399":-1,"23400":-1,"23401":-1,"23402":-1,"23403":-1,"23404":-1,"23405":-1,"23406":-1,"23407":0,"23408":-1,"23409":-1,"23410":-1,"23411":-1,"23412":-1,"23413":-1,"23414":-1,"23415":-1,"23416":-1,"23417":-1,"23418":-1,"23419":-1,"23420":-1,"23421":-1,"23422":-1,"23423":-1,"23424":-1,"23425":-1,"23426":-1,"23427":-1,"23428":-1,"23429":-1,"23430":-1,"23431":-1,"23432":-1,"23433":-1,"23434":-1,"23435":-1,"23436":-1,"23437":-1,"23438":-1,"23439":-1,"23440":-1,"23441":-1,"23442":-1,"23443":-1,"23444":0,"23445":-1,"23446":-1,"23447":-1,"23448":-1,"23449":-1,"23450":-1,"23451":-1,"23452":-1,"23453":-1,"23454":-1,"23455":-1,"23456":-1,"23457":1589,"23458":-1,"23459":-1,"23460":-1,"23461":-1,"23462":-1,"23463":-1,"23464":-1,"23465":-1,"23466":-1,"23467":-1,"23468":-1,"23469":1586,"23470":-1,"23471":-1,"23472":-1,"23473":-1,"23474":-1,"23475":-1,"23476":-1,"23477":-1,"23478":-1,"23479":0,"23480":-1,"23481":-1,"23482":-1,"23483":-1,"23484":1589,"23485":1587,"23486":-1,"23487":-1,"23488":-1,"23489":-1,"23490":-1,"23491":-1,"23492":-1,"23493":-1,"23494":0,"23495":-1,"23496":-1,"23497":-1,"23498":-1,"23499":-1,"23500":-1,"23501":-1,"23502":-1,"23503":1588,"23504":-1,"23505":-1,"23506":-1,"23507":-1,"23508":-1,"23509":-1,"23510":-1,"23511":1589,"23512":-1,"23513":-1,"23514":1586,"23515":-1,"23516":-1,"23517":-1,"23518":-1,"23519":-1,"23520":-1,"23521":-1,"23522":-1,"23523":-1,"23524":-1,"23525":-1,"23526":1588,"23527":-1,"23528":-1,"23529":-1,"23530":-1,"23531":-1,"23532":-1,"23533":-1,"23534":-1,"23535":1589,"23536":1587,"23537":-1,"23538":-1,"23539":-1,"23540":1589,"23541":-1,"23542":-1,"23543":-1,"23544":-1,"23545":-1,"23546":-1,"23547":-1,"23548":-1,"23549":-1,"23550":-1,"23551":-1,"23552":-1,"23553":-1,"23554":-1,"23555":-1,"23556":1587,"23557":-1,"23558":0,"23559":-1,"23560":0,"23561":1587,"23562":-1,"23563":-1,"23564":-1,"23565":-1,"23566":-1,"23567":-1,"23568":-1,"23569":-1,"23570":-1,"23571":-1,"23572":-1,"23573":-1,"23574":-1,"23575":-1,"23576":-1,"23577":1586,"23578":-1,"23579":-1,"23580":-1,"23581":-1,"23582":-1,"23583":-1,"23584":-1,"23585":1588,"23586":-1,"23587":1588,"23588":-1,"23589":-1,"23590":-1,"23591":-1,"23592":-1,"23593":-1,"23594":-1,"23595":-1,"23596":0,"23597":-1,"23598":1588,"23599":-1,"23600":-1,"23601":-1,"23602":-1,"23603":-1,"23604":-1,"23605":-1,"23606":-1,"23607":1589,"23608":-1,"23609":1586,"23610":1586,"23611":-1,"23612":1586,"23613":-1,"23614":-1,"23615":-1,"23616":-1,"23617":-1,"23618":-1,"23619":-1,"23620":-1,"23621":-1,"23622":0,"23623":-1,"23624":0,"23625":-1,"23626":-1,"23627":-1,"23628":-1,"23629":-1,"23630":-1,"23631":-1,"23632":-1,"23633":-1,"23634":-1,"23635":-1,"23636":-1,"23637":-1,"23638":-1,"23639":-1,"23640":0,"23641":-1,"23642":-1,"23643":-1,"23644":1586,"23645":-1,"23646":-1,"23647":-1,"23648":-1,"23649":-1,"23650":-1,"23651":-1,"23652":-1,"23653":-1,"23654":1588,"23655":0,"23656":0,"23657":-1,"23658":-1,"23659":-1,"23660":-1,"23661":-1,"23662":-1,"23663":-1,"23664":1589,"23665":1588,"23666":1588,"23667":-1,"23668":1586,"23669":1587,"23670":1587,"23671":-1,"23672":-1,"23673":0,"23674":-1,"23675":-1,"23676":-1,"23677":-1,"23678":-1,"23679":-1,"23680":-1,"23681":1588,"23682":-1,"23683":-1,"23684":-1,"23685":1588,"23686":-1,"23687":-1,"23688":-1,"23689":-1,"23690":-1,"23691":-1,"23692":-1,"23693":-1,"23694":-1,"23695":-1,"23696":-1,"23697":-1,"23698":-1,"23699":-1,"23700":-1,"23701":-1,"23702":-1,"23703":-1,"23704":-1,"23705":-1,"23706":-1,"23707":-1,"23708":1588,"23709":-1,"23710":-1,"23711":0,"23712":-1,"23713":-1,"23714":-1,"23715":-1,"23716":-1,"23717":-1,"23718":-1,"23719":-1,"23720":-1,"23721":-1,"23722":-1,"23723":1589,"23724":-1,"23725":-1,"23726":0,"23727":-1,"23728":-1,"23729":-1,"23730":-1,"23731":-1,"23732":1587,"23733":1587,"23734":-1,"23735":-1,"23736":1586,"23737":-1,"23738":-1,"23739":-1,"23740":-1,"23741":-1,"23742":-1,"23743":-1,"23744":-1,"23745":-1,"23746":-1,"23747":-1,"23748":-1,"23749":-1,"23750":-1,"23751":-1,"23752":-1,"23753":-1,"23754":-1,"23755":-1,"23756":-1,"23757":-1,"23758":-1,"23759":-1,"23760":-1,"23761":-1,"23762":-1,"23763":-1,"23764":-1,"23765":-1,"23766":1587,"23767":-1,"23768":-1,"23769":-1,"23770":-1,"23771":-1,"23772":-1,"23773":-1,"23774":-1,"23775":-1,"23776":-1,"23777":-1,"23778":-1,"23779":-1,"23780":-1,"23781":-1,"23782":-1,"23783":-1,"23784":-1,"23785":-1,"23786":-1,"23787":-1,"23788":-1,"23789":1588,"23790":-1,"23791":-1,"23792":-1,"23793":-1,"23794":0,"23795":1588,"23796":-1,"23797":-1,"23798":-1,"23799":-1,"23800":-1,"23801":-1,"23802":-1,"23803":1587,"23804":-1,"23805":-1,"23806":-1,"23807":-1,"23808":1587,"23809":0,"23810":-1,"23811":-1,"23812":-1,"23813":0,"23814":1587,"23815":-1,"23816":-1,"23817":-1,"23818":-1,"23819":-1,"23820":1586,"23821":1587,"23822":-1,"23823":1587,"23824":-1,"23825":-1,"23826":-1,"23827":1588,"23828":-1,"23829":-1,"23830":1587,"23831":-1,"23832":-1,"23833":-1,"23834":-1,"23835":-1,"23836":1586,"23837":-1,"23838":-1,"23839":-1,"23840":-1,"23841":-1,"23842":-1,"23843":-1,"23844":-1,"23845":-1,"23846":-1,"23847":-1,"23848":-1,"23849":-1,"23850":1588,"23851":-1,"23852":-1,"23853":-1,"23854":-1,"23855":-1,"23856":-1,"23857":-1,"23858":-1,"23859":-1,"23860":-1,"23861":1588,"23862":-1,"23863":-1,"23864":-1,"23865":-1,"23866":1588,"23867":1589,"23868":0,"23869":-1,"23870":1587,"23871":-1,"23872":-1,"23873":-1,"23874":-1,"23875":-1,"23876":-1,"23877":-1,"23878":1586,"23879":-1,"23880":1589,"23881":-1,"23882":-1,"23883":-1,"23884":-1,"23885":-1,"23886":-1,"23887":1586,"23888":-1,"23889":-1,"23890":-1,"23891":-1,"23892":-1,"23893":-1,"23894":-1,"23895":-1,"23896":-1,"23897":-1,"23898":0,"23899":-1,"23900":-1,"23901":-1,"23902":-1,"23903":1588,"23904":-1,"23905":-1,"23906":-1,"23907":-1,"23908":-1,"23909":-1,"23910":-1,"23911":1589,"23912":-1,"23913":1586,"23914":1588,"23915":1587,"23916":-1,"23917":-1,"23918":1586,"23919":-1,"23920":-1,"23921":-1,"23922":-1,"23923":-1,"23924":-1,"23925":-1,"23926":-1,"23927":-1,"23928":1587,"23929":-1,"23930":-1,"23931":-1,"23932":-1,"23933":-1,"23934":-1,"23935":-1,"23936":1589,"23937":-1,"23938":-1,"23939":-1,"23940":-1,"23941":-1,"23942":1587,"23943":-1,"23944":-1,"23945":-1,"23946":-1,"23947":-1,"23948":-1,"23949":-1,"23950":-1,"23951":-1,"23952":0,"23953":-1,"23954":-1,"23955":-1,"23956":-1,"23957":-1,"23958":-1,"23959":-1,"23960":-1,"23961":-1,"23962":1588,"23963":-1,"23964":-1,"23965":-1,"23966":-1,"23967":-1,"23968":-1,"23969":-1,"23970":1586,"23971":-1,"23972":-1,"23973":-1,"23974":-1,"23975":-1,"23976":-1,"23977":-1,"23978":-1,"23979":-1,"23980":-1,"23981":-1,"23982":-1,"23983":-1,"23984":-1,"23985":-1,"23986":-1,"23987":-1,"23988":-1,"23989":-1,"23990":1589,"23991":-1,"23992":1587,"23993":-1,"23994":-1,"23995":-1,"23996":-1,"23997":-1,"23998":-1,"23999":-1,"24000":-1,"24001":-1,"24002":-1,"24003":-1,"24004":-1,"24005":1586,"24006":-1,"24007":1589,"24008":-1,"24009":-1,"24010":0,"24011":-1,"24012":-1,"24013":-1,"24014":-1,"24015":1586,"24016":-1,"24017":-1,"24018":-1,"24019":-1,"24020":-1,"24021":-1,"24022":0,"24023":-1,"24024":-1,"24025":-1,"24026":1586,"24027":-1,"24028":-1,"24029":-1,"24030":1588,"24031":1587,"24032":-1,"24033":-1,"24034":-1,"24035":-1,"24036":-1,"24037":-1,"24038":-1,"24039":-1,"24040":-1,"24041":-1,"24042":-1,"24043":0,"24044":-1,"24045":-1,"24046":-1,"24047":-1,"24048":-1,"24049":1586,"24050":-1,"24051":-1,"24052":-1,"24053":-1,"24054":-1,"24055":0,"24056":-1,"24057":-1,"24058":-1,"24059":-1,"24060":-1,"24061":-1,"24062":-1,"24063":-1,"24064":-1,"24065":-1,"24066":-1,"24067":-1,"24068":-1,"24069":-1,"24070":-1,"24071":-1,"24072":-1,"24073":-1,"24074":-1,"24075":-1,"24076":-1,"24077":-1,"24078":-1,"24079":1587,"24080":-1,"24081":1588,"24082":-1,"24083":-1,"24084":-1,"24085":-1,"24086":-1,"24087":-1,"24088":1587,"24089":-1,"24090":-1,"24091":1587,"24092":1588,"24093":-1,"24094":-1,"24095":-1,"24096":-1,"24097":1589,"24098":-1,"24099":-1,"24100":-1,"24101":1589,"24102":-1,"24103":1588,"24104":-1,"24105":-1,"24106":1586,"24107":-1,"24108":-1,"24109":1587,"24110":-1,"24111":-1,"24112":-1,"24113":-1,"24114":-1,"24115":-1,"24116":-1,"24117":-1,"24118":1588,"24119":-1,"24120":-1,"24121":-1,"24122":-1,"24123":-1,"24124":-1,"24125":-1,"24126":-1,"24127":1589,"24128":1586,"24129":-1,"24130":-1,"24131":-1,"24132":-1,"24133":-1,"24134":1586,"24135":0,"24136":1587,"24137":1588,"24138":-1,"24139":-1,"24140":1587,"24141":-1,"24142":0,"24143":-1,"24144":1587,"24145":-1,"24146":-1,"24147":-1,"24148":-1,"24149":1587,"24150":-1,"24151":-1,"24152":1588,"24153":1589,"24154":-1,"24155":-1,"24156":-1,"24157":-1,"24158":-1,"24159":-1,"24160":-1,"24161":-1,"24162":-1,"24163":1589,"24164":-1,"24165":-1,"24166":1587,"24167":-1,"24168":-1,"24169":-1,"24170":-1,"24171":1587,"24172":-1,"24173":-1,"24174":1588,"24175":-1,"24176":-1,"24177":-1,"24178":-1,"24179":1588,"24180":1589,"24181":-1,"24182":-1,"24183":-1,"24184":1586,"24185":-1,"24186":-1,"24187":-1,"24188":1586,"24189":-1,"24190":-1,"24191":-1,"24192":-1,"24193":-1,"24194":1589,"24195":-1,"24196":-1,"24197":1587,"24198":-1,"24199":-1,"24200":-1,"24201":-1,"24202":-1,"24203":-1,"24204":-1,"24205":-1,"24206":-1,"24207":-1,"24208":-1,"24209":1587,"24210":-1,"24211":1588,"24212":-1,"24213":-1,"24214":-1,"24215":-1,"24216":1589,"24217":1587,"24218":-1,"24219":1589,"24220":-1,"24221":-1,"24222":1589,"24223":-1,"24224":-1,"24225":-1,"24226":-1,"24227":0,"24228":1588,"24229":-1,"24230":1588,"24231":-1,"24232":-1,"24233":-1,"24234":-1,"24235":-1,"24236":1588,"24237":-1,"24238":-1,"24239":-1,"24240":-1,"24241":-1,"24242":-1,"24243":-1,"24244":-1,"24245":-1,"24246":1589,"24247":-1,"24248":-1,"24249":-1,"24250":1589,"24251":-1,"24252":-1,"24253":-1,"24254":-1,"24255":-1,"24256":-1,"24257":-1,"24258":-1,"24259":1586,"24260":-1,"24261":-1,"24262":-1,"24263":-1,"24264":0,"24265":-1,"24266":-1,"24267":-1,"24268":-1,"24269":-1,"24270":-1,"24271":-1,"24272":1587,"24273":1587,"24274":-1,"24275":-1,"24276":-1,"24277":-1,"24278":-1,"24279":-1,"24280":-1,"24281":-1,"24282":-1,"24283":-1,"24284":-1,"24285":-1,"24286":0,"24287":-1,"24288":-1,"24289":-1,"24290":-1,"24291":-1,"24292":-1,"24293":-1,"24294":-1,"24295":-1,"24296":-1,"24297":-1,"24298":-1,"24299":-1,"24300":0,"24301":1589,"24302":-1,"24303":-1,"24304":-1,"24305":-1,"24306":-1,"24307":-1,"24308":-1,"24309":-1,"24310":-1,"24311":-1,"24312":-1,"24313":-1,"24314":-1,"24315":1588,"24316":-1,"24317":-1,"24318":-1,"24319":-1,"24320":-1,"24321":0,"24322":-1,"24323":-1,"24324":-1,"24325":1588,"24326":-1,"24327":-1,"24328":-1,"24329":-1,"24330":-1,"24331":-1,"24332":-1,"24333":-1,"24334":-1,"24335":1589,"24336":-1,"24337":-1,"24338":-1,"24339":-1,"24340":-1,"24341":-1,"24342":-1,"24343":-1,"24344":0,"24345":-1,"24346":1587,"24347":-1,"24348":-1,"24349":-1,"24350":-1,"24351":-1,"24352":-1,"24353":-1,"24354":-1,"24355":1589,"24356":-1,"24357":-1,"24358":1589,"24359":-1,"24360":-1,"24361":1588,"24362":-1,"24363":-1,"24364":-1,"24365":-1,"24366":-1,"24367":-1,"24368":-1,"24369":-1,"24370":-1,"24371":-1,"24372":-1,"24373":0,"24374":-1,"24375":-1,"24376":-1,"24377":-1,"24378":-1,"24379":-1,"24380":-1,"24381":-1,"24382":-1,"24383":0,"24384":-1,"24385":-1,"24386":-1,"24387":-1,"24388":-1,"24389":-1,"24390":1588,"24391":-1,"24392":-1,"24393":-1,"24394":-1,"24395":-1,"24396":-1,"24397":1587,"24398":-1,"24399":-1,"24400":-1,"24401":1587,"24402":-1,"24403":-1,"24404":1588,"24405":-1,"24406":1587,"24407":-1,"24408":1586,"24409":-1,"24410":-1,"24411":-1,"24412":1589,"24413":-1,"24414":-1,"24415":-1,"24416":-1,"24417":-1,"24418":-1,"24419":-1,"24420":-1,"24421":-1,"24422":-1,"24423":-1,"24424":-1,"24425":-1,"24426":-1,"24427":0,"24428":-1,"24429":-1,"24430":1587,"24431":-1,"24432":-1,"24433":-1,"24434":-1,"24435":-1,"24436":-1,"24437":-1,"24438":-1,"24439":-1,"24440":1589,"24441":-1,"24442":-1,"24443":-1,"24444":1589,"24445":1588,"24446":0,"24447":1589,"24448":1587,"24449":-1,"24450":-1,"24451":-1,"24452":-1,"24453":-1,"24454":0,"24455":-1,"24456":-1,"24457":1587,"24458":-1,"24459":-1,"24460":-1,"24461":1587,"24462":-1,"24463":-1,"24464":1588,"24465":-1,"24466":1588,"24467":-1,"24468":-1,"24469":-1,"24470":-1,"24471":-1,"24472":-1,"24473":-1,"24474":1586,"24475":1588,"24476":-1,"24477":1588,"24478":-1,"24479":-1,"24480":-1,"24481":-1,"24482":-1,"24483":-1,"24484":-1,"24485":-1,"24486":-1,"24487":-1,"24488":-1,"24489":-1,"24490":-1,"24491":-1,"24492":1588,"24493":-1,"24494":-1,"24495":-1,"24496":1588,"24497":-1,"24498":-1,"24499":-1,"24500":-1,"24501":-1,"24502":-1,"24503":-1,"24504":-1,"24505":-1,"24506":-1,"24507":-1,"24508":-1,"24509":-1,"24510":-1,"24511":-1,"24512":-1,"24513":1589,"24514":-1,"24515":-1,"24516":-1,"24517":-1,"24518":-1,"24519":-1,"24520":-1,"24521":-1,"24522":-1,"24523":-1,"24524":-1,"24525":-1,"24526":-1,"24527":-1,"24528":-1,"24529":-1,"24530":-1,"24531":-1,"24532":-1,"24533":-1,"24534":-1,"24535":-1,"24536":-1,"24537":1587,"24538":-1,"24539":-1,"24540":-1,"24541":-1,"24542":-1,"24543":-1,"24544":1588,"24545":-1,"24546":-1,"24547":1587,"24548":-1,"24549":-1,"24550":1589,"24551":1588,"24552":0,"24553":-1,"24554":1586,"24555":-1,"24556":-1,"24557":-1,"24558":-1,"24559":-1,"24560":-1,"24561":-1,"24562":-1,"24563":-1,"24564":-1,"24565":0,"24566":-1,"24567":1586,"24568":-1,"24569":1588,"24570":-1,"24571":-1,"24572":-1,"24573":-1,"24574":-1,"24575":1586,"24576":-1,"24577":-1,"24578":-1,"24579":-1,"24580":-1,"24581":-1,"24582":-1,"24583":1588,"24584":-1,"24585":1587,"24586":-1,"24587":-1,"24588":-1,"24589":-1,"24590":0,"24591":-1,"24592":-1,"24593":-1,"24594":-1,"24595":0,"24596":-1,"24597":-1,"24598":-1,"24599":-1,"24600":-1,"24601":-1,"24602":-1,"24603":-1,"24604":-1,"24605":-1,"24606":-1,"24607":-1,"24608":-1,"24609":-1,"24610":-1,"24611":-1,"24612":1588,"24613":-1,"24614":-1,"24615":-1,"24616":-1,"24617":-1,"24618":-1,"24619":-1,"24620":-1,"24621":-1,"24622":-1,"24623":-1,"24624":-1,"24625":-1,"24626":-1,"24627":-1,"24628":-1,"24629":-1,"24630":-1,"24631":-1,"24632":1587,"24633":-1,"24634":-1,"24635":-1,"24636":1589,"24637":-1,"24638":1587,"24639":-1,"24640":0,"24641":-1,"24642":1586,"24643":-1,"24644":-1,"24645":-1,"24646":-1,"24647":-1,"24648":-1,"24649":-1,"24650":-1,"24651":-1,"24652":-1,"24653":-1,"24654":-1,"24655":-1,"24656":-1,"24657":-1,"24658":-1,"24659":1586,"24660":-1,"24661":-1,"24662":-1,"24663":-1,"24664":-1,"24665":-1,"24666":-1,"24667":-1,"24668":-1,"24669":-1,"24670":-1,"24671":-1,"24672":-1,"24673":1588,"24674":1588,"24675":1588,"24676":-1,"24677":-1,"24678":-1,"24679":-1,"24680":-1,"24681":-1,"24682":-1,"24683":1588,"24684":1589,"24685":-1,"24686":-1,"24687":-1,"24688":-1,"24689":1589,"24690":-1,"24691":-1,"24692":-1,"24693":-1,"24694":-1,"24695":-1,"24696":-1,"24697":-1,"24698":-1,"24699":-1,"24700":-1,"24701":-1,"24702":-1,"24703":-1,"24704":-1,"24705":-1,"24706":-1,"24707":1587,"24708":1586,"24709":-1,"24710":-1,"24711":-1,"24712":1586,"24713":1588,"24714":-1,"24715":-1,"24716":-1,"24717":-1,"24718":-1,"24719":-1,"24720":-1,"24721":-1,"24722":-1,"24723":-1,"24724":-1,"24725":-1,"24726":-1,"24727":1589,"24728":-1,"24729":-1,"24730":-1,"24731":-1,"24732":-1,"24733":-1,"24734":-1,"24735":-1,"24736":0,"24737":-1,"24738":-1,"24739":-1,"24740":-1,"24741":-1,"24742":-1,"24743":-1,"24744":-1,"24745":1588,"24746":-1,"24747":-1,"24748":1587,"24749":-1,"24750":1588,"24751":-1,"24752":-1,"24753":-1,"24754":-1,"24755":-1,"24756":1588,"24757":-1,"24758":-1,"24759":-1,"24760":-1,"24761":-1,"24762":-1,"24763":-1,"24764":-1,"24765":-1,"24766":-1,"24767":-1,"24768":-1,"24769":-1,"24770":-1,"24771":1587,"24772":-1,"24773":-1,"24774":-1,"24775":-1,"24776":-1,"24777":-1,"24778":-1,"24779":-1,"24780":1588,"24781":1587,"24782":-1,"24783":0,"24784":-1,"24785":-1,"24786":1588,"24787":-1,"24788":-1,"24789":-1,"24790":-1,"24791":-1,"24792":-1,"24793":-1,"24794":-1,"24795":-1,"24796":-1,"24797":-1,"24798":-1,"24799":-1,"24800":-1,"24801":-1,"24802":-1,"24803":1586,"24804":-1,"24805":-1,"24806":-1,"24807":-1,"24808":-1,"24809":-1,"24810":-1,"24811":-1,"24812":-1,"24813":-1,"24814":-1,"24815":1587,"24816":-1,"24817":-1,"24818":-1,"24819":-1,"24820":-1,"24821":-1,"24822":-1,"24823":-1,"24824":-1,"24825":-1,"24826":1588,"24827":-1,"24828":-1,"24829":-1,"24830":1588,"24831":-1,"24832":-1,"24833":-1,"24834":-1,"24835":-1,"24836":-1,"24837":-1,"24838":-1,"24839":-1,"24840":1586,"24841":-1,"24842":-1,"24843":-1,"24844":1588,"24845":-1,"24846":-1,"24847":-1,"24848":-1,"24849":-1,"24850":-1,"24851":-1,"24852":-1,"24853":-1,"24854":-1,"24855":-1,"24856":-1,"24857":-1,"24858":-1,"24859":1589,"24860":-1,"24861":-1,"24862":-1,"24863":-1,"24864":1588,"24865":-1,"24866":1587,"24867":-1,"24868":1589,"24869":1587,"24870":-1,"24871":-1,"24872":-1,"24873":-1,"24874":-1,"24875":-1,"24876":-1,"24877":-1,"24878":-1,"24879":-1,"24880":-1,"24881":-1,"24882":-1,"24883":-1,"24884":-1,"24885":-1,"24886":-1,"24887":-1,"24888":1587,"24889":-1,"24890":-1,"24891":1588,"24892":-1,"24893":1586,"24894":-1,"24895":-1,"24896":1588,"24897":-1,"24898":-1,"24899":1588,"24900":-1,"24901":-1,"24902":-1,"24903":-1,"24904":-1,"24905":-1,"24906":1586,"24907":-1,"24908":-1,"24909":-1,"24910":-1,"24911":-1,"24912":-1,"24913":-1,"24914":-1,"24915":1588,"24916":-1,"24917":-1,"24918":-1,"24919":-1,"24920":-1,"24921":-1,"24922":-1,"24923":1589,"24924":-1,"24925":-1,"24926":-1,"24927":-1,"24928":-1,"24929":-1,"24930":1587,"24931":-1,"24932":-1,"24933":-1,"24934":1587,"24935":-1,"24936":-1,"24937":-1,"24938":-1,"24939":-1,"24940":-1,"24941":1586,"24942":-1,"24943":-1,"24944":-1,"24945":-1,"24946":-1,"24947":-1,"24948":-1,"24949":-1,"24950":1588,"24951":-1,"24952":-1,"24953":-1,"24954":-1,"24955":1588,"24956":-1,"24957":-1,"24958":-1,"24959":-1,"24960":-1,"24961":-1,"24962":-1,"24963":-1,"24964":-1,"24965":-1,"24966":0,"24967":-1,"24968":-1,"24969":1588,"24970":-1,"24971":1588,"24972":-1,"24973":-1,"24974":-1,"24975":1586,"24976":-1,"24977":-1,"24978":1588,"24979":-1,"24980":-1,"24981":-1,"24982":-1,"24983":-1,"24984":-1,"24985":0,"24986":-1,"24987":-1,"24988":-1,"24989":-1,"24990":-1,"24991":-1,"24992":-1,"24993":-1,"24994":-1,"24995":-1,"24996":-1,"24997":-1,"24998":-1,"24999":-1,"25000":-1,"25001":-1,"25002":-1,"25003":-1,"25004":-1,"25005":-1,"25006":-1,"25007":-1,"25008":-1,"25009":-1,"25010":-1,"25011":-1,"25012":-1,"25013":-1,"25014":-1,"25015":-1,"25016":-1,"25017":0,"25018":-1,"25019":-1,"25020":-1,"25021":-1,"25022":-1,"25023":-1,"25024":-1,"25025":-1,"25026":-1,"25027":0,"25028":-1,"25029":-1,"25030":1587,"25031":-1,"25032":-1,"25033":-1,"25034":-1,"25035":1588,"25036":-1,"25037":1587,"25038":-1,"25039":-1,"25040":1588,"25041":-1,"25042":-1,"25043":-1,"25044":-1,"25045":1588,"25046":-1,"25047":-1,"25048":1588,"25049":-1,"25050":-1,"25051":-1,"25052":0,"25053":-1,"25054":-1,"25055":-1,"25056":-1,"25057":-1,"25058":-1,"25059":1587,"25060":-1,"25061":1588,"25062":-1,"25063":-1,"25064":-1,"25065":-1,"25066":1586,"25067":-1,"25068":-1,"25069":-1,"25070":-1,"25071":-1,"25072":-1,"25073":1587,"25074":-1,"25075":-1,"25076":-1,"25077":-1,"25078":-1,"25079":-1,"25080":-1,"25081":-1,"25082":-1,"25083":-1,"25084":-1,"25085":1587,"25086":-1,"25087":-1,"25088":1588,"25089":-1,"25090":-1,"25091":-1,"25092":-1,"25093":-1,"25094":-1,"25095":1586,"25096":-1,"25097":-1,"25098":-1,"25099":1588,"25100":-1,"25101":-1,"25102":-1,"25103":-1,"25104":-1,"25105":-1,"25106":-1,"25107":-1,"25108":-1,"25109":-1,"25110":-1,"25111":1589,"25112":-1,"25113":0,"25114":-1,"25115":-1,"25116":-1,"25117":-1,"25118":-1,"25119":0,"25120":-1,"25121":-1,"25122":-1,"25123":-1,"25124":-1,"25125":-1,"25126":-1,"25127":-1,"25128":-1,"25129":-1,"25130":-1,"25131":-1,"25132":1588,"25133":-1,"25134":-1,"25135":-1,"25136":-1,"25137":-1,"25138":-1,"25139":-1,"25140":-1,"25141":-1,"25142":1588,"25143":-1,"25144":-1,"25145":-1,"25146":-1,"25147":-1,"25148":-1,"25149":-1,"25150":1586,"25151":1586,"25152":-1,"25153":-1,"25154":-1,"25155":-1,"25156":-1,"25157":-1,"25158":-1,"25159":-1,"25160":-1,"25161":0,"25162":-1,"25163":-1,"25164":-1,"25165":1588,"25166":-1,"25167":-1,"25168":-1,"25169":-1,"25170":-1,"25171":-1,"25172":1588,"25173":-1,"25174":-1,"25175":-1,"25176":-1,"25177":-1,"25178":-1,"25179":-1,"25180":-1,"25181":-1,"25182":-1,"25183":0,"25184":-1,"25185":-1,"25186":-1,"25187":1587,"25188":0,"25189":-1,"25190":-1,"25191":-1,"25192":-1,"25193":-1,"25194":0,"25195":1589,"25196":-1,"25197":-1,"25198":-1,"25199":-1,"25200":-1,"25201":-1,"25202":1588,"25203":-1,"25204":-1,"25205":1588,"25206":-1,"25207":-1,"25208":-1,"25209":-1,"25210":1586,"25211":1588,"25212":-1,"25213":-1,"25214":-1,"25215":-1,"25216":-1,"25217":-1,"25218":0,"25219":-1,"25220":1588,"25221":1587,"25222":-1,"25223":-1,"25224":-1,"25225":-1,"25226":-1,"25227":-1,"25228":-1,"25229":-1,"25230":-1,"25231":-1,"25232":-1,"25233":-1,"25234":-1,"25235":-1,"25236":-1,"25237":-1,"25238":-1,"25239":-1,"25240":-1,"25241":-1,"25242":-1,"25243":-1,"25244":1589,"25245":-1,"25246":-1,"25247":-1,"25248":1589,"25249":1588,"25250":-1,"25251":1589,"25252":-1,"25253":-1,"25254":-1,"25255":-1,"25256":-1,"25257":1586,"25258":-1,"25259":-1,"25260":-1,"25261":-1,"25262":-1,"25263":-1,"25264":-1,"25265":0,"25266":-1,"25267":1588,"25268":-1,"25269":1586,"25270":-1,"25271":-1,"25272":-1,"25273":1587,"25274":-1,"25275":1587,"25276":1588,"25277":-1,"25278":-1,"25279":1586,"25280":-1,"25281":-1,"25282":-1,"25283":-1,"25284":-1,"25285":-1,"25286":-1,"25287":-1,"25288":-1,"25289":-1,"25290":0,"25291":-1,"25292":-1,"25293":-1,"25294":-1,"25295":-1,"25296":1587,"25297":-1,"25298":-1,"25299":-1,"25300":-1,"25301":-1,"25302":-1,"25303":-1,"25304":-1,"25305":-1,"25306":-1,"25307":-1,"25308":1587,"25309":-1,"25310":-1,"25311":-1,"25312":1587,"25313":-1,"25314":-1,"25315":0,"25316":-1,"25317":-1,"25318":-1,"25319":-1,"25320":-1,"25321":0,"25322":-1,"25323":-1,"25324":-1,"25325":-1,"25326":-1,"25327":-1,"25328":-1,"25329":-1,"25330":-1,"25331":-1,"25332":-1,"25333":-1,"25334":-1,"25335":-1,"25336":-1,"25337":-1,"25338":-1,"25339":-1,"25340":-1,"25341":-1,"25342":-1,"25343":-1,"25344":-1,"25345":-1,"25346":-1,"25347":-1,"25348":-1,"25349":-1,"25350":-1,"25351":-1,"25352":-1,"25353":-1,"25354":-1,"25355":-1,"25356":1586,"25357":-1,"25358":-1,"25359":-1,"25360":1588,"25361":-1,"25362":-1,"25363":1588,"25364":1586,"25365":-1,"25366":-1,"25367":-1,"25368":-1,"25369":-1,"25370":-1,"25371":-1,"25372":-1,"25373":-1,"25374":1587,"25375":-1,"25376":-1,"25377":-1,"25378":-1,"25379":1588,"25380":-1,"25381":-1,"25382":-1,"25383":-1,"25384":-1,"25385":-1,"25386":-1,"25387":-1,"25388":-1,"25389":-1,"25390":-1,"25391":-1,"25392":-1,"25393":-1,"25394":-1,"25395":1587,"25396":-1,"25397":-1,"25398":-1,"25399":-1,"25400":-1,"25401":1588,"25402":-1,"25403":-1,"25404":-1,"25405":-1,"25406":-1,"25407":-1,"25408":0,"25409":-1,"25410":-1,"25411":-1,"25412":-1,"25413":-1,"25414":-1,"25415":-1,"25416":-1,"25417":-1,"25418":0,"25419":-1,"25420":-1,"25421":-1,"25422":-1,"25423":-1,"25424":-1,"25425":-1,"25426":-1,"25427":-1,"25428":-1,"25429":-1,"25430":-1,"25431":-1,"25432":-1,"25433":-1,"25434":-1,"25435":-1,"25436":-1,"25437":-1,"25438":-1,"25439":-1,"25440":-1,"25441":-1,"25442":-1,"25443":-1,"25444":-1,"25445":-1,"25446":1588,"25447":-1,"25448":-1,"25449":-1,"25450":-1,"25451":1587,"25452":-1,"25453":-1,"25454":-1,"25455":-1,"25456":-1,"25457":-1,"25458":-1,"25459":-1,"25460":-1,"25461":-1,"25462":-1,"25463":-1,"25464":-1,"25465":-1,"25466":-1,"25467":1587,"25468":-1,"25469":-1,"25470":-1,"25471":-1,"25472":-1,"25473":-1,"25474":-1,"25475":1587,"25476":-1,"25477":1586,"25478":-1,"25479":1588,"25480":-1,"25481":0,"25482":-1,"25483":-1,"25484":1589,"25485":-1,"25486":-1,"25487":-1,"25488":-1,"25489":-1,"25490":-1,"25491":-1,"25492":-1,"25493":-1,"25494":-1,"25495":-1,"25496":-1,"25497":-1,"25498":-1,"25499":-1,"25500":0,"25501":-1,"25502":-1,"25503":-1,"25504":-1,"25505":-1,"25506":1587,"25507":1587,"25508":-1,"25509":-1,"25510":-1,"25511":-1,"25512":-1,"25513":-1,"25514":-1,"25515":-1,"25516":-1,"25517":-1,"25518":-1,"25519":-1,"25520":-1,"25521":-1,"25522":-1,"25523":-1,"25524":-1,"25525":-1,"25526":-1,"25527":-1,"25528":-1,"25529":1587,"25530":-1,"25531":-1,"25532":-1,"25533":-1,"25534":-1,"25535":1586,"25536":-1,"25537":-1,"25538":-1,"25539":-1,"25540":1587,"25541":-1,"25542":-1,"25543":-1,"25544":-1,"25545":-1,"25546":-1,"25547":-1,"25548":-1,"25549":-1,"25550":-1,"25551":-1,"25552":0,"25553":-1,"25554":1587,"25555":-1,"25556":-1,"25557":0,"25558":1588,"25559":-1,"25560":-1,"25561":-1,"25562":-1,"25563":-1,"25564":-1,"25565":1588,"25566":0,"25567":-1,"25568":-1,"25569":-1,"25570":1589,"25571":-1,"25572":-1,"25573":-1,"25574":-1,"25575":-1,"25576":-1,"25577":1586,"25578":-1,"25579":-1,"25580":1587,"25581":-1,"25582":0,"25583":-1,"25584":-1,"25585":1588,"25586":-1,"25587":0,"25588":-1,"25589":-1,"25590":-1,"25591":-1,"25592":-1,"25593":-1,"25594":-1,"25595":-1,"25596":-1,"25597":-1,"25598":-1,"25599":-1,"25600":-1,"25601":-1,"25602":-1,"25603":1588,"25604":1587,"25605":-1,"25606":-1,"25607":-1,"25608":-1,"25609":-1,"25610":-1,"25611":-1,"25612":-1,"25613":-1,"25614":-1,"25615":1589,"25616":-1,"25617":-1,"25618":-1,"25619":-1,"25620":-1,"25621":-1,"25622":-1,"25623":-1,"25624":-1,"25625":-1,"25626":-1,"25627":1588,"25628":-1,"25629":-1,"25630":1587,"25631":-1,"25632":-1,"25633":-1,"25634":1587,"25635":-1,"25636":-1,"25637":-1,"25638":-1,"25639":-1,"25640":0,"25641":-1,"25642":-1,"25643":-1,"25644":-1,"25645":-1,"25646":-1,"25647":-1,"25648":-1,"25649":-1,"25650":-1,"25651":-1,"25652":-1,"25653":-1,"25654":-1,"25655":-1,"25656":-1,"25657":-1,"25658":-1,"25659":-1,"25660":-1,"25661":-1,"25662":-1,"25663":1588,"25664":-1,"25665":-1,"25666":-1,"25667":-1,"25668":-1,"25669":-1,"25670":-1,"25671":-1,"25672":-1,"25673":-1,"25674":-1,"25675":-1,"25676":-1,"25677":-1,"25678":0,"25679":-1,"25680":-1,"25681":-1,"25682":-1,"25683":-1,"25684":-1,"25685":1589,"25686":-1,"25687":-1,"25688":-1,"25689":-1,"25690":-1,"25691":-1,"25692":-1,"25693":-1,"25694":-1,"25695":-1,"25696":-1,"25697":-1,"25698":-1,"25699":-1,"25700":-1,"25701":-1,"25702":1588,"25703":-1,"25704":-1,"25705":-1,"25706":-1,"25707":-1,"25708":-1,"25709":-1,"25710":-1,"25711":-1,"25712":-1,"25713":-1,"25714":1586,"25715":-1,"25716":-1,"25717":-1,"25718":-1,"25719":-1,"25720":-1,"25721":-1,"25722":-1,"25723":-1,"25724":-1,"25725":-1,"25726":-1,"25727":-1,"25728":-1,"25729":-1,"25730":-1,"25731":-1,"25732":-1,"25733":-1,"25734":-1,"25735":-1,"25736":-1,"25737":-1,"25738":-1,"25739":-1,"25740":1587,"25741":-1,"25742":-1,"25743":-1,"25744":-1,"25745":-1,"25746":1587,"25747":-1,"25748":-1,"25749":-1,"25750":-1,"25751":-1,"25752":-1,"25753":-1,"25754":-1,"25755":-1,"25756":-1,"25757":-1,"25758":1587,"25759":-1,"25760":0,"25761":-1,"25762":-1,"25763":-1,"25764":1587,"25765":-1,"25766":-1,"25767":-1,"25768":-1,"25769":-1,"25770":-1,"25771":1587,"25772":-1,"25773":-1,"25774":-1,"25775":-1,"25776":-1,"25777":-1,"25778":-1,"25779":-1,"25780":1588,"25781":-1,"25782":-1,"25783":-1,"25784":-1,"25785":-1,"25786":-1,"25787":-1,"25788":-1,"25789":-1,"25790":-1,"25791":0,"25792":-1,"25793":-1,"25794":-1,"25795":-1,"25796":1588,"25797":-1,"25798":-1,"25799":-1,"25800":-1,"25801":-1,"25802":-1,"25803":-1,"25804":-1,"25805":-1,"25806":-1,"25807":-1,"25808":-1,"25809":1588,"25810":-1,"25811":-1,"25812":-1,"25813":-1,"25814":-1,"25815":0,"25816":-1,"25817":-1,"25818":-1,"25819":-1,"25820":1586,"25821":-1,"25822":-1,"25823":1587,"25824":-1,"25825":-1,"25826":-1,"25827":-1,"25828":1588,"25829":-1,"25830":-1,"25831":-1,"25832":-1,"25833":1588,"25834":-1,"25835":1588,"25836":1586,"25837":-1,"25838":-1,"25839":-1,"25840":-1,"25841":-1,"25842":-1,"25843":-1,"25844":-1,"25845":-1,"25846":-1,"25847":-1,"25848":-1,"25849":1587,"25850":-1,"25851":-1,"25852":-1,"25853":-1,"25854":1589,"25855":-1,"25856":-1,"25857":1589,"25858":-1,"25859":-1,"25860":-1,"25861":1588,"25862":-1,"25863":-1,"25864":-1,"25865":-1,"25866":-1,"25867":-1,"25868":-1,"25869":-1,"25870":0,"25871":-1,"25872":-1,"25873":-1,"25874":-1,"25875":-1,"25876":1586,"25877":-1,"25878":-1,"25879":-1,"25880":1587,"25881":-1,"25882":-1,"25883":-1,"25884":-1,"25885":-1,"25886":-1,"25887":-1,"25888":-1,"25889":-1,"25890":1587,"25891":-1,"25892":1588,"25893":-1,"25894":-1,"25895":-1,"25896":-1,"25897":-1,"25898":-1,"25899":1587,"25900":1587,"25901":-1,"25902":-1,"25903":-1,"25904":-1,"25905":-1,"25906":-1,"25907":-1,"25908":-1,"25909":-1,"25910":-1,"25911":-1,"25912":-1,"25913":-1,"25914":-1,"25915":-1,"25916":-1,"25917":-1,"25918":1589,"25919":-1,"25920":-1,"25921":-1,"25922":1589,"25923":-1,"25924":-1,"25925":-1,"25926":-1,"25927":-1,"25928":1586,"25929":-1,"25930":-1,"25931":-1,"25932":-1,"25933":-1,"25934":-1,"25935":-1,"25936":-1,"25937":1588,"25938":-1,"25939":-1,"25940":-1,"25941":-1,"25942":-1,"25943":-1,"25944":-1,"25945":-1,"25946":1589,"25947":-1,"25948":-1,"25949":-1,"25950":-1,"25951":1589,"25952":-1,"25953":-1,"25954":-1,"25955":-1,"25956":-1,"25957":-1,"25958":-1,"25959":-1,"25960":-1,"25961":1587,"25962":-1,"25963":-1,"25964":-1,"25965":-1,"25966":0,"25967":1587,"25968":-1,"25969":-1,"25970":1588,"25971":-1,"25972":-1,"25973":-1,"25974":-1,"25975":-1,"25976":-1,"25977":-1,"25978":-1,"25979":0,"25980":-1,"25981":1588,"25982":-1,"25983":-1,"25984":-1,"25985":-1,"25986":1588,"25987":-1,"25988":-1,"25989":-1,"25990":-1,"25991":-1,"25992":-1,"25993":-1,"25994":-1,"25995":-1,"25996":-1,"25997":-1,"25998":-1,"25999":-1,"26000":-1,"26001":-1,"26002":-1,"26003":1588,"26004":-1,"26005":-1,"26006":-1,"26007":-1,"26008":-1,"26009":-1,"26010":-1,"26011":-1,"26012":-1,"26013":-1,"26014":-1,"26015":1588,"26016":-1,"26017":1588,"26018":1588,"26019":-1,"26020":-1,"26021":-1,"26022":-1,"26023":-1,"26024":-1,"26025":-1,"26026":1586,"26027":-1,"26028":1587,"26029":-1,"26030":-1,"26031":-1,"26032":-1,"26033":1588,"26034":1588,"26035":1588,"26036":-1,"26037":-1,"26038":0,"26039":-1,"26040":-1,"26041":-1,"26042":1589,"26043":-1,"26044":-1,"26045":-1,"26046":-1,"26047":-1,"26048":1586,"26049":-1,"26050":-1,"26051":-1,"26052":-1,"26053":-1,"26054":-1,"26055":-1,"26056":-1,"26057":0,"26058":-1,"26059":-1,"26060":-1,"26061":-1,"26062":1588,"26063":-1,"26064":-1,"26065":-1,"26066":-1,"26067":-1,"26068":-1,"26069":-1,"26070":1587,"26071":-1,"26072":-1,"26073":-1,"26074":-1,"26075":-1,"26076":-1,"26077":-1,"26078":-1,"26079":-1,"26080":-1,"26081":-1,"26082":-1,"26083":-1,"26084":-1,"26085":1588,"26086":-1,"26087":1588,"26088":1587,"26089":-1,"26090":-1,"26091":-1,"26092":-1,"26093":-1,"26094":-1,"26095":-1,"26096":-1,"26097":-1,"26098":-1,"26099":-1,"26100":-1,"26101":-1,"26102":-1,"26103":-1,"26104":-1,"26105":-1,"26106":-1,"26107":-1,"26108":-1,"26109":-1,"26110":-1,"26111":-1,"26112":-1,"26113":-1,"26114":-1,"26115":-1,"26116":-1,"26117":1586,"26118":-1,"26119":-1,"26120":-1,"26121":-1,"26122":-1,"26123":-1,"26124":-1,"26125":-1,"26126":-1,"26127":-1,"26128":-1,"26129":-1,"26130":-1,"26131":-1,"26132":-1,"26133":1587,"26134":-1,"26135":-1,"26136":-1,"26137":-1,"26138":-1,"26139":-1,"26140":-1,"26141":-1,"26142":-1,"26143":0,"26144":-1,"26145":-1,"26146":-1,"26147":-1,"26148":-1,"26149":1587,"26150":-1,"26151":1587,"26152":-1,"26153":-1,"26154":-1,"26155":-1,"26156":-1,"26157":-1,"26158":-1,"26159":-1,"26160":-1,"26161":-1,"26162":1586,"26163":-1,"26164":-1,"26165":-1,"26166":0,"26167":-1,"26168":-1,"26169":-1,"26170":-1,"26171":1587,"26172":-1,"26173":-1,"26174":1587,"26175":-1,"26176":-1,"26177":1588,"26178":-1,"26179":-1,"26180":-1,"26181":-1,"26182":1586,"26183":-1,"26184":-1,"26185":-1,"26186":-1,"26187":-1,"26188":-1,"26189":-1,"26190":-1,"26191":-1,"26192":1588,"26193":1587,"26194":-1,"26195":-1,"26196":-1,"26197":-1,"26198":-1,"26199":1587,"26200":-1,"26201":-1,"26202":-1,"26203":-1,"26204":-1,"26205":-1,"26206":-1,"26207":-1,"26208":-1,"26209":-1,"26210":1588,"26211":-1,"26212":-1,"26213":-1,"26214":-1,"26215":-1,"26216":-1,"26217":-1,"26218":-1,"26219":-1,"26220":-1,"26221":-1,"26222":-1,"26223":-1,"26224":1586,"26225":0,"26226":-1,"26227":-1,"26228":-1,"26229":-1,"26230":-1,"26231":1588,"26232":-1,"26233":-1,"26234":-1,"26235":-1,"26236":-1,"26237":1589,"26238":-1,"26239":-1,"26240":-1,"26241":-1,"26242":-1,"26243":-1,"26244":-1,"26245":1586,"26246":1588,"26247":-1,"26248":1588,"26249":-1,"26250":-1,"26251":-1,"26252":-1,"26253":1587,"26254":-1,"26255":-1,"26256":1588,"26257":-1,"26258":-1,"26259":-1,"26260":0,"26261":-1,"26262":-1,"26263":-1,"26264":-1,"26265":-1,"26266":-1,"26267":-1,"26268":-1,"26269":-1,"26270":-1,"26271":1587,"26272":-1,"26273":-1,"26274":-1,"26275":0,"26276":-1,"26277":-1,"26278":-1,"26279":1587,"26280":-1,"26281":-1,"26282":-1,"26283":-1,"26284":0,"26285":1587,"26286":-1,"26287":-1,"26288":-1,"26289":-1,"26290":-1,"26291":-1,"26292":1588,"26293":1588,"26294":-1,"26295":-1,"26296":-1,"26297":-1,"26298":-1,"26299":-1,"26300":-1,"26301":1588,"26302":-1,"26303":-1,"26304":-1,"26305":-1,"26306":1588,"26307":-1,"26308":-1,"26309":-1,"26310":-1,"26311":-1,"26312":-1,"26313":-1,"26314":1587,"26315":-1,"26316":-1,"26317":-1,"26318":-1,"26319":-1,"26320":-1,"26321":-1,"26322":-1,"26323":-1,"26324":-1,"26325":-1,"26326":-1,"26327":-1,"26328":-1,"26329":-1,"26330":-1,"26331":0,"26332":-1,"26333":-1,"26334":0,"26335":1589,"26336":-1,"26337":-1,"26338":-1,"26339":-1,"26340":-1,"26341":1588,"26342":-1,"26343":1589,"26344":-1,"26345":-1,"26346":-1,"26347":-1,"26348":1587,"26349":-1,"26350":-1,"26351":-1,"26352":-1,"26353":-1,"26354":1587,"26355":-1,"26356":-1,"26357":-1,"26358":-1,"26359":-1,"26360":-1,"26361":-1,"26362":-1,"26363":-1,"26364":-1,"26365":-1,"26366":-1,"26367":-1,"26368":-1,"26369":-1,"26370":-1,"26371":-1,"26372":-1,"26373":-1,"26374":-1,"26375":-1,"26376":-1,"26377":-1,"26378":-1,"26379":-1,"26380":-1,"26381":0,"26382":-1,"26383":1586,"26384":-1,"26385":-1,"26386":-1,"26387":-1,"26388":-1,"26389":1587,"26390":-1,"26391":-1,"26392":-1,"26393":-1,"26394":-1,"26395":-1,"26396":-1,"26397":-1,"26398":-1,"26399":-1,"26400":-1,"26401":-1,"26402":-1,"26403":-1,"26404":-1,"26405":-1,"26406":-1,"26407":-1,"26408":1588,"26409":-1,"26410":-1,"26411":-1,"26412":-1,"26413":-1,"26414":-1,"26415":-1,"26416":-1,"26417":-1,"26418":1588,"26419":-1,"26420":-1,"26421":-1,"26422":1587,"26423":1587,"26424":-1,"26425":1589,"26426":-1,"26427":1588,"26428":-1,"26429":-1,"26430":-1,"26431":-1,"26432":-1,"26433":1587,"26434":-1,"26435":-1,"26436":-1,"26437":-1,"26438":-1,"26439":-1,"26440":-1,"26441":-1,"26442":-1,"26443":-1,"26444":-1,"26445":-1,"26446":-1,"26447":-1,"26448":-1,"26449":-1,"26450":-1,"26451":-1,"26452":-1,"26453":-1,"26454":-1,"26455":-1,"26456":-1,"26457":-1,"26458":-1,"26459":-1,"26460":-1,"26461":-1,"26462":-1,"26463":-1,"26464":-1,"26465":-1,"26466":-1,"26467":-1,"26468":-1,"26469":1589,"26470":-1,"26471":-1,"26472":1587,"26473":-1,"26474":1588,"26475":-1,"26476":-1,"26477":-1,"26478":-1,"26479":1589,"26480":1589,"26481":-1,"26482":1589,"26483":1589,"26484":-1,"26485":-1,"26486":-1,"26487":-1,"26488":-1,"26489":1589,"26490":-1,"26491":0,"26492":1588,"26493":-1,"26494":-1,"26495":-1,"26496":-1,"26497":1588,"26498":-1,"26499":-1,"26500":0,"26501":-1,"26502":-1,"26503":-1,"26504":-1,"26505":-1,"26506":-1,"26507":-1,"26508":-1,"26509":1588,"26510":-1,"26511":-1,"26512":-1,"26513":-1,"26514":-1,"26515":-1,"26516":-1,"26517":-1,"26518":-1,"26519":-1,"26520":-1,"26521":-1,"26522":-1,"26523":1587,"26524":1588,"26525":-1,"26526":-1,"26527":-1,"26528":-1,"26529":1588,"26530":-1,"26531":-1,"26532":-1,"26533":-1,"26534":-1,"26535":-1,"26536":-1,"26537":-1,"26538":-1,"26539":-1,"26540":0,"26541":-1,"26542":-1,"26543":-1,"26544":0,"26545":-1,"26546":-1,"26547":-1,"26548":-1,"26549":-1,"26550":-1,"26551":-1,"26552":1587,"26553":-1,"26554":-1,"26555":-1,"26556":-1,"26557":-1,"26558":-1,"26559":-1,"26560":-1,"26561":-1,"26562":-1,"26563":-1,"26564":1588,"26565":-1,"26566":0,"26567":-1,"26568":-1,"26569":-1,"26570":-1,"26571":1587,"26572":-1,"26573":-1,"26574":-1,"26575":-1,"26576":-1,"26577":-1,"26578":-1,"26579":-1,"26580":-1,"26581":-1,"26582":-1,"26583":-1,"26584":1587,"26585":-1,"26586":-1,"26587":-1,"26588":-1,"26589":-1,"26590":-1,"26591":-1,"26592":-1,"26593":-1,"26594":1588,"26595":-1,"26596":-1,"26597":-1,"26598":-1,"26599":-1,"26600":-1,"26601":1588,"26602":-1,"26603":-1,"26604":-1,"26605":1588,"26606":1588,"26607":-1,"26608":1587,"26609":-1,"26610":-1,"26611":-1,"26612":-1,"26613":-1,"26614":-1,"26615":-1,"26616":-1,"26617":-1,"26618":-1,"26619":-1,"26620":1587,"26621":0,"26622":-1,"26623":0,"26624":1589,"26625":-1,"26626":-1,"26627":-1,"26628":-1,"26629":-1,"26630":-1,"26631":-1,"26632":-1,"26633":-1,"26634":-1,"26635":-1,"26636":-1,"26637":-1,"26638":1587,"26639":-1,"26640":-1,"26641":1588,"26642":-1,"26643":-1,"26644":-1,"26645":-1,"26646":-1,"26647":-1,"26648":-1,"26649":-1,"26650":-1,"26651":-1,"26652":-1,"26653":1586,"26654":-1,"26655":-1,"26656":-1,"26657":-1,"26658":-1,"26659":-1,"26660":-1,"26661":-1,"26662":-1,"26663":-1,"26664":-1,"26665":-1,"26666":-1,"26667":-1,"26668":-1,"26669":0,"26670":-1,"26671":-1,"26672":-1,"26673":-1,"26674":-1,"26675":1587,"26676":-1,"26677":-1,"26678":-1,"26679":-1,"26680":-1,"26681":-1,"26682":-1,"26683":-1,"26684":-1,"26685":-1,"26686":-1,"26687":-1,"26688":-1,"26689":-1,"26690":-1,"26691":-1,"26692":-1,"26693":-1,"26694":-1,"26695":-1,"26696":-1,"26697":-1,"26698":-1,"26699":-1,"26700":-1,"26701":-1,"26702":-1,"26703":-1,"26704":1589,"26705":-1,"26706":-1,"26707":-1,"26708":-1,"26709":-1,"26710":-1,"26711":-1,"26712":1586,"26713":-1,"26714":-1,"26715":-1,"26716":-1,"26717":-1,"26718":-1,"26719":-1,"26720":0,"26721":-1,"26722":-1,"26723":-1,"26724":-1,"26725":-1,"26726":-1,"26727":-1,"26728":-1,"26729":-1,"26730":-1,"26731":-1,"26732":1588,"26733":-1,"26734":-1,"26735":-1,"26736":1589,"26737":1588,"26738":-1,"26739":-1,"26740":-1,"26741":-1,"26742":-1,"26743":1586,"26744":-1,"26745":-1,"26746":-1,"26747":1586,"26748":-1,"26749":-1,"26750":-1,"26751":1587,"26752":-1,"26753":-1,"26754":-1,"26755":-1,"26756":-1,"26757":-1,"26758":-1,"26759":-1,"26760":-1,"26761":-1,"26762":-1,"26763":-1,"26764":-1,"26765":-1,"26766":1587,"26767":1586,"26768":-1,"26769":-1,"26770":1587,"26771":-1,"26772":-1,"26773":-1,"26774":-1,"26775":1587,"26776":-1,"26777":-1,"26778":1588,"26779":-1,"26780":-1,"26781":-1,"26782":-1,"26783":-1,"26784":-1,"26785":-1,"26786":-1,"26787":-1,"26788":-1,"26789":0,"26790":-1,"26791":-1,"26792":-1,"26793":-1,"26794":-1,"26795":-1,"26796":-1,"26797":-1,"26798":-1,"26799":-1,"26800":-1,"26801":-1,"26802":-1,"26803":-1,"26804":1588,"26805":-1,"26806":-1,"26807":-1,"26808":-1,"26809":-1,"26810":-1,"26811":-1,"26812":-1,"26813":-1,"26814":-1,"26815":-1,"26816":1587,"26817":-1,"26818":-1,"26819":-1,"26820":1586,"26821":-1,"26822":-1,"26823":-1,"26824":-1,"26825":-1,"26826":-1,"26827":-1,"26828":-1,"26829":-1,"26830":-1,"26831":1587,"26832":-1,"26833":-1,"26834":-1,"26835":-1,"26836":-1,"26837":-1,"26838":-1,"26839":-1,"26840":-1,"26841":-1,"26842":-1,"26843":-1,"26844":-1,"26845":-1,"26846":-1,"26847":-1,"26848":-1,"26849":-1,"26850":1587,"26851":-1,"26852":-1,"26853":-1,"26854":-1,"26855":-1,"26856":-1,"26857":-1,"26858":-1,"26859":-1,"26860":-1,"26861":-1,"26862":-1,"26863":-1,"26864":-1,"26865":1586,"26866":1587,"26867":-1,"26868":-1,"26869":-1,"26870":-1,"26871":-1,"26872":0,"26873":-1,"26874":1587,"26875":-1,"26876":-1,"26877":-1,"26878":-1,"26879":-1,"26880":-1,"26881":1588,"26882":-1,"26883":-1,"26884":-1,"26885":-1,"26886":-1,"26887":-1,"26888":1588,"26889":-1,"26890":-1,"26891":-1,"26892":-1,"26893":-1,"26894":-1,"26895":-1,"26896":-1,"26897":-1,"26898":-1,"26899":-1,"26900":-1,"26901":-1,"26902":-1,"26903":-1,"26904":-1,"26905":-1,"26906":1586,"26907":-1,"26908":-1,"26909":-1,"26910":-1,"26911":-1,"26912":-1,"26913":-1,"26914":-1,"26915":1587,"26916":-1,"26917":-1,"26918":-1,"26919":-1,"26920":-1,"26921":-1,"26922":0,"26923":1587,"26924":-1,"26925":1589,"26926":1586,"26927":-1,"26928":-1,"26929":-1,"26930":0,"26931":-1,"26932":-1,"26933":-1,"26934":-1,"26935":1589,"26936":-1,"26937":0,"26938":-1,"26939":-1,"26940":1586,"26941":1588,"26942":-1,"26943":-1,"26944":1589,"26945":-1,"26946":-1,"26947":-1,"26948":-1,"26949":-1,"26950":-1,"26951":-1,"26952":-1,"26953":-1,"26954":-1,"26955":1588,"26956":-1,"26957":-1,"26958":-1,"26959":-1,"26960":-1,"26961":-1,"26962":-1,"26963":-1,"26964":1589,"26965":-1,"26966":1588,"26967":-1,"26968":-1,"26969":-1,"26970":-1,"26971":-1,"26972":-1,"26973":-1,"26974":-1,"26975":-1,"26976":-1,"26977":-1,"26978":-1,"26979":-1,"26980":1586,"26981":-1,"26982":-1,"26983":1587,"26984":-1,"26985":0,"26986":-1,"26987":-1,"26988":-1,"26989":-1,"26990":-1,"26991":-1,"26992":-1,"26993":-1,"26994":-1,"26995":1586,"26996":-1,"26997":1588,"26998":-1,"26999":-1,"27000":-1,"27001":-1,"27002":-1,"27003":-1,"27004":-1,"27005":-1,"27006":-1,"27007":-1,"27008":1587,"27009":1587,"27010":-1,"27011":-1,"27012":-1,"27013":-1,"27014":1589,"27015":1588,"27016":-1,"27017":-1,"27018":-1,"27019":-1,"27020":-1,"27021":-1,"27022":-1,"27023":-1,"27024":-1,"27025":1588,"27026":-1,"27027":1587,"27028":-1,"27029":-1,"27030":-1,"27031":-1,"27032":-1,"27033":1588,"27034":-1,"27035":-1,"27036":-1,"27037":-1,"27038":-1,"27039":-1,"27040":-1,"27041":-1,"27042":-1,"27043":-1,"27044":-1,"27045":-1,"27046":-1,"27047":-1,"27048":1587,"27049":1588,"27050":-1,"27051":-1,"27052":0,"27053":-1,"27054":-1,"27055":-1,"27056":-1,"27057":-1,"27058":-1,"27059":-1,"27060":-1,"27061":-1,"27062":-1,"27063":-1,"27064":-1,"27065":-1,"27066":-1,"27067":-1,"27068":-1,"27069":-1,"27070":-1,"27071":-1,"27072":-1,"27073":-1,"27074":1588,"27075":-1,"27076":-1,"27077":1588,"27078":-1,"27079":1587,"27080":-1,"27081":-1,"27082":-1,"27083":1588,"27084":-1,"27085":-1,"27086":-1,"27087":-1,"27088":-1,"27089":-1,"27090":-1,"27091":-1,"27092":-1,"27093":-1,"27094":1587,"27095":-1,"27096":-1,"27097":-1,"27098":-1,"27099":-1,"27100":-1,"27101":-1,"27102":-1,"27103":1588,"27104":0,"27105":1587,"27106":1586,"27107":-1,"27108":-1,"27109":-1,"27110":-1,"27111":1587,"27112":-1,"27113":-1,"27114":-1,"27115":0,"27116":-1,"27117":-1,"27118":-1,"27119":-1,"27120":-1,"27121":-1,"27122":-1,"27123":-1,"27124":-1,"27125":-1,"27126":-1,"27127":-1,"27128":-1,"27129":-1,"27130":-1,"27131":-1,"27132":-1,"27133":-1,"27134":-1,"27135":-1,"27136":-1,"27137":-1,"27138":-1,"27139":-1,"27140":-1,"27141":-1,"27142":-1,"27143":-1,"27144":-1,"27145":-1,"27146":-1,"27147":0,"27148":-1,"27149":-1,"27150":-1,"27151":-1,"27152":1586,"27153":1588,"27154":-1,"27155":-1,"27156":-1,"27157":-1,"27158":1588,"27159":-1,"27160":-1,"27161":-1,"27162":-1,"27163":-1,"27164":-1,"27165":-1,"27166":-1,"27167":-1,"27168":-1,"27169":-1,"27170":-1,"27171":-1,"27172":1586,"27173":-1,"27174":-1,"27175":-1,"27176":-1,"27177":-1,"27178":-1,"27179":-1,"27180":-1,"27181":-1,"27182":-1,"27183":-1,"27184":-1,"27185":-1,"27186":-1,"27187":-1,"27188":-1,"27189":-1,"27190":-1,"27191":-1,"27192":0,"27193":-1,"27194":-1,"27195":-1,"27196":-1,"27197":-1,"27198":-1,"27199":0,"27200":-1,"27201":-1,"27202":-1,"27203":0,"27204":-1,"27205":0,"27206":-1,"27207":-1,"27208":-1,"27209":-1,"27210":-1,"27211":-1,"27212":1586,"27213":-1,"27214":-1,"27215":-1,"27216":-1,"27217":-1,"27218":-1,"27219":-1,"27220":-1,"27221":-1,"27222":-1,"27223":-1,"27224":-1,"27225":-1,"27226":-1,"27227":1586,"27228":-1,"27229":1588,"27230":-1,"27231":-1,"27232":-1,"27233":-1,"27234":1587,"27235":-1,"27236":-1,"27237":-1,"27238":-1,"27239":-1,"27240":-1,"27241":-1,"27242":-1,"27243":-1,"27244":-1,"27245":-1,"27246":-1,"27247":-1,"27248":-1,"27249":1586,"27250":-1,"27251":-1,"27252":-1,"27253":-1,"27254":-1,"27255":-1,"27256":-1,"27257":-1,"27258":1588,"27259":-1,"27260":-1,"27261":-1,"27262":-1,"27263":-1,"27264":-1,"27265":-1,"27266":-1,"27267":-1,"27268":-1,"27269":-1,"27270":-1,"27271":-1,"27272":-1,"27273":-1,"27274":-1,"27275":-1,"27276":-1,"27277":-1,"27278":-1,"27279":-1,"27280":-1,"27281":-1,"27282":-1,"27283":-1,"27284":-1,"27285":-1,"27286":-1,"27287":-1,"27288":1588,"27289":-1,"27290":-1,"27291":-1,"27292":-1,"27293":-1,"27294":-1,"27295":-1,"27296":-1,"27297":-1,"27298":-1,"27299":-1,"27300":-1,"27301":-1,"27302":-1,"27303":-1,"27304":0,"27305":1588,"27306":-1,"27307":-1,"27308":-1,"27309":1589,"27310":-1,"27311":-1,"27312":-1,"27313":-1,"27314":-1,"27315":-1,"27316":-1,"27317":-1,"27318":-1,"27319":-1,"27320":-1,"27321":-1,"27322":-1,"27323":-1,"27324":-1,"27325":-1,"27326":-1,"27327":-1,"27328":-1,"27329":-1,"27330":-1,"27331":-1,"27332":-1,"27333":-1,"27334":-1,"27335":1587,"27336":-1,"27337":-1,"27338":-1,"27339":-1,"27340":-1,"27341":-1,"27342":-1,"27343":-1,"27344":-1,"27345":-1,"27346":-1,"27347":-1,"27348":-1,"27349":-1,"27350":-1,"27351":-1,"27352":-1,"27353":-1,"27354":-1,"27355":-1,"27356":1587,"27357":-1,"27358":-1,"27359":-1,"27360":-1,"27361":0,"27362":1589,"27363":-1,"27364":-1,"27365":-1,"27366":1587,"27367":-1,"27368":-1,"27369":-1,"27370":-1,"27371":-1,"27372":-1,"27373":-1,"27374":-1,"27375":-1,"27376":0,"27377":1589,"27378":1587,"27379":1586,"27380":-1,"27381":-1,"27382":-1,"27383":1587,"27384":-1,"27385":-1,"27386":-1,"27387":-1,"27388":-1,"27389":-1,"27390":-1,"27391":-1,"27392":-1,"27393":1588,"27394":-1,"27395":-1,"27396":-1,"27397":-1,"27398":-1,"27399":-1,"27400":1587,"27401":-1,"27402":-1,"27403":-1,"27404":1587,"27405":-1,"27406":-1,"27407":-1,"27408":-1,"27409":-1,"27410":-1,"27411":-1,"27412":0,"27413":-1,"27414":0,"27415":1588,"27416":-1,"27417":-1,"27418":-1,"27419":-1,"27420":0,"27421":-1,"27422":-1,"27423":-1,"27424":-1,"27425":-1,"27426":-1,"27427":-1,"27428":-1,"27429":-1,"27430":1589,"27431":-1,"27432":-1,"27433":-1,"27434":-1,"27435":-1,"27436":-1,"27437":-1,"27438":-1,"27439":-1,"27440":-1,"27441":-1,"27442":-1,"27443":-1,"27444":1588,"27445":-1,"27446":1587,"27447":1587,"27448":-1,"27449":-1,"27450":1586,"27451":-1,"27452":1586,"27453":-1,"27454":-1,"27455":-1,"27456":-1,"27457":1587,"27458":-1,"27459":0,"27460":-1,"27461":-1,"27462":-1,"27463":-1,"27464":-1,"27465":0,"27466":-1,"27467":-1,"27468":-1,"27469":-1,"27470":-1,"27471":-1,"27472":1587,"27473":-1,"27474":-1,"27475":-1,"27476":-1,"27477":-1,"27478":-1,"27479":-1,"27480":-1,"27481":-1,"27482":-1,"27483":-1,"27484":-1,"27485":1589,"27486":-1,"27487":-1,"27488":-1,"27489":-1,"27490":-1,"27491":-1,"27492":1588,"27493":-1,"27494":-1,"27495":-1,"27496":1588,"27497":-1,"27498":-1,"27499":-1,"27500":1587,"27501":-1,"27502":-1,"27503":1589,"27504":-1,"27505":-1,"27506":-1,"27507":-1,"27508":-1,"27509":-1,"27510":-1,"27511":1588,"27512":-1,"27513":-1,"27514":-1,"27515":-1,"27516":-1,"27517":-1,"27518":-1,"27519":1587,"27520":-1,"27521":-1,"27522":-1,"27523":-1,"27524":-1,"27525":-1,"27526":-1,"27527":-1,"27528":-1,"27529":-1,"27530":-1,"27531":-1,"27532":-1,"27533":-1,"27534":-1,"27535":-1,"27536":-1,"27537":-1,"27538":-1,"27539":-1,"27540":-1,"27541":-1,"27542":-1,"27543":-1,"27544":-1,"27545":-1,"27546":-1,"27547":-1,"27548":1587,"27549":-1,"27550":1586,"27551":0,"27552":-1,"27553":-1,"27554":1587,"27555":-1,"27556":-1,"27557":-1,"27558":-1,"27559":-1,"27560":-1,"27561":-1,"27562":-1,"27563":-1,"27564":-1,"27565":-1,"27566":-1,"27567":1588,"27568":-1,"27569":-1,"27570":-1,"27571":-1,"27572":-1,"27573":-1,"27574":-1,"27575":-1,"27576":-1,"27577":-1,"27578":1588,"27579":-1,"27580":-1,"27581":-1,"27582":-1,"27583":-1,"27584":-1,"27585":1588,"27586":-1,"27587":-1,"27588":-1,"27589":-1,"27590":-1,"27591":1587,"27592":-1,"27593":-1,"27594":-1,"27595":-1,"27596":-1,"27597":-1,"27598":-1,"27599":-1,"27600":-1,"27601":-1,"27602":-1,"27603":-1,"27604":-1,"27605":1586,"27606":-1,"27607":-1,"27608":-1,"27609":-1,"27610":-1,"27611":-1,"27612":-1,"27613":-1,"27614":-1,"27615":1588,"27616":-1,"27617":0,"27618":-1,"27619":-1,"27620":-1,"27621":-1,"27622":-1,"27623":1586,"27624":-1,"27625":-1,"27626":-1,"27627":-1,"27628":-1,"27629":-1,"27630":-1,"27631":-1,"27632":-1,"27633":-1,"27634":-1,"27635":1589,"27636":-1,"27637":-1,"27638":-1,"27639":-1,"27640":-1,"27641":-1,"27642":-1,"27643":-1,"27644":1587,"27645":-1,"27646":-1,"27647":-1,"27648":-1,"27649":1587,"27650":-1,"27651":0,"27652":-1,"27653":-1,"27654":-1,"27655":-1,"27656":-1,"27657":-1,"27658":-1,"27659":1586,"27660":-1,"27661":-1,"27662":-1,"27663":-1,"27664":-1,"27665":-1,"27666":-1,"27667":-1,"27668":-1,"27669":1589,"27670":-1,"27671":-1,"27672":-1,"27673":-1,"27674":-1,"27675":-1,"27676":1587,"27677":-1,"27678":-1,"27679":-1,"27680":-1,"27681":1589,"27682":-1,"27683":-1,"27684":-1,"27685":-1,"27686":-1,"27687":-1,"27688":-1,"27689":1589,"27690":1587,"27691":-1,"27692":-1,"27693":-1,"27694":-1,"27695":-1,"27696":-1,"27697":-1,"27698":-1,"27699":-1,"27700":-1,"27701":-1,"27702":-1,"27703":-1,"27704":1586,"27705":-1,"27706":-1,"27707":-1,"27708":1586,"27709":-1,"27710":-1,"27711":-1,"27712":-1,"27713":-1,"27714":-1,"27715":-1,"27716":-1,"27717":-1,"27718":0,"27719":-1,"27720":-1,"27721":-1,"27722":-1,"27723":-1,"27724":-1,"27725":-1,"27726":-1,"27727":-1,"27728":-1,"27729":-1,"27730":-1,"27731":-1,"27732":-1,"27733":-1,"27734":-1,"27735":-1,"27736":-1,"27737":1587,"27738":-1,"27739":-1,"27740":-1,"27741":-1,"27742":-1,"27743":-1,"27744":-1,"27745":-1,"27746":-1,"27747":-1,"27748":-1,"27749":-1,"27750":-1,"27751":-1,"27752":-1,"27753":-1,"27754":-1,"27755":-1,"27756":-1,"27757":-1,"27758":-1,"27759":-1,"27760":-1,"27761":-1,"27762":-1,"27763":-1,"27764":-1,"27765":-1,"27766":-1,"27767":-1,"27768":-1,"27769":-1,"27770":-1,"27771":-1,"27772":-1,"27773":-1,"27774":-1,"27775":-1,"27776":-1,"27777":-1,"27778":1587,"27779":-1,"27780":-1,"27781":-1,"27782":-1,"27783":-1,"27784":-1,"27785":-1,"27786":1587,"27787":-1,"27788":-1,"27789":-1,"27790":-1,"27791":-1,"27792":-1,"27793":1588,"27794":-1,"27795":-1,"27796":-1,"27797":0,"27798":-1,"27799":-1,"27800":1588,"27801":-1,"27802":-1,"27803":-1,"27804":-1,"27805":-1,"27806":-1,"27807":1588,"27808":-1,"27809":-1,"27810":-1,"27811":-1,"27812":-1,"27813":-1,"27814":-1,"27815":1588,"27816":-1,"27817":-1,"27818":-1,"27819":1588,"27820":-1,"27821":-1,"27822":-1,"27823":-1,"27824":-1,"27825":0,"27826":-1,"27827":-1,"27828":-1,"27829":1586,"27830":-1,"27831":-1,"27832":-1,"27833":0,"27834":-1,"27835":-1,"27836":-1,"27837":-1,"27838":-1,"27839":-1,"27840":1587,"27841":-1,"27842":-1,"27843":-1,"27844":-1,"27845":-1,"27846":-1,"27847":-1,"27848":-1,"27849":-1,"27850":-1,"27851":-1,"27852":-1,"27853":-1,"27854":-1,"27855":-1,"27856":-1,"27857":-1,"27858":-1,"27859":1587,"27860":-1,"27861":-1,"27862":1588,"27863":-1,"27864":1589,"27865":-1,"27866":-1,"27867":-1,"27868":-1,"27869":-1,"27870":-1,"27871":-1,"27872":-1,"27873":-1,"27874":-1,"27875":-1,"27876":1588,"27877":-1,"27878":-1,"27879":-1,"27880":-1,"27881":-1,"27882":0,"27883":-1,"27884":-1,"27885":-1,"27886":1588,"27887":-1,"27888":-1,"27889":-1,"27890":-1,"27891":-1,"27892":1589,"27893":-1,"27894":-1,"27895":-1,"27896":-1,"27897":-1,"27898":-1,"27899":-1,"27900":-1,"27901":-1,"27902":-1,"27903":-1,"27904":-1,"27905":-1,"27906":-1,"27907":1587,"27908":-1,"27909":-1,"27910":-1,"27911":1589,"27912":1587,"27913":-1,"27914":1588,"27915":-1,"27916":-1,"27917":-1,"27918":1587,"27919":-1,"27920":-1,"27921":-1,"27922":-1,"27923":-1,"27924":-1,"27925":-1,"27926":1589,"27927":-1,"27928":-1,"27929":-1,"27930":-1,"27931":-1,"27932":-1,"27933":-1,"27934":-1,"27935":-1,"27936":1589,"27937":-1,"27938":-1,"27939":-1,"27940":-1,"27941":-1,"27942":-1,"27943":-1,"27944":-1,"27945":-1,"27946":-1,"27947":-1,"27948":1587,"27949":-1,"27950":-1,"27951":1586,"27952":-1,"27953":-1,"27954":-1,"27955":-1,"27956":-1,"27957":1589,"27958":-1,"27959":-1,"27960":-1,"27961":1588,"27962":-1,"27963":-1,"27964":-1,"27965":-1,"27966":-1,"27967":-1,"27968":0,"27969":1588,"27970":-1,"27971":-1,"27972":-1,"27973":-1,"27974":-1,"27975":-1,"27976":-1,"27977":-1,"27978":-1,"27979":-1,"27980":-1,"27981":-1,"27982":-1,"27983":-1,"27984":-1,"27985":1586,"27986":-1,"27987":-1,"27988":1586,"27989":-1,"27990":-1,"27991":-1,"27992":-1,"27993":-1,"27994":-1,"27995":-1,"27996":-1,"27997":-1,"27998":1587,"27999":-1,"28000":-1,"28001":-1,"28002":-1,"28003":-1,"28004":-1,"28005":-1,"28006":-1,"28007":-1,"28008":-1,"28009":-1,"28010":-1,"28011":-1,"28012":-1,"28013":1588,"28014":-1,"28015":1586,"28016":-1,"28017":-1,"28018":1586,"28019":-1,"28020":-1,"28021":-1,"28022":-1,"28023":-1,"28024":-1,"28025":-1,"28026":1589,"28027":-1,"28028":-1,"28029":1587,"28030":-1,"28031":-1,"28032":-1,"28033":-1,"28034":0,"28035":-1,"28036":-1,"28037":-1,"28038":-1,"28039":-1,"28040":-1,"28041":1588,"28042":-1,"28043":-1,"28044":-1,"28045":-1,"28046":-1,"28047":-1,"28048":1588,"28049":-1,"28050":-1,"28051":-1,"28052":1588,"28053":-1,"28054":-1,"28055":-1,"28056":-1,"28057":-1,"28058":-1,"28059":-1,"28060":-1,"28061":-1,"28062":-1,"28063":-1,"28064":-1,"28065":-1,"28066":-1,"28067":-1,"28068":1588,"28069":1587,"28070":-1,"28071":-1,"28072":-1,"28073":-1,"28074":-1,"28075":-1,"28076":-1,"28077":-1,"28078":-1,"28079":-1,"28080":1587,"28081":-1,"28082":-1,"28083":-1,"28084":-1,"28085":-1,"28086":-1,"28087":-1,"28088":-1,"28089":-1,"28090":-1,"28091":-1,"28092":-1,"28093":1586,"28094":-1,"28095":1588,"28096":-1,"28097":-1,"28098":-1,"28099":-1,"28100":-1,"28101":-1,"28102":-1,"28103":-1,"28104":-1,"28105":-1,"28106":1588,"28107":-1,"28108":-1,"28109":-1,"28110":1586,"28111":0,"28112":1588,"28113":-1,"28114":-1,"28115":-1,"28116":-1,"28117":-1,"28118":-1,"28119":-1,"28120":1588,"28121":-1,"28122":-1,"28123":-1,"28124":-1,"28125":-1,"28126":1587,"28127":-1,"28128":-1,"28129":-1,"28130":-1,"28131":-1,"28132":-1,"28133":-1,"28134":-1,"28135":-1,"28136":1588,"28137":-1,"28138":1588,"28139":1586,"28140":-1,"28141":-1,"28142":1587,"28143":-1,"28144":-1,"28145":-1,"28146":-1,"28147":1586,"28148":-1,"28149":-1,"28150":-1,"28151":0,"28152":1586,"28153":1587,"28154":-1,"28155":-1,"28156":-1,"28157":-1,"28158":-1,"28159":-1,"28160":1588,"28161":-1,"28162":-1,"28163":-1,"28164":-1,"28165":-1,"28166":-1,"28167":1589,"28168":-1,"28169":-1,"28170":-1,"28171":-1,"28172":-1,"28173":-1,"28174":-1,"28175":0,"28176":-1,"28177":-1,"28178":-1,"28179":-1,"28180":0,"28181":-1,"28182":-1,"28183":-1,"28184":1587,"28185":-1,"28186":-1,"28187":-1,"28188":-1,"28189":-1,"28190":1589,"28191":-1,"28192":1587,"28193":-1,"28194":-1,"28195":-1,"28196":-1,"28197":1589,"28198":-1,"28199":-1,"28200":-1,"28201":1589,"28202":1588,"28203":-1,"28204":-1,"28205":-1,"28206":-1,"28207":-1,"28208":-1,"28209":0,"28210":-1,"28211":-1,"28212":-1,"28213":0,"28214":1587,"28215":-1,"28216":-1,"28217":-1,"28218":-1,"28219":-1,"28220":-1,"28221":-1,"28222":-1,"28223":-1,"28224":1587,"28225":-1,"28226":-1,"28227":1588,"28228":-1,"28229":-1,"28230":-1,"28231":-1,"28232":0,"28233":-1,"28234":-1,"28235":-1,"28236":-1,"28237":1588,"28238":-1,"28239":-1,"28240":-1,"28241":1588,"28242":-1,"28243":-1,"28244":-1,"28245":-1,"28246":-1,"28247":1586,"28248":-1,"28249":-1,"28250":-1,"28251":-1,"28252":-1,"28253":-1,"28254":-1,"28255":-1,"28256":-1,"28257":-1,"28258":-1,"28259":-1,"28260":-1,"28261":-1,"28262":-1,"28263":-1,"28264":-1,"28265":-1,"28266":-1,"28267":-1,"28268":-1,"28269":-1,"28270":-1,"28271":-1,"28272":-1,"28273":1588,"28274":-1,"28275":1587,"28276":-1,"28277":-1,"28278":-1,"28279":-1,"28280":1587,"28281":0,"28282":-1,"28283":-1,"28284":-1,"28285":-1,"28286":1586,"28287":-1,"28288":-1,"28289":-1,"28290":-1,"28291":1587,"28292":-1,"28293":-1,"28294":-1,"28295":-1,"28296":-1,"28297":0,"28298":-1,"28299":-1,"28300":-1,"28301":1588,"28302":-1,"28303":-1,"28304":-1,"28305":-1,"28306":-1,"28307":-1,"28308":-1,"28309":-1,"28310":-1,"28311":1586,"28312":0,"28313":-1,"28314":-1,"28315":-1,"28316":-1,"28317":-1,"28318":-1,"28319":-1,"28320":-1,"28321":-1,"28322":-1,"28323":0,"28324":-1,"28325":-1,"28326":-1,"28327":-1,"28328":-1,"28329":-1,"28330":-1,"28331":1589,"28332":-1,"28333":-1,"28334":-1,"28335":-1,"28336":-1,"28337":-1,"28338":-1,"28339":-1,"28340":-1,"28341":-1,"28342":0,"28343":-1,"28344":-1,"28345":-1,"28346":-1,"28347":1587,"28348":-1,"28349":1587,"28350":-1,"28351":-1,"28352":-1,"28353":-1,"28354":-1,"28355":-1,"28356":0,"28357":1587,"28358":-1,"28359":-1,"28360":-1,"28361":-1,"28362":-1,"28363":-1,"28364":-1,"28365":-1,"28366":-1,"28367":-1,"28368":1588,"28369":-1,"28370":-1,"28371":-1,"28372":-1,"28373":-1,"28374":1587,"28375":-1,"28376":1587,"28377":-1,"28378":-1,"28379":-1,"28380":-1,"28381":-1,"28382":-1,"28383":-1,"28384":1588,"28385":-1,"28386":-1,"28387":-1,"28388":-1,"28389":-1,"28390":-1,"28391":-1,"28392":-1,"28393":1589,"28394":-1,"28395":-1,"28396":-1,"28397":-1,"28398":-1,"28399":-1,"28400":-1,"28401":-1,"28402":-1,"28403":-1,"28404":1587,"28405":-1,"28406":-1,"28407":-1,"28408":-1,"28409":-1,"28410":-1,"28411":-1,"28412":-1,"28413":-1,"28414":-1,"28415":-1,"28416":-1,"28417":-1,"28418":-1,"28419":-1,"28420":0,"28421":-1,"28422":1588,"28423":-1,"28424":-1,"28425":-1,"28426":-1,"28427":-1,"28428":-1,"28429":1588,"28430":-1,"28431":0,"28432":-1,"28433":-1,"28434":-1,"28435":-1,"28436":0,"28437":1586,"28438":-1,"28439":-1,"28440":-1,"28441":-1,"28442":-1,"28443":-1,"28444":-1,"28445":-1,"28446":0,"28447":-1,"28448":-1,"28449":-1,"28450":-1,"28451":-1,"28452":-1,"28453":-1,"28454":1589,"28455":-1,"28456":-1,"28457":-1,"28458":-1,"28459":-1,"28460":-1,"28461":-1,"28462":-1,"28463":-1,"28464":-1,"28465":-1,"28466":-1,"28467":-1,"28468":-1,"28469":-1,"28470":-1,"28471":1586,"28472":-1,"28473":-1,"28474":-1,"28475":-1,"28476":-1,"28477":-1,"28478":-1,"28479":-1,"28480":-1,"28481":-1,"28482":-1,"28483":-1,"28484":-1,"28485":-1,"28486":-1,"28487":-1,"28488":-1,"28489":-1,"28490":-1,"28491":-1,"28492":1586,"28493":-1,"28494":-1,"28495":-1,"28496":-1,"28497":-1,"28498":-1,"28499":-1,"28500":-1,"28501":-1,"28502":-1,"28503":-1,"28504":-1,"28505":1587,"28506":-1,"28507":-1,"28508":-1,"28509":-1,"28510":-1,"28511":-1,"28512":1588,"28513":-1,"28514":-1,"28515":-1,"28516":-1,"28517":-1,"28518":-1,"28519":-1,"28520":-1,"28521":-1,"28522":-1,"28523":-1,"28524":-1,"28525":1587,"28526":-1,"28527":-1,"28528":-1,"28529":-1,"28530":-1,"28531":-1,"28532":-1,"28533":-1,"28534":-1,"28535":-1,"28536":-1,"28537":0,"28538":-1,"28539":1588,"28540":-1,"28541":-1,"28542":-1,"28543":-1,"28544":-1,"28545":-1,"28546":-1,"28547":-1,"28548":-1,"28549":-1,"28550":1589,"28551":-1,"28552":-1,"28553":-1,"28554":-1,"28555":1587,"28556":-1,"28557":-1,"28558":-1,"28559":-1,"28560":-1,"28561":-1,"28562":-1,"28563":-1,"28564":-1,"28565":-1,"28566":-1,"28567":-1,"28568":1587,"28569":1587,"28570":-1,"28571":-1,"28572":1588,"28573":-1,"28574":-1,"28575":-1,"28576":-1,"28577":-1,"28578":-1,"28579":-1,"28580":-1,"28581":-1,"28582":0,"28583":-1,"28584":-1,"28585":-1,"28586":-1,"28587":-1,"28588":1587,"28589":-1,"28590":-1,"28591":-1,"28592":-1,"28593":-1,"28594":-1,"28595":-1,"28596":-1,"28597":-1,"28598":-1,"28599":-1,"28600":1588,"28601":-1,"28602":-1,"28603":1588,"28604":-1,"28605":-1,"28606":1586,"28607":0,"28608":-1,"28609":-1,"28610":-1,"28611":-1,"28612":-1,"28613":-1,"28614":-1,"28615":-1,"28616":-1,"28617":-1,"28618":-1,"28619":-1,"28620":-1,"28621":-1,"28622":-1,"28623":-1,"28624":1588,"28625":1588,"28626":-1,"28627":-1,"28628":-1,"28629":0,"28630":-1,"28631":-1,"28632":1589,"28633":-1,"28634":-1,"28635":-1,"28636":1587,"28637":-1,"28638":-1,"28639":-1,"28640":-1,"28641":1589,"28642":-1,"28643":-1,"28644":1589,"28645":-1,"28646":-1,"28647":-1,"28648":-1,"28649":-1,"28650":-1,"28651":-1,"28652":-1,"28653":-1,"28654":-1,"28655":-1,"28656":-1,"28657":-1,"28658":-1,"28659":-1,"28660":1589,"28661":-1,"28662":-1,"28663":-1,"28664":-1,"28665":-1,"28666":-1,"28667":1587,"28668":-1,"28669":-1,"28670":1587,"28671":-1,"28672":-1,"28673":-1,"28674":-1,"28675":-1,"28676":-1,"28677":-1,"28678":1586,"28679":-1,"28680":-1,"28681":-1,"28682":-1,"28683":-1,"28684":-1,"28685":-1,"28686":-1,"28687":1589,"28688":-1,"28689":-1,"28690":-1,"28691":-1,"28692":-1,"28693":-1,"28694":-1,"28695":-1,"28696":-1,"28697":-1,"28698":-1,"28699":-1,"28700":-1,"28701":-1,"28702":-1,"28703":-1,"28704":-1,"28705":1589,"28706":1589,"28707":0,"28708":-1,"28709":-1,"28710":-1,"28711":-1,"28712":-1,"28713":-1,"28714":-1,"28715":-1,"28716":-1,"28717":-1,"28718":-1,"28719":-1,"28720":-1,"28721":0,"28722":-1,"28723":-1,"28724":-1,"28725":-1,"28726":-1,"28727":-1,"28728":-1,"28729":-1,"28730":1586,"28731":-1,"28732":-1,"28733":-1,"28734":-1,"28735":-1,"28736":-1,"28737":-1,"28738":-1,"28739":-1,"28740":-1,"28741":-1,"28742":-1,"28743":-1,"28744":-1,"28745":-1,"28746":-1,"28747":-1,"28748":-1,"28749":-1,"28750":0,"28751":-1,"28752":-1,"28753":-1,"28754":-1,"28755":-1,"28756":-1,"28757":1589,"28758":-1,"28759":-1,"28760":-1,"28761":-1,"28762":-1,"28763":-1,"28764":-1,"28765":-1,"28766":-1,"28767":-1,"28768":-1,"28769":-1,"28770":-1,"28771":-1,"28772":-1,"28773":-1,"28774":0,"28775":1588,"28776":-1,"28777":1587,"28778":-1,"28779":1586,"28780":-1,"28781":-1,"28782":-1,"28783":-1,"28784":-1,"28785":-1,"28786":-1,"28787":1587,"28788":1587,"28789":-1,"28790":-1,"28791":-1,"28792":-1,"28793":-1,"28794":-1,"28795":-1,"28796":-1,"28797":-1,"28798":1588,"28799":-1,"28800":-1,"28801":-1,"28802":-1,"28803":-1,"28804":-1,"28805":-1,"28806":-1,"28807":-1,"28808":-1,"28809":-1,"28810":-1,"28811":1587,"28812":1589,"28813":-1,"28814":-1,"28815":-1,"28816":-1,"28817":-1,"28818":-1,"28819":1588,"28820":-1,"28821":1589,"28822":-1,"28823":-1,"28824":1588,"28825":-1,"28826":-1,"28827":-1,"28828":-1,"28829":-1,"28830":-1,"28831":-1,"28832":-1,"28833":1587,"28834":-1,"28835":-1,"28836":-1,"28837":-1,"28838":1587,"28839":-1,"28840":-1,"28841":1588,"28842":-1,"28843":-1,"28844":-1,"28845":-1,"28846":1588,"28847":-1,"28848":1588,"28849":-1,"28850":-1,"28851":-1,"28852":-1,"28853":-1,"28854":-1,"28855":1588,"28856":-1,"28857":-1,"28858":-1,"28859":-1,"28860":-1,"28861":-1,"28862":-1,"28863":1587,"28864":-1,"28865":-1,"28866":-1,"28867":-1,"28868":-1,"28869":1587,"28870":-1,"28871":-1,"28872":-1,"28873":-1,"28874":-1,"28875":-1,"28876":-1,"28877":-1,"28878":0,"28879":-1,"28880":-1,"28881":-1,"28882":-1,"28883":-1,"28884":0,"28885":-1,"28886":-1,"28887":-1,"28888":-1,"28889":-1,"28890":-1,"28891":-1,"28892":-1,"28893":-1,"28894":-1,"28895":-1,"28896":-1,"28897":-1,"28898":-1,"28899":1587,"28900":-1,"28901":-1,"28902":-1,"28903":1587,"28904":-1,"28905":-1,"28906":-1,"28907":-1,"28908":-1,"28909":-1,"28910":-1,"28911":1586,"28912":-1,"28913":-1,"28914":1588,"28915":-1,"28916":-1,"28917":-1,"28918":-1,"28919":-1,"28920":-1,"28921":-1,"28922":-1,"28923":-1,"28924":-1,"28925":-1,"28926":-1,"28927":-1,"28928":-1,"28929":-1,"28930":-1,"28931":-1,"28932":-1,"28933":-1,"28934":-1,"28935":-1,"28936":1587,"28937":-1,"28938":-1,"28939":-1,"28940":-1,"28941":1589,"28942":1587,"28943":-1,"28944":1587,"28945":-1,"28946":-1,"28947":-1,"28948":1588,"28949":-1,"28950":-1,"28951":-1,"28952":-1,"28953":1587,"28954":-1,"28955":-1,"28956":-1,"28957":-1,"28958":-1,"28959":-1,"28960":0,"28961":1588,"28962":-1,"28963":1586,"28964":-1,"28965":1588,"28966":-1,"28967":-1,"28968":1588,"28969":-1,"28970":-1,"28971":-1,"28972":-1,"28973":-1,"28974":-1,"28975":-1,"28976":-1,"28977":1587,"28978":-1,"28979":-1,"28980":-1,"28981":-1,"28982":-1,"28983":-1,"28984":-1,"28985":-1,"28986":-1,"28987":-1,"28988":1588,"28989":-1,"28990":-1,"28991":-1,"28992":-1,"28993":-1,"28994":-1,"28995":-1,"28996":-1,"28997":-1,"28998":-1,"28999":1587,"29000":-1,"29001":-1,"29002":-1,"29003":-1,"29004":-1,"29005":-1,"29006":-1,"29007":-1,"29008":-1,"29009":1588,"29010":-1,"29011":-1,"29012":1588,"29013":-1,"29014":-1,"29015":-1,"29016":-1,"29017":-1,"29018":-1,"29019":-1,"29020":-1,"29021":-1,"29022":-1,"29023":-1,"29024":-1,"29025":-1,"29026":-1,"29027":-1,"29028":-1,"29029":1588,"29030":-1,"29031":-1,"29032":-1,"29033":-1,"29034":-1,"29035":-1,"29036":-1,"29037":-1,"29038":-1,"29039":-1,"29040":-1,"29041":-1,"29042":-1,"29043":-1,"29044":1588,"29045":-1,"29046":-1,"29047":-1,"29048":-1,"29049":-1,"29050":-1,"29051":-1,"29052":-1,"29053":-1,"29054":-1,"29055":-1,"29056":-1,"29057":-1,"29058":1586,"29059":-1,"29060":-1,"29061":-1,"29062":-1,"29063":-1,"29064":1589,"29065":-1,"29066":1589,"29067":-1,"29068":-1,"29069":-1,"29070":-1,"29071":-1,"29072":-1,"29073":-1,"29074":-1,"29075":0,"29076":-1,"29077":-1,"29078":-1,"29079":-1,"29080":-1,"29081":1586,"29082":1587,"29083":-1,"29084":-1,"29085":-1,"29086":-1,"29087":-1,"29088":-1,"29089":-1,"29090":-1,"29091":-1,"29092":-1,"29093":-1,"29094":-1,"29095":-1,"29096":1588,"29097":-1,"29098":-1,"29099":-1,"29100":-1,"29101":-1,"29102":-1,"29103":-1,"29104":-1,"29105":-1,"29106":-1,"29107":-1,"29108":-1,"29109":-1,"29110":-1,"29111":-1,"29112":0,"29113":-1,"29114":-1,"29115":-1,"29116":-1,"29117":1587,"29118":-1,"29119":-1,"29120":-1,"29121":-1,"29122":-1,"29123":-1,"29124":1589,"29125":-1,"29126":-1,"29127":-1,"29128":-1,"29129":-1,"29130":-1,"29131":-1,"29132":-1,"29133":-1,"29134":-1,"29135":-1,"29136":-1,"29137":-1,"29138":-1,"29139":-1,"29140":-1,"29141":-1,"29142":-1,"29143":-1,"29144":-1,"29145":-1,"29146":-1,"29147":-1,"29148":1588,"29149":-1,"29150":-1,"29151":1586,"29152":-1,"29153":-1,"29154":-1,"29155":1589,"29156":-1,"29157":-1,"29158":-1,"29159":-1,"29160":-1,"29161":-1,"29162":-1,"29163":-1,"29164":-1,"29165":-1,"29166":-1,"29167":-1,"29168":-1,"29169":-1,"29170":-1,"29171":-1,"29172":-1,"29173":-1,"29174":-1,"29175":-1,"29176":-1,"29177":-1,"29178":-1,"29179":-1,"29180":-1,"29181":-1,"29182":-1,"29183":-1,"29184":-1,"29185":-1,"29186":1588,"29187":-1,"29188":1587,"29189":-1,"29190":-1,"29191":-1,"29192":-1,"29193":-1,"29194":1587,"29195":-1,"29196":0,"29197":1586,"29198":-1,"29199":-1,"29200":-1,"29201":-1,"29202":-1,"29203":-1,"29204":1587,"29205":-1,"29206":-1,"29207":0,"29208":1588,"29209":-1,"29210":1589,"29211":-1,"29212":-1,"29213":-1,"29214":-1,"29215":-1,"29216":-1,"29217":-1,"29218":-1,"29219":-1,"29220":-1,"29221":-1,"29222":1587,"29223":1588,"29224":-1,"29225":1589,"29226":-1,"29227":1588,"29228":-1,"29229":-1,"29230":-1,"29231":-1,"29232":-1,"29233":-1,"29234":1588,"29235":1586,"29236":1587,"29237":1589,"29238":-1,"29239":1588,"29240":-1,"29241":-1,"29242":-1,"29243":-1,"29244":-1,"29245":1589,"29246":-1,"29247":1588,"29248":-1,"29249":-1,"29250":1587,"29251":-1,"29252":-1,"29253":-1,"29254":-1,"29255":1587,"29256":-1,"29257":-1,"29258":-1,"29259":-1,"29260":-1,"29261":-1,"29262":0,"29263":-1,"29264":-1,"29265":-1,"29266":1588,"29267":-1,"29268":-1,"29269":-1,"29270":-1,"29271":-1,"29272":-1,"29273":-1,"29274":0,"29275":-1,"29276":0,"29277":1588,"29278":-1,"29279":1588,"29280":-1,"29281":-1,"29282":-1,"29283":-1,"29284":1588,"29285":0,"29286":-1,"29287":-1,"29288":-1,"29289":-1,"29290":-1,"29291":-1,"29292":-1,"29293":-1,"29294":-1,"29295":-1,"29296":-1,"29297":-1,"29298":-1,"29299":-1,"29300":-1,"29301":-1,"29302":-1,"29303":-1,"29304":-1,"29305":-1,"29306":-1,"29307":1588,"29308":-1,"29309":-1,"29310":-1,"29311":-1,"29312":-1,"29313":-1,"29314":0,"29315":-1,"29316":-1,"29317":-1,"29318":-1,"29319":-1,"29320":-1,"29321":0,"29322":0,"29323":1587,"29324":-1,"29325":-1,"29326":-1,"29327":-1,"29328":1587,"29329":-1,"29330":-1,"29331":1586,"29332":1587,"29333":-1,"29334":-1,"29335":-1,"29336":-1,"29337":-1,"29338":-1,"29339":-1,"29340":-1,"29341":-1,"29342":-1,"29343":-1,"29344":-1,"29345":-1,"29346":-1,"29347":-1,"29348":-1,"29349":-1,"29350":-1,"29351":-1,"29352":-1,"29353":-1,"29354":-1,"29355":-1,"29356":-1,"29357":-1,"29358":-1,"29359":1589,"29360":-1,"29361":-1,"29362":-1,"29363":-1,"29364":-1,"29365":-1,"29366":-1,"29367":-1,"29368":-1,"29369":-1,"29370":-1,"29371":-1,"29372":-1,"29373":-1,"29374":-1,"29375":-1,"29376":-1,"29377":-1,"29378":-1,"29379":-1,"29380":-1,"29381":-1,"29382":-1,"29383":-1,"29384":-1,"29385":-1,"29386":-1,"29387":-1,"29388":-1,"29389":-1,"29390":-1,"29391":-1,"29392":-1,"29393":-1,"29394":1587,"29395":-1,"29396":-1,"29397":-1,"29398":-1,"29399":1588,"29400":-1,"29401":-1,"29402":-1,"29403":-1,"29404":-1,"29405":-1,"29406":-1,"29407":-1,"29408":-1,"29409":-1,"29410":-1,"29411":-1,"29412":-1,"29413":-1,"29414":-1,"29415":-1,"29416":-1,"29417":-1,"29418":0,"29419":-1,"29420":0,"29421":-1,"29422":-1,"29423":-1,"29424":1588,"29425":-1,"29426":-1,"29427":-1,"29428":-1,"29429":0,"29430":-1,"29431":-1,"29432":-1,"29433":-1,"29434":-1,"29435":1586,"29436":1587,"29437":1587,"29438":-1,"29439":-1,"29440":-1,"29441":-1,"29442":-1,"29443":-1,"29444":0,"29445":1588,"29446":-1,"29447":-1,"29448":-1,"29449":-1,"29450":-1,"29451":1587,"29452":-1,"29453":-1,"29454":0,"29455":-1,"29456":-1,"29457":-1,"29458":-1,"29459":-1,"29460":-1,"29461":-1,"29462":1588,"29463":-1,"29464":1587,"29465":-1,"29466":-1,"29467":-1,"29468":1589,"29469":-1,"29470":-1,"29471":-1,"29472":1588,"29473":-1,"29474":-1,"29475":-1,"29476":-1,"29477":-1,"29478":-1,"29479":-1,"29480":1588,"29481":1586,"29482":-1,"29483":-1,"29484":-1,"29485":-1,"29486":1586,"29487":-1,"29488":-1,"29489":-1,"29490":-1,"29491":-1,"29492":1587,"29493":-1,"29494":-1,"29495":-1,"29496":1587,"29497":1587,"29498":-1,"29499":-1,"29500":-1,"29501":-1,"29502":-1,"29503":-1,"29504":-1,"29505":1587,"29506":-1,"29507":-1,"29508":-1,"29509":-1,"29510":1587,"29511":-1,"29512":-1,"29513":-1,"29514":-1,"29515":-1,"29516":-1,"29517":-1,"29518":1588,"29519":-1,"29520":-1,"29521":-1,"29522":-1,"29523":-1,"29524":-1,"29525":1587,"29526":-1,"29527":-1,"29528":-1,"29529":-1,"29530":-1,"29531":1587,"29532":-1,"29533":-1,"29534":-1,"29535":-1,"29536":-1,"29537":-1,"29538":-1,"29539":-1,"29540":-1,"29541":0,"29542":-1,"29543":-1,"29544":1586,"29545":-1,"29546":-1,"29547":-1,"29548":-1,"29549":-1,"29550":-1,"29551":-1,"29552":-1,"29553":-1,"29554":-1,"29555":-1,"29556":1588,"29557":-1,"29558":-1,"29559":-1,"29560":-1,"29561":-1,"29562":-1,"29563":1588,"29564":-1,"29565":0,"29566":-1,"29567":-1,"29568":-1,"29569":-1,"29570":-1,"29571":-1,"29572":-1,"29573":-1,"29574":-1,"29575":-1,"29576":-1,"29577":-1,"29578":1588,"29579":-1,"29580":-1,"29581":-1,"29582":-1,"29583":-1,"29584":-1,"29585":-1,"29586":-1,"29587":-1,"29588":-1,"29589":-1,"29590":-1,"29591":-1,"29592":1587,"29593":-1,"29594":-1,"29595":1586,"29596":-1,"29597":-1,"29598":-1,"29599":-1,"29600":-1,"29601":-1,"29602":-1,"29603":-1,"29604":-1,"29605":-1,"29606":-1,"29607":-1,"29608":-1,"29609":-1,"29610":-1,"29611":-1,"29612":-1,"29613":-1,"29614":-1,"29615":-1,"29616":-1,"29617":1588,"29618":-1,"29619":-1,"29620":-1,"29621":-1,"29622":-1,"29623":-1,"29624":-1,"29625":-1,"29626":-1,"29627":-1,"29628":-1,"29629":0,"29630":-1,"29631":-1,"29632":-1,"29633":-1,"29634":-1,"29635":1587,"29636":-1,"29637":-1,"29638":-1,"29639":-1,"29640":-1,"29641":-1,"29642":-1,"29643":1586,"29644":1586,"29645":-1,"29646":-1,"29647":-1,"29648":-1,"29649":-1,"29650":1588,"29651":1589,"29652":-1,"29653":-1,"29654":-1,"29655":-1,"29656":-1,"29657":-1,"29658":-1,"29659":-1,"29660":-1,"29661":-1,"29662":-1,"29663":-1,"29664":-1,"29665":-1,"29666":-1,"29667":-1,"29668":-1,"29669":-1,"29670":-1,"29671":-1,"29672":-1,"29673":-1,"29674":-1,"29675":-1,"29676":-1,"29677":-1,"29678":-1,"29679":-1,"29680":-1,"29681":-1,"29682":-1,"29683":-1,"29684":-1,"29685":1589,"29686":-1,"29687":-1,"29688":-1,"29689":-1,"29690":-1,"29691":1586,"29692":-1,"29693":-1,"29694":-1,"29695":-1,"29696":-1,"29697":-1,"29698":-1,"29699":-1,"29700":-1,"29701":-1,"29702":-1,"29703":-1,"29704":-1,"29705":-1,"29706":-1,"29707":0,"29708":-1,"29709":-1,"29710":-1,"29711":1587,"29712":-1,"29713":-1,"29714":-1,"29715":-1,"29716":-1,"29717":-1,"29718":-1,"29719":0,"29720":-1,"29721":1587,"29722":-1,"29723":1587,"29724":-1,"29725":-1,"29726":-1,"29727":-1,"29728":-1,"29729":-1,"29730":1586,"29731":-1,"29732":-1,"29733":-1,"29734":-1,"29735":-1,"29736":-1,"29737":-1,"29738":1588,"29739":-1,"29740":-1,"29741":-1,"29742":-1,"29743":-1,"29744":-1,"29745":-1,"29746":-1,"29747":-1,"29748":-1,"29749":-1,"29750":-1,"29751":-1,"29752":-1,"29753":-1,"29754":1587,"29755":-1,"29756":-1,"29757":-1,"29758":-1,"29759":-1,"29760":-1,"29761":-1,"29762":-1,"29763":-1,"29764":-1,"29765":-1,"29766":-1,"29767":-1,"29768":-1,"29769":-1,"29770":1588,"29771":-1,"29772":-1,"29773":-1,"29774":-1,"29775":-1,"29776":-1,"29777":-1,"29778":-1,"29779":-1,"29780":-1,"29781":-1,"29782":-1,"29783":1587,"29784":-1,"29785":-1,"29786":1588,"29787":-1,"29788":-1,"29789":1587,"29790":-1,"29791":-1,"29792":-1,"29793":-1,"29794":-1,"29795":-1,"29796":-1,"29797":-1,"29798":-1,"29799":-1,"29800":1588,"29801":-1,"29802":1587,"29803":-1,"29804":1587,"29805":-1,"29806":-1,"29807":1589,"29808":-1,"29809":-1,"29810":-1,"29811":-1,"29812":-1,"29813":-1,"29814":-1,"29815":-1,"29816":-1,"29817":-1,"29818":-1,"29819":-1,"29820":-1,"29821":-1,"29822":-1,"29823":-1,"29824":1588,"29825":-1,"29826":-1,"29827":-1,"29828":1587,"29829":-1,"29830":-1,"29831":1586,"29832":-1,"29833":-1,"29834":1588,"29835":-1,"29836":-1,"29837":-1,"29838":1587,"29839":0,"29840":-1,"29841":-1,"29842":1587,"29843":-1,"29844":-1,"29845":-1,"29846":0,"29847":-1,"29848":-1,"29849":-1,"29850":-1,"29851":-1,"29852":1589,"29853":-1,"29854":-1,"29855":1587,"29856":-1,"29857":-1,"29858":-1,"29859":-1,"29860":-1,"29861":-1,"29862":-1,"29863":-1,"29864":-1,"29865":-1,"29866":-1,"29867":1588,"29868":1587,"29869":1587,"29870":-1,"29871":-1,"29872":-1,"29873":-1,"29874":-1,"29875":1589,"29876":-1,"29877":-1,"29878":-1,"29879":-1,"29880":-1,"29881":-1,"29882":-1,"29883":-1,"29884":-1,"29885":0,"29886":-1,"29887":-1,"29888":-1,"29889":-1,"29890":-1,"29891":-1,"29892":-1,"29893":-1,"29894":1588,"29895":-1,"29896":-1,"29897":1587,"29898":-1,"29899":-1,"29900":-1,"29901":0,"29902":-1,"29903":1586,"29904":-1,"29905":-1,"29906":-1,"29907":-1,"29908":-1,"29909":-1,"29910":-1,"29911":1587,"29912":-1,"29913":-1,"29914":-1,"29915":-1,"29916":-1,"29917":-1,"29918":-1,"29919":-1,"29920":-1,"29921":-1,"29922":-1,"29923":1588,"29924":0,"29925":-1,"29926":-1,"29927":-1,"29928":-1,"29929":-1,"29930":-1,"29931":-1,"29932":-1,"29933":-1,"29934":-1,"29935":1588,"29936":-1,"29937":-1,"29938":1588,"29939":-1,"29940":1587,"29941":-1,"29942":1587,"29943":-1,"29944":-1,"29945":1588,"29946":-1,"29947":-1,"29948":-1,"29949":-1,"29950":-1,"29951":-1,"29952":-1,"29953":-1,"29954":-1,"29955":-1,"29956":-1,"29957":-1,"29958":-1,"29959":-1,"29960":-1,"29961":-1,"29962":-1,"29963":-1,"29964":-1,"29965":0,"29966":-1,"29967":1589,"29968":-1,"29969":-1,"29970":1587,"29971":-1,"29972":1588,"29973":-1,"29974":-1,"29975":1587,"29976":-1,"29977":-1,"29978":-1,"29979":-1,"29980":-1,"29981":-1,"29982":-1,"29983":-1,"29984":-1,"29985":-1,"29986":-1,"29987":-1,"29988":-1,"29989":1586,"29990":-1,"29991":-1,"29992":-1,"29993":-1,"29994":-1,"29995":-1,"29996":-1,"29997":-1,"29998":-1,"29999":-1,"30000":-1,"30001":-1,"30002":-1,"30003":-1,"30004":-1,"30005":-1,"30006":0,"30007":-1,"30008":-1,"30009":-1,"30010":-1,"30011":-1,"30012":-1,"30013":-1,"30014":-1,"30015":-1,"30016":-1,"30017":-1,"30018":-1,"30019":-1,"30020":-1,"30021":-1,"30022":-1,"30023":-1,"30024":-1,"30025":-1,"30026":-1,"30027":-1,"30028":-1,"30029":-1,"30030":-1,"30031":-1,"30032":-1,"30033":-1,"30034":-1,"30035":-1,"30036":-1,"30037":-1,"30038":-1,"30039":-1,"30040":-1,"30041":-1,"30042":-1,"30043":-1,"30044":-1,"30045":-1,"30046":-1,"30047":-1,"30048":-1,"30049":-1,"30050":-1,"30051":-1,"30052":-1,"30053":-1,"30054":-1,"30055":-1,"30056":-1,"30057":-1,"30058":-1,"30059":-1,"30060":-1,"30061":-1,"30062":-1,"30063":-1,"30064":-1,"30065":-1,"30066":-1,"30067":-1,"30068":-1,"30069":-1,"30070":-1,"30071":-1,"30072":-1,"30073":1587,"30074":0,"30075":-1,"30076":-1,"30077":-1,"30078":1589,"30079":-1,"30080":-1,"30081":-1,"30082":-1,"30083":-1,"30084":0,"30085":-1,"30086":-1,"30087":-1,"30088":-1,"30089":-1,"30090":-1,"30091":-1,"30092":-1,"30093":-1,"30094":-1,"30095":-1,"30096":1587,"30097":-1,"30098":-1,"30099":-1,"30100":-1,"30101":-1,"30102":-1,"30103":-1,"30104":-1,"30105":-1,"30106":-1,"30107":-1,"30108":-1,"30109":-1,"30110":-1,"30111":-1,"30112":-1,"30113":-1,"30114":-1,"30115":-1,"30116":-1,"30117":-1,"30118":-1,"30119":-1,"30120":-1,"30121":-1,"30122":-1,"30123":-1,"30124":1588,"30125":0,"30126":-1,"30127":-1,"30128":1586,"30129":-1,"30130":-1,"30131":-1,"30132":-1,"30133":-1,"30134":-1,"30135":-1,"30136":-1,"30137":0,"30138":-1,"30139":-1,"30140":1586,"30141":-1,"30142":-1,"30143":-1,"30144":-1,"30145":-1,"30146":-1,"30147":-1,"30148":-1,"30149":1588,"30150":-1,"30151":-1,"30152":-1,"30153":-1,"30154":-1,"30155":1586,"30156":-1,"30157":-1,"30158":-1,"30159":-1,"30160":-1,"30161":-1,"30162":-1,"30163":-1,"30164":-1,"30165":-1,"30166":-1,"30167":-1,"30168":-1,"30169":-1,"30170":1588,"30171":1587,"30172":-1,"30173":-1,"30174":1588,"30175":-1,"30176":-1,"30177":-1,"30178":-1,"30179":-1,"30180":-1,"30181":-1,"30182":-1,"30183":-1,"30184":-1,"30185":-1,"30186":-1,"30187":-1,"30188":-1,"30189":1588,"30190":-1,"30191":-1,"30192":-1,"30193":-1,"30194":-1,"30195":-1,"30196":-1,"30197":-1,"30198":-1,"30199":-1,"30200":-1,"30201":1589,"30202":-1,"30203":-1,"30204":-1,"30205":-1,"30206":-1,"30207":-1,"30208":-1,"30209":1587,"30210":-1,"30211":-1,"30212":-1,"30213":-1,"30214":-1,"30215":-1,"30216":1588,"30217":-1,"30218":-1,"30219":-1,"30220":-1,"30221":1587,"30222":-1,"30223":-1,"30224":-1,"30225":-1,"30226":-1,"30227":-1,"30228":-1,"30229":-1,"30230":0,"30231":-1,"30232":-1,"30233":-1,"30234":-1,"30235":-1,"30236":-1,"30237":-1,"30238":-1,"30239":-1,"30240":-1,"30241":-1,"30242":-1,"30243":-1,"30244":-1,"30245":-1,"30246":-1,"30247":-1,"30248":1587,"30249":-1,"30250":-1,"30251":-1,"30252":-1,"30253":-1,"30254":-1,"30255":-1,"30256":-1,"30257":-1,"30258":-1,"30259":-1,"30260":-1,"30261":-1,"30262":-1,"30263":-1,"30264":1586,"30265":-1,"30266":-1,"30267":-1,"30268":-1,"30269":-1,"30270":1589,"30271":-1,"30272":-1,"30273":1588,"30274":-1,"30275":-1,"30276":-1,"30277":-1,"30278":-1,"30279":-1,"30280":-1,"30281":-1,"30282":-1,"30283":-1,"30284":1589,"30285":-1,"30286":1587,"30287":-1,"30288":-1,"30289":-1,"30290":-1,"30291":1589,"30292":-1,"30293":-1,"30294":-1,"30295":-1,"30296":-1,"30297":1588,"30298":-1,"30299":1588,"30300":-1,"30301":-1,"30302":-1,"30303":-1,"30304":-1,"30305":-1,"30306":1587,"30307":-1,"30308":-1,"30309":-1,"30310":-1,"30311":-1,"30312":1588,"30313":-1,"30314":-1,"30315":-1,"30316":1588,"30317":-1,"30318":-1,"30319":-1,"30320":-1,"30321":-1,"30322":-1,"30323":1586,"30324":-1,"30325":-1,"30326":-1,"30327":-1,"30328":-1,"30329":-1,"30330":-1,"30331":-1,"30332":-1,"30333":-1,"30334":-1,"30335":0,"30336":-1,"30337":-1,"30338":-1,"30339":-1,"30340":-1,"30341":-1,"30342":-1,"30343":-1,"30344":-1,"30345":-1,"30346":-1,"30347":-1,"30348":-1,"30349":-1,"30350":-1,"30351":-1,"30352":-1,"30353":-1,"30354":-1,"30355":0,"30356":-1,"30357":-1,"30358":-1,"30359":-1,"30360":0,"30361":-1,"30362":-1,"30363":-1,"30364":-1,"30365":1587,"30366":-1,"30367":1587,"30368":1589,"30369":-1,"30370":-1,"30371":1588,"30372":-1,"30373":-1,"30374":-1,"30375":-1,"30376":-1,"30377":-1,"30378":1587,"30379":-1,"30380":-1,"30381":-1,"30382":-1,"30383":-1,"30384":1587,"30385":-1,"30386":-1,"30387":1589,"30388":-1,"30389":-1,"30390":-1,"30391":-1,"30392":-1,"30393":-1,"30394":-1,"30395":-1,"30396":-1,"30397":-1,"30398":-1,"30399":-1,"30400":-1,"30401":1587,"30402":-1,"30403":-1,"30404":-1,"30405":-1,"30406":-1,"30407":1588,"30408":-1,"30409":1588,"30410":-1,"30411":-1,"30412":-1,"30413":-1,"30414":-1,"30415":-1,"30416":1587,"30417":-1,"30418":-1,"30419":-1,"30420":-1,"30421":-1,"30422":-1,"30423":-1,"30424":-1,"30425":-1,"30426":-1,"30427":-1,"30428":-1,"30429":-1,"30430":-1,"30431":-1,"30432":-1,"30433":1587,"30434":-1,"30435":-1,"30436":-1,"30437":-1,"30438":-1,"30439":-1,"30440":-1,"30441":-1,"30442":-1,"30443":-1,"30444":-1,"30445":-1,"30446":-1,"30447":-1,"30448":-1,"30449":1586,"30450":-1,"30451":-1,"30452":-1,"30453":-1,"30454":1586,"30455":-1,"30456":-1,"30457":-1,"30458":-1,"30459":-1,"30460":-1,"30461":-1,"30462":-1,"30463":-1,"30464":-1,"30465":-1,"30466":-1,"30467":1589,"30468":-1,"30469":-1,"30470":-1,"30471":-1,"30472":1588,"30473":-1,"30474":-1,"30475":-1,"30476":-1,"30477":-1,"30478":1588,"30479":-1,"30480":-1,"30481":-1,"30482":-1,"30483":1589,"30484":-1,"30485":-1,"30486":-1,"30487":-1,"30488":-1,"30489":-1,"30490":-1,"30491":-1,"30492":-1,"30493":-1,"30494":1588,"30495":1588,"30496":-1,"30497":-1,"30498":-1,"30499":-1,"30500":-1,"30501":-1,"30502":1587,"30503":-1,"30504":1589,"30505":1588,"30506":-1,"30507":-1,"30508":-1,"30509":1588,"30510":-1,"30511":-1,"30512":1589,"30513":-1,"30514":-1,"30515":-1,"30516":-1,"30517":-1,"30518":-1,"30519":-1,"30520":1587,"30521":-1,"30522":-1,"30523":1588,"30524":1586,"30525":-1,"30526":0,"30527":-1,"30528":-1,"30529":-1,"30530":-1,"30531":-1,"30532":-1,"30533":-1,"30534":-1,"30535":1587,"30536":-1,"30537":-1,"30538":-1,"30539":0,"30540":-1,"30541":-1,"30542":-1,"30543":-1,"30544":-1,"30545":-1,"30546":-1,"30547":-1,"30548":-1,"30549":-1,"30550":1588,"30551":-1,"30552":-1,"30553":1586,"30554":-1,"30555":-1,"30556":-1,"30557":-1,"30558":0,"30559":-1,"30560":-1,"30561":0,"30562":-1,"30563":1588,"30564":-1,"30565":-1,"30566":1586,"30567":-1,"30568":1589,"30569":-1,"30570":1589,"30571":-1,"30572":0,"30573":-1,"30574":-1,"30575":-1,"30576":-1,"30577":-1,"30578":-1,"30579":-1,"30580":-1,"30581":-1,"30582":-1,"30583":-1,"30584":-1,"30585":-1,"30586":-1,"30587":-1,"30588":-1,"30589":-1,"30590":1588,"30591":-1,"30592":-1,"30593":-1,"30594":-1,"30595":-1,"30596":-1,"30597":-1,"30598":1589,"30599":0,"30600":-1,"30601":-1,"30602":1587,"30603":-1,"30604":0,"30605":-1,"30606":-1,"30607":1586,"30608":-1,"30609":-1,"30610":-1,"30611":-1,"30612":1586,"30613":1587,"30614":1588,"30615":-1,"30616":-1,"30617":-1,"30618":-1,"30619":-1,"30620":0,"30621":-1,"30622":-1,"30623":-1,"30624":-1,"30625":1587,"30626":-1,"30627":-1,"30628":-1,"30629":-1,"30630":-1,"30631":-1,"30632":-1,"30633":-1,"30634":-1,"30635":-1,"30636":-1,"30637":-1,"30638":-1,"30639":1589,"30640":-1,"30641":-1,"30642":-1,"30643":-1,"30644":-1,"30645":-1,"30646":-1,"30647":-1,"30648":-1,"30649":-1,"30650":-1,"30651":-1,"30652":-1,"30653":-1,"30654":-1,"30655":1588,"30656":-1,"30657":1587,"30658":-1,"30659":-1,"30660":-1,"30661":-1,"30662":-1,"30663":-1,"30664":-1,"30665":-1,"30666":-1,"30667":-1,"30668":-1,"30669":-1,"30670":-1,"30671":-1,"30672":-1,"30673":-1,"30674":-1,"30675":-1,"30676":-1,"30677":-1,"30678":-1,"30679":1587,"30680":-1,"30681":-1,"30682":-1,"30683":-1,"30684":1588,"30685":-1,"30686":1586,"30687":-1,"30688":-1,"30689":-1,"30690":-1,"30691":-1,"30692":1586,"30693":-1,"30694":-1,"30695":-1,"30696":-1,"30697":-1,"30698":-1,"30699":-1,"30700":-1,"30701":-1,"30702":-1,"30703":-1,"30704":-1,"30705":1588,"30706":-1,"30707":-1,"30708":-1,"30709":-1,"30710":-1,"30711":-1,"30712":-1,"30713":-1,"30714":-1,"30715":-1,"30716":-1,"30717":0,"30718":-1,"30719":-1,"30720":-1,"30721":-1,"30722":-1,"30723":-1,"30724":-1,"30725":-1,"30726":-1,"30727":-1,"30728":-1,"30729":1587,"30730":-1,"30731":1587,"30732":-1,"30733":-1,"30734":-1,"30735":-1,"30736":-1,"30737":-1,"30738":-1,"30739":-1,"30740":-1,"30741":-1,"30742":1587,"30743":-1,"30744":-1,"30745":-1,"30746":-1,"30747":-1,"30748":-1,"30749":-1,"30750":-1,"30751":-1,"30752":-1,"30753":-1,"30754":-1,"30755":-1,"30756":-1,"30757":-1,"30758":-1,"30759":-1,"30760":-1,"30761":-1,"30762":-1,"30763":-1,"30764":-1,"30765":-1,"30766":1586,"30767":-1,"30768":-1,"30769":-1,"30770":-1,"30771":-1,"30772":-1,"30773":-1,"30774":-1,"30775":-1,"30776":-1,"30777":-1,"30778":-1,"30779":-1,"30780":-1,"30781":-1,"30782":-1,"30783":-1,"30784":-1,"30785":-1,"30786":-1,"30787":-1,"30788":-1,"30789":-1,"30790":-1,"30791":-1,"30792":1586,"30793":-1,"30794":0,"30795":-1,"30796":-1,"30797":-1,"30798":-1,"30799":-1,"30800":-1,"30801":-1,"30802":-1,"30803":-1,"30804":-1,"30805":-1,"30806":-1,"30807":-1,"30808":-1,"30809":-1,"30810":-1,"30811":-1,"30812":-1,"30813":-1,"30814":-1,"30815":-1,"30816":-1,"30817":-1,"30818":-1,"30819":-1,"30820":-1,"30821":-1,"30822":-1,"30823":-1,"30824":-1,"30825":-1,"30826":-1,"30827":-1,"30828":-1,"30829":-1,"30830":-1,"30831":1588,"30832":-1,"30833":0,"30834":1587,"30835":-1,"30836":-1,"30837":-1,"30838":-1,"30839":-1,"30840":-1,"30841":-1,"30842":-1,"30843":-1,"30844":-1,"30845":0,"30846":-1,"30847":-1,"30848":-1,"30849":-1,"30850":-1,"30851":-1,"30852":-1,"30853":-1,"30854":-1,"30855":1587,"30856":-1,"30857":-1,"30858":-1,"30859":1588,"30860":-1,"30861":-1,"30862":-1,"30863":-1,"30864":-1,"30865":1588,"30866":-1,"30867":-1,"30868":-1,"30869":-1,"30870":-1,"30871":-1,"30872":-1,"30873":1589,"30874":-1,"30875":1586,"30876":-1,"30877":-1,"30878":-1,"30879":-1,"30880":-1,"30881":-1,"30882":-1,"30883":1588,"30884":1589,"30885":-1,"30886":-1,"30887":-1,"30888":-1,"30889":-1,"30890":0,"30891":-1,"30892":-1,"30893":-1,"30894":1587,"30895":-1,"30896":-1,"30897":-1,"30898":-1,"30899":-1,"30900":-1,"30901":-1,"30902":-1,"30903":-1,"30904":-1,"30905":-1,"30906":-1,"30907":-1,"30908":1586,"30909":-1,"30910":-1,"30911":-1,"30912":-1,"30913":-1,"30914":-1,"30915":-1,"30916":-1,"30917":-1,"30918":-1,"30919":-1,"30920":-1,"30921":1588,"30922":-1,"30923":1587,"30924":-1,"30925":-1,"30926":-1,"30927":1589,"30928":-1,"30929":-1,"30930":-1,"30931":1586,"30932":1586,"30933":-1,"30934":1587,"30935":-1,"30936":-1,"30937":-1,"30938":-1,"30939":-1,"30940":-1,"30941":-1,"30942":-1,"30943":-1,"30944":-1,"30945":-1,"30946":-1,"30947":-1,"30948":-1,"30949":-1,"30950":-1,"30951":-1,"30952":-1,"30953":-1,"30954":-1,"30955":1589,"30956":-1,"30957":-1,"30958":-1,"30959":1586,"30960":-1,"30961":-1,"30962":-1,"30963":-1,"30964":-1,"30965":-1,"30966":-1,"30967":-1,"30968":-1,"30969":-1,"30970":-1,"30971":-1,"30972":-1,"30973":-1,"30974":-1,"30975":-1,"30976":-1,"30977":-1,"30978":-1,"30979":-1,"30980":-1,"30981":-1,"30982":1588,"30983":-1,"30984":-1,"30985":-1,"30986":1587,"30987":-1,"30988":1588,"30989":-1,"30990":-1,"30991":-1,"30992":-1,"30993":-1,"30994":-1,"30995":-1,"30996":0,"30997":-1,"30998":-1,"30999":-1,"31000":-1,"31001":1586,"31002":-1,"31003":-1,"31004":-1,"31005":-1,"31006":-1,"31007":-1,"31008":1587,"31009":-1,"31010":-1,"31011":-1,"31012":-1,"31013":-1,"31014":-1,"31015":-1,"31016":-1,"31017":-1,"31018":1589,"31019":1587,"31020":-1,"31021":-1,"31022":-1,"31023":-1,"31024":-1,"31025":-1,"31026":-1,"31027":-1,"31028":-1,"31029":-1,"31030":-1,"31031":1587,"31032":-1,"31033":-1,"31034":-1,"31035":-1,"31036":1587,"31037":-1,"31038":-1,"31039":-1,"31040":-1,"31041":-1,"31042":-1,"31043":1589,"31044":-1,"31045":-1,"31046":-1,"31047":-1,"31048":-1,"31049":-1,"31050":-1,"31051":-1,"31052":-1,"31053":0,"31054":-1,"31055":-1,"31056":-1,"31057":-1,"31058":1589,"31059":-1,"31060":1586,"31061":-1,"31062":-1,"31063":0,"31064":-1,"31065":-1,"31066":-1,"31067":-1,"31068":-1,"31069":1588,"31070":0,"31071":-1,"31072":-1,"31073":1588,"31074":-1,"31075":-1,"31076":-1,"31077":-1,"31078":-1,"31079":-1,"31080":-1,"31081":-1,"31082":-1,"31083":-1,"31084":1587,"31085":1586,"31086":-1,"31087":-1,"31088":-1,"31089":-1,"31090":-1,"31091":-1,"31092":-1,"31093":-1,"31094":-1,"31095":1587,"31096":-1,"31097":-1,"31098":-1,"31099":1586,"31100":-1,"31101":-1,"31102":-1,"31103":1586,"31104":-1,"31105":-1,"31106":-1,"31107":-1,"31108":-1,"31109":-1,"31110":-1,"31111":-1,"31112":-1,"31113":-1,"31114":1586,"31115":-1,"31116":-1,"31117":-1,"31118":-1,"31119":1586,"31120":-1,"31121":-1,"31122":-1,"31123":-1,"31124":1589,"31125":-1,"31126":-1,"31127":-1,"31128":-1,"31129":-1,"31130":-1,"31131":-1,"31132":1587,"31133":-1,"31134":-1,"31135":-1,"31136":-1,"31137":-1,"31138":-1,"31139":1587,"31140":-1,"31141":-1,"31142":-1,"31143":0,"31144":-1,"31145":1587,"31146":-1,"31147":-1,"31148":-1,"31149":0,"31150":-1,"31151":-1,"31152":-1,"31153":-1,"31154":1588,"31155":-1,"31156":-1,"31157":-1,"31158":-1,"31159":-1,"31160":-1,"31161":-1,"31162":-1,"31163":-1,"31164":-1,"31165":-1,"31166":-1,"31167":-1,"31168":1587,"31169":-1,"31170":-1,"31171":-1,"31172":-1,"31173":-1,"31174":-1,"31175":-1,"31176":-1,"31177":-1,"31178":-1,"31179":0,"31180":-1,"31181":-1,"31182":-1,"31183":-1,"31184":-1,"31185":-1,"31186":-1,"31187":-1,"31188":-1,"31189":1587,"31190":-1,"31191":-1,"31192":-1,"31193":-1,"31194":-1,"31195":-1,"31196":-1,"31197":-1,"31198":-1,"31199":-1,"31200":-1,"31201":-1,"31202":-1,"31203":-1,"31204":-1,"31205":1588,"31206":-1,"31207":-1,"31208":-1,"31209":-1,"31210":-1,"31211":-1,"31212":-1,"31213":-1,"31214":-1,"31215":-1,"31216":-1,"31217":1586,"31218":1587,"31219":-1,"31220":-1,"31221":-1,"31222":-1,"31223":-1,"31224":-1,"31225":-1,"31226":-1,"31227":-1,"31228":-1,"31229":1588,"31230":-1,"31231":-1,"31232":-1,"31233":-1,"31234":-1,"31235":-1,"31236":-1,"31237":-1,"31238":-1,"31239":-1,"31240":0,"31241":0,"31242":-1,"31243":-1,"31244":-1,"31245":-1,"31246":-1,"31247":1589,"31248":-1,"31249":1589,"31250":-1,"31251":-1,"31252":-1,"31253":-1,"31254":-1,"31255":-1,"31256":-1,"31257":-1,"31258":-1,"31259":-1,"31260":-1,"31261":-1,"31262":-1,"31263":-1,"31264":-1,"31265":-1,"31266":-1,"31267":1588,"31268":-1,"31269":-1,"31270":-1,"31271":-1,"31272":-1,"31273":-1,"31274":1588,"31275":-1,"31276":-1,"31277":-1,"31278":-1,"31279":1587,"31280":-1,"31281":1587,"31282":-1,"31283":-1,"31284":1588,"31285":-1,"31286":1589,"31287":-1,"31288":-1,"31289":-1,"31290":-1,"31291":-1,"31292":1586,"31293":-1,"31294":-1,"31295":1588,"31296":-1,"31297":-1,"31298":-1,"31299":-1,"31300":-1,"31301":-1,"31302":1588,"31303":-1,"31304":-1,"31305":-1,"31306":1586,"31307":-1,"31308":-1,"31309":-1,"31310":-1,"31311":-1,"31312":-1,"31313":-1,"31314":1587,"31315":-1,"31316":-1,"31317":-1,"31318":-1,"31319":-1,"31320":-1,"31321":-1,"31322":-1,"31323":-1,"31324":-1,"31325":-1,"31326":-1,"31327":-1,"31328":-1,"31329":-1,"31330":0,"31331":1589,"31332":-1,"31333":-1,"31334":-1,"31335":-1,"31336":-1,"31337":-1,"31338":-1,"31339":-1,"31340":-1,"31341":-1,"31342":1587,"31343":-1,"31344":-1,"31345":-1,"31346":-1,"31347":-1,"31348":-1,"31349":-1,"31350":-1,"31351":-1,"31352":-1,"31353":-1,"31354":0,"31355":-1,"31356":-1,"31357":-1,"31358":-1,"31359":-1,"31360":-1,"31361":-1,"31362":1588,"31363":-1,"31364":-1,"31365":-1,"31366":-1,"31367":-1,"31368":-1,"31369":1587,"31370":-1,"31371":-1,"31372":-1,"31373":-1,"31374":-1,"31375":-1,"31376":-1,"31377":-1,"31378":-1,"31379":-1,"31380":-1,"31381":1589,"31382":-1,"31383":-1,"31384":1589,"31385":-1,"31386":-1,"31387":-1,"31388":-1,"31389":-1,"31390":-1,"31391":-1,"31392":-1,"31393":-1,"31394":-1,"31395":-1,"31396":-1,"31397":-1,"31398":-1,"31399":-1,"31400":-1,"31401":-1,"31402":1587,"31403":1587,"31404":-1,"31405":-1,"31406":-1,"31407":1587,"31408":-1,"31409":-1,"31410":-1,"31411":-1,"31412":-1,"31413":-1,"31414":-1,"31415":-1,"31416":-1,"31417":-1,"31418":-1,"31419":-1,"31420":-1,"31421":-1,"31422":-1,"31423":-1,"31424":-1,"31425":1589,"31426":-1,"31427":-1,"31428":1588,"31429":-1,"31430":-1,"31431":0,"31432":-1,"31433":-1,"31434":-1,"31435":-1,"31436":-1,"31437":-1,"31438":-1,"31439":-1,"31440":1588,"31441":-1,"31442":-1,"31443":-1,"31444":-1,"31445":-1,"31446":-1,"31447":-1,"31448":-1,"31449":-1,"31450":0,"31451":-1,"31452":-1,"31453":-1,"31454":-1,"31455":-1,"31456":-1,"31457":1587,"31458":-1,"31459":-1,"31460":-1,"31461":-1,"31462":-1,"31463":1589,"31464":-1,"31465":-1,"31466":-1,"31467":1588,"31468":-1,"31469":-1,"31470":1588,"31471":-1,"31472":-1,"31473":1586,"31474":-1,"31475":1588,"31476":-1,"31477":-1,"31478":-1,"31479":0,"31480":0,"31481":-1,"31482":-1,"31483":-1,"31484":-1,"31485":-1,"31486":-1,"31487":-1,"31488":-1,"31489":-1,"31490":-1,"31491":-1,"31492":-1,"31493":-1,"31494":-1,"31495":-1,"31496":-1,"31497":-1,"31498":-1,"31499":0,"31500":-1,"31501":-1,"31502":-1,"31503":1589,"31504":-1,"31505":1586,"31506":1589,"31507":0,"31508":-1,"31509":-1,"31510":-1,"31511":-1,"31512":1589,"31513":-1,"31514":-1,"31515":1588,"31516":-1,"31517":0,"31518":-1,"31519":-1,"31520":-1,"31521":1588,"31522":-1,"31523":-1,"31524":-1,"31525":-1,"31526":-1,"31527":0,"31528":-1,"31529":-1,"31530":1587,"31531":-1,"31532":-1,"31533":-1,"31534":-1,"31535":-1,"31536":-1,"31537":-1,"31538":1589,"31539":-1,"31540":-1,"31541":-1,"31542":-1,"31543":1588,"31544":-1,"31545":-1,"31546":-1,"31547":1586,"31548":-1,"31549":-1,"31550":-1,"31551":-1,"31552":1586,"31553":-1,"31554":-1,"31555":-1,"31556":-1,"31557":1588,"31558":-1,"31559":-1,"31560":0,"31561":-1,"31562":1589,"31563":-1,"31564":-1,"31565":0,"31566":-1,"31567":0,"31568":-1,"31569":-1,"31570":-1,"31571":-1,"31572":-1,"31573":-1,"31574":-1,"31575":1588,"31576":-1,"31577":-1,"31578":1586,"31579":-1,"31580":0,"31581":1589,"31582":-1,"31583":-1,"31584":-1,"31585":-1,"31586":-1,"31587":-1,"31588":1588,"31589":-1,"31590":-1,"31591":-1,"31592":-1,"31593":-1,"31594":-1,"31595":-1,"31596":-1,"31597":-1,"31598":-1,"31599":-1,"31600":-1,"31601":-1,"31602":-1,"31603":-1,"31604":-1,"31605":-1,"31606":-1,"31607":1588,"31608":-1,"31609":-1,"31610":-1,"31611":-1,"31612":1586,"31613":-1,"31614":-1,"31615":-1,"31616":-1,"31617":1588,"31618":-1,"31619":1587,"31620":-1,"31621":-1,"31622":-1,"31623":-1,"31624":-1,"31625":-1,"31626":-1,"31627":1587,"31628":-1,"31629":-1,"31630":-1,"31631":1588,"31632":-1,"31633":-1,"31634":-1,"31635":-1,"31636":-1,"31637":1588,"31638":1588,"31639":-1,"31640":-1,"31641":-1,"31642":-1,"31643":-1,"31644":-1,"31645":-1,"31646":1589,"31647":1587,"31648":-1,"31649":1586,"31650":1588,"31651":-1,"31652":-1,"31653":-1,"31654":-1,"31655":-1,"31656":-1,"31657":-1,"31658":-1,"31659":-1,"31660":-1,"31661":-1,"31662":-1,"31663":-1,"31664":-1,"31665":-1,"31666":-1,"31667":-1,"31668":-1,"31669":-1,"31670":-1,"31671":-1,"31672":-1,"31673":-1,"31674":-1,"31675":-1,"31676":-1,"31677":-1,"31678":-1,"31679":-1,"31680":-1,"31681":-1,"31682":-1,"31683":-1,"31684":0,"31685":-1,"31686":-1,"31687":0,"31688":-1,"31689":-1,"31690":-1,"31691":-1,"31692":1588,"31693":-1,"31694":-1,"31695":-1,"31696":-1,"31697":-1,"31698":-1,"31699":1587,"31700":-1,"31701":1588,"31702":-1,"31703":-1,"31704":-1,"31705":-1,"31706":-1,"31707":-1,"31708":-1,"31709":1587,"31710":-1,"31711":-1,"31712":-1,"31713":-1,"31714":-1,"31715":-1,"31716":-1,"31717":1587,"31718":-1,"31719":-1,"31720":-1,"31721":-1,"31722":-1,"31723":-1,"31724":-1,"31725":-1,"31726":-1,"31727":-1,"31728":-1,"31729":-1,"31730":-1,"31731":-1,"31732":-1,"31733":-1,"31734":-1,"31735":-1,"31736":-1,"31737":-1,"31738":-1,"31739":1586,"31740":-1,"31741":-1,"31742":-1,"31743":-1,"31744":0,"31745":1587,"31746":-1,"31747":-1,"31748":-1,"31749":-1,"31750":1588,"31751":1586,"31752":-1,"31753":-1,"31754":-1,"31755":-1,"31756":-1,"31757":1587,"31758":-1,"31759":-1,"31760":-1,"31761":-1,"31762":-1,"31763":1588,"31764":-1,"31765":-1,"31766":-1,"31767":-1,"31768":-1,"31769":-1,"31770":-1,"31771":-1,"31772":-1,"31773":-1,"31774":-1,"31775":-1,"31776":1587,"31777":-1,"31778":-1,"31779":-1,"31780":-1,"31781":-1,"31782":-1,"31783":-1,"31784":-1,"31785":1588,"31786":-1,"31787":-1,"31788":-1,"31789":-1,"31790":-1,"31791":-1,"31792":-1,"31793":-1,"31794":-1,"31795":1589,"31796":-1,"31797":-1,"31798":-1,"31799":1587,"31800":-1,"31801":1587,"31802":-1,"31803":-1,"31804":-1,"31805":-1,"31806":-1,"31807":-1,"31808":-1,"31809":-1,"31810":-1,"31811":-1,"31812":-1,"31813":-1,"31814":-1,"31815":-1,"31816":-1,"31817":-1,"31818":1587,"31819":-1,"31820":1587,"31821":-1,"31822":-1,"31823":-1,"31824":-1,"31825":-1,"31826":-1,"31827":-1,"31828":1587,"31829":-1,"31830":-1,"31831":-1,"31832":-1,"31833":-1,"31834":-1,"31835":-1,"31836":1589,"31837":-1,"31838":-1,"31839":-1,"31840":-1,"31841":0,"31842":-1,"31843":-1,"31844":-1,"31845":-1,"31846":-1,"31847":-1,"31848":-1,"31849":-1,"31850":-1,"31851":-1,"31852":-1,"31853":-1,"31854":-1,"31855":0,"31856":-1,"31857":-1,"31858":-1,"31859":-1,"31860":-1,"31861":-1,"31862":-1,"31863":-1,"31864":-1,"31865":-1,"31866":-1,"31867":-1,"31868":-1,"31869":-1,"31870":-1,"31871":1587,"31872":-1,"31873":-1,"31874":-1,"31875":-1,"31876":1587,"31877":-1,"31878":0,"31879":-1,"31880":1588,"31881":-1,"31882":1588,"31883":1588,"31884":-1,"31885":-1,"31886":-1,"31887":-1,"31888":-1,"31889":-1,"31890":-1,"31891":-1,"31892":-1,"31893":-1,"31894":-1,"31895":-1,"31896":-1,"31897":1589,"31898":-1,"31899":1586,"31900":-1,"31901":-1,"31902":-1,"31903":-1,"31904":-1,"31905":-1,"31906":-1,"31907":-1,"31908":-1,"31909":-1,"31910":-1,"31911":-1,"31912":-1,"31913":-1,"31914":-1,"31915":1588,"31916":1587,"31917":-1,"31918":-1,"31919":1586,"31920":1587,"31921":-1,"31922":-1,"31923":1587,"31924":-1,"31925":1587,"31926":-1,"31927":1588,"31928":-1,"31929":-1,"31930":-1,"31931":-1,"31932":1587,"31933":-1,"31934":1588,"31935":-1,"31936":1587,"31937":-1,"31938":-1,"31939":-1,"31940":-1,"31941":-1,"31942":-1,"31943":-1,"31944":-1,"31945":-1,"31946":-1,"31947":-1,"31948":1587,"31949":-1,"31950":-1,"31951":-1,"31952":-1,"31953":-1,"31954":-1,"31955":-1,"31956":-1,"31957":-1,"31958":-1,"31959":1589,"31960":-1,"31961":-1,"31962":-1,"31963":-1,"31964":-1,"31965":-1,"31966":-1,"31967":-1,"31968":-1,"31969":1587,"31970":-1,"31971":-1,"31972":-1,"31973":0,"31974":-1,"31975":-1,"31976":-1,"31977":-1,"31978":-1,"31979":-1,"31980":-1,"31981":-1,"31982":1587,"31983":-1,"31984":-1,"31985":-1,"31986":-1,"31987":-1,"31988":-1,"31989":-1,"31990":-1,"31991":-1,"31992":1586,"31993":-1,"31994":1588,"31995":-1,"31996":1588,"31997":-1,"31998":-1,"31999":-1,"32000":-1,"32001":-1,"32002":-1,"32003":-1,"32004":-1,"32005":0,"32006":1588,"32007":-1,"32008":-1,"32009":-1,"32010":-1,"32011":-1,"32012":-1,"32013":-1,"32014":-1,"32015":-1,"32016":-1,"32017":-1,"32018":-1,"32019":-1,"32020":-1,"32021":-1,"32022":-1,"32023":-1,"32024":-1,"32025":-1,"32026":-1,"32027":-1,"32028":1588,"32029":-1,"32030":1587,"32031":-1,"32032":1587,"32033":-1,"32034":-1,"32035":-1,"32036":-1,"32037":-1,"32038":-1,"32039":-1,"32040":-1,"32041":-1,"32042":-1,"32043":-1,"32044":-1,"32045":-1,"32046":1587,"32047":-1,"32048":-1,"32049":1589,"32050":-1,"32051":-1,"32052":-1,"32053":1589,"32054":-1,"32055":-1,"32056":-1,"32057":-1,"32058":-1,"32059":-1,"32060":-1,"32061":-1,"32062":-1,"32063":-1,"32064":-1,"32065":-1,"32066":1588,"32067":-1,"32068":-1,"32069":-1,"32070":1589,"32071":-1,"32072":-1,"32073":-1,"32074":-1,"32075":-1,"32076":-1,"32077":-1,"32078":1588,"32079":-1,"32080":1589,"32081":-1,"32082":-1,"32083":1586,"32084":-1,"32085":-1,"32086":-1,"32087":-1,"32088":-1,"32089":-1,"32090":-1,"32091":-1,"32092":-1,"32093":-1,"32094":-1,"32095":-1,"32096":-1,"32097":-1,"32098":1587,"32099":0,"32100":-1,"32101":-1,"32102":1589,"32103":-1,"32104":1586,"32105":1588,"32106":-1,"32107":-1,"32108":-1,"32109":-1,"32110":-1,"32111":-1,"32112":-1,"32113":-1,"32114":-1,"32115":-1,"32116":-1,"32117":-1,"32118":-1,"32119":-1,"32120":-1,"32121":-1,"32122":-1,"32123":0,"32124":-1,"32125":-1,"32126":-1,"32127":1586,"32128":1586,"32129":-1,"32130":-1,"32131":-1,"32132":-1,"32133":-1,"32134":-1,"32135":-1,"32136":-1,"32137":-1,"32138":-1,"32139":-1,"32140":-1,"32141":-1,"32142":-1,"32143":-1,"32144":-1,"32145":-1,"32146":1587,"32147":-1,"32148":-1,"32149":1587,"32150":-1,"32151":-1,"32152":-1,"32153":-1,"32154":-1,"32155":-1,"32156":0,"32157":-1,"32158":-1,"32159":-1,"32160":-1,"32161":-1,"32162":-1,"32163":-1,"32164":-1,"32165":-1,"32166":-1,"32167":-1,"32168":-1,"32169":-1,"32170":-1,"32171":-1,"32172":-1,"32173":-1,"32174":-1,"32175":-1,"32176":-1,"32177":-1,"32178":-1,"32179":-1,"32180":-1,"32181":1587,"32182":-1,"32183":-1,"32184":1586,"32185":-1,"32186":-1,"32187":-1,"32188":1588,"32189":-1,"32190":1588,"32191":1587,"32192":-1,"32193":-1,"32194":-1,"32195":-1,"32196":-1,"32197":-1,"32198":-1,"32199":-1,"32200":-1,"32201":-1,"32202":-1,"32203":-1,"32204":-1,"32205":-1,"32206":0,"32207":-1,"32208":-1,"32209":1589,"32210":-1,"32211":-1,"32212":-1,"32213":-1,"32214":-1,"32215":-1,"32216":-1,"32217":-1,"32218":-1,"32219":1586,"32220":-1,"32221":-1,"32222":-1,"32223":-1,"32224":-1,"32225":-1,"32226":1588,"32227":-1,"32228":-1,"32229":-1,"32230":0,"32231":1588,"32232":-1,"32233":-1,"32234":-1,"32235":1588,"32236":1588,"32237":-1,"32238":-1,"32239":-1,"32240":-1,"32241":-1,"32242":1588,"32243":-1,"32244":-1,"32245":-1,"32246":1587,"32247":-1,"32248":-1,"32249":-1,"32250":-1,"32251":-1,"32252":-1,"32253":-1,"32254":-1,"32255":1588,"32256":-1,"32257":-1,"32258":-1,"32259":-1,"32260":-1,"32261":1588,"32262":-1,"32263":1587,"32264":-1,"32265":-1,"32266":-1,"32267":-1,"32268":-1,"32269":1587,"32270":-1,"32271":1588,"32272":-1,"32273":-1,"32274":-1,"32275":-1,"32276":-1,"32277":1587,"32278":1589,"32279":-1,"32280":1589,"32281":1587,"32282":-1,"32283":-1,"32284":-1,"32285":-1,"32286":-1,"32287":-1,"32288":0,"32289":-1,"32290":-1,"32291":-1,"32292":1587,"32293":-1,"32294":1589,"32295":-1,"32296":-1,"32297":-1,"32298":-1,"32299":-1,"32300":-1,"32301":-1,"32302":-1,"32303":-1,"32304":-1,"32305":1588,"32306":-1,"32307":-1,"32308":-1,"32309":-1,"32310":-1,"32311":-1,"32312":-1,"32313":-1,"32314":-1,"32315":-1,"32316":-1,"32317":-1,"32318":-1,"32319":-1,"32320":-1,"32321":-1,"32322":1587,"32323":-1,"32324":-1,"32325":-1,"32326":-1,"32327":1589,"32328":-1,"32329":-1,"32330":-1,"32331":-1,"32332":-1,"32333":-1,"32334":-1,"32335":-1,"32336":-1,"32337":0,"32338":-1,"32339":-1,"32340":-1,"32341":-1,"32342":-1,"32343":-1,"32344":-1,"32345":-1,"32346":-1,"32347":-1,"32348":-1,"32349":-1,"32350":-1,"32351":-1,"32352":1586,"32353":-1,"32354":1589,"32355":-1,"32356":1586,"32357":-1,"32358":-1,"32359":-1,"32360":1588,"32361":-1,"32362":-1,"32363":1588,"32364":-1,"32365":-1,"32366":0,"32367":-1,"32368":-1,"32369":-1,"32370":-1,"32371":-1,"32372":-1,"32373":-1,"32374":-1,"32375":-1,"32376":1589,"32377":-1,"32378":-1,"32379":-1,"32380":-1,"32381":-1,"32382":-1,"32383":-1,"32384":-1,"32385":-1,"32386":-1,"32387":0,"32388":-1,"32389":-1,"32390":-1,"32391":-1,"32392":1589,"32393":-1,"32394":1588,"32395":-1,"32396":-1,"32397":-1,"32398":-1,"32399":-1,"32400":-1,"32401":-1,"32402":-1,"32403":-1,"32404":-1,"32405":1589,"32406":-1,"32407":-1,"32408":-1,"32409":1586,"32410":-1,"32411":-1,"32412":-1,"32413":1589,"32414":-1,"32415":-1,"32416":1588,"32417":-1,"32418":-1,"32419":-1,"32420":-1,"32421":-1,"32422":-1,"32423":-1,"32424":-1,"32425":-1,"32426":-1,"32427":-1,"32428":-1,"32429":1586,"32430":-1,"32431":-1,"32432":-1,"32433":-1,"32434":-1,"32435":-1,"32436":1586,"32437":-1,"32438":-1,"32439":-1,"32440":-1,"32441":1588,"32442":-1,"32443":-1,"32444":-1,"32445":-1,"32446":-1,"32447":-1,"32448":-1,"32449":-1,"32450":1587,"32451":-1,"32452":1589,"32453":-1,"32454":-1,"32455":-1,"32456":-1,"32457":-1,"32458":-1,"32459":1587,"32460":-1,"32461":-1,"32462":-1,"32463":-1,"32464":-1,"32465":-1,"32466":-1,"32467":-1,"32468":-1,"32469":-1,"32470":-1,"32471":1588,"32472":-1,"32473":-1,"32474":-1,"32475":1587,"32476":-1,"32477":-1,"32478":-1,"32479":-1,"32480":-1,"32481":-1,"32482":-1,"32483":-1,"32484":1587,"32485":-1,"32486":-1,"32487":-1,"32488":1586,"32489":-1,"32490":-1,"32491":-1,"32492":-1,"32493":-1,"32494":-1,"32495":-1,"32496":-1,"32497":-1,"32498":-1,"32499":-1,"32500":-1,"32501":-1,"32502":-1,"32503":-1,"32504":0,"32505":-1,"32506":1588,"32507":1588,"32508":-1,"32509":-1,"32510":-1,"32511":-1,"32512":-1,"32513":-1,"32514":-1,"32515":-1,"32516":-1,"32517":-1,"32518":1587,"32519":-1,"32520":-1,"32521":-1,"32522":1588,"32523":-1,"32524":-1,"32525":-1,"32526":1587,"32527":-1,"32528":1589,"32529":-1,"32530":-1,"32531":-1,"32532":0,"32533":1586,"32534":-1,"32535":-1,"32536":-1,"32537":-1,"32538":1587,"32539":-1,"32540":1586,"32541":-1,"32542":-1,"32543":-1,"32544":-1,"32545":-1,"32546":-1,"32547":-1,"32548":1589,"32549":-1,"32550":-1,"32551":1588,"32552":-1,"32553":-1,"32554":-1,"32555":-1,"32556":-1,"32557":-1,"32558":1589,"32559":-1,"32560":-1,"32561":-1,"32562":-1,"32563":-1,"32564":-1,"32565":-1,"32566":-1,"32567":1589,"32568":-1,"32569":-1,"32570":-1,"32571":-1,"32572":-1,"32573":-1,"32574":-1,"32575":-1,"32576":-1,"32577":-1,"32578":1588,"32579":1589,"32580":-1,"32581":-1,"32582":0,"32583":-1,"32584":1587,"32585":-1,"32586":-1,"32587":1586,"32588":-1,"32589":1587,"32590":-1,"32591":-1,"32592":-1,"32593":-1,"32594":1587,"32595":-1,"32596":-1,"32597":-1,"32598":-1,"32599":-1,"32600":1588,"32601":1589,"32602":1588,"32603":-1,"32604":-1,"32605":-1,"32606":1589,"32607":-1,"32608":-1,"32609":1589,"32610":-1,"32611":-1,"32612":-1,"32613":-1,"32614":-1,"32615":-1,"32616":-1,"32617":-1,"32618":-1,"32619":1589,"32620":-1,"32621":-1,"32622":-1,"32623":-1,"32624":-1,"32625":-1,"32626":-1,"32627":1589,"32628":-1,"32629":-1,"32630":-1,"32631":1588,"32632":-1,"32633":-1,"32634":-1,"32635":-1,"32636":-1,"32637":-1,"32638":-1,"32639":1588,"32640":-1,"32641":-1,"32642":-1,"32643":-1,"32644":-1,"32645":-1,"32646":-1,"32647":-1,"32648":-1,"32649":-1,"32650":-1,"32651":-1,"32652":-1,"32653":-1,"32654":-1,"32655":-1,"32656":-1,"32657":-1,"32658":-1,"32659":-1,"32660":-1,"32661":-1,"32662":-1,"32663":-1,"32664":-1,"32665":-1,"32666":-1,"32667":-1,"32668":0,"32669":1589,"32670":-1,"32671":1587,"32672":-1,"32673":-1,"32674":-1,"32675":-1,"32676":1586,"32677":-1,"32678":-1,"32679":1586,"32680":-1,"32681":-1,"32682":1588,"32683":-1,"32684":-1,"32685":-1,"32686":-1,"32687":0,"32688":-1,"32689":-1,"32690":0,"32691":-1,"32692":-1,"32693":-1,"32694":1587,"32695":0,"32696":-1,"32697":-1,"32698":-1,"32699":-1,"32700":-1,"32701":-1,"32702":-1,"32703":-1,"32704":-1,"32705":-1,"32706":-1,"32707":-1,"32708":-1,"32709":-1,"32710":0,"32711":1586,"32712":-1,"32713":1587,"32714":-1,"32715":1586,"32716":-1,"32717":-1,"32718":-1,"32719":-1,"32720":-1,"32721":-1,"32722":-1,"32723":0,"32724":-1,"32725":-1,"32726":-1,"32727":-1,"32728":-1,"32729":-1,"32730":1588,"32731":-1,"32732":1589,"32733":1588,"32734":-1,"32735":-1,"32736":-1,"32737":0,"32738":-1,"32739":-1,"32740":-1,"32741":-1,"32742":-1,"32743":-1,"32744":-1,"32745":-1,"32746":-1,"32747":-1,"32748":-1,"32749":-1,"32750":-1,"32751":1588,"32752":-1,"32753":1588,"32754":-1,"32755":-1,"32756":-1,"32757":-1,"32758":-1,"32759":-1,"32760":-1,"32761":-1,"32762":-1,"32763":-1,"32764":-1,"32765":-1,"32766":-1,"32767":-1,"32768":-1,"32769":-1,"32770":-1,"32771":1587,"32772":-1,"32773":1587,"32774":-1,"32775":1589,"32776":-1,"32777":-1,"32778":-1,"32779":-1,"32780":-1,"32781":-1,"32782":-1,"32783":-1,"32784":-1,"32785":-1,"32786":1587,"32787":-1,"32788":-1,"32789":1586,"32790":-1,"32791":-1,"32792":0,"32793":1589,"32794":-1,"32795":-1,"32796":-1,"32797":-1,"32798":-1,"32799":-1,"32800":1587,"32801":-1,"32802":0,"32803":-1,"32804":-1,"32805":-1,"32806":-1,"32807":-1,"32808":1587,"32809":-1,"32810":-1,"32811":-1,"32812":-1,"32813":-1,"32814":-1,"32815":-1,"32816":-1,"32817":-1,"32818":-1,"32819":-1,"32820":-1,"32821":-1,"32822":1588,"32823":-1,"32824":-1,"32825":-1,"32826":-1,"32827":-1,"32828":1588,"32829":-1,"32830":-1,"32831":-1,"32832":-1,"32833":-1,"32834":-1,"32835":-1,"32836":-1,"32837":-1,"32838":-1,"32839":-1,"32840":-1,"32841":-1,"32842":-1,"32843":-1,"32844":1588,"32845":1587,"32846":-1,"32847":-1,"32848":1587,"32849":-1,"32850":-1,"32851":1587,"32852":-1,"32853":1588,"32854":-1,"32855":-1,"32856":-1,"32857":-1,"32858":-1,"32859":-1,"32860":-1,"32861":-1,"32862":-1,"32863":-1,"32864":-1,"32865":1587,"32866":-1,"32867":-1,"32868":-1,"32869":-1,"32870":-1,"32871":-1,"32872":-1,"32873":-1,"32874":-1,"32875":-1,"32876":1589,"32877":-1,"32878":0,"32879":-1,"32880":1588,"32881":1586,"32882":-1,"32883":-1,"32884":1588,"32885":-1,"32886":-1,"32887":-1,"32888":-1,"32889":-1,"32890":-1,"32891":-1,"32892":-1,"32893":-1,"32894":-1,"32895":1588,"32896":-1,"32897":-1,"32898":-1,"32899":-1,"32900":0,"32901":1589,"32902":-1,"32903":1586,"32904":-1,"32905":-1,"32906":1586,"32907":-1,"32908":-1,"32909":-1,"32910":-1,"32911":1589,"32912":-1,"32913":-1,"32914":-1,"32915":-1,"32916":-1,"32917":1588,"32918":-1,"32919":-1,"32920":-1,"32921":-1,"32922":-1,"32923":-1,"32924":-1,"32925":-1,"32926":-1,"32927":-1,"32928":-1,"32929":-1,"32930":-1,"32931":-1,"32932":-1,"32933":-1,"32934":-1,"32935":-1,"32936":-1,"32937":-1,"32938":1586,"32939":-1,"32940":-1,"32941":-1,"32942":-1,"32943":-1,"32944":-1,"32945":-1,"32946":-1,"32947":-1,"32948":-1,"32949":-1,"32950":-1,"32951":-1,"32952":1588,"32953":-1,"32954":-1,"32955":-1,"32956":-1,"32957":-1,"32958":1587,"32959":1589,"32960":-1,"32961":-1,"32962":-1,"32963":-1,"32964":-1,"32965":-1,"32966":-1,"32967":-1,"32968":0,"32969":-1,"32970":-1,"32971":-1,"32972":-1,"32973":1586,"32974":-1,"32975":-1,"32976":-1,"32977":-1,"32978":-1,"32979":-1,"32980":-1,"32981":-1,"32982":-1,"32983":1586,"32984":-1,"32985":-1,"32986":-1,"32987":-1,"32988":-1,"32989":-1,"32990":-1,"32991":-1,"32992":-1,"32993":-1,"32994":-1,"32995":-1,"32996":-1,"32997":-1,"32998":-1,"32999":1587,"33000":-1,"33001":-1,"33002":1588,"33003":-1,"33004":-1,"33005":-1,"33006":-1,"33007":-1,"33008":-1,"33009":-1,"33010":-1,"33011":1586,"33012":-1,"33013":-1,"33014":-1,"33015":-1,"33016":1589,"33017":-1,"33018":-1,"33019":-1,"33020":-1,"33021":-1,"33022":-1,"33023":1589,"33024":-1,"33025":-1,"33026":1587,"33027":-1,"33028":-1,"33029":1587,"33030":-1,"33031":-1,"33032":-1,"33033":-1,"33034":-1,"33035":-1,"33036":-1,"33037":-1,"33038":-1,"33039":0,"33040":-1,"33041":-1,"33042":1588,"33043":-1,"33044":1587,"33045":-1,"33046":-1,"33047":-1,"33048":-1,"33049":-1,"33050":-1,"33051":1587,"33052":-1,"33053":1587,"33054":-1,"33055":-1,"33056":-1,"33057":-1,"33058":-1,"33059":-1,"33060":-1,"33061":-1,"33062":-1,"33063":-1,"33064":-1,"33065":0,"33066":-1,"33067":-1,"33068":-1,"33069":-1,"33070":-1,"33071":-1,"33072":1589,"33073":-1,"33074":-1,"33075":-1,"33076":-1,"33077":-1,"33078":-1,"33079":-1,"33080":-1,"33081":-1,"33082":-1,"33083":-1,"33084":-1,"33085":-1,"33086":-1,"33087":1586,"33088":-1,"33089":-1,"33090":0,"33091":-1,"33092":0,"33093":-1,"33094":-1,"33095":1589,"33096":-1,"33097":-1,"33098":-1,"33099":-1,"33100":-1,"33101":-1,"33102":-1,"33103":-1,"33104":-1,"33105":-1,"33106":-1,"33107":-1,"33108":-1,"33109":1589,"33110":-1,"33111":-1,"33112":-1,"33113":-1,"33114":-1,"33115":-1,"33116":-1,"33117":1589,"33118":-1,"33119":-1,"33120":-1,"33121":0,"33122":-1,"33123":-1,"33124":-1,"33125":-1,"33126":-1,"33127":-1,"33128":-1,"33129":-1,"33130":-1,"33131":-1,"33132":-1,"33133":-1,"33134":-1,"33135":1589,"33136":-1,"33137":-1,"33138":-1,"33139":-1,"33140":-1,"33141":-1,"33142":1589,"33143":-1,"33144":-1,"33145":-1,"33146":-1,"33147":-1,"33148":1586,"33149":-1,"33150":-1,"33151":-1,"33152":-1,"33153":-1,"33154":-1,"33155":-1,"33156":-1,"33157":-1,"33158":0,"33159":-1,"33160":-1,"33161":-1,"33162":-1,"33163":1587,"33164":-1,"33165":-1,"33166":1586,"33167":-1,"33168":1588,"33169":1587,"33170":1587,"33171":-1,"33172":-1,"33173":-1,"33174":-1,"33175":-1,"33176":-1,"33177":-1,"33178":-1,"33179":-1,"33180":-1,"33181":-1,"33182":-1,"33183":-1,"33184":-1,"33185":-1,"33186":-1,"33187":-1,"33188":0,"33189":-1,"33190":-1,"33191":-1,"33192":-1,"33193":-1,"33194":-1,"33195":0,"33196":-1,"33197":-1,"33198":-1,"33199":-1,"33200":-1,"33201":-1,"33202":-1,"33203":-1,"33204":-1,"33205":1588,"33206":-1,"33207":-1,"33208":-1,"33209":-1,"33210":-1,"33211":-1,"33212":-1,"33213":-1,"33214":1587,"33215":-1,"33216":-1,"33217":-1,"33218":-1,"33219":-1,"33220":0,"33221":-1,"33222":-1,"33223":1588,"33224":-1,"33225":-1,"33226":-1,"33227":-1,"33228":1587,"33229":-1,"33230":1587,"33231":-1,"33232":-1,"33233":1588,"33234":-1,"33235":-1,"33236":-1,"33237":-1,"33238":-1,"33239":1586,"33240":-1,"33241":-1,"33242":-1,"33243":-1,"33244":-1,"33245":-1,"33246":-1,"33247":1586,"33248":-1,"33249":1587,"33250":1587,"33251":-1,"33252":1589,"33253":-1,"33254":-1,"33255":-1,"33256":-1,"33257":1588,"33258":1589,"33259":-1,"33260":-1,"33261":1587,"33262":-1,"33263":-1,"33264":-1,"33265":-1,"33266":-1,"33267":-1,"33268":-1,"33269":-1,"33270":-1,"33271":-1,"33272":-1,"33273":-1,"33274":-1,"33275":-1,"33276":-1,"33277":-1,"33278":-1,"33279":-1,"33280":-1,"33281":-1,"33282":-1,"33283":1587,"33284":1588,"33285":-1,"33286":-1,"33287":1589,"33288":-1,"33289":-1,"33290":-1,"33291":-1,"33292":-1,"33293":-1,"33294":-1,"33295":-1,"33296":-1,"33297":-1,"33298":-1,"33299":-1,"33300":-1,"33301":-1,"33302":1588,"33303":-1,"33304":1586,"33305":-1,"33306":-1,"33307":-1,"33308":-1,"33309":-1,"33310":-1,"33311":-1,"33312":-1,"33313":-1,"33314":-1,"33315":-1,"33316":-1,"33317":-1,"33318":1586,"33319":-1,"33320":-1,"33321":0,"33322":-1,"33323":-1,"33324":0,"33325":-1,"33326":-1,"33327":1589,"33328":-1,"33329":-1,"33330":-1,"33331":1588,"33332":-1,"33333":-1,"33334":-1,"33335":-1,"33336":0,"33337":-1,"33338":-1,"33339":0,"33340":1587,"33341":1588,"33342":0,"33343":-1,"33344":-1,"33345":0,"33346":-1,"33347":-1,"33348":-1,"33349":-1,"33350":-1,"33351":-1,"33352":-1,"33353":1588,"33354":-1,"33355":-1,"33356":-1,"33357":-1,"33358":-1,"33359":-1,"33360":-1,"33361":-1,"33362":-1,"33363":-1,"33364":-1,"33365":-1,"33366":1588,"33367":-1,"33368":-1,"33369":-1,"33370":1588,"33371":1588,"33372":1588,"33373":-1,"33374":-1,"33375":-1,"33376":-1,"33377":-1,"33378":-1,"33379":-1,"33380":1587,"33381":-1,"33382":-1,"33383":-1,"33384":-1,"33385":-1,"33386":-1,"33387":-1,"33388":-1,"33389":-1,"33390":-1,"33391":1586,"33392":-1,"33393":-1,"33394":1587,"33395":-1,"33396":-1,"33397":-1,"33398":1586,"33399":-1,"33400":-1,"33401":-1,"33402":1588,"33403":-1,"33404":1587,"33405":-1,"33406":-1,"33407":-1,"33408":-1,"33409":-1,"33410":-1,"33411":-1,"33412":-1,"33413":-1,"33414":-1,"33415":-1,"33416":-1,"33417":-1,"33418":-1,"33419":-1,"33420":-1,"33421":1589,"33422":-1,"33423":1586,"33424":-1,"33425":-1,"33426":-1,"33427":1588,"33428":-1,"33429":-1,"33430":1587,"33431":-1,"33432":-1,"33433":-1,"33434":-1,"33435":-1,"33436":-1,"33437":-1,"33438":-1,"33439":-1,"33440":-1,"33441":-1,"33442":1588,"33443":-1,"33444":-1,"33445":-1,"33446":-1,"33447":1587,"33448":-1,"33449":-1,"33450":-1,"33451":-1,"33452":-1,"33453":1587,"33454":-1,"33455":1588,"33456":-1,"33457":1586,"33458":-1,"33459":-1,"33460":1587,"33461":-1,"33462":-1,"33463":-1,"33464":-1,"33465":-1,"33466":-1,"33467":-1,"33468":-1,"33469":-1,"33470":1588,"33471":-1,"33472":-1,"33473":-1,"33474":-1,"33475":-1,"33476":-1,"33477":-1,"33478":-1,"33479":-1,"33480":-1,"33481":-1,"33482":-1,"33483":-1,"33484":-1,"33485":-1,"33486":-1,"33487":-1,"33488":-1,"33489":1587,"33490":-1,"33491":1587,"33492":1589,"33493":-1,"33494":-1,"33495":-1,"33496":-1,"33497":-1,"33498":1587,"33499":-1,"33500":1587,"33501":1587,"33502":-1,"33503":-1,"33504":-1,"33505":-1,"33506":-1,"33507":-1,"33508":-1,"33509":-1,"33510":-1,"33511":-1,"33512":-1,"33513":-1,"33514":-1,"33515":-1,"33516":-1,"33517":-1,"33518":-1,"33519":-1,"33520":-1,"33521":-1,"33522":1586,"33523":-1,"33524":-1,"33525":-1,"33526":-1,"33527":-1,"33528":-1,"33529":0,"33530":-1,"33531":1589,"33532":-1,"33533":-1,"33534":-1,"33535":-1,"33536":-1,"33537":-1,"33538":0,"33539":-1,"33540":-1,"33541":-1,"33542":-1,"33543":-1,"33544":1588,"33545":-1,"33546":-1,"33547":-1,"33548":-1,"33549":-1,"33550":-1,"33551":-1,"33552":-1,"33553":-1,"33554":-1,"33555":-1,"33556":-1,"33557":-1,"33558":-1,"33559":1586,"33560":-1,"33561":-1,"33562":-1,"33563":-1,"33564":-1,"33565":-1,"33566":1589,"33567":-1,"33568":-1,"33569":-1,"33570":-1,"33571":1587,"33572":-1,"33573":-1,"33574":-1,"33575":-1,"33576":1587,"33577":-1,"33578":-1,"33579":-1,"33580":-1,"33581":-1,"33582":-1,"33583":-1,"33584":-1,"33585":-1,"33586":1588,"33587":-1,"33588":-1,"33589":-1,"33590":-1,"33591":-1,"33592":-1,"33593":-1,"33594":-1,"33595":-1,"33596":-1,"33597":-1,"33598":-1,"33599":-1,"33600":-1,"33601":-1,"33602":-1,"33603":-1,"33604":-1,"33605":-1,"33606":-1,"33607":-1,"33608":-1,"33609":-1,"33610":-1,"33611":-1,"33612":-1,"33613":-1,"33614":-1,"33615":-1,"33616":-1,"33617":-1,"33618":-1,"33619":-1,"33620":-1,"33621":-1,"33622":-1,"33623":-1,"33624":-1,"33625":-1,"33626":0,"33627":-1,"33628":1587,"33629":-1,"33630":-1,"33631":-1,"33632":-1,"33633":-1,"33634":-1,"33635":-1,"33636":-1,"33637":-1,"33638":-1,"33639":-1,"33640":-1,"33641":-1,"33642":-1,"33643":-1,"33644":-1,"33645":-1,"33646":-1,"33647":-1,"33648":-1,"33649":-1,"33650":-1,"33651":-1,"33652":-1,"33653":-1,"33654":1589,"33655":-1,"33656":-1,"33657":-1,"33658":-1,"33659":-1,"33660":-1,"33661":-1,"33662":1588,"33663":-1,"33664":-1,"33665":-1,"33666":-1,"33667":-1,"33668":-1,"33669":-1,"33670":-1,"33671":-1,"33672":-1,"33673":-1,"33674":1588,"33675":-1,"33676":-1,"33677":-1,"33678":0,"33679":-1,"33680":0,"33681":-1,"33682":-1,"33683":-1,"33684":-1,"33685":-1,"33686":-1,"33687":-1,"33688":-1,"33689":-1,"33690":-1,"33691":-1,"33692":-1,"33693":-1,"33694":-1,"33695":1587,"33696":1587,"33697":-1,"33698":-1,"33699":-1,"33700":0,"33701":1587,"33702":-1,"33703":-1,"33704":-1,"33705":-1,"33706":1589,"33707":0,"33708":-1,"33709":-1,"33710":-1,"33711":-1,"33712":-1,"33713":-1,"33714":-1,"33715":-1,"33716":1588,"33717":-1,"33718":-1,"33719":-1,"33720":-1,"33721":-1,"33722":0,"33723":-1,"33724":1588,"33725":-1,"33726":-1,"33727":-1,"33728":-1,"33729":1587,"33730":-1,"33731":-1,"33732":-1,"33733":-1,"33734":1589,"33735":-1,"33736":-1,"33737":1588,"33738":-1,"33739":-1,"33740":1586,"33741":-1,"33742":-1,"33743":-1,"33744":-1,"33745":-1,"33746":-1,"33747":-1,"33748":1587,"33749":-1,"33750":-1,"33751":1587,"33752":-1,"33753":-1,"33754":-1,"33755":-1,"33756":-1,"33757":-1,"33758":-1,"33759":-1,"33760":1588,"33761":-1,"33762":1588,"33763":-1,"33764":1586,"33765":-1,"33766":-1,"33767":-1,"33768":1589,"33769":-1,"33770":-1,"33771":-1,"33772":-1,"33773":-1,"33774":-1,"33775":1586,"33776":-1,"33777":-1,"33778":-1,"33779":-1,"33780":1588,"33781":1587,"33782":-1,"33783":-1,"33784":-1,"33785":-1,"33786":-1,"33787":-1,"33788":-1,"33789":-1,"33790":-1,"33791":-1,"33792":1586,"33793":-1,"33794":-1,"33795":-1,"33796":-1,"33797":-1,"33798":-1,"33799":-1,"33800":-1,"33801":-1,"33802":-1,"33803":-1,"33804":-1,"33805":-1,"33806":-1,"33807":-1,"33808":-1,"33809":-1,"33810":-1,"33811":-1,"33812":-1,"33813":-1,"33814":-1,"33815":-1,"33816":-1,"33817":-1,"33818":-1,"33819":-1,"33820":-1,"33821":-1,"33822":-1,"33823":-1,"33824":-1,"33825":-1,"33826":-1,"33827":-1,"33828":-1,"33829":-1,"33830":-1,"33831":-1,"33832":-1,"33833":-1,"33834":-1,"33835":-1,"33836":-1,"33837":-1,"33838":-1,"33839":-1,"33840":-1,"33841":-1,"33842":-1,"33843":-1,"33844":-1,"33845":-1,"33846":-1,"33847":1589,"33848":-1,"33849":-1,"33850":-1,"33851":-1,"33852":1587,"33853":1588,"33854":-1,"33855":-1,"33856":-1,"33857":-1,"33858":-1,"33859":-1,"33860":-1,"33861":-1,"33862":-1,"33863":1587,"33864":-1,"33865":-1,"33866":-1,"33867":-1,"33868":1589,"33869":-1,"33870":-1,"33871":-1,"33872":-1,"33873":-1,"33874":-1,"33875":-1,"33876":-1,"33877":-1,"33878":1588,"33879":-1,"33880":-1,"33881":-1,"33882":-1,"33883":-1,"33884":-1,"33885":1588,"33886":-1,"33887":1586,"33888":-1,"33889":-1,"33890":1587,"33891":-1,"33892":-1,"33893":-1,"33894":-1,"33895":-1,"33896":-1,"33897":-1,"33898":-1,"33899":1588,"33900":-1,"33901":-1,"33902":-1,"33903":-1,"33904":-1,"33905":1588,"33906":-1,"33907":-1,"33908":-1,"33909":-1,"33910":-1,"33911":-1,"33912":-1,"33913":-1,"33914":-1,"33915":-1,"33916":-1,"33917":-1,"33918":-1,"33919":-1,"33920":-1,"33921":-1,"33922":-1,"33923":-1,"33924":-1,"33925":-1,"33926":-1,"33927":-1,"33928":-1,"33929":-1,"33930":-1,"33931":-1,"33932":-1,"33933":-1,"33934":-1,"33935":-1,"33936":-1,"33937":-1,"33938":-1,"33939":-1,"33940":-1,"33941":-1,"33942":-1,"33943":-1,"33944":-1,"33945":-1,"33946":-1,"33947":-1,"33948":-1,"33949":-1,"33950":-1,"33951":-1,"33952":-1,"33953":-1,"33954":-1,"33955":-1,"33956":-1,"33957":-1,"33958":-1,"33959":-1,"33960":-1,"33961":-1,"33962":-1,"33963":-1,"33964":-1,"33965":1588,"33966":-1,"33967":-1,"33968":-1,"33969":-1,"33970":1586,"33971":1587,"33972":-1,"33973":-1,"33974":-1,"33975":-1,"33976":-1,"33977":-1,"33978":-1,"33979":-1,"33980":-1,"33981":-1,"33982":1588,"33983":-1,"33984":0,"33985":-1,"33986":1588,"33987":-1,"33988":1588,"33989":1588,"33990":-1,"33991":-1,"33992":-1,"33993":-1,"33994":-1,"33995":-1,"33996":-1,"33997":-1,"33998":-1,"33999":-1,"34000":-1,"34001":1588,"34002":-1,"34003":-1,"34004":-1,"34005":-1,"34006":-1,"34007":-1,"34008":-1,"34009":-1,"34010":-1,"34011":-1,"34012":-1,"34013":-1,"34014":-1,"34015":-1,"34016":-1,"34017":1586,"34018":-1,"34019":-1,"34020":1586,"34021":1588,"34022":-1,"34023":-1,"34024":-1,"34025":-1,"34026":-1,"34027":-1,"34028":-1,"34029":-1,"34030":-1,"34031":-1,"34032":-1,"34033":-1,"34034":1588,"34035":-1,"34036":-1,"34037":-1,"34038":-1,"34039":-1,"34040":-1,"34041":-1,"34042":-1,"34043":-1,"34044":-1,"34045":-1,"34046":-1,"34047":-1,"34048":-1,"34049":-1,"34050":-1,"34051":-1,"34052":-1,"34053":-1,"34054":-1,"34055":1586,"34056":-1,"34057":-1,"34058":-1,"34059":-1,"34060":-1,"34061":-1,"34062":0,"34063":1587,"34064":-1,"34065":-1,"34066":-1,"34067":-1,"34068":-1,"34069":-1,"34070":-1,"34071":-1,"34072":-1,"34073":-1,"34074":1587,"34075":-1,"34076":-1,"34077":-1,"34078":-1,"34079":1589,"34080":-1,"34081":-1,"34082":1586,"34083":-1,"34084":-1,"34085":-1,"34086":-1,"34087":-1,"34088":-1,"34089":-1,"34090":-1,"34091":-1,"34092":-1,"34093":-1,"34094":-1,"34095":-1,"34096":-1,"34097":1588,"34098":-1,"34099":-1,"34100":-1,"34101":1587,"34102":-1,"34103":-1,"34104":-1,"34105":-1,"34106":-1,"34107":-1,"34108":-1,"34109":1588,"34110":-1,"34111":1589,"34112":-1,"34113":-1,"34114":1587,"34115":-1,"34116":-1,"34117":-1,"34118":-1,"34119":-1,"34120":-1,"34121":-1,"34122":-1,"34123":-1,"34124":-1,"34125":1589,"34126":-1,"34127":-1,"34128":-1,"34129":-1,"34130":1588,"34131":-1,"34132":-1,"34133":-1,"34134":-1,"34135":-1,"34136":-1,"34137":1586,"34138":-1,"34139":-1,"34140":-1,"34141":-1,"34142":-1,"34143":-1,"34144":-1,"34145":-1,"34146":-1,"34147":1586,"34148":-1,"34149":1587,"34150":-1,"34151":1587,"34152":-1,"34153":-1,"34154":-1,"34155":-1,"34156":-1,"34157":-1,"34158":1588,"34159":-1,"34160":-1,"34161":-1,"34162":-1,"34163":-1,"34164":1587,"34165":-1,"34166":-1,"34167":-1,"34168":-1,"34169":-1,"34170":-1,"34171":-1,"34172":-1,"34173":1586,"34174":1588,"34175":-1,"34176":-1,"34177":-1,"34178":-1,"34179":-1,"34180":-1,"34181":1589,"34182":1588,"34183":-1,"34184":-1,"34185":-1,"34186":-1,"34187":-1,"34188":-1,"34189":1587,"34190":-1,"34191":-1,"34192":-1,"34193":-1,"34194":-1,"34195":1587,"34196":-1,"34197":-1,"34198":-1,"34199":-1,"34200":-1,"34201":-1,"34202":-1,"34203":-1,"34204":-1,"34205":-1,"34206":1587,"34207":-1,"34208":1587,"34209":-1,"34210":-1,"34211":-1,"34212":-1,"34213":-1,"34214":-1,"34215":1589,"34216":-1,"34217":-1,"34218":-1,"34219":-1,"34220":-1,"34221":-1,"34222":-1,"34223":-1,"34224":1588,"34225":-1,"34226":-1,"34227":-1,"34228":-1,"34229":-1,"34230":-1,"34231":-1,"34232":-1,"34233":-1,"34234":-1,"34235":-1,"34236":-1,"34237":1588,"34238":-1,"34239":-1,"34240":-1,"34241":-1,"34242":-1,"34243":-1,"34244":1587,"34245":-1,"34246":-1,"34247":-1,"34248":-1,"34249":-1,"34250":-1,"34251":1589,"34252":1587,"34253":-1,"34254":1589,"34255":0,"34256":-1,"34257":1588,"34258":-1,"34259":-1,"34260":1586,"34261":-1,"34262":1587,"34263":1587,"34264":-1,"34265":-1,"34266":-1,"34267":1589,"34268":-1,"34269":-1,"34270":-1,"34271":0,"34272":-1,"34273":-1,"34274":-1,"34275":-1,"34276":1588,"34277":-1,"34278":-1,"34279":-1,"34280":-1,"34281":-1,"34282":-1,"34283":-1,"34284":-1,"34285":-1,"34286":-1,"34287":-1,"34288":-1,"34289":-1,"34290":1587,"34291":-1,"34292":1587,"34293":1589,"34294":-1,"34295":-1,"34296":-1,"34297":-1,"34298":-1,"34299":0,"34300":-1,"34301":-1,"34302":-1,"34303":-1,"34304":-1,"34305":-1,"34306":-1,"34307":-1,"34308":-1,"34309":-1,"34310":-1,"34311":-1,"34312":1587,"34313":-1,"34314":-1,"34315":1589,"34316":0,"34317":-1,"34318":-1,"34319":-1,"34320":-1,"34321":-1,"34322":-1,"34323":-1,"34324":-1,"34325":-1,"34326":-1,"34327":-1,"34328":-1,"34329":-1,"34330":-1,"34331":1589,"34332":1589,"34333":-1,"34334":-1,"34335":-1,"34336":-1,"34337":-1,"34338":-1,"34339":-1,"34340":1588,"34341":-1,"34342":-1,"34343":-1,"34344":-1,"34345":-1,"34346":-1,"34347":-1,"34348":1588,"34349":-1,"34350":1586,"34351":-1,"34352":-1,"34353":-1,"34354":-1,"34355":-1,"34356":1588,"34357":-1,"34358":-1,"34359":-1,"34360":1588,"34361":-1,"34362":-1,"34363":1586,"34364":-1,"34365":-1,"34366":-1,"34367":1588,"34368":-1,"34369":-1,"34370":-1,"34371":-1,"34372":1588,"34373":1586,"34374":-1,"34375":-1,"34376":-1,"34377":-1,"34378":-1,"34379":-1,"34380":1587,"34381":-1,"34382":-1,"34383":-1,"34384":-1,"34385":-1,"34386":1587,"34387":-1,"34388":0,"34389":-1,"34390":-1,"34391":-1,"34392":-1,"34393":-1,"34394":-1,"34395":-1,"34396":-1,"34397":-1,"34398":-1,"34399":-1,"34400":-1,"34401":-1,"34402":-1,"34403":-1,"34404":1587,"34405":1588,"34406":-1,"34407":-1,"34408":-1,"34409":-1,"34410":-1,"34411":-1,"34412":-1,"34413":-1,"34414":-1,"34415":-1,"34416":-1,"34417":-1,"34418":-1,"34419":1588,"34420":-1,"34421":-1,"34422":-1,"34423":-1,"34424":-1,"34425":-1,"34426":-1,"34427":-1,"34428":-1,"34429":-1,"34430":-1,"34431":-1,"34432":-1,"34433":-1,"34434":-1,"34435":-1,"34436":-1,"34437":-1,"34438":-1,"34439":1588,"34440":-1,"34441":-1,"34442":-1,"34443":1586,"34444":0,"34445":-1,"34446":-1,"34447":-1,"34448":-1,"34449":-1,"34450":-1,"34451":-1,"34452":-1,"34453":-1,"34454":-1,"34455":-1,"34456":-1,"34457":-1,"34458":-1,"34459":-1,"34460":-1,"34461":-1,"34462":-1,"34463":-1,"34464":-1,"34465":-1,"34466":-1,"34467":-1,"34468":-1,"34469":-1,"34470":-1,"34471":-1,"34472":1589,"34473":-1,"34474":-1,"34475":-1,"34476":-1,"34477":-1,"34478":-1,"34479":-1,"34480":-1,"34481":-1,"34482":-1,"34483":1586,"34484":-1,"34485":-1,"34486":-1,"34487":-1,"34488":-1,"34489":-1,"34490":-1,"34491":-1,"34492":-1,"34493":-1,"34494":1588,"34495":-1,"34496":-1,"34497":-1,"34498":-1,"34499":-1,"34500":-1,"34501":-1,"34502":-1,"34503":-1,"34504":-1,"34505":-1,"34506":-1,"34507":-1,"34508":-1,"34509":-1,"34510":-1,"34511":1588,"34512":1586,"34513":1589,"34514":-1,"34515":-1,"34516":-1,"34517":-1,"34518":0,"34519":1588,"34520":-1,"34521":-1,"34522":-1,"34523":-1,"34524":-1,"34525":-1,"34526":-1,"34527":-1,"34528":-1,"34529":-1,"34530":1588,"34531":1586,"34532":1586,"34533":-1,"34534":-1,"34535":-1,"34536":-1,"34537":-1,"34538":-1,"34539":-1,"34540":-1,"34541":-1,"34542":-1,"34543":1587,"34544":-1,"34545":-1,"34546":-1,"34547":-1,"34548":-1,"34549":-1,"34550":-1,"34551":-1,"34552":1587,"34553":-1,"34554":-1,"34555":-1,"34556":-1,"34557":1588,"34558":1588,"34559":-1,"34560":0,"34561":1588,"34562":-1,"34563":1588,"34564":-1,"34565":-1,"34566":-1,"34567":1588,"34568":-1,"34569":1588,"34570":-1,"34571":-1,"34572":-1,"34573":-1,"34574":-1,"34575":-1,"34576":1588,"34577":-1,"34578":-1,"34579":-1,"34580":-1,"34581":1588,"34582":-1,"34583":0,"34584":-1,"34585":-1,"34586":-1,"34587":-1,"34588":-1,"34589":1586,"34590":1588,"34591":-1,"34592":-1,"34593":-1,"34594":-1,"34595":-1,"34596":1587,"34597":-1,"34598":-1,"34599":-1,"34600":1587,"34601":-1,"34602":-1,"34603":-1,"34604":-1,"34605":-1,"34606":-1,"34607":-1,"34608":-1,"34609":-1,"34610":-1,"34611":-1,"34612":-1,"34613":-1,"34614":-1,"34615":1587,"34616":1587,"34617":-1,"34618":-1,"34619":-1,"34620":-1,"34621":-1,"34622":-1,"34623":-1,"34624":-1,"34625":-1,"34626":-1,"34627":-1,"34628":-1,"34629":-1,"34630":-1,"34631":-1,"34632":-1,"34633":-1,"34634":-1,"34635":-1,"34636":-1,"34637":1588,"34638":-1,"34639":1589,"34640":1588,"34641":-1,"34642":-1,"34643":-1,"34644":-1,"34645":-1,"34646":-1,"34647":-1,"34648":-1,"34649":-1,"34650":-1,"34651":-1,"34652":-1,"34653":-1,"34654":-1,"34655":1587,"34656":-1,"34657":-1,"34658":1588,"34659":-1,"34660":-1,"34661":-1,"34662":-1,"34663":-1,"34664":-1,"34665":-1,"34666":-1,"34667":-1,"34668":-1,"34669":-1,"34670":-1,"34671":-1,"34672":0,"34673":1588,"34674":-1,"34675":-1,"34676":-1,"34677":-1,"34678":-1,"34679":-1,"34680":-1,"34681":-1,"34682":-1,"34683":-1,"34684":-1,"34685":1587,"34686":-1,"34687":-1,"34688":-1,"34689":-1,"34690":-1,"34691":-1,"34692":-1,"34693":-1,"34694":-1,"34695":1587,"34696":-1,"34697":-1,"34698":-1,"34699":-1,"34700":-1,"34701":-1,"34702":-1,"34703":-1,"34704":-1,"34705":-1,"34706":-1,"34707":-1,"34708":-1,"34709":-1,"34710":-1,"34711":1587,"34712":1588,"34713":-1,"34714":-1,"34715":-1,"34716":-1,"34717":1589,"34718":-1,"34719":-1,"34720":-1,"34721":-1,"34722":-1,"34723":1587,"34724":-1,"34725":-1,"34726":-1,"34727":1586,"34728":-1,"34729":-1,"34730":-1,"34731":1587,"34732":-1,"34733":-1,"34734":1586,"34735":-1,"34736":1587,"34737":-1,"34738":-1,"34739":-1,"34740":-1,"34741":-1,"34742":-1,"34743":1589,"34744":-1,"34745":-1,"34746":1588,"34747":-1,"34748":-1,"34749":-1,"34750":-1,"34751":1588,"34752":-1,"34753":-1,"34754":-1,"34755":-1,"34756":-1,"34757":-1,"34758":-1,"34759":-1,"34760":-1,"34761":-1,"34762":-1,"34763":-1,"34764":-1,"34765":-1,"34766":-1,"34767":-1,"34768":1587,"34769":1586,"34770":-1,"34771":0,"34772":0,"34773":-1,"34774":-1,"34775":-1,"34776":1587,"34777":1586,"34778":0,"34779":-1,"34780":-1,"34781":1588,"34782":-1,"34783":-1,"34784":-1,"34785":-1,"34786":-1,"34787":-1,"34788":-1,"34789":-1,"34790":-1,"34791":-1,"34792":-1,"34793":-1,"34794":-1,"34795":-1,"34796":-1,"34797":-1,"34798":-1,"34799":1589,"34800":-1,"34801":-1,"34802":-1,"34803":-1,"34804":-1,"34805":-1,"34806":-1,"34807":-1,"34808":-1,"34809":-1,"34810":-1,"34811":-1,"34812":-1,"34813":-1,"34814":-1,"34815":-1,"34816":-1,"34817":-1,"34818":-1,"34819":-1,"34820":1588,"34821":-1,"34822":-1,"34823":-1,"34824":-1,"34825":1587,"34826":0,"34827":-1,"34828":-1,"34829":-1,"34830":-1,"34831":-1,"34832":-1,"34833":-1,"34834":-1,"34835":1588,"34836":-1,"34837":-1,"34838":-1,"34839":-1,"34840":-1,"34841":-1,"34842":-1,"34843":-1,"34844":-1,"34845":-1,"34846":-1,"34847":-1,"34848":-1,"34849":-1,"34850":-1,"34851":-1,"34852":-1,"34853":-1,"34854":-1,"34855":-1,"34856":-1,"34857":1588,"34858":-1,"34859":-1,"34860":1587,"34861":1586,"34862":-1,"34863":0,"34864":1589,"34865":-1,"34866":-1,"34867":-1,"34868":-1,"34869":-1,"34870":-1,"34871":-1,"34872":-1,"34873":-1,"34874":-1,"34875":-1,"34876":-1,"34877":-1,"34878":-1,"34879":-1,"34880":-1,"34881":-1,"34882":-1,"34883":-1,"34884":-1,"34885":-1,"34886":1587,"34887":-1,"34888":-1,"34889":-1,"34890":-1,"34891":1586,"34892":-1,"34893":-1,"34894":-1,"34895":-1,"34896":-1,"34897":-1,"34898":-1,"34899":-1,"34900":-1,"34901":-1,"34902":-1,"34903":-1,"34904":-1,"34905":-1,"34906":-1,"34907":-1,"34908":-1,"34909":-1,"34910":-1,"34911":-1,"34912":-1,"34913":-1,"34914":-1,"34915":-1,"34916":-1,"34917":-1,"34918":-1,"34919":-1,"34920":-1,"34921":-1,"34922":-1,"34923":-1,"34924":-1,"34925":1588,"34926":-1,"34927":1587,"34928":-1,"34929":-1,"34930":-1,"34931":-1,"34932":-1,"34933":-1,"34934":-1,"34935":-1,"34936":-1,"34937":1587,"34938":-1,"34939":-1,"34940":-1,"34941":-1,"34942":-1,"34943":-1,"34944":1588,"34945":-1,"34946":-1,"34947":-1,"34948":-1,"34949":-1,"34950":-1,"34951":-1,"34952":-1,"34953":-1,"34954":-1,"34955":-1,"34956":-1,"34957":-1,"34958":-1,"34959":-1,"34960":-1,"34961":-1,"34962":-1,"34963":-1,"34964":-1,"34965":-1,"34966":-1,"34967":-1,"34968":1587,"34969":-1,"34970":-1,"34971":1588,"34972":-1,"34973":-1,"34974":-1,"34975":-1,"34976":-1,"34977":-1,"34978":-1,"34979":-1,"34980":-1,"34981":-1,"34982":-1,"34983":-1,"34984":-1,"34985":-1,"34986":-1,"34987":0,"34988":-1,"34989":-1,"34990":-1,"34991":-1,"34992":-1,"34993":-1,"34994":-1,"34995":-1,"34996":-1,"34997":-1,"34998":1586,"34999":-1,"35000":-1,"35001":1587,"35002":-1,"35003":-1,"35004":-1,"35005":-1,"35006":-1,"35007":-1,"35008":0,"35009":-1,"35010":-1,"35011":-1,"35012":-1,"35013":-1,"35014":-1,"35015":-1,"35016":1586,"35017":1588,"35018":-1,"35019":-1,"35020":-1,"35021":-1,"35022":-1,"35023":-1,"35024":-1,"35025":-1,"35026":-1,"35027":-1,"35028":-1,"35029":-1,"35030":-1,"35031":-1,"35032":-1,"35033":-1,"35034":-1,"35035":-1,"35036":-1,"35037":-1,"35038":-1,"35039":-1,"35040":-1,"35041":-1,"35042":-1,"35043":-1,"35044":-1,"35045":-1,"35046":-1,"35047":-1,"35048":-1,"35049":-1,"35050":1586,"35051":-1,"35052":-1,"35053":-1,"35054":-1,"35055":-1,"35056":-1,"35057":-1,"35058":-1,"35059":-1,"35060":-1,"35061":-1,"35062":1587,"35063":1589,"35064":-1,"35065":-1,"35066":1587,"35067":-1,"35068":-1,"35069":-1,"35070":-1,"35071":-1,"35072":-1,"35073":-1,"35074":-1,"35075":-1,"35076":-1,"35077":-1,"35078":-1,"35079":-1,"35080":-1,"35081":-1,"35082":-1,"35083":-1,"35084":-1,"35085":-1,"35086":-1,"35087":-1,"35088":-1,"35089":1586,"35090":-1,"35091":-1,"35092":-1,"35093":-1,"35094":-1,"35095":-1,"35096":1587,"35097":-1,"35098":-1,"35099":-1,"35100":-1,"35101":-1,"35102":-1,"35103":-1,"35104":-1,"35105":1586,"35106":-1,"35107":1587,"35108":-1,"35109":-1,"35110":-1,"35111":0,"35112":-1,"35113":0,"35114":-1,"35115":-1,"35116":-1,"35117":-1,"35118":-1,"35119":-1,"35120":-1,"35121":-1,"35122":1589,"35123":-1,"35124":1588,"35125":-1,"35126":-1,"35127":-1,"35128":-1,"35129":-1,"35130":-1,"35131":-1,"35132":-1,"35133":-1,"35134":-1,"35135":-1,"35136":-1,"35137":-1,"35138":-1,"35139":-1,"35140":-1,"35141":-1,"35142":-1,"35143":-1,"35144":-1,"35145":-1,"35146":0,"35147":-1,"35148":-1,"35149":-1,"35150":1586,"35151":1587,"35152":-1,"35153":-1,"35154":-1,"35155":-1,"35156":-1,"35157":-1,"35158":-1,"35159":-1,"35160":-1,"35161":-1,"35162":-1,"35163":1586,"35164":-1,"35165":-1,"35166":-1,"35167":-1,"35168":1588,"35169":-1,"35170":-1,"35171":-1,"35172":-1,"35173":-1,"35174":-1,"35175":-1,"35176":-1,"35177":-1,"35178":-1,"35179":-1,"35180":-1,"35181":-1,"35182":-1,"35183":-1,"35184":-1,"35185":-1,"35186":0,"35187":-1,"35188":-1,"35189":-1,"35190":-1,"35191":-1,"35192":1587,"35193":-1,"35194":-1,"35195":1588,"35196":-1,"35197":-1,"35198":-1,"35199":-1,"35200":-1,"35201":-1,"35202":-1,"35203":-1,"35204":-1,"35205":-1,"35206":-1,"35207":-1,"35208":1587,"35209":1588,"35210":-1,"35211":1589,"35212":-1,"35213":-1,"35214":-1,"35215":-1,"35216":-1,"35217":1587,"35218":-1,"35219":-1,"35220":-1,"35221":-1,"35222":-1,"35223":-1,"35224":-1,"35225":-1,"35226":-1,"35227":-1,"35228":-1,"35229":-1,"35230":-1,"35231":-1,"35232":-1,"35233":-1,"35234":-1,"35235":-1,"35236":-1,"35237":-1,"35238":-1,"35239":1588,"35240":-1,"35241":-1,"35242":1586,"35243":-1,"35244":-1,"35245":-1,"35246":-1,"35247":-1,"35248":-1,"35249":-1,"35250":-1,"35251":-1,"35252":-1,"35253":-1,"35254":-1,"35255":-1,"35256":1586,"35257":-1,"35258":-1,"35259":-1,"35260":-1,"35261":-1,"35262":-1,"35263":-1,"35264":-1,"35265":-1,"35266":-1,"35267":1589,"35268":1588,"35269":-1,"35270":-1,"35271":-1,"35272":-1,"35273":-1,"35274":-1,"35275":-1,"35276":-1,"35277":-1,"35278":-1,"35279":-1,"35280":-1,"35281":-1,"35282":1588,"35283":1587,"35284":-1,"35285":-1,"35286":1589,"35287":-1,"35288":-1,"35289":-1,"35290":1586,"35291":-1,"35292":-1,"35293":-1,"35294":1588,"35295":-1,"35296":-1,"35297":1589,"35298":-1,"35299":1587,"35300":-1,"35301":-1,"35302":-1,"35303":-1,"35304":-1,"35305":-1,"35306":1588,"35307":1587,"35308":-1,"35309":-1,"35310":-1,"35311":1586,"35312":-1,"35313":1589,"35314":-1,"35315":-1,"35316":-1,"35317":-1,"35318":-1,"35319":1588,"35320":-1,"35321":-1,"35322":-1,"35323":0,"35324":-1,"35325":-1,"35326":-1,"35327":-1,"35328":-1,"35329":1587,"35330":1587,"35331":-1,"35332":-1,"35333":1589,"35334":-1,"35335":-1,"35336":-1,"35337":1586,"35338":-1,"35339":-1,"35340":-1,"35341":-1,"35342":-1,"35343":1587,"35344":-1,"35345":1587,"35346":-1,"35347":-1,"35348":-1,"35349":-1,"35350":-1,"35351":-1,"35352":-1,"35353":1589,"35354":-1,"35355":-1,"35356":1586,"35357":-1,"35358":-1,"35359":-1,"35360":-1,"35361":1588,"35362":1587,"35363":-1,"35364":-1,"35365":-1,"35366":-1,"35367":-1,"35368":-1,"35369":-1,"35370":1589,"35371":1587,"35372":-1,"35373":-1,"35374":-1,"35375":-1,"35376":-1,"35377":-1,"35378":-1,"35379":-1,"35380":-1,"35381":-1,"35382":1588,"35383":-1,"35384":0,"35385":-1,"35386":-1,"35387":-1,"35388":-1,"35389":-1,"35390":-1,"35391":-1,"35392":-1,"35393":-1,"35394":-1,"35395":-1,"35396":-1,"35397":-1,"35398":-1,"35399":-1,"35400":-1,"35401":-1,"35402":-1,"35403":-1,"35404":-1,"35405":-1,"35406":-1,"35407":-1,"35408":-1,"35409":-1,"35410":-1,"35411":-1,"35412":-1,"35413":-1,"35414":-1,"35415":-1,"35416":-1,"35417":-1,"35418":-1,"35419":-1,"35420":-1,"35421":-1,"35422":-1,"35423":-1,"35424":1586,"35425":-1,"35426":-1,"35427":-1,"35428":-1,"35429":-1,"35430":-1,"35431":-1,"35432":-1,"35433":1587,"35434":-1,"35435":-1,"35436":-1,"35437":1588,"35438":-1,"35439":-1,"35440":-1,"35441":-1,"35442":-1,"35443":-1,"35444":-1,"35445":-1,"35446":1588,"35447":1587,"35448":1589,"35449":1588,"35450":-1,"35451":1587,"35452":-1,"35453":-1,"35454":-1,"35455":-1,"35456":-1,"35457":-1,"35458":-1,"35459":-1,"35460":1589,"35461":1589,"35462":0,"35463":1587,"35464":1589,"35465":-1,"35466":-1,"35467":-1,"35468":-1,"35469":-1,"35470":-1,"35471":-1,"35472":-1,"35473":-1,"35474":-1,"35475":-1,"35476":-1,"35477":0,"35478":-1,"35479":-1,"35480":-1,"35481":-1,"35482":-1,"35483":-1,"35484":-1,"35485":-1,"35486":-1,"35487":-1,"35488":-1,"35489":-1,"35490":-1,"35491":-1,"35492":-1,"35493":1588,"35494":-1,"35495":-1,"35496":-1,"35497":-1,"35498":-1,"35499":-1,"35500":-1,"35501":-1,"35502":-1,"35503":1586,"35504":-1,"35505":1588,"35506":-1,"35507":-1,"35508":-1,"35509":-1,"35510":-1,"35511":-1,"35512":-1,"35513":-1,"35514":1586,"35515":-1,"35516":-1,"35517":1588,"35518":1587,"35519":-1,"35520":1587,"35521":-1,"35522":-1,"35523":-1,"35524":-1,"35525":-1,"35526":-1,"35527":-1,"35528":-1,"35529":-1,"35530":-1,"35531":-1,"35532":1588,"35533":-1,"35534":-1,"35535":1589,"35536":-1,"35537":-1,"35538":1587,"35539":-1,"35540":-1,"35541":-1,"35542":1587,"35543":-1,"35544":-1,"35545":-1,"35546":-1,"35547":-1,"35548":1587,"35549":-1,"35550":-1,"35551":-1,"35552":-1,"35553":-1,"35554":-1,"35555":-1,"35556":-1,"35557":-1,"35558":-1,"35559":-1,"35560":-1,"35561":-1,"35562":-1,"35563":-1,"35564":-1,"35565":-1,"35566":-1,"35567":-1,"35568":1588,"35569":0,"35570":-1,"35571":-1,"35572":-1,"35573":-1,"35574":-1,"35575":-1,"35576":1587,"35577":-1,"35578":-1,"35579":-1,"35580":-1,"35581":-1,"35582":-1,"35583":1586,"35584":-1,"35585":-1,"35586":-1,"35587":-1,"35588":-1,"35589":-1,"35590":-1,"35591":-1,"35592":-1,"35593":1588,"35594":-1,"35595":-1,"35596":-1,"35597":-1,"35598":-1,"35599":-1,"35600":-1,"35601":-1,"35602":-1,"35603":-1,"35604":-1,"35605":-1,"35606":-1,"35607":-1,"35608":-1,"35609":-1,"35610":-1,"35611":1587,"35612":-1,"35613":-1,"35614":1588,"35615":-1,"35616":1587,"35617":-1,"35618":1587,"35619":-1,"35620":-1,"35621":-1,"35622":-1,"35623":-1,"35624":-1,"35625":-1,"35626":-1,"35627":-1,"35628":-1,"35629":1587,"35630":-1,"35631":-1,"35632":-1,"35633":-1,"35634":-1,"35635":-1,"35636":-1,"35637":-1,"35638":-1,"35639":-1,"35640":1588,"35641":1588,"35642":-1,"35643":-1,"35644":-1,"35645":-1,"35646":-1,"35647":-1,"35648":-1,"35649":-1,"35650":-1,"35651":-1,"35652":-1,"35653":-1,"35654":-1,"35655":-1,"35656":-1,"35657":-1,"35658":-1,"35659":-1,"35660":-1,"35661":-1,"35662":-1,"35663":-1,"35664":-1,"35665":-1,"35666":-1,"35667":-1,"35668":-1,"35669":-1,"35670":-1,"35671":-1,"35672":-1,"35673":-1,"35674":-1,"35675":-1,"35676":-1,"35677":-1,"35678":-1,"35679":1589,"35680":1588,"35681":-1,"35682":-1,"35683":-1,"35684":-1,"35685":1587,"35686":-1,"35687":-1,"35688":-1,"35689":-1,"35690":1587,"35691":-1,"35692":-1,"35693":-1,"35694":-1,"35695":-1,"35696":-1,"35697":1589,"35698":-1,"35699":-1,"35700":-1,"35701":-1,"35702":1586,"35703":-1,"35704":-1,"35705":-1,"35706":-1,"35707":-1,"35708":1587,"35709":-1,"35710":-1,"35711":-1,"35712":-1,"35713":-1,"35714":-1,"35715":-1,"35716":1586,"35717":-1,"35718":-1,"35719":-1,"35720":-1,"35721":-1,"35722":-1,"35723":-1,"35724":-1,"35725":-1,"35726":-1,"35727":-1,"35728":-1,"35729":-1,"35730":-1,"35731":-1,"35732":-1,"35733":-1,"35734":-1,"35735":-1,"35736":-1,"35737":-1,"35738":1587,"35739":-1,"35740":-1,"35741":1589,"35742":-1,"35743":1588,"35744":-1,"35745":-1,"35746":-1,"35747":-1,"35748":-1,"35749":-1,"35750":-1,"35751":1588,"35752":-1,"35753":-1,"35754":-1,"35755":-1,"35756":1586,"35757":-1,"35758":-1,"35759":-1,"35760":-1,"35761":-1,"35762":-1,"35763":-1,"35764":1588,"35765":1586,"35766":-1,"35767":-1,"35768":-1,"35769":-1,"35770":-1,"35771":-1,"35772":-1,"35773":1588,"35774":-1,"35775":-1,"35776":-1,"35777":-1,"35778":-1,"35779":-1,"35780":-1,"35781":-1,"35782":-1,"35783":-1,"35784":-1,"35785":-1,"35786":-1,"35787":-1,"35788":-1,"35789":-1,"35790":-1,"35791":-1,"35792":-1,"35793":-1,"35794":-1,"35795":-1,"35796":-1,"35797":-1,"35798":-1,"35799":-1,"35800":-1,"35801":-1,"35802":-1,"35803":-1,"35804":-1,"35805":-1,"35806":-1,"35807":1588,"35808":-1,"35809":-1,"35810":-1,"35811":-1,"35812":-1,"35813":-1,"35814":1586,"35815":-1,"35816":-1,"35817":-1,"35818":-1,"35819":-1,"35820":-1,"35821":-1,"35822":-1,"35823":-1,"35824":-1,"35825":-1,"35826":-1,"35827":-1,"35828":-1,"35829":-1,"35830":-1,"35831":-1,"35832":0,"35833":-1,"35834":-1,"35835":-1,"35836":1589,"35837":-1,"35838":-1,"35839":-1,"35840":-1,"35841":-1,"35842":-1,"35843":-1,"35844":-1,"35845":1587,"35846":-1,"35847":-1,"35848":-1,"35849":-1,"35850":-1,"35851":0,"35852":-1,"35853":-1,"35854":-1,"35855":0,"35856":-1,"35857":-1,"35858":-1,"35859":-1,"35860":-1,"35861":-1,"35862":-1,"35863":-1,"35864":-1,"35865":1588,"35866":-1,"35867":-1,"35868":-1,"35869":-1,"35870":-1,"35871":1588,"35872":-1,"35873":-1,"35874":-1,"35875":-1,"35876":-1,"35877":1587,"35878":-1,"35879":-1,"35880":-1,"35881":1586,"35882":-1,"35883":1588,"35884":-1,"35885":-1,"35886":-1,"35887":-1,"35888":-1,"35889":1588,"35890":-1,"35891":-1,"35892":-1,"35893":-1,"35894":-1,"35895":-1,"35896":-1,"35897":-1,"35898":-1,"35899":-1,"35900":1587,"35901":-1,"35902":-1,"35903":-1,"35904":-1,"35905":1588,"35906":-1,"35907":-1,"35908":-1,"35909":-1,"35910":-1,"35911":-1,"35912":1588,"35913":-1,"35914":1587,"35915":-1,"35916":-1,"35917":-1,"35918":-1,"35919":-1,"35920":-1,"35921":-1,"35922":-1,"35923":-1,"35924":-1,"35925":1588,"35926":-1,"35927":1588,"35928":1587,"35929":-1,"35930":1587,"35931":1587,"35932":-1,"35933":-1,"35934":-1,"35935":-1,"35936":-1,"35937":-1,"35938":-1,"35939":-1,"35940":-1,"35941":1588,"35942":-1,"35943":-1,"35944":1589,"35945":1588,"35946":-1,"35947":-1,"35948":-1,"35949":-1,"35950":-1,"35951":0,"35952":-1,"35953":-1,"35954":-1,"35955":1588,"35956":-1,"35957":-1,"35958":-1,"35959":-1,"35960":-1,"35961":-1,"35962":-1,"35963":-1,"35964":-1,"35965":-1,"35966":-1,"35967":-1,"35968":-1,"35969":-1,"35970":-1,"35971":1588,"35972":-1,"35973":-1,"35974":-1,"35975":-1,"35976":1588,"35977":-1,"35978":1588,"35979":-1,"35980":-1,"35981":-1,"35982":1587,"35983":1586,"35984":-1,"35985":-1,"35986":-1,"35987":-1,"35988":-1,"35989":-1,"35990":-1,"35991":1588,"35992":-1,"35993":-1,"35994":0,"35995":-1,"35996":-1,"35997":-1,"35998":0,"35999":-1,"36000":1587,"36001":-1,"36002":-1,"36003":-1,"36004":-1,"36005":-1,"36006":-1,"36007":-1,"36008":-1,"36009":-1,"36010":1587,"36011":-1,"36012":-1,"36013":-1,"36014":-1,"36015":0,"36016":-1,"36017":-1,"36018":-1,"36019":-1,"36020":-1,"36021":-1,"36022":-1,"36023":0,"36024":-1,"36025":1587,"36026":-1,"36027":1588,"36028":-1,"36029":-1,"36030":-1,"36031":-1,"36032":-1,"36033":-1,"36034":-1,"36035":-1,"36036":-1,"36037":-1,"36038":-1,"36039":-1,"36040":-1,"36041":0,"36042":-1,"36043":1588,"36044":-1,"36045":-1,"36046":1587,"36047":-1,"36048":-1,"36049":1587,"36050":-1,"36051":-1,"36052":-1,"36053":1587,"36054":-1,"36055":-1,"36056":-1,"36057":-1,"36058":-1,"36059":-1,"36060":-1,"36061":-1,"36062":-1,"36063":-1,"36064":-1,"36065":-1,"36066":-1,"36067":-1,"36068":-1,"36069":-1,"36070":-1,"36071":-1,"36072":1587,"36073":-1,"36074":1586,"36075":-1,"36076":-1,"36077":-1,"36078":-1,"36079":-1,"36080":-1,"36081":-1,"36082":-1,"36083":-1,"36084":-1,"36085":-1,"36086":0,"36087":1588,"36088":-1,"36089":-1,"36090":-1,"36091":1587,"36092":-1,"36093":1587,"36094":-1,"36095":-1,"36096":1588,"36097":-1,"36098":-1,"36099":0,"36100":-1,"36101":-1,"36102":-1,"36103":-1,"36104":-1,"36105":1587,"36106":-1,"36107":-1,"36108":-1,"36109":-1,"36110":1588,"36111":-1,"36112":1587,"36113":1588,"36114":-1,"36115":-1,"36116":1586,"36117":-1,"36118":-1,"36119":-1,"36120":1587,"36121":-1,"36122":1586,"36123":-1,"36124":-1,"36125":1587,"36126":-1,"36127":-1,"36128":-1,"36129":-1,"36130":-1,"36131":-1,"36132":-1,"36133":-1,"36134":-1,"36135":-1,"36136":-1,"36137":-1,"36138":-1,"36139":-1,"36140":-1,"36141":-1,"36142":-1,"36143":-1,"36144":-1,"36145":-1,"36146":-1,"36147":-1,"36148":0,"36149":-1,"36150":-1,"36151":-1,"36152":-1,"36153":-1,"36154":-1,"36155":-1,"36156":-1,"36157":-1,"36158":-1,"36159":-1,"36160":-1,"36161":-1,"36162":-1,"36163":-1,"36164":-1,"36165":-1,"36166":-1,"36167":-1,"36168":-1,"36169":-1,"36170":-1,"36171":-1,"36172":-1,"36173":-1,"36174":-1,"36175":-1,"36176":-1,"36177":-1,"36178":-1,"36179":-1,"36180":-1,"36181":1588,"36182":-1,"36183":-1,"36184":1586,"36185":-1,"36186":-1,"36187":-1,"36188":1586,"36189":-1,"36190":-1,"36191":-1,"36192":-1,"36193":-1,"36194":-1,"36195":-1,"36196":-1,"36197":-1,"36198":-1,"36199":-1,"36200":-1,"36201":-1,"36202":-1,"36203":1588,"36204":-1,"36205":-1,"36206":-1,"36207":-1,"36208":-1,"36209":-1,"36210":-1,"36211":-1,"36212":-1,"36213":-1,"36214":1586,"36215":-1,"36216":-1,"36217":-1,"36218":-1,"36219":-1,"36220":-1,"36221":1587,"36222":-1,"36223":-1,"36224":-1,"36225":-1,"36226":-1,"36227":-1,"36228":-1,"36229":-1,"36230":-1,"36231":-1,"36232":-1,"36233":-1,"36234":-1,"36235":-1,"36236":-1,"36237":-1,"36238":-1,"36239":-1,"36240":-1,"36241":-1,"36242":-1,"36243":-1,"36244":-1,"36245":-1,"36246":-1,"36247":1587,"36248":0,"36249":-1,"36250":-1,"36251":-1,"36252":-1,"36253":-1,"36254":-1,"36255":-1,"36256":-1,"36257":1588,"36258":-1,"36259":-1,"36260":-1,"36261":-1,"36262":-1,"36263":-1,"36264":-1,"36265":-1,"36266":-1,"36267":-1,"36268":-1,"36269":-1,"36270":-1,"36271":-1,"36272":-1,"36273":-1,"36274":-1,"36275":-1,"36276":-1,"36277":-1,"36278":-1,"36279":-1,"36280":-1,"36281":-1,"36282":-1,"36283":-1,"36284":-1,"36285":1589,"36286":-1,"36287":-1,"36288":-1,"36289":-1,"36290":-1,"36291":-1,"36292":-1,"36293":-1,"36294":1589,"36295":-1,"36296":-1,"36297":-1,"36298":-1,"36299":-1,"36300":1588,"36301":-1,"36302":-1,"36303":-1,"36304":-1,"36305":-1,"36306":-1,"36307":-1,"36308":-1,"36309":-1,"36310":0,"36311":-1,"36312":1588,"36313":-1,"36314":-1,"36315":-1,"36316":-1,"36317":-1,"36318":0,"36319":-1,"36320":-1,"36321":-1,"36322":-1,"36323":-1,"36324":-1,"36325":-1,"36326":-1,"36327":-1,"36328":-1,"36329":-1,"36330":-1,"36331":-1,"36332":-1,"36333":-1,"36334":-1,"36335":-1,"36336":-1,"36337":-1,"36338":-1,"36339":-1,"36340":1588,"36341":-1,"36342":-1,"36343":0,"36344":0,"36345":-1,"36346":-1,"36347":-1,"36348":-1,"36349":-1,"36350":-1,"36351":1586,"36352":-1,"36353":-1,"36354":-1,"36355":-1,"36356":-1,"36357":-1,"36358":-1,"36359":-1,"36360":-1,"36361":-1,"36362":-1,"36363":-1,"36364":-1,"36365":-1,"36366":-1,"36367":-1,"36368":-1,"36369":1587,"36370":1586,"36371":1587,"36372":-1,"36373":1588,"36374":-1,"36375":-1,"36376":-1,"36377":-1,"36378":-1,"36379":-1,"36380":-1,"36381":-1,"36382":-1,"36383":-1,"36384":-1,"36385":-1,"36386":-1,"36387":-1,"36388":-1,"36389":-1,"36390":1586,"36391":-1,"36392":-1,"36393":-1,"36394":1586,"36395":-1,"36396":-1,"36397":-1,"36398":-1,"36399":-1,"36400":-1,"36401":-1,"36402":-1,"36403":-1,"36404":-1,"36405":-1,"36406":-1,"36407":-1,"36408":-1,"36409":-1,"36410":-1,"36411":-1,"36412":-1,"36413":-1,"36414":-1,"36415":-1,"36416":-1,"36417":-1,"36418":1588,"36419":-1,"36420":-1,"36421":-1,"36422":-1,"36423":-1,"36424":-1,"36425":-1,"36426":-1,"36427":1586,"36428":-1,"36429":-1,"36430":1589,"36431":-1,"36432":-1,"36433":-1,"36434":-1,"36435":-1,"36436":1589,"36437":-1,"36438":-1,"36439":-1,"36440":1588,"36441":-1,"36442":-1,"36443":-1,"36444":-1,"36445":-1,"36446":0,"36447":-1,"36448":-1,"36449":-1,"36450":-1,"36451":-1,"36452":-1,"36453":-1,"36454":-1,"36455":-1,"36456":-1,"36457":-1,"36458":-1,"36459":-1,"36460":-1,"36461":-1,"36462":-1,"36463":-1,"36464":-1,"36465":-1,"36466":-1,"36467":-1,"36468":1587,"36469":-1,"36470":-1,"36471":-1,"36472":-1,"36473":1588,"36474":-1,"36475":-1,"36476":-1,"36477":-1,"36478":-1,"36479":1587,"36480":-1,"36481":-1,"36482":1586,"36483":1587,"36484":-1,"36485":-1,"36486":-1,"36487":-1,"36488":1587,"36489":-1,"36490":-1,"36491":-1,"36492":-1,"36493":-1,"36494":-1,"36495":-1,"36496":-1,"36497":1588,"36498":-1,"36499":-1,"36500":-1,"36501":-1,"36502":-1,"36503":-1,"36504":-1,"36505":-1,"36506":-1,"36507":-1,"36508":-1,"36509":-1,"36510":-1,"36511":-1,"36512":1588,"36513":-1,"36514":-1,"36515":-1,"36516":-1,"36517":-1,"36518":1587,"36519":-1,"36520":-1,"36521":-1,"36522":-1,"36523":-1,"36524":0,"36525":-1,"36526":-1,"36527":-1,"36528":1588,"36529":-1,"36530":0,"36531":-1,"36532":-1,"36533":-1,"36534":-1,"36535":-1,"36536":-1,"36537":-1,"36538":0,"36539":-1,"36540":-1,"36541":-1,"36542":-1,"36543":-1,"36544":-1,"36545":-1,"36546":-1,"36547":1586,"36548":-1,"36549":1586,"36550":-1,"36551":-1,"36552":-1,"36553":-1,"36554":-1,"36555":1586,"36556":-1,"36557":-1,"36558":-1,"36559":1588,"36560":-1,"36561":1587,"36562":-1,"36563":-1,"36564":-1,"36565":-1,"36566":-1,"36567":-1,"36568":1589,"36569":1589,"36570":-1,"36571":-1,"36572":-1,"36573":1587,"36574":0,"36575":-1,"36576":-1,"36577":-1,"36578":-1,"36579":-1,"36580":-1,"36581":1586,"36582":-1,"36583":-1,"36584":1587,"36585":-1,"36586":1587,"36587":-1,"36588":-1,"36589":-1,"36590":-1,"36591":-1,"36592":-1,"36593":-1,"36594":1587,"36595":-1,"36596":1588,"36597":1588,"36598":-1,"36599":-1,"36600":-1,"36601":-1,"36602":-1,"36603":-1,"36604":-1,"36605":-1,"36606":-1,"36607":-1,"36608":-1,"36609":-1,"36610":1588,"36611":-1,"36612":-1,"36613":-1,"36614":-1,"36615":-1,"36616":-1,"36617":1589,"36618":-1,"36619":-1,"36620":-1,"36621":-1,"36622":-1,"36623":-1,"36624":-1,"36625":-1,"36626":1588,"36627":-1,"36628":-1,"36629":0,"36630":-1,"36631":-1,"36632":-1,"36633":-1,"36634":-1,"36635":-1,"36636":-1,"36637":-1,"36638":-1,"36639":-1,"36640":-1,"36641":-1,"36642":-1,"36643":-1,"36644":-1,"36645":1589,"36646":1587,"36647":-1,"36648":1588,"36649":-1,"36650":-1,"36651":-1,"36652":-1,"36653":-1,"36654":-1,"36655":-1,"36656":-1,"36657":-1,"36658":1587,"36659":-1,"36660":-1,"36661":-1,"36662":-1,"36663":-1,"36664":1587,"36665":-1,"36666":-1,"36667":-1,"36668":-1,"36669":-1,"36670":1587,"36671":-1,"36672":-1,"36673":-1,"36674":-1,"36675":1587,"36676":-1,"36677":-1,"36678":1587,"36679":-1,"36680":-1,"36681":-1,"36682":-1,"36683":-1,"36684":-1,"36685":1588,"36686":-1,"36687":-1,"36688":-1,"36689":-1,"36690":-1,"36691":-1,"36692":-1,"36693":-1,"36694":-1,"36695":-1,"36696":-1,"36697":-1,"36698":-1,"36699":-1,"36700":-1,"36701":-1,"36702":-1,"36703":-1,"36704":-1,"36705":-1,"36706":-1,"36707":-1,"36708":-1,"36709":-1,"36710":-1,"36711":-1,"36712":-1,"36713":-1,"36714":-1,"36715":1589,"36716":-1,"36717":-1,"36718":-1,"36719":-1,"36720":-1,"36721":-1,"36722":-1,"36723":-1,"36724":1587,"36725":-1,"36726":-1,"36727":0,"36728":-1,"36729":-1,"36730":-1,"36731":-1,"36732":-1,"36733":-1,"36734":-1,"36735":-1,"36736":-1,"36737":1587,"36738":-1,"36739":-1,"36740":0,"36741":-1,"36742":1588,"36743":-1,"36744":-1,"36745":-1,"36746":-1,"36747":-1,"36748":-1,"36749":-1,"36750":1588,"36751":-1,"36752":-1,"36753":-1,"36754":-1,"36755":-1,"36756":1588,"36757":-1,"36758":-1,"36759":-1,"36760":-1,"36761":-1,"36762":-1,"36763":-1,"36764":-1,"36765":-1,"36766":-1,"36767":-1,"36768":-1,"36769":-1,"36770":1588,"36771":-1,"36772":1587,"36773":-1,"36774":-1,"36775":-1,"36776":-1,"36777":-1,"36778":-1,"36779":-1,"36780":1586,"36781":-1,"36782":1588,"36783":-1,"36784":-1,"36785":-1,"36786":-1,"36787":-1,"36788":-1,"36789":-1,"36790":-1,"36791":-1,"36792":-1,"36793":1586,"36794":-1,"36795":-1,"36796":1587,"36797":-1,"36798":-1,"36799":-1,"36800":-1,"36801":-1,"36802":0,"36803":1589,"36804":-1,"36805":-1,"36806":-1,"36807":-1,"36808":-1,"36809":-1,"36810":1587,"36811":-1,"36812":1588,"36813":-1,"36814":-1,"36815":-1,"36816":0,"36817":-1,"36818":-1,"36819":-1,"36820":1588,"36821":-1,"36822":-1,"36823":-1,"36824":-1,"36825":-1,"36826":-1,"36827":-1,"36828":-1,"36829":-1,"36830":-1,"36831":1586,"36832":-1,"36833":-1,"36834":-1,"36835":-1,"36836":1588,"36837":-1,"36838":-1,"36839":-1,"36840":-1,"36841":-1,"36842":-1,"36843":-1,"36844":-1,"36845":-1,"36846":-1,"36847":-1,"36848":-1,"36849":-1,"36850":-1,"36851":-1,"36852":1586,"36853":-1,"36854":-1,"36855":-1,"36856":-1,"36857":-1,"36858":-1,"36859":0,"36860":-1,"36861":-1,"36862":1587,"36863":-1,"36864":-1,"36865":1589,"36866":-1,"36867":-1,"36868":-1,"36869":-1,"36870":-1,"36871":0,"36872":-1,"36873":-1,"36874":-1,"36875":-1,"36876":-1,"36877":-1,"36878":-1,"36879":-1,"36880":-1,"36881":-1,"36882":0,"36883":-1,"36884":-1,"36885":-1,"36886":-1,"36887":-1,"36888":-1,"36889":-1,"36890":-1,"36891":-1,"36892":1586,"36893":-1,"36894":-1,"36895":-1,"36896":-1,"36897":-1,"36898":-1,"36899":-1,"36900":-1,"36901":-1,"36902":-1,"36903":-1,"36904":-1,"36905":-1,"36906":-1,"36907":-1,"36908":-1,"36909":-1,"36910":-1,"36911":-1,"36912":1587,"36913":-1,"36914":-1,"36915":-1,"36916":-1,"36917":1588,"36918":-1,"36919":-1,"36920":-1,"36921":-1,"36922":-1,"36923":-1,"36924":-1,"36925":-1,"36926":-1,"36927":-1,"36928":-1,"36929":-1,"36930":-1,"36931":-1,"36932":-1,"36933":-1,"36934":0,"36935":-1,"36936":1588,"36937":-1,"36938":1588,"36939":1587,"36940":-1,"36941":-1,"36942":-1,"36943":-1,"36944":-1,"36945":-1,"36946":-1,"36947":-1,"36948":1588,"36949":-1,"36950":1588,"36951":-1,"36952":-1,"36953":-1,"36954":-1,"36955":-1,"36956":-1,"36957":-1,"36958":-1,"36959":-1,"36960":-1,"36961":-1,"36962":-1,"36963":-1,"36964":-1,"36965":-1,"36966":-1,"36967":-1,"36968":-1,"36969":-1,"36970":1587,"36971":-1,"36972":-1,"36973":-1,"36974":-1,"36975":-1,"36976":-1,"36977":-1,"36978":-1,"36979":-1,"36980":-1,"36981":1587,"36982":-1,"36983":-1,"36984":-1,"36985":-1,"36986":-1,"36987":-1,"36988":1587,"36989":-1,"36990":-1,"36991":-1,"36992":-1,"36993":1588,"36994":-1,"36995":-1,"36996":-1,"36997":1588,"36998":-1,"36999":-1,"37000":-1,"37001":-1,"37002":-1,"37003":-1,"37004":-1,"37005":-1,"37006":-1,"37007":-1,"37008":-1,"37009":-1,"37010":1587,"37011":-1,"37012":-1,"37013":1587,"37014":-1,"37015":-1,"37016":-1,"37017":-1,"37018":-1,"37019":-1,"37020":1589,"37021":-1,"37022":-1,"37023":-1,"37024":-1,"37025":1587,"37026":-1,"37027":-1,"37028":0,"37029":-1,"37030":-1,"37031":-1,"37032":1589,"37033":-1,"37034":-1,"37035":-1,"37036":-1,"37037":-1,"37038":-1,"37039":-1,"37040":-1,"37041":-1,"37042":-1,"37043":-1,"37044":-1,"37045":-1,"37046":-1,"37047":-1,"37048":-1,"37049":-1,"37050":-1,"37051":-1,"37052":1587,"37053":1588,"37054":-1,"37055":-1,"37056":-1,"37057":-1,"37058":-1,"37059":-1,"37060":-1,"37061":-1,"37062":-1,"37063":-1,"37064":-1,"37065":-1,"37066":1588,"37067":-1,"37068":-1,"37069":-1,"37070":-1,"37071":-1,"37072":-1,"37073":-1,"37074":0,"37075":1587,"37076":-1,"37077":-1,"37078":-1,"37079":1588,"37080":-1,"37081":-1,"37082":-1,"37083":-1,"37084":-1,"37085":-1,"37086":-1,"37087":1587,"37088":-1,"37089":-1,"37090":-1,"37091":-1,"37092":-1,"37093":-1,"37094":-1,"37095":1587,"37096":-1,"37097":1588,"37098":-1,"37099":-1,"37100":-1,"37101":-1,"37102":0,"37103":-1,"37104":-1,"37105":0,"37106":-1,"37107":-1,"37108":-1,"37109":-1,"37110":-1,"37111":-1,"37112":-1,"37113":-1,"37114":-1,"37115":1587,"37116":-1,"37117":1588,"37118":-1,"37119":-1,"37120":-1,"37121":-1,"37122":-1,"37123":-1,"37124":-1,"37125":-1,"37126":-1,"37127":-1,"37128":-1,"37129":1589,"37130":-1,"37131":-1,"37132":-1,"37133":-1,"37134":1589,"37135":-1,"37136":-1,"37137":-1,"37138":-1,"37139":-1,"37140":-1,"37141":-1,"37142":-1,"37143":-1,"37144":-1,"37145":-1,"37146":-1,"37147":-1,"37148":-1,"37149":-1,"37150":-1,"37151":-1,"37152":-1,"37153":-1,"37154":0,"37155":-1,"37156":-1,"37157":-1,"37158":-1,"37159":-1,"37160":-1,"37161":-1,"37162":-1,"37163":-1,"37164":-1,"37165":-1,"37166":0,"37167":-1,"37168":-1,"37169":-1,"37170":1586,"37171":1588,"37172":-1,"37173":-1,"37174":-1,"37175":-1,"37176":-1,"37177":1587,"37178":-1,"37179":1588,"37180":-1,"37181":-1,"37182":-1,"37183":-1,"37184":-1,"37185":-1,"37186":-1,"37187":-1,"37188":1587,"37189":-1,"37190":-1,"37191":-1,"37192":1588,"37193":-1,"37194":-1,"37195":-1,"37196":-1,"37197":-1,"37198":-1,"37199":1588,"37200":0,"37201":-1,"37202":-1,"37203":-1,"37204":-1,"37205":1589,"37206":-1,"37207":-1,"37208":-1,"37209":1586,"37210":-1,"37211":1587,"37212":-1,"37213":-1,"37214":-1,"37215":-1,"37216":-1,"37217":-1,"37218":-1,"37219":-1,"37220":-1,"37221":1586,"37222":-1,"37223":-1,"37224":0,"37225":-1,"37226":-1,"37227":1587,"37228":-1,"37229":-1,"37230":-1,"37231":-1,"37232":-1,"37233":-1,"37234":-1,"37235":-1,"37236":-1,"37237":-1,"37238":-1,"37239":-1,"37240":-1,"37241":-1,"37242":1586,"37243":-1,"37244":-1,"37245":-1,"37246":-1,"37247":-1,"37248":-1,"37249":-1,"37250":-1,"37251":-1,"37252":-1,"37253":-1,"37254":1587,"37255":-1,"37256":-1,"37257":-1,"37258":1587,"37259":-1,"37260":0,"37261":-1,"37262":-1,"37263":-1,"37264":-1,"37265":-1,"37266":1588,"37267":-1,"37268":-1,"37269":-1,"37270":-1,"37271":-1,"37272":-1,"37273":1588,"37274":-1,"37275":-1,"37276":-1,"37277":-1,"37278":-1,"37279":-1,"37280":-1,"37281":-1,"37282":0,"37283":-1,"37284":-1,"37285":0,"37286":-1,"37287":-1,"37288":-1,"37289":-1,"37290":-1,"37291":-1,"37292":-1,"37293":-1,"37294":-1,"37295":-1,"37296":-1,"37297":-1,"37298":-1,"37299":-1,"37300":-1,"37301":-1,"37302":-1,"37303":-1,"37304":-1,"37305":-1,"37306":-1,"37307":-1,"37308":-1,"37309":-1,"37310":-1,"37311":-1,"37312":-1,"37313":-1,"37314":-1,"37315":-1,"37316":-1,"37317":1588,"37318":-1,"37319":-1,"37320":-1,"37321":-1,"37322":-1,"37323":-1,"37324":-1,"37325":-1,"37326":-1,"37327":-1,"37328":1588,"37329":1588,"37330":-1,"37331":-1,"37332":-1,"37333":-1,"37334":-1,"37335":-1,"37336":0,"37337":1586,"37338":-1,"37339":0,"37340":1588,"37341":-1,"37342":-1,"37343":0,"37344":-1,"37345":1588,"37346":0,"37347":-1,"37348":-1,"37349":-1,"37350":-1,"37351":-1,"37352":1589,"37353":-1,"37354":-1,"37355":-1,"37356":-1,"37357":-1,"37358":-1,"37359":-1,"37360":-1,"37361":1587,"37362":-1,"37363":-1,"37364":-1,"37365":1587,"37366":-1,"37367":-1,"37368":-1,"37369":-1,"37370":-1,"37371":-1,"37372":-1,"37373":1588,"37374":-1,"37375":-1,"37376":-1,"37377":0,"37378":-1,"37379":1588,"37380":-1,"37381":-1,"37382":-1,"37383":-1,"37384":-1,"37385":-1,"37386":1589,"37387":-1,"37388":-1,"37389":-1,"37390":-1,"37391":-1,"37392":-1,"37393":-1,"37394":-1,"37395":-1,"37396":-1,"37397":1586,"37398":-1,"37399":-1,"37400":-1,"37401":-1,"37402":-1,"37403":-1,"37404":-1,"37405":-1,"37406":-1,"37407":-1,"37408":1587,"37409":-1,"37410":1588,"37411":1588,"37412":-1,"37413":-1,"37414":-1,"37415":0,"37416":0,"37417":-1,"37418":0,"37419":1587,"37420":-1,"37421":-1,"37422":-1,"37423":-1,"37424":-1,"37425":-1,"37426":-1,"37427":-1,"37428":1586,"37429":-1,"37430":-1,"37431":-1,"37432":-1,"37433":-1,"37434":-1,"37435":-1,"37436":1586,"37437":-1,"37438":-1,"37439":-1,"37440":-1,"37441":-1,"37442":1587,"37443":-1,"37444":-1,"37445":-1,"37446":-1,"37447":-1,"37448":1586,"37449":1587,"37450":-1,"37451":-1,"37452":-1,"37453":-1,"37454":-1,"37455":-1,"37456":1587,"37457":-1,"37458":-1,"37459":-1,"37460":-1,"37461":-1,"37462":-1,"37463":-1,"37464":-1,"37465":1589,"37466":-1,"37467":-1,"37468":1588,"37469":-1,"37470":-1,"37471":-1,"37472":-1,"37473":-1,"37474":-1,"37475":-1,"37476":-1,"37477":-1,"37478":-1,"37479":-1,"37480":-1,"37481":-1,"37482":-1,"37483":-1,"37484":-1,"37485":1588,"37486":-1,"37487":-1,"37488":-1,"37489":-1,"37490":-1,"37491":-1,"37492":-1,"37493":-1,"37494":1586,"37495":-1,"37496":-1,"37497":-1,"37498":-1,"37499":-1,"37500":-1,"37501":-1,"37502":-1,"37503":-1,"37504":-1,"37505":-1,"37506":-1,"37507":-1,"37508":1588,"37509":-1,"37510":-1,"37511":-1,"37512":1587,"37513":-1,"37514":-1,"37515":-1,"37516":-1,"37517":-1,"37518":-1,"37519":-1,"37520":1589,"37521":-1,"37522":-1,"37523":-1,"37524":1589,"37525":-1,"37526":-1,"37527":-1,"37528":-1,"37529":-1,"37530":-1,"37531":-1,"37532":-1,"37533":-1,"37534":-1,"37535":-1,"37536":-1,"37537":0,"37538":-1,"37539":-1,"37540":-1,"37541":1588,"37542":-1,"37543":-1,"37544":-1,"37545":-1,"37546":-1,"37547":-1,"37548":1587,"37549":-1,"37550":-1,"37551":1587,"37552":-1,"37553":-1,"37554":-1,"37555":1587,"37556":-1,"37557":-1,"37558":-1,"37559":-1,"37560":-1,"37561":-1,"37562":-1,"37563":1589,"37564":-1,"37565":-1,"37566":-1,"37567":1586,"37568":-1,"37569":1589,"37570":-1,"37571":-1,"37572":-1,"37573":-1,"37574":1588,"37575":-1,"37576":-1,"37577":-1,"37578":-1,"37579":-1,"37580":-1,"37581":-1,"37582":-1,"37583":-1,"37584":1587,"37585":-1,"37586":-1,"37587":-1,"37588":-1,"37589":-1,"37590":-1,"37591":-1,"37592":-1,"37593":-1,"37594":-1,"37595":-1,"37596":-1,"37597":-1,"37598":-1,"37599":-1,"37600":-1,"37601":-1,"37602":-1,"37603":-1,"37604":-1,"37605":-1,"37606":1586,"37607":-1,"37608":-1,"37609":-1,"37610":-1,"37611":0,"37612":1587,"37613":-1,"37614":-1,"37615":-1,"37616":-1,"37617":-1,"37618":-1,"37619":1588,"37620":-1,"37621":-1,"37622":1589,"37623":-1,"37624":-1,"37625":-1,"37626":-1,"37627":-1,"37628":-1,"37629":-1,"37630":1588,"37631":0,"37632":-1,"37633":-1,"37634":-1,"37635":-1,"37636":1588,"37637":-1,"37638":-1,"37639":-1,"37640":-1,"37641":-1,"37642":-1,"37643":-1,"37644":-1,"37645":-1,"37646":-1,"37647":1587,"37648":-1,"37649":-1,"37650":-1,"37651":-1,"37652":-1,"37653":1589,"37654":-1,"37655":-1,"37656":-1,"37657":-1,"37658":-1,"37659":-1,"37660":-1,"37661":-1,"37662":-1,"37663":1586,"37664":-1,"37665":-1,"37666":-1,"37667":-1,"37668":-1,"37669":-1,"37670":-1,"37671":-1,"37672":-1,"37673":-1,"37674":-1,"37675":-1,"37676":1589,"37677":-1,"37678":-1,"37679":-1,"37680":-1,"37681":-1,"37682":-1,"37683":-1,"37684":-1,"37685":-1,"37686":-1,"37687":-1,"37688":-1,"37689":-1,"37690":-1,"37691":-1,"37692":-1,"37693":-1,"37694":-1,"37695":0,"37696":-1,"37697":-1,"37698":-1,"37699":-1,"37700":-1,"37701":-1,"37702":-1,"37703":-1,"37704":-1,"37705":-1,"37706":-1,"37707":-1,"37708":1587,"37709":-1,"37710":-1,"37711":-1,"37712":-1,"37713":1588,"37714":-1,"37715":1587,"37716":-1,"37717":-1,"37718":-1,"37719":1588,"37720":1587,"37721":-1,"37722":-1,"37723":-1,"37724":-1,"37725":-1,"37726":1588,"37727":-1,"37728":-1,"37729":-1,"37730":-1,"37731":-1,"37732":-1,"37733":-1,"37734":-1,"37735":1587,"37736":-1,"37737":-1,"37738":-1,"37739":0,"37740":-1,"37741":-1,"37742":-1,"37743":-1,"37744":-1,"37745":-1,"37746":-1,"37747":-1,"37748":-1,"37749":1586,"37750":-1,"37751":-1,"37752":1588,"37753":1588,"37754":1588,"37755":1588,"37756":-1,"37757":-1,"37758":-1,"37759":-1,"37760":-1,"37761":-1,"37762":-1,"37763":-1,"37764":-1,"37765":-1,"37766":-1,"37767":-1,"37768":1586,"37769":-1,"37770":-1,"37771":-1,"37772":1589,"37773":-1,"37774":-1,"37775":-1,"37776":-1,"37777":-1,"37778":-1,"37779":-1,"37780":-1,"37781":-1,"37782":-1,"37783":0,"37784":-1,"37785":-1,"37786":-1,"37787":-1,"37788":-1,"37789":1587,"37790":-1,"37791":1587,"37792":1587,"37793":-1,"37794":0,"37795":1588,"37796":-1,"37797":-1,"37798":-1,"37799":-1,"37800":-1,"37801":1589,"37802":-1,"37803":-1,"37804":-1,"37805":-1,"37806":-1,"37807":-1,"37808":-1,"37809":-1,"37810":-1,"37811":-1,"37812":1588,"37813":-1,"37814":-1,"37815":-1,"37816":-1,"37817":0,"37818":-1,"37819":-1,"37820":-1,"37821":-1,"37822":-1,"37823":-1,"37824":-1,"37825":-1,"37826":1587,"37827":-1,"37828":1587,"37829":-1,"37830":1588,"37831":-1,"37832":-1,"37833":1586,"37834":-1,"37835":-1,"37836":-1,"37837":-1,"37838":-1,"37839":-1,"37840":-1,"37841":-1,"37842":-1,"37843":-1,"37844":-1,"37845":-1,"37846":-1,"37847":-1,"37848":-1,"37849":1587,"37850":1588,"37851":-1,"37852":-1,"37853":-1,"37854":-1,"37855":-1,"37856":-1,"37857":-1,"37858":-1,"37859":1589,"37860":-1,"37861":0,"37862":-1,"37863":-1,"37864":-1,"37865":-1,"37866":-1,"37867":-1,"37868":-1,"37869":-1,"37870":1588,"37871":-1,"37872":-1,"37873":-1,"37874":1588,"37875":1587,"37876":-1,"37877":-1,"37878":-1,"37879":-1,"37880":-1,"37881":-1,"37882":-1,"37883":1586,"37884":-1,"37885":-1,"37886":-1,"37887":-1,"37888":-1,"37889":-1,"37890":-1,"37891":-1,"37892":-1,"37893":-1,"37894":1588,"37895":-1,"37896":-1,"37897":-1,"37898":-1,"37899":1588,"37900":-1,"37901":1586,"37902":-1,"37903":-1,"37904":-1,"37905":-1,"37906":-1,"37907":-1,"37908":-1,"37909":-1,"37910":1586,"37911":-1,"37912":-1,"37913":-1,"37914":-1,"37915":-1,"37916":-1,"37917":-1,"37918":-1,"37919":-1,"37920":1587,"37921":-1,"37922":-1,"37923":-1,"37924":-1,"37925":1587,"37926":-1,"37927":-1,"37928":-1,"37929":0,"37930":-1,"37931":-1,"37932":1588,"37933":-1,"37934":-1,"37935":-1,"37936":-1,"37937":-1,"37938":1588,"37939":-1,"37940":-1,"37941":-1,"37942":-1,"37943":-1,"37944":-1,"37945":-1,"37946":-1,"37947":-1,"37948":-1,"37949":-1,"37950":-1,"37951":-1,"37952":-1,"37953":1588,"37954":-1,"37955":-1,"37956":-1,"37957":-1,"37958":1589,"37959":0,"37960":-1,"37961":1587,"37962":-1,"37963":-1,"37964":-1,"37965":-1,"37966":-1,"37967":-1,"37968":-1,"37969":-1,"37970":1587,"37971":-1,"37972":-1,"37973":-1,"37974":-1,"37975":0,"37976":-1,"37977":0,"37978":-1,"37979":-1,"37980":1589,"37981":1589,"37982":1589,"37983":-1,"37984":-1,"37985":-1,"37986":-1,"37987":-1,"37988":-1,"37989":1587,"37990":-1,"37991":-1,"37992":-1,"37993":1589,"37994":-1,"37995":-1,"37996":1589,"37997":-1,"37998":-1,"37999":-1,"38000":-1,"38001":-1,"38002":-1,"38003":-1,"38004":-1,"38005":-1,"38006":-1,"38007":-1,"38008":-1,"38009":-1,"38010":-1,"38011":-1,"38012":-1,"38013":-1,"38014":-1,"38015":0,"38016":-1,"38017":-1,"38018":1588,"38019":0,"38020":-1,"38021":-1,"38022":-1,"38023":1588,"38024":-1,"38025":-1,"38026":-1,"38027":-1,"38028":-1,"38029":-1,"38030":-1,"38031":-1,"38032":1588,"38033":-1,"38034":1586,"38035":-1,"38036":-1,"38037":-1,"38038":0,"38039":-1,"38040":-1,"38041":-1,"38042":-1,"38043":-1,"38044":-1,"38045":-1,"38046":-1,"38047":-1,"38048":-1,"38049":-1,"38050":-1,"38051":-1,"38052":-1,"38053":-1,"38054":-1,"38055":-1,"38056":1588,"38057":1587,"38058":-1,"38059":-1,"38060":-1,"38061":-1,"38062":-1,"38063":-1,"38064":-1,"38065":-1,"38066":-1,"38067":0,"38068":-1,"38069":-1,"38070":-1,"38071":-1,"38072":-1,"38073":-1,"38074":-1,"38075":1588,"38076":-1,"38077":-1,"38078":1586,"38079":-1,"38080":-1,"38081":-1,"38082":-1,"38083":-1,"38084":1587,"38085":-1,"38086":-1,"38087":1589,"38088":-1,"38089":-1,"38090":-1,"38091":-1,"38092":1589,"38093":-1,"38094":-1,"38095":-1,"38096":-1,"38097":-1,"38098":-1,"38099":-1,"38100":-1,"38101":1587,"38102":-1,"38103":-1,"38104":-1,"38105":-1,"38106":-1,"38107":1586,"38108":-1,"38109":-1,"38110":-1,"38111":-1,"38112":0,"38113":-1,"38114":-1,"38115":0,"38116":-1,"38117":-1,"38118":-1,"38119":1587,"38120":-1,"38121":-1,"38122":-1,"38123":-1,"38124":-1,"38125":-1,"38126":1588,"38127":-1,"38128":-1,"38129":-1,"38130":-1,"38131":-1,"38132":-1,"38133":-1,"38134":-1,"38135":-1,"38136":-1,"38137":-1,"38138":-1,"38139":-1,"38140":-1,"38141":-1,"38142":-1,"38143":-1,"38144":-1,"38145":-1,"38146":-1,"38147":-1,"38148":-1,"38149":-1,"38150":-1,"38151":-1,"38152":-1,"38153":-1,"38154":-1,"38155":-1,"38156":-1,"38157":-1,"38158":-1,"38159":-1,"38160":-1,"38161":-1,"38162":-1,"38163":-1,"38164":1586,"38165":-1,"38166":-1,"38167":1587,"38168":-1,"38169":-1,"38170":-1,"38171":0,"38172":-1,"38173":-1,"38174":-1,"38175":-1,"38176":-1,"38177":-1,"38178":-1,"38179":-1,"38180":-1,"38181":-1,"38182":-1,"38183":-1,"38184":-1,"38185":-1,"38186":0,"38187":-1,"38188":-1,"38189":1587,"38190":-1,"38191":-1,"38192":-1,"38193":1589,"38194":-1,"38195":1588,"38196":-1,"38197":-1,"38198":-1,"38199":-1,"38200":-1,"38201":-1,"38202":-1,"38203":0,"38204":1586,"38205":-1,"38206":-1,"38207":-1,"38208":-1,"38209":-1,"38210":-1,"38211":-1,"38212":-1,"38213":1588,"38214":-1,"38215":-1,"38216":-1,"38217":-1,"38218":-1,"38219":-1,"38220":-1,"38221":-1,"38222":-1,"38223":-1,"38224":-1,"38225":0,"38226":-1,"38227":-1,"38228":-1,"38229":-1,"38230":-1,"38231":-1,"38232":-1,"38233":-1,"38234":-1,"38235":-1,"38236":-1,"38237":-1,"38238":-1,"38239":-1,"38240":-1,"38241":-1,"38242":-1,"38243":-1,"38244":-1,"38245":-1,"38246":-1,"38247":-1,"38248":-1,"38249":-1,"38250":-1,"38251":0,"38252":-1,"38253":-1,"38254":-1,"38255":-1,"38256":-1,"38257":-1,"38258":-1,"38259":-1,"38260":-1,"38261":-1,"38262":-1,"38263":-1,"38264":-1,"38265":-1,"38266":-1,"38267":-1,"38268":-1,"38269":-1,"38270":-1,"38271":-1,"38272":-1,"38273":-1,"38274":-1,"38275":-1,"38276":-1,"38277":-1,"38278":-1,"38279":-1,"38280":-1,"38281":-1,"38282":-1,"38283":-1,"38284":-1,"38285":-1,"38286":-1,"38287":-1,"38288":-1,"38289":-1,"38290":-1,"38291":-1,"38292":-1,"38293":-1,"38294":-1,"38295":-1,"38296":-1,"38297":-1,"38298":-1,"38299":-1,"38300":-1,"38301":-1,"38302":-1,"38303":-1,"38304":1587,"38305":-1,"38306":-1,"38307":-1,"38308":-1,"38309":-1,"38310":1588,"38311":1587,"38312":-1,"38313":-1,"38314":0,"38315":-1,"38316":1588,"38317":-1,"38318":-1,"38319":-1,"38320":-1,"38321":1589,"38322":0,"38323":0,"38324":-1,"38325":-1,"38326":1587,"38327":-1,"38328":-1,"38329":-1,"38330":-1,"38331":-1,"38332":-1,"38333":-1,"38334":-1,"38335":-1,"38336":-1,"38337":-1,"38338":-1,"38339":-1,"38340":-1,"38341":-1,"38342":-1,"38343":0,"38344":-1,"38345":-1,"38346":-1,"38347":-1,"38348":-1,"38349":-1,"38350":-1,"38351":-1,"38352":-1,"38353":-1,"38354":-1,"38355":-1,"38356":-1,"38357":-1,"38358":-1,"38359":-1,"38360":-1,"38361":-1,"38362":-1,"38363":-1,"38364":-1,"38365":1588,"38366":-1,"38367":-1,"38368":-1,"38369":1587,"38370":-1,"38371":-1,"38372":-1,"38373":-1,"38374":-1,"38375":-1,"38376":-1,"38377":-1,"38378":-1,"38379":-1,"38380":1589,"38381":1586,"38382":-1,"38383":-1,"38384":-1,"38385":-1,"38386":-1,"38387":-1,"38388":-1,"38389":-1,"38390":0,"38391":-1,"38392":-1,"38393":-1,"38394":1587,"38395":-1,"38396":-1,"38397":-1,"38398":1587,"38399":-1,"38400":-1,"38401":-1,"38402":-1,"38403":-1,"38404":-1,"38405":-1,"38406":-1,"38407":0,"38408":-1,"38409":-1,"38410":-1,"38411":-1,"38412":1589,"38413":-1,"38414":-1,"38415":-1,"38416":-1,"38417":-1,"38418":-1,"38419":-1,"38420":1586,"38421":-1,"38422":-1,"38423":-1,"38424":-1,"38425":-1,"38426":-1,"38427":-1,"38428":-1,"38429":1587,"38430":-1,"38431":-1,"38432":1588,"38433":-1,"38434":-1,"38435":-1,"38436":1588,"38437":0,"38438":-1,"38439":1586,"38440":-1,"38441":-1,"38442":-1,"38443":-1,"38444":-1,"38445":-1,"38446":-1,"38447":-1,"38448":-1,"38449":-1,"38450":-1,"38451":-1,"38452":-1,"38453":-1,"38454":-1,"38455":-1,"38456":-1,"38457":-1,"38458":-1,"38459":-1,"38460":-1,"38461":-1,"38462":-1,"38463":1588,"38464":1588,"38465":-1,"38466":-1,"38467":-1,"38468":-1,"38469":-1,"38470":1589,"38471":-1,"38472":-1,"38473":-1,"38474":-1,"38475":-1,"38476":-1,"38477":-1,"38478":-1,"38479":-1,"38480":-1,"38481":-1,"38482":-1,"38483":-1,"38484":1587,"38485":1586,"38486":-1,"38487":-1,"38488":-1,"38489":-1,"38490":-1,"38491":-1,"38492":1588,"38493":-1,"38494":-1,"38495":-1,"38496":-1,"38497":-1,"38498":-1,"38499":-1,"38500":-1,"38501":-1,"38502":-1,"38503":-1,"38504":-1,"38505":-1,"38506":-1,"38507":1588,"38508":-1,"38509":-1,"38510":-1,"38511":-1,"38512":-1,"38513":-1,"38514":-1,"38515":1589,"38516":-1,"38517":-1,"38518":-1,"38519":-1,"38520":-1,"38521":1589,"38522":-1,"38523":-1,"38524":-1,"38525":-1,"38526":-1,"38527":-1,"38528":0,"38529":-1,"38530":-1,"38531":1588,"38532":1589,"38533":-1,"38534":-1,"38535":-1,"38536":-1,"38537":-1,"38538":-1,"38539":-1,"38540":0,"38541":-1,"38542":-1,"38543":-1,"38544":-1,"38545":-1,"38546":1588,"38547":-1,"38548":-1,"38549":-1,"38550":-1,"38551":-1,"38552":-1,"38553":1588,"38554":-1,"38555":-1,"38556":1587,"38557":-1,"38558":1587,"38559":1586,"38560":-1,"38561":-1,"38562":-1,"38563":-1,"38564":-1,"38565":-1,"38566":-1,"38567":-1,"38568":-1,"38569":-1,"38570":-1,"38571":-1,"38572":1588,"38573":-1,"38574":-1,"38575":-1,"38576":-1,"38577":-1,"38578":-1,"38579":1588,"38580":-1,"38581":-1,"38582":-1,"38583":1588,"38584":-1,"38585":-1,"38586":-1,"38587":-1,"38588":-1,"38589":-1,"38590":-1,"38591":-1,"38592":-1,"38593":-1,"38594":-1,"38595":-1,"38596":1587,"38597":0,"38598":-1,"38599":-1,"38600":-1,"38601":-1,"38602":-1,"38603":-1,"38604":-1,"38605":1588,"38606":-1,"38607":-1,"38608":-1,"38609":-1,"38610":-1,"38611":1586,"38612":1588,"38613":-1,"38614":-1,"38615":-1,"38616":-1,"38617":-1,"38618":-1,"38619":-1,"38620":-1,"38621":-1,"38622":-1,"38623":1588,"38624":0,"38625":-1,"38626":-1,"38627":1588,"38628":1588,"38629":-1,"38630":-1,"38631":-1,"38632":0,"38633":-1,"38634":-1,"38635":1588,"38636":0,"38637":-1,"38638":-1,"38639":0,"38640":-1,"38641":1586,"38642":-1,"38643":0,"38644":-1,"38645":-1,"38646":-1,"38647":-1,"38648":-1,"38649":1587,"38650":1588,"38651":-1,"38652":-1,"38653":-1,"38654":-1,"38655":-1,"38656":-1,"38657":-1,"38658":-1,"38659":0,"38660":1588,"38661":-1,"38662":-1,"38663":-1,"38664":-1,"38665":-1,"38666":-1,"38667":-1,"38668":-1,"38669":-1,"38670":-1,"38671":-1,"38672":-1,"38673":-1,"38674":-1,"38675":-1,"38676":0,"38677":-1,"38678":1589,"38679":-1,"38680":-1,"38681":-1,"38682":-1,"38683":1586,"38684":1587,"38685":-1,"38686":-1,"38687":-1,"38688":-1,"38689":1588,"38690":-1,"38691":-1,"38692":-1,"38693":-1,"38694":-1,"38695":-1,"38696":-1,"38697":-1,"38698":-1,"38699":-1,"38700":-1,"38701":-1,"38702":-1,"38703":-1,"38704":1589,"38705":-1,"38706":-1,"38707":-1,"38708":-1,"38709":-1,"38710":-1,"38711":-1,"38712":-1,"38713":-1,"38714":-1,"38715":-1,"38716":-1,"38717":-1,"38718":-1,"38719":-1,"38720":-1,"38721":-1,"38722":-1,"38723":-1,"38724":1587,"38725":-1,"38726":-1,"38727":-1,"38728":-1,"38729":1588,"38730":-1,"38731":-1,"38732":0,"38733":1588,"38734":-1,"38735":-1,"38736":-1,"38737":-1,"38738":-1,"38739":-1,"38740":-1,"38741":-1,"38742":-1,"38743":-1,"38744":1588,"38745":-1,"38746":-1,"38747":-1,"38748":-1,"38749":-1,"38750":-1,"38751":-1,"38752":1589,"38753":-1,"38754":-1,"38755":-1,"38756":1586,"38757":1588,"38758":1586,"38759":0,"38760":-1,"38761":-1,"38762":-1,"38763":-1,"38764":-1,"38765":-1,"38766":-1,"38767":-1,"38768":-1,"38769":-1,"38770":-1,"38771":-1,"38772":-1,"38773":-1,"38774":-1,"38775":-1,"38776":-1,"38777":-1,"38778":-1,"38779":1588,"38780":-1,"38781":0,"38782":-1,"38783":-1,"38784":-1,"38785":-1,"38786":-1,"38787":-1,"38788":-1,"38789":-1,"38790":-1,"38791":0,"38792":-1,"38793":-1,"38794":-1,"38795":-1,"38796":-1,"38797":1587,"38798":-1,"38799":-1,"38800":-1,"38801":-1,"38802":-1,"38803":-1,"38804":0,"38805":0,"38806":-1,"38807":-1,"38808":-1,"38809":-1,"38810":-1,"38811":-1,"38812":-1,"38813":-1,"38814":-1,"38815":-1,"38816":-1,"38817":-1,"38818":-1,"38819":0,"38820":0,"38821":-1,"38822":1588,"38823":-1,"38824":1589,"38825":-1,"38826":1586,"38827":-1,"38828":1589,"38829":-1,"38830":-1,"38831":-1,"38832":-1,"38833":-1,"38834":-1,"38835":-1,"38836":-1,"38837":1587,"38838":-1,"38839":-1,"38840":-1,"38841":-1,"38842":-1,"38843":-1,"38844":-1,"38845":-1,"38846":-1,"38847":-1,"38848":1587,"38849":-1,"38850":-1,"38851":-1,"38852":-1,"38853":-1,"38854":-1,"38855":-1,"38856":-1,"38857":-1,"38858":-1,"38859":-1,"38860":-1,"38861":1588,"38862":-1,"38863":-1,"38864":-1,"38865":-1,"38866":-1,"38867":-1,"38868":-1,"38869":1587,"38870":0,"38871":-1,"38872":-1,"38873":-1,"38874":-1,"38875":-1,"38876":-1,"38877":-1,"38878":-1,"38879":-1,"38880":-1,"38881":-1,"38882":-1,"38883":-1,"38884":-1,"38885":-1,"38886":1587,"38887":-1,"38888":-1,"38889":-1,"38890":-1,"38891":-1,"38892":1588,"38893":-1,"38894":-1,"38895":-1,"38896":-1,"38897":-1,"38898":-1,"38899":-1,"38900":-1,"38901":-1,"38902":-1,"38903":-1,"38904":-1,"38905":0,"38906":-1,"38907":-1,"38908":1589,"38909":-1,"38910":-1,"38911":-1,"38912":1586,"38913":-1,"38914":-1,"38915":-1,"38916":-1,"38917":-1,"38918":-1,"38919":-1,"38920":-1,"38921":-1,"38922":-1,"38923":-1,"38924":-1,"38925":-1,"38926":-1,"38927":-1,"38928":-1,"38929":-1,"38930":-1,"38931":-1,"38932":-1,"38933":-1,"38934":-1,"38935":-1,"38936":1589,"38937":-1,"38938":-1,"38939":-1,"38940":1586,"38941":0,"38942":-1,"38943":-1,"38944":-1,"38945":-1,"38946":-1,"38947":-1,"38948":-1,"38949":1589,"38950":-1,"38951":-1,"38952":-1,"38953":-1,"38954":-1,"38955":-1,"38956":-1,"38957":-1,"38958":-1,"38959":-1,"38960":-1,"38961":-1,"38962":-1,"38963":-1,"38964":-1,"38965":0,"38966":-1,"38967":-1,"38968":-1,"38969":-1,"38970":1589,"38971":-1,"38972":1588,"38973":-1,"38974":-1,"38975":-1,"38976":-1,"38977":1588,"38978":1588,"38979":-1,"38980":-1,"38981":0,"38982":-1,"38983":1586,"38984":-1,"38985":-1,"38986":-1,"38987":1588,"38988":-1,"38989":-1,"38990":-1,"38991":-1,"38992":-1,"38993":-1,"38994":-1,"38995":-1,"38996":-1,"38997":-1,"38998":-1,"38999":-1,"39000":-1,"39001":-1,"39002":1586,"39003":-1,"39004":-1,"39005":-1,"39006":-1,"39007":-1,"39008":-1,"39009":-1,"39010":-1,"39011":1587,"39012":-1,"39013":-1,"39014":-1,"39015":-1,"39016":1589,"39017":-1,"39018":-1,"39019":-1,"39020":-1,"39021":-1,"39022":-1,"39023":-1,"39024":1589,"39025":-1,"39026":-1,"39027":1589,"39028":-1,"39029":1588,"39030":-1,"39031":-1,"39032":-1,"39033":-1,"39034":-1,"39035":-1,"39036":-1,"39037":-1,"39038":-1,"39039":-1,"39040":-1,"39041":-1,"39042":-1,"39043":-1,"39044":-1,"39045":-1,"39046":-1,"39047":-1,"39048":-1,"39049":0,"39050":-1,"39051":-1,"39052":-1,"39053":-1,"39054":-1,"39055":-1,"39056":1587,"39057":-1,"39058":-1,"39059":-1,"39060":-1,"39061":-1,"39062":-1,"39063":-1,"39064":-1,"39065":-1,"39066":-1,"39067":-1,"39068":-1,"39069":-1,"39070":-1,"39071":-1,"39072":-1,"39073":-1,"39074":-1,"39075":1587,"39076":-1,"39077":-1,"39078":-1,"39079":-1,"39080":-1,"39081":1588,"39082":-1,"39083":-1,"39084":1587,"39085":-1,"39086":1587,"39087":-1,"39088":-1,"39089":-1,"39090":-1,"39091":-1,"39092":-1,"39093":-1,"39094":-1,"39095":-1,"39096":-1,"39097":-1,"39098":-1,"39099":-1,"39100":1588,"39101":-1,"39102":-1,"39103":-1,"39104":-1,"39105":-1,"39106":-1,"39107":-1,"39108":-1,"39109":-1,"39110":-1,"39111":-1,"39112":-1,"39113":-1,"39114":-1,"39115":-1,"39116":-1,"39117":-1,"39118":-1,"39119":-1,"39120":-1,"39121":1589,"39122":-1,"39123":-1,"39124":1589,"39125":-1,"39126":0,"39127":-1,"39128":1586,"39129":-1,"39130":-1,"39131":-1,"39132":-1,"39133":-1,"39134":-1,"39135":-1,"39136":-1,"39137":-1,"39138":-1,"39139":0,"39140":-1,"39141":-1,"39142":-1,"39143":-1,"39144":-1,"39145":-1,"39146":-1,"39147":-1,"39148":-1,"39149":-1,"39150":-1,"39151":-1,"39152":-1,"39153":-1,"39154":0,"39155":-1,"39156":-1,"39157":1589,"39158":-1,"39159":-1,"39160":-1,"39161":-1,"39162":-1,"39163":-1,"39164":1587,"39165":-1,"39166":0,"39167":-1,"39168":-1,"39169":-1,"39170":-1,"39171":-1,"39172":1587,"39173":-1,"39174":1587,"39175":-1,"39176":-1,"39177":-1,"39178":1589,"39179":-1,"39180":-1,"39181":1587,"39182":-1,"39183":-1,"39184":-1,"39185":-1,"39186":1588,"39187":-1,"39188":-1,"39189":1587,"39190":-1,"39191":-1,"39192":-1,"39193":-1,"39194":-1,"39195":1589,"39196":1587,"39197":-1,"39198":-1,"39199":-1,"39200":-1,"39201":-1,"39202":-1,"39203":-1,"39204":-1,"39205":-1,"39206":-1,"39207":-1,"39208":-1,"39209":-1,"39210":-1,"39211":-1,"39212":-1,"39213":1587,"39214":-1,"39215":-1,"39216":1586,"39217":-1,"39218":-1,"39219":-1,"39220":-1,"39221":1587,"39222":-1,"39223":-1,"39224":-1,"39225":-1,"39226":1588,"39227":-1,"39228":-1,"39229":-1,"39230":-1,"39231":-1,"39232":-1,"39233":0,"39234":-1,"39235":-1,"39236":-1,"39237":-1,"39238":-1,"39239":-1,"39240":-1,"39241":-1,"39242":-1,"39243":-1,"39244":1587,"39245":-1,"39246":-1,"39247":-1,"39248":-1,"39249":-1,"39250":-1,"39251":-1,"39252":-1,"39253":-1,"39254":-1,"39255":1589,"39256":-1,"39257":-1,"39258":-1,"39259":-1,"39260":-1,"39261":1587,"39262":-1,"39263":-1,"39264":-1,"39265":-1,"39266":-1,"39267":-1,"39268":-1,"39269":-1,"39270":1587,"39271":-1,"39272":1587,"39273":-1,"39274":-1,"39275":-1,"39276":0,"39277":-1,"39278":-1,"39279":1588,"39280":-1,"39281":-1,"39282":1588,"39283":-1,"39284":-1,"39285":-1,"39286":-1,"39287":-1,"39288":-1,"39289":-1,"39290":-1,"39291":-1,"39292":-1,"39293":-1,"39294":-1,"39295":-1,"39296":-1,"39297":-1,"39298":-1,"39299":-1,"39300":1588,"39301":-1,"39302":-1,"39303":-1,"39304":-1,"39305":-1,"39306":-1,"39307":-1,"39308":-1,"39309":-1,"39310":-1,"39311":-1,"39312":-1,"39313":1586,"39314":1587,"39315":-1,"39316":-1,"39317":-1,"39318":-1,"39319":-1,"39320":-1,"39321":-1,"39322":-1,"39323":-1,"39324":-1,"39325":-1,"39326":-1,"39327":-1,"39328":-1,"39329":-1,"39330":-1,"39331":-1,"39332":-1,"39333":-1,"39334":-1,"39335":-1,"39336":-1,"39337":-1,"39338":1589,"39339":1586,"39340":-1,"39341":-1,"39342":1588,"39343":-1,"39344":-1,"39345":-1,"39346":1588,"39347":-1,"39348":-1,"39349":-1,"39350":-1,"39351":1588,"39352":-1,"39353":-1,"39354":-1,"39355":-1,"39356":0,"39357":-1,"39358":-1,"39359":-1,"39360":-1,"39361":-1,"39362":-1,"39363":-1,"39364":-1,"39365":0,"39366":0,"39367":-1,"39368":-1,"39369":-1,"39370":1588,"39371":-1,"39372":-1,"39373":-1,"39374":-1,"39375":-1,"39376":-1,"39377":1586,"39378":-1,"39379":-1,"39380":-1,"39381":-1,"39382":-1,"39383":1589,"39384":-1,"39385":-1,"39386":-1,"39387":-1,"39388":-1,"39389":-1,"39390":-1,"39391":-1,"39392":-1,"39393":-1,"39394":1586,"39395":-1,"39396":-1,"39397":-1,"39398":-1,"39399":0,"39400":-1,"39401":1587,"39402":-1,"39403":-1,"39404":-1,"39405":-1,"39406":-1,"39407":-1,"39408":1587,"39409":-1,"39410":-1,"39411":-1,"39412":-1,"39413":-1,"39414":0,"39415":-1,"39416":-1,"39417":-1,"39418":-1,"39419":-1,"39420":-1,"39421":-1,"39422":-1,"39423":-1,"39424":-1,"39425":-1,"39426":-1,"39427":-1,"39428":1586,"39429":-1,"39430":-1,"39431":-1,"39432":1589,"39433":-1,"39434":-1,"39435":-1,"39436":1588,"39437":-1,"39438":-1,"39439":-1,"39440":-1,"39441":-1,"39442":-1,"39443":-1,"39444":1587,"39445":-1,"39446":-1,"39447":-1,"39448":-1,"39449":-1,"39450":-1,"39451":1587,"39452":-1,"39453":-1,"39454":-1,"39455":-1,"39456":-1,"39457":-1,"39458":-1,"39459":-1,"39460":1588,"39461":-1,"39462":-1,"39463":-1,"39464":-1,"39465":-1,"39466":1588,"39467":-1,"39468":-1,"39469":-1,"39470":0,"39471":-1,"39472":-1,"39473":-1,"39474":1588,"39475":-1,"39476":-1,"39477":-1,"39478":-1,"39479":-1,"39480":-1,"39481":-1,"39482":-1,"39483":1589,"39484":-1,"39485":-1,"39486":-1,"39487":-1,"39488":-1,"39489":-1,"39490":-1,"39491":-1,"39492":-1,"39493":-1,"39494":-1,"39495":-1,"39496":-1,"39497":-1,"39498":-1,"39499":-1,"39500":-1,"39501":0,"39502":1586,"39503":-1,"39504":-1,"39505":-1,"39506":-1,"39507":-1,"39508":0,"39509":-1,"39510":1588,"39511":0,"39512":-1,"39513":-1,"39514":-1,"39515":-1,"39516":-1,"39517":-1,"39518":-1,"39519":-1,"39520":-1,"39521":1588,"39522":1589,"39523":-1,"39524":-1,"39525":-1,"39526":-1,"39527":-1,"39528":-1,"39529":1588,"39530":-1,"39531":-1,"39532":-1,"39533":-1,"39534":-1,"39535":-1,"39536":-1,"39537":-1,"39538":-1,"39539":-1,"39540":-1,"39541":1586,"39542":1588,"39543":1587,"39544":-1,"39545":-1,"39546":-1,"39547":-1,"39548":-1,"39549":-1,"39550":1588,"39551":-1,"39552":-1,"39553":-1,"39554":1588,"39555":-1,"39556":1586,"39557":1588,"39558":1587,"39559":-1,"39560":1586,"39561":-1,"39562":-1,"39563":-1,"39564":-1,"39565":-1,"39566":1588,"39567":-1,"39568":-1,"39569":1588,"39570":-1,"39571":1588,"39572":-1,"39573":-1,"39574":-1,"39575":-1,"39576":-1,"39577":-1,"39578":-1,"39579":-1,"39580":-1,"39581":-1,"39582":-1,"39583":-1,"39584":-1,"39585":-1,"39586":1586,"39587":-1,"39588":-1,"39589":-1,"39590":-1,"39591":-1,"39592":1588,"39593":-1,"39594":-1,"39595":-1,"39596":-1,"39597":-1,"39598":-1,"39599":-1,"39600":-1,"39601":0,"39602":-1,"39603":-1,"39604":-1,"39605":-1,"39606":-1,"39607":-1,"39608":-1,"39609":-1,"39610":-1,"39611":-1,"39612":-1,"39613":1587,"39614":-1,"39615":-1,"39616":-1,"39617":-1,"39618":1589,"39619":-1,"39620":-1,"39621":-1,"39622":-1,"39623":-1,"39624":-1,"39625":-1,"39626":-1,"39627":-1,"39628":-1,"39629":-1,"39630":-1,"39631":1586,"39632":-1,"39633":-1,"39634":-1,"39635":-1,"39636":-1,"39637":-1,"39638":-1,"39639":-1,"39640":-1,"39641":-1,"39642":-1,"39643":-1,"39644":-1,"39645":-1,"39646":-1,"39647":-1,"39648":-1,"39649":-1,"39650":-1,"39651":-1,"39652":-1,"39653":-1,"39654":0,"39655":-1,"39656":-1,"39657":-1,"39658":-1,"39659":-1,"39660":-1,"39661":-1,"39662":-1,"39663":-1,"39664":1589,"39665":-1,"39666":-1,"39667":-1,"39668":-1,"39669":-1,"39670":-1,"39671":-1,"39672":-1,"39673":-1,"39674":-1,"39675":-1,"39676":-1,"39677":-1,"39678":-1,"39679":1587,"39680":1588,"39681":-1,"39682":-1,"39683":-1,"39684":-1,"39685":-1,"39686":-1,"39687":-1,"39688":-1,"39689":-1,"39690":1587,"39691":1589,"39692":-1,"39693":1588,"39694":-1,"39695":-1,"39696":-1,"39697":-1,"39698":-1,"39699":-1,"39700":-1,"39701":-1,"39702":-1,"39703":-1,"39704":-1,"39705":-1,"39706":-1,"39707":-1,"39708":-1,"39709":1587,"39710":-1,"39711":1586,"39712":-1,"39713":1586,"39714":-1,"39715":-1,"39716":-1,"39717":1587,"39718":-1,"39719":-1,"39720":-1,"39721":-1,"39722":-1,"39723":1587,"39724":-1,"39725":-1,"39726":-1,"39727":1587,"39728":-1,"39729":-1,"39730":-1,"39731":-1,"39732":-1,"39733":1589,"39734":-1,"39735":-1,"39736":-1,"39737":-1,"39738":-1,"39739":0,"39740":-1,"39741":-1,"39742":1588,"39743":-1,"39744":-1,"39745":-1,"39746":-1,"39747":-1,"39748":-1,"39749":-1,"39750":-1,"39751":-1,"39752":-1,"39753":-1,"39754":-1,"39755":-1,"39756":-1,"39757":1588,"39758":-1,"39759":-1,"39760":-1,"39761":-1,"39762":-1,"39763":-1,"39764":-1,"39765":-1,"39766":-1,"39767":-1,"39768":-1,"39769":-1,"39770":-1,"39771":-1,"39772":-1,"39773":1588,"39774":-1,"39775":1589,"39776":-1,"39777":-1,"39778":-1,"39779":-1,"39780":-1,"39781":1588,"39782":-1,"39783":-1,"39784":-1,"39785":-1,"39786":-1,"39787":-1,"39788":-1,"39789":-1,"39790":-1,"39791":1587,"39792":0,"39793":-1,"39794":-1,"39795":-1,"39796":-1,"39797":-1,"39798":-1,"39799":-1,"39800":1586,"39801":-1,"39802":-1,"39803":-1,"39804":-1,"39805":-1,"39806":1588,"39807":-1,"39808":-1,"39809":-1,"39810":-1,"39811":-1,"39812":-1,"39813":-1,"39814":-1,"39815":-1,"39816":-1,"39817":-1,"39818":-1,"39819":-1,"39820":-1,"39821":-1,"39822":-1,"39823":1587,"39824":-1,"39825":-1,"39826":1589,"39827":1588,"39828":-1,"39829":0,"39830":1588,"39831":-1,"39832":-1,"39833":1588,"39834":-1,"39835":-1,"39836":-1,"39837":0,"39838":-1,"39839":-1,"39840":-1,"39841":-1,"39842":1589,"39843":-1,"39844":1588,"39845":-1,"39846":-1,"39847":-1,"39848":-1,"39849":-1,"39850":-1,"39851":-1,"39852":-1,"39853":-1,"39854":1588,"39855":-1,"39856":-1,"39857":-1,"39858":-1,"39859":-1,"39860":1587,"39861":-1,"39862":-1,"39863":1588,"39864":-1,"39865":-1,"39866":-1,"39867":-1,"39868":-1,"39869":-1,"39870":1586,"39871":-1,"39872":1588,"39873":-1,"39874":-1,"39875":-1,"39876":1589,"39877":-1,"39878":-1,"39879":-1,"39880":-1,"39881":-1,"39882":-1,"39883":-1,"39884":1588,"39885":-1,"39886":-1,"39887":-1,"39888":-1,"39889":-1,"39890":-1,"39891":-1,"39892":-1,"39893":-1,"39894":-1,"39895":-1,"39896":-1,"39897":-1,"39898":-1,"39899":-1,"39900":1588,"39901":-1,"39902":-1,"39903":-1,"39904":-1,"39905":-1,"39906":-1,"39907":1586,"39908":-1,"39909":-1,"39910":-1,"39911":1587,"39912":-1,"39913":-1,"39914":1588,"39915":-1,"39916":1588,"39917":-1,"39918":-1,"39919":-1,"39920":-1,"39921":-1,"39922":-1,"39923":-1,"39924":-1,"39925":-1,"39926":-1,"39927":-1,"39928":0,"39929":-1,"39930":-1,"39931":-1,"39932":-1,"39933":-1,"39934":-1,"39935":-1,"39936":-1,"39937":-1,"39938":1587,"39939":-1,"39940":-1,"39941":-1,"39942":1587,"39943":-1,"39944":-1,"39945":-1,"39946":-1,"39947":-1,"39948":-1,"39949":1588,"39950":-1,"39951":-1,"39952":-1,"39953":-1,"39954":-1,"39955":-1,"39956":-1,"39957":1588,"39958":-1,"39959":-1,"39960":-1,"39961":-1,"39962":-1,"39963":-1,"39964":-1,"39965":-1,"39966":-1,"39967":-1,"39968":-1,"39969":-1,"39970":-1,"39971":-1,"39972":-1,"39973":-1,"39974":-1,"39975":-1,"39976":-1,"39977":-1,"39978":-1,"39979":-1,"39980":-1,"39981":-1,"39982":-1,"39983":-1,"39984":-1,"39985":-1,"39986":-1,"39987":-1,"39988":-1,"39989":-1,"39990":1586,"39991":-1,"39992":-1,"39993":-1,"39994":-1,"39995":-1,"39996":-1,"39997":-1,"39998":-1,"39999":-1,"40000":-1,"40001":-1,"40002":1588,"40003":-1,"40004":-1,"40005":-1,"40006":-1,"40007":-1,"40008":-1,"40009":-1,"40010":-1,"40011":-1,"40012":-1,"40013":1588,"40014":-1,"40015":-1,"40016":1587,"40017":-1,"40018":-1,"40019":-1,"40020":-1,"40021":1589,"40022":-1,"40023":-1,"40024":-1,"40025":-1,"40026":-1,"40027":-1,"40028":-1,"40029":-1,"40030":-1,"40031":-1,"40032":-1,"40033":-1,"40034":-1,"40035":-1,"40036":-1,"40037":-1,"40038":-1,"40039":-1,"40040":-1,"40041":-1,"40042":-1,"40043":1587,"40044":0,"40045":1587,"40046":-1,"40047":1588,"40048":-1,"40049":-1,"40050":-1,"40051":-1,"40052":-1,"40053":-1,"40054":-1,"40055":1587,"40056":-1,"40057":-1,"40058":-1,"40059":-1,"40060":-1,"40061":-1,"40062":-1,"40063":-1,"40064":-1,"40065":-1,"40066":-1,"40067":-1,"40068":-1,"40069":1588,"40070":-1,"40071":-1,"40072":1588,"40073":-1,"40074":-1,"40075":-1,"40076":-1,"40077":-1,"40078":-1,"40079":-1,"40080":-1,"40081":-1,"40082":1586,"40083":-1,"40084":-1,"40085":1586,"40086":-1,"40087":-1,"40088":-1,"40089":0,"40090":-1,"40091":-1,"40092":1588,"40093":-1,"40094":-1,"40095":-1,"40096":1586,"40097":-1,"40098":-1,"40099":-1,"40100":-1,"40101":-1,"40102":-1,"40103":-1,"40104":1588,"40105":-1,"40106":-1,"40107":-1,"40108":-1,"40109":-1,"40110":0,"40111":-1,"40112":-1,"40113":-1,"40114":-1,"40115":-1,"40116":1586,"40117":-1,"40118":-1,"40119":-1,"40120":-1,"40121":-1,"40122":-1,"40123":-1,"40124":-1,"40125":-1,"40126":1586,"40127":-1,"40128":-1,"40129":-1,"40130":-1,"40131":1588,"40132":-1,"40133":-1,"40134":-1,"40135":-1,"40136":-1,"40137":-1,"40138":1588,"40139":-1,"40140":-1,"40141":-1,"40142":-1,"40143":1587,"40144":-1,"40145":-1,"40146":-1,"40147":-1,"40148":1588,"40149":-1,"40150":-1,"40151":1587,"40152":-1,"40153":-1,"40154":0,"40155":-1,"40156":-1,"40157":1587,"40158":-1,"40159":-1,"40160":1587,"40161":-1,"40162":-1,"40163":-1,"40164":0,"40165":1588,"40166":-1,"40167":-1,"40168":-1,"40169":-1,"40170":-1,"40171":-1,"40172":-1,"40173":-1,"40174":-1,"40175":1586,"40176":-1,"40177":-1,"40178":-1,"40179":-1,"40180":-1,"40181":-1,"40182":-1,"40183":-1,"40184":-1,"40185":-1,"40186":-1,"40187":-1,"40188":-1,"40189":-1,"40190":-1,"40191":-1,"40192":-1,"40193":-1,"40194":-1,"40195":-1,"40196":-1,"40197":1588,"40198":-1,"40199":-1,"40200":-1,"40201":-1,"40202":-1,"40203":-1,"40204":-1,"40205":-1,"40206":-1,"40207":-1,"40208":-1,"40209":-1,"40210":-1,"40211":-1,"40212":1587,"40213":-1,"40214":-1,"40215":-1,"40216":-1,"40217":-1,"40218":-1,"40219":-1,"40220":-1,"40221":-1,"40222":-1,"40223":-1,"40224":-1,"40225":-1,"40226":-1,"40227":-1,"40228":0,"40229":-1,"40230":-1,"40231":1588,"40232":-1,"40233":1587,"40234":-1,"40235":-1,"40236":-1,"40237":-1,"40238":-1,"40239":-1,"40240":-1,"40241":-1,"40242":-1,"40243":-1,"40244":-1,"40245":-1,"40246":-1,"40247":-1,"40248":1588,"40249":-1,"40250":-1,"40251":-1,"40252":-1,"40253":-1,"40254":-1,"40255":-1,"40256":-1,"40257":-1,"40258":-1,"40259":1588,"40260":-1,"40261":0,"40262":-1,"40263":-1,"40264":-1,"40265":-1,"40266":-1,"40267":-1,"40268":-1,"40269":-1,"40270":1586,"40271":-1,"40272":-1,"40273":-1,"40274":-1,"40275":-1,"40276":-1,"40277":-1,"40278":-1,"40279":-1,"40280":-1,"40281":-1,"40282":-1,"40283":-1,"40284":-1,"40285":-1,"40286":-1,"40287":-1,"40288":-1,"40289":-1,"40290":-1,"40291":-1,"40292":0,"40293":-1,"40294":-1,"40295":-1,"40296":-1,"40297":-1,"40298":-1,"40299":-1,"40300":-1,"40301":-1,"40302":-1,"40303":-1,"40304":-1,"40305":-1,"40306":-1,"40307":-1,"40308":-1,"40309":-1,"40310":-1,"40311":-1,"40312":1588,"40313":0,"40314":-1,"40315":-1,"40316":-1,"40317":-1,"40318":-1,"40319":-1,"40320":-1,"40321":-1,"40322":-1,"40323":-1,"40324":-1,"40325":-1,"40326":-1,"40327":-1,"40328":-1,"40329":-1,"40330":-1,"40331":1589,"40332":-1,"40333":-1,"40334":-1,"40335":-1,"40336":-1,"40337":-1,"40338":1588,"40339":-1,"40340":-1,"40341":0,"40342":-1,"40343":-1,"40344":-1,"40345":0,"40346":-1,"40347":-1,"40348":-1,"40349":-1,"40350":1588,"40351":-1,"40352":1588,"40353":0,"40354":-1,"40355":1586,"40356":0,"40357":-1,"40358":-1,"40359":-1,"40360":1588,"40361":-1,"40362":-1,"40363":-1,"40364":1588,"40365":-1,"40366":-1,"40367":-1,"40368":-1,"40369":-1,"40370":-1,"40371":-1,"40372":-1,"40373":-1,"40374":-1,"40375":1586,"40376":1588,"40377":0,"40378":-1,"40379":1588,"40380":-1,"40381":-1,"40382":-1,"40383":-1,"40384":-1,"40385":-1,"40386":-1,"40387":-1,"40388":-1,"40389":-1,"40390":-1,"40391":-1,"40392":-1,"40393":-1,"40394":-1,"40395":-1,"40396":-1,"40397":1589,"40398":-1,"40399":-1,"40400":-1,"40401":-1,"40402":-1,"40403":-1,"40404":1588,"40405":-1,"40406":-1,"40407":-1,"40408":-1,"40409":-1,"40410":-1,"40411":-1,"40412":-1,"40413":-1,"40414":-1,"40415":-1,"40416":1588,"40417":-1,"40418":-1,"40419":-1,"40420":-1,"40421":-1,"40422":-1,"40423":-1,"40424":-1,"40425":0,"40426":0,"40427":-1,"40428":-1,"40429":1588,"40430":-1,"40431":-1,"40432":-1,"40433":-1,"40434":0,"40435":-1,"40436":-1,"40437":1587,"40438":-1,"40439":-1,"40440":-1,"40441":-1,"40442":1588,"40443":-1,"40444":-1,"40445":-1,"40446":-1,"40447":-1,"40448":-1,"40449":-1,"40450":-1,"40451":0,"40452":-1,"40453":1586,"40454":-1,"40455":1586,"40456":1587,"40457":-1,"40458":-1,"40459":-1,"40460":-1,"40461":-1,"40462":-1,"40463":-1,"40464":1587,"40465":-1,"40466":-1,"40467":-1,"40468":-1,"40469":1588,"40470":-1,"40471":-1,"40472":1587,"40473":-1,"40474":-1,"40475":-1,"40476":-1,"40477":-1,"40478":-1,"40479":-1,"40480":-1,"40481":-1,"40482":-1,"40483":-1,"40484":-1,"40485":-1,"40486":-1,"40487":-1,"40488":1589,"40489":1588,"40490":-1,"40491":-1,"40492":-1,"40493":-1,"40494":-1,"40495":-1,"40496":1589,"40497":-1,"40498":0,"40499":-1,"40500":-1,"40501":-1,"40502":-1,"40503":-1,"40504":-1,"40505":-1,"40506":-1,"40507":-1,"40508":-1,"40509":1589,"40510":-1,"40511":1588,"40512":-1,"40513":-1,"40514":-1,"40515":-1,"40516":-1,"40517":-1,"40518":-1,"40519":-1,"40520":1586,"40521":1588,"40522":-1,"40523":-1,"40524":-1,"40525":-1,"40526":-1,"40527":-1,"40528":-1,"40529":-1,"40530":-1,"40531":-1,"40532":-1,"40533":-1,"40534":1587,"40535":-1,"40536":-1,"40537":-1,"40538":-1,"40539":-1,"40540":-1,"40541":-1,"40542":-1,"40543":1586,"40544":-1,"40545":-1,"40546":-1,"40547":-1,"40548":-1,"40549":-1,"40550":-1,"40551":-1,"40552":-1,"40553":-1,"40554":1587,"40555":0,"40556":-1,"40557":-1,"40558":1587,"40559":-1,"40560":-1,"40561":-1,"40562":1587,"40563":-1,"40564":-1,"40565":-1,"40566":-1,"40567":-1,"40568":-1,"40569":0,"40570":-1,"40571":1587,"40572":-1,"40573":1588,"40574":-1,"40575":-1,"40576":-1,"40577":-1,"40578":0,"40579":-1,"40580":-1,"40581":-1,"40582":-1,"40583":-1,"40584":-1,"40585":-1,"40586":-1,"40587":-1,"40588":-1,"40589":-1,"40590":-1,"40591":-1,"40592":-1,"40593":-1,"40594":1587,"40595":1586,"40596":1589,"40597":-1,"40598":-1,"40599":-1,"40600":-1,"40601":1586,"40602":-1,"40603":-1,"40604":-1,"40605":-1,"40606":-1,"40607":-1,"40608":-1,"40609":-1,"40610":-1,"40611":-1,"40612":-1,"40613":-1,"40614":-1,"40615":-1,"40616":-1,"40617":-1,"40618":-1,"40619":-1,"40620":-1,"40621":-1,"40622":-1,"40623":-1,"40624":-1,"40625":0,"40626":-1,"40627":-1,"40628":-1,"40629":-1,"40630":-1,"40631":0,"40632":1589,"40633":-1,"40634":-1,"40635":-1,"40636":-1,"40637":-1,"40638":-1,"40639":1587,"40640":-1,"40641":-1,"40642":-1,"40643":-1,"40644":-1,"40645":-1,"40646":-1,"40647":1588,"40648":1589,"40649":0,"40650":-1,"40651":-1,"40652":-1,"40653":-1,"40654":-1,"40655":-1,"40656":-1,"40657":-1,"40658":-1,"40659":-1,"40660":-1,"40661":-1,"40662":-1,"40663":-1,"40664":-1,"40665":-1,"40666":1589,"40667":1587,"40668":-1,"40669":-1,"40670":-1,"40671":-1,"40672":-1,"40673":-1,"40674":1586,"40675":-1,"40676":-1,"40677":-1,"40678":-1,"40679":-1,"40680":-1,"40681":1588,"40682":-1,"40683":1586,"40684":-1,"40685":-1,"40686":-1,"40687":-1,"40688":-1,"40689":-1,"40690":-1,"40691":-1,"40692":-1,"40693":-1,"40694":-1,"40695":-1,"40696":-1,"40697":-1,"40698":-1,"40699":-1,"40700":-1,"40701":-1,"40702":-1,"40703":1587,"40704":-1,"40705":1588,"40706":-1,"40707":-1,"40708":-1,"40709":-1,"40710":-1,"40711":1588,"40712":-1,"40713":-1,"40714":-1,"40715":-1,"40716":1588,"40717":-1,"40718":-1,"40719":-1,"40720":-1,"40721":-1,"40722":-1,"40723":-1,"40724":1586,"40725":-1,"40726":-1,"40727":-1,"40728":-1,"40729":-1,"40730":-1,"40731":-1,"40732":-1,"40733":-1,"40734":-1,"40735":-1,"40736":-1,"40737":-1,"40738":1587,"40739":-1,"40740":-1,"40741":-1,"40742":-1,"40743":-1,"40744":-1,"40745":-1,"40746":1589,"40747":-1,"40748":0,"40749":-1,"40750":-1,"40751":-1,"40752":-1,"40753":-1,"40754":-1,"40755":-1,"40756":-1,"40757":-1,"40758":-1,"40759":-1,"40760":-1,"40761":-1,"40762":-1,"40763":-1,"40764":-1,"40765":-1,"40766":-1,"40767":-1,"40768":-1,"40769":-1,"40770":-1,"40771":-1,"40772":-1,"40773":-1,"40774":-1,"40775":-1,"40776":-1,"40777":-1,"40778":-1,"40779":-1,"40780":-1,"40781":1588,"40782":-1,"40783":0,"40784":-1,"40785":-1,"40786":-1,"40787":-1,"40788":-1,"40789":-1,"40790":-1,"40791":-1,"40792":-1,"40793":-1,"40794":1587,"40795":-1,"40796":-1,"40797":-1,"40798":-1,"40799":-1,"40800":1587,"40801":-1,"40802":-1,"40803":-1,"40804":-1,"40805":-1,"40806":-1,"40807":-1,"40808":-1,"40809":-1,"40810":-1,"40811":-1,"40812":1588,"40813":-1,"40814":-1,"40815":-1,"40816":-1,"40817":-1,"40818":-1,"40819":-1,"40820":-1,"40821":-1,"40822":-1,"40823":-1,"40824":-1,"40825":-1,"40826":0,"40827":-1,"40828":-1,"40829":1588,"40830":-1,"40831":-1,"40832":-1,"40833":-1,"40834":0,"40835":1587,"40836":-1,"40837":1589,"40838":-1,"40839":-1,"40840":-1,"40841":-1,"40842":-1,"40843":-1,"40844":-1,"40845":-1,"40846":-1,"40847":-1,"40848":-1,"40849":-1,"40850":-1,"40851":-1,"40852":-1,"40853":-1,"40854":-1,"40855":-1,"40856":1588,"40857":-1,"40858":-1,"40859":-1,"40860":1589,"40861":-1,"40862":-1,"40863":1586,"40864":-1,"40865":-1,"40866":-1,"40867":-1,"40868":1588,"40869":-1,"40870":1587,"40871":-1,"40872":-1,"40873":-1,"40874":-1,"40875":-1,"40876":-1,"40877":-1,"40878":-1,"40879":-1,"40880":-1,"40881":-1,"40882":1588,"40883":1588,"40884":-1,"40885":-1,"40886":-1,"40887":-1,"40888":-1,"40889":-1,"40890":-1,"40891":-1,"40892":-1,"40893":-1,"40894":-1,"40895":-1,"40896":-1,"40897":-1,"40898":-1,"40899":-1,"40900":-1,"40901":-1,"40902":-1,"40903":-1,"40904":0,"40905":-1,"40906":-1,"40907":1587,"40908":-1,"40909":-1,"40910":-1,"40911":-1,"40912":-1,"40913":-1,"40914":-1,"40915":1586,"40916":-1,"40917":-1,"40918":-1,"40919":-1,"40920":1588,"40921":-1,"40922":-1,"40923":-1,"40924":-1,"40925":-1,"40926":-1,"40927":1588,"40928":1586,"40929":-1,"40930":1587,"40931":-1,"40932":-1,"40933":-1,"40934":-1,"40935":-1,"40936":-1,"40937":-1,"40938":-1,"40939":0,"40940":-1,"40941":-1,"40942":-1,"40943":-1,"40944":-1,"40945":-1,"40946":-1,"40947":-1,"40948":-1,"40949":-1,"40950":-1,"40951":-1,"40952":1587,"40953":-1,"40954":-1,"40955":-1,"40956":-1,"40957":-1,"40958":0,"40959":-1,"40960":-1,"40961":-1,"40962":-1,"40963":-1,"40964":-1,"40965":-1,"40966":-1,"40967":-1,"40968":0,"40969":-1,"40970":-1,"40971":1588,"40972":1586,"40973":-1,"40974":-1,"40975":-1,"40976":0,"40977":0,"40978":-1,"40979":-1,"40980":-1,"40981":1588,"40982":-1,"40983":1588,"40984":-1,"40985":-1,"40986":-1,"40987":-1,"40988":0,"40989":-1,"40990":-1,"40991":-1,"40992":-1,"40993":-1,"40994":-1,"40995":-1,"40996":-1,"40997":1588,"40998":-1,"40999":1588,"41000":-1,"41001":-1,"41002":-1,"41003":0,"41004":-1,"41005":0,"41006":-1,"41007":0,"41008":1586,"41009":-1,"41010":-1,"41011":-1,"41012":-1,"41013":1587,"41014":-1,"41015":-1,"41016":-1,"41017":1589,"41018":-1,"41019":-1,"41020":-1,"41021":-1,"41022":-1,"41023":-1,"41024":-1,"41025":-1,"41026":-1,"41027":-1,"41028":-1,"41029":-1,"41030":-1,"41031":1587,"41032":0,"41033":0,"41034":-1,"41035":-1,"41036":-1,"41037":-1,"41038":-1,"41039":-1,"41040":-1,"41041":-1,"41042":1587,"41043":0,"41044":-1,"41045":-1,"41046":-1,"41047":-1,"41048":1589,"41049":-1,"41050":-1,"41051":-1,"41052":-1,"41053":-1,"41054":-1,"41055":-1,"41056":-1,"41057":-1,"41058":-1,"41059":-1,"41060":-1,"41061":-1,"41062":-1,"41063":1586,"41064":-1,"41065":-1,"41066":1588,"41067":-1,"41068":1588,"41069":-1,"41070":-1,"41071":-1,"41072":-1,"41073":-1,"41074":1588,"41075":-1,"41076":-1,"41077":-1,"41078":-1,"41079":-1,"41080":-1,"41081":1589,"41082":-1,"41083":-1,"41084":-1,"41085":-1,"41086":-1,"41087":-1,"41088":-1,"41089":-1,"41090":-1,"41091":-1,"41092":-1,"41093":-1,"41094":-1,"41095":-1,"41096":-1,"41097":1587,"41098":1588,"41099":-1,"41100":0,"41101":-1,"41102":-1,"41103":-1,"41104":-1,"41105":-1,"41106":-1,"41107":-1,"41108":-1,"41109":-1,"41110":-1,"41111":-1,"41112":-1,"41113":0,"41114":-1,"41115":-1,"41116":-1,"41117":1586,"41118":1589,"41119":-1,"41120":-1,"41121":-1,"41122":-1,"41123":1588,"41124":-1,"41125":-1,"41126":-1,"41127":-1,"41128":-1,"41129":-1,"41130":-1,"41131":1586,"41132":-1,"41133":-1,"41134":-1,"41135":-1,"41136":-1,"41137":1588,"41138":-1,"41139":-1,"41140":-1,"41141":-1,"41142":-1,"41143":-1,"41144":-1,"41145":-1,"41146":1586,"41147":-1,"41148":-1,"41149":-1,"41150":-1,"41151":-1,"41152":-1,"41153":-1,"41154":-1,"41155":-1,"41156":-1,"41157":-1,"41158":-1,"41159":-1,"41160":-1,"41161":-1,"41162":-1,"41163":-1,"41164":-1,"41165":-1,"41166":1588,"41167":-1,"41168":-1,"41169":-1,"41170":-1,"41171":1587,"41172":-1,"41173":-1,"41174":-1,"41175":-1,"41176":-1,"41177":-1,"41178":-1,"41179":-1,"41180":1588,"41181":-1,"41182":1586,"41183":-1,"41184":-1,"41185":-1,"41186":-1,"41187":1589,"41188":-1,"41189":-1,"41190":-1,"41191":-1,"41192":-1,"41193":-1,"41194":-1,"41195":-1,"41196":-1,"41197":-1,"41198":-1,"41199":-1,"41200":-1,"41201":-1,"41202":-1,"41203":-1,"41204":-1,"41205":1587,"41206":-1,"41207":-1,"41208":-1,"41209":-1,"41210":-1,"41211":-1,"41212":-1,"41213":-1,"41214":-1,"41215":-1,"41216":-1,"41217":-1,"41218":-1,"41219":1589,"41220":-1,"41221":-1,"41222":-1,"41223":-1,"41224":-1,"41225":-1,"41226":1588,"41227":-1,"41228":-1,"41229":-1,"41230":-1,"41231":-1,"41232":-1,"41233":-1,"41234":-1,"41235":-1,"41236":1587,"41237":-1,"41238":-1,"41239":-1,"41240":-1,"41241":-1,"41242":-1,"41243":-1,"41244":-1,"41245":-1,"41246":-1,"41247":-1,"41248":-1,"41249":-1,"41250":-1,"41251":-1,"41252":-1,"41253":-1,"41254":-1,"41255":1587,"41256":-1,"41257":-1,"41258":1587,"41259":-1,"41260":-1,"41261":-1,"41262":-1,"41263":1586,"41264":-1,"41265":1589,"41266":-1,"41267":-1,"41268":-1,"41269":-1,"41270":-1,"41271":-1,"41272":-1,"41273":-1,"41274":-1,"41275":-1,"41276":-1,"41277":-1,"41278":-1,"41279":1589,"41280":-1,"41281":-1,"41282":-1,"41283":-1,"41284":-1,"41285":-1,"41286":-1,"41287":-1,"41288":-1,"41289":1586,"41290":-1,"41291":-1,"41292":-1,"41293":-1,"41294":1588,"41295":1589,"41296":-1,"41297":-1,"41298":1587,"41299":-1,"41300":-1,"41301":-1,"41302":-1,"41303":-1,"41304":-1,"41305":0,"41306":-1,"41307":1587,"41308":-1,"41309":-1,"41310":-1,"41311":1588,"41312":-1,"41313":-1,"41314":-1,"41315":-1,"41316":-1,"41317":0,"41318":-1,"41319":-1,"41320":1587,"41321":-1,"41322":-1,"41323":-1,"41324":1586,"41325":1587,"41326":1589,"41327":-1,"41328":-1,"41329":-1,"41330":-1,"41331":1589,"41332":-1,"41333":-1,"41334":-1,"41335":-1,"41336":1586,"41337":-1,"41338":-1,"41339":1587,"41340":-1,"41341":-1,"41342":-1,"41343":-1,"41344":-1,"41345":-1,"41346":-1,"41347":-1,"41348":1589,"41349":-1,"41350":-1,"41351":-1,"41352":1588,"41353":-1,"41354":-1,"41355":-1,"41356":-1,"41357":-1,"41358":-1,"41359":-1,"41360":-1,"41361":-1,"41362":-1,"41363":-1,"41364":-1,"41365":-1,"41366":1587,"41367":-1,"41368":-1,"41369":-1,"41370":-1,"41371":1587,"41372":-1,"41373":0,"41374":-1,"41375":-1,"41376":-1,"41377":-1,"41378":-1,"41379":-1,"41380":-1,"41381":1587,"41382":-1,"41383":-1,"41384":-1,"41385":-1,"41386":-1,"41387":-1,"41388":-1,"41389":-1,"41390":-1,"41391":-1,"41392":-1,"41393":-1,"41394":-1,"41395":-1,"41396":-1,"41397":-1,"41398":-1,"41399":1589,"41400":-1,"41401":-1,"41402":-1,"41403":-1,"41404":-1,"41405":1588,"41406":-1,"41407":-1,"41408":-1,"41409":-1,"41410":-1,"41411":-1,"41412":-1,"41413":0,"41414":-1,"41415":-1,"41416":-1,"41417":-1,"41418":-1,"41419":-1,"41420":-1,"41421":-1,"41422":-1,"41423":-1,"41424":1587,"41425":-1,"41426":-1,"41427":-1,"41428":-1,"41429":-1,"41430":-1,"41431":0,"41432":-1,"41433":-1,"41434":-1,"41435":-1,"41436":-1,"41437":-1,"41438":-1,"41439":-1,"41440":-1,"41441":-1,"41442":-1,"41443":-1,"41444":-1,"41445":-1,"41446":-1,"41447":0,"41448":-1,"41449":-1,"41450":-1,"41451":1587,"41452":-1,"41453":-1,"41454":-1,"41455":-1,"41456":-1,"41457":-1,"41458":-1,"41459":-1,"41460":-1,"41461":-1,"41462":-1,"41463":-1,"41464":-1,"41465":-1,"41466":-1,"41467":-1,"41468":-1,"41469":-1,"41470":-1,"41471":-1,"41472":-1,"41473":-1,"41474":-1,"41475":-1,"41476":-1,"41477":-1,"41478":-1,"41479":-1,"41480":-1,"41481":-1,"41482":-1,"41483":-1,"41484":-1,"41485":-1,"41486":-1,"41487":-1,"41488":-1,"41489":-1,"41490":1589,"41491":-1,"41492":-1,"41493":-1,"41494":0,"41495":-1,"41496":-1,"41497":-1,"41498":-1,"41499":1589,"41500":-1,"41501":1587,"41502":-1,"41503":-1,"41504":-1,"41505":-1,"41506":-1,"41507":-1,"41508":-1,"41509":-1,"41510":-1,"41511":-1,"41512":-1,"41513":-1,"41514":-1,"41515":-1,"41516":-1,"41517":-1,"41518":-1,"41519":-1,"41520":-1,"41521":-1,"41522":-1,"41523":-1,"41524":-1,"41525":-1,"41526":-1,"41527":-1,"41528":-1,"41529":-1,"41530":-1,"41531":-1,"41532":-1,"41533":-1,"41534":1588,"41535":-1,"41536":1587,"41537":-1,"41538":-1,"41539":-1,"41540":-1,"41541":-1,"41542":-1,"41543":-1,"41544":-1,"41545":-1,"41546":-1,"41547":-1,"41548":-1,"41549":-1,"41550":1588,"41551":-1,"41552":1589,"41553":-1,"41554":-1,"41555":-1,"41556":-1,"41557":-1,"41558":-1,"41559":-1,"41560":1587,"41561":-1,"41562":-1,"41563":-1,"41564":-1,"41565":-1,"41566":-1,"41567":1589,"41568":-1,"41569":-1,"41570":-1,"41571":-1,"41572":-1,"41573":-1,"41574":-1,"41575":-1,"41576":-1,"41577":-1,"41578":-1,"41579":-1,"41580":-1,"41581":-1,"41582":-1,"41583":-1,"41584":-1,"41585":-1,"41586":-1,"41587":-1,"41588":-1,"41589":1587,"41590":-1,"41591":-1,"41592":-1,"41593":-1,"41594":-1,"41595":-1,"41596":-1,"41597":-1,"41598":1587,"41599":-1,"41600":1587,"41601":-1,"41602":-1,"41603":-1,"41604":-1,"41605":-1,"41606":-1,"41607":-1,"41608":-1,"41609":-1,"41610":-1,"41611":-1,"41612":-1,"41613":-1,"41614":-1,"41615":-1,"41616":1588,"41617":1586,"41618":-1,"41619":-1,"41620":1588,"41621":-1,"41622":-1,"41623":-1,"41624":-1,"41625":-1,"41626":-1,"41627":-1,"41628":-1,"41629":-1,"41630":-1,"41631":-1,"41632":1588,"41633":-1,"41634":0,"41635":-1,"41636":-1,"41637":-1,"41638":-1,"41639":-1,"41640":-1,"41641":-1,"41642":1587,"41643":-1,"41644":1587,"41645":-1,"41646":-1,"41647":-1,"41648":-1,"41649":-1,"41650":-1,"41651":-1,"41652":-1,"41653":-1,"41654":-1,"41655":-1,"41656":-1,"41657":-1,"41658":-1,"41659":-1,"41660":-1,"41661":-1,"41662":-1,"41663":1588,"41664":-1,"41665":-1,"41666":-1,"41667":1587,"41668":-1,"41669":-1,"41670":-1,"41671":-1,"41672":-1,"41673":-1,"41674":-1,"41675":-1,"41676":-1,"41677":1588,"41678":-1,"41679":-1,"41680":-1,"41681":-1,"41682":1587,"41683":-1,"41684":-1,"41685":-1,"41686":-1,"41687":-1,"41688":-1,"41689":-1,"41690":1587,"41691":-1,"41692":-1,"41693":-1,"41694":-1,"41695":-1,"41696":1588,"41697":-1,"41698":-1,"41699":-1,"41700":-1,"41701":-1,"41702":-1,"41703":-1,"41704":-1,"41705":1589,"41706":1588,"41707":-1,"41708":-1,"41709":-1,"41710":-1,"41711":-1,"41712":-1,"41713":-1,"41714":-1,"41715":-1,"41716":-1,"41717":1588,"41718":-1,"41719":1588,"41720":1588,"41721":1589,"41722":-1,"41723":-1,"41724":-1,"41725":-1,"41726":-1,"41727":-1,"41728":-1,"41729":1588,"41730":-1,"41731":1586,"41732":-1,"41733":-1,"41734":-1,"41735":-1,"41736":-1,"41737":-1,"41738":-1,"41739":-1,"41740":-1,"41741":-1,"41742":-1,"41743":-1,"41744":-1,"41745":-1,"41746":-1,"41747":-1,"41748":0,"41749":-1,"41750":-1,"41751":-1,"41752":-1,"41753":-1,"41754":-1,"41755":1588,"41756":1587,"41757":1586,"41758":-1,"41759":1588,"41760":-1,"41761":-1,"41762":-1,"41763":1587,"41764":-1,"41765":-1,"41766":-1,"41767":1589,"41768":-1,"41769":-1,"41770":-1,"41771":1586,"41772":-1,"41773":-1,"41774":-1,"41775":-1,"41776":-1,"41777":-1,"41778":1587,"41779":-1,"41780":-1,"41781":-1,"41782":-1,"41783":-1,"41784":-1,"41785":-1,"41786":-1,"41787":-1,"41788":1587,"41789":-1,"41790":1586,"41791":-1,"41792":-1,"41793":1587,"41794":-1,"41795":-1,"41796":-1,"41797":-1,"41798":-1,"41799":-1,"41800":-1,"41801":-1,"41802":-1,"41803":1588,"41804":-1,"41805":-1,"41806":-1,"41807":-1,"41808":-1,"41809":-1,"41810":-1,"41811":-1,"41812":-1,"41813":-1,"41814":-1,"41815":-1,"41816":-1,"41817":-1,"41818":-1,"41819":-1,"41820":-1,"41821":-1,"41822":1587,"41823":-1,"41824":-1,"41825":-1,"41826":-1,"41827":-1,"41828":-1,"41829":-1,"41830":-1,"41831":-1,"41832":-1,"41833":1586,"41834":0,"41835":-1,"41836":-1,"41837":-1,"41838":-1,"41839":-1,"41840":1589,"41841":-1,"41842":-1,"41843":1588,"41844":-1,"41845":-1,"41846":-1,"41847":0,"41848":-1,"41849":-1,"41850":-1,"41851":-1,"41852":-1,"41853":-1,"41854":-1,"41855":-1,"41856":-1,"41857":-1,"41858":-1,"41859":-1,"41860":-1,"41861":-1,"41862":1586,"41863":-1,"41864":-1,"41865":-1,"41866":-1,"41867":-1,"41868":-1,"41869":-1,"41870":-1,"41871":-1,"41872":-1,"41873":-1,"41874":-1,"41875":-1,"41876":-1,"41877":-1,"41878":-1,"41879":-1,"41880":-1,"41881":-1,"41882":-1,"41883":-1,"41884":-1,"41885":-1,"41886":-1,"41887":-1,"41888":-1,"41889":-1,"41890":-1,"41891":1588,"41892":-1,"41893":-1,"41894":1587,"41895":-1,"41896":-1,"41897":-1,"41898":-1,"41899":-1,"41900":1588,"41901":-1,"41902":-1,"41903":-1,"41904":-1,"41905":-1,"41906":1588,"41907":1587,"41908":0,"41909":-1,"41910":-1,"41911":1587,"41912":1588,"41913":-1,"41914":-1,"41915":-1,"41916":-1,"41917":-1,"41918":-1,"41919":-1,"41920":-1,"41921":-1,"41922":-1,"41923":-1,"41924":-1,"41925":0,"41926":-1,"41927":-1,"41928":-1,"41929":-1,"41930":-1,"41931":-1,"41932":-1,"41933":-1,"41934":-1,"41935":-1,"41936":-1,"41937":-1,"41938":-1,"41939":-1,"41940":-1,"41941":1588,"41942":-1,"41943":-1,"41944":-1,"41945":-1,"41946":-1,"41947":1588,"41948":-1,"41949":-1,"41950":-1,"41951":-1,"41952":-1,"41953":-1,"41954":1587,"41955":-1,"41956":-1,"41957":-1,"41958":1587,"41959":-1,"41960":-1,"41961":-1,"41962":-1,"41963":-1,"41964":-1,"41965":-1,"41966":-1,"41967":-1,"41968":1588,"41969":0,"41970":-1,"41971":-1,"41972":-1,"41973":0,"41974":1588,"41975":-1,"41976":-1,"41977":1589,"41978":-1,"41979":-1,"41980":-1,"41981":-1,"41982":-1,"41983":1588,"41984":-1,"41985":-1,"41986":-1,"41987":-1,"41988":1586,"41989":-1,"41990":-1,"41991":0,"41992":-1,"41993":-1,"41994":-1,"41995":-1,"41996":-1,"41997":-1,"41998":-1,"41999":-1,"42000":-1,"42001":-1,"42002":-1,"42003":-1,"42004":-1,"42005":-1,"42006":-1,"42007":-1,"42008":-1,"42009":-1,"42010":1589,"42011":-1,"42012":-1,"42013":-1,"42014":-1,"42015":-1,"42016":-1,"42017":-1,"42018":-1,"42019":-1,"42020":-1,"42021":-1,"42022":-1,"42023":-1,"42024":0,"42025":-1,"42026":-1,"42027":-1,"42028":1589,"42029":-1,"42030":-1,"42031":-1,"42032":0,"42033":1586,"42034":-1,"42035":-1,"42036":-1,"42037":-1,"42038":-1,"42039":-1,"42040":-1,"42041":-1,"42042":-1,"42043":-1,"42044":-1,"42045":-1,"42046":-1,"42047":-1,"42048":-1,"42049":-1,"42050":-1,"42051":0,"42052":-1,"42053":-1,"42054":-1,"42055":-1,"42056":-1,"42057":-1,"42058":-1,"42059":-1,"42060":-1,"42061":-1,"42062":-1,"42063":-1,"42064":0,"42065":-1,"42066":-1,"42067":-1,"42068":-1,"42069":-1,"42070":-1,"42071":-1,"42072":-1,"42073":-1,"42074":-1,"42075":-1,"42076":-1,"42077":-1,"42078":-1,"42079":-1,"42080":-1,"42081":-1,"42082":-1,"42083":1588,"42084":-1,"42085":-1,"42086":-1,"42087":-1,"42088":-1,"42089":-1,"42090":1586,"42091":-1,"42092":-1,"42093":-1,"42094":-1,"42095":-1,"42096":-1,"42097":-1,"42098":-1,"42099":-1,"42100":-1,"42101":-1,"42102":-1,"42103":-1,"42104":-1,"42105":1589,"42106":-1,"42107":-1,"42108":-1,"42109":-1,"42110":-1,"42111":-1,"42112":-1,"42113":-1,"42114":-1,"42115":-1,"42116":-1,"42117":-1,"42118":-1,"42119":1589,"42120":-1,"42121":-1,"42122":-1,"42123":-1,"42124":-1,"42125":-1,"42126":-1,"42127":-1,"42128":1586,"42129":-1,"42130":-1,"42131":1588,"42132":-1,"42133":-1,"42134":-1,"42135":-1,"42136":-1,"42137":-1,"42138":-1,"42139":-1,"42140":-1,"42141":1587,"42142":-1,"42143":1589,"42144":-1,"42145":-1,"42146":-1,"42147":-1,"42148":-1,"42149":-1,"42150":-1,"42151":1587,"42152":-1,"42153":-1,"42154":-1,"42155":1587,"42156":-1,"42157":-1,"42158":-1,"42159":-1,"42160":-1,"42161":-1,"42162":-1,"42163":-1,"42164":-1,"42165":-1,"42166":-1,"42167":-1,"42168":-1,"42169":-1,"42170":-1,"42171":-1,"42172":-1,"42173":0,"42174":1587,"42175":1589,"42176":-1,"42177":-1,"42178":-1,"42179":-1,"42180":-1,"42181":-1,"42182":-1,"42183":-1,"42184":1586,"42185":-1,"42186":-1,"42187":-1,"42188":-1,"42189":-1,"42190":0,"42191":-1,"42192":1587,"42193":-1,"42194":-1,"42195":-1,"42196":-1,"42197":-1,"42198":-1,"42199":-1,"42200":-1,"42201":-1,"42202":-1,"42203":-1,"42204":-1,"42205":-1,"42206":-1,"42207":1588,"42208":-1,"42209":1589,"42210":-1,"42211":-1,"42212":-1,"42213":-1,"42214":-1,"42215":-1,"42216":1588,"42217":-1,"42218":-1,"42219":-1,"42220":-1,"42221":-1,"42222":-1,"42223":1587,"42224":-1,"42225":-1,"42226":-1,"42227":-1,"42228":1587,"42229":-1,"42230":-1,"42231":-1,"42232":-1,"42233":-1,"42234":-1,"42235":-1,"42236":-1,"42237":-1,"42238":-1,"42239":-1,"42240":-1,"42241":-1,"42242":-1,"42243":1588,"42244":-1,"42245":-1,"42246":-1,"42247":1587,"42248":-1,"42249":-1,"42250":0,"42251":-1,"42252":-1,"42253":1588,"42254":-1,"42255":-1,"42256":-1,"42257":-1,"42258":-1,"42259":-1,"42260":-1,"42261":-1,"42262":-1,"42263":-1,"42264":-1,"42265":-1,"42266":-1,"42267":-1,"42268":-1,"42269":1588,"42270":-1,"42271":-1,"42272":1587,"42273":-1,"42274":-1,"42275":-1,"42276":-1,"42277":-1,"42278":-1,"42279":-1,"42280":-1,"42281":0,"42282":-1,"42283":-1,"42284":-1,"42285":-1,"42286":-1,"42287":-1,"42288":-1,"42289":-1,"42290":-1,"42291":-1,"42292":-1,"42293":-1,"42294":1586,"42295":-1,"42296":1589,"42297":-1,"42298":-1,"42299":-1,"42300":-1,"42301":-1,"42302":-1,"42303":-1,"42304":-1,"42305":-1,"42306":-1,"42307":-1,"42308":-1,"42309":-1,"42310":-1,"42311":1588,"42312":-1,"42313":-1,"42314":-1,"42315":-1,"42316":-1,"42317":-1,"42318":-1,"42319":-1,"42320":-1,"42321":-1,"42322":-1,"42323":-1,"42324":-1,"42325":-1,"42326":-1,"42327":-1,"42328":-1,"42329":-1,"42330":1587,"42331":-1,"42332":-1,"42333":-1,"42334":-1,"42335":-1,"42336":0,"42337":1586,"42338":-1,"42339":-1,"42340":-1,"42341":-1,"42342":-1,"42343":-1,"42344":-1,"42345":-1,"42346":-1,"42347":1587,"42348":1587,"42349":-1,"42350":-1,"42351":-1,"42352":-1,"42353":-1,"42354":-1,"42355":-1,"42356":-1,"42357":1588,"42358":-1,"42359":-1,"42360":-1,"42361":-1,"42362":-1,"42363":-1,"42364":-1,"42365":-1,"42366":-1,"42367":-1,"42368":-1,"42369":-1,"42370":-1,"42371":1587,"42372":-1,"42373":-1,"42374":-1,"42375":-1,"42376":-1,"42377":-1,"42378":-1,"42379":-1,"42380":-1,"42381":-1,"42382":-1,"42383":-1,"42384":-1,"42385":-1,"42386":-1,"42387":-1,"42388":-1,"42389":-1,"42390":-1,"42391":-1,"42392":-1,"42393":-1,"42394":1588,"42395":0,"42396":-1,"42397":1586,"42398":-1,"42399":-1,"42400":-1,"42401":-1,"42402":-1,"42403":-1,"42404":-1,"42405":-1,"42406":-1,"42407":-1,"42408":-1,"42409":-1,"42410":1589,"42411":1586,"42412":-1,"42413":1587,"42414":-1,"42415":-1,"42416":-1,"42417":-1,"42418":-1,"42419":-1,"42420":0,"42421":-1,"42422":-1,"42423":-1,"42424":-1,"42425":-1,"42426":-1,"42427":1588,"42428":-1,"42429":-1,"42430":-1,"42431":-1,"42432":-1,"42433":-1,"42434":1587,"42435":-1,"42436":-1,"42437":-1,"42438":-1,"42439":-1,"42440":-1,"42441":1588,"42442":0,"42443":-1,"42444":-1,"42445":-1,"42446":-1,"42447":-1,"42448":-1,"42449":-1,"42450":0,"42451":0,"42452":-1,"42453":-1,"42454":1588,"42455":-1,"42456":-1,"42457":-1,"42458":-1,"42459":-1,"42460":-1,"42461":1587,"42462":-1,"42463":-1,"42464":-1,"42465":-1,"42466":-1,"42467":-1,"42468":-1,"42469":-1,"42470":-1,"42471":-1,"42472":-1,"42473":-1,"42474":-1,"42475":1589,"42476":-1,"42477":-1,"42478":-1,"42479":-1,"42480":-1,"42481":-1,"42482":-1,"42483":-1,"42484":-1,"42485":-1,"42486":-1,"42487":-1,"42488":-1,"42489":-1,"42490":-1,"42491":-1,"42492":-1,"42493":-1,"42494":-1,"42495":-1,"42496":-1,"42497":-1,"42498":-1,"42499":-1,"42500":-1,"42501":-1,"42502":-1,"42503":0,"42504":-1,"42505":-1,"42506":-1,"42507":-1,"42508":-1,"42509":-1,"42510":-1,"42511":-1,"42512":-1,"42513":1589,"42514":-1,"42515":0,"42516":1588,"42517":-1,"42518":-1,"42519":-1,"42520":-1,"42521":-1,"42522":-1,"42523":-1,"42524":-1,"42525":-1,"42526":-1,"42527":1587,"42528":-1,"42529":-1,"42530":1588,"42531":-1,"42532":-1,"42533":-1,"42534":-1,"42535":-1,"42536":1586,"42537":-1,"42538":-1,"42539":-1,"42540":-1,"42541":-1,"42542":1588,"42543":-1,"42544":-1,"42545":-1,"42546":-1,"42547":-1,"42548":-1,"42549":-1,"42550":1588,"42551":-1,"42552":-1,"42553":1589,"42554":-1,"42555":-1,"42556":-1,"42557":-1,"42558":-1,"42559":1587,"42560":-1,"42561":0,"42562":-1,"42563":-1,"42564":-1,"42565":-1,"42566":-1,"42567":-1,"42568":-1,"42569":-1,"42570":-1,"42571":1589,"42572":-1,"42573":-1,"42574":-1,"42575":-1,"42576":-1,"42577":-1,"42578":-1,"42579":-1,"42580":-1,"42581":1587,"42582":-1,"42583":-1,"42584":-1,"42585":1587,"42586":-1,"42587":-1,"42588":-1,"42589":-1,"42590":-1,"42591":-1,"42592":-1,"42593":-1,"42594":-1,"42595":-1,"42596":-1,"42597":-1,"42598":-1,"42599":-1,"42600":-1,"42601":-1,"42602":-1,"42603":-1,"42604":-1,"42605":-1,"42606":1586,"42607":-1,"42608":1586,"42609":-1,"42610":1588,"42611":-1,"42612":-1,"42613":-1,"42614":-1,"42615":1588,"42616":-1,"42617":-1,"42618":-1,"42619":-1,"42620":1587,"42621":1586,"42622":-1,"42623":-1,"42624":1587,"42625":-1,"42626":-1,"42627":1588,"42628":-1,"42629":-1,"42630":-1,"42631":1588,"42632":-1,"42633":-1,"42634":-1,"42635":-1,"42636":-1,"42637":-1,"42638":-1,"42639":-1,"42640":-1,"42641":-1,"42642":-1,"42643":1588,"42644":-1,"42645":-1,"42646":-1,"42647":-1,"42648":-1,"42649":-1,"42650":-1,"42651":-1,"42652":-1,"42653":-1,"42654":-1,"42655":-1,"42656":-1,"42657":-1,"42658":-1,"42659":1588,"42660":-1,"42661":-1,"42662":-1,"42663":-1,"42664":-1,"42665":-1,"42666":-1,"42667":1587,"42668":-1,"42669":-1,"42670":-1,"42671":-1,"42672":1589,"42673":1586,"42674":-1,"42675":-1,"42676":1588,"42677":-1,"42678":-1,"42679":-1,"42680":-1,"42681":-1,"42682":-1,"42683":-1,"42684":-1,"42685":-1,"42686":-1,"42687":-1,"42688":1586,"42689":-1,"42690":-1,"42691":1589,"42692":-1,"42693":-1,"42694":-1,"42695":1589,"42696":-1,"42697":-1,"42698":1587,"42699":1589,"42700":-1,"42701":-1,"42702":1589,"42703":1587,"42704":-1,"42705":-1,"42706":0,"42707":-1,"42708":-1,"42709":-1,"42710":1587,"42711":0,"42712":-1,"42713":-1,"42714":-1,"42715":-1,"42716":-1,"42717":-1,"42718":-1,"42719":-1,"42720":-1,"42721":-1,"42722":-1,"42723":-1,"42724":-1,"42725":-1,"42726":-1,"42727":1587,"42728":-1,"42729":-1,"42730":-1,"42731":-1,"42732":0,"42733":-1,"42734":-1,"42735":-1,"42736":-1,"42737":-1,"42738":-1,"42739":1588,"42740":-1,"42741":-1,"42742":-1,"42743":-1,"42744":-1,"42745":-1,"42746":-1,"42747":0,"42748":-1,"42749":-1,"42750":-1,"42751":-1,"42752":1587,"42753":-1,"42754":1588,"42755":-1,"42756":-1,"42757":-1,"42758":0,"42759":-1,"42760":-1,"42761":1587,"42762":-1,"42763":-1,"42764":1589,"42765":-1,"42766":-1,"42767":-1,"42768":0,"42769":-1,"42770":-1,"42771":-1,"42772":-1,"42773":-1,"42774":-1,"42775":-1,"42776":-1,"42777":-1,"42778":0,"42779":1588,"42780":-1,"42781":0,"42782":-1,"42783":-1,"42784":0,"42785":-1,"42786":-1,"42787":1586,"42788":-1,"42789":-1,"42790":0,"42791":-1,"42792":-1,"42793":-1,"42794":-1,"42795":-1,"42796":0,"42797":-1,"42798":-1,"42799":-1,"42800":1587,"42801":-1,"42802":-1,"42803":-1,"42804":-1,"42805":1589,"42806":-1,"42807":-1,"42808":-1,"42809":-1,"42810":1586,"42811":-1,"42812":-1,"42813":-1,"42814":1589,"42815":-1,"42816":1586,"42817":-1,"42818":-1,"42819":-1,"42820":-1,"42821":-1,"42822":-1,"42823":-1,"42824":-1,"42825":0,"42826":-1,"42827":-1,"42828":-1,"42829":-1,"42830":-1,"42831":-1,"42832":-1,"42833":-1,"42834":-1,"42835":-1,"42836":-1,"42837":1587,"42838":1588,"42839":-1,"42840":-1,"42841":-1,"42842":1588,"42843":-1,"42844":-1,"42845":-1,"42846":-1,"42847":-1,"42848":-1,"42849":-1,"42850":-1,"42851":1589,"42852":1589,"42853":1587,"42854":-1,"42855":-1,"42856":-1,"42857":-1,"42858":-1,"42859":-1,"42860":-1,"42861":-1,"42862":-1,"42863":-1,"42864":1587,"42865":0,"42866":-1,"42867":-1,"42868":-1,"42869":-1,"42870":-1,"42871":-1,"42872":-1,"42873":-1,"42874":-1,"42875":-1,"42876":-1,"42877":-1,"42878":-1,"42879":-1,"42880":-1,"42881":-1,"42882":-1,"42883":-1,"42884":-1,"42885":-1,"42886":-1,"42887":-1,"42888":-1,"42889":-1,"42890":-1,"42891":-1,"42892":-1,"42893":-1,"42894":-1,"42895":-1,"42896":-1,"42897":-1,"42898":1589,"42899":-1,"42900":-1,"42901":-1,"42902":-1,"42903":-1,"42904":-1,"42905":-1,"42906":-1,"42907":-1,"42908":-1,"42909":-1,"42910":1589,"42911":1586,"42912":-1,"42913":1589,"42914":-1,"42915":-1,"42916":-1,"42917":-1,"42918":1589,"42919":-1,"42920":-1,"42921":-1,"42922":-1,"42923":1587,"42924":-1,"42925":-1,"42926":-1,"42927":-1,"42928":-1,"42929":-1,"42930":-1,"42931":-1,"42932":-1,"42933":1586,"42934":-1,"42935":-1,"42936":-1,"42937":-1,"42938":-1,"42939":1586,"42940":-1,"42941":-1,"42942":-1,"42943":-1,"42944":-1,"42945":-1,"42946":-1,"42947":-1,"42948":-1,"42949":-1,"42950":-1,"42951":-1,"42952":-1,"42953":-1,"42954":-1,"42955":-1,"42956":-1,"42957":-1,"42958":-1,"42959":-1,"42960":1588,"42961":1588,"42962":-1,"42963":-1,"42964":-1,"42965":-1,"42966":-1,"42967":-1,"42968":-1,"42969":-1,"42970":-1,"42971":-1,"42972":-1,"42973":-1,"42974":-1,"42975":-1,"42976":-1,"42977":-1,"42978":-1,"42979":-1,"42980":1587,"42981":-1,"42982":-1,"42983":1589,"42984":0,"42985":-1,"42986":-1,"42987":1586,"42988":-1,"42989":1588,"42990":-1,"42991":-1,"42992":1587,"42993":-1,"42994":-1,"42995":-1,"42996":-1,"42997":0,"42998":-1,"42999":-1,"43000":-1,"43001":-1,"43002":-1,"43003":-1,"43004":-1,"43005":-1,"43006":-1,"43007":-1,"43008":-1,"43009":-1,"43010":-1,"43011":-1,"43012":-1,"43013":-1,"43014":-1,"43015":-1,"43016":-1,"43017":-1,"43018":-1,"43019":-1,"43020":-1,"43021":-1,"43022":-1,"43023":-1,"43024":-1,"43025":-1,"43026":-1,"43027":-1,"43028":-1,"43029":-1,"43030":-1,"43031":-1,"43032":-1,"43033":1588,"43034":1587,"43035":-1,"43036":1588,"43037":-1,"43038":-1,"43039":-1,"43040":-1,"43041":-1,"43042":-1,"43043":-1,"43044":-1,"43045":-1,"43046":0,"43047":-1,"43048":-1,"43049":-1,"43050":-1,"43051":-1,"43052":-1,"43053":-1,"43054":1589,"43055":0,"43056":-1,"43057":-1,"43058":-1,"43059":-1,"43060":-1,"43061":-1,"43062":-1,"43063":-1,"43064":-1,"43065":-1,"43066":1587,"43067":-1,"43068":-1,"43069":-1,"43070":1587,"43071":1588,"43072":-1,"43073":-1,"43074":-1,"43075":-1,"43076":-1,"43077":0,"43078":-1,"43079":-1,"43080":-1,"43081":-1,"43082":-1,"43083":-1,"43084":-1,"43085":-1,"43086":-1,"43087":-1,"43088":-1,"43089":-1,"43090":-1,"43091":-1,"43092":-1,"43093":-1,"43094":-1,"43095":-1,"43096":-1,"43097":-1,"43098":-1,"43099":-1,"43100":-1,"43101":-1,"43102":-1,"43103":-1,"43104":-1,"43105":-1,"43106":-1,"43107":-1,"43108":-1,"43109":-1,"43110":-1,"43111":-1,"43112":-1,"43113":-1,"43114":0,"43115":-1,"43116":-1,"43117":-1,"43118":1586,"43119":1586,"43120":1589,"43121":-1,"43122":-1,"43123":-1,"43124":-1,"43125":-1,"43126":-1,"43127":-1,"43128":-1,"43129":1588,"43130":-1,"43131":-1,"43132":-1,"43133":-1,"43134":1588,"43135":-1,"43136":-1,"43137":-1,"43138":-1,"43139":-1,"43140":-1,"43141":-1,"43142":-1,"43143":-1,"43144":-1,"43145":-1,"43146":-1,"43147":1588,"43148":-1,"43149":-1,"43150":-1,"43151":-1,"43152":-1,"43153":-1,"43154":-1,"43155":-1,"43156":-1,"43157":-1,"43158":-1,"43159":-1,"43160":1588,"43161":-1,"43162":-1,"43163":-1,"43164":-1,"43165":0,"43166":-1,"43167":-1,"43168":-1,"43169":-1,"43170":1587,"43171":-1,"43172":-1,"43173":1587,"43174":-1,"43175":-1,"43176":1586,"43177":-1,"43178":-1,"43179":1589,"43180":-1,"43181":-1,"43182":-1,"43183":-1,"43184":-1,"43185":-1,"43186":1587,"43187":1588,"43188":-1,"43189":-1,"43190":-1,"43191":0,"43192":-1,"43193":-1,"43194":-1,"43195":-1,"43196":-1,"43197":-1,"43198":-1,"43199":-1,"43200":-1,"43201":-1,"43202":-1,"43203":-1,"43204":-1,"43205":-1,"43206":-1,"43207":-1,"43208":-1,"43209":0,"43210":-1,"43211":-1,"43212":-1,"43213":-1,"43214":-1,"43215":-1,"43216":-1,"43217":-1,"43218":-1,"43219":0,"43220":-1,"43221":-1,"43222":1588,"43223":-1,"43224":-1,"43225":-1,"43226":-1,"43227":-1,"43228":-1,"43229":-1,"43230":-1,"43231":-1,"43232":1587,"43233":-1,"43234":-1,"43235":-1,"43236":-1,"43237":-1,"43238":-1,"43239":-1,"43240":1589,"43241":-1,"43242":1586,"43243":1589,"43244":-1,"43245":-1,"43246":-1,"43247":-1,"43248":-1,"43249":-1,"43250":1586,"43251":-1,"43252":-1,"43253":-1,"43254":-1,"43255":1587,"43256":-1,"43257":-1,"43258":-1,"43259":-1,"43260":-1,"43261":0,"43262":-1,"43263":-1,"43264":-1,"43265":-1,"43266":-1,"43267":-1,"43268":-1,"43269":-1,"43270":-1,"43271":-1,"43272":-1,"43273":-1,"43274":1588,"43275":-1,"43276":-1,"43277":-1,"43278":-1,"43279":1587,"43280":-1,"43281":-1,"43282":-1,"43283":1586,"43284":-1,"43285":1587,"43286":-1,"43287":-1,"43288":1587,"43289":1587,"43290":-1,"43291":-1,"43292":-1,"43293":-1,"43294":-1,"43295":-1,"43296":-1,"43297":-1,"43298":-1,"43299":-1,"43300":1589,"43301":0,"43302":-1,"43303":-1,"43304":-1,"43305":-1,"43306":-1,"43307":-1,"43308":1588,"43309":-1,"43310":-1,"43311":-1,"43312":-1,"43313":1586,"43314":-1,"43315":-1,"43316":-1,"43317":-1,"43318":-1,"43319":-1,"43320":-1,"43321":-1,"43322":-1,"43323":-1,"43324":-1,"43325":1587,"43326":-1,"43327":-1,"43328":-1,"43329":-1,"43330":-1,"43331":-1,"43332":-1,"43333":-1,"43334":-1,"43335":-1,"43336":-1,"43337":-1,"43338":-1,"43339":-1,"43340":-1,"43341":-1,"43342":-1,"43343":-1,"43344":1588,"43345":-1,"43346":1588,"43347":-1,"43348":-1,"43349":-1,"43350":-1,"43351":-1,"43352":-1,"43353":-1,"43354":-1,"43355":-1,"43356":-1,"43357":-1,"43358":-1,"43359":-1,"43360":-1,"43361":-1,"43362":-1,"43363":-1,"43364":-1,"43365":-1,"43366":1588,"43367":1589,"43368":-1,"43369":-1,"43370":-1,"43371":-1,"43372":-1,"43373":-1,"43374":-1,"43375":-1,"43376":1589,"43377":1588,"43378":-1,"43379":-1,"43380":-1,"43381":-1,"43382":-1,"43383":0,"43384":-1,"43385":-1,"43386":-1,"43387":-1,"43388":-1,"43389":-1,"43390":-1,"43391":1588,"43392":1587,"43393":-1,"43394":-1,"43395":-1,"43396":-1,"43397":-1,"43398":-1,"43399":1588,"43400":-1,"43401":-1,"43402":-1,"43403":-1,"43404":-1,"43405":-1,"43406":-1,"43407":-1,"43408":-1,"43409":-1,"43410":-1,"43411":-1,"43412":-1,"43413":-1,"43414":-1,"43415":-1,"43416":-1,"43417":-1,"43418":-1,"43419":-1,"43420":-1,"43421":-1,"43422":-1,"43423":-1,"43424":1587,"43425":-1,"43426":-1,"43427":-1,"43428":-1,"43429":-1,"43430":-1,"43431":1589,"43432":-1,"43433":-1,"43434":1588,"43435":-1,"43436":-1,"43437":-1,"43438":-1,"43439":1587,"43440":-1,"43441":-1,"43442":-1,"43443":-1,"43444":1588,"43445":-1,"43446":-1,"43447":1587,"43448":-1,"43449":-1,"43450":1589,"43451":-1,"43452":-1,"43453":-1,"43454":-1,"43455":-1,"43456":-1,"43457":-1,"43458":-1,"43459":1589,"43460":-1,"43461":-1,"43462":-1,"43463":-1,"43464":-1,"43465":-1,"43466":-1,"43467":-1,"43468":-1,"43469":-1,"43470":-1,"43471":-1,"43472":1587,"43473":-1,"43474":-1,"43475":-1,"43476":-1,"43477":1588,"43478":-1,"43479":-1,"43480":-1,"43481":1588,"43482":-1,"43483":-1,"43484":-1,"43485":-1,"43486":-1,"43487":-1,"43488":-1,"43489":-1,"43490":-1,"43491":-1,"43492":-1,"43493":-1,"43494":-1,"43495":-1,"43496":1586,"43497":-1,"43498":-1,"43499":-1,"43500":-1,"43501":-1,"43502":-1,"43503":-1,"43504":1587,"43505":1589,"43506":0,"43507":-1,"43508":-1,"43509":1588,"43510":-1,"43511":-1,"43512":-1,"43513":-1,"43514":-1,"43515":0,"43516":1587,"43517":-1,"43518":1587,"43519":-1,"43520":-1,"43521":-1,"43522":-1,"43523":-1,"43524":-1,"43525":-1,"43526":0,"43527":-1,"43528":-1,"43529":-1,"43530":-1,"43531":-1,"43532":-1,"43533":-1,"43534":-1,"43535":-1,"43536":1588,"43537":-1,"43538":-1,"43539":-1,"43540":-1,"43541":-1,"43542":-1,"43543":-1,"43544":-1,"43545":-1,"43546":-1,"43547":-1,"43548":-1,"43549":-1,"43550":-1,"43551":-1,"43552":-1,"43553":-1,"43554":-1,"43555":-1,"43556":-1,"43557":-1,"43558":-1,"43559":-1,"43560":-1,"43561":-1,"43562":-1,"43563":1589,"43564":-1,"43565":-1,"43566":-1,"43567":-1,"43568":-1,"43569":-1,"43570":-1,"43571":-1,"43572":-1,"43573":1588,"43574":-1,"43575":0,"43576":-1,"43577":-1,"43578":-1,"43579":-1,"43580":1587,"43581":-1,"43582":-1,"43583":-1,"43584":-1,"43585":-1,"43586":-1,"43587":1587,"43588":-1,"43589":-1,"43590":-1,"43591":1588,"43592":-1,"43593":-1,"43594":-1,"43595":-1,"43596":-1,"43597":-1,"43598":-1,"43599":1587,"43600":-1,"43601":-1,"43602":-1,"43603":-1,"43604":-1,"43605":1587,"43606":-1,"43607":-1,"43608":-1,"43609":-1,"43610":-1,"43611":-1,"43612":1586,"43613":-1,"43614":-1,"43615":-1,"43616":-1,"43617":-1,"43618":-1,"43619":-1,"43620":-1,"43621":-1,"43622":-1,"43623":1588,"43624":-1,"43625":-1,"43626":-1,"43627":-1,"43628":-1,"43629":-1,"43630":-1,"43631":-1,"43632":-1,"43633":-1,"43634":-1,"43635":-1,"43636":-1,"43637":-1,"43638":-1,"43639":-1,"43640":-1,"43641":-1,"43642":-1,"43643":-1,"43644":1589,"43645":-1,"43646":-1,"43647":-1,"43648":1588,"43649":-1,"43650":-1,"43651":-1,"43652":-1,"43653":-1,"43654":-1,"43655":-1,"43656":-1,"43657":1588,"43658":-1,"43659":-1,"43660":-1,"43661":-1,"43662":1588,"43663":-1,"43664":-1,"43665":-1,"43666":-1,"43667":-1,"43668":-1,"43669":-1,"43670":-1,"43671":-1,"43672":0,"43673":1587,"43674":1586,"43675":-1,"43676":-1,"43677":-1,"43678":-1,"43679":-1,"43680":-1,"43681":1587,"43682":-1,"43683":-1,"43684":-1,"43685":1587,"43686":-1,"43687":-1,"43688":-1,"43689":-1,"43690":1586,"43691":-1,"43692":-1,"43693":-1,"43694":-1,"43695":-1,"43696":-1,"43697":1587,"43698":-1,"43699":-1,"43700":-1,"43701":0,"43702":-1,"43703":1587,"43704":1589,"43705":-1,"43706":-1,"43707":-1,"43708":0,"43709":1589,"43710":-1,"43711":1587,"43712":-1,"43713":-1,"43714":-1,"43715":-1,"43716":-1,"43717":-1,"43718":-1,"43719":-1,"43720":-1,"43721":-1,"43722":1588,"43723":-1,"43724":-1,"43725":-1,"43726":-1,"43727":-1,"43728":-1,"43729":-1,"43730":-1,"43731":-1,"43732":-1,"43733":-1,"43734":-1,"43735":-1,"43736":-1,"43737":1588,"43738":1587,"43739":-1,"43740":-1,"43741":-1,"43742":-1,"43743":-1,"43744":-1,"43745":-1,"43746":-1,"43747":-1,"43748":-1,"43749":-1,"43750":-1,"43751":1586,"43752":-1,"43753":-1,"43754":-1,"43755":-1,"43756":0,"43757":-1,"43758":-1,"43759":-1,"43760":-1,"43761":-1,"43762":-1,"43763":-1,"43764":-1,"43765":-1,"43766":-1,"43767":-1,"43768":-1,"43769":-1,"43770":-1,"43771":-1,"43772":-1,"43773":-1,"43774":-1,"43775":-1,"43776":-1,"43777":-1,"43778":-1,"43779":-1,"43780":-1,"43781":1588,"43782":-1,"43783":-1,"43784":0,"43785":-1,"43786":-1,"43787":-1,"43788":-1,"43789":-1,"43790":-1,"43791":-1,"43792":-1,"43793":-1,"43794":-1,"43795":-1,"43796":-1,"43797":-1,"43798":-1,"43799":1589,"43800":1587,"43801":-1,"43802":-1,"43803":-1,"43804":-1,"43805":-1,"43806":-1,"43807":-1,"43808":-1,"43809":-1,"43810":1586,"43811":-1,"43812":-1,"43813":-1,"43814":-1,"43815":-1,"43816":-1,"43817":-1,"43818":-1,"43819":-1,"43820":-1,"43821":-1,"43822":-1,"43823":-1,"43824":-1,"43825":0,"43826":-1,"43827":-1,"43828":-1,"43829":-1,"43830":-1,"43831":-1,"43832":-1,"43833":-1,"43834":-1,"43835":-1,"43836":-1,"43837":-1,"43838":-1,"43839":-1,"43840":-1,"43841":-1,"43842":-1,"43843":-1,"43844":-1,"43845":-1,"43846":1586,"43847":-1,"43848":-1,"43849":-1,"43850":-1,"43851":-1,"43852":1588,"43853":-1,"43854":-1,"43855":-1,"43856":-1,"43857":1588,"43858":-1,"43859":-1,"43860":-1,"43861":1587,"43862":-1,"43863":-1,"43864":-1,"43865":-1,"43866":-1,"43867":-1,"43868":-1,"43869":-1,"43870":-1,"43871":-1,"43872":1587,"43873":-1,"43874":-1,"43875":-1,"43876":1587,"43877":-1,"43878":-1,"43879":-1,"43880":-1,"43881":-1,"43882":-1,"43883":-1,"43884":-1,"43885":-1,"43886":-1,"43887":-1,"43888":-1,"43889":-1,"43890":-1,"43891":-1,"43892":-1,"43893":-1,"43894":-1,"43895":-1,"43896":-1,"43897":-1,"43898":-1,"43899":-1,"43900":-1,"43901":-1,"43902":-1,"43903":-1,"43904":-1,"43905":-1,"43906":1586,"43907":1587,"43908":1586,"43909":-1,"43910":-1,"43911":1586,"43912":-1,"43913":-1,"43914":-1,"43915":-1,"43916":-1,"43917":-1,"43918":1588,"43919":-1,"43920":-1,"43921":-1,"43922":1587,"43923":-1,"43924":-1,"43925":-1,"43926":-1,"43927":-1,"43928":-1,"43929":-1,"43930":-1,"43931":-1,"43932":-1,"43933":-1,"43934":-1,"43935":1588,"43936":-1,"43937":-1,"43938":-1,"43939":-1,"43940":-1,"43941":-1,"43942":-1,"43943":-1,"43944":0,"43945":-1,"43946":1587,"43947":-1,"43948":-1,"43949":-1,"43950":-1,"43951":-1,"43952":1587,"43953":1586,"43954":-1,"43955":-1,"43956":-1,"43957":-1,"43958":-1,"43959":-1,"43960":-1,"43961":-1,"43962":-1,"43963":-1,"43964":-1,"43965":-1,"43966":-1,"43967":-1,"43968":-1,"43969":-1,"43970":-1,"43971":-1,"43972":-1,"43973":-1,"43974":-1,"43975":1589,"43976":1587,"43977":-1,"43978":-1,"43979":-1,"43980":-1,"43981":-1,"43982":-1,"43983":-1,"43984":-1,"43985":-1,"43986":-1,"43987":1586,"43988":-1,"43989":-1,"43990":1587,"43991":1586,"43992":-1,"43993":1587,"43994":-1,"43995":-1,"43996":-1,"43997":-1,"43998":-1,"43999":-1,"44000":-1,"44001":-1,"44002":-1,"44003":-1,"44004":-1,"44005":1587,"44006":-1,"44007":-1,"44008":-1,"44009":-1,"44010":-1,"44011":-1,"44012":-1,"44013":-1,"44014":-1,"44015":0,"44016":-1,"44017":-1,"44018":-1,"44019":-1,"44020":-1,"44021":-1,"44022":-1,"44023":-1,"44024":-1,"44025":-1,"44026":-1,"44027":-1,"44028":-1,"44029":-1,"44030":-1,"44031":-1,"44032":-1,"44033":-1,"44034":-1,"44035":1588,"44036":-1,"44037":1587,"44038":-1,"44039":-1,"44040":-1,"44041":-1,"44042":-1,"44043":-1,"44044":1588,"44045":-1,"44046":-1,"44047":1587,"44048":-1,"44049":0,"44050":-1,"44051":-1,"44052":-1,"44053":-1,"44054":-1,"44055":-1,"44056":1586,"44057":-1,"44058":-1,"44059":-1,"44060":-1,"44061":-1,"44062":1587,"44063":-1,"44064":-1,"44065":-1,"44066":1586,"44067":-1,"44068":-1,"44069":-1,"44070":-1,"44071":-1,"44072":-1,"44073":-1,"44074":1588,"44075":-1,"44076":-1,"44077":-1,"44078":-1,"44079":1587,"44080":-1,"44081":-1,"44082":1588,"44083":-1,"44084":-1,"44085":-1,"44086":-1,"44087":-1,"44088":-1,"44089":1589,"44090":-1,"44091":-1,"44092":1588,"44093":-1,"44094":-1,"44095":1586,"44096":1588,"44097":-1,"44098":-1,"44099":-1,"44100":-1,"44101":1587,"44102":-1,"44103":-1,"44104":-1,"44105":-1,"44106":-1,"44107":1586,"44108":-1,"44109":-1,"44110":-1,"44111":0,"44112":0,"44113":1588,"44114":-1,"44115":-1,"44116":-1,"44117":-1,"44118":-1,"44119":-1,"44120":-1,"44121":-1,"44122":-1,"44123":-1,"44124":1588,"44125":-1,"44126":-1,"44127":-1,"44128":1589,"44129":0,"44130":-1,"44131":-1,"44132":-1,"44133":-1,"44134":-1,"44135":-1,"44136":-1,"44137":-1,"44138":-1,"44139":-1,"44140":-1,"44141":-1,"44142":1587,"44143":-1,"44144":-1,"44145":-1,"44146":-1,"44147":1587,"44148":-1,"44149":1587,"44150":-1,"44151":1587,"44152":-1,"44153":-1,"44154":-1,"44155":-1,"44156":1587,"44157":-1,"44158":-1,"44159":-1,"44160":-1,"44161":-1,"44162":-1,"44163":-1,"44164":-1,"44165":-1,"44166":-1,"44167":-1,"44168":-1,"44169":-1,"44170":-1,"44171":-1,"44172":-1,"44173":1586,"44174":-1,"44175":-1,"44176":-1,"44177":-1,"44178":-1,"44179":1588,"44180":-1,"44181":-1,"44182":-1,"44183":-1,"44184":-1,"44185":-1,"44186":-1,"44187":1588,"44188":-1,"44189":-1,"44190":-1,"44191":1588,"44192":-1,"44193":-1,"44194":-1,"44195":-1,"44196":-1,"44197":-1,"44198":-1,"44199":0,"44200":-1,"44201":-1,"44202":-1},"indivfacid_2":{"0":0,"1":0,"2":-1,"3":-1,"4":-1,"5":0,"6":1562,"7":0,"8":23,"9":0,"10":-1,"11":-1,"12":-1,"13":-1,"14":0,"15":286,"16":0,"17":0,"18":-1,"19":-1,"20":-1,"21":0,"22":128,"23":-1,"24":128,"25":0,"26":60,"27":123,"28":0,"29":-1,"30":0,"31":1392,"32":0,"33":1356,"34":0,"35":0,"36":0,"37":-1,"38":-1,"39":-1,"40":-1,"41":-1,"42":0,"43":-1,"44":44,"45":-1,"46":1361,"47":-1,"48":1381,"49":-1,"50":0,"51":1514,"52":0,"53":-1,"54":-1,"55":1542,"56":0,"57":1329,"58":341,"59":0,"60":-1,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":373,"69":0,"70":0,"71":-1,"72":-1,"73":0,"74":-1,"75":-1,"76":-1,"77":-1,"78":-1,"79":0,"80":117,"81":1458,"82":-1,"83":1428,"84":202,"85":334,"86":-1,"87":0,"88":1322,"89":0,"90":0,"91":1423,"92":0,"93":-1,"94":-1,"95":-1,"96":1489,"97":1313,"98":-1,"99":-1,"100":1491,"101":149,"102":1355,"103":1301,"104":1516,"105":0,"106":-1,"107":-1,"108":0,"109":1550,"110":1499,"111":0,"112":0,"113":0,"114":-1,"115":-1,"116":-1,"117":1418,"118":1304,"119":1499,"120":154,"121":192,"122":-1,"123":-1,"124":0,"125":-1,"126":0,"127":-1,"128":226,"129":-1,"130":0,"131":0,"132":0,"133":0,"134":-1,"135":0,"136":1516,"137":-1,"138":1451,"139":0,"140":0,"141":-1,"142":0,"143":0,"144":0,"145":0,"146":0,"147":1561,"148":0,"149":157,"150":176,"151":0,"152":288,"153":-1,"154":-1,"155":-1,"156":0,"157":-1,"158":0,"159":1306,"160":1506,"161":-1,"162":94,"163":1513,"164":313,"165":0,"166":0,"167":0,"168":-1,"169":0,"170":11,"171":1466,"172":-1,"173":1361,"174":30,"175":1545,"176":0,"177":0,"178":-1,"179":1497,"180":0,"181":0,"182":0,"183":308,"184":0,"185":0,"186":89,"187":0,"188":0,"189":-1,"190":0,"191":368,"192":0,"193":-1,"194":0,"195":343,"196":0,"197":-1,"198":0,"199":0,"200":0,"201":0,"202":180,"203":-1,"204":192,"205":0,"206":271,"207":0,"208":0,"209":0,"210":-1,"211":0,"212":-1,"213":-1,"214":201,"215":1329,"216":0,"217":-1,"218":120,"219":0,"220":0,"221":0,"222":-1,"223":1321,"224":0,"225":-1,"226":0,"227":-1,"228":0,"229":-1,"230":0,"231":-1,"232":190,"233":-1,"234":0,"235":-1,"236":-1,"237":0,"238":1517,"239":-1,"240":-1,"241":-1,"242":-1,"243":-1,"244":0,"245":-1,"246":0,"247":-1,"248":0,"249":-1,"250":1318,"251":217,"252":0,"253":155,"254":0,"255":1468,"256":0,"257":0,"258":-1,"259":41,"260":-1,"261":1305,"262":-1,"263":-1,"264":0,"265":0,"266":305,"267":-1,"268":0,"269":33,"270":0,"271":-1,"272":1565,"273":0,"274":0,"275":0,"276":187,"277":-1,"278":0,"279":0,"280":0,"281":0,"282":0,"283":0,"284":0,"285":-1,"286":0,"287":-1,"288":0,"289":162,"290":0,"291":-1,"292":0,"293":-1,"294":165,"295":0,"296":0,"297":-1,"298":-1,"299":0,"300":-1,"301":0,"302":0,"303":0,"304":306,"305":1369,"306":0,"307":0,"308":23,"309":0,"310":-1,"311":0,"312":-1,"313":0,"314":278,"315":0,"316":0,"317":332,"318":-1,"319":0,"320":0,"321":-1,"322":-1,"323":0,"324":1494,"325":26,"326":-1,"327":0,"328":265,"329":-1,"330":0,"331":0,"332":0,"333":0,"334":348,"335":0,"336":0,"337":0,"338":1394,"339":0,"340":1413,"341":0,"342":0,"343":-1,"344":0,"345":-1,"346":-1,"347":-1,"348":0,"349":0,"350":0,"351":-1,"352":1300,"353":1391,"354":0,"355":0,"356":-1,"357":0,"358":1570,"359":172,"360":-1,"361":328,"362":0,"363":0,"364":0,"365":76,"366":0,"367":-1,"368":352,"369":47,"370":1560,"371":-1,"372":1458,"373":-1,"374":-1,"375":0,"376":-1,"377":1319,"378":0,"379":170,"380":0,"381":0,"382":0,"383":-1,"384":-1,"385":0,"386":-1,"387":0,"388":-1,"389":0,"390":-1,"391":-1,"392":1449,"393":1499,"394":0,"395":1406,"396":-1,"397":0,"398":-1,"399":190,"400":1546,"401":0,"402":46,"403":0,"404":354,"405":0,"406":-1,"407":0,"408":295,"409":0,"410":0,"411":0,"412":0,"413":380,"414":1496,"415":-1,"416":244,"417":-1,"418":1474,"419":0,"420":0,"421":341,"422":128,"423":0,"424":87,"425":0,"426":332,"427":-1,"428":-1,"429":1502,"430":-1,"431":-1,"432":0,"433":0,"434":0,"435":-1,"436":57,"437":0,"438":0,"439":199,"440":5,"441":1317,"442":-1,"443":-1,"444":25,"445":-1,"446":101,"447":-1,"448":1563,"449":30,"450":-1,"451":-1,"452":0,"453":-1,"454":0,"455":0,"456":72,"457":0,"458":147,"459":0,"460":0,"461":0,"462":-1,"463":0,"464":-1,"465":-1,"466":0,"467":-1,"468":350,"469":0,"470":0,"471":0,"472":0,"473":0,"474":1584,"475":1349,"476":0,"477":0,"478":0,"479":152,"480":0,"481":-1,"482":0,"483":-1,"484":200,"485":71,"486":0,"487":1311,"488":298,"489":164,"490":238,"491":-1,"492":55,"493":0,"494":-1,"495":-1,"496":314,"497":-1,"498":0,"499":0,"500":0,"501":0,"502":-1,"503":0,"504":0,"505":0,"506":1345,"507":1529,"508":1298,"509":-1,"510":-1,"511":0,"512":0,"513":0,"514":-1,"515":-1,"516":249,"517":-1,"518":0,"519":0,"520":-1,"521":-1,"522":266,"523":-1,"524":1483,"525":0,"526":0,"527":0,"528":89,"529":0,"530":63,"531":0,"532":-1,"533":-1,"534":0,"535":-1,"536":0,"537":0,"538":0,"539":343,"540":1417,"541":347,"542":-1,"543":1384,"544":0,"545":0,"546":74,"547":0,"548":1427,"549":0,"550":0,"551":-1,"552":0,"553":0,"554":0,"555":0,"556":0,"557":1564,"558":360,"559":-1,"560":179,"561":-1,"562":-1,"563":-1,"564":0,"565":-1,"566":-1,"567":369,"568":-1,"569":103,"570":0,"571":243,"572":-1,"573":-1,"574":-1,"575":0,"576":0,"577":-1,"578":0,"579":-1,"580":169,"581":1319,"582":-1,"583":0,"584":-1,"585":-1,"586":33,"587":-1,"588":43,"589":101,"590":1535,"591":0,"592":0,"593":0,"594":0,"595":-1,"596":102,"597":381,"598":-1,"599":0,"600":1426,"601":-1,"602":-1,"603":0,"604":-1,"605":-1,"606":0,"607":-1,"608":0,"609":168,"610":0,"611":-1,"612":4,"613":1547,"614":-1,"615":-1,"616":0,"617":-1,"618":-1,"619":0,"620":0,"621":-1,"622":0,"623":-1,"624":1464,"625":0,"626":109,"627":-1,"628":-1,"629":1396,"630":-1,"631":-1,"632":0,"633":-1,"634":0,"635":0,"636":0,"637":-1,"638":0,"639":121,"640":-1,"641":-1,"642":0,"643":0,"644":-1,"645":1532,"646":0,"647":-1,"648":-1,"649":0,"650":-1,"651":0,"652":-1,"653":0,"654":211,"655":0,"656":0,"657":1352,"658":0,"659":0,"660":0,"661":0,"662":0,"663":1488,"664":330,"665":0,"666":0,"667":0,"668":-1,"669":0,"670":378,"671":1571,"672":-1,"673":1514,"674":-1,"675":0,"676":243,"677":1555,"678":1447,"679":-1,"680":-1,"681":-1,"682":-1,"683":0,"684":0,"685":0,"686":-1,"687":0,"688":-1,"689":-1,"690":-1,"691":32,"692":0,"693":0,"694":-1,"695":1338,"696":142,"697":268,"698":0,"699":64,"700":-1,"701":0,"702":0,"703":-1,"704":0,"705":-1,"706":1340,"707":1379,"708":1538,"709":0,"710":147,"711":-1,"712":-1,"713":1386,"714":0,"715":0,"716":192,"717":-1,"718":-1,"719":0,"720":-1,"721":1457,"722":1481,"723":261,"724":0,"725":0,"726":-1,"727":0,"728":338,"729":-1,"730":0,"731":0,"732":-1,"733":0,"734":0,"735":235,"736":0,"737":0,"738":-1,"739":-1,"740":0,"741":0,"742":0,"743":0,"744":1304,"745":0,"746":-1,"747":198,"748":-1,"749":-1,"750":-1,"751":0,"752":0,"753":-1,"754":0,"755":0,"756":-1,"757":-1,"758":283,"759":-1,"760":0,"761":0,"762":0,"763":28,"764":0,"765":-1,"766":-1,"767":-1,"768":1465,"769":-1,"770":0,"771":370,"772":-1,"773":0,"774":406,"775":0,"776":0,"777":0,"778":0,"779":1563,"780":0,"781":60,"782":0,"783":-1,"784":0,"785":0,"786":0,"787":-1,"788":0,"789":-1,"790":-1,"791":-1,"792":0,"793":-1,"794":1543,"795":-1,"796":1457,"797":298,"798":0,"799":369,"800":-1,"801":-1,"802":0,"803":-1,"804":1462,"805":0,"806":0,"807":0,"808":-1,"809":0,"810":1415,"811":-1,"812":97,"813":1418,"814":-1,"815":28,"816":0,"817":373,"818":0,"819":0,"820":27,"821":0,"822":-1,"823":1422,"824":0,"825":1511,"826":0,"827":-1,"828":0,"829":0,"830":1394,"831":1416,"832":0,"833":0,"834":0,"835":0,"836":0,"837":0,"838":-1,"839":0,"840":269,"841":-1,"842":0,"843":0,"844":58,"845":1412,"846":0,"847":-1,"848":0,"849":0,"850":16,"851":0,"852":299,"853":-1,"854":-1,"855":0,"856":0,"857":-1,"858":0,"859":0,"860":0,"861":0,"862":0,"863":145,"864":-1,"865":0,"866":278,"867":0,"868":1361,"869":0,"870":371,"871":323,"872":0,"873":0,"874":0,"875":-1,"876":0,"877":0,"878":0,"879":-1,"880":0,"881":1419,"882":0,"883":0,"884":-1,"885":0,"886":-1,"887":0,"888":-1,"889":0,"890":-1,"891":269,"892":64,"893":0,"894":1321,"895":-1,"896":271,"897":0,"898":0,"899":-1,"900":168,"901":0,"902":1316,"903":-1,"904":-1,"905":-1,"906":-1,"907":0,"908":1538,"909":-1,"910":1372,"911":0,"912":0,"913":0,"914":0,"915":0,"916":0,"917":1345,"918":0,"919":-1,"920":-1,"921":0,"922":-1,"923":0,"924":-1,"925":0,"926":21,"927":-1,"928":0,"929":192,"930":0,"931":0,"932":0,"933":0,"934":0,"935":-1,"936":-1,"937":0,"938":-1,"939":1380,"940":0,"941":267,"942":-1,"943":-1,"944":129,"945":0,"946":208,"947":0,"948":0,"949":0,"950":0,"951":-1,"952":1489,"953":0,"954":1469,"955":0,"956":-1,"957":-1,"958":385,"959":134,"960":1558,"961":0,"962":0,"963":0,"964":-1,"965":-1,"966":1401,"967":-1,"968":0,"969":0,"970":0,"971":0,"972":-1,"973":0,"974":-1,"975":-1,"976":0,"977":-1,"978":302,"979":0,"980":-1,"981":310,"982":-1,"983":-1,"984":0,"985":-1,"986":0,"987":-1,"988":1512,"989":0,"990":0,"991":-1,"992":1379,"993":1378,"994":-1,"995":0,"996":-1,"997":-1,"998":0,"999":0,"1000":0,"1001":0,"1002":-1,"1003":0,"1004":-1,"1005":0,"1006":1473,"1007":0,"1008":-1,"1009":1364,"1010":0,"1011":0,"1012":-1,"1013":0,"1014":-1,"1015":-1,"1016":-1,"1017":0,"1018":383,"1019":0,"1020":0,"1021":1566,"1022":0,"1023":0,"1024":-1,"1025":0,"1026":1511,"1027":-1,"1028":0,"1029":-1,"1030":0,"1031":-1,"1032":-1,"1033":-1,"1034":0,"1035":0,"1036":0,"1037":0,"1038":-1,"1039":-1,"1040":0,"1041":107,"1042":-1,"1043":-1,"1044":0,"1045":86,"1046":0,"1047":0,"1048":0,"1049":-1,"1050":0,"1051":0,"1052":0,"1053":0,"1054":0,"1055":-1,"1056":0,"1057":0,"1058":265,"1059":0,"1060":-1,"1061":0,"1062":-1,"1063":0,"1064":1543,"1065":0,"1066":-1,"1067":-1,"1068":0,"1069":1411,"1070":0,"1071":-1,"1072":0,"1073":-1,"1074":0,"1075":101,"1076":-1,"1077":-1,"1078":-1,"1079":267,"1080":0,"1081":0,"1082":0,"1083":0,"1084":0,"1085":-1,"1086":270,"1087":337,"1088":0,"1089":0,"1090":0,"1091":1463,"1092":-1,"1093":107,"1094":-1,"1095":140,"1096":1432,"1097":179,"1098":0,"1099":-1,"1100":-1,"1101":-1,"1102":225,"1103":0,"1104":0,"1105":62,"1106":-1,"1107":174,"1108":1388,"1109":-1,"1110":1539,"1111":-1,"1112":-1,"1113":0,"1114":0,"1115":312,"1116":1361,"1117":0,"1118":-1,"1119":-1,"1120":-1,"1121":1557,"1122":-1,"1123":0,"1124":378,"1125":-1,"1126":201,"1127":-1,"1128":0,"1129":-1,"1130":0,"1131":1582,"1132":-1,"1133":0,"1134":221,"1135":0,"1136":1465,"1137":-1,"1138":-1,"1139":0,"1140":1328,"1141":0,"1142":0,"1143":-1,"1144":0,"1145":0,"1146":0,"1147":0,"1148":154,"1149":0,"1150":1506,"1151":-1,"1152":0,"1153":-1,"1154":0,"1155":0,"1156":211,"1157":-1,"1158":-1,"1159":1490,"1160":0,"1161":0,"1162":0,"1163":-1,"1164":-1,"1165":-1,"1166":-1,"1167":1485,"1168":181,"1169":0,"1170":0,"1171":-1,"1172":1394,"1173":1312,"1174":-1,"1175":-1,"1176":-1,"1177":-1,"1178":0,"1179":0,"1180":0,"1181":0,"1182":-1,"1183":0,"1184":1548,"1185":0,"1186":0,"1187":0,"1188":1451,"1189":-1,"1190":-1,"1191":1543,"1192":0,"1193":-1,"1194":1483,"1195":-1,"1196":0,"1197":0,"1198":-1,"1199":0,"1200":1552,"1201":-1,"1202":165,"1203":190,"1204":-1,"1205":-1,"1206":0,"1207":1394,"1208":0,"1209":0,"1210":0,"1211":0,"1212":-1,"1213":0,"1214":-1,"1215":1336,"1216":0,"1217":-1,"1218":-1,"1219":0,"1220":0,"1221":285,"1222":0,"1223":0,"1224":0,"1225":-1,"1226":-1,"1227":0,"1228":1330,"1229":0,"1230":-1,"1231":-1,"1232":-1,"1233":0,"1234":0,"1235":0,"1236":286,"1237":0,"1238":1455,"1239":1445,"1240":-1,"1241":269,"1242":-1,"1243":0,"1244":1511,"1245":0,"1246":94,"1247":1387,"1248":-1,"1249":0,"1250":70,"1251":221,"1252":-1,"1253":1504,"1254":1417,"1255":-1,"1256":-1,"1257":0,"1258":0,"1259":0,"1260":0,"1261":0,"1262":0,"1263":0,"1264":27,"1265":0,"1266":0,"1267":0,"1268":-1,"1269":-1,"1270":-1,"1271":-1,"1272":-1,"1273":-1,"1274":0,"1275":1388,"1276":0,"1277":0,"1278":0,"1279":0,"1280":0,"1281":86,"1282":0,"1283":1386,"1284":0,"1285":-1,"1286":1572,"1287":47,"1288":0,"1289":1567,"1290":-1,"1291":-1,"1292":0,"1293":16,"1294":0,"1295":-1,"1296":-1,"1297":0,"1298":97,"1299":0,"1300":-1,"1301":429,"1302":0,"1303":0,"1304":0,"1305":-1,"1306":-1,"1307":0,"1308":-1,"1309":-1,"1310":0,"1311":0,"1312":1510,"1313":188,"1314":1468,"1315":-1,"1316":-1,"1317":0,"1318":0,"1319":0,"1320":0,"1321":-1,"1322":-1,"1323":273,"1324":57,"1325":0,"1326":-1,"1327":-1,"1328":0,"1329":-1,"1330":1395,"1331":-1,"1332":-1,"1333":0,"1334":0,"1335":29,"1336":1320,"1337":-1,"1338":0,"1339":0,"1340":-1,"1341":0,"1342":322,"1343":0,"1344":-1,"1345":-1,"1346":1316,"1347":0,"1348":76,"1349":0,"1350":1421,"1351":-1,"1352":267,"1353":1361,"1354":1574,"1355":0,"1356":-1,"1357":0,"1358":0,"1359":0,"1360":0,"1361":0,"1362":-1,"1363":0,"1364":197,"1365":-1,"1366":-1,"1367":1530,"1368":1469,"1369":-1,"1370":0,"1371":0,"1372":-1,"1373":0,"1374":50,"1375":63,"1376":-1,"1377":-1,"1378":1570,"1379":37,"1380":67,"1381":-1,"1382":-1,"1383":0,"1384":1511,"1385":0,"1386":0,"1387":1565,"1388":-1,"1389":0,"1390":0,"1391":-1,"1392":-1,"1393":-1,"1394":-1,"1395":-1,"1396":0,"1397":0,"1398":0,"1399":0,"1400":0,"1401":-1,"1402":1377,"1403":0,"1404":0,"1405":98,"1406":0,"1407":0,"1408":0,"1409":0,"1410":1392,"1411":0,"1412":169,"1413":0,"1414":1320,"1415":0,"1416":0,"1417":-1,"1418":-1,"1419":307,"1420":-1,"1421":0,"1422":1544,"1423":0,"1424":-1,"1425":1447,"1426":0,"1427":0,"1428":-1,"1429":-1,"1430":1436,"1431":1503,"1432":-1,"1433":-1,"1434":0,"1435":0,"1436":-1,"1437":0,"1438":0,"1439":350,"1440":1423,"1441":0,"1442":0,"1443":0,"1444":25,"1445":0,"1446":1382,"1447":-1,"1448":-1,"1449":0,"1450":-1,"1451":17,"1452":1412,"1453":0,"1454":0,"1455":0,"1456":-1,"1457":1424,"1458":324,"1459":0,"1460":-1,"1461":0,"1462":0,"1463":7,"1464":0,"1465":-1,"1466":1405,"1467":0,"1468":-1,"1469":-1,"1470":0,"1471":0,"1472":-1,"1473":1478,"1474":0,"1475":0,"1476":-1,"1477":0,"1478":0,"1479":0,"1480":0,"1481":0,"1482":-1,"1483":0,"1484":-1,"1485":1378,"1486":57,"1487":0,"1488":0,"1489":-1,"1490":0,"1491":0,"1492":0,"1493":0,"1494":-1,"1495":-1,"1496":-1,"1497":1412,"1498":-1,"1499":0,"1500":1481,"1501":-1,"1502":1312,"1503":-1,"1504":-1,"1505":0,"1506":0,"1507":0,"1508":1378,"1509":0,"1510":0,"1511":-1,"1512":1514,"1513":163,"1514":-1,"1515":1458,"1516":0,"1517":0,"1518":1441,"1519":1383,"1520":0,"1521":1433,"1522":109,"1523":0,"1524":1421,"1525":0,"1526":-1,"1527":-1,"1528":0,"1529":-1,"1530":0,"1531":-1,"1532":-1,"1533":0,"1534":1391,"1535":-1,"1536":0,"1537":0,"1538":1513,"1539":-1,"1540":222,"1541":86,"1542":0,"1543":0,"1544":0,"1545":-1,"1546":0,"1547":92,"1548":-1,"1549":27,"1550":-1,"1551":0,"1552":1558,"1553":0,"1554":0,"1555":-1,"1556":155,"1557":0,"1558":0,"1559":-1,"1560":22,"1561":-1,"1562":19,"1563":0,"1564":-1,"1565":1554,"1566":1468,"1567":0,"1568":-1,"1569":1437,"1570":32,"1571":406,"1572":-1,"1573":1481,"1574":366,"1575":-1,"1576":0,"1577":-1,"1578":0,"1579":1561,"1580":0,"1581":-1,"1582":1420,"1583":0,"1584":-1,"1585":0,"1586":0,"1587":-1,"1588":0,"1589":-1,"1590":0,"1591":0,"1592":0,"1593":0,"1594":-1,"1595":0,"1596":-1,"1597":0,"1598":-1,"1599":0,"1600":-1,"1601":-1,"1602":0,"1603":0,"1604":0,"1605":0,"1606":1543,"1607":0,"1608":1409,"1609":109,"1610":-1,"1611":-1,"1612":-1,"1613":0,"1614":1429,"1615":-1,"1616":35,"1617":-1,"1618":-1,"1619":-1,"1620":-1,"1621":-1,"1622":-1,"1623":-1,"1624":0,"1625":0,"1626":0,"1627":0,"1628":237,"1629":-1,"1630":0,"1631":0,"1632":-1,"1633":0,"1634":-1,"1635":0,"1636":-1,"1637":-1,"1638":0,"1639":0,"1640":1477,"1641":1542,"1642":1357,"1643":0,"1644":-1,"1645":0,"1646":0,"1647":3,"1648":-1,"1649":1560,"1650":0,"1651":0,"1652":0,"1653":-1,"1654":-1,"1655":0,"1656":0,"1657":0,"1658":0,"1659":0,"1660":-1,"1661":-1,"1662":0,"1663":303,"1664":1536,"1665":-1,"1666":0,"1667":0,"1668":38,"1669":0,"1670":-1,"1671":0,"1672":0,"1673":140,"1674":0,"1675":0,"1676":0,"1677":1417,"1678":-1,"1679":473,"1680":0,"1681":0,"1682":1456,"1683":1384,"1684":-1,"1685":0,"1686":0,"1687":-1,"1688":-1,"1689":-1,"1690":0,"1691":0,"1692":85,"1693":0,"1694":-1,"1695":-1,"1696":0,"1697":-1,"1698":-1,"1699":1311,"1700":-1,"1701":-1,"1702":267,"1703":1559,"1704":0,"1705":288,"1706":0,"1707":0,"1708":-1,"1709":0,"1710":0,"1711":264,"1712":0,"1713":0,"1714":1363,"1715":-1,"1716":0,"1717":-1,"1718":0,"1719":0,"1720":0,"1721":0,"1722":1408,"1723":0,"1724":0,"1725":0,"1726":0,"1727":273,"1728":1403,"1729":0,"1730":0,"1731":1346,"1732":1445,"1733":384,"1734":1527,"1735":116,"1736":1554,"1737":0,"1738":-1,"1739":0,"1740":0,"1741":0,"1742":-1,"1743":-1,"1744":0,"1745":1574,"1746":0,"1747":198,"1748":1569,"1749":0,"1750":0,"1751":0,"1752":0,"1753":1554,"1754":0,"1755":0,"1756":0,"1757":0,"1758":0,"1759":0,"1760":1482,"1761":-1,"1762":0,"1763":0,"1764":-1,"1765":20,"1766":0,"1767":1300,"1768":-1,"1769":0,"1770":-1,"1771":1342,"1772":-1,"1773":1339,"1774":0,"1775":0,"1776":1585,"1777":1556,"1778":1377,"1779":-1,"1780":0,"1781":-1,"1782":-1,"1783":7,"1784":-1,"1785":302,"1786":-1,"1787":0,"1788":0,"1789":32,"1790":0,"1791":1473,"1792":-1,"1793":-1,"1794":-1,"1795":0,"1796":0,"1797":109,"1798":352,"1799":0,"1800":312,"1801":-1,"1802":0,"1803":-1,"1804":1363,"1805":0,"1806":0,"1807":0,"1808":58,"1809":-1,"1810":0,"1811":1309,"1812":66,"1813":371,"1814":1574,"1815":47,"1816":-1,"1817":0,"1818":-1,"1819":0,"1820":0,"1821":-1,"1822":0,"1823":26,"1824":-1,"1825":-1,"1826":-1,"1827":-1,"1828":0,"1829":106,"1830":-1,"1831":0,"1832":0,"1833":0,"1834":-1,"1835":-1,"1836":0,"1837":0,"1838":-1,"1839":0,"1840":-1,"1841":0,"1842":0,"1843":0,"1844":0,"1845":0,"1846":0,"1847":-1,"1848":-1,"1849":0,"1850":0,"1851":0,"1852":-1,"1853":0,"1854":0,"1855":0,"1856":0,"1857":-1,"1858":0,"1859":-1,"1860":1535,"1861":0,"1862":9,"1863":0,"1864":0,"1865":-1,"1866":1364,"1867":0,"1868":0,"1869":1569,"1870":0,"1871":0,"1872":1511,"1873":35,"1874":0,"1875":0,"1876":0,"1877":1375,"1878":-1,"1879":1430,"1880":0,"1881":1575,"1882":-1,"1883":0,"1884":1553,"1885":257,"1886":0,"1887":-1,"1888":-1,"1889":0,"1890":0,"1891":0,"1892":0,"1893":-1,"1894":0,"1895":0,"1896":0,"1897":1582,"1898":1527,"1899":-1,"1900":127,"1901":0,"1902":368,"1903":1429,"1904":-1,"1905":-1,"1906":0,"1907":-1,"1908":-1,"1909":0,"1910":0,"1911":67,"1912":0,"1913":1476,"1914":302,"1915":-1,"1916":0,"1917":0,"1918":0,"1919":160,"1920":-1,"1921":0,"1922":0,"1923":-1,"1924":0,"1925":0,"1926":248,"1927":-1,"1928":0,"1929":0,"1930":1551,"1931":0,"1932":76,"1933":1372,"1934":0,"1935":0,"1936":-1,"1937":1467,"1938":232,"1939":-1,"1940":0,"1941":0,"1942":-1,"1943":-1,"1944":-1,"1945":0,"1946":0,"1947":322,"1948":0,"1949":1540,"1950":0,"1951":0,"1952":1540,"1953":0,"1954":-1,"1955":0,"1956":-1,"1957":-1,"1958":132,"1959":-1,"1960":0,"1961":0,"1962":-1,"1963":225,"1964":142,"1965":0,"1966":0,"1967":0,"1968":0,"1969":-1,"1970":0,"1971":-1,"1972":0,"1973":1421,"1974":1575,"1975":0,"1976":0,"1977":1393,"1978":-1,"1979":0,"1980":0,"1981":0,"1982":-1,"1983":45,"1984":-1,"1985":-1,"1986":0,"1987":-1,"1988":0,"1989":0,"1990":-1,"1991":0,"1992":0,"1993":0,"1994":0,"1995":-1,"1996":0,"1997":0,"1998":-1,"1999":1497,"2000":-1,"2001":0,"2002":0,"2003":0,"2004":0,"2005":0,"2006":-1,"2007":0,"2008":14,"2009":1438,"2010":0,"2011":1407,"2012":93,"2013":166,"2014":1307,"2015":-1,"2016":0,"2017":0,"2018":0,"2019":0,"2020":0,"2021":0,"2022":-1,"2023":0,"2024":0,"2025":1547,"2026":0,"2027":1560,"2028":-1,"2029":22,"2030":194,"2031":-1,"2032":1345,"2033":0,"2034":0,"2035":213,"2036":0,"2037":0,"2038":0,"2039":0,"2040":-1,"2041":0,"2042":-1,"2043":13,"2044":-1,"2045":0,"2046":0,"2047":0,"2048":-1,"2049":0,"2050":-1,"2051":1370,"2052":0,"2053":0,"2054":-1,"2055":0,"2056":1424,"2057":0,"2058":-1,"2059":-1,"2060":0,"2061":0,"2062":0,"2063":0,"2064":-1,"2065":0,"2066":0,"2067":-1,"2068":0,"2069":-1,"2070":0,"2071":0,"2072":63,"2073":-1,"2074":75,"2075":0,"2076":-1,"2077":-1,"2078":0,"2079":313,"2080":-1,"2081":1457,"2082":0,"2083":0,"2084":0,"2085":48,"2086":0,"2087":-1,"2088":0,"2089":57,"2090":-1,"2091":-1,"2092":343,"2093":0,"2094":0,"2095":1435,"2096":0,"2097":0,"2098":1305,"2099":1552,"2100":0,"2101":-1,"2102":0,"2103":0,"2104":-1,"2105":0,"2106":0,"2107":-1,"2108":1502,"2109":-1,"2110":-1,"2111":0,"2112":23,"2113":-1,"2114":0,"2115":0,"2116":-1,"2117":-1,"2118":279,"2119":0,"2120":380,"2121":1342,"2122":-1,"2123":1410,"2124":0,"2125":0,"2126":-1,"2127":1482,"2128":0,"2129":-1,"2130":1409,"2131":0,"2132":365,"2133":0,"2134":0,"2135":342,"2136":0,"2137":0,"2138":0,"2139":0,"2140":0,"2141":0,"2142":0,"2143":0,"2144":-1,"2145":0,"2146":-1,"2147":-1,"2148":0,"2149":0,"2150":1436,"2151":0,"2152":0,"2153":0,"2154":1550,"2155":0,"2156":-1,"2157":0,"2158":0,"2159":0,"2160":-1,"2161":0,"2162":45,"2163":-1,"2164":0,"2165":1415,"2166":317,"2167":1421,"2168":357,"2169":0,"2170":-1,"2171":0,"2172":0,"2173":-1,"2174":24,"2175":1575,"2176":0,"2177":-1,"2178":0,"2179":0,"2180":1463,"2181":-1,"2182":-1,"2183":0,"2184":0,"2185":-1,"2186":-1,"2187":1305,"2188":-1,"2189":-1,"2190":-1,"2191":0,"2192":0,"2193":-1,"2194":329,"2195":-1,"2196":-1,"2197":-1,"2198":0,"2199":1431,"2200":0,"2201":-1,"2202":0,"2203":0,"2204":1311,"2205":-1,"2206":0,"2207":4,"2208":0,"2209":-1,"2210":23,"2211":0,"2212":0,"2213":1434,"2214":1406,"2215":-1,"2216":0,"2217":324,"2218":0,"2219":0,"2220":1556,"2221":0,"2222":-1,"2223":1377,"2224":0,"2225":0,"2226":0,"2227":76,"2228":0,"2229":-1,"2230":42,"2231":0,"2232":1492,"2233":102,"2234":-1,"2235":0,"2236":-1,"2237":1546,"2238":-1,"2239":-1,"2240":-1,"2241":0,"2242":-1,"2243":1303,"2244":1583,"2245":42,"2246":56,"2247":0,"2248":1523,"2249":237,"2250":0,"2251":-1,"2252":0,"2253":-1,"2254":0,"2255":0,"2256":0,"2257":0,"2258":-1,"2259":1442,"2260":-1,"2261":1470,"2262":203,"2263":-1,"2264":1502,"2265":1462,"2266":0,"2267":0,"2268":0,"2269":-1,"2270":-1,"2271":0,"2272":0,"2273":0,"2274":-1,"2275":92,"2276":0,"2277":0,"2278":-1,"2279":304,"2280":-1,"2281":160,"2282":1546,"2283":0,"2284":1518,"2285":-1,"2286":0,"2287":1465,"2288":305,"2289":0,"2290":1478,"2291":0,"2292":0,"2293":-1,"2294":-1,"2295":0,"2296":0,"2297":-1,"2298":0,"2299":0,"2300":-1,"2301":-1,"2302":-1,"2303":0,"2304":473,"2305":0,"2306":0,"2307":-1,"2308":5,"2309":0,"2310":136,"2311":301,"2312":1385,"2313":-1,"2314":0,"2315":-1,"2316":0,"2317":-1,"2318":0,"2319":473,"2320":-1,"2321":1477,"2322":0,"2323":0,"2324":1325,"2325":1343,"2326":1302,"2327":1375,"2328":1552,"2329":-1,"2330":0,"2331":0,"2332":0,"2333":-1,"2334":0,"2335":179,"2336":-1,"2337":0,"2338":1339,"2339":371,"2340":0,"2341":-1,"2342":0,"2343":1555,"2344":142,"2345":0,"2346":0,"2347":348,"2348":0,"2349":1534,"2350":-1,"2351":-1,"2352":96,"2353":-1,"2354":343,"2355":25,"2356":-1,"2357":-1,"2358":0,"2359":30,"2360":0,"2361":1462,"2362":-1,"2363":-1,"2364":0,"2365":0,"2366":1407,"2367":0,"2368":0,"2369":0,"2370":1562,"2371":1307,"2372":0,"2373":234,"2374":-1,"2375":0,"2376":0,"2377":-1,"2378":0,"2379":-1,"2380":0,"2381":271,"2382":-1,"2383":473,"2384":0,"2385":0,"2386":0,"2387":-1,"2388":-1,"2389":-1,"2390":371,"2391":0,"2392":0,"2393":0,"2394":0,"2395":1391,"2396":1371,"2397":1576,"2398":-1,"2399":0,"2400":-1,"2401":65,"2402":1538,"2403":1399,"2404":94,"2405":0,"2406":57,"2407":0,"2408":1477,"2409":0,"2410":48,"2411":0,"2412":-1,"2413":-1,"2414":0,"2415":0,"2416":-1,"2417":-1,"2418":1486,"2419":0,"2420":0,"2421":-1,"2422":0,"2423":46,"2424":-1,"2425":0,"2426":-1,"2427":-1,"2428":-1,"2429":-1,"2430":328,"2431":-1,"2432":-1,"2433":0,"2434":0,"2435":0,"2436":1454,"2437":1508,"2438":-1,"2439":-1,"2440":180,"2441":1441,"2442":0,"2443":-1,"2444":0,"2445":0,"2446":-1,"2447":0,"2448":-1,"2449":0,"2450":1519,"2451":1533,"2452":-1,"2453":0,"2454":0,"2455":-1,"2456":0,"2457":158,"2458":0,"2459":1409,"2460":287,"2461":42,"2462":1455,"2463":-1,"2464":0,"2465":1579,"2466":0,"2467":0,"2468":-1,"2469":150,"2470":211,"2471":103,"2472":-1,"2473":0,"2474":0,"2475":-1,"2476":170,"2477":-1,"2478":1476,"2479":0,"2480":0,"2481":0,"2482":-1,"2483":-1,"2484":-1,"2485":0,"2486":1407,"2487":0,"2488":0,"2489":360,"2490":39,"2491":1539,"2492":-1,"2493":0,"2494":0,"2495":0,"2496":0,"2497":1333,"2498":0,"2499":-1,"2500":-1,"2501":0,"2502":-1,"2503":-1,"2504":1299,"2505":0,"2506":331,"2507":20,"2508":-1,"2509":1348,"2510":1433,"2511":0,"2512":186,"2513":-1,"2514":1476,"2515":0,"2516":196,"2517":-1,"2518":-1,"2519":1423,"2520":0,"2521":-1,"2522":-1,"2523":174,"2524":-1,"2525":0,"2526":0,"2527":0,"2528":-1,"2529":-1,"2530":1426,"2531":87,"2532":1462,"2533":0,"2534":-1,"2535":-1,"2536":-1,"2537":0,"2538":1369,"2539":-1,"2540":-1,"2541":0,"2542":0,"2543":0,"2544":-1,"2545":-1,"2546":31,"2547":-1,"2548":0,"2549":0,"2550":0,"2551":0,"2552":201,"2553":190,"2554":0,"2555":25,"2556":0,"2557":0,"2558":0,"2559":14,"2560":0,"2561":1330,"2562":0,"2563":29,"2564":0,"2565":-1,"2566":-1,"2567":1464,"2568":0,"2569":-1,"2570":-1,"2571":0,"2572":1341,"2573":0,"2574":0,"2575":1314,"2576":0,"2577":0,"2578":0,"2579":322,"2580":0,"2581":-1,"2582":0,"2583":-1,"2584":-1,"2585":106,"2586":1481,"2587":0,"2588":1414,"2589":313,"2590":0,"2591":0,"2592":62,"2593":0,"2594":61,"2595":1305,"2596":0,"2597":0,"2598":200,"2599":0,"2600":1425,"2601":-1,"2602":173,"2603":1421,"2604":0,"2605":119,"2606":-1,"2607":0,"2608":1433,"2609":323,"2610":-1,"2611":-1,"2612":0,"2613":0,"2614":-1,"2615":0,"2616":-1,"2617":-1,"2618":-1,"2619":0,"2620":-1,"2621":-1,"2622":0,"2623":0,"2624":0,"2625":0,"2626":0,"2627":-1,"2628":55,"2629":0,"2630":1549,"2631":-1,"2632":0,"2633":0,"2634":1335,"2635":-1,"2636":-1,"2637":0,"2638":-1,"2639":-1,"2640":1366,"2641":-1,"2642":1550,"2643":0,"2644":-1,"2645":0,"2646":1378,"2647":1432,"2648":10,"2649":1570,"2650":0,"2651":1552,"2652":-1,"2653":0,"2654":1538,"2655":-1,"2656":243,"2657":-1,"2658":-1,"2659":0,"2660":-1,"2661":1352,"2662":0,"2663":0,"2664":-1,"2665":0,"2666":81,"2667":0,"2668":-1,"2669":0,"2670":-1,"2671":0,"2672":473,"2673":-1,"2674":-1,"2675":0,"2676":1431,"2677":-1,"2678":259,"2679":1361,"2680":0,"2681":1389,"2682":1541,"2683":-1,"2684":-1,"2685":-1,"2686":0,"2687":0,"2688":1343,"2689":0,"2690":-1,"2691":0,"2692":0,"2693":-1,"2694":0,"2695":0,"2696":165,"2697":22,"2698":0,"2699":-1,"2700":1506,"2701":0,"2702":1460,"2703":-1,"2704":0,"2705":0,"2706":16,"2707":0,"2708":0,"2709":0,"2710":-1,"2711":0,"2712":1417,"2713":1555,"2714":283,"2715":0,"2716":0,"2717":0,"2718":-1,"2719":-1,"2720":-1,"2721":0,"2722":0,"2723":7,"2724":0,"2725":0,"2726":0,"2727":-1,"2728":1363,"2729":85,"2730":1405,"2731":-1,"2732":0,"2733":39,"2734":-1,"2735":0,"2736":310,"2737":1452,"2738":-1,"2739":97,"2740":1487,"2741":1420,"2742":0,"2743":27,"2744":329,"2745":-1,"2746":0,"2747":1433,"2748":1483,"2749":-1,"2750":-1,"2751":-1,"2752":155,"2753":168,"2754":-1,"2755":-1,"2756":0,"2757":60,"2758":0,"2759":0,"2760":-1,"2761":301,"2762":0,"2763":0,"2764":-1,"2765":0,"2766":1520,"2767":-1,"2768":0,"2769":0,"2770":1413,"2771":-1,"2772":1390,"2773":215,"2774":0,"2775":0,"2776":0,"2777":-1,"2778":0,"2779":-1,"2780":83,"2781":0,"2782":-1,"2783":0,"2784":-1,"2785":0,"2786":1303,"2787":246,"2788":-1,"2789":0,"2790":-1,"2791":1471,"2792":-1,"2793":0,"2794":0,"2795":0,"2796":0,"2797":-1,"2798":155,"2799":-1,"2800":1403,"2801":0,"2802":-1,"2803":164,"2804":-1,"2805":0,"2806":-1,"2807":-1,"2808":-1,"2809":0,"2810":0,"2811":-1,"2812":1496,"2813":352,"2814":-1,"2815":348,"2816":0,"2817":-1,"2818":50,"2819":-1,"2820":1298,"2821":1411,"2822":-1,"2823":0,"2824":-1,"2825":-1,"2826":1463,"2827":1455,"2828":1579,"2829":0,"2830":-1,"2831":-1,"2832":-1,"2833":0,"2834":1476,"2835":328,"2836":1537,"2837":0,"2838":1427,"2839":-1,"2840":-1,"2841":-1,"2842":217,"2843":63,"2844":-1,"2845":0,"2846":0,"2847":0,"2848":1573,"2849":-1,"2850":-1,"2851":0,"2852":-1,"2853":1451,"2854":0,"2855":0,"2856":-1,"2857":-1,"2858":-1,"2859":0,"2860":0,"2861":0,"2862":0,"2863":0,"2864":0,"2865":0,"2866":-1,"2867":-1,"2868":0,"2869":-1,"2870":365,"2871":1520,"2872":0,"2873":0,"2874":125,"2875":0,"2876":1334,"2877":0,"2878":268,"2879":-1,"2880":-1,"2881":0,"2882":305,"2883":0,"2884":0,"2885":-1,"2886":298,"2887":152,"2888":0,"2889":-1,"2890":-1,"2891":308,"2892":0,"2893":-1,"2894":0,"2895":-1,"2896":0,"2897":-1,"2898":-1,"2899":-1,"2900":-1,"2901":-1,"2902":-1,"2903":0,"2904":1393,"2905":0,"2906":-1,"2907":-1,"2908":1394,"2909":-1,"2910":1428,"2911":-1,"2912":0,"2913":0,"2914":0,"2915":0,"2916":0,"2917":-1,"2918":278,"2919":0,"2920":1306,"2921":1419,"2922":0,"2923":0,"2924":0,"2925":0,"2926":1381,"2927":-1,"2928":1382,"2929":1441,"2930":0,"2931":0,"2932":0,"2933":0,"2934":92,"2935":-1,"2936":1311,"2937":0,"2938":0,"2939":148,"2940":1410,"2941":1428,"2942":0,"2943":-1,"2944":0,"2945":0,"2946":-1,"2947":0,"2948":65,"2949":0,"2950":0,"2951":365,"2952":0,"2953":0,"2954":-1,"2955":0,"2956":1385,"2957":0,"2958":0,"2959":0,"2960":-1,"2961":384,"2962":0,"2963":-1,"2964":30,"2965":-1,"2966":-1,"2967":0,"2968":328,"2969":0,"2970":217,"2971":0,"2972":336,"2973":158,"2974":0,"2975":265,"2976":0,"2977":-1,"2978":0,"2979":0,"2980":-1,"2981":0,"2982":182,"2983":0,"2984":0,"2985":-1,"2986":1390,"2987":-1,"2988":1495,"2989":0,"2990":1527,"2991":0,"2992":1462,"2993":-1,"2994":9,"2995":0,"2996":-1,"2997":246,"2998":0,"2999":1525,"3000":0,"3001":295,"3002":0,"3003":-1,"3004":0,"3005":0,"3006":0,"3007":-1,"3008":0,"3009":-1,"3010":0,"3011":0,"3012":1314,"3013":0,"3014":-1,"3015":-1,"3016":176,"3017":-1,"3018":0,"3019":52,"3020":0,"3021":-1,"3022":-1,"3023":188,"3024":-1,"3025":-1,"3026":0,"3027":-1,"3028":0,"3029":-1,"3030":-1,"3031":1391,"3032":1312,"3033":-1,"3034":-1,"3035":-1,"3036":199,"3037":-1,"3038":0,"3039":-1,"3040":-1,"3041":0,"3042":0,"3043":0,"3044":0,"3045":1472,"3046":181,"3047":0,"3048":-1,"3049":-1,"3050":0,"3051":72,"3052":-1,"3053":-1,"3054":236,"3055":17,"3056":0,"3057":0,"3058":-1,"3059":239,"3060":-1,"3061":93,"3062":274,"3063":1485,"3064":-1,"3065":1339,"3066":1470,"3067":0,"3068":0,"3069":0,"3070":220,"3071":0,"3072":0,"3073":0,"3074":0,"3075":0,"3076":-1,"3077":-1,"3078":-1,"3079":0,"3080":-1,"3081":-1,"3082":0,"3083":-1,"3084":254,"3085":0,"3086":0,"3087":-1,"3088":0,"3089":41,"3090":0,"3091":1522,"3092":0,"3093":1542,"3094":-1,"3095":0,"3096":-1,"3097":-1,"3098":0,"3099":0,"3100":-1,"3101":331,"3102":0,"3103":0,"3104":-1,"3105":-1,"3106":-1,"3107":0,"3108":-1,"3109":0,"3110":1525,"3111":0,"3112":0,"3113":-1,"3114":-1,"3115":366,"3116":1426,"3117":0,"3118":-1,"3119":0,"3120":1452,"3121":-1,"3122":1368,"3123":-1,"3124":0,"3125":13,"3126":0,"3127":1308,"3128":-1,"3129":0,"3130":23,"3131":-1,"3132":0,"3133":0,"3134":1419,"3135":207,"3136":-1,"3137":-1,"3138":7,"3139":48,"3140":0,"3141":0,"3142":-1,"3143":-1,"3144":291,"3145":0,"3146":1555,"3147":0,"3148":-1,"3149":0,"3150":-1,"3151":-1,"3152":0,"3153":1537,"3154":0,"3155":-1,"3156":-1,"3157":-1,"3158":-1,"3159":0,"3160":1444,"3161":-1,"3162":0,"3163":0,"3164":10,"3165":0,"3166":154,"3167":-1,"3168":0,"3169":1428,"3170":-1,"3171":-1,"3172":0,"3173":-1,"3174":303,"3175":0,"3176":0,"3177":-1,"3178":63,"3179":338,"3180":-1,"3181":0,"3182":36,"3183":0,"3184":0,"3185":-1,"3186":0,"3187":334,"3188":0,"3189":0,"3190":0,"3191":-1,"3192":0,"3193":0,"3194":0,"3195":-1,"3196":-1,"3197":-1,"3198":0,"3199":239,"3200":0,"3201":-1,"3202":1490,"3203":-1,"3204":285,"3205":-1,"3206":0,"3207":-1,"3208":-1,"3209":0,"3210":1309,"3211":0,"3212":-1,"3213":0,"3214":12,"3215":0,"3216":-1,"3217":1329,"3218":0,"3219":-1,"3220":0,"3221":0,"3222":-1,"3223":0,"3224":310,"3225":0,"3226":-1,"3227":132,"3228":1573,"3229":1443,"3230":234,"3231":-1,"3232":-1,"3233":-1,"3234":0,"3235":0,"3236":0,"3237":16,"3238":0,"3239":-1,"3240":6,"3241":331,"3242":131,"3243":-1,"3244":1422,"3245":-1,"3246":6,"3247":0,"3248":0,"3249":-1,"3250":215,"3251":0,"3252":0,"3253":261,"3254":-1,"3255":0,"3256":1486,"3257":-1,"3258":338,"3259":0,"3260":0,"3261":-1,"3262":-1,"3263":-1,"3264":0,"3265":1390,"3266":329,"3267":0,"3268":0,"3269":-1,"3270":0,"3271":0,"3272":0,"3273":324,"3274":-1,"3275":-1,"3276":-1,"3277":0,"3278":0,"3279":0,"3280":0,"3281":0,"3282":0,"3283":0,"3284":0,"3285":0,"3286":0,"3287":0,"3288":0,"3289":362,"3290":-1,"3291":308,"3292":-1,"3293":0,"3294":0,"3295":0,"3296":-1,"3297":-1,"3298":-1,"3299":-1,"3300":-1,"3301":-1,"3302":0,"3303":1347,"3304":1465,"3305":0,"3306":0,"3307":-1,"3308":-1,"3309":0,"3310":1366,"3311":0,"3312":32,"3313":0,"3314":0,"3315":0,"3316":1371,"3317":0,"3318":0,"3319":359,"3320":0,"3321":85,"3322":0,"3323":1525,"3324":1509,"3325":268,"3326":0,"3327":-1,"3328":168,"3329":0,"3330":0,"3331":-1,"3332":1473,"3333":10,"3334":1432,"3335":0,"3336":0,"3337":1417,"3338":-1,"3339":-1,"3340":0,"3341":-1,"3342":-1,"3343":132,"3344":-1,"3345":0,"3346":-1,"3347":0,"3348":-1,"3349":-1,"3350":0,"3351":157,"3352":-1,"3353":-1,"3354":0,"3355":-1,"3356":1381,"3357":0,"3358":1390,"3359":302,"3360":-1,"3361":-1,"3362":0,"3363":42,"3364":-1,"3365":-1,"3366":0,"3367":384,"3368":10,"3369":-1,"3370":1361,"3371":-1,"3372":0,"3373":1383,"3374":1578,"3375":-1,"3376":1437,"3377":0,"3378":0,"3379":6,"3380":1401,"3381":-1,"3382":1394,"3383":-1,"3384":-1,"3385":-1,"3386":102,"3387":438,"3388":-1,"3389":-1,"3390":-1,"3391":1345,"3392":-1,"3393":-1,"3394":0,"3395":-1,"3396":0,"3397":1413,"3398":0,"3399":1391,"3400":0,"3401":0,"3402":-1,"3403":-1,"3404":0,"3405":-1,"3406":0,"3407":-1,"3408":0,"3409":0,"3410":-1,"3411":0,"3412":-1,"3413":0,"3414":0,"3415":-1,"3416":-1,"3417":-1,"3418":0,"3419":0,"3420":-1,"3421":-1,"3422":0,"3423":1378,"3424":0,"3425":-1,"3426":-1,"3427":-1,"3428":381,"3429":-1,"3430":-1,"3431":0,"3432":0,"3433":0,"3434":-1,"3435":1452,"3436":-1,"3437":-1,"3438":0,"3439":-1,"3440":0,"3441":1525,"3442":30,"3443":0,"3444":0,"3445":1396,"3446":0,"3447":-1,"3448":0,"3449":0,"3450":0,"3451":0,"3452":357,"3453":0,"3454":0,"3455":0,"3456":1437,"3457":1555,"3458":1336,"3459":0,"3460":149,"3461":0,"3462":-1,"3463":0,"3464":-1,"3465":0,"3466":0,"3467":0,"3468":0,"3469":0,"3470":0,"3471":0,"3472":0,"3473":1521,"3474":0,"3475":0,"3476":0,"3477":-1,"3478":0,"3479":1562,"3480":-1,"3481":-1,"3482":1548,"3483":0,"3484":-1,"3485":0,"3486":-1,"3487":-1,"3488":0,"3489":-1,"3490":123,"3491":-1,"3492":-1,"3493":1514,"3494":0,"3495":0,"3496":-1,"3497":-1,"3498":-1,"3499":0,"3500":0,"3501":-1,"3502":0,"3503":0,"3504":202,"3505":0,"3506":0,"3507":0,"3508":-1,"3509":-1,"3510":-1,"3511":0,"3512":0,"3513":0,"3514":278,"3515":0,"3516":1536,"3517":-1,"3518":-1,"3519":429,"3520":43,"3521":1330,"3522":0,"3523":-1,"3524":0,"3525":1577,"3526":252,"3527":0,"3528":0,"3529":0,"3530":0,"3531":0,"3532":-1,"3533":0,"3534":1466,"3535":0,"3536":-1,"3537":0,"3538":-1,"3539":0,"3540":1501,"3541":0,"3542":0,"3543":0,"3544":0,"3545":-1,"3546":0,"3547":1429,"3548":-1,"3549":1459,"3550":0,"3551":314,"3552":338,"3553":97,"3554":27,"3555":0,"3556":-1,"3557":0,"3558":-1,"3559":1407,"3560":1549,"3561":0,"3562":0,"3563":-1,"3564":1575,"3565":0,"3566":0,"3567":0,"3568":-1,"3569":0,"3570":-1,"3571":-1,"3572":-1,"3573":-1,"3574":0,"3575":1351,"3576":-1,"3577":133,"3578":-1,"3579":0,"3580":-1,"3581":0,"3582":1527,"3583":298,"3584":-1,"3585":0,"3586":0,"3587":0,"3588":1473,"3589":-1,"3590":0,"3591":98,"3592":168,"3593":-1,"3594":0,"3595":-1,"3596":0,"3597":0,"3598":1416,"3599":0,"3600":0,"3601":281,"3602":0,"3603":-1,"3604":-1,"3605":-1,"3606":-1,"3607":0,"3608":0,"3609":-1,"3610":0,"3611":-1,"3612":0,"3613":0,"3614":383,"3615":-1,"3616":0,"3617":-1,"3618":112,"3619":-1,"3620":0,"3621":-1,"3622":1452,"3623":0,"3624":1305,"3625":1504,"3626":0,"3627":-1,"3628":-1,"3629":-1,"3630":1518,"3631":-1,"3632":0,"3633":-1,"3634":0,"3635":-1,"3636":1483,"3637":1323,"3638":0,"3639":-1,"3640":-1,"3641":-1,"3642":0,"3643":0,"3644":0,"3645":0,"3646":-1,"3647":0,"3648":-1,"3649":0,"3650":0,"3651":-1,"3652":0,"3653":72,"3654":0,"3655":359,"3656":12,"3657":0,"3658":0,"3659":-1,"3660":61,"3661":0,"3662":89,"3663":0,"3664":-1,"3665":162,"3666":0,"3667":0,"3668":-1,"3669":306,"3670":-1,"3671":-1,"3672":1344,"3673":-1,"3674":0,"3675":1508,"3676":1324,"3677":0,"3678":0,"3679":0,"3680":-1,"3681":0,"3682":135,"3683":0,"3684":-1,"3685":1440,"3686":-1,"3687":0,"3688":-1,"3689":-1,"3690":0,"3691":182,"3692":0,"3693":0,"3694":0,"3695":1489,"3696":0,"3697":-1,"3698":1511,"3699":-1,"3700":197,"3701":-1,"3702":0,"3703":0,"3704":-1,"3705":-1,"3706":0,"3707":0,"3708":182,"3709":137,"3710":-1,"3711":330,"3712":279,"3713":128,"3714":1559,"3715":-1,"3716":157,"3717":-1,"3718":1467,"3719":-1,"3720":378,"3721":246,"3722":0,"3723":-1,"3724":2,"3725":-1,"3726":-1,"3727":0,"3728":159,"3729":-1,"3730":303,"3731":-1,"3732":-1,"3733":0,"3734":-1,"3735":0,"3736":1554,"3737":0,"3738":196,"3739":-1,"3740":1547,"3741":0,"3742":0,"3743":429,"3744":273,"3745":-1,"3746":0,"3747":0,"3748":0,"3749":1574,"3750":-1,"3751":0,"3752":-1,"3753":1318,"3754":109,"3755":0,"3756":288,"3757":-1,"3758":-1,"3759":-1,"3760":0,"3761":0,"3762":0,"3763":0,"3764":-1,"3765":15,"3766":1486,"3767":1377,"3768":0,"3769":1491,"3770":1313,"3771":-1,"3772":0,"3773":-1,"3774":0,"3775":1321,"3776":1333,"3777":1301,"3778":-1,"3779":-1,"3780":1317,"3781":0,"3782":150,"3783":0,"3784":-1,"3785":-1,"3786":0,"3787":-1,"3788":-1,"3789":0,"3790":0,"3791":0,"3792":342,"3793":50,"3794":-1,"3795":0,"3796":-1,"3797":0,"3798":0,"3799":1341,"3800":0,"3801":1550,"3802":0,"3803":-1,"3804":1370,"3805":1468,"3806":0,"3807":1497,"3808":0,"3809":298,"3810":-1,"3811":1558,"3812":-1,"3813":0,"3814":-1,"3815":-1,"3816":1524,"3817":0,"3818":-1,"3819":0,"3820":0,"3821":0,"3822":-1,"3823":0,"3824":43,"3825":0,"3826":0,"3827":-1,"3828":0,"3829":-1,"3830":0,"3831":2,"3832":17,"3833":1415,"3834":0,"3835":0,"3836":1444,"3837":-1,"3838":0,"3839":-1,"3840":381,"3841":127,"3842":107,"3843":-1,"3844":297,"3845":-1,"3846":167,"3847":-1,"3848":1393,"3849":0,"3850":0,"3851":324,"3852":0,"3853":-1,"3854":-1,"3855":1334,"3856":-1,"3857":-1,"3858":1570,"3859":0,"3860":0,"3861":373,"3862":0,"3863":-1,"3864":0,"3865":-1,"3866":195,"3867":4,"3868":217,"3869":0,"3870":-1,"3871":0,"3872":0,"3873":0,"3874":-1,"3875":348,"3876":295,"3877":0,"3878":0,"3879":0,"3880":0,"3881":0,"3882":-1,"3883":0,"3884":-1,"3885":111,"3886":0,"3887":1430,"3888":1560,"3889":0,"3890":0,"3891":-1,"3892":1367,"3893":103,"3894":0,"3895":332,"3896":0,"3897":-1,"3898":244,"3899":1331,"3900":0,"3901":0,"3902":-1,"3903":-1,"3904":-1,"3905":0,"3906":1563,"3907":-1,"3908":-1,"3909":-1,"3910":-1,"3911":0,"3912":0,"3913":0,"3914":1481,"3915":0,"3916":-1,"3917":-1,"3918":0,"3919":0,"3920":0,"3921":0,"3922":0,"3923":-1,"3924":0,"3925":1443,"3926":0,"3927":0,"3928":-1,"3929":-1,"3930":-1,"3931":-1,"3932":-1,"3933":194,"3934":173,"3935":1398,"3936":0,"3937":1570,"3938":1453,"3939":331,"3940":0,"3941":0,"3942":0,"3943":1574,"3944":30,"3945":1301,"3946":0,"3947":1435,"3948":0,"3949":0,"3950":0,"3951":-1,"3952":173,"3953":0,"3954":-1,"3955":-1,"3956":-1,"3957":0,"3958":64,"3959":1517,"3960":0,"3961":0,"3962":-1,"3963":-1,"3964":481,"3965":0,"3966":0,"3967":0,"3968":16,"3969":48,"3970":-1,"3971":-1,"3972":1580,"3973":0,"3974":1413,"3975":0,"3976":0,"3977":0,"3978":0,"3979":-1,"3980":145,"3981":-1,"3982":0,"3983":-1,"3984":0,"3985":0,"3986":-1,"3987":0,"3988":125,"3989":-1,"3990":-1,"3991":0,"3992":-1,"3993":0,"3994":0,"3995":-1,"3996":-1,"3997":1315,"3998":0,"3999":342,"4000":1535,"4001":-1,"4002":-1,"4003":-1,"4004":1364,"4005":28,"4006":0,"4007":-1,"4008":1568,"4009":73,"4010":0,"4011":0,"4012":0,"4013":240,"4014":1383,"4015":111,"4016":-1,"4017":0,"4018":-1,"4019":-1,"4020":1377,"4021":-1,"4022":0,"4023":0,"4024":0,"4025":0,"4026":324,"4027":-1,"4028":0,"4029":-1,"4030":1567,"4031":-1,"4032":-1,"4033":0,"4034":0,"4035":0,"4036":0,"4037":0,"4038":0,"4039":0,"4040":0,"4041":-1,"4042":0,"4043":0,"4044":0,"4045":-1,"4046":0,"4047":0,"4048":0,"4049":-1,"4050":1459,"4051":-1,"4052":-1,"4053":0,"4054":0,"4055":1584,"4056":0,"4057":0,"4058":-1,"4059":0,"4060":0,"4061":-1,"4062":214,"4063":16,"4064":0,"4065":-1,"4066":-1,"4067":278,"4068":368,"4069":0,"4070":-1,"4071":0,"4072":1329,"4073":0,"4074":-1,"4075":0,"4076":0,"4077":0,"4078":-1,"4079":0,"4080":1303,"4081":0,"4082":-1,"4083":1524,"4084":1573,"4085":-1,"4086":1330,"4087":0,"4088":-1,"4089":-1,"4090":-1,"4091":0,"4092":1499,"4093":0,"4094":0,"4095":0,"4096":-1,"4097":0,"4098":-1,"4099":0,"4100":1554,"4101":0,"4102":0,"4103":-1,"4104":1550,"4105":0,"4106":0,"4107":-1,"4108":0,"4109":1382,"4110":0,"4111":1558,"4112":-1,"4113":0,"4114":1583,"4115":-1,"4116":-1,"4117":0,"4118":0,"4119":0,"4120":0,"4121":-1,"4122":-1,"4123":0,"4124":0,"4125":51,"4126":0,"4127":0,"4128":0,"4129":364,"4130":196,"4131":145,"4132":0,"4133":1574,"4134":1470,"4135":0,"4136":-1,"4137":-1,"4138":0,"4139":-1,"4140":0,"4141":0,"4142":0,"4143":190,"4144":0,"4145":69,"4146":0,"4147":0,"4148":0,"4149":-1,"4150":348,"4151":51,"4152":1523,"4153":1343,"4154":1538,"4155":0,"4156":0,"4157":369,"4158":0,"4159":369,"4160":0,"4161":299,"4162":270,"4163":357,"4164":-1,"4165":-1,"4166":0,"4167":341,"4168":-1,"4169":-1,"4170":-1,"4171":-1,"4172":-1,"4173":0,"4174":0,"4175":1549,"4176":310,"4177":200,"4178":195,"4179":1473,"4180":0,"4181":0,"4182":1369,"4183":0,"4184":-1,"4185":0,"4186":0,"4187":13,"4188":0,"4189":-1,"4190":0,"4191":1527,"4192":1326,"4193":1320,"4194":0,"4195":154,"4196":0,"4197":0,"4198":0,"4199":1377,"4200":-1,"4201":-1,"4202":255,"4203":214,"4204":-1,"4205":0,"4206":-1,"4207":-1,"4208":-1,"4209":-1,"4210":-1,"4211":1410,"4212":0,"4213":0,"4214":-1,"4215":201,"4216":-1,"4217":0,"4218":1515,"4219":-1,"4220":-1,"4221":-1,"4222":0,"4223":-1,"4224":0,"4225":1500,"4226":0,"4227":0,"4228":-1,"4229":0,"4230":0,"4231":-1,"4232":285,"4233":1331,"4234":357,"4235":101,"4236":0,"4237":0,"4238":-1,"4239":-1,"4240":0,"4241":0,"4242":1440,"4243":0,"4244":0,"4245":-1,"4246":0,"4247":0,"4248":0,"4249":116,"4250":0,"4251":0,"4252":385,"4253":0,"4254":-1,"4255":0,"4256":0,"4257":0,"4258":0,"4259":-1,"4260":0,"4261":155,"4262":-1,"4263":1533,"4264":0,"4265":0,"4266":-1,"4267":0,"4268":0,"4269":1392,"4270":57,"4271":0,"4272":25,"4273":-1,"4274":173,"4275":0,"4276":0,"4277":-1,"4278":1332,"4279":0,"4280":0,"4281":-1,"4282":-1,"4283":0,"4284":186,"4285":-1,"4286":-1,"4287":373,"4288":0,"4289":1492,"4290":1580,"4291":0,"4292":0,"4293":-1,"4294":228,"4295":1490,"4296":0,"4297":0,"4298":1464,"4299":0,"4300":0,"4301":0,"4302":1449,"4303":0,"4304":0,"4305":1521,"4306":1443,"4307":1570,"4308":39,"4309":1,"4310":-1,"4311":0,"4312":112,"4313":0,"4314":0,"4315":1324,"4316":0,"4317":-1,"4318":-1,"4319":0,"4320":0,"4321":-1,"4322":0,"4323":1317,"4324":-1,"4325":0,"4326":0,"4327":0,"4328":208,"4329":0,"4330":0,"4331":0,"4332":1378,"4333":1315,"4334":0,"4335":232,"4336":-1,"4337":158,"4338":1583,"4339":0,"4340":-1,"4341":0,"4342":0,"4343":-1,"4344":0,"4345":0,"4346":186,"4347":1560,"4348":0,"4349":0,"4350":0,"4351":0,"4352":-1,"4353":0,"4354":0,"4355":-1,"4356":-1,"4357":-1,"4358":0,"4359":0,"4360":-1,"4361":1391,"4362":-1,"4363":0,"4364":0,"4365":1404,"4366":0,"4367":0,"4368":29,"4369":1419,"4370":0,"4371":-1,"4372":0,"4373":-1,"4374":1582,"4375":0,"4376":-1,"4377":-1,"4378":-1,"4379":-1,"4380":0,"4381":-1,"4382":-1,"4383":0,"4384":0,"4385":0,"4386":0,"4387":-1,"4388":125,"4389":0,"4390":-1,"4391":1335,"4392":-1,"4393":0,"4394":-1,"4395":0,"4396":0,"4397":0,"4398":370,"4399":0,"4400":1539,"4401":-1,"4402":-1,"4403":0,"4404":-1,"4405":-1,"4406":0,"4407":-1,"4408":0,"4409":1502,"4410":0,"4411":-1,"4412":0,"4413":-1,"4414":-1,"4415":0,"4416":312,"4417":0,"4418":373,"4419":0,"4420":1377,"4421":360,"4422":-1,"4423":0,"4424":0,"4425":0,"4426":101,"4427":278,"4428":-1,"4429":1428,"4430":1355,"4431":0,"4432":0,"4433":0,"4434":1555,"4435":-1,"4436":0,"4437":-1,"4438":0,"4439":0,"4440":301,"4441":0,"4442":0,"4443":0,"4444":-1,"4445":0,"4446":0,"4447":-1,"4448":-1,"4449":1384,"4450":-1,"4451":0,"4452":6,"4453":0,"4454":0,"4455":-1,"4456":1574,"4457":1576,"4458":0,"4459":0,"4460":368,"4461":-1,"4462":0,"4463":0,"4464":0,"4465":-1,"4466":-1,"4467":1448,"4468":1572,"4469":-1,"4470":-1,"4471":1375,"4472":-1,"4473":0,"4474":0,"4475":-1,"4476":-1,"4477":0,"4478":1527,"4479":-1,"4480":0,"4481":0,"4482":-1,"4483":0,"4484":-1,"4485":244,"4486":1519,"4487":0,"4488":1444,"4489":167,"4490":0,"4491":1434,"4492":0,"4493":0,"4494":1469,"4495":288,"4496":1516,"4497":0,"4498":368,"4499":-1,"4500":-1,"4501":0,"4502":-1,"4503":1465,"4504":0,"4505":1365,"4506":-1,"4507":0,"4508":0,"4509":1308,"4510":-1,"4511":0,"4512":0,"4513":149,"4514":-1,"4515":146,"4516":0,"4517":-1,"4518":-1,"4519":-1,"4520":137,"4521":158,"4522":0,"4523":-1,"4524":0,"4525":103,"4526":-1,"4527":0,"4528":105,"4529":-1,"4530":-1,"4531":380,"4532":-1,"4533":0,"4534":0,"4535":1555,"4536":297,"4537":-1,"4538":0,"4539":0,"4540":0,"4541":0,"4542":0,"4543":-1,"4544":-1,"4545":0,"4546":282,"4547":-1,"4548":0,"4549":0,"4550":0,"4551":1472,"4552":0,"4553":0,"4554":0,"4555":342,"4556":0,"4557":3,"4558":1434,"4559":-1,"4560":0,"4561":-1,"4562":92,"4563":-1,"4564":-1,"4565":-1,"4566":-1,"4567":146,"4568":0,"4569":0,"4570":0,"4571":-1,"4572":1581,"4573":-1,"4574":1373,"4575":1558,"4576":0,"4577":145,"4578":301,"4579":-1,"4580":0,"4581":0,"4582":-1,"4583":116,"4584":0,"4585":-1,"4586":-1,"4587":-1,"4588":0,"4589":0,"4590":-1,"4591":211,"4592":0,"4593":1521,"4594":-1,"4595":-1,"4596":0,"4597":0,"4598":1559,"4599":83,"4600":1458,"4601":-1,"4602":0,"4603":0,"4604":144,"4605":1480,"4606":135,"4607":-1,"4608":-1,"4609":-1,"4610":0,"4611":0,"4612":1363,"4613":0,"4614":-1,"4615":0,"4616":-1,"4617":1418,"4618":-1,"4619":0,"4620":-1,"4621":0,"4622":328,"4623":-1,"4624":-1,"4625":1418,"4626":-1,"4627":-1,"4628":0,"4629":0,"4630":-1,"4631":0,"4632":1399,"4633":1382,"4634":181,"4635":0,"4636":1406,"4637":0,"4638":1388,"4639":0,"4640":0,"4641":0,"4642":0,"4643":0,"4644":1477,"4645":0,"4646":1331,"4647":0,"4648":0,"4649":0,"4650":0,"4651":0,"4652":1471,"4653":284,"4654":0,"4655":1478,"4656":0,"4657":0,"4658":0,"4659":-1,"4660":-1,"4661":1330,"4662":0,"4663":137,"4664":-1,"4665":0,"4666":0,"4667":0,"4668":0,"4669":0,"4670":1509,"4671":0,"4672":1521,"4673":256,"4674":-1,"4675":-1,"4676":-1,"4677":-1,"4678":0,"4679":1432,"4680":101,"4681":0,"4682":-1,"4683":0,"4684":-1,"4685":0,"4686":-1,"4687":1335,"4688":0,"4689":0,"4690":-1,"4691":0,"4692":1553,"4693":0,"4694":0,"4695":0,"4696":150,"4697":0,"4698":51,"4699":0,"4700":0,"4701":-1,"4702":-1,"4703":0,"4704":0,"4705":0,"4706":105,"4707":1451,"4708":0,"4709":0,"4710":299,"4711":0,"4712":1389,"4713":-1,"4714":1350,"4715":-1,"4716":7,"4717":1502,"4718":-1,"4719":-1,"4720":0,"4721":-1,"4722":36,"4723":317,"4724":-1,"4725":0,"4726":1511,"4727":0,"4728":-1,"4729":0,"4730":0,"4731":1494,"4732":11,"4733":-1,"4734":-1,"4735":0,"4736":0,"4737":-1,"4738":0,"4739":0,"4740":0,"4741":-1,"4742":-1,"4743":150,"4744":1517,"4745":1313,"4746":176,"4747":1544,"4748":0,"4749":0,"4750":0,"4751":-1,"4752":46,"4753":-1,"4754":176,"4755":-1,"4756":-1,"4757":0,"4758":1382,"4759":0,"4760":0,"4761":0,"4762":0,"4763":-1,"4764":0,"4765":-1,"4766":0,"4767":46,"4768":0,"4769":0,"4770":0,"4771":174,"4772":0,"4773":-1,"4774":-1,"4775":230,"4776":0,"4777":-1,"4778":352,"4779":1532,"4780":-1,"4781":0,"4782":-1,"4783":1360,"4784":0,"4785":1485,"4786":-1,"4787":0,"4788":-1,"4789":-1,"4790":0,"4791":-1,"4792":0,"4793":0,"4794":0,"4795":5,"4796":0,"4797":112,"4798":-1,"4799":1381,"4800":0,"4801":-1,"4802":-1,"4803":1354,"4804":1373,"4805":22,"4806":0,"4807":0,"4808":0,"4809":0,"4810":0,"4811":-1,"4812":1468,"4813":0,"4814":-1,"4815":0,"4816":-1,"4817":0,"4818":41,"4819":-1,"4820":-1,"4821":1389,"4822":1461,"4823":0,"4824":-1,"4825":1427,"4826":207,"4827":0,"4828":7,"4829":0,"4830":438,"4831":0,"4832":-1,"4833":-1,"4834":0,"4835":0,"4836":0,"4837":0,"4838":0,"4839":-1,"4840":0,"4841":135,"4842":0,"4843":1488,"4844":1421,"4845":-1,"4846":0,"4847":-1,"4848":-1,"4849":207,"4850":0,"4851":0,"4852":1326,"4853":1300,"4854":1367,"4855":0,"4856":0,"4857":-1,"4858":1495,"4859":0,"4860":0,"4861":240,"4862":1524,"4863":-1,"4864":1563,"4865":119,"4866":0,"4867":98,"4868":-1,"4869":-1,"4870":-1,"4871":0,"4872":1473,"4873":0,"4874":-1,"4875":-1,"4876":56,"4877":-1,"4878":1335,"4879":1388,"4880":-1,"4881":288,"4882":194,"4883":0,"4884":-1,"4885":1530,"4886":0,"4887":0,"4888":0,"4889":0,"4890":157,"4891":0,"4892":0,"4893":0,"4894":0,"4895":244,"4896":20,"4897":140,"4898":0,"4899":69,"4900":-1,"4901":0,"4902":-1,"4903":1473,"4904":0,"4905":-1,"4906":0,"4907":0,"4908":1353,"4909":1539,"4910":1377,"4911":1458,"4912":-1,"4913":-1,"4914":0,"4915":-1,"4916":-1,"4917":1455,"4918":1366,"4919":0,"4920":158,"4921":326,"4922":0,"4923":-1,"4924":-1,"4925":-1,"4926":1415,"4927":-1,"4928":1402,"4929":0,"4930":0,"4931":0,"4932":0,"4933":0,"4934":0,"4935":167,"4936":1299,"4937":-1,"4938":1423,"4939":0,"4940":-1,"4941":0,"4942":0,"4943":289,"4944":-1,"4945":-1,"4946":0,"4947":0,"4948":-1,"4949":0,"4950":-1,"4951":1545,"4952":0,"4953":-1,"4954":-1,"4955":254,"4956":23,"4957":-1,"4958":0,"4959":-1,"4960":0,"4961":-1,"4962":-1,"4963":0,"4964":-1,"4965":107,"4966":0,"4967":0,"4968":175,"4969":-1,"4970":314,"4971":1534,"4972":0,"4973":0,"4974":-1,"4975":0,"4976":326,"4977":-1,"4978":0,"4979":0,"4980":0,"4981":0,"4982":-1,"4983":0,"4984":0,"4985":0,"4986":163,"4987":0,"4988":0,"4989":1395,"4990":-1,"4991":0,"4992":124,"4993":1357,"4994":0,"4995":0,"4996":-1,"4997":3,"4998":0,"4999":-1,"5000":194,"5001":0,"5002":0,"5003":-1,"5004":0,"5005":329,"5006":-1,"5007":0,"5008":0,"5009":-1,"5010":0,"5011":0,"5012":0,"5013":0,"5014":-1,"5015":0,"5016":1385,"5017":-1,"5018":-1,"5019":0,"5020":92,"5021":167,"5022":66,"5023":-1,"5024":-1,"5025":0,"5026":1328,"5027":-1,"5028":0,"5029":1524,"5030":-1,"5031":0,"5032":0,"5033":-1,"5034":47,"5035":147,"5036":-1,"5037":-1,"5038":0,"5039":1412,"5040":1302,"5041":0,"5042":-1,"5043":0,"5044":-1,"5045":31,"5046":-1,"5047":0,"5048":0,"5049":-1,"5050":0,"5051":1394,"5052":305,"5053":-1,"5054":0,"5055":0,"5056":0,"5057":-1,"5058":0,"5059":1475,"5060":-1,"5061":10,"5062":-1,"5063":0,"5064":-1,"5065":0,"5066":0,"5067":-1,"5068":-1,"5069":-1,"5070":0,"5071":-1,"5072":-1,"5073":-1,"5074":16,"5075":0,"5076":0,"5077":0,"5078":248,"5079":0,"5080":0,"5081":0,"5082":-1,"5083":-1,"5084":122,"5085":0,"5086":0,"5087":0,"5088":0,"5089":0,"5090":0,"5091":-1,"5092":0,"5093":-1,"5094":-1,"5095":0,"5096":-1,"5097":-1,"5098":134,"5099":0,"5100":244,"5101":0,"5102":1456,"5103":0,"5104":0,"5105":-1,"5106":0,"5107":0,"5108":0,"5109":0,"5110":0,"5111":0,"5112":-1,"5113":-1,"5114":0,"5115":0,"5116":0,"5117":0,"5118":-1,"5119":0,"5120":1302,"5121":0,"5122":40,"5123":-1,"5124":1390,"5125":0,"5126":0,"5127":-1,"5128":-1,"5129":0,"5130":-1,"5131":86,"5132":0,"5133":-1,"5134":0,"5135":0,"5136":-1,"5137":0,"5138":28,"5139":-1,"5140":-1,"5141":0,"5142":89,"5143":-1,"5144":0,"5145":-1,"5146":166,"5147":0,"5148":-1,"5149":-1,"5150":0,"5151":0,"5152":1314,"5153":-1,"5154":102,"5155":-1,"5156":1331,"5157":0,"5158":0,"5159":0,"5160":0,"5161":0,"5162":-1,"5163":-1,"5164":0,"5165":0,"5166":0,"5167":-1,"5168":0,"5169":0,"5170":1515,"5171":0,"5172":1482,"5173":1439,"5174":-1,"5175":0,"5176":0,"5177":0,"5178":-1,"5179":0,"5180":-1,"5181":0,"5182":105,"5183":0,"5184":0,"5185":0,"5186":0,"5187":-1,"5188":-1,"5189":-1,"5190":-1,"5191":74,"5192":-1,"5193":-1,"5194":0,"5195":-1,"5196":0,"5197":0,"5198":32,"5199":0,"5200":-1,"5201":-1,"5202":0,"5203":-1,"5204":0,"5205":1393,"5206":0,"5207":1424,"5208":0,"5209":0,"5210":7,"5211":0,"5212":0,"5213":1474,"5214":-1,"5215":1376,"5216":-1,"5217":0,"5218":0,"5219":21,"5220":0,"5221":1564,"5222":-1,"5223":-1,"5224":206,"5225":-1,"5226":-1,"5227":0,"5228":-1,"5229":-1,"5230":0,"5231":323,"5232":6,"5233":-1,"5234":-1,"5235":-1,"5236":0,"5237":299,"5238":-1,"5239":0,"5240":-1,"5241":0,"5242":1419,"5243":1448,"5244":0,"5245":1436,"5246":-1,"5247":1457,"5248":-1,"5249":0,"5250":342,"5251":206,"5252":-1,"5253":-1,"5254":0,"5255":0,"5256":0,"5257":-1,"5258":1352,"5259":-1,"5260":-1,"5261":142,"5262":0,"5263":0,"5264":0,"5265":0,"5266":1577,"5267":-1,"5268":0,"5269":1335,"5270":0,"5271":1547,"5272":0,"5273":-1,"5274":378,"5275":1529,"5276":0,"5277":265,"5278":137,"5279":-1,"5280":360,"5281":-1,"5282":-1,"5283":368,"5284":61,"5285":0,"5286":0,"5287":0,"5288":0,"5289":0,"5290":0,"5291":0,"5292":30,"5293":-1,"5294":0,"5295":0,"5296":-1,"5297":1524,"5298":-1,"5299":0,"5300":0,"5301":-1,"5302":1578,"5303":-1,"5304":-1,"5305":0,"5306":0,"5307":1436,"5308":-1,"5309":0,"5310":0,"5311":0,"5312":-1,"5313":0,"5314":0,"5315":1323,"5316":121,"5317":359,"5318":273,"5319":-1,"5320":-1,"5321":-1,"5322":-1,"5323":-1,"5324":0,"5325":56,"5326":1535,"5327":1578,"5328":0,"5329":-1,"5330":-1,"5331":0,"5332":70,"5333":0,"5334":-1,"5335":-1,"5336":1373,"5337":0,"5338":0,"5339":0,"5340":-1,"5341":0,"5342":0,"5343":0,"5344":58,"5345":-1,"5346":116,"5347":0,"5348":-1,"5349":-1,"5350":0,"5351":1356,"5352":1354,"5353":0,"5354":-1,"5355":0,"5356":0,"5357":1466,"5358":0,"5359":0,"5360":0,"5361":9,"5362":0,"5363":0,"5364":0,"5365":0,"5366":-1,"5367":0,"5368":182,"5369":0,"5370":-1,"5371":-1,"5372":1330,"5373":176,"5374":0,"5375":1360,"5376":1498,"5377":325,"5378":-1,"5379":-1,"5380":0,"5381":0,"5382":0,"5383":0,"5384":329,"5385":0,"5386":1476,"5387":0,"5388":-1,"5389":0,"5390":0,"5391":0,"5392":0,"5393":1409,"5394":-1,"5395":1323,"5396":-1,"5397":1355,"5398":0,"5399":0,"5400":0,"5401":0,"5402":0,"5403":0,"5404":0,"5405":-1,"5406":-1,"5407":438,"5408":-1,"5409":-1,"5410":-1,"5411":131,"5412":1418,"5413":-1,"5414":-1,"5415":0,"5416":0,"5417":-1,"5418":-1,"5419":-1,"5420":303,"5421":-1,"5422":-1,"5423":0,"5424":0,"5425":256,"5426":314,"5427":0,"5428":-1,"5429":0,"5430":0,"5431":0,"5432":0,"5433":1322,"5434":0,"5435":0,"5436":-1,"5437":-1,"5438":-1,"5439":-1,"5440":-1,"5441":0,"5442":1320,"5443":0,"5444":-1,"5445":0,"5446":-1,"5447":0,"5448":259,"5449":124,"5450":0,"5451":2,"5452":-1,"5453":-1,"5454":0,"5455":322,"5456":-1,"5457":0,"5458":0,"5459":0,"5460":71,"5461":0,"5462":0,"5463":1538,"5464":-1,"5465":-1,"5466":-1,"5467":-1,"5468":295,"5469":274,"5470":-1,"5471":-1,"5472":0,"5473":-1,"5474":0,"5475":-1,"5476":0,"5477":1536,"5478":27,"5479":1531,"5480":-1,"5481":-1,"5482":0,"5483":1340,"5484":0,"5485":0,"5486":-1,"5487":-1,"5488":0,"5489":19,"5490":-1,"5491":0,"5492":1458,"5493":-1,"5494":1541,"5495":0,"5496":0,"5497":-1,"5498":0,"5499":-1,"5500":-1,"5501":-1,"5502":0,"5503":48,"5504":0,"5505":262,"5506":0,"5507":-1,"5508":0,"5509":50,"5510":1383,"5511":-1,"5512":-1,"5513":-1,"5514":0,"5515":0,"5516":0,"5517":0,"5518":0,"5519":0,"5520":1545,"5521":1371,"5522":-1,"5523":0,"5524":0,"5525":137,"5526":1303,"5527":0,"5528":-1,"5529":132,"5530":273,"5531":-1,"5532":0,"5533":297,"5534":63,"5535":0,"5536":373,"5537":0,"5538":-1,"5539":0,"5540":0,"5541":-1,"5542":0,"5543":0,"5544":1494,"5545":1369,"5546":0,"5547":-1,"5548":1390,"5549":-1,"5550":-1,"5551":-1,"5552":0,"5553":0,"5554":1549,"5555":103,"5556":-1,"5557":0,"5558":0,"5559":-1,"5560":254,"5561":0,"5562":103,"5563":1391,"5564":0,"5565":0,"5566":0,"5567":-1,"5568":1367,"5569":334,"5570":1524,"5571":-1,"5572":-1,"5573":0,"5574":-1,"5575":1318,"5576":0,"5577":0,"5578":0,"5579":0,"5580":0,"5581":0,"5582":235,"5583":1353,"5584":1576,"5585":1362,"5586":0,"5587":0,"5588":0,"5589":0,"5590":1302,"5591":1333,"5592":-1,"5593":1475,"5594":66,"5595":102,"5596":1581,"5597":-1,"5598":-1,"5599":224,"5600":0,"5601":0,"5602":0,"5603":0,"5604":1333,"5605":-1,"5606":0,"5607":0,"5608":-1,"5609":1412,"5610":0,"5611":0,"5612":0,"5613":0,"5614":-1,"5615":-1,"5616":0,"5617":0,"5618":1441,"5619":-1,"5620":0,"5621":0,"5622":1392,"5623":0,"5624":146,"5625":0,"5626":-1,"5627":-1,"5628":-1,"5629":0,"5630":-1,"5631":289,"5632":0,"5633":-1,"5634":0,"5635":0,"5636":-1,"5637":0,"5638":164,"5639":0,"5640":0,"5641":0,"5642":-1,"5643":0,"5644":-1,"5645":0,"5646":1573,"5647":1299,"5648":39,"5649":-1,"5650":-1,"5651":-1,"5652":-1,"5653":-1,"5654":0,"5655":0,"5656":83,"5657":0,"5658":0,"5659":0,"5660":0,"5661":1438,"5662":-1,"5663":0,"5664":198,"5665":0,"5666":-1,"5667":0,"5668":328,"5669":-1,"5670":1388,"5671":0,"5672":-1,"5673":299,"5674":164,"5675":-1,"5676":0,"5677":0,"5678":0,"5679":-1,"5680":0,"5681":1568,"5682":0,"5683":1375,"5684":0,"5685":0,"5686":1489,"5687":0,"5688":0,"5689":1483,"5690":0,"5691":-1,"5692":1427,"5693":0,"5694":1466,"5695":-1,"5696":0,"5697":0,"5698":0,"5699":0,"5700":-1,"5701":0,"5702":-1,"5703":0,"5704":17,"5705":1312,"5706":0,"5707":1416,"5708":-1,"5709":0,"5710":40,"5711":0,"5712":-1,"5713":-1,"5714":1417,"5715":1541,"5716":1484,"5717":202,"5718":-1,"5719":0,"5720":1509,"5721":354,"5722":-1,"5723":0,"5724":1418,"5725":0,"5726":0,"5727":-1,"5728":0,"5729":-1,"5730":0,"5731":0,"5732":0,"5733":314,"5734":0,"5735":0,"5736":0,"5737":1333,"5738":53,"5739":0,"5740":0,"5741":123,"5742":0,"5743":-1,"5744":0,"5745":-1,"5746":1443,"5747":0,"5748":49,"5749":-1,"5750":0,"5751":0,"5752":0,"5753":-1,"5754":-1,"5755":198,"5756":0,"5757":0,"5758":0,"5759":-1,"5760":0,"5761":0,"5762":0,"5763":0,"5764":0,"5765":0,"5766":-1,"5767":0,"5768":-1,"5769":226,"5770":0,"5771":0,"5772":0,"5773":-1,"5774":0,"5775":0,"5776":119,"5777":-1,"5778":284,"5779":0,"5780":-1,"5781":0,"5782":0,"5783":0,"5784":0,"5785":0,"5786":347,"5787":0,"5788":47,"5789":282,"5790":1546,"5791":0,"5792":1481,"5793":-1,"5794":254,"5795":0,"5796":-1,"5797":-1,"5798":-1,"5799":0,"5800":0,"5801":-1,"5802":-1,"5803":297,"5804":0,"5805":0,"5806":1389,"5807":0,"5808":-1,"5809":0,"5810":1436,"5811":-1,"5812":-1,"5813":97,"5814":1421,"5815":0,"5816":1380,"5817":1554,"5818":-1,"5819":-1,"5820":0,"5821":1413,"5822":0,"5823":0,"5824":-1,"5825":0,"5826":0,"5827":0,"5828":271,"5829":-1,"5830":102,"5831":-1,"5832":0,"5833":1419,"5834":0,"5835":0,"5836":0,"5837":0,"5838":1567,"5839":0,"5840":-1,"5841":0,"5842":0,"5843":0,"5844":0,"5845":-1,"5846":-1,"5847":1333,"5848":0,"5849":0,"5850":0,"5851":-1,"5852":0,"5853":0,"5854":102,"5855":0,"5856":0,"5857":-1,"5858":0,"5859":1489,"5860":-1,"5861":-1,"5862":-1,"5863":54,"5864":-1,"5865":0,"5866":360,"5867":0,"5868":-1,"5869":-1,"5870":366,"5871":-1,"5872":-1,"5873":-1,"5874":1430,"5875":0,"5876":0,"5877":-1,"5878":-1,"5879":1346,"5880":317,"5881":0,"5882":-1,"5883":1395,"5884":0,"5885":-1,"5886":0,"5887":0,"5888":324,"5889":33,"5890":-1,"5891":-1,"5892":30,"5893":0,"5894":234,"5895":0,"5896":1380,"5897":0,"5898":-1,"5899":1309,"5900":0,"5901":1576,"5902":-1,"5903":-1,"5904":0,"5905":1381,"5906":0,"5907":0,"5908":252,"5909":-1,"5910":0,"5911":0,"5912":-1,"5913":1355,"5914":61,"5915":0,"5916":-1,"5917":-1,"5918":253,"5919":-1,"5920":334,"5921":-1,"5922":0,"5923":1318,"5924":-1,"5925":-1,"5926":-1,"5927":0,"5928":0,"5929":-1,"5930":0,"5931":-1,"5932":1447,"5933":0,"5934":1530,"5935":0,"5936":236,"5937":-1,"5938":0,"5939":-1,"5940":1451,"5941":0,"5942":0,"5943":0,"5944":0,"5945":0,"5946":0,"5947":0,"5948":1483,"5949":0,"5950":-1,"5951":0,"5952":1389,"5953":-1,"5954":0,"5955":255,"5956":342,"5957":0,"5958":0,"5959":0,"5960":-1,"5961":-1,"5962":73,"5963":-1,"5964":3,"5965":-1,"5966":-1,"5967":5,"5968":39,"5969":-1,"5970":1459,"5971":192,"5972":0,"5973":-1,"5974":0,"5975":157,"5976":1402,"5977":438,"5978":0,"5979":342,"5980":0,"5981":-1,"5982":9,"5983":262,"5984":0,"5985":1523,"5986":0,"5987":0,"5988":0,"5989":-1,"5990":0,"5991":0,"5992":-1,"5993":-1,"5994":60,"5995":1472,"5996":-1,"5997":30,"5998":-1,"5999":-1,"6000":-1,"6001":-1,"6002":262,"6003":0,"6004":-1,"6005":0,"6006":-1,"6007":0,"6008":0,"6009":0,"6010":0,"6011":-1,"6012":-1,"6013":0,"6014":-1,"6015":146,"6016":1556,"6017":1538,"6018":-1,"6019":187,"6020":1382,"6021":-1,"6022":-1,"6023":-1,"6024":0,"6025":-1,"6026":0,"6027":1487,"6028":-1,"6029":0,"6030":0,"6031":0,"6032":0,"6033":27,"6034":0,"6035":-1,"6036":1418,"6037":0,"6038":373,"6039":0,"6040":264,"6041":0,"6042":0,"6043":103,"6044":-1,"6045":0,"6046":0,"6047":0,"6048":-1,"6049":-1,"6050":-1,"6051":1559,"6052":0,"6053":0,"6054":-1,"6055":1486,"6056":0,"6057":-1,"6058":0,"6059":-1,"6060":2,"6061":-1,"6062":1371,"6063":0,"6064":0,"6065":0,"6066":-1,"6067":79,"6068":78,"6069":0,"6070":1576,"6071":365,"6072":0,"6073":-1,"6074":-1,"6075":0,"6076":1398,"6077":162,"6078":67,"6079":0,"6080":0,"6081":-1,"6082":0,"6083":-1,"6084":0,"6085":0,"6086":0,"6087":0,"6088":136,"6089":-1,"6090":-1,"6091":284,"6092":-1,"6093":-1,"6094":1498,"6095":135,"6096":0,"6097":76,"6098":0,"6099":-1,"6100":197,"6101":1346,"6102":1416,"6103":0,"6104":0,"6105":1406,"6106":1535,"6107":-1,"6108":0,"6109":1353,"6110":-1,"6111":0,"6112":-1,"6113":-1,"6114":0,"6115":0,"6116":96,"6117":0,"6118":122,"6119":0,"6120":0,"6121":0,"6122":0,"6123":1527,"6124":-1,"6125":-1,"6126":0,"6127":0,"6128":-1,"6129":281,"6130":0,"6131":0,"6132":0,"6133":1503,"6134":0,"6135":278,"6136":-1,"6137":-1,"6138":0,"6139":-1,"6140":0,"6141":0,"6142":0,"6143":0,"6144":0,"6145":-1,"6146":0,"6147":120,"6148":-1,"6149":-1,"6150":0,"6151":-1,"6152":0,"6153":1482,"6154":77,"6155":-1,"6156":-1,"6157":366,"6158":1301,"6159":-1,"6160":-1,"6161":-1,"6162":0,"6163":117,"6164":0,"6165":0,"6166":1479,"6167":52,"6168":0,"6169":0,"6170":-1,"6171":-1,"6172":0,"6173":54,"6174":0,"6175":-1,"6176":-1,"6177":43,"6178":-1,"6179":0,"6180":50,"6181":36,"6182":0,"6183":70,"6184":0,"6185":0,"6186":-1,"6187":0,"6188":0,"6189":1412,"6190":0,"6191":0,"6192":0,"6193":1475,"6194":-1,"6195":-1,"6196":0,"6197":-1,"6198":0,"6199":1496,"6200":0,"6201":0,"6202":1422,"6203":-1,"6204":1553,"6205":304,"6206":0,"6207":0,"6208":473,"6209":0,"6210":-1,"6211":0,"6212":57,"6213":0,"6214":1405,"6215":0,"6216":-1,"6217":-1,"6218":-1,"6219":0,"6220":0,"6221":0,"6222":48,"6223":0,"6224":-1,"6225":0,"6226":0,"6227":1353,"6228":-1,"6229":0,"6230":-1,"6231":1399,"6232":0,"6233":0,"6234":-1,"6235":-1,"6236":0,"6237":0,"6238":1464,"6239":0,"6240":225,"6241":-1,"6242":-1,"6243":-1,"6244":0,"6245":-1,"6246":226,"6247":0,"6248":-1,"6249":-1,"6250":-1,"6251":1565,"6252":-1,"6253":-1,"6254":1494,"6255":230,"6256":1521,"6257":359,"6258":0,"6259":-1,"6260":1462,"6261":1345,"6262":0,"6263":0,"6264":0,"6265":0,"6266":1445,"6267":-1,"6268":164,"6269":-1,"6270":0,"6271":0,"6272":1334,"6273":0,"6274":334,"6275":1519,"6276":-1,"6277":261,"6278":0,"6279":53,"6280":-1,"6281":-1,"6282":0,"6283":252,"6284":0,"6285":-1,"6286":-1,"6287":0,"6288":180,"6289":0,"6290":0,"6291":0,"6292":-1,"6293":1532,"6294":0,"6295":0,"6296":0,"6297":-1,"6298":0,"6299":0,"6300":0,"6301":375,"6302":-1,"6303":0,"6304":0,"6305":1397,"6306":-1,"6307":0,"6308":0,"6309":0,"6310":128,"6311":0,"6312":0,"6313":1582,"6314":0,"6315":0,"6316":0,"6317":-1,"6318":-1,"6319":1420,"6320":200,"6321":0,"6322":0,"6323":0,"6324":-1,"6325":-1,"6326":0,"6327":-1,"6328":-1,"6329":-1,"6330":-1,"6331":-1,"6332":128,"6333":0,"6334":0,"6335":12,"6336":1383,"6337":1514,"6338":326,"6339":-1,"6340":-1,"6341":0,"6342":28,"6343":168,"6344":0,"6345":0,"6346":1462,"6347":0,"6348":1527,"6349":-1,"6350":-1,"6351":224,"6352":122,"6353":261,"6354":0,"6355":0,"6356":-1,"6357":0,"6358":0,"6359":1457,"6360":0,"6361":317,"6362":0,"6363":-1,"6364":188,"6365":1393,"6366":-1,"6367":1302,"6368":0,"6369":0,"6370":0,"6371":1516,"6372":0,"6373":0,"6374":0,"6375":0,"6376":0,"6377":-1,"6378":0,"6379":1399,"6380":0,"6381":0,"6382":-1,"6383":-1,"6384":0,"6385":303,"6386":-1,"6387":-1,"6388":-1,"6389":-1,"6390":-1,"6391":194,"6392":0,"6393":336,"6394":-1,"6395":0,"6396":1426,"6397":-1,"6398":0,"6399":1473,"6400":283,"6401":0,"6402":1358,"6403":0,"6404":228,"6405":-1,"6406":0,"6407":16,"6408":0,"6409":-1,"6410":0,"6411":0,"6412":0,"6413":0,"6414":1570,"6415":0,"6416":270,"6417":-1,"6418":-1,"6419":0,"6420":0,"6421":1521,"6422":-1,"6423":0,"6424":-1,"6425":0,"6426":1350,"6427":0,"6428":-1,"6429":0,"6430":0,"6431":0,"6432":-1,"6433":-1,"6434":-1,"6435":-1,"6436":-1,"6437":0,"6438":-1,"6439":-1,"6440":-1,"6441":225,"6442":237,"6443":0,"6444":1501,"6445":-1,"6446":0,"6447":0,"6448":0,"6449":1449,"6450":0,"6451":0,"6452":248,"6453":1535,"6454":-1,"6455":0,"6456":-1,"6457":6,"6458":0,"6459":-1,"6460":-1,"6461":-1,"6462":1465,"6463":0,"6464":-1,"6465":0,"6466":0,"6467":-1,"6468":0,"6469":0,"6470":-1,"6471":0,"6472":0,"6473":-1,"6474":1366,"6475":0,"6476":-1,"6477":0,"6478":0,"6479":0,"6480":1430,"6481":256,"6482":0,"6483":-1,"6484":0,"6485":-1,"6486":0,"6487":1505,"6488":-1,"6489":123,"6490":-1,"6491":1356,"6492":-1,"6493":1561,"6494":0,"6495":0,"6496":0,"6497":-1,"6498":0,"6499":0,"6500":1483,"6501":0,"6502":0,"6503":337,"6504":-1,"6505":0,"6506":-1,"6507":-1,"6508":-1,"6509":-1,"6510":364,"6511":1414,"6512":0,"6513":-1,"6514":-1,"6515":0,"6516":0,"6517":0,"6518":58,"6519":-1,"6520":-1,"6521":1384,"6522":0,"6523":-1,"6524":-1,"6525":0,"6526":1481,"6527":-1,"6528":0,"6529":0,"6530":0,"6531":-1,"6532":-1,"6533":1585,"6534":0,"6535":-1,"6536":0,"6537":0,"6538":0,"6539":0,"6540":-1,"6541":-1,"6542":-1,"6543":-1,"6544":0,"6545":0,"6546":1332,"6547":1567,"6548":1534,"6549":-1,"6550":0,"6551":-1,"6552":32,"6553":-1,"6554":274,"6555":0,"6556":23,"6557":-1,"6558":295,"6559":0,"6560":0,"6561":1550,"6562":-1,"6563":1371,"6564":-1,"6565":-1,"6566":-1,"6567":267,"6568":0,"6569":1532,"6570":-1,"6571":1321,"6572":0,"6573":0,"6574":0,"6575":1445,"6576":-1,"6577":-1,"6578":-1,"6579":0,"6580":-1,"6581":0,"6582":215,"6583":1436,"6584":1494,"6585":-1,"6586":0,"6587":1327,"6588":182,"6589":0,"6590":167,"6591":-1,"6592":0,"6593":-1,"6594":0,"6595":-1,"6596":0,"6597":0,"6598":-1,"6599":206,"6600":0,"6601":0,"6602":-1,"6603":1448,"6604":-1,"6605":0,"6606":-1,"6607":-1,"6608":0,"6609":365,"6610":0,"6611":299,"6612":0,"6613":-1,"6614":293,"6615":-1,"6616":-1,"6617":0,"6618":1531,"6619":-1,"6620":-1,"6621":-1,"6622":1536,"6623":-1,"6624":51,"6625":291,"6626":0,"6627":-1,"6628":-1,"6629":154,"6630":0,"6631":0,"6632":303,"6633":-1,"6634":357,"6635":43,"6636":-1,"6637":1469,"6638":129,"6639":0,"6640":-1,"6641":0,"6642":0,"6643":0,"6644":0,"6645":-1,"6646":1512,"6647":0,"6648":370,"6649":0,"6650":1448,"6651":1358,"6652":180,"6653":0,"6654":211,"6655":0,"6656":0,"6657":-1,"6658":-1,"6659":0,"6660":-1,"6661":-1,"6662":0,"6663":-1,"6664":106,"6665":0,"6666":127,"6667":354,"6668":-1,"6669":325,"6670":-1,"6671":0,"6672":-1,"6673":1567,"6674":0,"6675":0,"6676":-1,"6677":0,"6678":-1,"6679":0,"6680":332,"6681":0,"6682":1451,"6683":0,"6684":0,"6685":0,"6686":0,"6687":-1,"6688":-1,"6689":1456,"6690":0,"6691":-1,"6692":-1,"6693":0,"6694":216,"6695":-1,"6696":0,"6697":0,"6698":0,"6699":-1,"6700":-1,"6701":0,"6702":1371,"6703":67,"6704":120,"6705":0,"6706":0,"6707":-1,"6708":1345,"6709":219,"6710":27,"6711":0,"6712":-1,"6713":1512,"6714":-1,"6715":0,"6716":0,"6717":-1,"6718":0,"6719":0,"6720":341,"6721":-1,"6722":1485,"6723":0,"6724":0,"6725":-1,"6726":-1,"6727":0,"6728":228,"6729":-1,"6730":0,"6731":-1,"6732":-1,"6733":0,"6734":28,"6735":0,"6736":-1,"6737":0,"6738":0,"6739":-1,"6740":0,"6741":0,"6742":0,"6743":0,"6744":0,"6745":0,"6746":-1,"6747":-1,"6748":-1,"6749":1482,"6750":0,"6751":182,"6752":0,"6753":0,"6754":0,"6755":0,"6756":198,"6757":-1,"6758":384,"6759":-1,"6760":0,"6761":-1,"6762":0,"6763":0,"6764":0,"6765":0,"6766":1574,"6767":1432,"6768":-1,"6769":-1,"6770":154,"6771":0,"6772":154,"6773":0,"6774":0,"6775":-1,"6776":1529,"6777":0,"6778":21,"6779":127,"6780":0,"6781":-1,"6782":-1,"6783":0,"6784":0,"6785":-1,"6786":364,"6787":0,"6788":0,"6789":0,"6790":-1,"6791":-1,"6792":0,"6793":0,"6794":0,"6795":278,"6796":0,"6797":0,"6798":-1,"6799":0,"6800":-1,"6801":0,"6802":385,"6803":112,"6804":0,"6805":0,"6806":203,"6807":0,"6808":0,"6809":-1,"6810":0,"6811":0,"6812":70,"6813":1453,"6814":0,"6815":0,"6816":0,"6817":0,"6818":1398,"6819":-1,"6820":1574,"6821":0,"6822":308,"6823":35,"6824":67,"6825":0,"6826":-1,"6827":0,"6828":0,"6829":-1,"6830":49,"6831":0,"6832":0,"6833":0,"6834":0,"6835":-1,"6836":0,"6837":142,"6838":0,"6839":-1,"6840":-1,"6841":-1,"6842":-1,"6843":0,"6844":0,"6845":-1,"6846":-1,"6847":-1,"6848":0,"6849":1423,"6850":-1,"6851":0,"6852":1570,"6853":299,"6854":0,"6855":-1,"6856":88,"6857":-1,"6858":-1,"6859":0,"6860":298,"6861":32,"6862":-1,"6863":0,"6864":1406,"6865":0,"6866":-1,"6867":0,"6868":0,"6869":0,"6870":0,"6871":-1,"6872":0,"6873":0,"6874":0,"6875":0,"6876":-1,"6877":0,"6878":0,"6879":0,"6880":-1,"6881":0,"6882":0,"6883":0,"6884":1464,"6885":264,"6886":0,"6887":192,"6888":0,"6889":77,"6890":-1,"6891":0,"6892":0,"6893":-1,"6894":0,"6895":55,"6896":0,"6897":1518,"6898":0,"6899":0,"6900":-1,"6901":0,"6902":0,"6903":1572,"6904":-1,"6905":-1,"6906":0,"6907":0,"6908":0,"6909":1362,"6910":0,"6911":0,"6912":0,"6913":0,"6914":0,"6915":-1,"6916":1320,"6917":179,"6918":-1,"6919":0,"6920":0,"6921":0,"6922":0,"6923":0,"6924":117,"6925":0,"6926":0,"6927":0,"6928":0,"6929":0,"6930":73,"6931":0,"6932":60,"6933":-1,"6934":-1,"6935":0,"6936":70,"6937":-1,"6938":0,"6939":111,"6940":0,"6941":0,"6942":0,"6943":-1,"6944":-1,"6945":0,"6946":-1,"6947":1423,"6948":-1,"6949":380,"6950":0,"6951":0,"6952":0,"6953":0,"6954":-1,"6955":-1,"6956":-1,"6957":0,"6958":1351,"6959":-1,"6960":-1,"6961":0,"6962":124,"6963":0,"6964":215,"6965":0,"6966":-1,"6967":357,"6968":0,"6969":0,"6970":0,"6971":-1,"6972":0,"6973":1484,"6974":-1,"6975":0,"6976":-1,"6977":1344,"6978":0,"6979":101,"6980":-1,"6981":-1,"6982":-1,"6983":0,"6984":-1,"6985":-1,"6986":0,"6987":-1,"6988":1389,"6989":0,"6990":0,"6991":1329,"6992":81,"6993":0,"6994":0,"6995":-1,"6996":1407,"6997":0,"6998":-1,"6999":0,"7000":14,"7001":75,"7002":-1,"7003":-1,"7004":-1,"7005":0,"7006":0,"7007":1577,"7008":-1,"7009":1444,"7010":-1,"7011":23,"7012":-1,"7013":1532,"7014":0,"7015":1535,"7016":0,"7017":0,"7018":1386,"7019":0,"7020":0,"7021":-1,"7022":1311,"7023":0,"7024":1358,"7025":-1,"7026":-1,"7027":0,"7028":375,"7029":1435,"7030":0,"7031":-1,"7032":1395,"7033":0,"7034":1406,"7035":173,"7036":256,"7037":0,"7038":-1,"7039":0,"7040":1345,"7041":0,"7042":0,"7043":0,"7044":1443,"7045":0,"7046":-1,"7047":0,"7048":0,"7049":-1,"7050":0,"7051":135,"7052":-1,"7053":266,"7054":0,"7055":-1,"7056":-1,"7057":0,"7058":1506,"7059":0,"7060":-1,"7061":1321,"7062":0,"7063":-1,"7064":5,"7065":0,"7066":0,"7067":-1,"7068":1455,"7069":0,"7070":0,"7071":0,"7072":1454,"7073":-1,"7074":0,"7075":-1,"7076":1298,"7077":0,"7078":0,"7079":283,"7080":36,"7081":0,"7082":0,"7083":0,"7084":0,"7085":0,"7086":1562,"7087":1378,"7088":0,"7089":0,"7090":0,"7091":-1,"7092":1307,"7093":0,"7094":-1,"7095":1491,"7096":0,"7097":26,"7098":0,"7099":-1,"7100":0,"7101":121,"7102":26,"7103":-1,"7104":-1,"7105":124,"7106":-1,"7107":-1,"7108":-1,"7109":0,"7110":1332,"7111":0,"7112":-1,"7113":0,"7114":0,"7115":-1,"7116":0,"7117":0,"7118":0,"7119":1549,"7120":0,"7121":0,"7122":-1,"7123":0,"7124":0,"7125":-1,"7126":-1,"7127":0,"7128":0,"7129":-1,"7130":24,"7131":214,"7132":0,"7133":0,"7134":0,"7135":-1,"7136":1316,"7137":0,"7138":1452,"7139":0,"7140":-1,"7141":-1,"7142":1547,"7143":0,"7144":163,"7145":0,"7146":0,"7147":-1,"7148":0,"7149":1482,"7150":-1,"7151":0,"7152":-1,"7153":11,"7154":-1,"7155":-1,"7156":339,"7157":1472,"7158":-1,"7159":0,"7160":-1,"7161":0,"7162":1422,"7163":0,"7164":-1,"7165":-1,"7166":0,"7167":0,"7168":135,"7169":-1,"7170":-1,"7171":-1,"7172":0,"7173":0,"7174":-1,"7175":0,"7176":0,"7177":136,"7178":1309,"7179":-1,"7180":-1,"7181":0,"7182":0,"7183":0,"7184":-1,"7185":0,"7186":-1,"7187":-1,"7188":0,"7189":0,"7190":16,"7191":-1,"7192":0,"7193":0,"7194":0,"7195":-1,"7196":-1,"7197":0,"7198":-1,"7199":1499,"7200":0,"7201":0,"7202":0,"7203":1324,"7204":-1,"7205":-1,"7206":1502,"7207":0,"7208":-1,"7209":0,"7210":0,"7211":1402,"7212":0,"7213":0,"7214":324,"7215":1551,"7216":362,"7217":-1,"7218":-1,"7219":0,"7220":0,"7221":0,"7222":0,"7223":-1,"7224":0,"7225":0,"7226":0,"7227":0,"7228":0,"7229":0,"7230":-1,"7231":0,"7232":-1,"7233":0,"7234":131,"7235":0,"7236":0,"7237":1527,"7238":-1,"7239":0,"7240":0,"7241":0,"7242":0,"7243":249,"7244":0,"7245":-1,"7246":1461,"7247":85,"7248":0,"7249":-1,"7250":-1,"7251":0,"7252":-1,"7253":-1,"7254":-1,"7255":-1,"7256":0,"7257":0,"7258":-1,"7259":0,"7260":0,"7261":40,"7262":167,"7263":-1,"7264":0,"7265":-1,"7266":1428,"7267":0,"7268":0,"7269":0,"7270":328,"7271":357,"7272":0,"7273":1350,"7274":0,"7275":-1,"7276":-1,"7277":221,"7278":0,"7279":1381,"7280":0,"7281":284,"7282":0,"7283":197,"7284":50,"7285":1436,"7286":0,"7287":-1,"7288":1382,"7289":-1,"7290":-1,"7291":0,"7292":0,"7293":1317,"7294":-1,"7295":305,"7296":0,"7297":0,"7298":-1,"7299":0,"7300":-1,"7301":-1,"7302":1514,"7303":0,"7304":0,"7305":-1,"7306":0,"7307":0,"7308":0,"7309":-1,"7310":-1,"7311":375,"7312":1424,"7313":1347,"7314":-1,"7315":-1,"7316":0,"7317":-1,"7318":-1,"7319":1385,"7320":0,"7321":0,"7322":0,"7323":-1,"7324":0,"7325":1308,"7326":-1,"7327":0,"7328":299,"7329":0,"7330":-1,"7331":1507,"7332":-1,"7333":0,"7334":1538,"7335":-1,"7336":-1,"7337":125,"7338":1349,"7339":211,"7340":0,"7341":-1,"7342":0,"7343":-1,"7344":-1,"7345":0,"7346":-1,"7347":0,"7348":0,"7349":0,"7350":0,"7351":1518,"7352":-1,"7353":0,"7354":343,"7355":-1,"7356":-1,"7357":0,"7358":0,"7359":-1,"7360":-1,"7361":0,"7362":199,"7363":10,"7364":270,"7365":1577,"7366":-1,"7367":-1,"7368":0,"7369":188,"7370":1382,"7371":-1,"7372":0,"7373":-1,"7374":217,"7375":0,"7376":0,"7377":-1,"7378":0,"7379":0,"7380":0,"7381":0,"7382":0,"7383":0,"7384":0,"7385":326,"7386":30,"7387":33,"7388":0,"7389":-1,"7390":-1,"7391":1407,"7392":0,"7393":0,"7394":-1,"7395":0,"7396":0,"7397":-1,"7398":0,"7399":0,"7400":-1,"7401":1545,"7402":0,"7403":0,"7404":0,"7405":144,"7406":1323,"7407":1424,"7408":1411,"7409":1555,"7410":-1,"7411":0,"7412":1336,"7413":102,"7414":0,"7415":1391,"7416":-1,"7417":-1,"7418":0,"7419":0,"7420":-1,"7421":0,"7422":188,"7423":0,"7424":1442,"7425":1547,"7426":-1,"7427":304,"7428":0,"7429":0,"7430":-1,"7431":1502,"7432":0,"7433":0,"7434":0,"7435":0,"7436":1540,"7437":0,"7438":-1,"7439":135,"7440":0,"7441":-1,"7442":1301,"7443":-1,"7444":-1,"7445":1549,"7446":0,"7447":0,"7448":0,"7449":-1,"7450":-1,"7451":0,"7452":0,"7453":1450,"7454":-1,"7455":0,"7456":0,"7457":1543,"7458":-1,"7459":0,"7460":-1,"7461":429,"7462":154,"7463":0,"7464":1380,"7465":0,"7466":0,"7467":0,"7468":1403,"7469":0,"7470":0,"7471":0,"7472":0,"7473":1419,"7474":0,"7475":1522,"7476":0,"7477":0,"7478":0,"7479":0,"7480":-1,"7481":0,"7482":0,"7483":1440,"7484":-1,"7485":-1,"7486":0,"7487":-1,"7488":0,"7489":0,"7490":0,"7491":-1,"7492":1548,"7493":-1,"7494":0,"7495":-1,"7496":-1,"7497":-1,"7498":0,"7499":-1,"7500":1408,"7501":1322,"7502":0,"7503":0,"7504":-1,"7505":-1,"7506":0,"7507":-1,"7508":4,"7509":0,"7510":1345,"7511":-1,"7512":-1,"7513":0,"7514":201,"7515":202,"7516":0,"7517":-1,"7518":-1,"7519":1361,"7520":1488,"7521":-1,"7522":0,"7523":0,"7524":0,"7525":0,"7526":0,"7527":-1,"7528":1302,"7529":0,"7530":-1,"7531":-1,"7532":-1,"7533":-1,"7534":112,"7535":0,"7536":1354,"7537":-1,"7538":0,"7539":246,"7540":283,"7541":0,"7542":-1,"7543":0,"7544":213,"7545":0,"7546":1318,"7547":-1,"7548":0,"7549":0,"7550":-1,"7551":0,"7552":385,"7553":1558,"7554":0,"7555":0,"7556":131,"7557":-1,"7558":158,"7559":0,"7560":1539,"7561":-1,"7562":0,"7563":0,"7564":1549,"7565":1468,"7566":0,"7567":-1,"7568":-1,"7569":-1,"7570":-1,"7571":-1,"7572":0,"7573":1514,"7574":0,"7575":1377,"7576":-1,"7577":0,"7578":0,"7579":0,"7580":-1,"7581":0,"7582":1576,"7583":0,"7584":328,"7585":0,"7586":-1,"7587":-1,"7588":0,"7589":1498,"7590":0,"7591":0,"7592":-1,"7593":0,"7594":0,"7595":-1,"7596":-1,"7597":0,"7598":0,"7599":0,"7600":0,"7601":-1,"7602":0,"7603":-1,"7604":0,"7605":-1,"7606":-1,"7607":0,"7608":0,"7609":-1,"7610":-1,"7611":0,"7612":0,"7613":161,"7614":140,"7615":0,"7616":1375,"7617":-1,"7618":0,"7619":-1,"7620":-1,"7621":-1,"7622":0,"7623":0,"7624":0,"7625":58,"7626":0,"7627":0,"7628":0,"7629":0,"7630":-1,"7631":0,"7632":1537,"7633":-1,"7634":0,"7635":0,"7636":1459,"7637":-1,"7638":0,"7639":-1,"7640":0,"7641":-1,"7642":1376,"7643":-1,"7644":0,"7645":-1,"7646":0,"7647":53,"7648":0,"7649":0,"7650":0,"7651":1534,"7652":-1,"7653":-1,"7654":0,"7655":350,"7656":1396,"7657":0,"7658":0,"7659":0,"7660":1581,"7661":1408,"7662":0,"7663":-1,"7664":0,"7665":1552,"7666":0,"7667":208,"7668":0,"7669":0,"7670":1452,"7671":1322,"7672":0,"7673":0,"7674":0,"7675":252,"7676":0,"7677":1426,"7678":0,"7679":0,"7680":-1,"7681":-1,"7682":0,"7683":-1,"7684":-1,"7685":154,"7686":0,"7687":-1,"7688":-1,"7689":0,"7690":-1,"7691":249,"7692":198,"7693":-1,"7694":0,"7695":0,"7696":0,"7697":1544,"7698":-1,"7699":-1,"7700":0,"7701":235,"7702":0,"7703":0,"7704":0,"7705":-1,"7706":2,"7707":-1,"7708":22,"7709":0,"7710":21,"7711":274,"7712":-1,"7713":0,"7714":0,"7715":0,"7716":0,"7717":1441,"7718":0,"7719":-1,"7720":0,"7721":0,"7722":0,"7723":1423,"7724":-1,"7725":-1,"7726":-1,"7727":0,"7728":0,"7729":0,"7730":0,"7731":0,"7732":0,"7733":0,"7734":-1,"7735":0,"7736":-1,"7737":-1,"7738":-1,"7739":-1,"7740":0,"7741":1324,"7742":0,"7743":129,"7744":0,"7745":481,"7746":1331,"7747":-1,"7748":-1,"7749":-1,"7750":1434,"7751":-1,"7752":0,"7753":-1,"7754":0,"7755":1322,"7756":1496,"7757":1424,"7758":-1,"7759":1314,"7760":0,"7761":-1,"7762":-1,"7763":366,"7764":0,"7765":406,"7766":0,"7767":0,"7768":-1,"7769":0,"7770":-1,"7771":0,"7772":0,"7773":-1,"7774":0,"7775":-1,"7776":1316,"7777":0,"7778":1476,"7779":-1,"7780":-1,"7781":0,"7782":0,"7783":0,"7784":0,"7785":342,"7786":-1,"7787":0,"7788":0,"7789":-1,"7790":-1,"7791":-1,"7792":1554,"7793":-1,"7794":0,"7795":0,"7796":165,"7797":0,"7798":0,"7799":70,"7800":0,"7801":-1,"7802":0,"7803":-1,"7804":-1,"7805":-1,"7806":0,"7807":0,"7808":-1,"7809":0,"7810":0,"7811":-1,"7812":0,"7813":0,"7814":310,"7815":297,"7816":0,"7817":0,"7818":1530,"7819":-1,"7820":-1,"7821":116,"7822":-1,"7823":-1,"7824":0,"7825":-1,"7826":81,"7827":1512,"7828":381,"7829":0,"7830":-1,"7831":0,"7832":1378,"7833":-1,"7834":0,"7835":0,"7836":0,"7837":1402,"7838":0,"7839":1524,"7840":-1,"7841":0,"7842":49,"7843":364,"7844":-1,"7845":-1,"7846":1368,"7847":0,"7848":0,"7849":0,"7850":-1,"7851":-1,"7852":0,"7853":1389,"7854":1409,"7855":-1,"7856":-1,"7857":77,"7858":-1,"7859":0,"7860":0,"7861":0,"7862":0,"7863":0,"7864":285,"7865":123,"7866":0,"7867":107,"7868":0,"7869":0,"7870":0,"7871":0,"7872":0,"7873":0,"7874":-1,"7875":0,"7876":-1,"7877":1464,"7878":-1,"7879":-1,"7880":354,"7881":0,"7882":-1,"7883":-1,"7884":-1,"7885":-1,"7886":1326,"7887":0,"7888":0,"7889":7,"7890":1432,"7891":1322,"7892":-1,"7893":0,"7894":-1,"7895":0,"7896":-1,"7897":0,"7898":1564,"7899":0,"7900":0,"7901":35,"7902":15,"7903":481,"7904":0,"7905":-1,"7906":302,"7907":1406,"7908":-1,"7909":0,"7910":0,"7911":1394,"7912":-1,"7913":-1,"7914":0,"7915":-1,"7916":0,"7917":0,"7918":1506,"7919":0,"7920":125,"7921":0,"7922":0,"7923":0,"7924":-1,"7925":0,"7926":0,"7927":1442,"7928":0,"7929":-1,"7930":0,"7931":0,"7932":1496,"7933":-1,"7934":-1,"7935":-1,"7936":0,"7937":0,"7938":0,"7939":-1,"7940":0,"7941":-1,"7942":-1,"7943":1556,"7944":1381,"7945":-1,"7946":0,"7947":-1,"7948":0,"7949":-1,"7950":-1,"7951":0,"7952":0,"7953":0,"7954":0,"7955":1574,"7956":1535,"7957":1514,"7958":1576,"7959":0,"7960":0,"7961":-1,"7962":62,"7963":0,"7964":0,"7965":0,"7966":1566,"7967":-1,"7968":-1,"7969":-1,"7970":-1,"7971":149,"7972":-1,"7973":67,"7974":0,"7975":310,"7976":235,"7977":1357,"7978":-1,"7979":1413,"7980":0,"7981":0,"7982":-1,"7983":0,"7984":215,"7985":0,"7986":-1,"7987":124,"7988":0,"7989":-1,"7990":-1,"7991":-1,"7992":0,"7993":1569,"7994":0,"7995":0,"7996":1393,"7997":-1,"7998":-1,"7999":121,"8000":1420,"8001":1462,"8002":-1,"8003":0,"8004":-1,"8005":-1,"8006":0,"8007":1454,"8008":0,"8009":324,"8010":-1,"8011":-1,"8012":1361,"8013":0,"8014":-1,"8015":0,"8016":1391,"8017":-1,"8018":0,"8019":-1,"8020":0,"8021":-1,"8022":0,"8023":148,"8024":0,"8025":0,"8026":-1,"8027":0,"8028":0,"8029":-1,"8030":1556,"8031":1355,"8032":0,"8033":-1,"8034":343,"8035":1532,"8036":0,"8037":-1,"8038":0,"8039":175,"8040":-1,"8041":-1,"8042":0,"8043":0,"8044":-1,"8045":0,"8046":-1,"8047":-1,"8048":1401,"8049":-1,"8050":-1,"8051":0,"8052":0,"8053":240,"8054":0,"8055":0,"8056":0,"8057":1349,"8058":1559,"8059":0,"8060":-1,"8061":-1,"8062":232,"8063":15,"8064":0,"8065":0,"8066":49,"8067":-1,"8068":-1,"8069":1507,"8070":0,"8071":0,"8072":-1,"8073":-1,"8074":-1,"8075":0,"8076":0,"8077":-1,"8078":129,"8079":-1,"8080":0,"8081":0,"8082":0,"8083":1369,"8084":0,"8085":0,"8086":24,"8087":-1,"8088":-1,"8089":0,"8090":-1,"8091":0,"8092":47,"8093":-1,"8094":0,"8095":0,"8096":-1,"8097":0,"8098":0,"8099":0,"8100":-1,"8101":-1,"8102":0,"8103":0,"8104":0,"8105":0,"8106":0,"8107":-1,"8108":-1,"8109":0,"8110":60,"8111":0,"8112":0,"8113":-1,"8114":-1,"8115":-1,"8116":-1,"8117":0,"8118":73,"8119":1419,"8120":-1,"8121":262,"8122":-1,"8123":187,"8124":0,"8125":0,"8126":-1,"8127":0,"8128":1407,"8129":0,"8130":0,"8131":73,"8132":0,"8133":0,"8134":0,"8135":-1,"8136":0,"8137":1312,"8138":-1,"8139":0,"8140":-1,"8141":-1,"8142":0,"8143":0,"8144":-1,"8145":0,"8146":-1,"8147":0,"8148":0,"8149":0,"8150":0,"8151":1535,"8152":-1,"8153":0,"8154":-1,"8155":1397,"8156":0,"8157":25,"8158":383,"8159":-1,"8160":-1,"8161":0,"8162":-1,"8163":-1,"8164":-1,"8165":259,"8166":-1,"8167":0,"8168":-1,"8169":1373,"8170":0,"8171":0,"8172":-1,"8173":-1,"8174":0,"8175":0,"8176":282,"8177":-1,"8178":155,"8179":0,"8180":0,"8181":0,"8182":-1,"8183":0,"8184":-1,"8185":45,"8186":0,"8187":0,"8188":1435,"8189":0,"8190":-1,"8191":0,"8192":26,"8193":1376,"8194":-1,"8195":0,"8196":0,"8197":1492,"8198":0,"8199":0,"8200":1529,"8201":28,"8202":0,"8203":-1,"8204":0,"8205":68,"8206":0,"8207":-1,"8208":0,"8209":0,"8210":1480,"8211":15,"8212":-1,"8213":-1,"8214":-1,"8215":1574,"8216":-1,"8217":-1,"8218":0,"8219":0,"8220":0,"8221":60,"8222":0,"8223":-1,"8224":0,"8225":-1,"8226":0,"8227":-1,"8228":1405,"8229":1533,"8230":-1,"8231":0,"8232":0,"8233":0,"8234":38,"8235":-1,"8236":0,"8237":0,"8238":111,"8239":0,"8240":1535,"8241":0,"8242":1498,"8243":0,"8244":-1,"8245":285,"8246":0,"8247":-1,"8248":182,"8249":1446,"8250":0,"8251":-1,"8252":1579,"8253":-1,"8254":0,"8255":240,"8256":-1,"8257":262,"8258":0,"8259":-1,"8260":0,"8261":307,"8262":-1,"8263":336,"8264":179,"8265":0,"8266":0,"8267":0,"8268":0,"8269":-1,"8270":1444,"8271":-1,"8272":25,"8273":-1,"8274":0,"8275":-1,"8276":0,"8277":-1,"8278":-1,"8279":1557,"8280":98,"8281":0,"8282":88,"8283":0,"8284":-1,"8285":1490,"8286":1330,"8287":-1,"8288":214,"8289":-1,"8290":0,"8291":373,"8292":0,"8293":0,"8294":-1,"8295":0,"8296":0,"8297":-1,"8298":-1,"8299":116,"8300":256,"8301":0,"8302":-1,"8303":170,"8304":0,"8305":1341,"8306":-1,"8307":-1,"8308":-1,"8309":1541,"8310":-1,"8311":0,"8312":-1,"8313":160,"8314":0,"8315":0,"8316":0,"8317":0,"8318":0,"8319":0,"8320":1498,"8321":0,"8322":-1,"8323":-1,"8324":-1,"8325":429,"8326":0,"8327":0,"8328":0,"8329":429,"8330":-1,"8331":1492,"8332":0,"8333":-1,"8334":-1,"8335":-1,"8336":0,"8337":0,"8338":0,"8339":0,"8340":0,"8341":1534,"8342":473,"8343":0,"8344":0,"8345":0,"8346":0,"8347":312,"8348":-1,"8349":-1,"8350":368,"8351":-1,"8352":0,"8353":68,"8354":0,"8355":0,"8356":219,"8357":0,"8358":0,"8359":157,"8360":0,"8361":0,"8362":0,"8363":1495,"8364":180,"8365":-1,"8366":198,"8367":0,"8368":-1,"8369":-1,"8370":1492,"8371":1546,"8372":0,"8373":0,"8374":0,"8375":33,"8376":-1,"8377":0,"8378":1470,"8379":0,"8380":0,"8381":0,"8382":211,"8383":357,"8384":0,"8385":257,"8386":0,"8387":0,"8388":0,"8389":304,"8390":0,"8391":-1,"8392":1462,"8393":-1,"8394":-1,"8395":0,"8396":0,"8397":-1,"8398":0,"8399":0,"8400":0,"8401":1574,"8402":1447,"8403":0,"8404":0,"8405":-1,"8406":29,"8407":-1,"8408":-1,"8409":-1,"8410":0,"8411":-1,"8412":0,"8413":0,"8414":1324,"8415":0,"8416":-1,"8417":0,"8418":0,"8419":-1,"8420":0,"8421":0,"8422":0,"8423":334,"8424":0,"8425":0,"8426":0,"8427":-1,"8428":0,"8429":-1,"8430":-1,"8431":129,"8432":0,"8433":0,"8434":-1,"8435":0,"8436":1541,"8437":323,"8438":-1,"8439":-1,"8440":235,"8441":0,"8442":0,"8443":-1,"8444":1523,"8445":0,"8446":-1,"8447":-1,"8448":1519,"8449":-1,"8450":1446,"8451":1486,"8452":0,"8453":0,"8454":-1,"8455":0,"8456":-1,"8457":120,"8458":-1,"8459":0,"8460":-1,"8461":0,"8462":106,"8463":0,"8464":-1,"8465":-1,"8466":0,"8467":0,"8468":0,"8469":-1,"8470":1480,"8471":1571,"8472":0,"8473":0,"8474":-1,"8475":1399,"8476":-1,"8477":0,"8478":0,"8479":-1,"8480":1358,"8481":0,"8482":-1,"8483":79,"8484":-1,"8485":1522,"8486":-1,"8487":-1,"8488":1568,"8489":1370,"8490":1444,"8491":255,"8492":0,"8493":0,"8494":1361,"8495":217,"8496":0,"8497":0,"8498":-1,"8499":0,"8500":334,"8501":17,"8502":352,"8503":42,"8504":-1,"8505":1353,"8506":291,"8507":-1,"8508":0,"8509":0,"8510":1433,"8511":0,"8512":0,"8513":1395,"8514":-1,"8515":0,"8516":0,"8517":-1,"8518":-1,"8519":0,"8520":1510,"8521":214,"8522":-1,"8523":-1,"8524":-1,"8525":3,"8526":0,"8527":1571,"8528":105,"8529":-1,"8530":0,"8531":1494,"8532":0,"8533":-1,"8534":0,"8535":-1,"8536":1439,"8537":30,"8538":0,"8539":-1,"8540":0,"8541":-1,"8542":0,"8543":-1,"8544":-1,"8545":1486,"8546":0,"8547":0,"8548":0,"8549":-1,"8550":0,"8551":0,"8552":-1,"8553":1374,"8554":0,"8555":-1,"8556":0,"8557":0,"8558":0,"8559":157,"8560":481,"8561":0,"8562":1580,"8563":1302,"8564":0,"8565":0,"8566":0,"8567":0,"8568":0,"8569":0,"8570":0,"8571":0,"8572":1453,"8573":-1,"8574":0,"8575":-1,"8576":1315,"8577":357,"8578":112,"8579":0,"8580":0,"8581":385,"8582":0,"8583":0,"8584":0,"8585":371,"8586":-1,"8587":-1,"8588":-1,"8589":-1,"8590":0,"8591":-1,"8592":0,"8593":0,"8594":96,"8595":0,"8596":-1,"8597":0,"8598":0,"8599":-1,"8600":0,"8601":0,"8602":0,"8603":0,"8604":0,"8605":0,"8606":341,"8607":1425,"8608":0,"8609":-1,"8610":-1,"8611":-1,"8612":-1,"8613":-1,"8614":-1,"8615":0,"8616":348,"8617":-1,"8618":0,"8619":-1,"8620":0,"8621":0,"8622":0,"8623":0,"8624":0,"8625":0,"8626":-1,"8627":0,"8628":359,"8629":-1,"8630":1383,"8631":-1,"8632":1364,"8633":0,"8634":-1,"8635":-1,"8636":207,"8637":0,"8638":0,"8639":0,"8640":-1,"8641":-1,"8642":0,"8643":0,"8644":-1,"8645":-1,"8646":21,"8647":1369,"8648":32,"8649":1475,"8650":0,"8651":-1,"8652":-1,"8653":-1,"8654":0,"8655":0,"8656":0,"8657":1331,"8658":-1,"8659":0,"8660":61,"8661":-1,"8662":0,"8663":0,"8664":0,"8665":0,"8666":-1,"8667":-1,"8668":0,"8669":1465,"8670":0,"8671":-1,"8672":-1,"8673":0,"8674":-1,"8675":0,"8676":0,"8677":-1,"8678":0,"8679":0,"8680":-1,"8681":0,"8682":0,"8683":0,"8684":1327,"8685":-1,"8686":42,"8687":0,"8688":0,"8689":-1,"8690":0,"8691":329,"8692":0,"8693":0,"8694":-1,"8695":0,"8696":1482,"8697":0,"8698":-1,"8699":0,"8700":1464,"8701":0,"8702":0,"8703":-1,"8704":-1,"8705":0,"8706":0,"8707":-1,"8708":153,"8709":0,"8710":36,"8711":0,"8712":0,"8713":0,"8714":0,"8715":0,"8716":1494,"8717":0,"8718":0,"8719":213,"8720":0,"8721":-1,"8722":1557,"8723":0,"8724":238,"8725":0,"8726":-1,"8727":1319,"8728":1546,"8729":0,"8730":0,"8731":0,"8732":-1,"8733":1430,"8734":0,"8735":0,"8736":0,"8737":1475,"8738":-1,"8739":0,"8740":1327,"8741":-1,"8742":0,"8743":1338,"8744":0,"8745":-1,"8746":0,"8747":0,"8748":0,"8749":0,"8750":0,"8751":-1,"8752":312,"8753":1408,"8754":75,"8755":-1,"8756":304,"8757":-1,"8758":0,"8759":-1,"8760":0,"8761":0,"8762":302,"8763":0,"8764":-1,"8765":22,"8766":0,"8767":0,"8768":0,"8769":194,"8770":0,"8771":-1,"8772":0,"8773":-1,"8774":226,"8775":0,"8776":-1,"8777":0,"8778":-1,"8779":1531,"8780":0,"8781":0,"8782":-1,"8783":0,"8784":190,"8785":-1,"8786":0,"8787":230,"8788":-1,"8789":0,"8790":246,"8791":0,"8792":0,"8793":-1,"8794":-1,"8795":1339,"8796":0,"8797":1477,"8798":0,"8799":149,"8800":1414,"8801":0,"8802":-1,"8803":0,"8804":0,"8805":257,"8806":0,"8807":0,"8808":0,"8809":-1,"8810":-1,"8811":17,"8812":0,"8813":-1,"8814":0,"8815":0,"8816":1308,"8817":-1,"8818":261,"8819":0,"8820":198,"8821":0,"8822":0,"8823":-1,"8824":1461,"8825":-1,"8826":0,"8827":0,"8828":-1,"8829":-1,"8830":0,"8831":-1,"8832":266,"8833":1491,"8834":0,"8835":-1,"8836":-1,"8837":0,"8838":0,"8839":0,"8840":-1,"8841":308,"8842":0,"8843":-1,"8844":-1,"8845":-1,"8846":0,"8847":-1,"8848":1351,"8849":-1,"8850":1365,"8851":-1,"8852":-1,"8853":0,"8854":0,"8855":1472,"8856":0,"8857":0,"8858":-1,"8859":0,"8860":0,"8861":0,"8862":1565,"8863":0,"8864":0,"8865":-1,"8866":0,"8867":0,"8868":-1,"8869":0,"8870":0,"8871":1465,"8872":159,"8873":-1,"8874":214,"8875":0,"8876":-1,"8877":0,"8878":0,"8879":-1,"8880":-1,"8881":0,"8882":1436,"8883":-1,"8884":-1,"8885":0,"8886":-1,"8887":0,"8888":0,"8889":0,"8890":-1,"8891":0,"8892":0,"8893":-1,"8894":1364,"8895":0,"8896":378,"8897":1517,"8898":0,"8899":-1,"8900":1299,"8901":-1,"8902":-1,"8903":25,"8904":0,"8905":-1,"8906":0,"8907":354,"8908":77,"8909":1325,"8910":0,"8911":0,"8912":76,"8913":-1,"8914":0,"8915":-1,"8916":-1,"8917":0,"8918":-1,"8919":1491,"8920":243,"8921":0,"8922":0,"8923":96,"8924":0,"8925":-1,"8926":0,"8927":-1,"8928":1427,"8929":-1,"8930":103,"8931":1374,"8932":-1,"8933":1449,"8934":-1,"8935":-1,"8936":-1,"8937":0,"8938":0,"8939":0,"8940":0,"8941":0,"8942":0,"8943":0,"8944":0,"8945":0,"8946":0,"8947":0,"8948":-1,"8949":0,"8950":1325,"8951":-1,"8952":-1,"8953":0,"8954":0,"8955":-1,"8956":1518,"8957":0,"8958":0,"8959":0,"8960":314,"8961":-1,"8962":152,"8963":-1,"8964":-1,"8965":354,"8966":369,"8967":-1,"8968":0,"8969":0,"8970":1511,"8971":0,"8972":0,"8973":0,"8974":-1,"8975":0,"8976":-1,"8977":190,"8978":1433,"8979":303,"8980":0,"8981":0,"8982":57,"8983":-1,"8984":-1,"8985":1454,"8986":0,"8987":0,"8988":0,"8989":165,"8990":-1,"8991":-1,"8992":1326,"8993":406,"8994":0,"8995":0,"8996":1338,"8997":0,"8998":0,"8999":0,"9000":0,"9001":0,"9002":0,"9003":0,"9004":0,"9005":-1,"9006":0,"9007":0,"9008":-1,"9009":0,"9010":-1,"9011":0,"9012":0,"9013":-1,"9014":317,"9015":-1,"9016":0,"9017":0,"9018":-1,"9019":0,"9020":0,"9021":1581,"9022":1418,"9023":0,"9024":-1,"9025":0,"9026":378,"9027":0,"9028":-1,"9029":1540,"9030":0,"9031":-1,"9032":-1,"9033":1395,"9034":77,"9035":0,"9036":0,"9037":0,"9038":0,"9039":0,"9040":0,"9041":-1,"9042":1443,"9043":0,"9044":1365,"9045":0,"9046":0,"9047":-1,"9048":-1,"9049":1562,"9050":334,"9051":0,"9052":0,"9053":0,"9054":0,"9055":0,"9056":-1,"9057":0,"9058":0,"9059":0,"9060":0,"9061":-1,"9062":1545,"9063":-1,"9064":-1,"9065":0,"9066":1449,"9067":1505,"9068":-1,"9069":0,"9070":0,"9071":0,"9072":0,"9073":234,"9074":-1,"9075":0,"9076":0,"9077":-1,"9078":-1,"9079":-1,"9080":293,"9081":179,"9082":1570,"9083":-1,"9084":-1,"9085":-1,"9086":323,"9087":-1,"9088":-1,"9089":-1,"9090":254,"9091":0,"9092":-1,"9093":-1,"9094":-1,"9095":1555,"9096":-1,"9097":-1,"9098":25,"9099":1574,"9100":1454,"9101":1400,"9102":-1,"9103":0,"9104":0,"9105":0,"9106":0,"9107":30,"9108":0,"9109":0,"9110":1326,"9111":0,"9112":-1,"9113":-1,"9114":-1,"9115":0,"9116":1479,"9117":0,"9118":0,"9119":-1,"9120":-1,"9121":0,"9122":347,"9123":-1,"9124":0,"9125":-1,"9126":1547,"9127":0,"9128":0,"9129":360,"9130":0,"9131":0,"9132":167,"9133":1345,"9134":0,"9135":131,"9136":0,"9137":-1,"9138":1462,"9139":-1,"9140":-1,"9141":0,"9142":-1,"9143":-1,"9144":0,"9145":310,"9146":1373,"9147":1347,"9148":160,"9149":0,"9150":0,"9151":1552,"9152":0,"9153":1364,"9154":0,"9155":0,"9156":1385,"9157":-1,"9158":-1,"9159":0,"9160":-1,"9161":-1,"9162":0,"9163":217,"9164":0,"9165":1469,"9166":0,"9167":0,"9168":-1,"9169":-1,"9170":1443,"9171":-1,"9172":-1,"9173":0,"9174":208,"9175":1415,"9176":0,"9177":0,"9178":0,"9179":-1,"9180":1488,"9181":0,"9182":0,"9183":0,"9184":38,"9185":-1,"9186":9,"9187":0,"9188":-1,"9189":0,"9190":-1,"9191":-1,"9192":1550,"9193":0,"9194":1415,"9195":0,"9196":1579,"9197":0,"9198":0,"9199":0,"9200":0,"9201":-1,"9202":271,"9203":291,"9204":0,"9205":0,"9206":1394,"9207":-1,"9208":0,"9209":317,"9210":88,"9211":-1,"9212":0,"9213":1429,"9214":0,"9215":0,"9216":288,"9217":0,"9218":0,"9219":3,"9220":206,"9221":-1,"9222":0,"9223":-1,"9224":-1,"9225":0,"9226":-1,"9227":0,"9228":37,"9229":0,"9230":-1,"9231":324,"9232":0,"9233":0,"9234":0,"9235":-1,"9236":230,"9237":-1,"9238":1477,"9239":-1,"9240":238,"9241":1433,"9242":-1,"9243":-1,"9244":0,"9245":0,"9246":0,"9247":0,"9248":-1,"9249":40,"9250":-1,"9251":-1,"9252":0,"9253":0,"9254":0,"9255":0,"9256":0,"9257":21,"9258":0,"9259":1408,"9260":0,"9261":0,"9262":-1,"9263":0,"9264":0,"9265":0,"9266":-1,"9267":-1,"9268":0,"9269":0,"9270":-1,"9271":0,"9272":1,"9273":0,"9274":0,"9275":0,"9276":93,"9277":0,"9278":0,"9279":0,"9280":-1,"9281":1367,"9282":366,"9283":-1,"9284":0,"9285":1383,"9286":-1,"9287":164,"9288":1309,"9289":1342,"9290":0,"9291":284,"9292":0,"9293":-1,"9294":67,"9295":-1,"9296":1522,"9297":-1,"9298":1553,"9299":0,"9300":0,"9301":-1,"9302":-1,"9303":-1,"9304":-1,"9305":-1,"9306":0,"9307":0,"9308":-1,"9309":0,"9310":0,"9311":136,"9312":-1,"9313":1413,"9314":-1,"9315":0,"9316":1442,"9317":406,"9318":-1,"9319":-1,"9320":-1,"9321":-1,"9322":-1,"9323":0,"9324":293,"9325":0,"9326":337,"9327":-1,"9328":0,"9329":-1,"9330":208,"9331":-1,"9332":-1,"9333":-1,"9334":-1,"9335":-1,"9336":0,"9337":-1,"9338":-1,"9339":-1,"9340":-1,"9341":-1,"9342":0,"9343":-1,"9344":0,"9345":1488,"9346":-1,"9347":0,"9348":1435,"9349":0,"9350":1313,"9351":1302,"9352":0,"9353":-1,"9354":1578,"9355":-1,"9356":-1,"9357":0,"9358":0,"9359":-1,"9360":0,"9361":-1,"9362":249,"9363":-1,"9364":0,"9365":-1,"9366":0,"9367":-1,"9368":-1,"9369":0,"9370":0,"9371":1433,"9372":0,"9373":1538,"9374":0,"9375":-1,"9376":0,"9377":0,"9378":-1,"9379":0,"9380":0,"9381":-1,"9382":-1,"9383":-1,"9384":0,"9385":-1,"9386":257,"9387":-1,"9388":0,"9389":-1,"9390":-1,"9391":253,"9392":-1,"9393":0,"9394":-1,"9395":264,"9396":257,"9397":-1,"9398":362,"9399":352,"9400":-1,"9401":-1,"9402":0,"9403":220,"9404":359,"9405":-1,"9406":1428,"9407":0,"9408":-1,"9409":0,"9410":-1,"9411":-1,"9412":1534,"9413":219,"9414":0,"9415":237,"9416":0,"9417":-1,"9418":-1,"9419":0,"9420":-1,"9421":1403,"9422":-1,"9423":0,"9424":0,"9425":-1,"9426":0,"9427":-1,"9428":174,"9429":-1,"9430":1551,"9431":-1,"9432":0,"9433":0,"9434":0,"9435":0,"9436":240,"9437":-1,"9438":0,"9439":0,"9440":-1,"9441":0,"9442":0,"9443":-1,"9444":282,"9445":1461,"9446":0,"9447":0,"9448":-1,"9449":32,"9450":-1,"9451":378,"9452":160,"9453":-1,"9454":-1,"9455":0,"9456":0,"9457":1389,"9458":1338,"9459":1425,"9460":-1,"9461":1351,"9462":1541,"9463":0,"9464":94,"9465":-1,"9466":-1,"9467":-1,"9468":-1,"9469":1508,"9470":-1,"9471":-1,"9472":246,"9473":0,"9474":0,"9475":-1,"9476":0,"9477":310,"9478":0,"9479":0,"9480":-1,"9481":-1,"9482":0,"9483":0,"9484":0,"9485":305,"9486":86,"9487":-1,"9488":0,"9489":0,"9490":0,"9491":10,"9492":-1,"9493":0,"9494":-1,"9495":-1,"9496":0,"9497":0,"9498":0,"9499":0,"9500":0,"9501":-1,"9502":0,"9503":0,"9504":160,"9505":0,"9506":-1,"9507":-1,"9508":0,"9509":1445,"9510":1584,"9511":-1,"9512":1560,"9513":1325,"9514":0,"9515":1327,"9516":0,"9517":-1,"9518":0,"9519":0,"9520":314,"9521":-1,"9522":0,"9523":32,"9524":0,"9525":322,"9526":-1,"9527":0,"9528":1387,"9529":162,"9530":-1,"9531":0,"9532":1548,"9533":-1,"9534":-1,"9535":-1,"9536":0,"9537":-1,"9538":-1,"9539":15,"9540":190,"9541":1513,"9542":-1,"9543":-1,"9544":-1,"9545":1473,"9546":0,"9547":133,"9548":-1,"9549":0,"9550":89,"9551":0,"9552":-1,"9553":-1,"9554":0,"9555":0,"9556":-1,"9557":0,"9558":-1,"9559":-1,"9560":203,"9561":-1,"9562":0,"9563":0,"9564":0,"9565":1543,"9566":163,"9567":1377,"9568":0,"9569":-1,"9570":1496,"9571":0,"9572":364,"9573":1324,"9574":1493,"9575":-1,"9576":-1,"9577":0,"9578":-1,"9579":0,"9580":240,"9581":302,"9582":0,"9583":0,"9584":-1,"9585":-1,"9586":-1,"9587":-1,"9588":259,"9589":158,"9590":1547,"9591":0,"9592":0,"9593":-1,"9594":0,"9595":1307,"9596":1458,"9597":0,"9598":0,"9599":-1,"9600":362,"9601":-1,"9602":1343,"9603":-1,"9604":0,"9605":-1,"9606":0,"9607":-1,"9608":0,"9609":1375,"9610":0,"9611":0,"9612":203,"9613":0,"9614":-1,"9615":-1,"9616":25,"9617":-1,"9618":0,"9619":0,"9620":0,"9621":-1,"9622":1487,"9623":330,"9624":-1,"9625":0,"9626":1510,"9627":0,"9628":124,"9629":1484,"9630":0,"9631":0,"9632":0,"9633":0,"9634":1468,"9635":1420,"9636":-1,"9637":-1,"9638":1450,"9639":0,"9640":47,"9641":0,"9642":0,"9643":317,"9644":-1,"9645":224,"9646":0,"9647":83,"9648":0,"9649":-1,"9650":0,"9651":0,"9652":0,"9653":0,"9654":-1,"9655":350,"9656":197,"9657":-1,"9658":0,"9659":0,"9660":-1,"9661":0,"9662":-1,"9663":0,"9664":359,"9665":-1,"9666":-1,"9667":0,"9668":244,"9669":0,"9670":0,"9671":0,"9672":-1,"9673":0,"9674":0,"9675":-1,"9676":-1,"9677":0,"9678":0,"9679":252,"9680":1325,"9681":0,"9682":0,"9683":-1,"9684":-1,"9685":364,"9686":94,"9687":0,"9688":1515,"9689":369,"9690":0,"9691":1569,"9692":-1,"9693":0,"9694":0,"9695":65,"9696":140,"9697":86,"9698":0,"9699":6,"9700":0,"9701":0,"9702":0,"9703":1472,"9704":1496,"9705":0,"9706":0,"9707":0,"9708":-1,"9709":-1,"9710":0,"9711":289,"9712":0,"9713":0,"9714":0,"9715":-1,"9716":-1,"9717":248,"9718":0,"9719":26,"9720":-1,"9721":0,"9722":0,"9723":0,"9724":0,"9725":28,"9726":1410,"9727":-1,"9728":46,"9729":0,"9730":0,"9731":-1,"9732":-1,"9733":-1,"9734":58,"9735":0,"9736":159,"9737":0,"9738":28,"9739":0,"9740":1356,"9741":0,"9742":0,"9743":0,"9744":0,"9745":197,"9746":0,"9747":12,"9748":0,"9749":0,"9750":0,"9751":0,"9752":0,"9753":-1,"9754":-1,"9755":1551,"9756":-1,"9757":1305,"9758":0,"9759":1400,"9760":0,"9761":0,"9762":0,"9763":1313,"9764":-1,"9765":-1,"9766":71,"9767":0,"9768":1412,"9769":241,"9770":-1,"9771":0,"9772":-1,"9773":1332,"9774":1557,"9775":343,"9776":-1,"9777":190,"9778":-1,"9779":0,"9780":0,"9781":-1,"9782":-1,"9783":0,"9784":-1,"9785":0,"9786":0,"9787":0,"9788":0,"9789":0,"9790":0,"9791":0,"9792":0,"9793":-1,"9794":0,"9795":-1,"9796":0,"9797":0,"9798":199,"9799":1354,"9800":-1,"9801":-1,"9802":0,"9803":0,"9804":0,"9805":0,"9806":0,"9807":0,"9808":-1,"9809":0,"9810":1385,"9811":0,"9812":0,"9813":74,"9814":-1,"9815":0,"9816":0,"9817":-1,"9818":0,"9819":-1,"9820":0,"9821":0,"9822":-1,"9823":0,"9824":0,"9825":-1,"9826":1490,"9827":-1,"9828":0,"9829":-1,"9830":-1,"9831":-1,"9832":-1,"9833":0,"9834":0,"9835":-1,"9836":-1,"9837":-1,"9838":0,"9839":1580,"9840":1466,"9841":-1,"9842":-1,"9843":0,"9844":-1,"9845":-1,"9846":1545,"9847":1309,"9848":0,"9849":0,"9850":1394,"9851":0,"9852":-1,"9853":-1,"9854":1355,"9855":0,"9856":-1,"9857":1384,"9858":-1,"9859":0,"9860":1394,"9861":1435,"9862":-1,"9863":-1,"9864":0,"9865":0,"9866":86,"9867":1322,"9868":1377,"9869":-1,"9870":213,"9871":-1,"9872":1506,"9873":0,"9874":0,"9875":0,"9876":-1,"9877":-1,"9878":286,"9879":0,"9880":37,"9881":0,"9882":0,"9883":155,"9884":-1,"9885":0,"9886":-1,"9887":0,"9888":0,"9889":297,"9890":1466,"9891":240,"9892":0,"9893":0,"9894":0,"9895":0,"9896":0,"9897":172,"9898":0,"9899":-1,"9900":0,"9901":-1,"9902":0,"9903":1520,"9904":0,"9905":0,"9906":1529,"9907":0,"9908":0,"9909":1303,"9910":1351,"9911":1377,"9912":1380,"9913":-1,"9914":1575,"9915":0,"9916":62,"9917":0,"9918":1401,"9919":1452,"9920":-1,"9921":0,"9922":0,"9923":0,"9924":0,"9925":-1,"9926":0,"9927":-1,"9928":-1,"9929":1565,"9930":-1,"9931":73,"9932":197,"9933":0,"9934":1522,"9935":0,"9936":1417,"9937":0,"9938":-1,"9939":-1,"9940":68,"9941":0,"9942":0,"9943":0,"9944":-1,"9945":-1,"9946":322,"9947":0,"9948":1519,"9949":-1,"9950":-1,"9951":0,"9952":1434,"9953":262,"9954":1424,"9955":64,"9956":0,"9957":0,"9958":0,"9959":473,"9960":0,"9961":1559,"9962":0,"9963":1402,"9964":0,"9965":0,"9966":-1,"9967":1443,"9968":1495,"9969":0,"9970":1488,"9971":0,"9972":1337,"9973":370,"9974":0,"9975":1315,"9976":0,"9977":123,"9978":40,"9979":-1,"9980":271,"9981":-1,"9982":-1,"9983":0,"9984":180,"9985":0,"9986":0,"9987":-1,"9988":93,"9989":299,"9990":0,"9991":-1,"9992":-1,"9993":273,"9994":89,"9995":-1,"9996":0,"9997":-1,"9998":0,"9999":-1,"10000":-1,"10001":1469,"10002":0,"10003":-1,"10004":3,"10005":1305,"10006":0,"10007":0,"10008":1489,"10009":55,"10010":1494,"10011":-1,"10012":-1,"10013":0,"10014":0,"10015":0,"10016":134,"10017":1511,"10018":0,"10019":0,"10020":-1,"10021":0,"10022":0,"10023":0,"10024":0,"10025":-1,"10026":-1,"10027":0,"10028":0,"10029":-1,"10030":0,"10031":0,"10032":0,"10033":-1,"10034":0,"10035":192,"10036":48,"10037":53,"10038":0,"10039":-1,"10040":96,"10041":0,"10042":0,"10043":0,"10044":0,"10045":-1,"10046":0,"10047":0,"10048":-1,"10049":-1,"10050":0,"10051":-1,"10052":-1,"10053":0,"10054":0,"10055":-1,"10056":0,"10057":0,"10058":0,"10059":0,"10060":0,"10061":1518,"10062":48,"10063":-1,"10064":0,"10065":-1,"10066":1474,"10067":-1,"10068":0,"10069":0,"10070":1461,"10071":0,"10072":-1,"10073":-1,"10074":0,"10075":81,"10076":41,"10077":-1,"10078":0,"10079":162,"10080":0,"10081":0,"10082":0,"10083":0,"10084":0,"10085":0,"10086":230,"10087":0,"10088":0,"10089":-1,"10090":58,"10091":0,"10092":0,"10093":-1,"10094":56,"10095":0,"10096":0,"10097":-1,"10098":0,"10099":0,"10100":1320,"10101":-1,"10102":0,"10103":1304,"10104":1529,"10105":202,"10106":0,"10107":1563,"10108":-1,"10109":0,"10110":-1,"10111":0,"10112":0,"10113":0,"10114":1345,"10115":0,"10116":124,"10117":0,"10118":0,"10119":-1,"10120":-1,"10121":-1,"10122":0,"10123":-1,"10124":0,"10125":0,"10126":0,"10127":0,"10128":0,"10129":-1,"10130":-1,"10131":0,"10132":0,"10133":0,"10134":180,"10135":23,"10136":0,"10137":1351,"10138":0,"10139":0,"10140":0,"10141":-1,"10142":-1,"10143":-1,"10144":0,"10145":174,"10146":0,"10147":0,"10148":0,"10149":166,"10150":-1,"10151":1456,"10152":0,"10153":1516,"10154":219,"10155":1581,"10156":-1,"10157":0,"10158":1313,"10159":-1,"10160":1555,"10161":0,"10162":-1,"10163":-1,"10164":0,"10165":286,"10166":202,"10167":-1,"10168":1415,"10169":-1,"10170":373,"10171":0,"10172":0,"10173":0,"10174":1535,"10175":0,"10176":-1,"10177":0,"10178":0,"10179":214,"10180":0,"10181":0,"10182":326,"10183":28,"10184":1481,"10185":-1,"10186":0,"10187":0,"10188":302,"10189":0,"10190":140,"10191":69,"10192":-1,"10193":-1,"10194":-1,"10195":0,"10196":0,"10197":0,"10198":-1,"10199":117,"10200":-1,"10201":1320,"10202":0,"10203":1573,"10204":378,"10205":0,"10206":0,"10207":-1,"10208":0,"10209":0,"10210":0,"10211":-1,"10212":-1,"10213":1542,"10214":72,"10215":1548,"10216":-1,"10217":0,"10218":1391,"10219":1497,"10220":1339,"10221":-1,"10222":0,"10223":23,"10224":0,"10225":0,"10226":1337,"10227":1515,"10228":301,"10229":0,"10230":0,"10231":0,"10232":-1,"10233":-1,"10234":0,"10235":337,"10236":289,"10237":1375,"10238":0,"10239":0,"10240":1392,"10241":0,"10242":0,"10243":0,"10244":0,"10245":1378,"10246":0,"10247":-1,"10248":0,"10249":0,"10250":0,"10251":0,"10252":-1,"10253":-1,"10254":134,"10255":73,"10256":-1,"10257":1312,"10258":0,"10259":1384,"10260":1484,"10261":-1,"10262":0,"10263":0,"10264":-1,"10265":0,"10266":0,"10267":1315,"10268":-1,"10269":0,"10270":0,"10271":0,"10272":1433,"10273":30,"10274":0,"10275":-1,"10276":192,"10277":0,"10278":-1,"10279":-1,"10280":0,"10281":0,"10282":371,"10283":0,"10284":-1,"10285":1425,"10286":1566,"10287":-1,"10288":0,"10289":-1,"10290":0,"10291":1435,"10292":0,"10293":-1,"10294":0,"10295":-1,"10296":281,"10297":-1,"10298":0,"10299":-1,"10300":-1,"10301":-1,"10302":1518,"10303":-1,"10304":0,"10305":0,"10306":129,"10307":15,"10308":1339,"10309":1482,"10310":145,"10311":1372,"10312":334,"10313":-1,"10314":0,"10315":-1,"10316":0,"10317":-1,"10318":-1,"10319":1554,"10320":-1,"10321":0,"10322":0,"10323":1332,"10324":0,"10325":0,"10326":-1,"10327":-1,"10328":-1,"10329":1451,"10330":0,"10331":-1,"10332":-1,"10333":216,"10334":28,"10335":0,"10336":-1,"10337":-1,"10338":-1,"10339":1445,"10340":-1,"10341":45,"10342":1299,"10343":0,"10344":180,"10345":0,"10346":0,"10347":54,"10348":-1,"10349":0,"10350":0,"10351":1490,"10352":1461,"10353":0,"10354":1466,"10355":0,"10356":1494,"10357":-1,"10358":1320,"10359":0,"10360":0,"10361":0,"10362":0,"10363":0,"10364":-1,"10365":0,"10366":163,"10367":244,"10368":357,"10369":0,"10370":0,"10371":-1,"10372":0,"10373":-1,"10374":-1,"10375":0,"10376":240,"10377":0,"10378":0,"10379":0,"10380":-1,"10381":0,"10382":-1,"10383":0,"10384":-1,"10385":-1,"10386":0,"10387":-1,"10388":195,"10389":0,"10390":0,"10391":0,"10392":0,"10393":214,"10394":215,"10395":-1,"10396":1298,"10397":0,"10398":1315,"10399":0,"10400":0,"10401":0,"10402":-1,"10403":-1,"10404":0,"10405":-1,"10406":-1,"10407":-1,"10408":-1,"10409":0,"10410":0,"10411":0,"10412":0,"10413":0,"10414":0,"10415":0,"10416":0,"10417":81,"10418":0,"10419":237,"10420":0,"10421":1420,"10422":-1,"10423":0,"10424":-1,"10425":46,"10426":-1,"10427":-1,"10428":0,"10429":206,"10430":-1,"10431":1469,"10432":-1,"10433":1518,"10434":-1,"10435":-1,"10436":-1,"10437":0,"10438":-1,"10439":0,"10440":1318,"10441":0,"10442":-1,"10443":324,"10444":0,"10445":0,"10446":0,"10447":0,"10448":0,"10449":1571,"10450":0,"10451":0,"10452":-1,"10453":-1,"10454":181,"10455":1546,"10456":0,"10457":86,"10458":-1,"10459":-1,"10460":0,"10461":-1,"10462":-1,"10463":51,"10464":0,"10465":-1,"10466":51,"10467":1463,"10468":0,"10469":1298,"10470":481,"10471":0,"10472":1379,"10473":1519,"10474":-1,"10475":-1,"10476":0,"10477":197,"10478":1339,"10479":1504,"10480":-1,"10481":278,"10482":0,"10483":148,"10484":-1,"10485":0,"10486":0,"10487":0,"10488":0,"10489":0,"10490":0,"10491":109,"10492":-1,"10493":0,"10494":-1,"10495":202,"10496":1511,"10497":-1,"10498":137,"10499":0,"10500":1516,"10501":0,"10502":253,"10503":-1,"10504":-1,"10505":-1,"10506":0,"10507":-1,"10508":0,"10509":-1,"10510":0,"10511":0,"10512":0,"10513":-1,"10514":-1,"10515":1471,"10516":0,"10517":1478,"10518":-1,"10519":0,"10520":-1,"10521":0,"10522":-1,"10523":0,"10524":298,"10525":-1,"10526":0,"10527":0,"10528":0,"10529":0,"10530":-1,"10531":0,"10532":60,"10533":111,"10534":0,"10535":79,"10536":0,"10537":0,"10538":-1,"10539":-1,"10540":-1,"10541":-1,"10542":1342,"10543":0,"10544":0,"10545":0,"10546":0,"10547":313,"10548":0,"10549":1364,"10550":1449,"10551":0,"10552":-1,"10553":1567,"10554":0,"10555":0,"10556":-1,"10557":0,"10558":0,"10559":312,"10560":0,"10561":381,"10562":186,"10563":1308,"10564":0,"10565":1335,"10566":1340,"10567":1483,"10568":0,"10569":1352,"10570":0,"10571":45,"10572":0,"10573":-1,"10574":-1,"10575":252,"10576":1384,"10577":0,"10578":0,"10579":145,"10580":0,"10581":0,"10582":1512,"10583":267,"10584":1533,"10585":-1,"10586":306,"10587":301,"10588":-1,"10589":0,"10590":1530,"10591":-1,"10592":1450,"10593":39,"10594":-1,"10595":323,"10596":330,"10597":1489,"10598":-1,"10599":-1,"10600":-1,"10601":-1,"10602":-1,"10603":0,"10604":0,"10605":0,"10606":-1,"10607":-1,"10608":1434,"10609":1440,"10610":0,"10611":0,"10612":-1,"10613":-1,"10614":-1,"10615":0,"10616":1547,"10617":0,"10618":0,"10619":0,"10620":-1,"10621":-1,"10622":-1,"10623":42,"10624":0,"10625":0,"10626":0,"10627":234,"10628":55,"10629":-1,"10630":1372,"10631":371,"10632":1376,"10633":0,"10634":0,"10635":0,"10636":0,"10637":1389,"10638":220,"10639":-1,"10640":0,"10641":-1,"10642":273,"10643":0,"10644":0,"10645":1469,"10646":-1,"10647":0,"10648":-1,"10649":0,"10650":-1,"10651":-1,"10652":1545,"10653":0,"10654":1471,"10655":0,"10656":-1,"10657":255,"10658":0,"10659":-1,"10660":-1,"10661":1514,"10662":0,"10663":-1,"10664":0,"10665":0,"10666":-1,"10667":-1,"10668":166,"10669":61,"10670":-1,"10671":0,"10672":-1,"10673":1375,"10674":0,"10675":1546,"10676":0,"10677":-1,"10678":-1,"10679":-1,"10680":0,"10681":-1,"10682":0,"10683":-1,"10684":0,"10685":0,"10686":-1,"10687":1493,"10688":78,"10689":-1,"10690":0,"10691":0,"10692":0,"10693":0,"10694":-1,"10695":-1,"10696":1313,"10697":0,"10698":-1,"10699":-1,"10700":-1,"10701":346,"10702":236,"10703":-1,"10704":0,"10705":283,"10706":0,"10707":1471,"10708":-1,"10709":406,"10710":1317,"10711":0,"10712":-1,"10713":-1,"10714":-1,"10715":17,"10716":0,"10717":273,"10718":-1,"10719":0,"10720":0,"10721":-1,"10722":-1,"10723":1389,"10724":0,"10725":-1,"10726":0,"10727":-1,"10728":-1,"10729":0,"10730":-1,"10731":0,"10732":-1,"10733":79,"10734":1466,"10735":0,"10736":-1,"10737":373,"10738":1572,"10739":96,"10740":1337,"10741":0,"10742":0,"10743":127,"10744":0,"10745":0,"10746":179,"10747":0,"10748":0,"10749":0,"10750":-1,"10751":-1,"10752":1336,"10753":0,"10754":1389,"10755":-1,"10756":0,"10757":0,"10758":0,"10759":0,"10760":0,"10761":0,"10762":0,"10763":0,"10764":0,"10765":-1,"10766":-1,"10767":0,"10768":0,"10769":-1,"10770":1476,"10771":0,"10772":202,"10773":0,"10774":0,"10775":0,"10776":0,"10777":0,"10778":-1,"10779":-1,"10780":0,"10781":-1,"10782":0,"10783":1369,"10784":0,"10785":0,"10786":0,"10787":0,"10788":0,"10789":0,"10790":-1,"10791":1491,"10792":323,"10793":216,"10794":0,"10795":-1,"10796":-1,"10797":0,"10798":0,"10799":-1,"10800":375,"10801":1426,"10802":-1,"10803":-1,"10804":1429,"10805":-1,"10806":-1,"10807":0,"10808":23,"10809":0,"10810":0,"10811":1583,"10812":1554,"10813":0,"10814":1540,"10815":0,"10816":1436,"10817":0,"10818":0,"10819":0,"10820":127,"10821":0,"10822":-1,"10823":-1,"10824":0,"10825":0,"10826":-1,"10827":0,"10828":53,"10829":-1,"10830":-1,"10831":-1,"10832":0,"10833":1351,"10834":1310,"10835":0,"10836":0,"10837":-1,"10838":383,"10839":162,"10840":186,"10841":29,"10842":0,"10843":-1,"10844":0,"10845":0,"10846":0,"10847":0,"10848":0,"10849":-1,"10850":0,"10851":0,"10852":-1,"10853":0,"10854":0,"10855":0,"10856":155,"10857":1481,"10858":-1,"10859":-1,"10860":0,"10861":0,"10862":1338,"10863":131,"10864":0,"10865":0,"10866":0,"10867":-1,"10868":-1,"10869":-1,"10870":0,"10871":0,"10872":0,"10873":0,"10874":-1,"10875":0,"10876":0,"10877":0,"10878":0,"10879":186,"10880":0,"10881":-1,"10882":-1,"10883":0,"10884":-1,"10885":0,"10886":1319,"10887":-1,"10888":-1,"10889":0,"10890":256,"10891":0,"10892":188,"10893":0,"10894":234,"10895":-1,"10896":0,"10897":1368,"10898":-1,"10899":0,"10900":0,"10901":0,"10902":0,"10903":-1,"10904":-1,"10905":0,"10906":267,"10907":1322,"10908":-1,"10909":0,"10910":0,"10911":120,"10912":0,"10913":-1,"10914":1572,"10915":0,"10916":-1,"10917":0,"10918":208,"10919":0,"10920":-1,"10921":0,"10922":0,"10923":0,"10924":0,"10925":0,"10926":-1,"10927":1571,"10928":0,"10929":0,"10930":0,"10931":0,"10932":-1,"10933":1358,"10934":0,"10935":-1,"10936":33,"10937":0,"10938":1528,"10939":-1,"10940":0,"10941":0,"10942":1307,"10943":0,"10944":-1,"10945":111,"10946":-1,"10947":-1,"10948":-1,"10949":-1,"10950":0,"10951":40,"10952":0,"10953":0,"10954":0,"10955":1552,"10956":-1,"10957":0,"10958":-1,"10959":1310,"10960":0,"10961":0,"10962":-1,"10963":0,"10964":-1,"10965":-1,"10966":-1,"10967":0,"10968":0,"10969":-1,"10970":0,"10971":0,"10972":0,"10973":0,"10974":0,"10975":217,"10976":0,"10977":-1,"10978":0,"10979":0,"10980":-1,"10981":-1,"10982":0,"10983":0,"10984":-1,"10985":-1,"10986":0,"10987":1426,"10988":1582,"10989":-1,"10990":0,"10991":-1,"10992":0,"10993":0,"10994":0,"10995":-1,"10996":1540,"10997":0,"10998":-1,"10999":-1,"11000":40,"11001":-1,"11002":0,"11003":0,"11004":-1,"11005":0,"11006":-1,"11007":0,"11008":0,"11009":-1,"11010":-1,"11011":0,"11012":45,"11013":-1,"11014":0,"11015":1460,"11016":0,"11017":0,"11018":-1,"11019":-1,"11020":0,"11021":134,"11022":-1,"11023":208,"11024":180,"11025":6,"11026":-1,"11027":51,"11028":0,"11029":1524,"11030":0,"11031":0,"11032":0,"11033":-1,"11034":0,"11035":1484,"11036":-1,"11037":1418,"11038":-1,"11039":0,"11040":-1,"11041":0,"11042":0,"11043":-1,"11044":0,"11045":0,"11046":1389,"11047":35,"11048":-1,"11049":-1,"11050":1452,"11051":1509,"11052":1378,"11053":0,"11054":-1,"11055":1405,"11056":-1,"11057":0,"11058":0,"11059":1411,"11060":-1,"11061":0,"11062":0,"11063":-1,"11064":0,"11065":0,"11066":0,"11067":-1,"11068":0,"11069":1311,"11070":-1,"11071":264,"11072":-1,"11073":0,"11074":0,"11075":0,"11076":-1,"11077":1525,"11078":0,"11079":1564,"11080":0,"11081":0,"11082":1342,"11083":1550,"11084":0,"11085":121,"11086":0,"11087":0,"11088":1577,"11089":1522,"11090":0,"11091":365,"11092":-1,"11093":0,"11094":0,"11095":-1,"11096":-1,"11097":-1,"11098":0,"11099":1310,"11100":0,"11101":0,"11102":0,"11103":-1,"11104":0,"11105":-1,"11106":131,"11107":0,"11108":-1,"11109":0,"11110":348,"11111":0,"11112":-1,"11113":1494,"11114":0,"11115":-1,"11116":1446,"11117":1424,"11118":-1,"11119":1322,"11120":0,"11121":1449,"11122":-1,"11123":0,"11124":-1,"11125":1472,"11126":337,"11127":0,"11128":-1,"11129":-1,"11130":111,"11131":131,"11132":-1,"11133":0,"11134":-1,"11135":0,"11136":-1,"11137":0,"11138":0,"11139":-1,"11140":-1,"11141":-1,"11142":0,"11143":-1,"11144":-1,"11145":0,"11146":0,"11147":0,"11148":0,"11149":0,"11150":0,"11151":-1,"11152":0,"11153":0,"11154":1531,"11155":-1,"11156":0,"11157":1470,"11158":-1,"11159":1378,"11160":-1,"11161":-1,"11162":0,"11163":271,"11164":0,"11165":0,"11166":256,"11167":360,"11168":0,"11169":0,"11170":-1,"11171":0,"11172":0,"11173":224,"11174":1311,"11175":0,"11176":0,"11177":-1,"11178":0,"11179":0,"11180":0,"11181":-1,"11182":1536,"11183":0,"11184":0,"11185":-1,"11186":0,"11187":-1,"11188":-1,"11189":-1,"11190":0,"11191":0,"11192":-1,"11193":-1,"11194":-1,"11195":-1,"11196":0,"11197":0,"11198":0,"11199":-1,"11200":0,"11201":322,"11202":-1,"11203":188,"11204":0,"11205":0,"11206":-1,"11207":-1,"11208":-1,"11209":0,"11210":0,"11211":-1,"11212":-1,"11213":0,"11214":-1,"11215":0,"11216":228,"11217":0,"11218":1514,"11219":0,"11220":0,"11221":1547,"11222":-1,"11223":-1,"11224":0,"11225":0,"11226":0,"11227":0,"11228":-1,"11229":0,"11230":0,"11231":-1,"11232":0,"11233":119,"11234":0,"11235":106,"11236":-1,"11237":-1,"11238":-1,"11239":0,"11240":215,"11241":0,"11242":0,"11243":0,"11244":-1,"11245":0,"11246":0,"11247":-1,"11248":-1,"11249":0,"11250":-1,"11251":384,"11252":0,"11253":-1,"11254":0,"11255":-1,"11256":0,"11257":-1,"11258":-1,"11259":-1,"11260":-1,"11261":1322,"11262":0,"11263":0,"11264":-1,"11265":107,"11266":0,"11267":0,"11268":203,"11269":1512,"11270":-1,"11271":-1,"11272":1378,"11273":1466,"11274":1418,"11275":-1,"11276":1464,"11277":334,"11278":1388,"11279":0,"11280":1582,"11281":0,"11282":0,"11283":1582,"11284":0,"11285":-1,"11286":1579,"11287":0,"11288":0,"11289":-1,"11290":0,"11291":-1,"11292":0,"11293":-1,"11294":-1,"11295":1424,"11296":-1,"11297":0,"11298":-1,"11299":-1,"11300":0,"11301":150,"11302":1375,"11303":0,"11304":2,"11305":0,"11306":-1,"11307":1331,"11308":137,"11309":-1,"11310":88,"11311":190,"11312":1442,"11313":1342,"11314":-1,"11315":0,"11316":330,"11317":0,"11318":297,"11319":-1,"11320":-1,"11321":1346,"11322":0,"11323":0,"11324":1405,"11325":159,"11326":-1,"11327":0,"11328":0,"11329":0,"11330":0,"11331":0,"11332":0,"11333":0,"11334":0,"11335":1337,"11336":0,"11337":0,"11338":-1,"11339":0,"11340":52,"11341":-1,"11342":0,"11343":-1,"11344":0,"11345":0,"11346":264,"11347":-1,"11348":0,"11349":1365,"11350":0,"11351":0,"11352":0,"11353":0,"11354":0,"11355":-1,"11356":0,"11357":0,"11358":0,"11359":-1,"11360":0,"11361":0,"11362":0,"11363":32,"11364":0,"11365":0,"11366":0,"11367":0,"11368":-1,"11369":1560,"11370":0,"11371":0,"11372":-1,"11373":1544,"11374":-1,"11375":0,"11376":0,"11377":-1,"11378":0,"11379":0,"11380":-1,"11381":-1,"11382":1422,"11383":0,"11384":0,"11385":-1,"11386":0,"11387":1303,"11388":-1,"11389":1310,"11390":0,"11391":1384,"11392":0,"11393":-1,"11394":1347,"11395":155,"11396":0,"11397":0,"11398":0,"11399":-1,"11400":-1,"11401":0,"11402":0,"11403":0,"11404":0,"11405":19,"11406":1406,"11407":-1,"11408":-1,"11409":-1,"11410":0,"11411":0,"11412":-1,"11413":213,"11414":0,"11415":0,"11416":0,"11417":0,"11418":-1,"11419":0,"11420":373,"11421":1358,"11422":-1,"11423":0,"11424":0,"11425":-1,"11426":0,"11427":-1,"11428":-1,"11429":140,"11430":0,"11431":-1,"11432":279,"11433":0,"11434":111,"11435":0,"11436":0,"11437":0,"11438":220,"11439":0,"11440":0,"11441":1460,"11442":-1,"11443":-1,"11444":0,"11445":7,"11446":1351,"11447":-1,"11448":-1,"11449":0,"11450":92,"11451":0,"11452":4,"11453":-1,"11454":0,"11455":81,"11456":-1,"11457":-1,"11458":350,"11459":1430,"11460":-1,"11461":-1,"11462":0,"11463":-1,"11464":1339,"11465":0,"11466":1351,"11467":0,"11468":0,"11469":0,"11470":0,"11471":-1,"11472":1420,"11473":0,"11474":0,"11475":169,"11476":-1,"11477":0,"11478":0,"11479":-1,"11480":1483,"11481":1556,"11482":0,"11483":0,"11484":1525,"11485":-1,"11486":253,"11487":0,"11488":0,"11489":-1,"11490":249,"11491":0,"11492":0,"11493":0,"11494":0,"11495":1411,"11496":-1,"11497":-1,"11498":0,"11499":0,"11500":0,"11501":1379,"11502":0,"11503":-1,"11504":-1,"11505":0,"11506":0,"11507":0,"11508":4,"11509":0,"11510":-1,"11511":63,"11512":-1,"11513":0,"11514":-1,"11515":255,"11516":0,"11517":-1,"11518":0,"11519":-1,"11520":0,"11521":0,"11522":-1,"11523":0,"11524":0,"11525":-1,"11526":0,"11527":1566,"11528":0,"11529":0,"11530":-1,"11531":0,"11532":87,"11533":0,"11534":429,"11535":0,"11536":1365,"11537":1477,"11538":-1,"11539":0,"11540":37,"11541":0,"11542":-1,"11543":0,"11544":77,"11545":1329,"11546":1307,"11547":0,"11548":0,"11549":-1,"11550":1305,"11551":-1,"11552":-1,"11553":0,"11554":0,"11555":0,"11556":-1,"11557":0,"11558":288,"11559":0,"11560":173,"11561":1460,"11562":220,"11563":0,"11564":1430,"11565":0,"11566":1335,"11567":-1,"11568":196,"11569":0,"11570":0,"11571":0,"11572":0,"11573":-1,"11574":-1,"11575":-1,"11576":0,"11577":1389,"11578":1575,"11579":-1,"11580":-1,"11581":-1,"11582":-1,"11583":238,"11584":0,"11585":0,"11586":0,"11587":0,"11588":-1,"11589":122,"11590":0,"11591":16,"11592":-1,"11593":0,"11594":-1,"11595":0,"11596":-1,"11597":-1,"11598":0,"11599":-1,"11600":-1,"11601":0,"11602":50,"11603":-1,"11604":0,"11605":0,"11606":0,"11607":0,"11608":0,"11609":-1,"11610":-1,"11611":1404,"11612":-1,"11613":0,"11614":-1,"11615":0,"11616":0,"11617":-1,"11618":0,"11619":0,"11620":0,"11621":149,"11622":-1,"11623":-1,"11624":31,"11625":0,"11626":0,"11627":0,"11628":0,"11629":0,"11630":198,"11631":0,"11632":1358,"11633":1411,"11634":-1,"11635":1582,"11636":0,"11637":0,"11638":291,"11639":1562,"11640":-1,"11641":-1,"11642":0,"11643":-1,"11644":0,"11645":0,"11646":-1,"11647":0,"11648":234,"11649":0,"11650":0,"11651":68,"11652":93,"11653":-1,"11654":0,"11655":0,"11656":-1,"11657":-1,"11658":-1,"11659":119,"11660":0,"11661":0,"11662":29,"11663":1524,"11664":0,"11665":208,"11666":-1,"11667":-1,"11668":1461,"11669":0,"11670":-1,"11671":0,"11672":-1,"11673":-1,"11674":0,"11675":0,"11676":0,"11677":0,"11678":-1,"11679":0,"11680":152,"11681":0,"11682":-1,"11683":72,"11684":0,"11685":120,"11686":-1,"11687":0,"11688":0,"11689":0,"11690":-1,"11691":0,"11692":-1,"11693":265,"11694":-1,"11695":-1,"11696":-1,"11697":1488,"11698":0,"11699":-1,"11700":0,"11701":0,"11702":0,"11703":23,"11704":1334,"11705":-1,"11706":1329,"11707":0,"11708":0,"11709":-1,"11710":1497,"11711":-1,"11712":-1,"11713":71,"11714":0,"11715":0,"11716":-1,"11717":0,"11718":164,"11719":-1,"11720":0,"11721":0,"11722":-1,"11723":0,"11724":271,"11725":-1,"11726":0,"11727":0,"11728":0,"11729":0,"11730":-1,"11731":0,"11732":0,"11733":0,"11734":1579,"11735":-1,"11736":0,"11737":-1,"11738":0,"11739":4,"11740":1383,"11741":-1,"11742":232,"11743":-1,"11744":0,"11745":0,"11746":0,"11747":-1,"11748":-1,"11749":0,"11750":0,"11751":0,"11752":0,"11753":-1,"11754":0,"11755":297,"11756":1336,"11757":0,"11758":0,"11759":0,"11760":0,"11761":0,"11762":0,"11763":0,"11764":293,"11765":0,"11766":1448,"11767":1566,"11768":0,"11769":0,"11770":-1,"11771":0,"11772":0,"11773":-1,"11774":0,"11775":-1,"11776":1335,"11777":0,"11778":0,"11779":0,"11780":-1,"11781":-1,"11782":-1,"11783":-1,"11784":0,"11785":0,"11786":-1,"11787":-1,"11788":-1,"11789":-1,"11790":288,"11791":0,"11792":-1,"11793":0,"11794":1362,"11795":-1,"11796":-1,"11797":0,"11798":-1,"11799":-1,"11800":-1,"11801":1435,"11802":1361,"11803":0,"11804":1388,"11805":0,"11806":-1,"11807":0,"11808":0,"11809":0,"11810":0,"11811":23,"11812":54,"11813":-1,"11814":370,"11815":-1,"11816":1411,"11817":1303,"11818":-1,"11819":-1,"11820":-1,"11821":1568,"11822":0,"11823":-1,"11824":1576,"11825":-1,"11826":-1,"11827":0,"11828":-1,"11829":-1,"11830":1303,"11831":-1,"11832":-1,"11833":-1,"11834":0,"11835":0,"11836":31,"11837":0,"11838":159,"11839":1553,"11840":0,"11841":-1,"11842":0,"11843":-1,"11844":-1,"11845":0,"11846":-1,"11847":-1,"11848":0,"11849":0,"11850":19,"11851":-1,"11852":0,"11853":0,"11854":1389,"11855":0,"11856":109,"11857":0,"11858":1457,"11859":-1,"11860":0,"11861":0,"11862":0,"11863":1484,"11864":-1,"11865":0,"11866":148,"11867":7,"11868":0,"11869":0,"11870":0,"11871":215,"11872":0,"11873":-1,"11874":-1,"11875":0,"11876":-1,"11877":0,"11878":-1,"11879":1463,"11880":0,"11881":1303,"11882":0,"11883":0,"11884":-1,"11885":0,"11886":-1,"11887":0,"11888":0,"11889":1489,"11890":1395,"11891":-1,"11892":-1,"11893":-1,"11894":0,"11895":1541,"11896":0,"11897":135,"11898":-1,"11899":240,"11900":-1,"11901":-1,"11902":-1,"11903":0,"11904":-1,"11905":158,"11906":-1,"11907":1552,"11908":0,"11909":-1,"11910":49,"11911":-1,"11912":107,"11913":0,"11914":0,"11915":0,"11916":-1,"11917":-1,"11918":-1,"11919":-1,"11920":-1,"11921":-1,"11922":-1,"11923":137,"11924":26,"11925":-1,"11926":0,"11927":-1,"11928":0,"11929":0,"11930":0,"11931":270,"11932":0,"11933":-1,"11934":261,"11935":0,"11936":-1,"11937":-1,"11938":-1,"11939":366,"11940":-1,"11941":-1,"11942":385,"11943":0,"11944":1397,"11945":-1,"11946":-1,"11947":-1,"11948":285,"11949":0,"11950":-1,"11951":-1,"11952":0,"11953":1426,"11954":0,"11955":-1,"11956":0,"11957":-1,"11958":-1,"11959":0,"11960":0,"11961":0,"11962":0,"11963":1428,"11964":0,"11965":1346,"11966":0,"11967":0,"11968":0,"11969":0,"11970":-1,"11971":0,"11972":-1,"11973":0,"11974":-1,"11975":0,"11976":0,"11977":1517,"11978":-1,"11979":0,"11980":1546,"11981":0,"11982":0,"11983":-1,"11984":0,"11985":0,"11986":-1,"11987":-1,"11988":0,"11989":61,"11990":0,"11991":0,"11992":0,"11993":0,"11994":1445,"11995":0,"11996":0,"11997":1526,"11998":0,"11999":1475,"12000":-1,"12001":167,"12002":0,"12003":-1,"12004":0,"12005":-1,"12006":0,"12007":0,"12008":-1,"12009":-1,"12010":-1,"12011":-1,"12012":0,"12013":-1,"12014":0,"12015":-1,"12016":170,"12017":0,"12018":0,"12019":1518,"12020":0,"12021":129,"12022":0,"12023":-1,"12024":0,"12025":1526,"12026":76,"12027":-1,"12028":89,"12029":0,"12030":107,"12031":-1,"12032":0,"12033":-1,"12034":0,"12035":0,"12036":-1,"12037":0,"12038":1458,"12039":-1,"12040":-1,"12041":-1,"12042":-1,"12043":1580,"12044":1509,"12045":0,"12046":0,"12047":103,"12048":1389,"12049":0,"12050":0,"12051":81,"12052":-1,"12053":-1,"12054":0,"12055":0,"12056":1494,"12057":-1,"12058":0,"12059":0,"12060":0,"12061":-1,"12062":359,"12063":0,"12064":-1,"12065":36,"12066":1565,"12067":-1,"12068":-1,"12069":-1,"12070":0,"12071":0,"12072":0,"12073":0,"12074":0,"12075":0,"12076":1419,"12077":-1,"12078":1449,"12079":-1,"12080":0,"12081":0,"12082":1399,"12083":1361,"12084":-1,"12085":-1,"12086":-1,"12087":0,"12088":-1,"12089":0,"12090":0,"12091":0,"12092":0,"12093":-1,"12094":0,"12095":299,"12096":0,"12097":0,"12098":0,"12099":-1,"12100":-1,"12101":0,"12102":-1,"12103":0,"12104":162,"12105":1423,"12106":60,"12107":-1,"12108":-1,"12109":1496,"12110":1486,"12111":1395,"12112":0,"12113":-1,"12114":-1,"12115":1534,"12116":0,"12117":37,"12118":-1,"12119":1577,"12120":0,"12121":-1,"12122":0,"12123":0,"12124":0,"12125":1462,"12126":-1,"12127":0,"12128":378,"12129":0,"12130":-1,"12131":1535,"12132":0,"12133":-1,"12134":0,"12135":0,"12136":-1,"12137":0,"12138":-1,"12139":0,"12140":0,"12141":-1,"12142":0,"12143":0,"12144":1309,"12145":1482,"12146":0,"12147":0,"12148":0,"12149":-1,"12150":1453,"12151":-1,"12152":-1,"12153":1571,"12154":0,"12155":0,"12156":-1,"12157":0,"12158":27,"12159":1566,"12160":-1,"12161":-1,"12162":1517,"12163":0,"12164":79,"12165":-1,"12166":0,"12167":1397,"12168":323,"12169":0,"12170":304,"12171":1585,"12172":-1,"12173":-1,"12174":0,"12175":197,"12176":0,"12177":1408,"12178":0,"12179":0,"12180":-1,"12181":261,"12182":-1,"12183":0,"12184":1503,"12185":1322,"12186":0,"12187":289,"12188":330,"12189":33,"12190":-1,"12191":1544,"12192":0,"12193":0,"12194":214,"12195":0,"12196":-1,"12197":0,"12198":255,"12199":-1,"12200":0,"12201":0,"12202":0,"12203":0,"12204":0,"12205":-1,"12206":97,"12207":0,"12208":-1,"12209":1337,"12210":0,"12211":-1,"12212":-1,"12213":-1,"12214":-1,"12215":0,"12216":0,"12217":1513,"12218":1502,"12219":0,"12220":0,"12221":172,"12222":0,"12223":2,"12224":-1,"12225":-1,"12226":266,"12227":0,"12228":0,"12229":0,"12230":0,"12231":0,"12232":0,"12233":0,"12234":-1,"12235":0,"12236":1556,"12237":0,"12238":0,"12239":286,"12240":0,"12241":0,"12242":0,"12243":-1,"12244":-1,"12245":0,"12246":112,"12247":0,"12248":0,"12249":0,"12250":-1,"12251":-1,"12252":1336,"12253":0,"12254":-1,"12255":1568,"12256":-1,"12257":0,"12258":248,"12259":77,"12260":366,"12261":0,"12262":1576,"12263":-1,"12264":-1,"12265":-1,"12266":0,"12267":0,"12268":0,"12269":-1,"12270":1422,"12271":41,"12272":1407,"12273":0,"12274":0,"12275":-1,"12276":-1,"12277":-1,"12278":-1,"12279":0,"12280":0,"12281":0,"12282":0,"12283":0,"12284":-1,"12285":49,"12286":-1,"12287":-1,"12288":-1,"12289":-1,"12290":248,"12291":-1,"12292":-1,"12293":0,"12294":-1,"12295":-1,"12296":0,"12297":0,"12298":-1,"12299":0,"12300":0,"12301":0,"12302":0,"12303":0,"12304":0,"12305":-1,"12306":0,"12307":-1,"12308":-1,"12309":-1,"12310":74,"12311":0,"12312":0,"12313":-1,"12314":0,"12315":60,"12316":-1,"12317":0,"12318":-1,"12319":-1,"12320":-1,"12321":-1,"12322":0,"12323":-1,"12324":-1,"12325":0,"12326":1382,"12327":0,"12328":-1,"12329":1521,"12330":0,"12331":-1,"12332":0,"12333":0,"12334":-1,"12335":-1,"12336":383,"12337":0,"12338":-1,"12339":0,"12340":-1,"12341":0,"12342":0,"12343":145,"12344":1406,"12345":-1,"12346":0,"12347":0,"12348":-1,"12349":132,"12350":-1,"12351":238,"12352":1381,"12353":-1,"12354":-1,"12355":1300,"12356":265,"12357":0,"12358":0,"12359":1321,"12360":0,"12361":0,"12362":0,"12363":-1,"12364":0,"12365":0,"12366":0,"12367":-1,"12368":70,"12369":0,"12370":-1,"12371":-1,"12372":-1,"12373":1549,"12374":-1,"12375":1552,"12376":-1,"12377":0,"12378":0,"12379":0,"12380":0,"12381":1578,"12382":0,"12383":0,"12384":0,"12385":-1,"12386":0,"12387":0,"12388":0,"12389":1448,"12390":1382,"12391":0,"12392":0,"12393":298,"12394":1340,"12395":0,"12396":-1,"12397":0,"12398":-1,"12399":124,"12400":1318,"12401":0,"12402":0,"12403":-1,"12404":-1,"12405":0,"12406":0,"12407":0,"12408":1374,"12409":-1,"12410":1554,"12411":366,"12412":0,"12413":0,"12414":0,"12415":128,"12416":1570,"12417":1479,"12418":-1,"12419":-1,"12420":0,"12421":-1,"12422":0,"12423":1348,"12424":1337,"12425":-1,"12426":-1,"12427":-1,"12428":0,"12429":0,"12430":285,"12431":-1,"12432":248,"12433":364,"12434":0,"12435":0,"12436":0,"12437":1449,"12438":5,"12439":0,"12440":0,"12441":-1,"12442":0,"12443":-1,"12444":16,"12445":0,"12446":-1,"12447":-1,"12448":0,"12449":0,"12450":297,"12451":-1,"12452":0,"12453":179,"12454":0,"12455":-1,"12456":0,"12457":0,"12458":2,"12459":-1,"12460":1584,"12461":336,"12462":1559,"12463":-1,"12464":-1,"12465":0,"12466":-1,"12467":0,"12468":0,"12469":359,"12470":0,"12471":-1,"12472":0,"12473":-1,"12474":0,"12475":0,"12476":297,"12477":-1,"12478":174,"12479":13,"12480":1529,"12481":-1,"12482":0,"12483":-1,"12484":-1,"12485":0,"12486":-1,"12487":0,"12488":-1,"12489":-1,"12490":0,"12491":1495,"12492":0,"12493":-1,"12494":-1,"12495":0,"12496":-1,"12497":0,"12498":-1,"12499":0,"12500":-1,"12501":-1,"12502":1305,"12503":-1,"12504":-1,"12505":0,"12506":381,"12507":1524,"12508":0,"12509":-1,"12510":-1,"12511":0,"12512":1307,"12513":0,"12514":194,"12515":-1,"12516":0,"12517":0,"12518":0,"12519":317,"12520":0,"12521":-1,"12522":-1,"12523":0,"12524":-1,"12525":0,"12526":-1,"12527":0,"12528":0,"12529":0,"12530":1495,"12531":1328,"12532":-1,"12533":0,"12534":438,"12535":1386,"12536":1337,"12537":-1,"12538":122,"12539":0,"12540":0,"12541":0,"12542":1363,"12543":297,"12544":0,"12545":0,"12546":158,"12547":-1,"12548":0,"12549":0,"12550":190,"12551":1468,"12552":208,"12553":0,"12554":0,"12555":1314,"12556":0,"12557":-1,"12558":-1,"12559":-1,"12560":0,"12561":1468,"12562":0,"12563":-1,"12564":167,"12565":27,"12566":-1,"12567":-1,"12568":0,"12569":-1,"12570":-1,"12571":0,"12572":0,"12573":-1,"12574":0,"12575":1357,"12576":-1,"12577":167,"12578":0,"12579":0,"12580":0,"12581":0,"12582":69,"12583":-1,"12584":0,"12585":-1,"12586":0,"12587":0,"12588":0,"12589":57,"12590":-1,"12591":0,"12592":0,"12593":0,"12594":-1,"12595":-1,"12596":1561,"12597":0,"12598":0,"12599":1389,"12600":1526,"12601":-1,"12602":0,"12603":-1,"12604":176,"12605":0,"12606":0,"12607":-1,"12608":0,"12609":0,"12610":220,"12611":0,"12612":-1,"12613":-1,"12614":0,"12615":313,"12616":354,"12617":-1,"12618":-1,"12619":0,"12620":0,"12621":1505,"12622":0,"12623":0,"12624":1328,"12625":-1,"12626":0,"12627":-1,"12628":0,"12629":0,"12630":372,"12631":1306,"12632":0,"12633":-1,"12634":-1,"12635":0,"12636":0,"12637":-1,"12638":0,"12639":-1,"12640":-1,"12641":1386,"12642":-1,"12643":-1,"12644":-1,"12645":0,"12646":-1,"12647":1307,"12648":0,"12649":115,"12650":0,"12651":0,"12652":0,"12653":0,"12654":-1,"12655":0,"12656":0,"12657":1391,"12658":-1,"12659":111,"12660":-1,"12661":0,"12662":0,"12663":-1,"12664":0,"12665":-1,"12666":93,"12667":-1,"12668":-1,"12669":-1,"12670":-1,"12671":-1,"12672":0,"12673":1418,"12674":-1,"12675":-1,"12676":0,"12677":1359,"12678":0,"12679":-1,"12680":-1,"12681":-1,"12682":1325,"12683":-1,"12684":0,"12685":279,"12686":0,"12687":-1,"12688":301,"12689":0,"12690":0,"12691":-1,"12692":1483,"12693":0,"12694":0,"12695":0,"12696":1459,"12697":0,"12698":0,"12699":0,"12700":1499,"12701":-1,"12702":0,"12703":301,"12704":0,"12705":0,"12706":115,"12707":-1,"12708":0,"12709":-1,"12710":-1,"12711":-1,"12712":0,"12713":0,"12714":360,"12715":-1,"12716":0,"12717":-1,"12718":-1,"12719":0,"12720":-1,"12721":1339,"12722":0,"12723":194,"12724":188,"12725":1395,"12726":-1,"12727":284,"12728":1308,"12729":0,"12730":-1,"12731":0,"12732":-1,"12733":0,"12734":-1,"12735":1521,"12736":-1,"12737":-1,"12738":0,"12739":-1,"12740":1335,"12741":-1,"12742":1581,"12743":0,"12744":-1,"12745":-1,"12746":-1,"12747":0,"12748":0,"12749":-1,"12750":0,"12751":0,"12752":-1,"12753":-1,"12754":-1,"12755":0,"12756":1300,"12757":-1,"12758":43,"12759":-1,"12760":-1,"12761":0,"12762":0,"12763":0,"12764":0,"12765":0,"12766":310,"12767":1392,"12768":1410,"12769":-1,"12770":0,"12771":1541,"12772":0,"12773":-1,"12774":0,"12775":124,"12776":1434,"12777":-1,"12778":-1,"12779":-1,"12780":1374,"12781":0,"12782":0,"12783":19,"12784":-1,"12785":-1,"12786":122,"12787":0,"12788":297,"12789":0,"12790":-1,"12791":-1,"12792":0,"12793":-1,"12794":0,"12795":1564,"12796":0,"12797":-1,"12798":-1,"12799":0,"12800":-1,"12801":1381,"12802":0,"12803":-1,"12804":-1,"12805":0,"12806":1509,"12807":102,"12808":0,"12809":0,"12810":1385,"12811":47,"12812":-1,"12813":1577,"12814":0,"12815":1452,"12816":0,"12817":-1,"12818":0,"12819":-1,"12820":0,"12821":0,"12822":-1,"12823":213,"12824":-1,"12825":0,"12826":-1,"12827":0,"12828":0,"12829":-1,"12830":-1,"12831":-1,"12832":-1,"12833":0,"12834":-1,"12835":0,"12836":-1,"12837":-1,"12838":-1,"12839":-1,"12840":0,"12841":-1,"12842":-1,"12843":147,"12844":235,"12845":-1,"12846":-1,"12847":-1,"12848":0,"12849":-1,"12850":-1,"12851":284,"12852":0,"12853":0,"12854":-1,"12855":0,"12856":-1,"12857":-1,"12858":-1,"12859":0,"12860":-1,"12861":-1,"12862":0,"12863":0,"12864":0,"12865":0,"12866":1308,"12867":1523,"12868":-1,"12869":0,"12870":-1,"12871":-1,"12872":-1,"12873":-1,"12874":0,"12875":-1,"12876":0,"12877":0,"12878":0,"12879":-1,"12880":-1,"12881":24,"12882":-1,"12883":-1,"12884":1388,"12885":0,"12886":-1,"12887":-1,"12888":0,"12889":0,"12890":-1,"12891":0,"12892":0,"12893":1334,"12894":0,"12895":0,"12896":-1,"12897":1524,"12898":1411,"12899":173,"12900":0,"12901":0,"12902":26,"12903":365,"12904":-1,"12905":1382,"12906":0,"12907":1351,"12908":0,"12909":21,"12910":0,"12911":1304,"12912":0,"12913":0,"12914":79,"12915":1398,"12916":0,"12917":-1,"12918":-1,"12919":0,"12920":0,"12921":0,"12922":-1,"12923":0,"12924":1421,"12925":0,"12926":1413,"12927":-1,"12928":0,"12929":-1,"12930":0,"12931":-1,"12932":0,"12933":0,"12934":0,"12935":1547,"12936":0,"12937":-1,"12938":3,"12939":-1,"12940":0,"12941":-1,"12942":28,"12943":1340,"12944":0,"12945":0,"12946":1318,"12947":-1,"12948":164,"12949":0,"12950":0,"12951":1369,"12952":0,"12953":142,"12954":0,"12955":0,"12956":0,"12957":303,"12958":0,"12959":-1,"12960":65,"12961":0,"12962":167,"12963":-1,"12964":-1,"12965":-1,"12966":0,"12967":0,"12968":0,"12969":-1,"12970":0,"12971":1560,"12972":-1,"12973":68,"12974":-1,"12975":0,"12976":-1,"12977":112,"12978":0,"12979":-1,"12980":-1,"12981":36,"12982":0,"12983":190,"12984":0,"12985":322,"12986":-1,"12987":0,"12988":0,"12989":206,"12990":0,"12991":-1,"12992":0,"12993":0,"12994":322,"12995":0,"12996":256,"12997":236,"12998":0,"12999":0,"13000":0,"13001":1505,"13002":0,"13003":0,"13004":-1,"13005":98,"13006":-1,"13007":186,"13008":0,"13009":-1,"13010":1568,"13011":0,"13012":0,"13013":-1,"13014":0,"13015":0,"13016":-1,"13017":1469,"13018":0,"13019":102,"13020":0,"13021":0,"13022":323,"13023":343,"13024":102,"13025":1388,"13026":1356,"13027":1573,"13028":0,"13029":0,"13030":1549,"13031":-1,"13032":23,"13033":0,"13034":0,"13035":-1,"13036":-1,"13037":-1,"13038":0,"13039":-1,"13040":-1,"13041":0,"13042":0,"13043":-1,"13044":0,"13045":0,"13046":0,"13047":-1,"13048":0,"13049":-1,"13050":0,"13051":-1,"13052":1521,"13053":-1,"13054":1360,"13055":-1,"13056":-1,"13057":0,"13058":-1,"13059":0,"13060":0,"13061":-1,"13062":0,"13063":196,"13064":0,"13065":357,"13066":1478,"13067":1346,"13068":0,"13069":-1,"13070":-1,"13071":-1,"13072":-1,"13073":0,"13074":-1,"13075":0,"13076":0,"13077":0,"13078":1495,"13079":-1,"13080":0,"13081":146,"13082":-1,"13083":0,"13084":-1,"13085":1434,"13086":0,"13087":194,"13088":0,"13089":-1,"13090":0,"13091":-1,"13092":-1,"13093":87,"13094":-1,"13095":0,"13096":1468,"13097":0,"13098":-1,"13099":-1,"13100":224,"13101":1473,"13102":1394,"13103":0,"13104":0,"13105":0,"13106":1549,"13107":0,"13108":1383,"13109":0,"13110":-1,"13111":1357,"13112":-1,"13113":-1,"13114":-1,"13115":202,"13116":-1,"13117":-1,"13118":-1,"13119":1425,"13120":1348,"13121":0,"13122":1562,"13123":-1,"13124":-1,"13125":-1,"13126":288,"13127":-1,"13128":0,"13129":142,"13130":-1,"13131":0,"13132":-1,"13133":1396,"13134":1448,"13135":0,"13136":-1,"13137":0,"13138":1515,"13139":373,"13140":1486,"13141":-1,"13142":1459,"13143":0,"13144":1419,"13145":61,"13146":1403,"13147":1369,"13148":0,"13149":-1,"13150":-1,"13151":0,"13152":0,"13153":0,"13154":0,"13155":-1,"13156":-1,"13157":-1,"13158":-1,"13159":0,"13160":-1,"13161":-1,"13162":-1,"13163":-1,"13164":-1,"13165":375,"13166":1545,"13167":0,"13168":0,"13169":0,"13170":0,"13171":97,"13172":0,"13173":-1,"13174":-1,"13175":0,"13176":1573,"13177":0,"13178":0,"13179":0,"13180":122,"13181":246,"13182":182,"13183":0,"13184":325,"13185":0,"13186":-1,"13187":-1,"13188":0,"13189":-1,"13190":0,"13191":0,"13192":0,"13193":0,"13194":1368,"13195":1506,"13196":-1,"13197":-1,"13198":0,"13199":0,"13200":1367,"13201":-1,"13202":-1,"13203":1541,"13204":0,"13205":0,"13206":96,"13207":50,"13208":0,"13209":-1,"13210":0,"13211":0,"13212":211,"13213":-1,"13214":121,"13215":1394,"13216":0,"13217":0,"13218":0,"13219":-1,"13220":-1,"13221":0,"13222":0,"13223":-1,"13224":0,"13225":256,"13226":342,"13227":107,"13228":0,"13229":-1,"13230":1402,"13231":-1,"13232":0,"13233":0,"13234":-1,"13235":-1,"13236":0,"13237":-1,"13238":0,"13239":1530,"13240":-1,"13241":-1,"13242":0,"13243":1338,"13244":0,"13245":1304,"13246":0,"13247":1321,"13248":0,"13249":302,"13250":172,"13251":0,"13252":165,"13253":0,"13254":0,"13255":-1,"13256":0,"13257":-1,"13258":0,"13259":332,"13260":-1,"13261":255,"13262":-1,"13263":0,"13264":0,"13265":-1,"13266":0,"13267":0,"13268":0,"13269":0,"13270":1573,"13271":-1,"13272":0,"13273":0,"13274":-1,"13275":0,"13276":324,"13277":314,"13278":291,"13279":0,"13280":1582,"13281":304,"13282":0,"13283":0,"13284":0,"13285":0,"13286":-1,"13287":0,"13288":-1,"13289":1534,"13290":0,"13291":-1,"13292":0,"13293":-1,"13294":246,"13295":0,"13296":0,"13297":0,"13298":0,"13299":1357,"13300":0,"13301":-1,"13302":281,"13303":0,"13304":1327,"13305":-1,"13306":0,"13307":0,"13308":-1,"13309":0,"13310":0,"13311":-1,"13312":-1,"13313":147,"13314":0,"13315":364,"13316":61,"13317":0,"13318":-1,"13319":0,"13320":-1,"13321":0,"13322":1354,"13323":1442,"13324":0,"13325":203,"13326":0,"13327":-1,"13328":-1,"13329":-1,"13330":0,"13331":0,"13332":0,"13333":0,"13334":-1,"13335":-1,"13336":0,"13337":208,"13338":0,"13339":-1,"13340":0,"13341":0,"13342":0,"13343":1500,"13344":0,"13345":0,"13346":192,"13347":0,"13348":271,"13349":51,"13350":-1,"13351":-1,"13352":-1,"13353":0,"13354":-1,"13355":0,"13356":0,"13357":0,"13358":-1,"13359":-1,"13360":-1,"13361":196,"13362":-1,"13363":0,"13364":0,"13365":-1,"13366":1472,"13367":1423,"13368":0,"13369":29,"13370":-1,"13371":-1,"13372":0,"13373":0,"13374":0,"13375":-1,"13376":-1,"13377":332,"13378":1553,"13379":0,"13380":0,"13381":0,"13382":-1,"13383":62,"13384":-1,"13385":0,"13386":1585,"13387":-1,"13388":1413,"13389":0,"13390":1571,"13391":1551,"13392":0,"13393":0,"13394":120,"13395":-1,"13396":-1,"13397":0,"13398":0,"13399":0,"13400":-1,"13401":0,"13402":0,"13403":19,"13404":0,"13405":0,"13406":-1,"13407":1546,"13408":-1,"13409":0,"13410":1304,"13411":0,"13412":0,"13413":1378,"13414":162,"13415":0,"13416":-1,"13417":-1,"13418":-1,"13419":1,"13420":0,"13421":1308,"13422":0,"13423":92,"13424":0,"13425":140,"13426":1553,"13427":-1,"13428":0,"13429":161,"13430":0,"13431":-1,"13432":-1,"13433":1517,"13434":0,"13435":220,"13436":0,"13437":1415,"13438":270,"13439":0,"13440":-1,"13441":0,"13442":149,"13443":-1,"13444":-1,"13445":0,"13446":-1,"13447":-1,"13448":254,"13449":-1,"13450":197,"13451":359,"13452":56,"13453":0,"13454":-1,"13455":1488,"13456":-1,"13457":-1,"13458":-1,"13459":-1,"13460":0,"13461":0,"13462":0,"13463":0,"13464":-1,"13465":-1,"13466":381,"13467":-1,"13468":-1,"13469":1298,"13470":0,"13471":253,"13472":0,"13473":0,"13474":0,"13475":35,"13476":262,"13477":0,"13478":0,"13479":0,"13480":-1,"13481":1446,"13482":1476,"13483":-1,"13484":-1,"13485":0,"13486":0,"13487":0,"13488":0,"13489":-1,"13490":228,"13491":109,"13492":0,"13493":0,"13494":10,"13495":0,"13496":-1,"13497":-1,"13498":147,"13499":0,"13500":0,"13501":0,"13502":0,"13503":360,"13504":239,"13505":49,"13506":0,"13507":-1,"13508":-1,"13509":0,"13510":-1,"13511":200,"13512":0,"13513":0,"13514":0,"13515":0,"13516":1390,"13517":0,"13518":-1,"13519":0,"13520":0,"13521":176,"13522":378,"13523":350,"13524":-1,"13525":0,"13526":0,"13527":-1,"13528":-1,"13529":-1,"13530":160,"13531":-1,"13532":254,"13533":0,"13534":0,"13535":0,"13536":-1,"13537":278,"13538":0,"13539":0,"13540":221,"13541":1461,"13542":1362,"13543":1315,"13544":93,"13545":0,"13546":0,"13547":0,"13548":1452,"13549":14,"13550":0,"13551":0,"13552":0,"13553":0,"13554":1369,"13555":-1,"13556":132,"13557":238,"13558":0,"13559":-1,"13560":92,"13561":0,"13562":0,"13563":0,"13564":0,"13565":-1,"13566":1392,"13567":1350,"13568":-1,"13569":0,"13570":1487,"13571":-1,"13572":-1,"13573":-1,"13574":0,"13575":0,"13576":-1,"13577":-1,"13578":0,"13579":291,"13580":0,"13581":1553,"13582":0,"13583":-1,"13584":-1,"13585":-1,"13586":0,"13587":0,"13588":0,"13589":-1,"13590":473,"13591":1529,"13592":-1,"13593":-1,"13594":0,"13595":0,"13596":102,"13597":1492,"13598":0,"13599":0,"13600":0,"13601":0,"13602":312,"13603":-1,"13604":0,"13605":203,"13606":0,"13607":1360,"13608":0,"13609":-1,"13610":186,"13611":-1,"13612":0,"13613":33,"13614":287,"13615":1300,"13616":1337,"13617":0,"13618":-1,"13619":-1,"13620":-1,"13621":-1,"13622":0,"13623":-1,"13624":0,"13625":26,"13626":-1,"13627":0,"13628":-1,"13629":18,"13630":-1,"13631":0,"13632":0,"13633":1472,"13634":-1,"13635":-1,"13636":0,"13637":225,"13638":-1,"13639":-1,"13640":0,"13641":158,"13642":1341,"13643":0,"13644":0,"13645":0,"13646":366,"13647":0,"13648":1418,"13649":66,"13650":0,"13651":0,"13652":7,"13653":-1,"13654":-1,"13655":0,"13656":-1,"13657":0,"13658":0,"13659":96,"13660":-1,"13661":1433,"13662":0,"13663":0,"13664":-1,"13665":0,"13666":0,"13667":0,"13668":0,"13669":-1,"13670":0,"13671":135,"13672":-1,"13673":1412,"13674":-1,"13675":0,"13676":0,"13677":0,"13678":0,"13679":0,"13680":1553,"13681":0,"13682":-1,"13683":0,"13684":-1,"13685":-1,"13686":288,"13687":-1,"13688":0,"13689":-1,"13690":0,"13691":-1,"13692":0,"13693":0,"13694":0,"13695":0,"13696":1346,"13697":-1,"13698":0,"13699":-1,"13700":0,"13701":1322,"13702":0,"13703":0,"13704":1371,"13705":0,"13706":159,"13707":-1,"13708":0,"13709":1502,"13710":0,"13711":-1,"13712":-1,"13713":1565,"13714":0,"13715":0,"13716":1403,"13717":0,"13718":0,"13719":88,"13720":0,"13721":0,"13722":-1,"13723":-1,"13724":-1,"13725":-1,"13726":-1,"13727":1459,"13728":-1,"13729":0,"13730":-1,"13731":1337,"13732":0,"13733":429,"13734":370,"13735":0,"13736":0,"13737":1366,"13738":1360,"13739":1388,"13740":0,"13741":0,"13742":0,"13743":0,"13744":-1,"13745":0,"13746":0,"13747":1298,"13748":0,"13749":0,"13750":-1,"13751":285,"13752":1300,"13753":-1,"13754":-1,"13755":0,"13756":0,"13757":0,"13758":0,"13759":220,"13760":-1,"13761":0,"13762":0,"13763":1458,"13764":-1,"13765":0,"13766":0,"13767":1453,"13768":1539,"13769":-1,"13770":0,"13771":0,"13772":-1,"13773":359,"13774":-1,"13775":0,"13776":1513,"13777":1306,"13778":0,"13779":-1,"13780":0,"13781":0,"13782":0,"13783":0,"13784":63,"13785":1363,"13786":0,"13787":0,"13788":0,"13789":-1,"13790":0,"13791":1488,"13792":0,"13793":-1,"13794":-1,"13795":0,"13796":0,"13797":1512,"13798":-1,"13799":0,"13800":105,"13801":0,"13802":0,"13803":-1,"13804":324,"13805":0,"13806":-1,"13807":1366,"13808":-1,"13809":1556,"13810":0,"13811":-1,"13812":0,"13813":0,"13814":-1,"13815":6,"13816":0,"13817":0,"13818":0,"13819":-1,"13820":1456,"13821":-1,"13822":0,"13823":1499,"13824":0,"13825":1471,"13826":-1,"13827":1532,"13828":0,"13829":0,"13830":0,"13831":0,"13832":-1,"13833":0,"13834":383,"13835":0,"13836":0,"13837":0,"13838":0,"13839":0,"13840":0,"13841":-1,"13842":-1,"13843":0,"13844":-1,"13845":0,"13846":0,"13847":-1,"13848":-1,"13849":0,"13850":0,"13851":-1,"13852":243,"13853":0,"13854":0,"13855":284,"13856":285,"13857":0,"13858":-1,"13859":328,"13860":1354,"13861":1401,"13862":0,"13863":-1,"13864":93,"13865":-1,"13866":0,"13867":352,"13868":0,"13869":73,"13870":-1,"13871":0,"13872":0,"13873":-1,"13874":0,"13875":0,"13876":347,"13877":-1,"13878":0,"13879":-1,"13880":0,"13881":0,"13882":0,"13883":0,"13884":0,"13885":0,"13886":-1,"13887":0,"13888":0,"13889":-1,"13890":-1,"13891":336,"13892":0,"13893":1380,"13894":-1,"13895":-1,"13896":0,"13897":0,"13898":0,"13899":0,"13900":-1,"13901":1523,"13902":179,"13903":0,"13904":-1,"13905":0,"13906":-1,"13907":0,"13908":0,"13909":203,"13910":0,"13911":-1,"13912":0,"13913":1503,"13914":0,"13915":7,"13916":1442,"13917":-1,"13918":348,"13919":-1,"13920":288,"13921":0,"13922":0,"13923":0,"13924":0,"13925":-1,"13926":1510,"13927":16,"13928":0,"13929":-1,"13930":1478,"13931":-1,"13932":0,"13933":107,"13934":-1,"13935":-1,"13936":1569,"13937":-1,"13938":0,"13939":0,"13940":0,"13941":-1,"13942":1515,"13943":-1,"13944":29,"13945":-1,"13946":-1,"13947":15,"13948":0,"13949":1401,"13950":0,"13951":0,"13952":-1,"13953":0,"13954":0,"13955":288,"13956":4,"13957":-1,"13958":0,"13959":-1,"13960":0,"13961":0,"13962":1359,"13963":1383,"13964":0,"13965":0,"13966":0,"13967":-1,"13968":-1,"13969":0,"13970":0,"13971":284,"13972":0,"13973":0,"13974":0,"13975":0,"13976":0,"13977":0,"13978":246,"13979":0,"13980":0,"13981":-1,"13982":123,"13983":0,"13984":-1,"13985":0,"13986":122,"13987":1445,"13988":-1,"13989":123,"13990":0,"13991":0,"13992":1521,"13993":0,"13994":0,"13995":0,"13996":0,"13997":330,"13998":105,"13999":1343,"14000":0,"14001":0,"14002":0,"14003":-1,"14004":0,"14005":0,"14006":63,"14007":1453,"14008":0,"14009":0,"14010":0,"14011":0,"14012":295,"14013":0,"14014":-1,"14015":0,"14016":-1,"14017":0,"14018":-1,"14019":0,"14020":0,"14021":0,"14022":0,"14023":0,"14024":-1,"14025":0,"14026":0,"14027":0,"14028":0,"14029":1557,"14030":-1,"14031":0,"14032":354,"14033":332,"14034":1476,"14035":1407,"14036":-1,"14037":-1,"14038":-1,"14039":0,"14040":1363,"14041":0,"14042":0,"14043":0,"14044":-1,"14045":0,"14046":1566,"14047":-1,"14048":-1,"14049":0,"14050":0,"14051":-1,"14052":0,"14053":0,"14054":0,"14055":0,"14056":0,"14057":371,"14058":0,"14059":1468,"14060":0,"14061":0,"14062":-1,"14063":-1,"14064":0,"14065":1530,"14066":0,"14067":186,"14068":-1,"14069":-1,"14070":145,"14071":0,"14072":0,"14073":0,"14074":1301,"14075":16,"14076":-1,"14077":174,"14078":172,"14079":1331,"14080":0,"14081":-1,"14082":-1,"14083":0,"14084":-1,"14085":-1,"14086":-1,"14087":-1,"14088":1375,"14089":1387,"14090":0,"14091":1523,"14092":-1,"14093":0,"14094":-1,"14095":0,"14096":165,"14097":-1,"14098":1322,"14099":61,"14100":0,"14101":0,"14102":-1,"14103":0,"14104":0,"14105":-1,"14106":-1,"14107":134,"14108":-1,"14109":0,"14110":346,"14111":-1,"14112":1298,"14113":0,"14114":0,"14115":1402,"14116":0,"14117":27,"14118":61,"14119":0,"14120":-1,"14121":-1,"14122":1342,"14123":-1,"14124":-1,"14125":152,"14126":1395,"14127":-1,"14128":0,"14129":-1,"14130":0,"14131":0,"14132":0,"14133":-1,"14134":0,"14135":-1,"14136":0,"14137":0,"14138":0,"14139":-1,"14140":0,"14141":-1,"14142":0,"14143":0,"14144":1387,"14145":-1,"14146":0,"14147":0,"14148":147,"14149":0,"14150":-1,"14151":-1,"14152":225,"14153":364,"14154":0,"14155":0,"14156":0,"14157":0,"14158":-1,"14159":0,"14160":0,"14161":0,"14162":-1,"14163":0,"14164":359,"14165":307,"14166":368,"14167":0,"14168":0,"14169":-1,"14170":1412,"14171":305,"14172":-1,"14173":207,"14174":-1,"14175":0,"14176":0,"14177":-1,"14178":0,"14179":-1,"14180":-1,"14181":301,"14182":291,"14183":-1,"14184":0,"14185":-1,"14186":0,"14187":0,"14188":-1,"14189":0,"14190":1577,"14191":0,"14192":0,"14193":-1,"14194":0,"14195":0,"14196":0,"14197":0,"14198":-1,"14199":1482,"14200":0,"14201":0,"14202":-1,"14203":-1,"14204":0,"14205":0,"14206":0,"14207":1390,"14208":-1,"14209":0,"14210":-1,"14211":-1,"14212":-1,"14213":0,"14214":0,"14215":0,"14216":-1,"14217":176,"14218":0,"14219":0,"14220":0,"14221":39,"14222":-1,"14223":1474,"14224":0,"14225":-1,"14226":-1,"14227":0,"14228":1321,"14229":0,"14230":1372,"14231":0,"14232":57,"14233":0,"14234":-1,"14235":0,"14236":-1,"14237":-1,"14238":0,"14239":3,"14240":-1,"14241":0,"14242":62,"14243":41,"14244":1327,"14245":0,"14246":1546,"14247":1530,"14248":334,"14249":0,"14250":-1,"14251":-1,"14252":0,"14253":1313,"14254":384,"14255":-1,"14256":-1,"14257":0,"14258":0,"14259":-1,"14260":0,"14261":0,"14262":0,"14263":0,"14264":0,"14265":0,"14266":1370,"14267":0,"14268":0,"14269":1565,"14270":352,"14271":0,"14272":-1,"14273":0,"14274":-1,"14275":0,"14276":-1,"14277":232,"14278":0,"14279":-1,"14280":0,"14281":0,"14282":0,"14283":-1,"14284":1478,"14285":1386,"14286":71,"14287":0,"14288":0,"14289":1361,"14290":-1,"14291":0,"14292":1548,"14293":0,"14294":1442,"14295":176,"14296":0,"14297":160,"14298":1348,"14299":-1,"14300":0,"14301":-1,"14302":1364,"14303":0,"14304":0,"14305":158,"14306":0,"14307":0,"14308":0,"14309":1472,"14310":0,"14311":0,"14312":-1,"14313":133,"14314":1472,"14315":0,"14316":0,"14317":0,"14318":-1,"14319":1382,"14320":-1,"14321":0,"14322":-1,"14323":0,"14324":0,"14325":0,"14326":278,"14327":-1,"14328":-1,"14329":0,"14330":-1,"14331":0,"14332":1508,"14333":0,"14334":297,"14335":-1,"14336":0,"14337":0,"14338":0,"14339":-1,"14340":1493,"14341":1479,"14342":0,"14343":0,"14344":0,"14345":0,"14346":0,"14347":308,"14348":1405,"14349":87,"14350":1460,"14351":0,"14352":0,"14353":0,"14354":0,"14355":0,"14356":-1,"14357":-1,"14358":1440,"14359":0,"14360":-1,"14361":49,"14362":0,"14363":-1,"14364":-1,"14365":0,"14366":-1,"14367":261,"14368":1567,"14369":1460,"14370":0,"14371":0,"14372":228,"14373":-1,"14374":0,"14375":-1,"14376":-1,"14377":0,"14378":1328,"14379":1317,"14380":0,"14381":-1,"14382":0,"14383":40,"14384":-1,"14385":-1,"14386":-1,"14387":0,"14388":56,"14389":0,"14390":-1,"14391":0,"14392":0,"14393":0,"14394":331,"14395":1465,"14396":1382,"14397":0,"14398":29,"14399":0,"14400":0,"14401":0,"14402":-1,"14403":0,"14404":1374,"14405":304,"14406":1483,"14407":165,"14408":112,"14409":0,"14410":-1,"14411":-1,"14412":0,"14413":0,"14414":1311,"14415":0,"14416":1342,"14417":0,"14418":1480,"14419":1535,"14420":1540,"14421":-1,"14422":0,"14423":1395,"14424":16,"14425":0,"14426":-1,"14427":0,"14428":1421,"14429":301,"14430":373,"14431":163,"14432":1530,"14433":18,"14434":-1,"14435":-1,"14436":-1,"14437":0,"14438":0,"14439":0,"14440":248,"14441":-1,"14442":-1,"14443":0,"14444":0,"14445":0,"14446":0,"14447":-1,"14448":-1,"14449":0,"14450":0,"14451":1407,"14452":0,"14453":0,"14454":-1,"14455":33,"14456":0,"14457":-1,"14458":-1,"14459":-1,"14460":0,"14461":89,"14462":0,"14463":0,"14464":0,"14465":0,"14466":0,"14467":0,"14468":0,"14469":0,"14470":0,"14471":1347,"14472":-1,"14473":1453,"14474":224,"14475":0,"14476":1464,"14477":0,"14478":0,"14479":133,"14480":0,"14481":-1,"14482":0,"14483":0,"14484":1315,"14485":-1,"14486":0,"14487":132,"14488":0,"14489":1506,"14490":-1,"14491":0,"14492":-1,"14493":1511,"14494":-1,"14495":0,"14496":0,"14497":-1,"14498":-1,"14499":-1,"14500":24,"14501":0,"14502":-1,"14503":0,"14504":-1,"14505":-1,"14506":0,"14507":-1,"14508":1524,"14509":-1,"14510":0,"14511":-1,"14512":0,"14513":-1,"14514":0,"14515":-1,"14516":-1,"14517":1438,"14518":0,"14519":-1,"14520":-1,"14521":-1,"14522":0,"14523":0,"14524":0,"14525":1408,"14526":0,"14527":0,"14528":0,"14529":142,"14530":-1,"14531":0,"14532":0,"14533":-1,"14534":0,"14535":0,"14536":0,"14537":63,"14538":0,"14539":1528,"14540":282,"14541":0,"14542":0,"14543":1406,"14544":0,"14545":1530,"14546":131,"14547":0,"14548":-1,"14549":0,"14550":-1,"14551":0,"14552":1345,"14553":357,"14554":0,"14555":-1,"14556":0,"14557":0,"14558":1405,"14559":0,"14560":0,"14561":1472,"14562":0,"14563":-1,"14564":0,"14565":0,"14566":152,"14567":1351,"14568":122,"14569":-1,"14570":1449,"14571":380,"14572":-1,"14573":-1,"14574":-1,"14575":-1,"14576":1526,"14577":-1,"14578":76,"14579":-1,"14580":-1,"14581":0,"14582":0,"14583":0,"14584":0,"14585":-1,"14586":0,"14587":0,"14588":0,"14589":-1,"14590":304,"14591":1508,"14592":0,"14593":0,"14594":-1,"14595":0,"14596":115,"14597":-1,"14598":0,"14599":0,"14600":0,"14601":1311,"14602":-1,"14603":0,"14604":1465,"14605":-1,"14606":-1,"14607":-1,"14608":-1,"14609":-1,"14610":-1,"14611":-1,"14612":0,"14613":279,"14614":0,"14615":71,"14616":0,"14617":-1,"14618":-1,"14619":0,"14620":-1,"14621":0,"14622":-1,"14623":0,"14624":-1,"14625":0,"14626":1494,"14627":164,"14628":-1,"14629":0,"14630":0,"14631":0,"14632":-1,"14633":-1,"14634":-1,"14635":0,"14636":0,"14637":0,"14638":0,"14639":1540,"14640":129,"14641":0,"14642":-1,"14643":0,"14644":0,"14645":0,"14646":0,"14647":169,"14648":1463,"14649":1459,"14650":0,"14651":0,"14652":-1,"14653":1491,"14654":-1,"14655":1411,"14656":0,"14657":0,"14658":-1,"14659":0,"14660":-1,"14661":0,"14662":1399,"14663":-1,"14664":-1,"14665":0,"14666":-1,"14667":240,"14668":-1,"14669":-1,"14670":0,"14671":0,"14672":-1,"14673":1537,"14674":-1,"14675":88,"14676":-1,"14677":146,"14678":0,"14679":1432,"14680":0,"14681":6,"14682":0,"14683":1431,"14684":0,"14685":22,"14686":0,"14687":0,"14688":0,"14689":0,"14690":26,"14691":283,"14692":0,"14693":-1,"14694":1480,"14695":-1,"14696":0,"14697":0,"14698":78,"14699":-1,"14700":-1,"14701":0,"14702":0,"14703":0,"14704":-1,"14705":0,"14706":-1,"14707":158,"14708":1470,"14709":1475,"14710":-1,"14711":165,"14712":0,"14713":0,"14714":0,"14715":-1,"14716":243,"14717":-1,"14718":0,"14719":0,"14720":0,"14721":0,"14722":0,"14723":0,"14724":0,"14725":0,"14726":0,"14727":0,"14728":-1,"14729":0,"14730":0,"14731":0,"14732":-1,"14733":-1,"14734":1531,"14735":-1,"14736":0,"14737":142,"14738":-1,"14739":0,"14740":-1,"14741":1575,"14742":1495,"14743":0,"14744":1444,"14745":0,"14746":0,"14747":-1,"14748":-1,"14749":1348,"14750":0,"14751":0,"14752":-1,"14753":0,"14754":-1,"14755":-1,"14756":-1,"14757":-1,"14758":-1,"14759":354,"14760":0,"14761":0,"14762":-1,"14763":0,"14764":0,"14765":0,"14766":1474,"14767":-1,"14768":0,"14769":240,"14770":0,"14771":-1,"14772":-1,"14773":384,"14774":0,"14775":-1,"14776":1380,"14777":-1,"14778":1543,"14779":1503,"14780":1466,"14781":1415,"14782":-1,"14783":1371,"14784":0,"14785":-1,"14786":1437,"14787":0,"14788":0,"14789":-1,"14790":1347,"14791":0,"14792":152,"14793":0,"14794":-1,"14795":1476,"14796":0,"14797":0,"14798":-1,"14799":0,"14800":0,"14801":0,"14802":-1,"14803":0,"14804":1416,"14805":1511,"14806":1337,"14807":-1,"14808":0,"14809":0,"14810":0,"14811":0,"14812":-1,"14813":1371,"14814":-1,"14815":0,"14816":-1,"14817":0,"14818":342,"14819":161,"14820":1343,"14821":-1,"14822":-1,"14823":0,"14824":266,"14825":77,"14826":-1,"14827":1577,"14828":0,"14829":-1,"14830":132,"14831":150,"14832":-1,"14833":180,"14834":1558,"14835":-1,"14836":-1,"14837":1526,"14838":-1,"14839":1509,"14840":0,"14841":1496,"14842":0,"14843":0,"14844":-1,"14845":1561,"14846":0,"14847":0,"14848":-1,"14849":1347,"14850":1577,"14851":0,"14852":383,"14853":0,"14854":0,"14855":0,"14856":244,"14857":50,"14858":107,"14859":78,"14860":0,"14861":0,"14862":1387,"14863":0,"14864":0,"14865":0,"14866":134,"14867":0,"14868":336,"14869":0,"14870":-1,"14871":357,"14872":1565,"14873":0,"14874":4,"14875":378,"14876":47,"14877":-1,"14878":1480,"14879":0,"14880":0,"14881":-1,"14882":0,"14883":0,"14884":-1,"14885":-1,"14886":-1,"14887":0,"14888":1427,"14889":-1,"14890":-1,"14891":169,"14892":-1,"14893":1566,"14894":147,"14895":-1,"14896":1503,"14897":-1,"14898":0,"14899":328,"14900":0,"14901":0,"14902":0,"14903":179,"14904":-1,"14905":-1,"14906":0,"14907":0,"14908":1430,"14909":0,"14910":0,"14911":0,"14912":0,"14913":-1,"14914":232,"14915":0,"14916":1435,"14917":-1,"14918":-1,"14919":0,"14920":1570,"14921":0,"14922":0,"14923":0,"14924":-1,"14925":-1,"14926":51,"14927":0,"14928":332,"14929":0,"14930":-1,"14931":-1,"14932":-1,"14933":0,"14934":0,"14935":1381,"14936":0,"14937":46,"14938":0,"14939":0,"14940":0,"14941":0,"14942":0,"14943":-1,"14944":-1,"14945":347,"14946":0,"14947":1322,"14948":-1,"14949":0,"14950":0,"14951":0,"14952":1399,"14953":37,"14954":109,"14955":-1,"14956":-1,"14957":0,"14958":1366,"14959":-1,"14960":-1,"14961":0,"14962":116,"14963":0,"14964":0,"14965":0,"14966":-1,"14967":-1,"14968":-1,"14969":0,"14970":-1,"14971":52,"14972":-1,"14973":-1,"14974":-1,"14975":135,"14976":0,"14977":0,"14978":-1,"14979":0,"14980":0,"14981":144,"14982":1395,"14983":101,"14984":211,"14985":0,"14986":0,"14987":-1,"14988":-1,"14989":-1,"14990":1516,"14991":1523,"14992":-1,"14993":-1,"14994":0,"14995":-1,"14996":-1,"14997":0,"14998":0,"14999":-1,"15000":93,"15001":-1,"15002":0,"15003":10,"15004":0,"15005":0,"15006":-1,"15007":0,"15008":-1,"15009":0,"15010":0,"15011":1331,"15012":-1,"15013":105,"15014":33,"15015":0,"15016":0,"15017":213,"15018":0,"15019":0,"15020":0,"15021":-1,"15022":167,"15023":196,"15024":1314,"15025":-1,"15026":-1,"15027":0,"15028":-1,"15029":-1,"15030":0,"15031":-1,"15032":0,"15033":1316,"15034":0,"15035":0,"15036":0,"15037":1335,"15038":281,"15039":0,"15040":1355,"15041":-1,"15042":-1,"15043":0,"15044":1403,"15045":0,"15046":0,"15047":0,"15048":0,"15049":-1,"15050":341,"15051":-1,"15052":-1,"15053":-1,"15054":0,"15055":0,"15056":0,"15057":-1,"15058":0,"15059":-1,"15060":-1,"15061":1373,"15062":-1,"15063":0,"15064":0,"15065":-1,"15066":0,"15067":0,"15068":0,"15069":0,"15070":0,"15071":0,"15072":-1,"15073":0,"15074":44,"15075":-1,"15076":-1,"15077":1318,"15078":1500,"15079":-1,"15080":0,"15081":0,"15082":0,"15083":0,"15084":0,"15085":-1,"15086":0,"15087":0,"15088":-1,"15089":1465,"15090":1345,"15091":0,"15092":0,"15093":0,"15094":-1,"15095":0,"15096":-1,"15097":0,"15098":0,"15099":-1,"15100":-1,"15101":0,"15102":0,"15103":0,"15104":0,"15105":0,"15106":-1,"15107":-1,"15108":0,"15109":0,"15110":-1,"15111":217,"15112":101,"15113":-1,"15114":0,"15115":0,"15116":-1,"15117":-1,"15118":0,"15119":-1,"15120":32,"15121":-1,"15122":0,"15123":-1,"15124":1536,"15125":-1,"15126":120,"15127":0,"15128":0,"15129":-1,"15130":348,"15131":0,"15132":1422,"15133":0,"15134":0,"15135":0,"15136":1484,"15137":0,"15138":1,"15139":0,"15140":0,"15141":0,"15142":0,"15143":-1,"15144":0,"15145":219,"15146":0,"15147":-1,"15148":0,"15149":-1,"15150":0,"15151":0,"15152":365,"15153":1550,"15154":-1,"15155":-1,"15156":-1,"15157":-1,"15158":-1,"15159":224,"15160":-1,"15161":0,"15162":-1,"15163":0,"15164":381,"15165":-1,"15166":0,"15167":38,"15168":149,"15169":198,"15170":-1,"15171":-1,"15172":1318,"15173":1515,"15174":0,"15175":0,"15176":150,"15177":1571,"15178":0,"15179":1329,"15180":0,"15181":1363,"15182":0,"15183":0,"15184":255,"15185":0,"15186":0,"15187":0,"15188":0,"15189":0,"15190":0,"15191":-1,"15192":-1,"15193":0,"15194":1440,"15195":0,"15196":0,"15197":-1,"15198":0,"15199":-1,"15200":0,"15201":0,"15202":-1,"15203":1362,"15204":-1,"15205":0,"15206":-1,"15207":1464,"15208":0,"15209":-1,"15210":0,"15211":-1,"15212":0,"15213":0,"15214":-1,"15215":0,"15216":-1,"15217":0,"15218":-1,"15219":-1,"15220":-1,"15221":0,"15222":0,"15223":-1,"15224":-1,"15225":-1,"15226":-1,"15227":0,"15228":1333,"15229":0,"15230":1311,"15231":0,"15232":-1,"15233":-1,"15234":0,"15235":0,"15236":-1,"15237":-1,"15238":-1,"15239":0,"15240":-1,"15241":-1,"15242":-1,"15243":214,"15244":-1,"15245":142,"15246":0,"15247":0,"15248":0,"15249":-1,"15250":-1,"15251":-1,"15252":0,"15253":0,"15254":0,"15255":1576,"15256":0,"15257":0,"15258":-1,"15259":0,"15260":-1,"15261":-1,"15262":0,"15263":0,"15264":1430,"15265":0,"15266":-1,"15267":0,"15268":1385,"15269":-1,"15270":0,"15271":-1,"15272":-1,"15273":-1,"15274":-1,"15275":0,"15276":-1,"15277":0,"15278":-1,"15279":1523,"15280":-1,"15281":-1,"15282":-1,"15283":1477,"15284":-1,"15285":-1,"15286":262,"15287":0,"15288":0,"15289":0,"15290":0,"15291":1465,"15292":1323,"15293":74,"15294":256,"15295":117,"15296":0,"15297":0,"15298":1329,"15299":-1,"15300":-1,"15301":-1,"15302":369,"15303":-1,"15304":0,"15305":0,"15306":-1,"15307":-1,"15308":0,"15309":0,"15310":0,"15311":1409,"15312":0,"15313":1390,"15314":0,"15315":-1,"15316":1335,"15317":11,"15318":0,"15319":0,"15320":334,"15321":0,"15322":0,"15323":-1,"15324":-1,"15325":-1,"15326":1460,"15327":1506,"15328":0,"15329":0,"15330":1437,"15331":1542,"15332":0,"15333":-1,"15334":-1,"15335":0,"15336":0,"15337":1349,"15338":0,"15339":0,"15340":0,"15341":1566,"15342":-1,"15343":1312,"15344":-1,"15345":0,"15346":60,"15347":-1,"15348":-1,"15349":0,"15350":25,"15351":0,"15352":-1,"15353":-1,"15354":0,"15355":240,"15356":1492,"15357":134,"15358":-1,"15359":0,"15360":-1,"15361":-1,"15362":0,"15363":-1,"15364":-1,"15365":-1,"15366":-1,"15367":-1,"15368":262,"15369":-1,"15370":-1,"15371":0,"15372":0,"15373":1563,"15374":0,"15375":-1,"15376":0,"15377":0,"15378":0,"15379":-1,"15380":1578,"15381":0,"15382":146,"15383":1365,"15384":0,"15385":-1,"15386":-1,"15387":-1,"15388":0,"15389":-1,"15390":1452,"15391":0,"15392":-1,"15393":-1,"15394":0,"15395":0,"15396":236,"15397":1456,"15398":0,"15399":-1,"15400":342,"15401":0,"15402":190,"15403":-1,"15404":1522,"15405":219,"15406":0,"15407":0,"15408":0,"15409":1517,"15410":0,"15411":-1,"15412":0,"15413":0,"15414":0,"15415":-1,"15416":-1,"15417":-1,"15418":1568,"15419":0,"15420":157,"15421":1421,"15422":0,"15423":96,"15424":0,"15425":-1,"15426":0,"15427":-1,"15428":0,"15429":0,"15430":1365,"15431":0,"15432":0,"15433":0,"15434":0,"15435":0,"15436":0,"15437":0,"15438":0,"15439":1473,"15440":0,"15441":0,"15442":-1,"15443":0,"15444":330,"15445":1568,"15446":148,"15447":-1,"15448":-1,"15449":-1,"15450":0,"15451":-1,"15452":0,"15453":-1,"15454":304,"15455":0,"15456":0,"15457":0,"15458":0,"15459":0,"15460":274,"15461":0,"15462":195,"15463":78,"15464":0,"15465":-1,"15466":303,"15467":1489,"15468":188,"15469":0,"15470":0,"15471":0,"15472":-1,"15473":0,"15474":1351,"15475":1306,"15476":-1,"15477":-1,"15478":-1,"15479":1430,"15480":0,"15481":0,"15482":0,"15483":-1,"15484":0,"15485":125,"15486":0,"15487":103,"15488":268,"15489":0,"15490":-1,"15491":48,"15492":-1,"15493":0,"15494":0,"15495":57,"15496":0,"15497":55,"15498":-1,"15499":-1,"15500":0,"15501":-1,"15502":1486,"15503":1540,"15504":0,"15505":0,"15506":-1,"15507":0,"15508":0,"15509":0,"15510":-1,"15511":1419,"15512":-1,"15513":0,"15514":347,"15515":-1,"15516":0,"15517":-1,"15518":-1,"15519":0,"15520":181,"15521":1423,"15522":0,"15523":0,"15524":0,"15525":-1,"15526":0,"15527":0,"15528":206,"15529":-1,"15530":1468,"15531":1339,"15532":0,"15533":0,"15534":0,"15535":1361,"15536":0,"15537":101,"15538":-1,"15539":1390,"15540":0,"15541":1411,"15542":473,"15543":-1,"15544":221,"15545":0,"15546":235,"15547":1422,"15548":1514,"15549":0,"15550":-1,"15551":206,"15552":-1,"15553":-1,"15554":-1,"15555":1326,"15556":0,"15557":252,"15558":0,"15559":-1,"15560":0,"15561":1572,"15562":-1,"15563":0,"15564":-1,"15565":103,"15566":0,"15567":-1,"15568":-1,"15569":0,"15570":0,"15571":0,"15572":-1,"15573":0,"15574":332,"15575":1515,"15576":0,"15577":0,"15578":1523,"15579":0,"15580":-1,"15581":-1,"15582":0,"15583":0,"15584":0,"15585":-1,"15586":0,"15587":0,"15588":-1,"15589":0,"15590":19,"15591":1405,"15592":0,"15593":0,"15594":1497,"15595":0,"15596":-1,"15597":0,"15598":0,"15599":-1,"15600":-1,"15601":-1,"15602":0,"15603":0,"15604":0,"15605":75,"15606":220,"15607":55,"15608":1514,"15609":1363,"15610":-1,"15611":0,"15612":0,"15613":-1,"15614":0,"15615":-1,"15616":-1,"15617":0,"15618":0,"15619":0,"15620":1345,"15621":0,"15622":326,"15623":78,"15624":371,"15625":0,"15626":0,"15627":-1,"15628":-1,"15629":-1,"15630":-1,"15631":-1,"15632":0,"15633":-1,"15634":1328,"15635":1416,"15636":-1,"15637":0,"15638":0,"15639":160,"15640":-1,"15641":0,"15642":-1,"15643":0,"15644":0,"15645":-1,"15646":0,"15647":0,"15648":0,"15649":0,"15650":-1,"15651":-1,"15652":0,"15653":0,"15654":1368,"15655":40,"15656":1524,"15657":-1,"15658":157,"15659":0,"15660":-1,"15661":-1,"15662":1346,"15663":0,"15664":-1,"15665":-1,"15666":0,"15667":-1,"15668":-1,"15669":1493,"15670":0,"15671":0,"15672":0,"15673":-1,"15674":-1,"15675":0,"15676":0,"15677":341,"15678":0,"15679":0,"15680":-1,"15681":1309,"15682":-1,"15683":0,"15684":0,"15685":0,"15686":0,"15687":-1,"15688":0,"15689":-1,"15690":213,"15691":0,"15692":0,"15693":0,"15694":0,"15695":307,"15696":282,"15697":0,"15698":-1,"15699":0,"15700":0,"15701":-1,"15702":0,"15703":127,"15704":-1,"15705":-1,"15706":1429,"15707":0,"15708":-1,"15709":384,"15710":0,"15711":-1,"15712":14,"15713":0,"15714":0,"15715":0,"15716":131,"15717":1558,"15718":1315,"15719":0,"15720":1563,"15721":-1,"15722":0,"15723":-1,"15724":-1,"15725":1569,"15726":0,"15727":1305,"15728":0,"15729":0,"15730":0,"15731":0,"15732":0,"15733":-1,"15734":-1,"15735":1351,"15736":-1,"15737":0,"15738":111,"15739":0,"15740":0,"15741":0,"15742":307,"15743":0,"15744":-1,"15745":1338,"15746":253,"15747":0,"15748":116,"15749":-1,"15750":0,"15751":0,"15752":-1,"15753":0,"15754":284,"15755":0,"15756":0,"15757":-1,"15758":0,"15759":0,"15760":0,"15761":1497,"15762":-1,"15763":-1,"15764":0,"15765":-1,"15766":-1,"15767":0,"15768":-1,"15769":0,"15770":-1,"15771":0,"15772":-1,"15773":-1,"15774":0,"15775":0,"15776":0,"15777":-1,"15778":-1,"15779":127,"15780":-1,"15781":0,"15782":-1,"15783":1300,"15784":-1,"15785":0,"15786":1453,"15787":0,"15788":-1,"15789":0,"15790":-1,"15791":53,"15792":0,"15793":1484,"15794":0,"15795":0,"15796":0,"15797":-1,"15798":0,"15799":149,"15800":27,"15801":0,"15802":54,"15803":0,"15804":1396,"15805":-1,"15806":0,"15807":0,"15808":-1,"15809":0,"15810":0,"15811":0,"15812":1422,"15813":-1,"15814":121,"15815":0,"15816":-1,"15817":0,"15818":166,"15819":0,"15820":1309,"15821":-1,"15822":0,"15823":-1,"15824":-1,"15825":1377,"15826":-1,"15827":0,"15828":0,"15829":1516,"15830":0,"15831":-1,"15832":0,"15833":1334,"15834":-1,"15835":0,"15836":0,"15837":0,"15838":-1,"15839":1453,"15840":0,"15841":-1,"15842":1422,"15843":-1,"15844":0,"15845":-1,"15846":64,"15847":-1,"15848":-1,"15849":-1,"15850":0,"15851":1356,"15852":-1,"15853":-1,"15854":1377,"15855":1566,"15856":1426,"15857":-1,"15858":-1,"15859":-1,"15860":0,"15861":0,"15862":1463,"15863":0,"15864":18,"15865":0,"15866":1562,"15867":-1,"15868":1393,"15869":-1,"15870":0,"15871":1469,"15872":-1,"15873":-1,"15874":0,"15875":-1,"15876":347,"15877":0,"15878":0,"15879":-1,"15880":-1,"15881":0,"15882":0,"15883":0,"15884":0,"15885":0,"15886":-1,"15887":385,"15888":-1,"15889":0,"15890":1326,"15891":-1,"15892":-1,"15893":372,"15894":0,"15895":-1,"15896":331,"15897":-1,"15898":0,"15899":0,"15900":-1,"15901":0,"15902":0,"15903":0,"15904":-1,"15905":-1,"15906":0,"15907":-1,"15908":0,"15909":0,"15910":0,"15911":14,"15912":0,"15913":0,"15914":-1,"15915":-1,"15916":0,"15917":0,"15918":1409,"15919":0,"15920":0,"15921":0,"15922":0,"15923":-1,"15924":1383,"15925":142,"15926":0,"15927":-1,"15928":0,"15929":123,"15930":0,"15931":26,"15932":89,"15933":-1,"15934":1444,"15935":0,"15936":0,"15937":-1,"15938":0,"15939":-1,"15940":-1,"15941":-1,"15942":0,"15943":-1,"15944":0,"15945":1316,"15946":38,"15947":0,"15948":-1,"15949":-1,"15950":0,"15951":305,"15952":-1,"15953":0,"15954":0,"15955":0,"15956":0,"15957":0,"15958":0,"15959":0,"15960":0,"15961":1345,"15962":1405,"15963":-1,"15964":0,"15965":0,"15966":0,"15967":0,"15968":0,"15969":0,"15970":41,"15971":1346,"15972":0,"15973":0,"15974":-1,"15975":145,"15976":357,"15977":0,"15978":-1,"15979":-1,"15980":0,"15981":0,"15982":51,"15983":265,"15984":24,"15985":-1,"15986":-1,"15987":1537,"15988":1375,"15989":-1,"15990":0,"15991":0,"15992":232,"15993":116,"15994":0,"15995":-1,"15996":16,"15997":0,"15998":0,"15999":0,"16000":1556,"16001":0,"16002":1501,"16003":0,"16004":230,"16005":0,"16006":-1,"16007":198,"16008":0,"16009":0,"16010":0,"16011":0,"16012":-1,"16013":-1,"16014":-1,"16015":0,"16016":-1,"16017":-1,"16018":-1,"16019":-1,"16020":0,"16021":0,"16022":0,"16023":-1,"16024":-1,"16025":-1,"16026":-1,"16027":0,"16028":0,"16029":-1,"16030":1389,"16031":0,"16032":10,"16033":181,"16034":0,"16035":-1,"16036":-1,"16037":-1,"16038":30,"16039":0,"16040":0,"16041":0,"16042":0,"16043":1442,"16044":1451,"16045":0,"16046":1454,"16047":0,"16048":0,"16049":342,"16050":186,"16051":243,"16052":-1,"16053":44,"16054":0,"16055":0,"16056":-1,"16057":0,"16058":0,"16059":1583,"16060":0,"16061":306,"16062":0,"16063":1500,"16064":346,"16065":0,"16066":1435,"16067":1449,"16068":0,"16069":0,"16070":-1,"16071":123,"16072":-1,"16073":0,"16074":-1,"16075":0,"16076":0,"16077":0,"16078":-1,"16079":0,"16080":123,"16081":0,"16082":-1,"16083":162,"16084":97,"16085":217,"16086":-1,"16087":0,"16088":-1,"16089":0,"16090":0,"16091":1385,"16092":1392,"16093":0,"16094":264,"16095":268,"16096":0,"16097":159,"16098":0,"16099":1430,"16100":371,"16101":-1,"16102":-1,"16103":-1,"16104":0,"16105":0,"16106":0,"16107":0,"16108":-1,"16109":-1,"16110":0,"16111":343,"16112":1347,"16113":-1,"16114":1507,"16115":303,"16116":1352,"16117":-1,"16118":0,"16119":360,"16120":0,"16121":-1,"16122":-1,"16123":1395,"16124":1453,"16125":-1,"16126":-1,"16127":0,"16128":0,"16129":-1,"16130":298,"16131":0,"16132":0,"16133":-1,"16134":-1,"16135":0,"16136":-1,"16137":65,"16138":0,"16139":0,"16140":0,"16141":1483,"16142":314,"16143":1467,"16144":-1,"16145":-1,"16146":0,"16147":0,"16148":0,"16149":-1,"16150":170,"16151":0,"16152":0,"16153":0,"16154":-1,"16155":109,"16156":-1,"16157":1553,"16158":0,"16159":-1,"16160":1536,"16161":0,"16162":-1,"16163":-1,"16164":0,"16165":0,"16166":304,"16167":235,"16168":0,"16169":-1,"16170":-1,"16171":0,"16172":-1,"16173":0,"16174":-1,"16175":-1,"16176":0,"16177":1434,"16178":-1,"16179":-1,"16180":365,"16181":0,"16182":0,"16183":336,"16184":0,"16185":0,"16186":0,"16187":-1,"16188":0,"16189":-1,"16190":0,"16191":221,"16192":0,"16193":85,"16194":0,"16195":0,"16196":-1,"16197":98,"16198":0,"16199":-1,"16200":0,"16201":0,"16202":54,"16203":0,"16204":0,"16205":-1,"16206":0,"16207":0,"16208":0,"16209":0,"16210":-1,"16211":-1,"16212":-1,"16213":-1,"16214":-1,"16215":-1,"16216":-1,"16217":-1,"16218":0,"16219":256,"16220":0,"16221":328,"16222":1368,"16223":0,"16224":1375,"16225":303,"16226":0,"16227":0,"16228":1316,"16229":-1,"16230":-1,"16231":-1,"16232":-1,"16233":0,"16234":235,"16235":0,"16236":1450,"16237":-1,"16238":0,"16239":-1,"16240":338,"16241":0,"16242":0,"16243":0,"16244":261,"16245":1480,"16246":0,"16247":-1,"16248":1409,"16249":0,"16250":1323,"16251":370,"16252":0,"16253":0,"16254":0,"16255":-1,"16256":-1,"16257":0,"16258":330,"16259":0,"16260":-1,"16261":87,"16262":0,"16263":-1,"16264":-1,"16265":0,"16266":0,"16267":0,"16268":0,"16269":0,"16270":-1,"16271":0,"16272":0,"16273":0,"16274":1509,"16275":0,"16276":1489,"16277":0,"16278":299,"16279":0,"16280":0,"16281":328,"16282":0,"16283":93,"16284":119,"16285":-1,"16286":0,"16287":-1,"16288":0,"16289":40,"16290":213,"16291":244,"16292":297,"16293":0,"16294":0,"16295":-1,"16296":-1,"16297":1299,"16298":-1,"16299":-1,"16300":0,"16301":0,"16302":0,"16303":0,"16304":0,"16305":-1,"16306":1308,"16307":-1,"16308":0,"16309":317,"16310":134,"16311":202,"16312":0,"16313":-1,"16314":-1,"16315":0,"16316":239,"16317":1495,"16318":0,"16319":0,"16320":0,"16321":271,"16322":0,"16323":0,"16324":0,"16325":1554,"16326":0,"16327":1517,"16328":1561,"16329":70,"16330":41,"16331":0,"16332":279,"16333":-1,"16334":0,"16335":0,"16336":-1,"16337":0,"16338":0,"16339":0,"16340":0,"16341":354,"16342":0,"16343":-1,"16344":0,"16345":-1,"16346":0,"16347":0,"16348":0,"16349":0,"16350":0,"16351":0,"16352":0,"16353":-1,"16354":0,"16355":0,"16356":-1,"16357":-1,"16358":0,"16359":1375,"16360":0,"16361":13,"16362":0,"16363":-1,"16364":-1,"16365":0,"16366":326,"16367":0,"16368":-1,"16369":322,"16370":0,"16371":357,"16372":1571,"16373":0,"16374":0,"16375":-1,"16376":0,"16377":11,"16378":-1,"16379":-1,"16380":0,"16381":1397,"16382":0,"16383":0,"16384":0,"16385":0,"16386":1342,"16387":1537,"16388":1421,"16389":0,"16390":0,"16391":217,"16392":0,"16393":0,"16394":1449,"16395":0,"16396":-1,"16397":-1,"16398":230,"16399":-1,"16400":0,"16401":0,"16402":-1,"16403":352,"16404":-1,"16405":0,"16406":73,"16407":0,"16408":-1,"16409":0,"16410":0,"16411":-1,"16412":0,"16413":0,"16414":0,"16415":-1,"16416":-1,"16417":0,"16418":0,"16419":-1,"16420":-1,"16421":0,"16422":0,"16423":1458,"16424":-1,"16425":-1,"16426":21,"16427":1558,"16428":-1,"16429":1550,"16430":0,"16431":-1,"16432":0,"16433":297,"16434":-1,"16435":0,"16436":0,"16437":0,"16438":0,"16439":0,"16440":330,"16441":1456,"16442":362,"16443":0,"16444":0,"16445":1317,"16446":0,"16447":0,"16448":360,"16449":0,"16450":0,"16451":-1,"16452":161,"16453":-1,"16454":0,"16455":19,"16456":0,"16457":0,"16458":-1,"16459":0,"16460":-1,"16461":0,"16462":145,"16463":0,"16464":0,"16465":281,"16466":0,"16467":158,"16468":0,"16469":0,"16470":0,"16471":1298,"16472":-1,"16473":266,"16474":0,"16475":1318,"16476":0,"16477":289,"16478":6,"16479":1361,"16480":-1,"16481":1381,"16482":0,"16483":0,"16484":-1,"16485":1364,"16486":-1,"16487":0,"16488":-1,"16489":0,"16490":0,"16491":-1,"16492":0,"16493":0,"16494":0,"16495":-1,"16496":0,"16497":-1,"16498":-1,"16499":9,"16500":-1,"16501":0,"16502":0,"16503":-1,"16504":-1,"16505":0,"16506":0,"16507":-1,"16508":-1,"16509":0,"16510":1324,"16511":-1,"16512":0,"16513":-1,"16514":-1,"16515":0,"16516":0,"16517":0,"16518":-1,"16519":0,"16520":-1,"16521":0,"16522":166,"16523":136,"16524":0,"16525":1418,"16526":-1,"16527":-1,"16528":1388,"16529":1559,"16530":1301,"16531":0,"16532":153,"16533":-1,"16534":0,"16535":-1,"16536":429,"16537":1477,"16538":-1,"16539":0,"16540":0,"16541":0,"16542":0,"16543":0,"16544":0,"16545":0,"16546":0,"16547":265,"16548":0,"16549":254,"16550":-1,"16551":0,"16552":0,"16553":1402,"16554":144,"16555":0,"16556":1449,"16557":1451,"16558":-1,"16559":0,"16560":0,"16561":-1,"16562":0,"16563":0,"16564":1583,"16565":0,"16566":-1,"16567":0,"16568":0,"16569":0,"16570":-1,"16571":269,"16572":0,"16573":0,"16574":0,"16575":0,"16576":282,"16577":1357,"16578":0,"16579":0,"16580":0,"16581":0,"16582":1336,"16583":0,"16584":168,"16585":-1,"16586":0,"16587":-1,"16588":0,"16589":1487,"16590":-1,"16591":1312,"16592":0,"16593":-1,"16594":-1,"16595":0,"16596":0,"16597":0,"16598":-1,"16599":1489,"16600":0,"16601":1351,"16602":136,"16603":66,"16604":0,"16605":-1,"16606":0,"16607":-1,"16608":180,"16609":-1,"16610":-1,"16611":-1,"16612":1397,"16613":0,"16614":-1,"16615":0,"16616":0,"16617":0,"16618":-1,"16619":0,"16620":-1,"16621":0,"16622":181,"16623":0,"16624":-1,"16625":1457,"16626":-1,"16627":0,"16628":0,"16629":0,"16630":-1,"16631":0,"16632":0,"16633":-1,"16634":0,"16635":127,"16636":0,"16637":0,"16638":180,"16639":295,"16640":23,"16641":1414,"16642":0,"16643":0,"16644":170,"16645":107,"16646":0,"16647":-1,"16648":-1,"16649":0,"16650":-1,"16651":0,"16652":0,"16653":169,"16654":0,"16655":1552,"16656":0,"16657":0,"16658":0,"16659":313,"16660":0,"16661":-1,"16662":0,"16663":-1,"16664":0,"16665":-1,"16666":-1,"16667":76,"16668":0,"16669":0,"16670":0,"16671":1506,"16672":0,"16673":-1,"16674":305,"16675":12,"16676":182,"16677":0,"16678":-1,"16679":0,"16680":323,"16681":0,"16682":0,"16683":-1,"16684":0,"16685":0,"16686":-1,"16687":0,"16688":-1,"16689":161,"16690":182,"16691":0,"16692":1552,"16693":0,"16694":0,"16695":-1,"16696":0,"16697":0,"16698":-1,"16699":-1,"16700":288,"16701":133,"16702":-1,"16703":0,"16704":-1,"16705":-1,"16706":-1,"16707":278,"16708":-1,"16709":1468,"16710":0,"16711":0,"16712":-1,"16713":1323,"16714":-1,"16715":-1,"16716":1436,"16717":-1,"16718":0,"16719":0,"16720":0,"16721":383,"16722":0,"16723":1563,"16724":-1,"16725":0,"16726":1420,"16727":-1,"16728":0,"16729":0,"16730":1430,"16731":252,"16732":-1,"16733":0,"16734":92,"16735":0,"16736":0,"16737":-1,"16738":-1,"16739":0,"16740":0,"16741":1409,"16742":-1,"16743":1564,"16744":317,"16745":0,"16746":0,"16747":0,"16748":0,"16749":0,"16750":1581,"16751":298,"16752":0,"16753":0,"16754":268,"16755":0,"16756":-1,"16757":0,"16758":1523,"16759":0,"16760":235,"16761":0,"16762":0,"16763":0,"16764":1577,"16765":0,"16766":0,"16767":0,"16768":-1,"16769":192,"16770":213,"16771":0,"16772":0,"16773":98,"16774":0,"16775":0,"16776":0,"16777":0,"16778":1363,"16779":381,"16780":0,"16781":0,"16782":0,"16783":1568,"16784":0,"16785":0,"16786":-1,"16787":1456,"16788":-1,"16789":1527,"16790":-1,"16791":-1,"16792":1454,"16793":-1,"16794":0,"16795":1356,"16796":-1,"16797":-1,"16798":-1,"16799":0,"16800":1479,"16801":0,"16802":1535,"16803":190,"16804":0,"16805":0,"16806":0,"16807":0,"16808":1321,"16809":0,"16810":-1,"16811":-1,"16812":0,"16813":0,"16814":0,"16815":1326,"16816":1581,"16817":261,"16818":1376,"16819":0,"16820":1512,"16821":1302,"16822":-1,"16823":1537,"16824":0,"16825":0,"16826":-1,"16827":0,"16828":0,"16829":-1,"16830":0,"16831":0,"16832":0,"16833":154,"16834":0,"16835":0,"16836":62,"16837":1501,"16838":0,"16839":-1,"16840":-1,"16841":0,"16842":-1,"16843":-1,"16844":1338,"16845":1525,"16846":0,"16847":-1,"16848":-1,"16849":0,"16850":0,"16851":0,"16852":0,"16853":207,"16854":220,"16855":0,"16856":0,"16857":-1,"16858":0,"16859":-1,"16860":0,"16861":-1,"16862":1302,"16863":-1,"16864":271,"16865":-1,"16866":0,"16867":0,"16868":0,"16869":0,"16870":1371,"16871":0,"16872":0,"16873":-1,"16874":1407,"16875":-1,"16876":1403,"16877":0,"16878":0,"16879":1446,"16880":47,"16881":-1,"16882":0,"16883":-1,"16884":1583,"16885":0,"16886":0,"16887":-1,"16888":222,"16889":0,"16890":0,"16891":-1,"16892":-1,"16893":159,"16894":0,"16895":0,"16896":0,"16897":0,"16898":0,"16899":0,"16900":0,"16901":0,"16902":-1,"16903":0,"16904":1552,"16905":-1,"16906":20,"16907":0,"16908":47,"16909":17,"16910":-1,"16911":0,"16912":0,"16913":268,"16914":-1,"16915":0,"16916":0,"16917":-1,"16918":-1,"16919":1371,"16920":1547,"16921":167,"16922":0,"16923":-1,"16924":326,"16925":0,"16926":1347,"16927":-1,"16928":1461,"16929":0,"16930":0,"16931":-1,"16932":0,"16933":0,"16934":-1,"16935":-1,"16936":146,"16937":1449,"16938":1351,"16939":0,"16940":323,"16941":0,"16942":0,"16943":1573,"16944":0,"16945":-1,"16946":282,"16947":1492,"16948":74,"16949":-1,"16950":-1,"16951":-1,"16952":0,"16953":-1,"16954":1511,"16955":-1,"16956":-1,"16957":30,"16958":-1,"16959":62,"16960":0,"16961":-1,"16962":1316,"16963":-1,"16964":-1,"16965":0,"16966":85,"16967":-1,"16968":0,"16969":0,"16970":0,"16971":-1,"16972":0,"16973":-1,"16974":-1,"16975":-1,"16976":1483,"16977":1534,"16978":348,"16979":-1,"16980":-1,"16981":0,"16982":0,"16983":0,"16984":0,"16985":-1,"16986":314,"16987":134,"16988":0,"16989":1481,"16990":-1,"16991":0,"16992":0,"16993":-1,"16994":-1,"16995":-1,"16996":0,"16997":0,"16998":0,"16999":-1,"17000":1365,"17001":-1,"17002":0,"17003":-1,"17004":246,"17005":0,"17006":0,"17007":1421,"17008":-1,"17009":-1,"17010":0,"17011":145,"17012":1552,"17013":-1,"17014":0,"17015":37,"17016":-1,"17017":0,"17018":-1,"17019":-1,"17020":0,"17021":92,"17022":1518,"17023":1328,"17024":0,"17025":76,"17026":0,"17027":0,"17028":164,"17029":0,"17030":0,"17031":0,"17032":0,"17033":336,"17034":0,"17035":0,"17036":182,"17037":-1,"17038":0,"17039":-1,"17040":0,"17041":0,"17042":0,"17043":0,"17044":-1,"17045":146,"17046":-1,"17047":19,"17048":0,"17049":-1,"17050":0,"17051":-1,"17052":-1,"17053":58,"17054":0,"17055":-1,"17056":-1,"17057":0,"17058":-1,"17059":16,"17060":1317,"17061":1371,"17062":-1,"17063":1443,"17064":0,"17065":0,"17066":1524,"17067":2,"17068":-1,"17069":0,"17070":-1,"17071":0,"17072":1542,"17073":0,"17074":0,"17075":-1,"17076":0,"17077":1389,"17078":-1,"17079":1454,"17080":-1,"17081":0,"17082":230,"17083":-1,"17084":0,"17085":-1,"17086":1347,"17087":-1,"17088":0,"17089":0,"17090":0,"17091":299,"17092":15,"17093":287,"17094":1493,"17095":1560,"17096":-1,"17097":0,"17098":0,"17099":1566,"17100":0,"17101":1427,"17102":232,"17103":-1,"17104":1324,"17105":1584,"17106":1525,"17107":0,"17108":-1,"17109":29,"17110":0,"17111":1567,"17112":0,"17113":-1,"17114":-1,"17115":-1,"17116":0,"17117":-1,"17118":326,"17119":1384,"17120":1570,"17121":-1,"17122":-1,"17123":0,"17124":253,"17125":1518,"17126":-1,"17127":278,"17128":0,"17129":-1,"17130":1511,"17131":-1,"17132":1573,"17133":0,"17134":0,"17135":-1,"17136":-1,"17137":0,"17138":1571,"17139":201,"17140":1338,"17141":1537,"17142":1433,"17143":1367,"17144":1421,"17145":0,"17146":0,"17147":0,"17148":-1,"17149":0,"17150":0,"17151":0,"17152":0,"17153":0,"17154":0,"17155":0,"17156":-1,"17157":0,"17158":0,"17159":1480,"17160":0,"17161":0,"17162":38,"17163":1437,"17164":0,"17165":0,"17166":0,"17167":-1,"17168":0,"17169":0,"17170":0,"17171":0,"17172":-1,"17173":-1,"17174":0,"17175":1386,"17176":-1,"17177":1448,"17178":0,"17179":1458,"17180":-1,"17181":-1,"17182":1490,"17183":-1,"17184":-1,"17185":0,"17186":241,"17187":0,"17188":-1,"17189":0,"17190":0,"17191":1546,"17192":70,"17193":1404,"17194":0,"17195":-1,"17196":-1,"17197":0,"17198":-1,"17199":-1,"17200":-1,"17201":0,"17202":-1,"17203":-1,"17204":0,"17205":0,"17206":0,"17207":197,"17208":281,"17209":0,"17210":1299,"17211":0,"17212":0,"17213":0,"17214":324,"17215":0,"17216":0,"17217":0,"17218":0,"17219":1364,"17220":-1,"17221":-1,"17222":0,"17223":1316,"17224":-1,"17225":93,"17226":0,"17227":1503,"17228":-1,"17229":45,"17230":-1,"17231":303,"17232":-1,"17233":194,"17234":0,"17235":124,"17236":1438,"17237":186,"17238":1404,"17239":0,"17240":-1,"17241":0,"17242":-1,"17243":-1,"17244":0,"17245":1542,"17246":0,"17247":0,"17248":-1,"17249":0,"17250":-1,"17251":0,"17252":-1,"17253":0,"17254":0,"17255":0,"17256":1458,"17257":438,"17258":0,"17259":-1,"17260":1582,"17261":285,"17262":0,"17263":1353,"17264":0,"17265":0,"17266":288,"17267":0,"17268":0,"17269":0,"17270":0,"17271":0,"17272":0,"17273":0,"17274":0,"17275":-1,"17276":285,"17277":-1,"17278":0,"17279":0,"17280":0,"17281":256,"17282":0,"17283":-1,"17284":0,"17285":-1,"17286":0,"17287":-1,"17288":0,"17289":0,"17290":-1,"17291":-1,"17292":0,"17293":-1,"17294":0,"17295":-1,"17296":0,"17297":-1,"17298":-1,"17299":0,"17300":0,"17301":261,"17302":-1,"17303":1425,"17304":1482,"17305":-1,"17306":0,"17307":0,"17308":1429,"17309":-1,"17310":0,"17311":-1,"17312":-1,"17313":0,"17314":0,"17315":197,"17316":299,"17317":0,"17318":44,"17319":0,"17320":0,"17321":0,"17322":-1,"17323":0,"17324":-1,"17325":0,"17326":0,"17327":0,"17328":-1,"17329":1399,"17330":-1,"17331":-1,"17332":-1,"17333":145,"17334":0,"17335":0,"17336":0,"17337":1466,"17338":0,"17339":0,"17340":-1,"17341":0,"17342":1521,"17343":0,"17344":-1,"17345":-1,"17346":0,"17347":-1,"17348":-1,"17349":-1,"17350":252,"17351":0,"17352":0,"17353":-1,"17354":-1,"17355":-1,"17356":1563,"17357":0,"17358":278,"17359":0,"17360":0,"17361":1458,"17362":-1,"17363":0,"17364":33,"17365":0,"17366":331,"17367":241,"17368":-1,"17369":0,"17370":0,"17371":-1,"17372":-1,"17373":-1,"17374":-1,"17375":-1,"17376":-1,"17377":-1,"17378":14,"17379":-1,"17380":0,"17381":182,"17382":1362,"17383":0,"17384":-1,"17385":-1,"17386":0,"17387":-1,"17388":0,"17389":1510,"17390":-1,"17391":-1,"17392":-1,"17393":-1,"17394":0,"17395":0,"17396":0,"17397":-1,"17398":1529,"17399":0,"17400":-1,"17401":0,"17402":-1,"17403":0,"17404":0,"17405":-1,"17406":-1,"17407":230,"17408":-1,"17409":1543,"17410":1329,"17411":0,"17412":0,"17413":1411,"17414":0,"17415":-1,"17416":-1,"17417":1555,"17418":1301,"17419":-1,"17420":202,"17421":-1,"17422":293,"17423":0,"17424":1440,"17425":-1,"17426":109,"17427":0,"17428":-1,"17429":0,"17430":0,"17431":0,"17432":314,"17433":-1,"17434":0,"17435":1563,"17436":0,"17437":-1,"17438":0,"17439":1571,"17440":-1,"17441":0,"17442":0,"17443":-1,"17444":-1,"17445":0,"17446":102,"17447":0,"17448":-1,"17449":149,"17450":0,"17451":-1,"17452":383,"17453":1449,"17454":0,"17455":0,"17456":-1,"17457":0,"17458":1488,"17459":0,"17460":-1,"17461":165,"17462":0,"17463":79,"17464":0,"17465":-1,"17466":359,"17467":9,"17468":284,"17469":-1,"17470":-1,"17471":0,"17472":-1,"17473":-1,"17474":0,"17475":0,"17476":0,"17477":246,"17478":-1,"17479":1364,"17480":-1,"17481":0,"17482":262,"17483":0,"17484":203,"17485":0,"17486":0,"17487":-1,"17488":0,"17489":1542,"17490":0,"17491":0,"17492":0,"17493":-1,"17494":-1,"17495":-1,"17496":0,"17497":237,"17498":0,"17499":369,"17500":0,"17501":-1,"17502":0,"17503":1487,"17504":1364,"17505":0,"17506":0,"17507":-1,"17508":-1,"17509":0,"17510":-1,"17511":0,"17512":0,"17513":-1,"17514":0,"17515":-1,"17516":1570,"17517":-1,"17518":-1,"17519":0,"17520":0,"17521":0,"17522":-1,"17523":0,"17524":0,"17525":-1,"17526":-1,"17527":1552,"17528":0,"17529":0,"17530":0,"17531":51,"17532":-1,"17533":1488,"17534":-1,"17535":0,"17536":72,"17537":87,"17538":56,"17539":0,"17540":0,"17541":-1,"17542":0,"17543":0,"17544":-1,"17545":-1,"17546":0,"17547":-1,"17548":-1,"17549":1558,"17550":0,"17551":116,"17552":237,"17553":0,"17554":-1,"17555":-1,"17556":0,"17557":1385,"17558":0,"17559":-1,"17560":0,"17561":-1,"17562":-1,"17563":0,"17564":0,"17565":243,"17566":0,"17567":347,"17568":0,"17569":-1,"17570":0,"17571":-1,"17572":0,"17573":-1,"17574":-1,"17575":70,"17576":0,"17577":109,"17578":0,"17579":0,"17580":0,"17581":0,"17582":0,"17583":0,"17584":1406,"17585":0,"17586":0,"17587":0,"17588":-1,"17589":0,"17590":0,"17591":0,"17592":-1,"17593":-1,"17594":306,"17595":347,"17596":364,"17597":0,"17598":-1,"17599":0,"17600":0,"17601":-1,"17602":0,"17603":1574,"17604":-1,"17605":0,"17606":0,"17607":0,"17608":0,"17609":-1,"17610":0,"17611":-1,"17612":0,"17613":1378,"17614":1393,"17615":0,"17616":0,"17617":-1,"17618":-1,"17619":0,"17620":0,"17621":0,"17622":0,"17623":0,"17624":0,"17625":0,"17626":-1,"17627":0,"17628":0,"17629":0,"17630":0,"17631":-1,"17632":1564,"17633":1423,"17634":-1,"17635":1567,"17636":-1,"17637":0,"17638":-1,"17639":1579,"17640":0,"17641":44,"17642":-1,"17643":1374,"17644":-1,"17645":0,"17646":0,"17647":1550,"17648":0,"17649":0,"17650":-1,"17651":-1,"17652":0,"17653":0,"17654":-1,"17655":-1,"17656":0,"17657":1551,"17658":-1,"17659":1456,"17660":-1,"17661":150,"17662":0,"17663":-1,"17664":224,"17665":11,"17666":0,"17667":0,"17668":0,"17669":-1,"17670":302,"17671":0,"17672":0,"17673":0,"17674":0,"17675":0,"17676":0,"17677":0,"17678":-1,"17679":174,"17680":0,"17681":0,"17682":92,"17683":0,"17684":-1,"17685":-1,"17686":0,"17687":-1,"17688":0,"17689":-1,"17690":-1,"17691":0,"17692":0,"17693":0,"17694":0,"17695":0,"17696":0,"17697":0,"17698":0,"17699":0,"17700":0,"17701":0,"17702":-1,"17703":0,"17704":1335,"17705":-1,"17706":0,"17707":162,"17708":0,"17709":0,"17710":1481,"17711":1561,"17712":1332,"17713":0,"17714":224,"17715":1401,"17716":1444,"17717":383,"17718":0,"17719":0,"17720":-1,"17721":-1,"17722":-1,"17723":1486,"17724":0,"17725":0,"17726":-1,"17727":0,"17728":-1,"17729":-1,"17730":-1,"17731":0,"17732":-1,"17733":-1,"17734":268,"17735":0,"17736":1441,"17737":0,"17738":0,"17739":-1,"17740":0,"17741":0,"17742":1310,"17743":225,"17744":0,"17745":0,"17746":-1,"17747":206,"17748":0,"17749":0,"17750":-1,"17751":17,"17752":-1,"17753":0,"17754":1546,"17755":-1,"17756":1460,"17757":1392,"17758":313,"17759":1476,"17760":-1,"17761":0,"17762":67,"17763":1330,"17764":-1,"17765":0,"17766":0,"17767":-1,"17768":-1,"17769":-1,"17770":0,"17771":1491,"17772":0,"17773":230,"17774":-1,"17775":1468,"17776":0,"17777":1522,"17778":1318,"17779":283,"17780":0,"17781":18,"17782":0,"17783":0,"17784":-1,"17785":125,"17786":41,"17787":-1,"17788":0,"17789":0,"17790":0,"17791":0,"17792":0,"17793":0,"17794":0,"17795":0,"17796":0,"17797":0,"17798":192,"17799":0,"17800":-1,"17801":1540,"17802":1458,"17803":-1,"17804":1394,"17805":160,"17806":1472,"17807":0,"17808":-1,"17809":0,"17810":1562,"17811":-1,"17812":-1,"17813":-1,"17814":-1,"17815":-1,"17816":0,"17817":0,"17818":0,"17819":-1,"17820":0,"17821":0,"17822":-1,"17823":0,"17824":-1,"17825":-1,"17826":0,"17827":301,"17828":-1,"17829":1528,"17830":29,"17831":42,"17832":-1,"17833":-1,"17834":0,"17835":38,"17836":0,"17837":0,"17838":0,"17839":0,"17840":0,"17841":-1,"17842":-1,"17843":0,"17844":-1,"17845":41,"17846":-1,"17847":-1,"17848":0,"17849":0,"17850":81,"17851":-1,"17852":0,"17853":1527,"17854":-1,"17855":-1,"17856":1349,"17857":-1,"17858":0,"17859":0,"17860":-1,"17861":-1,"17862":-1,"17863":1465,"17864":0,"17865":1500,"17866":0,"17867":0,"17868":0,"17869":-1,"17870":167,"17871":0,"17872":1368,"17873":-1,"17874":0,"17875":-1,"17876":176,"17877":-1,"17878":-1,"17879":214,"17880":-1,"17881":1512,"17882":0,"17883":0,"17884":-1,"17885":65,"17886":-1,"17887":1552,"17888":-1,"17889":0,"17890":0,"17891":-1,"17892":298,"17893":0,"17894":0,"17895":1390,"17896":0,"17897":1341,"17898":1447,"17899":0,"17900":328,"17901":0,"17902":1560,"17903":0,"17904":0,"17905":-1,"17906":-1,"17907":0,"17908":1389,"17909":0,"17910":1356,"17911":-1,"17912":0,"17913":331,"17914":1557,"17915":0,"17916":1326,"17917":1566,"17918":0,"17919":-1,"17920":0,"17921":-1,"17922":0,"17923":1480,"17924":1362,"17925":0,"17926":281,"17927":-1,"17928":-1,"17929":-1,"17930":0,"17931":0,"17932":33,"17933":-1,"17934":0,"17935":-1,"17936":0,"17937":1480,"17938":94,"17939":0,"17940":0,"17941":-1,"17942":-1,"17943":0,"17944":438,"17945":0,"17946":0,"17947":0,"17948":169,"17949":-1,"17950":0,"17951":331,"17952":1414,"17953":-1,"17954":0,"17955":0,"17956":0,"17957":-1,"17958":0,"17959":85,"17960":0,"17961":0,"17962":304,"17963":0,"17964":-1,"17965":86,"17966":1452,"17967":-1,"17968":0,"17969":0,"17970":1516,"17971":0,"17972":0,"17973":0,"17974":-1,"17975":0,"17976":38,"17977":0,"17978":332,"17979":-1,"17980":429,"17981":0,"17982":-1,"17983":0,"17984":0,"17985":1492,"17986":0,"17987":0,"17988":0,"17989":-1,"17990":203,"17991":0,"17992":144,"17993":385,"17994":0,"17995":207,"17996":-1,"17997":0,"17998":0,"17999":0,"18000":1576,"18001":0,"18002":0,"18003":0,"18004":0,"18005":-1,"18006":0,"18007":0,"18008":0,"18009":1509,"18010":0,"18011":0,"18012":0,"18013":1389,"18014":0,"18015":1405,"18016":0,"18017":0,"18018":-1,"18019":-1,"18020":0,"18021":0,"18022":0,"18023":89,"18024":288,"18025":-1,"18026":-1,"18027":1406,"18028":366,"18029":-1,"18030":-1,"18031":109,"18032":0,"18033":0,"18034":-1,"18035":0,"18036":1366,"18037":0,"18038":267,"18039":-1,"18040":85,"18041":0,"18042":-1,"18043":-1,"18044":-1,"18045":1358,"18046":-1,"18047":0,"18048":-1,"18049":-1,"18050":0,"18051":68,"18052":-1,"18053":0,"18054":-1,"18055":281,"18056":1446,"18057":-1,"18058":1530,"18059":217,"18060":-1,"18061":0,"18062":-1,"18063":-1,"18064":-1,"18065":1439,"18066":1549,"18067":406,"18068":0,"18069":0,"18070":1336,"18071":0,"18072":303,"18073":13,"18074":0,"18075":-1,"18076":1394,"18077":-1,"18078":1336,"18079":115,"18080":0,"18081":119,"18082":0,"18083":0,"18084":46,"18085":-1,"18086":0,"18087":1430,"18088":220,"18089":0,"18090":0,"18091":-1,"18092":0,"18093":1548,"18094":-1,"18095":0,"18096":1383,"18097":0,"18098":1549,"18099":0,"18100":1475,"18101":0,"18102":-1,"18103":0,"18104":0,"18105":1449,"18106":225,"18107":0,"18108":-1,"18109":1513,"18110":0,"18111":1429,"18112":-1,"18113":1520,"18114":0,"18115":1363,"18116":0,"18117":-1,"18118":-1,"18119":-1,"18120":-1,"18121":0,"18122":0,"18123":-1,"18124":-1,"18125":-1,"18126":252,"18127":0,"18128":0,"18129":35,"18130":1470,"18131":0,"18132":0,"18133":359,"18134":-1,"18135":0,"18136":215,"18137":370,"18138":0,"18139":0,"18140":-1,"18141":-1,"18142":32,"18143":-1,"18144":380,"18145":47,"18146":278,"18147":-1,"18148":0,"18149":0,"18150":0,"18151":-1,"18152":0,"18153":54,"18154":0,"18155":0,"18156":-1,"18157":-1,"18158":-1,"18159":-1,"18160":-1,"18161":50,"18162":0,"18163":1375,"18164":0,"18165":0,"18166":274,"18167":-1,"18168":-1,"18169":-1,"18170":261,"18171":-1,"18172":328,"18173":0,"18174":0,"18175":0,"18176":1449,"18177":0,"18178":-1,"18179":-1,"18180":1410,"18181":0,"18182":-1,"18183":2,"18184":-1,"18185":-1,"18186":0,"18187":0,"18188":0,"18189":0,"18190":0,"18191":0,"18192":-1,"18193":-1,"18194":0,"18195":1456,"18196":6,"18197":0,"18198":0,"18199":0,"18200":0,"18201":0,"18202":-1,"18203":-1,"18204":-1,"18205":0,"18206":0,"18207":0,"18208":249,"18209":-1,"18210":1487,"18211":0,"18212":-1,"18213":109,"18214":0,"18215":0,"18216":0,"18217":274,"18218":0,"18219":202,"18220":0,"18221":-1,"18222":0,"18223":1498,"18224":257,"18225":1329,"18226":-1,"18227":1566,"18228":-1,"18229":0,"18230":-1,"18231":-1,"18232":0,"18233":-1,"18234":0,"18235":1524,"18236":0,"18237":0,"18238":0,"18239":342,"18240":0,"18241":0,"18242":88,"18243":0,"18244":93,"18245":195,"18246":332,"18247":0,"18248":1434,"18249":0,"18250":0,"18251":-1,"18252":-1,"18253":0,"18254":0,"18255":-1,"18256":-1,"18257":-1,"18258":-1,"18259":-1,"18260":1584,"18261":-1,"18262":1445,"18263":0,"18264":0,"18265":81,"18266":-1,"18267":0,"18268":0,"18269":-1,"18270":0,"18271":0,"18272":0,"18273":0,"18274":0,"18275":0,"18276":0,"18277":-1,"18278":-1,"18279":-1,"18280":0,"18281":0,"18282":0,"18283":-1,"18284":-1,"18285":241,"18286":0,"18287":0,"18288":-1,"18289":0,"18290":-1,"18291":1345,"18292":1496,"18293":1458,"18294":0,"18295":0,"18296":274,"18297":-1,"18298":1344,"18299":-1,"18300":1312,"18301":-1,"18302":23,"18303":0,"18304":0,"18305":0,"18306":0,"18307":0,"18308":-1,"18309":-1,"18310":-1,"18311":-1,"18312":0,"18313":-1,"18314":0,"18315":0,"18316":0,"18317":147,"18318":0,"18319":147,"18320":-1,"18321":0,"18322":1377,"18323":1572,"18324":0,"18325":-1,"18326":253,"18327":0,"18328":-1,"18329":0,"18330":-1,"18331":-1,"18332":1442,"18333":1367,"18334":370,"18335":1476,"18336":-1,"18337":-1,"18338":1525,"18339":-1,"18340":-1,"18341":-1,"18342":0,"18343":61,"18344":0,"18345":0,"18346":-1,"18347":-1,"18348":0,"18349":-1,"18350":-1,"18351":0,"18352":0,"18353":0,"18354":0,"18355":0,"18356":1466,"18357":0,"18358":1492,"18359":0,"18360":15,"18361":0,"18362":246,"18363":58,"18364":-1,"18365":0,"18366":1386,"18367":0,"18368":0,"18369":-1,"18370":0,"18371":0,"18372":1431,"18373":0,"18374":0,"18375":0,"18376":0,"18377":0,"18378":0,"18379":0,"18380":1362,"18381":-1,"18382":-1,"18383":-1,"18384":0,"18385":-1,"18386":256,"18387":-1,"18388":329,"18389":69,"18390":123,"18391":-1,"18392":0,"18393":-1,"18394":1418,"18395":0,"18396":-1,"18397":1474,"18398":133,"18399":181,"18400":1386,"18401":0,"18402":0,"18403":-1,"18404":-1,"18405":234,"18406":0,"18407":0,"18408":-1,"18409":0,"18410":-1,"18411":-1,"18412":0,"18413":0,"18414":1546,"18415":0,"18416":1472,"18417":0,"18418":1551,"18419":-1,"18420":1473,"18421":0,"18422":1487,"18423":0,"18424":-1,"18425":0,"18426":0,"18427":-1,"18428":1546,"18429":-1,"18430":0,"18431":0,"18432":0,"18433":63,"18434":0,"18435":127,"18436":1362,"18437":0,"18438":0,"18439":-1,"18440":0,"18441":0,"18442":0,"18443":0,"18444":0,"18445":-1,"18446":0,"18447":0,"18448":0,"18449":1334,"18450":0,"18451":0,"18452":175,"18453":1307,"18454":0,"18455":-1,"18456":1547,"18457":159,"18458":0,"18459":-1,"18460":0,"18461":0,"18462":288,"18463":-1,"18464":0,"18465":-1,"18466":-1,"18467":364,"18468":124,"18469":-1,"18470":-1,"18471":148,"18472":0,"18473":0,"18474":0,"18475":111,"18476":0,"18477":-1,"18478":0,"18479":-1,"18480":0,"18481":0,"18482":-1,"18483":0,"18484":0,"18485":-1,"18486":-1,"18487":0,"18488":-1,"18489":0,"18490":0,"18491":1528,"18492":0,"18493":0,"18494":1388,"18495":-1,"18496":-1,"18497":-1,"18498":-1,"18499":0,"18500":25,"18501":0,"18502":0,"18503":0,"18504":203,"18505":0,"18506":0,"18507":0,"18508":-1,"18509":-1,"18510":1571,"18511":-1,"18512":0,"18513":1503,"18514":0,"18515":1392,"18516":-1,"18517":-1,"18518":302,"18519":72,"18520":-1,"18521":-1,"18522":384,"18523":0,"18524":1417,"18525":1534,"18526":0,"18527":-1,"18528":-1,"18529":-1,"18530":-1,"18531":0,"18532":1403,"18533":-1,"18534":291,"18535":-1,"18536":-1,"18537":-1,"18538":-1,"18539":0,"18540":170,"18541":0,"18542":-1,"18543":0,"18544":0,"18545":-1,"18546":97,"18547":0,"18548":1465,"18549":-1,"18550":65,"18551":0,"18552":222,"18553":1351,"18554":0,"18555":350,"18556":0,"18557":-1,"18558":-1,"18559":0,"18560":187,"18561":-1,"18562":0,"18563":0,"18564":-1,"18565":-1,"18566":0,"18567":-1,"18568":-1,"18569":1546,"18570":1368,"18571":0,"18572":43,"18573":-1,"18574":0,"18575":0,"18576":0,"18577":0,"18578":0,"18579":0,"18580":-1,"18581":0,"18582":-1,"18583":-1,"18584":0,"18585":173,"18586":0,"18587":1427,"18588":-1,"18589":15,"18590":-1,"18591":0,"18592":23,"18593":-1,"18594":-1,"18595":-1,"18596":-1,"18597":0,"18598":0,"18599":0,"18600":-1,"18601":-1,"18602":-1,"18603":1539,"18604":-1,"18605":285,"18606":0,"18607":-1,"18608":3,"18609":1415,"18610":-1,"18611":1433,"18612":87,"18613":-1,"18614":-1,"18615":197,"18616":295,"18617":0,"18618":0,"18619":0,"18620":0,"18621":-1,"18622":-1,"18623":-1,"18624":0,"18625":-1,"18626":-1,"18627":-1,"18628":132,"18629":0,"18630":-1,"18631":-1,"18632":1536,"18633":-1,"18634":0,"18635":-1,"18636":-1,"18637":0,"18638":24,"18639":1313,"18640":-1,"18641":-1,"18642":-1,"18643":1534,"18644":0,"18645":-1,"18646":-1,"18647":0,"18648":-1,"18649":-1,"18650":-1,"18651":0,"18652":0,"18653":0,"18654":0,"18655":1443,"18656":0,"18657":0,"18658":0,"18659":1549,"18660":28,"18661":0,"18662":60,"18663":-1,"18664":1358,"18665":0,"18666":207,"18667":0,"18668":219,"18669":288,"18670":0,"18671":1367,"18672":0,"18673":-1,"18674":1363,"18675":-1,"18676":-1,"18677":0,"18678":-1,"18679":0,"18680":0,"18681":0,"18682":-1,"18683":0,"18684":256,"18685":1537,"18686":168,"18687":1340,"18688":1585,"18689":1326,"18690":0,"18691":0,"18692":0,"18693":154,"18694":47,"18695":0,"18696":-1,"18697":0,"18698":0,"18699":-1,"18700":0,"18701":72,"18702":0,"18703":1309,"18704":261,"18705":0,"18706":368,"18707":-1,"18708":-1,"18709":1301,"18710":0,"18711":-1,"18712":-1,"18713":0,"18714":-1,"18715":0,"18716":-1,"18717":0,"18718":0,"18719":-1,"18720":-1,"18721":0,"18722":1572,"18723":0,"18724":0,"18725":-1,"18726":-1,"18727":0,"18728":0,"18729":346,"18730":0,"18731":1571,"18732":0,"18733":1399,"18734":1583,"18735":-1,"18736":-1,"18737":-1,"18738":0,"18739":0,"18740":1427,"18741":-1,"18742":-1,"18743":1307,"18744":-1,"18745":-1,"18746":0,"18747":163,"18748":-1,"18749":1448,"18750":1514,"18751":154,"18752":-1,"18753":-1,"18754":0,"18755":1328,"18756":-1,"18757":-1,"18758":0,"18759":-1,"18760":159,"18761":-1,"18762":-1,"18763":0,"18764":1383,"18765":-1,"18766":-1,"18767":0,"18768":0,"18769":-1,"18770":0,"18771":0,"18772":1581,"18773":0,"18774":47,"18775":0,"18776":0,"18777":0,"18778":0,"18779":0,"18780":-1,"18781":0,"18782":222,"18783":93,"18784":-1,"18785":0,"18786":0,"18787":0,"18788":-1,"18789":-1,"18790":-1,"18791":0,"18792":0,"18793":-1,"18794":-1,"18795":-1,"18796":-1,"18797":0,"18798":-1,"18799":246,"18800":-1,"18801":0,"18802":-1,"18803":-1,"18804":1300,"18805":0,"18806":1479,"18807":0,"18808":-1,"18809":0,"18810":0,"18811":323,"18812":0,"18813":-1,"18814":1321,"18815":0,"18816":1403,"18817":0,"18818":0,"18819":0,"18820":0,"18821":0,"18822":0,"18823":0,"18824":1544,"18825":-1,"18826":0,"18827":-1,"18828":-1,"18829":0,"18830":0,"18831":0,"18832":1492,"18833":-1,"18834":0,"18835":-1,"18836":0,"18837":-1,"18838":0,"18839":0,"18840":153,"18841":0,"18842":0,"18843":0,"18844":330,"18845":1387,"18846":0,"18847":0,"18848":1499,"18849":0,"18850":0,"18851":1388,"18852":0,"18853":0,"18854":0,"18855":-1,"18856":0,"18857":1486,"18858":0,"18859":0,"18860":0,"18861":0,"18862":0,"18863":0,"18864":1508,"18865":0,"18866":-1,"18867":0,"18868":0,"18869":-1,"18870":0,"18871":0,"18872":0,"18873":285,"18874":-1,"18875":-1,"18876":-1,"18877":1343,"18878":362,"18879":-1,"18880":-1,"18881":-1,"18882":0,"18883":-1,"18884":-1,"18885":1367,"18886":199,"18887":-1,"18888":44,"18889":-1,"18890":-1,"18891":0,"18892":1349,"18893":-1,"18894":1528,"18895":-1,"18896":-1,"18897":-1,"18898":-1,"18899":0,"18900":0,"18901":-1,"18902":0,"18903":102,"18904":0,"18905":0,"18906":343,"18907":0,"18908":-1,"18909":-1,"18910":0,"18911":1582,"18912":0,"18913":0,"18914":0,"18915":0,"18916":-1,"18917":268,"18918":-1,"18919":0,"18920":35,"18921":253,"18922":0,"18923":0,"18924":-1,"18925":0,"18926":1445,"18927":-1,"18928":153,"18929":0,"18930":190,"18931":0,"18932":348,"18933":1353,"18934":137,"18935":-1,"18936":46,"18937":0,"18938":0,"18939":0,"18940":-1,"18941":0,"18942":291,"18943":-1,"18944":1575,"18945":-1,"18946":0,"18947":140,"18948":1558,"18949":0,"18950":0,"18951":0,"18952":-1,"18953":0,"18954":1504,"18955":0,"18956":0,"18957":0,"18958":0,"18959":1469,"18960":-1,"18961":1350,"18962":0,"18963":-1,"18964":-1,"18965":-1,"18966":0,"18967":-1,"18968":-1,"18969":0,"18970":0,"18971":0,"18972":0,"18973":0,"18974":1322,"18975":0,"18976":0,"18977":0,"18978":-1,"18979":1477,"18980":1403,"18981":-1,"18982":265,"18983":1370,"18984":-1,"18985":0,"18986":359,"18987":0,"18988":-1,"18989":-1,"18990":1398,"18991":0,"18992":0,"18993":0,"18994":0,"18995":-1,"18996":0,"18997":0,"18998":0,"18999":0,"19000":124,"19001":-1,"19002":0,"19003":-1,"19004":215,"19005":0,"19006":92,"19007":1353,"19008":0,"19009":0,"19010":-1,"19011":0,"19012":-1,"19013":0,"19014":1335,"19015":0,"19016":-1,"19017":0,"19018":1303,"19019":1467,"19020":0,"19021":0,"19022":0,"19023":0,"19024":0,"19025":-1,"19026":0,"19027":0,"19028":0,"19029":79,"19030":-1,"19031":51,"19032":0,"19033":0,"19034":0,"19035":0,"19036":0,"19037":0,"19038":-1,"19039":-1,"19040":0,"19041":-1,"19042":220,"19043":-1,"19044":0,"19045":0,"19046":332,"19047":0,"19048":0,"19049":0,"19050":1571,"19051":1307,"19052":-1,"19053":0,"19054":0,"19055":-1,"19056":0,"19057":0,"19058":0,"19059":-1,"19060":-1,"19061":0,"19062":-1,"19063":-1,"19064":44,"19065":0,"19066":53,"19067":-1,"19068":0,"19069":0,"19070":0,"19071":0,"19072":0,"19073":0,"19074":1416,"19075":0,"19076":-1,"19077":172,"19078":1332,"19079":-1,"19080":0,"19081":0,"19082":0,"19083":-1,"19084":0,"19085":0,"19086":370,"19087":0,"19088":-1,"19089":60,"19090":-1,"19091":254,"19092":1458,"19093":-1,"19094":-1,"19095":232,"19096":1458,"19097":0,"19098":265,"19099":1396,"19100":1465,"19101":0,"19102":-1,"19103":-1,"19104":-1,"19105":0,"19106":92,"19107":0,"19108":0,"19109":0,"19110":-1,"19111":1419,"19112":0,"19113":1568,"19114":0,"19115":303,"19116":0,"19117":-1,"19118":0,"19119":0,"19120":0,"19121":88,"19122":-1,"19123":1408,"19124":0,"19125":283,"19126":-1,"19127":0,"19128":0,"19129":0,"19130":1392,"19131":0,"19132":0,"19133":-1,"19134":0,"19135":71,"19136":1462,"19137":0,"19138":164,"19139":-1,"19140":0,"19141":0,"19142":266,"19143":-1,"19144":0,"19145":-1,"19146":0,"19147":0,"19148":-1,"19149":0,"19150":1575,"19151":0,"19152":-1,"19153":-1,"19154":-1,"19155":-1,"19156":343,"19157":-1,"19158":-1,"19159":-1,"19160":29,"19161":0,"19162":0,"19163":-1,"19164":88,"19165":-1,"19166":0,"19167":-1,"19168":-1,"19169":1516,"19170":1460,"19171":-1,"19172":0,"19173":140,"19174":0,"19175":-1,"19176":0,"19177":0,"19178":-1,"19179":-1,"19180":0,"19181":198,"19182":-1,"19183":1521,"19184":0,"19185":1414,"19186":1569,"19187":0,"19188":1562,"19189":0,"19190":366,"19191":0,"19192":254,"19193":-1,"19194":0,"19195":0,"19196":0,"19197":1306,"19198":101,"19199":-1,"19200":-1,"19201":1510,"19202":-1,"19203":1507,"19204":-1,"19205":-1,"19206":0,"19207":0,"19208":0,"19209":-1,"19210":-1,"19211":98,"19212":144,"19213":1311,"19214":-1,"19215":0,"19216":273,"19217":0,"19218":66,"19219":5,"19220":-1,"19221":1475,"19222":38,"19223":0,"19224":0,"19225":-1,"19226":360,"19227":36,"19228":88,"19229":1344,"19230":1498,"19231":-1,"19232":1359,"19233":1455,"19234":-1,"19235":-1,"19236":0,"19237":334,"19238":1548,"19239":0,"19240":0,"19241":0,"19242":0,"19243":0,"19244":-1,"19245":0,"19246":-1,"19247":0,"19248":0,"19249":-1,"19250":1536,"19251":0,"19252":-1,"19253":0,"19254":0,"19255":0,"19256":0,"19257":0,"19258":92,"19259":0,"19260":0,"19261":0,"19262":1544,"19263":0,"19264":-1,"19265":248,"19266":0,"19267":1463,"19268":0,"19269":0,"19270":-1,"19271":0,"19272":0,"19273":-1,"19274":244,"19275":-1,"19276":0,"19277":-1,"19278":0,"19279":0,"19280":0,"19281":1365,"19282":0,"19283":-1,"19284":-1,"19285":-1,"19286":0,"19287":1302,"19288":0,"19289":0,"19290":0,"19291":-1,"19292":-1,"19293":0,"19294":0,"19295":0,"19296":0,"19297":1313,"19298":0,"19299":0,"19300":0,"19301":0,"19302":0,"19303":0,"19304":0,"19305":0,"19306":1565,"19307":1310,"19308":0,"19309":-1,"19310":-1,"19311":0,"19312":0,"19313":0,"19314":1403,"19315":0,"19316":0,"19317":0,"19318":41,"19319":-1,"19320":-1,"19321":0,"19322":-1,"19323":0,"19324":0,"19325":0,"19326":0,"19327":0,"19328":266,"19329":0,"19330":-1,"19331":0,"19332":0,"19333":0,"19334":-1,"19335":1480,"19336":-1,"19337":301,"19338":119,"19339":-1,"19340":0,"19341":0,"19342":1463,"19343":0,"19344":-1,"19345":0,"19346":1571,"19347":-1,"19348":-1,"19349":0,"19350":0,"19351":-1,"19352":-1,"19353":1528,"19354":0,"19355":35,"19356":0,"19357":-1,"19358":1360,"19359":1422,"19360":-1,"19361":0,"19362":-1,"19363":0,"19364":-1,"19365":-1,"19366":0,"19367":1581,"19368":0,"19369":-1,"19370":1455,"19371":-1,"19372":288,"19373":-1,"19374":48,"19375":246,"19376":-1,"19377":0,"19378":0,"19379":0,"19380":0,"19381":-1,"19382":0,"19383":-1,"19384":0,"19385":299,"19386":-1,"19387":1399,"19388":270,"19389":0,"19390":1462,"19391":0,"19392":-1,"19393":1428,"19394":0,"19395":0,"19396":0,"19397":0,"19398":0,"19399":0,"19400":0,"19401":-1,"19402":-1,"19403":0,"19404":1491,"19405":0,"19406":1536,"19407":0,"19408":254,"19409":0,"19410":1559,"19411":0,"19412":0,"19413":1337,"19414":-1,"19415":-1,"19416":0,"19417":0,"19418":-1,"19419":0,"19420":1327,"19421":-1,"19422":-1,"19423":1364,"19424":1372,"19425":0,"19426":0,"19427":0,"19428":0,"19429":0,"19430":-1,"19431":-1,"19432":-1,"19433":0,"19434":-1,"19435":-1,"19436":0,"19437":1385,"19438":1462,"19439":0,"19440":0,"19441":1417,"19442":-1,"19443":1552,"19444":-1,"19445":97,"19446":-1,"19447":147,"19448":248,"19449":-1,"19450":-1,"19451":-1,"19452":13,"19453":-1,"19454":0,"19455":-1,"19456":-1,"19457":-1,"19458":267,"19459":0,"19460":1482,"19461":0,"19462":0,"19463":332,"19464":0,"19465":-1,"19466":0,"19467":2,"19468":-1,"19469":0,"19470":0,"19471":1512,"19472":-1,"19473":1513,"19474":0,"19475":0,"19476":0,"19477":0,"19478":0,"19479":1508,"19480":127,"19481":-1,"19482":0,"19483":0,"19484":1465,"19485":0,"19486":195,"19487":0,"19488":0,"19489":-1,"19490":0,"19491":-1,"19492":0,"19493":0,"19494":0,"19495":-1,"19496":1367,"19497":0,"19498":0,"19499":0,"19500":-1,"19501":187,"19502":1319,"19503":-1,"19504":283,"19505":267,"19506":-1,"19507":0,"19508":-1,"19509":1471,"19510":0,"19511":0,"19512":1466,"19513":-1,"19514":-1,"19515":1335,"19516":-1,"19517":-1,"19518":-1,"19519":298,"19520":1384,"19521":1344,"19522":-1,"19523":-1,"19524":0,"19525":270,"19526":12,"19527":-1,"19528":-1,"19529":1425,"19530":0,"19531":0,"19532":125,"19533":0,"19534":0,"19535":0,"19536":0,"19537":127,"19538":0,"19539":-1,"19540":-1,"19541":-1,"19542":0,"19543":96,"19544":20,"19545":35,"19546":-1,"19547":0,"19548":261,"19549":-1,"19550":0,"19551":0,"19552":0,"19553":0,"19554":-1,"19555":0,"19556":0,"19557":-1,"19558":-1,"19559":0,"19560":93,"19561":0,"19562":0,"19563":0,"19564":-1,"19565":0,"19566":0,"19567":-1,"19568":-1,"19569":0,"19570":0,"19571":359,"19572":0,"19573":282,"19574":0,"19575":0,"19576":0,"19577":0,"19578":0,"19579":-1,"19580":-1,"19581":230,"19582":-1,"19583":0,"19584":-1,"19585":0,"19586":-1,"19587":48,"19588":0,"19589":-1,"19590":26,"19591":0,"19592":1320,"19593":1525,"19594":0,"19595":317,"19596":0,"19597":0,"19598":-1,"19599":0,"19600":-1,"19601":235,"19602":-1,"19603":0,"19604":-1,"19605":-1,"19606":-1,"19607":-1,"19608":35,"19609":0,"19610":0,"19611":1398,"19612":0,"19613":372,"19614":0,"19615":0,"19616":-1,"19617":0,"19618":0,"19619":0,"19620":0,"19621":-1,"19622":1414,"19623":-1,"19624":0,"19625":0,"19626":-1,"19627":-1,"19628":-1,"19629":-1,"19630":-1,"19631":-1,"19632":-1,"19633":337,"19634":312,"19635":0,"19636":-1,"19637":1331,"19638":-1,"19639":0,"19640":-1,"19641":0,"19642":-1,"19643":0,"19644":0,"19645":-1,"19646":-1,"19647":-1,"19648":1428,"19649":-1,"19650":0,"19651":0,"19652":0,"19653":256,"19654":255,"19655":0,"19656":0,"19657":-1,"19658":226,"19659":1457,"19660":-1,"19661":-1,"19662":0,"19663":148,"19664":286,"19665":0,"19666":-1,"19667":0,"19668":0,"19669":0,"19670":0,"19671":1448,"19672":0,"19673":0,"19674":1447,"19675":0,"19676":-1,"19677":1467,"19678":42,"19679":-1,"19680":152,"19681":-1,"19682":0,"19683":-1,"19684":0,"19685":-1,"19686":1496,"19687":1553,"19688":0,"19689":1349,"19690":-1,"19691":0,"19692":-1,"19693":0,"19694":63,"19695":253,"19696":1365,"19697":0,"19698":1318,"19699":0,"19700":-1,"19701":0,"19702":0,"19703":0,"19704":0,"19705":481,"19706":0,"19707":0,"19708":1565,"19709":1428,"19710":0,"19711":-1,"19712":0,"19713":-1,"19714":1487,"19715":0,"19716":0,"19717":0,"19718":-1,"19719":101,"19720":25,"19721":1520,"19722":-1,"19723":0,"19724":-1,"19725":-1,"19726":0,"19727":0,"19728":0,"19729":217,"19730":-1,"19731":0,"19732":0,"19733":0,"19734":1393,"19735":165,"19736":-1,"19737":145,"19738":0,"19739":0,"19740":-1,"19741":0,"19742":0,"19743":0,"19744":0,"19745":1431,"19746":0,"19747":342,"19748":0,"19749":0,"19750":0,"19751":0,"19752":1378,"19753":-1,"19754":122,"19755":0,"19756":-1,"19757":-1,"19758":-1,"19759":0,"19760":1476,"19761":-1,"19762":312,"19763":1488,"19764":0,"19765":-1,"19766":0,"19767":-1,"19768":0,"19769":1365,"19770":0,"19771":0,"19772":0,"19773":0,"19774":-1,"19775":-1,"19776":0,"19777":0,"19778":-1,"19779":1522,"19780":-1,"19781":0,"19782":1304,"19783":-1,"19784":0,"19785":-1,"19786":0,"19787":1406,"19788":0,"19789":1319,"19790":0,"19791":0,"19792":0,"19793":1353,"19794":26,"19795":-1,"19796":1419,"19797":21,"19798":1354,"19799":0,"19800":0,"19801":0,"19802":0,"19803":-1,"19804":-1,"19805":0,"19806":0,"19807":-1,"19808":1563,"19809":0,"19810":0,"19811":50,"19812":-1,"19813":1360,"19814":302,"19815":0,"19816":0,"19817":-1,"19818":334,"19819":0,"19820":175,"19821":-1,"19822":0,"19823":0,"19824":1503,"19825":-1,"19826":1340,"19827":1451,"19828":-1,"19829":0,"19830":0,"19831":0,"19832":0,"19833":-1,"19834":1449,"19835":0,"19836":0,"19837":0,"19838":1499,"19839":0,"19840":-1,"19841":0,"19842":1553,"19843":-1,"19844":0,"19845":0,"19846":-1,"19847":1359,"19848":0,"19849":0,"19850":0,"19851":1370,"19852":-1,"19853":1341,"19854":-1,"19855":0,"19856":-1,"19857":1465,"19858":0,"19859":0,"19860":0,"19861":0,"19862":1340,"19863":0,"19864":0,"19865":1488,"19866":0,"19867":1376,"19868":-1,"19869":328,"19870":-1,"19871":0,"19872":254,"19873":0,"19874":0,"19875":0,"19876":0,"19877":-1,"19878":137,"19879":0,"19880":23,"19881":-1,"19882":-1,"19883":1535,"19884":0,"19885":-1,"19886":0,"19887":1556,"19888":0,"19889":-1,"19890":0,"19891":26,"19892":47,"19893":0,"19894":175,"19895":-1,"19896":-1,"19897":0,"19898":0,"19899":-1,"19900":-1,"19901":0,"19902":-1,"19903":1455,"19904":0,"19905":0,"19906":0,"19907":1312,"19908":-1,"19909":0,"19910":1338,"19911":0,"19912":-1,"19913":0,"19914":0,"19915":0,"19916":-1,"19917":295,"19918":0,"19919":338,"19920":1472,"19921":0,"19922":0,"19923":0,"19924":0,"19925":343,"19926":65,"19927":-1,"19928":-1,"19929":-1,"19930":-1,"19931":-1,"19932":0,"19933":-1,"19934":-1,"19935":-1,"19936":0,"19937":0,"19938":-1,"19939":0,"19940":-1,"19941":0,"19942":1388,"19943":0,"19944":0,"19945":-1,"19946":-1,"19947":0,"19948":0,"19949":0,"19950":-1,"19951":0,"19952":-1,"19953":0,"19954":-1,"19955":0,"19956":-1,"19957":-1,"19958":0,"19959":1488,"19960":-1,"19961":0,"19962":0,"19963":1421,"19964":0,"19965":1578,"19966":246,"19967":1356,"19968":-1,"19969":0,"19970":0,"19971":-1,"19972":-1,"19973":-1,"19974":0,"19975":1531,"19976":0,"19977":0,"19978":0,"19979":-1,"19980":0,"19981":0,"19982":-1,"19983":0,"19984":1397,"19985":0,"19986":0,"19987":-1,"19988":20,"19989":0,"19990":265,"19991":-1,"19992":0,"19993":-1,"19994":105,"19995":-1,"19996":0,"19997":-1,"19998":-1,"19999":248,"20000":-1,"20001":254,"20002":230,"20003":1475,"20004":0,"20005":0,"20006":0,"20007":0,"20008":0,"20009":0,"20010":-1,"20011":45,"20012":0,"20013":-1,"20014":0,"20015":-1,"20016":324,"20017":-1,"20018":0,"20019":0,"20020":1435,"20021":0,"20022":1407,"20023":0,"20024":-1,"20025":-1,"20026":0,"20027":1433,"20028":-1,"20029":-1,"20030":383,"20031":217,"20032":-1,"20033":0,"20034":28,"20035":1562,"20036":0,"20037":161,"20038":-1,"20039":10,"20040":1402,"20041":1504,"20042":-1,"20043":-1,"20044":-1,"20045":0,"20046":0,"20047":137,"20048":0,"20049":362,"20050":0,"20051":19,"20052":0,"20053":0,"20054":-1,"20055":0,"20056":-1,"20057":0,"20058":-1,"20059":0,"20060":352,"20061":1387,"20062":0,"20063":385,"20064":0,"20065":-1,"20066":0,"20067":-1,"20068":-1,"20069":0,"20070":257,"20071":0,"20072":-1,"20073":135,"20074":-1,"20075":0,"20076":-1,"20077":-1,"20078":214,"20079":-1,"20080":-1,"20081":0,"20082":-1,"20083":0,"20084":0,"20085":1376,"20086":0,"20087":0,"20088":-1,"20089":0,"20090":1366,"20091":1540,"20092":-1,"20093":0,"20094":0,"20095":54,"20096":1391,"20097":1500,"20098":-1,"20099":0,"20100":0,"20101":206,"20102":0,"20103":1427,"20104":-1,"20105":352,"20106":0,"20107":42,"20108":-1,"20109":0,"20110":-1,"20111":0,"20112":-1,"20113":-1,"20114":-1,"20115":0,"20116":0,"20117":-1,"20118":0,"20119":0,"20120":1482,"20121":-1,"20122":1302,"20123":-1,"20124":1391,"20125":-1,"20126":0,"20127":176,"20128":-1,"20129":0,"20130":-1,"20131":-1,"20132":-1,"20133":1406,"20134":-1,"20135":1303,"20136":0,"20137":0,"20138":-1,"20139":27,"20140":-1,"20141":-1,"20142":-1,"20143":-1,"20144":-1,"20145":0,"20146":1526,"20147":0,"20148":0,"20149":0,"20150":0,"20151":88,"20152":-1,"20153":1467,"20154":1300,"20155":-1,"20156":0,"20157":0,"20158":1572,"20159":-1,"20160":0,"20161":0,"20162":2,"20163":0,"20164":0,"20165":-1,"20166":0,"20167":0,"20168":0,"20169":-1,"20170":1506,"20171":0,"20172":0,"20173":67,"20174":1584,"20175":1348,"20176":0,"20177":-1,"20178":0,"20179":0,"20180":0,"20181":0,"20182":0,"20183":-1,"20184":-1,"20185":3,"20186":0,"20187":140,"20188":0,"20189":0,"20190":154,"20191":365,"20192":1351,"20193":0,"20194":0,"20195":368,"20196":-1,"20197":0,"20198":312,"20199":-1,"20200":0,"20201":0,"20202":0,"20203":0,"20204":0,"20205":-1,"20206":-1,"20207":153,"20208":0,"20209":0,"20210":7,"20211":0,"20212":1558,"20213":94,"20214":0,"20215":0,"20216":-1,"20217":10,"20218":-1,"20219":-1,"20220":24,"20221":1348,"20222":-1,"20223":150,"20224":0,"20225":282,"20226":0,"20227":-1,"20228":1545,"20229":0,"20230":0,"20231":360,"20232":0,"20233":1481,"20234":473,"20235":240,"20236":-1,"20237":0,"20238":-1,"20239":0,"20240":-1,"20241":0,"20242":1486,"20243":0,"20244":1348,"20245":-1,"20246":0,"20247":0,"20248":0,"20249":1364,"20250":0,"20251":-1,"20252":0,"20253":314,"20254":0,"20255":304,"20256":0,"20257":1321,"20258":49,"20259":-1,"20260":0,"20261":0,"20262":1485,"20263":0,"20264":-1,"20265":0,"20266":23,"20267":324,"20268":270,"20269":0,"20270":98,"20271":0,"20272":0,"20273":-1,"20274":0,"20275":0,"20276":-1,"20277":-1,"20278":1303,"20279":0,"20280":-1,"20281":0,"20282":0,"20283":0,"20284":-1,"20285":-1,"20286":0,"20287":0,"20288":-1,"20289":1564,"20290":0,"20291":196,"20292":-1,"20293":125,"20294":-1,"20295":-1,"20296":0,"20297":0,"20298":0,"20299":-1,"20300":326,"20301":0,"20302":-1,"20303":0,"20304":264,"20305":-1,"20306":-1,"20307":-1,"20308":-1,"20309":198,"20310":-1,"20311":237,"20312":0,"20313":-1,"20314":0,"20315":-1,"20316":0,"20317":330,"20318":-1,"20319":0,"20320":0,"20321":0,"20322":-1,"20323":0,"20324":0,"20325":1415,"20326":0,"20327":0,"20328":0,"20329":102,"20330":1441,"20331":-1,"20332":0,"20333":0,"20334":44,"20335":-1,"20336":0,"20337":0,"20338":0,"20339":365,"20340":-1,"20341":0,"20342":-1,"20343":0,"20344":0,"20345":0,"20346":230,"20347":-1,"20348":289,"20349":0,"20350":-1,"20351":0,"20352":-1,"20353":0,"20354":-1,"20355":19,"20356":-1,"20357":0,"20358":0,"20359":0,"20360":121,"20361":-1,"20362":-1,"20363":0,"20364":0,"20365":0,"20366":-1,"20367":0,"20368":-1,"20369":1540,"20370":0,"20371":0,"20372":0,"20373":-1,"20374":0,"20375":0,"20376":0,"20377":1432,"20378":211,"20379":-1,"20380":-1,"20381":0,"20382":-1,"20383":-1,"20384":0,"20385":326,"20386":230,"20387":168,"20388":1451,"20389":-1,"20390":0,"20391":-1,"20392":-1,"20393":0,"20394":1307,"20395":-1,"20396":0,"20397":175,"20398":0,"20399":-1,"20400":-1,"20401":78,"20402":0,"20403":87,"20404":0,"20405":1314,"20406":-1,"20407":71,"20408":-1,"20409":96,"20410":0,"20411":0,"20412":-1,"20413":0,"20414":-1,"20415":0,"20416":-1,"20417":1364,"20418":0,"20419":220,"20420":1406,"20421":-1,"20422":0,"20423":375,"20424":0,"20425":0,"20426":153,"20427":0,"20428":-1,"20429":117,"20430":0,"20431":0,"20432":0,"20433":0,"20434":0,"20435":1402,"20436":-1,"20437":1433,"20438":1411,"20439":0,"20440":1413,"20441":0,"20442":-1,"20443":0,"20444":0,"20445":0,"20446":265,"20447":0,"20448":0,"20449":-1,"20450":-1,"20451":0,"20452":-1,"20453":0,"20454":0,"20455":-1,"20456":31,"20457":-1,"20458":-1,"20459":0,"20460":0,"20461":-1,"20462":179,"20463":0,"20464":1464,"20465":0,"20466":-1,"20467":0,"20468":0,"20469":0,"20470":354,"20471":0,"20472":235,"20473":-1,"20474":0,"20475":-1,"20476":0,"20477":0,"20478":174,"20479":0,"20480":-1,"20481":1522,"20482":241,"20483":192,"20484":-1,"20485":-1,"20486":1413,"20487":238,"20488":-1,"20489":1473,"20490":0,"20491":0,"20492":1510,"20493":0,"20494":274,"20495":-1,"20496":1384,"20497":1452,"20498":-1,"20499":0,"20500":0,"20501":-1,"20502":-1,"20503":1389,"20504":1484,"20505":-1,"20506":-1,"20507":1554,"20508":0,"20509":-1,"20510":-1,"20511":0,"20512":39,"20513":0,"20514":0,"20515":0,"20516":-1,"20517":0,"20518":1377,"20519":0,"20520":-1,"20521":0,"20522":43,"20523":0,"20524":-1,"20525":1379,"20526":1376,"20527":0,"20528":-1,"20529":0,"20530":1448,"20531":0,"20532":-1,"20533":170,"20534":-1,"20535":-1,"20536":-1,"20537":0,"20538":0,"20539":0,"20540":1488,"20541":-1,"20542":0,"20543":-1,"20544":0,"20545":0,"20546":0,"20547":-1,"20548":246,"20549":-1,"20550":-1,"20551":0,"20552":-1,"20553":0,"20554":-1,"20555":0,"20556":-1,"20557":1354,"20558":-1,"20559":0,"20560":10,"20561":187,"20562":0,"20563":-1,"20564":-1,"20565":1441,"20566":-1,"20567":0,"20568":1412,"20569":-1,"20570":0,"20571":-1,"20572":-1,"20573":342,"20574":261,"20575":0,"20576":-1,"20577":-1,"20578":0,"20579":0,"20580":1325,"20581":135,"20582":0,"20583":0,"20584":0,"20585":0,"20586":0,"20587":1549,"20588":0,"20589":-1,"20590":0,"20591":0,"20592":0,"20593":0,"20594":271,"20595":-1,"20596":-1,"20597":-1,"20598":163,"20599":0,"20600":0,"20601":-1,"20602":0,"20603":0,"20604":0,"20605":-1,"20606":1511,"20607":1481,"20608":0,"20609":0,"20610":0,"20611":1561,"20612":-1,"20613":0,"20614":-1,"20615":1317,"20616":-1,"20617":-1,"20618":-1,"20619":-1,"20620":0,"20621":0,"20622":0,"20623":-1,"20624":1507,"20625":-1,"20626":0,"20627":-1,"20628":1533,"20629":0,"20630":-1,"20631":-1,"20632":-1,"20633":-1,"20634":0,"20635":1381,"20636":-1,"20637":-1,"20638":0,"20639":-1,"20640":41,"20641":4,"20642":0,"20643":-1,"20644":11,"20645":-1,"20646":-1,"20647":-1,"20648":0,"20649":0,"20650":0,"20651":-1,"20652":-1,"20653":-1,"20654":122,"20655":-1,"20656":-1,"20657":0,"20658":188,"20659":0,"20660":0,"20661":1328,"20662":0,"20663":0,"20664":-1,"20665":-1,"20666":282,"20667":0,"20668":1399,"20669":0,"20670":0,"20671":0,"20672":48,"20673":-1,"20674":1560,"20675":0,"20676":-1,"20677":0,"20678":-1,"20679":1310,"20680":0,"20681":111,"20682":1565,"20683":1543,"20684":0,"20685":-1,"20686":-1,"20687":0,"20688":0,"20689":-1,"20690":1373,"20691":1440,"20692":0,"20693":0,"20694":0,"20695":0,"20696":1531,"20697":0,"20698":0,"20699":0,"20700":0,"20701":145,"20702":0,"20703":197,"20704":197,"20705":0,"20706":0,"20707":107,"20708":0,"20709":0,"20710":0,"20711":1422,"20712":-1,"20713":0,"20714":0,"20715":1526,"20716":-1,"20717":1480,"20718":0,"20719":85,"20720":-1,"20721":1357,"20722":1471,"20723":-1,"20724":-1,"20725":-1,"20726":-1,"20727":1513,"20728":0,"20729":19,"20730":0,"20731":0,"20732":-1,"20733":-1,"20734":1483,"20735":-1,"20736":-1,"20737":0,"20738":0,"20739":0,"20740":211,"20741":86,"20742":0,"20743":0,"20744":-1,"20745":0,"20746":-1,"20747":0,"20748":0,"20749":1425,"20750":-1,"20751":11,"20752":0,"20753":0,"20754":160,"20755":-1,"20756":52,"20757":0,"20758":0,"20759":1404,"20760":-1,"20761":-1,"20762":0,"20763":1334,"20764":235,"20765":-1,"20766":0,"20767":0,"20768":-1,"20769":-1,"20770":112,"20771":0,"20772":181,"20773":-1,"20774":81,"20775":0,"20776":-1,"20777":0,"20778":0,"20779":481,"20780":0,"20781":-1,"20782":-1,"20783":271,"20784":-1,"20785":-1,"20786":0,"20787":0,"20788":42,"20789":1431,"20790":0,"20791":0,"20792":-1,"20793":372,"20794":0,"20795":0,"20796":0,"20797":0,"20798":0,"20799":1502,"20800":0,"20801":0,"20802":-1,"20803":0,"20804":1431,"20805":107,"20806":-1,"20807":0,"20808":-1,"20809":97,"20810":0,"20811":0,"20812":-1,"20813":-1,"20814":179,"20815":0,"20816":1507,"20817":-1,"20818":0,"20819":0,"20820":-1,"20821":0,"20822":0,"20823":-1,"20824":-1,"20825":1452,"20826":-1,"20827":1563,"20828":-1,"20829":1442,"20830":0,"20831":1551,"20832":-1,"20833":1473,"20834":182,"20835":0,"20836":-1,"20837":145,"20838":0,"20839":0,"20840":0,"20841":-1,"20842":0,"20843":0,"20844":-1,"20845":0,"20846":0,"20847":0,"20848":0,"20849":0,"20850":214,"20851":0,"20852":1493,"20853":-1,"20854":-1,"20855":0,"20856":-1,"20857":-1,"20858":-1,"20859":0,"20860":0,"20861":0,"20862":0,"20863":0,"20864":-1,"20865":94,"20866":362,"20867":-1,"20868":-1,"20869":0,"20870":0,"20871":0,"20872":0,"20873":1582,"20874":-1,"20875":1408,"20876":0,"20877":-1,"20878":0,"20879":0,"20880":221,"20881":1418,"20882":0,"20883":1533,"20884":-1,"20885":0,"20886":282,"20887":-1,"20888":-1,"20889":-1,"20890":1431,"20891":-1,"20892":0,"20893":0,"20894":0,"20895":-1,"20896":0,"20897":-1,"20898":0,"20899":248,"20900":0,"20901":0,"20902":337,"20903":0,"20904":0,"20905":1301,"20906":0,"20907":-1,"20908":-1,"20909":0,"20910":287,"20911":1331,"20912":-1,"20913":0,"20914":0,"20915":67,"20916":0,"20917":0,"20918":-1,"20919":0,"20920":0,"20921":0,"20922":0,"20923":0,"20924":0,"20925":362,"20926":0,"20927":0,"20928":0,"20929":-1,"20930":0,"20931":0,"20932":-1,"20933":0,"20934":1409,"20935":0,"20936":0,"20937":0,"20938":0,"20939":-1,"20940":-1,"20941":-1,"20942":-1,"20943":323,"20944":-1,"20945":-1,"20946":-1,"20947":1353,"20948":0,"20949":0,"20950":-1,"20951":1303,"20952":-1,"20953":1325,"20954":0,"20955":-1,"20956":190,"20957":-1,"20958":-1,"20959":0,"20960":-1,"20961":-1,"20962":244,"20963":-1,"20964":-1,"20965":0,"20966":-1,"20967":-1,"20968":1344,"20969":-1,"20970":0,"20971":228,"20972":-1,"20973":0,"20974":-1,"20975":0,"20976":-1,"20977":0,"20978":1365,"20979":0,"20980":-1,"20981":1486,"20982":165,"20983":0,"20984":0,"20985":-1,"20986":1347,"20987":-1,"20988":1496,"20989":0,"20990":0,"20991":-1,"20992":1391,"20993":0,"20994":-1,"20995":1396,"20996":-1,"20997":-1,"20998":0,"20999":-1,"21000":-1,"21001":-1,"21002":0,"21003":-1,"21004":0,"21005":0,"21006":-1,"21007":0,"21008":211,"21009":375,"21010":-1,"21011":-1,"21012":0,"21013":0,"21014":0,"21015":-1,"21016":44,"21017":-1,"21018":0,"21019":0,"21020":1522,"21021":-1,"21022":0,"21023":197,"21024":0,"21025":-1,"21026":0,"21027":0,"21028":0,"21029":0,"21030":0,"21031":0,"21032":1549,"21033":0,"21034":0,"21035":190,"21036":0,"21037":0,"21038":1569,"21039":1502,"21040":-1,"21041":-1,"21042":-1,"21043":-1,"21044":0,"21045":-1,"21046":0,"21047":0,"21048":0,"21049":0,"21050":0,"21051":-1,"21052":-1,"21053":0,"21054":0,"21055":0,"21056":1440,"21057":1467,"21058":0,"21059":0,"21060":0,"21061":0,"21062":-1,"21063":0,"21064":0,"21065":1565,"21066":-1,"21067":-1,"21068":-1,"21069":0,"21070":0,"21071":-1,"21072":364,"21073":0,"21074":0,"21075":-1,"21076":198,"21077":-1,"21078":0,"21079":-1,"21080":0,"21081":-1,"21082":56,"21083":-1,"21084":111,"21085":71,"21086":0,"21087":-1,"21088":-1,"21089":1366,"21090":244,"21091":0,"21092":0,"21093":0,"21094":103,"21095":0,"21096":-1,"21097":-1,"21098":0,"21099":0,"21100":0,"21101":1560,"21102":-1,"21103":0,"21104":-1,"21105":-1,"21106":1575,"21107":0,"21108":0,"21109":0,"21110":-1,"21111":0,"21112":0,"21113":-1,"21114":-1,"21115":1495,"21116":-1,"21117":-1,"21118":-1,"21119":-1,"21120":-1,"21121":62,"21122":-1,"21123":0,"21124":-1,"21125":362,"21126":-1,"21127":0,"21128":0,"21129":348,"21130":1444,"21131":0,"21132":0,"21133":-1,"21134":-1,"21135":-1,"21136":6,"21137":429,"21138":-1,"21139":0,"21140":-1,"21141":-1,"21142":-1,"21143":190,"21144":-1,"21145":0,"21146":0,"21147":-1,"21148":-1,"21149":0,"21150":66,"21151":1549,"21152":0,"21153":348,"21154":-1,"21155":0,"21156":0,"21157":0,"21158":115,"21159":-1,"21160":0,"21161":0,"21162":1301,"21163":0,"21164":0,"21165":0,"21166":0,"21167":0,"21168":0,"21169":0,"21170":-1,"21171":-1,"21172":0,"21173":0,"21174":-1,"21175":0,"21176":-1,"21177":1540,"21178":54,"21179":0,"21180":0,"21181":301,"21182":-1,"21183":0,"21184":1442,"21185":-1,"21186":0,"21187":-1,"21188":-1,"21189":0,"21190":6,"21191":-1,"21192":-1,"21193":-1,"21194":-1,"21195":-1,"21196":0,"21197":0,"21198":-1,"21199":-1,"21200":406,"21201":-1,"21202":0,"21203":0,"21204":429,"21205":0,"21206":-1,"21207":60,"21208":1585,"21209":-1,"21210":117,"21211":310,"21212":0,"21213":-1,"21214":0,"21215":0,"21216":-1,"21217":1495,"21218":78,"21219":0,"21220":-1,"21221":352,"21222":0,"21223":0,"21224":0,"21225":-1,"21226":0,"21227":381,"21228":10,"21229":-1,"21230":-1,"21231":72,"21232":-1,"21233":-1,"21234":-1,"21235":-1,"21236":-1,"21237":-1,"21238":0,"21239":0,"21240":-1,"21241":0,"21242":0,"21243":-1,"21244":-1,"21245":-1,"21246":0,"21247":0,"21248":0,"21249":0,"21250":1302,"21251":0,"21252":383,"21253":1333,"21254":-1,"21255":0,"21256":-1,"21257":0,"21258":0,"21259":103,"21260":0,"21261":-1,"21262":0,"21263":-1,"21264":0,"21265":1470,"21266":0,"21267":-1,"21268":-1,"21269":-1,"21270":0,"21271":0,"21272":0,"21273":7,"21274":0,"21275":-1,"21276":0,"21277":-1,"21278":-1,"21279":0,"21280":-1,"21281":0,"21282":1434,"21283":-1,"21284":0,"21285":0,"21286":-1,"21287":192,"21288":0,"21289":-1,"21290":-1,"21291":-1,"21292":-1,"21293":0,"21294":0,"21295":0,"21296":1487,"21297":-1,"21298":1394,"21299":0,"21300":375,"21301":-1,"21302":1558,"21303":1561,"21304":0,"21305":-1,"21306":-1,"21307":1342,"21308":378,"21309":-1,"21310":0,"21311":1545,"21312":0,"21313":-1,"21314":-1,"21315":1532,"21316":325,"21317":0,"21318":0,"21319":-1,"21320":1407,"21321":1527,"21322":0,"21323":-1,"21324":96,"21325":-1,"21326":0,"21327":199,"21328":176,"21329":1552,"21330":-1,"21331":0,"21332":0,"21333":0,"21334":0,"21335":0,"21336":175,"21337":0,"21338":0,"21339":1319,"21340":0,"21341":-1,"21342":-1,"21343":-1,"21344":0,"21345":0,"21346":-1,"21347":1556,"21348":-1,"21349":-1,"21350":0,"21351":0,"21352":67,"21353":0,"21354":0,"21355":0,"21356":0,"21357":-1,"21358":168,"21359":40,"21360":-1,"21361":222,"21362":-1,"21363":0,"21364":-1,"21365":0,"21366":163,"21367":-1,"21368":0,"21369":31,"21370":307,"21371":-1,"21372":33,"21373":169,"21374":-1,"21375":-1,"21376":0,"21377":1547,"21378":1399,"21379":0,"21380":0,"21381":248,"21382":0,"21383":0,"21384":-1,"21385":-1,"21386":1483,"21387":0,"21388":0,"21389":-1,"21390":1442,"21391":0,"21392":0,"21393":1428,"21394":140,"21395":-1,"21396":200,"21397":-1,"21398":0,"21399":-1,"21400":-1,"21401":0,"21402":0,"21403":293,"21404":-1,"21405":190,"21406":0,"21407":0,"21408":0,"21409":1411,"21410":235,"21411":123,"21412":0,"21413":1438,"21414":-1,"21415":1533,"21416":-1,"21417":0,"21418":1445,"21419":0,"21420":140,"21421":-1,"21422":-1,"21423":0,"21424":-1,"21425":154,"21426":0,"21427":-1,"21428":1403,"21429":-1,"21430":0,"21431":-1,"21432":0,"21433":-1,"21434":76,"21435":1399,"21436":0,"21437":0,"21438":0,"21439":0,"21440":154,"21441":1354,"21442":14,"21443":-1,"21444":0,"21445":-1,"21446":0,"21447":0,"21448":1527,"21449":-1,"21450":1448,"21451":0,"21452":0,"21453":0,"21454":1451,"21455":-1,"21456":-1,"21457":116,"21458":0,"21459":116,"21460":-1,"21461":0,"21462":0,"21463":-1,"21464":-1,"21465":-1,"21466":0,"21467":0,"21468":1348,"21469":0,"21470":1523,"21471":259,"21472":-1,"21473":0,"21474":246,"21475":-1,"21476":-1,"21477":0,"21478":331,"21479":-1,"21480":1461,"21481":473,"21482":1547,"21483":-1,"21484":226,"21485":-1,"21486":0,"21487":-1,"21488":0,"21489":-1,"21490":0,"21491":-1,"21492":0,"21493":-1,"21494":1445,"21495":-1,"21496":-1,"21497":153,"21498":0,"21499":0,"21500":0,"21501":-1,"21502":-1,"21503":0,"21504":1480,"21505":1516,"21506":-1,"21507":-1,"21508":1354,"21509":-1,"21510":-1,"21511":158,"21512":0,"21513":11,"21514":-1,"21515":-1,"21516":360,"21517":217,"21518":0,"21519":0,"21520":1509,"21521":-1,"21522":-1,"21523":-1,"21524":0,"21525":0,"21526":-1,"21527":0,"21528":0,"21529":1321,"21530":0,"21531":0,"21532":0,"21533":-1,"21534":-1,"21535":-1,"21536":0,"21537":-1,"21538":0,"21539":219,"21540":-1,"21541":201,"21542":-1,"21543":-1,"21544":0,"21545":1489,"21546":0,"21547":1304,"21548":0,"21549":-1,"21550":0,"21551":298,"21552":-1,"21553":112,"21554":0,"21555":0,"21556":0,"21557":0,"21558":0,"21559":50,"21560":-1,"21561":0,"21562":-1,"21563":0,"21564":38,"21565":-1,"21566":0,"21567":-1,"21568":1396,"21569":288,"21570":0,"21571":61,"21572":124,"21573":0,"21574":-1,"21575":213,"21576":-1,"21577":85,"21578":0,"21579":-1,"21580":0,"21581":117,"21582":-1,"21583":0,"21584":0,"21585":1559,"21586":1300,"21587":1306,"21588":1349,"21589":-1,"21590":0,"21591":-1,"21592":0,"21593":1527,"21594":1430,"21595":29,"21596":-1,"21597":1315,"21598":78,"21599":-1,"21600":1474,"21601":372,"21602":0,"21603":-1,"21604":199,"21605":0,"21606":0,"21607":0,"21608":0,"21609":75,"21610":0,"21611":-1,"21612":-1,"21613":0,"21614":0,"21615":1484,"21616":-1,"21617":0,"21618":0,"21619":1489,"21620":373,"21621":81,"21622":106,"21623":1384,"21624":1552,"21625":-1,"21626":173,"21627":-1,"21628":0,"21629":-1,"21630":0,"21631":0,"21632":0,"21633":1354,"21634":-1,"21635":0,"21636":-1,"21637":0,"21638":-1,"21639":0,"21640":-1,"21641":1559,"21642":0,"21643":-1,"21644":0,"21645":0,"21646":-1,"21647":-1,"21648":0,"21649":-1,"21650":0,"21651":0,"21652":0,"21653":-1,"21654":0,"21655":0,"21656":0,"21657":123,"21658":0,"21659":0,"21660":-1,"21661":0,"21662":1566,"21663":282,"21664":0,"21665":0,"21666":0,"21667":1435,"21668":0,"21669":0,"21670":195,"21671":1491,"21672":0,"21673":-1,"21674":0,"21675":-1,"21676":0,"21677":1330,"21678":0,"21679":0,"21680":0,"21681":0,"21682":-1,"21683":-1,"21684":225,"21685":0,"21686":1495,"21687":0,"21688":1399,"21689":0,"21690":0,"21691":330,"21692":12,"21693":-1,"21694":-1,"21695":217,"21696":0,"21697":-1,"21698":0,"21699":0,"21700":-1,"21701":-1,"21702":-1,"21703":342,"21704":-1,"21705":-1,"21706":-1,"21707":0,"21708":-1,"21709":0,"21710":-1,"21711":-1,"21712":0,"21713":60,"21714":-1,"21715":221,"21716":0,"21717":-1,"21718":-1,"21719":-1,"21720":1565,"21721":0,"21722":0,"21723":0,"21724":0,"21725":0,"21726":-1,"21727":1383,"21728":182,"21729":0,"21730":0,"21731":-1,"21732":157,"21733":0,"21734":0,"21735":1490,"21736":0,"21737":0,"21738":-1,"21739":305,"21740":1412,"21741":0,"21742":-1,"21743":198,"21744":0,"21745":97,"21746":0,"21747":0,"21748":-1,"21749":1414,"21750":0,"21751":0,"21752":1330,"21753":3,"21754":0,"21755":0,"21756":0,"21757":-1,"21758":-1,"21759":215,"21760":0,"21761":0,"21762":0,"21763":0,"21764":0,"21765":-1,"21766":0,"21767":0,"21768":0,"21769":0,"21770":-1,"21771":0,"21772":0,"21773":0,"21774":257,"21775":0,"21776":0,"21777":1322,"21778":1451,"21779":312,"21780":50,"21781":163,"21782":-1,"21783":195,"21784":-1,"21785":0,"21786":-1,"21787":1344,"21788":116,"21789":0,"21790":0,"21791":0,"21792":0,"21793":0,"21794":-1,"21795":0,"21796":0,"21797":-1,"21798":0,"21799":0,"21800":0,"21801":1304,"21802":0,"21803":0,"21804":-1,"21805":287,"21806":0,"21807":-1,"21808":89,"21809":-1,"21810":1306,"21811":-1,"21812":0,"21813":0,"21814":0,"21815":0,"21816":0,"21817":-1,"21818":0,"21819":-1,"21820":0,"21821":1445,"21822":0,"21823":0,"21824":-1,"21825":0,"21826":0,"21827":0,"21828":0,"21829":-1,"21830":76,"21831":0,"21832":0,"21833":0,"21834":0,"21835":-1,"21836":1568,"21837":0,"21838":221,"21839":0,"21840":-1,"21841":-1,"21842":0,"21843":-1,"21844":-1,"21845":0,"21846":1572,"21847":-1,"21848":0,"21849":1523,"21850":-1,"21851":0,"21852":0,"21853":1512,"21854":0,"21855":0,"21856":1555,"21857":1396,"21858":13,"21859":267,"21860":-1,"21861":-1,"21862":0,"21863":-1,"21864":0,"21865":202,"21866":-1,"21867":206,"21868":-1,"21869":-1,"21870":-1,"21871":0,"21872":0,"21873":-1,"21874":-1,"21875":0,"21876":0,"21877":0,"21878":0,"21879":0,"21880":0,"21881":0,"21882":0,"21883":-1,"21884":1532,"21885":-1,"21886":165,"21887":0,"21888":0,"21889":0,"21890":-1,"21891":0,"21892":199,"21893":0,"21894":-1,"21895":-1,"21896":-1,"21897":0,"21898":0,"21899":0,"21900":-1,"21901":-1,"21902":380,"21903":-1,"21904":1532,"21905":0,"21906":0,"21907":0,"21908":0,"21909":0,"21910":-1,"21911":1373,"21912":0,"21913":307,"21914":-1,"21915":0,"21916":0,"21917":1466,"21918":0,"21919":0,"21920":0,"21921":0,"21922":0,"21923":-1,"21924":1350,"21925":0,"21926":0,"21927":-1,"21928":0,"21929":0,"21930":-1,"21931":0,"21932":0,"21933":0,"21934":-1,"21935":0,"21936":0,"21937":0,"21938":0,"21939":1458,"21940":-1,"21941":0,"21942":-1,"21943":0,"21944":0,"21945":0,"21946":-1,"21947":0,"21948":283,"21949":1313,"21950":-1,"21951":-1,"21952":0,"21953":0,"21954":0,"21955":0,"21956":-1,"21957":-1,"21958":170,"21959":1434,"21960":-1,"21961":0,"21962":0,"21963":0,"21964":270,"21965":-1,"21966":0,"21967":119,"21968":1442,"21969":0,"21970":0,"21971":0,"21972":-1,"21973":0,"21974":0,"21975":0,"21976":120,"21977":0,"21978":-1,"21979":-1,"21980":1485,"21981":244,"21982":0,"21983":0,"21984":0,"21985":5,"21986":-1,"21987":-1,"21988":-1,"21989":-1,"21990":-1,"21991":-1,"21992":1391,"21993":0,"21994":0,"21995":-1,"21996":0,"21997":0,"21998":0,"21999":0,"22000":18,"22001":0,"22002":1433,"22003":370,"22004":0,"22005":51,"22006":0,"22007":406,"22008":77,"22009":-1,"22010":-1,"22011":-1,"22012":-1,"22013":0,"22014":0,"22015":0,"22016":346,"22017":0,"22018":-1,"22019":-1,"22020":0,"22021":-1,"22022":0,"22023":0,"22024":378,"22025":11,"22026":-1,"22027":-1,"22028":0,"22029":0,"22030":1412,"22031":0,"22032":1325,"22033":-1,"22034":-1,"22035":1544,"22036":1431,"22037":1540,"22038":-1,"22039":0,"22040":0,"22041":0,"22042":182,"22043":-1,"22044":0,"22045":-1,"22046":1442,"22047":-1,"22048":0,"22049":-1,"22050":0,"22051":-1,"22052":-1,"22053":-1,"22054":1339,"22055":0,"22056":109,"22057":1429,"22058":1547,"22059":0,"22060":-1,"22061":0,"22062":0,"22063":-1,"22064":0,"22065":0,"22066":-1,"22067":0,"22068":267,"22069":0,"22070":0,"22071":0,"22072":0,"22073":180,"22074":0,"22075":-1,"22076":-1,"22077":1559,"22078":0,"22079":0,"22080":-1,"22081":214,"22082":383,"22083":0,"22084":0,"22085":1514,"22086":0,"22087":0,"22088":0,"22089":0,"22090":-1,"22091":0,"22092":-1,"22093":0,"22094":2,"22095":0,"22096":1343,"22097":163,"22098":1413,"22099":-1,"22100":-1,"22101":-1,"22102":0,"22103":0,"22104":1489,"22105":0,"22106":-1,"22107":0,"22108":0,"22109":0,"22110":-1,"22111":0,"22112":121,"22113":0,"22114":-1,"22115":0,"22116":-1,"22117":0,"22118":-1,"22119":0,"22120":-1,"22121":222,"22122":-1,"22123":41,"22124":0,"22125":-1,"22126":0,"22127":-1,"22128":308,"22129":0,"22130":-1,"22131":0,"22132":0,"22133":10,"22134":1533,"22135":0,"22136":50,"22137":0,"22138":0,"22139":1431,"22140":0,"22141":0,"22142":1428,"22143":1570,"22144":0,"22145":228,"22146":0,"22147":0,"22148":1412,"22149":1298,"22150":0,"22151":-1,"22152":-1,"22153":0,"22154":0,"22155":0,"22156":0,"22157":5,"22158":0,"22159":0,"22160":1512,"22161":-1,"22162":0,"22163":-1,"22164":-1,"22165":342,"22166":162,"22167":-1,"22168":1546,"22169":-1,"22170":1548,"22171":41,"22172":0,"22173":147,"22174":1520,"22175":-1,"22176":0,"22177":0,"22178":-1,"22179":302,"22180":0,"22181":1529,"22182":0,"22183":-1,"22184":-1,"22185":-1,"22186":0,"22187":0,"22188":1377,"22189":0,"22190":-1,"22191":214,"22192":3,"22193":0,"22194":0,"22195":0,"22196":-1,"22197":1439,"22198":0,"22199":257,"22200":-1,"22201":-1,"22202":0,"22203":-1,"22204":194,"22205":0,"22206":-1,"22207":180,"22208":0,"22209":0,"22210":0,"22211":43,"22212":0,"22213":0,"22214":0,"22215":0,"22216":232,"22217":0,"22218":-1,"22219":360,"22220":0,"22221":-1,"22222":0,"22223":302,"22224":0,"22225":-1,"22226":-1,"22227":79,"22228":-1,"22229":0,"22230":-1,"22231":0,"22232":0,"22233":228,"22234":-1,"22235":0,"22236":0,"22237":1500,"22238":262,"22239":0,"22240":-1,"22241":-1,"22242":238,"22243":-1,"22244":1477,"22245":-1,"22246":0,"22247":-1,"22248":-1,"22249":1407,"22250":0,"22251":-1,"22252":-1,"22253":0,"22254":0,"22255":0,"22256":-1,"22257":-1,"22258":-1,"22259":0,"22260":0,"22261":352,"22262":181,"22263":-1,"22264":278,"22265":0,"22266":0,"22267":1457,"22268":1443,"22269":0,"22270":1522,"22271":0,"22272":168,"22273":-1,"22274":0,"22275":1471,"22276":0,"22277":222,"22278":-1,"22279":1360,"22280":0,"22281":0,"22282":1302,"22283":-1,"22284":214,"22285":0,"22286":0,"22287":0,"22288":0,"22289":0,"22290":-1,"22291":0,"22292":0,"22293":1376,"22294":-1,"22295":-1,"22296":281,"22297":-1,"22298":0,"22299":0,"22300":1521,"22301":0,"22302":197,"22303":1510,"22304":0,"22305":-1,"22306":0,"22307":-1,"22308":179,"22309":0,"22310":0,"22311":1487,"22312":0,"22313":0,"22314":-1,"22315":1356,"22316":0,"22317":370,"22318":329,"22319":0,"22320":200,"22321":0,"22322":1430,"22323":-1,"22324":0,"22325":-1,"22326":1512,"22327":0,"22328":-1,"22329":0,"22330":0,"22331":-1,"22332":365,"22333":0,"22334":-1,"22335":0,"22336":0,"22337":1403,"22338":0,"22339":352,"22340":0,"22341":0,"22342":0,"22343":-1,"22344":0,"22345":0,"22346":0,"22347":-1,"22348":1366,"22349":0,"22350":1390,"22351":0,"22352":-1,"22353":1563,"22354":33,"22355":-1,"22356":0,"22357":0,"22358":0,"22359":1415,"22360":0,"22361":-1,"22362":0,"22363":0,"22364":-1,"22365":1357,"22366":202,"22367":0,"22368":1301,"22369":0,"22370":0,"22371":1325,"22372":175,"22373":0,"22374":0,"22375":-1,"22376":-1,"22377":-1,"22378":-1,"22379":0,"22380":273,"22381":-1,"22382":0,"22383":-1,"22384":1434,"22385":0,"22386":-1,"22387":0,"22388":0,"22389":1380,"22390":-1,"22391":1389,"22392":-1,"22393":0,"22394":1460,"22395":-1,"22396":0,"22397":-1,"22398":-1,"22399":180,"22400":0,"22401":0,"22402":-1,"22403":199,"22404":0,"22405":-1,"22406":-1,"22407":0,"22408":119,"22409":0,"22410":-1,"22411":-1,"22412":-1,"22413":0,"22414":0,"22415":0,"22416":-1,"22417":0,"22418":0,"22419":1550,"22420":1498,"22421":12,"22422":0,"22423":0,"22424":359,"22425":219,"22426":-1,"22427":0,"22428":0,"22429":206,"22430":0,"22431":0,"22432":0,"22433":0,"22434":0,"22435":0,"22436":-1,"22437":1515,"22438":0,"22439":106,"22440":1370,"22441":0,"22442":-1,"22443":0,"22444":0,"22445":-1,"22446":-1,"22447":268,"22448":-1,"22449":0,"22450":-1,"22451":0,"22452":0,"22453":0,"22454":306,"22455":0,"22456":0,"22457":0,"22458":221,"22459":0,"22460":0,"22461":-1,"22462":0,"22463":0,"22464":-1,"22465":0,"22466":0,"22467":0,"22468":1572,"22469":-1,"22470":152,"22471":-1,"22472":16,"22473":-1,"22474":-1,"22475":0,"22476":0,"22477":0,"22478":-1,"22479":1467,"22480":0,"22481":326,"22482":0,"22483":-1,"22484":-1,"22485":0,"22486":0,"22487":-1,"22488":0,"22489":-1,"22490":0,"22491":310,"22492":-1,"22493":0,"22494":-1,"22495":0,"22496":0,"22497":-1,"22498":0,"22499":0,"22500":-1,"22501":0,"22502":0,"22503":-1,"22504":0,"22505":0,"22506":1491,"22507":0,"22508":-1,"22509":305,"22510":255,"22511":0,"22512":0,"22513":-1,"22514":1304,"22515":0,"22516":0,"22517":1300,"22518":-1,"22519":1520,"22520":0,"22521":-1,"22522":-1,"22523":0,"22524":0,"22525":0,"22526":0,"22527":-1,"22528":0,"22529":-1,"22530":-1,"22531":0,"22532":0,"22533":-1,"22534":1527,"22535":-1,"22536":-1,"22537":0,"22538":-1,"22539":0,"22540":0,"22541":-1,"22542":0,"22543":0,"22544":46,"22545":-1,"22546":0,"22547":161,"22548":-1,"22549":0,"22550":262,"22551":0,"22552":0,"22553":0,"22554":0,"22555":0,"22556":0,"22557":-1,"22558":-1,"22559":0,"22560":0,"22561":-1,"22562":0,"22563":0,"22564":0,"22565":0,"22566":0,"22567":0,"22568":0,"22569":-1,"22570":1509,"22571":11,"22572":-1,"22573":-1,"22574":0,"22575":0,"22576":0,"22577":0,"22578":-1,"22579":0,"22580":-1,"22581":-1,"22582":0,"22583":0,"22584":0,"22585":0,"22586":-1,"22587":0,"22588":0,"22589":0,"22590":57,"22591":147,"22592":1368,"22593":0,"22594":0,"22595":-1,"22596":-1,"22597":-1,"22598":1340,"22599":1365,"22600":-1,"22601":0,"22602":1560,"22603":0,"22604":0,"22605":-1,"22606":173,"22607":0,"22608":1463,"22609":0,"22610":352,"22611":1546,"22612":0,"22613":1342,"22614":107,"22615":0,"22616":1549,"22617":1307,"22618":0,"22619":32,"22620":-1,"22621":-1,"22622":0,"22623":1378,"22624":299,"22625":0,"22626":173,"22627":0,"22628":0,"22629":-1,"22630":-1,"22631":-1,"22632":0,"22633":-1,"22634":1418,"22635":0,"22636":0,"22637":0,"22638":0,"22639":-1,"22640":-1,"22641":19,"22642":0,"22643":0,"22644":0,"22645":0,"22646":-1,"22647":0,"22648":1408,"22649":0,"22650":0,"22651":0,"22652":281,"22653":144,"22654":0,"22655":-1,"22656":1484,"22657":0,"22658":0,"22659":0,"22660":1519,"22661":1383,"22662":0,"22663":0,"22664":0,"22665":-1,"22666":-1,"22667":-1,"22668":249,"22669":0,"22670":0,"22671":155,"22672":64,"22673":1396,"22674":-1,"22675":1560,"22676":0,"22677":0,"22678":-1,"22679":0,"22680":1515,"22681":0,"22682":0,"22683":-1,"22684":0,"22685":-1,"22686":-1,"22687":-1,"22688":-1,"22689":257,"22690":1433,"22691":1553,"22692":0,"22693":-1,"22694":0,"22695":0,"22696":-1,"22697":-1,"22698":1574,"22699":0,"22700":-1,"22701":0,"22702":76,"22703":-1,"22704":-1,"22705":0,"22706":-1,"22707":-1,"22708":0,"22709":0,"22710":-1,"22711":0,"22712":-1,"22713":0,"22714":0,"22715":0,"22716":1308,"22717":0,"22718":303,"22719":-1,"22720":-1,"22721":289,"22722":-1,"22723":-1,"22724":0,"22725":-1,"22726":-1,"22727":164,"22728":0,"22729":0,"22730":22,"22731":1574,"22732":0,"22733":0,"22734":-1,"22735":0,"22736":121,"22737":-1,"22738":-1,"22739":0,"22740":-1,"22741":-1,"22742":0,"22743":0,"22744":0,"22745":12,"22746":0,"22747":-1,"22748":0,"22749":-1,"22750":0,"22751":0,"22752":1353,"22753":1348,"22754":-1,"22755":0,"22756":0,"22757":-1,"22758":0,"22759":0,"22760":1583,"22761":0,"22762":0,"22763":-1,"22764":246,"22765":262,"22766":67,"22767":49,"22768":0,"22769":-1,"22770":-1,"22771":-1,"22772":-1,"22773":0,"22774":0,"22775":0,"22776":0,"22777":0,"22778":-1,"22779":109,"22780":0,"22781":0,"22782":1428,"22783":-1,"22784":0,"22785":-1,"22786":0,"22787":0,"22788":0,"22789":-1,"22790":13,"22791":-1,"22792":0,"22793":-1,"22794":0,"22795":0,"22796":285,"22797":366,"22798":0,"22799":0,"22800":0,"22801":0,"22802":0,"22803":4,"22804":-1,"22805":0,"22806":0,"22807":0,"22808":-1,"22809":-1,"22810":30,"22811":0,"22812":1529,"22813":123,"22814":1305,"22815":241,"22816":1347,"22817":0,"22818":0,"22819":256,"22820":0,"22821":1542,"22822":-1,"22823":0,"22824":1369,"22825":1541,"22826":170,"22827":-1,"22828":-1,"22829":0,"22830":0,"22831":0,"22832":-1,"22833":0,"22834":-1,"22835":-1,"22836":0,"22837":-1,"22838":0,"22839":-1,"22840":286,"22841":-1,"22842":-1,"22843":1335,"22844":0,"22845":-1,"22846":236,"22847":0,"22848":0,"22849":-1,"22850":-1,"22851":1319,"22852":313,"22853":0,"22854":-1,"22855":134,"22856":-1,"22857":-1,"22858":-1,"22859":0,"22860":-1,"22861":0,"22862":0,"22863":0,"22864":-1,"22865":383,"22866":0,"22867":0,"22868":0,"22869":-1,"22870":-1,"22871":165,"22872":288,"22873":0,"22874":-1,"22875":220,"22876":0,"22877":0,"22878":-1,"22879":-1,"22880":0,"22881":0,"22882":0,"22883":0,"22884":0,"22885":-1,"22886":0,"22887":-1,"22888":158,"22889":0,"22890":0,"22891":-1,"22892":1407,"22893":0,"22894":0,"22895":-1,"22896":-1,"22897":0,"22898":0,"22899":-1,"22900":0,"22901":0,"22902":-1,"22903":0,"22904":0,"22905":1479,"22906":0,"22907":-1,"22908":137,"22909":0,"22910":-1,"22911":-1,"22912":7,"22913":0,"22914":0,"22915":-1,"22916":-1,"22917":0,"22918":-1,"22919":0,"22920":-1,"22921":-1,"22922":50,"22923":288,"22924":0,"22925":50,"22926":-1,"22927":1565,"22928":0,"22929":-1,"22930":310,"22931":1523,"22932":0,"22933":-1,"22934":-1,"22935":93,"22936":17,"22937":159,"22938":-1,"22939":0,"22940":-1,"22941":-1,"22942":-1,"22943":0,"22944":0,"22945":-1,"22946":0,"22947":-1,"22948":-1,"22949":1385,"22950":0,"22951":0,"22952":0,"22953":0,"22954":0,"22955":1396,"22956":-1,"22957":66,"22958":1546,"22959":0,"22960":0,"22961":-1,"22962":-1,"22963":0,"22964":1501,"22965":-1,"22966":0,"22967":0,"22968":-1,"22969":0,"22970":13,"22971":0,"22972":-1,"22973":-1,"22974":-1,"22975":1449,"22976":1537,"22977":0,"22978":-1,"22979":182,"22980":0,"22981":324,"22982":0,"22983":0,"22984":0,"22985":0,"22986":-1,"22987":0,"22988":0,"22989":0,"22990":-1,"22991":0,"22992":0,"22993":1372,"22994":0,"22995":0,"22996":-1,"22997":0,"22998":0,"22999":-1,"23000":-1,"23001":0,"23002":0,"23003":-1,"23004":0,"23005":0,"23006":0,"23007":-1,"23008":0,"23009":79,"23010":-1,"23011":1342,"23012":-1,"23013":0,"23014":0,"23015":-1,"23016":-1,"23017":97,"23018":-1,"23019":0,"23020":0,"23021":-1,"23022":120,"23023":0,"23024":-1,"23025":0,"23026":1567,"23027":-1,"23028":0,"23029":0,"23030":-1,"23031":134,"23032":-1,"23033":-1,"23034":-1,"23035":0,"23036":1472,"23037":-1,"23038":438,"23039":-1,"23040":0,"23041":-1,"23042":76,"23043":0,"23044":-1,"23045":230,"23046":0,"23047":0,"23048":0,"23049":0,"23050":-1,"23051":0,"23052":10,"23053":-1,"23054":406,"23055":0,"23056":0,"23057":-1,"23058":1584,"23059":1476,"23060":1312,"23061":0,"23062":1569,"23063":-1,"23064":0,"23065":0,"23066":1333,"23067":-1,"23068":1349,"23069":0,"23070":122,"23071":-1,"23072":481,"23073":158,"23074":157,"23075":-1,"23076":0,"23077":1367,"23078":1452,"23079":-1,"23080":0,"23081":-1,"23082":0,"23083":1497,"23084":1383,"23085":0,"23086":0,"23087":1367,"23088":0,"23089":-1,"23090":0,"23091":-1,"23092":197,"23093":-1,"23094":1472,"23095":-1,"23096":0,"23097":-1,"23098":0,"23099":-1,"23100":0,"23101":-1,"23102":188,"23103":0,"23104":1377,"23105":0,"23106":0,"23107":0,"23108":-1,"23109":-1,"23110":35,"23111":0,"23112":-1,"23113":-1,"23114":0,"23115":0,"23116":0,"23117":1568,"23118":1532,"23119":0,"23120":0,"23121":1527,"23122":0,"23123":306,"23124":0,"23125":0,"23126":83,"23127":0,"23128":0,"23129":180,"23130":-1,"23131":0,"23132":287,"23133":196,"23134":-1,"23135":-1,"23136":-1,"23137":-1,"23138":0,"23139":0,"23140":0,"23141":0,"23142":0,"23143":36,"23144":0,"23145":-1,"23146":1541,"23147":0,"23148":-1,"23149":-1,"23150":-1,"23151":1555,"23152":0,"23153":-1,"23154":0,"23155":0,"23156":0,"23157":1439,"23158":-1,"23159":0,"23160":329,"23161":334,"23162":0,"23163":61,"23164":0,"23165":0,"23166":0,"23167":-1,"23168":0,"23169":0,"23170":1578,"23171":-1,"23172":-1,"23173":314,"23174":-1,"23175":-1,"23176":0,"23177":0,"23178":0,"23179":-1,"23180":147,"23181":384,"23182":0,"23183":-1,"23184":1394,"23185":-1,"23186":0,"23187":0,"23188":-1,"23189":-1,"23190":-1,"23191":0,"23192":0,"23193":1391,"23194":0,"23195":-1,"23196":334,"23197":0,"23198":-1,"23199":0,"23200":0,"23201":0,"23202":0,"23203":-1,"23204":0,"23205":-1,"23206":-1,"23207":1413,"23208":0,"23209":1488,"23210":225,"23211":0,"23212":252,"23213":206,"23214":-1,"23215":-1,"23216":0,"23217":0,"23218":1494,"23219":0,"23220":-1,"23221":0,"23222":0,"23223":343,"23224":-1,"23225":-1,"23226":0,"23227":0,"23228":0,"23229":1337,"23230":0,"23231":1364,"23232":0,"23233":0,"23234":97,"23235":-1,"23236":92,"23237":285,"23238":0,"23239":0,"23240":0,"23241":0,"23242":0,"23243":-1,"23244":1503,"23245":0,"23246":159,"23247":1567,"23248":0,"23249":-1,"23250":0,"23251":-1,"23252":1462,"23253":0,"23254":0,"23255":1559,"23256":-1,"23257":-1,"23258":-1,"23259":0,"23260":-1,"23261":0,"23262":0,"23263":-1,"23264":-1,"23265":0,"23266":0,"23267":53,"23268":383,"23269":-1,"23270":0,"23271":174,"23272":0,"23273":-1,"23274":-1,"23275":1426,"23276":57,"23277":-1,"23278":0,"23279":0,"23280":0,"23281":179,"23282":-1,"23283":-1,"23284":-1,"23285":-1,"23286":41,"23287":-1,"23288":0,"23289":1446,"23290":0,"23291":-1,"23292":0,"23293":305,"23294":0,"23295":-1,"23296":198,"23297":0,"23298":0,"23299":0,"23300":0,"23301":0,"23302":0,"23303":-1,"23304":0,"23305":0,"23306":0,"23307":-1,"23308":-1,"23309":-1,"23310":0,"23311":0,"23312":89,"23313":323,"23314":-1,"23315":0,"23316":-1,"23317":0,"23318":0,"23319":0,"23320":0,"23321":-1,"23322":0,"23323":-1,"23324":0,"23325":0,"23326":-1,"23327":-1,"23328":1510,"23329":0,"23330":-1,"23331":-1,"23332":-1,"23333":1584,"23334":0,"23335":0,"23336":0,"23337":-1,"23338":-1,"23339":0,"23340":0,"23341":-1,"23342":1529,"23343":0,"23344":0,"23345":-1,"23346":0,"23347":1510,"23348":-1,"23349":0,"23350":-1,"23351":0,"23352":0,"23353":-1,"23354":0,"23355":0,"23356":115,"23357":0,"23358":235,"23359":1381,"23360":0,"23361":-1,"23362":1432,"23363":-1,"23364":66,"23365":268,"23366":44,"23367":0,"23368":-1,"23369":-1,"23370":373,"23371":281,"23372":0,"23373":-1,"23374":-1,"23375":-1,"23376":0,"23377":167,"23378":235,"23379":129,"23380":0,"23381":-1,"23382":0,"23383":1541,"23384":1437,"23385":-1,"23386":-1,"23387":-1,"23388":-1,"23389":-1,"23390":0,"23391":0,"23392":0,"23393":0,"23394":0,"23395":0,"23396":-1,"23397":1401,"23398":1306,"23399":153,"23400":-1,"23401":0,"23402":1365,"23403":0,"23404":70,"23405":-1,"23406":1335,"23407":-1,"23408":-1,"23409":0,"23410":0,"23411":0,"23412":211,"23413":0,"23414":0,"23415":0,"23416":0,"23417":267,"23418":0,"23419":-1,"23420":0,"23421":0,"23422":158,"23423":-1,"23424":0,"23425":0,"23426":0,"23427":1406,"23428":307,"23429":312,"23430":0,"23431":-1,"23432":270,"23433":0,"23434":-1,"23435":240,"23436":195,"23437":0,"23438":-1,"23439":0,"23440":201,"23441":0,"23442":0,"23443":187,"23444":-1,"23445":-1,"23446":-1,"23447":0,"23448":221,"23449":0,"23450":0,"23451":-1,"23452":0,"23453":0,"23454":163,"23455":0,"23456":0,"23457":-1,"23458":-1,"23459":1481,"23460":0,"23461":0,"23462":0,"23463":1343,"23464":-1,"23465":271,"23466":75,"23467":0,"23468":-1,"23469":-1,"23470":-1,"23471":295,"23472":1337,"23473":0,"23474":-1,"23475":0,"23476":287,"23477":0,"23478":1359,"23479":-1,"23480":0,"23481":1571,"23482":0,"23483":-1,"23484":-1,"23485":-1,"23486":238,"23487":1524,"23488":0,"23489":0,"23490":-1,"23491":1401,"23492":0,"23493":0,"23494":-1,"23495":-1,"23496":261,"23497":0,"23498":-1,"23499":-1,"23500":0,"23501":0,"23502":1389,"23503":-1,"23504":-1,"23505":0,"23506":0,"23507":0,"23508":0,"23509":0,"23510":0,"23511":-1,"23512":-1,"23513":0,"23514":-1,"23515":0,"23516":0,"23517":252,"23518":-1,"23519":0,"23520":0,"23521":0,"23522":0,"23523":0,"23524":0,"23525":0,"23526":-1,"23527":1304,"23528":0,"23529":0,"23530":1427,"23531":-1,"23532":-1,"23533":1532,"23534":0,"23535":-1,"23536":-1,"23537":0,"23538":0,"23539":0,"23540":-1,"23541":295,"23542":-1,"23543":0,"23544":0,"23545":0,"23546":0,"23547":0,"23548":-1,"23549":-1,"23550":1426,"23551":0,"23552":246,"23553":1578,"23554":1363,"23555":0,"23556":-1,"23557":-1,"23558":-1,"23559":1542,"23560":-1,"23561":-1,"23562":-1,"23563":0,"23564":-1,"23565":0,"23566":278,"23567":-1,"23568":0,"23569":0,"23570":0,"23571":0,"23572":-1,"23573":0,"23574":63,"23575":481,"23576":-1,"23577":-1,"23578":187,"23579":-1,"23580":325,"23581":0,"23582":132,"23583":1395,"23584":329,"23585":-1,"23586":-1,"23587":-1,"23588":208,"23589":0,"23590":375,"23591":0,"23592":0,"23593":0,"23594":1481,"23595":0,"23596":-1,"23597":24,"23598":-1,"23599":0,"23600":0,"23601":0,"23602":-1,"23603":1359,"23604":0,"23605":0,"23606":-1,"23607":-1,"23608":1352,"23609":-1,"23610":-1,"23611":-1,"23612":-1,"23613":-1,"23614":1427,"23615":-1,"23616":-1,"23617":357,"23618":0,"23619":-1,"23620":0,"23621":1410,"23622":-1,"23623":0,"23624":-1,"23625":0,"23626":0,"23627":1472,"23628":-1,"23629":0,"23630":-1,"23631":32,"23632":0,"23633":0,"23634":0,"23635":0,"23636":-1,"23637":0,"23638":0,"23639":0,"23640":-1,"23641":0,"23642":0,"23643":0,"23644":-1,"23645":1397,"23646":0,"23647":0,"23648":0,"23649":339,"23650":0,"23651":1449,"23652":3,"23653":0,"23654":-1,"23655":-1,"23656":-1,"23657":0,"23658":0,"23659":-1,"23660":92,"23661":0,"23662":0,"23663":248,"23664":-1,"23665":-1,"23666":-1,"23667":161,"23668":-1,"23669":-1,"23670":-1,"23671":297,"23672":-1,"23673":-1,"23674":-1,"23675":61,"23676":-1,"23677":-1,"23678":1384,"23679":0,"23680":1545,"23681":-1,"23682":225,"23683":1386,"23684":-1,"23685":-1,"23686":0,"23687":-1,"23688":384,"23689":0,"23690":0,"23691":0,"23692":1311,"23693":0,"23694":0,"23695":0,"23696":0,"23697":0,"23698":-1,"23699":-1,"23700":1456,"23701":0,"23702":0,"23703":0,"23704":1503,"23705":0,"23706":328,"23707":97,"23708":-1,"23709":-1,"23710":1334,"23711":-1,"23712":0,"23713":73,"23714":1409,"23715":271,"23716":0,"23717":0,"23718":0,"23719":0,"23720":0,"23721":-1,"23722":-1,"23723":-1,"23724":-1,"23725":0,"23726":-1,"23727":0,"23728":0,"23729":0,"23730":0,"23731":0,"23732":-1,"23733":-1,"23734":0,"23735":0,"23736":-1,"23737":-1,"23738":-1,"23739":0,"23740":0,"23741":0,"23742":25,"23743":0,"23744":0,"23745":0,"23746":0,"23747":0,"23748":0,"23749":-1,"23750":1535,"23751":0,"23752":-1,"23753":243,"23754":308,"23755":0,"23756":0,"23757":0,"23758":-1,"23759":-1,"23760":-1,"23761":0,"23762":92,"23763":1550,"23764":1339,"23765":28,"23766":-1,"23767":429,"23768":0,"23769":0,"23770":0,"23771":0,"23772":-1,"23773":1522,"23774":1323,"23775":0,"23776":-1,"23777":0,"23778":0,"23779":-1,"23780":-1,"23781":-1,"23782":0,"23783":-1,"23784":0,"23785":0,"23786":0,"23787":16,"23788":0,"23789":-1,"23790":1577,"23791":0,"23792":0,"23793":1421,"23794":-1,"23795":-1,"23796":0,"23797":0,"23798":0,"23799":-1,"23800":-1,"23801":0,"23802":-1,"23803":-1,"23804":257,"23805":0,"23806":0,"23807":0,"23808":-1,"23809":-1,"23810":1326,"23811":1384,"23812":-1,"23813":-1,"23814":-1,"23815":0,"23816":234,"23817":313,"23818":-1,"23819":0,"23820":-1,"23821":-1,"23822":0,"23823":-1,"23824":0,"23825":-1,"23826":-1,"23827":-1,"23828":0,"23829":0,"23830":-1,"23831":0,"23832":-1,"23833":240,"23834":-1,"23835":236,"23836":-1,"23837":0,"23838":0,"23839":0,"23840":0,"23841":0,"23842":0,"23843":1419,"23844":-1,"23845":0,"23846":0,"23847":0,"23848":1302,"23849":-1,"23850":-1,"23851":0,"23852":0,"23853":0,"23854":1309,"23855":0,"23856":0,"23857":0,"23858":-1,"23859":0,"23860":0,"23861":-1,"23862":0,"23863":1303,"23864":1400,"23865":0,"23866":-1,"23867":-1,"23868":-1,"23869":0,"23870":-1,"23871":0,"23872":0,"23873":-1,"23874":1503,"23875":0,"23876":0,"23877":0,"23878":-1,"23879":0,"23880":-1,"23881":0,"23882":1384,"23883":3,"23884":0,"23885":-1,"23886":0,"23887":-1,"23888":0,"23889":-1,"23890":94,"23891":-1,"23892":-1,"23893":0,"23894":0,"23895":0,"23896":381,"23897":0,"23898":-1,"23899":0,"23900":-1,"23901":1468,"23902":0,"23903":-1,"23904":-1,"23905":0,"23906":0,"23907":1333,"23908":0,"23909":-1,"23910":0,"23911":-1,"23912":0,"23913":-1,"23914":-1,"23915":-1,"23916":0,"23917":0,"23918":-1,"23919":0,"23920":0,"23921":0,"23922":-1,"23923":0,"23924":324,"23925":0,"23926":83,"23927":1581,"23928":-1,"23929":0,"23930":1520,"23931":-1,"23932":0,"23933":0,"23934":0,"23935":-1,"23936":-1,"23937":1411,"23938":0,"23939":0,"23940":301,"23941":0,"23942":-1,"23943":0,"23944":-1,"23945":198,"23946":0,"23947":1322,"23948":0,"23949":0,"23950":102,"23951":0,"23952":-1,"23953":1536,"23954":270,"23955":0,"23956":0,"23957":173,"23958":-1,"23959":-1,"23960":0,"23961":1555,"23962":-1,"23963":0,"23964":-1,"23965":0,"23966":199,"23967":256,"23968":1326,"23969":-1,"23970":-1,"23971":0,"23972":-1,"23973":241,"23974":63,"23975":1359,"23976":0,"23977":0,"23978":0,"23979":-1,"23980":0,"23981":1390,"23982":0,"23983":0,"23984":0,"23985":0,"23986":310,"23987":-1,"23988":102,"23989":1569,"23990":-1,"23991":0,"23992":-1,"23993":-1,"23994":0,"23995":0,"23996":0,"23997":0,"23998":-1,"23999":0,"24000":1510,"24001":0,"24002":0,"24003":160,"24004":-1,"24005":-1,"24006":0,"24007":-1,"24008":0,"24009":0,"24010":-1,"24011":0,"24012":0,"24013":52,"24014":-1,"24015":-1,"24016":0,"24017":-1,"24018":0,"24019":1526,"24020":271,"24021":0,"24022":-1,"24023":0,"24024":0,"24025":0,"24026":-1,"24027":1364,"24028":1407,"24029":-1,"24030":-1,"24031":-1,"24032":-1,"24033":0,"24034":1310,"24035":1367,"24036":0,"24037":0,"24038":-1,"24039":0,"24040":-1,"24041":0,"24042":-1,"24043":-1,"24044":1448,"24045":0,"24046":-1,"24047":1539,"24048":0,"24049":-1,"24050":0,"24051":0,"24052":0,"24053":1378,"24054":1303,"24055":-1,"24056":-1,"24057":0,"24058":24,"24059":0,"24060":49,"24061":0,"24062":16,"24063":0,"24064":0,"24065":-1,"24066":235,"24067":-1,"24068":0,"24069":0,"24070":97,"24071":0,"24072":1389,"24073":1565,"24074":0,"24075":0,"24076":-1,"24077":0,"24078":0,"24079":-1,"24080":0,"24081":-1,"24082":1352,"24083":1557,"24084":0,"24085":0,"24086":-1,"24087":0,"24088":-1,"24089":1529,"24090":1458,"24091":-1,"24092":-1,"24093":0,"24094":77,"24095":0,"24096":0,"24097":-1,"24098":0,"24099":0,"24100":0,"24101":-1,"24102":0,"24103":-1,"24104":0,"24105":1515,"24106":-1,"24107":375,"24108":0,"24109":-1,"24110":127,"24111":119,"24112":0,"24113":15,"24114":1299,"24115":0,"24116":-1,"24117":-1,"24118":-1,"24119":0,"24120":-1,"24121":308,"24122":0,"24123":0,"24124":-1,"24125":-1,"24126":0,"24127":-1,"24128":-1,"24129":-1,"24130":0,"24131":140,"24132":0,"24133":0,"24134":-1,"24135":-1,"24136":-1,"24137":-1,"24138":0,"24139":-1,"24140":-1,"24141":1532,"24142":-1,"24143":304,"24144":-1,"24145":-1,"24146":164,"24147":0,"24148":1584,"24149":-1,"24150":0,"24151":0,"24152":-1,"24153":-1,"24154":0,"24155":1536,"24156":-1,"24157":0,"24158":0,"24159":0,"24160":279,"24161":0,"24162":0,"24163":-1,"24164":1377,"24165":308,"24166":-1,"24167":0,"24168":1505,"24169":0,"24170":-1,"24171":-1,"24172":-1,"24173":252,"24174":-1,"24175":0,"24176":0,"24177":-1,"24178":0,"24179":-1,"24180":-1,"24181":53,"24182":253,"24183":406,"24184":-1,"24185":0,"24186":0,"24187":1581,"24188":-1,"24189":165,"24190":0,"24191":-1,"24192":1405,"24193":1506,"24194":-1,"24195":208,"24196":278,"24197":-1,"24198":-1,"24199":0,"24200":0,"24201":0,"24202":0,"24203":0,"24204":0,"24205":0,"24206":0,"24207":-1,"24208":237,"24209":-1,"24210":147,"24211":-1,"24212":0,"24213":0,"24214":-1,"24215":0,"24216":-1,"24217":-1,"24218":1426,"24219":-1,"24220":98,"24221":0,"24222":-1,"24223":0,"24224":1505,"24225":256,"24226":0,"24227":-1,"24228":-1,"24229":0,"24230":-1,"24231":0,"24232":0,"24233":1409,"24234":1497,"24235":-1,"24236":-1,"24237":0,"24238":-1,"24239":0,"24240":0,"24241":76,"24242":0,"24243":381,"24244":-1,"24245":0,"24246":-1,"24247":206,"24248":13,"24249":0,"24250":-1,"24251":1367,"24252":0,"24253":0,"24254":0,"24255":33,"24256":115,"24257":-1,"24258":0,"24259":-1,"24260":1333,"24261":-1,"24262":0,"24263":0,"24264":-1,"24265":-1,"24266":336,"24267":0,"24268":1373,"24269":0,"24270":0,"24271":1510,"24272":-1,"24273":-1,"24274":1301,"24275":0,"24276":0,"24277":0,"24278":1544,"24279":1370,"24280":0,"24281":0,"24282":1569,"24283":0,"24284":0,"24285":0,"24286":-1,"24287":0,"24288":0,"24289":-1,"24290":252,"24291":174,"24292":0,"24293":0,"24294":0,"24295":0,"24296":269,"24297":38,"24298":0,"24299":0,"24300":-1,"24301":-1,"24302":0,"24303":-1,"24304":0,"24305":1500,"24306":101,"24307":0,"24308":0,"24309":-1,"24310":1497,"24311":0,"24312":0,"24313":1496,"24314":0,"24315":-1,"24316":0,"24317":0,"24318":0,"24319":68,"24320":-1,"24321":-1,"24322":0,"24323":1492,"24324":0,"24325":-1,"24326":0,"24327":0,"24328":1352,"24329":0,"24330":197,"24331":0,"24332":0,"24333":1317,"24334":0,"24335":-1,"24336":232,"24337":0,"24338":0,"24339":254,"24340":-1,"24341":-1,"24342":48,"24343":-1,"24344":-1,"24345":0,"24346":-1,"24347":0,"24348":0,"24349":0,"24350":0,"24351":0,"24352":-1,"24353":1511,"24354":116,"24355":-1,"24356":0,"24357":0,"24358":-1,"24359":0,"24360":198,"24361":-1,"24362":0,"24363":0,"24364":0,"24365":0,"24366":0,"24367":0,"24368":0,"24369":17,"24370":0,"24371":1565,"24372":0,"24373":-1,"24374":0,"24375":0,"24376":-1,"24377":-1,"24378":122,"24379":0,"24380":0,"24381":0,"24382":0,"24383":-1,"24384":-1,"24385":41,"24386":-1,"24387":1445,"24388":0,"24389":-1,"24390":-1,"24391":324,"24392":0,"24393":1425,"24394":0,"24395":0,"24396":0,"24397":-1,"24398":0,"24399":378,"24400":0,"24401":-1,"24402":0,"24403":0,"24404":-1,"24405":0,"24406":-1,"24407":-1,"24408":-1,"24409":1453,"24410":241,"24411":0,"24412":-1,"24413":0,"24414":0,"24415":0,"24416":341,"24417":0,"24418":0,"24419":0,"24420":350,"24421":0,"24422":0,"24423":0,"24424":0,"24425":0,"24426":0,"24427":-1,"24428":0,"24429":18,"24430":-1,"24431":0,"24432":1574,"24433":152,"24434":-1,"24435":0,"24436":0,"24437":-1,"24438":0,"24439":0,"24440":-1,"24441":323,"24442":186,"24443":-1,"24444":-1,"24445":-1,"24446":-1,"24447":-1,"24448":-1,"24449":0,"24450":0,"24451":0,"24452":1443,"24453":324,"24454":-1,"24455":0,"24456":0,"24457":-1,"24458":39,"24459":1346,"24460":1410,"24461":-1,"24462":341,"24463":201,"24464":-1,"24465":0,"24466":-1,"24467":341,"24468":270,"24469":182,"24470":0,"24471":1430,"24472":0,"24473":0,"24474":-1,"24475":-1,"24476":-1,"24477":-1,"24478":0,"24479":0,"24480":0,"24481":0,"24482":0,"24483":1372,"24484":-1,"24485":1349,"24486":0,"24487":-1,"24488":0,"24489":0,"24490":1578,"24491":0,"24492":-1,"24493":1450,"24494":1530,"24495":0,"24496":-1,"24497":0,"24498":0,"24499":0,"24500":0,"24501":-1,"24502":0,"24503":0,"24504":0,"24505":15,"24506":1443,"24507":0,"24508":0,"24509":0,"24510":0,"24511":0,"24512":0,"24513":-1,"24514":-1,"24515":0,"24516":0,"24517":384,"24518":-1,"24519":0,"24520":0,"24521":0,"24522":0,"24523":-1,"24524":0,"24525":167,"24526":-1,"24527":-1,"24528":232,"24529":0,"24530":261,"24531":0,"24532":1552,"24533":0,"24534":0,"24535":0,"24536":0,"24537":-1,"24538":0,"24539":0,"24540":132,"24541":0,"24542":0,"24543":0,"24544":-1,"24545":214,"24546":0,"24547":-1,"24548":0,"24549":0,"24550":-1,"24551":-1,"24552":-1,"24553":0,"24554":-1,"24555":26,"24556":-1,"24557":0,"24558":0,"24559":381,"24560":0,"24561":226,"24562":-1,"24563":0,"24564":-1,"24565":-1,"24566":35,"24567":-1,"24568":60,"24569":-1,"24570":1471,"24571":-1,"24572":-1,"24573":0,"24574":0,"24575":-1,"24576":1388,"24577":-1,"24578":0,"24579":0,"24580":0,"24581":1319,"24582":0,"24583":-1,"24584":0,"24585":-1,"24586":0,"24587":0,"24588":0,"24589":0,"24590":-1,"24591":128,"24592":0,"24593":-1,"24594":0,"24595":-1,"24596":-1,"24597":-1,"24598":61,"24599":0,"24600":1506,"24601":-1,"24602":281,"24603":-1,"24604":0,"24605":0,"24606":0,"24607":-1,"24608":0,"24609":234,"24610":0,"24611":-1,"24612":-1,"24613":1317,"24614":1319,"24615":0,"24616":-1,"24617":259,"24618":0,"24619":269,"24620":0,"24621":89,"24622":-1,"24623":0,"24624":0,"24625":0,"24626":0,"24627":0,"24628":1489,"24629":0,"24630":-1,"24631":-1,"24632":-1,"24633":284,"24634":0,"24635":-1,"24636":-1,"24637":-1,"24638":-1,"24639":0,"24640":-1,"24641":47,"24642":-1,"24643":0,"24644":0,"24645":0,"24646":0,"24647":26,"24648":0,"24649":0,"24650":-1,"24651":1488,"24652":-1,"24653":261,"24654":0,"24655":0,"24656":89,"24657":0,"24658":0,"24659":-1,"24660":0,"24661":0,"24662":265,"24663":1366,"24664":1385,"24665":111,"24666":0,"24667":0,"24668":0,"24669":1485,"24670":-1,"24671":-1,"24672":0,"24673":-1,"24674":-1,"24675":-1,"24676":188,"24677":1578,"24678":154,"24679":0,"24680":0,"24681":0,"24682":0,"24683":-1,"24684":-1,"24685":0,"24686":-1,"24687":1311,"24688":0,"24689":-1,"24690":-1,"24691":0,"24692":0,"24693":62,"24694":0,"24695":0,"24696":-1,"24697":0,"24698":232,"24699":0,"24700":0,"24701":0,"24702":-1,"24703":0,"24704":49,"24705":0,"24706":1372,"24707":-1,"24708":-1,"24709":-1,"24710":1358,"24711":269,"24712":-1,"24713":-1,"24714":1494,"24715":0,"24716":0,"24717":0,"24718":127,"24719":-1,"24720":0,"24721":0,"24722":-1,"24723":0,"24724":0,"24725":1383,"24726":0,"24727":-1,"24728":0,"24729":54,"24730":-1,"24731":0,"24732":1570,"24733":0,"24734":0,"24735":0,"24736":-1,"24737":0,"24738":-1,"24739":68,"24740":-1,"24741":0,"24742":1457,"24743":0,"24744":0,"24745":-1,"24746":0,"24747":0,"24748":-1,"24749":0,"24750":-1,"24751":0,"24752":1299,"24753":0,"24754":13,"24755":1544,"24756":-1,"24757":42,"24758":46,"24759":1,"24760":0,"24761":0,"24762":287,"24763":0,"24764":1431,"24765":-1,"24766":1326,"24767":-1,"24768":0,"24769":267,"24770":1367,"24771":-1,"24772":0,"24773":-1,"24774":0,"24775":0,"24776":0,"24777":-1,"24778":1501,"24779":0,"24780":-1,"24781":-1,"24782":298,"24783":-1,"24784":1428,"24785":0,"24786":-1,"24787":1300,"24788":0,"24789":0,"24790":1483,"24791":1377,"24792":0,"24793":0,"24794":1477,"24795":0,"24796":1365,"24797":1391,"24798":1447,"24799":0,"24800":142,"24801":0,"24802":-1,"24803":-1,"24804":1319,"24805":1465,"24806":0,"24807":0,"24808":283,"24809":-1,"24810":0,"24811":343,"24812":-1,"24813":220,"24814":1535,"24815":-1,"24816":0,"24817":1345,"24818":-1,"24819":0,"24820":365,"24821":0,"24822":0,"24823":0,"24824":0,"24825":175,"24826":-1,"24827":0,"24828":0,"24829":0,"24830":-1,"24831":429,"24832":-1,"24833":0,"24834":0,"24835":-1,"24836":1418,"24837":1426,"24838":-1,"24839":0,"24840":-1,"24841":0,"24842":-1,"24843":0,"24844":-1,"24845":-1,"24846":0,"24847":-1,"24848":0,"24849":0,"24850":0,"24851":-1,"24852":0,"24853":0,"24854":0,"24855":1537,"24856":1488,"24857":289,"24858":0,"24859":-1,"24860":0,"24861":0,"24862":1300,"24863":0,"24864":-1,"24865":0,"24866":-1,"24867":0,"24868":-1,"24869":-1,"24870":226,"24871":83,"24872":1319,"24873":32,"24874":199,"24875":0,"24876":-1,"24877":0,"24878":0,"24879":1573,"24880":197,"24881":0,"24882":0,"24883":0,"24884":0,"24885":299,"24886":0,"24887":-1,"24888":-1,"24889":243,"24890":164,"24891":-1,"24892":0,"24893":-1,"24894":0,"24895":0,"24896":-1,"24897":-1,"24898":371,"24899":-1,"24900":0,"24901":0,"24902":21,"24903":0,"24904":225,"24905":326,"24906":-1,"24907":0,"24908":-1,"24909":0,"24910":0,"24911":0,"24912":0,"24913":-1,"24914":0,"24915":-1,"24916":0,"24917":-1,"24918":0,"24919":0,"24920":216,"24921":0,"24922":-1,"24923":-1,"24924":0,"24925":94,"24926":0,"24927":0,"24928":-1,"24929":-1,"24930":-1,"24931":196,"24932":-1,"24933":1325,"24934":-1,"24935":0,"24936":1530,"24937":0,"24938":0,"24939":0,"24940":0,"24941":-1,"24942":-1,"24943":0,"24944":1340,"24945":0,"24946":0,"24947":0,"24948":-1,"24949":0,"24950":-1,"24951":0,"24952":1400,"24953":0,"24954":-1,"24955":-1,"24956":97,"24957":-1,"24958":-1,"24959":-1,"24960":0,"24961":0,"24962":0,"24963":0,"24964":0,"24965":0,"24966":-1,"24967":1400,"24968":0,"24969":-1,"24970":0,"24971":-1,"24972":-1,"24973":0,"24974":0,"24975":-1,"24976":0,"24977":0,"24978":-1,"24979":380,"24980":169,"24981":0,"24982":155,"24983":0,"24984":43,"24985":-1,"24986":94,"24987":1410,"24988":-1,"24989":0,"24990":-1,"24991":1531,"24992":112,"24993":-1,"24994":0,"24995":0,"24996":0,"24997":1475,"24998":1427,"24999":0,"25000":0,"25001":0,"25002":-1,"25003":-1,"25004":71,"25005":1369,"25006":0,"25007":-1,"25008":0,"25009":0,"25010":-1,"25011":0,"25012":0,"25013":269,"25014":0,"25015":1452,"25016":-1,"25017":-1,"25018":326,"25019":0,"25020":0,"25021":-1,"25022":0,"25023":0,"25024":0,"25025":0,"25026":0,"25027":-1,"25028":-1,"25029":1475,"25030":-1,"25031":0,"25032":0,"25033":1575,"25034":200,"25035":-1,"25036":0,"25037":-1,"25038":1334,"25039":0,"25040":-1,"25041":1470,"25042":0,"25043":0,"25044":307,"25045":-1,"25046":12,"25047":0,"25048":-1,"25049":1509,"25050":0,"25051":-1,"25052":-1,"25053":0,"25054":-1,"25055":0,"25056":0,"25057":0,"25058":216,"25059":-1,"25060":0,"25061":-1,"25062":0,"25063":1463,"25064":0,"25065":1358,"25066":-1,"25067":-1,"25068":85,"25069":181,"25070":0,"25071":0,"25072":115,"25073":-1,"25074":-1,"25075":1540,"25076":0,"25077":0,"25078":-1,"25079":0,"25080":-1,"25081":146,"25082":1458,"25083":0,"25084":1307,"25085":-1,"25086":207,"25087":-1,"25088":-1,"25089":1452,"25090":0,"25091":1385,"25092":-1,"25093":0,"25094":-1,"25095":-1,"25096":0,"25097":1300,"25098":-1,"25099":-1,"25100":-1,"25101":-1,"25102":0,"25103":0,"25104":-1,"25105":0,"25106":1484,"25107":0,"25108":0,"25109":-1,"25110":-1,"25111":-1,"25112":0,"25113":-1,"25114":0,"25115":0,"25116":0,"25117":-1,"25118":9,"25119":-1,"25120":380,"25121":1396,"25122":0,"25123":51,"25124":0,"25125":0,"25126":1453,"25127":0,"25128":0,"25129":1442,"25130":0,"25131":-1,"25132":-1,"25133":0,"25134":167,"25135":0,"25136":1406,"25137":0,"25138":0,"25139":0,"25140":-1,"25141":0,"25142":-1,"25143":0,"25144":0,"25145":71,"25146":-1,"25147":0,"25148":0,"25149":-1,"25150":-1,"25151":-1,"25152":1474,"25153":0,"25154":0,"25155":1529,"25156":0,"25157":0,"25158":1530,"25159":0,"25160":0,"25161":-1,"25162":88,"25163":0,"25164":0,"25165":-1,"25166":1566,"25167":0,"25168":1372,"25169":0,"25170":1511,"25171":0,"25172":-1,"25173":0,"25174":0,"25175":238,"25176":328,"25177":0,"25178":1471,"25179":0,"25180":1310,"25181":0,"25182":323,"25183":-1,"25184":0,"25185":3,"25186":0,"25187":-1,"25188":-1,"25189":-1,"25190":-1,"25191":1538,"25192":0,"25193":0,"25194":-1,"25195":-1,"25196":0,"25197":0,"25198":0,"25199":-1,"25200":0,"25201":0,"25202":-1,"25203":0,"25204":0,"25205":-1,"25206":1459,"25207":0,"25208":38,"25209":0,"25210":-1,"25211":-1,"25212":-1,"25213":-1,"25214":0,"25215":0,"25216":-1,"25217":1376,"25218":-1,"25219":78,"25220":-1,"25221":-1,"25222":0,"25223":203,"25224":0,"25225":0,"25226":0,"25227":0,"25228":265,"25229":0,"25230":0,"25231":-1,"25232":0,"25233":0,"25234":0,"25235":0,"25236":0,"25237":0,"25238":-1,"25239":1401,"25240":1505,"25241":195,"25242":-1,"25243":0,"25244":-1,"25245":0,"25246":1575,"25247":0,"25248":-1,"25249":-1,"25250":0,"25251":-1,"25252":0,"25253":0,"25254":65,"25255":0,"25256":0,"25257":-1,"25258":1456,"25259":-1,"25260":1556,"25261":0,"25262":192,"25263":359,"25264":-1,"25265":-1,"25266":0,"25267":-1,"25268":0,"25269":-1,"25270":-1,"25271":0,"25272":0,"25273":-1,"25274":0,"25275":-1,"25276":-1,"25277":1406,"25278":0,"25279":-1,"25280":0,"25281":0,"25282":-1,"25283":0,"25284":0,"25285":1538,"25286":0,"25287":0,"25288":1489,"25289":0,"25290":-1,"25291":0,"25292":0,"25293":0,"25294":190,"25295":0,"25296":-1,"25297":1550,"25298":-1,"25299":0,"25300":0,"25301":-1,"25302":1569,"25303":0,"25304":0,"25305":1398,"25306":-1,"25307":0,"25308":-1,"25309":202,"25310":111,"25311":-1,"25312":-1,"25313":0,"25314":1487,"25315":-1,"25316":119,"25317":1480,"25318":0,"25319":0,"25320":1456,"25321":-1,"25322":1324,"25323":0,"25324":0,"25325":1564,"25326":0,"25327":1452,"25328":1498,"25329":93,"25330":0,"25331":244,"25332":0,"25333":0,"25334":-1,"25335":0,"25336":224,"25337":-1,"25338":-1,"25339":1477,"25340":1435,"25341":0,"25342":-1,"25343":291,"25344":125,"25345":0,"25346":-1,"25347":0,"25348":297,"25349":0,"25350":0,"25351":371,"25352":0,"25353":0,"25354":-1,"25355":0,"25356":-1,"25357":0,"25358":1436,"25359":0,"25360":-1,"25361":0,"25362":0,"25363":-1,"25364":-1,"25365":256,"25366":1364,"25367":-1,"25368":-1,"25369":0,"25370":0,"25371":175,"25372":293,"25373":160,"25374":-1,"25375":0,"25376":0,"25377":0,"25378":0,"25379":-1,"25380":1319,"25381":0,"25382":0,"25383":0,"25384":1495,"25385":-1,"25386":0,"25387":190,"25388":0,"25389":0,"25390":0,"25391":0,"25392":0,"25393":-1,"25394":1488,"25395":-1,"25396":-1,"25397":1512,"25398":0,"25399":0,"25400":0,"25401":-1,"25402":42,"25403":-1,"25404":-1,"25405":0,"25406":0,"25407":1303,"25408":-1,"25409":0,"25410":1516,"25411":-1,"25412":278,"25413":0,"25414":-1,"25415":-1,"25416":0,"25417":0,"25418":-1,"25419":0,"25420":-1,"25421":0,"25422":29,"25423":1325,"25424":0,"25425":1309,"25426":-1,"25427":-1,"25428":0,"25429":0,"25430":0,"25431":0,"25432":195,"25433":0,"25434":1421,"25435":0,"25436":0,"25437":1448,"25438":-1,"25439":0,"25440":0,"25441":1432,"25442":1442,"25443":0,"25444":1315,"25445":0,"25446":-1,"25447":149,"25448":0,"25449":-1,"25450":121,"25451":-1,"25452":0,"25453":0,"25454":262,"25455":-1,"25456":264,"25457":14,"25458":0,"25459":0,"25460":-1,"25461":0,"25462":0,"25463":1322,"25464":1308,"25465":-1,"25466":207,"25467":-1,"25468":0,"25469":1434,"25470":81,"25471":0,"25472":0,"25473":0,"25474":1311,"25475":-1,"25476":0,"25477":-1,"25478":0,"25479":-1,"25480":0,"25481":-1,"25482":0,"25483":0,"25484":-1,"25485":1384,"25486":0,"25487":-1,"25488":0,"25489":98,"25490":0,"25491":-1,"25492":0,"25493":0,"25494":1433,"25495":1564,"25496":0,"25497":131,"25498":-1,"25499":0,"25500":-1,"25501":1549,"25502":240,"25503":55,"25504":0,"25505":1452,"25506":-1,"25507":-1,"25508":224,"25509":173,"25510":0,"25511":1358,"25512":0,"25513":-1,"25514":1409,"25515":375,"25516":1507,"25517":165,"25518":0,"25519":0,"25520":0,"25521":1443,"25522":-1,"25523":0,"25524":378,"25525":182,"25526":-1,"25527":0,"25528":0,"25529":-1,"25530":0,"25531":347,"25532":0,"25533":226,"25534":0,"25535":-1,"25536":0,"25537":-1,"25538":0,"25539":-1,"25540":-1,"25541":1549,"25542":0,"25543":0,"25544":68,"25545":0,"25546":0,"25547":0,"25548":1583,"25549":0,"25550":1481,"25551":1330,"25552":-1,"25553":0,"25554":-1,"25555":1484,"25556":0,"25557":-1,"25558":-1,"25559":-1,"25560":1381,"25561":0,"25562":-1,"25563":0,"25564":1444,"25565":-1,"25566":-1,"25567":0,"25568":0,"25569":140,"25570":-1,"25571":1483,"25572":1530,"25573":0,"25574":0,"25575":1434,"25576":0,"25577":-1,"25578":0,"25579":0,"25580":-1,"25581":244,"25582":-1,"25583":-1,"25584":1499,"25585":-1,"25586":1417,"25587":-1,"25588":-1,"25589":0,"25590":0,"25591":0,"25592":-1,"25593":0,"25594":0,"25595":342,"25596":1342,"25597":0,"25598":-1,"25599":0,"25600":0,"25601":0,"25602":0,"25603":-1,"25604":-1,"25605":1390,"25606":1312,"25607":0,"25608":-1,"25609":0,"25610":0,"25611":0,"25612":0,"25613":0,"25614":1534,"25615":-1,"25616":0,"25617":0,"25618":0,"25619":87,"25620":1482,"25621":0,"25622":0,"25623":0,"25624":0,"25625":253,"25626":0,"25627":-1,"25628":1474,"25629":0,"25630":-1,"25631":0,"25632":0,"25633":0,"25634":-1,"25635":0,"25636":282,"25637":0,"25638":0,"25639":0,"25640":-1,"25641":0,"25642":0,"25643":0,"25644":0,"25645":0,"25646":111,"25647":0,"25648":1346,"25649":0,"25650":5,"25651":0,"25652":51,"25653":1306,"25654":0,"25655":1385,"25656":0,"25657":69,"25658":-1,"25659":1567,"25660":0,"25661":-1,"25662":0,"25663":-1,"25664":325,"25665":0,"25666":0,"25667":-1,"25668":0,"25669":0,"25670":0,"25671":-1,"25672":-1,"25673":-1,"25674":1310,"25675":0,"25676":0,"25677":0,"25678":-1,"25679":0,"25680":-1,"25681":195,"25682":0,"25683":283,"25684":0,"25685":-1,"25686":0,"25687":120,"25688":236,"25689":0,"25690":0,"25691":70,"25692":-1,"25693":-1,"25694":0,"25695":145,"25696":0,"25697":303,"25698":0,"25699":1310,"25700":0,"25701":0,"25702":-1,"25703":0,"25704":1561,"25705":0,"25706":1463,"25707":236,"25708":0,"25709":1451,"25710":1519,"25711":0,"25712":0,"25713":0,"25714":-1,"25715":0,"25716":-1,"25717":0,"25718":-1,"25719":0,"25720":0,"25721":0,"25722":0,"25723":0,"25724":0,"25725":1561,"25726":0,"25727":-1,"25728":1396,"25729":0,"25730":0,"25731":0,"25732":0,"25733":-1,"25734":1383,"25735":0,"25736":19,"25737":0,"25738":0,"25739":0,"25740":-1,"25741":192,"25742":199,"25743":1360,"25744":-1,"25745":-1,"25746":-1,"25747":-1,"25748":0,"25749":201,"25750":-1,"25751":0,"25752":1561,"25753":122,"25754":0,"25755":197,"25756":0,"25757":0,"25758":-1,"25759":0,"25760":-1,"25761":0,"25762":0,"25763":0,"25764":-1,"25765":-1,"25766":262,"25767":0,"25768":1342,"25769":197,"25770":1471,"25771":-1,"25772":0,"25773":0,"25774":-1,"25775":9,"25776":-1,"25777":174,"25778":0,"25779":0,"25780":-1,"25781":1527,"25782":-1,"25783":0,"25784":1373,"25785":0,"25786":0,"25787":0,"25788":0,"25789":1528,"25790":-1,"25791":-1,"25792":-1,"25793":0,"25794":111,"25795":288,"25796":-1,"25797":1527,"25798":0,"25799":0,"25800":144,"25801":-1,"25802":328,"25803":0,"25804":12,"25805":0,"25806":0,"25807":1496,"25808":1410,"25809":-1,"25810":-1,"25811":0,"25812":-1,"25813":0,"25814":0,"25815":-1,"25816":0,"25817":-1,"25818":1488,"25819":312,"25820":-1,"25821":-1,"25822":0,"25823":-1,"25824":0,"25825":-1,"25826":0,"25827":-1,"25828":-1,"25829":0,"25830":365,"25831":201,"25832":0,"25833":-1,"25834":438,"25835":-1,"25836":-1,"25837":287,"25838":1493,"25839":1507,"25840":1422,"25841":0,"25842":0,"25843":1515,"25844":0,"25845":-1,"25846":350,"25847":0,"25848":1502,"25849":-1,"25850":0,"25851":-1,"25852":0,"25853":1342,"25854":-1,"25855":0,"25856":1383,"25857":-1,"25858":-1,"25859":1350,"25860":0,"25861":-1,"25862":-1,"25863":252,"25864":0,"25865":217,"25866":0,"25867":1533,"25868":0,"25869":0,"25870":-1,"25871":0,"25872":0,"25873":-1,"25874":1425,"25875":0,"25876":-1,"25877":328,"25878":-1,"25879":0,"25880":-1,"25881":0,"25882":0,"25883":1446,"25884":0,"25885":0,"25886":0,"25887":125,"25888":0,"25889":-1,"25890":-1,"25891":1474,"25892":-1,"25893":0,"25894":157,"25895":-1,"25896":0,"25897":0,"25898":1507,"25899":-1,"25900":-1,"25901":1342,"25902":0,"25903":-1,"25904":0,"25905":-1,"25906":1548,"25907":0,"25908":1360,"25909":1366,"25910":1565,"25911":0,"25912":0,"25913":0,"25914":-1,"25915":0,"25916":0,"25917":-1,"25918":-1,"25919":0,"25920":1388,"25921":153,"25922":-1,"25923":-1,"25924":0,"25925":0,"25926":-1,"25927":348,"25928":-1,"25929":0,"25930":-1,"25931":0,"25932":1443,"25933":373,"25934":0,"25935":0,"25936":0,"25937":-1,"25938":29,"25939":1319,"25940":1341,"25941":0,"25942":-1,"25943":1449,"25944":214,"25945":163,"25946":-1,"25947":0,"25948":0,"25949":1547,"25950":0,"25951":-1,"25952":-1,"25953":0,"25954":-1,"25955":0,"25956":0,"25957":0,"25958":0,"25959":0,"25960":1452,"25961":-1,"25962":0,"25963":0,"25964":0,"25965":-1,"25966":-1,"25967":-1,"25968":0,"25969":-1,"25970":-1,"25971":111,"25972":0,"25973":0,"25974":0,"25975":0,"25976":0,"25977":295,"25978":331,"25979":-1,"25980":0,"25981":-1,"25982":0,"25983":370,"25984":1370,"25985":0,"25986":-1,"25987":0,"25988":1422,"25989":24,"25990":0,"25991":0,"25992":148,"25993":307,"25994":0,"25995":0,"25996":0,"25997":-1,"25998":0,"25999":1539,"26000":-1,"26001":1515,"26002":0,"26003":-1,"26004":0,"26005":0,"26006":0,"26007":0,"26008":-1,"26009":-1,"26010":0,"26011":0,"26012":116,"26013":131,"26014":-1,"26015":-1,"26016":-1,"26017":-1,"26018":-1,"26019":14,"26020":0,"26021":0,"26022":1305,"26023":1526,"26024":336,"26025":0,"26026":-1,"26027":0,"26028":-1,"26029":1563,"26030":-1,"26031":0,"26032":-1,"26033":-1,"26034":-1,"26035":-1,"26036":0,"26037":0,"26038":-1,"26039":1487,"26040":10,"26041":0,"26042":-1,"26043":0,"26044":-1,"26045":1480,"26046":-1,"26047":1338,"26048":-1,"26049":0,"26050":1530,"26051":0,"26052":-1,"26053":42,"26054":1468,"26055":0,"26056":0,"26057":-1,"26058":0,"26059":1580,"26060":0,"26061":-1,"26062":-1,"26063":0,"26064":1465,"26065":-1,"26066":-1,"26067":0,"26068":0,"26069":384,"26070":-1,"26071":1513,"26072":0,"26073":0,"26074":0,"26075":-1,"26076":0,"26077":0,"26078":0,"26079":0,"26080":-1,"26081":208,"26082":1402,"26083":-1,"26084":1303,"26085":-1,"26086":1514,"26087":-1,"26088":-1,"26089":0,"26090":0,"26091":-1,"26092":1539,"26093":3,"26094":-1,"26095":0,"26096":0,"26097":0,"26098":164,"26099":0,"26100":384,"26101":0,"26102":0,"26103":0,"26104":0,"26105":0,"26106":-1,"26107":0,"26108":0,"26109":-1,"26110":0,"26111":-1,"26112":-1,"26113":1578,"26114":-1,"26115":1372,"26116":161,"26117":-1,"26118":0,"26119":0,"26120":-1,"26121":0,"26122":0,"26123":0,"26124":0,"26125":0,"26126":0,"26127":0,"26128":1332,"26129":-1,"26130":0,"26131":369,"26132":0,"26133":-1,"26134":0,"26135":0,"26136":1487,"26137":0,"26138":1351,"26139":0,"26140":0,"26141":0,"26142":0,"26143":-1,"26144":0,"26145":192,"26146":0,"26147":0,"26148":1517,"26149":-1,"26150":0,"26151":-1,"26152":119,"26153":-1,"26154":0,"26155":0,"26156":1423,"26157":1439,"26158":1574,"26159":0,"26160":0,"26161":0,"26162":-1,"26163":0,"26164":211,"26165":295,"26166":-1,"26167":0,"26168":1395,"26169":0,"26170":0,"26171":-1,"26172":0,"26173":-1,"26174":-1,"26175":1440,"26176":1383,"26177":-1,"26178":0,"26179":0,"26180":0,"26181":1320,"26182":-1,"26183":0,"26184":0,"26185":0,"26186":0,"26187":27,"26188":-1,"26189":0,"26190":313,"26191":1461,"26192":-1,"26193":-1,"26194":0,"26195":0,"26196":380,"26197":0,"26198":0,"26199":-1,"26200":0,"26201":1562,"26202":0,"26203":0,"26204":0,"26205":0,"26206":0,"26207":279,"26208":0,"26209":0,"26210":-1,"26211":0,"26212":0,"26213":32,"26214":0,"26215":0,"26216":0,"26217":271,"26218":346,"26219":0,"26220":0,"26221":-1,"26222":192,"26223":0,"26224":-1,"26225":-1,"26226":0,"26227":1304,"26228":0,"26229":-1,"26230":0,"26231":-1,"26232":0,"26233":0,"26234":1447,"26235":0,"26236":37,"26237":-1,"26238":-1,"26239":0,"26240":0,"26241":0,"26242":0,"26243":0,"26244":0,"26245":-1,"26246":-1,"26247":256,"26248":-1,"26249":0,"26250":0,"26251":0,"26252":1572,"26253":-1,"26254":-1,"26255":0,"26256":-1,"26257":-1,"26258":-1,"26259":1412,"26260":-1,"26261":-1,"26262":-1,"26263":0,"26264":-1,"26265":56,"26266":0,"26267":0,"26268":-1,"26269":0,"26270":23,"26271":-1,"26272":-1,"26273":0,"26274":-1,"26275":-1,"26276":111,"26277":1322,"26278":159,"26279":-1,"26280":1541,"26281":1373,"26282":1520,"26283":0,"26284":-1,"26285":-1,"26286":1529,"26287":0,"26288":0,"26289":0,"26290":0,"26291":1420,"26292":-1,"26293":-1,"26294":1512,"26295":0,"26296":1515,"26297":1549,"26298":0,"26299":0,"26300":0,"26301":-1,"26302":-1,"26303":0,"26304":-1,"26305":150,"26306":-1,"26307":0,"26308":0,"26309":-1,"26310":0,"26311":0,"26312":0,"26313":160,"26314":-1,"26315":0,"26316":0,"26317":0,"26318":306,"26319":128,"26320":0,"26321":0,"26322":0,"26323":0,"26324":0,"26325":0,"26326":0,"26327":-1,"26328":0,"26329":136,"26330":0,"26331":-1,"26332":-1,"26333":1522,"26334":-1,"26335":-1,"26336":1463,"26337":0,"26338":1419,"26339":-1,"26340":0,"26341":-1,"26342":-1,"26343":-1,"26344":-1,"26345":0,"26346":0,"26347":0,"26348":-1,"26349":48,"26350":0,"26351":-1,"26352":0,"26353":0,"26354":-1,"26355":267,"26356":0,"26357":0,"26358":-1,"26359":0,"26360":303,"26361":180,"26362":0,"26363":301,"26364":0,"26365":0,"26366":1538,"26367":0,"26368":-1,"26369":0,"26370":1505,"26371":1342,"26372":0,"26373":0,"26374":0,"26375":0,"26376":0,"26377":0,"26378":0,"26379":0,"26380":0,"26381":-1,"26382":-1,"26383":-1,"26384":115,"26385":0,"26386":0,"26387":0,"26388":0,"26389":-1,"26390":0,"26391":0,"26392":0,"26393":-1,"26394":0,"26395":60,"26396":-1,"26397":0,"26398":0,"26399":150,"26400":-1,"26401":0,"26402":307,"26403":0,"26404":70,"26405":0,"26406":0,"26407":0,"26408":-1,"26409":0,"26410":1453,"26411":-1,"26412":-1,"26413":0,"26414":0,"26415":33,"26416":1498,"26417":0,"26418":-1,"26419":302,"26420":-1,"26421":1541,"26422":-1,"26423":-1,"26424":0,"26425":-1,"26426":-1,"26427":-1,"26428":0,"26429":-1,"26430":0,"26431":155,"26432":0,"26433":-1,"26434":0,"26435":0,"26436":1385,"26437":244,"26438":-1,"26439":0,"26440":0,"26441":-1,"26442":0,"26443":0,"26444":-1,"26445":0,"26446":0,"26447":0,"26448":1495,"26449":0,"26450":1489,"26451":0,"26452":1428,"26453":297,"26454":0,"26455":0,"26456":0,"26457":253,"26458":0,"26459":-1,"26460":346,"26461":0,"26462":0,"26463":0,"26464":1494,"26465":0,"26466":-1,"26467":308,"26468":0,"26469":-1,"26470":303,"26471":0,"26472":-1,"26473":0,"26474":-1,"26475":1452,"26476":0,"26477":173,"26478":1407,"26479":-1,"26480":-1,"26481":-1,"26482":-1,"26483":-1,"26484":-1,"26485":0,"26486":-1,"26487":117,"26488":0,"26489":-1,"26490":0,"26491":-1,"26492":-1,"26493":0,"26494":-1,"26495":0,"26496":-1,"26497":-1,"26498":0,"26499":1583,"26500":-1,"26501":0,"26502":-1,"26503":20,"26504":0,"26505":328,"26506":1545,"26507":0,"26508":1543,"26509":-1,"26510":0,"26511":0,"26512":0,"26513":0,"26514":1483,"26515":58,"26516":0,"26517":-1,"26518":384,"26519":0,"26520":0,"26521":-1,"26522":0,"26523":-1,"26524":-1,"26525":0,"26526":-1,"26527":0,"26528":0,"26529":-1,"26530":0,"26531":0,"26532":0,"26533":-1,"26534":0,"26535":5,"26536":0,"26537":0,"26538":-1,"26539":0,"26540":-1,"26541":1357,"26542":0,"26543":-1,"26544":-1,"26545":0,"26546":0,"26547":0,"26548":0,"26549":-1,"26550":0,"26551":1538,"26552":-1,"26553":0,"26554":0,"26555":1576,"26556":1324,"26557":0,"26558":1314,"26559":181,"26560":0,"26561":-1,"26562":-1,"26563":0,"26564":-1,"26565":-1,"26566":-1,"26567":1526,"26568":-1,"26569":206,"26570":0,"26571":-1,"26572":0,"26573":-1,"26574":271,"26575":0,"26576":0,"26577":51,"26578":15,"26579":304,"26580":0,"26581":-1,"26582":0,"26583":1450,"26584":-1,"26585":0,"26586":-1,"26587":-1,"26588":0,"26589":-1,"26590":0,"26591":195,"26592":1584,"26593":144,"26594":-1,"26595":0,"26596":0,"26597":0,"26598":0,"26599":0,"26600":0,"26601":-1,"26602":0,"26603":1541,"26604":1540,"26605":-1,"26606":-1,"26607":-1,"26608":-1,"26609":0,"26610":-1,"26611":0,"26612":-1,"26613":0,"26614":190,"26615":285,"26616":0,"26617":1476,"26618":0,"26619":-1,"26620":-1,"26621":-1,"26622":1304,"26623":-1,"26624":-1,"26625":0,"26626":-1,"26627":0,"26628":0,"26629":0,"26630":-1,"26631":0,"26632":0,"26633":1459,"26634":188,"26635":0,"26636":0,"26637":0,"26638":-1,"26639":0,"26640":-1,"26641":-1,"26642":481,"26643":0,"26644":312,"26645":384,"26646":0,"26647":-1,"26648":1437,"26649":-1,"26650":122,"26651":0,"26652":0,"26653":-1,"26654":1562,"26655":0,"26656":0,"26657":-1,"26658":0,"26659":0,"26660":-1,"26661":-1,"26662":-1,"26663":0,"26664":0,"26665":0,"26666":0,"26667":-1,"26668":0,"26669":-1,"26670":0,"26671":0,"26672":-1,"26673":-1,"26674":169,"26675":-1,"26676":0,"26677":0,"26678":1304,"26679":-1,"26680":0,"26681":0,"26682":0,"26683":224,"26684":302,"26685":0,"26686":23,"26687":161,"26688":1578,"26689":0,"26690":0,"26691":0,"26692":0,"26693":0,"26694":0,"26695":0,"26696":0,"26697":17,"26698":0,"26699":-1,"26700":295,"26701":1540,"26702":0,"26703":0,"26704":-1,"26705":0,"26706":1458,"26707":0,"26708":341,"26709":0,"26710":0,"26711":1298,"26712":-1,"26713":0,"26714":4,"26715":-1,"26716":0,"26717":1410,"26718":362,"26719":0,"26720":-1,"26721":0,"26722":1494,"26723":0,"26724":0,"26725":0,"26726":-1,"26727":0,"26728":1546,"26729":0,"26730":0,"26731":0,"26732":-1,"26733":354,"26734":254,"26735":-1,"26736":-1,"26737":-1,"26738":0,"26739":150,"26740":-1,"26741":0,"26742":-1,"26743":-1,"26744":0,"26745":0,"26746":-1,"26747":-1,"26748":182,"26749":282,"26750":44,"26751":-1,"26752":0,"26753":-1,"26754":0,"26755":17,"26756":160,"26757":-1,"26758":0,"26759":180,"26760":-1,"26761":-1,"26762":225,"26763":-1,"26764":190,"26765":-1,"26766":-1,"26767":-1,"26768":0,"26769":213,"26770":-1,"26771":0,"26772":0,"26773":314,"26774":0,"26775":-1,"26776":38,"26777":0,"26778":-1,"26779":-1,"26780":0,"26781":1410,"26782":1409,"26783":-1,"26784":1323,"26785":0,"26786":0,"26787":254,"26788":1510,"26789":-1,"26790":-1,"26791":1471,"26792":0,"26793":-1,"26794":0,"26795":348,"26796":0,"26797":-1,"26798":-1,"26799":0,"26800":0,"26801":0,"26802":360,"26803":0,"26804":-1,"26805":1406,"26806":0,"26807":-1,"26808":0,"26809":-1,"26810":74,"26811":-1,"26812":0,"26813":-1,"26814":0,"26815":0,"26816":-1,"26817":1477,"26818":-1,"26819":-1,"26820":-1,"26821":161,"26822":1420,"26823":0,"26824":0,"26825":265,"26826":0,"26827":1396,"26828":234,"26829":0,"26830":-1,"26831":-1,"26832":0,"26833":-1,"26834":0,"26835":0,"26836":0,"26837":0,"26838":-1,"26839":1435,"26840":0,"26841":0,"26842":133,"26843":0,"26844":255,"26845":0,"26846":0,"26847":0,"26848":0,"26849":0,"26850":-1,"26851":0,"26852":0,"26853":0,"26854":0,"26855":0,"26856":-1,"26857":-1,"26858":-1,"26859":0,"26860":140,"26861":0,"26862":-1,"26863":51,"26864":155,"26865":-1,"26866":-1,"26867":1371,"26868":1341,"26869":0,"26870":-1,"26871":1492,"26872":-1,"26873":150,"26874":-1,"26875":1304,"26876":67,"26877":196,"26878":-1,"26879":0,"26880":0,"26881":-1,"26882":1357,"26883":0,"26884":0,"26885":0,"26886":-1,"26887":0,"26888":-1,"26889":0,"26890":-1,"26891":238,"26892":370,"26893":0,"26894":0,"26895":0,"26896":0,"26897":384,"26898":97,"26899":1531,"26900":0,"26901":-1,"26902":-1,"26903":-1,"26904":0,"26905":0,"26906":-1,"26907":0,"26908":0,"26909":0,"26910":1308,"26911":288,"26912":0,"26913":-1,"26914":0,"26915":-1,"26916":0,"26917":0,"26918":0,"26919":0,"26920":1473,"26921":1518,"26922":-1,"26923":-1,"26924":0,"26925":-1,"26926":-1,"26927":-1,"26928":1391,"26929":51,"26930":-1,"26931":0,"26932":1452,"26933":1470,"26934":0,"26935":-1,"26936":0,"26937":-1,"26938":0,"26939":1342,"26940":-1,"26941":-1,"26942":0,"26943":1411,"26944":-1,"26945":0,"26946":-1,"26947":0,"26948":0,"26949":0,"26950":0,"26951":299,"26952":-1,"26953":-1,"26954":0,"26955":-1,"26956":0,"26957":1396,"26958":0,"26959":7,"26960":0,"26961":0,"26962":0,"26963":0,"26964":-1,"26965":0,"26966":-1,"26967":0,"26968":0,"26969":0,"26970":0,"26971":1430,"26972":44,"26973":0,"26974":0,"26975":0,"26976":-1,"26977":157,"26978":163,"26979":0,"26980":-1,"26981":0,"26982":-1,"26983":-1,"26984":0,"26985":-1,"26986":0,"26987":0,"26988":0,"26989":0,"26990":0,"26991":220,"26992":88,"26993":-1,"26994":-1,"26995":-1,"26996":1424,"26997":-1,"26998":0,"26999":0,"27000":0,"27001":27,"27002":0,"27003":-1,"27004":0,"27005":-1,"27006":0,"27007":-1,"27008":-1,"27009":-1,"27010":-1,"27011":-1,"27012":0,"27013":0,"27014":-1,"27015":-1,"27016":302,"27017":0,"27018":368,"27019":0,"27020":56,"27021":0,"27022":0,"27023":0,"27024":-1,"27025":-1,"27026":238,"27027":-1,"27028":0,"27029":1539,"27030":1366,"27031":0,"27032":0,"27033":-1,"27034":0,"27035":-1,"27036":-1,"27037":220,"27038":0,"27039":-1,"27040":0,"27041":0,"27042":1563,"27043":-1,"27044":111,"27045":1330,"27046":0,"27047":-1,"27048":-1,"27049":-1,"27050":0,"27051":268,"27052":-1,"27053":0,"27054":0,"27055":0,"27056":330,"27057":-1,"27058":0,"27059":1393,"27060":0,"27061":0,"27062":1430,"27063":0,"27064":244,"27065":-1,"27066":1417,"27067":0,"27068":0,"27069":-1,"27070":0,"27071":1320,"27072":0,"27073":0,"27074":-1,"27075":0,"27076":0,"27077":-1,"27078":-1,"27079":-1,"27080":3,"27081":1497,"27082":-1,"27083":-1,"27084":1319,"27085":0,"27086":-1,"27087":0,"27088":0,"27089":279,"27090":0,"27091":0,"27092":0,"27093":0,"27094":-1,"27095":28,"27096":-1,"27097":-1,"27098":1453,"27099":0,"27100":0,"27101":0,"27102":-1,"27103":-1,"27104":-1,"27105":-1,"27106":-1,"27107":0,"27108":162,"27109":163,"27110":0,"27111":-1,"27112":0,"27113":0,"27114":-1,"27115":-1,"27116":1490,"27117":306,"27118":384,"27119":1508,"27120":0,"27121":-1,"27122":-1,"27123":364,"27124":-1,"27125":0,"27126":-1,"27127":-1,"27128":1540,"27129":0,"27130":-1,"27131":0,"27132":0,"27133":0,"27134":1396,"27135":0,"27136":0,"27137":197,"27138":0,"27139":1421,"27140":0,"27141":0,"27142":1496,"27143":-1,"27144":0,"27145":0,"27146":0,"27147":-1,"27148":0,"27149":0,"27150":1328,"27151":0,"27152":-1,"27153":-1,"27154":360,"27155":0,"27156":1383,"27157":1337,"27158":-1,"27159":1410,"27160":-1,"27161":0,"27162":-1,"27163":0,"27164":0,"27165":0,"27166":179,"27167":-1,"27168":-1,"27169":-1,"27170":0,"27171":-1,"27172":-1,"27173":0,"27174":0,"27175":0,"27176":0,"27177":0,"27178":0,"27179":0,"27180":0,"27181":0,"27182":137,"27183":0,"27184":330,"27185":0,"27186":0,"27187":0,"27188":87,"27189":0,"27190":1390,"27191":369,"27192":-1,"27193":0,"27194":0,"27195":0,"27196":0,"27197":0,"27198":0,"27199":-1,"27200":-1,"27201":0,"27202":127,"27203":-1,"27204":1439,"27205":-1,"27206":0,"27207":-1,"27208":-1,"27209":-1,"27210":1435,"27211":0,"27212":-1,"27213":0,"27214":0,"27215":287,"27216":0,"27217":0,"27218":0,"27219":0,"27220":0,"27221":0,"27222":287,"27223":-1,"27224":0,"27225":102,"27226":1583,"27227":-1,"27228":0,"27229":-1,"27230":195,"27231":0,"27232":0,"27233":0,"27234":-1,"27235":0,"27236":0,"27237":0,"27238":-1,"27239":1370,"27240":364,"27241":0,"27242":1444,"27243":244,"27244":0,"27245":0,"27246":-1,"27247":-1,"27248":1346,"27249":-1,"27250":1416,"27251":0,"27252":1313,"27253":0,"27254":0,"27255":1401,"27256":0,"27257":0,"27258":-1,"27259":1540,"27260":0,"27261":-1,"27262":0,"27263":1499,"27264":-1,"27265":1314,"27266":148,"27267":-1,"27268":0,"27269":140,"27270":0,"27271":24,"27272":0,"27273":0,"27274":305,"27275":240,"27276":0,"27277":228,"27278":1559,"27279":112,"27280":0,"27281":0,"27282":282,"27283":21,"27284":1308,"27285":0,"27286":0,"27287":0,"27288":-1,"27289":0,"27290":186,"27291":0,"27292":0,"27293":72,"27294":1561,"27295":0,"27296":0,"27297":1497,"27298":0,"27299":1572,"27300":1466,"27301":102,"27302":1538,"27303":0,"27304":-1,"27305":-1,"27306":-1,"27307":0,"27308":0,"27309":-1,"27310":-1,"27311":0,"27312":0,"27313":328,"27314":0,"27315":-1,"27316":162,"27317":0,"27318":4,"27319":0,"27320":1416,"27321":-1,"27322":0,"27323":0,"27324":0,"27325":1420,"27326":0,"27327":0,"27328":0,"27329":0,"27330":0,"27331":0,"27332":0,"27333":1425,"27334":-1,"27335":-1,"27336":125,"27337":0,"27338":0,"27339":0,"27340":0,"27341":301,"27342":270,"27343":0,"27344":0,"27345":-1,"27346":-1,"27347":0,"27348":0,"27349":0,"27350":0,"27351":0,"27352":1559,"27353":0,"27354":1350,"27355":0,"27356":-1,"27357":1454,"27358":0,"27359":1382,"27360":1504,"27361":-1,"27362":-1,"27363":-1,"27364":1402,"27365":1382,"27366":-1,"27367":0,"27368":0,"27369":21,"27370":0,"27371":-1,"27372":0,"27373":0,"27374":0,"27375":1339,"27376":-1,"27377":-1,"27378":-1,"27379":-1,"27380":322,"27381":271,"27382":1552,"27383":-1,"27384":0,"27385":0,"27386":1398,"27387":122,"27388":0,"27389":1434,"27390":1434,"27391":0,"27392":1371,"27393":-1,"27394":1539,"27395":70,"27396":157,"27397":75,"27398":1553,"27399":51,"27400":-1,"27401":262,"27402":0,"27403":0,"27404":-1,"27405":-1,"27406":1577,"27407":1315,"27408":1447,"27409":1,"27410":0,"27411":1498,"27412":-1,"27413":0,"27414":-1,"27415":-1,"27416":1544,"27417":1301,"27418":0,"27419":0,"27420":-1,"27421":-1,"27422":0,"27423":215,"27424":163,"27425":0,"27426":0,"27427":0,"27428":107,"27429":0,"27430":-1,"27431":0,"27432":0,"27433":-1,"27434":142,"27435":0,"27436":0,"27437":-1,"27438":-1,"27439":83,"27440":278,"27441":1393,"27442":-1,"27443":1511,"27444":-1,"27445":-1,"27446":-1,"27447":-1,"27448":384,"27449":0,"27450":-1,"27451":-1,"27452":-1,"27453":246,"27454":0,"27455":-1,"27456":1514,"27457":-1,"27458":0,"27459":-1,"27460":0,"27461":0,"27462":0,"27463":-1,"27464":1543,"27465":-1,"27466":1434,"27467":-1,"27468":0,"27469":63,"27470":308,"27471":360,"27472":-1,"27473":1318,"27474":0,"27475":-1,"27476":0,"27477":-1,"27478":0,"27479":0,"27480":0,"27481":0,"27482":365,"27483":1386,"27484":0,"27485":-1,"27486":0,"27487":0,"27488":1521,"27489":0,"27490":0,"27491":-1,"27492":-1,"27493":0,"27494":0,"27495":326,"27496":-1,"27497":0,"27498":-1,"27499":0,"27500":-1,"27501":0,"27502":-1,"27503":-1,"27504":-1,"27505":0,"27506":0,"27507":0,"27508":0,"27509":0,"27510":1366,"27511":-1,"27512":-1,"27513":0,"27514":-1,"27515":0,"27516":-1,"27517":-1,"27518":1531,"27519":-1,"27520":15,"27521":0,"27522":-1,"27523":328,"27524":1565,"27525":-1,"27526":1373,"27527":-1,"27528":0,"27529":1394,"27530":0,"27531":0,"27532":-1,"27533":1404,"27534":1434,"27535":-1,"27536":0,"27537":1365,"27538":0,"27539":1318,"27540":385,"27541":-1,"27542":329,"27543":1574,"27544":1547,"27545":0,"27546":1498,"27547":348,"27548":-1,"27549":0,"27550":-1,"27551":-1,"27552":0,"27553":0,"27554":-1,"27555":0,"27556":0,"27557":1561,"27558":0,"27559":-1,"27560":53,"27561":86,"27562":0,"27563":1408,"27564":1321,"27565":0,"27566":0,"27567":-1,"27568":0,"27569":0,"27570":385,"27571":0,"27572":0,"27573":0,"27574":322,"27575":-1,"27576":0,"27577":1570,"27578":-1,"27579":0,"27580":1355,"27581":0,"27582":0,"27583":-1,"27584":0,"27585":-1,"27586":0,"27587":1495,"27588":0,"27589":-1,"27590":0,"27591":-1,"27592":1484,"27593":71,"27594":0,"27595":0,"27596":-1,"27597":0,"27598":1446,"27599":0,"27600":-1,"27601":0,"27602":0,"27603":0,"27604":0,"27605":-1,"27606":150,"27607":0,"27608":146,"27609":0,"27610":1368,"27611":1432,"27612":-1,"27613":0,"27614":-1,"27615":-1,"27616":-1,"27617":-1,"27618":1407,"27619":0,"27620":-1,"27621":0,"27622":35,"27623":-1,"27624":0,"27625":0,"27626":354,"27627":0,"27628":-1,"27629":0,"27630":201,"27631":0,"27632":-1,"27633":1492,"27634":1388,"27635":-1,"27636":0,"27637":1449,"27638":0,"27639":0,"27640":1341,"27641":0,"27642":176,"27643":105,"27644":-1,"27645":0,"27646":0,"27647":-1,"27648":384,"27649":-1,"27650":-1,"27651":-1,"27652":0,"27653":246,"27654":1425,"27655":0,"27656":22,"27657":0,"27658":0,"27659":-1,"27660":167,"27661":1495,"27662":0,"27663":-1,"27664":98,"27665":-1,"27666":0,"27667":18,"27668":0,"27669":-1,"27670":1444,"27671":-1,"27672":124,"27673":293,"27674":0,"27675":0,"27676":-1,"27677":237,"27678":-1,"27679":0,"27680":0,"27681":-1,"27682":0,"27683":1550,"27684":0,"27685":-1,"27686":1567,"27687":-1,"27688":0,"27689":-1,"27690":-1,"27691":-1,"27692":1342,"27693":1323,"27694":0,"27695":0,"27696":0,"27697":0,"27698":312,"27699":0,"27700":0,"27701":127,"27702":1347,"27703":332,"27704":-1,"27705":-1,"27706":0,"27707":-1,"27708":-1,"27709":261,"27710":1467,"27711":-1,"27712":0,"27713":0,"27714":0,"27715":0,"27716":0,"27717":1374,"27718":-1,"27719":0,"27720":1341,"27721":-1,"27722":0,"27723":-1,"27724":0,"27725":20,"27726":298,"27727":0,"27728":86,"27729":0,"27730":0,"27731":0,"27732":1358,"27733":0,"27734":0,"27735":1502,"27736":-1,"27737":-1,"27738":106,"27739":1448,"27740":1533,"27741":0,"27742":1575,"27743":0,"27744":0,"27745":0,"27746":0,"27747":0,"27748":0,"27749":1383,"27750":0,"27751":0,"27752":0,"27753":1389,"27754":1327,"27755":0,"27756":0,"27757":1539,"27758":1461,"27759":1505,"27760":-1,"27761":75,"27762":0,"27763":473,"27764":1478,"27765":0,"27766":289,"27767":-1,"27768":0,"27769":-1,"27770":0,"27771":0,"27772":1435,"27773":267,"27774":0,"27775":-1,"27776":-1,"27777":33,"27778":-1,"27779":0,"27780":0,"27781":323,"27782":0,"27783":56,"27784":-1,"27785":0,"27786":-1,"27787":0,"27788":0,"27789":-1,"27790":0,"27791":0,"27792":1543,"27793":-1,"27794":1338,"27795":0,"27796":81,"27797":-1,"27798":0,"27799":170,"27800":-1,"27801":286,"27802":0,"27803":1386,"27804":0,"27805":1361,"27806":0,"27807":-1,"27808":0,"27809":1578,"27810":0,"27811":-1,"27812":0,"27813":0,"27814":1583,"27815":-1,"27816":0,"27817":-1,"27818":0,"27819":-1,"27820":1414,"27821":0,"27822":-1,"27823":0,"27824":0,"27825":-1,"27826":1430,"27827":0,"27828":-1,"27829":-1,"27830":0,"27831":0,"27832":-1,"27833":-1,"27834":0,"27835":0,"27836":123,"27837":0,"27838":-1,"27839":-1,"27840":-1,"27841":1571,"27842":0,"27843":0,"27844":0,"27845":1305,"27846":0,"27847":0,"27848":0,"27849":-1,"27850":-1,"27851":-1,"27852":222,"27853":0,"27854":0,"27855":200,"27856":317,"27857":0,"27858":0,"27859":-1,"27860":0,"27861":0,"27862":-1,"27863":-1,"27864":-1,"27865":0,"27866":144,"27867":0,"27868":170,"27869":1483,"27870":1526,"27871":1445,"27872":0,"27873":0,"27874":1334,"27875":-1,"27876":-1,"27877":0,"27878":1416,"27879":303,"27880":0,"27881":1392,"27882":-1,"27883":188,"27884":0,"27885":0,"27886":-1,"27887":331,"27888":262,"27889":0,"27890":0,"27891":-1,"27892":-1,"27893":0,"27894":0,"27895":0,"27896":0,"27897":-1,"27898":0,"27899":1325,"27900":0,"27901":1553,"27902":0,"27903":1559,"27904":1326,"27905":0,"27906":1336,"27907":-1,"27908":0,"27909":0,"27910":-1,"27911":-1,"27912":-1,"27913":-1,"27914":-1,"27915":-1,"27916":0,"27917":1369,"27918":-1,"27919":1401,"27920":360,"27921":0,"27922":0,"27923":0,"27924":0,"27925":0,"27926":-1,"27927":0,"27928":371,"27929":1322,"27930":-1,"27931":0,"27932":0,"27933":-1,"27934":1471,"27935":0,"27936":-1,"27937":0,"27938":190,"27939":0,"27940":0,"27941":79,"27942":21,"27943":0,"27944":0,"27945":1553,"27946":-1,"27947":0,"27948":-1,"27949":1457,"27950":161,"27951":-1,"27952":-1,"27953":0,"27954":0,"27955":0,"27956":0,"27957":-1,"27958":0,"27959":1404,"27960":1539,"27961":-1,"27962":0,"27963":1307,"27964":0,"27965":0,"27966":-1,"27967":-1,"27968":-1,"27969":-1,"27970":0,"27971":0,"27972":-1,"27973":1384,"27974":257,"27975":0,"27976":1557,"27977":1443,"27978":0,"27979":0,"27980":0,"27981":0,"27982":0,"27983":147,"27984":273,"27985":-1,"27986":1439,"27987":0,"27988":-1,"27989":0,"27990":0,"27991":1542,"27992":-1,"27993":0,"27994":0,"27995":0,"27996":0,"27997":0,"27998":-1,"27999":0,"28000":0,"28001":0,"28002":-1,"28003":0,"28004":0,"28005":0,"28006":0,"28007":-1,"28008":-1,"28009":0,"28010":0,"28011":0,"28012":0,"28013":-1,"28014":1522,"28015":-1,"28016":0,"28017":0,"28018":-1,"28019":0,"28020":-1,"28021":-1,"28022":-1,"28023":0,"28024":0,"28025":0,"28026":-1,"28027":67,"28028":-1,"28029":-1,"28030":0,"28031":0,"28032":0,"28033":0,"28034":-1,"28035":0,"28036":0,"28037":-1,"28038":0,"28039":0,"28040":37,"28041":-1,"28042":0,"28043":0,"28044":0,"28045":0,"28046":0,"28047":1463,"28048":-1,"28049":235,"28050":0,"28051":168,"28052":-1,"28053":-1,"28054":0,"28055":224,"28056":0,"28057":265,"28058":0,"28059":0,"28060":0,"28061":0,"28062":-1,"28063":224,"28064":0,"28065":41,"28066":-1,"28067":0,"28068":-1,"28069":-1,"28070":-1,"28071":0,"28072":-1,"28073":0,"28074":0,"28075":-1,"28076":0,"28077":-1,"28078":0,"28079":0,"28080":-1,"28081":1412,"28082":0,"28083":0,"28084":0,"28085":0,"28086":1381,"28087":174,"28088":-1,"28089":0,"28090":0,"28091":0,"28092":0,"28093":-1,"28094":1456,"28095":-1,"28096":0,"28097":-1,"28098":369,"28099":0,"28100":-1,"28101":1334,"28102":1331,"28103":0,"28104":0,"28105":-1,"28106":-1,"28107":0,"28108":1426,"28109":350,"28110":-1,"28111":-1,"28112":-1,"28113":0,"28114":0,"28115":-1,"28116":0,"28117":0,"28118":0,"28119":-1,"28120":-1,"28121":-1,"28122":0,"28123":0,"28124":0,"28125":-1,"28126":-1,"28127":1553,"28128":-1,"28129":74,"28130":160,"28131":71,"28132":0,"28133":0,"28134":1515,"28135":-1,"28136":-1,"28137":0,"28138":-1,"28139":-1,"28140":222,"28141":0,"28142":-1,"28143":0,"28144":381,"28145":-1,"28146":0,"28147":-1,"28148":0,"28149":328,"28150":0,"28151":-1,"28152":-1,"28153":-1,"28154":214,"28155":0,"28156":-1,"28157":0,"28158":147,"28159":291,"28160":-1,"28161":0,"28162":0,"28163":1303,"28164":1491,"28165":1536,"28166":61,"28167":-1,"28168":0,"28169":325,"28170":0,"28171":0,"28172":12,"28173":1341,"28174":-1,"28175":-1,"28176":0,"28177":0,"28178":-1,"28179":-1,"28180":-1,"28181":-1,"28182":1489,"28183":0,"28184":-1,"28185":0,"28186":0,"28187":-1,"28188":-1,"28189":0,"28190":-1,"28191":1421,"28192":-1,"28193":0,"28194":0,"28195":-1,"28196":-1,"28197":-1,"28198":1330,"28199":0,"28200":0,"28201":-1,"28202":-1,"28203":0,"28204":45,"28205":-1,"28206":0,"28207":0,"28208":0,"28209":-1,"28210":-1,"28211":354,"28212":200,"28213":-1,"28214":-1,"28215":1399,"28216":1375,"28217":-1,"28218":0,"28219":0,"28220":1528,"28221":0,"28222":0,"28223":7,"28224":-1,"28225":1410,"28226":0,"28227":-1,"28228":-1,"28229":1533,"28230":0,"28231":0,"28232":-1,"28233":0,"28234":0,"28235":1316,"28236":160,"28237":-1,"28238":1546,"28239":0,"28240":1532,"28241":-1,"28242":-1,"28243":180,"28244":1363,"28245":-1,"28246":0,"28247":-1,"28248":232,"28249":0,"28250":0,"28251":-1,"28252":54,"28253":-1,"28254":1318,"28255":0,"28256":0,"28257":0,"28258":-1,"28259":0,"28260":-1,"28261":0,"28262":369,"28263":-1,"28264":-1,"28265":354,"28266":0,"28267":-1,"28268":-1,"28269":40,"28270":1430,"28271":1563,"28272":1493,"28273":-1,"28274":0,"28275":-1,"28276":0,"28277":1454,"28278":0,"28279":12,"28280":-1,"28281":-1,"28282":0,"28283":78,"28284":0,"28285":1392,"28286":-1,"28287":-1,"28288":203,"28289":-1,"28290":0,"28291":-1,"28292":0,"28293":1562,"28294":0,"28295":-1,"28296":-1,"28297":-1,"28298":-1,"28299":0,"28300":297,"28301":-1,"28302":383,"28303":1534,"28304":-1,"28305":1549,"28306":0,"28307":0,"28308":0,"28309":0,"28310":-1,"28311":-1,"28312":-1,"28313":0,"28314":312,"28315":1399,"28316":1404,"28317":0,"28318":0,"28319":0,"28320":0,"28321":72,"28322":0,"28323":-1,"28324":160,"28325":0,"28326":-1,"28327":0,"28328":0,"28329":76,"28330":-1,"28331":-1,"28332":0,"28333":0,"28334":-1,"28335":1453,"28336":325,"28337":0,"28338":1407,"28339":0,"28340":0,"28341":0,"28342":-1,"28343":0,"28344":1389,"28345":-1,"28346":0,"28347":-1,"28348":1513,"28349":-1,"28350":256,"28351":11,"28352":243,"28353":0,"28354":244,"28355":0,"28356":-1,"28357":-1,"28358":310,"28359":0,"28360":72,"28361":0,"28362":-1,"28363":0,"28364":1361,"28365":0,"28366":1414,"28367":0,"28368":-1,"28369":1583,"28370":1355,"28371":181,"28372":1331,"28373":1494,"28374":-1,"28375":0,"28376":-1,"28377":383,"28378":0,"28379":268,"28380":1306,"28381":0,"28382":0,"28383":1437,"28384":-1,"28385":0,"28386":0,"28387":0,"28388":0,"28389":0,"28390":1304,"28391":0,"28392":131,"28393":-1,"28394":0,"28395":259,"28396":0,"28397":0,"28398":0,"28399":1309,"28400":1434,"28401":-1,"28402":0,"28403":0,"28404":-1,"28405":-1,"28406":1396,"28407":0,"28408":0,"28409":0,"28410":244,"28411":-1,"28412":0,"28413":0,"28414":0,"28415":0,"28416":149,"28417":0,"28418":0,"28419":0,"28420":-1,"28421":265,"28422":-1,"28423":0,"28424":1538,"28425":-1,"28426":1450,"28427":0,"28428":1316,"28429":-1,"28430":284,"28431":-1,"28432":1316,"28433":0,"28434":-1,"28435":271,"28436":-1,"28437":-1,"28438":0,"28439":-1,"28440":0,"28441":-1,"28442":0,"28443":1390,"28444":-1,"28445":-1,"28446":-1,"28447":217,"28448":1302,"28449":0,"28450":313,"28451":-1,"28452":0,"28453":0,"28454":-1,"28455":-1,"28456":0,"28457":0,"28458":-1,"28459":-1,"28460":0,"28461":0,"28462":0,"28463":1460,"28464":0,"28465":0,"28466":0,"28467":0,"28468":42,"28469":1393,"28470":0,"28471":-1,"28472":0,"28473":1308,"28474":0,"28475":-1,"28476":0,"28477":132,"28478":198,"28479":-1,"28480":0,"28481":-1,"28482":0,"28483":-1,"28484":0,"28485":111,"28486":127,"28487":0,"28488":0,"28489":0,"28490":0,"28491":0,"28492":-1,"28493":1405,"28494":-1,"28495":0,"28496":224,"28497":0,"28498":0,"28499":1372,"28500":1476,"28501":1380,"28502":1523,"28503":0,"28504":-1,"28505":-1,"28506":222,"28507":0,"28508":-1,"28509":0,"28510":234,"28511":0,"28512":-1,"28513":0,"28514":-1,"28515":0,"28516":0,"28517":1567,"28518":0,"28519":-1,"28520":1531,"28521":234,"28522":0,"28523":1359,"28524":0,"28525":-1,"28526":0,"28527":1476,"28528":0,"28529":0,"28530":62,"28531":0,"28532":0,"28533":0,"28534":-1,"28535":1517,"28536":0,"28537":-1,"28538":0,"28539":-1,"28540":346,"28541":0,"28542":220,"28543":308,"28544":1393,"28545":1530,"28546":0,"28547":-1,"28548":1545,"28549":0,"28550":-1,"28551":-1,"28552":0,"28553":0,"28554":21,"28555":-1,"28556":0,"28557":206,"28558":0,"28559":1530,"28560":0,"28561":1460,"28562":0,"28563":0,"28564":78,"28565":0,"28566":0,"28567":17,"28568":-1,"28569":-1,"28570":0,"28571":0,"28572":-1,"28573":0,"28574":307,"28575":-1,"28576":0,"28577":1542,"28578":0,"28579":1494,"28580":0,"28581":0,"28582":-1,"28583":282,"28584":1585,"28585":0,"28586":0,"28587":0,"28588":-1,"28589":0,"28590":192,"28591":0,"28592":0,"28593":0,"28594":0,"28595":0,"28596":1512,"28597":1566,"28598":-1,"28599":1491,"28600":-1,"28601":-1,"28602":0,"28603":-1,"28604":0,"28605":-1,"28606":-1,"28607":-1,"28608":236,"28609":0,"28610":0,"28611":1421,"28612":329,"28613":0,"28614":1461,"28615":0,"28616":-1,"28617":-1,"28618":0,"28619":0,"28620":0,"28621":-1,"28622":0,"28623":0,"28624":-1,"28625":-1,"28626":-1,"28627":0,"28628":1432,"28629":-1,"28630":-1,"28631":-1,"28632":-1,"28633":7,"28634":0,"28635":273,"28636":-1,"28637":-1,"28638":137,"28639":1367,"28640":-1,"28641":-1,"28642":0,"28643":1391,"28644":-1,"28645":-1,"28646":-1,"28647":0,"28648":0,"28649":0,"28650":-1,"28651":0,"28652":257,"28653":0,"28654":0,"28655":97,"28656":1381,"28657":-1,"28658":0,"28659":-1,"28660":-1,"28661":0,"28662":1486,"28663":0,"28664":0,"28665":-1,"28666":0,"28667":-1,"28668":216,"28669":-1,"28670":-1,"28671":1327,"28672":0,"28673":0,"28674":0,"28675":1338,"28676":0,"28677":-1,"28678":-1,"28679":0,"28680":0,"28681":-1,"28682":-1,"28683":1429,"28684":-1,"28685":0,"28686":0,"28687":-1,"28688":0,"28689":0,"28690":0,"28691":1362,"28692":-1,"28693":0,"28694":-1,"28695":0,"28696":0,"28697":1458,"28698":0,"28699":0,"28700":0,"28701":0,"28702":0,"28703":6,"28704":0,"28705":-1,"28706":-1,"28707":-1,"28708":63,"28709":0,"28710":1346,"28711":0,"28712":92,"28713":55,"28714":0,"28715":301,"28716":0,"28717":-1,"28718":1501,"28719":0,"28720":0,"28721":-1,"28722":0,"28723":-1,"28724":25,"28725":-1,"28726":1458,"28727":0,"28728":-1,"28729":0,"28730":-1,"28731":0,"28732":0,"28733":0,"28734":-1,"28735":0,"28736":0,"28737":62,"28738":0,"28739":61,"28740":15,"28741":-1,"28742":0,"28743":66,"28744":0,"28745":0,"28746":1463,"28747":0,"28748":0,"28749":1538,"28750":-1,"28751":0,"28752":286,"28753":0,"28754":0,"28755":-1,"28756":0,"28757":-1,"28758":0,"28759":0,"28760":0,"28761":101,"28762":0,"28763":1552,"28764":129,"28765":0,"28766":-1,"28767":0,"28768":0,"28769":0,"28770":28,"28771":1400,"28772":208,"28773":0,"28774":-1,"28775":-1,"28776":0,"28777":-1,"28778":347,"28779":-1,"28780":199,"28781":-1,"28782":0,"28783":0,"28784":1409,"28785":1394,"28786":-1,"28787":-1,"28788":-1,"28789":1428,"28790":0,"28791":37,"28792":0,"28793":0,"28794":103,"28795":1415,"28796":1314,"28797":-1,"28798":-1,"28799":0,"28800":-1,"28801":0,"28802":1336,"28803":0,"28804":0,"28805":-1,"28806":1337,"28807":-1,"28808":89,"28809":119,"28810":134,"28811":-1,"28812":-1,"28813":0,"28814":0,"28815":1442,"28816":0,"28817":0,"28818":0,"28819":-1,"28820":121,"28821":-1,"28822":-1,"28823":0,"28824":-1,"28825":0,"28826":1534,"28827":0,"28828":0,"28829":44,"28830":134,"28831":1579,"28832":-1,"28833":-1,"28834":1581,"28835":0,"28836":-1,"28837":0,"28838":-1,"28839":1551,"28840":81,"28841":-1,"28842":57,"28843":291,"28844":0,"28845":279,"28846":-1,"28847":0,"28848":-1,"28849":1520,"28850":0,"28851":0,"28852":0,"28853":0,"28854":0,"28855":-1,"28856":-1,"28857":-1,"28858":1368,"28859":0,"28860":-1,"28861":0,"28862":0,"28863":-1,"28864":0,"28865":127,"28866":241,"28867":317,"28868":1520,"28869":-1,"28870":0,"28871":1413,"28872":0,"28873":0,"28874":-1,"28875":0,"28876":1522,"28877":0,"28878":-1,"28879":166,"28880":-1,"28881":336,"28882":73,"28883":0,"28884":-1,"28885":0,"28886":1389,"28887":0,"28888":1399,"28889":1348,"28890":-1,"28891":30,"28892":1562,"28893":1467,"28894":0,"28895":0,"28896":0,"28897":0,"28898":0,"28899":-1,"28900":1492,"28901":0,"28902":0,"28903":-1,"28904":0,"28905":239,"28906":0,"28907":240,"28908":-1,"28909":230,"28910":53,"28911":-1,"28912":-1,"28913":1576,"28914":-1,"28915":0,"28916":0,"28917":0,"28918":0,"28919":0,"28920":0,"28921":1431,"28922":0,"28923":-1,"28924":0,"28925":0,"28926":0,"28927":1564,"28928":1478,"28929":0,"28930":0,"28931":0,"28932":1517,"28933":0,"28934":0,"28935":0,"28936":-1,"28937":0,"28938":0,"28939":0,"28940":0,"28941":-1,"28942":-1,"28943":236,"28944":-1,"28945":-1,"28946":30,"28947":1316,"28948":-1,"28949":0,"28950":-1,"28951":0,"28952":111,"28953":-1,"28954":0,"28955":0,"28956":-1,"28957":0,"28958":1309,"28959":0,"28960":-1,"28961":-1,"28962":0,"28963":-1,"28964":0,"28965":-1,"28966":383,"28967":1575,"28968":-1,"28969":0,"28970":5,"28971":0,"28972":0,"28973":0,"28974":1557,"28975":1445,"28976":0,"28977":-1,"28978":-1,"28979":180,"28980":0,"28981":-1,"28982":-1,"28983":-1,"28984":-1,"28985":0,"28986":1504,"28987":0,"28988":-1,"28989":299,"28990":-1,"28991":-1,"28992":1310,"28993":-1,"28994":304,"28995":0,"28996":1532,"28997":0,"28998":1310,"28999":-1,"29000":1575,"29001":1578,"29002":0,"29003":0,"29004":0,"29005":1334,"29006":-1,"29007":1437,"29008":-1,"29009":-1,"29010":-1,"29011":-1,"29012":-1,"29013":-1,"29014":179,"29015":0,"29016":0,"29017":339,"29018":0,"29019":-1,"29020":1533,"29021":0,"29022":0,"29023":-1,"29024":0,"29025":0,"29026":-1,"29027":0,"29028":160,"29029":-1,"29030":0,"29031":-1,"29032":0,"29033":-1,"29034":0,"29035":0,"29036":1343,"29037":0,"29038":0,"29039":0,"29040":1367,"29041":0,"29042":0,"29043":203,"29044":-1,"29045":-1,"29046":0,"29047":0,"29048":0,"29049":0,"29050":-1,"29051":0,"29052":1563,"29053":-1,"29054":0,"29055":1422,"29056":304,"29057":-1,"29058":-1,"29059":0,"29060":70,"29061":0,"29062":1522,"29063":1469,"29064":-1,"29065":1536,"29066":-1,"29067":0,"29068":0,"29069":0,"29070":-1,"29071":0,"29072":279,"29073":0,"29074":0,"29075":-1,"29076":0,"29077":206,"29078":0,"29079":0,"29080":0,"29081":-1,"29082":-1,"29083":0,"29084":0,"29085":1569,"29086":-1,"29087":48,"29088":0,"29089":0,"29090":-1,"29091":-1,"29092":122,"29093":13,"29094":342,"29095":0,"29096":-1,"29097":0,"29098":79,"29099":0,"29100":89,"29101":0,"29102":149,"29103":1417,"29104":0,"29105":1528,"29106":0,"29107":1367,"29108":0,"29109":173,"29110":0,"29111":0,"29112":-1,"29113":-1,"29114":1396,"29115":0,"29116":256,"29117":-1,"29118":0,"29119":-1,"29120":330,"29121":1483,"29122":0,"29123":-1,"29124":-1,"29125":0,"29126":103,"29127":-1,"29128":1494,"29129":0,"29130":0,"29131":0,"29132":0,"29133":317,"29134":1528,"29135":-1,"29136":0,"29137":0,"29138":1330,"29139":0,"29140":0,"29141":0,"29142":1463,"29143":0,"29144":0,"29145":2,"29146":0,"29147":0,"29148":-1,"29149":-1,"29150":0,"29151":-1,"29152":481,"29153":1568,"29154":1366,"29155":-1,"29156":-1,"29157":-1,"29158":0,"29159":336,"29160":0,"29161":0,"29162":0,"29163":0,"29164":0,"29165":65,"29166":0,"29167":0,"29168":1354,"29169":0,"29170":-1,"29171":1338,"29172":0,"29173":0,"29174":64,"29175":-1,"29176":0,"29177":1493,"29178":0,"29179":-1,"29180":1448,"29181":0,"29182":238,"29183":0,"29184":93,"29185":135,"29186":-1,"29187":61,"29188":-1,"29189":0,"29190":0,"29191":0,"29192":-1,"29193":-1,"29194":-1,"29195":0,"29196":-1,"29197":-1,"29198":0,"29199":161,"29200":-1,"29201":136,"29202":1541,"29203":1336,"29204":-1,"29205":0,"29206":0,"29207":-1,"29208":-1,"29209":0,"29210":-1,"29211":0,"29212":1312,"29213":1474,"29214":0,"29215":172,"29216":211,"29217":0,"29218":0,"29219":0,"29220":0,"29221":0,"29222":-1,"29223":-1,"29224":-1,"29225":-1,"29226":1394,"29227":-1,"29228":1328,"29229":19,"29230":0,"29231":0,"29232":0,"29233":0,"29234":-1,"29235":-1,"29236":-1,"29237":-1,"29238":-1,"29239":-1,"29240":1327,"29241":0,"29242":1540,"29243":-1,"29244":0,"29245":-1,"29246":1579,"29247":-1,"29248":0,"29249":0,"29250":-1,"29251":180,"29252":1565,"29253":0,"29254":1467,"29255":-1,"29256":281,"29257":1520,"29258":1299,"29259":-1,"29260":0,"29261":0,"29262":-1,"29263":308,"29264":0,"29265":0,"29266":-1,"29267":1580,"29268":0,"29269":0,"29270":0,"29271":-1,"29272":98,"29273":1479,"29274":-1,"29275":0,"29276":-1,"29277":-1,"29278":0,"29279":-1,"29280":0,"29281":-1,"29282":20,"29283":343,"29284":-1,"29285":-1,"29286":331,"29287":0,"29288":0,"29289":0,"29290":328,"29291":0,"29292":0,"29293":0,"29294":-1,"29295":246,"29296":124,"29297":1405,"29298":0,"29299":1319,"29300":-1,"29301":360,"29302":0,"29303":1341,"29304":98,"29305":-1,"29306":-1,"29307":-1,"29308":1338,"29309":1344,"29310":222,"29311":0,"29312":1328,"29313":1467,"29314":-1,"29315":0,"29316":-1,"29317":0,"29318":-1,"29319":1481,"29320":0,"29321":-1,"29322":-1,"29323":-1,"29324":0,"29325":375,"29326":-1,"29327":288,"29328":-1,"29329":1396,"29330":224,"29331":-1,"29332":-1,"29333":0,"29334":0,"29335":0,"29336":0,"29337":0,"29338":0,"29339":-1,"29340":1460,"29341":307,"29342":1341,"29343":-1,"29344":0,"29345":-1,"29346":-1,"29347":0,"29348":352,"29349":0,"29350":1528,"29351":-1,"29352":0,"29353":0,"29354":271,"29355":1472,"29356":1393,"29357":0,"29358":0,"29359":-1,"29360":159,"29361":0,"29362":0,"29363":0,"29364":0,"29365":0,"29366":0,"29367":1374,"29368":0,"29369":124,"29370":0,"29371":-1,"29372":0,"29373":0,"29374":-1,"29375":0,"29376":0,"29377":0,"29378":0,"29379":1464,"29380":0,"29381":220,"29382":380,"29383":0,"29384":0,"29385":-1,"29386":-1,"29387":0,"29388":37,"29389":0,"29390":-1,"29391":1414,"29392":-1,"29393":-1,"29394":-1,"29395":0,"29396":0,"29397":0,"29398":0,"29399":-1,"29400":0,"29401":97,"29402":0,"29403":0,"29404":261,"29405":0,"29406":1521,"29407":-1,"29408":-1,"29409":-1,"29410":0,"29411":0,"29412":-1,"29413":0,"29414":0,"29415":-1,"29416":0,"29417":0,"29418":-1,"29419":0,"29420":-1,"29421":0,"29422":0,"29423":45,"29424":-1,"29425":1490,"29426":322,"29427":1558,"29428":1338,"29429":-1,"29430":0,"29431":331,"29432":0,"29433":0,"29434":0,"29435":-1,"29436":-1,"29437":-1,"29438":0,"29439":-1,"29440":0,"29441":1552,"29442":0,"29443":1395,"29444":-1,"29445":-1,"29446":0,"29447":0,"29448":1482,"29449":0,"29450":0,"29451":-1,"29452":-1,"29453":0,"29454":-1,"29455":198,"29456":-1,"29457":0,"29458":0,"29459":-1,"29460":0,"29461":0,"29462":-1,"29463":0,"29464":-1,"29465":0,"29466":306,"29467":0,"29468":-1,"29469":1461,"29470":1361,"29471":0,"29472":-1,"29473":0,"29474":1491,"29475":0,"29476":0,"29477":2,"29478":1378,"29479":0,"29480":-1,"29481":-1,"29482":25,"29483":-1,"29484":0,"29485":1463,"29486":-1,"29487":-1,"29488":1551,"29489":0,"29490":0,"29491":43,"29492":-1,"29493":-1,"29494":-1,"29495":0,"29496":-1,"29497":-1,"29498":0,"29499":109,"29500":0,"29501":0,"29502":1386,"29503":0,"29504":-1,"29505":-1,"29506":-1,"29507":-1,"29508":265,"29509":0,"29510":-1,"29511":0,"29512":0,"29513":-1,"29514":1427,"29515":0,"29516":199,"29517":0,"29518":-1,"29519":-1,"29520":-1,"29521":-1,"29522":1305,"29523":1558,"29524":-1,"29525":-1,"29526":0,"29527":0,"29528":1350,"29529":0,"29530":-1,"29531":-1,"29532":0,"29533":0,"29534":0,"29535":0,"29536":-1,"29537":0,"29538":0,"29539":10,"29540":0,"29541":-1,"29542":1306,"29543":0,"29544":-1,"29545":0,"29546":48,"29547":1365,"29548":0,"29549":-1,"29550":-1,"29551":0,"29552":-1,"29553":1382,"29554":380,"29555":1359,"29556":-1,"29557":0,"29558":1313,"29559":-1,"29560":-1,"29561":0,"29562":166,"29563":-1,"29564":1463,"29565":-1,"29566":0,"29567":1574,"29568":1353,"29569":0,"29570":0,"29571":195,"29572":-1,"29573":0,"29574":0,"29575":160,"29576":48,"29577":0,"29578":-1,"29579":71,"29580":0,"29581":0,"29582":0,"29583":0,"29584":0,"29585":0,"29586":0,"29587":0,"29588":0,"29589":0,"29590":0,"29591":253,"29592":-1,"29593":-1,"29594":0,"29595":-1,"29596":-1,"29597":0,"29598":0,"29599":0,"29600":0,"29601":0,"29602":0,"29603":-1,"29604":0,"29605":0,"29606":0,"29607":0,"29608":0,"29609":-1,"29610":0,"29611":1446,"29612":-1,"29613":-1,"29614":168,"29615":0,"29616":268,"29617":-1,"29618":0,"29619":0,"29620":-1,"29621":0,"29622":0,"29623":0,"29624":0,"29625":0,"29626":0,"29627":162,"29628":0,"29629":-1,"29630":0,"29631":27,"29632":0,"29633":0,"29634":0,"29635":-1,"29636":0,"29637":9,"29638":0,"29639":0,"29640":0,"29641":1533,"29642":-1,"29643":-1,"29644":-1,"29645":-1,"29646":1477,"29647":0,"29648":0,"29649":0,"29650":-1,"29651":-1,"29652":378,"29653":240,"29654":149,"29655":176,"29656":0,"29657":1511,"29658":337,"29659":1337,"29660":-1,"29661":28,"29662":1300,"29663":253,"29664":-1,"29665":168,"29666":1571,"29667":0,"29668":-1,"29669":1308,"29670":0,"29671":0,"29672":-1,"29673":1505,"29674":1508,"29675":0,"29676":0,"29677":67,"29678":0,"29679":0,"29680":1427,"29681":-1,"29682":0,"29683":0,"29684":0,"29685":-1,"29686":1552,"29687":0,"29688":0,"29689":-1,"29690":0,"29691":-1,"29692":0,"29693":310,"29694":0,"29695":0,"29696":0,"29697":1524,"29698":0,"29699":0,"29700":-1,"29701":1387,"29702":1542,"29703":70,"29704":-1,"29705":0,"29706":0,"29707":-1,"29708":-1,"29709":0,"29710":0,"29711":-1,"29712":169,"29713":87,"29714":0,"29715":0,"29716":0,"29717":0,"29718":-1,"29719":-1,"29720":0,"29721":-1,"29722":0,"29723":-1,"29724":48,"29725":-1,"29726":0,"29727":-1,"29728":1307,"29729":0,"29730":-1,"29731":0,"29732":0,"29733":0,"29734":-1,"29735":0,"29736":-1,"29737":0,"29738":-1,"29739":0,"29740":0,"29741":75,"29742":1379,"29743":1437,"29744":207,"29745":-1,"29746":195,"29747":0,"29748":-1,"29749":385,"29750":142,"29751":0,"29752":-1,"29753":-1,"29754":-1,"29755":-1,"29756":0,"29757":0,"29758":0,"29759":0,"29760":0,"29761":0,"29762":0,"29763":1388,"29764":-1,"29765":301,"29766":0,"29767":-1,"29768":1352,"29769":226,"29770":-1,"29771":0,"29772":1414,"29773":1585,"29774":-1,"29775":77,"29776":0,"29777":0,"29778":0,"29779":0,"29780":176,"29781":-1,"29782":-1,"29783":-1,"29784":1552,"29785":1382,"29786":-1,"29787":0,"29788":0,"29789":-1,"29790":1549,"29791":0,"29792":0,"29793":0,"29794":0,"29795":7,"29796":0,"29797":-1,"29798":-1,"29799":264,"29800":-1,"29801":0,"29802":-1,"29803":-1,"29804":-1,"29805":211,"29806":0,"29807":-1,"29808":-1,"29809":1339,"29810":0,"29811":-1,"29812":0,"29813":0,"29814":128,"29815":-1,"29816":0,"29817":364,"29818":-1,"29819":0,"29820":1369,"29821":346,"29822":213,"29823":0,"29824":-1,"29825":1558,"29826":343,"29827":-1,"29828":-1,"29829":-1,"29830":-1,"29831":-1,"29832":0,"29833":0,"29834":-1,"29835":0,"29836":164,"29837":0,"29838":-1,"29839":-1,"29840":-1,"29841":0,"29842":-1,"29843":21,"29844":0,"29845":-1,"29846":-1,"29847":0,"29848":5,"29849":0,"29850":0,"29851":1453,"29852":-1,"29853":0,"29854":-1,"29855":-1,"29856":-1,"29857":0,"29858":0,"29859":-1,"29860":53,"29861":1367,"29862":-1,"29863":-1,"29864":1312,"29865":-1,"29866":0,"29867":-1,"29868":-1,"29869":-1,"29870":0,"29871":0,"29872":0,"29873":0,"29874":1357,"29875":-1,"29876":0,"29877":-1,"29878":0,"29879":0,"29880":0,"29881":25,"29882":1585,"29883":1483,"29884":0,"29885":-1,"29886":0,"29887":148,"29888":0,"29889":0,"29890":0,"29891":-1,"29892":381,"29893":0,"29894":-1,"29895":1412,"29896":0,"29897":-1,"29898":-1,"29899":0,"29900":0,"29901":-1,"29902":0,"29903":-1,"29904":1335,"29905":1512,"29906":0,"29907":0,"29908":0,"29909":1482,"29910":0,"29911":-1,"29912":-1,"29913":0,"29914":0,"29915":-1,"29916":1468,"29917":0,"29918":-1,"29919":0,"29920":0,"29921":-1,"29922":481,"29923":-1,"29924":-1,"29925":-1,"29926":47,"29927":0,"29928":0,"29929":0,"29930":0,"29931":0,"29932":0,"29933":0,"29934":0,"29935":-1,"29936":194,"29937":-1,"29938":-1,"29939":1534,"29940":-1,"29941":-1,"29942":-1,"29943":0,"29944":0,"29945":-1,"29946":1569,"29947":365,"29948":-1,"29949":244,"29950":-1,"29951":0,"29952":1354,"29953":0,"29954":1472,"29955":339,"29956":121,"29957":0,"29958":-1,"29959":0,"29960":-1,"29961":-1,"29962":-1,"29963":-1,"29964":0,"29965":-1,"29966":-1,"29967":-1,"29968":140,"29969":0,"29970":-1,"29971":0,"29972":-1,"29973":0,"29974":350,"29975":-1,"29976":0,"29977":106,"29978":1474,"29979":-1,"29980":0,"29981":-1,"29982":-1,"29983":-1,"29984":1566,"29985":329,"29986":0,"29987":0,"29988":1354,"29989":-1,"29990":-1,"29991":293,"29992":0,"29993":0,"29994":0,"29995":0,"29996":1503,"29997":-1,"29998":0,"29999":0,"30000":0,"30001":-1,"30002":0,"30003":-1,"30004":0,"30005":22,"30006":-1,"30007":0,"30008":-1,"30009":38,"30010":137,"30011":-1,"30012":0,"30013":0,"30014":0,"30015":-1,"30016":287,"30017":1380,"30018":0,"30019":1333,"30020":1415,"30021":101,"30022":0,"30023":0,"30024":0,"30025":0,"30026":0,"30027":-1,"30028":0,"30029":1420,"30030":1313,"30031":1553,"30032":0,"30033":0,"30034":304,"30035":1386,"30036":-1,"30037":1353,"30038":0,"30039":0,"30040":0,"30041":-1,"30042":0,"30043":1368,"30044":1474,"30045":0,"30046":0,"30047":-1,"30048":0,"30049":0,"30050":0,"30051":0,"30052":0,"30053":1413,"30054":0,"30055":-1,"30056":0,"30057":1410,"30058":0,"30059":0,"30060":317,"30061":0,"30062":1570,"30063":0,"30064":1420,"30065":1381,"30066":0,"30067":1456,"30068":101,"30069":0,"30070":362,"30071":0,"30072":-1,"30073":-1,"30074":-1,"30075":1568,"30076":0,"30077":383,"30078":-1,"30079":0,"30080":265,"30081":0,"30082":-1,"30083":352,"30084":-1,"30085":-1,"30086":270,"30087":0,"30088":0,"30089":94,"30090":317,"30091":-1,"30092":1342,"30093":0,"30094":0,"30095":0,"30096":-1,"30097":0,"30098":1559,"30099":359,"30100":1400,"30101":0,"30102":0,"30103":0,"30104":0,"30105":0,"30106":-1,"30107":20,"30108":246,"30109":28,"30110":0,"30111":0,"30112":1401,"30113":46,"30114":-1,"30115":0,"30116":111,"30117":-1,"30118":1460,"30119":0,"30120":1440,"30121":0,"30122":0,"30123":-1,"30124":-1,"30125":-1,"30126":168,"30127":0,"30128":-1,"30129":0,"30130":-1,"30131":1463,"30132":1316,"30133":0,"30134":-1,"30135":-1,"30136":0,"30137":-1,"30138":-1,"30139":0,"30140":-1,"30141":328,"30142":1524,"30143":1582,"30144":-1,"30145":0,"30146":0,"30147":1570,"30148":6,"30149":-1,"30150":-1,"30151":-1,"30152":-1,"30153":0,"30154":0,"30155":-1,"30156":0,"30157":0,"30158":0,"30159":1458,"30160":481,"30161":-1,"30162":0,"30163":0,"30164":0,"30165":0,"30166":-1,"30167":0,"30168":0,"30169":0,"30170":-1,"30171":-1,"30172":-1,"30173":0,"30174":-1,"30175":0,"30176":30,"30177":0,"30178":162,"30179":0,"30180":0,"30181":0,"30182":-1,"30183":0,"30184":-1,"30185":-1,"30186":0,"30187":253,"30188":162,"30189":-1,"30190":0,"30191":1356,"30192":75,"30193":0,"30194":-1,"30195":324,"30196":-1,"30197":0,"30198":1520,"30199":0,"30200":0,"30201":-1,"30202":282,"30203":0,"30204":0,"30205":0,"30206":0,"30207":0,"30208":1582,"30209":-1,"30210":-1,"30211":1330,"30212":1520,"30213":0,"30214":-1,"30215":-1,"30216":-1,"30217":1467,"30218":1520,"30219":286,"30220":-1,"30221":-1,"30222":0,"30223":-1,"30224":0,"30225":-1,"30226":1465,"30227":0,"30228":-1,"30229":-1,"30230":-1,"30231":0,"30232":0,"30233":1450,"30234":0,"30235":0,"30236":-1,"30237":0,"30238":1337,"30239":83,"30240":0,"30241":13,"30242":228,"30243":0,"30244":0,"30245":-1,"30246":0,"30247":73,"30248":-1,"30249":1380,"30250":1570,"30251":0,"30252":0,"30253":0,"30254":0,"30255":329,"30256":0,"30257":0,"30258":89,"30259":0,"30260":0,"30261":135,"30262":-1,"30263":-1,"30264":-1,"30265":0,"30266":-1,"30267":270,"30268":0,"30269":283,"30270":-1,"30271":0,"30272":175,"30273":-1,"30274":-1,"30275":0,"30276":0,"30277":0,"30278":0,"30279":362,"30280":-1,"30281":1356,"30282":0,"30283":-1,"30284":-1,"30285":-1,"30286":-1,"30287":0,"30288":0,"30289":0,"30290":0,"30291":-1,"30292":144,"30293":-1,"30294":-1,"30295":0,"30296":-1,"30297":-1,"30298":0,"30299":-1,"30300":1449,"30301":-1,"30302":1384,"30303":-1,"30304":63,"30305":-1,"30306":-1,"30307":0,"30308":0,"30309":0,"30310":62,"30311":0,"30312":-1,"30313":1378,"30314":0,"30315":-1,"30316":-1,"30317":0,"30318":1344,"30319":0,"30320":154,"30321":0,"30322":0,"30323":-1,"30324":1540,"30325":1494,"30326":1558,"30327":1456,"30328":0,"30329":1573,"30330":0,"30331":240,"30332":0,"30333":0,"30334":1461,"30335":-1,"30336":274,"30337":-1,"30338":134,"30339":0,"30340":0,"30341":343,"30342":0,"30343":1344,"30344":1555,"30345":0,"30346":0,"30347":181,"30348":0,"30349":1430,"30350":0,"30351":1329,"30352":0,"30353":-1,"30354":-1,"30355":-1,"30356":0,"30357":0,"30358":0,"30359":289,"30360":-1,"30361":-1,"30362":1415,"30363":-1,"30364":0,"30365":-1,"30366":0,"30367":-1,"30368":-1,"30369":0,"30370":1521,"30371":-1,"30372":-1,"30373":66,"30374":43,"30375":0,"30376":1553,"30377":234,"30378":-1,"30379":371,"30380":0,"30381":269,"30382":97,"30383":0,"30384":-1,"30385":-1,"30386":-1,"30387":-1,"30388":0,"30389":87,"30390":1435,"30391":240,"30392":0,"30393":0,"30394":0,"30395":-1,"30396":1350,"30397":0,"30398":1417,"30399":1365,"30400":92,"30401":-1,"30402":0,"30403":0,"30404":0,"30405":0,"30406":181,"30407":-1,"30408":0,"30409":-1,"30410":0,"30411":1351,"30412":1411,"30413":-1,"30414":0,"30415":-1,"30416":-1,"30417":-1,"30418":-1,"30419":-1,"30420":0,"30421":332,"30422":26,"30423":1532,"30424":63,"30425":0,"30426":1514,"30427":0,"30428":0,"30429":-1,"30430":0,"30431":0,"30432":307,"30433":-1,"30434":-1,"30435":157,"30436":0,"30437":0,"30438":0,"30439":0,"30440":-1,"30441":-1,"30442":0,"30443":-1,"30444":406,"30445":192,"30446":0,"30447":-1,"30448":1311,"30449":-1,"30450":0,"30451":197,"30452":0,"30453":0,"30454":-1,"30455":0,"30456":1344,"30457":92,"30458":0,"30459":0,"30460":0,"30461":0,"30462":0,"30463":0,"30464":0,"30465":0,"30466":0,"30467":-1,"30468":1463,"30469":0,"30470":-1,"30471":1448,"30472":-1,"30473":-1,"30474":-1,"30475":0,"30476":1331,"30477":0,"30478":-1,"30479":207,"30480":-1,"30481":-1,"30482":305,"30483":-1,"30484":-1,"30485":1504,"30486":0,"30487":0,"30488":-1,"30489":-1,"30490":146,"30491":0,"30492":0,"30493":-1,"30494":-1,"30495":-1,"30496":1419,"30497":0,"30498":0,"30499":0,"30500":0,"30501":0,"30502":-1,"30503":1572,"30504":-1,"30505":-1,"30506":0,"30507":-1,"30508":0,"30509":-1,"30510":0,"30511":0,"30512":-1,"30513":0,"30514":-1,"30515":-1,"30516":0,"30517":1570,"30518":0,"30519":1559,"30520":-1,"30521":1357,"30522":0,"30523":-1,"30524":-1,"30525":0,"30526":-1,"30527":0,"30528":-1,"30529":0,"30530":0,"30531":0,"30532":0,"30533":0,"30534":0,"30535":-1,"30536":0,"30537":1405,"30538":0,"30539":-1,"30540":1431,"30541":326,"30542":1374,"30543":0,"30544":0,"30545":-1,"30546":0,"30547":0,"30548":1335,"30549":1551,"30550":-1,"30551":35,"30552":1416,"30553":-1,"30554":0,"30555":1299,"30556":0,"30557":-1,"30558":-1,"30559":1369,"30560":-1,"30561":-1,"30562":1382,"30563":-1,"30564":-1,"30565":0,"30566":-1,"30567":-1,"30568":-1,"30569":-1,"30570":-1,"30571":1506,"30572":-1,"30573":-1,"30574":0,"30575":0,"30576":1417,"30577":308,"30578":0,"30579":-1,"30580":0,"30581":0,"30582":0,"30583":0,"30584":1458,"30585":-1,"30586":1459,"30587":-1,"30588":0,"30589":1464,"30590":-1,"30591":1485,"30592":-1,"30593":-1,"30594":0,"30595":0,"30596":0,"30597":328,"30598":-1,"30599":-1,"30600":-1,"30601":-1,"30602":-1,"30603":0,"30604":-1,"30605":1573,"30606":0,"30607":-1,"30608":-1,"30609":0,"30610":0,"30611":0,"30612":-1,"30613":-1,"30614":-1,"30615":0,"30616":0,"30617":0,"30618":1437,"30619":0,"30620":-1,"30621":0,"30622":14,"30623":0,"30624":248,"30625":-1,"30626":0,"30627":0,"30628":0,"30629":0,"30630":0,"30631":0,"30632":0,"30633":0,"30634":0,"30635":0,"30636":0,"30637":0,"30638":0,"30639":-1,"30640":13,"30641":1414,"30642":0,"30643":0,"30644":285,"30645":0,"30646":329,"30647":1423,"30648":-1,"30649":0,"30650":0,"30651":0,"30652":1523,"30653":1527,"30654":1520,"30655":-1,"30656":0,"30657":-1,"30658":0,"30659":0,"30660":0,"30661":1352,"30662":-1,"30663":0,"30664":1412,"30665":1427,"30666":0,"30667":0,"30668":-1,"30669":-1,"30670":1337,"30671":0,"30672":93,"30673":0,"30674":0,"30675":0,"30676":1382,"30677":0,"30678":186,"30679":-1,"30680":0,"30681":0,"30682":0,"30683":30,"30684":-1,"30685":0,"30686":-1,"30687":0,"30688":0,"30689":213,"30690":0,"30691":0,"30692":-1,"30693":0,"30694":0,"30695":207,"30696":1560,"30697":0,"30698":0,"30699":1488,"30700":0,"30701":0,"30702":-1,"30703":0,"30704":0,"30705":-1,"30706":0,"30707":186,"30708":0,"30709":-1,"30710":0,"30711":0,"30712":0,"30713":0,"30714":-1,"30715":-1,"30716":0,"30717":-1,"30718":234,"30719":0,"30720":0,"30721":0,"30722":-1,"30723":0,"30724":1476,"30725":0,"30726":-1,"30727":-1,"30728":17,"30729":-1,"30730":0,"30731":-1,"30732":1550,"30733":1583,"30734":109,"30735":0,"30736":0,"30737":-1,"30738":-1,"30739":-1,"30740":0,"30741":1368,"30742":-1,"30743":1352,"30744":0,"30745":20,"30746":0,"30747":0,"30748":0,"30749":-1,"30750":-1,"30751":0,"30752":-1,"30753":337,"30754":346,"30755":0,"30756":148,"30757":1527,"30758":1551,"30759":0,"30760":1523,"30761":0,"30762":1335,"30763":0,"30764":-1,"30765":0,"30766":-1,"30767":0,"30768":0,"30769":-1,"30770":0,"30771":0,"30772":1421,"30773":-1,"30774":0,"30775":0,"30776":0,"30777":-1,"30778":0,"30779":0,"30780":-1,"30781":0,"30782":0,"30783":295,"30784":-1,"30785":246,"30786":-1,"30787":0,"30788":1459,"30789":0,"30790":373,"30791":0,"30792":-1,"30793":0,"30794":-1,"30795":0,"30796":0,"30797":0,"30798":0,"30799":0,"30800":-1,"30801":299,"30802":201,"30803":88,"30804":0,"30805":-1,"30806":0,"30807":150,"30808":0,"30809":268,"30810":0,"30811":0,"30812":383,"30813":0,"30814":0,"30815":0,"30816":347,"30817":298,"30818":0,"30819":1582,"30820":1459,"30821":0,"30822":0,"30823":-1,"30824":0,"30825":0,"30826":310,"30827":0,"30828":0,"30829":1449,"30830":0,"30831":-1,"30832":0,"30833":-1,"30834":-1,"30835":0,"30836":481,"30837":0,"30838":0,"30839":0,"30840":0,"30841":0,"30842":0,"30843":0,"30844":-1,"30845":-1,"30846":0,"30847":0,"30848":0,"30849":-1,"30850":0,"30851":0,"30852":0,"30853":0,"30854":-1,"30855":-1,"30856":0,"30857":0,"30858":1438,"30859":-1,"30860":310,"30861":1573,"30862":0,"30863":0,"30864":-1,"30865":-1,"30866":481,"30867":1547,"30868":297,"30869":0,"30870":0,"30871":0,"30872":-1,"30873":-1,"30874":1509,"30875":-1,"30876":1546,"30877":1328,"30878":-1,"30879":0,"30880":234,"30881":-1,"30882":-1,"30883":-1,"30884":-1,"30885":0,"30886":-1,"30887":0,"30888":-1,"30889":0,"30890":-1,"30891":-1,"30892":0,"30893":0,"30894":-1,"30895":-1,"30896":0,"30897":0,"30898":0,"30899":202,"30900":0,"30901":0,"30902":170,"30903":1489,"30904":267,"30905":0,"30906":0,"30907":0,"30908":-1,"30909":0,"30910":1510,"30911":0,"30912":0,"30913":-1,"30914":-1,"30915":1381,"30916":0,"30917":181,"30918":1531,"30919":105,"30920":1510,"30921":-1,"30922":1516,"30923":-1,"30924":0,"30925":1518,"30926":-1,"30927":-1,"30928":-1,"30929":0,"30930":0,"30931":-1,"30932":-1,"30933":-1,"30934":-1,"30935":0,"30936":1541,"30937":0,"30938":0,"30939":56,"30940":-1,"30941":0,"30942":0,"30943":-1,"30944":1354,"30945":0,"30946":0,"30947":0,"30948":-1,"30949":0,"30950":26,"30951":0,"30952":0,"30953":0,"30954":-1,"30955":-1,"30956":-1,"30957":0,"30958":0,"30959":-1,"30960":1567,"30961":1480,"30962":1434,"30963":0,"30964":0,"30965":0,"30966":0,"30967":-1,"30968":0,"30969":0,"30970":0,"30971":0,"30972":0,"30973":0,"30974":-1,"30975":0,"30976":0,"30977":0,"30978":0,"30979":134,"30980":0,"30981":0,"30982":-1,"30983":0,"30984":0,"30985":359,"30986":-1,"30987":-1,"30988":-1,"30989":-1,"30990":0,"30991":0,"30992":-1,"30993":-1,"30994":0,"30995":0,"30996":-1,"30997":0,"30998":0,"30999":1348,"31000":62,"31001":-1,"31002":-1,"31003":0,"31004":339,"31005":-1,"31006":-1,"31007":0,"31008":-1,"31009":0,"31010":1420,"31011":-1,"31012":-1,"31013":0,"31014":0,"31015":0,"31016":0,"31017":-1,"31018":-1,"31019":-1,"31020":0,"31021":0,"31022":0,"31023":146,"31024":273,"31025":1411,"31026":1446,"31027":0,"31028":0,"31029":31,"31030":0,"31031":-1,"31032":0,"31033":-1,"31034":287,"31035":-1,"31036":-1,"31037":0,"31038":-1,"31039":0,"31040":0,"31041":-1,"31042":128,"31043":-1,"31044":0,"31045":187,"31046":0,"31047":1316,"31048":0,"31049":124,"31050":0,"31051":0,"31052":0,"31053":-1,"31054":-1,"31055":1532,"31056":235,"31057":1326,"31058":-1,"31059":0,"31060":-1,"31061":1422,"31062":0,"31063":-1,"31064":0,"31065":66,"31066":134,"31067":36,"31068":324,"31069":-1,"31070":-1,"31071":1416,"31072":0,"31073":-1,"31074":0,"31075":-1,"31076":1366,"31077":0,"31078":0,"31079":0,"31080":116,"31081":0,"31082":1571,"31083":1558,"31084":-1,"31085":-1,"31086":1440,"31087":1484,"31088":0,"31089":0,"31090":10,"31091":0,"31092":0,"31093":0,"31094":0,"31095":-1,"31096":0,"31097":-1,"31098":1347,"31099":-1,"31100":0,"31101":1471,"31102":-1,"31103":-1,"31104":-1,"31105":1476,"31106":0,"31107":16,"31108":0,"31109":357,"31110":0,"31111":77,"31112":0,"31113":0,"31114":-1,"31115":0,"31116":0,"31117":380,"31118":0,"31119":-1,"31120":1486,"31121":-1,"31122":1573,"31123":357,"31124":-1,"31125":1366,"31126":0,"31127":0,"31128":1581,"31129":187,"31130":0,"31131":0,"31132":-1,"31133":0,"31134":-1,"31135":-1,"31136":0,"31137":-1,"31138":0,"31139":-1,"31140":0,"31141":0,"31142":0,"31143":-1,"31144":0,"31145":-1,"31146":364,"31147":0,"31148":0,"31149":-1,"31150":0,"31151":1324,"31152":-1,"31153":0,"31154":-1,"31155":230,"31156":0,"31157":1347,"31158":206,"31159":-1,"31160":0,"31161":0,"31162":0,"31163":0,"31164":-1,"31165":0,"31166":0,"31167":0,"31168":-1,"31169":1409,"31170":158,"31171":0,"31172":0,"31173":-1,"31174":0,"31175":0,"31176":0,"31177":1477,"31178":0,"31179":-1,"31180":-1,"31181":50,"31182":-1,"31183":0,"31184":0,"31185":0,"31186":0,"31187":1496,"31188":1304,"31189":-1,"31190":0,"31191":-1,"31192":-1,"31193":0,"31194":0,"31195":0,"31196":0,"31197":254,"31198":0,"31199":-1,"31200":0,"31201":1366,"31202":-1,"31203":0,"31204":-1,"31205":-1,"31206":1342,"31207":0,"31208":0,"31209":0,"31210":0,"31211":0,"31212":172,"31213":-1,"31214":0,"31215":0,"31216":0,"31217":-1,"31218":-1,"31219":1399,"31220":117,"31221":347,"31222":1560,"31223":0,"31224":0,"31225":0,"31226":200,"31227":203,"31228":0,"31229":-1,"31230":0,"31231":0,"31232":-1,"31233":0,"31234":0,"31235":-1,"31236":-1,"31237":0,"31238":-1,"31239":0,"31240":-1,"31241":-1,"31242":0,"31243":-1,"31244":0,"31245":0,"31246":343,"31247":-1,"31248":74,"31249":-1,"31250":-1,"31251":0,"31252":-1,"31253":0,"31254":312,"31255":1439,"31256":0,"31257":0,"31258":0,"31259":68,"31260":-1,"31261":1333,"31262":0,"31263":0,"31264":0,"31265":-1,"31266":-1,"31267":-1,"31268":0,"31269":-1,"31270":0,"31271":187,"31272":1413,"31273":1584,"31274":-1,"31275":0,"31276":1442,"31277":74,"31278":299,"31279":-1,"31280":0,"31281":-1,"31282":0,"31283":76,"31284":-1,"31285":1541,"31286":-1,"31287":1413,"31288":0,"31289":1399,"31290":1304,"31291":1505,"31292":-1,"31293":53,"31294":1468,"31295":-1,"31296":0,"31297":325,"31298":0,"31299":0,"31300":0,"31301":215,"31302":-1,"31303":-1,"31304":1317,"31305":0,"31306":-1,"31307":0,"31308":0,"31309":0,"31310":1352,"31311":0,"31312":-1,"31313":1460,"31314":-1,"31315":-1,"31316":157,"31317":1499,"31318":0,"31319":0,"31320":0,"31321":1334,"31322":0,"31323":0,"31324":0,"31325":-1,"31326":0,"31327":0,"31328":1512,"31329":75,"31330":-1,"31331":-1,"31332":0,"31333":0,"31334":0,"31335":0,"31336":-1,"31337":1329,"31338":0,"31339":-1,"31340":0,"31341":55,"31342":-1,"31343":-1,"31344":1509,"31345":-1,"31346":-1,"31347":-1,"31348":0,"31349":1344,"31350":0,"31351":9,"31352":380,"31353":48,"31354":-1,"31355":-1,"31356":0,"31357":0,"31358":129,"31359":-1,"31360":166,"31361":0,"31362":-1,"31363":1385,"31364":1429,"31365":-1,"31366":0,"31367":0,"31368":0,"31369":-1,"31370":0,"31371":0,"31372":0,"31373":0,"31374":-1,"31375":0,"31376":369,"31377":1446,"31378":0,"31379":-1,"31380":119,"31381":-1,"31382":0,"31383":164,"31384":-1,"31385":0,"31386":-1,"31387":1301,"31388":0,"31389":-1,"31390":-1,"31391":365,"31392":0,"31393":0,"31394":0,"31395":1406,"31396":0,"31397":0,"31398":253,"31399":-1,"31400":0,"31401":0,"31402":-1,"31403":-1,"31404":378,"31405":0,"31406":1312,"31407":-1,"31408":0,"31409":-1,"31410":101,"31411":0,"31412":1329,"31413":157,"31414":0,"31415":-1,"31416":0,"31417":0,"31418":0,"31419":1342,"31420":42,"31421":1341,"31422":5,"31423":0,"31424":0,"31425":-1,"31426":0,"31427":-1,"31428":-1,"31429":0,"31430":1320,"31431":-1,"31432":0,"31433":0,"31434":1439,"31435":1379,"31436":1397,"31437":166,"31438":202,"31439":0,"31440":-1,"31441":0,"31442":0,"31443":0,"31444":0,"31445":-1,"31446":0,"31447":0,"31448":0,"31449":0,"31450":-1,"31451":264,"31452":0,"31453":0,"31454":1583,"31455":1550,"31456":0,"31457":-1,"31458":64,"31459":0,"31460":269,"31461":-1,"31462":0,"31463":-1,"31464":103,"31465":332,"31466":0,"31467":-1,"31468":-1,"31469":0,"31470":-1,"31471":0,"31472":0,"31473":-1,"31474":334,"31475":-1,"31476":0,"31477":194,"31478":-1,"31479":-1,"31480":-1,"31481":35,"31482":0,"31483":0,"31484":0,"31485":-1,"31486":0,"31487":0,"31488":-1,"31489":0,"31490":1551,"31491":0,"31492":-1,"31493":0,"31494":0,"31495":0,"31496":1429,"31497":36,"31498":-1,"31499":-1,"31500":1550,"31501":0,"31502":172,"31503":-1,"31504":0,"31505":-1,"31506":-1,"31507":-1,"31508":1396,"31509":1449,"31510":-1,"31511":0,"31512":-1,"31513":354,"31514":1470,"31515":-1,"31516":0,"31517":-1,"31518":0,"31519":0,"31520":257,"31521":-1,"31522":0,"31523":0,"31524":0,"31525":0,"31526":1419,"31527":-1,"31528":0,"31529":-1,"31530":-1,"31531":0,"31532":0,"31533":-1,"31534":28,"31535":0,"31536":0,"31537":0,"31538":-1,"31539":0,"31540":0,"31541":0,"31542":1533,"31543":-1,"31544":0,"31545":0,"31546":0,"31547":-1,"31548":0,"31549":121,"31550":0,"31551":-1,"31552":-1,"31553":0,"31554":-1,"31555":87,"31556":0,"31557":-1,"31558":1479,"31559":0,"31560":-1,"31561":0,"31562":-1,"31563":0,"31564":0,"31565":-1,"31566":-1,"31567":-1,"31568":0,"31569":0,"31570":0,"31571":0,"31572":1463,"31573":0,"31574":0,"31575":-1,"31576":0,"31577":74,"31578":-1,"31579":0,"31580":-1,"31581":-1,"31582":-1,"31583":1471,"31584":0,"31585":0,"31586":0,"31587":1486,"31588":-1,"31589":0,"31590":0,"31591":0,"31592":0,"31593":-1,"31594":199,"31595":0,"31596":1562,"31597":0,"31598":0,"31599":-1,"31600":0,"31601":0,"31602":0,"31603":0,"31604":0,"31605":-1,"31606":0,"31607":-1,"31608":47,"31609":1543,"31610":0,"31611":0,"31612":-1,"31613":0,"31614":0,"31615":0,"31616":0,"31617":-1,"31618":-1,"31619":-1,"31620":0,"31621":0,"31622":41,"31623":0,"31624":0,"31625":-1,"31626":0,"31627":-1,"31628":0,"31629":0,"31630":0,"31631":-1,"31632":0,"31633":1512,"31634":64,"31635":0,"31636":-1,"31637":-1,"31638":-1,"31639":0,"31640":0,"31641":0,"31642":0,"31643":0,"31644":-1,"31645":0,"31646":-1,"31647":-1,"31648":1300,"31649":-1,"31650":-1,"31651":1580,"31652":-1,"31653":0,"31654":0,"31655":0,"31656":1363,"31657":0,"31658":1428,"31659":-1,"31660":293,"31661":0,"31662":-1,"31663":-1,"31664":0,"31665":0,"31666":0,"31667":0,"31668":-1,"31669":0,"31670":0,"31671":-1,"31672":0,"31673":1549,"31674":0,"31675":0,"31676":0,"31677":0,"31678":-1,"31679":-1,"31680":1324,"31681":1327,"31682":106,"31683":-1,"31684":-1,"31685":1558,"31686":0,"31687":-1,"31688":-1,"31689":0,"31690":0,"31691":0,"31692":-1,"31693":0,"31694":1441,"31695":-1,"31696":-1,"31697":-1,"31698":284,"31699":-1,"31700":149,"31701":-1,"31702":1416,"31703":0,"31704":-1,"31705":0,"31706":11,"31707":0,"31708":169,"31709":-1,"31710":0,"31711":160,"31712":1429,"31713":0,"31714":0,"31715":278,"31716":1545,"31717":-1,"31718":-1,"31719":0,"31720":1427,"31721":1459,"31722":69,"31723":0,"31724":0,"31725":0,"31726":0,"31727":0,"31728":0,"31729":0,"31730":306,"31731":-1,"31732":0,"31733":1485,"31734":1318,"31735":0,"31736":0,"31737":0,"31738":0,"31739":-1,"31740":0,"31741":1510,"31742":0,"31743":0,"31744":-1,"31745":-1,"31746":0,"31747":0,"31748":0,"31749":0,"31750":-1,"31751":-1,"31752":158,"31753":-1,"31754":0,"31755":136,"31756":-1,"31757":-1,"31758":85,"31759":0,"31760":0,"31761":0,"31762":-1,"31763":-1,"31764":0,"31765":55,"31766":0,"31767":1492,"31768":0,"31769":0,"31770":0,"31771":-1,"31772":0,"31773":1450,"31774":0,"31775":0,"31776":-1,"31777":0,"31778":0,"31779":-1,"31780":0,"31781":86,"31782":0,"31783":1523,"31784":0,"31785":-1,"31786":1463,"31787":0,"31788":0,"31789":0,"31790":0,"31791":1555,"31792":406,"31793":0,"31794":0,"31795":-1,"31796":0,"31797":0,"31798":0,"31799":-1,"31800":1381,"31801":-1,"31802":24,"31803":-1,"31804":0,"31805":0,"31806":24,"31807":-1,"31808":281,"31809":0,"31810":1367,"31811":-1,"31812":0,"31813":0,"31814":-1,"31815":0,"31816":0,"31817":0,"31818":-1,"31819":88,"31820":-1,"31821":0,"31822":0,"31823":0,"31824":0,"31825":-1,"31826":0,"31827":0,"31828":-1,"31829":1449,"31830":0,"31831":-1,"31832":232,"31833":1519,"31834":0,"31835":176,"31836":-1,"31837":0,"31838":0,"31839":0,"31840":1470,"31841":-1,"31842":75,"31843":0,"31844":1503,"31845":26,"31846":-1,"31847":0,"31848":1426,"31849":215,"31850":0,"31851":0,"31852":0,"31853":0,"31854":0,"31855":-1,"31856":0,"31857":-1,"31858":1521,"31859":0,"31860":0,"31861":0,"31862":0,"31863":-1,"31864":0,"31865":0,"31866":-1,"31867":0,"31868":259,"31869":-1,"31870":0,"31871":-1,"31872":0,"31873":117,"31874":-1,"31875":1356,"31876":-1,"31877":0,"31878":-1,"31879":-1,"31880":-1,"31881":1335,"31882":-1,"31883":-1,"31884":199,"31885":-1,"31886":302,"31887":0,"31888":0,"31889":0,"31890":0,"31891":1511,"31892":1384,"31893":1317,"31894":1537,"31895":0,"31896":0,"31897":-1,"31898":-1,"31899":-1,"31900":0,"31901":0,"31902":-1,"31903":-1,"31904":0,"31905":-1,"31906":-1,"31907":0,"31908":1330,"31909":0,"31910":144,"31911":0,"31912":46,"31913":-1,"31914":-1,"31915":-1,"31916":-1,"31917":-1,"31918":-1,"31919":-1,"31920":-1,"31921":305,"31922":123,"31923":-1,"31924":1415,"31925":-1,"31926":65,"31927":-1,"31928":0,"31929":0,"31930":-1,"31931":0,"31932":-1,"31933":225,"31934":-1,"31935":0,"31936":-1,"31937":197,"31938":1503,"31939":0,"31940":0,"31941":301,"31942":0,"31943":1482,"31944":0,"31945":0,"31946":0,"31947":1443,"31948":-1,"31949":0,"31950":473,"31951":1420,"31952":0,"31953":116,"31954":-1,"31955":0,"31956":0,"31957":197,"31958":0,"31959":-1,"31960":0,"31961":1501,"31962":0,"31963":226,"31964":0,"31965":9,"31966":-1,"31967":0,"31968":1424,"31969":-1,"31970":76,"31971":-1,"31972":0,"31973":-1,"31974":1420,"31975":0,"31976":0,"31977":1312,"31978":0,"31979":0,"31980":0,"31981":0,"31982":-1,"31983":0,"31984":0,"31985":-1,"31986":0,"31987":220,"31988":0,"31989":0,"31990":1414,"31991":331,"31992":-1,"31993":0,"31994":-1,"31995":1411,"31996":-1,"31997":0,"31998":-1,"31999":157,"32000":1477,"32001":115,"32002":-1,"32003":32,"32004":0,"32005":-1,"32006":-1,"32007":0,"32008":-1,"32009":0,"32010":1426,"32011":285,"32012":0,"32013":0,"32014":1516,"32015":9,"32016":-1,"32017":0,"32018":1386,"32019":0,"32020":0,"32021":0,"32022":0,"32023":1321,"32024":1484,"32025":1452,"32026":0,"32027":0,"32028":-1,"32029":-1,"32030":-1,"32031":326,"32032":-1,"32033":0,"32034":1536,"32035":-1,"32036":0,"32037":0,"32038":96,"32039":0,"32040":1482,"32041":278,"32042":72,"32043":89,"32044":0,"32045":-1,"32046":-1,"32047":-1,"32048":0,"32049":-1,"32050":-1,"32051":78,"32052":0,"32053":-1,"32054":0,"32055":0,"32056":1421,"32057":-1,"32058":0,"32059":1464,"32060":0,"32061":-1,"32062":1573,"32063":1520,"32064":-1,"32065":0,"32066":-1,"32067":1428,"32068":305,"32069":0,"32070":-1,"32071":0,"32072":0,"32073":-1,"32074":5,"32075":0,"32076":-1,"32077":31,"32078":-1,"32079":1480,"32080":-1,"32081":0,"32082":0,"32083":-1,"32084":0,"32085":-1,"32086":0,"32087":-1,"32088":0,"32089":61,"32090":164,"32091":0,"32092":-1,"32093":0,"32094":-1,"32095":0,"32096":0,"32097":0,"32098":-1,"32099":-1,"32100":25,"32101":40,"32102":-1,"32103":-1,"32104":-1,"32105":-1,"32106":-1,"32107":0,"32108":-1,"32109":26,"32110":1443,"32111":38,"32112":1403,"32113":0,"32114":0,"32115":331,"32116":0,"32117":0,"32118":0,"32119":0,"32120":0,"32121":-1,"32122":0,"32123":-1,"32124":0,"32125":1551,"32126":0,"32127":-1,"32128":-1,"32129":0,"32130":161,"32131":0,"32132":0,"32133":0,"32134":12,"32135":0,"32136":-1,"32137":0,"32138":0,"32139":1557,"32140":0,"32141":0,"32142":46,"32143":0,"32144":378,"32145":96,"32146":-1,"32147":-1,"32148":-1,"32149":-1,"32150":0,"32151":1423,"32152":-1,"32153":1477,"32154":0,"32155":359,"32156":-1,"32157":1477,"32158":-1,"32159":0,"32160":0,"32161":0,"32162":-1,"32163":1396,"32164":0,"32165":0,"32166":1405,"32167":337,"32168":0,"32169":-1,"32170":1544,"32171":0,"32172":0,"32173":1346,"32174":243,"32175":0,"32176":0,"32177":0,"32178":30,"32179":-1,"32180":0,"32181":-1,"32182":0,"32183":0,"32184":-1,"32185":-1,"32186":0,"32187":0,"32188":-1,"32189":61,"32190":-1,"32191":-1,"32192":324,"32193":0,"32194":288,"32195":-1,"32196":0,"32197":0,"32198":0,"32199":1299,"32200":0,"32201":1305,"32202":375,"32203":0,"32204":0,"32205":346,"32206":-1,"32207":0,"32208":1577,"32209":-1,"32210":1585,"32211":0,"32212":-1,"32213":1321,"32214":0,"32215":0,"32216":46,"32217":0,"32218":0,"32219":-1,"32220":1374,"32221":0,"32222":0,"32223":1491,"32224":0,"32225":105,"32226":-1,"32227":1466,"32228":0,"32229":0,"32230":-1,"32231":-1,"32232":0,"32233":64,"32234":0,"32235":-1,"32236":-1,"32237":0,"32238":1460,"32239":-1,"32240":0,"32241":1456,"32242":-1,"32243":0,"32244":322,"32245":65,"32246":-1,"32247":0,"32248":-1,"32249":0,"32250":18,"32251":1520,"32252":19,"32253":0,"32254":279,"32255":-1,"32256":0,"32257":0,"32258":0,"32259":1395,"32260":0,"32261":-1,"32262":-1,"32263":-1,"32264":-1,"32265":0,"32266":-1,"32267":0,"32268":0,"32269":-1,"32270":1532,"32271":-1,"32272":-1,"32273":0,"32274":-1,"32275":-1,"32276":0,"32277":-1,"32278":-1,"32279":1354,"32280":-1,"32281":-1,"32282":39,"32283":0,"32284":0,"32285":0,"32286":1478,"32287":0,"32288":-1,"32289":0,"32290":0,"32291":0,"32292":-1,"32293":-1,"32294":-1,"32295":0,"32296":0,"32297":0,"32298":158,"32299":0,"32300":220,"32301":1311,"32302":0,"32303":0,"32304":0,"32305":-1,"32306":0,"32307":0,"32308":1462,"32309":322,"32310":0,"32311":86,"32312":0,"32313":299,"32314":1553,"32315":0,"32316":0,"32317":134,"32318":0,"32319":0,"32320":0,"32321":0,"32322":-1,"32323":1583,"32324":354,"32325":-1,"32326":0,"32327":-1,"32328":1384,"32329":0,"32330":98,"32331":0,"32332":0,"32333":0,"32334":0,"32335":0,"32336":0,"32337":-1,"32338":-1,"32339":1348,"32340":1525,"32341":0,"32342":127,"32343":0,"32344":129,"32345":140,"32346":0,"32347":0,"32348":0,"32349":1428,"32350":0,"32351":0,"32352":-1,"32353":1570,"32354":-1,"32355":0,"32356":-1,"32357":1570,"32358":24,"32359":-1,"32360":-1,"32361":132,"32362":215,"32363":-1,"32364":-1,"32365":-1,"32366":-1,"32367":0,"32368":102,"32369":1530,"32370":0,"32371":0,"32372":0,"32373":51,"32374":0,"32375":0,"32376":-1,"32377":74,"32378":0,"32379":46,"32380":1516,"32381":0,"32382":0,"32383":-1,"32384":-1,"32385":1328,"32386":0,"32387":-1,"32388":-1,"32389":-1,"32390":0,"32391":-1,"32392":-1,"32393":-1,"32394":-1,"32395":0,"32396":-1,"32397":0,"32398":1377,"32399":0,"32400":0,"32401":0,"32402":0,"32403":0,"32404":1493,"32405":-1,"32406":0,"32407":-1,"32408":169,"32409":-1,"32410":150,"32411":240,"32412":1408,"32413":-1,"32414":1536,"32415":0,"32416":-1,"32417":0,"32418":0,"32419":0,"32420":0,"32421":291,"32422":-1,"32423":-1,"32424":262,"32425":0,"32426":0,"32427":0,"32428":0,"32429":-1,"32430":0,"32431":0,"32432":0,"32433":339,"32434":0,"32435":1344,"32436":-1,"32437":202,"32438":0,"32439":-1,"32440":0,"32441":-1,"32442":0,"32443":0,"32444":-1,"32445":157,"32446":1385,"32447":1467,"32448":336,"32449":0,"32450":-1,"32451":0,"32452":-1,"32453":0,"32454":0,"32455":0,"32456":-1,"32457":1307,"32458":0,"32459":-1,"32460":1398,"32461":168,"32462":0,"32463":0,"32464":0,"32465":1579,"32466":0,"32467":0,"32468":0,"32469":0,"32470":-1,"32471":-1,"32472":0,"32473":-1,"32474":0,"32475":-1,"32476":-1,"32477":0,"32478":332,"32479":68,"32480":0,"32481":0,"32482":0,"32483":0,"32484":-1,"32485":0,"32486":-1,"32487":0,"32488":-1,"32489":-1,"32490":1332,"32491":1529,"32492":0,"32493":0,"32494":-1,"32495":0,"32496":1333,"32497":0,"32498":1441,"32499":-1,"32500":-1,"32501":0,"32502":0,"32503":0,"32504":-1,"32505":0,"32506":-1,"32507":-1,"32508":35,"32509":0,"32510":0,"32511":1544,"32512":0,"32513":0,"32514":-1,"32515":173,"32516":0,"32517":0,"32518":-1,"32519":180,"32520":0,"32521":0,"32522":-1,"32523":0,"32524":0,"32525":0,"32526":-1,"32527":0,"32528":-1,"32529":0,"32530":0,"32531":-1,"32532":-1,"32533":-1,"32534":0,"32535":36,"32536":92,"32537":1558,"32538":-1,"32539":1428,"32540":-1,"32541":3,"32542":1456,"32543":0,"32544":0,"32545":0,"32546":0,"32547":0,"32548":-1,"32549":-1,"32550":0,"32551":-1,"32552":57,"32553":-1,"32554":287,"32555":0,"32556":0,"32557":0,"32558":-1,"32559":0,"32560":140,"32561":1385,"32562":1484,"32563":179,"32564":0,"32565":-1,"32566":0,"32567":-1,"32568":0,"32569":0,"32570":68,"32571":0,"32572":0,"32573":0,"32574":299,"32575":0,"32576":-1,"32577":-1,"32578":-1,"32579":-1,"32580":-1,"32581":0,"32582":-1,"32583":1529,"32584":-1,"32585":1420,"32586":-1,"32587":-1,"32588":0,"32589":-1,"32590":1552,"32591":69,"32592":0,"32593":0,"32594":-1,"32595":0,"32596":0,"32597":0,"32598":0,"32599":354,"32600":-1,"32601":-1,"32602":-1,"32603":1298,"32604":0,"32605":1431,"32606":-1,"32607":-1,"32608":0,"32609":-1,"32610":0,"32611":0,"32612":-1,"32613":0,"32614":0,"32615":1448,"32616":0,"32617":215,"32618":-1,"32619":-1,"32620":313,"32621":1516,"32622":0,"32623":0,"32624":0,"32625":0,"32626":72,"32627":-1,"32628":0,"32629":0,"32630":0,"32631":-1,"32632":1560,"32633":1445,"32634":14,"32635":1349,"32636":0,"32637":-1,"32638":1449,"32639":-1,"32640":0,"32641":0,"32642":0,"32643":0,"32644":226,"32645":0,"32646":0,"32647":0,"32648":0,"32649":0,"32650":-1,"32651":0,"32652":0,"32653":0,"32654":1508,"32655":0,"32656":0,"32657":1535,"32658":0,"32659":0,"32660":0,"32661":71,"32662":0,"32663":-1,"32664":0,"32665":0,"32666":1425,"32667":-1,"32668":-1,"32669":-1,"32670":0,"32671":-1,"32672":-1,"32673":-1,"32674":-1,"32675":1337,"32676":-1,"32677":-1,"32678":-1,"32679":-1,"32680":0,"32681":0,"32682":-1,"32683":158,"32684":-1,"32685":1507,"32686":0,"32687":-1,"32688":1450,"32689":0,"32690":-1,"32691":0,"32692":1542,"32693":0,"32694":-1,"32695":-1,"32696":1582,"32697":1306,"32698":-1,"32699":0,"32700":-1,"32701":0,"32702":1503,"32703":0,"32704":0,"32705":-1,"32706":1397,"32707":1370,"32708":-1,"32709":-1,"32710":-1,"32711":-1,"32712":-1,"32713":-1,"32714":0,"32715":-1,"32716":128,"32717":0,"32718":0,"32719":0,"32720":0,"32721":0,"32722":0,"32723":-1,"32724":0,"32725":1565,"32726":1509,"32727":1472,"32728":0,"32729":0,"32730":-1,"32731":0,"32732":-1,"32733":-1,"32734":-1,"32735":112,"32736":0,"32737":-1,"32738":-1,"32739":0,"32740":0,"32741":0,"32742":-1,"32743":1463,"32744":0,"32745":1343,"32746":0,"32747":0,"32748":40,"32749":0,"32750":0,"32751":-1,"32752":0,"32753":-1,"32754":-1,"32755":0,"32756":0,"32757":-1,"32758":0,"32759":0,"32760":0,"32761":0,"32762":-1,"32763":40,"32764":0,"32765":1459,"32766":339,"32767":-1,"32768":-1,"32769":1361,"32770":0,"32771":-1,"32772":0,"32773":-1,"32774":0,"32775":-1,"32776":281,"32777":-1,"32778":1455,"32779":0,"32780":0,"32781":207,"32782":1303,"32783":0,"32784":0,"32785":0,"32786":-1,"32787":0,"32788":0,"32789":-1,"32790":0,"32791":103,"32792":-1,"32793":-1,"32794":473,"32795":0,"32796":0,"32797":0,"32798":0,"32799":0,"32800":-1,"32801":1412,"32802":-1,"32803":0,"32804":0,"32805":-1,"32806":0,"32807":0,"32808":-1,"32809":152,"32810":69,"32811":-1,"32812":145,"32813":-1,"32814":0,"32815":1429,"32816":0,"32817":0,"32818":167,"32819":0,"32820":1343,"32821":-1,"32822":-1,"32823":-1,"32824":0,"32825":-1,"32826":1439,"32827":0,"32828":-1,"32829":380,"32830":0,"32831":0,"32832":0,"32833":0,"32834":0,"32835":-1,"32836":0,"32837":1527,"32838":0,"32839":325,"32840":1447,"32841":199,"32842":1339,"32843":176,"32844":-1,"32845":-1,"32846":0,"32847":-1,"32848":-1,"32849":0,"32850":0,"32851":-1,"32852":0,"32853":-1,"32854":1534,"32855":0,"32856":0,"32857":0,"32858":-1,"32859":96,"32860":1537,"32861":1359,"32862":1460,"32863":0,"32864":0,"32865":-1,"32866":75,"32867":-1,"32868":-1,"32869":0,"32870":1499,"32871":1505,"32872":0,"32873":0,"32874":0,"32875":0,"32876":-1,"32877":323,"32878":-1,"32879":0,"32880":-1,"32881":-1,"32882":-1,"32883":188,"32884":-1,"32885":0,"32886":0,"32887":1315,"32888":0,"32889":-1,"32890":0,"32891":0,"32892":0,"32893":167,"32894":1535,"32895":-1,"32896":192,"32897":0,"32898":0,"32899":0,"32900":-1,"32901":-1,"32902":-1,"32903":-1,"32904":0,"32905":-1,"32906":-1,"32907":0,"32908":0,"32909":0,"32910":-1,"32911":-1,"32912":0,"32913":168,"32914":0,"32915":-1,"32916":176,"32917":-1,"32918":284,"32919":-1,"32920":0,"32921":-1,"32922":0,"32923":-1,"32924":0,"32925":0,"32926":0,"32927":0,"32928":0,"32929":-1,"32930":-1,"32931":0,"32932":7,"32933":0,"32934":0,"32935":0,"32936":0,"32937":0,"32938":-1,"32939":0,"32940":0,"32941":0,"32942":0,"32943":0,"32944":370,"32945":0,"32946":0,"32947":0,"32948":-1,"32949":1464,"32950":-1,"32951":0,"32952":-1,"32953":0,"32954":0,"32955":0,"32956":0,"32957":-1,"32958":-1,"32959":-1,"32960":0,"32961":0,"32962":1458,"32963":1388,"32964":0,"32965":241,"32966":-1,"32967":0,"32968":-1,"32969":-1,"32970":1524,"32971":1358,"32972":0,"32973":-1,"32974":0,"32975":152,"32976":0,"32977":0,"32978":329,"32979":0,"32980":0,"32981":0,"32982":-1,"32983":-1,"32984":0,"32985":1368,"32986":0,"32987":0,"32988":0,"32989":-1,"32990":1530,"32991":-1,"32992":-1,"32993":51,"32994":0,"32995":142,"32996":160,"32997":1409,"32998":0,"32999":-1,"33000":0,"33001":26,"33002":-1,"33003":-1,"33004":0,"33005":1554,"33006":0,"33007":1462,"33008":270,"33009":0,"33010":125,"33011":-1,"33012":-1,"33013":-1,"33014":0,"33015":0,"33016":-1,"33017":0,"33018":-1,"33019":0,"33020":-1,"33021":0,"33022":0,"33023":-1,"33024":17,"33025":1329,"33026":-1,"33027":0,"33028":0,"33029":-1,"33030":0,"33031":-1,"33032":0,"33033":1581,"33034":0,"33035":0,"33036":0,"33037":0,"33038":0,"33039":-1,"33040":-1,"33041":0,"33042":-1,"33043":-1,"33044":-1,"33045":1398,"33046":0,"33047":253,"33048":1379,"33049":0,"33050":0,"33051":-1,"33052":211,"33053":-1,"33054":38,"33055":1433,"33056":-1,"33057":0,"33058":-1,"33059":0,"33060":1332,"33061":0,"33062":1568,"33063":-1,"33064":1387,"33065":-1,"33066":0,"33067":0,"33068":0,"33069":-1,"33070":0,"33071":0,"33072":-1,"33073":0,"33074":0,"33075":1320,"33076":1380,"33077":0,"33078":20,"33079":0,"33080":0,"33081":0,"33082":282,"33083":0,"33084":1430,"33085":0,"33086":0,"33087":-1,"33088":1439,"33089":0,"33090":-1,"33091":0,"33092":-1,"33093":0,"33094":0,"33095":-1,"33096":0,"33097":0,"33098":0,"33099":0,"33100":0,"33101":0,"33102":0,"33103":-1,"33104":1480,"33105":-1,"33106":0,"33107":0,"33108":0,"33109":-1,"33110":1464,"33111":-1,"33112":0,"33113":0,"33114":186,"33115":1536,"33116":0,"33117":-1,"33118":0,"33119":0,"33120":0,"33121":-1,"33122":0,"33123":0,"33124":1510,"33125":21,"33126":0,"33127":1310,"33128":1504,"33129":0,"33130":1404,"33131":0,"33132":-1,"33133":0,"33134":21,"33135":-1,"33136":235,"33137":-1,"33138":-1,"33139":-1,"33140":-1,"33141":252,"33142":-1,"33143":1539,"33144":0,"33145":0,"33146":0,"33147":0,"33148":-1,"33149":0,"33150":0,"33151":-1,"33152":0,"33153":-1,"33154":0,"33155":0,"33156":-1,"33157":0,"33158":-1,"33159":-1,"33160":-1,"33161":0,"33162":0,"33163":-1,"33164":1390,"33165":-1,"33166":-1,"33167":-1,"33168":-1,"33169":-1,"33170":-1,"33171":0,"33172":0,"33173":0,"33174":0,"33175":1548,"33176":1366,"33177":0,"33178":0,"33179":0,"33180":0,"33181":0,"33182":0,"33183":0,"33184":1495,"33185":0,"33186":0,"33187":-1,"33188":-1,"33189":0,"33190":1380,"33191":0,"33192":0,"33193":0,"33194":10,"33195":-1,"33196":1506,"33197":241,"33198":127,"33199":0,"33200":-1,"33201":157,"33202":1452,"33203":-1,"33204":0,"33205":-1,"33206":41,"33207":1312,"33208":0,"33209":-1,"33210":0,"33211":1379,"33212":1305,"33213":0,"33214":-1,"33215":0,"33216":235,"33217":-1,"33218":140,"33219":0,"33220":-1,"33221":1521,"33222":0,"33223":-1,"33224":67,"33225":57,"33226":0,"33227":0,"33228":-1,"33229":-1,"33230":-1,"33231":-1,"33232":173,"33233":-1,"33234":0,"33235":0,"33236":0,"33237":241,"33238":23,"33239":-1,"33240":135,"33241":-1,"33242":-1,"33243":0,"33244":32,"33245":0,"33246":0,"33247":-1,"33248":378,"33249":-1,"33250":-1,"33251":-1,"33252":-1,"33253":0,"33254":0,"33255":0,"33256":56,"33257":-1,"33258":-1,"33259":-1,"33260":13,"33261":-1,"33262":0,"33263":1437,"33264":246,"33265":0,"33266":0,"33267":0,"33268":0,"33269":-1,"33270":0,"33271":123,"33272":-1,"33273":0,"33274":0,"33275":-1,"33276":0,"33277":0,"33278":0,"33279":1351,"33280":-1,"33281":0,"33282":1438,"33283":-1,"33284":-1,"33285":1399,"33286":0,"33287":-1,"33288":200,"33289":0,"33290":1353,"33291":0,"33292":0,"33293":116,"33294":-1,"33295":-1,"33296":0,"33297":267,"33298":0,"33299":197,"33300":230,"33301":0,"33302":-1,"33303":1383,"33304":-1,"33305":-1,"33306":-1,"33307":0,"33308":0,"33309":1537,"33310":1430,"33311":-1,"33312":0,"33313":0,"33314":0,"33315":33,"33316":0,"33317":-1,"33318":-1,"33319":0,"33320":1537,"33321":-1,"33322":0,"33323":-1,"33324":-1,"33325":0,"33326":0,"33327":-1,"33328":16,"33329":0,"33330":341,"33331":-1,"33332":0,"33333":0,"33334":1302,"33335":0,"33336":-1,"33337":1409,"33338":0,"33339":-1,"33340":-1,"33341":-1,"33342":-1,"33343":0,"33344":136,"33345":-1,"33346":-1,"33347":0,"33348":0,"33349":0,"33350":0,"33351":146,"33352":0,"33353":-1,"33354":0,"33355":-1,"33356":0,"33357":-1,"33358":1310,"33359":-1,"33360":92,"33361":0,"33362":0,"33363":-1,"33364":158,"33365":-1,"33366":-1,"33367":0,"33368":50,"33369":111,"33370":-1,"33371":-1,"33372":-1,"33373":1394,"33374":1395,"33375":0,"33376":0,"33377":0,"33378":0,"33379":1457,"33380":-1,"33381":0,"33382":-1,"33383":368,"33384":0,"33385":-1,"33386":0,"33387":119,"33388":167,"33389":-1,"33390":0,"33391":-1,"33392":0,"33393":-1,"33394":-1,"33395":0,"33396":0,"33397":0,"33398":-1,"33399":0,"33400":0,"33401":0,"33402":-1,"33403":-1,"33404":-1,"33405":0,"33406":-1,"33407":0,"33408":43,"33409":0,"33410":-1,"33411":0,"33412":0,"33413":0,"33414":0,"33415":0,"33416":0,"33417":1386,"33418":406,"33419":74,"33420":0,"33421":-1,"33422":0,"33423":-1,"33424":-1,"33425":37,"33426":0,"33427":-1,"33428":1523,"33429":0,"33430":-1,"33431":0,"33432":0,"33433":1466,"33434":0,"33435":0,"33436":0,"33437":-1,"33438":0,"33439":0,"33440":0,"33441":0,"33442":-1,"33443":0,"33444":0,"33445":0,"33446":112,"33447":-1,"33448":328,"33449":301,"33450":0,"33451":0,"33452":196,"33453":-1,"33454":-1,"33455":-1,"33456":0,"33457":-1,"33458":-1,"33459":0,"33460":-1,"33461":1363,"33462":283,"33463":0,"33464":1443,"33465":1380,"33466":58,"33467":0,"33468":0,"33469":0,"33470":-1,"33471":1441,"33472":1566,"33473":0,"33474":0,"33475":12,"33476":-1,"33477":368,"33478":0,"33479":166,"33480":0,"33481":0,"33482":0,"33483":142,"33484":0,"33485":0,"33486":-1,"33487":0,"33488":89,"33489":-1,"33490":0,"33491":-1,"33492":-1,"33493":1536,"33494":-1,"33495":37,"33496":0,"33497":0,"33498":-1,"33499":298,"33500":-1,"33501":-1,"33502":0,"33503":1358,"33504":0,"33505":0,"33506":0,"33507":-1,"33508":1306,"33509":0,"33510":0,"33511":54,"33512":-1,"33513":1325,"33514":-1,"33515":1538,"33516":0,"33517":0,"33518":1524,"33519":0,"33520":0,"33521":1565,"33522":-1,"33523":-1,"33524":0,"33525":0,"33526":216,"33527":0,"33528":140,"33529":-1,"33530":0,"33531":-1,"33532":0,"33533":226,"33534":0,"33535":0,"33536":-1,"33537":0,"33538":-1,"33539":1386,"33540":235,"33541":0,"33542":0,"33543":-1,"33544":-1,"33545":-1,"33546":0,"33547":0,"33548":-1,"33549":-1,"33550":0,"33551":1565,"33552":-1,"33553":-1,"33554":-1,"33555":186,"33556":0,"33557":0,"33558":1549,"33559":-1,"33560":-1,"33561":0,"33562":240,"33563":0,"33564":0,"33565":0,"33566":-1,"33567":0,"33568":47,"33569":-1,"33570":0,"33571":-1,"33572":0,"33573":186,"33574":0,"33575":0,"33576":-1,"33577":-1,"33578":1329,"33579":162,"33580":0,"33581":1564,"33582":0,"33583":0,"33584":0,"33585":0,"33586":-1,"33587":0,"33588":-1,"33589":2,"33590":0,"33591":0,"33592":-1,"33593":0,"33594":0,"33595":0,"33596":0,"33597":1482,"33598":-1,"33599":1353,"33600":-1,"33601":167,"33602":0,"33603":0,"33604":0,"33605":0,"33606":0,"33607":0,"33608":0,"33609":-1,"33610":0,"33611":-1,"33612":0,"33613":0,"33614":1519,"33615":1551,"33616":-1,"33617":-1,"33618":-1,"33619":239,"33620":0,"33621":-1,"33622":0,"33623":0,"33624":1409,"33625":0,"33626":-1,"33627":0,"33628":-1,"33629":135,"33630":0,"33631":0,"33632":187,"33633":1470,"33634":0,"33635":-1,"33636":0,"33637":-1,"33638":201,"33639":0,"33640":-1,"33641":234,"33642":0,"33643":0,"33644":248,"33645":-1,"33646":0,"33647":0,"33648":0,"33649":271,"33650":0,"33651":52,"33652":-1,"33653":0,"33654":-1,"33655":-1,"33656":0,"33657":224,"33658":1315,"33659":-1,"33660":-1,"33661":0,"33662":-1,"33663":0,"33664":1396,"33665":0,"33666":347,"33667":0,"33668":0,"33669":64,"33670":287,"33671":174,"33672":342,"33673":1543,"33674":-1,"33675":1346,"33676":-1,"33677":1528,"33678":-1,"33679":0,"33680":-1,"33681":0,"33682":1304,"33683":0,"33684":46,"33685":0,"33686":0,"33687":1515,"33688":1390,"33689":322,"33690":1505,"33691":0,"33692":284,"33693":252,"33694":0,"33695":-1,"33696":-1,"33697":0,"33698":-1,"33699":-1,"33700":-1,"33701":-1,"33702":46,"33703":88,"33704":1300,"33705":1331,"33706":-1,"33707":-1,"33708":40,"33709":0,"33710":0,"33711":0,"33712":438,"33713":3,"33714":0,"33715":-1,"33716":-1,"33717":329,"33718":93,"33719":-1,"33720":0,"33721":0,"33722":-1,"33723":0,"33724":-1,"33725":0,"33726":1545,"33727":-1,"33728":0,"33729":-1,"33730":1314,"33731":0,"33732":1509,"33733":149,"33734":-1,"33735":0,"33736":0,"33737":-1,"33738":145,"33739":1543,"33740":-1,"33741":0,"33742":1302,"33743":0,"33744":0,"33745":0,"33746":1312,"33747":221,"33748":-1,"33749":0,"33750":0,"33751":-1,"33752":56,"33753":1448,"33754":0,"33755":0,"33756":0,"33757":0,"33758":134,"33759":0,"33760":-1,"33761":-1,"33762":-1,"33763":-1,"33764":-1,"33765":0,"33766":18,"33767":0,"33768":-1,"33769":1415,"33770":0,"33771":202,"33772":40,"33773":0,"33774":28,"33775":-1,"33776":0,"33777":1572,"33778":0,"33779":-1,"33780":-1,"33781":-1,"33782":-1,"33783":0,"33784":1413,"33785":-1,"33786":1473,"33787":0,"33788":0,"33789":-1,"33790":1340,"33791":0,"33792":-1,"33793":0,"33794":0,"33795":0,"33796":10,"33797":0,"33798":0,"33799":-1,"33800":0,"33801":0,"33802":1326,"33803":270,"33804":-1,"33805":0,"33806":0,"33807":0,"33808":0,"33809":76,"33810":33,"33811":0,"33812":0,"33813":0,"33814":167,"33815":0,"33816":0,"33817":-1,"33818":1427,"33819":0,"33820":1318,"33821":0,"33822":0,"33823":160,"33824":1435,"33825":73,"33826":1310,"33827":0,"33828":347,"33829":0,"33830":0,"33831":0,"33832":0,"33833":1513,"33834":0,"33835":314,"33836":0,"33837":-1,"33838":0,"33839":1425,"33840":0,"33841":0,"33842":0,"33843":0,"33844":0,"33845":-1,"33846":0,"33847":-1,"33848":0,"33849":0,"33850":0,"33851":0,"33852":-1,"33853":-1,"33854":0,"33855":0,"33856":0,"33857":214,"33858":0,"33859":0,"33860":0,"33861":0,"33862":0,"33863":-1,"33864":0,"33865":0,"33866":-1,"33867":-1,"33868":-1,"33869":0,"33870":0,"33871":1324,"33872":70,"33873":0,"33874":0,"33875":0,"33876":0,"33877":0,"33878":-1,"33879":0,"33880":-1,"33881":1497,"33882":1481,"33883":-1,"33884":4,"33885":-1,"33886":0,"33887":-1,"33888":368,"33889":0,"33890":-1,"33891":0,"33892":0,"33893":1383,"33894":128,"33895":0,"33896":0,"33897":0,"33898":481,"33899":-1,"33900":-1,"33901":0,"33902":-1,"33903":0,"33904":-1,"33905":-1,"33906":0,"33907":0,"33908":360,"33909":343,"33910":1562,"33911":0,"33912":-1,"33913":1351,"33914":0,"33915":0,"33916":1409,"33917":0,"33918":-1,"33919":1436,"33920":76,"33921":0,"33922":0,"33923":0,"33924":-1,"33925":-1,"33926":-1,"33927":120,"33928":0,"33929":0,"33930":0,"33931":1334,"33932":0,"33933":0,"33934":0,"33935":0,"33936":0,"33937":0,"33938":0,"33939":0,"33940":0,"33941":0,"33942":0,"33943":-1,"33944":1570,"33945":0,"33946":0,"33947":0,"33948":0,"33949":0,"33950":0,"33951":0,"33952":0,"33953":1394,"33954":1356,"33955":-1,"33956":11,"33957":0,"33958":-1,"33959":0,"33960":195,"33961":1448,"33962":0,"33963":0,"33964":0,"33965":-1,"33966":0,"33967":-1,"33968":0,"33969":0,"33970":-1,"33971":-1,"33972":0,"33973":203,"33974":-1,"33975":0,"33976":0,"33977":1503,"33978":-1,"33979":-1,"33980":241,"33981":0,"33982":-1,"33983":347,"33984":-1,"33985":-1,"33986":-1,"33987":73,"33988":-1,"33989":-1,"33990":0,"33991":-1,"33992":6,"33993":0,"33994":0,"33995":0,"33996":1466,"33997":0,"33998":-1,"33999":0,"34000":0,"34001":-1,"34002":0,"34003":0,"34004":-1,"34005":0,"34006":0,"34007":0,"34008":0,"34009":0,"34010":1579,"34011":0,"34012":44,"34013":-1,"34014":-1,"34015":0,"34016":6,"34017":-1,"34018":-1,"34019":0,"34020":-1,"34021":-1,"34022":-1,"34023":46,"34024":1448,"34025":0,"34026":0,"34027":0,"34028":0,"34029":0,"34030":0,"34031":-1,"34032":1345,"34033":0,"34034":-1,"34035":144,"34036":1445,"34037":329,"34038":0,"34039":-1,"34040":0,"34041":0,"34042":0,"34043":0,"34044":-1,"34045":0,"34046":93,"34047":0,"34048":0,"34049":0,"34050":0,"34051":0,"34052":-1,"34053":-1,"34054":0,"34055":-1,"34056":-1,"34057":169,"34058":0,"34059":0,"34060":-1,"34061":0,"34062":-1,"34063":-1,"34064":1369,"34065":-1,"34066":0,"34067":-1,"34068":334,"34069":-1,"34070":0,"34071":0,"34072":0,"34073":1440,"34074":-1,"34075":0,"34076":176,"34077":0,"34078":1492,"34079":-1,"34080":-1,"34081":-1,"34082":-1,"34083":0,"34084":0,"34085":0,"34086":112,"34087":1501,"34088":-1,"34089":0,"34090":0,"34091":330,"34092":0,"34093":-1,"34094":1387,"34095":202,"34096":286,"34097":-1,"34098":0,"34099":-1,"34100":-1,"34101":-1,"34102":-1,"34103":1371,"34104":56,"34105":202,"34106":-1,"34107":-1,"34108":0,"34109":-1,"34110":-1,"34111":-1,"34112":37,"34113":0,"34114":-1,"34115":-1,"34116":-1,"34117":0,"34118":-1,"34119":1386,"34120":0,"34121":0,"34122":1463,"34123":1539,"34124":0,"34125":-1,"34126":0,"34127":0,"34128":0,"34129":0,"34130":-1,"34131":0,"34132":252,"34133":0,"34134":1341,"34135":0,"34136":203,"34137":-1,"34138":0,"34139":0,"34140":0,"34141":-1,"34142":0,"34143":176,"34144":0,"34145":-1,"34146":0,"34147":-1,"34148":0,"34149":-1,"34150":0,"34151":-1,"34152":1539,"34153":0,"34154":195,"34155":0,"34156":0,"34157":-1,"34158":-1,"34159":0,"34160":0,"34161":0,"34162":0,"34163":0,"34164":-1,"34165":1422,"34166":0,"34167":-1,"34168":0,"34169":1514,"34170":0,"34171":1469,"34172":-1,"34173":-1,"34174":-1,"34175":1542,"34176":-1,"34177":0,"34178":-1,"34179":-1,"34180":1523,"34181":-1,"34182":-1,"34183":-1,"34184":0,"34185":1472,"34186":0,"34187":286,"34188":0,"34189":-1,"34190":15,"34191":0,"34192":0,"34193":0,"34194":-1,"34195":-1,"34196":0,"34197":0,"34198":-1,"34199":-1,"34200":103,"34201":0,"34202":-1,"34203":1480,"34204":0,"34205":0,"34206":-1,"34207":0,"34208":-1,"34209":0,"34210":1494,"34211":179,"34212":0,"34213":0,"34214":0,"34215":-1,"34216":-1,"34217":0,"34218":0,"34219":-1,"34220":0,"34221":1417,"34222":0,"34223":0,"34224":-1,"34225":1583,"34226":0,"34227":0,"34228":1408,"34229":175,"34230":346,"34231":0,"34232":0,"34233":0,"34234":20,"34235":0,"34236":-1,"34237":-1,"34238":1413,"34239":1299,"34240":0,"34241":0,"34242":0,"34243":0,"34244":-1,"34245":0,"34246":0,"34247":-1,"34248":0,"34249":0,"34250":1334,"34251":-1,"34252":-1,"34253":199,"34254":-1,"34255":-1,"34256":-1,"34257":-1,"34258":264,"34259":1339,"34260":-1,"34261":273,"34262":-1,"34263":-1,"34264":1400,"34265":0,"34266":262,"34267":-1,"34268":1497,"34269":0,"34270":0,"34271":-1,"34272":102,"34273":0,"34274":0,"34275":0,"34276":-1,"34277":0,"34278":0,"34279":0,"34280":0,"34281":0,"34282":0,"34283":302,"34284":65,"34285":0,"34286":-1,"34287":-1,"34288":0,"34289":0,"34290":-1,"34291":0,"34292":-1,"34293":-1,"34294":0,"34295":0,"34296":264,"34297":0,"34298":0,"34299":-1,"34300":0,"34301":0,"34302":0,"34303":1475,"34304":0,"34305":148,"34306":0,"34307":1573,"34308":1394,"34309":0,"34310":197,"34311":1388,"34312":-1,"34313":0,"34314":1330,"34315":-1,"34316":-1,"34317":0,"34318":0,"34319":-1,"34320":0,"34321":291,"34322":1344,"34323":1545,"34324":-1,"34325":165,"34326":0,"34327":0,"34328":0,"34329":-1,"34330":1474,"34331":-1,"34332":-1,"34333":0,"34334":0,"34335":1478,"34336":202,"34337":0,"34338":-1,"34339":-1,"34340":-1,"34341":0,"34342":111,"34343":0,"34344":0,"34345":0,"34346":0,"34347":1401,"34348":-1,"34349":-1,"34350":-1,"34351":0,"34352":0,"34353":0,"34354":116,"34355":-1,"34356":-1,"34357":-1,"34358":122,"34359":144,"34360":-1,"34361":0,"34362":324,"34363":-1,"34364":0,"34365":0,"34366":0,"34367":-1,"34368":1363,"34369":0,"34370":0,"34371":0,"34372":-1,"34373":-1,"34374":-1,"34375":375,"34376":0,"34377":0,"34378":0,"34379":-1,"34380":-1,"34381":1432,"34382":0,"34383":0,"34384":0,"34385":-1,"34386":-1,"34387":-1,"34388":-1,"34389":302,"34390":-1,"34391":-1,"34392":1549,"34393":-1,"34394":0,"34395":-1,"34396":-1,"34397":-1,"34398":1453,"34399":0,"34400":0,"34401":0,"34402":0,"34403":0,"34404":-1,"34405":-1,"34406":0,"34407":0,"34408":0,"34409":0,"34410":0,"34411":0,"34412":1417,"34413":0,"34414":338,"34415":-1,"34416":0,"34417":0,"34418":271,"34419":-1,"34420":1533,"34421":0,"34422":39,"34423":0,"34424":0,"34425":1325,"34426":0,"34427":0,"34428":271,"34429":0,"34430":197,"34431":1429,"34432":0,"34433":0,"34434":41,"34435":1552,"34436":0,"34437":332,"34438":1522,"34439":-1,"34440":0,"34441":79,"34442":117,"34443":-1,"34444":-1,"34445":1505,"34446":0,"34447":117,"34448":0,"34449":0,"34450":0,"34451":0,"34452":0,"34453":6,"34454":0,"34455":1436,"34456":0,"34457":0,"34458":301,"34459":0,"34460":157,"34461":0,"34462":-1,"34463":-1,"34464":-1,"34465":0,"34466":-1,"34467":0,"34468":1315,"34469":1343,"34470":0,"34471":324,"34472":-1,"34473":0,"34474":1301,"34475":0,"34476":-1,"34477":1575,"34478":0,"34479":-1,"34480":288,"34481":1490,"34482":0,"34483":-1,"34484":1464,"34485":-1,"34486":-1,"34487":1322,"34488":0,"34489":0,"34490":-1,"34491":-1,"34492":0,"34493":0,"34494":-1,"34495":1418,"34496":0,"34497":0,"34498":-1,"34499":-1,"34500":-1,"34501":107,"34502":0,"34503":0,"34504":0,"34505":-1,"34506":0,"34507":313,"34508":0,"34509":182,"34510":216,"34511":-1,"34512":-1,"34513":-1,"34514":131,"34515":1398,"34516":0,"34517":-1,"34518":-1,"34519":-1,"34520":1398,"34521":-1,"34522":0,"34523":371,"34524":0,"34525":0,"34526":0,"34527":6,"34528":0,"34529":109,"34530":-1,"34531":-1,"34532":-1,"34533":1396,"34534":0,"34535":406,"34536":1440,"34537":0,"34538":-1,"34539":-1,"34540":77,"34541":0,"34542":-1,"34543":-1,"34544":0,"34545":0,"34546":-1,"34547":0,"34548":0,"34549":-1,"34550":0,"34551":0,"34552":-1,"34553":0,"34554":0,"34555":-1,"34556":1485,"34557":-1,"34558":-1,"34559":1448,"34560":-1,"34561":-1,"34562":1539,"34563":-1,"34564":0,"34565":1310,"34566":182,"34567":-1,"34568":0,"34569":-1,"34570":1331,"34571":0,"34572":352,"34573":0,"34574":0,"34575":0,"34576":-1,"34577":-1,"34578":-1,"34579":0,"34580":324,"34581":-1,"34582":1311,"34583":-1,"34584":299,"34585":0,"34586":237,"34587":0,"34588":0,"34589":-1,"34590":-1,"34591":365,"34592":0,"34593":385,"34594":372,"34595":0,"34596":-1,"34597":-1,"34598":-1,"34599":-1,"34600":-1,"34601":-1,"34602":-1,"34603":0,"34604":365,"34605":79,"34606":0,"34607":0,"34608":1486,"34609":0,"34610":0,"34611":0,"34612":0,"34613":0,"34614":-1,"34615":-1,"34616":-1,"34617":-1,"34618":0,"34619":0,"34620":0,"34621":0,"34622":0,"34623":157,"34624":29,"34625":0,"34626":-1,"34627":0,"34628":0,"34629":0,"34630":303,"34631":-1,"34632":0,"34633":1496,"34634":0,"34635":1573,"34636":0,"34637":-1,"34638":0,"34639":-1,"34640":-1,"34641":0,"34642":0,"34643":-1,"34644":0,"34645":0,"34646":0,"34647":0,"34648":-1,"34649":1577,"34650":0,"34651":0,"34652":0,"34653":1315,"34654":0,"34655":-1,"34656":0,"34657":1358,"34658":-1,"34659":0,"34660":0,"34661":285,"34662":0,"34663":-1,"34664":0,"34665":-1,"34666":0,"34667":0,"34668":-1,"34669":1323,"34670":0,"34671":-1,"34672":-1,"34673":-1,"34674":-1,"34675":0,"34676":0,"34677":-1,"34678":81,"34679":0,"34680":78,"34681":0,"34682":1312,"34683":1560,"34684":0,"34685":-1,"34686":-1,"34687":0,"34688":0,"34689":288,"34690":0,"34691":-1,"34692":-1,"34693":1397,"34694":153,"34695":-1,"34696":1449,"34697":0,"34698":68,"34699":248,"34700":0,"34701":0,"34702":-1,"34703":1491,"34704":0,"34705":0,"34706":-1,"34707":0,"34708":0,"34709":1384,"34710":0,"34711":-1,"34712":-1,"34713":0,"34714":0,"34715":-1,"34716":0,"34717":-1,"34718":0,"34719":289,"34720":0,"34721":-1,"34722":1494,"34723":-1,"34724":1339,"34725":0,"34726":1436,"34727":-1,"34728":0,"34729":0,"34730":47,"34731":-1,"34732":244,"34733":-1,"34734":-1,"34735":0,"34736":-1,"34737":0,"34738":0,"34739":10,"34740":-1,"34741":-1,"34742":-1,"34743":-1,"34744":-1,"34745":-1,"34746":-1,"34747":0,"34748":0,"34749":-1,"34750":1311,"34751":-1,"34752":-1,"34753":0,"34754":24,"34755":0,"34756":1569,"34757":-1,"34758":75,"34759":-1,"34760":0,"34761":0,"34762":0,"34763":0,"34764":57,"34765":0,"34766":-1,"34767":0,"34768":-1,"34769":-1,"34770":1360,"34771":-1,"34772":-1,"34773":86,"34774":0,"34775":1509,"34776":-1,"34777":-1,"34778":-1,"34779":-1,"34780":323,"34781":-1,"34782":0,"34783":0,"34784":1538,"34785":0,"34786":1419,"34787":-1,"34788":0,"34789":0,"34790":0,"34791":240,"34792":0,"34793":0,"34794":-1,"34795":313,"34796":-1,"34797":0,"34798":0,"34799":-1,"34800":159,"34801":-1,"34802":1520,"34803":-1,"34804":0,"34805":0,"34806":0,"34807":0,"34808":385,"34809":1403,"34810":0,"34811":0,"34812":332,"34813":201,"34814":0,"34815":182,"34816":0,"34817":-1,"34818":101,"34819":88,"34820":-1,"34821":1372,"34822":0,"34823":50,"34824":0,"34825":-1,"34826":-1,"34827":0,"34828":-1,"34829":-1,"34830":0,"34831":0,"34832":0,"34833":158,"34834":0,"34835":-1,"34836":1491,"34837":0,"34838":-1,"34839":42,"34840":0,"34841":0,"34842":-1,"34843":0,"34844":0,"34845":1410,"34846":0,"34847":149,"34848":0,"34849":-1,"34850":-1,"34851":122,"34852":1428,"34853":-1,"34854":1359,"34855":0,"34856":0,"34857":-1,"34858":-1,"34859":-1,"34860":-1,"34861":-1,"34862":0,"34863":-1,"34864":-1,"34865":0,"34866":52,"34867":0,"34868":0,"34869":1435,"34870":-1,"34871":-1,"34872":-1,"34873":51,"34874":0,"34875":0,"34876":1478,"34877":1582,"34878":0,"34879":1476,"34880":-1,"34881":0,"34882":-1,"34883":1429,"34884":-1,"34885":0,"34886":-1,"34887":-1,"34888":1570,"34889":0,"34890":0,"34891":-1,"34892":-1,"34893":0,"34894":-1,"34895":0,"34896":-1,"34897":1423,"34898":76,"34899":0,"34900":0,"34901":1532,"34902":1458,"34903":172,"34904":0,"34905":1578,"34906":-1,"34907":0,"34908":-1,"34909":-1,"34910":1373,"34911":252,"34912":270,"34913":0,"34914":0,"34915":-1,"34916":0,"34917":0,"34918":-1,"34919":18,"34920":0,"34921":0,"34922":1472,"34923":0,"34924":0,"34925":-1,"34926":0,"34927":-1,"34928":1533,"34929":0,"34930":-1,"34931":0,"34932":0,"34933":-1,"34934":1358,"34935":0,"34936":0,"34937":-1,"34938":1571,"34939":0,"34940":1460,"34941":0,"34942":1389,"34943":0,"34944":-1,"34945":-1,"34946":0,"34947":0,"34948":1329,"34949":1579,"34950":0,"34951":0,"34952":-1,"34953":0,"34954":1376,"34955":0,"34956":0,"34957":1566,"34958":1332,"34959":0,"34960":0,"34961":0,"34962":1457,"34963":1466,"34964":1459,"34965":222,"34966":261,"34967":207,"34968":-1,"34969":0,"34970":0,"34971":-1,"34972":134,"34973":0,"34974":132,"34975":0,"34976":94,"34977":-1,"34978":1552,"34979":0,"34980":-1,"34981":1346,"34982":207,"34983":1542,"34984":0,"34985":0,"34986":0,"34987":-1,"34988":0,"34989":-1,"34990":-1,"34991":-1,"34992":0,"34993":0,"34994":0,"34995":0,"34996":-1,"34997":0,"34998":-1,"34999":0,"35000":0,"35001":-1,"35002":312,"35003":0,"35004":-1,"35005":0,"35006":0,"35007":0,"35008":-1,"35009":0,"35010":0,"35011":0,"35012":0,"35013":-1,"35014":350,"35015":0,"35016":-1,"35017":-1,"35018":-1,"35019":0,"35020":0,"35021":314,"35022":0,"35023":1477,"35024":201,"35025":0,"35026":1560,"35027":1548,"35028":0,"35029":122,"35030":0,"35031":0,"35032":0,"35033":1582,"35034":0,"35035":0,"35036":1376,"35037":0,"35038":1519,"35039":0,"35040":0,"35041":1464,"35042":0,"35043":101,"35044":255,"35045":0,"35046":-1,"35047":-1,"35048":1544,"35049":-1,"35050":-1,"35051":0,"35052":0,"35053":0,"35054":-1,"35055":0,"35056":0,"35057":0,"35058":186,"35059":1426,"35060":217,"35061":0,"35062":-1,"35063":-1,"35064":0,"35065":1344,"35066":-1,"35067":0,"35068":293,"35069":0,"35070":9,"35071":-1,"35072":1423,"35073":0,"35074":339,"35075":0,"35076":0,"35077":0,"35078":122,"35079":0,"35080":0,"35081":0,"35082":0,"35083":324,"35084":-1,"35085":0,"35086":1337,"35087":0,"35088":0,"35089":-1,"35090":347,"35091":0,"35092":28,"35093":0,"35094":0,"35095":0,"35096":-1,"35097":-1,"35098":-1,"35099":0,"35100":406,"35101":48,"35102":0,"35103":0,"35104":77,"35105":-1,"35106":1326,"35107":-1,"35108":203,"35109":0,"35110":0,"35111":-1,"35112":0,"35113":-1,"35114":0,"35115":0,"35116":1328,"35117":1530,"35118":172,"35119":1511,"35120":0,"35121":-1,"35122":-1,"35123":372,"35124":-1,"35125":0,"35126":0,"35127":0,"35128":53,"35129":1394,"35130":0,"35131":-1,"35132":0,"35133":0,"35134":0,"35135":0,"35136":-1,"35137":211,"35138":337,"35139":1433,"35140":0,"35141":0,"35142":24,"35143":0,"35144":0,"35145":0,"35146":-1,"35147":1484,"35148":0,"35149":0,"35150":-1,"35151":-1,"35152":195,"35153":0,"35154":0,"35155":0,"35156":-1,"35157":0,"35158":0,"35159":1315,"35160":1390,"35161":32,"35162":-1,"35163":-1,"35164":26,"35165":0,"35166":0,"35167":0,"35168":-1,"35169":0,"35170":-1,"35171":0,"35172":128,"35173":-1,"35174":0,"35175":0,"35176":0,"35177":0,"35178":-1,"35179":0,"35180":-1,"35181":0,"35182":0,"35183":0,"35184":0,"35185":-1,"35186":-1,"35187":0,"35188":0,"35189":-1,"35190":-1,"35191":1409,"35192":-1,"35193":0,"35194":0,"35195":-1,"35196":1549,"35197":-1,"35198":0,"35199":-1,"35200":0,"35201":0,"35202":1505,"35203":0,"35204":0,"35205":-1,"35206":-1,"35207":1456,"35208":-1,"35209":-1,"35210":0,"35211":-1,"35212":1509,"35213":195,"35214":0,"35215":0,"35216":0,"35217":-1,"35218":0,"35219":1389,"35220":0,"35221":0,"35222":-1,"35223":0,"35224":103,"35225":378,"35226":-1,"35227":25,"35228":0,"35229":1580,"35230":0,"35231":0,"35232":66,"35233":87,"35234":0,"35235":0,"35236":0,"35237":196,"35238":0,"35239":-1,"35240":0,"35241":0,"35242":-1,"35243":0,"35244":0,"35245":0,"35246":0,"35247":-1,"35248":0,"35249":0,"35250":0,"35251":0,"35252":0,"35253":0,"35254":-1,"35255":-1,"35256":-1,"35257":0,"35258":0,"35259":161,"35260":199,"35261":0,"35262":343,"35263":112,"35264":0,"35265":28,"35266":9,"35267":-1,"35268":-1,"35269":-1,"35270":-1,"35271":0,"35272":-1,"35273":0,"35274":1434,"35275":-1,"35276":0,"35277":0,"35278":1494,"35279":-1,"35280":0,"35281":1545,"35282":-1,"35283":-1,"35284":-1,"35285":-1,"35286":-1,"35287":103,"35288":-1,"35289":312,"35290":-1,"35291":0,"35292":0,"35293":-1,"35294":-1,"35295":0,"35296":1537,"35297":-1,"35298":-1,"35299":-1,"35300":0,"35301":0,"35302":0,"35303":0,"35304":-1,"35305":0,"35306":-1,"35307":-1,"35308":0,"35309":0,"35310":1548,"35311":-1,"35312":248,"35313":-1,"35314":0,"35315":1489,"35316":-1,"35317":-1,"35318":0,"35319":-1,"35320":161,"35321":1483,"35322":228,"35323":-1,"35324":-1,"35325":0,"35326":0,"35327":262,"35328":-1,"35329":-1,"35330":-1,"35331":1396,"35332":1515,"35333":-1,"35334":-1,"35335":302,"35336":0,"35337":-1,"35338":0,"35339":1562,"35340":0,"35341":-1,"35342":0,"35343":-1,"35344":190,"35345":-1,"35346":1498,"35347":323,"35348":264,"35349":92,"35350":-1,"35351":-1,"35352":0,"35353":-1,"35354":1305,"35355":0,"35356":-1,"35357":0,"35358":-1,"35359":41,"35360":0,"35361":-1,"35362":-1,"35363":0,"35364":42,"35365":-1,"35366":0,"35367":163,"35368":1343,"35369":1401,"35370":-1,"35371":-1,"35372":-1,"35373":1475,"35374":0,"35375":0,"35376":228,"35377":0,"35378":-1,"35379":0,"35380":0,"35381":1471,"35382":-1,"35383":-1,"35384":-1,"35385":0,"35386":56,"35387":0,"35388":0,"35389":-1,"35390":-1,"35391":-1,"35392":0,"35393":1353,"35394":0,"35395":0,"35396":350,"35397":45,"35398":-1,"35399":-1,"35400":-1,"35401":0,"35402":86,"35403":0,"35404":0,"35405":366,"35406":1332,"35407":123,"35408":1328,"35409":-1,"35410":0,"35411":429,"35412":0,"35413":0,"35414":-1,"35415":148,"35416":1419,"35417":38,"35418":0,"35419":1452,"35420":0,"35421":0,"35422":1555,"35423":0,"35424":-1,"35425":1466,"35426":360,"35427":137,"35428":0,"35429":0,"35430":1546,"35431":281,"35432":0,"35433":-1,"35434":0,"35435":1556,"35436":0,"35437":-1,"35438":0,"35439":1362,"35440":0,"35441":0,"35442":88,"35443":-1,"35444":-1,"35445":0,"35446":-1,"35447":-1,"35448":-1,"35449":-1,"35450":-1,"35451":-1,"35452":-1,"35453":0,"35454":0,"35455":0,"35456":0,"35457":-1,"35458":-1,"35459":0,"35460":-1,"35461":-1,"35462":-1,"35463":-1,"35464":-1,"35465":330,"35466":-1,"35467":-1,"35468":0,"35469":197,"35470":0,"35471":0,"35472":0,"35473":0,"35474":0,"35475":0,"35476":0,"35477":-1,"35478":0,"35479":0,"35480":246,"35481":0,"35482":0,"35483":0,"35484":0,"35485":0,"35486":298,"35487":0,"35488":0,"35489":0,"35490":0,"35491":175,"35492":-1,"35493":-1,"35494":-1,"35495":0,"35496":1298,"35497":0,"35498":0,"35499":14,"35500":0,"35501":1574,"35502":322,"35503":-1,"35504":0,"35505":-1,"35506":0,"35507":0,"35508":0,"35509":0,"35510":1407,"35511":194,"35512":1368,"35513":0,"35514":-1,"35515":-1,"35516":-1,"35517":-1,"35518":-1,"35519":0,"35520":-1,"35521":0,"35522":29,"35523":0,"35524":0,"35525":0,"35526":0,"35527":0,"35528":0,"35529":1500,"35530":0,"35531":-1,"35532":-1,"35533":0,"35534":-1,"35535":-1,"35536":-1,"35537":0,"35538":-1,"35539":1299,"35540":1497,"35541":0,"35542":-1,"35543":0,"35544":248,"35545":0,"35546":-1,"35547":0,"35548":-1,"35549":0,"35550":0,"35551":-1,"35552":-1,"35553":0,"35554":0,"35555":0,"35556":0,"35557":0,"35558":133,"35559":1536,"35560":0,"35561":1552,"35562":122,"35563":1352,"35564":-1,"35565":117,"35566":0,"35567":-1,"35568":-1,"35569":-1,"35570":155,"35571":0,"35572":0,"35573":199,"35574":1503,"35575":15,"35576":-1,"35577":342,"35578":28,"35579":0,"35580":200,"35581":-1,"35582":0,"35583":-1,"35584":0,"35585":-1,"35586":0,"35587":38,"35588":0,"35589":0,"35590":0,"35591":0,"35592":1307,"35593":-1,"35594":0,"35595":0,"35596":0,"35597":47,"35598":0,"35599":0,"35600":0,"35601":0,"35602":1471,"35603":1480,"35604":-1,"35605":0,"35606":0,"35607":0,"35608":0,"35609":266,"35610":0,"35611":-1,"35612":-1,"35613":0,"35614":-1,"35615":160,"35616":-1,"35617":1419,"35618":-1,"35619":-1,"35620":-1,"35621":0,"35622":0,"35623":235,"35624":0,"35625":0,"35626":0,"35627":0,"35628":0,"35629":-1,"35630":1492,"35631":1514,"35632":-1,"35633":1449,"35634":0,"35635":1531,"35636":-1,"35637":1367,"35638":0,"35639":1411,"35640":-1,"35641":-1,"35642":0,"35643":0,"35644":0,"35645":0,"35646":438,"35647":0,"35648":0,"35649":-1,"35650":-1,"35651":1360,"35652":0,"35653":0,"35654":-1,"35655":285,"35656":0,"35657":159,"35658":0,"35659":-1,"35660":0,"35661":-1,"35662":0,"35663":-1,"35664":0,"35665":0,"35666":-1,"35667":0,"35668":0,"35669":0,"35670":-1,"35671":0,"35672":0,"35673":1510,"35674":0,"35675":0,"35676":7,"35677":-1,"35678":-1,"35679":-1,"35680":-1,"35681":86,"35682":0,"35683":0,"35684":0,"35685":-1,"35686":0,"35687":-1,"35688":0,"35689":119,"35690":-1,"35691":0,"35692":64,"35693":0,"35694":0,"35695":295,"35696":-1,"35697":-1,"35698":0,"35699":0,"35700":0,"35701":0,"35702":-1,"35703":0,"35704":-1,"35705":0,"35706":0,"35707":0,"35708":-1,"35709":0,"35710":1422,"35711":-1,"35712":0,"35713":1534,"35714":0,"35715":0,"35716":-1,"35717":0,"35718":1397,"35719":-1,"35720":-1,"35721":0,"35722":0,"35723":0,"35724":-1,"35725":0,"35726":0,"35727":0,"35728":1536,"35729":0,"35730":0,"35731":0,"35732":0,"35733":87,"35734":0,"35735":-1,"35736":0,"35737":0,"35738":-1,"35739":-1,"35740":0,"35741":-1,"35742":182,"35743":-1,"35744":0,"35745":0,"35746":1450,"35747":0,"35748":1299,"35749":-1,"35750":0,"35751":-1,"35752":0,"35753":0,"35754":0,"35755":0,"35756":-1,"35757":14,"35758":0,"35759":-1,"35760":0,"35761":0,"35762":-1,"35763":0,"35764":-1,"35765":-1,"35766":129,"35767":0,"35768":0,"35769":-1,"35770":0,"35771":0,"35772":0,"35773":-1,"35774":1447,"35775":94,"35776":70,"35777":1474,"35778":131,"35779":0,"35780":375,"35781":1555,"35782":0,"35783":1414,"35784":-1,"35785":-1,"35786":0,"35787":-1,"35788":0,"35789":1358,"35790":125,"35791":0,"35792":0,"35793":0,"35794":-1,"35795":-1,"35796":-1,"35797":0,"35798":1504,"35799":0,"35800":-1,"35801":0,"35802":0,"35803":0,"35804":-1,"35805":1485,"35806":-1,"35807":-1,"35808":1433,"35809":0,"35810":1512,"35811":332,"35812":0,"35813":0,"35814":-1,"35815":0,"35816":0,"35817":-1,"35818":0,"35819":1514,"35820":1300,"35821":0,"35822":0,"35823":1574,"35824":-1,"35825":0,"35826":-1,"35827":0,"35828":206,"35829":0,"35830":0,"35831":0,"35832":-1,"35833":125,"35834":0,"35835":0,"35836":-1,"35837":-1,"35838":0,"35839":0,"35840":0,"35841":1529,"35842":1360,"35843":0,"35844":1360,"35845":-1,"35846":1368,"35847":1390,"35848":0,"35849":1463,"35850":0,"35851":-1,"35852":0,"35853":0,"35854":1548,"35855":-1,"35856":0,"35857":0,"35858":1389,"35859":0,"35860":0,"35861":350,"35862":0,"35863":1317,"35864":0,"35865":-1,"35866":-1,"35867":0,"35868":0,"35869":-1,"35870":0,"35871":-1,"35872":0,"35873":1385,"35874":1367,"35875":-1,"35876":0,"35877":-1,"35878":253,"35879":-1,"35880":288,"35881":-1,"35882":0,"35883":-1,"35884":1528,"35885":0,"35886":-1,"35887":1480,"35888":0,"35889":-1,"35890":-1,"35891":0,"35892":0,"35893":0,"35894":1459,"35895":0,"35896":1503,"35897":0,"35898":0,"35899":0,"35900":-1,"35901":0,"35902":0,"35903":1562,"35904":219,"35905":-1,"35906":0,"35907":0,"35908":0,"35909":1444,"35910":0,"35911":0,"35912":-1,"35913":217,"35914":-1,"35915":170,"35916":1469,"35917":0,"35918":0,"35919":0,"35920":-1,"35921":0,"35922":0,"35923":86,"35924":1499,"35925":-1,"35926":0,"35927":-1,"35928":-1,"35929":-1,"35930":-1,"35931":-1,"35932":-1,"35933":1380,"35934":-1,"35935":1578,"35936":215,"35937":1498,"35938":0,"35939":1482,"35940":0,"35941":-1,"35942":299,"35943":0,"35944":-1,"35945":-1,"35946":0,"35947":0,"35948":0,"35949":1326,"35950":0,"35951":-1,"35952":0,"35953":0,"35954":-1,"35955":-1,"35956":0,"35957":0,"35958":1516,"35959":1413,"35960":0,"35961":0,"35962":0,"35963":1409,"35964":0,"35965":246,"35966":0,"35967":-1,"35968":10,"35969":94,"35970":1483,"35971":-1,"35972":0,"35973":0,"35974":56,"35975":0,"35976":-1,"35977":1433,"35978":-1,"35979":0,"35980":0,"35981":152,"35982":-1,"35983":-1,"35984":-1,"35985":0,"35986":0,"35987":-1,"35988":0,"35989":0,"35990":0,"35991":-1,"35992":0,"35993":-1,"35994":-1,"35995":0,"35996":1479,"35997":1382,"35998":-1,"35999":0,"36000":-1,"36001":0,"36002":0,"36003":0,"36004":0,"36005":0,"36006":1399,"36007":0,"36008":0,"36009":0,"36010":-1,"36011":-1,"36012":0,"36013":0,"36014":0,"36015":-1,"36016":0,"36017":-1,"36018":-1,"36019":206,"36020":0,"36021":1524,"36022":-1,"36023":-1,"36024":0,"36025":-1,"36026":-1,"36027":-1,"36028":0,"36029":-1,"36030":22,"36031":-1,"36032":1414,"36033":0,"36034":0,"36035":0,"36036":0,"36037":0,"36038":0,"36039":0,"36040":1448,"36041":-1,"36042":0,"36043":-1,"36044":1410,"36045":329,"36046":-1,"36047":1381,"36048":0,"36049":-1,"36050":61,"36051":-1,"36052":0,"36053":-1,"36054":0,"36055":0,"36056":0,"36057":1523,"36058":206,"36059":0,"36060":7,"36061":0,"36062":0,"36063":0,"36064":0,"36065":0,"36066":1367,"36067":0,"36068":1576,"36069":1503,"36070":0,"36071":0,"36072":-1,"36073":-1,"36074":-1,"36075":49,"36076":234,"36077":0,"36078":129,"36079":1366,"36080":-1,"36081":-1,"36082":0,"36083":259,"36084":0,"36085":1311,"36086":-1,"36087":-1,"36088":0,"36089":1566,"36090":0,"36091":-1,"36092":-1,"36093":-1,"36094":149,"36095":-1,"36096":-1,"36097":-1,"36098":0,"36099":-1,"36100":-1,"36101":201,"36102":-1,"36103":0,"36104":-1,"36105":-1,"36106":190,"36107":0,"36108":1381,"36109":1500,"36110":-1,"36111":150,"36112":-1,"36113":-1,"36114":-1,"36115":0,"36116":-1,"36117":-1,"36118":0,"36119":98,"36120":-1,"36121":0,"36122":-1,"36123":0,"36124":199,"36125":-1,"36126":0,"36127":0,"36128":-1,"36129":0,"36130":214,"36131":208,"36132":-1,"36133":0,"36134":-1,"36135":1378,"36136":224,"36137":1401,"36138":1400,"36139":0,"36140":0,"36141":-1,"36142":0,"36143":0,"36144":1344,"36145":0,"36146":-1,"36147":0,"36148":-1,"36149":0,"36150":115,"36151":-1,"36152":-1,"36153":0,"36154":0,"36155":0,"36156":0,"36157":270,"36158":-1,"36159":0,"36160":0,"36161":-1,"36162":0,"36163":1440,"36164":-1,"36165":0,"36166":1477,"36167":0,"36168":0,"36169":-1,"36170":0,"36171":208,"36172":0,"36173":-1,"36174":0,"36175":0,"36176":-1,"36177":0,"36178":1503,"36179":-1,"36180":0,"36181":-1,"36182":0,"36183":0,"36184":-1,"36185":-1,"36186":-1,"36187":1560,"36188":-1,"36189":7,"36190":273,"36191":0,"36192":0,"36193":0,"36194":0,"36195":366,"36196":0,"36197":0,"36198":339,"36199":-1,"36200":1427,"36201":0,"36202":0,"36203":-1,"36204":0,"36205":0,"36206":302,"36207":-1,"36208":-1,"36209":1326,"36210":0,"36211":220,"36212":0,"36213":0,"36214":-1,"36215":1424,"36216":0,"36217":0,"36218":0,"36219":206,"36220":244,"36221":-1,"36222":0,"36223":0,"36224":0,"36225":0,"36226":0,"36227":0,"36228":192,"36229":0,"36230":70,"36231":0,"36232":312,"36233":121,"36234":0,"36235":0,"36236":0,"36237":307,"36238":161,"36239":-1,"36240":0,"36241":0,"36242":1442,"36243":25,"36244":-1,"36245":0,"36246":1489,"36247":-1,"36248":-1,"36249":-1,"36250":0,"36251":0,"36252":0,"36253":-1,"36254":0,"36255":1551,"36256":0,"36257":-1,"36258":202,"36259":-1,"36260":0,"36261":-1,"36262":0,"36263":261,"36264":0,"36265":271,"36266":-1,"36267":0,"36268":1507,"36269":1509,"36270":-1,"36271":-1,"36272":0,"36273":274,"36274":1410,"36275":1306,"36276":0,"36277":0,"36278":-1,"36279":0,"36280":0,"36281":0,"36282":-1,"36283":-1,"36284":-1,"36285":-1,"36286":0,"36287":0,"36288":0,"36289":291,"36290":352,"36291":0,"36292":0,"36293":0,"36294":-1,"36295":-1,"36296":172,"36297":0,"36298":7,"36299":46,"36300":-1,"36301":0,"36302":0,"36303":0,"36304":0,"36305":-1,"36306":0,"36307":323,"36308":268,"36309":122,"36310":-1,"36311":0,"36312":-1,"36313":140,"36314":0,"36315":-1,"36316":0,"36317":-1,"36318":-1,"36319":-1,"36320":-1,"36321":200,"36322":1558,"36323":92,"36324":0,"36325":0,"36326":0,"36327":0,"36328":0,"36329":170,"36330":0,"36331":1418,"36332":1385,"36333":-1,"36334":0,"36335":0,"36336":0,"36337":0,"36338":-1,"36339":63,"36340":-1,"36341":1405,"36342":0,"36343":-1,"36344":-1,"36345":0,"36346":0,"36347":1562,"36348":98,"36349":0,"36350":1404,"36351":-1,"36352":0,"36353":0,"36354":0,"36355":-1,"36356":0,"36357":0,"36358":1575,"36359":-1,"36360":1550,"36361":0,"36362":0,"36363":0,"36364":0,"36365":0,"36366":-1,"36367":182,"36368":0,"36369":-1,"36370":-1,"36371":-1,"36372":0,"36373":-1,"36374":1345,"36375":-1,"36376":1452,"36377":0,"36378":0,"36379":-1,"36380":-1,"36381":0,"36382":0,"36383":366,"36384":0,"36385":0,"36386":-1,"36387":255,"36388":0,"36389":281,"36390":-1,"36391":-1,"36392":1363,"36393":-1,"36394":-1,"36395":0,"36396":1428,"36397":0,"36398":0,"36399":-1,"36400":0,"36401":0,"36402":1488,"36403":346,"36404":19,"36405":0,"36406":0,"36407":0,"36408":-1,"36409":0,"36410":0,"36411":0,"36412":0,"36413":0,"36414":0,"36415":1432,"36416":-1,"36417":0,"36418":-1,"36419":1434,"36420":1491,"36421":0,"36422":-1,"36423":0,"36424":-1,"36425":-1,"36426":0,"36427":-1,"36428":0,"36429":0,"36430":-1,"36431":1434,"36432":0,"36433":-1,"36434":0,"36435":0,"36436":-1,"36437":0,"36438":0,"36439":1396,"36440":-1,"36441":-1,"36442":0,"36443":0,"36444":-1,"36445":0,"36446":-1,"36447":0,"36448":0,"36449":0,"36450":0,"36451":0,"36452":0,"36453":-1,"36454":0,"36455":-1,"36456":1403,"36457":33,"36458":0,"36459":0,"36460":-1,"36461":-1,"36462":1408,"36463":0,"36464":1354,"36465":-1,"36466":0,"36467":0,"36468":-1,"36469":0,"36470":0,"36471":1561,"36472":58,"36473":-1,"36474":0,"36475":142,"36476":307,"36477":0,"36478":0,"36479":-1,"36480":0,"36481":0,"36482":-1,"36483":-1,"36484":0,"36485":0,"36486":0,"36487":0,"36488":-1,"36489":228,"36490":0,"36491":165,"36492":175,"36493":74,"36494":0,"36495":0,"36496":0,"36497":-1,"36498":0,"36499":1561,"36500":0,"36501":-1,"36502":219,"36503":0,"36504":0,"36505":0,"36506":122,"36507":0,"36508":0,"36509":0,"36510":0,"36511":0,"36512":-1,"36513":140,"36514":0,"36515":362,"36516":134,"36517":0,"36518":-1,"36519":0,"36520":0,"36521":331,"36522":1487,"36523":0,"36524":-1,"36525":0,"36526":0,"36527":-1,"36528":-1,"36529":0,"36530":-1,"36531":0,"36532":1503,"36533":1360,"36534":295,"36535":0,"36536":-1,"36537":1359,"36538":-1,"36539":1348,"36540":-1,"36541":1319,"36542":0,"36543":1478,"36544":0,"36545":1473,"36546":1324,"36547":-1,"36548":0,"36549":-1,"36550":-1,"36551":1386,"36552":0,"36553":1403,"36554":1499,"36555":-1,"36556":1395,"36557":-1,"36558":-1,"36559":-1,"36560":0,"36561":-1,"36562":328,"36563":169,"36564":0,"36565":0,"36566":0,"36567":-1,"36568":-1,"36569":-1,"36570":173,"36571":0,"36572":0,"36573":-1,"36574":-1,"36575":-1,"36576":0,"36577":0,"36578":-1,"36579":7,"36580":0,"36581":-1,"36582":0,"36583":1504,"36584":-1,"36585":78,"36586":-1,"36587":1320,"36588":1533,"36589":0,"36590":127,"36591":0,"36592":0,"36593":1575,"36594":-1,"36595":98,"36596":-1,"36597":-1,"36598":0,"36599":-1,"36600":0,"36601":0,"36602":-1,"36603":79,"36604":-1,"36605":0,"36606":1525,"36607":0,"36608":1481,"36609":0,"36610":-1,"36611":0,"36612":0,"36613":1537,"36614":0,"36615":-1,"36616":-1,"36617":-1,"36618":330,"36619":112,"36620":0,"36621":0,"36622":0,"36623":0,"36624":-1,"36625":1364,"36626":-1,"36627":0,"36628":307,"36629":-1,"36630":0,"36631":0,"36632":1350,"36633":0,"36634":0,"36635":1357,"36636":271,"36637":0,"36638":0,"36639":15,"36640":-1,"36641":0,"36642":0,"36643":0,"36644":0,"36645":-1,"36646":-1,"36647":-1,"36648":-1,"36649":0,"36650":-1,"36651":121,"36652":326,"36653":1514,"36654":-1,"36655":-1,"36656":0,"36657":-1,"36658":-1,"36659":0,"36660":-1,"36661":-1,"36662":0,"36663":0,"36664":-1,"36665":1546,"36666":0,"36667":0,"36668":331,"36669":-1,"36670":-1,"36671":0,"36672":0,"36673":0,"36674":0,"36675":-1,"36676":0,"36677":0,"36678":-1,"36679":-1,"36680":-1,"36681":1475,"36682":0,"36683":-1,"36684":0,"36685":-1,"36686":115,"36687":0,"36688":0,"36689":0,"36690":-1,"36691":0,"36692":0,"36693":0,"36694":0,"36695":97,"36696":1347,"36697":0,"36698":0,"36699":-1,"36700":-1,"36701":1330,"36702":0,"36703":-1,"36704":0,"36705":-1,"36706":0,"36707":1566,"36708":0,"36709":0,"36710":0,"36711":0,"36712":0,"36713":1323,"36714":0,"36715":-1,"36716":-1,"36717":298,"36718":0,"36719":131,"36720":0,"36721":0,"36722":0,"36723":384,"36724":-1,"36725":0,"36726":0,"36727":-1,"36728":-1,"36729":0,"36730":366,"36731":0,"36732":0,"36733":0,"36734":0,"36735":0,"36736":0,"36737":-1,"36738":0,"36739":-1,"36740":-1,"36741":0,"36742":-1,"36743":329,"36744":0,"36745":0,"36746":-1,"36747":140,"36748":0,"36749":0,"36750":-1,"36751":0,"36752":0,"36753":0,"36754":1343,"36755":0,"36756":-1,"36757":0,"36758":0,"36759":0,"36760":-1,"36761":-1,"36762":0,"36763":1549,"36764":6,"36765":0,"36766":36,"36767":314,"36768":372,"36769":107,"36770":-1,"36771":0,"36772":-1,"36773":43,"36774":0,"36775":-1,"36776":0,"36777":1542,"36778":-1,"36779":1374,"36780":-1,"36781":116,"36782":-1,"36783":0,"36784":325,"36785":-1,"36786":383,"36787":-1,"36788":0,"36789":1575,"36790":-1,"36791":0,"36792":0,"36793":-1,"36794":0,"36795":-1,"36796":-1,"36797":0,"36798":1566,"36799":0,"36800":-1,"36801":0,"36802":-1,"36803":-1,"36804":0,"36805":0,"36806":0,"36807":-1,"36808":1414,"36809":0,"36810":-1,"36811":109,"36812":-1,"36813":1437,"36814":0,"36815":-1,"36816":-1,"36817":0,"36818":0,"36819":53,"36820":-1,"36821":1398,"36822":16,"36823":365,"36824":0,"36825":60,"36826":0,"36827":0,"36828":1429,"36829":0,"36830":0,"36831":-1,"36832":0,"36833":265,"36834":234,"36835":1327,"36836":-1,"36837":-1,"36838":0,"36839":0,"36840":179,"36841":0,"36842":-1,"36843":0,"36844":0,"36845":0,"36846":0,"36847":0,"36848":15,"36849":-1,"36850":0,"36851":0,"36852":-1,"36853":1580,"36854":1471,"36855":1459,"36856":0,"36857":0,"36858":-1,"36859":-1,"36860":1538,"36861":0,"36862":-1,"36863":-1,"36864":326,"36865":-1,"36866":46,"36867":-1,"36868":1406,"36869":-1,"36870":-1,"36871":-1,"36872":123,"36873":0,"36874":1421,"36875":-1,"36876":0,"36877":0,"36878":0,"36879":-1,"36880":0,"36881":-1,"36882":-1,"36883":1508,"36884":0,"36885":0,"36886":-1,"36887":1423,"36888":-1,"36889":0,"36890":81,"36891":-1,"36892":-1,"36893":0,"36894":0,"36895":1421,"36896":0,"36897":-1,"36898":0,"36899":0,"36900":0,"36901":359,"36902":0,"36903":0,"36904":0,"36905":1425,"36906":0,"36907":0,"36908":0,"36909":1407,"36910":0,"36911":0,"36912":-1,"36913":0,"36914":1475,"36915":0,"36916":0,"36917":-1,"36918":0,"36919":0,"36920":0,"36921":1475,"36922":-1,"36923":-1,"36924":-1,"36925":0,"36926":0,"36927":0,"36928":305,"36929":0,"36930":0,"36931":1490,"36932":1351,"36933":-1,"36934":-1,"36935":-1,"36936":-1,"36937":0,"36938":-1,"36939":-1,"36940":0,"36941":0,"36942":1424,"36943":0,"36944":0,"36945":1465,"36946":0,"36947":-1,"36948":-1,"36949":0,"36950":-1,"36951":274,"36952":0,"36953":-1,"36954":-1,"36955":1507,"36956":0,"36957":0,"36958":0,"36959":1493,"36960":40,"36961":0,"36962":0,"36963":1456,"36964":0,"36965":74,"36966":0,"36967":0,"36968":-1,"36969":0,"36970":-1,"36971":0,"36972":1560,"36973":-1,"36974":0,"36975":-1,"36976":362,"36977":0,"36978":-1,"36979":0,"36980":1490,"36981":-1,"36982":1474,"36983":-1,"36984":0,"36985":0,"36986":0,"36987":0,"36988":-1,"36989":0,"36990":-1,"36991":1334,"36992":-1,"36993":-1,"36994":0,"36995":0,"36996":0,"36997":-1,"36998":-1,"36999":-1,"37000":142,"37001":313,"37002":0,"37003":1415,"37004":0,"37005":0,"37006":0,"37007":1314,"37008":0,"37009":1448,"37010":-1,"37011":0,"37012":0,"37013":-1,"37014":0,"37015":0,"37016":225,"37017":1339,"37018":0,"37019":0,"37020":-1,"37021":-1,"37022":0,"37023":-1,"37024":0,"37025":-1,"37026":-1,"37027":0,"37028":-1,"37029":0,"37030":0,"37031":93,"37032":-1,"37033":0,"37034":0,"37035":0,"37036":1559,"37037":1545,"37038":1370,"37039":0,"37040":1458,"37041":-1,"37042":0,"37043":0,"37044":0,"37045":-1,"37046":1506,"37047":0,"37048":0,"37049":1310,"37050":0,"37051":-1,"37052":-1,"37053":-1,"37054":1401,"37055":1476,"37056":1434,"37057":117,"37058":0,"37059":0,"37060":0,"37061":-1,"37062":0,"37063":-1,"37064":0,"37065":-1,"37066":-1,"37067":133,"37068":0,"37069":145,"37070":0,"37071":0,"37072":1437,"37073":94,"37074":-1,"37075":-1,"37076":0,"37077":1552,"37078":0,"37079":-1,"37080":0,"37081":1537,"37082":0,"37083":1511,"37084":473,"37085":0,"37086":0,"37087":-1,"37088":0,"37089":0,"37090":0,"37091":0,"37092":0,"37093":-1,"37094":-1,"37095":-1,"37096":0,"37097":-1,"37098":49,"37099":-1,"37100":1397,"37101":0,"37102":-1,"37103":268,"37104":0,"37105":-1,"37106":58,"37107":1481,"37108":0,"37109":-1,"37110":0,"37111":-1,"37112":1516,"37113":0,"37114":0,"37115":-1,"37116":-1,"37117":-1,"37118":0,"37119":27,"37120":1346,"37121":0,"37122":0,"37123":-1,"37124":73,"37125":0,"37126":181,"37127":0,"37128":-1,"37129":-1,"37130":-1,"37131":-1,"37132":-1,"37133":0,"37134":-1,"37135":0,"37136":0,"37137":-1,"37138":1408,"37139":0,"37140":-1,"37141":1309,"37142":1563,"37143":0,"37144":0,"37145":0,"37146":0,"37147":0,"37148":116,"37149":-1,"37150":0,"37151":0,"37152":0,"37153":21,"37154":-1,"37155":0,"37156":1537,"37157":1537,"37158":224,"37159":1465,"37160":0,"37161":1344,"37162":0,"37163":0,"37164":0,"37165":0,"37166":-1,"37167":0,"37168":244,"37169":-1,"37170":-1,"37171":-1,"37172":-1,"37173":190,"37174":63,"37175":1383,"37176":1552,"37177":-1,"37178":0,"37179":-1,"37180":96,"37181":0,"37182":1298,"37183":323,"37184":169,"37185":1395,"37186":0,"37187":0,"37188":-1,"37189":0,"37190":9,"37191":324,"37192":-1,"37193":0,"37194":0,"37195":13,"37196":0,"37197":0,"37198":0,"37199":-1,"37200":-1,"37201":85,"37202":0,"37203":0,"37204":0,"37205":-1,"37206":0,"37207":-1,"37208":368,"37209":-1,"37210":0,"37211":-1,"37212":1370,"37213":0,"37214":0,"37215":-1,"37216":-1,"37217":0,"37218":1332,"37219":253,"37220":-1,"37221":-1,"37222":-1,"37223":0,"37224":-1,"37225":-1,"37226":1324,"37227":-1,"37228":0,"37229":0,"37230":0,"37231":0,"37232":0,"37233":0,"37234":383,"37235":1349,"37236":45,"37237":-1,"37238":-1,"37239":9,"37240":-1,"37241":152,"37242":-1,"37243":0,"37244":0,"37245":-1,"37246":-1,"37247":220,"37248":13,"37249":-1,"37250":85,"37251":1472,"37252":195,"37253":0,"37254":-1,"37255":0,"37256":0,"37257":1455,"37258":-1,"37259":-1,"37260":-1,"37261":-1,"37262":-1,"37263":0,"37264":-1,"37265":0,"37266":-1,"37267":0,"37268":0,"37269":-1,"37270":0,"37271":0,"37272":0,"37273":-1,"37274":167,"37275":1572,"37276":16,"37277":3,"37278":1346,"37279":1559,"37280":0,"37281":-1,"37282":-1,"37283":0,"37284":0,"37285":-1,"37286":32,"37287":-1,"37288":1479,"37289":-1,"37290":174,"37291":1444,"37292":0,"37293":0,"37294":-1,"37295":0,"37296":0,"37297":0,"37298":0,"37299":0,"37300":0,"37301":0,"37302":1489,"37303":-1,"37304":-1,"37305":0,"37306":0,"37307":0,"37308":0,"37309":-1,"37310":0,"37311":1561,"37312":-1,"37313":0,"37314":0,"37315":0,"37316":0,"37317":-1,"37318":0,"37319":146,"37320":378,"37321":0,"37322":0,"37323":0,"37324":0,"37325":0,"37326":0,"37327":269,"37328":-1,"37329":-1,"37330":429,"37331":232,"37332":0,"37333":332,"37334":215,"37335":1350,"37336":-1,"37337":-1,"37338":0,"37339":-1,"37340":-1,"37341":0,"37342":-1,"37343":-1,"37344":312,"37345":-1,"37346":-1,"37347":77,"37348":22,"37349":0,"37350":1569,"37351":1503,"37352":-1,"37353":1355,"37354":1367,"37355":0,"37356":0,"37357":-1,"37358":-1,"37359":-1,"37360":0,"37361":-1,"37362":0,"37363":1432,"37364":0,"37365":-1,"37366":-1,"37367":1412,"37368":0,"37369":0,"37370":-1,"37371":0,"37372":0,"37373":-1,"37374":-1,"37375":0,"37376":1363,"37377":-1,"37378":0,"37379":-1,"37380":0,"37381":0,"37382":0,"37383":0,"37384":0,"37385":0,"37386":-1,"37387":165,"37388":1488,"37389":0,"37390":1459,"37391":0,"37392":0,"37393":225,"37394":-1,"37395":0,"37396":-1,"37397":-1,"37398":360,"37399":0,"37400":85,"37401":0,"37402":0,"37403":0,"37404":0,"37405":0,"37406":-1,"37407":1358,"37408":-1,"37409":-1,"37410":-1,"37411":-1,"37412":0,"37413":0,"37414":0,"37415":-1,"37416":-1,"37417":0,"37418":-1,"37419":-1,"37420":1514,"37421":0,"37422":236,"37423":0,"37424":0,"37425":-1,"37426":0,"37427":0,"37428":-1,"37429":366,"37430":0,"37431":0,"37432":0,"37433":-1,"37434":-1,"37435":0,"37436":-1,"37437":0,"37438":0,"37439":0,"37440":1317,"37441":0,"37442":-1,"37443":117,"37444":93,"37445":-1,"37446":0,"37447":-1,"37448":-1,"37449":-1,"37450":0,"37451":-1,"37452":0,"37453":135,"37454":0,"37455":211,"37456":-1,"37457":1458,"37458":0,"37459":1433,"37460":0,"37461":-1,"37462":0,"37463":-1,"37464":0,"37465":-1,"37466":1385,"37467":0,"37468":-1,"37469":0,"37470":0,"37471":96,"37472":-1,"37473":-1,"37474":1555,"37475":-1,"37476":0,"37477":-1,"37478":0,"37479":0,"37480":0,"37481":169,"37482":-1,"37483":-1,"37484":0,"37485":-1,"37486":97,"37487":-1,"37488":0,"37489":142,"37490":0,"37491":0,"37492":0,"37493":246,"37494":-1,"37495":1387,"37496":0,"37497":-1,"37498":148,"37499":-1,"37500":0,"37501":-1,"37502":0,"37503":0,"37504":-1,"37505":1387,"37506":0,"37507":-1,"37508":-1,"37509":0,"37510":0,"37511":317,"37512":-1,"37513":0,"37514":0,"37515":0,"37516":0,"37517":-1,"37518":307,"37519":0,"37520":-1,"37521":0,"37522":0,"37523":-1,"37524":-1,"37525":0,"37526":0,"37527":304,"37528":306,"37529":-1,"37530":41,"37531":1483,"37532":0,"37533":0,"37534":0,"37535":0,"37536":-1,"37537":-1,"37538":-1,"37539":132,"37540":0,"37541":-1,"37542":0,"37543":125,"37544":262,"37545":0,"37546":0,"37547":-1,"37548":-1,"37549":0,"37550":1439,"37551":-1,"37552":0,"37553":0,"37554":1411,"37555":-1,"37556":0,"37557":0,"37558":0,"37559":1418,"37560":-1,"37561":0,"37562":-1,"37563":-1,"37564":1558,"37565":0,"37566":-1,"37567":-1,"37568":-1,"37569":-1,"37570":1492,"37571":0,"37572":0,"37573":-1,"37574":-1,"37575":0,"37576":-1,"37577":0,"37578":1363,"37579":-1,"37580":-1,"37581":-1,"37582":0,"37583":92,"37584":-1,"37585":-1,"37586":332,"37587":-1,"37588":0,"37589":-1,"37590":1468,"37591":0,"37592":-1,"37593":0,"37594":-1,"37595":0,"37596":0,"37597":0,"37598":1314,"37599":7,"37600":0,"37601":-1,"37602":1362,"37603":0,"37604":0,"37605":360,"37606":-1,"37607":0,"37608":0,"37609":312,"37610":9,"37611":-1,"37612":-1,"37613":-1,"37614":1585,"37615":-1,"37616":324,"37617":0,"37618":0,"37619":-1,"37620":0,"37621":201,"37622":-1,"37623":0,"37624":1505,"37625":0,"37626":-1,"37627":-1,"37628":1459,"37629":168,"37630":-1,"37631":-1,"37632":1549,"37633":-1,"37634":1322,"37635":1363,"37636":-1,"37637":0,"37638":-1,"37639":-1,"37640":-1,"37641":-1,"37642":-1,"37643":0,"37644":0,"37645":1526,"37646":-1,"37647":-1,"37648":0,"37649":0,"37650":0,"37651":1423,"37652":15,"37653":-1,"37654":0,"37655":-1,"37656":1565,"37657":215,"37658":0,"37659":121,"37660":0,"37661":0,"37662":0,"37663":-1,"37664":0,"37665":0,"37666":1472,"37667":0,"37668":0,"37669":-1,"37670":1346,"37671":0,"37672":1363,"37673":0,"37674":1453,"37675":1430,"37676":-1,"37677":-1,"37678":0,"37679":0,"37680":-1,"37681":-1,"37682":240,"37683":0,"37684":200,"37685":0,"37686":0,"37687":1514,"37688":0,"37689":0,"37690":0,"37691":0,"37692":305,"37693":-1,"37694":-1,"37695":-1,"37696":289,"37697":328,"37698":-1,"37699":-1,"37700":1415,"37701":103,"37702":0,"37703":1351,"37704":-1,"37705":-1,"37706":-1,"37707":-1,"37708":-1,"37709":0,"37710":0,"37711":0,"37712":0,"37713":-1,"37714":406,"37715":-1,"37716":0,"37717":0,"37718":1301,"37719":-1,"37720":-1,"37721":0,"37722":88,"37723":1540,"37724":0,"37725":287,"37726":-1,"37727":0,"37728":348,"37729":0,"37730":-1,"37731":-1,"37732":1431,"37733":0,"37734":1299,"37735":-1,"37736":1514,"37737":362,"37738":1333,"37739":-1,"37740":0,"37741":0,"37742":-1,"37743":0,"37744":83,"37745":0,"37746":1382,"37747":0,"37748":0,"37749":-1,"37750":288,"37751":1504,"37752":-1,"37753":-1,"37754":-1,"37755":-1,"37756":1445,"37757":1393,"37758":15,"37759":481,"37760":0,"37761":0,"37762":0,"37763":-1,"37764":-1,"37765":0,"37766":232,"37767":0,"37768":-1,"37769":0,"37770":1383,"37771":3,"37772":-1,"37773":0,"37774":-1,"37775":1316,"37776":0,"37777":120,"37778":0,"37779":0,"37780":1450,"37781":0,"37782":0,"37783":-1,"37784":-1,"37785":-1,"37786":0,"37787":55,"37788":0,"37789":-1,"37790":0,"37791":-1,"37792":-1,"37793":0,"37794":-1,"37795":-1,"37796":241,"37797":-1,"37798":0,"37799":289,"37800":0,"37801":-1,"37802":0,"37803":1556,"37804":0,"37805":0,"37806":0,"37807":0,"37808":1306,"37809":-1,"37810":0,"37811":72,"37812":-1,"37813":0,"37814":1577,"37815":0,"37816":0,"37817":-1,"37818":228,"37819":0,"37820":-1,"37821":1558,"37822":-1,"37823":-1,"37824":0,"37825":-1,"37826":-1,"37827":317,"37828":-1,"37829":-1,"37830":-1,"37831":-1,"37832":-1,"37833":-1,"37834":-1,"37835":0,"37836":-1,"37837":0,"37838":1466,"37839":-1,"37840":0,"37841":123,"37842":1557,"37843":-1,"37844":-1,"37845":-1,"37846":0,"37847":257,"37848":365,"37849":-1,"37850":-1,"37851":0,"37852":0,"37853":0,"37854":0,"37855":0,"37856":0,"37857":0,"37858":1576,"37859":-1,"37860":0,"37861":-1,"37862":0,"37863":0,"37864":25,"37865":0,"37866":0,"37867":180,"37868":0,"37869":0,"37870":-1,"37871":-1,"37872":0,"37873":1517,"37874":-1,"37875":-1,"37876":0,"37877":0,"37878":0,"37879":0,"37880":0,"37881":0,"37882":0,"37883":-1,"37884":0,"37885":1355,"37886":0,"37887":-1,"37888":0,"37889":237,"37890":239,"37891":0,"37892":-1,"37893":1551,"37894":-1,"37895":-1,"37896":-1,"37897":161,"37898":0,"37899":-1,"37900":265,"37901":-1,"37902":1550,"37903":0,"37904":-1,"37905":0,"37906":-1,"37907":11,"37908":1556,"37909":0,"37910":-1,"37911":0,"37912":262,"37913":0,"37914":0,"37915":-1,"37916":1336,"37917":0,"37918":-1,"37919":0,"37920":-1,"37921":0,"37922":1514,"37923":257,"37924":0,"37925":-1,"37926":0,"37927":-1,"37928":-1,"37929":-1,"37930":0,"37931":0,"37932":-1,"37933":354,"37934":-1,"37935":0,"37936":0,"37937":0,"37938":-1,"37939":-1,"37940":1509,"37941":0,"37942":0,"37943":0,"37944":0,"37945":1553,"37946":-1,"37947":19,"37948":0,"37949":0,"37950":0,"37951":0,"37952":0,"37953":-1,"37954":347,"37955":0,"37956":1398,"37957":0,"37958":-1,"37959":-1,"37960":1519,"37961":-1,"37962":-1,"37963":252,"37964":0,"37965":-1,"37966":0,"37967":0,"37968":119,"37969":0,"37970":-1,"37971":1365,"37972":1481,"37973":0,"37974":-1,"37975":-1,"37976":0,"37977":-1,"37978":1479,"37979":162,"37980":-1,"37981":-1,"37982":-1,"37983":1507,"37984":375,"37985":236,"37986":1349,"37987":0,"37988":0,"37989":-1,"37990":0,"37991":0,"37992":0,"37993":-1,"37994":0,"37995":0,"37996":-1,"37997":0,"37998":1394,"37999":-1,"38000":1335,"38001":0,"38002":188,"38003":0,"38004":220,"38005":254,"38006":-1,"38007":200,"38008":0,"38009":0,"38010":0,"38011":0,"38012":364,"38013":44,"38014":-1,"38015":-1,"38016":1429,"38017":0,"38018":-1,"38019":-1,"38020":0,"38021":0,"38022":20,"38023":-1,"38024":0,"38025":1391,"38026":0,"38027":308,"38028":0,"38029":0,"38030":0,"38031":0,"38032":-1,"38033":0,"38034":-1,"38035":297,"38036":0,"38037":1488,"38038":-1,"38039":83,"38040":1475,"38041":72,"38042":0,"38043":0,"38044":1482,"38045":0,"38046":0,"38047":-1,"38048":0,"38049":-1,"38050":331,"38051":0,"38052":-1,"38053":0,"38054":-1,"38055":329,"38056":-1,"38057":-1,"38058":-1,"38059":-1,"38060":0,"38061":0,"38062":0,"38063":0,"38064":-1,"38065":7,"38066":0,"38067":-1,"38068":0,"38069":0,"38070":0,"38071":0,"38072":202,"38073":-1,"38074":-1,"38075":-1,"38076":0,"38077":0,"38078":-1,"38079":0,"38080":1391,"38081":-1,"38082":-1,"38083":0,"38084":-1,"38085":0,"38086":-1,"38087":-1,"38088":0,"38089":0,"38090":-1,"38091":0,"38092":-1,"38093":-1,"38094":0,"38095":-1,"38096":1524,"38097":1567,"38098":47,"38099":0,"38100":0,"38101":-1,"38102":0,"38103":328,"38104":147,"38105":0,"38106":-1,"38107":-1,"38108":0,"38109":0,"38110":1342,"38111":128,"38112":-1,"38113":-1,"38114":0,"38115":-1,"38116":0,"38117":1585,"38118":0,"38119":-1,"38120":0,"38121":1388,"38122":0,"38123":0,"38124":-1,"38125":1467,"38126":-1,"38127":0,"38128":0,"38129":0,"38130":235,"38131":0,"38132":0,"38133":0,"38134":-1,"38135":-1,"38136":1306,"38137":1397,"38138":0,"38139":-1,"38140":0,"38141":1499,"38142":-1,"38143":68,"38144":1310,"38145":0,"38146":-1,"38147":0,"38148":0,"38149":0,"38150":0,"38151":0,"38152":0,"38153":0,"38154":0,"38155":213,"38156":0,"38157":-1,"38158":1319,"38159":-1,"38160":49,"38161":70,"38162":322,"38163":0,"38164":-1,"38165":-1,"38166":-1,"38167":-1,"38168":1536,"38169":331,"38170":-1,"38171":-1,"38172":0,"38173":-1,"38174":198,"38175":0,"38176":0,"38177":10,"38178":0,"38179":0,"38180":-1,"38181":0,"38182":0,"38183":0,"38184":-1,"38185":39,"38186":-1,"38187":0,"38188":-1,"38189":-1,"38190":1430,"38191":0,"38192":0,"38193":-1,"38194":-1,"38195":-1,"38196":0,"38197":0,"38198":0,"38199":0,"38200":0,"38201":0,"38202":0,"38203":-1,"38204":-1,"38205":342,"38206":-1,"38207":0,"38208":-1,"38209":0,"38210":39,"38211":0,"38212":0,"38213":-1,"38214":0,"38215":1481,"38216":1444,"38217":-1,"38218":1407,"38219":1471,"38220":1479,"38221":0,"38222":123,"38223":0,"38224":0,"38225":-1,"38226":0,"38227":1536,"38228":0,"38229":-1,"38230":1573,"38231":0,"38232":66,"38233":0,"38234":0,"38235":221,"38236":-1,"38237":0,"38238":-1,"38239":0,"38240":165,"38241":-1,"38242":0,"38243":0,"38244":0,"38245":0,"38246":207,"38247":0,"38248":234,"38249":0,"38250":368,"38251":-1,"38252":0,"38253":-1,"38254":0,"38255":-1,"38256":0,"38257":1520,"38258":0,"38259":0,"38260":283,"38261":1542,"38262":46,"38263":3,"38264":187,"38265":0,"38266":0,"38267":348,"38268":0,"38269":1464,"38270":0,"38271":0,"38272":93,"38273":0,"38274":0,"38275":0,"38276":190,"38277":0,"38278":-1,"38279":249,"38280":0,"38281":0,"38282":1552,"38283":1467,"38284":-1,"38285":0,"38286":0,"38287":383,"38288":1440,"38289":1503,"38290":0,"38291":69,"38292":0,"38293":0,"38294":0,"38295":0,"38296":0,"38297":0,"38298":-1,"38299":-1,"38300":0,"38301":0,"38302":0,"38303":29,"38304":-1,"38305":124,"38306":-1,"38307":-1,"38308":0,"38309":-1,"38310":-1,"38311":-1,"38312":0,"38313":0,"38314":-1,"38315":0,"38316":-1,"38317":0,"38318":0,"38319":0,"38320":0,"38321":-1,"38322":-1,"38323":-1,"38324":0,"38325":7,"38326":-1,"38327":0,"38328":0,"38329":1409,"38330":1474,"38331":0,"38332":1510,"38333":0,"38334":0,"38335":0,"38336":-1,"38337":-1,"38338":228,"38339":0,"38340":107,"38341":1574,"38342":0,"38343":-1,"38344":-1,"38345":0,"38346":0,"38347":1337,"38348":339,"38349":1566,"38350":-1,"38351":1310,"38352":0,"38353":0,"38354":0,"38355":0,"38356":-1,"38357":301,"38358":0,"38359":-1,"38360":1570,"38361":1450,"38362":0,"38363":-1,"38364":0,"38365":-1,"38366":202,"38367":0,"38368":0,"38369":-1,"38370":0,"38371":-1,"38372":0,"38373":-1,"38374":0,"38375":1322,"38376":0,"38377":0,"38378":0,"38379":362,"38380":-1,"38381":-1,"38382":-1,"38383":0,"38384":21,"38385":0,"38386":1390,"38387":-1,"38388":-1,"38389":1451,"38390":-1,"38391":0,"38392":0,"38393":-1,"38394":-1,"38395":0,"38396":1573,"38397":0,"38398":-1,"38399":0,"38400":-1,"38401":0,"38402":0,"38403":0,"38404":-1,"38405":0,"38406":1530,"38407":-1,"38408":0,"38409":0,"38410":325,"38411":167,"38412":-1,"38413":213,"38414":0,"38415":1560,"38416":161,"38417":0,"38418":252,"38419":0,"38420":-1,"38421":0,"38422":1497,"38423":0,"38424":158,"38425":0,"38426":0,"38427":0,"38428":1352,"38429":-1,"38430":-1,"38431":0,"38432":-1,"38433":0,"38434":0,"38435":0,"38436":-1,"38437":-1,"38438":0,"38439":-1,"38440":0,"38441":0,"38442":0,"38443":1582,"38444":0,"38445":0,"38446":1566,"38447":-1,"38448":0,"38449":0,"38450":-1,"38451":0,"38452":0,"38453":0,"38454":-1,"38455":0,"38456":1370,"38457":0,"38458":0,"38459":0,"38460":332,"38461":1468,"38462":0,"38463":-1,"38464":-1,"38465":0,"38466":-1,"38467":0,"38468":0,"38469":1539,"38470":-1,"38471":56,"38472":0,"38473":-1,"38474":-1,"38475":-1,"38476":0,"38477":1472,"38478":0,"38479":0,"38480":-1,"38481":132,"38482":0,"38483":0,"38484":-1,"38485":-1,"38486":1329,"38487":244,"38488":-1,"38489":75,"38490":-1,"38491":0,"38492":-1,"38493":0,"38494":48,"38495":0,"38496":30,"38497":-1,"38498":0,"38499":324,"38500":173,"38501":0,"38502":0,"38503":1492,"38504":1582,"38505":-1,"38506":0,"38507":-1,"38508":0,"38509":0,"38510":-1,"38511":1467,"38512":-1,"38513":0,"38514":24,"38515":-1,"38516":1554,"38517":0,"38518":0,"38519":1580,"38520":0,"38521":-1,"38522":198,"38523":29,"38524":0,"38525":0,"38526":269,"38527":5,"38528":-1,"38529":1419,"38530":0,"38531":-1,"38532":-1,"38533":-1,"38534":0,"38535":-1,"38536":-1,"38537":385,"38538":0,"38539":28,"38540":-1,"38541":0,"38542":1404,"38543":0,"38544":0,"38545":0,"38546":-1,"38547":133,"38548":107,"38549":1475,"38550":0,"38551":0,"38552":1385,"38553":-1,"38554":9,"38555":-1,"38556":-1,"38557":1396,"38558":-1,"38559":-1,"38560":0,"38561":0,"38562":0,"38563":0,"38564":1495,"38565":-1,"38566":385,"38567":0,"38568":0,"38569":0,"38570":0,"38571":0,"38572":-1,"38573":-1,"38574":-1,"38575":0,"38576":-1,"38577":-1,"38578":0,"38579":-1,"38580":325,"38581":314,"38582":-1,"38583":-1,"38584":-1,"38585":0,"38586":-1,"38587":0,"38588":1398,"38589":0,"38590":45,"38591":1418,"38592":-1,"38593":0,"38594":0,"38595":-1,"38596":-1,"38597":-1,"38598":0,"38599":1499,"38600":0,"38601":0,"38602":154,"38603":0,"38604":0,"38605":-1,"38606":232,"38607":0,"38608":0,"38609":368,"38610":0,"38611":-1,"38612":-1,"38613":0,"38614":1308,"38615":-1,"38616":0,"38617":1400,"38618":-1,"38619":0,"38620":1480,"38621":-1,"38622":-1,"38623":-1,"38624":-1,"38625":166,"38626":-1,"38627":-1,"38628":-1,"38629":-1,"38630":0,"38631":1399,"38632":-1,"38633":-1,"38634":0,"38635":-1,"38636":-1,"38637":-1,"38638":0,"38639":-1,"38640":0,"38641":-1,"38642":0,"38643":-1,"38644":0,"38645":1583,"38646":1518,"38647":1398,"38648":0,"38649":-1,"38650":-1,"38651":16,"38652":1509,"38653":0,"38654":0,"38655":0,"38656":0,"38657":0,"38658":0,"38659":-1,"38660":-1,"38661":299,"38662":0,"38663":134,"38664":0,"38665":37,"38666":0,"38667":0,"38668":0,"38669":0,"38670":1443,"38671":284,"38672":0,"38673":0,"38674":0,"38675":0,"38676":-1,"38677":132,"38678":-1,"38679":268,"38680":1309,"38681":0,"38682":1449,"38683":-1,"38684":-1,"38685":17,"38686":0,"38687":0,"38688":1422,"38689":-1,"38690":-1,"38691":0,"38692":0,"38693":289,"38694":0,"38695":0,"38696":-1,"38697":0,"38698":378,"38699":-1,"38700":1342,"38701":0,"38702":1433,"38703":0,"38704":-1,"38705":0,"38706":-1,"38707":187,"38708":0,"38709":1427,"38710":-1,"38711":0,"38712":341,"38713":-1,"38714":-1,"38715":0,"38716":1512,"38717":0,"38718":20,"38719":1576,"38720":0,"38721":0,"38722":0,"38723":0,"38724":-1,"38725":21,"38726":0,"38727":1525,"38728":266,"38729":-1,"38730":1394,"38731":1400,"38732":-1,"38733":-1,"38734":-1,"38735":-1,"38736":278,"38737":0,"38738":0,"38739":0,"38740":1478,"38741":0,"38742":0,"38743":0,"38744":-1,"38745":1538,"38746":0,"38747":1358,"38748":0,"38749":1419,"38750":0,"38751":0,"38752":-1,"38753":161,"38754":97,"38755":0,"38756":-1,"38757":-1,"38758":-1,"38759":-1,"38760":28,"38761":-1,"38762":0,"38763":0,"38764":0,"38765":0,"38766":0,"38767":-1,"38768":-1,"38769":0,"38770":0,"38771":0,"38772":0,"38773":0,"38774":0,"38775":-1,"38776":-1,"38777":0,"38778":197,"38779":-1,"38780":0,"38781":-1,"38782":0,"38783":0,"38784":0,"38785":0,"38786":0,"38787":-1,"38788":0,"38789":0,"38790":0,"38791":-1,"38792":-1,"38793":0,"38794":207,"38795":0,"38796":1568,"38797":-1,"38798":323,"38799":-1,"38800":0,"38801":0,"38802":-1,"38803":-1,"38804":-1,"38805":-1,"38806":-1,"38807":1386,"38808":0,"38809":0,"38810":0,"38811":0,"38812":365,"38813":0,"38814":1496,"38815":-1,"38816":0,"38817":0,"38818":0,"38819":-1,"38820":-1,"38821":199,"38822":-1,"38823":56,"38824":-1,"38825":0,"38826":-1,"38827":93,"38828":-1,"38829":1353,"38830":0,"38831":0,"38832":-1,"38833":1375,"38834":-1,"38835":0,"38836":1350,"38837":-1,"38838":239,"38839":-1,"38840":220,"38841":1400,"38842":0,"38843":-1,"38844":0,"38845":0,"38846":-1,"38847":1423,"38848":-1,"38849":0,"38850":370,"38851":0,"38852":0,"38853":-1,"38854":0,"38855":360,"38856":0,"38857":172,"38858":-1,"38859":-1,"38860":0,"38861":-1,"38862":1535,"38863":0,"38864":1485,"38865":182,"38866":1423,"38867":289,"38868":0,"38869":-1,"38870":-1,"38871":0,"38872":0,"38873":1577,"38874":1445,"38875":-1,"38876":0,"38877":0,"38878":0,"38879":362,"38880":1379,"38881":0,"38882":1529,"38883":0,"38884":0,"38885":0,"38886":-1,"38887":0,"38888":174,"38889":-1,"38890":0,"38891":0,"38892":-1,"38893":-1,"38894":-1,"38895":1565,"38896":246,"38897":0,"38898":-1,"38899":0,"38900":-1,"38901":0,"38902":0,"38903":1480,"38904":0,"38905":-1,"38906":0,"38907":1309,"38908":-1,"38909":0,"38910":0,"38911":0,"38912":-1,"38913":0,"38914":0,"38915":4,"38916":0,"38917":40,"38918":0,"38919":0,"38920":365,"38921":0,"38922":0,"38923":0,"38924":-1,"38925":0,"38926":0,"38927":1304,"38928":0,"38929":0,"38930":0,"38931":0,"38932":206,"38933":0,"38934":0,"38935":207,"38936":-1,"38937":195,"38938":0,"38939":0,"38940":-1,"38941":-1,"38942":0,"38943":0,"38944":0,"38945":208,"38946":1354,"38947":0,"38948":-1,"38949":-1,"38950":1458,"38951":-1,"38952":0,"38953":0,"38954":-1,"38955":0,"38956":0,"38957":-1,"38958":0,"38959":0,"38960":1547,"38961":-1,"38962":1306,"38963":-1,"38964":0,"38965":-1,"38966":-1,"38967":1579,"38968":0,"38969":-1,"38970":-1,"38971":0,"38972":-1,"38973":0,"38974":0,"38975":0,"38976":1420,"38977":-1,"38978":-1,"38979":1334,"38980":-1,"38981":-1,"38982":0,"38983":-1,"38984":0,"38985":89,"38986":1466,"38987":-1,"38988":1436,"38989":0,"38990":-1,"38991":331,"38992":-1,"38993":0,"38994":1512,"38995":0,"38996":0,"38997":-1,"38998":0,"38999":0,"39000":0,"39001":0,"39002":-1,"39003":123,"39004":133,"39005":0,"39006":0,"39007":0,"39008":1338,"39009":0,"39010":0,"39011":-1,"39012":239,"39013":0,"39014":-1,"39015":0,"39016":-1,"39017":1573,"39018":1333,"39019":0,"39020":228,"39021":0,"39022":0,"39023":0,"39024":-1,"39025":-1,"39026":-1,"39027":-1,"39028":0,"39029":-1,"39030":167,"39031":1541,"39032":61,"39033":0,"39034":-1,"39035":1554,"39036":-1,"39037":6,"39038":1411,"39039":-1,"39040":0,"39041":0,"39042":-1,"39043":0,"39044":-1,"39045":165,"39046":0,"39047":0,"39048":0,"39049":-1,"39050":0,"39051":1469,"39052":0,"39053":0,"39054":-1,"39055":-1,"39056":-1,"39057":0,"39058":0,"39059":0,"39060":0,"39061":0,"39062":-1,"39063":0,"39064":0,"39065":0,"39066":0,"39067":1463,"39068":1350,"39069":1434,"39070":0,"39071":-1,"39072":0,"39073":0,"39074":307,"39075":-1,"39076":1442,"39077":-1,"39078":128,"39079":1423,"39080":1328,"39081":-1,"39082":0,"39083":1389,"39084":-1,"39085":0,"39086":-1,"39087":1545,"39088":0,"39089":1493,"39090":203,"39091":-1,"39092":0,"39093":-1,"39094":201,"39095":-1,"39096":0,"39097":0,"39098":0,"39099":1497,"39100":-1,"39101":0,"39102":-1,"39103":0,"39104":-1,"39105":1337,"39106":0,"39107":1303,"39108":0,"39109":261,"39110":0,"39111":0,"39112":313,"39113":-1,"39114":0,"39115":149,"39116":0,"39117":0,"39118":1322,"39119":0,"39120":0,"39121":-1,"39122":226,"39123":259,"39124":-1,"39125":0,"39126":-1,"39127":0,"39128":-1,"39129":-1,"39130":0,"39131":0,"39132":303,"39133":-1,"39134":0,"39135":27,"39136":1579,"39137":0,"39138":0,"39139":-1,"39140":226,"39141":0,"39142":-1,"39143":0,"39144":0,"39145":-1,"39146":0,"39147":0,"39148":-1,"39149":0,"39150":1400,"39151":45,"39152":0,"39153":-1,"39154":-1,"39155":-1,"39156":0,"39157":-1,"39158":0,"39159":1440,"39160":-1,"39161":7,"39162":-1,"39163":0,"39164":-1,"39165":1508,"39166":-1,"39167":0,"39168":0,"39169":372,"39170":0,"39171":0,"39172":-1,"39173":1384,"39174":-1,"39175":0,"39176":0,"39177":1582,"39178":-1,"39179":305,"39180":-1,"39181":-1,"39182":-1,"39183":1514,"39184":-1,"39185":293,"39186":-1,"39187":202,"39188":0,"39189":-1,"39190":0,"39191":0,"39192":0,"39193":438,"39194":0,"39195":-1,"39196":-1,"39197":0,"39198":0,"39199":0,"39200":1439,"39201":0,"39202":1410,"39203":0,"39204":1400,"39205":0,"39206":19,"39207":383,"39208":0,"39209":203,"39210":0,"39211":0,"39212":-1,"39213":-1,"39214":-1,"39215":0,"39216":-1,"39217":0,"39218":0,"39219":-1,"39220":-1,"39221":-1,"39222":0,"39223":86,"39224":366,"39225":32,"39226":-1,"39227":0,"39228":0,"39229":369,"39230":0,"39231":0,"39232":0,"39233":-1,"39234":0,"39235":-1,"39236":0,"39237":-1,"39238":257,"39239":0,"39240":0,"39241":0,"39242":0,"39243":1547,"39244":-1,"39245":0,"39246":0,"39247":1336,"39248":284,"39249":1463,"39250":1380,"39251":1559,"39252":406,"39253":0,"39254":0,"39255":-1,"39256":0,"39257":0,"39258":1400,"39259":-1,"39260":0,"39261":-1,"39262":0,"39263":0,"39264":0,"39265":-1,"39266":0,"39267":0,"39268":1565,"39269":237,"39270":-1,"39271":0,"39272":-1,"39273":0,"39274":-1,"39275":-1,"39276":-1,"39277":0,"39278":0,"39279":-1,"39280":0,"39281":0,"39282":-1,"39283":-1,"39284":1548,"39285":-1,"39286":473,"39287":0,"39288":0,"39289":0,"39290":293,"39291":1479,"39292":-1,"39293":0,"39294":0,"39295":369,"39296":0,"39297":0,"39298":1349,"39299":76,"39300":-1,"39301":0,"39302":380,"39303":18,"39304":0,"39305":0,"39306":173,"39307":0,"39308":0,"39309":0,"39310":0,"39311":-1,"39312":-1,"39313":-1,"39314":-1,"39315":0,"39316":0,"39317":0,"39318":0,"39319":-1,"39320":111,"39321":0,"39322":0,"39323":0,"39324":0,"39325":0,"39326":0,"39327":0,"39328":0,"39329":-1,"39330":323,"39331":-1,"39332":1542,"39333":36,"39334":0,"39335":-1,"39336":-1,"39337":0,"39338":-1,"39339":-1,"39340":0,"39341":481,"39342":-1,"39343":0,"39344":-1,"39345":-1,"39346":-1,"39347":0,"39348":1569,"39349":0,"39350":0,"39351":-1,"39352":0,"39353":0,"39354":-1,"39355":0,"39356":-1,"39357":0,"39358":0,"39359":0,"39360":-1,"39361":0,"39362":1519,"39363":0,"39364":-1,"39365":-1,"39366":-1,"39367":0,"39368":0,"39369":-1,"39370":-1,"39371":0,"39372":0,"39373":0,"39374":127,"39375":194,"39376":0,"39377":-1,"39378":334,"39379":41,"39380":0,"39381":0,"39382":0,"39383":-1,"39384":0,"39385":0,"39386":1390,"39387":0,"39388":40,"39389":197,"39390":186,"39391":0,"39392":0,"39393":0,"39394":-1,"39395":0,"39396":0,"39397":98,"39398":0,"39399":-1,"39400":0,"39401":-1,"39402":0,"39403":0,"39404":347,"39405":0,"39406":0,"39407":-1,"39408":-1,"39409":0,"39410":-1,"39411":0,"39412":76,"39413":295,"39414":-1,"39415":0,"39416":244,"39417":0,"39418":1395,"39419":0,"39420":0,"39421":0,"39422":27,"39423":0,"39424":0,"39425":0,"39426":-1,"39427":1522,"39428":-1,"39429":0,"39430":194,"39431":0,"39432":-1,"39433":0,"39434":166,"39435":1489,"39436":-1,"39437":0,"39438":1342,"39439":0,"39440":-1,"39441":0,"39442":-1,"39443":-1,"39444":-1,"39445":0,"39446":0,"39447":0,"39448":188,"39449":0,"39450":0,"39451":-1,"39452":0,"39453":-1,"39454":-1,"39455":305,"39456":1539,"39457":0,"39458":0,"39459":0,"39460":-1,"39461":343,"39462":4,"39463":298,"39464":-1,"39465":0,"39466":-1,"39467":0,"39468":-1,"39469":0,"39470":-1,"39471":1571,"39472":1303,"39473":1397,"39474":-1,"39475":268,"39476":306,"39477":0,"39478":-1,"39479":-1,"39480":0,"39481":-1,"39482":0,"39483":-1,"39484":1449,"39485":0,"39486":0,"39487":0,"39488":328,"39489":0,"39490":0,"39491":-1,"39492":-1,"39493":-1,"39494":0,"39495":362,"39496":-1,"39497":1460,"39498":0,"39499":-1,"39500":2,"39501":-1,"39502":-1,"39503":1380,"39504":-1,"39505":165,"39506":0,"39507":0,"39508":-1,"39509":0,"39510":-1,"39511":-1,"39512":0,"39513":-1,"39514":-1,"39515":0,"39516":61,"39517":1464,"39518":0,"39519":1382,"39520":52,"39521":-1,"39522":-1,"39523":0,"39524":1476,"39525":0,"39526":0,"39527":1309,"39528":1423,"39529":-1,"39530":1580,"39531":1568,"39532":0,"39533":1486,"39534":-1,"39535":0,"39536":0,"39537":0,"39538":0,"39539":0,"39540":175,"39541":-1,"39542":-1,"39543":-1,"39544":1451,"39545":0,"39546":0,"39547":-1,"39548":0,"39549":0,"39550":-1,"39551":0,"39552":33,"39553":0,"39554":-1,"39555":1448,"39556":-1,"39557":-1,"39558":-1,"39559":360,"39560":-1,"39561":1476,"39562":0,"39563":0,"39564":65,"39565":163,"39566":-1,"39567":0,"39568":0,"39569":-1,"39570":0,"39571":-1,"39572":-1,"39573":0,"39574":0,"39575":0,"39576":0,"39577":-1,"39578":1340,"39579":0,"39580":1547,"39581":0,"39582":384,"39583":40,"39584":0,"39585":-1,"39586":-1,"39587":0,"39588":0,"39589":1397,"39590":0,"39591":-1,"39592":-1,"39593":1469,"39594":1303,"39595":0,"39596":-1,"39597":0,"39598":0,"39599":0,"39600":230,"39601":-1,"39602":284,"39603":-1,"39604":1550,"39605":0,"39606":0,"39607":0,"39608":-1,"39609":0,"39610":-1,"39611":243,"39612":-1,"39613":-1,"39614":0,"39615":0,"39616":0,"39617":132,"39618":-1,"39619":0,"39620":0,"39621":0,"39622":0,"39623":0,"39624":0,"39625":-1,"39626":322,"39627":0,"39628":0,"39629":0,"39630":352,"39631":-1,"39632":0,"39633":0,"39634":1545,"39635":-1,"39636":0,"39637":-1,"39638":-1,"39639":0,"39640":1389,"39641":1347,"39642":0,"39643":0,"39644":0,"39645":1491,"39646":1399,"39647":0,"39648":0,"39649":0,"39650":0,"39651":1446,"39652":0,"39653":0,"39654":-1,"39655":25,"39656":-1,"39657":1334,"39658":-1,"39659":-1,"39660":0,"39661":1363,"39662":1439,"39663":0,"39664":-1,"39665":1416,"39666":0,"39667":-1,"39668":0,"39669":1319,"39670":364,"39671":-1,"39672":0,"39673":0,"39674":1470,"39675":0,"39676":-1,"39677":0,"39678":225,"39679":-1,"39680":-1,"39681":-1,"39682":0,"39683":0,"39684":1320,"39685":-1,"39686":153,"39687":-1,"39688":0,"39689":1531,"39690":-1,"39691":-1,"39692":0,"39693":-1,"39694":1448,"39695":0,"39696":-1,"39697":-1,"39698":0,"39699":0,"39700":0,"39701":0,"39702":352,"39703":146,"39704":0,"39705":217,"39706":0,"39707":-1,"39708":-1,"39709":-1,"39710":1459,"39711":-1,"39712":1515,"39713":-1,"39714":1478,"39715":1491,"39716":0,"39717":-1,"39718":-1,"39719":0,"39720":-1,"39721":0,"39722":0,"39723":-1,"39724":-1,"39725":64,"39726":-1,"39727":-1,"39728":-1,"39729":0,"39730":0,"39731":1503,"39732":-1,"39733":-1,"39734":39,"39735":0,"39736":-1,"39737":346,"39738":0,"39739":-1,"39740":1504,"39741":0,"39742":-1,"39743":0,"39744":-1,"39745":-1,"39746":0,"39747":0,"39748":0,"39749":0,"39750":0,"39751":1394,"39752":0,"39753":1415,"39754":0,"39755":473,"39756":0,"39757":-1,"39758":1486,"39759":1569,"39760":0,"39761":1354,"39762":1329,"39763":-1,"39764":-1,"39765":1457,"39766":-1,"39767":0,"39768":135,"39769":0,"39770":-1,"39771":-1,"39772":0,"39773":-1,"39774":0,"39775":-1,"39776":208,"39777":0,"39778":0,"39779":-1,"39780":29,"39781":-1,"39782":0,"39783":0,"39784":0,"39785":0,"39786":0,"39787":0,"39788":0,"39789":-1,"39790":0,"39791":-1,"39792":-1,"39793":0,"39794":0,"39795":-1,"39796":0,"39797":0,"39798":0,"39799":-1,"39800":-1,"39801":0,"39802":343,"39803":0,"39804":0,"39805":273,"39806":-1,"39807":-1,"39808":-1,"39809":0,"39810":-1,"39811":1452,"39812":0,"39813":1430,"39814":0,"39815":254,"39816":301,"39817":1458,"39818":-1,"39819":-1,"39820":0,"39821":0,"39822":-1,"39823":-1,"39824":0,"39825":0,"39826":-1,"39827":-1,"39828":0,"39829":-1,"39830":-1,"39831":0,"39832":0,"39833":-1,"39834":1298,"39835":0,"39836":1477,"39837":-1,"39838":0,"39839":0,"39840":-1,"39841":0,"39842":-1,"39843":-1,"39844":-1,"39845":-1,"39846":0,"39847":0,"39848":-1,"39849":201,"39850":0,"39851":0,"39852":237,"39853":-1,"39854":-1,"39855":0,"39856":0,"39857":0,"39858":1498,"39859":1475,"39860":-1,"39861":0,"39862":0,"39863":-1,"39864":1577,"39865":1515,"39866":0,"39867":208,"39868":0,"39869":0,"39870":-1,"39871":255,"39872":-1,"39873":-1,"39874":0,"39875":68,"39876":-1,"39877":161,"39878":0,"39879":0,"39880":197,"39881":-1,"39882":0,"39883":0,"39884":-1,"39885":0,"39886":238,"39887":0,"39888":406,"39889":0,"39890":322,"39891":-1,"39892":0,"39893":0,"39894":0,"39895":50,"39896":-1,"39897":1385,"39898":0,"39899":0,"39900":-1,"39901":1360,"39902":174,"39903":0,"39904":-1,"39905":-1,"39906":-1,"39907":-1,"39908":0,"39909":0,"39910":0,"39911":-1,"39912":0,"39913":0,"39914":-1,"39915":0,"39916":-1,"39917":226,"39918":0,"39919":329,"39920":-1,"39921":0,"39922":0,"39923":0,"39924":0,"39925":1511,"39926":1578,"39927":0,"39928":-1,"39929":238,"39930":0,"39931":0,"39932":52,"39933":1510,"39934":0,"39935":0,"39936":375,"39937":1441,"39938":-1,"39939":0,"39940":120,"39941":47,"39942":-1,"39943":0,"39944":0,"39945":0,"39946":0,"39947":0,"39948":0,"39949":-1,"39950":240,"39951":0,"39952":0,"39953":0,"39954":1372,"39955":1406,"39956":0,"39957":-1,"39958":0,"39959":0,"39960":-1,"39961":261,"39962":0,"39963":58,"39964":72,"39965":1471,"39966":-1,"39967":-1,"39968":0,"39969":0,"39970":0,"39971":-1,"39972":1495,"39973":1391,"39974":0,"39975":1351,"39976":0,"39977":179,"39978":0,"39979":187,"39980":0,"39981":0,"39982":0,"39983":0,"39984":-1,"39985":0,"39986":304,"39987":234,"39988":-1,"39989":0,"39990":-1,"39991":249,"39992":1558,"39993":0,"39994":0,"39995":-1,"39996":0,"39997":-1,"39998":0,"39999":-1,"40000":20,"40001":0,"40002":-1,"40003":1299,"40004":0,"40005":0,"40006":1308,"40007":1331,"40008":0,"40009":0,"40010":0,"40011":0,"40012":9,"40013":-1,"40014":135,"40015":0,"40016":-1,"40017":0,"40018":57,"40019":-1,"40020":328,"40021":-1,"40022":0,"40023":0,"40024":0,"40025":1550,"40026":-1,"40027":0,"40028":0,"40029":0,"40030":0,"40031":0,"40032":0,"40033":1492,"40034":0,"40035":1396,"40036":0,"40037":273,"40038":1426,"40039":1518,"40040":0,"40041":-1,"40042":0,"40043":-1,"40044":-1,"40045":-1,"40046":-1,"40047":-1,"40048":0,"40049":-1,"40050":0,"40051":234,"40052":1355,"40053":301,"40054":-1,"40055":-1,"40056":168,"40057":0,"40058":0,"40059":23,"40060":-1,"40061":0,"40062":0,"40063":1329,"40064":0,"40065":0,"40066":169,"40067":0,"40068":0,"40069":-1,"40070":-1,"40071":0,"40072":-1,"40073":1583,"40074":149,"40075":357,"40076":-1,"40077":370,"40078":1427,"40079":-1,"40080":-1,"40081":254,"40082":-1,"40083":0,"40084":72,"40085":-1,"40086":-1,"40087":1516,"40088":0,"40089":-1,"40090":0,"40091":0,"40092":-1,"40093":0,"40094":0,"40095":0,"40096":-1,"40097":0,"40098":0,"40099":0,"40100":197,"40101":0,"40102":1465,"40103":45,"40104":-1,"40105":0,"40106":0,"40107":-1,"40108":244,"40109":0,"40110":-1,"40111":370,"40112":1347,"40113":1551,"40114":157,"40115":0,"40116":-1,"40117":0,"40118":1397,"40119":1337,"40120":202,"40121":-1,"40122":-1,"40123":47,"40124":-1,"40125":1481,"40126":-1,"40127":0,"40128":0,"40129":-1,"40130":0,"40131":-1,"40132":-1,"40133":0,"40134":0,"40135":-1,"40136":0,"40137":0,"40138":-1,"40139":0,"40140":0,"40141":0,"40142":68,"40143":-1,"40144":0,"40145":58,"40146":0,"40147":1341,"40148":-1,"40149":1516,"40150":-1,"40151":-1,"40152":0,"40153":328,"40154":-1,"40155":-1,"40156":0,"40157":-1,"40158":0,"40159":1429,"40160":-1,"40161":0,"40162":0,"40163":0,"40164":-1,"40165":-1,"40166":0,"40167":-1,"40168":76,"40169":0,"40170":0,"40171":-1,"40172":29,"40173":0,"40174":0,"40175":-1,"40176":1315,"40177":-1,"40178":0,"40179":-1,"40180":0,"40181":159,"40182":0,"40183":0,"40184":0,"40185":29,"40186":-1,"40187":0,"40188":237,"40189":0,"40190":-1,"40191":0,"40192":-1,"40193":383,"40194":0,"40195":0,"40196":1441,"40197":-1,"40198":0,"40199":0,"40200":0,"40201":-1,"40202":0,"40203":1399,"40204":337,"40205":170,"40206":0,"40207":1447,"40208":0,"40209":0,"40210":303,"40211":0,"40212":-1,"40213":0,"40214":0,"40215":1503,"40216":325,"40217":0,"40218":0,"40219":-1,"40220":203,"40221":154,"40222":0,"40223":33,"40224":0,"40225":200,"40226":0,"40227":0,"40228":-1,"40229":-1,"40230":0,"40231":-1,"40232":0,"40233":-1,"40234":1510,"40235":0,"40236":-1,"40237":0,"40238":-1,"40239":-1,"40240":207,"40241":0,"40242":0,"40243":1432,"40244":44,"40245":0,"40246":0,"40247":0,"40248":-1,"40249":239,"40250":0,"40251":0,"40252":0,"40253":0,"40254":0,"40255":39,"40256":-1,"40257":1300,"40258":0,"40259":-1,"40260":-1,"40261":-1,"40262":1366,"40263":67,"40264":-1,"40265":297,"40266":0,"40267":0,"40268":0,"40269":-1,"40270":-1,"40271":176,"40272":1583,"40273":0,"40274":0,"40275":0,"40276":0,"40277":0,"40278":-1,"40279":0,"40280":169,"40281":0,"40282":0,"40283":0,"40284":288,"40285":0,"40286":0,"40287":-1,"40288":0,"40289":57,"40290":0,"40291":-1,"40292":-1,"40293":1559,"40294":0,"40295":0,"40296":1371,"40297":0,"40298":-1,"40299":0,"40300":1440,"40301":-1,"40302":371,"40303":-1,"40304":28,"40305":-1,"40306":0,"40307":0,"40308":0,"40309":-1,"40310":0,"40311":-1,"40312":-1,"40313":-1,"40314":0,"40315":0,"40316":-1,"40317":-1,"40318":0,"40319":0,"40320":0,"40321":1435,"40322":1336,"40323":1563,"40324":0,"40325":0,"40326":-1,"40327":1548,"40328":1466,"40329":-1,"40330":-1,"40331":-1,"40332":0,"40333":0,"40334":0,"40335":0,"40336":0,"40337":0,"40338":-1,"40339":0,"40340":0,"40341":-1,"40342":0,"40343":406,"40344":1482,"40345":-1,"40346":0,"40347":122,"40348":0,"40349":11,"40350":-1,"40351":1340,"40352":-1,"40353":-1,"40354":-1,"40355":-1,"40356":-1,"40357":0,"40358":0,"40359":0,"40360":-1,"40361":1339,"40362":0,"40363":0,"40364":-1,"40365":49,"40366":0,"40367":0,"40368":0,"40369":-1,"40370":1582,"40371":0,"40372":220,"40373":-1,"40374":1414,"40375":-1,"40376":-1,"40377":-1,"40378":-1,"40379":-1,"40380":0,"40381":0,"40382":93,"40383":0,"40384":0,"40385":0,"40386":0,"40387":-1,"40388":0,"40389":0,"40390":0,"40391":31,"40392":0,"40393":147,"40394":219,"40395":1331,"40396":0,"40397":-1,"40398":1457,"40399":-1,"40400":1414,"40401":0,"40402":0,"40403":1505,"40404":-1,"40405":38,"40406":0,"40407":0,"40408":1497,"40409":162,"40410":0,"40411":1380,"40412":0,"40413":-1,"40414":0,"40415":281,"40416":-1,"40417":0,"40418":0,"40419":0,"40420":200,"40421":0,"40422":297,"40423":0,"40424":0,"40425":-1,"40426":-1,"40427":-1,"40428":0,"40429":-1,"40430":0,"40431":0,"40432":1441,"40433":0,"40434":-1,"40435":-1,"40436":106,"40437":-1,"40438":1539,"40439":0,"40440":115,"40441":314,"40442":-1,"40443":0,"40444":0,"40445":0,"40446":317,"40447":0,"40448":-1,"40449":-1,"40450":0,"40451":-1,"40452":-1,"40453":-1,"40454":0,"40455":-1,"40456":-1,"40457":0,"40458":208,"40459":0,"40460":-1,"40461":-1,"40462":-1,"40463":0,"40464":-1,"40465":0,"40466":1548,"40467":0,"40468":15,"40469":-1,"40470":0,"40471":0,"40472":-1,"40473":0,"40474":1372,"40475":0,"40476":0,"40477":0,"40478":0,"40479":0,"40480":0,"40481":215,"40482":122,"40483":0,"40484":0,"40485":1421,"40486":0,"40487":0,"40488":-1,"40489":-1,"40490":161,"40491":0,"40492":0,"40493":1341,"40494":0,"40495":154,"40496":-1,"40497":0,"40498":-1,"40499":1327,"40500":0,"40501":0,"40502":61,"40503":-1,"40504":-1,"40505":1422,"40506":0,"40507":179,"40508":0,"40509":-1,"40510":0,"40511":-1,"40512":343,"40513":17,"40514":135,"40515":0,"40516":0,"40517":0,"40518":0,"40519":-1,"40520":-1,"40521":-1,"40522":0,"40523":0,"40524":0,"40525":0,"40526":67,"40527":0,"40528":-1,"40529":288,"40530":0,"40531":-1,"40532":0,"40533":158,"40534":-1,"40535":-1,"40536":0,"40537":0,"40538":1329,"40539":297,"40540":225,"40541":268,"40542":0,"40543":-1,"40544":0,"40545":1356,"40546":1565,"40547":0,"40548":0,"40549":-1,"40550":-1,"40551":0,"40552":-1,"40553":-1,"40554":-1,"40555":-1,"40556":0,"40557":0,"40558":-1,"40559":0,"40560":-1,"40561":0,"40562":-1,"40563":0,"40564":0,"40565":1565,"40566":-1,"40567":1467,"40568":0,"40569":-1,"40570":162,"40571":-1,"40572":-1,"40573":-1,"40574":0,"40575":0,"40576":0,"40577":0,"40578":-1,"40579":192,"40580":0,"40581":1333,"40582":0,"40583":0,"40584":0,"40585":343,"40586":252,"40587":240,"40588":122,"40589":0,"40590":0,"40591":1435,"40592":0,"40593":-1,"40594":-1,"40595":-1,"40596":-1,"40597":0,"40598":0,"40599":23,"40600":0,"40601":-1,"40602":-1,"40603":194,"40604":0,"40605":1372,"40606":0,"40607":0,"40608":1342,"40609":0,"40610":0,"40611":0,"40612":12,"40613":0,"40614":15,"40615":0,"40616":174,"40617":331,"40618":1333,"40619":186,"40620":0,"40621":-1,"40622":0,"40623":-1,"40624":1385,"40625":-1,"40626":-1,"40627":0,"40628":5,"40629":-1,"40630":0,"40631":-1,"40632":-1,"40633":0,"40634":-1,"40635":0,"40636":0,"40637":0,"40638":0,"40639":-1,"40640":1511,"40641":0,"40642":0,"40643":-1,"40644":1385,"40645":0,"40646":112,"40647":-1,"40648":-1,"40649":-1,"40650":0,"40651":0,"40652":150,"40653":1554,"40654":-1,"40655":0,"40656":0,"40657":1315,"40658":-1,"40659":208,"40660":29,"40661":338,"40662":125,"40663":0,"40664":238,"40665":1399,"40666":-1,"40667":-1,"40668":0,"40669":0,"40670":0,"40671":1482,"40672":0,"40673":0,"40674":-1,"40675":0,"40676":-1,"40677":122,"40678":-1,"40679":0,"40680":0,"40681":-1,"40682":0,"40683":-1,"40684":-1,"40685":-1,"40686":-1,"40687":-1,"40688":0,"40689":0,"40690":-1,"40691":-1,"40692":0,"40693":166,"40694":0,"40695":1553,"40696":-1,"40697":0,"40698":0,"40699":50,"40700":1310,"40701":0,"40702":0,"40703":-1,"40704":378,"40705":-1,"40706":16,"40707":0,"40708":1348,"40709":0,"40710":-1,"40711":-1,"40712":0,"40713":0,"40714":0,"40715":0,"40716":-1,"40717":-1,"40718":-1,"40719":-1,"40720":0,"40721":0,"40722":1379,"40723":182,"40724":-1,"40725":0,"40726":1512,"40727":0,"40728":48,"40729":0,"40730":0,"40731":1546,"40732":0,"40733":0,"40734":0,"40735":0,"40736":0,"40737":119,"40738":-1,"40739":0,"40740":0,"40741":-1,"40742":-1,"40743":0,"40744":106,"40745":0,"40746":-1,"40747":-1,"40748":-1,"40749":1551,"40750":-1,"40751":350,"40752":1371,"40753":0,"40754":0,"40755":0,"40756":-1,"40757":179,"40758":-1,"40759":0,"40760":-1,"40761":0,"40762":-1,"40763":0,"40764":0,"40765":0,"40766":265,"40767":1395,"40768":-1,"40769":0,"40770":-1,"40771":0,"40772":-1,"40773":0,"40774":0,"40775":0,"40776":-1,"40777":-1,"40778":182,"40779":0,"40780":0,"40781":-1,"40782":0,"40783":-1,"40784":155,"40785":-1,"40786":-1,"40787":0,"40788":0,"40789":0,"40790":0,"40791":1375,"40792":1556,"40793":168,"40794":-1,"40795":0,"40796":-1,"40797":0,"40798":111,"40799":0,"40800":-1,"40801":0,"40802":0,"40803":1425,"40804":0,"40805":-1,"40806":0,"40807":0,"40808":0,"40809":0,"40810":1437,"40811":0,"40812":-1,"40813":0,"40814":-1,"40815":169,"40816":0,"40817":1468,"40818":-1,"40819":-1,"40820":0,"40821":-1,"40822":1554,"40823":0,"40824":1572,"40825":0,"40826":-1,"40827":1528,"40828":0,"40829":-1,"40830":0,"40831":0,"40832":0,"40833":0,"40834":-1,"40835":-1,"40836":-1,"40837":-1,"40838":-1,"40839":1524,"40840":-1,"40841":0,"40842":1310,"40843":1496,"40844":0,"40845":0,"40846":0,"40847":0,"40848":0,"40849":214,"40850":-1,"40851":0,"40852":0,"40853":0,"40854":0,"40855":-1,"40856":-1,"40857":0,"40858":0,"40859":0,"40860":-1,"40861":1299,"40862":44,"40863":-1,"40864":0,"40865":-1,"40866":-1,"40867":-1,"40868":-1,"40869":157,"40870":-1,"40871":0,"40872":0,"40873":0,"40874":0,"40875":-1,"40876":330,"40877":1324,"40878":-1,"40879":-1,"40880":0,"40881":31,"40882":-1,"40883":-1,"40884":330,"40885":145,"40886":0,"40887":0,"40888":0,"40889":-1,"40890":-1,"40891":0,"40892":0,"40893":1547,"40894":0,"40895":-1,"40896":0,"40897":-1,"40898":1341,"40899":-1,"40900":1496,"40901":124,"40902":0,"40903":1352,"40904":-1,"40905":0,"40906":-1,"40907":-1,"40908":0,"40909":0,"40910":0,"40911":0,"40912":169,"40913":-1,"40914":61,"40915":-1,"40916":232,"40917":0,"40918":0,"40919":40,"40920":-1,"40921":0,"40922":1542,"40923":109,"40924":0,"40925":0,"40926":1542,"40927":-1,"40928":-1,"40929":69,"40930":-1,"40931":0,"40932":-1,"40933":0,"40934":-1,"40935":165,"40936":1329,"40937":0,"40938":0,"40939":-1,"40940":0,"40941":1333,"40942":239,"40943":-1,"40944":1404,"40945":0,"40946":0,"40947":0,"40948":0,"40949":0,"40950":-1,"40951":0,"40952":-1,"40953":0,"40954":-1,"40955":0,"40956":-1,"40957":0,"40958":-1,"40959":1513,"40960":0,"40961":371,"40962":0,"40963":21,"40964":0,"40965":29,"40966":-1,"40967":0,"40968":-1,"40969":1388,"40970":0,"40971":-1,"40972":-1,"40973":1437,"40974":0,"40975":1421,"40976":-1,"40977":-1,"40978":0,"40979":97,"40980":0,"40981":-1,"40982":132,"40983":-1,"40984":0,"40985":165,"40986":0,"40987":0,"40988":-1,"40989":0,"40990":199,"40991":0,"40992":1363,"40993":0,"40994":0,"40995":-1,"40996":131,"40997":-1,"40998":0,"40999":-1,"41000":0,"41001":0,"41002":0,"41003":-1,"41004":0,"41005":-1,"41006":0,"41007":-1,"41008":-1,"41009":0,"41010":0,"41011":0,"41012":0,"41013":-1,"41014":299,"41015":-1,"41016":0,"41017":-1,"41018":0,"41019":0,"41020":-1,"41021":0,"41022":0,"41023":0,"41024":0,"41025":0,"41026":0,"41027":0,"41028":0,"41029":0,"41030":1389,"41031":-1,"41032":-1,"41033":-1,"41034":1306,"41035":0,"41036":0,"41037":37,"41038":0,"41039":-1,"41040":0,"41041":1390,"41042":-1,"41043":-1,"41044":-1,"41045":0,"41046":0,"41047":0,"41048":-1,"41049":0,"41050":0,"41051":12,"41052":-1,"41053":1305,"41054":0,"41055":381,"41056":0,"41057":0,"41058":0,"41059":75,"41060":0,"41061":0,"41062":-1,"41063":-1,"41064":167,"41065":165,"41066":-1,"41067":0,"41068":-1,"41069":0,"41070":-1,"41071":0,"41072":1573,"41073":0,"41074":-1,"41075":1553,"41076":-1,"41077":0,"41078":0,"41079":106,"41080":0,"41081":-1,"41082":1302,"41083":-1,"41084":0,"41085":1462,"41086":234,"41087":164,"41088":1343,"41089":-1,"41090":0,"41091":348,"41092":1347,"41093":0,"41094":0,"41095":-1,"41096":0,"41097":-1,"41098":-1,"41099":0,"41100":-1,"41101":0,"41102":0,"41103":308,"41104":1503,"41105":144,"41106":0,"41107":0,"41108":61,"41109":0,"41110":0,"41111":372,"41112":0,"41113":-1,"41114":92,"41115":0,"41116":75,"41117":-1,"41118":-1,"41119":0,"41120":0,"41121":365,"41122":0,"41123":-1,"41124":142,"41125":0,"41126":0,"41127":119,"41128":0,"41129":1385,"41130":0,"41131":-1,"41132":-1,"41133":-1,"41134":0,"41135":1489,"41136":0,"41137":-1,"41138":0,"41139":0,"41140":0,"41141":1353,"41142":-1,"41143":0,"41144":0,"41145":-1,"41146":-1,"41147":368,"41148":1507,"41149":380,"41150":1497,"41151":0,"41152":1360,"41153":0,"41154":-1,"41155":-1,"41156":0,"41157":0,"41158":0,"41159":0,"41160":0,"41161":0,"41162":0,"41163":0,"41164":0,"41165":-1,"41166":-1,"41167":187,"41168":0,"41169":20,"41170":0,"41171":-1,"41172":0,"41173":0,"41174":0,"41175":77,"41176":0,"41177":1504,"41178":0,"41179":1423,"41180":-1,"41181":-1,"41182":-1,"41183":-1,"41184":-1,"41185":0,"41186":1473,"41187":-1,"41188":0,"41189":0,"41190":0,"41191":215,"41192":0,"41193":-1,"41194":-1,"41195":155,"41196":0,"41197":1518,"41198":0,"41199":-1,"41200":-1,"41201":-1,"41202":1512,"41203":406,"41204":0,"41205":-1,"41206":83,"41207":0,"41208":328,"41209":0,"41210":-1,"41211":-1,"41212":3,"41213":0,"41214":1460,"41215":-1,"41216":0,"41217":-1,"41218":-1,"41219":-1,"41220":0,"41221":0,"41222":291,"41223":-1,"41224":-1,"41225":0,"41226":-1,"41227":0,"41228":0,"41229":-1,"41230":0,"41231":-1,"41232":0,"41233":312,"41234":-1,"41235":81,"41236":-1,"41237":0,"41238":0,"41239":0,"41240":0,"41241":-1,"41242":220,"41243":0,"41244":0,"41245":0,"41246":0,"41247":0,"41248":0,"41249":271,"41250":0,"41251":0,"41252":0,"41253":-1,"41254":-1,"41255":-1,"41256":-1,"41257":1468,"41258":-1,"41259":203,"41260":0,"41261":1482,"41262":169,"41263":-1,"41264":0,"41265":-1,"41266":-1,"41267":0,"41268":0,"41269":0,"41270":1398,"41271":0,"41272":0,"41273":0,"41274":0,"41275":0,"41276":0,"41277":0,"41278":1433,"41279":-1,"41280":202,"41281":-1,"41282":0,"41283":145,"41284":0,"41285":0,"41286":1538,"41287":-1,"41288":0,"41289":-1,"41290":0,"41291":-1,"41292":-1,"41293":-1,"41294":-1,"41295":-1,"41296":0,"41297":0,"41298":-1,"41299":0,"41300":0,"41301":1335,"41302":0,"41303":198,"41304":11,"41305":-1,"41306":0,"41307":-1,"41308":1513,"41309":-1,"41310":0,"41311":-1,"41312":13,"41313":371,"41314":0,"41315":481,"41316":1509,"41317":-1,"41318":0,"41319":0,"41320":-1,"41321":0,"41322":0,"41323":0,"41324":-1,"41325":-1,"41326":-1,"41327":0,"41328":0,"41329":-1,"41330":0,"41331":-1,"41332":0,"41333":208,"41334":-1,"41335":-1,"41336":-1,"41337":-1,"41338":0,"41339":-1,"41340":-1,"41341":-1,"41342":1522,"41343":0,"41344":1528,"41345":0,"41346":55,"41347":0,"41348":-1,"41349":-1,"41350":1387,"41351":1495,"41352":-1,"41353":18,"41354":0,"41355":1344,"41356":-1,"41357":0,"41358":0,"41359":-1,"41360":33,"41361":0,"41362":0,"41363":378,"41364":383,"41365":17,"41366":-1,"41367":-1,"41368":150,"41369":0,"41370":0,"41371":-1,"41372":-1,"41373":-1,"41374":0,"41375":1418,"41376":0,"41377":0,"41378":-1,"41379":1360,"41380":180,"41381":-1,"41382":0,"41383":44,"41384":115,"41385":7,"41386":0,"41387":0,"41388":-1,"41389":0,"41390":-1,"41391":32,"41392":0,"41393":0,"41394":-1,"41395":1340,"41396":0,"41397":0,"41398":0,"41399":-1,"41400":1395,"41401":112,"41402":0,"41403":368,"41404":1504,"41405":-1,"41406":-1,"41407":0,"41408":1304,"41409":5,"41410":1315,"41411":0,"41412":1521,"41413":-1,"41414":0,"41415":0,"41416":0,"41417":-1,"41418":286,"41419":-1,"41420":0,"41421":-1,"41422":0,"41423":1500,"41424":-1,"41425":0,"41426":159,"41427":0,"41428":29,"41429":0,"41430":1348,"41431":-1,"41432":0,"41433":0,"41434":159,"41435":0,"41436":0,"41437":0,"41438":219,"41439":0,"41440":0,"41441":36,"41442":1483,"41443":-1,"41444":-1,"41445":0,"41446":1486,"41447":-1,"41448":0,"41449":0,"41450":0,"41451":-1,"41452":0,"41453":0,"41454":1504,"41455":0,"41456":-1,"41457":0,"41458":230,"41459":-1,"41460":0,"41461":0,"41462":-1,"41463":6,"41464":1566,"41465":0,"41466":-1,"41467":0,"41468":1495,"41469":0,"41470":-1,"41471":0,"41472":0,"41473":-1,"41474":116,"41475":1383,"41476":0,"41477":1538,"41478":0,"41479":0,"41480":1394,"41481":0,"41482":-1,"41483":0,"41484":-1,"41485":1506,"41486":135,"41487":0,"41488":0,"41489":269,"41490":-1,"41491":-1,"41492":0,"41493":163,"41494":-1,"41495":1446,"41496":0,"41497":0,"41498":0,"41499":-1,"41500":1308,"41501":-1,"41502":92,"41503":0,"41504":0,"41505":0,"41506":-1,"41507":1559,"41508":-1,"41509":-1,"41510":-1,"41511":-1,"41512":137,"41513":0,"41514":0,"41515":0,"41516":-1,"41517":1516,"41518":0,"41519":-1,"41520":1465,"41521":1464,"41522":-1,"41523":0,"41524":0,"41525":0,"41526":0,"41527":-1,"41528":0,"41529":-1,"41530":372,"41531":1515,"41532":0,"41533":-1,"41534":-1,"41535":0,"41536":-1,"41537":0,"41538":0,"41539":1574,"41540":0,"41541":60,"41542":259,"41543":279,"41544":0,"41545":0,"41546":127,"41547":0,"41548":295,"41549":162,"41550":-1,"41551":0,"41552":-1,"41553":0,"41554":1306,"41555":1470,"41556":0,"41557":0,"41558":0,"41559":1544,"41560":-1,"41561":0,"41562":0,"41563":0,"41564":-1,"41565":10,"41566":1355,"41567":-1,"41568":0,"41569":-1,"41570":0,"41571":0,"41572":0,"41573":-1,"41574":-1,"41575":0,"41576":0,"41577":45,"41578":111,"41579":0,"41580":0,"41581":0,"41582":0,"41583":1359,"41584":0,"41585":0,"41586":1406,"41587":0,"41588":0,"41589":-1,"41590":-1,"41591":0,"41592":0,"41593":0,"41594":-1,"41595":0,"41596":0,"41597":0,"41598":-1,"41599":0,"41600":-1,"41601":0,"41602":0,"41603":0,"41604":0,"41605":0,"41606":0,"41607":0,"41608":0,"41609":0,"41610":0,"41611":0,"41612":0,"41613":1459,"41614":0,"41615":271,"41616":-1,"41617":-1,"41618":-1,"41619":216,"41620":-1,"41621":285,"41622":0,"41623":0,"41624":-1,"41625":0,"41626":-1,"41627":179,"41628":0,"41629":-1,"41630":1506,"41631":286,"41632":-1,"41633":1442,"41634":-1,"41635":0,"41636":1524,"41637":0,"41638":-1,"41639":0,"41640":0,"41641":6,"41642":-1,"41643":0,"41644":-1,"41645":0,"41646":0,"41647":232,"41648":0,"41649":0,"41650":198,"41651":1446,"41652":207,"41653":0,"41654":0,"41655":0,"41656":0,"41657":1527,"41658":1363,"41659":0,"41660":0,"41661":116,"41662":0,"41663":-1,"41664":1447,"41665":-1,"41666":0,"41667":-1,"41668":0,"41669":-1,"41670":-1,"41671":0,"41672":-1,"41673":0,"41674":1503,"41675":48,"41676":-1,"41677":-1,"41678":0,"41679":0,"41680":186,"41681":-1,"41682":-1,"41683":0,"41684":0,"41685":0,"41686":0,"41687":-1,"41688":14,"41689":0,"41690":-1,"41691":0,"41692":0,"41693":0,"41694":0,"41695":0,"41696":-1,"41697":1453,"41698":0,"41699":1369,"41700":1341,"41701":-1,"41702":0,"41703":0,"41704":0,"41705":-1,"41706":-1,"41707":0,"41708":0,"41709":0,"41710":1302,"41711":-1,"41712":150,"41713":0,"41714":-1,"41715":0,"41716":0,"41717":-1,"41718":12,"41719":-1,"41720":-1,"41721":-1,"41722":0,"41723":58,"41724":83,"41725":0,"41726":0,"41727":373,"41728":-1,"41729":-1,"41730":0,"41731":-1,"41732":0,"41733":0,"41734":0,"41735":0,"41736":1442,"41737":0,"41738":0,"41739":0,"41740":64,"41741":-1,"41742":0,"41743":0,"41744":-1,"41745":0,"41746":1486,"41747":-1,"41748":-1,"41749":-1,"41750":221,"41751":-1,"41752":343,"41753":306,"41754":1335,"41755":-1,"41756":-1,"41757":-1,"41758":0,"41759":-1,"41760":10,"41761":-1,"41762":214,"41763":-1,"41764":313,"41765":299,"41766":0,"41767":-1,"41768":0,"41769":1505,"41770":-1,"41771":-1,"41772":354,"41773":0,"41774":1403,"41775":0,"41776":-1,"41777":0,"41778":-1,"41779":-1,"41780":-1,"41781":0,"41782":0,"41783":0,"41784":0,"41785":0,"41786":0,"41787":-1,"41788":-1,"41789":0,"41790":-1,"41791":0,"41792":0,"41793":-1,"41794":0,"41795":0,"41796":-1,"41797":0,"41798":295,"41799":0,"41800":0,"41801":0,"41802":0,"41803":-1,"41804":0,"41805":1558,"41806":0,"41807":-1,"41808":0,"41809":0,"41810":-1,"41811":0,"41812":0,"41813":228,"41814":145,"41815":0,"41816":32,"41817":0,"41818":1396,"41819":1321,"41820":429,"41821":0,"41822":-1,"41823":473,"41824":0,"41825":365,"41826":-1,"41827":1553,"41828":339,"41829":0,"41830":1448,"41831":0,"41832":1356,"41833":-1,"41834":-1,"41835":-1,"41836":0,"41837":0,"41838":0,"41839":-1,"41840":-1,"41841":-1,"41842":0,"41843":-1,"41844":0,"41845":0,"41846":0,"41847":-1,"41848":-1,"41849":0,"41850":1543,"41851":0,"41852":0,"41853":0,"41854":0,"41855":0,"41856":0,"41857":0,"41858":-1,"41859":4,"41860":0,"41861":0,"41862":-1,"41863":1345,"41864":0,"41865":0,"41866":166,"41867":1454,"41868":0,"41869":1424,"41870":0,"41871":-1,"41872":0,"41873":0,"41874":0,"41875":0,"41876":0,"41877":-1,"41878":1469,"41879":198,"41880":-1,"41881":0,"41882":357,"41883":0,"41884":0,"41885":1301,"41886":1548,"41887":0,"41888":330,"41889":0,"41890":0,"41891":-1,"41892":0,"41893":0,"41894":-1,"41895":0,"41896":0,"41897":163,"41898":-1,"41899":0,"41900":-1,"41901":-1,"41902":0,"41903":85,"41904":0,"41905":0,"41906":-1,"41907":-1,"41908":-1,"41909":1522,"41910":-1,"41911":-1,"41912":-1,"41913":0,"41914":1317,"41915":1319,"41916":0,"41917":208,"41918":0,"41919":63,"41920":-1,"41921":0,"41922":101,"41923":0,"41924":0,"41925":-1,"41926":244,"41927":167,"41928":0,"41929":-1,"41930":-1,"41931":-1,"41932":0,"41933":0,"41934":-1,"41935":286,"41936":-1,"41937":-1,"41938":-1,"41939":-1,"41940":0,"41941":-1,"41942":0,"41943":-1,"41944":0,"41945":336,"41946":0,"41947":-1,"41948":174,"41949":0,"41950":0,"41951":1333,"41952":1441,"41953":-1,"41954":-1,"41955":-1,"41956":-1,"41957":0,"41958":-1,"41959":1474,"41960":0,"41961":0,"41962":0,"41963":0,"41964":0,"41965":-1,"41966":0,"41967":-1,"41968":-1,"41969":-1,"41970":1520,"41971":-1,"41972":-1,"41973":-1,"41974":-1,"41975":0,"41976":9,"41977":-1,"41978":0,"41979":1342,"41980":0,"41981":188,"41982":0,"41983":-1,"41984":0,"41985":0,"41986":0,"41987":-1,"41988":-1,"41989":-1,"41990":1441,"41991":-1,"41992":15,"41993":0,"41994":0,"41995":190,"41996":0,"41997":0,"41998":60,"41999":342,"42000":0,"42001":0,"42002":0,"42003":-1,"42004":1387,"42005":0,"42006":0,"42007":0,"42008":0,"42009":186,"42010":-1,"42011":215,"42012":1527,"42013":1515,"42014":1452,"42015":406,"42016":0,"42017":-1,"42018":0,"42019":0,"42020":-1,"42021":58,"42022":101,"42023":0,"42024":-1,"42025":0,"42026":-1,"42027":-1,"42028":-1,"42029":0,"42030":0,"42031":0,"42032":-1,"42033":-1,"42034":1543,"42035":0,"42036":1315,"42037":13,"42038":0,"42039":1474,"42040":0,"42041":0,"42042":369,"42043":0,"42044":0,"42045":-1,"42046":-1,"42047":1465,"42048":0,"42049":0,"42050":1459,"42051":-1,"42052":1360,"42053":0,"42054":1332,"42055":0,"42056":0,"42057":1521,"42058":-1,"42059":0,"42060":0,"42061":0,"42062":0,"42063":167,"42064":-1,"42065":0,"42066":0,"42067":317,"42068":-1,"42069":219,"42070":0,"42071":1313,"42072":45,"42073":1300,"42074":0,"42075":0,"42076":-1,"42077":0,"42078":-1,"42079":-1,"42080":-1,"42081":0,"42082":0,"42083":-1,"42084":-1,"42085":-1,"42086":1477,"42087":0,"42088":1449,"42089":0,"42090":-1,"42091":0,"42092":-1,"42093":0,"42094":0,"42095":1417,"42096":1429,"42097":372,"42098":384,"42099":266,"42100":0,"42101":106,"42102":0,"42103":-1,"42104":0,"42105":-1,"42106":0,"42107":0,"42108":-1,"42109":0,"42110":0,"42111":-1,"42112":-1,"42113":0,"42114":0,"42115":0,"42116":1351,"42117":1514,"42118":-1,"42119":-1,"42120":0,"42121":0,"42122":0,"42123":1391,"42124":0,"42125":0,"42126":0,"42127":1580,"42128":-1,"42129":168,"42130":0,"42131":-1,"42132":0,"42133":0,"42134":0,"42135":0,"42136":0,"42137":1304,"42138":0,"42139":1361,"42140":-1,"42141":-1,"42142":45,"42143":-1,"42144":1541,"42145":0,"42146":0,"42147":0,"42148":0,"42149":-1,"42150":0,"42151":-1,"42152":62,"42153":0,"42154":0,"42155":-1,"42156":0,"42157":0,"42158":0,"42159":1311,"42160":0,"42161":1541,"42162":-1,"42163":0,"42164":0,"42165":0,"42166":0,"42167":-1,"42168":-1,"42169":1496,"42170":-1,"42171":1324,"42172":0,"42173":-1,"42174":-1,"42175":-1,"42176":-1,"42177":0,"42178":375,"42179":0,"42180":0,"42181":-1,"42182":0,"42183":0,"42184":-1,"42185":0,"42186":0,"42187":0,"42188":-1,"42189":-1,"42190":-1,"42191":0,"42192":-1,"42193":0,"42194":50,"42195":1334,"42196":0,"42197":0,"42198":0,"42199":0,"42200":0,"42201":0,"42202":0,"42203":0,"42204":0,"42205":0,"42206":-1,"42207":-1,"42208":0,"42209":-1,"42210":0,"42211":-1,"42212":1561,"42213":-1,"42214":0,"42215":0,"42216":-1,"42217":0,"42218":1334,"42219":0,"42220":0,"42221":1497,"42222":0,"42223":-1,"42224":-1,"42225":-1,"42226":-1,"42227":0,"42228":-1,"42229":0,"42230":188,"42231":279,"42232":0,"42233":0,"42234":-1,"42235":144,"42236":170,"42237":0,"42238":220,"42239":-1,"42240":1465,"42241":1582,"42242":70,"42243":-1,"42244":0,"42245":0,"42246":0,"42247":-1,"42248":0,"42249":0,"42250":-1,"42251":0,"42252":0,"42253":-1,"42254":0,"42255":0,"42256":0,"42257":0,"42258":0,"42259":0,"42260":0,"42261":-1,"42262":0,"42263":9,"42264":0,"42265":0,"42266":342,"42267":0,"42268":0,"42269":-1,"42270":0,"42271":0,"42272":-1,"42273":-1,"42274":0,"42275":-1,"42276":0,"42277":0,"42278":-1,"42279":0,"42280":0,"42281":-1,"42282":198,"42283":-1,"42284":173,"42285":0,"42286":1328,"42287":38,"42288":140,"42289":0,"42290":0,"42291":-1,"42292":0,"42293":-1,"42294":-1,"42295":0,"42296":-1,"42297":0,"42298":0,"42299":0,"42300":1491,"42301":0,"42302":-1,"42303":1389,"42304":0,"42305":0,"42306":0,"42307":-1,"42308":1576,"42309":369,"42310":52,"42311":-1,"42312":0,"42313":0,"42314":1317,"42315":1405,"42316":481,"42317":-1,"42318":1378,"42319":1391,"42320":0,"42321":-1,"42322":0,"42323":0,"42324":140,"42325":0,"42326":299,"42327":0,"42328":236,"42329":0,"42330":-1,"42331":0,"42332":0,"42333":0,"42334":-1,"42335":0,"42336":-1,"42337":-1,"42338":1393,"42339":-1,"42340":0,"42341":-1,"42342":0,"42343":0,"42344":222,"42345":373,"42346":0,"42347":-1,"42348":-1,"42349":0,"42350":0,"42351":1518,"42352":0,"42353":222,"42354":0,"42355":105,"42356":1399,"42357":-1,"42358":1441,"42359":354,"42360":0,"42361":-1,"42362":-1,"42363":0,"42364":0,"42365":237,"42366":-1,"42367":0,"42368":1522,"42369":0,"42370":-1,"42371":-1,"42372":-1,"42373":0,"42374":0,"42375":-1,"42376":473,"42377":1501,"42378":1313,"42379":248,"42380":-1,"42381":0,"42382":1336,"42383":97,"42384":0,"42385":-1,"42386":0,"42387":0,"42388":1574,"42389":0,"42390":0,"42391":0,"42392":-1,"42393":0,"42394":-1,"42395":-1,"42396":0,"42397":-1,"42398":253,"42399":0,"42400":0,"42401":1344,"42402":0,"42403":0,"42404":0,"42405":1568,"42406":0,"42407":0,"42408":0,"42409":206,"42410":-1,"42411":-1,"42412":1450,"42413":-1,"42414":0,"42415":-1,"42416":1371,"42417":-1,"42418":1503,"42419":0,"42420":-1,"42421":-1,"42422":0,"42423":92,"42424":0,"42425":1528,"42426":-1,"42427":-1,"42428":79,"42429":473,"42430":215,"42431":0,"42432":-1,"42433":-1,"42434":-1,"42435":0,"42436":-1,"42437":-1,"42438":0,"42439":0,"42440":1343,"42441":-1,"42442":-1,"42443":1418,"42444":301,"42445":281,"42446":0,"42447":1337,"42448":-1,"42449":0,"42450":-1,"42451":-1,"42452":-1,"42453":0,"42454":-1,"42455":0,"42456":0,"42457":0,"42458":0,"42459":286,"42460":0,"42461":-1,"42462":0,"42463":0,"42464":0,"42465":0,"42466":0,"42467":0,"42468":0,"42469":312,"42470":0,"42471":0,"42472":140,"42473":200,"42474":0,"42475":-1,"42476":1359,"42477":0,"42478":1480,"42479":0,"42480":0,"42481":0,"42482":0,"42483":380,"42484":1432,"42485":0,"42486":0,"42487":0,"42488":0,"42489":0,"42490":0,"42491":182,"42492":0,"42493":87,"42494":0,"42495":0,"42496":0,"42497":0,"42498":0,"42499":0,"42500":1577,"42501":216,"42502":-1,"42503":-1,"42504":0,"42505":269,"42506":39,"42507":1559,"42508":0,"42509":1517,"42510":1519,"42511":1427,"42512":0,"42513":-1,"42514":1574,"42515":-1,"42516":-1,"42517":0,"42518":1302,"42519":0,"42520":1323,"42521":-1,"42522":-1,"42523":-1,"42524":78,"42525":0,"42526":438,"42527":-1,"42528":0,"42529":0,"42530":-1,"42531":1583,"42532":249,"42533":0,"42534":0,"42535":0,"42536":-1,"42537":-1,"42538":47,"42539":1518,"42540":224,"42541":0,"42542":-1,"42543":0,"42544":-1,"42545":0,"42546":49,"42547":0,"42548":1337,"42549":-1,"42550":-1,"42551":0,"42552":0,"42553":-1,"42554":0,"42555":-1,"42556":0,"42557":0,"42558":0,"42559":-1,"42560":0,"42561":-1,"42562":224,"42563":265,"42564":0,"42565":0,"42566":1549,"42567":0,"42568":365,"42569":182,"42570":103,"42571":-1,"42572":0,"42573":0,"42574":0,"42575":0,"42576":1420,"42577":1508,"42578":-1,"42579":0,"42580":1435,"42581":-1,"42582":-1,"42583":89,"42584":85,"42585":-1,"42586":0,"42587":-1,"42588":0,"42589":0,"42590":0,"42591":-1,"42592":30,"42593":0,"42594":213,"42595":0,"42596":481,"42597":0,"42598":305,"42599":1390,"42600":161,"42601":-1,"42602":0,"42603":1299,"42604":0,"42605":0,"42606":-1,"42607":0,"42608":-1,"42609":0,"42610":-1,"42611":291,"42612":0,"42613":0,"42614":0,"42615":-1,"42616":-1,"42617":0,"42618":181,"42619":-1,"42620":-1,"42621":-1,"42622":0,"42623":0,"42624":-1,"42625":0,"42626":-1,"42627":-1,"42628":1563,"42629":0,"42630":0,"42631":-1,"42632":0,"42633":0,"42634":0,"42635":0,"42636":0,"42637":203,"42638":0,"42639":0,"42640":0,"42641":0,"42642":1387,"42643":-1,"42644":1504,"42645":-1,"42646":0,"42647":1426,"42648":328,"42649":-1,"42650":0,"42651":0,"42652":0,"42653":0,"42654":-1,"42655":0,"42656":0,"42657":369,"42658":-1,"42659":-1,"42660":0,"42661":-1,"42662":0,"42663":162,"42664":0,"42665":0,"42666":0,"42667":-1,"42668":0,"42669":-1,"42670":1548,"42671":270,"42672":-1,"42673":-1,"42674":0,"42675":0,"42676":-1,"42677":1391,"42678":1547,"42679":0,"42680":-1,"42681":0,"42682":-1,"42683":1477,"42684":-1,"42685":0,"42686":52,"42687":1360,"42688":-1,"42689":1530,"42690":0,"42691":-1,"42692":328,"42693":0,"42694":235,"42695":-1,"42696":1474,"42697":135,"42698":-1,"42699":-1,"42700":0,"42701":0,"42702":-1,"42703":-1,"42704":0,"42705":-1,"42706":-1,"42707":1430,"42708":1371,"42709":0,"42710":-1,"42711":-1,"42712":0,"42713":0,"42714":0,"42715":0,"42716":-1,"42717":1448,"42718":0,"42719":0,"42720":0,"42721":1524,"42722":0,"42723":1419,"42724":0,"42725":0,"42726":0,"42727":-1,"42728":1433,"42729":0,"42730":1406,"42731":0,"42732":-1,"42733":0,"42734":1471,"42735":0,"42736":0,"42737":1577,"42738":0,"42739":-1,"42740":0,"42741":0,"42742":-1,"42743":1352,"42744":0,"42745":0,"42746":0,"42747":-1,"42748":0,"42749":158,"42750":0,"42751":0,"42752":-1,"42753":0,"42754":-1,"42755":23,"42756":0,"42757":0,"42758":-1,"42759":24,"42760":0,"42761":-1,"42762":0,"42763":0,"42764":-1,"42765":0,"42766":-1,"42767":0,"42768":-1,"42769":1351,"42770":-1,"42771":0,"42772":92,"42773":0,"42774":0,"42775":0,"42776":365,"42777":0,"42778":-1,"42779":-1,"42780":0,"42781":-1,"42782":0,"42783":0,"42784":-1,"42785":1299,"42786":-1,"42787":-1,"42788":-1,"42789":0,"42790":-1,"42791":1350,"42792":1325,"42793":0,"42794":0,"42795":0,"42796":-1,"42797":44,"42798":0,"42799":33,"42800":-1,"42801":0,"42802":0,"42803":1542,"42804":187,"42805":-1,"42806":-1,"42807":0,"42808":0,"42809":0,"42810":-1,"42811":0,"42812":0,"42813":0,"42814":-1,"42815":-1,"42816":-1,"42817":0,"42818":0,"42819":35,"42820":0,"42821":0,"42822":-1,"42823":0,"42824":0,"42825":-1,"42826":-1,"42827":234,"42828":0,"42829":1426,"42830":0,"42831":257,"42832":0,"42833":1489,"42834":-1,"42835":1338,"42836":0,"42837":-1,"42838":-1,"42839":192,"42840":-1,"42841":0,"42842":-1,"42843":0,"42844":0,"42845":0,"42846":0,"42847":330,"42848":0,"42849":0,"42850":0,"42851":-1,"42852":-1,"42853":-1,"42854":-1,"42855":0,"42856":23,"42857":-1,"42858":429,"42859":0,"42860":0,"42861":0,"42862":93,"42863":0,"42864":-1,"42865":-1,"42866":-1,"42867":0,"42868":0,"42869":0,"42870":0,"42871":1526,"42872":17,"42873":0,"42874":0,"42875":1582,"42876":1583,"42877":0,"42878":265,"42879":1360,"42880":1340,"42881":0,"42882":-1,"42883":0,"42884":1490,"42885":1585,"42886":0,"42887":26,"42888":0,"42889":0,"42890":0,"42891":-1,"42892":0,"42893":0,"42894":0,"42895":0,"42896":0,"42897":0,"42898":-1,"42899":0,"42900":1507,"42901":0,"42902":438,"42903":-1,"42904":322,"42905":0,"42906":-1,"42907":0,"42908":27,"42909":19,"42910":-1,"42911":-1,"42912":-1,"42913":-1,"42914":116,"42915":-1,"42916":0,"42917":-1,"42918":-1,"42919":0,"42920":1361,"42921":0,"42922":0,"42923":-1,"42924":0,"42925":0,"42926":0,"42927":0,"42928":179,"42929":0,"42930":0,"42931":145,"42932":1505,"42933":-1,"42934":1315,"42935":1449,"42936":0,"42937":0,"42938":0,"42939":-1,"42940":0,"42941":-1,"42942":0,"42943":0,"42944":0,"42945":-1,"42946":-1,"42947":1389,"42948":74,"42949":1373,"42950":1546,"42951":-1,"42952":0,"42953":1436,"42954":0,"42955":1511,"42956":0,"42957":0,"42958":79,"42959":1397,"42960":-1,"42961":-1,"42962":1411,"42963":0,"42964":1372,"42965":-1,"42966":0,"42967":0,"42968":0,"42969":0,"42970":-1,"42971":0,"42972":1485,"42973":0,"42974":0,"42975":0,"42976":-1,"42977":-1,"42978":1493,"42979":0,"42980":-1,"42981":0,"42982":0,"42983":-1,"42984":-1,"42985":0,"42986":102,"42987":-1,"42988":1426,"42989":-1,"42990":0,"42991":0,"42992":-1,"42993":0,"42994":0,"42995":0,"42996":0,"42997":-1,"42998":1548,"42999":-1,"43000":1350,"43001":0,"43002":0,"43003":133,"43004":1531,"43005":0,"43006":1513,"43007":1389,"43008":0,"43009":0,"43010":0,"43011":1536,"43012":1421,"43013":0,"43014":0,"43015":0,"43016":0,"43017":0,"43018":0,"43019":0,"43020":1433,"43021":0,"43022":1356,"43023":1542,"43024":0,"43025":0,"43026":1318,"43027":0,"43028":1524,"43029":1466,"43030":365,"43031":-1,"43032":74,"43033":-1,"43034":-1,"43035":-1,"43036":-1,"43037":0,"43038":278,"43039":0,"43040":0,"43041":0,"43042":0,"43043":0,"43044":0,"43045":-1,"43046":-1,"43047":1485,"43048":0,"43049":0,"43050":1344,"43051":0,"43052":-1,"43053":0,"43054":-1,"43055":-1,"43056":0,"43057":0,"43058":0,"43059":0,"43060":1469,"43061":0,"43062":-1,"43063":0,"43064":0,"43065":162,"43066":-1,"43067":-1,"43068":0,"43069":1469,"43070":-1,"43071":-1,"43072":287,"43073":0,"43074":46,"43075":-1,"43076":1376,"43077":-1,"43078":0,"43079":0,"43080":-1,"43081":281,"43082":1338,"43083":305,"43084":1362,"43085":41,"43086":-1,"43087":-1,"43088":0,"43089":0,"43090":0,"43091":0,"43092":33,"43093":47,"43094":1562,"43095":-1,"43096":282,"43097":-1,"43098":211,"43099":0,"43100":1482,"43101":334,"43102":1488,"43103":-1,"43104":163,"43105":-1,"43106":-1,"43107":1349,"43108":1349,"43109":0,"43110":-1,"43111":1301,"43112":42,"43113":0,"43114":-1,"43115":0,"43116":0,"43117":0,"43118":-1,"43119":-1,"43120":-1,"43121":249,"43122":201,"43123":-1,"43124":75,"43125":0,"43126":-1,"43127":0,"43128":266,"43129":-1,"43130":-1,"43131":54,"43132":0,"43133":-1,"43134":-1,"43135":0,"43136":1571,"43137":0,"43138":0,"43139":-1,"43140":0,"43141":-1,"43142":0,"43143":0,"43144":0,"43145":-1,"43146":0,"43147":-1,"43148":0,"43149":0,"43150":0,"43151":0,"43152":1332,"43153":201,"43154":306,"43155":1326,"43156":1399,"43157":-1,"43158":0,"43159":0,"43160":-1,"43161":1486,"43162":0,"43163":303,"43164":0,"43165":-1,"43166":0,"43167":55,"43168":0,"43169":0,"43170":-1,"43171":0,"43172":73,"43173":-1,"43174":-1,"43175":0,"43176":-1,"43177":-1,"43178":0,"43179":-1,"43180":1442,"43181":0,"43182":0,"43183":0,"43184":0,"43185":170,"43186":-1,"43187":-1,"43188":1540,"43189":0,"43190":0,"43191":-1,"43192":0,"43193":0,"43194":0,"43195":-1,"43196":-1,"43197":0,"43198":-1,"43199":0,"43200":1410,"43201":0,"43202":-1,"43203":369,"43204":0,"43205":0,"43206":-1,"43207":0,"43208":-1,"43209":-1,"43210":-1,"43211":23,"43212":0,"43213":1317,"43214":-1,"43215":0,"43216":0,"43217":1398,"43218":-1,"43219":-1,"43220":0,"43221":1444,"43222":-1,"43223":0,"43224":-1,"43225":0,"43226":0,"43227":0,"43228":0,"43229":115,"43230":41,"43231":236,"43232":-1,"43233":12,"43234":0,"43235":1387,"43236":0,"43237":0,"43238":0,"43239":0,"43240":-1,"43241":0,"43242":-1,"43243":-1,"43244":1531,"43245":0,"43246":-1,"43247":0,"43248":0,"43249":-1,"43250":-1,"43251":-1,"43252":352,"43253":256,"43254":-1,"43255":-1,"43256":0,"43257":-1,"43258":0,"43259":-1,"43260":0,"43261":-1,"43262":0,"43263":-1,"43264":0,"43265":0,"43266":0,"43267":0,"43268":105,"43269":-1,"43270":0,"43271":0,"43272":1330,"43273":0,"43274":-1,"43275":0,"43276":0,"43277":-1,"43278":0,"43279":-1,"43280":244,"43281":0,"43282":0,"43283":-1,"43284":0,"43285":-1,"43286":-1,"43287":52,"43288":-1,"43289":-1,"43290":0,"43291":0,"43292":195,"43293":0,"43294":1512,"43295":0,"43296":87,"43297":-1,"43298":-1,"43299":-1,"43300":-1,"43301":-1,"43302":0,"43303":0,"43304":0,"43305":0,"43306":-1,"43307":0,"43308":-1,"43309":0,"43310":0,"43311":1319,"43312":0,"43313":-1,"43314":0,"43315":-1,"43316":180,"43317":25,"43318":0,"43319":282,"43320":-1,"43321":0,"43322":9,"43323":0,"43324":0,"43325":-1,"43326":0,"43327":1443,"43328":0,"43329":-1,"43330":1356,"43331":0,"43332":1463,"43333":-1,"43334":0,"43335":-1,"43336":215,"43337":-1,"43338":0,"43339":43,"43340":-1,"43341":0,"43342":-1,"43343":64,"43344":-1,"43345":326,"43346":-1,"43347":0,"43348":81,"43349":1328,"43350":0,"43351":0,"43352":1439,"43353":0,"43354":0,"43355":0,"43356":0,"43357":-1,"43358":0,"43359":-1,"43360":1364,"43361":253,"43362":0,"43363":0,"43364":0,"43365":58,"43366":-1,"43367":-1,"43368":1487,"43369":0,"43370":1318,"43371":-1,"43372":-1,"43373":0,"43374":0,"43375":1452,"43376":-1,"43377":-1,"43378":0,"43379":172,"43380":0,"43381":0,"43382":0,"43383":-1,"43384":-1,"43385":0,"43386":0,"43387":0,"43388":-1,"43389":89,"43390":0,"43391":-1,"43392":-1,"43393":1516,"43394":0,"43395":1537,"43396":0,"43397":0,"43398":1322,"43399":-1,"43400":0,"43401":314,"43402":0,"43403":0,"43404":0,"43405":0,"43406":0,"43407":161,"43408":1414,"43409":0,"43410":119,"43411":-1,"43412":-1,"43413":0,"43414":-1,"43415":0,"43416":0,"43417":0,"43418":270,"43419":0,"43420":371,"43421":-1,"43422":268,"43423":0,"43424":-1,"43425":221,"43426":0,"43427":1371,"43428":0,"43429":1474,"43430":-1,"43431":-1,"43432":0,"43433":-1,"43434":-1,"43435":0,"43436":-1,"43437":268,"43438":1489,"43439":-1,"43440":0,"43441":-1,"43442":92,"43443":78,"43444":-1,"43445":0,"43446":0,"43447":-1,"43448":0,"43449":0,"43450":-1,"43451":0,"43452":-1,"43453":-1,"43454":0,"43455":0,"43456":0,"43457":0,"43458":0,"43459":-1,"43460":0,"43461":0,"43462":-1,"43463":0,"43464":0,"43465":1326,"43466":0,"43467":0,"43468":0,"43469":0,"43470":0,"43471":285,"43472":-1,"43473":-1,"43474":0,"43475":0,"43476":-1,"43477":-1,"43478":-1,"43479":0,"43480":234,"43481":-1,"43482":0,"43483":1,"43484":-1,"43485":0,"43486":0,"43487":0,"43488":71,"43489":0,"43490":18,"43491":0,"43492":0,"43493":0,"43494":-1,"43495":0,"43496":-1,"43497":0,"43498":28,"43499":0,"43500":137,"43501":0,"43502":20,"43503":0,"43504":-1,"43505":-1,"43506":-1,"43507":0,"43508":0,"43509":-1,"43510":0,"43511":0,"43512":1300,"43513":0,"43514":77,"43515":-1,"43516":-1,"43517":-1,"43518":-1,"43519":-1,"43520":1381,"43521":-1,"43522":-1,"43523":1410,"43524":0,"43525":0,"43526":-1,"43527":1455,"43528":1349,"43529":1328,"43530":1562,"43531":1443,"43532":182,"43533":-1,"43534":105,"43535":0,"43536":-1,"43537":1432,"43538":1507,"43539":0,"43540":0,"43541":0,"43542":0,"43543":-1,"43544":0,"43545":-1,"43546":283,"43547":373,"43548":-1,"43549":1535,"43550":-1,"43551":0,"43552":1456,"43553":0,"43554":-1,"43555":1434,"43556":0,"43557":-1,"43558":1347,"43559":1504,"43560":0,"43561":-1,"43562":0,"43563":-1,"43564":0,"43565":0,"43566":0,"43567":1321,"43568":0,"43569":66,"43570":-1,"43571":1555,"43572":0,"43573":-1,"43574":0,"43575":-1,"43576":0,"43577":0,"43578":0,"43579":0,"43580":-1,"43581":-1,"43582":0,"43583":159,"43584":0,"43585":1567,"43586":0,"43587":-1,"43588":0,"43589":429,"43590":1333,"43591":-1,"43592":98,"43593":0,"43594":0,"43595":-1,"43596":-1,"43597":298,"43598":0,"43599":-1,"43600":-1,"43601":-1,"43602":0,"43603":1434,"43604":10,"43605":-1,"43606":-1,"43607":1496,"43608":0,"43609":287,"43610":0,"43611":0,"43612":-1,"43613":383,"43614":-1,"43615":-1,"43616":1337,"43617":1507,"43618":-1,"43619":0,"43620":0,"43621":0,"43622":0,"43623":-1,"43624":0,"43625":241,"43626":298,"43627":-1,"43628":1535,"43629":0,"43630":0,"43631":60,"43632":0,"43633":-1,"43634":0,"43635":0,"43636":0,"43637":-1,"43638":0,"43639":-1,"43640":0,"43641":1359,"43642":0,"43643":0,"43644":-1,"43645":-1,"43646":0,"43647":0,"43648":-1,"43649":-1,"43650":0,"43651":0,"43652":-1,"43653":0,"43654":0,"43655":0,"43656":158,"43657":-1,"43658":0,"43659":-1,"43660":0,"43661":0,"43662":-1,"43663":383,"43664":-1,"43665":-1,"43666":346,"43667":1307,"43668":0,"43669":1460,"43670":-1,"43671":0,"43672":-1,"43673":-1,"43674":-1,"43675":-1,"43676":239,"43677":0,"43678":0,"43679":1358,"43680":0,"43681":-1,"43682":-1,"43683":0,"43684":0,"43685":-1,"43686":187,"43687":0,"43688":-1,"43689":0,"43690":-1,"43691":0,"43692":-1,"43693":154,"43694":1562,"43695":0,"43696":1393,"43697":-1,"43698":86,"43699":0,"43700":-1,"43701":-1,"43702":0,"43703":-1,"43704":-1,"43705":132,"43706":1569,"43707":76,"43708":-1,"43709":-1,"43710":1426,"43711":-1,"43712":0,"43713":0,"43714":0,"43715":0,"43716":0,"43717":0,"43718":-1,"43719":-1,"43720":0,"43721":20,"43722":-1,"43723":1360,"43724":0,"43725":0,"43726":-1,"43727":1490,"43728":0,"43729":0,"43730":0,"43731":0,"43732":0,"43733":-1,"43734":0,"43735":64,"43736":0,"43737":-1,"43738":-1,"43739":0,"43740":-1,"43741":0,"43742":0,"43743":0,"43744":0,"43745":0,"43746":1563,"43747":214,"43748":0,"43749":0,"43750":-1,"43751":-1,"43752":115,"43753":473,"43754":0,"43755":0,"43756":-1,"43757":0,"43758":-1,"43759":-1,"43760":1415,"43761":0,"43762":0,"43763":0,"43764":0,"43765":-1,"43766":1548,"43767":0,"43768":0,"43769":166,"43770":0,"43771":-1,"43772":120,"43773":0,"43774":-1,"43775":0,"43776":0,"43777":0,"43778":-1,"43779":0,"43780":0,"43781":-1,"43782":-1,"43783":0,"43784":-1,"43785":0,"43786":0,"43787":1493,"43788":1354,"43789":0,"43790":-1,"43791":0,"43792":0,"43793":274,"43794":1466,"43795":1460,"43796":0,"43797":1380,"43798":0,"43799":-1,"43800":-1,"43801":347,"43802":0,"43803":0,"43804":1521,"43805":-1,"43806":266,"43807":0,"43808":-1,"43809":120,"43810":-1,"43811":0,"43812":384,"43813":0,"43814":0,"43815":0,"43816":1359,"43817":0,"43818":85,"43819":0,"43820":-1,"43821":81,"43822":0,"43823":1390,"43824":293,"43825":-1,"43826":0,"43827":0,"43828":-1,"43829":1402,"43830":0,"43831":0,"43832":0,"43833":0,"43834":0,"43835":0,"43836":0,"43837":-1,"43838":-1,"43839":0,"43840":0,"43841":1392,"43842":1461,"43843":0,"43844":0,"43845":0,"43846":-1,"43847":1467,"43848":0,"43849":-1,"43850":1425,"43851":215,"43852":-1,"43853":1455,"43854":0,"43855":-1,"43856":0,"43857":-1,"43858":1473,"43859":1460,"43860":0,"43861":-1,"43862":0,"43863":-1,"43864":0,"43865":1453,"43866":1354,"43867":-1,"43868":0,"43869":0,"43870":-1,"43871":0,"43872":-1,"43873":0,"43874":305,"43875":0,"43876":-1,"43877":0,"43878":0,"43879":-1,"43880":0,"43881":0,"43882":-1,"43883":39,"43884":63,"43885":-1,"43886":0,"43887":0,"43888":-1,"43889":1474,"43890":302,"43891":1458,"43892":-1,"43893":0,"43894":-1,"43895":-1,"43896":0,"43897":1359,"43898":-1,"43899":-1,"43900":0,"43901":0,"43902":234,"43903":0,"43904":0,"43905":0,"43906":-1,"43907":-1,"43908":-1,"43909":58,"43910":0,"43911":-1,"43912":0,"43913":0,"43914":-1,"43915":0,"43916":1567,"43917":0,"43918":-1,"43919":175,"43920":1485,"43921":0,"43922":-1,"43923":1398,"43924":0,"43925":0,"43926":-1,"43927":1566,"43928":0,"43929":-1,"43930":0,"43931":-1,"43932":0,"43933":0,"43934":0,"43935":-1,"43936":1301,"43937":40,"43938":0,"43939":0,"43940":1444,"43941":0,"43942":0,"43943":-1,"43944":-1,"43945":1481,"43946":-1,"43947":0,"43948":0,"43949":0,"43950":266,"43951":0,"43952":-1,"43953":-1,"43954":369,"43955":293,"43956":0,"43957":1300,"43958":-1,"43959":0,"43960":1382,"43961":305,"43962":289,"43963":0,"43964":0,"43965":97,"43966":28,"43967":0,"43968":1449,"43969":65,"43970":83,"43971":152,"43972":-1,"43973":0,"43974":1354,"43975":-1,"43976":-1,"43977":0,"43978":0,"43979":0,"43980":71,"43981":0,"43982":0,"43983":0,"43984":6,"43985":0,"43986":1540,"43987":-1,"43988":1520,"43989":-1,"43990":-1,"43991":-1,"43992":140,"43993":-1,"43994":0,"43995":0,"43996":1539,"43997":-1,"43998":0,"43999":0,"44000":0,"44001":-1,"44002":244,"44003":-1,"44004":0,"44005":-1,"44006":0,"44007":0,"44008":0,"44009":1397,"44010":-1,"44011":-1,"44012":0,"44013":0,"44014":1388,"44015":-1,"44016":0,"44017":0,"44018":-1,"44019":1456,"44020":0,"44021":0,"44022":0,"44023":-1,"44024":0,"44025":0,"44026":1503,"44027":0,"44028":0,"44029":0,"44030":-1,"44031":346,"44032":0,"44033":0,"44034":1445,"44035":-1,"44036":1413,"44037":-1,"44038":1322,"44039":307,"44040":0,"44041":0,"44042":70,"44043":0,"44044":-1,"44045":1445,"44046":0,"44047":-1,"44048":17,"44049":-1,"44050":0,"44051":72,"44052":0,"44053":0,"44054":0,"44055":1427,"44056":-1,"44057":234,"44058":0,"44059":-1,"44060":0,"44061":0,"44062":-1,"44063":67,"44064":1456,"44065":0,"44066":-1,"44067":0,"44068":-1,"44069":0,"44070":0,"44071":43,"44072":0,"44073":347,"44074":-1,"44075":299,"44076":-1,"44077":-1,"44078":-1,"44079":-1,"44080":0,"44081":85,"44082":-1,"44083":0,"44084":0,"44085":0,"44086":0,"44087":0,"44088":1462,"44089":-1,"44090":354,"44091":0,"44092":-1,"44093":-1,"44094":1480,"44095":-1,"44096":-1,"44097":155,"44098":-1,"44099":0,"44100":-1,"44101":-1,"44102":152,"44103":0,"44104":288,"44105":-1,"44106":-1,"44107":-1,"44108":291,"44109":-1,"44110":0,"44111":-1,"44112":-1,"44113":-1,"44114":0,"44115":473,"44116":0,"44117":1495,"44118":60,"44119":0,"44120":1447,"44121":0,"44122":0,"44123":0,"44124":-1,"44125":0,"44126":0,"44127":0,"44128":-1,"44129":-1,"44130":0,"44131":0,"44132":-1,"44133":0,"44134":0,"44135":304,"44136":0,"44137":-1,"44138":0,"44139":0,"44140":0,"44141":295,"44142":-1,"44143":1352,"44144":0,"44145":39,"44146":-1,"44147":-1,"44148":-1,"44149":-1,"44150":0,"44151":-1,"44152":0,"44153":274,"44154":-1,"44155":0,"44156":-1,"44157":0,"44158":168,"44159":0,"44160":0,"44161":1435,"44162":-1,"44163":0,"44164":1533,"44165":0,"44166":0,"44167":0,"44168":0,"44169":0,"44170":0,"44171":0,"44172":366,"44173":-1,"44174":1416,"44175":0,"44176":-1,"44177":136,"44178":0,"44179":-1,"44180":22,"44181":1321,"44182":-1,"44183":0,"44184":41,"44185":-1,"44186":-1,"44187":-1,"44188":0,"44189":-1,"44190":65,"44191":-1,"44192":0,"44193":1522,"44194":1393,"44195":1497,"44196":1372,"44197":0,"44198":-1,"44199":-1,"44200":0,"44201":0,"44202":0}} \ No newline at end of file diff --git a/landuse_tv0.geojson b/landuse_tv0.geojson new file mode 100644 index 0000000000000000000000000000000000000000..1ff6b57678905ec00df7dec7f73fdb8820f321e8 --- /dev/null +++ b/landuse_tv0.geojson @@ -0,0 +1,18 @@ +{ +"type": "FeatureCollection", +"name": "landuse_tv0", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "Id": 1, "luf": "Agricultural Areas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.2395, 32.1885 ], [ 35.239428710937545, 32.188126586913995 ], [ 35.239299357096286, 32.188314092000326 ], [ 35.2395, 32.1885 ] ] ], [ [ [ 35.2395, 32.1885 ], [ 35.239546346028703, 32.18860830688476 ], [ 35.239689376831052, 32.188533381144339 ], [ 35.2395, 32.1885 ] ] ], [ [ [ 35.235685089111314, 32.189859491984123 ], [ 35.23575, 32.189750000000117 ], [ 35.235385650634839, 32.18978737894696 ], [ 35.235685089111314, 32.189859491984123 ] ] ], [ [ [ 35.240134246826301, 32.189516682942724 ], [ 35.240028472900462, 32.18896266174329 ], [ 35.239875544230244, 32.189127716064604 ], [ 35.239709701538118, 32.189039962768618 ], [ 35.239537236531589, 32.189046798706102 ], [ 35.239376586914034, 32.188873413085958 ], [ 35.239333333333434, 32.188833333333434 ], [ 35.239083333333326, 32.188833333333434 ], [ 35.239083333333326, 32.188916666666728 ], [ 35.239290079752607, 32.189209920247436 ], [ 35.239597066243618, 32.189494364420568 ], [ 35.239840927124078, 32.18987199910481 ], [ 35.240119725545242, 32.189883046468196 ], [ 35.240134246826301, 32.189516682942724 ] ] ], [ [ [ 35.224721471150815, 32.193684936523368 ], [ 35.22475, 32.193583333333379 ], [ 35.224648396809926, 32.193611862182706 ], [ 35.224721471150815, 32.193684936523368 ] ] ], [ [ [ 35.224971471150695, 32.193851603190183 ], [ 35.225, 32.193750000000136 ], [ 35.224898396809806, 32.193778528849293 ], [ 35.224971471150695, 32.193851603190183 ] ] ], [ [ [ 35.22902629597985, 32.193866154988712 ], [ 35.229083333333392, 32.193666666666672 ], [ 35.228879608154216, 32.193724914550842 ], [ 35.22902629597985, 32.193866154988712 ] ] ], [ [ [ 35.20997147369394, 32.19401826985677 ], [ 35.21, 32.193916666666723 ], [ 35.209898396809876, 32.193945195516051 ], [ 35.20997147369394, 32.19401826985677 ] ] ], [ [ [ 35.208705233256126, 32.193260345459066 ], [ 35.208530036926334, 32.193109196980799 ], [ 35.208125, 32.193141738891654 ], [ 35.207642135620233, 32.193102940877395 ], [ 35.207513590494784, 32.193333333333442 ], [ 35.207628534952789, 32.193539347330784 ], [ 35.207615598042935, 32.19370034790046 ], [ 35.207833333333383, 32.19408333333331 ], [ 35.208083333333434, 32.19408333333331 ], [ 35.208121899922673, 32.194038569132431 ], [ 35.208505432129016, 32.193867426554505 ], [ 35.208338165283294, 32.19356763203939 ], [ 35.208461898803819, 32.193461029052855 ], [ 35.208454752604268, 32.193372116088938 ], [ 35.208705233256126, 32.193260345459066 ] ] ], [ [ [ 35.205054807027295, 32.194101603190234 ], [ 35.205083333333391, 32.194 ], [ 35.204981730143345, 32.194028528849344 ], [ 35.205054807027295, 32.194101603190234 ] ] ], [ [ [ 35.229954722086688, 32.194189142863024 ], [ 35.23, 32.19408333333331 ], [ 35.229808359781828, 32.194117111206083 ], [ 35.229954722086688, 32.194189142863024 ] ] ], [ [ [ 35.229388137817409, 32.194434936523464 ], [ 35.229416666666737, 32.194333333333418 ], [ 35.22931506347669, 32.194361862182745 ], [ 35.229388137817409, 32.194434936523464 ] ] ], [ [ [ 35.206304807027323, 32.194518269856758 ], [ 35.206333333333419, 32.194416666666712 ], [ 35.206231730143372, 32.194445195516039 ], [ 35.206304807027323, 32.194518269856758 ] ] ], [ [ [ 35.204666666666697, 32.194583333333298 ], [ 35.204833333333283, 32.194583333333298 ], [ 35.20475, 32.194467066446862 ], [ 35.204666666666697, 32.194583333333298 ] ] ], [ [ [ 35.204666666666697, 32.194583333333298 ], [ 35.204583333333403, 32.194583333333298 ], [ 35.204583333333403, 32.194666666666592 ], [ 35.204666666666697, 32.194666666666592 ], [ 35.204666666666697, 32.194583333333298 ] ] ], [ [ [ 35.204166666666708, 32.194750000000113 ], [ 35.204333333333352, 32.194750000000113 ], [ 35.204333333333352, 32.194666666666592 ], [ 35.204228418986077, 32.194544891357509 ], [ 35.204166666666708, 32.194750000000113 ] ] ], [ [ [ 35.205483749389771, 32.194448460896922 ], [ 35.205248039245589, 32.194333343505889 ], [ 35.20497265625005, 32.194472656250014 ], [ 35.204916666666804, 32.194583333333298 ], [ 35.205333333333272, 32.194750000000113 ], [ 35.205483749389771, 32.194448460896922 ] ] ], [ [ [ 35.204166666666708, 32.194750000000113 ], [ 35.204000000000121, 32.194750000000113 ], [ 35.204000000000121, 32.194833333333406 ], [ 35.204166666666708, 32.194833333333406 ], [ 35.204166666666708, 32.194750000000113 ] ] ], [ [ [ 35.210638140360516, 32.195018269856746 ], [ 35.210666666666668, 32.1949166666667 ], [ 35.210565063476622, 32.194945195516027 ], [ 35.210638140360516, 32.195018269856746 ] ] ], [ [ [ 35.241833333333318, 32.195083333333457 ], [ 35.241786987304806, 32.194975026448617 ], [ 35.241643956502287, 32.195049952189208 ], [ 35.241833333333318, 32.195083333333457 ] ] ], [ [ [ 35.241833333333318, 32.195083333333457 ], [ 35.241861862182645, 32.195184936523503 ], [ 35.241934936523535, 32.195111862182614 ], [ 35.241833333333318, 32.195083333333457 ] ] ], [ [ [ 35.22775, 32.195250000000101 ], [ 35.227721471150858, 32.195148396809884 ], [ 35.227648396809968, 32.195221471150774 ], [ 35.22775, 32.195250000000101 ] ] ], [ [ [ 35.24175, 32.195250000000101 ], [ 35.241721471150697, 32.195148396809884 ], [ 35.241648396809978, 32.195221471150774 ], [ 35.24175, 32.195250000000101 ] ] ], [ [ [ 35.200610201517861, 32.19527386983242 ], [ 35.200666666666677, 32.195166666666751 ], [ 35.200387916564921, 32.195202885945719 ], [ 35.200610201517861, 32.19527386983242 ] ] ], [ [ [ 35.24175, 32.195250000000101 ], [ 35.24175, 32.195333333333394 ], [ 35.241833333333318, 32.195333333333394 ], [ 35.241833333333318, 32.195250000000101 ], [ 35.24175, 32.195250000000101 ] ] ], [ [ [ 35.230388137817386, 32.195518269856905 ], [ 35.230416666666713, 32.195416666666688 ], [ 35.230315063476667, 32.195445195516015 ], [ 35.230388137817386, 32.195518269856905 ] ] ], [ [ [ 35.241833333333318, 32.195333333333394 ], [ 35.241875534057669, 32.195529505411798 ], [ 35.242023488362634, 32.195437566121484 ], [ 35.241833333333318, 32.195333333333394 ] ] ], [ [ [ 35.230388137817386, 32.195851603190079 ], [ 35.230416666666713, 32.19575 ], [ 35.230315063476667, 32.19577852884936 ], [ 35.230388137817386, 32.195851603190079 ] ] ], [ [ [ 35.226818074544269, 32.195515258789214 ], [ 35.22675, 32.195416666666688 ], [ 35.226465962727957, 32.195489557902135 ], [ 35.226602905273467, 32.19577737426772 ], [ 35.227004358927388, 32.195867370605583 ], [ 35.226965962727945, 32.195617370605476 ], [ 35.226818074544269, 32.195515258789214 ] ] ], [ [ [ 35.197833333333392, 32.19600000000014 ], [ 35.19771275583912, 32.195804311116547 ], [ 35.197666666666805, 32.19600000000014 ], [ 35.197833333333392, 32.19600000000014 ] ] ], [ [ [ 35.193788052876812, 32.196022476196333 ], [ 35.193833333333373, 32.195916666666676 ], [ 35.193641693115353, 32.195950444539449 ], [ 35.193788052876812, 32.196022476196333 ] ] ], [ [ [ 35.227221471150699, 32.196101603190186 ], [ 35.22725, 32.19600000000014 ], [ 35.22714839680981, 32.196028528849297 ], [ 35.227221471150699, 32.196101603190186 ] ] ], [ [ [ 35.199799954732271, 32.196189376831171 ], [ 35.199833333333345, 32.19600000000014 ], [ 35.199725026448618, 32.196046346028652 ], [ 35.199799954732271, 32.196189376831171 ] ] ], [ [ [ 35.197180137634291, 32.196198471069408 ], [ 35.197333333333404, 32.19600000000014 ], [ 35.197047030131102, 32.196048634847045 ], [ 35.197180137634291, 32.196198471069408 ] ] ], [ [ [ 35.230139470418351, 32.196133682251002 ], [ 35.229916666666725, 32.195833333333383 ], [ 35.22930199178063, 32.195875030517527 ], [ 35.229145935058568, 32.19600000000014 ], [ 35.229303817749155, 32.196126429239996 ], [ 35.22911284891768, 32.196206904093458 ], [ 35.229259216308549, 32.196324117024744 ], [ 35.229440943400107, 32.19655104573576 ], [ 35.230099477132171, 32.196455200195373 ], [ 35.230139470418351, 32.196133682251002 ] ] ], [ [ [ 35.202995030721127, 32.196453872680706 ], [ 35.202916666666681, 32.19625 ], [ 35.202732902526975, 32.196320638020779 ], [ 35.202375000000131, 32.196276117960622 ], [ 35.202173240661637, 32.196301213582387 ], [ 35.202219767252586, 32.196675252278567 ], [ 35.202995030721127, 32.196453872680706 ] ] ], [ [ [ 35.20075, 32.196833333333302 ], [ 35.200721473693875, 32.196731730143256 ], [ 35.200648396809925, 32.196804804483975 ], [ 35.20075, 32.196833333333302 ] ] ], [ [ [ 35.201750000000118, 32.19675 ], [ 35.201778526306214, 32.196851603190225 ], [ 35.201851603190164, 32.196778528849336 ], [ 35.201750000000118, 32.19675 ] ] ], [ [ [ 35.204316942850767, 32.196801340738944 ], [ 35.20425, 32.196666666666715 ], [ 35.204055338541707, 32.196705963134832 ], [ 35.204142873128376, 32.196861328125067 ], [ 35.204316942850767, 32.196801340738944 ] ] ], [ [ [ 35.201750000000118, 32.19675 ], [ 35.201821215311611, 32.196661066691149 ], [ 35.202203725179174, 32.196940480550268 ], [ 35.202112220764263, 32.196648178100645 ], [ 35.201712941487756, 32.196479929606255 ], [ 35.20179275512703, 32.196361968994097 ], [ 35.202205334981386, 32.196119445800775 ], [ 35.202382227579733, 32.196141448974629 ], [ 35.202339754740478, 32.195799967448011 ], [ 35.202546274820975, 32.195712941487727 ], [ 35.202620391845812, 32.195537058512514 ], [ 35.203416666666669, 32.195500000000152 ], [ 35.203500000000133, 32.195500000000152 ], [ 35.203500000000133, 32.195416666666688 ], [ 35.203416666666669, 32.195416666666688 ], [ 35.203416666666669, 32.195333333333394 ], [ 35.203333333333376, 32.195333333333394 ], [ 35.203333333333376, 32.195250000000101 ], [ 35.203083333333268, 32.195250000000101 ], [ 35.202916666666681, 32.195333333333394 ], [ 35.20263036346438, 32.195380366007498 ], [ 35.202333333333399, 32.195416666666688 ], [ 35.202305338541692, 32.195555338541737 ], [ 35.202186391194743, 32.19570507303888 ], [ 35.202273740132625, 32.195883926391616 ], [ 35.201916666666705, 32.195916666666676 ], [ 35.201882629394504, 32.195965962727939 ], [ 35.201700703938855, 32.19603403727217 ], [ 35.201632629394624, 32.196132629394526 ], [ 35.201465962727866, 32.196247701009156 ], [ 35.201538932800304, 32.19648166402186 ], [ 35.201700703938855, 32.196715962727978 ], [ 35.201750000000118, 32.19675 ] ] ], [ [ [ 35.20075, 32.196833333333302 ], [ 35.200796348571885, 32.196941640218199 ], [ 35.200939376831172, 32.196866714477551 ], [ 35.20075, 32.196833333333302 ] ] ], [ [ [ 35.224971471150695, 32.19726826985675 ], [ 35.225, 32.197166666666703 ], [ 35.224898396809806, 32.197195195516031 ], [ 35.224971471150695, 32.19726826985675 ] ] ], [ [ [ 35.212444625854516, 32.196795837402362 ], [ 35.21225, 32.19675 ], [ 35.212212748209652, 32.196934529622524 ], [ 35.212083333333283, 32.197000000000116 ], [ 35.212111328125047, 32.197055338541645 ], [ 35.212443878173872, 32.197222391764285 ], [ 35.2125, 32.197333333333461 ], [ 35.212666666666735, 32.197333333333461 ], [ 35.212666666666735, 32.197166666666703 ], [ 35.212583333333441, 32.197166666666703 ], [ 35.212583333333441, 32.19708333333341 ], [ 35.212531768798954, 32.197051564534604 ], [ 35.212444625854516, 32.196795837402362 ] ] ], [ [ [ 35.20475, 32.197500000000105 ], [ 35.20475, 32.197333333333461 ], [ 35.204833333333283, 32.197333333333461 ], [ 35.204794586181663, 32.197204640706445 ], [ 35.204333333333352, 32.19725 ], [ 35.204444661458353, 32.19747200520834 ], [ 35.20450000000011, 32.197500000000105 ], [ 35.204583333333403, 32.197383733113668 ], [ 35.204666666666697, 32.197500000000105 ], [ 35.20475, 32.197500000000105 ] ] ], [ [ [ 35.229969741821321, 32.197803075154752 ], [ 35.230033467610781, 32.197515797933022 ], [ 35.230278945922919, 32.197696924845388 ], [ 35.230419408162447, 32.197617818196704 ], [ 35.230306676228963, 32.197318745931057 ], [ 35.230480865478512, 32.196945927937918 ], [ 35.230304387410399, 32.196636408488018 ], [ 35.230030258178772, 32.196780258178762 ], [ 35.229969741821321, 32.197303075154764 ], [ 35.229696924845371, 32.197363591512044 ], [ 35.229636408488091, 32.197469741821351 ], [ 35.229583333333323, 32.197500000000105 ], [ 35.22975, 32.197833333333449 ], [ 35.229969741821321, 32.197803075154752 ] ], [ [ 35.230231730143373, 32.196861862182629 ], [ 35.230333333333419, 32.196833333333302 ], [ 35.230304804484092, 32.196934936523519 ], [ 35.230231730143373, 32.196861862182629 ] ] ], [ [ [ 35.244221471150809, 32.197934936523495 ], [ 35.244250000000136, 32.197833333333449 ], [ 35.244148396809919, 32.197861862182606 ], [ 35.244221471150809, 32.197934936523495 ] ] ], [ [ [ 35.195439142862995, 32.198128611246887 ], [ 35.195333333333338, 32.198083333333386 ], [ 35.195367111206053, 32.19827497355152 ], [ 35.195439142862995, 32.198128611246887 ] ] ], [ [ [ 35.205047396342025, 32.198307927449662 ], [ 35.205411661783842, 32.198203776041794 ], [ 35.205333333333272, 32.198 ], [ 35.204804163614938, 32.198066187540689 ], [ 35.204775220235319, 32.198298894246477 ], [ 35.204875, 32.198286483764775 ], [ 35.205047396342025, 32.198307927449662 ] ] ], [ [ [ 35.241026865641402, 32.198357203165756 ], [ 35.241083333333449, 32.198250000000144 ], [ 35.240804585774697, 32.198286219279112 ], [ 35.241026865641402, 32.198357203165756 ] ] ], [ [ [ 35.229472045898433, 32.19821801249185 ], [ 35.229083333333392, 32.19775 ], [ 35.228878097534164, 32.197811793009464 ], [ 35.229450764974047, 32.198371902465851 ], [ 35.229472045898433, 32.19821801249185 ] ] ], [ [ [ 35.195304807027185, 32.198434936523483 ], [ 35.195333333333338, 32.198333333333437 ], [ 35.195231730143291, 32.198361862182765 ], [ 35.195304807027185, 32.198434936523483 ] ] ], [ [ [ 35.19875, 32.199666666666587 ], [ 35.19886585998529, 32.199592493693046 ], [ 35.198733446756989, 32.199300806681435 ], [ 35.198300806681232, 32.199440882364968 ], [ 35.198380348205546, 32.199575291951533 ], [ 35.19857059224455, 32.199521830240883 ], [ 35.198717473348097, 32.199615859985443 ], [ 35.19875, 32.199666666666587 ] ] ], [ [ [ 35.19875, 32.199666666666587 ], [ 35.198648396810029, 32.199695195515915 ], [ 35.198721473693922, 32.199768269856804 ], [ 35.19875, 32.199666666666587 ] ] ], [ [ [ 35.21558333333337, 32.199833333333402 ], [ 35.2155, 32.199833333333402 ], [ 35.2155, 32.199916666666695 ], [ 35.2155, 32.2 ], [ 35.215666666666664, 32.2 ], [ 35.215777028401703, 32.199939503987707 ], [ 35.21558333333337, 32.199833333333402 ] ] ], [ [ [ 35.209732866922991, 32.200049845377748 ], [ 35.209666666666692, 32.199916666666695 ], [ 35.209550399780255, 32.2 ], [ 35.209666666666692, 32.200083333333453 ], [ 35.209732866922991, 32.200049845377748 ] ] ], [ [ [ 35.236873062133839, 32.200193354288842 ], [ 35.236916666666616, 32.199916666666695 ], [ 35.236549296061241, 32.200010945638155 ], [ 35.236873062133839, 32.200193354288842 ] ] ], [ [ [ 35.198221473693764, 32.200684936523487 ], [ 35.19825, 32.200583333333441 ], [ 35.19814839680987, 32.200611862182768 ], [ 35.198221473693764, 32.200684936523487 ] ] ], [ [ [ 35.208538052876918, 32.200689142863098 ], [ 35.208583333333422, 32.200583333333441 ], [ 35.208391693115232, 32.200617111206043 ], [ 35.208538052876918, 32.200689142863098 ] ] ], [ [ [ 35.195026234944635, 32.201044102986657 ], [ 35.194833333333349, 32.201000000000136 ], [ 35.194833333333349, 32.201083333333429 ], [ 35.19508326212565, 32.201197682698592 ], [ 35.195026234944635, 32.201044102986657 ] ] ], [ [ [ 35.199950091044172, 32.201317942301387 ], [ 35.199833333333345, 32.201000000000136 ], [ 35.199705233256111, 32.20103856913255 ], [ 35.199628100077348, 32.201128097534308 ], [ 35.199461433410704, 32.201271687825624 ], [ 35.199950091044172, 32.201317942301387 ] ] ], [ [ [ 35.20221396382658, 32.201295242309641 ], [ 35.202166666666642, 32.200916666666672 ], [ 35.202046274820987, 32.201013071696025 ], [ 35.202139785766633, 32.201370391845842 ], [ 35.20221396382658, 32.201295242309641 ] ] ], [ [ [ 35.198563913981104, 32.201378519694117 ], [ 35.198416666666674, 32.201083333333429 ], [ 35.198138671875029, 32.20111838785806 ], [ 35.198508046468191, 32.201444661458368 ], [ 35.198563913981104, 32.201378519694117 ] ] ], [ [ [ 35.229471471150703, 32.201934936523514 ], [ 35.2295, 32.201833333333468 ], [ 35.229398396809813, 32.201861862182625 ], [ 35.229471471150703, 32.201934936523514 ] ] ], [ [ [ 35.246166666666738, 32.202166666666699 ], [ 35.246166666666738, 32.202083333333405 ], [ 35.246083333333445, 32.202083333333405 ], [ 35.246083333333445, 32.202166666666699 ], [ 35.246166666666738, 32.202166666666699 ] ] ], [ [ [ 35.246166666666738, 32.202166666666699 ], [ 35.246195195516066, 32.202268269856916 ], [ 35.246268269856785, 32.202195195516026 ], [ 35.246166666666738, 32.202166666666699 ] ] ], [ [ [ 35.192030914306713, 32.202171707153298 ], [ 35.191916666666771, 32.201916666666591 ], [ 35.19180156199144, 32.201987589518183 ], [ 35.191882609049571, 32.202281768798969 ], [ 35.192030914306713, 32.202171707153298 ] ] ], [ [ [ 35.198871899922722, 32.202378097534165 ], [ 35.198794766743958, 32.202205235799283 ], [ 35.198702466328996, 32.202039805094444 ], [ 35.198878580729229, 32.201961217244616 ], [ 35.198868303934717, 32.201833333333468 ], [ 35.19888471221924, 32.201629130045603 ], [ 35.198789347330774, 32.201621465047197 ], [ 35.198606338501008, 32.201723571777393 ], [ 35.198375000000112, 32.201704986572338 ], [ 35.198288749694882, 32.201711914062571 ], [ 35.198083333333273, 32.201166666666722 ], [ 35.197878100077332, 32.201294764200895 ], [ 35.197461433410638, 32.201420216878319 ], [ 35.197846956888839, 32.202058029174793 ], [ 35.198133171081622, 32.202217722574972 ], [ 35.198444773356073, 32.20219268290208 ], [ 35.198544766744078, 32.20237190246587 ], [ 35.198654271443786, 32.202617309570314 ], [ 35.19895366923015, 32.202641367594481 ], [ 35.198961868286176, 32.202539347330799 ], [ 35.198871899922722, 32.202378097534165 ] ], [ [ 35.198565063476565, 32.202195195516026 ], [ 35.198666666666782, 32.202166666666699 ], [ 35.198638140360629, 32.202268269856916 ], [ 35.198565063476565, 32.202195195516026 ] ] ], [ [ [ 35.198871386210101, 32.203272476196332 ], [ 35.198916666666662, 32.203166666666675 ], [ 35.198725026448642, 32.203200444539391 ], [ 35.198871386210101, 32.203272476196332 ] ] ], [ [ [ 35.201416666666717, 32.203250000000139 ], [ 35.20136183166511, 32.203119443257663 ], [ 35.201617370605561, 32.203023824056004 ], [ 35.201380900065146, 32.202909622192408 ], [ 35.201132629394635, 32.20308103434246 ], [ 35.201201789855986, 32.203302777608371 ], [ 35.201416666666717, 32.203250000000139 ] ] ], [ [ [ 35.222106480916352, 32.20332614390054 ], [ 35.222, 32.203083333333325 ], [ 35.221717473348122, 32.203217473347991 ], [ 35.22138414001472, 32.20329829915363 ], [ 35.222106480916352, 32.20332614390054 ] ] ], [ [ [ 35.201416666666717, 32.203250000000139 ], [ 35.201445192972869, 32.203351603190185 ], [ 35.201518269856763, 32.203278526306235 ], [ 35.201416666666717, 32.203250000000139 ] ] ], [ [ [ 35.199900889078833, 32.203302571614586 ], [ 35.199833333333345, 32.203166666666675 ], [ 35.1995553385417, 32.203201721191419 ], [ 35.199641581217463, 32.203361328125141 ], [ 35.199900889078833, 32.203302571614586 ] ] ], [ [ [ 35.193166666666798, 32.202833333333444 ], [ 35.192791188557919, 32.202658004760792 ], [ 35.192549296061316, 32.202772150675571 ], [ 35.19266666666681, 32.203250000000139 ], [ 35.192998613993325, 32.203371899922615 ], [ 35.19369927724216, 32.203229482014933 ], [ 35.19325, 32.202916666666738 ], [ 35.193166666666798, 32.202916666666738 ], [ 35.193166666666798, 32.202833333333444 ] ] ], [ [ [ 35.192416666666702, 32.203416666666726 ], [ 35.192416666666702, 32.203333333333433 ], [ 35.192222969055194, 32.203375 ], [ 35.192416666666702, 32.203416666666726 ] ] ], [ [ [ 35.221184936523514, 32.203361859639529 ], [ 35.221083333333297, 32.203333333333433 ], [ 35.221111862182624, 32.203434936523479 ], [ 35.221184936523514, 32.203361859639529 ] ] ], [ [ [ 35.219693695068429, 32.203458333333458 ], [ 35.2195, 32.203416666666726 ], [ 35.2195, 32.2035 ], [ 35.219693695068429, 32.203458333333458 ] ] ], [ [ [ 35.201115104675353, 32.203446576436306 ], [ 35.201040506998709, 32.203253094991055 ], [ 35.200788818359342, 32.203331487019909 ], [ 35.20075, 32.203166666666675 ], [ 35.200634895324697, 32.203237589518267 ], [ 35.200705444335938, 32.203586179097499 ], [ 35.201115104675353, 32.203446576436306 ] ] ], [ [ [ 35.200554807027288, 32.203768269856823 ], [ 35.200583333333384, 32.203666666666606 ], [ 35.200481730143338, 32.20369519297293 ], [ 35.200554807027288, 32.203768269856823 ] ] ], [ [ [ 35.199141105651904, 32.203713528950971 ], [ 35.199000000000126, 32.2035 ], [ 35.198799296061338, 32.203551506042459 ], [ 35.198895545959545, 32.203784037272158 ], [ 35.199141105651904, 32.203713528950971 ] ] ], [ [ [ 35.19183333333325, 32.203833333333421 ], [ 35.191791666666688, 32.203726603190091 ], [ 35.191750000000127, 32.203833333333421 ], [ 35.19183333333325, 32.203833333333421 ] ] ], [ [ [ 35.191916666666771, 32.204 ], [ 35.192113159179655, 32.203949574788453 ], [ 35.192371276855511, 32.20378149159751 ], [ 35.192617370605547, 32.203836659749356 ], [ 35.192387898763116, 32.203504302978615 ], [ 35.192291666666677, 32.203643681844028 ], [ 35.192128494262761, 32.20340735117594 ], [ 35.192049296061327, 32.203715962727927 ], [ 35.191950703938744, 32.203784037272158 ], [ 35.191916666666771, 32.203833333333421 ], [ 35.191916666666771, 32.204 ] ] ], [ [ [ 35.191916666666771, 32.204 ], [ 35.191750000000127, 32.204 ], [ 35.191750000000127, 32.204083333333472 ], [ 35.19183333333325, 32.204083333333472 ], [ 35.191916666666771, 32.204083333333472 ], [ 35.191916666666771, 32.204 ] ] ], [ [ [ 35.208715962727808, 32.20436737060561 ], [ 35.208416666666665, 32.204333333333409 ], [ 35.208333333333371, 32.2045 ], [ 35.208416666666665, 32.2045 ], [ 35.208416666666665, 32.20458333333346 ], [ 35.208472986857146, 32.204694661458348 ], [ 35.208850351969431, 32.20463108825686 ], [ 35.208916666666653, 32.2045 ], [ 35.208715962727808, 32.20436737060561 ] ] ], [ [ [ 35.229333333333443, 32.205166666666742 ], [ 35.22925, 32.205166666666742 ], [ 35.22925, 32.20525 ], [ 35.229333333333443, 32.20525 ], [ 35.229333333333443, 32.205166666666742 ] ] ], [ [ [ 35.211388140360611, 32.205518269856896 ], [ 35.211416666666707, 32.205416666666679 ], [ 35.211315063476661, 32.205445192972945 ], [ 35.211388140360611, 32.205518269856896 ] ] ], [ [ [ 35.234771581014058, 32.205621772766222 ], [ 35.234833333333427, 32.205416666666679 ], [ 35.234666666666612, 32.205500000000143 ], [ 35.234771581014058, 32.205621772766222 ] ] ], [ [ [ 35.195333333333338, 32.206083333333424 ], [ 35.195300699869904, 32.205987675984716 ], [ 35.195153210957983, 32.206140419006488 ], [ 35.195333333333338, 32.206166666666718 ], [ 35.195333333333338, 32.206083333333424 ] ] ], [ [ [ 35.19261796824145, 32.206184583028289 ], [ 35.19266666666681, 32.206000000000131 ], [ 35.19197122192395, 32.20603741709391 ], [ 35.191916666666771, 32.20625 ], [ 35.191916666666771, 32.206333333333475 ], [ 35.192, 32.206333333333475 ], [ 35.192118125915499, 32.206284792582323 ], [ 35.19261796824145, 32.206184583028289 ] ] ], [ [ [ 35.194538052876908, 32.206355809529668 ], [ 35.194583333333412, 32.20625 ], [ 35.194391693115222, 32.206283777872784 ], [ 35.194538052876908, 32.206355809529668 ] ] ], [ [ [ 35.2465, 32.206333333333475 ], [ 35.246305740356547, 32.206131144205813 ], [ 35.24625, 32.206416666666598 ], [ 35.2465, 32.206416666666598 ], [ 35.2465, 32.206333333333475 ] ] ], [ [ [ 35.19183333333325, 32.206916666666757 ], [ 35.192138671875114, 32.206888671875049 ], [ 35.192250000000115, 32.206666666666706 ], [ 35.192083333333358, 32.206583333333413 ], [ 35.192, 32.206583333333413 ], [ 35.192, 32.206500000000119 ], [ 35.19183333333325, 32.206416666666598 ], [ 35.19183333333325, 32.206500000000119 ], [ 35.191666666666663, 32.206500000000119 ], [ 35.191666666666663, 32.206583333333413 ], [ 35.19183333333325, 32.206583333333413 ], [ 35.19183333333325, 32.206916666666757 ] ] ], [ [ [ 35.19183333333325, 32.206916666666757 ], [ 35.191666666666663, 32.206916666666757 ], [ 35.191666666666663, 32.207 ], [ 35.19183333333325, 32.207 ], [ 35.19183333333325, 32.206916666666757 ] ] ], [ [ [ 35.192083333333358, 32.207083333333401 ], [ 35.192041666666796, 32.206976603190242 ], [ 35.192, 32.207083333333401 ], [ 35.192083333333358, 32.207083333333401 ] ] ], [ [ [ 35.2195, 32.207166666666694 ], [ 35.219606730143369, 32.207125000000133 ], [ 35.2195, 32.207083333333401 ], [ 35.2195, 32.207166666666694 ] ] ], [ [ [ 35.2195, 32.207166666666694 ], [ 35.219416666666746, 32.207166666666694 ], [ 35.219416666666746, 32.20725 ], [ 35.2195, 32.20725 ], [ 35.2195, 32.207166666666694 ] ] ], [ [ [ 35.211916666666696, 32.207416666666745 ], [ 35.211875000000134, 32.207309936523473 ], [ 35.211833333333402, 32.207416666666745 ], [ 35.211916666666696, 32.207416666666745 ] ] ], [ [ [ 35.21233333333339, 32.207333333333452 ], [ 35.212166666666803, 32.207333333333452 ], [ 35.212166666666803, 32.207416666666745 ], [ 35.212416666666684, 32.207416666666745 ], [ 35.212416666666684, 32.207333333333452 ], [ 35.21233333333339, 32.207333333333452 ] ] ], [ [ [ 35.192333333333409, 32.207416666666745 ], [ 35.192333333333409, 32.20725 ], [ 35.192250000000115, 32.20725 ], [ 35.192069320678684, 32.207325887044362 ], [ 35.191871236165412, 32.207281481425071 ], [ 35.191666666666663, 32.207416666666745 ], [ 35.191666666666663, 32.2075 ], [ 35.191750000000127, 32.2075 ], [ 35.191750000000127, 32.207583333333332 ], [ 35.192132629394621, 32.207549296061131 ], [ 35.192333333333409, 32.207416666666745 ] ] ], [ [ [ 35.211750000000109, 32.207583333333332 ], [ 35.211750000000109, 32.207416666666745 ], [ 35.211639322916767, 32.207472656250047 ], [ 35.211583333333294, 32.207583333333332 ], [ 35.211750000000109, 32.207583333333332 ] ] ], [ [ [ 35.190083333333405, 32.207750000000146 ], [ 35.190000000000111, 32.207750000000146 ], [ 35.190000000000111, 32.20783333333344 ], [ 35.19025, 32.20783333333344 ], [ 35.19025, 32.207750000000146 ], [ 35.190083333333405, 32.207750000000146 ] ] ], [ [ [ 35.210916666666719, 32.20783333333344 ], [ 35.210750000000132, 32.20783333333344 ], [ 35.210750000000132, 32.208 ], [ 35.210860677083474, 32.207944010416782 ], [ 35.210916666666719, 32.20783333333344 ] ] ], [ [ [ 35.187916666666695, 32.20891666666671 ], [ 35.187833333333401, 32.20891666666671 ], [ 35.187501846313523, 32.208972979227724 ], [ 35.187416666666763, 32.209083333333467 ], [ 35.187458443959656, 32.209450703938899 ], [ 35.187693714141858, 32.209358757019118 ], [ 35.187784036000608, 32.209117370605497 ], [ 35.187916666666695, 32.20891666666671 ] ] ], [ [ [ 35.198101603190196, 32.209445192972964 ], [ 35.198, 32.209416666666698 ], [ 35.198028526306132, 32.209518269856915 ], [ 35.198101603190196, 32.209445192972964 ] ] ], [ [ [ 35.224326726277752, 32.210111841837602 ], [ 35.22425, 32.209916666666686 ], [ 35.2241303660075, 32.210009010314934 ], [ 35.224326726277752, 32.210111841837602 ] ] ], [ [ [ 35.197916666666686, 32.209916666666686 ], [ 35.197874926249199, 32.209856211344515 ], [ 35.197610445658484, 32.210038818359521 ], [ 35.19775, 32.21025 ], [ 35.197797030130971, 32.210213696797837 ], [ 35.197916666666686, 32.209916666666686 ] ] ], [ [ [ 35.197416666666697, 32.21025 ], [ 35.197333333333404, 32.21025 ], [ 35.197333333333404, 32.210333333333324 ], [ 35.197416666666697, 32.210333333333324 ], [ 35.197416666666697, 32.21025 ] ] ], [ [ [ 35.196666666666658, 32.210666666666725 ], [ 35.196633178710954, 32.210600466410426 ], [ 35.1965, 32.210666666666725 ], [ 35.1965, 32.21075 ], [ 35.196666666666658, 32.21075 ], [ 35.196666666666658, 32.210666666666725 ] ] ], [ [ [ 35.230250000000126, 32.210500000000138 ], [ 35.230250000000126, 32.210416666666617 ], [ 35.229882629394524, 32.210510943094903 ], [ 35.229993769327848, 32.210709617614782 ], [ 35.230250000000126, 32.21075 ], [ 35.230333333333419, 32.21075 ], [ 35.230333333333419, 32.210666666666725 ], [ 35.230333333333419, 32.210500000000138 ], [ 35.230250000000126, 32.210500000000138 ] ] ], [ [ [ 35.229788055419931, 32.210772476196382 ], [ 35.229833333333431, 32.210666666666725 ], [ 35.229641693115241, 32.210700444539498 ], [ 35.229788055419931, 32.210772476196382 ] ] ], [ [ [ 35.187166666666656, 32.21175 ], [ 35.186919174194259, 32.211595525105793 ], [ 35.186711432139077, 32.211711433410755 ], [ 35.18625, 32.211916666666752 ], [ 35.186380364735896, 32.21211963653576 ], [ 35.186478541056317, 32.212359514872333 ], [ 35.187110178629666, 32.212452855428069 ], [ 35.187166666666656, 32.21225 ], [ 35.187166666666656, 32.212 ], [ 35.187166666666656, 32.211916666666752 ], [ 35.187166666666656, 32.211833333333459 ], [ 35.187166666666656, 32.21175 ] ] ], [ [ [ 35.198583333333261, 32.213 ], [ 35.198583333333261, 32.212916666666729 ], [ 35.198476603190159, 32.212958333333461 ], [ 35.198583333333261, 32.213 ] ] ], [ [ [ 35.203788052876803, 32.213272476196323 ], [ 35.203833333333364, 32.213166666666609 ], [ 35.203641693115344, 32.213200444539382 ], [ 35.203788052876803, 32.213272476196323 ] ] ], [ [ [ 35.215106730143361, 32.213875000000144 ], [ 35.215, 32.213833333333412 ], [ 35.215, 32.213916666666705 ], [ 35.215106730143361, 32.213875000000144 ] ] ], [ [ [ 35.225416666666717, 32.213916666666705 ], [ 35.225250000000131, 32.213916666666705 ], [ 35.225138671875072, 32.213972986857129 ], [ 35.225525746663493, 32.213971847534197 ], [ 35.225416666666717, 32.213916666666705 ] ] ], [ [ [ 35.198331235249896, 32.213476544698153 ], [ 35.19804375966396, 32.213412099202458 ], [ 35.197916666666686, 32.213916666666705 ], [ 35.198132629394593, 32.213950703938906 ], [ 35.19833333333338, 32.214083333333463 ], [ 35.198450703938875, 32.213803891499879 ], [ 35.198331235249896, 32.213476544698153 ] ] ], [ [ [ 35.2173930969239, 32.214087661743292 ], [ 35.21775, 32.214 ], [ 35.217833333333374, 32.214 ], [ 35.217833333333374, 32.213666666666768 ], [ 35.217722005208316, 32.213611328125012 ], [ 35.217416666666679, 32.213583333333474 ], [ 35.217388671875142, 32.21363867187506 ], [ 35.217166666666742, 32.21375 ], [ 35.2173930969239, 32.214087661743292 ] ] ], [ [ [ 35.204304807027199, 32.214184936523509 ], [ 35.204333333333352, 32.214083333333463 ], [ 35.204231730143306, 32.214111859639559 ], [ 35.204304807027199, 32.214184936523509 ] ] ], [ [ [ 35.203534037272163, 32.213753456115853 ], [ 35.203464294433616, 32.213614031473867 ], [ 35.20325, 32.213666666666768 ], [ 35.203111328125033, 32.213694661458362 ], [ 35.203, 32.21375 ], [ 35.20304009246837, 32.214200703938786 ], [ 35.203135566711467, 32.214130470276018 ], [ 35.203114397684715, 32.214036038716699 ], [ 35.203534037272163, 32.213753456115853 ] ] ], [ [ [ 35.180500000000109, 32.214333333333343 ], [ 35.180500000000109, 32.214166666666756 ], [ 35.180666666666752, 32.214166666666756 ], [ 35.180666666666752, 32.214083333333463 ], [ 35.180666666666752, 32.214 ], [ 35.180333333333351, 32.213833333333412 ], [ 35.180333333333351, 32.213916666666705 ], [ 35.180166666666764, 32.213916666666705 ], [ 35.180166666666764, 32.214166666666756 ], [ 35.18025, 32.214166666666756 ], [ 35.18025, 32.21425 ], [ 35.18025, 32.214333333333343 ], [ 35.180333333333351, 32.214333333333343 ], [ 35.180500000000109, 32.214333333333343 ] ] ], [ [ [ 35.203083333333268, 32.214416666666693 ], [ 35.203083333333268, 32.214333333333343 ], [ 35.203, 32.214333333333343 ], [ 35.203, 32.214416666666693 ], [ 35.203083333333268, 32.214416666666693 ] ] ], [ [ [ 35.225750000000119, 32.214333333333343 ], [ 35.225550231933653, 32.214234034220453 ], [ 35.2255, 32.214333333333343 ], [ 35.2255, 32.214416666666693 ], [ 35.225750000000119, 32.214416666666693 ], [ 35.225750000000119, 32.214333333333343 ] ] ], [ [ [ 35.218666666666707, 32.213833333333412 ], [ 35.218583333333413, 32.213833333333412 ], [ 35.218555338541705, 32.213972005208461 ], [ 35.21850000000012, 32.214083333333463 ], [ 35.21850000000012, 32.214166666666756 ], [ 35.218583333333413, 32.214333333333343 ], [ 35.219112299601363, 32.214420227050823 ], [ 35.219333333333452, 32.214333333333343 ], [ 35.219333333333452, 32.21425 ], [ 35.219333333333452, 32.214083333333463 ], [ 35.21925, 32.213916666666705 ], [ 35.218916666666587, 32.213916666666705 ], [ 35.218666666666707, 32.213916666666705 ], [ 35.218666666666707, 32.213833333333412 ] ] ], [ [ [ 35.203083333333268, 32.214416666666693 ], [ 35.203166666666789, 32.214583333333451 ], [ 35.203288439432868, 32.214478418986005 ], [ 35.203083333333268, 32.214416666666693 ] ] ], [ [ [ 35.203702969868971, 32.214380363464443 ], [ 35.20366666666672, 32.214333333333343 ], [ 35.203380363464419, 32.214381968180476 ], [ 35.203456680297847, 32.214730651855461 ], [ 35.204192726135261, 32.2146056137085 ], [ 35.204215250651032, 32.214453188578375 ], [ 35.203702969868971, 32.214380363464443 ] ] ], [ [ [ 35.179916666666657, 32.2145 ], [ 35.179832002003991, 32.214381874084495 ], [ 35.179548541386907, 32.214474095662467 ], [ 35.179637252807709, 32.214781486511242 ], [ 35.179916666666657, 32.214666666666744 ], [ 35.179916666666657, 32.2145 ] ] ], [ [ [ 35.192860677083445, 32.214389322916645 ], [ 35.192750000000103, 32.214333333333343 ], [ 35.192653157552115, 32.214710695902454 ], [ 35.1925, 32.21475 ], [ 35.1925, 32.214833333333331 ], [ 35.192722005208395, 32.214861328125096 ], [ 35.192833333333397, 32.214916666666625 ], [ 35.192888671874982, 32.214805338541794 ], [ 35.19291666666669, 32.2145 ], [ 35.192860677083445, 32.214389322916645 ] ] ], [ [ [ 35.213388137817503, 32.215101603190192 ], [ 35.21341666666666, 32.215000000000146 ], [ 35.213315063476614, 32.215028526306241 ], [ 35.213388137817503, 32.215101603190192 ] ] ], [ [ [ 35.210011744181372, 32.215146313985258 ], [ 35.209775217692084, 32.215093289693243 ], [ 35.209801007588737, 32.215208333333464 ], [ 35.209754900614485, 32.215414004008096 ], [ 35.210083333333387, 32.215333333333319 ], [ 35.210083333333387, 32.21525 ], [ 35.210011744181372, 32.215146313985258 ] ] ], [ [ [ 35.203583333333427, 32.215583333333427 ], [ 35.203583333333427, 32.215500000000134 ], [ 35.203500000000133, 32.215500000000134 ], [ 35.203239733378211, 32.215385866801057 ], [ 35.203166666666789, 32.215500000000134 ], [ 35.203166666666789, 32.215583333333427 ], [ 35.203583333333427, 32.215583333333427 ] ] ], [ [ [ 35.203583333333427, 32.215583333333427 ], [ 35.20366666666672, 32.215699600219864 ], [ 35.20375, 32.215583333333427 ], [ 35.203583333333427, 32.215583333333427 ] ] ], [ [ [ 35.202916666666681, 32.21575 ], [ 35.202916666666681, 32.215583333333427 ], [ 35.203083333333268, 32.215583333333427 ], [ 35.203083333333268, 32.215500000000134 ], [ 35.202861328125095, 32.215472005208369 ], [ 35.202767865498856, 32.215287251790471 ], [ 35.20258333333328, 32.21525 ], [ 35.202604530334611, 32.215395469665509 ], [ 35.202812136332227, 32.215604530334531 ], [ 35.202833333333388, 32.21575 ], [ 35.202916666666681, 32.21575 ] ] ], [ [ [ 35.202416666666693, 32.215166666666732 ], [ 35.202155164082853, 32.215070635477844 ], [ 35.201628100077414, 32.215228309631414 ], [ 35.201884297688821, 32.215449035644554 ], [ 35.202144889831516, 32.215751508077062 ], [ 35.202416666666693, 32.215833333333478 ], [ 35.202533241271965, 32.215739982605101 ], [ 35.202329513549785, 32.215393402099664 ], [ 35.202416666666693, 32.215166666666732 ] ] ], [ [ [ 35.204702715555925, 32.215753743489643 ], [ 35.204293314615938, 32.215450213114366 ], [ 35.204166666666708, 32.215500000000134 ], [ 35.20425, 32.215666666666721 ], [ 35.204380363464395, 32.215702969868914 ], [ 35.204509010314894, 32.215869636535729 ], [ 35.204702715555925, 32.215753743489643 ] ] ], [ [ [ 35.181333333333328, 32.215916666666772 ], [ 35.181434935252014, 32.215888140360505 ], [ 35.181361860911124, 32.215815063476555 ], [ 35.181333333333328, 32.215916666666772 ] ] ], [ [ [ 35.181333333333328, 32.215916666666772 ], [ 35.181143488566192, 32.215827967325936 ], [ 35.181265139261939, 32.216150705973291 ], [ 35.181416094462122, 32.21609380340584 ], [ 35.181333333333328, 32.215916666666772 ] ] ], [ [ [ 35.212638137817407, 32.216268269856755 ], [ 35.212666666666735, 32.216166666666709 ], [ 35.212565063476518, 32.216195192972805 ], [ 35.212638137817407, 32.216268269856755 ] ] ], [ [ [ 35.204333333333352, 32.21625 ], [ 35.20425, 32.21625 ], [ 35.20425, 32.216333333333466 ], [ 35.204333333333352, 32.216333333333466 ], [ 35.204333333333352, 32.21625 ] ] ], [ [ [ 35.192333333333409, 32.2165 ], [ 35.192333333333409, 32.216333333333466 ], [ 35.192166666666651, 32.21641666666676 ], [ 35.192166666666651, 32.2165 ], [ 35.192250000000115, 32.2165 ], [ 35.192333333333409, 32.2165 ] ] ], [ [ [ 35.204851603190207, 32.216445192972913 ], [ 35.20475, 32.21641666666676 ], [ 35.204778526306143, 32.216518269856806 ], [ 35.204851603190207, 32.216445192972913 ] ] ], [ [ [ 35.211971473693893, 32.216601603190099 ], [ 35.212, 32.2165 ], [ 35.211898396809943, 32.216528526306206 ], [ 35.211971473693893, 32.216601603190099 ] ] ], [ [ [ 35.212808700561652, 32.216765869140659 ], [ 35.212833333333379, 32.2165 ], [ 35.212564875284841, 32.216524871826266 ], [ 35.212808700561652, 32.216765869140659 ] ] ], [ [ [ 35.202416666666693, 32.21641666666676 ], [ 35.20211907958992, 32.21629251861583 ], [ 35.202210942586248, 32.216210439046165 ], [ 35.202205416361437, 32.216117724100798 ], [ 35.201722895304385, 32.216146481831913 ], [ 35.201627344767303, 32.216482823689716 ], [ 35.20180707550054, 32.216622655232868 ], [ 35.202026095072426, 32.216377525329676 ], [ 35.202532887776783, 32.216770268758182 ], [ 35.20258333333328, 32.2165 ], [ 35.202416666666693, 32.2165 ], [ 35.202416666666693, 32.21641666666676 ] ] ], [ [ [ 35.191666666666663, 32.216833333333454 ], [ 35.191625000000101, 32.216726603190125 ], [ 35.191583333333369, 32.216833333333454 ], [ 35.191666666666663, 32.216833333333454 ] ] ], [ [ [ 35.200554807027288, 32.216851603190207 ], [ 35.200583333333384, 32.21675 ], [ 35.200481730143338, 32.216778526306257 ], [ 35.200554807027288, 32.216851603190207 ] ] ], [ [ [ 35.218721471150843, 32.216934936523501 ], [ 35.21875, 32.216833333333454 ], [ 35.218648396809954, 32.21686185963955 ], [ 35.218721471150843, 32.216934936523501 ] ] ], [ [ [ 35.223304804483973, 32.216934936523501 ], [ 35.223333333333301, 32.216833333333454 ], [ 35.223231730143254, 32.21686185963955 ], [ 35.223304804483973, 32.216934936523501 ] ] ], [ [ [ 35.191416666666782, 32.217083333333335 ], [ 35.191416666666782, 32.216833333333454 ], [ 35.1915, 32.216833333333454 ], [ 35.191444010416774, 32.216722656250113 ], [ 35.191333333333262, 32.216666666666697 ], [ 35.191299296061288, 32.21671596272796 ], [ 35.191151405334551, 32.216818072001161 ], [ 35.191083333333381, 32.217083333333335 ], [ 35.191333333333262, 32.217083333333335 ], [ 35.191416666666782, 32.217083333333335 ] ] ], [ [ [ 35.229916666666725, 32.217750000000137 ], [ 35.229916666666725, 32.217666666666616 ], [ 35.23, 32.217666666666616 ], [ 35.230083333333312, 32.217666666666616 ], [ 35.230018564860075, 32.217553072611565 ], [ 35.229792597452786, 32.21764131927489 ], [ 35.22975, 32.217833333333431 ], [ 35.229916666666725, 32.217833333333431 ], [ 35.229916666666725, 32.217750000000137 ] ] ], [ [ [ 35.190304805755716, 32.217934936523477 ], [ 35.190333333333342, 32.217833333333431 ], [ 35.190231731414826, 32.217861859639527 ], [ 35.190304805755716, 32.217934936523477 ] ] ], [ [ [ 35.229583333333323, 32.217916666666724 ], [ 35.229416666666737, 32.217916666666724 ], [ 35.229416666666737, 32.218 ], [ 35.229583333333323, 32.218 ], [ 35.229583333333323, 32.217916666666724 ] ] ], [ [ [ 35.176601198832145, 32.218379414876438 ], [ 35.176666666666677, 32.21825 ], [ 35.176482134501157, 32.218287251790343 ], [ 35.176416666666796, 32.218416666666712 ], [ 35.176601198832145, 32.218379414876438 ] ] ], [ [ [ 35.20875, 32.2185 ], [ 35.20875, 32.218416666666712 ], [ 35.208833333333359, 32.218416666666712 ], [ 35.208796020507805, 32.218231844584238 ], [ 35.208444661458373, 32.218055338541774 ], [ 35.208372512817391, 32.217805338541666 ], [ 35.208194661458322, 32.217861328125139 ], [ 35.208166666666727, 32.217916666666724 ], [ 35.208194661458322, 32.218222005208361 ], [ 35.20825, 32.218333333333419 ], [ 35.208549296061221, 32.21836737060562 ], [ 35.20875, 32.2185 ] ] ], [ [ [ 35.175972005208394, 32.218277994791663 ], [ 35.17575, 32.218166666666775 ], [ 35.175699192682941, 32.218199193318753 ], [ 35.175634140650573, 32.218300806681441 ], [ 35.175467473983758, 32.218407503763899 ], [ 35.175762791951513, 32.218526855468781 ], [ 35.175865859349699, 32.21836585998534 ], [ 35.176000000000101, 32.218333333333419 ], [ 35.175972005208394, 32.218277994791663 ] ] ], [ [ [ 35.199143620808911, 32.218065264383938 ], [ 35.199500000000114, 32.218020935058689 ], [ 35.199866722107004, 32.218066551208494 ], [ 35.199882825215752, 32.217937082926483 ], [ 35.199796274820983, 32.217537058512391 ], [ 35.199666666666701, 32.217333333333443 ], [ 35.199534136454304, 32.217439460754406 ], [ 35.199564966837556, 32.217687319437687 ], [ 35.199125086466495, 32.217945892334114 ], [ 35.198703725179087, 32.21803705851238 ], [ 35.19862960815442, 32.218129608154243 ], [ 35.198212941487725, 32.218248741149978 ], [ 35.198312700907479, 32.218537058512368 ], [ 35.19898166910815, 32.218449600219799 ], [ 35.199143620808911, 32.218065264383938 ] ] ], [ [ [ 35.18075, 32.2185 ], [ 35.180500000000109, 32.2185 ], [ 35.180500000000109, 32.21858333333347 ], [ 35.180550233205281, 32.218682632446416 ], [ 35.18075, 32.21858333333347 ], [ 35.18075, 32.2185 ] ] ], [ [ [ 35.190138139089072, 32.22010160319013 ], [ 35.190166666666698, 32.220000000000141 ], [ 35.190065064748183, 32.220028526306237 ], [ 35.190138139089072, 32.22010160319013 ] ] ], [ [ [ 35.188554805755643, 32.220268269856774 ], [ 35.188583333333327, 32.220166666666728 ], [ 35.188481731414754, 32.220195192972824 ], [ 35.188554805755643, 32.220268269856774 ] ] ], [ [ [ 35.175240353902268, 32.21959246571862 ], [ 35.175333333333356, 32.219333333333338 ], [ 35.175205989837593, 32.21937265523286 ], [ 35.175088020960629, 32.220004686991331 ], [ 35.174877343813591, 32.220192924499599 ], [ 35.17544535064701, 32.220676976521872 ], [ 35.175539323170995, 32.220372655232836 ], [ 35.175705989837752, 32.22022374216715 ], [ 35.175575565338136, 32.219917905171769 ], [ 35.175460676829118, 32.219789321899555 ], [ 35.175240353902268, 32.21959246571862 ] ] ], [ [ [ 35.18343263244634, 32.220699765523307 ], [ 35.183333333333394, 32.2205 ], [ 35.183065895080517, 32.220533724467032 ], [ 35.182984575907426, 32.220700233459581 ], [ 35.1832500000001, 32.220833333333474 ], [ 35.183277994791638, 32.220777994791717 ], [ 35.18343263244634, 32.220699765523307 ] ] ], [ [ [ 35.193943697611417, 32.221022839864133 ], [ 35.19375, 32.220916666666767 ], [ 35.19375, 32.221083333333354 ], [ 35.193833333333373, 32.221083333333354 ], [ 35.193943697611417, 32.221022839864133 ] ] ], [ [ [ 35.19375, 32.221166666666704 ], [ 35.193666666666786, 32.221166666666704 ], [ 35.193666666666786, 32.22125 ], [ 35.19375, 32.22125 ], [ 35.19375, 32.221166666666704 ] ] ], [ [ [ 35.20863814036062, 32.221601603190095 ], [ 35.208666666666716, 32.2215 ], [ 35.208565063476499, 32.221528526306201 ], [ 35.20863814036062, 32.221601603190095 ] ] ], [ [ [ 35.208518269856881, 32.221611859639495 ], [ 35.208416666666665, 32.221583333333342 ], [ 35.208445192972931, 32.221684936523559 ], [ 35.208518269856881, 32.221611859639495 ] ] ], [ [ [ 35.18925, 32.22183333333345 ], [ 35.189166666666779, 32.221717066447013 ], [ 35.189083333333258, 32.22183333333345 ], [ 35.18925, 32.22183333333345 ] ] ], [ [ [ 35.181859630584768, 32.222032819112258 ], [ 35.18191666666678, 32.22183333333345 ], [ 35.181712942759134, 32.221891581217449 ], [ 35.181859630584768, 32.222032819112258 ] ] ], [ [ [ 35.182326727549253, 32.222111841837545 ], [ 35.18225, 32.221916666666743 ], [ 35.18213036473594, 32.222009010315048 ], [ 35.182326727549253, 32.222111841837545 ] ] ], [ [ [ 35.197743392944403, 32.223195175170986 ], [ 35.197666666666805, 32.223 ], [ 35.197547030131091, 32.223092343648261 ], [ 35.197743392944403, 32.223195175170986 ] ] ], [ [ [ 35.210219459533619, 32.223131607055734 ], [ 35.21016666666668, 32.22291666666672 ], [ 35.209882629394599, 32.222989557901997 ], [ 35.209983090718652, 32.223200703938801 ], [ 35.210219459533619, 32.223131607055734 ] ] ], [ [ [ 35.197, 32.22291666666672 ], [ 35.196833333333416, 32.22291666666672 ], [ 35.196833333333416, 32.223083333333477 ], [ 35.197048230489145, 32.223225344339994 ], [ 35.197083333333353, 32.22291666666672 ], [ 35.197, 32.22291666666672 ] ] ], [ [ [ 35.188083333333338, 32.223333333333358 ], [ 35.187924967447941, 32.22313556925468 ], [ 35.187833333333401, 32.22325 ], [ 35.187833333333401, 32.223333333333358 ], [ 35.187750000000108, 32.223333333333358 ], [ 35.187788430531953, 32.22352369689952 ], [ 35.188055338541744, 32.223388671875114 ], [ 35.188083333333338, 32.223333333333358 ] ] ], [ [ [ 35.20275, 32.223583333333465 ], [ 35.2025, 32.223583333333465 ], [ 35.2025, 32.22375 ], [ 35.202833333333388, 32.22375 ], [ 35.202833333333388, 32.223666666666759 ], [ 35.20275, 32.223666666666759 ], [ 35.20275, 32.223583333333465 ] ] ], [ [ [ 35.21, 32.223583333333465 ], [ 35.209833333333279, 32.223583333333465 ], [ 35.209833333333279, 32.223666666666759 ], [ 35.209972737630267, 32.223944661458404 ], [ 35.210188323974648, 32.223871917724694 ], [ 35.21025, 32.22375 ], [ 35.210083333333387, 32.223666666666759 ], [ 35.21, 32.223666666666759 ], [ 35.21, 32.223583333333465 ] ] ], [ [ [ 35.207976010640493, 32.223701850891189 ], [ 35.207833333333383, 32.223583333333465 ], [ 35.207805338541618, 32.223722005208344 ], [ 35.207683799743791, 32.223783487955757 ], [ 35.20775, 32.223916666666639 ], [ 35.207850631713882, 32.224037811279402 ], [ 35.207976010640493, 32.223701850891189 ] ] ], [ [ [ 35.205619636535573, 32.223797030131152 ], [ 35.2055, 32.223583333333465 ], [ 35.205303876241032, 32.223637947082523 ], [ 35.205645558675201, 32.224080614725892 ], [ 35.205816296895421, 32.223948827107733 ], [ 35.205619636535573, 32.223797030131152 ] ] ], [ [ [ 35.206049954732293, 32.224189376831134 ], [ 35.206083333333368, 32.224 ], [ 35.205975026448641, 32.224046348571903 ], [ 35.206049954732293, 32.224189376831134 ] ] ], [ [ [ 35.187952968597415, 32.2241011225384 ], [ 35.187733537038298, 32.224009908040387 ], [ 35.187416666666763, 32.224083333333454 ], [ 35.187416666666763, 32.224166666666747 ], [ 35.1875, 32.224166666666747 ], [ 35.1875, 32.22425 ], [ 35.18758333333335, 32.22425 ], [ 35.187952968597415, 32.2241011225384 ] ] ], [ [ [ 35.203, 32.22425 ], [ 35.202958333333413, 32.224143269856768 ], [ 35.202916666666681, 32.22425 ], [ 35.203, 32.22425 ] ] ], [ [ [ 35.205916666666724, 32.22425 ], [ 35.205875, 32.224143269856768 ], [ 35.20583333333343, 32.22425 ], [ 35.205916666666724, 32.22425 ] ] ], [ [ [ 35.201560765584418, 32.224203727722283 ], [ 35.201666666666654, 32.223833333333346 ], [ 35.200796274820959, 32.223942199707039 ], [ 35.200903106689452, 32.22409221649184 ], [ 35.201208333333398, 32.224130182902115 ], [ 35.20129544067396, 32.224119346618579 ], [ 35.201429740905837, 32.224287058512402 ], [ 35.201560765584418, 32.224203727722283 ] ] ], [ [ [ 35.2065, 32.224416666666627 ], [ 35.206458333333273, 32.224309936523525 ], [ 35.206416666666712, 32.224416666666627 ], [ 35.2065, 32.224416666666627 ] ] ], [ [ [ 35.202133288065568, 32.224439378102602 ], [ 35.202166666666642, 32.22425 ], [ 35.202058359781915, 32.224296348571784 ], [ 35.202133288065568, 32.224439378102602 ] ] ], [ [ [ 35.209221473693901, 32.224518268585143 ], [ 35.20925, 32.224416666666627 ], [ 35.209148396809951, 32.224445194244481 ], [ 35.209221473693901, 32.224518268585143 ] ] ], [ [ [ 35.206871386210196, 32.224522476196341 ], [ 35.2069166666667, 32.224416666666627 ], [ 35.20672502644851, 32.2244504445394 ], [ 35.206871386210196, 32.224522476196341 ] ] ], [ [ [ 35.19497147369384, 32.224601601918664 ], [ 35.195000000000107, 32.224500000000148 ], [ 35.19489839680989, 32.224528527577775 ], [ 35.19497147369384, 32.224601601918664 ] ] ], [ [ [ 35.195531044006373, 32.224135363260984 ], [ 35.195333333333338, 32.223833333333346 ], [ 35.195168159484865, 32.223876909891885 ], [ 35.195032956441253, 32.224205922444753 ], [ 35.19504990132657, 32.224291666666772 ], [ 35.195020594278901, 32.224439973195445 ], [ 35.19545412190763, 32.224618124644053 ], [ 35.195531044006373, 32.224135363260984 ] ] ], [ [ [ 35.207768516540568, 32.224847226460838 ], [ 35.208, 32.22475 ], [ 35.208083333333434, 32.22475 ], [ 35.208166666666727, 32.224633733113592 ], [ 35.20825, 32.22475 ], [ 35.20875, 32.22475 ], [ 35.20878403727221, 32.224534036000648 ], [ 35.209117370605441, 32.224448493957652 ], [ 35.209009361267078, 32.224187553405841 ], [ 35.208583333333422, 32.224283058166577 ], [ 35.208207984924343, 32.224198913574298 ], [ 35.208, 32.22425 ], [ 35.208, 32.224500000000148 ], [ 35.207916666666677, 32.224500000000148 ], [ 35.207916666666677, 32.224583333333442 ], [ 35.207833333333383, 32.224583333333442 ], [ 35.207768516540568, 32.224847226460838 ] ] ], [ [ [ 35.196750000000122, 32.22475 ], [ 35.196721473693856, 32.224851601918544 ], [ 35.196648396809906, 32.224778527577826 ], [ 35.196750000000122, 32.22475 ], [ 35.196750000000122, 32.224666666666735 ], [ 35.1965, 32.224666666666735 ], [ 35.1965, 32.224916666666786 ], [ 35.196583333333365, 32.224916666666786 ], [ 35.196722005208414, 32.22494466145838 ], [ 35.196833333333416, 32.225 ], [ 35.197028971354257, 32.224892763773653 ], [ 35.196750000000122, 32.22475 ] ] ], [ [ [ 35.182410060882546, 32.225195175170882 ], [ 35.182333333333247, 32.225 ], [ 35.18221369806929, 32.225092343648384 ], [ 35.182410060882546, 32.225195175170882 ] ] ], [ [ [ 35.206250000000125, 32.22533333333331 ], [ 35.206250000000125, 32.22525 ], [ 35.206583333333356, 32.22525 ], [ 35.20653345743807, 32.225050107320158 ], [ 35.206015134175743, 32.224886202494304 ], [ 35.205750000000137, 32.225 ], [ 35.205722005208429, 32.225055338541665 ], [ 35.205600466410374, 32.225116822560608 ], [ 35.205666666666673, 32.22525 ], [ 35.206138671875124, 32.225277994791725 ], [ 35.206250000000125, 32.22533333333331 ] ] ], [ [ [ 35.195954719543522, 32.225439142862967 ], [ 35.196, 32.22533333333331 ], [ 35.195808359781893, 32.225367111206083 ], [ 35.195954719543522, 32.225439142862967 ] ] ], [ [ [ 35.1935, 32.22508333333343 ], [ 35.193451169331922, 32.224604611714767 ], [ 35.193166666666798, 32.224666666666735 ], [ 35.193034037272184, 32.224867369333992 ], [ 35.193, 32.225166666666723 ], [ 35.193141253153556, 32.225264193216901 ], [ 35.193083333333334, 32.2255 ], [ 35.193222005208384, 32.22547200520836 ], [ 35.193333333333385, 32.225416666666774 ], [ 35.193366874694902, 32.225150679270428 ], [ 35.1935, 32.22508333333343 ] ] ], [ [ [ 35.207250000000101, 32.22575 ], [ 35.207083333333287, 32.22575 ], [ 35.207083333333287, 32.225833333333469 ], [ 35.207122225443641, 32.22588966115319 ], [ 35.207471906026285, 32.226117369333849 ], [ 35.207700703938769, 32.225916119893498 ], [ 35.207549296061245, 32.225784036000675 ], [ 35.207250000000101, 32.22575 ] ] ], [ [ [ 35.193445963541649, 32.226108754476058 ], [ 35.193625119527155, 32.22602125930797 ], [ 35.19375, 32.226083333333349 ], [ 35.193833333333373, 32.225916666666762 ], [ 35.193833333333373, 32.22575 ], [ 35.19375, 32.22575 ], [ 35.193708607991653, 32.225877557118793 ], [ 35.193314270019641, 32.225869509379095 ], [ 35.193042500813874, 32.226114432016971 ], [ 35.193416666666678, 32.226166666666643 ], [ 35.193445963541649, 32.226108754476058 ] ] ], [ [ [ 35.18630480575564, 32.226518268585266 ], [ 35.186333333333323, 32.226416666666751 ], [ 35.18623173141475, 32.226445194244377 ], [ 35.18630480575564, 32.226518268585266 ] ] ], [ [ [ 35.192442316691029, 32.226060429891049 ], [ 35.1918951594036, 32.22596622975675 ], [ 35.191833203633621, 32.22632610066745 ], [ 35.192, 32.226583333333338 ], [ 35.192049296061327, 32.226549297332838 ], [ 35.192117370605558, 32.22645070266725 ], [ 35.192382629394501, 32.22638263066608 ], [ 35.192583333333346, 32.22625 ], [ 35.192442316691029, 32.226060429891049 ] ] ], [ [ [ 35.186221472422346, 32.226684935251853 ], [ 35.18625, 32.226583333333338 ], [ 35.186148398081457, 32.226611860911134 ], [ 35.186221472422346, 32.226684935251853 ] ] ], [ [ [ 35.18683380254123, 32.226854666392114 ], [ 35.186480445861832, 32.226721473693829 ], [ 35.186416666666787, 32.226833333333445 ], [ 35.18656213506074, 32.226854531606079 ], [ 35.186687864939302, 32.226978801727398 ], [ 35.186916666666775, 32.227 ], [ 35.18683380254123, 32.226854666392114 ] ] ], [ [ [ 35.19441984303802, 32.227183429718025 ], [ 35.194574297587053, 32.226990553538087 ], [ 35.194916666666643, 32.226947967529441 ], [ 35.195200055440409, 32.226983217875159 ], [ 35.195241292317803, 32.226651692708401 ], [ 35.194933560689321, 32.226470799764058 ], [ 35.194787892659519, 32.226452681223577 ], [ 35.19475, 32.2265 ], [ 35.194646998087592, 32.226619553884007 ], [ 35.194083333333253, 32.226666666666631 ], [ 35.194028358459548, 32.226809684753448 ], [ 35.194069951375354, 32.227144065857033 ], [ 35.193716611226534, 32.2271001154582 ], [ 35.193693359375061, 32.227287057240744 ], [ 35.19441984303802, 32.227183429718025 ] ], [ [ 35.194135650634678, 32.226870713551989 ], [ 35.194500000000119, 32.226833333333445 ], [ 35.194435091654384, 32.22694282277439 ], [ 35.194135650634678, 32.226870713551989 ] ] ], [ [ [ 35.186416666666787, 32.227333333333434 ], [ 35.186416666666787, 32.22725 ], [ 35.186309935251984, 32.227291666666645 ], [ 35.186416666666787, 32.227333333333434 ] ] ], [ [ [ 35.195112022399996, 32.22745288848887 ], [ 35.195166666666694, 32.22716666666679 ], [ 35.194876589457181, 32.227337201436399 ], [ 35.195112022399996, 32.22745288848887 ] ] ], [ [ [ 35.194454719543387, 32.227522476196384 ], [ 35.194500000000119, 32.227416666666727 ], [ 35.194308359781928, 32.2274504445395 ], [ 35.194454719543387, 32.227522476196384 ] ] ], [ [ [ 35.186416666666787, 32.227333333333434 ], [ 35.186536721547498, 32.22750721486409 ], [ 35.186833333333254, 32.227583333333314 ], [ 35.186771259307875, 32.227458454132091 ], [ 35.186816046396928, 32.227366744995095 ], [ 35.18675, 32.227333333333434 ], [ 35.186538817087921, 32.227193777720117 ], [ 35.1865, 32.22725 ], [ 35.1865, 32.227333333333434 ], [ 35.186416666666787, 32.227333333333434 ] ] ], [ [ [ 35.189032933553108, 32.2275 ], [ 35.188916666666671, 32.227416666666727 ], [ 35.188916666666671, 32.227583333333314 ], [ 35.189032933553108, 32.2275 ] ] ], [ [ [ 35.186833333333254, 32.227583333333314 ], [ 35.186861860911108, 32.227684935252 ], [ 35.186934935251998, 32.227611860911111 ], [ 35.186833333333254, 32.227583333333314 ] ] ], [ [ [ 35.174583333333317, 32.228333333333353 ], [ 35.174583333333317, 32.22825 ], [ 35.174666666666781, 32.22825 ], [ 35.174592495282525, 32.228134140014618 ], [ 35.174473616917965, 32.228263094584179 ], [ 35.174583333333317, 32.228333333333353 ] ] ], [ [ [ 35.186621387481637, 32.228355809529546 ], [ 35.186666666666667, 32.22825 ], [ 35.186475026448647, 32.228283777872832 ], [ 35.186621387481637, 32.228355809529546 ] ] ], [ [ [ 35.18630480575564, 32.22876826858527 ], [ 35.186333333333323, 32.228666666666754 ], [ 35.18623173141475, 32.228695194244381 ], [ 35.18630480575564, 32.22876826858527 ] ] ], [ [ [ 35.186549954732357, 32.228772711435965 ], [ 35.186583333333374, 32.228583333333461 ], [ 35.186475026448647, 32.228629681905204 ], [ 35.186549954732357, 32.228772711435965 ] ] ], [ [ [ 35.185916666666799, 32.228166666666766 ], [ 35.185979476928651, 32.228060717264782 ], [ 35.18637831624352, 32.228197682698635 ], [ 35.186406421661388, 32.227959995269771 ], [ 35.186281016031899, 32.227885650634789 ], [ 35.18625, 32.227833333333365 ], [ 35.185760406494182, 32.227786079406769 ], [ 35.185495090484665, 32.227801892598563 ], [ 35.185544275919597, 32.228627106984447 ], [ 35.185446292877259, 32.228714653015174 ], [ 35.185463732401615, 32.2290072491964 ], [ 35.186289323171025, 32.228863666534551 ], [ 35.185883913675923, 32.228677597046044 ], [ 35.185794010162454, 32.228276259104462 ], [ 35.185916666666799, 32.228166666666766 ] ] ], [ [ [ 35.195288052876776, 32.229022476196349 ], [ 35.195333333333338, 32.228916666666635 ], [ 35.195141693115318, 32.228950444539407 ], [ 35.195288052876776, 32.229022476196349 ] ] ], [ [ [ 35.18565497207652, 32.229246696472273 ], [ 35.185583333333398, 32.229083333333449 ], [ 35.185384896596304, 32.229131449381441 ], [ 35.185300806681369, 32.229430674235061 ], [ 35.18565497207652, 32.229246696472273 ] ] ], [ [ [ 35.193971473693864, 32.229434935252016 ], [ 35.194000000000131, 32.229333333333329 ], [ 35.193898396809914, 32.229361860911126 ], [ 35.193971473693864, 32.229434935252016 ] ] ], [ [ [ 35.195031003316274, 32.229438888549794 ], [ 35.194916666666643, 32.229166666666742 ], [ 35.194715962727855, 32.229218172709182 ], [ 35.195031003316274, 32.229438888549794 ] ] ], [ [ [ 35.175638139088903, 32.229768268585246 ], [ 35.175666666666757, 32.229666666666731 ], [ 35.175565064748241, 32.229695194244528 ], [ 35.175638139088903, 32.229768268585246 ] ] ], [ [ [ 35.195333333333338, 32.22975 ], [ 35.19525, 32.22975 ], [ 35.19525, 32.230166666666719 ], [ 35.195333333333338, 32.230166666666719 ], [ 35.195388671875037, 32.230138671875125 ], [ 35.195444661458339, 32.229944661458319 ], [ 35.195566200256394, 32.229883177439376 ], [ 35.1955, 32.22975 ], [ 35.195333333333338, 32.22975 ] ] ], [ [ [ 35.175715963363757, 32.230049297332869 ], [ 35.17575, 32.229916666666782 ], [ 35.175522883097358, 32.229952461242817 ], [ 35.175215963363598, 32.230164370219029 ], [ 35.175329599380461, 32.230250495910695 ], [ 35.175534036636407, 32.230117369333925 ], [ 35.175715963363757, 32.230049297332869 ] ] ], [ [ [ 35.194804807027197, 32.230518268585286 ], [ 35.194833333333349, 32.23041666666677 ], [ 35.194731730143303, 32.230445194244396 ], [ 35.194804807027197, 32.230518268585286 ] ] ], [ [ [ 35.18112138748171, 32.230522476196427 ], [ 35.181166666666684, 32.23041666666677 ], [ 35.18097502644855, 32.230450444539372 ], [ 35.18112138748171, 32.230522476196427 ] ] ], [ [ [ 35.195781771342013, 32.230301561991496 ], [ 35.19575, 32.23025 ], [ 35.195551561991408, 32.230372269948475 ], [ 35.19566715749113, 32.230698438008687 ], [ 35.195896428426181, 32.230631530761798 ], [ 35.195772071838405, 32.230454414367728 ], [ 35.195900955200329, 32.230375 ], [ 35.195781771342013, 32.230301561991496 ] ] ], [ [ [ 35.200692962646485, 32.230782820383695 ], [ 35.20075, 32.230583333333357 ], [ 35.200546274821022, 32.230641581217583 ], [ 35.200692962646485, 32.230782820383695 ] ] ], [ [ [ 35.194528628031435, 32.230849900563555 ], [ 35.194416666666655, 32.230583333333357 ], [ 35.194089385986388, 32.230663720448831 ], [ 35.193869499206528, 32.230614425659269 ], [ 35.193799296061172, 32.2307114626567 ], [ 35.194303909301766, 32.230900277455703 ], [ 35.194528628031435, 32.230849900563555 ] ] ], [ [ [ 35.1965, 32.230916666666758 ], [ 35.1965, 32.230833333333464 ], [ 35.196666666666658, 32.230833333333464 ], [ 35.196631436665882, 32.230696056366071 ], [ 35.196369555155457, 32.230525521596292 ], [ 35.196299296061227, 32.230799297332794 ], [ 35.196181727091584, 32.230880471547493 ], [ 35.1965, 32.230916666666758 ] ] ], [ [ [ 35.180453501383454, 32.230466590881406 ], [ 35.180080760319981, 32.230383031209328 ], [ 35.179965963363713, 32.230549297332857 ], [ 35.179867369969656, 32.230617369333856 ], [ 35.179833333333363, 32.23075 ], [ 35.179916666666657, 32.23075 ], [ 35.179916666666657, 32.230833333333464 ], [ 35.180220381418849, 32.231034036000551 ], [ 35.180534036000608, 32.230902439117472 ], [ 35.180453501383454, 32.230466590881406 ] ] ], [ [ [ 35.192400276184173, 32.2312180061341 ], [ 35.192333333333409, 32.231083333333345 ], [ 35.192138671875114, 32.231122631072992 ], [ 35.192226206461612, 32.231277994791697 ], [ 35.192400276184173, 32.2312180061341 ] ] ], [ [ [ 35.192638140360486, 32.231351601918675 ], [ 35.19266666666681, 32.23125 ], [ 35.192565063476593, 32.231278527577786 ], [ 35.192638140360486, 32.231351601918675 ] ] ], [ [ [ 35.195388140360478, 32.231434935251968 ], [ 35.195416666666802, 32.231333333333453 ], [ 35.195315063476585, 32.231361860911079 ], [ 35.195388140360478, 32.231434935251968 ] ] ], [ [ [ 35.196871386210205, 32.231605809529697 ], [ 35.196916666666709, 32.2315 ], [ 35.196725026448576, 32.231533777872812 ], [ 35.196871386210205, 32.231605809529697 ] ] ], [ [ [ 35.19537138621024, 32.23168914286299 ], [ 35.195416666666802, 32.231583333333333 ], [ 35.195225026448611, 32.231617111206106 ], [ 35.19537138621024, 32.23168914286299 ] ] ], [ [ [ 35.194123410542886, 32.231790078481083 ], [ 35.194209922790606, 32.231709921518984 ], [ 35.19429007720953, 32.231623411814496 ], [ 35.194376589457192, 32.23154325485234 ], [ 35.194456858317039, 32.23145662307752 ], [ 35.194706743876168, 32.231466527303041 ], [ 35.194606028238923, 32.231244819641233 ], [ 35.194225107828686, 32.231043254852352 ], [ 35.194120086670011, 32.23112603251144 ], [ 35.194136497497539, 32.231540078481032 ], [ 35.193956743876129, 32.231459921519047 ], [ 35.193876589457204, 32.231373411814388 ], [ 35.193539019266723, 32.231266536712781 ], [ 35.193200505574623, 32.231033598582087 ], [ 35.192919843038055, 32.231336510976291 ], [ 35.192712661743201, 32.231528475443554 ], [ 35.193209922790629, 32.231623411814496 ], [ 35.193461456298962, 32.231796497345101 ], [ 35.193787239074823, 32.23178358459478 ], [ 35.193833333333373, 32.231833333333441 ], [ 35.193958333333399, 32.231771198272781 ], [ 35.194083333333253, 32.231833333333441 ], [ 35.194123410542886, 32.231790078481083 ] ] ], [ [ [ 35.192054807027205, 32.232184935252008 ], [ 35.192083333333358, 32.232083333333321 ], [ 35.191981730143311, 32.232111860911118 ], [ 35.192054807027205, 32.232184935252008 ] ] ], [ [ [ 35.188304805755592, 32.232268268585301 ], [ 35.188333333333389, 32.232166666666785 ], [ 35.188231731414874, 32.232195194244412 ], [ 35.188304805755592, 32.232268268585301 ] ] ], [ [ [ 35.194871386210252, 32.232439142863086 ], [ 35.194916666666643, 32.232333333333372 ], [ 35.194725026448623, 32.232367111206145 ], [ 35.194871386210252, 32.232439142863086 ] ] ], [ [ [ 35.192054807027205, 32.232601601918532 ], [ 35.192083333333358, 32.2325 ], [ 35.191981730143311, 32.232528527577813 ], [ 35.192054807027205, 32.232601601918532 ] ] ], [ [ [ 35.188399682362956, 32.232633478800437 ], [ 35.188333333333389, 32.2325 ], [ 35.188055338541744, 32.232535054524817 ], [ 35.188269944508875, 32.232694661458311 ], [ 35.188399682362956, 32.232633478800437 ] ] ], [ [ [ 35.193666666666786, 32.23325 ], [ 35.193638140360633, 32.233148398081539 ], [ 35.193565063476569, 32.233221472422429 ], [ 35.193666666666786, 32.23325 ] ] ], [ [ [ 35.184276866912853, 32.233357204437368 ], [ 35.18433333333337, 32.23325 ], [ 35.184054583231614, 32.233286221822198 ], [ 35.184276866912853, 32.233357204437368 ] ] ], [ [ [ 35.195601758321175, 32.233359489441057 ], [ 35.195666666666682, 32.23325 ], [ 35.195302317301412, 32.233287380218428 ], [ 35.195601758321175, 32.233359489441057 ] ] ], [ [ [ 35.193666666666786, 32.23325 ], [ 35.193747703552219, 32.233367369333848 ], [ 35.194367370605562, 32.233174102783209 ], [ 35.194142379760763, 32.232965963999447 ], [ 35.193836255391545, 32.233041737874487 ], [ 35.193715962727879, 32.233215963999555 ], [ 35.193666666666786, 32.23325 ] ], [ [ 35.193981730143207, 32.233111860911094 ], [ 35.194083333333253, 32.233083333333468 ], [ 35.194054807027157, 32.233184935251984 ], [ 35.193981730143207, 32.233111860911094 ] ] ], [ [ [ 35.19086370595295, 32.233910324096769 ], [ 35.190451054890957, 32.233777230580699 ], [ 35.190384140014658, 32.233967473348002 ], [ 35.190231718699124, 32.23406505203252 ], [ 35.190166666666698, 32.234166666666738 ], [ 35.190333333333342, 32.23425 ], [ 35.190778849283845, 32.234212277730251 ], [ 35.19086370595295, 32.233910324096769 ] ] ], [ [ [ 35.175721472422424, 32.234434935252011 ], [ 35.17575, 32.234333333333325 ], [ 35.175648398081535, 32.234361860911122 ], [ 35.175721472422424, 32.234434935252011 ] ] ], [ [ [ 35.179412144978926, 32.234350288391113 ], [ 35.179333333333375, 32.234166666666738 ], [ 35.179133429209401, 32.234216545104971 ], [ 35.179074621836378, 32.234449947357177 ], [ 35.179412144978926, 32.234350288391113 ] ] ], [ [ [ 35.179166666666788, 32.234666666666726 ], [ 35.179125, 32.234559935251866 ], [ 35.179083333333324, 32.234666666666726 ], [ 35.179166666666788, 32.234666666666726 ] ] ], [ [ [ 35.175675676345804, 32.234869635264204 ], [ 35.17581093279523, 32.234611354828019 ], [ 35.175619635264127, 32.234463698069192 ], [ 35.175547031402573, 32.234286301930752 ], [ 35.175369635264076, 32.234213698069311 ], [ 35.175333333333356, 32.234166666666738 ], [ 35.174888715744032, 32.234242196400999 ], [ 35.174512641906745, 32.234467119852809 ], [ 35.174803373336772, 32.234843777974561 ], [ 35.175499132156403, 32.234640913645478 ], [ 35.175675676345804, 32.234869635264204 ] ] ], [ [ [ 35.178, 32.235 ], [ 35.177958333333322, 32.234893268585267 ], [ 35.177916666666761, 32.235 ], [ 35.178, 32.235 ] ] ], [ [ [ 35.174721472422277, 32.235018268585293 ], [ 35.17475, 32.234916666666777 ], [ 35.174648398081558, 32.234945194244403 ], [ 35.174721472422277, 32.235018268585293 ] ] ], [ [ [ 35.174284036318568, 32.234882630666107 ], [ 35.174166666666792, 32.234666666666726 ], [ 35.174062980969779, 32.234738255818741 ], [ 35.17401967875162, 32.23493141555798 ], [ 35.174207450231052, 32.235053690592508 ], [ 35.174579029719098, 32.234958333333338 ], [ 35.174284036318568, 32.234882630666107 ] ] ], [ [ [ 35.175326727549361, 32.235111841201785 ], [ 35.17525, 32.234916666666777 ], [ 35.175130364736049, 32.235009010315082 ], [ 35.175326727549361, 32.235111841201785 ] ] ], [ [ [ 35.176738857905093, 32.235043912251854 ], [ 35.176666666666677, 32.23475 ], [ 35.176299296697039, 32.234791777292912 ], [ 35.176426540374678, 32.235117369969828 ], [ 35.176738857905093, 32.235043912251854 ] ] ], [ [ [ 35.17613867187498, 32.235222005208414 ], [ 35.17625, 32.235 ], [ 35.1758886718751, 32.235033128102657 ], [ 35.175961258570339, 32.235277994791716 ], [ 35.17613867187498, 32.235222005208414 ] ] ], [ [ [ 35.179583333333312, 32.235166666666657 ], [ 35.179416666666668, 32.235083820978844 ], [ 35.17925, 32.235166666666657 ], [ 35.179348475774134, 32.235361328125009 ], [ 35.179555338541718, 32.235305338541707 ], [ 35.179583333333312, 32.235166666666657 ] ] ], [ [ [ 35.176493394215925, 32.235361841201893 ], [ 35.176416666666796, 32.235166666666657 ], [ 35.176297031402612, 32.235259009679226 ], [ 35.176493394215925, 32.235361841201893 ] ] ], [ [ [ 35.176221472422412, 32.235434935251988 ], [ 35.17625, 32.235333333333472 ], [ 35.176148398081523, 32.235361860911098 ], [ 35.176221472422412, 32.235434935251988 ] ] ], [ [ [ 35.1789529685974, 32.235380364736045 ], [ 35.17891666666668, 32.23525 ], [ 35.178630364735909, 32.23529863548282 ], [ 35.178762999216758, 32.235447939554888 ], [ 35.179106227238947, 32.235498660405483 ], [ 35.1789529685974, 32.235380364736045 ] ] ], [ [ [ 35.174614920616136, 32.235446322759117 ], [ 35.1745, 32.235166666666657 ], [ 35.174215208371493, 32.235212707519565 ], [ 35.174303967157925, 32.235534791946463 ], [ 35.174614920616136, 32.235446322759117 ] ] ], [ [ [ 35.174833333333368, 32.23575 ], [ 35.174804805755741, 32.235648398081423 ], [ 35.174731731414852, 32.235721472422313 ], [ 35.174833333333368, 32.23575 ] ] ], [ [ [ 35.174833333333368, 32.23575 ], [ 35.174861860910994, 32.235851601918682 ], [ 35.174934935251883, 32.235778527577793 ], [ 35.174833333333368, 32.23575 ] ] ], [ [ [ 35.17566362317416, 32.235784601211662 ], [ 35.1759560146333, 32.235621465683096 ], [ 35.176136898676532, 32.235635999679687 ], [ 35.176000000000101, 32.235416666666765 ], [ 35.175384012222366, 32.235554505030393 ], [ 35.175358509063642, 32.235871901194344 ], [ 35.17566362317416, 32.235784601211662 ] ] ], [ [ [ 35.178638139089003, 32.235934935251976 ], [ 35.1786666666668, 32.23583333333346 ], [ 35.178565064748113, 32.235861860911086 ], [ 35.178638139089003, 32.235934935251976 ] ] ], [ [ [ 35.178638139089003, 32.236101601918563 ], [ 35.1786666666668, 32.236 ], [ 35.178565064748113, 32.236028527577844 ], [ 35.178638139089003, 32.236101601918563 ] ] ], [ [ [ 35.1795, 32.236416666666742 ], [ 35.179306303024362, 32.236458333333474 ], [ 35.1795, 32.2365 ], [ 35.1795, 32.236416666666742 ] ] ], [ [ [ 35.178743394215928, 32.236528507868456 ], [ 35.1786666666668, 32.236333333333448 ], [ 35.178547031402616, 32.236425676345959 ], [ 35.178743394215928, 32.236528507868456 ] ] ], [ [ [ 35.189993394215946, 32.236528507868456 ], [ 35.189916666666647, 32.236333333333448 ], [ 35.189797031402634, 32.236425676345959 ], [ 35.189993394215946, 32.236528507868456 ] ] ], [ [ [ 35.185583333333398, 32.23675 ], [ 35.185541666666666, 32.236643268585283 ], [ 35.185500000000104, 32.23675 ], [ 35.185583333333398, 32.23675 ] ] ], [ [ [ 35.179583333333312, 32.236666666666792 ], [ 35.179481731414739, 32.236695194244419 ], [ 35.179554805755629, 32.236768268585308 ], [ 35.179583333333312, 32.236666666666792 ] ] ], [ [ [ 35.1795, 32.236416666666742 ], [ 35.179606731414822, 32.236458333333474 ], [ 35.1795, 32.2365 ], [ 35.179583333333312, 32.236666666666792 ], [ 35.179866275787447, 32.23677542495733 ], [ 35.179666666666776, 32.236333333333448 ], [ 35.179583333333312, 32.236333333333448 ], [ 35.179583333333312, 32.23625 ], [ 35.179544765472542, 32.236121901194224 ], [ 35.179333333333375, 32.23575 ], [ 35.179182505925553, 32.235780448913602 ], [ 35.179228682200119, 32.235875 ], [ 35.179141245524079, 32.23605403645837 ], [ 35.179012500127158, 32.23611916669222 ], [ 35.179153848648127, 32.23629709943134 ], [ 35.179472005208424, 32.236361328124985 ], [ 35.1795, 32.236416666666742 ] ] ], [ [ [ 35.187715963999437, 32.237049296697023 ], [ 35.187750000000108, 32.23691666666673 ], [ 35.187450702667263, 32.236950703303137 ], [ 35.187183681488023, 32.237124584198057 ], [ 35.186632630666168, 32.237211431503226 ], [ 35.187512004852238, 32.237269975662286 ], [ 35.187617369334021, 32.237117369969724 ], [ 35.187715963999437, 32.237049296697023 ] ] ], [ [ [ 35.181166666666684, 32.237333333333368 ], [ 35.181033977508548, 32.237267376581883 ], [ 35.180972005208389, 32.237377368927071 ], [ 35.181166666666684, 32.237416666666661 ], [ 35.181166666666684, 32.237333333333368 ] ] ], [ [ [ 35.18530480575572, 32.238351601918566 ], [ 35.185333333333347, 32.23825 ], [ 35.185231731414831, 32.238278527577847 ], [ 35.18530480575572, 32.238351601918566 ] ] ], [ [ [ 35.175304805755729, 32.238934935252018 ], [ 35.175333333333356, 32.238833333333332 ], [ 35.17523173141484, 32.238861860911129 ], [ 35.175304805755729, 32.238934935252018 ] ] ], [ [ [ 35.198368125915522, 32.23938187472038 ], [ 35.19833333333338, 32.23933333333332 ], [ 35.198215207417775, 32.239417997996156 ], [ 35.19832188161223, 32.239618125279776 ], [ 35.198613540649376, 32.23947652753202 ], [ 35.198368125915522, 32.23938187472038 ] ] ], [ [ [ 35.172566942532853, 32.239968006134006 ], [ 35.1725, 32.239833333333479 ], [ 35.172305338541719, 32.239872631073126 ], [ 35.172392874081993, 32.240027994791603 ], [ 35.172566942532853, 32.239968006134006 ] ] ], [ [ [ 35.186332555135152, 32.240083919525262 ], [ 35.186166666666679, 32.24 ], [ 35.186166666666679, 32.24025 ], [ 35.18625, 32.24025 ], [ 35.186332555135152, 32.240083919525262 ] ] ], [ [ [ 35.183054805755717, 32.240934935251971 ], [ 35.183083333333343, 32.240833333333455 ], [ 35.182981731414827, 32.240861860911082 ], [ 35.183054805755717, 32.240934935251971 ] ] ], [ [ [ 35.198104253133238, 32.241016592343726 ], [ 35.197791966756199, 32.240802738507568 ], [ 35.19775, 32.241083333333336 ], [ 35.197916666666686, 32.2411666666668 ], [ 35.197949193318664, 32.241115859349691 ], [ 35.198104253133238, 32.241016592343726 ] ] ], [ [ [ 35.183380986531574, 32.241357912381545 ], [ 35.183416666666687, 32.241083333333336 ], [ 35.183304583231575, 32.241142369588317 ], [ 35.183380986531574, 32.241357912381545 ] ] ], [ [ [ 35.20375, 32.242 ], [ 35.203583333333427, 32.242 ], [ 35.203583333333427, 32.242083333333312 ], [ 35.20375, 32.242083333333312 ], [ 35.20375, 32.242 ] ] ], [ [ [ 35.198138671875029, 32.241527994791738 ], [ 35.198, 32.2415 ], [ 35.19820461273207, 32.241972910563163 ], [ 35.198023353576673, 32.242324764887485 ], [ 35.198083333333273, 32.2425 ], [ 35.19833333333338, 32.2425 ], [ 35.198416666666674, 32.2425 ], [ 35.198416666666674, 32.242333333333363 ], [ 35.198280512491976, 32.242264455477425 ], [ 35.19825, 32.24175 ], [ 35.198138671875029, 32.241527994791738 ] ] ], [ [ [ 35.19925, 32.242583333333471 ], [ 35.19925, 32.2425 ], [ 35.199666666666701, 32.2425 ], [ 35.199666666666701, 32.242416666666657 ], [ 35.199666666666701, 32.24225 ], [ 35.19975, 32.24225 ], [ 35.199682652791296, 32.242116874377018 ], [ 35.19941666666665, 32.242083333333312 ], [ 35.199000000000126, 32.242083333333312 ], [ 35.199000000000126, 32.242 ], [ 35.198666666666782, 32.24175 ], [ 35.198638671875017, 32.242055338541718 ], [ 35.198583333333261, 32.242166666666776 ], [ 35.198805338541604, 32.242277994791607 ], [ 35.198833333333369, 32.242416666666657 ], [ 35.199130363464349, 32.242536301930841 ], [ 35.199166666666713, 32.242583333333471 ], [ 35.19925, 32.242583333333471 ] ] ], [ [ [ 35.1965, 32.243083333333459 ], [ 35.196401524861585, 32.242888671875107 ], [ 35.19577799479174, 32.242944661458409 ], [ 35.19575, 32.243 ], [ 35.195901023864678, 32.243030488332181 ], [ 35.195833333333269, 32.243166666666752 ], [ 35.195944661458327, 32.243222005208281 ], [ 35.196250000000134, 32.24325 ], [ 35.196277994791728, 32.24319466145846 ], [ 35.1965, 32.243083333333459 ] ] ], [ [ [ 35.199833333333345, 32.243166666666752 ], [ 35.199666666666701, 32.243166666666752 ], [ 35.199666666666701, 32.24325 ], [ 35.199833333333345, 32.24325 ], [ 35.199833333333345, 32.243166666666752 ] ] ], [ [ [ 35.200284434000707, 32.243269664287652 ], [ 35.200083333333396, 32.243083333333459 ], [ 35.200083333333396, 32.243166666666752 ], [ 35.200000000000102, 32.243166666666752 ], [ 35.200000000000102, 32.243333333333339 ], [ 35.200083333333396, 32.243333333333339 ], [ 35.200284434000707, 32.243269664287652 ] ] ], [ [ [ 35.195166666666694, 32.243666666666741 ], [ 35.195000000000107, 32.243666666666741 ], [ 35.195000000000107, 32.243833333333328 ], [ 35.195166666666694, 32.243833333333328 ], [ 35.195166666666694, 32.243666666666741 ] ] ], [ [ [ 35.17987102444971, 32.243830566247368 ], [ 35.179666666666776, 32.2435 ], [ 35.179464546839426, 32.24356241321567 ], [ 35.179441088994338, 32.243955989519861 ], [ 35.17987102444971, 32.243830566247368 ] ] ], [ [ [ 35.178721472422296, 32.244184935251894 ], [ 35.17875, 32.244083333333379 ], [ 35.178648398081577, 32.244111860752241 ], [ 35.178721472422296, 32.244184935251894 ] ] ], [ [ [ 35.179288750966407, 32.243967121442267 ], [ 35.178837466557809, 32.243856276512247 ], [ 35.178700703303093, 32.243950703144094 ], [ 35.1786666666668, 32.244 ], [ 35.178812135696489, 32.244021197954794 ], [ 35.179021197636871, 32.244228802045313 ], [ 35.179333333333375, 32.24425 ], [ 35.179288750966407, 32.243967121442267 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Id": 2, "luf": "Urban Green" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.230666666666593, 32.188833333333434 ], [ 35.230638137817436, 32.188731730143218 ], [ 35.230565063476547, 32.188804804484107 ], [ 35.230666666666593, 32.188833333333434 ] ] ], [ [ [ 35.208083333333434, 32.19408333333331 ], [ 35.207833333333383, 32.19408333333331 ], [ 35.207833333333383, 32.194166666666661 ], [ 35.208083333333434, 32.194166666666661 ], [ 35.208083333333434, 32.19408333333331 ] ] ], [ [ [ 35.204000000000121, 32.196333333333314 ], [ 35.203927108764674, 32.196049296061233 ], [ 35.203784037272271, 32.196200703938928 ], [ 35.20375, 32.196333333333314 ], [ 35.204000000000121, 32.196333333333314 ] ] ], [ [ [ 35.203471473693867, 32.196768269856761 ], [ 35.203500000000133, 32.196666666666715 ], [ 35.203398396809916, 32.196695195516043 ], [ 35.203471473693867, 32.196768269856761 ] ] ], [ [ [ 35.213388137817503, 32.196934936523519 ], [ 35.21341666666666, 32.196833333333302 ], [ 35.213315063476614, 32.196861862182629 ], [ 35.213388137817503, 32.196934936523519 ] ] ], [ [ [ 35.230304804484092, 32.196934936523519 ], [ 35.230333333333419, 32.196833333333302 ], [ 35.230231730143373, 32.196861862182629 ], [ 35.230304804484092, 32.196934936523519 ] ] ], [ [ [ 35.207721473693937, 32.19726826985675 ], [ 35.20775, 32.197166666666703 ], [ 35.207648396809873, 32.197195195516031 ], [ 35.207721473693937, 32.19726826985675 ] ] ], [ [ [ 35.215221471150812, 32.197351603190214 ], [ 35.21525, 32.19725 ], [ 35.215148396809923, 32.197278528849324 ], [ 35.215221471150812, 32.197351603190214 ] ] ], [ [ [ 35.204666666666697, 32.197500000000105 ], [ 35.204583333333403, 32.197383733113668 ], [ 35.20450000000011, 32.197500000000105 ], [ 35.204666666666697, 32.197500000000105 ] ] ], [ [ [ 35.204833333333283, 32.197333333333461 ], [ 35.20475, 32.197333333333461 ], [ 35.20475, 32.197500000000105 ], [ 35.204833333333283, 32.197500000000105 ], [ 35.204833333333283, 32.197333333333461 ] ] ], [ [ [ 35.216833333333398, 32.197166666666703 ], [ 35.216873428344798, 32.19740268452972 ], [ 35.217536300659162, 32.197500640869123 ], [ 35.217462844848683, 32.197199467976986 ], [ 35.217070536295523, 32.196908615112363 ], [ 35.21692739359537, 32.197094060262089 ], [ 35.216833333333398, 32.197166666666703 ] ] ], [ [ [ 35.213705988566062, 32.197294011433939 ], [ 35.213583333333418, 32.197000000000116 ], [ 35.213323343912862, 32.197048528035566 ], [ 35.213210678100722, 32.197294011433939 ], [ 35.213044011433908, 32.197442927042687 ], [ 35.213833953857375, 32.197529495239394 ], [ 35.213705988566062, 32.197294011433939 ] ] ], [ [ [ 35.209221473693901, 32.197851603190202 ], [ 35.20925, 32.19775 ], [ 35.209148396809951, 32.197778528849312 ], [ 35.209221473693901, 32.197851603190202 ] ] ], [ [ [ 35.213138137817396, 32.197851603190202 ], [ 35.213166666666723, 32.19775 ], [ 35.213065063476506, 32.197778528849312 ], [ 35.213138137817396, 32.197851603190202 ] ] ], [ [ [ 35.215396418253647, 32.197793579101528 ], [ 35.215333333333433, 32.197666666666692 ], [ 35.215222005208432, 32.197722986857173 ], [ 35.215296915690146, 32.197944661458337 ], [ 35.215396418253647, 32.197793579101528 ] ] ], [ [ [ 35.209089042663663, 32.196797653198189 ], [ 35.208697341918935, 32.19621596272782 ], [ 35.208450703938865, 32.196284037272221 ], [ 35.208369616190623, 32.196500747680773 ], [ 35.20825, 32.196583333333422 ], [ 35.20800358327233, 32.19661823527025 ], [ 35.20791949971516, 32.196863087972076 ], [ 35.208166666666727, 32.19675 ], [ 35.20825, 32.19675 ], [ 35.20825, 32.196666666666715 ], [ 35.208333333333371, 32.196666666666715 ], [ 35.20856540679938, 32.19655595906579 ], [ 35.20875, 32.196916666666596 ], [ 35.208705233256126, 32.196955235799237 ], [ 35.208628100077362, 32.19737809753417 ], [ 35.208216771443801, 32.197561640421554 ], [ 35.208185315450066, 32.197953135172668 ], [ 35.208549758911261, 32.197982421874997 ], [ 35.208788566589419, 32.197705235799276 ], [ 35.208961433410707, 32.197628097534277 ], [ 35.2090385665893, 32.197455235799225 ], [ 35.209162264506119, 32.197348663330104 ], [ 35.208916666666653, 32.196916666666596 ], [ 35.209089042663663, 32.196797653198189 ] ] ], [ [ [ 35.204833333333283, 32.197333333333461 ], [ 35.205107523600248, 32.197290120442801 ], [ 35.204902257283607, 32.196974899292115 ], [ 35.205034037272128, 32.196784037272209 ], [ 35.205284037272179, 32.196611424764114 ], [ 35.205215962727948, 32.196367370605515 ], [ 35.205083333333391, 32.196166666666727 ], [ 35.204916666666804, 32.196166666666727 ], [ 35.204916666666804, 32.196083333333434 ], [ 35.204833333333283, 32.196083333333434 ], [ 35.204833333333283, 32.19600000000014 ], [ 35.204638000488274, 32.196050130208391 ], [ 35.20441157786064, 32.19637806701661 ], [ 35.204166666666708, 32.196416666666664 ], [ 35.204166666666708, 32.196500000000128 ], [ 35.203833333333364, 32.196500000000128 ], [ 35.203833333333364, 32.196583333333422 ], [ 35.203975344340051, 32.19679822794609 ], [ 35.203367370605577, 32.196867370605503 ], [ 35.203333333333376, 32.19708333333341 ], [ 35.203416666666669, 32.19708333333341 ], [ 35.203416666666669, 32.197166666666703 ], [ 35.203333333333376, 32.197166666666703 ], [ 35.203333333333376, 32.19708333333341 ], [ 35.20296643320728, 32.197337203979487 ], [ 35.202946601867666, 32.197531768798854 ], [ 35.203045522054026, 32.197704477946104 ], [ 35.203143338521329, 32.198037811279335 ], [ 35.203582219441728, 32.197819717407299 ], [ 35.203770538330218, 32.197385492960677 ], [ 35.203878855387359, 32.197295522054048 ], [ 35.204015782674162, 32.197130681355816 ], [ 35.204333333333352, 32.19725 ], [ 35.204794586181663, 32.197204640706445 ], [ 35.204833333333283, 32.197333333333461 ] ], [ [ 35.204055338541707, 32.196705963134832 ], [ 35.20425, 32.196666666666715 ], [ 35.204316942850767, 32.196801340738944 ], [ 35.204142873128376, 32.196861328125067 ], [ 35.204055338541707, 32.196705963134832 ] ] ], [ [ [ 35.20247147369389, 32.19835160319019 ], [ 35.2025, 32.198250000000144 ], [ 35.20239839680994, 32.198278528849301 ], [ 35.20247147369389, 32.19835160319019 ] ] ], [ [ [ 35.213068913777761, 32.198971974690835 ], [ 35.213000000000136, 32.198833333333425 ], [ 35.21272200520832, 32.198972737630243 ], [ 35.213068913777761, 32.198971974690835 ] ] ], [ [ [ 35.214287058512355, 32.198629608154306 ], [ 35.21425, 32.198583333333318 ], [ 35.214052235921315, 32.198741699218886 ], [ 35.214212941487631, 32.198870391845787 ], [ 35.214336140950536, 32.199024241129678 ], [ 35.214287058512355, 32.198629608154306 ] ] ], [ [ [ 35.243083333333345, 32.199416666666707 ], [ 35.243024297078534, 32.199304585774769 ], [ 35.242808756510385, 32.199380986531594 ], [ 35.243083333333345, 32.199416666666707 ] ] ], [ [ [ 35.215883285522466, 32.199439376831094 ], [ 35.215916666666715, 32.19925000000012 ], [ 35.215808359782045, 32.199296346028632 ], [ 35.215883285522466, 32.199439376831094 ] ] ], [ [ [ 35.242721471150844, 32.199684936523511 ], [ 35.24275, 32.199583333333464 ], [ 35.242648396809955, 32.199611862182621 ], [ 35.242721471150844, 32.199684936523511 ] ] ], [ [ [ 35.243083333333345, 32.199416666666707 ], [ 35.243128016154003, 32.199700180053696 ], [ 35.243867370605471, 32.199510442098017 ], [ 35.243799296061241, 32.199450703938908 ], [ 35.243083333333345, 32.199416666666707 ] ] ], [ [ [ 35.215900421142692, 32.199868881225655 ], [ 35.215847839355604, 32.199641845703184 ], [ 35.215540512084942, 32.199588933308917 ], [ 35.2155, 32.199833333333402 ], [ 35.21558333333337, 32.199833333333402 ], [ 35.215620641072633, 32.199695724487299 ], [ 35.215900421142692, 32.199868881225655 ] ] ], [ [ [ 35.243029576619449, 32.20008538309736 ], [ 35.242916666666758, 32.199833333333402 ], [ 35.242718231201195, 32.199955602010164 ], [ 35.243029576619449, 32.20008538309736 ] ] ], [ [ [ 35.20908333333341, 32.199750000000108 ], [ 35.209041666666678, 32.199643269856779 ], [ 35.209000000000117, 32.199750000000108 ], [ 35.208931279500405, 32.199786198933907 ], [ 35.209102928161599, 32.200112080891927 ], [ 35.209189987182697, 32.199969009399524 ], [ 35.20908333333341, 32.199750000000108 ] ] ], [ [ [ 35.212833333333379, 32.200166666666746 ], [ 35.212916666666672, 32.200166666666746 ], [ 35.212875000000111, 32.200059936523473 ], [ 35.212833333333379, 32.200166666666746 ] ] ], [ [ [ 35.213900889078843, 32.200135904947899 ], [ 35.213833333333298, 32.2 ], [ 35.21355533854171, 32.20003505452479 ], [ 35.213641581217473, 32.20019466145834 ], [ 35.213900889078843, 32.200135904947899 ] ] ], [ [ [ 35.2155, 32.2 ], [ 35.2155, 32.199916666666695 ], [ 35.215400288899673, 32.199982971191389 ], [ 35.215324620564786, 32.200283279418954 ], [ 35.215736104329551, 32.200161783854185 ], [ 35.215666666666664, 32.2 ], [ 35.2155, 32.2 ] ] ], [ [ [ 35.209133288065686, 32.200356043497777 ], [ 35.209166666666704, 32.200166666666746 ], [ 35.209058359782034, 32.200213012695315 ], [ 35.209133288065686, 32.200356043497777 ] ] ], [ [ [ 35.21465500386563, 32.200337310791042 ], [ 35.214583333333394, 32.200166666666746 ], [ 35.214236862182588, 32.200206069946319 ], [ 35.214182022094747, 32.200450703938884 ], [ 35.21465500386563, 32.200337310791042 ] ] ], [ [ [ 35.212833333333379, 32.200166666666746 ], [ 35.212626586914098, 32.200358225504544 ], [ 35.212768463134751, 32.200538228352912 ], [ 35.212833333333379, 32.20033333333339 ], [ 35.212833333333379, 32.200166666666746 ] ] ], [ [ [ 35.200638140360581, 32.200601603190194 ], [ 35.200666666666677, 32.200500000000147 ], [ 35.200565063476631, 32.200528528849304 ], [ 35.200638140360581, 32.200601603190194 ] ] ], [ [ [ 35.214160059611004, 32.200611841837599 ], [ 35.214083333333406, 32.200416666666683 ], [ 35.213963699340923, 32.200509007771927 ], [ 35.214160059611004, 32.200611841837599 ] ] ], [ [ [ 35.215327148437495, 32.200446243286194 ], [ 35.21525, 32.20025 ], [ 35.214880366007549, 32.20031278991695 ], [ 35.215027994791797, 32.20061963399263 ], [ 35.215327148437495, 32.200446243286194 ] ] ], [ [ [ 35.210294225056998, 32.200644515991314 ], [ 35.210666666666668, 32.200583333333441 ], [ 35.21071222686777, 32.200636215209897 ], [ 35.211250000000121, 32.200583333333441 ], [ 35.211333333333414, 32.200583333333441 ], [ 35.211333333333414, 32.200500000000147 ], [ 35.211453725179069, 32.200403594970737 ], [ 35.211301755269346, 32.200164642334073 ], [ 35.21107400004081, 32.200449050903273 ], [ 35.210666666666668, 32.200500000000147 ], [ 35.210666666666668, 32.200416666666683 ], [ 35.210783597310467, 32.200138270060279 ], [ 35.210583333333375, 32.2 ], [ 35.210583333333375, 32.199916666666695 ], [ 35.210416666666731, 32.199916666666695 ], [ 35.21025, 32.199916666666695 ], [ 35.209989733378222, 32.200030802408946 ], [ 35.209851613362673, 32.199815053304178 ], [ 35.20975, 32.199750000000108 ], [ 35.209627410888686, 32.199699625651135 ], [ 35.209263008117603, 32.199771631876615 ], [ 35.209367004394608, 32.200297927856582 ], [ 35.209583333333399, 32.200416666666683 ], [ 35.209647781372098, 32.200620234171538 ], [ 35.209956743876262, 32.20045674641932 ], [ 35.21016666666668, 32.200416666666683 ], [ 35.210294225056998, 32.200644515991314 ] ], [ [ 35.209550399780255, 32.2 ], [ 35.209666666666692, 32.199916666666695 ], [ 35.209732866922991, 32.200049845377748 ], [ 35.209666666666692, 32.200083333333453 ], [ 35.209550399780255, 32.2 ] ] ], [ [ [ 35.212221473693944, 32.201018269856888 ], [ 35.21225, 32.200916666666672 ], [ 35.21214839680988, 32.200945195515999 ], [ 35.212221473693944, 32.201018269856888 ] ] ], [ [ [ 35.2105, 32.201083333333429 ], [ 35.210471473693929, 32.200981730143212 ], [ 35.210398396809865, 32.201054804484102 ], [ 35.2105, 32.201083333333429 ] ] ], [ [ [ 35.215696924845361, 32.200622980753565 ], [ 35.215460205078216, 32.200470403035467 ], [ 35.215416666666727, 32.200666666666734 ], [ 35.215280258178666, 32.200696924845488 ], [ 35.215219741821272, 32.200803075154624 ], [ 35.215053075154628, 32.200898101806786 ], [ 35.215235122680667, 32.201113591512126 ], [ 35.215466878255256, 32.200907175699854 ], [ 35.2155, 32.200666666666734 ], [ 35.215696924845361, 32.200622980753565 ] ] ], [ [ [ 35.2425, 32.200666666666734 ], [ 35.242166666666719, 32.200666666666734 ], [ 35.242091181437274, 32.200973999023461 ], [ 35.24222654724133, 32.201170064290409 ], [ 35.242599477132217, 32.201030522664325 ], [ 35.242635182698564, 32.200871236165312 ], [ 35.2425, 32.200666666666734 ] ] ], [ [ [ 35.2105, 32.201083333333429 ], [ 35.210528526306177, 32.201184936523475 ], [ 35.210601603190071, 32.201111862182756 ], [ 35.2105, 32.201083333333429 ] ] ], [ [ [ 35.240555201212658, 32.200956553141395 ], [ 35.2405, 32.200833333333321 ], [ 35.240306427001997, 32.200952606201213 ], [ 35.240218231201311, 32.201235773722431 ], [ 35.240473815918051, 32.201217839558979 ], [ 35.240555201212658, 32.200956553141395 ] ] ], [ [ [ 35.213471206665133, 32.201355545044009 ], [ 35.213500000000124, 32.201000000000136 ], [ 35.213441640218207, 32.201024973551512 ], [ 35.213391693115227, 32.20122502644864 ], [ 35.21322502644864, 32.201296346028755 ], [ 35.213471206665133, 32.201355545044009 ] ] ], [ [ [ 35.214916666666738, 32.20125 ], [ 35.214666666666687, 32.20125 ], [ 35.214666666666687, 32.201416666666603 ], [ 35.214916666666738, 32.201416666666603 ], [ 35.214916666666738, 32.20125 ] ] ], [ [ [ 35.242138137817392, 32.201434936523526 ], [ 35.242166666666719, 32.201333333333309 ], [ 35.242065063476673, 32.201361862182637 ], [ 35.242138137817392, 32.201434936523526 ] ] ], [ [ [ 35.238083333333407, 32.201500000000124 ], [ 35.238054804484079, 32.201398396809907 ], [ 35.23798173014336, 32.201471471150796 ], [ 35.238083333333407, 32.201500000000124 ] ] ], [ [ [ 35.242304804484149, 32.20160160319017 ], [ 35.242333333333477, 32.201500000000124 ], [ 35.24223173014326, 32.201528528849281 ], [ 35.242304804484149, 32.20160160319017 ] ] ], [ [ [ 35.238083333333407, 32.201500000000124 ], [ 35.238129679362089, 32.201608306884793 ], [ 35.238272710164381, 32.201533381144202 ], [ 35.238083333333407, 32.201500000000124 ] ] ], [ [ [ 35.210871899922665, 32.201544764200833 ], [ 35.210833333333426, 32.201500000000124 ], [ 35.210788566589372, 32.201538569132538 ], [ 35.210711433410722, 32.201628097534297 ], [ 35.210544766743965, 32.201771687825612 ], [ 35.210821558634507, 32.201955235799232 ], [ 35.211025459289658, 32.201677062988381 ], [ 35.210871899922665, 32.201544764200833 ] ] ], [ [ [ 35.238947341918959, 32.202015619913823 ], [ 35.238833333333446, 32.20175 ], [ 35.238633387247773, 32.201799891153996 ], [ 35.238759755452577, 32.202116612752263 ], [ 35.238947341918959, 32.202015619913823 ] ] ], [ [ [ 35.213411310831759, 32.201837605794253 ], [ 35.213286300659206, 32.201630366007521 ], [ 35.213166666666723, 32.201333333333309 ], [ 35.213119633992619, 32.201369633992499 ], [ 35.212963699340946, 32.201630366007521 ], [ 35.212797032674189, 32.201759007771955 ], [ 35.2128843180339, 32.202005096435528 ], [ 35.213358988444099, 32.20219169616712 ], [ 35.213411310831759, 32.201837605794253 ] ], [ [ 35.213065063476506, 32.201695195516038 ], [ 35.213166666666723, 32.201666666666711 ], [ 35.213138137817396, 32.201768269856757 ], [ 35.213065063476506, 32.201695195516038 ] ] ], [ [ [ 35.198638140360629, 32.202268269856916 ], [ 35.198666666666782, 32.202166666666699 ], [ 35.198565063476565, 32.202195195516026 ], [ 35.198638140360629, 32.202268269856916 ] ] ], [ [ [ 35.224000000000103, 32.20225 ], [ 35.224028528849203, 32.202351603190209 ], [ 35.224101603190093, 32.20227852884932 ], [ 35.224000000000103, 32.20225 ] ] ], [ [ [ 35.240649144490703, 32.202370722452827 ], [ 35.240525822957466, 32.201910278320383 ], [ 35.240583333333461, 32.20175 ], [ 35.239877344767365, 32.201810262044262 ], [ 35.24012286376967, 32.202127609253012 ], [ 35.240287089030062, 32.202117823282947 ], [ 35.240649144490703, 32.202370722452827 ] ] ], [ [ [ 35.209054807027314, 32.202518269856796 ], [ 35.20908333333341, 32.20241666666675 ], [ 35.208981730143364, 32.202445195516077 ], [ 35.209054807027314, 32.202518269856796 ] ] ], [ [ [ 35.224452123006301, 32.202712178548211 ], [ 35.224333333333448, 32.20241666666675 ], [ 35.224237762451253, 32.202487762451312 ], [ 35.22413111877438, 32.202631118774377 ], [ 35.2238811187745, 32.20273046366367 ], [ 35.224452123006301, 32.202712178548211 ] ] ], [ [ [ 35.224583333333385, 32.2025 ], [ 35.2245, 32.2025 ], [ 35.2245, 32.202583333333394 ], [ 35.224666666666678, 32.202833333333444 ], [ 35.224559936523519, 32.202875 ], [ 35.224666666666678, 32.202916666666738 ], [ 35.22475, 32.202916666666738 ], [ 35.224916666666729, 32.202916666666738 ], [ 35.224916666666729, 32.202833333333444 ], [ 35.225023396809888, 32.202791666666712 ], [ 35.224916666666729, 32.202750000000151 ], [ 35.224778666178395, 32.202550130208294 ], [ 35.224583333333385, 32.2025 ] ] ], [ [ [ 35.21077629597994, 32.203032821655313 ], [ 35.210833333333426, 32.202833333333444 ], [ 35.210629608154306, 32.2028915812175 ], [ 35.21077629597994, 32.203032821655313 ] ] ], [ [ [ 35.194416666666655, 32.203166666666675 ], [ 35.194375, 32.203059936523516 ], [ 35.194333333333361, 32.203166666666675 ], [ 35.194416666666655, 32.203166666666675 ] ] ], [ [ [ 35.218804804484137, 32.203268269856892 ], [ 35.218833333333293, 32.203166666666675 ], [ 35.218731730143247, 32.203195192972942 ], [ 35.218804804484137, 32.203268269856892 ] ] ], [ [ [ 35.209121386210199, 32.203272476196332 ], [ 35.209166666666704, 32.203166666666675 ], [ 35.208975026448513, 32.203200444539391 ], [ 35.209121386210199, 32.203272476196332 ] ] ], [ [ [ 35.211546274820989, 32.202796274821083 ], [ 35.211583333333294, 32.2025 ], [ 35.211247116088884, 32.202558512369933 ], [ 35.211297393798873, 32.20296270243341 ], [ 35.210879608154414, 32.203053090413334 ], [ 35.211004735311008, 32.203463653564484 ], [ 35.211295550028581, 32.203634600321493 ], [ 35.211400583902957, 32.202912943522279 ], [ 35.211546274820989, 32.202796274821083 ] ] ], [ [ [ 35.209682228088354, 32.203847424825142 ], [ 35.20975, 32.203583333333313 ], [ 35.209382629394611, 32.203625111897736 ], [ 35.209682228088354, 32.203847424825142 ] ] ], [ [ [ 35.197416666666697, 32.203916666666714 ], [ 35.197333333333404, 32.203916666666714 ], [ 35.197333333333404, 32.204 ], [ 35.197416666666697, 32.204 ], [ 35.197416666666697, 32.203916666666714 ] ] ], [ [ [ 35.208166666666727, 32.204083333333472 ], [ 35.208255098978725, 32.204202214558904 ], [ 35.208610992431716, 32.204081357320206 ], [ 35.208644874572713, 32.203884552002023 ], [ 35.208381118774355, 32.204047785441219 ], [ 35.208166666666727, 32.204083333333472 ] ] ], [ [ [ 35.208916666666653, 32.2045 ], [ 35.208916666666653, 32.204416666666702 ], [ 35.209166666666704, 32.204416666666702 ], [ 35.209166666666704, 32.204333333333409 ], [ 35.20925, 32.204333333333409 ], [ 35.20914238993339, 32.204212895711407 ], [ 35.208877344767302, 32.204091247558665 ], [ 35.208960695902533, 32.203859575907416 ], [ 35.209205988566055, 32.203640408833905 ], [ 35.209067461649511, 32.203462354024282 ], [ 35.208632537841822, 32.203436431884825 ], [ 35.208802024841361, 32.204069246928043 ], [ 35.208455988566186, 32.20428932189941 ], [ 35.208416666666665, 32.204333333333409 ], [ 35.208715962727808, 32.20436737060561 ], [ 35.208916666666653, 32.2045 ] ] ], [ [ [ 35.208416666666665, 32.2045 ], [ 35.208333333333371, 32.2045 ], [ 35.208333333333371, 32.20458333333346 ], [ 35.208416666666665, 32.20458333333346 ], [ 35.208416666666665, 32.2045 ] ] ], [ [ [ 35.192166666666651, 32.20525 ], [ 35.192, 32.20525 ], [ 35.192, 32.205500000000143 ], [ 35.192166666666651, 32.205500000000143 ], [ 35.192166666666651, 32.205333333333328 ], [ 35.192273396809924, 32.205291666666596 ], [ 35.192166666666651, 32.20525 ] ] ], [ [ [ 35.21025, 32.205500000000143 ], [ 35.210143269856871, 32.205541666666704 ], [ 35.21025, 32.205583333333436 ], [ 35.21025, 32.205500000000143 ] ] ], [ [ [ 35.245916666666631, 32.206500000000119 ], [ 35.245833333333337, 32.206500000000119 ], [ 35.245833333333337, 32.206583333333413 ], [ 35.245916666666631, 32.206583333333413 ], [ 35.245916666666631, 32.206500000000119 ] ] ], [ [ [ 35.190000000000111, 32.207750000000146 ], [ 35.190083333333405, 32.207750000000146 ], [ 35.190041666666673, 32.207643269856817 ], [ 35.190000000000111, 32.207750000000146 ] ] ], [ [ [ 35.191068916320717, 32.208055308024143 ], [ 35.191, 32.207916666666733 ], [ 35.190722005208443, 32.208056070963551 ], [ 35.191068916320717, 32.208055308024143 ] ] ], [ [ [ 35.192788052876892, 32.208189142863034 ], [ 35.192833333333397, 32.20808333333332 ], [ 35.192641693115206, 32.208117111206093 ], [ 35.192788052876892, 32.208189142863034 ] ] ], [ [ [ 35.193638671875021, 32.208305338541663 ], [ 35.193666666666786, 32.20808333333332 ], [ 35.193359298706184, 32.208111513773702 ], [ 35.19323729705809, 32.208361328125136 ], [ 35.193638671875021, 32.208305338541663 ] ] ], [ [ [ 35.19266666666681, 32.206000000000131 ], [ 35.19261796824145, 32.206184583028289 ], [ 35.192118125915499, 32.206284792582323 ], [ 35.192, 32.206333333333475 ], [ 35.191916666666771, 32.206333333333475 ], [ 35.191916666666771, 32.20625 ], [ 35.19197122192395, 32.20603741709391 ], [ 35.19266666666681, 32.206000000000131 ], [ 35.192622604370229, 32.205946955363004 ], [ 35.191717249552482, 32.205854672749979 ], [ 35.191666666666663, 32.20625 ], [ 35.191584182739234, 32.206291727701853 ], [ 35.19183333333325, 32.206416666666598 ], [ 35.192, 32.206500000000119 ], [ 35.192, 32.206583333333413 ], [ 35.192083333333358, 32.206583333333413 ], [ 35.192118125915499, 32.206451459248967 ], [ 35.192542734781966, 32.206366333007963 ], [ 35.192701459248951, 32.206415334065753 ], [ 35.192583333333346, 32.206500000000119 ], [ 35.19239880116794, 32.206537251790394 ], [ 35.192333333333409, 32.206666666666706 ], [ 35.192250000000115, 32.206666666666706 ], [ 35.192138671875114, 32.206888671875049 ], [ 35.19183333333325, 32.206916666666757 ], [ 35.19183333333325, 32.207 ], [ 35.191666666666663, 32.207 ], [ 35.191666666666663, 32.206916666666757 ], [ 35.19183333333325, 32.206916666666757 ], [ 35.19183333333325, 32.206583333333413 ], [ 35.191666666666663, 32.206583333333413 ], [ 35.191583333333369, 32.206583333333413 ], [ 35.191583333333369, 32.207 ], [ 35.191583333333369, 32.207416666666745 ], [ 35.191583333333369, 32.2075 ], [ 35.191635353088429, 32.20762385050466 ], [ 35.191483505249096, 32.208113723754877 ], [ 35.191715962727926, 32.208200703938815 ], [ 35.191916666666771, 32.208333333333428 ], [ 35.192, 32.208333333333428 ], [ 35.192, 32.208416666666722 ], [ 35.192166666666651, 32.208416666666722 ], [ 35.192166666666651, 32.2085 ], [ 35.192416666666702, 32.2085 ], [ 35.192416666666702, 32.208333333333428 ], [ 35.192619455973329, 32.208158620198617 ], [ 35.1925, 32.20783333333344 ], [ 35.19261963653571, 32.207740989685135 ], [ 35.192420700073228, 32.207636812845919 ], [ 35.192333333333409, 32.207750000000146 ], [ 35.191818878173876, 32.2077194875082 ], [ 35.191750000000127, 32.207583333333332 ], [ 35.191750000000127, 32.2075 ], [ 35.191666666666663, 32.2075 ], [ 35.191666666666663, 32.207416666666745 ], [ 35.191871236165412, 32.207281481425071 ], [ 35.192069320678684, 32.207325887044362 ], [ 35.192250000000115, 32.20725 ], [ 35.192333333333409, 32.20725 ], [ 35.192333333333409, 32.207416666666745 ], [ 35.192938886006687, 32.207492324829161 ], [ 35.193070635477739, 32.207149569193575 ], [ 35.193030120849642, 32.206823842366532 ], [ 35.193156982421897, 32.206151120503762 ], [ 35.192962941487679, 32.206037058512436 ], [ 35.19266666666681, 32.206000000000131 ] ], [ [ 35.192041666666796, 32.206976603190242 ], [ 35.192083333333358, 32.207083333333401 ], [ 35.192, 32.207083333333401 ], [ 35.192041666666796, 32.206976603190242 ] ] ], [ [ [ 35.18925, 32.208583333333308 ], [ 35.189175828298062, 32.208467473348094 ], [ 35.189056950886993, 32.208596427917598 ], [ 35.189166666666779, 32.208666666666602 ], [ 35.18925, 32.208666666666602 ], [ 35.18925, 32.208583333333308 ] ] ], [ [ [ 35.190000000000111, 32.207750000000146 ], [ 35.189815467834592, 32.207787251790421 ], [ 35.189722005208296, 32.207972005208319 ], [ 35.189611328125011, 32.208027994791792 ], [ 35.189555338541709, 32.208305338541663 ], [ 35.189500000000123, 32.208416666666722 ], [ 35.189583333333246, 32.208416666666722 ], [ 35.189583333333246, 32.208583333333308 ], [ 35.189500000000123, 32.208583333333308 ], [ 35.189382335662856, 32.208674156189034 ], [ 35.189666666666767, 32.208833333333416 ], [ 35.18972880172737, 32.208708333333334 ], [ 35.189666666666767, 32.208583333333308 ], [ 35.18975, 32.208583333333308 ], [ 35.18975, 32.2085 ], [ 35.189963698069221, 32.208213696797714 ], [ 35.190043735504219, 32.208018140157151 ], [ 35.190405543009433, 32.207870058695562 ], [ 35.19025, 32.207750000000146 ], [ 35.19025, 32.20783333333344 ], [ 35.190000000000111, 32.20783333333344 ], [ 35.190000000000111, 32.207750000000146 ] ] ], [ [ [ 35.189666666666767, 32.208833333333416 ], [ 35.189695194244393, 32.208934936523463 ], [ 35.189768268585283, 32.208861859639512 ], [ 35.189666666666767, 32.208833333333416 ] ] ], [ [ [ 35.18975, 32.209083333333467 ], [ 35.189721472422207, 32.20898173014325 ], [ 35.189648398081545, 32.209054807027201 ], [ 35.18975, 32.209083333333467 ] ] ], [ [ [ 35.18975, 32.209083333333467 ], [ 35.189778527577687, 32.209184936523513 ], [ 35.189851601918576, 32.20911185963962 ], [ 35.18975, 32.209083333333467 ] ] ], [ [ [ 35.19045503362031, 32.209839182535916 ], [ 35.190583333333393, 32.209583333333455 ], [ 35.190388671875098, 32.209622632344633 ], [ 35.19045503362031, 32.209839182535916 ] ] ], [ [ [ 35.233083333333411, 32.210333333333324 ], [ 35.233083333333411, 32.21025 ], [ 35.233000000000118, 32.21025 ], [ 35.233000000000118, 32.210333333333324 ], [ 35.233083333333411, 32.210333333333324 ] ] ], [ [ [ 35.230250000000126, 32.210416666666617 ], [ 35.230250000000126, 32.210500000000138 ], [ 35.230333333333419, 32.210500000000138 ], [ 35.230333333333419, 32.210416666666617 ], [ 35.230250000000126, 32.210416666666617 ] ] ], [ [ [ 35.191522679646823, 32.210148142496791 ], [ 35.190984273274751, 32.209963857014998 ], [ 35.19125, 32.210333333333324 ], [ 35.191137916565026, 32.210392369588362 ], [ 35.191233309427844, 32.210523234049447 ], [ 35.191333333333262, 32.210333333333324 ], [ 35.191374165852892, 32.210290832519604 ], [ 35.191522679646823, 32.210148142496791 ] ] ], [ [ [ 35.187666666666644, 32.210083333333444 ], [ 35.18758333333335, 32.209967066447007 ], [ 35.1875, 32.210083333333444 ], [ 35.187389297485311, 32.210185905456683 ], [ 35.187209921518956, 32.210524892171293 ], [ 35.187747923533095, 32.210315165201791 ], [ 35.187666666666644, 32.210083333333444 ] ] ], [ [ [ 35.229106730143371, 32.2105416666667 ], [ 35.229, 32.210500000000138 ], [ 35.229, 32.210583333333432 ], [ 35.229106730143371, 32.2105416666667 ] ] ], [ [ [ 35.23275, 32.210500000000138 ], [ 35.23275, 32.210583333333432 ], [ 35.232833333333474, 32.210583333333432 ], [ 35.232833333333474, 32.210500000000138 ], [ 35.23275, 32.210500000000138 ] ] ], [ [ [ 35.233083333333411, 32.210333333333324 ], [ 35.233083333333411, 32.210583333333432 ], [ 35.233166666666705, 32.210583333333432 ], [ 35.233166666666705, 32.210333333333324 ], [ 35.233083333333411, 32.210333333333324 ] ] ], [ [ [ 35.18819466145834, 32.210472005208374 ], [ 35.188166666666802, 32.210416666666617 ], [ 35.188055338541744, 32.210472986857098 ], [ 35.188115603129063, 32.210651321411149 ], [ 35.188332364400367, 32.2105416666667 ], [ 35.18819466145834, 32.210472005208374 ] ] ], [ [ [ 35.232833333333474, 32.210583333333432 ], [ 35.232833333333474, 32.210666666666725 ], [ 35.232940063476633, 32.210625 ], [ 35.232833333333474, 32.210583333333432 ] ] ], [ [ [ 35.191371386210221, 32.210939142862969 ], [ 35.191416666666782, 32.210833333333312 ], [ 35.191225026448592, 32.210867111206085 ], [ 35.191371386210221, 32.210939142862969 ] ] ], [ [ [ 35.188849900563639, 32.210945294698149 ], [ 35.188946050008155, 32.210516398111963 ], [ 35.188753074646058, 32.21055965932203 ], [ 35.188617369333997, 32.210465962727937 ], [ 35.188583333333327, 32.210416666666617 ], [ 35.188479647318502, 32.210488255818689 ], [ 35.188417868296426, 32.210763837178547 ], [ 35.188849900563639, 32.210945294698149 ] ] ], [ [ [ 35.187054805755736, 32.211101603190116 ], [ 35.187083333333362, 32.211000000000126 ], [ 35.186981731414846, 32.211028526306222 ], [ 35.187054805755736, 32.211101603190116 ] ] ], [ [ [ 35.190199947357257, 32.210800051371223 ], [ 35.190166666666698, 32.21075 ], [ 35.190050052642846, 32.210827540079777 ], [ 35.190130968729648, 32.211199338277197 ], [ 35.190449947357195, 32.211279708862378 ], [ 35.190300052642954, 32.210866615295402 ], [ 35.190199947357257, 32.210800051371223 ] ] ], [ [ [ 35.189870390574185, 32.211129608154351 ], [ 35.189833333333354, 32.21108333333342 ], [ 35.189629609425936, 32.211246472676692 ], [ 35.189814018249592, 32.211370391845833 ], [ 35.190034221649285, 32.211260803222672 ], [ 35.189870390574185, 32.211129608154351 ] ] ], [ [ [ 35.192605926513806, 32.211379765828497 ], [ 35.1925, 32.211166666666713 ], [ 35.192359179178879, 32.211195096333881 ], [ 35.192237297058114, 32.211444661458358 ], [ 35.192605926513806, 32.211379765828497 ] ] ], [ [ [ 35.186567234039387, 32.211492617289309 ], [ 35.1865, 32.21108333333342 ], [ 35.186297031402603, 32.2112399978638 ], [ 35.186567234039387, 32.211492617289309 ] ] ], [ [ [ 35.191788566589366, 32.211561642964796 ], [ 35.191368034362881, 32.211378100077411 ], [ 35.191140319824285, 32.2115991338095 ], [ 35.191378100077372, 32.211705233256055 ], [ 35.191416666666782, 32.21175 ], [ 35.191583333333369, 32.21175 ], [ 35.191621899922779, 32.211705233256055 ], [ 35.191788566589366, 32.211561642964796 ] ] ], [ [ [ 35.18738813908891, 32.211768269856748 ], [ 35.187416666666763, 32.211666666666702 ], [ 35.187315064748191, 32.211695192972797 ], [ 35.18738813908891, 32.211768269856748 ] ] ], [ [ [ 35.187273462931273, 32.21179147847505 ], [ 35.187206818898574, 32.211647547404084 ], [ 35.187166666666656, 32.21175 ], [ 35.187166666666656, 32.211833333333459 ], [ 35.187273462931273, 32.21179147847505 ] ] ], [ [ [ 35.187273398081459, 32.211958333333314 ], [ 35.187166666666656, 32.211916666666752 ], [ 35.187166666666656, 32.212 ], [ 35.187273398081459, 32.211958333333314 ] ] ], [ [ [ 35.18725000000012, 32.21225 ], [ 35.187351601918465, 32.21222147369383 ], [ 35.187278527577746, 32.212148396809937 ], [ 35.18725000000012, 32.21225 ] ] ], [ [ [ 35.188416666666683, 32.212416666666741 ], [ 35.188416666666683, 32.212333333333447 ], [ 35.1885, 32.212333333333447 ], [ 35.188610363006717, 32.21227283986417 ], [ 35.188416666666683, 32.21216666666669 ], [ 35.188416666666683, 32.212083333333339 ], [ 35.188333333333389, 32.212083333333339 ], [ 35.188333333333389, 32.212 ], [ 35.18825, 32.212 ], [ 35.18825, 32.211916666666752 ], [ 35.188360677083438, 32.21186067708328 ], [ 35.188416666666683, 32.21175 ], [ 35.188489270528294, 32.211655937194962 ], [ 35.188702968597511, 32.211490989685103 ], [ 35.18854516092938, 32.211368179321425 ], [ 35.18825, 32.211416666666764 ], [ 35.188168963114435, 32.21129929606127 ], [ 35.187738093058385, 32.211396547953314 ], [ 35.187666666666644, 32.2115 ], [ 35.187459166208953, 32.211567334493111 ], [ 35.18762698109947, 32.211796340942442 ], [ 35.188033677419071, 32.211993649800604 ], [ 35.18762583287571, 32.212261042277078 ], [ 35.188050228118925, 32.212621190388973 ], [ 35.188207500457906, 32.212457499186314 ], [ 35.188416666666683, 32.212416666666741 ] ] ], [ [ [ 35.201333333333423, 32.214166666666756 ], [ 35.20125000000013, 32.214 ], [ 35.201065114339201, 32.214026941935231 ], [ 35.201187863667769, 32.214145469665652 ], [ 35.201333333333423, 32.214166666666756 ] ] ], [ [ [ 35.201106730143351, 32.214208333333318 ], [ 35.201, 32.214166666666756 ], [ 35.201, 32.21425 ], [ 35.201106730143351, 32.214208333333318 ] ] ], [ [ [ 35.187304805755616, 32.215018269856841 ], [ 35.187333333333413, 32.214916666666625 ], [ 35.187231731414897, 32.214945192972948 ], [ 35.187304805755616, 32.215018269856841 ] ] ], [ [ [ 35.2088881403605, 32.215101603190192 ], [ 35.208916666666653, 32.215000000000146 ], [ 35.208815063476607, 32.215028526306241 ], [ 35.2088881403605, 32.215101603190192 ] ] ], [ [ [ 35.187793332417755, 32.215185951233025 ], [ 35.187833333333401, 32.215000000000146 ], [ 35.187637161254997, 32.215107528686531 ], [ 35.187793332417755, 32.215185951233025 ] ] ], [ [ [ 35.187346805572588, 32.215281804402707 ], [ 35.1875, 32.215083333333439 ], [ 35.187213698069229, 32.215131968180344 ], [ 35.187346805572588, 32.215281804402707 ] ] ], [ [ [ 35.18541666666664, 32.21675 ], [ 35.185375, 32.216643269856831 ], [ 35.185333333333347, 32.21675 ], [ 35.18541666666664, 32.21675 ] ] ], [ [ [ 35.221666666666749, 32.2165 ], [ 35.2215, 32.2165 ], [ 35.2215, 32.216583333333347 ], [ 35.221333333333405, 32.216583333333347 ], [ 35.221333333333405, 32.216666666666697 ], [ 35.221333333333405, 32.21675 ], [ 35.221629155476876, 32.216798594156955 ], [ 35.221666666666749, 32.21675 ], [ 35.221666666666749, 32.2165 ] ] ], [ [ [ 35.18541666666664, 32.21675 ], [ 35.18541666666664, 32.216833333333454 ], [ 35.185500000000104, 32.216833333333454 ], [ 35.185500000000104, 32.21675 ], [ 35.18541666666664, 32.21675 ] ] ], [ [ [ 35.18602799479163, 32.216777013142973 ], [ 35.185965098063093, 32.21668450164799 ], [ 35.185833333333335, 32.21675 ], [ 35.185833333333335, 32.216833333333454 ], [ 35.185916666666799, 32.216833333333454 ], [ 35.18602799479163, 32.216777013142973 ] ] ], [ [ [ 35.216331756591842, 32.216865623474121 ], [ 35.216250000000116, 32.216666666666697 ], [ 35.216048543294391, 32.216719815572219 ], [ 35.216331756591842, 32.216865623474121 ] ] ], [ [ [ 35.216967473348063, 32.216634140014719 ], [ 35.217, 32.2165 ], [ 35.216661554972404, 32.216536595662376 ], [ 35.216550806681369, 32.216930674235016 ], [ 35.21680080668142, 32.216800806681306 ], [ 35.216865859985319, 32.216699193318789 ], [ 35.216967473348063, 32.216634140014719 ] ] ], [ [ [ 35.23, 32.217666666666616 ], [ 35.229916666666725, 32.217666666666616 ], [ 35.229916666666725, 32.217750000000137 ], [ 35.23, 32.217750000000137 ], [ 35.23, 32.217666666666616 ] ] ], [ [ [ 35.196621386210097, 32.222772476196269 ], [ 35.196666666666658, 32.222666666666782 ], [ 35.196475026448638, 32.222700444539385 ], [ 35.196621386210097, 32.222772476196269 ] ] ], [ [ [ 35.192833333333397, 32.223416666666708 ], [ 35.192833333333397, 32.22325 ], [ 35.192750000000103, 32.22325 ], [ 35.192750000000103, 32.223416666666708 ], [ 35.192833333333397, 32.223416666666708 ] ] ], [ [ [ 35.208, 32.22425 ], [ 35.207916666666677, 32.22425 ], [ 35.207916666666677, 32.224500000000148 ], [ 35.208, 32.224500000000148 ], [ 35.208, 32.22425 ] ] ], [ [ [ 35.196750000000122, 32.22475 ], [ 35.196648396809906, 32.224778527577826 ], [ 35.196721473693856, 32.224851601918544 ], [ 35.196750000000122, 32.22475 ] ] ], [ [ [ 35.205750000000137, 32.225 ], [ 35.205682210286568, 32.224885650634747 ], [ 35.205385650634696, 32.224964089711477 ], [ 35.205473017374686, 32.225205724080524 ], [ 35.205666666666673, 32.22525 ], [ 35.205600466410374, 32.225116822560608 ], [ 35.205722005208429, 32.225055338541665 ], [ 35.205750000000137, 32.225 ] ] ], [ [ [ 35.206583333333356, 32.22525 ], [ 35.206250000000125, 32.22525 ], [ 35.206250000000125, 32.22533333333331 ], [ 35.206314768473362, 32.225446927388532 ], [ 35.206679143269866, 32.225304627736477 ], [ 35.206583333333356, 32.22525 ] ] ], [ [ [ 35.20745372517905, 32.225443770090806 ], [ 35.20725351206471, 32.225020425160665 ], [ 35.206750000000113, 32.22508333333343 ], [ 35.207093101501471, 32.225537057240899 ], [ 35.20745372517905, 32.225443770090806 ] ] ], [ [ [ 35.198083333333273, 32.225416666666774 ], [ 35.198119636535694, 32.225463698069177 ], [ 35.198416666666674, 32.225583333333361 ], [ 35.198482866923143, 32.225549844106183 ], [ 35.198416666666674, 32.225416666666774 ], [ 35.198083333333273, 32.225416666666774 ] ] ], [ [ [ 35.206083333333368, 32.22575 ], [ 35.206049608866408, 32.225482561747299 ], [ 35.205857360839843, 32.225388671875066 ], [ 35.205861328125025, 32.225638671875117 ], [ 35.206083333333368, 32.22575 ] ] ], [ [ [ 35.194435091654384, 32.22694282277439 ], [ 35.194500000000119, 32.226833333333445 ], [ 35.194135650634678, 32.226870713551989 ], [ 35.194435091654384, 32.22694282277439 ] ] ], [ [ [ 35.196666666666658, 32.230833333333464 ], [ 35.1965, 32.230833333333464 ], [ 35.1965, 32.230916666666758 ], [ 35.196666666666658, 32.230916666666758 ], [ 35.196666666666658, 32.230833333333464 ] ] ], [ [ [ 35.20325, 32.23283333333336 ], [ 35.203333333333376, 32.23283333333336 ], [ 35.203333333333376, 32.23275 ], [ 35.20325, 32.23275 ], [ 35.20325, 32.23283333333336 ] ] ], [ [ [ 35.194054807027157, 32.233184935251984 ], [ 35.194083333333253, 32.233083333333468 ], [ 35.193981730143207, 32.233111860911094 ], [ 35.194054807027157, 32.233184935251984 ] ] ], [ [ [ 35.19941666666665, 32.233916666666801 ], [ 35.199388140360497, 32.233815064748114 ], [ 35.199315063476604, 32.233888139089004 ], [ 35.19941666666665, 32.233916666666801 ] ] ], [ [ [ 35.188166666666802, 32.234166666666738 ], [ 35.188195194244429, 32.234268268585254 ], [ 35.188268268585318, 32.234195194244535 ], [ 35.188166666666802, 32.234166666666738 ] ] ], [ [ [ 35.188138139089006, 32.234434935252011 ], [ 35.188166666666802, 32.234333333333325 ], [ 35.188065064748116, 32.234361860911122 ], [ 35.188138139089006, 32.234434935252011 ] ] ], [ [ [ 35.190388139089009, 32.234684935251948 ], [ 35.190416666666806, 32.234583333333376 ], [ 35.19031506474812, 32.234611860911059 ], [ 35.190388139089009, 32.234684935251948 ] ] ], [ [ [ 35.188166666666802, 32.234916666666777 ], [ 35.188, 32.234916666666777 ], [ 35.188, 32.23525 ], [ 35.188166666666802, 32.23525 ], [ 35.188166666666802, 32.234916666666777 ] ] ], [ [ [ 35.188663299560517, 32.235182353973414 ], [ 35.188583333333327, 32.235 ], [ 35.188410027821874, 32.235042022705215 ], [ 35.188342440287329, 32.235282526016363 ], [ 35.188663299560517, 32.235182353973414 ] ] ], [ [ [ 35.18425, 32.235666666666646 ], [ 35.18433333333337, 32.235666666666646 ], [ 35.184291666666809, 32.235559935252013 ], [ 35.18425, 32.235666666666646 ] ] ], [ [ [ 35.18425, 32.235666666666646 ], [ 35.184056303660213, 32.235708333333378 ], [ 35.18425, 32.23575 ], [ 35.18425, 32.235666666666646 ] ] ], [ [ [ 35.186583333333374, 32.23525 ], [ 35.186450702667287, 32.235284036636415 ], [ 35.186250848134364, 32.235414178848259 ], [ 35.186333333333323, 32.23575 ], [ 35.186209166208869, 32.235869297663442 ], [ 35.186514405568573, 32.23603554916383 ], [ 35.186416666666787, 32.23575 ], [ 35.186450702667287, 32.23570070330311 ], [ 35.186658752441474, 32.235557057698713 ], [ 35.186583333333374, 32.23525 ] ] ], [ [ [ 35.186680884043483, 32.236362914403287 ], [ 35.186583333333374, 32.236166666666804 ], [ 35.186472005208373, 32.236222985585584 ], [ 35.186546915690087, 32.236444661458449 ], [ 35.186680884043483, 32.236362914403287 ] ] ], [ [ [ 35.1795, 32.236416666666742 ], [ 35.1795, 32.2365 ], [ 35.179606731414822, 32.236458333333474 ], [ 35.1795, 32.236416666666742 ] ] ], [ [ [ 35.186221472422346, 32.236684935252015 ], [ 35.18625, 32.236583333333328 ], [ 35.186148398081457, 32.236611860911125 ], [ 35.186221472422346, 32.236684935252015 ] ] ], [ [ [ 35.184638139088918, 32.237101601918539 ], [ 35.184666666666772, 32.237 ], [ 35.184565064748256, 32.23702852757782 ], [ 35.184638139088918, 32.237101601918539 ] ] ], [ [ [ 35.184281771342057, 32.236801562627136 ], [ 35.18425, 32.23675 ], [ 35.18402357101445, 32.236782964706435 ], [ 35.184193555196202, 32.237281770706318 ], [ 35.184531771341994, 32.237203529993735 ], [ 35.184458816528434, 32.236910651524909 ], [ 35.184281771342057, 32.236801562627136 ] ] ], [ [ [ 35.18225, 32.237916666666649 ], [ 35.182277375539115, 32.238104530970361 ], [ 35.182601439158077, 32.238056283950812 ], [ 35.182478801727427, 32.237937864303717 ], [ 35.18225, 32.237916666666649 ] ] ], [ [ [ 35.183347550710039, 32.239029581069985 ], [ 35.1832500000001, 32.238833333333332 ], [ 35.183138671875099, 32.238889652252283 ], [ 35.183213582356814, 32.239111328124977 ], [ 35.183347550710039, 32.239029581069985 ] ] ], [ [ [ 35.183388139089061, 32.239268268585249 ], [ 35.183416666666687, 32.239166666666733 ], [ 35.183315064748172, 32.23919519424453 ], [ 35.183388139089061, 32.239268268585249 ] ] ], [ [ [ 35.171083333333456, 32.239666666666665 ], [ 35.171, 32.239666666666665 ], [ 35.171, 32.23975 ], [ 35.171083333333456, 32.23975 ], [ 35.171083333333456, 32.239666666666665 ] ] ], [ [ [ 35.170544768889727, 32.239949925740689 ], [ 35.17075, 32.239583333333371 ], [ 35.170629945596147, 32.239409451802715 ], [ 35.17033333333336, 32.23933333333332 ], [ 35.17033333333336, 32.2395 ], [ 35.17025, 32.2395 ], [ 35.170138995488514, 32.239556155522791 ], [ 35.17, 32.239833333333479 ], [ 35.17, 32.239916666666772 ], [ 35.169916666666666, 32.239916666666772 ], [ 35.169916666666666, 32.24 ], [ 35.169916666666666, 32.240083333333359 ], [ 35.17025, 32.240083333333359 ], [ 35.17025, 32.24 ], [ 35.170544768889727, 32.239949925740689 ] ] ], [ [ [ 35.186166666666679, 32.24 ], [ 35.185916666666799, 32.24 ], [ 35.185805989583457, 32.239944010416593 ], [ 35.18575, 32.239833333333479 ], [ 35.18553966776534, 32.239781671524042 ], [ 35.18541666666664, 32.239833333333479 ], [ 35.185212942759222, 32.239891581217478 ], [ 35.18532170232146, 32.24011858876554 ], [ 35.18541666666664, 32.24 ], [ 35.185583333333398, 32.24 ], [ 35.185583333333398, 32.240166666666653 ], [ 35.185666666666691, 32.240166666666653 ], [ 35.185708333333253, 32.24005993525202 ], [ 35.18575, 32.240166666666653 ], [ 35.18575, 32.24025 ], [ 35.186166666666679, 32.24025 ], [ 35.186166666666679, 32.24 ] ] ], [ [ [ 35.188, 32.24025 ], [ 35.187971472422362, 32.240148398081431 ], [ 35.187898398081472, 32.24022147242232 ], [ 35.188, 32.24025 ] ] ], [ [ [ 35.188, 32.24025 ], [ 35.188028527577842, 32.240351601918519 ], [ 35.188101601918561, 32.2402785275778 ], [ 35.188, 32.24025 ] ] ], [ [ [ 35.186166666666679, 32.24 ], [ 35.186332555135152, 32.240083919525262 ], [ 35.18625, 32.24025 ], [ 35.186481321970632, 32.240196399052991 ], [ 35.186903759002689, 32.240451215426162 ], [ 35.187119635264082, 32.240093334198036 ], [ 35.186710207621331, 32.239943590799896 ], [ 35.186574323018419, 32.24011963526408 ], [ 35.186452968597507, 32.240047031402639 ], [ 35.186324323018482, 32.239880364736052 ], [ 35.186202968597399, 32.239952968597493 ], [ 35.186166666666679, 32.24 ] ] ], [ [ [ 35.1825, 32.240416666666761 ], [ 35.182416666666768, 32.240416666666761 ], [ 35.182416666666768, 32.240583333333348 ], [ 35.1825, 32.240583333333348 ], [ 35.1825, 32.240416666666761 ] ] ], [ [ [ 35.198265965779683, 32.24053309981042 ], [ 35.198166666666793, 32.240333333333467 ], [ 35.198025413513221, 32.240369582494111 ], [ 35.198166666666793, 32.240583333333348 ], [ 35.198265965779683, 32.24053309981042 ] ] ], [ [ [ 35.184538054148447, 32.24093914254513 ], [ 35.184583333333251, 32.240833333333455 ], [ 35.184391693115288, 32.240867110888246 ], [ 35.184538054148447, 32.24093914254513 ] ] ], [ [ [ 35.195833333333269, 32.240833333333455 ], [ 35.195583333333389, 32.240833333333455 ], [ 35.195583333333389, 32.240916666666749 ], [ 35.195583333333389, 32.241 ], [ 35.195952728271493, 32.24106275113428 ], [ 35.196217119852633, 32.241222233772419 ], [ 35.196619636535559, 32.241110146840469 ], [ 35.196463696797821, 32.241036301930762 ], [ 35.19617875417083, 32.24095695463825 ], [ 35.196083333333377, 32.240833333333455 ], [ 35.196, 32.240833333333455 ], [ 35.195833333333269, 32.240833333333455 ] ] ], [ [ [ 35.198985582987461, 32.241221975326482 ], [ 35.198916666666662, 32.241083333333336 ], [ 35.198638671875017, 32.24122273826606 ], [ 35.198985582987461, 32.241221975326482 ] ] ], [ [ [ 35.196471473693919, 32.241351601918609 ], [ 35.1965, 32.24125 ], [ 35.196398396810025, 32.24127852757772 ], [ 35.196471473693919, 32.241351601918609 ] ] ], [ [ [ 35.203, 32.241333333333387 ], [ 35.203, 32.24125 ], [ 35.202794011434037, 32.241434049924237 ], [ 35.203068191528303, 32.241526879946434 ], [ 35.203166666666789, 32.241416666666737 ], [ 35.203083333333268, 32.241416666666737 ], [ 35.203083333333268, 32.241333333333387 ], [ 35.203, 32.241333333333387 ] ] ], [ [ [ 35.198666666666782, 32.24175 ], [ 35.198638140360629, 32.241648398081566 ], [ 35.198565063476565, 32.241721472422284 ], [ 35.198666666666782, 32.24175 ] ] ], [ [ [ 35.196138140360574, 32.241768268585304 ], [ 35.19616666666667, 32.241666666666788 ], [ 35.196065063476624, 32.241695194244414 ], [ 35.196138140360574, 32.241768268585304 ] ] ], [ [ [ 35.202788566589277, 32.241728309949281 ], [ 35.202413884480848, 32.24121143213921 ], [ 35.202455233256103, 32.241711432139198 ], [ 35.2025, 32.24175 ], [ 35.202666666666801, 32.24175 ], [ 35.202666666666801, 32.241833333333375 ], [ 35.202788566589277, 32.241728309949281 ] ] ], [ [ [ 35.20325, 32.242166666666776 ], [ 35.203583333333427, 32.242166666666776 ], [ 35.203583333333427, 32.242083333333312 ], [ 35.203302439371839, 32.241967903773002 ], [ 35.20325, 32.242166666666776 ] ] ], [ [ [ 35.186666666666667, 32.242166666666776 ], [ 35.186695194244464, 32.242268268585292 ], [ 35.186768268585183, 32.242195194244403 ], [ 35.186666666666667, 32.242166666666776 ] ] ], [ [ [ 35.198416666666674, 32.242333333333363 ], [ 35.198386154174784, 32.241818877856019 ], [ 35.19825, 32.24175 ], [ 35.198280512491976, 32.242264455477425 ], [ 35.198416666666674, 32.242333333333363 ] ] ], [ [ [ 35.19820461273207, 32.241972910563163 ], [ 35.198, 32.2415 ], [ 35.197803375244234, 32.241549060185775 ], [ 35.197894002278645, 32.241908757209785 ], [ 35.197800051371303, 32.24205005200696 ], [ 35.19748126220702, 32.242229177157071 ], [ 35.197783281962188, 32.242466718673825 ], [ 35.198083333333273, 32.2425 ], [ 35.198023353576673, 32.242324764887485 ], [ 35.19820461273207, 32.241972910563163 ] ] ], [ [ [ 35.18638813908899, 32.242518268585172 ], [ 35.186416666666787, 32.242416666666657 ], [ 35.186315064748101, 32.24244519424451 ], [ 35.18638813908899, 32.242518268585172 ] ] ], [ [ [ 35.198416666666674, 32.242333333333363 ], [ 35.198416666666674, 32.2425 ], [ 35.19833333333338, 32.2425 ], [ 35.19833333333338, 32.242583333333471 ], [ 35.1985, 32.242583333333471 ], [ 35.1985, 32.242333333333363 ], [ 35.198416666666674, 32.242333333333363 ] ] ], [ [ [ 35.198805338541604, 32.242277994791607 ], [ 35.198583333333261, 32.242166666666776 ], [ 35.198617370605461, 32.242299297014881 ], [ 35.19875, 32.2425 ], [ 35.19875, 32.242583333333471 ], [ 35.199166666666713, 32.242583333333471 ], [ 35.199130363464349, 32.242536301930841 ], [ 35.198833333333369, 32.242416666666657 ], [ 35.198805338541604, 32.242277994791607 ] ] ], [ [ [ 35.19975, 32.242583333333471 ], [ 35.19975, 32.242416666666657 ], [ 35.19975, 32.242333333333363 ], [ 35.199916666666809, 32.242333333333363 ], [ 35.200000000000102, 32.242333333333363 ], [ 35.200000000000102, 32.242166666666776 ], [ 35.200304321289138, 32.24228630193079 ], [ 35.20029088846843, 32.242132747968185 ], [ 35.200000000000102, 32.242083333333312 ], [ 35.200000000000102, 32.242 ], [ 35.199500000000114, 32.242 ], [ 35.199458333333382, 32.241893268585159 ], [ 35.19941666666665, 32.242 ], [ 35.199000000000126, 32.242 ], [ 35.199000000000126, 32.242083333333312 ], [ 35.19941666666665, 32.242083333333312 ], [ 35.199682652791296, 32.242116874377018 ], [ 35.19975, 32.24225 ], [ 35.199666666666701, 32.24225 ], [ 35.199666666666701, 32.242416666666657 ], [ 35.199666666666701, 32.2425 ], [ 35.19925, 32.2425 ], [ 35.19925, 32.242583333333471 ], [ 35.19975, 32.242583333333471 ] ] ], [ [ [ 35.20325, 32.242166666666776 ], [ 35.202833333333388, 32.242166666666776 ], [ 35.202833333333388, 32.24225 ], [ 35.202666666666801, 32.242333333333363 ], [ 35.20261034647632, 32.242222005208362 ], [ 35.202314867655502, 32.242288441022367 ], [ 35.202250000000106, 32.242416666666657 ], [ 35.202250000000106, 32.242583333333471 ], [ 35.202527994791751, 32.242444661458421 ], [ 35.202666666666801, 32.242416666666657 ], [ 35.202833333333388, 32.242416666666657 ], [ 35.202833333333388, 32.242333333333363 ], [ 35.203164820353265, 32.242277021726068 ], [ 35.20325, 32.242166666666776 ] ] ], [ [ [ 35.200316942850748, 32.242551339467411 ], [ 35.20025, 32.242416666666657 ], [ 35.200055338541688, 32.242455964406474 ], [ 35.200142873128357, 32.242611328125008 ], [ 35.200316942850748, 32.242551339467411 ] ] ], [ [ [ 35.19833333333338, 32.242583333333471 ], [ 35.198068072001206, 32.242651406288189 ], [ 35.198, 32.24275 ], [ 35.198, 32.242833333333351 ], [ 35.198083333333273, 32.242833333333351 ], [ 35.19833333333338, 32.242833333333351 ], [ 35.19833333333338, 32.242583333333471 ] ] ], [ [ [ 35.194916666666643, 32.242916666666815 ], [ 35.194916666666643, 32.24275 ], [ 35.194638270060238, 32.242633069674184 ], [ 35.194500000000119, 32.242833333333351 ], [ 35.194500000000119, 32.242916666666815 ], [ 35.194583333333412, 32.242916666666815 ], [ 35.194666666666706, 32.242800399144471 ], [ 35.19475, 32.242916666666815 ], [ 35.194916666666643, 32.242916666666815 ] ] ], [ [ [ 35.194083333333253, 32.243083333333459 ], [ 35.194083333333253, 32.243166666666752 ], [ 35.194166666666774, 32.243166666666752 ], [ 35.194166666666774, 32.243083333333459 ], [ 35.194083333333253, 32.243083333333459 ] ] ], [ [ [ 35.19575, 32.243 ], [ 35.19575, 32.243166666666752 ], [ 35.195833333333269, 32.243166666666752 ], [ 35.195901023864678, 32.243030488332181 ], [ 35.19575, 32.243 ] ] ], [ [ [ 35.200083333333396, 32.243083333333459 ], [ 35.200000000000102, 32.243083333333459 ], [ 35.200000000000102, 32.243166666666752 ], [ 35.200083333333396, 32.243166666666752 ], [ 35.200083333333396, 32.243083333333459 ] ] ], [ [ [ 35.194166666666774, 32.243166666666752 ], [ 35.194166666666774, 32.24325 ], [ 35.194333333333361, 32.24325 ], [ 35.194333333333361, 32.243166666666752 ], [ 35.194166666666774, 32.243166666666752 ] ] ], [ [ [ 35.1965, 32.243083333333459 ], [ 35.196277994791728, 32.24319466145846 ], [ 35.196250000000134, 32.24325 ], [ 35.196361328125022, 32.243305338541802 ], [ 35.1965, 32.243333333333339 ], [ 35.1965, 32.243083333333459 ] ] ], [ [ [ 35.200000000000102, 32.243166666666752 ], [ 35.199833333333345, 32.24325 ], [ 35.199666666666701, 32.24325 ], [ 35.199666666666701, 32.243166666666752 ], [ 35.199568191528442, 32.242972005208401 ], [ 35.199228597005288, 32.243037525177044 ], [ 35.199316047668503, 32.243216588020346 ], [ 35.19925, 32.24325 ], [ 35.19925, 32.243333333333339 ], [ 35.200000000000102, 32.243333333333339 ], [ 35.200000000000102, 32.243166666666752 ] ] ], [ [ [ 35.200083333333396, 32.243083333333459 ], [ 35.200284434000707, 32.243269664287652 ], [ 35.200083333333396, 32.243333333333339 ], [ 35.200083333333396, 32.243416666666803 ], [ 35.200333333333276, 32.243416666666803 ], [ 35.200465171814074, 32.242827492714014 ], [ 35.200786572774291, 32.243006814638761 ], [ 35.200666666666677, 32.243333333333339 ], [ 35.200666666666677, 32.243416666666803 ], [ 35.200968770345128, 32.243379744529818 ], [ 35.201630363464403, 32.242880364735925 ], [ 35.201666666666654, 32.242833333333351 ], [ 35.201517789205013, 32.242463698069287 ], [ 35.200875701904351, 32.242611776987815 ], [ 35.200717839558934, 32.242816295941793 ], [ 35.200666666666677, 32.24275 ], [ 35.2005, 32.242666666666764 ], [ 35.200361328125041, 32.242694661458472 ], [ 35.20025, 32.24275 ], [ 35.200166666666689, 32.24275 ], [ 35.200166666666689, 32.242833333333351 ], [ 35.200282933553126, 32.242916666666815 ], [ 35.200118125915537, 32.243034791628531 ], [ 35.200083333333396, 32.243083333333459 ] ] ], [ [ [ 35.197285728454631, 32.243400192578747 ], [ 35.197166666666647, 32.243083333333459 ], [ 35.196945365905833, 32.243122769991658 ], [ 35.196962580363049, 32.243291666666778 ], [ 35.19693749237058, 32.243537812550869 ], [ 35.197285728454631, 32.243400192578747 ] ] ], [ [ [ 35.1965, 32.243333333333339 ], [ 35.196530517578196, 32.243608307361569 ], [ 35.196773783365984, 32.243545838991906 ], [ 35.196608306884741, 32.243475025971748 ], [ 35.196558359781932, 32.243358307361689 ], [ 35.1965, 32.243333333333339 ] ] ], [ [ [ 35.193054807027181, 32.244684935331463 ], [ 35.193083333333334, 32.244583333333367 ], [ 35.192981730143288, 32.244611860752229 ], [ 35.193054807027181, 32.244684935331463 ] ] ], [ [ [ 35.191633288065646, 32.24485604445141 ], [ 35.191666666666663, 32.24466666666666 ], [ 35.191558359781936, 32.244713015 ], [ 35.191633288065646, 32.24485604445141 ] ] ], [ [ [ 35.19125, 32.245 ], [ 35.191208333333407, 32.244893268664669 ], [ 35.191166666666675, 32.245 ], [ 35.19125, 32.245 ] ] ], [ [ [ 35.192166666666651, 32.243333333333339 ], [ 35.192065063476605, 32.243304805914704 ], [ 35.192138140360555, 32.243231731414824 ], [ 35.192166666666651, 32.243333333333339 ], [ 35.192486175537226, 32.243387609958688 ], [ 35.19261963653571, 32.243713697910323 ], [ 35.192760729471843, 32.2438226041794 ], [ 35.192969256083245, 32.24409276024511 ], [ 35.192946627299079, 32.244245885372266 ], [ 35.192833333333397, 32.244333333333316 ], [ 35.192833333333397, 32.24425 ], [ 35.192583333333346, 32.24425 ], [ 35.192583333333346, 32.244333333333316 ], [ 35.192629920959519, 32.244488069613794 ], [ 35.19304421997083, 32.24445478026081 ], [ 35.1935, 32.244833333333474 ], [ 35.1935, 32.244916666666768 ], [ 35.193583333333265, 32.244916666666768 ], [ 35.193843599955244, 32.244802533070299 ], [ 35.193916666666667, 32.244916666666768 ], [ 35.194000000000131, 32.244916666666768 ], [ 35.194083333333253, 32.24475 ], [ 35.19413867187501, 32.244638671875123 ], [ 35.194166666666774, 32.2445 ], [ 35.194258674621608, 32.244303072929313 ], [ 35.194042134602967, 32.244393403371305 ], [ 35.194000000000131, 32.244583333333367 ], [ 35.193532287597634, 32.244658732414337 ], [ 35.193556744893385, 32.244462107658364 ], [ 35.193379608154316, 32.244320259253186 ], [ 35.193453773498618, 32.244120257377688 ], [ 35.193906323750809, 32.243758318742152 ], [ 35.194092552185111, 32.243907447973982 ], [ 35.194327328999975, 32.244200630823855 ], [ 35.194500000000119, 32.24425 ], [ 35.194554463704435, 32.24432056204472 ], [ 35.194791951497393, 32.244285467465772 ], [ 35.1950833333334, 32.244333333333316 ], [ 35.195166666666694, 32.244333333333316 ], [ 35.195166666666694, 32.24425 ], [ 35.195788566589385, 32.243861079375051 ], [ 35.195677556355861, 32.24363679154726 ], [ 35.195371899922691, 32.243544765631498 ], [ 35.195128100077341, 32.243371901035232 ], [ 35.194833333333349, 32.24325 ], [ 35.194777013143039, 32.243138671874988 ], [ 35.194481534322051, 32.243205107847984 ], [ 35.194416666666655, 32.243333333333339 ], [ 35.194166666666774, 32.243333333333339 ], [ 35.194166666666774, 32.24325 ], [ 35.194083333333253, 32.24325 ], [ 35.194083333333253, 32.243166666666752 ], [ 35.193916666666667, 32.243166666666752 ], [ 35.193916666666667, 32.243083333333459 ], [ 35.194083333333253, 32.243083333333459 ], [ 35.193980176289813, 32.24296359793351 ], [ 35.193671262105283, 32.242825755119384 ], [ 35.193500918070583, 32.242678994178902 ], [ 35.193621899922675, 32.242538567861061 ], [ 35.19378640238449, 32.242396842320773 ], [ 35.193890988667931, 32.242162455558855 ], [ 35.194666666666706, 32.242083333333312 ], [ 35.194666666666706, 32.242 ], [ 35.19475, 32.242 ], [ 35.194916666666643, 32.242 ], [ 35.194916666666643, 32.242166666666776 ], [ 35.194916666666643, 32.24225 ], [ 35.195000000000107, 32.24225 ], [ 35.195055989583409, 32.242360677083411 ], [ 35.19522200520845, 32.242444661458421 ], [ 35.19525, 32.2425 ], [ 35.195333984374997, 32.242666015625048 ], [ 35.195610677083437, 32.24280598958336 ], [ 35.195694661458447, 32.242972005208401 ], [ 35.19575, 32.243 ], [ 35.19577799479174, 32.242944661458409 ], [ 35.196401524861585, 32.242888671875107 ], [ 35.1965, 32.243083333333459 ], [ 35.196723302205385, 32.242961974461878 ], [ 35.196518775939978, 32.242647890726857 ], [ 35.196331347147634, 32.242146980285725 ], [ 35.19595070393882, 32.242049297015001 ], [ 35.19591666666679, 32.242 ], [ 35.195730715433854, 32.241959999402297 ], [ 35.195809137980177, 32.24180382823954 ], [ 35.19591666666679, 32.242 ], [ 35.196050916036086, 32.241961616198239 ], [ 35.195952776591071, 32.24179466597252 ], [ 35.195990348816053, 32.241492600758988 ], [ 35.195537058512457, 32.241129609425968 ], [ 35.1955, 32.241083333333336 ], [ 35.195451459248943, 32.241118124961929 ], [ 35.194910113016761, 32.241226208369028 ], [ 35.194833333333349, 32.241333333333387 ], [ 35.19475, 32.241333333333387 ], [ 35.19475, 32.241416666666737 ], [ 35.194666666666706, 32.241416666666737 ], [ 35.194583333333412, 32.241416666666737 ], [ 35.194583333333412, 32.241583333333324 ], [ 35.194583333333412, 32.241666666666788 ], [ 35.194472656250127, 32.241610677083315 ], [ 35.194416666666655, 32.2415 ], [ 35.194416666666655, 32.241416666666737 ], [ 35.194416666666655, 32.241333333333387 ], [ 35.194361328125069, 32.241222005208385 ], [ 35.194333333333361, 32.241 ], [ 35.194277343750059, 32.240889322916701 ], [ 35.194166666666774, 32.240833333333455 ], [ 35.193284263610906, 32.241038638114958 ], [ 35.193125834147224, 32.240702630678868 ], [ 35.193314394632978, 32.240521464665846 ], [ 35.193207071940208, 32.240207912445214 ], [ 35.193292500813811, 32.240125833511343 ], [ 35.193374165852958, 32.239957499821912 ], [ 35.1935, 32.239916666666772 ], [ 35.19361132812503, 32.239861328125016 ], [ 35.193833333333373, 32.239833333333479 ], [ 35.193882659912106, 32.239705008824785 ], [ 35.193696182251074, 32.239626431147258 ], [ 35.193796274821011, 32.23954627609254 ], [ 35.193878774007146, 32.239443254470928 ], [ 35.194056343078614, 32.239465341568064 ], [ 35.19403443908692, 32.239641447067299 ], [ 35.194211702982557, 32.2396193981171 ], [ 35.194721743265859, 32.240027317047179 ], [ 35.194833333333349, 32.240166666666653 ], [ 35.195000000000107, 32.240166666666653 ], [ 35.195000000000107, 32.24025 ], [ 35.195215548197552, 32.240197056452473 ], [ 35.19525, 32.2405 ], [ 35.195443697611552, 32.240606172243872 ], [ 35.195333333333338, 32.240666666666812 ], [ 35.195333333333338, 32.24075 ], [ 35.1955, 32.24075 ], [ 35.1955, 32.2405 ], [ 35.195666666666682, 32.2405 ], [ 35.195666666666682, 32.24025 ], [ 35.195833333333269, 32.24025 ], [ 35.196111328125085, 32.240111328125124 ], [ 35.196472005208307, 32.240055338541652 ], [ 35.196583333333365, 32.24 ], [ 35.196666666666658, 32.24 ], [ 35.196666666666658, 32.239916666666772 ], [ 35.196805338541708, 32.23994466145848 ], [ 35.196916666666709, 32.24 ], [ 35.197088394165064, 32.240114186604956 ], [ 35.197199948628736, 32.24053344408685 ], [ 35.197, 32.240583333333348 ], [ 35.197027994791767, 32.240888671874984 ], [ 35.197233708699514, 32.240948039372768 ], [ 35.197186391194805, 32.241044928232895 ], [ 35.197305338541696, 32.241194661458337 ], [ 35.197377487182678, 32.241444661458445 ], [ 35.197513928731269, 32.241363837877884 ], [ 35.197392926534008, 32.24111607138309 ], [ 35.19775, 32.241083333333336 ], [ 35.197791966756199, 32.240802738507568 ], [ 35.198104253133238, 32.241016592343726 ], [ 35.197949193318664, 32.241115859349691 ], [ 35.197916666666686, 32.2411666666668 ], [ 35.198283075968504, 32.241122928301536 ], [ 35.198166666666793, 32.240833333333455 ], [ 35.198068072001206, 32.24076526037851 ], [ 35.197952748616558, 32.240598229726288 ], [ 35.197497426350992, 32.240700302759876 ], [ 35.197272216796875, 32.240374116897726 ], [ 35.197549296061311, 32.24021596336371 ], [ 35.197617370605542, 32.240117369969823 ], [ 35.198, 32.240083333333359 ], [ 35.198, 32.23975 ], [ 35.197833333333392, 32.23975 ], [ 35.197895467122521, 32.239625 ], [ 35.197833333333392, 32.2395 ], [ 35.197916666666686, 32.2395 ], [ 35.197916666666686, 32.239083333333383 ], [ 35.197629267374793, 32.238826545079633 ], [ 35.197739738464463, 32.236973080317171 ], [ 35.197583333333341, 32.236833333333379 ], [ 35.197549296061311, 32.236534036636442 ], [ 35.197416666666697, 32.236333333333448 ], [ 35.197416666666697, 32.23625 ], [ 35.197333333333404, 32.23625 ], [ 35.197291666666672, 32.236143268585295 ], [ 35.197250000000111, 32.23625 ], [ 35.19677799479166, 32.236277994791692 ], [ 35.196666666666658, 32.236333333333448 ], [ 35.196583333333365, 32.236166666666804 ], [ 35.196637064615913, 32.236125192642248 ], [ 35.196885424296113, 32.235790207544994 ], [ 35.196739270528269, 32.235677396138556 ], [ 35.196666666666658, 32.235583333333352 ], [ 35.196583333333365, 32.235583333333352 ], [ 35.196583333333365, 32.2355 ], [ 35.196308753967344, 32.235464320500682 ], [ 35.196524297078554, 32.235387916564889 ], [ 35.196583333333365, 32.2355 ], [ 35.196666666666658, 32.2355 ], [ 35.196666666666658, 32.235583333333352 ], [ 35.19697443644219, 32.235623602549254 ], [ 35.197228113810354, 32.23591804695144 ], [ 35.197455233256107, 32.236044765472457 ], [ 35.197711433410689, 32.236121901194224 ], [ 35.1985, 32.236416666666742 ], [ 35.198606730143297, 32.236458333333474 ], [ 35.1985, 32.2365 ], [ 35.19847200520843, 32.236972005208429 ], [ 35.19825, 32.237083333333317 ], [ 35.19825, 32.23725 ], [ 35.197916666666686, 32.23725 ], [ 35.197833333333392, 32.23725 ], [ 35.197833333333392, 32.2375 ], [ 35.197833333333392, 32.23775 ], [ 35.197833333333392, 32.237833333333356 ], [ 35.197833333333392, 32.237916666666649 ], [ 35.197916666666686, 32.237916666666649 ], [ 35.198, 32.237916666666649 ], [ 35.198200703938824, 32.238215963363587 ], [ 35.19825, 32.23825 ], [ 35.19833333333338, 32.23825 ], [ 35.19833333333338, 32.238333333333344 ], [ 35.198525444030849, 32.238438636779847 ], [ 35.198416666666674, 32.238666666666745 ], [ 35.198375000000112, 32.238945255915269 ], [ 35.19825, 32.23875 ], [ 35.198, 32.238583333333452 ], [ 35.197916666666686, 32.238583333333452 ], [ 35.197916666666686, 32.239083333333383 ], [ 35.197965962727778, 32.239117369969676 ], [ 35.198083333333273, 32.239583333333371 ], [ 35.198166666666793, 32.239583333333371 ], [ 35.198166666666793, 32.239666666666665 ], [ 35.19825, 32.239833333333479 ], [ 35.198515261332261, 32.239765260696515 ], [ 35.19875, 32.239666666666665 ], [ 35.198796274821007, 32.239629609425833 ], [ 35.198926684061746, 32.239466758728156 ], [ 35.199299629211339, 32.239685984929395 ], [ 35.199268465677903, 32.239936526616532 ], [ 35.199000000000126, 32.239833333333479 ], [ 35.198781771342055, 32.239865104039552 ], [ 35.198387995402015, 32.239994618098024 ], [ 35.19833333333338, 32.240083333333359 ], [ 35.19833333333338, 32.240333333333467 ], [ 35.198416666666674, 32.240333333333467 ], [ 35.198525260925408, 32.240211794535412 ], [ 35.198687372843438, 32.240202132542947 ], [ 35.198920181274445, 32.240308984120645 ], [ 35.199224871317597, 32.24078805923466 ], [ 35.199372655232878, 32.240622656186417 ], [ 35.199544776916525, 32.240468866984088 ], [ 35.199535219828419, 32.24030852190657 ], [ 35.199583333333408, 32.240083333333359 ], [ 35.199916666666809, 32.240166666666653 ], [ 35.200000000000102, 32.240166666666653 ], [ 35.20009684244792, 32.240544028600198 ], [ 35.20025, 32.240583333333348 ], [ 35.200346407572397, 32.240703723907473 ], [ 35.200652018229221, 32.240509359995656 ], [ 35.20075, 32.240166666666653 ], [ 35.200780489603687, 32.240015642166213 ], [ 35.200916666666785, 32.240083333333359 ], [ 35.201022839864095, 32.239889636357759 ], [ 35.201083333333372, 32.24 ], [ 35.20125000000013, 32.239916666666772 ], [ 35.201527994791775, 32.239777994791723 ], [ 35.201805338541703, 32.239722005208421 ], [ 35.201916666666705, 32.239666666666665 ], [ 35.201882629394504, 32.239450703303078 ], [ 35.201574793497855, 32.238791452407952 ], [ 35.2015, 32.2385 ], [ 35.2015, 32.238416666666808 ], [ 35.201416666666717, 32.238416666666808 ], [ 35.201416666666717, 32.23825 ], [ 35.201253674825011, 32.237806157430043 ], [ 35.201357854207288, 32.236509589513219 ], [ 35.20125000000013, 32.236416666666742 ], [ 35.20125000000013, 32.23625 ], [ 35.201308631897007, 32.236195675531974 ], [ 35.201876589457243, 32.234959921518907 ], [ 35.202, 32.234666666666726 ], [ 35.201611328125068, 32.234638671875132 ], [ 35.201388671875009, 32.234444661458326 ], [ 35.201205965678014, 32.234388671875081 ], [ 35.201138671875128, 32.234722005208425 ], [ 35.2010392990112, 32.234777994791727 ], [ 35.200972005208314, 32.234444661458326 ], [ 35.200783960978185, 32.234349533081172 ], [ 35.20075, 32.234416666666789 ], [ 35.200666666666677, 32.234416666666789 ], [ 35.200666666666677, 32.234333333333325 ], [ 35.200666666666677, 32.23425 ], [ 35.200583333333384, 32.23425 ], [ 35.200583333333384, 32.234166666666738 ], [ 35.2005, 32.234166666666738 ], [ 35.2005, 32.23425 ], [ 35.200416666666797, 32.23425 ], [ 35.200416666666797, 32.234166666666738 ], [ 35.2005, 32.234050399780301 ], [ 35.200583333333384, 32.234166666666738 ], [ 35.200666666666677, 32.234166666666738 ], [ 35.200666666666677, 32.23425 ], [ 35.201463696797816, 32.234213698069311 ], [ 35.201590291341176, 32.234049690246707 ], [ 35.202036303202419, 32.234380364735898 ], [ 35.202166666666642, 32.234416666666789 ], [ 35.202761428833071, 32.233248050689838 ], [ 35.203065409342457, 32.233038171132534 ], [ 35.202739878336558, 32.232954631805455 ], [ 35.203166666666789, 32.232916666666654 ], [ 35.20325, 32.232916666666654 ], [ 35.20325, 32.23283333333336 ], [ 35.203166666666789, 32.23283333333336 ], [ 35.203166666666789, 32.23275 ], [ 35.202916666666681, 32.23275 ], [ 35.202916666666681, 32.232666666666773 ], [ 35.202666666666801, 32.232666666666773 ], [ 35.202666666666801, 32.232583333333309 ], [ 35.202416666666693, 32.232583333333309 ], [ 35.202205988566163, 32.232460676829135 ], [ 35.201960678100704, 32.23228932317113 ], [ 35.201465586344455, 32.232062093099046 ], [ 35.20179428354902, 32.231960592905693 ], [ 35.201779248555511, 32.231708333333358 ], [ 35.20179692077636, 32.231411829630531 ], [ 35.202, 32.231083333333345 ], [ 35.201893269856896, 32.231041666666783 ], [ 35.202, 32.231 ], [ 35.201922035217308, 32.230814374287945 ], [ 35.202093775431365, 32.23063263066615 ], [ 35.202166666666642, 32.230916666666758 ], [ 35.202297030130978, 32.230952968597478 ], [ 35.202452969869114, 32.231047031402625 ], [ 35.202904792785773, 32.231142374674619 ], [ 35.203092137654664, 32.231600124359147 ], [ 35.203547030131062, 32.231786301930811 ], [ 35.20375, 32.231916666666734 ], [ 35.20375, 32.232083333333321 ], [ 35.203833333333364, 32.232083333333321 ], [ 35.204000000000121, 32.232166666666785 ], [ 35.204890614827548, 32.230666371663347 ], [ 35.20525, 32.230166666666719 ], [ 35.205416015625076, 32.230082682291709 ], [ 35.2055, 32.229916666666782 ], [ 35.205583333333379, 32.229916666666782 ], [ 35.205583333333379, 32.229833333333318 ], [ 35.205694010416664, 32.229777343750015 ], [ 35.205750000000137, 32.229666666666731 ], [ 35.20594718678791, 32.229530521392803 ], [ 35.206083333333368, 32.229333333333329 ], [ 35.206166666666661, 32.229333333333329 ], [ 35.206166666666661, 32.22925 ], [ 35.206366539001522, 32.229112000783346 ], [ 35.206416666666712, 32.228916666666635 ], [ 35.206308377583809, 32.228866217295376 ], [ 35.206403269449879, 32.228700686137017 ], [ 35.206583333333356, 32.228666666666754 ], [ 35.206771776835183, 32.228485613505143 ], [ 35.207716667175418, 32.227091667175387 ], [ 35.208624165852825, 32.225707500457816 ], [ 35.208833333333359, 32.225416666666774 ], [ 35.207833333333383, 32.225416666666774 ], [ 35.207833333333383, 32.2255 ], [ 35.207833333333383, 32.225583333333361 ], [ 35.20775, 32.225583333333361 ], [ 35.20775, 32.225666666666712 ], [ 35.2075, 32.225666666666712 ], [ 35.207333333333395, 32.225666666666712 ], [ 35.207250000000101, 32.225666666666712 ], [ 35.207250000000101, 32.22575 ], [ 35.207549296061245, 32.225784036000675 ], [ 35.207700703938769, 32.225916119893498 ], [ 35.207471906026285, 32.226117369333849 ], [ 35.207122225443641, 32.22588966115319 ], [ 35.207083333333287, 32.225833333333469 ], [ 35.206972005208456, 32.225777994791713 ], [ 35.206833333333407, 32.22575 ], [ 35.206801561991426, 32.225801561991489 ], [ 35.20669843800863, 32.225865104675279 ], [ 35.206548375447653, 32.226108647664432 ], [ 35.206285936991492, 32.226026903788238 ], [ 35.206134895324624, 32.225781771341985 ], [ 35.206083333333368, 32.22575 ], [ 35.206047030131117, 32.225797031402578 ], [ 35.205702969869094, 32.226036301930776 ], [ 35.205594062805233, 32.226177396138553 ], [ 35.204739270528137, 32.226322603861547 ], [ 35.20450000000011, 32.226416666666751 ], [ 35.20450000000011, 32.2265 ], [ 35.204416666666646, 32.2265 ], [ 35.204472005208402, 32.226611328125102 ], [ 35.20450000000011, 32.226750000000152 ], [ 35.204462941487748, 32.226796276092614 ], [ 35.204406138102286, 32.227252960205192 ], [ 35.204877894083779, 32.227118247985857 ], [ 35.205005945841606, 32.227278155008946 ], [ 35.204743453979574, 32.227388764699413 ], [ 35.204949907938726, 32.227739981333457 ], [ 35.204833333333283, 32.227833333333365 ], [ 35.204805338541746, 32.227972005208414 ], [ 35.20475, 32.228083333333473 ], [ 35.204662633260227, 32.22819652175906 ], [ 35.204463696797688, 32.228092343648257 ], [ 35.204583333333403, 32.228 ], [ 35.204583333333403, 32.227916666666715 ], [ 35.20475, 32.227916666666715 ], [ 35.20475, 32.227833333333365 ], [ 35.204566235860284, 32.227762696584136 ], [ 35.204137934366997, 32.227815971374582 ], [ 35.20421351623537, 32.227208333333351 ], [ 35.204196283976216, 32.227069805145334 ], [ 35.20425, 32.226833333333445 ], [ 35.204157447815078, 32.226759218851782 ], [ 35.203939460754498, 32.226487004597971 ], [ 35.203148412068742, 32.226585399627709 ], [ 35.20303393046072, 32.226728360494121 ], [ 35.201953725179067, 32.227037057240864 ], [ 35.201666666666654, 32.22716666666679 ], [ 35.201666666666654, 32.22725 ], [ 35.2015, 32.22725 ], [ 35.2015, 32.227333333333434 ], [ 35.20163429768877, 32.227449036916141 ], [ 35.201788566589357, 32.227628098805894 ], [ 35.202061642964736, 32.227705234527718 ], [ 35.202211031595937, 32.227531840006577 ], [ 35.202408701578747, 32.227547723134421 ], [ 35.202538566589396, 32.227935646057176 ], [ 35.20223069000258, 32.228038567861063 ], [ 35.201878100077352, 32.227788567861012 ], [ 35.201705233256007, 32.227711432139188 ], [ 35.201500330607075, 32.227597109476733 ], [ 35.201375823974672, 32.227452593485566 ], [ 35.20129476674407, 32.227507153828981 ], [ 35.201590253194297, 32.228036764780711 ], [ 35.20129476674407, 32.227871901194305 ], [ 35.200987208048559, 32.227779303232978 ], [ 35.200732785542925, 32.227799746195501 ], [ 35.200416666666797, 32.228166666666766 ], [ 35.200531372070373, 32.228240099589073 ], [ 35.200423838297525, 32.228622745513974 ], [ 35.200157503763933, 32.228699193318675 ], [ 35.200083333333396, 32.228583333333461 ], [ 35.199718317667703, 32.228781709035275 ], [ 35.199882629394608, 32.229034036000655 ], [ 35.199950703938839, 32.229294795990086 ], [ 35.199534037272144, 32.229450702667293 ], [ 35.199465962727913, 32.22954929733271 ], [ 35.198884839375808, 32.229617369333937 ], [ 35.198833333333369, 32.229416666666793 ], [ 35.19875, 32.229416666666793 ], [ 35.19875, 32.229333333333329 ], [ 35.198536303202388, 32.22936963526422 ], [ 35.198297030130959, 32.229463698069253 ], [ 35.197963696797785, 32.229467563629214 ], [ 35.198679575602171, 32.229174570719408 ], [ 35.198786303202439, 32.229036301930819 ], [ 35.198833333333369, 32.229 ], [ 35.198833333333369, 32.228916666666635 ], [ 35.198916666666662, 32.228916666666635 ], [ 35.199166666666713, 32.228916666666635 ], [ 35.19925, 32.228916666666635 ], [ 35.19925, 32.228833333333341 ], [ 35.19941666666665, 32.228833333333341 ], [ 35.19941666666665, 32.22875 ], [ 35.199500000000114, 32.22875 ], [ 35.199583333333408, 32.22875 ], [ 35.199583333333408, 32.228666666666754 ], [ 35.199500000000114, 32.228666666666754 ], [ 35.199453163146984, 32.228601320902555 ], [ 35.198946408589734, 32.228701457977365 ], [ 35.198951459248974, 32.228451457977314 ], [ 35.19925, 32.228416666666647 ], [ 35.19975, 32.228416666666647 ], [ 35.19975, 32.2285 ], [ 35.200000000000102, 32.2285 ], [ 35.200000000000102, 32.228416666666647 ], [ 35.200163406372099, 32.228112990061561 ], [ 35.200532834371018, 32.227867345174218 ], [ 35.200283281962072, 32.227550052642925 ], [ 35.20025, 32.227416666666727 ], [ 35.200378100077387, 32.227455234527611 ], [ 35.200676818847626, 32.227621901194198 ], [ 35.201280370076574, 32.227390605926644 ], [ 35.20130117543539, 32.22713164647422 ], [ 35.200327407836937, 32.226857636769694 ], [ 35.200166666666689, 32.226916666666739 ], [ 35.20004188283292, 32.226777006785198 ], [ 35.19875, 32.2265 ], [ 35.198453725179036, 32.226129609425811 ], [ 35.198361081441362, 32.225805586497017 ], [ 35.198166666666793, 32.22575 ], [ 35.198125, 32.225856731414808 ], [ 35.198083333333273, 32.22575 ], [ 35.19803403727218, 32.225715963999505 ], [ 35.197861999511815, 32.225466794331851 ], [ 35.197666666666805, 32.225416666666774 ], [ 35.197555338541747, 32.225361328125018 ], [ 35.197333333333404, 32.22533333333331 ], [ 35.19688675944019, 32.22522364552816 ], [ 35.196537943522173, 32.22530184173587 ], [ 35.196382629394577, 32.225200702667223 ], [ 35.196051719665604, 32.225076883951942 ], [ 35.19616308339431, 32.224580120086671 ], [ 35.196, 32.224333333333334 ], [ 35.196, 32.22425 ], [ 35.196057757059805, 32.224200241088909 ], [ 35.19603184000664, 32.223877698262527 ], [ 35.19620523325608, 32.22372830963144 ], [ 35.196000816345304, 32.22369891357431 ], [ 35.19512189992281, 32.223788566589462 ], [ 35.195044766744047, 32.223878100077457 ], [ 35.194288566589421, 32.224038566589343 ], [ 35.194083333333253, 32.224166666666747 ], [ 35.194000000000131, 32.224166666666747 ], [ 35.194034037272161, 32.224299296061304 ], [ 35.194182657877604, 32.224527529398642 ], [ 35.193976173400983, 32.224617369333941 ], [ 35.19382775624598, 32.224220715840772 ], [ 35.193715962727879, 32.224382629394597 ], [ 35.193523915608694, 32.224450702667355 ], [ 35.193215962727891, 32.224164370218887 ], [ 35.193382629394648, 32.224049296061253 ], [ 35.193416666666678, 32.224 ], [ 35.193348594665508, 32.223901405334573 ], [ 35.193200703938828, 32.223799296061145 ], [ 35.193030520121397, 32.223552813212109 ], [ 35.192833333333397, 32.223416666666708 ], [ 35.192795789082879, 32.223558977762934 ], [ 35.192149650573754, 32.2237014592489 ], [ 35.192048540751216, 32.223478294372626 ], [ 35.192298540751267, 32.223381874084509 ], [ 35.192333333333409, 32.223333333333358 ], [ 35.192333333333409, 32.22325 ], [ 35.192442499796471, 32.223307500203418 ], [ 35.192559036254863, 32.223528750101821 ], [ 35.192691986084128, 32.223431836446252 ], [ 35.192528750101701, 32.223221249898415 ], [ 35.1925, 32.223 ], [ 35.192478505452527, 32.222852493286155 ], [ 35.192228802998841, 32.222604530334479 ], [ 35.192083333333358, 32.222583333333318 ], [ 35.191907473246317, 32.222514198303202 ], [ 35.191333333333262, 32.222416666666732 ], [ 35.191258717854851, 32.222295567830542 ], [ 35.190938541412379, 32.222186457316127 ], [ 35.19071822865817, 32.222031771342017 ], [ 35.190583333333393, 32.222 ], [ 35.190522829691645, 32.221782725016283 ], [ 35.190286301930712, 32.221463696797684 ], [ 35.190177396138608, 32.221197603861526 ], [ 35.190018829345831, 32.220934733072909 ], [ 35.189916666666647, 32.220333333333315 ], [ 35.190071353912401, 32.220428644816138 ], [ 35.190198438008736, 32.220801561991493 ], [ 35.19025, 32.220833333333474 ], [ 35.190543450673545, 32.220761255900015 ], [ 35.190583333333393, 32.220916666666767 ], [ 35.190620059967046, 32.221048553466915 ], [ 35.19076153564464, 32.221027646382709 ], [ 35.190952968597514, 32.221074323018399 ], [ 35.190687970479303, 32.221278869628975 ], [ 35.190715058644571, 32.221462173461873 ], [ 35.190648878733441, 32.221536303202299 ], [ 35.1905000000001, 32.221166666666704 ], [ 35.190333333333342, 32.221166666666704 ], [ 35.190365104675323, 32.221301561991481 ], [ 35.190468228658119, 32.221365104675442 ], [ 35.190595312754397, 32.221738021850626 ], [ 35.19075, 32.22183333333345 ], [ 35.190916666666794, 32.221916666666743 ], [ 35.190916666666794, 32.222 ], [ 35.191, 32.222 ], [ 35.191075780232836, 32.222098177591988 ], [ 35.191564460754478, 32.222290288289457 ], [ 35.191916666666771, 32.222333333333438 ], [ 35.191955233256124, 32.222378100077322 ], [ 35.192416666666702, 32.222583333333318 ], [ 35.192500651041712, 32.222749348958416 ], [ 35.19266666666681, 32.222833333333426 ], [ 35.192722656250112, 32.222944010416711 ], [ 35.192833333333397, 32.223 ], [ 35.192879478454529, 32.223153269449938 ], [ 35.193365702311269, 32.223717631022168 ], [ 35.1935, 32.223833333333346 ], [ 35.193778699239147, 32.223735651652134 ], [ 35.193583333333265, 32.223916666666639 ], [ 35.193583333333265, 32.224 ], [ 35.193916666666667, 32.224 ], [ 35.194000000000131, 32.223883733113723 ], [ 35.194083333333253, 32.224 ], [ 35.194249348958351, 32.22391601562515 ], [ 35.194333333333361, 32.22375 ], [ 35.194333333333361, 32.223666666666759 ], [ 35.194416666666655, 32.223666666666759 ], [ 35.194527343749996, 32.223722656250061 ], [ 35.194583333333412, 32.223833333333346 ], [ 35.194881861368799, 32.223713094075549 ], [ 35.194866027832006, 32.223605946858754 ], [ 35.195121747334838, 32.223451695760104 ], [ 35.195368362426734, 32.223488138834625 ], [ 35.195737876892167, 32.223265246073481 ], [ 35.196185256958131, 32.223331357320262 ], [ 35.196297030131063, 32.223047030131056 ], [ 35.196333333333257, 32.222666666666782 ], [ 35.196121899922787, 32.222705233256022 ], [ 35.195848406473885, 32.22280566914884 ], [ 35.195544766743978, 32.22256762695315 ], [ 35.19616666666667, 32.222333333333438 ], [ 35.196351198832247, 32.222370585123713 ], [ 35.196416666666778, 32.2225 ], [ 35.1966769332887, 32.222385866800948 ], [ 35.196750000000122, 32.2225 ], [ 35.197290374755937, 32.222284678141364 ], [ 35.197452969869119, 32.222324323018427 ], [ 35.197333333333404, 32.222416666666732 ], [ 35.197333333333404, 32.2225 ], [ 35.197461433410638, 32.222461433410615 ], [ 35.197574816386009, 32.221962343851771 ], [ 35.197897059122852, 32.222142135620118 ], [ 35.197867111206165, 32.222514846801857 ], [ 35.1975, 32.222666666666782 ], [ 35.197416666666697, 32.222666666666782 ], [ 35.197416666666697, 32.22275 ], [ 35.197083333333353, 32.222833333333426 ], [ 35.197041666666792, 32.222726603190097 ], [ 35.197, 32.222833333333426 ], [ 35.196833333333416, 32.222833333333426 ], [ 35.196833333333416, 32.22291666666672 ], [ 35.197, 32.22291666666672 ], [ 35.197083333333353, 32.22291666666672 ], [ 35.197048230489145, 32.223225344339994 ], [ 35.196833333333416, 32.223083333333477 ], [ 35.196729197184311, 32.223166722615645 ], [ 35.196666666666658, 32.223666666666759 ], [ 35.196555989583317, 32.223722656250061 ], [ 35.1965, 32.223833333333346 ], [ 35.196583333333365, 32.223833333333346 ], [ 35.196666666666658, 32.223833333333346 ], [ 35.196782933553095, 32.223916666666639 ], [ 35.196666666666658, 32.224 ], [ 35.196583333333365, 32.224 ], [ 35.196583333333365, 32.224083333333454 ], [ 35.1965, 32.224083333333454 ], [ 35.196534037272272, 32.22421596272801 ], [ 35.196857106526807, 32.224336847941174 ], [ 35.196904095967568, 32.224546460469526 ], [ 35.196300745646226, 32.22462617238358 ], [ 35.196215962727933, 32.225004358927549 ], [ 35.196536420186362, 32.225099470774467 ], [ 35.196583333333365, 32.224916666666786 ], [ 35.1965, 32.224916666666786 ], [ 35.1965, 32.224666666666735 ], [ 35.196750000000122, 32.224666666666735 ], [ 35.196750000000122, 32.22475 ], [ 35.197028971354257, 32.224892763773653 ], [ 35.196833333333416, 32.225 ], [ 35.19686132812501, 32.225055338541665 ], [ 35.197138671875109, 32.225111328125138 ], [ 35.197250000000111, 32.225166666666723 ], [ 35.197450703938898, 32.225034036000636 ], [ 35.197717013041313, 32.22496596399958 ], [ 35.197916666666686, 32.22533333333331 ], [ 35.197916666666686, 32.225416666666774 ], [ 35.198083333333273, 32.225416666666774 ], [ 35.198111328125037, 32.225277994791725 ], [ 35.198401524861708, 32.225222005208479 ], [ 35.1985, 32.225416666666774 ], [ 35.198786707560259, 32.225502988179585 ], [ 35.1985, 32.22575 ], [ 35.19862960815442, 32.225953723907594 ], [ 35.198737106323335, 32.226329697926985 ], [ 35.199755101521873, 32.226620390574169 ], [ 35.199829223632833, 32.226486970265796 ], [ 35.199453725179012, 32.226379609425919 ], [ 35.199350560506275, 32.226018792470427 ], [ 35.198712941487713, 32.226098102569665 ], [ 35.198833358764773, 32.225457338968909 ], [ 35.19925, 32.225416666666774 ], [ 35.199305740356522, 32.225131144205818 ], [ 35.199500000000114, 32.22533333333331 ], [ 35.199666666666701, 32.22533333333331 ], [ 35.199666666666701, 32.22525 ], [ 35.199611806233747, 32.224692104339681 ], [ 35.199644976298089, 32.224461432139208 ], [ 35.19975, 32.224583333333442 ], [ 35.200074343363553, 32.224464225769054 ], [ 35.200000000000102, 32.224666666666735 ], [ 35.200000000000102, 32.22475 ], [ 35.199916666666809, 32.22475 ], [ 35.199784037272195, 32.224950702667286 ], [ 35.19975, 32.22508333333343 ], [ 35.19991597239175, 32.225202292124493 ], [ 35.199999501546358, 32.22562500000015 ], [ 35.19950304667168, 32.225724529266358 ], [ 35.199632074991939, 32.226368124644068 ], [ 35.199881874084497, 32.226298542022789 ], [ 35.200034792582244, 32.226201457977311 ], [ 35.200215207417841, 32.226131875356032 ], [ 35.20025, 32.225916666666762 ], [ 35.200166666666689, 32.225916666666762 ], [ 35.200166666666689, 32.225833333333469 ], [ 35.200065063476643, 32.225804805755672 ], [ 35.200138140360593, 32.225731731414783 ], [ 35.200166666666689, 32.225833333333469 ], [ 35.20025, 32.225833333333469 ], [ 35.20025, 32.225916666666762 ], [ 35.200537211100254, 32.226080646514959 ], [ 35.200212188720741, 32.226350631713956 ], [ 35.200660964965891, 32.226665580749511 ], [ 35.201212188720717, 32.226787812550924 ], [ 35.201454477946015, 32.226878854115796 ], [ 35.20158333333336, 32.226916666666739 ], [ 35.20190088399255, 32.226797345479326 ], [ 35.202, 32.226916666666739 ], [ 35.202166666666642, 32.226833333333445 ], [ 35.202208333333374, 32.226726601918585 ], [ 35.202250000000106, 32.226833333333445 ], [ 35.20248473866792, 32.226734739939332 ], [ 35.20275, 32.226666666666631 ], [ 35.202780489603811, 32.226515642801928 ], [ 35.202916666666681, 32.226583333333338 ], [ 35.202951459248993, 32.226534791310655 ], [ 35.204150329589766, 32.226294848124269 ], [ 35.204086944580183, 32.225974086761596 ], [ 35.204210744221996, 32.225949623107908 ], [ 35.204333333333352, 32.226 ], [ 35.204376973470175, 32.225898022969488 ], [ 35.204608306884836, 32.225953651428313 ], [ 35.20450000000011, 32.226 ], [ 35.20450000000011, 32.226083333333349 ], [ 35.204666666666697, 32.226166666666643 ], [ 35.20516792043054, 32.226115537007786 ], [ 35.205455233256146, 32.225955234527646 ], [ 35.205751459757607, 32.225823052724195 ], [ 35.205666666666673, 32.22575 ], [ 35.205583333333379, 32.225583333333361 ], [ 35.205461537679071, 32.225393082936591 ], [ 35.205066220601339, 32.225254035949717 ], [ 35.204972305297929, 32.224919850667447 ], [ 35.205134140014763, 32.224550806681464 ], [ 35.205199193318663, 32.224282526652019 ], [ 35.20583333333343, 32.22425 ], [ 35.205875, 32.224143269856768 ], [ 35.205916666666724, 32.22425 ], [ 35.205950703938754, 32.224299296061304 ], [ 35.206416666666712, 32.224416666666627 ], [ 35.206458333333273, 32.224309936523525 ], [ 35.2065, 32.224416666666627 ], [ 35.2065, 32.224500000000148 ], [ 35.206583333333356, 32.224500000000148 ], [ 35.206583333333356, 32.224583333333442 ], [ 35.206741333007812, 32.224669938405498 ], [ 35.206637738545737, 32.224921272277811 ], [ 35.206791666666675, 32.224857826232949 ], [ 35.207004605611189, 32.224945594787698 ], [ 35.206909528096617, 32.224714925130286 ], [ 35.207166666666808, 32.224583333333442 ], [ 35.207250000000101, 32.224583333333442 ], [ 35.207706184387234, 32.224934721628756 ], [ 35.2075, 32.225 ], [ 35.2075, 32.22508333333343 ], [ 35.207666666666796, 32.22508333333343 ], [ 35.207812995910786, 32.225045781453559 ], [ 35.208054265340081, 32.224879199981785 ], [ 35.208, 32.22475 ], [ 35.207768516540568, 32.224847226460838 ], [ 35.207833333333383, 32.224583333333442 ], [ 35.207787811279331, 32.224545520782442 ], [ 35.207675173441601, 32.224285797119251 ], [ 35.206861012776699, 32.223932703654043 ], [ 35.206600507100461, 32.224246312459286 ], [ 35.206212188720713, 32.223933965047195 ], [ 35.20637885538747, 32.223795522054104 ], [ 35.206454477946011, 32.223678118387909 ], [ 35.206, 32.22375 ], [ 35.20583333333343, 32.22375 ], [ 35.20583333333343, 32.223583333333465 ], [ 35.205750000000137, 32.223583333333465 ], [ 35.205551361083963, 32.223456166585379 ], [ 35.206241902669319, 32.223381500244216 ], [ 35.206041132609016, 32.223252967834583 ], [ 35.206, 32.223083333333477 ], [ 35.206041666666806, 32.222804743448989 ], [ 35.206166666666661, 32.223 ], [ 35.206350336710614, 32.223051144917804 ], [ 35.206670651753711, 32.223298388163244 ], [ 35.206794062296524, 32.223741564432771 ], [ 35.207250000000101, 32.223666666666759 ], [ 35.2073162002564, 32.223700154622463 ], [ 35.207250000000101, 32.223833333333346 ], [ 35.207130424499496, 32.22394412485761 ], [ 35.207959922790508, 32.224206743876209 ], [ 35.208, 32.22425 ], [ 35.208207984924343, 32.224198913574298 ], [ 35.208583333333422, 32.224283058166577 ], [ 35.209009361267078, 32.224187553405841 ], [ 35.209117370605441, 32.224448493957652 ], [ 35.20878403727221, 32.224534036000648 ], [ 35.20875, 32.22475 ], [ 35.20825, 32.22475 ], [ 35.208166666666727, 32.224633733113592 ], [ 35.208083333333434, 32.22475 ], [ 35.208166666666727, 32.22475 ], [ 35.208166666666727, 32.224833333333322 ], [ 35.20821496836345, 32.224895909627321 ], [ 35.208797030131109, 32.224797031402602 ], [ 35.208833333333359, 32.22475 ], [ 35.20908333333341, 32.22475 ], [ 35.20908333333341, 32.224583333333442 ], [ 35.209416666666641, 32.224583333333442 ], [ 35.209500000000105, 32.224467066447005 ], [ 35.209583333333399, 32.224583333333442 ], [ 35.209882509867441, 32.224377614339232 ], [ 35.210527809143116, 32.223860867818303 ], [ 35.210583333333375, 32.223666666666759 ], [ 35.2105, 32.223666666666759 ], [ 35.2105, 32.223583333333465 ], [ 35.210333333333438, 32.223583333333465 ], [ 35.21025, 32.223583333333465 ], [ 35.21025, 32.2235 ], [ 35.21, 32.223333333333358 ], [ 35.21, 32.22325 ], [ 35.2105, 32.22325 ], [ 35.2105, 32.223333333333358 ], [ 35.210583333333375, 32.223333333333358 ], [ 35.210583333333375, 32.22325 ], [ 35.210621899922728, 32.222871899922779 ], [ 35.210751485188837, 32.222398417154977 ], [ 35.210544550577879, 32.22193466695154 ], [ 35.210024337768687, 32.221976465861133 ], [ 35.20925, 32.221333333333462 ], [ 35.20925, 32.22125 ], [ 35.209416666666641, 32.22125 ], [ 35.209726137797134, 32.221217397054033 ], [ 35.210154688517378, 32.221071355184051 ], [ 35.21025, 32.220916666666767 ], [ 35.210757578531911, 32.220628100077306 ], [ 35.210878100077366, 32.220788566589363 ], [ 35.210958333333281, 32.220968376159817 ], [ 35.211333333333414, 32.220938245137518 ], [ 35.211957901001028, 32.220988431294813 ], [ 35.212, 32.220666666666716 ], [ 35.212083333333283, 32.220666666666716 ], [ 35.212083333333283, 32.220583333333423 ], [ 35.212206082662021, 32.220034774780345 ], [ 35.212455235799268, 32.220211433410611 ], [ 35.212583333333441, 32.22025 ], [ 35.21275, 32.22025 ], [ 35.21275, 32.220166666666728 ], [ 35.21325, 32.220083333333434 ], [ 35.213568120320701, 32.220054166158093 ], [ 35.213521260579569, 32.219958213806251 ], [ 35.213645467122376, 32.219708333333472 ], [ 35.213583333333418, 32.219583333333446 ], [ 35.213620641072566, 32.219449356079053 ], [ 35.213952967325838, 32.219202969869002 ], [ 35.214185943603525, 32.219107617696238 ], [ 35.214333333333286, 32.218916666666701 ], [ 35.214612777709931, 32.21879929606115 ], [ 35.214882629394538, 32.218867370605551 ], [ 35.215083333333382, 32.219 ], [ 35.215083333333382, 32.219083333333458 ], [ 35.215083333333382, 32.219166666666752 ], [ 35.215166666666676, 32.219166666666752 ], [ 35.215133387247818, 32.219550051371357 ], [ 35.214633387247829, 32.219626836141003 ], [ 35.214699946085716, 32.219883384704588 ], [ 35.214800053914416, 32.220033281962174 ], [ 35.214888961792099, 32.220278302510565 ], [ 35.215208333333408, 32.220197835286569 ], [ 35.215375, 32.220239827474074 ], [ 35.215547648111965, 32.220196329752753 ], [ 35.215616612752399, 32.220300051371225 ], [ 35.215666666666664, 32.220333333333315 ], [ 35.215700703938865, 32.220382629394578 ], [ 35.215965962727807, 32.220450703938809 ], [ 35.216221908569423, 32.220617370605396 ], [ 35.216305613200007, 32.220543739318941 ], [ 35.216133758544913, 32.220279825846319 ], [ 35.216083333333302, 32.220083333333434 ], [ 35.216120391845834, 32.219787058512395 ], [ 35.216537882487046, 32.219696729024292 ], [ 35.2166533508302, 32.218773521423486 ], [ 35.21712039184581, 32.218879608154339 ], [ 35.217333333333386, 32.218916666666701 ], [ 35.217449600219823, 32.21883333333335 ], [ 35.217333333333386, 32.21875 ], [ 35.217388671875142, 32.218638671875055 ], [ 35.217416666666679, 32.2185 ], [ 35.2175, 32.2185 ], [ 35.2175, 32.218416666666712 ], [ 35.217527994791681, 32.218277994791663 ], [ 35.21766666666673, 32.218 ], [ 35.217851196289075, 32.217962748209743 ], [ 35.217916666666667, 32.217833333333431 ], [ 35.217815063476621, 32.217804807027278 ], [ 35.217888137817511, 32.217731730143214 ], [ 35.217916666666667, 32.217833333333431 ], [ 35.218057942708356, 32.217804812113513 ], [ 35.218388671875061, 32.217638671875079 ], [ 35.218416666666656, 32.217583333333323 ], [ 35.218416666666656, 32.2175 ], [ 35.218333333333305, 32.2175 ], [ 35.218333333333305, 32.217416666666736 ], [ 35.21850000000012, 32.217416666666736 ], [ 35.218583333333413, 32.217416666666736 ], [ 35.218583333333413, 32.2175 ], [ 35.218722005208463, 32.217472005208322 ], [ 35.218833333333293, 32.217416666666736 ], [ 35.218833333333293, 32.217333333333443 ], [ 35.218916666666587, 32.217333333333443 ], [ 35.219000000000108, 32.217333333333443 ], [ 35.219000000000108, 32.217250000000149 ], [ 35.2190492960612, 32.217049296061134 ], [ 35.219083333333401, 32.216833333333454 ], [ 35.218976603190072, 32.216791666666722 ], [ 35.219083333333401, 32.21675 ], [ 35.21916057332362, 32.21641666666676 ], [ 35.219027954101534, 32.215844345092819 ], [ 35.219841237386163, 32.215706189473622 ], [ 35.220509999593162, 32.21563036346447 ], [ 35.221019587198896, 32.21593775177007 ], [ 35.221083333333297, 32.216166666666709 ], [ 35.221537857055637, 32.216109878540124 ], [ 35.221583333333456, 32.216166666666709 ], [ 35.221638671875041, 32.21627799479171 ], [ 35.221666666666749, 32.2165 ], [ 35.221954818725635, 32.216573949178041 ], [ 35.222, 32.21675 ], [ 35.222083333333444, 32.21675 ], [ 35.222111328124981, 32.216972005208333 ], [ 35.222472005208431, 32.217027994791806 ], [ 35.222583333333432, 32.217083333333335 ], [ 35.22275, 32.217083333333335 ], [ 35.22275, 32.217166666666628 ], [ 35.223333333333301, 32.217166666666628 ], [ 35.22347200520835, 32.217194661458393 ], [ 35.223583333333409, 32.217250000000149 ], [ 35.223639322916654, 32.217360677083434 ], [ 35.22375, 32.217416666666736 ], [ 35.223833333333459, 32.217416666666736 ], [ 35.223833333333459, 32.2175 ], [ 35.224034037272077, 32.217549296061293 ], [ 35.224333333333448, 32.217583333333323 ], [ 35.22449213663748, 32.217353329976333 ], [ 35.22475, 32.217416666666736 ], [ 35.22475, 32.217333333333443 ], [ 35.224648396809926, 32.217304807027119 ], [ 35.224721471150815, 32.217231730143226 ], [ 35.22475, 32.217333333333443 ], [ 35.224870030721149, 32.217253519693998 ], [ 35.224972295125383, 32.216971697489498 ], [ 35.225358281453452, 32.217068949381542 ], [ 35.225280197143547, 32.217378857930498 ], [ 35.22475, 32.217416666666736 ], [ 35.224833724975724, 32.217582171122217 ], [ 35.224966588338134, 32.217517285664826 ], [ 35.225, 32.217583333333323 ], [ 35.225520599365268, 32.217383224487378 ], [ 35.226203725179118, 32.217287058512454 ], [ 35.2263333333334, 32.217250000000149 ], [ 35.2263333333334, 32.217166666666628 ], [ 35.22628403727208, 32.217132629394655 ], [ 35.225910034179776, 32.217048787434919 ], [ 35.225967671712226, 32.216791666666722 ], [ 35.22592221577969, 32.216588879903156 ], [ 35.226304850260419, 32.216838045756106 ], [ 35.226416666666694, 32.217 ], [ 35.226416666666694, 32.217083333333335 ], [ 35.2265, 32.217083333333335 ], [ 35.2265, 32.217166666666628 ], [ 35.226663401285919, 32.217223937988365 ], [ 35.228829610188825, 32.217121543884332 ], [ 35.229051320393864, 32.217916915893682 ], [ 35.229348129272523, 32.21807397206635 ], [ 35.229416666666737, 32.218 ], [ 35.229416666666737, 32.217916666666724 ], [ 35.229583333333323, 32.217916666666724 ], [ 35.22975, 32.217916666666724 ], [ 35.22975, 32.217833333333431 ], [ 35.229792597452786, 32.21764131927489 ], [ 35.230018564860075, 32.217553072611565 ], [ 35.230083333333312, 32.217666666666616 ], [ 35.231770980834881, 32.216842023213758 ], [ 35.233456746419279, 32.216540077209515 ], [ 35.234456705729087, 32.216452939351541 ], [ 35.233956746419267, 32.213876589457243 ], [ 35.233916666666744, 32.213833333333412 ], [ 35.233874567667613, 32.213518554687596 ], [ 35.233627344767342, 32.212455988566091 ], [ 35.233583333333399, 32.212416666666741 ], [ 35.233583333333399, 32.212333333333447 ], [ 35.233555338541805, 32.212111328125104 ], [ 35.2335, 32.212 ], [ 35.233416666666756, 32.2115 ], [ 35.233194661458413, 32.21147200520835 ], [ 35.233083333333411, 32.21125 ], [ 35.233166666666705, 32.21125 ], [ 35.233166666666705, 32.211166666666713 ], [ 35.23325, 32.211166666666713 ], [ 35.23325, 32.21108333333342 ], [ 35.23325, 32.210916666666606 ], [ 35.233166666666705, 32.210916666666606 ], [ 35.233166666666705, 32.211000000000126 ], [ 35.233055989583363, 32.210944010416654 ], [ 35.233000000000118, 32.210833333333312 ], [ 35.233000000000118, 32.21075 ], [ 35.232916666666597, 32.21075 ], [ 35.232833333333474, 32.21075 ], [ 35.232833333333474, 32.210666666666725 ], [ 35.232722005208302, 32.210722005208481 ], [ 35.232416666666609, 32.21075 ], [ 35.232333333333315, 32.210583333333432 ], [ 35.232382629394635, 32.210549296061231 ], [ 35.232465001424146, 32.210429997762162 ], [ 35.23275, 32.210500000000138 ], [ 35.232702855428045, 32.210377354939794 ], [ 35.232723002115904, 32.210215405782037 ], [ 35.232027099609468, 32.210128364563047 ], [ 35.232129608154366, 32.210046274821082 ], [ 35.23220372517909, 32.209787058512404 ], [ 35.232342549641942, 32.209675885518379 ], [ 35.232513071696019, 32.209462941487629 ], [ 35.232546997070358, 32.209623809814445 ], [ 35.232508524576872, 32.209933095296321 ], [ 35.233083333333411, 32.210166666666737 ], [ 35.233014806111612, 32.209864982604984 ], [ 35.233129608154343, 32.209462941487629 ], [ 35.23325, 32.209083333333467 ], [ 35.23325, 32.20891666666671 ], [ 35.233333333333462, 32.20891666666671 ], [ 35.233333333333462, 32.208583333333308 ], [ 35.233378097534171, 32.208544766744126 ], [ 35.233583333333399, 32.208 ], [ 35.233583333333399, 32.20783333333344 ], [ 35.233583333333399, 32.207750000000146 ], [ 35.233666666666693, 32.207750000000146 ], [ 35.233666666666693, 32.207666666666682 ], [ 35.23375, 32.207666666666682 ], [ 35.23383333333345, 32.207666666666682 ], [ 35.23383333333345, 32.207583333333332 ], [ 35.234213699340955, 32.207297030131031 ], [ 35.23425, 32.20725 ], [ 35.234558558146261, 32.207002911885581 ], [ 35.234800099690744, 32.20615811411551 ], [ 35.235250000000121, 32.20591666666661 ], [ 35.235284978230879, 32.205725069681762 ], [ 35.235333333333415, 32.205833333333317 ], [ 35.235549296061265, 32.205799296061286 ], [ 35.236416666666685, 32.205583333333436 ], [ 35.236929214477584, 32.205339004516702 ], [ 35.237618123372499, 32.205201459248883 ], [ 35.237666666666712, 32.205166666666742 ], [ 35.238666666666688, 32.205166666666742 ], [ 35.239, 32.205166666666742 ], [ 35.239, 32.20525 ], [ 35.239083333333326, 32.20525 ], [ 35.23916666666662, 32.20525 ], [ 35.239333333333434, 32.20525 ], [ 35.239333333333434, 32.205333333333328 ], [ 35.2395, 32.205333333333328 ], [ 35.2395, 32.205416666666679 ], [ 35.239666666666608, 32.205416666666679 ], [ 35.23969532267256, 32.205473307291811 ], [ 35.240027994791717, 32.205638671875022 ], [ 35.240166666666767, 32.20566666666673 ], [ 35.240218292236364, 32.205726587931281 ], [ 35.241046717325958, 32.206188796997196 ], [ 35.24125, 32.20625 ], [ 35.24125, 32.206333333333475 ], [ 35.24133333333333, 32.206333333333475 ], [ 35.242715962727971, 32.207034037272081 ], [ 35.24329755147312, 32.207418365478532 ], [ 35.2435, 32.207333333333452 ], [ 35.243866536458313, 32.207239270528248 ], [ 35.243916666666735, 32.207166666666694 ], [ 35.244177215576315, 32.207125602722272 ], [ 35.244632629394573, 32.20696596272785 ], [ 35.244833333333418, 32.206833333333464 ], [ 35.244833333333418, 32.206666666666706 ], [ 35.245083333333469, 32.206666666666706 ], [ 35.245083333333469, 32.20675 ], [ 35.24525, 32.20675 ], [ 35.24525, 32.206666666666706 ], [ 35.245333333333349, 32.206500000000119 ], [ 35.245375, 32.20639326985679 ], [ 35.245416666666699, 32.206500000000119 ], [ 35.245527343749984, 32.206444010416817 ], [ 35.245611328124994, 32.206277994791719 ], [ 35.245916666666631, 32.20625 ], [ 35.245916666666631, 32.206166666666718 ], [ 35.245888671875093, 32.206027994791668 ], [ 35.245833333333337, 32.20591666666661 ], [ 35.245626703898211, 32.205863639831648 ], [ 35.245549296061256, 32.205330006917393 ], [ 35.245962778727289, 32.205422701517875 ], [ 35.246, 32.20575 ], [ 35.24605533854168, 32.205777994791788 ], [ 35.246111328124982, 32.206388671875061 ], [ 35.246166666666738, 32.206500000000119 ], [ 35.24625, 32.206500000000119 ], [ 35.24625, 32.206416666666598 ], [ 35.246305740356547, 32.206131144205813 ], [ 35.2465, 32.206333333333475 ], [ 35.24690577189142, 32.206280240376771 ], [ 35.248767130533906, 32.20563426208497 ], [ 35.249468714396187, 32.205229761759483 ], [ 35.249666666666769, 32.205 ], [ 35.24989335123712, 32.20494182586674 ], [ 35.250083333333464, 32.204666666666753 ], [ 35.250213699340861, 32.204630363464389 ], [ 35.2505, 32.204250000000116 ], [ 35.25055373128248, 32.204208526611467 ], [ 35.250797032674143, 32.203880363464293 ], [ 35.250833333333333, 32.203583333333313 ], [ 35.250833333333333, 32.203416666666726 ], [ 35.250801101684715, 32.202941614786766 ], [ 35.250668487548865, 32.202552464803034 ], [ 35.250583333333452, 32.2025 ], [ 35.250583333333452, 32.20225 ], [ 35.2505, 32.20225 ], [ 35.25035085042316, 32.2017283376058 ], [ 35.249212941487599, 32.201453725179135 ], [ 35.249166666666781, 32.201416666666603 ], [ 35.249083333333317, 32.201416666666603 ], [ 35.248882629394529, 32.20136737060551 ], [ 35.248583333333329, 32.201333333333309 ], [ 35.248532124837254, 32.201259165446004 ], [ 35.2475, 32.201000000000136 ], [ 35.247333333333472, 32.201000000000136 ], [ 35.247333333333472, 32.200916666666672 ], [ 35.247166666666715, 32.200916666666672 ], [ 35.247055338541657, 32.200861328125086 ], [ 35.246916666666777, 32.200833333333321 ], [ 35.246805338541776, 32.200777994791792 ], [ 35.246666666666727, 32.20075 ], [ 35.246583333333433, 32.20075 ], [ 35.246583333333433, 32.200666666666734 ], [ 35.246416666666619, 32.200666666666734 ], [ 35.246377344767325, 32.200622655232792 ], [ 35.246205988566089, 32.200544011433919 ], [ 35.24566666666675, 32.200166666666746 ], [ 35.245306437174463, 32.200225840250653 ], [ 35.24511185709639, 32.200108469645329 ], [ 35.244778040568008, 32.200157801310297 ], [ 35.244798456827823, 32.200295934041321 ], [ 35.244702967325964, 32.20036963399258 ], [ 35.244630366007584, 32.200566543579157 ], [ 35.244963699340815, 32.200702967325924 ], [ 35.245, 32.20075 ], [ 35.244853912353506, 32.201041320800755 ], [ 35.244611328125018, 32.201111328125137 ], [ 35.244472005208308, 32.201222005208479 ], [ 35.244333333333429, 32.20125 ], [ 35.244250000000136, 32.20125 ], [ 35.244138671875078, 32.20119466145826 ], [ 35.243833333333441, 32.201166666666722 ], [ 35.243791666666709, 32.201273396809825 ], [ 35.24375, 32.201166666666722 ], [ 35.24375, 32.201000000000136 ], [ 35.243903752644883, 32.200935424804811 ], [ 35.244166666666615, 32.201000000000136 ], [ 35.244358261108459, 32.200965021769321 ], [ 35.244250000000136, 32.200916666666672 ], [ 35.244181406656821, 32.200781071980941 ], [ 35.24375, 32.20075 ], [ 35.243836222330742, 32.200392150878884 ], [ 35.24376390075696, 32.200026158650701 ], [ 35.244034790039166, 32.199832000732499 ], [ 35.243962107340508, 32.19978268941253 ], [ 35.243871388753234, 32.19980061340334 ], [ 35.243605606079143, 32.199631876627677 ], [ 35.243504938761475, 32.199730794270977 ], [ 35.243549906412738, 32.199958368937303 ], [ 35.243434499104865, 32.200536387125794 ], [ 35.243550923665339, 32.200619832356779 ], [ 35.243520161946662, 32.200775497436553 ], [ 35.243638346354146, 32.200961654663104 ], [ 35.243416666666747, 32.201083333333429 ], [ 35.243333333333453, 32.201083333333429 ], [ 35.243333333333453, 32.201333333333309 ], [ 35.243399531046521, 32.201466512044249 ], [ 35.243277994791697, 32.201527994791661 ], [ 35.24325, 32.201583333333417 ], [ 35.243138671875101, 32.201638671875003 ], [ 35.243, 32.201666666666711 ], [ 35.242666666666707, 32.201666666666711 ], [ 35.242666666666707, 32.20175 ], [ 35.242555338541649, 32.20180533854176 ], [ 35.24241666666677, 32.201833333333468 ], [ 35.242061238606823, 32.201671493530398 ], [ 35.241583333333438, 32.20175 ], [ 35.241541666666706, 32.201643269856902 ], [ 35.2415, 32.20175 ], [ 35.241369171142708, 32.201696238199816 ], [ 35.241275029500457, 32.202165812174542 ], [ 35.241300613403268, 32.202295277913493 ], [ 35.241196441650459, 32.202459360758382 ], [ 35.240784790039186, 32.202618123372474 ], [ 35.240715209960968, 32.202715209961013 ], [ 35.240534790039078, 32.202784790039061 ], [ 35.24046520996103, 32.202881876627657 ], [ 35.24025, 32.203 ], [ 35.240208333333328, 32.202893269856759 ], [ 35.240166666666767, 32.203 ], [ 35.24003403727221, 32.203034037272232 ], [ 35.239882629394515, 32.203132629394645 ], [ 35.239429356893027, 32.203204068501861 ], [ 35.239485102335607, 32.203452748616598 ], [ 35.239212987264125, 32.203640627543223 ], [ 35.239049296061125, 32.20353403727222 ], [ 35.238770095825259, 32.203429565429701 ], [ 35.238823445637991, 32.203191579182942 ], [ 35.238617370605539, 32.203049296061124 ], [ 35.238583333333338, 32.202750000000151 ], [ 35.239260742187525, 32.202665273030732 ], [ 35.239308115641336, 32.202284439086952 ], [ 35.239125, 32.202307215372855 ], [ 35.23893946329764, 32.202284138997413 ], [ 35.238796274821084, 32.202462941487738 ], [ 35.2385, 32.202583333333394 ], [ 35.238277994791702, 32.202611328125101 ], [ 35.2381666666667, 32.202666666666687 ], [ 35.238083333333407, 32.202666666666687 ], [ 35.238083333333407, 32.202583333333394 ], [ 35.238020222981788, 32.202458577474033 ], [ 35.237777994791713, 32.202388671875042 ], [ 35.23775, 32.202333333333456 ], [ 35.23775, 32.20225 ], [ 35.237527994791662, 32.202138671874934 ], [ 35.237500000000125, 32.202083333333405 ], [ 35.237500000000125, 32.202000000000112 ], [ 35.237583333333419, 32.202000000000112 ], [ 35.237583333333419, 32.201916666666591 ], [ 35.237649531046657, 32.201783487955709 ], [ 35.237527994791662, 32.201722005208467 ], [ 35.237416666666604, 32.201500000000124 ], [ 35.237534037272098, 32.201450703938804 ], [ 35.237931925455655, 32.201348592122429 ], [ 35.238, 32.20125 ], [ 35.2381666666667, 32.20125 ], [ 35.2381666666667, 32.201000000000136 ], [ 35.23825, 32.200833333333321 ], [ 35.238528396606569, 32.200716405232697 ], [ 35.238666666666688, 32.200916666666672 ], [ 35.238583333333338, 32.200916666666672 ], [ 35.238583333333338, 32.201083333333429 ], [ 35.2385, 32.201083333333429 ], [ 35.238380366007561, 32.201175674438502 ], [ 35.23849403889983, 32.201365681966251 ], [ 35.238583333333338, 32.20125 ], [ 35.238712748209707, 32.201315470377608 ], [ 35.23875, 32.201500000000124 ], [ 35.23875, 32.201666666666711 ], [ 35.238916666666739, 32.201666666666711 ], [ 35.239307902018254, 32.20147071838386 ], [ 35.239423309326298, 32.20123441569018 ], [ 35.239194661458384, 32.200972005208371 ], [ 35.239083333333326, 32.20075 ], [ 35.238972005208325, 32.200805338541784 ], [ 35.23875, 32.200833333333321 ], [ 35.23877799479169, 32.200611328124978 ], [ 35.238984858195067, 32.200555338541733 ], [ 35.239083333333326, 32.20075 ], [ 35.239458333333459, 32.200657892863035 ], [ 35.239833333333422, 32.20075 ], [ 35.24015795389812, 32.20061925252287 ], [ 35.24028630065925, 32.200452967325873 ], [ 35.240380366007514, 32.200380366007494 ], [ 35.240416666666704, 32.20033333333339 ], [ 35.24075, 32.20033333333339 ], [ 35.240833333333342, 32.20033333333339 ], [ 35.240833333333342, 32.20025 ], [ 35.24086785380058, 32.199976226806598 ], [ 35.241083333333449, 32.200083333333453 ], [ 35.241305338541792, 32.20011132812499 ], [ 35.241416666666623, 32.200166666666746 ], [ 35.24133333333333, 32.20033333333339 ], [ 35.241166666666743, 32.20033333333339 ], [ 35.241166666666743, 32.200416666666683 ], [ 35.241083333333449, 32.200416666666683 ], [ 35.241083333333449, 32.200500000000147 ], [ 35.241127237955766, 32.200666417439777 ], [ 35.241715209960887, 32.200548543294303 ], [ 35.24175, 32.20033333333339 ], [ 35.24175, 32.2 ], [ 35.241832845052102, 32.199833333333402 ], [ 35.24175, 32.199666666666587 ], [ 35.241836634318076, 32.199592025756772 ], [ 35.241461430867503, 32.199112940470513 ], [ 35.241783253987705, 32.198794764200841 ], [ 35.242024180094461, 32.1989907073974 ], [ 35.241794764200904, 32.199188354492208 ], [ 35.242164194742884, 32.199349594116143 ], [ 35.242353159586685, 32.199130264282246 ], [ 35.24254524739581, 32.19904455057781 ], [ 35.242511718749995, 32.198627283732208 ], [ 35.242871902465879, 32.198371902465851 ], [ 35.243, 32.198333333333437 ], [ 35.243, 32.198250000000144 ], [ 35.242893269856779, 32.198208333333412 ], [ 35.243, 32.19816666666668 ], [ 35.243195688883475, 32.198287241617948 ], [ 35.243, 32.198333333333437 ], [ 35.243, 32.198416666666731 ], [ 35.243, 32.1985 ], [ 35.242893361409472, 32.198643361409552 ], [ 35.242700347900495, 32.198786936442104 ], [ 35.242739395141655, 32.199013743082787 ], [ 35.242994903564465, 32.199202214558909 ], [ 35.243120269775375, 32.1990336812338 ], [ 35.243434682210307, 32.199087809244872 ], [ 35.243547276814866, 32.198936447143694 ], [ 35.2442072703044, 32.198797785441172 ], [ 35.244618881225563, 32.198911570231076 ], [ 35.244452214558976, 32.199035547892322 ], [ 35.244416666666723, 32.199083333333306 ], [ 35.244308405558343, 32.199131688436012 ], [ 35.2445, 32.199166666666599 ], [ 35.244638671875066, 32.199138671875062 ], [ 35.24482059224448, 32.198994155883895 ], [ 35.245, 32.199083333333306 ], [ 35.245141413370789, 32.198535222371561 ], [ 35.24566666666675, 32.197833333333449 ], [ 35.24575, 32.197833333333449 ], [ 35.24575, 32.19775 ], [ 35.246324946085622, 32.197236292521097 ], [ 35.245710678100522, 32.196105890909848 ], [ 35.2460378265381, 32.194572387695302 ], [ 35.246572494506893, 32.19340744527193 ], [ 35.247656448364182, 32.192444595337008 ], [ 35.249117970784425, 32.191201304117897 ], [ 35.249872655232878, 32.190854924519783 ], [ 35.249460678100661, 32.190789321899388 ], [ 35.246416666666619, 32.19075 ], [ 35.246416666666619, 32.190666666666743 ], [ 35.24625, 32.190666666666743 ], [ 35.246166666666738, 32.190666666666743 ], [ 35.246166666666738, 32.19058333333345 ], [ 35.246083333333445, 32.19058333333345 ], [ 35.245916666666631, 32.1905 ], [ 35.245638671875042, 32.190361328125107 ], [ 35.2455, 32.190333333333399 ], [ 35.2455, 32.190250000000106 ], [ 35.245416666666699, 32.190250000000106 ], [ 35.24527799479165, 32.190222005208341 ], [ 35.244055338541784, 32.189611328125068 ], [ 35.243916666666735, 32.189583333333303 ], [ 35.243916666666735, 32.1895 ], [ 35.243666666666627, 32.1895 ], [ 35.243666666666627, 32.189416666666716 ], [ 35.2435, 32.189416666666716 ], [ 35.243472005208332, 32.18936132812496 ], [ 35.24241666666677, 32.188833333333434 ], [ 35.242217722574992, 32.188782277425162 ], [ 35.241715962727994, 32.18845070393877 ], [ 35.2415, 32.188333333333446 ], [ 35.241416666666623, 32.188333333333446 ], [ 35.241416666666623, 32.18825 ], [ 35.240870391845704, 32.187879608154276 ], [ 35.2405, 32.187583333333407 ], [ 35.2405, 32.18741666666665 ], [ 35.240416666666704, 32.18741666666665 ], [ 35.240339533487884, 32.186660466512024 ], [ 35.239867777506618, 32.185904647827272 ], [ 35.239750000000129, 32.184750000000122 ], [ 35.239750000000129, 32.184333333333427 ], [ 35.239883127848429, 32.184265986124728 ], [ 35.239916666666716, 32.184 ], [ 35.239916666666716, 32.183833333333439 ], [ 35.239833333333422, 32.183833333333439 ], [ 35.239750000000129, 32.183833333333439 ], [ 35.239750000000129, 32.183916666666732 ], [ 35.239583333333314, 32.183916666666732 ], [ 35.239583333333314, 32.184 ], [ 35.239382629394527, 32.184049296061175 ], [ 35.239083333333326, 32.184083333333376 ], [ 35.239, 32.184083333333376 ], [ 35.239, 32.18416666666667 ], [ 35.238833333333446, 32.18416666666667 ], [ 35.23875, 32.18416666666667 ], [ 35.23875, 32.184250000000134 ], [ 35.238666666666688, 32.184250000000134 ], [ 35.2385, 32.184250000000134 ], [ 35.23825, 32.184250000000134 ], [ 35.23825, 32.184333333333427 ], [ 35.238083333333407, 32.184333333333427 ], [ 35.237916666666763, 32.184333333333427 ], [ 35.237916666666763, 32.184416666666721 ], [ 35.237833333333469, 32.184416666666721 ], [ 35.23775, 32.184416666666721 ], [ 35.23775, 32.1845 ], [ 35.237666666666712, 32.1845 ], [ 35.237666666666712, 32.184416666666721 ], [ 35.237166666666724, 32.1845 ], [ 35.237166666666724, 32.184583333333364 ], [ 35.23708333333343, 32.184583333333364 ], [ 35.23708333333343, 32.184666666666658 ], [ 35.23675, 32.184666666666658 ], [ 35.236583333333442, 32.184666666666658 ], [ 35.236583333333442, 32.184750000000122 ], [ 35.2365, 32.184750000000122 ], [ 35.236194661458285, 32.184777994791659 ], [ 35.236083333333454, 32.184833333333415 ], [ 35.235916666666697, 32.184833333333415 ], [ 35.235916666666697, 32.184916666666709 ], [ 35.235833333333403, 32.184916666666709 ], [ 35.235833333333403, 32.185 ], [ 35.235583333333466, 32.185 ], [ 35.235416666666708, 32.185 ], [ 35.235416666666708, 32.185083333333296 ], [ 35.235333333333415, 32.185083333333296 ], [ 35.235166666666601, 32.185083333333296 ], [ 35.235166666666601, 32.185166666666646 ], [ 35.235, 32.185416666666697 ], [ 35.234666666666612, 32.185416666666697 ], [ 35.234583333333319, 32.185583333333284 ], [ 35.234472005208318, 32.18563867187504 ], [ 35.23425, 32.185666666666805 ], [ 35.23425, 32.18575 ], [ 35.234083333333331, 32.18575 ], [ 35.234083333333331, 32.185833333333392 ], [ 35.234, 32.185833333333392 ], [ 35.233916666666744, 32.185833333333392 ], [ 35.233916666666744, 32.185916666666685 ], [ 35.23383333333345, 32.185916666666685 ], [ 35.233765258789049, 32.186181925455855 ], [ 35.2335, 32.18625 ], [ 35.2335, 32.18633333333338 ], [ 35.233416666666756, 32.18633333333338 ], [ 35.233416666666756, 32.186416666666673 ], [ 35.233333333333462, 32.186416666666673 ], [ 35.233333333333462, 32.186500000000137 ], [ 35.23325, 32.186500000000137 ], [ 35.23325, 32.186583333333431 ], [ 35.233166666666705, 32.186583333333431 ], [ 35.232969477335701, 32.186719477335657 ], [ 35.232833333333474, 32.186916666666662 ], [ 35.232833333333474, 32.187000000000126 ], [ 35.232666666666717, 32.187000000000126 ], [ 35.232666666666717, 32.187083333333419 ], [ 35.232583333333423, 32.187083333333419 ], [ 35.232583333333423, 32.18725 ], [ 35.232382629394635, 32.187382629394619 ], [ 35.23225, 32.18741666666665 ], [ 35.23225, 32.187500000000114 ], [ 35.232166666666728, 32.187500000000114 ], [ 35.232166666666728, 32.187583333333407 ], [ 35.232083333333435, 32.187583333333407 ], [ 35.232083333333435, 32.187666666666701 ], [ 35.232, 32.187666666666701 ], [ 35.232, 32.18775 ], [ 35.231916666666677, 32.18775 ], [ 35.231833333333327, 32.18775 ], [ 35.231833333333327, 32.187833333333288 ], [ 35.231833333333327, 32.188000000000102 ], [ 35.23166666666674, 32.188000000000102 ], [ 35.23166666666674, 32.188166666666689 ], [ 35.2315, 32.188166666666689 ], [ 35.231416666666689, 32.188166666666689 ], [ 35.231416666666689, 32.18825 ], [ 35.231333333333396, 32.18825 ], [ 35.231333333333396, 32.188333333333446 ], [ 35.23125, 32.188333333333446 ], [ 35.23125, 32.18841666666674 ], [ 35.231083333333459, 32.18841666666674 ], [ 35.230916666666701, 32.1885 ], [ 35.230916666666701, 32.188583333333384 ], [ 35.230833333333408, 32.188583333333384 ], [ 35.230805338541643, 32.188722005208433 ], [ 35.230750000000114, 32.188833333333434 ], [ 35.230666666666593, 32.188833333333434 ], [ 35.230666666666593, 32.188916666666728 ], [ 35.230750000000114, 32.188916666666728 ], [ 35.2306975606283, 32.189115427653064 ], [ 35.230416666666713, 32.189 ], [ 35.230333333333419, 32.189 ], [ 35.230210535685273, 32.188951726277764 ], [ 35.229916666666725, 32.189 ], [ 35.22975, 32.189 ], [ 35.22975, 32.189083333333372 ], [ 35.229666666666674, 32.189083333333372 ], [ 35.229583333333323, 32.189083333333372 ], [ 35.2295, 32.189083333333372 ], [ 35.2295, 32.189166666666665 ], [ 35.22925, 32.189166666666665 ], [ 35.229, 32.189166666666665 ], [ 35.229, 32.189250000000129 ], [ 35.228916666666748, 32.189250000000129 ], [ 35.228666666666697, 32.189250000000129 ], [ 35.228666666666697, 32.189166666666665 ], [ 35.228166666666709, 32.189166666666665 ], [ 35.228090092976913, 32.189273503621564 ], [ 35.227618123372338, 32.18936812337239 ], [ 35.227583333333428, 32.189416666666716 ], [ 35.226997233073007, 32.189156489054483 ], [ 35.226916666666682, 32.189250000000129 ], [ 35.226710032145263, 32.189113449096737 ], [ 35.226583333333451, 32.189166666666665 ], [ 35.22654739379891, 32.189108342488623 ], [ 35.22628988647466, 32.189028132120882 ], [ 35.226166666666586, 32.189083333333372 ], [ 35.22607278442382, 32.188947362264116 ], [ 35.225597345987978, 32.188840779622524 ], [ 35.225416666666717, 32.188916666666728 ], [ 35.225360677083415, 32.188805989583443 ], [ 35.225250000000131, 32.188750000000141 ], [ 35.225214060465589, 32.188691675821929 ], [ 35.224951624552375, 32.188609934488966 ], [ 35.224916666666729, 32.188666666666677 ], [ 35.224638671875084, 32.188527994791798 ], [ 35.224416666666741, 32.1885 ], [ 35.224416666666741, 32.18841666666674 ], [ 35.224333333333448, 32.18841666666674 ], [ 35.224333333333448, 32.188333333333446 ], [ 35.22413262939466, 32.188284037272183 ], [ 35.223916666666753, 32.18825 ], [ 35.223833333333459, 32.18825 ], [ 35.223833333333459, 32.188166666666689 ], [ 35.223621902465823, 32.188128097534275 ], [ 35.222736068725567, 32.187853719075633 ], [ 35.221022791544669, 32.187541895548634 ], [ 35.220250000000135, 32.187500000000114 ], [ 35.220250000000135, 32.187583333333407 ], [ 35.219916666666734, 32.187583333333407 ], [ 35.21893300374353, 32.187654434204205 ], [ 35.218666666666707, 32.18775 ], [ 35.21845523579924, 32.187788569132579 ], [ 35.2175, 32.188000000000102 ], [ 35.2175, 32.188083333333395 ], [ 35.217333333333386, 32.188083333333395 ], [ 35.217333333333386, 32.188166666666689 ], [ 35.217, 32.188166666666689 ], [ 35.217, 32.18825 ], [ 35.21658333333329, 32.18825 ], [ 35.216196701049796, 32.188302841186498 ], [ 35.215, 32.188583333333384 ], [ 35.215, 32.188666666666677 ], [ 35.214833333333445, 32.188666666666677 ], [ 35.214583333333394, 32.188666666666677 ], [ 35.214583333333394, 32.188750000000141 ], [ 35.214416666666807, 32.188750000000141 ], [ 35.21425, 32.188750000000141 ], [ 35.214083333333406, 32.188750000000141 ], [ 35.214083333333406, 32.188833333333434 ], [ 35.21375, 32.188833333333434 ], [ 35.21375, 32.188916666666728 ], [ 35.213666666666711, 32.188916666666728 ], [ 35.21341666666666, 32.188916666666728 ], [ 35.213333333333367, 32.188916666666728 ], [ 35.213333333333367, 32.189 ], [ 35.212666666666735, 32.189083333333372 ], [ 35.212666666666735, 32.189250000000129 ], [ 35.21225, 32.189250000000129 ], [ 35.212166666666803, 32.189250000000129 ], [ 35.212166666666803, 32.189333333333423 ], [ 35.211833333333402, 32.189333333333423 ], [ 35.211536303202422, 32.189369633992612 ], [ 35.211250000000121, 32.189416666666716 ], [ 35.211250000000121, 32.1895 ], [ 35.211166666666657, 32.1895 ], [ 35.211, 32.1895 ], [ 35.211, 32.189583333333303 ], [ 35.210750000000132, 32.189583333333303 ], [ 35.2105, 32.189583333333303 ], [ 35.2105, 32.189666666666653 ], [ 35.210416666666731, 32.189666666666653 ], [ 35.210083333333387, 32.189666666666653 ], [ 35.210083333333387, 32.189833333333411 ], [ 35.209666666666692, 32.189833333333411 ], [ 35.209666666666692, 32.189916666666704 ], [ 35.209333333333291, 32.189916666666704 ], [ 35.20908333333341, 32.189916666666704 ], [ 35.20908333333341, 32.19 ], [ 35.208916666666653, 32.19 ], [ 35.208666666666716, 32.19 ], [ 35.208666666666716, 32.190083333333291 ], [ 35.208583333333422, 32.190083333333291 ], [ 35.208416666666665, 32.190083333333291 ], [ 35.208416666666665, 32.190166666666585 ], [ 35.208333333333371, 32.190166666666585 ], [ 35.208333333333371, 32.190083333333291 ], [ 35.208222005208313, 32.190138671875047 ], [ 35.207916666666677, 32.190166666666585 ], [ 35.207916666666677, 32.190250000000106 ], [ 35.207833333333383, 32.190250000000106 ], [ 35.207527994791747, 32.190277994791813 ], [ 35.207416666666688, 32.190333333333399 ], [ 35.207315444946289, 32.19045082092299 ], [ 35.206833333333407, 32.1905 ], [ 35.206833333333407, 32.19058333333345 ], [ 35.206583333333356, 32.19058333333345 ], [ 35.206583333333356, 32.1905 ], [ 35.206416666666712, 32.19058333333345 ], [ 35.206416666666712, 32.190666666666743 ], [ 35.206166666666661, 32.190666666666743 ], [ 35.205916666666724, 32.190666666666743 ], [ 35.205916666666724, 32.19075 ], [ 35.205750000000137, 32.19075 ], [ 35.205064839681086, 32.190835698445767 ], [ 35.205, 32.190916666666681 ], [ 35.205, 32.191000000000145 ], [ 35.204666666666697, 32.191000000000145 ], [ 35.204583333333403, 32.191000000000145 ], [ 35.204583333333403, 32.191083333333438 ], [ 35.204333333333352, 32.191083333333438 ], [ 35.204305338541758, 32.191138671875024 ], [ 35.204083333333415, 32.19125 ], [ 35.204083333333415, 32.191166666666732 ], [ 35.204000000000121, 32.191166666666732 ], [ 35.20375, 32.191166666666732 ], [ 35.20375, 32.19125 ], [ 35.20366666666672, 32.19125 ], [ 35.203583333333427, 32.19125 ], [ 35.203416666666669, 32.19125 ], [ 35.203416666666669, 32.191333333333375 ], [ 35.20325, 32.191333333333375 ], [ 35.203083333333268, 32.191333333333375 ], [ 35.203, 32.191500000000133 ], [ 35.202833333333388, 32.191416666666669 ], [ 35.2025, 32.191416666666669 ], [ 35.2025, 32.191500000000133 ], [ 35.202250000000106, 32.191500000000133 ], [ 35.202250000000106, 32.191583333333426 ], [ 35.202086608886646, 32.191520528157639 ], [ 35.201411834716794, 32.191604461670011 ], [ 35.20125000000013, 32.19166666666672 ], [ 35.201215962727929, 32.191617370605456 ], [ 35.200617370605585, 32.191465962727932 ], [ 35.200583333333384, 32.191416666666669 ], [ 35.200416666666797, 32.191416666666669 ], [ 35.199867370605546, 32.19145070393887 ], [ 35.199794563293494, 32.191556152343878 ], [ 35.199538892110297, 32.191389663696327 ], [ 35.199500000000114, 32.191333333333375 ], [ 35.198916666666662, 32.191333333333375 ], [ 35.198666666666782, 32.191333333333375 ], [ 35.198583333333261, 32.191333333333375 ], [ 35.198583333333261, 32.19125 ], [ 35.1985, 32.19125 ], [ 35.198166666666793, 32.19125 ], [ 35.198166666666793, 32.191166666666732 ], [ 35.198083333333273, 32.191166666666732 ], [ 35.198083333333273, 32.19125 ], [ 35.198, 32.19125 ], [ 35.197916666666686, 32.19125 ], [ 35.197833333333392, 32.19125 ], [ 35.197833333333392, 32.191166666666732 ], [ 35.197083333333353, 32.191166666666732 ], [ 35.197083333333353, 32.19125 ], [ 35.197, 32.19125 ], [ 35.196833333333416, 32.19125 ], [ 35.196666666666658, 32.19125 ], [ 35.1965553385416, 32.191305338541781 ], [ 35.196250000000134, 32.191333333333375 ], [ 35.195666666666682, 32.191333333333375 ], [ 35.1955, 32.191333333333375 ], [ 35.1955, 32.191416666666669 ], [ 35.195416666666802, 32.191416666666669 ], [ 35.194916722615631, 32.191479197184321 ], [ 35.194833333333349, 32.191583333333426 ], [ 35.194405937194745, 32.191655939738041 ], [ 35.194333333333361, 32.19175 ], [ 35.194117370605454, 32.191784037272214 ], [ 35.193916666666667, 32.191833333333307 ], [ 35.193916666666667, 32.191916666666657 ], [ 35.193833333333373, 32.191916666666657 ], [ 35.193333333333385, 32.192000000000121 ], [ 35.193333333333385, 32.192083333333414 ], [ 35.19325, 32.192083333333414 ], [ 35.193083333333334, 32.192083333333414 ], [ 35.193083333333334, 32.192166666666708 ], [ 35.193, 32.192166666666708 ], [ 35.192781771341913, 32.192198435465514 ], [ 35.192033200581875, 32.192446116129588 ], [ 35.192, 32.192500000000109 ], [ 35.192, 32.192583333333403 ], [ 35.191750000000127, 32.192583333333403 ], [ 35.191666666666663, 32.192583333333403 ], [ 35.191666666666663, 32.192666666666696 ], [ 35.1915, 32.192666666666696 ], [ 35.1915, 32.19275 ], [ 35.19125, 32.19275 ], [ 35.191166666666675, 32.19275 ], [ 35.191166666666675, 32.192833333333454 ], [ 35.191, 32.192833333333454 ], [ 35.19083333333333, 32.192833333333454 ], [ 35.19083333333333, 32.192916666666747 ], [ 35.19075, 32.192916666666747 ], [ 35.190534036000599, 32.192950703938777 ], [ 35.190333333333342, 32.193 ], [ 35.190333333333342, 32.193083333333391 ], [ 35.19025, 32.193083333333391 ], [ 35.190000000000111, 32.193083333333391 ], [ 35.190000000000111, 32.193166666666684 ], [ 35.190000000000111, 32.193250000000148 ], [ 35.189916666666647, 32.193250000000148 ], [ 35.18975, 32.193250000000148 ], [ 35.189694010416758, 32.193360677083319 ], [ 35.189583333333246, 32.193416666666735 ], [ 35.189416666666659, 32.193416666666735 ], [ 35.189333333333366, 32.193416666666735 ], [ 35.189333333333366, 32.1935 ], [ 35.18925, 32.1935 ], [ 35.189083333333258, 32.193583333333379 ], [ 35.189083333333258, 32.193666666666672 ], [ 35.189, 32.193666666666672 ], [ 35.188916666666671, 32.193666666666672 ], [ 35.188916666666671, 32.193750000000136 ], [ 35.188833333333378, 32.193750000000136 ], [ 35.188833333333378, 32.19383333333343 ], [ 35.188666666666791, 32.19383333333343 ], [ 35.188666666666791, 32.193916666666723 ], [ 35.1885, 32.193916666666723 ], [ 35.188279336293476, 32.194202545166092 ], [ 35.188, 32.194250000000125 ], [ 35.188, 32.194333333333418 ], [ 35.187916666666695, 32.194333333333418 ], [ 35.187916666666695, 32.194416666666712 ], [ 35.187833333333401, 32.194416666666712 ], [ 35.187833333333401, 32.1945 ], [ 35.187750000000108, 32.1945 ], [ 35.187666666666644, 32.1945 ], [ 35.187666666666644, 32.194583333333298 ], [ 35.18758333333335, 32.194583333333298 ], [ 35.18758333333335, 32.194666666666592 ], [ 35.1875, 32.194666666666592 ], [ 35.1875, 32.194750000000113 ], [ 35.187416666666763, 32.194750000000113 ], [ 35.187416666666763, 32.1949166666667 ], [ 35.18725000000012, 32.1949166666667 ], [ 35.18716601562511, 32.195082682291741 ], [ 35.187, 32.195166666666751 ], [ 35.187, 32.195333333333394 ], [ 35.186833333333254, 32.195333333333394 ], [ 35.186833333333254, 32.195416666666688 ], [ 35.18675, 32.195416666666688 ], [ 35.18675, 32.195500000000152 ], [ 35.186666666666667, 32.195500000000152 ], [ 35.186666666666667, 32.195666666666739 ], [ 35.186583333333374, 32.195666666666739 ], [ 35.186583333333374, 32.195833333333383 ], [ 35.186416666666787, 32.195833333333383 ], [ 35.186340548197563, 32.196129943847666 ], [ 35.186166666666679, 32.19625 ], [ 35.186166666666679, 32.196333333333314 ], [ 35.186166666666679, 32.196416666666664 ], [ 35.186083333333386, 32.196416666666664 ], [ 35.186083333333386, 32.196500000000128 ], [ 35.186083333333386, 32.196583333333422 ], [ 35.186, 32.196583333333422 ], [ 35.185965963999422, 32.196715962727978 ], [ 35.185739827474094, 32.197214914957726 ], [ 35.185666666666691, 32.197500000000105 ], [ 35.185666666666691, 32.197583333333398 ], [ 35.185583333333398, 32.197583333333398 ], [ 35.185583333333398, 32.197666666666692 ], [ 35.185583333333398, 32.198 ], [ 35.18541666666664, 32.198 ], [ 35.18541666666664, 32.198083333333386 ], [ 35.18541666666664, 32.1985 ], [ 35.185333333333347, 32.1985 ], [ 35.185333333333347, 32.198833333333425 ], [ 35.18525, 32.198833333333425 ], [ 35.18525, 32.199 ], [ 35.18525, 32.199166666666599 ], [ 35.18516666666676, 32.199166666666599 ], [ 35.18516666666676, 32.1995 ], [ 35.18516666666676, 32.199666666666587 ], [ 35.18516666666676, 32.199916666666695 ], [ 35.185083333333409, 32.199916666666695 ], [ 35.185083333333409, 32.2 ], [ 35.185083333333409, 32.200416666666683 ], [ 35.185000000000116, 32.200416666666683 ], [ 35.185000000000116, 32.200500000000147 ], [ 35.185000000000116, 32.201000000000136 ], [ 35.184916666666652, 32.201000000000136 ], [ 35.184916666666652, 32.20125 ], [ 35.184833333333358, 32.20125 ], [ 35.184833333333358, 32.201416666666603 ], [ 35.184940064748162, 32.201458333333392 ], [ 35.184833333333358, 32.201500000000124 ], [ 35.18475, 32.201500000000124 ], [ 35.18475, 32.201666666666711 ], [ 35.184833333333358, 32.201666666666711 ], [ 35.184833333333358, 32.202000000000112 ], [ 35.184666666666772, 32.202000000000112 ], [ 35.184666666666772, 32.202166666666699 ], [ 35.184666666666772, 32.20241666666675 ], [ 35.184583333333251, 32.20241666666675 ], [ 35.184583333333251, 32.2025 ], [ 35.184583333333251, 32.202750000000151 ], [ 35.1845, 32.202750000000151 ], [ 35.1845, 32.202833333333444 ], [ 35.1845, 32.203166666666675 ], [ 35.184416666666664, 32.203166666666675 ], [ 35.184416666666664, 32.203250000000139 ], [ 35.184416666666664, 32.2035 ], [ 35.18433333333337, 32.2035 ], [ 35.18433333333337, 32.203583333333313 ], [ 35.18433333333337, 32.203833333333421 ], [ 35.18425, 32.203833333333421 ], [ 35.184166666666783, 32.204 ], [ 35.184166666666783, 32.204083333333472 ], [ 35.184166666666783, 32.204166666666595 ], [ 35.184273398081586, 32.204208333333327 ], [ 35.184166666666783, 32.204250000000116 ], [ 35.184094064076874, 32.204300127665306 ], [ 35.183954218546546, 32.204845062255913 ], [ 35.183916666666676, 32.205083333333448 ], [ 35.183882630666176, 32.205382629394649 ], [ 35.183784036000588, 32.205784037272224 ], [ 35.18375, 32.206000000000131 ], [ 35.183583333333331, 32.206000000000131 ], [ 35.183583333333331, 32.206083333333424 ], [ 35.183666666666795, 32.206083333333424 ], [ 35.183666666666795, 32.206333333333475 ], [ 35.1835, 32.206333333333475 ], [ 35.1835, 32.206416666666598 ], [ 35.183462187449209, 32.206545522054114 ], [ 35.183214159647719, 32.207127215067544 ], [ 35.183166666666807, 32.207166666666694 ], [ 35.183083333333343, 32.207166666666694 ], [ 35.183083333333343, 32.20725 ], [ 35.183083333333343, 32.207333333333452 ], [ 35.183149532318112, 32.207466512044334 ], [ 35.183027994791757, 32.207527994791803 ], [ 35.182916666666756, 32.207750000000146 ], [ 35.182833820343149, 32.207916666666733 ], [ 35.182916666666756, 32.20808333333332 ], [ 35.182866539001509, 32.20827866617833 ], [ 35.182666666666648, 32.208416666666722 ], [ 35.182625, 32.208309936523392 ], [ 35.182583333333355, 32.208416666666722 ], [ 35.182583333333355, 32.2085 ], [ 35.1825, 32.2085 ], [ 35.1825, 32.208583333333308 ], [ 35.182416666666768, 32.208583333333308 ], [ 35.182416666666768, 32.208666666666602 ], [ 35.182416666666768, 32.208750000000123 ], [ 35.182333333333247, 32.208750000000123 ], [ 35.182333333333247, 32.208833333333416 ], [ 35.182333333333247, 32.20891666666671 ], [ 35.18225, 32.20891666666671 ], [ 35.181462037404344, 32.210443519592388 ], [ 35.181416666666792, 32.210583333333432 ], [ 35.181416666666792, 32.210666666666725 ], [ 35.181333333333328, 32.210666666666725 ], [ 35.181333333333328, 32.21075 ], [ 35.181333333333328, 32.210833333333312 ], [ 35.18125, 32.210833333333312 ], [ 35.18108333333339, 32.211166666666713 ], [ 35.18108333333339, 32.211333333333471 ], [ 35.181, 32.211333333333471 ], [ 35.180938116709456, 32.211697616577226 ], [ 35.18075, 32.21175 ], [ 35.18069466145846, 32.211861328124996 ], [ 35.180666666666752, 32.212 ], [ 35.180666666666752, 32.212083333333339 ], [ 35.180583333333402, 32.212083333333339 ], [ 35.180583333333402, 32.21216666666669 ], [ 35.180583333333402, 32.21225 ], [ 35.180500000000109, 32.21225 ], [ 35.180500000000109, 32.212416666666741 ], [ 35.180416666666645, 32.212416666666741 ], [ 35.180416666666645, 32.212750000000142 ], [ 35.18025, 32.212750000000142 ], [ 35.18025, 32.212916666666729 ], [ 35.180166666666764, 32.212916666666729 ], [ 35.1801326300303, 32.213132629394579 ], [ 35.17992217636106, 32.213455815633267 ], [ 35.17975, 32.2135 ], [ 35.17975, 32.213666666666768 ], [ 35.179583333333312, 32.213666666666768 ], [ 35.179583333333312, 32.21375 ], [ 35.179583333333312, 32.213833333333412 ], [ 35.1795, 32.213833333333412 ], [ 35.1795, 32.213916666666705 ], [ 35.179416666666668, 32.213916666666705 ], [ 35.179333333333375, 32.213916666666705 ], [ 35.179333333333375, 32.214 ], [ 35.179333333333375, 32.214083333333463 ], [ 35.17925, 32.214083333333463 ], [ 35.17925, 32.21425 ], [ 35.179166666666788, 32.21425 ], [ 35.179166666666788, 32.214333333333343 ], [ 35.179083333333324, 32.214333333333343 ], [ 35.179083333333324, 32.214416666666693 ], [ 35.179, 32.214416666666693 ], [ 35.178889322916689, 32.214472656250109 ], [ 35.178833333333387, 32.214583333333451 ], [ 35.178833333333387, 32.214666666666744 ], [ 35.17875, 32.214666666666744 ], [ 35.17875, 32.21475 ], [ 35.1786666666668, 32.21475 ], [ 35.1786666666668, 32.214833333333331 ], [ 35.178583333333336, 32.214833333333331 ], [ 35.178583333333336, 32.21475 ], [ 35.1785, 32.21475 ], [ 35.1785, 32.214833333333331 ], [ 35.1785, 32.215000000000146 ], [ 35.178416666666749, 32.215000000000146 ], [ 35.178416666666749, 32.215083333333439 ], [ 35.178250000000105, 32.215166666666732 ], [ 35.178250000000105, 32.21525 ], [ 35.17831175295521, 32.215455106099398 ], [ 35.178416666666749, 32.215333333333319 ], [ 35.178715963363686, 32.215299296061289 ], [ 35.179034036636438, 32.215200703938933 ], [ 35.179382630030432, 32.215132629394532 ], [ 35.179497703552329, 32.214965962727945 ], [ 35.180215963363764, 32.215034037272176 ], [ 35.180617369333959, 32.215132629394532 ], [ 35.181, 32.215166666666732 ], [ 35.181040136973138, 32.215211588541649 ], [ 35.182205989837712, 32.215460678100612 ], [ 35.182583333333355, 32.215500000000134 ], [ 35.182617369334025, 32.215549296061226 ], [ 35.183083333333343, 32.215666666666721 ], [ 35.183386015574229, 32.215785657246954 ], [ 35.183666666666795, 32.215833333333478 ], [ 35.183833333333382, 32.215916666666772 ], [ 35.184, 32.215916666666772 ], [ 35.184083663940498, 32.216013776143541 ], [ 35.18428856786096, 32.216128100077299 ], [ 35.184648181915406, 32.216288566589355 ], [ 35.18516666666676, 32.216583333333347 ], [ 35.185277994791761, 32.216527994791818 ], [ 35.18541666666664, 32.2165 ], [ 35.185666666666691, 32.216333333333466 ], [ 35.18582765070596, 32.216375803629546 ], [ 35.185961508433024, 32.216562563578407 ], [ 35.186034791310703, 32.216284792582314 ], [ 35.186466238657715, 32.216215042114356 ], [ 35.186550376892228, 32.21578925577802 ], [ 35.1865, 32.215666666666721 ], [ 35.1865, 32.215583333333427 ], [ 35.186388671875022, 32.215527013142946 ], [ 35.186451568603559, 32.215434501647962 ], [ 35.186583333333374, 32.215500000000134 ], [ 35.186649532318143, 32.215366821289194 ], [ 35.186527994791788, 32.215305338541782 ], [ 35.1865, 32.21525 ], [ 35.186361328125031, 32.215222005208318 ], [ 35.18625, 32.215166666666732 ], [ 35.186166666666679, 32.215166666666732 ], [ 35.186137369791709, 32.215108754475978 ], [ 35.18588325500491, 32.214984652201338 ], [ 35.185833333333335, 32.215083333333439 ], [ 35.18571294275921, 32.214986925761025 ], [ 35.185798534393427, 32.214756106058815 ], [ 35.186416666666787, 32.214833333333331 ], [ 35.186416666666787, 32.214916666666625 ], [ 35.1865, 32.214916666666625 ], [ 35.18654987843837, 32.215116572062186 ], [ 35.186851535797189, 32.215192576090487 ], [ 35.187, 32.214916666666625 ], [ 35.187333333333413, 32.21475 ], [ 35.187630364735924, 32.214630363464323 ], [ 35.187702968597534, 32.214536303202351 ], [ 35.188036301930708, 32.214443478902297 ], [ 35.187963698069325, 32.214369636535764 ], [ 35.187786301930828, 32.214297030131149 ], [ 35.187750000000108, 32.21425 ], [ 35.187632722218837, 32.213937886555982 ], [ 35.188121145884281, 32.213987668355287 ], [ 35.187953303019185, 32.213729054768919 ], [ 35.18770690027884, 32.213703941345216 ], [ 35.1875, 32.21375 ], [ 35.1875, 32.213666666666768 ], [ 35.1875, 32.213333333333424 ], [ 35.18753630193072, 32.213286303202324 ], [ 35.188480283101512, 32.213212399800682 ], [ 35.188130364735912, 32.212952969868923 ], [ 35.187833333333401, 32.212916666666729 ], [ 35.187611328125058, 32.212805338541671 ], [ 35.187527343750048, 32.2126393229168 ], [ 35.187416666666763, 32.212583333333328 ], [ 35.187283541361467, 32.212515986124629 ], [ 35.18725000000012, 32.21225 ], [ 35.187166666666656, 32.21225 ], [ 35.187110178629666, 32.212452855428069 ], [ 35.186478541056317, 32.212359514872333 ], [ 35.186380364735896, 32.21211963653576 ], [ 35.18625, 32.211916666666752 ], [ 35.186138671875142, 32.211972005208338 ], [ 35.186, 32.212 ], [ 35.186, 32.211916666666752 ], [ 35.185916666666799, 32.21175 ], [ 35.186032933553065, 32.211666666666702 ], [ 35.185916666666799, 32.211583333333408 ], [ 35.186026832580694, 32.211321042378756 ], [ 35.18575, 32.21125 ], [ 35.186017177581789, 32.210795532226712 ], [ 35.186456116994236, 32.210690979003914 ], [ 35.186126588185743, 32.21038565317798 ], [ 35.186320021311417, 32.21037117004397 ], [ 35.1865, 32.210378303527818 ], [ 35.18675, 32.21036839294436 ], [ 35.187040190378923, 32.210379895528149 ], [ 35.187123411814355, 32.210290077209493 ], [ 35.187290078481112, 32.210135653177872 ], [ 35.187126588185663, 32.210040077209612 ], [ 35.187, 32.21000000000015 ], [ 35.187, 32.209916666666686 ], [ 35.186583333333374, 32.209916666666686 ], [ 35.186583333333374, 32.210083333333444 ], [ 35.186233875274638, 32.210205818176348 ], [ 35.186126588185743, 32.209892504374238 ], [ 35.186823746999039, 32.209726442972965 ], [ 35.187, 32.209916666666686 ], [ 35.187083333333362, 32.209916666666686 ], [ 35.187166666666656, 32.209916666666686 ], [ 35.187166666666656, 32.209833333333336 ], [ 35.187647276560597, 32.209560096740745 ], [ 35.188362907409726, 32.209451049804784 ], [ 35.188166666666802, 32.20891666666671 ], [ 35.188265349070207, 32.208866744995078 ], [ 35.188167396545339, 32.208666178385556 ], [ 35.18825, 32.2085 ], [ 35.188535001118964, 32.208570002237991 ], [ 35.188617369333997, 32.208450703938922 ], [ 35.18875, 32.208416666666722 ], [ 35.188934707641636, 32.208390843709424 ], [ 35.188817142486698, 32.208277605692615 ], [ 35.189062890370735, 32.208229558308915 ], [ 35.189083333333258, 32.20783333333344 ], [ 35.189033205668238, 32.207638000488259 ], [ 35.188636145273904, 32.207363853454638 ], [ 35.1885, 32.207166666666694 ], [ 35.1885, 32.206833333333464 ], [ 35.188783924102893, 32.206882743835479 ], [ 35.188870390574209, 32.207379608154383 ], [ 35.189096387227437, 32.207474840799989 ], [ 35.189346407572486, 32.207787058512508 ], [ 35.189598718007403, 32.207626592000395 ], [ 35.189666666666767, 32.207083333333401 ], [ 35.189708333333328, 32.206976603190242 ], [ 35.18975, 32.207083333333401 ], [ 35.190083333333405, 32.207083333333401 ], [ 35.190083333333405, 32.207 ], [ 35.18998465092983, 32.206950078328475 ], [ 35.190109263102329, 32.206694920857842 ], [ 35.190333333333342, 32.206666666666706 ], [ 35.190389322916587, 32.206777343749991 ], [ 35.1905000000001, 32.206833333333464 ], [ 35.190583333333393, 32.206833333333464 ], [ 35.190583333333393, 32.20675 ], [ 35.190666666666687, 32.20675 ], [ 35.190666666666687, 32.206666666666706 ], [ 35.190666666666687, 32.206500000000119 ], [ 35.190666666666687, 32.206416666666598 ], [ 35.19083333333333, 32.206416666666598 ], [ 35.191083333333381, 32.206416666666598 ], [ 35.19125, 32.206333333333475 ], [ 35.191166666666675, 32.206166666666718 ], [ 35.191083333333381, 32.206166666666718 ], [ 35.191083333333381, 32.206083333333424 ], [ 35.191166666666675, 32.206083333333424 ], [ 35.191166666666675, 32.20591666666661 ], [ 35.191083333333381, 32.20591666666661 ], [ 35.191118125915523, 32.205784792582165 ], [ 35.191227066040028, 32.205519686381024 ], [ 35.190967066446945, 32.205333333333328 ], [ 35.191083333333381, 32.20525 ], [ 35.191276606241843, 32.205212239583375 ], [ 35.191140060424857, 32.204954427083351 ], [ 35.191333333333262, 32.204916666666691 ], [ 35.191555338541662, 32.204888671874926 ], [ 35.191666666666663, 32.204833333333397 ], [ 35.191750000000127, 32.204833333333397 ], [ 35.19183333333325, 32.204833333333397 ], [ 35.19183333333325, 32.20475 ], [ 35.192219739278187, 32.204719739278119 ], [ 35.192291127522822, 32.204594533284649 ], [ 35.192593633016031, 32.204469739278238 ], [ 35.192416666666702, 32.204833333333397 ], [ 35.192546081543071, 32.204898801167928 ], [ 35.192583333333346, 32.205083333333448 ], [ 35.193264111836754, 32.205122538248702 ], [ 35.193399350484242, 32.205452969869043 ], [ 35.193630363464365, 32.205380363464428 ], [ 35.193906664530459, 32.205213696797841 ], [ 35.194014294942292, 32.20550797780362 ], [ 35.193869636535567, 32.20561963653563 ], [ 35.193797030130952, 32.205713696797829 ], [ 35.193651466369545, 32.205826057434138 ], [ 35.194083333333253, 32.206000000000131 ], [ 35.194132802327488, 32.206128697713211 ], [ 35.193640243530183, 32.206269526163794 ], [ 35.194031097412108, 32.206434224446753 ], [ 35.193787058512441, 32.206537058512424 ], [ 35.19375, 32.206583333333413 ], [ 35.193542523702035, 32.206480201721149 ], [ 35.193248542785625, 32.206623774210698 ], [ 35.19345809173592, 32.206729779561499 ], [ 35.193527994791737, 32.206972005208343 ], [ 35.193694010416777, 32.207055989583353 ], [ 35.19375, 32.207166666666694 ], [ 35.193864430745464, 32.207258300781177 ], [ 35.193666666666786, 32.207416666666745 ], [ 35.193600466410317, 32.207283487955863 ], [ 35.193722005208315, 32.20722200520845 ], [ 35.19375, 32.207166666666694 ], [ 35.1935, 32.207166666666694 ], [ 35.1935, 32.20725 ], [ 35.193416666666678, 32.20725 ], [ 35.193416666666678, 32.207333333333452 ], [ 35.193416666666678, 32.207416666666745 ], [ 35.1935, 32.207416666666745 ], [ 35.193544212341351, 32.207697189331043 ], [ 35.193882629394636, 32.207784037272177 ], [ 35.19403355407718, 32.20800262959807 ], [ 35.193815874735606, 32.208152923584066 ], [ 35.193885864257879, 32.208465133667062 ], [ 35.193496782938723, 32.208564982096505 ], [ 35.193382629394648, 32.208694760640526 ], [ 35.193549296061292, 32.20895070393891 ], [ 35.193583333333265, 32.209166666666761 ], [ 35.193583333333265, 32.209333333333404 ], [ 35.193615104675303, 32.209468228658181 ], [ 35.193718228658042, 32.209615104675265 ], [ 35.193808675130242, 32.209880513509233 ], [ 35.19375, 32.209916666666686 ], [ 35.193666666666786, 32.209916666666686 ], [ 35.193666666666786, 32.21000000000015 ], [ 35.19375, 32.21000000000015 ], [ 35.19375, 32.210083333333444 ], [ 35.193638671875021, 32.210138671875029 ], [ 35.1935, 32.210166666666737 ], [ 35.193388671875141, 32.21038867187508 ], [ 35.193333333333385, 32.210416666666617 ], [ 35.193166666666798, 32.210416666666617 ], [ 35.193166666666798, 32.210083333333444 ], [ 35.193208333333359, 32.209976603190114 ], [ 35.19325, 32.210083333333444 ], [ 35.19325, 32.210166666666737 ], [ 35.1935, 32.210166666666737 ], [ 35.1935, 32.21000000000015 ], [ 35.1935, 32.209916666666686 ], [ 35.193416666666678, 32.209916666666686 ], [ 35.193375000000117, 32.209809936523527 ], [ 35.193333333333385, 32.209916666666686 ], [ 35.193200703938828, 32.209882629394656 ], [ 35.19309234619152, 32.209725692749089 ], [ 35.192932022094737, 32.209632629394548 ], [ 35.192967753092489, 32.20979201507572 ], [ 35.19291666666669, 32.21000000000015 ], [ 35.192790852864675, 32.210090174357163 ], [ 35.192715207417791, 32.210438939412427 ], [ 35.193062291463207, 32.210687708536852 ], [ 35.193226776123026, 32.210917198181164 ], [ 35.19309062449139, 32.211482256571514 ], [ 35.192854665120421, 32.211853917439782 ], [ 35.192316375732389, 32.211961832682391 ], [ 35.191975980122947, 32.212177942911865 ], [ 35.191583333333369, 32.212083333333339 ], [ 35.191546765645455, 32.212225827535065 ], [ 35.191299296061288, 32.212034037272247 ], [ 35.190808427174943, 32.211908065795967 ], [ 35.190965963999417, 32.211799296061258 ], [ 35.191, 32.21175 ], [ 35.191034037272118, 32.211450703938795 ], [ 35.191166193644335, 32.21124775695796 ], [ 35.190861427307198, 32.211049296061219 ], [ 35.190706298828104, 32.211185747782395 ], [ 35.190632630666187, 32.211382629394564 ], [ 35.19030171966557, 32.211506449381545 ], [ 35.19041747538256, 32.212022804260243 ], [ 35.190017679850257, 32.21211242930093 ], [ 35.18975, 32.212 ], [ 35.189645086924315, 32.211878227233967 ], [ 35.189583333333246, 32.212083333333339 ], [ 35.189551904042617, 32.212507397969546 ], [ 35.189387916565011, 32.212323399861646 ], [ 35.189477287292505, 32.212124478658041 ], [ 35.189416666666659, 32.212 ], [ 35.189536575317504, 32.211896692911864 ], [ 35.189547009786054, 32.21176683298745 ], [ 35.189436979929724, 32.21104476674401 ], [ 35.189194817861051, 32.211331792195779 ], [ 35.189229670206771, 32.211765546162894 ], [ 35.189083333333258, 32.212 ], [ 35.189036301930855, 32.212036303202296 ], [ 35.188963698069301, 32.212213696797733 ], [ 35.188812942504967, 32.212330060323154 ], [ 35.188881787618072, 32.212795931498192 ], [ 35.188781885782987, 32.212873044332014 ], [ 35.188884780883768, 32.213043622334908 ], [ 35.188718555450521, 32.213171925862753 ], [ 35.188847670237294, 32.214045644124383 ], [ 35.189286301930792, 32.214073331197085 ], [ 35.189036301930855, 32.213880363464455 ], [ 35.188963698069301, 32.213720987955753 ], [ 35.189217520395971, 32.213075330098434 ], [ 35.189416666666659, 32.213333333333424 ], [ 35.189416666666659, 32.21375 ], [ 35.189583333333246, 32.21375 ], [ 35.189611328125011, 32.213805338541647 ], [ 35.189833333333354, 32.213916666666705 ], [ 35.18993387858086, 32.213795623779333 ], [ 35.190000000000111, 32.214166666666756 ], [ 35.1901512616476, 32.214395563761457 ], [ 35.190000000000111, 32.2145 ], [ 35.190147200266495, 32.214795092264922 ], [ 35.18995335261036, 32.215027994791683 ], [ 35.18988867187511, 32.214611328124988 ], [ 35.189833333333354, 32.2145 ], [ 35.1896236534119, 32.214411931355869 ], [ 35.189270966847857, 32.214490994771381 ], [ 35.189323576609411, 32.214725674947147 ], [ 35.189083333333258, 32.214666666666744 ], [ 35.189041666666697, 32.214559936523472 ], [ 35.189, 32.214666666666744 ], [ 35.188916666666671, 32.214666666666744 ], [ 35.188916666666671, 32.21475 ], [ 35.188954479217443, 32.214795522054089 ], [ 35.189194842020697, 32.214995180765868 ], [ 35.188788414001465, 32.214953755696627 ], [ 35.18875, 32.215000000000146 ], [ 35.188552209218471, 32.214901682535924 ], [ 35.188472005208439, 32.215044034322091 ], [ 35.188666666666791, 32.215083333333439 ], [ 35.188722005208376, 32.21519466145844 ], [ 35.18875, 32.215500000000134 ], [ 35.188493802388507, 32.215577135721901 ], [ 35.188356580098457, 32.215736409505212 ], [ 35.188044765472398, 32.21562189992278 ], [ 35.1875, 32.215500000000134 ], [ 35.1875, 32.215416666666613 ], [ 35.187416666666763, 32.215416666666613 ], [ 35.187143745422361, 32.2154510828654 ], [ 35.187228740692206, 32.215625119527317 ], [ 35.187166666666656, 32.21575 ], [ 35.187166666666656, 32.216 ], [ 35.186916666666775, 32.216 ], [ 35.186916666666775, 32.215916666666772 ], [ 35.186833333333254, 32.215916666666772 ], [ 35.186833333333254, 32.216 ], [ 35.18675, 32.216 ], [ 35.18675, 32.216166666666709 ], [ 35.186666666666667, 32.216166666666709 ], [ 35.186559935251864, 32.216208333333441 ], [ 35.186666666666667, 32.21625 ], [ 35.186666666666667, 32.21641666666676 ], [ 35.186583333333374, 32.21641666666676 ], [ 35.1865, 32.21641666666676 ], [ 35.1865, 32.2165 ], [ 35.1865, 32.216666666666697 ], [ 35.186416666666787, 32.216666666666697 ], [ 35.186353553771937, 32.216791425069232 ], [ 35.186063112894715, 32.216875241597506 ], [ 35.186, 32.217 ], [ 35.186083333333386, 32.217 ], [ 35.186083333333386, 32.217166666666628 ], [ 35.186201457977347, 32.21721520741778 ], [ 35.186465208689469, 32.217284792582291 ], [ 35.186701457977335, 32.217381874084595 ], [ 35.187343875885006, 32.217510665893599 ], [ 35.187534791310668, 32.217631874084475 ], [ 35.187666666666644, 32.217666666666616 ], [ 35.187600467681875, 32.217533487955734 ], [ 35.187829133351727, 32.217417811075904 ], [ 35.187944661458459, 32.217631612142043 ], [ 35.187666666666644, 32.217666666666616 ], [ 35.187722845713324, 32.217777717590479 ], [ 35.188166666666802, 32.218 ], [ 35.18825, 32.218 ], [ 35.188362721761109, 32.217842730204268 ], [ 35.188924865722697, 32.217715207417768 ], [ 35.189, 32.218 ], [ 35.188734012603788, 32.218033541361535 ], [ 35.188666666666791, 32.218166666666775 ], [ 35.188666666666791, 32.21825 ], [ 35.188583333333327, 32.21825 ], [ 35.188583333333327, 32.218333333333419 ], [ 35.1885, 32.218333333333419 ], [ 35.188796457926458, 32.218703542073683 ], [ 35.189166666666779, 32.219 ], [ 35.189368124643977, 32.218868125915549 ], [ 35.189713176727423, 32.218777091979916 ], [ 35.189784791310672, 32.219048540751146 ], [ 35.189949600219791, 32.219166666666752 ], [ 35.189784791310672, 32.219284792582187 ], [ 35.189715208689393, 32.219548540751134 ], [ 35.189666666666767, 32.219583333333446 ], [ 35.189687864939401, 32.219812136332223 ], [ 35.189895468394013, 32.220021197001245 ], [ 35.189916666666647, 32.22025 ], [ 35.189861328125062, 32.220222005208484 ], [ 35.189805338541589, 32.220111328125142 ], [ 35.189639322916719, 32.220027343750132 ], [ 35.189583333333246, 32.21991666666662 ], [ 35.189416666666659, 32.21991666666662 ], [ 35.189416666666659, 32.219833333333327 ], [ 35.189375, 32.219726603190225 ], [ 35.189333333333366, 32.219833333333327 ], [ 35.188952968597391, 32.219547030131025 ], [ 35.188916666666671, 32.219500000000153 ], [ 35.188805989583386, 32.21944401041668 ], [ 35.188694010416782, 32.219222656250054 ], [ 35.188527994791741, 32.219138671875044 ], [ 35.188472005208439, 32.218972986857125 ], [ 35.188583333333327, 32.218916666666701 ], [ 35.18875, 32.21883333333335 ], [ 35.18875, 32.21875 ], [ 35.188583333333327, 32.21875 ], [ 35.188583333333327, 32.218666666666763 ], [ 35.188478706359888, 32.2185151316325 ], [ 35.188083333333338, 32.21825 ], [ 35.188017865498978, 32.218120585123756 ], [ 35.187833333333401, 32.218083333333311 ], [ 35.187612345377659, 32.218455602010181 ], [ 35.187216344197566, 32.21825160217287 ], [ 35.187125832875552, 32.217817334493134 ], [ 35.187333333333413, 32.217750000000137 ], [ 35.187214683532716, 32.21758445739755 ], [ 35.186381024678553, 32.217418011983284 ], [ 35.186271704355988, 32.217701459248985 ], [ 35.186116041819275, 32.217462003072114 ], [ 35.186134457906064, 32.21736880747477 ], [ 35.186, 32.217333333333443 ], [ 35.186, 32.2175 ], [ 35.185833333333335, 32.2175 ], [ 35.185794035593688, 32.217694661458381 ], [ 35.185638671874983, 32.217607126871826 ], [ 35.185698660532751, 32.217433057149321 ], [ 35.185833333333335, 32.2175 ], [ 35.185833333333335, 32.217250000000149 ], [ 35.185611328124992, 32.217138671875091 ], [ 35.185388671875103, 32.216944661458285 ], [ 35.18525, 32.216916666666748 ], [ 35.18514689890543, 32.217032058715915 ], [ 35.184877343495828, 32.216813608805467 ], [ 35.185083333333409, 32.21675 ], [ 35.185041858673117, 32.216696268717442 ], [ 35.184625328063987, 32.21638745117184 ], [ 35.18434670766203, 32.216853304545168 ], [ 35.184119635264153, 32.216547030131153 ], [ 35.184083333333319, 32.21641666666676 ], [ 35.184, 32.21641666666676 ], [ 35.184, 32.21625 ], [ 35.183628098805684, 32.216038566589475 ], [ 35.183333333333394, 32.215916666666772 ], [ 35.183300595601395, 32.216273740132692 ], [ 35.183028779347808, 32.216140993754209 ], [ 35.182972005208285, 32.215972986857082 ], [ 35.183083333333343, 32.215916666666772 ], [ 35.182968617757297, 32.215783515930298 ], [ 35.182322719573961, 32.215606745402113 ], [ 35.181267548878964, 32.215376592000382 ], [ 35.18075, 32.215333333333319 ], [ 35.180383630116808, 32.215150576273686 ], [ 35.180333333333351, 32.21525 ], [ 35.180222005208293, 32.21519466145844 ], [ 35.180083333333243, 32.215166666666732 ], [ 35.180041666666682, 32.215059936523403 ], [ 35.18, 32.215166666666732 ], [ 35.179772036234567, 32.215070917765274 ], [ 35.179455557505321, 32.215277005513599 ], [ 35.179416666666668, 32.215333333333319 ], [ 35.179239016214979, 32.215258717854908 ], [ 35.179, 32.215416666666613 ], [ 35.17891666666668, 32.215300399780403 ], [ 35.178833333333387, 32.215416666666613 ], [ 35.1786666666668, 32.215500000000134 ], [ 35.1785, 32.215583333333427 ], [ 35.178416666666749, 32.21546706644699 ], [ 35.178333333333399, 32.215583333333427 ], [ 35.178166666666641, 32.215666666666721 ], [ 35.178166666666641, 32.21575 ], [ 35.178, 32.21575 ], [ 35.177833333333467, 32.21575 ], [ 35.177833333333467, 32.215833333333478 ], [ 35.177833333333467, 32.215916666666772 ], [ 35.1775, 32.215916666666772 ], [ 35.17746274693809, 32.216101198832177 ], [ 35.177277994791723, 32.216194661458417 ], [ 35.17725, 32.21625 ], [ 35.177083333333371, 32.216166666666709 ], [ 35.17704166666681, 32.21605993652355 ], [ 35.177, 32.216166666666709 ], [ 35.17675, 32.216166666666709 ], [ 35.17675, 32.21625 ], [ 35.176666666666677, 32.21625 ], [ 35.176666666666677, 32.216333333333466 ], [ 35.176465838114495, 32.216248982747402 ], [ 35.176034511566172, 32.216529856364048 ], [ 35.176000000000101, 32.216833333333454 ], [ 35.175916666666808, 32.216833333333454 ], [ 35.175916666666808, 32.216916666666748 ], [ 35.175916666666808, 32.217 ], [ 35.175916666666808, 32.217083333333335 ], [ 35.175833333333344, 32.217083333333335 ], [ 35.175833333333344, 32.217166666666628 ], [ 35.175833333333344, 32.217250000000149 ], [ 35.17575, 32.217250000000149 ], [ 35.17575, 32.217333333333443 ], [ 35.175666666666757, 32.217333333333443 ], [ 35.175371901194239, 32.217788566589491 ], [ 35.174955565452535, 32.218510683695513 ], [ 35.174833333333368, 32.218916666666701 ], [ 35.174833333333368, 32.219 ], [ 35.17475, 32.219 ], [ 35.174641093889988, 32.219391092936348 ], [ 35.1745, 32.21975 ], [ 35.174453723907504, 32.22012039184574 ], [ 35.174416666666673, 32.220666666666716 ], [ 35.174416666666673, 32.220833333333474 ], [ 35.174333333333379, 32.220833333333474 ], [ 35.174333333333379, 32.220916666666767 ], [ 35.174333333333379, 32.221166666666704 ], [ 35.174333333333379, 32.222166666666624 ], [ 35.174333333333379, 32.22291666666672 ], [ 35.174284036318568, 32.223117370605507 ], [ 35.17425, 32.2235 ], [ 35.17411736965181, 32.22403403727219 ], [ 35.174083333333328, 32.224333333333334 ], [ 35.174083333333328, 32.224500000000148 ], [ 35.174, 32.224500000000148 ], [ 35.174, 32.224583333333442 ], [ 35.174, 32.224666666666735 ], [ 35.173916666666742, 32.224666666666735 ], [ 35.173916666666742, 32.224833333333322 ], [ 35.173916666666742, 32.224916666666786 ], [ 35.173833333333391, 32.224916666666786 ], [ 35.173777994791692, 32.225027994791674 ], [ 35.17375, 32.225166666666723 ], [ 35.17358333333334, 32.2255 ], [ 35.173527994791755, 32.225611328125126 ], [ 35.1735, 32.22575 ], [ 35.1735, 32.225916666666762 ], [ 35.173416666666753, 32.225916666666762 ], [ 35.173416666666753, 32.226083333333349 ], [ 35.17333333333346, 32.226083333333349 ], [ 35.17319466145841, 32.226361328124995 ], [ 35.173166666666646, 32.2265 ], [ 35.173068072954777, 32.226568073272745 ], [ 35.173, 32.226833333333445 ], [ 35.173, 32.226916666666739 ], [ 35.172916666666765, 32.226916666666739 ], [ 35.172916666666765, 32.227 ], [ 35.172916666666765, 32.22716666666679 ], [ 35.172833333333301, 32.22716666666679 ], [ 35.172786301930842, 32.22720296859751 ], [ 35.172627864519768, 32.227590084076041 ], [ 35.172583333333364, 32.22775 ], [ 35.172583333333364, 32.227833333333365 ], [ 35.172583333333364, 32.227916666666715 ], [ 35.1725, 32.227916666666715 ], [ 35.1725, 32.228 ], [ 35.1725, 32.228083333333473 ], [ 35.172416666666777, 32.228083333333473 ], [ 35.172333333333313, 32.228083333333473 ], [ 35.172333333333313, 32.228166666666766 ], [ 35.172449600855487, 32.22825 ], [ 35.172333333333313, 32.228333333333353 ], [ 35.172277994791727, 32.228361328125118 ], [ 35.172111590385555, 32.228692581176745 ], [ 35.172083333333376, 32.228916666666635 ], [ 35.172083333333376, 32.229 ], [ 35.172, 32.229 ], [ 35.172, 32.229166666666742 ], [ 35.172, 32.22925 ], [ 35.171916666666789, 32.22925 ], [ 35.171916666666789, 32.229416666666793 ], [ 35.171916666666789, 32.229833333333318 ], [ 35.17175, 32.229833333333318 ], [ 35.17175, 32.230166666666719 ], [ 35.17175, 32.230333333333476 ], [ 35.171666666666738, 32.230333333333476 ], [ 35.171666666666738, 32.230833333333464 ], [ 35.171666666666738, 32.23125 ], [ 35.171583333333388, 32.23125 ], [ 35.171583333333388, 32.231833333333441 ], [ 35.171583333333388, 32.232166666666785 ], [ 35.1715, 32.232166666666785 ], [ 35.1715, 32.232916666666654 ], [ 35.1715, 32.233 ], [ 35.171416666666801, 32.233 ], [ 35.171416666666801, 32.234 ], [ 35.171416666666801, 32.234083333333444 ], [ 35.171333333333337, 32.234083333333444 ], [ 35.171333333333337, 32.235 ], [ 35.171333333333337, 32.235083333333364 ], [ 35.17125, 32.235083333333364 ], [ 35.17125, 32.235333333333472 ], [ 35.17125, 32.235666666666646 ], [ 35.17125, 32.235916666666753 ], [ 35.171356731414846, 32.235958333333315 ], [ 35.17125, 32.236 ], [ 35.17116666666675, 32.236 ], [ 35.17116666666675, 32.23625 ], [ 35.171362357616374, 32.236370577494426 ], [ 35.17116666666675, 32.236416666666742 ], [ 35.171121901035349, 32.23687190119432 ], [ 35.171083333333456, 32.237416666666661 ], [ 35.171083333333456, 32.237583333333475 ], [ 35.171, 32.237583333333475 ], [ 35.171, 32.23775 ], [ 35.171, 32.237833333333356 ], [ 35.171, 32.237916666666649 ], [ 35.170916666666642, 32.237916666666649 ], [ 35.170916666666642, 32.238083333333464 ], [ 35.170916666666642, 32.23825 ], [ 35.170833333333348, 32.23825 ], [ 35.170833333333348, 32.238333333333344 ], [ 35.170833333333348, 32.238416666666808 ], [ 35.170833333333348, 32.238583333333452 ], [ 35.17075, 32.238583333333452 ], [ 35.17075, 32.23875 ], [ 35.170666666666762, 32.23875 ], [ 35.170568072954893, 32.238818072637002 ], [ 35.1705, 32.239083333333383 ], [ 35.1705, 32.239166666666733 ], [ 35.170583333333468, 32.239166666666733 ], [ 35.170833333333348, 32.239166666666733 ], [ 35.170833333333348, 32.23925 ], [ 35.171, 32.23925 ], [ 35.171, 32.23933333333332 ], [ 35.171, 32.239416666666784 ], [ 35.171083333333456, 32.239416666666784 ], [ 35.171083333333456, 32.2395 ], [ 35.17121596352257, 32.239700703303129 ], [ 35.17125, 32.239833333333479 ], [ 35.171333333333337, 32.239833333333479 ], [ 35.171333333333337, 32.239916666666772 ], [ 35.171413321971954, 32.240006189982125 ], [ 35.17253932285314, 32.240794010480386 ], [ 35.172666666666657, 32.240833333333455 ], [ 35.172747028668709, 32.240937446594216 ], [ 35.173119635264072, 32.241213698069203 ], [ 35.17325, 32.24125 ], [ 35.173305989583412, 32.241360677083435 ], [ 35.173416666666753, 32.241416666666737 ], [ 35.17358333333334, 32.2415 ], [ 35.173648801485683, 32.241629413604812 ], [ 35.173833333333391, 32.241666666666788 ], [ 35.173937888463286, 32.241779510180152 ], [ 35.174583333333317, 32.24225 ], [ 35.174784036318556, 32.242382630348175 ], [ 35.174916666666661, 32.242416666666657 ], [ 35.175066140492731, 32.242590161641488 ], [ 35.176453994751057, 32.243579338550603 ], [ 35.17675, 32.24375 ], [ 35.176777994791735, 32.24380533854179 ], [ 35.177, 32.243916666666792 ], [ 35.177131821314504, 32.244087447961306 ], [ 35.177819061915102, 32.244357617060302 ], [ 35.178166666666641, 32.24441666666678 ], [ 35.178166666666641, 32.2445 ], [ 35.178250000000105, 32.2445 ], [ 35.178575277964342, 32.244573887189233 ], [ 35.179166666666788, 32.2445 ], [ 35.179963514328051, 32.244404083728909 ], [ 35.18079733530692, 32.245371901035355 ], [ 35.184806498209696, 32.245294539213148 ], [ 35.184916666666652, 32.245166666666819 ], [ 35.185083333333409, 32.245166666666819 ], [ 35.185083333333409, 32.245083333333355 ], [ 35.18516666666676, 32.245083333333355 ], [ 35.18516666666676, 32.245 ], [ 35.185333333333347, 32.245 ], [ 35.185333333333347, 32.244916666666768 ], [ 35.185575172424308, 32.244785234371818 ], [ 35.186049297332886, 32.2444659635226 ], [ 35.186083333333386, 32.24441666666678 ], [ 35.186166666666679, 32.24441666666678 ], [ 35.186166666666679, 32.244333333333316 ], [ 35.18634669494628, 32.244279130935695 ], [ 35.187451616923113, 32.243495700518281 ], [ 35.18831328837075, 32.24342646423986 ], [ 35.188955234527612, 32.243711432298085 ], [ 35.189083333333258, 32.24375 ], [ 35.189121901194369, 32.243794765631378 ], [ 35.189544765472533, 32.244038567702034 ], [ 35.19036776860554, 32.244743342002266 ], [ 35.190666666666687, 32.244833333333474 ], [ 35.190666666666687, 32.24475 ], [ 35.190916666666794, 32.24475 ], [ 35.190916666666794, 32.244916666666768 ], [ 35.191, 32.244916666666768 ], [ 35.191066879272512, 32.24483315102259 ], [ 35.191641606648773, 32.244495310624416 ], [ 35.19211108144134, 32.244361080805504 ], [ 35.192209879557311, 32.2440155266126 ], [ 35.192453725179064, 32.243820259253198 ], [ 35.192379608154397, 32.243620390574222 ], [ 35.192166666666651, 32.243333333333339 ] ], [ [ 35.186306339263922, 32.2434422354699 ], [ 35.186254358927442, 32.243617369810863 ], [ 35.185872680664033, 32.243531805992063 ], [ 35.18575, 32.24358333333339 ], [ 35.185713698069321, 32.243536302089808 ], [ 35.185463698069213, 32.243433982690249 ], [ 35.185549528757747, 32.243062367757148 ], [ 35.185916666666799, 32.243 ], [ 35.186164680480886, 32.243063646952351 ], [ 35.186306339263922, 32.2434422354699 ] ], [ [ 35.183702968597515, 32.24352054119106 ], [ 35.183333333333394, 32.24358333333339 ], [ 35.183416666666687, 32.243416666666803 ], [ 35.183547031402611, 32.243380364576922 ], [ 35.183626136779765, 32.243096289157961 ], [ 35.183702968597515, 32.24352054119106 ] ], [ [ 35.179666666666776, 32.2435 ], [ 35.17987102444971, 32.243830566247368 ], [ 35.179441088994338, 32.243955989519861 ], [ 35.179464546839426, 32.24356241321567 ], [ 35.179666666666776, 32.2435 ] ], [ [ 35.178837466557809, 32.243856276512247 ], [ 35.179288750966407, 32.243967121442267 ], [ 35.179333333333375, 32.24425 ], [ 35.179021197636871, 32.244228802045313 ], [ 35.178812135696489, 32.244021197954794 ], [ 35.1786666666668, 32.244 ], [ 35.178700703303093, 32.243950703144094 ], [ 35.178837466557809, 32.243856276512247 ] ], [ [ 35.17875, 32.244083333333379 ], [ 35.178721472422296, 32.244184935251894 ], [ 35.178648398081577, 32.244111860752241 ], [ 35.17875, 32.244083333333379 ] ], [ [ 35.1835, 32.24425 ], [ 35.183583333333331, 32.24425 ], [ 35.183583333333331, 32.244333333333316 ], [ 35.183690537770644, 32.244389799595012 ], [ 35.183619555155474, 32.244612083355662 ], [ 35.183583333333331, 32.244333333333316 ], [ 35.1835, 32.244333333333316 ], [ 35.1835, 32.24425 ], [ 35.183299395243409, 32.244111494541187 ], [ 35.183427108764761, 32.243965963522612 ], [ 35.1835, 32.24425 ] ], [ [ 35.183898398081453, 32.244111860752241 ], [ 35.184, 32.244083333333379 ], [ 35.183971472422343, 32.244184935251894 ], [ 35.183898398081453, 32.244111860752241 ] ], [ [ 35.182583333333355, 32.244333333333316 ], [ 35.182662846883204, 32.244510834217181 ], [ 35.182384895324731, 32.244455602884386 ], [ 35.182583333333355, 32.244333333333316 ] ], [ [ 35.18381506474816, 32.244611860752229 ], [ 35.183916666666676, 32.244583333333367 ], [ 35.183888139089049, 32.244684935331463 ], [ 35.18381506474816, 32.244611860752229 ] ], [ [ 35.183333333333394, 32.24466666666666 ], [ 35.18341284688313, 32.244844167550525 ], [ 35.183134895324827, 32.244788936217617 ], [ 35.183333333333394, 32.24466666666666 ] ], [ [ 35.184731731414843, 32.242861860911148 ], [ 35.184833333333358, 32.242833333333351 ], [ 35.184804805755732, 32.242934935251867 ], [ 35.184731731414843, 32.242861860911148 ] ], [ [ 35.186517298380579, 32.242871145884294 ], [ 35.186303229014072, 32.242613437652665 ], [ 35.186121145884158, 32.242462187449178 ], [ 35.186045520782613, 32.242214155515171 ], [ 35.186416666666787, 32.242166666666776 ], [ 35.186614934285615, 32.242609522501596 ], [ 35.186517298380579, 32.242871145884294 ] ], [ [ 35.18892593510958, 32.242347778002454 ], [ 35.188536301930867, 32.242047031402592 ], [ 35.18838036473602, 32.241822077433369 ], [ 35.188631355285565, 32.241630364735897 ], [ 35.189225060780814, 32.241803472518939 ], [ 35.189181912740139, 32.242095457077085 ], [ 35.189439852396617, 32.242523071607025 ], [ 35.189083333333258, 32.242666666666764 ], [ 35.189, 32.242666666666764 ], [ 35.188916666666671, 32.242666666666764 ], [ 35.188833333333378, 32.242666666666764 ], [ 35.188833333333378, 32.242583333333471 ], [ 35.18892593510958, 32.242347778002454 ] ], [ [ 35.190388671875098, 32.24237263107301 ], [ 35.190583333333393, 32.242333333333363 ], [ 35.190686206817702, 32.24254028956102 ], [ 35.190461818695212, 32.242611328125008 ], [ 35.190388671875098, 32.24237263107301 ] ], [ [ 35.191802317301551, 32.241718984286024 ], [ 35.191864349365346, 32.241531015714088 ], [ 35.192, 32.2415 ], [ 35.19207671356213, 32.241667670567949 ], [ 35.191841453552229, 32.242162505467718 ], [ 35.1915523173015, 32.242128315925697 ], [ 35.191664911906059, 32.241800442695649 ], [ 35.191802317301551, 32.241718984286024 ] ], [ [ 35.187784036000608, 32.241279618581132 ], [ 35.18758333333335, 32.241583333333324 ], [ 35.187416666666763, 32.2415 ], [ 35.187331583658874, 32.241297426859546 ], [ 35.187685246785577, 32.241165094057749 ], [ 35.187784036000608, 32.241279618581132 ] ], [ [ 35.190891693115361, 32.24120044422159 ], [ 35.191083333333381, 32.2411666666668 ], [ 35.19103805287682, 32.241272475878532 ], [ 35.190891693115361, 32.24120044422159 ] ], [ [ 35.18125, 32.237916666666649 ], [ 35.181167396545447, 32.238082844416454 ], [ 35.181271787007745, 32.238296594619783 ], [ 35.180903238932331, 32.238361328125052 ], [ 35.181110244751039, 32.237944880167731 ], [ 35.18125, 32.237916666666649 ], [ 35.18125, 32.237833333333356 ], [ 35.181148398081461, 32.237804805755729 ], [ 35.181221472422351, 32.23773173141484 ], [ 35.18125, 32.237833333333356 ], [ 35.181361328125035, 32.2377779947916 ], [ 35.181583333333379, 32.23775 ], [ 35.181665697733649, 32.23770833333333 ], [ 35.181472656250094, 32.237610677083467 ], [ 35.181371260325193, 32.237410243988109 ], [ 35.181289180755698, 32.237694661458477 ], [ 35.181194661458449, 32.237638671875061 ], [ 35.181166666666684, 32.237416666666661 ], [ 35.180972005208389, 32.237377368927071 ], [ 35.181033977508548, 32.237267376581883 ], [ 35.181166666666684, 32.237333333333368 ], [ 35.181264394124469, 32.237215684254977 ], [ 35.181790691375795, 32.237547335306886 ], [ 35.18191666666678, 32.2375 ], [ 35.181950253804644, 32.237766354242979 ], [ 35.18225, 32.237916666666649 ], [ 35.182348196665544, 32.237682872136418 ], [ 35.182034036000573, 32.237465963363718 ], [ 35.182, 32.237416666666661 ], [ 35.182083333333367, 32.237416666666661 ], [ 35.182083333333367, 32.237333333333368 ], [ 35.182416666666768, 32.237166666666781 ], [ 35.1825, 32.237166666666781 ], [ 35.1825, 32.237083333333317 ], [ 35.182470494588244, 32.237029505411783 ], [ 35.182220494588194, 32.236952262242596 ], [ 35.18283759435019, 32.236888572692976 ], [ 35.182720494588352, 32.237172671635903 ], [ 35.182946172078516, 32.237387161254901 ], [ 35.183083333333343, 32.237416666666661 ], [ 35.183139652252294, 32.237527994791719 ], [ 35.183522768656474, 32.237463453292833 ], [ 35.183416666666687, 32.23725 ], [ 35.1835, 32.23725 ], [ 35.1835, 32.237166666666781 ], [ 35.183784281412841, 32.237120708465625 ], [ 35.183863728841175, 32.236718655904269 ], [ 35.183666666666795, 32.236666666666792 ], [ 35.183625, 32.236559935251989 ], [ 35.183583333333331, 32.236666666666792 ], [ 35.183540078480974, 32.236706744512048 ], [ 35.183387399037656, 32.236871527353969 ], [ 35.1835, 32.236333333333448 ], [ 35.183790320078572, 32.236284015019748 ], [ 35.183833333333382, 32.23583333333346 ], [ 35.183833333333382, 32.235666666666646 ], [ 35.184119635264153, 32.235286301930671 ], [ 35.184213698069357, 32.235213698069288 ], [ 35.18437355804457, 32.234604693094809 ], [ 35.184452968597384, 32.234779012044328 ], [ 35.18433333333337, 32.235083333333364 ], [ 35.184416666666664, 32.235083333333364 ], [ 35.1845, 32.235083333333364 ], [ 35.1845, 32.235 ], [ 35.184583333333251, 32.235 ], [ 35.184649551391715, 32.235133216222152 ], [ 35.184416666666664, 32.23525 ], [ 35.184455234527604, 32.235544765472468 ], [ 35.184621774037737, 32.235688247044834 ], [ 35.184416666666664, 32.23575 ], [ 35.184416666666664, 32.235916666666753 ], [ 35.18433333333337, 32.235916666666753 ], [ 35.184156113942549, 32.236537057240866 ], [ 35.184296276092539, 32.236462942759204 ], [ 35.18433333333337, 32.236416666666742 ], [ 35.184523427327406, 32.236466817855899 ], [ 35.184751331329437, 32.236784791946491 ], [ 35.184881875356041, 32.236715208053738 ], [ 35.184979307810465, 32.236462581634555 ], [ 35.185521333058659, 32.236353916168241 ], [ 35.18572222137459, 32.23603749656678 ], [ 35.185381875356029, 32.235906230926446 ], [ 35.185534791310545, 32.235784791946514 ], [ 35.185666666666691, 32.23575 ], [ 35.185860363006555, 32.235643827438366 ], [ 35.18575, 32.235583333333352 ], [ 35.185666666666691, 32.235583333333352 ], [ 35.185619635264118, 32.235547031402632 ], [ 35.185040168762328, 32.235451841354461 ], [ 35.18468795903533, 32.235554535548033 ], [ 35.184713977813772, 32.235378474553443 ], [ 35.185083333333409, 32.235333333333472 ], [ 35.185361923217727, 32.23529166666674 ], [ 35.185083333333409, 32.23525 ], [ 35.185083333333409, 32.235083333333364 ], [ 35.18525, 32.235083333333364 ], [ 35.185291666666785, 32.235190064748224 ], [ 35.185333333333347, 32.235083333333364 ], [ 35.185441622416306, 32.235032883962106 ], [ 35.185346079508463, 32.234866217295348 ], [ 35.185473515828448, 32.234806849161828 ], [ 35.185500000000104, 32.23475 ], [ 35.185500000000104, 32.234583333333376 ], [ 35.185858239491893, 32.234675267537455 ], [ 35.18575, 32.23475 ], [ 35.18575, 32.234833333333313 ], [ 35.185833333333335, 32.235 ], [ 35.185564875284797, 32.235024871826283 ], [ 35.185771198272846, 32.23522880236311 ], [ 35.186, 32.23525 ], [ 35.186222005208435, 32.235222005208414 ], [ 35.186277994791737, 32.235111328125129 ], [ 35.186484856923414, 32.235055338541656 ], [ 35.186583333333374, 32.23525 ], [ 35.18675, 32.235333333333472 ], [ 35.186948827107813, 32.235256907780979 ], [ 35.186968699137367, 32.235416666666765 ], [ 35.1869232419333, 32.235782119115129 ], [ 35.187107784271348, 32.235805073420295 ], [ 35.187180494944187, 32.235220511754335 ], [ 35.18675, 32.235166666666657 ], [ 35.18675, 32.235083333333364 ], [ 35.187382630666036, 32.235049297332864 ], [ 35.187628077189231, 32.234597667694118 ], [ 35.187877267201884, 32.234653530120966 ], [ 35.187990614573209, 32.234211846669552 ], [ 35.188166666666802, 32.234166666666738 ], [ 35.188093599955209, 32.234052533467661 ], [ 35.187833333333401, 32.234166666666738 ], [ 35.187799297332731, 32.2339507026673 ], [ 35.187608654022199, 32.233704718272008 ], [ 35.187784036000608, 32.233450702667369 ], [ 35.187882630666195, 32.233382630666142 ], [ 35.187972867329847, 32.233251935323096 ], [ 35.188166666666802, 32.233333333333348 ], [ 35.188241564432815, 32.233789271036756 ], [ 35.187933704376292, 32.233875 ], [ 35.188213698069376, 32.233952968597521 ], [ 35.188378821055096, 32.234052572886242 ], [ 35.188416666666683, 32.233916666666801 ], [ 35.1885, 32.233916666666801 ], [ 35.1885, 32.23375 ], [ 35.188583333333327, 32.23375 ], [ 35.188583333333327, 32.23366666666675 ], [ 35.188666666666791, 32.23366666666675 ], [ 35.188666666666791, 32.2335 ], [ 35.188666666666791, 32.233333333333348 ], [ 35.18875, 32.233333333333348 ], [ 35.18875, 32.23325 ], [ 35.188625862121626, 32.233187201181977 ], [ 35.188555338541732, 32.232951721191455 ], [ 35.188833333333378, 32.232916666666654 ], [ 35.189095624288029, 32.232806500752758 ], [ 35.189166666666779, 32.233083333333468 ], [ 35.188913126627654, 32.233228089650595 ], [ 35.188795520782605, 32.233628854115807 ], [ 35.188630678812672, 32.234067551930764 ], [ 35.18875, 32.234166666666738 ], [ 35.188786301930804, 32.234297031402605 ], [ 35.188963698069301, 32.234369635264216 ], [ 35.189202968597442, 32.234517316182519 ], [ 35.188883347829233, 32.234648129781078 ], [ 35.188680530548197, 32.234385369618849 ], [ 35.188398878733437, 32.234297031402605 ], [ 35.18825, 32.234666666666726 ], [ 35.188371774037705, 32.234771579742414 ], [ 35.188166666666802, 32.234833333333313 ], [ 35.188166666666802, 32.234916666666777 ], [ 35.18854929733277, 32.234882630666107 ], [ 35.188894630432173, 32.234737585703556 ], [ 35.189221906026319, 32.234950702667277 ], [ 35.189465963999453, 32.234882630666107 ], [ 35.189551506042392, 32.234549297332876 ], [ 35.189715963999561, 32.234617369333932 ], [ 35.189916666666647, 32.23475 ], [ 35.189916666666647, 32.2345 ], [ 35.190333333333342, 32.2345 ], [ 35.190333333333342, 32.234416666666789 ], [ 35.190813786824549, 32.234337741851846 ], [ 35.19075, 32.2345 ], [ 35.190666666666687, 32.2345 ], [ 35.190666666666687, 32.234583333333376 ], [ 35.19075, 32.234583333333376 ], [ 35.19083333333333, 32.234583333333376 ], [ 35.191034037272118, 32.23471596399952 ], [ 35.191313240051386, 32.234820434570338 ], [ 35.1912482503256, 32.235110338846937 ], [ 35.190997370402044, 32.235283554712964 ], [ 35.190882630666124, 32.235117369969828 ], [ 35.19083333333333, 32.235083333333364 ], [ 35.190916081746423, 32.234916862487921 ], [ 35.190583333333393, 32.23475 ], [ 35.190472005208392, 32.234972005208363 ], [ 35.190306318918999, 32.235027994791608 ], [ 35.190182654062824, 32.234783541361537 ], [ 35.189916666666647, 32.23475 ], [ 35.189916666666647, 32.234916666666777 ], [ 35.189721410115624, 32.235041666666802 ], [ 35.189916666666647, 32.235166666666657 ], [ 35.190112358093245, 32.235287244160986 ], [ 35.189916666666647, 32.235333333333472 ], [ 35.189916666666647, 32.235416666666765 ], [ 35.189833333333354, 32.235416666666765 ], [ 35.189611328125011, 32.235305338541707 ], [ 35.189583333333246, 32.23525 ], [ 35.189703723907598, 32.235153592427594 ], [ 35.189487944285133, 32.235056926727395 ], [ 35.189333333333366, 32.23525 ], [ 35.189156749725385, 32.235180581410873 ], [ 35.188963698069301, 32.235297031402581 ], [ 35.188711828867667, 32.235400115966911 ], [ 35.188583333333327, 32.236166666666804 ], [ 35.188635351816856, 32.236378450393715 ], [ 35.188511772155891, 32.236568226496502 ], [ 35.188091251373407, 32.236437877019284 ], [ 35.187791666666669, 32.236505036672099 ], [ 35.187488255818778, 32.236437018712479 ], [ 35.187416666666763, 32.236333333333448 ], [ 35.187416666666763, 32.23625 ], [ 35.187333333333413, 32.23625 ], [ 35.187291666666681, 32.236143268585295 ], [ 35.18725000000012, 32.23625 ], [ 35.187, 32.23625 ], [ 35.187, 32.236333333333448 ], [ 35.186951457977386, 32.236368125279796 ], [ 35.186881875356107, 32.23646520805363 ], [ 35.186332266489785, 32.236575393676731 ], [ 35.186472221374629, 32.236795836766646 ], [ 35.186284791310641, 32.236868125279784 ], [ 35.18625, 32.23691666666673 ], [ 35.185916666666799, 32.23691666666673 ], [ 35.185845624288049, 32.236639834086191 ], [ 35.185583333333398, 32.23675 ], [ 35.185500000000104, 32.23675 ], [ 35.185500000000104, 32.23691666666673 ], [ 35.18541666666664, 32.23691666666673 ], [ 35.18541666666664, 32.237 ], [ 35.18538036473592, 32.237380364735998 ], [ 35.184952968597543, 32.237452968597552 ], [ 35.184880364735932, 32.237547249476165 ], [ 35.185818911234605, 32.237706685384182 ], [ 35.185916666666799, 32.237833333333356 ], [ 35.186, 32.238 ], [ 35.186083333333386, 32.238166666666757 ], [ 35.18625, 32.238166666666757 ], [ 35.186329029083367, 32.238112101872844 ], [ 35.186049297332886, 32.23791896311451 ], [ 35.186132785797213, 32.237651276906377 ], [ 35.186295431772805, 32.237614815394181 ], [ 35.1865, 32.23775 ], [ 35.1865, 32.238083333333464 ], [ 35.186416666666787, 32.238083333333464 ], [ 35.186416666666787, 32.23825 ], [ 35.186333333333323, 32.23825 ], [ 35.186399532318092, 32.238383177439459 ], [ 35.186200586954783, 32.238483820597423 ], [ 35.186083333333386, 32.23825 ], [ 35.185916666666799, 32.23825 ], [ 35.185916666666799, 32.238416666666808 ], [ 35.186, 32.238416666666808 ], [ 35.186, 32.2385 ], [ 35.185916666666799, 32.2385 ], [ 35.185916666666799, 32.238416666666808 ], [ 35.18575, 32.238416666666808 ], [ 35.18575, 32.2385 ], [ 35.18575, 32.238583333333452 ], [ 35.185666666666691, 32.238583333333452 ], [ 35.185583333333398, 32.238583333333452 ], [ 35.185583333333398, 32.238666666666745 ], [ 35.185500000000104, 32.238666666666745 ], [ 35.185500000000104, 32.23875 ], [ 35.185500000000104, 32.238916666666796 ], [ 35.18541666666664, 32.238916666666796 ], [ 35.185333333333347, 32.238916666666796 ], [ 35.185333333333347, 32.238833333333332 ], [ 35.185333333333347, 32.23875 ], [ 35.185020552317326, 32.238624020894463 ], [ 35.18516666666676, 32.238583333333452 ], [ 35.185222656250005, 32.23847265625011 ], [ 35.185388671875103, 32.2383886718751 ], [ 35.185448092142735, 32.238182774861684 ], [ 35.185583333333398, 32.23825 ], [ 35.18575, 32.23825 ], [ 35.18575, 32.238166666666757 ], [ 35.185833333333335, 32.238 ], [ 35.18575, 32.238 ], [ 35.18575, 32.237916666666649 ], [ 35.185666666666691, 32.237916666666649 ], [ 35.18541666666664, 32.237916666666649 ], [ 35.18541666666664, 32.238 ], [ 35.185379609425979, 32.238046276092632 ], [ 35.184635664622078, 32.238139326095677 ], [ 35.184416666666664, 32.238 ], [ 35.184705234527655, 32.237492420832268 ], [ 35.184539148966508, 32.237453932444339 ], [ 35.184453069051074, 32.237646842320885 ], [ 35.184243802388607, 32.237827135721886 ], [ 35.184166666666783, 32.238083333333464 ], [ 35.184083333333319, 32.238083333333464 ], [ 35.184041666666758, 32.237976601918604 ], [ 35.184, 32.238083333333464 ], [ 35.18374973932913, 32.238123791376779 ], [ 35.183637729644772, 32.238690629323457 ], [ 35.18397974522918, 32.238822538375871 ], [ 35.184203483581598, 32.239134700139516 ], [ 35.184618124644089, 32.239034791946494 ], [ 35.185048542022798, 32.238965208053742 ], [ 35.185212504069057, 32.238861112594691 ], [ 35.185311133066818, 32.239116839091025 ], [ 35.185500000000104, 32.239166666666733 ], [ 35.185527994791642, 32.239305338541783 ], [ 35.185583333333398, 32.239416666666784 ], [ 35.185666666666691, 32.239416666666784 ], [ 35.185666666666691, 32.2395 ], [ 35.185817690531394, 32.239469511667892 ], [ 35.18575, 32.23933333333332 ], [ 35.186150430043654, 32.239013028462864 ], [ 35.186333333333323, 32.239083333333383 ], [ 35.186400679270491, 32.239216459274417 ], [ 35.186666666666667, 32.23925 ], [ 35.18675, 32.23925 ], [ 35.186916666666775, 32.23925 ], [ 35.186916666666775, 32.23933333333332 ], [ 35.186833333333254, 32.2395 ], [ 35.187049297332862, 32.239534036636371 ], [ 35.187677501678479, 32.239688336690335 ], [ 35.18779393386842, 32.239519702275629 ], [ 35.18788438797003, 32.239761445363399 ], [ 35.188215963999426, 32.239950703303009 ], [ 35.188572579701713, 32.24024810727451 ], [ 35.189013743082739, 32.240149208068885 ], [ 35.189083333333258, 32.24025 ], [ 35.189333333333366, 32.24025 ], [ 35.189333333333366, 32.240416666666761 ], [ 35.189333333333366, 32.2405 ], [ 35.189416666666659, 32.2405 ], [ 35.189416666666659, 32.240416666666761 ], [ 35.189500000000123, 32.240416666666761 ], [ 35.189541666666685, 32.240309935251958 ], [ 35.189583333333246, 32.240416666666761 ], [ 35.189838544209863, 32.240302341461245 ], [ 35.18975, 32.2405 ], [ 35.189833333333354, 32.2405 ], [ 35.189833333333354, 32.240666666666812 ], [ 35.189915815989252, 32.240708393414934 ], [ 35.189666666666767, 32.240833333333455 ], [ 35.189583124796627, 32.241118019739815 ], [ 35.189212187449129, 32.240991155306517 ], [ 35.189416666666659, 32.240666666666812 ], [ 35.189138671875014, 32.240527994791762 ], [ 35.188222985585583, 32.240472005208346 ], [ 35.188166666666802, 32.240583333333348 ], [ 35.188166666666802, 32.240666666666812 ], [ 35.188, 32.240666666666812 ], [ 35.187958333333256, 32.240559935252008 ], [ 35.187916666666695, 32.240666666666812 ], [ 35.187715208689497, 32.240534791628647 ], [ 35.187177436828676, 32.240426979064978 ], [ 35.187232012430854, 32.240703164100694 ], [ 35.187166666666656, 32.24075 ], [ 35.187117369334032, 32.240784036318587 ], [ 35.187049297332862, 32.240882630348267 ], [ 35.186638127644869, 32.241036479949912 ], [ 35.186583333333374, 32.24125 ], [ 35.186217015584248, 32.241352006912166 ], [ 35.186538043975872, 32.241483396848082 ], [ 35.186583333333374, 32.24175 ], [ 35.186537812550853, 32.241787812550854 ], [ 35.186402554829897, 32.241950642903646 ], [ 35.186128854115907, 32.241621145884267 ], [ 35.18576729838054, 32.241545520782552 ], [ 35.185628854115919, 32.241712187449139 ], [ 35.185441345214883, 32.241867944399587 ], [ 35.185701000213726, 32.24208363087979 ], [ 35.185508206685427, 32.242204479217548 ], [ 35.185136549631807, 32.241681348164946 ], [ 35.185023363749281, 32.24129563999179 ], [ 35.184666666666772, 32.24125 ], [ 35.184666666666772, 32.2411666666668 ], [ 35.184583333333251, 32.2411666666668 ], [ 35.184481370290086, 32.240980648994423 ], [ 35.184221071878994, 32.24108793862672 ], [ 35.18432466634107, 32.240836605390029 ], [ 35.184166666666783, 32.24075 ], [ 35.18396947860731, 32.240613854090498 ], [ 35.183833333333382, 32.240416666666761 ], [ 35.183943487803276, 32.239987424214689 ], [ 35.184166666666783, 32.239833333333479 ], [ 35.184332682291654, 32.239917317708318 ], [ 35.184416666666664, 32.240083333333359 ], [ 35.184416666666664, 32.240166666666653 ], [ 35.18425, 32.240166666666653 ], [ 35.18425, 32.2405 ], [ 35.184666666666772, 32.2405 ], [ 35.184666666666772, 32.240666666666812 ], [ 35.185000000000116, 32.240666666666812 ], [ 35.185000000000116, 32.240583333333348 ], [ 35.18512190119435, 32.240251385370925 ], [ 35.184961082458585, 32.239807684580455 ], [ 35.184492823282994, 32.239546426137338 ], [ 35.184166666666783, 32.23975 ], [ 35.183994354248057, 32.239709416707342 ], [ 35.183853125254359, 32.239480208079101 ], [ 35.183623991648403, 32.239339024861806 ], [ 35.183551561991294, 32.239551562627128 ], [ 35.183288936615099, 32.239615104039615 ], [ 35.182979099273723, 32.239397558848168 ], [ 35.183176912943509, 32.239275673548434 ], [ 35.182828590393171, 32.23906105041516 ], [ 35.182718228658132, 32.239384895960541 ], [ 35.182666666666648, 32.239416666666784 ], [ 35.182380364736048, 32.239369635264211 ], [ 35.18175, 32.23933333333332 ], [ 35.181650700887076, 32.239133567174292 ], [ 35.18175, 32.239083333333383 ], [ 35.182037960052583, 32.23902711804709 ], [ 35.181798020680731, 32.238561354319245 ], [ 35.181789115905872, 32.238125 ], [ 35.181792598724371, 32.23795432662962 ], [ 35.181666666666672, 32.237833333333356 ], [ 35.181583333333379, 32.237833333333356 ], [ 35.181472005208377, 32.237888671875112 ], [ 35.18125, 32.237916666666649 ] ], [ [ 35.175333333333356, 32.238833333333332 ], [ 35.175304805755729, 32.238934935252018 ], [ 35.17523173141484, 32.238861860911129 ], [ 35.175333333333356, 32.238833333333332 ] ], [ [ 35.17125, 32.238916666666796 ], [ 35.171228802045164, 32.239145469029836 ], [ 35.171110274950706, 32.239268218358404 ], [ 35.171083333333456, 32.239083333333383 ], [ 35.170916666666642, 32.239083333333383 ], [ 35.170916666666642, 32.238916666666796 ], [ 35.171083333333456, 32.238916666666796 ], [ 35.17125, 32.238916666666796 ] ], [ [ 35.180972005208389, 32.238972005208382 ], [ 35.1811256319682, 32.238849965413408 ], [ 35.18137967809048, 32.239071327845409 ], [ 35.181444661458329, 32.239360347747834 ], [ 35.181333333333328, 32.239416666666784 ], [ 35.18127283859252, 32.239527030309091 ], [ 35.181166666666684, 32.23933333333332 ], [ 35.180944661458341, 32.239361328125028 ], [ 35.180833333333339, 32.239416666666784 ], [ 35.180583333333402, 32.239083333333383 ], [ 35.18069466145846, 32.239027994791684 ], [ 35.180972005208389, 32.238972005208382 ] ], [ [ 35.182027671814069, 32.239722822189435 ], [ 35.18216666666666, 32.24 ], [ 35.182093233744354, 32.240114705403641 ], [ 35.181749954223619, 32.240018234888851 ], [ 35.181805737813306, 32.240216736475759 ], [ 35.181583333333379, 32.24025 ], [ 35.181527994791622, 32.240222005208409 ], [ 35.181416666666792, 32.24 ], [ 35.181527994791622, 32.23994466145848 ], [ 35.181888671875015, 32.239888671875065 ], [ 35.18191666666678, 32.239666666666665 ], [ 35.182027671814069, 32.239722822189435 ] ], [ [ 35.172566942532853, 32.239968006134006 ], [ 35.172392874081993, 32.240027994791603 ], [ 35.172305338541719, 32.239872631073126 ], [ 35.1725, 32.239833333333479 ], [ 35.172566942532853, 32.239968006134006 ] ], [ [ 35.1825, 32.240416666666761 ], [ 35.182666666666648, 32.2405 ], [ 35.182740645090746, 32.240384441375852 ], [ 35.183032526652141, 32.240516150792587 ], [ 35.182750000000112, 32.240666666666812 ], [ 35.182583333333355, 32.240666666666812 ], [ 35.182551561991374, 32.240718229293861 ], [ 35.182375553131237, 32.240781770706178 ], [ 35.182301561991437, 32.240331823349152 ], [ 35.182712926228874, 32.240191637675025 ], [ 35.182781771341979, 32.240279908498223 ], [ 35.182531771342042, 32.24036510403954 ], [ 35.1825, 32.240416666666761 ] ], [ [ 35.183642874399766, 32.240194661458418 ], [ 35.183555338541737, 32.240039297739713 ], [ 35.18375, 32.24 ], [ 35.183816942850797, 32.240134672800821 ], [ 35.183642874399766, 32.240194661458418 ] ], [ [ 35.182, 32.2405 ], [ 35.181971472422276, 32.24060160191857 ], [ 35.181898398081557, 32.240528527577851 ], [ 35.182, 32.2405 ] ], [ [ 35.183083333333343, 32.240833333333455 ], [ 35.183054805755717, 32.240934935251971 ], [ 35.182981731414827, 32.240861860911082 ], [ 35.183083333333343, 32.240833333333455 ] ], [ [ 35.183416666666687, 32.241083333333336 ], [ 35.183380986531574, 32.241357912381545 ], [ 35.183304583231575, 32.241142369588317 ], [ 35.183416666666687, 32.241083333333336 ] ], [ [ 35.182906589508093, 32.241174785931889 ], [ 35.183083333333343, 32.2415 ], [ 35.183228801727296, 32.241521197954853 ], [ 35.18335352834066, 32.241641633669587 ], [ 35.183083333333343, 32.241666666666788 ], [ 35.183083333333343, 32.241833333333375 ], [ 35.182916666666756, 32.241833333333375 ], [ 35.182965335846006, 32.241706716219596 ], [ 35.182666666666648, 32.241333333333387 ], [ 35.182906589508093, 32.241174785931889 ] ], [ [ 35.1825, 32.241416666666737 ], [ 35.182416666666768, 32.241583333333324 ], [ 35.182294892628988, 32.241478419621842 ], [ 35.1825, 32.241416666666737 ] ], [ [ 35.184257839202985, 32.241560843149898 ], [ 35.184394976298051, 32.24146143213909 ], [ 35.184538567860898, 32.241628098805734 ], [ 35.184748919169181, 32.24172196165722 ], [ 35.184993802388476, 32.24200619792947 ], [ 35.18520869445814, 32.242191337903364 ], [ 35.185288567860937, 32.242596741358568 ], [ 35.185021690368728, 32.242705234527648 ], [ 35.184807769775489, 32.242456935882558 ], [ 35.1845, 32.242416666666657 ], [ 35.184553620656345, 32.242198358535802 ], [ 35.184345077514649, 32.241896314303176 ], [ 35.184202748616656, 32.241864407221556 ], [ 35.184132630666113, 32.241965963681537 ], [ 35.184083333333319, 32.242 ], [ 35.18387822596236, 32.241938247044914 ], [ 35.184089530944959, 32.241756197929362 ], [ 35.184257839202985, 32.241560843149898 ] ], [ [ 35.1835, 32.242333333333363 ], [ 35.183454831441338, 32.242438882192118 ], [ 35.183391693115311, 32.242213014920537 ], [ 35.1835, 32.242166666666776 ], [ 35.183695691426635, 32.242287243843123 ], [ 35.1835, 32.242333333333363 ] ], [ [ 35.183166666666807, 32.242416666666657 ], [ 35.183198438008617, 32.242468229293934 ], [ 35.183528901418185, 32.242580845514965 ], [ 35.183615104675312, 32.242711167017717 ], [ 35.182979858398426, 32.242781770706301 ], [ 35.183076221466138, 32.242472395896982 ], [ 35.183166666666807, 32.242416666666657 ] ], [ [ 35.184148398081561, 32.24244519424451 ], [ 35.18425, 32.242416666666657 ], [ 35.18422147242228, 32.242518268585172 ], [ 35.184148398081561, 32.24244519424451 ] ], [ [ 35.185409500122148, 32.242403612454723 ], [ 35.185528093973858, 32.242299297014881 ], [ 35.185896888732998, 32.242539451917082 ], [ 35.185833333333335, 32.242583333333471 ], [ 35.185722005208447, 32.242638671875 ], [ 35.185583333333398, 32.242666666666764 ], [ 35.185409500122148, 32.242403612454723 ] ], [ [ 35.185797031402615, 32.242342343330392 ], [ 35.185916666666799, 32.24225 ], [ 35.185993394215927, 32.242445174535078 ], [ 35.185797031402615, 32.242342343330392 ] ], [ [ 35.186666666666667, 32.242166666666776 ], [ 35.186578122456865, 32.241969008127796 ], [ 35.186833333333254, 32.242083333333312 ], [ 35.186915888468434, 32.242249413490413 ], [ 35.18675, 32.242333333333363 ], [ 35.186544892629058, 32.242271580378258 ], [ 35.186666666666667, 32.242166666666776 ] ], [ [ 35.186833333333254, 32.241916666666668 ], [ 35.186833333333254, 32.241833333333375 ], [ 35.186916666666775, 32.241833333333375 ], [ 35.186916666666775, 32.241916666666668 ], [ 35.186833333333254, 32.241916666666668 ] ], [ [ 35.186916666666775, 32.24175 ], [ 35.186916666666775, 32.241666666666788 ], [ 35.18725000000012, 32.241666666666788 ], [ 35.18725000000012, 32.24175 ], [ 35.186916666666775, 32.24175 ] ], [ [ 35.186648398081445, 32.241445194244534 ], [ 35.18675, 32.241416666666737 ], [ 35.186721472422335, 32.241518268585253 ], [ 35.186648398081445, 32.241445194244534 ] ], [ [ 35.191713696797763, 32.240759009997134 ], [ 35.19183333333325, 32.240666666666812 ], [ 35.191910059611018, 32.240861841201877 ], [ 35.191713696797763, 32.240759009997134 ] ], [ [ 35.19075, 32.240583333333348 ], [ 35.190704720815006, 32.240689142545079 ], [ 35.190558359782017, 32.240617110888309 ], [ 35.19075, 32.240583333333348 ] ], [ [ 35.191795153299893, 32.240611328125055 ], [ 35.191722005208419, 32.240372631073114 ], [ 35.191916666666771, 32.240333333333467 ], [ 35.192019538879379, 32.240540289561068 ], [ 35.191795153299893, 32.240611328125055 ] ], [ [ 35.190831347147707, 32.239980313619014 ], [ 35.191, 32.240431044260788 ], [ 35.190654922485407, 32.240353685379034 ], [ 35.19045421854662, 32.240062996546555 ], [ 35.190416666666806, 32.239916666666772 ], [ 35.190311117808108, 32.239871498743696 ], [ 35.19053698476165, 32.239808359146139 ], [ 35.190583333333393, 32.239916666666772 ], [ 35.190831347147707, 32.239980313619014 ] ], [ [ 35.197416666666697, 32.239916666666772 ], [ 35.197518269856914, 32.239945194244399 ], [ 35.19744519297285, 32.240018268585288 ], [ 35.197416666666697, 32.239916666666772 ], [ 35.197111328125061, 32.239888671875065 ], [ 35.197055338541588, 32.239777994791723 ], [ 35.196888671875001, 32.239693681081235 ], [ 35.196945444742823, 32.239525673548371 ], [ 35.197125119527243, 32.239437925338791 ], [ 35.197250000000111, 32.2395 ], [ 35.197305989583413, 32.239610677083419 ], [ 35.197527343750039, 32.239722656250137 ], [ 35.197583333333341, 32.239833333333479 ], [ 35.197416666666697, 32.239833333333479 ], [ 35.197416666666697, 32.239916666666772 ] ], [ [ 35.185231731414831, 32.238278527577847 ], [ 35.185333333333347, 32.23825 ], [ 35.18530480575572, 32.238351601918566 ], [ 35.185231731414831, 32.238278527577847 ] ], [ [ 35.184416666666664, 32.238166666666757 ], [ 35.184371387481633, 32.238272476196414 ], [ 35.184225026448644, 32.238200443903736 ], [ 35.184416666666664, 32.238166666666757 ] ], [ [ 35.187630986531701, 32.238857912063679 ], [ 35.187554583231645, 32.238642369588263 ], [ 35.187666666666644, 32.238583333333452 ], [ 35.187630986531701, 32.238857912063679 ] ], [ [ 35.187916666666695, 32.23825 ], [ 35.187711559295622, 32.238188247044945 ], [ 35.187878098805811, 32.238044765472523 ], [ 35.187916666666695, 32.238 ], [ 35.188083333333338, 32.238 ], [ 35.188083333333338, 32.23775 ], [ 35.188259227752724, 32.237814593633061 ], [ 35.188467575073275, 32.237698348999061 ], [ 35.188434174855558, 32.237282667795853 ], [ 35.188521541595549, 32.236961432139083 ], [ 35.188621901194381, 32.237294765472484 ], [ 35.1887114321392, 32.237455234527602 ], [ 35.188788567860968, 32.23793237241108 ], [ 35.188166666666802, 32.238166666666757 ], [ 35.188125, 32.238059935251954 ], [ 35.188083333333338, 32.238166666666757 ], [ 35.18802157974244, 32.238371773401923 ], [ 35.187916666666695, 32.23825 ] ], [ [ 35.19131506601974, 32.238370390574175 ], [ 35.191212941487663, 32.23779632759107 ], [ 35.191583333333369, 32.23775 ], [ 35.191518488566146, 32.238268436432008 ], [ 35.19131506601974, 32.238370390574175 ] ], [ [ 35.191639834086232, 32.237089495976875 ], [ 35.192166666666651, 32.237 ], [ 35.192057759602847, 32.237141093572006 ], [ 35.191702969869084, 32.237286301930794 ], [ 35.191630363464469, 32.237547031402585 ], [ 35.1915169932048, 32.237619635264195 ], [ 35.191639834086232, 32.237089495976875 ] ], [ [ 35.187617369334021, 32.237117369969724 ], [ 35.187512004852238, 32.237269975662286 ], [ 35.186632630666168, 32.237211431503226 ], [ 35.187183681488023, 32.237124584198057 ], [ 35.187450702667263, 32.236950703303137 ], [ 35.187750000000108, 32.23691666666673 ], [ 35.187715963999437, 32.237049296697023 ], [ 35.187617369334021, 32.237117369969724 ] ], [ [ 35.187222005208412, 32.237527994791719 ], [ 35.187222985585606, 32.2377779947916 ], [ 35.187138671875118, 32.237611328125013 ], [ 35.186916666666775, 32.237583333333475 ], [ 35.186916666666775, 32.237416666666661 ], [ 35.187166666666656, 32.237416666666661 ], [ 35.187222005208412, 32.237527994791719 ] ], [ [ 35.18758333333335, 32.237916666666649 ], [ 35.18758333333335, 32.238083333333464 ], [ 35.187333333333413, 32.238083333333464 ], [ 35.187367856343656, 32.237809558232698 ], [ 35.18758333333335, 32.237916666666649 ] ], [ [ 35.190815064748108, 32.236778527577712 ], [ 35.190916666666794, 32.23675 ], [ 35.190888139088997, 32.236851601918602 ], [ 35.190815064748108, 32.236778527577712 ] ], [ [ 35.189392874399857, 32.236611328125036 ], [ 35.189305338541658, 32.236455964406389 ], [ 35.189500000000123, 32.236416666666742 ], [ 35.189566942850888, 32.236551339467439 ], [ 35.189392874399857, 32.236611328125036 ] ], [ [ 35.191, 32.235666666666646 ], [ 35.191083333333381, 32.235382690429674 ], [ 35.19125, 32.235583333333352 ], [ 35.19125, 32.235666666666646 ], [ 35.191083333333381, 32.235666666666646 ], [ 35.191, 32.235666666666646 ], [ 35.191035186767522, 32.235730859120679 ], [ 35.191479957580611, 32.235943031311081 ], [ 35.19169617207848, 32.235779505411926 ], [ 35.191970494588247, 32.23572049458835 ], [ 35.192250000000115, 32.235583333333352 ], [ 35.1925, 32.235583333333352 ], [ 35.1925, 32.2355 ], [ 35.192722404480094, 32.235466736475701 ], [ 35.192677757263141, 32.23530786005665 ], [ 35.193009544372615, 32.235401101430398 ], [ 35.192907793680831, 32.235763177235981 ], [ 35.192615859985438, 32.235865859349644 ], [ 35.192583333333346, 32.235916666666753 ], [ 35.1925, 32.235916666666753 ], [ 35.1925, 32.236 ], [ 35.1925, 32.23608333333334 ], [ 35.192416666666702, 32.23608333333334 ], [ 35.191626922607441, 32.236132565180583 ], [ 35.191447799682749, 32.236121888478579 ], [ 35.191333333333262, 32.23625 ], [ 35.191333333333262, 32.236333333333448 ], [ 35.19125, 32.236333333333448 ], [ 35.191194010416723, 32.236444010416733 ], [ 35.190946417490636, 32.236569263458307 ], [ 35.19088867187503, 32.236111328125048 ], [ 35.19083333333333, 32.236 ], [ 35.190666666666687, 32.236 ], [ 35.190621145884165, 32.23603781255099 ], [ 35.190483796437718, 32.236203161875437 ], [ 35.190045520782462, 32.235850631713959 ], [ 35.190213635762518, 32.23571098454795 ], [ 35.190166666666698, 32.2355 ], [ 35.19020833333326, 32.235393268585256 ], [ 35.19025, 32.2355 ], [ 35.1905000000001, 32.2355 ], [ 35.19075, 32.2355 ], [ 35.19075, 32.235583333333352 ], [ 35.19083333333333, 32.235583333333352 ], [ 35.19083333333333, 32.235666666666646 ], [ 35.191, 32.235666666666646 ] ], [ [ 35.189166666666779, 32.235583333333352 ], [ 35.189138139088925, 32.235684935251868 ], [ 35.189065064748263, 32.235611860910979 ], [ 35.189166666666779, 32.235583333333352 ] ], [ [ 35.18969368108111, 32.235953635533633 ], [ 35.189401123046935, 32.236031015396179 ], [ 35.189333333333366, 32.235916666666753 ], [ 35.18969368108111, 32.235953635533633 ] ], [ [ 35.189916666666647, 32.236333333333448 ], [ 35.189993394215946, 32.236528507868456 ], [ 35.189797031402634, 32.236425676345959 ], [ 35.189916666666647, 32.236333333333448 ] ], [ [ 35.191898396810018, 32.236361860911074 ], [ 35.192, 32.236333333333448 ], [ 35.191971473693911, 32.236434935251964 ], [ 35.191898396810018, 32.236361860911074 ] ], [ [ 35.194712219238397, 32.236196208318063 ], [ 35.194634140014784, 32.235824171066213 ], [ 35.19475, 32.23575 ], [ 35.194712219238397, 32.236196208318063 ] ], [ [ 35.193833333333373, 32.23608333333334 ], [ 35.193804807027277, 32.236184935251856 ], [ 35.193731730143327, 32.236111860911137 ], [ 35.193833333333373, 32.23608333333334 ] ], [ [ 35.194333333333361, 32.235583333333352 ], [ 35.194359580993762, 32.235403211593621 ], [ 35.194518218994062, 32.23555639139812 ], [ 35.194333333333361, 32.235583333333352 ] ], [ [ 35.201027994791787, 32.235555338541644 ], [ 35.201, 32.235166666666657 ], [ 35.201548601786271, 32.235203072865829 ], [ 35.201505203247109, 32.235496749877939 ], [ 35.201083333333372, 32.235666666666646 ], [ 35.201027994791787, 32.235555338541644 ] ], [ [ 35.199500000000114, 32.235583333333352 ], [ 35.199574615478525, 32.235760983785042 ], [ 35.19941666666665, 32.236 ], [ 35.199333333333357, 32.236 ], [ 35.199333333333357, 32.235583333333352 ], [ 35.199500000000114, 32.235583333333352 ] ], [ [ 35.199202664693189, 32.235074701944995 ], [ 35.198816670735653, 32.235205234527598 ], [ 35.198711433410665, 32.234916372935004 ], [ 35.199000000000126, 32.23475 ], [ 35.199202664693189, 32.235074701944995 ] ], [ [ 35.201231730143206, 32.234778527577816 ], [ 35.201333333333423, 32.23475 ], [ 35.201304807027157, 32.234851601918535 ], [ 35.201231730143206, 32.234778527577816 ] ], [ [ 35.197916666666686, 32.23475 ], [ 35.197916666666686, 32.235083333333364 ], [ 35.197666666666805, 32.235083333333364 ], [ 35.197309483846027, 32.234816730499347 ], [ 35.196916666666709, 32.23475 ], [ 35.196870391845778, 32.234712942759188 ], [ 35.196546274821003, 32.234285831451416 ], [ 35.196653592427708, 32.234046276092613 ], [ 35.196787058512484, 32.2342129427592 ], [ 35.197078598022529, 32.234390023549395 ], [ 35.197203725179179, 32.234546276092544 ], [ 35.197306640625129, 32.234620390574207 ], [ 35.197275220235269, 32.234367771148754 ], [ 35.197499816894549, 32.234395708719944 ], [ 35.197583333333341, 32.2345 ], [ 35.197833333333392, 32.2345 ], [ 35.197833333333392, 32.234583333333376 ], [ 35.198038439432764, 32.234645086924274 ], [ 35.197916666666686, 32.23475 ] ], [ [ 35.19869541676843, 32.234445416768494 ], [ 35.198833333333369, 32.234416666666789 ], [ 35.198797691345135, 32.234690959930447 ], [ 35.198387916565025, 32.234629258473717 ], [ 35.198637916565076, 32.234554583231727 ], [ 35.19869541676843, 32.234445416768494 ] ], [ [ 35.19941666666665, 32.233916666666801 ], [ 35.199379608154288, 32.233962942759263 ], [ 35.199254684448249, 32.234062980651913 ], [ 35.198549908955897, 32.233975316365616 ], [ 35.198462941487605, 32.233891581217563 ], [ 35.1987973836263, 32.233795959472729 ], [ 35.198774709065788, 32.233613676706966 ], [ 35.198916666666662, 32.2335 ], [ 35.199000000000126, 32.2335 ], [ 35.199000000000126, 32.233583333333456 ], [ 35.199000000000126, 32.23366666666675 ], [ 35.199083333333419, 32.23366666666675 ], [ 35.199166666666713, 32.23366666666675 ], [ 35.199202969868963, 32.233713698069323 ], [ 35.199614491780608, 32.233828292846738 ], [ 35.199500000000114, 32.233916666666801 ], [ 35.19941666666665, 32.233916666666801 ] ], [ [ 35.199963696797681, 32.233637654622441 ], [ 35.200083333333396, 32.233333333333348 ], [ 35.200166666666689, 32.233333333333348 ], [ 35.200203918457134, 32.233517865498925 ], [ 35.200333333333276, 32.233583333333456 ], [ 35.200333333333276, 32.23366666666675 ], [ 35.200037757873531, 32.233715221405078 ], [ 35.199963696797681, 32.233637654622441 ] ], [ [ 35.195666666666682, 32.23325 ], [ 35.195601758321175, 32.233359489441057 ], [ 35.195302317301412, 32.233287380218428 ], [ 35.195666666666682, 32.23325 ] ], [ [ 35.194916666666643, 32.2335 ], [ 35.195000000000107, 32.2335 ], [ 35.195000000000107, 32.233583333333456 ], [ 35.195206840515141, 32.233726142883427 ], [ 35.19525, 32.234 ], [ 35.195333333333338, 32.234 ], [ 35.195361328125045, 32.234138671874973 ], [ 35.195527605692575, 32.234222788492843 ], [ 35.195694661458447, 32.234555338541668 ], [ 35.19575, 32.234583333333376 ], [ 35.195784037272176, 32.234799297332813 ], [ 35.19591666666679, 32.235 ], [ 35.196, 32.235 ], [ 35.196, 32.235083333333364 ], [ 35.196037058512445, 32.235129609425826 ], [ 35.196239151000952, 32.235214768091907 ], [ 35.196030003865587, 32.235370390574133 ], [ 35.19562960815432, 32.234870390574144 ], [ 35.195583333333389, 32.234833333333313 ], [ 35.195555338541681, 32.234694661458434 ], [ 35.1955, 32.234583333333376 ], [ 35.195550771077592, 32.234542676290005 ], [ 35.19525, 32.234166666666738 ], [ 35.19525, 32.234 ], [ 35.195076118469331, 32.233879945119213 ], [ 35.195000000000107, 32.233583333333456 ], [ 35.194916666666643, 32.233583333333456 ], [ 35.194916666666643, 32.2335 ], [ 35.194784037272257, 32.233465963999436 ], [ 35.194715962727855, 32.233034036000674 ], [ 35.19429143524178, 32.232391619364535 ], [ 35.193892303466839, 32.232651528676342 ], [ 35.193799296061172, 32.23258103688562 ], [ 35.19396596272793, 32.232465963999516 ], [ 35.194000000000131, 32.232333333333372 ], [ 35.194000000000131, 32.232083333333321 ], [ 35.194000000000131, 32.232 ], [ 35.193916666666667, 32.232 ], [ 35.193722969055102, 32.231893828074192 ], [ 35.193833333333373, 32.231833333333441 ], [ 35.193787239074823, 32.23178358459478 ], [ 35.193461456298962, 32.231796497345101 ], [ 35.193209922790629, 32.231623411814496 ], [ 35.192712661743201, 32.231528475443554 ], [ 35.192919843038055, 32.231336510976291 ], [ 35.193200505574623, 32.231033598582087 ], [ 35.193539019266723, 32.231266536712781 ], [ 35.193876589457204, 32.231373411814388 ], [ 35.193956743876129, 32.231459921519047 ], [ 35.194136497497539, 32.231540078481032 ], [ 35.194120086670011, 32.23112603251144 ], [ 35.194225107828686, 32.231043254852352 ], [ 35.194606028238923, 32.231244819641233 ], [ 35.194706743876168, 32.231466527303041 ], [ 35.194456858317039, 32.23145662307752 ], [ 35.194376589457192, 32.23154325485234 ], [ 35.19429007720953, 32.231623411814496 ], [ 35.194209922790606, 32.231709921518984 ], [ 35.194123410542886, 32.231790078481083 ], [ 35.194083333333253, 32.231833333333441 ], [ 35.194284037272269, 32.231965963999528 ], [ 35.194500000000119, 32.232 ], [ 35.19454166666668, 32.231893268585225 ], [ 35.194583333333412, 32.232 ], [ 35.195514648437552, 32.231766147613655 ], [ 35.195617370605589, 32.231617369334003 ], [ 35.195890261332124, 32.231515260060632 ], [ 35.196117370605577, 32.231367369333952 ], [ 35.196367370605458, 32.231361427307149 ], [ 35.196009887695368, 32.231608245849657 ], [ 35.196052619934107, 32.231798857371075 ], [ 35.195534037272125, 32.231867369333941 ], [ 35.194792732238739, 32.232104774475147 ], [ 35.19475, 32.232166666666785 ], [ 35.194694010416754, 32.232277343750127 ], [ 35.194583333333412, 32.232333333333372 ], [ 35.194615104675279, 32.2325515619915 ], [ 35.194757812500029, 32.232870133717995 ], [ 35.194884895324833, 32.232948438008691 ], [ 35.194948438008623, 32.233051561991431 ], [ 35.195252571105982, 32.233123193105143 ], [ 35.194956853230735, 32.233223968505968 ], [ 35.194916666666643, 32.2335 ] ], [ [ 35.195722005208438, 32.232888671875116 ], [ 35.195799921671608, 32.232734650929785 ], [ 35.196054036458406, 32.232858754475899 ], [ 35.196083333333377, 32.232916666666654 ], [ 35.196190063476649, 32.232958333333443 ], [ 35.196083333333377, 32.233 ], [ 35.196083333333377, 32.233083333333468 ], [ 35.196083333333377, 32.233166666666762 ], [ 35.196, 32.233166666666762 ], [ 35.195960876464881, 32.233266492207861 ], [ 35.195809870401945, 32.233208521525171 ], [ 35.19591666666679, 32.233166666666762 ], [ 35.19591666666679, 32.233083333333468 ], [ 35.195805338541732, 32.233027994791712 ], [ 35.195472244262817, 32.232960750579934 ], [ 35.195722005208438, 32.232888671875116 ] ], [ [ 35.196371386210217, 32.233189142862955 ], [ 35.196225026448587, 32.23311711120607 ], [ 35.196416666666778, 32.233083333333468 ], [ 35.196371386210217, 32.233189142862955 ] ], [ [ 35.199083333333419, 32.2325 ], [ 35.199083333333419, 32.232416666666722 ], [ 35.199000000000126, 32.232416666666722 ], [ 35.199134213765376, 32.232083442687951 ], [ 35.199500000000114, 32.23225 ], [ 35.199541666666676, 32.232143268585276 ], [ 35.199583333333408, 32.23225 ], [ 35.199342651367317, 32.232608915964761 ], [ 35.199083333333419, 32.2325 ] ], [ [ 35.198102452596117, 32.232040152231946 ], [ 35.197958521525095, 32.232106796264645 ], [ 35.197916666666686, 32.232 ], [ 35.19803118133558, 32.231553769429638 ], [ 35.198200703938824, 32.231799297332714 ], [ 35.198465962727937, 32.231867369333941 ], [ 35.1985, 32.231916666666734 ], [ 35.198692957560297, 32.231962112426743 ], [ 35.19833333333338, 32.232 ], [ 35.198073066711459, 32.231885866800951 ], [ 35.198, 32.232 ], [ 35.198102452596117, 32.232040152231946 ] ], [ [ 35.200083333333396, 32.2315 ], [ 35.19998173014335, 32.231471472422413 ], [ 35.2000548070273, 32.231398398081524 ], [ 35.200083333333396, 32.2315 ], [ 35.200194010416737, 32.231555989583342 ], [ 35.200318219502776, 32.231801520029762 ], [ 35.200116462707513, 32.231861328124978 ], [ 35.200083333333396, 32.2315 ] ], [ [ 35.19875, 32.231666666666797 ], [ 35.198721473693922, 32.231768268585142 ], [ 35.198648396810029, 32.231695194244423 ], [ 35.19875, 32.231666666666797 ] ], [ [ 35.196916666666709, 32.2315 ], [ 35.196871386210205, 32.231605809529697 ], [ 35.196725026448576, 32.231533777872812 ], [ 35.196916666666709, 32.2315 ] ], [ [ 35.19616666666667, 32.232083333333321 ], [ 35.196225921630969, 32.232215607960995 ], [ 35.195876777649005, 32.232334589640288 ], [ 35.195801561991459, 32.232121798197511 ], [ 35.19616666666667, 32.232083333333321 ] ], [ [ 35.194916666666643, 32.232333333333372 ], [ 35.194871386210252, 32.232439142863086 ], [ 35.194725026448623, 32.232367111206145 ], [ 35.194916666666643, 32.232333333333372 ] ], [ [ 35.1985, 32.232416666666722 ], [ 35.1985, 32.232166666666785 ], [ 35.198666666666782, 32.232166666666785 ], [ 35.198666666666782, 32.232416666666722 ], [ 35.1985, 32.232416666666722 ] ], [ [ 35.195416666666802, 32.231333333333453 ], [ 35.195388140360478, 32.231434935251968 ], [ 35.195315063476585, 32.231361860911079 ], [ 35.195416666666802, 32.231333333333453 ] ], [ [ 35.195416666666802, 32.231583333333333 ], [ 35.19537138621024, 32.23168914286299 ], [ 35.195225026448611, 32.231617111206106 ], [ 35.195416666666802, 32.231583333333333 ] ], [ [ 35.1965, 32.230916666666758 ], [ 35.196181727091584, 32.230880471547493 ], [ 35.196299296061227, 32.230799297332794 ], [ 35.196369555155457, 32.230525521596292 ], [ 35.196631436665882, 32.230696056366071 ], [ 35.196666666666658, 32.230833333333464 ], [ 35.196786239624032, 32.230936350504578 ], [ 35.196394030253146, 32.231205234527579 ], [ 35.1965, 32.230916666666758 ] ], [ [ 35.180534036000608, 32.230902439117472 ], [ 35.180220381418849, 32.231034036000551 ], [ 35.179916666666657, 32.230833333333464 ], [ 35.179916666666657, 32.23075 ], [ 35.179833333333363, 32.23075 ], [ 35.179867369969656, 32.230617369333856 ], [ 35.179965963363713, 32.230549297332857 ], [ 35.180080760319981, 32.230383031209328 ], [ 35.180453501383454, 32.230466590881406 ], [ 35.180534036000608, 32.230902439117472 ] ], [ [ 35.18097502644855, 32.230450444539372 ], [ 35.181166666666684, 32.23041666666677 ], [ 35.18112138748171, 32.230522476196427 ], [ 35.18097502644855, 32.230450444539372 ] ], [ [ 35.185523853302016, 32.230541067759248 ], [ 35.185583333333398, 32.2305 ], [ 35.185673877716056, 32.230868633270291 ], [ 35.185432022094858, 32.230950702667258 ], [ 35.185523853302016, 32.230541067759248 ] ], [ [ 35.194303909301766, 32.230900277455703 ], [ 35.193799296061172, 32.2307114626567 ], [ 35.193869499206528, 32.230614425659269 ], [ 35.194089385986388, 32.230663720448831 ], [ 35.194416666666655, 32.230583333333357 ], [ 35.194528628031435, 32.230849900563555 ], [ 35.194303909301766, 32.230900277455703 ] ], [ [ 35.19566715749113, 32.230698438008687 ], [ 35.195551561991408, 32.230372269948475 ], [ 35.19575, 32.23025 ], [ 35.195781771342013, 32.230301561991496 ], [ 35.195900955200329, 32.230375 ], [ 35.195772071838405, 32.230454414367728 ], [ 35.195896428426181, 32.230631530761798 ], [ 35.19566715749113, 32.230698438008687 ] ], [ [ 35.196793256123954, 32.230602105458729 ], [ 35.1969662755331, 32.230108459472774 ], [ 35.197213223775179, 32.229879650116061 ], [ 35.197092048645004, 32.229650653839201 ], [ 35.196930320739796, 32.229825202942038 ], [ 35.196626589457196, 32.229555381775015 ], [ 35.196916666666709, 32.2295 ], [ 35.197089101155655, 32.229299854278622 ], [ 35.197333333333404, 32.229583333333437 ], [ 35.197397112528506, 32.229695192972827 ], [ 35.197700963338264, 32.229580661773753 ], [ 35.19775, 32.229666666666731 ], [ 35.19768824768073, 32.229871774037804 ], [ 35.197583333333341, 32.22975 ], [ 35.19745674387616, 32.229790078481187 ], [ 35.197126589457184, 32.23020992151902 ], [ 35.197039957682364, 32.230290190378867 ], [ 35.197043375650992, 32.230376476287915 ], [ 35.196956743876171, 32.230456745147762 ], [ 35.196876589457247, 32.230543254852421 ], [ 35.196793256123954, 32.230602105458729 ] ], [ [ 35.200546274821022, 32.230641581217583 ], [ 35.20075, 32.230583333333357 ], [ 35.200692962646485, 32.230782820383695 ], [ 35.200546274821022, 32.230641581217583 ] ], [ [ 35.196833333333416, 32.23066666666665 ], [ 35.19680480702732, 32.230768268585223 ], [ 35.196731730143199, 32.230695194244504 ], [ 35.196833333333416, 32.23066666666665 ] ], [ [ 35.202148396809889, 32.230611860910983 ], [ 35.202250000000106, 32.230583333333357 ], [ 35.202221473693783, 32.230684935251873 ], [ 35.202148396809889, 32.230611860910983 ] ], [ [ 35.19925, 32.230333333333476 ], [ 35.19925, 32.23025 ], [ 35.199333333333357, 32.23025 ], [ 35.199375, 32.230143268585152 ], [ 35.19941666666665, 32.23025 ], [ 35.199523396809923, 32.230291666666744 ], [ 35.19941666666665, 32.230333333333476 ], [ 35.19941666666665, 32.230583333333357 ], [ 35.19925, 32.230583333333357 ], [ 35.199099171956448, 32.230552884419751 ], [ 35.199192087809251, 32.230362630208447 ], [ 35.19925, 32.230333333333476 ] ], [ [ 35.200185551961283, 32.230286898295105 ], [ 35.199876368204798, 32.230123294830435 ], [ 35.199626589457239, 32.230133193969721 ], [ 35.199706743876163, 32.230040078481068 ], [ 35.199793375650984, 32.229959809621221 ], [ 35.199789815267025, 32.229869972229153 ], [ 35.200113286336318, 32.229882793426555 ], [ 35.20021641540535, 32.229787239074767 ], [ 35.20020358276372, 32.229463475545344 ], [ 35.200375, 32.229456681569502 ], [ 35.200459808349706, 32.229460043589313 ], [ 35.200540077209553, 32.229373411814493 ], [ 35.20075, 32.229333333333329 ], [ 35.200868733724008, 32.229672093709326 ], [ 35.200340352376429, 32.229797953287743 ], [ 35.200185551961283, 32.230286898295105 ] ], [ [ 35.203981730143369, 32.229695194244528 ], [ 35.204083333333415, 32.229666666666731 ], [ 35.204054807027319, 32.229768268585246 ], [ 35.203981730143369, 32.229695194244528 ] ], [ [ 35.203472005208425, 32.229451721191424 ], [ 35.20375, 32.229416666666793 ], [ 35.203816350301111, 32.229550145467101 ], [ 35.203686612447086, 32.229611328125145 ], [ 35.203472005208425, 32.229451721191424 ] ], [ [ 35.20386202239996, 32.229369555155472 ], [ 35.203626589457258, 32.229253868103001 ], [ 35.203916666666657, 32.229083333333449 ], [ 35.20386202239996, 32.229369555155472 ] ], [ [ 35.203454477945911, 32.229016175587958 ], [ 35.203183965047288, 32.229121145884221 ], [ 35.203083333333268, 32.229 ], [ 35.203083333333268, 32.228916666666635 ], [ 35.203166666666789, 32.228916666666635 ], [ 35.203233655293843, 32.228836022694964 ], [ 35.203454477945911, 32.229016175587958 ] ], [ [ 35.206148396809908, 32.228861860911138 ], [ 35.206250000000125, 32.228833333333341 ], [ 35.206221473693859, 32.228934935251857 ], [ 35.206148396809908, 32.228861860911138 ] ], [ [ 35.202250000000106, 32.228833333333341 ], [ 35.202250000000106, 32.228916666666635 ], [ 35.202166666666642, 32.228916666666635 ], [ 35.202166666666642, 32.228833333333341 ], [ 35.202250000000106, 32.228833333333341 ] ], [ [ 35.198401171366356, 32.229803138732905 ], [ 35.198070630391499, 32.229861328125025 ], [ 35.198147361755503, 32.229704209645547 ], [ 35.19833333333338, 32.229666666666731 ], [ 35.198401171366356, 32.229803138732905 ] ], [ [ 35.19788814036059, 32.22960160191866 ], [ 35.197815063476639, 32.22952852757777 ], [ 35.197916666666686, 32.2295 ], [ 35.19788814036059, 32.22960160191866 ] ], [ [ 35.194916666666643, 32.229166666666742 ], [ 35.195031003316274, 32.229438888549794 ], [ 35.194715962727855, 32.229218172709182 ], [ 35.194916666666643, 32.229166666666742 ] ], [ [ 35.18565497207652, 32.229246696472273 ], [ 35.185300806681369, 32.229430674235061 ], [ 35.185384896596304, 32.229131449381441 ], [ 35.185583333333398, 32.229083333333449 ], [ 35.18565497207652, 32.229246696472273 ] ], [ [ 35.179764216740921, 32.229112915039025 ], [ 35.179630248387696, 32.22919466145845 ], [ 35.179555338541718, 32.228972985585585 ], [ 35.179666666666776, 32.228916666666635 ], [ 35.179764216740921, 32.229112915039025 ] ], [ [ 35.195288052876776, 32.229022476196349 ], [ 35.195141693115318, 32.228950444539407 ], [ 35.195333333333338, 32.228916666666635 ], [ 35.195288052876776, 32.229022476196349 ] ], [ [ 35.18625, 32.227833333333365 ], [ 35.18625, 32.22775 ], [ 35.186056303660166, 32.227708333333339 ], [ 35.18625, 32.227666666666778 ], [ 35.186523644765316, 32.227551732381244 ], [ 35.186617369334044, 32.227791556040472 ], [ 35.18625, 32.227833333333365 ], [ 35.186281016031899, 32.227885650634789 ], [ 35.186406421661388, 32.227959995269771 ], [ 35.18637831624352, 32.228197682698635 ], [ 35.185979476928651, 32.228060717264782 ], [ 35.185916666666799, 32.228166666666766 ], [ 35.186, 32.228166666666766 ], [ 35.186, 32.22825 ], [ 35.186169592539557, 32.228284236907939 ], [ 35.186277994791737, 32.228443681081217 ], [ 35.186029293060358, 32.228569494883232 ], [ 35.186, 32.22825 ], [ 35.185916666666799, 32.22825 ], [ 35.185916666666799, 32.228166666666766 ], [ 35.185794010162454, 32.228276259104462 ], [ 35.185883913675923, 32.228677597046044 ], [ 35.186289323171025, 32.228863666534551 ], [ 35.185463732401615, 32.2290072491964 ], [ 35.185446292877259, 32.228714653015174 ], [ 35.185544275919597, 32.228627106984447 ], [ 35.185495090484665, 32.227801892598563 ], [ 35.185760406494182, 32.227786079406769 ], [ 35.18625, 32.227833333333365 ] ], [ [ 35.174592495282525, 32.228134140014618 ], [ 35.174666666666781, 32.22825 ], [ 35.174583333333317, 32.22825 ], [ 35.174583333333317, 32.228333333333353 ], [ 35.174473616917965, 32.228263094584179 ], [ 35.174592495282525, 32.228134140014618 ] ], [ [ 35.17891666666668, 32.228583333333461 ], [ 35.179078281402724, 32.228827897389749 ], [ 35.178831548690937, 32.228772585550928 ], [ 35.178715963363686, 32.2286348393759 ], [ 35.17891666666668, 32.228583333333461 ] ], [ [ 35.185231731414831, 32.228695194244381 ], [ 35.185333333333347, 32.228666666666754 ], [ 35.18530480575572, 32.22876826858527 ], [ 35.185231731414831, 32.228695194244381 ] ], [ [ 35.186549954732357, 32.228772711435965 ], [ 35.186475026448647, 32.228629681905204 ], [ 35.186583333333374, 32.228583333333461 ], [ 35.186549954732357, 32.228772711435965 ] ], [ [ 35.186333333333323, 32.228666666666754 ], [ 35.18630480575564, 32.22876826858527 ], [ 35.18623173141475, 32.228695194244381 ], [ 35.186333333333323, 32.228666666666754 ] ], [ [ 35.186475026448647, 32.228283777872832 ], [ 35.186666666666667, 32.22825 ], [ 35.186621387481637, 32.228355809529546 ], [ 35.186475026448647, 32.228283777872832 ] ], [ [ 35.186481731414858, 32.228028527577806 ], [ 35.186583333333374, 32.228 ], [ 35.186554805755748, 32.228101601918524 ], [ 35.186481731414858, 32.228028527577806 ] ], [ [ 35.197534037272192, 32.227799297332865 ], [ 35.197306327819831, 32.22746949386601 ], [ 35.197250000000111, 32.22725 ], [ 35.197291666666672, 32.22714326858528 ], [ 35.197333333333404, 32.22725 ], [ 35.197416666666697, 32.22725 ], [ 35.197416666666697, 32.227333333333434 ], [ 35.197463696797797, 32.227369635264097 ], [ 35.197952969869107, 32.227490989685009 ], [ 35.197833333333392, 32.227583333333314 ], [ 35.197833333333392, 32.227833333333365 ], [ 35.19775, 32.227833333333365 ], [ 35.197534037272192, 32.227799297332865 ] ], [ [ 35.194574297587053, 32.226990553538087 ], [ 35.19441984303802, 32.227183429718025 ], [ 35.193693359375061, 32.227287057240744 ], [ 35.193716611226534, 32.2271001154582 ], [ 35.194069951375354, 32.227144065857033 ], [ 35.194028358459548, 32.226809684753448 ], [ 35.194083333333253, 32.226666666666631 ], [ 35.194646998087592, 32.226619553884007 ], [ 35.19475, 32.2265 ], [ 35.194787892659519, 32.226452681223577 ], [ 35.194933560689321, 32.226470799764058 ], [ 35.195241292317803, 32.226651692708401 ], [ 35.195200055440409, 32.226983217875159 ], [ 35.194916666666643, 32.226947967529441 ], [ 35.194574297587053, 32.226990553538087 ] ], [ [ 35.197000183105501, 32.226687624613476 ], [ 35.196621009826742, 32.22621412658691 ], [ 35.196546274821003, 32.226071404774984 ], [ 35.196787058512484, 32.226212942759332 ], [ 35.197098378499334, 32.226287057240825 ], [ 35.197229904174833, 32.22597492599499 ], [ 35.197861483256133, 32.225879609425931 ], [ 35.198370391845742, 32.225986925760935 ], [ 35.19825, 32.226083333333349 ], [ 35.19825, 32.226166666666643 ], [ 35.198, 32.226166666666643 ], [ 35.198, 32.226083333333349 ], [ 35.197717969258633, 32.226019269307471 ], [ 35.197603686014816, 32.226161980946927 ], [ 35.197679580688487, 32.226772131602104 ], [ 35.197000183105501, 32.226687624613476 ] ], [ [ 35.193833333333373, 32.225916666666762 ], [ 35.19375, 32.226083333333349 ], [ 35.193625119527155, 32.22602125930797 ], [ 35.193445963541649, 32.226108754476058 ], [ 35.193416666666678, 32.226166666666643 ], [ 35.193042500813874, 32.226114432016971 ], [ 35.193314270019641, 32.225869509379095 ], [ 35.193708607991653, 32.225877557118793 ], [ 35.19375, 32.22575 ], [ 35.193833333333373, 32.22575 ], [ 35.193833333333373, 32.225916666666762 ] ], [ [ 35.192442316691029, 32.226060429891049 ], [ 35.192583333333346, 32.22625 ], [ 35.192382629394501, 32.22638263066608 ], [ 35.192117370605558, 32.22645070266725 ], [ 35.192049296061327, 32.226549297332838 ], [ 35.192, 32.226583333333338 ], [ 35.191833203633621, 32.22632610066745 ], [ 35.1918951594036, 32.22596622975675 ], [ 35.192442316691029, 32.226060429891049 ] ], [ [ 35.186333333333323, 32.226416666666751 ], [ 35.18630480575564, 32.226518268585266 ], [ 35.18623173141475, 32.226445194244377 ], [ 35.186333333333323, 32.226416666666751 ] ], [ [ 35.18625, 32.226583333333338 ], [ 35.186221472422346, 32.226684935251853 ], [ 35.186148398081457, 32.226611860911134 ], [ 35.18625, 32.226583333333338 ] ], [ [ 35.18683380254123, 32.226854666392114 ], [ 35.186916666666775, 32.227 ], [ 35.186687864939302, 32.226978801727398 ], [ 35.18656213506074, 32.226854531606079 ], [ 35.186416666666787, 32.226833333333445 ], [ 35.186480445861832, 32.226721473693829 ], [ 35.18683380254123, 32.226854666392114 ] ], [ [ 35.1832500000001, 32.22716666666679 ], [ 35.183313836415721, 32.227295089721736 ], [ 35.183189825693887, 32.227444661458435 ], [ 35.183055338541578, 32.227205964406437 ], [ 35.1832500000001, 32.22716666666679 ] ], [ [ 35.186416666666787, 32.227333333333434 ], [ 35.186309935251984, 32.227291666666645 ], [ 35.186416666666787, 32.22725 ], [ 35.186416666666787, 32.227333333333434 ], [ 35.1865, 32.227333333333434 ], [ 35.1865, 32.22725 ], [ 35.186538817087921, 32.227193777720117 ], [ 35.18675, 32.227333333333434 ], [ 35.186816046396928, 32.227366744995095 ], [ 35.186771259307875, 32.227458454132091 ], [ 35.186833333333254, 32.227583333333314 ], [ 35.186934935251998, 32.227611860911111 ], [ 35.186861860911108, 32.227684935252 ], [ 35.186833333333254, 32.227583333333314 ], [ 35.186536721547498, 32.22750721486409 ], [ 35.186416666666787, 32.227333333333434 ] ], [ [ 35.188916666666671, 32.227583333333314 ], [ 35.188916666666671, 32.227416666666727 ], [ 35.189032933553108, 32.2275 ], [ 35.188916666666671, 32.227583333333314 ] ], [ [ 35.194308359781928, 32.2274504445395 ], [ 35.194500000000119, 32.227416666666727 ], [ 35.194454719543387, 32.227522476196384 ], [ 35.194308359781928, 32.2274504445395 ] ], [ [ 35.195112022399996, 32.22745288848887 ], [ 35.194876589457181, 32.227337201436399 ], [ 35.195166666666694, 32.22716666666679 ], [ 35.195112022399996, 32.22745288848887 ] ], [ [ 35.180297031402631, 32.229259010314991 ], [ 35.180416666666645, 32.229166666666742 ], [ 35.180493394215944, 32.229361841837488 ], [ 35.180297031402631, 32.229259010314991 ] ], [ [ 35.180888671875095, 32.229289297739683 ], [ 35.18108333333339, 32.22925 ], [ 35.181150276184155, 32.229384672800791 ], [ 35.180976207733124, 32.229444661458388 ], [ 35.180888671875095, 32.229289297739683 ] ], [ [ 35.193971473693864, 32.229434935252016 ], [ 35.193898396809914, 32.229361860911126 ], [ 35.194000000000131, 32.229333333333329 ], [ 35.193971473693864, 32.229434935252016 ] ], [ [ 35.175666666666757, 32.229666666666731 ], [ 35.175638139088903, 32.229768268585246 ], [ 35.175565064748241, 32.229695194244528 ], [ 35.175666666666757, 32.229666666666731 ] ], [ [ 35.179315064748153, 32.229778527577821 ], [ 35.179416666666668, 32.22975 ], [ 35.179388139089042, 32.22985160191854 ], [ 35.179315064748153, 32.229778527577821 ] ], [ [ 35.19525, 32.230166666666719 ], [ 35.19525, 32.22975 ], [ 35.195333333333338, 32.22975 ], [ 35.1955, 32.22975 ], [ 35.195566200256394, 32.229883177439376 ], [ 35.195444661458339, 32.229944661458319 ], [ 35.195388671875037, 32.230138671875125 ], [ 35.195333333333338, 32.230166666666719 ], [ 35.19525, 32.230166666666719 ] ], [ [ 35.17575, 32.229916666666782 ], [ 35.175715963363757, 32.230049297332869 ], [ 35.175534036636407, 32.230117369333925 ], [ 35.175329599380461, 32.230250495910695 ], [ 35.175215963363598, 32.230164370219029 ], [ 35.175522883097358, 32.229952461242817 ], [ 35.17575, 32.229916666666782 ] ], [ [ 35.187891693115319, 32.230129681905112 ], [ 35.188, 32.230083333333369 ], [ 35.187966621398971, 32.230272711436101 ], [ 35.187891693115319, 32.230129681905112 ] ], [ [ 35.188544765472386, 32.230225611368951 ], [ 35.18925, 32.230166666666719 ], [ 35.189430528005062, 32.230455899556603 ], [ 35.188647131602011, 32.230538567861004 ], [ 35.188544765472386, 32.230225611368951 ] ], [ [ 35.19270622762042, 32.230782526652092 ], [ 35.19266666666681, 32.23041666666677 ], [ 35.192833333333397, 32.23041666666677 ], [ 35.19291666666669, 32.23041666666677 ], [ 35.192991162618, 32.230586547851601 ], [ 35.19270622762042, 32.230782526652092 ] ], [ [ 35.194731730143303, 32.230445194244396 ], [ 35.194833333333349, 32.23041666666677 ], [ 35.194804807027197, 32.230518268585286 ], [ 35.194731730143303, 32.230445194244396 ] ], [ [ 35.192066942850772, 32.230468006134004 ], [ 35.191892873128211, 32.230527994791601 ], [ 35.191805338541712, 32.230372631073124 ], [ 35.192, 32.230333333333476 ], [ 35.192066942850772, 32.230468006134004 ] ], [ [ 35.186416666666787, 32.229916666666782 ], [ 35.186383288065542, 32.230106044769343 ], [ 35.18630835978189, 32.229963015238525 ], [ 35.186416666666787, 32.229916666666782 ] ], [ [ 35.183891693115299, 32.231046348571795 ], [ 35.184, 32.231 ], [ 35.183966621398952, 32.231189378102613 ], [ 35.183891693115299, 32.231046348571795 ] ], [ [ 35.188305338541682, 32.231199794769395 ], [ 35.188666666666791, 32.231166666666638 ], [ 35.188818150838301, 32.231470347086656 ], [ 35.188372844696119, 32.231527994791747 ], [ 35.188305338541682, 32.231199794769395 ] ], [ [ 35.187539323171052, 32.231377343495694 ], [ 35.187692282358796, 32.231514011383183 ], [ 35.187377343495712, 32.231442925771148 ], [ 35.1875, 32.231333333333453 ], [ 35.187539323171052, 32.231377343495694 ] ], [ [ 35.182833333333406, 32.2315 ], [ 35.182871145884235, 32.231545520782561 ], [ 35.183204355875716, 32.231690031687492 ], [ 35.182871145884235, 32.23178781255092 ], [ 35.182767197926921, 32.231912949880041 ], [ 35.182462187449119, 32.231756806691521 ], [ 35.182833333333406, 32.2315 ] ], [ [ 35.187349737803231, 32.231907623291079 ], [ 35.187833333333401, 32.231583333333333 ], [ 35.187790172577024, 32.231857190450057 ], [ 35.187534036000557, 32.232034036000698 ], [ 35.187446805318302, 32.232267164866244 ], [ 35.187246673584013, 32.232367369333929 ], [ 35.187349737803231, 32.231907623291079 ] ], [ [ 35.184833333333358, 32.23225 ], [ 35.184788054148498, 32.232355809529565 ], [ 35.184641693115339, 32.232283777872851 ], [ 35.184833333333358, 32.23225 ] ], [ [ 35.188826015472387, 32.23229166666664 ], [ 35.188657213846909, 32.232199141184424 ], [ 35.189083333333258, 32.232166666666785 ], [ 35.189024126688707, 32.232290779113896 ], [ 35.189060316721566, 32.232378582000763 ], [ 35.188886768341092, 32.232608050028489 ], [ 35.18855382792168, 32.232440862019985 ], [ 35.188826015472387, 32.23229166666664 ] ], [ [ 35.188333333333389, 32.2325 ], [ 35.188399682362956, 32.232633478800437 ], [ 35.188269944508875, 32.232694661458311 ], [ 35.188055338541744, 32.232535054524817 ], [ 35.188333333333389, 32.2325 ] ], [ [ 35.192539321899346, 32.232622656504304 ], [ 35.192634933471709, 32.232537228902288 ], [ 35.19239250183108, 32.232320617675896 ], [ 35.192324826558433, 32.231377343495694 ], [ 35.192695704142352, 32.231792432149291 ], [ 35.192750000000103, 32.232083333333321 ], [ 35.193083333333334, 32.232083333333321 ], [ 35.193116821288982, 32.232017134348553 ], [ 35.19325, 32.232083333333321 ], [ 35.193550806681344, 32.23211585998547 ], [ 35.193615859985414, 32.232217473347987 ], [ 35.193859298706172, 32.232373318990142 ], [ 35.193449193318656, 32.232449193318814 ], [ 35.193333333333385, 32.2325 ], [ 35.193333333333385, 32.232583333333309 ], [ 35.19345697530116, 32.232659516652518 ], [ 35.193531771342009, 32.232918177286933 ], [ 35.193117462158227, 32.233059365590464 ], [ 35.193, 32.23325 ], [ 35.193, 32.233333333333348 ], [ 35.19311626688642, 32.233416666666642 ], [ 35.193, 32.2335 ], [ 35.192940071105966, 32.233852784474834 ], [ 35.1927231877645, 32.233952968597521 ], [ 35.19266666666681, 32.23375 ], [ 35.192583333333346, 32.23375 ], [ 35.192583333333346, 32.23366666666675 ], [ 35.192444661458467, 32.233694661458458 ], [ 35.192333333333409, 32.23375 ], [ 35.191991422017452, 32.233789845784486 ], [ 35.191715207417815, 32.233965208689483 ], [ 35.191534792582218, 32.234034791310762 ], [ 35.191416816711524, 32.234199390411504 ], [ 35.19129854075112, 32.234035392761371 ], [ 35.191666666666663, 32.233833333333337 ], [ 35.191861328125015, 32.233734856923547 ], [ 35.191792327880876, 32.233479925791528 ], [ 35.1915, 32.233333333333348 ], [ 35.191648618062459, 32.233051561991431 ], [ 35.19180156199144, 32.233115104675278 ], [ 35.191908854166741, 32.233429943084843 ], [ 35.192175582885682, 32.233513023376474 ], [ 35.192592051188228, 32.233371098836244 ], [ 35.192741282145221, 32.233128901163866 ], [ 35.192968228658174, 32.233051561991431 ], [ 35.193, 32.233 ], [ 35.193, 32.232916666666654 ], [ 35.19297880299888, 32.232771198272701 ], [ 35.192854530334557, 32.232645468393969 ], [ 35.192833333333397, 32.2325 ], [ 35.192789321899454, 32.232539323171011 ], [ 35.192710678100582, 32.232794010162365 ], [ 35.192210678100594, 32.232825419107996 ], [ 35.192460678100701, 32.232710676829072 ], [ 35.192539321899346, 32.232622656504304 ] ], [ [ 35.186, 32.23275 ], [ 35.185972005208384, 32.23297200520841 ], [ 35.185737297058211, 32.233027994791712 ], [ 35.185859177907446, 32.232778428395704 ], [ 35.186, 32.23275 ] ], [ [ 35.186625832875563, 32.232869297027605 ], [ 35.18675, 32.23275 ], [ 35.186790833791065, 32.232792499542256 ], [ 35.187120632171684, 32.2329525019328 ], [ 35.187140552520816, 32.233290833791159 ], [ 35.186625832875563, 32.232869297027605 ] ], [ [ 35.183546089172296, 32.233054308573458 ], [ 35.183666666666795, 32.23325 ], [ 35.183772215525323, 32.233295168558755 ], [ 35.183546348571724, 32.233358306884782 ], [ 35.1835, 32.23325 ], [ 35.183546089172296, 32.233054308573458 ] ], [ [ 35.186226207733171, 32.233361328125113 ], [ 35.186138671875142, 32.233205964406409 ], [ 35.186333333333323, 32.233166666666762 ], [ 35.186400276184202, 32.233301339467516 ], [ 35.186226207733171, 32.233361328125113 ] ], [ [ 35.18433333333337, 32.23325 ], [ 35.184276866912853, 32.233357204437368 ], [ 35.184054583231614, 32.233286221822198 ], [ 35.18433333333337, 32.23325 ] ], [ [ 35.188333333333389, 32.23325 ], [ 35.188393828074197, 32.233139636993485 ], [ 35.1885, 32.233333333333348 ], [ 35.188333333333389, 32.233333333333348 ], [ 35.188333333333389, 32.23325 ] ], [ [ 35.188138671875095, 32.232785054524868 ], [ 35.188416666666683, 32.23275 ], [ 35.188521710713758, 32.232961325327608 ], [ 35.188211429595981, 32.233027994791712 ], [ 35.188138671875095, 32.232785054524868 ] ], [ [ 35.189166666666779, 32.233333333333348 ], [ 35.189356638590482, 32.233479966481639 ], [ 35.189416666666659, 32.233833333333337 ], [ 35.189416666666659, 32.233916666666801 ], [ 35.189333333333366, 32.233916666666801 ], [ 35.189222005208308, 32.233972005208386 ], [ 35.189083333333258, 32.234 ], [ 35.189, 32.234 ], [ 35.189, 32.233916666666801 ], [ 35.189, 32.233833333333337 ], [ 35.18906619898479, 32.233799844106102 ], [ 35.189, 32.23366666666675 ], [ 35.189083333333258, 32.23366666666675 ], [ 35.189083333333258, 32.233333333333348 ], [ 35.189166666666779, 32.233333333333348 ] ], [ [ 35.190384140014658, 32.233967473348002 ], [ 35.190451054890957, 32.233777230580699 ], [ 35.19086370595295, 32.233910324096769 ], [ 35.190778849283845, 32.234212277730251 ], [ 35.190333333333342, 32.23425 ], [ 35.190166666666698, 32.234166666666738 ], [ 35.190231718699124, 32.23406505203252 ], [ 35.190384140014658, 32.233967473348002 ] ], [ [ 35.189815203348871, 32.234145259857257 ], [ 35.189500000000123, 32.234166666666738 ], [ 35.189500000000123, 32.234083333333444 ], [ 35.189521198272814, 32.234021198272785 ], [ 35.189937864939452, 32.234018229166736 ], [ 35.189815203348871, 32.234145259857257 ] ], [ [ 35.192166666666651, 32.23425 ], [ 35.192250000000115, 32.234083333333444 ], [ 35.1925, 32.234083333333444 ], [ 35.192620913187739, 32.234436587015921 ], [ 35.192166666666651, 32.2345 ], [ 35.191897850036696, 32.234605677286936 ], [ 35.191797030131056, 32.234396125793467 ], [ 35.192166666666651, 32.234333333333325 ], [ 35.192273396809924, 32.234291666666763 ], [ 35.192166666666651, 32.23425 ] ], [ [ 35.19375, 32.23475 ], [ 35.19375, 32.234583333333376 ], [ 35.193833333333373, 32.234583333333376 ], [ 35.19389382680265, 32.234472970326863 ], [ 35.194000000000131, 32.234666666666726 ], [ 35.194108810424837, 32.234717358907176 ], [ 35.193833333333373, 32.23475 ], [ 35.19375, 32.23475 ] ], [ [ 35.194533777872721, 32.23485830688486 ], [ 35.194500000000119, 32.234666666666726 ], [ 35.194583333333412, 32.234666666666726 ], [ 35.194608306884845, 32.234725026448587 ], [ 35.194773473103851, 32.234795706431157 ], [ 35.194533777872721, 32.23485830688486 ] ], [ [ 35.192067555745382, 32.234802570343106 ], [ 35.191808247884182, 32.234861328125021 ], [ 35.191722005208419, 32.23470172119147 ], [ 35.192, 32.234666666666726 ], [ 35.192067555745382, 32.234802570343106 ] ], [ [ 35.191, 32.23425 ], [ 35.190971472422291, 32.234351601918547 ], [ 35.190898398081572, 32.234278527577828 ], [ 35.191, 32.23425 ] ], [ [ 35.190000000000111, 32.23366666666675 ], [ 35.189966621398924, 32.233856044769254 ], [ 35.189891693115214, 32.233713015238493 ], [ 35.190000000000111, 32.23366666666675 ] ], [ [ 35.19031506474812, 32.233361860910975 ], [ 35.190416666666806, 32.233333333333348 ], [ 35.190388139089009, 32.233434935251864 ], [ 35.19031506474812, 32.233361860910975 ] ], [ [ 35.193666666666786, 32.23325 ], [ 35.193565063476569, 32.233221472422429 ], [ 35.193638140360633, 32.233148398081539 ], [ 35.193666666666786, 32.23325 ], [ 35.193715962727879, 32.233215963999555 ], [ 35.193836255391545, 32.233041737874487 ], [ 35.194142379760763, 32.232965963999447 ], [ 35.194367370605562, 32.233174102783209 ], [ 35.193747703552219, 32.233367369333848 ], [ 35.193666666666786, 32.23325 ] ], [ [ 35.193558359781889, 32.232700444539375 ], [ 35.19375, 32.232666666666773 ], [ 35.193704719543518, 32.23277247619643 ], [ 35.193558359781889, 32.232700444539375 ] ], [ [ 35.193065063476581, 32.231695194244423 ], [ 35.193166666666798, 32.231666666666797 ], [ 35.193138140360475, 32.231768268585142 ], [ 35.193065063476581, 32.231695194244423 ] ], [ [ 35.189430884043475, 32.231529581705843 ], [ 35.189296915690079, 32.231611328125041 ], [ 35.189222005208308, 32.231389652252233 ], [ 35.189333333333366, 32.231333333333453 ], [ 35.189430884043475, 32.231529581705843 ] ], [ [ 35.192638140360486, 32.231351601918675 ], [ 35.192565063476593, 32.231278527577786 ], [ 35.19266666666681, 32.23125 ], [ 35.192638140360486, 32.231351601918675 ] ], [ [ 35.192400276184173, 32.2312180061341 ], [ 35.192226206461612, 32.231277994791697 ], [ 35.192138671875114, 32.231122631072992 ], [ 35.192333333333409, 32.231083333333345 ], [ 35.192400276184173, 32.2312180061341 ] ], [ [ 35.188416666666683, 32.23175 ], [ 35.188521710713758, 32.231961325327688 ], [ 35.188211429595981, 32.232027994791736 ], [ 35.188138671875095, 32.231785054524721 ], [ 35.188416666666683, 32.23175 ] ], [ [ 35.189048542022817, 32.231886482238792 ], [ 35.18925, 32.231833333333441 ], [ 35.189331757863499, 32.232032290140864 ], [ 35.189048542022817, 32.231886482238792 ] ], [ [ 35.189721472422207, 32.231851601918663 ], [ 35.189648398081545, 32.231778527577774 ], [ 35.18975, 32.23175 ], [ 35.189721472422207, 32.231851601918663 ] ], [ [ 35.192083333333358, 32.232083333333321 ], [ 35.192054807027205, 32.232184935252008 ], [ 35.191981730143311, 32.232111860911118 ], [ 35.192083333333358, 32.232083333333321 ] ], [ [ 35.188333333333389, 32.232166666666785 ], [ 35.188304805755592, 32.232268268585301 ], [ 35.188231731414874, 32.232195194244412 ], [ 35.188333333333389, 32.232166666666785 ] ], [ [ 35.192083333333358, 32.2325 ], [ 35.192054807027205, 32.232601601918532 ], [ 35.191981730143311, 32.232528527577813 ], [ 35.192083333333358, 32.2325 ] ], [ [ 35.193777470906696, 32.23498760096237 ], [ 35.193930674235105, 32.235282526016363 ], [ 35.193561014811166, 32.23517864290875 ], [ 35.1935, 32.235083333333364 ], [ 35.193583333333265, 32.235083333333364 ], [ 35.193583333333265, 32.234916666666777 ], [ 35.193666666666786, 32.234916666666777 ], [ 35.193777470906696, 32.23498760096237 ] ], [ [ 35.198, 32.23375 ], [ 35.198, 32.23366666666675 ], [ 35.198083333333273, 32.23366666666675 ], [ 35.198140937805249, 32.233692395528294 ], [ 35.19819239552811, 32.233807604471792 ], [ 35.198357760111492, 32.233881465911963 ], [ 35.198035123189356, 32.233942395528175 ], [ 35.198, 32.23375 ] ], [ [ 35.197166666666647, 32.233583333333456 ], [ 35.197138140360494, 32.233684935251972 ], [ 35.1970650634766, 32.233611860911083 ], [ 35.197166666666647, 32.233583333333456 ] ], [ [ 35.195873497009416, 32.233557332356781 ], [ 35.196112083435025, 32.233690963745232 ], [ 35.196, 32.23375 ], [ 35.195833333333269, 32.23375 ], [ 35.195873497009416, 32.233557332356781 ] ], [ [ 35.197525616963844, 32.233597344716429 ], [ 35.197210678100589, 32.233526259104337 ], [ 35.197333333333404, 32.233416666666642 ], [ 35.197372655232755, 32.233460676829111 ], [ 35.197525616963844, 32.233597344716429 ] ], [ [ 35.186916666666775, 32.23375 ], [ 35.186794633229511, 32.233948053995846 ], [ 35.186551561991394, 32.233788464864233 ], [ 35.186916666666775, 32.23375 ] ], [ [ 35.186833333333254, 32.234 ], [ 35.186797653198369, 32.234274579366115 ], [ 35.186721249898312, 32.234059036254962 ], [ 35.186833333333254, 32.234 ] ], [ [ 35.184583333333251, 32.23425 ], [ 35.184690064748111, 32.234291666666763 ], [ 35.184583333333251, 32.234333333333325 ], [ 35.184537812550957, 32.234371145884268 ], [ 35.184413007100488, 32.234521392822387 ], [ 35.184482701619459, 32.234128854115738 ], [ 35.184583333333251, 32.23425 ] ], [ [ 35.175333333333356, 32.234166666666738 ], [ 35.175369635264076, 32.234213698069311 ], [ 35.175547031402573, 32.234286301930752 ], [ 35.175619635264127, 32.234463698069192 ], [ 35.17581093279523, 32.234611354828019 ], [ 35.175675676345804, 32.234869635264204 ], [ 35.175499132156403, 32.234640913645478 ], [ 35.174803373336772, 32.234843777974561 ], [ 35.174512641906745, 32.234467119852809 ], [ 35.174888715744032, 32.234242196400999 ], [ 35.175333333333356, 32.234166666666738 ] ], [ [ 35.174166666666792, 32.234666666666726 ], [ 35.174284036318568, 32.234882630666107 ], [ 35.174579029719098, 32.234958333333338 ], [ 35.174207450231052, 32.235053690592508 ], [ 35.17401967875162, 32.23493141555798 ], [ 35.174062980969779, 32.234738255818741 ], [ 35.174166666666792, 32.234666666666726 ] ], [ [ 35.175326727549361, 32.235111841201785 ], [ 35.175130364736049, 32.235009010315082 ], [ 35.17525, 32.234916666666777 ], [ 35.175326727549361, 32.235111841201785 ] ], [ [ 35.1758886718751, 32.235033128102657 ], [ 35.17625, 32.235 ], [ 35.17613867187498, 32.235222005208414 ], [ 35.175961258570339, 32.235277994791716 ], [ 35.1758886718751, 32.235033128102657 ] ], [ [ 35.1745, 32.235166666666657 ], [ 35.174614920616136, 32.235446322759117 ], [ 35.174303967157925, 32.235534791946463 ], [ 35.174215208371493, 32.235212707519565 ], [ 35.1745, 32.235166666666657 ] ], [ [ 35.175384012222366, 32.235554505030393 ], [ 35.176000000000101, 32.235416666666765 ], [ 35.176136898676532, 32.235635999679687 ], [ 35.1759560146333, 32.235621465683096 ], [ 35.17566362317416, 32.235784601211662 ], [ 35.175358509063642, 32.235871901194344 ], [ 35.175384012222366, 32.235554505030393 ] ], [ [ 35.174833333333368, 32.23575 ], [ 35.174934935251883, 32.235778527577793 ], [ 35.174861860910994, 32.235851601918682 ], [ 35.174833333333368, 32.23575 ], [ 35.174731731414852, 32.235721472422313 ], [ 35.174804805755741, 32.235648398081423 ], [ 35.174833333333368, 32.23575 ] ], [ [ 35.178565064748113, 32.235861860911086 ], [ 35.1786666666668, 32.23583333333346 ], [ 35.178638139089003, 32.235934935251976 ], [ 35.178565064748113, 32.235861860911086 ] ], [ [ 35.179583333333312, 32.236666666666792 ], [ 35.179554805755629, 32.236768268585308 ], [ 35.179481731414739, 32.236695194244419 ], [ 35.179583333333312, 32.236666666666792 ], [ 35.1795, 32.2365 ], [ 35.179306303024362, 32.236458333333474 ], [ 35.1795, 32.236416666666742 ], [ 35.179472005208424, 32.236361328124985 ], [ 35.179153848648127, 32.23629709943134 ], [ 35.179012500127158, 32.23611916669222 ], [ 35.179141245524079, 32.23605403645837 ], [ 35.179228682200119, 32.235875 ], [ 35.179182505925553, 32.235780448913602 ], [ 35.179333333333375, 32.23575 ], [ 35.179544765472542, 32.236121901194224 ], [ 35.179583333333312, 32.23625 ], [ 35.179583333333312, 32.236333333333448 ], [ 35.179666666666776, 32.236333333333448 ], [ 35.179866275787447, 32.23677542495733 ], [ 35.179583333333312, 32.236666666666792 ] ], [ [ 35.179916666666657, 32.235916666666753 ], [ 35.179916666666657, 32.23575 ], [ 35.180101198832233, 32.235787253061915 ], [ 35.180166666666764, 32.235916666666753 ], [ 35.179916666666657, 32.235916666666753 ] ], [ [ 35.1786666666668, 32.236 ], [ 35.178638139089003, 32.236101601918563 ], [ 35.178565064748113, 32.236028527577844 ], [ 35.1786666666668, 32.236 ] ], [ [ 35.1786666666668, 32.236333333333448 ], [ 35.178743394215928, 32.236528507868456 ], [ 35.178547031402616, 32.236425676345959 ], [ 35.1786666666668, 32.236333333333448 ] ], [ [ 35.178083333333348, 32.2365 ], [ 35.178054805755721, 32.236601601918551 ], [ 35.177981731414832, 32.236528527577832 ], [ 35.178083333333348, 32.2365 ] ], [ [ 35.178762999216758, 32.235447939554888 ], [ 35.178630364735909, 32.23529863548282 ], [ 35.17891666666668, 32.23525 ], [ 35.1789529685974, 32.235380364736045 ], [ 35.179106227238947, 32.235498660405483 ], [ 35.178762999216758, 32.235447939554888 ] ], [ [ 35.179348475774134, 32.235361328125009 ], [ 35.17925, 32.235166666666657 ], [ 35.179416666666668, 32.235083820978844 ], [ 35.179583333333312, 32.235166666666657 ], [ 35.179555338541718, 32.235305338541707 ], [ 35.179348475774134, 32.235361328125009 ] ], [ [ 35.176738857905093, 32.235043912251854 ], [ 35.176426540374678, 32.235117369969828 ], [ 35.176299296697039, 32.234791777292912 ], [ 35.176666666666677, 32.23475 ], [ 35.176738857905093, 32.235043912251854 ] ], [ [ 35.177916666666761, 32.235 ], [ 35.177958333333322, 32.234893268585267 ], [ 35.178, 32.235 ], [ 35.177916666666761, 32.235 ] ], [ [ 35.17475, 32.234916666666777 ], [ 35.174721472422277, 32.235018268585293 ], [ 35.174648398081558, 32.234945194244403 ], [ 35.17475, 32.234916666666777 ] ], [ [ 35.176416666666796, 32.235166666666657 ], [ 35.176493394215925, 32.235361841201893 ], [ 35.176297031402612, 32.235259009679226 ], [ 35.176416666666796, 32.235166666666657 ] ], [ [ 35.17625, 32.235333333333472 ], [ 35.176221472422412, 32.235434935251988 ], [ 35.176148398081523, 32.235361860911098 ], [ 35.17625, 32.235333333333472 ] ], [ [ 35.179083333333324, 32.234666666666726 ], [ 35.179125, 32.234559935251866 ], [ 35.179166666666788, 32.234666666666726 ], [ 35.179083333333324, 32.234666666666726 ] ], [ [ 35.179074621836378, 32.234449947357177 ], [ 35.179133429209401, 32.234216545104971 ], [ 35.179333333333375, 32.234166666666738 ], [ 35.179412144978926, 32.234350288391113 ], [ 35.179074621836378, 32.234449947357177 ] ], [ [ 35.17575, 32.234333333333325 ], [ 35.175721472422424, 32.234434935252011 ], [ 35.175648398081535, 32.234361860911122 ], [ 35.17575, 32.234333333333325 ] ], [ [ 35.184833333333358, 32.235083333333364 ], [ 35.184804805755732, 32.23518493525188 ], [ 35.184731731414843, 32.23511186091099 ], [ 35.184833333333358, 32.235083333333364 ] ], [ [ 35.183295244852786, 32.236811330159526 ], [ 35.183333333333394, 32.237 ], [ 35.1832500000001, 32.237 ], [ 35.183208333333369, 32.237106731414826 ], [ 35.183166666666807, 32.237 ], [ 35.183083333333343, 32.237 ], [ 35.183083333333343, 32.23691666666673 ], [ 35.183295244852786, 32.236811330159526 ] ], [ [ 35.181416666666792, 32.237083333333317 ], [ 35.181371387481761, 32.237189142862974 ], [ 35.181225026448601, 32.237117110570296 ], [ 35.181416666666792, 32.237083333333317 ] ], [ [ 35.193141253153556, 32.225264193216901 ], [ 35.193, 32.225166666666723 ], [ 35.193034037272184, 32.224867369333992 ], [ 35.193166666666798, 32.224666666666735 ], [ 35.193451169331922, 32.224604611714767 ], [ 35.1935, 32.22508333333343 ], [ 35.193366874694902, 32.225150679270428 ], [ 35.193333333333385, 32.225416666666774 ], [ 35.193222005208384, 32.22547200520836 ], [ 35.193083333333334, 32.2255 ], [ 35.193141253153556, 32.225264193216901 ] ], [ [ 35.195808359781893, 32.225367111206083 ], [ 35.196, 32.22533333333331 ], [ 35.195954719543522, 32.225439142862967 ], [ 35.195808359781893, 32.225367111206083 ] ], [ [ 35.195786791483613, 32.225183684031265 ], [ 35.195722760518379, 32.224887029012166 ], [ 35.195833333333269, 32.224833333333322 ], [ 35.195860572814922, 32.22488942718519 ], [ 35.196016832987539, 32.224965307871628 ], [ 35.19596343485523, 32.225277239481613 ], [ 35.195786791483613, 32.225183684031265 ] ], [ [ 35.195416666666802, 32.224833333333322 ], [ 35.195461947123135, 32.224727523803836 ], [ 35.195608306884822, 32.22479955546072 ], [ 35.195416666666802, 32.224833333333322 ], [ 35.195388140360478, 32.224934935252008 ], [ 35.195315063476585, 32.224861860911119 ], [ 35.195416666666802, 32.224833333333322 ] ], [ [ 35.195721473693879, 32.224768268585251 ], [ 35.195648396809929, 32.224695194244532 ], [ 35.19575, 32.224666666666735 ], [ 35.195721473693879, 32.224768268585251 ] ], [ [ 35.19545412190763, 32.224618124644053 ], [ 35.195020594278901, 32.224439973195445 ], [ 35.19504990132657, 32.224291666666772 ], [ 35.195032956441253, 32.224205922444753 ], [ 35.195168159484865, 32.223876909891885 ], [ 35.195333333333338, 32.223833333333346 ], [ 35.195531044006373, 32.224135363260984 ], [ 35.19545412190763, 32.224618124644053 ] ], [ [ 35.195000000000107, 32.224500000000148 ], [ 35.19497147369384, 32.224601601918664 ], [ 35.19489839680989, 32.224528527577775 ], [ 35.195000000000107, 32.224500000000148 ] ], [ [ 35.182333333333247, 32.225 ], [ 35.182410060882546, 32.225195175170882 ], [ 35.18221369806929, 32.225092343648384 ], [ 35.182333333333247, 32.225 ] ], [ [ 35.18649975967412, 32.224084795633928 ], [ 35.186583333333374, 32.223916666666639 ], [ 35.186789122263633, 32.223969477335743 ], [ 35.186833333333254, 32.22425 ], [ 35.186633566538546, 32.224349299112987 ], [ 35.18649975967412, 32.224084795633928 ] ], [ [ 35.187416666666763, 32.224166666666747 ], [ 35.187416666666763, 32.224083333333454 ], [ 35.187733537038298, 32.224009908040387 ], [ 35.187952968597415, 32.2241011225384 ], [ 35.18758333333335, 32.22425 ], [ 35.1875, 32.22425 ], [ 35.1875, 32.224166666666747 ], [ 35.187416666666763, 32.224166666666747 ] ], [ [ 35.187041666666801, 32.224059936523417 ], [ 35.187083333333362, 32.224166666666747 ], [ 35.187, 32.224166666666747 ], [ 35.187041666666801, 32.224059936523417 ] ], [ [ 35.187788430531953, 32.22352369689952 ], [ 35.187750000000108, 32.223333333333358 ], [ 35.187833333333401, 32.223333333333358 ], [ 35.187833333333401, 32.22325 ], [ 35.187924967447941, 32.22313556925468 ], [ 35.188083333333338, 32.223333333333358 ], [ 35.188055338541744, 32.223388671875114 ], [ 35.187788430531953, 32.22352369689952 ] ], [ [ 35.182326727549253, 32.222111841837545 ], [ 35.18213036473594, 32.222009010315048 ], [ 35.18225, 32.221916666666743 ], [ 35.182326727549253, 32.222111841837545 ] ], [ [ 35.18191666666678, 32.22183333333345 ], [ 35.181859630584768, 32.222032819112258 ], [ 35.181712942759134, 32.221891581217449 ], [ 35.18191666666678, 32.22183333333345 ] ], [ [ 35.18125, 32.222 ], [ 35.181221472422351, 32.222101603190254 ], [ 35.181148398081461, 32.222028526306133 ], [ 35.18125, 32.222 ] ], [ [ 35.189083333333258, 32.22183333333345 ], [ 35.189166666666779, 32.221717066447013 ], [ 35.18925, 32.22183333333345 ], [ 35.189083333333258, 32.22183333333345 ] ], [ [ 35.188416666666683, 32.2215 ], [ 35.188416666666683, 32.221416666666755 ], [ 35.1885, 32.221416666666755 ], [ 35.188608262380058, 32.221465021769234 ], [ 35.188416666666683, 32.2215 ] ], [ [ 35.188666666666791, 32.220916666666767 ], [ 35.188697410583529, 32.220672856648719 ], [ 35.188861328124915, 32.220818191528338 ], [ 35.188666666666791, 32.220916666666767 ] ], [ [ 35.183277994791638, 32.220777994791717 ], [ 35.1832500000001, 32.220833333333474 ], [ 35.182984575907426, 32.220700233459581 ], [ 35.183065895080517, 32.220533724467032 ], [ 35.183333333333394, 32.2205 ], [ 35.18343263244634, 32.220699765523307 ], [ 35.183277994791638, 32.220777994791717 ] ], [ [ 35.175539323170995, 32.220372655232836 ], [ 35.17544535064701, 32.220676976521872 ], [ 35.174877343813591, 32.220192924499599 ], [ 35.175088020960629, 32.220004686991331 ], [ 35.175205989837593, 32.21937265523286 ], [ 35.175333333333356, 32.219333333333338 ], [ 35.175240353902268, 32.21959246571862 ], [ 35.175460676829118, 32.219789321899555 ], [ 35.175575565338136, 32.219917905171769 ], [ 35.175705989837752, 32.22022374216715 ], [ 35.175539323170995, 32.220372655232836 ] ], [ [ 35.191916666666771, 32.220333333333315 ], [ 35.192041666666796, 32.220138076782291 ], [ 35.192166666666651, 32.220333333333315 ], [ 35.191916666666771, 32.220333333333315 ] ], [ [ 35.198971473693859, 32.220184936523481 ], [ 35.198898396809909, 32.22011185963953 ], [ 35.199000000000126, 32.220083333333434 ], [ 35.198971473693859, 32.220184936523481 ] ], [ [ 35.190166666666698, 32.220000000000141 ], [ 35.190138139089072, 32.22010160319013 ], [ 35.190065064748183, 32.220028526306237 ], [ 35.190166666666698, 32.220000000000141 ] ], [ [ 35.188583333333327, 32.220166666666728 ], [ 35.188554805755643, 32.220268269856774 ], [ 35.188481731414754, 32.220195192972824 ], [ 35.188583333333327, 32.220166666666728 ] ], [ [ 35.175558359146123, 32.219617111206048 ], [ 35.17575, 32.219583333333446 ], [ 35.17570472081502, 32.219689142863103 ], [ 35.175558359146123, 32.219617111206048 ] ], [ [ 35.183371943155976, 32.219445604960185 ], [ 35.183135650634767, 32.219289802551373 ], [ 35.183416666666687, 32.21925 ], [ 35.183371943155976, 32.219445604960185 ] ], [ [ 35.185538054148367, 32.219272476196409 ], [ 35.185391693115207, 32.219200444539524 ], [ 35.185583333333398, 32.219166666666752 ], [ 35.185538054148367, 32.219272476196409 ] ], [ [ 35.176083333333395, 32.219166666666752 ], [ 35.175979102452629, 32.219356821696067 ], [ 35.175887161254821, 32.219208864847872 ], [ 35.176083333333395, 32.219166666666752 ] ], [ [ 35.180500000000109, 32.21858333333347 ], [ 35.180500000000109, 32.2185 ], [ 35.18075, 32.2185 ], [ 35.18075, 32.21858333333347 ], [ 35.180550233205281, 32.218682632446416 ], [ 35.180500000000109, 32.21858333333347 ] ], [ [ 35.175865859349699, 32.21836585998534 ], [ 35.175762791951513, 32.218526855468781 ], [ 35.175467473983758, 32.218407503763899 ], [ 35.175634140650573, 32.218300806681441 ], [ 35.175699192682941, 32.218199193318753 ], [ 35.17575, 32.218166666666775 ], [ 35.175972005208394, 32.218277994791663 ], [ 35.176000000000101, 32.218333333333419 ], [ 35.175865859349699, 32.21836585998534 ] ], [ [ 35.183735047658331, 32.21836737060562 ], [ 35.183632630666125, 32.218164370218972 ], [ 35.18375, 32.218083333333311 ], [ 35.183890359242696, 32.218295733133971 ], [ 35.183735047658331, 32.21836737060562 ] ], [ [ 35.176666666666677, 32.21825 ], [ 35.176601198832145, 32.218379414876438 ], [ 35.176416666666796, 32.218416666666712 ], [ 35.176482134501157, 32.218287251790343 ], [ 35.176666666666677, 32.21825 ] ], [ [ 35.181333333333328, 32.215916666666772 ], [ 35.181361860911124, 32.215815063476555 ], [ 35.181434935252014, 32.215888140360505 ], [ 35.181333333333328, 32.215916666666772 ], [ 35.181416094462122, 32.21609380340584 ], [ 35.181265139261939, 32.216150705973291 ], [ 35.181143488566192, 32.215827967325936 ], [ 35.181333333333328, 32.215916666666772 ] ], [ [ 35.181731731414743, 32.215861859639631 ], [ 35.181833333333316, 32.215833333333478 ], [ 35.181804805755633, 32.215934936523524 ], [ 35.181731731414743, 32.215861859639631 ] ], [ [ 35.198367370605581, 32.219034037272195 ], [ 35.198667630513512, 32.218965962727964 ], [ 35.198507446289057, 32.219347345988012 ], [ 35.198565663655643, 32.219607045491557 ], [ 35.19833333333338, 32.21966666666674 ], [ 35.19825, 32.21966666666674 ], [ 35.198144996643123, 32.219239166259911 ], [ 35.19829929606118, 32.219132629394551 ], [ 35.198367370605581, 32.219034037272195 ] ], [ [ 35.208052490234365, 32.219531016032022 ], [ 35.207968983968101, 32.219289802551373 ], [ 35.20825, 32.21925 ], [ 35.208331082662085, 32.219427220662567 ], [ 35.208052490234365, 32.219531016032022 ] ], [ [ 35.207916666666677, 32.21925 ], [ 35.207916666666677, 32.219333333333338 ], [ 35.207416666666688, 32.219333333333338 ], [ 35.207416666666688, 32.219166666666752 ], [ 35.207547645568923, 32.218969685872423 ], [ 35.207866788228387, 32.21905009460454 ], [ 35.207916666666677, 32.21925 ] ], [ [ 35.205609715779644, 32.218986905415875 ], [ 35.205490837097273, 32.219115859985379 ], [ 35.205416666666792, 32.219 ], [ 35.20525, 32.219 ], [ 35.20525, 32.21858333333347 ], [ 35.204965962727897, 32.218428967793727 ], [ 35.205057390848765, 32.218234316508074 ], [ 35.205333333333272, 32.218416666666712 ], [ 35.205612093607556, 32.218609133402595 ], [ 35.205359283447365, 32.218703727722129 ], [ 35.2055, 32.218916666666701 ], [ 35.205609715779644, 32.218986905415875 ] ], [ [ 35.20825, 32.218333333333419 ], [ 35.208194661458322, 32.218222005208361 ], [ 35.208166666666727, 32.217916666666724 ], [ 35.208194661458322, 32.217861328125139 ], [ 35.208372512817391, 32.217805338541666 ], [ 35.208444661458373, 32.218055338541774 ], [ 35.208796020507805, 32.218231844584238 ], [ 35.208833333333359, 32.218416666666712 ], [ 35.20875, 32.218416666666712 ], [ 35.20875, 32.2185 ], [ 35.208549296061221, 32.21836737060562 ], [ 35.20825, 32.218333333333419 ] ], [ [ 35.217333333333386, 32.217916666666724 ], [ 35.217222005208328, 32.217861328125139 ], [ 35.216944661458399, 32.217805338541666 ], [ 35.216833333333398, 32.217750000000137 ], [ 35.216833333333398, 32.217666666666616 ], [ 35.216666666666811, 32.217666666666616 ], [ 35.216666666666811, 32.217583333333323 ], [ 35.216666666666811, 32.2175 ], [ 35.216250000000116, 32.2175 ], [ 35.216250000000116, 32.217750000000137 ], [ 35.216250000000116, 32.217833333333431 ], [ 35.216166666666652, 32.217833333333431 ], [ 35.216126586914129, 32.2177900772096 ], [ 35.215543741862064, 32.217697230021145 ], [ 35.215753178914497, 32.217503176371395 ], [ 35.215833333333421, 32.217250000000149 ], [ 35.215784037272158, 32.217049296061134 ], [ 35.215750000000128, 32.216833333333454 ], [ 35.215750000000128, 32.21675 ], [ 35.215666666666664, 32.21675 ], [ 35.215700703938865, 32.216617370605547 ], [ 35.215835220336885, 32.21652449289968 ], [ 35.215465962727819, 32.216284037272203 ], [ 35.215132629394645, 32.216198493957563 ], [ 35.215215652465929, 32.215997917175343 ], [ 35.215333333333433, 32.215916666666772 ], [ 35.215375, 32.215809936523499 ], [ 35.215416666666727, 32.215916666666772 ], [ 35.215575144449986, 32.216188870747942 ], [ 35.2157940114339, 32.216289321899524 ], [ 35.216052795410178, 32.216470087687242 ], [ 35.216349706014057, 32.216452390035045 ], [ 35.216045603434281, 32.2160170338949 ], [ 35.216794011434047, 32.21587734476725 ], [ 35.216956451416024, 32.215789070129347 ], [ 35.217322133382197, 32.215810867309585 ], [ 35.217455988566201, 32.2159606781006 ], [ 35.217897623698036, 32.216043108622159 ], [ 35.218222386678065, 32.216219586690272 ], [ 35.218372655232827, 32.216890408833876 ], [ 35.218205988566069, 32.217039321899392 ], [ 35.218166666666718, 32.217083333333335 ], [ 35.217906397501736, 32.216969200134258 ], [ 35.217833333333374, 32.217083333333335 ], [ 35.217337849934836, 32.21711780802417 ], [ 35.217404688517377, 32.217355651855598 ], [ 35.217695256551167, 32.217541666666762 ], [ 35.217416666666679, 32.217583333333323 ], [ 35.217333333333386, 32.217583333333323 ], [ 35.217333333333386, 32.217916666666724 ], [ 35.217583333333437, 32.217916666666724 ], [ 35.217583333333437, 32.218 ], [ 35.217417251587051, 32.218082555135197 ], [ 35.217333333333386, 32.217916666666724 ] ], [ [ 35.217648396809807, 32.217278526306245 ], [ 35.21775, 32.217250000000149 ], [ 35.217721471150696, 32.217351603190195 ], [ 35.217648396809807, 32.217278526306245 ] ], [ [ 35.218648396809954, 32.21686185963955 ], [ 35.21875, 32.216833333333454 ], [ 35.218721471150843, 32.216934936523501 ], [ 35.218648396809954, 32.21686185963955 ] ], [ [ 35.213285776774114, 32.215225934346563 ], [ 35.213196624755881, 32.21582921854656 ], [ 35.213083333333429, 32.215916666666772 ], [ 35.213041666666697, 32.216023396809931 ], [ 35.213000000000136, 32.215916666666772 ], [ 35.212799367268929, 32.215761805216573 ], [ 35.21288725789401, 32.215167043050258 ], [ 35.213285776774114, 32.215225934346563 ] ], [ [ 35.210526578267491, 32.215290382385263 ], [ 35.210618125915516, 32.215614410400349 ], [ 35.210132153828908, 32.215518379211517 ], [ 35.210083333333387, 32.215333333333319 ], [ 35.209754900614485, 32.215414004008096 ], [ 35.209801007588737, 32.215208333333464 ], [ 35.209775217692084, 32.215093289693243 ], [ 35.210011744181372, 32.215146313985258 ], [ 35.210083333333387, 32.21525 ], [ 35.210526578267491, 32.215290382385263 ] ], [ [ 35.213388137817503, 32.215101603190192 ], [ 35.213315063476614, 32.215028526306241 ], [ 35.21341666666666, 32.215000000000146 ], [ 35.213388137817503, 32.215101603190192 ] ], [ [ 35.20908333333341, 32.215083333333439 ], [ 35.209328244527114, 32.215121932983493 ], [ 35.209484738667811, 32.215348594665613 ], [ 35.209643681844113, 32.215458333333345 ], [ 35.209452133178843, 32.215590586344376 ], [ 35.20908333333341, 32.215500000000134 ], [ 35.208985707601016, 32.215617528279665 ], [ 35.208878855387354, 32.215371144612618 ], [ 35.208765513102321, 32.215173253377259 ], [ 35.208816909790073, 32.214669001261484 ], [ 35.209037811279359, 32.214795522054089 ], [ 35.209302378336702, 32.214873158772832 ], [ 35.209158958435125, 32.214992291768397 ], [ 35.20908333333341, 32.215083333333439 ] ], [ [ 35.224231730143231, 32.214778526306191 ], [ 35.224333333333448, 32.21475 ], [ 35.22430480448412, 32.214851603190255 ], [ 35.224231730143231, 32.214778526306191 ] ], [ [ 35.209333333333291, 32.214666666666744 ], [ 35.209304807027195, 32.214768269856791 ], [ 35.209231730143301, 32.21469519297284 ], [ 35.209333333333291, 32.214666666666744 ] ], [ [ 35.204192726135261, 32.2146056137085 ], [ 35.203456680297847, 32.214730651855461 ], [ 35.203380363464419, 32.214381968180476 ], [ 35.20366666666672, 32.214333333333343 ], [ 35.203702969868971, 32.214380363464443 ], [ 35.204215250651032, 32.214453188578375 ], [ 35.204192726135261, 32.2146056137085 ] ], [ [ 35.209565063476646, 32.214528526306253 ], [ 35.209666666666692, 32.2145 ], [ 35.209638140360596, 32.214601603190204 ], [ 35.209565063476646, 32.214528526306253 ] ], [ [ 35.209500000000105, 32.214583333333451 ], [ 35.209471473693782, 32.214684936523497 ], [ 35.209398396809888, 32.214611859639547 ], [ 35.209500000000105, 32.214583333333451 ] ], [ [ 35.218583333333413, 32.214333333333343 ], [ 35.21850000000012, 32.214166666666756 ], [ 35.21850000000012, 32.214083333333463 ], [ 35.218555338541705, 32.213972005208461 ], [ 35.218583333333413, 32.213833333333412 ], [ 35.218666666666707, 32.213833333333412 ], [ 35.218666666666707, 32.213916666666705 ], [ 35.218916666666587, 32.213916666666705 ], [ 35.21925, 32.213916666666705 ], [ 35.219333333333452, 32.214083333333463 ], [ 35.219333333333452, 32.21425 ], [ 35.219333333333452, 32.214333333333343 ], [ 35.219112299601363, 32.214420227050823 ], [ 35.218583333333413, 32.214333333333343 ] ], [ [ 35.2255, 32.214333333333343 ], [ 35.225550231933653, 32.214234034220453 ], [ 35.225750000000119, 32.214333333333343 ], [ 35.225750000000119, 32.214416666666693 ], [ 35.2255, 32.214416666666693 ], [ 35.2255, 32.214333333333343 ] ], [ [ 35.225138671875072, 32.213972986857129 ], [ 35.225250000000131, 32.213916666666705 ], [ 35.225416666666717, 32.213916666666705 ], [ 35.225525746663493, 32.213971847534197 ], [ 35.225138671875072, 32.213972986857129 ] ], [ [ 35.228634836832612, 32.213867370605612 ], [ 35.228583333333404, 32.213666666666768 ], [ 35.22875, 32.213583333333474 ], [ 35.228891164143988, 32.213796951293943 ], [ 35.228634836832612, 32.213867370605612 ] ], [ [ 35.217833333333374, 32.213666666666768 ], [ 35.217833333333374, 32.214 ], [ 35.21775, 32.214 ], [ 35.2173930969239, 32.214087661743292 ], [ 35.217166666666742, 32.21375 ], [ 35.217388671875142, 32.21363867187506 ], [ 35.217416666666679, 32.213583333333474 ], [ 35.217722005208316, 32.213611328125012 ], [ 35.217833333333374, 32.213666666666768 ] ], [ [ 35.20948360951752, 32.213551340738945 ], [ 35.209309539794958, 32.213611328125012 ], [ 35.20922200520846, 32.213455965677838 ], [ 35.209416666666641, 32.213416666666717 ], [ 35.20948360951752, 32.213551340738945 ] ], [ [ 35.222552739461264, 32.213534037272211 ], [ 35.222465962727938, 32.213218172709276 ], [ 35.222666666666726, 32.213166666666609 ], [ 35.222780985514305, 32.213438845316546 ], [ 35.222552739461264, 32.213534037272211 ] ], [ [ 35.203833333333364, 32.213166666666609 ], [ 35.203788052876803, 32.213272476196323 ], [ 35.203641693115344, 32.213200444539382 ], [ 35.203833333333364, 32.213166666666609 ] ], [ [ 35.201, 32.213 ], [ 35.200833333333264, 32.213083333333316 ], [ 35.20075, 32.212916666666729 ], [ 35.20075, 32.212833333333435 ], [ 35.200666666666677, 32.212833333333435 ], [ 35.200666666666677, 32.212750000000142 ], [ 35.200555989583336, 32.212694010416669 ], [ 35.2005, 32.212583333333328 ], [ 35.200583333333384, 32.212467066446891 ], [ 35.200666666666677, 32.212583333333328 ], [ 35.20075, 32.212583333333328 ], [ 35.20075, 32.212666666666621 ], [ 35.201, 32.213 ], [ 35.201191980997748, 32.213118291219132 ], [ 35.20106371561684, 32.213530090332029 ], [ 35.20079635365812, 32.213446815490784 ], [ 35.20075, 32.21325000000013 ], [ 35.200833333333264, 32.21325000000013 ], [ 35.200833333333264, 32.213166666666609 ], [ 35.201, 32.213166666666609 ], [ 35.201, 32.213 ] ], [ [ 35.192166666666651, 32.213083333333316 ], [ 35.191880366007581, 32.212918266296469 ], [ 35.192079785664873, 32.212794766744025 ], [ 35.192166666666651, 32.213083333333316 ], [ 35.192268269856868, 32.213111859639469 ], [ 35.192195192972747, 32.213184936523533 ], [ 35.192166666666651, 32.213083333333316 ] ], [ [ 35.198476603190159, 32.212958333333461 ], [ 35.198583333333261, 32.212916666666729 ], [ 35.198583333333261, 32.213 ], [ 35.198476603190159, 32.212958333333461 ] ], [ [ 35.190690064748196, 32.212791666666703 ], [ 35.190583333333393, 32.212833333333435 ], [ 35.1905000000001, 32.212833333333435 ], [ 35.1905000000001, 32.212750000000142 ], [ 35.190541666666661, 32.212643269856812 ], [ 35.190583333333393, 32.212750000000142 ], [ 35.190690064748196, 32.212791666666703 ] ], [ [ 35.191723187764524, 32.213213696797709 ], [ 35.192056081136059, 32.213314191182405 ], [ 35.192416666666702, 32.213583333333474 ], [ 35.192379414876257, 32.21376786549888 ], [ 35.192250000000115, 32.213833333333412 ], [ 35.1925, 32.214166666666756 ], [ 35.192465962727852, 32.214299296061142 ], [ 35.192333333333409, 32.2145 ], [ 35.192200154622526, 32.214433799743688 ], [ 35.192166666666651, 32.2145 ], [ 35.192034037272265, 32.214465962727957 ], [ 35.191894317626975, 32.214263600667323 ], [ 35.192, 32.213833333333412 ], [ 35.191793629964309, 32.213746655782188 ], [ 35.191649932861367, 32.214306597391897 ], [ 35.191536081949948, 32.214281074524024 ], [ 35.191465962727875, 32.214382629394663 ], [ 35.191299908955898, 32.214450703938894 ], [ 35.191215962727938, 32.214090688069689 ], [ 35.191585083007908, 32.213952573140546 ], [ 35.1915, 32.21375 ], [ 35.191441640218159, 32.213774973551494 ], [ 35.191370961507289, 32.2139401397705 ], [ 35.191308359781885, 32.213700444539541 ], [ 35.1915, 32.213666666666768 ], [ 35.191623621622853, 32.213571245829314 ], [ 35.191723187764524, 32.213213696797709 ] ], [ [ 35.191166666666675, 32.213416666666717 ], [ 35.19112138621017, 32.213522476196374 ], [ 35.190975026448484, 32.21345044453949 ], [ 35.191166666666675, 32.213416666666717 ] ], [ [ 35.1925, 32.21475 ], [ 35.192416666666702, 32.21475 ], [ 35.192416666666702, 32.214833333333331 ], [ 35.192250000000115, 32.214833333333331 ], [ 35.192250000000115, 32.214666666666744 ], [ 35.192333333333409, 32.214666666666744 ], [ 35.192333333333409, 32.214583333333451 ], [ 35.1925, 32.214583333333451 ], [ 35.1925, 32.21475 ], [ 35.192653157552115, 32.214710695902454 ], [ 35.192750000000103, 32.214333333333343 ], [ 35.192860677083445, 32.214389322916645 ], [ 35.19291666666669, 32.2145 ], [ 35.192888671874982, 32.214805338541794 ], [ 35.192833333333397, 32.214916666666625 ], [ 35.192722005208395, 32.214861328125096 ], [ 35.1925, 32.214833333333331 ], [ 35.1925, 32.21475 ] ], [ [ 35.200472005208326, 32.214872632344679 ], [ 35.200666666666677, 32.214833333333331 ], [ 35.200733609517386, 32.214968007405616 ], [ 35.200559539795051, 32.215027994791683 ], [ 35.200472005208326, 32.214872632344679 ] ], [ [ 35.189555112202925, 32.214891057332466 ], [ 35.189694661458475, 32.215119750976555 ], [ 35.18947298558561, 32.21519466145844 ], [ 35.189416666666659, 32.215083333333439 ], [ 35.189215963999573, 32.215031827291 ], [ 35.189286643981973, 32.214947596232207 ], [ 35.189500000000123, 32.215000000000146 ], [ 35.189555112202925, 32.214891057332466 ] ], [ [ 35.201628100077414, 32.215228309631414 ], [ 35.202155164082853, 32.215070635477844 ], [ 35.202416666666693, 32.215166666666732 ], [ 35.202329513549785, 32.215393402099664 ], [ 35.202533241271965, 32.215739982605101 ], [ 35.202416666666693, 32.215833333333478 ], [ 35.202144889831516, 32.215751508077062 ], [ 35.201884297688821, 32.215449035644554 ], [ 35.201628100077414, 32.215228309631414 ] ], [ [ 35.204509010314894, 32.215869636535729 ], [ 35.204380363464395, 32.215702969868914 ], [ 35.20425, 32.215666666666721 ], [ 35.204166666666708, 32.215500000000134 ], [ 35.204293314615938, 32.215450213114366 ], [ 35.204702715555925, 32.215753743489643 ], [ 35.204509010314894, 32.215869636535729 ] ], [ [ 35.207292500813821, 32.215972114563044 ], [ 35.207666666666796, 32.21575 ], [ 35.207818883260074, 32.216001004536963 ], [ 35.207634610493926, 32.216290832519576 ], [ 35.207292500813821, 32.215972114563044 ] ], [ [ 35.207083333333287, 32.216166666666709 ], [ 35.207054807027191, 32.216268269856755 ], [ 35.206981730143298, 32.216195192972805 ], [ 35.207083333333287, 32.216166666666709 ] ], [ [ 35.203, 32.216583333333347 ], [ 35.203166666666789, 32.216583333333347 ], [ 35.203166666666789, 32.216666666666697 ], [ 35.203401262919215, 32.216557060241769 ], [ 35.203530260721891, 32.216663561503083 ], [ 35.203231435140026, 32.216780260721919 ], [ 35.203166666666789, 32.216666666666697 ], [ 35.203, 32.216666666666697 ], [ 35.203, 32.216583333333347 ], [ 35.202777994791802, 32.216555338541809 ], [ 35.202666666666801, 32.2165 ], [ 35.20258333333328, 32.2165 ], [ 35.202532887776783, 32.216770268758182 ], [ 35.202026095072426, 32.216377525329676 ], [ 35.20180707550054, 32.216622655232868 ], [ 35.201627344767303, 32.216482823689716 ], [ 35.201722895304385, 32.216146481831913 ], [ 35.202205416361437, 32.216117724100798 ], [ 35.202210942586248, 32.216210439046165 ], [ 35.20211907958992, 32.21629251861583 ], [ 35.202416666666693, 32.21641666666676 ], [ 35.202416666666693, 32.215916666666772 ], [ 35.202638671875036, 32.215944661458366 ], [ 35.20275, 32.216 ], [ 35.202786303202288, 32.216297030131045 ], [ 35.203, 32.216583333333347 ] ], [ [ 35.207, 32.216583333333347 ], [ 35.207, 32.21641666666676 ], [ 35.207083333333287, 32.21641666666676 ], [ 35.207628702799525, 32.216348528544245 ], [ 35.20775, 32.2165 ], [ 35.207250000000101, 32.2165 ], [ 35.207250000000101, 32.216666666666697 ], [ 35.207, 32.216666666666697 ], [ 35.207, 32.216583333333347 ] ], [ [ 35.212808700561652, 32.216765869140659 ], [ 35.212564875284841, 32.216524871826266 ], [ 35.212833333333379, 32.2165 ], [ 35.212808700561652, 32.216765869140659 ] ], [ [ 35.213170216878268, 32.216621899922757 ], [ 35.213083333333429, 32.216333333333466 ], [ 35.212916666666672, 32.216333333333466 ], [ 35.212916666666672, 32.21625 ], [ 35.212955235799257, 32.216121899922769 ], [ 35.213077987670886, 32.216044766744005 ], [ 35.213538569132538, 32.216418927510574 ], [ 35.213170216878268, 32.216621899922757 ] ], [ [ 35.213932805379216, 32.216129185994419 ], [ 35.213967870076488, 32.215951736450336 ], [ 35.214416666666807, 32.215833333333478 ], [ 35.214550445556597, 32.216122238159244 ], [ 35.214525914510091, 32.216246388753234 ], [ 35.213932805379216, 32.216129185994419 ] ], [ [ 35.212666666666735, 32.215916666666772 ], [ 35.212734222412109, 32.216052571614512 ], [ 35.21247491455091, 32.216111328125123 ], [ 35.212388671874976, 32.215951721191402 ], [ 35.212666666666735, 32.215916666666772 ] ], [ [ 35.209921483357846, 32.215798749288012 ], [ 35.210205635070849, 32.216128565470342 ], [ 35.210292544047036, 32.216121582031292 ], [ 35.210455233256141, 32.216144976298096 ], [ 35.210288566589384, 32.216288566589355 ], [ 35.210211433410564, 32.216378100077407 ], [ 35.21016666666668, 32.21641666666676 ], [ 35.210235323588051, 32.216603624979768 ], [ 35.209961433410683, 32.216521690368666 ], [ 35.210083333333387, 32.21641666666676 ], [ 35.209698674519927, 32.215953534444225 ], [ 35.209712460835874, 32.215781954447436 ], [ 35.209921483357846, 32.215798749288012 ] ], [ [ 35.204333333333352, 32.21625 ], [ 35.204333333333352, 32.216333333333466 ], [ 35.20425, 32.216333333333466 ], [ 35.20425, 32.21625 ], [ 35.204333333333352, 32.21625 ] ], [ [ 35.211898396809943, 32.216528526306206 ], [ 35.212, 32.2165 ], [ 35.211971473693893, 32.216601603190099 ], [ 35.211898396809943, 32.216528526306206 ] ], [ [ 35.212565063476518, 32.216195192972805 ], [ 35.212666666666735, 32.216166666666709 ], [ 35.212638137817407, 32.216268269856755 ], [ 35.212565063476518, 32.216195192972805 ] ], [ [ 35.21, 32.216666666666697 ], [ 35.210066942850801, 32.216801340738925 ], [ 35.20989287312824, 32.216861328124992 ], [ 35.209805338541742, 32.216705965677988 ], [ 35.21, 32.216666666666697 ] ], [ [ 35.200583333333384, 32.21675 ], [ 35.200554807027288, 32.216851603190207 ], [ 35.200481730143338, 32.216778526306257 ], [ 35.200583333333384, 32.21675 ] ], [ [ 35.199166666666713, 32.216583333333347 ], [ 35.199133288065696, 32.216772710164378 ], [ 35.199058359782043, 32.21662968190509 ], [ 35.199166666666713, 32.216583333333347 ] ], [ [ 35.191444010416774, 32.216722656250113 ], [ 35.1915, 32.216833333333454 ], [ 35.191416666666782, 32.216833333333454 ], [ 35.191416666666782, 32.217083333333335 ], [ 35.191333333333262, 32.217083333333335 ], [ 35.191083333333381, 32.217083333333335 ], [ 35.191151405334551, 32.216818072001161 ], [ 35.191299296061288, 32.21671596272796 ], [ 35.191333333333262, 32.216666666666697 ], [ 35.191444010416774, 32.216722656250113 ] ], [ [ 35.209294011433997, 32.21718404897058 ], [ 35.209500000000105, 32.217 ], [ 35.209603655497233, 32.21728888702404 ], [ 35.209294011433997, 32.21718404897058 ] ], [ [ 35.210398396809865, 32.217278526306245 ], [ 35.2105, 32.217250000000149 ], [ 35.210471473693929, 32.217351603190195 ], [ 35.210398396809865, 32.217278526306245 ] ], [ [ 35.199666666666701, 32.217333333333443 ], [ 35.199796274820983, 32.217537058512391 ], [ 35.199882825215752, 32.217937082926483 ], [ 35.199866722107004, 32.218066551208494 ], [ 35.199500000000114, 32.218020935058689 ], [ 35.199143620808911, 32.218065264383938 ], [ 35.19898166910815, 32.218449600219799 ], [ 35.198312700907479, 32.218537058512368 ], [ 35.198212941487725, 32.218248741149978 ], [ 35.19862960815442, 32.218129608154243 ], [ 35.198703725179087, 32.21803705851238 ], [ 35.199125086466495, 32.217945892334114 ], [ 35.199564966837556, 32.217687319437687 ], [ 35.199534136454304, 32.217439460754406 ], [ 35.199666666666701, 32.217333333333443 ] ], [ [ 35.190333333333342, 32.217833333333431 ], [ 35.190304805755716, 32.217934936523477 ], [ 35.190231731414826, 32.217861859639527 ], [ 35.190333333333342, 32.217833333333431 ] ], [ [ 35.205630249023557, 32.217944661458432 ], [ 35.205555338541615, 32.217722986857098 ], [ 35.205666666666673, 32.217666666666616 ], [ 35.205729751586887, 32.217793576558449 ], [ 35.205630249023557, 32.217944661458432 ] ], [ [ 35.200440711975091, 32.217779726664276 ], [ 35.200234456380258, 32.2178643493653 ], [ 35.200166666666689, 32.217750000000137 ], [ 35.200205830892003, 32.217473485310904 ], [ 35.20025, 32.217666666666616 ], [ 35.200440711975091, 32.217779726664276 ] ], [ [ 35.208559539794919, 32.217611328125088 ], [ 35.208472005208421, 32.217455965677914 ], [ 35.208666666666716, 32.217416666666736 ], [ 35.208733609517481, 32.217551340738964 ], [ 35.208559539794919, 32.217611328125088 ] ], [ [ 35.210833333333426, 32.2175 ], [ 35.210778928120988, 32.217278498331837 ], [ 35.210944760640473, 32.217132629394655 ], [ 35.211083333333363, 32.217333333333443 ], [ 35.211199600219743, 32.217416666666736 ], [ 35.211083333333363, 32.2175 ], [ 35.211083333333363, 32.217583333333323 ], [ 35.210833333333426, 32.217583333333323 ], [ 35.210833333333426, 32.2175 ] ], [ [ 35.191583333333369, 32.216833333333454 ], [ 35.191625000000101, 32.216726603190125 ], [ 35.191666666666663, 32.216833333333454 ], [ 35.191583333333369, 32.216833333333454 ] ], [ [ 35.199648396810005, 32.216611859639499 ], [ 35.19975, 32.216583333333347 ], [ 35.199721473693899, 32.216684936523393 ], [ 35.199648396810005, 32.216611859639499 ] ], [ [ 35.20475, 32.21641666666676 ], [ 35.204851603190207, 32.216445192972913 ], [ 35.204778526306143, 32.216518269856806 ], [ 35.20475, 32.21641666666676 ] ], [ [ 35.19925, 32.216083333333415 ], [ 35.199312075297144, 32.216208213806283 ], [ 35.19920389302581, 32.216429728190178 ], [ 35.199138671875005, 32.21613965352384 ], [ 35.19925, 32.216083333333415 ] ], [ [ 35.192333333333409, 32.216333333333466 ], [ 35.192333333333409, 32.2165 ], [ 35.192250000000115, 32.2165 ], [ 35.192166666666651, 32.2165 ], [ 35.192166666666651, 32.21641666666676 ], [ 35.192333333333409, 32.216333333333466 ] ], [ [ 35.199442962646458, 32.216532819112103 ], [ 35.199296274820995, 32.216391581217522 ], [ 35.199500000000114, 32.216333333333466 ], [ 35.199442962646458, 32.216532819112103 ] ], [ [ 35.20997147369394, 32.215684936523473 ], [ 35.209898396809876, 32.215611859639523 ], [ 35.21, 32.215583333333427 ], [ 35.20997147369394, 32.215684936523473 ] ], [ [ 35.20375, 32.215583333333427 ], [ 35.20366666666672, 32.215699600219864 ], [ 35.203583333333427, 32.215583333333427 ], [ 35.203166666666789, 32.215583333333427 ], [ 35.203166666666789, 32.215500000000134 ], [ 35.203239733378211, 32.215385866801057 ], [ 35.203500000000133, 32.215500000000134 ], [ 35.203583333333427, 32.215500000000134 ], [ 35.203583333333427, 32.215583333333427 ], [ 35.20375, 32.215583333333427 ], [ 35.20366601562506, 32.215417317708329 ], [ 35.203500000000133, 32.215333333333319 ], [ 35.203434532165602, 32.215203918457178 ], [ 35.20325, 32.215166666666732 ], [ 35.20331714375817, 32.214959752400716 ], [ 35.204368794759148, 32.215139132181832 ], [ 35.204081667582329, 32.215415000915527 ], [ 35.204000000000121, 32.215500000000134 ], [ 35.203916666666657, 32.215666666666721 ], [ 35.20375, 32.215583333333427 ] ], [ [ 35.201333333333423, 32.214166666666756 ], [ 35.201395408630503, 32.21429154713951 ], [ 35.201299092610668, 32.214488764445093 ], [ 35.201138671875128, 32.214361328125108 ], [ 35.201, 32.214333333333343 ], [ 35.201, 32.214416666666693 ], [ 35.200916666666785, 32.214416666666693 ], [ 35.200916666666785, 32.2145 ], [ 35.201166666666666, 32.2145 ], [ 35.201166666666666, 32.214583333333451 ], [ 35.201166666666666, 32.214666666666744 ], [ 35.201222005208422, 32.214777994791802 ], [ 35.20125000000013, 32.214916666666625 ], [ 35.201439900716252, 32.215016690572099 ], [ 35.201309036254941, 32.215112083435088 ], [ 35.20125000000013, 32.215000000000146 ], [ 35.201200703938866, 32.214965962727945 ], [ 35.201132629394635, 32.214867370605532 ], [ 35.200935442606692, 32.214731224060131 ], [ 35.2006895446778, 32.214375073750887 ], [ 35.200799296061234, 32.214299296061142 ], [ 35.200867370605465, 32.214182022094803 ], [ 35.200702596028748, 32.214218961080007 ], [ 35.200549296061183, 32.213976173400965 ], [ 35.200813631693507, 32.213877265930307 ], [ 35.200670969645273, 32.213778767903705 ], [ 35.2009344533285, 32.213596850077295 ], [ 35.201211107889833, 32.213777005513634 ], [ 35.20125000000013, 32.213833333333412 ], [ 35.201528396606534, 32.213716402689727 ], [ 35.20176312510182, 32.214056371053061 ], [ 35.201333333333423, 32.214166666666756 ] ], [ [ 35.202970494588158, 32.213696172078585 ], [ 35.202722969055117, 32.213560493469288 ], [ 35.202833333333388, 32.2135 ], [ 35.202950116475449, 32.213267115275187 ], [ 35.203083333333268, 32.213333333333424 ], [ 35.203154680887792, 32.213221883138033 ], [ 35.203365859985297, 32.213425829569474 ], [ 35.20325, 32.2135 ], [ 35.20325, 32.213583333333474 ], [ 35.20325, 32.213666666666768 ], [ 35.203464294433616, 32.213614031473867 ], [ 35.203534037272163, 32.213753456115853 ], [ 35.203114397684715, 32.214036038716699 ], [ 35.203135566711467, 32.214130470276018 ], [ 35.20304009246837, 32.214200703938786 ], [ 35.203, 32.21375 ], [ 35.202970494588158, 32.213696172078585 ] ], [ [ 35.204231730143306, 32.214111859639559 ], [ 35.204333333333352, 32.214083333333463 ], [ 35.204304807027199, 32.214184936523509 ], [ 35.204231730143306, 32.214111859639559 ] ], [ [ 35.215, 32.213916666666705 ], [ 35.215, 32.213833333333412 ], [ 35.215106730143361, 32.213875000000144 ], [ 35.215, 32.213916666666705 ] ], [ [ 35.198331235249896, 32.213476544698153 ], [ 35.198450703938875, 32.213803891499879 ], [ 35.19833333333338, 32.214083333333463 ], [ 35.198132629394593, 32.213950703938906 ], [ 35.197916666666686, 32.213916666666705 ], [ 35.19804375966396, 32.213412099202458 ], [ 35.198331235249896, 32.213476544698153 ] ], [ [ 35.2005, 32.214083333333463 ], [ 35.200454719543529, 32.214189142862949 ], [ 35.2003083597819, 32.214117111206065 ], [ 35.2005, 32.214083333333463 ] ], [ [ 35.206225026448521, 32.21478377787281 ], [ 35.206416666666712, 32.21475 ], [ 35.206371386210208, 32.214855809529695 ], [ 35.206225026448521, 32.21478377787281 ] ], [ [ 35.202036303202419, 32.214713696797673 ], [ 35.202017789205001, 32.214297030131149 ], [ 35.202166666666642, 32.214666666666744 ], [ 35.202166666666642, 32.21475 ], [ 35.202036303202419, 32.214713696797673 ] ], [ [ 35.203083333333268, 32.214416666666693 ], [ 35.203, 32.214416666666693 ], [ 35.203, 32.214333333333343 ], [ 35.203083333333268, 32.214333333333343 ], [ 35.203083333333268, 32.214416666666693 ], [ 35.203288439432868, 32.214478418986005 ], [ 35.203166666666789, 32.214583333333451 ], [ 35.203083333333268, 32.214416666666693 ] ], [ [ 35.202767865498856, 32.215287251790471 ], [ 35.202861328125095, 32.215472005208369 ], [ 35.203083333333268, 32.215500000000134 ], [ 35.203083333333268, 32.215583333333427 ], [ 35.202916666666681, 32.215583333333427 ], [ 35.202916666666681, 32.21575 ], [ 35.202833333333388, 32.21575 ], [ 35.202812136332227, 32.215604530334531 ], [ 35.202604530334611, 32.215395469665509 ], [ 35.20258333333328, 32.21525 ], [ 35.202767865498856, 32.215287251790471 ] ], [ [ 35.19183333333325, 32.214583333333451 ], [ 35.191910059611018, 32.214778508504253 ], [ 35.191713696797763, 32.214675676981756 ], [ 35.19183333333325, 32.214583333333451 ] ], [ [ 35.215388137817399, 32.213101603190239 ], [ 35.21531506347651, 32.213028526306118 ], [ 35.215416666666727, 32.213 ], [ 35.215388137817399, 32.213101603190239 ] ], [ [ 35.213864430745446, 32.212991699218833 ], [ 35.21375, 32.213083333333316 ], [ 35.213666666666711, 32.213083333333316 ], [ 35.213583333333418, 32.213083333333316 ], [ 35.213583333333418, 32.212916666666729 ], [ 35.213583333333418, 32.212833333333435 ], [ 35.213666666666711, 32.212833333333435 ], [ 35.213864430745446, 32.212991699218833 ] ], [ [ 35.222797653198199, 32.212941246032813 ], [ 35.222721252441374, 32.212725702921659 ], [ 35.222833333333313, 32.212666666666621 ], [ 35.222797653198199, 32.212941246032813 ] ], [ [ 35.207583333333275, 32.212583333333328 ], [ 35.207583333333275, 32.212750000000142 ], [ 35.207333333333395, 32.212750000000142 ], [ 35.207333333333395, 32.212583333333328 ], [ 35.207583333333275, 32.212583333333328 ] ], [ [ 35.202416666666693, 32.212666666666621 ], [ 35.202636995951309, 32.212961850484305 ], [ 35.2025, 32.213 ], [ 35.202250000000106, 32.213 ], [ 35.202250000000106, 32.212916666666729 ], [ 35.202166666666642, 32.212916666666729 ], [ 35.202166666666642, 32.212583333333328 ], [ 35.202166666666642, 32.2125 ], [ 35.202250000000106, 32.2125 ], [ 35.202291666666667, 32.212393269856761 ], [ 35.202333333333399, 32.2125 ], [ 35.202478802998883, 32.212521197001195 ], [ 35.202601552327451, 32.212639724731559 ], [ 35.202416666666693, 32.212666666666621 ] ], [ [ 35.194333333333361, 32.212333333333447 ], [ 35.194417279561435, 32.212533195495666 ], [ 35.193840499877865, 32.21240389506022 ], [ 35.193883682251112, 32.212211265564065 ], [ 35.194166666666774, 32.21216666666669 ], [ 35.194166666666774, 32.21225 ], [ 35.19425, 32.21225 ], [ 35.19425, 32.212333333333447 ], [ 35.194333333333361, 32.212333333333447 ] ], [ [ 35.199583333333408, 32.2125 ], [ 35.199709513346363, 32.2124372787477 ], [ 35.199861328125053, 32.212527013142903 ], [ 35.19975, 32.212583333333328 ], [ 35.199583333333408, 32.212583333333328 ], [ 35.199583333333408, 32.2125 ] ], [ [ 35.225166666666667, 32.213833333333412 ], [ 35.225166666666667, 32.213666666666768 ], [ 35.225416666666717, 32.213666666666768 ], [ 35.225416666666717, 32.21375 ], [ 35.225416666666717, 32.213833333333412 ], [ 35.225283487955835, 32.213767133077113 ], [ 35.225250000000131, 32.213833333333412 ], [ 35.225166666666667, 32.213833333333412 ] ], [ [ 35.213797032674108, 32.215592343648382 ], [ 35.213916666666648, 32.215500000000134 ], [ 35.213993392944417, 32.215695175171049 ], [ 35.213797032674108, 32.215592343648382 ] ], [ [ 35.23239465840669, 32.215784037272215 ], [ 35.232505081176839, 32.215291465759378 ], [ 35.232666666666717, 32.21525 ], [ 35.232799296061273, 32.215450703938814 ], [ 35.232867370605504, 32.215704511006663 ], [ 35.23239465840669, 32.215784037272215 ] ], [ [ 35.233887919108099, 32.215286221822168 ], [ 35.234166666666681, 32.21525 ], [ 35.234110198974633, 32.215357203165638 ], [ 35.233887919108099, 32.215286221822168 ] ], [ [ 35.231295694987068, 32.211948438008562 ], [ 35.231134897867776, 32.21170560201017 ], [ 35.231333333333396, 32.211583333333408 ], [ 35.231448216756121, 32.211839790344186 ], [ 35.231295694987068, 32.211948438008562 ] ], [ [ 35.215768269856881, 32.211695192972797 ], [ 35.215695195515991, 32.211768269856748 ], [ 35.215666666666664, 32.211666666666702 ], [ 35.215768269856881, 32.211695192972797 ] ], [ [ 35.222333333333381, 32.211833333333459 ], [ 35.222375000000113, 32.211726603190186 ], [ 35.222416666666675, 32.211833333333459 ], [ 35.222333333333381, 32.211833333333459 ] ], [ [ 35.216, 32.211833333333459 ], [ 35.216, 32.211916666666752 ], [ 35.215916666666715, 32.211916666666752 ], [ 35.215916666666715, 32.211833333333459 ], [ 35.216, 32.211833333333459 ] ], [ [ 35.218725026448624, 32.211867111206061 ], [ 35.218916666666587, 32.211833333333459 ], [ 35.218871388753257, 32.211939142862946 ], [ 35.218725026448624, 32.211867111206061 ] ], [ [ 35.21944466145834, 32.211194661458421 ], [ 35.219583333333389, 32.211166666666713 ], [ 35.219583333333389, 32.21125 ], [ 35.21975, 32.21125 ], [ 35.21975, 32.211333333333471 ], [ 35.21983333333344, 32.211333333333471 ], [ 35.21983333333344, 32.211416666666764 ], [ 35.219416666666746, 32.211416666666764 ], [ 35.219333333333452, 32.21125 ], [ 35.21944466145834, 32.211194661458421 ] ], [ [ 35.231418523152684, 32.211368125915612 ], [ 35.231477035522516, 32.211072013855073 ], [ 35.23175, 32.211000000000126 ], [ 35.231867492675917, 32.211285916646375 ], [ 35.231418523152684, 32.211368125915612 ] ], [ [ 35.22925, 32.211000000000126 ], [ 35.229193532307931, 32.211107203165739 ], [ 35.228971252441397, 32.211036221822098 ], [ 35.22925, 32.211000000000126 ] ], [ [ 35.226866739908985, 32.210950747172149 ], [ 35.226470397949242, 32.211034792582268 ], [ 35.226381876627727, 32.210709566752143 ], [ 35.22675, 32.210666666666725 ], [ 35.226866739908985, 32.210950747172149 ] ], [ [ 35.229788055419931, 32.210772476196382 ], [ 35.229641693115241, 32.210700444539498 ], [ 35.229833333333431, 32.210666666666725 ], [ 35.229788055419931, 32.210772476196382 ] ], [ [ 35.230250000000126, 32.210416666666617 ], [ 35.23019466145837, 32.210305338541787 ], [ 35.230166666666605, 32.210166666666737 ], [ 35.230138671875068, 32.209944661458394 ], [ 35.230083333333312, 32.209833333333336 ], [ 35.230083333333312, 32.20975 ], [ 35.230166666666605, 32.20975 ], [ 35.230229227701898, 32.209626330057858 ], [ 35.230460001627591, 32.209555338541747 ], [ 35.230527994791714, 32.209872512817356 ], [ 35.230277994791663, 32.209944661458394 ], [ 35.230250000000126, 32.21000000000015 ], [ 35.230416015624996, 32.21008398437499 ], [ 35.230562616984116, 32.210373774210666 ], [ 35.23046822102873, 32.210567049662302 ], [ 35.230333333333419, 32.210500000000138 ], [ 35.230333333333419, 32.210666666666725 ], [ 35.230333333333419, 32.21075 ], [ 35.230250000000126, 32.21075 ], [ 35.229993769327848, 32.210709617614782 ], [ 35.229882629394524, 32.210510943094903 ], [ 35.230250000000126, 32.210416666666617 ] ], [ [ 35.231622487386062, 32.210225568135684 ], [ 35.23125, 32.210203366597455 ], [ 35.23095509847019, 32.210220942179376 ], [ 35.230972284952827, 32.209932551066231 ], [ 35.231083333333459, 32.209833333333336 ], [ 35.231185429891013, 32.209947601318504 ], [ 35.231622487386062, 32.210225568135684 ] ], [ [ 35.227258682251033, 32.209249453226789 ], [ 35.227619633992617, 32.209596290588479 ], [ 35.227054463704462, 32.209512771606512 ], [ 35.227, 32.209583333333455 ], [ 35.226889322916804, 32.209527343749983 ], [ 35.226833333333389, 32.209416666666698 ], [ 35.227258682251033, 32.209249453226789 ] ], [ [ 35.210773763020825, 32.208939094543496 ], [ 35.21025, 32.209333333333404 ], [ 35.21, 32.209333333333404 ], [ 35.21, 32.20925 ], [ 35.21, 32.209166666666761 ], [ 35.21, 32.20891666666671 ], [ 35.210027994791801, 32.20877799479166 ], [ 35.210083333333387, 32.208666666666602 ], [ 35.210666666666668, 32.208666666666602 ], [ 35.210773763020825, 32.208939094543496 ] ], [ [ 35.20975, 32.208666666666602 ], [ 35.209721473693889, 32.208768269856819 ], [ 35.209648396809939, 32.208695192972925 ], [ 35.20975, 32.208666666666602 ] ], [ [ 35.1950833333334, 32.20871706644698 ], [ 35.195166666666694, 32.208833333333416 ], [ 35.195000000000107, 32.208833333333416 ], [ 35.1950833333334, 32.20871706644698 ] ], [ [ 35.197916666666686, 32.208833333333416 ], [ 35.197916666666686, 32.20891666666671 ], [ 35.197833333333392, 32.20891666666671 ], [ 35.197833333333392, 32.208833333333416 ], [ 35.197916666666686, 32.208833333333416 ] ], [ [ 35.19425, 32.20891666666671 ], [ 35.19409163411467, 32.209114430745387 ], [ 35.194000000000131, 32.209 ], [ 35.194111328125018, 32.208944661458418 ], [ 35.19425, 32.20891666666671 ] ], [ [ 35.198, 32.209416666666698 ], [ 35.198101603190196, 32.209445192972964 ], [ 35.198028526306132, 32.209518269856915 ], [ 35.198, 32.209416666666698 ], [ 35.197833333333392, 32.209416666666698 ], [ 35.197833333333392, 32.209333333333404 ], [ 35.198, 32.209333333333404 ], [ 35.198, 32.209416666666698 ] ], [ [ 35.214568227132304, 32.209613021850714 ], [ 35.214416666666807, 32.209416666666698 ], [ 35.2145000000001, 32.209416666666698 ], [ 35.2145000000001, 32.20925 ], [ 35.21475, 32.20925 ], [ 35.214880366007549, 32.209286303202305 ], [ 35.215119633992572, 32.209380363464447 ], [ 35.215523640950551, 32.209492866516143 ], [ 35.215432968139623, 32.20995296986905 ], [ 35.214568227132304, 32.209613021850714 ] ], [ [ 35.197916666666686, 32.209916666666686 ], [ 35.197797030130971, 32.210213696797837 ], [ 35.19775, 32.21025 ], [ 35.197610445658484, 32.210038818359521 ], [ 35.197874926249199, 32.209856211344515 ], [ 35.197916666666686, 32.209916666666686 ] ], [ [ 35.197416666666697, 32.21025 ], [ 35.197416666666697, 32.210333333333324 ], [ 35.197333333333404, 32.210333333333324 ], [ 35.197333333333404, 32.21025 ], [ 35.197416666666697, 32.21025 ] ], [ [ 35.218666666666707, 32.210500000000138 ], [ 35.218805969238304, 32.210154139200938 ], [ 35.219003606160413, 32.210047030131022 ], [ 35.219083333333401, 32.210333333333324 ], [ 35.219190063476674, 32.210375 ], [ 35.219083333333401, 32.210416666666617 ], [ 35.219083333333401, 32.210583333333432 ], [ 35.21875, 32.210583333333432 ], [ 35.218666666666707, 32.210583333333432 ], [ 35.218666666666707, 32.210500000000138 ] ], [ [ 35.19375, 32.210583333333432 ], [ 35.193721473693927, 32.210684936523478 ], [ 35.193648396809863, 32.210611859639528 ], [ 35.19375, 32.210583333333432 ] ], [ [ 35.1965, 32.210666666666725 ], [ 35.196633178710954, 32.210600466410426 ], [ 35.196666666666658, 32.210666666666725 ], [ 35.196666666666658, 32.21075 ], [ 35.1965, 32.21075 ], [ 35.1965, 32.210666666666725 ] ], [ [ 35.228505116780696, 32.210677678426237 ], [ 35.228583333333404, 32.210333333333324 ], [ 35.228666666666697, 32.210217066446887 ], [ 35.22875, 32.210333333333324 ], [ 35.228833333333455, 32.210333333333324 ], [ 35.228875, 32.210226603190222 ], [ 35.228916666666748, 32.210333333333324 ], [ 35.229164418538403, 32.210394185384189 ], [ 35.229357381184968, 32.210350926717183 ], [ 35.229604003906331, 32.2105115254721 ], [ 35.229450703938937, 32.210617370605462 ], [ 35.229416666666737, 32.210666666666725 ], [ 35.229416666666737, 32.21075 ], [ 35.22925, 32.21075 ], [ 35.229083333333392, 32.21075 ], [ 35.228505116780696, 32.210677678426237 ] ], [ [ 35.227833333333308, 32.21000000000015 ], [ 35.227891784667918, 32.210273582458512 ], [ 35.22762734476737, 32.210184048970518 ], [ 35.227833333333308, 32.21000000000015 ] ], [ [ 35.22425, 32.209916666666686 ], [ 35.224326726277752, 32.210111841837602 ], [ 35.2241303660075, 32.210009010314934 ], [ 35.22425, 32.209916666666686 ] ], [ [ 35.228138137817382, 32.209934936523382 ], [ 35.228065063476663, 32.209861859639489 ], [ 35.228166666666709, 32.209833333333336 ], [ 35.228138137817382, 32.209934936523382 ] ], [ [ 35.221666666666749, 32.21075 ], [ 35.221743392944347, 32.210945175170991 ], [ 35.221547032674266, 32.210842343648324 ], [ 35.221666666666749, 32.21075 ] ], [ [ 35.222166666666737, 32.210833333333312 ], [ 35.222166666666737, 32.21075 ], [ 35.222333333333381, 32.21075 ], [ 35.222333333333381, 32.210833333333312 ], [ 35.22225, 32.210833333333312 ], [ 35.222166666666737, 32.210833333333312 ] ], [ [ 35.213804585774653, 32.208536221822158 ], [ 35.214083333333406, 32.2085 ], [ 35.214026865641358, 32.208607203165627 ], [ 35.213804585774653, 32.208536221822158 ] ], [ [ 35.194583333333412, 32.208333333333428 ], [ 35.194797083536912, 32.208280832926562 ], [ 35.194833333333349, 32.208333333333428 ], [ 35.194833333333349, 32.2085 ], [ 35.194583333333412, 32.2085 ], [ 35.194583333333412, 32.208333333333428 ] ], [ [ 35.212916666666672, 32.208416666666722 ], [ 35.212916666666672, 32.208250000000135 ], [ 35.213027343749957, 32.20830598958338 ], [ 35.213083333333429, 32.208416666666722 ], [ 35.212916666666672, 32.208416666666722 ] ], [ [ 35.209573811848998, 32.208146794637116 ], [ 35.209518781026247, 32.208323473612552 ], [ 35.209375, 32.208278689066503 ], [ 35.209289889017782, 32.208305198669564 ], [ 35.209166666666704, 32.208250000000135 ], [ 35.208916666666653, 32.207916666666733 ], [ 35.208968228658136, 32.207884895324753 ], [ 35.209076182047625, 32.207709691365665 ], [ 35.20933484395357, 32.207634895324816 ], [ 35.209448438008621, 32.207968228658046 ], [ 35.209573811848998, 32.208146794637116 ] ], [ [ 35.220704722086623, 32.20802247619639 ], [ 35.220558359781933, 32.207950444539506 ], [ 35.220750000000123, 32.207916666666733 ], [ 35.220704722086623, 32.20802247619639 ] ], [ [ 35.210860677083474, 32.207944010416782 ], [ 35.210750000000132, 32.208 ], [ 35.210750000000132, 32.20783333333344 ], [ 35.210916666666719, 32.20783333333344 ], [ 35.210860677083474, 32.207944010416782 ] ], [ [ 35.212720911661904, 32.207865859985361 ], [ 35.21255080668135, 32.207625590006558 ], [ 35.212833333333379, 32.207583333333332 ], [ 35.21286585998547, 32.207634140014704 ], [ 35.213108449300194, 32.207789441426598 ], [ 35.212720911661904, 32.207865859985361 ] ], [ [ 35.194675829569519, 32.207550806681411 ], [ 35.19475, 32.207666666666682 ], [ 35.194833333333349, 32.207666666666682 ], [ 35.194833333333349, 32.207750000000146 ], [ 35.19475, 32.207750000000146 ], [ 35.194666666666706, 32.207750000000146 ], [ 35.194556950887147, 32.207679761250915 ], [ 35.194675829569519, 32.207550806681411 ] ], [ [ 35.211583333333294, 32.207583333333332 ], [ 35.211639322916767, 32.207472656250047 ], [ 35.211750000000109, 32.207416666666745 ], [ 35.211750000000109, 32.207583333333332 ], [ 35.211583333333294, 32.207583333333332 ] ], [ [ 35.20875, 32.20591666666661 ], [ 35.208851603190055, 32.205945192972933 ], [ 35.208778526306162, 32.206018269856827 ], [ 35.20875, 32.20591666666661 ], [ 35.208696172078533, 32.205887161255021 ], [ 35.208637161254956, 32.205696172078547 ], [ 35.208471946716372, 32.205477722168098 ], [ 35.208637161254956, 32.205387161254862 ], [ 35.208666666666716, 32.205333333333328 ], [ 35.20874620819103, 32.205148012796997 ], [ 35.208179476420185, 32.204968800862673 ], [ 35.208238321940087, 32.205202354431151 ], [ 35.208116615295523, 32.205283281962124 ], [ 35.208083333333434, 32.205333333333328 ], [ 35.207936485290588, 32.20521998596189 ], [ 35.208072402954201, 32.204392575582006 ], [ 35.207619636535696, 32.204297030131158 ], [ 35.207583333333275, 32.204250000000116 ], [ 35.207625, 32.204056302388551 ], [ 35.207666666666796, 32.204250000000116 ], [ 35.207777994791797, 32.204194661458359 ], [ 35.208055338541726, 32.204138671875057 ], [ 35.208166666666727, 32.204083333333472 ], [ 35.208251818339136, 32.203692939758412 ], [ 35.208, 32.203250000000139 ], [ 35.208083333333434, 32.203250000000139 ], [ 35.208083333333434, 32.203 ], [ 35.208179061889723, 32.202880457560298 ], [ 35.208319506327314, 32.203529581705823 ], [ 35.208544314066671, 32.203557543436716 ], [ 35.20862944539391, 32.20306835428886 ], [ 35.20903361765545, 32.202898045857864 ], [ 35.209066551208593, 32.202633280436203 ], [ 35.208954182942762, 32.202619303385347 ], [ 35.20884837849934, 32.202870391845806 ], [ 35.208703725179078, 32.202796274821083 ], [ 35.208666666666716, 32.202750000000151 ], [ 35.208718032837055, 32.202437306722118 ], [ 35.208583333333422, 32.202333333333456 ], [ 35.208617370605452, 32.2022007039389 ], [ 35.208715962727808, 32.202132629394669 ], [ 35.208810414632239, 32.20199582926432 ], [ 35.209166666666704, 32.202083333333405 ], [ 35.209332845052074, 32.202165934244931 ], [ 35.209458478291879, 32.202104578654087 ], [ 35.20975, 32.20225 ], [ 35.20975, 32.20241666666675 ], [ 35.209377001444579, 32.202355392456184 ], [ 35.209297030131097, 32.202509999593019 ], [ 35.209500000000105, 32.202666666666687 ], [ 35.209583333333399, 32.202782933553124 ], [ 35.209666666666692, 32.202666666666687 ], [ 35.20975, 32.202666666666687 ], [ 35.20975, 32.2025 ], [ 35.210054321289078, 32.202619633992583 ], [ 35.210285519917818, 32.202514312744142 ], [ 35.210083333333387, 32.202000000000112 ], [ 35.209972005208328, 32.201777994791712 ], [ 35.2099166666668, 32.20175 ], [ 35.2099166666668, 32.201583333333417 ], [ 35.209833333333279, 32.201583333333417 ], [ 35.209833333333279, 32.201416666666603 ], [ 35.21, 32.201416666666603 ], [ 35.210083333333387, 32.201416666666603 ], [ 35.210083333333387, 32.201500000000124 ], [ 35.210183965047179, 32.201621144612659 ], [ 35.210531168619923, 32.201422775268611 ], [ 35.210172645568832, 32.201217437744219 ], [ 35.209646199544295, 32.201163777669422 ], [ 35.209871144612748, 32.201350631713808 ], [ 35.209378855387513, 32.201462188720825 ], [ 35.209333333333291, 32.201500000000124 ], [ 35.209284037272198, 32.201465962727923 ], [ 35.209183186849089, 32.20107297770187 ], [ 35.208948158264207, 32.200712056477926 ], [ 35.208968925476199, 32.200619415283313 ], [ 35.208916666666653, 32.200583333333441 ], [ 35.208734092712461, 32.200547663370799 ], [ 35.208639427185119, 32.200371215820383 ], [ 35.208833333333359, 32.20033333333339 ], [ 35.208833333333359, 32.200166666666746 ], [ 35.208953725178958, 32.200070261637393 ], [ 35.208675961812389, 32.199717661539808 ], [ 35.208583333333422, 32.199833333333402 ], [ 35.208460688273078, 32.199786188761379 ], [ 35.208170059204178, 32.199822341919003 ], [ 35.208299962361764, 32.200043324788339 ], [ 35.20778337097164, 32.200456675211569 ], [ 35.207883951823021, 32.200627777099612 ], [ 35.207612775166808, 32.200742045084723 ], [ 35.207416666666688, 32.200666666666734 ], [ 35.207349441528322, 32.200531422933011 ], [ 35.207567225138348, 32.200468577067113 ], [ 35.2075, 32.20033333333339 ], [ 35.207599299113099, 32.200283101399748 ], [ 35.2075, 32.200083333333453 ], [ 35.207619636535696, 32.199990992228209 ], [ 35.207425834655737, 32.199943735758552 ], [ 35.207083333333287, 32.2 ], [ 35.207083333333287, 32.199916666666695 ], [ 35.207, 32.199916666666695 ], [ 35.2069166666667, 32.199916666666695 ], [ 35.2069166666667, 32.199833333333402 ], [ 35.20702339681003, 32.19979166666667 ], [ 35.2069166666667, 32.199750000000108 ], [ 35.2069166666667, 32.199583333333464 ], [ 35.20754627482097, 32.199620391845826 ], [ 35.207921775817795, 32.199764724731551 ], [ 35.20854627482089, 32.199629608154282 ], [ 35.208621225992943, 32.199536015828528 ], [ 35.208866722107018, 32.199566548665416 ], [ 35.208888641357476, 32.199390335083024 ], [ 35.208650014241528, 32.199250066121408 ], [ 35.208486925761008, 32.199453725179069 ], [ 35.208425669352209, 32.199009490966773 ], [ 35.208565119425543, 32.198835347493628 ], [ 35.208785718282058, 32.199012003580719 ], [ 35.208893620808965, 32.199268071492497 ], [ 35.209287058512359, 32.199317006429112 ], [ 35.209204256693624, 32.198724945068477 ], [ 35.20854627482089, 32.198537058512386 ], [ 35.208091176351047, 32.198438593546598 ], [ 35.208139081319246, 32.198053461710685 ], [ 35.207845090230364, 32.19794045511884 ], [ 35.207492988586523, 32.19822241210943 ], [ 35.207296274821033, 32.198546274821013 ], [ 35.20715744781495, 32.198657450358212 ], [ 35.20700488026938, 32.198847971598411 ], [ 35.206750000000113, 32.198750000000132 ], [ 35.206750000000113, 32.1985 ], [ 35.2068869578045, 32.198461863200009 ], [ 35.206630363464399, 32.198115768432615 ], [ 35.206702969869013, 32.198036300659226 ], [ 35.207036303202415, 32.197943481445407 ], [ 35.20681710306809, 32.197720535278279 ], [ 35.206286303202376, 32.197630366007502 ], [ 35.206060368855901, 32.197494079589944 ], [ 35.20583333333343, 32.197583333333398 ], [ 35.205548383076973, 32.197700429280701 ], [ 35.205119829813725, 32.197615743001393 ], [ 35.205083333333391, 32.197666666666692 ], [ 35.205083333333391, 32.19775 ], [ 35.204916666666804, 32.19775 ], [ 35.204607955932659, 32.198196161905969 ], [ 35.204122222900367, 32.198406819661557 ], [ 35.203894999186218, 32.19788288879397 ], [ 35.203583333333427, 32.198 ], [ 35.203583333333427, 32.198083333333386 ], [ 35.203500000000133, 32.198083333333386 ], [ 35.203500000000133, 32.19816666666668 ], [ 35.203333333333376, 32.19816666666668 ], [ 35.203227015177504, 32.198208333333412 ], [ 35.203393203735345, 32.198273462931297 ], [ 35.203416666666669, 32.198333333333437 ], [ 35.203109135945624, 32.19836573282879 ], [ 35.203137977600193, 32.198458333333463 ], [ 35.203058324178187, 32.198714060465591 ], [ 35.203, 32.198750000000132 ], [ 35.202916666666681, 32.198750000000132 ], [ 35.202916666666681, 32.198666666666668 ], [ 35.202833333333388, 32.198666666666668 ], [ 35.202777994791802, 32.198694661458376 ], [ 35.202719551086489, 32.198984161376984 ], [ 35.202624880472911, 32.198937927246163 ], [ 35.2025, 32.199 ], [ 35.202416666666693, 32.198883733113576 ], [ 35.202333333333399, 32.199 ], [ 35.202333333333399, 32.199166666666599 ], [ 35.202250000000106, 32.199166666666599 ], [ 35.202250000000106, 32.199083333333306 ], [ 35.202166666666642, 32.199083333333306 ], [ 35.202125, 32.198976603190204 ], [ 35.202083333333348, 32.199083333333306 ], [ 35.202, 32.199083333333306 ], [ 35.201897071838403, 32.198887919108074 ], [ 35.201560729980542, 32.199051366170352 ], [ 35.2015, 32.199166666666599 ], [ 35.201416666666717, 32.199166666666599 ], [ 35.201250587463392, 32.199084111531647 ], [ 35.201166666666666, 32.19925000000012 ], [ 35.20125000000013, 32.19925000000012 ], [ 35.20125000000013, 32.1995 ], [ 35.201083333333372, 32.1995 ], [ 35.201083333333372, 32.199666666666587 ], [ 35.201, 32.199666666666587 ], [ 35.201, 32.199833333333402 ], [ 35.201, 32.200166666666746 ], [ 35.201114349365241, 32.200218983968171 ], [ 35.201444819132519, 32.200294545491602 ], [ 35.201531016031936, 32.200543533325344 ], [ 35.20125000000013, 32.200583333333441 ], [ 35.201221473693863, 32.200684936523487 ], [ 35.201148396809913, 32.200611862182768 ], [ 35.20125000000013, 32.200583333333441 ], [ 35.201193679809649, 32.200472005208439 ], [ 35.200978327433404, 32.200544779459733 ], [ 35.20088867187502, 32.20072200520832 ], [ 35.200611328125092, 32.200777994791792 ], [ 35.2005, 32.200833333333321 ], [ 35.200401524861661, 32.200638671875026 ], [ 35.200111328124933, 32.200694661458272 ], [ 35.200083333333396, 32.20075 ], [ 35.199856630961165, 32.200851557413728 ], [ 35.199134895324732, 32.200796737670828 ], [ 35.199333333333357, 32.20075 ], [ 35.199384994506829, 32.200539667765383 ], [ 35.199258049011291, 32.200237426757894 ], [ 35.199595077514687, 32.20031298319509 ], [ 35.199666666666701, 32.200416666666683 ], [ 35.19975, 32.200583333333441 ], [ 35.199950703938839, 32.200531829834006 ], [ 35.199712491353353, 32.200111236572297 ], [ 35.199459978739526, 32.199946807861465 ], [ 35.199215962727862, 32.200049296061252 ], [ 35.198867370605569, 32.200117370605483 ], [ 35.198833333333369, 32.200166666666746 ], [ 35.198833333333369, 32.20025 ], [ 35.198942263285346, 32.20030289713543 ], [ 35.198720362345398, 32.200443908691454 ], [ 35.198666666666782, 32.20033333333339 ], [ 35.19860834248874, 32.200297393798792 ], [ 35.198491231282674, 32.199921412150161 ], [ 35.198666666666782, 32.2 ], [ 35.198701459248923, 32.199951456705776 ], [ 35.198965207417814, 32.199881876627728 ], [ 35.199292574564709, 32.199631876627677 ], [ 35.19978047180183, 32.199904607137114 ], [ 35.199923957824694, 32.20027664184579 ], [ 35.200272781372178, 32.200345570882291 ], [ 35.200299901326616, 32.200208333333308 ], [ 35.20026426951091, 32.200028020223101 ], [ 35.200683146158951, 32.200110788981192 ], [ 35.200815498352142, 32.199561498006176 ], [ 35.200659098307426, 32.19931515502941 ], [ 35.20075, 32.19925000000012 ], [ 35.200814626057934, 32.199005035400376 ], [ 35.201201459248978, 32.199081476847311 ], [ 35.20108200073247, 32.198715209960994 ], [ 35.200951459248927, 32.198784790039042 ], [ 35.200863001505581, 32.198908208211265 ], [ 35.200489687601703, 32.199052185058633 ], [ 35.200262865702257, 32.19944341023762 ], [ 35.199872589111351, 32.199366292317734 ], [ 35.19975, 32.199416666666707 ], [ 35.199666666666701, 32.199416666666707 ], [ 35.199500000000114, 32.1995 ], [ 35.199286249796614, 32.199552500407037 ], [ 35.19925, 32.1995 ], [ 35.19889569091805, 32.19918342590347 ], [ 35.199333333333357, 32.19925000000012 ], [ 35.19941666666665, 32.19925000000012 ], [ 35.199980331420988, 32.199202885945738 ], [ 35.200083333333396, 32.199083333333306 ], [ 35.199944661458346, 32.199055338541768 ], [ 35.199888671875044, 32.198820632934655 ], [ 35.20015038299556, 32.198948445638166 ], [ 35.200083333333396, 32.199083333333306 ], [ 35.200349319458098, 32.19904979451502 ], [ 35.200416666666797, 32.198916666666719 ], [ 35.2005, 32.198916666666719 ], [ 35.2005, 32.198833333333425 ], [ 35.200666666666677, 32.198833333333425 ], [ 35.200833333333264, 32.198833333333425 ], [ 35.200833333333264, 32.198666666666668 ], [ 35.201083333333372, 32.198666666666668 ], [ 35.201194661458374, 32.198611328125082 ], [ 35.20158333333336, 32.198583333333318 ], [ 35.201690063476633, 32.198541666666586 ], [ 35.20158333333336, 32.1985 ], [ 35.2015, 32.198333333333437 ], [ 35.2015, 32.198250000000144 ], [ 35.201416666666717, 32.198250000000144 ], [ 35.201416666666717, 32.19816666666668 ], [ 35.201333333333423, 32.19816666666668 ], [ 35.201333333333423, 32.198250000000144 ], [ 35.201167317708382, 32.198333984374983 ], [ 35.201083333333372, 32.1985 ], [ 35.200786303202392, 32.198380366007541 ], [ 35.200666666666677, 32.198083333333386 ], [ 35.200583333333384, 32.198083333333386 ], [ 35.200476603190054, 32.198041666666597 ], [ 35.200583333333384, 32.198 ], [ 35.200666666666677, 32.198 ], [ 35.200666666666677, 32.198083333333386 ], [ 35.201416666666717, 32.198083333333386 ], [ 35.201416666666717, 32.19816666666668 ], [ 35.2015, 32.19816666666668 ], [ 35.2015, 32.198250000000144 ], [ 35.201862101237055, 32.198520273844508 ], [ 35.202047030131098, 32.198213699340954 ], [ 35.202120246887318, 32.19803480529788 ], [ 35.202313341776573, 32.198063339233499 ], [ 35.202197779337666, 32.197871760050532 ], [ 35.202511660257983, 32.197743296305475 ], [ 35.202416666666693, 32.197333333333461 ], [ 35.20253293355313, 32.19725 ], [ 35.202416666666693, 32.197166666666703 ], [ 35.202472656249995, 32.197055989583362 ], [ 35.20258333333328, 32.197000000000116 ], [ 35.202749412536662, 32.196917444864937 ], [ 35.202833333333388, 32.19708333333341 ], [ 35.202916666666681, 32.197199600219847 ], [ 35.203034792582116, 32.197034790039197 ], [ 35.20314645894382, 32.196954757690492 ], [ 35.203365893046168, 32.19660912577325 ], [ 35.203416666666669, 32.196416666666664 ], [ 35.203453918457114, 32.196232137044319 ], [ 35.203583333333427, 32.196166666666727 ], [ 35.203694661458314, 32.196110346476246 ], [ 35.203621452331561, 32.19589370218921 ], [ 35.203375119527266, 32.195771260579477 ], [ 35.203222005208318, 32.195846033732153 ], [ 35.20327799479179, 32.195694661458333 ], [ 35.203416666666669, 32.195666666666739 ], [ 35.204009218851752, 32.195592549642072 ], [ 35.204125, 32.19544796752939 ], [ 35.204240781148371, 32.195592549642072 ], [ 35.204448682149348, 32.195759038289452 ], [ 35.204737998962514, 32.195880950927858 ], [ 35.204833333333283, 32.19600000000014 ], [ 35.204916666666804, 32.19600000000014 ], [ 35.204916666666804, 32.196083333333434 ], [ 35.205083333333391, 32.196083333333434 ], [ 35.205083333333391, 32.196166666666727 ], [ 35.205439872741692, 32.196268605550188 ], [ 35.206005546569827, 32.19672101847334 ], [ 35.206703725178954, 32.196879608154291 ], [ 35.206750000000113, 32.196916666666596 ], [ 35.206872268676875, 32.197115102132216 ], [ 35.207133407592892, 32.197022557576531 ], [ 35.207329966227348, 32.196703552246106 ], [ 35.207807459513333, 32.196634038289403 ], [ 35.20777659861244, 32.196534957885774 ], [ 35.207936457316123, 32.196436457316111 ], [ 35.208, 32.196333333333314 ], [ 35.208110677083312, 32.196277343750069 ], [ 35.208194661458322, 32.196111328124971 ], [ 35.208334790547781, 32.196040440877255 ], [ 35.208124880472894, 32.195937927246064 ], [ 35.208, 32.19600000000014 ], [ 35.207966857910208, 32.195931752522938 ], [ 35.20778776041675, 32.196026606241958 ], [ 35.20775, 32.195833333333383 ], [ 35.207781016031959, 32.195781016031958 ], [ 35.207891728719119, 32.195715382893923 ], [ 35.20783616638181, 32.195553578694728 ], [ 35.208083333333434, 32.195666666666739 ], [ 35.208151123046832, 32.195781016031958 ], [ 35.20836434936524, 32.195693532308042 ], [ 35.208275436401493, 32.195460591634173 ], [ 35.208083333333434, 32.195416666666688 ], [ 35.208083333333434, 32.195333333333394 ], [ 35.208083333333434, 32.195250000000101 ], [ 35.208, 32.195250000000101 ], [ 35.208, 32.195083333333457 ], [ 35.207416666666688, 32.195083333333457 ], [ 35.207416666666688, 32.195166666666751 ], [ 35.207333333333395, 32.195166666666751 ], [ 35.207333333333395, 32.195083333333457 ], [ 35.207333333333395, 32.195 ], [ 35.207250000000101, 32.195 ], [ 35.207166666666808, 32.195 ], [ 35.207166666666808, 32.1949166666667 ], [ 35.207083333333287, 32.1949166666667 ], [ 35.207083333333287, 32.194833333333406 ], [ 35.207250000000101, 32.194833333333406 ], [ 35.20741812896739, 32.194916905720959 ], [ 35.207682632446392, 32.194783101399764 ], [ 35.207583333333275, 32.194583333333298 ], [ 35.207583333333275, 32.1945 ], [ 35.2075, 32.1945 ], [ 35.2075, 32.194416666666712 ], [ 35.207666666666796, 32.194416666666712 ], [ 35.207817690531499, 32.19438617960617 ], [ 35.20775, 32.194250000000125 ], [ 35.20775, 32.19408333333331 ], [ 35.207833333333383, 32.19408333333331 ], [ 35.207615598042935, 32.19370034790046 ], [ 35.207628534952789, 32.193539347330784 ], [ 35.207513590494784, 32.193333333333442 ], [ 35.207642135620233, 32.193102940877395 ], [ 35.208125, 32.193141738891654 ], [ 35.208530036926334, 32.193109196980799 ], [ 35.208705233256126, 32.193260345459066 ], [ 35.208454752604268, 32.193372116088938 ], [ 35.208461898803819, 32.193461029052855 ], [ 35.208338165283294, 32.19356763203939 ], [ 35.208505432129016, 32.193867426554505 ], [ 35.208121899922673, 32.194038569132431 ], [ 35.208083333333434, 32.19408333333331 ], [ 35.208281097412168, 32.194241699218878 ], [ 35.208166666666727, 32.194333333333418 ], [ 35.208083333333434, 32.194333333333418 ], [ 35.208083333333434, 32.194583333333298 ], [ 35.208166666666727, 32.194583333333298 ], [ 35.208166666666727, 32.194666666666592 ], [ 35.20825, 32.194666666666592 ], [ 35.208279713948684, 32.195010930379283 ], [ 35.20844955190023, 32.195108286539721 ], [ 35.208500000000129, 32.195 ], [ 35.208551561991442, 32.194968231201187 ], [ 35.208664848327658, 32.19463579813646 ], [ 35.208801561991493, 32.194551564534549 ], [ 35.208833333333359, 32.194333333333418 ], [ 35.208916666666653, 32.194333333333418 ], [ 35.208916666666653, 32.194250000000125 ], [ 35.208860677083351, 32.194139322916783 ], [ 35.20875, 32.19408333333331 ], [ 35.208782819112059, 32.19372537740071 ], [ 35.209000000000117, 32.19383333333343 ], [ 35.209039858500262, 32.193559544881282 ], [ 35.209364657084222, 32.193660710652637 ], [ 35.20925, 32.193916666666723 ], [ 35.209166666666704, 32.193916666666723 ], [ 35.209111328124948, 32.194027994791782 ], [ 35.20908333333341, 32.194166666666661 ], [ 35.20908333333341, 32.194250000000125 ], [ 35.20908333333341, 32.194333333333418 ], [ 35.209166666666704, 32.194333333333418 ], [ 35.209166666666704, 32.194416666666712 ], [ 35.20925, 32.194416666666712 ], [ 35.209398877461865, 32.194786300659302 ], [ 35.209547030130977, 32.194713699340923 ], [ 35.209619636535592, 32.194536300659195 ], [ 35.209833333333279, 32.1945 ], [ 35.209859817504935, 32.19427648417161 ], [ 35.21005908203125, 32.194223515828469 ], [ 35.210193150838336, 32.194448837280277 ], [ 35.210026484171578, 32.194526484171661 ], [ 35.21, 32.194583333333298 ], [ 35.21, 32.194666666666592 ], [ 35.209833333333279, 32.194666666666592 ], [ 35.209937052408918, 32.195298060099276 ], [ 35.209121215820232, 32.19547021993003 ], [ 35.208880363464402, 32.195657658894788 ], [ 35.209047030130989, 32.195786300659222 ], [ 35.209119636535661, 32.19596369934095 ], [ 35.209240989685043, 32.196119633992623 ], [ 35.209369636535712, 32.195952967325866 ], [ 35.209584231058841, 32.195880366007486 ], [ 35.209702969869113, 32.196281707763717 ], [ 35.209069806416949, 32.196415318807055 ], [ 35.209166666666704, 32.196833333333302 ], [ 35.209268775939904, 32.196981221516978 ], [ 35.209655464172499, 32.197248209635518 ], [ 35.209875, 32.197198994954476 ], [ 35.210106079101649, 32.197250793457044 ], [ 35.20986737060548, 32.197617370605599 ], [ 35.20975301361085, 32.197922993977897 ], [ 35.209833333333279, 32.198250000000144 ], [ 35.209972005208328, 32.198527994791789 ], [ 35.210027994791801, 32.199222005208355 ], [ 35.210333333333438, 32.19925000000012 ], [ 35.210410113016849, 32.199357126871746 ], [ 35.211152107238831, 32.199505269368615 ], [ 35.211368125915556, 32.199368123372324 ], [ 35.2115, 32.199333333333414 ], [ 35.211574170430538, 32.199449193318628 ], [ 35.21169304911308, 32.19932023620612 ], [ 35.211583333333294, 32.19925000000012 ], [ 35.211546274820989, 32.199037058512374 ], [ 35.211416732788223, 32.19881668090818 ], [ 35.211700126648054, 32.198589742024865 ], [ 35.211305493672683, 32.198638829549168 ], [ 35.211455894470305, 32.198281906127988 ], [ 35.211720013936315, 32.198474843343206 ], [ 35.211870391845764, 32.198287058512506 ], [ 35.212, 32.198250000000144 ], [ 35.212125, 32.198187866211015 ], [ 35.21225, 32.198250000000144 ], [ 35.21225, 32.198333333333437 ], [ 35.212416666666684, 32.198333333333437 ], [ 35.212696111043272, 32.198450703938931 ], [ 35.212762690226157, 32.19822241210943 ], [ 35.2125286661784, 32.1978834635417 ], [ 35.21233333333339, 32.197833333333449 ], [ 35.212239423116159, 32.197628077189279 ], [ 35.212528834025079, 32.197532567342137 ], [ 35.212281016031966, 32.197385650634885 ], [ 35.21225, 32.197333333333461 ], [ 35.212205233256157, 32.197371902465875 ], [ 35.212128100077393, 32.197461430867463 ], [ 35.211809061686324, 32.19760379536956 ], [ 35.211333333333414, 32.197333333333461 ], [ 35.211333333333414, 32.19725 ], [ 35.211416666666707, 32.19725 ], [ 35.211666666666645, 32.19725 ], [ 35.212116223653084, 32.197139577229848 ], [ 35.21225, 32.197333333333461 ], [ 35.2125, 32.197333333333461 ], [ 35.212443878173872, 32.197222391764285 ], [ 35.212111328125047, 32.197055338541645 ], [ 35.212083333333283, 32.197000000000116 ], [ 35.212212748209652, 32.196934529622524 ], [ 35.21225, 32.19675 ], [ 35.212444625854516, 32.196795837402362 ], [ 35.212531768798954, 32.197051564534604 ], [ 35.212583333333441, 32.19708333333341 ], [ 35.212583333333441, 32.197166666666703 ], [ 35.212666666666735, 32.197166666666703 ], [ 35.212666666666735, 32.197333333333461 ], [ 35.212956985473625, 32.197284016927028 ], [ 35.213000000000136, 32.196833333333302 ], [ 35.213138671875015, 32.196805338541765 ], [ 35.213194661458317, 32.196694661458253 ], [ 35.213316197713311, 32.196633178711011 ], [ 35.21325, 32.196500000000128 ], [ 35.213536300659314, 32.19628630065921 ], [ 35.213916666666648, 32.19625 ], [ 35.213972005208348, 32.196138671875019 ], [ 35.214000000000112, 32.19600000000014 ], [ 35.214000000000112, 32.195916666666676 ], [ 35.214000000000112, 32.19575 ], [ 35.214000000000112, 32.195666666666739 ], [ 35.214083333333406, 32.195666666666739 ], [ 35.214166666666699, 32.195666666666739 ], [ 35.214166666666699, 32.195583333333445 ], [ 35.213968831380214, 32.195461435953803 ], [ 35.214127731323231, 32.195218231201295 ], [ 35.21425, 32.195416666666688 ], [ 35.214333333333286, 32.195416666666688 ], [ 35.214333333333286, 32.195500000000152 ], [ 35.214399531046581, 32.195533487955856 ], [ 35.214333333333286, 32.195666666666739 ], [ 35.214404398600379, 32.195835861206206 ], [ 35.214166666666699, 32.19600000000014 ], [ 35.214166666666699, 32.196083333333434 ], [ 35.214166666666699, 32.196166666666727 ], [ 35.21428109741214, 32.196258300781267 ], [ 35.214083333333406, 32.196416666666664 ], [ 35.213884134928435, 32.196473622640099 ], [ 35.214379608154275, 32.196870391845835 ], [ 35.214416666666807, 32.197000000000116 ], [ 35.214085820515947, 32.197054346720449 ], [ 35.213894399007245, 32.197026062011844 ], [ 35.214074325561626, 32.197369633992651 ], [ 35.214318893432676, 32.197052780151353 ], [ 35.214452967325769, 32.197380366007565 ], [ 35.21468388875337, 32.197452967325773 ], [ 35.2145000000001, 32.197166666666703 ], [ 35.214549296061193, 32.197132629394673 ], [ 35.214654357910206, 32.196723246256624 ], [ 35.215257868448987, 32.196878122965586 ], [ 35.215450703938927, 32.197215962727967 ], [ 35.215715962727927, 32.197367370605491 ], [ 35.216044845581166, 32.197641647338912 ], [ 35.216374582926505, 32.197413981119894 ], [ 35.216416666666703, 32.19725 ], [ 35.216750000000104, 32.19725 ], [ 35.216750000000104, 32.197166666666703 ], [ 35.216833333333398, 32.197166666666703 ], [ 35.216871144612639, 32.197037811279358 ], [ 35.217012924194307, 32.196660491943419 ], [ 35.216621144612759, 32.19654552205418 ], [ 35.21648424275719, 32.19638071187336 ], [ 35.216190790812163, 32.19625344340011 ], [ 35.216315958658925, 32.195805760701546 ], [ 35.216746164957783, 32.195545522054033 ], [ 35.216703735351643, 32.195961791992204 ], [ 35.216846054077109, 32.196037811279382 ], [ 35.216954803466876, 32.195787058512394 ], [ 35.217539271036856, 32.195846633911231 ], [ 35.21773134867351, 32.196077865600671 ], [ 35.21766666666673, 32.19625 ], [ 35.217360478719058, 32.196304565429728 ], [ 35.217212188720794, 32.196440439860169 ], [ 35.217696319580114, 32.196650405883759 ], [ 35.217787811279322, 32.196962188720818 ], [ 35.217962188720662, 32.197204477945945 ], [ 35.218047378540177, 32.197400909423777 ], [ 35.218249669393003, 32.197568944295313 ], [ 35.217750493367532, 32.197715428670335 ], [ 35.217543034871483, 32.197965179443486 ], [ 35.217377690633271, 32.197870478312268 ], [ 35.217275405883868, 32.197880905151408 ], [ 35.217122772216896, 32.197697153727177 ], [ 35.217045522054036, 32.198045522054088 ], [ 35.216937103271619, 32.19813557942723 ], [ 35.216716491699231, 32.198113093058339 ], [ 35.216962188720743, 32.198454477946029 ], [ 35.217, 32.198583333333318 ], [ 35.217297032674196, 32.198702967325858 ], [ 35.217520670572981, 32.198837870280045 ], [ 35.21825327046713, 32.198729609171551 ], [ 35.218410934448173, 32.19893386840829 ], [ 35.218909734090118, 32.198737777710107 ], [ 35.219092814127691, 32.199185104370258 ], [ 35.219389495849725, 32.199228947957351 ], [ 35.219630366007493, 32.19913036600741 ], [ 35.219861119588359, 32.198991170247439 ], [ 35.220202967325861, 32.198940653483191 ], [ 35.220068298339811, 32.199292541503951 ], [ 35.219630366007493, 32.199384958903011 ], [ 35.219786300659166, 32.199630366007568 ], [ 35.21983333333344, 32.199666666666587 ], [ 35.219871902465854, 32.199711430867467 ], [ 35.220044764200907, 32.199788569132522 ], [ 35.220336863199975, 32.199951538086054 ], [ 35.22091666666671, 32.2 ], [ 35.221215962727911, 32.199965962727958 ], [ 35.221416666666698, 32.199916666666695 ], [ 35.221626235961935, 32.1998651936849 ], [ 35.221784037272073, 32.19991896565756 ], [ 35.221617370605486, 32.200034037272189 ], [ 35.221583333333456, 32.200083333333453 ], [ 35.221437998453894, 32.200026199340812 ], [ 35.220808822631852, 32.200119176228895 ], [ 35.220083333333378, 32.2 ], [ 35.220041666666589, 32.199893269856886 ], [ 35.22, 32.2 ], [ 35.22, 32.200166666666746 ], [ 35.219968231201278, 32.200218231201291 ], [ 35.219803426106694, 32.200281768798845 ], [ 35.219678833007833, 32.199916168212951 ], [ 35.219309438069729, 32.199486867269002 ], [ 35.21925, 32.199583333333464 ], [ 35.219204477945937, 32.199545522054052 ], [ 35.218760894775414, 32.199446772257602 ], [ 35.218430775960258, 32.199049357096385 ], [ 35.218295522054063, 32.199212188720821 ], [ 35.21801729838063, 32.199287811279362 ], [ 35.217873789469365, 32.19911505126953 ], [ 35.217763966878351, 32.199368275960353 ], [ 35.217342015584393, 32.199454477945949 ], [ 35.216820973714277, 32.199079488118514 ], [ 35.216962188720743, 32.19896218872077 ], [ 35.217, 32.198583333333318 ], [ 35.216876998901455, 32.198531672159845 ], [ 35.216380752563566, 32.198653559366846 ], [ 35.216299296061209, 32.198940490722691 ], [ 35.216617823282888, 32.199059677124069 ], [ 35.216666666666811, 32.19925000000012 ], [ 35.21658333333329, 32.19925000000012 ], [ 35.21658333333329, 32.199333333333414 ], [ 35.216388671874995, 32.19937262980153 ], [ 35.216444661458411, 32.199472005208463 ], [ 35.216666666666811, 32.199583333333464 ], [ 35.216728800455769, 32.199708333333319 ], [ 35.216666666666811, 32.199833333333402 ], [ 35.216533279419025, 32.19986661275243 ], [ 35.216466720581138, 32.199966720581131 ], [ 35.216358856201111, 32.20003843688977 ], [ 35.21651729329426, 32.200275680542006 ], [ 35.216202743530232, 32.200196426391585 ], [ 35.216133387247737, 32.200283716837589 ], [ 35.216333333333409, 32.200416666666683 ], [ 35.216551564534541, 32.200448435465432 ], [ 35.216864690144916, 32.200588709513283 ], [ 35.217218231201286, 32.200468231201171 ], [ 35.217448435465485, 32.200281768798845 ], [ 35.217634897867754, 32.200218231201291 ], [ 35.21766666666673, 32.200083333333453 ], [ 35.217757710774833, 32.200158955891993 ], [ 35.217933965047337, 32.200371144612632 ], [ 35.218116790771489, 32.200247207641723 ], [ 35.218143692016611, 32.199983286539691 ], [ 35.217712188720782, 32.199856664021866 ], [ 35.218010940551892, 32.199463511149133 ], [ 35.218333333333305, 32.199666666666587 ], [ 35.218333333333305, 32.199916666666695 ], [ 35.218225072224982, 32.199965021769344 ], [ 35.218416666666656, 32.2 ], [ 35.218416666666656, 32.200083333333453 ], [ 35.21850000000012, 32.200083333333453 ], [ 35.218394999186216, 32.200510833740282 ], [ 35.21850000000012, 32.200583333333441 ], [ 35.21850000000012, 32.200833333333321 ], [ 35.218726684570413, 32.200891504923561 ], [ 35.218916666666587, 32.201166666666722 ], [ 35.219062133789066, 32.201187866211058 ], [ 35.21918786621103, 32.201312133789145 ], [ 35.219562133789054, 32.201354532877644 ], [ 35.219583333333389, 32.201416666666603 ], [ 35.219583333333389, 32.201583333333417 ], [ 35.219832483927405, 32.201708272298163 ], [ 35.219694661458391, 32.201777994791712 ], [ 35.219666666666683, 32.201833333333468 ], [ 35.219465962727895, 32.201700703938911 ], [ 35.219333333333452, 32.201666666666711 ], [ 35.219333333333452, 32.201583333333417 ], [ 35.21925, 32.201583333333417 ], [ 35.21925, 32.201500000000124 ], [ 35.219166666666695, 32.201500000000124 ], [ 35.219110677083393, 32.201389322916782 ], [ 35.218944661458352, 32.201305338541772 ], [ 35.218916666666587, 32.20125 ], [ 35.218916666666587, 32.201166666666722 ], [ 35.218833333333293, 32.201166666666722 ], [ 35.218636144002289, 32.201030522664325 ], [ 35.21850000000012, 32.200833333333321 ], [ 35.218200703938919, 32.20079929606112 ], [ 35.217937769572018, 32.20059552001959 ], [ 35.217470382690465, 32.200465962727947 ], [ 35.217166666666742, 32.200666666666734 ], [ 35.217125, 32.200559936523462 ], [ 35.217083333333449, 32.200666666666734 ], [ 35.217051564534472, 32.200801564534572 ], [ 35.216719131469802, 32.200914845784553 ], [ 35.216634897867834, 32.201051564534623 ], [ 35.21658333333329, 32.201083333333429 ], [ 35.216527994791761, 32.201111328125137 ], [ 35.216472005208459, 32.201305338541772 ], [ 35.216277994791653, 32.201361328125074 ], [ 35.216138671875058, 32.201472005208359 ], [ 35.215861328124959, 32.201527994791661 ], [ 35.215750000000128, 32.201583333333417 ], [ 35.215700703938865, 32.201549296061216 ], [ 35.215292012532643, 32.201448913574154 ], [ 35.214970860799156, 32.201520909627391 ], [ 35.214696492512985, 32.201699574788449 ], [ 35.2145000000001, 32.20175 ], [ 35.21441601562509, 32.201583984375134 ], [ 35.214139322916708, 32.201444010416651 ], [ 35.214083333333406, 32.201333333333309 ], [ 35.213997014363656, 32.201046625773245 ], [ 35.21375, 32.201333333333309 ], [ 35.21378823852541, 32.201558425903329 ], [ 35.213869633992488, 32.201452967325793 ], [ 35.21397601318364, 32.201380366007413 ], [ 35.21395217386879, 32.201541666666685 ], [ 35.21397617594414, 32.201704065958722 ], [ 35.213847534179706, 32.201803365071669 ], [ 35.213684244791807, 32.202202326456813 ], [ 35.213286300659206, 32.202286300659182 ], [ 35.21304703267424, 32.202463699340854 ], [ 35.212786300659275, 32.202536300659233 ], [ 35.212713699340895, 32.202630366007497 ], [ 35.212580922444715, 32.202732849121219 ], [ 35.212733281453495, 32.202985432942796 ], [ 35.213162551879805, 32.202921997070405 ], [ 35.213360743204873, 32.202437754313223 ], [ 35.213678792317808, 32.202484756469744 ], [ 35.213869633992488, 32.202369633992646 ], [ 35.214119633992595, 32.202317031860389 ], [ 35.213916666666648, 32.202833333333444 ], [ 35.21375, 32.202833333333444 ], [ 35.21375, 32.202916666666738 ], [ 35.213620585123692, 32.20298213704433 ], [ 35.213583333333418, 32.203166666666675 ], [ 35.213500000000124, 32.203166666666675 ], [ 35.213500000000124, 32.203416666666726 ], [ 35.213361328125075, 32.203444661458263 ], [ 35.21325, 32.2035 ], [ 35.212984013875371, 32.203533541361537 ], [ 35.212812637329137, 32.203872304280594 ], [ 35.212899378458644, 32.204049921671583 ], [ 35.212833333333379, 32.204083333333472 ], [ 35.212604731241981, 32.203987317403175 ], [ 35.21233333333339, 32.204166666666595 ], [ 35.21225, 32.204166666666595 ], [ 35.21225, 32.204083333333472 ], [ 35.212416015624967, 32.203999348958462 ], [ 35.212527994791685, 32.203777994791665 ], [ 35.212649531046566, 32.203716512044252 ], [ 35.212583333333441, 32.203583333333313 ], [ 35.212686055501308, 32.203531366984066 ], [ 35.212452448527017, 32.203345794677716 ], [ 35.21233333333339, 32.203583333333313 ], [ 35.212137341817197, 32.20349738566091 ], [ 35.212264773050947, 32.203950836181775 ], [ 35.212032526652138, 32.204032526652156 ], [ 35.212, 32.204083333333472 ], [ 35.211370908101401, 32.204161931355827 ], [ 35.211212941487759, 32.203787058512432 ], [ 35.21109496307372, 32.20358635203047 ], [ 35.210879608154414, 32.203712941487765 ], [ 35.21062039184568, 32.203787058512432 ], [ 35.210466138204026, 32.203979685465583 ], [ 35.210348292032961, 32.204524358113758 ], [ 35.210116048177213, 32.20462222035718 ], [ 35.210256546020616, 32.204861236572185 ], [ 35.209978874206513, 32.204978240966796 ], [ 35.210083333333387, 32.20525 ], [ 35.210083333333387, 32.205333333333328 ], [ 35.21016666666668, 32.205333333333328 ], [ 35.21025, 32.205333333333328 ], [ 35.21025, 32.205500000000143 ], [ 35.210333333333438, 32.205500000000143 ], [ 35.210333333333438, 32.205333333333328 ], [ 35.210651672363269, 32.205304145813045 ], [ 35.210583333333375, 32.205166666666742 ], [ 35.210770398457839, 32.205088096618681 ], [ 35.210833333333426, 32.205333333333328 ], [ 35.21077799479167, 32.205361328125093 ], [ 35.210638671875131, 32.205638671875022 ], [ 35.210406974792591, 32.205705538431914 ], [ 35.210725972493549, 32.205861328125081 ], [ 35.212138671875039, 32.205805338541779 ], [ 35.21225, 32.20575 ], [ 35.212333984375107, 32.205916015625121 ], [ 35.2125, 32.206000000000131 ], [ 35.2125, 32.206083333333424 ], [ 35.212583333333441, 32.206083333333424 ], [ 35.212583333333441, 32.20625 ], [ 35.21275, 32.20625 ], [ 35.212888671875135, 32.206527994791657 ], [ 35.212916666666672, 32.20675 ], [ 35.212916666666672, 32.206916666666757 ], [ 35.213000000000136, 32.206916666666757 ], [ 35.213166666666723, 32.206916666666757 ], [ 35.213166666666723, 32.206833333333464 ], [ 35.213452189127679, 32.206889073689808 ], [ 35.21325, 32.207083333333401 ], [ 35.213343058268322, 32.207320042928075 ], [ 35.212916666666672, 32.20725 ], [ 35.212833333333379, 32.20725 ], [ 35.212833333333379, 32.207333333333452 ], [ 35.212583333333441, 32.207333333333452 ], [ 35.212583333333441, 32.207416666666745 ], [ 35.212416666666684, 32.207333333333452 ], [ 35.212416666666684, 32.207416666666745 ], [ 35.212166666666803, 32.207416666666745 ], [ 35.212166666666803, 32.207333333333452 ], [ 35.21233333333339, 32.207333333333452 ], [ 35.21233333333339, 32.20725 ], [ 35.212166666666803, 32.20725 ], [ 35.212166666666803, 32.207 ], [ 35.212416666666684, 32.207 ], [ 35.212416666666684, 32.206916666666757 ], [ 35.2125, 32.206916666666757 ], [ 35.2125, 32.206833333333464 ], [ 35.212583333333441, 32.206833333333464 ], [ 35.212666666666735, 32.206833333333464 ], [ 35.212833333333379, 32.206833333333464 ], [ 35.21275, 32.206666666666706 ], [ 35.212426920573023, 32.206150049845348 ], [ 35.212166666666803, 32.206000000000131 ], [ 35.212125, 32.205893269856801 ], [ 35.212083333333283, 32.206000000000131 ], [ 35.211916666666696, 32.205917154948054 ], [ 35.211750000000109, 32.206000000000131 ], [ 35.211750000000109, 32.20591666666661 ], [ 35.211416666666707, 32.20591666666661 ], [ 35.211416666666707, 32.206000000000131 ], [ 35.211360677083462, 32.206110677083416 ], [ 35.211250000000121, 32.206166666666718 ], [ 35.211118125915505, 32.206131874084576 ], [ 35.211048540751165, 32.206034792582273 ], [ 35.210397432963077, 32.20590425872814 ], [ 35.210131874084539, 32.205701459248871 ], [ 35.209951459248941, 32.205631874084588 ], [ 35.209798540751137, 32.205534792582284 ], [ 35.209538088480713, 32.205434338887471 ], [ 35.209228736877549, 32.205495468139759 ], [ 35.209333333333291, 32.20575 ], [ 35.209547643025815, 32.205804997762129 ], [ 35.209553713480716, 32.206034037272161 ], [ 35.20925, 32.205833333333317 ], [ 35.20915664927179, 32.205949907938759 ], [ 35.208800374348982, 32.205740481058854 ], [ 35.20875, 32.20591666666661 ] ], [ [ 35.207863988240604, 32.206003331502302 ], [ 35.207749631245974, 32.206205988566069 ], [ 35.20712649027513, 32.206039095560698 ], [ 35.20687840270989, 32.206053881327421 ], [ 35.206750000000113, 32.205833333333317 ], [ 35.206916178385484, 32.205750729878787 ], [ 35.20708382161456, 32.20583260345461 ], [ 35.207250000000101, 32.20575 ], [ 35.20745598856621, 32.205877344767316 ], [ 35.207863988240604, 32.206003331502302 ] ], [ [ 35.19575, 32.205833333333317 ], [ 35.19575, 32.20591666666661 ], [ 35.195583333333389, 32.20591666666661 ], [ 35.195583333333389, 32.205833333333317 ], [ 35.19575, 32.205833333333317 ] ], [ [ 35.195300699869904, 32.205987675984716 ], [ 35.195333333333338, 32.206083333333424 ], [ 35.195333333333338, 32.206166666666718 ], [ 35.195153210957983, 32.206140419006488 ], [ 35.195300699869904, 32.205987675984716 ] ], [ [ 35.194583333333412, 32.20625 ], [ 35.194538052876908, 32.206355809529668 ], [ 35.194391693115222, 32.206283777872784 ], [ 35.194583333333412, 32.20625 ] ], [ [ 35.195000000000107, 32.206583333333413 ], [ 35.19497147369384, 32.206684936523459 ], [ 35.19489839680989, 32.206611859639509 ], [ 35.195000000000107, 32.206583333333413 ] ], [ [ 35.197027297973705, 32.206753033956034 ], [ 35.196916666666709, 32.207 ], [ 35.197023396809868, 32.207041666666612 ], [ 35.196916666666709, 32.207083333333401 ], [ 35.196750000000122, 32.207083333333401 ], [ 35.196658358256002, 32.206878761291591 ], [ 35.197027297973705, 32.206753033956034 ] ], [ [ 35.1965, 32.206916666666757 ], [ 35.1965, 32.207 ], [ 35.19616666666667, 32.207 ], [ 35.19616666666667, 32.206916666666757 ], [ 35.19616666666667, 32.206833333333464 ], [ 35.196333333333257, 32.206833333333464 ], [ 35.1965, 32.206916666666757 ] ], [ [ 35.211750000000109, 32.207 ], [ 35.211800234476755, 32.206900700887161 ], [ 35.212, 32.207 ], [ 35.212, 32.207083333333401 ], [ 35.211750000000109, 32.207083333333401 ], [ 35.211750000000109, 32.207 ] ], [ [ 35.201166666666666, 32.207083333333401 ], [ 35.201247281392398, 32.207248868306465 ], [ 35.201025047302267, 32.207362083435157 ], [ 35.20088791656508, 32.207119555155543 ], [ 35.201166666666666, 32.207083333333401 ] ], [ [ 35.211833333333402, 32.207416666666745 ], [ 35.211875000000134, 32.207309936523473 ], [ 35.211916666666696, 32.207416666666745 ], [ 35.211833333333402, 32.207416666666745 ] ], [ [ 35.194833333333349, 32.207416666666745 ], [ 35.194788052876788, 32.207522476196232 ], [ 35.194641693115329, 32.207450444539518 ], [ 35.194833333333349, 32.207416666666745 ] ], [ [ 35.220454722086686, 32.207272476196351 ], [ 35.220308359781825, 32.207200444539467 ], [ 35.2205, 32.207166666666694 ], [ 35.220454722086686, 32.207272476196351 ] ], [ [ 35.2195, 32.207166666666694 ], [ 35.2195, 32.207083333333401 ], [ 35.219606730143369, 32.207125000000133 ], [ 35.2195, 32.207166666666694 ], [ 35.2195, 32.20725 ], [ 35.219416666666746, 32.20725 ], [ 35.219416666666746, 32.207166666666694 ], [ 35.2195, 32.207166666666694 ] ], [ [ 35.232666666666717, 32.20625 ], [ 35.232452967325798, 32.206213696797818 ], [ 35.232054183960031, 32.205918037414619 ], [ 35.231475636800155, 32.205756932576492 ], [ 35.231416666666689, 32.205833333333317 ], [ 35.231250651041762, 32.205749348958307 ], [ 35.231166666666752, 32.205583333333436 ], [ 35.231083333333459, 32.205583333333436 ], [ 35.231083333333459, 32.205500000000143 ], [ 35.23059793599441, 32.205417544047123 ], [ 35.230380366007523, 32.205286303202456 ], [ 35.230202967325795, 32.205213696797841 ], [ 35.230166666666605, 32.205166666666742 ], [ 35.229612040201857, 32.205008234659886 ], [ 35.229416666666737, 32.205083333333448 ], [ 35.229416666666737, 32.205 ], [ 35.229333333333443, 32.205 ], [ 35.229333333333443, 32.205166666666742 ], [ 35.229333333333443, 32.20525 ], [ 35.22925, 32.20525 ], [ 35.22925, 32.205166666666742 ], [ 35.228947316487563, 32.205047676086508 ], [ 35.228666666666697, 32.205 ], [ 35.228666666666697, 32.204833333333397 ], [ 35.228611328125112, 32.204805338541803 ], [ 35.228527343750102, 32.204639322916762 ], [ 35.22841666666659, 32.20458333333346 ], [ 35.228333333333467, 32.20458333333346 ], [ 35.228333333333467, 32.2045 ], [ 35.22825, 32.2045 ], [ 35.228166666666709, 32.204333333333409 ], [ 35.228166666666709, 32.204250000000116 ], [ 35.228083333333416, 32.204250000000116 ], [ 35.228083333333416, 32.204166666666595 ], [ 35.228000000000122, 32.204166666666595 ], [ 35.228000000000122, 32.204250000000116 ], [ 35.227833333333308, 32.204166666666595 ], [ 35.227833333333308, 32.204083333333472 ], [ 35.227583333333428, 32.204083333333472 ], [ 35.227583333333428, 32.204250000000116 ], [ 35.227583333333428, 32.204333333333409 ], [ 35.227500000000134, 32.204333333333409 ], [ 35.22744850667317, 32.204288968404228 ], [ 35.227467890421678, 32.20404772694917 ], [ 35.226589950561447, 32.203958173116177 ], [ 35.226250000000107, 32.203833333333421 ], [ 35.226166666666586, 32.203717066446984 ], [ 35.226083333333463, 32.203833333333421 ], [ 35.225916666666706, 32.203833333333421 ], [ 35.225862823486295, 32.203523946126381 ], [ 35.225370391845786, 32.203129608154313 ], [ 35.225333333333424, 32.203083333333325 ], [ 35.225250000000131, 32.203083333333325 ], [ 35.225130366007477, 32.203380363464305 ], [ 35.224833333333436, 32.203416666666726 ], [ 35.22465553792324, 32.203217679341606 ], [ 35.224507914225228, 32.203539321899541 ], [ 35.22420192972811, 32.203459620157957 ], [ 35.22425, 32.203416666666726 ], [ 35.22425, 32.203250000000139 ], [ 35.224027994791641, 32.203138671875081 ], [ 35.224000000000103, 32.203083333333325 ], [ 35.223666666666702, 32.203083333333325 ], [ 35.223666666666702, 32.202833333333444 ], [ 35.223666666666702, 32.202750000000151 ], [ 35.223638671874994, 32.202527994791808 ], [ 35.223583333333409, 32.20241666666675 ], [ 35.224000000000103, 32.20225 ], [ 35.224000000000103, 32.202166666666699 ], [ 35.223833333333459, 32.202166666666699 ], [ 35.223833333333459, 32.202000000000112 ], [ 35.22375, 32.202000000000112 ], [ 35.22375, 32.201916666666591 ], [ 35.223666666666702, 32.201916666666591 ], [ 35.223666666666702, 32.201833333333468 ], [ 35.223583333333409, 32.201833333333468 ], [ 35.223583333333409, 32.20175 ], [ 35.223416666666594, 32.20175 ], [ 35.223368311564116, 32.201858261108327 ], [ 35.223333333333301, 32.201666666666711 ], [ 35.223196172078531, 32.201637161254894 ], [ 35.223137161254897, 32.201456192016735 ], [ 35.22354366048171, 32.201387161255013 ], [ 35.223779505411812, 32.201688151041708 ], [ 35.223666666666702, 32.20175 ], [ 35.223666666666702, 32.201833333333468 ], [ 35.22375, 32.201833333333468 ], [ 35.22375, 32.201916666666591 ], [ 35.223833333333459, 32.201916666666591 ], [ 35.223833333333459, 32.202000000000112 ], [ 35.22416666666669, 32.202083333333405 ], [ 35.224205988566212, 32.202127344767348 ], [ 35.224551966349338, 32.202286137898909 ], [ 35.225250000000131, 32.202666666666687 ], [ 35.225250000000131, 32.202750000000151 ], [ 35.225333333333424, 32.202750000000151 ], [ 35.225369633992614, 32.202797032674255 ], [ 35.225525909423766, 32.202917658487934 ], [ 35.225702967325788, 32.203213696797718 ], [ 35.226083333333463, 32.2035 ], [ 35.226119633992653, 32.203547030131119 ], [ 35.2265, 32.203833333333421 ], [ 35.227, 32.203833333333421 ], [ 35.227, 32.203916666666714 ], [ 35.227500000000134, 32.203916666666714 ], [ 35.227666666666721, 32.203916666666714 ], [ 35.228055338541651, 32.204111328125066 ], [ 35.228083333333416, 32.204166666666595 ], [ 35.228166666666709, 32.204166666666595 ], [ 35.228166666666709, 32.204250000000116 ], [ 35.22846596272791, 32.204450703938903 ], [ 35.228793721516865, 32.20472403971354 ], [ 35.228833333333455, 32.204666666666753 ], [ 35.229, 32.204666666666753 ], [ 35.229102890014644, 32.204847119649287 ], [ 35.229431254069141, 32.204723345438651 ], [ 35.229666666666674, 32.204833333333397 ], [ 35.229799296061231, 32.204867370605598 ], [ 35.229954610188827, 32.204968508402544 ], [ 35.230107045491593, 32.204934336344479 ], [ 35.230166666666605, 32.205166666666742 ], [ 35.2305, 32.205166666666742 ], [ 35.230550130208428, 32.205239270528182 ], [ 35.230916666666701, 32.205333333333328 ], [ 35.230916666666701, 32.205416666666679 ], [ 35.231083333333459, 32.205416666666679 ], [ 35.231083333333459, 32.205500000000143 ], [ 35.231166666666752, 32.205500000000143 ], [ 35.231166666666752, 32.205583333333436 ], [ 35.231297032674206, 32.20561963653563 ], [ 35.231758534749474, 32.205687835693425 ], [ 35.232205469767223, 32.205863535563196 ], [ 35.232586303710946, 32.20614588673908 ], [ 35.232666666666717, 32.20625 ], [ 35.233004791259759, 32.206344156901139 ], [ 35.233202967325894, 32.206463696797698 ], [ 35.233421798706104, 32.206553260803332 ], [ 35.233516301473117, 32.2067029698689 ], [ 35.233000000000118, 32.206500000000119 ], [ 35.23280466715488, 32.206449872334872 ], [ 35.232666666666717, 32.20625 ] ], [ [ 35.214583333333394, 32.206583333333413 ], [ 35.214583333333394, 32.206666666666706 ], [ 35.2145000000001, 32.206666666666706 ], [ 35.21441601562509, 32.206500651041608 ], [ 35.214194661458407, 32.206388671875061 ], [ 35.214166666666699, 32.206166666666718 ], [ 35.21425, 32.206166666666718 ], [ 35.21425, 32.206083333333424 ], [ 35.21425, 32.206000000000131 ], [ 35.214166666666699, 32.206000000000131 ], [ 35.214166666666699, 32.20591666666661 ], [ 35.2140515645346, 32.205845743815246 ], [ 35.2142609863281, 32.205634895324749 ], [ 35.21465131123864, 32.20583219146738 ], [ 35.214587270100935, 32.206037806193137 ], [ 35.214730209350705, 32.206269790649515 ], [ 35.214833333333445, 32.206333333333475 ], [ 35.214895467122403, 32.20645833333333 ], [ 35.214833333333445, 32.206583333333413 ], [ 35.214583333333394, 32.206583333333413 ] ], [ [ 35.215833333333421, 32.206083333333424 ], [ 35.21571890258781, 32.205991699218885 ], [ 35.215962941487703, 32.205796274821012 ], [ 35.216, 32.20566666666673 ], [ 35.216199727376363, 32.20580456542973 ], [ 35.215916666666715, 32.206000000000131 ], [ 35.215916666666715, 32.206083333333424 ], [ 35.215833333333421, 32.206083333333424 ] ], [ [ 35.21558333333337, 32.205833333333317 ], [ 35.21558333333337, 32.206000000000131 ], [ 35.215416666666727, 32.206000000000131 ], [ 35.215416666666727, 32.206083333333424 ], [ 35.215166666666676, 32.206083333333424 ], [ 35.214803075154748, 32.205895375569753 ], [ 35.214877044677678, 32.205754679361974 ], [ 35.215184005737285, 32.205638974507792 ], [ 35.21558333333337, 32.205833333333317 ] ], [ [ 35.21225, 32.205583333333436 ], [ 35.21225, 32.20566666666673 ], [ 35.212166666666803, 32.20566666666673 ], [ 35.212166666666803, 32.205583333333436 ], [ 35.21225, 32.205583333333436 ] ], [ [ 35.213630849202502, 32.205971560160322 ], [ 35.21314439392097, 32.206284792582323 ], [ 35.213000000000136, 32.206083333333424 ], [ 35.213063110351584, 32.205958574930889 ], [ 35.213305338541772, 32.205888671875073 ], [ 35.213361328125075, 32.205777994791788 ], [ 35.213666666666711, 32.20575 ], [ 35.213630849202502, 32.205971560160322 ] ], [ [ 35.234218983968105, 32.206620712280255 ], [ 35.234583333333319, 32.206583333333413 ], [ 35.234518422444751, 32.206692822774357 ], [ 35.234218983968105, 32.206620712280255 ] ], [ [ 35.234666666666612, 32.205500000000143 ], [ 35.234833333333427, 32.205416666666679 ], [ 35.234771581014058, 32.205621772766222 ], [ 35.234666666666612, 32.205500000000143 ] ], [ [ 35.235213033040452, 32.20561034901948 ], [ 35.235135650634902, 32.205317789713604 ], [ 35.235250000000121, 32.20525 ], [ 35.235213033040452, 32.20561034901948 ] ], [ [ 35.231832555135213, 32.205333920796761 ], [ 35.23175, 32.205500000000143 ], [ 35.23166666666674, 32.205500000000143 ], [ 35.23166666666674, 32.20525 ], [ 35.231832555135213, 32.205333920796761 ] ], [ [ 35.23425, 32.20525 ], [ 35.234150329589909, 32.205049484252925 ], [ 35.234310175577889, 32.204972005208447 ], [ 35.234444661458269, 32.205210700988914 ], [ 35.23425, 32.20525 ] ], [ [ 35.244916666666711, 32.20525 ], [ 35.245128417968886, 32.204965337117642 ], [ 35.245368881225659, 32.205161567688094 ], [ 35.24525, 32.20525 ], [ 35.245326395670645, 32.205448753356961 ], [ 35.244916666666711, 32.205500000000143 ], [ 35.244833333333418, 32.205500000000143 ], [ 35.244833333333418, 32.205416666666679 ], [ 35.244916666666711, 32.20525 ] ], [ [ 35.245827214558915, 32.205102432251124 ], [ 35.245718983968175, 32.204789802551375 ], [ 35.246, 32.20475 ], [ 35.246089975992845, 32.204946657816663 ], [ 35.245827214558915, 32.205102432251124 ] ], [ [ 35.247398396809842, 32.205028526306251 ], [ 35.2475, 32.205 ], [ 35.247471471150732, 32.205101603190201 ], [ 35.247398396809842, 32.205028526306251 ] ], [ [ 35.2485, 32.204666666666753 ], [ 35.248398396809989, 32.204638140360657 ], [ 35.248471471150708, 32.204565063476537 ], [ 35.2485, 32.204666666666753 ], [ 35.248774576822996, 32.204702346801866 ], [ 35.248559036255017, 32.204778750101752 ], [ 35.2485, 32.204666666666753 ] ], [ [ 35.234946924845417, 32.204719739278119 ], [ 35.235196406046668, 32.205018864949579 ], [ 35.235083333333478, 32.205083333333448 ], [ 35.23498316955579, 32.205014175415101 ], [ 35.234683497111064, 32.204569157918343 ], [ 35.234583333333319, 32.2045 ], [ 35.234416666666732, 32.204083333333472 ], [ 35.234596598307348, 32.20400272878004 ], [ 35.234698435465589, 32.204301561991372 ], [ 35.234750000000133, 32.204333333333409 ], [ 35.234946924845417, 32.204719739278119 ] ], [ [ 35.245215962727855, 32.204465962727966 ], [ 35.245284037272256, 32.20436737060561 ], [ 35.245333333333349, 32.204333333333409 ], [ 35.245473236084081, 32.204545041402241 ], [ 35.24520718383792, 32.204700703938784 ], [ 35.245049296061268, 32.204581036885656 ], [ 35.245215962727855, 32.204465962727966 ] ], [ [ 35.248065063476645, 32.204528526306092 ], [ 35.248166666666634, 32.2045 ], [ 35.248138137817307, 32.204601603190213 ], [ 35.248065063476645, 32.204528526306092 ] ], [ [ 35.237333333333311, 32.204250000000116 ], [ 35.237333333333311, 32.204416666666702 ], [ 35.23725, 32.204416666666702 ], [ 35.23725, 32.204250000000116 ], [ 35.237333333333311, 32.204250000000116 ] ], [ [ 35.248201293945328, 32.204196172078582 ], [ 35.24797049458823, 32.204042198181128 ], [ 35.248166666666634, 32.204 ], [ 35.248196172078451, 32.204053827921484 ], [ 35.248526499430398, 32.204124885559168 ], [ 35.248201293945328, 32.204196172078582 ] ], [ [ 35.237583333333419, 32.204 ], [ 35.237583333333419, 32.204166666666595 ], [ 35.237416666666604, 32.204166666666595 ], [ 35.237416666666604, 32.204083333333472 ], [ 35.237166666666724, 32.204083333333472 ], [ 35.237201212565139, 32.203809387207059 ], [ 35.237583333333419, 32.204 ] ], [ [ 35.247713699340807, 32.203842343648375 ], [ 35.24783333333346, 32.203750000000127 ], [ 35.247910059611058, 32.203945175170873 ], [ 35.247713699340807, 32.203842343648375 ] ], [ [ 35.234666666666612, 32.2035 ], [ 35.234634475708106, 32.203851097106963 ], [ 35.234515182495102, 32.203615287780792 ], [ 35.234166666666681, 32.203583333333313 ], [ 35.234166666666681, 32.2035 ], [ 35.234083333333331, 32.2035 ], [ 35.234021133422914, 32.203257631937674 ], [ 35.233534037272079, 32.203132629394645 ], [ 35.2335, 32.202916666666738 ], [ 35.2335, 32.202833333333444 ], [ 35.23375, 32.202833333333444 ], [ 35.234137161254864, 32.202862838745261 ], [ 35.234206604003987, 32.203185668945309 ], [ 35.234438944498777, 32.203361386617019 ], [ 35.2345, 32.203250000000139 ], [ 35.234583333333319, 32.203250000000139 ], [ 35.234750000000133, 32.203250000000139 ], [ 35.234816197713201, 32.203383178711022 ], [ 35.234694661458377, 32.203444661458263 ], [ 35.234666666666612, 32.2035 ] ], [ [ 35.236833333333323, 32.202833333333444 ], [ 35.23661132812498, 32.202805338541737 ], [ 35.236555338541734, 32.202653966267917 ], [ 35.236804036458352, 32.20277542114269 ], [ 35.236833333333323, 32.202833333333444 ], [ 35.237369745890362, 32.203007400512774 ], [ 35.237112762451204, 32.203124165852955 ], [ 35.236833333333323, 32.202833333333444 ] ], [ [ 35.237315063476558, 32.202861862182601 ], [ 35.237416666666604, 32.202833333333444 ], [ 35.237388137817447, 32.202934936523491 ], [ 35.237315063476558, 32.202861862182601 ] ], [ [ 35.23625, 32.202583333333394 ], [ 35.236083333333454, 32.2025 ], [ 35.235886840820342, 32.202449574788488 ], [ 35.235632629394559, 32.202284037272193 ], [ 35.235034037272214, 32.202132629394669 ], [ 35.235, 32.202083333333405 ], [ 35.235, 32.202000000000112 ], [ 35.235083333333478, 32.202000000000112 ], [ 35.235428268432656, 32.201864400227976 ], [ 35.235657185872469, 32.20189822896333 ], [ 35.235828582763645, 32.202316996256513 ], [ 35.23613779703777, 32.202271301269548 ], [ 35.23625, 32.20241666666675 ], [ 35.23625, 32.202583333333394 ], [ 35.236416666666685, 32.202583333333394 ], [ 35.236333333333334, 32.202699600219773 ], [ 35.23625, 32.202583333333394 ] ], [ [ 35.23175, 32.202666666666687 ], [ 35.231833333333327, 32.202833333333444 ], [ 35.231784693400186, 32.202933497110962 ], [ 35.231472757975325, 32.202880101521885 ], [ 35.231566853841173, 32.202702448526964 ], [ 35.23175, 32.202666666666687 ] ], [ [ 35.228000000000122, 32.202666666666687 ], [ 35.227966618855874, 32.202856043497661 ], [ 35.227891693115225, 32.202713012695369 ], [ 35.228000000000122, 32.202666666666687 ] ], [ [ 35.225916666666706, 32.202666666666687 ], [ 35.226014216105114, 32.202862915039077 ], [ 35.225880249023419, 32.202944661458275 ], [ 35.225805338541647, 32.202722986857111 ], [ 35.225916666666706, 32.202666666666687 ] ], [ [ 35.234416666666732, 32.202666666666687 ], [ 35.234416666666732, 32.20241666666675 ], [ 35.234582555135205, 32.202500584920244 ], [ 35.2345, 32.202666666666687 ], [ 35.234416666666732, 32.202666666666687 ] ], [ [ 35.235148396809905, 32.202445195516077 ], [ 35.235250000000121, 32.20241666666675 ], [ 35.235221471150794, 32.202518269856796 ], [ 35.235148396809905, 32.202445195516077 ] ], [ [ 35.232522674560641, 32.202372385660908 ], [ 35.232317871093869, 32.202618937174464 ], [ 35.232045522053966, 32.202517298380599 ], [ 35.232285954793326, 32.202317576090479 ], [ 35.232371144612614, 32.202121144612647 ], [ 35.232416666666609, 32.202083333333405 ], [ 35.23304929606121, 32.202049296061205 ], [ 35.233119552612322, 32.201775522867933 ], [ 35.233424647013464, 32.20197419230152 ], [ 35.233588038126754, 32.202210845947377 ], [ 35.233034037272091, 32.202284037272193 ], [ 35.233000000000118, 32.202333333333456 ], [ 35.232522674560641, 32.202372385660908 ] ], [ [ 35.234333333333439, 32.20225 ], [ 35.234277013142957, 32.202138671874934 ], [ 35.233944661458281, 32.202194661458407 ], [ 35.23383333333345, 32.20225 ], [ 35.233806091308622, 32.202193908691527 ], [ 35.233643692016585, 32.202115041097102 ], [ 35.234, 32.202083333333405 ], [ 35.234297032674249, 32.201963699340922 ], [ 35.234333333333439, 32.201916666666591 ], [ 35.234666666666612, 32.201916666666591 ], [ 35.234666666666612, 32.202000000000112 ], [ 35.234416666666732, 32.202000000000112 ], [ 35.234416666666732, 32.20225 ], [ 35.234333333333439, 32.20225 ] ], [ [ 35.236711842854845, 32.20210568745938 ], [ 35.236549296061241, 32.201721908569311 ], [ 35.23675, 32.201583333333417 ], [ 35.236711842854845, 32.20210568745938 ] ], [ [ 35.228083333333416, 32.201500000000124 ], [ 35.228002868652425, 32.201813552856493 ], [ 35.227598688761475, 32.201950703938792 ], [ 35.227648605346815, 32.20172802734379 ], [ 35.228083333333416, 32.201500000000124 ] ], [ [ 35.225750000000119, 32.201583333333417 ], [ 35.225826726277717, 32.201778508504162 ], [ 35.225630366007408, 32.201675674438491 ], [ 35.225750000000119, 32.201583333333417 ] ], [ [ 35.224416666666741, 32.201916666666591 ], [ 35.224388137817414, 32.202018269856808 ], [ 35.224315063476524, 32.201945195515918 ], [ 35.224416666666741, 32.201916666666591 ] ], [ [ 35.227823079427139, 32.202064615885547 ], [ 35.227916666666601, 32.202000000000112 ], [ 35.228117370605446, 32.202299296061256 ], [ 35.228353754679347, 32.202462504069103 ], [ 35.227799296061278, 32.202497701009179 ], [ 35.228010253906291, 32.202352050781315 ], [ 35.227823079427139, 32.202064615885547 ] ], [ [ 35.229398396809813, 32.201861862182625 ], [ 35.2295, 32.201833333333468 ], [ 35.229471471150703, 32.201934936523514 ], [ 35.229398396809813, 32.201861862182625 ] ], [ [ 35.228288055419966, 32.201522476196317 ], [ 35.228141693115276, 32.201450444539375 ], [ 35.228333333333467, 32.201416666666603 ], [ 35.228288055419966, 32.201522476196317 ] ], [ [ 35.230333333333419, 32.203166666666675 ], [ 35.230304804484092, 32.203268269856892 ], [ 35.230231730143373, 32.203195192972942 ], [ 35.230333333333419, 32.203166666666675 ] ], [ [ 35.230666666666593, 32.203333333333433 ], [ 35.230666666666593, 32.2035 ], [ 35.230416666666713, 32.2035 ], [ 35.230416666666713, 32.203333333333433 ], [ 35.230666666666593, 32.203333333333433 ] ], [ [ 35.233388671875048, 32.203368387858063 ], [ 35.233666666666693, 32.203333333333433 ], [ 35.233733016967733, 32.203466812133911 ], [ 35.233603276570648, 32.203527994791784 ], [ 35.233388671875048, 32.203368387858063 ] ], [ [ 35.233541666666611, 32.203809936523385 ], [ 35.233583333333399, 32.203916666666714 ], [ 35.233689651489271, 32.203958333333446 ], [ 35.23352346293143, 32.204023462931332 ], [ 35.2335, 32.204083333333472 ], [ 35.233416666666756, 32.204083333333472 ], [ 35.233416666666756, 32.204 ], [ 35.233416666666756, 32.203916666666714 ], [ 35.2335, 32.203916666666714 ], [ 35.233541666666611, 32.203809936523385 ] ], [ [ 35.234053217569965, 32.204373301188184 ], [ 35.234, 32.2045 ], [ 35.233777994791694, 32.204388671874938 ], [ 35.233722005208449, 32.204205965677943 ], [ 35.233916666666744, 32.204166666666595 ], [ 35.234053217569965, 32.204373301188184 ] ], [ [ 35.231833333333327, 32.20458333333346 ], [ 35.231794871012369, 32.204827384948828 ], [ 35.231618733723963, 32.204950703938891 ], [ 35.231465962727953, 32.204677609761575 ], [ 35.231833333333327, 32.20458333333346 ] ], [ [ 35.233630366007503, 32.20482333119719 ], [ 35.23383333333345, 32.204666666666753 ], [ 35.233785954793234, 32.204945554097606 ], [ 35.233630366007503, 32.20482333119719 ] ], [ [ 35.23250000000013, 32.20458333333346 ], [ 35.232466618855881, 32.204772710164491 ], [ 35.232391693115233, 32.204629681905203 ], [ 35.23250000000013, 32.20458333333346 ] ], [ [ 35.24375, 32.20525 ], [ 35.243705276489379, 32.205445604960175 ], [ 35.243468983968171, 32.205289802551363 ], [ 35.24375, 32.20525 ] ], [ [ 35.222166666666737, 32.201333333333309 ], [ 35.222121388753237, 32.201439142863023 ], [ 35.221975026448547, 32.201367111206082 ], [ 35.222166666666737, 32.201333333333309 ] ], [ [ 35.222284978230846, 32.201358261108396 ], [ 35.22225, 32.201166666666722 ], [ 35.222363062540694, 32.20097595214844 ], [ 35.222447682698544, 32.201182210286447 ], [ 35.222333333333381, 32.20125 ], [ 35.222284978230846, 32.201358261108396 ] ], [ [ 35.228898396809825, 32.201111862182756 ], [ 35.229, 32.201083333333429 ], [ 35.228971471150714, 32.201184936523475 ], [ 35.228898396809825, 32.201111862182756 ] ], [ [ 35.221624165852859, 32.201790832519578 ], [ 35.221333333333405, 32.201916666666591 ], [ 35.221291666666673, 32.201809936523489 ], [ 35.221250000000111, 32.201916666666591 ], [ 35.221050231933646, 32.201817367553701 ], [ 35.221, 32.201916666666591 ], [ 35.220939366658627, 32.201992385864287 ], [ 35.220333333333429, 32.201916666666591 ], [ 35.220292500813855, 32.201874165852871 ], [ 35.219957499186137, 32.201792500813895 ], [ 35.21987583414716, 32.201710357665945 ], [ 35.222918558756476, 32.20160393778491 ], [ 35.22304083251953, 32.201664850870827 ], [ 35.221624165852859, 32.201790832519578 ] ], [ [ 35.216200703938853, 32.201950703938792 ], [ 35.216166666666652, 32.202000000000112 ], [ 35.21600115966794, 32.20191627502453 ], [ 35.216109217325879, 32.201695017496831 ], [ 35.216443679809515, 32.201638671875003 ], [ 35.2165, 32.20175 ], [ 35.216200703938853, 32.201950703938792 ] ], [ [ 35.223000000000127, 32.202083333333405 ], [ 35.223158365885524, 32.201885569254671 ], [ 35.22325, 32.202000000000112 ], [ 35.223449254353852, 32.2020511322022 ], [ 35.22308333333342, 32.20225 ], [ 35.22308333333342, 32.2025 ], [ 35.22308333333342, 32.202583333333394 ], [ 35.223000000000127, 32.202583333333394 ], [ 35.223066197713194, 32.202716512044276 ], [ 35.223000000000127, 32.202750000000151 ], [ 35.223000000000127, 32.203 ], [ 35.222916666666663, 32.203 ], [ 35.222687937418641, 32.202961146036785 ], [ 35.22275, 32.202583333333394 ], [ 35.222916666666663, 32.202583333333394 ], [ 35.222916666666663, 32.202083333333405 ], [ 35.223000000000127, 32.202083333333405 ] ], [ [ 35.219246622721471, 32.202579198201647 ], [ 35.219181564331109, 32.202869415283317 ], [ 35.219395996093795, 32.203017471313501 ], [ 35.219333333333452, 32.203166666666675 ], [ 35.219240137736108, 32.203274836222477 ], [ 35.218666666666707, 32.203333333333433 ], [ 35.218592193603627, 32.203156028747685 ], [ 35.218791249593096, 32.20285034688311 ], [ 35.218872390747151, 32.202335505167753 ], [ 35.219246622721471, 32.202579198201647 ] ], [ [ 35.218166666666718, 32.203250000000139 ], [ 35.218166666666718, 32.203416666666726 ], [ 35.218000000000131, 32.203416666666726 ], [ 35.218000000000131, 32.203583333333313 ], [ 35.217935384114696, 32.203676920573002 ], [ 35.217481618245529, 32.203381431579714 ], [ 35.217333333333386, 32.203166666666675 ], [ 35.217391245524141, 32.203137369791705 ], [ 35.217478739420699, 32.202958211263137 ], [ 35.217416666666679, 32.202833333333444 ], [ 35.217583333333437, 32.202750000000151 ], [ 35.217873413086011, 32.202841837565245 ], [ 35.217793253580851, 32.202959920247395 ], [ 35.217629328409828, 32.203111808776839 ], [ 35.217916666666667, 32.203166666666675 ], [ 35.218055338541717, 32.203194661458383 ], [ 35.218166666666718, 32.203250000000139 ] ], [ [ 35.216550740560024, 32.203379358927407 ], [ 35.216711878458796, 32.203720799764085 ], [ 35.216876586913997, 32.203873410542883 ], [ 35.217, 32.204083333333472 ], [ 35.217037058512346, 32.20412960815429 ], [ 35.217364430745477, 32.204267557780042 ], [ 35.21712039184581, 32.204370391845714 ], [ 35.217046274820916, 32.204462941487634 ], [ 35.217, 32.2045 ], [ 35.216833333333398, 32.20458333333346 ], [ 35.216750000000104, 32.20458333333346 ], [ 35.216699768066462, 32.204682632446406 ], [ 35.2165, 32.20458333333346 ], [ 35.216333333333409, 32.20458333333346 ], [ 35.216250000000116, 32.20458333333346 ], [ 35.216250000000116, 32.2045 ], [ 35.216250000000116, 32.204416666666702 ], [ 35.216166666666652, 32.204416666666702 ], [ 35.216125045776437, 32.204203478495401 ], [ 35.215872497558735, 32.20396083323169 ], [ 35.215709167480554, 32.20379083251953 ], [ 35.21554692077649, 32.203634951273671 ], [ 35.215916666666715, 32.203583333333313 ], [ 35.216, 32.203467066446876 ], [ 35.216083333333302, 32.203583333333313 ], [ 35.216550740560024, 32.203379358927407 ] ], [ [ 35.211166666666657, 32.204250000000116 ], [ 35.211138140360504, 32.204351603190105 ], [ 35.21106506347661, 32.204278526306211 ], [ 35.211166666666657, 32.204250000000116 ] ], [ [ 35.215733606974368, 32.204551340738931 ], [ 35.215559539794981, 32.204611328124997 ], [ 35.215472005208312, 32.204455965677823 ], [ 35.215666666666664, 32.204416666666702 ], [ 35.215733606974368, 32.204551340738931 ] ], [ [ 35.212269119262714, 32.204540153503444 ], [ 35.212125188191749, 32.204606796264784 ], [ 35.212083333333283, 32.2045 ], [ 35.212166666666803, 32.2045 ], [ 35.212269119262714, 32.204540153503444 ] ], [ [ 35.225472005208303, 32.204055338541764 ], [ 35.225541880289825, 32.20381321461997 ], [ 35.225750000000119, 32.203916666666714 ], [ 35.225980916341257, 32.203953997294207 ], [ 35.22611812337243, 32.204117925008063 ], [ 35.225526473999025, 32.204236539204942 ], [ 35.225416666666717, 32.204083333333472 ], [ 35.225472005208303, 32.204055338541764 ] ], [ [ 35.220217473347986, 32.203740837097143 ], [ 35.220333333333429, 32.203666666666606 ], [ 35.220333333333429, 32.203583333333313 ], [ 35.220583333333309, 32.203583333333313 ], [ 35.220583333333309, 32.203666666666606 ], [ 35.220780685424813, 32.203714520772394 ], [ 35.220217473347986, 32.203740837097143 ] ], [ [ 35.2195, 32.2035 ], [ 35.2195, 32.203416666666726 ], [ 35.219693695068429, 32.203458333333458 ], [ 35.2195, 32.2035 ] ], [ [ 35.221111862182624, 32.203434936523479 ], [ 35.221083333333297, 32.203333333333433 ], [ 35.221184936523514, 32.203361859639529 ], [ 35.221111862182624, 32.203434936523479 ] ], [ [ 35.221717473348122, 32.203217473347991 ], [ 35.222, 32.203083333333325 ], [ 35.222106480916352, 32.20332614390054 ], [ 35.22138414001472, 32.20329829915363 ], [ 35.221717473348122, 32.203217473347991 ] ], [ [ 35.222166666666737, 32.202916666666738 ], [ 35.222166666666737, 32.202833333333444 ], [ 35.22225, 32.202833333333444 ], [ 35.22225, 32.202916666666738 ], [ 35.222166666666737, 32.202916666666738 ] ], [ [ 35.211459434509322, 32.204770652771117 ], [ 35.211611328125059, 32.204859367370716 ], [ 35.2115, 32.205083333333448 ], [ 35.211202969869021, 32.204963696797734 ], [ 35.211166666666657, 32.204916666666691 ], [ 35.211166666666657, 32.204833333333397 ], [ 35.211250000000121, 32.204833333333397 ], [ 35.211333333333414, 32.204833333333397 ], [ 35.211459434509322, 32.204770652771117 ] ], [ [ 35.228047032674226, 32.205092343648232 ], [ 35.228166666666709, 32.205 ], [ 35.228243392944478, 32.205195175170957 ], [ 35.228047032674226, 32.205092343648232 ] ], [ [ 35.225481730143258, 32.204861859639493 ], [ 35.225583333333304, 32.204833333333397 ], [ 35.225554804483977, 32.204934936523387 ], [ 35.225481730143258, 32.204861859639493 ] ], [ [ 35.211416666666707, 32.205416666666679 ], [ 35.211388140360611, 32.205518269856896 ], [ 35.211315063476661, 32.205445192972945 ], [ 35.211416666666707, 32.205416666666679 ] ], [ [ 35.218333333333305, 32.201416666666603 ], [ 35.218227162679, 32.20122297159827 ], [ 35.218166666666718, 32.201333333333309 ], [ 35.218049296061224, 32.20125229899088 ], [ 35.218138442993222, 32.200966476440556 ], [ 35.218416666666656, 32.201083333333429 ], [ 35.218416666666656, 32.20125 ], [ 35.218666666666707, 32.20125 ], [ 35.218583333333413, 32.201416666666603 ], [ 35.21850000000012, 32.20153293355304 ], [ 35.218416666666656, 32.201416666666603 ], [ 35.218333333333305, 32.201416666666603 ] ], [ [ 35.219416666666746, 32.20075 ], [ 35.219448008219388, 32.200658131917294 ], [ 35.219601552327504, 32.20080639139826 ], [ 35.219416666666746, 32.200833333333321 ], [ 35.219416666666746, 32.20075 ] ], [ [ 35.234166666666681, 32.20025 ], [ 35.233968902587947, 32.200091634114699 ], [ 35.234083333333331, 32.2 ], [ 35.234138671875087, 32.20011132812499 ], [ 35.234166666666681, 32.20025 ], [ 35.23425, 32.20025 ], [ 35.234291666666707, 32.200143269856767 ], [ 35.234333333333439, 32.20025 ], [ 35.234333333333439, 32.20033333333339 ], [ 35.234197153727337, 32.200401026407974 ], [ 35.234166666666681, 32.20025 ] ], [ [ 35.238731730143229, 32.200278528849367 ], [ 35.238833333333446, 32.20025 ], [ 35.238804804484118, 32.200351603190086 ], [ 35.238731730143229, 32.200278528849367 ] ], [ [ 35.236873062133839, 32.200193354288842 ], [ 35.236549296061241, 32.200010945638155 ], [ 35.236916666666616, 32.199916666666695 ], [ 35.236873062133839, 32.200193354288842 ] ], [ [ 35.239026713053306, 32.200179438273096 ], [ 35.238793253580752, 32.199972045898562 ], [ 35.23929325358074, 32.199876586914172 ], [ 35.239416666666727, 32.199833333333402 ], [ 35.239460876464875, 32.19995947265636 ], [ 35.239290079752607, 32.200040079752682 ], [ 35.239026713053306, 32.200179438273096 ] ], [ [ 35.239972005208301, 32.199872629801519 ], [ 35.240166666666767, 32.199833333333402 ], [ 35.240269541422606, 32.200040288289472 ], [ 35.240045150756941, 32.20011132812499 ], [ 35.239972005208301, 32.199872629801519 ] ], [ [ 35.237500000000125, 32.199833333333402 ], [ 35.237442962646583, 32.20003282165527 ], [ 35.237296274820949, 32.199891581217571 ], [ 35.237500000000125, 32.199833333333402 ] ], [ [ 35.221916666666687, 32.199750000000108 ], [ 35.221871388753357, 32.199855809529765 ], [ 35.221725026448667, 32.199783777872653 ], [ 35.221916666666687, 32.199750000000108 ] ], [ [ 35.240458521525113, 32.199773462931432 ], [ 35.240416666666704, 32.199666666666587 ], [ 35.240298411051413, 32.199557093302531 ], [ 35.240406143188579, 32.19929325358072 ], [ 35.240706746419278, 32.199468983968131 ], [ 35.240540079752634, 32.199623413085988 ], [ 35.2405, 32.199666666666587 ], [ 35.240602452596079, 32.199706817627032 ], [ 35.240458521525113, 32.199773462931432 ] ], [ [ 35.240950958252085, 32.199369633992603 ], [ 35.240797032674152, 32.199232213338348 ], [ 35.241166666666743, 32.199083333333306 ], [ 35.241234161377008, 32.199255025227956 ], [ 35.240950958252085, 32.199369633992603 ] ], [ [ 35.2255, 32.199 ], [ 35.225471471150854, 32.199101603190229 ], [ 35.225398396809965, 32.19902852884934 ], [ 35.2255, 32.199 ] ], [ [ 35.224000000000103, 32.199 ], [ 35.224000000000103, 32.199083333333306 ], [ 35.223777994791703, 32.19911132812507 ], [ 35.223666666666702, 32.199166666666599 ], [ 35.223666666666702, 32.199 ], [ 35.224000000000103, 32.199 ] ], [ [ 35.224544764200914, 32.199093368530328 ], [ 35.224632787068686, 32.199030832926439 ], [ 35.225166666666667, 32.199083333333306 ], [ 35.225061645507935, 32.199205235799241 ], [ 35.224544764200914, 32.199093368530328 ] ], [ [ 35.225638137817498, 32.199018269856765 ], [ 35.225565063476608, 32.198945195516046 ], [ 35.225666666666598, 32.198916666666719 ], [ 35.225638137817498, 32.199018269856765 ] ], [ [ 35.226049952189214, 32.198939376831163 ], [ 35.225975026448623, 32.198796346028644 ], [ 35.226083333333463, 32.198750000000132 ], [ 35.226049952189214, 32.198939376831163 ] ], [ [ 35.240725026448672, 32.198867111206198 ], [ 35.240916666666692, 32.198833333333425 ], [ 35.240871388753362, 32.198939142863082 ], [ 35.240725026448672, 32.198867111206198 ] ], [ [ 35.220666666666659, 32.198750000000132 ], [ 35.220638137817502, 32.198851603190178 ], [ 35.220565063476613, 32.198778528849289 ], [ 35.220666666666659, 32.198750000000132 ] ], [ [ 35.220416666666722, 32.198750000000132 ], [ 35.220483606974426, 32.19888467407236 ], [ 35.220309539794926, 32.198944661458256 ], [ 35.220222005208427, 32.198789296468249 ], [ 35.220416666666722, 32.198750000000132 ] ], [ [ 35.22225, 32.199 ], [ 35.222296091715577, 32.198804311116589 ], [ 35.222416666666675, 32.199 ], [ 35.22225, 32.199 ] ], [ [ 35.222333333333381, 32.1995 ], [ 35.22241284688323, 32.199677500406892 ], [ 35.222134897867761, 32.199622268676762 ], [ 35.222333333333381, 32.1995 ] ], [ [ 35.222083333333444, 32.199666666666587 ], [ 35.222054804484117, 32.199768269856804 ], [ 35.221981730143227, 32.199695195515915 ], [ 35.222083333333444, 32.199666666666587 ] ], [ [ 35.217077295939248, 32.199427836100256 ], [ 35.217, 32.199583333333464 ], [ 35.216944661458399, 32.199555338541757 ], [ 35.216833333333398, 32.199333333333414 ], [ 35.216869166056313, 32.199262502034514 ], [ 35.217077295939248, 32.199427836100256 ] ], [ [ 35.219125834147121, 32.198292500813864 ], [ 35.219286087036267, 32.198125706990652 ], [ 35.219416666666746, 32.198083333333386 ], [ 35.21954134623212, 32.198377034505199 ], [ 35.219652308146237, 32.198261540730812 ], [ 35.219942454020156, 32.198411010742291 ], [ 35.21969936116534, 32.198624165852948 ], [ 35.219372548421347, 32.198455810546875 ], [ 35.218894404093476, 32.198702123006171 ], [ 35.218709167480597, 32.198565678914463 ], [ 35.219125834147121, 32.198292500813864 ] ], [ [ 35.226981730143223, 32.198528528849351 ], [ 35.227083333333439, 32.1985 ], [ 35.227054804484112, 32.198601603190241 ], [ 35.226981730143223, 32.198528528849351 ] ], [ [ 35.229450764974047, 32.198371902465851 ], [ 35.228878097534164, 32.197811793009464 ], [ 35.229083333333392, 32.19775 ], [ 35.229472045898433, 32.19821801249185 ], [ 35.229450764974047, 32.198371902465851 ] ], [ [ 35.240804585774697, 32.198286219279112 ], [ 35.241083333333449, 32.198250000000144 ], [ 35.241026865641402, 32.198357203165756 ], [ 35.240804585774697, 32.198286219279112 ] ], [ [ 35.243334304809707, 32.198125000000118 ], [ 35.243633682250902, 32.197973551432256 ], [ 35.243666666666627, 32.198333333333437 ], [ 35.243706746419321, 32.198376586914094 ], [ 35.243847325642946, 32.198506846110035 ], [ 35.243459920247403, 32.1984476826986 ], [ 35.243583333333333, 32.198333333333437 ], [ 35.243527343750088, 32.198222656249925 ], [ 35.243334304809707, 32.198125000000118 ] ], [ [ 35.244148396809919, 32.197861862182606 ], [ 35.244250000000136, 32.197833333333449 ], [ 35.244221471150809, 32.197934936523495 ], [ 35.244148396809919, 32.197861862182606 ] ], [ [ 35.22975, 32.197833333333449 ], [ 35.229583333333323, 32.197500000000105 ], [ 35.229636408488091, 32.197469741821351 ], [ 35.229696924845371, 32.197363591512044 ], [ 35.229969741821321, 32.197303075154764 ], [ 35.230030258178772, 32.196780258178762 ], [ 35.230304387410399, 32.196636408488018 ], [ 35.230480865478512, 32.196945927937918 ], [ 35.230306676228963, 32.197318745931057 ], [ 35.230419408162447, 32.197617818196704 ], [ 35.230278945922919, 32.197696924845388 ], [ 35.230033467610781, 32.197515797933022 ], [ 35.229969741821321, 32.197803075154752 ], [ 35.22975, 32.197833333333449 ] ], [ [ 35.232831756591906, 32.197032292684014 ], [ 35.232548543294286, 32.196886484781885 ], [ 35.23275, 32.196833333333302 ], [ 35.232831756591906, 32.197032292684014 ] ], [ [ 35.231583333333447, 32.196666666666715 ], [ 35.231583333333447, 32.197000000000116 ], [ 35.231416666666689, 32.197000000000116 ], [ 35.231416666666689, 32.196666666666715 ], [ 35.231583333333447, 32.196666666666715 ] ], [ [ 35.237133285522475, 32.196689376831159 ], [ 35.237058359781997, 32.19654634602864 ], [ 35.237166666666724, 32.196500000000128 ], [ 35.237133285522475, 32.196689376831159 ] ], [ [ 35.230099477132171, 32.196455200195373 ], [ 35.229440943400107, 32.19655104573576 ], [ 35.229259216308549, 32.196324117024744 ], [ 35.22911284891768, 32.196206904093458 ], [ 35.229303817749155, 32.196126429239996 ], [ 35.229145935058568, 32.19600000000014 ], [ 35.22930199178063, 32.195875030517527 ], [ 35.229916666666725, 32.195833333333383 ], [ 35.230139470418351, 32.196133682251002 ], [ 35.230099477132171, 32.196455200195373 ] ], [ [ 35.230916666666701, 32.196166666666727 ], [ 35.230810857137044, 32.196121388753397 ], [ 35.230882888793928, 32.195975026448536 ], [ 35.230916666666701, 32.196166666666727 ], [ 35.231018269856747, 32.196195195516054 ], [ 35.230945195516028, 32.196268269856773 ], [ 35.230916666666701, 32.196166666666727 ] ], [ [ 35.231378855387391, 32.196214157104635 ], [ 35.23175, 32.196166666666727 ], [ 35.231867279052835, 32.196478780110795 ], [ 35.231599436441968, 32.196451482137149 ], [ 35.231378855387391, 32.196214157104635 ] ], [ [ 35.237649225870882, 32.196283721923805 ], [ 35.237916666666763, 32.19625 ], [ 35.237984715779589, 32.196386896769354 ], [ 35.237570632934649, 32.196444661458372 ], [ 35.237649225870882, 32.196283721923805 ] ], [ [ 35.238388137817424, 32.196268269856773 ], [ 35.238315063476534, 32.196195195516054 ], [ 35.238416666666751, 32.196166666666727 ], [ 35.238388137817424, 32.196268269856773 ] ], [ [ 35.24341926574715, 32.196195785522491 ], [ 35.243125834147065, 32.196035964965915 ], [ 35.24325, 32.195916666666676 ], [ 35.24341926574715, 32.196195785522491 ] ], [ [ 35.23811737060538, 32.195867370605583 ], [ 35.238038665771455, 32.195981358846097 ], [ 35.237965962727856, 32.195739557902016 ], [ 35.23825, 32.195666666666739 ], [ 35.238215962727963, 32.195799296061182 ], [ 35.23811737060538, 32.195867370605583 ] ], [ [ 35.242222005208305, 32.19572298685722 ], [ 35.242388671875062, 32.195638671875031 ], [ 35.242444661458364, 32.195361328125102 ], [ 35.2425, 32.195333333333394 ], [ 35.242665964762352, 32.195666041056427 ], [ 35.242306813557946, 32.195847727457817 ], [ 35.242222005208305, 32.19572298685722 ] ], [ [ 35.242797785441212, 32.195519536336235 ], [ 35.24304017639173, 32.195450902303037 ], [ 35.243499094645131, 32.195529912312963 ], [ 35.243618881225643, 32.195368881225647 ], [ 35.243833333333441, 32.195333333333394 ], [ 35.243910237630246, 32.195524653116877 ], [ 35.243452214558999, 32.195618881225528 ], [ 35.243372385660848, 32.195819768269985 ], [ 35.243047785441092, 32.195618881225528 ], [ 35.242797785441212, 32.195519536336235 ] ], [ [ 35.241833333333318, 32.195333333333394 ], [ 35.24175, 32.195333333333394 ], [ 35.24175, 32.195250000000101 ], [ 35.241648396809978, 32.195221471150774 ], [ 35.241721471150697, 32.195148396809884 ], [ 35.24175, 32.195250000000101 ], [ 35.241833333333318, 32.195250000000101 ], [ 35.241833333333318, 32.195333333333394 ], [ 35.242023488362634, 32.195437566121484 ], [ 35.241875534057669, 32.195529505411798 ], [ 35.241833333333318, 32.195333333333394 ] ], [ [ 35.23825, 32.195416666666688 ], [ 35.238221471150837, 32.195518269856905 ], [ 35.238148396809947, 32.195445195516015 ], [ 35.23825, 32.195416666666688 ] ], [ [ 35.230416666666713, 32.195416666666688 ], [ 35.230388137817386, 32.195518269856905 ], [ 35.230315063476667, 32.195445195516015 ], [ 35.230416666666713, 32.195416666666688 ] ], [ [ 35.229833333333431, 32.195333333333394 ], [ 35.229804804484104, 32.195434936523441 ], [ 35.229731730143214, 32.195361862182722 ], [ 35.229833333333431, 32.195333333333394 ] ], [ [ 35.22775, 32.195250000000101 ], [ 35.227648396809968, 32.195221471150774 ], [ 35.227721471150858, 32.195148396809884 ], [ 35.22775, 32.195250000000101 ], [ 35.22790353393566, 32.195173680623498 ], [ 35.22802799479166, 32.195363296508788 ], [ 35.227848475138273, 32.195444661458396 ], [ 35.22775, 32.195250000000101 ] ], [ [ 35.22675, 32.195416666666688 ], [ 35.226818074544269, 32.195515258789214 ], [ 35.226965962727945, 32.195617370605476 ], [ 35.227004358927388, 32.195867370605583 ], [ 35.226602905273467, 32.19577737426772 ], [ 35.226465962727957, 32.195489557902135 ], [ 35.22675, 32.195416666666688 ] ], [ [ 35.215333333333433, 32.195500000000152 ], [ 35.215305338541725, 32.195638671875031 ], [ 35.215069814046331, 32.195757817586298 ], [ 35.214805338541737, 32.195531316121389 ], [ 35.215333333333433, 32.195500000000152 ] ], [ [ 35.220833333333417, 32.19575 ], [ 35.220833333333417, 32.19600000000014 ], [ 35.220713277181005, 32.196173878987622 ], [ 35.220416666666722, 32.19625 ], [ 35.220477345784445, 32.195892812093234 ], [ 35.220750000000123, 32.19600000000014 ], [ 35.220750000000123, 32.195833333333383 ], [ 35.220583333333309, 32.195833333333383 ], [ 35.220583333333309, 32.195666666666739 ], [ 35.220722005208358, 32.195694661458333 ], [ 35.220833333333417, 32.19575 ] ], [ [ 35.221064839680992, 32.196340916951499 ], [ 35.221016245524027, 32.196131118774474 ], [ 35.221353378295873, 32.196339767456095 ], [ 35.221250000000111, 32.196416666666664 ], [ 35.221208333333379, 32.196610361735168 ], [ 35.221166666666591, 32.196416666666664 ], [ 35.221064839680992, 32.196340916951499 ] ], [ [ 35.218604532877748, 32.196464452107818 ], [ 35.218892135620251, 32.196650466919039 ], [ 35.21886375427249, 32.196815317789799 ], [ 35.219000000000108, 32.196916666666596 ], [ 35.219083333333401, 32.196916666666596 ], [ 35.219194010416686, 32.19686067708335 ], [ 35.21925, 32.19675 ], [ 35.21948273213718, 32.196633290608702 ], [ 35.219403966267976, 32.196472005208363 ], [ 35.219888671875026, 32.196527994791666 ], [ 35.22, 32.196583333333422 ], [ 35.220117370605578, 32.196799296061272 ], [ 35.220250000000135, 32.197000000000116 ], [ 35.220181788126638, 32.197085179646876 ], [ 35.2195, 32.197000000000116 ], [ 35.219416666666746, 32.19688373311368 ], [ 35.219333333333452, 32.197000000000116 ], [ 35.219305338541744, 32.197222005208459 ], [ 35.219139322916647, 32.197305989583469 ], [ 35.219083333333401, 32.197416666666754 ], [ 35.218972005208343, 32.197361328125055 ], [ 35.21875, 32.197333333333461 ], [ 35.218666666666707, 32.197333333333461 ], [ 35.218666666666707, 32.197416666666754 ], [ 35.21854344685886, 32.197361465454094 ], [ 35.218375, 32.197413935343548 ], [ 35.218280380249098, 32.197136286417788 ], [ 35.218024078369126, 32.197048940022796 ], [ 35.218083333333425, 32.196916666666596 ], [ 35.218217798868864, 32.196674097696928 ], [ 35.218612035115541, 32.196741968790718 ], [ 35.218632171630929, 32.196625 ], [ 35.218604532877748, 32.196464452107818 ] ], [ [ 35.218319498698008, 32.196303878784306 ], [ 35.218448435465575, 32.196588892618877 ], [ 35.21825, 32.196500000000128 ], [ 35.21814326985691, 32.196458333333396 ], [ 35.21825, 32.196416666666664 ], [ 35.218319498698008, 32.196303878784306 ] ], [ [ 35.228138671875001, 32.197348475138426 ], [ 35.228333333333467, 32.19725 ], [ 35.228399531046591, 32.197383178710879 ], [ 35.228200124104944, 32.197484054565393 ], [ 35.228138671875001, 32.197348475138426 ] ], [ [ 35.223635772705165, 32.197467905680355 ], [ 35.22411743164065, 32.197665832519533 ], [ 35.224000000000103, 32.19775 ], [ 35.223833333333459, 32.197833333333449 ], [ 35.223583333333409, 32.197833333333449 ], [ 35.223583333333409, 32.197666666666692 ], [ 35.223635772705165, 32.197467905680355 ] ], [ [ 35.219083333333401, 32.197500000000105 ], [ 35.219529942830491, 32.197684697469128 ], [ 35.219271687825596, 32.197871902465863 ], [ 35.219166666666695, 32.19775 ], [ 35.219083333333401, 32.19775 ], [ 35.219083333333401, 32.197666666666692 ], [ 35.219083333333401, 32.197500000000105 ] ], [ [ 35.221463699340802, 32.197898880005027 ], [ 35.221833333333393, 32.19775 ], [ 35.221833333333393, 32.197916666666742 ], [ 35.221916666666687, 32.197916666666742 ], [ 35.221860677083384, 32.198027343750084 ], [ 35.2217500000001, 32.198083333333386 ], [ 35.221536300659182, 32.197963699340846 ], [ 35.221463699340802, 32.197898880005027 ] ], [ [ 35.22830835978192, 32.197879679361961 ], [ 35.22841666666659, 32.197833333333449 ], [ 35.228383285522511, 32.19802271016448 ], [ 35.22830835978192, 32.197879679361961 ] ], [ [ 35.220666666666659, 32.19775 ], [ 35.220666666666659, 32.197833333333449 ], [ 35.220583333333309, 32.197833333333449 ], [ 35.220583333333309, 32.19775 ], [ 35.220666666666659, 32.19775 ] ], [ [ 35.21989839680981, 32.197528528849205 ], [ 35.22, 32.197500000000105 ], [ 35.2199714711507, 32.197601603190094 ], [ 35.21989839680981, 32.197528528849205 ] ], [ [ 35.228975072225012, 32.197548355102583 ], [ 35.229083333333392, 32.197500000000105 ], [ 35.22927492777518, 32.197534978230863 ], [ 35.229166666666686, 32.197583333333398 ], [ 35.228975072225012, 32.197548355102583 ] ], [ [ 35.22925, 32.197416666666754 ], [ 35.22925, 32.197333333333461 ], [ 35.229416666666737, 32.197333333333461 ], [ 35.229416666666737, 32.197416666666754 ], [ 35.22925, 32.197416666666754 ] ], [ [ 35.229416666666737, 32.19725 ], [ 35.229416666666737, 32.19708333333341 ], [ 35.229666666666674, 32.19708333333341 ], [ 35.229666666666674, 32.19725 ], [ 35.229416666666737, 32.19725 ] ], [ [ 35.220583333333309, 32.197000000000116 ], [ 35.220554804483982, 32.197101603190163 ], [ 35.22048173014332, 32.197028528849273 ], [ 35.220583333333309, 32.197000000000116 ] ], [ [ 35.225, 32.197166666666703 ], [ 35.224971471150695, 32.19726826985675 ], [ 35.224898396809806, 32.197195195516031 ], [ 35.225, 32.197166666666703 ] ], [ [ 35.220583333333309, 32.19725 ], [ 35.220583333333309, 32.197333333333461 ], [ 35.2205, 32.197333333333461 ], [ 35.2205, 32.19725 ], [ 35.220583333333309, 32.19725 ] ], [ [ 35.229815063476678, 32.196695195516043 ], [ 35.229916666666725, 32.196666666666715 ], [ 35.229888137817397, 32.196768269856761 ], [ 35.229815063476678, 32.196695195516043 ] ], [ [ 35.227221471150699, 32.196101603190186 ], [ 35.22714839680981, 32.196028528849297 ], [ 35.22725, 32.19600000000014 ], [ 35.227221471150699, 32.196101603190186 ] ], [ [ 35.221416666666698, 32.19600000000014 ], [ 35.221388137817371, 32.196101603190186 ], [ 35.221315063476652, 32.196028528849297 ], [ 35.221416666666698, 32.19600000000014 ] ], [ [ 35.230315063476667, 32.19577852884936 ], [ 35.230416666666713, 32.19575 ], [ 35.230388137817386, 32.195851603190079 ], [ 35.230315063476667, 32.19577852884936 ] ], [ [ 35.23058333333347, 32.195833333333383 ], [ 35.23058333333347, 32.195666666666739 ], [ 35.230657313029099, 32.195551106770893 ], [ 35.230949193318622, 32.195682815551834 ], [ 35.230666666666593, 32.195833333333383 ], [ 35.23058333333347, 32.195833333333383 ] ], [ [ 35.238303827921641, 32.195357528686657 ], [ 35.2385, 32.195250000000101 ], [ 35.238460001627629, 32.195435948689749 ], [ 35.238303827921641, 32.195357528686657 ] ], [ [ 35.238776865641398, 32.19527386983242 ], [ 35.238554585774693, 32.195202885945719 ], [ 35.238833333333446, 32.195166666666751 ], [ 35.238776865641398, 32.19527386983242 ] ], [ [ 35.241833333333318, 32.195083333333457 ], [ 35.241643956502287, 32.195049952189208 ], [ 35.241786987304806, 32.194975026448617 ], [ 35.241833333333318, 32.195083333333457 ], [ 35.241934936523535, 32.195111862182614 ], [ 35.241861862182645, 32.195184936523503 ], [ 35.241833333333318, 32.195083333333457 ] ], [ [ 35.227583333333428, 32.195083333333457 ], [ 35.2275548044841, 32.195184936523503 ], [ 35.227481730143211, 32.195111862182614 ], [ 35.227583333333428, 32.195083333333457 ] ], [ [ 35.211166666666657, 32.195 ], [ 35.211166666666657, 32.195166666666751 ], [ 35.210916666666719, 32.195166666666751 ], [ 35.210916666666719, 32.195 ], [ 35.211166666666657, 32.195 ] ], [ [ 35.210666666666668, 32.1949166666667 ], [ 35.210638140360516, 32.195018269856746 ], [ 35.210565063476622, 32.194945195516027 ], [ 35.210666666666668, 32.1949166666667 ] ], [ [ 35.21900586954763, 32.195001887003627 ], [ 35.218557225545283, 32.194709732055742 ], [ 35.21871925354003, 32.194460912068735 ], [ 35.219000000000108, 32.194416666666712 ], [ 35.219034037272138, 32.194465962727975 ], [ 35.219266860962023, 32.194553080241008 ], [ 35.219367370605482, 32.194752298990977 ], [ 35.21900586954763, 32.195001887003627 ] ], [ [ 35.229631876627707, 32.194629374186206 ], [ 35.229916666666725, 32.194583333333298 ], [ 35.229986251831008, 32.194680414835602 ], [ 35.230141469319676, 32.194791666666674 ], [ 35.230034790039156, 32.194868123372487 ], [ 35.229916213989384, 32.195033564249684 ], [ 35.229631876627707, 32.194629374186206 ] ], [ [ 35.234130366007491, 32.19474361673997 ], [ 35.234416666666732, 32.194583333333298 ], [ 35.234576059977201, 32.194988794962569 ], [ 35.234323618570954, 32.195119633992647 ], [ 35.234130366007491, 32.19474361673997 ] ], [ [ 35.24223173014326, 32.19477852884927 ], [ 35.242333333333477, 32.194750000000113 ], [ 35.242304804484149, 32.194851603190159 ], [ 35.24223173014326, 32.19477852884927 ] ], [ [ 35.242549952189165, 32.194522710164449 ], [ 35.242475026448687, 32.1943796793621 ], [ 35.242583333333414, 32.194333333333418 ], [ 35.242549952189165, 32.194522710164449 ] ], [ [ 35.229416666666737, 32.194333333333418 ], [ 35.229388137817409, 32.194434936523464 ], [ 35.22931506347669, 32.194361862182745 ], [ 35.229416666666737, 32.194333333333418 ] ], [ [ 35.21425, 32.194416666666712 ], [ 35.214715962727951, 32.194450703938912 ], [ 35.215159372965559, 32.194743718465133 ], [ 35.215099878946944, 32.194867370605607 ], [ 35.214715962727951, 32.194617370605499 ], [ 35.214414367675715, 32.194549296061268 ], [ 35.214249552408887, 32.194788009643503 ], [ 35.214013371785541, 32.194867370605607 ], [ 35.213882629394618, 32.19455150349944 ], [ 35.214215962727963, 32.194465962727975 ], [ 35.21425, 32.194416666666712 ], [ 35.214148396809946, 32.194388137817384 ], [ 35.214221471150836, 32.194315063476665 ], [ 35.21425, 32.194416666666712 ] ], [ [ 35.21275, 32.194416666666712 ], [ 35.212704722086528, 32.194522476196369 ], [ 35.212558359781895, 32.194450444539484 ], [ 35.21275, 32.194416666666712 ] ], [ [ 35.210416666666731, 32.194750000000113 ], [ 35.210388140360635, 32.194851603190159 ], [ 35.210315063476514, 32.19477852884927 ], [ 35.210416666666731, 32.194750000000113 ] ], [ [ 35.214557072957462, 32.196044011433912 ], [ 35.214666666666687, 32.196166666666727 ], [ 35.21494071451832, 32.196533823649077 ], [ 35.214548634847006, 32.196619633992611 ], [ 35.2145000000001, 32.196333333333314 ], [ 35.214299245198674, 32.196153961181722 ], [ 35.214557072957462, 32.196044011433912 ] ], [ [ 35.215666666666664, 32.196333333333314 ], [ 35.215393376668374, 32.196144643147932 ], [ 35.215593775431387, 32.196049296061233 ], [ 35.215666666666664, 32.196333333333314 ], [ 35.215773869832447, 32.196389801025532 ], [ 35.215702885945575, 32.196612080892066 ], [ 35.215666666666664, 32.196333333333314 ] ], [ [ 35.215316940307673, 32.196384674072306 ], [ 35.215142873128343, 32.196444661458372 ], [ 35.215055338541617, 32.196289296468137 ], [ 35.21525, 32.19625 ], [ 35.215316940307673, 32.196384674072306 ] ], [ [ 35.211583333333294, 32.195333333333394 ], [ 35.211413960774848, 32.195621434529585 ], [ 35.211293256123952, 32.195388712565091 ], [ 35.211583333333294, 32.195333333333394 ] ], [ [ 35.21025, 32.195666666666739 ], [ 35.210391593933196, 32.195964889526294 ], [ 35.210196576436431, 32.196032526652061 ], [ 35.209967473348115, 32.195708923339964 ], [ 35.21025, 32.195666666666739 ] ], [ [ 35.210785794575997, 32.195858367920039 ], [ 35.211125348409041, 32.195782246907584 ], [ 35.211333333333414, 32.195833333333383 ], [ 35.211333333333414, 32.195916666666676 ], [ 35.211416666666707, 32.195916666666676 ], [ 35.211376589457245, 32.195959920247446 ], [ 35.211126589457194, 32.196191558837882 ], [ 35.211554878234949, 32.196368021647231 ], [ 35.2115, 32.19600000000014 ], [ 35.211583333333294, 32.19600000000014 ], [ 35.212032608032359, 32.196076319376743 ], [ 35.212166666666803, 32.19625 ], [ 35.212166666666803, 32.196416666666664 ], [ 35.212138671875039, 32.196805338541765 ], [ 35.211972656249998, 32.196889322916775 ], [ 35.211916666666696, 32.197000000000116 ], [ 35.211583333333294, 32.196916666666596 ], [ 35.2112594401043, 32.196789337158236 ], [ 35.210666666666668, 32.19675 ], [ 35.210666666666668, 32.196666666666715 ], [ 35.210583333333375, 32.196666666666715 ], [ 35.210617370605576, 32.196367370605515 ], [ 35.210715962727932, 32.19621596272782 ], [ 35.210785794575997, 32.195858367920039 ] ], [ [ 35.20975, 32.196833333333302 ], [ 35.209721473693889, 32.196934936523519 ], [ 35.209648396809939, 32.196861862182629 ], [ 35.20975, 32.196833333333302 ] ], [ [ 35.212643269856756, 32.196125 ], [ 35.21275, 32.196083333333434 ], [ 35.212976684570378, 32.196141504923446 ], [ 35.213166666666723, 32.196416666666664 ], [ 35.213021199544301, 32.1963954671225 ], [ 35.212895467122507, 32.196271199544356 ], [ 35.21275, 32.19625 ], [ 35.21275, 32.196166666666727 ], [ 35.212643269856756, 32.196125 ] ], [ [ 35.211, 32.19725 ], [ 35.211166666666657, 32.197333333333461 ], [ 35.211117607116819, 32.197529958089262 ], [ 35.210799878438422, 32.197449905395501 ], [ 35.210750000000132, 32.19725 ], [ 35.210750000000132, 32.197166666666703 ], [ 35.210916666666719, 32.197166666666703 ], [ 35.210916666666719, 32.19725 ], [ 35.211, 32.19725 ] ], [ [ 35.211416666666707, 32.199166666666599 ], [ 35.211360201517721, 32.199273869832439 ], [ 35.211137916564951, 32.199202885945738 ], [ 35.211416666666707, 32.199166666666599 ] ], [ [ 35.226829981486048, 32.194287811279366 ], [ 35.226462188720745, 32.193982808430974 ], [ 35.226833333333389, 32.193916666666723 ], [ 35.227050033569412, 32.194210601806617 ], [ 35.226829981486048, 32.194287811279366 ] ], [ [ 35.231555709838858, 32.194213923136488 ], [ 35.231774297078516, 32.194054585774666 ], [ 35.231833333333327, 32.194166666666661 ], [ 35.231940063476657, 32.194208333333393 ], [ 35.231833333333327, 32.194250000000125 ], [ 35.231555709838858, 32.194213923136488 ] ], [ [ 35.227500000000134, 32.194 ], [ 35.227471471150807, 32.194101603190234 ], [ 35.227398396809917, 32.194028528849344 ], [ 35.227500000000134, 32.194 ] ], [ [ 35.229808359781828, 32.194117111206083 ], [ 35.23, 32.19408333333331 ], [ 35.229954722086688, 32.194189142863024 ], [ 35.229808359781828, 32.194117111206083 ] ], [ [ 35.22972147115081, 32.19401826985677 ], [ 35.229648396809921, 32.193945195516051 ], [ 35.22975, 32.193916666666723 ], [ 35.22972147115081, 32.19401826985677 ] ], [ [ 35.232471471150802, 32.193934936523476 ], [ 35.232398396809913, 32.193861862182757 ], [ 35.23250000000013, 32.19383333333343 ], [ 35.232471471150802, 32.193934936523476 ] ], [ [ 35.229833333333431, 32.193750000000136 ], [ 35.229804804484104, 32.193851603190183 ], [ 35.229731730143214, 32.193778528849293 ], [ 35.229833333333431, 32.193750000000136 ] ], [ [ 35.229083333333392, 32.193666666666672 ], [ 35.22902629597985, 32.193866154988712 ], [ 35.228879608154216, 32.193724914550842 ], [ 35.229083333333392, 32.193666666666672 ] ], [ [ 35.22475, 32.193583333333379 ], [ 35.224721471150815, 32.193684936523368 ], [ 35.224648396809926, 32.193611862182706 ], [ 35.22475, 32.193583333333379 ] ], [ [ 35.225, 32.193750000000136 ], [ 35.224971471150695, 32.193851603190183 ], [ 35.224898396809806, 32.193778528849293 ], [ 35.225, 32.193750000000136 ] ], [ [ 35.209548355102584, 32.193891738891693 ], [ 35.209583333333399, 32.19408333333331 ], [ 35.209500000000105, 32.19408333333331 ], [ 35.209500000000105, 32.194 ], [ 35.209548355102584, 32.193891738891693 ] ], [ [ 35.209898396809876, 32.193945195516051 ], [ 35.21, 32.193916666666723 ], [ 35.20997147369394, 32.19401826985677 ], [ 35.209898396809876, 32.193945195516051 ] ], [ [ 35.209416666666641, 32.194333333333418 ], [ 35.209416666666641, 32.194416666666712 ], [ 35.209333333333291, 32.194416666666712 ], [ 35.209333333333291, 32.194333333333418 ], [ 35.209416666666641, 32.194333333333418 ] ], [ [ 35.208805338541765, 32.193151524861719 ], [ 35.208866355896134, 32.193016901652072 ], [ 35.209000000000117, 32.193083333333391 ], [ 35.209260882059709, 32.193214157104592 ], [ 35.20908333333341, 32.193250000000148 ], [ 35.209135780334464, 32.193463521321689 ], [ 35.209044764200826, 32.193534037272059 ], [ 35.209000000000117, 32.193250000000148 ], [ 35.208805338541765, 32.193151524861719 ] ], [ [ 35.210065063476634, 32.193278528849305 ], [ 35.21016666666668, 32.193250000000148 ], [ 35.210138140360584, 32.193351603190195 ], [ 35.210065063476634, 32.193278528849305 ] ], [ [ 35.235398396809956, 32.193028528849425 ], [ 35.2355, 32.193 ], [ 35.235471471150845, 32.193101603190087 ], [ 35.235398396809956, 32.193028528849425 ] ], [ [ 35.239026295979841, 32.193032821655322 ], [ 35.238879608154377, 32.192891581217509 ], [ 35.239083333333326, 32.192833333333454 ], [ 35.239026295979841, 32.193032821655322 ] ], [ [ 35.24, 32.192666666666696 ], [ 35.239916666666716, 32.192666666666696 ], [ 35.239816838582442, 32.19262754313155 ], [ 35.239874811808306, 32.192476537068785 ], [ 35.239916666666716, 32.192583333333403 ], [ 35.24, 32.192583333333403 ], [ 35.24, 32.192666666666696 ], [ 35.240138671875059, 32.192694661458404 ], [ 35.240139404296997, 32.192944661458341 ], [ 35.24, 32.192666666666696 ] ], [ [ 35.24125, 32.192500000000109 ], [ 35.24114839680999, 32.192471471150782 ], [ 35.241221471150709, 32.192398396809892 ], [ 35.24125, 32.192500000000109 ], [ 35.241351603190083, 32.192528528849266 ], [ 35.241278528849364, 32.192601603190155 ], [ 35.24125, 32.192500000000109 ] ], [ [ 35.241083333333449, 32.192333333333295 ], [ 35.241054804484122, 32.192434936523512 ], [ 35.240981730143233, 32.192361862182622 ], [ 35.241083333333449, 32.192333333333295 ] ], [ [ 35.23825, 32.192333333333295 ], [ 35.238214792887391, 32.192513534546038 ], [ 35.238042953491345, 32.192610575358003 ], [ 35.237972757975285, 32.192367233276457 ], [ 35.23825, 32.192333333333295 ] ], [ [ 35.236416666666685, 32.192083333333414 ], [ 35.236369288126639, 32.192362218221035 ], [ 35.236213699340851, 32.192240000407025 ], [ 35.236416666666685, 32.192083333333414 ] ], [ [ 35.230694661458358, 32.19236132812506 ], [ 35.230620859781936, 32.192507217407183 ], [ 35.230555338541762, 32.192265141805137 ], [ 35.230750000000114, 32.192166666666708 ], [ 35.230816197713352, 32.19229984537759 ], [ 35.230694661458358, 32.19236132812506 ] ], [ [ 35.198916666666662, 32.193166666666684 ], [ 35.199034711202046, 32.193289530436346 ], [ 35.199247253418037, 32.193392644246444 ], [ 35.199162412007695, 32.193540832519659 ], [ 35.198459167480564, 32.193216374715178 ], [ 35.198916666666662, 32.193166666666684 ] ], [ [ 35.204796274820978, 32.193391581217497 ], [ 35.205, 32.193333333333442 ], [ 35.204942962646555, 32.19353282165531 ], [ 35.204796274820978, 32.193391581217497 ] ], [ [ 35.205138140360589, 32.193351603190195 ], [ 35.205065063476638, 32.193278528849305 ], [ 35.205166666666685, 32.193250000000148 ], [ 35.205138140360589, 32.193351603190195 ] ], [ [ 35.1975, 32.193666666666672 ], [ 35.197471473693895, 32.193768269856889 ], [ 35.197398396810001, 32.193695195516 ], [ 35.1975, 32.193666666666672 ] ], [ [ 35.207049102783344, 32.193819010416689 ], [ 35.207295786539817, 32.193712188720667 ], [ 35.20745447794593, 32.193856664021951 ], [ 35.207250000000101, 32.193916666666723 ], [ 35.207208333333369, 32.193809936523451 ], [ 35.207166666666808, 32.193916666666723 ], [ 35.207049102783344, 32.193819010416689 ] ], [ [ 35.205083333333391, 32.194 ], [ 35.205054807027295, 32.194101603190234 ], [ 35.204981730143345, 32.194028528849344 ], [ 35.205083333333391, 32.194 ] ], [ [ 35.207130363464387, 32.19409234110509 ], [ 35.207250000000101, 32.194 ], [ 35.207326726277699, 32.194195175170989 ], [ 35.207130363464387, 32.19409234110509 ] ], [ [ 35.203, 32.194250000000125 ], [ 35.203083333333268, 32.194250000000125 ], [ 35.203083333333268, 32.194333333333418 ], [ 35.203166666666789, 32.194333333333418 ], [ 35.203166666666789, 32.194416666666712 ], [ 35.203268269856778, 32.194445195516039 ], [ 35.203195192972885, 32.194518269856758 ], [ 35.203166666666789, 32.194416666666712 ], [ 35.203083333333268, 32.194416666666712 ], [ 35.203083333333268, 32.194333333333418 ], [ 35.203, 32.194333333333418 ], [ 35.203, 32.194250000000125 ], [ 35.202898396809928, 32.194221471150797 ], [ 35.202971473693879, 32.194148396809908 ], [ 35.203, 32.194250000000125 ] ], [ [ 35.204666666666697, 32.194583333333298 ], [ 35.204666666666697, 32.194666666666592 ], [ 35.204583333333403, 32.194666666666592 ], [ 35.204583333333403, 32.194583333333298 ], [ 35.204666666666697, 32.194583333333298 ], [ 35.20475, 32.194467066446862 ], [ 35.204833333333283, 32.194583333333298 ], [ 35.204666666666697, 32.194583333333298 ] ], [ [ 35.20497265625005, 32.194472656250014 ], [ 35.205248039245589, 32.194333343505889 ], [ 35.205483749389771, 32.194448460896922 ], [ 35.205333333333272, 32.194750000000113 ], [ 35.204916666666804, 32.194583333333298 ], [ 35.20497265625005, 32.194472656250014 ] ], [ [ 35.204166666666708, 32.194750000000113 ], [ 35.204166666666708, 32.194833333333406 ], [ 35.204000000000121, 32.194833333333406 ], [ 35.204000000000121, 32.194750000000113 ], [ 35.204166666666708, 32.194750000000113 ], [ 35.204228418986077, 32.194544891357509 ], [ 35.204333333333352, 32.194666666666592 ], [ 35.204333333333352, 32.194750000000113 ], [ 35.204166666666708, 32.194750000000113 ] ], [ [ 35.20158333333336, 32.194583333333298 ], [ 35.20158333333336, 32.194750000000113 ], [ 35.201378227233931, 32.194688247680745 ], [ 35.2015, 32.194583333333298 ], [ 35.20158333333336, 32.194583333333298 ] ], [ [ 35.199166666666713, 32.194666666666592 ], [ 35.199105092366608, 32.194788386027085 ], [ 35.198891029358037, 32.194861328125114 ], [ 35.198805338541604, 32.194699793497648 ], [ 35.199166666666713, 32.194666666666592 ] ], [ [ 35.201750000000118, 32.194833333333406 ], [ 35.202039466857912, 32.19471697489422 ], [ 35.202250000000106, 32.195 ], [ 35.201944661458469, 32.194972005208456 ], [ 35.201833333333411, 32.1949166666667 ], [ 35.201750000000118, 32.1949166666667 ], [ 35.201750000000118, 32.194833333333406 ] ], [ [ 35.203500000000133, 32.194833333333406 ], [ 35.203626698811945, 32.194780115763479 ], [ 35.203833333333364, 32.1949166666667 ], [ 35.203983128865616, 32.195216964721737 ], [ 35.203848475138329, 32.195277994791809 ], [ 35.203694010416768, 32.194972656250002 ], [ 35.203527994791671, 32.194888671874992 ], [ 35.203500000000133, 32.194833333333406 ] ], [ [ 35.200666666666677, 32.195166666666751 ], [ 35.200610201517861, 32.19527386983242 ], [ 35.200387916564921, 32.195202885945719 ], [ 35.200666666666677, 32.195166666666751 ] ], [ [ 35.202333333333399, 32.195416666666688 ], [ 35.20263036346438, 32.195380366007498 ], [ 35.202916666666681, 32.195333333333394 ], [ 35.203083333333268, 32.195250000000101 ], [ 35.203333333333376, 32.195250000000101 ], [ 35.203333333333376, 32.195333333333394 ], [ 35.203416666666669, 32.195333333333394 ], [ 35.203416666666669, 32.195416666666688 ], [ 35.203500000000133, 32.195416666666688 ], [ 35.203500000000133, 32.195500000000152 ], [ 35.203416666666669, 32.195500000000152 ], [ 35.202620391845812, 32.195537058512514 ], [ 35.202546274820975, 32.195712941487727 ], [ 35.202339754740478, 32.195799967448011 ], [ 35.202382227579733, 32.196141448974629 ], [ 35.202205334981386, 32.196119445800775 ], [ 35.20179275512703, 32.196361968994097 ], [ 35.201712941487756, 32.196479929606255 ], [ 35.202112220764263, 32.196648178100645 ], [ 35.202203725179174, 32.196940480550268 ], [ 35.201821215311611, 32.196661066691149 ], [ 35.201750000000118, 32.19675 ], [ 35.201851603190164, 32.196778528849336 ], [ 35.201778526306214, 32.196851603190225 ], [ 35.201750000000118, 32.19675 ], [ 35.201700703938855, 32.196715962727978 ], [ 35.201538932800304, 32.19648166402186 ], [ 35.201465962727866, 32.196247701009156 ], [ 35.201632629394624, 32.196132629394526 ], [ 35.201700703938855, 32.19603403727217 ], [ 35.201882629394504, 32.195965962727939 ], [ 35.201916666666705, 32.195916666666676 ], [ 35.201717180887897, 32.195859629313134 ], [ 35.201858418782535, 32.195712941487727 ], [ 35.201916666666705, 32.195916666666676 ], [ 35.202273740132625, 32.195883926391616 ], [ 35.202186391194743, 32.19570507303888 ], [ 35.202305338541692, 32.195555338541737 ], [ 35.202333333333399, 32.195416666666688 ], [ 35.201851175944, 32.195295216878321 ], [ 35.201965962727797, 32.1952159627279 ], [ 35.202, 32.195166666666751 ], [ 35.202166666666642, 32.195166666666751 ], [ 35.202333333333399, 32.195250000000101 ], [ 35.2025, 32.195166666666751 ], [ 35.20256812795003, 32.195303726196357 ], [ 35.202333333333399, 32.195333333333394 ], [ 35.202333333333399, 32.195416666666688 ] ], [ [ 35.199000000000126, 32.195333333333394 ], [ 35.199212598164991, 32.195608764648455 ], [ 35.199813341776633, 32.195519994100039 ], [ 35.19976509348561, 32.195846486409494 ], [ 35.199079724629712, 32.195952967325866 ], [ 35.198963696797762, 32.195536300659171 ], [ 35.198864095052215, 32.195371180216512 ], [ 35.199000000000126, 32.195333333333394 ] ], [ [ 35.194166666666774, 32.195500000000152 ], [ 35.19410175832121, 32.195609491984158 ], [ 35.193802317301504, 32.195537378947051 ], [ 35.194166666666774, 32.195500000000152 ] ], [ [ 35.19771275583912, 32.195804311116547 ], [ 35.197833333333392, 32.19600000000014 ], [ 35.197880363464492, 32.19603630065933 ], [ 35.197952969869107, 32.196352101643981 ], [ 35.197547030131091, 32.196425674438615 ], [ 35.1977152608236, 32.196295822143611 ], [ 35.197666666666805, 32.19600000000014 ], [ 35.19771275583912, 32.195804311116547 ] ], [ [ 35.193833333333373, 32.195916666666676 ], [ 35.193788052876812, 32.196022476196333 ], [ 35.193641693115353, 32.195950444539449 ], [ 35.193833333333373, 32.195916666666676 ] ], [ [ 35.197047030131102, 32.196048634847045 ], [ 35.197333333333404, 32.19600000000014 ], [ 35.197180137634291, 32.196198471069408 ], [ 35.197047030131102, 32.196048634847045 ] ], [ [ 35.196916666666709, 32.196416666666664 ], [ 35.19710272216804, 32.196463088989333 ], [ 35.196862617492684, 32.19661661275228 ], [ 35.196716718037862, 32.196494206746422 ], [ 35.196833333333416, 32.196416666666664 ], [ 35.196875, 32.196309936523505 ], [ 35.196916666666709, 32.196416666666664 ] ], [ [ 35.194500000000119, 32.196583333333422 ], [ 35.194640357971252, 32.196795730590907 ], [ 35.194485046386831, 32.196867370605503 ], [ 35.194382629394624, 32.196664367675851 ], [ 35.194500000000119, 32.196583333333422 ] ], [ [ 35.196583333333365, 32.197000000000116 ], [ 35.196583333333365, 32.196666666666715 ], [ 35.196750000000122, 32.196666666666715 ], [ 35.196750000000122, 32.196916666666596 ], [ 35.196774973551555, 32.196975026448683 ], [ 35.19693888092047, 32.197045166015755 ], [ 35.196713015238572, 32.197108306884786 ], [ 35.196666666666658, 32.197000000000116 ], [ 35.196583333333365, 32.197000000000116 ] ], [ [ 35.200000000000102, 32.19708333333341 ], [ 35.199703725179063, 32.197046274821048 ], [ 35.199190155029271, 32.196635533650749 ], [ 35.199270128885985, 32.19654627482106 ], [ 35.1998019460043, 32.196750696818071 ], [ 35.199784136454241, 32.196893870035922 ], [ 35.19996294148774, 32.197037058512421 ], [ 35.200000000000102, 32.19708333333341 ], [ 35.20036653900155, 32.197177398681788 ], [ 35.200416666666797, 32.19725 ], [ 35.200673357645655, 32.197186950683658 ], [ 35.201200703938866, 32.197357157389433 ], [ 35.20086275736503, 32.197483612060523 ], [ 35.200708333333409, 32.197448994954357 ], [ 35.200544743855801, 32.197485666910893 ], [ 35.200416666666797, 32.19725 ], [ 35.200201459248831, 32.197284790039134 ], [ 35.200083333333396, 32.197449600219727 ], [ 35.200000000000102, 32.197333333333461 ], [ 35.199833333333345, 32.197333333333461 ], [ 35.199833333333345, 32.197166666666703 ], [ 35.200000000000102, 32.197166666666703 ], [ 35.200000000000102, 32.19708333333341 ] ], [ [ 35.19525, 32.197333333333461 ], [ 35.195382629394601, 32.197534037272078 ], [ 35.195440582275467, 32.197700703938892 ], [ 35.195132629394493, 32.197414367675719 ], [ 35.19525, 32.197333333333461 ] ], [ [ 35.19996294148774, 32.197641581217567 ], [ 35.200166666666689, 32.197583333333398 ], [ 35.200109629313204, 32.197782821655267 ], [ 35.19996294148774, 32.197641581217567 ] ], [ [ 35.198648396810029, 32.197361862182618 ], [ 35.19875, 32.197333333333461 ], [ 35.198721473693922, 32.197434936523507 ], [ 35.198648396810029, 32.197361862182618 ] ], [ [ 35.201630249023538, 32.197361328125055 ], [ 35.201555338541596, 32.197139653523891 ], [ 35.201666666666654, 32.19708333333341 ], [ 35.201729751587038, 32.197210245768247 ], [ 35.201630249023538, 32.197361328125055 ] ], [ [ 35.20075, 32.196833333333302 ], [ 35.200648396809925, 32.196804804483975 ], [ 35.200721473693875, 32.196731730143256 ], [ 35.20075, 32.196833333333302 ], [ 35.200939376831172, 32.196866714477551 ], [ 35.200796348571885, 32.196941640218199 ], [ 35.20075, 32.196833333333302 ] ], [ [ 35.200304354349839, 32.196612080892066 ], [ 35.200137916565041, 32.196269597371383 ], [ 35.200333333333276, 32.196166666666727 ], [ 35.200416666666797, 32.19605039978029 ], [ 35.2005, 32.196166666666727 ], [ 35.200471249898385, 32.196554585774777 ], [ 35.200304354349839, 32.196612080892066 ] ], [ [ 35.201219403584787, 32.196200703938928 ], [ 35.201132629394635, 32.195884836832761 ], [ 35.201333333333423, 32.195833333333383 ], [ 35.201447652181002, 32.196105514526494 ], [ 35.201219403584787, 32.196200703938928 ] ], [ [ 35.199833333333345, 32.19600000000014 ], [ 35.199799954732271, 32.196189376831171 ], [ 35.199725026448618, 32.196046346028652 ], [ 35.199833333333345, 32.19600000000014 ] ], [ [ 35.198537338256926, 32.197028472900399 ], [ 35.19825, 32.19708333333341 ], [ 35.19825, 32.197000000000116 ], [ 35.19825, 32.196916666666596 ], [ 35.19833333333338, 32.196800399780386 ], [ 35.198416666666674, 32.196916666666596 ], [ 35.198537338256926, 32.197028472900399 ] ], [ [ 35.202173240661637, 32.196301213582387 ], [ 35.202375000000131, 32.196276117960622 ], [ 35.202732902526975, 32.196320638020779 ], [ 35.202916666666681, 32.19625 ], [ 35.202995030721127, 32.196453872680706 ], [ 35.202219767252586, 32.196675252278567 ], [ 35.202173240661637, 32.196301213582387 ] ], [ [ 35.206647008260177, 32.195034001668319 ], [ 35.2069166666667, 32.195 ], [ 35.207, 32.195 ], [ 35.207083333333287, 32.195 ], [ 35.207083333333287, 32.195083333333457 ], [ 35.207, 32.195083333333457 ], [ 35.206950078328418, 32.195182017008563 ], [ 35.206647008260177, 32.195034001668319 ] ], [ [ 35.207416666666688, 32.194750000000113 ], [ 35.207416666666688, 32.194666666666592 ], [ 35.2075, 32.194666666666592 ], [ 35.2075, 32.194750000000113 ], [ 35.207416666666688, 32.194750000000113 ] ], [ [ 35.206231730143372, 32.194445195516039 ], [ 35.206333333333419, 32.194416666666712 ], [ 35.206304807027323, 32.194518269856758 ], [ 35.206231730143372, 32.194445195516039 ] ], [ [ 35.207083333333287, 32.194416666666712 ], [ 35.206976603190185, 32.19437500000015 ], [ 35.207083333333287, 32.194333333333418 ], [ 35.207138577779119, 32.194228444417377 ], [ 35.20727875010175, 32.194313735962055 ], [ 35.207083333333287, 32.194416666666712 ] ], [ [ 35.206889597575014, 32.195547948201636 ], [ 35.207333333333395, 32.19575 ], [ 35.207333333333395, 32.195833333333383 ], [ 35.207416666666688, 32.195833333333383 ], [ 35.207583333333275, 32.195833333333383 ], [ 35.20754275004083, 32.196005645751939 ], [ 35.207313542683892, 32.196146876017281 ], [ 35.207132537841858, 32.196440633138138 ], [ 35.206865104675217, 32.196531768798934 ], [ 35.206833333333407, 32.196583333333422 ], [ 35.206628855387351, 32.196454477946077 ], [ 35.20637885538747, 32.196346054077253 ], [ 35.206456286112598, 32.196201100667452 ], [ 35.206752550760939, 32.196370783487964 ], [ 35.2069166666667, 32.196083333333434 ], [ 35.207286303202295, 32.195934453328562 ], [ 35.207130363464387, 32.195786300659222 ], [ 35.206833333333407, 32.19575 ], [ 35.206889597575014, 32.195547948201636 ] ], [ [ 35.206250000000125, 32.195583333333445 ], [ 35.206250000000125, 32.195833333333383 ], [ 35.206083333333368, 32.195833333333383 ], [ 35.206083333333368, 32.195583333333445 ], [ 35.206250000000125, 32.195583333333445 ] ], [ [ 35.205983609517489, 32.196134674072368 ], [ 35.205809539794927, 32.196194661458264 ], [ 35.205722005208429, 32.196039296468086 ], [ 35.205916666666724, 32.19600000000014 ], [ 35.205983609517489, 32.196134674072368 ] ], [ [ 35.196416666666778, 32.197916666666742 ], [ 35.196482866923077, 32.198049845377682 ], [ 35.196350618998281, 32.198116744995048 ], [ 35.196439511617029, 32.198298756917382 ], [ 35.196055338541669, 32.198348475138403 ], [ 35.196222005208426, 32.198138671875085 ], [ 35.196277994791728, 32.197944661458337 ], [ 35.196416666666778, 32.197916666666742 ] ], [ [ 35.195439142862995, 32.198128611246887 ], [ 35.195367111206053, 32.19827497355152 ], [ 35.195333333333338, 32.198083333333386 ], [ 35.195439142862995, 32.198128611246887 ] ], [ [ 35.195958333333351, 32.198309936523458 ], [ 35.196, 32.198416666666731 ], [ 35.196, 32.1985 ], [ 35.196078511556095, 32.198548375447672 ], [ 35.195974418640276, 32.198882568359409 ], [ 35.195799275716126, 32.198948435465525 ], [ 35.195718228658166, 32.198654256184909 ], [ 35.195833333333269, 32.198583333333318 ], [ 35.195833333333269, 32.198416666666731 ], [ 35.19591666666679, 32.198416666666731 ], [ 35.195958333333351, 32.198309936523458 ] ], [ [ 35.195333333333338, 32.198333333333437 ], [ 35.195304807027185, 32.198434936523483 ], [ 35.195231730143291, 32.198361862182765 ], [ 35.195333333333338, 32.198333333333437 ] ], [ [ 35.195416666666802, 32.198583333333318 ], [ 35.195388140360478, 32.198684936523364 ], [ 35.195315063476585, 32.198611862182645 ], [ 35.195416666666802, 32.198583333333318 ] ], [ [ 35.196641693115225, 32.198783777872734 ], [ 35.196833333333416, 32.198750000000132 ], [ 35.196788052876911, 32.198855809529618 ], [ 35.196641693115225, 32.198783777872734 ] ], [ [ 35.199315063476604, 32.198778528849289 ], [ 35.19941666666665, 32.198750000000132 ], [ 35.199388140360497, 32.198851603190178 ], [ 35.199315063476604, 32.198778528849289 ] ], [ [ 35.200666666666677, 32.198750000000132 ], [ 35.2005, 32.198666666666668 ], [ 35.200537928263259, 32.198478795369454 ], [ 35.200749994913735, 32.19858236185712 ], [ 35.200666666666677, 32.198750000000132 ] ], [ [ 35.198666666666782, 32.198583333333318 ], [ 35.198638140360629, 32.198684936523364 ], [ 35.198565063476565, 32.198611862182645 ], [ 35.198666666666782, 32.198583333333318 ] ], [ [ 35.200145769755125, 32.198440155029289 ], [ 35.200053827921579, 32.198292200724325 ], [ 35.20025, 32.198250000000144 ], [ 35.200145769755125, 32.198440155029289 ] ], [ [ 35.197, 32.19816666666668 ], [ 35.196971473693907, 32.198268269856896 ], [ 35.196898396810013, 32.198195195516007 ], [ 35.197, 32.19816666666668 ] ], [ [ 35.201898396810009, 32.19794519551607 ], [ 35.202, 32.197916666666742 ], [ 35.201971473693902, 32.198018269856789 ], [ 35.201898396810009, 32.19794519551607 ] ], [ [ 35.201833333333411, 32.198 ], [ 35.201910059611009, 32.198195175171008 ], [ 35.201713696797697, 32.198092341105109 ], [ 35.201833333333411, 32.198 ] ], [ [ 35.1975, 32.199 ], [ 35.197471473693895, 32.199101603190229 ], [ 35.197398396810001, 32.19902852884934 ], [ 35.1975, 32.199 ] ], [ [ 35.195635653177874, 32.19904325358084 ], [ 35.19575, 32.199166666666599 ], [ 35.196416666666778, 32.199166666666599 ], [ 35.196416666666778, 32.199333333333414 ], [ 35.19591666666679, 32.199333333333414 ], [ 35.195750587463408, 32.199415888468423 ], [ 35.195666666666682, 32.19925000000012 ], [ 35.195378110249862, 32.199158640543544 ], [ 35.195635653177874, 32.19904325358084 ] ], [ [ 35.197216621398923, 32.199439376831094 ], [ 35.197141693115213, 32.199296346028632 ], [ 35.197250000000111, 32.19925000000012 ], [ 35.197216621398923, 32.199439376831094 ] ], [ [ 35.19875, 32.199666666666587 ], [ 35.198721473693922, 32.199768269856804 ], [ 35.198648396810029, 32.199695195515915 ], [ 35.19875, 32.199666666666587 ], [ 35.198717473348097, 32.199615859985443 ], [ 35.19857059224455, 32.199521830240883 ], [ 35.198380348205546, 32.199575291951533 ], [ 35.198300806681232, 32.199440882364968 ], [ 35.198733446756989, 32.199300806681435 ], [ 35.19886585998529, 32.199592493693046 ], [ 35.19875, 32.199666666666587 ] ], [ [ 35.196401524861585, 32.199472005208463 ], [ 35.1965, 32.199666666666587 ], [ 35.196276257832835, 32.199777882893954 ], [ 35.196138671875133, 32.199543146769201 ], [ 35.196401524861585, 32.199472005208463 ] ], [ [ 35.195333333333338, 32.199750000000108 ], [ 35.195304807027185, 32.199851603190098 ], [ 35.195231730143291, 32.199778528849208 ], [ 35.195333333333338, 32.199750000000108 ] ], [ [ 35.193333333333385, 32.199833333333402 ], [ 35.193363594055313, 32.199886408487941 ], [ 35.193613505045505, 32.2000288950602 ], [ 35.193401789347377, 32.200113591511979 ], [ 35.193219739278163, 32.199898101806639 ], [ 35.193333333333385, 32.199833333333402 ] ], [ [ 35.197472005208454, 32.200118387858083 ], [ 35.19775, 32.200083333333453 ], [ 35.197816200256398, 32.200216512044392 ], [ 35.197542811075948, 32.200354812622095 ], [ 35.197472005208454, 32.200118387858083 ] ], [ [ 35.194666666666706, 32.201333333333309 ], [ 35.194633557637587, 32.201521174113054 ], [ 35.194391693115222, 32.201463012695342 ], [ 35.194558359782036, 32.201391693115227 ], [ 35.194583333333412, 32.201333333333309 ], [ 35.194481730143195, 32.201304804483982 ], [ 35.194554807027316, 32.201231730143263 ], [ 35.194583333333412, 32.201333333333309 ], [ 35.194666666666706, 32.201333333333309 ], [ 35.194701459248904, 32.201034790039046 ], [ 35.194799906412698, 32.200541702270584 ], [ 35.1947689234417, 32.200384902954113 ], [ 35.195008199056133, 32.200131876627665 ], [ 35.1950833333334, 32.200416666666683 ], [ 35.195192143758277, 32.200467356364072 ], [ 35.194916666666643, 32.200500000000147 ], [ 35.194833333333349, 32.201000000000136 ], [ 35.195026234944635, 32.201044102986657 ], [ 35.19508326212565, 32.201197682698592 ], [ 35.194833333333349, 32.201083333333429 ], [ 35.194833333333349, 32.201333333333309 ], [ 35.194666666666706, 32.201333333333309 ] ], [ [ 35.197, 32.201083333333429 ], [ 35.196721112569207, 32.201035954793383 ], [ 35.196843335469623, 32.200880366007482 ], [ 35.197, 32.201083333333429 ], [ 35.197203168233216, 32.201264862060611 ], [ 35.19670598856618, 32.201455988566124 ], [ 35.196294011433963, 32.201710678100653 ], [ 35.19616666666667, 32.20175 ], [ 35.196134140014749, 32.201800806681376 ], [ 35.195886540730896, 32.201959314982048 ], [ 35.196113927205317, 32.202291366577185 ], [ 35.195833333333269, 32.202333333333456 ], [ 35.19575, 32.202333333333456 ], [ 35.19575, 32.202166666666699 ], [ 35.195610445658417, 32.201955485025962 ], [ 35.195715962727775, 32.201882629394561 ], [ 35.195874399821093, 32.201653157552187 ], [ 35.196043986002621, 32.201615137736098 ], [ 35.19616666666667, 32.201666666666711 ], [ 35.196453725179083, 32.201453725179135 ], [ 35.196939839681022, 32.201158462524461 ], [ 35.197, 32.201083333333429 ] ], [ [ 35.194198402404879, 32.201473393758079 ], [ 35.193891581217372, 32.201620391845779 ], [ 35.193833333333373, 32.201416666666603 ], [ 35.193879422505688, 32.201220977783237 ], [ 35.194000000000131, 32.201416666666603 ], [ 35.194198402404879, 32.201473393758079 ] ], [ [ 35.193376398722307, 32.20129703267412 ], [ 35.193583333333265, 32.201666666666711 ], [ 35.193699015299501, 32.201755961100218 ], [ 35.193509010314983, 32.201869633992658 ], [ 35.193416666666678, 32.20175 ], [ 35.193338373819984, 32.201468841552753 ], [ 35.19321369679767, 32.201630366007521 ], [ 35.193056139628084, 32.2017029673259 ], [ 35.192880363464496, 32.201437291463265 ], [ 35.193376398722307, 32.20129703267412 ] ], [ [ 35.191916666666771, 32.201916666666591 ], [ 35.192030914306713, 32.202171707153298 ], [ 35.191882609049571, 32.202281768798969 ], [ 35.19180156199144, 32.201987589518183 ], [ 35.191916666666771, 32.201916666666591 ] ], [ [ 35.194416666666655, 32.203166666666675 ], [ 35.194416666666655, 32.203333333333433 ], [ 35.194166666666774, 32.203333333333433 ], [ 35.193944661458374, 32.203444661458263 ], [ 35.193916666666667, 32.2035 ], [ 35.194111923217861, 32.203625 ], [ 35.193916666666667, 32.203750000000127 ], [ 35.193916666666667, 32.203666666666606 ], [ 35.19375, 32.203666666666606 ], [ 35.19375, 32.203583333333313 ], [ 35.193666666666786, 32.203583333333313 ], [ 35.193666666666786, 32.203666666666606 ], [ 35.193534037272173, 32.203700703938807 ], [ 35.193333333333385, 32.204 ], [ 35.192923121134413, 32.204196385701493 ], [ 35.192973096211858, 32.204035936991374 ], [ 35.193218228658111, 32.203884895324734 ], [ 35.19325, 32.203833333333421 ], [ 35.193333333333385, 32.203833333333421 ], [ 35.193333333333385, 32.203666666666606 ], [ 35.194232831319198, 32.203087954203284 ], [ 35.194373410542823, 32.202790079752617 ], [ 35.194461049397717, 32.202708877563509 ], [ 35.194370221455927, 32.202537226359141 ], [ 35.194376650492472, 32.202375 ], [ 35.19437061055504, 32.202222590128656 ], [ 35.194494572957296, 32.201959920247418 ], [ 35.19454325612395, 32.202123413086042 ], [ 35.19462419128422, 32.2027156219483 ], [ 35.19475, 32.20241666666675 ], [ 35.19475, 32.20225 ], [ 35.195000000000107, 32.20225 ], [ 35.195000000000107, 32.202333333333456 ], [ 35.195225677490328, 32.20248246765135 ], [ 35.195380116780655, 32.202447845459119 ], [ 35.195450703938832, 32.202528091430736 ], [ 35.19525, 32.202666666666687 ], [ 35.195317563374829, 32.20280259195971 ], [ 35.195056320190417, 32.202861328124982 ], [ 35.195000000000107, 32.202750000000151 ], [ 35.194944661458351, 32.202777994791688 ], [ 35.194888671875106, 32.20288867187503 ], [ 35.194708574930814, 32.202979777018356 ], [ 35.194624786376892, 32.203270118713419 ], [ 35.194416666666655, 32.203166666666675 ] ], [ [ 35.195000000000107, 32.203250000000139 ], [ 35.194883000691732, 32.203159690857035 ], [ 35.195079790751208, 32.203047032674135 ], [ 35.195000000000107, 32.203250000000139 ], [ 35.195101603190153, 32.203278526306235 ], [ 35.195028526306203, 32.203351603190185 ], [ 35.195000000000107, 32.203250000000139 ] ], [ [ 35.197398396810001, 32.203278526306235 ], [ 35.1975, 32.203250000000139 ], [ 35.197471473693895, 32.203351603190185 ], [ 35.197398396810001, 32.203278526306235 ] ], [ [ 35.199641581217463, 32.203361328125141 ], [ 35.1995553385417, 32.203201721191419 ], [ 35.199833333333345, 32.203166666666675 ], [ 35.199900889078833, 32.203302571614586 ], [ 35.199641581217463, 32.203361328125141 ] ], [ [ 35.199916666666809, 32.203833333333421 ], [ 35.200000000000102, 32.203833333333421 ], [ 35.200000000000102, 32.203916666666714 ], [ 35.200166666666689, 32.203916666666714 ], [ 35.200166666666689, 32.204 ], [ 35.200233098348008, 32.20413364410399 ], [ 35.200098475138361, 32.204194661458359 ], [ 35.200000000000102, 32.204 ], [ 35.200000000000102, 32.203916666666714 ], [ 35.199916666666809, 32.203916666666714 ], [ 35.199916666666809, 32.203833333333421 ], [ 35.199775998433495, 32.203784029642861 ], [ 35.199227272033681, 32.203805778503522 ], [ 35.20004354349777, 32.203547348022596 ], [ 35.200030151367173, 32.203209482828811 ], [ 35.200330566406365, 32.203126589457213 ], [ 35.200456743876259, 32.203574826558508 ], [ 35.200031415303499, 32.203709487915035 ], [ 35.199916666666809, 32.203833333333421 ] ], [ [ 35.200481730143338, 32.20369519297293 ], [ 35.200583333333384, 32.203666666666606 ], [ 35.200554807027288, 32.203768269856823 ], [ 35.200481730143338, 32.20369519297293 ] ], [ [ 35.200634895324697, 32.203237589518267 ], [ 35.20075, 32.203166666666675 ], [ 35.200788818359342, 32.203331487019909 ], [ 35.201040506998709, 32.203253094991055 ], [ 35.201115104675353, 32.203446576436306 ], [ 35.200705444335938, 32.203586179097499 ], [ 35.200634895324697, 32.203237589518267 ] ], [ [ 35.207833333333383, 32.203416666666726 ], [ 35.207833333333383, 32.203333333333433 ], [ 35.207916666666677, 32.203333333333433 ], [ 35.207916666666677, 32.203416666666726 ], [ 35.207833333333383, 32.203416666666726 ] ], [ [ 35.201416666666717, 32.203250000000139 ], [ 35.201201789855986, 32.203302777608371 ], [ 35.201132629394635, 32.20308103434246 ], [ 35.201380900065146, 32.202909622192408 ], [ 35.201617370605561, 32.203023824056004 ], [ 35.20136183166511, 32.203119443257663 ], [ 35.201416666666717, 32.203250000000139 ], [ 35.201518269856763, 32.203278526306235 ], [ 35.201445192972869, 32.203351603190185 ], [ 35.201416666666717, 32.203250000000139 ] ], [ [ 35.201594568888424, 32.202938898722437 ], [ 35.201666666666654, 32.2025 ], [ 35.201888671874997, 32.202388671875042 ], [ 35.201916666666705, 32.20225 ], [ 35.202216814677001, 32.202181823730541 ], [ 35.202187566121438, 32.202416956583647 ], [ 35.202250000000106, 32.202916666666738 ], [ 35.202250000000106, 32.203 ], [ 35.201897356669235, 32.203057927449549 ], [ 35.201594568888424, 32.202938898722437 ] ], [ [ 35.207833333333383, 32.20225 ], [ 35.207536303202403, 32.202130366007509 ], [ 35.207402842203862, 32.201804275512814 ], [ 35.207083333333287, 32.20175 ], [ 35.207119636535708, 32.201536300659313 ], [ 35.207760729471943, 32.201427393595509 ], [ 35.207896329244079, 32.201251719156915 ], [ 35.20829166666681, 32.201310139973941 ], [ 35.208528521219989, 32.201275136311892 ], [ 35.208735432942774, 32.20139994812024 ], [ 35.208685803731271, 32.201735788981182 ], [ 35.208454068501908, 32.201701543172305 ], [ 35.20823630269382, 32.20198367309581 ], [ 35.207869636535577, 32.202202967325888 ], [ 35.207833333333383, 32.20225 ] ], [ [ 35.20908333333341, 32.201833333333468 ], [ 35.20896439615899, 32.201734537760501 ], [ 35.209066034952912, 32.201462188720825 ], [ 35.209166666666704, 32.201583333333417 ], [ 35.209138671874996, 32.201722005208467 ], [ 35.20908333333341, 32.201833333333468 ] ], [ [ 35.20221396382658, 32.201295242309641 ], [ 35.202139785766633, 32.201370391845842 ], [ 35.202046274820987, 32.201013071696025 ], [ 35.202166666666642, 32.200916666666672 ], [ 35.20221396382658, 32.201295242309641 ] ], [ [ 35.198938425699794, 32.20087171936035 ], [ 35.198724362691223, 32.200944661458379 ], [ 35.198638671875017, 32.200783126831084 ], [ 35.199000000000126, 32.20075 ], [ 35.198938425699794, 32.20087171936035 ] ], [ [ 35.202138140360489, 32.200851603190245 ], [ 35.202065063476596, 32.200778528849355 ], [ 35.202166666666642, 32.20075 ], [ 35.202138140360489, 32.200851603190245 ] ], [ [ 35.198083333333273, 32.20075 ], [ 35.197909548441601, 32.200832901000979 ], [ 35.197803827921575, 32.20057849121099 ], [ 35.198043464660657, 32.20067726135261 ], [ 35.198083333333273, 32.20075 ], [ 35.198357912699464, 32.200785680135141 ], [ 35.198142369588311, 32.200862080891966 ], [ 35.198083333333273, 32.20075 ] ], [ [ 35.196416666666778, 32.200833333333321 ], [ 35.196416666666778, 32.200916666666672 ], [ 35.196305989583436, 32.200972656250087 ], [ 35.196250000000134, 32.201083333333429 ], [ 35.196083333333377, 32.201000000000136 ], [ 35.196111328125085, 32.200944661458379 ], [ 35.196222005208426, 32.200888671875077 ], [ 35.196283487955839, 32.200767135620254 ], [ 35.196416666666778, 32.200833333333321 ] ], [ [ 35.19697298685719, 32.200777994791792 ], [ 35.196916666666709, 32.200666666666734 ], [ 35.197043576558372, 32.20060358174652 ], [ 35.197194661458354, 32.200703084309851 ], [ 35.19697298685719, 32.200777994791792 ] ], [ [ 35.19525, 32.20075 ], [ 35.195316047668484, 32.200783411661916 ], [ 35.19520067087808, 32.201019658406608 ], [ 35.195166666666694, 32.20075 ], [ 35.195208333333255, 32.200556304931695 ], [ 35.19525, 32.20075 ] ], [ [ 35.195558359782012, 32.201046346028647 ], [ 35.195666666666682, 32.201000000000136 ], [ 35.195633288065665, 32.201189376831167 ], [ 35.195558359782012, 32.201046346028647 ] ], [ [ 35.19756402842205, 32.200870875040664 ], [ 35.19775, 32.200833333333321 ], [ 35.197817838033075, 32.200969802856491 ], [ 35.197487297058217, 32.201027994791673 ], [ 35.19756402842205, 32.200870875040664 ] ], [ [ 35.199705233256111, 32.20103856913255 ], [ 35.199833333333345, 32.201000000000136 ], [ 35.199950091044172, 32.201317942301387 ], [ 35.199461433410704, 32.201271687825624 ], [ 35.199628100077348, 32.201128097534308 ], [ 35.199705233256111, 32.20103856913255 ] ], [ [ 35.198416666666674, 32.201083333333429 ], [ 35.198563913981104, 32.201378519694117 ], [ 35.198508046468191, 32.201444661458368 ], [ 35.198138671875029, 32.20111838785806 ], [ 35.198416666666674, 32.201083333333429 ] ], [ [ 35.198083333333273, 32.201166666666722 ], [ 35.198288749694882, 32.201711914062571 ], [ 35.198375000000112, 32.201704986572338 ], [ 35.198606338501008, 32.201723571777393 ], [ 35.198789347330774, 32.201621465047197 ], [ 35.19888471221924, 32.201629130045603 ], [ 35.198868303934717, 32.201833333333468 ], [ 35.198878580729229, 32.201961217244616 ], [ 35.198702466328996, 32.202039805094444 ], [ 35.198794766743958, 32.202205235799283 ], [ 35.198871899922722, 32.202378097534165 ], [ 35.198961868286176, 32.202539347330799 ], [ 35.19895366923015, 32.202641367594481 ], [ 35.198654271443786, 32.202617309570314 ], [ 35.198544766744078, 32.20237190246587 ], [ 35.198444773356073, 32.20219268290208 ], [ 35.198133171081622, 32.202217722574972 ], [ 35.197846956888839, 32.202058029174793 ], [ 35.197461433410638, 32.201420216878319 ], [ 35.197878100077332, 32.201294764200895 ], [ 35.198083333333273, 32.201166666666722 ] ], [ [ 35.201, 32.202166666666699 ], [ 35.201, 32.201833333333468 ], [ 35.201083333333372, 32.201833333333468 ], [ 35.201288439432915, 32.201895085652666 ], [ 35.201166666666666, 32.202000000000112 ], [ 35.201166666666666, 32.202166666666699 ], [ 35.201, 32.202166666666699 ] ], [ [ 35.20172200520841, 32.201955963134708 ], [ 35.201916666666705, 32.201916666666591 ], [ 35.20198360951747, 32.202051340739047 ], [ 35.201809539794908, 32.202111328125113 ], [ 35.20172200520841, 32.201955963134708 ] ], [ [ 35.19975, 32.201833333333468 ], [ 35.199721473693899, 32.201934936523514 ], [ 35.199648396810005, 32.201861862182625 ], [ 35.19975, 32.201833333333468 ] ], [ [ 35.199333333333357, 32.20175 ], [ 35.199299954732282, 32.201939376831206 ], [ 35.19922502644863, 32.201796346028686 ], [ 35.199333333333357, 32.20175 ] ], [ [ 35.200803827921675, 32.201756006876622 ], [ 35.200927263895608, 32.20145653788245 ], [ 35.201, 32.201416666666603 ], [ 35.20096370951336, 32.201687876383517 ], [ 35.200803827921675, 32.201756006876622 ] ], [ [ 35.201648396809901, 32.201528528849281 ], [ 35.201750000000118, 32.201500000000124 ], [ 35.201721473693851, 32.20160160319017 ], [ 35.201648396809901, 32.201528528849281 ] ], [ [ 35.200520360310861, 32.20154194132499 ], [ 35.200269945780519, 32.201611328125125 ], [ 35.200138671874981, 32.201368387858111 ], [ 35.200416666666797, 32.201333333333309 ], [ 35.200520360310861, 32.20154194132499 ] ], [ [ 35.200143203735365, 32.201125188191838 ], [ 35.20025, 32.201083333333429 ], [ 35.200333333333276, 32.201083333333429 ], [ 35.200294209798301, 32.201183161417703 ], [ 35.200143203735365, 32.201125188191838 ] ], [ [ 35.19814839680987, 32.200611862182768 ], [ 35.19825, 32.200583333333441 ], [ 35.198221473693764, 32.200684936523487 ], [ 35.19814839680987, 32.200611862182768 ] ], [ [ 35.201166666666666, 32.202750000000151 ], [ 35.201243392944434, 32.202945175170953 ], [ 35.201047030131122, 32.202842341105224 ], [ 35.201166666666666, 32.202750000000151 ] ], [ [ 35.198916666666662, 32.203166666666675 ], [ 35.198871386210101, 32.203272476196332 ], [ 35.198725026448642, 32.203200444539391 ], [ 35.198916666666662, 32.203166666666675 ] ], [ [ 35.199141105651904, 32.203713528950971 ], [ 35.198895545959545, 32.203784037272158 ], [ 35.198799296061338, 32.203551506042459 ], [ 35.199000000000126, 32.2035 ], [ 35.199141105651904, 32.203713528950971 ] ], [ [ 35.196163480123005, 32.203545522054071 ], [ 35.19645447794602, 32.203712188720829 ], [ 35.196634951273666, 32.203790456136176 ], [ 35.196492291768493, 32.203908958435136 ], [ 35.196416666666778, 32.204 ], [ 35.196250000000134, 32.204 ], [ 35.19616666666667, 32.204 ], [ 35.19616666666667, 32.204083333333472 ], [ 35.195800127665223, 32.204177396138505 ], [ 35.195715962727775, 32.204299296061208 ], [ 35.195666666666682, 32.204333333333409 ], [ 35.195583333333389, 32.204333333333409 ], [ 35.195583333333389, 32.204666666666753 ], [ 35.1955, 32.204666666666753 ], [ 35.195277994791752, 32.204555338541752 ], [ 35.19525, 32.204416666666702 ], [ 35.195472005208387, 32.204305338541644 ], [ 35.1955, 32.204166666666595 ], [ 35.195878855387491, 32.204045522054059 ], [ 35.196037811279325, 32.204003186543844 ], [ 35.195867780049696, 32.203706309000665 ], [ 35.196163480123005, 32.203545522054071 ] ], [ [ 35.194400276184069, 32.204218007405586 ], [ 35.194226206461508, 32.204277994791653 ], [ 35.19413867187501, 32.204122632344649 ], [ 35.194333333333361, 32.204083333333472 ], [ 35.194400276184069, 32.204218007405586 ] ], [ [ 35.191166666666675, 32.204250000000116 ], [ 35.191166666666675, 32.204333333333409 ], [ 35.191083333333381, 32.204333333333409 ], [ 35.19097265625004, 32.204277343750107 ], [ 35.190860677083322, 32.20405598958348 ], [ 35.190694661458451, 32.20397200520847 ], [ 35.190666666666687, 32.203916666666714 ], [ 35.190981521606489, 32.203798360188841 ], [ 35.191166666666675, 32.204250000000116 ] ], [ [ 35.191916666666771, 32.204 ], [ 35.191916666666771, 32.203833333333421 ], [ 35.191950703938744, 32.203784037272158 ], [ 35.192049296061327, 32.203715962727927 ], [ 35.192128494262761, 32.20340735117594 ], [ 35.192291666666677, 32.203643681844028 ], [ 35.192387898763116, 32.203504302978615 ], [ 35.192617370605547, 32.203836659749356 ], [ 35.192371276855511, 32.20378149159751 ], [ 35.192113159179655, 32.203949574788453 ], [ 35.191916666666771, 32.204 ], [ 35.191916666666771, 32.204083333333472 ], [ 35.19183333333325, 32.204083333333472 ], [ 35.191750000000127, 32.204083333333472 ], [ 35.191750000000127, 32.204 ], [ 35.191916666666771, 32.204 ] ], [ [ 35.19266666666681, 32.203250000000139 ], [ 35.192549296061316, 32.202772150675571 ], [ 35.192791188557919, 32.202658004760792 ], [ 35.193166666666798, 32.202833333333444 ], [ 35.19325, 32.202833333333444 ], [ 35.19325, 32.202916666666738 ], [ 35.19369927724216, 32.203229482014933 ], [ 35.192998613993325, 32.203371899922615 ], [ 35.19266666666681, 32.203250000000139 ], [ 35.192601198832278, 32.203379414876281 ], [ 35.192416666666702, 32.203416666666726 ], [ 35.192222969055194, 32.203375 ], [ 35.192416666666702, 32.203333333333433 ], [ 35.192472005208458, 32.203305338541725 ], [ 35.1925334879557, 32.20318379974367 ], [ 35.19266666666681, 32.203250000000139 ] ], [ [ 35.191791666666688, 32.203726603190091 ], [ 35.19183333333325, 32.203833333333421 ], [ 35.191750000000127, 32.203833333333421 ], [ 35.191791666666688, 32.203726603190091 ] ], [ [ 35.1908781979879, 32.20444804382339 ], [ 35.191034037272118, 32.204541554768866 ], [ 35.190666666666687, 32.20458333333346 ], [ 35.190666666666687, 32.2045 ], [ 35.1908781979879, 32.20444804382339 ] ], [ [ 35.1950833333334, 32.20458333333346 ], [ 35.195165092468358, 32.20478229014077 ], [ 35.194881874084501, 32.204636482238811 ], [ 35.1950833333334, 32.20458333333346 ] ], [ [ 35.193333333333385, 32.20475 ], [ 35.193410059610983, 32.204945175171019 ], [ 35.19321369679767, 32.204842343648352 ], [ 35.193333333333385, 32.20475 ] ], [ [ 35.194148396810021, 32.204945192972957 ], [ 35.19425, 32.204916666666691 ], [ 35.194221473693915, 32.205018269856907 ], [ 35.194148396810021, 32.204945192972957 ] ], [ [ 35.194297030131111, 32.204925676981645 ], [ 35.194416666666655, 32.204833333333397 ], [ 35.194493392944423, 32.205028508504313 ], [ 35.194297030131111, 32.204925676981645 ] ], [ [ 35.199971249898226, 32.204952888488833 ], [ 35.20025, 32.204916666666691 ], [ 35.200193534851167, 32.205023869832473 ], [ 35.199971249898226, 32.204952888488833 ] ], [ [ 35.19463814036061, 32.204851603190093 ], [ 35.194565063476489, 32.2047785263062 ], [ 35.194666666666706, 32.20475 ], [ 35.19463814036061, 32.204851603190093 ] ], [ [ 35.206750000000113, 32.204833333333397 ], [ 35.206750000000113, 32.20475 ], [ 35.206941596984962, 32.204784978230862 ], [ 35.206833333333407, 32.204833333333397 ], [ 35.206750000000113, 32.204833333333397 ] ], [ [ 35.199083333333419, 32.2045 ], [ 35.198981730143203, 32.2044714736939 ], [ 35.199054807027323, 32.20439839680995 ], [ 35.199083333333419, 32.2045 ], [ 35.199166666666713, 32.2045 ], [ 35.19925, 32.20438373311373 ], [ 35.199333333333357, 32.2045 ], [ 35.199469881693517, 32.204706634521585 ], [ 35.19941666666665, 32.204833333333397 ], [ 35.199305338541592, 32.204777994791812 ], [ 35.199166666666713, 32.20475 ], [ 35.199111328125014, 32.204638671875045 ], [ 35.199083333333419, 32.2045 ] ], [ [ 35.199725026448618, 32.204450444539475 ], [ 35.199916666666809, 32.204416666666702 ], [ 35.199871386210248, 32.20452247619636 ], [ 35.199725026448618, 32.204450444539475 ] ], [ [ 35.200148396809936, 32.204445192972798 ], [ 35.20025, 32.204416666666702 ], [ 35.200221473693887, 32.204518269856749 ], [ 35.200148396809936, 32.204445192972798 ] ], [ [ 35.196666666666658, 32.204416666666702 ], [ 35.196746180216508, 32.204594167073594 ], [ 35.196468228658034, 32.204538935343464 ], [ 35.196666666666658, 32.204416666666702 ] ], [ [ 35.19723055775961, 32.204271197001219 ], [ 35.196900382995636, 32.203943326314345 ], [ 35.197083333333353, 32.203916666666714 ], [ 35.197046274820991, 32.203870391845783 ], [ 35.196787058512484, 32.203796274821059 ], [ 35.19671294148759, 32.203662261963018 ], [ 35.197127998352016, 32.203713890075619 ], [ 35.197406649271784, 32.203550092061391 ], [ 35.197606127421182, 32.203799196879061 ], [ 35.19779166666666, 32.203776117960729 ], [ 35.198055074056072, 32.203808883667136 ], [ 35.198028772990028, 32.204020317077607 ], [ 35.197666666666805, 32.204083333333472 ], [ 35.197645469665645, 32.204228802998955 ], [ 35.19723055775961, 32.204271197001219 ] ], [ [ 35.198134895324756, 32.203953681945904 ], [ 35.198583333333261, 32.203916666666714 ], [ 35.198615104675298, 32.203968228658027 ], [ 35.199030077616442, 32.204042900085426 ], [ 35.198514551798496, 32.204115104675338 ], [ 35.198134895324756, 32.203953681945904 ] ], [ [ 35.199047030131055, 32.203925676981669 ], [ 35.199166666666713, 32.203833333333421 ], [ 35.199243392944311, 32.204028508504166 ], [ 35.199047030131055, 32.203925676981669 ] ], [ [ 35.193833333333373, 32.202333333333456 ], [ 35.193910059610971, 32.202528508504258 ], [ 35.193713696797658, 32.20242567443853 ], [ 35.193833333333373, 32.202333333333456 ] ], [ [ 35.195315063476585, 32.200445195516011 ], [ 35.195416666666802, 32.200416666666683 ], [ 35.195388140360478, 32.2005182698569 ], [ 35.195315063476585, 32.200445195516011 ] ], [ [ 35.197333333333404, 32.199916666666695 ], [ 35.197361859639557, 32.199815063476649 ], [ 35.19743493652345, 32.199888137817368 ], [ 35.197333333333404, 32.199916666666695 ], [ 35.197304807027308, 32.200018269856912 ], [ 35.197231730143358, 32.199945195516023 ], [ 35.197333333333404, 32.199916666666695 ] ], [ [ 35.194666666666706, 32.199916666666695 ], [ 35.19463814036061, 32.200018269856912 ], [ 35.194565063476489, 32.199945195516023 ], [ 35.194666666666706, 32.199916666666695 ] ], [ [ 35.197333333333404, 32.199166666666599 ], [ 35.197231730143358, 32.199138137817499 ], [ 35.197304807027308, 32.19906506347661 ], [ 35.197333333333404, 32.199166666666599 ], [ 35.197522710164435, 32.199200047810848 ], [ 35.197379681905147, 32.199274973551496 ], [ 35.197333333333404, 32.199166666666599 ] ], [ [ 35.2069166666667, 32.200666666666734 ], [ 35.2069166666667, 32.20033333333339 ], [ 35.207333333333395, 32.20033333333339 ], [ 35.207333333333395, 32.200416666666683 ], [ 35.207166666666808, 32.200416666666683 ], [ 35.207166666666808, 32.200666666666734 ], [ 35.2069166666667, 32.200666666666734 ] ], [ [ 35.206416666666712, 32.200500000000147 ], [ 35.206416666666712, 32.200666666666734 ], [ 35.206333333333419, 32.200666666666734 ], [ 35.206194661458369, 32.200638671875026 ], [ 35.206083333333368, 32.200416666666683 ], [ 35.205916666666724, 32.200416666666683 ], [ 35.205916666666724, 32.20033333333339 ], [ 35.205750000000137, 32.20033333333339 ], [ 35.205750000000137, 32.20025 ], [ 35.205638107299876, 32.199994842529293 ], [ 35.206, 32.200166666666746 ], [ 35.206053268432754, 32.200056976318422 ], [ 35.206277239481722, 32.200196304321423 ], [ 35.206166666666661, 32.20025 ], [ 35.206166666666661, 32.20033333333339 ], [ 35.206351198832181, 32.200370585123835 ], [ 35.206416666666712, 32.200500000000147 ] ], [ [ 35.203, 32.20025 ], [ 35.20296502176916, 32.200441594441713 ], [ 35.202916666666681, 32.20033333333339 ], [ 35.20275, 32.20033333333339 ], [ 35.20275, 32.200166666666746 ], [ 35.203, 32.200166666666746 ], [ 35.203106730143304, 32.200208333333308 ], [ 35.203, 32.20025 ] ], [ [ 35.201222005208422, 32.199701721191389 ], [ 35.2015, 32.199666666666587 ], [ 35.201566350301107, 32.199800145467236 ], [ 35.201436612447083, 32.19986132812511 ], [ 35.201222005208422, 32.199701721191389 ] ], [ [ 35.20583333333343, 32.1995 ], [ 35.205666666666673, 32.1995 ], [ 35.205750000000137, 32.199383733113734 ], [ 35.20583333333343, 32.1995 ], [ 35.206138671875124, 32.199527994791708 ], [ 35.206142639160248, 32.199694661458352 ], [ 35.205862630208401, 32.199557912190755 ], [ 35.20583333333343, 32.1995 ] ], [ [ 35.203975026448518, 32.199033777872785 ], [ 35.204166666666708, 32.199 ], [ 35.204121386210204, 32.199105809529669 ], [ 35.203975026448518, 32.199033777872785 ] ], [ [ 35.20325, 32.199 ], [ 35.203139322916741, 32.198944010416767 ], [ 35.203083333333268, 32.198833333333425 ], [ 35.203500000000133, 32.198666666666668 ], [ 35.20373435974119, 32.198980651855607 ], [ 35.203540479024355, 32.198952000935947 ], [ 35.203333333333376, 32.199 ], [ 35.20325, 32.199 ] ], [ [ 35.204391693115213, 32.198533777872797 ], [ 35.204583333333403, 32.1985 ], [ 35.204538052876842, 32.198605809529738 ], [ 35.204391693115213, 32.198533777872797 ] ], [ [ 35.205047396342025, 32.198307927449662 ], [ 35.204875, 32.198286483764775 ], [ 35.204775220235319, 32.198298894246477 ], [ 35.204804163614938, 32.198066187540689 ], [ 35.205333333333272, 32.198 ], [ 35.205411661783842, 32.198203776041794 ], [ 35.205047396342025, 32.198307927449662 ] ], [ [ 35.205628486633316, 32.198194661458388 ], [ 35.205555338541615, 32.197955963134689 ], [ 35.205750000000137, 32.197916666666742 ], [ 35.205852872212745, 32.198123621622699 ], [ 35.205628486633316, 32.198194661458388 ] ], [ [ 35.208391693115232, 32.200617111206043 ], [ 35.208583333333422, 32.200583333333441 ], [ 35.208538052876918, 32.200689142863098 ], [ 35.208391693115232, 32.200617111206043 ] ], [ [ 35.194222005208303, 32.205138671875034 ], [ 35.194034281412883, 32.205233637491915 ], [ 35.193972005208423, 32.205118387858079 ], [ 35.19425, 32.205083333333448 ], [ 35.194222005208303, 32.205138671875034 ] ], [ [ 35.194416666666655, 32.20808333333332 ], [ 35.194416666666655, 32.208166666666614 ], [ 35.19425, 32.208166666666614 ], [ 35.19425, 32.20808333333332 ], [ 35.194416666666655, 32.20808333333332 ] ], [ [ 35.190583333333393, 32.205416666666679 ], [ 35.190385819753146, 32.2056222432455 ], [ 35.190125832875594, 32.205505978902295 ], [ 35.190583333333393, 32.205416666666679 ] ], [ [ 35.188166666666802, 32.207416666666745 ], [ 35.188138139089006, 32.207518269856791 ], [ 35.188065064748116, 32.207445192972898 ], [ 35.188166666666802, 32.207416666666745 ] ], [ [ 35.18875, 32.207916666666733 ], [ 35.18875, 32.208 ], [ 35.188666666666791, 32.208 ], [ 35.188666666666791, 32.207916666666733 ], [ 35.18875, 32.207916666666733 ] ], [ [ 35.187416666666763, 32.2085 ], [ 35.18758333333335, 32.208583333333308 ], [ 35.18758333333335, 32.208666666666602 ], [ 35.187416666666763, 32.208666666666602 ], [ 35.187305989583422, 32.208610677083357 ], [ 35.18725000000012, 32.2085 ], [ 35.187141320546459, 32.208438034057622 ], [ 35.187304384867389, 32.208219739278206 ], [ 35.187416666666763, 32.208416666666722 ], [ 35.187416666666763, 32.2085 ] ], [ [ 35.187083333333362, 32.208583333333308 ], [ 35.187054805755736, 32.208684936523525 ], [ 35.186981731414846, 32.208611859639632 ], [ 35.187083333333362, 32.208583333333308 ] ], [ [ 35.187693714141858, 32.209358757019118 ], [ 35.187458443959656, 32.209450703938899 ], [ 35.187416666666763, 32.209083333333467 ], [ 35.187501846313523, 32.208972979227724 ], [ 35.187833333333401, 32.20891666666671 ], [ 35.187916666666695, 32.20891666666671 ], [ 35.187784036000608, 32.209117370605497 ], [ 35.187693714141858, 32.209358757019118 ] ], [ [ 35.185541666666666, 32.210143269856758 ], [ 35.185583333333398, 32.21025 ], [ 35.185772660573321, 32.210288220723498 ], [ 35.185556318918884, 32.210361328125089 ], [ 35.185500000000104, 32.21025 ], [ 35.185541666666666, 32.210143269856758 ] ], [ [ 35.185893268585289, 32.210291666666762 ], [ 35.186, 32.21025 ], [ 35.186193696339956, 32.210291666666762 ], [ 35.186, 32.210333333333324 ], [ 35.185893268585289, 32.210291666666762 ] ], [ [ 35.185215963999553, 32.211549296061207 ], [ 35.184965963999446, 32.211581036885718 ], [ 35.185132630666033, 32.211465962727857 ], [ 35.18520070266726, 32.211284037272208 ], [ 35.185302501678393, 32.211213750203399 ], [ 35.18525, 32.211000000000126 ], [ 35.185305338541582, 32.210972005208362 ], [ 35.185375, 32.210834302266505 ], [ 35.185472656250113, 32.211027343750118 ], [ 35.185583333333398, 32.21108333333342 ], [ 35.185666666666691, 32.21125 ], [ 35.185632630666191, 32.21129929606127 ], [ 35.18545070266731, 32.211367370605501 ], [ 35.185215963999553, 32.211549296061207 ] ], [ [ 35.184916666666652, 32.211666666666702 ], [ 35.184916666666652, 32.21175 ], [ 35.184809935251849, 32.211708333333434 ], [ 35.184916666666652, 32.211666666666702 ] ], [ [ 35.18475, 32.212 ], [ 35.184715963999565, 32.212049296061139 ], [ 35.18447966257736, 32.212212448120113 ], [ 35.183962476094564, 32.21234517161065 ], [ 35.183916666666676, 32.21216666666669 ], [ 35.184, 32.21216666666669 ], [ 35.184, 32.212083333333339 ], [ 35.184083333333319, 32.212083333333339 ], [ 35.184083333333319, 32.21216666666669 ], [ 35.184194661458321, 32.212111328125104 ], [ 35.18447200520842, 32.212055338541802 ], [ 35.184527994791722, 32.21194466145829 ], [ 35.184693681081114, 32.211888671875045 ], [ 35.18475, 32.212 ] ], [ [ 35.186054583231737, 32.212369555155419 ], [ 35.186333333333323, 32.212333333333447 ], [ 35.186413948059226, 32.212498868306568 ], [ 35.186191712697394, 32.212612083435204 ], [ 35.186054583231737, 32.212369555155419 ] ], [ [ 35.186166666666679, 32.212916666666729 ], [ 35.186065064748163, 32.212888140360633 ], [ 35.186138139089053, 32.212815063476683 ], [ 35.186166666666679, 32.212916666666729 ], [ 35.186289232889806, 32.21286848195399 ], [ 35.186528868357357, 32.212903895060208 ], [ 35.186622811635402, 32.212782188415588 ], [ 35.187039464314921, 32.212618392944364 ], [ 35.187333333333413, 32.212666666666621 ], [ 35.187388671874999, 32.212777994791679 ], [ 35.187416666666763, 32.212916666666729 ], [ 35.187083333333362, 32.212916666666729 ], [ 35.187, 32.212916666666729 ], [ 35.187, 32.213 ], [ 35.186916666666775, 32.213 ], [ 35.186916666666775, 32.213083333333316 ], [ 35.18675, 32.213083333333316 ], [ 35.18675, 32.213166666666609 ], [ 35.186627319335969, 32.213115140279228 ], [ 35.186497749328623, 32.213144185384181 ], [ 35.18625, 32.213083333333316 ], [ 35.186166666666679, 32.212916666666729 ] ], [ [ 35.18625, 32.213166666666609 ], [ 35.18625, 32.21325000000013 ], [ 35.186333333333323, 32.21325000000013 ], [ 35.186416666666787, 32.21325000000013 ], [ 35.186416666666787, 32.213416666666717 ], [ 35.186416666666787, 32.2135 ], [ 35.186416666666787, 32.213666666666768 ], [ 35.186333333333323, 32.213666666666768 ], [ 35.186166666666679, 32.213416666666717 ], [ 35.186166666666679, 32.213166666666609 ], [ 35.18625, 32.213166666666609 ] ], [ [ 35.186549297332874, 32.213611427307228 ], [ 35.186621761322158, 32.213351626078349 ], [ 35.186700702667167, 32.21346596272798 ], [ 35.187, 32.213666666666768 ], [ 35.187, 32.21375 ], [ 35.187, 32.213833333333412 ], [ 35.186833333333254, 32.213833333333412 ], [ 35.186799297332755, 32.213784037272092 ], [ 35.186549297332874, 32.213611427307228 ] ], [ [ 35.180333333333351, 32.213833333333412 ], [ 35.180666666666752, 32.214 ], [ 35.180666666666752, 32.214083333333463 ], [ 35.180666666666752, 32.214166666666756 ], [ 35.180500000000109, 32.214166666666756 ], [ 35.180500000000109, 32.214333333333343 ], [ 35.180333333333351, 32.214333333333343 ], [ 35.18025, 32.214333333333343 ], [ 35.18025, 32.21425 ], [ 35.18025, 32.214166666666756 ], [ 35.180166666666764, 32.214166666666756 ], [ 35.180166666666764, 32.213916666666705 ], [ 35.180333333333351, 32.213916666666705 ], [ 35.180333333333351, 32.213833333333412 ] ], [ [ 35.186666666666667, 32.214333333333343 ], [ 35.186853731791302, 32.214254763285282 ], [ 35.186916666666775, 32.2145 ], [ 35.186694661458432, 32.214388671875099 ], [ 35.186666666666667, 32.214333333333343 ] ], [ [ 35.179916666666657, 32.2145 ], [ 35.179916666666657, 32.214666666666744 ], [ 35.179637252807709, 32.214781486511242 ], [ 35.179548541386907, 32.214474095662467 ], [ 35.179832002003991, 32.214381874084495 ], [ 35.179916666666657, 32.2145 ] ], [ [ 35.18475, 32.214833333333331 ], [ 35.184791666666797, 32.214726603190229 ], [ 35.184833333333358, 32.214833333333331 ], [ 35.184955923716359, 32.214782956441354 ], [ 35.185125, 32.214816368103072 ], [ 35.185442263285324, 32.21475367482509 ], [ 35.18556573486336, 32.215369552612287 ], [ 35.185500000000104, 32.215416666666613 ], [ 35.185616176605322, 32.215693267822303 ], [ 35.185348688761394, 32.215784037272215 ], [ 35.185384340922042, 32.215625 ], [ 35.185358247121144, 32.215508603413923 ], [ 35.185000000000116, 32.215416666666613 ], [ 35.18475, 32.215416666666613 ], [ 35.18475, 32.215333333333319 ], [ 35.184666666666772, 32.215333333333319 ], [ 35.184489295959452, 32.215064926147591 ], [ 35.184681926727364, 32.214931927998919 ], [ 35.18475, 32.214833333333331 ] ], [ [ 35.186083333333386, 32.215583333333427 ], [ 35.186083333333386, 32.215333333333319 ], [ 35.186284435272228, 32.215519663492785 ], [ 35.186083333333386, 32.215583333333427 ] ], [ [ 35.18575, 32.212916666666729 ], [ 35.185851601918557, 32.212945192972825 ], [ 35.185778527577838, 32.213018269856775 ], [ 35.18575, 32.212916666666729 ], [ 35.185648398081469, 32.212888140360633 ], [ 35.185721472422358, 32.212815063476683 ], [ 35.18575, 32.212916666666729 ] ], [ [ 35.229055338541798, 32.191701721191521 ], [ 35.229333333333443, 32.19166666666672 ], [ 35.229305338541735, 32.191722005208476 ], [ 35.229117614746087, 32.191816970825187 ], [ 35.229055338541798, 32.191701721191521 ] ], [ [ 35.239666666666608, 32.191583333333426 ], [ 35.239666666666608, 32.191333333333375 ], [ 35.239833333333422, 32.191333333333375 ], [ 35.239833333333422, 32.191583333333426 ], [ 35.239666666666608, 32.191583333333426 ] ], [ [ 35.240479629516528, 32.19153703308109 ], [ 35.24037809753429, 32.191222412109482 ], [ 35.240880956014109, 32.190907445271819 ], [ 35.240864303588864, 32.190700241088962 ], [ 35.241, 32.19058333333345 ], [ 35.241128540039199, 32.190789276123041 ], [ 35.241118911743172, 32.190909088134902 ], [ 35.240737604777109, 32.191237604777086 ], [ 35.240479629516528, 32.19153703308109 ] ], [ [ 35.241461558024127, 32.190895085652699 ], [ 35.241666666666731, 32.190833333333387 ], [ 35.241583333333438, 32.191000000000145 ], [ 35.241461558024127, 32.190895085652699 ] ], [ [ 35.22825, 32.1905 ], [ 35.228204722086673, 32.190605809529643 ], [ 35.228058359781983, 32.190533777872758 ], [ 35.22825, 32.1905 ] ], [ [ 35.234856043497814, 32.190700047810822 ], [ 35.234713012695352, 32.19077497355147 ], [ 35.234666666666612, 32.190666666666743 ], [ 35.234856043497814, 32.190700047810822 ] ], [ [ 35.239333333333434, 32.19125 ], [ 35.239201853434281, 32.191308898925797 ], [ 35.239134897867871, 32.191165156046679 ], [ 35.239549687703573, 32.191023803710948 ], [ 35.239583333333314, 32.191166666666732 ], [ 35.239689641316716, 32.191218292236329 ], [ 35.239333333333434, 32.19125 ] ], [ [ 35.239840927124078, 32.18987199910481 ], [ 35.239597066243618, 32.189494364420568 ], [ 35.239290079752607, 32.189209920247436 ], [ 35.239083333333326, 32.188916666666728 ], [ 35.239083333333326, 32.188833333333434 ], [ 35.239333333333434, 32.188833333333434 ], [ 35.239376586914034, 32.188873413085958 ], [ 35.239537236531589, 32.189046798706102 ], [ 35.239709701538118, 32.189039962768618 ], [ 35.239875544230244, 32.189127716064604 ], [ 35.240028472900462, 32.18896266174329 ], [ 35.240134246826301, 32.189516682942724 ], [ 35.240119725545242, 32.189883046468196 ], [ 35.239840927124078, 32.18987199910481 ] ], [ [ 35.241979858398452, 32.189281768798935 ], [ 35.242128860473713, 32.188803395589275 ], [ 35.24225, 32.189 ], [ 35.24225, 32.189083333333372 ], [ 35.24225, 32.189166666666665 ], [ 35.242333333333477, 32.189166666666665 ], [ 35.2423015645345, 32.189218231201153 ], [ 35.241979858398452, 32.189281768798935 ] ], [ [ 35.231916666666677, 32.189166666666665 ], [ 35.231857045491608, 32.189398996988928 ], [ 35.231629887898805, 32.189348073323629 ], [ 35.231583333333447, 32.189166666666665 ], [ 35.231583333333447, 32.189083333333372 ], [ 35.23166666666674, 32.189083333333372 ], [ 35.23166666666674, 32.189166666666665 ], [ 35.231916666666677, 32.189166666666665 ] ], [ [ 35.230666666666593, 32.189333333333423 ], [ 35.230666666666593, 32.189416666666716 ], [ 35.2305, 32.189416666666716 ], [ 35.2305, 32.189250000000129 ], [ 35.230666666666593, 32.189250000000129 ], [ 35.230666666666593, 32.189333333333423 ] ], [ [ 35.23575, 32.189750000000117 ], [ 35.235685089111314, 32.189859491984123 ], [ 35.235385650634839, 32.18978737894696 ], [ 35.23575, 32.189750000000117 ] ], [ [ 35.237500000000125, 32.188666666666677 ], [ 35.237500000000125, 32.188583333333384 ], [ 35.237583333333419, 32.188583333333384 ], [ 35.237614852905267, 32.188490936279436 ], [ 35.237849685668948, 32.188723042805975 ], [ 35.237535659790069, 32.188771199544306 ], [ 35.237500000000125, 32.188666666666677 ] ], [ [ 35.241481730143221, 32.188611862182711 ], [ 35.241583333333438, 32.188583333333384 ], [ 35.24155480448411, 32.18868493652343 ], [ 35.241481730143221, 32.188611862182711 ] ], [ [ 35.2395, 32.1885 ], [ 35.239299357096286, 32.188314092000326 ], [ 35.239428710937545, 32.188126586913995 ], [ 35.2395, 32.1885 ], [ 35.239689376831052, 32.188533381144339 ], [ 35.239546346028703, 32.18860830688476 ], [ 35.2395, 32.1885 ] ], [ [ 35.237333333333311, 32.188166666666689 ], [ 35.237304804484154, 32.188268269856906 ], [ 35.237231730143264, 32.188195195516016 ], [ 35.237333333333311, 32.188166666666689 ] ], [ [ 35.235, 32.18825 ], [ 35.234971471150857, 32.188351603190199 ], [ 35.234898396809967, 32.18827852884931 ], [ 35.235, 32.18825 ] ], [ [ 35.237333333333311, 32.18841666666674 ], [ 35.237304804484154, 32.188518269856786 ], [ 35.237231730143264, 32.188445195515897 ], [ 35.237333333333311, 32.18841666666674 ] ], [ [ 35.239377344767377, 32.187776260376097 ], [ 35.2395, 32.187666666666701 ], [ 35.239539321899542, 32.187710678100643 ], [ 35.23969228108723, 32.187847345987961 ], [ 35.239377344767377, 32.187776260376097 ] ], [ [ 35.237725026448572, 32.187200444539485 ], [ 35.237916666666763, 32.187166666666712 ], [ 35.237871388753263, 32.18727247619637 ], [ 35.237725026448572, 32.187200444539485 ] ], [ [ 35.2485, 32.202833333333444 ], [ 35.248545277913536, 32.202727523803787 ], [ 35.248691640218226, 32.202799555460672 ], [ 35.2485, 32.202833333333444 ] ], [ [ 35.246798543294403, 32.202553151448626 ], [ 35.247, 32.2025 ], [ 35.247081756591797, 32.202698959350585 ], [ 35.246798543294403, 32.202553151448626 ] ], [ [ 35.246166666666738, 32.202166666666699 ], [ 35.246083333333445, 32.202166666666699 ], [ 35.246083333333445, 32.202083333333405 ], [ 35.246166666666738, 32.202083333333405 ], [ 35.246166666666738, 32.202166666666699 ], [ 35.246268269856785, 32.202195195516026 ], [ 35.246195195516066, 32.202268269856916 ], [ 35.246166666666738, 32.202166666666699 ] ], [ [ 35.246799952189235, 32.202106043497793 ], [ 35.246725026448587, 32.20196301269533 ], [ 35.246833333333313, 32.201916666666591 ], [ 35.246799952189235, 32.202106043497793 ] ], [ [ 35.244981730143252, 32.20144519551593 ], [ 35.245083333333469, 32.201416666666603 ], [ 35.245054804484141, 32.20151826985682 ], [ 35.244981730143252, 32.20144519551593 ] ], [ [ 35.246235046386744, 32.20136737060551 ], [ 35.246132629394538, 32.201164367675858 ], [ 35.24625, 32.201083333333429 ], [ 35.24639036051434, 32.201295730590914 ], [ 35.246235046386744, 32.20136737060551 ] ], [ [ 35.245916666666631, 32.201000000000136 ], [ 35.245888137817303, 32.201101603190182 ], [ 35.245815063476641, 32.201028528849292 ], [ 35.245916666666631, 32.201000000000136 ] ], [ [ 35.246700703938927, 32.205867370605517 ], [ 35.246630584716854, 32.205968925476157 ], [ 35.246539347330838, 32.205948473612523 ], [ 35.246416666666619, 32.206000000000131 ], [ 35.246469487508193, 32.205784940083902 ], [ 35.246333333333325, 32.20575 ], [ 35.246293253580859, 32.205706743876192 ], [ 35.246047159830823, 32.205590601603319 ], [ 35.246333333333325, 32.205500000000143 ], [ 35.246375, 32.205393269856813 ], [ 35.246416666666619, 32.205500000000143 ], [ 35.246830678304036, 32.205777628580677 ], [ 35.246700703938927, 32.205867370605517 ] ], [ [ 35.244666666666774, 32.205583333333436 ], [ 35.244621388753274, 32.205689142863093 ], [ 35.244475026448583, 32.205617111206038 ], [ 35.244666666666774, 32.205583333333436 ] ], [ [ 35.244898396809958, 32.205695192972826 ], [ 35.245, 32.20566666666673 ], [ 35.244971471150848, 32.205768269856776 ], [ 35.244898396809958, 32.205695192972826 ] ], [ [ 35.24375, 32.206083333333424 ], [ 35.24372147115082, 32.206184936523471 ], [ 35.243648396809931, 32.20611185963952 ], [ 35.24375, 32.206083333333424 ] ], [ [ 35.227249033610065, 32.216167416890585 ], [ 35.226969406127978, 32.216284037272203 ], [ 35.226882629394652, 32.215968172709267 ], [ 35.227083333333439, 32.215916666666772 ], [ 35.227249033610065, 32.216167416890585 ] ], [ [ 35.224472005208327, 32.216070630391584 ], [ 35.224721572876035, 32.21619251251235 ], [ 35.22475, 32.216333333333466 ], [ 35.224855550130201, 32.216378501892166 ], [ 35.224629679362067, 32.216441640218193 ], [ 35.224583333333385, 32.216333333333466 ], [ 35.224527994791799, 32.216305338541758 ], [ 35.224472005208327, 32.216070630391584 ] ], [ [ 35.226131779988691, 32.216210622151834 ], [ 35.2265, 32.216166666666709 ], [ 35.22657756551115, 32.21635963439951 ], [ 35.22609018452971, 32.216452214558842 ], [ 35.226131779988691, 32.216210622151834 ] ], [ [ 35.231, 32.216833333333454 ], [ 35.230943532307947, 32.216940536499067 ], [ 35.230721252441469, 32.216869555155426 ], [ 35.231, 32.216833333333454 ] ], [ [ 35.223333333333301, 32.216833333333454 ], [ 35.223304804483973, 32.216934936523501 ], [ 35.223231730143254, 32.21686185963955 ], [ 35.223333333333301, 32.216833333333454 ] ], [ [ 35.22388074747721, 32.217327870686916 ], [ 35.224165334065788, 32.216843737284421 ], [ 35.2245, 32.216885365804046 ], [ 35.224628153483081, 32.216869425455798 ], [ 35.224870391845798, 32.217030240376857 ], [ 35.224453725179103, 32.217120391845697 ], [ 35.224333333333448, 32.217166666666628 ], [ 35.224392588297576, 32.217298940022829 ], [ 35.224116978963309, 32.217392862955705 ], [ 35.224083333333397, 32.217250000000149 ], [ 35.22388074747721, 32.217327870686916 ] ], [ [ 35.193083333333334, 32.220416666666779 ], [ 35.193083333333334, 32.220583333333423 ], [ 35.19291666666669, 32.220583333333423 ], [ 35.19291666666669, 32.220416666666779 ], [ 35.192950154622395, 32.220350466410309 ], [ 35.193083333333334, 32.220416666666779 ] ], [ [ 35.191333333333262, 32.220666666666716 ], [ 35.191333333333262, 32.22075 ], [ 35.191166666666675, 32.22075 ], [ 35.191166666666675, 32.220666666666716 ], [ 35.191333333333262, 32.220666666666716 ] ], [ [ 35.193943697611417, 32.221022839864133 ], [ 35.193833333333373, 32.221083333333354 ], [ 35.19375, 32.221083333333354 ], [ 35.19375, 32.220916666666767 ], [ 35.193943697611417, 32.221022839864133 ] ], [ [ 35.19375, 32.221166666666704 ], [ 35.19375, 32.22125 ], [ 35.193666666666786, 32.22125 ], [ 35.193666666666786, 32.221166666666704 ], [ 35.19375, 32.221166666666704 ] ], [ [ 35.208666666666716, 32.2215 ], [ 35.20863814036062, 32.221601603190095 ], [ 35.208565063476499, 32.221528526306201 ], [ 35.208666666666716, 32.2215 ] ], [ [ 35.208416666666665, 32.221583333333342 ], [ 35.208518269856881, 32.221611859639495 ], [ 35.208445192972931, 32.221684936523559 ], [ 35.208416666666665, 32.221583333333342 ] ], [ [ 35.199864491780716, 32.222161626180025 ], [ 35.19975, 32.222250000000145 ], [ 35.19963932291671, 32.222194010416672 ], [ 35.199583333333408, 32.22208333333333 ], [ 35.199864491780716, 32.222161626180025 ] ], [ [ 35.198916666666662, 32.222250000000145 ], [ 35.198833333333369, 32.222416666666732 ], [ 35.198549296061231, 32.222343775431455 ], [ 35.198703852335711, 32.222197728475066 ], [ 35.198916666666662, 32.222250000000145 ] ], [ [ 35.20075, 32.222416666666732 ], [ 35.20075, 32.222333333333438 ], [ 35.200833333333264, 32.222333333333438 ], [ 35.200833333333264, 32.222416666666732 ], [ 35.20075, 32.222416666666732 ] ], [ [ 35.204052317301546, 32.222370712280281 ], [ 35.204416666666646, 32.222333333333438 ], [ 35.204351758321252, 32.222442822774383 ], [ 35.204052317301546, 32.222370712280281 ] ], [ [ 35.205141693115308, 32.222450444539504 ], [ 35.205333333333272, 32.222416666666732 ], [ 35.205288052876767, 32.222522476196389 ], [ 35.205141693115308, 32.222450444539504 ] ], [ [ 35.205547030131129, 32.22250901031498 ], [ 35.205666666666673, 32.222416666666732 ], [ 35.205743392944441, 32.222611841837704 ], [ 35.205547030131129, 32.22250901031498 ] ], [ [ 35.209459922790643, 32.222768770853747 ], [ 35.209650690714568, 32.222224492390922 ], [ 35.209833333333279, 32.222166666666624 ], [ 35.210005449930918, 32.222447769165058 ], [ 35.209802502950083, 32.222873410542888 ], [ 35.209459922790643, 32.222768770853747 ] ], [ [ 35.210315063476514, 32.222361859639534 ], [ 35.210416666666731, 32.222333333333438 ], [ 35.210388140360635, 32.222434936523484 ], [ 35.210315063476514, 32.222361859639534 ] ], [ [ 35.2069166666667, 32.222166666666624 ], [ 35.206888140360604, 32.222268269856841 ], [ 35.206815063476654, 32.222195192972947 ], [ 35.2069166666667, 32.222166666666624 ] ], [ [ 35.198244265238429, 32.222649464925269 ], [ 35.198619636535682, 32.222740989685121 ], [ 35.198440490722646, 32.222879264831647 ], [ 35.198465120951369, 32.223045931498234 ], [ 35.198416666666674, 32.223083333333477 ], [ 35.198416666666674, 32.223166666666771 ], [ 35.1985, 32.223166666666771 ], [ 35.1985, 32.22325 ], [ 35.1985, 32.223333333333358 ], [ 35.198452303568445, 32.223614100138377 ], [ 35.198025873820086, 32.223356872558725 ], [ 35.198048454284674, 32.223204068501843 ], [ 35.197940490722658, 32.22312073516855 ], [ 35.197970039367647, 32.222920781453411 ], [ 35.198130363464372, 32.222797030131005 ], [ 35.198244265238429, 32.222649464925269 ] ], [ [ 35.197666666666805, 32.223 ], [ 35.197743392944403, 32.223195175170986 ], [ 35.197547030131091, 32.223092343648261 ], [ 35.197666666666805, 32.223 ] ], [ [ 35.2025, 32.22375 ], [ 35.2025, 32.223583333333465 ], [ 35.20275, 32.223583333333465 ], [ 35.20275, 32.223666666666759 ], [ 35.202833333333388, 32.223666666666759 ], [ 35.202833333333388, 32.22375 ], [ 35.2025, 32.22375 ] ], [ [ 35.205303876241032, 32.223637947082523 ], [ 35.2055, 32.223583333333465 ], [ 35.205619636535573, 32.223797030131152 ], [ 35.205816296895421, 32.223948827107733 ], [ 35.205645558675201, 32.224080614725892 ], [ 35.205303876241032, 32.223637947082523 ] ], [ [ 35.197416666666697, 32.223833333333346 ], [ 35.197360201517881, 32.223940536499015 ], [ 35.197137916564941, 32.223869555155545 ], [ 35.197416666666697, 32.223833333333346 ] ], [ [ 35.200796274820959, 32.223942199707039 ], [ 35.201666666666654, 32.223833333333346 ], [ 35.201560765584418, 32.224203727722283 ], [ 35.201429740905837, 32.224287058512402 ], [ 35.20129544067396, 32.224119346618579 ], [ 35.201208333333398, 32.224130182902115 ], [ 35.200903106689452, 32.22409221649184 ], [ 35.200796274820959, 32.223942199707039 ] ], [ [ 35.202058359781915, 32.224296348571784 ], [ 35.202166666666642, 32.22425 ], [ 35.202133288065568, 32.224439378102602 ], [ 35.202058359781915, 32.224296348571784 ] ], [ [ 35.200534523010333, 32.224309557596939 ], [ 35.20075, 32.224416666666627 ], [ 35.200916666666785, 32.224416666666627 ], [ 35.200963554382326, 32.224355921427389 ], [ 35.201333333333423, 32.224416666666627 ], [ 35.201375, 32.224309936523525 ], [ 35.201416666666717, 32.224416666666627 ], [ 35.201524622599266, 32.224633847554514 ], [ 35.201166666666666, 32.224666666666735 ], [ 35.201110677083363, 32.22477734375002 ], [ 35.201, 32.224833333333322 ], [ 35.200926567077715, 32.224948038737068 ], [ 35.200455996195558, 32.224815797170038 ], [ 35.200384140014648, 32.224657505035452 ], [ 35.2005, 32.224583333333442 ], [ 35.200534523010333, 32.224309557596939 ] ], [ [ 35.20165315755213, 32.224791067759156 ], [ 35.201833333333411, 32.224666666666735 ], [ 35.201998301188269, 32.224916304270494 ], [ 35.201725507100491, 32.225335221608418 ], [ 35.20157880147292, 32.225122741699238 ], [ 35.20165315755213, 32.224791067759156 ] ], [ [ 35.20158333333336, 32.225666666666712 ], [ 35.201750000000118, 32.225666666666712 ], [ 35.201750000000118, 32.22575 ], [ 35.201833333333411, 32.22575 ], [ 35.201833333333411, 32.225833333333469 ], [ 35.201962532043467, 32.22588759867358 ], [ 35.202054565429705, 32.225754304250074 ], [ 35.20225267028809, 32.226041229248153 ], [ 35.201906224568688, 32.226117369333849 ], [ 35.201833333333411, 32.225833333333469 ], [ 35.201750000000118, 32.225833333333469 ], [ 35.201750000000118, 32.22575 ], [ 35.20158333333336, 32.22575 ], [ 35.20158333333336, 32.225666666666712 ], [ 35.200901545206762, 32.225751847585173 ], [ 35.200770352681502, 32.225588019053134 ], [ 35.200804326375362, 32.225314895629879 ], [ 35.201053817749084, 32.225209763844816 ], [ 35.200885543823233, 32.225075012207014 ], [ 35.201086860656858, 32.224962942759248 ], [ 35.201287058512492, 32.225212942759185 ], [ 35.201379608154411, 32.225287057240848 ], [ 35.201453725179078, 32.225462942759236 ], [ 35.20158333333336, 32.225666666666712 ] ], [ [ 35.203583333333427, 32.2255 ], [ 35.203688247680702, 32.225378225962459 ], [ 35.20375, 32.225583333333361 ], [ 35.203583333333427, 32.2255 ] ], [ [ 35.2038938929241, 32.225536301930788 ], [ 35.203797030131113, 32.225246392567954 ], [ 35.204083333333415, 32.225166666666723 ], [ 35.204304089864195, 32.225462426503611 ], [ 35.2038938929241, 32.225536301930788 ] ], [ [ 35.205, 32.2255 ], [ 35.205028526306194, 32.225398398081552 ], [ 35.205101603190144, 32.225471472422271 ], [ 35.205, 32.2255 ] ], [ [ 35.202916666666681, 32.22425 ], [ 35.202958333333413, 32.224143269856768 ], [ 35.203, 32.22425 ], [ 35.202916666666681, 32.22425 ] ], [ [ 35.206049954732293, 32.224189376831134 ], [ 35.205975026448641, 32.224046348571903 ], [ 35.206083333333368, 32.224 ], [ 35.206049954732293, 32.224189376831134 ] ], [ [ 35.204583333333403, 32.223416666666708 ], [ 35.204611859639499, 32.223315063476662 ], [ 35.204684936523449, 32.223388140360555 ], [ 35.204583333333403, 32.223416666666708 ], [ 35.20452734374993, 32.223527343749993 ], [ 35.204416666666646, 32.223583333333465 ], [ 35.204333333333352, 32.223583333333465 ], [ 35.204333333333352, 32.2235 ], [ 35.204417254130021, 32.223334111531699 ], [ 35.204583333333403, 32.223416666666708 ] ], [ [ 35.203083333333268, 32.223416666666708 ], [ 35.202916666666681, 32.2235 ], [ 35.202833333333388, 32.2235 ], [ 35.202777994791802, 32.223472005208407 ], [ 35.202681012471487, 32.223280293782693 ], [ 35.203027013143014, 32.223222005208356 ], [ 35.203083333333268, 32.223333333333358 ], [ 35.203083333333268, 32.223416666666708 ] ], [ [ 35.199389539082915, 32.22330048878996 ], [ 35.199072118123354, 32.223450703938909 ], [ 35.198965962727925, 32.223260943094886 ], [ 35.199333333333357, 32.223166666666771 ], [ 35.199389539082915, 32.22330048878996 ] ], [ [ 35.201416666666717, 32.2235 ], [ 35.201416666666717, 32.223416666666708 ], [ 35.2015, 32.223416666666708 ], [ 35.201724482218481, 32.223307345072442 ], [ 35.201862083435117, 32.2235445302328 ], [ 35.201475702921584, 32.223612083435114 ], [ 35.201416666666717, 32.2235 ] ], [ [ 35.198731730143322, 32.22302852630628 ], [ 35.198833333333369, 32.223 ], [ 35.198804807027216, 32.22310160319023 ], [ 35.198731730143322, 32.22302852630628 ] ], [ [ 35.202166666666642, 32.223 ], [ 35.202059936523483, 32.222958333333452 ], [ 35.202166666666642, 32.22291666666672 ], [ 35.202250000000106, 32.22291666666672 ], [ 35.202366172790619, 32.222795750935916 ], [ 35.202540832519617, 32.223099545796856 ], [ 35.202250000000106, 32.223 ], [ 35.202166666666642, 32.223 ] ], [ [ 35.208545153300065, 32.222944661458428 ], [ 35.208472005208421, 32.22270596567796 ], [ 35.208666666666716, 32.222666666666782 ], [ 35.208769538879324, 32.222873624165913 ], [ 35.208545153300065, 32.222944661458428 ] ], [ [ 35.209882629394599, 32.222989557901997 ], [ 35.21016666666668, 32.22291666666672 ], [ 35.210219459533619, 32.223131607055734 ], [ 35.209983090718652, 32.223200703938801 ], [ 35.209882629394599, 32.222989557901997 ] ], [ [ 35.208784792582208, 32.223048540751165 ], [ 35.208959681193164, 32.223173891703368 ], [ 35.209059827168915, 32.223673423767082 ], [ 35.209224800109837, 32.223791666666784 ], [ 35.208957918802923, 32.223982950846391 ], [ 35.208641713460281, 32.223920468648316 ], [ 35.208742434183819, 32.223410766601546 ], [ 35.208433631896924, 32.223291666666626 ], [ 35.208482729594039, 32.223043207804437 ], [ 35.20875, 32.223 ], [ 35.208784792582208, 32.223048540751165 ] ], [ [ 35.208016380310085, 32.223350364685189 ], [ 35.207916666666677, 32.223416666666708 ], [ 35.207666666666796, 32.223416666666708 ], [ 35.207666666666796, 32.223166666666771 ], [ 35.207583333333275, 32.223166666666771 ], [ 35.207583333333275, 32.223 ], [ 35.207620104471971, 32.222867950439536 ], [ 35.207916666666677, 32.22291666666672 ], [ 35.208113291422592, 32.222965726216728 ], [ 35.208016380310085, 32.223350364685189 ] ], [ [ 35.207976010640493, 32.223701850891189 ], [ 35.207850631713882, 32.224037811279402 ], [ 35.20775, 32.223916666666639 ], [ 35.207683799743791, 32.223783487955757 ], [ 35.207805338541618, 32.223722005208344 ], [ 35.207833333333383, 32.223583333333465 ], [ 35.207976010640493, 32.223701850891189 ] ], [ [ 35.209833333333279, 32.223666666666759 ], [ 35.209833333333279, 32.223583333333465 ], [ 35.21, 32.223583333333465 ], [ 35.21, 32.223666666666759 ], [ 35.210083333333387, 32.223666666666759 ], [ 35.21025, 32.22375 ], [ 35.210188323974648, 32.223871917724694 ], [ 35.209972737630267, 32.223944661458404 ], [ 35.209833333333279, 32.223666666666759 ] ], [ [ 35.209416666666641, 32.22325 ], [ 35.209458333333373, 32.223143269856791 ], [ 35.209500000000105, 32.22325 ], [ 35.209666666666692, 32.22325 ], [ 35.209765965779638, 32.223449765523299 ], [ 35.209611328125106, 32.223527994791709 ], [ 35.209583333333399, 32.223583333333465 ], [ 35.209286303202418, 32.223463696797751 ], [ 35.209213696797804, 32.223306521097925 ], [ 35.209416666666641, 32.22325 ] ], [ [ 35.20925, 32.224416666666627 ], [ 35.209221473693901, 32.224518268585143 ], [ 35.209148396809951, 32.224445194244481 ], [ 35.20925, 32.224416666666627 ] ], [ [ 35.2069166666667, 32.224416666666627 ], [ 35.206871386210196, 32.224522476196341 ], [ 35.20672502644851, 32.2244504445394 ], [ 35.2069166666667, 32.224416666666627 ] ], [ [ 35.19875, 32.224833333333322 ], [ 35.198666666666782, 32.224949600219759 ], [ 35.198583333333261, 32.224833333333322 ], [ 35.198666666666782, 32.224717066447056 ], [ 35.19875, 32.224833333333322 ] ], [ [ 35.198083333333273, 32.22475 ], [ 35.198054807027177, 32.224851601918544 ], [ 35.197981730143283, 32.224778527577826 ], [ 35.198083333333273, 32.22475 ] ], [ [ 35.195000000000107, 32.222250000000145 ], [ 35.194954719543375, 32.222355809529631 ], [ 35.194808359781916, 32.22228377787269 ], [ 35.195000000000107, 32.222250000000145 ] ], [ [ 35.195166666666694, 32.222416666666732 ], [ 35.195055338541692, 32.222638671875075 ], [ 35.194877924601258, 32.222694661458377 ], [ 35.194805338541585, 32.222449796040792 ], [ 35.195166666666694, 32.222416666666732 ] ], [ [ 35.194416666666655, 32.222666666666782 ], [ 35.194361808776875, 32.222954004923622 ], [ 35.194143836975172, 32.222718755086248 ], [ 35.194416666666655, 32.222666666666782 ] ], [ [ 35.195666666666682, 32.223083333333477 ], [ 35.195702743530319, 32.222805707295777 ], [ 35.195862083435145, 32.223024297078496 ], [ 35.19575, 32.223083333333477 ], [ 35.195708333333414, 32.223190063476579 ], [ 35.195666666666682, 32.223083333333477 ] ], [ [ 35.195583333333389, 32.222833333333426 ], [ 35.195554807027293, 32.222934936523416 ], [ 35.195481730143342, 32.222861859639522 ], [ 35.195583333333389, 32.222833333333426 ] ], [ [ 35.195225026448611, 32.222450444539504 ], [ 35.195416666666802, 32.222416666666732 ], [ 35.19537138621024, 32.222522476196389 ], [ 35.195225026448611, 32.222450444539504 ] ], [ [ 35.200815063476568, 32.228611860911087 ], [ 35.200916666666785, 32.228583333333461 ], [ 35.200888140360632, 32.228684935251977 ], [ 35.200815063476568, 32.228611860911087 ] ], [ [ 35.204738324483287, 32.228610960642584 ], [ 35.20480841318772, 32.228136684417734 ], [ 35.205130363464491, 32.228047031402582 ], [ 35.20525, 32.228 ], [ 35.205517244974772, 32.228358043670596 ], [ 35.205117067972822, 32.228666928609243 ], [ 35.204738324483287, 32.228610960642584 ] ], [ [ 35.203635650634851, 32.227120713551869 ], [ 35.204000000000121, 32.227083333333326 ], [ 35.203935091654387, 32.227192822774327 ], [ 35.203635650634851, 32.227120713551869 ] ], [ [ 35.20775, 32.225916666666762 ], [ 35.20775, 32.22575 ], [ 35.208, 32.22575 ], [ 35.208, 32.225916666666762 ], [ 35.20775, 32.225916666666762 ] ], [ [ 35.199666666666701, 32.236416666666742 ], [ 35.199583333333408, 32.236532934188915 ], [ 35.199500000000114, 32.236416666666742 ], [ 35.199444661458358, 32.236388671874977 ], [ 35.199388671875113, 32.23615396372486 ], [ 35.19963823699959, 32.236275844574095 ], [ 35.199666666666701, 32.236416666666742 ] ], [ [ 35.198666666666782, 32.236666666666792 ], [ 35.198638140360629, 32.236768268585308 ], [ 35.198565063476565, 32.236695194244419 ], [ 35.198666666666782, 32.236666666666792 ] ], [ [ 35.198714452107765, 32.23675509770726 ], [ 35.198833333333369, 32.236666666666792 ], [ 35.198944267273077, 32.236942639668769 ], [ 35.198714452107765, 32.23675509770726 ] ], [ [ 35.199083333333419, 32.237666666666769 ], [ 35.198847526550253, 32.237724585851083 ], [ 35.19875, 32.237583333333475 ], [ 35.198638671875017, 32.237527014414525 ], [ 35.198701568603553, 32.237434502919541 ], [ 35.198833333333369, 32.2375 ], [ 35.198966512044251, 32.237433800379449 ], [ 35.199027994791663, 32.237555338541711 ], [ 35.199083333333419, 32.237583333333475 ], [ 35.199190063476578, 32.237625 ], [ 35.199083333333419, 32.237666666666769 ] ], [ [ 35.198368125915522, 32.23938187472038 ], [ 35.198613540649376, 32.23947652753202 ], [ 35.19832188161223, 32.239618125279776 ], [ 35.198215207417775, 32.239417997996156 ], [ 35.19833333333338, 32.23933333333332 ], [ 35.198368125915522, 32.23938187472038 ] ], [ [ 35.195166666666694, 32.243666666666741 ], [ 35.195166666666694, 32.243833333333328 ], [ 35.195000000000107, 32.243833333333328 ], [ 35.195000000000107, 32.243666666666741 ], [ 35.195000000000107, 32.2435 ], [ 35.195110677083449, 32.243555989583399 ], [ 35.195166666666694, 32.243666666666741 ] ] ], [ [ [ 35.195000000000107, 32.245416666666756 ], [ 35.19513036346433, 32.245380364577045 ], [ 35.195702969869103, 32.244952968756422 ], [ 35.196337259928498, 32.244519541740374 ], [ 35.196416666666778, 32.24441666666678 ], [ 35.196333333333257, 32.24441666666678 ], [ 35.196333333333257, 32.244333333333316 ], [ 35.196250000000134, 32.244333333333316 ], [ 35.19616666666667, 32.244217065811085 ], [ 35.196083333333377, 32.244333333333316 ], [ 35.195731127421141, 32.244475191354809 ], [ 35.195537401835168, 32.244726174910852 ], [ 35.195355186462393, 32.244699247837161 ], [ 35.195381787617976, 32.244879266103226 ], [ 35.195286303202408, 32.244952968756422 ], [ 35.195213696797794, 32.245047031243644 ], [ 35.194833333333349, 32.245083333333355 ], [ 35.194833333333349, 32.245166666666819 ], [ 35.194833333333349, 32.24525 ], [ 35.195000000000107, 32.24525 ], [ 35.195000000000107, 32.245416666666756 ] ] ], [ [ [ 35.193287058512453, 32.245370390613857 ], [ 35.193537058512504, 32.245265045642896 ], [ 35.193377377828028, 32.24520285483203 ], [ 35.193291666666653, 32.245213516036756 ], [ 35.193166564941407, 32.24519795513163 ], [ 35.192750000000103, 32.24525 ], [ 35.192570594787639, 32.2453391786417 ], [ 35.192346071879115, 32.245160821358411 ], [ 35.192166666666651, 32.24525 ], [ 35.192205233256061, 32.245294765631343 ], [ 35.192750000000103, 32.2455 ], [ 35.192965962727783, 32.245534036457627 ], [ 35.193166666666798, 32.245583333333343 ], [ 35.193287058512453, 32.245370390613857 ] ] ], [ [ [ 35.195000000000107, 32.245416666666756 ], [ 35.194815467834587, 32.245453919569741 ], [ 35.19475, 32.245583333333343 ], [ 35.194934532165576, 32.245546080430358 ], [ 35.195000000000107, 32.245416666666756 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Id": 3, "luf": "Public Service Areas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.237871388753263, 32.18727247619637 ], [ 35.237916666666763, 32.187166666666712 ], [ 35.237725026448572, 32.187200444539485 ], [ 35.237871388753263, 32.18727247619637 ] ] ], [ [ [ 35.239539321899542, 32.187710678100643 ], [ 35.2395, 32.187666666666701 ], [ 35.239377344767377, 32.187776260376097 ], [ 35.23969228108723, 32.187847345987961 ], [ 35.239539321899542, 32.187710678100643 ] ] ], [ [ [ 35.237304804484154, 32.188268269856906 ], [ 35.237333333333311, 32.188166666666689 ], [ 35.237231730143264, 32.188195195516016 ], [ 35.237304804484154, 32.188268269856906 ] ] ], [ [ [ 35.2415, 32.18825 ], [ 35.241416666666623, 32.18825 ], [ 35.241416666666623, 32.188333333333446 ], [ 35.2415, 32.188333333333446 ], [ 35.2415, 32.18825 ] ] ], [ [ [ 35.234971471150857, 32.188351603190199 ], [ 35.235, 32.18825 ], [ 35.234898396809967, 32.18827852884931 ], [ 35.234971471150857, 32.188351603190199 ] ] ], [ [ [ 35.237304804484154, 32.188518269856786 ], [ 35.237333333333311, 32.18841666666674 ], [ 35.237231730143264, 32.188445195515897 ], [ 35.237304804484154, 32.188518269856786 ] ] ], [ [ [ 35.237583333333419, 32.188583333333384 ], [ 35.237500000000125, 32.188583333333384 ], [ 35.237500000000125, 32.188666666666677 ], [ 35.237583333333419, 32.188666666666677 ], [ 35.237583333333419, 32.188583333333384 ] ] ], [ [ [ 35.24155480448411, 32.18868493652343 ], [ 35.241583333333438, 32.188583333333384 ], [ 35.241481730143221, 32.188611862182711 ], [ 35.24155480448411, 32.18868493652343 ] ] ], [ [ [ 35.23166666666674, 32.189083333333372 ], [ 35.231583333333447, 32.189083333333372 ], [ 35.231583333333447, 32.189166666666665 ], [ 35.23166666666674, 32.189166666666665 ], [ 35.23166666666674, 32.189083333333372 ] ] ], [ [ [ 35.24225, 32.189 ], [ 35.242128860473713, 32.188803395589275 ], [ 35.241979858398452, 32.189281768798935 ], [ 35.2423015645345, 32.189218231201153 ], [ 35.242333333333477, 32.189166666666665 ], [ 35.24225, 32.189166666666665 ], [ 35.24225, 32.189083333333372 ], [ 35.24225, 32.189 ] ] ], [ [ [ 35.230666666666593, 32.189250000000129 ], [ 35.2305, 32.189250000000129 ], [ 35.2305, 32.189416666666716 ], [ 35.230666666666593, 32.189416666666716 ], [ 35.230666666666593, 32.189333333333423 ], [ 35.230666666666593, 32.189250000000129 ] ] ], [ [ [ 35.228204722086673, 32.190605809529643 ], [ 35.22825, 32.1905 ], [ 35.228058359781983, 32.190533777872758 ], [ 35.228204722086673, 32.190605809529643 ] ] ], [ [ [ 35.234856043497814, 32.190700047810822 ], [ 35.234666666666612, 32.190666666666743 ], [ 35.234713012695352, 32.19077497355147 ], [ 35.234856043497814, 32.190700047810822 ] ] ], [ [ [ 35.241583333333438, 32.191000000000145 ], [ 35.241666666666731, 32.190833333333387 ], [ 35.241461558024127, 32.190895085652699 ], [ 35.241583333333438, 32.191000000000145 ] ] ], [ [ [ 35.197, 32.191166666666732 ], [ 35.196833333333416, 32.191166666666732 ], [ 35.196833333333416, 32.19125 ], [ 35.197, 32.19125 ], [ 35.197, 32.191166666666732 ] ] ], [ [ [ 35.198, 32.191166666666732 ], [ 35.197916666666686, 32.191166666666732 ], [ 35.197916666666686, 32.19125 ], [ 35.198, 32.19125 ], [ 35.198, 32.191166666666732 ] ] ], [ [ [ 35.239333333333434, 32.19125 ], [ 35.239333333333434, 32.191166666666732 ], [ 35.239583333333314, 32.191166666666732 ], [ 35.239549687703573, 32.191023803710948 ], [ 35.239134897867871, 32.191165156046679 ], [ 35.239201853434281, 32.191308898925797 ], [ 35.239333333333434, 32.19125 ] ] ], [ [ [ 35.196666666666658, 32.191166666666732 ], [ 35.19616666666667, 32.191166666666732 ], [ 35.196250000000134, 32.191333333333375 ], [ 35.1965553385416, 32.191305338541781 ], [ 35.196666666666658, 32.19125 ], [ 35.196666666666658, 32.191166666666732 ] ] ], [ [ [ 35.198916666666662, 32.19125 ], [ 35.198666666666782, 32.19125 ], [ 35.198666666666782, 32.191333333333375 ], [ 35.198916666666662, 32.191333333333375 ], [ 35.198916666666662, 32.19125 ] ] ], [ [ [ 35.241128540039199, 32.190789276123041 ], [ 35.241, 32.19058333333345 ], [ 35.240864303588864, 32.190700241088962 ], [ 35.240880956014109, 32.190907445271819 ], [ 35.24037809753429, 32.191222412109482 ], [ 35.240479629516528, 32.19153703308109 ], [ 35.240737604777109, 32.191237604777086 ], [ 35.241118911743172, 32.190909088134902 ], [ 35.241128540039199, 32.190789276123041 ] ] ], [ [ [ 35.239833333333422, 32.191333333333375 ], [ 35.239666666666608, 32.191333333333375 ], [ 35.239666666666608, 32.191583333333426 ], [ 35.239833333333422, 32.191583333333426 ], [ 35.239833333333422, 32.191333333333375 ] ] ], [ [ [ 35.229305338541735, 32.191722005208476 ], [ 35.229333333333443, 32.19166666666672 ], [ 35.229055338541798, 32.191701721191521 ], [ 35.229117614746087, 32.191816970825187 ], [ 35.229305338541735, 32.191722005208476 ] ] ], [ [ [ 35.236369288126639, 32.192362218221035 ], [ 35.236416666666685, 32.192083333333414 ], [ 35.236213699340851, 32.192240000407025 ], [ 35.236369288126639, 32.192362218221035 ] ] ], [ [ [ 35.24125, 32.192500000000109 ], [ 35.241221471150709, 32.192398396809892 ], [ 35.24114839680999, 32.192471471150782 ], [ 35.24125, 32.192500000000109 ] ] ], [ [ [ 35.230816197713352, 32.19229984537759 ], [ 35.230750000000114, 32.192166666666708 ], [ 35.230555338541762, 32.192265141805137 ], [ 35.230620859781936, 32.192507217407183 ], [ 35.230694661458358, 32.19236132812506 ], [ 35.230816197713352, 32.19229984537759 ] ] ], [ [ [ 35.24125, 32.192500000000109 ], [ 35.241278528849364, 32.192601603190155 ], [ 35.241351603190083, 32.192528528849266 ], [ 35.24125, 32.192500000000109 ] ] ], [ [ [ 35.238214792887391, 32.192513534546038 ], [ 35.23825, 32.192333333333295 ], [ 35.237972757975285, 32.192367233276457 ], [ 35.238042953491345, 32.192610575358003 ], [ 35.238214792887391, 32.192513534546038 ] ] ], [ [ [ 35.239916666666716, 32.192583333333403 ], [ 35.239874811808306, 32.192476537068785 ], [ 35.239816838582442, 32.19262754313155 ], [ 35.239916666666716, 32.192666666666696 ], [ 35.239916666666716, 32.192583333333403 ] ] ], [ [ [ 35.239026295979841, 32.193032821655322 ], [ 35.239083333333326, 32.192833333333454 ], [ 35.238879608154377, 32.192891581217509 ], [ 35.239026295979841, 32.193032821655322 ] ] ], [ [ [ 35.235471471150845, 32.193101603190087 ], [ 35.2355, 32.193 ], [ 35.235398396809956, 32.193028528849425 ], [ 35.235471471150845, 32.193101603190087 ] ] ], [ [ [ 35.209000000000117, 32.193250000000148 ], [ 35.209000000000117, 32.193083333333391 ], [ 35.208866355896134, 32.193016901652072 ], [ 35.208805338541765, 32.193151524861719 ], [ 35.209000000000117, 32.193250000000148 ] ] ], [ [ [ 35.205138140360589, 32.193351603190195 ], [ 35.205166666666685, 32.193250000000148 ], [ 35.205065063476638, 32.193278528849305 ], [ 35.205138140360589, 32.193351603190195 ] ] ], [ [ [ 35.210138140360584, 32.193351603190195 ], [ 35.21016666666668, 32.193250000000148 ], [ 35.210065063476634, 32.193278528849305 ], [ 35.210138140360584, 32.193351603190195 ] ] ], [ [ [ 35.204942962646555, 32.19353282165531 ], [ 35.205, 32.193333333333442 ], [ 35.204796274820978, 32.193391581217497 ], [ 35.204942962646555, 32.19353282165531 ] ] ], [ [ [ 35.209000000000117, 32.193250000000148 ], [ 35.209044764200826, 32.193534037272059 ], [ 35.209135780334464, 32.193463521321689 ], [ 35.20908333333341, 32.193250000000148 ], [ 35.209000000000117, 32.193250000000148 ] ] ], [ [ [ 35.199034711202046, 32.193289530436346 ], [ 35.198916666666662, 32.193166666666684 ], [ 35.198459167480564, 32.193216374715178 ], [ 35.199162412007695, 32.193540832519659 ], [ 35.199247253418037, 32.193392644246444 ], [ 35.199034711202046, 32.193289530436346 ] ] ], [ [ [ 35.197471473693895, 32.193768269856889 ], [ 35.1975, 32.193666666666672 ], [ 35.197398396810001, 32.193695195516 ], [ 35.197471473693895, 32.193768269856889 ] ] ], [ [ [ 35.229804804484104, 32.193851603190183 ], [ 35.229833333333431, 32.193750000000136 ], [ 35.229731730143214, 32.193778528849293 ], [ 35.229804804484104, 32.193851603190183 ] ] ], [ [ [ 35.209364657084222, 32.193660710652637 ], [ 35.209039858500262, 32.193559544881282 ], [ 35.209000000000117, 32.19383333333343 ], [ 35.209166666666704, 32.19383333333343 ], [ 35.209166666666704, 32.193916666666723 ], [ 35.20925, 32.193916666666723 ], [ 35.209364657084222, 32.193660710652637 ] ] ], [ [ [ 35.232471471150802, 32.193934936523476 ], [ 35.23250000000013, 32.19383333333343 ], [ 35.232398396809913, 32.193861862182757 ], [ 35.232471471150802, 32.193934936523476 ] ] ], [ [ [ 35.22972147115081, 32.19401826985677 ], [ 35.22975, 32.193916666666723 ], [ 35.229648396809921, 32.193945195516051 ], [ 35.22972147115081, 32.19401826985677 ] ] ], [ [ [ 35.227471471150807, 32.194101603190234 ], [ 35.227500000000134, 32.194 ], [ 35.227398396809917, 32.194028528849344 ], [ 35.227471471150807, 32.194101603190234 ] ] ], [ [ [ 35.207326726277699, 32.194195175170989 ], [ 35.207250000000101, 32.194 ], [ 35.207130363464387, 32.19409234110509 ], [ 35.207326726277699, 32.194195175170989 ] ] ], [ [ [ 35.231940063476657, 32.194208333333393 ], [ 35.231833333333327, 32.194166666666661 ], [ 35.231833333333327, 32.194250000000125 ], [ 35.231940063476657, 32.194208333333393 ] ] ], [ [ [ 35.227050033569412, 32.194210601806617 ], [ 35.226833333333389, 32.193916666666723 ], [ 35.226462188720745, 32.193982808430974 ], [ 35.226829981486048, 32.194287811279366 ], [ 35.227050033569412, 32.194210601806617 ] ] ], [ [ [ 35.20908333333341, 32.194250000000125 ], [ 35.20908333333341, 32.194166666666661 ], [ 35.208916666666653, 32.194250000000125 ], [ 35.208916666666653, 32.194333333333418 ], [ 35.20908333333341, 32.194333333333418 ], [ 35.20908333333341, 32.194250000000125 ] ] ], [ [ [ 35.20727875010175, 32.194313735962055 ], [ 35.207138577779119, 32.194228444417377 ], [ 35.207083333333287, 32.194333333333418 ], [ 35.207083333333287, 32.194416666666712 ], [ 35.20727875010175, 32.194313735962055 ] ] ], [ [ [ 35.209416666666641, 32.194333333333418 ], [ 35.209333333333291, 32.194333333333418 ], [ 35.209333333333291, 32.194416666666712 ], [ 35.209416666666641, 32.194416666666712 ], [ 35.209416666666641, 32.194333333333418 ] ] ], [ [ [ 35.21425, 32.194416666666712 ], [ 35.214221471150836, 32.194315063476665 ], [ 35.214148396809946, 32.194388137817384 ], [ 35.21425, 32.194416666666712 ] ] ], [ [ [ 35.242549952189165, 32.194522710164449 ], [ 35.242583333333414, 32.194333333333418 ], [ 35.242475026448687, 32.1943796793621 ], [ 35.242549952189165, 32.194522710164449 ] ] ], [ [ [ 35.21, 32.194583333333298 ], [ 35.209833333333279, 32.1945 ], [ 35.209833333333279, 32.194666666666592 ], [ 35.21, 32.194666666666592 ], [ 35.21, 32.194583333333298 ] ] ], [ [ [ 35.242304804484149, 32.194851603190159 ], [ 35.242333333333477, 32.194750000000113 ], [ 35.24223173014326, 32.19477852884927 ], [ 35.242304804484149, 32.194851603190159 ] ] ], [ [ [ 35.199105092366608, 32.194788386027085 ], [ 35.199166666666713, 32.194666666666592 ], [ 35.198805338541604, 32.194699793497648 ], [ 35.198891029358037, 32.194861328125114 ], [ 35.199105092366608, 32.194788386027085 ] ] ], [ [ [ 35.21425, 32.194416666666712 ], [ 35.214215962727963, 32.194465962727975 ], [ 35.213882629394618, 32.19455150349944 ], [ 35.214013371785541, 32.194867370605607 ], [ 35.214249552408887, 32.194788009643503 ], [ 35.214414367675715, 32.194549296061268 ], [ 35.214715962727951, 32.194617370605499 ], [ 35.215099878946944, 32.194867370605607 ], [ 35.215159372965559, 32.194743718465133 ], [ 35.214715962727951, 32.194450703938912 ], [ 35.21425, 32.194416666666712 ] ] ], [ [ [ 35.229986251831008, 32.194680414835602 ], [ 35.229916666666725, 32.194583333333298 ], [ 35.229631876627707, 32.194629374186206 ], [ 35.229916213989384, 32.195033564249684 ], [ 35.230034790039156, 32.194868123372487 ], [ 35.230141469319676, 32.194791666666674 ], [ 35.229986251831008, 32.194680414835602 ] ] ], [ [ [ 35.207, 32.195 ], [ 35.2069166666667, 32.195 ], [ 35.2069166666667, 32.195083333333457 ], [ 35.207, 32.195083333333457 ], [ 35.207083333333287, 32.195083333333457 ], [ 35.207083333333287, 32.195 ], [ 35.207, 32.195 ] ] ], [ [ [ 35.234576059977201, 32.194988794962569 ], [ 35.234416666666732, 32.194583333333298 ], [ 35.234130366007491, 32.19474361673997 ], [ 35.234323618570954, 32.195119633992647 ], [ 35.234576059977201, 32.194988794962569 ] ] ], [ [ [ 35.207416666666688, 32.195083333333457 ], [ 35.207333333333395, 32.195083333333457 ], [ 35.207333333333395, 32.195166666666751 ], [ 35.207416666666688, 32.195166666666751 ], [ 35.207416666666688, 32.195083333333457 ] ] ], [ [ [ 35.211166666666657, 32.195 ], [ 35.210916666666719, 32.195 ], [ 35.210916666666719, 32.195166666666751 ], [ 35.211166666666657, 32.195166666666751 ], [ 35.211166666666657, 32.195 ] ] ], [ [ [ 35.2275548044841, 32.195184936523503 ], [ 35.227583333333428, 32.195083333333457 ], [ 35.227481730143211, 32.195111862182614 ], [ 35.2275548044841, 32.195184936523503 ] ] ], [ [ [ 35.238776865641398, 32.19527386983242 ], [ 35.238833333333446, 32.195166666666751 ], [ 35.238554585774693, 32.195202885945719 ], [ 35.238776865641398, 32.19527386983242 ] ] ], [ [ [ 35.20256812795003, 32.195303726196357 ], [ 35.2025, 32.195166666666751 ], [ 35.202333333333399, 32.195250000000101 ], [ 35.202333333333399, 32.195333333333394 ], [ 35.20256812795003, 32.195303726196357 ] ] ], [ [ [ 35.229804804484104, 32.195434936523441 ], [ 35.229833333333431, 32.195333333333394 ], [ 35.229731730143214, 32.195361862182722 ], [ 35.229804804484104, 32.195434936523441 ] ] ], [ [ [ 35.238460001627629, 32.195435948689749 ], [ 35.2385, 32.195250000000101 ], [ 35.238303827921641, 32.195357528686657 ], [ 35.238460001627629, 32.195435948689749 ] ] ], [ [ [ 35.22802799479166, 32.195363296508788 ], [ 35.22790353393566, 32.195173680623498 ], [ 35.22775, 32.195250000000101 ], [ 35.227848475138273, 32.195444661458396 ], [ 35.22802799479166, 32.195363296508788 ] ] ], [ [ [ 35.238221471150837, 32.195518269856905 ], [ 35.23825, 32.195416666666688 ], [ 35.238148396809947, 32.195445195516015 ], [ 35.238221471150837, 32.195518269856905 ] ] ], [ [ [ 35.19410175832121, 32.195609491984158 ], [ 35.194166666666774, 32.195500000000152 ], [ 35.193802317301504, 32.195537378947051 ], [ 35.19410175832121, 32.195609491984158 ] ] ], [ [ [ 35.21425, 32.195416666666688 ], [ 35.214127731323231, 32.195218231201295 ], [ 35.213968831380214, 32.195461435953803 ], [ 35.214166666666699, 32.195583333333445 ], [ 35.214333333333286, 32.195666666666739 ], [ 35.214399531046581, 32.195533487955856 ], [ 35.214333333333286, 32.195500000000152 ], [ 35.21425, 32.195500000000152 ], [ 35.21425, 32.195416666666688 ] ] ], [ [ [ 35.214083333333406, 32.195666666666739 ], [ 35.214000000000112, 32.195666666666739 ], [ 35.214000000000112, 32.19575 ], [ 35.214083333333406, 32.19575 ], [ 35.214083333333406, 32.195666666666739 ] ] ], [ [ [ 35.215305338541725, 32.195638671875031 ], [ 35.215333333333433, 32.195500000000152 ], [ 35.214805338541737, 32.195531316121389 ], [ 35.215069814046331, 32.195757817586298 ], [ 35.215305338541725, 32.195638671875031 ] ] ], [ [ [ 35.243452214558999, 32.195618881225528 ], [ 35.243910237630246, 32.195524653116877 ], [ 35.243833333333441, 32.195333333333394 ], [ 35.243618881225643, 32.195368881225647 ], [ 35.243499094645131, 32.195529912312963 ], [ 35.24304017639173, 32.195450902303037 ], [ 35.242797785441212, 32.195519536336235 ], [ 35.243047785441092, 32.195618881225528 ], [ 35.243372385660848, 32.195819768269985 ], [ 35.243452214558999, 32.195618881225528 ] ] ], [ [ [ 35.230949193318622, 32.195682815551834 ], [ 35.230657313029099, 32.195551106770893 ], [ 35.23058333333347, 32.195666666666739 ], [ 35.230666666666593, 32.195666666666739 ], [ 35.230666666666593, 32.195833333333383 ], [ 35.230949193318622, 32.195682815551834 ] ] ], [ [ [ 35.242665964762352, 32.195666041056427 ], [ 35.2425, 32.195333333333394 ], [ 35.242444661458364, 32.195361328125102 ], [ 35.242388671875062, 32.195638671875031 ], [ 35.242222005208305, 32.19572298685722 ], [ 35.242306813557946, 32.195847727457817 ], [ 35.242665964762352, 32.195666041056427 ] ] ], [ [ [ 35.204110201517722, 32.195857203165701 ], [ 35.204166666666708, 32.19575 ], [ 35.203887916564952, 32.195786219279 ], [ 35.204110201517722, 32.195857203165701 ] ] ], [ [ [ 35.201916666666705, 32.195916666666676 ], [ 35.201858418782535, 32.195712941487727 ], [ 35.201717180887897, 32.195859629313134 ], [ 35.201916666666705, 32.195916666666676 ] ] ], [ [ [ 35.19976509348561, 32.195846486409494 ], [ 35.199813341776633, 32.195519994100039 ], [ 35.199212598164991, 32.195608764648455 ], [ 35.199000000000126, 32.195333333333394 ], [ 35.198864095052215, 32.195371180216512 ], [ 35.198963696797762, 32.195536300659171 ], [ 35.199079724629712, 32.195952967325866 ], [ 35.19976509348561, 32.195846486409494 ] ] ], [ [ [ 35.238215962727963, 32.195799296061182 ], [ 35.23825, 32.195666666666739 ], [ 35.237965962727856, 32.195739557902016 ], [ 35.238038665771455, 32.195981358846097 ], [ 35.23811737060538, 32.195867370605583 ], [ 35.238215962727963, 32.195799296061182 ] ] ], [ [ [ 35.220722005208358, 32.195694661458333 ], [ 35.220583333333309, 32.195666666666739 ], [ 35.220583333333309, 32.195833333333383 ], [ 35.220750000000123, 32.195833333333383 ], [ 35.220750000000123, 32.19600000000014 ], [ 35.220833333333417, 32.19600000000014 ], [ 35.220833333333417, 32.19575 ], [ 35.220722005208358, 32.195694661458333 ] ] ], [ [ [ 35.214166666666699, 32.195916666666676 ], [ 35.214000000000112, 32.195916666666676 ], [ 35.214000000000112, 32.19600000000014 ], [ 35.214166666666699, 32.196083333333434 ], [ 35.214166666666699, 32.19600000000014 ], [ 35.214166666666699, 32.195916666666676 ] ] ], [ [ [ 35.221388137817371, 32.196101603190186 ], [ 35.221416666666698, 32.19600000000014 ], [ 35.221315063476652, 32.196028528849297 ], [ 35.221388137817371, 32.196101603190186 ] ] ], [ [ [ 35.21275, 32.196166666666727 ], [ 35.21275, 32.196083333333434 ], [ 35.212643269856756, 32.196125 ], [ 35.21275, 32.196166666666727 ] ] ], [ [ [ 35.230916666666701, 32.196166666666727 ], [ 35.230882888793928, 32.195975026448536 ], [ 35.230810857137044, 32.196121388753397 ], [ 35.230916666666701, 32.196166666666727 ] ] ], [ [ [ 35.24341926574715, 32.196195785522491 ], [ 35.24325, 32.195916666666676 ], [ 35.243125834147065, 32.196035964965915 ], [ 35.24341926574715, 32.196195785522491 ] ] ], [ [ [ 35.201447652181002, 32.196105514526494 ], [ 35.201333333333423, 32.195833333333383 ], [ 35.201132629394635, 32.195884836832761 ], [ 35.201219403584787, 32.196200703938928 ], [ 35.201447652181002, 32.196105514526494 ] ] ], [ [ [ 35.230916666666701, 32.196166666666727 ], [ 35.230945195516028, 32.196268269856773 ], [ 35.231018269856747, 32.196195195516054 ], [ 35.230916666666701, 32.196166666666727 ] ] ], [ [ [ 35.238388137817424, 32.196268269856773 ], [ 35.238416666666751, 32.196166666666727 ], [ 35.238315063476534, 32.196195195516054 ], [ 35.238388137817424, 32.196268269856773 ] ] ], [ [ [ 35.214666666666687, 32.196166666666727 ], [ 35.214557072957462, 32.196044011433912 ], [ 35.214299245198674, 32.196153961181722 ], [ 35.2145000000001, 32.196333333333314 ], [ 35.214555989583346, 32.196222656250029 ], [ 35.214666666666687, 32.196166666666727 ] ] ], [ [ [ 35.215666666666664, 32.196333333333314 ], [ 35.215593775431387, 32.196049296061233 ], [ 35.215393376668374, 32.196144643147932 ], [ 35.215666666666664, 32.196333333333314 ] ] ], [ [ [ 35.196916666666709, 32.196416666666664 ], [ 35.196875, 32.196309936523505 ], [ 35.196833333333416, 32.196416666666664 ], [ 35.196916666666709, 32.196416666666664 ] ] ], [ [ [ 35.203583333333427, 32.196416666666664 ], [ 35.203583333333427, 32.196166666666727 ], [ 35.203453918457114, 32.196232137044319 ], [ 35.203416666666669, 32.196416666666664 ], [ 35.203583333333427, 32.196416666666664 ] ] ], [ [ [ 35.21428109741214, 32.196258300781267 ], [ 35.214166666666699, 32.196166666666727 ], [ 35.214166666666699, 32.19625 ], [ 35.213916666666648, 32.19625 ], [ 35.213916666666648, 32.196333333333314 ], [ 35.214083333333406, 32.196333333333314 ], [ 35.214083333333406, 32.196416666666664 ], [ 35.21428109741214, 32.196258300781267 ] ] ], [ [ [ 35.197833333333392, 32.19600000000014 ], [ 35.197666666666805, 32.19600000000014 ], [ 35.1977152608236, 32.196295822143611 ], [ 35.197547030131091, 32.196425674438615 ], [ 35.197952969869107, 32.196352101643981 ], [ 35.197880363464492, 32.19603630065933 ], [ 35.197833333333392, 32.19600000000014 ] ] ], [ [ [ 35.215316940307673, 32.196384674072306 ], [ 35.21525, 32.19625 ], [ 35.215055338541617, 32.196289296468137 ], [ 35.215142873128343, 32.196444661458372 ], [ 35.215316940307673, 32.196384674072306 ] ] ], [ [ [ 35.237984715779589, 32.196386896769354 ], [ 35.237916666666763, 32.19625 ], [ 35.237649225870882, 32.196283721923805 ], [ 35.237570632934649, 32.196444661458372 ], [ 35.237984715779589, 32.196386896769354 ] ] ], [ [ [ 35.231867279052835, 32.196478780110795 ], [ 35.23175, 32.196166666666727 ], [ 35.231378855387391, 32.196214157104635 ], [ 35.231599436441968, 32.196451482137149 ], [ 35.231867279052835, 32.196478780110795 ] ] ], [ [ [ 35.21825, 32.196500000000128 ], [ 35.21825, 32.196416666666664 ], [ 35.21814326985691, 32.196458333333396 ], [ 35.21825, 32.196500000000128 ] ] ], [ [ [ 35.203833333333364, 32.196583333333422 ], [ 35.203833333333364, 32.196500000000128 ], [ 35.204166666666708, 32.196500000000128 ], [ 35.204166666666708, 32.196416666666664 ], [ 35.204000000000121, 32.196333333333314 ], [ 35.20375, 32.196333333333314 ], [ 35.20375, 32.196583333333422 ], [ 35.203833333333364, 32.196583333333422 ] ] ], [ [ [ 35.221250000000111, 32.196416666666664 ], [ 35.221166666666591, 32.196416666666664 ], [ 35.221208333333379, 32.196610361735168 ], [ 35.221250000000111, 32.196416666666664 ] ] ], [ [ [ 35.2005, 32.196166666666727 ], [ 35.200333333333276, 32.196166666666727 ], [ 35.200137916565041, 32.196269597371383 ], [ 35.200304354349839, 32.196612080892066 ], [ 35.200471249898385, 32.196554585774777 ], [ 35.2005, 32.196166666666727 ] ] ], [ [ [ 35.215666666666664, 32.196333333333314 ], [ 35.215702885945575, 32.196612080892066 ], [ 35.215773869832447, 32.196389801025532 ], [ 35.215666666666664, 32.196333333333314 ] ] ], [ [ [ 35.237133285522475, 32.196689376831159 ], [ 35.237166666666724, 32.196500000000128 ], [ 35.237058359781997, 32.19654634602864 ], [ 35.237133285522475, 32.196689376831159 ] ] ], [ [ [ 35.194640357971252, 32.196795730590907 ], [ 35.194500000000119, 32.196583333333422 ], [ 35.194382629394624, 32.196664367675851 ], [ 35.194485046386831, 32.196867370605503 ], [ 35.194640357971252, 32.196795730590907 ] ] ], [ [ [ 35.208271581014003, 32.196871775309319 ], [ 35.208333333333371, 32.196666666666715 ], [ 35.20825, 32.196666666666715 ], [ 35.20825, 32.19675 ], [ 35.208166666666727, 32.19675 ], [ 35.208271581014003, 32.196871775309319 ] ] ], [ [ [ 35.231583333333447, 32.196666666666715 ], [ 35.231416666666689, 32.196666666666715 ], [ 35.231416666666689, 32.197000000000116 ], [ 35.231583333333447, 32.197000000000116 ], [ 35.231583333333447, 32.196666666666715 ] ] ], [ [ [ 35.232831756591906, 32.197032292684014 ], [ 35.23275, 32.196833333333302 ], [ 35.232548543294286, 32.196886484781885 ], [ 35.232831756591906, 32.197032292684014 ] ] ], [ [ [ 35.198537338256926, 32.197028472900399 ], [ 35.198416666666674, 32.196916666666596 ], [ 35.19825, 32.197000000000116 ], [ 35.19825, 32.19708333333341 ], [ 35.198537338256926, 32.197028472900399 ] ] ], [ [ [ 35.196750000000122, 32.196916666666596 ], [ 35.196666666666658, 32.196916666666596 ], [ 35.196666666666658, 32.197000000000116 ], [ 35.196713015238572, 32.197108306884786 ], [ 35.19693888092047, 32.197045166015755 ], [ 35.196774973551555, 32.196975026448683 ], [ 35.196750000000122, 32.196916666666596 ] ] ], [ [ [ 35.200000000000102, 32.197166666666703 ], [ 35.199833333333345, 32.197166666666703 ], [ 35.199833333333345, 32.197333333333461 ], [ 35.200000000000102, 32.197333333333461 ], [ 35.200066200256401, 32.197299845377586 ], [ 35.200000000000102, 32.197166666666703 ] ] ], [ [ [ 35.220583333333309, 32.19725 ], [ 35.2205, 32.19725 ], [ 35.2205, 32.197333333333461 ], [ 35.220583333333309, 32.197333333333461 ], [ 35.220583333333309, 32.19725 ] ] ], [ [ [ 35.228399531046591, 32.197383178710879 ], [ 35.228333333333467, 32.19725 ], [ 35.228138671875001, 32.197348475138426 ], [ 35.228200124104944, 32.197484054565393 ], [ 35.228399531046591, 32.197383178710879 ] ] ], [ [ [ 35.195382629394601, 32.197534037272078 ], [ 35.19525, 32.197333333333461 ], [ 35.195132629394493, 32.197414367675719 ], [ 35.195440582275467, 32.197700703938892 ], [ 35.195382629394601, 32.197534037272078 ] ] ], [ [ [ 35.205083333333391, 32.197666666666692 ], [ 35.20494715627035, 32.197598973592051 ], [ 35.204916666666804, 32.19775 ], [ 35.205083333333391, 32.19775 ], [ 35.205083333333391, 32.197666666666692 ] ] ], [ [ [ 35.219166666666695, 32.197666666666692 ], [ 35.219083333333401, 32.197666666666692 ], [ 35.219083333333401, 32.19775 ], [ 35.219166666666695, 32.19775 ], [ 35.219166666666695, 32.197666666666692 ] ] ], [ [ [ 35.219304804484125, 32.197768269856908 ], [ 35.219333333333452, 32.197666666666692 ], [ 35.219231730143235, 32.197695195516019 ], [ 35.219304804484125, 32.197768269856908 ] ] ], [ [ [ 35.200109629313204, 32.197782821655267 ], [ 35.200166666666689, 32.197583333333398 ], [ 35.19996294148774, 32.197641581217567 ], [ 35.200109629313204, 32.197782821655267 ] ] ], [ [ [ 35.223805338541752, 32.197777994791693 ], [ 35.223583333333409, 32.197666666666692 ], [ 35.223583333333409, 32.197833333333449 ], [ 35.223833333333459, 32.197833333333449 ], [ 35.223805338541752, 32.197777994791693 ] ] ], [ [ [ 35.200583333333384, 32.198083333333386 ], [ 35.200583333333384, 32.198 ], [ 35.200476603190054, 32.198041666666597 ], [ 35.200583333333384, 32.198083333333386 ] ] ], [ [ [ 35.203500000000133, 32.198083333333386 ], [ 35.203583333333427, 32.198083333333386 ], [ 35.203583333333427, 32.198 ], [ 35.203500000000133, 32.198 ], [ 35.203500000000133, 32.198083333333386 ] ] ], [ [ [ 35.203500000000133, 32.198083333333386 ], [ 35.203333333333376, 32.198083333333386 ], [ 35.203333333333376, 32.19816666666668 ], [ 35.203500000000133, 32.19816666666668 ], [ 35.203500000000133, 32.198083333333386 ] ] ], [ [ [ 35.201910059611009, 32.198195175171008 ], [ 35.201833333333411, 32.198 ], [ 35.201713696797697, 32.198092341105109 ], [ 35.201910059611009, 32.198195175171008 ] ] ], [ [ [ 35.196971473693907, 32.198268269856896 ], [ 35.197, 32.19816666666668 ], [ 35.196898396810013, 32.198195195516007 ], [ 35.196971473693907, 32.198268269856896 ] ] ], [ [ [ 35.243195688883475, 32.198287241617948 ], [ 35.243, 32.19816666666668 ], [ 35.243, 32.198250000000144 ], [ 35.243, 32.198333333333437 ], [ 35.243195688883475, 32.198287241617948 ] ] ], [ [ [ 35.243666666666627, 32.198333333333437 ], [ 35.243633682250902, 32.197973551432256 ], [ 35.243334304809707, 32.198125000000118 ], [ 35.243527343750088, 32.198222656249925 ], [ 35.243583333333333, 32.198333333333437 ], [ 35.243666666666627, 32.198333333333437 ] ] ], [ [ [ 35.196, 32.1985 ], [ 35.196, 32.198416666666731 ], [ 35.19591666666679, 32.198416666666731 ], [ 35.19591666666679, 32.1985 ], [ 35.196, 32.1985 ] ] ], [ [ [ 35.243, 32.1985 ], [ 35.243, 32.198416666666731 ], [ 35.242893269856779, 32.198458333333463 ], [ 35.243, 32.1985 ] ] ], [ [ [ 35.202916666666681, 32.198666666666668 ], [ 35.20287500000012, 32.198559936523509 ], [ 35.202833333333388, 32.198666666666668 ], [ 35.202916666666681, 32.198666666666668 ] ] ], [ [ [ 35.195388140360478, 32.198684936523364 ], [ 35.195416666666802, 32.198583333333318 ], [ 35.195315063476585, 32.198611862182645 ], [ 35.195388140360478, 32.198684936523364 ] ] ], [ [ [ 35.240871388753362, 32.198939142863082 ], [ 35.240916666666692, 32.198833333333425 ], [ 35.240725026448672, 32.198867111206198 ], [ 35.240871388753362, 32.198939142863082 ] ] ], [ [ [ 35.196, 32.1985 ], [ 35.196, 32.198583333333318 ], [ 35.195833333333269, 32.198583333333318 ], [ 35.195718228658166, 32.198654256184909 ], [ 35.195799275716126, 32.198948435465525 ], [ 35.195974418640276, 32.198882568359409 ], [ 35.196078511556095, 32.198548375447672 ], [ 35.196, 32.1985 ] ] ], [ [ [ 35.203333333333376, 32.199 ], [ 35.203291666666644, 32.19889326985691 ], [ 35.20325, 32.199 ], [ 35.203333333333376, 32.199 ] ] ], [ [ [ 35.20015038299556, 32.198948445638166 ], [ 35.199888671875044, 32.198820632934655 ], [ 35.199944661458346, 32.199055338541768 ], [ 35.200083333333396, 32.199083333333306 ], [ 35.20015038299556, 32.198948445638166 ] ] ], [ [ [ 35.204121386210204, 32.199105809529669 ], [ 35.204166666666708, 32.199 ], [ 35.203975026448518, 32.199033777872785 ], [ 35.204121386210204, 32.199105809529669 ] ] ], [ [ [ 35.201027994791787, 32.199286417643236 ], [ 35.200876909891804, 32.199186915079679 ], [ 35.20075, 32.19925000000012 ], [ 35.200806320190452, 32.199361328125121 ], [ 35.201027994791787, 32.199286417643236 ] ] ], [ [ [ 35.19575, 32.199166666666599 ], [ 35.195666666666682, 32.199166666666599 ], [ 35.195666666666682, 32.19925000000012 ], [ 35.195750587463408, 32.199415888468423 ], [ 35.19591666666679, 32.199333333333414 ], [ 35.19591666666679, 32.19925000000012 ], [ 35.19575, 32.19925000000012 ], [ 35.19575, 32.199166666666599 ] ] ], [ [ [ 35.19975, 32.199416666666707 ], [ 35.199708333333263, 32.199309936523377 ], [ 35.199666666666701, 32.199416666666707 ], [ 35.19975, 32.199416666666707 ] ] ], [ [ [ 35.197216621398923, 32.199439376831094 ], [ 35.197250000000111, 32.19925000000012 ], [ 35.197141693115213, 32.199296346028632 ], [ 35.197216621398923, 32.199439376831094 ] ] ], [ [ [ 35.199500000000114, 32.199416666666707 ], [ 35.19925, 32.199416666666707 ], [ 35.19925, 32.1995 ], [ 35.199286249796614, 32.199552500407037 ], [ 35.199500000000114, 32.1995 ], [ 35.199500000000114, 32.199416666666707 ] ] ], [ [ [ 35.201083333333372, 32.199666666666587 ], [ 35.201083333333372, 32.1995 ], [ 35.20125000000013, 32.1995 ], [ 35.20125000000013, 32.19925000000012 ], [ 35.201166666666666, 32.19925000000012 ], [ 35.201056312561093, 32.19933517964688 ], [ 35.201, 32.199666666666587 ], [ 35.201083333333372, 32.199666666666587 ] ] ], [ [ [ 35.2405, 32.199666666666587 ], [ 35.240416666666704, 32.199666666666587 ], [ 35.240458521525113, 32.199773462931432 ], [ 35.240602452596079, 32.199706817627032 ], [ 35.2405, 32.199666666666587 ] ] ], [ [ [ 35.19463814036061, 32.200018269856912 ], [ 35.194666666666706, 32.199916666666695 ], [ 35.194565063476489, 32.199945195516023 ], [ 35.19463814036061, 32.200018269856912 ] ] ], [ [ [ 35.197304807027308, 32.200018269856912 ], [ 35.197333333333404, 32.199916666666695 ], [ 35.197231730143358, 32.199945195516023 ], [ 35.197304807027308, 32.200018269856912 ] ] ], [ [ [ 35.237442962646583, 32.20003282165527 ], [ 35.237500000000125, 32.199833333333402 ], [ 35.237296274820949, 32.199891581217571 ], [ 35.237442962646583, 32.20003282165527 ] ] ], [ [ [ 35.193363594055313, 32.199886408487941 ], [ 35.193333333333385, 32.199833333333402 ], [ 35.193219739278163, 32.199898101806639 ], [ 35.193401789347377, 32.200113591511979 ], [ 35.193613505045505, 32.2000288950602 ], [ 35.193363594055313, 32.199886408487941 ] ] ], [ [ [ 35.201, 32.199833333333402 ], [ 35.200863721211817, 32.199765594482415 ], [ 35.200805338541727, 32.200068191528317 ], [ 35.201, 32.200166666666746 ], [ 35.201, 32.199833333333402 ] ] ], [ [ [ 35.239460876464875, 32.19995947265636 ], [ 35.239416666666727, 32.199833333333402 ], [ 35.23929325358074, 32.199876586914172 ], [ 35.238793253580752, 32.199972045898562 ], [ 35.239026713053306, 32.200179438273096 ], [ 35.239290079752607, 32.200040079752682 ], [ 35.239460876464875, 32.19995947265636 ] ] ], [ [ [ 35.234166666666681, 32.20025 ], [ 35.234138671875087, 32.20011132812499 ], [ 35.234083333333331, 32.2 ], [ 35.233968902587947, 32.200091634114699 ], [ 35.234166666666681, 32.20025 ] ] ], [ [ [ 35.198666666666782, 32.20033333333339 ], [ 35.198666666666782, 32.20025 ], [ 35.198833333333369, 32.20025 ], [ 35.198833333333369, 32.200166666666746 ], [ 35.198666666666782, 32.200166666666746 ], [ 35.198666666666782, 32.2 ], [ 35.198491231282674, 32.199921412150161 ], [ 35.19860834248874, 32.200297393798792 ], [ 35.198666666666782, 32.20033333333339 ] ] ], [ [ [ 35.202916666666681, 32.20033333333339 ], [ 35.202916666666681, 32.20025 ], [ 35.203, 32.20025 ], [ 35.203, 32.200166666666746 ], [ 35.20275, 32.200166666666746 ], [ 35.20275, 32.20033333333339 ], [ 35.202916666666681, 32.20033333333339 ] ] ], [ [ [ 35.212916666666672, 32.200166666666746 ], [ 35.212833333333379, 32.200166666666746 ], [ 35.212833333333379, 32.20033333333339 ], [ 35.212984359741256, 32.200302846272848 ], [ 35.212916666666672, 32.200166666666746 ] ] ], [ [ [ 35.238804804484118, 32.200351603190086 ], [ 35.238833333333446, 32.20025 ], [ 35.238731730143229, 32.200278528849367 ], [ 35.238804804484118, 32.200351603190086 ] ] ], [ [ [ 35.197816200256398, 32.200216512044392 ], [ 35.19775, 32.200083333333453 ], [ 35.197472005208454, 32.200118387858083 ], [ 35.197542811075948, 32.200354812622095 ], [ 35.197816200256398, 32.200216512044392 ] ] ], [ [ [ 35.234166666666681, 32.20025 ], [ 35.234197153727337, 32.200401026407974 ], [ 35.234333333333439, 32.20033333333339 ], [ 35.234333333333439, 32.20025 ], [ 35.23425, 32.20025 ], [ 35.234166666666681, 32.20025 ] ] ], [ [ [ 35.206083333333368, 32.200416666666683 ], [ 35.206083333333368, 32.20033333333339 ], [ 35.206166666666661, 32.20033333333339 ], [ 35.206166666666661, 32.20025 ], [ 35.206, 32.20025 ], [ 35.206, 32.200166666666746 ], [ 35.205638107299876, 32.199994842529293 ], [ 35.205750000000137, 32.20025 ], [ 35.205916666666724, 32.20025 ], [ 35.205916666666724, 32.20033333333339 ], [ 35.205916666666724, 32.200416666666683 ], [ 35.206083333333368, 32.200416666666683 ] ] ], [ [ [ 35.1950833333334, 32.200416666666683 ], [ 35.194916666666643, 32.200416666666683 ], [ 35.194916666666643, 32.200500000000147 ], [ 35.195192143758277, 32.200467356364072 ], [ 35.1950833333334, 32.200416666666683 ] ] ], [ [ [ 35.241083333333449, 32.200500000000147 ], [ 35.241083333333449, 32.200416666666683 ], [ 35.241166666666743, 32.200416666666683 ], [ 35.241166666666743, 32.20033333333339 ], [ 35.241166666666743, 32.20025 ], [ 35.240833333333342, 32.20025 ], [ 35.240833333333342, 32.20033333333339 ], [ 35.24075, 32.20033333333339 ], [ 35.240818074544279, 32.200431925455746 ], [ 35.241083333333449, 32.200500000000147 ] ] ], [ [ [ 35.195388140360478, 32.2005182698569 ], [ 35.195416666666802, 32.200416666666683 ], [ 35.195315063476585, 32.200445195516011 ], [ 35.195388140360478, 32.2005182698569 ] ] ], [ [ [ 35.200804807027168, 32.2005182698569 ], [ 35.200833333333264, 32.200416666666683 ], [ 35.200731730143218, 32.200445195516011 ], [ 35.200804807027168, 32.2005182698569 ] ] ], [ [ [ 35.208916666666653, 32.20033333333339 ], [ 35.208833333333359, 32.20033333333339 ], [ 35.208639427185119, 32.200371215820383 ], [ 35.208734092712461, 32.200547663370799 ], [ 35.208916666666653, 32.200583333333441 ], [ 35.208916666666653, 32.20033333333339 ] ] ], [ [ [ 35.2000548070273, 32.200601603190194 ], [ 35.200083333333396, 32.200500000000147 ], [ 35.19998173014335, 32.200528528849304 ], [ 35.2000548070273, 32.200601603190194 ] ] ], [ [ [ 35.207166666666808, 32.200666666666734 ], [ 35.207166666666808, 32.200416666666683 ], [ 35.207333333333395, 32.200416666666683 ], [ 35.207333333333395, 32.20033333333339 ], [ 35.2069166666667, 32.20033333333339 ], [ 35.2069166666667, 32.200666666666734 ], [ 35.207166666666808, 32.200666666666734 ] ] ], [ [ [ 35.242466842651424, 32.200525873820027 ], [ 35.242199295044031, 32.200442540486733 ], [ 35.242166666666719, 32.200666666666734 ], [ 35.2425, 32.200666666666734 ], [ 35.242466842651424, 32.200525873820027 ] ] ], [ [ [ 35.201221473693863, 32.200684936523487 ], [ 35.20125000000013, 32.200583333333441 ], [ 35.201148396809913, 32.200611862182768 ], [ 35.201221473693863, 32.200684936523487 ] ] ], [ [ [ 35.19525, 32.20075 ], [ 35.195208333333255, 32.200556304931695 ], [ 35.195166666666694, 32.20075 ], [ 35.19525, 32.20075 ] ] ], [ [ [ 35.199595077514687, 32.20031298319509 ], [ 35.199258049011291, 32.200237426757894 ], [ 35.199384994506829, 32.200539667765383 ], [ 35.199333333333357, 32.20075 ], [ 35.199664820353235, 32.200693689982245 ], [ 35.19975, 32.200583333333441 ], [ 35.199544893900622, 32.200521581014073 ], [ 35.199666666666701, 32.200416666666683 ], [ 35.199595077514687, 32.20031298319509 ] ] ], [ [ [ 35.197194661458354, 32.200703084309851 ], [ 35.197043576558372, 32.20060358174652 ], [ 35.196916666666709, 32.200666666666734 ], [ 35.19697298685719, 32.200777994791792 ], [ 35.197194661458354, 32.200703084309851 ] ] ], [ [ [ 35.219601552327504, 32.20080639139826 ], [ 35.219448008219388, 32.200658131917294 ], [ 35.219416666666746, 32.20075 ], [ 35.219416666666746, 32.200833333333321 ], [ 35.219601552327504, 32.20080639139826 ] ] ], [ [ [ 35.197, 32.201083333333429 ], [ 35.196843335469623, 32.200880366007482 ], [ 35.196721112569207, 32.201035954793383 ], [ 35.197, 32.201083333333429 ] ] ], [ [ [ 35.228971471150714, 32.201184936523475 ], [ 35.229, 32.201083333333429 ], [ 35.228898396809825, 32.201111862182756 ], [ 35.228971471150714, 32.201184936523475 ] ] ], [ [ [ 35.222447682698544, 32.201182210286447 ], [ 35.222363062540694, 32.20097595214844 ], [ 35.22225, 32.201166666666722 ], [ 35.222333333333381, 32.201166666666722 ], [ 35.222333333333381, 32.20125 ], [ 35.222447682698544, 32.201182210286447 ] ] ], [ [ [ 35.244333333333429, 32.20125 ], [ 35.244291666666697, 32.201143269856914 ], [ 35.244250000000136, 32.20125 ], [ 35.244333333333429, 32.20125 ] ] ], [ [ [ 35.243833333333441, 32.201166666666722 ], [ 35.24375, 32.201166666666722 ], [ 35.243791666666709, 32.201273396809825 ], [ 35.243833333333441, 32.201166666666722 ] ] ], [ [ [ 35.194583333333412, 32.201333333333309 ], [ 35.194554807027316, 32.201231730143263 ], [ 35.194481730143195, 32.201304804483982 ], [ 35.194583333333412, 32.201333333333309 ] ] ], [ [ [ 35.24639036051434, 32.201295730590914 ], [ 35.24625, 32.201083333333429 ], [ 35.246132629394538, 32.201164367675858 ], [ 35.246235046386744, 32.20136737060551 ], [ 35.24639036051434, 32.201295730590914 ] ] ], [ [ [ 35.194000000000131, 32.201416666666603 ], [ 35.193879422505688, 32.201220977783237 ], [ 35.193833333333373, 32.201416666666603 ], [ 35.194000000000131, 32.201416666666603 ] ] ], [ [ [ 35.210083333333387, 32.201416666666603 ], [ 35.21, 32.201416666666603 ], [ 35.21, 32.201500000000124 ], [ 35.210083333333387, 32.201500000000124 ], [ 35.210083333333387, 32.201416666666603 ] ] ], [ [ [ 35.194583333333412, 32.201333333333309 ], [ 35.194558359782036, 32.201391693115227 ], [ 35.194391693115222, 32.201463012695342 ], [ 35.194633557637587, 32.201521174113054 ], [ 35.194666666666706, 32.201333333333309 ], [ 35.194583333333412, 32.201333333333309 ] ] ], [ [ [ 35.228288055419966, 32.201522476196317 ], [ 35.228333333333467, 32.201416666666603 ], [ 35.228141693115276, 32.201450444539375 ], [ 35.228288055419966, 32.201522476196317 ] ] ], [ [ [ 35.218583333333413, 32.201416666666603 ], [ 35.218450154622531, 32.201350468953535 ], [ 35.218416666666656, 32.201416666666603 ], [ 35.21850000000012, 32.20153293355304 ], [ 35.218583333333413, 32.201416666666603 ] ] ], [ [ [ 35.219583333333389, 32.201583333333417 ], [ 35.219583333333389, 32.201416666666603 ], [ 35.219467066446953, 32.201500000000124 ], [ 35.219583333333389, 32.201583333333417 ] ] ], [ [ [ 35.201721473693851, 32.20160160319017 ], [ 35.201750000000118, 32.201500000000124 ], [ 35.201648396809901, 32.201528528849281 ], [ 35.201721473693851, 32.20160160319017 ] ] ], [ [ [ 35.193583333333265, 32.201666666666711 ], [ 35.193376398722307, 32.20129703267412 ], [ 35.192880363464496, 32.201437291463265 ], [ 35.193056139628084, 32.2017029673259 ], [ 35.19321369679767, 32.201630366007521 ], [ 35.193338373819984, 32.201468841552753 ], [ 35.193416666666678, 32.20175 ], [ 35.193583333333265, 32.201666666666711 ] ] ], [ [ [ 35.223779505411812, 32.201688151041708 ], [ 35.22354366048171, 32.201387161255013 ], [ 35.223137161254897, 32.201456192016735 ], [ 35.223196172078531, 32.201637161254894 ], [ 35.223333333333301, 32.201666666666711 ], [ 35.223416666666594, 32.201666666666711 ], [ 35.223416666666594, 32.20175 ], [ 35.223583333333409, 32.20175 ], [ 35.223666666666702, 32.20175 ], [ 35.223779505411812, 32.201688151041708 ] ] ], [ [ [ 35.20096370951336, 32.201687876383517 ], [ 35.201, 32.201416666666603 ], [ 35.200927263895608, 32.20145653788245 ], [ 35.200803827921675, 32.201756006876622 ], [ 35.20096370951336, 32.201687876383517 ] ] ], [ [ [ 35.199721473693899, 32.201934936523514 ], [ 35.19975, 32.201833333333468 ], [ 35.199648396810005, 32.201861862182625 ], [ 35.199721473693899, 32.201934936523514 ] ] ], [ [ [ 35.199299954732282, 32.201939376831206 ], [ 35.199333333333357, 32.20175 ], [ 35.19922502644863, 32.201796346028686 ], [ 35.199299954732282, 32.201939376831206 ] ] ], [ [ [ 35.228002868652425, 32.201813552856493 ], [ 35.228083333333416, 32.201500000000124 ], [ 35.227648605346815, 32.20172802734379 ], [ 35.227598688761475, 32.201950703938792 ], [ 35.228002868652425, 32.201813552856493 ] ] ], [ [ [ 35.237583333333419, 32.202000000000112 ], [ 35.237690063476691, 32.201958333333323 ], [ 35.237583333333419, 32.201916666666591 ], [ 35.237583333333419, 32.202000000000112 ] ] ], [ [ [ 35.224388137817414, 32.202018269856808 ], [ 35.224416666666741, 32.201916666666591 ], [ 35.224315063476524, 32.201945195515918 ], [ 35.224388137817414, 32.202018269856808 ] ] ], [ [ [ 35.237583333333419, 32.202000000000112 ], [ 35.237500000000125, 32.202000000000112 ], [ 35.237500000000125, 32.202083333333405 ], [ 35.237583333333419, 32.202083333333405 ], [ 35.237583333333419, 32.202000000000112 ] ] ], [ [ [ 35.22322147115085, 32.202101603190101 ], [ 35.22325, 32.202000000000112 ], [ 35.223148396809961, 32.202028528849212 ], [ 35.22322147115085, 32.202101603190101 ] ] ], [ [ [ 35.236711842854845, 32.20210568745938 ], [ 35.23675, 32.201583333333417 ], [ 35.236549296061241, 32.201721908569311 ], [ 35.236711842854845, 32.20210568745938 ] ] ], [ [ [ 35.246799952189235, 32.202106043497793 ], [ 35.246833333333313, 32.201916666666591 ], [ 35.246725026448587, 32.20196301269533 ], [ 35.246799952189235, 32.202106043497793 ] ] ], [ [ [ 35.20198360951747, 32.202051340739047 ], [ 35.201916666666705, 32.201916666666591 ], [ 35.20172200520841, 32.201955963134708 ], [ 35.201809539794908, 32.202111328125113 ], [ 35.20198360951747, 32.202051340739047 ] ] ], [ [ [ 35.201083333333372, 32.201833333333468 ], [ 35.201, 32.201833333333468 ], [ 35.201, 32.202166666666699 ], [ 35.201166666666666, 32.202166666666699 ], [ 35.201166666666666, 32.202000000000112 ], [ 35.201083333333372, 32.201833333333468 ] ] ], [ [ [ 35.19616666666667, 32.201666666666711 ], [ 35.196043986002621, 32.201615137736098 ], [ 35.195874399821093, 32.201653157552187 ], [ 35.195715962727775, 32.201882629394561 ], [ 35.195610445658417, 32.201955485025962 ], [ 35.19575, 32.202166666666699 ], [ 35.195901023864678, 32.202197153727184 ], [ 35.195833333333269, 32.202333333333456 ], [ 35.196113927205317, 32.202291366577185 ], [ 35.195886540730896, 32.201959314982048 ], [ 35.196134140014749, 32.201800806681376 ], [ 35.19616666666667, 32.20175 ], [ 35.19616666666667, 32.201666666666711 ] ] ], [ [ [ 35.237856730143278, 32.202291666666724 ], [ 35.23775, 32.20225 ], [ 35.23775, 32.202333333333456 ], [ 35.237856730143278, 32.202291666666724 ] ] ], [ [ [ 35.195000000000107, 32.20225 ], [ 35.19475, 32.20225 ], [ 35.19475, 32.20241666666675 ], [ 35.194888671875106, 32.202388671875042 ], [ 35.195000000000107, 32.202333333333456 ], [ 35.195000000000107, 32.20225 ] ] ], [ [ [ 35.228117370605446, 32.202299296061256 ], [ 35.227916666666601, 32.202000000000112 ], [ 35.227823079427139, 32.202064615885547 ], [ 35.228010253906291, 32.202352050781315 ], [ 35.227799296061278, 32.202497701009179 ], [ 35.228353754679347, 32.202462504069103 ], [ 35.228117370605446, 32.202299296061256 ] ] ], [ [ [ 35.193910059610971, 32.202528508504258 ], [ 35.193833333333373, 32.202333333333456 ], [ 35.193713696797658, 32.20242567443853 ], [ 35.193910059610971, 32.202528508504258 ] ] ], [ [ [ 35.2381666666667, 32.202583333333394 ], [ 35.238083333333407, 32.202583333333394 ], [ 35.238083333333407, 32.202666666666687 ], [ 35.2381666666667, 32.202666666666687 ], [ 35.2381666666667, 32.202583333333394 ] ] ], [ [ [ 35.247081756591797, 32.202698959350585 ], [ 35.247, 32.2025 ], [ 35.246798543294403, 32.202553151448626 ], [ 35.247081756591797, 32.202698959350585 ] ] ], [ [ [ 35.227966618855874, 32.202856043497661 ], [ 35.228000000000122, 32.202666666666687 ], [ 35.227891693115225, 32.202713012695369 ], [ 35.227966618855874, 32.202856043497661 ] ] ], [ [ [ 35.195317563374829, 32.20280259195971 ], [ 35.19525, 32.202666666666687 ], [ 35.195111328124938, 32.202694661458395 ], [ 35.195000000000107, 32.202750000000151 ], [ 35.195056320190417, 32.202861328124982 ], [ 35.195317563374829, 32.20280259195971 ] ] ], [ [ [ 35.19325, 32.202833333333444 ], [ 35.193166666666798, 32.202833333333444 ], [ 35.193166666666798, 32.202916666666738 ], [ 35.19325, 32.202916666666738 ], [ 35.19325, 32.202833333333444 ] ] ], [ [ [ 35.226014216105114, 32.202862915039077 ], [ 35.225916666666706, 32.202666666666687 ], [ 35.225805338541647, 32.202722986857111 ], [ 35.225880249023419, 32.202944661458275 ], [ 35.226014216105114, 32.202862915039077 ] ] ], [ [ [ 35.201243392944434, 32.202945175170953 ], [ 35.201166666666666, 32.202750000000151 ], [ 35.201047030131122, 32.202842341105224 ], [ 35.201243392944434, 32.202945175170953 ] ] ], [ [ [ 35.222916666666663, 32.203 ], [ 35.222916666666663, 32.202750000000151 ], [ 35.223000000000127, 32.202750000000151 ], [ 35.223066197713194, 32.202716512044276 ], [ 35.223000000000127, 32.202583333333394 ], [ 35.223000000000127, 32.2025 ], [ 35.22308333333342, 32.2025 ], [ 35.22308333333342, 32.20225 ], [ 35.223000000000127, 32.20225 ], [ 35.223000000000127, 32.202083333333405 ], [ 35.222916666666663, 32.202083333333405 ], [ 35.222916666666663, 32.202583333333394 ], [ 35.22275, 32.202583333333394 ], [ 35.222687937418641, 32.202961146036785 ], [ 35.222916666666663, 32.203 ] ] ], [ [ [ 35.224111328125105, 32.203027013142901 ], [ 35.224051462809371, 32.20284986368813 ], [ 35.223874145507921, 32.202936467488712 ], [ 35.223666666666702, 32.202833333333444 ], [ 35.223666666666702, 32.203083333333325 ], [ 35.224000000000103, 32.203083333333325 ], [ 35.224111328125105, 32.203027013142901 ] ] ], [ [ [ 35.225333333333424, 32.203083333333325 ], [ 35.225291666666692, 32.202889638264992 ], [ 35.225250000000131, 32.203083333333325 ], [ 35.225333333333424, 32.203083333333325 ] ] ], [ [ [ 35.230304804484092, 32.203268269856892 ], [ 35.230333333333419, 32.203166666666675 ], [ 35.230231730143373, 32.203195192972942 ], [ 35.230304804484092, 32.203268269856892 ] ] ], [ [ [ 35.194416666666655, 32.203166666666675 ], [ 35.194333333333361, 32.203166666666675 ], [ 35.19422265625002, 32.203222656250091 ], [ 35.194166666666774, 32.203333333333433 ], [ 35.194416666666655, 32.203333333333433 ], [ 35.194416666666655, 32.203166666666675 ] ] ], [ [ [ 35.195101603190153, 32.203278526306235 ], [ 35.195000000000107, 32.203250000000139 ], [ 35.195028526306203, 32.203351603190185 ], [ 35.195101603190153, 32.203278526306235 ] ] ], [ [ [ 35.19266666666681, 32.203250000000139 ], [ 35.1925334879557, 32.20318379974367 ], [ 35.192472005208458, 32.203305338541725 ], [ 35.192416666666702, 32.203333333333433 ], [ 35.192416666666702, 32.203416666666726 ], [ 35.192601198832278, 32.203379414876281 ], [ 35.19266666666681, 32.203250000000139 ] ] ], [ [ [ 35.224445414225386, 32.203375930786081 ], [ 35.224306940714541, 32.203141894022622 ], [ 35.22425, 32.203250000000139 ], [ 35.22425, 32.203416666666726 ], [ 35.224445414225386, 32.203375930786081 ] ] ], [ [ [ 35.230666666666593, 32.203333333333433 ], [ 35.230416666666713, 32.203333333333433 ], [ 35.230416666666713, 32.2035 ], [ 35.230666666666593, 32.2035 ], [ 35.230666666666593, 32.203333333333433 ] ] ], [ [ [ 35.234750000000133, 32.203250000000139 ], [ 35.234583333333319, 32.203250000000139 ], [ 35.234583333333319, 32.2035 ], [ 35.234666666666612, 32.2035 ], [ 35.234694661458377, 32.203444661458263 ], [ 35.234816197713201, 32.203383178711022 ], [ 35.234750000000133, 32.203250000000139 ] ] ], [ [ [ 35.233733016967733, 32.203466812133911 ], [ 35.233666666666693, 32.203333333333433 ], [ 35.233388671875048, 32.203368387858063 ], [ 35.233603276570648, 32.203527994791784 ], [ 35.233733016967733, 32.203466812133911 ] ] ], [ [ [ 35.216083333333302, 32.203583333333313 ], [ 35.216, 32.203467066446876 ], [ 35.215916666666715, 32.203583333333313 ], [ 35.216083333333302, 32.203583333333313 ] ] ], [ [ [ 35.220583333333309, 32.203583333333313 ], [ 35.220333333333429, 32.203583333333313 ], [ 35.220333333333429, 32.203666666666606 ], [ 35.220583333333309, 32.203666666666606 ], [ 35.220583333333309, 32.203583333333313 ] ] ], [ [ [ 35.193916666666667, 32.2035 ], [ 35.19375, 32.2035 ], [ 35.19375, 32.203583333333313 ], [ 35.19375, 32.203666666666606 ], [ 35.193916666666667, 32.203666666666606 ], [ 35.193916666666667, 32.203750000000127 ], [ 35.194111923217861, 32.203625 ], [ 35.193916666666667, 32.2035 ] ] ], [ [ [ 35.200000000000102, 32.203916666666714 ], [ 35.200000000000102, 32.203833333333421 ], [ 35.199916666666809, 32.203833333333421 ], [ 35.199916666666809, 32.203916666666714 ], [ 35.200000000000102, 32.203916666666714 ] ] ], [ [ [ 35.233583333333399, 32.203916666666714 ], [ 35.233541666666611, 32.203809936523385 ], [ 35.2335, 32.203916666666714 ], [ 35.233583333333399, 32.203916666666714 ] ] ], [ [ [ 35.247910059611058, 32.203945175170873 ], [ 35.24783333333346, 32.203750000000127 ], [ 35.247713699340807, 32.203842343648375 ], [ 35.247910059611058, 32.203945175170873 ] ] ], [ [ [ 35.200000000000102, 32.203916666666714 ], [ 35.200000000000102, 32.204 ], [ 35.200166666666689, 32.204 ], [ 35.200166666666689, 32.203916666666714 ], [ 35.200000000000102, 32.203916666666714 ] ] ], [ [ [ 35.248196172078451, 32.204053827921484 ], [ 35.248166666666634, 32.204 ], [ 35.24797049458823, 32.204042198181128 ], [ 35.248201293945328, 32.204196172078582 ], [ 35.248526499430398, 32.204124885559168 ], [ 35.248196172078451, 32.204053827921484 ] ] ], [ [ [ 35.207666666666796, 32.204250000000116 ], [ 35.207625, 32.204056302388551 ], [ 35.207583333333275, 32.204250000000116 ], [ 35.207666666666796, 32.204250000000116 ] ] ], [ [ [ 35.197333333333404, 32.203916666666714 ], [ 35.197208333333379, 32.203854532877585 ], [ 35.197083333333353, 32.203916666666714 ], [ 35.196900382995636, 32.203943326314345 ], [ 35.19723055775961, 32.204271197001219 ], [ 35.197645469665645, 32.204228802998955 ], [ 35.197666666666805, 32.204083333333472 ], [ 35.197555338541747, 32.204027994791716 ], [ 35.197416666666697, 32.204 ], [ 35.197333333333404, 32.204 ], [ 35.197333333333404, 32.203916666666714 ] ] ], [ [ [ 35.194400276184069, 32.204218007405586 ], [ 35.194333333333361, 32.204083333333472 ], [ 35.19413867187501, 32.204122632344649 ], [ 35.194226206461508, 32.204277994791653 ], [ 35.194400276184069, 32.204218007405586 ] ] ], [ [ [ 35.191166666666675, 32.204250000000116 ], [ 35.191083333333381, 32.204250000000116 ], [ 35.191083333333381, 32.204333333333409 ], [ 35.191166666666675, 32.204333333333409 ], [ 35.191166666666675, 32.204250000000116 ] ] ], [ [ [ 35.20925, 32.204333333333409 ], [ 35.209166666666704, 32.204333333333409 ], [ 35.209166666666704, 32.204416666666702 ], [ 35.20925, 32.204416666666702 ], [ 35.20925, 32.204333333333409 ] ] ], [ [ [ 35.199333333333357, 32.2045 ], [ 35.19925, 32.20438373311373 ], [ 35.199166666666713, 32.2045 ], [ 35.199333333333357, 32.2045 ] ] ], [ [ [ 35.216666666666811, 32.204333333333409 ], [ 35.216832845052124, 32.204415936787939 ], [ 35.21696955362961, 32.204349171956437 ], [ 35.217, 32.2045 ], [ 35.217046274820916, 32.204462941487634 ], [ 35.21712039184581, 32.204370391845714 ], [ 35.217364430745477, 32.204267557780042 ], [ 35.217037058512346, 32.20412960815429 ], [ 35.217, 32.204083333333472 ], [ 35.216719477335687, 32.20412754567468 ], [ 35.216666666666811, 32.204333333333409 ] ] ], [ [ [ 35.200221473693887, 32.204518269856749 ], [ 35.20025, 32.204416666666702 ], [ 35.200148396809936, 32.204445192972798 ], [ 35.200221473693887, 32.204518269856749 ] ] ], [ [ [ 35.199871386210248, 32.20452247619636 ], [ 35.199916666666809, 32.204416666666702 ], [ 35.199725026448618, 32.204450444539475 ], [ 35.199871386210248, 32.20452247619636 ] ] ], [ [ [ 35.216750000000104, 32.20458333333346 ], [ 35.216833333333398, 32.20458333333346 ], [ 35.216791666666666, 32.204476603190187 ], [ 35.216750000000104, 32.20458333333346 ] ] ], [ [ [ 35.248138137817307, 32.204601603190213 ], [ 35.248166666666634, 32.2045 ], [ 35.248065063476645, 32.204528526306092 ], [ 35.248138137817307, 32.204601603190213 ] ] ], [ [ [ 35.2485, 32.204666666666753 ], [ 35.248471471150708, 32.204565063476537 ], [ 35.248398396809989, 32.204638140360657 ], [ 35.2485, 32.204666666666753 ] ] ], [ [ [ 35.216750000000104, 32.20458333333346 ], [ 35.216666666666811, 32.20458333333346 ], [ 35.216666666666811, 32.204333333333409 ], [ 35.216611328125055, 32.204361328125117 ], [ 35.2165, 32.20458333333346 ], [ 35.216699768066462, 32.204682632446406 ], [ 35.216750000000104, 32.20458333333346 ] ] ], [ [ [ 35.245473236084081, 32.204545041402241 ], [ 35.245333333333349, 32.204333333333409 ], [ 35.245284037272256, 32.20436737060561 ], [ 35.245215962727855, 32.204465962727966 ], [ 35.245049296061268, 32.204581036885656 ], [ 35.24520718383792, 32.204700703938784 ], [ 35.245473236084081, 32.204545041402241 ] ] ], [ [ [ 35.232466618855881, 32.204772710164491 ], [ 35.23250000000013, 32.20458333333346 ], [ 35.232391693115233, 32.204629681905203 ], [ 35.232466618855881, 32.204772710164491 ] ] ], [ [ [ 35.2485, 32.204666666666753 ], [ 35.248559036255017, 32.204778750101752 ], [ 35.248774576822996, 32.204702346801866 ], [ 35.2485, 32.204666666666753 ] ] ], [ [ [ 35.225554804483977, 32.204934936523387 ], [ 35.225583333333304, 32.204833333333397 ], [ 35.225481730143258, 32.204861859639493 ], [ 35.225554804483977, 32.204934936523387 ] ] ], [ [ [ 35.193410059610983, 32.204945175171019 ], [ 35.193333333333385, 32.20475 ], [ 35.19321369679767, 32.204842343648352 ], [ 35.193410059610983, 32.204945175171019 ] ] ], [ [ [ 35.231794871012369, 32.204827384948828 ], [ 35.231833333333327, 32.20458333333346 ], [ 35.231465962727953, 32.204677609761575 ], [ 35.231618733723963, 32.204950703938891 ], [ 35.231794871012369, 32.204827384948828 ] ] ], [ [ [ 35.200193534851167, 32.205023869832473 ], [ 35.20025, 32.204916666666691 ], [ 35.199971249898226, 32.204952888488833 ], [ 35.200193534851167, 32.205023869832473 ] ] ], [ [ [ 35.192546081543071, 32.204898801167928 ], [ 35.192416666666702, 32.204833333333397 ], [ 35.192306849161753, 32.204884493509894 ], [ 35.192405128479095, 32.205049664815363 ], [ 35.192583333333346, 32.205083333333448 ], [ 35.192546081543071, 32.204898801167928 ] ] ], [ [ [ 35.247471471150732, 32.205101603190201 ], [ 35.2475, 32.205 ], [ 35.247398396809842, 32.205028526306251 ], [ 35.247471471150732, 32.205101603190201 ] ] ], [ [ [ 35.246089975992845, 32.204946657816663 ], [ 35.246, 32.20475 ], [ 35.245718983968175, 32.204789802551375 ], [ 35.245827214558915, 32.205102432251124 ], [ 35.246089975992845, 32.204946657816663 ] ], [ [ 35.245815063476641, 32.204861859639493 ], [ 35.245916666666631, 32.204833333333397 ], [ 35.245888137817303, 32.204934936523387 ], [ 35.245815063476641, 32.204861859639493 ] ] ], [ [ [ 35.228805338541747, 32.204861328125105 ], [ 35.228666666666697, 32.204833333333397 ], [ 35.228666666666697, 32.205 ], [ 35.228947316487563, 32.205047676086508 ], [ 35.22925, 32.205166666666742 ], [ 35.229333333333443, 32.205166666666742 ], [ 35.229333333333443, 32.205 ], [ 35.229027994791636, 32.204972005208447 ], [ 35.228805338541747, 32.204861328125105 ] ] ], [ [ [ 35.228243392944478, 32.205195175170957 ], [ 35.228166666666709, 32.205 ], [ 35.228047032674226, 32.205092343648232 ], [ 35.228243392944478, 32.205195175170957 ] ] ], [ [ [ 35.234444661458269, 32.205210700988914 ], [ 35.234310175577889, 32.204972005208447 ], [ 35.234150329589909, 32.205049484252925 ], [ 35.23425, 32.20525 ], [ 35.234444661458269, 32.205210700988914 ] ] ], [ [ [ 35.245083333333469, 32.205333333333328 ], [ 35.24525, 32.20525 ], [ 35.245368881225659, 32.205161567688094 ], [ 35.245128417968886, 32.204965337117642 ], [ 35.244916666666711, 32.20525 ], [ 35.245083333333469, 32.20525 ], [ 35.245083333333469, 32.205333333333328 ] ] ], [ [ [ 35.245083333333469, 32.205333333333328 ], [ 35.244981730143252, 32.205361859639481 ], [ 35.245054804484141, 32.205434936523375 ], [ 35.245083333333469, 32.205333333333328 ] ] ], [ [ [ 35.243705276489379, 32.205445604960175 ], [ 35.24375, 32.20525 ], [ 35.243468983968171, 32.205289802551363 ], [ 35.243705276489379, 32.205445604960175 ] ] ], [ [ [ 35.244916666666711, 32.205416666666679 ], [ 35.244833333333418, 32.205416666666679 ], [ 35.244833333333418, 32.205500000000143 ], [ 35.244916666666711, 32.205500000000143 ], [ 35.244916666666711, 32.205416666666679 ] ] ], [ [ [ 35.246416666666619, 32.205500000000143 ], [ 35.246375, 32.205393269856813 ], [ 35.246333333333325, 32.205500000000143 ], [ 35.246416666666619, 32.205500000000143 ] ] ], [ [ [ 35.21035160319019, 32.205611859639532 ], [ 35.21025, 32.205583333333436 ], [ 35.21027852630607, 32.205684936523483 ], [ 35.21035160319019, 32.205611859639532 ] ] ], [ [ [ 35.244621388753274, 32.205689142863093 ], [ 35.244666666666774, 32.205583333333436 ], [ 35.244475026448583, 32.205617111206038 ], [ 35.244621388753274, 32.205689142863093 ] ] ], [ [ [ 35.244971471150848, 32.205768269856776 ], [ 35.245, 32.20566666666673 ], [ 35.244898396809958, 32.205695192972826 ], [ 35.244971471150848, 32.205768269856776 ] ] ], [ [ [ 35.245916666666631, 32.20591666666661 ], [ 35.245916666666631, 32.20575 ], [ 35.246, 32.20575 ], [ 35.245962778727289, 32.205422701517875 ], [ 35.245549296061256, 32.205330006917393 ], [ 35.245626703898211, 32.205863639831648 ], [ 35.245833333333337, 32.20591666666661 ], [ 35.245916666666631, 32.20591666666661 ] ] ], [ [ [ 35.209333333333291, 32.20575 ], [ 35.20925, 32.20575 ], [ 35.20925, 32.205833333333317 ], [ 35.209553713480716, 32.206034037272161 ], [ 35.209547643025815, 32.205804997762129 ], [ 35.209333333333291, 32.20575 ] ] ], [ [ [ 35.214312133789122, 32.205937863667941 ], [ 35.214166666666699, 32.20591666666661 ], [ 35.214166666666699, 32.206000000000131 ], [ 35.21425, 32.206000000000131 ], [ 35.21425, 32.206083333333424 ], [ 35.214434885660921, 32.206056391398135 ], [ 35.214312133789122, 32.205937863667941 ] ] ], [ [ [ 35.215916666666715, 32.206000000000131 ], [ 35.215833333333421, 32.206000000000131 ], [ 35.215833333333421, 32.206083333333424 ], [ 35.215916666666715, 32.206083333333424 ], [ 35.215916666666715, 32.206000000000131 ] ] ], [ [ [ 35.191166666666675, 32.206083333333424 ], [ 35.191083333333381, 32.206083333333424 ], [ 35.191083333333381, 32.206166666666718 ], [ 35.191166666666675, 32.206166666666718 ], [ 35.191166666666675, 32.206083333333424 ] ] ], [ [ [ 35.24372147115082, 32.206184936523471 ], [ 35.24375, 32.206083333333424 ], [ 35.243648396809931, 32.20611185963952 ], [ 35.24372147115082, 32.206184936523471 ] ] ], [ [ [ 35.24602339680996, 32.20620833333345 ], [ 35.245916666666631, 32.206166666666718 ], [ 35.245916666666631, 32.20625 ], [ 35.24602339680996, 32.20620833333345 ] ] ], [ [ [ 35.245416666666699, 32.206500000000119 ], [ 35.245375, 32.20639326985679 ], [ 35.245333333333349, 32.206500000000119 ], [ 35.245416666666699, 32.206500000000119 ] ] ], [ [ [ 35.191188247680657, 32.206538439432904 ], [ 35.19125, 32.206333333333475 ], [ 35.191083333333381, 32.206416666666598 ], [ 35.191188247680657, 32.206538439432904 ] ] ], [ [ [ 35.245333333333349, 32.206666666666706 ], [ 35.24525, 32.206666666666706 ], [ 35.24525, 32.20675 ], [ 35.245333333333349, 32.20675 ], [ 35.245333333333349, 32.206666666666706 ] ] ], [ [ [ 35.190389322916587, 32.206777343749991 ], [ 35.190333333333342, 32.206666666666706 ], [ 35.190109263102329, 32.206694920857842 ], [ 35.18998465092983, 32.206950078328475 ], [ 35.190083333333405, 32.207 ], [ 35.190449872334909, 32.206905937194904 ], [ 35.1905000000001, 32.206833333333464 ], [ 35.190389322916587, 32.206777343749991 ] ] ], [ [ [ 35.18975, 32.207083333333401 ], [ 35.189708333333328, 32.206976603190242 ], [ 35.189666666666767, 32.207083333333401 ], [ 35.18975, 32.207083333333401 ] ] ], [ [ [ 35.196916666666709, 32.207 ], [ 35.197027297973705, 32.206753033956034 ], [ 35.196658358256002, 32.206878761291591 ], [ 35.196750000000122, 32.207083333333401 ], [ 35.196916666666709, 32.207083333333401 ], [ 35.196916666666709, 32.207 ] ] ], [ [ [ 35.21325, 32.207083333333401 ], [ 35.213452189127679, 32.206889073689808 ], [ 35.213166666666723, 32.206833333333464 ], [ 35.213166666666723, 32.206916666666757 ], [ 35.213000000000136, 32.206916666666757 ], [ 35.213000000000136, 32.207083333333401 ], [ 35.21325, 32.207083333333401 ] ] ], [ [ [ 35.201247281392398, 32.207248868306465 ], [ 35.201166666666666, 32.207083333333401 ], [ 35.20088791656508, 32.207119555155543 ], [ 35.201025047302267, 32.207362083435157 ], [ 35.201247281392398, 32.207248868306465 ] ] ], [ [ [ 35.212583333333441, 32.207416666666745 ], [ 35.212583333333441, 32.207333333333452 ], [ 35.212833333333379, 32.207333333333452 ], [ 35.212833333333379, 32.20725 ], [ 35.212916666666672, 32.20725 ], [ 35.212867370605579, 32.2070492960612 ], [ 35.212833333333379, 32.206833333333464 ], [ 35.212666666666735, 32.206833333333464 ], [ 35.212583333333441, 32.206833333333464 ], [ 35.2125, 32.206833333333464 ], [ 35.2125, 32.206916666666757 ], [ 35.212416666666684, 32.206916666666757 ], [ 35.212416666666684, 32.207 ], [ 35.212166666666803, 32.207 ], [ 35.212166666666803, 32.20725 ], [ 35.21233333333339, 32.20725 ], [ 35.21233333333339, 32.207333333333452 ], [ 35.212416666666684, 32.207333333333452 ], [ 35.212583333333441, 32.207416666666745 ] ] ], [ [ [ 35.190471472422303, 32.207434936523498 ], [ 35.1905000000001, 32.207333333333452 ], [ 35.190398398081584, 32.207361859639548 ], [ 35.190471472422303, 32.207434936523498 ] ] ], [ [ [ 35.194788052876788, 32.207522476196232 ], [ 35.194833333333349, 32.207416666666745 ], [ 35.194641693115329, 32.207450444539518 ], [ 35.194788052876788, 32.207522476196232 ] ] ], [ [ [ 35.19475, 32.207666666666682 ], [ 35.194666666666706, 32.207666666666682 ], [ 35.194666666666706, 32.207750000000146 ], [ 35.19475, 32.207750000000146 ], [ 35.194833333333349, 32.207750000000146 ], [ 35.194833333333349, 32.207666666666682 ], [ 35.19475, 32.207666666666682 ] ] ], [ [ [ 35.220704722086623, 32.20802247619639 ], [ 35.220750000000123, 32.207916666666733 ], [ 35.220558359781933, 32.207950444539506 ], [ 35.220704722086623, 32.20802247619639 ] ] ], [ [ [ 35.209518781026247, 32.208323473612552 ], [ 35.209573811848998, 32.208146794637116 ], [ 35.209448438008621, 32.207968228658046 ], [ 35.20933484395357, 32.207634895324816 ], [ 35.209076182047625, 32.207709691365665 ], [ 35.208968228658136, 32.207884895324753 ], [ 35.208916666666653, 32.207916666666733 ], [ 35.209166666666704, 32.208250000000135 ], [ 35.209289889017782, 32.208305198669564 ], [ 35.209375, 32.208278689066503 ], [ 35.209518781026247, 32.208323473612552 ] ] ], [ [ [ 35.187416666666763, 32.208416666666722 ], [ 35.18725000000012, 32.208416666666722 ], [ 35.18725000000012, 32.2085 ], [ 35.187416666666763, 32.2085 ], [ 35.187416666666763, 32.208416666666722 ] ] ], [ [ [ 35.189583333333246, 32.208416666666722 ], [ 35.189500000000123, 32.208416666666722 ], [ 35.189500000000123, 32.208583333333308 ], [ 35.189583333333246, 32.208583333333308 ], [ 35.189583333333246, 32.208416666666722 ] ] ], [ [ [ 35.209721473693889, 32.208768269856819 ], [ 35.20975, 32.208666666666602 ], [ 35.209648396809939, 32.208695192972925 ], [ 35.209721473693889, 32.208768269856819 ] ] ], [ [ [ 35.195166666666694, 32.208833333333416 ], [ 35.1950833333334, 32.20871706644698 ], [ 35.195000000000107, 32.208833333333416 ], [ 35.195166666666694, 32.208833333333416 ] ] ], [ [ [ 35.197916666666686, 32.208833333333416 ], [ 35.197833333333392, 32.208833333333416 ], [ 35.197833333333392, 32.20891666666671 ], [ 35.197916666666686, 32.20891666666671 ], [ 35.197916666666686, 32.208833333333416 ] ] ], [ [ [ 35.193583333333265, 32.209333333333404 ], [ 35.193583333333265, 32.209166666666761 ], [ 35.193387641906838, 32.209212755839076 ], [ 35.193583333333265, 32.209333333333404 ] ] ], [ [ [ 35.210206840515127, 32.20905947621668 ], [ 35.21, 32.20891666666671 ], [ 35.21, 32.209166666666761 ], [ 35.210106730143366, 32.209208333333322 ], [ 35.21, 32.20925 ], [ 35.21, 32.209333333333404 ], [ 35.21025, 32.209333333333404 ], [ 35.210206840515127, 32.20905947621668 ] ] ], [ [ [ 35.198, 32.209333333333404 ], [ 35.197833333333392, 32.209333333333404 ], [ 35.197833333333392, 32.209416666666698 ], [ 35.198, 32.209416666666698 ], [ 35.198, 32.209333333333404 ] ] ], [ [ [ 35.227619633992617, 32.209596290588479 ], [ 35.227258682251033, 32.209249453226789 ], [ 35.226833333333389, 32.209416666666698 ], [ 35.226889322916804, 32.209527343749983 ], [ 35.227, 32.209583333333455 ], [ 35.227054463704462, 32.209512771606512 ], [ 35.227619633992617, 32.209596290588479 ] ] ], [ [ [ 35.230166666666605, 32.20975 ], [ 35.230083333333312, 32.20975 ], [ 35.230083333333312, 32.209833333333336 ], [ 35.230166666666605, 32.209833333333336 ], [ 35.230166666666605, 32.20975 ] ] ], [ [ [ 35.228138137817382, 32.209934936523382 ], [ 35.228166666666709, 32.209833333333336 ], [ 35.228065063476663, 32.209861859639489 ], [ 35.228138137817382, 32.209934936523382 ] ] ], [ [ [ 35.19325, 32.210083333333444 ], [ 35.193208333333359, 32.209976603190114 ], [ 35.193166666666798, 32.210083333333444 ], [ 35.19325, 32.210083333333444 ] ] ], [ [ [ 35.193666666666786, 32.21000000000015 ], [ 35.1935, 32.21000000000015 ], [ 35.1935, 32.210166666666737 ], [ 35.193638671875021, 32.210138671875029 ], [ 35.19375, 32.210083333333444 ], [ 35.19375, 32.21000000000015 ], [ 35.193666666666786, 32.21000000000015 ] ] ], [ [ [ 35.231622487386062, 32.210225568135684 ], [ 35.231185429891013, 32.209947601318504 ], [ 35.231083333333459, 32.209833333333336 ], [ 35.230972284952827, 32.209932551066231 ], [ 35.23095509847019, 32.210220942179376 ], [ 35.23125, 32.210203366597455 ], [ 35.231622487386062, 32.210225568135684 ] ] ], [ [ [ 35.185583333333398, 32.21025 ], [ 35.185541666666666, 32.210143269856758 ], [ 35.185500000000104, 32.21025 ], [ 35.185583333333398, 32.21025 ] ] ], [ [ [ 35.227891784667918, 32.210273582458512 ], [ 35.227833333333308, 32.21000000000015 ], [ 35.22762734476737, 32.210184048970518 ], [ 35.227891784667918, 32.210273582458512 ] ] ], [ [ [ 35.186, 32.210333333333324 ], [ 35.186, 32.21025 ], [ 35.185893268585289, 32.210291666666762 ], [ 35.186, 32.210333333333324 ] ] ], [ [ [ 35.22875, 32.210333333333324 ], [ 35.228666666666697, 32.210217066446887 ], [ 35.228583333333404, 32.210333333333324 ], [ 35.22875, 32.210333333333324 ] ] ], [ [ [ 35.219190063476674, 32.210375 ], [ 35.219083333333401, 32.210333333333324 ], [ 35.219083333333401, 32.210416666666617 ], [ 35.219190063476674, 32.210375 ] ] ], [ [ [ 35.230562616984116, 32.210373774210666 ], [ 35.230416015624996, 32.21008398437499 ], [ 35.230250000000126, 32.21000000000015 ], [ 35.230250000000126, 32.210166666666737 ], [ 35.230166666666605, 32.210166666666737 ], [ 35.23019466145837, 32.210305338541787 ], [ 35.230250000000126, 32.210416666666617 ], [ 35.230333333333419, 32.210416666666617 ], [ 35.230333333333419, 32.210500000000138 ], [ 35.23046822102873, 32.210567049662302 ], [ 35.230562616984116, 32.210373774210666 ] ] ], [ [ [ 35.21875, 32.210500000000138 ], [ 35.218666666666707, 32.210500000000138 ], [ 35.218666666666707, 32.210583333333432 ], [ 35.21875, 32.210583333333432 ], [ 35.21875, 32.210500000000138 ] ] ], [ [ [ 35.22875, 32.210333333333324 ], [ 35.228777994791699, 32.21038867187508 ], [ 35.229, 32.210500000000138 ], [ 35.229106730143371, 32.2105416666667 ], [ 35.229, 32.210583333333432 ], [ 35.229083333333392, 32.21075 ], [ 35.22925, 32.21075 ], [ 35.229161458333351, 32.21055234273274 ], [ 35.229416666666737, 32.210666666666725 ], [ 35.229450703938937, 32.210617370605462 ], [ 35.229604003906331, 32.2105115254721 ], [ 35.229357381184968, 32.210350926717183 ], [ 35.229164418538403, 32.210394185384189 ], [ 35.228916666666748, 32.210333333333324 ], [ 35.228833333333455, 32.210333333333324 ], [ 35.22875, 32.210333333333324 ] ] ], [ [ [ 35.222333333333381, 32.21075 ], [ 35.222166666666737, 32.21075 ], [ 35.222166666666737, 32.210833333333312 ], [ 35.22225, 32.210833333333312 ], [ 35.222333333333381, 32.210833333333312 ], [ 35.222333333333381, 32.21075 ] ] ], [ [ [ 35.23325, 32.210833333333312 ], [ 35.233222005208461, 32.210694661458433 ], [ 35.233166666666705, 32.210583333333432 ], [ 35.233083333333411, 32.210583333333432 ], [ 35.233083333333411, 32.210333333333324 ], [ 35.233000000000118, 32.210333333333324 ], [ 35.232893269856788, 32.210291666666762 ], [ 35.233000000000118, 32.21025 ], [ 35.233083333333411, 32.21025 ], [ 35.233083333333411, 32.210166666666737 ], [ 35.232508524576872, 32.209933095296321 ], [ 35.232546997070358, 32.209623809814445 ], [ 35.232513071696019, 32.209462941487629 ], [ 35.232342549641942, 32.209675885518379 ], [ 35.23220372517909, 32.209787058512404 ], [ 35.232129608154366, 32.210046274821082 ], [ 35.232027099609468, 32.210128364563047 ], [ 35.232723002115904, 32.210215405782037 ], [ 35.232702855428045, 32.210377354939794 ], [ 35.23275, 32.210500000000138 ], [ 35.232833333333474, 32.210500000000138 ], [ 35.232833333333474, 32.210583333333432 ], [ 35.232940063476633, 32.210625 ], [ 35.232833333333474, 32.210666666666725 ], [ 35.232833333333474, 32.21075 ], [ 35.232916666666597, 32.21075 ], [ 35.233000000000118, 32.21075 ], [ 35.233000000000118, 32.210833333333312 ], [ 35.233125, 32.210771199544354 ], [ 35.23325, 32.210833333333312 ] ] ], [ [ [ 35.226866739908985, 32.210950747172149 ], [ 35.22675, 32.210666666666725 ], [ 35.226381876627727, 32.210709566752143 ], [ 35.226470397949242, 32.211034792582268 ], [ 35.226866739908985, 32.210950747172149 ] ] ], [ [ [ 35.233361328125, 32.211388671875056 ], [ 35.233305338541754, 32.211111328125128 ], [ 35.23325, 32.21108333333342 ], [ 35.23325, 32.211166666666713 ], [ 35.233166666666705, 32.211166666666713 ], [ 35.233166666666705, 32.21125 ], [ 35.233083333333411, 32.21125 ], [ 35.233194661458413, 32.21147200520835 ], [ 35.233416666666756, 32.2115 ], [ 35.233361328125, 32.211388671875056 ] ] ], [ [ [ 35.215768269856881, 32.211695192972797 ], [ 35.215666666666664, 32.211666666666702 ], [ 35.215695195515991, 32.211768269856748 ], [ 35.215768269856881, 32.211695192972797 ] ] ], [ [ [ 35.218871388753257, 32.211939142862946 ], [ 35.218916666666587, 32.211833333333459 ], [ 35.218725026448624, 32.211867111206061 ], [ 35.218871388753257, 32.211939142862946 ] ] ], [ [ [ 35.184083333333319, 32.212083333333339 ], [ 35.184, 32.212083333333339 ], [ 35.184, 32.21216666666669 ], [ 35.184083333333319, 32.21216666666669 ], [ 35.184083333333319, 32.212083333333339 ] ] ], [ [ [ 35.191416666666782, 32.21175 ], [ 35.191, 32.21175 ], [ 35.190965963999417, 32.211799296061258 ], [ 35.190808427174943, 32.211908065795967 ], [ 35.191299296061288, 32.212034037272247 ], [ 35.191546765645455, 32.212225827535065 ], [ 35.191583333333369, 32.212083333333339 ], [ 35.191500488281292, 32.211916666666752 ], [ 35.191583333333369, 32.21175 ], [ 35.191416666666782, 32.21175 ] ] ], [ [ [ 35.1885, 32.212333333333447 ], [ 35.188416666666683, 32.212333333333447 ], [ 35.188416666666683, 32.212416666666741 ], [ 35.1885, 32.212416666666741 ], [ 35.1885, 32.212333333333447 ] ] ], [ [ [ 35.202250000000106, 32.2125 ], [ 35.202333333333399, 32.2125 ], [ 35.202291666666667, 32.212393269856761 ], [ 35.202250000000106, 32.2125 ] ] ], [ [ [ 35.194166666666774, 32.21225 ], [ 35.194166666666774, 32.21216666666669 ], [ 35.193883682251112, 32.212211265564065 ], [ 35.193840499877865, 32.21240389506022 ], [ 35.194417279561435, 32.212533195495666 ], [ 35.194333333333361, 32.212333333333447 ], [ 35.19425, 32.212333333333447 ], [ 35.19425, 32.21225 ], [ 35.194166666666774, 32.21225 ] ] ], [ [ [ 35.200666666666677, 32.212583333333328 ], [ 35.200583333333384, 32.212467066446891 ], [ 35.2005, 32.212583333333328 ], [ 35.200666666666677, 32.212583333333328 ] ] ], [ [ [ 35.202250000000106, 32.2125 ], [ 35.202166666666642, 32.2125 ], [ 35.202166666666642, 32.212583333333328 ], [ 35.202250000000106, 32.212583333333328 ], [ 35.202250000000106, 32.2125 ] ] ], [ [ [ 35.202333333333399, 32.2125 ], [ 35.202416666666693, 32.212666666666621 ], [ 35.202601552327451, 32.212639724731559 ], [ 35.202478802998883, 32.212521197001195 ], [ 35.202333333333399, 32.2125 ] ] ], [ [ [ 35.190583333333393, 32.212750000000142 ], [ 35.190541666666661, 32.212643269856812 ], [ 35.1905000000001, 32.212750000000142 ], [ 35.190583333333393, 32.212750000000142 ] ] ], [ [ [ 35.190583333333393, 32.212750000000142 ], [ 35.190583333333393, 32.212833333333435 ], [ 35.190690064748196, 32.212791666666703 ], [ 35.190583333333393, 32.212750000000142 ] ] ], [ [ [ 35.18575, 32.212916666666729 ], [ 35.185721472422358, 32.212815063476683 ], [ 35.185648398081469, 32.212888140360633 ], [ 35.18575, 32.212916666666729 ] ] ], [ [ [ 35.186166666666679, 32.212916666666729 ], [ 35.186138139089053, 32.212815063476683 ], [ 35.186065064748163, 32.212888140360633 ], [ 35.186166666666679, 32.212916666666729 ] ] ], [ [ [ 35.187, 32.212916666666729 ], [ 35.187083333333362, 32.212916666666729 ], [ 35.187041666666801, 32.212809936523399 ], [ 35.187, 32.212916666666729 ] ] ], [ [ [ 35.187, 32.212916666666729 ], [ 35.186808404286694, 32.212951644897544 ], [ 35.186916666666775, 32.213 ], [ 35.187, 32.213 ], [ 35.187, 32.212916666666729 ] ] ], [ [ [ 35.2025, 32.212916666666729 ], [ 35.202250000000106, 32.212916666666729 ], [ 35.202250000000106, 32.213 ], [ 35.2025, 32.213 ], [ 35.2025, 32.212916666666729 ] ] ], [ [ [ 35.18575, 32.212916666666729 ], [ 35.185778527577838, 32.213018269856775 ], [ 35.185851601918557, 32.212945192972825 ], [ 35.18575, 32.212916666666729 ] ] ], [ [ [ 35.192166666666651, 32.213083333333316 ], [ 35.192079785664873, 32.212794766744025 ], [ 35.191880366007581, 32.212918266296469 ], [ 35.192166666666651, 32.213083333333316 ] ] ], [ [ [ 35.20075, 32.212666666666621 ], [ 35.200666666666677, 32.212666666666621 ], [ 35.200666666666677, 32.212750000000142 ], [ 35.200666666666677, 32.212833333333435 ], [ 35.20075, 32.212833333333435 ], [ 35.20075, 32.212916666666729 ], [ 35.200833333333264, 32.213083333333316 ], [ 35.201, 32.213 ], [ 35.20075, 32.212666666666621 ] ] ], [ [ [ 35.192166666666651, 32.213083333333316 ], [ 35.192195192972747, 32.213184936523533 ], [ 35.192268269856868, 32.213111859639469 ], [ 35.192166666666651, 32.213083333333316 ] ] ], [ [ [ 35.18625, 32.213166666666609 ], [ 35.186166666666679, 32.213166666666609 ], [ 35.186166666666679, 32.213416666666717 ], [ 35.186277343750021, 32.213360677083415 ], [ 35.186333333333323, 32.21325000000013 ], [ 35.18625, 32.21325000000013 ], [ 35.18625, 32.213166666666609 ] ] ], [ [ [ 35.203365859985297, 32.213425829569474 ], [ 35.203154680887792, 32.213221883138033 ], [ 35.203083333333268, 32.213333333333424 ], [ 35.20319401041678, 32.213389322916669 ], [ 35.20325, 32.2135 ], [ 35.203365859985297, 32.213425829569474 ] ] ], [ [ [ 35.19112138621017, 32.213522476196374 ], [ 35.191166666666675, 32.213416666666717 ], [ 35.190975026448484, 32.21345044453949 ], [ 35.19112138621017, 32.213522476196374 ] ] ], [ [ [ 35.20948360951752, 32.213551340738945 ], [ 35.209416666666641, 32.213416666666717 ], [ 35.20922200520846, 32.213455965677838 ], [ 35.209309539794958, 32.213611328125012 ], [ 35.20948360951752, 32.213551340738945 ] ] ], [ [ [ 35.202944661458389, 32.213555338541767 ], [ 35.202833333333388, 32.2135 ], [ 35.202722969055117, 32.213560493469288 ], [ 35.202970494588158, 32.213696172078585 ], [ 35.203, 32.21375 ], [ 35.203111328125033, 32.213694661458362 ], [ 35.20325, 32.213666666666768 ], [ 35.20325, 32.213583333333474 ], [ 35.202944661458389, 32.213555338541767 ] ] ], [ [ [ 35.225416666666717, 32.213833333333412 ], [ 35.225416666666717, 32.21375 ], [ 35.225416666666717, 32.213666666666768 ], [ 35.225166666666667, 32.213666666666768 ], [ 35.225166666666667, 32.213833333333412 ], [ 35.225250000000131, 32.213833333333412 ], [ 35.225283487955835, 32.213767133077113 ], [ 35.225416666666717, 32.213833333333412 ] ] ], [ [ [ 35.228891164143988, 32.213796951293943 ], [ 35.22875, 32.213583333333474 ], [ 35.228583333333404, 32.213666666666768 ], [ 35.228634836832612, 32.213867370605612 ], [ 35.228891164143988, 32.213796951293943 ] ] ], [ [ [ 35.1915, 32.21375 ], [ 35.1915, 32.213666666666768 ], [ 35.191308359781885, 32.213700444539541 ], [ 35.191370961507289, 32.2139401397705 ], [ 35.191441640218159, 32.213774973551494 ], [ 35.1915, 32.21375 ] ] ], [ [ [ 35.190000000000111, 32.214166666666756 ], [ 35.18993387858086, 32.213795623779333 ], [ 35.189833333333354, 32.213916666666705 ], [ 35.189833333333354, 32.214166666666756 ], [ 35.190000000000111, 32.214166666666756 ] ] ], [ [ [ 35.200454719543529, 32.214189142862949 ], [ 35.2005, 32.214083333333463 ], [ 35.2003083597819, 32.214117111206065 ], [ 35.200454719543529, 32.214189142862949 ] ] ], [ [ [ 35.1915, 32.21375 ], [ 35.191585083007908, 32.213952573140546 ], [ 35.191215962727938, 32.214090688069689 ], [ 35.191299908955898, 32.214450703938894 ], [ 35.191465962727875, 32.214382629394663 ], [ 35.191536081949948, 32.214281074524024 ], [ 35.191649932861367, 32.214306597391897 ], [ 35.191793629964309, 32.213746655782188 ], [ 35.192, 32.213833333333412 ], [ 35.192250000000115, 32.213833333333412 ], [ 35.192178410848101, 32.213729647318587 ], [ 35.191867045084678, 32.213659845987991 ], [ 35.1915, 32.21375 ] ] ], [ [ [ 35.209638140360596, 32.214601603190204 ], [ 35.209666666666692, 32.2145 ], [ 35.209565063476646, 32.214528526306253 ], [ 35.209638140360596, 32.214601603190204 ] ] ], [ [ [ 35.209471473693782, 32.214684936523497 ], [ 35.209500000000105, 32.214583333333451 ], [ 35.209398396809888, 32.214611859639547 ], [ 35.209471473693782, 32.214684936523497 ] ] ], [ [ [ 35.209304807027195, 32.214768269856791 ], [ 35.209333333333291, 32.214666666666744 ], [ 35.209231730143301, 32.21469519297284 ], [ 35.209304807027195, 32.214768269856791 ] ] ], [ [ [ 35.191910059611018, 32.214778508504253 ], [ 35.19183333333325, 32.214583333333451 ], [ 35.191713696797763, 32.214675676981756 ], [ 35.191910059611018, 32.214778508504253 ] ] ], [ [ [ 35.184833333333358, 32.214833333333331 ], [ 35.184791666666797, 32.214726603190229 ], [ 35.18475, 32.214833333333331 ], [ 35.184833333333358, 32.214833333333331 ] ] ], [ [ [ 35.192416666666702, 32.214833333333331 ], [ 35.192416666666702, 32.21475 ], [ 35.1925, 32.21475 ], [ 35.1925, 32.214583333333451 ], [ 35.192333333333409, 32.214583333333451 ], [ 35.192333333333409, 32.214666666666744 ], [ 35.192250000000115, 32.214666666666744 ], [ 35.192250000000115, 32.214833333333331 ], [ 35.192416666666702, 32.214833333333331 ] ] ], [ [ [ 35.200916666666785, 32.214416666666693 ], [ 35.200916666666785, 32.214166666666756 ], [ 35.201, 32.214166666666756 ], [ 35.201106730143351, 32.214208333333318 ], [ 35.201, 32.21425 ], [ 35.201, 32.214333333333343 ], [ 35.201138671875128, 32.214361328125108 ], [ 35.201299092610668, 32.214488764445093 ], [ 35.201395408630503, 32.21429154713951 ], [ 35.201333333333423, 32.214166666666756 ], [ 35.201187863667769, 32.214145469665652 ], [ 35.201065114339201, 32.214026941935231 ], [ 35.20125000000013, 32.214 ], [ 35.20118379974366, 32.213866821289059 ], [ 35.20125000000013, 32.213833333333412 ], [ 35.201211107889833, 32.213777005513634 ], [ 35.2009344533285, 32.213596850077295 ], [ 35.200670969645273, 32.213778767903705 ], [ 35.200813631693507, 32.213877265930307 ], [ 35.200549296061183, 32.213976173400965 ], [ 35.200702596028748, 32.214218961080007 ], [ 35.200867370605465, 32.214182022094803 ], [ 35.200799296061234, 32.214299296061142 ], [ 35.2006895446778, 32.214375073750887 ], [ 35.200935442606692, 32.214731224060131 ], [ 35.201132629394635, 32.214867370605532 ], [ 35.201200703938866, 32.214965962727945 ], [ 35.20125000000013, 32.215000000000146 ], [ 35.20125000000013, 32.214916666666625 ], [ 35.201222005208422, 32.214777994791802 ], [ 35.201166666666666, 32.214666666666744 ], [ 35.201059936523563, 32.214625 ], [ 35.201166666666666, 32.214583333333451 ], [ 35.201166666666666, 32.2145 ], [ 35.200916666666785, 32.2145 ], [ 35.200916666666785, 32.214416666666693 ] ] ], [ [ [ 35.190000000000111, 32.2145 ], [ 35.189833333333354, 32.2145 ], [ 35.18988867187511, 32.214611328124988 ], [ 35.18995335261036, 32.215027994791683 ], [ 35.190147200266495, 32.214795092264922 ], [ 35.190000000000111, 32.2145 ] ] ], [ [ [ 35.200733609517386, 32.214968007405616 ], [ 35.200666666666677, 32.214833333333331 ], [ 35.200472005208326, 32.214872632344679 ], [ 35.200559539795051, 32.215027994791683 ], [ 35.200733609517386, 32.214968007405616 ] ] ], [ [ [ 35.189500000000123, 32.215000000000146 ], [ 35.189286643981973, 32.214947596232207 ], [ 35.189215963999573, 32.215031827291 ], [ 35.189416666666659, 32.215083333333439 ], [ 35.189500000000123, 32.215083333333439 ], [ 35.189500000000123, 32.215000000000146 ] ] ], [ [ [ 35.1865, 32.21525 ], [ 35.186341634114683, 32.215052235921291 ], [ 35.18625, 32.215166666666732 ], [ 35.186361328125031, 32.215222005208318 ], [ 35.1865, 32.21525 ] ] ], [ [ [ 35.234110198974633, 32.215357203165638 ], [ 35.234166666666681, 32.21525 ], [ 35.233887919108099, 32.215286221822168 ], [ 35.234110198974633, 32.215357203165638 ] ] ], [ [ [ 35.186583333333374, 32.215500000000134 ], [ 35.186451568603559, 32.215434501647962 ], [ 35.186388671875022, 32.215527013142946 ], [ 35.1865, 32.215583333333427 ], [ 35.186583333333374, 32.215583333333427 ], [ 35.186583333333374, 32.215500000000134 ] ] ], [ [ [ 35.210526578267491, 32.215290382385263 ], [ 35.210083333333387, 32.21525 ], [ 35.210083333333387, 32.215333333333319 ], [ 35.210132153828908, 32.215518379211517 ], [ 35.210618125915516, 32.215614410400349 ], [ 35.210526578267491, 32.215290382385263 ] ] ], [ [ [ 35.209018755594855, 32.21523708343517 ], [ 35.20908333333341, 32.215083333333439 ], [ 35.209158958435125, 32.214992291768397 ], [ 35.209302378336702, 32.214873158772832 ], [ 35.209037811279359, 32.214795522054089 ], [ 35.208816909790073, 32.214669001261484 ], [ 35.208765513102321, 32.215173253377259 ], [ 35.208878855387354, 32.215371144612618 ], [ 35.208985707601016, 32.215617528279665 ], [ 35.20908333333341, 32.215500000000134 ], [ 35.209018755594855, 32.21523708343517 ] ], [ [ 35.208815063476607, 32.215028526306241 ], [ 35.208916666666653, 32.215000000000146 ], [ 35.2088881403605, 32.215101603190192 ], [ 35.208815063476607, 32.215028526306241 ] ] ], [ [ [ 35.204368794759148, 32.215139132181832 ], [ 35.20331714375817, 32.214959752400716 ], [ 35.20325, 32.215166666666732 ], [ 35.203434532165602, 32.215203918457178 ], [ 35.203500000000133, 32.215333333333319 ], [ 35.20366601562506, 32.215417317708329 ], [ 35.20375, 32.215583333333427 ], [ 35.203916666666657, 32.215666666666721 ], [ 35.204000000000121, 32.215500000000134 ], [ 35.204081667582329, 32.215415000915527 ], [ 35.204368794759148, 32.215139132181832 ] ] ], [ [ [ 35.20997147369394, 32.215684936523473 ], [ 35.21, 32.215583333333427 ], [ 35.209898396809876, 32.215611859639523 ], [ 35.20997147369394, 32.215684936523473 ] ] ], [ [ [ 35.213993392944417, 32.215695175171049 ], [ 35.213916666666648, 32.215500000000134 ], [ 35.213797032674108, 32.215592343648382 ], [ 35.213993392944417, 32.215695175171049 ] ] ], [ [ [ 35.185305338541582, 32.215027994791683 ], [ 35.184888671875115, 32.21498485819501 ], [ 35.185089178721057, 32.21523726145432 ], [ 35.185000000000116, 32.215416666666613 ], [ 35.185358247121144, 32.215508603413923 ], [ 35.185384340922042, 32.215625 ], [ 35.185348688761394, 32.215784037272215 ], [ 35.185616176605322, 32.215693267822303 ], [ 35.185500000000104, 32.215416666666613 ], [ 35.185361328125055, 32.215388671875075 ], [ 35.185305338541582, 32.215027994791683 ] ] ], [ [ [ 35.215416666666727, 32.215916666666772 ], [ 35.215375, 32.215809936523499 ], [ 35.215333333333433, 32.215916666666772 ], [ 35.215416666666727, 32.215916666666772 ] ] ], [ [ [ 35.181804805755633, 32.215934936523524 ], [ 35.181833333333316, 32.215833333333478 ], [ 35.181731731414743, 32.215861859639631 ], [ 35.181804805755633, 32.215934936523524 ] ] ], [ [ [ 35.186833333333254, 32.215916666666772 ], [ 35.186789164225274, 32.215723485310889 ], [ 35.18675, 32.216 ], [ 35.186833333333254, 32.216 ], [ 35.186833333333254, 32.215916666666772 ] ] ], [ [ [ 35.213083333333429, 32.215916666666772 ], [ 35.213000000000136, 32.215916666666772 ], [ 35.213041666666697, 32.216023396809931 ], [ 35.213083333333429, 32.215916666666772 ] ] ], [ [ [ 35.207054807027191, 32.216268269856755 ], [ 35.207083333333287, 32.216166666666709 ], [ 35.206981730143298, 32.216195192972805 ], [ 35.207054807027191, 32.216268269856755 ] ] ], [ [ [ 35.183333333333394, 32.215916666666772 ], [ 35.183083333333343, 32.215916666666772 ], [ 35.182972005208285, 32.215972986857082 ], [ 35.183028779347808, 32.216140993754209 ], [ 35.183300595601395, 32.216273740132692 ], [ 35.183333333333394, 32.215916666666772 ] ] ], [ [ [ 35.227249033610065, 32.216167416890585 ], [ 35.227083333333439, 32.215916666666772 ], [ 35.226882629394652, 32.215968172709267 ], [ 35.226969406127978, 32.216284037272203 ], [ 35.227249033610065, 32.216167416890585 ] ] ], [ [ [ 35.213194661458317, 32.216277013142985 ], [ 35.213042846679741, 32.216187278747611 ], [ 35.212916666666672, 32.21625 ], [ 35.212916666666672, 32.216333333333466 ], [ 35.213083333333429, 32.216333333333466 ], [ 35.213194661458317, 32.216277013142985 ] ] ], [ [ [ 35.224721572876035, 32.21619251251235 ], [ 35.224472005208327, 32.216070630391584 ], [ 35.224527994791799, 32.216305338541758 ], [ 35.224583333333385, 32.216333333333466 ], [ 35.22475, 32.216333333333466 ], [ 35.224721572876035, 32.21619251251235 ] ] ], [ [ [ 35.184083333333319, 32.21625 ], [ 35.184, 32.21625 ], [ 35.184, 32.21641666666676 ], [ 35.184083333333319, 32.21641666666676 ], [ 35.184083333333319, 32.21625 ] ] ], [ [ [ 35.210455233256141, 32.216144976298096 ], [ 35.210292544047036, 32.216121582031292 ], [ 35.210205635070849, 32.216128565470342 ], [ 35.209921483357846, 32.215798749288012 ], [ 35.209712460835874, 32.215781954447436 ], [ 35.209698674519927, 32.215953534444225 ], [ 35.210083333333387, 32.21641666666676 ], [ 35.21016666666668, 32.21641666666676 ], [ 35.210211433410564, 32.216378100077407 ], [ 35.210288566589384, 32.216288566589355 ], [ 35.210455233256141, 32.216144976298096 ] ] ], [ [ [ 35.199312075297144, 32.216208213806283 ], [ 35.19925, 32.216083333333415 ], [ 35.199138671875005, 32.21613965352384 ], [ 35.19920389302581, 32.216429728190178 ], [ 35.199312075297144, 32.216208213806283 ] ] ], [ [ [ 35.202666666666801, 32.21641666666676 ], [ 35.202416666666693, 32.21641666666676 ], [ 35.202416666666693, 32.2165 ], [ 35.20258333333328, 32.2165 ], [ 35.202666666666801, 32.2165 ], [ 35.202666666666801, 32.21641666666676 ] ] ], [ [ [ 35.221583333333456, 32.216166666666709 ], [ 35.2215, 32.216166666666709 ], [ 35.2215, 32.2165 ], [ 35.221666666666749, 32.2165 ], [ 35.221638671875041, 32.21627799479171 ], [ 35.221583333333456, 32.216166666666709 ] ] ], [ [ [ 35.199442962646458, 32.216532819112103 ], [ 35.199500000000114, 32.216333333333466 ], [ 35.199296274820995, 32.216391581217522 ], [ 35.199442962646458, 32.216532819112103 ] ] ], [ [ [ 35.1865, 32.2165 ], [ 35.186416666666787, 32.2165 ], [ 35.186416666666787, 32.216666666666697 ], [ 35.1865, 32.216666666666697 ], [ 35.1865, 32.2165 ] ] ], [ [ [ 35.207250000000101, 32.216666666666697 ], [ 35.207250000000101, 32.2165 ], [ 35.20775, 32.2165 ], [ 35.207628702799525, 32.216348528544245 ], [ 35.207083333333287, 32.21641666666676 ], [ 35.207083333333287, 32.216583333333347 ], [ 35.207, 32.216583333333347 ], [ 35.207, 32.216666666666697 ], [ 35.207250000000101, 32.216666666666697 ] ] ], [ [ [ 35.199721473693899, 32.216684936523393 ], [ 35.19975, 32.216583333333347 ], [ 35.199648396810005, 32.216611859639499 ], [ 35.199721473693899, 32.216684936523393 ] ] ], [ [ [ 35.221222005208347, 32.216611328125111 ], [ 35.221083333333297, 32.216583333333347 ], [ 35.221083333333297, 32.21675 ], [ 35.221333333333405, 32.21675 ], [ 35.221333333333405, 32.216666666666697 ], [ 35.221222005208347, 32.216611328125111 ] ] ], [ [ [ 35.199133288065696, 32.216772710164378 ], [ 35.199166666666713, 32.216583333333347 ], [ 35.199058359782043, 32.21662968190509 ], [ 35.199133288065696, 32.216772710164378 ] ] ], [ [ [ 35.203530260721891, 32.216663561503083 ], [ 35.203401262919215, 32.216557060241769 ], [ 35.203166666666789, 32.216666666666697 ], [ 35.203231435140026, 32.216780260721919 ], [ 35.203530260721891, 32.216663561503083 ] ] ], [ [ [ 35.210066942850801, 32.216801340738925 ], [ 35.21, 32.216666666666697 ], [ 35.209805338541742, 32.216705965677988 ], [ 35.20989287312824, 32.216861328124992 ], [ 35.210066942850801, 32.216801340738925 ] ] ], [ [ [ 35.230943532307947, 32.216940536499067 ], [ 35.231, 32.216833333333454 ], [ 35.230721252441469, 32.216869555155426 ], [ 35.230943532307947, 32.216940536499067 ] ] ], [ [ [ 35.185559476216611, 32.216706840515258 ], [ 35.18541666666664, 32.2165 ], [ 35.185277994791761, 32.216527994791818 ], [ 35.18516666666676, 32.216583333333347 ], [ 35.185222656250005, 32.216694010416688 ], [ 35.185333333333347, 32.21675 ], [ 35.185375, 32.216643269856831 ], [ 35.18541666666664, 32.21675 ], [ 35.185500000000104, 32.21675 ], [ 35.185500000000104, 32.216833333333454 ], [ 35.185598476409893, 32.217027994791806 ], [ 35.185853047688795, 32.216959091186652 ], [ 35.185916666666799, 32.216833333333454 ], [ 35.185833333333335, 32.216833333333454 ], [ 35.185833333333335, 32.21675 ], [ 35.185559476216611, 32.216706840515258 ] ] ], [ [ [ 35.185194010416751, 32.216805989583406 ], [ 35.185083333333409, 32.21675 ], [ 35.184877343495828, 32.216813608805467 ], [ 35.18514689890543, 32.217032058715915 ], [ 35.18525, 32.216916666666748 ], [ 35.185194010416751, 32.216805989583406 ] ] ], [ [ [ 35.226416666666694, 32.217083333333335 ], [ 35.226416666666694, 32.217 ], [ 35.226309936523364, 32.217041666666773 ], [ 35.226416666666694, 32.217083333333335 ] ] ], [ [ [ 35.186083333333386, 32.217 ], [ 35.186, 32.217 ], [ 35.185878225962313, 32.217104914347317 ], [ 35.186083333333386, 32.217166666666628 ], [ 35.186083333333386, 32.217 ] ] ], [ [ [ 35.22275, 32.217083333333335 ], [ 35.222583333333432, 32.217083333333335 ], [ 35.222583333333432, 32.217166666666628 ], [ 35.22275, 32.217166666666628 ], [ 35.22275, 32.217083333333335 ] ] ], [ [ [ 35.226416666666694, 32.217083333333335 ], [ 35.226416666666694, 32.217166666666628 ], [ 35.2265, 32.217166666666628 ], [ 35.2265, 32.217083333333335 ], [ 35.226416666666694, 32.217083333333335 ] ] ], [ [ [ 35.226416666666694, 32.217166666666628 ], [ 35.2263333333334, 32.217166666666628 ], [ 35.2263333333334, 32.217250000000149 ], [ 35.226416666666694, 32.217250000000149 ], [ 35.226416666666694, 32.217166666666628 ] ] ], [ [ [ 35.209603655497233, 32.21728888702404 ], [ 35.209500000000105, 32.217 ], [ 35.209294011433997, 32.21718404897058 ], [ 35.209603655497233, 32.21728888702404 ] ] ], [ [ [ 35.22475, 32.217333333333443 ], [ 35.224721471150815, 32.217231730143226 ], [ 35.224648396809926, 32.217304807027119 ], [ 35.22475, 32.217333333333443 ] ] ], [ [ [ 35.224392588297576, 32.217298940022829 ], [ 35.224333333333448, 32.217166666666628 ], [ 35.224194661458398, 32.217194661458393 ], [ 35.224083333333397, 32.217250000000149 ], [ 35.224116978963309, 32.217392862955705 ], [ 35.224392588297576, 32.217298940022829 ] ] ], [ [ [ 35.185833333333335, 32.2175 ], [ 35.186, 32.2175 ], [ 35.186, 32.217333333333443 ], [ 35.185833333333335, 32.217250000000149 ], [ 35.185833333333335, 32.2175 ] ] ], [ [ [ 35.211083333333363, 32.2175 ], [ 35.211199600219743, 32.217416666666736 ], [ 35.211083333333363, 32.217333333333443 ], [ 35.211083333333363, 32.2175 ] ] ], [ [ [ 35.223833333333459, 32.217416666666736 ], [ 35.22375, 32.217416666666736 ], [ 35.22375, 32.2175 ], [ 35.223833333333459, 32.2175 ], [ 35.223833333333459, 32.217416666666736 ] ] ], [ [ [ 35.211083333333363, 32.2175 ], [ 35.210833333333426, 32.2175 ], [ 35.210833333333426, 32.217583333333323 ], [ 35.211083333333363, 32.217583333333323 ], [ 35.211083333333363, 32.2175 ] ] ], [ [ [ 35.217416666666679, 32.217583333333323 ], [ 35.217375000000118, 32.217476603190221 ], [ 35.217333333333386, 32.217583333333323 ], [ 35.217416666666679, 32.217583333333323 ] ] ], [ [ [ 35.208733609517481, 32.217551340738964 ], [ 35.208666666666716, 32.217416666666736 ], [ 35.208472005208421, 32.217455965677914 ], [ 35.208559539794919, 32.217611328125088 ], [ 35.208733609517481, 32.217551340738964 ] ] ], [ [ [ 35.187944661458459, 32.217631612142043 ], [ 35.187829133351727, 32.217417811075904 ], [ 35.187600467681875, 32.217533487955734 ], [ 35.187666666666644, 32.217666666666616 ], [ 35.187944661458459, 32.217631612142043 ] ] ], [ [ [ 35.216942143758217, 32.217615974426337 ], [ 35.216666666666811, 32.217583333333323 ], [ 35.216666666666811, 32.217666666666616 ], [ 35.216833333333398, 32.217666666666616 ], [ 35.216942143758217, 32.217615974426337 ] ] ], [ [ [ 35.185833333333335, 32.2175 ], [ 35.185698660532751, 32.217433057149321 ], [ 35.185638671874983, 32.217607126871826 ], [ 35.185794035593688, 32.217694661458381 ], [ 35.185833333333335, 32.2175 ] ] ], [ [ [ 35.20025, 32.217666666666616 ], [ 35.200205830892003, 32.217473485310904 ], [ 35.200166666666689, 32.217750000000137 ], [ 35.20025, 32.217750000000137 ], [ 35.20025, 32.217666666666616 ] ] ], [ [ [ 35.216034037272209, 32.217382629394535 ], [ 35.215833333333421, 32.217250000000149 ], [ 35.215753178914497, 32.217503176371395 ], [ 35.215543741862064, 32.217697230021145 ], [ 35.216126586914129, 32.2177900772096 ], [ 35.216166666666652, 32.217833333333431 ], [ 35.216250000000116, 32.217833333333431 ], [ 35.216250000000116, 32.217750000000137 ], [ 35.216250000000116, 32.2175 ], [ 35.216215962727915, 32.217450703938937 ], [ 35.216034037272209, 32.217382629394535 ] ] ], [ [ [ 35.205729751586887, 32.217793576558449 ], [ 35.205666666666673, 32.217666666666616 ], [ 35.205555338541615, 32.217722986857098 ], [ 35.205630249023557, 32.217944661458432 ], [ 35.205729751586887, 32.217793576558449 ] ] ], [ [ [ 35.18825, 32.218083333333311 ], [ 35.18825, 32.218 ], [ 35.188166666666802, 32.218 ], [ 35.188166666666802, 32.218083333333311 ], [ 35.18825, 32.218083333333311 ] ] ], [ [ [ 35.18825, 32.218083333333311 ], [ 35.18825, 32.21825 ], [ 35.188416666666683, 32.21825 ], [ 35.188360677083438, 32.218139322916784 ], [ 35.18825, 32.218083333333311 ] ] ], [ [ [ 35.188583333333327, 32.21825 ], [ 35.188666666666791, 32.21825 ], [ 35.188666666666791, 32.218166666666775 ], [ 35.188583333333327, 32.218166666666775 ], [ 35.188583333333327, 32.21825 ] ] ], [ [ [ 35.188583333333327, 32.21825 ], [ 35.188416666666683, 32.21825 ], [ 35.188416666666683, 32.218333333333419 ], [ 35.1885, 32.218333333333419 ], [ 35.188583333333327, 32.218333333333419 ], [ 35.188583333333327, 32.21825 ] ] ], [ [ [ 35.183890359242696, 32.218295733133971 ], [ 35.18375, 32.218083333333311 ], [ 35.183632630666125, 32.218164370218972 ], [ 35.183735047658331, 32.21836737060562 ], [ 35.183890359242696, 32.218295733133971 ] ] ], [ [ [ 35.187629945119227, 32.217826118469304 ], [ 35.187333333333413, 32.217750000000137 ], [ 35.187125832875552, 32.217817334493134 ], [ 35.187216344197566, 32.21825160217287 ], [ 35.187612345377659, 32.218455602010181 ], [ 35.187833333333401, 32.218083333333311 ], [ 35.187784036000608, 32.218049296061281 ], [ 35.187629945119227, 32.217826118469304 ] ] ], [ [ [ 35.205333333333272, 32.218416666666712 ], [ 35.205057390848765, 32.218234316508074 ], [ 35.204965962727897, 32.218428967793727 ], [ 35.20525, 32.21858333333347 ], [ 35.205333333333272, 32.218416666666712 ] ] ], [ [ [ 35.205490837097273, 32.219115859985379 ], [ 35.205609715779644, 32.218986905415875 ], [ 35.2055, 32.218916666666701 ], [ 35.2055, 32.219 ], [ 35.205416666666792, 32.219 ], [ 35.205490837097273, 32.219115859985379 ] ] ], [ [ [ 35.185538054148367, 32.219272476196409 ], [ 35.185583333333398, 32.219166666666752 ], [ 35.185391693115207, 32.219200444539524 ], [ 35.185538054148367, 32.219272476196409 ] ] ], [ [ [ 35.189083333333258, 32.21925 ], [ 35.189083333333258, 32.219333333333338 ], [ 35.189166666666779, 32.219333333333338 ], [ 35.189166666666779, 32.21925 ], [ 35.189083333333258, 32.21925 ] ] ], [ [ [ 35.207805338541618, 32.219194661458289 ], [ 35.207416666666688, 32.219166666666752 ], [ 35.207416666666688, 32.219333333333338 ], [ 35.207916666666677, 32.219333333333338 ], [ 35.207916666666677, 32.21925 ], [ 35.207805338541618, 32.219194661458289 ] ] ], [ [ [ 35.175979102452629, 32.219356821696067 ], [ 35.176083333333395, 32.219166666666752 ], [ 35.175887161254821, 32.219208864847872 ], [ 35.175979102452629, 32.219356821696067 ] ] ], [ [ [ 35.189166666666779, 32.219333333333338 ], [ 35.189195194244405, 32.219434936523555 ], [ 35.189268268585295, 32.219361859639491 ], [ 35.189166666666779, 32.219333333333338 ] ] ], [ [ [ 35.183371943155976, 32.219445604960185 ], [ 35.183416666666687, 32.21925 ], [ 35.183135650634767, 32.219289802551373 ], [ 35.183371943155976, 32.219445604960185 ] ] ], [ [ [ 35.189083333333258, 32.21925 ], [ 35.189049297332758, 32.219200703938782 ], [ 35.188950702667171, 32.219132629394551 ], [ 35.18875, 32.21883333333335 ], [ 35.188583333333327, 32.218916666666701 ], [ 35.188472005208439, 32.218972986857125 ], [ 35.188527994791741, 32.219138671875044 ], [ 35.188694010416782, 32.219222656250054 ], [ 35.188805989583386, 32.21944401041668 ], [ 35.188916666666671, 32.219500000000153 ], [ 35.189, 32.219500000000153 ], [ 35.189, 32.21925 ], [ 35.189083333333258, 32.21925 ] ] ], [ [ [ 35.208331082662085, 32.219427220662567 ], [ 35.20825, 32.21925 ], [ 35.207968983968101, 32.219289802551373 ], [ 35.208052490234365, 32.219531016032022 ], [ 35.208331082662085, 32.219427220662567 ] ] ], [ [ [ 35.189784791310672, 32.219048540751146 ], [ 35.189713176727423, 32.218777091979916 ], [ 35.189368124643977, 32.218868125915549 ], [ 35.189166666666779, 32.219 ], [ 35.189367369334036, 32.219382629394659 ], [ 35.189666666666767, 32.219583333333446 ], [ 35.189715208689393, 32.219548540751134 ], [ 35.189784791310672, 32.219284792582187 ], [ 35.189949600219791, 32.219166666666752 ], [ 35.189784791310672, 32.219048540751146 ] ] ], [ [ [ 35.198507446289057, 32.219347345988012 ], [ 35.198667630513512, 32.218965962727964 ], [ 35.198367370605581, 32.219034037272195 ], [ 35.19829929606118, 32.219132629394551 ], [ 35.198144996643123, 32.219239166259911 ], [ 35.19825, 32.21966666666674 ], [ 35.19833333333338, 32.21966666666674 ], [ 35.198565663655643, 32.219607045491557 ], [ 35.198507446289057, 32.219347345988012 ] ] ], [ [ [ 35.17570472081502, 32.219689142863103 ], [ 35.17575, 32.219583333333446 ], [ 35.175558359146123, 32.219617111206048 ], [ 35.17570472081502, 32.219689142863103 ] ] ], [ [ [ 35.189583333333246, 32.219833333333327 ], [ 35.189416666666659, 32.219833333333327 ], [ 35.189416666666659, 32.21991666666662 ], [ 35.189583333333246, 32.21991666666662 ], [ 35.189583333333246, 32.219833333333327 ] ] ], [ [ [ 35.198971473693859, 32.220184936523481 ], [ 35.199000000000126, 32.220083333333434 ], [ 35.198898396809909, 32.22011185963953 ], [ 35.198971473693859, 32.220184936523481 ] ] ], [ [ [ 35.193083333333334, 32.220416666666779 ], [ 35.192950154622395, 32.220350466410309 ], [ 35.19291666666669, 32.220416666666779 ], [ 35.19291666666669, 32.220583333333423 ], [ 35.193083333333334, 32.220583333333423 ], [ 35.193083333333334, 32.220416666666779 ] ] ], [ [ [ 35.191333333333262, 32.220666666666716 ], [ 35.191166666666675, 32.220666666666716 ], [ 35.191166666666675, 32.22075 ], [ 35.191333333333262, 32.22075 ], [ 35.191333333333262, 32.220666666666716 ] ] ], [ [ [ 35.188861328124915, 32.220818191528338 ], [ 35.188697410583529, 32.220672856648719 ], [ 35.188666666666791, 32.220916666666767 ], [ 35.188861328124915, 32.220818191528338 ] ] ], [ [ [ 35.190583333333393, 32.220916666666767 ], [ 35.190543450673545, 32.220761255900015 ], [ 35.19025, 32.220833333333474 ], [ 35.190277994791757, 32.221055338541646 ], [ 35.190333333333342, 32.221166666666704 ], [ 35.1905000000001, 32.221166666666704 ], [ 35.190394663492953, 32.220954755147432 ], [ 35.190583333333393, 32.220916666666767 ] ] ], [ [ [ 35.181221472422351, 32.222101603190254 ], [ 35.18125, 32.222 ], [ 35.181148398081461, 32.222028526306133 ], [ 35.181221472422351, 32.222101603190254 ] ] ], [ [ [ 35.199864491780716, 32.222161626180025 ], [ 35.199583333333408, 32.22208333333333 ], [ 35.19963932291671, 32.222194010416672 ], [ 35.19975, 32.222250000000145 ], [ 35.199864491780716, 32.222161626180025 ] ] ], [ [ [ 35.206888140360604, 32.222268269856841 ], [ 35.2069166666667, 32.222166666666624 ], [ 35.206815063476654, 32.222195192972947 ], [ 35.206888140360604, 32.222268269856841 ] ] ], [ [ [ 35.194954719543375, 32.222355809529631 ], [ 35.195000000000107, 32.222250000000145 ], [ 35.194808359781916, 32.22228377787269 ], [ 35.194954719543375, 32.222355809529631 ] ] ], [ [ [ 35.204351758321252, 32.222442822774383 ], [ 35.204416666666646, 32.222333333333438 ], [ 35.204052317301546, 32.222370712280281 ], [ 35.204351758321252, 32.222442822774383 ] ] ], [ [ [ 35.197333333333404, 32.2225 ], [ 35.197333333333404, 32.222416666666732 ], [ 35.19713963572184, 32.222458333333464 ], [ 35.197333333333404, 32.2225 ] ] ], [ [ [ 35.19537138621024, 32.222522476196389 ], [ 35.195416666666802, 32.222416666666732 ], [ 35.195225026448611, 32.222450444539504 ], [ 35.19537138621024, 32.222522476196389 ] ] ], [ [ [ 35.205288052876767, 32.222522476196389 ], [ 35.205333333333272, 32.222416666666732 ], [ 35.205141693115308, 32.222450444539504 ], [ 35.205288052876767, 32.222522476196389 ] ] ], [ [ [ 35.205743392944441, 32.222611841837704 ], [ 35.205666666666673, 32.222416666666732 ], [ 35.205547030131129, 32.22250901031498 ], [ 35.205743392944441, 32.222611841837704 ] ] ], [ [ [ 35.196750000000122, 32.2225 ], [ 35.1966769332887, 32.222385866800948 ], [ 35.196416666666778, 32.2225 ], [ 35.196489733378201, 32.222614133199102 ], [ 35.196750000000122, 32.2225 ] ] ], [ [ [ 35.196871386210205, 32.222689142862976 ], [ 35.196916666666709, 32.222583333333318 ], [ 35.196725026448576, 32.222617111206091 ], [ 35.196871386210205, 32.222689142862976 ] ] ], [ [ [ 35.196299296061227, 32.222534037272226 ], [ 35.19616666666667, 32.222333333333438 ], [ 35.195544766743978, 32.22256762695315 ], [ 35.195848406473885, 32.22280566914884 ], [ 35.196121899922787, 32.222705233256022 ], [ 35.196333333333257, 32.222666666666782 ], [ 35.196299296061227, 32.222534037272226 ] ] ], [ [ [ 35.210005449930918, 32.222447769165058 ], [ 35.209833333333279, 32.222166666666624 ], [ 35.209650690714568, 32.222224492390922 ], [ 35.209459922790643, 32.222768770853747 ], [ 35.209802502950083, 32.222873410542888 ], [ 35.210005449930918, 32.222447769165058 ] ] ], [ [ [ 35.195554807027293, 32.222934936523416 ], [ 35.195583333333389, 32.222833333333426 ], [ 35.195481730143342, 32.222861859639522 ], [ 35.195554807027293, 32.222934936523416 ] ] ], [ [ [ 35.208769538879324, 32.222873624165913 ], [ 35.208666666666716, 32.222666666666782 ], [ 35.208472005208421, 32.22270596567796 ], [ 35.208545153300065, 32.222944661458428 ], [ 35.208769538879324, 32.222873624165913 ] ] ], [ [ [ 35.202166666666642, 32.223 ], [ 35.202166666666642, 32.22291666666672 ], [ 35.202059936523483, 32.222958333333452 ], [ 35.202166666666642, 32.223 ] ] ], [ [ [ 35.206166666666661, 32.223 ], [ 35.206041666666806, 32.222804743448989 ], [ 35.206, 32.223083333333477 ], [ 35.206166666666661, 32.223 ] ] ], [ [ [ 35.202540832519617, 32.223099545796856 ], [ 35.202366172790619, 32.222795750935916 ], [ 35.202250000000106, 32.22291666666672 ], [ 35.202250000000106, 32.223 ], [ 35.202540832519617, 32.223099545796856 ] ] ], [ [ [ 35.198804807027216, 32.22310160319023 ], [ 35.198833333333369, 32.223 ], [ 35.198731730143322, 32.22302852630628 ], [ 35.198804807027216, 32.22310160319023 ] ] ], [ [ [ 35.198416666666674, 32.223166666666771 ], [ 35.198416666666674, 32.223083333333477 ], [ 35.198222969055109, 32.223125 ], [ 35.198416666666674, 32.223166666666771 ] ] ], [ [ [ 35.207728802998929, 32.223021197001117 ], [ 35.207583333333275, 32.223 ], [ 35.207583333333275, 32.223166666666771 ], [ 35.207666666666796, 32.223166666666771 ], [ 35.207851552327497, 32.223139724731539 ], [ 35.207728802998929, 32.223021197001117 ] ] ], [ [ [ 35.19575, 32.223083333333477 ], [ 35.195666666666682, 32.223083333333477 ], [ 35.195708333333414, 32.223190063476579 ], [ 35.19575, 32.223083333333477 ] ] ], [ [ [ 35.196686205546143, 32.223123624165851 ], [ 35.196583333333365, 32.22291666666672 ], [ 35.196388671875013, 32.222955965677841 ], [ 35.196461819966714, 32.223194661458308 ], [ 35.196686205546143, 32.223123624165851 ] ] ], [ [ [ 35.209500000000105, 32.22325 ], [ 35.209458333333373, 32.223143269856791 ], [ 35.209416666666641, 32.22325 ], [ 35.209500000000105, 32.22325 ] ] ], [ [ [ 35.196388140360625, 32.22335160319011 ], [ 35.196416666666778, 32.22325 ], [ 35.196315063476561, 32.223278526306217 ], [ 35.196388140360625, 32.22335160319011 ] ] ], [ [ [ 35.204684936523449, 32.223388140360555 ], [ 35.204611859639499, 32.223315063476662 ], [ 35.204583333333403, 32.223416666666708 ], [ 35.204684936523449, 32.223388140360555 ] ] ], [ [ [ 35.208113291422592, 32.222965726216728 ], [ 35.207916666666677, 32.22291666666672 ], [ 35.207974596659369, 32.22306402333578 ], [ 35.207916666666677, 32.223416666666708 ], [ 35.208016380310085, 32.223350364685189 ], [ 35.208113291422592, 32.222965726216728 ] ] ], [ [ [ 35.199389539082915, 32.22330048878996 ], [ 35.199333333333357, 32.223166666666771 ], [ 35.198965962727925, 32.223260943094886 ], [ 35.199072118123354, 32.223450703938909 ], [ 35.199389539082915, 32.22330048878996 ] ] ], [ [ [ 35.2015, 32.223416666666708 ], [ 35.201416666666717, 32.223416666666708 ], [ 35.201416666666717, 32.2235 ], [ 35.2015, 32.2235 ], [ 35.2015, 32.223416666666708 ] ] ], [ [ [ 35.204416666666646, 32.2235 ], [ 35.204333333333352, 32.2235 ], [ 35.204333333333352, 32.223583333333465 ], [ 35.204416666666646, 32.223583333333465 ], [ 35.204416666666646, 32.2235 ] ] ], [ [ [ 35.20583333333343, 32.223583333333465 ], [ 35.205791666666698, 32.223476603190136 ], [ 35.205750000000137, 32.223583333333465 ], [ 35.20583333333343, 32.223583333333465 ] ] ], [ [ [ 35.192795789082879, 32.223558977762934 ], [ 35.192833333333397, 32.223416666666708 ], [ 35.192750000000103, 32.223416666666708 ], [ 35.192750000000103, 32.22325 ], [ 35.192666015625093, 32.223083984375023 ], [ 35.1925, 32.223 ], [ 35.192528750101701, 32.223221249898415 ], [ 35.192691986084128, 32.223431836446252 ], [ 35.192559036254863, 32.223528750101821 ], [ 35.192442499796471, 32.223307500203418 ], [ 35.192333333333409, 32.22325 ], [ 35.192333333333409, 32.223333333333358 ], [ 35.192298540751267, 32.223381874084509 ], [ 35.192048540751216, 32.223478294372626 ], [ 35.192149650573754, 32.2237014592489 ], [ 35.192795789082879, 32.223558977762934 ] ] ], [ [ [ 35.20583333333343, 32.223583333333465 ], [ 35.20583333333343, 32.22375 ], [ 35.206, 32.22375 ], [ 35.205944010416772, 32.223639322916767 ], [ 35.20583333333343, 32.223583333333465 ] ] ], [ [ [ 35.194527343749996, 32.223722656250061 ], [ 35.194416666666655, 32.223666666666759 ], [ 35.194416666666655, 32.223833333333346 ], [ 35.194583333333412, 32.223833333333346 ], [ 35.194527343749996, 32.223722656250061 ] ] ], [ [ [ 35.193583333333265, 32.223916666666639 ], [ 35.193778699239147, 32.223735651652134 ], [ 35.1935, 32.223833333333346 ], [ 35.1935, 32.223916666666639 ], [ 35.193583333333265, 32.223916666666639 ] ] ], [ [ [ 35.194083333333253, 32.224 ], [ 35.194000000000131, 32.223883733113723 ], [ 35.193916666666667, 32.224 ], [ 35.194083333333253, 32.224 ] ] ], [ [ [ 35.196583333333365, 32.224083333333454 ], [ 35.196583333333365, 32.224 ], [ 35.196666666666658, 32.224 ], [ 35.196583333333365, 32.223833333333346 ], [ 35.1965, 32.223833333333346 ], [ 35.1965, 32.224083333333454 ], [ 35.196583333333365, 32.224083333333454 ] ] ], [ [ [ 35.187083333333362, 32.224166666666747 ], [ 35.187041666666801, 32.224059936523417 ], [ 35.187, 32.224166666666747 ], [ 35.187083333333362, 32.224166666666747 ] ] ], [ [ [ 35.194000000000131, 32.224166666666747 ], [ 35.194083333333253, 32.224166666666747 ], [ 35.194041666666692, 32.224059936523417 ], [ 35.194000000000131, 32.224166666666747 ] ] ], [ [ [ 35.201416666666717, 32.224416666666627 ], [ 35.201375, 32.224309936523525 ], [ 35.201333333333423, 32.224416666666627 ], [ 35.201416666666717, 32.224416666666627 ] ] ], [ [ [ 35.206583333333356, 32.224500000000148 ], [ 35.2065, 32.224500000000148 ], [ 35.206306818644123, 32.224544169108128 ], [ 35.206583333333356, 32.224583333333442 ], [ 35.206583333333356, 32.224500000000148 ] ] ], [ [ [ 35.194000000000131, 32.224166666666747 ], [ 35.193719347636033, 32.224118990580223 ], [ 35.193416666666678, 32.224 ], [ 35.193382629394648, 32.224049296061253 ], [ 35.193215962727891, 32.224164370218887 ], [ 35.193523915608694, 32.224450702667355 ], [ 35.193715962727879, 32.224382629394597 ], [ 35.19382775624598, 32.224220715840772 ], [ 35.193976173400983, 32.224617369333941 ], [ 35.194182657877604, 32.224527529398642 ], [ 35.194034037272161, 32.224299296061304 ], [ 35.194000000000131, 32.224166666666747 ] ] ], [ [ [ 35.199916666666809, 32.22475 ], [ 35.200000000000102, 32.22475 ], [ 35.200000000000102, 32.224666666666735 ], [ 35.199916666666809, 32.224666666666735 ], [ 35.199916666666809, 32.22475 ] ] ], [ [ [ 35.195721473693879, 32.224768268585251 ], [ 35.19575, 32.224666666666735 ], [ 35.195648396809929, 32.224695194244532 ], [ 35.195721473693879, 32.224768268585251 ] ] ], [ [ [ 35.195608306884822, 32.22479955546072 ], [ 35.195461947123135, 32.224727523803836 ], [ 35.195416666666802, 32.224833333333322 ], [ 35.195608306884822, 32.22479955546072 ] ] ], [ [ [ 35.200916666666785, 32.224416666666627 ], [ 35.20075, 32.224416666666627 ], [ 35.200722005208434, 32.224472005208384 ], [ 35.2005, 32.224583333333442 ], [ 35.200528653462811, 32.224639973958404 ], [ 35.200861328125029, 32.224805338541785 ], [ 35.201, 32.224833333333322 ], [ 35.201110677083363, 32.22477734375002 ], [ 35.201166666666666, 32.224666666666735 ], [ 35.201110677083363, 32.224555989583394 ], [ 35.200944661458323, 32.224472005208384 ], [ 35.200916666666785, 32.224416666666627 ] ] ], [ [ [ 35.198054807027177, 32.224851601918544 ], [ 35.198083333333273, 32.22475 ], [ 35.197981730143283, 32.224778527577826 ], [ 35.198054807027177, 32.224851601918544 ] ] ], [ [ [ 35.19875, 32.224833333333322 ], [ 35.198583333333261, 32.224833333333322 ], [ 35.198666666666782, 32.224949600219759 ], [ 35.19875, 32.224833333333322 ] ] ], [ [ [ 35.206750000000113, 32.22508333333343 ], [ 35.20672147369379, 32.224981731414857 ], [ 35.206648396809896, 32.225054805755576 ], [ 35.206750000000113, 32.22508333333343 ] ] ], [ [ [ 35.199916666666809, 32.22475 ], [ 35.19975, 32.22475 ], [ 35.19975, 32.224583333333442 ], [ 35.199644976298089, 32.224461432139208 ], [ 35.199611806233747, 32.224692104339681 ], [ 35.199666666666701, 32.22525 ], [ 35.19975, 32.22525 ], [ 35.19975, 32.22508333333343 ], [ 35.199784037272195, 32.224950702667286 ], [ 35.199916666666809, 32.22475 ] ] ], [ [ [ 35.208704719543505, 32.22527247619638 ], [ 35.20875, 32.225166666666723 ], [ 35.208558359781875, 32.225200444539496 ], [ 35.208704719543505, 32.22527247619638 ] ] ], [ [ [ 35.195860572814922, 32.22488942718519 ], [ 35.195833333333269, 32.224833333333322 ], [ 35.195722760518379, 32.224887029012166 ], [ 35.195786791483613, 32.225183684031265 ], [ 35.19596343485523, 32.225277239481613 ], [ 35.196016832987539, 32.224965307871628 ], [ 35.195860572814922, 32.22488942718519 ] ] ], [ [ [ 35.2075, 32.22508333333343 ], [ 35.2075, 32.225 ], [ 35.207381874084547, 32.225084664662745 ], [ 35.207614028930664, 32.225282852172882 ], [ 35.207666666666796, 32.22508333333343 ], [ 35.2075, 32.22508333333343 ] ] ], [ [ [ 35.197666666666805, 32.225416666666774 ], [ 35.197666666666805, 32.22533333333331 ], [ 35.197916666666686, 32.22533333333331 ], [ 35.197717013041313, 32.22496596399958 ], [ 35.197450703938898, 32.225034036000636 ], [ 35.197250000000111, 32.225166666666723 ], [ 35.197333333333404, 32.22533333333331 ], [ 35.197555338541747, 32.225361328125018 ], [ 35.197666666666805, 32.225416666666774 ] ], [ [ 35.197398396810001, 32.22519519424452 ], [ 35.1975, 32.225166666666723 ], [ 35.197471473693895, 32.225268268585239 ], [ 35.197398396810001, 32.22519519424452 ] ] ], [ [ [ 35.199500000000114, 32.22533333333331 ], [ 35.199305740356522, 32.225131144205818 ], [ 35.19925, 32.225416666666774 ], [ 35.199500000000114, 32.225416666666774 ], [ 35.199500000000114, 32.22533333333331 ] ] ], [ [ [ 35.204304089864195, 32.225462426503611 ], [ 35.204083333333415, 32.225166666666723 ], [ 35.203797030131113, 32.225246392567954 ], [ 35.2038938929241, 32.225536301930788 ], [ 35.204304089864195, 32.225462426503611 ] ] ], [ [ [ 35.20375, 32.225583333333361 ], [ 35.203688247680702, 32.225378225962459 ], [ 35.203583333333427, 32.2255 ], [ 35.20375, 32.225583333333361 ] ] ], [ [ [ 35.20775, 32.225583333333361 ], [ 35.207833333333383, 32.225583333333361 ], [ 35.207833333333383, 32.2255 ], [ 35.20775, 32.2255 ], [ 35.20775, 32.225583333333361 ] ] ], [ [ [ 35.207250000000101, 32.225666666666712 ], [ 35.207333333333395, 32.225666666666712 ], [ 35.207291666666663, 32.225559935251852 ], [ 35.207250000000101, 32.225666666666712 ] ] ], [ [ [ 35.20775, 32.225583333333361 ], [ 35.2075, 32.225583333333361 ], [ 35.2075, 32.225666666666712 ], [ 35.20775, 32.225666666666712 ], [ 35.20775, 32.225583333333361 ] ] ], [ [ [ 35.1985, 32.225416666666774 ], [ 35.198416666666674, 32.225416666666774 ], [ 35.198482866923143, 32.225549844106183 ], [ 35.198416666666674, 32.225583333333361 ], [ 35.1985, 32.22575 ], [ 35.198786707560259, 32.225502988179585 ], [ 35.1985, 32.225416666666774 ] ] ], [ [ [ 35.207250000000101, 32.225666666666712 ], [ 35.206833333333407, 32.225666666666712 ], [ 35.206833333333407, 32.22575 ], [ 35.206972005208456, 32.225777994791713 ], [ 35.207083333333287, 32.225833333333469 ], [ 35.207083333333287, 32.22575 ], [ 35.207250000000101, 32.22575 ], [ 35.207250000000101, 32.225666666666712 ] ] ], [ [ [ 35.198166666666793, 32.22575 ], [ 35.198125, 32.225643268585145 ], [ 35.198083333333273, 32.22575 ], [ 35.198125, 32.225856731414808 ], [ 35.198166666666793, 32.22575 ] ] ], [ [ [ 35.204608306884836, 32.225953651428313 ], [ 35.204376973470175, 32.225898022969488 ], [ 35.204333333333352, 32.226 ], [ 35.20450000000011, 32.226 ], [ 35.204608306884836, 32.225953651428313 ] ] ], [ [ [ 35.204666666666697, 32.226166666666643 ], [ 35.20450000000011, 32.226083333333349 ], [ 35.204474271138565, 32.226140937805326 ], [ 35.204307604471978, 32.226215380350766 ], [ 35.204620742797886, 32.226269484202135 ], [ 35.204666666666697, 32.226166666666643 ] ] ], [ [ [ 35.20450000000011, 32.226416666666751 ], [ 35.204416666666646, 32.226416666666751 ], [ 35.204416666666646, 32.2265 ], [ 35.20450000000011, 32.2265 ], [ 35.20450000000011, 32.226416666666751 ] ] ], [ [ [ 35.202916666666681, 32.226583333333338 ], [ 35.202780489603811, 32.226515642801928 ], [ 35.20275, 32.226666666666631 ], [ 35.202916666666681, 32.226666666666631 ], [ 35.202916666666681, 32.226583333333338 ] ] ], [ [ [ 35.200038052876835, 32.226689142862995 ], [ 35.200083333333396, 32.226583333333338 ], [ 35.199891693115205, 32.22661711120611 ], [ 35.200038052876835, 32.226689142862995 ] ] ], [ [ [ 35.197679580688487, 32.226772131602104 ], [ 35.197603686014816, 32.226161980946927 ], [ 35.197717969258633, 32.226019269307471 ], [ 35.198, 32.226083333333349 ], [ 35.198125, 32.22602119827269 ], [ 35.19825, 32.226083333333349 ], [ 35.198370391845742, 32.225986925760935 ], [ 35.197861483256133, 32.225879609425931 ], [ 35.197229904174833, 32.22597492599499 ], [ 35.197098378499334, 32.226287057240825 ], [ 35.196787058512484, 32.226212942759332 ], [ 35.196546274821003, 32.226071404774984 ], [ 35.196621009826742, 32.22621412658691 ], [ 35.197000183105501, 32.226687624613476 ], [ 35.197679580688487, 32.226772131602104 ] ] ], [ [ [ 35.202250000000106, 32.226833333333445 ], [ 35.202208333333374, 32.226726601918585 ], [ 35.202166666666642, 32.226833333333445 ], [ 35.202250000000106, 32.226833333333445 ] ] ], [ [ [ 35.202, 32.226916666666739 ], [ 35.20190088399255, 32.226797345479326 ], [ 35.20158333333336, 32.226916666666739 ], [ 35.201630221048902, 32.226977410634447 ], [ 35.202, 32.226916666666739 ] ] ], [ [ [ 35.203935091654387, 32.227192822774327 ], [ 35.204000000000121, 32.227083333333326 ], [ 35.203635650634851, 32.227120713551869 ], [ 35.203935091654387, 32.227192822774327 ] ] ], [ [ [ 35.197333333333404, 32.22725 ], [ 35.197291666666672, 32.22714326858528 ], [ 35.197250000000111, 32.22725 ], [ 35.197333333333404, 32.22725 ] ] ], [ [ [ 35.197333333333404, 32.22725 ], [ 35.197333333333404, 32.227333333333434 ], [ 35.197416666666697, 32.227333333333434 ], [ 35.197416666666697, 32.22725 ], [ 35.197333333333404, 32.22725 ] ] ], [ [ [ 35.2015, 32.227333333333434 ], [ 35.2015, 32.22725 ], [ 35.201666666666654, 32.22725 ], [ 35.201666666666654, 32.22716666666679 ], [ 35.201592496236117, 32.227050806681405 ], [ 35.201388549804676, 32.227261985778853 ], [ 35.2015, 32.227333333333434 ] ] ], [ [ [ 35.183313836415721, 32.227295089721736 ], [ 35.1832500000001, 32.22716666666679 ], [ 35.183055338541578, 32.227205964406437 ], [ 35.183189825693887, 32.227444661458435 ], [ 35.183313836415721, 32.227295089721736 ] ] ], [ [ [ 35.18625, 32.22775 ], [ 35.18625, 32.227666666666778 ], [ 35.186056303660166, 32.227708333333339 ], [ 35.18625, 32.22775 ] ] ], [ [ [ 35.197833333333392, 32.227583333333314 ], [ 35.19775, 32.227583333333314 ], [ 35.19775, 32.227833333333365 ], [ 35.197833333333392, 32.227833333333365 ], [ 35.197833333333392, 32.227583333333314 ] ] ], [ [ [ 35.204833333333283, 32.227833333333365 ], [ 35.204949907938726, 32.227739981333457 ], [ 35.204743453979574, 32.227388764699413 ], [ 35.205005945841606, 32.227278155008946 ], [ 35.204877894083779, 32.227118247985857 ], [ 35.204406138102286, 32.227252960205192 ], [ 35.204462941487748, 32.226796276092614 ], [ 35.20450000000011, 32.226750000000152 ], [ 35.20425, 32.226750000000152 ], [ 35.20425, 32.226833333333445 ], [ 35.204196283976216, 32.227069805145334 ], [ 35.20421351623537, 32.227208333333351 ], [ 35.204137934366997, 32.227815971374582 ], [ 35.204566235860284, 32.227762696584136 ], [ 35.20475, 32.227833333333365 ], [ 35.204833333333283, 32.227833333333365 ] ] ], [ [ [ 35.20475, 32.228083333333473 ], [ 35.204583333333403, 32.228 ], [ 35.204463696797688, 32.228092343648257 ], [ 35.204662633260227, 32.22819652175906 ], [ 35.20475, 32.228083333333473 ] ] ], [ [ [ 35.186, 32.22825 ], [ 35.186, 32.228166666666766 ], [ 35.185916666666799, 32.228166666666766 ], [ 35.185916666666799, 32.22825 ], [ 35.186, 32.22825 ] ] ], [ [ [ 35.186, 32.22825 ], [ 35.186029293060358, 32.228569494883232 ], [ 35.186277994791737, 32.228443681081217 ], [ 35.186169592539557, 32.228284236907939 ], [ 35.186, 32.22825 ] ] ], [ [ [ 35.205517244974772, 32.228358043670596 ], [ 35.20525, 32.228 ], [ 35.205130363464491, 32.228047031402582 ], [ 35.20480841318772, 32.228136684417734 ], [ 35.204738324483287, 32.228610960642584 ], [ 35.205117067972822, 32.228666928609243 ], [ 35.205517244974772, 32.228358043670596 ] ] ], [ [ [ 35.200531372070373, 32.228240099589073 ], [ 35.200416666666797, 32.228166666666766 ], [ 35.200277994791747, 32.228194661458303 ], [ 35.200083333333396, 32.228583333333461 ], [ 35.200157503763933, 32.228699193318675 ], [ 35.200423838297525, 32.228622745513974 ], [ 35.200531372070373, 32.228240099589073 ] ] ], [ [ [ 35.19971274820972, 32.228684532165516 ], [ 35.19975, 32.2285 ], [ 35.19975, 32.228416666666647 ], [ 35.19925, 32.228416666666647 ], [ 35.198951459248974, 32.228451457977314 ], [ 35.198946408589734, 32.228701457977365 ], [ 35.199453163146984, 32.228601320902555 ], [ 35.199500000000114, 32.228666666666754 ], [ 35.199583333333408, 32.228666666666754 ], [ 35.199583333333408, 32.22875 ], [ 35.19971274820972, 32.228684532165516 ] ] ], [ [ [ 35.18530480575572, 32.22876826858527 ], [ 35.185333333333347, 32.228666666666754 ], [ 35.185231731414831, 32.228695194244381 ], [ 35.18530480575572, 32.22876826858527 ] ] ], [ [ [ 35.179078281402724, 32.228827897389749 ], [ 35.17891666666668, 32.228583333333461 ], [ 35.178715963363686, 32.2286348393759 ], [ 35.178831548690937, 32.228772585550928 ], [ 35.179078281402724, 32.228827897389749 ] ] ], [ [ [ 35.206546081543081, 32.228851198832274 ], [ 35.206583333333356, 32.228666666666754 ], [ 35.206403269449879, 32.228700686137017 ], [ 35.206308377583809, 32.228866217295376 ], [ 35.206416666666712, 32.228916666666635 ], [ 35.206546081543081, 32.228851198832274 ] ] ], [ [ [ 35.206221473693859, 32.228934935251857 ], [ 35.206250000000125, 32.228833333333341 ], [ 35.206148396809908, 32.228861860911138 ], [ 35.206221473693859, 32.228934935251857 ] ] ], [ [ [ 35.198916666666662, 32.228916666666635 ], [ 35.198833333333369, 32.228916666666635 ], [ 35.198833333333369, 32.229 ], [ 35.198916666666662, 32.229 ], [ 35.198916666666662, 32.228916666666635 ] ] ], [ [ [ 35.203166666666789, 32.228916666666635 ], [ 35.203083333333268, 32.228916666666635 ], [ 35.203083333333268, 32.229 ], [ 35.203166666666789, 32.229 ], [ 35.203166666666789, 32.228916666666635 ] ] ], [ [ [ 35.179764216740921, 32.229112915039025 ], [ 35.179666666666776, 32.228916666666635 ], [ 35.179555338541718, 32.228972985585585 ], [ 35.179630248387696, 32.22919466145845 ], [ 35.179764216740921, 32.229112915039025 ] ] ], [ [ [ 35.199160059611017, 32.229195175170901 ], [ 35.199083333333419, 32.229 ], [ 35.198963696797762, 32.229092343648404 ], [ 35.199160059611017, 32.229195175170901 ] ] ], [ [ [ 35.180493394215944, 32.229361841837488 ], [ 35.180416666666645, 32.229166666666742 ], [ 35.180297031402631, 32.229259010314991 ], [ 35.180493394215944, 32.229361841837488 ] ] ], [ [ [ 35.20386202239996, 32.229369555155472 ], [ 35.203916666666657, 32.229083333333449 ], [ 35.203626589457258, 32.229253868103001 ], [ 35.20386202239996, 32.229369555155472 ] ] ], [ [ [ 35.198833333333369, 32.229416666666793 ], [ 35.19893101501475, 32.229137967427675 ], [ 35.19875, 32.229333333333329 ], [ 35.19875, 32.229416666666793 ], [ 35.198833333333369, 32.229416666666793 ] ] ], [ [ [ 35.181150276184155, 32.229384672800791 ], [ 35.18108333333339, 32.22925 ], [ 35.180888671875095, 32.229289297739683 ], [ 35.180976207733124, 32.229444661458388 ], [ 35.181150276184155, 32.229384672800791 ] ] ], [ [ [ 35.197333333333404, 32.229583333333437 ], [ 35.197089101155655, 32.229299854278622 ], [ 35.196916666666709, 32.2295 ], [ 35.196916666666709, 32.229583333333437 ], [ 35.197333333333404, 32.229583333333437 ] ] ], [ [ [ 35.179388139089042, 32.22985160191854 ], [ 35.179416666666668, 32.22975 ], [ 35.179315064748153, 32.229778527577821 ], [ 35.179388139089042, 32.22985160191854 ] ] ], [ [ [ 35.198401171366356, 32.229803138732905 ], [ 35.19833333333338, 32.229666666666731 ], [ 35.198147361755503, 32.229704209645547 ], [ 35.198070630391499, 32.229861328125025 ], [ 35.198401171366356, 32.229803138732905 ] ] ], [ [ [ 35.19768824768073, 32.229871774037804 ], [ 35.19775, 32.229666666666731 ], [ 35.197583333333341, 32.22975 ], [ 35.19768824768073, 32.229871774037804 ] ] ], [ [ [ 35.186383288065542, 32.230106044769343 ], [ 35.186416666666787, 32.229916666666782 ], [ 35.18630835978189, 32.229963015238525 ], [ 35.186383288065542, 32.230106044769343 ] ] ], [ [ [ 35.187966621398971, 32.230272711436101 ], [ 35.188, 32.230083333333369 ], [ 35.187891693115319, 32.230129681905112 ], [ 35.187966621398971, 32.230272711436101 ] ] ], [ [ [ 35.200185551961283, 32.230286898295105 ], [ 35.200340352376429, 32.229797953287743 ], [ 35.200868733724008, 32.229672093709326 ], [ 35.20075, 32.229333333333329 ], [ 35.200540077209553, 32.229373411814493 ], [ 35.200459808349706, 32.229460043589313 ], [ 35.200375, 32.229456681569502 ], [ 35.20020358276372, 32.229463475545344 ], [ 35.20021641540535, 32.229787239074767 ], [ 35.200113286336318, 32.229882793426555 ], [ 35.199789815267025, 32.229869972229153 ], [ 35.199793375650984, 32.229959809621221 ], [ 35.199706743876163, 32.230040078481068 ], [ 35.199626589457239, 32.230133193969721 ], [ 35.199876368204798, 32.230123294830435 ], [ 35.200185551961283, 32.230286898295105 ] ] ], [ [ [ 35.19925, 32.230333333333476 ], [ 35.19941666666665, 32.230333333333476 ], [ 35.19941666666665, 32.23025 ], [ 35.199333333333357, 32.23025 ], [ 35.19925, 32.23025 ], [ 35.19925, 32.230333333333476 ] ] ], [ [ [ 35.189430528005062, 32.230455899556603 ], [ 35.18925, 32.230166666666719 ], [ 35.188544765472386, 32.230225611368951 ], [ 35.188647131602011, 32.230538567861004 ], [ 35.189430528005062, 32.230455899556603 ] ] ], [ [ [ 35.19925, 32.230333333333476 ], [ 35.199192087809251, 32.230362630208447 ], [ 35.199099171956448, 32.230552884419751 ], [ 35.19925, 32.230583333333357 ], [ 35.19925, 32.230333333333476 ] ] ], [ [ [ 35.202221473693783, 32.230684935251873 ], [ 35.202250000000106, 32.230583333333357 ], [ 35.202148396809889, 32.230611860910983 ], [ 35.202221473693783, 32.230684935251873 ] ] ], [ [ [ 35.192833333333397, 32.23041666666677 ], [ 35.19266666666681, 32.23041666666677 ], [ 35.19270622762042, 32.230782526652092 ], [ 35.192991162618, 32.230586547851601 ], [ 35.19291666666669, 32.23041666666677 ], [ 35.192833333333397, 32.23041666666677 ] ] ], [ [ [ 35.185673877716056, 32.230868633270291 ], [ 35.185583333333398, 32.2305 ], [ 35.185523853302016, 32.230541067759248 ], [ 35.185432022094858, 32.230950702667258 ], [ 35.185673877716056, 32.230868633270291 ] ] ], [ [ [ 35.202, 32.231 ], [ 35.202166666666642, 32.230916666666758 ], [ 35.202093775431365, 32.23063263066615 ], [ 35.201922035217308, 32.230814374287945 ], [ 35.202, 32.231 ] ] ], [ [ [ 35.202, 32.231 ], [ 35.201893269856896, 32.231041666666783 ], [ 35.202, 32.231083333333345 ], [ 35.202, 32.231 ] ] ], [ [ [ 35.183966621398952, 32.231189378102613 ], [ 35.184, 32.231 ], [ 35.183891693115299, 32.231046348571795 ], [ 35.183966621398952, 32.231189378102613 ] ] ], [ [ [ 35.200083333333396, 32.2315 ], [ 35.2000548070273, 32.231398398081524 ], [ 35.19998173014335, 32.231471472422413 ], [ 35.200083333333396, 32.2315 ] ] ], [ [ [ 35.187539323171052, 32.231377343495694 ], [ 35.1875, 32.231333333333453 ], [ 35.187377343495712, 32.231442925771148 ], [ 35.187692282358796, 32.231514011383183 ], [ 35.187539323171052, 32.231377343495694 ] ] ], [ [ [ 35.188818150838301, 32.231470347086656 ], [ 35.188666666666791, 32.231166666666638 ], [ 35.188305338541682, 32.231199794769395 ], [ 35.188372844696119, 32.231527994791747 ], [ 35.188818150838301, 32.231470347086656 ] ] ], [ [ [ 35.189430884043475, 32.231529581705843 ], [ 35.189333333333366, 32.231333333333453 ], [ 35.189222005208308, 32.231389652252233 ], [ 35.189296915690079, 32.231611328125041 ], [ 35.189430884043475, 32.231529581705843 ] ] ], [ [ [ 35.193138140360475, 32.231768268585142 ], [ 35.193166666666798, 32.231666666666797 ], [ 35.193065063476581, 32.231695194244423 ], [ 35.193138140360475, 32.231768268585142 ] ] ], [ [ [ 35.198721473693922, 32.231768268585142 ], [ 35.19875, 32.231666666666797 ], [ 35.198648396810029, 32.231695194244423 ], [ 35.198721473693922, 32.231768268585142 ] ] ], [ [ [ 35.189721472422207, 32.231851601918663 ], [ 35.18975, 32.23175 ], [ 35.189648398081545, 32.231778527577774 ], [ 35.189721472422207, 32.231851601918663 ] ] ], [ [ [ 35.200083333333396, 32.2315 ], [ 35.200116462707513, 32.231861328124978 ], [ 35.200318219502776, 32.231801520029762 ], [ 35.200194010416737, 32.231555989583342 ], [ 35.200083333333396, 32.2315 ] ] ], [ [ [ 35.182871145884235, 32.231545520782561 ], [ 35.182833333333406, 32.2315 ], [ 35.182462187449119, 32.231756806691521 ], [ 35.182767197926921, 32.231912949880041 ], [ 35.182871145884235, 32.23178781255092 ], [ 35.183204355875716, 32.231690031687492 ], [ 35.182871145884235, 32.231545520782561 ] ] ], [ [ [ 35.194583333333412, 32.232 ], [ 35.19454166666668, 32.231893268585225 ], [ 35.194500000000119, 32.232 ], [ 35.194583333333412, 32.232 ] ] ], [ [ [ 35.19833333333338, 32.232 ], [ 35.19833333333338, 32.231916666666734 ], [ 35.1985, 32.231916666666734 ], [ 35.198465962727937, 32.231867369333941 ], [ 35.198200703938824, 32.231799297332714 ], [ 35.19803118133558, 32.231553769429638 ], [ 35.197916666666686, 32.232 ], [ 35.198, 32.232 ], [ 35.198073066711459, 32.231885866800951 ], [ 35.19833333333338, 32.232 ] ] ], [ [ [ 35.189331757863499, 32.232032290140864 ], [ 35.18925, 32.231833333333441 ], [ 35.189048542022817, 32.231886482238792 ], [ 35.189331757863499, 32.232032290140864 ] ] ], [ [ [ 35.199583333333408, 32.23225 ], [ 35.199541666666676, 32.232143268585276 ], [ 35.199500000000114, 32.23225 ], [ 35.199583333333408, 32.23225 ] ] ], [ [ [ 35.194277994791776, 32.232193927764911 ], [ 35.194151860555053, 32.232007846832346 ], [ 35.194000000000131, 32.232083333333321 ], [ 35.194000000000131, 32.232333333333372 ], [ 35.194277994791776, 32.232193927764911 ] ] ], [ [ [ 35.194694010416754, 32.232277343750127 ], [ 35.19475, 32.232166666666785 ], [ 35.194515205383368, 32.232196273803822 ], [ 35.194583333333412, 32.232333333333372 ], [ 35.194694010416754, 32.232277343750127 ] ] ], [ [ [ 35.196225921630969, 32.232215607960995 ], [ 35.19616666666667, 32.232083333333321 ], [ 35.195801561991459, 32.232121798197511 ], [ 35.195876777649005, 32.232334589640288 ], [ 35.196225921630969, 32.232215607960995 ] ] ], [ [ [ 35.19325, 32.232083333333321 ], [ 35.193116821288982, 32.232017134348553 ], [ 35.193083333333334, 32.232083333333321 ], [ 35.193216512044387, 32.232348910013968 ], [ 35.19325, 32.232083333333321 ] ] ], [ [ [ 35.187790172577024, 32.231857190450057 ], [ 35.187833333333401, 32.231583333333333 ], [ 35.187349737803231, 32.231907623291079 ], [ 35.187246673584013, 32.232367369333929 ], [ 35.187446805318302, 32.232267164866244 ], [ 35.187534036000557, 32.232034036000698 ], [ 35.187790172577024, 32.231857190450057 ] ] ], [ [ [ 35.198666666666782, 32.232166666666785 ], [ 35.1985, 32.232166666666785 ], [ 35.1985, 32.232416666666722 ], [ 35.198666666666782, 32.232416666666722 ], [ 35.198666666666782, 32.232166666666785 ] ] ], [ [ [ 35.193333333333385, 32.232583333333309 ], [ 35.193333333333385, 32.2325 ], [ 35.193226603190112, 32.232541666666748 ], [ 35.193333333333385, 32.232583333333309 ] ] ], [ [ [ 35.192695704142352, 32.231792432149291 ], [ 35.192324826558433, 32.231377343495694 ], [ 35.19239250183108, 32.232320617675896 ], [ 35.192634933471709, 32.232537228902288 ], [ 35.192539321899346, 32.232622656504304 ], [ 35.192460678100701, 32.232710676829072 ], [ 35.192210678100594, 32.232825419107996 ], [ 35.192710678100582, 32.232794010162365 ], [ 35.192789321899454, 32.232539323171011 ], [ 35.192833333333397, 32.2325 ], [ 35.19280382792158, 32.232362838745189 ], [ 35.192638613382996, 32.23214438883457 ], [ 35.192750000000103, 32.232083333333321 ], [ 35.192695704142352, 32.231792432149291 ] ] ], [ [ [ 35.193106730143313, 32.232958333333443 ], [ 35.193, 32.232916666666654 ], [ 35.193, 32.233 ], [ 35.193106730143313, 32.232958333333443 ] ] ], [ [ [ 35.196190063476649, 32.232958333333443 ], [ 35.196083333333377, 32.232916666666654 ], [ 35.196083333333377, 32.233 ], [ 35.196190063476649, 32.232958333333443 ] ] ], [ [ [ 35.185972005208384, 32.23297200520841 ], [ 35.186, 32.23275 ], [ 35.185859177907446, 32.232778428395704 ], [ 35.185737297058211, 32.233027994791712 ], [ 35.185972005208384, 32.23297200520841 ] ] ], [ [ [ 35.188521710713758, 32.232961325327608 ], [ 35.188416666666683, 32.23275 ], [ 35.188138671875095, 32.232785054524868 ], [ 35.188211429595981, 32.233027994791712 ], [ 35.188521710713758, 32.232961325327608 ] ] ], [ [ [ 35.196083333333377, 32.233083333333468 ], [ 35.195950154622494, 32.233017134348472 ], [ 35.19591666666679, 32.233083333333468 ], [ 35.19591666666679, 32.233166666666762 ], [ 35.196, 32.233166666666762 ], [ 35.196083333333377, 32.233166666666762 ], [ 35.196083333333377, 32.233083333333468 ] ] ], [ [ [ 35.196371386210217, 32.233189142862955 ], [ 35.196416666666778, 32.233083333333468 ], [ 35.196225026448587, 32.23311711120607 ], [ 35.196371386210217, 32.233189142862955 ] ] ], [ [ [ 35.183666666666795, 32.23325 ], [ 35.183546089172296, 32.233054308573458 ], [ 35.1835, 32.23325 ], [ 35.183666666666795, 32.23325 ] ] ], [ [ [ 35.188895407358928, 32.233041545868048 ], [ 35.188833333333378, 32.232916666666654 ], [ 35.188555338541732, 32.232951721191455 ], [ 35.188625862121626, 32.233187201181977 ], [ 35.18875, 32.23325 ], [ 35.188807912190839, 32.233220703125085 ], [ 35.188895407358928, 32.233041545868048 ] ] ], [ [ [ 35.186790833791065, 32.232792499542256 ], [ 35.18675, 32.23275 ], [ 35.186625832875563, 32.232869297027605 ], [ 35.187140552520816, 32.233290833791159 ], [ 35.187120632171684, 32.2329525019328 ], [ 35.186790833791065, 32.232792499542256 ] ] ], [ [ [ 35.193, 32.233333333333348 ], [ 35.193, 32.23325 ], [ 35.192867309570318, 32.233184043884307 ], [ 35.192805338541689, 32.233294035593701 ], [ 35.193, 32.233333333333348 ] ] ], [ [ [ 35.186400276184202, 32.233301339467516 ], [ 35.186333333333323, 32.233166666666762 ], [ 35.186138671875142, 32.233205964406409 ], [ 35.186226207733171, 32.233361328125113 ], [ 35.186400276184202, 32.233301339467516 ] ] ], [ [ [ 35.190388139089009, 32.233434935251864 ], [ 35.190416666666806, 32.233333333333348 ], [ 35.19031506474812, 32.233361860910975 ], [ 35.190388139089009, 32.233434935251864 ] ] ], [ [ [ 35.193, 32.233333333333348 ], [ 35.193, 32.2335 ], [ 35.19311626688642, 32.233416666666642 ], [ 35.193, 32.233333333333348 ] ] ], [ [ [ 35.197372655232755, 32.233460676829111 ], [ 35.197333333333404, 32.233416666666642 ], [ 35.197210678100589, 32.233526259104337 ], [ 35.197525616963844, 32.233597344716429 ], [ 35.197372655232755, 32.233460676829111 ] ] ], [ [ [ 35.192900276184162, 32.233551339467397 ], [ 35.192833333333397, 32.233416666666642 ], [ 35.192638671875102, 32.23345596440646 ], [ 35.1927262064616, 32.233611328124994 ], [ 35.192900276184162, 32.233551339467397 ] ] ], [ [ [ 35.192583333333346, 32.23366666666675 ], [ 35.192416666666702, 32.233466023763015 ], [ 35.192333333333409, 32.23375 ], [ 35.192444661458467, 32.233694661458458 ], [ 35.192583333333346, 32.23366666666675 ] ] ], [ [ [ 35.192583333333346, 32.23366666666675 ], [ 35.192583333333346, 32.23375 ], [ 35.19266666666681, 32.23375 ], [ 35.19266666666681, 32.23366666666675 ], [ 35.192583333333346, 32.23366666666675 ] ] ], [ [ [ 35.198083333333273, 32.23366666666675 ], [ 35.198, 32.23366666666675 ], [ 35.198, 32.23375 ], [ 35.198083333333273, 32.23375 ], [ 35.198083333333273, 32.23366666666675 ] ] ], [ [ [ 35.189966621398924, 32.233856044769254 ], [ 35.190000000000111, 32.23366666666675 ], [ 35.189891693115214, 32.233713015238493 ], [ 35.189966621398924, 32.233856044769254 ] ] ], [ [ [ 35.186794633229511, 32.233948053995846 ], [ 35.186916666666775, 32.23375 ], [ 35.186551561991394, 32.233788464864233 ], [ 35.186794633229511, 32.233948053995846 ] ] ], [ [ [ 35.189815203348871, 32.234145259857257 ], [ 35.189937864939452, 32.234018229166736 ], [ 35.189521198272814, 32.234021198272785 ], [ 35.189500000000123, 32.234083333333444 ], [ 35.189500000000123, 32.234166666666738 ], [ 35.189815203348871, 32.234145259857257 ] ] ], [ [ [ 35.184690064748111, 32.234291666666763 ], [ 35.184583333333251, 32.23425 ], [ 35.184583333333251, 32.234333333333325 ], [ 35.184690064748111, 32.234291666666763 ] ] ], [ [ [ 35.197554807027188, 32.234601601918598 ], [ 35.197583333333341, 32.2345 ], [ 35.197481730143295, 32.234528527577709 ], [ 35.197554807027188, 32.234601601918598 ] ] ], [ [ [ 35.192166666666651, 32.2345 ], [ 35.192166666666651, 32.234333333333325 ], [ 35.191797030131056, 32.234396125793467 ], [ 35.191897850036696, 32.234605677286936 ], [ 35.192166666666651, 32.2345 ] ] ], [ [ [ 35.197833333333392, 32.234666666666726 ], [ 35.197833333333392, 32.234583333333376 ], [ 35.197726603190119, 32.234625 ], [ 35.197833333333392, 32.234666666666726 ] ] ], [ [ [ 35.193833333333373, 32.234583333333376 ], [ 35.19375, 32.234583333333376 ], [ 35.19375, 32.23475 ], [ 35.193833333333373, 32.23475 ], [ 35.194108810424837, 32.234717358907176 ], [ 35.194000000000131, 32.234666666666726 ], [ 35.193833333333373, 32.234666666666726 ], [ 35.193833333333373, 32.234583333333376 ] ] ], [ [ [ 35.197833333333392, 32.234666666666726 ], [ 35.197833333333392, 32.23475 ], [ 35.197916666666686, 32.23475 ], [ 35.197916666666686, 32.234666666666726 ], [ 35.197833333333392, 32.234666666666726 ] ] ], [ [ [ 35.18575, 32.234833333333313 ], [ 35.18575, 32.23475 ], [ 35.185643268585181, 32.234791666666752 ], [ 35.18575, 32.234833333333313 ] ] ], [ [ [ 35.18825, 32.234666666666726 ], [ 35.188166666666802, 32.234666666666726 ], [ 35.188166666666802, 32.234833333333313 ], [ 35.188371774037705, 32.234771579742414 ], [ 35.18825, 32.234666666666726 ] ] ], [ [ [ 35.201304807027157, 32.234851601918535 ], [ 35.201333333333423, 32.23475 ], [ 35.201231730143206, 32.234778527577816 ], [ 35.201304807027157, 32.234851601918535 ] ] ], [ [ [ 35.196, 32.235 ], [ 35.19591666666679, 32.235 ], [ 35.19591666666679, 32.235083333333364 ], [ 35.196, 32.235083333333364 ], [ 35.196, 32.235 ] ] ], [ [ [ 35.184804805755732, 32.23518493525188 ], [ 35.184833333333358, 32.235083333333364 ], [ 35.184731731414843, 32.23511186091099 ], [ 35.184804805755732, 32.23518493525188 ] ] ], [ [ [ 35.184416666666664, 32.235083333333364 ], [ 35.18433333333337, 32.235083333333364 ], [ 35.18433333333337, 32.23525 ], [ 35.184416666666664, 32.23525 ], [ 35.184416666666664, 32.235083333333364 ] ] ], [ [ [ 35.190666666666687, 32.2345 ], [ 35.190583333333393, 32.2345 ], [ 35.190583333333393, 32.23475 ], [ 35.190916081746423, 32.234916862487921 ], [ 35.19083333333333, 32.235083333333364 ], [ 35.190882630666124, 32.235117369969828 ], [ 35.190997370402044, 32.235283554712964 ], [ 35.1912482503256, 32.235110338846937 ], [ 35.191313240051386, 32.234820434570338 ], [ 35.191034037272118, 32.23471596399952 ], [ 35.19083333333333, 32.234583333333376 ], [ 35.19075, 32.234583333333376 ], [ 35.190666666666687, 32.234583333333376 ], [ 35.190666666666687, 32.2345 ] ] ], [ [ [ 35.190112358093245, 32.235287244160986 ], [ 35.189916666666647, 32.235166666666657 ], [ 35.189916666666647, 32.235333333333472 ], [ 35.190112358093245, 32.235287244160986 ] ] ], [ [ [ 35.19025, 32.2355 ], [ 35.19020833333326, 32.235393268585256 ], [ 35.190166666666698, 32.2355 ], [ 35.19025, 32.2355 ] ] ], [ [ [ 35.18575, 32.235583333333352 ], [ 35.185708333333253, 32.235476601918549 ], [ 35.185666666666691, 32.235583333333352 ], [ 35.18575, 32.235583333333352 ] ] ], [ [ [ 35.19075, 32.235583333333352 ], [ 35.19075, 32.2355 ], [ 35.1905000000001, 32.2355 ], [ 35.1905000000001, 32.235583333333352 ], [ 35.19075, 32.235583333333352 ] ] ], [ [ [ 35.19075, 32.235583333333352 ], [ 35.19075, 32.235666666666646 ], [ 35.19083333333333, 32.235666666666646 ], [ 35.19083333333333, 32.235583333333352 ], [ 35.19075, 32.235583333333352 ] ] ], [ [ [ 35.19125, 32.235583333333352 ], [ 35.191083333333381, 32.235583333333352 ], [ 35.191083333333381, 32.235666666666646 ], [ 35.19125, 32.235666666666646 ], [ 35.19125, 32.235583333333352 ] ] ], [ [ [ 35.183949600219819, 32.23575 ], [ 35.183833333333382, 32.235666666666646 ], [ 35.183833333333382, 32.23583333333346 ], [ 35.183949600219819, 32.23575 ] ] ], [ [ [ 35.18433333333337, 32.235666666666646 ], [ 35.18425, 32.235666666666646 ], [ 35.18425, 32.23575 ], [ 35.18433333333337, 32.235916666666753 ], [ 35.184416666666664, 32.235916666666753 ], [ 35.184416666666664, 32.23575 ], [ 35.18433333333337, 32.23575 ], [ 35.18433333333337, 32.235666666666646 ] ] ], [ [ [ 35.19083333333333, 32.236 ], [ 35.19075, 32.235883732477873 ], [ 35.190666666666687, 32.236 ], [ 35.19083333333333, 32.236 ] ] ], [ [ [ 35.1925, 32.236 ], [ 35.192416666666702, 32.236 ], [ 35.192416666666702, 32.23608333333334 ], [ 35.1925, 32.23608333333334 ], [ 35.1925, 32.236 ] ] ], [ [ [ 35.193804807027277, 32.236184935251856 ], [ 35.193833333333373, 32.23608333333334 ], [ 35.193731730143327, 32.236111860911137 ], [ 35.193804807027277, 32.236184935251856 ] ] ], [ [ [ 35.194712219238397, 32.236196208318063 ], [ 35.19475, 32.23575 ], [ 35.194634140014784, 32.235824171066213 ], [ 35.194712219238397, 32.236196208318063 ] ] ], [ [ [ 35.191333333333262, 32.23625 ], [ 35.19125, 32.23625 ], [ 35.19125, 32.236333333333448 ], [ 35.191333333333262, 32.236333333333448 ], [ 35.191333333333262, 32.23625 ] ] ], [ [ [ 35.19963823699959, 32.236275844574095 ], [ 35.199388671875113, 32.23615396372486 ], [ 35.199444661458358, 32.236388671874977 ], [ 35.199500000000114, 32.236416666666742 ], [ 35.199666666666701, 32.236416666666742 ], [ 35.19963823699959, 32.236275844574095 ] ] ], [ [ [ 35.191971473693911, 32.236434935251964 ], [ 35.192, 32.236333333333448 ], [ 35.191898396810018, 32.236361860911074 ], [ 35.191971473693911, 32.236434935251964 ] ] ], [ [ [ 35.198606730143297, 32.236458333333474 ], [ 35.1985, 32.236416666666742 ], [ 35.1985, 32.2365 ], [ 35.198606730143297, 32.236458333333474 ] ] ], [ [ [ 35.190888139088997, 32.236851601918602 ], [ 35.190916666666794, 32.23675 ], [ 35.190815064748108, 32.236778527577712 ], [ 35.190888139088997, 32.236851601918602 ] ] ], [ [ [ 35.185333333333347, 32.23691666666673 ], [ 35.18530480575572, 32.236815064748157 ], [ 35.185231731414831, 32.236888139088876 ], [ 35.185333333333347, 32.23691666666673 ] ] ], [ [ [ 35.185333333333347, 32.23691666666673 ], [ 35.185333333333347, 32.237 ], [ 35.18541666666664, 32.237 ], [ 35.18541666666664, 32.23691666666673 ], [ 35.185333333333347, 32.23691666666673 ] ] ], [ [ [ 35.1832500000001, 32.237 ], [ 35.183166666666807, 32.237 ], [ 35.183208333333369, 32.237106731414826 ], [ 35.1832500000001, 32.237 ] ] ], [ [ [ 35.19825, 32.23725 ], [ 35.19825, 32.237083333333317 ], [ 35.198122734069841, 32.237136786778876 ], [ 35.197833872477247, 32.236912914276104 ], [ 35.197916666666686, 32.23725 ], [ 35.19825, 32.23725 ] ] ], [ [ [ 35.198833333333369, 32.2375 ], [ 35.198701568603553, 32.237434502919541 ], [ 35.198638671875017, 32.237527014414525 ], [ 35.19875, 32.237583333333475 ], [ 35.198833333333369, 32.237583333333475 ], [ 35.198833333333369, 32.2375 ] ] ], [ [ [ 35.192057759602847, 32.237141093572006 ], [ 35.192166666666651, 32.237 ], [ 35.191639834086232, 32.237089495976875 ], [ 35.1915169932048, 32.237619635264195 ], [ 35.191630363464469, 32.237547031402585 ], [ 35.191702969869084, 32.237286301930794 ], [ 35.192057759602847, 32.237141093572006 ] ] ], [ [ [ 35.199190063476578, 32.237625 ], [ 35.199083333333419, 32.237583333333475 ], [ 35.199083333333419, 32.237666666666769 ], [ 35.199190063476578, 32.237625 ] ] ], [ [ [ 35.181583333333379, 32.237833333333356 ], [ 35.181583333333379, 32.23775 ], [ 35.181361328125035, 32.2377779947916 ], [ 35.18125, 32.237833333333356 ], [ 35.18125, 32.237916666666649 ], [ 35.181472005208377, 32.237888671875112 ], [ 35.181583333333379, 32.237833333333356 ] ] ], [ [ [ 35.18541666666664, 32.238 ], [ 35.18541666666664, 32.237916666666649 ], [ 35.185666666666691, 32.237916666666649 ], [ 35.185637369791721, 32.237858754476065 ], [ 35.1853573595684, 32.237722005208354 ], [ 35.185361328125055, 32.237972005208405 ], [ 35.18541666666664, 32.238 ] ] ], [ [ [ 35.186, 32.238 ], [ 35.185916666666799, 32.237833333333356 ], [ 35.18575, 32.237916666666649 ], [ 35.18575, 32.238 ], [ 35.185833333333335, 32.238 ], [ 35.186, 32.238 ] ] ], [ [ [ 35.184371387481633, 32.238272476196414 ], [ 35.184416666666664, 32.238166666666757 ], [ 35.184225026448644, 32.238200443903736 ], [ 35.184371387481633, 32.238272476196414 ] ] ], [ [ [ 35.19833333333338, 32.23825 ], [ 35.19825, 32.23825 ], [ 35.19825, 32.238333333333344 ], [ 35.19833333333338, 32.238333333333344 ], [ 35.19833333333338, 32.23825 ] ] ], [ [ [ 35.191518488566146, 32.238268436432008 ], [ 35.191583333333369, 32.23775 ], [ 35.191212941487663, 32.23779632759107 ], [ 35.19131506601974, 32.238370390574175 ], [ 35.191518488566146, 32.238268436432008 ] ] ], [ [ [ 35.188083333333338, 32.238166666666757 ], [ 35.187916666666695, 32.238166666666757 ], [ 35.187916666666695, 32.23825 ], [ 35.18802157974244, 32.238371773401923 ], [ 35.188083333333338, 32.238166666666757 ] ] ], [ [ [ 35.18625, 32.238166666666757 ], [ 35.186083333333386, 32.238166666666757 ], [ 35.186083333333386, 32.23825 ], [ 35.186200586954783, 32.238483820597423 ], [ 35.186399532318092, 32.238383177439459 ], [ 35.186333333333323, 32.23825 ], [ 35.18625, 32.23825 ], [ 35.18625, 32.238166666666757 ] ] ], [ [ [ 35.185916666666799, 32.238416666666808 ], [ 35.185916666666799, 32.2385 ], [ 35.186, 32.2385 ], [ 35.186, 32.238416666666808 ], [ 35.185916666666799, 32.238416666666808 ] ] ], [ [ [ 35.185916666666799, 32.238416666666808 ], [ 35.185916666666799, 32.23825 ], [ 35.185916666666799, 32.238166666666757 ], [ 35.18575, 32.238166666666757 ], [ 35.18575, 32.23825 ], [ 35.185583333333398, 32.23825 ], [ 35.185583333333398, 32.238583333333452 ], [ 35.185666666666691, 32.238583333333452 ], [ 35.18575, 32.238583333333452 ], [ 35.18575, 32.2385 ], [ 35.18575, 32.238416666666808 ], [ 35.185916666666799, 32.238416666666808 ] ] ], [ [ [ 35.198, 32.238583333333452 ], [ 35.19794325002033, 32.238129609425926 ], [ 35.197798759460568, 32.238276589075724 ], [ 35.197916666666686, 32.238583333333452 ], [ 35.198, 32.238583333333452 ] ] ], [ [ [ 35.185388671875103, 32.238611328124989 ], [ 35.18516666666676, 32.238583333333452 ], [ 35.185020552317326, 32.238624020894463 ], [ 35.185333333333347, 32.23875 ], [ 35.185500000000104, 32.23875 ], [ 35.185500000000104, 32.238666666666745 ], [ 35.185388671875103, 32.238611328124989 ] ] ], [ [ [ 35.18541666666664, 32.238833333333332 ], [ 35.185333333333347, 32.238833333333332 ], [ 35.185333333333347, 32.238916666666796 ], [ 35.18541666666664, 32.238916666666796 ], [ 35.18541666666664, 32.238833333333332 ] ] ], [ [ [ 35.198375000000112, 32.238945255915269 ], [ 35.198416666666674, 32.238666666666745 ], [ 35.19825, 32.23875 ], [ 35.198375000000112, 32.238945255915269 ] ] ], [ [ [ 35.171083333333456, 32.238916666666796 ], [ 35.170916666666642, 32.238916666666796 ], [ 35.170916666666642, 32.239083333333383 ], [ 35.171083333333456, 32.239083333333383 ], [ 35.17114953263598, 32.239049844106034 ], [ 35.171083333333456, 32.238916666666796 ] ] ], [ [ [ 35.181166666666684, 32.239083333333383 ], [ 35.181138139089057, 32.238981731414867 ], [ 35.181065064748168, 32.239054805755757 ], [ 35.181166666666684, 32.239083333333383 ] ] ], [ [ [ 35.1705, 32.239083333333383 ], [ 35.170416666666654, 32.239083333333383 ], [ 35.170416666666654, 32.239166666666733 ], [ 35.1705, 32.239166666666733 ], [ 35.1705, 32.239083333333383 ] ] ], [ [ [ 35.18675, 32.23933333333332 ], [ 35.18675, 32.23925 ], [ 35.186666666666667, 32.23925 ], [ 35.186666666666667, 32.23933333333332 ], [ 35.18675, 32.23933333333332 ] ] ], [ [ [ 35.171, 32.239416666666784 ], [ 35.171, 32.23933333333332 ], [ 35.170806303342317, 32.239375 ], [ 35.171, 32.239416666666784 ] ] ], [ [ [ 35.171, 32.239416666666784 ], [ 35.171, 32.2395 ], [ 35.171083333333456, 32.2395 ], [ 35.171083333333456, 32.239416666666784 ], [ 35.171, 32.239416666666784 ] ] ], [ [ [ 35.185666666666691, 32.239416666666784 ], [ 35.185583333333398, 32.239416666666784 ], [ 35.185583333333398, 32.2395 ], [ 35.185666666666691, 32.2395 ], [ 35.185666666666691, 32.239416666666784 ] ] ], [ [ [ 35.18675, 32.23933333333332 ], [ 35.18675, 32.2395 ], [ 35.186833333333254, 32.2395 ], [ 35.186916666666775, 32.23933333333332 ], [ 35.18675, 32.23933333333332 ] ] ], [ [ [ 35.181166666666684, 32.239083333333383 ], [ 35.181166666666684, 32.23933333333332 ], [ 35.18127283859252, 32.239527030309091 ], [ 35.181333333333328, 32.239416666666784 ], [ 35.181213698069314, 32.239119635264103 ], [ 35.181166666666684, 32.239083333333383 ] ] ], [ [ [ 35.198166666666793, 32.239583333333371 ], [ 35.198083333333273, 32.239583333333371 ], [ 35.198083333333273, 32.239666666666665 ], [ 35.198166666666793, 32.239666666666665 ], [ 35.198166666666793, 32.239583333333371 ] ] ], [ [ [ 35.190583333333393, 32.239916666666772 ], [ 35.19053698476165, 32.239808359146139 ], [ 35.190311117808108, 32.239871498743696 ], [ 35.190416666666806, 32.239916666666772 ], [ 35.190583333333393, 32.239916666666772 ] ] ], [ [ [ 35.185999994913857, 32.239832361857225 ], [ 35.185874879201378, 32.239771258672135 ], [ 35.18575, 32.239833333333479 ], [ 35.185805989583457, 32.239944010416593 ], [ 35.185916666666799, 32.24 ], [ 35.185999994913857, 32.239832361857225 ] ] ], [ [ [ 35.197518269856914, 32.239945194244399 ], [ 35.197416666666697, 32.239916666666772 ], [ 35.19744519297285, 32.240018268585288 ], [ 35.197518269856914, 32.239945194244399 ] ] ], [ [ [ 35.19875, 32.23975 ], [ 35.19875, 32.239666666666665 ], [ 35.198515261332261, 32.239765260696515 ], [ 35.19825, 32.239833333333479 ], [ 35.19825, 32.240083333333359 ], [ 35.19833333333338, 32.240083333333359 ], [ 35.198387995402015, 32.239994618098024 ], [ 35.198781771342055, 32.239865104039552 ], [ 35.199000000000126, 32.239833333333479 ], [ 35.199000000000126, 32.23975 ], [ 35.19875, 32.23975 ] ] ], [ [ [ 35.18575, 32.240166666666653 ], [ 35.185708333333253, 32.24005993525202 ], [ 35.185666666666691, 32.240166666666653 ], [ 35.18575, 32.240166666666653 ] ] ], [ [ [ 35.200916666666785, 32.240083333333359 ], [ 35.200780489603687, 32.240015642166213 ], [ 35.20075, 32.240166666666653 ], [ 35.200916666666785, 32.240166666666653 ], [ 35.200916666666785, 32.240083333333359 ] ] ], [ [ [ 35.194833333333349, 32.24025 ], [ 35.194833333333349, 32.240166666666653 ], [ 35.194721743265859, 32.240027317047179 ], [ 35.194211702982557, 32.2396193981171 ], [ 35.19403443908692, 32.239641447067299 ], [ 35.194056343078614, 32.239465341568064 ], [ 35.193878774007146, 32.239443254470928 ], [ 35.193796274821011, 32.23954627609254 ], [ 35.193696182251074, 32.239626431147258 ], [ 35.193882659912106, 32.239705008824785 ], [ 35.193833333333373, 32.239833333333479 ], [ 35.194337498982861, 32.239872803370304 ], [ 35.194536303202369, 32.24013036473599 ], [ 35.194833333333349, 32.24025 ] ] ], [ [ [ 35.201366806030251, 32.24020091120417 ], [ 35.20125000000013, 32.239916666666772 ], [ 35.201083333333372, 32.24 ], [ 35.200966303507528, 32.240284791946522 ], [ 35.201366806030251, 32.24020091120417 ] ] ], [ [ [ 35.189333333333366, 32.24025 ], [ 35.189083333333258, 32.24025 ], [ 35.189148801167789, 32.240379413604785 ], [ 35.189333333333366, 32.240416666666761 ], [ 35.189333333333366, 32.24025 ] ] ], [ [ [ 35.189500000000123, 32.240416666666761 ], [ 35.189583333333246, 32.240416666666761 ], [ 35.189541666666685, 32.240309935251958 ], [ 35.189500000000123, 32.240416666666761 ] ] ], [ [ [ 35.189500000000123, 32.240416666666761 ], [ 35.189416666666659, 32.240416666666761 ], [ 35.189416666666659, 32.2405 ], [ 35.189500000000123, 32.2405 ], [ 35.189500000000123, 32.240416666666761 ] ] ], [ [ [ 35.194833333333349, 32.24025 ], [ 35.19495338694253, 32.240423881212848 ], [ 35.19525, 32.2405 ], [ 35.195215548197552, 32.240197056452473 ], [ 35.195000000000107, 32.24025 ], [ 35.194833333333349, 32.24025 ] ] ], [ [ [ 35.198416666666674, 32.240333333333467 ], [ 35.19833333333338, 32.240333333333467 ], [ 35.198375000000112, 32.240527029991256 ], [ 35.198416666666674, 32.240333333333467 ] ] ], [ [ [ 35.196916666666709, 32.24 ], [ 35.196805338541708, 32.23994466145848 ], [ 35.196666666666658, 32.239916666666772 ], [ 35.196666666666658, 32.24 ], [ 35.196583333333365, 32.24 ], [ 35.196612083435014, 32.240054583231711 ], [ 35.196858573913573, 32.240184413274221 ], [ 35.196738797505759, 32.240451010386266 ], [ 35.197, 32.240583333333348 ], [ 35.197199948628736, 32.24053344408685 ], [ 35.197088394165064, 32.240114186604956 ], [ 35.196916666666709, 32.24 ] ] ], [ [ [ 35.192019538879379, 32.240540289561068 ], [ 35.191916666666771, 32.240333333333467 ], [ 35.191722005208419, 32.240372631073114 ], [ 35.191795153299893, 32.240611328125055 ], [ 35.192019538879379, 32.240540289561068 ] ] ], [ [ [ 35.182750000000112, 32.240666666666812 ], [ 35.182666666666648, 32.2405 ], [ 35.1825, 32.240416666666761 ], [ 35.1825, 32.240583333333348 ], [ 35.182416666666768, 32.240583333333348 ], [ 35.182416666666768, 32.240666666666812 ], [ 35.182583333333355, 32.240666666666812 ], [ 35.182750000000112, 32.240666666666812 ] ] ], [ [ [ 35.189833333333354, 32.2405 ], [ 35.18975, 32.2405 ], [ 35.189628225962451, 32.240604913711536 ], [ 35.189833333333354, 32.240666666666812 ], [ 35.189833333333354, 32.2405 ] ] ], [ [ [ 35.190704720815006, 32.240689142545079 ], [ 35.19075, 32.240583333333348 ], [ 35.190558359782017, 32.240617110888309 ], [ 35.190704720815006, 32.240689142545079 ] ] ], [ [ [ 35.195333333333338, 32.24075 ], [ 35.195333333333338, 32.240666666666812 ], [ 35.195139635721944, 32.240708333333373 ], [ 35.195333333333338, 32.24075 ] ] ], [ [ [ 35.196083333333377, 32.240833333333455 ], [ 35.196041666666645, 32.240726601918595 ], [ 35.196, 32.240833333333455 ], [ 35.196083333333377, 32.240833333333455 ] ] ], [ [ [ 35.198265965779683, 32.240783099810301 ], [ 35.198166666666793, 32.240583333333348 ], [ 35.198025413513221, 32.240369582494111 ], [ 35.198166666666793, 32.240333333333467 ], [ 35.198129414876348, 32.240148801167891 ], [ 35.198, 32.240083333333359 ], [ 35.197617370605542, 32.240117369969823 ], [ 35.197549296061311, 32.24021596336371 ], [ 35.197272216796875, 32.240374116897726 ], [ 35.197497426350992, 32.240700302759876 ], [ 35.197952748616558, 32.240598229726288 ], [ 35.198068072001206, 32.24076526037851 ], [ 35.198166666666793, 32.240833333333455 ], [ 35.198265965779683, 32.240783099810301 ] ] ], [ [ [ 35.191910059611018, 32.240861841201877 ], [ 35.19183333333325, 32.240666666666812 ], [ 35.191713696797763, 32.240759009997134 ], [ 35.191910059611018, 32.240861841201877 ] ] ], [ [ [ 35.195333333333338, 32.24075 ], [ 35.195333333333338, 32.240833333333455 ], [ 35.1955, 32.240833333333455 ], [ 35.1955, 32.240916666666749 ], [ 35.195583333333389, 32.240916666666749 ], [ 35.195583333333389, 32.240833333333455 ], [ 35.195833333333269, 32.240833333333455 ], [ 35.195881245931105, 32.240541666666786 ], [ 35.195833333333269, 32.24025 ], [ 35.195666666666682, 32.24025 ], [ 35.195666666666682, 32.2405 ], [ 35.1955, 32.2405 ], [ 35.1955, 32.24075 ], [ 35.195333333333338, 32.24075 ] ] ], [ [ [ 35.193948438008647, 32.240301562627224 ], [ 35.193849327087435, 32.240010728836182 ], [ 35.193604873657307, 32.240086870193579 ], [ 35.1935, 32.239916666666772 ], [ 35.193374165852958, 32.239957499821912 ], [ 35.193292500813811, 32.240125833511343 ], [ 35.193207071940208, 32.240207912445214 ], [ 35.193314394632978, 32.240521464665846 ], [ 35.193125834147224, 32.240702630678868 ], [ 35.193284263610906, 32.241038638114958 ], [ 35.194166666666774, 32.240833333333455 ], [ 35.194134895324737, 32.240781770706178 ], [ 35.19392306009928, 32.240651246388779 ], [ 35.194058509826618, 32.240458333333322 ], [ 35.193948438008647, 32.240301562627224 ] ] ], [ [ [ 35.200888140360632, 32.241101601918558 ], [ 35.200916666666785, 32.241 ], [ 35.200815063476568, 32.241028527577839 ], [ 35.200888140360632, 32.241101601918558 ] ] ], [ [ [ 35.189601198832236, 32.240703919728617 ], [ 35.189416666666659, 32.240666666666812 ], [ 35.189212187449129, 32.240991155306517 ], [ 35.189583124796627, 32.241118019739815 ], [ 35.189666666666767, 32.240833333333455 ], [ 35.189601198832236, 32.240703919728617 ] ] ], [ [ [ 35.19680480702732, 32.241184935252022 ], [ 35.196833333333416, 32.241083333333336 ], [ 35.196731730143199, 32.241111860911133 ], [ 35.19680480702732, 32.241184935252022 ] ] ], [ [ [ 35.200721473693875, 32.241184935252022 ], [ 35.20075, 32.241083333333336 ], [ 35.200648396809925, 32.241111860911133 ], [ 35.200721473693875, 32.241184935252022 ] ] ], [ [ [ 35.1955, 32.240916666666749 ], [ 35.195083435058621, 32.24086462179821 ], [ 35.194742774963458, 32.240906994819568 ], [ 35.194333333333361, 32.241 ], [ 35.194361328125069, 32.241222005208385 ], [ 35.194416666666655, 32.241333333333387 ], [ 35.194582745870036, 32.241250778834171 ], [ 35.194666666666706, 32.241416666666737 ], [ 35.19475, 32.241416666666737 ], [ 35.19475, 32.241333333333387 ], [ 35.194833333333349, 32.241333333333387 ], [ 35.194910113016761, 32.241226208369028 ], [ 35.195451459248943, 32.241118124961929 ], [ 35.1955, 32.241083333333336 ], [ 35.195583333333389, 32.241083333333336 ], [ 35.195583333333389, 32.241 ], [ 35.1955, 32.241 ], [ 35.1955, 32.240916666666749 ] ] ], [ [ [ 35.194523396809927, 32.241458333333469 ], [ 35.194416666666655, 32.241416666666737 ], [ 35.194416666666655, 32.2415 ], [ 35.194523396809927, 32.241458333333469 ] ] ], [ [ [ 35.183228801727296, 32.241521197954853 ], [ 35.183083333333343, 32.2415 ], [ 35.183083333333343, 32.241666666666788 ], [ 35.18335352834066, 32.241641633669587 ], [ 35.183228801727296, 32.241521197954853 ] ] ], [ [ [ 35.202666666666801, 32.24175 ], [ 35.2025, 32.24175 ], [ 35.2025, 32.241833333333375 ], [ 35.202666666666801, 32.241833333333375 ], [ 35.202666666666801, 32.24175 ] ] ], [ [ [ 35.19591666666679, 32.242 ], [ 35.195809137980177, 32.24180382823954 ], [ 35.195730715433854, 32.241959999402297 ], [ 35.19591666666679, 32.242 ] ] ], [ [ [ 35.194666666666706, 32.242083333333312 ], [ 35.19475, 32.242083333333312 ], [ 35.19475, 32.242 ], [ 35.194666666666706, 32.242 ], [ 35.194666666666706, 32.242083333333312 ] ] ], [ [ [ 35.19207671356213, 32.241667670567949 ], [ 35.192, 32.2415 ], [ 35.191864349365346, 32.241531015714088 ], [ 35.191802317301551, 32.241718984286024 ], [ 35.191664911906059, 32.241800442695649 ], [ 35.1915523173015, 32.242128315925697 ], [ 35.191841453552229, 32.242162505467718 ], [ 35.19207671356213, 32.241667670567949 ] ] ], [ [ [ 35.183695691426635, 32.242287243843123 ], [ 35.1835, 32.242166666666776 ], [ 35.1835, 32.242333333333363 ], [ 35.183695691426635, 32.242287243843123 ] ] ], [ [ [ 35.201804807027315, 32.242351601918585 ], [ 35.201833333333411, 32.24225 ], [ 35.201731730143365, 32.242278527577696 ], [ 35.201804807027315, 32.242351601918585 ] ] ], [ [ [ 35.189221472422275, 32.242434935251879 ], [ 35.18925, 32.242333333333363 ], [ 35.189148398081556, 32.242361860910989 ], [ 35.189221472422275, 32.242434935251879 ] ] ], [ [ [ 35.185993394215927, 32.242445174535078 ], [ 35.185916666666799, 32.24225 ], [ 35.185797031402615, 32.242342343330392 ], [ 35.185993394215927, 32.242445174535078 ] ] ], [ [ [ 35.189, 32.242666666666764 ], [ 35.188958333333403, 32.242559935251961 ], [ 35.188916666666671, 32.242666666666764 ], [ 35.189, 32.242666666666764 ] ] ], [ [ [ 35.202, 32.242666666666764 ], [ 35.202138671875048, 32.242638671875 ], [ 35.202250000000106, 32.242583333333471 ], [ 35.202250000000106, 32.242416666666657 ], [ 35.202032819112276, 32.242308711051919 ], [ 35.202, 32.242666666666764 ] ] ], [ [ [ 35.200749994913735, 32.242582362175028 ], [ 35.200537928263259, 32.242478794097849 ], [ 35.2005, 32.242666666666764 ], [ 35.200666666666677, 32.24275 ], [ 35.200749994913735, 32.242582362175028 ] ] ], [ [ [ 35.202, 32.242666666666764 ], [ 35.201916666666705, 32.242666666666764 ], [ 35.201916666666705, 32.24275 ], [ 35.202, 32.24275 ], [ 35.202, 32.242666666666764 ] ] ], [ [ [ 35.200166666666689, 32.242833333333351 ], [ 35.200166666666689, 32.24275 ], [ 35.20025, 32.24275 ], [ 35.200175829569503, 32.24263414065058 ], [ 35.200056950887131, 32.24276309458412 ], [ 35.200166666666689, 32.242833333333351 ] ] ], [ [ [ 35.19475, 32.242916666666815 ], [ 35.194666666666706, 32.242800399144471 ], [ 35.194583333333412, 32.242916666666815 ], [ 35.19475, 32.242916666666815 ] ] ], [ [ [ 35.194666666666706, 32.242083333333312 ], [ 35.193890988667931, 32.242162455558855 ], [ 35.19378640238449, 32.242396842320773 ], [ 35.193621899922675, 32.242538567861061 ], [ 35.193500918070583, 32.242678994178902 ], [ 35.193671262105283, 32.242825755119384 ], [ 35.193980176289813, 32.24296359793351 ], [ 35.194083333333253, 32.243083333333459 ], [ 35.194166666666774, 32.243083333333459 ], [ 35.194166666666774, 32.243166666666752 ], [ 35.194333333333361, 32.243166666666752 ], [ 35.194140103658071, 32.242874261220379 ], [ 35.194500000000119, 32.242833333333351 ], [ 35.194638270060238, 32.242633069674184 ], [ 35.194916666666643, 32.24275 ], [ 35.19525, 32.2425 ], [ 35.19522200520845, 32.242444661458421 ], [ 35.195055989583409, 32.242360677083411 ], [ 35.195000000000107, 32.24225 ], [ 35.194916666666643, 32.24225 ], [ 35.194666666666706, 32.24225 ], [ 35.194666666666706, 32.242083333333312 ] ], [ [ 35.19475, 32.242416666666657 ], [ 35.194721473693903, 32.242518268585172 ], [ 35.19464839681001, 32.24244519424451 ], [ 35.19475, 32.242416666666657 ] ], [ [ 35.19425, 32.242666666666764 ], [ 35.194221473693915, 32.24276826858528 ], [ 35.194148396810021, 32.242695194244391 ], [ 35.19425, 32.242666666666764 ] ] ], [ [ [ 35.192166666666651, 32.243333333333339 ], [ 35.192138140360555, 32.243231731414824 ], [ 35.192065063476605, 32.243304805914704 ], [ 35.192166666666651, 32.243333333333339 ] ] ], [ [ [ 35.199000000000126, 32.24325 ], [ 35.198916666666662, 32.24325 ], [ 35.198958333333394, 32.243356731414849 ], [ 35.199000000000126, 32.24325 ] ] ], [ [ [ 35.200416666666797, 32.243416666666803 ], [ 35.200416666666797, 32.243333333333339 ], [ 35.200666666666677, 32.243333333333339 ], [ 35.200786572774291, 32.243006814638761 ], [ 35.200465171814074, 32.242827492714014 ], [ 35.200333333333276, 32.243416666666803 ], [ 35.200416666666797, 32.243416666666803 ] ] ], [ [ [ 35.197388140360601, 32.243434935251855 ], [ 35.197416666666697, 32.243333333333339 ], [ 35.197315063476481, 32.243361860752145 ], [ 35.197388140360601, 32.243434935251855 ] ] ], [ [ [ 35.196971473693907, 32.243768268585256 ], [ 35.197, 32.243666666666741 ], [ 35.196898396810013, 32.243695194085547 ], [ 35.196971473693907, 32.243768268585256 ] ] ], [ [ [ 35.197221473693844, 32.243768268585256 ], [ 35.197250000000111, 32.243666666666741 ], [ 35.197148396809894, 32.243695194085547 ], [ 35.197221473693844, 32.243768268585256 ] ] ], [ [ [ 35.197454719543487, 32.243772475878416 ], [ 35.1975, 32.243666666666741 ], [ 35.197308359782028, 32.243700444221531 ], [ 35.197454719543487, 32.243772475878416 ] ] ], [ [ [ 35.183971472422343, 32.244184935251894 ], [ 35.184, 32.244083333333379 ], [ 35.183898398081453, 32.244111860752241 ], [ 35.183971472422343, 32.244184935251894 ] ] ], [ [ [ 35.195243392944292, 32.244861841201896 ], [ 35.195166666666694, 32.24466666666666 ], [ 35.195047030131036, 32.244759009838162 ], [ 35.195243392944292, 32.244861841201896 ] ] ], [ [ [ 35.190916666666794, 32.24475 ], [ 35.190666666666687, 32.24475 ], [ 35.190666666666687, 32.244833333333474 ], [ 35.190805338541736, 32.244861328125012 ], [ 35.190916666666794, 32.244916666666768 ], [ 35.190916666666794, 32.24475 ] ] ], [ [ [ 35.194228802998907, 32.244771197954833 ], [ 35.194083333333253, 32.24475 ], [ 35.194000000000131, 32.244916666666768 ], [ 35.194354520161994, 32.244892590363861 ], [ 35.194228802998907, 32.244771197954833 ] ] ], [ [ [ 35.193916666666667, 32.244916666666768 ], [ 35.193843599955244, 32.244802533070299 ], [ 35.193583333333265, 32.244916666666768 ], [ 35.193631665547798, 32.244986668904744 ], [ 35.193916666666667, 32.244916666666768 ] ] ], [ [ [ 35.195079513549786, 32.245010834217112 ], [ 35.195000000000107, 32.244833333333474 ], [ 35.194801561991312, 32.244955602884374 ], [ 35.195079513549786, 32.245010834217112 ] ] ], [ [ [ 35.194833333333349, 32.245166666666819 ], [ 35.194833333333349, 32.245083333333355 ], [ 35.194639635721956, 32.245125 ], [ 35.194833333333349, 32.245166666666819 ] ] ], [ [ [ 35.194554807027316, 32.245268268624955 ], [ 35.194583333333412, 32.245166666666819 ], [ 35.194481730143195, 32.245195194085511 ], [ 35.194554807027316, 32.245268268624955 ] ] ], [ [ [ 35.192166666666651, 32.243333333333339 ], [ 35.192379608154397, 32.243620390574222 ], [ 35.192453725179064, 32.243820259253198 ], [ 35.192209879557311, 32.2440155266126 ], [ 35.19211108144134, 32.244361080805504 ], [ 35.191641606648773, 32.244495310624416 ], [ 35.191066879272512, 32.24483315102259 ], [ 35.191, 32.244916666666768 ], [ 35.191166666666675, 32.245 ], [ 35.191208333333407, 32.244893268664669 ], [ 35.19125, 32.245 ], [ 35.191672317504867, 32.245166022102069 ], [ 35.192166666666651, 32.24525 ], [ 35.192346071879115, 32.245160821358411 ], [ 35.192570594787639, 32.2453391786417 ], [ 35.192750000000103, 32.24525 ], [ 35.192712239583443, 32.245056726058408 ], [ 35.192472760518399, 32.24518356347096 ], [ 35.192527239481649, 32.244360572973903 ], [ 35.192583333333346, 32.244333333333316 ], [ 35.192583333333346, 32.24425 ], [ 35.192833333333397, 32.24425 ], [ 35.192833333333397, 32.244333333333316 ], [ 35.192946627299079, 32.244245885372266 ], [ 35.192969256083245, 32.24409276024511 ], [ 35.192760729471843, 32.2438226041794 ], [ 35.19261963653571, 32.243713697910323 ], [ 35.192486175537226, 32.243387609958688 ], [ 35.192166666666651, 32.243333333333339 ] ], [ [ 35.191666666666663, 32.24466666666666 ], [ 35.191633288065646, 32.24485604445141 ], [ 35.191558359781936, 32.244713015 ], [ 35.191666666666663, 32.24466666666666 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Id": 4, "luf": "Commercial Areas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.239916666666716, 32.183833333333439 ], [ 35.239875, 32.183726603190166 ], [ 35.239833333333422, 32.183833333333439 ], [ 35.239916666666716, 32.183833333333439 ] ] ], [ [ [ 35.239583333333314, 32.183916666666732 ], [ 35.239750000000129, 32.183916666666732 ], [ 35.239750000000129, 32.183833333333439 ], [ 35.239583333333314, 32.183833333333439 ], [ 35.239583333333314, 32.183916666666732 ] ] ], [ [ [ 35.239583333333314, 32.183916666666732 ], [ 35.239155939737941, 32.183989273071404 ], [ 35.239083333333326, 32.184083333333376 ], [ 35.239382629394527, 32.184049296061175 ], [ 35.239583333333314, 32.184 ], [ 35.239583333333314, 32.183916666666732 ] ] ], [ [ [ 35.239, 32.184083333333376 ], [ 35.238833333333446, 32.184083333333376 ], [ 35.238833333333446, 32.18416666666667 ], [ 35.239, 32.18416666666667 ], [ 35.239, 32.184083333333376 ] ] ], [ [ [ 35.23875, 32.18416666666667 ], [ 35.2385, 32.18416666666667 ], [ 35.2385, 32.184250000000134 ], [ 35.238666666666688, 32.184250000000134 ], [ 35.23875, 32.184250000000134 ], [ 35.23875, 32.18416666666667 ] ] ], [ [ [ 35.23825, 32.184250000000134 ], [ 35.238083333333407, 32.184250000000134 ], [ 35.238083333333407, 32.184333333333427 ], [ 35.23825, 32.184333333333427 ], [ 35.23825, 32.184250000000134 ] ] ], [ [ [ 35.237916666666763, 32.184333333333427 ], [ 35.237833333333469, 32.184333333333427 ], [ 35.237833333333469, 32.184416666666721 ], [ 35.237916666666763, 32.184416666666721 ], [ 35.237916666666763, 32.184333333333427 ] ] ], [ [ [ 35.23775, 32.184416666666721 ], [ 35.237666666666712, 32.184416666666721 ], [ 35.237666666666712, 32.1845 ], [ 35.23775, 32.1845 ], [ 35.23775, 32.184416666666721 ] ] ], [ [ [ 35.23708333333343, 32.184583333333364 ], [ 35.237166666666724, 32.184583333333364 ], [ 35.237166666666724, 32.1845 ], [ 35.23708333333343, 32.1845 ], [ 35.23708333333343, 32.184583333333364 ] ] ], [ [ [ 35.23708333333343, 32.184583333333364 ], [ 35.23675, 32.184583333333364 ], [ 35.23675, 32.184666666666658 ], [ 35.23708333333343, 32.184666666666658 ], [ 35.23708333333343, 32.184583333333364 ] ] ], [ [ [ 35.236583333333442, 32.184666666666658 ], [ 35.2365, 32.184666666666658 ], [ 35.2365, 32.184750000000122 ], [ 35.236583333333442, 32.184750000000122 ], [ 35.236583333333442, 32.184666666666658 ] ] ], [ [ [ 35.235833333333403, 32.184916666666709 ], [ 35.235916666666697, 32.184916666666709 ], [ 35.235916666666697, 32.184833333333415 ], [ 35.235833333333403, 32.184833333333415 ], [ 35.235833333333403, 32.184916666666709 ] ] ], [ [ [ 35.235833333333403, 32.184916666666709 ], [ 35.235583333333466, 32.184916666666709 ], [ 35.235583333333466, 32.185 ], [ 35.235833333333403, 32.185 ], [ 35.235833333333403, 32.184916666666709 ] ] ], [ [ [ 35.235416666666708, 32.185 ], [ 35.235333333333415, 32.185 ], [ 35.235333333333415, 32.185083333333296 ], [ 35.235416666666708, 32.185083333333296 ], [ 35.235416666666708, 32.185 ] ] ], [ [ [ 35.234666666666612, 32.185416666666697 ], [ 35.235, 32.185416666666697 ], [ 35.235166666666601, 32.185166666666646 ], [ 35.234813298543429, 32.185226694742823 ], [ 35.234666666666612, 32.185416666666697 ] ] ], [ [ [ 35.234666666666612, 32.185416666666697 ], [ 35.234370056152329, 32.185492787679152 ], [ 35.23425, 32.185666666666805 ], [ 35.234472005208318, 32.18563867187504 ], [ 35.234583333333319, 32.185583333333284 ], [ 35.234666666666612, 32.185416666666697 ] ] ], [ [ [ 35.23425, 32.185666666666805 ], [ 35.234083333333331, 32.185666666666805 ], [ 35.234083333333331, 32.18575 ], [ 35.23425, 32.18575 ], [ 35.23425, 32.185666666666805 ] ] ], [ [ [ 35.234083333333331, 32.18575 ], [ 35.234, 32.18575 ], [ 35.234, 32.185833333333392 ], [ 35.234083333333331, 32.185833333333392 ], [ 35.234083333333331, 32.18575 ] ] ], [ [ [ 35.23383333333345, 32.185916666666685 ], [ 35.233916666666744, 32.185916666666685 ], [ 35.233916666666744, 32.185833333333392 ], [ 35.23383333333345, 32.185833333333392 ], [ 35.23383333333345, 32.185916666666685 ] ] ], [ [ [ 35.23383333333345, 32.185916666666685 ], [ 35.233636144002276, 32.186052810669082 ], [ 35.2335, 32.18625 ], [ 35.233765258789049, 32.186181925455855 ], [ 35.23383333333345, 32.185916666666685 ] ] ], [ [ [ 35.2335, 32.18625 ], [ 35.233416666666756, 32.18625 ], [ 35.233416666666756, 32.18633333333338 ], [ 35.2335, 32.18633333333338 ], [ 35.2335, 32.18625 ] ] ], [ [ [ 35.233416666666756, 32.18633333333338 ], [ 35.233333333333462, 32.18633333333338 ], [ 35.233333333333462, 32.186416666666673 ], [ 35.233416666666756, 32.186416666666673 ], [ 35.233416666666756, 32.18633333333338 ] ] ], [ [ [ 35.233333333333462, 32.186416666666673 ], [ 35.23325, 32.186416666666673 ], [ 35.23325, 32.186500000000137 ], [ 35.233333333333462, 32.186500000000137 ], [ 35.233333333333462, 32.186416666666673 ] ] ], [ [ [ 35.23325, 32.186500000000137 ], [ 35.233166666666705, 32.186500000000137 ], [ 35.233166666666705, 32.186583333333431 ], [ 35.23325, 32.186583333333431 ], [ 35.23325, 32.186500000000137 ] ] ], [ [ [ 35.232666666666717, 32.187000000000126 ], [ 35.232833333333474, 32.187000000000126 ], [ 35.232833333333474, 32.186916666666662 ], [ 35.232666666666717, 32.186916666666662 ], [ 35.232666666666717, 32.187000000000126 ] ] ], [ [ [ 35.232666666666717, 32.187000000000126 ], [ 35.232583333333423, 32.187000000000126 ], [ 35.232583333333423, 32.187083333333419 ], [ 35.232666666666717, 32.187083333333419 ], [ 35.232666666666717, 32.187000000000126 ] ] ], [ [ [ 35.232583333333423, 32.187083333333419 ], [ 35.232386144002248, 32.187219477335645 ], [ 35.23225, 32.18741666666665 ], [ 35.232382629394635, 32.187382629394619 ], [ 35.232583333333423, 32.18725 ], [ 35.232583333333423, 32.187083333333419 ] ] ], [ [ [ 35.23225, 32.18741666666665 ], [ 35.232166666666728, 32.18741666666665 ], [ 35.232166666666728, 32.187500000000114 ], [ 35.23225, 32.187500000000114 ], [ 35.23225, 32.18741666666665 ] ] ], [ [ [ 35.220250000000135, 32.187500000000114 ], [ 35.219916666666734, 32.187500000000114 ], [ 35.219916666666734, 32.187583333333407 ], [ 35.220250000000135, 32.187583333333407 ], [ 35.220250000000135, 32.187500000000114 ] ] ], [ [ [ 35.232166666666728, 32.187500000000114 ], [ 35.232083333333435, 32.187500000000114 ], [ 35.232083333333435, 32.187583333333407 ], [ 35.232166666666728, 32.187583333333407 ], [ 35.232166666666728, 32.187500000000114 ] ] ], [ [ [ 35.232083333333435, 32.187583333333407 ], [ 35.232, 32.187583333333407 ], [ 35.232, 32.187666666666701 ], [ 35.232083333333435, 32.187666666666701 ], [ 35.232083333333435, 32.187583333333407 ] ] ], [ [ [ 35.232, 32.187666666666701 ], [ 35.231916666666677, 32.187666666666701 ], [ 35.231916666666677, 32.18775 ], [ 35.232, 32.18775 ], [ 35.232, 32.187666666666701 ] ] ], [ [ [ 35.23166666666674, 32.188000000000102 ], [ 35.231833333333327, 32.188000000000102 ], [ 35.231833333333327, 32.187833333333288 ], [ 35.231722656250042, 32.18788932291676 ], [ 35.23166666666674, 32.188000000000102 ] ] ], [ [ [ 35.217333333333386, 32.188083333333395 ], [ 35.2175, 32.188083333333395 ], [ 35.2175, 32.188000000000102 ], [ 35.217333333333386, 32.188000000000102 ], [ 35.217333333333386, 32.188083333333395 ] ] ], [ [ [ 35.217333333333386, 32.188083333333395 ], [ 35.217, 32.188083333333395 ], [ 35.217, 32.188166666666689 ], [ 35.217333333333386, 32.188166666666689 ], [ 35.217333333333386, 32.188083333333395 ] ] ], [ [ [ 35.23166666666674, 32.188000000000102 ], [ 35.231555989583455, 32.188055989583347 ], [ 35.2315, 32.188166666666689 ], [ 35.23166666666674, 32.188166666666689 ], [ 35.23166666666674, 32.188000000000102 ] ] ], [ [ [ 35.217, 32.188166666666689 ], [ 35.21658333333329, 32.188166666666689 ], [ 35.21658333333329, 32.18825 ], [ 35.217, 32.18825 ], [ 35.217, 32.188166666666689 ] ] ], [ [ [ 35.223916666666753, 32.188166666666689 ], [ 35.223833333333459, 32.188166666666689 ], [ 35.223833333333459, 32.18825 ], [ 35.223916666666753, 32.18825 ], [ 35.223916666666753, 32.188166666666689 ] ] ], [ [ [ 35.231333333333396, 32.18825 ], [ 35.231416666666689, 32.18825 ], [ 35.231416666666689, 32.188166666666689 ], [ 35.231333333333396, 32.188166666666689 ], [ 35.231333333333396, 32.18825 ] ] ], [ [ [ 35.231333333333396, 32.18825 ], [ 35.23125, 32.18825 ], [ 35.23125, 32.188333333333446 ], [ 35.231333333333396, 32.188333333333446 ], [ 35.231333333333396, 32.18825 ] ] ], [ [ [ 35.23125, 32.188333333333446 ], [ 35.231083333333459, 32.188333333333446 ], [ 35.231083333333459, 32.18841666666674 ], [ 35.23125, 32.18841666666674 ], [ 35.23125, 32.188333333333446 ] ] ], [ [ [ 35.230833333333408, 32.188583333333384 ], [ 35.230916666666701, 32.188583333333384 ], [ 35.230916666666701, 32.1885 ], [ 35.230833333333408, 32.1885 ], [ 35.230833333333408, 32.188583333333384 ] ] ], [ [ [ 35.215, 32.188583333333384 ], [ 35.214833333333445, 32.188583333333384 ], [ 35.214833333333445, 32.188666666666677 ], [ 35.215, 32.188666666666677 ], [ 35.215, 32.188583333333384 ] ] ], [ [ [ 35.214583333333394, 32.188666666666677 ], [ 35.214416666666807, 32.188666666666677 ], [ 35.214416666666807, 32.188750000000141 ], [ 35.214583333333394, 32.188750000000141 ], [ 35.214583333333394, 32.188666666666677 ] ] ], [ [ [ 35.237849685668948, 32.188723042805975 ], [ 35.237614852905267, 32.188490936279436 ], [ 35.237583333333419, 32.188583333333384 ], [ 35.237583333333419, 32.188666666666677 ], [ 35.237500000000125, 32.188666666666677 ], [ 35.237535659790069, 32.188771199544306 ], [ 35.237849685668948, 32.188723042805975 ] ] ], [ [ [ 35.21375, 32.188833333333434 ], [ 35.213666666666711, 32.188833333333434 ], [ 35.213666666666711, 32.188916666666728 ], [ 35.21375, 32.188916666666728 ], [ 35.21375, 32.188833333333434 ] ] ], [ [ [ 35.22975, 32.189 ], [ 35.229583333333323, 32.189 ], [ 35.229583333333323, 32.189083333333372 ], [ 35.229666666666674, 32.189083333333372 ], [ 35.22975, 32.189083333333372 ], [ 35.22975, 32.189 ] ] ], [ [ [ 35.230666666666593, 32.188833333333434 ], [ 35.230565063476547, 32.188804804484107 ], [ 35.230638137817436, 32.188731730143218 ], [ 35.230666666666593, 32.188833333333434 ], [ 35.230750000000114, 32.188833333333434 ], [ 35.230805338541643, 32.188722005208433 ], [ 35.230833333333408, 32.188583333333384 ], [ 35.230704477946063, 32.188621144612625 ], [ 35.229971898396855, 32.188933512369886 ], [ 35.229916666666725, 32.189 ], [ 35.230210535685273, 32.188951726277764 ], [ 35.230333333333419, 32.189 ], [ 35.230416666666713, 32.189 ], [ 35.2306975606283, 32.189115427653064 ], [ 35.230750000000114, 32.188916666666728 ], [ 35.230666666666593, 32.188916666666728 ], [ 35.230666666666593, 32.188833333333434 ] ] ], [ [ [ 35.2295, 32.189083333333372 ], [ 35.22925, 32.189083333333372 ], [ 35.22925, 32.189166666666665 ], [ 35.2295, 32.189166666666665 ], [ 35.2295, 32.189083333333372 ] ] ], [ [ [ 35.212666666666735, 32.189250000000129 ], [ 35.212666666666735, 32.189083333333372 ], [ 35.212555338541733, 32.189138671875071 ], [ 35.212277994791634, 32.189194661458373 ], [ 35.21225, 32.189250000000129 ], [ 35.212666666666735, 32.189250000000129 ] ] ], [ [ [ 35.229, 32.189166666666665 ], [ 35.228666666666697, 32.189166666666665 ], [ 35.228666666666697, 32.189250000000129 ], [ 35.228916666666748, 32.189250000000129 ], [ 35.229, 32.189250000000129 ], [ 35.229, 32.189166666666665 ] ] ], [ [ [ 35.212166666666803, 32.189250000000129 ], [ 35.211833333333402, 32.189250000000129 ], [ 35.211833333333402, 32.189333333333423 ], [ 35.212166666666803, 32.189333333333423 ], [ 35.212166666666803, 32.189250000000129 ] ] ], [ [ [ 35.23166666666674, 32.189166666666665 ], [ 35.231583333333447, 32.189166666666665 ], [ 35.231629887898805, 32.189348073323629 ], [ 35.231857045491608, 32.189398996988928 ], [ 35.231916666666677, 32.189166666666665 ], [ 35.23166666666674, 32.189166666666665 ] ] ], [ [ [ 35.228166666666709, 32.189166666666665 ], [ 35.227287058512388, 32.189129608154303 ], [ 35.226529271443724, 32.188986704508579 ], [ 35.225629608154293, 32.188703725179039 ], [ 35.224333333333448, 32.188333333333446 ], [ 35.224333333333448, 32.18841666666674 ], [ 35.224416666666741, 32.18841666666674 ], [ 35.224416666666741, 32.1885 ], [ 35.224638671875084, 32.188527994791798 ], [ 35.224916666666729, 32.188666666666677 ], [ 35.224951624552375, 32.188609934488966 ], [ 35.225214060465589, 32.188691675821929 ], [ 35.225250000000131, 32.188750000000141 ], [ 35.225360677083415, 32.188805989583443 ], [ 35.225416666666717, 32.188916666666728 ], [ 35.225597345987978, 32.188840779622524 ], [ 35.22607278442382, 32.188947362264116 ], [ 35.226166666666586, 32.189083333333372 ], [ 35.22628988647466, 32.189028132120882 ], [ 35.22654739379891, 32.189108342488623 ], [ 35.226583333333451, 32.189166666666665 ], [ 35.226710032145263, 32.189113449096737 ], [ 35.226916666666682, 32.189250000000129 ], [ 35.226997233073007, 32.189156489054483 ], [ 35.227583333333428, 32.189416666666716 ], [ 35.227618123372338, 32.18936812337239 ], [ 35.228090092976913, 32.189273503621564 ], [ 35.228166666666709, 32.189166666666665 ] ] ], [ [ [ 35.211250000000121, 32.189416666666716 ], [ 35.211166666666657, 32.189416666666716 ], [ 35.211166666666657, 32.1895 ], [ 35.211250000000121, 32.1895 ], [ 35.211250000000121, 32.189416666666716 ] ] ], [ [ [ 35.211, 32.1895 ], [ 35.210750000000132, 32.1895 ], [ 35.210750000000132, 32.189583333333303 ], [ 35.211, 32.189583333333303 ], [ 35.211, 32.1895 ] ] ], [ [ [ 35.2105, 32.189583333333303 ], [ 35.210416666666731, 32.189583333333303 ], [ 35.210416666666731, 32.189666666666653 ], [ 35.2105, 32.189666666666653 ], [ 35.2105, 32.189583333333303 ] ] ], [ [ [ 35.209666666666692, 32.189833333333411 ], [ 35.210083333333387, 32.189833333333411 ], [ 35.210083333333387, 32.189666666666653 ], [ 35.209972005208328, 32.189722005208353 ], [ 35.2096946614584, 32.189777994791655 ], [ 35.209666666666692, 32.189833333333411 ] ] ], [ [ [ 35.209666666666692, 32.189833333333411 ], [ 35.209333333333291, 32.189833333333411 ], [ 35.209333333333291, 32.189916666666704 ], [ 35.209666666666692, 32.189916666666704 ], [ 35.209666666666692, 32.189833333333411 ] ] ], [ [ [ 35.20908333333341, 32.189916666666704 ], [ 35.208916666666653, 32.189916666666704 ], [ 35.208916666666653, 32.19 ], [ 35.20908333333341, 32.19 ], [ 35.20908333333341, 32.189916666666704 ] ] ], [ [ [ 35.208666666666716, 32.19 ], [ 35.208583333333422, 32.19 ], [ 35.208583333333422, 32.190083333333291 ], [ 35.208666666666716, 32.190083333333291 ], [ 35.208666666666716, 32.19 ] ] ], [ [ [ 35.208416666666665, 32.190083333333291 ], [ 35.208333333333371, 32.190083333333291 ], [ 35.208333333333371, 32.190166666666585 ], [ 35.208416666666665, 32.190166666666585 ], [ 35.208416666666665, 32.190083333333291 ] ] ], [ [ [ 35.207916666666677, 32.190166666666585 ], [ 35.207833333333383, 32.190166666666585 ], [ 35.207833333333383, 32.190250000000106 ], [ 35.207916666666677, 32.190250000000106 ], [ 35.207916666666677, 32.190166666666585 ] ] ], [ [ [ 35.206833333333407, 32.1905 ], [ 35.207315444946289, 32.19045082092299 ], [ 35.207416666666688, 32.190333333333399 ], [ 35.206893361409584, 32.190422231038383 ], [ 35.206833333333407, 32.1905 ] ] ], [ [ [ 35.206833333333407, 32.1905 ], [ 35.206583333333356, 32.1905 ], [ 35.206583333333356, 32.19058333333345 ], [ 35.206833333333407, 32.19058333333345 ], [ 35.206833333333407, 32.1905 ] ] ], [ [ [ 35.206416666666712, 32.19058333333345 ], [ 35.206166666666661, 32.19058333333345 ], [ 35.206166666666661, 32.190666666666743 ], [ 35.206416666666712, 32.190666666666743 ], [ 35.206416666666712, 32.19058333333345 ] ] ], [ [ [ 35.205916666666724, 32.190666666666743 ], [ 35.205750000000137, 32.190666666666743 ], [ 35.205750000000137, 32.19075 ], [ 35.205916666666724, 32.19075 ], [ 35.205916666666724, 32.190666666666743 ] ] ], [ [ [ 35.205, 32.190916666666681 ], [ 35.204666666666697, 32.190916666666681 ], [ 35.204666666666697, 32.191000000000145 ], [ 35.205, 32.191000000000145 ], [ 35.205, 32.190916666666681 ] ] ], [ [ [ 35.204333333333352, 32.191083333333438 ], [ 35.204583333333403, 32.191083333333438 ], [ 35.204583333333403, 32.191000000000145 ], [ 35.204333333333352, 32.191000000000145 ], [ 35.204333333333352, 32.191083333333438 ] ] ], [ [ [ 35.196833333333416, 32.191166666666732 ], [ 35.196666666666658, 32.191166666666732 ], [ 35.196666666666658, 32.19125 ], [ 35.196833333333416, 32.19125 ], [ 35.196833333333416, 32.191166666666732 ] ] ], [ [ [ 35.197083333333353, 32.191166666666732 ], [ 35.197, 32.191166666666732 ], [ 35.197, 32.19125 ], [ 35.197083333333353, 32.19125 ], [ 35.197083333333353, 32.191166666666732 ] ] ], [ [ [ 35.197916666666686, 32.191166666666732 ], [ 35.197833333333392, 32.191166666666732 ], [ 35.197833333333392, 32.19125 ], [ 35.197916666666686, 32.19125 ], [ 35.197916666666686, 32.191166666666732 ] ] ], [ [ [ 35.198083333333273, 32.191166666666732 ], [ 35.198, 32.191166666666732 ], [ 35.198, 32.19125 ], [ 35.198083333333273, 32.19125 ], [ 35.198083333333273, 32.191166666666732 ] ] ], [ [ [ 35.1985, 32.191166666666732 ], [ 35.198166666666793, 32.191166666666732 ], [ 35.198166666666793, 32.19125 ], [ 35.1985, 32.19125 ], [ 35.1985, 32.191166666666732 ] ] ], [ [ [ 35.20375, 32.191166666666732 ], [ 35.203583333333427, 32.191166666666732 ], [ 35.203583333333427, 32.19125 ], [ 35.20366666666672, 32.19125 ], [ 35.20375, 32.19125 ], [ 35.20375, 32.191166666666732 ] ] ], [ [ [ 35.204333333333352, 32.191083333333438 ], [ 35.204000000000121, 32.191083333333438 ], [ 35.204000000000121, 32.191166666666732 ], [ 35.204083333333415, 32.191166666666732 ], [ 35.204083333333415, 32.19125 ], [ 35.204305338541758, 32.191138671875024 ], [ 35.204333333333352, 32.191083333333438 ] ] ], [ [ [ 35.239583333333314, 32.191166666666732 ], [ 35.239333333333434, 32.191166666666732 ], [ 35.239333333333434, 32.19125 ], [ 35.239689641316716, 32.191218292236329 ], [ 35.239583333333314, 32.191166666666732 ] ] ], [ [ [ 35.196250000000134, 32.191333333333375 ], [ 35.19616666666667, 32.191166666666732 ], [ 35.195739270528293, 32.191239273071346 ], [ 35.195666666666682, 32.191333333333375 ], [ 35.196250000000134, 32.191333333333375 ] ] ], [ [ [ 35.198666666666782, 32.19125 ], [ 35.198583333333261, 32.19125 ], [ 35.198583333333261, 32.191333333333375 ], [ 35.198666666666782, 32.191333333333375 ], [ 35.198666666666782, 32.19125 ] ] ], [ [ [ 35.199500000000114, 32.191333333333375 ], [ 35.199500000000114, 32.19125 ], [ 35.198916666666662, 32.19125 ], [ 35.198916666666662, 32.191333333333375 ], [ 35.199500000000114, 32.191333333333375 ] ] ], [ [ [ 35.203416666666669, 32.19125 ], [ 35.20325, 32.19125 ], [ 35.20325, 32.191333333333375 ], [ 35.203416666666669, 32.191333333333375 ], [ 35.203416666666669, 32.19125 ] ] ], [ [ [ 35.1955, 32.191333333333375 ], [ 35.195416666666802, 32.191333333333375 ], [ 35.195416666666802, 32.191416666666669 ], [ 35.1955, 32.191416666666669 ], [ 35.1955, 32.191333333333375 ] ] ], [ [ [ 35.203083333333268, 32.191333333333375 ], [ 35.202833333333388, 32.191333333333375 ], [ 35.202833333333388, 32.191416666666669 ], [ 35.203, 32.191500000000133 ], [ 35.203083333333268, 32.191333333333375 ] ] ], [ [ [ 35.199500000000114, 32.191333333333375 ], [ 35.199538892110297, 32.191389663696327 ], [ 35.199794563293494, 32.191556152343878 ], [ 35.199867370605546, 32.19145070393887 ], [ 35.200416666666797, 32.191416666666669 ], [ 35.200416666666797, 32.191333333333375 ], [ 35.199500000000114, 32.191333333333375 ] ] ], [ [ [ 35.201411834716794, 32.191604461670011 ], [ 35.202086608886646, 32.191520528157639 ], [ 35.202250000000106, 32.191583333333426 ], [ 35.202250000000106, 32.191500000000133 ], [ 35.2025, 32.191500000000133 ], [ 35.2025, 32.191416666666669 ], [ 35.200583333333384, 32.191416666666669 ], [ 35.200617370605585, 32.191465962727932 ], [ 35.201215962727929, 32.191617370605456 ], [ 35.20125000000013, 32.19166666666672 ], [ 35.201411834716794, 32.191604461670011 ] ] ], [ [ [ 35.193916666666667, 32.191833333333307 ], [ 35.193833333333373, 32.191833333333307 ], [ 35.193833333333373, 32.191916666666657 ], [ 35.193916666666667, 32.191916666666657 ], [ 35.193916666666667, 32.191833333333307 ] ] ], [ [ [ 35.193333333333385, 32.192000000000121 ], [ 35.19325, 32.192000000000121 ], [ 35.19325, 32.192083333333414 ], [ 35.193333333333385, 32.192083333333414 ], [ 35.193333333333385, 32.192000000000121 ] ] ], [ [ [ 35.193083333333334, 32.192083333333414 ], [ 35.193, 32.192083333333414 ], [ 35.193, 32.192166666666708 ], [ 35.193083333333334, 32.192166666666708 ], [ 35.193083333333334, 32.192083333333414 ] ] ], [ [ [ 35.241054804484122, 32.192434936523512 ], [ 35.241083333333449, 32.192333333333295 ], [ 35.240981730143233, 32.192361862182622 ], [ 35.241054804484122, 32.192434936523512 ] ] ], [ [ [ 35.192, 32.192500000000109 ], [ 35.191750000000127, 32.192500000000109 ], [ 35.191750000000127, 32.192583333333403 ], [ 35.192, 32.192583333333403 ], [ 35.192, 32.192500000000109 ] ] ], [ [ [ 35.1915, 32.192666666666696 ], [ 35.191666666666663, 32.192666666666696 ], [ 35.191666666666663, 32.192583333333403 ], [ 35.1915, 32.192583333333403 ], [ 35.1915, 32.192666666666696 ] ] ], [ [ [ 35.24, 32.192666666666696 ], [ 35.24, 32.192583333333403 ], [ 35.239916666666716, 32.192583333333403 ], [ 35.239916666666716, 32.192666666666696 ], [ 35.24, 32.192666666666696 ] ] ], [ [ [ 35.1915, 32.192666666666696 ], [ 35.19125, 32.192666666666696 ], [ 35.19125, 32.19275 ], [ 35.1915, 32.19275 ], [ 35.1915, 32.192666666666696 ] ] ], [ [ [ 35.191166666666675, 32.19275 ], [ 35.191, 32.19275 ], [ 35.191, 32.192833333333454 ], [ 35.191166666666675, 32.192833333333454 ], [ 35.191166666666675, 32.19275 ] ] ], [ [ [ 35.19083333333333, 32.192833333333454 ], [ 35.19075, 32.192833333333454 ], [ 35.19075, 32.192916666666747 ], [ 35.19083333333333, 32.192916666666747 ], [ 35.19083333333333, 32.192833333333454 ] ] ], [ [ [ 35.24, 32.192666666666696 ], [ 35.240139404296997, 32.192944661458341 ], [ 35.240138671875059, 32.192694661458404 ], [ 35.24, 32.192666666666696 ] ] ], [ [ [ 35.190333333333342, 32.193 ], [ 35.19025, 32.193 ], [ 35.19025, 32.193083333333391 ], [ 35.190333333333342, 32.193083333333391 ], [ 35.190333333333342, 32.193 ] ] ], [ [ [ 35.18975, 32.193250000000148 ], [ 35.189916666666647, 32.193250000000148 ], [ 35.190000000000111, 32.193250000000148 ], [ 35.190000000000111, 32.193166666666684 ], [ 35.18975, 32.193166666666684 ], [ 35.18975, 32.193250000000148 ] ] ], [ [ [ 35.209260882059709, 32.193214157104592 ], [ 35.209000000000117, 32.193083333333391 ], [ 35.209000000000117, 32.193250000000148 ], [ 35.20908333333341, 32.193250000000148 ], [ 35.209260882059709, 32.193214157104592 ] ] ], [ [ [ 35.18975, 32.193250000000148 ], [ 35.18948473993936, 32.193318074544379 ], [ 35.189416666666659, 32.193416666666735 ], [ 35.189583333333246, 32.193416666666735 ], [ 35.189694010416758, 32.193360677083319 ], [ 35.18975, 32.193250000000148 ] ] ], [ [ [ 35.189333333333366, 32.193416666666735 ], [ 35.18925, 32.193416666666735 ], [ 35.18925, 32.1935 ], [ 35.189333333333366, 32.1935 ], [ 35.189333333333366, 32.193416666666735 ] ] ], [ [ [ 35.189083333333258, 32.193583333333379 ], [ 35.189, 32.193583333333379 ], [ 35.189, 32.193666666666672 ], [ 35.189083333333258, 32.193666666666672 ], [ 35.189083333333258, 32.193583333333379 ] ] ], [ [ [ 35.188833333333378, 32.193750000000136 ], [ 35.188916666666671, 32.193750000000136 ], [ 35.188916666666671, 32.193666666666672 ], [ 35.188833333333378, 32.193666666666672 ], [ 35.188833333333378, 32.193750000000136 ] ] ], [ [ [ 35.188833333333378, 32.193750000000136 ], [ 35.188666666666791, 32.193750000000136 ], [ 35.188666666666791, 32.19383333333343 ], [ 35.188833333333378, 32.19383333333343 ], [ 35.188833333333378, 32.193750000000136 ] ] ], [ [ [ 35.188666666666791, 32.19383333333343 ], [ 35.1885, 32.19383333333343 ], [ 35.1885, 32.193916666666723 ], [ 35.188666666666791, 32.193916666666723 ], [ 35.188666666666791, 32.19383333333343 ] ] ], [ [ [ 35.20745447794593, 32.193856664021951 ], [ 35.207295786539817, 32.193712188720667 ], [ 35.207049102783344, 32.193819010416689 ], [ 35.207166666666808, 32.193916666666723 ], [ 35.207208333333369, 32.193809936523451 ], [ 35.207250000000101, 32.193916666666723 ], [ 35.20745447794593, 32.193856664021951 ] ] ], [ [ [ 35.209583333333399, 32.19408333333331 ], [ 35.209548355102584, 32.193891738891693 ], [ 35.209500000000105, 32.194 ], [ 35.209500000000105, 32.19408333333331 ], [ 35.209583333333399, 32.19408333333331 ] ] ], [ [ [ 35.1885, 32.193916666666723 ], [ 35.188367369333889, 32.193950703938924 ], [ 35.188075354258331, 32.19414085896824 ], [ 35.188, 32.194250000000125 ], [ 35.188279336293476, 32.194202545166092 ], [ 35.1885, 32.193916666666723 ] ] ], [ [ [ 35.203, 32.194250000000125 ], [ 35.202971473693879, 32.194148396809908 ], [ 35.202898396809928, 32.194221471150797 ], [ 35.203, 32.194250000000125 ] ] ], [ [ [ 35.209000000000117, 32.19383333333343 ], [ 35.208782819112059, 32.19372537740071 ], [ 35.20875, 32.19408333333331 ], [ 35.208860677083351, 32.194139322916783 ], [ 35.208916666666653, 32.194250000000125 ], [ 35.20908333333341, 32.194166666666661 ], [ 35.209111328124948, 32.194027994791782 ], [ 35.209166666666704, 32.193916666666723 ], [ 35.209166666666704, 32.19383333333343 ], [ 35.209000000000117, 32.19383333333343 ] ] ], [ [ [ 35.231833333333327, 32.194166666666661 ], [ 35.231774297078516, 32.194054585774666 ], [ 35.231555709838858, 32.194213923136488 ], [ 35.231833333333327, 32.194250000000125 ], [ 35.231833333333327, 32.194166666666661 ] ] ], [ [ [ 35.188, 32.194250000000125 ], [ 35.187916666666695, 32.194250000000125 ], [ 35.187916666666695, 32.194333333333418 ], [ 35.188, 32.194333333333418 ], [ 35.188, 32.194250000000125 ] ] ], [ [ [ 35.203, 32.194250000000125 ], [ 35.203, 32.194333333333418 ], [ 35.203083333333268, 32.194333333333418 ], [ 35.203083333333268, 32.194250000000125 ], [ 35.203, 32.194250000000125 ] ] ], [ [ [ 35.187916666666695, 32.194333333333418 ], [ 35.187833333333401, 32.194333333333418 ], [ 35.187833333333401, 32.194416666666712 ], [ 35.187916666666695, 32.194416666666712 ], [ 35.187916666666695, 32.194333333333418 ] ] ], [ [ [ 35.203083333333268, 32.194333333333418 ], [ 35.203083333333268, 32.194416666666712 ], [ 35.203166666666789, 32.194416666666712 ], [ 35.203166666666789, 32.194333333333418 ], [ 35.203083333333268, 32.194333333333418 ] ] ], [ [ [ 35.207083333333287, 32.194416666666712 ], [ 35.207083333333287, 32.194333333333418 ], [ 35.206976603190185, 32.19437500000015 ], [ 35.207083333333287, 32.194416666666712 ] ] ], [ [ [ 35.187833333333401, 32.194416666666712 ], [ 35.187750000000108, 32.194416666666712 ], [ 35.187750000000108, 32.1945 ], [ 35.187833333333401, 32.1945 ], [ 35.187833333333401, 32.194416666666712 ] ] ], [ [ [ 35.203166666666789, 32.194416666666712 ], [ 35.203195192972885, 32.194518269856758 ], [ 35.203268269856778, 32.194445195516039 ], [ 35.203166666666789, 32.194416666666712 ] ] ], [ [ [ 35.212704722086528, 32.194522476196369 ], [ 35.21275, 32.194416666666712 ], [ 35.212558359781895, 32.194450444539484 ], [ 35.212704722086528, 32.194522476196369 ] ] ], [ [ [ 35.18758333333335, 32.194583333333298 ], [ 35.187666666666644, 32.194583333333298 ], [ 35.187666666666644, 32.1945 ], [ 35.18758333333335, 32.1945 ], [ 35.18758333333335, 32.194583333333298 ] ] ], [ [ [ 35.210193150838336, 32.194448837280277 ], [ 35.21005908203125, 32.194223515828469 ], [ 35.209859817504935, 32.19427648417161 ], [ 35.209833333333279, 32.1945 ], [ 35.21, 32.194583333333298 ], [ 35.210026484171578, 32.194526484171661 ], [ 35.210193150838336, 32.194448837280277 ] ] ], [ [ [ 35.18758333333335, 32.194583333333298 ], [ 35.1875, 32.194583333333298 ], [ 35.1875, 32.194666666666592 ], [ 35.18758333333335, 32.194666666666592 ], [ 35.18758333333335, 32.194583333333298 ] ] ], [ [ [ 35.1875, 32.194666666666592 ], [ 35.187416666666763, 32.194666666666592 ], [ 35.187416666666763, 32.194750000000113 ], [ 35.1875, 32.194750000000113 ], [ 35.1875, 32.194666666666592 ] ] ], [ [ [ 35.20158333333336, 32.194583333333298 ], [ 35.2015, 32.194583333333298 ], [ 35.201378227233931, 32.194688247680745 ], [ 35.20158333333336, 32.194750000000113 ], [ 35.20158333333336, 32.194583333333298 ] ] ], [ [ [ 35.2075, 32.194666666666592 ], [ 35.207416666666688, 32.194666666666592 ], [ 35.207416666666688, 32.194750000000113 ], [ 35.2075, 32.194750000000113 ], [ 35.2075, 32.194666666666592 ] ] ], [ [ [ 35.210388140360635, 32.194851603190159 ], [ 35.210416666666731, 32.194750000000113 ], [ 35.210315063476514, 32.19477852884927 ], [ 35.210388140360635, 32.194851603190159 ] ] ], [ [ [ 35.187416666666763, 32.194750000000113 ], [ 35.187305989583422, 32.194805989583358 ], [ 35.18725000000012, 32.1949166666667 ], [ 35.187416666666763, 32.1949166666667 ], [ 35.187416666666763, 32.194750000000113 ] ] ], [ [ [ 35.202250000000106, 32.195 ], [ 35.202039466857912, 32.19471697489422 ], [ 35.201750000000118, 32.194833333333406 ], [ 35.201750000000118, 32.1949166666667 ], [ 35.201833333333411, 32.1949166666667 ], [ 35.201944661458469, 32.194972005208456 ], [ 35.202250000000106, 32.195 ] ] ], [ [ [ 35.219034037272138, 32.194465962727975 ], [ 35.219000000000108, 32.194416666666712 ], [ 35.21871925354003, 32.194460912068735 ], [ 35.218557225545283, 32.194709732055742 ], [ 35.21900586954763, 32.195001887003627 ], [ 35.219367370605482, 32.194752298990977 ], [ 35.219266860962023, 32.194553080241008 ], [ 35.219034037272138, 32.194465962727975 ] ] ], [ [ [ 35.18725000000012, 32.1949166666667 ], [ 35.18705105463664, 32.194967722574802 ], [ 35.187, 32.195166666666751 ], [ 35.18716601562511, 32.195082682291741 ], [ 35.18725000000012, 32.1949166666667 ] ] ], [ [ [ 35.2069166666667, 32.195083333333457 ], [ 35.2069166666667, 32.195 ], [ 35.206647008260177, 32.195034001668319 ], [ 35.206950078328418, 32.195182017008563 ], [ 35.207, 32.195083333333457 ], [ 35.2069166666667, 32.195083333333457 ] ] ], [ [ [ 35.203833333333364, 32.1949166666667 ], [ 35.203626698811945, 32.194780115763479 ], [ 35.203500000000133, 32.194833333333406 ], [ 35.203527994791671, 32.194888671874992 ], [ 35.203694010416768, 32.194972656250002 ], [ 35.203848475138329, 32.195277994791809 ], [ 35.203983128865616, 32.195216964721737 ], [ 35.203833333333364, 32.1949166666667 ] ] ], [ [ [ 35.187, 32.195166666666751 ], [ 35.186889322916727, 32.195222656250053 ], [ 35.186833333333254, 32.195333333333394 ], [ 35.187, 32.195333333333394 ], [ 35.187, 32.195166666666751 ] ] ], [ [ [ 35.186833333333254, 32.195333333333394 ], [ 35.18675, 32.195333333333394 ], [ 35.18675, 32.195416666666688 ], [ 35.186833333333254, 32.195416666666688 ], [ 35.186833333333254, 32.195333333333394 ] ] ], [ [ [ 35.202166666666642, 32.195166666666751 ], [ 35.202, 32.195166666666751 ], [ 35.201965962727797, 32.1952159627279 ], [ 35.201851175944, 32.195295216878321 ], [ 35.202333333333399, 32.195416666666688 ], [ 35.202333333333399, 32.195333333333394 ], [ 35.202333333333399, 32.195250000000101 ], [ 35.202166666666642, 32.195166666666751 ] ] ], [ [ [ 35.18675, 32.195416666666688 ], [ 35.186666666666667, 32.195416666666688 ], [ 35.186666666666667, 32.195500000000152 ], [ 35.18675, 32.195500000000152 ], [ 35.18675, 32.195416666666688 ] ] ], [ [ [ 35.214333333333286, 32.195416666666688 ], [ 35.21425, 32.195416666666688 ], [ 35.21425, 32.195500000000152 ], [ 35.214333333333286, 32.195500000000152 ], [ 35.214333333333286, 32.195416666666688 ] ] ], [ [ [ 35.211413960774848, 32.195621434529585 ], [ 35.211583333333294, 32.195333333333394 ], [ 35.211293256123952, 32.195388712565091 ], [ 35.211413960774848, 32.195621434529585 ] ] ], [ [ [ 35.186666666666667, 32.195500000000152 ], [ 35.186583333333374, 32.195500000000152 ], [ 35.186583333333374, 32.195666666666739 ], [ 35.186666666666667, 32.195666666666739 ], [ 35.186666666666667, 32.195500000000152 ] ] ], [ [ [ 35.186583333333374, 32.195666666666739 ], [ 35.186472656250032, 32.195722656250041 ], [ 35.186416666666787, 32.195833333333383 ], [ 35.186583333333374, 32.195833333333383 ], [ 35.186583333333374, 32.195666666666739 ] ] ], [ [ [ 35.206250000000125, 32.195583333333445 ], [ 35.206083333333368, 32.195583333333445 ], [ 35.206083333333368, 32.195833333333383 ], [ 35.206250000000125, 32.195833333333383 ], [ 35.206250000000125, 32.195583333333445 ] ] ], [ [ [ 35.230666666666593, 32.195666666666739 ], [ 35.23058333333347, 32.195666666666739 ], [ 35.23058333333347, 32.195833333333383 ], [ 35.230666666666593, 32.195833333333383 ], [ 35.230666666666593, 32.195666666666739 ] ] ], [ [ [ 35.214404398600379, 32.195835861206206 ], [ 35.214333333333286, 32.195666666666739 ], [ 35.214166666666699, 32.195583333333445 ], [ 35.214166666666699, 32.195666666666739 ], [ 35.214083333333406, 32.195666666666739 ], [ 35.214083333333406, 32.19575 ], [ 35.214000000000112, 32.19575 ], [ 35.214000000000112, 32.195916666666676 ], [ 35.214166666666699, 32.195916666666676 ], [ 35.214166666666699, 32.19600000000014 ], [ 35.214404398600379, 32.195835861206206 ] ] ], [ [ [ 35.210391593933196, 32.195964889526294 ], [ 35.21025, 32.195666666666739 ], [ 35.209967473348115, 32.195708923339964 ], [ 35.210196576436431, 32.196032526652061 ], [ 35.210391593933196, 32.195964889526294 ] ] ], [ [ [ 35.204916666666804, 32.196083333333434 ], [ 35.204916666666804, 32.19600000000014 ], [ 35.204833333333283, 32.19600000000014 ], [ 35.204833333333283, 32.196083333333434 ], [ 35.204916666666804, 32.196083333333434 ] ] ], [ [ [ 35.2005, 32.196166666666727 ], [ 35.200416666666797, 32.19605039978029 ], [ 35.200333333333276, 32.196166666666727 ], [ 35.2005, 32.196166666666727 ] ] ], [ [ [ 35.204916666666804, 32.196083333333434 ], [ 35.204916666666804, 32.196166666666727 ], [ 35.205083333333391, 32.196166666666727 ], [ 35.205083333333391, 32.196083333333434 ], [ 35.204916666666804, 32.196083333333434 ] ] ], [ [ [ 35.205983609517489, 32.196134674072368 ], [ 35.205916666666724, 32.19600000000014 ], [ 35.205722005208429, 32.196039296468086 ], [ 35.205809539794927, 32.196194661458264 ], [ 35.205983609517489, 32.196134674072368 ] ] ], [ [ [ 35.186416666666787, 32.195833333333383 ], [ 35.186242785135903, 32.195953389485737 ], [ 35.186166666666679, 32.19625 ], [ 35.186340548197563, 32.196129943847666 ], [ 35.186416666666787, 32.195833333333383 ] ] ], [ [ [ 35.214166666666699, 32.196083333333434 ], [ 35.214000000000112, 32.19600000000014 ], [ 35.213972005208348, 32.196138671875019 ], [ 35.213916666666648, 32.19625 ], [ 35.214166666666699, 32.19625 ], [ 35.214166666666699, 32.196166666666727 ], [ 35.214166666666699, 32.196083333333434 ] ] ], [ [ [ 35.220750000000123, 32.19600000000014 ], [ 35.220477345784445, 32.195892812093234 ], [ 35.220416666666722, 32.19625 ], [ 35.220713277181005, 32.196173878987622 ], [ 35.220833333333417, 32.19600000000014 ], [ 35.220750000000123, 32.19600000000014 ] ] ], [ [ [ 35.186166666666679, 32.196333333333314 ], [ 35.186083333333386, 32.196333333333314 ], [ 35.186083333333386, 32.196416666666664 ], [ 35.186166666666679, 32.196416666666664 ], [ 35.186166666666679, 32.196333333333314 ] ] ], [ [ [ 35.212976684570378, 32.196141504923446 ], [ 35.21275, 32.196083333333434 ], [ 35.21275, 32.196166666666727 ], [ 35.21275, 32.19625 ], [ 35.212895467122507, 32.196271199544356 ], [ 35.213021199544301, 32.1963954671225 ], [ 35.213166666666723, 32.196416666666664 ], [ 35.212976684570378, 32.196141504923446 ] ] ], [ [ [ 35.221353378295873, 32.196339767456095 ], [ 35.221016245524027, 32.196131118774474 ], [ 35.221064839680992, 32.196340916951499 ], [ 35.221166666666591, 32.196416666666664 ], [ 35.221250000000111, 32.196416666666664 ], [ 35.221353378295873, 32.196339767456095 ] ] ], [ [ [ 35.186083333333386, 32.196500000000128 ], [ 35.186, 32.196500000000128 ], [ 35.186, 32.196583333333422 ], [ 35.186083333333386, 32.196583333333422 ], [ 35.186083333333386, 32.196500000000128 ] ] ], [ [ [ 35.207132537841858, 32.196440633138138 ], [ 35.207313542683892, 32.196146876017281 ], [ 35.20754275004083, 32.196005645751939 ], [ 35.207583333333275, 32.195833333333383 ], [ 35.207416666666688, 32.195833333333383 ], [ 35.207333333333395, 32.195833333333383 ], [ 35.207333333333395, 32.19575 ], [ 35.206889597575014, 32.195547948201636 ], [ 35.206833333333407, 32.19575 ], [ 35.207130363464387, 32.195786300659222 ], [ 35.207286303202295, 32.195934453328562 ], [ 35.2069166666667, 32.196083333333434 ], [ 35.206752550760939, 32.196370783487964 ], [ 35.206456286112598, 32.196201100667452 ], [ 35.20637885538747, 32.196346054077253 ], [ 35.206628855387351, 32.196454477946077 ], [ 35.206833333333407, 32.196583333333422 ], [ 35.206865104675217, 32.196531768798934 ], [ 35.207132537841858, 32.196440633138138 ] ] ], [ [ [ 35.218448435465575, 32.196588892618877 ], [ 35.218319498698008, 32.196303878784306 ], [ 35.21825, 32.196416666666664 ], [ 35.21825, 32.196500000000128 ], [ 35.218448435465575, 32.196588892618877 ] ] ], [ [ [ 35.196916666666709, 32.196416666666664 ], [ 35.196833333333416, 32.196416666666664 ], [ 35.196716718037862, 32.196494206746422 ], [ 35.196862617492684, 32.19661661275228 ], [ 35.19710272216804, 32.196463088989333 ], [ 35.196916666666709, 32.196416666666664 ] ] ], [ [ [ 35.21494071451832, 32.196533823649077 ], [ 35.214666666666687, 32.196166666666727 ], [ 35.214555989583346, 32.196222656250029 ], [ 35.2145000000001, 32.196333333333314 ], [ 35.214548634847006, 32.196619633992611 ], [ 35.21494071451832, 32.196533823649077 ] ] ], [ [ [ 35.229888137817397, 32.196768269856761 ], [ 35.229916666666725, 32.196666666666715 ], [ 35.229815063476678, 32.196695195516043 ], [ 35.229888137817397, 32.196768269856761 ] ] ], [ [ [ 35.209721473693889, 32.196934936523519 ], [ 35.20975, 32.196833333333302 ], [ 35.209648396809939, 32.196861862182629 ], [ 35.209721473693889, 32.196934936523519 ] ] ], [ [ [ 35.196666666666658, 32.197000000000116 ], [ 35.196666666666658, 32.196916666666596 ], [ 35.196750000000122, 32.196916666666596 ], [ 35.196750000000122, 32.196666666666715 ], [ 35.196583333333365, 32.196666666666715 ], [ 35.196583333333365, 32.197000000000116 ], [ 35.196666666666658, 32.197000000000116 ] ] ], [ [ [ 35.198416666666674, 32.196916666666596 ], [ 35.19833333333338, 32.196800399780386 ], [ 35.19825, 32.196916666666596 ], [ 35.19825, 32.197000000000116 ], [ 35.198416666666674, 32.196916666666596 ] ] ], [ [ [ 35.212166666666803, 32.196416666666664 ], [ 35.212166666666803, 32.19625 ], [ 35.212032608032359, 32.196076319376743 ], [ 35.211583333333294, 32.19600000000014 ], [ 35.2115, 32.19600000000014 ], [ 35.211554878234949, 32.196368021647231 ], [ 35.211126589457194, 32.196191558837882 ], [ 35.211376589457245, 32.195959920247446 ], [ 35.211416666666707, 32.195916666666676 ], [ 35.211333333333414, 32.195916666666676 ], [ 35.211333333333414, 32.195833333333383 ], [ 35.211125348409041, 32.195782246907584 ], [ 35.210785794575997, 32.195858367920039 ], [ 35.210715962727932, 32.19621596272782 ], [ 35.210617370605576, 32.196367370605515 ], [ 35.210583333333375, 32.196666666666715 ], [ 35.210666666666668, 32.196666666666715 ], [ 35.210666666666668, 32.19675 ], [ 35.2112594401043, 32.196789337158236 ], [ 35.211583333333294, 32.196916666666596 ], [ 35.211916666666696, 32.197000000000116 ], [ 35.211972656249998, 32.196889322916775 ], [ 35.212138671875039, 32.196805338541765 ], [ 35.212166666666803, 32.196416666666664 ] ] ], [ [ [ 35.200000000000102, 32.19708333333341 ], [ 35.19996294148774, 32.197037058512421 ], [ 35.199784136454241, 32.196893870035922 ], [ 35.1998019460043, 32.196750696818071 ], [ 35.199270128885985, 32.19654627482106 ], [ 35.199190155029271, 32.196635533650749 ], [ 35.199703725179063, 32.197046274821048 ], [ 35.200000000000102, 32.19708333333341 ] ] ], [ [ [ 35.220554804483982, 32.197101603190163 ], [ 35.220583333333309, 32.197000000000116 ], [ 35.22048173014332, 32.197028528849273 ], [ 35.220554804483982, 32.197101603190163 ] ] ], [ [ [ 35.203416666666669, 32.19708333333341 ], [ 35.203333333333376, 32.19708333333341 ], [ 35.203333333333376, 32.197166666666703 ], [ 35.203416666666669, 32.197166666666703 ], [ 35.203416666666669, 32.19708333333341 ] ] ], [ [ [ 35.229666666666674, 32.19708333333341 ], [ 35.229416666666737, 32.19708333333341 ], [ 35.229416666666737, 32.19725 ], [ 35.229666666666674, 32.19725 ], [ 35.229666666666674, 32.19708333333341 ] ] ], [ [ [ 35.201729751587038, 32.197210245768247 ], [ 35.201666666666654, 32.19708333333341 ], [ 35.201555338541596, 32.197139653523891 ], [ 35.201630249023538, 32.197361328125055 ], [ 35.201729751587038, 32.197210245768247 ] ] ], [ [ [ 35.219083333333401, 32.197416666666754 ], [ 35.219139322916647, 32.197305989583469 ], [ 35.219305338541744, 32.197222005208459 ], [ 35.219333333333452, 32.197000000000116 ], [ 35.219416666666746, 32.19688373311368 ], [ 35.2195, 32.197000000000116 ], [ 35.220181788126638, 32.197085179646876 ], [ 35.220250000000135, 32.197000000000116 ], [ 35.220117370605578, 32.196799296061272 ], [ 35.22, 32.196583333333422 ], [ 35.219888671875026, 32.196527994791666 ], [ 35.219403966267976, 32.196472005208363 ], [ 35.21948273213718, 32.196633290608702 ], [ 35.21925, 32.19675 ], [ 35.219194010416686, 32.19686067708335 ], [ 35.219083333333401, 32.196916666666596 ], [ 35.219000000000108, 32.196916666666596 ], [ 35.21886375427249, 32.196815317789799 ], [ 35.218892135620251, 32.196650466919039 ], [ 35.218604532877748, 32.196464452107818 ], [ 35.218632171630929, 32.196625 ], [ 35.218612035115541, 32.196741968790718 ], [ 35.218217798868864, 32.196674097696928 ], [ 35.218083333333425, 32.196916666666596 ], [ 35.218024078369126, 32.197048940022796 ], [ 35.218280380249098, 32.197136286417788 ], [ 35.218375, 32.197413935343548 ], [ 35.21854344685886, 32.197361465454094 ], [ 35.218666666666707, 32.197416666666754 ], [ 35.218666666666707, 32.197333333333461 ], [ 35.21875, 32.197333333333461 ], [ 35.218972005208343, 32.197361328125055 ], [ 35.219083333333401, 32.197416666666754 ] ] ], [ [ [ 35.229416666666737, 32.197333333333461 ], [ 35.22925, 32.197333333333461 ], [ 35.22925, 32.197416666666754 ], [ 35.229416666666737, 32.197416666666754 ], [ 35.229416666666737, 32.197333333333461 ] ] ], [ [ [ 35.198721473693922, 32.197434936523507 ], [ 35.19875, 32.197333333333461 ], [ 35.198648396810029, 32.197361862182618 ], [ 35.198721473693922, 32.197434936523507 ] ] ], [ [ [ 35.200416666666797, 32.19725 ], [ 35.20036653900155, 32.197177398681788 ], [ 35.200000000000102, 32.19708333333341 ], [ 35.200000000000102, 32.197166666666703 ], [ 35.200066200256401, 32.197299845377586 ], [ 35.200000000000102, 32.197333333333461 ], [ 35.200083333333396, 32.197449600219727 ], [ 35.200201459248831, 32.197284790039134 ], [ 35.200416666666797, 32.19725 ] ] ], [ [ [ 35.200416666666797, 32.19725 ], [ 35.200544743855801, 32.197485666910893 ], [ 35.200708333333409, 32.197448994954357 ], [ 35.20086275736503, 32.197483612060523 ], [ 35.201200703938866, 32.197357157389433 ], [ 35.200673357645655, 32.197186950683658 ], [ 35.200416666666797, 32.19725 ] ] ], [ [ [ 35.210916666666719, 32.197166666666703 ], [ 35.210750000000132, 32.197166666666703 ], [ 35.210750000000132, 32.19725 ], [ 35.210799878438422, 32.197449905395501 ], [ 35.211117607116819, 32.197529958089262 ], [ 35.211166666666657, 32.197333333333461 ], [ 35.211, 32.19725 ], [ 35.210916666666719, 32.19725 ], [ 35.210916666666719, 32.197166666666703 ] ] ], [ [ [ 35.185666666666691, 32.197500000000105 ], [ 35.185583333333398, 32.197500000000105 ], [ 35.185583333333398, 32.197583333333398 ], [ 35.185666666666691, 32.197583333333398 ], [ 35.185666666666691, 32.197500000000105 ] ] ], [ [ [ 35.22927492777518, 32.197534978230863 ], [ 35.229083333333392, 32.197500000000105 ], [ 35.228975072225012, 32.197548355102583 ], [ 35.229166666666686, 32.197583333333398 ], [ 35.22927492777518, 32.197534978230863 ] ] ], [ [ [ 35.2199714711507, 32.197601603190094 ], [ 35.22, 32.197500000000105 ], [ 35.21989839680981, 32.197528528849205 ], [ 35.2199714711507, 32.197601603190094 ] ] ], [ [ [ 35.21225, 32.197333333333461 ], [ 35.212116223653084, 32.197139577229848 ], [ 35.211666666666645, 32.19725 ], [ 35.211416666666707, 32.19725 ], [ 35.211333333333414, 32.19725 ], [ 35.211333333333414, 32.197333333333461 ], [ 35.211809061686324, 32.19760379536956 ], [ 35.212128100077393, 32.197461430867463 ], [ 35.212205233256157, 32.197371902465875 ], [ 35.21225, 32.197333333333461 ] ] ], [ [ [ 35.220666666666659, 32.19775 ], [ 35.220583333333309, 32.19775 ], [ 35.220583333333309, 32.197833333333449 ], [ 35.220666666666659, 32.197833333333449 ], [ 35.220666666666659, 32.19775 ] ] ], [ [ [ 35.22411743164065, 32.197665832519533 ], [ 35.223635772705165, 32.197467905680355 ], [ 35.223583333333409, 32.197666666666692 ], [ 35.223805338541752, 32.197777994791693 ], [ 35.223833333333459, 32.197833333333449 ], [ 35.224000000000103, 32.19775 ], [ 35.22411743164065, 32.197665832519533 ] ] ], [ [ [ 35.219271687825596, 32.197871902465863 ], [ 35.219529942830491, 32.197684697469128 ], [ 35.219083333333401, 32.197500000000105 ], [ 35.219083333333401, 32.197666666666692 ], [ 35.219166666666695, 32.197666666666692 ], [ 35.219166666666695, 32.19775 ], [ 35.219271687825596, 32.197871902465863 ] ], [ [ 35.219231730143235, 32.197695195516019 ], [ 35.219333333333452, 32.197666666666692 ], [ 35.219304804484125, 32.197768269856908 ], [ 35.219231730143235, 32.197695195516019 ] ] ], [ [ [ 35.185583333333398, 32.198 ], [ 35.185583333333398, 32.197666666666692 ], [ 35.185536301930824, 32.197702967325881 ], [ 35.18541666666664, 32.198 ], [ 35.185583333333398, 32.198 ] ] ], [ [ [ 35.201971473693902, 32.198018269856789 ], [ 35.202, 32.197916666666742 ], [ 35.201898396810009, 32.19794519551607 ], [ 35.201971473693902, 32.198018269856789 ] ] ], [ [ [ 35.228383285522511, 32.19802271016448 ], [ 35.22841666666659, 32.197833333333449 ], [ 35.22830835978192, 32.197879679361961 ], [ 35.228383285522511, 32.19802271016448 ] ] ], [ [ [ 35.200666666666677, 32.198083333333386 ], [ 35.200666666666677, 32.198 ], [ 35.200583333333384, 32.198 ], [ 35.200583333333384, 32.198083333333386 ], [ 35.200666666666677, 32.198083333333386 ] ] ], [ [ [ 35.221833333333393, 32.197916666666742 ], [ 35.221833333333393, 32.19775 ], [ 35.221463699340802, 32.197898880005027 ], [ 35.221536300659182, 32.197963699340846 ], [ 35.2217500000001, 32.198083333333386 ], [ 35.221860677083384, 32.198027343750084 ], [ 35.221916666666687, 32.197916666666742 ], [ 35.221833333333393, 32.197916666666742 ] ] ], [ [ [ 35.205852872212745, 32.198123621622699 ], [ 35.205750000000137, 32.197916666666742 ], [ 35.205555338541615, 32.197955963134689 ], [ 35.205628486633316, 32.198194661458388 ], [ 35.205852872212745, 32.198123621622699 ] ] ], [ [ [ 35.201416666666717, 32.19816666666668 ], [ 35.201416666666717, 32.198250000000144 ], [ 35.2015, 32.198250000000144 ], [ 35.2015, 32.19816666666668 ], [ 35.201416666666717, 32.19816666666668 ] ] ], [ [ [ 35.243, 32.198250000000144 ], [ 35.243, 32.19816666666668 ], [ 35.242893269856779, 32.198208333333412 ], [ 35.243, 32.198250000000144 ] ] ], [ [ [ 35.196482866923077, 32.198049845377682 ], [ 35.196416666666778, 32.197916666666742 ], [ 35.196277994791728, 32.197944661458337 ], [ 35.196222005208426, 32.198138671875085 ], [ 35.196055338541669, 32.198348475138403 ], [ 35.196439511617029, 32.198298756917382 ], [ 35.196350618998281, 32.198116744995048 ], [ 35.196482866923077, 32.198049845377682 ] ] ], [ [ [ 35.19591666666679, 32.198416666666731 ], [ 35.196, 32.198416666666731 ], [ 35.195958333333351, 32.198309936523458 ], [ 35.19591666666679, 32.198416666666731 ] ] ], [ [ [ 35.200145769755125, 32.198440155029289 ], [ 35.20025, 32.198250000000144 ], [ 35.200053827921579, 32.198292200724325 ], [ 35.200145769755125, 32.198440155029289 ] ] ], [ [ [ 35.185333333333347, 32.1985 ], [ 35.18541666666664, 32.1985 ], [ 35.18541666666664, 32.198083333333386 ], [ 35.185333333333347, 32.198083333333386 ], [ 35.185333333333347, 32.1985 ] ] ], [ [ [ 35.201416666666717, 32.19816666666668 ], [ 35.201416666666717, 32.198083333333386 ], [ 35.200666666666677, 32.198083333333386 ], [ 35.200786303202392, 32.198380366007541 ], [ 35.201083333333372, 32.1985 ], [ 35.201167317708382, 32.198333984374983 ], [ 35.201333333333423, 32.198250000000144 ], [ 35.201333333333423, 32.19816666666668 ], [ 35.201416666666717, 32.19816666666668 ] ] ], [ [ [ 35.243666666666627, 32.198333333333437 ], [ 35.243583333333333, 32.198333333333437 ], [ 35.243459920247403, 32.1984476826986 ], [ 35.243847325642946, 32.198506846110035 ], [ 35.243706746419321, 32.198376586914094 ], [ 35.243666666666627, 32.198333333333437 ] ] ], [ [ [ 35.19591666666679, 32.198416666666731 ], [ 35.195833333333269, 32.198416666666731 ], [ 35.195833333333269, 32.198583333333318 ], [ 35.196, 32.198583333333318 ], [ 35.196, 32.1985 ], [ 35.19591666666679, 32.1985 ], [ 35.19591666666679, 32.198416666666731 ] ] ], [ [ [ 35.227054804484112, 32.198601603190241 ], [ 35.227083333333439, 32.1985 ], [ 35.226981730143223, 32.198528528849351 ], [ 35.227054804484112, 32.198601603190241 ] ] ], [ [ [ 35.204538052876842, 32.198605809529738 ], [ 35.204583333333403, 32.1985 ], [ 35.204391693115213, 32.198533777872797 ], [ 35.204538052876842, 32.198605809529738 ] ] ], [ [ [ 35.198638140360629, 32.198684936523364 ], [ 35.198666666666782, 32.198583333333318 ], [ 35.198565063476565, 32.198611862182645 ], [ 35.198638140360629, 32.198684936523364 ] ] ], [ [ [ 35.218894404093476, 32.198702123006171 ], [ 35.219372548421347, 32.198455810546875 ], [ 35.21969936116534, 32.198624165852948 ], [ 35.219942454020156, 32.198411010742291 ], [ 35.219652308146237, 32.198261540730812 ], [ 35.21954134623212, 32.198377034505199 ], [ 35.219416666666746, 32.198083333333386 ], [ 35.219286087036267, 32.198125706990652 ], [ 35.219125834147121, 32.198292500813864 ], [ 35.218709167480597, 32.198565678914463 ], [ 35.218894404093476, 32.198702123006171 ] ] ], [ [ [ 35.200749994913735, 32.19858236185712 ], [ 35.200537928263259, 32.198478795369454 ], [ 35.2005, 32.198666666666668 ], [ 35.200666666666677, 32.198750000000132 ], [ 35.200749994913735, 32.19858236185712 ] ] ], [ [ [ 35.185333333333347, 32.1985 ], [ 35.18525, 32.1985 ], [ 35.18525, 32.198833333333425 ], [ 35.185333333333347, 32.198833333333425 ], [ 35.185333333333347, 32.1985 ] ] ], [ [ [ 35.199388140360497, 32.198851603190178 ], [ 35.19941666666665, 32.198750000000132 ], [ 35.199315063476604, 32.198778528849289 ], [ 35.199388140360497, 32.198851603190178 ] ] ], [ [ [ 35.220638137817502, 32.198851603190178 ], [ 35.220666666666659, 32.198750000000132 ], [ 35.220565063476613, 32.198778528849289 ], [ 35.220638137817502, 32.198851603190178 ] ] ], [ [ [ 35.196788052876911, 32.198855809529618 ], [ 35.196833333333416, 32.198750000000132 ], [ 35.196641693115225, 32.198783777872734 ], [ 35.196788052876911, 32.198855809529618 ] ] ], [ [ [ 35.226049952189214, 32.198939376831163 ], [ 35.226083333333463, 32.198750000000132 ], [ 35.225975026448623, 32.198796346028644 ], [ 35.226049952189214, 32.198939376831163 ] ] ], [ [ [ 35.220483606974426, 32.19888467407236 ], [ 35.220416666666722, 32.198750000000132 ], [ 35.220222005208427, 32.198789296468249 ], [ 35.220309539794926, 32.198944661458256 ], [ 35.220483606974426, 32.19888467407236 ] ] ], [ [ [ 35.203333333333376, 32.199 ], [ 35.203540479024355, 32.198952000935947 ], [ 35.20373435974119, 32.198980651855607 ], [ 35.203500000000133, 32.198666666666668 ], [ 35.203083333333268, 32.198833333333425 ], [ 35.203139322916741, 32.198944010416767 ], [ 35.20325, 32.199 ], [ 35.203291666666644, 32.19889326985691 ], [ 35.203333333333376, 32.199 ] ] ], [ [ [ 35.222416666666675, 32.199 ], [ 35.222296091715577, 32.198804311116589 ], [ 35.22225, 32.199 ], [ 35.222416666666675, 32.199 ] ] ], [ [ [ 35.225638137817498, 32.199018269856765 ], [ 35.225666666666598, 32.198916666666719 ], [ 35.225565063476608, 32.198945195516046 ], [ 35.225638137817498, 32.199018269856765 ] ] ], [ [ [ 35.197471473693895, 32.199101603190229 ], [ 35.1975, 32.199 ], [ 35.197398396810001, 32.19902852884934 ], [ 35.197471473693895, 32.199101603190229 ] ] ], [ [ [ 35.225471471150854, 32.199101603190229 ], [ 35.2255, 32.199 ], [ 35.225398396809965, 32.19902852884934 ], [ 35.225471471150854, 32.199101603190229 ] ] ], [ [ [ 35.18525, 32.199 ], [ 35.18516666666676, 32.199 ], [ 35.18516666666676, 32.199166666666599 ], [ 35.18525, 32.199166666666599 ], [ 35.18525, 32.199 ] ] ], [ [ [ 35.197333333333404, 32.199166666666599 ], [ 35.197304807027308, 32.19906506347661 ], [ 35.197231730143358, 32.199138137817499 ], [ 35.197333333333404, 32.199166666666599 ] ] ], [ [ [ 35.224000000000103, 32.199 ], [ 35.223666666666702, 32.199 ], [ 35.223666666666702, 32.199166666666599 ], [ 35.223777994791703, 32.19911132812507 ], [ 35.224000000000103, 32.199083333333306 ], [ 35.224000000000103, 32.199 ] ] ], [ [ [ 35.225166666666667, 32.199083333333306 ], [ 35.224632787068686, 32.199030832926439 ], [ 35.224544764200914, 32.199093368530328 ], [ 35.225061645507935, 32.199205235799241 ], [ 35.225166666666667, 32.199083333333306 ] ] ], [ [ [ 35.19575, 32.199166666666599 ], [ 35.195635653177874, 32.19904325358084 ], [ 35.195378110249862, 32.199158640543544 ], [ 35.195666666666682, 32.19925000000012 ], [ 35.195666666666682, 32.199166666666599 ], [ 35.19575, 32.199166666666599 ] ] ], [ [ [ 35.211360201517721, 32.199273869832439 ], [ 35.211416666666707, 32.199166666666599 ], [ 35.211137916564951, 32.199202885945738 ], [ 35.211360201517721, 32.199273869832439 ] ] ], [ [ [ 35.197333333333404, 32.199166666666599 ], [ 35.197379681905147, 32.199274973551496 ], [ 35.197522710164435, 32.199200047810848 ], [ 35.197333333333404, 32.199166666666599 ] ] ], [ [ [ 35.19575, 32.199166666666599 ], [ 35.19575, 32.19925000000012 ], [ 35.19591666666679, 32.19925000000012 ], [ 35.19591666666679, 32.199333333333414 ], [ 35.196416666666778, 32.199333333333414 ], [ 35.196416666666778, 32.199166666666599 ], [ 35.19575, 32.199166666666599 ] ] ], [ [ [ 35.241234161377008, 32.199255025227956 ], [ 35.241166666666743, 32.199083333333306 ], [ 35.240797032674152, 32.199232213338348 ], [ 35.240950958252085, 32.199369633992603 ], [ 35.241234161377008, 32.199255025227956 ] ] ], [ [ [ 35.20583333333343, 32.1995 ], [ 35.205750000000137, 32.199383733113734 ], [ 35.205666666666673, 32.1995 ], [ 35.20583333333343, 32.1995 ] ] ], [ [ [ 35.217077295939248, 32.199427836100256 ], [ 35.216869166056313, 32.199262502034514 ], [ 35.216833333333398, 32.199333333333414 ], [ 35.216944661458399, 32.199555338541757 ], [ 35.217, 32.199583333333464 ], [ 35.217077295939248, 32.199427836100256 ] ] ], [ [ [ 35.240706746419278, 32.199468983968131 ], [ 35.240406143188579, 32.19929325358072 ], [ 35.240298411051413, 32.199557093302531 ], [ 35.240416666666704, 32.199666666666587 ], [ 35.2405, 32.199666666666587 ], [ 35.240540079752634, 32.199623413085988 ], [ 35.240706746419278, 32.199468983968131 ] ] ], [ [ [ 35.22241284688323, 32.199677500406892 ], [ 35.222333333333381, 32.1995 ], [ 35.222134897867761, 32.199622268676762 ], [ 35.22241284688323, 32.199677500406892 ] ] ], [ [ [ 35.20583333333343, 32.1995 ], [ 35.205862630208401, 32.199557912190755 ], [ 35.206142639160248, 32.199694661458352 ], [ 35.206138671875124, 32.199527994791708 ], [ 35.20583333333343, 32.1995 ] ] ], [ [ [ 35.222054804484117, 32.199768269856804 ], [ 35.222083333333444, 32.199666666666587 ], [ 35.221981730143227, 32.199695195515915 ], [ 35.222054804484117, 32.199768269856804 ] ] ], [ [ [ 35.1965, 32.199666666666587 ], [ 35.196401524861585, 32.199472005208463 ], [ 35.196138671875133, 32.199543146769201 ], [ 35.196276257832835, 32.199777882893954 ], [ 35.1965, 32.199666666666587 ] ] ], [ [ [ 35.195304807027185, 32.199851603190098 ], [ 35.195333333333338, 32.199750000000108 ], [ 35.195231730143291, 32.199778528849208 ], [ 35.195304807027185, 32.199851603190098 ] ] ], [ [ [ 35.221871388753357, 32.199855809529765 ], [ 35.221916666666687, 32.199750000000108 ], [ 35.221725026448667, 32.199783777872653 ], [ 35.221871388753357, 32.199855809529765 ] ] ], [ [ [ 35.201566350301107, 32.199800145467236 ], [ 35.2015, 32.199666666666587 ], [ 35.201222005208422, 32.199701721191389 ], [ 35.201436612447083, 32.19986132812511 ], [ 35.201566350301107, 32.199800145467236 ] ] ], [ [ [ 35.18516666666676, 32.1995 ], [ 35.185083333333409, 32.1995 ], [ 35.185083333333409, 32.199916666666695 ], [ 35.18516666666676, 32.199916666666695 ], [ 35.18516666666676, 32.199666666666587 ], [ 35.18516666666676, 32.1995 ] ] ], [ [ [ 35.19743493652345, 32.199888137817368 ], [ 35.197361859639557, 32.199815063476649 ], [ 35.197333333333404, 32.199916666666695 ], [ 35.19743493652345, 32.199888137817368 ] ] ], [ [ [ 35.240269541422606, 32.200040288289472 ], [ 35.240166666666767, 32.199833333333402 ], [ 35.239972005208301, 32.199872629801519 ], [ 35.240045150756941, 32.20011132812499 ], [ 35.240269541422606, 32.200040288289472 ] ] ], [ [ [ 35.203, 32.20025 ], [ 35.203106730143304, 32.200208333333308 ], [ 35.203, 32.200166666666746 ], [ 35.203, 32.20025 ] ] ], [ [ [ 35.206277239481722, 32.200196304321423 ], [ 35.206053268432754, 32.200056976318422 ], [ 35.206, 32.200166666666746 ], [ 35.206, 32.20025 ], [ 35.206166666666661, 32.20025 ], [ 35.206277239481722, 32.200196304321423 ] ] ], [ [ [ 35.234333333333439, 32.20025 ], [ 35.234291666666707, 32.200143269856767 ], [ 35.23425, 32.20025 ], [ 35.234333333333439, 32.20025 ] ] ], [ [ [ 35.22, 32.2 ], [ 35.220041666666589, 32.199893269856886 ], [ 35.220083333333378, 32.2 ], [ 35.220808822631852, 32.200119176228895 ], [ 35.221437998453894, 32.200026199340812 ], [ 35.221583333333456, 32.200083333333453 ], [ 35.221617370605486, 32.200034037272189 ], [ 35.221784037272073, 32.19991896565756 ], [ 35.221626235961935, 32.1998651936849 ], [ 35.221416666666698, 32.199916666666695 ], [ 35.221215962727911, 32.199965962727958 ], [ 35.22091666666671, 32.2 ], [ 35.220336863199975, 32.199951538086054 ], [ 35.220044764200907, 32.199788569132522 ], [ 35.219871902465854, 32.199711430867467 ], [ 35.21983333333344, 32.199666666666587 ], [ 35.219786300659166, 32.199630366007568 ], [ 35.219630366007493, 32.199384958903011 ], [ 35.220068298339811, 32.199292541503951 ], [ 35.220202967325861, 32.198940653483191 ], [ 35.219861119588359, 32.198991170247439 ], [ 35.219630366007493, 32.19913036600741 ], [ 35.219389495849725, 32.199228947957351 ], [ 35.219092814127691, 32.199185104370258 ], [ 35.218909734090118, 32.198737777710107 ], [ 35.218410934448173, 32.19893386840829 ], [ 35.21825327046713, 32.198729609171551 ], [ 35.217520670572981, 32.198837870280045 ], [ 35.217297032674196, 32.198702967325858 ], [ 35.217, 32.198583333333318 ], [ 35.216962188720743, 32.19896218872077 ], [ 35.216820973714277, 32.199079488118514 ], [ 35.217342015584393, 32.199454477945949 ], [ 35.217763966878351, 32.199368275960353 ], [ 35.217873789469365, 32.19911505126953 ], [ 35.21801729838063, 32.199287811279362 ], [ 35.218295522054063, 32.199212188720821 ], [ 35.218430775960258, 32.199049357096385 ], [ 35.218760894775414, 32.199446772257602 ], [ 35.219204477945937, 32.199545522054052 ], [ 35.21925, 32.199583333333464 ], [ 35.219309438069729, 32.199486867269002 ], [ 35.219678833007833, 32.199916168212951 ], [ 35.219803426106694, 32.200281768798845 ], [ 35.219968231201278, 32.200218231201291 ], [ 35.22, 32.200166666666746 ], [ 35.22, 32.2 ] ] ], [ [ [ 35.205916666666724, 32.20025 ], [ 35.205750000000137, 32.20025 ], [ 35.205750000000137, 32.20033333333339 ], [ 35.205916666666724, 32.20033333333339 ], [ 35.205916666666724, 32.20025 ] ] ], [ [ [ 35.241083333333449, 32.200083333333453 ], [ 35.24086785380058, 32.199976226806598 ], [ 35.240833333333342, 32.20025 ], [ 35.241166666666743, 32.20025 ], [ 35.241166666666743, 32.20033333333339 ], [ 35.24133333333333, 32.20033333333339 ], [ 35.241416666666623, 32.200166666666746 ], [ 35.241305338541792, 32.20011132812499 ], [ 35.241083333333449, 32.200083333333453 ] ] ], [ [ [ 35.185083333333409, 32.2 ], [ 35.185000000000116, 32.2 ], [ 35.185000000000116, 32.200416666666683 ], [ 35.185083333333409, 32.200416666666683 ], [ 35.185083333333409, 32.2 ] ] ], [ [ [ 35.203, 32.20025 ], [ 35.202916666666681, 32.20025 ], [ 35.202916666666681, 32.20033333333339 ], [ 35.20296502176916, 32.200441594441713 ], [ 35.203, 32.20025 ] ] ], [ [ [ 35.198833333333369, 32.20025 ], [ 35.198666666666782, 32.20025 ], [ 35.198666666666782, 32.20033333333339 ], [ 35.198720362345398, 32.200443908691454 ], [ 35.198942263285346, 32.20030289713543 ], [ 35.198833333333369, 32.20025 ] ] ], [ [ [ 35.19975, 32.200583333333441 ], [ 35.199666666666701, 32.200416666666683 ], [ 35.199544893900622, 32.200521581014073 ], [ 35.19975, 32.200583333333441 ] ] ], [ [ [ 35.206166666666661, 32.20033333333339 ], [ 35.206083333333368, 32.20033333333339 ], [ 35.206083333333368, 32.200416666666683 ], [ 35.206194661458369, 32.200638671875026 ], [ 35.206333333333419, 32.200666666666734 ], [ 35.206416666666712, 32.200666666666734 ], [ 35.206416666666712, 32.200500000000147 ], [ 35.206351198832181, 32.200370585123835 ], [ 35.206166666666661, 32.20033333333339 ] ] ], [ [ [ 35.198083333333273, 32.20075 ], [ 35.198043464660657, 32.20067726135261 ], [ 35.197803827921575, 32.20057849121099 ], [ 35.197909548441601, 32.200832901000979 ], [ 35.198083333333273, 32.20075 ] ] ], [ [ [ 35.239083333333326, 32.20075 ], [ 35.238984858195067, 32.200555338541733 ], [ 35.23877799479169, 32.200611328124978 ], [ 35.23875, 32.200833333333321 ], [ 35.238972005208325, 32.200805338541784 ], [ 35.239083333333326, 32.20075 ] ] ], [ [ [ 35.202138140360489, 32.200851603190245 ], [ 35.202166666666642, 32.20075 ], [ 35.202065063476596, 32.200778528849355 ], [ 35.202138140360489, 32.200851603190245 ] ] ], [ [ [ 35.198083333333273, 32.20075 ], [ 35.198142369588311, 32.200862080891966 ], [ 35.198357912699464, 32.200785680135141 ], [ 35.198083333333273, 32.20075 ] ] ], [ [ [ 35.198938425699794, 32.20087171936035 ], [ 35.199000000000126, 32.20075 ], [ 35.198638671875017, 32.200783126831084 ], [ 35.198724362691223, 32.200944661458379 ], [ 35.198938425699794, 32.20087171936035 ] ] ], [ [ [ 35.184916666666652, 32.201000000000136 ], [ 35.185000000000116, 32.201000000000136 ], [ 35.185000000000116, 32.200500000000147 ], [ 35.184916666666652, 32.200500000000147 ], [ 35.184916666666652, 32.201000000000136 ] ] ], [ [ [ 35.19525, 32.20075 ], [ 35.195166666666694, 32.20075 ], [ 35.19520067087808, 32.201019658406608 ], [ 35.195316047668484, 32.200783411661916 ], [ 35.19525, 32.20075 ] ] ], [ [ [ 35.197817838033075, 32.200969802856491 ], [ 35.19775, 32.200833333333321 ], [ 35.19756402842205, 32.200870875040664 ], [ 35.197487297058217, 32.201027994791673 ], [ 35.197817838033075, 32.200969802856491 ] ] ], [ [ [ 35.196416666666778, 32.200833333333321 ], [ 35.196283487955839, 32.200767135620254 ], [ 35.196222005208426, 32.200888671875077 ], [ 35.196111328125085, 32.200944661458379 ], [ 35.196083333333377, 32.201000000000136 ], [ 35.196250000000134, 32.201083333333429 ], [ 35.196305989583436, 32.200972656250087 ], [ 35.196416666666778, 32.200916666666672 ], [ 35.196416666666778, 32.200833333333321 ] ] ], [ [ [ 35.245888137817303, 32.201101603190182 ], [ 35.245916666666631, 32.201000000000136 ], [ 35.245815063476641, 32.201028528849292 ], [ 35.245888137817303, 32.201101603190182 ] ] ], [ [ [ 35.218916666666587, 32.201166666666722 ], [ 35.218726684570413, 32.200891504923561 ], [ 35.21850000000012, 32.200833333333321 ], [ 35.218636144002289, 32.201030522664325 ], [ 35.218833333333293, 32.201166666666722 ], [ 35.218916666666587, 32.201166666666722 ] ] ], [ [ [ 35.200333333333276, 32.201083333333429 ], [ 35.20025, 32.201083333333429 ], [ 35.200143203735365, 32.201125188191838 ], [ 35.200294209798301, 32.201183161417703 ], [ 35.200333333333276, 32.201083333333429 ] ] ], [ [ [ 35.195633288065665, 32.201189376831167 ], [ 35.195666666666682, 32.201000000000136 ], [ 35.195558359782012, 32.201046346028647 ], [ 35.195633288065665, 32.201189376831167 ] ] ], [ [ [ 35.184916666666652, 32.201000000000136 ], [ 35.184833333333358, 32.201000000000136 ], [ 35.184833333333358, 32.20125 ], [ 35.184916666666652, 32.20125 ], [ 35.184916666666652, 32.201000000000136 ] ] ], [ [ [ 35.194916666666643, 32.200500000000147 ], [ 35.194916666666643, 32.200416666666683 ], [ 35.1950833333334, 32.200416666666683 ], [ 35.195008199056133, 32.200131876627665 ], [ 35.1947689234417, 32.200384902954113 ], [ 35.194799906412698, 32.200541702270584 ], [ 35.194701459248904, 32.201034790039046 ], [ 35.194666666666706, 32.201333333333309 ], [ 35.194833333333349, 32.201333333333309 ], [ 35.194833333333349, 32.201083333333429 ], [ 35.194833333333349, 32.201000000000136 ], [ 35.194916666666643, 32.200500000000147 ] ] ], [ [ [ 35.222333333333381, 32.201166666666722 ], [ 35.22225, 32.201166666666722 ], [ 35.222284978230846, 32.201358261108396 ], [ 35.222333333333381, 32.20125 ], [ 35.222333333333381, 32.201166666666722 ] ] ], [ [ [ 35.218583333333413, 32.201416666666603 ], [ 35.218666666666707, 32.20125 ], [ 35.218416666666656, 32.20125 ], [ 35.218416666666656, 32.201083333333429 ], [ 35.218138442993222, 32.200966476440556 ], [ 35.218049296061224, 32.20125229899088 ], [ 35.218166666666718, 32.201333333333309 ], [ 35.218227162679, 32.20122297159827 ], [ 35.218333333333305, 32.201416666666603 ], [ 35.218416666666656, 32.201416666666603 ], [ 35.218450154622531, 32.201350468953535 ], [ 35.218583333333413, 32.201416666666603 ] ] ], [ [ [ 35.222121388753237, 32.201439142863023 ], [ 35.222166666666737, 32.201333333333309 ], [ 35.221975026448547, 32.201367111206082 ], [ 35.222121388753237, 32.201439142863023 ] ] ], [ [ [ 35.184940064748162, 32.201458333333392 ], [ 35.184833333333358, 32.201416666666603 ], [ 35.184833333333358, 32.201500000000124 ], [ 35.184940064748162, 32.201458333333392 ] ] ], [ [ [ 35.245054804484141, 32.20151826985682 ], [ 35.245083333333469, 32.201416666666603 ], [ 35.244981730143252, 32.20144519551593 ], [ 35.245054804484141, 32.20151826985682 ] ] ], [ [ [ 35.200520360310861, 32.20154194132499 ], [ 35.200416666666797, 32.201333333333309 ], [ 35.200138671874981, 32.201368387858111 ], [ 35.200269945780519, 32.201611328125125 ], [ 35.200520360310861, 32.20154194132499 ] ] ], [ [ [ 35.194000000000131, 32.201416666666603 ], [ 35.193833333333373, 32.201416666666603 ], [ 35.193891581217372, 32.201620391845779 ], [ 35.194198402404879, 32.201473393758079 ], [ 35.194000000000131, 32.201416666666603 ] ] ], [ [ [ 35.197203168233216, 32.201264862060611 ], [ 35.197, 32.201083333333429 ], [ 35.196939839681022, 32.201158462524461 ], [ 35.196453725179083, 32.201453725179135 ], [ 35.19616666666667, 32.201666666666711 ], [ 35.19616666666667, 32.20175 ], [ 35.196294011433963, 32.201710678100653 ], [ 35.19670598856618, 32.201455988566124 ], [ 35.197203168233216, 32.201264862060611 ] ] ], [ [ [ 35.213138137817396, 32.201768269856757 ], [ 35.213166666666723, 32.201666666666711 ], [ 35.213065063476506, 32.201695195516038 ], [ 35.213138137817396, 32.201768269856757 ] ] ], [ [ [ 35.225826726277717, 32.201778508504162 ], [ 35.225750000000119, 32.201583333333417 ], [ 35.225630366007408, 32.201675674438491 ], [ 35.225826726277717, 32.201778508504162 ] ] ], [ [ [ 35.209166666666704, 32.201583333333417 ], [ 35.209066034952912, 32.201462188720825 ], [ 35.20896439615899, 32.201734537760501 ], [ 35.20908333333341, 32.201833333333468 ], [ 35.209138671874996, 32.201722005208467 ], [ 35.209166666666704, 32.201583333333417 ] ] ], [ [ [ 35.218916666666587, 32.201166666666722 ], [ 35.218916666666587, 32.20125 ], [ 35.218944661458352, 32.201305338541772 ], [ 35.219110677083393, 32.201389322916782 ], [ 35.219166666666695, 32.201500000000124 ], [ 35.21925, 32.201500000000124 ], [ 35.21925, 32.201583333333417 ], [ 35.219333333333452, 32.201583333333417 ], [ 35.219333333333452, 32.201666666666711 ], [ 35.219465962727895, 32.201700703938911 ], [ 35.219666666666683, 32.201833333333468 ], [ 35.219694661458391, 32.201777994791712 ], [ 35.219832483927405, 32.201708272298163 ], [ 35.219583333333389, 32.201583333333417 ], [ 35.219467066446953, 32.201500000000124 ], [ 35.219583333333389, 32.201416666666603 ], [ 35.219562133789054, 32.201354532877644 ], [ 35.21918786621103, 32.201312133789145 ], [ 35.219062133789066, 32.201187866211058 ], [ 35.218916666666587, 32.201166666666722 ] ] ], [ [ [ 35.223666666666702, 32.201833333333468 ], [ 35.223666666666702, 32.20175 ], [ 35.223583333333409, 32.20175 ], [ 35.223583333333409, 32.201833333333468 ], [ 35.223666666666702, 32.201833333333468 ] ] ], [ [ [ 35.223416666666594, 32.201666666666711 ], [ 35.223333333333301, 32.201666666666711 ], [ 35.223368311564116, 32.201858261108327 ], [ 35.223416666666594, 32.20175 ], [ 35.223416666666594, 32.201666666666711 ] ] ], [ [ [ 35.193699015299501, 32.201755961100218 ], [ 35.193583333333265, 32.201666666666711 ], [ 35.193416666666678, 32.20175 ], [ 35.193509010314983, 32.201869633992658 ], [ 35.193699015299501, 32.201755961100218 ] ] ], [ [ [ 35.223666666666702, 32.201833333333468 ], [ 35.223666666666702, 32.201916666666591 ], [ 35.22375, 32.201916666666591 ], [ 35.22375, 32.201833333333468 ], [ 35.223666666666702, 32.201833333333468 ] ] ], [ [ [ 35.221, 32.201916666666591 ], [ 35.221050231933646, 32.201817367553701 ], [ 35.221250000000111, 32.201916666666591 ], [ 35.221291666666673, 32.201809936523489 ], [ 35.221333333333405, 32.201916666666591 ], [ 35.221624165852859, 32.201790832519578 ], [ 35.22304083251953, 32.201664850870827 ], [ 35.222918558756476, 32.20160393778491 ], [ 35.21987583414716, 32.201710357665945 ], [ 35.219957499186137, 32.201792500813895 ], [ 35.220292500813855, 32.201874165852871 ], [ 35.220333333333429, 32.201916666666591 ], [ 35.220939366658627, 32.201992385864287 ], [ 35.221, 32.201916666666591 ] ] ], [ [ [ 35.184833333333358, 32.201666666666711 ], [ 35.18475, 32.201666666666711 ], [ 35.184666666666772, 32.202000000000112 ], [ 35.184833333333358, 32.202000000000112 ], [ 35.184833333333358, 32.201666666666711 ] ] ], [ [ [ 35.201288439432915, 32.201895085652666 ], [ 35.201083333333372, 32.201833333333468 ], [ 35.201166666666666, 32.202000000000112 ], [ 35.201288439432915, 32.201895085652666 ] ] ], [ [ [ 35.2165, 32.20175 ], [ 35.216443679809515, 32.201638671875003 ], [ 35.216109217325879, 32.201695017496831 ], [ 35.21600115966794, 32.20191627502453 ], [ 35.216166666666652, 32.202000000000112 ], [ 35.216200703938853, 32.201950703938792 ], [ 35.2165, 32.20175 ] ] ], [ [ [ 35.22375, 32.201916666666591 ], [ 35.22375, 32.202000000000112 ], [ 35.223833333333459, 32.202000000000112 ], [ 35.223833333333459, 32.201916666666591 ], [ 35.22375, 32.201916666666591 ] ] ], [ [ [ 35.20823630269382, 32.20198367309581 ], [ 35.208454068501908, 32.201701543172305 ], [ 35.208685803731271, 32.201735788981182 ], [ 35.208735432942774, 32.20139994812024 ], [ 35.208528521219989, 32.201275136311892 ], [ 35.20829166666681, 32.201310139973941 ], [ 35.207896329244079, 32.201251719156915 ], [ 35.207760729471943, 32.201427393595509 ], [ 35.207119636535708, 32.201536300659313 ], [ 35.207083333333287, 32.20175 ], [ 35.207402842203862, 32.201804275512814 ], [ 35.207536303202403, 32.202130366007509 ], [ 35.207833333333383, 32.20225 ], [ 35.207869636535577, 32.202202967325888 ], [ 35.20823630269382, 32.20198367309581 ] ] ], [ [ [ 35.22325, 32.202000000000112 ], [ 35.22322147115085, 32.202101603190101 ], [ 35.223148396809961, 32.202028528849212 ], [ 35.22325, 32.202000000000112 ], [ 35.223158365885524, 32.201885569254671 ], [ 35.223000000000127, 32.202083333333405 ], [ 35.223000000000127, 32.20225 ], [ 35.22308333333342, 32.20225 ], [ 35.223449254353852, 32.2020511322022 ], [ 35.22325, 32.202000000000112 ] ] ], [ [ [ 35.234416666666732, 32.20225 ], [ 35.234416666666732, 32.202000000000112 ], [ 35.234666666666612, 32.202000000000112 ], [ 35.234666666666612, 32.201916666666591 ], [ 35.234333333333439, 32.201916666666591 ], [ 35.234297032674249, 32.201963699340922 ], [ 35.234, 32.202083333333405 ], [ 35.233643692016585, 32.202115041097102 ], [ 35.233806091308622, 32.202193908691527 ], [ 35.23383333333345, 32.20225 ], [ 35.233944661458281, 32.202194661458407 ], [ 35.234277013142957, 32.202138671874934 ], [ 35.234333333333439, 32.20225 ], [ 35.234416666666732, 32.20225 ] ] ], [ [ [ 35.195901023864678, 32.202197153727184 ], [ 35.19575, 32.202166666666699 ], [ 35.19575, 32.202333333333456 ], [ 35.195833333333269, 32.202333333333456 ], [ 35.195901023864678, 32.202197153727184 ] ] ], [ [ [ 35.184666666666772, 32.202166666666699 ], [ 35.184583333333251, 32.202166666666699 ], [ 35.184583333333251, 32.20241666666675 ], [ 35.184666666666772, 32.20241666666675 ], [ 35.184666666666772, 32.202166666666699 ] ] ], [ [ [ 35.235221471150794, 32.202518269856796 ], [ 35.235250000000121, 32.20241666666675 ], [ 35.235148396809905, 32.202445195516077 ], [ 35.235221471150794, 32.202518269856796 ] ] ], [ [ [ 35.22308333333342, 32.2025 ], [ 35.223000000000127, 32.2025 ], [ 35.223000000000127, 32.202583333333394 ], [ 35.22308333333342, 32.202583333333394 ], [ 35.22308333333342, 32.2025 ] ] ], [ [ [ 35.23625, 32.202583333333394 ], [ 35.23625, 32.20241666666675 ], [ 35.23613779703777, 32.202271301269548 ], [ 35.235828582763645, 32.202316996256513 ], [ 35.235657185872469, 32.20189822896333 ], [ 35.235428268432656, 32.201864400227976 ], [ 35.235083333333478, 32.202000000000112 ], [ 35.235, 32.202000000000112 ], [ 35.235, 32.202083333333405 ], [ 35.235034037272214, 32.202132629394669 ], [ 35.235632629394559, 32.202284037272193 ], [ 35.235886840820342, 32.202449574788488 ], [ 35.236083333333454, 32.2025 ], [ 35.23625, 32.202583333333394 ] ] ], [ [ [ 35.233424647013464, 32.20197419230152 ], [ 35.233119552612322, 32.201775522867933 ], [ 35.23304929606121, 32.202049296061205 ], [ 35.232416666666609, 32.202083333333405 ], [ 35.232371144612614, 32.202121144612647 ], [ 35.232285954793326, 32.202317576090479 ], [ 35.232045522053966, 32.202517298380599 ], [ 35.232317871093869, 32.202618937174464 ], [ 35.232522674560641, 32.202372385660908 ], [ 35.233000000000118, 32.202333333333456 ], [ 35.233034037272091, 32.202284037272193 ], [ 35.233588038126754, 32.202210845947377 ], [ 35.233424647013464, 32.20197419230152 ] ] ], [ [ [ 35.234582555135205, 32.202500584920244 ], [ 35.234416666666732, 32.20241666666675 ], [ 35.234416666666732, 32.202666666666687 ], [ 35.2345, 32.202666666666687 ], [ 35.234582555135205, 32.202500584920244 ] ] ], [ [ [ 35.23625, 32.202583333333394 ], [ 35.236333333333334, 32.202699600219773 ], [ 35.236416666666685, 32.202583333333394 ], [ 35.23625, 32.202583333333394 ] ] ], [ [ [ 35.184583333333251, 32.2025 ], [ 35.1845, 32.2025 ], [ 35.1845, 32.202750000000151 ], [ 35.184583333333251, 32.202750000000151 ], [ 35.184583333333251, 32.2025 ] ] ], [ [ [ 35.236833333333323, 32.202833333333444 ], [ 35.236804036458352, 32.20277542114269 ], [ 35.236555338541734, 32.202653966267917 ], [ 35.23661132812498, 32.202805338541737 ], [ 35.236833333333323, 32.202833333333444 ] ] ], [ [ [ 35.248691640218226, 32.202799555460672 ], [ 35.248545277913536, 32.202727523803787 ], [ 35.2485, 32.202833333333444 ], [ 35.248691640218226, 32.202799555460672 ] ] ], [ [ [ 35.22225, 32.202833333333444 ], [ 35.222166666666737, 32.202833333333444 ], [ 35.222166666666737, 32.202916666666738 ], [ 35.22225, 32.202916666666738 ], [ 35.22225, 32.202833333333444 ] ] ], [ [ [ 35.231833333333327, 32.202833333333444 ], [ 35.23175, 32.202666666666687 ], [ 35.231566853841173, 32.202702448526964 ], [ 35.231472757975325, 32.202880101521885 ], [ 35.231784693400186, 32.202933497110962 ], [ 35.231833333333327, 32.202833333333444 ] ] ], [ [ [ 35.237388137817447, 32.202934936523491 ], [ 35.237416666666604, 32.202833333333444 ], [ 35.237315063476558, 32.202861862182601 ], [ 35.237388137817447, 32.202934936523491 ] ] ], [ [ [ 35.223000000000127, 32.202750000000151 ], [ 35.222916666666663, 32.202750000000151 ], [ 35.222916666666663, 32.203 ], [ 35.223000000000127, 32.203 ], [ 35.223000000000127, 32.202750000000151 ] ] ], [ [ [ 35.202187566121438, 32.202416956583647 ], [ 35.202216814677001, 32.202181823730541 ], [ 35.201916666666705, 32.20225 ], [ 35.201888671874997, 32.202388671875042 ], [ 35.201666666666654, 32.2025 ], [ 35.201594568888424, 32.202938898722437 ], [ 35.201897356669235, 32.203057927449549 ], [ 35.202250000000106, 32.203 ], [ 35.202250000000106, 32.202916666666738 ], [ 35.202187566121438, 32.202416956583647 ] ] ], [ [ [ 35.236833333333323, 32.202833333333444 ], [ 35.237112762451204, 32.203124165852955 ], [ 35.237369745890362, 32.203007400512774 ], [ 35.236833333333323, 32.202833333333444 ] ] ], [ [ [ 35.1845, 32.202833333333444 ], [ 35.184416666666664, 32.202833333333444 ], [ 35.184416666666664, 32.203166666666675 ], [ 35.1845, 32.203166666666675 ], [ 35.1845, 32.202833333333444 ] ] ], [ [ [ 35.195000000000107, 32.203250000000139 ], [ 35.195079790751208, 32.203047032674135 ], [ 35.194883000691732, 32.203159690857035 ], [ 35.195000000000107, 32.203250000000139 ] ] ], [ [ [ 35.219240137736108, 32.203274836222477 ], [ 35.219333333333452, 32.203166666666675 ], [ 35.219395996093795, 32.203017471313501 ], [ 35.219181564331109, 32.202869415283317 ], [ 35.219246622721471, 32.202579198201647 ], [ 35.218872390747151, 32.202335505167753 ], [ 35.218791249593096, 32.20285034688311 ], [ 35.218592193603627, 32.203156028747685 ], [ 35.218666666666707, 32.203333333333433 ], [ 35.219240137736108, 32.203274836222477 ] ], [ [ 35.218731730143247, 32.203195192972942 ], [ 35.218833333333293, 32.203166666666675 ], [ 35.218804804484137, 32.203268269856892 ], [ 35.218731730143247, 32.203195192972942 ] ] ], [ [ [ 35.197471473693895, 32.203351603190185 ], [ 35.1975, 32.203250000000139 ], [ 35.197398396810001, 32.203278526306235 ], [ 35.197471473693895, 32.203351603190185 ] ] ], [ [ [ 35.207916666666677, 32.203333333333433 ], [ 35.207833333333383, 32.203333333333433 ], [ 35.207833333333383, 32.203416666666726 ], [ 35.207916666666677, 32.203416666666726 ], [ 35.207916666666677, 32.203333333333433 ] ] ], [ [ [ 35.184416666666664, 32.203250000000139 ], [ 35.18433333333337, 32.203250000000139 ], [ 35.18433333333337, 32.2035 ], [ 35.184416666666664, 32.2035 ], [ 35.184416666666664, 32.203250000000139 ] ] ], [ [ [ 35.218000000000131, 32.203583333333313 ], [ 35.218000000000131, 32.203416666666726 ], [ 35.218166666666718, 32.203416666666726 ], [ 35.218166666666718, 32.203250000000139 ], [ 35.218055338541717, 32.203194661458383 ], [ 35.217916666666667, 32.203166666666675 ], [ 35.217629328409828, 32.203111808776839 ], [ 35.217793253580851, 32.202959920247395 ], [ 35.217873413086011, 32.202841837565245 ], [ 35.217583333333437, 32.202750000000151 ], [ 35.217416666666679, 32.202833333333444 ], [ 35.217478739420699, 32.202958211263137 ], [ 35.217391245524141, 32.203137369791705 ], [ 35.217333333333386, 32.203166666666675 ], [ 35.217481618245529, 32.203381431579714 ], [ 35.217935384114696, 32.203676920573002 ], [ 35.218000000000131, 32.203583333333313 ] ] ], [ [ [ 35.220583333333309, 32.203666666666606 ], [ 35.220333333333429, 32.203666666666606 ], [ 35.220217473347986, 32.203740837097143 ], [ 35.220780685424813, 32.203714520772394 ], [ 35.220583333333309, 32.203666666666606 ] ] ], [ [ [ 35.18433333333337, 32.203583333333313 ], [ 35.18425, 32.203583333333313 ], [ 35.18425, 32.203833333333421 ], [ 35.18433333333337, 32.203833333333421 ], [ 35.18433333333337, 32.203583333333313 ] ] ], [ [ [ 35.199916666666809, 32.203833333333421 ], [ 35.200031415303499, 32.203709487915035 ], [ 35.200456743876259, 32.203574826558508 ], [ 35.200330566406365, 32.203126589457213 ], [ 35.200030151367173, 32.203209482828811 ], [ 35.20004354349777, 32.203547348022596 ], [ 35.199227272033681, 32.203805778503522 ], [ 35.199775998433495, 32.203784029642861 ], [ 35.199916666666809, 32.203833333333421 ] ] ], [ [ [ 35.234583333333319, 32.2035 ], [ 35.234583333333319, 32.203250000000139 ], [ 35.2345, 32.203250000000139 ], [ 35.234438944498777, 32.203361386617019 ], [ 35.234206604003987, 32.203185668945309 ], [ 35.234137161254864, 32.202862838745261 ], [ 35.23375, 32.202833333333444 ], [ 35.2335, 32.202833333333444 ], [ 35.2335, 32.202916666666738 ], [ 35.233534037272079, 32.203132629394645 ], [ 35.234021133422914, 32.203257631937674 ], [ 35.234083333333331, 32.2035 ], [ 35.234166666666681, 32.2035 ], [ 35.234166666666681, 32.203583333333313 ], [ 35.234515182495102, 32.203615287780792 ], [ 35.234634475708106, 32.203851097106963 ], [ 35.234666666666612, 32.2035 ], [ 35.234583333333319, 32.2035 ] ] ], [ [ [ 35.199243392944311, 32.204028508504166 ], [ 35.199166666666713, 32.203833333333421 ], [ 35.199047030131055, 32.203925676981669 ], [ 35.199243392944311, 32.204028508504166 ] ] ], [ [ [ 35.198028772990028, 32.204020317077607 ], [ 35.198055074056072, 32.203808883667136 ], [ 35.19779166666666, 32.203776117960729 ], [ 35.197606127421182, 32.203799196879061 ], [ 35.197406649271784, 32.203550092061391 ], [ 35.197127998352016, 32.203713890075619 ], [ 35.19671294148759, 32.203662261963018 ], [ 35.196787058512484, 32.203796274821059 ], [ 35.197046274820991, 32.203870391845783 ], [ 35.197083333333353, 32.203916666666714 ], [ 35.197208333333379, 32.203854532877585 ], [ 35.197333333333404, 32.203916666666714 ], [ 35.197416666666697, 32.203916666666714 ], [ 35.197416666666697, 32.204 ], [ 35.197555338541747, 32.204027994791716 ], [ 35.197666666666805, 32.204083333333472 ], [ 35.198028772990028, 32.204020317077607 ] ] ], [ [ [ 35.2335, 32.203916666666714 ], [ 35.233416666666756, 32.203916666666714 ], [ 35.233416666666756, 32.204 ], [ 35.233416666666756, 32.204083333333472 ], [ 35.2335, 32.204083333333472 ], [ 35.23352346293143, 32.204023462931332 ], [ 35.233689651489271, 32.203958333333446 ], [ 35.233583333333399, 32.203916666666714 ], [ 35.2335, 32.203916666666714 ] ] ], [ [ [ 35.198615104675298, 32.203968228658027 ], [ 35.198583333333261, 32.203916666666714 ], [ 35.198134895324756, 32.203953681945904 ], [ 35.198514551798496, 32.204115104675338 ], [ 35.199030077616442, 32.204042900085426 ], [ 35.198615104675298, 32.203968228658027 ] ] ], [ [ [ 35.237583333333419, 32.204 ], [ 35.237201212565139, 32.203809387207059 ], [ 35.237166666666724, 32.204083333333472 ], [ 35.237416666666604, 32.204083333333472 ], [ 35.237416666666604, 32.204166666666595 ], [ 35.237583333333419, 32.204166666666595 ], [ 35.237583333333419, 32.204 ] ] ], [ [ [ 35.200166666666689, 32.204 ], [ 35.200000000000102, 32.204 ], [ 35.200098475138361, 32.204194661458359 ], [ 35.200233098348008, 32.20413364410399 ], [ 35.200166666666689, 32.204 ] ] ], [ [ [ 35.193333333333385, 32.204 ], [ 35.193534037272173, 32.203700703938807 ], [ 35.193666666666786, 32.203666666666606 ], [ 35.193666666666786, 32.203583333333313 ], [ 35.19375, 32.203583333333313 ], [ 35.19375, 32.2035 ], [ 35.193916666666667, 32.2035 ], [ 35.193944661458374, 32.203444661458263 ], [ 35.194166666666774, 32.203333333333433 ], [ 35.19422265625002, 32.203222656250091 ], [ 35.194333333333361, 32.203166666666675 ], [ 35.194375, 32.203059936523516 ], [ 35.194416666666655, 32.203166666666675 ], [ 35.194624786376892, 32.203270118713419 ], [ 35.194708574930814, 32.202979777018356 ], [ 35.194888671875106, 32.20288867187503 ], [ 35.194944661458351, 32.202777994791688 ], [ 35.195000000000107, 32.202750000000151 ], [ 35.195111328124938, 32.202694661458395 ], [ 35.19525, 32.202666666666687 ], [ 35.195450703938832, 32.202528091430736 ], [ 35.195380116780655, 32.202447845459119 ], [ 35.195225677490328, 32.20248246765135 ], [ 35.195000000000107, 32.202333333333456 ], [ 35.194888671875106, 32.202388671875042 ], [ 35.19475, 32.20241666666675 ], [ 35.19462419128422, 32.2027156219483 ], [ 35.19454325612395, 32.202123413086042 ], [ 35.194494572957296, 32.201959920247418 ], [ 35.19437061055504, 32.202222590128656 ], [ 35.194376650492472, 32.202375 ], [ 35.194370221455927, 32.202537226359141 ], [ 35.194461049397717, 32.202708877563509 ], [ 35.194373410542823, 32.202790079752617 ], [ 35.194232831319198, 32.203087954203284 ], [ 35.193333333333385, 32.203666666666606 ], [ 35.193333333333385, 32.203833333333421 ], [ 35.19325, 32.203833333333421 ], [ 35.193218228658111, 32.203884895324734 ], [ 35.192973096211858, 32.204035936991374 ], [ 35.192923121134413, 32.204196385701493 ], [ 35.193333333333385, 32.204 ] ] ], [ [ [ 35.225750000000119, 32.203916666666714 ], [ 35.225541880289825, 32.20381321461997 ], [ 35.225472005208303, 32.204055338541764 ], [ 35.225416666666717, 32.204083333333472 ], [ 35.225526473999025, 32.204236539204942 ], [ 35.22611812337243, 32.204117925008063 ], [ 35.225980916341257, 32.203953997294207 ], [ 35.225750000000119, 32.203916666666714 ] ] ], [ [ [ 35.184273398081586, 32.204208333333327 ], [ 35.184166666666783, 32.204166666666595 ], [ 35.184166666666783, 32.204250000000116 ], [ 35.184273398081586, 32.204208333333327 ] ] ], [ [ [ 35.228083333333416, 32.204166666666595 ], [ 35.228083333333416, 32.204250000000116 ], [ 35.228166666666709, 32.204250000000116 ], [ 35.228166666666709, 32.204166666666595 ], [ 35.228083333333416, 32.204166666666595 ] ] ], [ [ [ 35.191083333333381, 32.204333333333409 ], [ 35.191083333333381, 32.204250000000116 ], [ 35.191166666666675, 32.204250000000116 ], [ 35.190981521606489, 32.203798360188841 ], [ 35.190666666666687, 32.203916666666714 ], [ 35.190694661458451, 32.20397200520847 ], [ 35.190860677083322, 32.20405598958348 ], [ 35.19097265625004, 32.204277343750107 ], [ 35.191083333333381, 32.204333333333409 ] ] ], [ [ [ 35.228083333333416, 32.204166666666595 ], [ 35.228055338541651, 32.204111328125066 ], [ 35.227666666666721, 32.203916666666714 ], [ 35.227500000000134, 32.203916666666714 ], [ 35.227, 32.203916666666714 ], [ 35.227, 32.203833333333421 ], [ 35.2265, 32.203833333333421 ], [ 35.226119633992653, 32.203547030131119 ], [ 35.226083333333463, 32.2035 ], [ 35.225702967325788, 32.203213696797718 ], [ 35.225525909423766, 32.202917658487934 ], [ 35.225369633992614, 32.202797032674255 ], [ 35.225333333333424, 32.202750000000151 ], [ 35.225250000000131, 32.202750000000151 ], [ 35.225250000000131, 32.202666666666687 ], [ 35.224551966349338, 32.202286137898909 ], [ 35.224205988566212, 32.202127344767348 ], [ 35.22416666666669, 32.202083333333405 ], [ 35.223833333333459, 32.202000000000112 ], [ 35.223833333333459, 32.202166666666699 ], [ 35.224000000000103, 32.202166666666699 ], [ 35.224000000000103, 32.20225 ], [ 35.224101603190093, 32.20227852884932 ], [ 35.224028528849203, 32.202351603190209 ], [ 35.224000000000103, 32.20225 ], [ 35.223583333333409, 32.20241666666675 ], [ 35.223638671874994, 32.202527994791808 ], [ 35.223666666666702, 32.202750000000151 ], [ 35.223666666666702, 32.202833333333444 ], [ 35.223874145507921, 32.202936467488712 ], [ 35.224051462809371, 32.20284986368813 ], [ 35.224111328125105, 32.203027013142901 ], [ 35.224000000000103, 32.203083333333325 ], [ 35.224027994791641, 32.203138671875081 ], [ 35.22425, 32.203250000000139 ], [ 35.224306940714541, 32.203141894022622 ], [ 35.224445414225386, 32.203375930786081 ], [ 35.22425, 32.203416666666726 ], [ 35.22420192972811, 32.203459620157957 ], [ 35.224507914225228, 32.203539321899541 ], [ 35.22465553792324, 32.203217679341606 ], [ 35.224833333333436, 32.203416666666726 ], [ 35.225130366007477, 32.203380363464305 ], [ 35.225250000000131, 32.203083333333325 ], [ 35.225291666666692, 32.202889638264992 ], [ 35.225333333333424, 32.203083333333325 ], [ 35.225370391845786, 32.203129608154313 ], [ 35.225862823486295, 32.203523946126381 ], [ 35.225916666666706, 32.203833333333421 ], [ 35.226083333333463, 32.203833333333421 ], [ 35.226166666666586, 32.203717066446984 ], [ 35.226250000000107, 32.203833333333421 ], [ 35.226589950561447, 32.203958173116177 ], [ 35.227467890421678, 32.20404772694917 ], [ 35.22744850667317, 32.204288968404228 ], [ 35.227500000000134, 32.204333333333409 ], [ 35.227583333333428, 32.204333333333409 ], [ 35.227583333333428, 32.204250000000116 ], [ 35.227583333333428, 32.204083333333472 ], [ 35.227833333333308, 32.204083333333472 ], [ 35.227833333333308, 32.204166666666595 ], [ 35.228000000000122, 32.204250000000116 ], [ 35.228000000000122, 32.204166666666595 ], [ 35.228083333333416, 32.204166666666595 ] ], [ [ 35.224916666666729, 32.202833333333444 ], [ 35.224916666666729, 32.202916666666738 ], [ 35.22475, 32.202916666666738 ], [ 35.224666666666678, 32.202916666666738 ], [ 35.224559936523519, 32.202875 ], [ 35.224666666666678, 32.202833333333444 ], [ 35.2245, 32.202583333333394 ], [ 35.2245, 32.2025 ], [ 35.224583333333385, 32.2025 ], [ 35.224778666178395, 32.202550130208294 ], [ 35.224916666666729, 32.202750000000151 ], [ 35.225023396809888, 32.202791666666712 ], [ 35.224916666666729, 32.202833333333444 ] ], [ [ 35.224452123006301, 32.202712178548211 ], [ 35.2238811187745, 32.20273046366367 ], [ 35.22413111877438, 32.202631118774377 ], [ 35.224237762451253, 32.202487762451312 ], [ 35.224333333333448, 32.20241666666675 ], [ 35.224452123006301, 32.202712178548211 ] ] ], [ [ [ 35.211138140360504, 32.204351603190105 ], [ 35.211166666666657, 32.204250000000116 ], [ 35.21106506347661, 32.204278526306211 ], [ 35.211138140360504, 32.204351603190105 ] ] ], [ [ [ 35.237333333333311, 32.204250000000116 ], [ 35.23725, 32.204250000000116 ], [ 35.23725, 32.204416666666702 ], [ 35.237333333333311, 32.204416666666702 ], [ 35.237333333333311, 32.204250000000116 ] ] ], [ [ [ 35.199083333333419, 32.2045 ], [ 35.199054807027323, 32.20439839680995 ], [ 35.198981730143203, 32.2044714736939 ], [ 35.199083333333419, 32.2045 ] ] ], [ [ [ 35.234053217569965, 32.204373301188184 ], [ 35.233916666666744, 32.204166666666595 ], [ 35.233722005208449, 32.204205965677943 ], [ 35.233777994791694, 32.204388671874938 ], [ 35.234, 32.2045 ], [ 35.234053217569965, 32.204373301188184 ] ] ], [ [ [ 35.191034037272118, 32.204541554768866 ], [ 35.1908781979879, 32.20444804382339 ], [ 35.190666666666687, 32.2045 ], [ 35.190666666666687, 32.20458333333346 ], [ 35.191034037272118, 32.204541554768866 ] ] ], [ [ [ 35.216666666666811, 32.204333333333409 ], [ 35.216719477335687, 32.20412754567468 ], [ 35.217, 32.204083333333472 ], [ 35.216876586913997, 32.203873410542883 ], [ 35.216711878458796, 32.203720799764085 ], [ 35.216550740560024, 32.203379358927407 ], [ 35.216083333333302, 32.203583333333313 ], [ 35.215916666666715, 32.203583333333313 ], [ 35.21554692077649, 32.203634951273671 ], [ 35.215709167480554, 32.20379083251953 ], [ 35.215872497558735, 32.20396083323169 ], [ 35.216125045776437, 32.204203478495401 ], [ 35.216166666666652, 32.204416666666702 ], [ 35.216250000000116, 32.204416666666702 ], [ 35.216250000000116, 32.2045 ], [ 35.216250000000116, 32.20458333333346 ], [ 35.216333333333409, 32.20458333333346 ], [ 35.2165, 32.20458333333346 ], [ 35.216611328125055, 32.204361328125117 ], [ 35.216666666666811, 32.204333333333409 ] ] ], [ [ [ 35.216666666666811, 32.204333333333409 ], [ 35.216666666666811, 32.20458333333346 ], [ 35.216750000000104, 32.20458333333346 ], [ 35.216791666666666, 32.204476603190187 ], [ 35.216833333333398, 32.20458333333346 ], [ 35.217, 32.2045 ], [ 35.21696955362961, 32.204349171956437 ], [ 35.216832845052124, 32.204415936787939 ], [ 35.216666666666811, 32.204333333333409 ] ] ], [ [ [ 35.196746180216508, 32.204594167073594 ], [ 35.196666666666658, 32.204416666666702 ], [ 35.196468228658034, 32.204538935343464 ], [ 35.196746180216508, 32.204594167073594 ] ] ], [ [ [ 35.212166666666803, 32.2045 ], [ 35.212083333333283, 32.2045 ], [ 35.212125188191749, 32.204606796264784 ], [ 35.212269119262714, 32.204540153503444 ], [ 35.212166666666803, 32.2045 ] ] ], [ [ [ 35.215733606974368, 32.204551340738931 ], [ 35.215666666666664, 32.204416666666702 ], [ 35.215472005208312, 32.204455965677823 ], [ 35.215559539794981, 32.204611328124997 ], [ 35.215733606974368, 32.204551340738931 ] ] ], [ [ [ 35.195583333333389, 32.204666666666753 ], [ 35.195583333333389, 32.204333333333409 ], [ 35.195666666666682, 32.204333333333409 ], [ 35.195715962727775, 32.204299296061208 ], [ 35.195800127665223, 32.204177396138505 ], [ 35.19616666666667, 32.204083333333472 ], [ 35.19616666666667, 32.204 ], [ 35.196250000000134, 32.204 ], [ 35.196416666666778, 32.204 ], [ 35.196492291768493, 32.203908958435136 ], [ 35.196634951273666, 32.203790456136176 ], [ 35.19645447794602, 32.203712188720829 ], [ 35.196163480123005, 32.203545522054071 ], [ 35.195867780049696, 32.203706309000665 ], [ 35.196037811279325, 32.204003186543844 ], [ 35.195878855387491, 32.204045522054059 ], [ 35.1955, 32.204166666666595 ], [ 35.195472005208387, 32.204305338541644 ], [ 35.19525, 32.204416666666702 ], [ 35.195277994791752, 32.204555338541752 ], [ 35.1955, 32.204666666666753 ], [ 35.195583333333389, 32.204666666666753 ] ] ], [ [ [ 35.195165092468358, 32.20478229014077 ], [ 35.1950833333334, 32.20458333333346 ], [ 35.194881874084501, 32.204636482238811 ], [ 35.195165092468358, 32.20478229014077 ] ] ], [ [ [ 35.199083333333419, 32.2045 ], [ 35.199111328125014, 32.204638671875045 ], [ 35.199166666666713, 32.20475 ], [ 35.199305338541592, 32.204777994791812 ], [ 35.19941666666665, 32.204833333333397 ], [ 35.199469881693517, 32.204706634521585 ], [ 35.199333333333357, 32.2045 ], [ 35.199166666666713, 32.2045 ], [ 35.199083333333419, 32.2045 ] ] ], [ [ [ 35.206941596984962, 32.204784978230862 ], [ 35.206750000000113, 32.20475 ], [ 35.206750000000113, 32.204833333333397 ], [ 35.206833333333407, 32.204833333333397 ], [ 35.206941596984962, 32.204784978230862 ] ] ], [ [ [ 35.19463814036061, 32.204851603190093 ], [ 35.194666666666706, 32.20475 ], [ 35.194565063476489, 32.2047785263062 ], [ 35.19463814036061, 32.204851603190093 ] ] ], [ [ [ 35.245888137817303, 32.204934936523387 ], [ 35.245916666666631, 32.204833333333397 ], [ 35.245815063476641, 32.204861859639493 ], [ 35.245888137817303, 32.204934936523387 ] ] ], [ [ [ 35.233785954793234, 32.204945554097606 ], [ 35.23383333333345, 32.204666666666753 ], [ 35.233630366007503, 32.20482333119719 ], [ 35.233785954793234, 32.204945554097606 ] ] ], [ [ [ 35.194221473693915, 32.205018269856907 ], [ 35.19425, 32.204916666666691 ], [ 35.194148396810021, 32.204945192972957 ], [ 35.194221473693915, 32.205018269856907 ] ] ], [ [ [ 35.194493392944423, 32.205028508504313 ], [ 35.194416666666655, 32.204833333333397 ], [ 35.194297030131111, 32.204925676981645 ], [ 35.194493392944423, 32.205028508504313 ] ] ], [ [ [ 35.211611328125059, 32.204859367370716 ], [ 35.211459434509322, 32.204770652771117 ], [ 35.211333333333414, 32.204833333333397 ], [ 35.211250000000121, 32.204833333333397 ], [ 35.211166666666657, 32.204833333333397 ], [ 35.211166666666657, 32.204916666666691 ], [ 35.211202969869021, 32.204963696797734 ], [ 35.2115, 32.205083333333448 ], [ 35.211611328125059, 32.204859367370716 ] ] ], [ [ [ 35.234698435465589, 32.204301561991372 ], [ 35.234596598307348, 32.20400272878004 ], [ 35.234416666666732, 32.204083333333472 ], [ 35.234583333333319, 32.2045 ], [ 35.234683497111064, 32.204569157918343 ], [ 35.23498316955579, 32.205014175415101 ], [ 35.235083333333478, 32.205083333333448 ], [ 35.235196406046668, 32.205018864949579 ], [ 35.234946924845417, 32.204719739278119 ], [ 35.234750000000133, 32.204333333333409 ], [ 35.234698435465589, 32.204301561991372 ] ] ], [ [ [ 35.228166666666709, 32.204250000000116 ], [ 35.228166666666709, 32.204333333333409 ], [ 35.22825, 32.2045 ], [ 35.228333333333467, 32.2045 ], [ 35.228333333333467, 32.20458333333346 ], [ 35.22841666666659, 32.20458333333346 ], [ 35.228527343750102, 32.204639322916762 ], [ 35.228611328125112, 32.204805338541803 ], [ 35.228666666666697, 32.204833333333397 ], [ 35.228805338541747, 32.204861328125105 ], [ 35.229027994791636, 32.204972005208447 ], [ 35.229333333333443, 32.205 ], [ 35.229416666666737, 32.205 ], [ 35.229416666666737, 32.205083333333448 ], [ 35.229612040201857, 32.205008234659886 ], [ 35.230166666666605, 32.205166666666742 ], [ 35.230107045491593, 32.204934336344479 ], [ 35.229954610188827, 32.204968508402544 ], [ 35.229799296061231, 32.204867370605598 ], [ 35.229666666666674, 32.204833333333397 ], [ 35.229431254069141, 32.204723345438651 ], [ 35.229102890014644, 32.204847119649287 ], [ 35.229, 32.204666666666753 ], [ 35.228833333333455, 32.204666666666753 ], [ 35.228793721516865, 32.20472403971354 ], [ 35.22846596272791, 32.204450703938903 ], [ 35.228166666666709, 32.204250000000116 ] ] ], [ [ [ 35.194222005208303, 32.205138671875034 ], [ 35.19425, 32.205083333333448 ], [ 35.193972005208423, 32.205118387858079 ], [ 35.194034281412883, 32.205233637491915 ], [ 35.194222005208303, 32.205138671875034 ] ] ], [ [ [ 35.230166666666605, 32.205166666666742 ], [ 35.230202967325795, 32.205213696797841 ], [ 35.230380366007523, 32.205286303202456 ], [ 35.23059793599441, 32.205417544047123 ], [ 35.231083333333459, 32.205500000000143 ], [ 35.231083333333459, 32.205416666666679 ], [ 35.230916666666701, 32.205416666666679 ], [ 35.230916666666701, 32.205333333333328 ], [ 35.230550130208428, 32.205239270528182 ], [ 35.2305, 32.205166666666742 ], [ 35.230166666666605, 32.205166666666742 ] ] ], [ [ [ 35.231832555135213, 32.205333920796761 ], [ 35.23166666666674, 32.20525 ], [ 35.23166666666674, 32.205500000000143 ], [ 35.23175, 32.205500000000143 ], [ 35.231832555135213, 32.205333920796761 ] ] ], [ [ [ 35.245083333333469, 32.205333333333328 ], [ 35.245054804484141, 32.205434936523375 ], [ 35.244981730143252, 32.205361859639481 ], [ 35.245083333333469, 32.205333333333328 ], [ 35.245083333333469, 32.20525 ], [ 35.244916666666711, 32.20525 ], [ 35.244833333333418, 32.205416666666679 ], [ 35.244916666666711, 32.205416666666679 ], [ 35.244916666666711, 32.205500000000143 ], [ 35.245326395670645, 32.205448753356961 ], [ 35.24525, 32.20525 ], [ 35.245083333333469, 32.205333333333328 ] ] ], [ [ [ 35.231083333333459, 32.205500000000143 ], [ 35.231083333333459, 32.205583333333436 ], [ 35.231166666666752, 32.205583333333436 ], [ 35.231166666666752, 32.205500000000143 ], [ 35.231083333333459, 32.205500000000143 ] ] ], [ [ [ 35.235213033040452, 32.20561034901948 ], [ 35.235250000000121, 32.20525 ], [ 35.235135650634902, 32.205317789713604 ], [ 35.235213033040452, 32.20561034901948 ] ] ], [ [ [ 35.190385819753146, 32.2056222432455 ], [ 35.190583333333393, 32.205416666666679 ], [ 35.190125832875594, 32.205505978902295 ], [ 35.190385819753146, 32.2056222432455 ] ] ], [ [ [ 35.21225, 32.205583333333436 ], [ 35.212166666666803, 32.205583333333436 ], [ 35.212166666666803, 32.20566666666673 ], [ 35.21225, 32.20566666666673 ], [ 35.21225, 32.205583333333436 ] ] ], [ [ [ 35.19575, 32.205833333333317 ], [ 35.195583333333389, 32.205833333333317 ], [ 35.195583333333389, 32.20591666666661 ], [ 35.19575, 32.20591666666661 ], [ 35.19575, 32.205833333333317 ] ] ], [ [ [ 35.235333333333415, 32.205833333333317 ], [ 35.235284978230879, 32.205725069681762 ], [ 35.235250000000121, 32.20591666666661 ], [ 35.235333333333415, 32.20591666666661 ], [ 35.235333333333415, 32.205833333333317 ] ] ], [ [ [ 35.183882630666176, 32.205382629394649 ], [ 35.183916666666676, 32.205083333333448 ], [ 35.183844064076823, 32.205133460998468 ], [ 35.183681926727388, 32.205765261332317 ], [ 35.183583333333331, 32.206000000000131 ], [ 35.18375, 32.206000000000131 ], [ 35.183784036000588, 32.205784037272224 ], [ 35.183882630666176, 32.205382629394649 ] ] ], [ [ [ 35.246416666666619, 32.206000000000131 ], [ 35.246539347330838, 32.205948473612523 ], [ 35.246630584716854, 32.205968925476157 ], [ 35.246700703938927, 32.205867370605517 ], [ 35.246830678304036, 32.205777628580677 ], [ 35.246416666666619, 32.205500000000143 ], [ 35.246333333333325, 32.205500000000143 ], [ 35.246047159830823, 32.205590601603319 ], [ 35.246293253580859, 32.205706743876192 ], [ 35.246333333333325, 32.20575 ], [ 35.246469487508193, 32.205784940083902 ], [ 35.246416666666619, 32.206000000000131 ] ] ], [ [ [ 35.208851603190055, 32.205945192972933 ], [ 35.20875, 32.20591666666661 ], [ 35.208778526306162, 32.206018269856827 ], [ 35.208851603190055, 32.205945192972933 ] ] ], [ [ [ 35.215416666666727, 32.206083333333424 ], [ 35.215416666666727, 32.206000000000131 ], [ 35.21558333333337, 32.206000000000131 ], [ 35.21558333333337, 32.205833333333317 ], [ 35.215184005737285, 32.205638974507792 ], [ 35.214877044677678, 32.205754679361974 ], [ 35.214803075154748, 32.205895375569753 ], [ 35.215166666666676, 32.206083333333424 ], [ 35.215416666666727, 32.206083333333424 ] ] ], [ [ [ 35.215833333333421, 32.206083333333424 ], [ 35.215833333333421, 32.206000000000131 ], [ 35.215916666666715, 32.206000000000131 ], [ 35.216199727376363, 32.20580456542973 ], [ 35.216, 32.20566666666673 ], [ 35.215962941487703, 32.205796274821012 ], [ 35.21571890258781, 32.205991699218885 ], [ 35.215833333333421, 32.206083333333424 ] ] ], [ [ [ 35.207749631245974, 32.206205988566069 ], [ 35.207863988240604, 32.206003331502302 ], [ 35.20745598856621, 32.205877344767316 ], [ 35.207250000000101, 32.20575 ], [ 35.20708382161456, 32.20583260345461 ], [ 35.206916178385484, 32.205750729878787 ], [ 35.206750000000113, 32.205833333333317 ], [ 35.20687840270989, 32.206053881327421 ], [ 35.20712649027513, 32.206039095560698 ], [ 35.207749631245974, 32.206205988566069 ] ] ], [ [ [ 35.231166666666752, 32.205583333333436 ], [ 35.231250651041762, 32.205749348958307 ], [ 35.231416666666689, 32.205833333333317 ], [ 35.231475636800155, 32.205756932576492 ], [ 35.232054183960031, 32.205918037414619 ], [ 35.232452967325798, 32.206213696797818 ], [ 35.232666666666717, 32.20625 ], [ 35.232586303710946, 32.20614588673908 ], [ 35.232205469767223, 32.205863535563196 ], [ 35.231758534749474, 32.205687835693425 ], [ 35.231297032674206, 32.20561963653563 ], [ 35.231166666666752, 32.205583333333436 ] ] ], [ [ [ 35.213630849202502, 32.205971560160322 ], [ 35.213666666666711, 32.20575 ], [ 35.213361328125075, 32.205777994791788 ], [ 35.213305338541772, 32.205888671875073 ], [ 35.213063110351584, 32.205958574930889 ], [ 35.213000000000136, 32.206083333333424 ], [ 35.21314439392097, 32.206284792582323 ], [ 35.213630849202502, 32.205971560160322 ] ] ], [ [ [ 35.1835, 32.206333333333475 ], [ 35.183666666666795, 32.206333333333475 ], [ 35.183666666666795, 32.206083333333424 ], [ 35.183583333333331, 32.206083333333424 ], [ 35.1835, 32.206083333333424 ], [ 35.1835, 32.206333333333475 ] ] ], [ [ [ 35.192701459248951, 32.206415334065753 ], [ 35.192542734781966, 32.206366333007963 ], [ 35.192118125915499, 32.206451459248967 ], [ 35.192083333333358, 32.206583333333413 ], [ 35.192250000000115, 32.206666666666706 ], [ 35.192333333333409, 32.206666666666706 ], [ 35.19239880116794, 32.206537251790394 ], [ 35.192583333333346, 32.206500000000119 ], [ 35.192701459248951, 32.206415334065753 ] ] ], [ [ [ 35.214583333333394, 32.206666666666706 ], [ 35.214583333333394, 32.206583333333413 ], [ 35.214833333333445, 32.206583333333413 ], [ 35.214895467122403, 32.20645833333333 ], [ 35.214833333333445, 32.206333333333475 ], [ 35.214730209350705, 32.206269790649515 ], [ 35.214587270100935, 32.206037806193137 ], [ 35.21465131123864, 32.20583219146738 ], [ 35.2142609863281, 32.205634895324749 ], [ 35.2140515645346, 32.205845743815246 ], [ 35.214166666666699, 32.20591666666661 ], [ 35.214312133789122, 32.205937863667941 ], [ 35.214434885660921, 32.206056391398135 ], [ 35.21425, 32.206083333333424 ], [ 35.21425, 32.206166666666718 ], [ 35.214166666666699, 32.206166666666718 ], [ 35.214194661458407, 32.206388671875061 ], [ 35.21441601562509, 32.206500651041608 ], [ 35.2145000000001, 32.206666666666706 ], [ 35.214583333333394, 32.206666666666706 ] ] ], [ [ [ 35.245833333333337, 32.206583333333413 ], [ 35.245833333333337, 32.206500000000119 ], [ 35.245916666666631, 32.206500000000119 ], [ 35.246166666666738, 32.206500000000119 ], [ 35.246111328124982, 32.206388671875061 ], [ 35.24605533854168, 32.205777994791788 ], [ 35.246, 32.20575 ], [ 35.245916666666631, 32.20575 ], [ 35.245916666666631, 32.20591666666661 ], [ 35.245833333333337, 32.20591666666661 ], [ 35.245888671875093, 32.206027994791668 ], [ 35.245916666666631, 32.206166666666718 ], [ 35.24602339680996, 32.20620833333345 ], [ 35.245916666666631, 32.20625 ], [ 35.245611328124994, 32.206277994791719 ], [ 35.245527343749984, 32.206444010416817 ], [ 35.245416666666699, 32.206500000000119 ], [ 35.245333333333349, 32.206500000000119 ], [ 35.24525, 32.206666666666706 ], [ 35.245333333333349, 32.206666666666706 ], [ 35.245632629394549, 32.206632629394676 ], [ 35.245833333333337, 32.206583333333413 ] ] ], [ [ [ 35.19497147369384, 32.206684936523459 ], [ 35.195000000000107, 32.206583333333413 ], [ 35.19489839680989, 32.206611859639509 ], [ 35.19497147369384, 32.206684936523459 ] ] ], [ [ [ 35.234518422444751, 32.206692822774357 ], [ 35.234583333333319, 32.206583333333413 ], [ 35.234218983968105, 32.206620712280255 ], [ 35.234518422444751, 32.206692822774357 ] ] ], [ [ [ 35.232666666666717, 32.20625 ], [ 35.23280466715488, 32.206449872334872 ], [ 35.233000000000118, 32.206500000000119 ], [ 35.233516301473117, 32.2067029698689 ], [ 35.233421798706104, 32.206553260803332 ], [ 35.233202967325894, 32.206463696797698 ], [ 35.233004791259759, 32.206344156901139 ], [ 35.232666666666717, 32.20625 ] ] ], [ [ [ 35.245083333333469, 32.206666666666706 ], [ 35.244833333333418, 32.206666666666706 ], [ 35.244833333333418, 32.206833333333464 ], [ 35.245083333333469, 32.206833333333464 ], [ 35.245083333333469, 32.20675 ], [ 35.245083333333469, 32.206666666666706 ] ] ], [ [ [ 35.196333333333257, 32.206833333333464 ], [ 35.19616666666667, 32.206833333333464 ], [ 35.19616666666667, 32.206916666666757 ], [ 35.19616666666667, 32.207 ], [ 35.1965, 32.207 ], [ 35.1965, 32.206916666666757 ], [ 35.196333333333257, 32.206833333333464 ] ] ], [ [ [ 35.197023396809868, 32.207041666666612 ], [ 35.196916666666709, 32.207 ], [ 35.196916666666709, 32.207083333333401 ], [ 35.197023396809868, 32.207041666666612 ] ] ], [ [ [ 35.212, 32.207 ], [ 35.211800234476755, 32.206900700887161 ], [ 35.211750000000109, 32.207 ], [ 35.211750000000109, 32.207083333333401 ], [ 35.212, 32.207083333333401 ], [ 35.212, 32.207 ] ] ], [ [ [ 35.1835, 32.206333333333475 ], [ 35.183444661458452, 32.20636132812507 ], [ 35.183111807505327, 32.207025619506965 ], [ 35.183083333333343, 32.207166666666694 ], [ 35.183166666666807, 32.207166666666694 ], [ 35.183214159647719, 32.207127215067544 ], [ 35.183462187449209, 32.206545522054114 ], [ 35.1835, 32.206416666666598 ], [ 35.1835, 32.206333333333475 ] ] ], [ [ [ 35.220454722086686, 32.207272476196351 ], [ 35.2205, 32.207166666666694 ], [ 35.220308359781825, 32.207200444539467 ], [ 35.220454722086686, 32.207272476196351 ] ] ], [ [ [ 35.193864430745464, 32.207258300781177 ], [ 35.19375, 32.207166666666694 ], [ 35.193722005208315, 32.20722200520845 ], [ 35.193600466410317, 32.207283487955863 ], [ 35.193666666666786, 32.207416666666745 ], [ 35.193864430745464, 32.207258300781177 ] ] ], [ [ [ 35.188138139089006, 32.207518269856791 ], [ 35.188166666666802, 32.207416666666745 ], [ 35.188065064748116, 32.207445192972898 ], [ 35.188138139089006, 32.207518269856791 ] ] ], [ [ [ 35.194666666666706, 32.207750000000146 ], [ 35.194666666666706, 32.207666666666682 ], [ 35.19475, 32.207666666666682 ], [ 35.194675829569519, 32.207550806681411 ], [ 35.194556950887147, 32.207679761250915 ], [ 35.194666666666706, 32.207750000000146 ] ] ], [ [ [ 35.21286585998547, 32.207634140014704 ], [ 35.212833333333379, 32.207583333333332 ], [ 35.21255080668135, 32.207625590006558 ], [ 35.212720911661904, 32.207865859985361 ], [ 35.213108449300194, 32.207789441426598 ], [ 35.21286585998547, 32.207634140014704 ] ] ], [ [ [ 35.18875, 32.207916666666733 ], [ 35.188666666666791, 32.207916666666733 ], [ 35.188666666666791, 32.208 ], [ 35.18875, 32.208 ], [ 35.18875, 32.207916666666733 ] ] ], [ [ [ 35.194416666666655, 32.20808333333332 ], [ 35.19425, 32.20808333333332 ], [ 35.19425, 32.208166666666614 ], [ 35.194416666666655, 32.208166666666614 ], [ 35.194416666666655, 32.20808333333332 ] ] ], [ [ [ 35.213027343749957, 32.20830598958338 ], [ 35.212916666666672, 32.208250000000135 ], [ 35.212916666666672, 32.208416666666722 ], [ 35.213083333333429, 32.208416666666722 ], [ 35.213027343749957, 32.20830598958338 ] ] ], [ [ [ 35.1825, 32.2085 ], [ 35.182583333333355, 32.2085 ], [ 35.182583333333355, 32.208416666666722 ], [ 35.182625, 32.208309936523392 ], [ 35.182666666666648, 32.208416666666722 ], [ 35.182866539001509, 32.20827866617833 ], [ 35.182916666666756, 32.20808333333332 ], [ 35.182833820343149, 32.207916666666733 ], [ 35.182916666666756, 32.207750000000146 ], [ 35.183027994791757, 32.207527994791803 ], [ 35.183149532318112, 32.207466512044334 ], [ 35.183083333333343, 32.207333333333452 ], [ 35.183083333333343, 32.20725 ], [ 35.183027994791757, 32.207277994791696 ], [ 35.182528227488319, 32.208276153564384 ], [ 35.1825, 32.2085 ] ] ], [ [ [ 35.18725000000012, 32.2085 ], [ 35.18725000000012, 32.208416666666722 ], [ 35.187416666666763, 32.208416666666722 ], [ 35.187304384867389, 32.208219739278206 ], [ 35.187141320546459, 32.208438034057622 ], [ 35.18725000000012, 32.2085 ] ] ], [ [ [ 35.194833333333349, 32.208333333333428 ], [ 35.194797083536912, 32.208280832926562 ], [ 35.194583333333412, 32.208333333333428 ], [ 35.194583333333412, 32.2085 ], [ 35.194833333333349, 32.2085 ], [ 35.194833333333349, 32.208333333333428 ] ] ], [ [ [ 35.1825, 32.2085 ], [ 35.182416666666768, 32.2085 ], [ 35.182416666666768, 32.208583333333308 ], [ 35.1825, 32.208583333333308 ], [ 35.1825, 32.2085 ] ] ], [ [ [ 35.214026865641358, 32.208607203165627 ], [ 35.214083333333406, 32.2085 ], [ 35.213804585774653, 32.208536221822158 ], [ 35.214026865641358, 32.208607203165627 ] ] ], [ [ [ 35.18725000000012, 32.2085 ], [ 35.187305989583422, 32.208610677083357 ], [ 35.187416666666763, 32.208666666666602 ], [ 35.18758333333335, 32.208666666666602 ], [ 35.18758333333335, 32.208583333333308 ], [ 35.187416666666763, 32.2085 ], [ 35.18725000000012, 32.2085 ] ] ], [ [ [ 35.187054805755736, 32.208684936523525 ], [ 35.187083333333362, 32.208583333333308 ], [ 35.186981731414846, 32.208611859639632 ], [ 35.187054805755736, 32.208684936523525 ] ] ], [ [ [ 35.182416666666768, 32.208666666666602 ], [ 35.182333333333247, 32.208666666666602 ], [ 35.182333333333247, 32.208750000000123 ], [ 35.182416666666768, 32.208750000000123 ], [ 35.182416666666768, 32.208666666666602 ] ] ], [ [ [ 35.182333333333247, 32.208833333333416 ], [ 35.18225, 32.208833333333416 ], [ 35.18225, 32.20891666666671 ], [ 35.182333333333247, 32.20891666666671 ], [ 35.182333333333247, 32.208833333333416 ] ] ], [ [ [ 35.19409163411467, 32.209114430745387 ], [ 35.19425, 32.20891666666671 ], [ 35.194111328125018, 32.208944661458418 ], [ 35.194000000000131, 32.209 ], [ 35.19409163411467, 32.209114430745387 ] ] ], [ [ [ 35.210106730143366, 32.209208333333322 ], [ 35.21, 32.209166666666761 ], [ 35.21, 32.20925 ], [ 35.210106730143366, 32.209208333333322 ] ] ], [ [ [ 35.210666666666668, 32.208666666666602 ], [ 35.210083333333387, 32.208666666666602 ], [ 35.210027994791801, 32.20877799479166 ], [ 35.21, 32.20891666666671 ], [ 35.210206840515127, 32.20905947621668 ], [ 35.21025, 32.209333333333404 ], [ 35.210773763020825, 32.208939094543496 ], [ 35.210666666666668, 32.208666666666602 ] ] ], [ [ [ 35.215523640950551, 32.209492866516143 ], [ 35.215119633992572, 32.209380363464447 ], [ 35.214880366007549, 32.209286303202305 ], [ 35.21475, 32.20925 ], [ 35.2145000000001, 32.20925 ], [ 35.2145000000001, 32.209416666666698 ], [ 35.214416666666807, 32.209416666666698 ], [ 35.214568227132304, 32.209613021850714 ], [ 35.215432968139623, 32.20995296986905 ], [ 35.215523640950551, 32.209492866516143 ] ] ], [ [ [ 35.230527994791714, 32.209872512817356 ], [ 35.230460001627591, 32.209555338541747 ], [ 35.230229227701898, 32.209626330057858 ], [ 35.230166666666605, 32.20975 ], [ 35.230166666666605, 32.209833333333336 ], [ 35.230083333333312, 32.209833333333336 ], [ 35.230138671875068, 32.209944661458394 ], [ 35.230166666666605, 32.210166666666737 ], [ 35.230250000000126, 32.210166666666737 ], [ 35.230250000000126, 32.21000000000015 ], [ 35.230277994791663, 32.209944661458394 ], [ 35.230527994791714, 32.209872512817356 ] ] ], [ [ [ 35.186583333333374, 32.210083333333444 ], [ 35.186583333333374, 32.209916666666686 ], [ 35.187, 32.209916666666686 ], [ 35.186823746999039, 32.209726442972965 ], [ 35.186126588185743, 32.209892504374238 ], [ 35.186233875274638, 32.210205818176348 ], [ 35.186583333333374, 32.210083333333444 ] ] ], [ [ [ 35.186193696339956, 32.210291666666762 ], [ 35.186, 32.21025 ], [ 35.186, 32.210333333333324 ], [ 35.186193696339956, 32.210291666666762 ] ] ], [ [ [ 35.228916666666748, 32.210333333333324 ], [ 35.228875, 32.210226603190222 ], [ 35.228833333333455, 32.210333333333324 ], [ 35.228916666666748, 32.210333333333324 ] ] ], [ [ [ 35.233000000000118, 32.210333333333324 ], [ 35.233000000000118, 32.21025 ], [ 35.232893269856788, 32.210291666666762 ], [ 35.233000000000118, 32.210333333333324 ] ] ], [ [ [ 35.185583333333398, 32.21025 ], [ 35.185500000000104, 32.21025 ], [ 35.185556318918884, 32.210361328125089 ], [ 35.185772660573321, 32.210288220723498 ], [ 35.185583333333398, 32.21025 ] ] ], [ [ [ 35.19325, 32.210083333333444 ], [ 35.193166666666798, 32.210083333333444 ], [ 35.193166666666798, 32.210416666666617 ], [ 35.193333333333385, 32.210416666666617 ], [ 35.193388671875141, 32.21038867187508 ], [ 35.1935, 32.210166666666737 ], [ 35.19325, 32.210166666666737 ], [ 35.19325, 32.210083333333444 ] ] ], [ [ [ 35.219083333333401, 32.210333333333324 ], [ 35.219003606160413, 32.210047030131022 ], [ 35.218805969238304, 32.210154139200938 ], [ 35.218666666666707, 32.210500000000138 ], [ 35.21875, 32.210500000000138 ], [ 35.21875, 32.210583333333432 ], [ 35.219083333333401, 32.210583333333432 ], [ 35.219083333333401, 32.210416666666617 ], [ 35.219083333333401, 32.210333333333324 ] ] ], [ [ [ 35.181416666666792, 32.210583333333432 ], [ 35.181333333333328, 32.210583333333432 ], [ 35.181333333333328, 32.210666666666725 ], [ 35.181416666666792, 32.210666666666725 ], [ 35.181416666666792, 32.210583333333432 ] ] ], [ [ [ 35.193721473693927, 32.210684936523478 ], [ 35.19375, 32.210583333333432 ], [ 35.193648396809863, 32.210611859639528 ], [ 35.193721473693927, 32.210684936523478 ] ] ], [ [ [ 35.22875, 32.210333333333324 ], [ 35.228583333333404, 32.210333333333324 ], [ 35.228505116780696, 32.210677678426237 ], [ 35.229083333333392, 32.21075 ], [ 35.229, 32.210583333333432 ], [ 35.229, 32.210500000000138 ], [ 35.228777994791699, 32.21038867187508 ], [ 35.22875, 32.210333333333324 ] ] ], [ [ [ 35.229416666666737, 32.210666666666725 ], [ 35.229161458333351, 32.21055234273274 ], [ 35.22925, 32.21075 ], [ 35.229416666666737, 32.21075 ], [ 35.229416666666737, 32.210666666666725 ] ] ], [ [ [ 35.23275, 32.210500000000138 ], [ 35.232465001424146, 32.210429997762162 ], [ 35.232382629394635, 32.210549296061231 ], [ 35.232333333333315, 32.210583333333432 ], [ 35.232416666666609, 32.21075 ], [ 35.232722005208302, 32.210722005208481 ], [ 35.232833333333474, 32.210666666666725 ], [ 35.232833333333474, 32.210583333333432 ], [ 35.23275, 32.210583333333432 ], [ 35.23275, 32.210500000000138 ] ] ], [ [ [ 35.181333333333328, 32.21075 ], [ 35.18125, 32.21075 ], [ 35.18125, 32.210833333333312 ], [ 35.181333333333328, 32.210833333333312 ], [ 35.181333333333328, 32.21075 ] ] ], [ [ [ 35.221743392944347, 32.210945175170991 ], [ 35.221666666666749, 32.21075 ], [ 35.221547032674266, 32.210842343648324 ], [ 35.221743392944347, 32.210945175170991 ] ] ], [ [ [ 35.233166666666705, 32.211000000000126 ], [ 35.233166666666705, 32.210916666666606 ], [ 35.23325, 32.210916666666606 ], [ 35.23325, 32.210833333333312 ], [ 35.233125, 32.210771199544354 ], [ 35.233000000000118, 32.210833333333312 ], [ 35.233055989583363, 32.210944010416654 ], [ 35.233166666666705, 32.211000000000126 ] ] ], [ [ [ 35.229193532307931, 32.211107203165739 ], [ 35.22925, 32.211000000000126 ], [ 35.228971252441397, 32.211036221822098 ], [ 35.229193532307931, 32.211107203165739 ] ] ], [ [ [ 35.181, 32.211333333333471 ], [ 35.18108333333339, 32.211333333333471 ], [ 35.18108333333339, 32.211166666666713 ], [ 35.181, 32.211166666666713 ], [ 35.181, 32.211333333333471 ] ] ], [ [ [ 35.231867492675917, 32.211285916646375 ], [ 35.23175, 32.211000000000126 ], [ 35.231477035522516, 32.211072013855073 ], [ 35.231418523152684, 32.211368125915612 ], [ 35.231867492675917, 32.211285916646375 ] ] ], [ [ [ 35.219583333333389, 32.21125 ], [ 35.219583333333389, 32.211166666666713 ], [ 35.21944466145834, 32.211194661458421 ], [ 35.219333333333452, 32.21125 ], [ 35.219416666666746, 32.211416666666764 ], [ 35.21983333333344, 32.211416666666764 ], [ 35.21983333333344, 32.211333333333471 ], [ 35.21975, 32.211333333333471 ], [ 35.21975, 32.21125 ], [ 35.219583333333389, 32.21125 ] ] ], [ [ [ 35.185472656250113, 32.211027343750118 ], [ 35.185375, 32.210834302266505 ], [ 35.185305338541582, 32.210972005208362 ], [ 35.18525, 32.211000000000126 ], [ 35.185302501678393, 32.211213750203399 ], [ 35.18520070266726, 32.211284037272208 ], [ 35.185132630666033, 32.211465962727857 ], [ 35.184965963999446, 32.211581036885718 ], [ 35.185215963999553, 32.211549296061207 ], [ 35.18545070266731, 32.211367370605501 ], [ 35.185632630666191, 32.21129929606127 ], [ 35.185666666666691, 32.21125 ], [ 35.185583333333398, 32.21108333333342 ], [ 35.185472656250113, 32.211027343750118 ] ] ], [ [ [ 35.181, 32.211333333333471 ], [ 35.180944661458341, 32.211361328125008 ], [ 35.18075, 32.21175 ], [ 35.180938116709456, 32.211697616577226 ], [ 35.181, 32.211333333333471 ] ] ], [ [ [ 35.184916666666652, 32.21175 ], [ 35.184916666666652, 32.211666666666702 ], [ 35.184809935251849, 32.211708333333434 ], [ 35.184916666666652, 32.21175 ] ] ], [ [ [ 35.222416666666675, 32.211833333333459 ], [ 35.222375000000113, 32.211726603190186 ], [ 35.222333333333381, 32.211833333333459 ], [ 35.222416666666675, 32.211833333333459 ] ] ], [ [ [ 35.216, 32.211833333333459 ], [ 35.215916666666715, 32.211833333333459 ], [ 35.215916666666715, 32.211916666666752 ], [ 35.216, 32.211916666666752 ], [ 35.216, 32.211833333333459 ] ] ], [ [ [ 35.231448216756121, 32.211839790344186 ], [ 35.231333333333396, 32.211583333333408 ], [ 35.231134897867776, 32.21170560201017 ], [ 35.231295694987068, 32.211948438008562 ], [ 35.231448216756121, 32.211839790344186 ] ] ], [ [ [ 35.180666666666752, 32.212 ], [ 35.180583333333402, 32.212 ], [ 35.180583333333402, 32.212083333333339 ], [ 35.180666666666752, 32.212083333333339 ], [ 35.180666666666752, 32.212 ] ] ], [ [ [ 35.180500000000109, 32.21225 ], [ 35.180583333333402, 32.21225 ], [ 35.180583333333402, 32.21216666666669 ], [ 35.180500000000109, 32.21216666666669 ], [ 35.180500000000109, 32.21225 ] ] ], [ [ [ 35.18447966257736, 32.212212448120113 ], [ 35.184715963999565, 32.212049296061139 ], [ 35.18475, 32.212 ], [ 35.184693681081114, 32.211888671875045 ], [ 35.184527994791722, 32.21194466145829 ], [ 35.18447200520842, 32.212055338541802 ], [ 35.184194661458321, 32.212111328125104 ], [ 35.184083333333319, 32.21216666666669 ], [ 35.184, 32.21216666666669 ], [ 35.183916666666676, 32.21216666666669 ], [ 35.183962476094564, 32.21234517161065 ], [ 35.18447966257736, 32.212212448120113 ] ] ], [ [ [ 35.180500000000109, 32.21225 ], [ 35.180416666666645, 32.21225 ], [ 35.180416666666645, 32.212416666666741 ], [ 35.180500000000109, 32.212416666666741 ], [ 35.180500000000109, 32.21225 ] ] ], [ [ [ 35.199861328125053, 32.212527013142903 ], [ 35.199709513346363, 32.2124372787477 ], [ 35.199583333333408, 32.2125 ], [ 35.199583333333408, 32.212583333333328 ], [ 35.19975, 32.212583333333328 ], [ 35.199861328125053, 32.212527013142903 ] ] ], [ [ [ 35.186413948059226, 32.212498868306568 ], [ 35.186333333333323, 32.212333333333447 ], [ 35.186054583231737, 32.212369555155419 ], [ 35.186191712697394, 32.212612083435204 ], [ 35.186413948059226, 32.212498868306568 ] ] ], [ [ [ 35.180416666666645, 32.212416666666741 ], [ 35.180318072637021, 32.21248473866774 ], [ 35.18025, 32.212750000000142 ], [ 35.180416666666645, 32.212750000000142 ], [ 35.180416666666645, 32.212416666666741 ] ] ], [ [ [ 35.200666666666677, 32.212750000000142 ], [ 35.200666666666677, 32.212666666666621 ], [ 35.20075, 32.212666666666621 ], [ 35.20075, 32.212583333333328 ], [ 35.200666666666677, 32.212583333333328 ], [ 35.2005, 32.212583333333328 ], [ 35.200555989583336, 32.212694010416669 ], [ 35.200666666666677, 32.212750000000142 ] ] ], [ [ [ 35.207583333333275, 32.212583333333328 ], [ 35.207333333333395, 32.212583333333328 ], [ 35.207333333333395, 32.212750000000142 ], [ 35.207583333333275, 32.212750000000142 ], [ 35.207583333333275, 32.212583333333328 ] ] ], [ [ [ 35.190583333333393, 32.212750000000142 ], [ 35.1905000000001, 32.212750000000142 ], [ 35.1905000000001, 32.212833333333435 ], [ 35.190583333333393, 32.212833333333435 ], [ 35.190583333333393, 32.212750000000142 ] ] ], [ [ [ 35.18025, 32.212750000000142 ], [ 35.180166666666764, 32.212750000000142 ], [ 35.180166666666764, 32.212916666666729 ], [ 35.18025, 32.212916666666729 ], [ 35.18025, 32.212750000000142 ] ] ], [ [ [ 35.222797653198199, 32.212941246032813 ], [ 35.222833333333313, 32.212666666666621 ], [ 35.222721252441374, 32.212725702921659 ], [ 35.222797653198199, 32.212941246032813 ] ] ], [ [ [ 35.202416666666693, 32.212666666666621 ], [ 35.202333333333399, 32.2125 ], [ 35.202250000000106, 32.2125 ], [ 35.202250000000106, 32.212583333333328 ], [ 35.202166666666642, 32.212583333333328 ], [ 35.202166666666642, 32.212916666666729 ], [ 35.202250000000106, 32.212916666666729 ], [ 35.2025, 32.212916666666729 ], [ 35.2025, 32.213 ], [ 35.202636995951309, 32.212961850484305 ], [ 35.202416666666693, 32.212666666666621 ] ] ], [ [ [ 35.213666666666711, 32.212833333333435 ], [ 35.213583333333418, 32.212833333333435 ], [ 35.213583333333418, 32.212916666666729 ], [ 35.213583333333418, 32.213083333333316 ], [ 35.213666666666711, 32.213083333333316 ], [ 35.21375, 32.213083333333316 ], [ 35.213864430745446, 32.212991699218833 ], [ 35.213666666666711, 32.212833333333435 ] ] ], [ [ [ 35.215388137817399, 32.213101603190239 ], [ 35.215416666666727, 32.213 ], [ 35.21531506347651, 32.213028526306118 ], [ 35.215388137817399, 32.213101603190239 ] ] ], [ [ [ 35.18675, 32.213166666666609 ], [ 35.18675, 32.213083333333316 ], [ 35.186916666666775, 32.213083333333316 ], [ 35.186916666666775, 32.213 ], [ 35.186808404286694, 32.212951644897544 ], [ 35.187, 32.212916666666729 ], [ 35.187041666666801, 32.212809936523399 ], [ 35.187083333333362, 32.212916666666729 ], [ 35.187416666666763, 32.212916666666729 ], [ 35.187388671874999, 32.212777994791679 ], [ 35.187333333333413, 32.212666666666621 ], [ 35.187039464314921, 32.212618392944364 ], [ 35.186622811635402, 32.212782188415588 ], [ 35.186528868357357, 32.212903895060208 ], [ 35.186289232889806, 32.21286848195399 ], [ 35.186166666666679, 32.212916666666729 ], [ 35.18625, 32.213083333333316 ], [ 35.186497749328623, 32.213144185384181 ], [ 35.186627319335969, 32.213115140279228 ], [ 35.18675, 32.213166666666609 ] ] ], [ [ [ 35.180166666666764, 32.212916666666729 ], [ 35.18000701967884, 32.213054209391316 ], [ 35.17975, 32.2135 ], [ 35.17992217636106, 32.213455815633267 ], [ 35.1801326300303, 32.213132629394579 ], [ 35.180166666666764, 32.212916666666729 ] ] ], [ [ [ 35.20106371561684, 32.213530090332029 ], [ 35.201191980997748, 32.213118291219132 ], [ 35.201, 32.213 ], [ 35.201, 32.213166666666609 ], [ 35.200833333333264, 32.213166666666609 ], [ 35.200833333333264, 32.21325000000013 ], [ 35.20075, 32.21325000000013 ], [ 35.20079635365812, 32.213446815490784 ], [ 35.20106371561684, 32.213530090332029 ] ] ], [ [ [ 35.222780985514305, 32.213438845316546 ], [ 35.222666666666726, 32.213166666666609 ], [ 35.222465962727938, 32.213218172709276 ], [ 35.222552739461264, 32.213534037272211 ], [ 35.222780985514305, 32.213438845316546 ] ] ], [ [ [ 35.203083333333268, 32.213333333333424 ], [ 35.202950116475449, 32.213267115275187 ], [ 35.202833333333388, 32.2135 ], [ 35.202944661458389, 32.213555338541767 ], [ 35.20325, 32.213583333333474 ], [ 35.20325, 32.2135 ], [ 35.20319401041678, 32.213389322916669 ], [ 35.203083333333268, 32.213333333333424 ] ] ], [ [ [ 35.17975, 32.2135 ], [ 35.179639322916728, 32.213555989583483 ], [ 35.179583333333312, 32.213666666666768 ], [ 35.17975, 32.213666666666768 ], [ 35.17975, 32.2135 ] ] ], [ [ [ 35.186416666666787, 32.21325000000013 ], [ 35.186333333333323, 32.21325000000013 ], [ 35.186277343750021, 32.213360677083415 ], [ 35.186166666666679, 32.213416666666717 ], [ 35.186333333333323, 32.213666666666768 ], [ 35.186416666666787, 32.213666666666768 ], [ 35.186416666666787, 32.2135 ], [ 35.186416666666787, 32.213416666666717 ], [ 35.186416666666787, 32.21325000000013 ] ] ], [ [ [ 35.1795, 32.213833333333412 ], [ 35.179583333333312, 32.213833333333412 ], [ 35.179583333333312, 32.21375 ], [ 35.1795, 32.21375 ], [ 35.1795, 32.213833333333412 ] ] ], [ [ [ 35.186700702667167, 32.21346596272798 ], [ 35.186621761322158, 32.213351626078349 ], [ 35.186549297332874, 32.213611427307228 ], [ 35.186799297332755, 32.213784037272092 ], [ 35.186833333333254, 32.213833333333412 ], [ 35.187, 32.213833333333412 ], [ 35.187, 32.21375 ], [ 35.187, 32.213666666666768 ], [ 35.186700702667167, 32.21346596272798 ] ] ], [ [ [ 35.192250000000115, 32.213833333333412 ], [ 35.192379414876257, 32.21376786549888 ], [ 35.192416666666702, 32.213583333333474 ], [ 35.192056081136059, 32.213314191182405 ], [ 35.191723187764524, 32.213213696797709 ], [ 35.191623621622853, 32.213571245829314 ], [ 35.1915, 32.213666666666768 ], [ 35.1915, 32.21375 ], [ 35.191867045084678, 32.213659845987991 ], [ 35.192178410848101, 32.213729647318587 ], [ 35.192250000000115, 32.213833333333412 ] ] ], [ [ [ 35.1795, 32.213833333333412 ], [ 35.179416666666668, 32.213833333333412 ], [ 35.179416666666668, 32.213916666666705 ], [ 35.1795, 32.213916666666705 ], [ 35.1795, 32.213833333333412 ] ] ], [ [ [ 35.17925, 32.214083333333463 ], [ 35.179333333333375, 32.214083333333463 ], [ 35.179333333333375, 32.214 ], [ 35.17925, 32.214 ], [ 35.17925, 32.214083333333463 ] ] ], [ [ [ 35.20176312510182, 32.214056371053061 ], [ 35.201528396606534, 32.213716402689727 ], [ 35.20125000000013, 32.213833333333412 ], [ 35.20118379974366, 32.213866821289059 ], [ 35.20125000000013, 32.214 ], [ 35.201333333333423, 32.214166666666756 ], [ 35.20176312510182, 32.214056371053061 ] ] ], [ [ [ 35.17925, 32.214083333333463 ], [ 35.179166666666788, 32.214083333333463 ], [ 35.179166666666788, 32.21425 ], [ 35.17925, 32.21425 ], [ 35.17925, 32.214083333333463 ] ] ], [ [ [ 35.179166666666788, 32.21425 ], [ 35.179083333333324, 32.21425 ], [ 35.179083333333324, 32.214333333333343 ], [ 35.179166666666788, 32.214333333333343 ], [ 35.179166666666788, 32.21425 ] ] ], [ [ [ 35.179083333333324, 32.214333333333343 ], [ 35.179, 32.214333333333343 ], [ 35.179, 32.214416666666693 ], [ 35.179083333333324, 32.214416666666693 ], [ 35.179083333333324, 32.214333333333343 ] ] ], [ [ [ 35.201, 32.214166666666756 ], [ 35.200916666666785, 32.214166666666756 ], [ 35.200916666666785, 32.214416666666693 ], [ 35.201, 32.214416666666693 ], [ 35.201, 32.214333333333343 ], [ 35.201, 32.21425 ], [ 35.201, 32.214166666666756 ] ] ], [ [ [ 35.186916666666775, 32.2145 ], [ 35.186853731791302, 32.214254763285282 ], [ 35.186666666666667, 32.214333333333343 ], [ 35.186694661458432, 32.214388671875099 ], [ 35.186916666666775, 32.2145 ] ] ], [ [ [ 35.192250000000115, 32.213833333333412 ], [ 35.192, 32.213833333333412 ], [ 35.191894317626975, 32.214263600667323 ], [ 35.192034037272265, 32.214465962727957 ], [ 35.192166666666651, 32.2145 ], [ 35.192200154622526, 32.214433799743688 ], [ 35.192333333333409, 32.2145 ], [ 35.192465962727852, 32.214299296061142 ], [ 35.1925, 32.214166666666756 ], [ 35.192250000000115, 32.213833333333412 ] ] ], [ [ [ 35.17875, 32.214666666666744 ], [ 35.178833333333387, 32.214666666666744 ], [ 35.178833333333387, 32.214583333333451 ], [ 35.17875, 32.214583333333451 ], [ 35.17875, 32.214666666666744 ] ] ], [ [ [ 35.201166666666666, 32.214666666666744 ], [ 35.201166666666666, 32.214583333333451 ], [ 35.201059936523563, 32.214625 ], [ 35.201166666666666, 32.214666666666744 ] ] ], [ [ [ 35.17875, 32.214666666666744 ], [ 35.1786666666668, 32.214666666666744 ], [ 35.1786666666668, 32.21475 ], [ 35.17875, 32.21475 ], [ 35.17875, 32.214666666666744 ] ] ], [ [ [ 35.202166666666642, 32.214666666666744 ], [ 35.202017789205001, 32.214297030131149 ], [ 35.202036303202419, 32.214713696797673 ], [ 35.202166666666642, 32.21475 ], [ 35.202166666666642, 32.214666666666744 ] ] ], [ [ [ 35.1786666666668, 32.21475 ], [ 35.178583333333336, 32.21475 ], [ 35.178583333333336, 32.214833333333331 ], [ 35.1786666666668, 32.214833333333331 ], [ 35.1786666666668, 32.21475 ] ] ], [ [ [ 35.22430480448412, 32.214851603190255 ], [ 35.224333333333448, 32.21475 ], [ 35.224231730143231, 32.214778526306191 ], [ 35.22430480448412, 32.214851603190255 ] ] ], [ [ [ 35.206371386210208, 32.214855809529695 ], [ 35.206416666666712, 32.21475 ], [ 35.206225026448521, 32.21478377787281 ], [ 35.206371386210208, 32.214855809529695 ] ] ], [ [ [ 35.201439900716252, 32.215016690572099 ], [ 35.20125000000013, 32.214916666666625 ], [ 35.20125000000013, 32.215000000000146 ], [ 35.201309036254941, 32.215112083435088 ], [ 35.201439900716252, 32.215016690572099 ] ] ], [ [ [ 35.178416666666749, 32.215083333333439 ], [ 35.178416666666749, 32.215000000000146 ], [ 35.1785, 32.215000000000146 ], [ 35.1785, 32.214833333333331 ], [ 35.178300127665182, 32.214971333821723 ], [ 35.178250000000105, 32.215166666666732 ], [ 35.178416666666749, 32.215083333333439 ] ] ], [ [ [ 35.189694661458475, 32.215119750976555 ], [ 35.189555112202925, 32.214891057332466 ], [ 35.189500000000123, 32.215000000000146 ], [ 35.189500000000123, 32.215083333333439 ], [ 35.189416666666659, 32.215083333333439 ], [ 35.18947298558561, 32.21519466145844 ], [ 35.189694661458475, 32.215119750976555 ] ] ], [ [ [ 35.18556573486336, 32.215369552612287 ], [ 35.185442263285324, 32.21475367482509 ], [ 35.185125, 32.214816368103072 ], [ 35.184955923716359, 32.214782956441354 ], [ 35.184833333333358, 32.214833333333331 ], [ 35.18475, 32.214833333333331 ], [ 35.184681926727364, 32.214931927998919 ], [ 35.184489295959452, 32.215064926147591 ], [ 35.184666666666772, 32.215333333333319 ], [ 35.18475, 32.215333333333319 ], [ 35.18475, 32.215416666666613 ], [ 35.185000000000116, 32.215416666666613 ], [ 35.185089178721057, 32.21523726145432 ], [ 35.184888671875115, 32.21498485819501 ], [ 35.185305338541582, 32.215027994791683 ], [ 35.185361328125055, 32.215388671875075 ], [ 35.185500000000104, 32.215416666666613 ], [ 35.18556573486336, 32.215369552612287 ] ] ], [ [ [ 35.186284435272228, 32.215519663492785 ], [ 35.186083333333386, 32.215333333333319 ], [ 35.186083333333386, 32.215583333333427 ], [ 35.186284435272228, 32.215519663492785 ] ] ], [ [ [ 35.209328244527114, 32.215121932983493 ], [ 35.20908333333341, 32.215083333333439 ], [ 35.209018755594855, 32.21523708343517 ], [ 35.20908333333341, 32.215500000000134 ], [ 35.209452133178843, 32.215590586344376 ], [ 35.209643681844113, 32.215458333333345 ], [ 35.209484738667811, 32.215348594665613 ], [ 35.209328244527114, 32.215121932983493 ] ] ], [ [ [ 35.178166666666641, 32.215666666666721 ], [ 35.178, 32.215666666666721 ], [ 35.178, 32.21575 ], [ 35.178166666666641, 32.21575 ], [ 35.178166666666641, 32.215666666666721 ] ] ], [ [ [ 35.232799296061273, 32.215450703938814 ], [ 35.232666666666717, 32.21525 ], [ 35.232505081176839, 32.215291465759378 ], [ 35.23239465840669, 32.215784037272215 ], [ 35.232867370605504, 32.215704511006663 ], [ 35.232799296061273, 32.215450703938814 ] ] ], [ [ [ 35.1775, 32.215916666666772 ], [ 35.177833333333467, 32.215916666666772 ], [ 35.177833333333467, 32.215833333333478 ], [ 35.1775, 32.215833333333478 ], [ 35.1775, 32.215916666666772 ] ] ], [ [ [ 35.213285776774114, 32.215225934346563 ], [ 35.21288725789401, 32.215167043050258 ], [ 35.212799367268929, 32.215761805216573 ], [ 35.213000000000136, 32.215916666666772 ], [ 35.213083333333429, 32.215916666666772 ], [ 35.213196624755881, 32.21582921854656 ], [ 35.213285776774114, 32.215225934346563 ] ] ], [ [ [ 35.212734222412109, 32.216052571614512 ], [ 35.212666666666735, 32.215916666666772 ], [ 35.212388671874976, 32.215951721191402 ], [ 35.21247491455091, 32.216111328125123 ], [ 35.212734222412109, 32.216052571614512 ] ] ], [ [ [ 35.214550445556597, 32.216122238159244 ], [ 35.214416666666807, 32.215833333333478 ], [ 35.213967870076488, 32.215951736450336 ], [ 35.213932805379216, 32.216129185994419 ], [ 35.214525914510091, 32.216246388753234 ], [ 35.214550445556597, 32.216122238159244 ] ] ], [ [ [ 35.207818883260074, 32.216001004536963 ], [ 35.207666666666796, 32.21575 ], [ 35.207292500813821, 32.215972114563044 ], [ 35.207634610493926, 32.216290832519576 ], [ 35.207818883260074, 32.216001004536963 ] ] ], [ [ [ 35.22475, 32.216333333333466 ], [ 35.224583333333385, 32.216333333333466 ], [ 35.224629679362067, 32.216441640218193 ], [ 35.224855550130201, 32.216378501892166 ], [ 35.22475, 32.216333333333466 ] ] ], [ [ [ 35.22657756551115, 32.21635963439951 ], [ 35.2265, 32.216166666666709 ], [ 35.226131779988691, 32.216210622151834 ], [ 35.22609018452971, 32.216452214558842 ], [ 35.22657756551115, 32.21635963439951 ] ] ], [ [ [ 35.203, 32.216583333333347 ], [ 35.202786303202288, 32.216297030131045 ], [ 35.20275, 32.216 ], [ 35.202638671875036, 32.215944661458366 ], [ 35.202416666666693, 32.215916666666772 ], [ 35.202416666666693, 32.21641666666676 ], [ 35.202666666666801, 32.21641666666676 ], [ 35.202666666666801, 32.2165 ], [ 35.202777994791802, 32.216555338541809 ], [ 35.203, 32.216583333333347 ] ] ], [ [ [ 35.207083333333287, 32.21641666666676 ], [ 35.207, 32.21641666666676 ], [ 35.207, 32.216583333333347 ], [ 35.207083333333287, 32.216583333333347 ], [ 35.207083333333287, 32.21641666666676 ] ] ], [ [ [ 35.21016666666668, 32.21641666666676 ], [ 35.210083333333387, 32.21641666666676 ], [ 35.209961433410683, 32.216521690368666 ], [ 35.210235323588051, 32.216603624979768 ], [ 35.21016666666668, 32.21641666666676 ] ] ], [ [ [ 35.213538569132538, 32.216418927510574 ], [ 35.213077987670886, 32.216044766744005 ], [ 35.212955235799257, 32.216121899922769 ], [ 35.212916666666672, 32.21625 ], [ 35.213042846679741, 32.216187278747611 ], [ 35.213194661458317, 32.216277013142985 ], [ 35.213083333333429, 32.216333333333466 ], [ 35.213170216878268, 32.216621899922757 ], [ 35.213538569132538, 32.216418927510574 ] ] ], [ [ [ 35.203, 32.216583333333347 ], [ 35.203, 32.216666666666697 ], [ 35.203166666666789, 32.216666666666697 ], [ 35.203166666666789, 32.216583333333347 ], [ 35.203, 32.216583333333347 ] ] ], [ [ [ 35.221333333333405, 32.216666666666697 ], [ 35.221333333333405, 32.216583333333347 ], [ 35.2215, 32.216583333333347 ], [ 35.2215, 32.2165 ], [ 35.2215, 32.216166666666709 ], [ 35.221583333333456, 32.216166666666709 ], [ 35.221537857055637, 32.216109878540124 ], [ 35.221083333333297, 32.216166666666709 ], [ 35.221083333333297, 32.216583333333347 ], [ 35.221222005208347, 32.216611328125111 ], [ 35.221333333333405, 32.216666666666697 ] ] ], [ [ [ 35.221954818725635, 32.216573949178041 ], [ 35.221666666666749, 32.2165 ], [ 35.221666666666749, 32.21675 ], [ 35.222, 32.21675 ], [ 35.221954818725635, 32.216573949178041 ] ] ], [ [ [ 35.1775, 32.215916666666772 ], [ 35.177288567860899, 32.215955233256011 ], [ 35.175963722228914, 32.216270350138473 ], [ 35.175916666666808, 32.216833333333454 ], [ 35.176000000000101, 32.216833333333454 ], [ 35.176034511566172, 32.216529856364048 ], [ 35.176465838114495, 32.216248982747402 ], [ 35.176666666666677, 32.216333333333466 ], [ 35.176666666666677, 32.21625 ], [ 35.17675, 32.21625 ], [ 35.17675, 32.216166666666709 ], [ 35.177, 32.216166666666709 ], [ 35.17704166666681, 32.21605993652355 ], [ 35.177083333333371, 32.216166666666709 ], [ 35.17725, 32.21625 ], [ 35.177277994791723, 32.216194661458417 ], [ 35.17746274693809, 32.216101198832177 ], [ 35.1775, 32.215916666666772 ] ] ], [ [ [ 35.219083333333401, 32.216833333333454 ], [ 35.219083333333401, 32.21675 ], [ 35.218976603190072, 32.216791666666722 ], [ 35.219083333333401, 32.216833333333454 ] ] ], [ [ [ 35.175916666666808, 32.217 ], [ 35.175833333333344, 32.217 ], [ 35.175833333333344, 32.217083333333335 ], [ 35.175916666666808, 32.217083333333335 ], [ 35.175916666666808, 32.217 ] ] ], [ [ [ 35.226304850260419, 32.216838045756106 ], [ 35.22592221577969, 32.216588879903156 ], [ 35.225967671712226, 32.216791666666722 ], [ 35.225910034179776, 32.217048787434919 ], [ 35.22628403727208, 32.217132629394655 ], [ 35.2263333333334, 32.217166666666628 ], [ 35.226416666666694, 32.217166666666628 ], [ 35.226416666666694, 32.217083333333335 ], [ 35.226309936523364, 32.217041666666773 ], [ 35.226416666666694, 32.217 ], [ 35.226304850260419, 32.216838045756106 ] ] ], [ [ [ 35.17575, 32.217250000000149 ], [ 35.175833333333344, 32.217250000000149 ], [ 35.175833333333344, 32.217166666666628 ], [ 35.17575, 32.217166666666628 ], [ 35.17575, 32.217250000000149 ] ] ], [ [ [ 35.224870391845798, 32.217030240376857 ], [ 35.224628153483081, 32.216869425455798 ], [ 35.2245, 32.216885365804046 ], [ 35.224165334065788, 32.216843737284421 ], [ 35.22388074747721, 32.217327870686916 ], [ 35.224083333333397, 32.217250000000149 ], [ 35.224194661458398, 32.217194661458393 ], [ 35.224333333333448, 32.217166666666628 ], [ 35.224453725179103, 32.217120391845697 ], [ 35.224870391845798, 32.217030240376857 ] ] ], [ [ [ 35.17575, 32.217250000000149 ], [ 35.175666666666757, 32.217250000000149 ], [ 35.175666666666757, 32.217333333333443 ], [ 35.17575, 32.217333333333443 ], [ 35.17575, 32.217250000000149 ] ] ], [ [ [ 35.210471473693929, 32.217351603190195 ], [ 35.2105, 32.217250000000149 ], [ 35.210398396809865, 32.217278526306245 ], [ 35.210471473693929, 32.217351603190195 ] ] ], [ [ [ 35.217721471150696, 32.217351603190195 ], [ 35.21775, 32.217250000000149 ], [ 35.217648396809807, 32.217278526306245 ], [ 35.217721471150696, 32.217351603190195 ] ] ], [ [ [ 35.218916666666587, 32.217333333333443 ], [ 35.218833333333293, 32.217333333333443 ], [ 35.218833333333293, 32.217416666666736 ], [ 35.218916666666587, 32.217416666666736 ], [ 35.218916666666587, 32.217333333333443 ] ] ], [ [ [ 35.22475, 32.217416666666736 ], [ 35.225280197143547, 32.217378857930498 ], [ 35.225358281453452, 32.217068949381542 ], [ 35.224972295125383, 32.216971697489498 ], [ 35.224870030721149, 32.217253519693998 ], [ 35.22475, 32.217333333333443 ], [ 35.22475, 32.217416666666736 ] ] ], [ [ [ 35.211083333333363, 32.217333333333443 ], [ 35.210944760640473, 32.217132629394655 ], [ 35.210778928120988, 32.217278498331837 ], [ 35.210833333333426, 32.2175 ], [ 35.211083333333363, 32.2175 ], [ 35.211083333333363, 32.217333333333443 ] ] ], [ [ [ 35.21850000000012, 32.217416666666736 ], [ 35.218333333333305, 32.217416666666736 ], [ 35.218333333333305, 32.2175 ], [ 35.218416666666656, 32.2175 ], [ 35.218416666666656, 32.217583333333323 ], [ 35.218583333333413, 32.2175 ], [ 35.218583333333413, 32.217416666666736 ], [ 35.21850000000012, 32.217416666666736 ] ] ], [ [ [ 35.22475, 32.217416666666736 ], [ 35.22449213663748, 32.217353329976333 ], [ 35.224333333333448, 32.217583333333323 ], [ 35.224555338541791, 32.217611328125088 ], [ 35.22473847452801, 32.217756810506216 ], [ 35.224972005208315, 32.217638671875079 ], [ 35.225, 32.217583333333323 ], [ 35.224966588338134, 32.217517285664826 ], [ 35.224833724975724, 32.217582171122217 ], [ 35.22475, 32.217416666666736 ] ] ], [ [ [ 35.217916666666667, 32.217833333333431 ], [ 35.217888137817511, 32.217731730143214 ], [ 35.217815063476621, 32.217804807027278 ], [ 35.217916666666667, 32.217833333333431 ] ] ], [ [ [ 35.200440711975091, 32.217779726664276 ], [ 35.20025, 32.217666666666616 ], [ 35.20025, 32.217750000000137 ], [ 35.200166666666689, 32.217750000000137 ], [ 35.200234456380258, 32.2178643493653 ], [ 35.200440711975091, 32.217779726664276 ] ] ], [ [ [ 35.217583333333437, 32.217916666666724 ], [ 35.217333333333386, 32.217916666666724 ], [ 35.217417251587051, 32.218082555135197 ], [ 35.217583333333437, 32.218 ], [ 35.217583333333437, 32.217916666666724 ] ] ], [ [ [ 35.188583333333327, 32.21825 ], [ 35.188583333333327, 32.218166666666775 ], [ 35.188666666666791, 32.218166666666775 ], [ 35.188734012603788, 32.218033541361535 ], [ 35.189, 32.218 ], [ 35.188924865722697, 32.217715207417768 ], [ 35.188362721761109, 32.217842730204268 ], [ 35.18825, 32.218 ], [ 35.18825, 32.218083333333311 ], [ 35.188360677083438, 32.218139322916784 ], [ 35.188416666666683, 32.21825 ], [ 35.188583333333327, 32.21825 ] ] ], [ [ [ 35.174833333333368, 32.218916666666701 ], [ 35.17475, 32.218916666666701 ], [ 35.17475, 32.219 ], [ 35.174833333333368, 32.219 ], [ 35.174833333333368, 32.218916666666701 ] ] ], [ [ [ 35.205612093607556, 32.218609133402595 ], [ 35.205333333333272, 32.218416666666712 ], [ 35.20525, 32.21858333333347 ], [ 35.20525, 32.219 ], [ 35.205416666666792, 32.219 ], [ 35.2055, 32.219 ], [ 35.2055, 32.218916666666701 ], [ 35.205359283447365, 32.218703727722129 ], [ 35.205612093607556, 32.218609133402595 ] ] ], [ [ [ 35.207866788228387, 32.21905009460454 ], [ 35.207547645568923, 32.218969685872423 ], [ 35.207416666666688, 32.219166666666752 ], [ 35.207805338541618, 32.219194661458289 ], [ 35.207916666666677, 32.21925 ], [ 35.207866788228387, 32.21905009460454 ] ] ], [ [ [ 35.192166666666651, 32.220333333333315 ], [ 35.192041666666796, 32.220138076782291 ], [ 35.191916666666771, 32.220333333333315 ], [ 35.192166666666651, 32.220333333333315 ] ] ], [ [ [ 35.174416666666673, 32.220666666666716 ], [ 35.174333333333379, 32.220666666666716 ], [ 35.174333333333379, 32.220833333333474 ], [ 35.174416666666673, 32.220833333333474 ], [ 35.174416666666673, 32.220666666666716 ] ] ], [ [ [ 35.1885, 32.221416666666755 ], [ 35.188416666666683, 32.221416666666755 ], [ 35.188416666666683, 32.2215 ], [ 35.188608262380058, 32.221465021769234 ], [ 35.1885, 32.221416666666755 ] ] ], [ [ [ 35.190952968597514, 32.221074323018399 ], [ 35.19076153564464, 32.221027646382709 ], [ 35.190620059967046, 32.221048553466915 ], [ 35.190583333333393, 32.220916666666767 ], [ 35.190394663492953, 32.220954755147432 ], [ 35.1905000000001, 32.221166666666704 ], [ 35.190648878733441, 32.221536303202299 ], [ 35.190715058644571, 32.221462173461873 ], [ 35.190687970479303, 32.221278869628975 ], [ 35.190952968597514, 32.221074323018399 ] ] ], [ [ [ 35.198916666666662, 32.222250000000145 ], [ 35.198703852335711, 32.222197728475066 ], [ 35.198549296061231, 32.222343775431455 ], [ 35.198833333333369, 32.222416666666732 ], [ 35.198916666666662, 32.222250000000145 ] ] ], [ [ [ 35.200833333333264, 32.222333333333438 ], [ 35.20075, 32.222333333333438 ], [ 35.20075, 32.222416666666732 ], [ 35.200833333333264, 32.222416666666732 ], [ 35.200833333333264, 32.222333333333438 ] ] ], [ [ [ 35.210388140360635, 32.222434936523484 ], [ 35.210416666666731, 32.222333333333438 ], [ 35.210315063476514, 32.222361859639534 ], [ 35.210388140360635, 32.222434936523484 ] ] ], [ [ [ 35.195055338541692, 32.222638671875075 ], [ 35.195166666666694, 32.222416666666732 ], [ 35.194805338541585, 32.222449796040792 ], [ 35.194877924601258, 32.222694661458377 ], [ 35.195055338541692, 32.222638671875075 ] ] ], [ [ [ 35.194361808776875, 32.222954004923622 ], [ 35.194416666666655, 32.222666666666782 ], [ 35.194143836975172, 32.222718755086248 ], [ 35.194361808776875, 32.222954004923622 ] ] ], [ [ [ 35.202250000000106, 32.22291666666672 ], [ 35.202166666666642, 32.22291666666672 ], [ 35.202166666666642, 32.223 ], [ 35.202250000000106, 32.223 ], [ 35.202250000000106, 32.22291666666672 ] ] ], [ [ [ 35.195862083435145, 32.223024297078496 ], [ 35.195702743530319, 32.222805707295777 ], [ 35.195666666666682, 32.223083333333477 ], [ 35.19575, 32.223083333333477 ], [ 35.195862083435145, 32.223024297078496 ] ] ], [ [ [ 35.207916666666677, 32.22291666666672 ], [ 35.207620104471971, 32.222867950439536 ], [ 35.207583333333275, 32.223 ], [ 35.207728802998929, 32.223021197001117 ], [ 35.207851552327497, 32.223139724731539 ], [ 35.207666666666796, 32.223166666666771 ], [ 35.207666666666796, 32.223416666666708 ], [ 35.207916666666677, 32.223416666666708 ], [ 35.207974596659369, 32.22306402333578 ], [ 35.207916666666677, 32.22291666666672 ] ] ], [ [ [ 35.203083333333268, 32.223333333333358 ], [ 35.203027013143014, 32.223222005208356 ], [ 35.202681012471487, 32.223280293782693 ], [ 35.202777994791802, 32.223472005208407 ], [ 35.202833333333388, 32.2235 ], [ 35.202916666666681, 32.2235 ], [ 35.203083333333268, 32.223416666666708 ], [ 35.203083333333268, 32.223333333333358 ] ] ], [ [ [ 35.2105, 32.22325 ], [ 35.21, 32.22325 ], [ 35.21, 32.223333333333358 ], [ 35.21025, 32.2235 ], [ 35.210583333333375, 32.2235 ], [ 35.210583333333375, 32.223333333333358 ], [ 35.2105, 32.223333333333358 ], [ 35.2105, 32.22325 ] ] ], [ [ [ 35.204583333333403, 32.223416666666708 ], [ 35.204417254130021, 32.223334111531699 ], [ 35.204333333333352, 32.2235 ], [ 35.204416666666646, 32.2235 ], [ 35.204416666666646, 32.223583333333465 ], [ 35.20452734374993, 32.223527343749993 ], [ 35.204583333333403, 32.223416666666708 ] ] ], [ [ [ 35.209500000000105, 32.22325 ], [ 35.209416666666641, 32.22325 ], [ 35.209213696797804, 32.223306521097925 ], [ 35.209286303202418, 32.223463696797751 ], [ 35.209583333333399, 32.223583333333465 ], [ 35.209611328125106, 32.223527994791709 ], [ 35.209765965779638, 32.223449765523299 ], [ 35.209666666666692, 32.22325 ], [ 35.209500000000105, 32.22325 ] ] ], [ [ [ 35.201862083435117, 32.2235445302328 ], [ 35.201724482218481, 32.223307345072442 ], [ 35.2015, 32.223416666666708 ], [ 35.2015, 32.2235 ], [ 35.201416666666717, 32.2235 ], [ 35.201475702921584, 32.223612083435114 ], [ 35.201862083435117, 32.2235445302328 ] ] ], [ [ [ 35.198619636535682, 32.222740989685121 ], [ 35.198244265238429, 32.222649464925269 ], [ 35.198130363464372, 32.222797030131005 ], [ 35.197970039367647, 32.222920781453411 ], [ 35.197940490722658, 32.22312073516855 ], [ 35.198048454284674, 32.223204068501843 ], [ 35.198025873820086, 32.223356872558725 ], [ 35.198452303568445, 32.223614100138377 ], [ 35.1985, 32.223333333333358 ], [ 35.1985, 32.22325 ], [ 35.1985, 32.223166666666771 ], [ 35.198416666666674, 32.223166666666771 ], [ 35.198222969055109, 32.223125 ], [ 35.198416666666674, 32.223083333333477 ], [ 35.198465120951369, 32.223045931498234 ], [ 35.198440490722646, 32.222879264831647 ], [ 35.198619636535682, 32.222740989685121 ] ] ], [ [ [ 35.210583333333375, 32.223583333333465 ], [ 35.2105, 32.223583333333465 ], [ 35.2105, 32.223666666666759 ], [ 35.210583333333375, 32.223666666666759 ], [ 35.210583333333375, 32.223583333333465 ] ] ], [ [ [ 35.197360201517881, 32.223940536499015 ], [ 35.197416666666697, 32.223833333333346 ], [ 35.197137916564941, 32.223869555155545 ], [ 35.197360201517881, 32.223940536499015 ] ] ], [ [ [ 35.208784792582208, 32.223048540751165 ], [ 35.20875, 32.223 ], [ 35.208482729594039, 32.223043207804437 ], [ 35.208433631896924, 32.223291666666626 ], [ 35.208742434183819, 32.223410766601546 ], [ 35.208641713460281, 32.223920468648316 ], [ 35.208957918802923, 32.223982950846391 ], [ 35.209224800109837, 32.223791666666784 ], [ 35.209059827168915, 32.223673423767082 ], [ 35.208959681193164, 32.223173891703368 ], [ 35.208784792582208, 32.223048540751165 ] ] ], [ [ [ 35.196666666666658, 32.223833333333346 ], [ 35.196583333333365, 32.223833333333346 ], [ 35.196666666666658, 32.224 ], [ 35.196782933553095, 32.223916666666639 ], [ 35.196666666666658, 32.223833333333346 ] ] ], [ [ [ 35.186789122263633, 32.223969477335743 ], [ 35.186583333333374, 32.223916666666639 ], [ 35.18649975967412, 32.224084795633928 ], [ 35.186633566538546, 32.224349299112987 ], [ 35.186833333333254, 32.22425 ], [ 35.186789122263633, 32.223969477335743 ] ] ], [ [ [ 35.174083333333328, 32.224333333333334 ], [ 35.174, 32.224333333333334 ], [ 35.174, 32.224500000000148 ], [ 35.174083333333328, 32.224500000000148 ], [ 35.174083333333328, 32.224333333333334 ] ] ], [ [ [ 35.2005, 32.224583333333442 ], [ 35.200722005208434, 32.224472005208384 ], [ 35.20075, 32.224416666666627 ], [ 35.200534523010333, 32.224309557596939 ], [ 35.2005, 32.224583333333442 ] ] ], [ [ [ 35.207916666666677, 32.224500000000148 ], [ 35.207916666666677, 32.22425 ], [ 35.208, 32.22425 ], [ 35.207959922790508, 32.224206743876209 ], [ 35.207130424499496, 32.22394412485761 ], [ 35.207250000000101, 32.223833333333346 ], [ 35.2073162002564, 32.223700154622463 ], [ 35.207250000000101, 32.223666666666759 ], [ 35.206794062296524, 32.223741564432771 ], [ 35.206670651753711, 32.223298388163244 ], [ 35.206350336710614, 32.223051144917804 ], [ 35.206166666666661, 32.223 ], [ 35.206, 32.223083333333477 ], [ 35.206041132609016, 32.223252967834583 ], [ 35.206241902669319, 32.223381500244216 ], [ 35.205551361083963, 32.223456166585379 ], [ 35.205750000000137, 32.223583333333465 ], [ 35.205791666666698, 32.223476603190136 ], [ 35.20583333333343, 32.223583333333465 ], [ 35.205944010416772, 32.223639322916767 ], [ 35.206, 32.22375 ], [ 35.206454477946011, 32.223678118387909 ], [ 35.20637885538747, 32.223795522054104 ], [ 35.206212188720713, 32.223933965047195 ], [ 35.206600507100461, 32.224246312459286 ], [ 35.206861012776699, 32.223932703654043 ], [ 35.207675173441601, 32.224285797119251 ], [ 35.207787811279331, 32.224545520782442 ], [ 35.207833333333383, 32.224583333333442 ], [ 35.207916666666677, 32.224583333333442 ], [ 35.207916666666677, 32.224500000000148 ] ] ], [ [ [ 35.209416666666641, 32.224583333333442 ], [ 35.209583333333399, 32.224583333333442 ], [ 35.209500000000105, 32.224467066447005 ], [ 35.209416666666641, 32.224583333333442 ] ] ], [ [ [ 35.174, 32.224583333333442 ], [ 35.173916666666742, 32.224583333333442 ], [ 35.173916666666742, 32.224666666666735 ], [ 35.174, 32.224666666666735 ], [ 35.174, 32.224583333333442 ] ] ], [ [ [ 35.201333333333423, 32.224416666666627 ], [ 35.200963554382326, 32.224355921427389 ], [ 35.200916666666785, 32.224416666666627 ], [ 35.200944661458323, 32.224472005208384 ], [ 35.201110677083363, 32.224555989583394 ], [ 35.201166666666666, 32.224666666666735 ], [ 35.201524622599266, 32.224633847554514 ], [ 35.201416666666717, 32.224416666666627 ], [ 35.201333333333423, 32.224416666666627 ] ] ], [ [ [ 35.199916666666809, 32.22475 ], [ 35.199916666666809, 32.224666666666735 ], [ 35.200000000000102, 32.224666666666735 ], [ 35.200074343363553, 32.224464225769054 ], [ 35.19975, 32.224583333333442 ], [ 35.19975, 32.22475 ], [ 35.199916666666809, 32.22475 ] ] ], [ [ [ 35.209416666666641, 32.224583333333442 ], [ 35.20908333333341, 32.224583333333442 ], [ 35.20908333333341, 32.22475 ], [ 35.209249511718781, 32.224667396545442 ], [ 35.209386217753206, 32.22473416010547 ], [ 35.209416666666641, 32.224583333333442 ] ] ], [ [ [ 35.19875, 32.224833333333322 ], [ 35.198666666666782, 32.224717066447056 ], [ 35.198583333333261, 32.224833333333322 ], [ 35.19875, 32.224833333333322 ] ] ], [ [ [ 35.173916666666742, 32.224833333333322 ], [ 35.173833333333391, 32.224833333333322 ], [ 35.173833333333391, 32.224916666666786 ], [ 35.173916666666742, 32.224916666666786 ], [ 35.173916666666742, 32.224833333333322 ] ] ], [ [ [ 35.195388140360478, 32.224934935252008 ], [ 35.195416666666802, 32.224833333333322 ], [ 35.195315063476585, 32.224861860911119 ], [ 35.195388140360478, 32.224934935252008 ] ] ], [ [ [ 35.2005, 32.224583333333442 ], [ 35.200384140014648, 32.224657505035452 ], [ 35.200455996195558, 32.224815797170038 ], [ 35.200926567077715, 32.224948038737068 ], [ 35.201, 32.224833333333322 ], [ 35.200861328125029, 32.224805338541785 ], [ 35.200528653462811, 32.224639973958404 ], [ 35.2005, 32.224583333333442 ] ] ], [ [ [ 35.197471473693895, 32.225268268585239 ], [ 35.1975, 32.225166666666723 ], [ 35.197398396810001, 32.22519519424452 ], [ 35.197471473693895, 32.225268268585239 ] ] ], [ [ [ 35.197333333333404, 32.22533333333331 ], [ 35.197250000000111, 32.225166666666723 ], [ 35.197138671875109, 32.225111328125138 ], [ 35.19686132812501, 32.225055338541665 ], [ 35.196833333333416, 32.225 ], [ 35.196722005208414, 32.22494466145838 ], [ 35.196583333333365, 32.224916666666786 ], [ 35.196536420186362, 32.225099470774467 ], [ 35.196215962727933, 32.225004358927549 ], [ 35.196300745646226, 32.22462617238358 ], [ 35.196904095967568, 32.224546460469526 ], [ 35.196857106526807, 32.224336847941174 ], [ 35.196534037272272, 32.22421596272801 ], [ 35.1965, 32.224083333333454 ], [ 35.1965, 32.223833333333346 ], [ 35.196555989583317, 32.223722656250061 ], [ 35.196666666666658, 32.223666666666759 ], [ 35.196729197184311, 32.223166722615645 ], [ 35.196833333333416, 32.223083333333477 ], [ 35.196833333333416, 32.22291666666672 ], [ 35.196833333333416, 32.222833333333426 ], [ 35.197, 32.222833333333426 ], [ 35.197041666666792, 32.222726603190097 ], [ 35.197083333333353, 32.222833333333426 ], [ 35.197416666666697, 32.22275 ], [ 35.197416666666697, 32.222666666666782 ], [ 35.1975, 32.222666666666782 ], [ 35.197867111206165, 32.222514846801857 ], [ 35.197897059122852, 32.222142135620118 ], [ 35.197574816386009, 32.221962343851771 ], [ 35.197461433410638, 32.222461433410615 ], [ 35.197333333333404, 32.2225 ], [ 35.19713963572184, 32.222458333333464 ], [ 35.197333333333404, 32.222416666666732 ], [ 35.197452969869119, 32.222324323018427 ], [ 35.197290374755937, 32.222284678141364 ], [ 35.196750000000122, 32.2225 ], [ 35.196489733378201, 32.222614133199102 ], [ 35.196416666666778, 32.2225 ], [ 35.196351198832247, 32.222370585123713 ], [ 35.19616666666667, 32.222333333333438 ], [ 35.196299296061227, 32.222534037272226 ], [ 35.196333333333257, 32.222666666666782 ], [ 35.196297030131063, 32.223047030131056 ], [ 35.196185256958131, 32.223331357320262 ], [ 35.195737876892167, 32.223265246073481 ], [ 35.195368362426734, 32.223488138834625 ], [ 35.195121747334838, 32.223451695760104 ], [ 35.194866027832006, 32.223605946858754 ], [ 35.194881861368799, 32.223713094075549 ], [ 35.194583333333412, 32.223833333333346 ], [ 35.194416666666655, 32.223833333333346 ], [ 35.194416666666655, 32.223666666666759 ], [ 35.194333333333361, 32.223666666666759 ], [ 35.194333333333361, 32.22375 ], [ 35.194249348958351, 32.22391601562515 ], [ 35.194083333333253, 32.224 ], [ 35.193916666666667, 32.224 ], [ 35.193583333333265, 32.224 ], [ 35.193583333333265, 32.223916666666639 ], [ 35.1935, 32.223916666666639 ], [ 35.1935, 32.223833333333346 ], [ 35.193365702311269, 32.223717631022168 ], [ 35.192879478454529, 32.223153269449938 ], [ 35.192833333333397, 32.223 ], [ 35.192722656250112, 32.222944010416711 ], [ 35.19266666666681, 32.222833333333426 ], [ 35.192500651041712, 32.222749348958416 ], [ 35.192416666666702, 32.222583333333318 ], [ 35.191955233256124, 32.222378100077322 ], [ 35.191916666666771, 32.222333333333438 ], [ 35.191564460754478, 32.222290288289457 ], [ 35.191075780232836, 32.222098177591988 ], [ 35.191, 32.222 ], [ 35.190916666666794, 32.222 ], [ 35.190916666666794, 32.221916666666743 ], [ 35.19075, 32.22183333333345 ], [ 35.190595312754397, 32.221738021850626 ], [ 35.190468228658119, 32.221365104675442 ], [ 35.190365104675323, 32.221301561991481 ], [ 35.190333333333342, 32.221166666666704 ], [ 35.190277994791757, 32.221055338541646 ], [ 35.19025, 32.220833333333474 ], [ 35.190198438008736, 32.220801561991493 ], [ 35.190071353912401, 32.220428644816138 ], [ 35.189916666666647, 32.220333333333315 ], [ 35.190018829345831, 32.220934733072909 ], [ 35.190177396138608, 32.221197603861526 ], [ 35.190286301930712, 32.221463696797684 ], [ 35.190522829691645, 32.221782725016283 ], [ 35.190583333333393, 32.222 ], [ 35.19071822865817, 32.222031771342017 ], [ 35.190938541412379, 32.222186457316127 ], [ 35.191258717854851, 32.222295567830542 ], [ 35.191333333333262, 32.222416666666732 ], [ 35.191907473246317, 32.222514198303202 ], [ 35.192083333333358, 32.222583333333318 ], [ 35.192228802998841, 32.222604530334479 ], [ 35.192478505452527, 32.222852493286155 ], [ 35.1925, 32.223 ], [ 35.192666015625093, 32.223083984375023 ], [ 35.192750000000103, 32.22325 ], [ 35.192833333333397, 32.22325 ], [ 35.192833333333397, 32.223416666666708 ], [ 35.193030520121397, 32.223552813212109 ], [ 35.193200703938828, 32.223799296061145 ], [ 35.193348594665508, 32.223901405334573 ], [ 35.193416666666678, 32.224 ], [ 35.193719347636033, 32.224118990580223 ], [ 35.194000000000131, 32.224166666666747 ], [ 35.194041666666692, 32.224059936523417 ], [ 35.194083333333253, 32.224166666666747 ], [ 35.194288566589421, 32.224038566589343 ], [ 35.195044766744047, 32.223878100077457 ], [ 35.19512189992281, 32.223788566589462 ], [ 35.196000816345304, 32.22369891357431 ], [ 35.19620523325608, 32.22372830963144 ], [ 35.19603184000664, 32.223877698262527 ], [ 35.196057757059805, 32.224200241088909 ], [ 35.196, 32.22425 ], [ 35.196, 32.224333333333334 ], [ 35.19616308339431, 32.224580120086671 ], [ 35.196051719665604, 32.225076883951942 ], [ 35.196382629394577, 32.225200702667223 ], [ 35.196537943522173, 32.22530184173587 ], [ 35.19688675944019, 32.22522364552816 ], [ 35.197333333333404, 32.22533333333331 ] ], [ [ 35.196388140360625, 32.22335160319011 ], [ 35.196315063476561, 32.223278526306217 ], [ 35.196416666666778, 32.22325 ], [ 35.196388140360625, 32.22335160319011 ] ], [ [ 35.196388671875013, 32.222955965677841 ], [ 35.196583333333365, 32.22291666666672 ], [ 35.196686205546143, 32.223123624165851 ], [ 35.196461819966714, 32.223194661458308 ], [ 35.196388671875013, 32.222955965677841 ] ], [ [ 35.196475026448638, 32.222700444539385 ], [ 35.196666666666658, 32.222666666666782 ], [ 35.196621386210097, 32.222772476196269 ], [ 35.196475026448638, 32.222700444539385 ] ], [ [ 35.196871386210205, 32.222689142862976 ], [ 35.196725026448576, 32.222617111206091 ], [ 35.196916666666709, 32.222583333333318 ], [ 35.196871386210205, 32.222689142862976 ] ] ], [ [ [ 35.201998301188269, 32.224916304270494 ], [ 35.201833333333411, 32.224666666666735 ], [ 35.20165315755213, 32.224791067759156 ], [ 35.20157880147292, 32.225122741699238 ], [ 35.201725507100491, 32.225335221608418 ], [ 35.201998301188269, 32.224916304270494 ] ] ], [ [ [ 35.198083333333273, 32.225416666666774 ], [ 35.198416666666674, 32.225416666666774 ], [ 35.1985, 32.225416666666774 ], [ 35.198401524861708, 32.225222005208479 ], [ 35.198111328125037, 32.225277994791725 ], [ 35.198083333333273, 32.225416666666774 ] ] ], [ [ [ 35.205101603190144, 32.225471472422271 ], [ 35.205028526306194, 32.225398398081552 ], [ 35.205, 32.2255 ], [ 35.205101603190144, 32.225471472422271 ] ] ], [ [ [ 35.20158333333336, 32.225666666666712 ], [ 35.20158333333336, 32.22575 ], [ 35.201750000000118, 32.22575 ], [ 35.201750000000118, 32.225666666666712 ], [ 35.20158333333336, 32.225666666666712 ] ] ], [ [ [ 35.20158333333336, 32.225666666666712 ], [ 35.201453725179078, 32.225462942759236 ], [ 35.201379608154411, 32.225287057240848 ], [ 35.201287058512492, 32.225212942759185 ], [ 35.201086860656858, 32.224962942759248 ], [ 35.200885543823233, 32.225075012207014 ], [ 35.201053817749084, 32.225209763844816 ], [ 35.200804326375362, 32.225314895629879 ], [ 35.200770352681502, 32.225588019053134 ], [ 35.200901545206762, 32.225751847585173 ], [ 35.20158333333336, 32.225666666666712 ] ] ], [ [ [ 35.200166666666689, 32.225833333333469 ], [ 35.200138140360593, 32.225731731414783 ], [ 35.200065063476643, 32.225804805755672 ], [ 35.200166666666689, 32.225833333333469 ] ] ], [ [ [ 35.201750000000118, 32.22575 ], [ 35.201750000000118, 32.225833333333469 ], [ 35.201833333333411, 32.225833333333469 ], [ 35.201833333333411, 32.22575 ], [ 35.201750000000118, 32.22575 ] ] ], [ [ [ 35.173416666666753, 32.225916666666762 ], [ 35.1735, 32.225916666666762 ], [ 35.1735, 32.22575 ], [ 35.173416666666753, 32.22575 ], [ 35.173416666666753, 32.225916666666762 ] ] ], [ [ [ 35.200166666666689, 32.225833333333469 ], [ 35.200166666666689, 32.225916666666762 ], [ 35.20025, 32.225916666666762 ], [ 35.20025, 32.225833333333469 ], [ 35.200166666666689, 32.225833333333469 ] ] ], [ [ [ 35.208, 32.22575 ], [ 35.20775, 32.22575 ], [ 35.20775, 32.225916666666762 ], [ 35.208, 32.225916666666762 ], [ 35.208, 32.22575 ] ] ], [ [ [ 35.173416666666753, 32.225916666666762 ], [ 35.17333333333346, 32.225916666666762 ], [ 35.17333333333346, 32.226083333333349 ], [ 35.173416666666753, 32.226083333333349 ], [ 35.173416666666753, 32.225916666666762 ] ] ], [ [ [ 35.201833333333411, 32.225833333333469 ], [ 35.201906224568688, 32.226117369333849 ], [ 35.20225267028809, 32.226041229248153 ], [ 35.202054565429705, 32.225754304250074 ], [ 35.201962532043467, 32.22588759867358 ], [ 35.201833333333411, 32.225833333333469 ] ] ], [ [ [ 35.19825, 32.226083333333349 ], [ 35.198125, 32.22602119827269 ], [ 35.198, 32.226083333333349 ], [ 35.198, 32.226166666666643 ], [ 35.19825, 32.226166666666643 ], [ 35.19825, 32.226083333333349 ] ] ], [ [ [ 35.173, 32.226833333333445 ], [ 35.172916666666765, 32.226833333333445 ], [ 35.172916666666765, 32.226916666666739 ], [ 35.173, 32.226916666666739 ], [ 35.173, 32.226833333333445 ] ] ], [ [ [ 35.172916666666765, 32.227 ], [ 35.172833333333301, 32.227 ], [ 35.172833333333301, 32.22716666666679 ], [ 35.172916666666765, 32.22716666666679 ], [ 35.172916666666765, 32.227 ] ] ], [ [ [ 35.186617369334044, 32.227791556040472 ], [ 35.186523644765316, 32.227551732381244 ], [ 35.18625, 32.227666666666778 ], [ 35.18625, 32.22775 ], [ 35.18625, 32.227833333333365 ], [ 35.186617369334044, 32.227791556040472 ] ] ], [ [ [ 35.19775, 32.227833333333365 ], [ 35.19775, 32.227583333333314 ], [ 35.197833333333392, 32.227583333333314 ], [ 35.197952969869107, 32.227490989685009 ], [ 35.197463696797797, 32.227369635264097 ], [ 35.197416666666697, 32.227333333333434 ], [ 35.197333333333404, 32.227333333333434 ], [ 35.197333333333404, 32.22725 ], [ 35.197250000000111, 32.22725 ], [ 35.197306327819831, 32.22746949386601 ], [ 35.197534037272192, 32.227799297332865 ], [ 35.19775, 32.227833333333365 ] ] ], [ [ [ 35.1725, 32.227916666666715 ], [ 35.172583333333364, 32.227916666666715 ], [ 35.172583333333364, 32.227833333333365 ], [ 35.172583333333364, 32.22775 ], [ 35.1725, 32.22775 ], [ 35.1725, 32.227916666666715 ] ] ], [ [ [ 35.1725, 32.227916666666715 ], [ 35.172416666666777, 32.227916666666715 ], [ 35.172416666666777, 32.228083333333473 ], [ 35.1725, 32.228083333333473 ], [ 35.1725, 32.228 ], [ 35.1725, 32.227916666666715 ] ] ], [ [ [ 35.204805338541746, 32.227972005208414 ], [ 35.204833333333283, 32.227833333333365 ], [ 35.20475, 32.227833333333365 ], [ 35.20475, 32.227916666666715 ], [ 35.204583333333403, 32.227916666666715 ], [ 35.204583333333403, 32.228 ], [ 35.20475, 32.228083333333473 ], [ 35.204805338541746, 32.227972005208414 ] ] ], [ [ [ 35.186554805755748, 32.228101601918524 ], [ 35.186583333333374, 32.228 ], [ 35.186481731414858, 32.228028527577806 ], [ 35.186554805755748, 32.228101601918524 ] ] ], [ [ [ 35.172449600855487, 32.22825 ], [ 35.172333333333313, 32.228166666666766 ], [ 35.172333333333313, 32.228333333333353 ], [ 35.172449600855487, 32.22825 ] ] ], [ [ [ 35.200888140360632, 32.228684935251977 ], [ 35.200916666666785, 32.228583333333461 ], [ 35.200815063476568, 32.228611860911087 ], [ 35.200888140360632, 32.228684935251977 ] ] ], [ [ [ 35.202250000000106, 32.228833333333341 ], [ 35.202166666666642, 32.228833333333341 ], [ 35.202166666666642, 32.228916666666635 ], [ 35.202250000000106, 32.228916666666635 ], [ 35.202250000000106, 32.228833333333341 ] ] ], [ [ [ 35.172083333333376, 32.228916666666635 ], [ 35.172, 32.228916666666635 ], [ 35.172, 32.229 ], [ 35.172083333333376, 32.229 ], [ 35.172083333333376, 32.228916666666635 ] ] ], [ [ [ 35.203454477945911, 32.229016175587958 ], [ 35.203233655293843, 32.228836022694964 ], [ 35.203166666666789, 32.228916666666635 ], [ 35.203166666666789, 32.229 ], [ 35.203083333333268, 32.229 ], [ 35.203183965047288, 32.229121145884221 ], [ 35.203454477945911, 32.229016175587958 ] ] ], [ [ [ 35.172, 32.229166666666742 ], [ 35.171916666666789, 32.229166666666742 ], [ 35.171916666666789, 32.22925 ], [ 35.172, 32.22925 ], [ 35.172, 32.229166666666742 ] ] ], [ [ [ 35.19788814036059, 32.22960160191866 ], [ 35.197916666666686, 32.2295 ], [ 35.197815063476639, 32.22952852757777 ], [ 35.19788814036059, 32.22960160191866 ] ] ], [ [ [ 35.203816350301111, 32.229550145467101 ], [ 35.20375, 32.229416666666793 ], [ 35.203472005208425, 32.229451721191424 ], [ 35.203686612447086, 32.229611328125145 ], [ 35.203816350301111, 32.229550145467101 ] ] ], [ [ [ 35.206083333333368, 32.22575 ], [ 35.205861328125025, 32.225638671875117 ], [ 35.205857360839843, 32.225388671875066 ], [ 35.206049608866408, 32.225482561747299 ], [ 35.206083333333368, 32.22575 ], [ 35.206134895324624, 32.225781771341985 ], [ 35.206285936991492, 32.226026903788238 ], [ 35.206548375447653, 32.226108647664432 ], [ 35.20669843800863, 32.225865104675279 ], [ 35.206801561991426, 32.225801561991489 ], [ 35.206833333333407, 32.22575 ], [ 35.206833333333407, 32.225666666666712 ], [ 35.207250000000101, 32.225666666666712 ], [ 35.207291666666663, 32.225559935251852 ], [ 35.207333333333395, 32.225666666666712 ], [ 35.2075, 32.225666666666712 ], [ 35.2075, 32.225583333333361 ], [ 35.20775, 32.225583333333361 ], [ 35.20775, 32.2255 ], [ 35.207833333333383, 32.2255 ], [ 35.207833333333383, 32.225416666666774 ], [ 35.208833333333359, 32.225416666666774 ], [ 35.209231427510701, 32.224883319854712 ], [ 35.209119636535661, 32.224797031402602 ], [ 35.20908333333341, 32.22475 ], [ 35.208833333333359, 32.22475 ], [ 35.208797030131109, 32.224797031402602 ], [ 35.20821496836345, 32.224895909627321 ], [ 35.208166666666727, 32.224833333333322 ], [ 35.208166666666727, 32.22475 ], [ 35.208083333333434, 32.22475 ], [ 35.208, 32.22475 ], [ 35.208054265340081, 32.224879199981785 ], [ 35.207812995910786, 32.225045781453559 ], [ 35.207666666666796, 32.22508333333343 ], [ 35.207614028930664, 32.225282852172882 ], [ 35.207381874084547, 32.225084664662745 ], [ 35.2075, 32.225 ], [ 35.207706184387234, 32.224934721628756 ], [ 35.207250000000101, 32.224583333333442 ], [ 35.207166666666808, 32.224583333333442 ], [ 35.206909528096617, 32.224714925130286 ], [ 35.207004605611189, 32.224945594787698 ], [ 35.206791666666675, 32.224857826232949 ], [ 35.206637738545737, 32.224921272277811 ], [ 35.206741333007812, 32.224669938405498 ], [ 35.206583333333356, 32.224583333333442 ], [ 35.206306818644123, 32.224544169108128 ], [ 35.2065, 32.224500000000148 ], [ 35.2065, 32.224416666666627 ], [ 35.206416666666712, 32.224416666666627 ], [ 35.205950703938754, 32.224299296061304 ], [ 35.205916666666724, 32.22425 ], [ 35.20583333333343, 32.22425 ], [ 35.205199193318663, 32.224282526652019 ], [ 35.205134140014763, 32.224550806681464 ], [ 35.204972305297929, 32.224919850667447 ], [ 35.205066220601339, 32.225254035949717 ], [ 35.205461537679071, 32.225393082936591 ], [ 35.205583333333379, 32.225583333333361 ], [ 35.205666666666673, 32.22575 ], [ 35.205751459757607, 32.225823052724195 ], [ 35.205455233256146, 32.225955234527646 ], [ 35.20516792043054, 32.226115537007786 ], [ 35.204666666666697, 32.226166666666643 ], [ 35.204620742797886, 32.226269484202135 ], [ 35.204307604471978, 32.226215380350766 ], [ 35.204474271138565, 32.226140937805326 ], [ 35.20450000000011, 32.226083333333349 ], [ 35.20450000000011, 32.226 ], [ 35.204333333333352, 32.226 ], [ 35.204210744221996, 32.225949623107908 ], [ 35.204086944580183, 32.225974086761596 ], [ 35.204150329589766, 32.226294848124269 ], [ 35.202951459248993, 32.226534791310655 ], [ 35.202916666666681, 32.226583333333338 ], [ 35.202916666666681, 32.226666666666631 ], [ 35.20275, 32.226666666666631 ], [ 35.20248473866792, 32.226734739939332 ], [ 35.202250000000106, 32.226833333333445 ], [ 35.202166666666642, 32.226833333333445 ], [ 35.202, 32.226916666666739 ], [ 35.201630221048902, 32.226977410634447 ], [ 35.20158333333336, 32.226916666666739 ], [ 35.201454477946015, 32.226878854115796 ], [ 35.201212188720717, 32.226787812550924 ], [ 35.200660964965891, 32.226665580749511 ], [ 35.200212188720741, 32.226350631713956 ], [ 35.200537211100254, 32.226080646514959 ], [ 35.20025, 32.225916666666762 ], [ 35.200215207417841, 32.226131875356032 ], [ 35.200034792582244, 32.226201457977311 ], [ 35.199881874084497, 32.226298542022789 ], [ 35.199632074991939, 32.226368124644068 ], [ 35.19950304667168, 32.225724529266358 ], [ 35.199999501546358, 32.22562500000015 ], [ 35.19991597239175, 32.225202292124493 ], [ 35.19975, 32.22508333333343 ], [ 35.19975, 32.22525 ], [ 35.199666666666701, 32.22525 ], [ 35.199666666666701, 32.22533333333331 ], [ 35.199500000000114, 32.22533333333331 ], [ 35.199500000000114, 32.225416666666774 ], [ 35.19925, 32.225416666666774 ], [ 35.198833358764773, 32.225457338968909 ], [ 35.198712941487713, 32.226098102569665 ], [ 35.199350560506275, 32.226018792470427 ], [ 35.199453725179012, 32.226379609425919 ], [ 35.199829223632833, 32.226486970265796 ], [ 35.199755101521873, 32.226620390574169 ], [ 35.198737106323335, 32.226329697926985 ], [ 35.19862960815442, 32.225953723907594 ], [ 35.1985, 32.22575 ], [ 35.198416666666674, 32.225583333333361 ], [ 35.198119636535694, 32.225463698069177 ], [ 35.198083333333273, 32.225416666666774 ], [ 35.197916666666686, 32.225416666666774 ], [ 35.197916666666686, 32.22533333333331 ], [ 35.197666666666805, 32.22533333333331 ], [ 35.197666666666805, 32.225416666666774 ], [ 35.197861999511815, 32.225466794331851 ], [ 35.19803403727218, 32.225715963999505 ], [ 35.198083333333273, 32.22575 ], [ 35.198125, 32.225643268585145 ], [ 35.198166666666793, 32.22575 ], [ 35.198361081441362, 32.225805586497017 ], [ 35.198453725179036, 32.226129609425811 ], [ 35.19875, 32.2265 ], [ 35.20004188283292, 32.226777006785198 ], [ 35.200166666666689, 32.226916666666739 ], [ 35.200327407836937, 32.226857636769694 ], [ 35.20130117543539, 32.22713164647422 ], [ 35.201280370076574, 32.227390605926644 ], [ 35.200676818847626, 32.227621901194198 ], [ 35.200378100077387, 32.227455234527611 ], [ 35.20025, 32.227416666666727 ], [ 35.200283281962072, 32.227550052642925 ], [ 35.200532834371018, 32.227867345174218 ], [ 35.200163406372099, 32.228112990061561 ], [ 35.200000000000102, 32.228416666666647 ], [ 35.200000000000102, 32.2285 ], [ 35.19975, 32.2285 ], [ 35.19971274820972, 32.228684532165516 ], [ 35.199583333333408, 32.22875 ], [ 35.199500000000114, 32.22875 ], [ 35.19941666666665, 32.22875 ], [ 35.19941666666665, 32.228833333333341 ], [ 35.19925, 32.228833333333341 ], [ 35.19925, 32.228916666666635 ], [ 35.199166666666713, 32.228916666666635 ], [ 35.198916666666662, 32.228916666666635 ], [ 35.198916666666662, 32.229 ], [ 35.198833333333369, 32.229 ], [ 35.198786303202439, 32.229036301930819 ], [ 35.198679575602171, 32.229174570719408 ], [ 35.197963696797785, 32.229467563629214 ], [ 35.198297030130959, 32.229463698069253 ], [ 35.198536303202388, 32.22936963526422 ], [ 35.19875, 32.229333333333329 ], [ 35.19893101501475, 32.229137967427675 ], [ 35.198833333333369, 32.229416666666793 ], [ 35.198884839375808, 32.229617369333937 ], [ 35.199465962727913, 32.22954929733271 ], [ 35.199534037272144, 32.229450702667293 ], [ 35.199950703938839, 32.229294795990086 ], [ 35.199882629394608, 32.229034036000655 ], [ 35.199718317667703, 32.228781709035275 ], [ 35.200083333333396, 32.228583333333461 ], [ 35.200277994791747, 32.228194661458303 ], [ 35.200416666666797, 32.228166666666766 ], [ 35.200732785542925, 32.227799746195501 ], [ 35.200987208048559, 32.227779303232978 ], [ 35.20129476674407, 32.227871901194305 ], [ 35.201590253194297, 32.228036764780711 ], [ 35.20129476674407, 32.227507153828981 ], [ 35.201375823974672, 32.227452593485566 ], [ 35.201500330607075, 32.227597109476733 ], [ 35.201705233256007, 32.227711432139188 ], [ 35.201878100077352, 32.227788567861012 ], [ 35.20223069000258, 32.228038567861063 ], [ 35.202538566589396, 32.227935646057176 ], [ 35.202408701578747, 32.227547723134421 ], [ 35.202211031595937, 32.227531840006577 ], [ 35.202061642964736, 32.227705234527718 ], [ 35.201788566589357, 32.227628098805894 ], [ 35.20163429768877, 32.227449036916141 ], [ 35.2015, 32.227333333333434 ], [ 35.201388549804676, 32.227261985778853 ], [ 35.201592496236117, 32.227050806681405 ], [ 35.201666666666654, 32.22716666666679 ], [ 35.201953725179067, 32.227037057240864 ], [ 35.20303393046072, 32.226728360494121 ], [ 35.203148412068742, 32.226585399627709 ], [ 35.203939460754498, 32.226487004597971 ], [ 35.204157447815078, 32.226759218851782 ], [ 35.20425, 32.226833333333445 ], [ 35.20425, 32.226750000000152 ], [ 35.20450000000011, 32.226750000000152 ], [ 35.204472005208402, 32.226611328125102 ], [ 35.204416666666646, 32.2265 ], [ 35.204416666666646, 32.226416666666751 ], [ 35.20450000000011, 32.226416666666751 ], [ 35.204739270528137, 32.226322603861547 ], [ 35.205594062805233, 32.226177396138553 ], [ 35.205702969869094, 32.226036301930776 ], [ 35.206047030131117, 32.225797031402578 ], [ 35.206083333333368, 32.22575 ] ], [ [ 35.199083333333419, 32.229 ], [ 35.199160059611017, 32.229195175170901 ], [ 35.198963696797762, 32.229092343648404 ], [ 35.199083333333419, 32.229 ] ], [ [ 35.200038052876835, 32.226689142862995 ], [ 35.199891693115205, 32.22661711120611 ], [ 35.200083333333396, 32.226583333333338 ], [ 35.200038052876835, 32.226689142862995 ] ], [ [ 35.205385650634696, 32.224964089711477 ], [ 35.205682210286568, 32.224885650634747 ], [ 35.205750000000137, 32.225 ], [ 35.206015134175743, 32.224886202494304 ], [ 35.20653345743807, 32.225050107320158 ], [ 35.206583333333356, 32.22525 ], [ 35.206679143269866, 32.225304627736477 ], [ 35.206314768473362, 32.225446927388532 ], [ 35.206250000000125, 32.22533333333331 ], [ 35.206138671875124, 32.225277994791725 ], [ 35.205666666666673, 32.22525 ], [ 35.205473017374686, 32.225205724080524 ], [ 35.205385650634696, 32.224964089711477 ] ], [ [ 35.206750000000113, 32.22508333333343 ], [ 35.206648396809896, 32.225054805755576 ], [ 35.20672147369379, 32.224981731414857 ], [ 35.206750000000113, 32.22508333333343 ], [ 35.20725351206471, 32.225020425160665 ], [ 35.20745372517905, 32.225443770090806 ], [ 35.207093101501471, 32.225537057240899 ], [ 35.206750000000113, 32.22508333333343 ] ], [ [ 35.208558359781875, 32.225200444539496 ], [ 35.20875, 32.225166666666723 ], [ 35.208704719543505, 32.22527247619638 ], [ 35.208558359781875, 32.225200444539496 ] ] ], [ [ [ 35.204054807027319, 32.229768268585246 ], [ 35.204083333333415, 32.229666666666731 ], [ 35.203981730143369, 32.229695194244528 ], [ 35.204054807027319, 32.229768268585246 ] ] ], [ [ [ 35.171916666666789, 32.229833333333318 ], [ 35.171916666666789, 32.229416666666793 ], [ 35.171861328125033, 32.229444661458388 ], [ 35.171805338541787, 32.229722005208259 ], [ 35.17175, 32.229833333333318 ], [ 35.171916666666789, 32.229833333333318 ] ] ], [ [ [ 35.19941666666665, 32.23025 ], [ 35.199375, 32.230143268585152 ], [ 35.199333333333357, 32.23025 ], [ 35.19941666666665, 32.23025 ] ] ], [ [ [ 35.17175, 32.230166666666719 ], [ 35.171666666666738, 32.230166666666719 ], [ 35.171666666666738, 32.230333333333476 ], [ 35.17175, 32.230333333333476 ], [ 35.17175, 32.230166666666719 ] ] ], [ [ [ 35.19941666666665, 32.23025 ], [ 35.19941666666665, 32.230333333333476 ], [ 35.199523396809923, 32.230291666666744 ], [ 35.19941666666665, 32.23025 ] ] ], [ [ [ 35.192066942850772, 32.230468006134004 ], [ 35.192, 32.230333333333476 ], [ 35.191805338541712, 32.230372631073124 ], [ 35.191892873128211, 32.230527994791601 ], [ 35.192066942850772, 32.230468006134004 ] ] ], [ [ [ 35.19941666666665, 32.230333333333476 ], [ 35.19925, 32.230333333333476 ], [ 35.19925, 32.230583333333357 ], [ 35.19941666666665, 32.230583333333357 ], [ 35.19941666666665, 32.230333333333476 ] ] ], [ [ [ 35.197583333333341, 32.22975 ], [ 35.19775, 32.229666666666731 ], [ 35.197700963338264, 32.229580661773753 ], [ 35.197397112528506, 32.229695192972827 ], [ 35.197333333333404, 32.229583333333437 ], [ 35.196916666666709, 32.229583333333437 ], [ 35.196916666666709, 32.2295 ], [ 35.196626589457196, 32.229555381775015 ], [ 35.196930320739796, 32.229825202942038 ], [ 35.197092048645004, 32.229650653839201 ], [ 35.197213223775179, 32.229879650116061 ], [ 35.1969662755331, 32.230108459472774 ], [ 35.196793256123954, 32.230602105458729 ], [ 35.196876589457247, 32.230543254852421 ], [ 35.196956743876171, 32.230456745147762 ], [ 35.197043375650992, 32.230376476287915 ], [ 35.197039957682364, 32.230290190378867 ], [ 35.197126589457184, 32.23020992151902 ], [ 35.19745674387616, 32.229790078481187 ], [ 35.197583333333341, 32.22975 ] ] ], [ [ [ 35.19680480702732, 32.230768268585223 ], [ 35.196833333333416, 32.23066666666665 ], [ 35.196731730143199, 32.230695194244504 ], [ 35.19680480702732, 32.230768268585223 ] ] ], [ [ [ 35.196786239624032, 32.230936350504578 ], [ 35.196666666666658, 32.230833333333464 ], [ 35.196666666666658, 32.230916666666758 ], [ 35.1965, 32.230916666666758 ], [ 35.196394030253146, 32.231205234527579 ], [ 35.196786239624032, 32.230936350504578 ] ] ], [ [ [ 35.171666666666738, 32.230833333333464 ], [ 35.171583333333388, 32.230833333333464 ], [ 35.171583333333388, 32.23125 ], [ 35.171666666666738, 32.23125 ], [ 35.171666666666738, 32.230833333333464 ] ] ], [ [ [ 35.1985, 32.231916666666734 ], [ 35.19833333333338, 32.231916666666734 ], [ 35.19833333333338, 32.232 ], [ 35.198692957560297, 32.231962112426743 ], [ 35.1985, 32.231916666666734 ] ] ], [ [ [ 35.188521710713758, 32.231961325327688 ], [ 35.188416666666683, 32.23175 ], [ 35.188138671875095, 32.231785054524721 ], [ 35.188211429595981, 32.232027994791736 ], [ 35.188521710713758, 32.231961325327688 ] ] ], [ [ [ 35.198, 32.232 ], [ 35.197916666666686, 32.232 ], [ 35.197958521525095, 32.232106796264645 ], [ 35.198102452596117, 32.232040152231946 ], [ 35.198, 32.232 ] ] ], [ [ [ 35.171583333333388, 32.231833333333441 ], [ 35.1715, 32.231833333333441 ], [ 35.1715, 32.232166666666785 ], [ 35.171583333333388, 32.232166666666785 ], [ 35.171583333333388, 32.231833333333441 ] ] ], [ [ [ 35.184788054148498, 32.232355809529565 ], [ 35.184833333333358, 32.23225 ], [ 35.184641693115339, 32.232283777872851 ], [ 35.184788054148498, 32.232355809529565 ] ] ], [ [ [ 35.189024126688707, 32.232290779113896 ], [ 35.189083333333258, 32.232166666666785 ], [ 35.188657213846909, 32.232199141184424 ], [ 35.188826015472387, 32.23229166666664 ], [ 35.18855382792168, 32.232440862019985 ], [ 35.188886768341092, 32.232608050028489 ], [ 35.189060316721566, 32.232378582000763 ], [ 35.189024126688707, 32.232290779113896 ] ] ], [ [ [ 35.199500000000114, 32.23225 ], [ 35.199134213765376, 32.232083442687951 ], [ 35.199000000000126, 32.232416666666722 ], [ 35.199083333333419, 32.232416666666722 ], [ 35.199083333333419, 32.2325 ], [ 35.199342651367317, 32.232608915964761 ], [ 35.199583333333408, 32.23225 ], [ 35.199500000000114, 32.23225 ] ] ], [ [ [ 35.193704719543518, 32.23277247619643 ], [ 35.19375, 32.232666666666773 ], [ 35.193558359781889, 32.232700444539375 ], [ 35.193704719543518, 32.23277247619643 ] ] ], [ [ [ 35.1715, 32.232916666666654 ], [ 35.171416666666801, 32.232916666666654 ], [ 35.171416666666801, 32.233 ], [ 35.1715, 32.233 ], [ 35.1715, 32.232916666666654 ] ] ], [ [ [ 35.196083333333377, 32.233083333333468 ], [ 35.196083333333377, 32.233 ], [ 35.196083333333377, 32.232916666666654 ], [ 35.196054036458406, 32.232858754475899 ], [ 35.195799921671608, 32.232734650929785 ], [ 35.195722005208438, 32.232888671875116 ], [ 35.195472244262817, 32.232960750579934 ], [ 35.195805338541732, 32.233027994791712 ], [ 35.19591666666679, 32.233083333333468 ], [ 35.195950154622494, 32.233017134348472 ], [ 35.196083333333377, 32.233083333333468 ] ] ], [ [ [ 35.196, 32.233166666666762 ], [ 35.19591666666679, 32.233166666666762 ], [ 35.195809870401945, 32.233208521525171 ], [ 35.195960876464881, 32.233266492207861 ], [ 35.196, 32.233166666666762 ] ] ], [ [ [ 35.1885, 32.233333333333348 ], [ 35.188393828074197, 32.233139636993485 ], [ 35.188333333333389, 32.23325 ], [ 35.188333333333389, 32.233333333333348 ], [ 35.1885, 32.233333333333348 ] ] ], [ [ [ 35.183666666666795, 32.23325 ], [ 35.1835, 32.23325 ], [ 35.183546348571724, 32.233358306884782 ], [ 35.183772215525323, 32.233295168558755 ], [ 35.183666666666795, 32.23325 ] ] ], [ [ [ 35.194916666666643, 32.2335 ], [ 35.194956853230735, 32.233223968505968 ], [ 35.195252571105982, 32.233123193105143 ], [ 35.194948438008623, 32.233051561991431 ], [ 35.194884895324833, 32.232948438008691 ], [ 35.194757812500029, 32.232870133717995 ], [ 35.194615104675279, 32.2325515619915 ], [ 35.194583333333412, 32.232333333333372 ], [ 35.194515205383368, 32.232196273803822 ], [ 35.19475, 32.232166666666785 ], [ 35.194792732238739, 32.232104774475147 ], [ 35.195534037272125, 32.231867369333941 ], [ 35.196052619934107, 32.231798857371075 ], [ 35.196009887695368, 32.231608245849657 ], [ 35.196367370605458, 32.231361427307149 ], [ 35.196117370605577, 32.231367369333952 ], [ 35.195890261332124, 32.231515260060632 ], [ 35.195617370605589, 32.231617369334003 ], [ 35.195514648437552, 32.231766147613655 ], [ 35.194583333333412, 32.232 ], [ 35.194500000000119, 32.232 ], [ 35.194284037272269, 32.231965963999528 ], [ 35.194083333333253, 32.231833333333441 ], [ 35.193958333333399, 32.231771198272781 ], [ 35.193833333333373, 32.231833333333441 ], [ 35.193722969055102, 32.231893828074192 ], [ 35.193916666666667, 32.232 ], [ 35.194000000000131, 32.232 ], [ 35.194000000000131, 32.232083333333321 ], [ 35.194151860555053, 32.232007846832346 ], [ 35.194277994791776, 32.232193927764911 ], [ 35.194000000000131, 32.232333333333372 ], [ 35.19396596272793, 32.232465963999516 ], [ 35.193799296061172, 32.23258103688562 ], [ 35.193892303466839, 32.232651528676342 ], [ 35.19429143524178, 32.232391619364535 ], [ 35.194715962727855, 32.233034036000674 ], [ 35.194784037272257, 32.233465963999436 ], [ 35.194916666666643, 32.2335 ] ] ], [ [ [ 35.194916666666643, 32.2335 ], [ 35.194916666666643, 32.233583333333456 ], [ 35.195000000000107, 32.233583333333456 ], [ 35.195000000000107, 32.2335 ], [ 35.194916666666643, 32.2335 ] ] ], [ [ [ 35.197138140360494, 32.233684935251972 ], [ 35.197166666666647, 32.233583333333456 ], [ 35.1970650634766, 32.233611860911083 ], [ 35.197138140360494, 32.233684935251972 ] ] ], [ [ [ 35.200166666666689, 32.233333333333348 ], [ 35.200083333333396, 32.233333333333348 ], [ 35.199963696797681, 32.233637654622441 ], [ 35.200037757873531, 32.233715221405078 ], [ 35.200333333333276, 32.23366666666675 ], [ 35.200333333333276, 32.233583333333456 ], [ 35.200203918457134, 32.233517865498925 ], [ 35.200166666666689, 32.233333333333348 ] ] ], [ [ [ 35.196112083435025, 32.233690963745232 ], [ 35.195873497009416, 32.233557332356781 ], [ 35.195833333333269, 32.23375 ], [ 35.196, 32.23375 ], [ 35.196112083435025, 32.233690963745232 ] ] ], [ [ [ 35.19819239552811, 32.233807604471792 ], [ 35.198140937805249, 32.233692395528294 ], [ 35.198083333333273, 32.23366666666675 ], [ 35.198083333333273, 32.23375 ], [ 35.198, 32.23375 ], [ 35.198035123189356, 32.233942395528175 ], [ 35.198357760111492, 32.233881465911963 ], [ 35.19819239552811, 32.233807604471792 ] ] ], [ [ [ 35.189222005208308, 32.233972005208386 ], [ 35.189333333333366, 32.233916666666801 ], [ 35.189416666666659, 32.233916666666801 ], [ 35.189416666666659, 32.233833333333337 ], [ 35.189356638590482, 32.233479966481639 ], [ 35.189166666666779, 32.233333333333348 ], [ 35.189083333333258, 32.233333333333348 ], [ 35.189083333333258, 32.23366666666675 ], [ 35.189, 32.23366666666675 ], [ 35.18906619898479, 32.233799844106102 ], [ 35.189, 32.233833333333337 ], [ 35.189, 32.233916666666801 ], [ 35.189, 32.234 ], [ 35.189083333333258, 32.234 ], [ 35.189222005208308, 32.233972005208386 ] ] ], [ [ [ 35.195000000000107, 32.233583333333456 ], [ 35.195076118469331, 32.233879945119213 ], [ 35.19525, 32.234 ], [ 35.195206840515141, 32.233726142883427 ], [ 35.195000000000107, 32.233583333333456 ] ] ], [ [ [ 35.19941666666665, 32.233916666666801 ], [ 35.199315063476604, 32.233888139089004 ], [ 35.199388140360497, 32.233815064748114 ], [ 35.19941666666665, 32.233916666666801 ], [ 35.199500000000114, 32.233916666666801 ], [ 35.199614491780608, 32.233828292846738 ], [ 35.199202969868963, 32.233713698069323 ], [ 35.199166666666713, 32.23366666666675 ], [ 35.199083333333419, 32.23366666666675 ], [ 35.199000000000126, 32.23366666666675 ], [ 35.199000000000126, 32.233583333333456 ], [ 35.199000000000126, 32.2335 ], [ 35.198916666666662, 32.2335 ], [ 35.198774709065788, 32.233613676706966 ], [ 35.1987973836263, 32.233795959472729 ], [ 35.198462941487605, 32.233891581217563 ], [ 35.198549908955897, 32.233975316365616 ], [ 35.199254684448249, 32.234062980651913 ], [ 35.199379608154288, 32.233962942759263 ], [ 35.19941666666665, 32.233916666666801 ] ] ], [ [ [ 35.171416666666801, 32.234 ], [ 35.171333333333337, 32.234 ], [ 35.171333333333337, 32.234083333333444 ], [ 35.171416666666801, 32.234083333333444 ], [ 35.171416666666801, 32.234 ] ] ], [ [ [ 35.192333333333409, 32.23375 ], [ 35.192416666666702, 32.233466023763015 ], [ 35.192583333333346, 32.23366666666675 ], [ 35.19266666666681, 32.23366666666675 ], [ 35.19266666666681, 32.23375 ], [ 35.1927231877645, 32.233952968597521 ], [ 35.192940071105966, 32.233852784474834 ], [ 35.193, 32.2335 ], [ 35.193, 32.233333333333348 ], [ 35.192805338541689, 32.233294035593701 ], [ 35.192867309570318, 32.233184043884307 ], [ 35.193, 32.23325 ], [ 35.193117462158227, 32.233059365590464 ], [ 35.193531771342009, 32.232918177286933 ], [ 35.19345697530116, 32.232659516652518 ], [ 35.193333333333385, 32.232583333333309 ], [ 35.193226603190112, 32.232541666666748 ], [ 35.193333333333385, 32.2325 ], [ 35.193449193318656, 32.232449193318814 ], [ 35.193859298706172, 32.232373318990142 ], [ 35.193615859985414, 32.232217473347987 ], [ 35.193550806681344, 32.23211585998547 ], [ 35.19325, 32.232083333333321 ], [ 35.193216512044387, 32.232348910013968 ], [ 35.193083333333334, 32.232083333333321 ], [ 35.192750000000103, 32.232083333333321 ], [ 35.192638613382996, 32.23214438883457 ], [ 35.19280382792158, 32.232362838745189 ], [ 35.192833333333397, 32.2325 ], [ 35.192854530334557, 32.232645468393969 ], [ 35.19297880299888, 32.232771198272701 ], [ 35.193, 32.232916666666654 ], [ 35.193106730143313, 32.232958333333443 ], [ 35.193, 32.233 ], [ 35.192968228658174, 32.233051561991431 ], [ 35.192741282145221, 32.233128901163866 ], [ 35.192592051188228, 32.233371098836244 ], [ 35.192175582885682, 32.233513023376474 ], [ 35.191908854166741, 32.233429943084843 ], [ 35.19180156199144, 32.233115104675278 ], [ 35.191648618062459, 32.233051561991431 ], [ 35.1915, 32.233333333333348 ], [ 35.191792327880876, 32.233479925791528 ], [ 35.191861328125015, 32.233734856923547 ], [ 35.191666666666663, 32.233833333333337 ], [ 35.19129854075112, 32.234035392761371 ], [ 35.191416816711524, 32.234199390411504 ], [ 35.191534792582218, 32.234034791310762 ], [ 35.191715207417815, 32.233965208689483 ], [ 35.191991422017452, 32.233789845784486 ], [ 35.192333333333409, 32.23375 ] ], [ [ 35.192638671875102, 32.23345596440646 ], [ 35.192833333333397, 32.233416666666642 ], [ 35.192900276184162, 32.233551339467397 ], [ 35.1927262064616, 32.233611328124994 ], [ 35.192638671875102, 32.23345596440646 ] ] ], [ [ [ 35.200583333333384, 32.234166666666738 ], [ 35.2005, 32.234050399780301 ], [ 35.200416666666797, 32.234166666666738 ], [ 35.200416666666797, 32.23425 ], [ 35.2005, 32.23425 ], [ 35.2005, 32.234166666666738 ], [ 35.200583333333384, 32.234166666666738 ] ] ], [ [ [ 35.200583333333384, 32.234166666666738 ], [ 35.200583333333384, 32.23425 ], [ 35.200666666666677, 32.23425 ], [ 35.200666666666677, 32.234166666666738 ], [ 35.200583333333384, 32.234166666666738 ] ] ], [ [ [ 35.186797653198369, 32.234274579366115 ], [ 35.186833333333254, 32.234 ], [ 35.186721249898312, 32.234059036254962 ], [ 35.186797653198369, 32.234274579366115 ] ] ], [ [ [ 35.190971472422291, 32.234351601918547 ], [ 35.191, 32.23425 ], [ 35.190898398081572, 32.234278527577828 ], [ 35.190971472422291, 32.234351601918547 ] ] ], [ [ [ 35.1925, 32.234083333333444 ], [ 35.192250000000115, 32.234083333333444 ], [ 35.192166666666651, 32.23425 ], [ 35.192273396809924, 32.234291666666763 ], [ 35.192166666666651, 32.234333333333325 ], [ 35.192166666666651, 32.2345 ], [ 35.192620913187739, 32.234436587015921 ], [ 35.1925, 32.234083333333444 ] ] ], [ [ [ 35.184583333333251, 32.23425 ], [ 35.184482701619459, 32.234128854115738 ], [ 35.184413007100488, 32.234521392822387 ], [ 35.184537812550957, 32.234371145884268 ], [ 35.184583333333251, 32.234333333333325 ], [ 35.184583333333251, 32.23425 ] ] ], [ [ [ 35.194000000000131, 32.234666666666726 ], [ 35.19389382680265, 32.234472970326863 ], [ 35.193833333333373, 32.234583333333376 ], [ 35.193833333333373, 32.234666666666726 ], [ 35.194000000000131, 32.234666666666726 ] ] ], [ [ [ 35.198797691345135, 32.234690959930447 ], [ 35.198833333333369, 32.234416666666789 ], [ 35.19869541676843, 32.234445416768494 ], [ 35.198637916565076, 32.234554583231727 ], [ 35.198387916565025, 32.234629258473717 ], [ 35.198797691345135, 32.234690959930447 ] ] ], [ [ [ 35.197833333333392, 32.234583333333376 ], [ 35.197833333333392, 32.234666666666726 ], [ 35.197916666666686, 32.234666666666726 ], [ 35.197916666666686, 32.23475 ], [ 35.198038439432764, 32.234645086924274 ], [ 35.197833333333392, 32.234583333333376 ] ] ], [ [ [ 35.200666666666677, 32.23425 ], [ 35.200666666666677, 32.234333333333325 ], [ 35.200666666666677, 32.234416666666789 ], [ 35.20075, 32.234416666666789 ], [ 35.200783960978185, 32.234349533081172 ], [ 35.200972005208314, 32.234444661458326 ], [ 35.2010392990112, 32.234777994791727 ], [ 35.201138671875128, 32.234722005208425 ], [ 35.201205965678014, 32.234388671875081 ], [ 35.201388671875009, 32.234444661458326 ], [ 35.201611328125068, 32.234638671875132 ], [ 35.202, 32.234666666666726 ], [ 35.202055338541754, 32.234638671875132 ], [ 35.202166666666642, 32.234416666666789 ], [ 35.202036303202419, 32.234380364735898 ], [ 35.201590291341176, 32.234049690246707 ], [ 35.201463696797816, 32.234213698069311 ], [ 35.200666666666677, 32.23425 ] ] ], [ [ [ 35.194583333333412, 32.234666666666726 ], [ 35.194500000000119, 32.234666666666726 ], [ 35.194533777872721, 32.23485830688486 ], [ 35.194773473103851, 32.234795706431157 ], [ 35.194608306884845, 32.234725026448587 ], [ 35.194583333333412, 32.234666666666726 ] ] ], [ [ [ 35.192067555745382, 32.234802570343106 ], [ 35.192, 32.234666666666726 ], [ 35.191722005208419, 32.23470172119147 ], [ 35.191808247884182, 32.234861328125021 ], [ 35.192067555745382, 32.234802570343106 ] ] ], [ [ [ 35.190583333333393, 32.23475 ], [ 35.190583333333393, 32.2345 ], [ 35.190666666666687, 32.2345 ], [ 35.19075, 32.2345 ], [ 35.190813786824549, 32.234337741851846 ], [ 35.190333333333342, 32.234416666666789 ], [ 35.190333333333342, 32.2345 ], [ 35.189916666666647, 32.2345 ], [ 35.189916666666647, 32.23475 ], [ 35.190182654062824, 32.234783541361537 ], [ 35.190306318918999, 32.235027994791608 ], [ 35.190472005208392, 32.234972005208363 ], [ 35.190583333333393, 32.23475 ] ], [ [ 35.19031506474812, 32.234611860911059 ], [ 35.190416666666806, 32.234583333333376 ], [ 35.190388139089009, 32.234684935251948 ], [ 35.19031506474812, 32.234611860911059 ] ] ], [ [ [ 35.171333333333337, 32.235 ], [ 35.17125, 32.235 ], [ 35.17125, 32.235083333333364 ], [ 35.171333333333337, 32.235083333333364 ], [ 35.171333333333337, 32.235 ] ] ], [ [ [ 35.197916666666686, 32.23475 ], [ 35.197833333333392, 32.23475 ], [ 35.197833333333392, 32.234666666666726 ], [ 35.197726603190119, 32.234625 ], [ 35.197833333333392, 32.234583333333376 ], [ 35.197833333333392, 32.2345 ], [ 35.197583333333341, 32.2345 ], [ 35.197554807027188, 32.234601601918598 ], [ 35.197481730143295, 32.234528527577709 ], [ 35.197583333333341, 32.2345 ], [ 35.197499816894549, 32.234395708719944 ], [ 35.197275220235269, 32.234367771148754 ], [ 35.197306640625129, 32.234620390574207 ], [ 35.197203725179179, 32.234546276092544 ], [ 35.197078598022529, 32.234390023549395 ], [ 35.196787058512484, 32.2342129427592 ], [ 35.196653592427708, 32.234046276092613 ], [ 35.196546274821003, 32.234285831451416 ], [ 35.196870391845778, 32.234712942759188 ], [ 35.196916666666709, 32.23475 ], [ 35.197309483846027, 32.234816730499347 ], [ 35.197666666666805, 32.235083333333364 ], [ 35.197916666666686, 32.235083333333364 ], [ 35.197916666666686, 32.23475 ] ] ], [ [ [ 35.199202664693189, 32.235074701944995 ], [ 35.199000000000126, 32.23475 ], [ 35.198711433410665, 32.234916372935004 ], [ 35.198816670735653, 32.235205234527598 ], [ 35.199202664693189, 32.235074701944995 ] ] ], [ [ [ 35.184649551391715, 32.235133216222152 ], [ 35.184583333333251, 32.235 ], [ 35.1845, 32.235 ], [ 35.1845, 32.235083333333364 ], [ 35.184416666666664, 32.235083333333364 ], [ 35.184416666666664, 32.23525 ], [ 35.184649551391715, 32.235133216222152 ] ] ], [ [ [ 35.193930674235105, 32.235282526016363 ], [ 35.193777470906696, 32.23498760096237 ], [ 35.193666666666786, 32.234916666666777 ], [ 35.193583333333265, 32.234916666666777 ], [ 35.193583333333265, 32.235083333333364 ], [ 35.1935, 32.235083333333364 ], [ 35.193561014811166, 32.23517864290875 ], [ 35.193930674235105, 32.235282526016363 ] ] ], [ [ [ 35.19525, 32.234 ], [ 35.19525, 32.234166666666738 ], [ 35.195550771077592, 32.234542676290005 ], [ 35.1955, 32.234583333333376 ], [ 35.195555338541681, 32.234694661458434 ], [ 35.195583333333389, 32.234833333333313 ], [ 35.19562960815432, 32.234870390574144 ], [ 35.196030003865587, 32.235370390574133 ], [ 35.196239151000952, 32.235214768091907 ], [ 35.196037058512445, 32.235129609425826 ], [ 35.196, 32.235083333333364 ], [ 35.19591666666679, 32.235083333333364 ], [ 35.19591666666679, 32.235 ], [ 35.195784037272176, 32.234799297332813 ], [ 35.19575, 32.234583333333376 ], [ 35.195694661458447, 32.234555338541668 ], [ 35.195527605692575, 32.234222788492843 ], [ 35.195361328125045, 32.234138671874973 ], [ 35.195333333333338, 32.234 ], [ 35.19525, 32.234 ] ] ], [ [ [ 35.196583333333365, 32.2355 ], [ 35.196524297078554, 32.235387916564889 ], [ 35.196308753967344, 32.235464320500682 ], [ 35.196583333333365, 32.2355 ] ] ], [ [ [ 35.194518218994062, 32.23555639139812 ], [ 35.194359580993762, 32.235403211593621 ], [ 35.194333333333361, 32.235583333333352 ], [ 35.194518218994062, 32.23555639139812 ] ] ], [ [ [ 35.196583333333365, 32.2355 ], [ 35.196583333333365, 32.235583333333352 ], [ 35.196666666666658, 32.235583333333352 ], [ 35.196666666666658, 32.2355 ], [ 35.196583333333365, 32.2355 ] ] ], [ [ [ 35.191, 32.235666666666646 ], [ 35.191083333333381, 32.235666666666646 ], [ 35.191083333333381, 32.235583333333352 ], [ 35.19125, 32.235583333333352 ], [ 35.191083333333381, 32.235382690429674 ], [ 35.191, 32.235666666666646 ] ] ], [ [ [ 35.201548601786271, 32.235203072865829 ], [ 35.201, 32.235166666666657 ], [ 35.201027994791787, 32.235555338541644 ], [ 35.201083333333372, 32.235666666666646 ], [ 35.201505203247109, 32.235496749877939 ], [ 35.201548601786271, 32.235203072865829 ] ] ], [ [ [ 35.189138139088925, 32.235684935251868 ], [ 35.189166666666779, 32.235583333333352 ], [ 35.189065064748263, 32.235611860910979 ], [ 35.189138139088925, 32.235684935251868 ] ] ], [ [ [ 35.180101198832233, 32.235787253061915 ], [ 35.179916666666657, 32.23575 ], [ 35.179916666666657, 32.235916666666753 ], [ 35.180166666666764, 32.235916666666753 ], [ 35.180101198832233, 32.235787253061915 ] ] ], [ [ [ 35.171356731414846, 32.235958333333315 ], [ 35.17125, 32.235916666666753 ], [ 35.17125, 32.236 ], [ 35.171356731414846, 32.235958333333315 ] ] ], [ [ [ 35.199500000000114, 32.235583333333352 ], [ 35.199333333333357, 32.235583333333352 ], [ 35.199333333333357, 32.236 ], [ 35.19941666666665, 32.236 ], [ 35.199574615478525, 32.235760983785042 ], [ 35.199500000000114, 32.235583333333352 ] ] ], [ [ [ 35.18969368108111, 32.235953635533633 ], [ 35.189333333333366, 32.235916666666753 ], [ 35.189401123046935, 32.236031015396179 ], [ 35.18969368108111, 32.235953635533633 ] ] ], [ [ [ 35.171362357616374, 32.236370577494426 ], [ 35.17116666666675, 32.23625 ], [ 35.17116666666675, 32.236416666666742 ], [ 35.171362357616374, 32.236370577494426 ] ] ], [ [ [ 35.199666666666701, 32.236416666666742 ], [ 35.199500000000114, 32.236416666666742 ], [ 35.199583333333408, 32.236532934188915 ], [ 35.199666666666701, 32.236416666666742 ] ] ], [ [ [ 35.191, 32.235666666666646 ], [ 35.19083333333333, 32.235666666666646 ], [ 35.19075, 32.235666666666646 ], [ 35.19075, 32.235583333333352 ], [ 35.1905000000001, 32.235583333333352 ], [ 35.1905000000001, 32.2355 ], [ 35.19025, 32.2355 ], [ 35.190166666666698, 32.2355 ], [ 35.190213635762518, 32.23571098454795 ], [ 35.190045520782462, 32.235850631713959 ], [ 35.190483796437718, 32.236203161875437 ], [ 35.190621145884165, 32.23603781255099 ], [ 35.190666666666687, 32.236 ], [ 35.19075, 32.235883732477873 ], [ 35.19083333333333, 32.236 ], [ 35.19088867187503, 32.236111328125048 ], [ 35.190946417490636, 32.236569263458307 ], [ 35.191194010416723, 32.236444010416733 ], [ 35.19125, 32.236333333333448 ], [ 35.19125, 32.23625 ], [ 35.191333333333262, 32.23625 ], [ 35.191447799682749, 32.236121888478579 ], [ 35.191626922607441, 32.236132565180583 ], [ 35.192416666666702, 32.23608333333334 ], [ 35.192416666666702, 32.236 ], [ 35.1925, 32.236 ], [ 35.1925, 32.235916666666753 ], [ 35.192583333333346, 32.235916666666753 ], [ 35.192615859985438, 32.235865859349644 ], [ 35.192907793680831, 32.235763177235981 ], [ 35.193009544372615, 32.235401101430398 ], [ 35.192677757263141, 32.23530786005665 ], [ 35.192722404480094, 32.235466736475701 ], [ 35.1925, 32.2355 ], [ 35.1925, 32.235583333333352 ], [ 35.192250000000115, 32.235583333333352 ], [ 35.191970494588247, 32.23572049458835 ], [ 35.19169617207848, 32.235779505411926 ], [ 35.191479957580611, 32.235943031311081 ], [ 35.191035186767522, 32.235730859120679 ], [ 35.191, 32.235666666666646 ] ] ], [ [ [ 35.178054805755721, 32.236601601918551 ], [ 35.178083333333348, 32.2365 ], [ 35.177981731414832, 32.236528527577832 ], [ 35.178054805755721, 32.236601601918551 ] ] ], [ [ [ 35.189566942850888, 32.236551339467439 ], [ 35.189500000000123, 32.236416666666742 ], [ 35.189305338541658, 32.236455964406389 ], [ 35.189392874399857, 32.236611328125036 ], [ 35.189566942850888, 32.236551339467439 ] ] ], [ [ [ 35.198638140360629, 32.236768268585308 ], [ 35.198666666666782, 32.236666666666792 ], [ 35.198565063476565, 32.236695194244419 ], [ 35.198638140360629, 32.236768268585308 ] ] ], [ [ [ 35.198944267273077, 32.236942639668769 ], [ 35.198833333333369, 32.236666666666792 ], [ 35.198714452107765, 32.23675509770726 ], [ 35.198944267273077, 32.236942639668769 ] ] ], [ [ [ 35.183333333333394, 32.237 ], [ 35.183295244852786, 32.236811330159526 ], [ 35.183083333333343, 32.23691666666673 ], [ 35.183083333333343, 32.237 ], [ 35.183166666666807, 32.237 ], [ 35.1832500000001, 32.237 ], [ 35.183333333333394, 32.237 ] ] ], [ [ [ 35.181371387481761, 32.237189142862974 ], [ 35.181416666666792, 32.237083333333317 ], [ 35.181225026448601, 32.237117110570296 ], [ 35.181371387481761, 32.237189142862974 ] ] ], [ [ [ 35.171083333333456, 32.237416666666661 ], [ 35.171, 32.237416666666661 ], [ 35.171, 32.237583333333475 ], [ 35.171083333333456, 32.237583333333475 ], [ 35.171083333333456, 32.237416666666661 ] ] ], [ [ [ 35.199083333333419, 32.237583333333475 ], [ 35.199027994791663, 32.237555338541711 ], [ 35.198966512044251, 32.237433800379449 ], [ 35.198833333333369, 32.2375 ], [ 35.198833333333369, 32.237583333333475 ], [ 35.19875, 32.237583333333475 ], [ 35.198847526550253, 32.237724585851083 ], [ 35.199083333333419, 32.237666666666769 ], [ 35.199083333333419, 32.237583333333475 ] ] ], [ [ [ 35.187166666666656, 32.237416666666661 ], [ 35.186916666666775, 32.237416666666661 ], [ 35.186916666666775, 32.237583333333475 ], [ 35.187138671875118, 32.237611328125013 ], [ 35.187222985585606, 32.2377779947916 ], [ 35.187222005208412, 32.237527994791719 ], [ 35.187166666666656, 32.237416666666661 ] ] ], [ [ [ 35.18125, 32.237833333333356 ], [ 35.181221472422351, 32.23773173141484 ], [ 35.181148398081461, 32.237804805755729 ], [ 35.18125, 32.237833333333356 ] ] ], [ [ [ 35.171, 32.237833333333356 ], [ 35.170916666666642, 32.237833333333356 ], [ 35.170916666666642, 32.237916666666649 ], [ 35.171, 32.237916666666649 ], [ 35.171, 32.237833333333356 ] ] ], [ [ [ 35.18758333333335, 32.237916666666649 ], [ 35.187367856343656, 32.237809558232698 ], [ 35.187333333333413, 32.238083333333464 ], [ 35.18758333333335, 32.238083333333464 ], [ 35.18758333333335, 32.237916666666649 ] ] ], [ [ [ 35.170916666666642, 32.238083333333464 ], [ 35.170833333333348, 32.238083333333464 ], [ 35.170833333333348, 32.23825 ], [ 35.170916666666642, 32.23825 ], [ 35.170916666666642, 32.238083333333464 ] ] ], [ [ [ 35.186, 32.238 ], [ 35.185833333333335, 32.238 ], [ 35.18575, 32.238166666666757 ], [ 35.185916666666799, 32.238166666666757 ], [ 35.185916666666799, 32.23825 ], [ 35.186083333333386, 32.23825 ], [ 35.186083333333386, 32.238166666666757 ], [ 35.186, 32.238 ] ] ], [ [ [ 35.186416666666787, 32.23825 ], [ 35.186416666666787, 32.238083333333464 ], [ 35.1865, 32.238083333333464 ], [ 35.1865, 32.23775 ], [ 35.186295431772805, 32.237614815394181 ], [ 35.186132785797213, 32.237651276906377 ], [ 35.186049297332886, 32.23791896311451 ], [ 35.186329029083367, 32.238112101872844 ], [ 35.18625, 32.238166666666757 ], [ 35.18625, 32.23825 ], [ 35.186333333333323, 32.23825 ], [ 35.186416666666787, 32.23825 ] ] ], [ [ [ 35.187916666666695, 32.23825 ], [ 35.187916666666695, 32.238166666666757 ], [ 35.188083333333338, 32.238166666666757 ], [ 35.188125, 32.238059935251954 ], [ 35.188166666666802, 32.238166666666757 ], [ 35.188788567860968, 32.23793237241108 ], [ 35.1887114321392, 32.237455234527602 ], [ 35.188621901194381, 32.237294765472484 ], [ 35.188521541595549, 32.236961432139083 ], [ 35.188434174855558, 32.237282667795853 ], [ 35.188467575073275, 32.237698348999061 ], [ 35.188259227752724, 32.237814593633061 ], [ 35.188083333333338, 32.23775 ], [ 35.188083333333338, 32.238 ], [ 35.187916666666695, 32.238 ], [ 35.187878098805811, 32.238044765472523 ], [ 35.187711559295622, 32.238188247044945 ], [ 35.187916666666695, 32.23825 ] ] ], [ [ [ 35.181167396545447, 32.238082844416454 ], [ 35.18125, 32.237916666666649 ], [ 35.181110244751039, 32.237944880167731 ], [ 35.180903238932331, 32.238361328125052 ], [ 35.181271787007745, 32.238296594619783 ], [ 35.181167396545447, 32.238082844416454 ] ] ], [ [ [ 35.17075, 32.238583333333452 ], [ 35.170833333333348, 32.238583333333452 ], [ 35.170833333333348, 32.238416666666808 ], [ 35.17075, 32.238416666666808 ], [ 35.17075, 32.238583333333452 ] ] ], [ [ [ 35.185583333333398, 32.23825 ], [ 35.185448092142735, 32.238182774861684 ], [ 35.185388671875103, 32.2383886718751 ], [ 35.185222656250005, 32.23847265625011 ], [ 35.18516666666676, 32.238583333333452 ], [ 35.185388671875103, 32.238611328124989 ], [ 35.185500000000104, 32.238666666666745 ], [ 35.185583333333398, 32.238666666666745 ], [ 35.185583333333398, 32.238583333333452 ], [ 35.185583333333398, 32.23825 ] ] ], [ [ [ 35.17075, 32.238583333333452 ], [ 35.170666666666762, 32.238583333333452 ], [ 35.170666666666762, 32.23875 ], [ 35.17075, 32.23875 ], [ 35.17075, 32.238583333333452 ] ] ], [ [ [ 35.187630986531701, 32.238857912063679 ], [ 35.187666666666644, 32.238583333333452 ], [ 35.187554583231645, 32.238642369588263 ], [ 35.187630986531701, 32.238857912063679 ] ] ], [ [ [ 35.185500000000104, 32.23875 ], [ 35.185333333333347, 32.23875 ], [ 35.185333333333347, 32.238833333333332 ], [ 35.18541666666664, 32.238833333333332 ], [ 35.18541666666664, 32.238916666666796 ], [ 35.185500000000104, 32.238916666666796 ], [ 35.185500000000104, 32.23875 ] ] ], [ [ [ 35.196666666666658, 32.235583333333352 ], [ 35.196739270528269, 32.235677396138556 ], [ 35.196885424296113, 32.235790207544994 ], [ 35.196637064615913, 32.236125192642248 ], [ 35.196583333333365, 32.236166666666804 ], [ 35.196666666666658, 32.236333333333448 ], [ 35.19677799479166, 32.236277994791692 ], [ 35.197250000000111, 32.23625 ], [ 35.197291666666672, 32.236143268585295 ], [ 35.197333333333404, 32.23625 ], [ 35.197416666666697, 32.23625 ], [ 35.197416666666697, 32.236333333333448 ], [ 35.197549296061311, 32.236534036636442 ], [ 35.197583333333341, 32.236833333333379 ], [ 35.197739738464463, 32.236973080317171 ], [ 35.197629267374793, 32.238826545079633 ], [ 35.197916666666686, 32.239083333333383 ], [ 35.197916666666686, 32.238583333333452 ], [ 35.197798759460568, 32.238276589075724 ], [ 35.19794325002033, 32.238129609425926 ], [ 35.198, 32.238583333333452 ], [ 35.19825, 32.23875 ], [ 35.198416666666674, 32.238666666666745 ], [ 35.198525444030849, 32.238438636779847 ], [ 35.19833333333338, 32.238333333333344 ], [ 35.19825, 32.238333333333344 ], [ 35.19825, 32.23825 ], [ 35.198200703938824, 32.238215963363587 ], [ 35.198, 32.237916666666649 ], [ 35.197916666666686, 32.237916666666649 ], [ 35.197833333333392, 32.237916666666649 ], [ 35.197833333333392, 32.237833333333356 ], [ 35.197833333333392, 32.23775 ], [ 35.197833333333392, 32.2375 ], [ 35.197833333333392, 32.23725 ], [ 35.197916666666686, 32.23725 ], [ 35.197833872477247, 32.236912914276104 ], [ 35.198122734069841, 32.237136786778876 ], [ 35.19825, 32.237083333333317 ], [ 35.19847200520843, 32.236972005208429 ], [ 35.1985, 32.2365 ], [ 35.1985, 32.236416666666742 ], [ 35.197711433410689, 32.236121901194224 ], [ 35.197455233256107, 32.236044765472457 ], [ 35.197228113810354, 32.23591804695144 ], [ 35.19697443644219, 32.235623602549254 ], [ 35.196666666666658, 32.235583333333352 ] ] ], [ [ [ 35.17125, 32.238916666666796 ], [ 35.171083333333456, 32.238916666666796 ], [ 35.17114953263598, 32.239049844106034 ], [ 35.171083333333456, 32.239083333333383 ], [ 35.171110274950706, 32.239268218358404 ], [ 35.171228802045164, 32.239145469029836 ], [ 35.17125, 32.238916666666796 ] ] ], [ [ [ 35.186916666666775, 32.23925 ], [ 35.18675, 32.23925 ], [ 35.18675, 32.23933333333332 ], [ 35.186916666666775, 32.23933333333332 ], [ 35.186916666666775, 32.23925 ] ] ], [ [ [ 35.181166666666684, 32.239083333333383 ], [ 35.181065064748168, 32.239054805755757 ], [ 35.181138139089057, 32.238981731414867 ], [ 35.181166666666684, 32.239083333333383 ], [ 35.181213698069314, 32.239119635264103 ], [ 35.181333333333328, 32.239416666666784 ], [ 35.181444661458329, 32.239360347747834 ], [ 35.18137967809048, 32.239071327845409 ], [ 35.1811256319682, 32.238849965413408 ], [ 35.180972005208389, 32.238972005208382 ], [ 35.18069466145846, 32.239027994791684 ], [ 35.180583333333402, 32.239083333333383 ], [ 35.180833333333339, 32.239416666666784 ], [ 35.180944661458341, 32.239361328125028 ], [ 35.181166666666684, 32.23933333333332 ], [ 35.181166666666684, 32.239083333333383 ] ] ], [ [ [ 35.17033333333336, 32.23933333333332 ], [ 35.17025, 32.23933333333332 ], [ 35.17025, 32.2395 ], [ 35.17033333333336, 32.2395 ], [ 35.17033333333336, 32.23933333333332 ] ] ], [ [ [ 35.17033333333336, 32.23933333333332 ], [ 35.170629945596147, 32.239409451802715 ], [ 35.17075, 32.239583333333371 ], [ 35.170888671875105, 32.239611328125136 ], [ 35.171, 32.239666666666665 ], [ 35.171083333333456, 32.239666666666665 ], [ 35.171083333333456, 32.23975 ], [ 35.171083333333456, 32.239833333333479 ], [ 35.17125, 32.239833333333479 ], [ 35.17121596352257, 32.239700703303129 ], [ 35.171083333333456, 32.2395 ], [ 35.171, 32.2395 ], [ 35.171, 32.239416666666784 ], [ 35.170806303342317, 32.239375 ], [ 35.171, 32.23933333333332 ], [ 35.171, 32.23925 ], [ 35.170833333333348, 32.23925 ], [ 35.170833333333348, 32.239166666666733 ], [ 35.170583333333468, 32.239166666666733 ], [ 35.1705, 32.239166666666733 ], [ 35.170416666666654, 32.239166666666733 ], [ 35.17033333333336, 32.23933333333332 ] ] ], [ [ [ 35.169916666666666, 32.239916666666772 ], [ 35.17, 32.239916666666772 ], [ 35.17, 32.239833333333479 ], [ 35.169916666666666, 32.239833333333479 ], [ 35.169916666666666, 32.239916666666772 ] ] ], [ [ [ 35.17125, 32.239833333333479 ], [ 35.17125, 32.239916666666772 ], [ 35.171333333333337, 32.239916666666772 ], [ 35.171333333333337, 32.239833333333479 ], [ 35.17125, 32.239833333333479 ] ] ], [ [ [ 35.197416666666697, 32.239916666666772 ], [ 35.197416666666697, 32.239833333333479 ], [ 35.197583333333341, 32.239833333333479 ], [ 35.197527343750039, 32.239722656250137 ], [ 35.197305989583413, 32.239610677083419 ], [ 35.197250000000111, 32.2395 ], [ 35.197125119527243, 32.239437925338791 ], [ 35.196945444742823, 32.239525673548371 ], [ 35.196888671875001, 32.239693681081235 ], [ 35.197055338541588, 32.239777994791723 ], [ 35.197111328125061, 32.239888671875065 ], [ 35.197416666666697, 32.239916666666772 ] ] ], [ [ [ 35.199299629211339, 32.239685984929395 ], [ 35.198926684061746, 32.239466758728156 ], [ 35.198796274821007, 32.239629609425833 ], [ 35.19875, 32.239666666666665 ], [ 35.19875, 32.23975 ], [ 35.199000000000126, 32.23975 ], [ 35.199000000000126, 32.239833333333479 ], [ 35.199268465677903, 32.239936526616532 ], [ 35.199299629211339, 32.239685984929395 ] ] ], [ [ [ 35.169916666666666, 32.239916666666772 ], [ 35.1698099353016, 32.239958333333334 ], [ 35.169916666666666, 32.24 ], [ 35.169916666666666, 32.239916666666772 ] ] ], [ [ [ 35.183816942850797, 32.240134672800821 ], [ 35.18375, 32.24 ], [ 35.183555338541737, 32.240039297739713 ], [ 35.183642874399766, 32.240194661458418 ], [ 35.183816942850797, 32.240134672800821 ] ] ], [ [ [ 35.181805737813306, 32.240216736475759 ], [ 35.181749954223619, 32.240018234888851 ], [ 35.182093233744354, 32.240114705403641 ], [ 35.18216666666666, 32.24 ], [ 35.182027671814069, 32.239722822189435 ], [ 35.18191666666678, 32.239666666666665 ], [ 35.181888671875015, 32.239888671875065 ], [ 35.181527994791622, 32.23994466145848 ], [ 35.181416666666792, 32.24 ], [ 35.181527994791622, 32.240222005208409 ], [ 35.181583333333379, 32.24025 ], [ 35.181805737813306, 32.240216736475759 ] ] ], [ [ [ 35.194833333333349, 32.24025 ], [ 35.195000000000107, 32.24025 ], [ 35.195000000000107, 32.240166666666653 ], [ 35.194833333333349, 32.240166666666653 ], [ 35.194833333333349, 32.24025 ] ] ], [ [ [ 35.190583333333393, 32.239916666666772 ], [ 35.190416666666806, 32.239916666666772 ], [ 35.19045421854662, 32.240062996546555 ], [ 35.190654922485407, 32.240353685379034 ], [ 35.191, 32.240431044260788 ], [ 35.190831347147707, 32.239980313619014 ], [ 35.190583333333393, 32.239916666666772 ] ] ], [ [ [ 35.181971472422276, 32.24060160191857 ], [ 35.182, 32.2405 ], [ 35.181898398081557, 32.240528527577851 ], [ 35.181971472422276, 32.24060160191857 ] ] ], [ [ [ 35.183032526652141, 32.240516150792587 ], [ 35.182740645090746, 32.240384441375852 ], [ 35.182666666666648, 32.2405 ], [ 35.182750000000112, 32.240666666666812 ], [ 35.183032526652141, 32.240516150792587 ] ] ], [ [ [ 35.182416666666768, 32.240583333333348 ], [ 35.182416666666768, 32.240416666666761 ], [ 35.1825, 32.240416666666761 ], [ 35.182531771342042, 32.24036510403954 ], [ 35.182781771341979, 32.240279908498223 ], [ 35.182712926228874, 32.240191637675025 ], [ 35.182301561991437, 32.240331823349152 ], [ 35.182375553131237, 32.240781770706178 ], [ 35.182551561991374, 32.240718229293861 ], [ 35.182583333333355, 32.240666666666812 ], [ 35.182416666666768, 32.240666666666812 ], [ 35.182416666666768, 32.240583333333348 ] ] ], [ [ [ 35.1955, 32.240916666666749 ], [ 35.1955, 32.240833333333455 ], [ 35.195333333333338, 32.240833333333455 ], [ 35.195333333333338, 32.24075 ], [ 35.195139635721944, 32.240708333333373 ], [ 35.195333333333338, 32.240666666666812 ], [ 35.195443697611552, 32.240606172243872 ], [ 35.19525, 32.2405 ], [ 35.19495338694253, 32.240423881212848 ], [ 35.194833333333349, 32.24025 ], [ 35.194536303202369, 32.24013036473599 ], [ 35.194337498982861, 32.239872803370304 ], [ 35.193833333333373, 32.239833333333479 ], [ 35.19361132812503, 32.239861328125016 ], [ 35.1935, 32.239916666666772 ], [ 35.193604873657307, 32.240086870193579 ], [ 35.193849327087435, 32.240010728836182 ], [ 35.193948438008647, 32.240301562627224 ], [ 35.194058509826618, 32.240458333333322 ], [ 35.19392306009928, 32.240651246388779 ], [ 35.194134895324737, 32.240781770706178 ], [ 35.194166666666774, 32.240833333333455 ], [ 35.194277343750059, 32.240889322916701 ], [ 35.194333333333361, 32.241 ], [ 35.194742774963458, 32.240906994819568 ], [ 35.195083435058621, 32.24086462179821 ], [ 35.1955, 32.240916666666749 ] ] ], [ [ [ 35.1955, 32.240916666666749 ], [ 35.1955, 32.241 ], [ 35.195583333333389, 32.241 ], [ 35.195583333333389, 32.240916666666749 ], [ 35.1955, 32.240916666666749 ] ] ], [ [ [ 35.19103805287682, 32.241272475878532 ], [ 35.191083333333381, 32.2411666666668 ], [ 35.190891693115361, 32.24120044422159 ], [ 35.19103805287682, 32.241272475878532 ] ] ], [ [ [ 35.203083333333268, 32.241333333333387 ], [ 35.203083333333268, 32.24125 ], [ 35.203, 32.24125 ], [ 35.203, 32.241333333333387 ], [ 35.203083333333268, 32.241333333333387 ] ] ], [ [ [ 35.203083333333268, 32.241333333333387 ], [ 35.203083333333268, 32.241416666666737 ], [ 35.203166666666789, 32.241416666666737 ], [ 35.203166666666789, 32.241333333333387 ], [ 35.203083333333268, 32.241333333333387 ] ] ], [ [ [ 35.186721472422335, 32.241518268585253 ], [ 35.18675, 32.241416666666737 ], [ 35.186648398081445, 32.241445194244534 ], [ 35.186721472422335, 32.241518268585253 ] ] ], [ [ [ 35.182416666666768, 32.241583333333324 ], [ 35.1825, 32.241416666666737 ], [ 35.182294892628988, 32.241478419621842 ], [ 35.182416666666768, 32.241583333333324 ] ] ], [ [ [ 35.187784036000608, 32.241279618581132 ], [ 35.187685246785577, 32.241165094057749 ], [ 35.187331583658874, 32.241297426859546 ], [ 35.187416666666763, 32.2415 ], [ 35.18758333333335, 32.241583333333324 ], [ 35.187784036000608, 32.241279618581132 ] ] ], [ [ [ 35.194583333333412, 32.241583333333324 ], [ 35.194583333333412, 32.241416666666737 ], [ 35.194666666666706, 32.241416666666737 ], [ 35.194582745870036, 32.241250778834171 ], [ 35.194416666666655, 32.241333333333387 ], [ 35.194416666666655, 32.241416666666737 ], [ 35.194523396809927, 32.241458333333469 ], [ 35.194416666666655, 32.2415 ], [ 35.194472656250127, 32.241610677083315 ], [ 35.194583333333412, 32.241666666666788 ], [ 35.194583333333412, 32.241583333333324 ] ] ], [ [ [ 35.18725000000012, 32.241666666666788 ], [ 35.186916666666775, 32.241666666666788 ], [ 35.186916666666775, 32.24175 ], [ 35.18725000000012, 32.24175 ], [ 35.18725000000012, 32.241666666666788 ] ] ], [ [ [ 35.183083333333343, 32.2415 ], [ 35.182906589508093, 32.241174785931889 ], [ 35.182666666666648, 32.241333333333387 ], [ 35.182965335846006, 32.241706716219596 ], [ 35.182916666666756, 32.241833333333375 ], [ 35.183083333333343, 32.241833333333375 ], [ 35.183083333333343, 32.241666666666788 ], [ 35.183083333333343, 32.2415 ] ] ], [ [ [ 35.186916666666775, 32.241833333333375 ], [ 35.186833333333254, 32.241833333333375 ], [ 35.186833333333254, 32.241916666666668 ], [ 35.186916666666775, 32.241916666666668 ], [ 35.186916666666775, 32.241833333333375 ] ] ], [ [ [ 35.194916666666643, 32.242166666666776 ], [ 35.194916666666643, 32.242 ], [ 35.19475, 32.242 ], [ 35.19475, 32.242083333333312 ], [ 35.194666666666706, 32.242083333333312 ], [ 35.194666666666706, 32.24225 ], [ 35.194916666666643, 32.24225 ], [ 35.194916666666643, 32.242166666666776 ] ] ], [ [ [ 35.186666666666667, 32.242166666666776 ], [ 35.186768268585183, 32.242195194244403 ], [ 35.186695194244464, 32.242268268585292 ], [ 35.186666666666667, 32.242166666666776 ], [ 35.186544892629058, 32.242271580378258 ], [ 35.18675, 32.242333333333363 ], [ 35.186915888468434, 32.242249413490413 ], [ 35.186833333333254, 32.242083333333312 ], [ 35.186578122456865, 32.241969008127796 ], [ 35.186666666666667, 32.242166666666776 ] ] ], [ [ [ 35.1835, 32.242333333333363 ], [ 35.1835, 32.242166666666776 ], [ 35.183391693115311, 32.242213014920537 ], [ 35.183454831441338, 32.242438882192118 ], [ 35.1835, 32.242333333333363 ] ] ], [ [ [ 35.18422147242228, 32.242518268585172 ], [ 35.18425, 32.242416666666657 ], [ 35.184148398081561, 32.24244519424451 ], [ 35.18422147242228, 32.242518268585172 ] ] ], [ [ [ 35.194721473693903, 32.242518268585172 ], [ 35.19475, 32.242416666666657 ], [ 35.19464839681001, 32.24244519424451 ], [ 35.194721473693903, 32.242518268585172 ] ] ], [ [ [ 35.190686206817702, 32.24254028956102 ], [ 35.190583333333393, 32.242333333333363 ], [ 35.190388671875098, 32.24237263107301 ], [ 35.190461818695212, 32.242611328125008 ], [ 35.190686206817702, 32.24254028956102 ] ] ], [ [ [ 35.185896888732998, 32.242539451917082 ], [ 35.185528093973858, 32.242299297014881 ], [ 35.185409500122148, 32.242403612454723 ], [ 35.185583333333398, 32.242666666666764 ], [ 35.185722005208447, 32.242638671875 ], [ 35.185833333333335, 32.242583333333471 ], [ 35.185896888732998, 32.242539451917082 ] ] ], [ [ [ 35.189083333333258, 32.242666666666764 ], [ 35.189439852396617, 32.242523071607025 ], [ 35.189181912740139, 32.242095457077085 ], [ 35.189225060780814, 32.241803472518939 ], [ 35.188631355285565, 32.241630364735897 ], [ 35.18838036473602, 32.241822077433369 ], [ 35.188536301930867, 32.242047031402592 ], [ 35.18892593510958, 32.242347778002454 ], [ 35.188833333333378, 32.242583333333471 ], [ 35.188833333333378, 32.242666666666764 ], [ 35.188916666666671, 32.242666666666764 ], [ 35.188958333333403, 32.242559935251961 ], [ 35.189, 32.242666666666764 ], [ 35.189083333333258, 32.242666666666764 ] ], [ [ 35.189148398081556, 32.242361860910989 ], [ 35.18925, 32.242333333333363 ], [ 35.189221472422275, 32.242434935251879 ], [ 35.189148398081556, 32.242361860910989 ] ] ], [ [ [ 35.184993802388476, 32.24200619792947 ], [ 35.184748919169181, 32.24172196165722 ], [ 35.184538567860898, 32.241628098805734 ], [ 35.184394976298051, 32.24146143213909 ], [ 35.184257839202985, 32.241560843149898 ], [ 35.184089530944959, 32.241756197929362 ], [ 35.18387822596236, 32.241938247044914 ], [ 35.184083333333319, 32.242 ], [ 35.184132630666113, 32.241965963681537 ], [ 35.184202748616656, 32.241864407221556 ], [ 35.184345077514649, 32.241896314303176 ], [ 35.184553620656345, 32.242198358535802 ], [ 35.1845, 32.242416666666657 ], [ 35.184807769775489, 32.242456935882558 ], [ 35.185021690368728, 32.242705234527648 ], [ 35.185288567860937, 32.242596741358568 ], [ 35.18520869445814, 32.242191337903364 ], [ 35.184993802388476, 32.24200619792947 ] ] ], [ [ [ 35.194221473693915, 32.24276826858528 ], [ 35.19425, 32.242666666666764 ], [ 35.194148396810021, 32.242695194244391 ], [ 35.194221473693915, 32.24276826858528 ] ] ], [ [ [ 35.183198438008617, 32.242468229293934 ], [ 35.183166666666807, 32.242416666666657 ], [ 35.183076221466138, 32.242472395896982 ], [ 35.182979858398426, 32.242781770706301 ], [ 35.183615104675312, 32.242711167017717 ], [ 35.183528901418185, 32.242580845514965 ], [ 35.183198438008617, 32.242468229293934 ] ] ], [ [ [ 35.186614934285615, 32.242609522501596 ], [ 35.186416666666787, 32.242166666666776 ], [ 35.186045520782613, 32.242214155515171 ], [ 35.186121145884158, 32.242462187449178 ], [ 35.186303229014072, 32.242613437652665 ], [ 35.186517298380579, 32.242871145884294 ], [ 35.186614934285615, 32.242609522501596 ] ], [ [ 35.186315064748101, 32.24244519424451 ], [ 35.186416666666787, 32.242416666666657 ], [ 35.18638813908899, 32.242518268585172 ], [ 35.186315064748101, 32.24244519424451 ] ] ], [ [ [ 35.184804805755732, 32.242934935251867 ], [ 35.184833333333358, 32.242833333333351 ], [ 35.184731731414843, 32.242861860911148 ], [ 35.184804805755732, 32.242934935251867 ] ] ], [ [ [ 35.194083333333253, 32.243166666666752 ], [ 35.194083333333253, 32.243083333333459 ], [ 35.193916666666667, 32.243083333333459 ], [ 35.193916666666667, 32.243166666666752 ], [ 35.194083333333253, 32.243166666666752 ] ] ], [ [ [ 35.194083333333253, 32.243166666666752 ], [ 35.194083333333253, 32.24325 ], [ 35.194166666666774, 32.24325 ], [ 35.194166666666774, 32.243166666666752 ], [ 35.194083333333253, 32.243166666666752 ] ] ], [ [ [ 35.200666666666677, 32.243333333333339 ], [ 35.200416666666797, 32.243333333333339 ], [ 35.200416666666797, 32.243416666666803 ], [ 35.200666666666677, 32.243416666666803 ], [ 35.200666666666677, 32.243333333333339 ] ] ], [ [ [ 35.183702968597515, 32.24352054119106 ], [ 35.183626136779765, 32.243096289157961 ], [ 35.183547031402611, 32.243380364576922 ], [ 35.183416666666687, 32.243416666666803 ], [ 35.183333333333394, 32.24358333333339 ], [ 35.183702968597515, 32.24352054119106 ] ] ], [ [ [ 35.186254358927442, 32.243617369810863 ], [ 35.186306339263922, 32.2434422354699 ], [ 35.186164680480886, 32.243063646952351 ], [ 35.185916666666799, 32.243 ], [ 35.185549528757747, 32.243062367757148 ], [ 35.185463698069213, 32.243433982690249 ], [ 35.185713698069321, 32.243536302089808 ], [ 35.18575, 32.24358333333339 ], [ 35.185872680664033, 32.243531805992063 ], [ 35.186254358927442, 32.243617369810863 ] ] ], [ [ [ 35.195110677083449, 32.243555989583399 ], [ 35.195000000000107, 32.2435 ], [ 35.195000000000107, 32.243666666666741 ], [ 35.195166666666694, 32.243666666666741 ], [ 35.195110677083449, 32.243555989583399 ] ] ], [ [ [ 35.1835, 32.24425 ], [ 35.183427108764761, 32.243965963522612 ], [ 35.183299395243409, 32.244111494541187 ], [ 35.1835, 32.24425 ] ] ], [ [ [ 35.1835, 32.24425 ], [ 35.1835, 32.244333333333316 ], [ 35.183583333333331, 32.244333333333316 ], [ 35.183583333333331, 32.24425 ], [ 35.1835, 32.24425 ] ] ], [ [ [ 35.182662846883204, 32.244510834217181 ], [ 35.182583333333355, 32.244333333333316 ], [ 35.182384895324731, 32.244455602884386 ], [ 35.182662846883204, 32.244510834217181 ] ] ], [ [ [ 35.183583333333331, 32.244333333333316 ], [ 35.183619555155474, 32.244612083355662 ], [ 35.183690537770644, 32.244389799595012 ], [ 35.183583333333331, 32.244333333333316 ] ] ], [ [ [ 35.183888139089049, 32.244684935331463 ], [ 35.183916666666676, 32.244583333333367 ], [ 35.18381506474816, 32.244611860752229 ], [ 35.183888139089049, 32.244684935331463 ] ] ], [ [ [ 35.18341284688313, 32.244844167550525 ], [ 35.183333333333394, 32.24466666666666 ], [ 35.183134895324827, 32.244788936217617 ], [ 35.18341284688313, 32.244844167550525 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Id": 5, "luf": "Industrial Areas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.197916666666686, 32.239083333333383 ], [ 35.197916666666686, 32.2395 ], [ 35.197833333333392, 32.2395 ], [ 35.197895467122521, 32.239625 ], [ 35.197833333333392, 32.23975 ], [ 35.198, 32.23975 ], [ 35.198, 32.240083333333359 ], [ 35.198129414876348, 32.240148801167891 ], [ 35.198166666666793, 32.240333333333467 ], [ 35.198265965779683, 32.24053309981042 ], [ 35.198166666666793, 32.240583333333348 ], [ 35.198265965779683, 32.240783099810301 ], [ 35.198166666666793, 32.240833333333455 ], [ 35.198283075968504, 32.241122928301536 ], [ 35.197916666666686, 32.2411666666668 ], [ 35.19775, 32.241083333333336 ], [ 35.197392926534008, 32.24111607138309 ], [ 35.197513928731269, 32.241363837877884 ], [ 35.197377487182678, 32.241444661458445 ], [ 35.197305338541696, 32.241194661458337 ], [ 35.197186391194805, 32.241044928232895 ], [ 35.197233708699514, 32.240948039372768 ], [ 35.197027994791767, 32.240888671874984 ], [ 35.197, 32.240583333333348 ], [ 35.196738797505759, 32.240451010386266 ], [ 35.196858573913573, 32.240184413274221 ], [ 35.196612083435014, 32.240054583231711 ], [ 35.196583333333365, 32.24 ], [ 35.196472005208307, 32.240055338541652 ], [ 35.196111328125085, 32.240111328125124 ], [ 35.195833333333269, 32.24025 ], [ 35.195881245931105, 32.240541666666786 ], [ 35.195833333333269, 32.240833333333455 ], [ 35.196, 32.240833333333455 ], [ 35.196041666666645, 32.240726601918595 ], [ 35.196083333333377, 32.240833333333455 ], [ 35.19617875417083, 32.24095695463825 ], [ 35.196463696797821, 32.241036301930762 ], [ 35.196619636535559, 32.241110146840469 ], [ 35.196217119852633, 32.241222233772419 ], [ 35.195952728271493, 32.24106275113428 ], [ 35.195583333333389, 32.241 ], [ 35.195583333333389, 32.241083333333336 ], [ 35.1955, 32.241083333333336 ], [ 35.195537058512457, 32.241129609425968 ], [ 35.195990348816053, 32.241492600758988 ], [ 35.195952776591071, 32.24179466597252 ], [ 35.196050916036086, 32.241961616198239 ], [ 35.19591666666679, 32.242 ], [ 35.19595070393882, 32.242049297015001 ], [ 35.196331347147634, 32.242146980285725 ], [ 35.196518775939978, 32.242647890726857 ], [ 35.196723302205385, 32.242961974461878 ], [ 35.1965, 32.243083333333459 ], [ 35.1965, 32.243333333333339 ], [ 35.196558359781932, 32.243358307361689 ], [ 35.196608306884741, 32.243475025971748 ], [ 35.196773783365984, 32.243545838991906 ], [ 35.196530517578196, 32.243608307361569 ], [ 35.1965, 32.243333333333339 ], [ 35.196361328125022, 32.243305338541802 ], [ 35.196250000000134, 32.24325 ], [ 35.195944661458327, 32.243222005208281 ], [ 35.195833333333269, 32.243166666666752 ], [ 35.19575, 32.243166666666752 ], [ 35.19575, 32.243 ], [ 35.195694661458447, 32.242972005208401 ], [ 35.195610677083437, 32.24280598958336 ], [ 35.195333984374997, 32.242666015625048 ], [ 35.19525, 32.2425 ], [ 35.194916666666643, 32.24275 ], [ 35.194916666666643, 32.242916666666815 ], [ 35.19475, 32.242916666666815 ], [ 35.194583333333412, 32.242916666666815 ], [ 35.194500000000119, 32.242916666666815 ], [ 35.194500000000119, 32.242833333333351 ], [ 35.194140103658071, 32.242874261220379 ], [ 35.194333333333361, 32.243166666666752 ], [ 35.194333333333361, 32.24325 ], [ 35.194166666666774, 32.24325 ], [ 35.194166666666774, 32.243333333333339 ], [ 35.194416666666655, 32.243333333333339 ], [ 35.194481534322051, 32.243205107847984 ], [ 35.194777013143039, 32.243138671874988 ], [ 35.194833333333349, 32.24325 ], [ 35.195128100077341, 32.243371901035232 ], [ 35.195371899922691, 32.243544765631498 ], [ 35.195677556355861, 32.24363679154726 ], [ 35.195788566589385, 32.243861079375051 ], [ 35.195166666666694, 32.24425 ], [ 35.195166666666694, 32.244333333333316 ], [ 35.1950833333334, 32.244333333333316 ], [ 35.194791951497393, 32.244285467465772 ], [ 35.194554463704435, 32.24432056204472 ], [ 35.194500000000119, 32.24425 ], [ 35.194327328999975, 32.244200630823855 ], [ 35.194092552185111, 32.243907447973982 ], [ 35.193906323750809, 32.243758318742152 ], [ 35.193453773498618, 32.244120257377688 ], [ 35.193379608154316, 32.244320259253186 ], [ 35.193556744893385, 32.244462107658364 ], [ 35.193532287597634, 32.244658732414337 ], [ 35.194000000000131, 32.244583333333367 ], [ 35.194042134602967, 32.244393403371305 ], [ 35.194258674621608, 32.244303072929313 ], [ 35.194166666666774, 32.2445 ], [ 35.19413867187501, 32.244638671875123 ], [ 35.194083333333253, 32.24475 ], [ 35.194228802998907, 32.244771197954833 ], [ 35.194354520161994, 32.244892590363861 ], [ 35.194000000000131, 32.244916666666768 ], [ 35.193916666666667, 32.244916666666768 ], [ 35.193631665547798, 32.244986668904744 ], [ 35.193583333333265, 32.244916666666768 ], [ 35.1935, 32.244916666666768 ], [ 35.1935, 32.244833333333474 ], [ 35.19304421997083, 32.24445478026081 ], [ 35.192629920959519, 32.244488069613794 ], [ 35.192583333333346, 32.244333333333316 ], [ 35.192527239481649, 32.244360572973903 ], [ 35.192472760518399, 32.24518356347096 ], [ 35.192712239583443, 32.245056726058408 ], [ 35.192750000000103, 32.24525 ], [ 35.193166564941407, 32.24519795513163 ], [ 35.193291666666653, 32.245213516036756 ], [ 35.193377377828028, 32.24520285483203 ], [ 35.193537058512504, 32.245265045642896 ], [ 35.193287058512453, 32.245370390613857 ], [ 35.193166666666798, 32.245583333333343 ], [ 35.193413380940854, 32.245633865247271 ], [ 35.19475, 32.245583333333343 ], [ 35.194815467834587, 32.245453919569741 ], [ 35.195000000000107, 32.245416666666756 ], [ 35.195000000000107, 32.24525 ], [ 35.194833333333349, 32.24525 ], [ 35.194833333333349, 32.245166666666819 ], [ 35.194639635721956, 32.245125 ], [ 35.194833333333349, 32.245083333333355 ], [ 35.195213696797794, 32.245047031243644 ], [ 35.195286303202408, 32.244952968756422 ], [ 35.195381787617976, 32.244879266103226 ], [ 35.195355186462393, 32.244699247837161 ], [ 35.195537401835168, 32.244726174910852 ], [ 35.195731127421141, 32.244475191354809 ], [ 35.196083333333377, 32.244333333333316 ], [ 35.19616666666667, 32.244217065811085 ], [ 35.196250000000134, 32.244333333333316 ], [ 35.196333333333257, 32.244333333333316 ], [ 35.196333333333257, 32.24441666666678 ], [ 35.196416666666778, 32.24441666666678 ], [ 35.196717694600522, 32.244323711554216 ], [ 35.196696055094321, 32.243960677147015 ], [ 35.196877344767245, 32.244039322853155 ], [ 35.196962361653732, 32.244134475549174 ], [ 35.198044281005878, 32.243543862660829 ], [ 35.198034685770722, 32.24338286638266 ], [ 35.198210212707522, 32.243372404416391 ], [ 35.198401903788294, 32.243476570129474 ], [ 35.198916666666662, 32.24325 ], [ 35.199000000000126, 32.24325 ], [ 35.19925, 32.24325 ], [ 35.199316047668503, 32.243216588020346 ], [ 35.199228597005288, 32.243037525177044 ], [ 35.199568191528442, 32.242972005208401 ], [ 35.199666666666701, 32.243166666666752 ], [ 35.199833333333345, 32.243166666666752 ], [ 35.199833333333345, 32.24325 ], [ 35.200000000000102, 32.243166666666752 ], [ 35.200000000000102, 32.243083333333459 ], [ 35.200083333333396, 32.243083333333459 ], [ 35.200118125915537, 32.243034791628531 ], [ 35.200282933553126, 32.242916666666815 ], [ 35.200166666666689, 32.242833333333351 ], [ 35.200056950887131, 32.24276309458412 ], [ 35.200175829569503, 32.24263414065058 ], [ 35.20025, 32.24275 ], [ 35.200361328125041, 32.242694661458472 ], [ 35.2005, 32.242666666666764 ], [ 35.200537928263259, 32.242478794097849 ], [ 35.200749994913735, 32.242582362175028 ], [ 35.200666666666677, 32.24275 ], [ 35.200717839558934, 32.242816295941793 ], [ 35.200875701904351, 32.242611776987815 ], [ 35.201517789205013, 32.242463698069287 ], [ 35.201666666666654, 32.242833333333351 ], [ 35.201805338541703, 32.242805338541643 ], [ 35.201916666666705, 32.24275 ], [ 35.201916666666705, 32.242666666666764 ], [ 35.202, 32.242666666666764 ], [ 35.202032819112276, 32.242308711051919 ], [ 35.202250000000106, 32.242416666666657 ], [ 35.202314867655502, 32.242288441022367 ], [ 35.20261034647632, 32.242222005208362 ], [ 35.202666666666801, 32.242333333333363 ], [ 35.202833333333388, 32.24225 ], [ 35.202833333333388, 32.242166666666776 ], [ 35.20325, 32.242166666666776 ], [ 35.203302439371839, 32.241967903773002 ], [ 35.203583333333427, 32.242083333333312 ], [ 35.203583333333427, 32.242 ], [ 35.20375, 32.242 ], [ 35.203495885213215, 32.241670781135554 ], [ 35.203166666666789, 32.241416666666737 ], [ 35.203068191528303, 32.241526879946434 ], [ 35.202794011434037, 32.241434049924237 ], [ 35.203, 32.24125 ], [ 35.202862459818618, 32.241006722450379 ], [ 35.202657447814943, 32.240842552185086 ], [ 35.202509218851844, 32.240657447815011 ], [ 35.202300862630295, 32.24049059899653 ], [ 35.202286483764738, 32.240375 ], [ 35.202300793965776, 32.24025995445254 ], [ 35.201962941487693, 32.239703723907496 ], [ 35.201916666666705, 32.239666666666665 ], [ 35.201805338541703, 32.239722005208421 ], [ 35.201527994791775, 32.239777994791723 ], [ 35.20125000000013, 32.239916666666772 ], [ 35.201366806030251, 32.24020091120417 ], [ 35.200966303507528, 32.240284791946522 ], [ 35.201083333333372, 32.24 ], [ 35.201022839864095, 32.239889636357759 ], [ 35.200916666666785, 32.240083333333359 ], [ 35.200916666666785, 32.240166666666653 ], [ 35.20075, 32.240166666666653 ], [ 35.200652018229221, 32.240509359995656 ], [ 35.200346407572397, 32.240703723907473 ], [ 35.20025, 32.240583333333348 ], [ 35.20009684244792, 32.240544028600198 ], [ 35.200000000000102, 32.240166666666653 ], [ 35.199916666666809, 32.240166666666653 ], [ 35.199583333333408, 32.240083333333359 ], [ 35.199535219828419, 32.24030852190657 ], [ 35.199544776916525, 32.240468866984088 ], [ 35.199372655232878, 32.240622656186417 ], [ 35.199224871317597, 32.24078805923466 ], [ 35.198920181274445, 32.240308984120645 ], [ 35.198687372843438, 32.240202132542947 ], [ 35.198525260925408, 32.240211794535412 ], [ 35.198416666666674, 32.240333333333467 ], [ 35.198375000000112, 32.240527029991256 ], [ 35.19833333333338, 32.240333333333467 ], [ 35.19833333333338, 32.240083333333359 ], [ 35.19825, 32.240083333333359 ], [ 35.19825, 32.239833333333479 ], [ 35.198166666666793, 32.239666666666665 ], [ 35.198083333333273, 32.239666666666665 ], [ 35.198083333333273, 32.239583333333371 ], [ 35.197965962727778, 32.239117369969676 ], [ 35.197916666666686, 32.239083333333383 ] ], [ [ 35.198916666666662, 32.241083333333336 ], [ 35.198985582987461, 32.241221975326482 ], [ 35.198638671875017, 32.24122273826606 ], [ 35.198916666666662, 32.241083333333336 ] ], [ [ 35.196833333333416, 32.241083333333336 ], [ 35.19680480702732, 32.241184935252022 ], [ 35.196731730143199, 32.241111860911133 ], [ 35.196833333333416, 32.241083333333336 ] ], [ [ 35.20075, 32.241083333333336 ], [ 35.200721473693875, 32.241184935252022 ], [ 35.200648396809925, 32.241111860911133 ], [ 35.20075, 32.241083333333336 ] ], [ [ 35.200916666666785, 32.241 ], [ 35.200888140360632, 32.241101601918558 ], [ 35.200815063476568, 32.241028527577839 ], [ 35.200916666666785, 32.241 ] ], [ [ 35.194583333333412, 32.245166666666819 ], [ 35.194554807027316, 32.245268268624955 ], [ 35.194481730143195, 32.245195194085511 ], [ 35.194583333333412, 32.245166666666819 ] ], [ [ 35.195000000000107, 32.244833333333474 ], [ 35.195079513549786, 32.245010834217112 ], [ 35.194801561991312, 32.244955602884374 ], [ 35.195000000000107, 32.244833333333474 ] ], [ [ 35.195166666666694, 32.24466666666666 ], [ 35.195243392944292, 32.244861841201896 ], [ 35.195047030131036, 32.244759009838162 ], [ 35.195166666666694, 32.24466666666666 ] ], [ [ 35.193083333333334, 32.244583333333367 ], [ 35.193054807027181, 32.244684935331463 ], [ 35.192981730143288, 32.244611860752229 ], [ 35.193083333333334, 32.244583333333367 ] ], [ [ 35.197, 32.243666666666741 ], [ 35.196971473693907, 32.243768268585256 ], [ 35.196898396810013, 32.243695194085547 ], [ 35.197, 32.243666666666741 ] ], [ [ 35.197250000000111, 32.243666666666741 ], [ 35.197221473693844, 32.243768268585256 ], [ 35.197148396809894, 32.243695194085547 ], [ 35.197250000000111, 32.243666666666741 ] ], [ [ 35.1975, 32.243666666666741 ], [ 35.197454719543487, 32.243772475878416 ], [ 35.197308359782028, 32.243700444221531 ], [ 35.1975, 32.243666666666741 ] ], [ [ 35.197166666666647, 32.243083333333459 ], [ 35.197285728454631, 32.243400192578747 ], [ 35.19693749237058, 32.243537812550869 ], [ 35.196962580363049, 32.243291666666778 ], [ 35.196945365905833, 32.243122769991658 ], [ 35.197166666666647, 32.243083333333459 ] ], [ [ 35.197416666666697, 32.243333333333339 ], [ 35.197388140360601, 32.243434935251855 ], [ 35.197315063476481, 32.243361860752145 ], [ 35.197416666666697, 32.243333333333339 ] ], [ [ 35.20025, 32.242416666666657 ], [ 35.200316942850748, 32.242551339467411 ], [ 35.200142873128357, 32.242611328125008 ], [ 35.200055338541688, 32.242455964406474 ], [ 35.20025, 32.242416666666657 ] ], [ [ 35.198, 32.2415 ], [ 35.198138671875029, 32.241527994791738 ], [ 35.19825, 32.24175 ], [ 35.198386154174784, 32.241818877856019 ], [ 35.198416666666674, 32.242333333333363 ], [ 35.1985, 32.242333333333363 ], [ 35.1985, 32.242583333333471 ], [ 35.19833333333338, 32.242583333333471 ], [ 35.19833333333338, 32.242833333333351 ], [ 35.198083333333273, 32.242833333333351 ], [ 35.198, 32.242833333333351 ], [ 35.198, 32.24275 ], [ 35.198068072001206, 32.242651406288189 ], [ 35.19833333333338, 32.242583333333471 ], [ 35.19833333333338, 32.2425 ], [ 35.198083333333273, 32.2425 ], [ 35.197783281962188, 32.242466718673825 ], [ 35.19748126220702, 32.242229177157071 ], [ 35.197800051371303, 32.24205005200696 ], [ 35.197894002278645, 32.241908757209785 ], [ 35.197803375244234, 32.241549060185775 ], [ 35.198, 32.2415 ] ], [ [ 35.201833333333411, 32.24225 ], [ 35.201804807027315, 32.242351601918585 ], [ 35.201731730143365, 32.242278527577696 ], [ 35.201833333333411, 32.24225 ] ], [ [ 35.19616666666667, 32.241666666666788 ], [ 35.196138140360574, 32.241768268585304 ], [ 35.196065063476624, 32.241695194244414 ], [ 35.19616666666667, 32.241666666666788 ] ], [ [ 35.198666666666782, 32.24175 ], [ 35.198565063476565, 32.241721472422284 ], [ 35.198638140360629, 32.241648398081566 ], [ 35.198666666666782, 32.24175 ], [ 35.199000000000126, 32.242 ], [ 35.19941666666665, 32.242 ], [ 35.199458333333382, 32.241893268585159 ], [ 35.199500000000114, 32.242 ], [ 35.200000000000102, 32.242 ], [ 35.200000000000102, 32.242083333333312 ], [ 35.20029088846843, 32.242132747968185 ], [ 35.200304321289138, 32.24228630193079 ], [ 35.200000000000102, 32.242166666666776 ], [ 35.200000000000102, 32.242333333333363 ], [ 35.199916666666809, 32.242333333333363 ], [ 35.19975, 32.242333333333363 ], [ 35.19975, 32.242416666666657 ], [ 35.19975, 32.242583333333471 ], [ 35.19925, 32.242583333333471 ], [ 35.199166666666713, 32.242583333333471 ], [ 35.19875, 32.242583333333471 ], [ 35.19875, 32.2425 ], [ 35.198617370605461, 32.242299297014881 ], [ 35.198583333333261, 32.242166666666776 ], [ 35.198638671875017, 32.242055338541718 ], [ 35.198666666666782, 32.24175 ] ], [ [ 35.2025, 32.24175 ], [ 35.202455233256103, 32.241711432139198 ], [ 35.202413884480848, 32.24121143213921 ], [ 35.202788566589277, 32.241728309949281 ], [ 35.202666666666801, 32.241833333333375 ], [ 35.2025, 32.241833333333375 ], [ 35.2025, 32.24175 ] ], [ [ 35.1965, 32.24125 ], [ 35.196471473693919, 32.241351601918609 ], [ 35.196398396810025, 32.24127852757772 ], [ 35.1965, 32.24125 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Id": 6, "luf": "Residential Areas with Low Density" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.188833333333378, 32.232916666666654 ], [ 35.188895407358928, 32.233041545868048 ], [ 35.188807912190839, 32.233220703125085 ], [ 35.18875, 32.23325 ], [ 35.18875, 32.233333333333348 ], [ 35.188666666666791, 32.233333333333348 ], [ 35.188666666666791, 32.2335 ], [ 35.188666666666791, 32.23366666666675 ], [ 35.188583333333327, 32.23366666666675 ], [ 35.188583333333327, 32.23375 ], [ 35.1885, 32.23375 ], [ 35.1885, 32.233916666666801 ], [ 35.188416666666683, 32.233916666666801 ], [ 35.188378821055096, 32.234052572886242 ], [ 35.188213698069376, 32.233952968597521 ], [ 35.187933704376292, 32.233875 ], [ 35.188241564432815, 32.233789271036756 ], [ 35.188166666666802, 32.233333333333348 ], [ 35.187972867329847, 32.233251935323096 ], [ 35.187882630666195, 32.233382630666142 ], [ 35.187784036000608, 32.233450702667369 ], [ 35.187608654022199, 32.233704718272008 ], [ 35.187799297332731, 32.2339507026673 ], [ 35.187833333333401, 32.234166666666738 ], [ 35.188093599955209, 32.234052533467661 ], [ 35.188166666666802, 32.234166666666738 ], [ 35.188268268585318, 32.234195194244535 ], [ 35.188195194244429, 32.234268268585254 ], [ 35.188166666666802, 32.234166666666738 ], [ 35.187990614573209, 32.234211846669552 ], [ 35.187877267201884, 32.234653530120966 ], [ 35.187628077189231, 32.234597667694118 ], [ 35.187382630666036, 32.235049297332864 ], [ 35.18675, 32.235083333333364 ], [ 35.18675, 32.235166666666657 ], [ 35.187180494944187, 32.235220511754335 ], [ 35.187107784271348, 32.235805073420295 ], [ 35.1869232419333, 32.235782119115129 ], [ 35.186968699137367, 32.235416666666765 ], [ 35.186948827107813, 32.235256907780979 ], [ 35.18675, 32.235333333333472 ], [ 35.186583333333374, 32.23525 ], [ 35.186658752441474, 32.235557057698713 ], [ 35.186450702667287, 32.23570070330311 ], [ 35.186416666666787, 32.23575 ], [ 35.186514405568573, 32.23603554916383 ], [ 35.186209166208869, 32.235869297663442 ], [ 35.186333333333323, 32.23575 ], [ 35.186250848134364, 32.235414178848259 ], [ 35.186450702667287, 32.235284036636415 ], [ 35.186583333333374, 32.23525 ], [ 35.186484856923414, 32.235055338541656 ], [ 35.186277994791737, 32.235111328125129 ], [ 35.186222005208435, 32.235222005208414 ], [ 35.186, 32.23525 ], [ 35.185771198272846, 32.23522880236311 ], [ 35.185564875284797, 32.235024871826283 ], [ 35.185833333333335, 32.235 ], [ 35.18575, 32.234833333333313 ], [ 35.185643268585181, 32.234791666666752 ], [ 35.18575, 32.23475 ], [ 35.185858239491893, 32.234675267537455 ], [ 35.185500000000104, 32.234583333333376 ], [ 35.185500000000104, 32.23475 ], [ 35.185473515828448, 32.234806849161828 ], [ 35.185346079508463, 32.234866217295348 ], [ 35.185441622416306, 32.235032883962106 ], [ 35.185333333333347, 32.235083333333364 ], [ 35.185291666666785, 32.235190064748224 ], [ 35.18525, 32.235083333333364 ], [ 35.185083333333409, 32.235083333333364 ], [ 35.185083333333409, 32.23525 ], [ 35.185361923217727, 32.23529166666674 ], [ 35.185083333333409, 32.235333333333472 ], [ 35.184713977813772, 32.235378474553443 ], [ 35.18468795903533, 32.235554535548033 ], [ 35.185040168762328, 32.235451841354461 ], [ 35.185619635264118, 32.235547031402632 ], [ 35.185666666666691, 32.235583333333352 ], [ 35.185708333333253, 32.235476601918549 ], [ 35.18575, 32.235583333333352 ], [ 35.185860363006555, 32.235643827438366 ], [ 35.185666666666691, 32.23575 ], [ 35.185534791310545, 32.235784791946514 ], [ 35.185381875356029, 32.235906230926446 ], [ 35.18572222137459, 32.23603749656678 ], [ 35.185521333058659, 32.236353916168241 ], [ 35.184979307810465, 32.236462581634555 ], [ 35.184881875356041, 32.236715208053738 ], [ 35.184751331329437, 32.236784791946491 ], [ 35.184523427327406, 32.236466817855899 ], [ 35.18433333333337, 32.236416666666742 ], [ 35.184296276092539, 32.236462942759204 ], [ 35.184156113942549, 32.236537057240866 ], [ 35.18433333333337, 32.235916666666753 ], [ 35.18425, 32.23575 ], [ 35.184056303660213, 32.235708333333378 ], [ 35.18425, 32.235666666666646 ], [ 35.184291666666809, 32.235559935252013 ], [ 35.18433333333337, 32.235666666666646 ], [ 35.18433333333337, 32.23575 ], [ 35.184416666666664, 32.23575 ], [ 35.184621774037737, 32.235688247044834 ], [ 35.184455234527604, 32.235544765472468 ], [ 35.184416666666664, 32.23525 ], [ 35.18433333333337, 32.23525 ], [ 35.18433333333337, 32.235083333333364 ], [ 35.184452968597384, 32.234779012044328 ], [ 35.18437355804457, 32.234604693094809 ], [ 35.184213698069357, 32.235213698069288 ], [ 35.184119635264153, 32.235286301930671 ], [ 35.183833333333382, 32.235666666666646 ], [ 35.183949600219819, 32.23575 ], [ 35.183833333333382, 32.23583333333346 ], [ 35.183790320078572, 32.236284015019748 ], [ 35.1835, 32.236333333333448 ], [ 35.183387399037656, 32.236871527353969 ], [ 35.183540078480974, 32.236706744512048 ], [ 35.183583333333331, 32.236666666666792 ], [ 35.183625, 32.236559935251989 ], [ 35.183666666666795, 32.236666666666792 ], [ 35.183863728841175, 32.236718655904269 ], [ 35.183784281412841, 32.237120708465625 ], [ 35.1835, 32.237166666666781 ], [ 35.1835, 32.23725 ], [ 35.183416666666687, 32.23725 ], [ 35.183522768656474, 32.237463453292833 ], [ 35.183139652252294, 32.237527994791719 ], [ 35.183083333333343, 32.237416666666661 ], [ 35.182946172078516, 32.237387161254901 ], [ 35.182720494588352, 32.237172671635903 ], [ 35.18283759435019, 32.236888572692976 ], [ 35.182220494588194, 32.236952262242596 ], [ 35.182470494588244, 32.237029505411783 ], [ 35.1825, 32.237083333333317 ], [ 35.1825, 32.237166666666781 ], [ 35.182416666666768, 32.237166666666781 ], [ 35.182083333333367, 32.237333333333368 ], [ 35.182083333333367, 32.237416666666661 ], [ 35.182, 32.237416666666661 ], [ 35.182034036000573, 32.237465963363718 ], [ 35.182348196665544, 32.237682872136418 ], [ 35.18225, 32.237916666666649 ], [ 35.182478801727427, 32.237937864303717 ], [ 35.182601439158077, 32.238056283950812 ], [ 35.182277375539115, 32.238104530970361 ], [ 35.18225, 32.237916666666649 ], [ 35.181950253804644, 32.237766354242979 ], [ 35.18191666666678, 32.2375 ], [ 35.181790691375795, 32.237547335306886 ], [ 35.181264394124469, 32.237215684254977 ], [ 35.181166666666684, 32.237333333333368 ], [ 35.181166666666684, 32.237416666666661 ], [ 35.181194661458449, 32.237638671875061 ], [ 35.181289180755698, 32.237694661458477 ], [ 35.181371260325193, 32.237410243988109 ], [ 35.181472656250094, 32.237610677083467 ], [ 35.181665697733649, 32.23770833333333 ], [ 35.181583333333379, 32.23775 ], [ 35.181583333333379, 32.237833333333356 ], [ 35.181666666666672, 32.237833333333356 ], [ 35.181792598724371, 32.23795432662962 ], [ 35.181789115905872, 32.238125 ], [ 35.181798020680731, 32.238561354319245 ], [ 35.182037960052583, 32.23902711804709 ], [ 35.18175, 32.239083333333383 ], [ 35.181650700887076, 32.239133567174292 ], [ 35.18175, 32.23933333333332 ], [ 35.182380364736048, 32.239369635264211 ], [ 35.182666666666648, 32.239416666666784 ], [ 35.182718228658132, 32.239384895960541 ], [ 35.182828590393171, 32.23906105041516 ], [ 35.183176912943509, 32.239275673548434 ], [ 35.182979099273723, 32.239397558848168 ], [ 35.183288936615099, 32.239615104039615 ], [ 35.183551561991294, 32.239551562627128 ], [ 35.183623991648403, 32.239339024861806 ], [ 35.183853125254359, 32.239480208079101 ], [ 35.183994354248057, 32.239709416707342 ], [ 35.184166666666783, 32.23975 ], [ 35.184492823282994, 32.239546426137338 ], [ 35.184961082458585, 32.239807684580455 ], [ 35.18512190119435, 32.240251385370925 ], [ 35.185000000000116, 32.240583333333348 ], [ 35.185000000000116, 32.240666666666812 ], [ 35.184666666666772, 32.240666666666812 ], [ 35.184666666666772, 32.2405 ], [ 35.18425, 32.2405 ], [ 35.18425, 32.240166666666653 ], [ 35.184416666666664, 32.240166666666653 ], [ 35.184416666666664, 32.240083333333359 ], [ 35.184332682291654, 32.239917317708318 ], [ 35.184166666666783, 32.239833333333479 ], [ 35.183943487803276, 32.239987424214689 ], [ 35.183833333333382, 32.240416666666761 ], [ 35.18396947860731, 32.240613854090498 ], [ 35.184166666666783, 32.24075 ], [ 35.18432466634107, 32.240836605390029 ], [ 35.184221071878994, 32.24108793862672 ], [ 35.184481370290086, 32.240980648994423 ], [ 35.184583333333251, 32.2411666666668 ], [ 35.184666666666772, 32.2411666666668 ], [ 35.184666666666772, 32.24125 ], [ 35.185023363749281, 32.24129563999179 ], [ 35.185136549631807, 32.241681348164946 ], [ 35.185508206685427, 32.242204479217548 ], [ 35.185701000213726, 32.24208363087979 ], [ 35.185441345214883, 32.241867944399587 ], [ 35.185628854115919, 32.241712187449139 ], [ 35.18576729838054, 32.241545520782552 ], [ 35.186128854115907, 32.241621145884267 ], [ 35.186402554829897, 32.241950642903646 ], [ 35.186537812550853, 32.241787812550854 ], [ 35.186583333333374, 32.24175 ], [ 35.186538043975872, 32.241483396848082 ], [ 35.186217015584248, 32.241352006912166 ], [ 35.186583333333374, 32.24125 ], [ 35.186638127644869, 32.241036479949912 ], [ 35.187049297332862, 32.240882630348267 ], [ 35.187117369334032, 32.240784036318587 ], [ 35.187166666666656, 32.24075 ], [ 35.187232012430854, 32.240703164100694 ], [ 35.187177436828676, 32.240426979064978 ], [ 35.187715208689497, 32.240534791628647 ], [ 35.187916666666695, 32.240666666666812 ], [ 35.187958333333256, 32.240559935252008 ], [ 35.188, 32.240666666666812 ], [ 35.188166666666802, 32.240666666666812 ], [ 35.188166666666802, 32.240583333333348 ], [ 35.188222985585583, 32.240472005208346 ], [ 35.189138671875014, 32.240527994791762 ], [ 35.189416666666659, 32.240666666666812 ], [ 35.189601198832236, 32.240703919728617 ], [ 35.189666666666767, 32.240833333333455 ], [ 35.189915815989252, 32.240708393414934 ], [ 35.189833333333354, 32.240666666666812 ], [ 35.189628225962451, 32.240604913711536 ], [ 35.18975, 32.2405 ], [ 35.189838544209863, 32.240302341461245 ], [ 35.189583333333246, 32.240416666666761 ], [ 35.189500000000123, 32.240416666666761 ], [ 35.189500000000123, 32.2405 ], [ 35.189416666666659, 32.2405 ], [ 35.189333333333366, 32.2405 ], [ 35.189333333333366, 32.240416666666761 ], [ 35.189148801167789, 32.240379413604785 ], [ 35.189083333333258, 32.24025 ], [ 35.189013743082739, 32.240149208068885 ], [ 35.188572579701713, 32.24024810727451 ], [ 35.188215963999426, 32.239950703303009 ], [ 35.18788438797003, 32.239761445363399 ], [ 35.18779393386842, 32.239519702275629 ], [ 35.187677501678479, 32.239688336690335 ], [ 35.187049297332862, 32.239534036636371 ], [ 35.186833333333254, 32.2395 ], [ 35.18675, 32.2395 ], [ 35.18675, 32.23933333333332 ], [ 35.186666666666667, 32.23933333333332 ], [ 35.186666666666667, 32.23925 ], [ 35.186400679270491, 32.239216459274417 ], [ 35.186333333333323, 32.239083333333383 ], [ 35.186150430043654, 32.239013028462864 ], [ 35.18575, 32.23933333333332 ], [ 35.185817690531394, 32.239469511667892 ], [ 35.185666666666691, 32.2395 ], [ 35.185583333333398, 32.2395 ], [ 35.185583333333398, 32.239416666666784 ], [ 35.185527994791642, 32.239305338541783 ], [ 35.185500000000104, 32.239166666666733 ], [ 35.185311133066818, 32.239116839091025 ], [ 35.185212504069057, 32.238861112594691 ], [ 35.185048542022798, 32.238965208053742 ], [ 35.184618124644089, 32.239034791946494 ], [ 35.184203483581598, 32.239134700139516 ], [ 35.18397974522918, 32.238822538375871 ], [ 35.183637729644772, 32.238690629323457 ], [ 35.18374973932913, 32.238123791376779 ], [ 35.184, 32.238083333333464 ], [ 35.184041666666758, 32.237976601918604 ], [ 35.184083333333319, 32.238083333333464 ], [ 35.184166666666783, 32.238083333333464 ], [ 35.184243802388607, 32.237827135721886 ], [ 35.184453069051074, 32.237646842320885 ], [ 35.184539148966508, 32.237453932444339 ], [ 35.184705234527655, 32.237492420832268 ], [ 35.184416666666664, 32.238 ], [ 35.184635664622078, 32.238139326095677 ], [ 35.185379609425979, 32.238046276092632 ], [ 35.18541666666664, 32.238 ], [ 35.185361328125055, 32.237972005208405 ], [ 35.1853573595684, 32.237722005208354 ], [ 35.185637369791721, 32.237858754476065 ], [ 35.185666666666691, 32.237916666666649 ], [ 35.18575, 32.237916666666649 ], [ 35.185916666666799, 32.237833333333356 ], [ 35.185818911234605, 32.237706685384182 ], [ 35.184880364735932, 32.237547249476165 ], [ 35.184952968597543, 32.237452968597552 ], [ 35.18538036473592, 32.237380364735998 ], [ 35.18541666666664, 32.237 ], [ 35.185333333333347, 32.237 ], [ 35.185333333333347, 32.23691666666673 ], [ 35.185231731414831, 32.236888139088876 ], [ 35.18530480575572, 32.236815064748157 ], [ 35.185333333333347, 32.23691666666673 ], [ 35.18541666666664, 32.23691666666673 ], [ 35.185500000000104, 32.23691666666673 ], [ 35.185500000000104, 32.23675 ], [ 35.185541666666666, 32.236643268585283 ], [ 35.185583333333398, 32.23675 ], [ 35.185845624288049, 32.236639834086191 ], [ 35.185916666666799, 32.23691666666673 ], [ 35.18625, 32.23691666666673 ], [ 35.186284791310641, 32.236868125279784 ], [ 35.186472221374629, 32.236795836766646 ], [ 35.186332266489785, 32.236575393676731 ], [ 35.186881875356107, 32.23646520805363 ], [ 35.186951457977386, 32.236368125279796 ], [ 35.187, 32.236333333333448 ], [ 35.187, 32.23625 ], [ 35.18725000000012, 32.23625 ], [ 35.187291666666681, 32.236143268585295 ], [ 35.187333333333413, 32.23625 ], [ 35.187416666666763, 32.23625 ], [ 35.187416666666763, 32.236333333333448 ], [ 35.187488255818778, 32.236437018712479 ], [ 35.187791666666669, 32.236505036672099 ], [ 35.188091251373407, 32.236437877019284 ], [ 35.188511772155891, 32.236568226496502 ], [ 35.188635351816856, 32.236378450393715 ], [ 35.188583333333327, 32.236166666666804 ], [ 35.188711828867667, 32.235400115966911 ], [ 35.188963698069301, 32.235297031402581 ], [ 35.189156749725385, 32.235180581410873 ], [ 35.189333333333366, 32.23525 ], [ 35.189487944285133, 32.235056926727395 ], [ 35.189703723907598, 32.235153592427594 ], [ 35.189583333333246, 32.23525 ], [ 35.189611328125011, 32.235305338541707 ], [ 35.189833333333354, 32.235416666666765 ], [ 35.189916666666647, 32.235416666666765 ], [ 35.189916666666647, 32.235333333333472 ], [ 35.189916666666647, 32.235166666666657 ], [ 35.189721410115624, 32.235041666666802 ], [ 35.189916666666647, 32.234916666666777 ], [ 35.189916666666647, 32.23475 ], [ 35.189715963999561, 32.234617369333932 ], [ 35.189551506042392, 32.234549297332876 ], [ 35.189465963999453, 32.234882630666107 ], [ 35.189221906026319, 32.234950702667277 ], [ 35.188894630432173, 32.234737585703556 ], [ 35.18854929733277, 32.234882630666107 ], [ 35.188166666666802, 32.234916666666777 ], [ 35.188166666666802, 32.23525 ], [ 35.188, 32.23525 ], [ 35.188, 32.234916666666777 ], [ 35.188166666666802, 32.234916666666777 ], [ 35.188166666666802, 32.234833333333313 ], [ 35.188166666666802, 32.234666666666726 ], [ 35.18825, 32.234666666666726 ], [ 35.188398878733437, 32.234297031402605 ], [ 35.188680530548197, 32.234385369618849 ], [ 35.188883347829233, 32.234648129781078 ], [ 35.189202968597442, 32.234517316182519 ], [ 35.188963698069301, 32.234369635264216 ], [ 35.188786301930804, 32.234297031402605 ], [ 35.18875, 32.234166666666738 ], [ 35.188630678812672, 32.234067551930764 ], [ 35.188795520782605, 32.233628854115807 ], [ 35.188913126627654, 32.233228089650595 ], [ 35.189166666666779, 32.233083333333468 ], [ 35.189095624288029, 32.232806500752758 ], [ 35.188833333333378, 32.232916666666654 ] ], [ [ 35.18575, 32.239833333333479 ], [ 35.185874879201378, 32.239771258672135 ], [ 35.185999994913857, 32.239832361857225 ], [ 35.185916666666799, 32.24 ], [ 35.186166666666679, 32.24 ], [ 35.186202968597399, 32.239952968597493 ], [ 35.186324323018482, 32.239880364736052 ], [ 35.186452968597507, 32.240047031402639 ], [ 35.186574323018419, 32.24011963526408 ], [ 35.186710207621331, 32.239943590799896 ], [ 35.187119635264082, 32.240093334198036 ], [ 35.186903759002689, 32.240451215426162 ], [ 35.186481321970632, 32.240196399052991 ], [ 35.18625, 32.24025 ], [ 35.186166666666679, 32.24025 ], [ 35.18575, 32.24025 ], [ 35.18575, 32.240166666666653 ], [ 35.185666666666691, 32.240166666666653 ], [ 35.185583333333398, 32.240166666666653 ], [ 35.185583333333398, 32.24 ], [ 35.18541666666664, 32.24 ], [ 35.18532170232146, 32.24011858876554 ], [ 35.185212942759222, 32.239891581217478 ], [ 35.18541666666664, 32.239833333333479 ], [ 35.18553966776534, 32.239781671524042 ], [ 35.18575, 32.239833333333479 ] ], [ [ 35.188, 32.24025 ], [ 35.187898398081472, 32.24022147242232 ], [ 35.187971472422362, 32.240148398081431 ], [ 35.188, 32.24025 ], [ 35.188101601918561, 32.2402785275778 ], [ 35.188028527577842, 32.240351601918519 ], [ 35.188, 32.24025 ] ], [ [ 35.184583333333251, 32.240833333333455 ], [ 35.184538054148447, 32.24093914254513 ], [ 35.184391693115288, 32.240867110888246 ], [ 35.184583333333251, 32.240833333333455 ] ], [ [ 35.183416666666687, 32.239166666666733 ], [ 35.183388139089061, 32.239268268585249 ], [ 35.183315064748172, 32.23919519424453 ], [ 35.183416666666687, 32.239166666666733 ] ], [ [ 35.1832500000001, 32.238833333333332 ], [ 35.183347550710039, 32.239029581069985 ], [ 35.183213582356814, 32.239111328124977 ], [ 35.183138671875099, 32.238889652252283 ], [ 35.1832500000001, 32.238833333333332 ] ], [ [ 35.18425, 32.23675 ], [ 35.184281771342057, 32.236801562627136 ], [ 35.184458816528434, 32.236910651524909 ], [ 35.184531771341994, 32.237203529993735 ], [ 35.184193555196202, 32.237281770706318 ], [ 35.18402357101445, 32.236782964706435 ], [ 35.18425, 32.23675 ] ], [ [ 35.184666666666772, 32.237 ], [ 35.184638139088918, 32.237101601918539 ], [ 35.184565064748256, 32.23702852757782 ], [ 35.184666666666772, 32.237 ] ], [ [ 35.18625, 32.236583333333328 ], [ 35.186221472422346, 32.236684935252015 ], [ 35.186148398081457, 32.236611860911125 ], [ 35.18625, 32.236583333333328 ] ], [ [ 35.186583333333374, 32.236166666666804 ], [ 35.186680884043483, 32.236362914403287 ], [ 35.186546915690087, 32.236444661458449 ], [ 35.186472005208373, 32.236222985585584 ], [ 35.186583333333374, 32.236166666666804 ] ], [ [ 35.188583333333327, 32.235 ], [ 35.188663299560517, 32.235182353973414 ], [ 35.188342440287329, 32.235282526016363 ], [ 35.188410027821874, 32.235042022705215 ], [ 35.188583333333327, 32.235 ] ], [ [ 35.188166666666802, 32.234333333333325 ], [ 35.188138139089006, 32.234434935252011 ], [ 35.188065064748116, 32.234361860911122 ], [ 35.188166666666802, 32.234333333333325 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Id": 6, "luf": "Residential Areas with Low Density" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.202166666666642, 32.230916666666758 ], [ 35.202, 32.231 ], [ 35.202, 32.231083333333345 ], [ 35.20179692077636, 32.231411829630531 ], [ 35.201779248555511, 32.231708333333358 ], [ 35.20179428354902, 32.231960592905693 ], [ 35.201465586344455, 32.232062093099046 ], [ 35.201960678100704, 32.23228932317113 ], [ 35.202205988566163, 32.232460676829135 ], [ 35.202416666666693, 32.232583333333309 ], [ 35.202666666666801, 32.232583333333309 ], [ 35.202666666666801, 32.232666666666773 ], [ 35.202916666666681, 32.232666666666773 ], [ 35.202916666666681, 32.23275 ], [ 35.203166666666789, 32.23275 ], [ 35.203166666666789, 32.23283333333336 ], [ 35.20325, 32.23283333333336 ], [ 35.20325, 32.23275 ], [ 35.203333333333376, 32.23275 ], [ 35.203697949727314, 32.232543858846157 ], [ 35.204000000000121, 32.232166666666785 ], [ 35.203833333333364, 32.232083333333321 ], [ 35.20375, 32.232083333333321 ], [ 35.20375, 32.231916666666734 ], [ 35.203547030131062, 32.231786301930811 ], [ 35.203092137654664, 32.231600124359147 ], [ 35.202904792785773, 32.231142374674619 ], [ 35.202452969869114, 32.231047031402625 ], [ 35.202297030130978, 32.230952968597478 ], [ 35.202166666666642, 32.230916666666758 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Id": 6, "luf": "Residential Areas with Low Density" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.215416666666727, 32.215916666666772 ], [ 35.215333333333433, 32.215916666666772 ], [ 35.215215652465929, 32.215997917175343 ], [ 35.215132629394645, 32.216198493957563 ], [ 35.215465962727819, 32.216284037272203 ], [ 35.215835220336885, 32.21652449289968 ], [ 35.215700703938865, 32.216617370605547 ], [ 35.215666666666664, 32.21675 ], [ 35.215750000000128, 32.21675 ], [ 35.215750000000128, 32.216833333333454 ], [ 35.215784037272158, 32.217049296061134 ], [ 35.215833333333421, 32.217250000000149 ], [ 35.216034037272209, 32.217382629394535 ], [ 35.216215962727915, 32.217450703938937 ], [ 35.216250000000116, 32.2175 ], [ 35.216666666666811, 32.2175 ], [ 35.216666666666811, 32.217583333333323 ], [ 35.216942143758217, 32.217615974426337 ], [ 35.216833333333398, 32.217666666666616 ], [ 35.216833333333398, 32.217750000000137 ], [ 35.216944661458399, 32.217805338541666 ], [ 35.217222005208328, 32.217861328125139 ], [ 35.217333333333386, 32.217916666666724 ], [ 35.217333333333386, 32.217583333333323 ], [ 35.217375000000118, 32.217476603190221 ], [ 35.217416666666679, 32.217583333333323 ], [ 35.217695256551167, 32.217541666666762 ], [ 35.217404688517377, 32.217355651855598 ], [ 35.217337849934836, 32.21711780802417 ], [ 35.217833333333374, 32.217083333333335 ], [ 35.217906397501736, 32.216969200134258 ], [ 35.218166666666718, 32.217083333333335 ], [ 35.218205988566069, 32.217039321899392 ], [ 35.218372655232827, 32.216890408833876 ], [ 35.218222386678065, 32.216219586690272 ], [ 35.217897623698036, 32.216043108622159 ], [ 35.217455988566201, 32.2159606781006 ], [ 35.217322133382197, 32.215810867309585 ], [ 35.216956451416024, 32.215789070129347 ], [ 35.216794011434047, 32.21587734476725 ], [ 35.216045603434281, 32.2160170338949 ], [ 35.216349706014057, 32.216452390035045 ], [ 35.216052795410178, 32.216470087687242 ], [ 35.2157940114339, 32.216289321899524 ], [ 35.215575144449986, 32.216188870747942 ], [ 35.215416666666727, 32.215916666666772 ] ], [ [ 35.217, 32.2165 ], [ 35.216967473348063, 32.216634140014719 ], [ 35.216865859985319, 32.216699193318789 ], [ 35.21680080668142, 32.216800806681306 ], [ 35.216550806681369, 32.216930674235016 ], [ 35.216661554972404, 32.216536595662376 ], [ 35.217, 32.2165 ] ], [ [ 35.216250000000116, 32.216666666666697 ], [ 35.216331756591842, 32.216865623474121 ], [ 35.216048543294391, 32.216719815572219 ], [ 35.216250000000116, 32.216666666666697 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Id": 6, "luf": "Residential Areas with Low Density" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.243, 32.198333333333437 ], [ 35.242871902465879, 32.198371902465851 ], [ 35.242511718749995, 32.198627283732208 ], [ 35.24254524739581, 32.19904455057781 ], [ 35.242353159586685, 32.199130264282246 ], [ 35.242164194742884, 32.199349594116143 ], [ 35.241794764200904, 32.199188354492208 ], [ 35.242024180094461, 32.1989907073974 ], [ 35.241783253987705, 32.198794764200841 ], [ 35.241461430867503, 32.199112940470513 ], [ 35.241836634318076, 32.199592025756772 ], [ 35.24175, 32.199666666666587 ], [ 35.241832845052102, 32.199833333333402 ], [ 35.24175, 32.2 ], [ 35.24175, 32.20033333333339 ], [ 35.241715209960887, 32.200548543294303 ], [ 35.241127237955766, 32.200666417439777 ], [ 35.241083333333449, 32.200500000000147 ], [ 35.240818074544279, 32.200431925455746 ], [ 35.24075, 32.20033333333339 ], [ 35.240416666666704, 32.20033333333339 ], [ 35.240380366007514, 32.200380366007494 ], [ 35.24028630065925, 32.200452967325873 ], [ 35.24015795389812, 32.20061925252287 ], [ 35.239833333333422, 32.20075 ], [ 35.239458333333459, 32.200657892863035 ], [ 35.239083333333326, 32.20075 ], [ 35.239194661458384, 32.200972005208371 ], [ 35.239423309326298, 32.20123441569018 ], [ 35.239307902018254, 32.20147071838386 ], [ 35.238916666666739, 32.201666666666711 ], [ 35.23875, 32.201666666666711 ], [ 35.23875, 32.201500000000124 ], [ 35.238712748209707, 32.201315470377608 ], [ 35.238583333333338, 32.20125 ], [ 35.23849403889983, 32.201365681966251 ], [ 35.238380366007561, 32.201175674438502 ], [ 35.2385, 32.201083333333429 ], [ 35.238583333333338, 32.201083333333429 ], [ 35.238583333333338, 32.200916666666672 ], [ 35.238666666666688, 32.200916666666672 ], [ 35.238528396606569, 32.200716405232697 ], [ 35.23825, 32.200833333333321 ], [ 35.2381666666667, 32.201000000000136 ], [ 35.2381666666667, 32.20125 ], [ 35.238, 32.20125 ], [ 35.237931925455655, 32.201348592122429 ], [ 35.237534037272098, 32.201450703938804 ], [ 35.237416666666604, 32.201500000000124 ], [ 35.237527994791662, 32.201722005208467 ], [ 35.237649531046657, 32.201783487955709 ], [ 35.237583333333419, 32.201916666666591 ], [ 35.237690063476691, 32.201958333333323 ], [ 35.237583333333419, 32.202000000000112 ], [ 35.237583333333419, 32.202083333333405 ], [ 35.237500000000125, 32.202083333333405 ], [ 35.237527994791662, 32.202138671874934 ], [ 35.23775, 32.20225 ], [ 35.237856730143278, 32.202291666666724 ], [ 35.23775, 32.202333333333456 ], [ 35.237777994791713, 32.202388671875042 ], [ 35.238020222981788, 32.202458577474033 ], [ 35.238083333333407, 32.202583333333394 ], [ 35.2381666666667, 32.202583333333394 ], [ 35.2381666666667, 32.202666666666687 ], [ 35.238277994791702, 32.202611328125101 ], [ 35.2385, 32.202583333333394 ], [ 35.238796274821084, 32.202462941487738 ], [ 35.23893946329764, 32.202284138997413 ], [ 35.239125, 32.202307215372855 ], [ 35.239308115641336, 32.202284439086952 ], [ 35.239260742187525, 32.202665273030732 ], [ 35.238583333333338, 32.202750000000151 ], [ 35.238617370605539, 32.203049296061124 ], [ 35.238823445637991, 32.203191579182942 ], [ 35.238770095825259, 32.203429565429701 ], [ 35.239049296061125, 32.20353403727222 ], [ 35.239212987264125, 32.203640627543223 ], [ 35.239485102335607, 32.203452748616598 ], [ 35.239429356893027, 32.203204068501861 ], [ 35.239882629394515, 32.203132629394645 ], [ 35.24003403727221, 32.203034037272232 ], [ 35.240166666666767, 32.203 ], [ 35.240208333333328, 32.202893269856759 ], [ 35.24025, 32.203 ], [ 35.24046520996103, 32.202881876627657 ], [ 35.240534790039078, 32.202784790039061 ], [ 35.240715209960968, 32.202715209961013 ], [ 35.240784790039186, 32.202618123372474 ], [ 35.241196441650459, 32.202459360758382 ], [ 35.241300613403268, 32.202295277913493 ], [ 35.241275029500457, 32.202165812174542 ], [ 35.241369171142708, 32.201696238199816 ], [ 35.2415, 32.20175 ], [ 35.241541666666706, 32.201643269856902 ], [ 35.241583333333438, 32.20175 ], [ 35.242061238606823, 32.201671493530398 ], [ 35.24241666666677, 32.201833333333468 ], [ 35.242555338541649, 32.20180533854176 ], [ 35.242666666666707, 32.20175 ], [ 35.242666666666707, 32.201666666666711 ], [ 35.243, 32.201666666666711 ], [ 35.243138671875101, 32.201638671875003 ], [ 35.24325, 32.201583333333417 ], [ 35.243277994791697, 32.201527994791661 ], [ 35.243399531046521, 32.201466512044249 ], [ 35.243333333333453, 32.201333333333309 ], [ 35.243333333333453, 32.201083333333429 ], [ 35.243416666666747, 32.201083333333429 ], [ 35.243638346354146, 32.200961654663104 ], [ 35.243520161946662, 32.200775497436553 ], [ 35.243550923665339, 32.200619832356779 ], [ 35.243434499104865, 32.200536387125794 ], [ 35.243549906412738, 32.199958368937303 ], [ 35.243504938761475, 32.199730794270977 ], [ 35.243605606079143, 32.199631876627677 ], [ 35.243871388753234, 32.19980061340334 ], [ 35.243962107340508, 32.19978268941253 ], [ 35.244034790039166, 32.199832000732499 ], [ 35.24376390075696, 32.200026158650701 ], [ 35.243836222330742, 32.200392150878884 ], [ 35.24375, 32.20075 ], [ 35.244181406656821, 32.200781071980941 ], [ 35.244250000000136, 32.200916666666672 ], [ 35.244358261108459, 32.200965021769321 ], [ 35.244166666666615, 32.201000000000136 ], [ 35.243903752644883, 32.200935424804811 ], [ 35.24375, 32.201000000000136 ], [ 35.24375, 32.201166666666722 ], [ 35.243833333333441, 32.201166666666722 ], [ 35.244138671875078, 32.20119466145826 ], [ 35.244250000000136, 32.20125 ], [ 35.244291666666697, 32.201143269856914 ], [ 35.244333333333429, 32.20125 ], [ 35.244472005208308, 32.201222005208479 ], [ 35.244611328125018, 32.201111328125137 ], [ 35.244853912353506, 32.201041320800755 ], [ 35.245, 32.20075 ], [ 35.244963699340815, 32.200702967325924 ], [ 35.244630366007584, 32.200566543579157 ], [ 35.244702967325964, 32.20036963399258 ], [ 35.244798456827823, 32.200295934041321 ], [ 35.244778040568008, 32.200157801310297 ], [ 35.24511185709639, 32.200108469645329 ], [ 35.245306437174463, 32.200225840250653 ], [ 35.24566666666675, 32.200166666666746 ], [ 35.245632629394549, 32.200117370605483 ], [ 35.24488262939451, 32.199614430745441 ], [ 35.244950703938912, 32.1992007039388 ], [ 35.245, 32.199083333333306 ], [ 35.24482059224448, 32.198994155883895 ], [ 35.244638671875066, 32.199138671875062 ], [ 35.2445, 32.199166666666599 ], [ 35.244308405558343, 32.199131688436012 ], [ 35.244416666666723, 32.199083333333306 ], [ 35.244452214558976, 32.199035547892322 ], [ 35.244618881225563, 32.198911570231076 ], [ 35.2442072703044, 32.198797785441172 ], [ 35.243547276814866, 32.198936447143694 ], [ 35.243434682210307, 32.199087809244872 ], [ 35.243120269775375, 32.1990336812338 ], [ 35.242994903564465, 32.199202214558909 ], [ 35.242739395141655, 32.199013743082787 ], [ 35.242700347900495, 32.198786936442104 ], [ 35.242893361409472, 32.198643361409552 ], [ 35.243, 32.1985 ], [ 35.242893269856779, 32.198458333333463 ], [ 35.243, 32.198416666666731 ], [ 35.243, 32.198333333333437 ] ], [ [ 35.242333333333477, 32.201500000000124 ], [ 35.242304804484149, 32.20160160319017 ], [ 35.24223173014326, 32.201528528849281 ], [ 35.242333333333477, 32.201500000000124 ] ], [ [ 35.238083333333407, 32.201500000000124 ], [ 35.23798173014336, 32.201471471150796 ], [ 35.238054804484079, 32.201398396809907 ], [ 35.238083333333407, 32.201500000000124 ], [ 35.238272710164381, 32.201533381144202 ], [ 35.238129679362089, 32.201608306884793 ], [ 35.238083333333407, 32.201500000000124 ] ], [ [ 35.242166666666719, 32.201333333333309 ], [ 35.242138137817392, 32.201434936523526 ], [ 35.242065063476673, 32.201361862182637 ], [ 35.242166666666719, 32.201333333333309 ] ], [ [ 35.2405, 32.200833333333321 ], [ 35.240555201212658, 32.200956553141395 ], [ 35.240473815918051, 32.201217839558979 ], [ 35.240218231201311, 32.201235773722431 ], [ 35.240306427001997, 32.200952606201213 ], [ 35.2405, 32.200833333333321 ] ], [ [ 35.242166666666719, 32.200666666666734 ], [ 35.242199295044031, 32.200442540486733 ], [ 35.242466842651424, 32.200525873820027 ], [ 35.2425, 32.200666666666734 ], [ 35.242635182698564, 32.200871236165312 ], [ 35.242599477132217, 32.201030522664325 ], [ 35.24222654724133, 32.201170064290409 ], [ 35.242091181437274, 32.200973999023461 ], [ 35.242166666666719, 32.200666666666734 ] ], [ [ 35.240583333333461, 32.20175 ], [ 35.240525822957466, 32.201910278320383 ], [ 35.240649144490703, 32.202370722452827 ], [ 35.240287089030062, 32.202117823282947 ], [ 35.24012286376967, 32.202127609253012 ], [ 35.239877344767365, 32.201810262044262 ], [ 35.240583333333461, 32.20175 ] ], [ [ 35.238833333333446, 32.20175 ], [ 35.238947341918959, 32.202015619913823 ], [ 35.238759755452577, 32.202116612752263 ], [ 35.238633387247773, 32.201799891153996 ], [ 35.238833333333446, 32.20175 ] ], [ [ 35.242916666666758, 32.199833333333402 ], [ 35.243029576619449, 32.20008538309736 ], [ 35.242718231201195, 32.199955602010164 ], [ 35.242916666666758, 32.199833333333402 ] ], [ [ 35.24275, 32.199583333333464 ], [ 35.242721471150844, 32.199684936523511 ], [ 35.242648396809955, 32.199611862182621 ], [ 35.24275, 32.199583333333464 ] ], [ [ 35.243083333333345, 32.199416666666707 ], [ 35.242808756510385, 32.199380986531594 ], [ 35.243024297078534, 32.199304585774769 ], [ 35.243083333333345, 32.199416666666707 ], [ 35.243799296061241, 32.199450703938908 ], [ 35.243867370605471, 32.199510442098017 ], [ 35.243128016154003, 32.199700180053696 ], [ 35.243083333333345, 32.199416666666707 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Id": 7, "luf": "Residential Areas with Moderate Density" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.19183333333325, 32.20475 ], [ 35.19183333333325, 32.204833333333397 ], [ 35.191750000000127, 32.204833333333397 ], [ 35.191666666666663, 32.204833333333397 ], [ 35.191555338541662, 32.204888671874926 ], [ 35.191333333333262, 32.204916666666691 ], [ 35.191140060424857, 32.204954427083351 ], [ 35.191276606241843, 32.205212239583375 ], [ 35.191083333333381, 32.20525 ], [ 35.190967066446945, 32.205333333333328 ], [ 35.191227066040028, 32.205519686381024 ], [ 35.191118125915523, 32.205784792582165 ], [ 35.191083333333381, 32.20591666666661 ], [ 35.191166666666675, 32.20591666666661 ], [ 35.191166666666675, 32.206083333333424 ], [ 35.191166666666675, 32.206166666666718 ], [ 35.19125, 32.206333333333475 ], [ 35.191188247680657, 32.206538439432904 ], [ 35.191083333333381, 32.206416666666598 ], [ 35.19083333333333, 32.206416666666598 ], [ 35.190666666666687, 32.206416666666598 ], [ 35.190666666666687, 32.206500000000119 ], [ 35.190666666666687, 32.206666666666706 ], [ 35.190666666666687, 32.20675 ], [ 35.190583333333393, 32.20675 ], [ 35.190583333333393, 32.206833333333464 ], [ 35.1905000000001, 32.206833333333464 ], [ 35.190449872334909, 32.206905937194904 ], [ 35.190083333333405, 32.207 ], [ 35.190083333333405, 32.207083333333401 ], [ 35.18975, 32.207083333333401 ], [ 35.189666666666767, 32.207083333333401 ], [ 35.189598718007403, 32.207626592000395 ], [ 35.189346407572486, 32.207787058512508 ], [ 35.189096387227437, 32.207474840799989 ], [ 35.188870390574209, 32.207379608154383 ], [ 35.188783924102893, 32.206882743835479 ], [ 35.1885, 32.206833333333464 ], [ 35.1885, 32.207166666666694 ], [ 35.188636145273904, 32.207363853454638 ], [ 35.189033205668238, 32.207638000488259 ], [ 35.189083333333258, 32.20783333333344 ], [ 35.189062890370735, 32.208229558308915 ], [ 35.188817142486698, 32.208277605692615 ], [ 35.188934707641636, 32.208390843709424 ], [ 35.18875, 32.208416666666722 ], [ 35.188617369333997, 32.208450703938922 ], [ 35.188535001118964, 32.208570002237991 ], [ 35.18825, 32.2085 ], [ 35.188167396545339, 32.208666178385556 ], [ 35.188265349070207, 32.208866744995078 ], [ 35.188166666666802, 32.20891666666671 ], [ 35.188362907409726, 32.209451049804784 ], [ 35.187647276560597, 32.209560096740745 ], [ 35.187166666666656, 32.209833333333336 ], [ 35.187166666666656, 32.209916666666686 ], [ 35.187083333333362, 32.209916666666686 ], [ 35.187, 32.209916666666686 ], [ 35.187, 32.21000000000015 ], [ 35.187126588185663, 32.210040077209612 ], [ 35.187290078481112, 32.210135653177872 ], [ 35.187123411814355, 32.210290077209493 ], [ 35.187040190378923, 32.210379895528149 ], [ 35.18675, 32.21036839294436 ], [ 35.1865, 32.210378303527818 ], [ 35.186320021311417, 32.21037117004397 ], [ 35.186126588185743, 32.21038565317798 ], [ 35.186456116994236, 32.210690979003914 ], [ 35.186017177581789, 32.210795532226712 ], [ 35.18575, 32.21125 ], [ 35.186026832580694, 32.211321042378756 ], [ 35.185916666666799, 32.211583333333408 ], [ 35.186032933553065, 32.211666666666702 ], [ 35.185916666666799, 32.21175 ], [ 35.186, 32.211916666666752 ], [ 35.186, 32.212 ], [ 35.186138671875142, 32.211972005208338 ], [ 35.18625, 32.211916666666752 ], [ 35.186711432139077, 32.211711433410755 ], [ 35.186919174194259, 32.211595525105793 ], [ 35.187166666666656, 32.21175 ], [ 35.187206818898574, 32.211647547404084 ], [ 35.187273462931273, 32.21179147847505 ], [ 35.187166666666656, 32.211833333333459 ], [ 35.187166666666656, 32.211916666666752 ], [ 35.187273398081459, 32.211958333333314 ], [ 35.187166666666656, 32.212 ], [ 35.187166666666656, 32.21225 ], [ 35.18725000000012, 32.21225 ], [ 35.187278527577746, 32.212148396809937 ], [ 35.187351601918465, 32.21222147369383 ], [ 35.18725000000012, 32.21225 ], [ 35.187283541361467, 32.212515986124629 ], [ 35.187416666666763, 32.212583333333328 ], [ 35.187527343750048, 32.2126393229168 ], [ 35.187611328125058, 32.212805338541671 ], [ 35.187833333333401, 32.212916666666729 ], [ 35.188130364735912, 32.212952969868923 ], [ 35.188480283101512, 32.213212399800682 ], [ 35.18753630193072, 32.213286303202324 ], [ 35.1875, 32.213333333333424 ], [ 35.1875, 32.213666666666768 ], [ 35.1875, 32.21375 ], [ 35.18770690027884, 32.213703941345216 ], [ 35.187953303019185, 32.213729054768919 ], [ 35.188121145884281, 32.213987668355287 ], [ 35.187632722218837, 32.213937886555982 ], [ 35.187750000000108, 32.21425 ], [ 35.187786301930828, 32.214297030131149 ], [ 35.187963698069325, 32.214369636535764 ], [ 35.188036301930708, 32.214443478902297 ], [ 35.187702968597534, 32.214536303202351 ], [ 35.187630364735924, 32.214630363464323 ], [ 35.187333333333413, 32.21475 ], [ 35.187, 32.214916666666625 ], [ 35.186851535797189, 32.215192576090487 ], [ 35.18654987843837, 32.215116572062186 ], [ 35.1865, 32.214916666666625 ], [ 35.186416666666787, 32.214916666666625 ], [ 35.186416666666787, 32.214833333333331 ], [ 35.185798534393427, 32.214756106058815 ], [ 35.18571294275921, 32.214986925761025 ], [ 35.185833333333335, 32.215083333333439 ], [ 35.18588325500491, 32.214984652201338 ], [ 35.186137369791709, 32.215108754475978 ], [ 35.186166666666679, 32.215166666666732 ], [ 35.18625, 32.215166666666732 ], [ 35.186341634114683, 32.215052235921291 ], [ 35.1865, 32.21525 ], [ 35.186527994791788, 32.215305338541782 ], [ 35.186649532318143, 32.215366821289194 ], [ 35.186583333333374, 32.215500000000134 ], [ 35.186583333333374, 32.215583333333427 ], [ 35.1865, 32.215583333333427 ], [ 35.1865, 32.215666666666721 ], [ 35.186550376892228, 32.21578925577802 ], [ 35.186466238657715, 32.216215042114356 ], [ 35.186034791310703, 32.216284792582314 ], [ 35.185961508433024, 32.216562563578407 ], [ 35.18582765070596, 32.216375803629546 ], [ 35.185666666666691, 32.216333333333466 ], [ 35.18541666666664, 32.2165 ], [ 35.185559476216611, 32.216706840515258 ], [ 35.185833333333335, 32.21675 ], [ 35.185965098063093, 32.21668450164799 ], [ 35.18602799479163, 32.216777013142973 ], [ 35.185916666666799, 32.216833333333454 ], [ 35.185853047688795, 32.216959091186652 ], [ 35.185598476409893, 32.217027994791806 ], [ 35.185500000000104, 32.216833333333454 ], [ 35.18541666666664, 32.216833333333454 ], [ 35.18541666666664, 32.21675 ], [ 35.185333333333347, 32.21675 ], [ 35.185222656250005, 32.216694010416688 ], [ 35.18516666666676, 32.216583333333347 ], [ 35.184648181915406, 32.216288566589355 ], [ 35.18428856786096, 32.216128100077299 ], [ 35.184083663940498, 32.216013776143541 ], [ 35.184, 32.215916666666772 ], [ 35.183833333333382, 32.215916666666772 ], [ 35.183666666666795, 32.215833333333478 ], [ 35.183386015574229, 32.215785657246954 ], [ 35.183083333333343, 32.215666666666721 ], [ 35.182617369334025, 32.215549296061226 ], [ 35.182583333333355, 32.215500000000134 ], [ 35.182205989837712, 32.215460678100612 ], [ 35.181040136973138, 32.215211588541649 ], [ 35.181, 32.215166666666732 ], [ 35.180617369333959, 32.215132629394532 ], [ 35.180215963363764, 32.215034037272176 ], [ 35.179497703552329, 32.214965962727945 ], [ 35.179382630030432, 32.215132629394532 ], [ 35.179034036636438, 32.215200703938933 ], [ 35.178715963363686, 32.215299296061289 ], [ 35.178416666666749, 32.215333333333319 ], [ 35.17831175295521, 32.215455106099398 ], [ 35.178250000000105, 32.21525 ], [ 35.178250000000105, 32.215166666666732 ], [ 35.178194661458349, 32.21519466145844 ], [ 35.178062199910528, 32.215456504821816 ], [ 35.178166666666641, 32.215666666666721 ], [ 35.178333333333399, 32.215583333333427 ], [ 35.178416666666749, 32.21546706644699 ], [ 35.1785, 32.215583333333427 ], [ 35.1786666666668, 32.215500000000134 ], [ 35.178833333333387, 32.215416666666613 ], [ 35.17891666666668, 32.215300399780403 ], [ 35.179, 32.215416666666613 ], [ 35.179239016214979, 32.215258717854908 ], [ 35.179416666666668, 32.215333333333319 ], [ 35.179455557505321, 32.215277005513599 ], [ 35.179772036234567, 32.215070917765274 ], [ 35.18, 32.215166666666732 ], [ 35.180041666666682, 32.215059936523403 ], [ 35.180083333333243, 32.215166666666732 ], [ 35.180222005208293, 32.21519466145844 ], [ 35.180333333333351, 32.21525 ], [ 35.180383630116808, 32.215150576273686 ], [ 35.18075, 32.215333333333319 ], [ 35.181267548878964, 32.215376592000382 ], [ 35.182322719573961, 32.215606745402113 ], [ 35.182968617757297, 32.215783515930298 ], [ 35.183083333333343, 32.215916666666772 ], [ 35.183333333333394, 32.215916666666772 ], [ 35.183628098805684, 32.216038566589475 ], [ 35.184, 32.21625 ], [ 35.184083333333319, 32.21625 ], [ 35.184083333333319, 32.21641666666676 ], [ 35.184119635264153, 32.216547030131153 ], [ 35.18434670766203, 32.216853304545168 ], [ 35.184625328063987, 32.21638745117184 ], [ 35.185041858673117, 32.216696268717442 ], [ 35.185083333333409, 32.21675 ], [ 35.185194010416751, 32.216805989583406 ], [ 35.18525, 32.216916666666748 ], [ 35.185388671875103, 32.216944661458285 ], [ 35.185611328124992, 32.217138671875091 ], [ 35.185833333333335, 32.217250000000149 ], [ 35.186, 32.217333333333443 ], [ 35.186134457906064, 32.21736880747477 ], [ 35.186116041819275, 32.217462003072114 ], [ 35.186271704355988, 32.217701459248985 ], [ 35.186381024678553, 32.217418011983284 ], [ 35.187214683532716, 32.21758445739755 ], [ 35.187333333333413, 32.217750000000137 ], [ 35.187629945119227, 32.217826118469304 ], [ 35.187784036000608, 32.218049296061281 ], [ 35.187833333333401, 32.218083333333311 ], [ 35.188017865498978, 32.218120585123756 ], [ 35.188083333333338, 32.21825 ], [ 35.188478706359888, 32.2185151316325 ], [ 35.188583333333327, 32.218666666666763 ], [ 35.188583333333327, 32.21875 ], [ 35.18875, 32.21875 ], [ 35.18875, 32.21883333333335 ], [ 35.188950702667171, 32.219132629394551 ], [ 35.189049297332758, 32.219200703938782 ], [ 35.189083333333258, 32.21925 ], [ 35.189166666666779, 32.21925 ], [ 35.189166666666779, 32.219333333333338 ], [ 35.189268268585295, 32.219361859639491 ], [ 35.189195194244405, 32.219434936523555 ], [ 35.189166666666779, 32.219333333333338 ], [ 35.189083333333258, 32.219333333333338 ], [ 35.189083333333258, 32.21925 ], [ 35.189, 32.21925 ], [ 35.189, 32.219500000000153 ], [ 35.188916666666671, 32.219500000000153 ], [ 35.188952968597391, 32.219547030131025 ], [ 35.189333333333366, 32.219833333333327 ], [ 35.189375, 32.219726603190225 ], [ 35.189416666666659, 32.219833333333327 ], [ 35.189583333333246, 32.219833333333327 ], [ 35.189583333333246, 32.21991666666662 ], [ 35.189639322916719, 32.220027343750132 ], [ 35.189805338541589, 32.220111328125142 ], [ 35.189861328125062, 32.220222005208484 ], [ 35.189916666666647, 32.22025 ], [ 35.189895468394013, 32.220021197001245 ], [ 35.189687864939401, 32.219812136332223 ], [ 35.189666666666767, 32.219583333333446 ], [ 35.189367369334036, 32.219382629394659 ], [ 35.189166666666779, 32.219 ], [ 35.188796457926458, 32.218703542073683 ], [ 35.1885, 32.218333333333419 ], [ 35.188416666666683, 32.218333333333419 ], [ 35.188416666666683, 32.21825 ], [ 35.18825, 32.21825 ], [ 35.18825, 32.218083333333311 ], [ 35.188166666666802, 32.218083333333311 ], [ 35.188166666666802, 32.218 ], [ 35.187722845713324, 32.217777717590479 ], [ 35.187666666666644, 32.217666666666616 ], [ 35.187534791310668, 32.217631874084475 ], [ 35.187343875885006, 32.217510665893599 ], [ 35.186701457977335, 32.217381874084595 ], [ 35.186465208689469, 32.217284792582291 ], [ 35.186201457977347, 32.21721520741778 ], [ 35.186083333333386, 32.217166666666628 ], [ 35.185878225962313, 32.217104914347317 ], [ 35.186, 32.217 ], [ 35.186063112894715, 32.216875241597506 ], [ 35.186353553771937, 32.216791425069232 ], [ 35.186416666666787, 32.216666666666697 ], [ 35.186416666666787, 32.2165 ], [ 35.1865, 32.2165 ], [ 35.1865, 32.21641666666676 ], [ 35.186583333333374, 32.21641666666676 ], [ 35.186666666666667, 32.21641666666676 ], [ 35.186666666666667, 32.21625 ], [ 35.186559935251864, 32.216208333333441 ], [ 35.186666666666667, 32.216166666666709 ], [ 35.18675, 32.216166666666709 ], [ 35.18675, 32.216 ], [ 35.186789164225274, 32.215723485310889 ], [ 35.186833333333254, 32.215916666666772 ], [ 35.186916666666775, 32.215916666666772 ], [ 35.186916666666775, 32.216 ], [ 35.187166666666656, 32.216 ], [ 35.187166666666656, 32.21575 ], [ 35.187228740692206, 32.215625119527317 ], [ 35.187143745422361, 32.2154510828654 ], [ 35.187416666666763, 32.215416666666613 ], [ 35.1875, 32.215416666666613 ], [ 35.1875, 32.215500000000134 ], [ 35.188044765472398, 32.21562189992278 ], [ 35.188356580098457, 32.215736409505212 ], [ 35.188493802388507, 32.215577135721901 ], [ 35.18875, 32.215500000000134 ], [ 35.188722005208376, 32.21519466145844 ], [ 35.188666666666791, 32.215083333333439 ], [ 35.188472005208439, 32.215044034322091 ], [ 35.188552209218471, 32.214901682535924 ], [ 35.18875, 32.215000000000146 ], [ 35.188788414001465, 32.214953755696627 ], [ 35.189194842020697, 32.214995180765868 ], [ 35.188954479217443, 32.214795522054089 ], [ 35.188916666666671, 32.21475 ], [ 35.188916666666671, 32.214666666666744 ], [ 35.189, 32.214666666666744 ], [ 35.189041666666697, 32.214559936523472 ], [ 35.189083333333258, 32.214666666666744 ], [ 35.189323576609411, 32.214725674947147 ], [ 35.189270966847857, 32.214490994771381 ], [ 35.1896236534119, 32.214411931355869 ], [ 35.189833333333354, 32.2145 ], [ 35.190000000000111, 32.2145 ], [ 35.1901512616476, 32.214395563761457 ], [ 35.190000000000111, 32.214166666666756 ], [ 35.189833333333354, 32.214166666666756 ], [ 35.189833333333354, 32.213916666666705 ], [ 35.189611328125011, 32.213805338541647 ], [ 35.189583333333246, 32.21375 ], [ 35.189416666666659, 32.21375 ], [ 35.189416666666659, 32.213333333333424 ], [ 35.189217520395971, 32.213075330098434 ], [ 35.188963698069301, 32.213720987955753 ], [ 35.189036301930855, 32.213880363464455 ], [ 35.189286301930792, 32.214073331197085 ], [ 35.188847670237294, 32.214045644124383 ], [ 35.188718555450521, 32.213171925862753 ], [ 35.188884780883768, 32.213043622334908 ], [ 35.188781885782987, 32.212873044332014 ], [ 35.188881787618072, 32.212795931498192 ], [ 35.188812942504967, 32.212330060323154 ], [ 35.188963698069301, 32.212213696797733 ], [ 35.189036301930855, 32.212036303202296 ], [ 35.189083333333258, 32.212 ], [ 35.189229670206771, 32.211765546162894 ], [ 35.189194817861051, 32.211331792195779 ], [ 35.189436979929724, 32.21104476674401 ], [ 35.189547009786054, 32.21176683298745 ], [ 35.189536575317504, 32.211896692911864 ], [ 35.189416666666659, 32.212 ], [ 35.189477287292505, 32.212124478658041 ], [ 35.189387916565011, 32.212323399861646 ], [ 35.189551904042617, 32.212507397969546 ], [ 35.189583333333246, 32.212083333333339 ], [ 35.189645086924315, 32.211878227233967 ], [ 35.18975, 32.212 ], [ 35.190017679850257, 32.21211242930093 ], [ 35.19041747538256, 32.212022804260243 ], [ 35.19030171966557, 32.211506449381545 ], [ 35.190632630666187, 32.211382629394564 ], [ 35.190706298828104, 32.211185747782395 ], [ 35.190861427307198, 32.211049296061219 ], [ 35.191166193644335, 32.21124775695796 ], [ 35.191034037272118, 32.211450703938795 ], [ 35.191, 32.21175 ], [ 35.191416666666782, 32.21175 ], [ 35.191378100077372, 32.211705233256055 ], [ 35.191140319824285, 32.2115991338095 ], [ 35.191368034362881, 32.211378100077411 ], [ 35.191788566589366, 32.211561642964796 ], [ 35.191621899922779, 32.211705233256055 ], [ 35.191583333333369, 32.21175 ], [ 35.191500488281292, 32.211916666666752 ], [ 35.191583333333369, 32.212083333333339 ], [ 35.191975980122947, 32.212177942911865 ], [ 35.192316375732389, 32.211961832682391 ], [ 35.192854665120421, 32.211853917439782 ], [ 35.19309062449139, 32.211482256571514 ], [ 35.193226776123026, 32.210917198181164 ], [ 35.193062291463207, 32.210687708536852 ], [ 35.192715207417791, 32.210438939412427 ], [ 35.192790852864675, 32.210090174357163 ], [ 35.19291666666669, 32.21000000000015 ], [ 35.192967753092489, 32.20979201507572 ], [ 35.192932022094737, 32.209632629394548 ], [ 35.19309234619152, 32.209725692749089 ], [ 35.193200703938828, 32.209882629394656 ], [ 35.193333333333385, 32.209916666666686 ], [ 35.193375000000117, 32.209809936523527 ], [ 35.193416666666678, 32.209916666666686 ], [ 35.1935, 32.209916666666686 ], [ 35.1935, 32.21000000000015 ], [ 35.193666666666786, 32.21000000000015 ], [ 35.193666666666786, 32.209916666666686 ], [ 35.19375, 32.209916666666686 ], [ 35.193808675130242, 32.209880513509233 ], [ 35.193718228658042, 32.209615104675265 ], [ 35.193615104675303, 32.209468228658181 ], [ 35.193583333333265, 32.209333333333404 ], [ 35.193387641906838, 32.209212755839076 ], [ 35.193583333333265, 32.209166666666761 ], [ 35.193549296061292, 32.20895070393891 ], [ 35.193382629394648, 32.208694760640526 ], [ 35.193496782938723, 32.208564982096505 ], [ 35.193885864257879, 32.208465133667062 ], [ 35.193815874735606, 32.208152923584066 ], [ 35.19403355407718, 32.20800262959807 ], [ 35.193882629394636, 32.207784037272177 ], [ 35.193544212341351, 32.207697189331043 ], [ 35.1935, 32.207416666666745 ], [ 35.193416666666678, 32.207416666666745 ], [ 35.193416666666678, 32.207333333333452 ], [ 35.193416666666678, 32.20725 ], [ 35.1935, 32.20725 ], [ 35.1935, 32.207166666666694 ], [ 35.19375, 32.207166666666694 ], [ 35.193694010416777, 32.207055989583353 ], [ 35.193527994791737, 32.206972005208343 ], [ 35.19345809173592, 32.206729779561499 ], [ 35.193248542785625, 32.206623774210698 ], [ 35.193542523702035, 32.206480201721149 ], [ 35.19375, 32.206583333333413 ], [ 35.193787058512441, 32.206537058512424 ], [ 35.194031097412108, 32.206434224446753 ], [ 35.193640243530183, 32.206269526163794 ], [ 35.194132802327488, 32.206128697713211 ], [ 35.194083333333253, 32.206000000000131 ], [ 35.193651466369545, 32.205826057434138 ], [ 35.193797030130952, 32.205713696797829 ], [ 35.193869636535567, 32.20561963653563 ], [ 35.194014294942292, 32.20550797780362 ], [ 35.193906664530459, 32.205213696797841 ], [ 35.193630363464365, 32.205380363464428 ], [ 35.193399350484242, 32.205452969869043 ], [ 35.193264111836754, 32.205122538248702 ], [ 35.192583333333346, 32.205083333333448 ], [ 35.192405128479095, 32.205049664815363 ], [ 35.192306849161753, 32.204884493509894 ], [ 35.192416666666702, 32.204833333333397 ], [ 35.192593633016031, 32.204469739278238 ], [ 35.192291127522822, 32.204594533284649 ], [ 35.192219739278187, 32.204719739278119 ], [ 35.19183333333325, 32.20475 ] ], [ [ 35.1905000000001, 32.207333333333452 ], [ 35.190471472422303, 32.207434936523498 ], [ 35.190398398081584, 32.207361859639548 ], [ 35.1905000000001, 32.207333333333452 ] ], [ [ 35.1925, 32.211166666666713 ], [ 35.192605926513806, 32.211379765828497 ], [ 35.192237297058114, 32.211444661458358 ], [ 35.192359179178879, 32.211195096333881 ], [ 35.1925, 32.211166666666713 ] ], [ [ 35.189833333333354, 32.21108333333342 ], [ 35.189870390574185, 32.211129608154351 ], [ 35.190034221649285, 32.211260803222672 ], [ 35.189814018249592, 32.211370391845833 ], [ 35.189629609425936, 32.211246472676692 ], [ 35.189833333333354, 32.21108333333342 ] ], [ [ 35.190166666666698, 32.21075 ], [ 35.190199947357257, 32.210800051371223 ], [ 35.190300052642954, 32.210866615295402 ], [ 35.190449947357195, 32.211279708862378 ], [ 35.190130968729648, 32.211199338277197 ], [ 35.190050052642846, 32.210827540079777 ], [ 35.190166666666698, 32.21075 ] ], [ [ 35.187833333333401, 32.215000000000146 ], [ 35.187793332417755, 32.215185951233025 ], [ 35.187637161254997, 32.215107528686531 ], [ 35.187833333333401, 32.215000000000146 ] ], [ [ 35.1875, 32.215083333333439 ], [ 35.187346805572588, 32.215281804402707 ], [ 35.187213698069229, 32.215131968180344 ], [ 35.1875, 32.215083333333439 ] ], [ [ 35.187333333333413, 32.214916666666625 ], [ 35.187304805755616, 32.215018269856841 ], [ 35.187231731414897, 32.214945192972948 ], [ 35.187333333333413, 32.214916666666625 ] ], [ [ 35.18825, 32.211416666666764 ], [ 35.18854516092938, 32.211368179321425 ], [ 35.188702968597511, 32.211490989685103 ], [ 35.188489270528294, 32.211655937194962 ], [ 35.188416666666683, 32.21175 ], [ 35.188360677083438, 32.21186067708328 ], [ 35.18825, 32.211916666666752 ], [ 35.18825, 32.212 ], [ 35.188333333333389, 32.212 ], [ 35.188333333333389, 32.212083333333339 ], [ 35.188416666666683, 32.212083333333339 ], [ 35.188416666666683, 32.21216666666669 ], [ 35.188610363006717, 32.21227283986417 ], [ 35.1885, 32.212333333333447 ], [ 35.1885, 32.212416666666741 ], [ 35.188416666666683, 32.212416666666741 ], [ 35.188207500457906, 32.212457499186314 ], [ 35.188050228118925, 32.212621190388973 ], [ 35.18762583287571, 32.212261042277078 ], [ 35.188033677419071, 32.211993649800604 ], [ 35.18762698109947, 32.211796340942442 ], [ 35.187459166208953, 32.211567334493111 ], [ 35.187666666666644, 32.2115 ], [ 35.187738093058385, 32.211396547953314 ], [ 35.188168963114435, 32.21129929606127 ], [ 35.18825, 32.211416666666764 ] ], [ [ 35.187416666666763, 32.211666666666702 ], [ 35.18738813908891, 32.211768269856748 ], [ 35.187315064748191, 32.211695192972797 ], [ 35.187416666666763, 32.211666666666702 ] ], [ [ 35.1865, 32.21108333333342 ], [ 35.186567234039387, 32.211492617289309 ], [ 35.186297031402603, 32.2112399978638 ], [ 35.1865, 32.21108333333342 ] ], [ [ 35.187083333333362, 32.211000000000126 ], [ 35.187054805755736, 32.211101603190116 ], [ 35.186981731414846, 32.211028526306222 ], [ 35.187083333333362, 32.211000000000126 ] ], [ [ 35.188583333333327, 32.210416666666617 ], [ 35.188617369333997, 32.210465962727937 ], [ 35.188753074646058, 32.21055965932203 ], [ 35.188946050008155, 32.210516398111963 ], [ 35.188849900563639, 32.210945294698149 ], [ 35.188417868296426, 32.210763837178547 ], [ 35.188479647318502, 32.210488255818689 ], [ 35.188583333333327, 32.210416666666617 ] ], [ [ 35.191416666666782, 32.210833333333312 ], [ 35.191371386210221, 32.210939142862969 ], [ 35.191225026448592, 32.210867111206085 ], [ 35.191416666666782, 32.210833333333312 ] ], [ [ 35.188166666666802, 32.210416666666617 ], [ 35.18819466145834, 32.210472005208374 ], [ 35.188332364400367, 32.2105416666667 ], [ 35.188115603129063, 32.210651321411149 ], [ 35.188055338541744, 32.210472986857098 ], [ 35.188166666666802, 32.210416666666617 ] ], [ [ 35.1875, 32.210083333333444 ], [ 35.18758333333335, 32.209967066447007 ], [ 35.187666666666644, 32.210083333333444 ], [ 35.187747923533095, 32.210315165201791 ], [ 35.187209921518956, 32.210524892171293 ], [ 35.187389297485311, 32.210185905456683 ], [ 35.1875, 32.210083333333444 ] ], [ [ 35.19125, 32.210333333333324 ], [ 35.190984273274751, 32.209963857014998 ], [ 35.191522679646823, 32.210148142496791 ], [ 35.191374165852892, 32.210290832519604 ], [ 35.191333333333262, 32.210333333333324 ], [ 35.191233309427844, 32.210523234049447 ], [ 35.191137916565026, 32.210392369588362 ], [ 35.19125, 32.210333333333324 ] ], [ [ 35.190583333333393, 32.209583333333455 ], [ 35.19045503362031, 32.209839182535916 ], [ 35.190388671875098, 32.209622632344633 ], [ 35.190583333333393, 32.209583333333455 ] ], [ [ 35.18975, 32.209083333333467 ], [ 35.189648398081545, 32.209054807027201 ], [ 35.189721472422207, 32.20898173014325 ], [ 35.18975, 32.209083333333467 ], [ 35.189851601918576, 32.20911185963962 ], [ 35.189778527577687, 32.209184936523513 ], [ 35.18975, 32.209083333333467 ] ], [ [ 35.190000000000111, 32.207750000000146 ], [ 35.190041666666673, 32.207643269856817 ], [ 35.190083333333405, 32.207750000000146 ], [ 35.19025, 32.207750000000146 ], [ 35.190405543009433, 32.207870058695562 ], [ 35.190043735504219, 32.208018140157151 ], [ 35.189963698069221, 32.208213696797714 ], [ 35.18975, 32.2085 ], [ 35.18975, 32.208583333333308 ], [ 35.189666666666767, 32.208583333333308 ], [ 35.18972880172737, 32.208708333333334 ], [ 35.189666666666767, 32.208833333333416 ], [ 35.189768268585283, 32.208861859639512 ], [ 35.189695194244393, 32.208934936523463 ], [ 35.189666666666767, 32.208833333333416 ], [ 35.189382335662856, 32.208674156189034 ], [ 35.189500000000123, 32.208583333333308 ], [ 35.189500000000123, 32.208416666666722 ], [ 35.189555338541709, 32.208305338541663 ], [ 35.189611328125011, 32.208027994791792 ], [ 35.189722005208296, 32.207972005208319 ], [ 35.189815467834592, 32.207787251790421 ], [ 35.190000000000111, 32.207750000000146 ] ], [ [ 35.189166666666779, 32.208666666666602 ], [ 35.189056950886993, 32.208596427917598 ], [ 35.189175828298062, 32.208467473348094 ], [ 35.18925, 32.208583333333308 ], [ 35.18925, 32.208666666666602 ], [ 35.189166666666779, 32.208666666666602 ] ], [ [ 35.193666666666786, 32.20808333333332 ], [ 35.193638671875021, 32.208305338541663 ], [ 35.19323729705809, 32.208361328125136 ], [ 35.193359298706184, 32.208111513773702 ], [ 35.193666666666786, 32.20808333333332 ] ], [ [ 35.192833333333397, 32.20808333333332 ], [ 35.192788052876892, 32.208189142863034 ], [ 35.192641693115206, 32.208117111206093 ], [ 35.192833333333397, 32.20808333333332 ] ], [ [ 35.191, 32.207916666666733 ], [ 35.191068916320717, 32.208055308024143 ], [ 35.190722005208443, 32.208056070963551 ], [ 35.191, 32.207916666666733 ] ], [ [ 35.191666666666663, 32.20625 ], [ 35.191717249552482, 32.205854672749979 ], [ 35.192622604370229, 32.205946955363004 ], [ 35.19266666666681, 32.206000000000131 ], [ 35.192962941487679, 32.206037058512436 ], [ 35.193156982421897, 32.206151120503762 ], [ 35.193030120849642, 32.206823842366532 ], [ 35.193070635477739, 32.207149569193575 ], [ 35.192938886006687, 32.207492324829161 ], [ 35.192333333333409, 32.207416666666745 ], [ 35.192132629394621, 32.207549296061131 ], [ 35.191750000000127, 32.207583333333332 ], [ 35.191818878173876, 32.2077194875082 ], [ 35.192333333333409, 32.207750000000146 ], [ 35.192420700073228, 32.207636812845919 ], [ 35.19261963653571, 32.207740989685135 ], [ 35.1925, 32.20783333333344 ], [ 35.192619455973329, 32.208158620198617 ], [ 35.192416666666702, 32.208333333333428 ], [ 35.192416666666702, 32.2085 ], [ 35.192166666666651, 32.2085 ], [ 35.192166666666651, 32.208416666666722 ], [ 35.192, 32.208416666666722 ], [ 35.192, 32.208333333333428 ], [ 35.191916666666771, 32.208333333333428 ], [ 35.191715962727926, 32.208200703938815 ], [ 35.191483505249096, 32.208113723754877 ], [ 35.191635353088429, 32.20762385050466 ], [ 35.191583333333369, 32.2075 ], [ 35.191583333333369, 32.207416666666745 ], [ 35.191583333333369, 32.207 ], [ 35.191583333333369, 32.206583333333413 ], [ 35.191666666666663, 32.206583333333413 ], [ 35.191666666666663, 32.206500000000119 ], [ 35.19183333333325, 32.206500000000119 ], [ 35.19183333333325, 32.206416666666598 ], [ 35.191584182739234, 32.206291727701853 ], [ 35.191666666666663, 32.20625 ] ], [ [ 35.192166666666651, 32.20525 ], [ 35.192273396809924, 32.205291666666596 ], [ 35.192166666666651, 32.205333333333328 ], [ 35.192166666666651, 32.205500000000143 ], [ 35.192, 32.205500000000143 ], [ 35.192, 32.20525 ], [ 35.192166666666651, 32.20525 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Id": 8, "luf": "Residential Areas with High Density" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.208083333333434, 32.19408333333331 ], [ 35.208083333333434, 32.194166666666661 ], [ 35.207833333333383, 32.194166666666661 ], [ 35.207833333333383, 32.19408333333331 ], [ 35.20775, 32.19408333333331 ], [ 35.20775, 32.194250000000125 ], [ 35.207817690531499, 32.19438617960617 ], [ 35.207666666666796, 32.194416666666712 ], [ 35.2075, 32.194416666666712 ], [ 35.2075, 32.1945 ], [ 35.207583333333275, 32.1945 ], [ 35.207583333333275, 32.194583333333298 ], [ 35.207682632446392, 32.194783101399764 ], [ 35.20741812896739, 32.194916905720959 ], [ 35.207250000000101, 32.194833333333406 ], [ 35.207083333333287, 32.194833333333406 ], [ 35.207083333333287, 32.1949166666667 ], [ 35.207166666666808, 32.1949166666667 ], [ 35.207166666666808, 32.195 ], [ 35.207250000000101, 32.195 ], [ 35.207333333333395, 32.195 ], [ 35.207333333333395, 32.195083333333457 ], [ 35.207416666666688, 32.195083333333457 ], [ 35.208, 32.195083333333457 ], [ 35.208, 32.195250000000101 ], [ 35.208083333333434, 32.195250000000101 ], [ 35.208083333333434, 32.195333333333394 ], [ 35.208083333333434, 32.195416666666688 ], [ 35.208275436401493, 32.195460591634173 ], [ 35.20836434936524, 32.195693532308042 ], [ 35.208151123046832, 32.195781016031958 ], [ 35.208083333333434, 32.195666666666739 ], [ 35.20783616638181, 32.195553578694728 ], [ 35.207891728719119, 32.195715382893923 ], [ 35.207781016031959, 32.195781016031958 ], [ 35.20775, 32.195833333333383 ], [ 35.20778776041675, 32.196026606241958 ], [ 35.207966857910208, 32.195931752522938 ], [ 35.208, 32.19600000000014 ], [ 35.208124880472894, 32.195937927246064 ], [ 35.208334790547781, 32.196040440877255 ], [ 35.208194661458322, 32.196111328124971 ], [ 35.208110677083312, 32.196277343750069 ], [ 35.208, 32.196333333333314 ], [ 35.207936457316123, 32.196436457316111 ], [ 35.20777659861244, 32.196534957885774 ], [ 35.207807459513333, 32.196634038289403 ], [ 35.207329966227348, 32.196703552246106 ], [ 35.207133407592892, 32.197022557576531 ], [ 35.206872268676875, 32.197115102132216 ], [ 35.206750000000113, 32.196916666666596 ], [ 35.206703725178954, 32.196879608154291 ], [ 35.206005546569827, 32.19672101847334 ], [ 35.205439872741692, 32.196268605550188 ], [ 35.205083333333391, 32.196166666666727 ], [ 35.205215962727948, 32.196367370605515 ], [ 35.205284037272179, 32.196611424764114 ], [ 35.205034037272128, 32.196784037272209 ], [ 35.204902257283607, 32.196974899292115 ], [ 35.205107523600248, 32.197290120442801 ], [ 35.204833333333283, 32.197333333333461 ], [ 35.204833333333283, 32.197500000000105 ], [ 35.20475, 32.197500000000105 ], [ 35.204666666666697, 32.197500000000105 ], [ 35.20450000000011, 32.197500000000105 ], [ 35.204444661458353, 32.19747200520834 ], [ 35.204333333333352, 32.19725 ], [ 35.204015782674162, 32.197130681355816 ], [ 35.203878855387359, 32.197295522054048 ], [ 35.203770538330218, 32.197385492960677 ], [ 35.203582219441728, 32.197819717407299 ], [ 35.203143338521329, 32.198037811279335 ], [ 35.203045522054026, 32.197704477946104 ], [ 35.202946601867666, 32.197531768798854 ], [ 35.20296643320728, 32.197337203979487 ], [ 35.203333333333376, 32.19708333333341 ], [ 35.203367370605577, 32.196867370605503 ], [ 35.203975344340051, 32.19679822794609 ], [ 35.203833333333364, 32.196583333333422 ], [ 35.20375, 32.196583333333422 ], [ 35.20375, 32.196333333333314 ], [ 35.203784037272271, 32.196200703938928 ], [ 35.203927108764674, 32.196049296061233 ], [ 35.204000000000121, 32.196333333333314 ], [ 35.204166666666708, 32.196416666666664 ], [ 35.20441157786064, 32.19637806701661 ], [ 35.204638000488274, 32.196050130208391 ], [ 35.204833333333283, 32.19600000000014 ], [ 35.204737998962514, 32.195880950927858 ], [ 35.204448682149348, 32.195759038289452 ], [ 35.204240781148371, 32.195592549642072 ], [ 35.204125, 32.19544796752939 ], [ 35.204009218851752, 32.195592549642072 ], [ 35.203416666666669, 32.195666666666739 ], [ 35.20327799479179, 32.195694661458333 ], [ 35.203222005208318, 32.195846033732153 ], [ 35.203375119527266, 32.195771260579477 ], [ 35.203621452331561, 32.19589370218921 ], [ 35.203694661458314, 32.196110346476246 ], [ 35.203583333333427, 32.196166666666727 ], [ 35.203583333333427, 32.196416666666664 ], [ 35.203416666666669, 32.196416666666664 ], [ 35.203365893046168, 32.19660912577325 ], [ 35.20314645894382, 32.196954757690492 ], [ 35.203034792582116, 32.197034790039197 ], [ 35.202916666666681, 32.197199600219847 ], [ 35.202833333333388, 32.19708333333341 ], [ 35.202749412536662, 32.196917444864937 ], [ 35.20258333333328, 32.197000000000116 ], [ 35.202472656249995, 32.197055989583362 ], [ 35.202416666666693, 32.197166666666703 ], [ 35.20253293355313, 32.19725 ], [ 35.202416666666693, 32.197333333333461 ], [ 35.202511660257983, 32.197743296305475 ], [ 35.202197779337666, 32.197871760050532 ], [ 35.202313341776573, 32.198063339233499 ], [ 35.202120246887318, 32.19803480529788 ], [ 35.202047030131098, 32.198213699340954 ], [ 35.201862101237055, 32.198520273844508 ], [ 35.2015, 32.198250000000144 ], [ 35.2015, 32.198333333333437 ], [ 35.20158333333336, 32.1985 ], [ 35.201690063476633, 32.198541666666586 ], [ 35.20158333333336, 32.198583333333318 ], [ 35.201194661458374, 32.198611328125082 ], [ 35.201083333333372, 32.198666666666668 ], [ 35.200833333333264, 32.198666666666668 ], [ 35.200833333333264, 32.198833333333425 ], [ 35.200666666666677, 32.198833333333425 ], [ 35.2005, 32.198833333333425 ], [ 35.2005, 32.198916666666719 ], [ 35.200416666666797, 32.198916666666719 ], [ 35.200349319458098, 32.19904979451502 ], [ 35.200083333333396, 32.199083333333306 ], [ 35.199980331420988, 32.199202885945738 ], [ 35.19941666666665, 32.19925000000012 ], [ 35.199333333333357, 32.19925000000012 ], [ 35.19889569091805, 32.19918342590347 ], [ 35.19925, 32.1995 ], [ 35.19925, 32.199416666666707 ], [ 35.199500000000114, 32.199416666666707 ], [ 35.199500000000114, 32.1995 ], [ 35.199666666666701, 32.199416666666707 ], [ 35.199708333333263, 32.199309936523377 ], [ 35.19975, 32.199416666666707 ], [ 35.199872589111351, 32.199366292317734 ], [ 35.200262865702257, 32.19944341023762 ], [ 35.200489687601703, 32.199052185058633 ], [ 35.200863001505581, 32.198908208211265 ], [ 35.200951459248927, 32.198784790039042 ], [ 35.20108200073247, 32.198715209960994 ], [ 35.201201459248978, 32.199081476847311 ], [ 35.200814626057934, 32.199005035400376 ], [ 35.20075, 32.19925000000012 ], [ 35.200876909891804, 32.199186915079679 ], [ 35.201027994791787, 32.199286417643236 ], [ 35.200806320190452, 32.199361328125121 ], [ 35.20075, 32.19925000000012 ], [ 35.200659098307426, 32.19931515502941 ], [ 35.200815498352142, 32.199561498006176 ], [ 35.200683146158951, 32.200110788981192 ], [ 35.20026426951091, 32.200028020223101 ], [ 35.200299901326616, 32.200208333333308 ], [ 35.200272781372178, 32.200345570882291 ], [ 35.199923957824694, 32.20027664184579 ], [ 35.19978047180183, 32.199904607137114 ], [ 35.199292574564709, 32.199631876627677 ], [ 35.198965207417814, 32.199881876627728 ], [ 35.198701459248923, 32.199951456705776 ], [ 35.198666666666782, 32.2 ], [ 35.198666666666782, 32.200166666666746 ], [ 35.198833333333369, 32.200166666666746 ], [ 35.198867370605569, 32.200117370605483 ], [ 35.199215962727862, 32.200049296061252 ], [ 35.199459978739526, 32.199946807861465 ], [ 35.199712491353353, 32.200111236572297 ], [ 35.199950703938839, 32.200531829834006 ], [ 35.19975, 32.200583333333441 ], [ 35.199664820353235, 32.200693689982245 ], [ 35.199333333333357, 32.20075 ], [ 35.199134895324732, 32.200796737670828 ], [ 35.199856630961165, 32.200851557413728 ], [ 35.200083333333396, 32.20075 ], [ 35.200111328124933, 32.200694661458272 ], [ 35.200401524861661, 32.200638671875026 ], [ 35.2005, 32.200833333333321 ], [ 35.200611328125092, 32.200777994791792 ], [ 35.20088867187502, 32.20072200520832 ], [ 35.200978327433404, 32.200544779459733 ], [ 35.201193679809649, 32.200472005208439 ], [ 35.20125000000013, 32.200583333333441 ], [ 35.201531016031936, 32.200543533325344 ], [ 35.201444819132519, 32.200294545491602 ], [ 35.201114349365241, 32.200218983968171 ], [ 35.201, 32.200166666666746 ], [ 35.200805338541727, 32.200068191528317 ], [ 35.200863721211817, 32.199765594482415 ], [ 35.201, 32.199833333333402 ], [ 35.201, 32.199666666666587 ], [ 35.201056312561093, 32.19933517964688 ], [ 35.201166666666666, 32.19925000000012 ], [ 35.201250587463392, 32.199084111531647 ], [ 35.201416666666717, 32.199166666666599 ], [ 35.2015, 32.199166666666599 ], [ 35.201560729980542, 32.199051366170352 ], [ 35.201897071838403, 32.198887919108074 ], [ 35.202, 32.199083333333306 ], [ 35.202083333333348, 32.199083333333306 ], [ 35.202125, 32.198976603190204 ], [ 35.202166666666642, 32.199083333333306 ], [ 35.202250000000106, 32.199083333333306 ], [ 35.202250000000106, 32.199166666666599 ], [ 35.202333333333399, 32.199166666666599 ], [ 35.202333333333399, 32.199 ], [ 35.202416666666693, 32.198883733113576 ], [ 35.2025, 32.199 ], [ 35.202624880472911, 32.198937927246163 ], [ 35.202719551086489, 32.198984161376984 ], [ 35.202777994791802, 32.198694661458376 ], [ 35.202833333333388, 32.198666666666668 ], [ 35.20287500000012, 32.198559936523509 ], [ 35.202916666666681, 32.198666666666668 ], [ 35.202916666666681, 32.198750000000132 ], [ 35.203, 32.198750000000132 ], [ 35.203058324178187, 32.198714060465591 ], [ 35.203137977600193, 32.198458333333463 ], [ 35.203109135945624, 32.19836573282879 ], [ 35.203416666666669, 32.198333333333437 ], [ 35.203393203735345, 32.198273462931297 ], [ 35.203227015177504, 32.198208333333412 ], [ 35.203333333333376, 32.19816666666668 ], [ 35.203333333333376, 32.198083333333386 ], [ 35.203500000000133, 32.198083333333386 ], [ 35.203500000000133, 32.198 ], [ 35.203583333333427, 32.198 ], [ 35.203894999186218, 32.19788288879397 ], [ 35.204122222900367, 32.198406819661557 ], [ 35.204607955932659, 32.198196161905969 ], [ 35.204916666666804, 32.19775 ], [ 35.20494715627035, 32.197598973592051 ], [ 35.205083333333391, 32.197666666666692 ], [ 35.205119829813725, 32.197615743001393 ], [ 35.205548383076973, 32.197700429280701 ], [ 35.20583333333343, 32.197583333333398 ], [ 35.206060368855901, 32.197494079589944 ], [ 35.206286303202376, 32.197630366007502 ], [ 35.20681710306809, 32.197720535278279 ], [ 35.207036303202415, 32.197943481445407 ], [ 35.206702969869013, 32.198036300659226 ], [ 35.206630363464399, 32.198115768432615 ], [ 35.2068869578045, 32.198461863200009 ], [ 35.206750000000113, 32.1985 ], [ 35.206750000000113, 32.198750000000132 ], [ 35.20700488026938, 32.198847971598411 ], [ 35.20715744781495, 32.198657450358212 ], [ 35.207296274821033, 32.198546274821013 ], [ 35.207492988586523, 32.19822241210943 ], [ 35.207845090230364, 32.19794045511884 ], [ 35.208139081319246, 32.198053461710685 ], [ 35.208091176351047, 32.198438593546598 ], [ 35.20854627482089, 32.198537058512386 ], [ 35.209204256693624, 32.198724945068477 ], [ 35.209287058512359, 32.199317006429112 ], [ 35.208893620808965, 32.199268071492497 ], [ 35.208785718282058, 32.199012003580719 ], [ 35.208565119425543, 32.198835347493628 ], [ 35.208425669352209, 32.199009490966773 ], [ 35.208486925761008, 32.199453725179069 ], [ 35.208650014241528, 32.199250066121408 ], [ 35.208888641357476, 32.199390335083024 ], [ 35.208866722107018, 32.199566548665416 ], [ 35.208621225992943, 32.199536015828528 ], [ 35.20854627482089, 32.199629608154282 ], [ 35.207921775817795, 32.199764724731551 ], [ 35.20754627482097, 32.199620391845826 ], [ 35.2069166666667, 32.199583333333464 ], [ 35.2069166666667, 32.199750000000108 ], [ 35.20702339681003, 32.19979166666667 ], [ 35.2069166666667, 32.199833333333402 ], [ 35.2069166666667, 32.199916666666695 ], [ 35.207, 32.199916666666695 ], [ 35.207083333333287, 32.199916666666695 ], [ 35.207083333333287, 32.2 ], [ 35.207425834655737, 32.199943735758552 ], [ 35.207619636535696, 32.199990992228209 ], [ 35.2075, 32.200083333333453 ], [ 35.207599299113099, 32.200283101399748 ], [ 35.2075, 32.20033333333339 ], [ 35.207567225138348, 32.200468577067113 ], [ 35.207349441528322, 32.200531422933011 ], [ 35.207416666666688, 32.200666666666734 ], [ 35.207612775166808, 32.200742045084723 ], [ 35.207883951823021, 32.200627777099612 ], [ 35.20778337097164, 32.200456675211569 ], [ 35.208299962361764, 32.200043324788339 ], [ 35.208170059204178, 32.199822341919003 ], [ 35.208460688273078, 32.199786188761379 ], [ 35.208583333333422, 32.199833333333402 ], [ 35.208675961812389, 32.199717661539808 ], [ 35.208953725178958, 32.200070261637393 ], [ 35.208833333333359, 32.200166666666746 ], [ 35.208833333333359, 32.20033333333339 ], [ 35.208916666666653, 32.20033333333339 ], [ 35.208916666666653, 32.200583333333441 ], [ 35.208968925476199, 32.200619415283313 ], [ 35.208948158264207, 32.200712056477926 ], [ 35.209183186849089, 32.20107297770187 ], [ 35.209284037272198, 32.201465962727923 ], [ 35.209333333333291, 32.201500000000124 ], [ 35.209378855387513, 32.201462188720825 ], [ 35.209871144612748, 32.201350631713808 ], [ 35.209646199544295, 32.201163777669422 ], [ 35.210172645568832, 32.201217437744219 ], [ 35.210531168619923, 32.201422775268611 ], [ 35.210183965047179, 32.201621144612659 ], [ 35.210083333333387, 32.201500000000124 ], [ 35.21, 32.201500000000124 ], [ 35.21, 32.201416666666603 ], [ 35.209833333333279, 32.201416666666603 ], [ 35.209833333333279, 32.201583333333417 ], [ 35.2099166666668, 32.201583333333417 ], [ 35.2099166666668, 32.20175 ], [ 35.209972005208328, 32.201777994791712 ], [ 35.210083333333387, 32.202000000000112 ], [ 35.210285519917818, 32.202514312744142 ], [ 35.210054321289078, 32.202619633992583 ], [ 35.20975, 32.2025 ], [ 35.20975, 32.202666666666687 ], [ 35.209666666666692, 32.202666666666687 ], [ 35.209583333333399, 32.202782933553124 ], [ 35.209500000000105, 32.202666666666687 ], [ 35.209297030131097, 32.202509999593019 ], [ 35.209377001444579, 32.202355392456184 ], [ 35.20975, 32.20241666666675 ], [ 35.20975, 32.20225 ], [ 35.209458478291879, 32.202104578654087 ], [ 35.209332845052074, 32.202165934244931 ], [ 35.209166666666704, 32.202083333333405 ], [ 35.208810414632239, 32.20199582926432 ], [ 35.208715962727808, 32.202132629394669 ], [ 35.208617370605452, 32.2022007039389 ], [ 35.208583333333422, 32.202333333333456 ], [ 35.208718032837055, 32.202437306722118 ], [ 35.208666666666716, 32.202750000000151 ], [ 35.208703725179078, 32.202796274821083 ], [ 35.20884837849934, 32.202870391845806 ], [ 35.208954182942762, 32.202619303385347 ], [ 35.209066551208593, 32.202633280436203 ], [ 35.20903361765545, 32.202898045857864 ], [ 35.20862944539391, 32.20306835428886 ], [ 35.208544314066671, 32.203557543436716 ], [ 35.208319506327314, 32.203529581705823 ], [ 35.208179061889723, 32.202880457560298 ], [ 35.208083333333434, 32.203 ], [ 35.208083333333434, 32.203250000000139 ], [ 35.208, 32.203250000000139 ], [ 35.208251818339136, 32.203692939758412 ], [ 35.208166666666727, 32.204083333333472 ], [ 35.208381118774355, 32.204047785441219 ], [ 35.208644874572713, 32.203884552002023 ], [ 35.208610992431716, 32.204081357320206 ], [ 35.208255098978725, 32.204202214558904 ], [ 35.208166666666727, 32.204083333333472 ], [ 35.208055338541726, 32.204138671875057 ], [ 35.207777994791797, 32.204194661458359 ], [ 35.207666666666796, 32.204250000000116 ], [ 35.207583333333275, 32.204250000000116 ], [ 35.207619636535696, 32.204297030131158 ], [ 35.208072402954201, 32.204392575582006 ], [ 35.207936485290588, 32.20521998596189 ], [ 35.208083333333434, 32.205333333333328 ], [ 35.208116615295523, 32.205283281962124 ], [ 35.208238321940087, 32.205202354431151 ], [ 35.208179476420185, 32.204968800862673 ], [ 35.20874620819103, 32.205148012796997 ], [ 35.208666666666716, 32.205333333333328 ], [ 35.208637161254956, 32.205387161254862 ], [ 35.208471946716372, 32.205477722168098 ], [ 35.208637161254956, 32.205696172078547 ], [ 35.208696172078533, 32.205887161255021 ], [ 35.20875, 32.20591666666661 ], [ 35.208800374348982, 32.205740481058854 ], [ 35.20915664927179, 32.205949907938759 ], [ 35.20925, 32.205833333333317 ], [ 35.20925, 32.20575 ], [ 35.209333333333291, 32.20575 ], [ 35.209228736877549, 32.205495468139759 ], [ 35.209538088480713, 32.205434338887471 ], [ 35.209798540751137, 32.205534792582284 ], [ 35.209951459248941, 32.205631874084588 ], [ 35.210131874084539, 32.205701459248871 ], [ 35.210397432963077, 32.20590425872814 ], [ 35.211048540751165, 32.206034792582273 ], [ 35.211118125915505, 32.206131874084576 ], [ 35.211250000000121, 32.206166666666718 ], [ 35.211360677083462, 32.206110677083416 ], [ 35.211416666666707, 32.206000000000131 ], [ 35.211416666666707, 32.20591666666661 ], [ 35.211750000000109, 32.20591666666661 ], [ 35.211750000000109, 32.206000000000131 ], [ 35.211916666666696, 32.205917154948054 ], [ 35.212083333333283, 32.206000000000131 ], [ 35.212125, 32.205893269856801 ], [ 35.212166666666803, 32.206000000000131 ], [ 35.212426920573023, 32.206150049845348 ], [ 35.21275, 32.206666666666706 ], [ 35.212833333333379, 32.206833333333464 ], [ 35.212867370605579, 32.2070492960612 ], [ 35.212916666666672, 32.20725 ], [ 35.213343058268322, 32.207320042928075 ], [ 35.21325, 32.207083333333401 ], [ 35.213000000000136, 32.207083333333401 ], [ 35.213000000000136, 32.206916666666757 ], [ 35.212916666666672, 32.206916666666757 ], [ 35.212916666666672, 32.20675 ], [ 35.212888671875135, 32.206527994791657 ], [ 35.21275, 32.20625 ], [ 35.212583333333441, 32.20625 ], [ 35.212583333333441, 32.206083333333424 ], [ 35.2125, 32.206083333333424 ], [ 35.2125, 32.206000000000131 ], [ 35.212333984375107, 32.205916015625121 ], [ 35.21225, 32.20575 ], [ 35.212138671875039, 32.205805338541779 ], [ 35.210725972493549, 32.205861328125081 ], [ 35.210406974792591, 32.205705538431914 ], [ 35.210638671875131, 32.205638671875022 ], [ 35.21077799479167, 32.205361328125093 ], [ 35.210833333333426, 32.205333333333328 ], [ 35.210770398457839, 32.205088096618681 ], [ 35.210583333333375, 32.205166666666742 ], [ 35.210651672363269, 32.205304145813045 ], [ 35.210333333333438, 32.205333333333328 ], [ 35.210333333333438, 32.205500000000143 ], [ 35.21025, 32.205500000000143 ], [ 35.21025, 32.205583333333436 ], [ 35.21035160319019, 32.205611859639532 ], [ 35.21027852630607, 32.205684936523483 ], [ 35.21025, 32.205583333333436 ], [ 35.210143269856871, 32.205541666666704 ], [ 35.21025, 32.205500000000143 ], [ 35.21025, 32.205333333333328 ], [ 35.21016666666668, 32.205333333333328 ], [ 35.210083333333387, 32.205333333333328 ], [ 35.210083333333387, 32.20525 ], [ 35.209978874206513, 32.204978240966796 ], [ 35.210256546020616, 32.204861236572185 ], [ 35.210116048177213, 32.20462222035718 ], [ 35.210348292032961, 32.204524358113758 ], [ 35.210466138204026, 32.203979685465583 ], [ 35.21062039184568, 32.203787058512432 ], [ 35.210879608154414, 32.203712941487765 ], [ 35.21109496307372, 32.20358635203047 ], [ 35.211212941487759, 32.203787058512432 ], [ 35.211370908101401, 32.204161931355827 ], [ 35.212, 32.204083333333472 ], [ 35.212032526652138, 32.204032526652156 ], [ 35.212264773050947, 32.203950836181775 ], [ 35.212137341817197, 32.20349738566091 ], [ 35.21233333333339, 32.203583333333313 ], [ 35.212452448527017, 32.203345794677716 ], [ 35.212686055501308, 32.203531366984066 ], [ 35.212583333333441, 32.203583333333313 ], [ 35.212649531046566, 32.203716512044252 ], [ 35.212527994791685, 32.203777994791665 ], [ 35.212416015624967, 32.203999348958462 ], [ 35.21225, 32.204083333333472 ], [ 35.21225, 32.204166666666595 ], [ 35.21233333333339, 32.204166666666595 ], [ 35.212604731241981, 32.203987317403175 ], [ 35.212833333333379, 32.204083333333472 ], [ 35.212899378458644, 32.204049921671583 ], [ 35.212812637329137, 32.203872304280594 ], [ 35.212984013875371, 32.203533541361537 ], [ 35.21325, 32.2035 ], [ 35.213361328125075, 32.203444661458263 ], [ 35.213500000000124, 32.203416666666726 ], [ 35.213500000000124, 32.203166666666675 ], [ 35.213583333333418, 32.203166666666675 ], [ 35.213620585123692, 32.20298213704433 ], [ 35.21375, 32.202916666666738 ], [ 35.21375, 32.202833333333444 ], [ 35.213916666666648, 32.202833333333444 ], [ 35.214119633992595, 32.202317031860389 ], [ 35.213869633992488, 32.202369633992646 ], [ 35.213678792317808, 32.202484756469744 ], [ 35.213360743204873, 32.202437754313223 ], [ 35.213162551879805, 32.202921997070405 ], [ 35.212733281453495, 32.202985432942796 ], [ 35.212580922444715, 32.202732849121219 ], [ 35.212713699340895, 32.202630366007497 ], [ 35.212786300659275, 32.202536300659233 ], [ 35.21304703267424, 32.202463699340854 ], [ 35.213286300659206, 32.202286300659182 ], [ 35.213684244791807, 32.202202326456813 ], [ 35.213847534179706, 32.201803365071669 ], [ 35.21397617594414, 32.201704065958722 ], [ 35.21395217386879, 32.201541666666685 ], [ 35.21397601318364, 32.201380366007413 ], [ 35.213869633992488, 32.201452967325793 ], [ 35.21378823852541, 32.201558425903329 ], [ 35.21375, 32.201333333333309 ], [ 35.213997014363656, 32.201046625773245 ], [ 35.214083333333406, 32.201333333333309 ], [ 35.214139322916708, 32.201444010416651 ], [ 35.21441601562509, 32.201583984375134 ], [ 35.2145000000001, 32.20175 ], [ 35.214696492512985, 32.201699574788449 ], [ 35.214970860799156, 32.201520909627391 ], [ 35.215292012532643, 32.201448913574154 ], [ 35.215700703938865, 32.201549296061216 ], [ 35.215750000000128, 32.201583333333417 ], [ 35.215861328124959, 32.201527994791661 ], [ 35.216138671875058, 32.201472005208359 ], [ 35.216277994791653, 32.201361328125074 ], [ 35.216472005208459, 32.201305338541772 ], [ 35.216527994791761, 32.201111328125137 ], [ 35.21658333333329, 32.201083333333429 ], [ 35.216634897867834, 32.201051564534623 ], [ 35.216719131469802, 32.200914845784553 ], [ 35.217051564534472, 32.200801564534572 ], [ 35.217083333333449, 32.200666666666734 ], [ 35.217125, 32.200559936523462 ], [ 35.217166666666742, 32.200666666666734 ], [ 35.217470382690465, 32.200465962727947 ], [ 35.217937769572018, 32.20059552001959 ], [ 35.218200703938919, 32.20079929606112 ], [ 35.21850000000012, 32.200833333333321 ], [ 35.21850000000012, 32.200583333333441 ], [ 35.218394999186216, 32.200510833740282 ], [ 35.21850000000012, 32.200083333333453 ], [ 35.218416666666656, 32.200083333333453 ], [ 35.218416666666656, 32.2 ], [ 35.218225072224982, 32.199965021769344 ], [ 35.218333333333305, 32.199916666666695 ], [ 35.218333333333305, 32.199666666666587 ], [ 35.218010940551892, 32.199463511149133 ], [ 35.217712188720782, 32.199856664021866 ], [ 35.218143692016611, 32.199983286539691 ], [ 35.218116790771489, 32.200247207641723 ], [ 35.217933965047337, 32.200371144612632 ], [ 35.217757710774833, 32.200158955891993 ], [ 35.21766666666673, 32.200083333333453 ], [ 35.217634897867754, 32.200218231201291 ], [ 35.217448435465485, 32.200281768798845 ], [ 35.217218231201286, 32.200468231201171 ], [ 35.216864690144916, 32.200588709513283 ], [ 35.216551564534541, 32.200448435465432 ], [ 35.216333333333409, 32.200416666666683 ], [ 35.216133387247737, 32.200283716837589 ], [ 35.216202743530232, 32.200196426391585 ], [ 35.21651729329426, 32.200275680542006 ], [ 35.216358856201111, 32.20003843688977 ], [ 35.216466720581138, 32.199966720581131 ], [ 35.216533279419025, 32.19986661275243 ], [ 35.216666666666811, 32.199833333333402 ], [ 35.216728800455769, 32.199708333333319 ], [ 35.216666666666811, 32.199583333333464 ], [ 35.216444661458411, 32.199472005208463 ], [ 35.216388671874995, 32.19937262980153 ], [ 35.21658333333329, 32.199333333333414 ], [ 35.21658333333329, 32.19925000000012 ], [ 35.216666666666811, 32.19925000000012 ], [ 35.216617823282888, 32.199059677124069 ], [ 35.216299296061209, 32.198940490722691 ], [ 35.216380752563566, 32.198653559366846 ], [ 35.216876998901455, 32.198531672159845 ], [ 35.217, 32.198583333333318 ], [ 35.216962188720743, 32.198454477946029 ], [ 35.216716491699231, 32.198113093058339 ], [ 35.216937103271619, 32.19813557942723 ], [ 35.217045522054036, 32.198045522054088 ], [ 35.217122772216896, 32.197697153727177 ], [ 35.217275405883868, 32.197880905151408 ], [ 35.217377690633271, 32.197870478312268 ], [ 35.217543034871483, 32.197965179443486 ], [ 35.217750493367532, 32.197715428670335 ], [ 35.218249669393003, 32.197568944295313 ], [ 35.218047378540177, 32.197400909423777 ], [ 35.217962188720662, 32.197204477945945 ], [ 35.217787811279322, 32.196962188720818 ], [ 35.217696319580114, 32.196650405883759 ], [ 35.217212188720794, 32.196440439860169 ], [ 35.217360478719058, 32.196304565429728 ], [ 35.21766666666673, 32.19625 ], [ 35.21773134867351, 32.196077865600671 ], [ 35.217539271036856, 32.195846633911231 ], [ 35.216954803466876, 32.195787058512394 ], [ 35.216846054077109, 32.196037811279382 ], [ 35.216703735351643, 32.195961791992204 ], [ 35.216746164957783, 32.195545522054033 ], [ 35.216315958658925, 32.195805760701546 ], [ 35.216190790812163, 32.19625344340011 ], [ 35.21648424275719, 32.19638071187336 ], [ 35.216621144612759, 32.19654552205418 ], [ 35.217012924194307, 32.196660491943419 ], [ 35.216871144612639, 32.197037811279358 ], [ 35.216833333333398, 32.197166666666703 ], [ 35.21692739359537, 32.197094060262089 ], [ 35.217070536295523, 32.196908615112363 ], [ 35.217462844848683, 32.197199467976986 ], [ 35.217536300659162, 32.197500640869123 ], [ 35.216873428344798, 32.19740268452972 ], [ 35.216833333333398, 32.197166666666703 ], [ 35.216750000000104, 32.197166666666703 ], [ 35.216750000000104, 32.19725 ], [ 35.216416666666703, 32.19725 ], [ 35.216374582926505, 32.197413981119894 ], [ 35.216044845581166, 32.197641647338912 ], [ 35.215715962727927, 32.197367370605491 ], [ 35.215450703938927, 32.197215962727967 ], [ 35.215257868448987, 32.196878122965586 ], [ 35.214654357910206, 32.196723246256624 ], [ 35.214549296061193, 32.197132629394673 ], [ 35.2145000000001, 32.197166666666703 ], [ 35.21468388875337, 32.197452967325773 ], [ 35.214452967325769, 32.197380366007565 ], [ 35.214318893432676, 32.197052780151353 ], [ 35.214074325561626, 32.197369633992651 ], [ 35.213894399007245, 32.197026062011844 ], [ 35.214085820515947, 32.197054346720449 ], [ 35.214416666666807, 32.197000000000116 ], [ 35.214379608154275, 32.196870391845835 ], [ 35.213884134928435, 32.196473622640099 ], [ 35.214083333333406, 32.196416666666664 ], [ 35.214083333333406, 32.196333333333314 ], [ 35.213916666666648, 32.196333333333314 ], [ 35.213916666666648, 32.19625 ], [ 35.213536300659314, 32.19628630065921 ], [ 35.21325, 32.196500000000128 ], [ 35.213316197713311, 32.196633178711011 ], [ 35.213194661458317, 32.196694661458253 ], [ 35.213138671875015, 32.196805338541765 ], [ 35.213000000000136, 32.196833333333302 ], [ 35.212956985473625, 32.197284016927028 ], [ 35.212666666666735, 32.197333333333461 ], [ 35.2125, 32.197333333333461 ], [ 35.21225, 32.197333333333461 ], [ 35.212281016031966, 32.197385650634885 ], [ 35.212528834025079, 32.197532567342137 ], [ 35.212239423116159, 32.197628077189279 ], [ 35.21233333333339, 32.197833333333449 ], [ 35.2125286661784, 32.1978834635417 ], [ 35.212762690226157, 32.19822241210943 ], [ 35.212696111043272, 32.198450703938931 ], [ 35.212416666666684, 32.198333333333437 ], [ 35.21225, 32.198333333333437 ], [ 35.21225, 32.198250000000144 ], [ 35.212125, 32.198187866211015 ], [ 35.212, 32.198250000000144 ], [ 35.211870391845764, 32.198287058512506 ], [ 35.211720013936315, 32.198474843343206 ], [ 35.211455894470305, 32.198281906127988 ], [ 35.211305493672683, 32.198638829549168 ], [ 35.211700126648054, 32.198589742024865 ], [ 35.211416732788223, 32.19881668090818 ], [ 35.211546274820989, 32.199037058512374 ], [ 35.211583333333294, 32.19925000000012 ], [ 35.21169304911308, 32.19932023620612 ], [ 35.211574170430538, 32.199449193318628 ], [ 35.2115, 32.199333333333414 ], [ 35.211368125915556, 32.199368123372324 ], [ 35.211152107238831, 32.199505269368615 ], [ 35.210410113016849, 32.199357126871746 ], [ 35.210333333333438, 32.19925000000012 ], [ 35.210027994791801, 32.199222005208355 ], [ 35.209972005208328, 32.198527994791789 ], [ 35.209833333333279, 32.198250000000144 ], [ 35.20975301361085, 32.197922993977897 ], [ 35.20986737060548, 32.197617370605599 ], [ 35.210106079101649, 32.197250793457044 ], [ 35.209875, 32.197198994954476 ], [ 35.209655464172499, 32.197248209635518 ], [ 35.209268775939904, 32.196981221516978 ], [ 35.209166666666704, 32.196833333333302 ], [ 35.209069806416949, 32.196415318807055 ], [ 35.209702969869113, 32.196281707763717 ], [ 35.209584231058841, 32.195880366007486 ], [ 35.209369636535712, 32.195952967325866 ], [ 35.209240989685043, 32.196119633992623 ], [ 35.209119636535661, 32.19596369934095 ], [ 35.209047030130989, 32.195786300659222 ], [ 35.208880363464402, 32.195657658894788 ], [ 35.209121215820232, 32.19547021993003 ], [ 35.209937052408918, 32.195298060099276 ], [ 35.209833333333279, 32.194666666666592 ], [ 35.209833333333279, 32.1945 ], [ 35.209619636535592, 32.194536300659195 ], [ 35.209547030130977, 32.194713699340923 ], [ 35.209398877461865, 32.194786300659302 ], [ 35.20925, 32.194416666666712 ], [ 35.209166666666704, 32.194416666666712 ], [ 35.209166666666704, 32.194333333333418 ], [ 35.20908333333341, 32.194333333333418 ], [ 35.208916666666653, 32.194333333333418 ], [ 35.208833333333359, 32.194333333333418 ], [ 35.208801561991493, 32.194551564534549 ], [ 35.208664848327658, 32.19463579813646 ], [ 35.208551561991442, 32.194968231201187 ], [ 35.208500000000129, 32.195 ], [ 35.20844955190023, 32.195108286539721 ], [ 35.208279713948684, 32.195010930379283 ], [ 35.20825, 32.194666666666592 ], [ 35.208166666666727, 32.194666666666592 ], [ 35.208166666666727, 32.194583333333298 ], [ 35.208083333333434, 32.194583333333298 ], [ 35.208083333333434, 32.194333333333418 ], [ 35.208166666666727, 32.194333333333418 ], [ 35.208281097412168, 32.194241699218878 ], [ 35.208083333333434, 32.19408333333331 ] ], [ [ 35.213000000000136, 32.198833333333425 ], [ 35.213068913777761, 32.198971974690835 ], [ 35.21272200520832, 32.198972737630243 ], [ 35.213000000000136, 32.198833333333425 ] ], [ [ 35.21425, 32.198583333333318 ], [ 35.214287058512355, 32.198629608154306 ], [ 35.214336140950536, 32.199024241129678 ], [ 35.214212941487631, 32.198870391845787 ], [ 35.214052235921315, 32.198741699218886 ], [ 35.21425, 32.198583333333318 ] ], [ [ 35.214916666666738, 32.20125 ], [ 35.214916666666738, 32.201416666666603 ], [ 35.214666666666687, 32.201416666666603 ], [ 35.214666666666687, 32.20125 ], [ 35.214916666666738, 32.20125 ] ], [ [ 35.213166666666723, 32.201333333333309 ], [ 35.213286300659206, 32.201630366007521 ], [ 35.213411310831759, 32.201837605794253 ], [ 35.213358988444099, 32.20219169616712 ], [ 35.2128843180339, 32.202005096435528 ], [ 35.212797032674189, 32.201759007771955 ], [ 35.212963699340946, 32.201630366007521 ], [ 35.213119633992619, 32.201369633992499 ], [ 35.213166666666723, 32.201333333333309 ] ], [ [ 35.209166666666704, 32.203166666666675 ], [ 35.209121386210199, 32.203272476196332 ], [ 35.208975026448513, 32.203200444539391 ], [ 35.209166666666704, 32.203166666666675 ] ], [ [ 35.210833333333426, 32.202833333333444 ], [ 35.21077629597994, 32.203032821655313 ], [ 35.210629608154306, 32.2028915812175 ], [ 35.210833333333426, 32.202833333333444 ] ], [ [ 35.211583333333294, 32.2025 ], [ 35.211546274820989, 32.202796274821083 ], [ 35.211400583902957, 32.202912943522279 ], [ 35.211295550028581, 32.203634600321493 ], [ 35.211004735311008, 32.203463653564484 ], [ 35.210879608154414, 32.203053090413334 ], [ 35.211297393798873, 32.20296270243341 ], [ 35.211247116088884, 32.202558512369933 ], [ 35.211583333333294, 32.2025 ] ], [ [ 35.208416666666665, 32.204333333333409 ], [ 35.208455988566186, 32.20428932189941 ], [ 35.208802024841361, 32.204069246928043 ], [ 35.208632537841822, 32.203436431884825 ], [ 35.209067461649511, 32.203462354024282 ], [ 35.209205988566055, 32.203640408833905 ], [ 35.208960695902533, 32.203859575907416 ], [ 35.208877344767302, 32.204091247558665 ], [ 35.20914238993339, 32.204212895711407 ], [ 35.20925, 32.204333333333409 ], [ 35.20925, 32.204416666666702 ], [ 35.209166666666704, 32.204416666666702 ], [ 35.208916666666653, 32.204416666666702 ], [ 35.208916666666653, 32.2045 ], [ 35.208850351969431, 32.20463108825686 ], [ 35.208472986857146, 32.204694661458348 ], [ 35.208416666666665, 32.20458333333346 ], [ 35.208333333333371, 32.20458333333346 ], [ 35.208333333333371, 32.2045 ], [ 35.208416666666665, 32.204333333333409 ] ], [ [ 35.20975, 32.203583333333313 ], [ 35.209682228088354, 32.203847424825142 ], [ 35.209382629394611, 32.203625111897736 ], [ 35.20975, 32.203583333333313 ] ], [ [ 35.20908333333341, 32.20241666666675 ], [ 35.209054807027314, 32.202518269856796 ], [ 35.208981730143364, 32.202445195516077 ], [ 35.20908333333341, 32.20241666666675 ] ], [ [ 35.210833333333426, 32.201500000000124 ], [ 35.210871899922665, 32.201544764200833 ], [ 35.211025459289658, 32.201677062988381 ], [ 35.210821558634507, 32.201955235799232 ], [ 35.210544766743965, 32.201771687825612 ], [ 35.210711433410722, 32.201628097534297 ], [ 35.210788566589372, 32.201538569132538 ], [ 35.210833333333426, 32.201500000000124 ] ], [ [ 35.213500000000124, 32.201000000000136 ], [ 35.213471206665133, 32.201355545044009 ], [ 35.21322502644864, 32.201296346028755 ], [ 35.213391693115227, 32.20122502644864 ], [ 35.213441640218207, 32.201024973551512 ], [ 35.213500000000124, 32.201000000000136 ] ], [ [ 35.2105, 32.201083333333429 ], [ 35.210398396809865, 32.201054804484102 ], [ 35.210471473693929, 32.200981730143212 ], [ 35.2105, 32.201083333333429 ], [ 35.210601603190071, 32.201111862182756 ], [ 35.210528526306177, 32.201184936523475 ], [ 35.2105, 32.201083333333429 ] ], [ [ 35.215416666666727, 32.200666666666734 ], [ 35.215460205078216, 32.200470403035467 ], [ 35.215696924845361, 32.200622980753565 ], [ 35.2155, 32.200666666666734 ], [ 35.215466878255256, 32.200907175699854 ], [ 35.215235122680667, 32.201113591512126 ], [ 35.215053075154628, 32.200898101806786 ], [ 35.215219741821272, 32.200803075154624 ], [ 35.215280258178666, 32.200696924845488 ], [ 35.215416666666727, 32.200666666666734 ] ], [ [ 35.21225, 32.200916666666672 ], [ 35.212221473693944, 32.201018269856888 ], [ 35.21214839680988, 32.200945195515999 ], [ 35.21225, 32.200916666666672 ] ], [ [ 35.214083333333406, 32.200416666666683 ], [ 35.214160059611004, 32.200611841837599 ], [ 35.213963699340923, 32.200509007771927 ], [ 35.214083333333406, 32.200416666666683 ] ], [ [ 35.21525, 32.20025 ], [ 35.215327148437495, 32.200446243286194 ], [ 35.215027994791797, 32.20061963399263 ], [ 35.214880366007549, 32.20031278991695 ], [ 35.21525, 32.20025 ] ], [ [ 35.212833333333379, 32.200166666666746 ], [ 35.212875000000111, 32.200059936523473 ], [ 35.212916666666672, 32.200166666666746 ], [ 35.212984359741256, 32.200302846272848 ], [ 35.212833333333379, 32.20033333333339 ], [ 35.212768463134751, 32.200538228352912 ], [ 35.212626586914098, 32.200358225504544 ], [ 35.212833333333379, 32.200166666666746 ] ], [ [ 35.209583333333399, 32.200416666666683 ], [ 35.209367004394608, 32.200297927856582 ], [ 35.209263008117603, 32.199771631876615 ], [ 35.209627410888686, 32.199699625651135 ], [ 35.20975, 32.199750000000108 ], [ 35.209851613362673, 32.199815053304178 ], [ 35.209989733378222, 32.200030802408946 ], [ 35.21025, 32.199916666666695 ], [ 35.210416666666731, 32.199916666666695 ], [ 35.210583333333375, 32.199916666666695 ], [ 35.210583333333375, 32.2 ], [ 35.210783597310467, 32.200138270060279 ], [ 35.210666666666668, 32.200416666666683 ], [ 35.210666666666668, 32.200500000000147 ], [ 35.21107400004081, 32.200449050903273 ], [ 35.211301755269346, 32.200164642334073 ], [ 35.211453725179069, 32.200403594970737 ], [ 35.211333333333414, 32.200500000000147 ], [ 35.211333333333414, 32.200583333333441 ], [ 35.211250000000121, 32.200583333333441 ], [ 35.21071222686777, 32.200636215209897 ], [ 35.210666666666668, 32.200583333333441 ], [ 35.210294225056998, 32.200644515991314 ], [ 35.21016666666668, 32.200416666666683 ], [ 35.209956743876262, 32.20045674641932 ], [ 35.209647781372098, 32.200620234171538 ], [ 35.209583333333399, 32.200416666666683 ] ], [ [ 35.214583333333394, 32.200166666666746 ], [ 35.21465500386563, 32.200337310791042 ], [ 35.214182022094747, 32.200450703938884 ], [ 35.214236862182588, 32.200206069946319 ], [ 35.214583333333394, 32.200166666666746 ] ], [ [ 35.209166666666704, 32.200166666666746 ], [ 35.209133288065686, 32.200356043497777 ], [ 35.209058359782034, 32.200213012695315 ], [ 35.209166666666704, 32.200166666666746 ] ], [ [ 35.213833333333298, 32.2 ], [ 35.213900889078843, 32.200135904947899 ], [ 35.213641581217473, 32.20019466145834 ], [ 35.21355533854171, 32.20003505452479 ], [ 35.213833333333298, 32.2 ] ], [ [ 35.209000000000117, 32.199750000000108 ], [ 35.209041666666678, 32.199643269856779 ], [ 35.20908333333341, 32.199750000000108 ], [ 35.209189987182697, 32.199969009399524 ], [ 35.209102928161599, 32.200112080891927 ], [ 35.208931279500405, 32.199786198933907 ], [ 35.209000000000117, 32.199750000000108 ] ], [ [ 35.2155, 32.199833333333402 ], [ 35.215540512084942, 32.199588933308917 ], [ 35.215847839355604, 32.199641845703184 ], [ 35.215900421142692, 32.199868881225655 ], [ 35.215620641072633, 32.199695724487299 ], [ 35.21558333333337, 32.199833333333402 ], [ 35.215777028401703, 32.199939503987707 ], [ 35.215666666666664, 32.2 ], [ 35.215736104329551, 32.200161783854185 ], [ 35.215324620564786, 32.200283279418954 ], [ 35.215400288899673, 32.199982971191389 ], [ 35.2155, 32.199916666666695 ], [ 35.2155, 32.199833333333402 ] ], [ [ 35.215916666666715, 32.19925000000012 ], [ 35.215883285522466, 32.199439376831094 ], [ 35.215808359782045, 32.199296346028632 ], [ 35.215916666666715, 32.19925000000012 ] ], [ [ 35.20825, 32.196583333333422 ], [ 35.208369616190623, 32.196500747680773 ], [ 35.208450703938865, 32.196284037272221 ], [ 35.208697341918935, 32.19621596272782 ], [ 35.209089042663663, 32.196797653198189 ], [ 35.208916666666653, 32.196916666666596 ], [ 35.209162264506119, 32.197348663330104 ], [ 35.2090385665893, 32.197455235799225 ], [ 35.208961433410707, 32.197628097534277 ], [ 35.208788566589419, 32.197705235799276 ], [ 35.208549758911261, 32.197982421874997 ], [ 35.208185315450066, 32.197953135172668 ], [ 35.208216771443801, 32.197561640421554 ], [ 35.208628100077362, 32.19737809753417 ], [ 35.208705233256126, 32.196955235799237 ], [ 35.20875, 32.196916666666596 ], [ 35.20856540679938, 32.19655595906579 ], [ 35.208333333333371, 32.196666666666715 ], [ 35.208271581014003, 32.196871775309319 ], [ 35.208166666666727, 32.19675 ], [ 35.20791949971516, 32.196863087972076 ], [ 35.20800358327233, 32.19661823527025 ], [ 35.20825, 32.196583333333422 ] ], [ [ 35.215333333333433, 32.197666666666692 ], [ 35.215396418253647, 32.197793579101528 ], [ 35.215296915690146, 32.197944661458337 ], [ 35.215222005208432, 32.197722986857173 ], [ 35.215333333333433, 32.197666666666692 ] ], [ [ 35.20925, 32.19775 ], [ 35.209221473693901, 32.197851603190202 ], [ 35.209148396809951, 32.197778528849312 ], [ 35.20925, 32.19775 ] ], [ [ 35.213166666666723, 32.19775 ], [ 35.213138137817396, 32.197851603190202 ], [ 35.213065063476506, 32.197778528849312 ], [ 35.213166666666723, 32.19775 ] ], [ [ 35.2025, 32.198250000000144 ], [ 35.20247147369389, 32.19835160319019 ], [ 35.20239839680994, 32.198278528849301 ], [ 35.2025, 32.198250000000144 ] ], [ [ 35.200083333333396, 32.200500000000147 ], [ 35.2000548070273, 32.200601603190194 ], [ 35.19998173014335, 32.200528528849304 ], [ 35.200083333333396, 32.200500000000147 ] ], [ [ 35.200666666666677, 32.200500000000147 ], [ 35.200638140360581, 32.200601603190194 ], [ 35.200565063476631, 32.200528528849304 ], [ 35.200666666666677, 32.200500000000147 ] ], [ [ 35.200833333333264, 32.200416666666683 ], [ 35.200804807027168, 32.2005182698569 ], [ 35.200731730143218, 32.200445195516011 ], [ 35.200833333333264, 32.200416666666683 ] ], [ [ 35.213583333333418, 32.197000000000116 ], [ 35.213705988566062, 32.197294011433939 ], [ 35.213833953857375, 32.197529495239394 ], [ 35.213044011433908, 32.197442927042687 ], [ 35.213210678100722, 32.197294011433939 ], [ 35.213323343912862, 32.197048528035566 ], [ 35.213583333333418, 32.197000000000116 ] ], [ [ 35.21525, 32.19725 ], [ 35.215221471150812, 32.197351603190214 ], [ 35.215148396809923, 32.197278528849324 ], [ 35.21525, 32.19725 ] ], [ [ 35.20775, 32.197166666666703 ], [ 35.207721473693937, 32.19726826985675 ], [ 35.207648396809873, 32.197195195516031 ], [ 35.20775, 32.197166666666703 ] ], [ [ 35.21341666666666, 32.196833333333302 ], [ 35.213388137817503, 32.196934936523519 ], [ 35.213315063476614, 32.196861862182629 ], [ 35.21341666666666, 32.196833333333302 ] ], [ [ 35.203500000000133, 32.196666666666715 ], [ 35.203471473693867, 32.196768269856761 ], [ 35.203398396809916, 32.196695195516043 ], [ 35.203500000000133, 32.196666666666715 ] ], [ [ 35.204166666666708, 32.19575 ], [ 35.204110201517722, 32.195857203165701 ], [ 35.203887916564952, 32.195786219279 ], [ 35.204166666666708, 32.19575 ] ] ] ] } } +] +} diff --git a/landuse_tv50_1.geojson b/landuse_tv50_1.geojson new file mode 100644 index 0000000000000000000000000000000000000000..1e7b3db00e2d94a08c69cb7fa88bf4558ce34eb3 --- /dev/null +++ b/landuse_tv50_1.geojson @@ -0,0 +1,58 @@ +{ +"type": "FeatureCollection", +"name": "landuse_tv50_1", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "zoneıd": 1, "population": 1308, "densitycap": 250.0, "avgIncome": "midIncome", "area": 54.892, "luf": "CITY CENTER", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.318104802222237, 27.634518056679955 ], [ 85.318508126149865, 27.634301448754584 ], [ 85.318531344040849, 27.63433573954519 ], [ 85.318527276513635, 27.634323058179007 ], [ 85.31843059621697, 27.634057089122024 ], [ 85.318343326961312, 27.633854538284407 ], [ 85.318014091997213, 27.633148764042364 ], [ 85.318009692565312, 27.633137755681105 ], [ 85.317991992565496, 27.633084955680633 ], [ 85.317991759933989, 27.633084253423021 ], [ 85.317897659936406, 27.632796753420461 ], [ 85.317895892153501, 27.632790740495263 ], [ 85.317815580035102, 27.632483228434239 ], [ 85.317662546642666, 27.63195325833863 ], [ 85.317596980207981, 27.631755418545904 ], [ 85.317594584017911, 27.63174700998475 ], [ 85.317557784026135, 27.631593309983391 ], [ 85.317556908710571, 27.631589299339627 ], [ 85.31753280871898, 27.631467099338643 ], [ 85.317533559496496, 27.631424583035951 ], [ 85.317559959491362, 27.631311683036504 ], [ 85.317571791938263, 27.631282284241628 ], [ 85.317715930984761, 27.631037530685372 ], [ 85.317777850366042, 27.630891972416034 ], [ 85.317860901473878, 27.630686734492436 ], [ 85.317862161305356, 27.630683753762664 ], [ 85.317978061236914, 27.630420853758508 ], [ 85.317985942728569, 27.630406183432729 ], [ 85.318052089147727, 27.630302915947372 ], [ 85.318121715304045, 27.630187001374185 ], [ 85.31822304209453, 27.629996461805529 ], [ 85.318253022221128, 27.62989161507161 ], [ 85.318258818420418, 27.62981907479795 ], [ 85.318259780078009, 27.629811078089386 ], [ 85.318277350012437, 27.629701893507516 ], [ 85.318284527034677, 27.629613581185364 ], [ 85.318280118988781, 27.629565258973315 ], [ 85.318261358725778, 27.62940098504712 ], [ 85.318242024745686, 27.629297741550413 ], [ 85.318240421420484, 27.629274222862541 ], [ 85.318242084276051, 27.62924056988102 ], [ 85.318214102473661, 27.629020369282582 ], [ 85.318213687607468, 27.628998852249026 ], [ 85.318226952371489, 27.628848386355024 ], [ 85.318242964178552, 27.628569423176216 ], [ 85.31824529026558, 27.628552918438313 ], [ 85.318279273040076, 27.628402576288021 ], [ 85.318302892184732, 27.628235583096277 ], [ 85.318303066341343, 27.628234402079908 ], [ 85.318380766347801, 27.627728202083006 ], [ 85.318382171632393, 27.627720861383406 ], [ 85.318456696077817, 27.627396571278091 ], [ 85.318492688258615, 27.627156916046157 ], [ 85.318559664248923, 27.626522830537816 ], [ 85.318575580010446, 27.626292595888067 ], [ 85.318588935812599, 27.626036742879954 ], [ 85.318589006576019, 27.626035528416327 ], [ 85.318597106583368, 27.62590962841686 ], [ 85.31861282664704, 27.625861315038325 ], [ 85.318669126601392, 27.62577101503296 ], [ 85.318670680957723, 27.625768593037247 ], [ 85.318753880887229, 27.625642593028267 ], [ 85.318775209478744, 27.625618515968931 ], [ 85.3189204120645, 27.625493999868151 ], [ 85.318961987063787, 27.625455928858301 ], [ 85.319050709592489, 27.62537139210556 ], [ 85.319091812187395, 27.625314160581897 ], [ 85.319127997338512, 27.625263619315881 ], [ 85.319173511591401, 27.625197650400974 ], [ 85.31835146092466, 27.625568224805075 ], [ 85.318331804972843, 27.625573971575211 ], [ 85.317849045042465, 27.625652494228397 ], [ 85.317839538308732, 27.625653494596758 ], [ 85.316219976518823, 27.625732281455033 ], [ 85.316213822902427, 27.625732358486442 ], [ 85.315598279997531, 27.625717852544284 ], [ 85.315595804748682, 27.625717758223153 ], [ 85.31507691608644, 27.62569043079343 ], [ 85.314299827746368, 27.625680987818793 ], [ 85.313609400942809, 27.625714491601098 ], [ 85.312680222863619, 27.625808231105271 ], [ 85.312285903721275, 27.625864787996527 ], [ 85.312222086579524, 27.625872464355293 ], [ 85.312227999015732, 27.625880430756506 ], [ 85.312233528907612, 27.625888615085479 ], [ 85.312338314870757, 27.626059701564291 ], [ 85.312341174904191, 27.626064658686246 ], [ 85.312453465316253, 27.626271712036939 ], [ 85.312462054448858, 27.626292586140771 ], [ 85.312521451080656, 27.626497554521773 ], [ 85.312601831751508, 27.626683878651995 ], [ 85.312610048623327, 27.626717840601 ], [ 85.312627419225976, 27.626985923325957 ], [ 85.312622269779197, 27.627024892535832 ], [ 85.312532248786482, 27.627291668576731 ], [ 85.312514295276287, 27.627324419052243 ], [ 85.312485555050003, 27.627350361963181 ], [ 85.312332017374828, 27.627450035708232 ], [ 85.312215826099049, 27.627617292552305 ], [ 85.312107733740532, 27.627803438283497 ], [ 85.312101149360458, 27.627813473728441 ], [ 85.311947571552807, 27.628022074739562 ], [ 85.311927798464055, 27.628042914632765 ], [ 85.31190298601949, 27.628058916658301 ], [ 85.311620443276709, 27.628198189554883 ], [ 85.311438993634496, 27.628390294344335 ], [ 85.311399524397288, 27.628418208139184 ], [ 85.310991653357533, 27.628603107644128 ], [ 85.310778168544175, 27.628713685333363 ], [ 85.310729157829499, 27.628728218224367 ], [ 85.310268501036632, 27.628776036563533 ], [ 85.310141442051645, 27.628861595949335 ], [ 85.310135010815614, 27.628898116194051 ], [ 85.310284176005482, 27.629049856926144 ], [ 85.310408962190039, 27.629164081342314 ], [ 85.310434480811466, 27.629198062219828 ], [ 85.310746819982072, 27.62984284459738 ], [ 85.310756714184393, 27.629877844397587 ], [ 85.31077525537691, 27.630069406767582 ], [ 85.310775711549155, 27.630080638246586 ], [ 85.310773802081357, 27.630204983718638 ], [ 85.310773576343948, 27.630210347227216 ], [ 85.310759752334619, 27.63041108216262 ], [ 85.310757545367125, 27.630426232169842 ], [ 85.310699882015513, 27.630683834001712 ], [ 85.310693251251124, 27.630703709777759 ], [ 85.310582112130092, 27.630950925050406 ], [ 85.310493185513394, 27.631150576517115 ], [ 85.310491690766682, 27.631153787194659 ], [ 85.310380769328361, 27.631382039477238 ], [ 85.310370447648509, 27.631399091559121 ], [ 85.310293654536039, 27.631503390894519 ], [ 85.310257415730547, 27.631535734571884 ], [ 85.309953915666611, 27.631713805567841 ], [ 85.309908077767417, 27.631730393288422 ], [ 85.30963344675942, 27.631777271619285 ], [ 85.309623594256621, 27.6317785979513 ], [ 85.309116292271668, 27.631828804534909 ], [ 85.308801732845055, 27.631901737010825 ], [ 85.308800377384827, 27.631902044173639 ], [ 85.308493195853814, 27.631970048559246 ], [ 85.3084862220161, 27.631971407800613 ], [ 85.308140524634169, 27.632029745757563 ], [ 85.308173777287166, 27.632122474781589 ], [ 85.308380328065539, 27.632295710819708 ], [ 85.308530635726044, 27.632398193284281 ], [ 85.3087791748532, 27.632512386922642 ], [ 85.309053886337452, 27.632539858049412 ], [ 85.309059850683582, 27.632540669123657 ], [ 85.309260068636746, 27.632575189461267 ], [ 85.309569681871437, 27.632561428860718 ], [ 85.309946902182276, 27.632491573239459 ], [ 85.310222020179239, 27.632392812924572 ], [ 85.310242290548487, 27.632388294797675 ], [ 85.310263176290874, 27.632388864120433 ], [ 85.310498475878035, 27.63242451556869 ], [ 85.310747336909287, 27.632445253985932 ], [ 85.311076416282788, 27.632410245525428 ], [ 85.311491107906861, 27.63234589681387 ], [ 85.311705784456208, 27.632302961497281 ], [ 85.311728036866143, 27.632301500913883 ], [ 85.311749806458167, 27.632305858997427 ], [ 85.311769216671209, 27.632315660076863 ], [ 85.311926319156441, 27.632424948736109 ], [ 85.3120933876165, 27.63248255855688 ], [ 85.312142478466853, 27.632460244527156 ], [ 85.312165195619485, 27.63245367184885 ], [ 85.312576490944551, 27.632395946178118 ], [ 85.312583161778775, 27.632395277227328 ], [ 85.313059398464802, 27.63236641438457 ], [ 85.313070857288579, 27.632366491107625 ], [ 85.313460505490667, 27.632395353926828 ], [ 85.31348353696778, 27.632400365023138 ], [ 85.313503713879825, 27.632411453195925 ], [ 85.313621808153897, 27.632501760551964 ], [ 85.313957483994855, 27.632685544983687 ], [ 85.31397373804316, 27.632697500815073 ], [ 85.313985679068111, 27.632712973419711 ], [ 85.314104246811041, 27.632924494282836 ], [ 85.314105265240414, 27.632926383773732 ], [ 85.314189544160371, 27.633089159043379 ], [ 85.314277243538299, 27.633176858378835 ], [ 85.314492524626161, 27.633244518139104 ], [ 85.314840872213594, 27.633189875344662 ], [ 85.314844646463882, 27.633189369969084 ], [ 85.315039470563974, 27.633167722841502 ], [ 85.315062660193732, 27.633168324329574 ], [ 85.315084565594574, 27.633175128613754 ], [ 85.315349720377199, 27.633300728234431 ], [ 85.315841601005701, 27.633399104331133 ], [ 85.3161991093842, 27.633442005322223 ], [ 85.31623084554505, 27.633452606183422 ], [ 85.316476179683718, 27.633596920343376 ], [ 85.316494989147003, 27.633612663204463 ], [ 85.316812480571542, 27.633987880085382 ], [ 85.316824195482027, 27.63400805898922 ], [ 85.316961588395699, 27.634391923861564 ], [ 85.316978945002504, 27.634387756566554 ], [ 85.317051102076476, 27.634380540857158 ], [ 85.317077981015018, 27.634382131643182 ], [ 85.317272377101574, 27.634425330767161 ], [ 85.317773925691725, 27.634531291739901 ], [ 85.318104802222237, 27.634518056679955 ] ], [ [ 85.317185251700238, 27.626314587646405 ], [ 85.316880659027404, 27.628728906148794 ], [ 85.316782909482043, 27.628785471209842 ], [ 85.315741739051631, 27.628661198389558 ], [ 85.315777925013805, 27.626297504131351 ], [ 85.317185251700238, 27.626314587646405 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneıd": 2, "population": 0, "densitycap": 250.0, "avgIncome": "midIncome", "area": 21.731, "luf": "COMMERCIAL AND RESIDENTIAL", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.307479977038994, 27.634084683815601 ], [ 85.305195826520034, 27.634579469963466 ], [ 85.305497545442876, 27.636829431073849 ], [ 85.305192722000086, 27.638132884000076 ], [ 85.304903476000064, 27.639285127000068 ], [ 85.304816575000075, 27.641356871000024 ], [ 85.306506208709749, 27.64149417035965 ], [ 85.307391919481674, 27.639348749012349 ], [ 85.309128407419934, 27.639075971602551 ], [ 85.308393342708058, 27.638867383720822 ], [ 85.308273943317303, 27.63881718446358 ], [ 85.308155388324337, 27.63874679123397 ], [ 85.30811759071571, 27.638705787478749 ], [ 85.308107630255776, 27.63865091711881 ], [ 85.308125008034651, 27.638526956252282 ], [ 85.308242980387931, 27.638388927033869 ], [ 85.308410844269247, 27.638282573181353 ], [ 85.308426249062833, 27.638191613884757 ], [ 85.308357686689902, 27.637897245857229 ], [ 85.308296136799299, 27.637833639416868 ], [ 85.308242813968448, 27.637755074221403 ], [ 85.308213060727084, 27.637705387303122 ], [ 85.308208344400484, 27.637677879894667 ], [ 85.308211413627177, 27.637650140372205 ], [ 85.308277013774543, 27.637393440585374 ], [ 85.308399427480509, 27.636988943023848 ], [ 85.308455538374631, 27.63676086666749 ], [ 85.308417544749233, 27.636547208243496 ], [ 85.308366401271627, 27.636194123353551 ], [ 85.308366128747821, 27.635655395693508 ], [ 85.308439094026994, 27.635330384739227 ], [ 85.308414603812793, 27.635104519559398 ], [ 85.308228840355838, 27.634711924517717 ], [ 85.30824407824835, 27.634550120783899 ], [ 85.307800064350943, 27.634213325059505 ], [ 85.307479977038994, 27.634084683815601 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneıd": 4, "population": 2966, "densitycap": 350.0, "avgIncome": "lowIncomeB", "area": 8.0, "luf": "RESIDENTIAL (HIGH DENSITY)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.31335570584389, 27.639732051480223 ], [ 85.313516021577769, 27.639608884460106 ], [ 85.313657833792988, 27.639522761148346 ], [ 85.313823146589982, 27.639463544192946 ], [ 85.313961133158045, 27.639431946451548 ], [ 85.314009177052199, 27.63942357026438 ], [ 85.314024773659455, 27.638974108517598 ], [ 85.314008051611154, 27.638361448897328 ], [ 85.313857128590129, 27.63822210201992 ], [ 85.313747734564487, 27.638143571569056 ], [ 85.313539758385929, 27.6380611798822 ], [ 85.313143992129355, 27.637944558442239 ], [ 85.312685793467949, 27.637805879572035 ], [ 85.312346076702539, 27.637737855239948 ], [ 85.312125412844111, 27.637703224282149 ], [ 85.311979015485875, 27.63770714272458 ], [ 85.311747744010773, 27.637777997984738 ], [ 85.311738245427662, 27.637780307390528 ], [ 85.311231530649607, 27.637872576085588 ], [ 85.311219262589006, 27.637873896766294 ], [ 85.311069172276916, 27.637879099937827 ], [ 85.311055758855815, 27.637878507382197 ], [ 85.310866631443233, 27.637855109179846 ], [ 85.310859142124613, 27.637853838796484 ], [ 85.310583723000022, 27.637794231879152 ], [ 85.310582230005167, 27.63779389445406 ], [ 85.310364893963921, 27.637742681894217 ], [ 85.310131607067504, 27.637705126165244 ], [ 85.31012213893699, 27.637703035362154 ], [ 85.309784110648181, 27.637607506760901 ], [ 85.309774704760599, 27.637604221097341 ], [ 85.309429539870095, 27.637459384837825 ], [ 85.309408511670028, 27.637446298658144 ], [ 85.309205975886712, 27.637268043901724 ], [ 85.309193829278655, 27.637254126421624 ], [ 85.309073147273523, 27.637070749658353 ], [ 85.309072387075489, 27.637120189631371 ], [ 85.309071420885374, 27.637132636618087 ], [ 85.30905517983966, 27.637248353693103 ], [ 85.309075046396799, 27.63740758316392 ], [ 85.309075809318742, 27.63742158593762 ], [ 85.309073890406978, 27.637546381699412 ], [ 85.309080204873638, 27.637635415091253 ], [ 85.309080090072172, 27.637651103962845 ], [ 85.309070570722881, 27.637762274304496 ], [ 85.309069411477395, 27.637837664201843 ], [ 85.309068231317667, 27.637914413925685 ], [ 85.309096029750251, 27.638076621440614 ], [ 85.309115744711804, 27.638177900191188 ], [ 85.309159417147555, 27.638270222618832 ], [ 85.309200138251057, 27.638321550546205 ], [ 85.309322123144241, 27.638390000268366 ], [ 85.309389751134944, 27.638427267904969 ], [ 85.309545008107307, 27.638475470450061 ], [ 85.309556335447652, 27.638479542753789 ], [ 85.309700446506412, 27.638538700628168 ], [ 85.309746546857596, 27.638570916693215 ], [ 85.309800963243362, 27.638631830525608 ], [ 85.309898106118794, 27.638676577575502 ], [ 85.310003160166033, 27.638711442384796 ], [ 85.310026452784186, 27.638721706279927 ], [ 85.310143894755214, 27.638787605627858 ], [ 85.310354299537678, 27.638802675796665 ], [ 85.310404938241277, 27.638816153966758 ], [ 85.310608858154694, 27.638915502878998 ], [ 85.310635752703703, 27.638933061730498 ], [ 85.310740185288893, 27.639022278034282 ], [ 85.311001755421316, 27.639132645202658 ], [ 85.311018160762245, 27.63914095266685 ], [ 85.311201778498855, 27.63925081607988 ], [ 85.311212177717707, 27.639257753151959 ], [ 85.311379465017737, 27.639381767644402 ], [ 85.311385879607229, 27.639386860731918 ], [ 85.311479880546202, 27.639466754990913 ], [ 85.311676966431463, 27.639538494309633 ], [ 85.311888356727977, 27.639597085770642 ], [ 85.31189167535841, 27.63959805046575 ], [ 85.312284621937039, 27.639717636239407 ], [ 85.312310874014671, 27.639728765895864 ], [ 85.312534550357469, 27.639853465463887 ], [ 85.312548882411747, 27.639862759091834 ], [ 85.312724117414973, 27.639994043877085 ], [ 85.312740570312911, 27.640008890452705 ], [ 85.312761909820736, 27.640032094210348 ], [ 85.313032942186965, 27.63992245553916 ], [ 85.31335570584389, 27.639732051480223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneıd": 69, "population": 1076, "densitycap": 100.0, "avgIncome": "highIncome", "area": 4.946, "luf": "RESIDENTIAL (LOW DENSITY)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.311765682486424, 27.62305771561239 ], [ 85.311019167751411, 27.623281175557427 ], [ 85.310505755534763, 27.623434856241516 ], [ 85.310772271075024, 27.623604394395045 ], [ 85.311011208935099, 27.623809621825817 ], [ 85.311172229951765, 27.624028541526052 ], [ 85.311230564099503, 27.624122424370853 ], [ 85.311328667174323, 27.624254060425304 ], [ 85.31140444063557, 27.624380100407802 ], [ 85.31150367064491, 27.624535708723393 ], [ 85.311640726672309, 27.624758329271256 ], [ 85.311824165478541, 27.625074686832058 ], [ 85.311911811275195, 27.625206195218563 ], [ 85.311978743825193, 27.625324141086722 ], [ 85.312068302640441, 27.625428386419188 ], [ 85.312193693697139, 27.625632229986188 ], [ 85.312259449085843, 27.625729530339438 ], [ 85.312188539055285, 27.625739650352887 ], [ 85.312127738601106, 27.625748210275127 ], [ 85.3126583204822, 27.625674265951677 ], [ 85.3126615157977, 27.625673882294254 ], [ 85.313585955158459, 27.625580620828444 ], [ 85.313451615271447, 27.625058931079771 ], [ 85.313199108792901, 27.624763971718018 ], [ 85.313073426307298, 27.624579297339093 ], [ 85.312863949204996, 27.624238921911449 ], [ 85.312626326631758, 27.623984358196964 ], [ 85.31260173729666, 27.623676073722041 ], [ 85.312643267368387, 27.623481986621989 ], [ 85.312763030812675, 27.623214448259123 ], [ 85.312908491195216, 27.622947222338549 ], [ 85.313071995822483, 27.622760341981518 ], [ 85.313334266800609, 27.622447084582724 ], [ 85.313475165716739, 27.622303457550419 ], [ 85.311833543569023, 27.62303740198892 ], [ 85.311765682486424, 27.62305771561239 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneıd": 7, "population": 1297, "densitycap": 100.0, "avgIncome": "highIncome", "area": 7.199, "luf": "RESIDENTIAL (GATED NEIGHBORHOOD)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.324478960957748, 27.622697798412094 ], [ 85.324479527063232, 27.622694783632127 ], [ 85.324599312522054, 27.622134882843248 ], [ 85.324609299413922, 27.621536348037449 ], [ 85.323747793092366, 27.620833244397289 ], [ 85.32272198284717, 27.620266945180713 ], [ 85.322719637308992, 27.620265596568473 ], [ 85.322286463589506, 27.620006370581443 ], [ 85.321613432979476, 27.620731597801786 ], [ 85.321448507821827, 27.620929806869505 ], [ 85.323814954372168, 27.622318506521157 ], [ 85.324477558516335, 27.622706465697782 ], [ 85.324478960957748, 27.622697798412094 ] ], [ [ 85.322687623060773, 27.620525066260043 ], [ 85.32215514122916, 27.62018920023802 ], [ 85.32227744729316, 27.620044645436288 ], [ 85.322827238440837, 27.620370531846895 ], [ 85.322687623060773, 27.620525066260043 ] ] ], [ [ [ 85.319711967157119, 27.619450591240557 ], [ 85.319687801892528, 27.619770804399604 ], [ 85.319678980787856, 27.619799566357056 ], [ 85.321323275142973, 27.620852966626366 ], [ 85.321492531587694, 27.620649552424258 ], [ 85.321495012013258, 27.620646730749151 ], [ 85.322159690209986, 27.619930504573603 ], [ 85.321921233750075, 27.619787802581882 ], [ 85.321909598792814, 27.619779229843111 ], [ 85.321364148916416, 27.619288272681146 ], [ 85.320987061179679, 27.619088466832132 ], [ 85.320973926051721, 27.619079664348796 ], [ 85.320488920774295, 27.618674468924802 ], [ 85.320380218967401, 27.61866064935916 ], [ 85.320176401145133, 27.618699737697685 ], [ 85.32004266564249, 27.618746086940082 ], [ 85.319987854714171, 27.618795829853116 ], [ 85.319987448741117, 27.618796195499186 ], [ 85.319778950410637, 27.618982560926622 ], [ 85.319723605980982, 27.619032109944804 ], [ 85.319728747026474, 27.619193245115596 ], [ 85.319711967157119, 27.619450591240557 ] ], [ [ 85.321843441580427, 27.620002037729797 ], [ 85.321811213945878, 27.619740144756246 ], [ 85.32211505573683, 27.61994249491342 ], [ 85.321985073684473, 27.62009035285455 ], [ 85.321843441580427, 27.620002037729797 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneıd": 64, "population": 738, "densitycap": 100.0, "avgIncome": "highIncome", "area": 2.711, "luf": "RESIDENTIAL (GATED NEIGHBORHOOD)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.321417508867128, 27.622365005820267 ], [ 85.3215908325664, 27.622407298309682 ], [ 85.321626684963718, 27.62237882441724 ], [ 85.321664161264891, 27.622352060837827 ], [ 85.321703158750751, 27.622327080927338 ], [ 85.321743570532973, 27.622303953152777 ], [ 85.321785285847, 27.622282740904648 ], [ 85.321819241567781, 27.622266719873156 ], [ 85.321857396077377, 27.622251799350693 ], [ 85.32190201978797, 27.622235964655736 ], [ 85.321947512739087, 27.622222231835586 ], [ 85.322009306343958, 27.62220725520574 ], [ 85.32204060555982, 27.622201216515712 ], [ 85.322072122311852, 27.622196154445366 ], [ 85.322119721264741, 27.622190405665375 ], [ 85.322183587835767, 27.622186206298569 ], [ 85.322231618553673, 27.622185667218609 ], [ 85.322263628187827, 27.622186552290401 ], [ 85.322279615124046, 27.622187367873156 ], [ 85.322295583645428, 27.622188431847835 ], [ 85.322311528887909, 27.622189743890353 ], [ 85.322343330116865, 27.622193110504877 ], [ 85.322374980066868, 27.622197463615144 ], [ 85.322453190628508, 27.622212624565947 ], [ 85.322499299630564, 27.622224617062649 ], [ 85.322544640805106, 27.62223874253802 ], [ 85.322574380216793, 27.6222493256282 ], [ 85.322603686855928, 27.62226082672635 ], [ 85.32263252501744, 27.622273231820444 ], [ 85.322646757416152, 27.622279768685569 ], [ 85.322660859567023, 27.622286525797122 ], [ 85.322674827174438, 27.622293501096838 ], [ 85.322688655983811, 27.622300692460044 ], [ 85.322702341782787, 27.622308097696209 ], [ 85.322715880402569, 27.622315714549678 ], [ 85.322729267719225, 27.622323540700314 ], [ 85.322742499654893, 27.62233157376426 ], [ 85.322781223114418, 27.622356889656238 ], [ 85.322818406023828, 27.622383975984299 ], [ 85.322853946467774, 27.622412758507995 ], [ 85.32290926818807, 27.622464282422889 ], [ 85.32295933784016, 27.622519904907875 ], [ 85.322995354579149, 27.622567070365562 ], [ 85.32301989443431, 27.622603850589758 ], [ 85.323035038946458, 27.622628984612266 ], [ 85.323049189444802, 27.622654574093804 ], [ 85.323062328688579, 27.622680587857811 ], [ 85.323085510628985, 27.622733760980854 ], [ 85.323100132627161, 27.622774515471288 ], [ 85.323112339952772, 27.622815895727378 ], [ 85.323122099143788, 27.622857788329224 ], [ 85.323127231706991, 27.622885944711935 ], [ 85.323129383448162, 27.62290007845251 ], [ 85.323262674312275, 27.62278871438691 ], [ 85.323433523539435, 27.622639717967875 ], [ 85.323640131907169, 27.62241721664876 ], [ 85.323814954372168, 27.622318506521157 ], [ 85.321448507821827, 27.620929806869505 ], [ 85.3210461580355, 27.621413351755404 ], [ 85.32063587897477, 27.622167931947391 ], [ 85.320635881441007, 27.622171264910687 ], [ 85.321417508867128, 27.622365005820267 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneıd": 65, "population": 1290, "densitycap": 100.0, "avgIncome": "highIncome", "area": 3.453, "luf": "RESIDENTIAL (GATED NEIGHBORHOOD)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.323814954372168, 27.622318506521157 ], [ 85.323640131907169, 27.62241721664876 ], [ 85.323433523539435, 27.622639717967875 ], [ 85.323129383448162, 27.62290007845251 ], [ 85.323136454360764, 27.622985386835317 ], [ 85.323135585180211, 27.623042423096354 ], [ 85.323130251258036, 27.623099266414854 ], [ 85.323120478573827, 27.623155639855074 ], [ 85.323102095274052, 27.623225027807948 ], [ 85.323092850866388, 27.623252338652403 ], [ 85.323082541992491, 27.623279345495501 ], [ 85.323071181211489, 27.623306015433304 ], [ 85.323052198337081, 27.62334531768505 ], [ 85.323007440903595, 27.623421000733146 ], [ 85.322972770230777, 27.623468959922775 ], [ 85.32295404679212, 27.623492102075705 ], [ 85.322934427994241, 27.623514648109381 ], [ 85.322913937739457, 27.623536570554553 ], [ 85.322881623267421, 27.623568226782581 ], [ 85.322859065835857, 27.623588475144192 ], [ 85.322835728764417, 27.623608009969079 ], [ 85.32279932378033, 27.623635922506246 ], [ 85.322761328578835, 27.62366209973753 ], [ 85.322721847303015, 27.623686469911785 ], [ 85.322680988169452, 27.623708966230861 ], [ 85.322653038429763, 27.623722892079371 ], [ 85.322580927412474, 27.62375383400801 ], [ 85.322521229121548, 27.623774482080059 ], [ 85.322475473422855, 27.623787505778889 ], [ 85.322444571491857, 27.623794995322008 ], [ 85.322413394925547, 27.623801519711026 ], [ 85.322366198306398, 27.623809479565907 ], [ 85.322254731137576, 27.623819427785026 ], [ 85.322190690315523, 27.623819648696653 ], [ 85.322142733671726, 27.623817202129615 ], [ 85.322110870861209, 27.623814330313902 ], [ 85.322079139987125, 27.623810469787255 ], [ 85.322031875569976, 27.623802835781419 ], [ 85.321985124497232, 27.623793008964952 ], [ 85.321954305656263, 27.623785252582003 ], [ 85.321939014912886, 27.623781016273167 ], [ 85.321908694067929, 27.623771833872592 ], [ 85.321878751485542, 27.623761714537782 ], [ 85.321849223646794, 27.623750670597857 ], [ 85.321820146527358, 27.623738715508477 ], [ 85.321805788080823, 27.623732400791646 ], [ 85.321791555553787, 27.623725863835372 ], [ 85.32176348556024, 27.623712131236665 ], [ 85.321735970746118, 27.62369753444375 ], [ 85.321722432034804, 27.623689917491511 ], [ 85.32169581262275, 27.623674058075988 ], [ 85.32168274003061, 27.623665820443719 ], [ 85.321644518341586, 27.62363990614287 ], [ 85.321607871731388, 27.623612245619508 ], [ 85.32157290064616, 27.623582914690534 ], [ 85.32153970093924, 27.623551993751253 ], [ 85.32149834669022, 27.623508439569115 ], [ 85.321469625222193, 27.62347414529853 ], [ 85.321451614306355, 27.623450558791085 ], [ 85.321434538537105, 27.623426426780153 ], [ 85.321410723473633, 27.623389270433325 ], [ 85.321389124299372, 27.623351054848328 ], [ 85.321375985388954, 27.62332504094217 ], [ 85.321358207845506, 27.623285294035735 ], [ 85.321325976099303, 27.623189732540286 ], [ 85.321308933964048, 27.623105549656081 ], [ 85.321303105855236, 27.623048744886781 ], [ 85.321301740670293, 27.622991716376237 ], [ 85.321303650391215, 27.622948965296661 ], [ 85.321308069453622, 27.622906361828864 ], [ 85.321317843030286, 27.622849988554698 ], [ 85.321336227366473, 27.622780600881981 ], [ 85.321355781394189, 27.622726283471312 ], [ 85.321379541679164, 27.622673313312493 ], [ 85.321414978821196, 27.622609387602584 ], [ 85.32144774963119, 27.622560380271398 ], [ 85.321484278625704, 27.622513528447378 ], [ 85.32152438783703, 27.622469060384944 ], [ 85.321545724614481, 27.622447788447523 ], [ 85.3215908325664, 27.622407298309682 ], [ 85.321417477826202, 27.622365005820257 ], [ 85.320635881441504, 27.622171265592687 ], [ 85.320636128097476, 27.622504644851084 ], [ 85.320806494205755, 27.6229653212961 ], [ 85.32091482670414, 27.623159682313357 ], [ 85.320921180563872, 27.623176081606168 ], [ 85.321020752470261, 27.623605224268726 ], [ 85.321255257110565, 27.623861165846304 ], [ 85.32125561562107, 27.623861736772113 ], [ 85.321255712490654, 27.623861667717772 ], [ 85.321309686840635, 27.623921735917872 ], [ 85.321573527503062, 27.624012308054645 ], [ 85.322034123006873, 27.624097678038069 ], [ 85.322992579065414, 27.624073938324436 ], [ 85.323818567943761, 27.623895612328404 ], [ 85.324139926601731, 27.623700474894072 ], [ 85.324411233215528, 27.623116363548338 ], [ 85.324477558516335, 27.622706465697782 ], [ 85.323814954372168, 27.622318506521157 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneıd": 8, "population": 0, "densitycap": 200.0, "avgIncome": "midIncome", "area": 10.583, "luf": "RESIDENTIAL (MODERATE DENSITY)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.326353800373781, 27.627060728233165 ], [ 85.325979821899409, 27.62593879281005 ], [ 85.325720913724851, 27.624931927686752 ], [ 85.325072686749323, 27.623052530751554 ], [ 85.324756624045804, 27.621816385371957 ], [ 85.324751178408889, 27.622142778249096 ], [ 85.324749843589174, 27.622154442465177 ], [ 85.324629143469664, 27.622718622143388 ], [ 85.324560303783883, 27.623144062739698 ], [ 85.324555308988437, 27.62316028257592 ], [ 85.324271693939124, 27.623770895011962 ], [ 85.324260450999006, 27.62378770339873 ], [ 85.324244280141201, 27.623800945253031 ], [ 85.323892735229762, 27.624014412667645 ], [ 85.323867831021261, 27.624024267689101 ], [ 85.32302059783008, 27.624207180185188 ], [ 85.323004809642711, 27.624209058758982 ], [ 85.322282978237396, 27.624226938206693 ], [ 85.322438481760827, 27.624264276515959 ], [ 85.323034088630322, 27.624553149282995 ], [ 85.323187691738326, 27.624672138045906 ], [ 85.323251107212542, 27.624727477411152 ], [ 85.323311291162469, 27.624798750173763 ], [ 85.32339882922831, 27.624938236678702 ], [ 85.323432119223014, 27.625009184278081 ], [ 85.323479965192462, 27.625105597603898 ], [ 85.323514384414253, 27.625200517572875 ], [ 85.323550929804298, 27.625392068670379 ], [ 85.323658338580927, 27.626228322716869 ], [ 85.323934532577908, 27.626934151820315 ], [ 85.324532952904747, 27.627379131037713 ], [ 85.325315502562916, 27.627670669145662 ], [ 85.325852546445986, 27.627709029423016 ], [ 85.326485491022439, 27.627966043281337 ], [ 85.326635096104155, 27.628127156446251 ], [ 85.326353800373781, 27.627060728233165 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneıd": 9, "population": 1152, "densitycap": 200.0, "avgIncome": "midIncome", "area": 4.909, "luf": "RESIDENTIAL (MODERATE DENSITY)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.318578972193563, 27.633771718785059 ], [ 85.318579218794895, 27.63377226852851 ], [ 85.318668319204789, 27.633979068396467 ], [ 85.31867056895949, 27.633984737263113 ], [ 85.318768969513926, 27.634255437120313 ], [ 85.318770255335707, 27.634259196674808 ], [ 85.318881556059409, 27.634606196516643 ], [ 85.318884325484348, 27.634616713675648 ], [ 85.318925925919118, 27.634817513623155 ], [ 85.318926341518676, 27.634819632702616 ], [ 85.318953831824714, 27.634968141872687 ], [ 85.319079429737485, 27.63489998149328 ], [ 85.319836080079924, 27.634156842764117 ], [ 85.320185368033179, 27.63362043653277 ], [ 85.320121715294775, 27.633598963295935 ], [ 85.320057970968364, 27.633590995251371 ], [ 85.320032051779307, 27.633583343605217 ], [ 85.320010842258128, 27.633568026723282 ], [ 85.319997080445731, 27.633547021938828 ], [ 85.3199119418137, 27.633337722467942 ], [ 85.319733436740066, 27.633016412956792 ], [ 85.319732127349624, 27.633013930758739 ], [ 85.319598950357587, 27.632747576450136 ], [ 85.319366827677271, 27.63248731750048 ], [ 85.319360988972107, 27.632479774072962 ], [ 85.319158949168823, 27.632176714088509 ], [ 85.319155847374006, 27.63217156773489 ], [ 85.318968485793903, 27.631825669026711 ], [ 85.318773916113358, 27.631479766980469 ], [ 85.3187713824734, 27.631474766316309 ], [ 85.318600763010124, 27.631097981143409 ], [ 85.318360218212064, 27.630758388183832 ], [ 85.318254923124741, 27.63068467553591 ], [ 85.318137745429226, 27.630711783915324 ], [ 85.317958198707203, 27.631104822390039 ], [ 85.317950104243693, 27.631123850684215 ], [ 85.31794382736804, 27.63113628196685 ], [ 85.317804350808743, 27.631373119285023 ], [ 85.317786516325498, 27.631449389469203 ], [ 85.317819630598436, 27.631605123557378 ], [ 85.317841319954866, 27.631695711102282 ], [ 85.317943440856595, 27.632003847735497 ], [ 85.317944898086665, 27.632008629018472 ], [ 85.318054498920475, 27.632402228867349 ], [ 85.318054929727836, 27.63240382564171 ], [ 85.318141839578658, 27.632736597365636 ], [ 85.31823484820859, 27.633020761000989 ], [ 85.318248715375958, 27.633062127194531 ], [ 85.318570952319959, 27.633753104816329 ], [ 85.318578972193563, 27.633771718785059 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneıd": 10, "population": 9161, "densitycap": 200.0, "avgIncome": "midIncome", "area": 37.829, "luf": "RESIDENTIAL (MODERATE DENSITY)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.324413139070941, 27.631505188662292 ], [ 85.324521231976988, 27.631153886717613 ], [ 85.32469688294934, 27.631005258971761 ], [ 85.324825243275285, 27.630998503165163 ], [ 85.325041429087435, 27.630944456712111 ], [ 85.325325172965833, 27.630984991551891 ], [ 85.325345440385703, 27.630887032355755 ], [ 85.325316728207525, 27.630848186467627 ], [ 85.32497026006665, 27.630540017892272 ], [ 85.325023964454971, 27.630049006342059 ], [ 85.325238782008185, 27.629642387402047 ], [ 85.325476615727823, 27.629557994791835 ], [ 85.325699105336525, 27.629274128739397 ], [ 85.325875562612381, 27.62872174074533 ], [ 85.326174772775815, 27.628622004024219 ], [ 85.326355066079415, 27.62846472688701 ], [ 85.326489327050197, 27.628380334276855 ], [ 85.326688800492462, 27.628284433583445 ], [ 85.326635096104184, 27.628127156446244 ], [ 85.326485491022439, 27.627966043281344 ], [ 85.325852546445986, 27.627709029422999 ], [ 85.325315502562916, 27.627670669145687 ], [ 85.324532952904732, 27.627379131037731 ], [ 85.323934532577923, 27.626934151820326 ], [ 85.323658338580927, 27.626228322716884 ], [ 85.323550929804313, 27.625392068670386 ], [ 85.321548042560977, 27.626537926234001 ], [ 85.321188007335905, 27.626902295152345 ], [ 85.320978832703361, 27.62729108855298 ], [ 85.319922700809627, 27.62922028409157 ], [ 85.319878251877824, 27.629292952722011 ], [ 85.319457595143703, 27.629926754219479 ], [ 85.319025652029836, 27.630320830522948 ], [ 85.318938157794847, 27.630374176097639 ], [ 85.318771641298994, 27.630529548747543 ], [ 85.318539246325585, 27.630756378849856 ], [ 85.318732960478556, 27.631030902421966 ], [ 85.318739166083972, 27.631041700418816 ], [ 85.318911190428167, 27.631421586972202 ], [ 85.319104634126987, 27.631765486484742 ], [ 85.319105135246105, 27.631766394234013 ], [ 85.319291317806133, 27.632110115486725 ], [ 85.31948905011518, 27.632406713681039 ], [ 85.319723962031205, 27.632670099589131 ], [ 85.319733879173285, 27.632684664867444 ], [ 85.319870351384822, 27.632957608940881 ], [ 85.320050061408054, 27.633281086608381 ], [ 85.320053398759754, 27.633288048272082 ], [ 85.320124403677056, 27.633462601803675 ], [ 85.320151253992591, 27.633465958087797 ], [ 85.320167611275721, 27.633469689751738 ], [ 85.320310262488718, 27.633517813049419 ], [ 85.320486798849913, 27.633543774268936 ], [ 85.32050486495524, 27.633548539374029 ], [ 85.320521059596999, 27.633557116350495 ], [ 85.32072700990112, 27.633699697328048 ], [ 85.321162299349993, 27.63380486891721 ], [ 85.321632728605792, 27.633918528997828 ], [ 85.322011408833731, 27.634010020345467 ], [ 85.322434783668001, 27.634100128084771 ], [ 85.32295817540026, 27.634195802489053 ], [ 85.323484215659519, 27.634291958896689 ], [ 85.324453673910739, 27.632390199330704 ], [ 85.324386115844419, 27.63185649060701 ], [ 85.324413139070941, 27.631505188662292 ] ], [ [ 85.322069653825224, 27.629302136906894 ], [ 85.321467581296574, 27.628830904547975 ], [ 85.32154660712645, 27.628505338235172 ], [ 85.321669447542675, 27.628095021355513 ], [ 85.321748130360632, 27.627681152182458 ], [ 85.32181134024664, 27.627358449196894 ], [ 85.322039486640577, 27.627567249202251 ], [ 85.32221623629404, 27.627775427063927 ], [ 85.322423725571696, 27.627995780907185 ], [ 85.323464269740967, 27.629290387514036 ], [ 85.32403256274101, 27.629949715105937 ], [ 85.324417156034173, 27.630435121433905 ], [ 85.324778144591392, 27.630782881948825 ], [ 85.324936849691809, 27.630910712119988 ], [ 85.324811128568982, 27.630937810034737 ], [ 85.324695436909636, 27.63093927406344 ], [ 85.324614297773493, 27.630992665324211 ], [ 85.324483925873992, 27.631114141508633 ], [ 85.323821360236209, 27.630736980372856 ], [ 85.323046946531278, 27.630109499390201 ], [ 85.322069653825224, 27.629302136906894 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneıd": 12, "population": 1110, "densitycap": 100.0, "avgIncome": "highIncome", "area": 9.157, "luf": "RESIDENTIAL (GATED NEIGHBORHOOD)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.322383770148392, 27.619901516345006 ], [ 85.322803232413861, 27.620152536756919 ], [ 85.323834587851579, 27.620721896863728 ], [ 85.323847047567, 27.620730486894619 ], [ 85.324378360685444, 27.62118147009804 ], [ 85.324649804693763, 27.621434473891949 ], [ 85.324109929527566, 27.619868834495293 ], [ 85.323749570125045, 27.618429747241326 ], [ 85.322383770148392, 27.619901516345006 ] ] ], [ [ [ 85.320155987061753, 27.616890247048413 ], [ 85.320137563234965, 27.617126620170268 ], [ 85.320097648300617, 27.61741442593722 ], [ 85.319846388915963, 27.618360627464622 ], [ 85.319746519785241, 27.618819771359419 ], [ 85.319879594816371, 27.618700822736297 ], [ 85.319945650894653, 27.61864087447908 ], [ 85.319972328393575, 27.618625207224447 ], [ 85.320126935535399, 27.618571624421868 ], [ 85.320138495185958, 27.618568534217353 ], [ 85.32036151217244, 27.618525763830945 ], [ 85.320388243000167, 27.618524926574512 ], [ 85.320534143401972, 27.61854347528811 ], [ 85.320556292710535, 27.618549463270735 ], [ 85.320575390534373, 27.618561113159533 ], [ 85.321071863666305, 27.618975889103783 ], [ 85.321450184783828, 27.61917634834786 ], [ 85.321465348331458, 27.619186909749637 ], [ 85.322012286075889, 27.619679205735189 ], [ 85.322256996813579, 27.619825650427423 ], [ 85.323672252697051, 27.618300589231527 ], [ 85.323727394788051, 27.618341189400979 ], [ 85.323598516072281, 27.617826505992959 ], [ 85.320155987061753, 27.616890247048413 ] ], [ [ 85.321803454229666, 27.618498760230878 ], [ 85.322211376202404, 27.618001065362833 ], [ 85.322650048579206, 27.618237308390416 ], [ 85.322203955630897, 27.618737939023401 ], [ 85.321803454229666, 27.618498760230878 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneıd": 70, "population": 775, "densitycap": 100.0, "avgIncome": "highIncome", "area": 4.724, "luf": "RESIDENTIAL (LOW DENSITY)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.319096842633797, 27.620562417958009 ], [ 85.31908934263997, 27.620490517957752 ], [ 85.319088825717046, 27.620477785749163 ], [ 85.319003263657606, 27.620489773074194 ], [ 85.318975845227882, 27.620480075495227 ], [ 85.318979438894317, 27.620483646145129 ], [ 85.319037803756316, 27.620549682776669 ], [ 85.319081023499663, 27.620621950014964 ], [ 85.319116645068476, 27.620692427093584 ], [ 85.319130760901373, 27.62073238882023 ], [ 85.319098307417718, 27.620571989580103 ], [ 85.319096842633797, 27.620562417958009 ] ] ], [ [ [ 85.314410403728246, 27.621884882737596 ], [ 85.314597620142521, 27.622054918009916 ], [ 85.314938749959367, 27.622039127246239 ], [ 85.315356277728881, 27.622019798900155 ], [ 85.315698396862487, 27.622003960453021 ], [ 85.316169811396605, 27.62205627056716 ], [ 85.316410551764008, 27.622099801426 ], [ 85.317294800569599, 27.621841536109926 ], [ 85.317692934611571, 27.62185781225374 ], [ 85.317846419001199, 27.621905460289547 ], [ 85.318188314529351, 27.622156671324319 ], [ 85.31828328694111, 27.622228603561908 ], [ 85.318626698650618, 27.621780235649123 ], [ 85.318835317088642, 27.621412371598254 ], [ 85.319009768228895, 27.620986934237052 ], [ 85.319016478949351, 27.620962904448891 ], [ 85.319024472680354, 27.62093880382524 ], [ 85.319032570140735, 27.620907912177163 ], [ 85.319040403407556, 27.620878715396763 ], [ 85.319047000010244, 27.62085247525167 ], [ 85.319040319144619, 27.620821829022489 ], [ 85.319028422600312, 27.620789421514022 ], [ 85.319007242224316, 27.620740769825566 ], [ 85.3189786192426, 27.620680141443199 ], [ 85.318918533683217, 27.620619980775984 ], [ 85.318849008775629, 27.620553762431914 ], [ 85.318785673265282, 27.620499870518124 ], [ 85.318685480294803, 27.620452757049478 ], [ 85.316582978100001, 27.620912488570223 ], [ 85.314410403728246, 27.621884882737596 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneıd": 13, "population": 0, "densitycap": 250.0, "avgIncome": "midIncome", "area": 12.603, "luf": "CITY CENTER", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.314294142952292, 27.625545692350219 ], [ 85.31429931417513, 27.625545598409477 ], [ 85.315080715017601, 27.625555093748261 ], [ 85.315084164268626, 27.625555205473855 ], [ 85.315603538740433, 27.625582558466309 ], [ 85.316214763847555, 27.625596962625618 ], [ 85.316938769891351, 27.625561744190055 ], [ 85.317296708149854, 27.624367008443787 ], [ 85.317295592539054, 27.624366640550544 ], [ 85.317187809168217, 27.624330060298426 ], [ 85.316973030417572, 27.624254247034035 ], [ 85.316694256059023, 27.624112435871233 ], [ 85.316310269355725, 27.623814946527833 ], [ 85.316076182942183, 27.623487331289553 ], [ 85.315930980900234, 27.622820049126485 ], [ 85.316019816744273, 27.622466000144179 ], [ 85.316138102197911, 27.622268193440711 ], [ 85.316410551764008, 27.622099801426 ], [ 85.316169811396605, 27.62205627056716 ], [ 85.315698396862487, 27.622003960453021 ], [ 85.314600048689101, 27.622054805596445 ], [ 85.314410403728246, 27.621884882737596 ], [ 85.313723227763276, 27.622192435930415 ], [ 85.31348004914382, 27.62230127195064 ], [ 85.313475165716739, 27.622303457550419 ], [ 85.313334266800609, 27.622447084582724 ], [ 85.313071995822483, 27.622760341981518 ], [ 85.312908491195216, 27.622947222338549 ], [ 85.312763030812675, 27.623214448259123 ], [ 85.312643267368387, 27.623481986621989 ], [ 85.31260173729666, 27.623676073722041 ], [ 85.312626326631758, 27.623984358196964 ], [ 85.312863949204996, 27.624238921911449 ], [ 85.313073426307298, 27.624579297339093 ], [ 85.313199108792901, 27.624763971718018 ], [ 85.313451615271447, 27.625058931079771 ], [ 85.313585955158459, 27.625580620828444 ], [ 85.31359449911821, 27.625579758846964 ], [ 85.313598918225139, 27.625579428997128 ], [ 85.314294142952292, 27.625545692350219 ] ], [ [ 85.315402470641544, 27.622575213558264 ], [ 85.315406457097339, 27.62329004383669 ], [ 85.314458471530159, 27.623285175631548 ], [ 85.314469133553914, 27.622561078241009 ], [ 85.315402470641544, 27.622575213558264 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneıd": 71, "population": 2218, "densitycap": 100.0, "avgIncome": "highIncome", "area": 4.99, "luf": "RESIDENTIAL (LOW DENSITY)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.317187809168217, 27.624330060298426 ], [ 85.317295592539054, 27.624366640550544 ], [ 85.317234649632255, 27.624345270045612 ], [ 85.317187809168217, 27.624330060298426 ] ] ], [ [ [ 85.319263588476772, 27.624861689926206 ], [ 85.319263201984498, 27.624726027424884 ], [ 85.319253997833457, 27.624264927249342 ], [ 85.319237509683902, 27.624097744934037 ], [ 85.319159706611089, 27.623627085365822 ], [ 85.31905717831269, 27.623213504931424 ], [ 85.319056139351417, 27.623208851122552 ], [ 85.319016339365064, 27.623008651121012 ], [ 85.319014565271942, 27.622994754957237 ], [ 85.319004865286459, 27.622826154957004 ], [ 85.319013350371364, 27.622779404409538 ], [ 85.319097865705487, 27.622586320735682 ], [ 85.319130197412633, 27.622397810431739 ], [ 85.319137953559931, 27.622264755710194 ], [ 85.31912402381451, 27.621985081249811 ], [ 85.319123933868568, 27.621977448510467 ], [ 85.319130534139077, 27.621725638893988 ], [ 85.319138234159979, 27.621432938894745 ], [ 85.319138474415141, 27.621428151389399 ], [ 85.319164048137111, 27.621083054526974 ], [ 85.319163323648397, 27.621030514237887 ], [ 85.319147338894453, 27.621046019924599 ], [ 85.318976538606179, 27.621462555099637 ], [ 85.318972988343162, 27.621469851531991 ], [ 85.318760107734221, 27.621845232000734 ], [ 85.318755053667559, 27.621852858909385 ], [ 85.318404782446777, 27.62231018342548 ], [ 85.318403862326463, 27.62231135787092 ], [ 85.318398064924949, 27.622318593366447 ], [ 85.318532378818261, 27.622428876215285 ], [ 85.318631295247002, 27.622480992303334 ], [ 85.318398028190259, 27.622692810969031 ], [ 85.318345825748366, 27.622740213339721 ], [ 85.318201220307444, 27.622992186806052 ], [ 85.318074980460381, 27.623238955458383 ], [ 85.317960500359675, 27.623489257798557 ], [ 85.317882646853946, 27.623662938249229 ], [ 85.317801656858293, 27.623918667739535 ], [ 85.31768487776246, 27.624323214070269 ], [ 85.317439849352951, 27.624416513512351 ], [ 85.317089799404471, 27.625554397053477 ], [ 85.317826459787796, 27.625518558337955 ], [ 85.318294230012597, 27.625442473800447 ], [ 85.31921804529965, 27.625041225482555 ], [ 85.319248902980391, 27.625030640138476 ], [ 85.319252972934976, 27.62500433616465 ], [ 85.319263588476772, 27.624861689926206 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneıd": 14, "population": 0, "densitycap": 250.0, "avgIncome": "midIncome", "area": 2.703, "luf": "COMMERCIAL AND RESIDENTIAL", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.314709925721772, 27.641412882135484 ], [ 85.314322772302191, 27.641113576137879 ], [ 85.314137232451415, 27.64072368960192 ], [ 85.314059049671044, 27.640145169471019 ], [ 85.314009177052199, 27.63942357026438 ], [ 85.313961133158045, 27.639431946451548 ], [ 85.313823146589982, 27.639463544192946 ], [ 85.313657833792988, 27.639522761148346 ], [ 85.313516021577769, 27.639608884460106 ], [ 85.31335570584389, 27.639732051480223 ], [ 85.313032942186965, 27.63992245553916 ], [ 85.312761909820736, 27.640032094210348 ], [ 85.312867363824381, 27.64014676064031 ], [ 85.312873840528425, 27.640154449387822 ], [ 85.312968633200242, 27.64027757983694 ], [ 85.312982109755708, 27.640300238397657 ], [ 85.313067746731406, 27.640495008516847 ], [ 85.313074334648675, 27.6405155293162 ], [ 85.313103418155194, 27.640654907898558 ], [ 85.313132757772138, 27.640751325924171 ], [ 85.313136792240101, 27.64077215463136 ], [ 85.313157326466325, 27.641009183240044 ], [ 85.313151485462058, 27.641052765801074 ], [ 85.313078628387089, 27.641252168968265 ], [ 85.313053922458494, 27.6413801402073 ], [ 85.313046502739112, 27.641403345212268 ], [ 85.312988297866113, 27.641531425578354 ], [ 85.312939794712349, 27.641640315400174 ], [ 85.314980635538063, 27.641655070745077 ], [ 85.314969581603336, 27.6415941084799 ], [ 85.314709925721772, 27.641412882135484 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneıd": 15, "population": 6309, "densitycap": 250.0, "avgIncome": "lowIncomeB", "area": 49.064, "luf": "RESIDENTIAL (MODERATE DENSITY)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.307721430049256, 27.632262074253013 ], [ 85.307628891899469, 27.63238514591022 ], [ 85.30756904830784, 27.632568513058029 ], [ 85.307528754526402, 27.632803244305364 ], [ 85.307546859479004, 27.632928338596248 ], [ 85.307618717410136, 27.633129479920303 ], [ 85.307705211136081, 27.633307830787295 ], [ 85.307895731496544, 27.633443576830125 ], [ 85.307903346433037, 27.633449460009242 ], [ 85.308181733492972, 27.633682460413066 ], [ 85.308188576084945, 27.633688646016953 ], [ 85.308307632995522, 27.633804900345758 ], [ 85.308309130029571, 27.633806388393506 ], [ 85.308457764064698, 27.633956788818843 ], [ 85.308606503127109, 27.634092937199906 ], [ 85.308614127299407, 27.634100580315614 ], [ 85.308693352051776, 27.634187648010801 ], [ 85.308712163435715, 27.63421592756103 ], [ 85.308868076342051, 27.634555059421075 ], [ 85.308875390467392, 27.634577197860711 ], [ 85.308896914765072, 27.634680373678808 ], [ 85.308964555986975, 27.634899010964549 ], [ 85.308965431118168, 27.634901998738531 ], [ 85.309011223724497, 27.63506758475468 ], [ 85.309013936423653, 27.635080680527516 ], [ 85.309042957492579, 27.635289112659759 ], [ 85.309043908386528, 27.635304539548937 ], [ 85.309041812705729, 27.63544084109153 ], [ 85.309039055208601, 27.635620185222248 ], [ 85.309038734808695, 27.635626806273546 ], [ 85.309028804718594, 27.635748662045028 ], [ 85.309027784883398, 27.635756935225047 ], [ 85.309010629570324, 27.635860661879725 ], [ 85.309001593328844, 27.635960714989622 ], [ 85.308999555286576, 27.636093260757423 ], [ 85.30899698321781, 27.636260536085938 ], [ 85.309009792452443, 27.636416433578454 ], [ 85.309038475095207, 27.63658380264928 ], [ 85.309068114536359, 27.636741200399655 ], [ 85.309069795350212, 27.636756279722963 ], [ 85.30907171410054, 27.63681011610522 ], [ 85.309122143866318, 27.636877693471682 ], [ 85.309124376230372, 27.636880879525158 ], [ 85.309319918640014, 27.637178006790634 ], [ 85.309506098840785, 27.63734186660724 ], [ 85.309834911308101, 27.637479841085849 ], [ 85.31016345485412, 27.63757268921956 ], [ 85.310394918708667, 27.637609951445231 ], [ 85.310400839690914, 27.637611123681094 ], [ 85.310620365129651, 27.637662852132895 ], [ 85.310891326699178, 27.637721494319464 ], [ 85.311069996221434, 27.637743598698943 ], [ 85.311207155634818, 27.637738843794185 ], [ 85.311702962821016, 27.637648561256771 ], [ 85.312199458125804, 27.637496448033698 ], [ 85.312440094073594, 27.637375897429408 ], [ 85.312441877071436, 27.637375031924517 ], [ 85.312605592021711, 27.637298069543256 ], [ 85.31276118333578, 27.637150408211724 ], [ 85.312894815044572, 27.636977070388866 ], [ 85.312967024362408, 27.636702100018628 ], [ 85.312975781343411, 27.636682804234574 ], [ 85.313064661302988, 27.63655028884796 ], [ 85.313082137232655, 27.636532355402114 ], [ 85.313259188847269, 27.636410898243707 ], [ 85.313565856431381, 27.636324309744854 ], [ 85.313580743625693, 27.636321528489692 ], [ 85.313732273480909, 27.636307097070684 ], [ 85.313755455466193, 27.636308062885899 ], [ 85.313989847746285, 27.636350383730019 ], [ 85.314010984665643, 27.636341136327204 ], [ 85.314105718940837, 27.636246402084019 ], [ 85.314107489730986, 27.636244691420977 ], [ 85.314161607569361, 27.63619418145958 ], [ 85.314179387145288, 27.636181887448441 ], [ 85.314200430311985, 27.636174770726281 ], [ 85.314222891157499, 27.636173455573811 ], [ 85.314417715258557, 27.636187886983393 ], [ 85.314440909011921, 27.636192958519782 ], [ 85.31458522318411, 27.636247076325077 ], [ 85.314588147318631, 27.636248238050268 ], [ 85.314740058680741, 27.636312040832546 ], [ 85.314790148932502, 27.636296011947124 ], [ 85.314899772098087, 27.636223973880973 ], [ 85.315049039098739, 27.63606113723478 ], [ 85.315129222286743, 27.63594260565894 ], [ 85.315135753651447, 27.635934399030546 ], [ 85.315276460050484, 27.635782869142329 ], [ 85.315290463289841, 27.635771176354847 ], [ 85.315307309379691, 27.63576298121394 ], [ 85.315617584829781, 27.635654745591285 ], [ 85.315639129875152, 27.635650307132607 ], [ 85.315661197542823, 27.635651580395145 ], [ 85.315938599599434, 27.635704418901121 ], [ 85.316219749906779, 27.63558217964912 ], [ 85.316382301838459, 27.635196119288739 ], [ 85.316394895917, 27.635176749068744 ], [ 85.316577639417105, 27.634979948493349 ], [ 85.316702799638733, 27.634771348318306 ], [ 85.316841167937895, 27.634501201071348 ], [ 85.316683307363164, 27.634060149841588 ], [ 85.316381483732115, 27.633703448942711 ], [ 85.31616158386683, 27.633574096050769 ], [ 85.315818027597189, 27.633532869266855 ], [ 85.315811524325497, 27.633531830774533 ], [ 85.315306424217809, 27.633430810736701 ], [ 85.315287389381808, 27.633424529061905 ], [ 85.315034424158725, 27.633304703434359 ], [ 85.314865357230772, 27.633323488629998 ], [ 85.314499235709405, 27.633380919444576 ], [ 85.314479794379437, 27.633381715504644 ], [ 85.314460763512812, 27.633378087899754 ], [ 85.314208213476434, 27.633298715018814 ], [ 85.314191144611058, 27.633291084004636 ], [ 85.314176750910534, 27.633279903912406 ], [ 85.314068515249971, 27.633171668192198 ], [ 85.314056254290463, 27.633154995085661 ], [ 85.31396773117666, 27.632984022223877 ], [ 85.313859387494702, 27.632790740333995 ], [ 85.313537073781674, 27.632614271608215 ], [ 85.313527366435295, 27.632607963555142 ], [ 85.313423375952539, 27.632528441407587 ], [ 85.313063985239594, 27.632501819838893 ], [ 85.31259683266677, 27.63253013209895 ], [ 85.31220080141722, 27.632585715434555 ], [ 85.3121321999771, 27.632616897905262 ], [ 85.312112115282446, 27.632623058732829 ], [ 85.312090900635241, 27.632624027967505 ], [ 85.312070213535179, 27.632619729883249 ], [ 85.311860957795346, 27.632547572719815 ], [ 85.311841616263678, 27.632537795317329 ], [ 85.311703997386772, 27.63244206044449 ], [ 85.311522615665339, 27.632478336758869 ], [ 85.311519008908576, 27.632478976880488 ], [ 85.311100497373346, 27.632543918314528 ], [ 85.311096466840226, 27.632544445030742 ], [ 85.310757328178525, 27.632580523602385 ], [ 85.310741234866953, 27.632580706992012 ], [ 85.310481469085659, 27.632559059836471 ], [ 85.310475803486469, 27.632558395514199 ], [ 85.310258890401499, 27.632525529906367 ], [ 85.309997428117597, 27.632619388136838 ], [ 85.309984488913074, 27.632622878225618 ], [ 85.309594840245978, 27.632695035376479 ], [ 85.309583157222903, 27.632696368570667 ], [ 85.309258449991503, 27.632710799994143 ], [ 85.309240218482955, 27.632709650405516 ], [ 85.309033926808667, 27.632674082871571 ], [ 85.308748298429848, 27.632645520022649 ], [ 85.308721935851239, 27.632638410025187 ], [ 85.308454954414799, 27.63251574285362 ], [ 85.308443600450232, 27.632509334857179 ], [ 85.308284854764352, 27.632401099126554 ], [ 85.308278950128525, 27.632396630138942 ], [ 85.308055263060666, 27.632209021548682 ], [ 85.308043067481222, 27.632195830096933 ], [ 85.308034969924108, 27.63218033880883 ], [ 85.307996278667261, 27.632072443198251 ], [ 85.307830877002687, 27.632143593336064 ], [ 85.307721430049256, 27.632262074253013 ] ], [ [ 85.313498296359484, 27.635688354035292 ], [ 85.313192039363202, 27.635766135685788 ], [ 85.313036743870924, 27.635200489115867 ], [ 85.313380968833883, 27.635133357985993 ], [ 85.313498296359484, 27.635688354035292 ] ], [ [ 85.315202207742828, 27.635231912398144 ], [ 85.315166630823782, 27.635065069724078 ], [ 85.31513450244006, 27.634922041856594 ], [ 85.31515548989583, 27.63479664005601 ], [ 85.315213874660202, 27.634719238479121 ], [ 85.315268082693535, 27.634665559039981 ], [ 85.315344801931516, 27.634635925996303 ], [ 85.315440583906536, 27.634606524501784 ], [ 85.315516054935458, 27.634658383334965 ], [ 85.315587193444216, 27.634744150806377 ], [ 85.315646478358047, 27.634856943299354 ], [ 85.315690565115446, 27.634966155023768 ], [ 85.315715693094774, 27.635068344181445 ], [ 85.31573037138584, 27.635105879917816 ], [ 85.315733299964378, 27.63516364971456 ], [ 85.315728499389778, 27.635228117886388 ], [ 85.315202207742828, 27.635231912398144 ] ], [ [ 85.310934035145635, 27.635267323840708 ], [ 85.31078061463775, 27.635162416026208 ], [ 85.310436505804731, 27.634968632012576 ], [ 85.310496491868363, 27.634678793485389 ], [ 85.310525646033454, 27.634588474556292 ], [ 85.310564813725549, 27.634520336805856 ], [ 85.31068971184655, 27.634602838159132 ], [ 85.31080668571272, 27.634670208074599 ], [ 85.310825829696583, 27.63477966244654 ], [ 85.310896692727312, 27.634836166667164 ], [ 85.310917422489069, 27.634993038204552 ], [ 85.311025554364221, 27.635033510144201 ], [ 85.311183380422335, 27.635152896785833 ], [ 85.311011775680171, 27.635328033342972 ], [ 85.310934035145635, 27.635267323840708 ] ] ], [ [ [ 85.318173120644715, 27.637694364176109 ], [ 85.318173705102808, 27.637685454332654 ], [ 85.318196505110564, 27.637478754333795 ], [ 85.318201181703202, 27.637457542402366 ], [ 85.318294016426137, 27.637180323378118 ], [ 85.318322663042053, 27.6370718546336 ], [ 85.318324331445012, 27.637066199215127 ], [ 85.318438437821584, 27.636716546658754 ], [ 85.318486774406992, 27.636402846116585 ], [ 85.31848705260326, 27.636401137784681 ], [ 85.318705652604464, 27.635127437792494 ], [ 85.318706081508026, 27.635125102901984 ], [ 85.318716390634009, 27.635072452729503 ], [ 85.318676581817797, 27.634857393491803 ], [ 85.318636302643867, 27.63466296896139 ], [ 85.318561802545304, 27.634430700209958 ], [ 85.318166752915744, 27.63464286431406 ], [ 85.318149513200609, 27.634649687770349 ], [ 85.318130917487466, 27.6346525191151 ], [ 85.317770131674749, 27.6346669505376 ], [ 85.317749180624929, 27.63466519112222 ], [ 85.317236864804386, 27.634556955368435 ], [ 85.317236007540274, 27.634556769566835 ], [ 85.317206065062734, 27.634550115701721 ], [ 85.317232124656229, 27.634625688356572 ], [ 85.317235456391259, 27.634646993975785 ], [ 85.317232201714049, 27.634783694422616 ], [ 85.317301323968778, 27.634925230262024 ], [ 85.317307463314123, 27.634947735666461 ], [ 85.317304724115232, 27.634970766907269 ], [ 85.317157915450636, 27.635429840236949 ], [ 85.317109629475212, 27.635846742962546 ], [ 85.317158177422229, 27.636239630461219 ], [ 85.317396348266158, 27.637298469566709 ], [ 85.31739769872145, 27.637315723497597 ], [ 85.317361808076157, 27.63786126703252 ], [ 85.317213651953892, 27.638135564636936 ], [ 85.317030029532887, 27.638455201403517 ], [ 85.318165788522506, 27.638578821278056 ], [ 85.318171665803092, 27.638272887237683 ], [ 85.318171553373574, 27.638260920491167 ], [ 85.318171239632505, 27.638253947781717 ], [ 85.318169867199515, 27.638234225394452 ], [ 85.318163720612219, 27.638139964175025 ], [ 85.318169351619247, 27.637873032417183 ], [ 85.318173120644715, 27.637694364176109 ] ] ], [ [ [ 85.316661815444334, 27.637855939210318 ], [ 85.316957957004561, 27.638026822537643 ], [ 85.317068784322871, 27.638090614481619 ], [ 85.317138094881301, 27.637969320925976 ], [ 85.317204704935023, 27.637852752954178 ], [ 85.317210808102615, 27.63784207236144 ], [ 85.317245384930843, 27.637316510033006 ], [ 85.31700848057649, 27.636263294866914 ], [ 85.317083, 27.63625 ], [ 85.31700745612018, 27.636257403911291 ], [ 85.316957656077761, 27.635854378970457 ], [ 85.316957601152922, 27.635840030100727 ], [ 85.317007401761472, 27.63541005506676 ], [ 85.317009907391864, 27.635398459775278 ], [ 85.317151084880237, 27.634956997173077 ], [ 85.317086174619831, 27.634824085483253 ], [ 85.317079884927807, 27.634795654040211 ], [ 85.317083233557497, 27.634655015701298 ], [ 85.31705833588515, 27.634582812318367 ], [ 85.316992301458271, 27.634541089074101 ], [ 85.316984823526283, 27.634546905242861 ], [ 85.31684009826067, 27.634829464390851 ], [ 85.316837982856313, 27.634833273081775 ], [ 85.316708100131066, 27.635049744501995 ], [ 85.316699637282255, 27.635060980137393 ], [ 85.316520149055052, 27.63525427527491 ], [ 85.316351446000624, 27.635654945585944 ], [ 85.316336526145761, 27.635676704515991 ], [ 85.316313626594834, 27.635692004268485 ], [ 85.315981703702946, 27.635836318577013 ], [ 85.315957590941892, 27.63584267881118 ], [ 85.315932467728572, 27.635841682806447 ], [ 85.315651748219693, 27.635788212439397 ], [ 85.315381059027075, 27.635882638897584 ], [ 85.315256496637829, 27.636016783063532 ], [ 85.315176438362812, 27.636135130171745 ], [ 85.315170212520314, 27.63614300563875 ], [ 85.315011466883945, 27.636316182789891 ], [ 85.314997718082608, 27.636327842162331 ], [ 85.314871443092912, 27.636410822887306 ], [ 85.314852018346855, 27.636420057357363 ], [ 85.314761821901925, 27.636448920219017 ], [ 85.314742429326756, 27.636452673842967 ], [ 85.314722606749783, 27.636451828272694 ], [ 85.314703705773695, 27.636446441163564 ], [ 85.314524761231539, 27.636371284443101 ], [ 85.314393066632775, 27.636321898966248 ], [ 85.314246496167215, 27.636311041903614 ], [ 85.314218359894909, 27.636337302427219 ], [ 85.314114600965667, 27.636441061403964 ], [ 85.314091355633508, 27.636456796355475 ], [ 85.314033629913283, 27.636482051359462 ], [ 85.314009844197471, 27.636488429514461 ], [ 85.313985019678867, 27.636487636289385 ], [ 85.313736761143119, 27.636442811834943 ], [ 85.313604506535341, 27.636455407506233 ], [ 85.313318783360259, 27.636536082288906 ], [ 85.313188209572971, 27.636630061467336 ], [ 85.313112337810466, 27.636743182499529 ], [ 85.313039565642399, 27.637020297518916 ], [ 85.313028216577365, 27.637043194356902 ], [ 85.312883216969311, 27.6372312781095 ], [ 85.312875982513077, 27.637239283889873 ], [ 85.312707732490537, 27.637398958884173 ], [ 85.312687790590161, 27.637412499953037 ], [ 85.312513730886664, 27.637494325426559 ], [ 85.312267966467942, 27.637617445238277 ], [ 85.312255429076473, 27.637622456517054 ], [ 85.311979015485875, 27.63770714272458 ], [ 85.312125412844111, 27.637703224282149 ], [ 85.312346076702539, 27.637737855239948 ], [ 85.312685793467949, 27.637805879572035 ], [ 85.313539758385929, 27.6380611798822 ], [ 85.313747734564487, 27.638143571569056 ], [ 85.313857128590129, 27.63822210201992 ], [ 85.314008051611154, 27.638361448897324 ], [ 85.314472905282827, 27.638462568524499 ], [ 85.314826456892874, 27.638488358301476 ], [ 85.315148935158703, 27.63844212927691 ], [ 85.315873301402405, 27.638202576899015 ], [ 85.316661815444334, 27.637855939210318 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneıd": 16, "population": 2471, "densitycap": 350.0, "avgIncome": "lowIncomeB", "area": 13.543, "luf": "RESIDENTIAL (HIGH DENSITY)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.31858400286832, 27.64110764276624 ], [ 85.318527702882122, 27.640864242764128 ], [ 85.318525579547895, 27.64085131014102 ], [ 85.318494079575643, 27.640530510139882 ], [ 85.318493739191481, 27.640526007352335 ], [ 85.318478779878347, 27.640244060361983 ], [ 85.318430953437343, 27.640169694415615 ], [ 85.318345551391914, 27.640082376361285 ], [ 85.318343839901416, 27.640080589241457 ], [ 85.318235539829402, 27.639965089254545 ], [ 85.318211476151646, 27.639925304806571 ], [ 85.318187676151751, 27.639854904805947 ], [ 85.318186095018334, 27.639849796097909 ], [ 85.318126995025523, 27.639639696095987 ], [ 85.318123483739186, 27.639619854067686 ], [ 85.318113483750679, 27.639487454067368 ], [ 85.318116552845183, 27.63945409327847 ], [ 85.318153377500252, 27.639314442830628 ], [ 85.318161366807118, 27.639226469705122 ], [ 85.318169359689279, 27.639127989566155 ], [ 85.318182151672616, 27.638929185030008 ], [ 85.318165290022264, 27.63870833591184 ], [ 85.318165000343896, 27.638700029905308 ], [ 85.318165788522506, 27.638578821278056 ], [ 85.317030029532887, 27.638455201403517 ], [ 85.316793486555511, 27.638749088332371 ], [ 85.316506273476108, 27.639165547626458 ], [ 85.316501519738949, 27.639171660163324 ], [ 85.316191486454642, 27.639526907024358 ], [ 85.316561264443195, 27.639948958114903 ], [ 85.317185386113792, 27.640257288589957 ], [ 85.317776375835336, 27.640486826051248 ], [ 85.317785179613594, 27.640490872737512 ], [ 85.318354441813753, 27.640795930956891 ], [ 85.318368943790503, 27.640806017376871 ], [ 85.318380298865733, 27.640818911938073 ], [ 85.3185896307006, 27.641127314102761 ], [ 85.318585582714903, 27.641113639390316 ], [ 85.31858400286832, 27.64110764276624 ] ] ], [ [ [ 85.314137232451429, 27.640723689601931 ], [ 85.314322772302191, 27.641113576137876 ], [ 85.314709925721758, 27.641412882135501 ], [ 85.314969581603336, 27.641594108479921 ], [ 85.314858396339659, 27.640980920369014 ], [ 85.314858498562401, 27.640958791191338 ], [ 85.314866610199374, 27.640937874108403 ], [ 85.315068073816192, 27.640606898487427 ], [ 85.315421101651694, 27.639980094620245 ], [ 85.315436332978678, 27.63996167368779 ], [ 85.315739392851654, 27.639701908175816 ], [ 85.315743598884325, 27.63969856166954 ], [ 85.316040253727905, 27.639479602218138 ], [ 85.316378937280263, 27.639091527525864 ], [ 85.316665377803176, 27.638676189090422 ], [ 85.316668368503144, 27.638672179599585 ], [ 85.316709015267534, 27.638621679255717 ], [ 85.316770486884351, 27.638545305587154 ], [ 85.316903133947747, 27.638380501525514 ], [ 85.317068784322871, 27.638090614481619 ], [ 85.316661815444334, 27.637855939210318 ], [ 85.315873301402405, 27.638202576899015 ], [ 85.315848761180163, 27.638210692582135 ], [ 85.315404102501574, 27.638357744426237 ], [ 85.315148935158703, 27.63844212927691 ], [ 85.314826456892874, 27.638488358301476 ], [ 85.314472905282827, 27.638462568524499 ], [ 85.314336623351707, 27.638432923292577 ], [ 85.314008051611154, 27.638361448897324 ], [ 85.314024773659469, 27.638974108517612 ], [ 85.314009177052213, 27.639423570264388 ], [ 85.314059049671044, 27.640145169471026 ], [ 85.314137232451429, 27.640723689601931 ] ], [ [ 85.314680183098247, 27.640555792066205 ], [ 85.314611937443004, 27.640654299165789 ], [ 85.314492954480514, 27.640579835944912 ], [ 85.314429676327677, 27.640540860196133 ], [ 85.314430405053002, 27.64049332327685 ], [ 85.314378119569909, 27.640421368915238 ], [ 85.314269889472527, 27.640362512538573 ], [ 85.314570350770609, 27.639946550090929 ], [ 85.314637447892324, 27.639985147677645 ], [ 85.314705514385352, 27.640022684840385 ], [ 85.314765022020353, 27.640058866159983 ], [ 85.314616421908326, 27.640251913685187 ], [ 85.314746528407397, 27.640332454144126 ], [ 85.314684197257364, 27.640418297705459 ], [ 85.314746444186824, 27.64046235499513 ], [ 85.314680183098247, 27.640555792066205 ] ], [ [ 85.315580534628324, 27.638824634618693 ], [ 85.315931785571905, 27.638336967405611 ], [ 85.31600138166462, 27.638375941469516 ], [ 85.316105129762434, 27.63842564876315 ], [ 85.316171131458589, 27.638469587981433 ], [ 85.315991815126381, 27.63869512614043 ], [ 85.315889298012991, 27.638816497233929 ], [ 85.315800662018901, 27.638938036865145 ], [ 85.315771348067983, 27.638963440497392 ], [ 85.315580534628324, 27.638824634618693 ] ] ], [ [ [ 85.318693699126442, 27.64154231505329 ], [ 85.318259946168453, 27.640903281353815 ], [ 85.317711060058087, 27.640609142162294 ], [ 85.317121301231964, 27.640380082671488 ], [ 85.317114816099007, 27.640377229434023 ], [ 85.316473995402305, 27.640060649077739 ], [ 85.316450943379465, 27.640043098363989 ], [ 85.316083388640479, 27.63962358437615 ], [ 85.315842768442479, 27.639801184922732 ], [ 85.315551130689897, 27.640051160252089 ], [ 85.315203403488908, 27.64066855402972 ], [ 85.315202284731299, 27.64067046392698 ], [ 85.315012587380565, 27.640982109943391 ], [ 85.315132756301509, 27.641644837512249 ], [ 85.315057724644831, 27.641655627512893 ], [ 85.318721714038148, 27.641655300838313 ], [ 85.318693699126442, 27.64154231505329 ] ], [ [ 85.316240374256793, 27.639992313864841 ], [ 85.316734430336979, 27.640369253308879 ], [ 85.316681507149468, 27.640425282152759 ], [ 85.31661194714691, 27.640509959865923 ], [ 85.316524036014457, 27.640584110814022 ], [ 85.316308319798793, 27.640390869246886 ], [ 85.316191998998306, 27.640280235311 ], [ 85.316052542587315, 27.640169320277014 ], [ 85.316041179769712, 27.64015578720403 ], [ 85.316240374256793, 27.639992313864841 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneıd": 46, "population": 0, "densitycap": 0.0, "avgIncome": null, "area": 1.677, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.318883526320789, 27.627413131455494 ], [ 85.31894073816477, 27.627033224683927 ], [ 85.318994693513531, 27.626656140041661 ], [ 85.319015301406907, 27.626358777543487 ], [ 85.319033133982572, 27.626032764821133 ], [ 85.319076860851737, 27.625904520248103 ], [ 85.319320885745896, 27.625704299995736 ], [ 85.319472146956926, 27.625477200360873 ], [ 85.319647684960913, 27.625133066707768 ], [ 85.319685356844019, 27.624770092596261 ], [ 85.31966520795136, 27.62440641793593 ], [ 85.319628910550989, 27.624048270927371 ], [ 85.319529613539999, 27.62339747146774 ], [ 85.31946652665772, 27.623110541265373 ], [ 85.319430733081447, 27.622929823098151 ], [ 85.319461740343968, 27.622792839201313 ], [ 85.319558279651773, 27.622361898446087 ], [ 85.31957178216031, 27.621898473328148 ], [ 85.319582267972109, 27.621211802226433 ], [ 85.319575710711675, 27.620799643870509 ], [ 85.319516798142502, 27.620449807704745 ], [ 85.319538168042556, 27.620312706959719 ], [ 85.319586370761812, 27.620101528137873 ], [ 85.319687801892528, 27.619770804399618 ], [ 85.319711967157119, 27.619450591240565 ], [ 85.319728747026488, 27.619193245115618 ], [ 85.319723605980997, 27.619032109944825 ], [ 85.319599748358712, 27.619143290986411 ], [ 85.319515968764904, 27.619218003738943 ], [ 85.319529232725301, 27.619405537105603 ], [ 85.31953604882969, 27.619628348368074 ], [ 85.319532175544751, 27.619659227489429 ], [ 85.319347748821059, 27.620289770008132 ], [ 85.319341794694722, 27.620490259676949 ], [ 85.319395351121798, 27.620768639657523 ], [ 85.319414887895391, 27.620903395759637 ], [ 85.319416848182769, 27.621101439700819 ], [ 85.319391400858407, 27.621440619896518 ], [ 85.31937679438056, 27.621995825149384 ], [ 85.319390630167717, 27.622273600326572 ], [ 85.31938154834414, 27.622426317169193 ], [ 85.31934614879566, 27.622632717251317 ], [ 85.319338950349149, 27.622656658569401 ], [ 85.319259227309757, 27.622838794706208 ], [ 85.319267133536144, 27.622976211019441 ], [ 85.31930509789369, 27.623167175324191 ], [ 85.319408024347226, 27.623582358015302 ], [ 85.319488653547694, 27.624068148662335 ], [ 85.319497452261416, 27.624173153016773 ], [ 85.319505740675666, 27.624258046379094 ], [ 85.31951345220692, 27.624569460185405 ], [ 85.319516374108915, 27.624882750172205 ], [ 85.319504520739628, 27.625031182474416 ], [ 85.319493720892851, 27.625100982500186 ], [ 85.319486960869227, 27.625124909414872 ], [ 85.319439061099999, 27.625239609506483 ], [ 85.319428260913824, 27.625259343760728 ], [ 85.319342142333269, 27.625384135644456 ], [ 85.319257846459152, 27.625501669765807 ], [ 85.319243677612135, 27.625517917269764 ], [ 85.319146177725784, 27.62561081742194 ], [ 85.318963416725651, 27.62577031268658 ], [ 85.31884834409955, 27.625948293531003 ], [ 85.318811009499441, 27.626569886852 ], [ 85.318705739467319, 27.627438003145507 ], [ 85.318631178896752, 27.62776245362344 ], [ 85.318595001656419, 27.6280090890582 ], [ 85.318883526320789, 27.627413131455494 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneıd": 47, "population": 0, "densitycap": 0.0, "avgIncome": null, "area": 0.682, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.310429424095403, 27.623386299444693 ], [ 85.310324523959736, 27.623502739031494 ], [ 85.310250469646391, 27.623657955422996 ], [ 85.310290305867483, 27.623717842785553 ], [ 85.310385033610714, 27.623800428688941 ], [ 85.310456701656136, 27.623851164697079 ], [ 85.310548025319591, 27.623843251191953 ], [ 85.31064738401983, 27.623830515484261 ], [ 85.310688108820528, 27.623831189363113 ], [ 85.310726487405674, 27.623843342295629 ], [ 85.310758550308918, 27.623865717314633 ], [ 85.310860650149252, 27.623964958933659 ], [ 85.311036282474547, 27.624166862601339 ], [ 85.311182177142626, 27.624370571659785 ], [ 85.31130541911719, 27.624567902349739 ], [ 85.311387358980781, 27.624714179036427 ], [ 85.311500874787754, 27.624889639022967 ], [ 85.311592283760262, 27.625057506725014 ], [ 85.311705728689489, 27.62523767151573 ], [ 85.311761669803388, 27.625386607899113 ], [ 85.311893558811377, 27.625487252467863 ], [ 85.311910590811948, 27.625503049186314 ], [ 85.311989473012858, 27.625592107799914 ], [ 85.312127738601092, 27.625748210275123 ], [ 85.312188539055271, 27.625739650352887 ], [ 85.312259449085843, 27.625729530339438 ], [ 85.312193693697125, 27.625632229986181 ], [ 85.312068302640427, 27.62542838641917 ], [ 85.311978743825193, 27.625324141086722 ], [ 85.311911811275195, 27.62520619521856 ], [ 85.311824165478527, 27.625074686832029 ], [ 85.311640726672309, 27.624758329271248 ], [ 85.311503670644896, 27.624535708723371 ], [ 85.311404440635556, 27.624380100407798 ], [ 85.311328667174308, 27.624254060425287 ], [ 85.311230564099489, 27.624122424370839 ], [ 85.311172229951765, 27.624028541526055 ], [ 85.311011208935085, 27.623809621825817 ], [ 85.31077227107501, 27.623604394395034 ], [ 85.310429424095403, 27.623386299444693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneıd": 18, "population": 0, "densitycap": 250.0, "avgIncome": null, "area": 2.091, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.322237068197765, 27.622255948889723 ], [ 85.322183685479203, 27.622256901243112 ], [ 85.322130482628154, 27.622261045100114 ], [ 85.322077687462766, 27.622268362716252 ], [ 85.32202552605554, 27.622278822756719 ], [ 85.321974221765316, 27.622292380430689 ], [ 85.321923994280894, 27.62230897768298 ], [ 85.32187505868032, 27.62232854344272 ], [ 85.321827624510064, 27.622350993927647 ], [ 85.321781894887621, 27.622376233002822 ], [ 85.321738065631905, 27.622404152592306 ], [ 85.321696324424664, 27.622434633141925 ], [ 85.321656850006917, 27.622467544131172 ], [ 85.321619811413527, 27.622502744632087 ], [ 85.321585367249384, 27.622540083912714 ], [ 85.321553665010228, 27.622579402082511 ], [ 85.321524840451062, 27.622620530776981 ], [ 85.321499017004811, 27.622663293878642 ], [ 85.321476305253711, 27.62270750827112 ], [ 85.321456802455771, 27.62275298462324 ], [ 85.321440592128198, 27.622799528199788 ], [ 85.321427743689767, 27.622846939695339 ], [ 85.321418312163459, 27.622895016087696 ], [ 85.321412337940799, 27.622943551507252 ], [ 85.321409846608802, 27.622992338118525 ], [ 85.321410848840344, 27.623041167010154 ], [ 85.321415340348352, 27.623089829089452 ], [ 85.321423301904133, 27.623138115977799 ], [ 85.321434699419584, 27.62318582090295 ], [ 85.321449484093094, 27.623232739584434 ], [ 85.32146759261849, 27.623278671108384 ], [ 85.321488947456004, 27.623323418787852 ], [ 85.321513457164286, 27.623366791005093 ], [ 85.321541016791869, 27.623408602032118 ], [ 85.321571508326542, 27.62344867282604 ], [ 85.321604801200721, 27.623486831795759 ], [ 85.321640752850485, 27.623522915536853 ], [ 85.321679209325964, 27.623556769531227 ], [ 85.321720005950723, 27.6235882488089 ], [ 85.321762968026775, 27.623617218568768 ], [ 85.321807911582766, 27.62364355475594 ], [ 85.32185464416176, 27.623667144592911 ], [ 85.321902965645393, 27.623687887062605 ], [ 85.321952669110885, 27.623705693340916 ], [ 85.322003541717109, 27.623720487177131 ], [ 85.322055365616094, 27.623732205220453 ], [ 85.322107918885933, 27.623740797291312 ], [ 85.3221609764812, 27.623746226596268 ], [ 85.322214311196646, 27.623748469885555 ], [ 85.322267694640217, 27.623747517552676 ], [ 85.322320898211174, 27.623743373675538 ], [ 85.322373694079033, 27.623736055998972 ], [ 85.322425856159285, 27.623725595858808 ], [ 85.322477161081565, 27.623712038047593 ], [ 85.322527389146273, 27.623695440622832 ], [ 85.322576325265402, 27.62367587465836 ], [ 85.322623759883641, 27.623653423939956 ], [ 85.322669489875821, 27.623628184606542 ], [ 85.322713319416707, 27.623600264738474 ], [ 85.322755060819645, 27.623569783894691 ], [ 85.322794535340293, 27.623536872600745 ], [ 85.322831573942025, 27.623501671789793 ], [ 85.322866018019823, 27.623464332199109 ], [ 85.322897720079396, 27.623425013724532 ], [ 85.322926544368812, 27.623383884735777 ], [ 85.322952367459777, 27.623341121355359 ], [ 85.322975078776139, 27.623296906704436 ], [ 85.32299458106732, 27.623251430118582 ], [ 85.323010790824767, 27.623204886337025 ], [ 85.323023638639498, 27.623157474668698 ], [ 85.323033069499161, 27.623109398138748 ], [ 85.32303904302367, 27.623060862619145 ], [ 85.323041533637948, 27.623012075947063 ], [ 85.323040530681382, 27.622963247034917 ], [ 85.323036038453466, 27.622914584975756 ], [ 85.323028076195214, 27.622866298147834 ], [ 85.323016678006738, 27.622818593322389 ], [ 85.323001892701171, 27.622771674778161 ], [ 85.322983783595504, 27.62272574342667 ], [ 85.322962428239421, 27.622680995951921 ], [ 85.322937918083156, 27.622637623968167 ], [ 85.322910358085863, 27.622595813199375 ], [ 85.322879866266007, 27.622555742684046 ], [ 85.322846573196102, 27.622517584008477 ], [ 85.322810621443452, 27.622481500572093 ], [ 85.32277216495963, 27.62244764688776 ], [ 85.322731368421231, 27.622416167920147 ], [ 85.322688406524762, 27.622387198465056 ], [ 85.322643463238521, 27.622360862572169 ], [ 85.322596731014798, 27.622337273013944 ], [ 85.322548409965904, 27.62231653080271 ], [ 85.322498707007185, 27.622298724758121 ], [ 85.322447834971072, 27.622283931126915 ], [ 85.322396011695815, 27.62227221325638 ], [ 85.322343459092593, 27.622263621323107 ], [ 85.322290402195492, 27.62225819211821 ], [ 85.322237068197765, 27.622255948889723 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneıd": 48, "population": 0, "densitycap": 0.0, "avgIncome": null, "area": 0.671, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.320291907005839, 27.634017655818205 ], [ 85.320271235537248, 27.634253692986906 ], [ 85.320414250002671, 27.634301138887505 ], [ 85.32067918799109, 27.634510314118746 ], [ 85.320941003766066, 27.634704525967191 ], [ 85.32128458659524, 27.634592270321239 ], [ 85.321558892045104, 27.634486219431277 ], [ 85.321642617205256, 27.634458381913568 ], [ 85.321665082522543, 27.634426711696154 ], [ 85.321418695269145, 27.634345141000956 ], [ 85.32095853163861, 27.634143720850791 ], [ 85.320933149571431, 27.634125708076422 ], [ 85.320655440237019, 27.633821608304899 ], [ 85.320443005082709, 27.6336745377778 ], [ 85.320352464106122, 27.633661240189181 ], [ 85.320291907005839, 27.634017655818205 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneıd": 49, "population": 0, "densitycap": 0.0, "avgIncome": null, "area": 0.596, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.319514545227563, 27.619197900688054 ], [ 85.319598473867188, 27.619086847729832 ], [ 85.319720628989131, 27.618938802419436 ], [ 85.319846388915963, 27.618360627464622 ], [ 85.320097648300617, 27.61741442593722 ], [ 85.320137563234965, 27.617126620170268 ], [ 85.320155987061753, 27.616890247048413 ], [ 85.31988467841299, 27.616767398491234 ], [ 85.319699983454797, 27.616727204940432 ], [ 85.319802475019401, 27.616841152292 ], [ 85.319854275090691, 27.616907752221252 ], [ 85.319895086183678, 27.617000298059068 ], [ 85.319908086358865, 27.617080898044524 ], [ 85.31990945168647, 27.617132335600385 ], [ 85.319900651863279, 27.617214235623454 ], [ 85.319898325887735, 27.617229862480386 ], [ 85.319600322347284, 27.618401561039409 ], [ 85.319520068389181, 27.618879107465816 ], [ 85.319502912276263, 27.61906323965697 ], [ 85.319514545227563, 27.619197900688054 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneıd": 50, "population": 0, "densitycap": 0.0, "avgIncome": null, "area": 0.191, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.316052542587315, 27.640169320277 ], [ 85.316191998998292, 27.640280235310986 ], [ 85.316308319798779, 27.640390869246872 ], [ 85.316524036014471, 27.640584110814011 ], [ 85.31661194714691, 27.64050995986592 ], [ 85.316681507149468, 27.640425282152737 ], [ 85.316734430336965, 27.640369253308883 ], [ 85.316240374256793, 27.639992313864834 ], [ 85.316041179769712, 27.64015578720403 ], [ 85.316052542587315, 27.640169320277 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneıd": 51, "population": 0, "densitycap": 0.0, "avgIncome": null, "area": 0.173, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.315800662018887, 27.638938036865149 ], [ 85.315889298012976, 27.638816497233915 ], [ 85.315991815126381, 27.63869512614043 ], [ 85.316171131458574, 27.638469587981408 ], [ 85.316105129762434, 27.638425648763132 ], [ 85.316001381664606, 27.638375941469516 ], [ 85.315931785571891, 27.638336967405614 ], [ 85.31558053462831, 27.638824634618658 ], [ 85.315771348067983, 27.638963440497385 ], [ 85.315800662018887, 27.638938036865149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneıd": 52, "population": 0, "densitycap": 0.0, "avgIncome": null, "area": 0.285, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.311025554364235, 27.635033510144165 ], [ 85.310917422489069, 27.634993038204527 ], [ 85.310896692727297, 27.634836166667178 ], [ 85.310825829696597, 27.634779662446515 ], [ 85.31080668571272, 27.634670208074592 ], [ 85.310689711846535, 27.634602838159115 ], [ 85.31056481372552, 27.634520336805839 ], [ 85.31052564603344, 27.634588474556278 ], [ 85.310496491868349, 27.634678793485385 ], [ 85.310436505804731, 27.634968632012576 ], [ 85.31078061463775, 27.635162416026187 ], [ 85.310934035145621, 27.635267323840701 ], [ 85.311011775680171, 27.635328033342951 ], [ 85.311183380422349, 27.635152896785833 ], [ 85.311025554364235, 27.635033510144165 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneıd": 53, "population": 0, "densitycap": 0.0, "avgIncome": null, "area": 0.201, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.314611937443004, 27.640654299165789 ], [ 85.314680183098247, 27.640555792066166 ], [ 85.31474644418681, 27.64046235499514 ], [ 85.314684197257378, 27.640418297705448 ], [ 85.314746528407397, 27.640332454144101 ], [ 85.314616421908326, 27.640251913685169 ], [ 85.314765022020353, 27.640058866159954 ], [ 85.314705514385338, 27.640022684840371 ], [ 85.314637447892309, 27.639985147677645 ], [ 85.314570350770595, 27.639946550090929 ], [ 85.314269889472527, 27.640362512538573 ], [ 85.314378119569895, 27.640421368915238 ], [ 85.314430405053002, 27.640493323276861 ], [ 85.314429676327663, 27.640540860196122 ], [ 85.314492954480514, 27.640579835944891 ], [ 85.314611937443004, 27.640654299165789 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneıd": 54, "population": 0, "densitycap": 0.0, "avgIncome": null, "area": 0.313, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.315202207742828, 27.635231912398158 ], [ 85.315728499389778, 27.635228117886356 ], [ 85.315733299964364, 27.635163649714546 ], [ 85.315730371385854, 27.635105879917806 ], [ 85.315715693094759, 27.635068344181423 ], [ 85.315690565115446, 27.634966155023783 ], [ 85.315646478358047, 27.634856943299337 ], [ 85.31558719344423, 27.634744150806331 ], [ 85.315516054935443, 27.634658383334973 ], [ 85.31544058390655, 27.634606524501741 ], [ 85.315344801931502, 27.634635925996317 ], [ 85.315268082693507, 27.634665559039998 ], [ 85.315213874660188, 27.634719238479128 ], [ 85.315155489895815, 27.634796640055988 ], [ 85.31513450244006, 27.63492204185658 ], [ 85.315166630823768, 27.635065069724039 ], [ 85.315202207742828, 27.635231912398158 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneıd": 55, "population": 0, "densitycap": 0.0, "avgIncome": null, "area": 0.21, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.313192039363202, 27.635766135685785 ], [ 85.313498296359455, 27.635688354035274 ], [ 85.313380968833897, 27.635133357985993 ], [ 85.31303674387091, 27.635200489115888 ], [ 85.313192039363202, 27.635766135685785 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneıd": 56, "population": 0, "densitycap": 0.0, "avgIncome": null, "area": 0.34, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.321803454229666, 27.618498760230878 ], [ 85.322203955630897, 27.618737939023401 ], [ 85.322650048579206, 27.618237308390416 ], [ 85.322211376202404, 27.618001065362833 ], [ 85.321803454229666, 27.618498760230878 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneıd": 57, "population": 0, "densitycap": 0.0, "avgIncome": null, "area": 0.058, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.321843441580427, 27.620002037729797 ], [ 85.321985073684473, 27.62009035285455 ], [ 85.32211505573683, 27.61994249491342 ], [ 85.321811213945878, 27.619740144756246 ], [ 85.321843441580427, 27.620002037729797 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneıd": 58, "population": 0, "densitycap": 0.0, "avgIncome": null, "area": 0.136, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.32215514122916, 27.62018920023802 ], [ 85.322687623060773, 27.620525066260043 ], [ 85.322827238440837, 27.620370531846895 ], [ 85.32227744729316, 27.620044645436288 ], [ 85.32215514122916, 27.62018920023802 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneıd": 20, "population": 0, "densitycap": 250.0, "avgIncome": "midIncome", "area": 3.057, "luf": "COMMERCIAL AND RESIDENTIAL", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.324709553667944, 27.63554356689701 ], [ 85.324119572592537, 27.634910632187907 ], [ 85.323930098897009, 27.634521656322043 ], [ 85.323484215659519, 27.634291958896689 ], [ 85.322227635626533, 27.634062261471314 ], [ 85.32072700990112, 27.633699697328048 ], [ 85.320750360103673, 27.633722910055688 ], [ 85.320761856687341, 27.633734338948052 ], [ 85.320842794348096, 27.633814799960387 ], [ 85.321040588049925, 27.634028815153833 ], [ 85.321474920336385, 27.634219321845343 ], [ 85.322098933279833, 27.634423739835615 ], [ 85.322100175340793, 27.634424157719994 ], [ 85.322800099060075, 27.634665883913691 ], [ 85.322815218133016, 27.634672935966677 ], [ 85.323341964967312, 27.634990427120215 ], [ 85.323355548265383, 27.635000897519202 ], [ 85.3236766474826, 27.635314780855794 ], [ 85.323680020893434, 27.63531831440373 ], [ 85.324201332483582, 27.635903896951348 ], [ 85.324781268798787, 27.636314095657507 ], [ 85.325429797243189, 27.636634796455258 ], [ 85.325829083456327, 27.636796917616124 ], [ 85.325399975466766, 27.636090150821051 ], [ 85.324709553667944, 27.63554356689701 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneıd": 21, "population": 556, "densitycap": 0.0, "avgIncome": "midIncome", "area": 1.381, "luf": "COMMERCIAL AND RESIDENTIAL", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.321097059588823, 27.626450885587527 ], [ 85.320774307752927, 27.626993486533816 ], [ 85.32040008319575, 27.627807178992274 ], [ 85.320194136107517, 27.628180037635889 ], [ 85.319311385500455, 27.629816161517706 ], [ 85.319031559119637, 27.630032066803967 ], [ 85.318804413650994, 27.630226806038625 ], [ 85.318383475710064, 27.630585075604174 ], [ 85.318485244070018, 27.630681386183333 ], [ 85.318539246325585, 27.630756378849849 ], [ 85.318771641298994, 27.630529548747553 ], [ 85.318938157794847, 27.630374176097643 ], [ 85.319025652029822, 27.630320830522912 ], [ 85.319457595143689, 27.629926754219458 ], [ 85.319878251877824, 27.629292952721997 ], [ 85.319922700809613, 27.629220284091577 ], [ 85.320978832703346, 27.627291088552976 ], [ 85.321188007335905, 27.626902295152334 ], [ 85.321358538301951, 27.626729711964007 ], [ 85.321097059588823, 27.626450885587527 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneıd": 22, "population": 1107, "densitycap": 0.0, "avgIncome": "midIncome", "area": 1.154, "luf": "COMMERCIAL AND RESIDENTIAL", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.318728373583824, 27.630117404539359 ], [ 85.318938935611385, 27.62992111924595 ], [ 85.319200948076102, 27.629722098820249 ], [ 85.319460411947844, 27.629252259286787 ], [ 85.319733176033665, 27.628713357766362 ], [ 85.320282309792361, 27.627716578803525 ], [ 85.320634862224594, 27.626939525513549 ], [ 85.320969488156479, 27.626376300068898 ], [ 85.32075319406448, 27.626310707999401 ], [ 85.320570630807836, 27.626620459781485 ], [ 85.319149757399586, 27.629338531043718 ], [ 85.319090924939573, 27.629472252835413 ], [ 85.319026013934618, 27.629612556105911 ], [ 85.318939747544675, 27.629683386467381 ], [ 85.318830702244625, 27.629777899313353 ], [ 85.318753360015492, 27.629851499813505 ], [ 85.31860469266411, 27.629996111551662 ], [ 85.318445480923103, 27.630145612582535 ], [ 85.318198840195706, 27.630573830387434 ], [ 85.318268992606392, 27.630546418212354 ], [ 85.318728373583824, 27.630117404539359 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneıd": 23, "population": 443, "densitycap": 0.0, "avgIncome": "midIncome", "area": 0.551, "luf": "COMMERCIAL AND RESIDENTIAL", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.317439849352951, 27.624416513512351 ], [ 85.31768487776246, 27.624323214070269 ], [ 85.317801656858293, 27.623918667739535 ], [ 85.317882646853946, 27.623662938249229 ], [ 85.317979796826279, 27.623446209940347 ], [ 85.318101131085584, 27.62318201447825 ], [ 85.318201220307444, 27.622992186806052 ], [ 85.31829875545769, 27.622822232980312 ], [ 85.318345825748366, 27.622740213339721 ], [ 85.318631295247002, 27.622480992303334 ], [ 85.318532378818261, 27.622428876215285 ], [ 85.318397669771329, 27.622318268912018 ], [ 85.318293301500148, 27.622449344020421 ], [ 85.318128133243562, 27.622638097618015 ], [ 85.31802855930141, 27.622737042040693 ], [ 85.317940280771381, 27.622976972646018 ], [ 85.317805486562918, 27.623295864957754 ], [ 85.317673584778916, 27.623632699214827 ], [ 85.317439849352951, 27.624416513512351 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneıd": 26, "population": 1049, "densitycap": 250.0, "avgIncome": "midIncome", "area": 3.796, "luf": "CITY CENTER", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.321097059588837, 27.626450885587545 ], [ 85.321358538301951, 27.626729711964018 ], [ 85.321548042561005, 27.626537926234001 ], [ 85.323550929804313, 27.625392068670386 ], [ 85.323514384414281, 27.6252005175729 ], [ 85.32347996519249, 27.625105597603916 ], [ 85.32339882922831, 27.624938236678727 ], [ 85.323311291162469, 27.624798750173738 ], [ 85.323251107212542, 27.624727477411138 ], [ 85.323034088630337, 27.624553149283035 ], [ 85.322438481760841, 27.624264276515955 ], [ 85.322282978237396, 27.624226938206711 ], [ 85.322011865251383, 27.624231823515323 ], [ 85.321732350926411, 27.624179020039339 ], [ 85.321752608939192, 27.624385510748166 ], [ 85.32161154394403, 27.624833393086522 ], [ 85.321618273172234, 27.624981433848276 ], [ 85.321612041024807, 27.625011144174319 ], [ 85.321529616289581, 27.625174276164827 ], [ 85.321303736585278, 27.625325399933292 ], [ 85.321163075720136, 27.625700496170339 ], [ 85.321120339485077, 27.626398529102321 ], [ 85.321111607532401, 27.626426535261697 ], [ 85.321097059588837, 27.626450885587545 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneıd": 67, "population": 0, "densitycap": 350.0, "avgIncome": "lowIncomeB", "area": 12.253, "luf": "RESIDENTIAL (HIGH DENSITY)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.309128407419934, 27.639075971602551 ], [ 85.307391919481674, 27.639348749012349 ], [ 85.306501864436186, 27.641493817371408 ], [ 85.307532614461834, 27.641577565743059 ], [ 85.308182456022735, 27.64159207716585 ], [ 85.310754582856376, 27.641649484680453 ], [ 85.312517056603454, 27.641499939018242 ], [ 85.312588382238957, 27.640821266166842 ], [ 85.312501141415737, 27.640672438277303 ], [ 85.312269803830418, 27.640365105437063 ], [ 85.31203608200633, 27.640169396737104 ], [ 85.31149404154921, 27.640140809915838 ], [ 85.311187495073611, 27.639939676722083 ], [ 85.31094522808813, 27.639899655176009 ], [ 85.310752828028953, 27.639784755093455 ], [ 85.310394507432335, 27.639530100093786 ], [ 85.310188204302747, 27.639580939137296 ], [ 85.309900957697707, 27.639557222008964 ], [ 85.309128407419934, 27.639075971602551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneıd": 59, "population": 0, "densitycap": 0.0, "avgIncome": null, "area": 18.462, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.308572018143209, 27.620586601437672 ], [ 85.308277861972755, 27.621827406379342 ], [ 85.308229214204047, 27.622811867217592 ], [ 85.308511504702665, 27.624069015427217 ], [ 85.309377844890022, 27.62558209059085 ], [ 85.310179070440867, 27.626375585223744 ], [ 85.31046751400136, 27.627232739571941 ], [ 85.310514068647095, 27.628257258845174 ], [ 85.310894156553189, 27.627992111685888 ], [ 85.311247866920979, 27.627589407676126 ], [ 85.311566899682177, 27.627397618041737 ], [ 85.311801471728842, 27.627140003908039 ], [ 85.312048905938852, 27.626804246217091 ], [ 85.312030613978919, 27.626539513410027 ], [ 85.311925240681148, 27.626295029871574 ], [ 85.311741983675006, 27.626098656742634 ], [ 85.311403696730054, 27.62582277652859 ], [ 85.311163448577375, 27.625569233607308 ], [ 85.310569388502529, 27.624766112970423 ], [ 85.310392798539581, 27.624452735604635 ], [ 85.310326149490535, 27.624334459396547 ], [ 85.310125177117015, 27.624369499787463 ], [ 85.309869452742646, 27.624304285061328 ], [ 85.309719287113907, 27.624100073516715 ], [ 85.309601323388421, 27.623887172962558 ], [ 85.309439299198615, 27.623432076462443 ], [ 85.309434120565044, 27.623408988396033 ], [ 85.309434511567744, 27.623385329905478 ], [ 85.309500050357613, 27.622909688957527 ], [ 85.309583051663822, 27.622606576949828 ], [ 85.309602457695334, 27.62220762702831 ], [ 85.309512373955315, 27.622068018520974 ], [ 85.309498742163484, 27.622035316861929 ], [ 85.309450842472671, 27.621817916549169 ], [ 85.309449304371071, 27.621783742874808 ], [ 85.309459374218406, 27.621751050307559 ], [ 85.309563173968954, 27.621547050792515 ], [ 85.309599829160163, 27.621507271912911 ], [ 85.309768589693491, 27.621403252486814 ], [ 85.310028349097436, 27.621223640383175 ], [ 85.310124734594041, 27.621062888828028 ], [ 85.310157105495023, 27.620875390157593 ], [ 85.310126045188753, 27.620697358299758 ], [ 85.310046703651309, 27.620496665073109 ], [ 85.310040793309597, 27.620474646268647 ], [ 85.31000537904788, 27.620222523535954 ], [ 85.310015778808008, 27.620048823979417 ], [ 85.310028117330944, 27.620006356985535 ], [ 85.310139377075288, 27.619806611293907 ], [ 85.310267491283383, 27.619631568313988 ], [ 85.310414781093343, 27.619515710140178 ], [ 85.31052704942779, 27.619438191288229 ], [ 85.310563162737978, 27.619377587594471 ], [ 85.310554006899437, 27.619268672027484 ], [ 85.310501149385416, 27.619165669750121 ], [ 85.310320375620663, 27.618971303677345 ], [ 85.310054718737774, 27.618670462123369 ], [ 85.309853819185889, 27.61843346198599 ], [ 85.309606107680125, 27.618018476998035 ], [ 85.309570107818629, 27.617889976468174 ], [ 85.309566638335482, 27.617862406091589 ], [ 85.309636130571491, 27.617672065925252 ], [ 85.309797931198077, 27.617515366253304 ], [ 85.30981698435383, 27.617500897694942 ], [ 85.309838928860572, 27.617491368762767 ], [ 85.309989528431103, 27.617446468310995 ], [ 85.310157805637019, 27.617417852524252 ], [ 85.310255773790473, 27.617343910571375 ], [ 85.310359472952072, 27.617133151808648 ], [ 85.310686647539171, 27.61664228659512 ], [ 85.310241524117032, 27.616633569209629 ], [ 85.30953036622644, 27.616662927511278 ], [ 85.309399092741529, 27.616661327711238 ], [ 85.308257226443999, 27.616647406806493 ], [ 85.308155667462074, 27.61694143123054 ], [ 85.308015402593099, 27.617325369648409 ], [ 85.307875146499882, 27.617887511287702 ], [ 85.309113294435406, 27.61910410259296 ], [ 85.308572018143209, 27.620586601437672 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneıd": 62, "population": 0, "densitycap": 0.0, "avgIncome": null, "area": 0.74, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.315402470641544, 27.622575213558264 ], [ 85.314469133553914, 27.622561078241009 ], [ 85.314458471530159, 27.623285175631548 ], [ 85.315406457097339, 27.62329004383669 ], [ 85.315402470641544, 27.622575213558264 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneıd": 63, "population": 0, "densitycap": 0.0, "avgIncome": null, "area": 3.373, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.317185251700238, 27.626314587646405 ], [ 85.315777925013805, 27.626297504131351 ], [ 85.315741739051631, 27.628661198389558 ], [ 85.316782909482043, 27.628785471209842 ], [ 85.316880659027404, 27.628728906148794 ], [ 85.316891921448672, 27.628639638211041 ], [ 85.317185251700238, 27.626314587646405 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneıd": 11, "population": 2367, "densitycap": 350.0, "avgIncome": null, "area": 9.009, "luf": "HISTORICAL PRESERVATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.319513477641308, 27.624572187277547 ], [ 85.31951345220692, 27.624569460185405 ], [ 85.319513302536322, 27.624563416054642 ], [ 85.319513477641308, 27.624572187277547 ] ] ], [ [ [ 85.319516374108915, 27.624882750172205 ], [ 85.319516319549095, 27.624876900168701 ], [ 85.319516282912971, 27.624877392482126 ], [ 85.319516374108915, 27.624882750172205 ] ] ], [ [ [ 85.319026013934632, 27.629612556105922 ], [ 85.319090924939587, 27.629472252835431 ], [ 85.3191497573996, 27.629338531043761 ], [ 85.32057063080785, 27.626620459781524 ], [ 85.32075319406448, 27.62631070799938 ], [ 85.320969488156479, 27.626376300068905 ], [ 85.321011873220939, 27.625684018325391 ], [ 85.321167204960688, 27.625262181066095 ], [ 85.32140863998211, 27.625088410178964 ], [ 85.321465708878449, 27.62497141908592 ], [ 85.321459197397473, 27.624828164316284 ], [ 85.321606274308763, 27.624348946360566 ], [ 85.321582735126171, 27.624202769146123 ], [ 85.321509096554067, 27.624135267083304 ], [ 85.32121830791651, 27.624032931045235 ], [ 85.321203862302426, 27.62402060716272 ], [ 85.320920587379689, 27.623710005910954 ], [ 85.320656929736174, 27.623760226374213 ], [ 85.320284721182773, 27.623968663165233 ], [ 85.319670787272813, 27.624209058621506 ], [ 85.319646634171633, 27.624223150379063 ], [ 85.319665207951346, 27.624406417935905 ], [ 85.319684919369621, 27.62476219647521 ], [ 85.319647684960898, 27.625133066707786 ], [ 85.319472146956926, 27.625477200360869 ], [ 85.319320885745896, 27.625704299995736 ], [ 85.319076860851737, 27.625904520248103 ], [ 85.319033133982572, 27.626032764821133 ], [ 85.319015301406907, 27.626358777543487 ], [ 85.318994693513531, 27.626656140041661 ], [ 85.31894073816477, 27.627033224683927 ], [ 85.318883526320789, 27.627413131455494 ], [ 85.318595001656419, 27.6280090890582 ], [ 85.318494348036097, 27.628620249484921 ], [ 85.318467161777491, 27.629021963821742 ], [ 85.318514640391044, 27.62939129419129 ], [ 85.318528112614672, 27.629525897865722 ], [ 85.318536886566662, 27.629613560041406 ], [ 85.318529226901305, 27.629729430640708 ], [ 85.318510056587556, 27.629868181049602 ], [ 85.318504072497319, 27.629943074898609 ], [ 85.31848584972991, 27.630020721745382 ], [ 85.318445480923117, 27.630145612582524 ], [ 85.318753360015492, 27.629851499813526 ], [ 85.318830702244625, 27.629777899313346 ], [ 85.318939747544675, 27.629683386467399 ], [ 85.319026013934632, 27.629612556105922 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneıd": 27, "population": 1391, "densitycap": 100.0, "avgIncome": "highIncome", "area": 4.988, "luf": "RESIDENTIAL (LOW DENSITY)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.319516798142502, 27.620449807704745 ], [ 85.319575710711675, 27.620799643870509 ], [ 85.319582267972109, 27.621211802226433 ], [ 85.31957178216031, 27.621898473328148 ], [ 85.319558279651773, 27.622361898446087 ], [ 85.319461740343968, 27.622792839201313 ], [ 85.319430733081447, 27.622929823098151 ], [ 85.31946652665772, 27.623110541265373 ], [ 85.319529613539999, 27.62339747146774 ], [ 85.319628910550989, 27.624048270927371 ], [ 85.319631770573523, 27.624076490875758 ], [ 85.320208606467602, 27.623851384067336 ], [ 85.320587429290114, 27.623639243304464 ], [ 85.320611985326465, 27.623630355470951 ], [ 85.32086041005202, 27.623583036542485 ], [ 85.320774331044305, 27.623212044302321 ], [ 85.320667951762175, 27.623021187122809 ], [ 85.320663840228562, 27.623012265434255 ], [ 85.320487969828818, 27.622536703435809 ], [ 85.320484155040134, 27.622515571813583 ], [ 85.320483886894507, 27.622152470119659 ], [ 85.320491485363306, 27.622122923171542 ], [ 85.320838265010096, 27.621485132726715 ], [ 85.320912477845098, 27.621348640768648 ], [ 85.320919819366623, 27.621337840037103 ], [ 85.321323275142973, 27.620852966626398 ], [ 85.321188864157122, 27.620766859065462 ], [ 85.31967898078787, 27.619799566357081 ], [ 85.319625656410238, 27.619973434631962 ], [ 85.319586370761812, 27.620101528137873 ], [ 85.319538168042556, 27.620312706959719 ], [ 85.319516798142502, 27.620449807704745 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneıd": 3, "population": 0, "densitycap": 200.0, "avgIncome": "midIncome", "area": 47.182, "luf": "RESIDENTIAL (MODERATE DENSITY)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.318704698905634, 27.620313711467674 ], [ 85.318730889390849, 27.620321033123119 ], [ 85.318870354555614, 27.620386613430785 ], [ 85.318926190478749, 27.620430738740378 ], [ 85.318979438894317, 27.620483646145129 ], [ 85.319003263657606, 27.620489773074194 ], [ 85.319088825717046, 27.620477785749163 ], [ 85.319091325724941, 27.620368385749469 ], [ 85.319091372234141, 27.620366858733039 ], [ 85.319094153895051, 27.620293783907847 ], [ 85.319095072240728, 27.620269658733363 ], [ 85.31909906735082, 27.620245120166128 ], [ 85.31914916733416, 27.62007332016648 ], [ 85.319149516408132, 27.620072149024615 ], [ 85.31915385089053, 27.620057915518029 ], [ 85.319282371901934, 27.619618734560657 ], [ 85.319249760954591, 27.619050425221523 ], [ 85.319249936016433, 27.619033823970742 ], [ 85.319256634221148, 27.618962143218582 ], [ 85.319269232436213, 27.618826762467002 ], [ 85.319270195452106, 27.618819378649004 ], [ 85.319309995189798, 27.618582580215921 ], [ 85.319352794921272, 27.618327881820576 ], [ 85.319354260740838, 27.618320737910643 ], [ 85.31943566072303, 27.617985437912186 ], [ 85.319436394366875, 27.617982594412236 ], [ 85.319513565158317, 27.617700267038124 ], [ 85.319635544598782, 27.617236645885413 ], [ 85.319656932399468, 27.617096366092635 ], [ 85.319650334068029, 27.617055456421788 ], [ 85.319618198021232, 27.617014138664086 ], [ 85.31952372818867, 27.61690996974383 ], [ 85.319518135670791, 27.61690331571458 ], [ 85.319409735611586, 27.616763915722821 ], [ 85.319408634101464, 27.61676247556586 ], [ 85.31937653538327, 27.616719803814785 ], [ 85.319337542642117, 27.616703020521289 ], [ 85.311900915749362, 27.616512620032623 ], [ 85.31202519547756, 27.616534314097919 ], [ 85.312002482738549, 27.616637554420308 ], [ 85.311967651812338, 27.61682674003513 ], [ 85.311951187805349, 27.616866650418441 ], [ 85.311874260359573, 27.616980516418362 ], [ 85.311842738241623, 27.617011920200692 ], [ 85.311800480182583, 27.61703083346956 ], [ 85.31158483666205, 27.617085609979039 ], [ 85.311557735411995, 27.617089729871292 ], [ 85.311272136533702, 27.617105082098234 ], [ 85.311041942353611, 27.617132601056895 ], [ 85.310854603072059, 27.617375645845929 ], [ 85.310838517303509, 27.617392644375503 ], [ 85.310795575613156, 27.617429863015829 ], [ 85.310661088046771, 27.617626407594202 ], [ 85.310629822336168, 27.617657344223776 ], [ 85.310477872236802, 27.617760728835705 ], [ 85.310437479147879, 27.617779107493782 ], [ 85.310272235260555, 27.617823384763216 ], [ 85.310205117814178, 27.617902614228516 ], [ 85.310208901910059, 27.617955963945047 ], [ 85.310335409726122, 27.618130106683754 ], [ 85.310489305642392, 27.618308711919823 ], [ 85.31068717050303, 27.618523085338524 ], [ 85.311007081027881, 27.618759390662422 ], [ 85.311033254409423, 27.618785899819269 ], [ 85.311190953444552, 27.619007857225981 ], [ 85.311208085494215, 27.619045887349721 ], [ 85.311208836294099, 27.619086859482813 ], [ 85.311162066589745, 27.619335027908434 ], [ 85.31115093774423, 27.619365911976576 ], [ 85.310963100483065, 27.619708031073966 ], [ 85.310951371055083, 27.619725288576795 ], [ 85.310740315396345, 27.619981015072451 ], [ 85.310622056998412, 27.620213090246363 ], [ 85.31069212682398, 27.620294800502862 ], [ 85.310713478118856, 27.620332987655743 ], [ 85.310717382278284, 27.620375506551994 ], [ 85.310692821916064, 27.620576111020295 ], [ 85.310619140169678, 27.621177924341755 ], [ 85.310610968055443, 27.621207278074397 ], [ 85.310594334443451, 27.62123364312475 ], [ 85.310476837032979, 27.621372339963791 ], [ 85.310369645474537, 27.621520555015149 ], [ 85.310358729621058, 27.621533502675987 ], [ 85.310244966851528, 27.621649988095609 ], [ 85.310165254488822, 27.621761906177092 ], [ 85.310104324965906, 27.621866835021478 ], [ 85.31010290663059, 27.621959193360848 ], [ 85.310120810717137, 27.62215497893796 ], [ 85.310121216931222, 27.622165680174827 ], [ 85.310116147816714, 27.622495764919311 ], [ 85.310142710175384, 27.622835818082624 ], [ 85.310142932493406, 27.622847734063662 ], [ 85.310118235715095, 27.623454620646488 ], [ 85.310163539776951, 27.623534611902414 ], [ 85.310196319370306, 27.623580747354868 ], [ 85.310254586076908, 27.623476266903989 ], [ 85.310265255407188, 27.623460378192171 ], [ 85.310370155560165, 27.623343938650539 ], [ 85.310385929505415, 27.623330797717458 ], [ 85.310405217007897, 27.62332214030047 ], [ 85.3117800269995, 27.622910611022004 ], [ 85.316522408286588, 27.620788098119782 ], [ 85.316538411820318, 27.620782843296343 ], [ 85.318677296766268, 27.620315156083166 ], [ 85.318704698905634, 27.620313711467674 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneıd": 24, "population": 273, "densitycap": 250.0, "avgIncome": "midIncome", "area": 3.981, "luf": "COMMERCIAL AND RESIDENTIAL", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.317846419001199, 27.621905460289547 ], [ 85.317692934611571, 27.62185781225374 ], [ 85.317294800569599, 27.621841536109926 ], [ 85.316410551764008, 27.622099801426 ], [ 85.316138102197911, 27.622268193440711 ], [ 85.316019816744273, 27.622466000144179 ], [ 85.315930980900234, 27.622820049126485 ], [ 85.316076182942183, 27.623487331289553 ], [ 85.316310269355725, 27.623814946527833 ], [ 85.316694256059023, 27.624112435871233 ], [ 85.316973030417572, 27.624254247034035 ], [ 85.317211442137705, 27.624337734253267 ], [ 85.317234649632255, 27.624345270045612 ], [ 85.317295592539054, 27.624366640550544 ], [ 85.317372318955591, 27.624112076006522 ], [ 85.317529056681082, 27.623590732542404 ], [ 85.317889109790457, 27.622681354312114 ], [ 85.317904805136422, 27.622657176226369 ], [ 85.318009915488403, 27.62255299028547 ], [ 85.318170531630628, 27.622369535543911 ], [ 85.31828328694111, 27.622228603561908 ], [ 85.318188314529351, 27.622156671324319 ], [ 85.317846419001199, 27.621905460289547 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneıd": 31, "population": 0, "densitycap": 50.0, "avgIncome": "lowIncomeA", "area": 14.611, "luf": "AGRICULTURE", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.305856627213387, 27.627462260632907 ], [ 85.305140511710746, 27.627313632887049 ], [ 85.305127000097499, 27.628759375505609 ], [ 85.305613418174758, 27.630759094267731 ], [ 85.305636317676587, 27.631567940640377 ], [ 85.305647551002238, 27.631964719303468 ], [ 85.305411340036372, 27.632717433182513 ], [ 85.305101000572861, 27.633950170495854 ], [ 85.305195826520034, 27.634579469963466 ], [ 85.307479977038994, 27.634084683815601 ], [ 85.307039922435465, 27.633848689162143 ], [ 85.306706131816028, 27.633428436057269 ], [ 85.306598655475497, 27.632957778148441 ], [ 85.306789330349289, 27.632203860323365 ], [ 85.306999753605254, 27.631942959167901 ], [ 85.307398782911349, 27.631621729931144 ], [ 85.307178544618182, 27.631261502022646 ], [ 85.307218758685295, 27.629849008787371 ], [ 85.307258764471143, 27.628836266117517 ], [ 85.307506711700995, 27.628056025868663 ], [ 85.307714098861965, 27.627448003848983 ], [ 85.307712314425061, 27.627022945039009 ], [ 85.307709414880335, 27.626447385447328 ], [ 85.306464788541035, 27.627127897166861 ], [ 85.305856627213387, 27.627462260632907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneıd": 68, "population": 0, "densitycap": 350.0, "avgIncome": "lowIncomeB", "area": 20.242, "luf": "RESIDENTIAL (HIGH DENSITY)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.303844521454266, 27.617179066237355 ], [ 85.303571229492235, 27.617991750229702 ], [ 85.303362664573839, 27.61852395036632 ], [ 85.303325297794302, 27.619276626892372 ], [ 85.303312321317662, 27.619538007383337 ], [ 85.303341524430692, 27.620045084952903 ], [ 85.30342938943258, 27.621570742381664 ], [ 85.305508665769139, 27.621172858217577 ], [ 85.306023680744275, 27.621058021179948 ], [ 85.306576795732099, 27.621011582265215 ], [ 85.306886331637827, 27.620786950517868 ], [ 85.307207576650555, 27.620553819655235 ], [ 85.307239020060564, 27.619270739363003 ], [ 85.30770174560466, 27.618305613682036 ], [ 85.307875146499882, 27.617887511287702 ], [ 85.308015402593099, 27.617325369648409 ], [ 85.308257226443999, 27.616647406806493 ], [ 85.306515360778462, 27.616626152985752 ], [ 85.304111673265538, 27.616596787856061 ], [ 85.303844521454266, 27.617179066237355 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneıd": 43, "population": 0, "densitycap": 0.0, "avgIncome": null, "area": 22.13, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.30342938943258, 27.621570742381664 ], [ 85.303470542979909, 27.622285310791217 ], [ 85.303585613279694, 27.623594235451531 ], [ 85.303772602516901, 27.624155203163053 ], [ 85.303844521454252, 27.624529181637438 ], [ 85.305140511710746, 27.627313632887049 ], [ 85.305856627213387, 27.627462260632907 ], [ 85.306464788541035, 27.627127897166861 ], [ 85.307709414880335, 27.626447385447328 ], [ 85.307272448895674, 27.623279245198496 ], [ 85.306991586452213, 27.622738559549568 ], [ 85.306929017044737, 27.622438585512484 ], [ 85.307091990602729, 27.622034978606614 ], [ 85.307156599171989, 27.621692335481438 ], [ 85.307180700132278, 27.621650492050591 ], [ 85.307207576650555, 27.620553819655235 ], [ 85.306576795732099, 27.621011582265215 ], [ 85.306023680744275, 27.621058021179948 ], [ 85.305508665769139, 27.621172858217577 ], [ 85.30342938943258, 27.621570742381664 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneıd": 40, "population": 0, "densitycap": 250.0, "avgIncome": "midIncome", "area": 27.532, "luf": "COMMERCIAL AND RESIDENTIAL", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.307709414880335, 27.626447385447328 ], [ 85.307714098861965, 27.627448003848983 ], [ 85.307258764471143, 27.628836266117517 ], [ 85.307202371226467, 27.630263846470946 ], [ 85.307178544618182, 27.631261502022646 ], [ 85.307398782911349, 27.631621729931144 ], [ 85.307795832645638, 27.631438594206262 ], [ 85.309661743779813, 27.631313196126413 ], [ 85.309887290713846, 27.631057215698522 ], [ 85.309976861560841, 27.630782613568577 ], [ 85.310094014856062, 27.63050080175336 ], [ 85.310177093349438, 27.630162419103254 ], [ 85.310152634614909, 27.629916357540807 ], [ 85.310011867348464, 27.629662726166845 ], [ 85.309527086892302, 27.629195333831031 ], [ 85.309383158273633, 27.628929959623004 ], [ 85.309356161184539, 27.628888551122365 ], [ 85.309358355855011, 27.628833405038488 ], [ 85.30960042574867, 27.62848108203389 ], [ 85.310160792612621, 27.628289925261456 ], [ 85.310514068647095, 27.628257258845185 ], [ 85.31046751400136, 27.627232739571941 ], [ 85.310179070440867, 27.626375585223744 ], [ 85.309377844890022, 27.62558209059085 ], [ 85.308511504702665, 27.624069015427217 ], [ 85.308319246661398, 27.623212819192368 ], [ 85.308229214204047, 27.622811867217592 ], [ 85.308277861972755, 27.621827406379342 ], [ 85.308572018143209, 27.620586601437672 ], [ 85.309113294435406, 27.61910410259296 ], [ 85.308552590418827, 27.618081977434908 ], [ 85.307875146499882, 27.617887511287702 ], [ 85.30770174560466, 27.618305613682036 ], [ 85.307239020060564, 27.619270739363003 ], [ 85.307180700132278, 27.621650492050591 ], [ 85.307156599171989, 27.621692335481438 ], [ 85.307091990602729, 27.622034978606614 ], [ 85.306929017044737, 27.622438585512484 ], [ 85.306991586452213, 27.622738559549568 ], [ 85.307272448895674, 27.623279245198496 ], [ 85.307393031472046, 27.624059984420345 ], [ 85.307562450782072, 27.625286466295094 ], [ 85.307709414880335, 27.626447385447328 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneıd": 72, "population": 0, "densitycap": 125.0, "avgIncome": null, "area": 33.787, "luf": "INDUSTRY", "setback": null, "far": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.323249281516681, 27.635098021679525 ], [ 85.32273713788436, 27.634789332278995 ], [ 85.322045839416106, 27.634550584807496 ], [ 85.321665082522543, 27.63442671169614 ], [ 85.321642617205256, 27.634458381913568 ], [ 85.321558892045104, 27.63448621943126 ], [ 85.321204207605135, 27.63452932362032 ], [ 85.321007342329438, 27.634541365450406 ], [ 85.320904337051857, 27.634467990755322 ], [ 85.320610973066451, 27.634207870541271 ], [ 85.320299046536476, 27.633936132772057 ], [ 85.32025949868445, 27.634387709642468 ], [ 85.320258494164221, 27.634394597172811 ], [ 85.320146690118776, 27.634940252137369 ], [ 85.319987023548023, 27.636391782524559 ], [ 85.319997019980505, 27.6369552387795 ], [ 85.319999700229161, 27.637106313521841 ], [ 85.320087755745604, 27.637516916629068 ], [ 85.320089098063136, 27.637530535122014 ], [ 85.32007462312454, 27.638478058347296 ], [ 85.320072469694992, 27.638493161259007 ], [ 85.319616568417231, 27.640159418941561 ], [ 85.319616276552949, 27.640160450345764 ], [ 85.319427031903018, 27.640807702394017 ], [ 85.319421755518277, 27.640820385433752 ], [ 85.318976277911943, 27.641631504089734 ], [ 85.318984005725412, 27.641657544009988 ], [ 85.318980665590757, 27.641658330148996 ], [ 85.318987300651784, 27.641716460831201 ], [ 85.318971225470918, 27.641782696596465 ], [ 85.318932953529483, 27.641841266727358 ], [ 85.319127577888636, 27.641893388944471 ], [ 85.319387552301919, 27.641872433386297 ], [ 85.319812434476262, 27.641769851652967 ], [ 85.320225345482783, 27.641616648348833 ], [ 85.321401282548521, 27.641095708862608 ], [ 85.323817758844442, 27.6399737734395 ], [ 85.325083532142301, 27.639197048915811 ], [ 85.325946559390857, 27.638477859542011 ], [ 85.326147932415509, 27.637758670168239 ], [ 85.325889024240951, 27.63689564291969 ], [ 85.325857497045959, 27.636957229944226 ], [ 85.325364005789226, 27.636756859097208 ], [ 85.325358639566517, 27.636754447611221 ], [ 85.324702009567247, 27.636429740397016 ], [ 85.324691637118065, 27.636423568202442 ], [ 85.324099948667183, 27.636005056714346 ], [ 85.32408766205215, 27.635994105171871 ], [ 85.323562533929888, 27.635404234860143 ], [ 85.323249281516681, 27.635098021679525 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneıd": 44, "population": 0, "densitycap": 0.0, "avgIncome": null, "area": 4.152, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.323046946531264, 27.63010949939018 ], [ 85.323821360236195, 27.630736980372838 ], [ 85.324483925873963, 27.631114141508633 ], [ 85.324614297773479, 27.63099266532419 ], [ 85.324695436909636, 27.630939274063419 ], [ 85.324811128568982, 27.630937810034737 ], [ 85.324936849691795, 27.63091071211996 ], [ 85.324778144591392, 27.630782881948811 ], [ 85.324417156034173, 27.630435121433877 ], [ 85.324032562741024, 27.62994971510593 ], [ 85.323464269740938, 27.629290387514047 ], [ 85.32242372557171, 27.627995780907188 ], [ 85.32221623629404, 27.627775427063927 ], [ 85.322039486640577, 27.627567249202251 ], [ 85.32181134024664, 27.627358449196894 ], [ 85.321748130360632, 27.627681152182458 ], [ 85.321708981970943, 27.627883806598451 ], [ 85.321669447542675, 27.628095021355513 ], [ 85.32154660712645, 27.628505338235172 ], [ 85.321467581296574, 27.628830904547975 ], [ 85.321874052326123, 27.629144882843679 ], [ 85.32206965382521, 27.629302136906858 ], [ 85.323046946531264, 27.63010949939018 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneıd": 41, "population": 0, "densitycap": 125.0, "avgIncome": null, "area": 4.839, "luf": "INDUSTRY", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.318417277055772, 27.638142056535784 ], [ 85.318424893570892, 27.638251505182538 ], [ 85.31842510770025, 27.638260873362078 ], [ 85.318419728872996, 27.63848690489365 ], [ 85.318418362026108, 27.638697178478651 ], [ 85.318435445806884, 27.638920930222266 ], [ 85.318435530181958, 27.638935036693915 ], [ 85.318422230641218, 27.639141736738019 ], [ 85.318422108503214, 27.639143415677275 ], [ 85.318414008724659, 27.639243215701491 ], [ 85.318413926069084, 27.639244176980593 ], [ 85.318409168103415, 27.639296569991224 ], [ 85.318404215272196, 27.639367460267263 ], [ 85.318369152533208, 27.639510697517622 ], [ 85.318375493653264, 27.639594651465551 ], [ 85.318431119481275, 27.639792399236168 ], [ 85.318436495601972, 27.639808301612536 ], [ 85.318600993780748, 27.639979740714651 ], [ 85.318697844599171, 27.640121953623655 ], [ 85.318720288337332, 27.640168978414437 ], [ 85.318720337044994, 27.640169238199206 ], [ 85.318725477744707, 27.640180009140966 ], [ 85.318730399284433, 27.640206258408131 ], [ 85.318746680352447, 27.640513103984432 ], [ 85.318777319943308, 27.640825134425139 ], [ 85.318814675164646, 27.640986629606395 ], [ 85.318837475521121, 27.641079495939159 ], [ 85.318842457671707, 27.641096326267355 ], [ 85.318843662815169, 27.641100759076014 ], [ 85.318922945254627, 27.641420508417475 ], [ 85.319281853752159, 27.640767013839465 ], [ 85.319469025558448, 27.640126854149859 ], [ 85.319922751087418, 27.638468556686519 ], [ 85.319937005346148, 27.637535563438707 ], [ 85.319849161855927, 27.637125946350402 ], [ 85.319847822019327, 27.637114317954175 ], [ 85.319846026177018, 27.637013085682106 ], [ 85.319834974088877, 27.63639007786611 ], [ 85.319835326709651, 27.636382409278891 ], [ 85.31999572315307, 27.63492426177789 ], [ 85.319996595751832, 27.634918709995215 ], [ 85.320108265070047, 27.634373716178743 ], [ 85.320147786295493, 27.633922450381462 ], [ 85.320148668523544, 27.633916175641851 ], [ 85.320204838721807, 27.633627004957741 ], [ 85.320185368033179, 27.63362043653277 ], [ 85.319836080079924, 27.634156842764117 ], [ 85.319079429737485, 27.63489998149328 ], [ 85.318953831824714, 27.634968141872687 ], [ 85.318969842030299, 27.635054632650185 ], [ 85.318969645956088, 27.635092361940877 ], [ 85.318967511594323, 27.635103262564261 ], [ 85.318967381951524, 27.635128208675624 ], [ 85.318686543075728, 27.636787546326008 ], [ 85.318445249110653, 27.63754972332525 ], [ 85.318417277055772, 27.638142056535784 ] ] ] ] } } +] +} diff --git a/landuse_tv50_1.png b/landuse_tv50_1.png new file mode 100644 index 0000000000000000000000000000000000000000..dce12806c828d7c511eefaf268e57206d6f7841a --- /dev/null +++ b/landuse_tv50_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d7aff6ddf8fd0e4c2fb11baebe08313fd7969e8f79692c9d55ef3eff9cd8006 +size 1110532 diff --git a/landuse_tv50_1_selected.png b/landuse_tv50_1_selected.png new file mode 100644 index 0000000000000000000000000000000000000000..eed875d25f4c8a2b7bfdee75bfb664b137fd4b2e Binary files /dev/null and b/landuse_tv50_1_selected.png differ diff --git a/landuse_tv50_2.geojson b/landuse_tv50_2.geojson new file mode 100644 index 0000000000000000000000000000000000000000..f102820c0a44f488281bb3db65222d19926573ca --- /dev/null +++ b/landuse_tv50_2.geojson @@ -0,0 +1,72 @@ +{ +"type": "FeatureCollection", +"name": "landuse_tv50_2", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "zoneid": 1, "population": 0, "densitycap": 350.0, "avgincome": "lowIncomeB", "area": 18.325, "luf": "RESIDENTIAL (HIGH DENSITY)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.315855512037515, 27.626563400270093 ], [ 85.315483914661414, 27.6260722566807 ], [ 85.315418803867999, 27.625708436636899 ], [ 85.31507691608644, 27.62569043079343 ], [ 85.314299827746368, 27.625680987818793 ], [ 85.313609400942809, 27.625714491601098 ], [ 85.313799603539579, 27.626886598093147 ], [ 85.314048208705771, 27.628452634480041 ], [ 85.313475934116298, 27.629054619082655 ], [ 85.313304659853955, 27.629733119315052 ], [ 85.313000118304558, 27.631233861781812 ], [ 85.313460505490667, 27.632395353926828 ], [ 85.31348353696778, 27.632400365023138 ], [ 85.313503713879825, 27.632411453195925 ], [ 85.313621808153897, 27.632501760551964 ], [ 85.313957483994855, 27.632685544983687 ], [ 85.31397373804316, 27.632697500815073 ], [ 85.313985679068111, 27.632712973419711 ], [ 85.314104246811041, 27.632924494282836 ], [ 85.314105265240414, 27.632926383773732 ], [ 85.314189544160371, 27.633089159043379 ], [ 85.314277243538299, 27.633176858378835 ], [ 85.314492524626161, 27.633244518139104 ], [ 85.314840872213594, 27.633189875344662 ], [ 85.314844646463882, 27.633189369969084 ], [ 85.315039470563974, 27.633167722841502 ], [ 85.315062660193732, 27.633168324329574 ], [ 85.315084565594574, 27.633175128613754 ], [ 85.315349720377199, 27.633300728234431 ], [ 85.315841601005701, 27.633399104331133 ], [ 85.315552277059325, 27.632541219584979 ], [ 85.315748705385332, 27.63197048259833 ], [ 85.31575382355706, 27.63163622301408 ], [ 85.315654271097117, 27.631133531197918 ], [ 85.315662679648284, 27.630584390403857 ], [ 85.315964504264471, 27.630134333592562 ], [ 85.315971814405316, 27.629656819716097 ], [ 85.315976565900442, 27.6293464356778 ], [ 85.315953779444854, 27.629083477488827 ], [ 85.315910399743103, 27.628414306897906 ], [ 85.315970226380216, 27.628009071061118 ], [ 85.315842772276199, 27.627577680818295 ], [ 85.315956942318834, 27.627125344581184 ], [ 85.315801220812659, 27.626789131598912 ], [ 85.315855512037515, 27.626563400270093 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "population": 0, "densitycap": 350.0, "avgincome": "lowIncomeB", "area": 23.403, "luf": "RESIDENTIAL (HIGH DENSITY)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.308366401271627, 27.636194123353551 ], [ 85.308366229082523, 27.635853704675679 ], [ 85.307828031496442, 27.635495575230369 ], [ 85.306898611759266, 27.634877107113084 ], [ 85.306455305629314, 27.634760651118597 ], [ 85.305195826520034, 27.634579469963466 ], [ 85.305497545442876, 27.636829431073849 ], [ 85.305192722000086, 27.638132884000076 ], [ 85.304903476000064, 27.639285127000068 ], [ 85.304816575000075, 27.641356871000024 ], [ 85.307532614461834, 27.641577565743059 ], [ 85.30983065007527, 27.641628868841586 ], [ 85.309390601444974, 27.640626111613347 ], [ 85.308553444434168, 27.640138299554117 ], [ 85.307988706844085, 27.639756491763617 ], [ 85.307797005952608, 27.639145210929463 ], [ 85.307592766124472, 27.638545215916068 ], [ 85.308296136799299, 27.637833639416868 ], [ 85.308242813968448, 27.637755074221403 ], [ 85.308213060727084, 27.637705387303122 ], [ 85.308208344400484, 27.637677879894667 ], [ 85.308211413627177, 27.637650140372205 ], [ 85.308277013774543, 27.637393440585374 ], [ 85.308399427480509, 27.636988943023848 ], [ 85.308455538374631, 27.63676086666749 ], [ 85.308417544749233, 27.636547208243496 ], [ 85.308366401271627, 27.636194123353551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "population": 0, "densitycap": 100.0, "avgincome": "highIncome", "area": 26.407, "luf": "RESIDENTIAL (LOW DENSITY)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.319352794921272, 27.618327881820576 ], [ 85.318067954985608, 27.618468132927664 ], [ 85.317125787627234, 27.618719387655194 ], [ 85.316616869606548, 27.618689332297379 ], [ 85.31543418872856, 27.618889895976391 ], [ 85.314469230545072, 27.61887817381335 ], [ 85.313340153569243, 27.61907937077217 ], [ 85.312320853701337, 27.619114733103217 ], [ 85.311918787545437, 27.619109840625441 ], [ 85.311162066589745, 27.619335027908434 ], [ 85.31115093774423, 27.619365911976576 ], [ 85.310963100483065, 27.619708031073966 ], [ 85.310951371055083, 27.619725288576795 ], [ 85.310740315396345, 27.619981015072451 ], [ 85.310622056998412, 27.620213090246363 ], [ 85.31069212682398, 27.620294800502862 ], [ 85.310713478118856, 27.620332987655743 ], [ 85.310717382278284, 27.620375506551994 ], [ 85.310692821916064, 27.620576111020295 ], [ 85.310619140169678, 27.621177924341755 ], [ 85.310610968055443, 27.621207278074397 ], [ 85.310594334443451, 27.62123364312475 ], [ 85.310476837032979, 27.621372339963791 ], [ 85.310369645474537, 27.621520555015149 ], [ 85.310358729621058, 27.621533502675987 ], [ 85.310244966851528, 27.621649988095609 ], [ 85.310165254488822, 27.621761906177092 ], [ 85.310104324965906, 27.621866835021478 ], [ 85.31010290663059, 27.621959193360848 ], [ 85.310120810717137, 27.62215497893796 ], [ 85.310121216931222, 27.622165680174827 ], [ 85.310116147816714, 27.622495764919311 ], [ 85.310142710175384, 27.622835818082624 ], [ 85.310142932493406, 27.622847734063662 ], [ 85.310118235715095, 27.623454620646488 ], [ 85.310163539776951, 27.623534611902414 ], [ 85.310196319370306, 27.623580747354868 ], [ 85.310254586076908, 27.623476266903989 ], [ 85.310265255407188, 27.623460378192171 ], [ 85.310370155560165, 27.623343938650539 ], [ 85.310385929505415, 27.623330797717458 ], [ 85.310405217007897, 27.62332214030047 ], [ 85.3117800269995, 27.622910611022004 ], [ 85.316522408286588, 27.620788098119782 ], [ 85.316538411820318, 27.620782843296343 ], [ 85.318677296766268, 27.620315156083166 ], [ 85.318704698905634, 27.620313711467674 ], [ 85.318730889390849, 27.620321033123119 ], [ 85.318870354555614, 27.620386613430785 ], [ 85.318926190478749, 27.620430738740378 ], [ 85.318979438894317, 27.620483646145129 ], [ 85.319003263657606, 27.620489773074194 ], [ 85.319088825717046, 27.620477785749163 ], [ 85.319091325724941, 27.620368385749469 ], [ 85.319091372234141, 27.620366858733039 ], [ 85.319094153895051, 27.620293783907847 ], [ 85.319095072240728, 27.620269658733363 ], [ 85.31909906735082, 27.620245120166128 ], [ 85.31914916733416, 27.62007332016648 ], [ 85.319149516408132, 27.620072149024615 ], [ 85.31915385089053, 27.620057915518029 ], [ 85.319282371901934, 27.619618734560657 ], [ 85.319249760954591, 27.619050425221523 ], [ 85.319249936016433, 27.619033823970742 ], [ 85.319256634221148, 27.618962143218582 ], [ 85.319269232436213, 27.618826762467002 ], [ 85.319270195452106, 27.618819378649004 ], [ 85.319309995189798, 27.618582580215921 ], [ 85.319352794921272, 27.618327881820576 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 6, "population": 1076, "densitycap": 350.0, "avgincome": "lowIncomeB", "area": 4.945, "luf": "RESIDENTIAL (HIGH DENSITY)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.312863949204996, 27.624238921911445 ], [ 85.312626326631758, 27.623984358196957 ], [ 85.31260173729666, 27.623676073722041 ], [ 85.312643267368401, 27.623481986621979 ], [ 85.312763030812661, 27.623214448259102 ], [ 85.312908491195216, 27.622947222338563 ], [ 85.313071995822483, 27.622760341981493 ], [ 85.313334266800595, 27.622447084582724 ], [ 85.313475165716739, 27.622303457550416 ], [ 85.311843452868288, 27.623033723142697 ], [ 85.311833543569008, 27.623037401988931 ], [ 85.310505755534763, 27.623434856241506 ], [ 85.31077227107501, 27.623604394395034 ], [ 85.311011208935085, 27.623809621825817 ], [ 85.311172229951765, 27.624028541526055 ], [ 85.311230564099489, 27.624122424370839 ], [ 85.311328667174308, 27.624254060425287 ], [ 85.311404440635556, 27.624380100407798 ], [ 85.311503670644896, 27.624535708723371 ], [ 85.311640726672309, 27.624758329271248 ], [ 85.311824165478527, 27.625074686832029 ], [ 85.311911811275195, 27.62520619521856 ], [ 85.311978743825193, 27.625324141086722 ], [ 85.312068302640427, 27.62542838641917 ], [ 85.312193693697125, 27.625632229986181 ], [ 85.312259449085843, 27.625729530339438 ], [ 85.312188539055271, 27.625739650352887 ], [ 85.312127738601092, 27.625748210275123 ], [ 85.3126583204822, 27.62567426595168 ], [ 85.312661515797686, 27.625673882294244 ], [ 85.313585955158459, 27.625580620828458 ], [ 85.313451615271433, 27.625058931079764 ], [ 85.313199108792887, 27.624763971718025 ], [ 85.313073426307298, 27.6245792973391 ], [ 85.312863949204996, 27.624238921911445 ] ] ], [ [ [ 85.312127738601106, 27.625748210275134 ], [ 85.312127738601092, 27.625748210275123 ], [ 85.312059468245735, 27.625671132804971 ], [ 85.312127738601106, 27.625748210275134 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 7, "population": 0, "densitycap": 125.0, "avgincome": null, "area": 3.259, "luf": "INDUSTRY", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.31852056720659, 27.637311816805514 ], [ 85.319846026177018, 27.637013085682096 ], [ 85.319834974088863, 27.636390077866114 ], [ 85.319835326709679, 27.636382409278891 ], [ 85.31999572315307, 27.634924261777904 ], [ 85.319996595751846, 27.634918709995226 ], [ 85.320108265070047, 27.634373716178747 ], [ 85.320147786295493, 27.63392245038149 ], [ 85.320148668523558, 27.633916175641879 ], [ 85.320204838721793, 27.633627004957763 ], [ 85.320185368033194, 27.633620436532812 ], [ 85.319836080079938, 27.634156842764121 ], [ 85.319079429737485, 27.634899981493309 ], [ 85.318953831824714, 27.634968141872687 ], [ 85.318969842030299, 27.635054632650185 ], [ 85.318969645956074, 27.635092361940899 ], [ 85.318967511594323, 27.635103262564275 ], [ 85.318967381951524, 27.635128208675656 ], [ 85.318686543075728, 27.636787546325998 ], [ 85.31852056720659, 27.637311816805514 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 8, "population": 1391, "densitycap": 100.0, "avgincome": "highIncome", "area": 4.797, "luf": "RESIDENTIAL (LOW DENSITY)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.319538168042556, 27.620312706959719 ], [ 85.319516798142502, 27.620449807704745 ], [ 85.319575710711675, 27.620799643870509 ], [ 85.319582267972109, 27.621211802226433 ], [ 85.31957178216031, 27.621898473328148 ], [ 85.319558279651773, 27.622361898446087 ], [ 85.319461740343968, 27.622792839201313 ], [ 85.319430733081447, 27.622929823098151 ], [ 85.31946652665772, 27.623110541265373 ], [ 85.319529613539999, 27.62339747146774 ], [ 85.319628910550989, 27.624048270927371 ], [ 85.319631770573523, 27.624076490875758 ], [ 85.320208606467602, 27.623851384067336 ], [ 85.320587429290114, 27.623639243304464 ], [ 85.320611985326465, 27.623630355470951 ], [ 85.32086041005202, 27.623583036542485 ], [ 85.320774331044305, 27.623212044302321 ], [ 85.320667951762175, 27.623021187122809 ], [ 85.320663840228562, 27.623012265434255 ], [ 85.320487969828818, 27.622536703435809 ], [ 85.320484155040134, 27.622515571813583 ], [ 85.320483886894507, 27.622152470119659 ], [ 85.320491485363306, 27.622122923171542 ], [ 85.320912477845098, 27.621348640768648 ], [ 85.320919819366623, 27.621337840037103 ], [ 85.321056067174837, 27.621174097971654 ], [ 85.32127543172561, 27.620910465174113 ], [ 85.321043417669813, 27.620715786222412 ], [ 85.320455615305917, 27.620319922823011 ], [ 85.319985728298576, 27.620167655596404 ], [ 85.319583579247777, 27.620113757943312 ], [ 85.319538168042556, 27.620312706959719 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 9, "population": 1297, "densitycap": 100.0, "avgincome": "highIncome", "area": 7.634, "luf": "RESIDENTIAL (GATED NEIGHBORHOOD)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.319711967157119, 27.619450591240565 ], [ 85.319687801892528, 27.619770804399618 ], [ 85.319612293715053, 27.620017004638942 ], [ 85.319583579247777, 27.620113757943312 ], [ 85.319985728298576, 27.620167655596404 ], [ 85.320455615305917, 27.620319922823011 ], [ 85.321043417669813, 27.620715786222412 ], [ 85.32127543172561, 27.620910465174113 ], [ 85.321492531587694, 27.620649552424283 ], [ 85.321495012013258, 27.620646730749147 ], [ 85.322159690209986, 27.619930504573603 ], [ 85.321921233750075, 27.619787802581918 ], [ 85.321909598792828, 27.619779229843104 ], [ 85.321364148916444, 27.61928827268116 ], [ 85.320987061179679, 27.619088466832157 ], [ 85.320973926051721, 27.619079664348821 ], [ 85.320488920774295, 27.618674468924812 ], [ 85.320380218967387, 27.618660649359168 ], [ 85.320176401145133, 27.618699737697685 ], [ 85.32004266564249, 27.618746086940082 ], [ 85.319987854714171, 27.61879582985312 ], [ 85.319987448741131, 27.618796195499179 ], [ 85.319859298579814, 27.618910742142177 ], [ 85.31984692919724, 27.619025559873702 ], [ 85.319831988581299, 27.619164244450641 ], [ 85.319711967157119, 27.619450591240565 ] ], [ [ 85.321843441580427, 27.620002037729815 ], [ 85.321811213945892, 27.619740144756268 ], [ 85.322115055736845, 27.619942494913424 ], [ 85.321985073684473, 27.620090352854575 ], [ 85.321843441580427, 27.620002037729815 ] ] ], [ [ [ 85.324478960957762, 27.622697798412098 ], [ 85.324479527063232, 27.622694783632134 ], [ 85.324599312522054, 27.622134882843259 ], [ 85.324609299413922, 27.621536348037449 ], [ 85.323747793092366, 27.620833244397289 ], [ 85.322721982847185, 27.620266945180745 ], [ 85.322719637309007, 27.62026559656848 ], [ 85.322286463589506, 27.620006370581443 ], [ 85.32161343297949, 27.620731597801779 ], [ 85.321448507821827, 27.620929806869519 ], [ 85.321397690754551, 27.620990879249206 ], [ 85.32177480926515, 27.621314131175804 ], [ 85.322646398937152, 27.621633760091783 ], [ 85.323624311267082, 27.622254195448349 ], [ 85.324027550257298, 27.622555408783889 ], [ 85.324447415114903, 27.622892755775663 ], [ 85.324477558516335, 27.622706465697828 ], [ 85.324478960957762, 27.622697798412098 ] ], [ [ 85.322687623060787, 27.620525066260047 ], [ 85.32215514122916, 27.620189200238034 ], [ 85.32227744729316, 27.620044645436277 ], [ 85.322827238440837, 27.620370531846941 ], [ 85.322687623060787, 27.620525066260047 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "population": 738, "densitycap": 200.0, "avgincome": "highIncome", "area": 2.49, "luf": "COMMERCIAL AND RESIDENTIAL", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.321417508867128, 27.622365005820278 ], [ 85.3215908325664, 27.6224072983097 ], [ 85.321626684963732, 27.62237882441724 ], [ 85.321664161264891, 27.62235206083783 ], [ 85.321703158750751, 27.622327080927334 ], [ 85.321743570532973, 27.62230395315278 ], [ 85.321785285847014, 27.62228274090463 ], [ 85.321819241567795, 27.622266719873164 ], [ 85.321857396077391, 27.622251799350689 ], [ 85.321902019787998, 27.622235964655736 ], [ 85.321947512739087, 27.622222231835611 ], [ 85.322009306343958, 27.622207255205776 ], [ 85.32204060555982, 27.622201216515712 ], [ 85.322072122311852, 27.62219615444538 ], [ 85.322119721264755, 27.622190405665396 ], [ 85.322183587835781, 27.622186206298565 ], [ 85.322231618553673, 27.622185667218627 ], [ 85.322263628187841, 27.622186552290415 ], [ 85.322279615124046, 27.622187367873149 ], [ 85.322295583645442, 27.622188431847853 ], [ 85.322311528887909, 27.62218974389036 ], [ 85.322343330116865, 27.622193110504899 ], [ 85.322374980066883, 27.622197463615155 ], [ 85.322453190628508, 27.622212624565986 ], [ 85.322499299630579, 27.622224617062699 ], [ 85.32254464080512, 27.622238742538034 ], [ 85.322574380216793, 27.622249325628204 ], [ 85.322603686855928, 27.62226082672634 ], [ 85.32263252501744, 27.622273231820458 ], [ 85.322646757416152, 27.622279768685576 ], [ 85.322660859567023, 27.622286525797126 ], [ 85.322674827174453, 27.622293501096824 ], [ 85.322688655983825, 27.622300692460058 ], [ 85.322702341782787, 27.622308097696244 ], [ 85.322715880402569, 27.622315714549682 ], [ 85.322729267719225, 27.622323540700318 ], [ 85.322742499654893, 27.622331573764239 ], [ 85.322781223114418, 27.622356889656249 ], [ 85.322818406023828, 27.622383975984292 ], [ 85.322853946467788, 27.622412758508005 ], [ 85.322909268188084, 27.622464282422921 ], [ 85.32295933784016, 27.622519904907893 ], [ 85.322995354579163, 27.622567070365562 ], [ 85.323019894434324, 27.622603850589755 ], [ 85.323035038946472, 27.622628984612291 ], [ 85.323049189444816, 27.622654574093836 ], [ 85.323062328688593, 27.622680587857822 ], [ 85.323085510628985, 27.622733760980879 ], [ 85.323100132627175, 27.622774515471288 ], [ 85.323112339952772, 27.622815895727388 ], [ 85.323122099143788, 27.622857788329256 ], [ 85.323127231707005, 27.622885944711957 ], [ 85.323129383448162, 27.622900078452538 ], [ 85.323262674312275, 27.622788714386932 ], [ 85.323393033143063, 27.622675029417682 ], [ 85.323624311267082, 27.622254195448349 ], [ 85.322646398937152, 27.621633760091783 ], [ 85.32177480926515, 27.621314131175804 ], [ 85.321397690754551, 27.620990879249206 ], [ 85.321163257697222, 27.621272621701575 ], [ 85.3210461580355, 27.621413351755443 ], [ 85.32063587897477, 27.622167931947391 ], [ 85.320635881441007, 27.622171264910673 ], [ 85.321417508867128, 27.622365005820278 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "population": 1290, "densitycap": 200.0, "avgincome": "midIncome", "area": 3.389, "luf": "RESIDENTIAL (MODERATE DENSITY)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.323390469241758, 27.622677265380581 ], [ 85.323129383448162, 27.622900078452538 ], [ 85.323136454360778, 27.622985386835328 ], [ 85.323135585180211, 27.62304242309639 ], [ 85.32313025125805, 27.623099266414858 ], [ 85.323120478573827, 27.623155639855071 ], [ 85.323102095274066, 27.623225027807965 ], [ 85.323092850866402, 27.623252338652414 ], [ 85.323082541992491, 27.623279345495522 ], [ 85.323071181211475, 27.623306015433322 ], [ 85.323052198337095, 27.62334531768505 ], [ 85.323007440903609, 27.623421000733142 ], [ 85.322972770230777, 27.6234689599228 ], [ 85.322954046792134, 27.623492102075712 ], [ 85.322934427994255, 27.623514648109381 ], [ 85.322913937739472, 27.623536570554567 ], [ 85.322881623267421, 27.62356822678257 ], [ 85.322859065835857, 27.623588475144178 ], [ 85.322835728764417, 27.623608009969079 ], [ 85.32279932378033, 27.623635922506253 ], [ 85.322761328578835, 27.62366209973754 ], [ 85.322721847303015, 27.623686469911789 ], [ 85.322680988169452, 27.623708966230868 ], [ 85.322653038429763, 27.623722892079385 ], [ 85.322580927412488, 27.62375383400801 ], [ 85.322521229121563, 27.623774482080073 ], [ 85.322475473422855, 27.623787505778889 ], [ 85.322444571491857, 27.623794995322001 ], [ 85.322413394925547, 27.623801519711023 ], [ 85.322366198306398, 27.623809479565931 ], [ 85.322254731137576, 27.62381942778504 ], [ 85.322190690315523, 27.623819648696642 ], [ 85.32214273367174, 27.623817202129629 ], [ 85.322110870861223, 27.623814330313927 ], [ 85.322079139987125, 27.62381046978728 ], [ 85.322031875569991, 27.623802835781436 ], [ 85.321985124497232, 27.623793008964952 ], [ 85.321954305656263, 27.623785252582028 ], [ 85.3219390149129, 27.623781016273167 ], [ 85.321908694067929, 27.623771833872585 ], [ 85.321878751485571, 27.623761714537803 ], [ 85.321849223646794, 27.623750670597847 ], [ 85.321820146527372, 27.623738715508466 ], [ 85.321805788080823, 27.623732400791631 ], [ 85.321791555553801, 27.623725863835393 ], [ 85.32176348556024, 27.623712131236676 ], [ 85.321735970746133, 27.623697534443753 ], [ 85.321722432034804, 27.623689917491511 ], [ 85.321695812622764, 27.623674058076002 ], [ 85.32168274003061, 27.623665820443716 ], [ 85.3216445183416, 27.623639906142873 ], [ 85.321607871731402, 27.623612245619508 ], [ 85.32157290064616, 27.623582914690555 ], [ 85.32153970093924, 27.623551993751242 ], [ 85.32149834669022, 27.623508439569161 ], [ 85.321469625222207, 27.623474145298538 ], [ 85.321451614306341, 27.623450558791109 ], [ 85.321434538537119, 27.623426426780174 ], [ 85.321410723473619, 27.623389270433321 ], [ 85.321389124299401, 27.623351054848339 ], [ 85.321375985388968, 27.62332504094217 ], [ 85.32135820784552, 27.623285294035757 ], [ 85.321325976099288, 27.623189732540268 ], [ 85.321308933964062, 27.623105549656092 ], [ 85.32130310585525, 27.62304874488682 ], [ 85.321301740670293, 27.622991716376255 ], [ 85.321303650391215, 27.622948965296683 ], [ 85.321308069453622, 27.622906361828875 ], [ 85.3213178430303, 27.622849988554705 ], [ 85.321336227366459, 27.622780600882006 ], [ 85.321355781394189, 27.62272628347133 ], [ 85.321379541679178, 27.622673313312493 ], [ 85.321414978821196, 27.622609387602608 ], [ 85.321447749631204, 27.622560380271423 ], [ 85.321484278625718, 27.622513528447378 ], [ 85.32152438783703, 27.622469060384937 ], [ 85.321545724614481, 27.622447788447548 ], [ 85.3215908325664, 27.6224072983097 ], [ 85.321417477826216, 27.622365005820264 ], [ 85.320635881441504, 27.622171265592691 ], [ 85.32063612809749, 27.622504644851112 ], [ 85.320806494205769, 27.622965321296125 ], [ 85.320914826704154, 27.623159682313375 ], [ 85.320921180563886, 27.623176081606168 ], [ 85.321020752470261, 27.623605224268747 ], [ 85.321255257110593, 27.623861165846325 ], [ 85.32125561562107, 27.623861736772113 ], [ 85.321255712490668, 27.62386166771779 ], [ 85.32130968684065, 27.623921735917875 ], [ 85.321573527503062, 27.624012308054656 ], [ 85.322034123006887, 27.624097678038083 ], [ 85.322992579065414, 27.624073938324457 ], [ 85.323818567943761, 27.623895612328411 ], [ 85.324139926601745, 27.623700474894093 ], [ 85.324333528574201, 27.623283659001011 ], [ 85.324411233215528, 27.623116363548338 ], [ 85.324447415114903, 27.622892755775663 ], [ 85.324027550257298, 27.622555408783889 ], [ 85.323624311267082, 27.622254195448349 ], [ 85.323390469241758, 27.622677265380581 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "population": 0, "densitycap": 200.0, "avgincome": "midIncome", "area": 10.457, "luf": "RESIDENTIAL (MODERATE DENSITY)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.324973980722064, 27.622666486678934 ], [ 85.324653326106386, 27.622605587564035 ], [ 85.324629143469664, 27.62271862214341 ], [ 85.324560303783898, 27.62314406273973 ], [ 85.324555308988423, 27.623160282575935 ], [ 85.324271693939124, 27.623770895011955 ], [ 85.32426045099902, 27.62378770339873 ], [ 85.324244280141215, 27.623800945253073 ], [ 85.323892735229791, 27.624014412667648 ], [ 85.323867831021275, 27.624024267689126 ], [ 85.32302059783008, 27.624207180185202 ], [ 85.323004809642725, 27.624209058759014 ], [ 85.322282978237396, 27.624226938206711 ], [ 85.322438481760841, 27.624264276515987 ], [ 85.323034088630337, 27.624553149283035 ], [ 85.32318769173834, 27.624672138045899 ], [ 85.323251107212542, 27.624727477411184 ], [ 85.323311291162469, 27.624798750173738 ], [ 85.32339882922831, 27.624938236678677 ], [ 85.323432119223014, 27.625009184278102 ], [ 85.32347996519249, 27.625105597603916 ], [ 85.323514384414281, 27.6252005175729 ], [ 85.323550929804313, 27.625392068670386 ], [ 85.323658338580927, 27.626228322716884 ], [ 85.323934532577923, 27.626934151820326 ], [ 85.324532952904732, 27.627379131037731 ], [ 85.325315502562916, 27.627670669145687 ], [ 85.325852546445986, 27.627709029422999 ], [ 85.326485491022439, 27.627966043281344 ], [ 85.326635096104184, 27.628127156446244 ], [ 85.326353800373781, 27.627060728233175 ], [ 85.325979821899438, 27.625938792810064 ], [ 85.325720913724865, 27.624931927686749 ], [ 85.325072686749337, 27.623052530751536 ], [ 85.324973980722064, 27.622666486678934 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "population": 1152, "densitycap": 200.0, "avgincome": "midIncome", "area": 4.909, "luf": "HISTORICAL PRESERVATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.318578972193563, 27.633771718785059 ], [ 85.318579218794895, 27.63377226852851 ], [ 85.318668319204789, 27.633979068396467 ], [ 85.31867056895949, 27.633984737263113 ], [ 85.318768969513926, 27.634255437120313 ], [ 85.318770255335707, 27.634259196674808 ], [ 85.318881556059409, 27.634606196516643 ], [ 85.318884325484348, 27.634616713675648 ], [ 85.318925925919118, 27.634817513623155 ], [ 85.318926341518676, 27.634819632702616 ], [ 85.318953831824714, 27.634968141872687 ], [ 85.319079429737485, 27.63489998149328 ], [ 85.319836080079924, 27.634156842764117 ], [ 85.320185368033179, 27.63362043653277 ], [ 85.320121715294775, 27.633598963295935 ], [ 85.320057970968364, 27.633590995251371 ], [ 85.320032051779307, 27.633583343605217 ], [ 85.320010842258128, 27.633568026723282 ], [ 85.319997080445731, 27.633547021938828 ], [ 85.3199119418137, 27.633337722467942 ], [ 85.319733436740066, 27.633016412956792 ], [ 85.319732127349624, 27.633013930758739 ], [ 85.319598950357587, 27.632747576450136 ], [ 85.319366827677271, 27.63248731750048 ], [ 85.319360988972107, 27.632479774072962 ], [ 85.319158949168823, 27.632176714088509 ], [ 85.319155847374006, 27.63217156773489 ], [ 85.318968485793903, 27.631825669026711 ], [ 85.318773916113358, 27.631479766980469 ], [ 85.3187713824734, 27.631474766316309 ], [ 85.318600763010124, 27.631097981143409 ], [ 85.318360218212064, 27.630758388183832 ], [ 85.318254923124741, 27.63068467553591 ], [ 85.318137745429226, 27.630711783915324 ], [ 85.317958198707203, 27.631104822390039 ], [ 85.317950104243693, 27.631123850684215 ], [ 85.31794382736804, 27.63113628196685 ], [ 85.317804350808743, 27.631373119285023 ], [ 85.317786516325498, 27.631449389469203 ], [ 85.317819630598436, 27.631605123557378 ], [ 85.317841319954866, 27.631695711102282 ], [ 85.317943440856595, 27.632003847735497 ], [ 85.317944898086665, 27.632008629018472 ], [ 85.318054498920475, 27.632402228867349 ], [ 85.318054929727836, 27.63240382564171 ], [ 85.318141839578658, 27.632736597365636 ], [ 85.31823484820859, 27.633020761000989 ], [ 85.318248715375958, 27.633062127194531 ], [ 85.318570952319959, 27.633753104816329 ], [ 85.318578972193563, 27.633771718785059 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 14, "population": 9161, "densitycap": 200.0, "avgincome": "midIncome", "area": 32.841, "luf": "RESIDENTIAL (MODERATE DENSITY)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.324521231976988, 27.631153886717613 ], [ 85.32469688294934, 27.631005258971761 ], [ 85.324825243275285, 27.630998503165163 ], [ 85.325041429087435, 27.630944456712111 ], [ 85.325325172965833, 27.630984991551891 ], [ 85.325345440385703, 27.630887032355755 ], [ 85.325316728207525, 27.630848186467627 ], [ 85.32497026006665, 27.630540017892272 ], [ 85.325023964454971, 27.630049006342059 ], [ 85.325238782008185, 27.629642387402047 ], [ 85.325476615727823, 27.629557994791835 ], [ 85.325699105336525, 27.629274128739397 ], [ 85.325875562612381, 27.62872174074533 ], [ 85.326174772775815, 27.628622004024219 ], [ 85.326355066079415, 27.62846472688701 ], [ 85.326489327050197, 27.628380334276855 ], [ 85.326688800492462, 27.628284433583445 ], [ 85.326635096104184, 27.628127156446244 ], [ 85.326485491022439, 27.627966043281344 ], [ 85.325852546445986, 27.627709029422999 ], [ 85.325399917866051, 27.62767669894923 ], [ 85.325176360267562, 27.627618832248825 ], [ 85.32485832373402, 27.628015943625556 ], [ 85.32456908849035, 27.628377089445582 ], [ 85.324032085185308, 27.629047595932786 ], [ 85.322601677337701, 27.62776958786068 ], [ 85.322457228933871, 27.627640527003994 ], [ 85.322261267887285, 27.627467376336931 ], [ 85.32204503735241, 27.627272242224365 ], [ 85.321876864890868, 27.627121982525868 ], [ 85.321804903955993, 27.627057686273261 ], [ 85.321726255097701, 27.626999898005852 ], [ 85.321358538301951, 27.626729711964018 ], [ 85.321188007335905, 27.626902295152345 ], [ 85.320978832703361, 27.62729108855298 ], [ 85.319922700809627, 27.62922028409157 ], [ 85.319878251877824, 27.629292952722011 ], [ 85.319457595143703, 27.629926754219479 ], [ 85.319025652029836, 27.630320830522948 ], [ 85.318938157794847, 27.630374176097639 ], [ 85.318771641298994, 27.630529548747543 ], [ 85.318539246325585, 27.630756378849856 ], [ 85.318732960478556, 27.631030902421966 ], [ 85.318739166083972, 27.631041700418816 ], [ 85.318911190428167, 27.631421586972202 ], [ 85.319104634126987, 27.631765486484742 ], [ 85.319105135246105, 27.631766394234013 ], [ 85.319291317806133, 27.632110115486725 ], [ 85.31948905011518, 27.632406713681039 ], [ 85.319723962031205, 27.632670099589131 ], [ 85.319733879173285, 27.632684664867444 ], [ 85.319870351384822, 27.632957608940881 ], [ 85.320050061408054, 27.633281086608381 ], [ 85.320053398759754, 27.633288048272082 ], [ 85.320124403677056, 27.633462601803675 ], [ 85.320151253992591, 27.633465958087797 ], [ 85.320167611275721, 27.633469689751738 ], [ 85.320310262488718, 27.633517813049419 ], [ 85.320486798849913, 27.633543774268936 ], [ 85.32050486495524, 27.633548539374029 ], [ 85.320521059596999, 27.633557116350495 ], [ 85.32072700990112, 27.633699697328048 ], [ 85.320955013733027, 27.633939000374085 ], [ 85.321040588049925, 27.634028815153833 ], [ 85.321071888721207, 27.634042544310859 ], [ 85.321474920336385, 27.634219321845343 ], [ 85.321714794833795, 27.634297901821697 ], [ 85.322223495173859, 27.634466747880861 ], [ 85.322800099060075, 27.634665883913691 ], [ 85.323484215659519, 27.634291958896689 ], [ 85.324453673910739, 27.632390199330704 ], [ 85.324386115844419, 27.63185649060701 ], [ 85.324413139070941, 27.631505188662292 ], [ 85.324521231976988, 27.631153886717613 ] ], [ [ 85.322386366397367, 27.62833872803694 ], [ 85.322423725571696, 27.627995780907185 ], [ 85.323464269740967, 27.629290387514036 ], [ 85.32403256274101, 27.629949715105937 ], [ 85.324417156034173, 27.630435121433905 ], [ 85.324778144591392, 27.630782881948825 ], [ 85.324936849691809, 27.630910712119988 ], [ 85.324811128568982, 27.630937810034737 ], [ 85.324695436909636, 27.63093927406344 ], [ 85.324614297773493, 27.630992665324211 ], [ 85.324483925873992, 27.631114141508633 ], [ 85.323821360236209, 27.630736980372856 ], [ 85.323046946531278, 27.630109499390201 ], [ 85.322069653825224, 27.629302136906894 ], [ 85.32210942446288, 27.629222491679805 ], [ 85.322256180496169, 27.6288694216029 ], [ 85.322386366397367, 27.62833872803694 ] ], [ [ 85.321898610983084, 27.627438319671725 ], [ 85.322039486640577, 27.627567249202251 ], [ 85.32221623629404, 27.627775427063927 ], [ 85.322174720909615, 27.627969517595712 ], [ 85.322103229977827, 27.628443687967859 ], [ 85.322034182186997, 27.628757634953747 ], [ 85.321874052326123, 27.629144882843679 ], [ 85.321467581296574, 27.628830904547968 ], [ 85.321536368829754, 27.628534124698884 ], [ 85.32164379160163, 27.628232089056567 ], [ 85.32172074878325, 27.627820941602323 ], [ 85.32181134024664, 27.627358449196894 ], [ 85.321898610983084, 27.627438319671725 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 16, "population": 1110, "densitycap": 100.0, "avgincome": "highIncome", "area": 9.157, "luf": "RESIDENTIAL (LOW DENSITY)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.322383770148392, 27.619901516345006 ], [ 85.322803232413861, 27.620152536756919 ], [ 85.323834587851579, 27.620721896863728 ], [ 85.323847047567, 27.620730486894619 ], [ 85.324378360685444, 27.62118147009804 ], [ 85.324649804693763, 27.621434473891949 ], [ 85.324109929527566, 27.619868834495293 ], [ 85.323749570125045, 27.618429747241326 ], [ 85.322383770148392, 27.619901516345006 ] ] ], [ [ [ 85.320155987061753, 27.616890247048413 ], [ 85.320137563234965, 27.617126620170268 ], [ 85.320097648300617, 27.61741442593722 ], [ 85.319846388915963, 27.618360627464622 ], [ 85.319746519785241, 27.618819771359419 ], [ 85.319879594816371, 27.618700822736297 ], [ 85.319945650894653, 27.61864087447908 ], [ 85.319972328393575, 27.618625207224447 ], [ 85.320126935535399, 27.618571624421868 ], [ 85.320138495185958, 27.618568534217353 ], [ 85.32036151217244, 27.618525763830945 ], [ 85.320388243000167, 27.618524926574512 ], [ 85.320534143401972, 27.61854347528811 ], [ 85.320556292710535, 27.618549463270735 ], [ 85.320575390534373, 27.618561113159533 ], [ 85.321071863666305, 27.618975889103783 ], [ 85.321450184783828, 27.61917634834786 ], [ 85.321465348331458, 27.619186909749637 ], [ 85.322012286075889, 27.619679205735189 ], [ 85.322256996813579, 27.619825650427423 ], [ 85.323672252697051, 27.618300589231527 ], [ 85.323727394788051, 27.618341189400979 ], [ 85.323598516072281, 27.617826505992959 ], [ 85.320155987061753, 27.616890247048413 ] ], [ [ 85.321803454229666, 27.618498760230878 ], [ 85.322211376202404, 27.618001065362833 ], [ 85.322650048579206, 27.618237308390416 ], [ 85.322203955630897, 27.618737939023401 ], [ 85.321803454229666, 27.618498760230878 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 17, "population": 775, "densitycap": 350.0, "avgincome": "lowIncomeB", "area": 4.835, "luf": "RESIDENTIAL (HIGH DENSITY)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.316410551763994, 27.622099801425986 ], [ 85.317294800569613, 27.621841536109926 ], [ 85.317692934611571, 27.621857812253747 ], [ 85.317846419001185, 27.621905460289522 ], [ 85.318188314529337, 27.622156671324287 ], [ 85.31828328694111, 27.622228603561897 ], [ 85.318626698650604, 27.621780235649123 ], [ 85.318835317088642, 27.621412371598264 ], [ 85.319009768228881, 27.620986934237035 ], [ 85.319016478949337, 27.620962904448895 ], [ 85.319024472680368, 27.620938803825233 ], [ 85.319032570140735, 27.620907912177117 ], [ 85.319040403407556, 27.620878715396749 ], [ 85.319047000010244, 27.620852475251656 ], [ 85.319040319144619, 27.620821829022464 ], [ 85.319028422600283, 27.620789421514015 ], [ 85.319007242224302, 27.620740769825542 ], [ 85.318978619242614, 27.620680141443209 ], [ 85.318918533683203, 27.620619980775967 ], [ 85.318849008775643, 27.620553762431889 ], [ 85.318785673265282, 27.620499870518135 ], [ 85.318685480294789, 27.620452757049456 ], [ 85.316582978099987, 27.620912488570191 ], [ 85.313480049143806, 27.622301271950651 ], [ 85.313740397788536, 27.622225080850367 ], [ 85.314514031245494, 27.62205878717765 ], [ 85.315698396862473, 27.622003960453011 ], [ 85.316169811396605, 27.62205627056715 ], [ 85.316410551763994, 27.622099801425986 ] ] ], [ [ [ 85.319096842633783, 27.620562417958016 ], [ 85.319089342639984, 27.620490517957744 ], [ 85.319088825717031, 27.620477785749184 ], [ 85.319003263657592, 27.62048977307418 ], [ 85.318975845227868, 27.620480075495223 ], [ 85.318979438894317, 27.620483646145111 ], [ 85.319037803756316, 27.620549682776662 ], [ 85.319081023499663, 27.620621950014943 ], [ 85.319116645068476, 27.620692427093594 ], [ 85.319130760901373, 27.620732388820219 ], [ 85.319098307417718, 27.620571989580093 ], [ 85.319096842633783, 27.620562417958016 ] ] ], [ [ [ 85.318187430721551, 27.622157700732519 ], [ 85.318187431580199, 27.622157701367641 ], [ 85.318188314529337, 27.622156671324287 ], [ 85.318187430721551, 27.622157700732519 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "population": 0, "densitycap": 200.0, "avgincome": "midIncome", "area": 13.232, "luf": "RESIDENTIAL (MODERATE DENSITY)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.317187809168217, 27.624330060298398 ], [ 85.316973030417557, 27.624254247034031 ], [ 85.316694256059023, 27.624112435871236 ], [ 85.316310269355711, 27.623814946527798 ], [ 85.316076182942169, 27.623487331289553 ], [ 85.31593098090022, 27.62282004912646 ], [ 85.316019816744259, 27.622466000144165 ], [ 85.316138102197897, 27.622268193440696 ], [ 85.316410551763994, 27.622099801425986 ], [ 85.316169811396605, 27.62205627056715 ], [ 85.315698396862473, 27.622003960453011 ], [ 85.314514031245494, 27.62205878717765 ], [ 85.313740397788536, 27.622225080850367 ], [ 85.313480049143806, 27.622301271950651 ], [ 85.313475165716739, 27.622303457550416 ], [ 85.313334266800595, 27.622447084582724 ], [ 85.313071995822483, 27.622760341981493 ], [ 85.312908491195216, 27.622947222338563 ], [ 85.312763030812661, 27.623214448259102 ], [ 85.312643267368401, 27.623481986621979 ], [ 85.31260173729666, 27.623676073722041 ], [ 85.312626326631758, 27.623984358196957 ], [ 85.312863949204996, 27.624238921911445 ], [ 85.313073426307298, 27.6245792973391 ], [ 85.313199108792887, 27.624763971718025 ], [ 85.313451615271433, 27.625058931079764 ], [ 85.313585955158459, 27.625580620828458 ], [ 85.31359449911821, 27.625579758846964 ], [ 85.313598918225139, 27.625579428997135 ], [ 85.314294142952306, 27.625545692350219 ], [ 85.31429931417513, 27.62554559840946 ], [ 85.315080715017586, 27.62555509374824 ], [ 85.315084164268612, 27.625555205473862 ], [ 85.315603538740419, 27.625582558466299 ], [ 85.31621476384754, 27.625596962625611 ], [ 85.316938769891337, 27.625561744190037 ], [ 85.317296708149854, 27.624367008443794 ], [ 85.317295592539054, 27.624366640550548 ], [ 85.317187809168217, 27.624330060298398 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "population": 2218, "densitycap": 350.0, "avgincome": "lowIncomeB", "area": 4.98, "luf": "RESIDENTIAL (HIGH DENSITY)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.317234649632255, 27.624345270045612 ], [ 85.317187809168217, 27.624330060298426 ], [ 85.317295592539054, 27.624366640550544 ], [ 85.317234649632255, 27.624345270045612 ] ] ], [ [ [ 85.319013350371364, 27.622779404409538 ], [ 85.318976538606179, 27.621462555099637 ], [ 85.318972988343162, 27.621469851531991 ], [ 85.318760107734221, 27.621845232000734 ], [ 85.318755053667559, 27.621852858909385 ], [ 85.318404782446777, 27.62231018342548 ], [ 85.318403862326463, 27.62231135787092 ], [ 85.318398064924949, 27.622318593366447 ], [ 85.318532378818261, 27.622428876215285 ], [ 85.318246596652784, 27.622718743870674 ], [ 85.318191751929774, 27.622787292900732 ], [ 85.318145444511245, 27.622883897254276 ], [ 85.318071267030547, 27.623044053506227 ], [ 85.317992301911474, 27.623224117234969 ], [ 85.317871409137055, 27.623507493456039 ], [ 85.317801428254242, 27.623686334966873 ], [ 85.317709410669934, 27.623938116280844 ], [ 85.317573156593028, 27.624346423487193 ], [ 85.317439849352951, 27.624416513512351 ], [ 85.317089799404471, 27.625554397053477 ], [ 85.317826459787796, 27.625518558337955 ], [ 85.318294230012597, 27.625442473800447 ], [ 85.31921804529965, 27.625041225482555 ], [ 85.319248902980391, 27.625030640138476 ], [ 85.319252972934976, 27.62500433616465 ], [ 85.319263588476772, 27.624861689926206 ], [ 85.319263201984498, 27.624726027424884 ], [ 85.319253997833457, 27.624264927249342 ], [ 85.319237509683902, 27.624097744934037 ], [ 85.319159706611089, 27.623627085365822 ], [ 85.31905717831269, 27.623213504931424 ], [ 85.319056139351417, 27.623208851122552 ], [ 85.319016339365064, 27.623008651121012 ], [ 85.319014565271942, 27.622994754957237 ], [ 85.319004865286459, 27.622826154957004 ], [ 85.319013350371364, 27.622779404409538 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "population": 6309, "densitycap": 250.0, "avgincome": "lowIncomeB", "area": 43.348, "luf": "RESIDENTIAL (MODERATE DENSITY)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.313580743625693, 27.636321528489692 ], [ 85.313732273480909, 27.636307097070684 ], [ 85.313755455466193, 27.636308062885899 ], [ 85.313989847746285, 27.636350383730019 ], [ 85.314010984665643, 27.636341136327204 ], [ 85.314105718940837, 27.636246402084019 ], [ 85.314107489730986, 27.636244691420977 ], [ 85.314161607569361, 27.63619418145958 ], [ 85.314179387145288, 27.636181887448441 ], [ 85.314200430311985, 27.636174770726281 ], [ 85.314222891157499, 27.636173455573811 ], [ 85.314417715258557, 27.636187886983393 ], [ 85.314440909011921, 27.636192958519782 ], [ 85.31458522318411, 27.636247076325077 ], [ 85.314588147318631, 27.636248238050268 ], [ 85.314740058680741, 27.636312040832546 ], [ 85.314790148932502, 27.636296011947124 ], [ 85.314899772098087, 27.636223973880973 ], [ 85.315049039098739, 27.63606113723478 ], [ 85.315129222286743, 27.63594260565894 ], [ 85.315135753651447, 27.635934399030546 ], [ 85.315276460050484, 27.635782869142329 ], [ 85.315290463289841, 27.635771176354847 ], [ 85.315307309379691, 27.63576298121394 ], [ 85.315617584829781, 27.635654745591285 ], [ 85.315639129875152, 27.635650307132607 ], [ 85.315661197542823, 27.635651580395145 ], [ 85.315938599599434, 27.635704418901121 ], [ 85.316219749906779, 27.63558217964912 ], [ 85.316382301838459, 27.635196119288739 ], [ 85.316394895917, 27.635176749068744 ], [ 85.316577639417105, 27.634979948493349 ], [ 85.316702799638733, 27.634771348318306 ], [ 85.316841167937895, 27.634501201071348 ], [ 85.316683307363164, 27.634060149841588 ], [ 85.316381483732115, 27.633703448942711 ], [ 85.31616158386683, 27.633574096050769 ], [ 85.315818027597189, 27.633532869266855 ], [ 85.315811524325497, 27.633531830774533 ], [ 85.315306424217809, 27.633430810736701 ], [ 85.315287389381808, 27.633424529061905 ], [ 85.315034424158725, 27.633304703434359 ], [ 85.314865357230772, 27.633323488629998 ], [ 85.314499235709405, 27.633380919444576 ], [ 85.314479794379437, 27.633381715504644 ], [ 85.314460763512812, 27.633378087899754 ], [ 85.314208213476434, 27.633298715018814 ], [ 85.314191144611058, 27.633291084004636 ], [ 85.314176750910534, 27.633279903912406 ], [ 85.314068515249971, 27.633171668192198 ], [ 85.314056254290463, 27.633154995085661 ], [ 85.31396773117666, 27.632984022223877 ], [ 85.313859387494702, 27.632790740333995 ], [ 85.313537073781674, 27.632614271608215 ], [ 85.313527366435295, 27.632607963555142 ], [ 85.313423375952539, 27.632528441407587 ], [ 85.313063985239594, 27.632501819838893 ], [ 85.31259683266677, 27.63253013209895 ], [ 85.31220080141722, 27.632585715434555 ], [ 85.3121321999771, 27.632616897905262 ], [ 85.312112115282446, 27.632623058732829 ], [ 85.312090900635241, 27.632624027967505 ], [ 85.312070213535179, 27.632619729883249 ], [ 85.311860957795346, 27.632547572719815 ], [ 85.311841616263678, 27.632537795317329 ], [ 85.311703997386772, 27.63244206044449 ], [ 85.311522615665339, 27.632478336758869 ], [ 85.311519008908576, 27.632478976880488 ], [ 85.311100497373346, 27.632543918314528 ], [ 85.311096466840226, 27.632544445030742 ], [ 85.310757328178525, 27.632580523602385 ], [ 85.310741234866953, 27.632580706992012 ], [ 85.310481469085659, 27.632559059836471 ], [ 85.310475803486469, 27.632558395514199 ], [ 85.310258890401499, 27.632525529906367 ], [ 85.309997428117597, 27.632619388136838 ], [ 85.309984488913074, 27.632622878225618 ], [ 85.309594840245978, 27.632695035376479 ], [ 85.309583157222903, 27.632696368570667 ], [ 85.309258449991503, 27.632710799994143 ], [ 85.309240218482955, 27.632709650405516 ], [ 85.309033926808667, 27.632674082871571 ], [ 85.308748298429848, 27.632645520022649 ], [ 85.308721935851239, 27.632638410025187 ], [ 85.308454954414799, 27.63251574285362 ], [ 85.308443600450232, 27.632509334857179 ], [ 85.308284854764352, 27.632401099126554 ], [ 85.308278950128525, 27.632396630138942 ], [ 85.308055263060666, 27.632209021548682 ], [ 85.308043067481222, 27.632195830096933 ], [ 85.308034969924108, 27.63218033880883 ], [ 85.307996278667261, 27.632072443198251 ], [ 85.307830877002687, 27.632143593336064 ], [ 85.307721430049256, 27.632262074253013 ], [ 85.307628891899469, 27.63238514591022 ], [ 85.30756904830784, 27.632568513058029 ], [ 85.307528754526402, 27.632803244305364 ], [ 85.307546859479004, 27.632928338596248 ], [ 85.307618717410136, 27.633129479920303 ], [ 85.307705211136081, 27.633307830787295 ], [ 85.307895731496544, 27.633443576830125 ], [ 85.307903346433037, 27.633449460009242 ], [ 85.308181733492972, 27.633682460413066 ], [ 85.308188576084945, 27.633688646016953 ], [ 85.308307632995522, 27.633804900345758 ], [ 85.308309130029571, 27.633806388393506 ], [ 85.308457764064698, 27.633956788818843 ], [ 85.308606503127109, 27.634092937199906 ], [ 85.308614127299407, 27.634100580315614 ], [ 85.308693352051776, 27.634187648010801 ], [ 85.308712163435715, 27.63421592756103 ], [ 85.308868076342051, 27.634555059421075 ], [ 85.308875390467392, 27.634577197860711 ], [ 85.308896914765072, 27.634680373678808 ], [ 85.308964555986975, 27.634899010964549 ], [ 85.308965431118168, 27.634901998738531 ], [ 85.309011223724497, 27.63506758475468 ], [ 85.309013936423653, 27.635080680527516 ], [ 85.309042957492579, 27.635289112659759 ], [ 85.309043908386528, 27.635304539548937 ], [ 85.309041812705729, 27.63544084109153 ], [ 85.309039055208601, 27.635620185222248 ], [ 85.309038734808695, 27.635626806273546 ], [ 85.309028804718594, 27.635748662045028 ], [ 85.309027784883398, 27.635756935225047 ], [ 85.309010629570324, 27.635860661879725 ], [ 85.309001593328844, 27.635960714989622 ], [ 85.308999555286576, 27.636093260757423 ], [ 85.30899698321781, 27.636260536085938 ], [ 85.309009792452443, 27.636416433578454 ], [ 85.309038475095207, 27.63658380264928 ], [ 85.309068114536359, 27.636741200399655 ], [ 85.309069795350212, 27.636756279722963 ], [ 85.30907171410054, 27.63681011610522 ], [ 85.309122143866318, 27.636877693471682 ], [ 85.309124376230372, 27.636880879525158 ], [ 85.309319918640014, 27.637178006790634 ], [ 85.309506098840785, 27.63734186660724 ], [ 85.309834911308101, 27.637479841085849 ], [ 85.31016345485412, 27.63757268921956 ], [ 85.310394918708667, 27.637609951445231 ], [ 85.310400839690914, 27.637611123681094 ], [ 85.310620365129651, 27.637662852132895 ], [ 85.310891326699178, 27.637721494319464 ], [ 85.311069996221434, 27.637743598698943 ], [ 85.311207155634818, 27.637738843794185 ], [ 85.311702962821016, 27.637648561256771 ], [ 85.312199458125804, 27.637496448033698 ], [ 85.312440094073594, 27.637375897429408 ], [ 85.312441877071436, 27.637375031924517 ], [ 85.312605592021711, 27.637298069543256 ], [ 85.31276118333578, 27.637150408211724 ], [ 85.312894815044572, 27.636977070388866 ], [ 85.312967024362408, 27.636702100018628 ], [ 85.312975781343411, 27.636682804234574 ], [ 85.313064661302988, 27.63655028884796 ], [ 85.313082137232655, 27.636532355402114 ], [ 85.313259188847269, 27.636410898243707 ], [ 85.313565856431381, 27.636324309744854 ], [ 85.313580743625693, 27.636321528489692 ] ], [ [ 85.313192039363202, 27.635766135685788 ], [ 85.313036743870924, 27.635200489115867 ], [ 85.313380968833883, 27.635133357985993 ], [ 85.313498296359484, 27.635688354035292 ], [ 85.313192039363202, 27.635766135685788 ] ], [ [ 85.315202207742828, 27.635231912398144 ], [ 85.315166630823782, 27.635065069724078 ], [ 85.31513450244006, 27.634922041856594 ], [ 85.31515548989583, 27.63479664005601 ], [ 85.315213874660202, 27.634719238479121 ], [ 85.315268082693535, 27.634665559039981 ], [ 85.315344801931516, 27.634635925996303 ], [ 85.315440583906536, 27.634606524501784 ], [ 85.315516054935458, 27.634658383334965 ], [ 85.315587193444216, 27.634744150806377 ], [ 85.315646478358047, 27.634856943299354 ], [ 85.315690565115446, 27.634966155023768 ], [ 85.315715693094774, 27.635068344181445 ], [ 85.31573037138584, 27.635105879917816 ], [ 85.315733299964378, 27.63516364971456 ], [ 85.315728499389778, 27.635228117886388 ], [ 85.315202207742828, 27.635231912398144 ] ], [ [ 85.311025554364221, 27.635033510144201 ], [ 85.311183380422335, 27.635152896785833 ], [ 85.311011775680171, 27.635328033342972 ], [ 85.310934035145635, 27.635267323840708 ], [ 85.31078061463775, 27.635162416026208 ], [ 85.310436505804731, 27.634968632012576 ], [ 85.310496491868363, 27.634678793485389 ], [ 85.310525646033454, 27.634588474556292 ], [ 85.310564813725549, 27.634520336805856 ], [ 85.31068971184655, 27.634602838159132 ], [ 85.31080668571272, 27.634670208074599 ], [ 85.310825829696583, 27.63477966244654 ], [ 85.310896692727312, 27.634836166667164 ], [ 85.310917422489069, 27.634993038204552 ], [ 85.311025554364221, 27.635033510144201 ] ] ], [ [ [ 85.318173120644715, 27.637694364176109 ], [ 85.317378608542811, 27.63760589822752 ], [ 85.317361808076157, 27.63786126703252 ], [ 85.318169351619247, 27.637873032417183 ], [ 85.318173120644715, 27.637694364176109 ] ] ], [ [ [ 85.316312684155974, 27.63779637971664 ], [ 85.316462371297533, 27.637774417372256 ], [ 85.316584177842572, 27.637787970095665 ], [ 85.316710564216251, 27.637797553733911 ], [ 85.316877491242252, 27.637815678569453 ], [ 85.317066947760907, 27.637838101255042 ], [ 85.317193272682857, 27.637851708291922 ], [ 85.317204704935023, 27.637852752954178 ], [ 85.317210808102615, 27.63784207236144 ], [ 85.317245384930843, 27.637316510033006 ], [ 85.31700848057649, 27.636263294866914 ], [ 85.317083, 27.63625 ], [ 85.31700745612018, 27.636257403911291 ], [ 85.316957656077761, 27.635854378970457 ], [ 85.316957601152922, 27.635840030100727 ], [ 85.317007401761472, 27.63541005506676 ], [ 85.317009907391864, 27.635398459775278 ], [ 85.317151084880237, 27.634956997173077 ], [ 85.317086174619831, 27.634824085483253 ], [ 85.317079884927807, 27.634795654040211 ], [ 85.317083233557497, 27.634655015701298 ], [ 85.31705833588515, 27.634582812318367 ], [ 85.316992301458271, 27.634541089074101 ], [ 85.316984823526283, 27.634546905242861 ], [ 85.31684009826067, 27.634829464390851 ], [ 85.316837982856313, 27.634833273081775 ], [ 85.316708100131066, 27.635049744501995 ], [ 85.316699637282255, 27.635060980137393 ], [ 85.316520149055052, 27.63525427527491 ], [ 85.316351446000624, 27.635654945585944 ], [ 85.316336526145761, 27.635676704515991 ], [ 85.316313626594834, 27.635692004268485 ], [ 85.315981703702946, 27.635836318577013 ], [ 85.315957590941892, 27.63584267881118 ], [ 85.315932467728572, 27.635841682806447 ], [ 85.315651748219693, 27.635788212439397 ], [ 85.315381059027075, 27.635882638897584 ], [ 85.315256496637829, 27.636016783063532 ], [ 85.315176438362812, 27.636135130171745 ], [ 85.315170212520314, 27.63614300563875 ], [ 85.315011466883945, 27.636316182789891 ], [ 85.314997718082608, 27.636327842162331 ], [ 85.314871443092912, 27.636410822887306 ], [ 85.314852018346855, 27.636420057357363 ], [ 85.314761821901925, 27.636448920219017 ], [ 85.314742429326756, 27.636452673842967 ], [ 85.314722606749783, 27.636451828272694 ], [ 85.314703705773695, 27.636446441163564 ], [ 85.314524761231539, 27.636371284443101 ], [ 85.314393066632775, 27.636321898966248 ], [ 85.314246496167215, 27.636311041903614 ], [ 85.314218359894909, 27.636337302427219 ], [ 85.314114600965667, 27.636441061403964 ], [ 85.314091355633508, 27.636456796355475 ], [ 85.314033629913283, 27.636482051359462 ], [ 85.314009844197471, 27.636488429514461 ], [ 85.313985019678867, 27.636487636289385 ], [ 85.313736761143119, 27.636442811834943 ], [ 85.313604506535341, 27.636455407506233 ], [ 85.313318783360259, 27.636536082288906 ], [ 85.313188209572971, 27.636630061467336 ], [ 85.313112337810466, 27.636743182499529 ], [ 85.313039565642399, 27.637020297518916 ], [ 85.313028216577365, 27.637043194356902 ], [ 85.312883216969311, 27.6372312781095 ], [ 85.312875982513077, 27.637239283889873 ], [ 85.312707732490537, 27.637398958884173 ], [ 85.312687790590161, 27.637412499953037 ], [ 85.312513730886664, 27.637494325426559 ], [ 85.312267966467942, 27.637617445238277 ], [ 85.312255429076473, 27.637622456517054 ], [ 85.311979015485861, 27.63770714272458 ], [ 85.312125412844111, 27.637703224282188 ], [ 85.312346076702525, 27.637737855239966 ], [ 85.312685793467963, 27.637805879572042 ], [ 85.313143992129355, 27.63794455844225 ], [ 85.313539758385943, 27.638061179882186 ], [ 85.313747734564473, 27.638143571569056 ], [ 85.313857128590129, 27.638222102019913 ], [ 85.314008051611154, 27.638361448897324 ], [ 85.315971883401161, 27.637881395849917 ], [ 85.316312684155974, 27.63779637971664 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 23, "population": 0, "densitycap": 0.0, "avgincome": null, "area": 2.967, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.32210942446288, 27.629222491679776 ], [ 85.32206965382521, 27.629302136906858 ], [ 85.323046946531264, 27.63010949939018 ], [ 85.323821360236195, 27.630736980372838 ], [ 85.324483925873963, 27.631114141508633 ], [ 85.324614297773479, 27.63099266532419 ], [ 85.324695436909636, 27.630939274063419 ], [ 85.324811128568982, 27.630937810034737 ], [ 85.324936849691795, 27.63091071211996 ], [ 85.324778144591392, 27.630782881948811 ], [ 85.324417156034173, 27.630435121433877 ], [ 85.324032562741024, 27.62994971510593 ], [ 85.323464269740938, 27.629290387514047 ], [ 85.32242372557171, 27.627995780907188 ], [ 85.322386366397367, 27.628338728036926 ], [ 85.322256180496169, 27.628869421602907 ], [ 85.32210942446288, 27.629222491679776 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 24, "population": 0, "densitycap": 0.0, "avgincome": null, "area": 0.801, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.321874052326109, 27.629144882843661 ], [ 85.322034182186997, 27.628757634953722 ], [ 85.322103229977827, 27.628443687967856 ], [ 85.322174720909601, 27.627969517595687 ], [ 85.32221623629404, 27.627775427063888 ], [ 85.322039486640577, 27.627567249202247 ], [ 85.32181134024664, 27.627358449196876 ], [ 85.321720748783235, 27.627820941602323 ], [ 85.321643791601616, 27.628232089056549 ], [ 85.321536368829754, 27.628534124698884 ], [ 85.321467581296574, 27.628830904547975 ], [ 85.321874052326109, 27.629144882843661 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 25, "population": 0, "densitycap": 0.0, "avgincome": null, "area": 2.17, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.318696023308306, 27.629906222014732 ], [ 85.318707978157718, 27.629754699237093 ], [ 85.318709214310104, 27.629568706640661 ], [ 85.31869901029367, 27.629395452789272 ], [ 85.318683003825242, 27.62928651582898 ], [ 85.3186760879329, 27.62921345977168 ], [ 85.318661906338662, 27.629090236656143 ], [ 85.318659198499105, 27.628846963121454 ], [ 85.318675283851462, 27.628635395636405 ], [ 85.318719210591965, 27.628283944552358 ], [ 85.318824063547709, 27.627730054453981 ], [ 85.318883526320789, 27.627413131455494 ], [ 85.31894073816477, 27.627033224683927 ], [ 85.318994693513531, 27.626656140041661 ], [ 85.319015301406907, 27.626358777543487 ], [ 85.319033133982572, 27.626032764821133 ], [ 85.319076860851737, 27.625904520248103 ], [ 85.319320885745896, 27.625704299995736 ], [ 85.319472146956926, 27.625477200360873 ], [ 85.319647684960913, 27.625133066707768 ], [ 85.319685356844019, 27.624770092596261 ], [ 85.31966520795136, 27.62440641793593 ], [ 85.319628910550989, 27.624048270927371 ], [ 85.319529613539999, 27.62339747146774 ], [ 85.31946652665772, 27.623110541265373 ], [ 85.319430733081447, 27.622929823098151 ], [ 85.319461740343968, 27.622792839201313 ], [ 85.319558279651773, 27.622361898446087 ], [ 85.31957178216031, 27.621898473328148 ], [ 85.319582267972109, 27.621211802226433 ], [ 85.319575710711675, 27.620799643870509 ], [ 85.319516798142502, 27.620449807704745 ], [ 85.319538168042556, 27.620312706959719 ], [ 85.319586370761812, 27.620101528137873 ], [ 85.319687801892528, 27.619770804399618 ], [ 85.319711967157119, 27.619450591240565 ], [ 85.319831988581299, 27.619164244450641 ], [ 85.319859298579814, 27.618910742142177 ], [ 85.319599748358712, 27.619143290986411 ], [ 85.319515968764904, 27.619218003738943 ], [ 85.319529232725301, 27.619405537105603 ], [ 85.31953604882969, 27.619628348368074 ], [ 85.319532175544751, 27.619659227489429 ], [ 85.319347748821059, 27.620289770008132 ], [ 85.319341794694722, 27.620490259676949 ], [ 85.319395351121798, 27.620768639657523 ], [ 85.319414887895391, 27.620903395759637 ], [ 85.319416848182769, 27.621101439700819 ], [ 85.319391400858407, 27.621440619896518 ], [ 85.31937679438056, 27.621995825149384 ], [ 85.319390630167717, 27.622273600326572 ], [ 85.31938154834414, 27.622426317169193 ], [ 85.31934614879566, 27.622632717251317 ], [ 85.319338950349149, 27.622656658569401 ], [ 85.319259227309757, 27.622838794706208 ], [ 85.319267133536144, 27.622976211019441 ], [ 85.31930509789369, 27.623167175324191 ], [ 85.319408024347226, 27.623582358015302 ], [ 85.319488653547694, 27.624068148662335 ], [ 85.319497452261416, 27.624173153016773 ], [ 85.319505740675666, 27.624258046379094 ], [ 85.31951345220692, 27.624569460185405 ], [ 85.319516374108915, 27.624882750172205 ], [ 85.319504520739628, 27.625031182474416 ], [ 85.319493720892851, 27.625100982500186 ], [ 85.319486960869227, 27.625124909414872 ], [ 85.319439061099999, 27.625239609506483 ], [ 85.319428260913824, 27.625259343760728 ], [ 85.319342142333269, 27.625384135644456 ], [ 85.319257846459152, 27.625501669765807 ], [ 85.319243677612135, 27.625517917269764 ], [ 85.319146177725784, 27.62561081742194 ], [ 85.318963416725651, 27.62577031268658 ], [ 85.31884834409955, 27.625948293531003 ], [ 85.318811009499441, 27.626569886852 ], [ 85.318705739467319, 27.627438003145507 ], [ 85.318631178896752, 27.62776245362344 ], [ 85.318525699541155, 27.628481546932058 ], [ 85.318494348036097, 27.628620249484921 ], [ 85.318467161777491, 27.629021963821742 ], [ 85.318493641667686, 27.629230341433964 ], [ 85.318493972097883, 27.629284000673177 ], [ 85.318512966213248, 27.629374567129975 ], [ 85.318536886566662, 27.629613560041406 ], [ 85.318527025729239, 27.629762728522362 ], [ 85.318510056587556, 27.629868181049602 ], [ 85.318504072497319, 27.629943074898609 ], [ 85.318497163694175, 27.62998115414624 ], [ 85.318461363938269, 27.630106354217329 ], [ 85.318445480923117, 27.630145612582524 ], [ 85.318622607147176, 27.629979734922138 ], [ 85.318696023308306, 27.629906222014732 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "population": 0, "densitycap": 0.0, "avgincome": null, "area": 0.682, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.310429424095403, 27.623386299444693 ], [ 85.310324523959736, 27.623502739031494 ], [ 85.310250469646391, 27.623657955422996 ], [ 85.310290305867483, 27.623717842785553 ], [ 85.310385033610714, 27.623800428688941 ], [ 85.310456701656136, 27.623851164697079 ], [ 85.310548025319591, 27.623843251191953 ], [ 85.31064738401983, 27.623830515484261 ], [ 85.310688108820528, 27.623831189363113 ], [ 85.310726487405674, 27.623843342295629 ], [ 85.310758550308918, 27.623865717314633 ], [ 85.310860650149252, 27.623964958933659 ], [ 85.311036282474547, 27.624166862601339 ], [ 85.311182177142626, 27.624370571659785 ], [ 85.31130541911719, 27.624567902349739 ], [ 85.311387358980781, 27.624714179036427 ], [ 85.311500874787754, 27.624889639022967 ], [ 85.311592283760262, 27.625057506725014 ], [ 85.311705728689489, 27.62523767151573 ], [ 85.311761669803388, 27.625386607899113 ], [ 85.311893558811377, 27.625487252467863 ], [ 85.311910590811948, 27.625503049186314 ], [ 85.311989473012858, 27.625592107799914 ], [ 85.312127738601092, 27.625748210275123 ], [ 85.312188539055271, 27.625739650352887 ], [ 85.312259449085843, 27.625729530339438 ], [ 85.312193693697125, 27.625632229986181 ], [ 85.312068302640427, 27.62542838641917 ], [ 85.311978743825193, 27.625324141086722 ], [ 85.311911811275195, 27.62520619521856 ], [ 85.311824165478527, 27.625074686832029 ], [ 85.311640726672309, 27.624758329271248 ], [ 85.311503670644896, 27.624535708723371 ], [ 85.311404440635556, 27.624380100407798 ], [ 85.311328667174308, 27.624254060425287 ], [ 85.311230564099489, 27.624122424370839 ], [ 85.311172229951765, 27.624028541526055 ], [ 85.311011208935085, 27.623809621825817 ], [ 85.31077227107501, 27.623604394395034 ], [ 85.310429424095403, 27.623386299444693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "population": 0, "densitycap": 0.0, "avgincome": null, "area": 3.711, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.318188314529337, 27.622156671324287 ], [ 85.317846419001185, 27.621905460289522 ], [ 85.317692934611571, 27.621857812253747 ], [ 85.317294800569613, 27.621841536109926 ], [ 85.316410551763994, 27.622099801425986 ], [ 85.316138102197897, 27.622268193440696 ], [ 85.316019816744259, 27.622466000144165 ], [ 85.31593098090022, 27.62282004912646 ], [ 85.316076182942169, 27.623487331289553 ], [ 85.316310269355711, 27.623814946527798 ], [ 85.316694256059023, 27.624112435871236 ], [ 85.316973030417557, 27.624254247034031 ], [ 85.317187809168217, 27.624330060298398 ], [ 85.317401297122558, 27.62368713823636 ], [ 85.317657943246004, 27.623000731726734 ], [ 85.317796728000701, 27.622649731273366 ], [ 85.317898812522472, 27.622493865136434 ], [ 85.318188314529337, 27.622156671324287 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "population": 0, "densitycap": 0.0, "avgincome": null, "area": 2.091, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.322237068197765, 27.622255948889723 ], [ 85.322183685479203, 27.622256901243112 ], [ 85.322130482628154, 27.622261045100114 ], [ 85.322077687462766, 27.622268362716252 ], [ 85.32202552605554, 27.622278822756719 ], [ 85.321974221765316, 27.622292380430689 ], [ 85.321923994280894, 27.62230897768298 ], [ 85.32187505868032, 27.62232854344272 ], [ 85.321827624510064, 27.622350993927647 ], [ 85.321781894887621, 27.622376233002822 ], [ 85.321738065631905, 27.622404152592306 ], [ 85.321696324424664, 27.622434633141925 ], [ 85.321656850006917, 27.622467544131172 ], [ 85.321619811413527, 27.622502744632087 ], [ 85.321585367249384, 27.622540083912714 ], [ 85.321553665010228, 27.622579402082511 ], [ 85.321524840451062, 27.622620530776981 ], [ 85.321499017004811, 27.622663293878642 ], [ 85.321476305253711, 27.62270750827112 ], [ 85.321456802455771, 27.62275298462324 ], [ 85.321440592128198, 27.622799528199788 ], [ 85.321427743689767, 27.622846939695339 ], [ 85.321418312163459, 27.622895016087696 ], [ 85.321412337940799, 27.622943551507252 ], [ 85.321409846608802, 27.622992338118525 ], [ 85.321410848840344, 27.623041167010154 ], [ 85.321415340348352, 27.623089829089452 ], [ 85.321423301904133, 27.623138115977799 ], [ 85.321434699419584, 27.62318582090295 ], [ 85.321449484093094, 27.623232739584434 ], [ 85.32146759261849, 27.623278671108384 ], [ 85.321488947456004, 27.623323418787852 ], [ 85.321513457164286, 27.623366791005093 ], [ 85.321541016791869, 27.623408602032118 ], [ 85.321571508326542, 27.62344867282604 ], [ 85.321604801200721, 27.623486831795759 ], [ 85.321640752850485, 27.623522915536853 ], [ 85.321679209325964, 27.623556769531227 ], [ 85.321720005950723, 27.6235882488089 ], [ 85.321762968026775, 27.623617218568768 ], [ 85.321807911582766, 27.62364355475594 ], [ 85.32185464416176, 27.623667144592911 ], [ 85.321902965645393, 27.623687887062605 ], [ 85.321952669110885, 27.623705693340916 ], [ 85.322003541717109, 27.623720487177131 ], [ 85.322055365616094, 27.623732205220453 ], [ 85.322107918885933, 27.623740797291312 ], [ 85.3221609764812, 27.623746226596268 ], [ 85.322214311196646, 27.623748469885555 ], [ 85.322267694640217, 27.623747517552676 ], [ 85.322320898211174, 27.623743373675538 ], [ 85.322373694079033, 27.623736055998972 ], [ 85.322425856159285, 27.623725595858808 ], [ 85.322477161081565, 27.623712038047593 ], [ 85.322527389146273, 27.623695440622832 ], [ 85.322576325265402, 27.62367587465836 ], [ 85.322623759883641, 27.623653423939956 ], [ 85.322669489875821, 27.623628184606542 ], [ 85.322713319416707, 27.623600264738474 ], [ 85.322755060819645, 27.623569783894691 ], [ 85.322794535340293, 27.623536872600745 ], [ 85.322831573942025, 27.623501671789793 ], [ 85.322866018019823, 27.623464332199109 ], [ 85.322897720079396, 27.623425013724532 ], [ 85.322926544368812, 27.623383884735777 ], [ 85.322952367459777, 27.623341121355359 ], [ 85.322975078776139, 27.623296906704436 ], [ 85.32299458106732, 27.623251430118582 ], [ 85.323010790824767, 27.623204886337025 ], [ 85.323023638639498, 27.623157474668698 ], [ 85.323033069499161, 27.623109398138748 ], [ 85.32303904302367, 27.623060862619145 ], [ 85.323041533637948, 27.623012075947063 ], [ 85.323040530681382, 27.622963247034917 ], [ 85.323036038453466, 27.622914584975756 ], [ 85.323028076195214, 27.622866298147834 ], [ 85.323016678006738, 27.622818593322389 ], [ 85.323001892701171, 27.622771674778161 ], [ 85.322983783595504, 27.62272574342667 ], [ 85.322962428239421, 27.622680995951921 ], [ 85.322937918083156, 27.622637623968167 ], [ 85.322910358085863, 27.622595813199375 ], [ 85.322879866266007, 27.622555742684046 ], [ 85.322846573196102, 27.622517584008477 ], [ 85.322810621443452, 27.622481500572093 ], [ 85.32277216495963, 27.62244764688776 ], [ 85.322731368421231, 27.622416167920147 ], [ 85.322688406524762, 27.622387198465056 ], [ 85.322643463238521, 27.622360862572169 ], [ 85.322596731014798, 27.622337273013944 ], [ 85.322548409965904, 27.62231653080271 ], [ 85.322498707007185, 27.622298724758121 ], [ 85.322447834971072, 27.622283931126915 ], [ 85.322396011695815, 27.62227221325638 ], [ 85.322343459092593, 27.622263621323107 ], [ 85.322290402195492, 27.62225819211821 ], [ 85.322237068197765, 27.622255948889723 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 29, "population": 0, "densitycap": 0.0, "avgincome": null, "area": 0.459, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.320299046536491, 27.633936132772092 ], [ 85.320293038873658, 27.634004731546288 ], [ 85.320360344857264, 27.634029404979373 ], [ 85.320683592154836, 27.634285211919387 ], [ 85.320768879743511, 27.634367075742599 ], [ 85.320914533582311, 27.634504184412844 ], [ 85.320993949720446, 27.634555900379386 ], [ 85.321163260283768, 27.634525994012229 ], [ 85.321493067150101, 27.634490511212725 ], [ 85.321554179365862, 27.634496890344309 ], [ 85.321628987664525, 27.634502499967258 ], [ 85.321654270072003, 27.634466399430604 ], [ 85.321665203183656, 27.634425894030826 ], [ 85.321418695269145, 27.634345141000956 ], [ 85.32095853163861, 27.634143720850791 ], [ 85.320933149571431, 27.634125708076422 ], [ 85.320655440237019, 27.633821608304899 ], [ 85.320443005082709, 27.6336745377778 ], [ 85.320352464106122, 27.633661240189181 ], [ 85.320299046536491, 27.633936132772092 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 30, "population": 0, "densitycap": 0.0, "avgincome": null, "area": 0.596, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.319514545227563, 27.619197900688054 ], [ 85.319598473867188, 27.619086847729832 ], [ 85.319720628989131, 27.618938802419436 ], [ 85.319846388915963, 27.618360627464622 ], [ 85.320097648300617, 27.61741442593722 ], [ 85.320137563234965, 27.617126620170268 ], [ 85.320155987061753, 27.616890247048413 ], [ 85.31988467841299, 27.616767398491234 ], [ 85.319699983454797, 27.616727204940432 ], [ 85.319802475019401, 27.616841152292 ], [ 85.319854275090691, 27.616907752221252 ], [ 85.319895086183678, 27.617000298059068 ], [ 85.319908086358865, 27.617080898044524 ], [ 85.31990945168647, 27.617132335600385 ], [ 85.319900651863279, 27.617214235623454 ], [ 85.319898325887735, 27.617229862480386 ], [ 85.319600322347284, 27.618401561039409 ], [ 85.319520068389181, 27.618879107465816 ], [ 85.319502912276263, 27.61906323965697 ], [ 85.319514545227563, 27.619197900688054 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 31, "population": 0, "densitycap": 0.0, "avgincome": null, "area": 0.191, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.316052542587315, 27.640169320277 ], [ 85.316191998998292, 27.640280235310986 ], [ 85.316308319798779, 27.640390869246872 ], [ 85.316524036014471, 27.640584110814011 ], [ 85.31661194714691, 27.64050995986592 ], [ 85.316681507149468, 27.640425282152737 ], [ 85.316734430336965, 27.640369253308883 ], [ 85.316240374256793, 27.639992313864834 ], [ 85.316041179769712, 27.64015578720403 ], [ 85.316052542587315, 27.640169320277 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 32, "population": 0, "densitycap": 0.0, "avgincome": null, "area": 0.173, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.315800662018887, 27.638938036865149 ], [ 85.315889298012976, 27.638816497233915 ], [ 85.315991815126381, 27.63869512614043 ], [ 85.316171131458574, 27.638469587981408 ], [ 85.316105129762434, 27.638425648763132 ], [ 85.316001381664606, 27.638375941469516 ], [ 85.315931785571891, 27.638336967405614 ], [ 85.31558053462831, 27.638824634618658 ], [ 85.315771348067983, 27.638963440497385 ], [ 85.315800662018887, 27.638938036865149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 33, "population": 0, "densitycap": 0.0, "avgincome": null, "area": 0.285, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.311025554364235, 27.635033510144165 ], [ 85.310917422489069, 27.634993038204527 ], [ 85.310896692727297, 27.634836166667178 ], [ 85.310825829696597, 27.634779662446515 ], [ 85.31080668571272, 27.634670208074592 ], [ 85.310689711846535, 27.634602838159115 ], [ 85.31056481372552, 27.634520336805839 ], [ 85.31052564603344, 27.634588474556278 ], [ 85.310496491868349, 27.634678793485385 ], [ 85.310436505804731, 27.634968632012576 ], [ 85.31078061463775, 27.635162416026187 ], [ 85.310934035145621, 27.635267323840701 ], [ 85.311011775680171, 27.635328033342951 ], [ 85.311183380422349, 27.635152896785833 ], [ 85.311025554364235, 27.635033510144165 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 34, "population": 0, "densitycap": 0.0, "avgincome": null, "area": 0.201, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.314611937443004, 27.640654299165789 ], [ 85.314680183098247, 27.640555792066166 ], [ 85.31474644418681, 27.64046235499514 ], [ 85.314684197257378, 27.640418297705448 ], [ 85.314746528407397, 27.640332454144101 ], [ 85.314616421908326, 27.640251913685169 ], [ 85.314765022020353, 27.640058866159954 ], [ 85.314705514385338, 27.640022684840371 ], [ 85.314637447892309, 27.639985147677645 ], [ 85.314570350770595, 27.639946550090929 ], [ 85.314269889472527, 27.640362512538573 ], [ 85.314378119569895, 27.640421368915238 ], [ 85.314430405053002, 27.640493323276861 ], [ 85.314429676327663, 27.640540860196122 ], [ 85.314492954480514, 27.640579835944891 ], [ 85.314611937443004, 27.640654299165789 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 35, "population": 0, "densitycap": 0.0, "avgincome": null, "area": 0.313, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.315202207742828, 27.635231912398158 ], [ 85.315728499389778, 27.635228117886356 ], [ 85.315733299964364, 27.635163649714546 ], [ 85.315730371385854, 27.635105879917806 ], [ 85.315715693094759, 27.635068344181423 ], [ 85.315690565115446, 27.634966155023783 ], [ 85.315646478358047, 27.634856943299337 ], [ 85.31558719344423, 27.634744150806331 ], [ 85.315516054935443, 27.634658383334973 ], [ 85.31544058390655, 27.634606524501741 ], [ 85.315344801931502, 27.634635925996317 ], [ 85.315268082693507, 27.634665559039998 ], [ 85.315213874660188, 27.634719238479128 ], [ 85.315155489895815, 27.634796640055988 ], [ 85.31513450244006, 27.63492204185658 ], [ 85.315166630823768, 27.635065069724039 ], [ 85.315202207742828, 27.635231912398158 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 36, "population": 0, "densitycap": 0.0, "avgincome": null, "area": 0.21, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.313192039363202, 27.635766135685785 ], [ 85.313498296359455, 27.635688354035274 ], [ 85.313380968833897, 27.635133357985993 ], [ 85.31303674387091, 27.635200489115888 ], [ 85.313192039363202, 27.635766135685785 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 37, "population": 0, "densitycap": 0.0, "avgincome": null, "area": 0.34, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.321803454229666, 27.618498760230878 ], [ 85.322203955630897, 27.618737939023401 ], [ 85.322650048579206, 27.618237308390416 ], [ 85.322211376202404, 27.618001065362833 ], [ 85.321803454229666, 27.618498760230878 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 38, "population": 0, "densitycap": 0.0, "avgincome": null, "area": 0.058, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.321843441580427, 27.620002037729797 ], [ 85.321985073684473, 27.62009035285455 ], [ 85.32211505573683, 27.61994249491342 ], [ 85.321811213945878, 27.619740144756246 ], [ 85.321843441580427, 27.620002037729797 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 39, "population": 0, "densitycap": 0.0, "avgincome": null, "area": 0.136, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.32215514122916, 27.62018920023802 ], [ 85.322687623060773, 27.620525066260043 ], [ 85.322827238440837, 27.620370531846895 ], [ 85.32227744729316, 27.620044645436288 ], [ 85.32215514122916, 27.62018920023802 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "population": 0, "densitycap": 200.0, "avgincome": "midIncome", "area": 5.0, "luf": "RESIDENTIAL (MODERATE DENSITY)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.319846026177018, 27.637013085682096 ], [ 85.31852056720659, 27.637311816805514 ], [ 85.318445249110653, 27.637549723325272 ], [ 85.318417277055786, 27.638142056535784 ], [ 85.318424893570906, 27.638251505182552 ], [ 85.31842510770025, 27.6382608733621 ], [ 85.318419728872996, 27.638486904893668 ], [ 85.318418362026108, 27.63869717847863 ], [ 85.318435445806898, 27.638920930222291 ], [ 85.318435530181944, 27.638935036693915 ], [ 85.318422230641232, 27.639141736738033 ], [ 85.318422108503228, 27.639143415677282 ], [ 85.318414008724659, 27.639243215701494 ], [ 85.318413926069084, 27.639244176980608 ], [ 85.318409168103429, 27.639296569991231 ], [ 85.31840421527221, 27.639367460267273 ], [ 85.318369152533222, 27.639510697517665 ], [ 85.318375493653278, 27.639594651465544 ], [ 85.318431119481289, 27.639792399236168 ], [ 85.318436495601972, 27.639808301612543 ], [ 85.318600993780748, 27.639979740714658 ], [ 85.318697844599185, 27.640121953623652 ], [ 85.31872028833736, 27.640168978414454 ], [ 85.318720337045008, 27.64016923819921 ], [ 85.318725477744721, 27.640180009140966 ], [ 85.318730399284448, 27.640206258408153 ], [ 85.318746680352447, 27.640513103984429 ], [ 85.318777319943308, 27.640825134425153 ], [ 85.318814675164646, 27.640986629606434 ], [ 85.318837475521121, 27.641079495939195 ], [ 85.318842457671707, 27.641096326267377 ], [ 85.318843662815169, 27.641100759076025 ], [ 85.318922945254613, 27.641420508417475 ], [ 85.319281853752159, 27.640767013839469 ], [ 85.319469025558448, 27.640126854149855 ], [ 85.319922751087432, 27.638468556686536 ], [ 85.319937005346148, 27.637535563438707 ], [ 85.319849161855942, 27.637125946350416 ], [ 85.319847822019341, 27.637114317954151 ], [ 85.319846026177018, 27.637013085682096 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "population": 0, "densitycap": 125.0, "avgincome": null, "area": 6.991, "luf": "INDUSTRY", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.320154068207614, 27.636498462590193 ], [ 85.320708056351847, 27.636682832113546 ], [ 85.322966640978152, 27.63637128250932 ], [ 85.323395753059387, 27.636063654020759 ], [ 85.323562533929888, 27.635404234860143 ], [ 85.323249281516695, 27.635098021679546 ], [ 85.32273713788436, 27.634789332279023 ], [ 85.322045839416106, 27.634550584807496 ], [ 85.321791700313767, 27.634467904896312 ], [ 85.321682707041759, 27.634431628063481 ], [ 85.321665203183656, 27.634425894030826 ], [ 85.321654270072003, 27.634466399430604 ], [ 85.321554179365862, 27.634496890344309 ], [ 85.321493067150101, 27.634490511212725 ], [ 85.321163260283768, 27.634525994012229 ], [ 85.320993949720446, 27.634555900379386 ], [ 85.320914533582311, 27.634504184412844 ], [ 85.320683592154836, 27.634285211919387 ], [ 85.320360344857264, 27.634029404979373 ], [ 85.320293038873658, 27.634004731546288 ], [ 85.320259498684464, 27.634387709642482 ], [ 85.320258494164221, 27.634394597172818 ], [ 85.32014669011879, 27.63494025213738 ], [ 85.319987023548038, 27.63639178252458 ], [ 85.320154068207614, 27.636498462590193 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "population": 0, "densitycap": 250.0, "avgincome": "lowIncomeB", "area": 26.775, "luf": "RESIDENTIAL (MODERATE DENSITY)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.323562533929888, 27.635404234860143 ], [ 85.323395753059387, 27.636063654020759 ], [ 85.322966640978152, 27.63637128250932 ], [ 85.320708056351847, 27.636682832113546 ], [ 85.320295987959369, 27.636545694330696 ], [ 85.320154068207614, 27.636498462590193 ], [ 85.319987023548038, 27.63639178252458 ], [ 85.319989565103171, 27.636535038834744 ], [ 85.319991969954287, 27.636670589932823 ], [ 85.319996603317662, 27.636931753205925 ], [ 85.319999700229161, 27.637106313521844 ], [ 85.320087755745618, 27.63751691662906 ], [ 85.32008909806315, 27.637530535122032 ], [ 85.32007462312454, 27.638478058347317 ], [ 85.320072469694978, 27.638493161259007 ], [ 85.319616568417246, 27.640159418941597 ], [ 85.319616276552949, 27.640160450345764 ], [ 85.319427031903032, 27.640807702394032 ], [ 85.319421755518277, 27.640820385433749 ], [ 85.318976277911958, 27.641631504089748 ], [ 85.318984005725426, 27.641657544010005 ], [ 85.318980665590772, 27.641658330148999 ], [ 85.318987300651784, 27.64171646083123 ], [ 85.318971225470932, 27.641782696596504 ], [ 85.318932953529483, 27.641841266727365 ], [ 85.319127577888651, 27.641893388944482 ], [ 85.319387552301933, 27.641872433386318 ], [ 85.319812434476262, 27.641769851652974 ], [ 85.320225345482797, 27.641616648348851 ], [ 85.321401282548521, 27.641095708862604 ], [ 85.323817758844442, 27.639973773439532 ], [ 85.325083532142315, 27.639197048915811 ], [ 85.325946559390843, 27.638477859542018 ], [ 85.326147932415523, 27.637758670168264 ], [ 85.325889024240951, 27.636895642919715 ], [ 85.325857497045959, 27.636957229944223 ], [ 85.325364005789226, 27.636756859097222 ], [ 85.325358639566531, 27.636754447611203 ], [ 85.324702009567261, 27.63642974039703 ], [ 85.324691637118079, 27.636423568202442 ], [ 85.324099948667197, 27.636005056714367 ], [ 85.324087662052165, 27.635994105171871 ], [ 85.323562533929888, 27.635404234860143 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 43, "population": 0, "densitycap": 250.0, "avgincome": "midIncome", "area": 2.098, "luf": "COMMERCIAL AND RESIDENTIAL", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.324709553667944, 27.63554356689701 ], [ 85.324119572592537, 27.634910632187907 ], [ 85.323930098897009, 27.634521656322043 ], [ 85.323484215659519, 27.634291958896689 ], [ 85.322800099060075, 27.634665883913691 ], [ 85.322815218133016, 27.634672935966677 ], [ 85.323341964967312, 27.634990427120215 ], [ 85.323355548265383, 27.635000897519202 ], [ 85.3236766474826, 27.635314780855794 ], [ 85.323680020893434, 27.63531831440373 ], [ 85.324201332483582, 27.635903896951348 ], [ 85.324781268798787, 27.636314095657507 ], [ 85.325429797243189, 27.636634796455258 ], [ 85.325829083456327, 27.636796917616124 ], [ 85.325399975466766, 27.636090150821051 ], [ 85.324709553667944, 27.63554356689701 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 44, "population": 556, "densitycap": 0.0, "avgincome": "midIncome", "area": 1.381, "luf": "COMMERCIAL AND RESIDENTIAL", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.321097059588823, 27.626450885587527 ], [ 85.320774307752927, 27.626993486533816 ], [ 85.32040008319575, 27.627807178992274 ], [ 85.320194136107517, 27.628180037635889 ], [ 85.319311385500455, 27.629816161517706 ], [ 85.319031559119637, 27.630032066803967 ], [ 85.318804413650994, 27.630226806038625 ], [ 85.318383475710064, 27.630585075604174 ], [ 85.318485244070018, 27.630681386183333 ], [ 85.318539246325585, 27.630756378849849 ], [ 85.318771641298994, 27.630529548747553 ], [ 85.318938157794847, 27.630374176097643 ], [ 85.319025652029822, 27.630320830522912 ], [ 85.319457595143689, 27.629926754219458 ], [ 85.319878251877824, 27.629292952721997 ], [ 85.319922700809613, 27.629220284091577 ], [ 85.320978832703346, 27.627291088552976 ], [ 85.321188007335905, 27.626902295152334 ], [ 85.321358538301951, 27.626729711964007 ], [ 85.321097059588823, 27.626450885587527 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 45, "population": 1107, "densitycap": 0.0, "avgincome": "midIncome", "area": 1.154, "luf": "COMMERCIAL AND RESIDENTIAL", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.318728373583824, 27.630117404539359 ], [ 85.318938935611385, 27.62992111924595 ], [ 85.319200948076102, 27.629722098820249 ], [ 85.319460411947844, 27.629252259286787 ], [ 85.319733176033665, 27.628713357766362 ], [ 85.320282309792361, 27.627716578803525 ], [ 85.320634862224594, 27.626939525513549 ], [ 85.320969488156479, 27.626376300068898 ], [ 85.32075319406448, 27.626310707999401 ], [ 85.320570630807836, 27.626620459781485 ], [ 85.319149757399586, 27.629338531043718 ], [ 85.319090924939573, 27.629472252835413 ], [ 85.319026013934618, 27.629612556105911 ], [ 85.318939747544675, 27.629683386467381 ], [ 85.318830702244625, 27.629777899313353 ], [ 85.318753360015492, 27.629851499813505 ], [ 85.31860469266411, 27.629996111551662 ], [ 85.318445480923103, 27.630145612582535 ], [ 85.318198840195706, 27.630573830387434 ], [ 85.318268992606392, 27.630546418212354 ], [ 85.318728373583824, 27.630117404539359 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 46, "population": 443, "densitycap": 0.0, "avgincome": "midIncome", "area": 0.344, "luf": "COMMERCIAL AND RESIDENTIAL", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.317439849352937, 27.624416513512376 ], [ 85.317573156593014, 27.624346423487186 ], [ 85.317709410669949, 27.623938116280847 ], [ 85.317801428254228, 27.623686334966841 ], [ 85.317871409137069, 27.623507493456025 ], [ 85.31799230191146, 27.62322411723494 ], [ 85.318071267030518, 27.623044053506234 ], [ 85.318145444511231, 27.622883897254258 ], [ 85.318191751929774, 27.622787292900703 ], [ 85.318246596652784, 27.622718743870671 ], [ 85.318532378818247, 27.622428876215281 ], [ 85.318397669771315, 27.622318268912018 ], [ 85.31829330150012, 27.622449344020414 ], [ 85.318128133243562, 27.622638097617997 ], [ 85.318028559301425, 27.622737042040683 ], [ 85.317940280771367, 27.622976972645993 ], [ 85.317805486562889, 27.62329586495774 ], [ 85.317673584778916, 27.623632699214788 ], [ 85.317439849352937, 27.624416513512376 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 47, "population": 273, "densitycap": 0.0, "avgincome": "midIncome", "area": 0.273, "luf": "COMMERCIAL AND RESIDENTIAL", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.317372318955591, 27.624112076006515 ], [ 85.317529056681082, 27.623590732542393 ], [ 85.317797461696628, 27.622930657209675 ], [ 85.317889109790443, 27.622681354312132 ], [ 85.317904805136422, 27.622657176226372 ], [ 85.318009915488403, 27.622552990285484 ], [ 85.318170531630614, 27.622369535543893 ], [ 85.31828328694111, 27.622228603561897 ], [ 85.318188314529337, 27.622156671324287 ], [ 85.318043773537894, 27.62232529165928 ], [ 85.317906783877419, 27.622488679248058 ], [ 85.317796728000701, 27.622649731273366 ], [ 85.317750115132142, 27.622766297369591 ], [ 85.317669980134667, 27.622970289339616 ], [ 85.317574420595548, 27.623224116233271 ], [ 85.317493213414949, 27.623442011100515 ], [ 85.317444841209564, 27.623575859223646 ], [ 85.317401297122558, 27.62368713823636 ], [ 85.317187809168217, 27.624330060298398 ], [ 85.317234649632255, 27.62434527004558 ], [ 85.317295592539054, 27.624366640550548 ], [ 85.317372318955591, 27.624112076006515 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "population": 1049, "densitycap": 250.0, "avgincome": "midIncome", "area": 10.127, "luf": "CITY CENTER", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.324800577212557, 27.628088047518013 ], [ 85.325176360267562, 27.627618832248825 ], [ 85.325058248182515, 27.627574829925809 ], [ 85.324532952904732, 27.627379131037731 ], [ 85.323934532577923, 27.626934151820326 ], [ 85.323658338580927, 27.626228322716884 ], [ 85.323514384414281, 27.6252005175729 ], [ 85.32347996519249, 27.625105597603916 ], [ 85.32339882922831, 27.624938236678727 ], [ 85.323311291162469, 27.624798750173738 ], [ 85.323251107212542, 27.624727477411138 ], [ 85.323034088630337, 27.624553149283035 ], [ 85.322438481760841, 27.624264276515955 ], [ 85.322282978237396, 27.624226938206711 ], [ 85.322011865251383, 27.624231823515323 ], [ 85.321732350926411, 27.624179020039339 ], [ 85.321752608939192, 27.624385510748166 ], [ 85.32161154394403, 27.624833393086522 ], [ 85.321618273172234, 27.624981433848276 ], [ 85.321612041024807, 27.625011144174319 ], [ 85.321529616289581, 27.625174276164827 ], [ 85.321303736585278, 27.625325399933292 ], [ 85.321163075720136, 27.625700496170339 ], [ 85.321120339485077, 27.626398529102321 ], [ 85.321111607532401, 27.626426535261697 ], [ 85.321097059588837, 27.626450885587545 ], [ 85.321358538301951, 27.626729711964018 ], [ 85.321804903955993, 27.627057686273261 ], [ 85.324032085185308, 27.629047595932786 ], [ 85.324800577212557, 27.628088047518013 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 53, "population": 0, "densitycap": 350.0, "avgincome": "lowIncomeB", "area": 20.49, "luf": "RESIDENTIAL (HIGH DENSITY)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.319073707669247, 27.618358347595272 ], [ 85.319577918637265, 27.616969723882153 ], [ 85.31952372818867, 27.61690996974383 ], [ 85.319518135670791, 27.61690331571458 ], [ 85.319409735611586, 27.616763915722821 ], [ 85.319408634101464, 27.61676247556586 ], [ 85.31937653538327, 27.616719803814785 ], [ 85.319337542642117, 27.616703020521289 ], [ 85.311900915749362, 27.616512620032623 ], [ 85.31202519547756, 27.616534314097919 ], [ 85.312002482738549, 27.616637554420308 ], [ 85.311967651812338, 27.61682674003513 ], [ 85.311951187805349, 27.616866650418441 ], [ 85.311874260359573, 27.616980516418362 ], [ 85.311842738241623, 27.617011920200692 ], [ 85.311800480182583, 27.61703083346956 ], [ 85.31158483666205, 27.617085609979039 ], [ 85.311557735411995, 27.617089729871292 ], [ 85.311272136533702, 27.617105082098234 ], [ 85.311041942353611, 27.617132601056895 ], [ 85.310854603072059, 27.617375645845929 ], [ 85.310838517303509, 27.617392644375503 ], [ 85.310795575613156, 27.617429863015829 ], [ 85.310661088046771, 27.617626407594202 ], [ 85.310629822336168, 27.617657344223776 ], [ 85.310477872236802, 27.617760728835705 ], [ 85.310437479147879, 27.617779107493782 ], [ 85.310272235260555, 27.617823384763216 ], [ 85.310205117814178, 27.617902614228516 ], [ 85.310208901910059, 27.617955963945047 ], [ 85.310335409726122, 27.618130106683754 ], [ 85.310489305642392, 27.618308711919823 ], [ 85.31068717050303, 27.618523085338524 ], [ 85.311007081027881, 27.618759390662422 ], [ 85.311033254409423, 27.618785899819269 ], [ 85.311190953444552, 27.619007857225981 ], [ 85.311208085494215, 27.619045887349721 ], [ 85.311208836294099, 27.619086859482813 ], [ 85.311162066589745, 27.619335027908434 ], [ 85.311918787545437, 27.619109840625441 ], [ 85.312320853701337, 27.619114733103217 ], [ 85.313340153569243, 27.61907937077217 ], [ 85.314469230545072, 27.61887817381335 ], [ 85.31543418872856, 27.618889895976391 ], [ 85.316616869606548, 27.618689332297379 ], [ 85.317125787627234, 27.618719387655194 ], [ 85.318067954985608, 27.618468132927664 ], [ 85.319073707669247, 27.618358347595272 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 54, "population": 1308, "densitycap": 100.0, "avgincome": "highIncome", "area": 6.186, "luf": "RESIDENTIAL (LOW DENSITY)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.313609400942809, 27.625714491601098 ], [ 85.312680222863619, 27.625808231105271 ], [ 85.312285903721275, 27.625864787996527 ], [ 85.312222086579524, 27.625872464355293 ], [ 85.312227999015732, 27.625880430756506 ], [ 85.312233528907612, 27.625888615085479 ], [ 85.312338314870757, 27.626059701564291 ], [ 85.312341174904191, 27.626064658686246 ], [ 85.312453465316253, 27.626271712036939 ], [ 85.312462054448858, 27.626292586140771 ], [ 85.312521451080656, 27.626497554521773 ], [ 85.312601831751508, 27.626683878651995 ], [ 85.312610048623327, 27.626717840601 ], [ 85.312627419225976, 27.626985923325957 ], [ 85.312622269779197, 27.627024892535832 ], [ 85.312532248786482, 27.627291668576731 ], [ 85.312514295276287, 27.627324419052243 ], [ 85.312485555050003, 27.627350361963181 ], [ 85.312332017374828, 27.627450035708232 ], [ 85.312215826099049, 27.627617292552305 ], [ 85.312107733740532, 27.627803438283497 ], [ 85.312101149360458, 27.627813473728441 ], [ 85.311947571552807, 27.628022074739562 ], [ 85.311927798464055, 27.628042914632765 ], [ 85.31190298601949, 27.628058916658301 ], [ 85.311620443276709, 27.628198189554883 ], [ 85.311438993634496, 27.628390294344335 ], [ 85.311399524397288, 27.628418208139184 ], [ 85.310991653357533, 27.628603107644128 ], [ 85.310778168544175, 27.628713685333363 ], [ 85.310729157829499, 27.628728218224367 ], [ 85.310268501036632, 27.628776036563533 ], [ 85.310141442051645, 27.628861595949335 ], [ 85.310135010815614, 27.628898116194051 ], [ 85.310284176005482, 27.629049856926144 ], [ 85.310408962190039, 27.629164081342314 ], [ 85.310434480811466, 27.629198062219828 ], [ 85.310746819982072, 27.62984284459738 ], [ 85.310756714184393, 27.629877844397587 ], [ 85.31157990970793, 27.629575954325883 ], [ 85.312121543844626, 27.629224346226323 ], [ 85.312933530975997, 27.628726774362871 ], [ 85.313280055165976, 27.627984735798584 ], [ 85.313799603539579, 27.626886598093147 ], [ 85.313609400942809, 27.625714491601098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "population": 0, "densitycap": 100.0, "avgincome": "highIncome", "area": 20.416, "luf": "RESIDENTIAL (LOW DENSITY)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.309233327579378, 27.625481528410862 ], [ 85.308837317503219, 27.626593344437524 ], [ 85.308123982384515, 27.627741708770941 ], [ 85.307851395427249, 27.627991049371548 ], [ 85.307140578180267, 27.628580794480513 ], [ 85.306119357849113, 27.629190623746329 ], [ 85.306590045343484, 27.629965310371723 ], [ 85.307795832645638, 27.631438594206269 ], [ 85.30817074729427, 27.631385379476175 ], [ 85.308505195441043, 27.631349465563481 ], [ 85.309661743779813, 27.631313196126413 ], [ 85.309887290713846, 27.631057215698522 ], [ 85.309976861560841, 27.630782613568577 ], [ 85.310094014856062, 27.63050080175336 ], [ 85.310177093349438, 27.630162419103254 ], [ 85.310152634614909, 27.629916357540807 ], [ 85.310011867348464, 27.629662726166845 ], [ 85.309527086892302, 27.629195333831031 ], [ 85.309383158273633, 27.628929959623004 ], [ 85.309356161184539, 27.628888551122365 ], [ 85.309358355855011, 27.628833405038488 ], [ 85.30960042574867, 27.62848108203389 ], [ 85.310160792612621, 27.628289925261456 ], [ 85.310514068647095, 27.628257258845185 ], [ 85.310894156553189, 27.627992111685902 ], [ 85.311272670701257, 27.627568988584741 ], [ 85.311566899682177, 27.627397618041723 ], [ 85.311801471728856, 27.627140003908035 ], [ 85.312048905938866, 27.626804246217091 ], [ 85.312030613978948, 27.626539513410027 ], [ 85.311925240681148, 27.626295029871581 ], [ 85.311741983675006, 27.626098656742634 ], [ 85.311403696730054, 27.625822776528572 ], [ 85.311163448577375, 27.625569233607308 ], [ 85.310733271201684, 27.624971809300078 ], [ 85.310569388502543, 27.624766112970441 ], [ 85.310326149490535, 27.624334459396547 ], [ 85.31016924608376, 27.624369584942681 ], [ 85.310125177117015, 27.624369499787463 ], [ 85.309869452742646, 27.624304285061328 ], [ 85.309233327579378, 27.625481528410862 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "population": 0, "densitycap": 200.0, "avgincome": "midIncome", "area": 8.071, "luf": "RESIDENTIAL (MODERATE DENSITY)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.30832539292976, 27.638336712808844 ], [ 85.3079332460986, 27.638202264188696 ], [ 85.307711260231699, 27.638425340338586 ], [ 85.307611698696391, 27.63852606264307 ], [ 85.307592766124472, 27.638545215916068 ], [ 85.307797005952608, 27.639145210929463 ], [ 85.307988706844085, 27.639756491763617 ], [ 85.308553444434168, 27.640138299554117 ], [ 85.309390601444974, 27.640626111613347 ], [ 85.30983065007527, 27.641628868841586 ], [ 85.310754582856376, 27.641649484680453 ], [ 85.312517056603454, 27.641499939018242 ], [ 85.312588382238957, 27.640821266166842 ], [ 85.312501141415737, 27.640672438277303 ], [ 85.312269803830418, 27.640365105437063 ], [ 85.31203608200633, 27.640169396737104 ], [ 85.31149404154921, 27.640140809915838 ], [ 85.311187495073611, 27.639939676722083 ], [ 85.31094522808813, 27.639899655176009 ], [ 85.310752828028953, 27.639784755093455 ], [ 85.310394507432335, 27.639530100093786 ], [ 85.310188204302747, 27.639580939137296 ], [ 85.309900957697707, 27.639557222008964 ], [ 85.309128407419934, 27.639075971602551 ], [ 85.308393342708058, 27.638867383720822 ], [ 85.308273943317303, 27.63881718446358 ], [ 85.308155388324337, 27.63874679123397 ], [ 85.30811759071571, 27.638705787478749 ], [ 85.308107630255776, 27.63865091711881 ], [ 85.308125008034651, 27.638526956252282 ], [ 85.308242980387931, 27.638388927033869 ], [ 85.30832539292976, 27.638336712808844 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 59, "population": 0, "densitycap": 50.0, "avgincome": "lowIncomeA", "area": 5.944, "luf": "AGRICULTURE", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.312077668394835, 27.632030156932601 ], [ 85.311954781643124, 27.631435544244805 ], [ 85.311968521394078, 27.630540207717921 ], [ 85.312077749362814, 27.629974384815391 ], [ 85.312121543844626, 27.629224346226323 ], [ 85.31157990970793, 27.629575954325883 ], [ 85.310756714184393, 27.629877844397587 ], [ 85.31077525537691, 27.630069406767582 ], [ 85.310775711549155, 27.630080638246586 ], [ 85.310773802081357, 27.630204983718638 ], [ 85.310773576343948, 27.630210347227216 ], [ 85.310759752334619, 27.63041108216262 ], [ 85.310757545367125, 27.630426232169842 ], [ 85.310699882015513, 27.630683834001712 ], [ 85.310693251251124, 27.630703709777759 ], [ 85.310582112130092, 27.630950925050406 ], [ 85.310493185513394, 27.631150576517115 ], [ 85.310491690766682, 27.631153787194659 ], [ 85.310380769328361, 27.631382039477238 ], [ 85.310370447648509, 27.631399091559121 ], [ 85.310293654536039, 27.631503390894519 ], [ 85.310257415730547, 27.631535734571884 ], [ 85.309953915666611, 27.631713805567841 ], [ 85.309908077767417, 27.631730393288422 ], [ 85.30963344675942, 27.631777271619285 ], [ 85.309623594256621, 27.6317785979513 ], [ 85.309116292271668, 27.631828804534909 ], [ 85.308801732845055, 27.631901737010825 ], [ 85.308800377384827, 27.631902044173639 ], [ 85.308493195853814, 27.631970048559246 ], [ 85.3084862220161, 27.631971407800613 ], [ 85.308140524634169, 27.632029745757563 ], [ 85.308173777287166, 27.632122474781589 ], [ 85.308380328065539, 27.632295710819708 ], [ 85.308530635726044, 27.632398193284281 ], [ 85.3087791748532, 27.632512386922642 ], [ 85.309053886337452, 27.632539858049412 ], [ 85.309059850683582, 27.632540669123657 ], [ 85.309260068636746, 27.632575189461267 ], [ 85.309569681871437, 27.632561428860718 ], [ 85.309946902182276, 27.632491573239459 ], [ 85.310222020179239, 27.632392812924572 ], [ 85.310242290548487, 27.632388294797675 ], [ 85.310263176290874, 27.632388864120433 ], [ 85.310498475878035, 27.63242451556869 ], [ 85.310747336909287, 27.632445253985932 ], [ 85.311076416282788, 27.632410245525428 ], [ 85.311491107906861, 27.63234589681387 ], [ 85.311705784456208, 27.632302961497281 ], [ 85.311728036866143, 27.632301500913883 ], [ 85.311749806458167, 27.632305858997427 ], [ 85.311769216671209, 27.632315660076863 ], [ 85.312077668394835, 27.632030156932601 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 60, "population": 0, "densitycap": 0.0, "avgincome": null, "area": 6.956, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.305300043567712, 27.633159531146344 ], [ 85.305525805860697, 27.633221768330277 ], [ 85.305870629207718, 27.633464782168787 ], [ 85.306045627363872, 27.633559215761096 ], [ 85.306708275616998, 27.63391679472825 ], [ 85.307039922435465, 27.633848689162143 ], [ 85.306706131816028, 27.633428436057269 ], [ 85.306598655475497, 27.632957778148441 ], [ 85.306789330349289, 27.632203860323365 ], [ 85.306999753605254, 27.631942959167901 ], [ 85.307398782911349, 27.631621729931144 ], [ 85.307795832645638, 27.631438594206262 ], [ 85.307262158228397, 27.6307865333299 ], [ 85.306590045343484, 27.629965310371723 ], [ 85.306119357849113, 27.629190623746329 ], [ 85.305127000097499, 27.628759375505609 ], [ 85.305613418174758, 27.630759094267731 ], [ 85.305647551002238, 27.631964719303468 ], [ 85.305411340036372, 27.632717433182513 ], [ 85.305300043567712, 27.633159531146344 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 61, "population": 0, "densitycap": 50.0, "avgincome": "lowIncomeA", "area": 4.1, "luf": "AGRICULTURE", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.305195826520034, 27.634579469963466 ], [ 85.306455305629314, 27.634760651118597 ], [ 85.306898611759266, 27.634877107113084 ], [ 85.308366229082523, 27.635853704675679 ], [ 85.308366128747821, 27.635655395693508 ], [ 85.308439094026994, 27.635330384739227 ], [ 85.308414603812793, 27.635104519559398 ], [ 85.308228840355838, 27.634711924517717 ], [ 85.30824407824835, 27.634550120783899 ], [ 85.307800064350943, 27.634213325059505 ], [ 85.307479977038994, 27.634084683815601 ], [ 85.307039922435465, 27.633848689162143 ], [ 85.306708275616998, 27.63391679472825 ], [ 85.305870629207718, 27.633464782168787 ], [ 85.305525805860697, 27.633221768330277 ], [ 85.305300043567712, 27.633159531146344 ], [ 85.305101000572861, 27.633950170495854 ], [ 85.305195826520034, 27.634579469963466 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 62, "population": 0, "densitycap": 250.0, "avgincome": "midIncome", "area": 5.568, "luf": "COMMERCIAL AND RESIDENTIAL", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.313892839408553, 27.627473922376542 ], [ 85.313280055165976, 27.627984735798584 ], [ 85.312933530975997, 27.628726774362871 ], [ 85.312121543844626, 27.629224346226323 ], [ 85.312077749362814, 27.629974384815391 ], [ 85.311968521394078, 27.630540207717921 ], [ 85.311954781643124, 27.631435544244805 ], [ 85.312165195619485, 27.63245367184885 ], [ 85.312576490944551, 27.632395946178118 ], [ 85.312583161778775, 27.632395277227328 ], [ 85.313059398464802, 27.63236641438457 ], [ 85.313070857288579, 27.632366491107625 ], [ 85.313460505490667, 27.632395353926828 ], [ 85.313000118304558, 27.631233861781812 ], [ 85.313304659853955, 27.629733119315052 ], [ 85.313475934116298, 27.629054619082655 ], [ 85.314048208705771, 27.628452634480041 ], [ 85.313892839408553, 27.627473922376542 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 63, "population": 0, "densitycap": 0.0, "avgincome": null, "area": 0.799, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.314048940113835, 27.639998896312118 ], [ 85.314009177052213, 27.639423570264388 ], [ 85.313961133158045, 27.639431946451552 ], [ 85.313823146589996, 27.639463544192946 ], [ 85.313657833792988, 27.639522761148346 ], [ 85.313516021577783, 27.639608884460145 ], [ 85.313355705843904, 27.639732051480237 ], [ 85.313032942186979, 27.639922455539175 ], [ 85.312761909820736, 27.640032094210365 ], [ 85.312867363824381, 27.640146760640306 ], [ 85.312873840528439, 27.640154449387865 ], [ 85.312968633200256, 27.64027757983698 ], [ 85.312982109755708, 27.640300238397643 ], [ 85.313067746731406, 27.640495008516837 ], [ 85.3135233879472, 27.640355140157531 ], [ 85.313888270999215, 27.640107805825753 ], [ 85.314048940113835, 27.639998896312118 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 64, "population": 0, "densitycap": 0.0, "avgincome": null, "area": 0.125, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.324653326106386, 27.622605587564035 ], [ 85.324973980722064, 27.622666486678934 ], [ 85.324756624045818, 27.621816385371964 ], [ 85.324751178408889, 27.622142778249113 ], [ 85.324749843589174, 27.622154442465206 ], [ 85.324653326106386, 27.622605587564035 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 65, "population": 0, "densitycap": 0.0, "avgincome": null, "area": 0.223, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.313892839408553, 27.627473922376542 ], [ 85.313799603539579, 27.626886598093147 ], [ 85.313280055165976, 27.627984735798584 ], [ 85.313892839408553, 27.627473922376542 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 66, "population": 0, "densitycap": 0.0, "avgincome": null, "area": 0.222, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.315418803867999, 27.625708436636899 ], [ 85.315483914661414, 27.6260722566807 ], [ 85.315855512037515, 27.626563400270093 ], [ 85.315915755486671, 27.626312919612513 ], [ 85.315813281905662, 27.62600123337047 ], [ 85.315598279997531, 27.625717852544284 ], [ 85.315595804748682, 27.625717758223153 ], [ 85.315418803867999, 27.625708436636899 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 67, "population": 0, "densitycap": 0.0, "avgincome": null, "area": 0.218, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.318976538606179, 27.621462555099637 ], [ 85.319013350371364, 27.622779404409538 ], [ 85.319097865705487, 27.622586320735682 ], [ 85.319130197412633, 27.622397810431739 ], [ 85.319137953559931, 27.622264755710194 ], [ 85.31912402381451, 27.621985081249811 ], [ 85.319123933868568, 27.621977448510467 ], [ 85.319130534139077, 27.621725638893988 ], [ 85.319138234159979, 27.621432938894745 ], [ 85.319138474415141, 27.621428151389399 ], [ 85.319164048137111, 27.621083054526974 ], [ 85.319163323648397, 27.621030514237887 ], [ 85.319147338894453, 27.621046019924599 ], [ 85.318976538606179, 27.621462555099637 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 68, "population": 0, "densitycap": 0.0, "avgincome": null, "area": 0.285, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.319577918637265, 27.616969723882153 ], [ 85.319073707669247, 27.618358347595272 ], [ 85.319352794921272, 27.618327881820576 ], [ 85.319354260740838, 27.618320737910643 ], [ 85.31943566072303, 27.617985437912186 ], [ 85.319436394366875, 27.617982594412236 ], [ 85.319513565158317, 27.617700267038124 ], [ 85.319635544598782, 27.617236645885413 ], [ 85.319656932399468, 27.617096366092635 ], [ 85.319650334068029, 27.617055456421788 ], [ 85.319618198021232, 27.617014138664086 ], [ 85.319577918637265, 27.616969723882153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 69, "population": 0, "densitycap": 250.0, "avgincome": "lowIncomeB", "area": 3.974, "luf": "RESIDENTIAL (MODERATE DENSITY)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.31739769872145, 27.637315723497597 ], [ 85.318201181703202, 27.637457542402366 ], [ 85.318294016426137, 27.637180323378118 ], [ 85.318322663042053, 27.6370718546336 ], [ 85.318324331445012, 27.637066199215127 ], [ 85.318438437821584, 27.636716546658754 ], [ 85.318486774406992, 27.636402846116585 ], [ 85.31848705260326, 27.636401137784681 ], [ 85.318705652604464, 27.635127437792494 ], [ 85.318706081508026, 27.635125102901984 ], [ 85.318716390634009, 27.635072452729503 ], [ 85.318676581817797, 27.634857393491803 ], [ 85.318636302643867, 27.63466296896139 ], [ 85.318561802545304, 27.634430700209958 ], [ 85.318166752915744, 27.63464286431406 ], [ 85.318149513200609, 27.634649687770349 ], [ 85.318130917487466, 27.6346525191151 ], [ 85.317770131674749, 27.6346669505376 ], [ 85.317749180624929, 27.63466519112222 ], [ 85.317236864804386, 27.634556955368435 ], [ 85.317236007540274, 27.634556769566835 ], [ 85.317206065062734, 27.634550115701721 ], [ 85.317232124656229, 27.634625688356572 ], [ 85.317235456391259, 27.634646993975785 ], [ 85.317232201714049, 27.634783694422616 ], [ 85.317301323968778, 27.634925230262024 ], [ 85.317307463314123, 27.634947735666461 ], [ 85.317304724115232, 27.634970766907269 ], [ 85.317157915450636, 27.635429840236949 ], [ 85.317109629475212, 27.635846742962546 ], [ 85.317158177422229, 27.636239630461219 ], [ 85.317396348266158, 27.637298469566709 ], [ 85.31739769872145, 27.637315723497597 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 70, "population": 0, "densitycap": 0.0, "avgincome": null, "area": 0.233, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.318201181703202, 27.637457542402366 ], [ 85.31739769872145, 27.637315723497597 ], [ 85.317378608542811, 27.63760589822752 ], [ 85.318173120644715, 27.637694364176109 ], [ 85.318173705102808, 27.637685454332654 ], [ 85.318196505110564, 27.637478754333795 ], [ 85.318201181703202, 27.637457542402366 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 72, "population": 0, "densitycap": 0.0, "avgincome": null, "area": 0.102, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.312077668394835, 27.632030156932601 ], [ 85.311769216671209, 27.632315660076863 ], [ 85.311926319156441, 27.632424948736109 ], [ 85.3120933876165, 27.63248255855688 ], [ 85.312142478466853, 27.632460244527156 ], [ 85.312165195619485, 27.63245367184885 ], [ 85.312077668394835, 27.632030156932601 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 73, "population": 0, "densitycap": 0.0, "avgincome": null, "area": 0.147, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.308036139558496, 27.638098864922267 ], [ 85.3079332460986, 27.638202264188696 ], [ 85.30832539292976, 27.638336712808844 ], [ 85.308410844269247, 27.638282573181353 ], [ 85.308426249062833, 27.638191613884757 ], [ 85.308357686689902, 27.637897245857229 ], [ 85.308296136799299, 27.637833639416868 ], [ 85.308036139558496, 27.638098864922267 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "population": 2367, "densitycap": 350.0, "avgincome": "lowIncomeA", "area": 8.554, "luf": "HISTORICAL PRESERVATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.319513477641308, 27.624572187277543 ], [ 85.319513452206905, 27.624569460185409 ], [ 85.319513302536322, 27.624563416054617 ], [ 85.319513477641308, 27.624572187277543 ] ] ], [ [ [ 85.319516374108886, 27.624882750172205 ], [ 85.319516319549081, 27.624876900168708 ], [ 85.319516282912971, 27.624877392482102 ], [ 85.319516374108886, 27.624882750172205 ] ] ], [ [ [ 85.319026013934618, 27.629612556105911 ], [ 85.319090924939573, 27.629472252835413 ], [ 85.319149757399586, 27.629338531043718 ], [ 85.320570630807836, 27.626620459781485 ], [ 85.32075319406448, 27.626310707999401 ], [ 85.320969488156479, 27.626376300068898 ], [ 85.320999485469187, 27.625886350693037 ], [ 85.320999485469187, 27.625886350693015 ], [ 85.321011873220939, 27.625684018325398 ], [ 85.321167204960688, 27.625262181066088 ], [ 85.321408639982138, 27.625088410178964 ], [ 85.321465708878478, 27.624971419085934 ], [ 85.321459197397488, 27.624828164316295 ], [ 85.321606274308763, 27.624348946360566 ], [ 85.321582735126171, 27.624202769146123 ], [ 85.321509096554067, 27.624135267083304 ], [ 85.321362580555373, 27.624083704414609 ], [ 85.321218307916524, 27.624032931045228 ], [ 85.321203862302426, 27.624020607162738 ], [ 85.320920587379689, 27.623710005910954 ], [ 85.320656929736174, 27.623760226374223 ], [ 85.320284721182773, 27.623968663165254 ], [ 85.319670787272813, 27.624209058621517 ], [ 85.319646634171647, 27.62422315037908 ], [ 85.31966520795136, 27.62440641793593 ], [ 85.319684919369635, 27.624762196475206 ], [ 85.319647684960913, 27.625133066707768 ], [ 85.319472146956926, 27.625477200360873 ], [ 85.31932088574591, 27.625704299995707 ], [ 85.319320885745867, 27.625704299995704 ], [ 85.319076860851723, 27.625904520248071 ], [ 85.319033133982558, 27.626032764821097 ], [ 85.319015301406921, 27.626358777543473 ], [ 85.318994693513517, 27.626656140041653 ], [ 85.318940738164756, 27.627033224683927 ], [ 85.318883526320789, 27.627413131455487 ], [ 85.318824063547694, 27.627730054453963 ], [ 85.318719210591951, 27.628283944552351 ], [ 85.318675283851462, 27.62863539563638 ], [ 85.318659198499105, 27.628846963121433 ], [ 85.318661906338662, 27.629090236656154 ], [ 85.318676087932886, 27.629213459771673 ], [ 85.318683003825242, 27.62928651582898 ], [ 85.31869901029367, 27.629395452789225 ], [ 85.318709214310118, 27.629568706640654 ], [ 85.318707978157704, 27.629754699237061 ], [ 85.318696023308291, 27.629906222014725 ], [ 85.318753360015492, 27.629851499813505 ], [ 85.318830702244625, 27.629777899313353 ], [ 85.318939747544675, 27.629683386467381 ], [ 85.319026013934618, 27.629612556105911 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "population": 0, "densitycap": 250.0, "avgincome": "lowIncomeB", "area": 73.535, "luf": "RESIDENTIAL (MODERATE DENSITY)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.310255773790473, 27.617343910571368 ], [ 85.310359472952101, 27.617133151808662 ], [ 85.31049841164986, 27.616911764014887 ], [ 85.310686647539185, 27.61664228659512 ], [ 85.310241524117046, 27.616633569209661 ], [ 85.30953036622644, 27.616662927511296 ], [ 85.304111673265538, 27.616596787856061 ], [ 85.303844521454266, 27.617179066237355 ], [ 85.303571229492235, 27.617991750229702 ], [ 85.303362664573839, 27.61852395036632 ], [ 85.303313795253018, 27.619508318533647 ], [ 85.303318060966163, 27.61963766979164 ], [ 85.303323803030253, 27.619737374051056 ], [ 85.303470542979909, 27.622285310791217 ], [ 85.303585613279694, 27.623594235451531 ], [ 85.303772602516901, 27.624155203163053 ], [ 85.303844521454252, 27.624529181637438 ], [ 85.305140511710746, 27.627313632887049 ], [ 85.305127000097499, 27.628759375505609 ], [ 85.306119357849113, 27.629190623746329 ], [ 85.307140578180267, 27.628580794480513 ], [ 85.307851395427249, 27.627991049371548 ], [ 85.308123982384515, 27.627741708770941 ], [ 85.308837317503219, 27.626593344437524 ], [ 85.309233327579378, 27.625481528410862 ], [ 85.309869452742646, 27.624304285061328 ], [ 85.309843286536903, 27.62427847382968 ], [ 85.309719287113907, 27.624100073516715 ], [ 85.309601323388421, 27.623887172962558 ], [ 85.309439299198615, 27.623432076462443 ], [ 85.309434120565044, 27.623408988396033 ], [ 85.309434511567744, 27.623385329905478 ], [ 85.309500050357613, 27.622909688957527 ], [ 85.309583051663822, 27.622606576949828 ], [ 85.309602457695334, 27.62220762702831 ], [ 85.309512373955315, 27.622068018520974 ], [ 85.309498742163484, 27.622035316861929 ], [ 85.309450842472671, 27.621817916549169 ], [ 85.309449304371071, 27.621783742874808 ], [ 85.309459374218406, 27.621751050307559 ], [ 85.309563173968954, 27.621547050792515 ], [ 85.309599829160163, 27.621507271912911 ], [ 85.309768589693491, 27.621403252486814 ], [ 85.310028349097436, 27.621223640383175 ], [ 85.310124734594041, 27.621062888828028 ], [ 85.310157105495023, 27.620875390157593 ], [ 85.310126045188753, 27.620697358299758 ], [ 85.310046703651309, 27.620496665073109 ], [ 85.310040793309597, 27.620474646268647 ], [ 85.31000537904788, 27.620222523535954 ], [ 85.310015778808008, 27.620048823979417 ], [ 85.310028117330944, 27.620006356985535 ], [ 85.310139377075288, 27.619806611293907 ], [ 85.310247577208656, 27.619652611386687 ], [ 85.310267491283383, 27.619631568313988 ], [ 85.310414781093328, 27.619515710140178 ], [ 85.31052704942779, 27.619438191288229 ], [ 85.310563162737978, 27.619377587594471 ], [ 85.310554006899437, 27.619268672027484 ], [ 85.310501149385416, 27.619165669750121 ], [ 85.310266173304356, 27.618909922756306 ], [ 85.310054718737774, 27.618670462123369 ], [ 85.309853819185889, 27.61843346198599 ], [ 85.309606107680125, 27.618018476998035 ], [ 85.30956642634095, 27.617860721468926 ], [ 85.309608226259613, 27.617747589452247 ], [ 85.309636130571491, 27.617672065925273 ], [ 85.309797931198091, 27.617515366253304 ], [ 85.30981698435383, 27.617500897694942 ], [ 85.309838928860572, 27.617491368762767 ], [ 85.310001793282453, 27.617443638249682 ], [ 85.310150831567839, 27.617418460354287 ], [ 85.310157805637033, 27.617417852524262 ], [ 85.310255773790473, 27.617343910571368 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "population": 5437, "densitycap": 350.0, "avgincome": "lowIncomeB", "area": 24.954, "luf": "RESIDENTIAL (HIGH DENSITY)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.313516021577769, 27.639608884460106 ], [ 85.313657833792988, 27.639522761148346 ], [ 85.313823146589982, 27.639463544192946 ], [ 85.313961133158045, 27.639431946451548 ], [ 85.314009177052199, 27.63942357026438 ], [ 85.314048940113821, 27.639998896312129 ], [ 85.3135233879472, 27.640355140157531 ], [ 85.313067746731406, 27.640495008516837 ], [ 85.313074334648675, 27.640515529316229 ], [ 85.31310341815518, 27.640654907898554 ], [ 85.313132757772152, 27.640751325924168 ], [ 85.313136792240115, 27.64077215463136 ], [ 85.313157326466325, 27.641009183240072 ], [ 85.313151485462072, 27.641052765801103 ], [ 85.313078628387089, 27.6412521689683 ], [ 85.313053922458494, 27.641380140207321 ], [ 85.313046502739127, 27.641403345212296 ], [ 85.312988297866113, 27.641531425578354 ], [ 85.312939794712364, 27.641640315400185 ], [ 85.314980635538078, 27.641655070745085 ], [ 85.314969581603336, 27.641594108479921 ], [ 85.314969581603336, 27.6415941084799 ], [ 85.314858396339673, 27.640980920368989 ], [ 85.314858498562387, 27.640958791191316 ], [ 85.314866610199346, 27.640937874108388 ], [ 85.315068073816192, 27.640606898487409 ], [ 85.315421101651694, 27.639980094620245 ], [ 85.315436332978678, 27.639961673687758 ], [ 85.315739392851668, 27.639701908175823 ], [ 85.315743598884339, 27.639698561669515 ], [ 85.316040253727905, 27.63947960221812 ], [ 85.316378937280248, 27.639091527525835 ], [ 85.316665377803176, 27.63867618909039 ], [ 85.31666836850313, 27.638672179599585 ], [ 85.316903133947747, 27.638380501525514 ], [ 85.317204704935023, 27.637852752954181 ], [ 85.317193272682857, 27.637851708291926 ], [ 85.317066947760907, 27.637838101255038 ], [ 85.316877491242252, 27.637815678569432 ], [ 85.316710564216237, 27.637797553733897 ], [ 85.316584177842572, 27.637787970095644 ], [ 85.316462371297533, 27.637774417372256 ], [ 85.31631268415596, 27.637796379716626 ], [ 85.315971883401147, 27.637881395849877 ], [ 85.314008051611154, 27.638361448897328 ], [ 85.313857128590129, 27.63822210201992 ], [ 85.313747734564487, 27.638143571569056 ], [ 85.313539758385929, 27.6380611798822 ], [ 85.313143992129355, 27.637944558442239 ], [ 85.312685793467949, 27.637805879572035 ], [ 85.312346076702539, 27.637737855239948 ], [ 85.312125412844111, 27.637703224282149 ], [ 85.311979015485875, 27.63770714272458 ], [ 85.311747744010773, 27.637777997984738 ], [ 85.311738245427662, 27.637780307390528 ], [ 85.311231530649607, 27.637872576085588 ], [ 85.311219262589006, 27.637873896766294 ], [ 85.311069172276916, 27.637879099937827 ], [ 85.311055758855815, 27.637878507382197 ], [ 85.310866631443233, 27.637855109179846 ], [ 85.310859142124613, 27.637853838796484 ], [ 85.310583723000022, 27.637794231879152 ], [ 85.310582230005167, 27.63779389445406 ], [ 85.310364893963921, 27.637742681894217 ], [ 85.310131607067504, 27.637705126165244 ], [ 85.31012213893699, 27.637703035362154 ], [ 85.309784110648181, 27.637607506760901 ], [ 85.309774704760599, 27.637604221097341 ], [ 85.309429539870095, 27.637459384837825 ], [ 85.309408511670028, 27.637446298658144 ], [ 85.309205975886712, 27.637268043901724 ], [ 85.309193829278655, 27.637254126421624 ], [ 85.309073147273523, 27.637070749658353 ], [ 85.309072387075489, 27.637120189631371 ], [ 85.309071420885374, 27.637132636618087 ], [ 85.30905517983966, 27.637248353693103 ], [ 85.309075046396799, 27.63740758316392 ], [ 85.309075809318742, 27.63742158593762 ], [ 85.309073890406978, 27.637546381699412 ], [ 85.309080204873638, 27.637635415091253 ], [ 85.309080090072172, 27.637651103962845 ], [ 85.309070570722881, 27.637762274304496 ], [ 85.309069411477395, 27.637837664201843 ], [ 85.309068231317667, 27.637914413925685 ], [ 85.309096029750251, 27.638076621440614 ], [ 85.309115744711804, 27.638177900191188 ], [ 85.309159417147555, 27.638270222618832 ], [ 85.309200138251057, 27.638321550546205 ], [ 85.309322123144241, 27.638390000268366 ], [ 85.309389751134944, 27.638427267904969 ], [ 85.309545008107307, 27.638475470450061 ], [ 85.309556335447652, 27.638479542753789 ], [ 85.309700446506412, 27.638538700628168 ], [ 85.309746546857596, 27.638570916693215 ], [ 85.309800963243362, 27.638631830525608 ], [ 85.309898106118794, 27.638676577575502 ], [ 85.310003160166033, 27.638711442384796 ], [ 85.310026452784186, 27.638721706279927 ], [ 85.310143894755214, 27.638787605627858 ], [ 85.310354299537678, 27.638802675796665 ], [ 85.310404938241277, 27.638816153966758 ], [ 85.310608858154694, 27.638915502878998 ], [ 85.310635752703703, 27.638933061730498 ], [ 85.310740185288893, 27.639022278034282 ], [ 85.311001755421316, 27.639132645202658 ], [ 85.311018160762245, 27.63914095266685 ], [ 85.311201778498855, 27.63925081607988 ], [ 85.311212177717707, 27.639257753151959 ], [ 85.311379465017737, 27.639381767644402 ], [ 85.311385879607229, 27.639386860731918 ], [ 85.311479880546202, 27.639466754990913 ], [ 85.311676966431463, 27.639538494309633 ], [ 85.311888356727977, 27.639597085770642 ], [ 85.31189167535841, 27.63959805046575 ], [ 85.312284621937039, 27.639717636239407 ], [ 85.312310874014671, 27.639728765895864 ], [ 85.312534550357469, 27.639853465463887 ], [ 85.312548882411747, 27.639862759091834 ], [ 85.312724117414973, 27.639994043877085 ], [ 85.312740570312911, 27.640008890452705 ], [ 85.312761909820736, 27.640032094210348 ], [ 85.313032942186965, 27.63992245553916 ], [ 85.31335570584389, 27.639732051480223 ], [ 85.313516021577769, 27.639608884460106 ] ], [ [ 85.316001381664606, 27.638375941469516 ], [ 85.316105129762434, 27.638425648763132 ], [ 85.316171131458574, 27.638469587981408 ], [ 85.315991815126381, 27.63869512614043 ], [ 85.315889298012976, 27.638816497233915 ], [ 85.315800662018887, 27.638938036865149 ], [ 85.315771348067983, 27.638963440497385 ], [ 85.31558053462831, 27.638824634618658 ], [ 85.315931785571891, 27.638336967405614 ], [ 85.316001381664606, 27.638375941469516 ] ], [ [ 85.314492954480514, 27.640579835944891 ], [ 85.314429676327663, 27.640540860196122 ], [ 85.314430405053002, 27.640493323276861 ], [ 85.314378119569895, 27.640421368915238 ], [ 85.314269889472527, 27.640362512538573 ], [ 85.314570350770595, 27.639946550090929 ], [ 85.314637447892309, 27.639985147677645 ], [ 85.314705514385338, 27.640022684840371 ], [ 85.314765022020353, 27.640058866159954 ], [ 85.314616421908326, 27.640251913685169 ], [ 85.314746528407397, 27.640332454144101 ], [ 85.314684197257378, 27.640418297705448 ], [ 85.31474644418681, 27.64046235499514 ], [ 85.314680183098247, 27.640555792066166 ], [ 85.314611937443004, 27.640654299165789 ], [ 85.314492954480514, 27.640579835944891 ] ] ], [ [ [ 85.317711060058073, 27.640609142162305 ], [ 85.317121301231964, 27.640380082671484 ], [ 85.317114816099007, 27.640377229434023 ], [ 85.316473995402291, 27.640060649077729 ], [ 85.316450943379451, 27.640043098363989 ], [ 85.316083388640465, 27.639623584376128 ], [ 85.315842768442465, 27.639801184922707 ], [ 85.315551130689897, 27.640051160252071 ], [ 85.315203403488894, 27.640668554029727 ], [ 85.315202284731285, 27.640670463926973 ], [ 85.315012587380551, 27.640982109943366 ], [ 85.315132756301509, 27.641644837512253 ], [ 85.315057724644817, 27.641655627512879 ], [ 85.318721714038162, 27.641655300838295 ], [ 85.318693699126428, 27.64154231505329 ], [ 85.318259946168439, 27.640903281353793 ], [ 85.317711060058073, 27.640609142162305 ] ], [ [ 85.316681507149468, 27.640425282152737 ], [ 85.31661194714691, 27.64050995986592 ], [ 85.316524036014471, 27.640584110814011 ], [ 85.316308319798779, 27.640390869246872 ], [ 85.316191998998292, 27.640280235310986 ], [ 85.316052542587315, 27.640169320277 ], [ 85.316041179769712, 27.64015578720403 ], [ 85.316240374256793, 27.639992313864834 ], [ 85.316734430336965, 27.640369253308883 ], [ 85.316681507149468, 27.640425282152737 ] ] ], [ [ [ 85.318525579547895, 27.640851310141009 ], [ 85.318494079575629, 27.640530510139868 ], [ 85.318493739191496, 27.640526007352303 ], [ 85.318478779878347, 27.640244060361951 ], [ 85.318430953437343, 27.640169694415611 ], [ 85.318345551391914, 27.640082376361285 ], [ 85.318343839901416, 27.640080589241464 ], [ 85.318235539829388, 27.639965089254535 ], [ 85.318211476151632, 27.639925304806539 ], [ 85.318187676151751, 27.639854904805929 ], [ 85.318186095018334, 27.639849796097888 ], [ 85.318126995025523, 27.639639696095951 ], [ 85.318123483739186, 27.639619854067686 ], [ 85.318113483750679, 27.639487454067353 ], [ 85.318116552845183, 27.639454093278466 ], [ 85.318153377500252, 27.639314442830624 ], [ 85.318161366807118, 27.639226469705097 ], [ 85.318169359689264, 27.639127989566127 ], [ 85.318182151672616, 27.638929185030019 ], [ 85.318165290022264, 27.638708335911801 ], [ 85.318165000343896, 27.638700029905284 ], [ 85.318166400360397, 27.638484729905656 ], [ 85.318166426678687, 27.638482992723848 ], [ 85.318171715124109, 27.638260780776886 ], [ 85.318163940812909, 27.638149060903128 ], [ 85.318163720612219, 27.638139964175028 ], [ 85.318169351619247, 27.637873032417165 ], [ 85.317361808076143, 27.637861267032513 ], [ 85.317361620537397, 27.637864117631018 ], [ 85.317353484140739, 27.637890857225802 ], [ 85.317035993057601, 27.638446467198925 ], [ 85.317030029532873, 27.638455201403531 ], [ 85.316793486555525, 27.638749088332354 ], [ 85.316506273476108, 27.639165547626455 ], [ 85.316501519738949, 27.639171660163321 ], [ 85.316191486454642, 27.639526907024354 ], [ 85.316561264443195, 27.639948958114879 ], [ 85.317185386113763, 27.64025728858994 ], [ 85.317776375835336, 27.64048682605122 ], [ 85.317785179613594, 27.640490872737534 ], [ 85.318354441813753, 27.640795930956877 ], [ 85.318368943790503, 27.640806017376843 ], [ 85.318380298865733, 27.640818911938034 ], [ 85.3185896307006, 27.641127314102736 ], [ 85.318585582714903, 27.641113639390298 ], [ 85.318584002868292, 27.641107642766226 ], [ 85.318527702882122, 27.640864242764117 ], [ 85.318525579547895, 27.640851310141009 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "population": 0, "densitycap": 0.0, "avgincome": "midIncome", "area": 21.697, "luf": "HISTORICAL PRESERVATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.315910399743103, 27.628414306897906 ], [ 85.315953779444854, 27.629083477488827 ], [ 85.315976565900442, 27.6293464356778 ], [ 85.315971814405316, 27.629656819716097 ], [ 85.315964504264471, 27.630134333592562 ], [ 85.315662679648284, 27.630584390403857 ], [ 85.315654271097117, 27.631133531197918 ], [ 85.31575382355706, 27.63163622301408 ], [ 85.315748705385332, 27.63197048259833 ], [ 85.315552277059325, 27.632541219584979 ], [ 85.315841601005701, 27.633399104331133 ], [ 85.3161991093842, 27.633442005322223 ], [ 85.31623084554505, 27.633452606183422 ], [ 85.316476179683718, 27.633596920343376 ], [ 85.316494989147003, 27.633612663204463 ], [ 85.316812480571542, 27.633987880085382 ], [ 85.316824195482027, 27.63400805898922 ], [ 85.316961588395699, 27.634391923861564 ], [ 85.316978945002504, 27.634387756566554 ], [ 85.317051102076476, 27.634380540857158 ], [ 85.317077981015018, 27.634382131643182 ], [ 85.317272377101574, 27.634425330767161 ], [ 85.317773925691725, 27.634531291739901 ], [ 85.318104802222237, 27.634518056679955 ], [ 85.318508126149865, 27.634301448754584 ], [ 85.318531344040849, 27.63433573954519 ], [ 85.318527276513635, 27.634323058179007 ], [ 85.31843059621697, 27.634057089122024 ], [ 85.318343326961312, 27.633854538284407 ], [ 85.318014091997213, 27.633148764042364 ], [ 85.318009692565312, 27.633137755681105 ], [ 85.317991992565496, 27.633084955680633 ], [ 85.317991759933989, 27.633084253423021 ], [ 85.317897659936406, 27.632796753420461 ], [ 85.317895892153501, 27.632790740495263 ], [ 85.317815580035102, 27.632483228434239 ], [ 85.317662546642666, 27.63195325833863 ], [ 85.317596980207981, 27.631755418545904 ], [ 85.317594584017911, 27.63174700998475 ], [ 85.317557784026135, 27.631593309983391 ], [ 85.317556908710571, 27.631589299339627 ], [ 85.31753280871898, 27.631467099338643 ], [ 85.317533559496496, 27.631424583035951 ], [ 85.317559959491362, 27.631311683036504 ], [ 85.317571791938263, 27.631282284241628 ], [ 85.317715930984761, 27.631037530685372 ], [ 85.317777850366042, 27.630891972416034 ], [ 85.317860901473878, 27.630686734492436 ], [ 85.317862161305356, 27.630683753762664 ], [ 85.317978061236914, 27.630420853758508 ], [ 85.317985942728569, 27.630406183432729 ], [ 85.318052089147727, 27.630302915947372 ], [ 85.318121715304045, 27.630187001374185 ], [ 85.31822304209453, 27.629996461805529 ], [ 85.318253022221128, 27.62989161507161 ], [ 85.318258818420418, 27.62981907479795 ], [ 85.318259780078009, 27.629811078089386 ], [ 85.318277350012437, 27.629701893507516 ], [ 85.318284527034677, 27.629613581185364 ], [ 85.318280118988781, 27.629565258973315 ], [ 85.318261358725778, 27.62940098504712 ], [ 85.318242024745686, 27.629297741550413 ], [ 85.318240421420484, 27.629274222862541 ], [ 85.318242084276051, 27.62924056988102 ], [ 85.318214102473661, 27.629020369282582 ], [ 85.318213687607468, 27.628998852249026 ], [ 85.318226952371489, 27.628848386355024 ], [ 85.318242964178552, 27.628569423176216 ], [ 85.31824529026558, 27.628552918438313 ], [ 85.318279273040076, 27.628402576288021 ], [ 85.318302892184732, 27.628235583096277 ], [ 85.318303066341343, 27.628234402079908 ], [ 85.31831980603539, 27.628125346795969 ], [ 85.318380766347801, 27.627728202083006 ], [ 85.318382171632393, 27.627720861383406 ], [ 85.318456696077817, 27.627396571278091 ], [ 85.318492688258615, 27.627156916046157 ], [ 85.318559664248923, 27.626522830537816 ], [ 85.318575580010446, 27.626292595888067 ], [ 85.318588935812599, 27.626036742879954 ], [ 85.318589006576019, 27.626035528416327 ], [ 85.318597106583368, 27.62590962841686 ], [ 85.31861282664704, 27.625861315038325 ], [ 85.318669126601392, 27.62577101503296 ], [ 85.318670680957723, 27.625768593037247 ], [ 85.318753880887229, 27.625642593028267 ], [ 85.318775209478744, 27.625618515968931 ], [ 85.3189204120645, 27.625493999868151 ], [ 85.318961987063787, 27.625455928858301 ], [ 85.319050709592489, 27.62537139210556 ], [ 85.319091812187395, 27.625314160581897 ], [ 85.319127997338512, 27.625263619315881 ], [ 85.319173511591401, 27.625197650400974 ], [ 85.31835146092466, 27.625568224805075 ], [ 85.318331804972843, 27.625573971575211 ], [ 85.317849045042465, 27.625652494228397 ], [ 85.317839538308732, 27.625653494596758 ], [ 85.316219976518823, 27.625732281455033 ], [ 85.316213822902427, 27.625732358486442 ], [ 85.315598279997531, 27.625717852544284 ], [ 85.315813281905662, 27.62600123337047 ], [ 85.315915755486671, 27.626312919612513 ], [ 85.315801220812659, 27.626789131598912 ], [ 85.315956942318834, 27.627125344581184 ], [ 85.315842772276199, 27.627577680818295 ], [ 85.315970226380216, 27.628009071061118 ], [ 85.315920190520373, 27.628347989297179 ], [ 85.315920190520401, 27.628347989297179 ], [ 85.315910399743103, 27.628414306897906 ] ] ] ] } } +] +} diff --git a/landuse_tv50_2.png b/landuse_tv50_2.png new file mode 100644 index 0000000000000000000000000000000000000000..329e3cbacaf5643f61f84d964e3edccc8c75c5ef --- /dev/null +++ b/landuse_tv50_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84f659e89a8d3ce09347b9ce7925eafebf6a517d14520f25c67dba75a3ec52bd +size 1087989 diff --git a/landuse_tv50_2_selected.png b/landuse_tv50_2_selected.png new file mode 100644 index 0000000000000000000000000000000000000000..91e3528456511d3bda1a712a63d30063fd822ed3 Binary files /dev/null and b/landuse_tv50_2_selected.png differ diff --git a/landuse_tv50_3.geojson b/landuse_tv50_3.geojson new file mode 100644 index 0000000000000000000000000000000000000000..98f90169be5b663cf6af288a8c890cd7a6e5a0fd --- /dev/null +++ b/landuse_tv50_3.geojson @@ -0,0 +1,60 @@ +{ +"type": "FeatureCollection", +"name": "landuse_tv50_3", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "zoneid": 1, "population": 1308, "densitycap": 250.0, "avgincome": "midIncome", "area": 58.266, "luf": "CITY CENTER", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.317596980207981, 27.63175541854589 ], [ 85.317594584017911, 27.631747009984746 ], [ 85.317557784026121, 27.631593309983394 ], [ 85.317556908710557, 27.63158929933962 ], [ 85.317532808718965, 27.631467099338671 ], [ 85.317533559496496, 27.63142458303593 ], [ 85.317559959491348, 27.631311683036508 ], [ 85.317571791938249, 27.631282284241603 ], [ 85.317715930984761, 27.631037530685358 ], [ 85.317777850366056, 27.630891972416002 ], [ 85.317860901473878, 27.630686734492421 ], [ 85.317862161305342, 27.630683753762629 ], [ 85.317978061236914, 27.630420853758487 ], [ 85.317985942728555, 27.630406183432743 ], [ 85.318052089147727, 27.630302915947372 ], [ 85.318121715304045, 27.630187001374157 ], [ 85.31822304209453, 27.629996461805511 ], [ 85.318253022221128, 27.629891615071617 ], [ 85.318258818420404, 27.629819074797915 ], [ 85.318259780077994, 27.629811078089386 ], [ 85.318277350012423, 27.629701893507519 ], [ 85.318284527034677, 27.62961358118535 ], [ 85.318280118988767, 27.629565258973301 ], [ 85.318261358725778, 27.629400985047123 ], [ 85.3182420247457, 27.629297741550431 ], [ 85.318240421420484, 27.629274222862545 ], [ 85.318242084276065, 27.629240569881038 ], [ 85.318214102473661, 27.629020369282589 ], [ 85.318213687607454, 27.628998852249019 ], [ 85.318226952371475, 27.628848386355013 ], [ 85.318242964178538, 27.628569423176216 ], [ 85.318245290265565, 27.628552918438313 ], [ 85.318279273040062, 27.628402576288018 ], [ 85.318302892184732, 27.628235583096252 ], [ 85.318303066341343, 27.628234402079915 ], [ 85.318380766347786, 27.627728202082984 ], [ 85.318382171632393, 27.627720861383384 ], [ 85.318456696077817, 27.627396571278091 ], [ 85.318492688258601, 27.627156916046129 ], [ 85.318559664248909, 27.626522830537819 ], [ 85.318575580010432, 27.626292595888085 ], [ 85.318588935812613, 27.626036742879926 ], [ 85.318589006576019, 27.626035528416327 ], [ 85.318597106583368, 27.625909628416842 ], [ 85.31861282664704, 27.625861315038296 ], [ 85.318669126601378, 27.625771015032935 ], [ 85.318670680957709, 27.625768593037229 ], [ 85.318753880887229, 27.625642593028264 ], [ 85.31877520947873, 27.625618515968917 ], [ 85.318920412064514, 27.625493999868116 ], [ 85.318961987063787, 27.625455928858276 ], [ 85.319050709592489, 27.625371392105553 ], [ 85.319091812187395, 27.625314160581887 ], [ 85.319127997338512, 27.625263619315866 ], [ 85.319173511591416, 27.625197650400949 ], [ 85.31835146092466, 27.62556822480505 ], [ 85.318331804972857, 27.625573971575186 ], [ 85.317849045042465, 27.625652494228405 ], [ 85.317839538308718, 27.625653494596737 ], [ 85.316219976518823, 27.625732281455029 ], [ 85.316213822902412, 27.625732358486406 ], [ 85.315598279997516, 27.625717852544266 ], [ 85.315595804748682, 27.625717758223118 ], [ 85.315076916086426, 27.62569043079343 ], [ 85.314299827746339, 27.625680987818789 ], [ 85.313609400942795, 27.625714491601094 ], [ 85.312680222863605, 27.625808231105271 ], [ 85.312285903721275, 27.62586478799653 ], [ 85.312222086579538, 27.625872464355307 ], [ 85.312222086579482, 27.625872464355215 ], [ 85.312227999015718, 27.625880430756485 ], [ 85.312233528907612, 27.625888615085447 ], [ 85.312338314870743, 27.626059701564262 ], [ 85.312341174904191, 27.626064658686222 ], [ 85.312453465316253, 27.626271712036917 ], [ 85.312462054448844, 27.626292586140771 ], [ 85.312521451080656, 27.626497554521741 ], [ 85.312601831751493, 27.626683878651988 ], [ 85.312610048623327, 27.626717840601007 ], [ 85.312627419225976, 27.626985923325947 ], [ 85.312622269779183, 27.627024892535818 ], [ 85.312532248786482, 27.627291668576721 ], [ 85.312514295276273, 27.627324419052222 ], [ 85.312485555050003, 27.627350361963167 ], [ 85.312332017374814, 27.62745003570824 ], [ 85.312215826099049, 27.627617292552291 ], [ 85.312107733740518, 27.627803438283497 ], [ 85.312101149360473, 27.627813473728462 ], [ 85.311947571552793, 27.62802207473954 ], [ 85.311927798464041, 27.628042914632758 ], [ 85.31190298601949, 27.628058916658304 ], [ 85.311620443276695, 27.628198189554883 ], [ 85.311438993634511, 27.628390294344339 ], [ 85.311399524397274, 27.62841820813918 ], [ 85.310991653357533, 27.6286031076441 ], [ 85.310778168544175, 27.628713685333345 ], [ 85.310729157829499, 27.628728218224357 ], [ 85.310268501036632, 27.628776036563522 ], [ 85.310141442051645, 27.628861595949289 ], [ 85.310135010815614, 27.62889811619403 ], [ 85.310284176005482, 27.629049856926134 ], [ 85.310408962190053, 27.629164081342317 ], [ 85.310434480811452, 27.629198062219814 ], [ 85.310746819982043, 27.629842844597391 ], [ 85.310756714184379, 27.629877844397544 ], [ 85.31077525537691, 27.630069406767582 ], [ 85.310775711549141, 27.630080638246572 ], [ 85.310773802081343, 27.630204983718638 ], [ 85.310773576343948, 27.630210347227187 ], [ 85.310759752334604, 27.630411082162627 ], [ 85.31075754536711, 27.630426232169835 ], [ 85.310699882015498, 27.630683834001712 ], [ 85.310693251251095, 27.630703709777737 ], [ 85.310582112130078, 27.630950925050396 ], [ 85.31049318551338, 27.631150576517093 ], [ 85.310491690766682, 27.631153787194663 ], [ 85.310380769328361, 27.631382039477224 ], [ 85.310370447648495, 27.6313990915591 ], [ 85.310293654536039, 27.631503390894505 ], [ 85.310257415730547, 27.631535734571877 ], [ 85.309953915666611, 27.631713805567831 ], [ 85.309908077767417, 27.631730393288429 ], [ 85.309633446759406, 27.631777271619271 ], [ 85.309623594256621, 27.631778597951282 ], [ 85.309116292271668, 27.631828804534905 ], [ 85.308801732845069, 27.631901737010786 ], [ 85.308800377384827, 27.631902044173632 ], [ 85.308493195853828, 27.631970048559275 ], [ 85.3084862220161, 27.631971407800606 ], [ 85.308140524634169, 27.632029745757553 ], [ 85.308173777287166, 27.632122474781568 ], [ 85.308380328065525, 27.632295710819687 ], [ 85.308530635726029, 27.632398193284292 ], [ 85.308779174853186, 27.632512386922631 ], [ 85.309053886337452, 27.632539858049423 ], [ 85.309059850683568, 27.632540669123621 ], [ 85.309260068636746, 27.632575189461264 ], [ 85.309569681871452, 27.632561428860718 ], [ 85.309946902182261, 27.632491573239463 ], [ 85.310222020179239, 27.632392812924564 ], [ 85.310242290548459, 27.632388294797664 ], [ 85.310263176290874, 27.632388864120433 ], [ 85.310498475878006, 27.63242451556869 ], [ 85.310747336909273, 27.632445253985907 ], [ 85.311076416282788, 27.632410245525413 ], [ 85.311491107906861, 27.632345896813835 ], [ 85.311705784456208, 27.632302961497285 ], [ 85.311728036866143, 27.632301500913844 ], [ 85.311749806458153, 27.632305858997395 ], [ 85.311769216671209, 27.632315660076859 ], [ 85.311926319156441, 27.632424948736091 ], [ 85.3120933876165, 27.63248255855688 ], [ 85.312142478466868, 27.632460244527131 ], [ 85.312165195619485, 27.632453671848847 ], [ 85.312576490944551, 27.632395946178097 ], [ 85.312583161778761, 27.632395277227303 ], [ 85.313059398464802, 27.632366414384553 ], [ 85.313070857288579, 27.6323664911076 ], [ 85.313460505490667, 27.63239535392681 ], [ 85.31348353696778, 27.632400365023141 ], [ 85.313503713879825, 27.632411453195925 ], [ 85.313621808153883, 27.632501760551946 ], [ 85.313957483994855, 27.632685544983676 ], [ 85.313973738043146, 27.632697500815041 ], [ 85.313985679068097, 27.632712973419682 ], [ 85.314104246811041, 27.632924494282811 ], [ 85.314105265240414, 27.632926383773746 ], [ 85.314189544160357, 27.63308915904333 ], [ 85.314277243538299, 27.633176858378835 ], [ 85.314492524626132, 27.633244518139094 ], [ 85.314840872213594, 27.633189875344641 ], [ 85.314844646463882, 27.633189369969095 ], [ 85.315039470563974, 27.633167722841481 ], [ 85.315062660193718, 27.633168324329549 ], [ 85.315084565594546, 27.633175128613747 ], [ 85.315349720377199, 27.633300728234413 ], [ 85.315841601005701, 27.633399104331119 ], [ 85.316199109384186, 27.63344200532223 ], [ 85.31623084554505, 27.633452606183415 ], [ 85.316476179683718, 27.633596920343351 ], [ 85.316494989147003, 27.633612663204424 ], [ 85.316812480571542, 27.633987880085382 ], [ 85.316824195482027, 27.634008058989224 ], [ 85.316961588395685, 27.634391923861553 ], [ 85.316978945002504, 27.634387756566543 ], [ 85.317051102076476, 27.634380540857144 ], [ 85.317077981015032, 27.634382131643168 ], [ 85.31727237710156, 27.634425330767147 ], [ 85.317773925691739, 27.634531291739904 ], [ 85.318104802222237, 27.634518056679951 ], [ 85.318508126149865, 27.634301448754581 ], [ 85.318531344040835, 27.634335739545179 ], [ 85.31852727651362, 27.634323058179 ], [ 85.318430596216956, 27.634057089122024 ], [ 85.318343326961312, 27.633854538284407 ], [ 85.318014091997199, 27.633148764042382 ], [ 85.318009692565298, 27.633137755681098 ], [ 85.317991992565496, 27.633084955680637 ], [ 85.317991759933975, 27.633084253423 ], [ 85.317897659936406, 27.632796753420461 ], [ 85.317895892153501, 27.632790740495253 ], [ 85.317815580035102, 27.632483228434239 ], [ 85.317662546642666, 27.631953258338623 ], [ 85.317596980207981, 27.63175541854589 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 2, "population": 0, "densitycap": 0.0, "avgincome": null, "area": 28.091, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.310152634614909, 27.629916357540807 ], [ 85.31001186734845, 27.629662726166817 ], [ 85.309776409609043, 27.629423366328432 ], [ 85.309547569791349, 27.629220535300387 ], [ 85.309383158273633, 27.628929959623004 ], [ 85.309356161184539, 27.628888551122365 ], [ 85.309358355855011, 27.628833405038488 ], [ 85.30960042574867, 27.62848108203389 ], [ 85.310160792612621, 27.628289925261456 ], [ 85.310514068647095, 27.628257258845185 ], [ 85.310894156553189, 27.627992111685902 ], [ 85.311272670701257, 27.627568988584741 ], [ 85.311566899682177, 27.627397618041723 ], [ 85.311801471728856, 27.627140003908035 ], [ 85.312048905938866, 27.626804246217091 ], [ 85.312030613978948, 27.626539513410027 ], [ 85.311925240681148, 27.626295029871581 ], [ 85.311741983675006, 27.626098656742634 ], [ 85.311403696730054, 27.625822776528572 ], [ 85.311163448577375, 27.625569233607308 ], [ 85.310733271201684, 27.624971809300078 ], [ 85.310569388502543, 27.624766112970441 ], [ 85.310326149490535, 27.624334459396547 ], [ 85.31016924608376, 27.624369584942681 ], [ 85.310125177117015, 27.624369499787463 ], [ 85.309869452742646, 27.624304285061328 ], [ 85.30892164366054, 27.625126072733089 ], [ 85.308377010809963, 27.625673449017722 ], [ 85.308392705716471, 27.62601192977904 ], [ 85.307702751011234, 27.626447257867941 ], [ 85.305856627213387, 27.627462260632907 ], [ 85.305140511710746, 27.627313632887049 ], [ 85.305127000097499, 27.628759375505609 ], [ 85.305163423889951, 27.628909120054793 ], [ 85.306769848966965, 27.630248267381798 ], [ 85.306973652443503, 27.630594628685959 ], [ 85.308505195441043, 27.631349465563481 ], [ 85.309661743779813, 27.631313196126413 ], [ 85.309887290713846, 27.631057215698522 ], [ 85.309976861560841, 27.630782613568577 ], [ 85.310094014856062, 27.63050080175336 ], [ 85.310177093349438, 27.630162419103254 ], [ 85.310152634614909, 27.629916357540807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 3, "population": 0, "densitycap": 200.0, "avgincome": "lowIncomeB", "area": 66.122, "luf": "RESIDENTIAL (MODERATE DENSITY)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.305856627213387, 27.627462260632907 ], [ 85.307702751011234, 27.626447257867941 ], [ 85.308392705716471, 27.62601192977904 ], [ 85.308377010809963, 27.625673449017722 ], [ 85.30892164366054, 27.625126072733089 ], [ 85.309869452742646, 27.624304285061328 ], [ 85.309843286536903, 27.62427847382968 ], [ 85.309719287113907, 27.624100073516715 ], [ 85.309601323388421, 27.623887172962558 ], [ 85.309439299198615, 27.623432076462443 ], [ 85.309434120565044, 27.623408988396033 ], [ 85.309434511567744, 27.623385329905478 ], [ 85.309500050357613, 27.622909688957527 ], [ 85.309583051663822, 27.622606576949828 ], [ 85.309602457695334, 27.62220762702831 ], [ 85.309512373955315, 27.622068018520974 ], [ 85.309498742163484, 27.622035316861929 ], [ 85.309450842472671, 27.621817916549169 ], [ 85.309449304371071, 27.621783742874808 ], [ 85.309459374218406, 27.621751050307559 ], [ 85.309563173968954, 27.621547050792515 ], [ 85.309599829160163, 27.621507271912911 ], [ 85.309768589693491, 27.621403252486814 ], [ 85.310028349097436, 27.621223640383175 ], [ 85.310124734594041, 27.621062888828028 ], [ 85.310157105495023, 27.620875390157593 ], [ 85.310126045188753, 27.620697358299758 ], [ 85.310046703651309, 27.620496665073109 ], [ 85.310040793309597, 27.620474646268647 ], [ 85.31000537904788, 27.620222523535954 ], [ 85.310015778808008, 27.620048823979417 ], [ 85.310028117330944, 27.620006356985535 ], [ 85.310139377075288, 27.619806611293907 ], [ 85.310267491283383, 27.619631568313988 ], [ 85.310414781093343, 27.619515710140178 ], [ 85.31052704942779, 27.619438191288229 ], [ 85.310563162737978, 27.619377587594471 ], [ 85.310554006899437, 27.619268672027484 ], [ 85.310501149385416, 27.619165669750121 ], [ 85.310320375620663, 27.618971303677345 ], [ 85.310054718737774, 27.618670462123369 ], [ 85.309853819185889, 27.61843346198599 ], [ 85.309606107680125, 27.618018476998035 ], [ 85.309570107818629, 27.617889976468174 ], [ 85.30956642634095, 27.617860721468926 ], [ 85.309571436689154, 27.617831664547747 ], [ 85.309610736163279, 27.617712564631187 ], [ 85.309620977890546, 27.617690775589967 ], [ 85.309636130571491, 27.617672065925273 ], [ 85.309797931198091, 27.617515366253304 ], [ 85.309816984353844, 27.617500897694978 ], [ 85.310001793282453, 27.617443638249682 ], [ 85.310157805637033, 27.617417852524262 ], [ 85.310255773790473, 27.617343910571368 ], [ 85.310359472952101, 27.617133151808662 ], [ 85.31049841164986, 27.616911764014887 ], [ 85.310686647539185, 27.61664228659512 ], [ 85.310241524117046, 27.616633569209661 ], [ 85.30953036622644, 27.616662927511296 ], [ 85.304111673265538, 27.616596787856061 ], [ 85.303844521454266, 27.617179066237355 ], [ 85.303571229492235, 27.617991750229702 ], [ 85.303362664573839, 27.61852395036632 ], [ 85.303312321317662, 27.619538007383337 ], [ 85.303470542979909, 27.622285310791217 ], [ 85.303585613279694, 27.623594235451531 ], [ 85.303772602516901, 27.624155203163053 ], [ 85.303844521454252, 27.624529181637438 ], [ 85.305140511710746, 27.627313632887049 ], [ 85.305856627213387, 27.627462260632907 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 4, "population": 0, "densitycap": 100.0, "avgincome": "highIncome", "area": 47.182, "luf": "RESIDENTIAL (LOW DENSITY)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.319003263657592, 27.62048977307418 ], [ 85.319088825717031, 27.620477785749184 ], [ 85.319091325724941, 27.620368385749444 ], [ 85.319091372234141, 27.620366858733028 ], [ 85.319094153895037, 27.620293783907822 ], [ 85.319095072240728, 27.620269658733342 ], [ 85.31909906735082, 27.620245120166118 ], [ 85.31914916733416, 27.620073320166455 ], [ 85.319149516408118, 27.620072149024612 ], [ 85.319153850890515, 27.620057915518018 ], [ 85.319282371901934, 27.61961873456065 ], [ 85.319249760954591, 27.619050425221516 ], [ 85.319249936016419, 27.619033823970732 ], [ 85.319256634221134, 27.618962143218567 ], [ 85.319269232436199, 27.618826762466998 ], [ 85.31927019545212, 27.618819378648979 ], [ 85.319309995189784, 27.618582580215897 ], [ 85.319352794921244, 27.618327881820566 ], [ 85.319354260740838, 27.61832073791064 ], [ 85.319435660723016, 27.617985437912193 ], [ 85.319436394366861, 27.61798259441224 ], [ 85.319513565158303, 27.617700267038124 ], [ 85.319635544598782, 27.617236645885374 ], [ 85.31965693239944, 27.617096366092621 ], [ 85.319650334068015, 27.61705545642176 ], [ 85.319618198021232, 27.617014138664086 ], [ 85.31952372818867, 27.616909969743812 ], [ 85.319518135670791, 27.616903315714584 ], [ 85.319409735611586, 27.616763915722828 ], [ 85.31940863410145, 27.616762475565853 ], [ 85.31937653538327, 27.616719803814767 ], [ 85.319337542642103, 27.616703020521268 ], [ 85.311900915749348, 27.616512620032619 ], [ 85.31202519547756, 27.616534314097926 ], [ 85.312002482738535, 27.616637554420297 ], [ 85.311967651812338, 27.616826740035123 ], [ 85.311951187805334, 27.616866650418441 ], [ 85.311874260359545, 27.616980516418334 ], [ 85.311842738241623, 27.617011920200682 ], [ 85.311800480182583, 27.617030833469542 ], [ 85.31158483666205, 27.61708560997905 ], [ 85.311557735411995, 27.617089729871292 ], [ 85.311272136533702, 27.617105082098252 ], [ 85.311041942353597, 27.617132601056856 ], [ 85.310854603072045, 27.617375645845936 ], [ 85.310838517303523, 27.617392644375496 ], [ 85.31079557561317, 27.617429863015829 ], [ 85.310661088046757, 27.617626407594159 ], [ 85.310629822336153, 27.617657344223776 ], [ 85.310477872236788, 27.617760728835684 ], [ 85.310437479147865, 27.617779107493757 ], [ 85.31027223526057, 27.617823384763192 ], [ 85.310205117814178, 27.617902614228473 ], [ 85.310208901910073, 27.617955963945054 ], [ 85.310335409726122, 27.618130106683754 ], [ 85.310489305642392, 27.618308711919816 ], [ 85.310687170503016, 27.618523085338509 ], [ 85.311007081027881, 27.618759390662422 ], [ 85.311033254409423, 27.618785899819272 ], [ 85.311190953444537, 27.61900785722597 ], [ 85.311208085494187, 27.619045887349746 ], [ 85.311208836294099, 27.619086859482806 ], [ 85.311162066589731, 27.619335027908413 ], [ 85.31115093774423, 27.619365911976551 ], [ 85.310963100483065, 27.619708031073937 ], [ 85.310951371055069, 27.619725288576756 ], [ 85.31074031539633, 27.619981015072451 ], [ 85.310622056998398, 27.62021309024637 ], [ 85.310692126823966, 27.620294800502851 ], [ 85.310713478118856, 27.620332987655729 ], [ 85.310717382278298, 27.620375506551984 ], [ 85.310692821916035, 27.620576111020281 ], [ 85.310619140169678, 27.621177924341747 ], [ 85.310610968055428, 27.621207278074397 ], [ 85.310594334443437, 27.62123364312475 ], [ 85.310476837032979, 27.621372339963798 ], [ 85.310369645474537, 27.621520555015127 ], [ 85.310358729621043, 27.62153350267597 ], [ 85.310244966851499, 27.621649988095609 ], [ 85.310165254488822, 27.621761906177081 ], [ 85.310104324965906, 27.621866835021464 ], [ 85.31010290663059, 27.621959193360837 ], [ 85.310120810717123, 27.622154978937967 ], [ 85.310121216931208, 27.622165680174835 ], [ 85.3101161478167, 27.622495764919314 ], [ 85.310142710175398, 27.622835818082624 ], [ 85.310142932493392, 27.622847734063644 ], [ 85.310118235715095, 27.623454620646466 ], [ 85.310163539776937, 27.623534611902397 ], [ 85.310196319370306, 27.623580747354875 ], [ 85.310254586076908, 27.623476266903964 ], [ 85.310265255407202, 27.62346037819216 ], [ 85.31037015556015, 27.623343938650532 ], [ 85.310385929505415, 27.623330797717465 ], [ 85.310405217007911, 27.623322140300452 ], [ 85.311780026999486, 27.622910611022029 ], [ 85.316522408286573, 27.620788098119746 ], [ 85.316538411820318, 27.620782843296325 ], [ 85.318677296766253, 27.620315156083166 ], [ 85.31870469890562, 27.620313711467649 ], [ 85.318730889390821, 27.620321033123108 ], [ 85.3188703545556, 27.620386613430785 ], [ 85.318926190478734, 27.620430738740367 ], [ 85.318979438894317, 27.620483646145111 ], [ 85.319003263657592, 27.62048977307418 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 5, "population": 2966, "densitycap": 200.0, "avgincome": "lowIncomeB", "area": 8.0, "luf": "RESIDENTIAL (MODERATE DENSITY)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.31335570584389, 27.639732051480223 ], [ 85.313516021577769, 27.639608884460106 ], [ 85.313657833792988, 27.639522761148346 ], [ 85.313823146589982, 27.639463544192946 ], [ 85.313961133158045, 27.639431946451548 ], [ 85.314009177052199, 27.63942357026438 ], [ 85.314024773659455, 27.638974108517598 ], [ 85.314008051611154, 27.638361448897328 ], [ 85.313857128590129, 27.63822210201992 ], [ 85.313747734564487, 27.638143571569056 ], [ 85.313539758385929, 27.6380611798822 ], [ 85.313143992129355, 27.637944558442239 ], [ 85.312685793467949, 27.637805879572035 ], [ 85.312346076702539, 27.637737855239948 ], [ 85.312125412844111, 27.637703224282149 ], [ 85.311979015485875, 27.63770714272458 ], [ 85.311747744010773, 27.637777997984738 ], [ 85.311738245427662, 27.637780307390528 ], [ 85.311231530649607, 27.637872576085588 ], [ 85.311219262589006, 27.637873896766294 ], [ 85.311069172276916, 27.637879099937827 ], [ 85.311055758855815, 27.637878507382197 ], [ 85.310866631443233, 27.637855109179846 ], [ 85.310859142124613, 27.637853838796484 ], [ 85.310583723000022, 27.637794231879152 ], [ 85.310582230005167, 27.63779389445406 ], [ 85.310364893963921, 27.637742681894217 ], [ 85.310131607067504, 27.637705126165244 ], [ 85.31012213893699, 27.637703035362154 ], [ 85.309784110648181, 27.637607506760901 ], [ 85.309774704760599, 27.637604221097341 ], [ 85.309429539870095, 27.637459384837825 ], [ 85.309408511670028, 27.637446298658144 ], [ 85.309205975886712, 27.637268043901724 ], [ 85.309193829278655, 27.637254126421624 ], [ 85.309073147273523, 27.637070749658353 ], [ 85.309072387075489, 27.637120189631371 ], [ 85.309071420885374, 27.637132636618087 ], [ 85.30905517983966, 27.637248353693103 ], [ 85.309075046396799, 27.63740758316392 ], [ 85.309075809318742, 27.63742158593762 ], [ 85.309073890406978, 27.637546381699412 ], [ 85.309080204873638, 27.637635415091253 ], [ 85.309080090072172, 27.637651103962845 ], [ 85.309070570722881, 27.637762274304496 ], [ 85.309069411477395, 27.637837664201843 ], [ 85.309068231317667, 27.637914413925685 ], [ 85.309096029750251, 27.638076621440614 ], [ 85.309115744711804, 27.638177900191188 ], [ 85.309159417147555, 27.638270222618832 ], [ 85.309200138251057, 27.638321550546205 ], [ 85.309322123144241, 27.638390000268366 ], [ 85.309389751134944, 27.638427267904969 ], [ 85.309545008107307, 27.638475470450061 ], [ 85.309556335447652, 27.638479542753789 ], [ 85.309700446506412, 27.638538700628168 ], [ 85.309746546857596, 27.638570916693215 ], [ 85.309800963243362, 27.638631830525608 ], [ 85.309898106118794, 27.638676577575502 ], [ 85.310003160166033, 27.638711442384796 ], [ 85.310026452784186, 27.638721706279927 ], [ 85.310143894755214, 27.638787605627858 ], [ 85.310354299537678, 27.638802675796665 ], [ 85.310404938241277, 27.638816153966758 ], [ 85.310608858154694, 27.638915502878998 ], [ 85.310635752703703, 27.638933061730498 ], [ 85.310740185288893, 27.639022278034282 ], [ 85.311001755421316, 27.639132645202658 ], [ 85.311018160762245, 27.63914095266685 ], [ 85.311201778498855, 27.63925081607988 ], [ 85.311212177717707, 27.639257753151959 ], [ 85.311379465017737, 27.639381767644402 ], [ 85.311385879607229, 27.639386860731918 ], [ 85.311479880546202, 27.639466754990913 ], [ 85.311676966431463, 27.639538494309633 ], [ 85.311888356727977, 27.639597085770642 ], [ 85.31189167535841, 27.63959805046575 ], [ 85.312284621937039, 27.639717636239407 ], [ 85.312310874014671, 27.639728765895864 ], [ 85.312534550357469, 27.639853465463887 ], [ 85.312548882411747, 27.639862759091834 ], [ 85.312724117414973, 27.639994043877085 ], [ 85.312740570312911, 27.640008890452705 ], [ 85.312761909820736, 27.640032094210348 ], [ 85.313032942186965, 27.63992245553916 ], [ 85.31335570584389, 27.639732051480223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 6, "population": 1076, "densitycap": 100.0, "avgincome": "highIncome", "area": 4.945, "luf": "RESIDENTIAL (LOW DENSITY)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.312863949204996, 27.624238921911445 ], [ 85.312626326631758, 27.623984358196957 ], [ 85.31260173729666, 27.623676073722041 ], [ 85.312643267368401, 27.623481986621979 ], [ 85.312763030812661, 27.623214448259102 ], [ 85.312908491195216, 27.622947222338563 ], [ 85.313071995822483, 27.622760341981493 ], [ 85.313334266800595, 27.622447084582724 ], [ 85.313475165716739, 27.622303457550416 ], [ 85.311843452868288, 27.623033723142697 ], [ 85.311833543569008, 27.623037401988931 ], [ 85.310505755534763, 27.623434856241506 ], [ 85.31077227107501, 27.623604394395034 ], [ 85.311011208935085, 27.623809621825817 ], [ 85.311172229951765, 27.624028541526055 ], [ 85.311230564099489, 27.624122424370839 ], [ 85.311328667174308, 27.624254060425287 ], [ 85.311404440635556, 27.624380100407798 ], [ 85.311503670644896, 27.624535708723371 ], [ 85.311640726672309, 27.624758329271248 ], [ 85.311824165478527, 27.625074686832029 ], [ 85.311911811275195, 27.62520619521856 ], [ 85.311978743825193, 27.625324141086722 ], [ 85.312068302640427, 27.62542838641917 ], [ 85.312193693697125, 27.625632229986181 ], [ 85.312259449085843, 27.625729530339438 ], [ 85.312188539055271, 27.625739650352887 ], [ 85.312127738601092, 27.625748210275123 ], [ 85.3126583204822, 27.62567426595168 ], [ 85.312661515797686, 27.625673882294244 ], [ 85.313585955158459, 27.625580620828458 ], [ 85.313451615271433, 27.625058931079764 ], [ 85.313199108792887, 27.624763971718025 ], [ 85.313073426307298, 27.6245792973391 ], [ 85.312863949204996, 27.624238921911445 ] ] ], [ [ [ 85.312127738601106, 27.625748210275134 ], [ 85.312127738601092, 27.625748210275123 ], [ 85.312059468245735, 27.625671132804971 ], [ 85.312127738601106, 27.625748210275134 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 8, "population": 1391, "densitycap": 100.0, "avgincome": "highIncome", "area": 4.988, "luf": "RESIDENTIAL (LOW DENSITY)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.319586370761797, 27.620101528137859 ], [ 85.319538168042556, 27.620312706959702 ], [ 85.319516798142487, 27.620449807704723 ], [ 85.319575710711661, 27.620799643870527 ], [ 85.319582267972095, 27.621211802226433 ], [ 85.319571782160295, 27.621898473328155 ], [ 85.319558279651773, 27.622361898446076 ], [ 85.319461740343954, 27.622792839201274 ], [ 85.319430733081433, 27.622929823098151 ], [ 85.31946652665772, 27.623110541265358 ], [ 85.31952961353997, 27.623397471467726 ], [ 85.319628910550975, 27.624048270927357 ], [ 85.319631770573494, 27.624076490875737 ], [ 85.320208606467602, 27.623851384067326 ], [ 85.320587429290129, 27.623639243304464 ], [ 85.320611985326465, 27.62363035547094 ], [ 85.32086041005202, 27.623583036542477 ], [ 85.320774331044305, 27.623212044302317 ], [ 85.320667951762175, 27.623021187122788 ], [ 85.320663840228548, 27.623012265434237 ], [ 85.32048796982879, 27.622536703435799 ], [ 85.32048415504012, 27.622515571813583 ], [ 85.320483886894507, 27.622152470119648 ], [ 85.320491485363291, 27.622122923171563 ], [ 85.320912477845098, 27.621348640768623 ], [ 85.320919819366623, 27.621337840037086 ], [ 85.321323275142973, 27.620852966626366 ], [ 85.319678980787856, 27.619799566357056 ], [ 85.319586370761797, 27.620101528137859 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 9, "population": 1297, "densitycap": 100.0, "avgincome": "highIncome", "area": 7.199, "luf": "RESIDENTIAL (GATED NEIGHBORHOOD)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.324478960957748, 27.622697798412094 ], [ 85.324479527063232, 27.622694783632127 ], [ 85.324599312522054, 27.622134882843248 ], [ 85.324609299413922, 27.621536348037449 ], [ 85.323747793092366, 27.620833244397289 ], [ 85.32272198284717, 27.620266945180713 ], [ 85.322719637308992, 27.620265596568473 ], [ 85.322286463589506, 27.620006370581443 ], [ 85.321613432979476, 27.620731597801786 ], [ 85.321448507821827, 27.620929806869505 ], [ 85.323814954372168, 27.622318506521157 ], [ 85.324477558516335, 27.622706465697782 ], [ 85.324478960957748, 27.622697798412094 ] ], [ [ 85.322687623060773, 27.620525066260043 ], [ 85.32215514122916, 27.62018920023802 ], [ 85.32227744729316, 27.620044645436288 ], [ 85.322827238440837, 27.620370531846895 ], [ 85.322687623060773, 27.620525066260043 ] ] ], [ [ [ 85.319711967157119, 27.619450591240557 ], [ 85.319687801892528, 27.619770804399604 ], [ 85.319678980787856, 27.619799566357056 ], [ 85.321323275142973, 27.620852966626366 ], [ 85.321492531587694, 27.620649552424258 ], [ 85.321495012013258, 27.620646730749151 ], [ 85.322159690209986, 27.619930504573603 ], [ 85.321921233750075, 27.619787802581882 ], [ 85.321909598792814, 27.619779229843111 ], [ 85.321364148916416, 27.619288272681146 ], [ 85.320987061179679, 27.619088466832132 ], [ 85.320973926051721, 27.619079664348796 ], [ 85.320488920774295, 27.618674468924802 ], [ 85.320380218967401, 27.61866064935916 ], [ 85.320176401145133, 27.618699737697685 ], [ 85.32004266564249, 27.618746086940082 ], [ 85.319987854714171, 27.618795829853116 ], [ 85.319987448741117, 27.618796195499186 ], [ 85.319778950410637, 27.618982560926622 ], [ 85.319723605980982, 27.619032109944804 ], [ 85.319728747026474, 27.619193245115596 ], [ 85.319711967157119, 27.619450591240557 ] ], [ [ 85.321843441580427, 27.620002037729797 ], [ 85.321811213945878, 27.619740144756246 ], [ 85.32211505573683, 27.61994249491342 ], [ 85.321985073684473, 27.62009035285455 ], [ 85.321843441580427, 27.620002037729797 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 10, "population": 738, "densitycap": 250.0, "avgincome": "midIncome", "area": 2.711, "luf": "COMMERCIAL AND RESIDENTIAL", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.321417508867128, 27.622365005820267 ], [ 85.3215908325664, 27.622407298309682 ], [ 85.321626684963718, 27.62237882441724 ], [ 85.321664161264891, 27.622352060837827 ], [ 85.321703158750751, 27.622327080927338 ], [ 85.321743570532973, 27.622303953152777 ], [ 85.321785285847, 27.622282740904648 ], [ 85.321819241567781, 27.622266719873156 ], [ 85.321857396077377, 27.622251799350693 ], [ 85.32190201978797, 27.622235964655736 ], [ 85.321947512739087, 27.622222231835586 ], [ 85.322009306343958, 27.62220725520574 ], [ 85.32204060555982, 27.622201216515712 ], [ 85.322072122311852, 27.622196154445366 ], [ 85.322119721264741, 27.622190405665375 ], [ 85.322183587835767, 27.622186206298569 ], [ 85.322231618553673, 27.622185667218609 ], [ 85.322263628187827, 27.622186552290401 ], [ 85.322279615124046, 27.622187367873156 ], [ 85.322295583645428, 27.622188431847835 ], [ 85.322311528887909, 27.622189743890353 ], [ 85.322343330116865, 27.622193110504877 ], [ 85.322374980066868, 27.622197463615144 ], [ 85.322453190628508, 27.622212624565947 ], [ 85.322499299630564, 27.622224617062649 ], [ 85.322544640805106, 27.62223874253802 ], [ 85.322574380216793, 27.6222493256282 ], [ 85.322603686855928, 27.62226082672635 ], [ 85.32263252501744, 27.622273231820444 ], [ 85.322646757416152, 27.622279768685569 ], [ 85.322660859567023, 27.622286525797122 ], [ 85.322674827174438, 27.622293501096838 ], [ 85.322688655983811, 27.622300692460044 ], [ 85.322702341782787, 27.622308097696209 ], [ 85.322715880402569, 27.622315714549678 ], [ 85.322729267719225, 27.622323540700314 ], [ 85.322742499654893, 27.62233157376426 ], [ 85.322781223114418, 27.622356889656238 ], [ 85.322818406023828, 27.622383975984299 ], [ 85.322853946467774, 27.622412758507995 ], [ 85.32290926818807, 27.622464282422889 ], [ 85.32295933784016, 27.622519904907875 ], [ 85.322995354579149, 27.622567070365562 ], [ 85.32301989443431, 27.622603850589758 ], [ 85.323035038946458, 27.622628984612266 ], [ 85.323049189444802, 27.622654574093804 ], [ 85.323062328688579, 27.622680587857811 ], [ 85.323085510628985, 27.622733760980854 ], [ 85.323100132627161, 27.622774515471288 ], [ 85.323112339952772, 27.622815895727378 ], [ 85.323122099143788, 27.622857788329224 ], [ 85.323127231706991, 27.622885944711935 ], [ 85.323129383448162, 27.62290007845251 ], [ 85.323262674312275, 27.62278871438691 ], [ 85.323433523539435, 27.622639717967875 ], [ 85.323640131907169, 27.62241721664876 ], [ 85.323814954372168, 27.622318506521157 ], [ 85.321448507821827, 27.620929806869505 ], [ 85.3210461580355, 27.621413351755404 ], [ 85.32063587897477, 27.622167931947391 ], [ 85.320635881441007, 27.622171264910687 ], [ 85.321417508867128, 27.622365005820267 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 11, "population": 1290, "densitycap": 250.0, "avgincome": "midIncome", "area": 3.453, "luf": "COMMERCIAL AND RESIDENTIAL", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.323814954372168, 27.622318506521157 ], [ 85.323640131907169, 27.62241721664876 ], [ 85.323433523539435, 27.622639717967875 ], [ 85.323129383448162, 27.62290007845251 ], [ 85.323136454360764, 27.622985386835317 ], [ 85.323135585180211, 27.623042423096354 ], [ 85.323130251258036, 27.623099266414854 ], [ 85.323120478573827, 27.623155639855074 ], [ 85.323102095274052, 27.623225027807948 ], [ 85.323092850866388, 27.623252338652403 ], [ 85.323082541992491, 27.623279345495501 ], [ 85.323071181211489, 27.623306015433304 ], [ 85.323052198337081, 27.62334531768505 ], [ 85.323007440903595, 27.623421000733146 ], [ 85.322972770230777, 27.623468959922775 ], [ 85.32295404679212, 27.623492102075705 ], [ 85.322934427994241, 27.623514648109381 ], [ 85.322913937739457, 27.623536570554553 ], [ 85.322881623267421, 27.623568226782581 ], [ 85.322859065835857, 27.623588475144192 ], [ 85.322835728764417, 27.623608009969079 ], [ 85.32279932378033, 27.623635922506246 ], [ 85.322761328578835, 27.62366209973753 ], [ 85.322721847303015, 27.623686469911785 ], [ 85.322680988169452, 27.623708966230861 ], [ 85.322653038429763, 27.623722892079371 ], [ 85.322580927412474, 27.62375383400801 ], [ 85.322521229121548, 27.623774482080059 ], [ 85.322475473422855, 27.623787505778889 ], [ 85.322444571491857, 27.623794995322008 ], [ 85.322413394925547, 27.623801519711026 ], [ 85.322366198306398, 27.623809479565907 ], [ 85.322254731137576, 27.623819427785026 ], [ 85.322190690315523, 27.623819648696653 ], [ 85.322142733671726, 27.623817202129615 ], [ 85.322110870861209, 27.623814330313902 ], [ 85.322079139987125, 27.623810469787255 ], [ 85.322031875569976, 27.623802835781419 ], [ 85.321985124497232, 27.623793008964952 ], [ 85.321954305656263, 27.623785252582003 ], [ 85.321939014912886, 27.623781016273167 ], [ 85.321908694067929, 27.623771833872592 ], [ 85.321878751485542, 27.623761714537782 ], [ 85.321849223646794, 27.623750670597857 ], [ 85.321820146527358, 27.623738715508477 ], [ 85.321805788080823, 27.623732400791646 ], [ 85.321791555553787, 27.623725863835372 ], [ 85.32176348556024, 27.623712131236665 ], [ 85.321735970746118, 27.62369753444375 ], [ 85.321722432034804, 27.623689917491511 ], [ 85.32169581262275, 27.623674058075988 ], [ 85.32168274003061, 27.623665820443719 ], [ 85.321644518341586, 27.62363990614287 ], [ 85.321607871731388, 27.623612245619508 ], [ 85.32157290064616, 27.623582914690534 ], [ 85.32153970093924, 27.623551993751253 ], [ 85.32149834669022, 27.623508439569115 ], [ 85.321469625222193, 27.62347414529853 ], [ 85.321451614306355, 27.623450558791085 ], [ 85.321434538537105, 27.623426426780153 ], [ 85.321410723473633, 27.623389270433325 ], [ 85.321389124299372, 27.623351054848328 ], [ 85.321375985388954, 27.62332504094217 ], [ 85.321358207845506, 27.623285294035735 ], [ 85.321325976099303, 27.623189732540286 ], [ 85.321308933964048, 27.623105549656081 ], [ 85.321303105855236, 27.623048744886781 ], [ 85.321301740670293, 27.622991716376237 ], [ 85.321303650391215, 27.622948965296661 ], [ 85.321308069453622, 27.622906361828864 ], [ 85.321317843030286, 27.622849988554698 ], [ 85.321336227366473, 27.622780600881981 ], [ 85.321355781394189, 27.622726283471312 ], [ 85.321379541679164, 27.622673313312493 ], [ 85.321414978821196, 27.622609387602584 ], [ 85.32144774963119, 27.622560380271398 ], [ 85.321484278625704, 27.622513528447378 ], [ 85.32152438783703, 27.622469060384944 ], [ 85.321545724614481, 27.622447788447523 ], [ 85.3215908325664, 27.622407298309682 ], [ 85.321417477826202, 27.622365005820257 ], [ 85.320635881441504, 27.622171265592687 ], [ 85.320636128097476, 27.622504644851084 ], [ 85.320806494205755, 27.6229653212961 ], [ 85.32091482670414, 27.623159682313357 ], [ 85.320921180563872, 27.623176081606168 ], [ 85.321020752470261, 27.623605224268726 ], [ 85.321255257110565, 27.623861165846304 ], [ 85.32125561562107, 27.623861736772113 ], [ 85.321255712490654, 27.623861667717772 ], [ 85.321309686840635, 27.623921735917872 ], [ 85.321573527503062, 27.624012308054645 ], [ 85.322034123006873, 27.624097678038069 ], [ 85.322992579065414, 27.624073938324436 ], [ 85.323818567943761, 27.623895612328404 ], [ 85.324139926601731, 27.623700474894072 ], [ 85.324411233215528, 27.623116363548338 ], [ 85.324477558516335, 27.622706465697782 ], [ 85.323814954372168, 27.622318506521157 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 12, "population": 0, "densitycap": 100.0, "avgincome": "highIncome", "area": 10.583, "luf": "RESIDENTIAL (LOW DENSITY)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.326353800373781, 27.627060728233165 ], [ 85.325979821899409, 27.62593879281005 ], [ 85.325720913724851, 27.624931927686752 ], [ 85.325072686749323, 27.623052530751554 ], [ 85.324756624045804, 27.621816385371957 ], [ 85.324751178408889, 27.622142778249096 ], [ 85.324749843589174, 27.622154442465177 ], [ 85.324629143469664, 27.622718622143388 ], [ 85.324560303783883, 27.623144062739698 ], [ 85.324555308988437, 27.62316028257592 ], [ 85.324271693939124, 27.623770895011962 ], [ 85.324260450999006, 27.62378770339873 ], [ 85.324244280141201, 27.623800945253031 ], [ 85.323892735229762, 27.624014412667645 ], [ 85.323867831021261, 27.624024267689101 ], [ 85.32302059783008, 27.624207180185188 ], [ 85.323004809642711, 27.624209058758982 ], [ 85.322282978237396, 27.624226938206693 ], [ 85.322438481760827, 27.624264276515959 ], [ 85.323034088630322, 27.624553149282995 ], [ 85.323187691738326, 27.624672138045906 ], [ 85.323251107212542, 27.624727477411152 ], [ 85.323311291162469, 27.624798750173763 ], [ 85.32339882922831, 27.624938236678702 ], [ 85.323432119223014, 27.625009184278081 ], [ 85.323479965192462, 27.625105597603898 ], [ 85.323514384414253, 27.625200517572875 ], [ 85.323550929804298, 27.625392068670379 ], [ 85.323658338580927, 27.626228322716869 ], [ 85.323934532577908, 27.626934151820315 ], [ 85.324532952904747, 27.627379131037713 ], [ 85.325315502562916, 27.627670669145662 ], [ 85.325852546445986, 27.627709029423016 ], [ 85.326485491022439, 27.627966043281337 ], [ 85.326635096104155, 27.628127156446251 ], [ 85.326353800373781, 27.627060728233165 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 15, "population": 1453, "densitycap": 250.0, "avgincome": "midIncome", "area": 4.744, "luf": "CITY CENTER", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.319513302536322, 27.624563416054642 ], [ 85.319513477641308, 27.624572187277547 ], [ 85.31951345220692, 27.624569460185405 ], [ 85.319513302536322, 27.624563416054642 ] ] ], [ [ [ 85.319516282912971, 27.624877392482126 ], [ 85.319516374108915, 27.624882750172205 ], [ 85.319516319549095, 27.624876900168701 ], [ 85.319516282912971, 27.624877392482126 ] ] ], [ [ [ 85.319030018635544, 27.629110089813611 ], [ 85.319221291171985, 27.629201693729922 ], [ 85.32057063080785, 27.626620459781524 ], [ 85.32075319406448, 27.62631070799938 ], [ 85.320969488156479, 27.626376300068905 ], [ 85.320999485469187, 27.625886350693015 ], [ 85.320463012611924, 27.625794789184916 ], [ 85.319320885745896, 27.625704299995736 ], [ 85.319076860851737, 27.625904520248103 ], [ 85.319033133982572, 27.626032764821133 ], [ 85.319015301406907, 27.626358777543487 ], [ 85.318994693513531, 27.626656140041661 ], [ 85.31894073816477, 27.627033224683927 ], [ 85.318883526320789, 27.627413131455494 ], [ 85.318824063547709, 27.627730054453981 ], [ 85.318719210591965, 27.628283944552358 ], [ 85.318675283851462, 27.628635395636405 ], [ 85.318659198499105, 27.628846963121454 ], [ 85.318661906338662, 27.629090236656143 ], [ 85.318800484511584, 27.629127985027321 ], [ 85.318951146923297, 27.629143909858094 ], [ 85.318982333275457, 27.62910575221245 ], [ 85.319030018635544, 27.629110089813611 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 16, "population": 1110, "densitycap": 100.0, "avgincome": "highIncome", "area": 9.157, "luf": "RESIDENTIAL (LOW DENSITY)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.322383770148392, 27.619901516345006 ], [ 85.322803232413861, 27.620152536756919 ], [ 85.323834587851579, 27.620721896863728 ], [ 85.323847047567, 27.620730486894619 ], [ 85.324378360685444, 27.62118147009804 ], [ 85.324649804693763, 27.621434473891949 ], [ 85.324109929527566, 27.619868834495293 ], [ 85.323749570125045, 27.618429747241326 ], [ 85.322383770148392, 27.619901516345006 ] ] ], [ [ [ 85.320155987061753, 27.616890247048413 ], [ 85.320137563234965, 27.617126620170268 ], [ 85.320097648300617, 27.61741442593722 ], [ 85.319846388915963, 27.618360627464622 ], [ 85.319746519785241, 27.618819771359419 ], [ 85.319879594816371, 27.618700822736297 ], [ 85.319945650894653, 27.61864087447908 ], [ 85.319972328393575, 27.618625207224447 ], [ 85.320126935535399, 27.618571624421868 ], [ 85.320138495185958, 27.618568534217353 ], [ 85.32036151217244, 27.618525763830945 ], [ 85.320388243000167, 27.618524926574512 ], [ 85.320534143401972, 27.61854347528811 ], [ 85.320556292710535, 27.618549463270735 ], [ 85.320575390534373, 27.618561113159533 ], [ 85.321071863666305, 27.618975889103783 ], [ 85.321450184783828, 27.61917634834786 ], [ 85.321465348331458, 27.619186909749637 ], [ 85.322012286075889, 27.619679205735189 ], [ 85.322256996813579, 27.619825650427423 ], [ 85.323672252697051, 27.618300589231527 ], [ 85.323727394788051, 27.618341189400979 ], [ 85.323598516072281, 27.617826505992959 ], [ 85.320155987061753, 27.616890247048413 ] ], [ [ 85.321803454229666, 27.618498760230878 ], [ 85.322211376202404, 27.618001065362833 ], [ 85.322650048579206, 27.618237308390416 ], [ 85.322203955630897, 27.618737939023401 ], [ 85.321803454229666, 27.618498760230878 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 17, "population": 775, "densitycap": 100.0, "avgincome": "highIncome", "area": 4.835, "luf": "RESIDENTIAL (LOW DENSITY)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.316410551763994, 27.622099801425986 ], [ 85.317294800569613, 27.621841536109926 ], [ 85.317692934611571, 27.621857812253747 ], [ 85.317846419001185, 27.621905460289522 ], [ 85.318188314529337, 27.622156671324287 ], [ 85.31828328694111, 27.622228603561897 ], [ 85.318626698650604, 27.621780235649123 ], [ 85.318835317088642, 27.621412371598264 ], [ 85.319009768228881, 27.620986934237035 ], [ 85.319016478949337, 27.620962904448895 ], [ 85.319024472680368, 27.620938803825233 ], [ 85.319032570140735, 27.620907912177117 ], [ 85.319040403407556, 27.620878715396749 ], [ 85.319047000010244, 27.620852475251656 ], [ 85.319040319144619, 27.620821829022464 ], [ 85.319028422600283, 27.620789421514015 ], [ 85.319007242224302, 27.620740769825542 ], [ 85.318978619242614, 27.620680141443209 ], [ 85.318918533683203, 27.620619980775967 ], [ 85.318849008775643, 27.620553762431889 ], [ 85.318785673265282, 27.620499870518135 ], [ 85.318685480294789, 27.620452757049456 ], [ 85.316582978099987, 27.620912488570191 ], [ 85.313480049143806, 27.622301271950651 ], [ 85.313740397788536, 27.622225080850367 ], [ 85.314514031245494, 27.62205878717765 ], [ 85.315698396862473, 27.622003960453011 ], [ 85.316169811396605, 27.62205627056715 ], [ 85.316410551763994, 27.622099801425986 ] ] ], [ [ [ 85.319096842633783, 27.620562417958016 ], [ 85.319089342639984, 27.620490517957744 ], [ 85.319088825717031, 27.620477785749184 ], [ 85.319003263657592, 27.62048977307418 ], [ 85.318975845227868, 27.620480075495223 ], [ 85.318979438894317, 27.620483646145111 ], [ 85.319037803756316, 27.620549682776662 ], [ 85.319081023499663, 27.620621950014943 ], [ 85.319116645068476, 27.620692427093594 ], [ 85.319130760901373, 27.620732388820219 ], [ 85.319098307417718, 27.620571989580093 ], [ 85.319096842633783, 27.620562417958016 ] ] ], [ [ [ 85.318187430721551, 27.622157700732519 ], [ 85.318187431580199, 27.622157701367641 ], [ 85.318188314529337, 27.622156671324287 ], [ 85.318187430721551, 27.622157700732519 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 18, "population": 0, "densitycap": 0.0, "avgincome": null, "area": 8.098, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.317062066442986, 27.625150205063839 ], [ 85.316829314436674, 27.625145711132529 ], [ 85.316371279925065, 27.62511746546474 ], [ 85.315881718170772, 27.625047045202592 ], [ 85.31511964537853, 27.624826450045148 ], [ 85.315080038187091, 27.624790908847761 ], [ 85.314844094132127, 27.623741136808547 ], [ 85.314759880535618, 27.622937740726162 ], [ 85.31482138922027, 27.622422676891844 ], [ 85.314907872909799, 27.622040556567452 ], [ 85.314514031245494, 27.622058787177689 ], [ 85.313740397788521, 27.62222508085037 ], [ 85.31348004914382, 27.62230127195064 ], [ 85.313475165716739, 27.622303457550419 ], [ 85.313334266800609, 27.622447084582724 ], [ 85.313071995822483, 27.622760341981518 ], [ 85.312908491195216, 27.622947222338549 ], [ 85.312763030812675, 27.623214448259123 ], [ 85.312643267368387, 27.623481986621989 ], [ 85.31260173729666, 27.623676073722041 ], [ 85.312626326631758, 27.623984358196964 ], [ 85.312863949204996, 27.624238921911449 ], [ 85.313073426307298, 27.624579297339093 ], [ 85.313199108792901, 27.624763971718018 ], [ 85.313451615271447, 27.625058931079771 ], [ 85.313585955158459, 27.625580620828444 ], [ 85.31359449911821, 27.625579758846964 ], [ 85.313598918225139, 27.625579428997128 ], [ 85.314294142952292, 27.625545692350219 ], [ 85.31429931417513, 27.625545598409477 ], [ 85.315080715017601, 27.625555093748261 ], [ 85.315084164268626, 27.625555205473855 ], [ 85.315603538740433, 27.625582558466309 ], [ 85.316214763847555, 27.625596962625618 ], [ 85.316938769891351, 27.625561744190055 ], [ 85.317062066442986, 27.625150205063839 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 19, "population": 2218, "densitycap": 250.0, "avgincome": "midIncome", "area": 5.197, "luf": "CITY CENTER", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.319263588476772, 27.624861689926203 ], [ 85.319263201984498, 27.624726027424867 ], [ 85.319253997833442, 27.624264927249353 ], [ 85.319237509683887, 27.62409774493403 ], [ 85.319159706611075, 27.623627085365829 ], [ 85.319057178312676, 27.623213504931424 ], [ 85.319056139351389, 27.623208851122548 ], [ 85.319016339365049, 27.623008651120983 ], [ 85.319014565271928, 27.622994754957251 ], [ 85.319004865286459, 27.622826154957004 ], [ 85.319013350371335, 27.622779404409538 ], [ 85.319097865705487, 27.62258632073566 ], [ 85.319130197412619, 27.622397810431732 ], [ 85.319137953559917, 27.622264755710173 ], [ 85.319124023814481, 27.621985081249782 ], [ 85.319123933868568, 27.621977448510446 ], [ 85.319130534139077, 27.621725638893981 ], [ 85.319138234159965, 27.621432938894731 ], [ 85.319138474415126, 27.621428151389374 ], [ 85.319164048137111, 27.621083054527002 ], [ 85.319163323648397, 27.62103051423788 ], [ 85.319147338894453, 27.621046019924592 ], [ 85.318976538606179, 27.62146255509959 ], [ 85.318972988343162, 27.621469851531995 ], [ 85.318760107734207, 27.621845232000737 ], [ 85.318755053667545, 27.62185285890936 ], [ 85.318404782446777, 27.622310183425455 ], [ 85.318403862326463, 27.622311357870899 ], [ 85.318398064924949, 27.622318593366426 ], [ 85.318532378818247, 27.622428876215281 ], [ 85.318246596652784, 27.622718743870671 ], [ 85.318191751929774, 27.622787292900703 ], [ 85.318145444511231, 27.622883897254258 ], [ 85.318071267030518, 27.623044053506234 ], [ 85.31799230191146, 27.62322411723494 ], [ 85.317871409137069, 27.623507493456025 ], [ 85.317801428254228, 27.623686334966841 ], [ 85.317709410669949, 27.623938116280847 ], [ 85.317573156593014, 27.624346423487186 ], [ 85.317439849352937, 27.624416513512376 ], [ 85.317089799404485, 27.625554397053467 ], [ 85.317826459787781, 27.625518558337941 ], [ 85.318294230012597, 27.625442473800423 ], [ 85.31921804529965, 27.625041225482516 ], [ 85.319248902980377, 27.62503064013848 ], [ 85.319252972934976, 27.625004336164636 ], [ 85.319263588476772, 27.624861689926203 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 20, "population": 0, "densitycap": 350.0, "avgincome": "lowIncomeB", "area": 2.515, "luf": "RESIDENTIAL (HIGH DENSITY)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.314137232451429, 27.640723689601931 ], [ 85.314059049671044, 27.640145169471026 ], [ 85.314009177052213, 27.639423570264388 ], [ 85.313961133158045, 27.639431946451552 ], [ 85.313823146589996, 27.639463544192946 ], [ 85.313657833792988, 27.639522761148346 ], [ 85.313516021577783, 27.639608884460145 ], [ 85.313355705843904, 27.639732051480237 ], [ 85.313032942186979, 27.639922455539175 ], [ 85.312761909820736, 27.640032094210365 ], [ 85.312867363824381, 27.640146760640306 ], [ 85.312873840528439, 27.640154449387865 ], [ 85.312968633200256, 27.64027757983698 ], [ 85.312982109755708, 27.640300238397643 ], [ 85.313067746731406, 27.640495008516837 ], [ 85.313074334648675, 27.640515529316229 ], [ 85.31310341815518, 27.640654907898554 ], [ 85.313132757772152, 27.640751325924168 ], [ 85.313136792240115, 27.64077215463136 ], [ 85.313157326466325, 27.641009183240072 ], [ 85.313151485462072, 27.641052765801103 ], [ 85.313078628387089, 27.6412521689683 ], [ 85.313053922458494, 27.641380140207321 ], [ 85.313046502739127, 27.641403345212296 ], [ 85.312988297866113, 27.641531425578354 ], [ 85.312939794712364, 27.641640315400185 ], [ 85.314980635538078, 27.641655070745085 ], [ 85.314969581603336, 27.641594108479921 ], [ 85.314709925721758, 27.641412882135501 ], [ 85.314322772302191, 27.641113576137876 ], [ 85.314137232451429, 27.640723689601931 ] ], [ [ 85.313637889426602, 27.640453334915559 ], [ 85.313700135929324, 27.640497392657181 ], [ 85.313565627368988, 27.640689335728091 ], [ 85.313383367354774, 27.640575895428412 ], [ 85.31336784583155, 27.640535938107341 ], [ 85.31330300457364, 27.640480225073354 ], [ 85.313223582217432, 27.640397546638713 ], [ 85.313366159865168, 27.640374894210868 ], [ 85.313377783594859, 27.640314490494351 ], [ 85.313308288724699, 27.640280280502832 ], [ 85.313382458614313, 27.640177600806435 ], [ 85.313476687241945, 27.640047151739012 ], [ 85.313591144197574, 27.640020184719862 ], [ 85.31371871760912, 27.640093904135526 ], [ 85.313673953906445, 27.640152056013559 ], [ 85.313570115671567, 27.640286950453973 ], [ 85.313632063744834, 27.640325299182926 ], [ 85.313637889426602, 27.640453334915559 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 21, "population": 3300, "densitycap": 100.0, "avgincome": "highIncome", "area": 31.328, "luf": "RESIDENTIAL (LOW DENSITY)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.318676581817797, 27.634857393491803 ], [ 85.318636302643867, 27.63466296896139 ], [ 85.318561802545304, 27.634430700209958 ], [ 85.318166752915744, 27.63464286431406 ], [ 85.318149513200609, 27.634649687770349 ], [ 85.318130917487466, 27.6346525191151 ], [ 85.317770131674749, 27.6346669505376 ], [ 85.317749180624929, 27.63466519112222 ], [ 85.317236864804386, 27.634556955368435 ], [ 85.317236007540274, 27.634556769566835 ], [ 85.317206065062734, 27.634550115701721 ], [ 85.317232124656229, 27.634625688356572 ], [ 85.317235456391259, 27.634646993975785 ], [ 85.317232201714049, 27.634783694422616 ], [ 85.317301323968778, 27.634925230262024 ], [ 85.317307463314123, 27.634947735666461 ], [ 85.317304724115232, 27.634970766907269 ], [ 85.317157915450636, 27.635429840236949 ], [ 85.317109629475212, 27.635846742962546 ], [ 85.317158177422229, 27.636239630461219 ], [ 85.317396348266158, 27.637298469566709 ], [ 85.31739769872145, 27.637315723497597 ], [ 85.318196505110564, 27.637478754333795 ], [ 85.318201181703202, 27.637457542402366 ], [ 85.318294016426137, 27.637180323378118 ], [ 85.318322663042053, 27.6370718546336 ], [ 85.318324331445012, 27.637066199215127 ], [ 85.318438437821584, 27.636716546658754 ], [ 85.318486774406992, 27.636402846116585 ], [ 85.31848705260326, 27.636401137784681 ], [ 85.318705652604464, 27.635127437792494 ], [ 85.318706081508026, 27.635125102901984 ], [ 85.318716390634009, 27.635072452729503 ], [ 85.318676581817797, 27.634857393491803 ] ] ], [ [ [ 85.313580743625693, 27.636321528489692 ], [ 85.313732273480909, 27.636307097070684 ], [ 85.313755455466193, 27.636308062885899 ], [ 85.313989847746285, 27.636350383730019 ], [ 85.314010984665643, 27.636341136327204 ], [ 85.314105718940837, 27.636246402084019 ], [ 85.314107489730986, 27.636244691420977 ], [ 85.314161607569361, 27.63619418145958 ], [ 85.314179387145288, 27.636181887448441 ], [ 85.314200430311985, 27.636174770726281 ], [ 85.314222891157499, 27.636173455573811 ], [ 85.314417715258557, 27.636187886983393 ], [ 85.314440909011921, 27.636192958519782 ], [ 85.31458522318411, 27.636247076325077 ], [ 85.314588147318631, 27.636248238050268 ], [ 85.314740058680741, 27.636312040832546 ], [ 85.314790148932502, 27.636296011947124 ], [ 85.314899772098087, 27.636223973880973 ], [ 85.315049039098739, 27.63606113723478 ], [ 85.315129222286743, 27.63594260565894 ], [ 85.315135753651447, 27.635934399030546 ], [ 85.315276460050484, 27.635782869142329 ], [ 85.315290463289841, 27.635771176354847 ], [ 85.315307309379691, 27.63576298121394 ], [ 85.315617584829781, 27.635654745591285 ], [ 85.315639129875152, 27.635650307132607 ], [ 85.315661197542823, 27.635651580395145 ], [ 85.315938599599434, 27.635704418901121 ], [ 85.316219749906779, 27.63558217964912 ], [ 85.316382301838459, 27.635196119288739 ], [ 85.316394895917, 27.635176749068744 ], [ 85.316577639417105, 27.634979948493349 ], [ 85.316702799638733, 27.634771348318306 ], [ 85.316841167937895, 27.634501201071348 ], [ 85.316683307363164, 27.634060149841588 ], [ 85.316381483732115, 27.633703448942711 ], [ 85.31616158386683, 27.633574096050769 ], [ 85.315818027597189, 27.633532869266855 ], [ 85.315811524325497, 27.633531830774533 ], [ 85.315306424217809, 27.633430810736701 ], [ 85.315287389381808, 27.633424529061905 ], [ 85.315034424158725, 27.633304703434359 ], [ 85.314865357230772, 27.633323488629998 ], [ 85.314499235709405, 27.633380919444576 ], [ 85.314479794379437, 27.633381715504644 ], [ 85.314460763512812, 27.633378087899754 ], [ 85.314208213476434, 27.633298715018814 ], [ 85.314191144611058, 27.633291084004636 ], [ 85.314176750910534, 27.633279903912406 ], [ 85.314068515249971, 27.633171668192198 ], [ 85.314056254290463, 27.633154995085661 ], [ 85.31396773117666, 27.632984022223877 ], [ 85.313859387494702, 27.632790740333995 ], [ 85.313537073781674, 27.632614271608215 ], [ 85.313527366435295, 27.632607963555142 ], [ 85.313423375952539, 27.632528441407587 ], [ 85.313063985239594, 27.632501819838893 ], [ 85.31259683266677, 27.63253013209895 ], [ 85.31220080141722, 27.632585715434555 ], [ 85.3121321999771, 27.632616897905262 ], [ 85.312112115282446, 27.632623058732829 ], [ 85.312090900635241, 27.632624027967505 ], [ 85.312070213535179, 27.632619729883249 ], [ 85.311860957795346, 27.632547572719815 ], [ 85.311841616263678, 27.632537795317329 ], [ 85.311703997386772, 27.63244206044449 ], [ 85.311522615665339, 27.632478336758869 ], [ 85.311519008908576, 27.632478976880488 ], [ 85.311100497373346, 27.632543918314528 ], [ 85.311096466840226, 27.632544445030742 ], [ 85.311018706362532, 27.632552717495741 ], [ 85.31125312039282, 27.63323628766355 ], [ 85.311304261710177, 27.633398101090698 ], [ 85.311289208172482, 27.633505378159036 ], [ 85.311220630388021, 27.633606033335443 ], [ 85.311232751277572, 27.633689761261834 ], [ 85.311378708194496, 27.633801919177422 ], [ 85.311573441382762, 27.63387964069452 ], [ 85.311735671547069, 27.634044213804618 ], [ 85.312107888996294, 27.634453256841805 ], [ 85.312276966503418, 27.63504225330546 ], [ 85.312069127640626, 27.635238013336693 ], [ 85.311895200758812, 27.635545228277412 ], [ 85.311729811902595, 27.63587634170819 ], [ 85.31152430001984, 27.636500435368085 ], [ 85.311411116753817, 27.6369114999925 ], [ 85.311283505363321, 27.637281943702945 ], [ 85.311069996221434, 27.637743598698943 ], [ 85.311207155634818, 27.637738843794185 ], [ 85.311702962821016, 27.637648561256771 ], [ 85.312199458125804, 27.637496448033698 ], [ 85.312440094073594, 27.637375897429408 ], [ 85.312441877071436, 27.637375031924517 ], [ 85.312605592021711, 27.637298069543256 ], [ 85.31276118333578, 27.637150408211724 ], [ 85.312894815044572, 27.636977070388866 ], [ 85.312967024362408, 27.636702100018628 ], [ 85.312975781343411, 27.636682804234574 ], [ 85.313064661302988, 27.63655028884796 ], [ 85.313082137232655, 27.636532355402114 ], [ 85.313259188847269, 27.636410898243707 ], [ 85.313565856431381, 27.636324309744854 ], [ 85.313580743625693, 27.636321528489692 ] ], [ [ 85.313036743870924, 27.635200489115867 ], [ 85.313380968833883, 27.635133357985993 ], [ 85.313498296359484, 27.635688354035292 ], [ 85.313192039363202, 27.635766135685788 ], [ 85.313036743870924, 27.635200489115867 ] ], [ [ 85.315202207742828, 27.635231912398144 ], [ 85.315166630823782, 27.635065069724078 ], [ 85.31513450244006, 27.634922041856594 ], [ 85.31515548989583, 27.63479664005601 ], [ 85.315213874660202, 27.634719238479121 ], [ 85.315268082693535, 27.634665559039981 ], [ 85.315344801931516, 27.634635925996303 ], [ 85.315440583906536, 27.634606524501784 ], [ 85.315516054935458, 27.634658383334965 ], [ 85.315587193444216, 27.634744150806377 ], [ 85.315646478358047, 27.634856943299354 ], [ 85.315690565115446, 27.634966155023768 ], [ 85.315715693094774, 27.635068344181445 ], [ 85.31573037138584, 27.635105879917816 ], [ 85.315733299964378, 27.63516364971456 ], [ 85.315728499389778, 27.635228117886388 ], [ 85.315202207742828, 27.635231912398144 ] ] ], [ [ [ 85.316312684155974, 27.63779637971664 ], [ 85.316462371297533, 27.637774417372256 ], [ 85.316584177842572, 27.637787970095665 ], [ 85.316710564216251, 27.637797553733911 ], [ 85.316877491242252, 27.637815678569453 ], [ 85.317066947760907, 27.637838101255042 ], [ 85.317193272682857, 27.637851708291922 ], [ 85.317204704935023, 27.637852752954178 ], [ 85.317210808102615, 27.63784207236144 ], [ 85.317245384930843, 27.637316510033006 ], [ 85.31700848057649, 27.636263294866914 ], [ 85.317083, 27.63625 ], [ 85.31700745612018, 27.636257403911291 ], [ 85.316957656077761, 27.635854378970457 ], [ 85.316957601152922, 27.635840030100727 ], [ 85.317007401761472, 27.63541005506676 ], [ 85.317009907391864, 27.635398459775278 ], [ 85.317151084880237, 27.634956997173077 ], [ 85.317086174619831, 27.634824085483253 ], [ 85.317079884927807, 27.634795654040211 ], [ 85.317083233557497, 27.634655015701298 ], [ 85.31705833588515, 27.634582812318367 ], [ 85.316992301458271, 27.634541089074101 ], [ 85.316984823526283, 27.634546905242861 ], [ 85.31684009826067, 27.634829464390851 ], [ 85.316837982856313, 27.634833273081775 ], [ 85.316708100131066, 27.635049744501995 ], [ 85.316699637282255, 27.635060980137393 ], [ 85.316520149055052, 27.63525427527491 ], [ 85.316351446000624, 27.635654945585944 ], [ 85.316336526145761, 27.635676704515991 ], [ 85.316313626594834, 27.635692004268485 ], [ 85.315981703702946, 27.635836318577013 ], [ 85.315957590941892, 27.63584267881118 ], [ 85.315932467728572, 27.635841682806447 ], [ 85.315651748219693, 27.635788212439397 ], [ 85.315381059027075, 27.635882638897584 ], [ 85.315256496637829, 27.636016783063532 ], [ 85.315176438362812, 27.636135130171745 ], [ 85.315170212520314, 27.63614300563875 ], [ 85.315011466883945, 27.636316182789891 ], [ 85.314997718082608, 27.636327842162331 ], [ 85.314871443092912, 27.636410822887306 ], [ 85.314852018346855, 27.636420057357363 ], [ 85.314761821901925, 27.636448920219017 ], [ 85.314742429326756, 27.636452673842967 ], [ 85.314722606749783, 27.636451828272694 ], [ 85.314703705773695, 27.636446441163564 ], [ 85.314524761231539, 27.636371284443101 ], [ 85.314393066632775, 27.636321898966248 ], [ 85.314246496167215, 27.636311041903614 ], [ 85.314218359894909, 27.636337302427219 ], [ 85.314114600965667, 27.636441061403964 ], [ 85.314091355633508, 27.636456796355475 ], [ 85.314033629913283, 27.636482051359462 ], [ 85.314009844197471, 27.636488429514461 ], [ 85.313985019678867, 27.636487636289385 ], [ 85.313736761143119, 27.636442811834943 ], [ 85.313604506535341, 27.636455407506233 ], [ 85.313318783360259, 27.636536082288906 ], [ 85.313188209572971, 27.636630061467336 ], [ 85.313112337810466, 27.636743182499529 ], [ 85.313039565642399, 27.637020297518916 ], [ 85.313028216577365, 27.637043194356902 ], [ 85.312883216969311, 27.6372312781095 ], [ 85.312875982513077, 27.637239283889873 ], [ 85.312707732490537, 27.637398958884173 ], [ 85.312687790590161, 27.637412499953037 ], [ 85.312513730886664, 27.637494325426559 ], [ 85.312267966467942, 27.637617445238277 ], [ 85.312255429076473, 27.637622456517054 ], [ 85.311979015485861, 27.63770714272458 ], [ 85.312125412844111, 27.637703224282188 ], [ 85.312346076702525, 27.637737855239966 ], [ 85.312685793467963, 27.637805879572042 ], [ 85.313143992129355, 27.63794455844225 ], [ 85.313539758385943, 27.638061179882186 ], [ 85.313747734564473, 27.638143571569056 ], [ 85.313857128590129, 27.638222102019913 ], [ 85.314008051611154, 27.638361448897324 ], [ 85.315971883401161, 27.637881395849917 ], [ 85.316312684155974, 27.63779637971664 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 22, "population": 2471, "densitycap": 250.0, "avgincome": "midIncome", "area": 15.403, "luf": "COMMERCIAL AND RESIDENTIAL", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.31858400286832, 27.64110764276624 ], [ 85.318527702882122, 27.640864242764128 ], [ 85.318525579547895, 27.64085131014102 ], [ 85.318494079575643, 27.640530510139882 ], [ 85.318493739191481, 27.640526007352335 ], [ 85.318478779878347, 27.640244060361983 ], [ 85.318430953437343, 27.640169694415615 ], [ 85.318345551391914, 27.640082376361285 ], [ 85.318343839901416, 27.640080589241457 ], [ 85.318235539829402, 27.639965089254545 ], [ 85.318211476151646, 27.639925304806571 ], [ 85.318187676151751, 27.639854904805947 ], [ 85.318186095018334, 27.639849796097909 ], [ 85.318126995025523, 27.639639696095987 ], [ 85.318123483739186, 27.639619854067686 ], [ 85.318113483750679, 27.639487454067368 ], [ 85.318116552845183, 27.63945409327847 ], [ 85.318153377500252, 27.639314442830628 ], [ 85.318161366807118, 27.639226469705122 ], [ 85.318169359689279, 27.639127989566155 ], [ 85.318182151672616, 27.638929185030008 ], [ 85.318165290022264, 27.63870833591184 ], [ 85.318165000343896, 27.638700029905308 ], [ 85.318166400360411, 27.638484729905677 ], [ 85.318166426678701, 27.638482992723862 ], [ 85.318171715124095, 27.638260780776896 ], [ 85.318163940812923, 27.638149060903167 ], [ 85.318163720612219, 27.638139964175025 ], [ 85.318196505110564, 27.637478754333795 ], [ 85.31739769872145, 27.637315723497597 ], [ 85.317361620537412, 27.637864117631043 ], [ 85.317353484140739, 27.637890857225813 ], [ 85.317035993057615, 27.638446467198946 ], [ 85.317030029532887, 27.638455201403517 ], [ 85.316793486555511, 27.638749088332371 ], [ 85.316506273476108, 27.639165547626458 ], [ 85.316501519738949, 27.639171660163324 ], [ 85.316191486454642, 27.639526907024358 ], [ 85.316561264443195, 27.639948958114903 ], [ 85.317185386113792, 27.640257288589957 ], [ 85.317776375835336, 27.640486826051248 ], [ 85.317785179613594, 27.640490872737512 ], [ 85.318354441813753, 27.640795930956891 ], [ 85.318368943790503, 27.640806017376871 ], [ 85.318380298865733, 27.640818911938073 ], [ 85.3185896307006, 27.641127314102761 ], [ 85.318585582714903, 27.641113639390316 ], [ 85.31858400286832, 27.64110764276624 ] ] ], [ [ [ 85.314137232451429, 27.640723689601931 ], [ 85.314322772302191, 27.641113576137876 ], [ 85.314709925721758, 27.641412882135501 ], [ 85.314969581603336, 27.641594108479921 ], [ 85.314858396339659, 27.640980920369014 ], [ 85.314858498562401, 27.640958791191338 ], [ 85.314866610199374, 27.640937874108403 ], [ 85.315068073816192, 27.640606898487427 ], [ 85.315421101651694, 27.639980094620245 ], [ 85.315436332978678, 27.63996167368779 ], [ 85.315739392851654, 27.639701908175816 ], [ 85.315743598884325, 27.63969856166954 ], [ 85.316040253727905, 27.639479602218138 ], [ 85.316378937280263, 27.639091527525864 ], [ 85.316665377803176, 27.638676189090422 ], [ 85.316668368503144, 27.638672179599585 ], [ 85.316903133947747, 27.638380501525525 ], [ 85.317204704935023, 27.637852752954178 ], [ 85.317193272682857, 27.637851708291922 ], [ 85.317066947760907, 27.637838101255042 ], [ 85.316877491242252, 27.637815678569453 ], [ 85.316710564216251, 27.637797553733911 ], [ 85.316584177842572, 27.637787970095665 ], [ 85.316462371297533, 27.637774417372256 ], [ 85.316312684155974, 27.63779637971664 ], [ 85.315971883401161, 27.637881395849917 ], [ 85.314008051611154, 27.638361448897324 ], [ 85.314024773659469, 27.638974108517612 ], [ 85.314009177052213, 27.639423570264388 ], [ 85.314059049671044, 27.640145169471026 ], [ 85.314137232451429, 27.640723689601931 ] ], [ [ 85.314680183098247, 27.640555792066205 ], [ 85.314611937443004, 27.640654299165789 ], [ 85.314492954480514, 27.640579835944912 ], [ 85.314429676327677, 27.640540860196133 ], [ 85.314430405053002, 27.64049332327685 ], [ 85.314378119569909, 27.640421368915238 ], [ 85.314269889472527, 27.640362512538573 ], [ 85.314570350770609, 27.639946550090929 ], [ 85.314637447892324, 27.639985147677645 ], [ 85.314705514385352, 27.640022684840385 ], [ 85.314765022020353, 27.640058866159983 ], [ 85.314616421908326, 27.640251913685187 ], [ 85.314746528407397, 27.640332454144126 ], [ 85.314684197257364, 27.640418297705459 ], [ 85.314746444186824, 27.64046235499513 ], [ 85.314680183098247, 27.640555792066205 ] ], [ [ 85.315580534628324, 27.638824634618693 ], [ 85.315931785571905, 27.638336967405611 ], [ 85.31600138166462, 27.638375941469516 ], [ 85.316105129762434, 27.63842564876315 ], [ 85.316171131458589, 27.638469587981433 ], [ 85.315991815126381, 27.63869512614043 ], [ 85.315889298012991, 27.638816497233929 ], [ 85.315800662018901, 27.638938036865145 ], [ 85.315771348067983, 27.638963440497392 ], [ 85.315580534628324, 27.638824634618693 ] ] ], [ [ [ 85.318693699126442, 27.64154231505329 ], [ 85.318259946168453, 27.640903281353815 ], [ 85.317711060058087, 27.640609142162294 ], [ 85.317121301231964, 27.640380082671488 ], [ 85.317114816099007, 27.640377229434023 ], [ 85.316473995402305, 27.640060649077739 ], [ 85.316450943379465, 27.640043098363989 ], [ 85.316083388640479, 27.63962358437615 ], [ 85.315842768442479, 27.639801184922732 ], [ 85.315551130689897, 27.640051160252089 ], [ 85.315203403488908, 27.64066855402972 ], [ 85.315202284731299, 27.64067046392698 ], [ 85.315012587380565, 27.640982109943391 ], [ 85.315132756301509, 27.641644837512249 ], [ 85.315057724644831, 27.641655627512893 ], [ 85.318721714038148, 27.641655300838313 ], [ 85.318693699126442, 27.64154231505329 ] ], [ [ 85.316240374256793, 27.639992313864841 ], [ 85.316734430336979, 27.640369253308879 ], [ 85.316681507149468, 27.640425282152759 ], [ 85.31661194714691, 27.640509959865923 ], [ 85.316528601485288, 27.640585567380111 ], [ 85.316448404580427, 27.640658318329656 ], [ 85.316336677898903, 27.640580342389494 ], [ 85.31621439983661, 27.640495002237778 ], [ 85.316105515952017, 27.640275911146773 ], [ 85.316052542587315, 27.640169320277014 ], [ 85.316041179769712, 27.64015578720403 ], [ 85.316240374256793, 27.639992313864841 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 23, "population": 0, "densitycap": 0.0, "avgincome": null, "area": 3.002, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.32210942446288, 27.629222491679776 ], [ 85.32206965382521, 27.629302136906858 ], [ 85.323046946531264, 27.63010949939018 ], [ 85.323821360236195, 27.630736980372838 ], [ 85.324483925873963, 27.631114141508633 ], [ 85.324521231976988, 27.631153886717595 ], [ 85.32469688294934, 27.631005258971751 ], [ 85.324825243275285, 27.630998503165127 ], [ 85.324887494991387, 27.630982940276674 ], [ 85.324980006447177, 27.630959812412428 ], [ 85.324971920318958, 27.630947466454099 ], [ 85.324952314603394, 27.630925844896613 ], [ 85.324936849691795, 27.63091071211996 ], [ 85.324778144591392, 27.630782881948811 ], [ 85.324417156034173, 27.630435121433877 ], [ 85.324032562741024, 27.62994971510593 ], [ 85.323464269740938, 27.629290387514047 ], [ 85.32242372557171, 27.627995780907188 ], [ 85.322386366397367, 27.628338728036926 ], [ 85.322256180496169, 27.628869421602907 ], [ 85.32210942446288, 27.629222491679776 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 24, "population": 0, "densitycap": 0.0, "avgincome": null, "area": null, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ ] } }, +{ "type": "Feature", "properties": { "zoneid": 25, "population": 0, "densitycap": 0.0, "avgincome": null, "area": 2.129, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.318696023308291, 27.629906222014725 ], [ 85.318707978157704, 27.629754699237061 ], [ 85.318709214310118, 27.629568706640654 ], [ 85.31869901029367, 27.629395452789225 ], [ 85.318683003825242, 27.62928651582898 ], [ 85.318676087932886, 27.629213459771673 ], [ 85.318661906338662, 27.629090236656154 ], [ 85.318659198499105, 27.628846963121433 ], [ 85.318675283851462, 27.62863539563638 ], [ 85.318719210591951, 27.628283944552351 ], [ 85.318824063547694, 27.627730054453963 ], [ 85.318883526320789, 27.627413131455487 ], [ 85.318940738164756, 27.627033224683927 ], [ 85.318994693513517, 27.626656140041653 ], [ 85.319015301406921, 27.626358777543473 ], [ 85.319033133982558, 27.626032764821097 ], [ 85.319076860851723, 27.625904520248071 ], [ 85.319320885745867, 27.625704299995704 ], [ 85.319472146956926, 27.625477200360869 ], [ 85.319647684960898, 27.625133066707786 ], [ 85.319685356844019, 27.624770092596265 ], [ 85.319665207951346, 27.624406417935905 ], [ 85.319628910550975, 27.624048270927357 ], [ 85.31952961353997, 27.623397471467726 ], [ 85.31946652665772, 27.623110541265358 ], [ 85.319430733081433, 27.622929823098151 ], [ 85.319461740343954, 27.622792839201274 ], [ 85.319558279651773, 27.622361898446076 ], [ 85.319571782160295, 27.621898473328155 ], [ 85.319582267972095, 27.621211802226433 ], [ 85.319575710711661, 27.620799643870527 ], [ 85.319516798142487, 27.620449807704723 ], [ 85.319538168042556, 27.620312706959702 ], [ 85.319586370761797, 27.620101528137859 ], [ 85.319687801892528, 27.619770804399604 ], [ 85.319711967157119, 27.619450591240557 ], [ 85.319728747026474, 27.619193245115596 ], [ 85.319723605980982, 27.619032109944804 ], [ 85.319599748358698, 27.61914329098639 ], [ 85.31951596876489, 27.619218003738936 ], [ 85.319529232725287, 27.619405537105578 ], [ 85.319536048829661, 27.619628348368078 ], [ 85.319532175544751, 27.619659227489421 ], [ 85.319347748821059, 27.620289770008132 ], [ 85.319341794694722, 27.620490259676956 ], [ 85.319395351121798, 27.62076863965752 ], [ 85.319414887895391, 27.620903395759644 ], [ 85.319416848182769, 27.621101439700805 ], [ 85.319391400858393, 27.621440619896493 ], [ 85.319376794380574, 27.621995825149394 ], [ 85.319390630167732, 27.622273600326562 ], [ 85.31938154834414, 27.622426317169182 ], [ 85.31934614879566, 27.622632717251289 ], [ 85.319338950349149, 27.62265665856939 ], [ 85.319259227309772, 27.622838794706212 ], [ 85.31926713353613, 27.622976211019438 ], [ 85.31930509789369, 27.623167175324188 ], [ 85.319408024347226, 27.623582358015287 ], [ 85.319488653547694, 27.624068148662296 ], [ 85.319497452261416, 27.62417315301677 ], [ 85.319505740675652, 27.624258046379065 ], [ 85.319513452206905, 27.624569460185409 ], [ 85.319516374108886, 27.624882750172205 ], [ 85.319504520739613, 27.625031182474416 ], [ 85.319493720892822, 27.625100982500193 ], [ 85.319486960869199, 27.625124909414843 ], [ 85.319439061099985, 27.625239609506469 ], [ 85.319428260913824, 27.625259343760717 ], [ 85.319342142333269, 27.625384135644421 ], [ 85.319257846459152, 27.625501669765807 ], [ 85.319243677612121, 27.625517917269747 ], [ 85.319146177725784, 27.625610817421926 ], [ 85.318963416725637, 27.625770312686562 ], [ 85.31884834409955, 27.625948293530985 ], [ 85.318811009499427, 27.626569886852018 ], [ 85.318705739467319, 27.627438003145489 ], [ 85.318631178896752, 27.627762453623404 ], [ 85.318525699541155, 27.628481546932054 ], [ 85.318494348036097, 27.628620249484911 ], [ 85.318467161777491, 27.629021963821717 ], [ 85.318493641667686, 27.629230341433939 ], [ 85.318493972097869, 27.629284000673167 ], [ 85.318512966213234, 27.629374567129943 ], [ 85.318536886566648, 27.629613560041381 ], [ 85.318527025729225, 27.629762728522341 ], [ 85.318510056587542, 27.629868181049609 ], [ 85.318504072497305, 27.62994307489857 ], [ 85.318497163694161, 27.629981154146222 ], [ 85.318461363938255, 27.630106354217308 ], [ 85.318445480923103, 27.630145612582535 ], [ 85.318622607147162, 27.629979734922106 ], [ 85.318696023308291, 27.629906222014725 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 26, "population": 0, "densitycap": 0.0, "avgincome": null, "area": 0.682, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.310429424095403, 27.623386299444693 ], [ 85.310324523959736, 27.623502739031494 ], [ 85.310250469646391, 27.623657955422996 ], [ 85.310290305867483, 27.623717842785553 ], [ 85.310385033610714, 27.623800428688941 ], [ 85.310456701656136, 27.623851164697079 ], [ 85.310548025319591, 27.623843251191953 ], [ 85.31064738401983, 27.623830515484261 ], [ 85.310688108820528, 27.623831189363113 ], [ 85.310726487405674, 27.623843342295629 ], [ 85.310758550308918, 27.623865717314633 ], [ 85.310860650149252, 27.623964958933659 ], [ 85.311036282474547, 27.624166862601339 ], [ 85.311182177142626, 27.624370571659785 ], [ 85.31130541911719, 27.624567902349739 ], [ 85.311387358980781, 27.624714179036427 ], [ 85.311500874787754, 27.624889639022967 ], [ 85.311592283760262, 27.625057506725014 ], [ 85.311705728689489, 27.62523767151573 ], [ 85.311761669803388, 27.625386607899113 ], [ 85.311893558811377, 27.625487252467863 ], [ 85.311910590811948, 27.625503049186314 ], [ 85.311989473012858, 27.625592107799914 ], [ 85.312127738601092, 27.625748210275123 ], [ 85.312188539055271, 27.625739650352887 ], [ 85.312259449085843, 27.625729530339438 ], [ 85.312193693697125, 27.625632229986181 ], [ 85.312068302640427, 27.62542838641917 ], [ 85.311978743825193, 27.625324141086722 ], [ 85.311911811275195, 27.62520619521856 ], [ 85.311824165478527, 27.625074686832029 ], [ 85.311640726672309, 27.624758329271248 ], [ 85.311503670644896, 27.624535708723371 ], [ 85.311404440635556, 27.624380100407798 ], [ 85.311328667174308, 27.624254060425287 ], [ 85.311230564099489, 27.624122424370839 ], [ 85.311172229951765, 27.624028541526055 ], [ 85.311011208935085, 27.623809621825817 ], [ 85.31077227107501, 27.623604394395034 ], [ 85.310429424095403, 27.623386299444693 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 28, "population": 0, "densitycap": 0.0, "avgincome": null, "area": 2.091, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.322237068197765, 27.622255948889723 ], [ 85.322183685479203, 27.622256901243112 ], [ 85.322130482628154, 27.622261045100114 ], [ 85.322077687462766, 27.622268362716252 ], [ 85.32202552605554, 27.622278822756719 ], [ 85.321974221765316, 27.622292380430689 ], [ 85.321923994280894, 27.62230897768298 ], [ 85.32187505868032, 27.62232854344272 ], [ 85.321827624510064, 27.622350993927647 ], [ 85.321781894887621, 27.622376233002822 ], [ 85.321738065631905, 27.622404152592306 ], [ 85.321696324424664, 27.622434633141925 ], [ 85.321656850006917, 27.622467544131172 ], [ 85.321619811413527, 27.622502744632087 ], [ 85.321585367249384, 27.622540083912714 ], [ 85.321553665010228, 27.622579402082511 ], [ 85.321524840451062, 27.622620530776981 ], [ 85.321499017004811, 27.622663293878642 ], [ 85.321476305253711, 27.62270750827112 ], [ 85.321456802455771, 27.62275298462324 ], [ 85.321440592128198, 27.622799528199788 ], [ 85.321427743689767, 27.622846939695339 ], [ 85.321418312163459, 27.622895016087696 ], [ 85.321412337940799, 27.622943551507252 ], [ 85.321409846608802, 27.622992338118525 ], [ 85.321410848840344, 27.623041167010154 ], [ 85.321415340348352, 27.623089829089452 ], [ 85.321423301904133, 27.623138115977799 ], [ 85.321434699419584, 27.62318582090295 ], [ 85.321449484093094, 27.623232739584434 ], [ 85.32146759261849, 27.623278671108384 ], [ 85.321488947456004, 27.623323418787852 ], [ 85.321513457164286, 27.623366791005093 ], [ 85.321541016791869, 27.623408602032118 ], [ 85.321571508326542, 27.62344867282604 ], [ 85.321604801200721, 27.623486831795759 ], [ 85.321640752850485, 27.623522915536853 ], [ 85.321679209325964, 27.623556769531227 ], [ 85.321720005950723, 27.6235882488089 ], [ 85.321762968026775, 27.623617218568768 ], [ 85.321807911582766, 27.62364355475594 ], [ 85.32185464416176, 27.623667144592911 ], [ 85.321902965645393, 27.623687887062605 ], [ 85.321952669110885, 27.623705693340916 ], [ 85.322003541717109, 27.623720487177131 ], [ 85.322055365616094, 27.623732205220453 ], [ 85.322107918885933, 27.623740797291312 ], [ 85.3221609764812, 27.623746226596268 ], [ 85.322214311196646, 27.623748469885555 ], [ 85.322267694640217, 27.623747517552676 ], [ 85.322320898211174, 27.623743373675538 ], [ 85.322373694079033, 27.623736055998972 ], [ 85.322425856159285, 27.623725595858808 ], [ 85.322477161081565, 27.623712038047593 ], [ 85.322527389146273, 27.623695440622832 ], [ 85.322576325265402, 27.62367587465836 ], [ 85.322623759883641, 27.623653423939956 ], [ 85.322669489875821, 27.623628184606542 ], [ 85.322713319416707, 27.623600264738474 ], [ 85.322755060819645, 27.623569783894691 ], [ 85.322794535340293, 27.623536872600745 ], [ 85.322831573942025, 27.623501671789793 ], [ 85.322866018019823, 27.623464332199109 ], [ 85.322897720079396, 27.623425013724532 ], [ 85.322926544368812, 27.623383884735777 ], [ 85.322952367459777, 27.623341121355359 ], [ 85.322975078776139, 27.623296906704436 ], [ 85.32299458106732, 27.623251430118582 ], [ 85.323010790824767, 27.623204886337025 ], [ 85.323023638639498, 27.623157474668698 ], [ 85.323033069499161, 27.623109398138748 ], [ 85.32303904302367, 27.623060862619145 ], [ 85.323041533637948, 27.623012075947063 ], [ 85.323040530681382, 27.622963247034917 ], [ 85.323036038453466, 27.622914584975756 ], [ 85.323028076195214, 27.622866298147834 ], [ 85.323016678006738, 27.622818593322389 ], [ 85.323001892701171, 27.622771674778161 ], [ 85.322983783595504, 27.62272574342667 ], [ 85.322962428239421, 27.622680995951921 ], [ 85.322937918083156, 27.622637623968167 ], [ 85.322910358085863, 27.622595813199375 ], [ 85.322879866266007, 27.622555742684046 ], [ 85.322846573196102, 27.622517584008477 ], [ 85.322810621443452, 27.622481500572093 ], [ 85.32277216495963, 27.62244764688776 ], [ 85.322731368421231, 27.622416167920147 ], [ 85.322688406524762, 27.622387198465056 ], [ 85.322643463238521, 27.622360862572169 ], [ 85.322596731014798, 27.622337273013944 ], [ 85.322548409965904, 27.62231653080271 ], [ 85.322498707007185, 27.622298724758121 ], [ 85.322447834971072, 27.622283931126915 ], [ 85.322396011695815, 27.62227221325638 ], [ 85.322343459092593, 27.622263621323107 ], [ 85.322290402195492, 27.62225819211821 ], [ 85.322237068197765, 27.622255948889723 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 29, "population": 0, "densitycap": 0.0, "avgincome": null, "area": 0.437, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.320299046536476, 27.633936132772057 ], [ 85.320610973066451, 27.634207870541271 ], [ 85.320904337051857, 27.634467990755322 ], [ 85.321007342329438, 27.634541365450406 ], [ 85.321204207605135, 27.63452932362032 ], [ 85.321558892045104, 27.63448621943126 ], [ 85.321642617205256, 27.634458381913568 ], [ 85.321665082522543, 27.63442671169614 ], [ 85.321418695269145, 27.634345141000946 ], [ 85.32095853163861, 27.634143720850783 ], [ 85.320933149571417, 27.634125708076414 ], [ 85.320655440237019, 27.633821608304888 ], [ 85.320443005082694, 27.633674537777804 ], [ 85.320352464106108, 27.633661240189152 ], [ 85.320299046536476, 27.633936132772057 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 30, "population": 0, "densitycap": 0.0, "avgincome": null, "area": 0.596, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.319514545227563, 27.619197900688054 ], [ 85.319598473867188, 27.619086847729832 ], [ 85.319720628989131, 27.618938802419436 ], [ 85.319846388915963, 27.618360627464622 ], [ 85.320097648300617, 27.61741442593722 ], [ 85.320137563234965, 27.617126620170268 ], [ 85.320155987061753, 27.616890247048413 ], [ 85.31988467841299, 27.616767398491234 ], [ 85.319699983454797, 27.616727204940432 ], [ 85.319802475019401, 27.616841152292 ], [ 85.319854275090691, 27.616907752221252 ], [ 85.319895086183678, 27.617000298059068 ], [ 85.319908086358865, 27.617080898044524 ], [ 85.31990945168647, 27.617132335600385 ], [ 85.319900651863279, 27.617214235623454 ], [ 85.319898325887735, 27.617229862480386 ], [ 85.319600322347284, 27.618401561039409 ], [ 85.319520068389181, 27.618879107465816 ], [ 85.319502912276263, 27.61906323965697 ], [ 85.319514545227563, 27.619197900688054 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 31, "population": 0, "densitycap": 0.0, "avgincome": null, "area": 0.258, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.316052542587315, 27.640169320277014 ], [ 85.31612953875468, 27.640324248791515 ], [ 85.31621439983661, 27.640495002237778 ], [ 85.316448404580427, 27.640658318329656 ], [ 85.31661194714691, 27.640509959865923 ], [ 85.316681507149468, 27.640425282152759 ], [ 85.316734430336979, 27.640369253308879 ], [ 85.316240374256793, 27.639992313864841 ], [ 85.316041179769712, 27.64015578720403 ], [ 85.316052542587315, 27.640169320277014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 32, "population": 0, "densitycap": 0.0, "avgincome": null, "area": 0.173, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.315800662018887, 27.638938036865149 ], [ 85.315889298012976, 27.638816497233915 ], [ 85.315991815126381, 27.63869512614043 ], [ 85.316171131458574, 27.638469587981408 ], [ 85.316105129762434, 27.638425648763132 ], [ 85.316001381664606, 27.638375941469516 ], [ 85.315931785571891, 27.638336967405614 ], [ 85.31558053462831, 27.638824634618658 ], [ 85.315771348067983, 27.638963440497385 ], [ 85.315800662018887, 27.638938036865149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 34, "population": 0, "densitycap": 0.0, "avgincome": null, "area": 0.201, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.314611937443004, 27.640654299165789 ], [ 85.314680183098247, 27.640555792066166 ], [ 85.31474644418681, 27.64046235499514 ], [ 85.314684197257378, 27.640418297705448 ], [ 85.314746528407397, 27.640332454144101 ], [ 85.314616421908326, 27.640251913685169 ], [ 85.314765022020353, 27.640058866159954 ], [ 85.314705514385338, 27.640022684840371 ], [ 85.314637447892309, 27.639985147677645 ], [ 85.314570350770595, 27.639946550090929 ], [ 85.314269889472527, 27.640362512538573 ], [ 85.314378119569895, 27.640421368915238 ], [ 85.314430405053002, 27.640493323276861 ], [ 85.314429676327663, 27.640540860196122 ], [ 85.314492954480514, 27.640579835944891 ], [ 85.314611937443004, 27.640654299165789 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 35, "population": 0, "densitycap": 0.0, "avgincome": null, "area": 0.313, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.315202207742828, 27.635231912398158 ], [ 85.315728499389778, 27.635228117886356 ], [ 85.315733299964364, 27.635163649714546 ], [ 85.315730371385854, 27.635105879917806 ], [ 85.315715693094759, 27.635068344181423 ], [ 85.315690565115446, 27.634966155023783 ], [ 85.315646478358047, 27.634856943299337 ], [ 85.31558719344423, 27.634744150806331 ], [ 85.315516054935443, 27.634658383334973 ], [ 85.31544058390655, 27.634606524501741 ], [ 85.315344801931502, 27.634635925996317 ], [ 85.315268082693507, 27.634665559039998 ], [ 85.315213874660188, 27.634719238479128 ], [ 85.315155489895815, 27.634796640055988 ], [ 85.31513450244006, 27.63492204185658 ], [ 85.315166630823768, 27.635065069724039 ], [ 85.315202207742828, 27.635231912398158 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 36, "population": 0, "densitycap": 0.0, "avgincome": null, "area": 0.21, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.313192039363202, 27.635766135685785 ], [ 85.313498296359455, 27.635688354035274 ], [ 85.313380968833897, 27.635133357985993 ], [ 85.31303674387091, 27.635200489115888 ], [ 85.313192039363202, 27.635766135685785 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 37, "population": 0, "densitycap": 0.0, "avgincome": null, "area": 0.34, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.321803454229666, 27.618498760230878 ], [ 85.322203955630897, 27.618737939023401 ], [ 85.322650048579206, 27.618237308390416 ], [ 85.322211376202404, 27.618001065362833 ], [ 85.321803454229666, 27.618498760230878 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 38, "population": 0, "densitycap": 0.0, "avgincome": null, "area": 0.058, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.321843441580427, 27.620002037729797 ], [ 85.321985073684473, 27.62009035285455 ], [ 85.32211505573683, 27.61994249491342 ], [ 85.321811213945878, 27.619740144756246 ], [ 85.321843441580427, 27.620002037729797 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 39, "population": 0, "densitycap": 0.0, "avgincome": null, "area": 0.136, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.32215514122916, 27.62018920023802 ], [ 85.322687623060773, 27.620525066260043 ], [ 85.322827238440837, 27.620370531846895 ], [ 85.32227744729316, 27.620044645436288 ], [ 85.32215514122916, 27.62018920023802 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 40, "population": 0, "densitycap": 0.0, "avgincome": null, "area": 4.237, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.318434789835166, 27.637771209010243 ], [ 85.318417277055786, 27.638142056535784 ], [ 85.318424893570906, 27.638251505182552 ], [ 85.31842510770025, 27.6382608733621 ], [ 85.318419728872996, 27.638486904893668 ], [ 85.318418362026108, 27.63869717847863 ], [ 85.318435445806898, 27.638920930222291 ], [ 85.318435530181944, 27.638935036693915 ], [ 85.318422230641232, 27.639141736738033 ], [ 85.318422108503228, 27.639143415677282 ], [ 85.318414008724659, 27.639243215701494 ], [ 85.318413926069084, 27.639244176980608 ], [ 85.318409168103429, 27.639296569991231 ], [ 85.31840421527221, 27.639367460267273 ], [ 85.318369152533222, 27.639510697517665 ], [ 85.318375493653278, 27.639594651465544 ], [ 85.318431119481289, 27.639792399236168 ], [ 85.318436495601972, 27.639808301612543 ], [ 85.318600993780748, 27.639979740714658 ], [ 85.318697844599185, 27.640121953623652 ], [ 85.31872028833736, 27.640168978414454 ], [ 85.318720337045008, 27.64016923819921 ], [ 85.318725477744721, 27.640180009140966 ], [ 85.318730399284448, 27.640206258408153 ], [ 85.318746680352447, 27.640513103984429 ], [ 85.318777319943308, 27.640825134425153 ], [ 85.318814675164646, 27.640986629606434 ], [ 85.318837475521121, 27.641079495939195 ], [ 85.318842457671707, 27.641096326267377 ], [ 85.318843662815169, 27.641100759076025 ], [ 85.318922945254613, 27.641420508417475 ], [ 85.319281853752159, 27.640767013839469 ], [ 85.319469025558448, 27.640126854149855 ], [ 85.319922751087432, 27.638468556686536 ], [ 85.319937005346148, 27.637535563438707 ], [ 85.318480397791816, 27.637764054958705 ], [ 85.318434789835166, 27.637771209010243 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 41, "population": 0, "densitycap": 200.0, "avgincome": "midIncome", "area": 7.217, "luf": "RESIDENTIAL (MODERATE DENSITY)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.319997019980505, 27.6369552387795 ], [ 85.320708056351847, 27.636682832113543 ], [ 85.322966640978137, 27.636371282509302 ], [ 85.323395753059373, 27.636063654020752 ], [ 85.323562533929888, 27.635404234860143 ], [ 85.323249281516681, 27.635098021679525 ], [ 85.32273713788436, 27.634789332278995 ], [ 85.322045839416106, 27.634550584807496 ], [ 85.321665082522543, 27.63442671169614 ], [ 85.321642617205256, 27.634458381913568 ], [ 85.321558892045104, 27.63448621943126 ], [ 85.321204207605135, 27.63452932362032 ], [ 85.321007342329438, 27.634541365450406 ], [ 85.320904337051857, 27.634467990755322 ], [ 85.320610973066451, 27.634207870541271 ], [ 85.320299046536476, 27.633936132772057 ], [ 85.32025949868445, 27.634387709642468 ], [ 85.320258494164221, 27.634394597172811 ], [ 85.320146690118776, 27.634940252137369 ], [ 85.319987023548023, 27.636391782524559 ], [ 85.319997019980505, 27.6369552387795 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 42, "population": 0, "densitycap": 100.0, "avgincome": "highIncome", "area": 26.57, "luf": "RESIDENTIAL (GATED NEIGHBORHOOD)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.323562533929888, 27.635404234860143 ], [ 85.323395753059373, 27.636063654020752 ], [ 85.322966640978137, 27.636371282509302 ], [ 85.320708056351847, 27.636682832113543 ], [ 85.319997019980505, 27.6369552387795 ], [ 85.319999700229161, 27.637106313521841 ], [ 85.320087755745604, 27.637516916629068 ], [ 85.320089098063136, 27.637530535122014 ], [ 85.32007462312454, 27.638478058347296 ], [ 85.320072469694992, 27.638493161259007 ], [ 85.319616568417231, 27.640159418941561 ], [ 85.319616276552949, 27.640160450345764 ], [ 85.319427031903018, 27.640807702394017 ], [ 85.319421755518277, 27.640820385433752 ], [ 85.318976277911943, 27.641631504089734 ], [ 85.318984005725412, 27.641657544009988 ], [ 85.318980665590757, 27.641658330148996 ], [ 85.318987300651784, 27.641716460831201 ], [ 85.318971225470918, 27.641782696596465 ], [ 85.318932953529483, 27.641841266727358 ], [ 85.319127577888636, 27.641893388944471 ], [ 85.319387552301919, 27.641872433386297 ], [ 85.319812434476262, 27.641769851652967 ], [ 85.320225345482783, 27.641616648348833 ], [ 85.321401282548521, 27.641095708862608 ], [ 85.323817758844442, 27.6399737734395 ], [ 85.325083532142301, 27.639197048915811 ], [ 85.325946559390857, 27.638477859542011 ], [ 85.326147932415509, 27.637758670168239 ], [ 85.325889024240951, 27.63689564291969 ], [ 85.325857497045959, 27.636957229944226 ], [ 85.325364005789226, 27.636756859097208 ], [ 85.325358639566517, 27.636754447611221 ], [ 85.324702009567247, 27.636429740397016 ], [ 85.324691637118065, 27.636423568202442 ], [ 85.324099948667183, 27.636005056714346 ], [ 85.32408766205215, 27.635994105171871 ], [ 85.323562533929888, 27.635404234860143 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 43, "population": 0, "densitycap": 100.0, "avgincome": "highIncome", "area": 2.098, "luf": "RESIDENTIAL (GATED NEIGHBORHOOD)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.324709553667944, 27.63554356689701 ], [ 85.324119572592537, 27.634910632187907 ], [ 85.323930098897009, 27.634521656322043 ], [ 85.323484215659519, 27.634291958896689 ], [ 85.322800099060075, 27.634665883913691 ], [ 85.322815218133016, 27.634672935966677 ], [ 85.323341964967312, 27.634990427120215 ], [ 85.323355548265383, 27.635000897519202 ], [ 85.3236766474826, 27.635314780855794 ], [ 85.323680020893434, 27.63531831440373 ], [ 85.324201332483582, 27.635903896951348 ], [ 85.324781268798787, 27.636314095657507 ], [ 85.325429797243189, 27.636634796455258 ], [ 85.325829083456327, 27.636796917616124 ], [ 85.325399975466766, 27.636090150821051 ], [ 85.324709553667944, 27.63554356689701 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 45, "population": 1107, "densitycap": 0.0, "avgincome": "midIncome", "area": 1.436, "luf": "COMMERCIAL AND RESIDENTIAL", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.318728373583824, 27.63011740453938 ], [ 85.318938935611385, 27.62992111924596 ], [ 85.319200948076102, 27.629722098820249 ], [ 85.319460411947858, 27.629252259286787 ], [ 85.319733176033651, 27.628713357766394 ], [ 85.320282309792361, 27.627716578803522 ], [ 85.320634862224594, 27.626939525513546 ], [ 85.320969488156479, 27.626376300068905 ], [ 85.32075319406448, 27.62631070799938 ], [ 85.32057063080785, 27.626620459781524 ], [ 85.319221291171985, 27.629201693729922 ], [ 85.319030018635544, 27.629110089813611 ], [ 85.318982333275457, 27.62910575221245 ], [ 85.318951146923297, 27.629143909858094 ], [ 85.318800484511584, 27.629127985027321 ], [ 85.318661906338662, 27.629090236656154 ], [ 85.318709214310104, 27.629568706640661 ], [ 85.318708442451381, 27.629684841581199 ], [ 85.318702560557952, 27.629823365146873 ], [ 85.318696023308306, 27.629906222014732 ], [ 85.318604692664124, 27.629996111551662 ], [ 85.318445480923117, 27.630145612582524 ], [ 85.318198840195734, 27.630573830387473 ], [ 85.318268992606392, 27.630546418212397 ], [ 85.318728373583824, 27.63011740453938 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 46, "population": 443, "densitycap": 0.0, "avgincome": "midIncome", "area": 0.344, "luf": "COMMERCIAL AND RESIDENTIAL", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.317439849352937, 27.624416513512376 ], [ 85.317573156593014, 27.624346423487186 ], [ 85.317709410669949, 27.623938116280847 ], [ 85.317801428254228, 27.623686334966841 ], [ 85.317871409137069, 27.623507493456025 ], [ 85.31799230191146, 27.62322411723494 ], [ 85.318071267030518, 27.623044053506234 ], [ 85.318145444511231, 27.622883897254258 ], [ 85.318191751929774, 27.622787292900703 ], [ 85.318246596652784, 27.622718743870671 ], [ 85.318532378818247, 27.622428876215281 ], [ 85.318397669771315, 27.622318268912018 ], [ 85.31829330150012, 27.622449344020414 ], [ 85.318128133243562, 27.622638097617997 ], [ 85.318028559301425, 27.622737042040683 ], [ 85.317940280771367, 27.622976972645993 ], [ 85.317805486562889, 27.62329586495774 ], [ 85.317673584778916, 27.623632699214788 ], [ 85.317439849352937, 27.624416513512376 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 48, "population": 914, "densitycap": 0.0, "avgincome": "lowIncomeA", "area": 3.529, "luf": "HISTORICAL PRESERVATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.32046301261191, 27.625794789184908 ], [ 85.320763823209219, 27.625844290171202 ], [ 85.320903197746077, 27.625868906874082 ], [ 85.320999485469187, 27.625886350693037 ], [ 85.321011873220939, 27.625684018325391 ], [ 85.321167204960688, 27.625262181066095 ], [ 85.32140863998211, 27.625088410178964 ], [ 85.321465708878449, 27.62497141908592 ], [ 85.321459197397473, 27.624828164316284 ], [ 85.321606274308763, 27.624348946360566 ], [ 85.321582735126171, 27.624202769146123 ], [ 85.321509096554067, 27.624135267083304 ], [ 85.32121830791651, 27.624032931045235 ], [ 85.321203862302426, 27.62402060716272 ], [ 85.320920587379689, 27.623710005910954 ], [ 85.320656929736174, 27.623760226374213 ], [ 85.320284721182773, 27.623968663165233 ], [ 85.319670787272813, 27.624209058621506 ], [ 85.319646634171633, 27.624223150379063 ], [ 85.319665207951346, 27.624406417935905 ], [ 85.319684919369621, 27.62476219647521 ], [ 85.319647684960898, 27.625133066707786 ], [ 85.319472146956926, 27.625477200360869 ], [ 85.319320885745867, 27.625704299995704 ], [ 85.32046301261191, 27.625794789184908 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 49, "population": 1049, "densitycap": 250.0, "avgincome": "midIncome", "area": 3.387, "luf": "CITY CENTER", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.321548042561005, 27.626537926234001 ], [ 85.323514384414281, 27.6252005175729 ], [ 85.32347996519249, 27.625105597603916 ], [ 85.32339882922831, 27.624938236678727 ], [ 85.323311291162469, 27.624798750173738 ], [ 85.323251107212542, 27.624727477411138 ], [ 85.323034088630337, 27.624553149283035 ], [ 85.322438481760841, 27.624264276515955 ], [ 85.322282978237396, 27.624226938206711 ], [ 85.322011865251383, 27.624231823515323 ], [ 85.321732350926411, 27.624179020039339 ], [ 85.321752608939192, 27.624385510748166 ], [ 85.32161154394403, 27.624833393086522 ], [ 85.321618273172234, 27.624981433848276 ], [ 85.321612041024807, 27.625011144174319 ], [ 85.321529616289581, 27.625174276164827 ], [ 85.321303736585278, 27.625325399933292 ], [ 85.321163075720136, 27.625700496170339 ], [ 85.321147441608133, 27.625955857679692 ], [ 85.321548042561005, 27.626537926234001 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 51, "population": 3009, "densitycap": 200.0, "avgincome": "lowIncomeB", "area": 15.812, "luf": "RESIDENTIAL (MODERATE DENSITY)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.311255803142743, 27.635514379123403 ], [ 85.311077763855678, 27.635411458309324 ], [ 85.311002617106638, 27.635336099478241 ], [ 85.310934035145635, 27.635267323840708 ], [ 85.31078061463775, 27.635162416026208 ], [ 85.310436505804731, 27.634968632012576 ], [ 85.310496491868363, 27.634678793485389 ], [ 85.310525646033454, 27.634588474556292 ], [ 85.310564813725549, 27.634520336805856 ], [ 85.31068971184655, 27.634602838159132 ], [ 85.31080668571272, 27.634670208074599 ], [ 85.310825829696583, 27.63477966244654 ], [ 85.310896692727312, 27.634836166667164 ], [ 85.310917422489069, 27.634993038204552 ], [ 85.311025554364221, 27.635033510144201 ], [ 85.311183380422335, 27.635152896785833 ], [ 85.311002617106638, 27.635336099478241 ], [ 85.311077763855678, 27.635411458309324 ], [ 85.311255803142743, 27.635514379123403 ], [ 85.311729811902595, 27.63587634170819 ], [ 85.311895200758812, 27.635545228277412 ], [ 85.312069127640626, 27.635238013336693 ], [ 85.312276966503418, 27.63504225330546 ], [ 85.312107888996294, 27.634453256841805 ], [ 85.311735671547069, 27.634044213804618 ], [ 85.311573441382762, 27.63387964069452 ], [ 85.311378708194496, 27.633801919177422 ], [ 85.311232751277572, 27.633689761261834 ], [ 85.311220630388021, 27.633606033335443 ], [ 85.311289208172482, 27.633505378159036 ], [ 85.311304261710177, 27.633398101090698 ], [ 85.31125312039282, 27.63323628766355 ], [ 85.311018706362532, 27.632552717495741 ], [ 85.310757328178525, 27.632580523602385 ], [ 85.310741234866953, 27.632580706992012 ], [ 85.310481469085659, 27.632559059836471 ], [ 85.310475803486469, 27.632558395514199 ], [ 85.310258890401499, 27.632525529906367 ], [ 85.309997428117597, 27.632619388136838 ], [ 85.309984488913074, 27.632622878225618 ], [ 85.309594840245978, 27.632695035376479 ], [ 85.309583157222903, 27.632696368570667 ], [ 85.309258449991503, 27.632710799994143 ], [ 85.309240218482955, 27.632709650405516 ], [ 85.309033926808667, 27.632674082871571 ], [ 85.308748298429848, 27.632645520022649 ], [ 85.308721935851239, 27.632638410025187 ], [ 85.308454954414799, 27.63251574285362 ], [ 85.308443600450232, 27.632509334857179 ], [ 85.308284854764352, 27.632401099126554 ], [ 85.308278950128525, 27.632396630138942 ], [ 85.308055263060666, 27.632209021548682 ], [ 85.308043067481222, 27.632195830096933 ], [ 85.308034969924108, 27.63218033880883 ], [ 85.307996278667261, 27.632072443198251 ], [ 85.307830877002687, 27.632143593336064 ], [ 85.307721430049256, 27.632262074253013 ], [ 85.307628891899469, 27.63238514591022 ], [ 85.30756904830784, 27.632568513058029 ], [ 85.307528754526402, 27.632803244305364 ], [ 85.307546859479004, 27.632928338596248 ], [ 85.307618717410136, 27.633129479920303 ], [ 85.307705211136081, 27.633307830787295 ], [ 85.307895731496544, 27.633443576830125 ], [ 85.307903346433037, 27.633449460009242 ], [ 85.308181733492972, 27.633682460413066 ], [ 85.308188576084945, 27.633688646016953 ], [ 85.308307632995522, 27.633804900345758 ], [ 85.308309130029571, 27.633806388393506 ], [ 85.308457764064698, 27.633956788818843 ], [ 85.308606503127109, 27.634092937199906 ], [ 85.308614127299407, 27.634100580315614 ], [ 85.308693352051776, 27.634187648010801 ], [ 85.308712163435715, 27.63421592756103 ], [ 85.308868076342051, 27.634555059421075 ], [ 85.308875390467392, 27.634577197860711 ], [ 85.308896914765072, 27.634680373678808 ], [ 85.308964555986975, 27.634899010964549 ], [ 85.308965431118168, 27.634901998738531 ], [ 85.309011223724497, 27.63506758475468 ], [ 85.309013936423653, 27.635080680527516 ], [ 85.309042957492579, 27.635289112659759 ], [ 85.309043908386528, 27.635304539548937 ], [ 85.309041812705729, 27.63544084109153 ], [ 85.309039055208601, 27.635620185222248 ], [ 85.309038734808695, 27.635626806273546 ], [ 85.309028804718594, 27.635748662045028 ], [ 85.309027784883398, 27.635756935225047 ], [ 85.309010629570324, 27.635860661879725 ], [ 85.309001593328844, 27.635960714989622 ], [ 85.308999555286576, 27.636093260757423 ], [ 85.30899698321781, 27.636260536085938 ], [ 85.309009792452443, 27.636416433578454 ], [ 85.309038475095207, 27.63658380264928 ], [ 85.309068114536359, 27.636741200399655 ], [ 85.309069795350212, 27.636756279722963 ], [ 85.30907171410054, 27.63681011610522 ], [ 85.309122143866318, 27.636877693471682 ], [ 85.309124376230372, 27.636880879525158 ], [ 85.309319918640014, 27.637178006790634 ], [ 85.309506098840785, 27.63734186660724 ], [ 85.309834911308101, 27.637479841085849 ], [ 85.31016345485412, 27.63757268921956 ], [ 85.310394918708667, 27.637609951445231 ], [ 85.310400839690914, 27.637611123681094 ], [ 85.310620365129651, 27.637662852132895 ], [ 85.310891326699178, 27.637721494319464 ], [ 85.311069996221434, 27.637743598698943 ], [ 85.311283505363321, 27.637281943702945 ], [ 85.311411116753817, 27.6369114999925 ], [ 85.31152430001984, 27.636500435368085 ], [ 85.311729811902595, 27.63587634170819 ], [ 85.311255803142743, 27.635514379123403 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 52, "population": 0, "densitycap": 200.0, "avgincome": "lowIncomeB", "area": 12.351, "luf": "RESIDENTIAL (MODERATE DENSITY)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.308277013774543, 27.637393440585374 ], [ 85.307347942827192, 27.637211347393428 ], [ 85.307183406526008, 27.638145436427699 ], [ 85.307188427000085, 27.638510130528815 ], [ 85.30720366003365, 27.639616694325682 ], [ 85.307577661063377, 27.64040452567448 ], [ 85.308060963553075, 27.641059961844427 ], [ 85.309174662055696, 27.641212599433192 ], [ 85.309584309139026, 27.64162337116235 ], [ 85.310268131621413, 27.641638631195164 ], [ 85.310754582856376, 27.641649484680453 ], [ 85.312517056603454, 27.641499939018242 ], [ 85.312588382238957, 27.640821266166842 ], [ 85.312501141415737, 27.640672438277303 ], [ 85.312269803830418, 27.640365105437063 ], [ 85.31203608200633, 27.640169396737104 ], [ 85.31149404154921, 27.640140809915838 ], [ 85.311187495073611, 27.639939676722083 ], [ 85.31094522808813, 27.639899655176009 ], [ 85.310752828028953, 27.639784755093455 ], [ 85.310394507432335, 27.639530100093786 ], [ 85.310188204302747, 27.639580939137296 ], [ 85.309900957697707, 27.639557222008964 ], [ 85.309128407419934, 27.639075971602551 ], [ 85.308393342708058, 27.638867383720822 ], [ 85.308273943317303, 27.63881718446358 ], [ 85.308155388324337, 27.63874679123397 ], [ 85.30811759071571, 27.638705787478749 ], [ 85.308107630255776, 27.63865091711881 ], [ 85.308125008034651, 27.638526956252282 ], [ 85.308242980387931, 27.638388927033869 ], [ 85.308410844269247, 27.638282573181353 ], [ 85.308426249062833, 27.638191613884757 ], [ 85.308357686689902, 27.637897245857229 ], [ 85.308296136799299, 27.637833639416868 ], [ 85.308242813968448, 27.637755074221403 ], [ 85.308213060727084, 27.637705387303122 ], [ 85.308208344400484, 27.637677879894667 ], [ 85.308211413627177, 27.637650140372205 ], [ 85.308277013774543, 27.637393440585374 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 55, "population": 0, "densitycap": 0.0, "avgincome": null, "area": 15.034, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.305497545442876, 27.636829431073849 ], [ 85.305192722000086, 27.638132884000076 ], [ 85.304903476000064, 27.639285127000068 ], [ 85.304816575000075, 27.641356871000024 ], [ 85.307532614461834, 27.641577565743059 ], [ 85.309584309139026, 27.64162337116235 ], [ 85.309174662055696, 27.641212599433192 ], [ 85.308060963553075, 27.641059961844427 ], [ 85.307577661063377, 27.64040452567448 ], [ 85.30720366003365, 27.639616694325682 ], [ 85.307183406526008, 27.638145436427699 ], [ 85.307347942827192, 27.637211347393428 ], [ 85.308277013774543, 27.637393440585374 ], [ 85.308399427480509, 27.636988943023848 ], [ 85.308455538374631, 27.63676086666749 ], [ 85.308390409981271, 27.636359875172143 ], [ 85.305417809451683, 27.636234835570264 ], [ 85.305497545442876, 27.636829431073849 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 57, "population": 0, "densitycap": 50.0, "avgincome": "lowIncomeA", "area": 15.052, "luf": "AGRICULTURE", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.306706131816028, 27.633428436057269 ], [ 85.306598655475497, 27.632957778148441 ], [ 85.306789330349289, 27.632203860323365 ], [ 85.306999753605254, 27.631942959167901 ], [ 85.307398782911349, 27.631621729931144 ], [ 85.307795832645638, 27.631438594206262 ], [ 85.308125100382298, 27.631397223484136 ], [ 85.308505195441043, 27.631349465563481 ], [ 85.306973652443503, 27.630594628685959 ], [ 85.306769848966965, 27.630248267381798 ], [ 85.305160555802573, 27.628897328861896 ], [ 85.305290038662278, 27.629429652531407 ], [ 85.305539065976319, 27.630453428401783 ], [ 85.305613418174758, 27.630759094267731 ], [ 85.305623221424085, 27.631105360446973 ], [ 85.305647551002238, 27.631964719303468 ], [ 85.305411340036372, 27.632717433182513 ], [ 85.305101000572861, 27.633950170495854 ], [ 85.305124551730984, 27.634106465100519 ], [ 85.305195826520034, 27.634579469963466 ], [ 85.305417809451683, 27.636234835570264 ], [ 85.308390409981271, 27.636359875172143 ], [ 85.308366128747821, 27.635655395693508 ], [ 85.308439094026994, 27.635330384739227 ], [ 85.308414603812793, 27.635104519559398 ], [ 85.308228840355838, 27.634711924517717 ], [ 85.30824407824835, 27.634550120783899 ], [ 85.307800064350943, 27.634213325059505 ], [ 85.307479977038994, 27.634084683815601 ], [ 85.307039922435465, 27.633848689162143 ], [ 85.306706131816028, 27.633428436057269 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 58, "population": 0, "densitycap": 0.0, "avgincome": null, "area": 0.188, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.313637889426602, 27.640453334915559 ], [ 85.313632063744834, 27.640325299182926 ], [ 85.313570115671567, 27.640286950453973 ], [ 85.313673953906445, 27.640152056013559 ], [ 85.31371871760912, 27.640093904135526 ], [ 85.313591144197574, 27.640020184719862 ], [ 85.313476687241945, 27.640047151739012 ], [ 85.313382458614313, 27.640177600806435 ], [ 85.313308288724699, 27.640280280502832 ], [ 85.313377783594859, 27.640314490494351 ], [ 85.313366159865168, 27.640374894210868 ], [ 85.313223582217432, 27.640397546638713 ], [ 85.31330300457364, 27.640480225073354 ], [ 85.31336784583155, 27.640535938107341 ], [ 85.313383367354774, 27.640575895428412 ], [ 85.313565627368988, 27.640689335728091 ], [ 85.313700135929324, 27.640497392657181 ], [ 85.313637889426602, 27.640453334915559 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 14, "population": 3717, "densitycap": 250.0, "avgincome": "midIncome", "area": 14.191, "luf": "COMMERCIAL AND RESIDENTIAL", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.324417156034173, 27.630435121433905 ], [ 85.324778144591392, 27.630782881948811 ], [ 85.324952314603394, 27.630925844896613 ], [ 85.324971920318958, 27.630947466454099 ], [ 85.324980006447177, 27.630959812412428 ], [ 85.325041429087435, 27.630944456712111 ], [ 85.325325172965833, 27.630984991551891 ], [ 85.325345440385703, 27.630887032355755 ], [ 85.325316728207525, 27.630848186467627 ], [ 85.32497026006665, 27.630540017892272 ], [ 85.325023964454971, 27.630049006342059 ], [ 85.325238782008185, 27.629642387402047 ], [ 85.325476615727823, 27.629557994791835 ], [ 85.325699105336525, 27.629274128739397 ], [ 85.325875562612381, 27.62872174074533 ], [ 85.326174772775815, 27.628622004024219 ], [ 85.326355066079415, 27.62846472688701 ], [ 85.326489327050197, 27.628380334276855 ], [ 85.326688800492462, 27.628284433583445 ], [ 85.326635096104184, 27.628127156446244 ], [ 85.326485491022439, 27.627966043281344 ], [ 85.325852546445986, 27.627709029422999 ], [ 85.325315502562916, 27.627670669145687 ], [ 85.324532952904732, 27.627379131037731 ], [ 85.323934532577923, 27.626934151820326 ], [ 85.323658338580927, 27.626228322716884 ], [ 85.323514384414281, 27.6252005175729 ], [ 85.321548042560991, 27.62653792623399 ], [ 85.321147872663801, 27.625948817007348 ], [ 85.321139891296028, 27.626079180920062 ], [ 85.321127071725698, 27.626288568812697 ], [ 85.321120339485077, 27.626398529102321 ], [ 85.321097059588837, 27.626450885587545 ], [ 85.320774307752927, 27.626993486533816 ], [ 85.320400083195764, 27.627807178992271 ], [ 85.320194136107517, 27.628180037635911 ], [ 85.319311385500455, 27.629816161517702 ], [ 85.319031559119651, 27.630032066803981 ], [ 85.318804413650994, 27.630226806038621 ], [ 85.318383475710064, 27.630585075604195 ], [ 85.318485244070033, 27.630681386183333 ], [ 85.318539246325585, 27.630756378849856 ], [ 85.318771641298994, 27.630529548747543 ], [ 85.318938157794847, 27.630374176097639 ], [ 85.319025652029836, 27.630320830522948 ], [ 85.319457595143703, 27.629926754219479 ], [ 85.319745134720463, 27.629493520688126 ], [ 85.321188007335905, 27.626902295152345 ], [ 85.32181134024664, 27.627358449196876 ], [ 85.322039486640577, 27.627567249202247 ], [ 85.32221623629404, 27.627775427063888 ], [ 85.32242372557171, 27.627995780907188 ], [ 85.323464269740967, 27.629290387514036 ], [ 85.32403256274101, 27.629949715105937 ], [ 85.324417156034173, 27.630435121433905 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 27, "population": 273, "densitycap": 250.0, "avgincome": "midIncome", "area": 9.114, "luf": "COMMERCIAL AND RESIDENTIAL", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.317846419001199, 27.621905460289547 ], [ 85.317692934611571, 27.62185781225374 ], [ 85.317294800569599, 27.621841536109926 ], [ 85.316410551764008, 27.622099801426 ], [ 85.316169811396605, 27.62205627056716 ], [ 85.315698396862487, 27.622003960453021 ], [ 85.314907872909799, 27.622040556567452 ], [ 85.31482138922027, 27.622422676891844 ], [ 85.314759880535618, 27.622937740726162 ], [ 85.314844094132127, 27.623741136808547 ], [ 85.315080038187091, 27.624790908847761 ], [ 85.31511964537853, 27.624826450045148 ], [ 85.315881718170772, 27.625047045202592 ], [ 85.315945033667759, 27.625056152825124 ], [ 85.316371279925065, 27.62511746546474 ], [ 85.316506324042734, 27.625125793404447 ], [ 85.316829314436674, 27.625145711132529 ], [ 85.317062066442986, 27.625150205063839 ], [ 85.317295592539054, 27.624366640550544 ], [ 85.317372318955591, 27.624112076006515 ], [ 85.317529056681082, 27.623590732542393 ], [ 85.317889109790443, 27.622681354312132 ], [ 85.317904805136422, 27.622657176226372 ], [ 85.318009915488403, 27.622552990285484 ], [ 85.318170531630614, 27.622369535543893 ], [ 85.31828328694111, 27.622228603561897 ], [ 85.318188314529323, 27.622156671324312 ], [ 85.317846419001199, 27.621905460289547 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 59, "population": 0, "densitycap": 0.0, "avgincome": null, "area": 0.824, "luf": "RECREATION AREA", "setback": null, "far": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.321874052326109, 27.629144882843661 ], [ 85.322034182186997, 27.628757634953722 ], [ 85.322103229977827, 27.628443687967856 ], [ 85.322174720909601, 27.627969517595687 ], [ 85.32221623629404, 27.627775427063888 ], [ 85.322039486640577, 27.627567249202247 ], [ 85.32181134024664, 27.627358449196876 ], [ 85.321708055444688, 27.627800863578834 ], [ 85.321625865234921, 27.628152917578809 ], [ 85.321536368829754, 27.628534124698884 ], [ 85.321467581296574, 27.628830904547975 ], [ 85.321874052326109, 27.629144882843661 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 60, "population": 6000, "densitycap": 200.0, "avgincome": "midIncome", "area": 26.722, "luf": "RESIDENTIAL (MODERATE DENSITY)", "setback": null, "far": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.324413139070927, 27.631505188662288 ], [ 85.324521231976988, 27.631153886717595 ], [ 85.324483925873963, 27.631114141508633 ], [ 85.324395800399756, 27.631063976986223 ], [ 85.323821360236195, 27.630736980372838 ], [ 85.323046946531278, 27.630109499390201 ], [ 85.322069653825224, 27.629302136906894 ], [ 85.32210942446288, 27.629222491679776 ], [ 85.322256180496169, 27.6288694216029 ], [ 85.322386366397367, 27.62833872803694 ], [ 85.32242372557171, 27.627995780907188 ], [ 85.32221623629404, 27.627775427063888 ], [ 85.322174720909601, 27.627969517595687 ], [ 85.322103229977827, 27.628443687967856 ], [ 85.322034182186997, 27.628757634953722 ], [ 85.321874052326109, 27.629144882843661 ], [ 85.321467581296574, 27.628830904547975 ], [ 85.32181134024664, 27.627358449196876 ], [ 85.321188007335905, 27.626902295152345 ], [ 85.319915221168912, 27.629188073476051 ], [ 85.319889719681328, 27.629233870071285 ], [ 85.319457595143703, 27.629926754219479 ], [ 85.319025652029822, 27.630320830522912 ], [ 85.318938157794847, 27.630374176097643 ], [ 85.318771641298994, 27.630529548747553 ], [ 85.318539246325585, 27.630756378849849 ], [ 85.318732960478556, 27.631030902421966 ], [ 85.318739166083972, 27.631041700418798 ], [ 85.318911190428167, 27.631421586972202 ], [ 85.319104634126973, 27.631765486484742 ], [ 85.31910513524609, 27.631766394234017 ], [ 85.319291317806133, 27.632110115486732 ], [ 85.31948905011518, 27.632406713681043 ], [ 85.319723962031176, 27.632670099589099 ], [ 85.319733879173285, 27.632684664867423 ], [ 85.319870351384807, 27.63295760894087 ], [ 85.32005006140804, 27.633281086608381 ], [ 85.32005339875974, 27.63328804827205 ], [ 85.320124403677056, 27.633462601803654 ], [ 85.320151253992577, 27.6334659580878 ], [ 85.320167611275721, 27.633469689751738 ], [ 85.320310262488718, 27.633517813049409 ], [ 85.320486798849913, 27.633543774268951 ], [ 85.320504864955211, 27.633548539374026 ], [ 85.32052105959697, 27.633557116350477 ], [ 85.320727009901105, 27.633699697328058 ], [ 85.321040588049925, 27.634028815153844 ], [ 85.321474920336371, 27.634219321845343 ], [ 85.322098933279818, 27.634423739835622 ], [ 85.322800099060075, 27.634665883913691 ], [ 85.323484215659505, 27.634291958896689 ], [ 85.324453673910739, 27.632390199330672 ], [ 85.324386115844419, 27.631856490606992 ], [ 85.324413139070927, 27.631505188662288 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 13, "population": 1152, "densitycap": 100.0, "avgincome": "highIncome", "area": 8.931, "luf": "RESIDENTIAL (GATED NEIGHBORHOOD)", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.318579218794895, 27.63377226852851 ], [ 85.318668319204789, 27.633979068396467 ], [ 85.31867056895949, 27.633984737263113 ], [ 85.318768969513926, 27.634255437120313 ], [ 85.318770255335707, 27.634259196674808 ], [ 85.318881556059409, 27.634606196516643 ], [ 85.318884325484348, 27.634616713675648 ], [ 85.318925925919118, 27.634817513623155 ], [ 85.318926341518676, 27.634819632702616 ], [ 85.318953831824714, 27.634968141872687 ], [ 85.318953831824714, 27.634968141872687 ], [ 85.318969842030299, 27.635054632650185 ], [ 85.318969645956074, 27.635092361940899 ], [ 85.318967511594323, 27.635103262564275 ], [ 85.318967381951524, 27.635128208675656 ], [ 85.318686543075728, 27.636787546325998 ], [ 85.318445249110653, 27.637549723325272 ], [ 85.318434789835166, 27.637771209010243 ], [ 85.319937005346148, 27.637535563438707 ], [ 85.319849161855942, 27.637125946350416 ], [ 85.319846026177018, 27.637013085682096 ], [ 85.319834974088863, 27.636390077866114 ], [ 85.319835326709679, 27.636382409278891 ], [ 85.31999572315307, 27.634924261777904 ], [ 85.319996595751846, 27.634918709995226 ], [ 85.320108265070047, 27.634373716178747 ], [ 85.320147786295493, 27.63392245038149 ], [ 85.320148668523558, 27.633916175641879 ], [ 85.320204838721793, 27.633627004957763 ], [ 85.320185368033194, 27.633620436532812 ], [ 85.320185368033179, 27.63362043653277 ], [ 85.320121715294775, 27.633598963295935 ], [ 85.320057970968364, 27.633590995251371 ], [ 85.320032051779307, 27.633583343605217 ], [ 85.320010842258128, 27.633568026723282 ], [ 85.319997080445731, 27.633547021938828 ], [ 85.3199119418137, 27.633337722467942 ], [ 85.319733436740066, 27.633016412956792 ], [ 85.319732127349624, 27.633013930758739 ], [ 85.319598950357587, 27.632747576450136 ], [ 85.319366827677271, 27.63248731750048 ], [ 85.319360988972107, 27.632479774072962 ], [ 85.319158949168823, 27.632176714088509 ], [ 85.319155847374006, 27.63217156773489 ], [ 85.318968485793903, 27.631825669026711 ], [ 85.318773916113358, 27.631479766980469 ], [ 85.3187713824734, 27.631474766316309 ], [ 85.318600763010124, 27.631097981143409 ], [ 85.318360218212064, 27.630758388183832 ], [ 85.318254923124741, 27.63068467553591 ], [ 85.318137745429226, 27.630711783915324 ], [ 85.317958198707203, 27.631104822390039 ], [ 85.317950104243693, 27.631123850684215 ], [ 85.31794382736804, 27.63113628196685 ], [ 85.317804350808743, 27.631373119285023 ], [ 85.317786516325498, 27.631449389469203 ], [ 85.317819630598436, 27.631605123557378 ], [ 85.317841319954866, 27.631695711102282 ], [ 85.317943440856595, 27.632003847735497 ], [ 85.317944898086665, 27.632008629018472 ], [ 85.318054498920475, 27.632402228867349 ], [ 85.318054929727836, 27.63240382564171 ], [ 85.318141839578658, 27.632736597365636 ], [ 85.31823484820859, 27.633020761000989 ], [ 85.318248715375958, 27.633062127194531 ], [ 85.318570952319959, 27.633753104816329 ], [ 85.318578972193563, 27.633771718785059 ], [ 85.318579218794895, 27.63377226852851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "zoneid": 33, "population": 0, "densitycap": 0.0, "avgincome": null, "area": 0.285, "luf": "RECREATION AREA", "setback": 0.0, "far": 0.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 85.311025554364235, 27.635033510144165 ], [ 85.310917422489069, 27.634993038204527 ], [ 85.310896692727297, 27.634836166667178 ], [ 85.310825829696597, 27.634779662446515 ], [ 85.31080668571272, 27.634670208074592 ], [ 85.310689711846535, 27.634602838159115 ], [ 85.31056481372552, 27.634520336805839 ], [ 85.31052564603344, 27.634588474556278 ], [ 85.310496491868349, 27.634678793485385 ], [ 85.310436505804731, 27.634968632012576 ], [ 85.31078061463775, 27.635162416026187 ], [ 85.310934035145621, 27.635267323840701 ], [ 85.311002617106638, 27.635336099478241 ], [ 85.311183380422349, 27.635152896785833 ], [ 85.311025554364235, 27.635033510144165 ] ] ] ] } } +] +} diff --git a/landuse_tv50_3.png b/landuse_tv50_3.png new file mode 100644 index 0000000000000000000000000000000000000000..2c80186404dacee3686f839b36c316883ca8335c --- /dev/null +++ b/landuse_tv50_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63244f3ddbf98cc9598dfc4490840e35333b36faa777f3bf0d123a4bae28b122 +size 1053155 diff --git a/landuse_tv50_3_selected.png b/landuse_tv50_3_selected.png new file mode 100644 index 0000000000000000000000000000000000000000..9ffd6b1028324e01397643f050a1f1a7cc574f12 Binary files /dev/null and b/landuse_tv50_3_selected.png differ diff --git a/mypy.ini b/mypy.ini new file mode 100644 index 0000000000000000000000000000000000000000..9faf922c26149d780920fb8bc78042bbb7cf24a0 --- /dev/null +++ b/mypy.ini @@ -0,0 +1,3 @@ +[mypy] +check_untyped_defs = True +ignore_missing_imports = True \ No newline at end of file diff --git a/pre_process.py b/pre_process.py new file mode 100644 index 0000000000000000000000000000000000000000..86e1c779dc5baab07db6164a068a48ef190d3729 --- /dev/null +++ b/pre_process.py @@ -0,0 +1,27 @@ +#%% +import pandas as pd +import geopandas as gpd + + +df = pd.read_excel('/Users/huseyin.kaya/Downloads/Tomorrowville_Dataset/TV_Others/VS2/_outputs/Layer_Building_VS2.xlsx') + +#df = pd.read_excel('/Users/huseyin.kaya/Downloads/Tomorrowville_Dataset/TV_Others/VS1/_outputs/Layer_Individual_VS1.xlsx') +#df.to_json('individual_tv50_1.json') + +#df = df.rename(columns={'X':'x','Y':'y','IM':'im'}) + +gdf = gpd.GeoDataFrame(df, geometry=gpd.points_from_xy(df.xcoord, df.ycoord)) +gdf.set_crs(epsg=32645, inplace=True) +gdf = gdf.to_crs(crs="EPSG:4326") + +gdf.xcoord = gdf.geometry.x +gdf.ycoord = gdf.geometry.y + +#gdf = gdf.sample(n=1000) +gdf = gdf.reset_index(drop=True) +#gdf = gdf.drop(columns=['xcoord','ycoord']) +#gdf = gdf.drop(columns=['geometry']) + +gdf.to_file('building_tv50_2.geojson', driver="GeoJSON") +#%% + diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000000000000000000000000000000000000..48ba53b4c0f71502ddfc6ed73c291e6e7c128bb8 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,29 @@ +[build-system] +requires = ["hatchling >=0.25"] +build-backend = "hatchling.build" + +[project] +name = "demo2" +license = {file = "LICENSE"} +classifiers = ["License :: OSI Approved :: MIT License"] +dynamic = ["version", "description"] +dependencies = [ + "solara", + "geopandas", + "ipyleaflet", + "matplotlib", + "psycopg2-binary", + "scipy", +] + +[tool.hatch.version] +path = "demo2/__init__.py" + +[project.urls] +Home = "https://www.github.com/widgetti/solara" + +[tool.black] +line-length = 160 + +[tool.isort] +profile = "black" \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..68dd9748c7fa19e1a396a6725e1a1b28738fd1f6 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,8 @@ +solara +geopandas +ipyleaflet +plotly +lorem_text +matplotlib +psycopg2-binary +scipy \ No newline at end of file